From 015ffa22760d556ac511bd58d84c2aa78284c250 Mon Sep 17 00:00:00 2001 From: Duc Nguyen Date: Sun, 27 Aug 2023 08:20:43 +0700 Subject: [PATCH] more examples --- .vscode/extensions.json | 1 + go-lang/digital-ocean-multifunc/go.mod | 3 + go-lang/digital-ocean-multifunc/go.sum | 0 go-lang/digital-ocean-multifunc/main.go | 42 + go-lang/hello/go.mod | 10 + go-lang/hello/go.sum | 6 + go-lang/hello/hello.go | 13 + go-lang/learn-go-in-y-minutes/go.mod | 3 + go-lang/learn-go-in-y-minutes/main.go | 94 + go-lang/learn-go-in-y-minutes/output.txt | 1 + go-lang/read-big-file/.gitignore | 0 go-lang/read-big-file/go.mod | 3 + go-lang/read-big-file/main.go | 135 + go-lang/read-big-file/ml-latest/README.txt | 147 + go-lang/read-big-file/ml-latest/links.csv | 34209 + go-lang/read-big-file/ml-latest/movies.csv | 34209 + go-lang/read-big-file/ml-latest/ratings.csv | 1 + go-lang/read-big-file/ml-latest/tags.csv | 586995 +++++++++++++++ go-lang/read-csv-with-worker-pools/1000k.csv | 1 + go-lang/read-csv-with-worker-pools/README.md | 1 + go-lang/read-csv-with-worker-pools/go.mod | 3 + go-lang/read-csv-with-worker-pools/main.go | 220 + reactjs/cra-solidity-etherjs/.gitkeep | 0 reactjs/linkedin-edu-next-app/.eslintrc.json | 3 + reactjs/linkedin-edu-next-app/.gitignore | 35 + reactjs/linkedin-edu-next-app/README.md | 34 + reactjs/linkedin-edu-next-app/next.config.js | 4 + .../linkedin-edu-next-app/package-lock.json | 7069 + reactjs/linkedin-edu-next-app/package.json | 26 + .../linkedin-edu-next-app/postcss.config.js | 6 + reactjs/linkedin-edu-next-app/public/next.svg | 1 + .../linkedin-edu-next-app/public/vercel.svg | 1 + .../linkedin-edu-next-app/src/app/favicon.ico | Bin 0 -> 25931 bytes .../linkedin-edu-next-app/src/app/globals.css | 27 + .../linkedin-edu-next-app/src/app/layout.tsx | 22 + .../src/pages/courses/[courseId].tsx | 14 + .../linkedin-edu-next-app/src/pages/hello.tsx | 30 + .../linkedin-edu-next-app/src/pages/index.tsx | 113 + .../src/pages/learn/next.tsx | 18 + .../src/pages/pokemon/[name].tsx | 31 + .../src/pages/pokemon/index.tsx | 37 + .../linkedin-edu-next-app/tailwind.config.js | 18 + reactjs/linkedin-edu-next-app/tsconfig.json | 28 + reactjs/linkedin-edu-next-app/yarn.lock | 2574 + .../nextjs-app-tailwind-css/.eslintrc.json | 3 + reactjs/nextjs-app-tailwind-css/.gitignore | 35 + reactjs/nextjs-app-tailwind-css/.nvmrc | 1 + reactjs/nextjs-app-tailwind-css/README.md | 34 + .../nextjs-app-tailwind-css/next.config.js | 28 + .../nextjs-app-tailwind-css/package-lock.json | 7153 + reactjs/nextjs-app-tailwind-css/package.json | 25 + .../nextjs-app-tailwind-css/postcss.config.js | 6 + .../public/favicon.ico | Bin 0 -> 25931 bytes .../nextjs-app-tailwind-css/public/next.svg | 1 + .../nextjs-app-tailwind-css/public/vercel.svg | 1 + .../src/pages/_app.tsx | 7 + .../src/pages/globals.css | 27 + .../src/pages/index.tsx | 127 + .../src/pages/layout.tsx | 24 + .../tailwind.config.js | 18 + reactjs/nextjs-app-tailwind-css/tsconfig.json | 28 + reactjs/nextjs-app-tailwind-css/yarn.lock | 2602 + yarn.lock | 382 + 63 files changed, 676690 insertions(+) create mode 100644 go-lang/digital-ocean-multifunc/go.mod create mode 100644 go-lang/digital-ocean-multifunc/go.sum create mode 100644 go-lang/digital-ocean-multifunc/main.go create mode 100644 go-lang/hello/go.mod create mode 100644 go-lang/hello/go.sum create mode 100644 go-lang/hello/hello.go create mode 100644 go-lang/learn-go-in-y-minutes/go.mod create mode 100644 go-lang/learn-go-in-y-minutes/main.go create mode 100644 go-lang/learn-go-in-y-minutes/output.txt create mode 100644 go-lang/read-big-file/.gitignore create mode 100644 go-lang/read-big-file/go.mod create mode 100644 go-lang/read-big-file/main.go create mode 100644 go-lang/read-big-file/ml-latest/README.txt create mode 100644 go-lang/read-big-file/ml-latest/links.csv create mode 100644 go-lang/read-big-file/ml-latest/movies.csv create mode 100644 go-lang/read-big-file/ml-latest/ratings.csv create mode 100644 go-lang/read-big-file/ml-latest/tags.csv create mode 100644 go-lang/read-csv-with-worker-pools/1000k.csv create mode 100644 go-lang/read-csv-with-worker-pools/README.md create mode 100644 go-lang/read-csv-with-worker-pools/go.mod create mode 100644 go-lang/read-csv-with-worker-pools/main.go create mode 100644 reactjs/cra-solidity-etherjs/.gitkeep create mode 100644 reactjs/linkedin-edu-next-app/.eslintrc.json create mode 100644 reactjs/linkedin-edu-next-app/.gitignore create mode 100644 reactjs/linkedin-edu-next-app/README.md create mode 100644 reactjs/linkedin-edu-next-app/next.config.js create mode 100644 reactjs/linkedin-edu-next-app/package-lock.json create mode 100644 reactjs/linkedin-edu-next-app/package.json create mode 100644 reactjs/linkedin-edu-next-app/postcss.config.js create mode 100644 reactjs/linkedin-edu-next-app/public/next.svg create mode 100644 reactjs/linkedin-edu-next-app/public/vercel.svg create mode 100644 reactjs/linkedin-edu-next-app/src/app/favicon.ico create mode 100644 reactjs/linkedin-edu-next-app/src/app/globals.css create mode 100644 reactjs/linkedin-edu-next-app/src/app/layout.tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/courses/[courseId].tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/hello.tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/index.tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/learn/next.tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/pokemon/[name].tsx create mode 100644 reactjs/linkedin-edu-next-app/src/pages/pokemon/index.tsx create mode 100644 reactjs/linkedin-edu-next-app/tailwind.config.js create mode 100644 reactjs/linkedin-edu-next-app/tsconfig.json create mode 100644 reactjs/linkedin-edu-next-app/yarn.lock create mode 100644 reactjs/nextjs-app-tailwind-css/.eslintrc.json create mode 100644 reactjs/nextjs-app-tailwind-css/.gitignore create mode 100644 reactjs/nextjs-app-tailwind-css/.nvmrc create mode 100644 reactjs/nextjs-app-tailwind-css/README.md create mode 100644 reactjs/nextjs-app-tailwind-css/next.config.js create mode 100644 reactjs/nextjs-app-tailwind-css/package-lock.json create mode 100644 reactjs/nextjs-app-tailwind-css/package.json create mode 100644 reactjs/nextjs-app-tailwind-css/postcss.config.js create mode 100644 reactjs/nextjs-app-tailwind-css/public/favicon.ico create mode 100644 reactjs/nextjs-app-tailwind-css/public/next.svg create mode 100644 reactjs/nextjs-app-tailwind-css/public/vercel.svg create mode 100644 reactjs/nextjs-app-tailwind-css/src/pages/_app.tsx create mode 100644 reactjs/nextjs-app-tailwind-css/src/pages/globals.css create mode 100644 reactjs/nextjs-app-tailwind-css/src/pages/index.tsx create mode 100644 reactjs/nextjs-app-tailwind-css/src/pages/layout.tsx create mode 100644 reactjs/nextjs-app-tailwind-css/tailwind.config.js create mode 100644 reactjs/nextjs-app-tailwind-css/tsconfig.json create mode 100644 reactjs/nextjs-app-tailwind-css/yarn.lock create mode 100644 yarn.lock diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 275c24d9..6a6835ff 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,7 @@ "recommendations": [ "streetsidesoftware.code-spell-checker", "esbenp.prettier-vscode", + "humao.rest-client", "firsttris.vscode-jest-runner", "dbaeumer.vscode-eslint", "EditorConfig.EditorConfig", diff --git a/go-lang/digital-ocean-multifunc/go.mod b/go-lang/digital-ocean-multifunc/go.mod new file mode 100644 index 00000000..4accc44e --- /dev/null +++ b/go-lang/digital-ocean-multifunc/go.mod @@ -0,0 +1,3 @@ +module github/vanduc1102/digital-ocean-multifunc + +go 1.20 diff --git a/go-lang/digital-ocean-multifunc/go.sum b/go-lang/digital-ocean-multifunc/go.sum new file mode 100644 index 00000000..e69de29b diff --git a/go-lang/digital-ocean-multifunc/main.go b/go-lang/digital-ocean-multifunc/main.go new file mode 100644 index 00000000..b9ad1979 --- /dev/null +++ b/go-lang/digital-ocean-multifunc/main.go @@ -0,0 +1,42 @@ +package main + +import ( + "fmt" + "sync" + "time" +) + +func generateNumbers(total int, wg *sync.WaitGroup, ch chan<- int) { + defer wg.Done() + for i := 1; i <= total; i++ { + fmt.Printf("sending %d to channel time=%v\n", i, time.Now()) + time.Sleep(time.Second * 2) + ch <- i + } +} + +func printNumbers(wg *sync.WaitGroup, ch <-chan int) { + defer wg.Done() + for value := range ch { + time.Sleep(time.Second) + fmt.Printf("reading %d from channel time=%v\n", value, time.Now()) + } +} + +func main() { + var wg sync.WaitGroup + + numberChannel := make(chan int) + for i := 0; i < 12; i++ { + wg.Add(1) + go printNumbers(&wg, numberChannel) + } + + generateNumbers(3, &wg, numberChannel) + + close(numberChannel) + + fmt.Printf("Waiting for goroutines to finish... time=%v\n", time.Now()) + wg.Wait() + fmt.Printf("Done at time=%v\n", time.Now()) +} diff --git a/go-lang/hello/go.mod b/go-lang/hello/go.mod new file mode 100644 index 00000000..2b997cd9 --- /dev/null +++ b/go-lang/hello/go.mod @@ -0,0 +1,10 @@ +module example/hello + +go 1.20 + +require rsc.io/quote v1.5.2 + +require ( + golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect + rsc.io/sampler v1.3.0 // indirect +) diff --git a/go-lang/hello/go.sum b/go-lang/hello/go.sum new file mode 100644 index 00000000..4a8bcd70 --- /dev/null +++ b/go-lang/hello/go.sum @@ -0,0 +1,6 @@ +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:qgOY6WgZOaTkIIMiVjBQcw93ERBE4m30iBm00nkL0i8= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +rsc.io/quote v1.5.2 h1:w5fcysjrx7yqtD/aO+QwRjYZOKnaM9Uh2b40tElTs3Y= +rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0= +rsc.io/sampler v1.3.0 h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/go-lang/hello/hello.go b/go-lang/hello/hello.go new file mode 100644 index 00000000..0becf561 --- /dev/null +++ b/go-lang/hello/hello.go @@ -0,0 +1,13 @@ +// https://go.dev/doc/tutorial/getting-started + +package main + +import ( + "fmt" + + "rsc.io/quote" +) + +func main() { + fmt.Println("Hello, World: ", quote.Go()) +} diff --git a/go-lang/learn-go-in-y-minutes/go.mod b/go-lang/learn-go-in-y-minutes/go.mod new file mode 100644 index 00000000..615bc787 --- /dev/null +++ b/go-lang/learn-go-in-y-minutes/go.mod @@ -0,0 +1,3 @@ +module example/learn-go-in-y-minutes + +go 1.20 diff --git a/go-lang/learn-go-in-y-minutes/main.go b/go-lang/learn-go-in-y-minutes/main.go new file mode 100644 index 00000000..7605f447 --- /dev/null +++ b/go-lang/learn-go-in-y-minutes/main.go @@ -0,0 +1,94 @@ +// https://learnxinyminutes.com/docs/go/ + +package main + +import ( + "fmt" + "os" + "time" +) + +func main() { + fmt.Println("Hello , World! from Learn GoLang in Y minutes") + fmt.Println("The time is ", time.Now()) + beyondHello() +} + +func beyondHello() { + var x int + x = 3 + y := 4 + + sum, prod := learnMultiple(x, y) + fmt.Println("sum: ", sum, "prod: ", prod) + learnTypes() +} + +func learnMultiple(x, y int) (sum, prod int) { + return x + y, x * y +} + +func learnTypes() { + str := "Learn Go!" + + s2 := `A \"raw\" string literal + + can include line breaks.` + + g := 'Σ' + + f := 3.1419 + c := 3 + 4i + + var u uint = 7 + var pi float32 = 22. / 7 + + n := byte('\n') + + var a4 [4]int + a5 := [...]int{3, 1, 5, 10, 100} + + a4_cpy := a4 + a4_cpy[0] = 25 + + fmt.Println(a4_cpy[0] == a4[0]) + + s3 := []int{4, 5, 9} + s4 := make([]int, 4) + var d2 [][]float64 + bs := []byte("a slide") + + s3_cpy := s3 + s3_cpy[0] = 0 + fmt.Println(s3_cpy[0] == s3[0]) + + s := []int{1, 2, 3} + s = append(s, 4, 5, 6) + fmt.Println(s) + + s = append(s, []int{7, 8, 9}...) + fmt.Println(s) + + p, q := learnMemory() + fmt.Println(*p, *q) + + m := map[string]int{"three": 3, "four": 4} + m["one"] = 1 + + _, _, _, _, _, _, _, _, _, _, _, _, _ = str, s2, g, f, c, pi, n, a5, a4, s4, d2, bs, u + + file, _ := os.Create("output.txt") + fmt.Fprint(file, "This is how you write to a file, by the way") + file.Close() + + fmt.Println(s, c, a4, s3, d2, m) +} + +func learnMemory() (p, q *int) { + p = new(int) + + s := make([]int, 20) + s[3] = 7 + r := -2 + return &s[3], &r +} diff --git a/go-lang/learn-go-in-y-minutes/output.txt b/go-lang/learn-go-in-y-minutes/output.txt new file mode 100644 index 00000000..3f7eb724 --- /dev/null +++ b/go-lang/learn-go-in-y-minutes/output.txt @@ -0,0 +1 @@ +This is how you write to a file, by the way \ No newline at end of file diff --git a/go-lang/read-big-file/.gitignore b/go-lang/read-big-file/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/go-lang/read-big-file/go.mod b/go-lang/read-big-file/go.mod new file mode 100644 index 00000000..ee13ad0f --- /dev/null +++ b/go-lang/read-big-file/go.mod @@ -0,0 +1,3 @@ +module github/vanduc1102/read-big-file + +go 1.20 diff --git a/go-lang/read-big-file/main.go b/go-lang/read-big-file/main.go new file mode 100644 index 00000000..f92eebfc --- /dev/null +++ b/go-lang/read-big-file/main.go @@ -0,0 +1,135 @@ +package main + +import ( + "encoding/csv" + "fmt" + "io" + "log" + "os" + "strconv" + "sync" + "time" +) + +type MovieLink struct { + Id int + ImdbId string + TmdbId string +} + +const ( + Odd string = "odd" + Even string = "even" +) + +func main() { + var wg sync.WaitGroup + + startTime := time.Now() + file, err := os.Open("ml-latest/links.csv") + if err != nil { + fmt.Println(err) + return + } + defer file.Close() + + items := 10000 + itemsPerWorker := 100 + kind := Odd + numberWorkers := 1 + if items > itemsPerWorker { + numberWorkers := items / itemsPerWorker + if items%itemsPerWorker != 0 { + numberWorkers++ + } + } + + jobQueue := make(chan []string, numberWorkers) + + wg.Add(1) + go func() { + csvReader := csv.NewReader(file) + + if _, err := csvReader.Read(); err != nil { + log.Fatal(err) + } + + for { + row, err := csvReader.Read() + if err == io.EOF { + break + } + if err != nil { + log.Fatal(err) + } + jobQueue <- row + } + defer wg.Done() + }() + + outputChannel := make(chan []MovieLink, numberWorkers) + for i := 0; i < numberWorkers; i++ { + wg.Add(1) + go func() { + worker(jobQueue, outputChannel, itemsPerWorker, kind) + wg.Done() + }() + } + + movies := make([]MovieLink, items) + for chunk := range outputChannel { + fmt.Printf("== lines : %d\n", len(movies)) + movies = append(movies, chunk...) + if len(movies) >= items { + close(outputChannel) + break + } + } + + // wg.Wait() + fmt.Printf("lines : %d\n", len(movies)) + fmt.Printf("The seconds difference is: %fs\n", time.Since(startTime).Seconds()) +} + +func worker(jobChannel <-chan []string, output chan<- []MovieLink, itemsPerWorker int, kind string) { + movies := make([]MovieLink, itemsPerWorker) + for line := range jobChannel { + item, err := marshal(line) + if err == nil { + if kind == Odd && item.Id%2 == 1 { + // fmt.Printf("Add odd %s\n", line) + movies = append(movies, *item) + } + if kind == Even && item.Id%2 == 0 { + // fmt.Printf("Add even %s\n", line) + movies = append(movies, *item) + } + fmt.Printf("collected size %d\n", len(movies)) + if len(movies) == itemsPerWorker { + output <- movies + break + } + } else { + log.Fatal(err) + } + } +} + +func marshal(row []string) (*MovieLink, error) { + var movie MovieLink + for j, field := range row { + if j == 0 { + id, err := strconv.Atoi(field) + if err != nil { + return nil, err + } + movie.Id = id + } else if j == 1 { + movie.ImdbId = field + } else if j == 2 { + movie.TmdbId = field + } + } + + return &movie, nil +} diff --git a/go-lang/read-big-file/ml-latest/README.txt b/go-lang/read-big-file/ml-latest/README.txt new file mode 100644 index 00000000..a897d19e --- /dev/null +++ b/go-lang/read-big-file/ml-latest/README.txt @@ -0,0 +1,147 @@ +Summary +======= + +This dataset (ml-latest) describes 5-star rating and free-text tagging activity from [MovieLens](http://movielens.org), a movie recommendation service. It contains 22884377 ratings and 586994 tag applications across 34208 movies. These data were created by 247753 users between January 09, 1995 and January 29, 2016. This dataset was generated on January 29, 2016. + +Users were selected at random for inclusion. All selected users had rated at least 1 movies. No demographic information is included. Each user is represented by an id, and no other information is provided. + +The data are contained in four files, `links.csv`, `movies.csv`, `ratings.csv` and `tags.csv`. More details about the contents and use of all these files follows. + +This is a *development* dataset. As such, it may change over time and is not an appropriate dataset for shared research results. See available *benchmark* datasets if that is your intent. + +This and other GroupLens data sets are publicly available for download at . + + +Usage License +============= + +Neither the University of Minnesota nor any of the researchers involved can guarantee the correctness of the data, its suitability for any particular purpose, or the validity of results based on the use of the data set. The data set may be used for any research purposes under the following conditions: + +* The user may not state or imply any endorsement from the University of Minnesota or the GroupLens Research Group. +* The user must acknowledge the use of the data set in publications resulting from the use of the data set (see below for citation information). +* The user may not redistribute the data without separate permission. +* The user may not use this information for any commercial or revenue-bearing purposes without first obtaining permission from a faculty member of the GroupLens Research Project at the University of Minnesota. +* The executable software scripts are provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of them is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction. + +In no event shall the University of Minnesota, its affiliates or employees be liable to you for any damages arising out of the use or inability to use these programs (including but not limited to loss of data or data being rendered inaccurate). + +If you have any further questions or comments, please email + + +Citation +======== + +To acknowledge use of the dataset in publications, please cite the following paper: + +> F. Maxwell Harper and Joseph A. Konstan. 2015. The MovieLens Datasets: History and Context. ACM Transactions on Interactive Intelligent Systems (TiiS) 5, 4, Article 19 (December 2015), 19 pages. DOI= + + +Further Information About GroupLens +=================================== + +GroupLens is a research group in the Department of Computer Science and Engineering at the University of Minnesota. Since its inception in 1992, GroupLens's research projects have explored a variety of fields including: + +* recommender systems +* online communities +* mobile and ubiquitious technologies +* digital libraries +* local geographic information systems + +GroupLens Research operates a movie recommender based on collaborative filtering, MovieLens, which is the source of these data. We encourage you to visit to try it out! If you have exciting ideas for experimental work to conduct on MovieLens, send us an email at - we are always interested in working with external collaborators. + + +Content and Use of Files +======================== + +Formatting and Encoding +----------------------- + +The dataset files are written as [comma-separated values](http://en.wikipedia.org/wiki/Comma-separated_values) files with a single header row. Columns that contain commas (`,`) are escaped using double-quotes (`"`). These files are encoded as UTF-8. If accented characters in movie titles or tag values (e.g. Misérables, Les (1995)) display incorrectly, make sure that any program reading the data, such as a text editor, terminal, or script, is configured for UTF-8. + +User Ids +-------- + +MovieLens users were selected at random for inclusion. Their ids have been anonymized. User ids are consistent between `ratings.csv` and `tags.csv` (i.e., the same id refers to the same user across the two files). + +Movie Ids +--------- + +Only movies with at least one rating or tag are included in the dataset. These movie ids are consistent with those used on the MovieLens web site (e.g., id `1` corresponds to the URL ). Movie ids are consistent between `ratings.csv`, `tags.csv`, `movies.csv`, and `links.csv` (i.e., the same id refers to the same movie across these four data files). + + +Ratings Data File Structure (ratings.csv) +----------------------------------------- + +All ratings are contained in the file `ratings.csv`. Each line of this file after the header row represents one rating of one movie by one user, and has the following format: + + userId,movieId,rating,timestamp + +The lines within this file are ordered first by userId, then, within user, by movieId. + +Ratings are made on a 5-star scale, with half-star increments (0.5 stars - 5.0 stars). + +Timestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970. + +Tags Data File Structure (tags.csv) +----------------------------------- + +All tags are contained in the file `tags.csv`. Each line of this file after the header row represents one tag applied to one movie by one user, and has the following format: + + userId,movieId,tag,timestamp + +The lines within this file are ordered first by userId, then, within user, by movieId. + +Tags are user-generated metadata about movies. Each tag is typically a single word or short phrase. The meaning, value, and purpose of a particular tag is determined by each user. + +Timestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970. + +Movies Data File Structure (movies.csv) +--------------------------------------- + +Movie information is contained in the file `movies.csv`. Each line of this file after the header row represents one movie, and has the following format: + + movieId,title,genres + +Movie titles are entered manually or imported from , and include the year of release in parentheses. Errors and inconsistencies may exist in these titles. + +Genres are a pipe-separated list, and are selected from the following: + +* Action +* Adventure +* Animation +* Children's +* Comedy +* Crime +* Documentary +* Drama +* Fantasy +* Film-Noir +* Horror +* Musical +* Mystery +* Romance +* Sci-Fi +* Thriller +* War +* Western +* (no genres listed) + +Links Data File Structure (links.csv) +--------------------------------------- + +Identifiers that can be used to link to other sources of movie data are contained in the file `links.csv`. Each line of this file after the header row represents one movie, and has the following format: + + movieId,imdbId,tmdbId + +movieId is an identifier for movies used by . E.g., the movie Toy Story has the link . + +imdbId is an identifier for movies used by . E.g., the movie Toy Story has the link . + +tmdbId is an identifier for movies used by . E.g., the movie Toy Story has the link . + +Use of the resources listed above is subject to the terms of each provider. + +Cross-Validation +---------------- + +Prior versions of the MovieLens dataset included either pre-computed cross-folds or scripts to perform this computation. We no longer bundle either of these features with the dataset, since most modern toolkits provide this as a built-in feature. If you wish to learn about standard approaches to cross-fold computation in the context of recommender systems evaluation, see [LensKit](http://lenskit.org) for tools, documentation, and open-source code examples. diff --git a/go-lang/read-big-file/ml-latest/links.csv b/go-lang/read-big-file/ml-latest/links.csv new file mode 100644 index 00000000..5579f994 --- /dev/null +++ b/go-lang/read-big-file/ml-latest/links.csv @@ -0,0 +1,34209 @@ +movieId,imdbId,tmdbId +1,0114709,862 +2,0113497,8844 +3,0113228,15602 +4,0114885,31357 +5,0113041,11862 +6,0113277,949 +7,0114319,11860 +8,0112302,45325 +9,0114576,9091 +10,0113189,710 +11,0112346,9087 +12,0112896,12110 +13,0112453,21032 +14,0113987,10858 +15,0112760,1408 +16,0112641,524 +17,0114388,4584 +18,0113101,5 +19,0112281,9273 +20,0113845,11517 +21,0113161,8012 +22,0112722,1710 +23,0112401,9691 +24,0114168,12665 +25,0113627,451 +26,0114057,16420 +27,0114011,9263 +28,0114117,17015 +29,0112682,902 +30,0115012,37557 +31,0112792,9909 +32,0114746,63 +33,0114952,78802 +34,0112431,9598 +35,0112637,47018 +36,0112818,687 +37,0112286,139405 +38,0113442,33689 +39,0112697,9603 +40,0112749,34615 +41,0114279,31174 +42,0112819,11443 +43,0114272,35196 +44,0113855,9312 +45,0114681,577 +46,0113347,11861 +47,0114369,807 +48,0114148,10530 +49,0114916,8391 +50,0114814,629 +51,0109950,117164 +52,0113819,11448 +53,0110299,49133 +54,0112499,26441 +55,0113158,97406 +56,0113541,124057 +57,0113321,9089 +58,0110877,11010 +59,0112714,99040 +60,0113419,11359 +61,0116260,17182 +62,0113862,2054 +63,0116126,10607 +64,0118002,19760 +65,0115683,9536 +66,0116839,11525 +67,0114753,40628 +68,0113149,4482 +69,0113118,10634 +70,0116367,755 +71,0113010,11859 +72,0113537,28387 +73,0113828,48750 +74,0115644,20927 +75,0115676,36929 +76,0114367,9102 +77,0113973,124626 +78,0112744,27526 +79,0116731,9623 +80,0112445,46785 +81,0114660,400 +82,0112379,880 +83,0114039,146599 +84,0113612,188588 +85,0112365,8447 +86,0118158,10534 +87,0116151,17414 +88,0115697,13997 +89,0113972,2086 +90,0113490,61548 +92,0117002,9095 +93,0114825,12158 +94,0115639,9283 +95,0115759,9208 +96,0113403,40154 +97,0113247,406 +98,0111173,45549 +99,0113283,63076 +100,0115907,11062 +101,0115734,13685 +102,0117102,47475 +103,0118040,2045 +104,0116483,9614 +105,0112579,688 +106,0110251,11907 +107,0117110,10874 +108,0112646,89333 +109,0113276,96357 +110,0112573,197 +111,0075314,103 +112,0113326,33542 +113,0115645,43566 +114,0113774,71754 +115,0112556,43612 +116,0112373,51352 +117,0115033,16934 +118,0116606,10324 +119,0114536,78406 +120,0117427,55731 +121,0106473,32119 +122,0103859,11066 +123,0109424,11104 +124,0114808,37975 +125,0116324,2074 +126,0110647,27793 +127,0111055,44284 +128,0110217,290157 +129,0114131,110972 +130,0112364,32622 +131,0113107,73067 +132,0113451,11863 +133,0114015,55475 +134,0114500,124636 +135,0116130,9101 +136,0113125,123360 +137,0113756,5757 +138,0113952,39428 +139,0114618,124639 +140,0118055,9302 +141,0115685,11000 +142,0094878, +143,0113200,249882 +144,0112585,16388 +145,0112442,9737 +146,0112342,30765 +147,0112461,10474 +148,0112427,22279 +149,0109093,30157 +150,0112384,568 +151,0114287,11780 +152,0112288,34996 +153,0112462,414 +154,0061395,649 +155,0112495,1873 +156,0112541,5894 +157,0109370,1775 +158,0112642,8839 +159,0112688,20649 +160,0112715,10329 +161,0112740,8963 +162,0109508,26564 +163,0112851,8068 +164,0112857,8512 +165,0112864,1572 +166,0112887,13552 +167,0113044,259209 +168,0113071,6520 +169,0113114,9073 +170,0113243,10428 +171,0113464,17447 +172,0113481,9886 +173,0113492,9482 +174,0113500,19326 +175,0113540,9344 +176,0113677,9071 +177,0113690,8973 +178,0107447,15730 +179,0113729,47608 +180,0113749,2293 +181,0113820,9070 +182,0113851,68274 +183,0110604,48787 +184,0110620,34574 +185,0113957,1642 +186,0113986,11472 +187,0114095,36196 +188,0114194,11980 +189,0114241,58372 +190,0114323,32646 +191,0114345,10533 +192,0114435,56088 +193,0114436,10802 +194,0114478,10149 +195,0114496,18402 +196,0114508,9348 +197,0114534,139408 +198,0114558,281 +199,0058450,5967 +200,0114666,79593 +201,0114663,47939 +202,0114702,36834 +203,0114682,9090 +204,0114781,3512 +205,0114798,52856 +206,0114805,77350 +207,0114887,9560 +208,0114898,9804 +209,0114928,31611 +210,0114938,65796 +211,0109340,49805 +212,0112602,26258 +213,0111579,50797 +214,0110882,19155 +215,0112471,76 +216,0112508,11017 +217,0112438,37141 +218,0112571,9382 +219,0112757,6715 +220,0112643,18256 +222,0112679,22625 +223,0109445,2292 +224,0112883,1909 +225,0109635,8984 +226,0112899,61813 +227,0109676,4954 +228,0112854,62488 +229,0109579,10531 +230,0109642,11929 +231,0109686,8467 +232,0111797,10451 +233,0109759,20156 +234,0109758,18395 +235,0109707,522 +236,0113117,397 +237,0113097,10525 +238,0113028,27985 +239,0113198,15789 +240,0113303,27303 +241,0113089,21183 +242,0109771,10954 +243,0113199,47867 +244,0113234,43475 +245,0109906,72031 +246,0110057,14275 +247,0110005,1024 +248,0110066,17207 +249,0110116,13701 +250,0110006,14819 +251,0113360,32631 +252,0110099,11777 +253,0110148,628 +254,0113463,87729 +255,0110189,18713 +256,0110216,6280 +257,0113501,9061 +258,0113538,37108 +259,0113552,6071 +260,0076759,11 +261,0110367,9587 +262,0113670,19101 +263,0110296,49980 +264,0109731,17961 +265,0103994,18183 +266,0110322,4476 +267,0110443,11008 +268,0110365,47504 +269,0107566,32325 +270,0110391,43742 +271,0113691,28313 +272,0110428,11318 +273,0109836,3036 +274,0113755,40490 +275,0110538,24070 +276,0110516,8986 +277,0110527,10510 +278,0113808,17402 +279,0113896,38722 +280,0113870,8438 +281,0110684,11593 +282,0110638,1945 +283,0113967,39310 +284,0117169,109560 +285,0106402,56428 +286,0113948,63105 +287,0110671,131957 +288,0110632,241 +289,0110737,9058 +290,0110729,527 +291,0114151,18220 +292,0114069,6950 +293,0110413,101 +294,0114113,63020 +295,0114210,2307 +296,0110912,680 +297,0114084,41478 +298,0105652,25296 +299,0110889,40156 +300,0110932,11450 +301,0114129,30304 +302,0110963,10452 +303,0114214,12106 +304,0114296,161495 +305,0110907,3586 +306,0111495,110 +307,0108394,108 +308,0111507,109 +309,0110769,159185 +310,0114268,36357 +311,0110965,92769 +312,0114571,28033 +313,0111333,22586 +314,0111112,14334 +315,0111255,2636 +316,0111282,2164 +317,0111070,11395 +318,0111161,278 +319,0111149,9905 +320,0108260,87078 +321,0106966,12527 +322,0114594,20306 +324,0111309,36614 +325,0113936,27993 +326,0110081,31439 +327,0114614,9067 +328,0114608,9059 +329,0111280,193 +330,0114609,25066 +331,0111454,46797 +332,0114852,12122 +333,0114694,11381 +334,0111590,32636 +335,0114788,36141 +336,0114888,95963 +337,0108550,1587 +338,0114857,9271 +339,0114924,2064 +340,0111667,19855 +341,0109655,60855 +342,0110598,236 +343,0112435,48287 +344,0109040,3049 +345,0109045,2759 +346,0106339,12635 +347,0104779,10497 +348,0109348,11382 +349,0109444,9331 +350,0109446,10731 +351,0109484,10464 +352,0109504,34152 +353,0109506,9495 +354,0109450,29973 +355,0109813,888 +356,0109830,13 +357,0109831,712 +358,0113305,16295 +359,0110091,48992 +360,0110093,10879 +361,0110167,10660 +362,0110213,10714 +363,0107472,41647 +364,0110357,8587 +365,0107426,1689 +366,0111686,11596 +367,0110475,854 +368,0110478,9359 +369,0110588,23333 +370,0110622,36593 +371,0110771,12280 +372,0110950,2788 +373,0105226,10427 +374,0110989,11011 +375,0111054,49803 +376,0110997,8987 +377,0111257,1637 +378,0111256,15128 +379,0111438,8831 +380,0111503,36955 +381,0111693,10449 +382,0111742,10395 +383,0111756,12160 +384,0112443,40480 +385,0110455,52038 +386,0111048,29444 +387,0110399,26352 +388,0112570,39953 +389,0109454,41580 +390,0059170,315 +391,0110186,22067 +392,0108069,18242 +393,0111301,11667 +394,0112702,32502 +395,0112849,267188 +396,0113014,28732 +397,0113043,75555 +398,0113104,42981 +399,0113173,278939 +400,0113319,291731 +401,0113827,226229 +402,0114047,203119 +403,0112889,172923 +404,0109339,316098 +405,0110027,8011 +406,0109785,171857 +407,0113409,2654 +408,0109021,18069 +409,0109035,19092 +410,0106220,2758 +411,0111804,38129 +412,0106226,10436 +413,0109068,13595 +414,0109067,46094 +415,0106292,9409 +416,0109198,11853 +417,0109219,16771 +418,0106379,46924 +419,0106400,11041 +420,0109254,306 +421,0109279,14522 +422,0109297,26203 +423,0109303,178 +424,0109305,19819 +425,0109306,57834 +426,0106452,4722 +427,0106471,18215 +428,0106489,1607 +429,0109361,26391 +430,0106505,117553 +431,0106519,6075 +432,0109439,11310 +433,0109443,18658 +434,0106582,9350 +435,0106598,9612 +436,0109456,2124 +437,0109480,26261 +438,0109493,19176 +439,0106660,49299 +440,0106673,11566 +441,0106677,9571 +442,0106697,9739 +443,0109729,24257 +444,0106834,34444 +445,0106873,26141 +446,0106332,10997 +447,0109783,50463 +448,0106881,10443 +449,0106880,20239 +450,0111732,16297 +451,0106926,18551 +452,0111712,25440 +453,0106941,9024 +454,0106918,37233 +455,0106965,1634 +456,0109842,13815 +457,0106977,5503 +458,0107004,35588 +459,0109890,2087 +460,0109891,41579 +461,0109913,18620 +462,0109920,41006 +463,0107057,4916 +464,0107076,2019 +465,0107096,31642 +466,0107144,9255 +467,0113674,26271 +468,0112966,10612 +469,0107151,2259 +470,0110064,16097 +471,0110074,11934 +472,0110097,106143 +473,0110123,12475 +474,0107206,9386 +475,0107207,7984 +476,0110137,59930 +477,0108551,15765 +478,0110197,31643 +479,0107286,6 +480,0107290,329 +481,0107302,10909 +482,0110265,507 +483,0107322,34024 +484,0110305,29918 +485,0107362,9593 +486,0107413,42580 +487,0110353,22317 +488,0107468,1413 +489,0107478,12121 +490,0107497,2246 +491,0107501,10502 +492,0107507,10440 +493,0107554,9516 +494,0116253,2320 +495,0074102,5879 +496,0111689,83718 +497,0107616,11971 +498,0107611,2625 +499,0107613,31911 +500,0107614,788 +501,0107653,21450 +502,0110657,11231 +503,0110649,41588 +504,0110678,10447 +505,0110687,31586 +506,0107756,9300 +507,0107808,9559 +508,0107818,9800 +509,0107822,713 +510,0107840,8291 +511,0107889,18133 +512,0111003,25557 +513,0110939,22588 +514,0110955,10872 +515,0107943,1245 +516,0110971,11858 +517,0107969,7007 +518,0111001,10467 +519,0107978,5550 +520,0107977,8005 +521,0107983,2088 +522,0105275,10412 +523,0108000,47889 +524,0108002,14534 +525,0108026,56583 +526,0105032,41878 +527,0108052,424 +528,0111094,35233 +529,0108065,14291 +530,0111102,103413 +531,0108071,11236 +532,0111127,11592 +533,0111143,8850 +534,0108101,10445 +535,0108122,695 +536,0111194,43535 +537,0111201,12519 +538,0108149,23210 +539,0108160,858 +540,0108162,867 +541,0083658,78 +542,0108186,13203 +543,0108174,10442 +544,0108238,11074 +545,0089256,33367 +546,0108255,9607 +547,0111323,17585 +548,0111400,9057 +549,0108328,20967 +550,0111418,10635 +551,0107688,9479 +552,0108333,10057 +553,0108358,11969 +554,0111488,41590 +555,0108399,319 +556,0108515,26408 +558,0110763,15139 +559,0107779,161158 +560,0109226,218473 +561,0110259,85247 +562,0114906,11446 +563,0107002,51980 +564,0109403,24405 +565,0104029,11655 +566,0110623,11800 +567,0107315,8223 +568,0106408,14587 +569,0110363,31504 +570,0107349,41653 +571,0111709,53185 +572,0109828,95743 +573,0107225,23637 +574,0111252,17600 +575,0110366,10897 +576,0106878,349394 +577,0109120,21352 +579,0108059,68806 +580,0110892,37345 +581,0112651,32562 +582,0107642,47507 +583,0109382,25403 +584,0106678,124304 +585,0112572,9066 +586,0099785,771 +587,0099653,251 +588,0103639,812 +589,0103064,280 +590,0099348,581 +591,0114706,80350 +592,0096895,268 +593,0102926,274 +594,0029583,408 +595,0101414,10020 +596,0032910,10895 +597,0100405,114 +598,0110719,41043 +599,0065214,576 +600,0110395,15477 +601,0111752,59146 +602,0109934,124472 +603,0112606,30528 +604,0115978, +605,0117247,7300 +606,0112625,10824 +607,0106537,261246 +608,0116282,275 +609,0116552,25059 +610,0082509,11827 +611,0116514,8766 +612,0117283,23570 +613,0116684,47333 +614,0110374,54850 +615,0070506,51242 +616,0065421,10112 +617,0113083,4307 +618,0118001,46029 +619,0116165,32308 +620,0102855,88893 +621,0107471,52873 +623,0113839,123505 +624,0112712,340210 +625,0090665,44281 +626,0117891,28121 +627,0113613,12520 +628,0117381,1592 +629,0114305,166901 +630,0115837,36447 +631,0115509,19042 +632,0114671,38884 +633,0112844,47449 +634,0114658,36259 +635,0116275,41852 +636,0113122,40926 +637,0117608,9099 +638,0113448,2021 +639,0116414,61752 +640,0116095,10988 +641,0111543,11479 +642,0117517, +643,0117312,287305 +644,0116485,339428 +645,0113947,12652 +647,0115956,10684 +648,0117060,954 +649,0109028,68445 +650,0117071,18989 +651,0117788,10801 +652,0112257,54285 +653,0116136,8840 +654,0118026,278978 +655,0117117,124625 +656,0116168,11107 +657,0111787,16417 +658,0112509,70934 +659,0054189,10363 +660,0115591,161070 +661,0116683,10539 +662,0116287,10543 +663,0116768,18414 +664,0116269,47502 +665,0114787,11902 +666,0113720,27098 +667,0112536,25087 +668,0048473,5801 +670,0052572,896 +671,0117128,3065 +672,0114616,318177 +673,0117705,2300 +674,0062711,8069 +675,0110061,288173 +676,0140614,187851 +678,0108181,27768 +679,0114307,221917 +680,0058898,8072 +681,0082206,35797 +682,0111430,88030 +683,0107727,185191 +684,0081759,83857 +685,0113443,33245 +687,0109491,124460 +688,0114048,27281 +690,0111613,105045 +691,0117104,40001 +692,0117688,29621 +693,0109751,117730 +694,0117774,20762 +695,0114736,37144 +696,0112604,48260 +697,0116289,12656 +698,0109593,38867 +699,0103095,277270 +700,0112368,25969 +701,0104046,44103 +702,0062952,753 +703,0115742,43634 +704,0117420,9103 +705,0115951,90214 +706,0117784,29649 +707,0117107,10990 +708,0117979,8866 +709,0095776,12233 +710,0115851,23449 +711,0116322,36355 +712,0109374,37667 +713,0110712,90148 +714,0112817,922 +715,0113362,11876 +716,0073778,52633 +717,0112546,62364 +718,0108500,11687 +719,0117108,9304 +720,0118114, +721,0114103, +722,0113270,73183 +723,0092123,131232 +724,0115963,9100 +725,0116448,20759 +726,0116827,46063 +727,0114894,365371 +728,0112701,32513 +729,0113429,40651 +730,0125877, +731,0116508,36915 +732,0117260,40507 +733,0117500,9802 +734,0116405,25697 +735,0109592,21588 +736,0117998,664 +737,0115624,11867 +738,0113145,47119 +739,0116559, +741,0113568,9323 +742,0117894,10280 +743,0117723,10535 +744,0112586,124613 +745,0112691,532 +746,0040366,26744 +747,0117768,16299 +748,0115571,10547 +749,0031612,245268 +750,0057012,935 +751,0103926,55613 +752,0105737,215107 +753,0113849,41007 +754,0113188,35645 +755,0042644,110465 +756,0109381,255546 +757,0109688,40751 +758,0104606,275096 +759,0110480,85778 +760,0108211,11101 +761,0117331,9826 +762,0117765,9879 +763,0116833,63564 +764,0113280,22621 +765,0116669,7095 +766,0116594,26890 +767,0113211,46732 +768,0114494,124633 +769,0116992, +770,0038426, +771,0094265,202425 +772,0105201,196940 +773,0070820,77771 +774,0084898,181083 +775,0063715,41225 +776,0109191,188589 +777,0114122,87190 +778,0117951,627 +779,0118523,32872 +780,0116629,602 +781,0117737,14553 +782,0116277,9566 +783,0116583,10545 +784,0115798,9894 +785,0116778,11543 +786,0116213,9268 +787,0113147,52059 +788,0117218,9327 +789,0100990,123763 +790,0111546,81949 +791,0113610, +792,0093199,42005 +793,0106810,124306 +794,0111180,183955 +795,0111237,44535 +796,0072362,44495 +797,0103207,78285 +798,0116040,11228 +799,0116365,10779 +800,0116905,26748 +801,0116493,38223 +802,0117333,9294 +803,0118113,49963 +804,0117628,11363 +805,0117913,1645 +806,0115530,31546 +807,0114266,77056 +808,0115493,36344 +809,0116320,18550 +810,0116756,11511 +812,0109356,172198 +813,0116823,34170 +814,0112568,281085 +815,0114170,109478 +816,0117999,124645 +818,0118073,12606 +819,0108220,69895 +820,0049521,35206 +821,0112746, +822,0104403,151489 +823,0061495,4837 +824,0110246,12632 +825,0116164,9098 +826,0112865,282919 +827,0112716,124614 +828,0115472,18975 +829,0116707,11962 +830,0116313,2925 +831,0114550,28628 +832,0117438,3595 +833,0116531,9308 +834,0117332,92381 +835,0116353,18555 +836,0115857,12123 +837,0117008,10830 +838,0116191,3573 +839,0115986,10546 +840,0116571,18862 +841,0053459,31417 +842,0117826,9431 +843,0113695,124619 +844,0108227,297645 +845,0111424,48144 +846,0113080,46986 +847,0115680,144982 +848,0117718,47907 +849,0116225,10061 +850,0112767,36266 +851,0115632,549 +852,0117918,10478 +853,0104109,66634 +854,0051980,116690 +855,0100840,213917 +856,0107575,145925 +857,0042054,100914 +858,0068646,238 +859,0116536, +860,0109255,159 +861,0104558,11134 +862,0116985,88224 +864,0114936,132641 +865,0114474,42758 +866,0115736,9303 +867,0115836,23945 +868,0101692,37820 +869,0116745,22479 +870,0119214,9054 +871,0116934,241058 +872,0109066,11985 +873,0075169,10232 +874,0113542,59569 +875,0110693, +876,0106544,38955 +877,0116418,110513 +878,0112607,114089 +879,0120004,11015 +880,0116654,9306 +881,0116311,12559 +882,0117965,58770 +884,0114592,124851 +885,0115725,3587 +886,0115783,10723 +887,0120271,56077 +888,0113596,19004 +889,0109001,101230 +890,0094822,253632 +891,0113253,10987 +892,0117991,44705 +893,0117093,20318 +894,0024252,43596 +895,0105729,79782 +896,0111019,26933 +897,0035896,27854 +898,0032904,981 +899,0045152,872 +900,0043278,2769 +901,0050419,13320 +902,0054698,164 +903,0052357,426 +904,0047396,567 +905,0025316,3078 +906,0036855,13528 +907,0025164,28288 +908,0053125,213 +909,0053604,284 +910,0053291,239 +911,0056923,4808 +912,0034583,289 +913,0033870,963 +914,0058385,11113 +915,0047437,6620 +916,0046250,804 +917,0031580,26531 +918,0037059,909 +919,0032138,630 +920,0031381,770 +921,0084370,31044 +922,0043014,599 +923,0033467,15 +924,0062622,62 +925,0039428,121357 +926,0042192,705 +927,0032143,22490 +928,0032976,223 +929,0032484,25670 +930,0038787,303 +931,0038109,4174 +932,0050105,8356 +933,0048728,381 +934,0042451,20758 +935,0045537,29376 +936,0031725,1859 +937,0050658,18299 +938,0051658,17281 +939,0052126,64382 +940,0029843,10907 +941,0032762,32093 +942,0037008,1939 +943,0039420,22292 +944,0029162,3598 +945,0027125,3080 +946,0035446,198 +947,0028010,13562 +948,0049261,1712 +949,0048028,220 +950,0025878,3529 +951,0032599,3085 +952,0048960,2897 +953,0038650,1585 +954,0031679,3083 +955,0029947,900 +956,0034012,43795 +957,0017350,85638 +958,0036094,50001 +959,0025586,43905 +960,0038300,22688 +961,0027893,23114 +962,0032022,26378 +963,0041509,40206 +964,0039152,22356 +965,0026029,260 +966,0038235,43488 +967,0036241,22613 +968,0063350,10331 +969,0043265,488 +970,0046414,22733 +971,0051459,261 +972,0047162,57575 +973,0033891,32574 +974,0029855,22657 +975,0029588,76464 +976,0022879,22649 +977,0027980,176841 +979,0114007,125587 +980,0093229,39448 +981,0118927,52855 +982,0048491,39940 +983,0113730,172868 +984,0117357,85328 +985,0117669,124632 +986,0116329,11076 +987,0118742,63945 +988,0116442,58985 +989,0114354,890 +990,0117011,10861 +991,0117039,1770 +992,0117473,44465 +993,0116635,2033 +994,0115678,18203 +996,0116830,9333 +997,0115847,47260 +998,0117603,9400 +999,0115438,9401 +1000,0115994,12241 +1001,0083587,25739 +1002,0116167,161806 +1003,0116259,11306 +1004,0116421,9625 +1005,0116000,10680 +1006,0115862,6346 +1007,0072653,18660 +1008,0047977,35115 +1009,0072951,14821 +1010,0064603,14136 +1011,0071607,10869 +1012,0050798,22660 +1013,0055277,19186 +1014,0054195,31102 +1015,0107131,6878 +1016,0053271,15944 +1017,0054357,18444 +1018,0059793,20723 +1019,0046672,173 +1020,0106611,864 +1021,0109127,24795 +1022,0042332,11224 +1023,0063819,81310 +1024,0038166,15947 +1025,0057546,9078 +1026,0041890,29682 +1027,0102798,8367 +1028,0058331,433 +1029,0033563,11360 +1030,0076538,11114 +1031,0066817,12335 +1032,0043274,12092 +1033,0082406,10948 +1034,0116361,11229 +1035,0059742,15121 +1036,0095016,562 +1037,0104692,10163 +1038,0118044,48862 +1039,0114597,117036 +1040,0117582,47199 +1041,0117589,11159 +1042,0117887,9591 +1043,0117924,30500 +1044,0117791,41843 +1045,0116928,55058 +1046,0115640,10938 +1047,0116908,11412 +1049,0116409,10586 +1050,0116913,42314 +1051,0117958,27845 +1052,0117400,108365 +1053,0117202,23223 +1054,0116404,49471 +1055,0120107,38153 +1056,0116722,25147 +1057,0116242,9716 +1058,0115600,43777 +1059,0117509,454 +1060,0117802,10218 +1061,0117665,819 +1062,0117781,38191 +1063,0116714,56830 +1064,0115491,11238 +1065,0043140,27256 +1066,0029546,31530 +1067,0028757,66473 +1068,0039286,28120 +1069,0037101,1834 +1070,0044863,26282 +1071,0109823,37218 +1073,0067992,252 +1075,0111622,116356 +1076,0055018,16372 +1077,0070707,11561 +1078,0066808,11302 +1079,0095159,623 +1080,0079470,583 +1081,0084865,12614 +1082,0068334,21711 +1083,0059243,11575 +1084,0061418,475 +1085,0052027,11331 +1086,0046912,521 +1087,0113731,21202 +1088,0092890,88 +1089,0105236,500 +1090,0091763,792 +1091,0098627,8491 +1092,0103772,402 +1093,0101761,10537 +1094,0104036,11386 +1095,0104348,9504 +1096,0084707,15764 +1097,0083866,601 +1098,0117577,67365 +1099,0029992,25842 +1100,0099371,2119 +1101,0092099,744 +1102,0115531,136311 +1103,0048545,221 +1104,0044081,702 +1105,0115885,25750 +1106,0116859,17642 +1107,0102336, +1109,0115870, +1110,0115684,146341 +1111,0117040,9305 +1112,0117284,37616 +1113,0115580,11112 +1114,0116378,21612 +1115,0114472,141210 +1116,0113057,102461 +1117,0116581,36998 +1118,0114622,200383 +1119,0112907,116844 +1120,0117318,1630 +1121,0116422,26626 +1122,0114147, +1123,0117320,124837 +1124,0082846,11816 +1125,0072081,11843 +1126,0101775,10379 +1127,0096754,2756 +1128,0080749,790 +1129,0082340,1103 +1130,0082533,11298 +1131,0091288,4480 +1132,0091480,4481 +1133,0111357, +1134,0107274,49688 +1135,0081375,10765 +1136,0071853,762 +1137,0116587,44497 +1138,0112777,85588 +1139,0116245,278621 +1140,0116212,99479 +1141,0113328, +1142,0116403, +1143,0117968,55049 +1144,0116886,124829 +1145,0117677,79306 +1146,0112759,356054 +1147,0118147,10548 +1148,0108598,531 +1149,0110173,104931 +1150,0084589,4483 +1151,0109781,18919 +1152,0040427,31556 +1153,0040723,26167 +1154,0039881,26174 +1155,0092281, +1156,0034493,61461 +1157,0039004,117500 +1158,0026465,218713 +1159,0026656,217802 +1160,0025799,127973 +1161,0078875,659 +1162,0069198,30892 +1163,0110521,86369 +1164,0060304,8074 +1165,0115715,124676 +1166,0113031, +1167,0116059,38554 +1168,0115610,49763 +1169,0099028,41326 +1170,0112483,36555 +1171,0103850,10608 +1172,0095765,11216 +1173,0097108,7452 +1174,0109942,64567 +1175,0101700,892 +1176,0101765,1600 +1177,0101811,26561 +1178,0050825,975 +1179,0099703,18129 +1180,0102014,54405 +1181,0120121,150823 +1183,0116209,409 +1184,0102426,38251 +1185,0097937,10161 +1186,0098724,1412 +1187,0105107,41768 +1188,0105488,10409 +1189,0096257,14285 +1190,0101026,2469 +1191,0102370,10174 +1192,0100332,31225 +1193,0073486,510 +1194,0078446,11455 +1196,0080684,1891 +1197,0093779,2493 +1198,0082971,85 +1199,0088846,68 +1200,0090605,679 +1201,0060196,429 +1202,0094336,13446 +1203,0050083,389 +1204,0056172,947 +1206,0066921,185 +1207,0056592,595 +1208,0078788,28 +1209,0064116,335 +1210,0086190,1892 +1211,0093191,144 +1212,0041959,1092 +1213,0099685,769 +1214,0078748,348 +1215,0106308,766 +1216,0095250,175 +1217,0089881,11645 +1218,0097202,10835 +1219,0054215,539 +1220,0080455,525 +1221,0071562,240 +1222,0093058,600 +1223,0104361,530 +1224,0097499,10705 +1225,0086879,279 +1226,0045061,3109 +1227,0087843,311 +1228,0081398,1578 +1230,0075686,703 +1231,0086197,9549 +1232,0079944,1398 +1233,0082096,387 +1234,0070735,9277 +1235,0067185,343 +1236,0103130,37291 +1237,0050976,490 +1238,0085859,11235 +1240,0088247,218 +1241,0103873,763 +1242,0097441,9665 +1243,0100519,18971 +1244,0079522,696 +1245,0100150,379 +1246,0097165,207 +1247,0061722,37247 +1248,0052311,1480 +1249,0100263,9322 +1250,0050212,826 +1251,0056801,422 +1252,0071315,829 +1253,0043456,828 +1254,0040897,3090 +1255,0092610,9964 +1256,0023969,3063 +1257,0088794,13667 +1258,0081505,694 +1259,0092005,235 +1260,0022100,832 +1261,0092991,765 +1262,0057115,5925 +1263,0077416,11778 +1264,0082269,4485 +1265,0107048,137 +1266,0105695,33 +1267,0056218,982 +1268,0100436,8428 +1269,0036613,212 +1270,0088763,105 +1271,0101921,1633 +1272,0066206,11202 +1273,0090967,1554 +1274,0094625,149 +1275,0091203,8009 +1276,0061512,903 +1277,0099334,11673 +1278,0072431,3034 +1279,0102536,339 +1280,0101640,10404 +1281,0032553,914 +1282,0032455,756 +1283,0044706,288 +1284,0038355,910 +1285,0097493,2640 +1286,0081534,16633 +1287,0052618,665 +1288,0088258,11031 +1289,0085809,11314 +1290,0094006,15143 +1291,0097576,89 +1292,0078841,10322 +1293,0083987,783 +1295,0096332,10644 +1296,0091867,11257 +1297,0089886,14370 +1298,0084503,12104 +1299,0087553,625 +1300,0089606,8816 +1301,0049223,830 +1302,0097351,2323 +1303,0073341,983 +1304,0064115,642 +1305,0087884,655 +1306,0101458,10341 +1307,0098635,639 +1308,0113369,266022 +1309,0114089,168450 +1310,0116589,30180 +1311,0117550,31388 +1312,0116293,41801 +1313,0116953,66034 +1314,0115754,348138 +1315,0114093,96288 +1316,0115548, +1317,0116601,61536 +1318,0112537,18762 +1319,0107314,331367 +1320,0103644,8077 +1321,0082010,814 +1322,0103678,41671 +1323,0085159,27214 +1324,0115535,52263 +1325,0106262,33519 +1326,0083550,16235 +1327,0078767,11449 +1328,0099030,41848 +1329,0071233,25944 +1330,0090655,24913 +1331,0075704,49126 +1332,0092632,32076 +1333,0056869,571 +1334,0051418,8851 +1335,0082083,37843 +1336,0101492,32146 +1337,0037549,30346 +1339,0103874,6114 +1340,0026138,229 +1341,0074258,13549 +1342,0103919,9529 +1343,0101540,1598 +1344,0055824,11349 +1345,0074285,7340 +1346,0083722,6217 +1347,0087800,377 +1348,0013442,653 +1349,0091651,28198 +1350,0075005,794 +1351,0115710,31640 +1352,0115495,8744 +1353,0117057,25189 +1354,0115751,145 +1355,0119791,2212 +1356,0117731,199 +1357,0117631,7863 +1358,0117666,12498 +1359,0116705,9279 +1360,0084116,53234 +1361,0117293,17204 +1363,0117372,21539 +1364,0113557,85589 +1365,0117477,12709 +1366,0115988,20539 +1367,0115433,11674 +1368,0042354,199512 +1369,0110171,64900 +1370,0099423,1573 +1371,0079945,152 +1372,0102975,174 +1373,0098382,172 +1374,0084726,154 +1375,0088170,157 +1376,0092007,168 +1377,0103776,364 +1378,0096487,11967 +1379,0100994,9086 +1380,0077631,621 +1381,0084021,9037 +1382,0100114,10173 +1383,0115471,55687 +1384,0117773,168535 +1385,0105690,8845 +1386,0052287,46681 +1387,0073195,578 +1388,0077766,579 +1389,0085750,17692 +1390,0117119,17795 +1391,0116996,75 +1392,0115906,13891 +1393,0116695,9390 +1394,0093822,378 +1395,0094155,10896 +1396,0105435,2322 +1397,0115633,41240 +1398,0116621,26949 +1399,0116999,9819 +1400,0117691,49799 +1401,0116410,31908 +1404,0119783,46027 +1405,0115641,3179 +1406,0112769,1802 +1407,0117571,4232 +1408,0104691,9361 +1409,0117038,2928 +1410,0116240,30285 +1411,0116477,10549 +1412,0117690,58102 +1413,0118163,18451 +1414,0117091,27265 +1415,0118100,49935 +1416,0116250,8818 +1417,0117364,36758 +1419,0067959,36040 +1420,0117028,74239 +1421,0113212, +1422,0119731,9415 +1423,0116506,55146 +1424,0116640,303693 +1425,0119115,12145 +1426,0120550,42424 +1427,0120390,34314 +1428,0112362,2892 +1429,0116704,9404 +1430,0120414,85242 +1431,0118708,9622 +1432,0119664,8860 +1433,0110425,197537 +1434,0123281, +1436,0080714,66597 +1437,0106535,14832 +1438,0118928,9619 +1439,0119644,40506 +1440,0106266,31000 +1441,0106387,4104 +1442,0119937,26306 +1443,0117907,203829 +1444,0109949,43775 +1445,0119640,14908 +1446,0116790,784 +1447,0119225,12489 +1448,0116310,168283 +1449,0118111,16448 +1450,0116754,55936 +1453,0118691,17894 +1454,0120238,28059 +1455,0116565,58911 +1456,0119887,17949 +1457,0119141,1968 +1458,0120357,61563 +1459,0118548,66 +1460,0120317,20735 +1461,0120434,11419 +1462,0118042,333165 +1463,0120318,25796 +1464,0116922,638 +1465,0120036,25624 +1466,0119008,9366 +1467,0117544,60083 +1468,0118750,21915 +1470,0120014,90928 +1471,0118762,50091 +1472,0118859,18420 +1473,0118702,19952 +1474,0119432,9446 +1475,0116743,28005 +1476,0119951,9403 +1477,0119572,27322 +1479,0120053,10003 +1480,0120152,9311 +1482,0118064,11844 +1483,0115964,884 +1484,0116041,49806 +1485,0119528,1624 +1486,0117422,88423 +1487,0120094,16052 +1488,0118972,4477 +1489,0118829,24662 +1490,0118663,18423 +1493,0116931,76996 +1495,0120389,6499 +1496,0118623,50512 +1497,0119013,9405 +1498,0119381,12723 +1499,0118615,9360 +1500,0119229,9434 +1501,0116762,118991 +1502,0116783,21626 +1503,0118541,13982 +1504,0113314,93946 +1507,0119859,77223 +1508,0120366,31465 +1509,0118586,12793 +1510,0118783,102878 +1511,0117050,105763 +1513,0120032,9611 +1514,0116295,47694 +1515,0120461,10357 +1516,0115886,9977 +1517,0118655,816 +1518,0118771,2163 +1519,0115760,124680 +1520,0115927,16399 +1522,0117482,124843 +1523,0120383,31017 +1524,0105660,24645 +1525,0120479,49478 +1526,0119109,12499 +1527,0119116,18 +1528,0116643,68545 +1529,0119809,1811 +1531,0116920,109614 +1532,0120190,60082 +1533,0117398,105045 +1534,0058985,53023 +1535,0119578,64802 +1537,0117615,11239 +1538,0120087,50850 +1539,0120394,15321 +1541,0118556,2058 +1542,0115744,9450 +1543,0118964,125021 +1544,0119567,330 +1545,0117359,38523 +1546,0117561,16375 +1547,0120118,33660 +1548,0118117,59232 +1549,0114303,45671 +1550,0120373,17770 +1551,0118787,15170 +1552,0118880,1701 +1553,0116834,201445 +1554,0114134,26422 +1555,0112951,124642 +1556,0120179,1639 +1557,0117724,49235 +1558,0117775,106129 +1559,0113968,291634 +1561,0118127,107743 +1562,0118688,415 +1563,0119019,47686 +1564,0120034,65889 +1565,0116502,11103 +1566,0119282,11970 +1567,0119502,34941 +1568,0116949, +1569,0119738,8874 +1570,0105569,17991 +1571,0115856,11956 +1572,0057345,266 +1573,0119094,754 +1574,0119098,37567 +1575,0116384,43771 +1577,0117076,124834 +1578,0113425,249358 +1579,0116334,111367 +1580,0119654,607 +1581,0119848,18080 +1582,0120512,38225 +1583,0120133,17834 +1584,0118884,686 +1585,0116930,65046 +1586,0119173,4421 +1587,0082198,9387 +1588,0119190,10603 +1589,0118887,2142 +1590,0119081,8413 +1591,0120177,10336 +1592,0118570,20737 +1593,0119896,9413 +1594,0119361,14585 +1595,0119152,18519 +1596,0118818,49462 +1597,0118883,8834 +1598,0118966,9458 +1599,0120207,8854 +1600,0120112,38295 +1601,0119311,22073 +1602,0119509,37244 +1603,0119675,4961 +1604,0119695,9416 +1605,0119086,26180 +1606,0119484,17832 +1608,0118571,9772 +1609,0118531,6072 +1610,0099810,1669 +1611,0102494,468 +1612,0119465,32519 +1613,0120197,108401 +1614,0119360,10806 +1615,0119051,9433 +1616,0119874,6623 +1617,0119488,2118 +1619,0120102,978 +1620,0119468,9437 +1621,0120169,29461 +1622,0119457,56651 +1623,0120524,10351 +1624,0120323,66588 +1625,0119174,2649 +1626,0119123,14289 +1627,0120399,10155 +1628,0119557,75250 +1629,0119632,20457 +1630,0123953, +1631,0118647,18355 +1632,0120151,33657 +1633,0120402,55306 +1635,0119349,68924 +1636,0120192,36434 +1639,0118842,2255 +1640,0119326,28353 +1641,0119164,9427 +1642,0116631,172545 +1643,0119280,17589 +1644,0119345,3597 +1645,0118971,1813 +1646,0120029,36797 +1647,0119906,12628 +1648,0119324,33344 +1649,0119107,25099 +1650,0120481,45019 +1651,0120303,63437 +1652,0120539,62422 +1653,0119177,782 +1654,0119095,29911 +1655,0119891,9827 +1656,0120257,1959 +1657,0120529,251481 +1658,0119535,8067 +1659,0119338,125052 +1660,0119080,45153 +1661,0119210,10871 +1662,0118900,14398 +1663,0083131,10890 +1664,0117221,99002 +1665,0118689,1281 +1666,0119327,32332 +1667,0119592,9770 +1668,0119832,12616 +1669,0120275,34838 +1670,0120490,14905 +1671,0119527,14583 +1672,0119978,11975 +1673,0118749,4995 +1674,0090329,9281 +1675,0119365,45928 +1676,0120201,563 +1677,0118901,61337 +1678,0107282,19931 +1679,0118836,31535 +1680,0120148,10215 +1681,0119707,9823 +1682,0120382,37165 +1683,0120520,45609 +1684,0119723,38904 +1685,0116592,45565 +1686,0119994,9407 +1687,0119395,4824 +1688,0118617,9444 +1689,0120483,9414 +1690,0118583,8078 +1692,0112318,29938 +1693,0118607,11831 +1694,0118632,2895 +1695,0123385,39177 +1696,0118698,19601 +1697,0109266,124606 +1698,0118764,42832 +1699,0118804,22797 +1701,0118954,2639 +1702,0119137,9574 +1703,0119142,10371 +1704,0119217,489 +1705,0116465,167738 +1706,0116490,293820 +1707,0119303,9714 +1708,0119352,102406 +1709,0130073, +1710,0116976,170430 +1711,0119668,8197 +1713,0119715,6283 +1714,0117167,279698 +1715,0119819,49728 +1716,0119845,64562 +1717,0120082,4233 +1718,0120222,191874 +1719,0120255,10217 +1720,0128755, +1721,0120338,597 +1722,0120347,714 +1723,0117994,52537 +1724,0118230,12799 +1725,0119052,62394 +1726,0119925,9922 +1727,0119314,547 +1728,0120521,25994 +1729,0119396,184 +1730,0119485,9746 +1731,0119718,9438 +1732,0118715,115 +1733,0118566,26941 +1734,0119590,27103 +1735,0119223,9410 +1738,0120881, +1739,0118539,32302 +1740,0119655,216794 +1742,0119988,88863 +1743,0129758,154821 +1744,0120670,41417 +1746,0120820,12538 +1747,0120885,586 +1748,0118929,2666 +1749,0116845,46338 +1750,0120478,54007 +1752,0120696,11258 +1753,0120693,9490 +1754,0119099,9411 +1755,0120122,25719 +1756,0118643,9033 +1757,0112913,11220 +1759,0119815,21253 +1760,0120185,6116 +1762,0118956,9457 +1764,0128690,281289 +1765,0119521,43911 +1767,0119734,39424 +1768,0119711,44361 +1769,0120008,11702 +1770,0120594,2923 +1771,0119784,12238 +1772,0118747,11568 +1773,0114690,41577 +1774,0133090, +1776,0120707,66894 +1777,0120888,11003 +1779,0120184,10153 +1780,0118662,49645 +1781,0116379,47112 +1782,0119548,102732 +1783,0120782,30949 +1784,0119822,2898 +1785,0099939,9558 +1787,0145302,83593 +1788,0119656,320011 +1789,0114322, +1791,0119594,26269 +1792,0120873,11808 +1793,0120491,6970 +1794,0119574,47452 +1795,0112619,18205 +1796,0140282,36943 +1797,0120661,21736 +1798,0118744,17941 +1799,0120241,10668 +1801,0120744,9313 +1804,0120769,42807 +1805,0120890,617 +1806,0125454,36568 +1807,0120642,37272 +1809,0119250,5910 +1810,0119942,9440 +1811,0119780,53092 +1812,0120510,32911 +1814,0120793,44308 +1815,0119049,124821 +1816,0124179,32456 +1817,0119560,93350 +1819,0120219,62695 +1820,0120108,32144 +1821,0120772,17127 +1822,0120645,40688 +1824,0119305,17133 +1825,0119905,19848 +1826,0120598,17644 +1827,0124295,1774 +1829,0118851,30265 +1830,0119139, +1831,0120738,2157 +1832,0119272,70581 +1833,0120749,8838 +1834,0120176,29193 +1835,0120632,795 +1836,0120728,16980 +1837,0120773,27472 +1839,0120765,47881 +1840,0124718,9469 +1841,0119196,12488 +1842,0118229,98499 +1843,0120213,81367 +1844,0118819,267 +1845,0120906,16148 +1846,0119792,21252 +1847,0117443,73135 +1848,0118755,9449 +1849,0119947,6264 +1850,0130019,90414 +1851,0119508,188870 +1852,0118727,215373 +1853,0118577,78149 +1854,0120723,15513 +1855,0120725,31220 +1856,0138563,13907 +1857,0119987,29825 +1858,0117786,10622 +1859,0120265,30020 +1860,0119448,17139 +1861,0118785,34582 +1862,0120841,10216 +1863,0120742,9771 +1864,0120838,24560 +1865,0141986,76330 +1866,0120609,9448 +1867,0120856,38618 +1869,0120610,18316 +1870,0118925,78373 +1871,0119952,77514 +1872,0113184,49474 +1873,0119683,4415 +1874,0120211,39467 +1875,0118866,55561 +1876,0120647,8656 +1877,0145048,209345 +1878,0120531,58680 +1879,0125128,35161 +1880,0119506,35796 +1881,0120800,18937 +1882,0120685,929 +1883,0118798,9452 +1884,0120669,1878 +1885,0120777,9844 +1886,0131436,40505 +1887,0119053,14342 +1888,0119313,9715 +1889,0119375,26610 +1890,0119547,20064 +1891,0120401,40961 +1892,0120787,1965 +1893,0116692,312 +1894,0120828,6068 +1895,0127723,15037 +1896,0118894,50043 +1897,0139362,37636 +1898,0119494,17044 +1899,0125980,60951 +1900,0118849,21334 +1901,0150290, +1902,0116141,32284 +1903,0126938,51955 +1904,0122529,37410 +1905,0143614,47481 +1906,0119717,53765 +1907,0120762,10674 +1908,0140508,136134 +1909,0120902,846 +1910,0126344,12655 +1911,0118998,3050 +1912,0120780,1389 +1913,0073540,11020 +1914,0120321,20862 +1915,0120443,108548 +1916,0118789,9464 +1917,0120591,95 +1918,0122151,944 +1919,0123987,35680 +1920,0122718,11551 +1921,0138704,473 +1922,0140688,102304 +1923,0129387,544 +1924,0052077,10513 +1925,0018578,28966 +1926,0019729,65203 +1927,0020629,143 +1928,0021746,42861 +1929,0022958,33680 +1930,0023876,56164 +1931,0026752,12311 +1932,0027698,43277 +1933,0029146,43278 +1934,0030993,34106 +1935,0033729,43266 +1936,0035093,27367 +1937,0036872,17661 +1938,0037884,28580 +1939,0036868,887 +1940,0039416,33667 +1941,0040416,23383 +1942,0041113,25430 +1943,0044672,27191 +1944,0045793,11426 +1945,0047296,654 +1946,0048356,15919 +1947,0055614,1725 +1948,0057590,5769 +1949,0060665,874 +1950,0061811,10633 +1951,0063385,17917 +1952,0064665,3116 +1953,0067116,1051 +1954,0075148,1366 +1955,0079417,12102 +1956,0081283,16619 +1957,0082158,9443 +1958,0086425,11050 +1959,0089755,606 +1960,0093389,746 +1961,0095953,380 +1962,0097239,403 +1963,0065063,11485 +1964,0067309,466 +1965,0087995,13820 +1966,0100142,15389 +1967,0091369,13597 +1968,0088847,2108 +1969,0089686,10014 +1970,0093629,10072 +1971,0095742,10131 +1972,0097981,10160 +1973,0101917,11284 +1974,0080761,4488 +1975,0082418,9725 +1976,0083972,9728 +1977,0087298,9730 +1978,0089173,9731 +1979,0091080,10225 +1980,0095179,10281 +1981,0097388,10283 +1982,0077651,948 +1983,0082495,11281 +1984,0085636,10676 +1985,0095271,11357 +1986,0097474,11361 +1987,0081383,36599 +1988,0093176,39929 +1989,0098136,41828 +1990,0105179,41769 +1991,0094862,10585 +1992,0099253,11186 +1993,0103956,11187 +1994,0084516,609 +1995,0091778,11133 +1996,0095889,10306 +1997,0070047,9552 +1998,0076009,11586 +1999,0099528,11587 +2000,0093409,941 +2001,0097733,942 +2002,0104714,943 +2003,0087363,927 +2004,0099700,928 +2005,0089218,9340 +2006,0120746,9342 +2007,0119910,38509 +2008,0117898,60033 +2009,0070723,12101 +2010,0017136,19 +2011,0096874,165 +2012,0099088,196 +2013,0069113,551 +2014,0076054,16084 +2015,0054594,17984 +2016,0078790,22328 +2017,0054649,32611 +2018,0034492,3170 +2019,0047478,346 +2020,0094947,859 +2021,0087182,841 +2022,0095497,11051 +2023,0099674,242 +2024,0102757,1411 +2025,0119558,9769 +2026,0134619,9424 +2027,0120741,9835 +2028,0120815,857 +2029,0137386,17539 +2030,0119007,44322 +2031,0066728,22777 +2032,0066811,20173 +2033,0088814,10957 +2034,0078869,9570 +2035,0062737,16249 +2036,0109287,13962 +2037,0075807,14612 +2038,0077305,19378 +2039,0097053,65157 +2040,0065566,29228 +2041,0082199,19379 +2042,0109520,11164 +2043,0052722,18887 +2044,0082263,40866 +2045,0106868,24736 +2046,0091059,10122 +2047,0061715,24816 +2048,0091149,9994 +2049,0061749,25445 +2050,0080861,12129 +2051,0076137,14140 +2052,0107120,10439 +2053,0104437,11158 +2054,0097523,9354 +2055,0077698,28736 +2056,0056095,34774 +2057,0057180,37969 +2058,0120768,9631 +2059,0120783,9820 +2060,0131857,14013 +2061,0119165,36606 +2062,0120687,96196 +2063,0124115,98505 +2064,0098213,1779 +2065,0089853,10849 +2066,0039689,678 +2067,0059113,907 +2068,0083922,5961 +2069,0090203,47908 +2070,0086423,42121 +2071,0106273,2887 +2072,0096734,11974 +2073,0089126,20348 +2074,0071910,26648 +2075,0082736,11911 +2076,0090756,793 +2077,0089385,35144 +2078,0061852,9325 +2079,0053994,43037 +2080,0048280,10340 +2081,0097757,10144 +2082,0104868,10414 +2083,0104940,10437 +2084,0104990,15300 +2085,0055254,12230 +2086,0089731,13380 +2087,0046183,10693 +2088,0081353,11335 +2089,0100477,11135 +2090,0076618,11319 +2091,0078158,14822 +2092,0107952,15969 +2093,0089908,13155 +2094,0102803,10249 +2095,0075200,15943 +2096,0053285,10882 +2097,0086336,24808 +2098,0057518,19762 +2099,0038969,13850 +2100,0088161,2619 +2101,0111271,65158 +2102,0019422,53565 +2103,0111359,41841 +2104,0084783,27332 +2105,0084827,97 +2106,0108265,10419 +2107,0120694,11675 +2108,0102250,2107 +2109,0079367,6471 +2110,0083798,9442 +2111,0085894,11591 +2112,0101969,13697 +2113,0099697,19158 +2114,0086066,227 +2115,0087469,87 +2116,0077869,123 +2117,0087803,9314 +2118,0085407,11336 +2119,0091499,9980 +2120,0107665,10657 +2121,0085382,10489 +2122,0087050,10823 +2123,0096787,11497 +2124,0101272,2907 +2125,0120631,9454 +2126,0120832,8688 +2127,0128214,118452 +2128,0120813,16155 +2129,0120056,48894 +2130,0080388,23954 +2131,0077711,12761 +2132,0061184,396 +2133,0092513,14367 +2134,0090305,11814 +2135,0061584,16081 +2136,0057372,18331 +2137,0070016,15171 +2138,0078480,11837 +2139,0084649,11704 +2140,0083791,11639 +2141,0090633,4978 +2142,0101329,10380 +2143,0089469,11976 +2144,0088128,15144 +2145,0091790,11522 +2146,0090060,11557 +2147,0090848,13853 +2148,0091223,11415 +2149,0093220,37530 +2150,0080801,8393 +2151,0097443,11937 +2152,0140796,21661 +2153,0118661,9320 +2154,0120703,33644 +2155,0120831,14662 +2156,0133413,125124 +2157,0129923,115872 +2158,0116516,39930 +2159,0099763,10692 +2160,0063522,805 +2161,0088323,34584 +2162,0100240,34636 +2163,0080391,2182 +2164,0094077,28070 +2165,0119517,77469 +2166,0124595,10278 +2167,0120611,36647 +2168,0120576,17915 +2169,0118301,14557 +2170,0120901,9417 +2171,0119778,41469 +2172,0120692,19381 +2173,0095709,34637 +2174,0094721,4011 +2175,0119033,161795 +2176,0040746,1580 +2177,0074512,5854 +2178,0068611,573 +2179,0065112,2370 +2180,0061107,5780 +2181,0058329,506 +2182,0051207,22527 +2183,0049470,574 +2184,0048750,11219 +2185,0045897,30159 +2186,0044079,845 +2187,0042994,1978 +2188,0120577,3682 +2189,0119346,51942 +2190,0123324,46702 +2191,0119453,54795 +2192,0139564,46748 +2193,0096446,847 +2194,0094226,117 +2195,0120654,14577 +2196,0120724,37498 +2197,0119125,38621 +2198,0139468,59138 +2199,0119892,28047 +2200,0042004,4175 +2201,0039694,31667 +2202,0037017,13321 +2203,0036342,21734 +2204,0035279,31997 +2205,0033922,24197 +2206,0034248,11462 +2207,0031505,31995 +2208,0030341,940 +2209,0029811,2762 +2210,0028212,12684 +2211,0028231,2761 +2212,0025452,8208 +2213,0024747,52907 +2214,0023285,15007 +2215,0023395,36049 +2216,0022395,52748 +2217,0020852,75793 +2218,0021015,47695 +2219,0021165,31930 +2220,0020142,20213 +2221,0019702,543 +2222,0018756,36054 +2223,0018876,143750 +2224,0017825,52782 +2225,0017843,36055 +2226,0018328,36056 +2227,0017075,2760 +2229,0016230,64398 +2230,0133361, +2231,0128442,10220 +2232,0123755,431 +2233,0118980,31641 +2234,0165857,223318 +2235,0120775,69848 +2236,0124879,22796 +2237,0119934,22256 +2238,0075040,37550 +2239,0073817,37916 +2240,0081207,21873 +2241,0085346,21500 +2242,0087359,84116 +2243,0092699,12626 +2244,0092537,37818 +2245,0096463,3525 +2246,0096166,129628 +2247,0095593,2321 +2248,0098258,2028 +2249,0100212,16384 +2250,0100134,91217 +2251,0101530,77314 +2252,0104412,10699 +2253,0105629,11597 +2254,0082172,218624 +2255,0084938,47947 +2256,0084472,48311 +2257,0087810,44772 +2258,0087690, +2259,0086973,14347 +2260,0092225,41090 +2261,0091680,18282 +2262,0090583,18169 +2263,0096073,11082 +2264,0098625,5971 +2265,0102558,11933 +2266,0101523,20096 +2267,0102469,30815 +2268,0104257,881 +2269,0107211,4478 +2270,0109390, +2271,0120788,22318 +2272,0120776,53113 +2273,0120812,2109 +2274,0113658,122289 +2275,0118736,24746 +2276,0120835,72987 +2277,0120162,193103 +2278,0122690,8195 +2279,0146336,9877 +2280,0118863,26618 +2281,0119802,21132 +2282,0126604,11855 +2283,0100594,24016 +2284,0109206,14785 +2285,0063850,14794 +2286,0080731,3486 +2287,0047573,11071 +2288,0084787,1091 +2289,0105151,10403 +2290,0081554,11337 +2291,0099487,162 +2292,0117276,25723 +2293,0144604,73351 +2294,0120587,8916 +2295,0120823,28134 +2296,0120770,9429 +2297,0120889,12159 +2298,0124102,27791 +2299,0052607,43106 +2300,0063462,30197 +2301,0082517,10156 +2302,0104952,10377 +2303,0073440,3121 +2304,0119577,4975 +2305,0139615,37532 +2306,0120701,9713 +2307,0122642,134368 +2308,0069966,85837 +2309,0141824,1039 +2310,0119670,9821 +2311,0086837,4437 +2312,0090830,1890 +2313,0080678,1955 +2314,0120603,39437 +2315,0144120,11932 +2316,0120791,6435 +2317,0119534,108316 +2318,0147612,10683 +2319,0119986,63709 +2320,0118636,9445 +2321,0120789,2657 +2322,0120157,9425 +2323,0150230,32326 +2324,0118799,637 +2325,0124819,8675 +2326,0143874,125762 +2327,0100740,20701 +2328,0120877,9945 +2329,0120586,73 +2330,0116481,18603 +2331,0120722,46889 +2332,0158493,12888 +2333,0120684,3033 +2334,0133952,9882 +2335,0120484,10663 +2336,0127536,4518 +2337,0120879,1808 +2338,0130018,3600 +2339,0155753,17037 +2340,0119643,297 +2341,0120643,5332 +2342,0116488,21589 +2343,0120767,8336 +2344,0089941,11893 +2345,0090934,123056 +2346,0073747,12223 +2347,0087932,32081 +2348,0091954,14924 +2349,0091538,10002 +2350,0099750,41817 +2351,0050783,19426 +2352,0085244,12560 +2353,0120660,9798 +2354,0134067,14444 +2355,0120623,9487 +2356,0120533,9466 +2357,0140888,666 +2358,0120070,2042 +2359,0166396,10162 +2360,0154420,309 +2361,0069089,692 +2362,0045826,24018 +2363,0047034,1678 +2364,0087344,39256 +2365,0056142,1680 +2366,0024216,244 +2367,0074751,10730 +2368,0091344,31947 +2369,0089017,8130 +2370,0089087,11532 +2371,0089155,9749 +2372,0097366,14628 +2373,0089893,9626 +2374,0091159,13698 +2375,0091541,10466 +2376,0090264,707 +2377,0089489,11954 +2378,0087928,9336 +2379,0089822,10157 +2380,0091777,12118 +2381,0093756,10587 +2382,0095882,11825 +2383,0098105,11895 +2384,0120595,9447 +2385,0119304,12257 +2386,0165494,37536 +2387,0124198,10029 +2388,0119248,27104 +2389,0155975,11252 +2390,0147004,8545 +2391,0120324,10223 +2392,0141109,9745 +2393,0120844,200 +2394,0120794,9837 +2395,0128445,11545 +2396,0138097,1934 +2397,0087688,110643 +2398,0039628,11881 +2399,0089961,13764 +2400,0098115,24951 +2401,0089767,8879 +2402,0089880,1369 +2403,0083944,1368 +2404,0095956,1370 +2405,0089370,10303 +2406,0088011,9326 +2407,0088933,10328 +2408,0094890,11285 +2409,0079817,1367 +2410,0084602,1371 +2411,0089927,1374 +2412,0100507,1375 +2413,0088930,15196 +2414,0090357,11904 +2415,0092173,215875 +2416,0090685,15596 +2417,0091188,13818 +2418,0091653,29968 +2419,0091024,44326 +2420,0087538,1885 +2421,0091326,8856 +2422,0097647,10495 +2423,0097958,5825 +2424,0128853,9489 +2425,0120706,16885 +2426,0120861,76857 +2427,0120863,8741 +2428,0133751,9276 +2429,0120751,9822 +2430,0041650,39314 +2431,0129290,10312 +2432,0120686,9441 +2433,0120633,9422 +2434,0142231,125582 +2435,0119336,24525 +2436,0120857,10368 +2437,0120514,11365 +2438,0144546,140897 +2439,0118564,31662 +2440,0127722,36136 +2441,0120699,1363 +2442,0150915,46992 +2443,0145734,825 +2444,0120391,22913 +2445,0132512,15556 +2446,0120710,28902 +2447,0139699,14709 +2448,0120458,9423 +2449,0093072,14443 +2450,0091225,10658 +2451,0093075,6917 +2452,0099636,40729 +2453,0090768,24086 +2454,0051622,11815 +2455,0091064,9426 +2456,0097368,10344 +2457,0091875,15698 +2458,0090660,2620 +2459,0072271,30497 +2460,0092076,16337 +2461,0099994,25018 +2462,0110978,16780 +2463,0091877,12151 +2464,0092112,25438 +2465,0090917,33278 +2466,0090710,274253 +2467,0091605,192 +2468,0091306,10945 +2469,0091738,10013 +2470,0090555,9671 +2471,0092493,9396 +2472,0092105,11038 +2473,0091991,12278 +2474,0090863,11873 +2475,0090567,18588 +2476,0091187,10015 +2477,0091055,12715 +2478,0092086,8388 +2479,0120683,45712 +2480,0119773,6187 +2481,0151691,8129 +2482,0149151,1618 +2483,0112922,10722 +2484,0120095,296543 +2485,0160862,10314 +2486,0138279,125548 +2487,0163984,47139 +2488,0054167,11167 +2489,0152548,170187 +2490,0120784,2112 +2491,0145893,16172 +2492,0138987,111794 +2493,0128133,9524 +2494,0174852,20595 +2495,0070544,16306 +2496,0124298,11622 +2497,0139462,10207 +2498,0120764,9849 +2499,0119207,82865 +2500,0155776,18892 +2501,0132477,13466 +2502,0151804,1542 +2503,0156901,43978 +2504,0137338,15256 +2505,0134273,8224 +2506,0123209,18417 +2507,0120618,12479 +2508,0181322,15031 +2509,0119054,15209 +2510,0134948,26425 +2511,0070334,1847 +2512,0084390,42113 +2513,0098084,8913 +2514,0105128,10906 +2515,0106557,25748 +2516,0109415,25749 +2517,0085333,8769 +2518,0084412,14742 +2519,0051744,15856 +2520,0065377,10671 +2521,0071110,27932 +2522,0075648,7227 +2523,0076636,10670 +2524,0072308,5919 +2525,0080354,33518 +2526,0079550,40160 +2527,0070909,2362 +2528,0074812,10803 +2529,0063442,871 +2530,0065462,1685 +2531,0069768,1705 +2532,0068408,1688 +2533,0067065,1687 +2534,0077189,166680 +2535,0071455,11123 +2536,0078740,29723 +2537,0078856,31638 +2538,0175550,113286 +2539,0122933,9535 +2540,0142192,9455 +2541,0139134,796 +2542,0120735,100 +2543,0127288,47501 +2544,0157208,77936 +2545,0159696,84586 +2546,0120646,30943 +2547,0125778,107946 +2548,0144814,7341 +2549,0131646,10350 +2550,0057129,11772 +2551,0094964,9540 +2552,0107626,31503 +2553,0054443,11773 +2554,0056931,30202 +2555,0118665,22345 +2556,0120859,53685 +2557,0157016,1567 +2558,0141098,1641 +2559,0160429,47288 +2560,0129332,10212 +2561,0139668,10354 +2562,0118682,11526 +2563,0118892,8583 +2564,0116192,123728 +2565,0049408,16520 +2566,0187819,16508 +2567,0131369,11374 +2568,0120757,16379 +2569,0122906,125123 +2570,0120613,28029 +2571,0133093,603 +2572,0147800,4951 +2573,0120274,65749 +2574,0129280,8970 +2575,0120449,9840 +2576,0116932,186705 +2577,0119665,30950 +2578,0127302,70687 +2579,0154506,11660 +2580,0139239,9430 +2581,0151738,11355 +2582,0105399,18764 +2583,0126250,9465 +2584,0166195,27455 +2585,0133363,1414 +2586,0119219,49981 +2587,0123964,6522 +2588,0341315, +2589,0143261,114719 +2590,0136244,10209 +2591,0123923,25512 +2592,0139394,143299 +2593,0110570,22826 +2594,0125659,1902 +2595,0188996, +2596,0133189,6396 +2597,0120836,39964 +2598,0120797,12596 +2599,0126886,9451 +2600,0120907,1946 +2601,0119546,89522 +2602,0076164,42230 +2603,0128370,139445 +2604,0168950,74140 +2605,0137494,1844 +2606,0138510,6552 +2607,0162973,24584 +2608,0120697,213985 +2609,0115669,25471 +2610,0138874,4154 +2611,0155388,28519 +2612,0037913,3309 +2613,0087799,18462 +2614,0090837,28941 +2615,0089652,18252 +2616,0099422,8592 +2617,0120616,564 +2618,0118826,13852 +2619,0188052,140519 +2620,0120865,25232 +2621,0115005,33194 +2622,0140379,10210 +2623,0160298,53862 +2624,0165078,17962 +2625,0115693,9460 +2626,0138414,4927 +2627,0120659,122190 +2628,0120915,1893 +2629,0166252,31342 +2630,0149723,44297 +2631,0120680,95627 +2632,0059643,8785 +2633,0023245,15849 +2634,0053085,18990 +2635,0037098,29242 +2636,0037099,29243 +2637,0032818,31498 +2638,0035096,29239 +2639,0082766,15660 +2640,0078346,1924 +2641,0081573,8536 +2642,0086393,9531 +2643,0094074,11411 +2644,0021814,138 +2646,0037793,30793 +2647,0036931,3103 +2648,0021884,3035 +2649,0031951,3077 +2650,0034786,3074 +2651,0035899,3076 +2652,0050280,3079 +2653,0036376,32023 +2654,0034398,13666 +2655,0089308,29794 +2656,0048696,9077 +2657,0073629,36685 +2658,0042469,43391 +2659,0084156,30168 +2660,0044121,10785 +2661,0045920,19483 +2662,0046534,8974 +2663,0048215,29959 +2664,0049366,11549 +2665,0049169,18158 +2666,0049370,27625 +2667,0049516,41516 +2668,0084745,17918 +2669,0053183,37305 +2670,0052151,18784 +2671,0125439,509 +2672,0139809,1090 +2673,0156794,24858 +2674,0126859,15059 +2675,0138590,55912 +2676,0128278,12117 +2677,0186508,11779 +2678,0126261,41730 +2679,0124555,84198 +2680,0139216,100568 +2681,0141105,13533 +2682,0164085,62676 +2683,0145660,817 +2684,0143924,265966 +2685,0156820,91598 +2686,0120802,14283 +2687,0120855,37135 +2688,0144214,2275 +2689,0184510,68426 +2690,0122541,24137 +2691,0120731,10376 +2692,0130827,104 +2693,0120370,15800 +2694,0142342,9032 +2695,0139898,13821 +2696,0119038,9421 +2697,0119743,55955 +2698,0120554,67067 +2699,0099052,6488 +2700,0158983,9473 +2701,0120891,8487 +2702,0162677,10279 +2703,0149964,125263 +2704,0101318,2767 +2705,0167925,78568 +2706,0163651,2105 +2707,0137363,1073 +2708,0137439,10239 +2709,0158811,10208 +2710,0185937,2667 +2711,0120899,48958 +2712,0120663,345 +2713,0139414,9825 +2714,0161100,16158 +2715,0120878,133575 +2716,0087332,620 +2717,0097428,2978 +2718,0157503,10490 +2719,0171363,11618 +2720,0141369,332 +2721,0162710,1812 +2722,0149261,8914 +2723,0132347,9824 +2724,0163187,4806 +2725,0162830,33430 +2726,0049406,247 +2727,0048254,10056 +2728,0054331,967 +2729,0056193,802 +2730,0072684,3175 +2731,0053198,147 +2732,0055032,1628 +2733,0096378,21185 +2734,0091557,11120 +2735,0091129,10136 +2736,0090774,32060 +2737,0092585,48686 +2738,0090886,48259 +2739,0088939,873 +2740,0091343,48660 +2741,0091637,26789 +2742,0092068,3934 +2743,0091613,108312 +2744,0091699,198469 +2745,0091530,11416 +2746,0091419,10776 +2747,0054033,24452 +2748,0092534,9710 +2749,0091554,31924 +2750,0093818,30890 +2751,0093051,24081 +2752,0093690,20242 +2753,0092627,39074 +2754,0092850,66194 +2755,0093415,2115 +2756,0094293,23599 +2757,0083967,3526 +2758,0089816,41166 +2759,0144168,16406 +2760,0129111,197239 +2761,0129167,10386 +2762,0167404,745 +2763,0155267,913 +2764,0063688,912 +2765,0122515,12229 +2766,0168449,67323 +2767,0120709,91076 +2768,0120210,89861 +2769,0138946,19457 +2770,0131325,11353 +2771,0120620,17707 +2772,0165710,9781 +2773,0176422,102489 +2774,0168987,18212 +2775,0138487,13817 +2776,0119614,126996 +2777,0015693,38715 +2778,0113965,48781 +2779,0077663,12185 +2780,0057449,29056 +2781,0053363,26857 +2782,0055304,28501 +2783,0059821,29030 +2784,0058333,25319 +2785,0056552,29074 +2786,0091178,24103 +2787,0088889,10552 +2788,0066765,9267 +2789,0077394,10766 +2790,0082377,10768 +2791,0080339,813 +2792,0083530,2665 +2793,0118604,9406 +2794,0089670,11418 +2795,0085995,11153 +2796,0095188,14170 +2797,0094737,2280 +2798,0100419,11077 +2799,0102719,28597 +2800,0104740,22611 +2801,0119843,39780 +2802,0096244,10396 +2803,0107798,9944 +2804,0085334,850 +2805,0130121,10154 +2806,0133046,10342 +2807,0176269,10366 +2808,0105698,9349 +2809,0188863,15122 +2810,0156887,10494 +2811,0119692,126152 +2812,0160401,22314 +2813,0181833,51679 +2814,0052602,35813 +2815,0091278,11037 +2816,0095382,11955 +2817,0103617,2038 +2818,0113438,28737 +2819,0073802,11963 +2820,0058175,141489 +2821,0010418,53761 +2822,0104839,9096 +2823,0010726,91893 +2824,0181733,113273 +2825,0163185,103793 +2826,0120657,1911 +2827,0138304,2900 +2828,0160236,17709 +2829,0164108,37718 +2830,0169145,47144 +2831,0160216,104896 +2832,0144286,30964 +2833,0119586,52366 +2834,0120747,6373 +2835,0163579,2162 +2836,0125971,14578 +2837,0126810,40694 +2838,0125211,4338 +2839,0157183,49184 +2840,0145531,10307 +2841,0164181,11601 +2842,0133412,18621 +2843,0118843,1075 +2844,0151582,21719 +2845,0178988,40879 +2846,0097050,47951 +2847,0031762,43832 +2848,0045251,47697 +2849,0102741,49792 +2850,0107895,77064 +2851,0081454, +2852,0088146,26522 +2853,0076150,23761 +2854,0069994,24097 +2855,0086014,42114 +2856,0059297,28295 +2857,0063823,12105 +2858,0169547,14 +2859,0088178,24128 +2860,0181316,11001 +2861,0126916,10390 +2862,0080491,9453 +2863,0058182,704 +2864,0127296,35122 +2865,0173390,142132 +2866,0077280,24153 +2867,0089175,11797 +2868,0097390,18086 +2869,0111342,124475 +2870,0061385,17887 +2871,0068473,10669 +2872,0082348,11527 +2873,0125879,42848 +2874,0050814,40867 +2875,0108185,1049 +2876,0111419,28032 +2877,0073812,11326 +2878,0082511,28377 +2879,0099558,10975 +2880,0091431,10974 +2881,0150377,10398 +2882,0120716,2290 +2883,0140397,24071 +2884,0129884,62994 +2885,0160338,60994 +2886,0159421,16112 +2887,0168172,32305 +2888,0164114,14429 +2889,0134618,15198 +2890,0120188,6415 +2891,0162360,24066 +2892,0133122,21430 +2893,0134033,10381 +2894,0194314,171982 +2895,0068990,42486 +2896,0060095,60285 +2897,0087188,5622 +2898,0106664,10349 +2899,0031397,42518 +2900,0095652,29787 +2901,0079714,9638 +2902,0086154,10576 +2903,0091799,12662 +2904,0023369,61369 +2905,0056443,11712 +2906,0156934,12618 +2907,0167427,13824 +2908,0171804,226 +2909,0150574,288772 +2910,0168740,55107 +2911,0176415,69851 +2912,0165854,10388 +2913,0165874,17198 +2914,0143746,44857 +2915,0086200,9346 +2916,0100802,861 +2917,0082089,14412 +2918,0091042,9377 +2919,0086617,11541 +2920,0037674,2457 +2921,0068699,11901 +2922,0061747,4929 +2923,0076123,85325 +2924,0080179,11230 +2925,0065571,8416 +2926,0095270,11054 +2927,0037558,851 +2928,0087980,24453 +2929,0082979,18254 +2930,0176093,56235 +2931,0097223,20123 +2932,0077405,16642 +2933,0057058,2593 +2934,0090636,42020 +2935,0033804,3086 +2936,0034240,16305 +2937,0035169,32255 +2938,0091214,48797 +2939,0046126,19997 +2940,0038559,3767 +2941,0052225,17352 +2942,0085549,535 +2943,0104507,2731 +2944,0061578,1654 +2945,0087722,31043 +2946,0059260,14831 +2947,0058150,658 +2948,0057076,657 +2949,0055928,646 +2950,0080453,5689 +2951,0058461,391 +2952,0119256,8052 +2953,0104431,772 +2954,0079709,65448 +2955,0084485,65452 +2956,0094008,31650 +2957,0017423,73575 +2958,0133117,302579 +2959,0137523,550 +2960,0187712,97537 +2961,0160916,12220 +2962,0119114,1610 +2963,0160672,53151 +2964,0192194,42881 +2965,0203408,29064 +2966,0166896,404 +2967,0048977,42196 +2968,0081633,36819 +2969,0061138,42726 +2970,0083946,9343 +2971,0078754,16858 +2972,0093206,42006 +2973,0097123,11562 +2974,0200469,10496 +2975,0168501,16162 +2976,0163988,8649 +2977,0142201,31306 +2978,0144640,10563 +2979,0172627,14484 +2980,0148462,214735 +2981,0072742,94857 +2982,0099710,32043 +2983,0059319,15247 +2984,0067527,29251 +2985,0093870,5548 +2986,0100502,5549 +2987,0096438,856 +2988,0081150,38772 +2989,0082398,699 +2990,0097742,709 +2991,0070328,253 +2992,0091829,13511 +2993,0059800,660 +2994,0168589,46798 +2995,0185371,11377 +2996,0166943,26149 +2997,0120601,492 +2998,0144178,108346 +2999,0154827,98480 +3000,0119698,128 +3001,0157075,46286 +3002,0200849,8672 +3003,0170705,8056 +3004,0120596,2020 +3005,0145681,9481 +3006,0140352,9008 +3007,0181288,14242 +3008,0156729,16129 +3009,0117365,104103 +3010,0200071,11489 +3011,0065088,28145 +3012,0016630,51371 +3013,0099180,18111 +3014,0082121,31361 +3015,0077355,11223 +3016,0083767,16281 +3017,0092796,16288 +3018,0089885,1694 +3019,0097240,476 +3020,0106856,37094 +3021,0082427,13555 +3022,0017925,961 +3023,0018183,73969 +3024,0078087,24831 +3025,0062218,64963 +3026,0093990,85160 +3028,0061407,25560 +3029,0082817,21610 +3030,0055630,11878 +3031,0100475,11510 +3032,0067525,11234 +3033,0094012,957 +3034,0070608,11886 +3035,0048380,37853 +3036,0082484,62204 +3037,0065988,11040 +3038,0050371,21849 +3039,0086465,1621 +3040,0079540,14035 +3041,0087700,40771 +3042,0093516,40772 +3043,0104837,40773 +3044,0101669,11498 +3045,0105130,11790 +3046,0113416,29371 +3047,0083911,276635 +3048,0083254,47941 +3049,0061789,29048 +3050,0172726,19052 +3051,0149691,21349 +3052,0120655,1832 +3053,0151137,10047 +3054,0190641,10228 +3055,0165773,47692 +3056,0160620,18561 +3057,0118150,144953 +3058,0032215,37426 +3059,0032283,51787 +3060,0101605,11663 +3061,0034862,13485 +3062,0056197,9289 +3063,0105156,9264 +3064,0119908,18222 +3065,0114008,124853 +3066,0066473,11165 +3067,0095675,4203 +3068,0084855,24226 +3069,0068528,88875 +3070,0086856,11379 +3071,0094027,29154 +3072,0093565,2039 +3073,0059674,77915 +3074,0068762,11943 +3075,0059646,11481 +3076,0057187,2690 +3077,0164312,20565 +3078,0165859,27141 +3079,0178737,10399 +3080,0179196,90762 +3081,0162661,2668 +3082,0143145,36643 +3083,0185125,99 +3084,0144969,159569 +3085,0084357,77010 +3086,0024852,25898 +3087,0096061,9647 +3088,0042546,11787 +3089,0040522,5156 +3090,0093509,24276 +3091,0080979,11953 +3092,0055850,44662 +3093,0067411,29005 +3094,0093512,26371 +3095,0032551,596 +3096,0050738,52470 +3097,0033045,20334 +3098,0087781,11393 +3099,0073692,31121 +3100,0105265,293 +3101,0093010,10998 +3102,0089360,12235 +3103,0100680,36094 +3104,0095631,9013 +3105,0099077,11005 +3106,0099291,59820 +3107,0101393,2924 +3108,0101889,177 +3109,0088007,38557 +3110,0087091,42087 +3111,0087921,13681 +3112,0090556,34760 +3113,0146675,9946 +3114,0120363,863 +3115,0155711,31582 +3116,0189744,125520 +3117,0134154,22267 +3118,0161023,55123 +3119,0067656,5486 +3120,0104114,10411 +3121,0045877,41462 +3122,0033021,1718 +3123,0097717,28604 +3124,0160509,15506 +3125,0172396,20024 +3126,0048034,78256 +3127,0144715,13787 +3128,0160513,54933 +3129,0158371,9684 +3130,0099165,9586 +3131,0118780,41638 +3132,0010040,70801 +3133,0015863,33015 +3134,0028950,777 +3135,0079239,21887 +3136,0050558,5652 +3137,0081470,19664 +3138,0096171,32331 +3139,0024645,76083 +3140,0014538,32628 +3141,0100828,32669 +3142,0096328,18161 +3143,0063056,31681 +3144,0060463,33666 +3145,0150216,32274 +3146,0205000,10402 +3147,0120689,497 +3148,0124315,1715 +3149,0167423,35118 +3150,0141974,42739 +3151,0020668,26162 +3152,0067328,25188 +3153,0051337,15515 +3154,0037547,75888 +3155,0166485,1439 +3156,0182789,2277 +3157,0164912,10137 +3158,0162866,10387 +3159,0120910,49948 +3160,0175880,334 +3161,0119079,30237 +3162,0174204,50116 +3163,0151568,46435 +3164,0064006,94260 +3165,0106455,22213 +3166,0096978,47070 +3167,0066892,36492 +3168,0064276,624 +3169,0087231,26578 +3170,0032590, +3171,0053226,43103 +3172,0047630,43194 +3173,0146838,9563 +3174,0125664,1850 +3175,0177789,926 +3176,0134119,1213 +3177,0195945,10471 +3178,0174856,10400 +3179,0145653,10397 +3180,0196857,20761 +3181,0120866,12524 +3182,0192335,28216 +3183,0174268,36773 +3184,0119699,30814 +3185,0120834,10219 +3186,0172493,3558 +3187,0169333,104878 +3188,0208261,41276 +3189,0156812,17908 +3190,0134983,10384 +3191,0169156,125317 +3192,0169302,48233 +3193,0198385, +3194,0070903,10236 +3195,0013662,71067 +3196,0046359,632 +3197,0095897,11851 +3198,0070511,5924 +3199,0050815,33734 +3200,0070290,14886 +3201,0065724,26617 +3202,0065436,11900 +3203,0097162,10493 +3204,0077269,16241 +3205,0054067,27632 +3206,0086859,22160 +3207,0045162,4460 +3208,0107659,9644 +3209,0040552,43455 +3210,0083929,13342 +3211,0094924,35119 +3212,0066856,21256 +3213,0106364,14919 +3214,0088707,14040 +3215,0075406,75641 +3216,0066380,17343 +3217,0029606,22692 +3218,0102687,47620 +3219,0100318,2990 +3220,0055230,38775 +3221,0083851,10831 +3222,0087034,21193 +3223,0090366,33078 +3224,0058625,16672 +3225,0186975,10472 +3226,0197544,123277 +3227,0117131,79474 +3228,0153866,97805 +3229,0044364,53714 +3230,0071935,21489 +3231,0011652,51392 +3232,0016332,32600 +3233,0062281,110479 +3234,0078412,299121 +3235,0081748,13005 +3236,0068011,65134 +3237,0183065,121738 +3238,0120662,18681 +3239,0141399,75531 +3240,0156639,20468 +3241,0201840,14521 +3242,0126651,46835 +3243,0104187,10406 +3244,0076095,14741 +3245,0058604,32015 +3246,0104797,1883 +3247,0105417,2005 +3248,0108147,6279 +3249,0104389,11087 +3250,0106246,7305 +3251,0088683,24735 +3252,0105323,9475 +3253,0105793,8872 +3254,0108525,8873 +3255,0104694,11287 +3256,0105112,9869 +3257,0103855,619 +3258,0104070,9374 +3259,0104231,11259 +3260,0104454,8293 +3261,0105415,11068 +3262,0105665,1923 +3263,0105812,10158 +3264,0103893,10206 +3265,0104684,11782 +3266,0103905,10086 +3267,0104815,9367 +3268,0105477,9876 +3269,0104291,10326 +3270,0104040,16562 +3271,0105046,9609 +3272,0103759,12143 +3273,0134084,4234 +3274,0105414,9605 +3275,0144117,8374 +3276,0171356,29076 +3277,0185154,80471 +3278,0192069,49477 +3279,0143344,121940 +3280,0069754,28156 +3281,0144801,113096 +3282,0116102,106837 +3283,0067433,24349 +3284,0067848,27841 +3285,0163978,1907 +3286,0184907,15489 +3287,0220099,15655 +3288,0159373,68546 +3289,0209189,36210 +3290,0171764,279444 +3291,0217107,77908 +3292,0047878,22342 +3293,0118882,96484 +3294,0074455,30062 +3295,0107920,62463 +3296,0062376,25934 +3297,0020594,101383 +3298,0181984,14181 +3299,0162983,10385 +3300,0134847,2787 +3301,0190138,2069 +3302,0159272,61416 +3303,0221023,79515 +3304,0077248,14839 +3305,0036653,42186 +3306,0018773,28978 +3307,0021749,901 +3308,0087265,25010 +3309,0009018,36208 +3310,0012349,10098 +3311,0048342,18264 +3312,0073902,291861 +3313,0084395,33374 +3314,0044420,43368 +3315,0043618,127602 +3316,0184858,2155 +3317,0185014,11004 +3318,0158583,25212 +3319,0181618,36048 +3320,0164756,139 +3321,0235872,210307 +3322,0199290,47816 +3323,0194368,20682 +3324,0186045,25166 +3325,0156841,1831 +3326,0181151,10416 +3327,0218043,14271 +3328,0165798,4816 +3329,0094347,19958 +3330,0055471,28569 +3331,0085980,2193 +3332,0056173,64871 +3333,0063185,54575 +3334,0040506,11016 +3335,0047127,23020 +3336,0055024,54195 +3337,0061801,139058 +3338,0097372,20423 +3339,0074695,10839 +3340,0047898,36489 +3341,0042276,24481 +3342,0086969,11296 +3343,0092559,61651 +3344,0056875,28172 +3345,0062793,57855 +3346,0059044,28180 +3347,0086005,14280 +3348,0066141,72086 +3349,0039698,149687 +3350,0055353,29478 +3351,0058694,28177 +3352,0171135,64166 +3353,0218112,73642 +3354,0183523,2067 +3355,0142688,622 +3356,0154352,110666 +3357,0181530,28463 +3358,0101698,12186 +3359,0078902,20283 +3360,0091217,5693 +3361,0094812,287 +3362,0072890,968 +3363,0069704,838 +3364,0042208,16958 +3365,0049730,3114 +3367,0062886,31938 +3368,0051411,12501 +3369,0057344,22650 +3370,0094731,31618 +3371,0074235,42232 +3372,0064110,15873 +3373,0068323,26928 +3374,0104057,68427 +3375,0042393,25392 +3376,0041705,67455 +3377,0035966,22178 +3378,0118043,48213 +3379,0053137,35412 +3380,0039748,43463 +3381,0117664,59939 +3382,0028282,159727 +3383,0028629,244151 +3384,0072251,8333 +3385,0090274,19259 +3386,0102138,820 +3387,0098645,11718 +3388,0093148,8989 +3389,0091400,32031 +3390,0091934,58048 +3391,0094321,26827 +3392,0098309,11157 +3393,0092834,28370 +3394,0092666,918 +3395,0093596,61178 +3396,0079588,11176 +3397,0082474,14900 +3398,0087755,11899 +3399,0089994,36536 +3400,0108526,18890 +3401,0088760,19736 +3402,0090219,123047 +3403,0081400,24575 +3404,0046435,16535 +3405,0051994,10971 +3406,0043379,23928 +3407,0201538,31336 +3408,0195685,462 +3409,0195714,9532 +3410,0180181,117259 +3411,0168475,78231 +3412,0095800,2383 +3413,0041503,25503 +3414,0048316,53879 +3415,0072443,1396 +3417,0044517,11570 +3418,0103074,1541 +3419,0066392,150043 +3420,0078718,17443 +3421,0077975,8469 +3422,0091939,27995 +3423,0096054,36739 +3424,0097216,925 +3425,0100168,41823 +3426,0102175,1713 +3427,0062824,26170 +3428,0078950,30547 +3429,0099317,54825 +3430,0071402,13939 +3431,0082250,14373 +3432,0089003,24873 +3433,0092857,26263 +3434,0109578,34746 +3435,0036775,996 +3436,0101787,9079 +3437,0101615,1496 +3438,0100758,1498 +3439,0103060,1497 +3440,0108308,1499 +3441,0087985,1880 +3442,0090693,33762 +3443,0091313,103960 +3444,0092675,11690 +3445,0077530,29143 +3446,0113133,35292 +3447,0028944,36652 +3448,0093105,801 +3449,0095238,104301 +3450,0107050,11520 +3451,0061735,1879 +3452,0165929,2085 +3453,0195778,13539 +3454,0202402,16222 +3455,0146516,109479 +3456,0191043,17078 +3457,0127349,37722 +3458,0098251,75892 +3459,0091142,33516 +3460,0061765,99008 +3461,0057261,9960 +3462,0027977,3082 +3463,0110629,49338 +3464,0100649,2102 +3465,0092079,52961 +3466,0107091,12187 +3467,0057163,24748 +3468,0054997,990 +3469,0053946,1908 +3470,0071411,9764 +3471,0075860,840 +3472,0053719,39890 +3473,0074718,42237 +3474,0117468,26689 +3475,0043924,25673 +3476,0099871,2291 +3477,0112950,13531 +3478,0093378,16620 +3479,0089457,526 +3480,0091445,13346 +3481,0146882,243 +3483,0138749,10501 +3484,0192614,11478 +3485,0073327,96167 +3486,0046907,24212 +3487,0061619,6644 +3488,0052888,41038 +3489,0102057,879 +3490,0068713,32613 +3491,0091579,39406 +3492,0017416,85689 +3493,0069920,31624 +3494,0065126,17529 +3495,0105267,40841 +3496,0095564,118098 +3497,0085919,1793 +3498,0077928,11327 +3499,0100157,1700 +3500,0104928,54087 +3501,0089643,34322 +3502,0107630,41659 +3503,0069293,593 +3504,0074958,10774 +3505,0093640,10083 +3506,0079640,29786 +3507,0063374,11356 +3508,0075029,10747 +3509,0165643,38809 +3510,0186151,10559 +3511,0217756,20697 +3512,0122459,2621 +3513,0160797,10479 +3514,0172632,125709 +3515,0183503,49721 +3516,0051406,2006 +3517,0016640,184885 +3518,0119062,46625 +3519,0077572,17339 +3520,0059287,26879 +3521,0097940,11305 +3522,0067698,48211 +3523,0096211,28975 +3524,0082031,13665 +3525,0086927,12309 +3526,0098067,1552 +3527,0093773,106 +3528,0102713,10333 +3529,0082934,11027 +3530,0108167,61560 +3531,0099014,123757 +3533,0057710,27197 +3534,0191754,10468 +3535,0144084,1359 +3536,0171433,4967 +3537,0149367,31776 +3538,0166175,10557 +3539,0236216,27745 +3540,0160644,19214 +3541,0179063,46686 +3542,0064180,71402 +3543,0083833,13776 +3544,0102898,26291 +3545,0068327,10784 +3546,0056687,10242 +3547,0093776,27857 +3548,0051383,16347 +3549,0048140,4825 +3550,0085701,11654 +3551,0074860,10518 +3552,0080487,11977 +3553,0176783,18041 +3554,0199725,14736 +3555,0141926,3536 +3556,0159097,1443 +3557,0104549,10424 +3558,0051852,80677 +3559,0044837,28971 +3560,0077132,49096 +3561,0084723,310431 +3562,0144142,40562 +3563,0132910,9456 +3564,0158622,889 +3565,0198021,10564 +3566,0189584,15723 +3567,0180837,19600 +3568,0162348,125537 +3569,0154421,452 +3570,0180793,68170 +3571,0220100,36234 +3572,0106521,39283 +3573,0112634,65460 +3574,0115834,55667 +3575,0156460,31978 +3576,0093185,12476 +3577,0096324,5241 +3578,0172495,98 +3579,0167203,21311 +3580,0153464,47724 +3581,0188674,11129 +3582,0210130,94214 +3583,0053726,117781 +3584,0085276,1058 +3585,0049279,37112 +3586,0080913,42159 +3587,0080923,16395 +3588,0068805,50627 +3589,0060749,5608 +3590,0071772,38925 +3591,0085970,13105 +3592,0084315,22501 +3593,0185183,5491 +3594,0210616,10560 +3595,0165831,19489 +3596,0156323,19419 +3597,0174336,23531 +3598,0171359,10688 +3599,0037514,17889 +3600,0054692,18228 +3601,0071288,80351 +3602,0053848,18642 +3603,0064363,205054 +3604,0056048,39391 +3605,0051818,18644 +3606,0041716,31516 +3607,0070481,45827 +3608,0089791,5683 +3609,0181786,113279 +3610,0058534,2094 +3611,0036326,14906 +3612,0075232,16176 +3613,0096259,52770 +3614,0104438,12518 +3615,0130623,10567 +3616,0217630,10642 +3617,0215129,9285 +3618,0196216,10569 +3619,0080881,21879 +3620,0119746,98502 +3621,0082933,21484 +3622,0066495,24918 +3623,0120755,955 +3624,0184894,8584 +3625,0207998,47295 +3626,0154443,11332 +3627,0055830,16093 +3628,0034742,29372 +3629,0015864,962 +3630,0068863,5483 +3631,0116661,21060 +3632,0039631,30588 +3633,0064757,668 +3634,0058576,23518 +3635,0076752,691 +3636,0118834,31353 +3637,0089960,44018 +3638,0079574,698 +3639,0071807,682 +3640,0050598,28973 +3641,0014624,28974 +3642,0034889,40685 +3643,0036824,22994 +3644,0032383,40639 +3645,0055852,499 +3646,0208003,9600 +3647,0173910,120077 +3648,0050095,38006 +3649,0080365,2768 +3650,0090644,42002 +3651,0069029,40365 +3652,0081318,24920 +3653,0060371,21 +3654,0054953,10911 +3655,0070130,10102 +3656,0039589,30308 +3657,0043899,38688 +3658,0062168,26912 +3659,0050873,26278 +3660,0098143,26953 +3661,0100438,26954 +3662,0102728,26956 +3663,0107899,26957 +3664,0110916,26958 +3665,0132451,26959 +3666,0189047,26960 +3667,0095977,80287 +3668,0063518,6003 +3669,0105466,23939 +3670,0038120,46614 +3671,0071230,11072 +3672,0071206,23069 +3673,0092638,21299 +3674,0076044,38802 +3675,0047673,13368 +3676,0074486,985 +3677,0103767,14002 +3678,0048347,541 +3679,0082252,21137 +3680,0094980,36724 +3681,0059578,938 +3682,0070355,10648 +3683,0086979,11368 +3684,0097322,10875 +3685,0089841,2075 +3686,0099582,1551 +3687,0095525,22500 +3688,0084522,10246 +3689,0086129,19698 +3690,0089826,23919 +3691,0086143,18835 +3692,0090849,26554 +3693,0090190,15239 +3694,0098503,28165 +3695,0098502,28169 +3696,0091630,15762 +3697,0100403,169 +3698,0093894,865 +3699,0088172,9663 +3700,0087004,26889 +3701,0094631,10128 +3702,0079501,9659 +3703,0082694,8810 +3704,0089530,9355 +3705,0099141,1727 +3706,0092563,635 +3707,0091635,10068 +3708,0087262,11495 +3709,0105428,11428 +3710,0094612,10117 +3711,0105316,35936 +3712,0102951,25562 +3713,0100046,51763 +3714,0094882,73079 +3715,0092710,38921 +3716,0093011,35463 +3717,0187078,9679 +3718,0179074,24587 +3719,0182295,51333 +3720,0145503,17771 +3721,0162711,31610 +3722,0143422,60005 +3723,0099726,10264 +3724,0077362,31657 +3725,0082009,29204 +3726,0074156,17814 +3727,0093605,11879 +3728,0102592,21128 +3729,0067741,482 +3730,0071360,592 +3731,0082220,31593 +3732,0077588,12611 +3733,0070509,14328 +3734,0082945,32047 +3735,0070666,9040 +3736,0043338,25364 +3737,0056195,43002 +3738,0072226,5121 +3739,0023622,195 +3740,0090728,6978 +3741,0069762,3133 +3742,0015648,643 +3743,0204175,10571 +3744,0162650,479 +3745,0120913,7450 +3746,0188030,31023 +3747,0186253,25636 +3748,0165384,41160 +3749,0189142,47439 +3750,0217287,207731 +3751,0120630,7443 +3752,0183505,2123 +3753,0187393,2024 +3754,0131704,17711 +3755,0177971,2133 +3756,0200669,29946 +3757,0068230,25993 +3758,0097100,28774 +3759,0039404,46929 +3760,0076257,11598 +3761,0106469,9702 +3762,0050292,117026 +3763,0089118,9873 +3764,0101846,16820 +3765,0099797,14864 +3766,0087727,15379 +3767,0089604,12764 +3768,0094792,27352 +3769,0072288,8348 +3770,0087175,24099 +3771,0071569,17897 +3772,0064904,28050 +3773,0099800,16094 +3774,0102065,16096 +3775,0038718,20343 +3776,0040580,13757 +3777,0093608,11822 +3778,0040664,90980 +3779,0046213,26270 +3780,0042897,37744 +3781,0070679,494 +3782,0069257,493 +3783,0159382,12706 +3784,0219854,4244 +3785,0175142,4247 +3786,0179116,20770 +3787,0215369,1050 +3788,0060176,1052 +3789,0059575,20540 +3790,0212974,23655 +3791,0087277,1788 +3792,0038499,32275 +3793,0120903,36657 +3794,0200530,44490 +3795,0168794,47585 +3796,0120894,1448 +3797,0163676,36047 +3798,0161081,2655 +3799,0210234,12599 +3800,0205735,33828 +3801,0052561,93 +3802,0104299,9278 +3803,0068659,90715 +3804,0079257,59181 +3805,0082622,22167 +3806,0064615,18118 +3807,0076716,11940 +3808,0054749,24167 +3809,0103241,10276 +3810,0105813,19380 +3811,0080310,13783 +3812,0068555,11624 +3813,0077742,15867 +3814,0073312,11686 +3816,0089276,29263 +3817,0117817,46754 +3818,0034055,18702 +3819,0092048,11830 +3820,0205461,16110 +3821,0144528,12107 +3822,0144201,10401 +3823,0171865,32640 +3824,0174480,10641 +3825,0200550,6282 +3826,0164052,9383 +3827,0186566,5551 +3828,0131972,277726 +3829,0156757,43079 +3830,0206226,27723 +3831,0195234,2360 +3832,0057603,28043 +3833,0052646,33468 +3834,0080472,21866 +3835,0106627,33408 +3836,0065938,11589 +3837,0095863,15158 +3838,0110823,16139 +3839,0138703,16146 +3840,0095925,26515 +3841,0099005,11856 +3843,0086320,13567 +3844,0098384,10860 +3845,0049189,8420 +3846,0085470,18391 +3847,0071650,20850 +3848,0111187,39473 +3849,0038975,27452 +3850,0065206,77571 +3851,0251739,38548 +3852,0234853,20438 +3853,0165986,274868 +3854,0130444,2211 +3855,0204709,46991 +3856,0120593,201581 +3857,0163983,10391 +3858,0173716,14195 +3859,0233687,15665 +3860,0138681,45905 +3861,0191397,10393 +3862,0199314,18168 +3863,0209958,8843 +3864,0188640,10643 +3865,0236388,23618 +3866,0178050,117262 +3867,0176426,30946 +3868,0095705,37136 +3869,0102510,37137 +3870,0032881,23283 +3871,0046303,3110 +3872,0053318,14698 +3873,0059017,11694 +3874,0118018,47434 +3875,0062885,39891 +3876,0120867,76891 +3877,0088206,9651 +3878,0049967,26865 +3879,0160009,11398 +3880,0236008,161687 +3881,0168515,26244 +3882,0204946,1588 +3883,0162903,287821 +3884,0198386,19150 +3885,0234137,25128 +3886,0161216,18153 +3887,0157182,30910 +3888,0209322,41282 +3889,0144964,12211 +3890,0259207,137236 +3891,0216772,9995 +3892,0187696,1698 +3893,0171580,10480 +3894,0190798,80713 +3895,0204626,10685 +3896,0202677,1619 +3897,0181875,786 +3898,0211938,14805 +3899,0191037,51179 +3900,0197384,46119 +3901,0134630,18074 +3902,0210717,170767 +3903,0182508,77332 +3904,0188694,27665 +3905,0181836,29015 +3906,0164212,10562 +3907,0170452,201724 +3908,0192731,12212 +3909,0206420,14629 +3910,0168629,16 +3911,0218839,13785 +3912,0210567,34299 +3913,0211219,15752 +3914,0222850,22597 +3915,0210075,19348 +3916,0210945,10637 +3917,0093177,9003 +3918,0095294,9064 +3919,0104409,11569 +3920,0107209,10434 +3921,0056860,26484 +3922,0057887,39113 +3923,0053219,38126 +3924,0058440,53617 +3925,0088184,469 +3926,0055608,2160 +3927,0060397,2161 +3928,0040068,3073 +3929,0032234,911 +3930,0046876,10973 +3931,0052846,34077 +3932,0024184,10787 +3933,0052969,43109 +3934,0050610,43230 +3936,0036261,15855 +3937,0088024,9507 +3938,0084695,27475 +3939,0093996,27764 +3940,0100639,27767 +3941,0091990,40760 +3942,0100663,40446 +3943,0215545,24664 +3944,0210584,21370 +3945,0259974,20455 +3946,0208988,10461 +3947,0067128,1485 +3948,0212338,1597 +3949,0180093,641 +3950,0170691,10687 +3951,0202641,63956 +3952,0208874,6521 +3953,0205271,10763 +3954,0162236,100975 +3955,0213790,16888 +3956,0160484,10383 +3957,0066832,21142 +3958,0075754,78140 +3959,0054387,2134 +3960,0113269,18801 +3961,0089200,18498 +3962,0093091,28605 +3963,0058708,42797 +3964,0041094,13465 +3965,0038988,27033 +3966,0037638,20367 +3967,0249462,71 +3968,0230030,1636 +3969,0223897,10647 +3970,0082307,19204 +3971,0081376,13762 +3972,0111512,12207 +3973,0229260,11531 +3974,0192255,24100 +3975,0219952,10783 +3976,0192949,47302 +3977,0160127,4327 +3978,0146984,4958 +3979,0185431,9678 +3980,0203019,11978 +3981,0199753,8870 +3982,0197096,77434 +3983,0203230,14295 +3984,0066995,681 +3985,0074452,11372 +3986,0216216,8452 +3987,0186894,10862 +3988,0170016,8871 +3989,0230591,34045 +3990,0213203,16340 +3991,0211181,10481 +3992,0213847,10867 +3993,0180073,10876 +3994,0217869,9741 +3995,0265101,79920 +3996,0190332,146 +3997,0190374,11849 +3998,0228750,11983 +3999,0190865,11678 +4000,0086993,2669 +4001,0088936,20721 +4002,0093748,2609 +4003,0096094,12714 +4004,0120090,92603 +4005,0093428,708 +4006,0092106,1857 +4007,0094291,10673 +4008,0096969,2604 +4009,0096219,10132 +4010,0088850,11064 +4011,0208092,107 +4012,0095927,40820 +4013,0156807,37716 +4014,0241303,392 +4015,0242423,8859 +4016,0120917,11688 +4017,0183659,12509 +4018,0207201,3981 +4019,0181536,711 +4020,0219699,2046 +4021,0247196,5001 +4022,0162222,8358 +4023,0218967,5994 +4024,0200720,25520 +4025,0212346,1493 +4026,0223530,25660 +4027,0190590,134 +4028,0210299,62677 +4029,0120202,21991 +4030,0219653,10577 +4031,0149624,21355 +4032,0218182,29122 +4033,0146309,11973 +4034,0181865,1900 +4035,0218378,44853 +4036,0189998,10873 +4037,0093223,26719 +4038,0097662,31583 +4039,0083564,15739 +4040,0101757,15413 +4041,0084434,2623 +4042,0053580,11209 +4043,0090670,13715 +4044,0075783,19108 +4045,0072735,8043 +4046,0049233,43258 +4047,0107007,10655 +4048,0110115,75490 +4049,0073605,42261 +4050,0218625,34794 +4051,0056600, +4052,0218817,9989 +4053,0238948,18828 +4054,0206275,9816 +4055,0194218,20637 +4056,0237572,5955 +4057,0176883,125498 +4058,0212423,77825 +4059,0213446,220976 +4060,0104765,66599 +4061,0102388,17474 +4062,0095690,11191 +4063,0105165,2613 +4064,0069897,22021 +4065,0071517,22048 +4066,0095348,17006 +4067,0108451,26333 +4068,0186589,16723 +4069,0209475,2018 +4070,0118614,31768 +4071,0116119,287991 +4072,0157122,47595 +4073,0178642,18856 +4074,0234805,10499 +4075,0188506,37949 +4076,0162024,83500 +4077,0216800,47943 +4078,0092545,74340 +4079,0092546,5709 +4080,0092605,11215 +4081,0092608,26477 +4082,0092618,10937 +4083,0092641,4639 +4084,0092644,96 +4085,0086960,90 +4086,0092654,11028 +4087,0092655,57240 +4088,0092656,67307 +4089,0092690,19324 +4090,0092695,19933 +4091,0092718,12919 +4092,0092746,15785 +4093,0092783,31701 +4094,0092798,31563 +4095,0092804,12506 +4096,0092809,89992 +4097,0092842,70199 +4098,0092843,39507 +4099,0092854,62185 +4100,0092897,24826 +4101,0092904,30994 +4102,0092948,17159 +4103,0092965,10110 +4104,0092974,18935 +4105,0083907,764 +4106,0092997,20287 +4107,0093006,26964 +4108,0093029,71881 +4109,0093036,15658 +4110,0093044,4918 +4111,0093073,28368 +4112,0093092,58084 +4113,0093093,52780 +4114,0093104,48149 +4115,0093186,26156 +4116,0093200,34101 +4117,0093209,32054 +4118,0093215,14464 +4119,0093225,65501 +4120,0093231,32227 +4121,0093260,2614 +4122,0093277,40962 +4123,0093278,12704 +4124,0093300,580 +4125,0093405,24828 +4126,0093407,13703 +4127,0093418,36914 +4128,0093437,1547 +4129,0093467,42010 +4130,0093476,2608 +4131,0093477,32058 +4132,0093493,10019 +4133,0093507,11649 +4134,0093539,84499 +4135,0093560,13509 +4136,0093562,63639 +4137,0093567,30175 +4138,0093589,51521 +4139,0093638,34379 +4140,0093648,22915 +4141,0192111,24940 +4142,0190524,37302 +4143,0242998,10984 +4144,0118694,843 +4145,0177769,121091 +4146,0120753,318 +4147,0250478,12806 +4148,0212985,9740 +4149,0239948,10878 +4150,0230783,47588 +4151,0216787,10697 +4152,0190861,7093 +4153,0231775,16300 +4154,0265632,19405 +4155,0230838,1921 +4156,0177650,44412 +4157,0249893,21620 +4158,0166276,23685 +4159,0233142,12138 +4160,0191636,48217 +4161,0236493,6073 +4162,0250720,39180 +4163,0262462,35569 +4164,0182000,25208 +4165,0244504,82103 +4166,0251031,19513 +4167,0179626,2749 +4168,0192071,10050 +4169,0212380,17203 +4170,0138493,168485 +4171,0236447,95682 +4172,0161977,54968 +4173,0220157,49929 +4174,0099073,2302 +4175,0116447,32686 +4176,0107474,13889 +4177,0081163,6028 +4178,0031742,51802 +4179,0082912,42148 +4180,0091836,29492 +4181,0096223,25447 +4182,0090213,28410 +4183,0100842,38545 +4184,0039190,19490 +4185,0065687,31151 +4186,0060424,1888 +4187,0057251,38805 +4188,0044685,16618 +4189,0059245,2428 +4190,0053793,22013 +4191,0060086,15598 +4192,0046899,43332 +4193,0113026,62127 +4194,0037800,56137 +4195,0066740,17965 +4196,0059465,29067 +4197,0079781,33250 +4198,0080421,14460 +4199,0099385,17466 +4200,0101764,9594 +4201,0077504,35976 +4202,0068617,4986 +4203,0102005,2453 +4204,0085868,33676 +4205,0100140,4587 +4206,0097880,31004 +4207,0100232,12773 +4208,0127952,125099 +4209,0201776,27859 +4210,0091474,11454 +4211,0100486,38718 +4212,0077413,4192 +4213,0097179,11607 +4214,0088000,14052 +4215,0093857,16889 +4216,0100049,39934 +4217,0118540,26580 +4218,0091860,21309 +4219,0089208,16263 +4220,0071771,4985 +4221,0102517,20704 +4222,0087015,23730 +4223,0215750,853 +4224,0242445,10877 +4225,0205873,5257 +4226,0209144,77 +4227,0250274,20322 +4228,0125022,10833 +4229,0239949,20309 +4230,0120352,125093 +4231,0244970,12658 +4232,0227538,10054 +4233,0246989,10646 +4234,0236784,2575 +4235,0245712,55 +4236,0206187,65075 +4237,0247380,44379 +4238,0164334,2043 +4239,0221027,4133 +4240,0189192,56715 +4241,0266860,10991 +4242,0221889,15940 +4243,0268200,26791 +4244,0260332,44069 +4245,0238588,68894 +4246,0243155,634 +4247,0245686,10956 +4248,0236348,19366 +4249,0246002,136558 +4250,0201485,28308 +4251,0221073,9519 +4252,0255094,13898 +4253,0210149,196280 +4254,0231402,9290 +4255,0240515,13166 +4256,0240402,32590 +4257,0249538,109472 +4258,0251191,153141 +4259,0211492,52654 +4260,0199129,70282 +4261,0116882,47643 +4262,0086250,111 +4263,0055895,32488 +4265,0132245,10477 +4266,0245120,12484 +4267,0203755,2144 +4268,0141907,24113 +4269,0234570,118052 +4270,0209163,1734 +4271,0243889,38047 +4272,0162023,8076 +4273,0240913,4973 +4274,0056937,8095 +4275,0085811,849 +4276,0089504,27223 +4277,0016039,2981 +4278,0025913,39266 +4279,0098524,31863 +4280,0084917,11307 +4281,0062776,46498 +4282,0064940,11163 +4283,0069191,11035 +4284,0060429,18691 +4285,0101912,3784 +4286,0107130,78133 +4287,0058453,22829 +4288,0152015,35717 +4289,0080539,11936 +4290,0101902,25221 +4291,0080319,19494 +4292,0079638,40842 +4293,0090098,19357 +4294,0045464,33743 +4295,0096875,32924 +4296,0066011,9062 +4297,0093713,11174 +4298,0048021,934 +4299,0183790,9476 +4300,0212826,37691 +4301,0260775,115810 +4302,0208911,10613 +4303,0204640,19094 +4304,0256408,14268 +4305,0225071,5852 +4306,0126029,808 +4307,0206742,49453 +4308,0203009,824 +4309,0184819,37558 +4310,0213149,676 +4311,0157411,88727 +4312,0210727,26813 +4313,0206917,29572 +4314,0234407,48109 +4315,0189541,291675 +4316,0077716,50541 +4317,0102343,26255 +4318,0100395,22414 +4319,0046719,43329 +4320,0074254,42233 +4321,0101587,1406 +4322,0095082,13554 +4323,0052902,17664 +4324,0048248,66035 +4325,0054130,41050 +4326,0095647,1632 +4327,0054047,966 +4328,0060897,12639 +4329,0053221,301 +4330,0025746,31527 +4331,0078227,4988 +4332,0094082,12623 +4333,0094142,11896 +4334,0244316,25538 +4335,0081159,17971 +4336,0110631,6498 +4337,0060934,5923 +4338,0041996,15497 +4339,0059885,21876 +4340,0255798,11090 +4341,0161083,14034 +4342,0212815,21056 +4343,0251075,9397 +4344,0244244,9705 +4345,0254099,26475 +4346,0212827,56934 +4347,0234288,29937 +4348,0194530,49922 +4349,0065528,10364 +4350,0116344,32458 +4351,0102685,1089 +4352,0098300,38043 +4353,0086508,9967 +4354,0105699,17494 +4355,0092272,17465 +4356,0045810,759 +4357,0045891,10297 +4358,0051885,29393 +4359,0048605,10653 +4360,0047574,21468 +4361,0084805,9576 +4362,0090770,22323 +4363,0066471,31935 +4364,0120374,126881 +4365,0244709,52616 +4366,0230011,10865 +4367,0146316,1995 +4368,0240462,10808 +4369,0232500,9799 +4370,0212720,644 +4371,0255819,16161 +4372,0250224,10691 +4373,0258038,10615 +4374,0212517,47596 +4375,0228242,21488 +4376,0284067,59733 +4377,0215139,271462 +4378,0203119,11826 +4379,0179473,24470 +4380,0203632,9301 +4381,0243493,11444 +4382,0226648,15564 +4383,0228786,60670 +4384,0246765,55551 +4385,0210217,40880 +4386,0239395,10992 +4387,0271027,2140 +4388,0257106,4248 +4389,0245238,17612 +4390,0249380,3134 +4391,0224578,34899 +4392,0099012,8217 +4393,0094663,22478 +4394,0058953,26483 +4395,0052216,24382 +4396,0082136,11286 +4397,0087032,11950 +4398,0098369,12236 +4399,0058249,36245 +4400,0045699,43342 +4401,0057007,15875 +4402,0059124,26573 +4403,0053925,23439 +4404,0016847,10728 +4405,0015064,5991 +4406,0056217,11697 +4407,0091886,6106 +4408,0093940,22477 +4409,0105378,19200 +4410,0091983,11300 +4411,0059740,16211 +4412,0069372,28650 +4413,0059878,42780 +4414,0057693,32569 +4415,0082163,20075 +4416,0054790,28430 +4417,0082966,28794 +4418,0084788,20197 +4419,0047811,43316 +4420,0046754,34689 +4421,0118734,25690 +4422,0069467,10238 +4423,0053796,18929 +4424,0065777,4789 +4425,0093227,32595 +4426,0048261,18030 +4427,0063227,18988 +4428,0055184,11536 +4429,0049513,10339 +4430,0102690,39875 +4431,0028167,50031 +4432,0051036,976 +4433,0049966,69605 +4434,0059095,65632 +4435,0089716,29471 +4436,0074991,4780 +4437,0076786,11906 +4438,0068767,11713 +4439,0082176,9589 +4440,0067824,12481 +4441,0077594,13333 +4442,0089461,13938 +4443,0082869,10540 +4444,0068935,9462 +4445,0163862,82623 +4446,0173840,2114 +4447,0250494,8835 +4448,0227445,11371 +4449,0262210,78248 +4450,0242193,9517 +4451,0273300,25985 +4452,0227005,15745 +4453,0245280,24977 +4454,0188913,36107 +4455,0120327,113271 +4456,0278475,58904 +4457,0238015,103489 +4458,0109049,13794 +4459,0130445,13795 +4460,0159423,103488 +4461,0182299,73482 +4462,0094593,38965 +4463,0094594,47817 +4464,0094606,31052 +4465,0094608,10868 +4466,0094602,9395 +4467,0096764,14506 +4468,0094667,5333 +4469,0094669,4281 +4470,0094675,2 +4471,0094678,26044 +4472,0094701,59797 +4473,0094712,14911 +4474,0094715,15592 +4475,0094716,15267 +4476,0094739,12710 +4477,0094744,30502 +4478,0094746,19382 +4479,0094747,24679 +4480,0094761,9599 +4481,0094783,94440 +4482,0094799,17170 +4483,0094824,18509 +4484,0094828,110428 +4485,0094846,34604 +4486,0094884,14441 +4487,0094889,7520 +4488,0094894,10126 +4489,0094898,9602 +4490,0094910,23752 +4491,0097125,41952 +4492,0090887,3980 +4493,0094919,10127 +4494,0101627,12702 +4495,0094921,27397 +4496,0094933,9748 +4497,0094961,40095 +4498,0094963,10651 +4499,0095031,10141 +4500,0092929,27362 +4501,0095088,5680 +4502,0095107,26386 +4503,0095119,34053 +4504,0095145,25884 +4505,0095169,26355 +4506,0095174,10675 +4507,0095178,38982 +4508,0095243,10130 +4509,0095253,2617 +4510,0095288,38615 +4511,0095304,21362 +4512,0095326,30690 +4513,0095333,75889 +4514,0095334,38500 +4515,0095360,26723 +4516,0095409,20443 +4517,0095484,49365 +4518,0095488,11347 +4519,0095489,12144 +4520,0095519,13704 +4521,0095532,12505 +4522,0095599,41963 +4523,0095638,13482 +4524,0095654,34014 +4525,0095662,29739 +4526,0095687,12120 +4527,0095736,47818 +4528,0095774,38617 +4529,0095801,3543 +4530,0095853,51321 +4531,0095963,9604 +4532,0095990,24929 +4533,0089907,10925 +4534,0095993,13965 +4535,0084296,24266 +4536,0096003,58434 +4537,0096018,18197 +4538,0096029,70842 +4539,0096030,38909 +4540,0096037,17126 +4541,0096071,11503 +4542,0096087,38558 +4543,0096098,9717 +4544,0096101,11966 +4545,0091949,2605 +4546,0096163,8740 +4547,0096180,25497 +4548,0096193,38560 +4549,0096200,50203 +4550,0096203,26798 +4551,0096241,91445 +4552,0096251,41428 +4553,0096256,8337 +4554,0096280,47493 +4555,0096289,8463 +4556,0096294,41974 +4557,0096316,28176 +4558,0096320,9493 +4559,0096380,26603 +4560,0096425,33172 +4561,0096426,29095 +4562,0096454,12582 +4563,0096486,10001 +4564,0096794,11352 +4565,0088708,12500 +4566,0092548,25678 +4567,0096804,25682 +4568,0096913,17882 +4569,0106393,32049 +4570,0096926,45225 +4571,0096928,1648 +4572,0096933,4105 +4573,0096943,22711 +4574,0096945,19124 +4575,0096976,69828 +4576,0097001,53150 +4577,0097027,10142 +4578,0097044,3064 +4579,0097109,86093 +4580,0097138,10134 +4581,0097142,21291 +4582,0097166,4925 +4583,0097211,30352 +4584,0097236,15142 +4585,0097235,14550 +4586,0097243,32075 +4587,0097257,2210 +4588,0097262,25005 +4589,0085475,21721 +4590,0097276,116014 +4591,0097289,11828 +4592,0097314,55699 +4593,0097328,10551 +4594,0097334,20713 +4595,0097336,27461 +4596,0097435,41969 +4597,0097438,1380 +4598,0096870,19157 +4599,0097457,11465 +4600,0097458,17190 +4601,0097478,55059 +4602,0097481,9085 +4603,0097500,17819 +4604,0097521,46786 +4605,0097531,14776 +4606,0097567,59585 +4607,0097570,32855 +4608,0097579,29185 +4609,0097607,39787 +4610,0097613,32059 +4611,0097626,505 +4612,0097635,4486 +4613,0097637,10345 +4614,0097659,10222 +4615,0097714,12774 +4616,0097722,14621 +4617,0097731,19118 +4618,0097737,14372 +4619,0097758,15138 +4620,0097770,9972 +4621,0097778,9494 +4622,0097790,17362 +4623,0097815,9942 +4624,0097858,8216 +4625,0097883,4296 +4626,0097889,24739 +4627,0097892,39197 +4628,0097965,9686 +4629,0097967,27418 +4630,0097987,39002 +4631,0098022,43345 +4632,0098051,31606 +4633,0098068,27607 +4634,0098073,37146 +4635,0098097,20006 +4636,0098141,8867 +4637,0098180,12663 +4638,0163025,331 +4639,0265029,11467 +4640,0222851,327 +4641,0162346,1548 +4642,0248845,13403 +4643,0133152,869 +4644,0237539,552 +4645,0123948,36095 +4646,0203540,33379 +4647,0261755,196859 +4648,0259442,47574 +4649,0243655,2171 +4650,0098184,87462 +4651,0098188,20307 +4652,0098193,19142 +4653,0098194,41946 +4654,0098206,10135 +4655,0098219,32767 +4656,0098224,56162 +4657,0098230,24254 +4658,0098253,19236 +4659,0098260,32261 +4660,0098261,60276 +4661,0098273,12150 +4662,0098282,11185 +4663,0098308,47045 +4664,0098319,18683 +4665,0098320,12521 +4666,0098343,12478 +4667,0098347,49788 +4668,0098356,31083 +4669,0098385,30666 +4670,0094035,25155 +4671,0098725,65015 +4672,0098436,24077 +4673,0098439,9618 +4674,0098442,16560 +4675,0098471,31608 +4676,0098519,22102 +4677,0098536,6951 +4678,0098546,11959 +4679,0098554,2616 +4680,0098577,7091 +4681,0098621,249 +4682,0098622,11342 +4683,0098663,183 +4684,0098678,32330 +4685,0108517,24126 +4686,0108539,8494 +4687,0056868,26535 +4688,0101465,41784 +4689,0065761,27431 +4690,0087089,2148 +4691,0087130,42033 +4692,0087428,11308 +4693,0116604,23239 +4694,0119512,53119 +4695,0078490,31941 +4696,0083366,19317 +4697,0083624,27813 +4698,0119842,57745 +4699,0218922,2057 +4700,0247638,9880 +4701,0266915,5175 +4702,0262826,21596 +4703,0094868,41951 +4704,0056059,11385 +4705,0077288,4484 +4706,0080489,11684 +4707,0102299,44414 +4708,0060668,44258 +4709,0064782,20391 +4710,0075213,12584 +4711,0108323,70042 +4712,0064285,1627 +4713,0080360,11542 +4714,0080377,17169 +4715,0080402,39176 +4716,0080408,33214 +4717,0080436,19267 +4718,0252866,2770 +4719,0181739,12610 +4720,0230600,1933 +4721,0244000,13496 +4722,0250202,21055 +4723,0250323,24936 +4724,0221559,80070 +4725,0261983,10972 +4726,0262076,207541 +4727,0238112,1722 +4728,0250687,9896 +4729,0168446,26665 +4731,0251141,125707 +4732,0258470,9683 +4733,0256524,2779 +4734,0261392,2294 +4735,0228333,10016 +4736,0234829,26602 +4737,0221799,37920 +4738,0208196,22230 +4739,0233699,206412 +4740,0206926,13966 +4741,0203166,742 +4742,0160710,248757 +4743,0255653,15104 +4744,0263488,8922 +4745,0184791,11065 +4746,0219400,21118 +4747,0155197,46727 +4748,0103596,16314 +4749,0109015,18885 +4750,0112255,40508 +4751,0080907,5922 +4752,0081114,27346 +4753,0092147,34223 +4754,0070917,16307 +4755,0118178,27681 +4756,0246544,11370 +4757,0202470,12508 +4758,0218619,14033 +4759,0269341,25462 +4760,0238066,223346 +4761,0200427,34714 +4762,0259981,47161 +4763,0263957,106230 +4764,0243595,35176 +4765,0242587,18734 +4766,0250809,44321 +4767,0047795,26661 +4768,0013086,5998 +4769,0248912,58062 +4770,0221218,2176 +4771,0180734,20857 +4772,0229340,22617 +4773,0273253,75386 +4774,0246464,2185 +4775,0118589,10696 +4776,0139654,2034 +4777,0243759,21538 +4778,0264476,51722 +4779,0270971,101860 +4780,0255321,48834 +4781,0263728,30379 +4782,0239986,31016 +4783,0264578,32567 +4784,0082416,12537 +4785,0063032,9028 +4786,0070294,16180 +4787,0102316,11521 +4788,0079579,21028 +4789,0071994,27327 +4790,0075132,35200 +4791,0067921,21242 +4792,0053559,29756 +4793,0082770,82523 +4794,0093677,20115 +4795,0058092,30295 +4796,0053877,25767 +4797,0052896,33725 +4798,0051773,22874 +4799,0057193,11576 +4800,0029081,43860 +4801,0033836,43802 +4802,0053143,9660 +4803,0067588,15393 +4804,0055312,248 +4805,0050933,40885 +4806,0059527,25905 +4807,0086352,21148 +4808,0108473,1644 +4809,0086312,12502 +4810,0076172,66092 +4811,0079766,10373 +4812,0091993,13766 +4813,0044207,16380 +4814,0260866,12103 +4815,0252501,11313 +4816,0196229,9398 +4817,0236034,35066 +4818,0245891,45864 +4819,0242994,55372 +4820,0281376,292947 +4821,0206314,10866 +4822,0273799,34549 +4823,0240890,9778 +4824,0265212,34453 +4825,0240419,58429 +4826,0080437,16121 +4827,0080464,40220 +4828,0082100,166 +4829,0058283,42787 +4830,0080474,1623 +4831,0080492,40932 +4832,0080500,32027 +4833,0080516,13550 +4834,0080520,13612 +4835,0080549,16769 +4836,0080556,42158 +4837,0080569,27958 +4838,0082226,86463 +4839,0080603,31703 +4840,0080610,1716 +4841,0080634,27059 +4842,0080641,20681 +4843,0219126,57743 +4844,0219965,3172 +4845,0250310,17708 +4846,0108148,12780 +4847,0243255,570 +4848,0166924,1018 +4849,0206963,25641 +4850,0164917,16767 +4851,0245501,102933 +4852,0166110,11380 +4853,0072732,27396 +4854,0061489,26299 +4855,0066999,984 +4856,0109609,15559 +4857,0067093,14811 +4858,0084043,21741 +4859,0095428,77670 +4860,0087666,55727 +4861,0119682,15560 +4862,0102555,9585 +4863,0072979,14267 +4864,0105601,45929 +4865,0120681,768 +4866,0272020,2100 +4867,0200027,11091 +4868,0263101,3173 +4869,0227277,27092 +4870,0217355,23941 +4871,0246628,18192 +4872,0256103,11845 +4873,0243017,9081 +4874,0272152,167 +4875,0279286,34043 +4876,0245674,9378 +4877,0236019,27444 +4878,0246578,141 +4879,0253126,10034 +4880,0264796,11457 +4881,0243133,10778 +4882,0236000,78657 +4883,0234988,67385 +4884,0278102,151727 +4885,0249478,11456 +4886,0198781,585 +4887,0267804,10796 +4888,0275719,23949 +4889,0252503,11088 +4890,0256380,9889 +4891,0177888,140511 +4892,0246072,133115 +4893,0080130,45964 +4894,0086443,32014 +4895,0290332,13408 +4896,0241527,671 +4897,0245115,17731 +4898,0234354,20794 +4899,0265087,11469 +4900,0253798,14369 +4901,0266987,1535 +4902,0256009,1433 +4903,0247425,1999 +4904,0139951,58098 +4905,0070169,78076 +4906,0072747,87774 +4907,0068168,23847 +4908,0054177,50785 +4909,0082558,12472 +4910,0073233,42258 +4911,0076221,11834 +4912,0062994,16085 +4913,0053717,27405 +4914,0053472,269 +4915,0083630,16441 +4916,0074899,11422 +4917,0076342,31037 +4918,0052415,40739 +4919,0090095,10656 +4920,0035140,32847 +4921,0024264,39938 +4922,0042539,38766 +4923,0035957,43510 +4924,0062673,35284 +4925,0077321,14584 +4926,0209037,58886 +4927,0076299,72277 +4928,0075824,5781 +4929,0084809,23805 +4930,0060437,34388 +4931,0080646,39867 +4932,0080661,11033 +4933,0080671,69716 +4934,0080707,37835 +4935,0080715,33356 +4936,0080716,3537 +4937,0080724,38922 +4938,0080728,27145 +4939,0080736,8738 +4940,0080738,28614 +4941,0080745,3604 +4942,0052564,6974 +4943,0074157,26398 +4944,0075989,42218 +4945,0074483,10649 +4946,0082350,42566 +4947,0076070,17689 +4948,0051755,34084 +4949,0089348,15983 +4950,0085862,14854 +4951,0100054,10847 +4952,0089622,33525 +4953,0076535,27591 +4954,0054135,299 +4955,0093966,31945 +4956,0081568,42160 +4957,0086383,10650 +4958,0159273,8007 +4959,0242252,19076 +4960,0160403,81442 +4961,0282856,50562 +4962,0193560,13503 +4963,0240772,161 +4964,0233841,43774 +4965,0270259,31064 +4966,0050539,31682 +4967,0283509,8342 +4968,0261066,55479 +4969,0037515,4886 +4970,0020697,228 +4971,0087747,23111 +4972,0066195,42597 +4973,0211915,194 +4974,0277371,11397 +4975,0259711,1903 +4976,0280778,11889 +4977,0283431,28171 +4978,0259393,9523 +4979,0265666,9428 +4980,0101452,1649 +4981,0090852,11938 +4982,0052320,43143 +4983,0089283,35201 +4984,0060714,42724 +4985,0088103,24264 +4986,0084684,27150 +4987,0086346,26978 +4988,0094318,19209 +4989,0278488,8386 +4990,0268397,12589 +4991,0279889,12312 +4992,0035423,11232 +4993,0120737,120 +4994,0268995,11086 +4995,0268978,453 +4996,0228687,18939 +4997,0217331,12724 +4998,0051525,11414 +4999,0027532,31507 +5000,0064652,42612 +5001,0036323,18783 +5002,0068612,12593 +5003,0071913,14683 +5004,0063415,10794 +5005,0052182,43136 +5006,0105287,45491 +5007,0058672,5052 +5008,0051201,37257 +5009,0248667,8489 +5010,0265086,855 +5011,0245046,12660 +5012,0086619,10269 +5013,0280707,5279 +5014,0277027,10950 +5015,0285742,1365 +5016,0120824,6440 +5017,0045555,14580 +5018,0104922,49410 +5019,0048527,28296 +5020,0117653,24206 +5021,0074937,6037 +5022,0057490,42987 +5023,0105789,61418 +5024,0242795,27099 +5025,0273923,11857 +5026,0237534,6312 +5027,0099044,11595 +5028,0269746,24166 +5029,0109417,26337 +5030,0093106,59066 +5031,0087682,77985 +5032,0086205,77074 +5033,0100530,10170 +5034,0103129,18317 +5035,0066585,98491 +5036,0077289,26686 +5037,0048312,61934 +5038,0083951,27273 +5039,0082288,848 +5040,0087078,9610 +5041,0085542,15035 +5042,0080752,16127 +5043,0080754,31603 +5044,0080756,32020 +5045,0080771,33155 +5046,0160399,4965 +5047,0240468,11891 +5048,0281373,11888 +5049,0083511,150 +5050,0206608,35263 +5051,0243862,112 +5052,0268696,125717 +5053,0109288,20678 +5054,0085271,15050 +5055,0106770,10423 +5056,0071691,11710 +5057,0057071,17691 +5058,0074626,27378 +5059,0145046,57976 +5060,0066026,651 +5061,0087751,31955 +5062,0060955,20620 +5063,0055257,18647 +5064,0245844,11362 +5065,0265349,2637 +5066,0281358,10229 +5067,0294289,50819 +5068,0276501,12659 +5069,0270933,68149 +5070,0220514,41870 +5071,0220627,35650 +5072,0293416,9606 +5073,0208990,11447 +5074,0250081,16550 +5075,0219405,13915 +5076,0106223,34723 +5077,0097116,31674 +5078,0087233,52744 +5079,0047688,43340 +5080,0240900,20009 +5081,0188453,2084 +5082,0201899,50225 +5083,0295552,74692 +5084,0071266,39775 +5085,0046828,51044 +5086,0101891,29475 +5087,0078122,4267 +5088,0072353,4031 +5089,0082525,47871 +5090,0050781,11594 +5091,0070354,19562 +5092,0265298,11870 +5093,0233469,9884 +5094,0246894,11535 +5095,0265713,27593 +5096,0109190,11212 +5097,0024914,29887 +5098,0027527,32484 +5099,0028988,28345 +5100,0085891,69928 +5101,0086194,21921 +5102,0107985,21845 +5103,0108037,11528 +5104,0103186,2441 +5105,0069995,931 +5106,0275022,17130 +5107,0251114,10592 +5108,0251160,8470 +5109,0280030,16690 +5110,0247745,39939 +5111,0107034,9272 +5112,0253200,14778 +5113,0060200,19137 +5114,0044391,32499 +5115,0060218,8737 +5116,0050306,33668 +5117,0073026,39282 +5118,0068687,40687 +5119,0054269,37230 +5120,0069281,993 +5121,0075276,11698 +5122,0067803,41357 +5123,0070819,42458 +5124,0055539,93427 +5125,0081698,14475 +5126,0050294,43715 +5127,0259288,10052 +5128,0238546,11979 +5129,0260746,75151 +5130,0229002,35868 +5131,0207524,13791 +5132,0231956,27824 +5133,0184719,270306 +5134,0291341,9991 +5135,0265343,480 +5136,0275067,44340 +5137,0143861,18984 +5138,0301893,25006 +5139,0074174,23479 +5140,0077199,66946 +5141,0075718,19050 +5142,0061781,38442 +5143,0048310,108266 +5144,0051876,108267 +5145,0059415,39387 +5146,0216651,15999 +5147,0050986,614 +5148,0057889,56133 +5149,0046839,121703 +5150,0124185,77955 +5151,0243736,2752 +5152,0277434,10590 +5153,0204700,40723 +5154,0069729,29039 +5155,0068273,22910 +5156,0066830,42517 +5157,0094860,40364 +5158,0085380,115332 +5159,0104254,13225 +5160,0082559,21380 +5161,0110146,46717 +5162,0091295,63510 +5163,0092576,20465 +5164,0108395,35614 +5165,0080057,7219 +5166,0027286,35810 +5167,0039645,18649 +5168,0043983,18646 +5169,0038057,17058 +5170,0278295,13950 +5171,0268695,2135 +5172,0290212,15186 +5173,0127516,43997 +5174,0099566,31651 +5175,0099768,47869 +5176,0160498, +5177,0035015,965 +5178,0109855,33135 +5179,0080798,10889 +5180,0080813,16149 +5181,0080836,54287 +5182,0080846,25628 +5183,0080850,65262 +5184,0080855,10935 +5185,0080863,44004 +5186,0080888,22288 +5187,0080889,32030 +5188,0080895,119617 +5189,0080904,29343 +5190,0080928,39503 +5192,0080934,7988 +5193,0080948,15310 +5194,0076276,17909 +5195,0081027,22130 +5196,0081059,26843 +5197,0081060,27458 +5198,0081070,14807 +5199,0081071,14729 +5200,0081109,46973 +5201,0081112,8690 +5202,0081176,39543 +5203,0081178,39578 +5204,0081182,3418 +5205,0081184,30924 +5206,0081186,14929 +5207,0081187,75552 +5208,0081237,18910 +5209,0081809,24549 +5210,0081248,24919 +5211,0081249,26200 +5212,0081259,24825 +5213,0081268,38147 +5214,0076489,24032 +5215,0081269,26179 +5216,0081323,4499 +5217,0082924,11333 +5218,0268380,425 +5219,0120804,1576 +5220,0284490,5851 +5221,0216799,25014 +5222,0264761,15647 +5223,0256259,25110 +5224,0282864,38880 +5225,0245574,1391 +5226,0085154,18172 +5227,0055774,24248 +5228,0032520,14605 +5229,0125209,19797 +5230,0040679,17804 +5231,0035262,31805 +5232,0032993,13861 +5233,0038032,29021 +5234,0034116,31812 +5235,0105459,13006 +5236,0097106,28213 +5237,0083169,10627 +5238,0081420,42750 +5239,0081441,27930 +5240,0081445,259557 +5241,0081480,28124 +5242,0081485,41034 +5243,0081499,11563 +5244,0081506,15119 +5245,0081518,55792 +5246,0081529,12705 +5247,0076729,11006 +5248,0086325,15120 +5249,0081547,40072 +5250,0081562,21629 +5251,0081590,16026 +5252,0081609,2371 +5253,0081614,73134 +5254,0187738,36586 +5255,0279781,6020 +5256,0286162,39541 +5257,0123114,125764 +5258,0262432,18292 +5259,0054988,29394 +5260,0192745,112942 +5261,0067345,90974 +5262,0055200,29402 +5263,0058620,29396 +5264,0250305,15028 +5265,0266452,9275 +5266,0258000,4547 +5267,0265662,14635 +5268,0248190,29135 +5269,0254686,1791 +5270,0250282,184835 +5271,0273048,41756 +5272,0279065,35651 +5273,0188128,62956 +5274,0109217,116904 +5275,0068309,22784 +5276,0087100,40814 +5277,0087222,53426 +5278,0089167,24585 +5279,0102103,17990 +5280,0102829,129542 +5281,0096466,5678 +5282,0257756,11560 +5283,0283111,11452 +5284,0245407,18435 +5285,0246134,35944 +5286,0216689,64310 +5287,0098994,25501 +5288,0083590,26851 +5289,0039204,17487 +5290,0058100,34276 +5291,0042876,548 +5292,0076723,11590 +5293,0264472,1537 +5294,0264616,12149 +5295,0191074,44373 +5296,0253867,11812 +5297,0266391,35080 +5298,0219822,441 +5299,0259446,8346 +5300,0050086,14168 +5301,0072705,32617 +5302,0072737,31671 +5303,0099892,2565 +5304,0038890,307 +5305,0095989,15482 +5306,0093854,45878 +5307,0103035,6393 +5308,0094137,12154 +5309,0098966,11630 +5310,0090196,25133 +5311,0081738,21970 +5312,0264935,11892 +5313,0277296,9334 +5314,0291003,36093 +5315,0226935,35694 +5316,0157583,10491 +5317,0239507,70054 +5318,0271582,18323 +5319,0247586,18079 +5320,0160905,110989 +5321,0253840,35337 +5322,0262911,59199 +5323,0211443,11470 +5324,0282687,16643 +5325,0275309,1282 +5326,0281865,21220 +5327,0181912,52717 +5328,0287645,69324 +5329,0235737,11468 +5330,0274868,292917 +5331,0120467,19085 +5332,0088758,73462 +5333,0047892,26030 +5334,0099204,10164 +5335,0088931,42048 +5336,0079013,62001 +5337,0101701,28117 +5338,0095186,40555 +5339,0104466,28384 +5340,0065916,46691 +5341,0071746,27094 +5342,0091647,26725 +5343,0108311,17168 +5344,0088256,48482 +5345,0098513,56179 +5346,0100934,5203 +5347,0231448,13201 +5348,0278823,9689 +5349,0145487,557 +5350,0282771,69850 +5351,0289054,44768 +5352,0077234,1815 +5353,0068326,55106 +5354,0064117,28289 +5355,0074292,32037 +5356,0073043,39154 +5357,0110157,24767 +5358,0100196,33796 +5359,0102753,32221 +5360,0086397,28466 +5361,0103247,12227 +5362,0111701,43643 +5363,0241760,10985 +5364,0250797,2251 +5365,0239234,2894 +5366,0103253,20712 +5367,0091578,11240 +5368,0052600,46592 +5369,0071216,45186 +5370,0092652,86483 +5371,0078916,5425 +5372,0045591,14117 +5373,0050634,38360 +5374,0058007,29318 +5375,0038589,28907 +5376,0079429,39771 +5377,0276751,245 +5378,0121765,1894 +5379,0247199,4012 +5380,0278500,9026 +5381,0062790,42193 +5382,0077523,15417 +5383,0052905,11791 +5384,0051758,28577 +5385,0077838,13963 +5386,0050858,23102 +5387,0278435,1957 +5388,0278504,320 +5389,0166813,9023 +5390,0254199,27834 +5391,0268690,17734 +5392,0049038,24010 +5393,0051496,39435 +5394,0044557,24005 +5395,0071532,44800 +5396,0054022,24014 +5397,0044916,24008 +5398,0056406,53229 +5399,0047422,1936 +5400,0164184,4614 +5401,0279493,12277 +5402,0295480,267345 +5403,0277322,112991 +5404,0090570,15677 +5405,0037627,58455 +5406,0045679,36554 +5407,0211286,48216 +5408,0158033,41165 +5409,0105219,13153 +5410,0067756,811 +5411,0057541,43532 +5412,0080097,163907 +5413,0079788,7216 +5414,0280486,3132 +5415,0279778,9583 +5416,0298798,18408 +5417,0285441,13245 +5418,0258463,2501 +5419,0267913,9637 +5420,0245562,12100 +5421,0238924,16857 +5422,0282768,52258 +5423,0210065,10394 +5424,0242508,27451 +5425,0244479,15813 +5426,0068245,31591 +5427,0082146,18905 +5428,0087042,14774 +5429,0062626,4993 +5430,0108504,27052 +5431,0077621,34130 +5432,0095296,38950 +5433,0090021,17898 +5434,0040823,21635 +5435,0061770,27945 +5436,0051739,43139 +5437,0091472,30194 +5438,0100135,10169 +5439,0083015,27225 +5440,0041866,13909 +5441,0105631,103299 +5442,0103184,41805 +5443,0247444,35696 +5444,0275847,11544 +5445,0181689,180 +5446,0252444,9555 +5447,0286179,57022 +5448,0314166,17710 +5449,0280590,2022 +5450,0258273,50035 +5451,0265591,9719 +5452,0107438,11982 +5453,0107443,27224 +5454,0104897,12251 +5455,0102573,88818 +5456,0111653,30114 +5457,0105885,70489 +5458,0308506,21972 +5459,0120912,608 +5460,0289408,59387 +5461,0263725,26290 +5462,0305396,17043 +5463,0253556,6278 +5464,0257044,4147 +5465,0297721,16664 +5466,0269499,14651 +5467,0244094,96238 +5468,0050084,15096 +5469,0076100,19731 +5470,0044744,20324 +5471,0089798,49370 +5472,0068156,14902 +5473,0072976,42254 +5474,0068837,1842 +5475,0065234,2721 +5476,0220506,11442 +5477,0254455,1364 +5478,0271367,8869 +5479,0267626,8665 +5480,0243585,10996 +5481,0295178,818 +5482,0276033,18357 +5483,0303353,29047 +5484,0303243,45861 +5485,0271219,39141 +5486,0246500,33152 +5487,0074608,149445 +5488,0067227,10309 +5489,0079641,6404 +5490,0074205,19133 +5491,0049170,43199 +5492,0061653,43915 +5493,0061810,24130 +5494,0040866,43445 +5495,0060708,36645 +5496,0035160,5155 +5497,0059557,23728 +5498,0058888,3780 +5499,0075147,10786 +5500,0088286,8764 +5501,0295427,13908 +5502,0286106,2675 +5503,0265930,12308 +5504,0287717,9488 +5505,0279113,9962 +5506,0309377,9573 +5507,0295701,7451 +5508,0274309,2750 +5509,0303356,30586 +5510,0283288,61112 +5511,0285869,92384 +5512,0290823,43772 +5513,0327036,20337 +5514,0292066,27062 +5515,0120263,34070 +5516,0274117,6173 +5517,0232083,10305 +5518,0082054,42337 +5519,0065537,18694 +5520,0217119,74578 +5521,0093780,10081 +5522,0073631,11484 +5523,0180052,11692 +5524,0300532,9266 +5525,0246772,3640 +5526,0255589,8653 +5527,0256276,30072 +5528,0265459,9357 +5529,0261289,12771 +5530,0258153,9296 +5531,0281322,15070 +5532,0280424,26942 +5533,0283991,206042 +5534,0290662,26895 +5535,0268219,60608 +5536,0267563,146231 +5537,0300453,97447 +5538,0088885,11243 +5539,0090799,19975 +5540,0082186,10323 +5541,0102059,9595 +5542,0080931,28319 +5543,0078350,46878 +5544,0080025,24750 +5545,0051134,31393 +5546,0094597,24038 +5547,0109368,79783 +5548,0090966,9941 +5549,0053825,18639 +5550,0049452,39833 +5551,0037219,32858 +5552,0050894,3127 +5553,0094025,10859 +5554,0055623,32825 +5555,0083336,10725 +5556,0295254,9544 +5557,0187512,23967 +5558,0235553,57351 +5559,0270480,26165 +5560,0022599,31514 +5561,0103125,13571 +5562,0275688,26056 +5563,0269095,13536 +5564,0283026,20616 +5565,0309521, +5566,0219756,96218 +5567,0084133,79319 +5568,0087507,16806 +5569,0068833,15516 +5570,0117883,9299 +5571,0294431,113369 +5572,0303714,10611 +5573,0265808,12770 +5574,0293662,4108 +5575,0269329,55903 +5576,0177746,46466 +5577,0280760,9685 +5579,0298238,87481 +5580,0106315,16370 +5581,0099128,18913 +5582,0103924,14361 +5583,0032390,41021 +5584,0099512,18943 +5585,0101821,32685 +5586,0064397,64079 +5587,0089274,18477 +5588,0077681,12262 +5589,0107212,33506 +5590,0070350,29515 +5591,0110557,41582 +5592,0091544,50382 +5593,0063356,42633 +5595,0076704,26680 +5596,0100666,34086 +5597,0103003,11504 +5598,0108258,23470 +5599,0022458,977 +5600,0080117,233 +5601,0039111,19049 +5602,0048281,5506 +5603,0044829,32961 +5604,0044876,32568 +5605,0171685,29698 +5606,0098354,22244 +5607,0292542,19460 +5608,0250258,575 +5609,0308208,10550 +5610,0280460,9034 +5611,0240510,9093 +5612,0280380,9039 +5613,0283832,1958 +5614,0274497,23550 +5615,0245171,68569 +5616,0272730,318535 +5617,0274812,11013 +5618,0245429,129 +5619,0326306,54714 +5620,0256415,11529 +5621,0290095,10771 +5622,0330136,38951 +5623,0285487,55018 +5624,0245479,44635 +5625,0179098,31005 +5626,0318068,72308 +5627,0284494,50123 +5628,0281364,2110 +5629,0298388,15173 +5630,0289765,9533 +5631,0289668,38866 +5632,0280491,4107 +5633,0246677,10575 +5634,0164810,47500 +5635,0265307,15720 +5636,0271259,9260 +5637,0101898,21828 +5638,0058379,1682 +5639,0064373,39462 +5640,0197521,18983 +5641,0095649,41971 +5642,0079668,33831 +5643,0095895,24348 +5644,0035211,19140 +5645,0103069,82545 +5646,0098575,37606 +5647,0119068,34600 +5648,0129908,39128 +5649,0051554,11868 +5650,0086373,12921 +5651,0058230,19953 +5652,0103977,53049 +5653,0060315,10772 +5654,0093113,77079 +5655,0082362,74899 +5656,0273607,120694 +5657,0099581,12719 +5658,0084049,25001 +5659,0042898,43438 +5660,0058557,3092 +5661,0070680,4989 +5662,0120536,15313 +5663,0276816,12590 +5664,0297037,37964 +5665,0211465,7501 +5666,0292644,1809 +5667,0283084,13768 +5668,0283139,10994 +5669,0310793,1430 +5670,0328962,19973 +5671,0118756,40815 +5672,0313487,12600 +5673,0272338,8051 +5674,0269461,70443 +5675,0291502,12779 +5676,0186719,146269 +5677,0267248,15992 +5678,0227984,1613 +5679,0298130,565 +5680,0298744,14112 +5681,0292508,41324 +5682,0252480,15192 +5683,0293832,49872 +5684,0145937,21925 +5685,0296166,30309 +5686,0318034,16646 +5687,0296658,37288 +5688,0212604,20861 +5689,0101453,12647 +5690,0095327,12477 +5691,0107254,10285 +5692,0068931,19403 +5693,0076666,11009 +5694,0086361,10805 +5695,0075334,40064 +5696,0081696,17496 +5697,0081617,40969 +5698,0081635,76411 +5699,0080031,5917 +5700,0081693,31278 +5701,0081695,33670 +5702,0081747,47942 +5703,0081751,33076 +5704,0081764,44932 +5705,0081777,15668 +5706,0081964,30709 +5707,0081974,19429 +5708,0082001,140413 +5709,0082005,21294 +5710,0082045,11340 +5711,0082081,42142 +5712,0082085,11644 +5713,0082094,33721 +5714,0082111,36133 +5715,0082118,24124 +5716,0082122,34697 +5717,0082700,8691 +5718,0082138,53922 +5719,0082159,66592 +5720,0085327,6399 +5721,0082175,25773 +5722,0082183,19123 +5723,0082200,26560 +5724,0082213,36220 +5725,0082222,225 +5726,0082242,24274 +5727,0082245,33016 +5728,0082247,26444 +5729,0082329,19114 +5730,0082332,17205 +5731,0082334,24740 +5732,0082351,10863 +5733,0082353,31679 +5734,0085518,15900 +5735,0077533,12237 +5736,0121261,15901 +5737,0121262,15902 +5738,0223249, +5739,0223250,15904 +5740,0223251,97251 +5741,0082370,12579 +5742,0082382,85058 +5743,0082402,23668 +5744,0082404,70971 +5745,0082405,25113 +5746,0082431,28893 +5747,0082432,11646 +5748,0082436,5062 +5749,0082449,24634 +5750,0082457,75963 +5751,0082464,16124 +5752,0082477,21764 +5753,0082490,22435 +5754,0082497,42149 +5755,0082498,37936 +5756,0082507,73247 +5757,0175739,38255 +5758,0084090,46364 +5759,0082639,27016 +5760,0082640,35685 +5761,0082648,38665 +5762,0082661,265 +5763,0082671,2264 +5764,0082677,21874 +5765,0082679,41394 +5766,0082696,47957 +5767,0082755,31407 +5768,0082763,16471 +5769,0082764,63443 +5770,0082776,22171 +5771,0082782,39874 +5772,0082783,25468 +5773,0082801,19507 +5774,0082815,29072 +5775,0082816,75596 +5776,0082853,42146 +5777,0082894,17450 +5778,0082748,47886 +5779,0082910,31646 +5780,0082926,14269 +5781,0082948,41280 +5782,0082949,1672 +5783,0303326,35935 +5784,0288477,9645 +5785,0322802,9012 +5786,0259484,13098 +5787,0270707,13440 +5788,0286261,12454 +5789,0252223,31668 +5790,0309600,41645 +5791,0120679,1360 +5792,0299117,13441 +5793,0295725,45767 +5794,0209933,14626 +5795,0047880,48155 +5796,0061452,12208 +5797,0087075,11905 +5798,0180679,39497 +5799,0053804,1941 +5800,0058212,26685 +5801,0060921,31918 +5802,0058756,19662 +5803,0297181,8427 +5804,0304669,9021 +5805,0220331,277415 +5806,0246266,28988 +5807,0292501,52735 +5808,0210382,13526 +5809,0280665,9280 +5810,0298203,65 +5811,0260713,117520 +5812,0297884,10712 +5813,0287986,27204 +5814,0201020,152023 +5815,0297162,10167 +5816,0295297,672 +5817,0273435,16351 +5818,0313196,542 +5819,0308411,36584 +5820,0314725,30192 +5821,0312841,33251 +5822,0106215,25466 +5823,0101844,50677 +5824,0280870,2165 +5825,0036112,25037 +5826,0042895,11617 +5827,0108633,24909 +5828,0118735,81530 +5829,0263734,34341 +5830,0055207,18993 +5831,0271200,53000 +5832,0283644,29229 +5833,0280609,11880 +5834,0077549,63435 +5835,0099673,80849 +5836,0051745,1377 +5837,0213802,11629 +5838,0102368,2528 +5839,0099669,12716 +5840,0099266,12717 +5841,0102782,13888 +5842,0098520,48524 +5843,0103112,10750 +5844,0082951,44247 +5845,0082958,45226 +5846,0082969,96966 +5847,0082970,25566 +5848,0082992,109962 +5849,0081427,13386 +5850,0083000,43089 +5851,0083006,47888 +5852,0083033,20472 +5853,0081455,9538 +5854,0083064,14664 +5855,0083067,27997 +5856,0083089,49934 +5857,0083099,84735 +5858,0083109,9317 +5859,0083111,12528 +5860,0083113,47890 +5861,0086410,69014 +5862,0083133,21515 +5863,0083163,42371 +5864,0083170,26325 +5865,0083178,69169 +5866,0083189,31921 +5867,0083190,11524 +5868,0083193,109264 +5869,0083232,32077 +5870,0253586,326890 +5871,0230252,277724 +5872,0246460,36669 +5873,0283530,17187 +5874,0293815,10426 +5875,0295238,32625 +5876,0258068,8198 +5877,0303396,204372 +5878,0287467,64 +5879,0271263,13376 +5880,0283160,15074 +5881,0307479,2103 +5882,0133240,9016 +5883,0283632,16028 +5884,0103959,27070 +5885,0207198,5261 +5886,0239060,15514 +5887,0101356,23303 +5888,0118767,20992 +5889,0090368,66091 +5890,0279064,6007 +5891,0077713,25239 +5892,0071671,42453 +5893,0110308,25284 +5894,0177898,125337 +5895,0089378,7011 +5896,0213121,35612 +5897,0086911,10880 +5898,0084749,13945 +5899,0058777,14433 +5900,0289848,9932 +5901,0262396,13369 +5902,0268126,2757 +5903,0238380,7299 +5904,0273851,78022 +5905,0304729,279784 +5906,0186730,32273 +5907,0066065,26356 +5908,0218581,23990 +5909,0290329,4241 +5910,0083260,37335 +5911,0138902,34113 +5912,0083271,22257 +5913,0083276,35343 +5914,0083281,30142 +5915,0083284,17360 +5916,0083326,31695 +5917,0083365,76397 +5918,0083542,40952 +5919,0083557,38849 +5920,0083580,71524 +5921,0083591,43279 +5922,0080393,29743 +5923,0083598,41760 +5924,0083619,31665 +5925,0083629,40219 +5926,0083641,45840 +5927,0083642,16363 +5928,0083678,22023 +5929,0083686,171 +5930,0083693,73116 +5931,0083694,26639 +5932,0083702,42124 +5933,0083717,25297 +5934,0083726,39274 +5935,0083739,11564 +5936,0083745,67772 +5937,0083789,4202 +5938,0083806,17590 +5939,0182060,20787 +5940,0083869,28940 +5941,0303933,13497 +5942,0302640,11852 +5943,0252076,7303 +5944,0253754,201 +5945,0257360,2755 +5946,0243794,33504 +5947,0298856,21868 +5948,0319470,65684 +5949,0220580,10856 +5950,0271020,99826 +5951,0300214,18602 +5952,0167261,121 +5953,0245929,25838 +5954,0307901,1429 +5955,0168786,13435 +5956,0217505,3131 +5957,0313737,2642 +5958,0282120,14317 +5959,0272207,11022 +5960,0099091,24249 +5961,0099160,9491 +5962,0106453,2149 +5963,0054743,20139 +5964,0101606,32074 +5965,0075968,19067 +5966,0049414,53712 +5967,0050629,25848 +5968,0100143,14931 +5969,0110613,11317 +5970,0102492,4032 +5971,0096283,8392 +5972,0056417,31804 +5973,0120042,81048 +5974,0033152,12232 +5975,0049934,11706 +5976,0105809,61265 +5977,0066563,42569 +5978,0092206,25720 +5979,0050147,26946 +5980,0071222,16938 +5981,0055894,21143 +5982,0183056,61578 +5983,0045917,20424 +5984,0073115,4561 +5985,0249371,4435 +5986,0068575,16993 +5987,0199727,18002 +5988,0091814,21332 +5989,0264464,640 +5990,0255477,10599 +5991,0299658,1574 +5992,0274558,590 +5993,0290210,13560 +5994,0309912,29339 +5995,0253474,423 +5996,0305973,28028 +5997,0042325,41084 +5998,0106753,18773 +5999,0119273,16225 +6000,0080503,28679 +6001,0085794,262 +6002,0282698,15395 +6003,0290538,4912 +6004,0108471,107693 +6005,0330069,23626 +6006,0305711,12090 +6007,0245341,44233 +6008,0291172,35172 +6009,0246498,36273 +6010,0250347,14390 +6011,0284655,41209 +6012,0295289,9582 +6013,0257568,10628 +6014,0271668,11078 +6015,0287934,77633 +6016,0317248,598 +6017,0274428,99885 +6018,0285280,15842 +6019,0109034,24711 +6020,0026056,43886 +6021,0075675,11222 +6022,0103671,13199 +6023,0057869,8073 +6024,0118772,26393 +6025,0106500,15278 +6026,0114704,1484 +6027,0101748,14667 +6028,0061610,47263 +6029,0057083,18692 +6030,0056023,15734 +6031,0052918,34148 +6032,0079477,20813 +6033,0102500,53027 +6034,0059563,18894 +6035,0029453,26252 +6036,0089981,24742 +6037,0084737,19415 +6038,0100822,41927 +6039,0088414,5968 +6040,0282209,10727 +6041,0280653,9045 +6042,0311320,9082 +6043,0284203,92348 +6044,0086978,80965 +6045,0115781,14469 +6046,0071334,55909 +6047,0039305,20663 +6048,0054805,31916 +6049,0106833,61807 +6050,0074599,20639 +6051,0070155,7514 +6052,0063091,42645 +6053,0089444,29463 +6054,0058371,42795 +6055,0107079,39349 +6056,0265116,44164 +6057,0326769,12253 +6058,0309593,9358 +6059,0292506,1647 +6060,0280720,9027 +6061,0304267,125945 +6062,0308514,21189 +6063,0303361,10894 +6064,0049291,28528 +6065,0052911,34783 +6066,0079592,34374 +6067,0160611,12490 +6068,0039737,26761 +6069,0050985,35185 +6070,0105622,15802 +6071,0054417,39948 +6072,0064323,8286 +6073,0055597,43028 +6074,0083885,65300 +6075,0083888,24129 +6076,0083891,4628 +6077,0083908,4193 +6078,0083943,10724 +6079,0083947,89571 +6080,0083960,32065 +6081,0083996,11915 +6082,0085622,42136 +6083,0085640,28307 +6084,0084088,37917 +6085,0084099,70011 +6086,0084112,37191 +6087,0084117,210092 +6088,0084171,3028 +6089,0084189,29224 +6090,0084210,81001 +6091,0084228,8219 +6092,0084234,27088 +6093,0084237,10150 +6094,0085852,20980 +6095,0084266,16407 +6096,0084293,41913 +6097,0084298,30875 +6098,0084302,29450 +6099,0084316,27380 +6100,0084329,8288 +6101,0084335,15600 +6102,0083449,52083 +6103,0084351,124963 +6104,0084352,11949 +6105,0084354,42134 +6106,0084359,79257 +6107,0084422,42130 +6108,0084423,42131 +6109,0084445,41291 +6110,0084464,84784 +6111,0084469,23942 +6112,0084477,72340 +6113,0084481,32692 +6114,0084488,37997 +6115,0084489,27609 +6116,0084504,25872 +6117,0084538,83562 +6118,0084549,127 +6119,0084555,14645 +6120,0084556,27726 +6121,0084565,42135 +6122,0084597,21923 +6123,0084628,1563 +6124,0084633,17132 +6125,0084648,59533 +6126,0084654,2262 +6127,0084675,52772 +6128,0084690,46925 +6129,0084691,77073 +6130,0084704,76395 +6131,0083107,37607 +6132,0084719,30874 +6133,0084725,30363 +6134,0084728,49409 +6135,0084732,32048 +6136,0084740,48139 +6137,0084750,30584 +6138,0084756,48313 +6139,0084776,48249 +6140,0084777,29702 +6141,0084786,24830 +6142,0084796,30049 +6143,0084814,9699 +6144,0084821,48561 +6145,0084854,30789 +6146,0084874,81346 +6147,0084897,11057 +6148,0084899,47955 +6149,0083941,19322 +6150,0084920,31661 +6151,0084934,52556 +6152,0084935,38219 +6153,0084945,23943 +6154,0301181,26454 +6155,0251127,9919 +6156,0300471,6038 +6157,0287978,9480 +6158,0283426,14873 +6159,0299458,13132 +6160,0303297,22707 +6161,0317234,18302 +6162,0302674,1956 +6163,0291579,12112 +6164,0196708,50380 +6165,0259054,212058 +6166,0106701,12139 +6167,0029605,118936 +6168,0085121,18587 +6169,0085248,24883 +6170,0078872,17264 +6171,0068441,3426 +6172,0061523,2984 +6173,0104522,33221 +6174,0097670,59201 +6175,0095626,26172 +6176,0071866,26173 +6177,0091575,33055 +6178,0059573,33364 +6179,0093771,33851 +6180,0100442,31598 +6181,0043961,59401 +6182,0057581,22233 +6183,0053172,4952 +6184,0074851,991 +6185,0279331,4911 +6186,0279111,16072 +6187,0289992,11615 +6188,0302886,11635 +6189,0191177,125806 +6190,0276276,77283 +6191,0279977,35824 +6192,0315543,102 +6193,0273982,14293 +6194,0240980,41820 +6195,0324080,105024 +6196,0306685,10623 +6197,0278731,9613 +6198,0103670,7015 +6199,0116169,210938 +6200,0089343,42035 +6201,0091374,21867 +6202,0287471,49680 +6203,0102303,6524 +6204,0107563,11244 +6205,0095665,77233 +6206,0091920,140071 +6207,0266971,21801 +6208,0053337,35139 +6209,0105645,54845 +6210,0301429,23834 +6211,0301978,14633 +6212,0305669,10678 +6213,0314353,9567 +6214,0290673,979 +6215,0298408,13819 +6216,0161860,1591 +6217,0256359,24186 +6218,0286499,455 +6219,0269347,10632 +6220,0310357,10929 +6221,0235412,170400 +6222,0236640,16229 +6223,0283003,12079 +6224,0250125,44081 +6225,0055047,36362 +6226,0073858,4762 +6227,0050659,18535 +6228,0035417,23159 +6229,0067893,27236 +6230,0069765,42459 +6231,0047873,43261 +6232,0060182,15347 +6233,0106466,44968 +6234,0075995,37258 +6235,0099776,8996 +6236,0050383,125413 +6237,0047030,17729 +6238,0099699,12157 +6239,0052948,11571 +6240,0102593,71142 +6241,0086087,10293 +6242,0178868,2671 +6243,0218553,9669 +6244,0096028,45129 +6245,0065054,42618 +6246,0103036,41164 +6247,0066579,66027 +6248,0322824,36211 +6249,0285462,9557 +6250,0285531,6171 +6251,0323642,13691 +6252,0264150,11523 +6253,0283323,114065 +6254,0028597,14675 +6255,0060164,2525 +6256,0074287,57447 +6257,0061834,42695 +6258,0037630,49845 +6259,0036182,18992 +6260,0046247,29912 +6261,0105824,28881 +6262,0318025,80243 +6263,0264395,10782 +6264,0298814,9341 +6265,0325537,9776 +6266,0286788,10735 +6267,0283897,16425 +6268,0316188,25461 +6269,0334416,51927 +6270,0100998,12516 +6271,0070460,1675 +6272,0116261,62184 +6273,0042593,17057 +6274,0098093,41938 +6275,0094020,79615 +6276,0040946,40718 +6277,0080139,42178 +6278,0314062,203252 +6279,0281820,6016 +6280,0266465,8409 +6281,0183649,1817 +6282,0277622,284096 +6283,0275277,11299 +6284,0337996,17995 +6285,0304328,21052 +6286,0311519,7294 +6287,0305224,9506 +6288,0280477,14290 +6289,0297144,24982 +6290,0251736,2662 +6291,0300140,12093 +6292,0329355,18941 +6293,0245573,42383 +6294,0245803,11817 +6295,0323572,24621 +6296,0310281,13370 +6297,0311289,8326 +6298,0328099,13411 +6299,0301727,11516 +6300,0236027,10180 +6301,0067800,994 +6302,0050177,66918 +6303,0066769,10514 +6304,0109327,14237 +6305,0060390,1714 +6306,0327920,14308 +6307,0070212,41461 +6308,0091396,9930 +6309,0107523,32083 +6310,0095613,107569 +6311,0250371,16651 +6312,0089838,57565 +6313,0100611,108553 +6314,0108442,12661 +6315,0092214,29355 +6316,0078504,24961 +6317,0055832,26866 +6318,0102411,31633 +6319,0102465,20978 +6320,0102849,47762 +6321,0100691,47329 +6322,0310910,10743 +6323,0309698,2832 +6324,0311110,31459 +6325,0360916,19153 +6326,0164003,31932 +6327,0342275,38868 +6328,0332605,72996 +6329,0252684,15098 +6330,0274711,11458 +6331,0334405,16636 +6332,0306841,18736 +6333,0290334,36658 +6334,0290145,46989 +6335,0118926,20689 +6336,0317226,13438 +6337,0285861,15394 +6338,0317303,10708 +6339,0301414,22016 +6340,0308672,85472 +6341,0308878,22958 +6342,0250067,15850 +6343,0314871,251053 +6344,0237993,10989 +6345,0088915,1816 +6346,0090585,42017 +6347,0086946,17667 +6348,0086999,17464 +6349,0086998,15259 +6350,0092067,10515 +6351,0290664,45069 +6352,0099969,117269 +6353,0081433,21024 +6354,0057917,42792 +6355,0050631,43232 +6356,0050468,22201 +6357,0049314,11424 +6358,0045963,34857 +6365,0234215,604 +6366,0293113,55616 +6367,0309530,10720 +6368,0281724,51230 +6369,0206762,23423 +6370,0283900,1555 +6371,0347791,33875 +6373,0315327,310 +6374,0314786,5146 +6375,0304081,30055 +6376,0286516,12544 +6377,0266543,12 +6378,0317740,9654 +6379,0295700,9902 +6380,0342172,2260 +6381,0327201,61939 +6382,0332639,18385 +6383,0322259,584 +6384,0263671,39125 +6385,0298228,1088 +6386,0060748,5921 +6387,0101020,47423 +6388,0120001,49798 +6390,0050972,43239 +6391,0069291,32140 +6392,0066049,14676 +6393,0126735,78281 +6394,0066831,21717 +6395,0069895,29425 +6396,0056983,28503 +6397,0027552,59950 +6398,0067334,5920 +6400,0307197,51391 +6401,0066301,26593 +6402,0178022,50285 +6403,0063663,33564 +6404,0044000,43361 +6405,0043067,6646 +6406,0100827,29514 +6407,0061170,38720 +6408,0071143,147729 +6409,0044413,38732 +6410,0074281,15462 +6411,0054759,22386 +6412,0031225,43828 +6413,0079100,11145 +6414,0057093,32328 +6415,0093267,47715 +6416,0059358,29586 +6417,0104743,12629 +6419,0100200,111815 +6420,0050763,25381 +6421,0060884,38800 +6422,0059711,21027 +6423,0105481,37264 +6424,0102603,11890 +6425,0120142,36807 +6426,0048055,18721 +6427,0066279,37662 +6428,0065134,11916 +6429,0043137,14551 +6430,0086643,34759 +6431,0047860,51426 +6432,0056956,42986 +6433,0019760,26317 +6434,0037954,43490 +6435,0043887,40683 +6436,0108330,8092 +6437,0038279,18200 +6438,0057811,15925 +6439,0048966,32087 +6440,0101410,290 +6441,0064072,11463 +6442,0103791,2470 +6443,0020691,42640 +6445,0038417,44043 +6446,0054757,30462 +6447,0060355,1403 +6448,0059183,10243 +6449,0053841,42541 +6450,0050490,37103 +6451,0068718,46059 +6452,0051878,40085 +6453,0025456,47684 +6454,0100211,2263 +6455,0054127,6523 +6456,0064861,2527 +6457,0054310,18780 +6458,0060177,19728 +6459,0043461,26205 +6460,0057427,3009 +6461,0054428,6643 +6462,0065150,18972 +6463,0150338,53380 +6464,0119215,14817 +6465,0076240,41426 +6466,0102456,41791 +6467,0039739,49842 +6468,0105483,41670 +6469,0069834,30708 +6470,0065547,38765 +6471,0089009,29627 +6472,0097261,98984 +6473,0091164,36372 +6474,0117959,30529 +6475,0100301,24073 +6476,0102900,2071 +6477,0036377,43516 +6478,0068853,33638 +6479,0100670,57476 +6480,0062362,32489 +6481,0100924,48864 +6482,0329028,10152 +6483,0339034,31246 +6484,0329717,11375 +6485,0337711,20694 +6486,0280490,16311 +6487,0301390,24985 +6488,0293116,18300 +6489,0293452,55735 +6490,0298050,185465 +6491,0253335,210728 +6492,0308671,39088 +6493,0318283,17813 +6494,0302889,94996 +6495,0055972,42995 +6496,0118239,115665 +6497,0060814,4708 +6498,0067458,35068 +6499,0012532,42511 +6500,0070634,35669 +6501,0209368,49584 +6502,0289043,170 +6503,0305357,9471 +6504,0302309,12800 +6505,0106792,44562 +6506,0286635,9581 +6507,0175777,117179 +6508,0241223,15486 +6509,0071141,216 +6510,0106447,47676 +6511,0079368,45139 +6512,0057259,44736 +6513,0031602,18569 +6514,0056415,113739 +6515,0029808,52758 +6516,0048947,38171 +6517,0103747,61225 +6518,0099587,18886 +6519,0076059,24109 +6520,0045966,19957 +6521,0079510,42176 +6522,0058324,39231 +6523,0104926,18722 +6524,0054198,43039 +6525,0093660,40634 +6526,0101991,20645 +6527,0045125,33454 +6528,0066402,19753 +6529,0058621,48451 +6530,0074811,11482 +6531,0107146,70912 +6532,0069449,42492 +6533,0069495,6949 +6534,0286716,1927 +6535,0333780,10327 +6536,0165982,14411 +6537,0181852,296 +6538,0324133,302 +6539,0325980,22 +6540,0317887,46993 +6541,0311429,8698 +6542,0308476,554 +6543,0283387,61545 +6544,0291538,34840 +6545,0300015,17920 +6546,0251777,40947 +6547,0322659,32235 +6548,0172156,8961 +6549,0319524,17403 +6550,0274166,9486 +6551,0284850,20439 +6552,0301199,3472 +6553,0322725,35265 +6554,0280696,25921 +6555,0233418,24259 +6556,0316829,41453 +6557,0113533,68927 +6558,0101635,11894 +6559,0110364,20726 +6560,0100053,24558 +6561,0053084,12649 +6562,0057523,44916 +6563,0319829,24356 +6564,0325703,1996 +6565,0329575,4464 +6566,0338459,12279 +6567,0252299,9104 +6568,0342167,33339 +6569,0278487,47232 +6570,0314170,71714 +6571,0319769,54580 +6572,0286947,4613 +6573,0068240,12530 +6574,0101831,45096 +6575,0074564,21882 +6576,0071706,29805 +6577,0102202,24993 +6578,0058265,53021 +6579,0055256,430 +6580,0275915,123833 +6581,0066249,5185 +6582,0089901,10553 +6583,0094764,21512 +6584,0061177,21449 +6585,0070915,4984 +6586,0328828,8273 +6587,0299930,8046 +6588,0283883,50350 +6589,0369295,287811 +6590,0325352,48967 +6591,0318411,8094 +6592,0314630,26195 +6593,0322330,10330 +6594,0298126,125952 +6595,0257076,9257 +6596,0306734,9499 +6597,0310149,17180 +6598,0308508,15292 +6599,0054599,12491 +6600,0107492,41660 +6601,0090727,78041 +6602,0094793,27814 +6603,0039335,41206 +6604,0061132,33954 +6605,0073345,48364 +6606,0257019,71010 +6607,0041792,23395 +6608,0112628,47278 +6609,0058715,24192 +6610,0064437,10237 +6611,0045274,833 +6612,0103888,26755 +6613,0069946,42470 +6614,0099819,3101 +6615,0329101,6466 +6616,0338077,20210 +6617,0316356,2055 +6618,0286112,11770 +6619,0263757,14926 +6620,0305206,2771 +6621,0309326,1778 +6622,0280523,44408 +6623,0285879,54390 +6624,0313911,10923 +6625,0109369,17745 +6626,0106536,79888 +6627,0115865,114776 +6628,0087425,21989 +6629,0045888,18573 +6630,0051776,37451 +6631,0107504,41759 +6632,0086036,37227 +6633,0110891,48791 +6634,0093840,80047 +6635,0098160,41944 +6636,0090103,8992 +6637,0092085,35371 +6638,0086525,19053 +6639,0062467,11206 +6640,0108557,49762 +6641,0216625,30970 +6642,0102915,13154 +6643,0046438,18148 +6644,0091830,54898 +6645,0066434,636 +6646,0062430,3055 +6647,0303313,40920 +6648,0245837,54986 +6649,0054412,43048 +6650,0041546,11898 +6651,0280438,26225 +6652,0068768,14881 +6653,0085780,26198 +6654,0057215,35072 +6655,0050251,43226 +6656,0051381,44585 +6657,0045546,35073 +6658,0078721,9051 +6659,0100814,9362 +6660,0040725,19542 +6661,0218433,120683 +6662,0057413,936 +6663,0075066,12268 +6664,0088944,10999 +6665,0079073,33521 +6666,0068361,4593 +6667,0120472,34044 +6668,0235060,12276 +6669,0044741,3782 +6670,0287969,36629 +6671,0099040,2891 +6672,0309061,12722 +6673,0101025,41806 +6674,0311356,143795 +6675,0258242,38304 +6676,0104504,26246 +6677,0114176,124839 +6678,0099731,20815 +6679,0308808,19433 +6680,0264802,99006 +6681,0120584,48464 +6682,0150433,7504 +6683,0116308,513 +6684,0067445,6619 +6685,0266747,32316 +6686,0288045,10610 +6687,0270980,2830 +6688,0286476,15920 +6689,0357470,21413 +6690,0284491,38874 +6691,0243232,16405 +6692,0271211,33255 +6693,0293685,178675 +6694,0324158,99648 +6695,0301470,11351 +6696,0303785,333 +6697,0326806,30246 +6698,0317950,112961 +6699,0301684,22200 +6700,0301524,2722 +6701,0365960,27090 +6702,0325258,13778 +6703,0304711,9616 +6704,0264689,55015 +6705,0320244,1415 +6706,0260414,31094 +6707,0303816,11547 +6708,0325805,7270 +6709,0285823,1428 +6710,0246592,17906 +6711,0335266,153 +6712,0325761,66111 +6713,0291350,33320 +6714,0300620,15136 +6715,0103957,61054 +6716,0071385,4703 +6717,0177749,29507 +6718,0089222,27590 +6719,0087384,52734 +6720,0104647,14603 +6721,0103285,10617 +6722,0105839,10618 +6723,0108592,10619 +6724,0070510,11293 +6725,0078239,36759 +6726,0257215,38960 +6727,0063671,19383 +6728,0056632,53650 +6729,0086992,40775 +6730,0077369,9584 +6731,0088993,8408 +6732,0064418,14030 +6733,0283422,49685 +6734,0104850,2687 +6735,0079826,16323 +6736,0067727,39859 +6737,0293624,41846 +6738,0046366,74585 +6739,0042209,23325 +6740,0101455,16790 +6741,0075930,31579 +6742,0097557,40353 +6743,0034928,23033 +6744,0089730,19064 +6745,0100608,34564 +6746,0075261,25241 +6747,0053571,43041 +6748,0078908,28942 +6749,0029440,37025 +6750,0313792,10739 +6751,0331468,12767 +6752,0191133,22309 +6753,0327137,13156 +6754,0320691,277 +6755,0281686,9707 +6756,0303830,38244 +6757,0284034,24488 +6758,0289176,278813 +6759,0286594,20321 +6760,0310154,36791 +6761,0373389,61401 +6762,0334754,17614 +6763,0266489,7288 +6764,0327850,10159 +6765,0328589,10934 +6766,0204933,287816 +6767,0300069,54243 +6768,0309820,5653 +6769,0330602,321 +6770,0314412,20 +6771,0362511,18113 +6772,0318202,5168 +6773,0286244,9662 +6774,0086541,837 +6775,0284262,20303 +6776,0282674,19666 +6777,0055031,821 +6778,0100470,41834 +6779,0078199,37672 +6780,0103882,1358 +6781,0071688,2200 +6782,0097728,11475 +6783,0031885,776 +6784,0075244,40440 +6785,0047472,16563 +6786,0089424,11703 +6787,0074119,891 +6788,0109129,83714 +6789,0115561,12531 +6790,0267287,10881 +6791,0092603,11832 +6792,0120125,51300 +6793,0103786,11806 +6794,0106375,10438 +6795,0090735,36349 +6796,0101507,650 +6797,0101516,10337 +6798,0074256,8446 +6799,0101524,42570 +6800,0090859,9874 +6801,0255067,11477 +6802,0104006,37753 +6803,0087909,29161 +6804,0088967,21627 +6805,0112750,9501 +6806,0251433,49291 +6807,0085959,4543 +6808,0065207,11046 +6809,0088272,11707 +6810,0102945,7442 +6811,0110759,14425 +6812,0100514,6723 +6813,0059221,13343 +6814,0087062,16969 +6815,0089346,11338 +6816,0094138,13339 +6817,0100928,28761 +6818,0091251,25237 +6819,0102749,41780 +6820,0210070,9871 +6821,0079576,33258 +6822,0106350,71940 +6823,0105691,26850 +6824,0105291,70709 +6825,0062190,36855 +6826,0063591,20238 +6827,0110169,33783 +6828,0088318,163549 +6829,0104376,47898 +6830,0045205,19171 +6831,0215516,48345 +6832,0102768,11364 +6833,0163745,38135 +6834,0108569,55950 +6835,0082000,39916 +6836,0053593,31634 +6837,0031593,43739 +6838,0177068,45203 +6839,0311941,14874 +6840,0067217,32082 +6841,0101371,25269 +6842,0068732,29449 +6843,0083906,37943 +6844,0110722,33633 +6845,0099242,86763 +6846,0094169,78146 +6847,0108320,88641 +6848,0076271,30315 +6849,0066344,13765 +6850,0104695,12772 +6851,0104321,47866 +6852,0061809,18900 +6853,0092717,73265 +6854,0058962,17744 +6855,0216578,62124 +6856,0035575,3087 +6857,0107692,14282 +6858,0056291,11502 +6859,0033532,29451 +6860,0102460,21219 +6861,0284478,116094 +6862,0313443,2116 +6863,0332379,1584 +6864,0380275,28236 +6865,0314039,40945 +6866,0336910,19555 +6867,0340377,2056 +6868,0335563,4997 +6869,0340468,8439 +6870,0327056,322 +6871,0326900,21765 +6872,0317676,11059 +6873,0138524,11775 +6874,0266697,24 +6875,0342300,54973 +6876,0322289,10930 +6877,0339071,21059 +6878,0287364,49475 +6879,0313542,11329 +6880,0324216,9373 +6881,0311648,1550 +6882,0339579,5493 +6883,0325055,28200 +6884,0312549,10629 +6885,0199626,10944 +6886,0294357,9839 +6887,0316465,13920 +6888,0306047,4256 +6889,0328880,10009 +6890,0363589,1807 +6891,0251110,33343 +6892,0314676,30141 +6893,0064505,10536 +6894,0087464,14157 +6895,0338290,67809 +6896,0090015,42044 +6897,0219374,37922 +6898,0313670,1376 +6899,0092532,31397 +6900,0075765,50374 +6901,0102432,96171 +6902,0165832,20312 +6903,0074802,59809 +6905,0105480,135890 +6906,0090151,64945 +6907,0110044,2348 +6908,0050197,44591 +6909,0325655,10389 +6910,0071276,18979 +6911,0038661,31206 +6912,0034409,28658 +6913,0071519,3117 +6914,0119935,20684 +6915,0099250,27450 +6916,0056211,26643 +6917,0095916,62327 +6918,0048956,897 +6919,0067204,42522 +6920,0065531,11657 +6921,0075902,224 +6923,0035318,27117 +6924,0036348,50553 +6925,0036349,44383 +6926,0049777,78331 +6927,0308383,10922 +6928,0322023,43708 +6929,0261652,240177 +6930,0368745,51707 +6931,0339607,30349 +6932,0323944,13537 +6933,0271809,28446 +6934,0242653,605 +6935,0363510,33222 +6936,0319343,10719 +6937,0265803,266741 +6938,0379713,23995 +6939,0155722,1277 +6940,0337961,1836 +6941,0380473,292974 +6942,0314331,508 +6943,0330247,197563 +6944,0101862,11846 +6945,0373175,50314 +6946,0318155,10715 +6947,0311113,8619 +6948,0343121,21525 +6949,0321442,14892 +6950,0338188,12146 +6951,0312528,10588 +6952,0348836,4970 +6953,0315733,470 +6954,0338135,11042 +6955,0169624, +6956,0333764,44708 +6957,0307987,10147 +6958,0338094,10756 +6959,0300556,9562 +6960,0097839,36068 +6961,0104237,11012 +6962,0334029,279714 +6963,0293088,30068 +6964,0088987,40913 +6965,0312848,158413 +6966,0099365,9556 +6967,0037635,13581 +6968,0109575,1702 +6969,0085426,19184 +6970,0050307,24203 +6971,0101829,9065 +6972,0118125,44479 +6973,0104265,4823 +6974,0099615,10168 +6975,0119167,10234 +6976,0069341,38939 +6977,0102526,10952 +6978,0102943,14022 +6979,0086567,860 +6980,0056255,41521 +6981,0048452,48035 +6982,0043686,5000 +6983,0036969,22744 +6984,0027075,17831 +6985,0019254,780 +6986,0016641,31510 +6987,0010323,234 +6988,0009968,899 +6989,0085615,8289 +6990,0079240,11583 +6991,0087365,11002 +6992,0109951,6472 +6993,0091167,5143 +6994,0102004,11384 +6995,0065832,5227 +6996,0102034,8010 +6997,0104427,10410 +6998,0107148,47095 +6999,0104452,10407 +7000,0102070,9292 +7001,0077745,11850 +7002,0100151,48745 +7003,0102181,2297 +7004,0099938,951 +7005,0102216,10804 +7006,0104627,5765 +7007,0102266,9319 +7008,0070849,1643 +7009,0104756,2007 +7010,0101316,10995 +7011,0091495,8047 +7012,0100201,2612 +7013,0048424,3112 +7014,0107711,10413 +7015,0102598,2611 +7016,0093692,1825 +7017,0105104,10538 +7018,0100404,11092 +7019,0093793,18410 +7020,0102721,14904 +7021,0102729,19065 +7022,0266308,3176 +7023,0107156,9261 +7024,0073650,5336 +7025,0102443,23908 +7026,0094072,14671 +7027,0090022,11509 +7028,0100449,10729 +7029,0076590,29437 +7030,0105211,20763 +7031,0107927,2047 +7032,0100485,14249 +7033,0093936,10021 +7034,0150662,11634 +7035,0088194,14746 +7036,0090142,11824 +7037,0103030,8222 +7038,0210358,20067 +7039,0105585,12395 +7040,0090180,9846 +7041,0111477,23719 +7042,0090563,11986 +7043,0056663,1626 +7044,0100935,483 +7045,0100944,10166 +7046,0094332,6069 +7047,0090350,11018 +7048,0119807,11676 +7049,0024025,28293 +7050,0027630,28292 +7051,0059903,3681 +7052,0027948,43875 +7053,0026942,31798 +7054,0041594,43436 +7055,0028333,20325 +7056,0022286,17687 +7057,0026714,19075 +7058,0039566,41465 +7059,0037120,17641 +7060,0070239,12545 +7061,0031210,27972 +7062,0055798,898 +7063,0068182,2000 +7064,0038348,648 +7065,0004972,618 +7066,0107358,44162 +7067,0059229,19120 +7068,0054632,4024 +7069,0067372,11316 +7070,0040724,3089 +7071,0072417,29845 +7072,0031971,995 +7073,0058586,1594 +7074,0015163,32318 +7075,0049096,11839 +7076,0062765,916 +7077,0011841,31509 +7078,0030287,1976 +7079,0031455,31685 +7080,0024034,3062 +7081,0024166,34456 +7082,0056575,12708 +7083,0090110,42045 +7084,0069097,11610 +7085,0058571,4939 +7086,0030637,25016 +7087,0087892,15927 +7088,0053146,40423 +7089,0071129,7857 +7090,0299977,79 +7091,0023027,13912 +7092,0026071,70881 +7093,0071524,987 +7094,0238627,65869 +7095,0076327,37749 +7096,0307385,30140 +7097,0240149,33302 +7098,0042949,46932 +7099,0087544,81 +7100,0104027,70423 +7101,0101745,11821 +7102,0092925,10023 +7103,0100087,51036 +7104,0078723,11519 +7105,0193854,72087 +7106,0074972,42238 +7107,0077578,15659 +7108,0108656,18857 +7109,0114086,33517 +7110,0140384,27425 +7111,0066319,38953 +7112,0061328,74544 +7113,0101529,41785 +7114,0059043,42740 +7115,0073582,20126 +7116,0046911,827 +7117,0107387,11811 +7118,0093207,20043 +7119,0099316,16814 +7120,0326820,4368 +7121,0041090,25431 +7122,0060908,17685 +7123,0102511,2742 +7124,0214730,22010 +7125,0156096,51145 +7126,0074749,32040 +7127,0102818,48129 +7128,0028358,3596 +7129,0098153,120637 +7130,0059084,24134 +7131,0053320,18904 +7132,0026778,37719 +7133,0085935,47364 +7134,0087280,9063 +7135,0054389,1818 +7136,0062695,255 +7137,0318374,10744 +7138,0315850,83505 +7139,0298845,10511 +7140,0354696,180399 +7141,0342804,22289 +7142,0322589,10028 +7143,0325710,616 +7144,0329094,288953 +7145,0348862, +7146,0343172,96393 +7147,0319061,587 +7148,0337592,21542 +7149,0337741,6964 +7150,0338466,1792 +7151,0335119,3635 +7152,0340376,41488 +7153,0167260,122 +7154,0304415,11820 +7155,0337909,8696 +7156,0317910,12698 +7157,0317640,19187 +7158,0315983,11093 +7159,0304857,47952 +7160,0340855,504 +7161,0349205,11007 +7162,0159365,2289 +7163,0338337,9620 +7164,0316396,10601 +7165,0335013,52036 +7166,0318850,42418 +7167,0304229,13433 +7168,0287963,35712 +7169,0360139,14844 +7170,0332712,26710 +7171,0364930,37088 +7172,0346094,31026 +7173,0343135,5966 +7174,0350194,24034 +7175,0329691,10718 +7176,0371280,40427 +7177,0368913,14757 +7178,0071577,11034 +7179,0104181,25095 +7180,0053133,26983 +7181,0059712,30080 +7182,0060636,52867 +7183,0066449,42599 +7184,0061089,65012 +7185,0093828,44801 +7186,0101625,27465 +7187,0092646,83726 +7188,0094819,24782 +7189,0109376,31395 +7190,0065911,131313 +7191,0103827,34151 +7192,0107750,15797 +7193,0098987,9548 +7194,0051429,1937 +7195,0043503,26712 +7196,0042727,1882 +7197,0073796,70627 +7198,0093737,17258 +7199,0323633,34681 +7200,0047956,118910 +7201,0310924,6277 +7202,0222812,11429 +7203,0162958,47072 +7204,0061758,33642 +7205,0073906,14815 +7206,0050706,427 +7207,0054469,43049 +7208,0033553,3022 +7209,0046487,778 +7210,0038762,3088 +7211,0043915,23152 +7212,0041498,23567 +7213,0061581,102057 +7214,0050599,52367 +7215,0037382,22584 +7216,0033717,27725 +7217,0039302,16227 +7218,0036244,980 +7219,0033149,16933 +7220,0087718,42094 +7221,0022268,26884 +7222,0028346,37833 +7223,0042369,18995 +7224,0040185,43759 +7225,0076578,5205 +7226,0292610,2017 +7227,0061122,38606 +7228,0104009,14239 +7229,0107594,55448 +7230,0060980,21779 +7231,0063800,71189 +7232,0084058,67794 +7233,0091513,73515 +7234,0047528,405 +7235,0296042,9696 +7236,0072730,4917 +7237,0074777,37774 +7238,0052080,5055 +7239,0064639,40140 +7240,0089420,42040 +7241,0050585,29933 +7242,0097028,35888 +7243,0006864,3059 +7244,0054673,22727 +7245,0054393,28586 +7246,0049922,56157 +7247,0062803,11708 +7248,0290879,27329 +7249,0067589,42514 +7250,0066193,20444 +7251,0105810,17736 +7252,0056580,114046 +7253,0018033,82283 +7254,0289879,1954 +7255,0335559,13476 +7256,0379557,11194 +7257,0315824,12634 +7258,0314498,13505 +7259,0365957,14114 +7260,0345551,15708 +7261,0337579,21301 +7262,0337917,20483 +7263,0349825,14292 +7264,0234940,44539 +7265,0309987,1278 +7266,0307109,18841 +7267,0108560,25925 +7268,0100065,32035 +7269,0101998,74395 +7270,0111218,19361 +7271,0091310,81824 +7272,0069332,21968 +7273,0076543,29493 +7274,0073282,29473 +7275,0072351,29464 +7276,0129136,37900 +7277,0106185,91390 +7278,0166158,33557 +7279,0073901,7008 +7280,0068284,30566 +7281,0070656,42466 +7282,0245943,76176 +7283,0088213,18446 +7284,0105636,22004 +7285,0328538,11023 +7286,0105411,47802 +7287,0075161,92298 +7288,0013140,35227 +7289,0070694,29852 +7290,0039825,23001 +7291,0110867,51049 +7292,0086955,11221 +7293,0343660,1824 +7294,0361925,16784 +7295,0233230,44674 +7296,0293146,292090 +7297,0323872,11083 +7298,0304391,54045 +7299,0329388,337 +7300,0067927,11951 +7301,0042619,43376 +7302,0015400,28963 +7303,0052738,2576 +7304,0074121,22561 +7305,0090738,19345 +7306,0221344,14430 +7307,0089153,12775 +7308,0089421,9838 +7309,0016654,50075 +7310,0091828,2099 +7311,0031385,42852 +7312,0060420,40454 +7313,0099575,6470 +7314,0301777,20032 +7315,0312329,8842 +7316,0361467,11132 +7317,0356150,9352 +7318,0335345,615 +7319,0331953,11217 +7320,0338096,10677 +7321,0315297,13572 +7322,0349079,30735 +7323,0301357,338 +7324,0317648,2023 +7325,0335438,9384 +7326,0258816,25935 +7327,0060827,797 +7328,0064793,42602 +7329,0056671,60792 +7330,0041967,70113 +7331,0076686,47474 +7332,0050397,56188 +7333,0035753,29084 +7334,0074554,1723 +7335,0046187,25955 +7336,0064118,41876 +7337,0270197,62190 +7338,0049674,43323 +7339,0082964,67022 +7340,0089393,24548 +7341,0060232,31602 +7342,0095454,57744 +7343,0210389,37044 +7344,0056704,42989 +7345,0358349,17047 +7346,0265208,10591 +7347,0363988,1586 +7348,0360009,11169 +7349,0317842,49689 +7350,0371683,266687 +7351,0303348,66660 +7352,0329767,156 +7353,0109447,2778 +7354,0107473,10433 +7355,0118172,47168 +7356,0082810,58995 +7357,0050839,43236 +7358,0318049,142168 +7359,0094288,40752 +7360,0363547,924 +7361,0338013,38 +7362,0364045,11081 +7363,0355683,4377 +7364,0332658,16941 +7365,0351461,1720 +7366,0300051,9541 +7367,0335245,5516 +7368,0354766,20304 +7369,0331632,11024 +7370,0305583,53734 +7371,0276919,553 +7372,0277941,10544 +7373,0167190,1487 +7374,0299172,13700 +7375,0337697,11137 +7376,0351977,11358 +7377,0301976,13573 +7378,0359517,19084 +7379,0318974,10733 +7380,0327679,14442 +7381,0327247,2122 +7382,0326977,25300 +7383,0323939,14576 +7384,0336264,13432 +7385,0315110,26636 +7386,0049833,6844 +7387,0077402,923 +7388,0069824,2587 +7389,0060782,3591 +7390,0307351,28026 +7391,0074923,26176 +7392,0062708,41857 +7393,0090036,78364 +7394,0059797,10338 +7395,0042327,33839 +7396,0070644,133919 +7397,0058930,95548 +7398,0044410,50549 +7399,0066130,38978 +7400,0096921,92331 +7401,0104783,111883 +7402,0074540,42245 +7403,0097371,68347 +7404,0092569,89488 +7405,0045094,34082 +7406,0031322,22999 +7407,0041098,20278 +7408,0044762,18698 +7409,0082516,47201 +7410,0086058,12239 +7411,0093582,4365 +7412,0077304,86182 +7413,0342508,45862 +7414,0079219,65066 +7415,0076301,42228 +7416,0073766,16561 +7417,0104550,54655 +7418,0259182,70779 +7419,0088680,10843 +7420,0058725,2098 +7422,0070061,65332 +7423,0179218,34303 +7437,0345074,15673 +7438,0378194,393 +7439,0330793,7220 +7440,0380615,33823 +7441,0358590,163676 +7442,0289635,237 +7443,0308488,126117 +7444,0337563,10096 +7445,0328107,9509 +7446,0398872,19016 +7447,0333847,60645 +7448,0326856,10710 +7449,0335121,11058 +7450,0323033,11141 +7451,0377092,10625 +7452,0277895,54807 +7453,0363282,11025 +7454,0338526,7131 +7455,0339419,26899 +7456,0296915,30125 +7457,0349169,16428 +7458,0332452,652 +7459,0293007,8440 +7460,0379217,883 +7461,0329111,38018 +7471,0109529,96461 +7474,0065488,34377 +7475,0330802,20375 +7477,0160184,10375 +7478,0094089,42015 +7479,0036515,68440 +7480,0086510,12503 +7481,0089092,11864 +7482,0070034,9461 +7483,0114651,57811 +7484,0065780,132 +7485,0053134,28276 +7486,0118845,18329 +7487,0099762,17993 +7488,0099121,37447 +7489,0100557,4339 +7490,0085370,42108 +7491,0060736,18513 +7492,0077914,26517 +7493,0051077,28285 +7502,0185906,191903 +7505,0108906,22137 +7521,0188055,5247 +7523,0099409,31676 +7528,0140447,49622 +7537,0051561,238952 +7541,0214388,10035 +7560,0058083,502 +7561,0098061,41965 +7562,0118996,10347 +7563,0251052,1373 +7564,0058279,30959 +7565,0045609,43341 +7566,0088650,20561 +7567,0282410,13055 +7568,0253016, +7569,0062512,667 +7570,0086034,700 +7571,0045564,21594 +7572,0243664,26976 +7573,0086006,36670 +7574,0113725,18872 +7577,0073822,44864 +7578,0031647,31993 +7579,0032943,43818 +7580,0049474,28290 +7581,0041386,24650 +7582,0036230,55086 +7583,0034890,43525 +7584,0035567,20640 +7585,0048673,50363 +7586,0076734,633 +7587,0062229,5511 +7613,0103251,41003 +7614,0048445,13936 +7615,0089015,294 +7616,0086984,11507 +7617,0073636,17538 +7618,0103939,10435 +7619,0056241,1162 +7620,0102467,34328 +7621,0211718,47108 +7622,0166707,47140 +7623,0180303,40930 +7624,0105327,14684 +7625,0138467,58467 +7626,0103016,10261 +7627,0119434,163869 +7636,0105217,13937 +7637,0116650,25355 +7638,0033436,29601 +7639,0160574,66115 +7644,0166169,118617 +7645,0099857,23981 +7646,0259153,14980 +7647,0105017,26670 +7648,0144688,44047 +7649,0120711,10940 +7650,0063285,31965 +7657,0275773,5842 +7669,0112130,164721 +7675,0036696,19463 +7697,0050861,24012 +7698,0078966,988 +7699,0126627,125103 +7700,0046268,204 +7701,0100050,9356 +7702,0037536,32430 +7703,0076941,42231 +7704,0090927,16113 +7705,0045012,33575 +7706,0020640,13913 +7707,0102011,17956 +7708,0061391,18209 +7713,0034587,25508 +7714,0061439,18978 +7716,0087635,27171 +7719,0056943,29486 +7720,0073012,12310 +7723,0079227,42205 +7724,0094033,27786 +7725,0110725,9624 +7726,0169639,95514 +7727,0087951,37296 +7728,0038854,25736 +7730,0107529,25389 +7738,0155713,44807 +7739,0164221,5248 +7742,0094713,52794 +7743,0089114,9872 +7745,0107617,19552 +7748,0059592,2786 +7749,0062480,8075 +7750,0112654,94771 +7751,0033105,50271 +7752,0177215,38274 +7753,0207805,26133 +7754,0108630,68981 +7756,0029850,10235 +7757,0057197,11533 +7758,0119828,2817 +7759,0086022,1394 +7761,0058458,1719 +7762,0080297,140207 +7763,0120522,781 +7764,0079082,13553 +7765,0100347,183252 +7766,0050613,3777 +7767,0346336,11659 +7768,0104377,24065 +7769,0284880,39907 +7770,0100813,26612 +7771,0057831,10604 +7772,0039066,44098 +7773,0288439,16876 +7774,0064708,37437 +7775,0223384,141003 +7778,0258967,14782 +7781,0096321,77780 +7782,0108171,9545 +7783,0166287,53117 +7784,0107009,41651 +7785,0259072,29270 +7786,0187859,28030 +7787,0048729,16514 +7789,0328802,1926 +7790,0080461,31112 +7791,0099850,11060 +7792,0071970,17365 +7802,0080120,11474 +7808,0064645,63888 +7809,0162625,49320 +7810,0146455,10916 +7811,0146247,10921 +7812,0121804,10941 +7813,0077532,42204 +7814,0066549,33157 +7815,0092117,24798 +7816,0226225,277073 +7817,0070948,4923 +7818,0054279,36741 +7820,0053976,11656 +7821,0053935,16284 +7822,0046085,25009 +7823,0206681,91226 +7824,0232611,171229 +7825,0114846,45926 +7826,0039808,40092 +7827,0284978,10133 +7828,0049652,82838 +7831,0031047,14589 +7832,0037365,14594 +7833,0034172,14590 +7834,0027260,14588 +7835,0039853,14595 +7836,0066580,9459 +7837,0094596,465 +7838,0071663,86600 +7839,0033852,20644 +7840,0031398,24965 +7841,0287839,192936 +7842,0142032,876 +7843,0258760,1583 +7844,0106936,17653 +7845,0114720,11069 +7846,0259685,10829 +7847,0089789,19425 +7850,0024083,108055 +7872,0097424,86959 +7878,0094048,9698 +7879,0300274,57946 +7880,0295743,45044 +7881,0023694,26860 +7882,0060841,29049 +7883,0036027,27130 +7884,0102035,8468 +7885,0066518,31952 +7886,0065580,39043 +7887,0068364,54396 +7888,0061791,22682 +7889,0070518,11577 +7890,0051849,42402 +7891,0058700,21159 +7892,0073756,40810 +7893,0073623,40812 +7894,0067140,336 +7895,0071249,11942 +7896,0056412,36206 +7897,0065446,23330 +7898,0068786,5927 +7899,0072913,49636 +7900,0065738,3075 +7901,0057128,30137 +7912,0192023,5521 +7913,0057078,27636 +7914,0017668,222 +7915,0170544,10686 +7916,0052847,43096 +7917,0063808,42688 +7918,0102116,25598 +7919,0040979,25858 +7920,0075936,14262 +7921,0072869,38701 +7922,0068341,33357 +7923,0076637,21948 +7924,0041699,30368 +7925,0051808,1059 +7926,0057565,12493 +7928,0087193,42090 +7930,0105121,13122 +7931,0104954,55730 +7932,0235327,14273 +7933,0038777,26940 +7934,0086637,11030 +7935,0074147,29454 +7936,0063611,26372 +7937,0057611,11506 +7938,0057358,29455 +7939,0055499,11602 +7940,0051365,29453 +7941,0048641,11700 +7942,0046345,47735 +7943,0038669,14638 +7944,0058404,14703 +7945,0055998,35806 +7946,0062185,3547 +7947,0088322,41089 +7948,0080140,42179 +7949,0073918,28415 +7950,0118705,107499 +7951,0100260,20481 +7952,0075651,5481 +7953,0071275,5482 +7954,0069048,5485 +7958,0065481,31581 +7959,0062395,22694 +7976,0209077,7090 +7979,0064689,42632 +7980,0075784,5902 +7981,0338564,10775 +7982,0365376,4552 +7983,0087003,12762 +7984,0091083,14510 +7985,0129634,101363 +7986,0102800,15618 +7987,0092906,24341 +7988,0120199,10690 +7989,0095756,40028 +7990,0079813,26326 +7991,0072856,13282 +7992,0071338,27658 +7993,0052655,22642 +7994,0056368,29235 +7995,0061189,42725 +8003,0038343,24111 +8004,0059792,17921 +8007,0105191,22627 +8008,0046807,18283 +8009,0051911,33731 +8010,0105159,13823 +8011,0343168,14108 +8012,0199683,4291 +8013,0282593,20718 +8014,0374546,113 +8015,0064806,28476 +8016,0068638,5916 +8017,0066730,26234 +8019,0308379,12205 +8024,0108327,27804 +8025,0124207,46187 +8033,0060522,3001 +8035,0117658,39434 +8037,0116015,105130 +8038,0013372,166472 +8039,0065051,11574 +8040,0103872,32450 +8041,0105103,62383 +8042,0070379,203 +8043,0107247,38749 +8044,0023042,29740 +8045,0093137,10652 +8055,0122143,34288 +8056,0060490,26268 +8057,0056541,33632 +8062,0285728,25853 +8063,0102631,68430 +8068,0055910,43001 +8069,0077360,42201 +8070,0304126,316 +8092,0099612,3072 +8093,0192657,10355 +8094,0047849,14554 +8095,0157913,87677 +8117,0180748,250 +8118,0099399,19086 +8119,0090888,15392 +8120,0101252,43267 +8121,0366532,41277 +8122,0088925,108059 +8123,0093913,42013 +8124,0104697,54715 +8125,0018455,631 +8126,0057495,25504 +8127,0280674,23855 +8128,0092593,1786 +8129,0181810,51182 +8130,0189553,45042 +8131,0243508,210937 +8132,0104346,16219 +8133,0328844,15824 +8134,0353014,14258 +8136,0049363,48385 +8137,0054462,27545 +8138,0053611,22718 +8139,0071408,39844 +8140,0045659,16914 +8141,0056504,43011 +8142,0221111,11315 +8143,0048308,35987 +8147,0062794,29146 +8148,0086489,36751 +8149,0054642,28758 +8153,0049456,29592 +8154,0053779,439 +8157,0193253,823 +8158,0102820,20289 +8167,0026174,16905 +8168,0087622,11417 +8169,0092494,11548 +8183,0085478,38291 +8187,0043880,41204 +8188,0047445,20532 +8189,0054494,2546 +8190,0057840,42791 +8191,0064030,22522 +8194,0048973,40478 +8195,0053619,5165 +8196,0065466,5722 +8197,0052893,5544 +8198,0054371,19128 +8199,0046478,14696 +8201,0101373,51515 +8202,0044487,56167 +8203,0060481,4781 +8206,0024368,32652 +8207,0069947,4909 +8208,0038873,56135 +8220,0028478,27115 +8221,0111666,38348 +8222,0069050,35280 +8224,0188404,21375 +8225,0100258,19185 +8227,0031252,73194 +8228,0022111,28257 +8232,0032617,20643 +8235,0014429,22596 +8236,0049949,36786 +8237,0037449,28916 +8238,0067350,27459 +8239,0055601,4497 +8240,0108366,33560 +8241,0119630,25224 +8252,0061209,42728 +8253,0079833,15371 +8254,0106307,11044 +8255,0295362,39983 +8256,0024481,31526 +8257,0041163,31623 +8258,0212879,27601 +8259,0077696,16214 +8260,0122082,5071 +8261,0075612,41662 +8262,0027700,95015 +8263,0041944,33738 +8264,0073076,17346 +8265,0068615,18274 +8266,0087957,13763 +8267,0063218,67217 +8268,0107843,10498 +8269,0100604,24731 +8270,0100112,11796 +8272,0065593,31675 +8273,0104545,4507 +8275,0017765,34847 +8290,0073396,32303 +8291,0061075,4879 +8292,0043614,24774 +8293,0105706,41779 +8294,0049815,61048 +8295,0023238,1994 +8302,0021890,42814 +8327,0330229,870 +8329,0043041,96255 +8330,0054152,25495 +8331,0033874,26319 +8332,0067805,45938 +8334,0068421,15573 +8335,0029192,41059 +8336,0035019,39871 +8337,0046816,10178 +8338,0039192,16391 +8339,0055884,42997 +8340,0079116,10734 +8341,0040662,10949 +8359,0083090,258236 +8360,0298148,809 +8361,0319262,435 +8362,0350028,4599 +8363,0367085,12657 +8364,0367790,28219 +8365,0323298,59210 +8366,0332375,13193 +8367,0324197,24190 +8368,0304141,673 +8369,0297284,16617 +8370,0363226,246 +8371,0296572,2789 +8372,0356634,8920 +8373,0327162,9890 +8374,0363235,26886 +8375,0391225,26254 +8376,0374900,8193 +8377,0103976,47821 +8378,0101746,26142 +8379,0085461,42122 +8380,0106877,65137 +8381,0034746,27017 +8382,0093175,35151 +8383,0314431,21544 +8384,0030386,43846 +8385,0055100,40894 +8387,0110857,11546 +8388,0064893,59427 +8391,0077235,18387 +8392,0089160,71125 +8393,0087337,34748 +8394,0146879,132725 +8395,0070291,26331 +8397,0105150,41774 +8398,0063642,52959 +8399,0045317,24004 +8400,0094331,46976 +8401,0031022,17481 +8402,0099166,52560 +8403,0049301,42658 +8404,0031448,27118 +8405,0063759,18333 +8407,0066090,42345 +8410,0047542,18398 +8411,0120423,54800 +8420,0039725,20849 +8421,0168080,57544 +8422,0034946,53779 +8423,0018051,16661 +8424,0020827,80708 +8425,0100129,76516 +8426,0093871,33441 +8427,0078766,47819 +8444,0092752,21793 +8446,0041841,18712 +8447,0047577,831 +8448,0085354,10484 +8450,0027300,37658 +8451,0047885,26516 +8452,0077942,110598 +8453,0139388,44388 +8454,0170259,10573 +8455,0119561,113290 +8456,0065889,26451 +8457,0098528,111605 +8458,0039040,54568 +8459,0041452,28571 +8460,0038116,27686 +8461,0036777,123665 +8462,0046963,43336 +8463,0040495,62000 +8464,0390521,9372 +8465,0033774,41495 +8469,0037135,52362 +8477,0056119,662 +8478,0095037,41799 +8480,0018054,49633 +8481,0032851,43805 +8482,0037988,16559 +8483,0061420,44695 +8484,0053114,31217 +8485,0196069,8341 +8486,0031067,36488 +8487,0054188,19414 +8488,0070689,60595 +8491,0042041,15794 +8492,0044008,13188 +8493,0100133,12651 +8494,0059037,886 +8495,0204137,9791 +8496,0067549,27554 +8499,0078111,26973 +8500,0071565,38582 +8501,0091209,9542 +8502,0044030,17820 +8503,0044760,26175 +8504,0115738,31146 +8505,0120408,20506 +8506,0289944,37696 +8507,0022913,136 +8511,0008133,47653 +8512,0075222,10970 +8516,0038733,28162 +8518,0020641,42812 +8519,0071198,28159 +8520,0104073,20676 +8521,0022835,3019 +8522,0032828,29353 +8524,0047086,17761 +8525,0061135,20277 +8526,0327437,10204 +8527,0319531,3515 +8528,0364725,9472 +8529,0362227,594 +8530,0377752,8981 +8531,0381707,12153 +8532,0348593,1944 +8533,0332280,11036 +8534,0338512,1997 +8535,0352277,15237 +8536,0331525, +8537,0297753,11572 +8540,0037522,19096 +8541,0096953,72096 +8542,0028772,11939 +8543,0043547,47555 +8544,0069031,24236 +8545,0220343,80218 +8571,0064100,26520 +8572,0026641,43897 +8573,0366943,29456 +8574,0272045,21386 +8575,0243135,24908 +8576,0339230,9256 +8577,0342213,25783 +8578,0339840,8991 +8579,0086251,44691 +8580,0099851,23378 +8581,0168122,3293 +8582,0104810,36947 +8583,0037604,54028 +8584,0037865,17645 +8585,0110944,10448 +8586,0035272,57684 +8587,0230512,61487 +8588,0250468,14365 +8589,0098437,29383 +8591,0087910,10606 +8592,0057681,42988 +8593,0104573,16136 +8594,0165086,58669 +8595,0061678,42407 +8596,0078163,6081 +8597,0282552,12577 +8598,0281924,36561 +8599,0299854,49814 +8600,0029870,13696 +8601,0024803,44494 +8602,0053270,15484 +8603,0097095,36672 +8604,0152930,2330 +8605,0295721,2334 +8606,0052100,64204 +8607,0388473,13398 +8608,0064106,2912 +8609,0014341,701 +8610,0086873,10631 +8611,0039370,43466 +8612,0036098,2202 +8613,0040884,76076 +8614,0093693,10780 +8615,0023194,3484 +8616,0045586,19590 +8617,0053622,23724 +8618,0047136,26596 +8619,0111205,44925 +8620,0056732,29264 +8621,0238321,33994 +8622,0361596,1777 +8623,0093886,11584 +8624,0309614,9901 +8625,0342956,202475 +8626,0059125,26811 +8627,0357567,38631 +8628,0114371,54022 +8629,0167059,23522 +8630,0120848,207625 +8631,0073092,22094 +8632,0217788,161080 +8633,0087597,11884 +8634,0088224,21871 +8635,0078437,30876 +8636,0316654,558 +8637,0381006,48732 +8638,0381681,80 +8639,0331952,10742 +8640,0349683,9477 +8641,0357413,8699 +8642,0368975,9893 +8643,0356470,11247 +8644,0343818,2048 +8645,0390221,436 +8646,0043469,61391 +8647,0055992,18643 +8648,0158030,67297 +8649,0077629,31948 +8650,0056196,43004 +8651,0068909,45793 +8652,0064728,46495 +8653,0073559,45874 +8654,0047365,65994 +8655,0089945,19014 +8656,0095468,10754 +8657,0051087,30054 +8658,0101004,36630 +8659,0299594,39770 +8660,0072021,36627 +8661,0056085,11897 +8662,0040491,43443 +8663,0358569,54300 +8664,0074916,58925 +8665,0372183,2502 +8666,0327554,314 +8667,0359423,18923 +8668,0125766,146373 +8669,0075268,5228 +8670,0023563,12206 +8671,0245157,16539 +8672,0050171,75046 +8673,0035763,74012 +8674,0236157,26126 +8675,0050356,15876 +8676,0113074,26300 +8677,0032475,68064 +8678,0064395,12625 +8679,0051750,45520 +8680,0090197,46767 +8681,0071737,55848 +8682,0065969,42525 +8683,0068897,43417 +8684,0049902,15244 +8685,0047216,62395 +8686,0059470,42737 +8687,0054240,47615 +8688,0063592,39209 +8689,0100602,20876 +8690,0069280,24559 +8691,0351770,78208 +8692,0035530,43786 +8693,0045323,72613 +8694,0035583,43787 +8695,0039169,27437 +8696,0069822,40374 +8697,0311072,20316 +8698,0099292,41925 +8699,0219636,259389 +8700,0035799,22871 +8701,0112895,37019 +8702,0109665,18190 +8703,0299873,71786 +8704,0097373,42347 +8705,0099623,39140 +8706,0076111,69903 +8707,0107045,219345 +8708,0260695,41890 +8709,0097530,27307 +8710,0104812,36709 +8711,0040613,32294 +8712,0029284,41463 +8713,0093744,19051 +8714,0038776,43485 +8715,0052002,51997 +8716,0028108,43885 +8717,0111216,112969 +8718,0040806,62694 +8719,0035369,43785 +8720,0103007,53287 +8721,0092042,29584 +8722,0086494,32644 +8723,0293191,89482 +8724,0057091,1040 +8725,0064381,42604 +8726,0062153,24214 +8727,0072848,5122 +8728,0068424,42469 +8729,0088315,119623 +8730,0243609,1783 +8731,0044926,10910 +8732,0092637,17238 +8733,0280990,22156 +8734,0041604,26814 +8735,0051724,43116 +8736,0081291,39269 +8737,0115976,99859 +8738,0055572,31522 +8739,0056215,47796 +8740,0050330,26893 +8741,0107999,69035 +8742,0087795,73621 +8743,0090729,22976 +8744,0042447,55441 +8745,0054483,45608 +8746,0328031,21619 +8747,0118025,9680 +8748,0057171,42801 +8749,0101428,12627 +8750,0083611,86404 +8751,0042530,18671 +8752,0041859,17218 +8753,0346091,41316 +8754,0064840,5179 +8755,0173772,53198 +8756,0079639,65156 +8757,0066016,42593 +8758,0067314,76002 +8759,0054944,64868 +8760,0100613,52741 +8761,0057579,15081 +8762,0074968,21147 +8763,0063389,64877 +8764,0118030,147169 +8765,0035432,16703 +8766,0038360,20298 +8767,0040160,19974 +8768,0041268,22112 +8769,0079152,4201 +8770,0082346,39868 +8771,0039017,20408 +8772,0059749,13580 +8773,0035317,18706 +8774,0038259,34327 +8775,0055871,43013 +8776,0108435,38505 +8777,0098209,41940 +8778,0038494,20417 +8779,0310778,14652 +8780,0064045,69526 +8781,0368008,14462 +8782,0167456,14623 +8783,0368447,6947 +8784,0333766,401 +8785,0043313,50247 +8786,0030643,46326 +8787,0061094,35780 +8788,0063694,25361 +8789,0064137,45522 +8790,0286921,23750 +8791,0115665,45509 +8792,0323465,44289 +8793,0250638,25536 +8794,0076446,38837 +8795,0275083,23305 +8796,0060438,17768 +8797,0064921,27375 +8798,0369339,1538 +8799,0361841,14846 +8800,0345061,2577 +8801,0104503,52936 +8802,0053351,46884 +8803,0309291,33333 +8804,0096336,41975 +8805,0262246,16606 +8806,0093505,60760 +8807,0366551,11282 +8808,0368933,11130 +8809,0337960,14389 +8810,0370263,395 +8811,0403703,11052 +8812,0291392,60015 +8813,0361309,23601 +8814,0364751,10762 +8815,0204313,11026 +8816,0063634,18693 +8817,0065125,45598 +8818,0057191,8745 +8819,0061595,45335 +8820,0061015,18690 +8821,0059255,7506 +8822,0080062,65596 +8823,0086370,36912 +8824,0056093,46081 +8825,0092744,40087 +8826,0220726,46831 +8827,0083652,20120 +8828,0057997,22543 +8829,0315273,44415 +8830,0366174,11237 +8831,0324127,8080 +8832,0374330,14797 +8833,0241025,11632 +8834,0380277,18475 +8835,0338325,15644 +8836,0324554,11208 +8837,0283077,24079 +8838,0071115,16153 +8839,0113762,13559 +8840,0063803,42694 +8841,0362129,32298 +8842,0105108,66566 +8843,0110518,124029 +8844,0078763,42164 +8845,0086961,124 +8846,0339147,29979 +8847,0099691,41762 +8848,0046521,12548 +8849,0092133,33345 +8850,0057063,19893 +8851,0073722,42264 +8852,0059399,11387 +8853,0081528,104659 +8854,0093624,24924 +8855,0090327,17994 +8856,0079822,75759 +8857,0058294,60437 +8858,0080380,49069 +8859,0270846,31117 +8860,0337921,9759 +8861,0318627,1577 +8862,0362526,14198 +8863,0389988,288952 +8864,0339412,16232 +8865,0346156,5137 +8866,0360201,11823 +8867,0348529,2003 +8868,0338097,18804 +8869,0361620,13969 +8870,0356618,10145 +8871,0357054,26486 +8872,0365125,13702 +8873,0318462,1653 +8874,0365748,747 +8875,0044509,84214 +8876,0052631,84655 +8877,0033029,23627 +8878,0101591,26230 +8879,0071877,4176 +8880,0089560,11177 +8881,0029852,43839 +8882,0062755,26690 +8883,0081031,35101 +8884,0089543,10905 +8885,0076683,18196 +8886,0070622,70345 +8887,0105811,88174 +8888,0251370,132422 +8889,0079450,42215 +8890,0052549,43105 +8891,0107090,71140 +8892,0103773,27816 +8893,0099108,27815 +8894,0076504,12707 +8895,0317052,43657 +8896,0051756,43117 +8897,0067881,47446 +8898,0044386,54979 +8899,0079271,42172 +8900,0066550,42600 +8901,0087268,47825 +8902,0072750,62697 +8903,0057569,31655 +8904,0113449,27498 +8905,0103594,1492 +8906,0078935,8689 +8907,0307453,10555 +8908,0349710,11128 +8909,0363475,22842 +8910,0356721,1599 +8911,0361696,14024 +8912,0316732,11045 +8913,0384810,15503 +8914,0390384,14337 +8915,0368658,26108 +8916,0358135,4380 +8917,0372588,3989 +8918,0349416,16358 +8919,0380609,25313 +8920,0046874,2438 +8921,0048563,65550 +8922,0092972,29445 +8923,0080009,11121 +8924,0077714,55457 +8925,0324619,101887 +8926,0078975,23739 +8927,0074279,21241 +8928,0061655,3053 +8929,0066834,28356 +8930,0354575,12456 +8931,0342143,55047 +8932,0071675,28153 +8933,0090985,18499 +8934,0103783,36616 +8935,0101301,13644 +8936,0098596,41936 +8937,0390022,13416 +8938,0390538,1435 +8939,0364343,11099 +8940,0382561,167177 +8941,0355954,12483 +8942,0362174,184530 +8943,0340012,18701 +8944,0329030,2319 +8945,0286218,110351 +8946,0252028,15566 +8947,0391198,1970 +8948,0375173,8849 +8949,0375063,9675 +8950,0361862,4553 +8951,0383694,11109 +8952,0365183,48678 +8953,0360025,202587 +8954,0396705,126148 +8955,0360130,16131 +8956,0375735,9391 +8957,0387564,176 +8958,0350258,1677 +8959,0337876,10740 +8960,0430745,66641 +8961,0317705,9806 +8962,0428518,19614 +8963,0273689,12777 +8964,0274407,47959 +8965,0338348,5255 +8966,0362269,11184 +8967,0387575,11249 +8968,0367479,10589 +8969,0317198,9801 +8970,0308644,866 +8971,0420332,4251 +8972,0368891,2059 +8973,0275491,140 +8974,0345950,11836 +8975,0299863,43743 +8976,0038048,17818 +8977,0346491,1966 +8978,0388419,13673 +8979,0390299,174787 +8980,0360845,26347 +8981,0376541,2288 +8982,0327919,15397 +8983,0385004,9550 +8984,0349903,163 +8985,0359013,36648 +8986,0053644,15788 +8987,0403910,33377 +8988,0053716,18973 +8989,0051516,41253 +8990,0050301,15787 +8991,0058018,35188 +8992,0054853,35189 +8993,0059166,52122 +8994,0055069,28333 +8995,0058456,24062 +8996,0339727,43670 +8997,0045192,58182 +8998,0072272,33740 +8999,0075323,74719 +9000,0111408,77448 +9001,0054453,43752 +9002,0048937,42668 +9003,0047947,25952 +9004,0088979,16248 +9005,0106912,15613 +9006,0027657,151848 +9007,0036940,30719 +9008,0032635,28421 +9009,0275468,47657 +9010,0364517,8424 +9011,0040705,32558 +9012,0045109,50085 +9013,0088074,50034 +9014,0037280,42401 +9015,0162662,67962 +9016,0125510,30996 +9017,0339827,44375 +9018,0391024,18889 +9019,0424885,210864 +25735,0005078,70368 +25736,0011130,3016 +25737,0011237,2972 +25738,0011387,71065 +25739,0012304,42510 +25741,0012364,58129 +25742,0012494,29267 +25743,0012675,36841 +25744,0013257,57283 +25745,0013367,171432 +25746,0014142,18987 +25747,0014611,41348 +25748,0014972,27511 +25749,0015119,96713 +25750,0015324,992 +25751,0015624,3060 +25752,0015841,42359 +25753,0015881,1405 +25755,0016220,964 +25757,0018037,939 +25759,0018217,697 +25760,0018218,104433 +25762,0018528,27503 +25763,0018737,905 +25764,0018742,31411 +25765,0018770,28189 +25766,0018806,3061 +25767,0019130,27517 +25768,0019344,42538 +25769,0019421,25768 +25770,0019644,120833 +25771,0020530,626 +25773,0021079,27899 +25774,0021577,5729 +25775,0021730,42816 +25777,0022158,13911 +25778,0022208,51394 +25782,0022718,48365 +25783,0022827,3574 +25785,0023037,91 +25786,0023293,31592 +25787,0023374,43132 +25788,0023427,877 +25789,0023458,875 +25792,0023634,28268 +25793,0023649,779 +25794,0023686,56724 +25795,0023948,39130 +25796,0024055,28046 +25797,0024069,31511 +25798,0024188,3031 +25800,0024240,43130 +25801,0024548,43595 +25802,0024593,43149 +25803,0024727,43148 +25804,0024772,50073 +25805,0024844,43904 +25806,0024865,43693 +25807,0024894,24106 +25808,0025301,47921 +25809,0025373,49640 +25810,0025423,46910 +25811,0025493,43689 +25812,0025748,22614 +25814,0025898,51949 +25816,0026126,43889 +25818,0026529,43896 +25819,0026685,28910 +25820,0026912,17907 +25822,0027194,27970 +25824,0027478,52677 +25825,0027652,14615 +25826,0027884,31773 +25827,0027996,24807 +25828,0028096,17030 +25829,0028174,23389 +25830,0028249,31548 +25831,0028356,54569 +25832,0028505,38721 +25833,0028683,43874 +25834,0028691,16515 +25835,0028773,27973 +25837,0028804,20642 +25839,0029322,37650 +25840,0029442,43867 +25841,0029604,43864 +25842,0029682,23101 +25843,0029912,60562 +25846,0030044,46688 +25850,0030241,16274 +25851,0030744,99318 +25852,0031359,55207 +25854,0031491,31868 +25855,0031867,37698 +25856,0032145,3084 +25858,0032156,46069 +25859,0032181,43806 +25860,0032273,55604 +25861,0032285,26635 +25864,0032432,43811 +25865,0032701,17801 +25866,0033028,26201 +25868,0033373,29884 +25869,0033654,45978 +25870,0033712,38914 +25871,0033754,33523 +25872,0033766,33112 +25874,0033945,28789 +25875,0034274,43799 +25878,0034428,18790 +25879,0034449,37036 +25881,0034778,43522 +25882,0034828,36612 +25884,0035100,97648 +25885,0035209,23336 +25886,0035238,22387 +25887,0035415,27655 +25888,0035608,23051 +25890,0035959,43306 +25891,0035979,18727 +25892,0035980,33049 +25893,0036152,41355 +25894,0036174,47352 +25897,0036432,43518 +25898,0036506,41391 +25899,0036723,21622 +25900,0036733,28436 +25901,0036910,22638 +25902,0036914,51144 +25903,0037055,35006 +25904,0037075,21451 +25905,0037077,42879 +25906,0037094,43307 +25907,0037096,50066 +25908,0037166,18229 +25910,0037462,52440 +25911,0037469,17136 +25912,0037671,43494 +25913,0037820,30348 +25914,0037824,9797 +25915,0038107,45219 +25916,0038160,18771 +25918,0038190,30177 +25919,0038338,41020 +25920,0038369,16090 +25921,0038455,44041 +25922,0038461,25502 +25923,0038574,14320 +25924,0038622,26701 +25926,0038913,43469 +25927,0038991,20246 +25928,0039636,82101 +25929,0039661,19169 +25930,0039677,43461 +25931,0039776,31980 +25932,0039926,27448 +25934,0040064,29244 +25935,0040141,83838 +25936,0040142,43452 +25937,0040308,29380 +25938,0040369,37347 +25940,0040525,3766 +25941,0040536,946 +25942,0040550,70447 +25943,0040636,20482 +25944,0040694,35032 +25945,0040872,44190 +25946,0040876,41609 +25947,0040919,33115 +25948,0040978,20638 +25950,0041158,29885 +25951,0041507,25698 +25952,0041587,45578 +25954,0041719,4558 +25956,0041855,43439 +25957,0041923,61828 +25959,0042200,25209 +25960,0042436,15390 +25961,0042531,17409 +25962,0042646,43388 +25963,0042804,800 +25964,0042958,32690 +25965,0043012,43390 +25966,0043511,41464 +25970,0044480,43961 +25971,0044486,43358 +25972,0044502,24003 +25974,0045053,28431 +25975,0045112,43364 +25976,0045177,30801 +25977,0045469,3023 +25979,0045846,43348 +25980,0045935,43349 +25981,0046040,99898 +25984,0046436,24381 +25986,0046766,11402 +25987,0046851,35861 +25989,0046998,45213 +25990,0047123,20127 +25991,0047191,24518 +25993,0047203,13457 +25994,0047443,23620 +25995,0047444,31372 +25996,0047522,3111 +25998,0047580,41503 +25999,0047677,28696 +26000,0047944,94123 +26001,0048216,17640 +26002,0048393,44026 +26003,0048434,803 +26005,0048579,31374 +26006,0048604,25893 +26007,0048752,36439 +26008,0048954,46007 +26009,0049012,33319 +26010,0049055,28100 +26012,0049710,31378 +26013,0049782,19742 +26016,0050168,44134 +26018,0050246,22334 +26019,0050393,29347 +26021,0050556,15697 +26022,0050681,43234 +26025,0051003,18776 +26026,0051128,29071 +26027,0051221,54541 +26028,0051454,44559 +26030,0051542,30637 +26033,0051834,76754 +26034,0051845,56156 +26035,0051887,43119 +26038,0052278,43137 +26042,0052303,69977 +26043,0052365,42661 +26044,0052543,43051 +26046,0052765,43101 +26047,0052929,58997 +26048,0053115,34528 +26049,0053121,31427 +26050,0053126,58902 +26051,0053131,27029 +26052,0053168,690 +26055,0053390,46918 +26056,0053462,43111 +26058,0054020,52745 +26059,0054144,36872 +26062,0054353,43047 +26063,0054354,72354 +26064,0054460,31589 +26066,0054652,52841 +26067,0054795,18449 +26068,0054890,50474 +26070,0055019,79827 +26072,0055205,750 +26073,0055233,34530 +26074,0055278,33710 +26076,0055505,64568 +26078,0055728,17185 +26079,0055892,109667 +26080,0055946,31287 +26082,0056058,14537 +26083,0056194,16103 +26084,0056262,13671 +26085,0056264,11085 +26086,0056300,53218 +26088,0056389,65048 +26090,0056512,24188 +26093,0056700,28367 +26094,0056736,21135 +26095,0056905,52705 +26096,0056907,3010 +26098,0057181,31383 +26099,0057226,39222 +26100,0057263,39495 +26101,0057298,15263 +26104,0057334,751 +26106,0057360,42798 +26107,0057426,4025 +26108,0057543,61892 +26109,0057591,25253 +26110,0057809,37684 +26111,0057877,15421 +26112,0057879,166607 +26113,0057883,37315 +26116,0058213,10299 +26117,0058262,24229 +26119,0058390,26031 +26122,0058430,3763 +26123,0058529,17696 +26124,0058530,7348 +26125,0058606,28504 +26127,0058724,151138 +26128,0058743,23574 +26130,0058926,17091 +26131,0058946,17295 +26133,0059026,13187 +26134,0059127,17102 +26136,0059250,23194 +26137,0059263,16850 +26138,0059274,24395 +26139,0059309,37921 +26140,0059311,59802 +26141,0059410,16303 +26142,0059418,29715 +26144,0059549,36583 +26146,0059653,60555 +26147,0059798,42731 +26148,0059825,3482 +26150,0060107,895 +26151,0060138,20108 +26152,0060153,2661 +26153,0060472,20379 +26155,0060588,29710 +26156,0060635,104237 +26157,0060666,22293 +26158,0060802,789 +26159,0061101,45706 +26160,0061369,11047 +26162,0061550,2097 +26163,0061589,135 +26164,0061643,33257 +26167,0061814,66043 +26169,0061882,17905 +26170,0061955,4191 +26171,0062136,10227 +26172,0062138,26039 +26174,0062262,42701 +26175,0062301,42702 +26176,0062374,41212 +26177,0062380,26204 +26178,0062407,5767 +26180,0062425,42713 +26181,0062472,27277 +26183,0062687,9929 +26184,0062759,20873 +26185,0062909,29778 +26187,0063049,18193 +26188,0063050,22176 +26189,0063115,42623 +26191,0063426,42634 +26194,0063654,118872 +26195,0063665,50789 +26197,0063794,29266 +26198,0063829,27983 +26199,0064002,5638 +26203,0064177,14801 +26204,0064208,49397 +26205,0064382,42607 +26206,0064519,40430 +26207,0064573,38096 +26208,0064612,48831 +26209,0064622,24152 +26210,0064638,1846 +26211,0064694,21323 +26213,0064886,5928 +26214,0065073,29748 +26215,0065241,105627 +26216,0065360,85255 +26219,0065492,26525 +26220,0065555,31672 +26221,0065642,48408 +26222,0065649,33205 +26223,0065755,70327 +26225,0065772,2860 +26226,0065836,42589 +26227,0065856,71943 +26228,0065955,31304 +26229,0065963,64828 +26230,0066181,38222 +26231,0066214,26606 +26232,0066289,36404 +26235,0066530,42528 +26236,0066565,20848 +26237,0066601,2998 +26240,0066819,31906 +26241,0066993,31767 +26242,0067023,839 +26243,0067072,25109 +26245,0067144,36194 +26246,0067277,16328 +26247,0067333,42500 +26248,0067341,16154 +26249,0067355,9394 +26251,0067439,74689 +26252,0067482,36850 +26253,0067483,38646 +26254,0067658,84285 +26255,0067713,34479 +26256,0067809,18287 +26257,0067810,5822 +26258,0067866,13041 +26259,0067919,40732 +26263,0068291,122677 +26264,0068317,121923 +26265,0068503,18250 +26266,0068505,33020 +26267,0068637,89417 +26268,0068655,12089 +26269,0068815,41471 +26270,0068816,17810 +26271,0068828,23148 +26274,0069067,80911 +26277,0069282,87417 +26280,0069400,11378 +26282,0069747,760 +26283,0069865,27331 +26285,0069945,1410 +26287,0069958,38729 +26288,0070003,86889 +26289,0070030,31943 +26290,0070046,29142 +26291,0070115,56764 +26294,0070215,9474 +26295,0070222,27084 +26297,0070300,31596 +26299,0070531,59189 +26301,0070640,38714 +26302,0070643,31587 +26303,0070698,22307 +26304,0070726,62330 +26306,0070791,28498 +26307,0070800,21964 +26308,0070842,21035 +26309,0070895,25473 +26312,0071260,118121 +26313,0071269,32044 +26314,0071282,62761 +26315,0071358,30702 +26316,0071431,25627 +26317,0071464,24402 +26318,0071487,5558 +26320,0071508,3043 +26321,0071544,36665 +26322,0071571,16246 +26323,0071583,27977 +26324,0071598,42448 +26325,0071604,42449 +26326,0071615,8327 +26327,0071762,37627 +26333,0072267,32940 +26334,0072274,31656 +26336,0072608,29859 +26337,0072610,28994 +26338,0072826,5618 +26339,0072895,19174 +26340,0072901,9385 +26341,0072933,28209 +26342,0072973,1835 +26343,0073008,70259 +26344,0073018,10711 +26345,0073075,19740 +26346,0073114,1829 +26347,0073179,43430 +26349,0073453,32042 +26350,0073580,9652 +26353,0073694,38099 +26354,0073714,47313 +26356,0073768,5725 +26357,0073820,38783 +26359,0074084,3870 +26360,0074152,1660 +26362,0074447,133008 +26364,0074553,6476 +26365,0074559,10640 +26366,0074605,33324 +26368,0074870,48205 +26369,0074883,46978 +26370,0074896,26842 +26371,0074906,42252 +26372,0075119,73100 +26375,0075223,11558 +26377,0075376,5651 +26378,0075462,43751 +26379,0075520,2413 +26380,0075617,14336 +26383,0075931,18775 +26386,0076141,12535 +26387,0076155,1421 +26388,0076161,62847 +26389,0076336,77360 +26391,0076451,12637 +26392,0076574,54140 +26393,0076740,38985 +26394,0076843,61280 +26395,0077147,16378 +26397,0077272,72412 +26398,0077294,11935 +26399,0077559,13481 +26400,0077598,24998 +26401,0077655,13514 +26402,0077660,113777 +26403,0077687,1362 +26404,0077728,156235 +26409,0078062,98851 +26410,0078077,29107 +26411,0078084,45691 +26413,0078252,11537 +26414,0078481,45695 +26416,0078850,42165 +26417,0078907,33701 +26418,0078913,38438 +26422,0079261,10654 +26424,0079322,25264 +26425,0079336,19827 +26429,0079489,18966 +26430,0079495,30636 +26431,0079672,33665 +26432,0079770,45169 +26433,0079815,15717 +26435,0079948,54663 +26436,0080419,80310 +26438,0080605,179798 +26444,0081874,64353 +26446,0082443,114516 +26448,0082892,47542 +26450,0082968,86295 +26452,0083387,82205 +26453,0083480,149645 +26459,0084637,23615 +26462,0085210,13633 +26463,0085218,14087 +26464,0085255,6341 +26465,0085387,27679 +26467,0085404,7012 +26468,0085412,20545 +26470,0085450,23096 +26471,0085474,15251 +26472,0085482,17435 +26475,0085838,78177 +26476,0085933,11948 +26479,0086112,15716 +26480,0086135,29173 +26481,0086153,32689 +26483,0086203,21356 +26484,0086213,42115 +26485,0086216,232 +26486,0086242,42116 +26487,0086355,30707 +26488,0086356,12633 +26489,0086374,47892 +26490,0086379,19258 +26491,0086450,22998 +26492,0086491,15301 +26493,0086543,29140 +26494,0086589,28054 +26495,0086618,11609 +26496,0086655,9041 +26497,0086904,31939 +26498,0086994,63418 +26501,0087054,42086 +26502,0087056,13189 +26504,0087065,48677 +26505,0087072,30278 +26507,0087144,46088 +26509,0087197,19596 +26510,0087225,1884 +26512,0087414,19621 +26513,0087451,10179 +26514,0087482,47874 +26515,0087596,113784 +26519,0087789,108241 +26520,0087821,27102 +26521,0087968,47359 +26523,0088117,27414 +26524,0088275,33138 +26526,0088423,25425 +26527,0088461,8221 +26528,0088727,17663 +26529,0088748,8868 +26530,0088771,29903 +26532,0088781,92802 +26536,0088821,54407 +26538,0088960,41243 +26539,0089006,12615 +26540,0089013,14029 +26542,0089110,10372 +26544,0089264,40929 +26546,0089371,67342 +26547,0089374,9056 +26550,0089603,27064 +26551,0089689,51878 +26553,0089793,62429 +26554,0089869,10176 +26555,0090056,9080 +26558,0090094,18502 +26559,0090130,31600 +26560,0090215,41205 +26561,0090270,30069 +26562,0090319,16082 +26564,0090557,14670 +26565,0090667,9318 +26566,0090713,30653 +26567,0090856,26555 +26569,0090915,47340 +26571,0091060,10570 +26574,0091113,42021 +26577,0091642,65326 +26578,0091670,24657 +26580,0091724,53157 +26581,0091943,41480 +26582,0091981,36677 +26585,0092263,11471 +26587,0092337, +26589,0093015,21733 +26590,0093066,17421 +26593,0093171,22572 +26596,0093342,49964 +26597,0093402,41076 +26599,0093412,4043 +26600,0093483,27342 +26602,0093668,2172 +26603,0093777,8852 +26606,0093978,30421 +26608,0094056,60631 +26610,0094304,96333 +26611,0094315,49815 +26612,0094357,18305 +26613,0094681,92663 +26614,0094791,8677 +26615,0094834,26369 +26616,0094888,11513 +26617,0094897,40844 +26622,0095050,49314 +26628,0095389,41959 +26629,0095444,16296 +26630,0095655,13192 +26631,0095715,18917 +26634,0095827,116345 +26638,0095904,48309 +26641,0096161,93457 +26643,0096218,41967 +26644,0096288,47795 +26645,0096386,4271 +26647,0096464,41949 +26649,0096639,13057 +26655,0097099,114524 +26662,0097814,16859 +26663,0097904,38695 +26664,0097910,2927 +26670,0098204,41939 +26672,0098368,85556 +26674,0098898,119324 +26675,0098967,26936 +26676,0099018,25943 +26677,0099143,71373 +26680,0099329,9768 +26681,0099426,11909 +26682,0099460,60778 +26684,0099611,27274 +26685,0099634,110838 +26686,0099654,10485 +26688,0099739,9569 +26689,0099747,22189 +26690,0099816,71805 +26691,0099818,7975 +26693,0099864,2670 +26694,0099902,41821 +26695,0099951,21344 +26696,0100029,9399 +26698,0100224,31597 +26699,0100234,30017 +26700,0100280,11131 +26701,0100339,14571 +26702,0100469,21168 +26703,0100491,59058 +26704,0100685,1662 +26707,0100747,6444 +26708,0100762,71642 +26710,0100911,31923 +26712,0101254,20562 +26713,0101258,18311 +26714,0101268,48448 +26717,0101420,1483 +26718,0101440,41783 +26719,0101531,28553 +26720,0101597,58648 +26723,0101704,36337 +26724,0101751,68773 +26726,0101786,25330 +26728,0101984,22423 +26729,0102015,4539 +26730,0102032,22792 +26731,0102048,22828 +26732,0102164,12776 +26734,0102220,31696 +26736,0102293,17467 +26737,0102307,36351 +26738,0102313,47252 +26741,0102395,34376 +26743,0102587,15080 +26744,0102590,39233 +26745,0102609,6463 +26746,0102614,14362 +26749,0102722,5048 +26750,0102744,9588 +26751,0102817,41792 +26752,0102913,25674 +26754,0102982,53688 +26755,0102984,21338 +26756,0102993,123778 +26757,0103010,94666 +26758,0103110,41804 +26759,0103135,147164 +26760,0103262,23438 +26761,0103516,215993 +26762,0103634,97044 +26763,0103768,29904 +26764,0103923,13995 +26765,0103950,11198 +26766,0103969,41678 +26767,0103973,75145 +26769,0104030,186809 +26770,0104107,19143 +26774,0104511,27381 +26775,0104567,45145 +26776,0104652,11621 +26777,0104663,47714 +26778,0104670,19087 +26782,0104802,40082 +26784,0105001,36288 +26788,0105197,38143 +26791,0105391,31962 +26792,0105402,22590 +26793,0105602,41777 +26796,0105682,48150 +26797,0105764,41778 +26801,0105859,40213 +26802,0105888,83761 +26803,0105916,34683 +26804,0106112,47350 +26806,0106257,25684 +26809,0106335,5051 +26810,0106341,14135 +26811,0106342,18817 +26812,0106356,27678 +26813,0106504,83599 +26814,0106639,16437 +26815,0106685,251732 +26818,0106937,17811 +26819,0106950,12088 +26822,0107157,96712 +26825,0107277,48706 +26826,0107376,47105 +26827,0107384,30366 +26828,0107612,19371 +26831,0107685,41661 +26834,0107819,35610 +26835,0107861,67595 +26838,0108170,12664 +26840,0108188,7500 +26841,0108207,20339 +26842,0108281,11143 +26843,0108334,5187 +26849,0108941,13519 +26850,0109020,32764 +26851,0109412,26877 +26853,0109542,59051 +26854,0109552,18998 +26856,0109723,18392 +26858,0109791,8983 +26860,0109816,41578 +26861,0109838,17796 +26863,0109917,63097 +26865,0110200,17809 +26868,0110405,271304 +26869,0110426,18837 +26870,0110442,11067 +26871,0110612,10486 +26873,0110832,58416 +26874,0110913,35977 +26875,0110917,19223 +26880,0111275,54804 +26886,0111835,18674 +26887,0112040,152426 +26889,0112527,57221 +26898,0113194,26830 +26900,0113556,51038 +26901,0113617,30718 +26903,0113824,37797 +26908,0114099,37062 +26911,0114437,18665 +26913,0114563,12613 +26914,0114728,21846 +26915,0114733,16233 +26925,0115819,13063 +26928,0115940,37563 +26933,0116298,63054 +26934,0116426,41343 +26937,0116671,27318 +26938,0116736,16003 +26939,0116752,8214 +26940,0116835,30330 +26941,0116860,29927 +26944,0117073,48709 +26945,0117193,37431 +26946,0117194,100167 +26947,0117407,2061 +26948,0117496,11210 +26949,0117540,148478 +26950,0117609,27994 +26954,0117909,2460 +26958,0118308,12254 +26962,0118603,55902 +26964,0118720,74097 +26965,0118760,16992 +26966,0118768,9956 +26968,0118898,36702 +26969,0119088,134458 +26970,0119092,26124 +26973,0119227,9092 +26974,0119237,18415 +26975,0119249,17629 +26976,0119278,116008 +26978,0119467,37517 +26980,0119629,37673 +26981,0119642,26103 +26982,0119657,44641 +26985,0119794,8765 +26989,0119879,9845 +26990,0119893,26644 +26991,0119926,36221 +26992,0119975,26215 +26994,0120018,64559 +26996,0120051,28123 +26998,0120126,35638 +26999,0120131,9732 +27001,0120523,86913 +27002,0120570,30983 +27003,0120604,5470 +27004,0120695,10213 +27005,0120714,19846 +27006,0120801,50008 +27008,0120860,12095 +27009,0120868,1283 +27011,0121442,35016 +27015,0123003,95136 +27016,0123034,44625 +27018,0123092,36282 +27020,0123865,14533 +27022,0124901,9812 +27027,0125507,41992 +27031,0127354,88421 +27032,0127357,8697 +27033,0127392,22140 +27036,0130414,7096 +27040,0131566,21039 +27044,0133643,19850 +27046,0133985,17263 +27049,0135659,15738 +27050,0135790,344 +27064,0143127,15805 +27067,0144550,14439 +27070,0145394,41227 +27073,0145547,13428 +27074,0145600,27260 +27075,0146402,11508 +27077,0147599,67899 +27078,0148103,36105 +27081,0150143,47186 +27087,0154683,50173 +27092,0156171,57644 +27093,0156408,46817 +27094,0156587,45935 +27095,0156610,47060 +27096,0156849,84002 +27103,0157990,9943 +27105,0158131,23356 +27108,0158692,55257 +27109,0158714,2487 +27112,0159485,38821 +27114,0159784,10429 +27124,0161292,17985 +27131,0164538,21210 +27132,0164699,54860 +27134,0164961,9597 +27135,0165196,21644 +27136,0165303,5511 +27140,0165662,12485 +27147,0167752,49745 +27152,0168123,62825 +27155,0169590,17074 +27156,0169858,18491 +27158,0170517,175739 +27162,0172543,13777 +27163,0172684,11854 +27164,0173771,87489 +27166,0174330,33491 +27170,0175526,12619 +27171,0175536,39927 +27172,0175790,24272 +27176,0177262,29587 +27178,0177858,3716 +27180,0178145,11944 +27186,0181627,21348 +27189,0181960,15319 +27192,0183678,9011 +27193,0183869,2332 +27197,0185101,54003 +27198,0185584,20882 +27204,0189456,10205 +27205,0189630,40476 +27212,0191996,18394 +27213,0192455,31774 +27215,0193741,35735 +27216,0195855,38203 +27217,0195909,19362 +27220,0196267,5458 +27221,0197213,31161 +27223,0197569,65296 +27232,0200472,32067 +27234,0201290,32306 +27235,0201394,66668 +27236,0201517,72490 +27238,0202381,10482 +27239,0202711,107942 +27246,0206036,28031 +27249,0206367,54491 +27251,0207275,110147 +27253,0208185,15653 +27255,0209463,43423 +27261,0211387,12480 +27263,0212132,13439 +27266,0212712,844 +27268,0212830,29512 +27271,0213682,97206 +27273,0213905,101338 +27274,0214605,23985 +27276,0216165,2463 +27277,0216417,16874 +27291,0219887,274669 +27292,0221069,32166 +27293,0221581,204839 +27297,0222293,38987 +27298,0222368,9439 +27302,0225535,52666 +27304,0226872,71138 +27305,0226874,39872 +27306,0230025,53048 +27307,0230575,22616 +27309,0231971,20160 +27310,0232632,28943 +27311,0233298,16234 +27313,0234041,82550 +27315,0234837,11599 +27316,0235154,33253 +27317,0235198,11075 +27320,0235618,16171 +27321,0236285,33355 +27322,0236576,49671 +27326,0238936,15917 +27327,0239641,10706 +27328,0239655,36246 +27329,0239894,17208 +27332,0240793,26245 +27334,0240912,62529 +27338,0242527,467 +27340,0242888,25988 +27343,0243554,73952 +27344,0243558,19738 +27345,0243575,16435 +27347,0243931,26014 +27348,0244092,45418 +27350,0244353,15024 +27351,0244870,11366 +27356,0246593,89823 +27357,0246692,10751 +27359,0246875,38294 +27360,0247645,18836 +27362,0248126,10757 +27365,0248928,55256 +27366,0249241,23160 +27368,0250223,2899 +27369,0250440,44756 +27370,0250491,18088 +27372,0250798,31010 +27373,0250934,20536 +27376,0251447,3577 +27378,0251806,27259 +27382,0253881, +27391,0257850,19448 +27392,0258100,14923 +27395,0260054,32248 +27396,0260924,47115 +27397,0260991,2440 +27402,0264508,10836 +27408,0265651,10955 +27410,0266425,12900 +27411,0266555,37998 +27416,0269389,10978 +27420,0270688,81540 +27423,0271383,40096 +27426,0271946,11847 +27431,0273069,52999 +27432,0273108,41714 +27434,0273517,11056 +27436,0273822,27967 +27441,0275230,919 +27444,0275764,57558 +27445,0275947,13437 +27447,0276515,55852 +27449,0276820,211 +27450,0276830,10046 +27451,0276935,27245 +27454,0278597,6382 +27455,0279112,36243 +27456,0280105,45538 +27457,0280462,48843 +27458,0280605,22242 +27459,0280949,50467 +27461,0280969,16077 +27467,0282667,58255 +27468,0283015,2191 +27469,0283283,11553 +27472,0283469,29832 +27473,0283877,10726 +27474,0284066,57100 +27475,0284214,44793 +27477,0284457,35110 +27478,0284837,9298 +27479,0284851,89591 +27480,0285005,13899 +27482,0285492,437 +27484,0285727,38901 +27485,0285906,37712 +27486,0286058,37266 +27488,0286152,14809 +27491,0286751,27324 +27496,0287425,33625 +27497,0287535,35583 +27506,0289229,35848 +27509,0289889,4592 +27511,0290160,71099 +27513,0290661,9025 +27515,0291032,2111 +27518,0292490,14752 +27523,0293715,11178 +27524,0294594,10943 +27525,0294918,125842 +27526,0294939,100973 +27528,0295682,23305 +27530,0296696,21707 +27537,0298482,10981 +27539,0298504,10918 +27544,0299213,30839 +27548,0300902,4612 +27549,0301167,36222 +27550,0301235,33068 +27555,0302585,13984 +27563,0304262,16184 +27564,0304678,53244 +27571,0305999,14868 +27573,0306097,36353 +27576,0306432,97754 +27584,0308152,11427 +27587,0308772,18072 +27592,0310775,4689 +27595,0311361,16209 +27598,0311913,45379 +27602,0312700,18248 +27603,0312773,8441 +27604,0312843,12720 +27606,0313724,21041 +27608,0314063,5552 +27611,0314979,206216 +27616,0316768,8325 +27618,0318081,10077 +27619,0318403,11430 +27620,0318725,31076 +27624,0319758,28730 +27626,0319917,40432 +27627,0320193,26955 +27631,0321781,23986 +27636,0322545,4326 +27639,0322674,16132 +27640,0323332,36730 +27641,0323443,55496 +27642,0323531,30806 +27643,0323551,20164 +27644,0323807,38970 +27646,0324013,32526 +27647,0324264,26491 +27648,0325123,15271 +27656,0327169,45572 +27657,0327409,22076 +27658,0328077,16973 +27660,0328832,55931 +27664,0330099,12703 +27667,0330500,32250 +27668,0330501,44203 +27671,0330911,46814 +27674,0331811,9282 +27675,0331834,5844 +27679,0332831,61485 +27683,0334541,10891 +27684,0334725,25334 +27685,0334965,12540 +27689,0337103,60672 +27692,0337824,24241 +27695,0337930,11556 +27699,0338139,49007 +27700,0338309,11197 +27702,0338450,14245 +27703,0338467,27079 +27704,0338763,3177 +27705,0339135,19277 +27706,0339291,11774 +27708,0340477,19341 +27711,0341495,10855 +27713,0342150,16765 +27716,0342492,4972 +27717,0342520,54764 +27718,0342570,120360 +27719,0342689,20162 +27721,0344510,2841 +27722,0345549,11606 +27724,0346293,2518 +27727,0347048,363 +27728,0347246,12140 +27729,0347304,4254 +27731,0347618,15370 +27734,0349260,16635 +27735,0349889,23520 +27736,0350193,1418 +27738,0351167,15990 +27740,0351299,11492 +27741,0351817,12496 +27742,0351887,17457 +27743,0352332,22618 +27744,0352343,29987 +27746,0353489,10361 +27751,0355987,36763 +27752,0356176,41070 +27754,0356614,14527 +27756,0357474,12542 +27758,0359203,32276 +27759,0359564,100594 +27760,0359692,14455 +27762,0361462,25757 +27764,0362387,24092 +27765,0363143,20357 +27768,0363532,21200 +27769,0363579,40876 +27771,0364093,95536 +27772,0364385,11838 +27773,0364569,670 +27776,0365190,25500 +27777,0365262,85873 +27778,0365265,12583 +27779,0365514,21513 +27780,0365763,12608 +27781,0365810,14190 +27783,0366137,49681 +27784,0366292,9694 +27786,0366527,12802 +27787,0366621,22537 +27788,0366627,9667 +27790,0366777,13373 +27792,0366996,37209 +27793,0367093,10304 +27797,0367859,40823 +27798,0367913,9666 +27799,0368259,13371 +27800,0368667,11049 +27801,0368909,9316 +27802,0369060,11647 +27803,0369702,1913 +27805,0370904,45693 +27808,0371246,2539 +27811,0371589,15177 +27812,0372279,14770 +27815,0372824,5528 +27816,0373283,10105 +27818,0373712,38398 +27820,0373861,1114 +27821,0373926,179 +27822,0374102,83 +27823,0374180,12653 +27824,0374184,32233 +27826,0374277,55177 +27827,0374339,14310 +27828,0374345,24860 +27829,0375073,26766 +27830,0375104,24747 +27831,0375912,4836 +27833,0376890,18711 +27834,0376968,11190 +27835,0377031,37918 +27837,0377062,11866 +27838,0377091,12281 +27839,0377109,10320 +27840,0377744,16427 +27841,0377992,30973 +27843,0378284,12086 +27846,0379225,11420 +27847,0379296,57337 +27849,0379576,81792 +27850,0379593,3396 +27851,0380366,1404 +27856,0381936,62276 +27857,0382330,464 +27858,0382821,40974 +27862,0383475,59196 +27864,0384533,20912 +27865,0384819,5889 +27866,0385017,1126 +27867,0385705,10296 +27869,0386064,11658 +27871,0386792,20544 +27873,0387412,11401 +27874,0388285,19423 +27875,0388367,31781 +27876,0388395,9483 +27878,0388789,1392 +27879,0388888,1843 +27881,0388973,33102 +27882,0389326,291 +27883,0389908,88138 +27884,0390632,28105 +27887,0391891,5460 +27888,0396271,51363 +27889,0396401,16843 +27891,0396746,4896 +27899,0399877,8357 +27903,0405061,24674 +27904,0405296,3509 +27905,0405821,11662 +27909,0409072,10103 +27911,0416825,33150 +27912,0418038,13372 +27914,0419806,36678 +27919,0427228,21754 +27922,0500140,23319 +30659,0383534,41171 +30695,0316824,23592 +30698,0376568,47614 +30701,0059012,986 +30707,0405159,70 +30712,0044954,31713 +30721,0056062,32041 +30723,0100873,55309 +30742,0052218,38724 +30745,0361668,12487 +30747,0377556,56616 +30749,0395169,205 +30764,0097810,150523 +30767,0157044,46761 +30776,0027387,43872 +30781,0069404,5183 +30783,0058567,28055 +30791,0229440,12597 +30793,0367594,118 +30798,0219519,113213 +30800,0061204,62143 +30803,0423866,1280 +30808,0041514,88288 +30810,0362270,421 +30812,0338751,2567 +30816,0293508,9833 +30818,0363473,6478 +30820,0361127,9692 +30822,0385267,1901 +30825,0290002,693 +30846,0364961,842 +30848,0369672,9953 +30850,0379889,11162 +30854,0119263,54291 +30856,0103935,57564 +30861,0037576,15401 +30863,0033723,14604 +30867,0416220,26275 +30883,0396592,15045 +30890,0345032,42420 +30892,0390123,1853 +30894,0375210,11804 +30896,0373416,19803 +30898,0365885,11354 +30905,0337585,41613 +30942,0045518,61049 +30949,0076104,41384 +30952,0052993,14677 +30954,0047264,61988 +30958,0179526,93462 +30970,0095274,46021 +30977,0107824,40881 +30981,0090310,147747 +30991,0098112,64699 +30994,0081063,47876 +30996,0025410,43150 +31000,0092035,66600 +31004,0295004,64334 +31011,0107233,75976 +31026,0098090,69234 +31030,0040458,43442 +31032,0319728,25033 +31035,0086429,21259 +31038,0090037,33766 +31040,0095036,220690 +31042,0020960,22301 +31045,0099342,21030 +31047,0084173,79008 +31049,0098042,120328 +31053,0279037,95466 +31060,0100606,26426 +31079,0061856,18627 +31083,0104804,39472 +31086,0070246,34326 +31090,0329106,10630 +31101,0326208,18927 +31104,0073107,42257 +31107,0074901,59143 +31109,0045557,74122 +31112,0113649,58097 +31114,0373024,25350 +31116,0034167,16442 +31123,0310203,7229 +31133,0286306,12576 +31140,0076348,42223 +31148,0330243,20719 +31150,0076929,16220 +31152,0060125,23832 +31154,0295303,54794 +31156,0043255,33475 +31158,0045468,33472 +31160,0041085,33477 +31162,0352520,10609 +31165,0286493,2091 +31184,0401233,11633 +31188,0066534,35031 +31193,0076363,13716 +31195,0066227,12127 +31201,0066265,11626 +31203,0144557,13563 +31205,0307507,36430 +31221,0357277,9947 +31223,0376105,6439 +31225,0393162,7214 +31247,0037323,43504 +31251,0087452,24749 +31255,0063121,17657 +31258,0329330,32546 +31260,0029942,42390 +31263,0339806,26488 +31267,0354243,61477 +31270,0073705,27429 +31284,0075265,19610 +31290,0101412,27549 +31297,0026421,43892 +31309,0054248,8422 +31330,0322807,11373 +31337,0032811,989 +31340,0035151,43779 +31342,0284277,49696 +31347,0032338,34778 +31349,0034881,25970 +31351,0024314,100894 +31353,0022153,44463 +31359,0416991,39504 +31362,0343095,14883 +31364,0353969,11423 +31367,0109402,10694 +31374,0047094,16410 +31389,0059126,26581 +31408,0420206,342 +31410,0363163,613 +31413,0276617,273 +31420,0398712,8978 +31422,0368578,11637 +31424,0369226,12142 +31427,0382077,11096 +31429,0417415,22559 +31431,0357507,8968 +31433,0372532,6961 +31435,0417791,31165 +31437,0408664,2517 +31445,0362590,11413 +31447,0113737,24962 +31467,0065797,17978 +31469,0059764,42729 +31474,0408017,56655 +31485,0060862,22383 +31487,0033533,43801 +31490,0164993,30923 +31494,0365020,41851 +31498,0249378,58918 +31502,0079844,11343 +31522,0079095,661 +31524,0068278,10310 +31528,0031088,36851 +31535,0044380,147882 +31539,0390336,27007 +31545,0054407,29259 +31547,0104706,53200 +31549,0067085,55624 +31553,0106761,2436 +31555,0095560,20196 +31577,0102861,61144 +31584,0298131,6317 +31588,0043386,68822 +31590,0046451,27430 +31594,0051913,43141 +31598,0101404,135473 +31600,0094979,41968 +31606,0152432,34090 +31610,0363290,34561 +31613,0379270,45174 +31617,0054847,16638 +31619,0119209,118075 +31628,0093502,42011 +31636,0252963,7454 +31638,0060414,70498 +31645,0035244,63617 +31647,0294252,23132 +31649,0098559,68348 +31655,0045911,37198 +31658,0347149,4935 +31660,0348121,8953 +31664,0184526,10951 +31672,0112800,42845 +31680,0361322,193704 +31682,0402406,41569 +31685,0386588,8488 +31687,0407121,13682 +31689,0418753,12228 +31692,0327210,32588 +31694,0361411,57825 +31696,0360486,561 +31698,0362165,10214 +31700,0317132,17880 +31702,0424227,8340 +31705,0401248,6414 +31724,0284674,27202 +31737,0058997,1942 +31742,0070238,61574 +31747,0099450,21433 +31750,0088330,52778 +31770,0042788,19119 +31785,0388318,18279 +31793,0291213,10636 +31797,0030973,123452 +31804,0403358,3040 +31807,0326835,18538 +31813,0303394,125953 +31826,0372806,41475 +31847,0034303,44875 +31851,0024601,43128 +31854,0021156,42641 +31856,0368314,39179 +31867,0331933,13498 +31869,0041838,29993 +31878,0373074,9470 +31881,0169222,36867 +31889,0400435,30698 +31892,0089695,12721 +31894,0331218,27042 +31900,0378906,37232 +31903,0288330,19765 +31907,0109661,125109 +31909,0104139,37527 +31915,0037614,43492 +31921,0075194,29578 +31923,0072281,2926 +31925,0073639,54302 +31930,0060675,4710 +31932,0037691,26243 +31934,0031334,10568 +31948,0065513,52943 +31950,0050766,25103 +31952,0373981,5204 +31954,0424434,89065 +31956,0354356,4974 +31960,0203975,30331 +31963,0065651,258 +31973,0039417,8016 +31975,0067500,37601 +31983,0064169,4235 +31991,0023158,31532 +31998,0381682,34614 +32002,0363504,51177 +32009,0422093,16186 +32011,0257516,10012 +32013,0401488,65967 +32015,0396041,281189 +32017,0395699,10022 +32019,0377471,4551 +32022,0424129,30856 +32025,0352994,26 +32029,0340163,2026 +32031,0358082,9928 +32049,0070292,29735 +32056,0106464,76264 +32058,0101590,15771 +32060,0017739,76804 +32062,0097115,43912 +32074,0296711,82432 +32076,0060464,3115 +32078,0107027,6593 +32082,0084784,116698 +32084,0104033,63115 +32088,0118912,76403 +32090,0110400,87169 +32109,0089902,34093 +32116,0087835,38148 +32120,0106264,77041 +32122,0225100,167087 +32124,0350804,34196 +32126,0120626,54380 +32128,0337879,15443 +32139,0058886,36815 +32141,0055370,111017 +32149,0078919,37598 +32151,0052933,40957 +32153,0107745,33539 +32156,0064417,41749 +32158,0054615,88930 +32160,0025919,31835 +32162,0048401,60966 +32166,0054345,85926 +32168,0388311,1918 +32170,0382621,20511 +32172,0407936,133382 +32174,0063035,22377 +32179,0051378,1093 +32181,0038477,45212 +32196,0098360,12622 +32199,0342636,25283 +32203,0068315,18047 +32211,0072285,15018 +32213,0377713,438 +32216,0358294,24546 +32225,0117395,57953 +32230,0091449,64022 +32234,0076245,42222 +32239,0354668,11297 +32243,0345853,11196 +32250,0330904,33431 +32261,0037366,18770 +32263,0372594,37988 +32277,0035942,40916 +32280,0021818,42837 +32285,0337631,1589 +32289,0396652,13374 +32291,0378947,9688 +32294,0347540,228890 +32296,0385307,10040 +32298,0372237,11638 +32300,0367631,540 +32302,0430289,77120 +32314,0374639,48463 +32316,0043972,45218 +32318,0307639,44540 +32325,0080157,21666 +32329,0078056,23916 +32333,0281176,52277 +32335,0112609,32208 +32342,0399901,44634 +32345,0021622,84298 +32347,0026097,76499 +32349,0029608,43865 +32352,0112389,185441 +32354,0372814,48598 +32357,0039937,72847 +32361,0027459,93313 +32369,0042832,32078 +32371,0040202,26038 +32375,0060574,45694 +32381,0053645,43029 +32383,0062974,42622 +32385,0078405,27495 +32387,0060277,19884 +32389,0117394,47007 +32392,0292886,37748 +32395,0057295,52302 +32415,0116163,24922 +32419,0107623,39327 +32421,0111361,55563 +32433,0089607,86458 +32440,0102095,22434 +32442,0109936,12778 +32444,0085297,42106 +32452,0206013,16198 +32456,0110008,15283 +32460,0119472,158 +32464,0101588,1772 +32469,0048801,5996 +32471,0054326,53939 +32478,0118641,19665 +32483,0026955,36006 +32485,0063036,73604 +32493,0368711,16301 +32497,0113703,47002 +32501,0378428,14573 +32509,0057578,18774 +32511,0064451,44154 +32515,0096409,28448 +32518,0086308,38155 +32520,0055618,34282 +32525,0046022,27030 +32535,0132905,120129 +32551,0019412,22595 +32554,0113799,42994 +32560,0059346,19545 +32562,0382734,21131 +32567,0243991,47237 +32582,0424565,17592 +32584,0357110,17113 +32587,0401792,187 +32589,0388500,14177 +32591,0374583,11399 +32593,0386423,23638 +32596,0318649,7364 +32598,0332047,11431 +32600,0377059, +32602,0365938,52796 +32605,0397103,45824 +32617,0091027,27271 +32620,0356999,51945 +32625,0064555,51104 +32627,0088001,16551 +32632,0070022,26332 +32646,0088855,24964 +32649,0076085,42229 +32653,0036431,45220 +32655,0261552,52663 +32657,0093488,49565 +32659,0274155,2029 +32666,0376717,44181 +32668,0337881,24619 +32674,0076211,70926 +32677,0043590,37214 +32686,0066849,26774 +32689,0084591,31944 +32705,0097195,62637 +32707,0106438,94794 +32716,0075753,50435 +32719,0064866,42617 +32721,0058947,13524 +32724,0095217,31219 +32728,0074806,19971 +32735,0071502,47406 +32737,0063991,49225 +32741,0061613,42691 +32743,0235712,9674 +32770,0386342,3875 +32773,0105097,24182 +32777,0033868,38770 +32779,0072206,74948 +32781,0060491,14689 +32783,0067610,69321 +32788,0219288,31321 +32792,0058003,26638 +32797,0075165,37512 +32799,0022183,9653 +32811,0020475,42637 +32825,0088083,19673 +32830,0362389,14842 +32834,0040558,27883 +32836,0201631,41115 +32840,0084868,32085 +32844,0033238,43824 +32851,0095341,41954 +32853,0066904,42611 +32860,0086136,54156 +32862,0063821,39225 +32864,0057329,30204 +32866,0048317,40633 +32875,0040497,4595 +32882,0033388,26182 +32890,0073424,42260 +32892,0056111,31442 +32898,0000417,775 +32902,0331370,36971 +32906,0075404,50183 +32914,0319970,7342 +32917,0055805,45267 +32923,0384833,33641 +32925,0287138,13618 +32928,0374584,9636 +32935,0350232,36984 +32941,0118020,48580 +32943,0100024,36843 +32952,0039768,18871 +32954,0077318,69069 +32957,0064975,45713 +32959,0064976,104193 +32966,0102288,64167 +32968,0104373,124083 +32972,0155796,68528 +32974,0097694,185987 +32979,0338706,34595 +32988,0388838,39851 +32994,0325234,45161 +32999,0037465,84084 +33001,0033407,84087 +33004,0371724,7453 +33008,0378215,15961 +33019,0405743,6183 +33021,0085496,8220 +33027,0078251,35170 +33036,0072926,20187 +33049,0053957,38151 +33051,0067763,20628 +33072,0072962,43003 +33081,0345591,16250 +33085,0384806,10065 +33090,0277909,30863 +33092,0275182,49920 +33098,0401504,31065 +33102,0065597,22033 +33110,0036260,37992 +33113,0041088,32850 +33117,0093258,68883 +33119,0043809,43379 +33124,0384369,9393 +33126,0079180,16972 +33129,0355857,21325 +33132,0403537,13409 +33134,0360216,14287 +33136,0372334,24363 +33138,0362004,13073 +33140,0398971,35384 +33142,0192766,113178 +33145,0391304,8976 +33148,0388183,27360 +33150,0354595,29078 +33152,0206113,38717 +33154,0413845,13020 +33158,0329774,11679 +33160,0361498,25007 +33162,0320661,1495 +33164,0397065,10066 +33166,0375679,1640 +33168,0347369,67445 +33171,0370986,11171 +33188,0089601,14750 +33191,0048233,43260 +33193,0059956,11799 +33201,0177747,53116 +33226,0066602,24444 +33229,0053602,83995 +33235,0063141,42626 +33237,0028216,43881 +33245,0021571,46594 +33247,0045361,43344 +33251,0021739,26614 +33253,0085501,133750 +33255,0031826,16902 +33261,0040765,41131 +33264,0111341,31414 +33267,0031754,40730 +33270,0413893,15318 +33288,0064541,13384 +33292,0036022,48993 +33294,0090248,9463 +33296,0218864,13163 +33310,0387892,26810 +33312,0019777,20625 +33316,0052654,1566 +33318,0263467,21997 +33321,0040740,30624 +33328,0093664,44658 +33330,0245090,48130 +33340,0116767,27233 +33342,0441758,41386 +33358,0332285,24078 +33363,0395173,43271 +33376,0374273,26541 +33380,0280381,63066 +33389,0073109,37720 +33393,0036983,18050 +33397,0096740,155325 +33401,0007613,31819 +33410,0291832,14672 +33415,0292242,11628 +33421,0342272,10913 +33424,0057254,11605 +33426,0370244,16976 +33435,0379357,38643 +33437,0342258,10027 +33443,0106305,2444 +33445,0119626,43429 +33451,0074252,19413 +33454,0104782,11139 +33463,0099472,10837 +33480,0031066,32610 +33487,0397619,1279 +33493,0121766,1895 +33495,0384642,9981 +33499,0369735,4379 +33507,0078736,31200 +33524,0025037,37215 +33533,0379577,56946 +33539,0365109,11019 +33555,0032637,28423 +33558,0337721,14694 +33564,0055913,20271 +33567,0029971,29872 +33573,0086303,85014 +33579,0266408,34856 +33581,0270911,46112 +33585,0411705,27 +33587,0037415,16373 +33592,0307213,25649 +33603,0393775,19398 +33608,0035790,100605 +33610,0035664,43506 +33615,0351283,953 +33621,0381429,16605 +33624,0071080,42268 +33629,0106233,13064 +33639,0438205,14358 +33641,0420952,26825 +33644,0449086,12700 +33646,0398165,9291 +33649,0384504,19316 +33655,0119709,34309 +33660,0352248,921 +33669,0403508,9779 +33672,0355702,9787 +33675,0344604,16932 +33677,0436727,23825 +33679,0356910,787 +33681,0424774,14199 +33683,0338095,10226 +33685,0373908,21295 +33688,0437407,20651 +33709,0103105,56321 +33722,0377084,9528 +33725,0388139,12109 +33737,0106676,47945 +33743,0135706,13935 +33750,0387914,20941 +33755,0097444,18289 +33760,0038303,43471 +33762,0411291,65579 +33767,0058153,3011 +33779,0184424,13589 +33781,0043949,11620 +33790,0045607,43354 +33794,0372784,272 +33799,0362417,5845 +33801,0399102,15767 +33808,0344273,44524 +33815,0380623,15648 +33817,0382189,9709 +33819,0382073,29080 +33821,0405861,10274 +33823,0356443,45881 +33826,0384488,25248 +33830,0400497,11451 +33832,0381717,25312 +33834,0418819,11683 +33836,0374536,9722 +33838,0436724,2287 +33844,0400420,18497 +33847,0275408,47924 +33852,0026104,43888 +33861,0062861,2994 +33863,0028401,76094 +33880,0415978,1382 +33893,0395125,9534 +33896,0420251,33908 +33898,0381270,14653 +33901,0380687,9976 +33903,0408777,276 +33905,0049778,28000 +33912,0078444,38731 +33914,0043955,25876 +33917,0044896,93775 +33919,0337945,25426 +33921,0385990,38046 +33928,0364079,24703 +33930,0365478,2151 +33933,0069436,42491 +33940,0078133,102841 +33945,0069035,42488 +33956,0036582,120747 +33958,0026129,26323 +33966,0106613,12574 +33970,0104201,115565 +33972,0043526,22968 +33974,0071514,31901 +33988,0108410,50536 +33994,0185284,15719 +33998,0101694,28455 +34002,0030696,15938 +34004,0167116,2095 +34008,0366287,18503 +34016,0072637,20914 +34018,0031060,22553 +34026,0071960,26762 +34032,0367188,34308 +34039,0032284,43809 +34045,0325596,11588 +34048,0407304,74 +34051,0079596,16659 +34057,0067148,39464 +34063,0060445,28270 +34065,0061405,4889 +34072,0428803,1667 +34076,0407342,78293 +34099,0119429,100196 +34111,0455507,13014 +34115,0071221,18257 +34129,0376108,7233 +34135,0380485,78344 +34138,0103838,73376 +34143,0382628,9009 +34148,0411270,1553 +34150,0120667,9738 +34153,0436613,14278 +34155,0299478,55650 +34158,0239509,125360 +34162,0396269,9522 +34164,0361693,14922 +34170,0078924,77593 +34177,0073113,17599 +34185,0098383,28706 +34189,0122768,48232 +34193,0037611,26654 +34198,0409184,1826 +34206,0122029,54858 +34214,0053856,43100 +34216,0363029,36484 +34224,0066154,21886 +34226,0052296,84079 +34229,0044419,43367 +34231,0416499,21115 +34234,0357037,36401 +34238,0381637,38530 +34240,0435100,38516 +34246,0118015,14646 +34271,0410097,10476 +34292,0099740,11309 +34299,0060120,34012 +34306,0034922,21366 +34312,0330111,31063 +34314,0327753,33693 +34319,0399201,1635 +34321,0408524,13341 +34323,0395584,1696 +34326,0403217,1665 +34330,0368089,9775 +34332,0405325,11459 +34334,0382992,10048 +34336,0417001,11648 +34338,0436078,15258 +34353,0090223,123049 +34359,0060453,42719 +34364,0105577,41776 +34369,0066109,72899 +34371,0025351,57866 +34373,0116791,10542 +34375,0378897,12497 +34378,0104155,5237 +34386,0323630,32242 +34397,0193364,37632 +34405,0379786,16320 +34411,0446320,19112 +34416,0095515,37640 +34426,0417182,193661 +34435,0073707,12259 +34437,0412019,308 +34450,0098019,25074 +34464,0140825,26935 +34466,0150992,5319 +34469,0023775,27449 +34473,0045186,85783 +34482,0043362,39946 +34488,0043560,54139 +34499,0368774,26579 +34505,0241073,40254 +34511,0290747,18882 +34517,0061398,42689 +34520,0377818,6519 +34523,0406650,13919 +34526,0371939,25956 +34528,0418773,1444 +34530,0367652,11453 +34532,0397101,9913 +34534,0430105,8292 +34536,0326905,13922 +34538,0348505,24461 +34540,0381505,14166 +34542,0427312,501 +34548,0077138,31542 +34552,0443518,28201 +34579,0246404,18165 +34583,0069121,27292 +34608,0052619,57103 +34624,0057542,37204 +34643,0056579,41279 +34645,0073600,32051 +34648,0380164,37284 +34659,0274659,37254 +34666,0259127,18976 +34696,0067900,42741 +34729,0317042,17110 +34767,0378407,25975 +34800,0089839,17824 +34811,0396184,11328 +35008,0028517,108348 +35015,0361715,15907 +35050,0050126,68850 +35082,0424237,46825 +35331,0032404,22965 +35347,0047834,11848 +35386,0204058,34921 +35618,0202623,37270 +35629,0332381,27217 +35636,0098453,25199 +35640,0029120,53857 +35681,0472536,306323 +35721,0101550,52660 +35738,0077952,85420 +35807,0049830,43313 +35826,0291905,12147 +35828,0375611,31977 +35836,0405422,6957 +35843,0326036,1917 +35853,0032356,79684 +35906,0367153,16764 +35957,0421239,11460 +36046,0363768,33459 +36056,0051899,14674 +36083,0347473,14134 +36086,0112870,19404 +36152,0089052,42034 +36247,0387233,35304 +36264,0044937,94529 +36276,0387898,445 +36286,0113918,74840 +36289,0133385,9564 +36312,0051816,102081 +36326,0374248,21290 +36363,0091341,20874 +36373,0117905,37185 +36392,0403016,17186 +36397,0361089,14175 +36401,0355295,4442 +36405,0035798,59882 +36426,0034521,22741 +36436,0300270,44413 +36462,0378661,65513 +36477,0401244,13169 +36509,0402901,9042 +36511,0434424,17926 +36513,0407732,15022 +36517,0387131,1985 +36519,0388482,9335 +36523,0462333,56214 +36525,0425123,9007 +36527,0377107,9777 +36529,0399295,1830 +36531,0428251,7182 +36533,0384286,10092 +36535,0404030,340 +36537,0318761,1546 +36539,0429177,23703 +36541,0356159,47488 +36545,0291928,15155 +36553,0029047,78734 +36576,0025580,51277 +36630,0119565,61675 +36683,0103243,59704 +36708,0385690,65215 +36711,0085267,36832 +36752,0086192,17386 +36799,0400063,16374 +36804,0302361,14759 +36816,0064026,121043 +36850,0095403,10753 +36883,0031514,27053 +36902,0024183,30230 +36931,0386005,11636 +37058,0028818,44407 +37113,0031377,43529 +37211,0032536,22575 +37240,0436971,14286 +37257,0066612,61044 +37269,0063811,1676 +37277,0066732,27645 +37287,0058138,34181 +37335,0059079,26259 +37375,0032671,77744 +37380,0419706,8814 +37382,0421054,9923 +37384,0348333,7553 +37386,0402022,8202 +37444,0087289,3118 +37462,0103239,2125 +37475,0350261,1947 +37477,0399327,9074 +37495,0430651,16133 +37545,0080149,10319 +37626,0025318,28001 +37653,0448267,49220 +37663,0283952,17584 +37683,0078952,42168 +37689,0331338,29656 +37720,0404032,8643 +37727,0408790,9315 +37729,0121164,3933 +37731,0385002,8923 +37733,0399146,59 +37736,0380599,257 +37739,0388980,15487 +37741,0379725,398 +37744,0031983,18651 +37785,0066767,30941 +37824,0428725,10254 +37830,0385700,647 +37837,0428430,349 +37844,0403455,14544 +37846,0339642,20668 +37853,0378109,11968 +37855,0406158,27176 +37857,0366780,14517 +37949,0212292,88286 +37955,0375233,33623 +37957,0445161,31227 +37960,0376006,120515 +37967,0109099,36909 +37976,0042477,56518 +37982,0363276,17209 +38001,0397530,10087 +38004,0036191,11627 +38036,0095607,34870 +38038,0312004,533 +38046,0429078,10703 +38061,0373469,5236 +38086,0370082,32237 +38095,0456912,11344 +38097,0472458,9060 +38159,0095467,31056 +38164,0032194,43807 +38188,0454792,14788 +38198,0424024,10700 +38294,0402057,5471 +38304,0367555,19082 +38320,0066516,46315 +38376,0100681,45799 +38384,0036891,36498 +38388,0380389,9763 +38435,0395543,30082 +38473,0424509,56475 +38499,0318997,24019 +38538,0378793,15058 +38583,0092240,10017 +38600,0417658,10475 +38656,0072235,1559 +38688,0099197,20674 +38701,0377800,3527 +38713,0027407,27974 +38798,0388125,11931 +38824,0343221,32990 +38839,0385751,17010 +38843,0056800,27759 +38849,0350774,21838 +38867,0363095,12612 +38881,0067633,26513 +38884,0053054,43110 +38886,0367089,10707 +38992,0417217,9910 +38994,0369053,38583 +39048,0436319,77468 +39052,0472566,15493 +39075,0025091,53864 +39183,0388795,142 +39191,0303307,56778 +39231,0368709,9621 +39234,0395972,9701 +39244,0116851,45899 +39292,0433383,3291 +39305,0053001,34662 +39307,0418647,12920 +39364,0245276,56798 +39369,0043465,20853 +39381,0421238,16608 +39390,0451069,25517 +39394,0338133,16430 +39398,0389828,24408 +39400,0432291,791 +39402,0406038,19965 +39408,0443567,38828 +39410,0436686,33241 +39412,0419922,53935 +39414,0338427,2610 +39416,0408961,21246 +39419,0373450,9729 +39421,0302297,15276 +39425,0447016,191599 +39427,0371257,8066 +39429,0391877,18428 +39435,0386140,1656 +39439,0325478,182097 +39441,0436629,41566 +39444,0384680,6963 +39446,0432348,215 +39449,0387514,2313 +39474,0039871,45967 +39481,0051196,37124 +39516,0330702,16729 +39524,0424272,178469 +39529,0076591,31718 +39615,0116696,226594 +39625,0073036,10915 +39659,0063678,5335 +39703,0382810,9993 +39715,0436058,8274 +39731,0041239,25918 +39740,0067950,29111 +39768,0322420,20128 +39777,0023551,26845 +39779,0025862,18994 +39786,0054084,12617 +39796,0402158,10799 +39801,0425661,42000 +39818,0047876,36102 +39824,0073335,3554 +39857,0403360,14897 +39869,0342735,1951 +39876,0034379,68013 +39886,0420015,16022 +39896,0105450,23196 +39931,0075909,25763 +39934,0046806,35580 +39941,0078771,259 +40010,0407246,34207 +40015,0118635,32117 +40033,0015532,19354 +40111,0068649,28170 +40148,0365686,10851 +40226,0267116,16231 +40275,0228277,81220 +40278,0418763,25 +40291,0401787,105299 +40337,0426155,15083 +40339,0371606,9982 +40342,0368222,13994 +40404,0419424,73473 +40412,0419677,12877 +40414,0424205,11661 +40422,0065569,5620 +40425,0053677,23220 +40436,0041928,43440 +40457,0065854,39261 +40465,0062037,54801 +40467,0058155,28667 +40478,0069005,38761 +40491,0098532,7974 +40494,0103337,60409 +40559,0119291,44389 +40574,0430308,10060 +40578,0200768,46917 +40581,0433400,10033 +40583,0365737,231 +40586,0087020,59388 +40589,0104350,41764 +40591,0105750,28212 +40597,0328132,68098 +40614,0398017,8999 +40617,0381966,8555 +40629,0414387,4348 +40679,0337656,47540 +40681,0389957,10064 +40697,0105946, +40699,0132213,125300 +40723,0416315,9885 +40732,0435625,9392 +40738,0044060,47473 +40752,0478044,20347 +40755,0050407,14837 +40815,0330373,674 +40817,0271461,24625 +40819,0358273,69 +40826,0294870,1833 +40828,0025929,44163 +40831,0317965,65045 +40833,0059619,46591 +40851,0406375,6795 +40870,0401085,11421 +40887,0385056,7301 +40898,0037963,108843 +40946,0422528,16156 +40952,0387059,24618 +40955,0411195,1420 +40959,0400525,9005 +40962,0443295,13499 +40964,0426615,17952 +40966,0375920,7548 +40969,0455475,20436 +40973,0078492,7010 +40988,0045883,6529 +41014,0065143,20345 +41025,0379306,15184 +41058,0058409,86666 +41094,0368619,24223 +41104,0058073,3124 +41126,0071622,8425 +41130,0321440,44710 +41136,0077474,2153 +41212,0411674,48121 +41226,0069303,42489 +41285,0416320,116 +41336,0051983,35124 +41353,0039116,43176 +41402,0058301,5741 +41411,0075925,20416 +41425,0384929,41189 +41434,0436039,19215 +41499,0029995,84090 +41518,0337868,61340 +41523,0040825,253250 +41527,0445620,67 +41564,0416891,64972 +41566,0363771,411 +41569,0360717,254 +41571,0397535,1904 +41573,0356680,9043 +41575,0417976,2008 +41585,0039536,21454 +41596,0063801,42687 +41602,0321376,27915 +41617,0285175,14695 +41627,0061847,27031 +41644,0349691,55396 +41650,0050188,917 +41688,0346800,17595 +41691,0048500,43322 +41699,0051790,43118 +41704,0247303,19058 +41706,0085872,36826 +41712,0202559,22908 +41714,0077452,42234 +41716,0365485,9515 +41721,0382806,16151 +41724,0473107,29595 +41736,0417395,9721 +41753,0090568,20858 +41762,0041172,35896 +41767,0047349,80316 +41769,0392465,23478 +41792,0067535,92272 +41810,0069883,84847 +41812,0032676,43812 +41815,0103704,23606 +41820,0190268,2777 +41822,0269857,25651 +41824,0284815,25650 +41828,0060474,8290 +41831,0034277,17382 +41863,0419294,8053 +41880,0041487,20003 +41889,0046000,43350 +41912,0323998,11466 +41914,0220623,21040 +41941,0420509,13653 +41974,0062657,36775 +41980,0061709,56373 +41997,0408306,612 +42002,0395251,9899 +42004,0407265,546 +42007,0398375,2800 +42009,0452598,9641 +42011,0369441,7552 +42013,0267891,9927 +42015,0402894,9681 +42018,0413015,10773 +42021,0384686,18840 +42053,0327643,18189 +42094,0070040,4495 +42150,0307913,22014 +42152,0084548,18614 +42163,0079807,22975 +42172,0205177,10597 +42176,0066498,88953 +42189,0384036,10809 +42191,0091455,13925 +42197,0444653,9687 +42208,0451850,33081 +42213,0175680,20546 +42217,0041154,20530 +42285,0116075,9568 +42312,0026266,43899 +42335,0116274,107667 +42341,0063100,18809 +42351,0090163,17835 +42385,0267129,6935 +42393,0402348,20641 +42407,0157007,154105 +42413,0096769,66192 +42418,0402399,11400 +42422,0370754,37910 +42491,0080129,90967 +42518,0037595,13669 +42543,0026983,60566 +42546,0041737,30095 +42548,0042040,16665 +42550,0041831,63395 +42553,0046054,43355 +42556,0057812,14241 +42559,0059673,79406 +42562,0073293,92285 +42584,0075793,42269 +42591,0088658,37525 +42602,0444608,38785 +42629,0017448,55544 +42632,0451094,4550 +42634,0238119,36380 +42636,0354068,68646 +42638,0338075,16433 +42659,0329162,30669 +42661,0035769,78315 +42677,0428441,44345 +42679,0060880,46041 +42681,0033627,21735 +42698,0419279,6934 +42705,0060818,174865 +42710,0284929,34081 +42718,0414852,10045 +42721,0383222,168705 +42723,0450278,1690 +42725,0456554,9900 +42728,0375154,9044 +42730,0385726,9918 +42732,0408985,17379 +42734,0443536,10982 +42736,0325007,25608 +42738,0401855,834 +42740,0433116,25890 +42761,0140883,39345 +42763,0051713,44940 +42783,0058642,26782 +42794,0099188,37865 +42856,0259388,27742 +42886,0019959,72856 +42900,0060268,4772 +42935,0437447,14226 +42938,0086551,2455 +42943,0089913,12701 +42946,0085127,21519 +42952,0034399,27622 +42956,0092038,43626 +42958,0412922,16553 +42973,0296492,25652 +42984,0027336,45802 +42987,0423651,15594 +43007,0425622,39788 +43009,0407621,12517 +43011,0065669,65891 +43014,0049646,24580 +43022,0274546,11246 +43039,0059314,49683 +43081,0061695,52728 +43177,0079688,23957 +43244,0372366,49653 +43248,0048682,27344 +43260,0448172,7295 +43267,0462570,78237 +43269,0420548,29952 +43289,0142181,28638 +43292,0339785,14942 +43333,0240200,7509 +43351,0164292,24269 +43376,0426578,2117 +43383,0020686,47250 +43389,0088336,36768 +43391,0390245,29040 +43396,0412080,9912 +43415,0096461,24163 +43419,0416496,1969 +43444,0084287,31858 +43460,0423409,8435 +43482,0023814,34187 +43497,0068205,12116 +43518,0379730,53367 +43528,0383717,38349 +43538,0110943,124484 +43549,0383393,45759 +43552,0077276,11183 +43556,0417433,13275 +43558,0421729,11565 +43560,0396752,11283 +43567,0063661,97936 +43571,0365135,19416 +43589,0411267,17 +43608,0056331,27568 +43624,0043633,27629 +43626,0049388,45726 +43628,0043030,33117 +43631,0039437,108994 +43633,0060640,54227 +43635,0056891,25167 +43652,0451021,16452 +43675,0061780,61105 +43677,0114745,31894 +43679,0414982,9286 +43682,0057168,86168 +43684,0437777,15363 +43692,0120678,30712 +43699,0019585,31416 +43708,0425598,292 +43710,0036126,37631 +43727,0183613,77291 +43744,0421994,1544 +43762,0064990,1651 +43801,0110922,33095 +43803,0119901,33799 +43813,0046808,42328 +43822,0012190,31432 +43828,0325191,61559 +43832,0478988,20981 +43836,0383216,12096 +43838,0092115,33061 +43853,0429715,5145 +43869,0381971,9975 +43871,0408345,9754 +43883,0032554,36495 +43892,0203427,52612 +43897,0435776,23965 +43899,0420260,29269 +43904,0455857,10053 +43906,0401815,10263 +43908,0449061,7515 +43910,0473692,15675 +43912,0349467,9959 +43914,0380817,14256 +43917,0397313,9036 +43919,0466342,10073 +43921,0404390,7304 +43923,0455612,16781 +43926,0763304,24432 +43928,0370032,9920 +43930,0397078,10025 +43932,0454919,9682 +43934,0424942,17700 +43936,0450232,2207 +43953,0402755,14086 +43967,0125678,14887 +43971,0104053,44435 +43983,0434008,18747 +43987,0412798,9756 +43997,0436857,34581 +44004,0427229,6877 +44020,0491703,14609 +44022,0438097,950 +44041,0078753,10912 +44058,0402850,9968 +44073,0041931,4173 +44100,0042367,43386 +44115,0475723,10116 +44124,0079854,113479 +44153,0088919,18493 +44155,0366450,16791 +44161,0441761,7483 +44168,0044953,20442 +44187,0477072,15590 +44189,0384814,1967 +44191,0434409,752 +44193,0454945,9655 +44195,0427944,9388 +44197,0419749,9950 +44199,0454848,388 +44204,0468565,868 +44225,0429591,14191 +44234,0064473,25874 +44238,0110329,18009 +44241,0113636,19286 +44243,0116861,19287 +44245,0209095,18011 +44253,0053750,114875 +44255,0042355,49781 +44295,0268437,9648 +44301,0458242,1379 +44317,0113580,62719 +44392,0033107,29481 +44397,0454841,9792 +44399,0393735,10067 +44421,0112120,55676 +44427,0063135,11573 +44494,0108187,46828 +44511,0436864,35555 +44555,0405094,582 +44568,0061537,52885 +44571,0262411,143223 +44582,0093435,42120 +44585,0117151,88811 +44587,0013427,669 +44590,0069019,49361 +44595,0081414,98864 +44597,0057697,37939 +44601,0077617,32052 +44611,0066450,34732 +44613,0446046,12763 +44628,0075932,56935 +44633,0436231,13222 +44653,0085180,42112 +44655,0059616,48764 +44657,0061996,1561 +44663,0429727,31289 +44665,0425210,186 +44671,0443693,8410 +44674,0331080,51311 +44685,0427783,21843 +44694,0441909,219 +44703,0417003,65873 +44709,0437800,13751 +44717,0367975,52345 +44719,0263124,53961 +44724,0451957,10292 +44729,0462395,15639 +44731,0441796,10069 +44752,0026073,43887 +44759,0430912,3093 +44761,0393109,9270 +44763,0075790,11291 +44773,0225481,28349 +44777,0383353,10177 +44779,0393685,12591 +44782,0402249,18045 +44788,0493459,16070 +44800,0422272,11348 +44815,0466856,13960 +44825,0090775,41263 +44828,0439815,9035 +44840,0437863,9957 +44844,0490196,30139 +44849,0386741,9389 +44851,0416331,460 +44856,0054777,28752 +44861,0379240,19059 +44864,0436331,8998 +44871,0244173,44947 +44881,0420291,13468 +44889,0404364,20521 +44892,0322700,25428 +44900,0471957,53296 +44903,0047976,79363 +44911,0077889,34193 +44929,0424880,4441 +44931,0016914,84954 +44937,0456396,11490 +44943,0312318,11304 +44947,0071733,55368 +44949,0453494,18276 +44966,0072402,26514 +44972,0362120,4257 +44974,0424136,2652 +44978,0377749,19592 +45000,0061473,1629 +45003,0440803,17111 +45028,0420087,9526 +45030,0404163,19126 +45036,0076696,80556 +45038,0093743,39045 +45047,0077372,27201 +45062,0443632,5820 +45068,0059448,19661 +45072,0445396,41338 +45074,0405469,9904 +45079,0463345,50724 +45081,0384537,588 +45100,0387055,17247 +45106,0465142,9310 +45134,0030252,48369 +45137,0448564,18858 +45170,0023196,35545 +45172,0126765,1557 +45175,0434124,16367 +45179,0034798,17131 +45183,0427954,8982 +45186,0317919,956 +45188,0445760,36253 +45192,0015175,31506 +45194,0015174,42512 +45200,0341384,1416 +45208,0449089,9530 +45210,0475276,9829 +45221,0430634,10115 +45224,0040766,560 +45259,0464105,5717 +45303,0423176,41292 +45329,0066390,14384 +45335,0024028,28432 +45346,0316187,19719 +45361,0429573,10008 +45382,0398027,7870 +45412,0442286,34019 +45431,0327084,7518 +45440,0364955,9786 +45442,0409182,503 +45447,0382625,591 +45499,0376994,36668 +45501,0452594,9767 +45503,0438315,13689 +45506,0417385,18164 +45508,0419256,15013 +45512,0415949,21014 +45517,0317219,920 +45521,0413466,18484 +45525,0343996,9700 +45527,0360016,14167 +45531,0427038,12261 +45533,0117715,59892 +45537,0037343,15264 +45550,0049006,20330 +45576,0098333,44126 +45578,0071786,55418 +45581,0456658,101908 +45611,0047647,12766 +45635,0404802,15402 +45639,0435696,26116 +45642,0091725,32446 +45648,0425055,80919 +45652,0416471,15366 +45656,0409034,53905 +45658,0410400,38344 +45662,0466909,806 +45664,0396688,20021 +45666,0457510,9353 +45668,0410297,2044 +45672,0389860,9339 +45679,0036341,20945 +45689,0066842,122271 +45691,0074462,50254 +45707,0011904,28249 +45720,0458352,350 +45722,0383574,58 +45726,0463034,1819 +45728,0424345,2295 +45730,0452637,9697 +45732,0465624,4474 +45756,0051051,43240 +45758,0037859,30022 +45761,0060097,28673 +45837,0065976,20556 +45845,0205725,4962 +45852,0437179,10007 +45880,0422720,1887 +45891,0039545,1841 +45899,0067625,71762 +45928,0489037,13508 +45940,0326429,1611 +45942,0070359,48693 +45950,0497116,1781 +45952,0030848,43155 +45969,0101545,16270 +45981,0469916,8997 +45987,0092758,42003 +45991,0063469,63100 +45994,0398839,18404 +46008,0038948,51571 +46034,0386651,16074 +46062,0475293,10947 +46065,0352426,71769 +46083,0446685,34787 +46098,0459242,29138 +46105,0428649,17628 +46108,0456899,8443 +46115,0179182,18553 +46154,0414344,26567 +46156,0422015,34186 +46194,0372122,17021 +46199,0012938,53231 +46201,0216584,22747 +46207,0239496,27320 +46231,0426627,17741 +46258,0029217,25563 +46311,0079832,146322 +46318,0022696,43147 +46322,0446059,7549 +46325,0022453,151590 +46331,0101273,41796 +46335,0463985,9615 +46337,0455499,9513 +46347,0478209,20604 +46363,0477877,410 +46367,0105187,31692 +46372,0041207,25509 +46409,0038256,31998 +46430,0456020,9917 +46441,0079859,10770 +46457,0061647,4375 +46478,0383518,8008 +46525,0020442,51303 +46530,0348150,1452 +46544,0101798,43654 +46559,0468094,7872 +46561,0478197,57406 +46572,0443496,18191 +46574,0422861,14474 +46578,0449059,773 +46581,0432260,16429 +46588,0489707,19999 +46595,0347105,126090 +46604,0085384,36576 +46613,0330634,33005 +46627,0093873,36762 +46634,0439008,19676 +46640,0066546,10308 +46651,0230334,34380 +46653,0055719,19972 +46664,0040338,21631 +46713,0039313,35955 +46716,0041555,41214 +46723,0449467,1164 +46748,0026205,71282 +46753,0065874,72881 +46762,0430674,9520 +46765,0049263,42839 +46770,0432637,32740 +46772,0369994,13141 +46788,0079758,31915 +46790,0065950,45817 +46803,0032155,43838 +46808,0492912,31463 +46821,0126816,39083 +46839,0459666,11554 +46848,0074597,25305 +46850,0492506,35199 +46855,0064040,15383 +46862,0079759,47850 +46865,0430304,9072 +46869,0025028,43903 +46880,0023926,43600 +46901,0047376,73907 +46910,0071361,27716 +46912,0266075,54111 +46915,0415778,9727 +46919,0399862,14120 +46925,0056626,76344 +46929,0062883,42636 +46948,0385880,9297 +46952,0408120,26826 +46954,0498199,81312 +46957,0420555,5070 +46959,0376543,13802 +46961,0060722,43778 +46965,0417148,326 +46967,0457513,512 +46970,0415306,9718 +46972,0477347,1593 +46974,0469641,1852 +46976,0420223,1262 +46979,0038213,43610 +47005,0052990,126781 +47007,0026424,47758 +47028,0464184,13338 +47044,0430357,82 +47047,0455958,14963 +47049,0396857,9921 +47054,0031260,36342 +47063,0113682,51043 +47076,0377569,24164 +47084,0388505,1986 +47092,0043879,31152 +47099,0454921,1402 +47117,0269217,2805 +47122,0455967,9293 +47124,0429589,9906 +47129,0013579,84956 +47131,0011000,35075 +47135,0015136,55587 +47146,0024239,43597 +47148,0421229,47880 +47150,0456149,31032 +47152,0074360,51857 +47165,0068379,42479 +47180,0055038,145899 +47196,0049653,43542 +47200,0479884,1948 +47202,0430576,148 +47221,0774095,9951 +47237,0492447,77221 +47239,0029030,77250 +47248,0426501,52452 +47250,0460902,31979 +47254,0402910,5289 +47261,0448075,9782 +47264,0414853,9907 +47274,0067778,42501 +47277,0039896,27203 +47285,0048291,63618 +47287,0052700,35921 +47306,0036695,15696 +47330,0071424,19017 +47342,0032209,42756 +47356,0091069,37929 +47382,0462590,9762 +47384,0383060,14113 +47394,0479647,15049 +47397,0034299,86604 +47404,0452039,21712 +47417,0433405,15414 +47423,0468489,7859 +47446,0428856,16998 +47452,0111800,25645 +47455,0108606,58311 +47458,0103295,18672 +47460,0090952,39776 +47465,0410764,11559 +47477,0039431,31513 +47482,0114126,10348 +47484,0026393,26718 +47491,0418455,1023 +47493,0035703,59964 +47501,0012763,71436 +47503,0472582,2168 +47516,0433412,10118 +47518,0384793,9788 +47525,0418832,14174 +47538,0074442,11689 +47540,0115587,39797 +47559,0106779,39749 +47561,0273719,14893 +47566,0039211,33813 +47571,0381690,1540 +47601,0049743,26502 +47606,0027421,57840 +47610,0443543,1491 +47615,0040076,34233 +47619,0040834,33792 +47626,0029511,51601 +47629,0436697,1165 +47634,0390808,7291 +47640,0486551,9988 +47642,0462346,24115 +47644,0445990,11652 +47646,0417225,13816 +47665,0030764,34006 +47670,0423310,22238 +47681,0425600,4913 +47701,0075144,63848 +47707,0056267,43006 +47714,0038363,19072 +47719,0023251,44892 +47721,0048980,15265 +47723,0029747,25599 +47725,0473753,11227 +47728,0038577,29589 +47736,0032339,33810 +47740,0029923,43841 +47774,0097702,41937 +47778,0451176,64499 +47793,0436689,24055 +47805,0431213,14597 +47808,0446747,40769 +47810,0450345,9708 +47815,0473024,14351 +47830,0414951,9813 +47836,0446784,27453 +47860,0084157,39382 +47868,0088015,271 +47871,0096184,35327 +47880,0177347,49940 +47886,0111807,22471 +47894,0460989,1116 +47902,0040175,29966 +47904,0050782,43231 +47907,0367082,41508 +47918,0051433,61564 +47927,0023470,50070 +47931,0048037,37628 +47935,0073502,55343 +47937,0464196,5072 +47940,0417189,2566 +47950,0427969,1249 +47952,0475944,9954 +47956,0031507,43829 +47962,0074220,171771 +47970,0434139,7511 +47972,0435479,32687 +47976,0427968,14057 +47978,0423169,13075 +47980,0277605,24916 +47997,0387808,7512 +47999,0486358,1776 +48001,0456470,1963 +48030,0026249,58905 +48032,0419198,10846 +48035,0063456,32969 +48043,0414993,1381 +48045,0109440,15097 +48049,0118644,34068 +48057,0032080,43837 +48059,0064107,15374 +48061,0069289,15242 +48067,0129414,125759 +48082,0354899,300 +48084,0032342,31148 +48093,0439630,16411 +48098,0120088,44046 +48123,0032728,52859 +48127,0048432,76117 +48142,0387877,9676 +48150,0380066,6948 +48159,0430779,15213 +48161,0421206,9766 +48165,0098327,32761 +48167,0405629,12249 +48177,0038260,34127 +48193,0110361,390 +48198,0086377,66487 +48214,0382357,1595 +48229,0415932,1622 +48231,0410730,15742 +48235,0365215,161277 +48239,0382383,43410 +48242,0060712,5726 +48262,0799954,1666 +48264,0063787,5721 +48268,0376591,41758 +48299,0020269,51079 +48301,0024473,43122 +48304,0472043,1579 +48308,0107152,119907 +48315,0050882,65488 +48319,0454824,9664 +48322,0493430,12094 +48326,0405676,1717 +48342,0435623,15624 +48346,0110300,15997 +48374,0008395,47190 +48381,0090576,2753 +48385,0443453,496 +48389,0815181,40862 +48394,0457430,1417 +48407,0049092,24751 +48412,0406816,4643 +48414,0400717,7484 +48416,0462519,9842 +48427,0337114,36249 +48458,0030746,111642 +48501,0384116,27275 +48516,0407887,1422 +48518,0420294,10781 +48520,0424993,9794 +48522,0457495,9978 +48528,0044040,30025 +48530,0427339,14812 +48536,0026262,164687 +48543,0337573,8332 +48555,0032412,3593 +48560,0439289,7510 +48567,0037644,28115 +48575,0039224,28297 +48584,0436262,16548 +48591,0433386,1975 +48593,0483726,9895 +48596,0419946,8975 +48598,0420609,9672 +48600,0430431,15005 +48626,0489247,39183 +48638,0074291,42236 +48642,0032612,52360 +48647,0105618,98498 +48649,0024966,46774 +48660,0430051,86 +48673,0448909,78479 +48678,0426459,10070 +48682,0499537,13209 +48696,0404203,1440 +48698,0814075,13364 +48700,0030418,43847 +48704,0077531,28932 +48711,0805526,18925 +48713,0835046, +48715,0024916,77198 +48738,0455590,1523 +48741,0478049,14201 +48744,0367027,1378 +48770,0324952,49481 +48774,0206634,9693 +48780,0482571,1124 +48783,0418689,3683 +48791,0434215,14012 +48817,0492492,43673 +48820,0117143,4285 +48825,0417397,14097 +48833,0416871,59500 +48851,0019415,78507 +48856,0473488,8194 +48863,0431641,5890 +48872,0475169,6077 +48877,0489270,214 +48879,0437232,1123 +48883,0853096,21173 +48895,0296845,50573 +48899,0044170,36922 +48901,0259134,43071 +48909,0044314,59087 +48943,0457297,14620 +48957,0027438,43884 +48970,0258885,80427 +48972,0407236,21156 +48982,0424095,11619 +48997,0396171,1427 +49007,0060121,23030 +49013,0452681,13767 +49016,0385057,19109 +49035,0047969,33218 +49037,0288491,144541 +49050,0411098,24553 +49060,0108432,21057 +49063,0067275,68736 +49079,0030149,67880 +49082,0032221,35561 +49085,0057277,60567 +49098,0053454,4928 +49110,0104905,27295 +49115,0439478,55831 +49121,0488539,12486 +49123,0075988,20785 +49130,0401445,9726 +49132,0811136,2152 +49183,0417243,36215 +49200,0040367,61650 +49205,0433442,10093 +49220,0470765,14799 +49225,0457496,29044 +49234,0388364,13542 +49263,0486585,21710 +49265,0420901,8588 +49272,0381061,36557 +49274,0366548,9836 +49276,0454987,9809 +49278,0453467,7551 +49280,0308055,10741 +49282,0790604,9969 +49284,0499603,2357 +49286,0457939,1581 +49291,0033740,21600 +49299,0347449,57977 +49312,0448124,313 +49314,0433387,7873 +49330,0490166,14823 +49338,0330181,27387 +49347,0460792,8324 +49355,0029957,29415 +49359,0071381,27019 +49371,0021148,85505 +49379,0023731,42822 +49389,0000439,5698 +49394,0059719,36265 +49396,0365830,2179 +49402,0053810,39219 +49412,0031500,47156 +49422,0464913,15152 +49435,0393635,14457 +49464,0040795,76211 +49494,0074776,38450 +49513,0101985,15804 +49518,0378378,14978 +49524,0762121,2447 +49526,0480271,10032 +49528,0454970,9796 +49530,0450259,1372 +49571,0027545,22440 +49591,0072886,39554 +49593,0059710,17604 +49615,0491244,15077 +49642,0488658,18147 +49644,0479965,54910 +49647,0413895,9986 +49649,0449010,2486 +49651,0479143,1246 +49663,0472113,43970 +49666,0422295,18615 +49668,0014945,40574 +49688,0046889,13210 +49691,0399934,25060 +49735,0443431,12795 +49737,0365847,11653 +49739,0379918,16066 +49746,0022550,95797 +49752,0023385,77966 +49754,0085398,55819 +49757,0091786,46948 +49759,0070337,97519 +49766,0049471,43791 +49769,0055464,82944 +49772,0446755,14202 +49793,0758794,11170 +49815,0381348,12924 +49817,0084509,30060 +49822,0343737,1247 +49824,0443489,1125 +49856,0487503,8436 +49872,0831315,14277 +49899,0478324,11214 +49902,0065622,33583 +49910,0463998,1646 +49917,0783612,58923 +49926,0422491,47143 +49929,0064536,7736 +49932,0460829,1730 +49951,0075177,42241 +49953,0090798,20537 +49955,0364120,12812 +49957,0464049,8618 +49961,0465551,1259 +49973,0068370,20842 +49979,0139151,10908 +49985,0033582,34943 +49994,0120448,27067 +50003,0398913,9053 +50005,0473444,1494 +50011,0808185,13318 +50059,0109644,10462 +50064,0452624,182 +50066,0428038,31048 +50068,0498380,1251 +50076,0036275,43512 +50147,0454082,9656 +50149,0308353,5393 +50151,0763840,14171 +50153,0462229,14396 +50158,0775539,1931 +50160,0482546,13967 +50162,0344854,9992 +50165,0220806,16371 +50183,0323120,19344 +50189,0808146,8275 +50208,0359254,79767 +50229,0062873,2433 +50245,0069687,2204 +50253,0043455,42567 +50259,0468526,26518 +50271,0465676,14449 +50274,0489327,13771 +50279,0397551,33375 +50347,0382271,10810 +50349,0022626,1773 +50354,0045081,11578 +50356,0043918,11972 +50358,0461970,38025 +50379,0422133,27095 +50382,0464828,31325 +50440,0772193,4283 +50442,0426883,7457 +50445,0455960,8398 +50447,0783238,13551 +50477,0054377,36878 +50482,0395585,19166 +50488,0038984,43470 +50514,0457655,3549 +50517,0497986,25648 +50533,0478160,11225 +50541,0121210,6166 +50550,0415234,19629 +50572,0373445,12183 +50574,0090881,56705 +50583,0468795,27337 +50585,0031516,78318 +50589,0366721,37952 +50594,0060959,46919 +50601,0398808,1265 +50610,0453453,14137 +50613,0369359,15689 +50615,0076263,27432 +50619,0021331,36877 +50628,0758743,14891 +50630,0376181,12547 +50641,0076162,25623 +50651,0822389,13140 +50658,0473434,13365 +50685,0473308,10758 +50703,0846789,26594 +50705,0418004,22473 +50740,0058578,51863 +50742,0066356,50754 +50754,0039651,74126 +50774,0417072,16138 +50792,0395495,13668 +50794,0475394,7516 +50796,0397044,10075 +50798,0799949,9760 +50800,0425430,9966 +50802,0490084,1257 +50804,0367959,1248 +50806,0477051,9757 +50821,0060168,56165 +50828,0139820,90560 +50842,0469754,5206 +50851,0380268,14761 +50858,0441774,1252 +50872,0382932,2062 +50886,0428541,11650 +50892,0377079,12580 +50898,0055093,40641 +50909,0067595,23544 +50912,0401711,2266 +50923,0469263,5172 +50940,0432972,15962 +50942,0423505,9965 +50944,0478024,13127 +50949,0056210,34866 +50954,0482527,37725 +50970,0066115,40973 +50977,0084861,63460 +50999,0396042,13517 +51004,0469062,22105 +51007,0444182,2016 +51014,0062908,3024 +51019,0406216,47200 +51024,0118414,17266 +51037,0450340,9828 +51044,0061937,34038 +51053,0379473,71506 +51060,0027672,74581 +51063,0425601,9958 +51077,0259324,1250 +51080,0401997,4169 +51082,0778661,16555 +51084,0758766,11172 +51086,0481369,3594 +51088,0499554,10090 +51091,0462200,7874 +51094,0375785,14845 +51103,0463903,29965 +51106,0339526,13916 +51111,0077350,52920 +51119,0088983,48215 +51127,0449121,22485 +51167,0476735,13393 +51174,0432402,12271 +51182,0075163,40394 +51185,0461872,17919 +51187,0435680,13185 +51194,0469937,26655 +51203,0063210,42630 +51207,0094057,22172 +51209,0060586,42721 +51246,0055399,27523 +51249,0052805,28955 +51251,0067229,27313 +51255,0425112,4638 +51265,0060287,68979 +51277,0078243,11841 +51287,0026663,28261 +51300,0072317,83980 +51302,0053244,94393 +51304,0424938,9695 +51312,0398883,24653 +51314,0465188,1993 +51317,0320042,28710 +51321,0036104,28438 +51341,0474622,97548 +51354,0067047,11945 +51357,0112681,12554 +51372,0173714,26598 +51380,0067647,5691 +51402,0386862,6443 +51412,0435705,1738 +51418,0443456,1253 +51433,0399738,38021 +51455,0301555,15325 +51457,0492466,34389 +51471,0454776,15163 +51486,0418110,14375 +51498,0264323,10845 +51503,0092226,31659 +51520,0094118,15582 +51528,0055858,42999 +51535,0120186,31015 +51540,0443706,1949 +51545,0425379,11330 +51559,0137863,99259 +51562,0106336,10942 +51569,0496436,7006 +51573,0036154,27040 +51575,0486946,11199 +51577,0429277,41393 +51579,0420757,9784 +51596,0459929,25530 +51605,0385842,36610 +51617,0088326,50812 +51619,0081036,27864 +51632,0344864,8965 +51638,0033253,14710 +51660,0482629,14624 +51662,0416449,1271 +51666,0475937,10790 +51678,0045943,18019 +51686,0028373,64142 +51691,0039847,61648 +51694,0477095,14055 +51698,0768212,2267 +51705,0482088,6691 +51709,0468492,1255 +51773,0056825,47249 +51800,0218379,49709 +51809,0468548,31040 +51817,0101725,50185 +51820,0054885,25105 +51834,0416508,2977 +51847,0458367,15664 +51857,0055506,25062 +51884,0433416,16727 +51886,0408056,5413 +51891,0059303,46916 +51894,0019071,52679 +51903,0770772,14434 +51905,0429068,27919 +51911,0052832,47837 +51917,0465670,11494 +51921,0376650,19936 +51925,0477071,9963 +51927,0455760,14001 +51931,0490204,2355 +51933,0475355,16385 +51935,0822854,7485 +51937,0800069,9793 +51939,0453556,1273 +51991,0450450,17388 +52005,0382765,4657 +52009,0066413,42595 +52016,0374089,19495 +52033,0044105,27263 +52037,0444112,10051 +52042,0389557,9075 +52078,0483578,20527 +52088,0417614,8199 +52101,0041870,37513 +52104,0117214,43976 +52106,0152438,43974 +52108,0095385,83346 +52118,0271210,30081 +52153,0052809,17677 +52170,0314067,56474 +52173,0033802,42066 +52180,0298082,11958 +52182,0459605,192675 +52189,0408318,5177 +52199,0095475,20122 +52202,0043643,33673 +52224,0250790,297853 +52227,0428446,18437 +52237,0051055,38432 +52241,0427470,8270 +52245,0445934,9955 +52265,0443723,16201 +52273,0415023,57241 +52279,0422774,10172 +52281,0462322,253768 +52283,0444682,1683 +52285,0476995,10107 +52287,0396555,1267 +52299,0419434,16018 +52319,0076584,22311 +52321,0479537,13249 +52326,0023960,175027 +52328,0448134,1272 +52352,0025335,23024 +52356,0424908,1590 +52365,0424338,32390 +52375,0462338,9903 +52378,0042792,28433 +52413,0114863,22549 +52418,0421974,10798 +52424,0072037,47848 +52427,0133170,102227 +52435,0060345,13377 +52443,0493247,14945 +52448,0455957,11515 +52456,0457433,7183 +52458,0486822,8271 +52460,0446013,1534 +52462,0455326,13158 +52489,0039735,118536 +52495,0078326,23397 +52528,0066491,35838 +52545,0492481,20405 +52548,0376196,18777 +52551,0780595,16392 +52561,0794374,17422 +52570,0064482,63951 +52572,0070351,32627 +52579,0450188,1407 +52581,0070557,81309 +52583,0460812,15534 +52589,0105242,30694 +52591,0445946,1441 +52604,0488120,6145 +52606,0488085,9843 +52617,0835787,54659 +52634,0039840,48994 +52641,0099812,18767 +52644,0452702,10294 +52660,0156843,32623 +52666,0103793,1987 +52668,0419843,13067 +52672,0427089,10111 +52690,0033530,30307 +52694,0453451,1268 +52704,0451070,185158 +52709,0419420,21810 +52712,0435670,9785 +52715,0772178,13280 +52717,0443473,14636 +52722,0413300,559 +52724,0338216,1950 +52730,0329737,13352 +52742,0042490,28304 +52767,0075610,20553 +52773,0436460,24397 +52781,0464038,20525 +52784,0856008,13894 +52796,0320194,38907 +52804,0432290,18549 +52806,0495596,37933 +52813,0041958,20025 +52831,0095583,14240 +52838,0756729,13574 +52845,0486028,13569 +52858,0460505,49081 +52865,0469897,17439 +52867,0458364,13171 +52872,0403692,16447 +52885,0851578,4977 +52891,0472268,15008 +52913,0027067,31866 +52922,0043540,46875 +52927,0477731,27904 +52929,0471030,11705 +52938,0088678,19947 +52942,0363303,43969 +52950,0409904,2269 +52952,0480025,11798 +52956,0430772,28772 +52967,0491747,1919 +52973,0478311,4964 +52975,0427327,2976 +52980,0478337,8421 +52995,0085211,41380 +53000,0463854,1562 +53002,0791304,13159 +53004,0800003,14547 +53022,0087578,11205 +53024,0762111,36676 +53038,0023382,38077 +53046,0129871,10004 +53052,0059817,43618 +53066,0040221,43397 +53084,0805185,25395 +53121,0413267,810 +53123,0907657,5723 +53125,0449088,285 +53127,0470705,12526 +53129,0780571,3432 +53131,0389328,1872 +53133,0441007,15568 +53138,0455596,14208 +53140,0412915,14207 +53143,0444628,24200 +53152,0043778,50153 +53154,0874423,18902 +53161,0497137,5488 +53183,0482930,15860 +53187,0449303,78057 +53189,0494222,8748 +53207,0411061,3489 +53226,0052861,55823 +53280,0455362,10063 +53282,0499455,13979 +53318,0460740,12225 +53322,0496806,298 +53326,0465203,10832 +53342,0450680,36143 +53349,0466399,14064 +53352,0450843,13742 +53355,0177242,2241 +53370,0104352,39465 +53373,0113187,12561 +53375,0101962,36679 +53379,0035937,40765 +53382,0036807,30574 +53406,0299937,37959 +53416,0472259,18206 +53435,0498353,1691 +53443,0032981,29617 +53447,0842929,1990 +53450,0079453,170261 +53453,0079946,22049 +53460,0423294,9408 +53464,0486576,1979 +53466,0479500,14043 +53468,0457572,10288 +53476,0484113,74055 +53498,0487092,45664 +53519,1028528,1991 +53548,0046248,43353 +53550,0462504,9952 +53554,0032264,60400 +53561,0027189,32004 +53569,0405163,17035 +53574,0473709,17320 +53578,0449851,21427 +53582,0031235,17660 +53584,0407998,9724 +53592,0461694,1294 +53600,0347016,33294 +53651,0418091,57425 +53737,0062038,42700 +53741,0463486,12713 +53752,0486480,25875 +53766,0414931,12543 +53769,0989000,13120 +53771,0088693,34573 +53774,0049531,71822 +53788,0796212,13807 +53808,0490822,11211 +53827,0075296,27138 +53833,0062864,85535 +53835,0046511,2748 +53837,0105508,54934 +53839,0119040,125025 +53841,0047152,55859 +53843,0089715,27464 +53845,0070188,122291 +53847,0217894,28666 +53849,0100851,41930 +53851,0101324,75350 +53853,0011870,77621 +53855,0050567,43229 +53857,0103640,266525 +53859,0473360,9815 +53873,0086366,12695 +53880,0064855,32575 +53883,0430484,49870 +53885,0446055,37985 +53887,0070464,42464 +53894,0386032,2359 +53906,0314524,442 +53912,0488953,25150 +53916,0049829,63096 +53919,0031619,43836 +53921,0829459,1988 +53953,0450385,3021 +53956,0795368,2196 +53963,0432264,18425 +53967,0085678,19606 +53972,0337978,1571 +53974,0762114,2959 +53988,0765447,6022 +53993,0413099,2698 +53996,0418279,1858 +53999,0374563,14125 +54001,0373889,675 +54004,0762107,3563 +54010,0057878,40618 +54020,0071824,26185 +54049,0089572,31652 +54056,0109195,30443 +54067,0091427,18763 +54075,0837106,13491 +54094,0446687,11404 +54116,0432289,16083 +54121,0042286,37292 +54144,0469689,27683 +54171,0498311,13402 +54176,0052005,19968 +54185,0832903,24582 +54190,0445922,4688 +54193,0772157,13337 +54196,0443455,27359 +54198,0101500,101897 +54220,0065037,54494 +54229,0090315,10857 +54239,0020815,81847 +54241,0026643,43898 +54243,0342882,44502 +54248,0796314,18632 +54251,0398963,32444 +54254,0457308,7547 +54256,0787475,10074 +54259,0486655,2270 +54262,0058383,757 +54268,0785077,15581 +54270,0461703,14219 +54272,0462538,35 +54274,0897361,5857 +54276,0481141,3638 +54278,0467110,6589 +54281,0423977,8669 +54284,0458522,15934 +54286,0440963,2503 +54290,0804452,14123 +54318,0054286,88527 +54326,0439810,155386 +54328,0778784,4516 +54331,0796375,8141 +54341,0430768,59995 +54349,0456630,14217 +54354,0478116,54546 +54372,0362225,10795 +54378,0890882,20163 +54406,0024353,31777 +54419,0402906,33916 +54426,0809407,24159 +54445,0069095,1721 +54455,0088242,31601 +54480,0056112,25360 +54491,0448927,34588 +54493,0077904,40060 +54501,0043567,18650 +54503,0829482,8363 +54505,0488508,4658 +54510,0808331,5956 +54513,0796368,6535 +54519,0434292,1127 +54536,0760187,9847 +54542,0040242,23861 +54554,0432325,1393 +54561,0109036,2701 +54580,0431979,12455 +54605,0060794,28049 +54607,0775566,23495 +54612,0416185,13074 +54614,0825225,17274 +54617,0412535,17350 +54621,0796335,21494 +54648,0293564,5174 +54652,0103595,28742 +54686,0462396,9703 +54689,0419909,22085 +54691,0459880,3542 +54725,0057622,43750 +54732,0424823,9750 +54734,0815244,10760 +54736,0431197,4349 +54738,0486051,14223 +54745,0477078,13068 +54758,0863037,9561 +54768,0462244,14144 +54771,0427392,4858 +54775,0499556,10431 +54778,0775488,15156 +54780,0489237,12435 +54783,0473700,14877 +54785,0373883,2082 +54787,0804461,11835 +54796,0841044,1845 +54826,0430676,14229 +54833,0039220,13385 +54872,0074740,6609 +54875,0061636,45211 +54878,0063293,48169 +54881,0923752,13958 +54885,0377972,81700 +54908,0804540,2335 +54910,0437857,10961 +54922,0036497,22779 +54934,0784972,10071 +54958,0445935,4351 +54962,0810988,12994 +54964,0059106,42735 +54967,0792965,2882 +54972,0421143,53975 +54978,0484111,13501 +54986,0069697,6916 +54988,0462721,84242 +54995,1077258,1992 +54997,0381849,5176 +54999,0465602,4141 +55020,0811106,13173 +55031,0346952,14348 +55036,0116441,14786 +55040,0040737,31058 +55050,0401420,19583 +55052,0783233,4347 +55061,0800022,13529 +55063,1093842,13241 +55067,0454931,523 +55069,1032846,2009 +55071,0912593,12901 +55073,0427528,13722 +55078,0061648,3469 +55080,0476964,4413 +55094,0478134,6973 +55098,0405508,7913 +55100,0466839,15019 +55106,0023940,77210 +55110,0465436,4629 +55112,0469184,15361 +55116,0455782,5353 +55118,0765443,2252 +55132,0476643,14788 +55147,0246405,63607 +55154,0283503,13072 +55156,0492499,30365 +55159,0079182,42170 +55167,0831888,13754 +55176,0925248,14284 +55178,0483812,20308 +55190,0452643,6641 +55199,0770806,15071 +55205,0480269,8414 +55207,0409799,244797 +55209,0473188,10425 +55223,0498120,24170 +55226,0048182,20942 +55232,0432021,7737 +55241,0419984,13257 +55245,0452625,10030 +55247,0758758,5915 +55250,0492956,13680 +55253,0808357,4588 +55255,0800027,14313 +55257,0486640,2728 +55259,0484562,2274 +55261,0408839,9038 +55267,0480242,7211 +55269,0838221,4538 +55272,0498399,2001 +55274,0414055,4517 +55276,0465538,4566 +55278,0857265,4520 +55280,0805564,6615 +55282,0389722,4513 +55284,0804522,5125 +55286,0469623,3877 +55288,0831884,8954 +55290,0452623,4771 +55292,0790804,10759 +55294,0758798,14251 +55298,0486572,14848 +55324,0425395,14930 +55329,0466664,9773 +55343,0480011,13538 +55360,0498097,18421 +55363,0443680,4512 +55369,0054745,84972 +55373,0042281,37954 +55389,0059496,39893 +55391,0360323,13197 +55402,0758732,15048 +55406,0446298,14041 +55408,0756672,9898 +55417,0762110,1922 +55419,0464061,41044 +55434,0049004,84567 +55440,0449018,15669 +55442,0808417,2011 +55444,0421082,5708 +55451,0866437,5951 +55460,0092561,114033 +55462,0454457,13319 +55467,0355611,33688 +55469,0316599,20646 +55476,0356201,90374 +55485,0765451,18613 +55487,0758771,9911 +55489,0053666,27419 +55492,0454864,15667 +55498,0494834,14753 +55507,0067402,46067 +55512,0036692,50155 +55517,0391229,13066 +55549,0961117,27827 +55553,0779982,3603 +55555,0880502,2014 +55566,0906108,17202 +55577,0890870,663 +55603,0780534,9262 +55620,0912583,15651 +55626,0210302,27276 +55628,0023236,95560 +55652,0079871,25476 +55659,0081494,48301 +55668,0446752,29362 +55671,0034162,33931 +55681,0094238,12646 +55684,0821470,20605 +55687,0912592,14279 +55691,0094641,20607 +55705,0817225,2015 +55713,0041786,28007 +55721,0861739,7347 +55726,0857355,14421 +55729,0388182,5718 +55732,0415965,5126 +55737,0780583,16126 +55748,0428212,37005 +55751,0357585,18442 +55757,0079278,42173 +55765,0765429,4982 +55768,0389790,5559 +55782,0444778,25755 +55805,0292963,7972 +55814,0401383,2013 +55820,0477348,6977 +55826,0219171,39127 +55830,0799934,4953 +55844,0496328,10520 +55851,0790706,26336 +55854,0039402,37368 +55856,0439123,19026 +55872,0426931,5123 +55875,0072195,16203 +55888,0026267,53827 +55895,0047985,18612 +55901,0445336,5817 +55908,0756683,13363 +55922,0856052,43987 +55926,0063060,32726 +55946,0891527,4515 +55955,0486583,5375 +55995,0442933,2310 +55999,0457419,2284 +56001,0484740,6639 +56003,0405336,4723 +56006,0283337,29162 +56009,0065391,48267 +56012,0910873,16768 +56015,0044789,21296 +56022,0113264,24732 +56026,0494199,10251 +56028,0822849,15006 +56030,0988102,24060 +56051,0425094,34898 +56060,0284363,12555 +56067,0027087,22606 +56069,0878695,13561 +56079,0780608,13168 +56093,0488478,20714 +56095,0995829,11148 +56098,0044072,46872 +56102,1135489,18312 +56141,0792966,17460 +56145,0884328,5876 +56152,0461770,4523 +56156,0465494,1620 +56158,0937375,15250 +56165,0804516,13474 +56167,1024943,8079 +56169,0211933,13483 +56171,0385752,2268 +56174,0480249,6479 +56176,0952640,6477 +56251,0471711,7249 +56253,0296881,44783 +56274,0757361,13998 +56286,0368794,3902 +56294,0103805,18631 +56313,0034182,43308 +56331,0277327,11476 +56333,0775529,8272 +56336,0804555,13186 +56339,0464141,6537 +56350,0034272,43798 +56367,0467406,7326 +56370,0438859,1874 +56372,0051093,55192 +56379,0762117,33003 +56389,0765120,1989 +56432,0064816,4946 +56449,0413879,24123 +56456,0411269,28522 +56474,0381392,48266 +56477,0362538,71848 +56479,0141716,34424 +56485,0396190,25460 +56490,0775438,25740 +56508,0758784,13076 +56511,0937237,11600 +56513,0830968,35237 +56515,0912580,13023 +56548,0090608,150938 +56551,0462579,46902 +56561,0819354,10884 +56563,0847817,13348 +56570,0425236,64942 +56574,0433398,25784 +56580,1029172,22452 +56587,0825232,7350 +56599,0977649,66110 +56602,0036641,26600 +56607,0419887,7979 +56612,0070085,20567 +56614,0443844,45126 +56616,0424789,52473 +56620,0810823,12171 +56624,0439511,157373 +56626,0013556,71066 +56631,0456121,13299 +56633,0489664,13250 +56651,0058564,42790 +56671,0479289,9867 +56691,0443527,15495 +56693,0101595,53896 +56700,0473356,14148 +56702,0448154,48737 +56715,0477139,13198 +56719,0478829,14804 +56724,0281938,111744 +56744,0759612,36328 +56748,0460721,23817 +56757,0408236,13885 +56775,0465234,6637 +56779,0855824,12130 +56782,0469494,7345 +56786,0067958,42529 +56788,0472062,6538 +56797,0070825,40682 +56801,0758730,440 +56805,0841046,6575 +56835,0417056,19213 +56837,0450972,19103 +56846,0960790,6076 +56848,0102789,9546 +56869,0489458,40860 +56874,0387114,111854 +56885,0427309,14047 +56888,0461804,1488 +56908,0490579,14118 +56915,0760329,54318 +56921,0991178,69315 +56931,0220644,45871 +56941,0431308,6023 +56945,0841032,26990 +56949,0988595,6557 +56956,0069226,107282 +56959,0047200,28363 +56995,0893356,17181 +57017,0058500,69557 +57023,0115950,110909 +57027,0339489,31068 +57038,0241663,60141 +57041,0058548,32307 +57044,0439547,49367 +57069,0051720,28272 +57147,0795493,4787 +57171,0463850,21847 +57179,0424287,33358 +57183,0986264,7508 +57209,0058275,20629 +57223,0372873,10253 +57236,0462392,44434 +57243,1032856,5259 +57269,0492463,47841 +57274,1038988,8329 +57276,0259822,14062 +57282,0065398,51992 +57291,0423382,49717 +57326,0460780,2312 +57353,0780516,13195 +57357,0356453,78705 +57359,0456041,30535 +57368,1060277,7191 +57370,0951216,12085 +57378,0345461,24624 +57393,0399095,4170 +57401,0896798,13252 +57418,0063483,42635 +57421,0422401,11908 +57426,0887719,15017 +57430,0076910,86241 +57432,0857295,8875 +57439,0480001,37780 +57453,0848542,18290 +57464,0760311,10247 +57468,0025948,43604 +57473,0031851,3575 +57476,0065542,28303 +57478,0019074,27507 +57480,0015016,71068 +57482,0011358,111747 +57484,0017463,32716 +57499,0099753,41845 +57502,0385586,25078 +57504,0808506,14069 +57509,0837803,15053 +57513,0070913,81522 +57520,0479968,6933 +57522,0486578,14423 +57526,0880578,8090 +57528,0462499,7555 +57530,0770810,16988 +57532,1073498,7278 +57534,0406759,9030 +57536,0489282,14220 +57538,0785007,13160 +57543,0440846,27357 +57550,0073152,10834 +57637,0780607,13059 +57640,0411477,11253 +57648,0050456,58470 +57655,0480251,38007 +57669,0780536,8321 +57690,0063599,17665 +57692,0058203,4034 +57695,0106579,1479 +57706,0086650,2282 +57709,0035440,100526 +57754,0814666,62652 +57772,0070904,53094 +57774,0322298,244145 +57776,0318590,59474 +57778,0870112,19275 +57792,0825236,7973 +57805,0816616,15020 +57811,0970184,34981 +57843,0901507,13054 +57845,0800099,18893 +57848,0780492,55294 +57854,0025004,43691 +57865,0484877,7839 +57868,0028141,77245 +57873,0099817,19384 +57910,0780622,13121 +57938,0094918,71072 +57940,0083296,46885 +57942,0497876,13315 +57946,0468820,42041 +57949,0494652,13490 +57951,0770752,8676 +57960,0033677,43705 +57964,0780486,12855 +57970,0892375,37003 +57972,0460766,15030 +57980,0945356,12167 +57991,0034891,28093 +57996,0436607,20520 +58003,0061042,76235 +58007,0078259,48131 +58025,0489099,8247 +58029,0807054,7992 +58033,0937347,14105 +58047,0832266,8390 +58059,0048198,21490 +58061,0018909,95169 +58078,0485851,13641 +58081,0018972,113788 +58084,0872224,18652 +58094,0395421,125742 +58103,0443274,7461 +58105,0416236,8204 +58107,1023481,8328 +58111,0449994,14073 +58120,0020702,94009 +58123,0282599,12650 +58130,0021508,72602 +58136,0826547,25919 +58146,1001562,15365 +58154,0467200,12184 +58156,0839980,13260 +58162,0425413,7942 +58174,0424430,36091 +58180,0022353,117001 +58185,1097256,38052 +58191,0854678,13362 +58207,0839938,10844 +58223,0427582,21043 +58228,0076913,23312 +58246,0772168,11161 +58250,0457090,6473 +58269,0239441,90387 +58274,0034936,33034 +58282,0040317,38804 +58287,0463027,21373 +58291,0997047,13493 +58293,0443649,7840 +58295,0200465,8848 +58297,0483607,13460 +58299,0451079,12222 +58301,0808279,8461 +58303,0813547,7862 +58306,0416044,12246 +58309,0912599,16666 +58315,0811138,12177 +58324,0475998,15511 +58332,0848557,13025 +58334,0466816,2239 +58347,0472160,7985 +58351,0870090,7343 +58365,0905979,28816 +58367,0462023,14066 +58373,0040974,37300 +58376,1166827,13016 +58379,0386820,10797 +58381,0807721,6391 +58404,0902272,14011 +58409,0398237,29004 +58411,0496319,18586 +58418,0455805,13196 +58422,0056049,3764 +58425,1094594,14793 +58432,0486674,8944 +58434,0420740,15124 +58437,0095903,31653 +58439,0064253,33166 +58452,0918557,45757 +58485,0107953,28260 +58490,0970468,12178 +58492,0453548,14054 +58494,0804505,8060 +58509,0034241,43797 +58520,0089537,383 +58530,0389235,78307 +58534,0419766,12453 +58554,0988108,28205 +58559,0468569,155 +58564,0023955,72608 +58576,0060647,29369 +58578,0089904,29907 +58595,0914382,46883 +58598,0086102,36527 +58610,0468442,79161 +58617,0443450,18070 +58622,0814130,14014 +58627,1023111,8456 +58632,1032854,22521 +58641,1002540,79156 +58649,0018192,42536 +58652,0940709,13688 +58655,0817538,8457 +58661,0254252,86792 +58706,0796307,32579 +58709,0381668,11534 +58718,0499570,18633 +58722,0073373,19333 +58740,0022074,31409 +58743,0395119,13495 +58760,0085764,27323 +58770,0419160,22060 +58774,0072446,511 +58783,0481797,7797 +58803,0478087,8065 +58806,0858479,12890 +58808,0462477,15185 +58810,0412808,44813 +58812,0085213,60612 +58816,0473074,31421 +58826,0827521,24411 +58839,0379865,4942 +58842,0881200,14044 +58847,0082313,42143 +58850,0091757,11483 +58870,0388556,36223 +58874,0063278,25904 +58876,0489281,8988 +58879,0893382,7944 +58881,0416675,18031 +58889,0995061,18218 +58895,0056919,46982 +58898,0454065,13317 +58904,0083728,14272 +58920,0478999,28705 +58922,0464955,35760 +58933,0758053,16283 +58937,0903627,7351 +58939,0827713,8281 +58941,1068658,99339 +58945,0482901,8267 +58964,0856288,13312 +58972,0410377,10488 +58975,0963794,11152 +58992,1097239,15260 +58994,0912590,18181 +58998,0800039,9870 +59000,0497972,14424 +59014,0426592,11918 +59016,0421073,1266 +59018,0857191,12473 +59022,0481536,13335 +59026,0875113,8827 +59031,0855895,12156 +59037,0811080,7459 +59040,0857376,9997 +59044,1007950,28704 +59053,0348853,38376 +59065,0488988,8319 +59074,0070794,92299 +59103,0865556,1729 +59105,0963208,12179 +59107,0815178,13079 +59112,0466771,24701 +59114,0069134,28131 +59116,0437954,14324 +59118,1045670,10503 +59126,0815241,13007 +59129,0892899,9017 +59131,0845955,25119 +59136,0892425,53196 +59138,0470732,38163 +59141,0845046,13258 +59143,1111833,14236 +59154,0032258,13784 +59157,0027800,27918 +59159,0023249,28435 +59173,0073240,31604 +59178,0028345,38661 +59180,0032007,40044 +59182,0034266,40214 +59184,0035419,40045 +59188,0045296,1810 +59216,0419449,47120 +59220,0425326,7861 +59256,0800240,13018 +59258,0871426,8780 +59260,0494271,10886 +59273,0412637,13650 +59290,0417871,29291 +59295,1091617,13359 +59302,0477916,26232 +59306,0926129,8617 +59313,0436889,6967 +59315,0371746,1726 +59327,0193763,22194 +59333,0866439,10761 +59336,1012804,12400 +59339,0475984,16135 +59362,0497323,14000 +59366,0281680,43664 +59369,0936501,8681 +59376,0977214,16450 +59382,0826711,12198 +59387,0460791,14784 +59392,0942903,13001 +59397,0907680,13412 +59399,0454084,13162 +59404,0790623,13243 +59418,0802948,13008 +59421,1033643,9029 +59426,1080695,15957 +59429,0974959,8277 +59435,0795439,17106 +59440,0482463,12586 +59447,0106911,41648 +59463,0046031,3014 +59465,0031976,43822 +59478,0844462,87541 +59485,0478090,16042 +59501,0499448,2454 +59519,0827517,12197 +59527,0042046,32684 +59547,0473389,25527 +59549,0942384,17483 +59561,0415489,14530 +59590,1047007,21182 +59594,0884224,13191 +59602,0808486,38834 +59604,0830558,15356 +59607,1112115,15281 +59615,0367882,217 +59621,0762104,13534 +59625,0469099,50700 +59641,0052106,85514 +59649,0893509,10120 +59651,0387682,60676 +59655,0940620,22498 +59665,0052724,37481 +59667,0435706,12808 +59669,0479916,82437 +59680,0023303,43145 +59684,0841119,44260 +59705,0487273,38282 +59709,0488604,12245 +59715,0482599,10885 +59721,0427998,15378 +59725,1000774,4564 +59727,0482606,10665 +59729,0379976,10822 +59731,1151309,13636 +59738,0490076,9022 +59753,0768120,31512 +59775,1219671,14103 +59784,0441773,9502 +59795,0939681,16117 +59799,0233809,130639 +59801,0092963,51929 +59805,0064256,74349 +59810,1000771,14050 +59814,0812243,14019 +59816,0495040,15776 +59832,0043132,17221 +59834,0063970,37308 +59836,0047889,29377 +59838,0066907,26119 +59840,0066970,42358 +59842,0052792,50231 +59844,0062639,4857 +59846,0020030,79761 +59850,0075263,37626 +59852,0063775,48564 +59854,0051198,46189 +59858,0027042,72609 +59861,0026008,117044 +59865,0024453,114348 +59867,0053017,95402 +59869,0424600,14305 +59888,0084807,72445 +59893,0071483,20017 +59895,0091406,45996 +59900,0960144,10661 +59905,0084465,60261 +59908,0803057,13172 +59910,0829098,45791 +59912,0846040,9789 +59915,0758786,13848 +59922,0312886,51484 +59935,0068595,3687 +59938,0076804,22090 +59942,0054038,2982 +59945,0011439,42657 +59947,0089847,45408 +59954,0012752,82731 +59960,0053434,37412 +59974,0055981,66180 +59976,0055320,31742 +59985,0460745,12912 +59988,0464907,13170 +59995,1078188,14748 +60007,0116118,15691 +60014,1037033,13206 +60020,0913968,14392 +60030,0491162,18467 +60032,0415856,14882 +60037,0949731,8645 +60040,0800080,1724 +60044,0923600,5759 +60046,0889588,13405 +60059,0400761,49258 +60069,0910970,10681 +60072,0493464,8909 +60074,0448157,8960 +60086,0433350,15728 +60096,0304808,23676 +60103,0044357,1938 +60106,0071634,75141 +60110,0070814,42473 +60124,0811128,13993 +60126,0425061,11665 +60128,0913445,13019 +60133,0940585,21074 +60135,0479547,26354 +60137,0997088,22905 +60141,0964587,10748 +60145,0011565,27509 +60147,0889652,14949 +60150,0027515,78998 +60161,1054485,12889 +60179,0067055,28681 +60183,0929235,41850 +60189,0099053,85559 +60193,0384832,51890 +60198,0070628,45698 +60201,0063555,26302 +60213,0378244,32263 +60223,0019563,27506 +60225,0018471,111305 +60227,0016473,27505 +60229,0021505,27504 +60231,0018097,64852 +60237,0085289,78321 +60240,0071721,77765 +60243,0069103,45512 +60256,0053765,43031 +60259,0447854,13205 +60284,1204298,30106 +60286,0889134,13065 +60289,0846308,8359 +60291,0479468,13003 +60293,1082886,13990 +60295,1114277,15272 +60299,0293176,80659 +60303,0492784,10842 +60309,0037508,72163 +60311,0034522,29882 +60314,0057940,40630 +60316,0061787,31658 +60322,0888693,14349 +60333,1093824,12172 +60336,0091497,64131 +60338,0487928,15125 +60341,0896866,8847 +60343,0029751,43869 +60353,0017048,94525 +60356,0212573,125550 +60363,0960890,13009 +60365,0064349,13675 +60376,0911010,33588 +60382,1157705,16800 +60384,0405496,56224 +60389,0870211,14111 +60391,1034427,17479 +60393,0463381,32604 +60397,0795421,11631 +60405,0909388,20158 +60408,1064932,8265 +60411,0060560,42718 +60418,0816545,15654 +60421,0847897,14634 +60436,0829193,14414 +60450,0806679,428 +60461,0997188,20548 +60463,0985025,14145 +60469,0386038,9010 +60471,0479528,13022 +60475,0451966,68259 +60479,0822858,9783 +60482,0787523,10190 +60484,0039090,43487 +60487,0060550,13353 +60490,1210351,16019 +60494,0042274,46531 +60503,0879843,13614 +60508,0170351,4966 +60514,0373051,88751 +60516,0765476,11260 +60522,1050160,13964 +60524,0470679,13692 +60526,0472071,13910 +60530,0869977,10818 +60538,0492486,14456 +60544,0424971,15840 +60546,0245027,15830 +60551,0901475,25647 +60566,1024942,14898 +60568,0478394,12416 +60579,0453383,572 +60585,0074312,36226 +60590,0765141,60531 +60599,0462295,13021 +60609,0758742,16007 +60616,0055124,158800 +60618,0444672,18035 +60625,0051047,43253 +60641,0422783,14820 +60647,0800241,6687 +60649,0482603,11802 +60654,0437526,2002 +60666,0913958,78527 +60674,0929629,12914 +60684,0409459,13183 +60686,0120617,116333 +60688,1043838,13255 +60702,0865957,14154 +60707,0844768,32666 +60728,1045889,80523 +60735,0952682,12247 +60737,0472205,22100 +60743,1086340,19244 +60745,0054687,32008 +60753,1117385,13012 +60756,0838283,12133 +60758,0412536,12568 +60760,0443701,8836 +60763,0486259,13259 +60766,1155592,14048 +60768,1157620,12270 +60803,0063230,18846 +60806,0240684,10898 +60816,1079959,13541 +60818,0765458,11910 +60825,0473514,17245 +60827,0949489,30112 +60832,0964539,12192 +60838,0168972,70846 +60857,0801526,16725 +60880,0087545,117129 +60885,1039652,15865 +60887,0841084,4140 +60894,0819714,14061 +60896,0019935,85685 +60904,0096126,43680 +60914,0487195,16700 +60930,0820162,167928 +60937,0859163,1735 +60939,1027862,10187 +60941,0805570,10185 +60943,0978759,10183 +60946,0493450,31082 +60948,0914797,13996 +60950,0497465,5038 +60979,1117563,13851 +60981,0142371,19877 +60983,0431045,46871 +60990,0055052,28273 +60992,0428870,15859 +61004,0103303,31922 +61009,0769508,14654 +61011,0783608,13251 +61013,0177507,1661 +61018,0247613,41245 +61024,0910936,10189 +61026,0425637,12289 +61031,0076933,45579 +61035,0804552,15069 +61037,0841925,2012 +61041,0828158,18056 +61048,0488535,18803 +61071,1018785,10188 +61073,0411475,13300 +61075,0974554,11671 +61083,0382053,63474 +61091,1002535,15570 +61100,0859765,155796 +61108,0469640,15208 +61110,0414426,15662 +61116,0069792,22029 +61123,0810900,13649 +61132,0942385,7446 +61136,0962711,14878 +61160,1185834,12180 +61167,1029120,13107 +61206,0809425,29568 +61210,0490181,13256 +61215,0883995,13436 +61236,1185616,8885 +61240,1139797,13310 +61246,1104733,12621 +61248,0452608,10483 +61250,0852713,12620 +61253,1091751,13579 +61255,1031969,10186 +61257,0963807,15320 +61262,0790686,13515 +61264,0901485,5592 +61267,0486321,13956 +61269,0889671,60230 +61279,0042692,43389 +61285,0218505,31018 +61289,0906665,13637 +61301,0765430,18116 +61312,0425308,15661 +61314,0827782,13564 +61317,0445965,14566 +61319,1172206,14298 +61323,0887883,4944 +61348,1213644,13805 +61350,0364970,9381 +61352,0988047,13291 +61354,0844671,13991 +61357,1149405,22319 +61361,0430770,13972 +61373,0098672,16182 +61394,0392878,14771 +61396,0054292,43040 +61398,0804507,15206 +61401,0831887,8285 +61406,0472027,118309 +61414,0034297,18539 +61434,0064754,21335 +61449,1068641,12165 +61451,0037263,85574 +61465,0814022,13184 +61467,0790657,12818 +61470,0077270,27521 +61473,0490234,13726 +61475,1020936,102305 +61493,0992911,35854 +61553,0492881,14075 +61560,0100768, +61567,1087458,22554 +61569,0791178,18596 +61586,0472156,26431 +61628,0401808,38019 +61634,0038097,43177 +61638,1282045,39368 +61646,0452971,3865 +61678,0492619,13484 +61692,0457275,14458 +61695,0815457,25795 +61697,1034331,13389 +61705,0947802,13279 +61707,0859760,38140 +61724,0092149,3 +61729,0995039,12797 +61742,0454976,8908 +61768,0388727,15822 +61816,0459102,4998 +61818,0353324,16456 +61862,0474642,3041 +61868,0482528,71139 +61913,0060073,41264 +61931,0069124,24777 +61934,0071521,20802 +61937,0045848,47721 +61941,0870122,14232 +61948,0899128,14098 +61950,0870204,14643 +61961,0219224,30944 +61967,0056444,50759 +61970,0119700,38226 +61986,0800308,12690 +61991,1046997,12412 +61994,0351459,37050 +62000,0053987,38311 +62008,1282036,37776 +62010,0920461,54669 +62014,0481254,73169 +62049,0048918,1984 +62054,0072231,38361 +62063,0091759,73920 +62081,1059786,13027 +62113,0455538,13092 +62115,0425458,25126 +62137,0956038,14326 +62153,0051879,50011 +62155,0981227,12182 +62157,0782867,14928 +62198,0068924,38616 +62203,1029234,9539 +62206,0127310,81296 +62208,0047682,46492 +62213,0376873,131805 +62235,0972883,13200 +62237,1224448,38601 +62245,0051792,822 +62250,0929425,8882 +62254,0089746,42095 +62265,0809504,13401 +62277,0460485,20015 +62293,0864761,12783 +62299,0913951,12683 +62304,0307596,3097 +62331,0439533,15981 +62334,0108597,41666 +62336,0279077,225130 +62344,1084950,14976 +62374,0758774,12113 +62376,0970411,13600 +62378,0841027,10078 +62383,0006333,30266 +62385,0064860,11874 +62390,0481580,19566 +62394,0467197,13051 +62420,0911024,39816 +62434,1007028,10358 +62437,1175491,10523 +62439,1046163,13596 +62467,0068569,56942 +62474,0066745,71206 +62511,0383028,4960 +62514,0041257,120481 +62526,0072912,32620 +62553,0416212,12837 +62577,1054588,14914 +62586,1190617,13948 +62594,0488905,25142 +62644,1063669,7735 +62660,0808230,14791 +62662,0090182,76406 +62669,0134771,101929 +62671,0150500,2397 +62718,0963743,12689 +62721,0312409,15935 +62726,1142798,15450 +62729,0885415,25741 +62733,1082868,13812 +62761,0088222,108634 +62764,0072709,27361 +62781,0102488,225614 +62788,1031254,13489 +62792,0482572,13150 +62796,0426462,13414 +62799,0469903,14325 +62801,0068817,41474 +62803,0143348,41477 +62834,0280453,16068 +62836,0871427,15289 +62847,1152282,56295 +62849,1032755,13809 +62851,0407337,34100 +62912,0962726,11887 +62916,0038250,41073 +62920,0043663,83683 +62925,0031020,59403 +62953,0306011,69299 +62956,1054486,13253 +62970,0910812,114796 +62972,0409572,17800 +62974,0029844,30977 +62999,0479952,10527 +63001,1101026,13506 +63007,0011909,53772 +63033,0861689,8338 +63062,0824747,3580 +63069,0161635,36073 +63072,0898367,20766 +63082,1010048,12405 +63113,0830515,10764 +63119,1042499,18548 +63121,0052270,4701 +63131,0430922,15373 +63134,0016939,120828 +63141,0038033,173634 +63179,0976060,8938 +63181,1183732,16061 +63187,0055059,73059 +63189,1124394,16166 +63194,0456340,2588 +63222,1130988,13672 +63226,0043801,47184 +63229,0977611,158959 +63237,0099733,44283 +63239,0128996,42884 +63271,0043591,215471 +63273,0850669,13516 +63276,1016290,14943 +63278,0933033,19147 +63280,0017567,96395 +63283,0027214,52561 +63310,0059896,42664 +63312,0772181,4627 +63327,0803080,43052 +63329,0772176,21501 +63332,1064953,16882 +63339,0293654,127257 +63391,0064387,49355 +63393,1055366,13655 +63433,0387736,13905 +63436,1132626,11917 +63446,0993789,8892 +63458,0101628,12525 +63468,0152176,82519 +63479,1135985,13523 +63481,1111948,14655 +63483,0887971,15749 +63515,0851577,22358 +63540,1014775,14405 +63544,0847050,43985 +63590,0491109,20065 +63617,0363240,14089 +63619,0899137,208385 +63629,0054866,84050 +63645,0499101,9999 +63647,0068650,17099 +63662,0202682,58570 +63676,0061065,29452 +63688,0017918,125749 +63692,0015758,111759 +63698,1233381,8905 +63758,0059015,3520 +63760,0043332,43372 +63768,0059320,88435 +63772,0043363,77650 +63781,0113676,17704 +63788,0089026,36571 +63791,0092891,36572 +63793,0043117,37327 +63806,0372803,28684 +63808,1068646,8841 +63810,0043129,54615 +63826,1031280,13220 +63828,1016164,16509 +63836,0118840,34867 +63840,0195001,10565 +63853,0455824,6972 +63859,0397892,13053 +63862,0036307,32862 +63876,1013753,10139 +63989,0027521,29320 +63992,1099212,8966 +64010,1172571,16342 +64030,1129442,13387 +64032,0369436,12193 +64034,0914798,14574 +64037,0409345,10900 +64099,0289320,56256 +64114,1129423,14438 +64116,0465502,14248 +64153,0837791,20919 +64167,0233044,12224 +64197,0986233,10360 +64229,1042877,14299 +64231,0450314,13056 +64234,0101988,15026 +64236,1037218,13793 +64241,0057935,35790 +64243,0053746,38831 +64245,0008874,45838 +64249,0897387,13394 +64273,0052556,2574 +64275,0022694,72495 +64278,0828154,34283 +64280,0065853,114390 +64283,0040980,85844 +64285,1118511,14447 +64288,1032746,17157 +64321,0441762,1964 +64325,0039581,44626 +64327,0067109,65502 +64338,0107065,17912 +64365,0041622,43962 +64368,0087805,28148 +64385,1068634,93260 +64408,0046384,109539 +64410,0030150,116973 +64418,0878134,74485 +64424,0145605,174122 +64427,0298072,200311 +64497,0970416,10200 +64499,0892255,8881 +64501,0374569,8880 +64508,0844760,11127 +64511,1135968,18117 +64517,0030254,109711 +64519,0039208,18926 +64522,0049601,86782 +64524,1151915,25852 +64548,0036715,39407 +64550,0044078,39409 +64552,1285130,37584 +64575,0918927,14359 +64577,0929860,19486 +64611,0099601,126754 +64614,1205489,13223 +64620,0870111,11499 +64622,0976051,8055 +64645,0065225,3054 +64650,1182937,14072 +64652,0361500,20542 +64658,0990361,12449 +64660,0476681,5816 +64695,1121794,13980 +64701,1068649,8276 +64704,0143323,61751 +64716,0814314,11321 +64747,0478207,52615 +64750,0095871,41966 +64754,0450363,89453 +64784,0022628,120862 +64793,0278781,42655 +64839,1125849,12163 +64845,0955298,14772 +64895,0024262,27991 +64897,0018179,87894 +64900,0100625,9050 +64903,0184773,86082 +64906,0182766,79090 +64918,0304547,47499 +64921,0034465,60488 +64923,0016655,111302 +64926,0036629,112912 +64930,0036172,80616 +64942,0949564,2694 +64944,0052794,39558 +64953,0095022,36573 +64957,0421715,4922 +64959,0182989,159849 +64969,1068680,10201 +64976,0107107,75686 +64979,1241326,297983 +64983,0985699,2253 +64986,1029134,14422 +64990,1003116,40873 +64993,0983213,38142 +64997,0449040,34812 +64999,1183733,16268 +65001,0902270,15033 +65006,1078899,14806 +65011,0326449,51817 +65025,0043476,84397 +65027,0023935,59158 +65033,1028539,105371 +65037,0953318,6936 +65045,0996979,13954 +65051,0783601,13406 +65063,1110272,14357 +65078,0080945,185156 +65088,0960731,10202 +65091,0025464,28564 +65111,0320668,23604 +65126,1024715,13973 +65130,0959337,4148 +65133,0212579,194113 +65135,0094754,51247 +65142,0926762,17845 +65155,0976247,13827 +65181,0483756,15676 +65188,1152758,15584 +65193,1024255,13971 +65204,0022753,89573 +65216,1034303,13813 +65225,1332128,13180 +65227,0013075,42366 +65230,0822832,14306 +65235,0864770,8049 +65238,0038462,20028 +65243,1180333,141971 +65256,0498360,31047 +65259,1232826,8927 +65261,0876563,12429 +65263,0011293,53519 +65267,0012512,53518 +65277,0064379,70191 +65288,0059565,51808 +65290,0762133,18151 +65293,0028219,28256 +65300,0816539,16205 +65304,0847487,15331 +65310,0462485,17287 +65315,0366596,50988 +65350,0027664,113916 +65352,0052880,29741 +65357,0373747,29262 +65359,0407384,9795 +65370,0207359,87790 +65381,0048339,26758 +65387,1307059, +65400,0101326,25528 +65418,1152850,8942 +65435,1107365,13690 +65465,1046947,16409 +65468,0042372,113921 +65514,1220719,14756 +65518,0089060,27244 +65521,0097534,35945 +65538,0379053,54406 +65552,0238552,10596 +65556,0044573,60547 +65558,1157604,368955 +65562,0441297,49256 +65564,0184254,86084 +65567,0449487,13944 +65577,0420238,10199 +65585,0901476,10521 +65588,0447166,26235 +65596,1259014,13635 +65601,1179891,14435 +65603,0419515,21966 +65612,0092732,52886 +65614,0050549,37373 +65621,0850307,170094 +65629,0263366,260528 +65631,0850253,13177 +65633,1294164,34696 +65638,0209919,221861 +65640,0081169,114403 +65642,0480669,14139 +65651,1135493,16999 +65660,0487419,8280 +65665,0243951,125705 +65667,0350002,36746 +65669,0426173,36402 +65672,0464029,317 +65682,0834001,12437 +65685,0494238,2309 +65696,0049286,86363 +65698,0040082,60542 +65702,0183997,162865 +65709,0844761,47658 +65721,1305871,31688 +65729,1038915,14076 +65731,0818165,13942 +65738,0105251,18543 +65740,0110982,21029 +65762,0021408,50307 +65764,0118852,49511 +65770,0772200,27440 +65772,0464041,13825 +65780,0068912,250093 +65796,0080772,15227 +65802,1114740,14560 +65810,0472198,14410 +65813,1139668,13788 +65817,0988849,13429 +65840,0487271,6733 +65845,0822868,14871 +65866,0039029,35077 +65868,0963194,14353 +65878,0287140,27447 +65882,0815245,14254 +65894,0792986,16137 +65899,0106188,17803 +65907,0441627,101838 +65909,0319821,214436 +65927,1020055,14549 +65930,0022681,80193 +65932,0062742,169869 +65935,0969307,56816 +65939,0133906,38205 +65974,1139618, +65982,0462465,10529 +65984,0024873,75880 +65986,0042279,160783 +65994,0879801,58782 +66006,0046757,62753 +66008,0181002, +66015,1092082,14582 +66019,0070136,46595 +66025,0393329,50318 +66036,0139745,253116 +66051,0051393,94533 +66053,0046791,44052 +66057,0151301, +66059,0200299,63938 +66066,1053859,1977 +66068,0113421,46725 +66090,1020530,13510 +66092,0115398,15554 +66097,0327597,14836 +66105,0067630,48350 +66118,0058481,97915 +66130,1183252,15003 +66140,0844666,141971 +66152,0092074,24194 +66156,0961728,14851 +66171,0465580,13455 +66198,0963178,4959 +66200,1103275,10362 +66203,1001508,10184 +66234,0805576,16170 +66240,1079444,14849 +66246,0070860,36764 +66250,0038392,111459 +66252,0038395,37309 +66268,0119865,131729 +66279,0065867,52105 +66282,0043408,60539 +66284,0003643,28196 +66289,0100623,1560 +66295,1263736,85394 +66297,1054487,15060 +66302,0116231,26900 +66304,0785006,15189 +66306,0069951,133328 +66310,0814685,13492 +66317,0240425,70089 +66320,0492931,4832 +66323,0114626,135938 +66330,0961108,7353 +66335,1265998,14711 +66337,0412596,52512 +66339,0063198,98193 +66344,0067327,49600 +66352,0825241,24171 +66354,0275434,47980 +66365,0090192,5677 +66369,0068916,44618 +66371,1069238,16804 +66385,1019454,25405 +66389,0808148,73953 +66427,0489235,1961 +66437,0489225,15148 +66440,0120028,54838 +66472,1133995,15945 +66491,0173957,171840 +66503,1320355,68190 +66506,0991167,14204 +66509,1201167,20829 +66511,1213019,30508 +66513,1322381, +66517,1194271,15039 +66537,0490377,13639 +66539,0079153,47561 +66544,0208629,18884 +66547,0049010,26036 +66549,0119211, +66551,1103256,14977 +66553,0414510,157909 +66579,0831916,21851 +66581,1116186,15105 +66584,1014801,17314 +66586,0783518,24351 +66590,0048056,94405 +66592,0756206,110761 +66596,1237838,38087 +66614,0948532,16177 +66618,0439884,29363 +66620,0051688,79331 +66622,0024124,36499 +66639,0891592,15268 +66652,0910934,17317 +66655,0475317,434 +66659,1142800,15670 +66662,0019699,206034 +66665,1176740,19255 +66667,0053901,43034 +66686,0039941,29117 +66691,1112782,14979 +66701,0479275,18208 +66718,0050458,41054 +66720,0042249,37468 +66744,1023490,8832 +66758,0061196,50013 +66762,0869994,8279 +66773,0497316,14063 +66783,0758746,13207 +66785,0901487,15067 +66789,1214983,14853 +66798,0838232,15159 +66801,0479044,18529 +66808,0400426,7916 +66811,0373915, +66813,1200060,90324 +66815,0269771,67384 +66854,0363060,36281 +66857,0022125,42818 +66859,1059773,29717 +66861,0027489,43873 +66866,0869152,17158 +66868,0782154,24221 +66870,0961066,17077 +66897,1080930,47497 +66900,0493424,10049 +66902,0448114,9914 +66904,0091767,40227 +66915,0102802,20421 +66927,0388474,125858 +66932,0195630,111014 +66934,1227926,14301 +66941,0431114,8382 +66943,0465430,13849 +66947,0052733,27061 +66977,0022877,43146 +66979,0488023,85330 +66981,0028653,53574 +66983,0041445,74286 +67009,1104783,30906 +67068,0093811,26939 +67070,0106309,26127 +67073,0489018,13613 +67087,1155056,16538 +67096,0041178,19998 +67098,0055796,5334 +67135,0040643,26387 +67138,0432318,7517 +67140,0022698,34474 +67168,0926063,13094 +67186,0492044,18781 +67190,0186311,27757 +67193,1135487,16558 +67197,0448011,13811 +67223,0990413,17003 +67233,0304296,80314 +67247,1164092,161006 +67252,0785035,16353 +67255,1132620,15472 +67257,0086981,52528 +67267,0862846,13090 +67295,1287845,15854 +67298,0044683,53651 +67300,0036037,58076 +67314,0400688,143240 +67316,0442947,73856 +67331,0416243,14180 +67354,0368296,36836 +67356,1103984,17166 +67359,0048199,47739 +67361,1124039,16325 +67363,0778749,113321 +67365,0465375,17097 +67370,0067885,46799 +67405,1385824,19950 +67408,0892782,15512 +67420,0493402,14735 +67422,0449573,24220 +67424,0825239,21946 +67429,1172203,20529 +67457,0943326,30155 +67459,0405977,39914 +67464,0023590,42914 +67501,0097676,36392 +67504,0067324,62437 +67508,0765432,6968 +67534,0490086,13161 +67536,0116036,16197 +67603,0024902,53828 +67607,0498329,34015 +67618,0494277,13808 +67620,1073241,14637 +67624,1085507,15912 +67657,0478329,18096 +67665,1157605,18094 +67667,0041198,33811 +67675,0027040,53863 +67695,1197628,16991 +67702,0022279,99283 +67704,0033173,94854 +67706,0043090,43396 +67734,1091722,16614 +67744,0128378,31273 +67748,0475380,18558 +67784,0418586,16071 +67788,1093908,20048 +67792,0865297,8747 +67799,1234541,16258 +67801,1173745,15451 +67803,0221455,330711 +67809,0073241,82962 +67812,0200192,22705 +67839,0981072,16005 +67845,0387701,55748 +67847,0377651,39331 +67850,1198399,284117 +67852,0419477, +67865,0107751,55500 +67867,1098327,14164 +67869,0027623,3632 +67871,0787505,9841 +67873,0439860,91099 +67876,0042629,97421 +67878,0050652,43250 +67881,0365100,142973 +67888,0026676,55773 +67890,0053182,1940 +67892,0053690,33726 +67894,0047338,61070 +67896,0045991,93562 +67898,0435653,13557 +67900,0454839,10041 +67907,0127626,31132 +67923,1013752,13804 +67925,0020768,34796 +67927,0037761,35849 +67929,0036400,35022 +67931,0038268,45965 +67949,0792948,19976 +67957,0094075,1387 +67980,0079168,21376 +67983,0833960,16867 +67997,1226774,19833 +67999,1249171,16919 +68012,1294790,15580 +68028,1133991,15801 +68039,0803029,8902 +68044,0046878,19618 +68067,0045737,83099 +68069,0053220,27644 +68073,1131729,18947 +68099,0180443,128857 +68115,0041886,46096 +68128,0410321,67857 +68135,0974661,16996 +68137,0471834,168538 +68153,0087481,8833 +68157,0361748,16869 +68159,0473705,16995 +68161,0045992,99224 +68163,0041610,94139 +68168,0109747,10000 +68173,0015361,44967 +68175,0318413,91603 +68177,0026614,84908 +68180,0395461,45882 +68194,1226271,21641 +68201,0814131,13119 +68205,1121931,15092 +68214,0010155,51472 +68216,0017437,51263 +68222,0491720,24365 +68226,0190506,38872 +68233,0044872,95977 +68237,1182345,17431 +68242,0110274,38870 +68244,0120619,67849 +68246,0121297,112582 +68254,0019400,205410 +68259,1241195,13123 +68263,1038043,33974 +68265,0276216,45949 +68269,0962736,18320 +68271,0057829,49571 +68273,0462441,53204 +68288,0865554,17436 +68314,1205551,30843 +68319,0458525,2080 +68324,1103982,17680 +68329,0026273,53624 +68337,1051245,120528 +68339,1058058,17073 +68347,1127715,21191 +68349,0107411,270952 +68358,0796366,13475 +68392,0210094,24273 +68411,0036705,38464 +68442,0363780,22152 +68444,0460810,16279 +68462,0847877,72891 +68472,0910559,6461 +68474,0024500,23391 +68480,0079718,11160 +68482,1117667,168643 +68484,1264363,19350 +68486,1326972,15384 +68489,1331092,156908 +68495,0484437,48116 +68498,1139800,15342 +68511,0890883,25004 +68513,0448179,17124 +68515,0064203,210487 +68517,0067484,64115 +68519,1231277,17532 +68522,0393597,10946 +68524,0024516,23590 +68533,1359583, +68536,0278736,30416 +68539,0036092,65503 +68541,0084923,38869 +68544,0079914, +68548,0880648,17027 +68552,0924129,15577 +68554,0808151,13448 +68572,0279176,288035 +68574,0064240,92312 +68576,0024293,80592 +68590,0275410,90120 +68593,0893401,17635 +68597,0070653,42738 +68600,0787470,14141 +68612,1049400,30312 +68614,0079875,47906 +68645,0058323,111752 +68647,0064695,122160 +68650,1032819,17740 +68653,0026276,42943 +68659,0489049,13532 +68662,0104283,18495 +68664,0103877,180162 +68667,0810945,25218 +68674,0967945,24053 +68676,0067456,53947 +68685,0984200,15705 +68690,0996605,14448 +68749,1082853,21583 +68791,0438488,534 +68793,1078912,18360 +68831,0479046,38008 +68833,0943512,2049 +68835,0476991,19375 +68838,0977648,23997 +68843,1020885,18238 +68848,0844286,21755 +68853,0043781,43378 +68855,0042744,121707 +68858,1156173,30239 +68865,0060623,101362 +68868,0062228,8211 +68872,0038823,8429 +68874,0073198,44012 +68884,0920473,10541 +68886,0478724,19955 +68890,0035996,90799 +68892,0070605,39194 +68897,0081110,36460 +68899,0016123,27502 +68901,0990404,15555 +68915,0067429,40022 +68919,0056910,86764 +68921,0035082,42062 +68923,0449471,14126 +68932,0821642,17332 +68941,0844708,18405 +68943,0346513,155426 +68945,0169880,21832 +68952,1127180,16871 +68954,1049413,14160 +68956,0053579,21967 +68959,0485323,14003 +68963,0808244,16899 +68965,1153706,21724 +68967,0836700,8282 +68974,0019379,31404 +68976,0066989,42513 +69005,0024008,83868 +69007,0062975,4934 +69027,1167660,15588 +69039,0033606,61109 +69042,0030138,129089 +69061,1138489,14857 +69069,1083456,17927 +69072,0040970,77822 +69075,0120376,14330 +69088,0059894,26508 +69093,1276107,28677 +69103,1314280,15712 +69118,0910905,13975 +69122,1119646,18785 +69131,0443559,16164 +69134,0870984,17609 +69136,0077451,33104 +69140,0479760,37924 +69155,0048484,43321 +69159,0425151,18869 +69169,0040820,17829 +69187,1230448,16345 +69195,0048350,81512 +69199,1043537,115306 +69201,0230992, +69203,0358146,200796 +69211,0415679,27134 +69213,0101583,37024 +69217,0025455,53622 +69219,0074103,761 +69222,0066423,11914 +69224,0119620,64968 +69227,0106827,34300 +69231,0178031,58018 +69233,0009937,70806 +69241,0080196,45560 +69243,0870195,26506 +69251,0479162,13856 +69253,1095174,14536 +69255,1024899,13710 +69269,0456165,15084 +69275,1278340,14451 +69278,0457400,18162 +69280,1059905,34482 +69284,1145446,16324 +69299,0021885,50600 +69302,1122599,18468 +69304,0780567,19724 +69306,1111422,18487 +69310,0407851,27799 +69324,0920458,8883 +69332,0478149,49767 +69336,1278336,29314 +69339,0460742,40465 +69341,0425150,10272 +69354,0035429,23924 +69356,0080180,18061 +69358,1152397,21179 +69361,1160629,42341 +69370,0078128,18760 +69372,0997147,11693 +69374,0108596,40509 +69379,0409793,15073 +69381,0102045,31544 +69387,0054936,84119 +69394,1277737,33409 +69406,1041829,18240 +69419,0056961,51260 +69421,0069976,28110 +69429,0053917,89484 +69432,0492487,48288 +69436,1045778,17610 +69438,0962774,8933 +69442,0054169,156917 +69444,0048077,37911 +69446,0061093,38773 +69448,0479519,8269 +69451,0100152,45779 +69453,0073260,27085 +69458,1032821,8940 +69460,0054205,133 +69464,0233651,20152 +69466,0409681,14938 +69469,1389762,19508 +69475,0060358,66770 +69481,0887912,12162 +69483,0057643,4498 +69485,0026047,176810 +69487,0051362,170477 +69489,0065908,75015 +69493,1042570,18507 +69495,0910847,16240 +69498,0042906,50030 +69500,0074251,81223 +69503,0085603,24772 +69506,0100079,67515 +69509,0006206,29082 +69516,1135092,8284 +69518,0808425,4250 +69521,1092007,32451 +69524,0772251,62128 +69526,1055369,8373 +69529,1014762,62320 +69542,0102178,24734 +69545,0782037,75317 +69552,0436854,8939 +69559,0041368,35404 +69565,0775434,91205 +69569,0050562,53906 +69574,1034325,19079 +69604,1178663,19265 +69606,0821640,12556 +69609,0419815,43638 +69611,0073133,4990 +69626,0045886,43192 +69640,1152836,11322 +69644,1080016,8355 +69652,1166085,10821 +69654,1131748,176241 +69666,1340123,47075 +69670,0101874,41385 +69674,0043812,25728 +69677,0039294,20301 +69685,0285627,24232 +69687,0048213,242737 +69689,0098189,50201 +69699,0087644,52109 +69701,0047499,251657 +69704,0489244,24927 +69706,0119728,183871 +69708,0443335,156063 +69712,1078588,10024 +69714,1144804,10788 +69720,0475298,15423 +69722,0090948,33321 +69729,0242572,69426 +69732,0354690,16226 +69744,0021673,42659 +69746,1295071,16440 +69748,0104604,37021 +69753,0035195,62186 +69755,0025440,22612 +69757,1022603,19913 +69761,0111845,47104 +69766,0296108,17359 +69768,0026667,47920 +69771,0018379,82474 +69773,0041615,45184 +69784,0889583,18480 +69786,1015971,64831 +69788,1454902,266814 +69792,0063256,4931 +69800,0111464,301233 +69803,0073000,18901 +69805,1146438,14728 +69809,0972558,16911 +69811,0476323,70648 +69818,0893402,8884 +69821,0110490,38940 +69830,1361558,19105 +69842,0944101,14758 +69844,0417741,767 +69849,0075572,67479 +69856,0091507,59847 +69858,0086890,60623 +69860,0901481,14687 +69864,0799948,351862 +69873,0120882,10353 +69878,1160424,49360 +69880,0117780,245367 +69904,0470055,9592 +69906,0195165,68572 +69908,0060479,84278 +69911,0047469,43195 +69917,0282171,23964 +69919,0837800,14531 +69926,0034236,76465 +69928,0274678,51302 +69931,0069823,76452 +69934,0404254,14197 +69945,0046969,20174 +69947,0076709,48773 +69949,0089937,60008 +69951,1054606,8054 +69953,1278293,19929 +69957,0100624,123777 +69964,0052604,18696 +69971,0068883,3478 +69974,0896927,30713 +69979,0338085,54759 +69981,0960098,30121 +69986,0109702,64901 +69988,1334537,23720 +69992,0829297,14843 +69995,0938341,8937 +70008,0472118,9974 +70015,1194238,22302 +70032,0833557,20382 +70046,0070868,53868 +70048,0101660,69342 +70050,0090753,83078 +70062,0138541,37516 +70064,1203523,19727 +70088,0070248,56150 +70093,1179258,22215 +70102,1104806,18635 +70118,0066317,4983 +70121,0024805,53830 +70126,0358631,38971 +70128,0239670,49691 +70130,0081076,39415 +70133,1187041,20407 +70146,0048535,22408 +70148,0026846,23286 +70152,0965355,69166 +70155,0160835,97995 +70157,0035916,67967 +70159,1148204,21208 +70173,0103626,131351 +70175,0948547,16056 +70181,0026908,53781 +70183,1142988,20943 +70186,0087400,67463 +70188,0054476,82311 +70197,1221143,204996 +70201,0095302,47870 +70204,0041994,104083 +70206,0844479,21407 +70208,0971209,12403 +70223,0044602,62547 +70227,0433963,15422 +70229,0837796,14833 +70235,0315459,41183 +70237,1251357,44578 +70282,0775552,20856 +70286,1136608,17654 +70293,1135503,24803 +70295,1129435,38879 +70301,1198138,17335 +70305,1075417,13836 +70315,1161443,20071 +70318,0414879,13730 +70331,1213922,15438 +70334,1114677,18126 +70336,1046173,14869 +70342,1048171,14415 +70344,1127877,30250 +70355,0099341,121895 +70361,1160368,17134 +70366,0093974,50719 +70370,0085533,105703 +70372,0085503,176650 +70374,0260193,17199 +70377,0043131,20153 +70410,1119191,20777 +70418,0172348,54982 +70421,0087164,92989 +70423,0090185,45999 +70425,0167137,18908 +70432,0235376,31067 +70451,1029235,13752 +70465,0783532,22600 +70488,0249248,99657 +70490,0025903,40797 +70492,0028510,40743 +70495,0913401,17285 +70497,1037156,12407 +70500,0294805,97252 +70507,0819953,18440 +70511,0025699,22602 +70513,0025969,40799 +70517,0088050,40071 +70521,1117666,19422 +70529,0211445,31670 +70531,0025830,38107 +70533,0923811,15137 +70535,0414243,37047 +70537,0077941,66949 +70541,0048757,77285 +70543,0160535,64728 +70545,0848281,11115 +70549,0104118,22795 +70559,1111918,21878 +70562,0806165,18585 +70565,1092633,19905 +70567,1185836,22051 +70571,0402115,25902 +70587,1122836,16634 +70591,0247419,58421 +70593,0112869,56264 +70595,0074963,31913 +70597,1176251,14940 +70599,0452694,24420 +70607,1104835,13797 +70609,0443076,12605 +70611,0407008,128856 +70629,0105790,145066 +70637,0830570,31216 +70641,1151922,19556 +70643,0976222,23367 +70649,0096908,49982 +70656,1286800,45852 +70659,0493420,24999 +70661,1047494,16710 +70663,1032815,19840 +70670,0060305,25047 +70678,0996948,33199 +70682,1142972,22025 +70684,0093633,99599 +70687,1331064,25183 +70689,0042771,19170 +70695,1045655,14745 +70697,0436339,19585 +70703,0103962,41682 +70706,1082601,17336 +70708,0964185,11928 +70712,0050091,98289 +70722,0113256,99600 +70724,0042960,18281 +70726,1074929,8895 +70728,1172570,18533 +70730,0756703,30319 +70740,0831299,18820 +70742,1186238,85097 +70751,0228528,164741 +70762,0481273,12839 +70769,0332136,15775 +70789,0043018,44655 +70792,0044186,43384 +70795,0027697,46351 +70797,0023038,38662 +70800,1141486, +70802,0396707,18032 +70804,0030522,677 +70806,0030523,685 +70817,0118645,92011 +70819,0023456,154430 +70821,0847474,49835 +70824,1185837,18759 +70826,0469979,106028 +70828,0395417,200039 +70831,0791318,87683 +70833,0020298,42638 +70839,1320347,33314 +70843,1363127,21657 +70846,1186369,8899 +70849,0054821,20778 +70862,1229360,22492 +70864,0790590,17153 +70867,0464096,21236 +70869,1359554,35059 +70871,0028445,43878 +70877,0048387,29967 +70880,0060050,68692 +70887,1204979,15641 +70889,0075086,21955 +70891,1343115,43303 +70898,1142433,25704 +70912,1095442,21371 +70914,0047189,23115 +70920,1275778,41427 +70924,0080103,184781 +70927,0973844,36108 +70932,0865559,23049 +70946,0105643,26914 +70948,0110377,121655 +70958,0948535,15457 +70961,0058382,758 +70964,1196112,43734 +70968,0808232,41496 +70970,0436364,12410 +70976,0823240,45458 +70978,0092550,64544 +70984,1127896,26320 +70988,0117201,41127 +70990,0116607,35203 +70992,0847880,34869 +70994,1311067,24150 +71007,1260995,65990 +71011,0035884,60216 +71014,0038453,21336 +71017,0113131,35044 +71027,0082053,2861 +71029,1500516,23451 +71033,1305806,25376 +71047,0080594,59314 +71057,0472033,12244 +71065,1332054,58450 +71067,0060214,5060 +71069,1300853,15809 +71094,0466943,29914 +71096,0089066,52710 +71102,0024663,140887 +71104,0033038,40979 +71106,0910554,22494 +71108,1149362,37903 +71110,0331041,227370 +71112,0822833,17899 +71114,1272013,18120 +71116,0352524,106006 +71129,1384590,17445 +71131,1000764,63581 +71133,1202222,23736 +71135,1188729,19898 +71139,0475860,20171 +71141,0115487,21700 +71143,0026866,57412 +71147,0048394,72083 +71152,0382301,17046 +71154,0790665,6309 +71156,1234548,10313 +71158,1193627,20715 +71160,1323925,17632 +71164,0045554,31936 +71168,0052609,40954 +71170,0069398,8071 +71178,0048933,43255 +71180,0076517,42225 +71182,0073800,689 +71184,1176244,22774 +71187,0014358,53430 +71189,0022150,32317 +71199,0063291,47576 +71201,1230164,2979 +71203,1228933,17618 +71205,1131734,19994 +71211,1130080,11323 +71216,0019946,117531 +71237,0116533,42762 +71239,0906734,3511 +71241,0048691,37317 +71243,0041954,25900 +71246,1190858,29134 +71248,1225822,12569 +71252,1144884,19912 +71254,1034032,18501 +71264,0844471,22794 +71266,0110936,279606 +71268,1385912,26367 +71276,0108137,43757 +71278,0023243,23253 +71280,0053455,114618 +71282,1286537,18570 +71285,1339268,36703 +71300,0064073,46768 +71302,0051380,18724 +71304,0762073,22536 +71318,0858486,16873 +71322,1188998,22326 +71325,0899106,25643 +71327,0810784,29963 +71341,0450336,30685 +71343,0046353,25549 +71348,1282257,63615 +71350,0045124,26009 +71357,0374279,26500 +71361,0119347,35113 +71363,0381104,40225 +71372,0337636,17455 +71374,0354623,12699 +71376,0479354,25532 +71379,1179904,23827 +71382,0875705,14579 +71384,0039135,185591 +71386,0049225,28299 +71390,0996966,16194 +71402,0047582,62396 +71404,0053882,18974 +71409,1423592,64450 +71413,0028575,44208 +71416,0033704,19136 +71418,1153690,25112 +71426,0065553,28051 +71429,1262981,20178 +71433,0058006,67612 +71438,1087578,25050 +71442,0045034,43360 +71444,0050870,41053 +71446,0057336,54563 +71448,0073915,76636 +71450,1232207,22074 +71453,0041842,91262 +71458,0064300,38670 +71460,1084972,22717 +71462,1313104,23128 +71464,1019452,12573 +71466,1174730,28053 +71468,1071804,24869 +71472,0001527,90056 +71474,0085448,126597 +71482,1010055,24561 +71484,0985058,36800 +71486,0856778,14476 +71488,0085816,104275 +71490,1220213,21398 +71494,0419724,23127 +71497,0059715,39506 +71500,0862856,23202 +71503,0907676,24001 +71518,1172233,22798 +71520,1058017,23082 +71522,1286798,62635 +71525,0034424,61524 +71530,0986263,19959 +71533,1097013,18065 +71535,1156398,19908 +71537,1016075,28665 +71542,1331025,23044 +71545,0102638,54191 +71550,1018818,18176 +71556,1038971,23532 +71558,0037492,46068 +71560,0042179,33474 +71571,1232783,26688 +71573,0365929,22787 +71575,0405393,4786 +71579,1174732,24684 +71582,0164013,77246 +71591,0044320,63795 +71606,0086542,63978 +71619,1035736,11156 +71634,0028313,74469 +71638,0881934,44054 +71640,1333634,26763 +71650,0081746,99189 +71653,0072761,18710 +71664,0047794,33476 +71668,1078940,19899 +71670,0881891,23706 +71675,1504402,142084 +71677,1360866,39488 +71685,0018066,106254 +71688,1093370,11807 +71691,1097643,17622 +71693,0056846,60773 +71695,0018839,885 +71697,0025610,126136 +71700,0896534,23966 +71702,0477331,188858 +71705,0009062,48214 +71707,0416938,44685 +71709,0087433,92990 +71717,0024991,43902 +71719,0030063,43850 +71726,1499213,33857 +71728,0274518,33380 +71730,1276996,70569 +71732,0902290,21910 +71736,0103190,4734 +71738,0034175,42678 +71740,0044103,44334 +71743,0019558,42537 +71745,0386117,16523 +71748,0459913,46931 +71750,0061465,1686 +71755,0062352,67062 +71758,0054073,59239 +71760,0073166,85927 +71762,0079020,63107 +71765,0780524,29124 +71779,0075627,44630 +71792,0009611,53423 +71795,0046034,37340 +71804,0087983,38702 +71806,0097782,43990 +71808,0094750,18214 +71810,0126388,3513 +71817,1326194,19837 +71821,1100119,25132 +71823,0808399,12572 +71838,1197624,22803 +71840,0042464,32563 +71851,0068727,52941 +71865,0105256,180576 +71867,1075110,33806 +71873,0108650,50936 +71876,1129445,8915 +71878,0814335,19904 +71888,0098283,120518 +71899,0978762,24238 +71902,1186370,19918 +71910,0471041,24056 +71926,0926380,23512 +71928,0896529,31189 +71931,0064386,54154 +71933,0057813,85763 +71936,0049843,37637 +71938,0059776,94663 +71940,0060860,69912 +71942,0044446,51619 +71966,0189219,21058 +71970,0037193,30506 +71973,0077309,97029 +71976,0052295,71041 +71978,0017128,98914 +71980,0021409,54419 +71986,0063084,89681 +71989,0056371,42788 +71991,1224366,8926 +71993,1353997,16398 +71995,1391579,24392 +71999,0014646,2973 +72001,0015167,32928 +72011,1193138,22947 +72013,0238768,141640 +72016,0455940,168607 +72018,0358500,13558 +72022,0079007,105419 +72027,0099949,47430 +72030,0791268,34631 +72032,0906743,234937 +72035,0084362,19035 +72037,0098481,56619 +72039,1100048,26191 +72041,1100053,23173 +72043,1482967,53985 +72045,0260688,49167 +72090,0043251,39306 +72092,0048919,71171 +72094,0465737,84089 +72096,0480163,31021 +72100,0071908,173171 +72102,0414469,48329 +72104,0096880,44338 +72109,1425928,36577 +72113,1130088,22447 +72117,0026725,43893 +72124,0100879,65403 +72129,1233227,22804 +72131,1477715,13576 +72142,1128075,28422 +72153,0106661,108021 +72156,0120393,94653 +72159,0780180,1697 +72161,0045465,36949 +72163,0060048,38680 +72165,0450405,24418 +72167,1300851,22821 +72169,1213585,22800 +72171,1190536,24804 +72176,1228953,29150 +72178,0475783,14968 +72204,0492754,38065 +72209,0375568,16577 +72212,0029347,61647 +72216,0079839,37767 +72224,1161418,22820 +72226,0432283,10315 +72228,0974014,30431 +72235,0112491,197552 +72249,1023441,38984 +72258,0114697,36278 +72261,0114108,54648 +72263,0196106,32834 +72265,0795438,14834 +72267,0188160,53263 +72273,0055310,51317 +72276,0052924,70555 +72281,0062663,63401 +72283,0019286,84273 +72287,0345672,82040 +72290,0019649,85715 +72292,0057654,836 +72294,1067106,17979 +72298,0044860,43370 +72300,0129134,113520 +72302,0024402,94638 +72304,0035881,84656 +72308,1286130,105077 +72310,0062804,95600 +72315,0006780,84772 +72321,1515158,106537 +72325,0052954,53767 +72327,0051959,18930 +72330,1134629,4475 +72332,1517595, +72334,0765849,24565 +72336,0032397,108200 +72340,0036203,77121 +72342,0930071,52048 +72344,0013688,75804 +72356,1425244,24480 +72360,0330801,37060 +72363,0014770,176273 +72367,0758751,19851 +72369,1054122,24293 +72378,1190080,14161 +72380,0362478,22825 +72386,0913425,8088 +72388,0120244,70805 +72393,1220198,22824 +72395,0929632,25793 +72400,0042006,23189 +72405,1095217,11699 +72407,1259571,18239 +72424,0298296,17774 +72479,0790712,28089 +72483,0435679,14859 +72485,1172963,7860 +72489,1186367,22832 +72491,1337051,32511 +72505,0367478,14172 +72507,0458471,19167 +72512,0459127,121088 +72516,0834941,73501 +72524,0070902,2261 +72537,0462329,9924 +72552,0087866,30231 +72554,1242422,33273 +72557,1139319,33035 +72559,0076297,55628 +72571,0068498,112687 +72574,0783598,20411 +72583,0094349,71329 +72585,0026564,32543 +72587,0067546,54966 +72589,0048820,91426 +72591,0120786,6058 +72593,0196158,31002 +72601,1543920,34003 +72603,1526300,25472 +72605,0765010,7445 +72607,0138645,23269 +72609,0143001, +72612,0081040,47466 +72618,0128648,109175 +72621,0415853,153118 +72624,0878674,18595 +72626,0009932,53516 +72628,1267319,27258 +72630,0804529,20764 +72632,1310569,25467 +72634,0803005,161094 +72637,0938780,267523 +72641,0878804,22881 +72643,0017961,93743 +72645,0096337,97035 +72647,0131149,88276 +72649,0066639,94466 +72651,0018523,99875 +72653,0378889,126863 +72657,0076147,58435 +72668,0257231,1284 +72670,0804443,19116 +72672,1232831,25716 +72674,0010806,36106 +72678,0130232,90041 +72681,0046712,104776 +72683,0022080,8353 +72692,0238414,15400 +72694,1247692,22640 +72696,0976238,22949 +72698,0377100,36272 +72701,0762125,16866 +72703,1175506,12404 +72712,1241325,23951 +72714,0358456,30238 +72718,1087527,29406 +72720,1315981,34653 +72722,1107859,14452 +72724,1227177,18472 +72726,1186366,51284 +72731,0380510,7980 +72733,1057500,22954 +72735,0115832,2143 +72737,0780521,10198 +72741,0780511,26171 +72751,0055558,32634 +72762,0913354,4597 +72764,0936471,37190 +72777,0091276,31909 +72781,1104746, +72784,0091415,62131 +72787,1023500,20606 +72815,0892773,139212 +72822,1031947,57654 +72833,0448993,18175 +72840,0099312,88067 +72842,0110805,30526 +72844,0020163,347 +72846,0065417,35867 +72848,0053279,64414 +72850,0084345,83491 +72852,0057207,56800 +72854,0014109,38759 +72856,0040607,28392 +72866,0059856,92432 +72870,0048610,45987 +72872,0114432,55261 +72874,0119872,27719 +72876,0022017,42836 +72878,0039074,101382 +72880,0054880,47122 +72883,0060063,89785 +72885,0030055,129417 +72897,0019574,53161 +72899,0317171,47046 +72904,0460480,82404 +72906,0059503,128846 +72908,0038476,63764 +72910,0093133,148597 +72913,1421032,46886 +72915,0063417,129303 +72919,1314228,24438 +72921,0007361,174598 +72923,0074367,60639 +72925,0080629,125512 +72927,0419704,14704 +72929,0242285,100122 +72931,0084764,48496 +72934,0035105,33052 +72936,0038084,140281 +72947,1305714,26032 +72949,0850667,29697 +72953,0976026,16576 +72956,1175500,272772 +72958,1129428,19197 +72960,1527679,23947 +72980,1068678,25968 +72982,1461312,61872 +72995,0070468,32615 +72998,0499549,19995 +73000,0875034,10197 +73002,0489070,9650 +73008,0273148,64481 +73010,0450664,10268 +73015,1230414,22897 +73017,0988045,10528 +73023,1263670,25196 +73025,1233571,13988 +73027,0824758,36811 +73031,0077768,40054 +73042,1231580,23398 +73049,1086216,28520 +73051,0499375,15772 +73056,0005916,132397 +73060,0443506,38908 +73064,0077729,42206 +73086,0035860,26533 +73089,1183251,25137 +73099,0277255,22043 +73101,1242545,18898 +73106,1407050,26123 +73109,0049875,40494 +73111,0066448,27172 +73114,0048990,17591 +73117,0058335,49687 +73121,0139465,51831 +73123,0120851,44808 +73125,0016004,121379 +73133,1185384,41886 +73135,0790676,24050 +73137,0016481,94803 +73139,0066192,156015 +73141,0017162,94727 +73143,0139153,132392 +73145,0038206,114790 +73148,0194722,36293 +73150,0179477,26129 +73152,0028436,110733 +73154,0033686,96107 +73158,0015687,89647 +73160,0096142,27390 +73162,0199650,122163 +73165,0119957,352237 +73168,0806203,25769 +73170,0986213,14159 +73183,0070077,25680 +73185,0318635,36117 +73188,0027951,43876 +73194,0084808,63215 +73196,0042031,124994 +73198,0129389,54051 +73200,0025478,80960 +73202,0083230,97032 +73204,0032086,148536 +73208,0813541,64736 +73211,1226681,23963 +73224,1512792,35148 +73226,1144866,26465 +73228,0218080,51422 +73230,0214871,60489 +73232,0847167,16204 +73234,1210801,23404 +73236,1182609,20236 +73240,0944114,148077 +73245,0048283,42564 +73256,0095286,65572 +73261,0051028,25190 +73266,0403702,22327 +73268,0433362,19901 +73270,1206488,28644 +73276,1300563,24458 +73284,0926110,13723 +73286,0858433,15791 +73290,1028532,28178 +73304,0105670,291554 +73306,0099506,149851 +73314,0446083,14773 +73317,0078119,147683 +73319,1216492,25195 +73321,1037705,20504 +73323,1343097,33613 +73328,0418239,57251 +73330,0068698,85126 +73334,0102458,123772 +73339,0074686,4286 +73344,1235166,21575 +73355,0147651,104320 +73359,0061736,4932 +73365,0946998,39023 +73370,0085101,113879 +73384,0115016,187401 +73386,0976246,25927 +73390,0419073,14173 +73392,1503769,28227 +73399,0258761,31875 +73401,0425321,44085 +73411,1543283,58589 +73413,1185431,26820 +73416,1143891,119905 +73431,1107860,24271 +73442,0271543,52273 +73444,0321997,95140 +73447,0026417,179066 +73449,0057634,37222 +73453,0431961, +73457,0044982,55197 +73460,0089507,87065 +73462,0109739,20551 +73464,0368688,28280 +73466,0402127,26125 +73469,0949815,26765 +73472,0250730,5707 +73475,0233105,323111 +73478,0390393,26961 +73480,0006745,126925 +73488,0806027,1450 +73492,1002539,101006 +73494,0028355,52429 +73499,0110419,81895 +73501,0049607,148435 +73504,0781435,46335 +73511,0892767,18476 +73513,0367110,15774 +73515,0472050,20107 +73523,1224153,12161 +73526,0051065,164421 +73529,0119413,101342 +73531,0093393,41970 +73533,0297905,89800 +73569,0092501,21521 +73572,1233219,44027 +73581,0120872,143098 +73587,1244668,31175 +73590,0929412,22274 +73608,0068688,4579 +73614,0075938,32097 +73617,1318022,83430 +73630,0023305,13634 +73639,0078799,144089 +73641,0085694,40229 +73664,0944834,10800 +73668,0906783,277622 +73676,0485976,25676 +73678,0105871,44941 +73681,1320082,25205 +73708,1379667,17602 +73710,1247703,14981 +73713,0329485,45699 +73718,0974613,17606 +73730,1393000,25594 +73741,1182921,25602 +73744,1380130,40660 +73754,1334556,101376 +73759,0495212, +73772,0104753,49956 +73774,0030127,43844 +73776,0995029,15930 +73778,0028201,65642 +73780,0056537,86303 +73782,0035823,63771 +73790,0029080,52229 +73804,0463872,2395 +73808,1190539,13855 +73813,0800334,21153 +73818,0115928,83994 +73820,0841108,5761 +73822,0082727,57978 +73824,0075622,23999 +73826,0060486,42720 +73829,1350498,17911 +73831,1499228,32559 +73834,1288482,253476 +73851,0090968,69061 +73854,0058536,13382 +73858,0918511,13358 +73860,1266029,33511 +73862,1149400,27182 +73868,1104694,29110 +73870,1235448,23410 +73872,1491605,266740 +73874,0346631,22164 +73876,0443676,15255 +73879,0273842,71885 +73881,1187043,20453 +73883,0137224,108573 +73885,0948544,16095 +73900,0378072,4253 +73912,0045808,43346 +73914,0067774,40083 +73919,0077295,61864 +73922,0105297,59390 +73929,1038686,22894 +73954,0035616,15807 +73967,0019788,85507 +73978,0039931,72241 +73981,0033873,22404 +73983,1187044,27567 +73987,0136478,147692 +73989,0099397,41787 +73991,0102733,106482 +74014,1194620,26752 +74017,0091051,48609 +74056,0304820,251281 +74061,0423881,160266 +74064,1170391,21033 +74075,1185266,23988 +74086,0835456,186129 +74089,0054176,51120 +74095,0098692,21453 +74097,0003740,5153 +74099,0033226,17836 +74103,0142998,51429 +74107,0037384,32130 +74109,0026519,126083 +74111,0950739,13522 +74113,0062041,47370 +74115,1472122,31156 +74127,0072156,84104 +74129,0439182,46336 +74131,1244659,27569 +74135,1404661,62775 +74137,0033174,120109 +74139,0365675,8349 +74141,0088040,75877 +74144,0026246,43891 +74148,1286821,33295 +74150,1084955,29501 +74152,0804558,16453 +74154,1185416,13477 +74156,1226273,12201 +74159,0430063,47554 +74161,0026199,33395 +74164,0015202,2974 +74204,0969269,14016 +74226,0105438,94706 +74228,1187064,26466 +74230,0117555,49807 +74255,0095958,99749 +74257,0099026,79509 +74261,0053715,46623 +74263,0026261,52863 +74266,0065872,92283 +74271,0084881,42137 +74275,1045772,8952 +74282,0092571,40724 +74284,1230155,202855 +74287,1219336,33159 +74297,0424273,26137 +74300,0104892,71825 +74302,0106850,103201 +74306,0439817,98246 +74310,0030944,33630 +74317,1530487,51675 +74319,0104060,281287 +74324,1278469,33602 +74327,0926759,12169 +74332,0093240,252407 +74337,0046903,43333 +74339,0078382,42212 +74342,0056903,33728 +74355,1133993,27989 +74370,1172994,25983 +74382,0027367,42683 +74404,0347167,271677 +74406,0449306,46423 +74416,1232776,24469 +74426,0213890,11518 +74428,1027658,7344 +74431,0499262,4887 +74434,0165546,51022 +74436,0106449,31578 +74438,0110054,18670 +74446,0264695,25293 +74448,0281173,59013 +74450,0817230,32856 +74452,0780653,7978 +74456,0819755,60086 +74458,1130884,11324 +74471,0270645,90052 +74473,0310851,81382 +74475,1221141,8898 +74478,0122804,183946 +74480,1049405,17334 +74484,1212974,26715 +74486,0790799,19311 +74488,1235796,38448 +74491,1329539,45988 +74493,1289437,20047 +74504,1364487,55522 +74506,0056884,81399 +74508,0844330,13949 +74510,1216487,24253 +74512,1422757,15324 +74530,0814255,32657 +74532,1385867,23742 +74538,0060648,36457 +74541,1337032,27561 +74545,1139328,11439 +74547,0065611,42586 +74553,0485601,26963 +74573,1183921,32868 +74575,0064952,30298 +74580,1273678,23172 +74582,1220628,30128 +74588,0042296,29381 +74590,0037795,42295 +74595,1210039,41894 +74613,0046429,67736 +74619,0448965,25950 +74621,1241316,32124 +74624,1186830,26428 +74630,0052427,56931 +74641,1146325,12273 +74647,1220220,22805 +74649,0886531,79519 +74653,1075419,20083 +74657,1143110,29388 +74668,1247640,15357 +74671,0796355,20406 +74673,1335992,22166 +74675,1380232, +74677,1352852,18489 +74679,1433856, +74681,0048481,120280 +74683,0282744,19962 +74685,0455407,29427 +74688,0989757,22971 +74696,1512201,45576 +74698,0808510,23023 +74701,1232790,29785 +74706,0257497,63195 +74727,0068519,20871 +74731,1087842,14235 +74733,0478813,71370 +74738,0446719,25967 +74740,1016301,5595 +74748,1094275,32092 +74750,1245112,10664 +74752,0961722,28739 +74754,0368226,17473 +74760,0307057,200664 +74777,0133245,224642 +74780,0062681,117499 +74782,0087587,174748 +74787,1188996,26022 +74789,1014759,12155 +74791,1433540,40623 +74795,0947810,22972 +74799,0026164,119819 +74818,0914837,29182 +74820,0058085,17277 +74827,1077262,24424 +74851,1179034,26389 +74857,0048667,61880 +74859,0066858,31515 +74864,1319733,20618 +74868,1235124,23488 +74870,0080012,26771 +74886,0056556,43012 +74916,1234654,27583 +74937,0075359,6883 +74944,1210042,26390 +74946,0815236,34016 +74948,1289406,25941 +74965,1206082,34195 +74967,0768218,20471 +75335,0817544,18514 +75341,1403981,23169 +75345,0289181,18704 +75349,0283043,12718 +75351,0067490,15360 +75362,1297945,19969 +75367,0056952,85521 +75370,0107863,36233 +75374,1140941,16763 +75386,1029241,16350 +75389,0445939,15846 +75392,0920470,14765 +75395,1323045,44363 +75397,0033175,94182 +75402,0133186, +75404,1134674,34592 +75406,1247371,26430 +75408,1259781,59719 +75414,0066412,30903 +75416,0116401,26623 +75421,0121853,55412 +75423,0053772,48145 +75425,1134854,29426 +75428,0138792,217632 +75434,0195972, +75436,0060613,195204 +75438,0959329,34335 +75440,1386011,16239 +75443,0032636,80196 +75446,1104083,31299 +75803,1305583,34563 +75805,1038919,27573 +75808,1311699,32678 +75813,1151359,12834 +75816,1247704,31723 +75818,1334510,24225 +75820,0043665,49508 +75823,0090866,26558 +75825,0330691,15483 +75831,0019993,31678 +75927,1053830,45921 +75929,0368563,33788 +75938,0092848,5753 +75940,0038924,43495 +75947,0057318,32688 +75950,0046949,24973 +75962,0039349,42342 +75977,0040186,168171 +75979,0054898,80595 +75981,0060879,66953 +75983,0844457,16436 +75985,1053424,31867 +75990,0071155,42451 +75992,0051435,43138 +75994,0051436,4933 +76022,0038688,264241 +76030,0795351,28355 +76032,1196334,64104 +76034,1385869, +76049,0443524,194931 +76051,1043451,20027 +76054,0765128,36970 +76056,1328634,19616 +76060,1135525,34423 +76063,0069421,69872 +76066,0233481,20216 +76077,1231587,23048 +76079,1352824,28211 +76082,0279695,30779 +76085,0066482,89199 +76087,1264914,19152 +76089,0016884,38687 +76091,1216496,30018 +76093,0892769,10191 +76108,0105616,22582 +76111,1360860,37181 +76117,0492835,45035 +76119,0806147,15544 +76121,0486651,24874 +76127,0153997,51330 +76130,1288403,28510 +76132,0448206,11763 +76134,0037168,33421 +76137,0113718,48336 +76143,1181927,21467 +76145,0847520,24499 +76147,0762105,20825 +76149,0138674, +76151,0478338,16190 +76153,0827737,109572 +76156,1149363,52637 +76158,1371630,25053 +76163,0049043,104607 +76169,0271029,10469 +76171,0107214,11122 +76173,1149361,27936 +76175,0800320,18823 +76182,0128089,196328 +76185,0456543,213845 +76187,0044518,15382 +76189,1300159,31196 +76208,0063633,18352 +76210,1303828,34769 +76217,1445202,39830 +76238,0227194,132744 +76241,0331639,161179 +76244,1319694,35939 +76251,1250777,23483 +76255,0844948,16686 +76258,1010265,15973 +76269,0346723,4252 +76272,1238291,16759 +76277,0052876,43008 +76279,0027413,184741 +76288,0070760,57124 +76291,0113526,93519 +76293,1279935,35056 +76298,0100369,47090 +76301,0401398,13417 +76303,0065491,39931 +76312,0077275,24429 +76317,0838247,36419 +76533,0977646, +76680,0462219,22419 +76692,0048791,43327 +76695,0052190,76568 +76699,1183697,40855 +76701,0486420,22488 +76709,0499665,49131 +76711,1489246,35207 +76714,0021873,42669 +76716,0411323,18273 +76718,1192613,37223 +76720,0023241,53522 +76722,0031747,39459 +76729,1281374,35689 +76731,1519402,166375 +76736,0903622,34784 +76738,1583323,52903 +76743,0314121,8980 +76747,0783767,11801 +76751,1033467,25572 +76753,1390535,34583 +76755,1188113,11761 +76758,0004707,22943 +76763,1017451,27586 +76770,1422758,15323 +76772,0218871,1568 +76776,0064828,48688 +76778,1303889,33226 +76808,0799991,96010 +76811,0051786,27179 +76814,0236638,11303 +76816,0468704,18426 +76818,1267160,19939 +76823,0038182,36916 +76827,0372359,145902 +76829,1059817,79924 +76832,0960066,116983 +76836,0036947,17988 +76860,0087981,26178 +76862,0783515,19587 +76864,1479676,68987 +76866,1014809,36124 +76873,1269734,20781 +77141,0050379,22649 +77143,0038390,31561 +77146,0810868,1912 +77149,0066561,35002 +77154,1159961,47813 +77156,1116182,14766 +77162,0055382,36731 +77177,0884762,141714 +77179,1153037,19401 +77181,1358383,31869 +77184,0063094,26186 +77189,0034646,55236 +77191,1321509,34803 +77201,0862467,37861 +77204,0086232,47808 +77206,1196141,33217 +77208,0964586,29989 +77210,0222024,90634 +77212,0033987,26380 +77217,0048705,43326 +77223,0045589,44747 +77229,0036929,102419 +77231,0043629,228444 +77233,1039647,36443 +77238,0043459,4461 +77240,1226236,41110 +77259,1520496,31687 +77264,1083845,20497 +77266,0445953,12411 +77281,1241707,86097 +77291,0092580,25832 +77293,0078269,25338 +77296,0790721,20478 +77298,0430224,17960 +77300,1587414,33427 +77303,1318044,23568 +77307,1379182,38810 +77312,0791303,12408 +77316,1124052,21345 +77318,0096046,40168 +77326,0072752,44132 +77328,1259574,61917 +77330,1260581,61919 +77332,0119004,37857 +77336,1105281,33784 +77339,1226752,45663 +77342,0084778,129689 +77344,0101930,178736 +77349,1294136,35656 +77351,0996435,30427 +77353,1217243,12166 +77355,0240732,33501 +77357,1452291,36325 +77359,1259573,61920 +77362,0044117,43381 +77364,0480255,34813 +77370,1198408,33215 +77412,0069058,21036 +77414,1294226,35690 +77416,0085318,18406 +77421,1336617,39053 +77427,1467304,37169 +77433,0014532,24805 +77435,0036430,43517 +77444,0333902,121036 +77449,0068264,42476 +77451,0025607,111310 +77455,1587707,39452 +77463,0055489,94917 +77468,0418815,107643 +77470,0223783,64651 +77479,1027091,40594 +77481,0033787,23104 +77491,0054016,37605 +77493,0029310,91727 +77496,0032842,41597 +77509,0041746,62727 +77517,0062377,25385 +77538,0204504,64576 +77540,0970452,32985 +77550,0033405,44399 +77561,1228705,10138 +77596,1483831,32084 +77613,0037832,42191 +77615,0034636,190906 +77629,1584813,45615 +77658,0081846,205300 +77665,1392197,38579 +77667,1470023,37931 +77672,1106860,27004 +77680,0368668,10870 +77682,0324242,54117 +77688,0090206,4180 +77707,0383846,55135 +77709,1056437,15877 +77711,0405866,72272 +77715,0338977,1549 +77719,0102050,10171 +77721,0068457,38996 +77729,0074857,25699 +77731,1329454,18899 +77734,0892404, +77736,0843270,45380 +77738,0892074,48587 +77742,0046424,198600 +77744,0054380,36760 +77752,0110524,39767 +77770,1538503,211877 +77772,1249294,17005 +77774,0956101,26694 +77776,0060978,126421 +77778,0027255,121351 +77780,1219836,37178 +77783,0064777,125271 +77788,0808285,5178 +77795,0381940,34069 +77798,1179056,23437 +77800,1341167,37495 +77802,0472840,145217 +77808,0075774,42217 +77810,1111890,19173 +77816,1237900,42910 +77818,1376195,43090 +77820,0492389,35169 +77829,1355640,41116 +77831,1241338,25659 +77833,1640680,37828 +77835,0036384,38726 +77837,1132623,36950 +77841,1210106,37565 +77843,1379177,38542 +77846,0118528,12219 +77852,0468774,76822 +77854,0384700,37106 +77866,0955308,20662 +77875,0065695,31345 +77881,0307076,21245 +77883,1428457,60677 +77891,0046004,52620 +77893,1368116,34626 +77896,0071566,47737 +77899,0048191,28575 +77907,1546653,52249 +77910,0094642,51442 +77917,0027118,89462 +77919,0057933,66022 +77921,0036922,38697 +77931,1355599,37511 +77941,0460435,21794 +77944,1333631,36432 +77947,1524539,35572 +77951,0250264,106813 +77966,1284028,20311 +77968,1249414,81589 +77979,1042424,8929 +77981,0491044,7346 +77983,0045070,28894 +77985,0363249,44513 +77990,0079858,23050 +78000,0773318,96287 +78003,0821442,23538 +78006,0239381,27181 +78009,0066207,5590 +78011,0294725,53503 +78014,0312859,40998 +78016,0855729,5850 +78019,0479341,18516 +78022,1480660,31261 +78025,0269856,39056 +78030,1236484,24757 +78032,1331307,26587 +78034,1196204,36801 +78037,0372321,92501 +78039,1120985,46705 +78041,1103153,37821 +78043,0073498,261538 +78045,0067540,253232 +78054,0109744,173865 +78057,0011908,225503 +78059,0067929,29069 +78062,0431340,26962 +78064,0428040,37255 +78066,0144589,122188 +78068,0035614,51792 +78071,0035170,99236 +78073,0031595,174784 +78081,0067108,14257 +78084,0082479,5424 +78086,1484954,39453 +78088,1462758,26388 +78090,1235072,44878 +78093,0016201,116746 +78095,0058142,64811 +78097,1288645,39024 +78099,1459026,38307 +78101,0484211,134901 +78103,0472562,30527 +78105,0473075,9543 +78111,0047840,43317 +78116,0878835,40247 +78122,0863136,14518 +78124,0065839,26427 +78128,1425257,37034 +78130,1327200,35197 +78132,1038011,36686 +78140,1479380,115064 +78142,1081935,25846 +78145,0098197,73931 +78157,0059440,30913 +78160,0397612,198306 +78162,0439784,198307 +78168,0475390,62492 +78170,0022485,112882 +78174,1261945,37786 +78181,0069528,66775 +78184,0042256,44398 +78186,0045161,25551 +78192,1263679,22241 +78196,0072777,71756 +78201,1166110,58086 +78207,0790627,29151 +78209,1226229,32823 +78211,1278124,29923 +78218,0914863,38199 +78222,0076507,80844 +78224,0019237,42614 +78235,0085234,139383 +78245,0028203,43879 +78247,1546036,36736 +78249,0071676,132328 +78251,1247657,35217 +78264,1212436,34806 +78266,1017460,37707 +78268,1422122,39376 +78270,0097884,1785 +78272,0104008,10241 +78276,0089366,32720 +78278,1426378,51413 +78290,0403645,38318 +78295,0059362,42744 +78308,0905329,29272 +78313,1126596,13058 +78316,0892318,37056 +78319,1073105,34480 +78321,1498870,38570 +78329,0063493,35166 +78332,1263778,38846 +78335,0995747,73576 +78337,0790612,32830 +78340,0049259,52726 +78342,0857275,27735 +78344,0997246,54254 +78349,1258197,29917 +78358,0065233,68429 +78360,0110278,47238 +78366,0032846,132928 +78370,1057581,19713 +78376,0014417,50182 +78379,0245209,254738 +78381,0082088,42139 +78405,0036962,3589 +78408,0485272,25869 +78410,1392744,30695 +78413,0068286,94225 +78416,0021549,108224 +78418,0032413,88192 +78420,0043660,28434 +78422,0887745,28871 +78438,0050347,35129 +78442,1225703,31041 +78445,1035730,12832 +78459,1370889,39246 +78461,1242539,33116 +78463,0035460,79372 +78465,0043044,42767 +78467,1075747,20533 +78469,0429493,34544 +78483,0056017,48003 +78488,1391544,19276 +78490,0059555,44006 +78499,0435761,10193 +78517,1568150,41397 +78519,0043859,43882 +78528,0041327,99627 +78534,1016321,39641 +78536,1198385,35164 +78539,0191173,45974 +78544,0993779,198308 +78557,1227762,25868 +78574,1399683,39013 +78579,1135095,162880 +78583,0808237,63883 +78585,1165253,8652 +78606,1075113,18897 +78612,0073349,38027 +78614,0234217,52072 +78618,0062728,1787 +78620,0063557,32068 +78622,0102522,48636 +78626,0269743,21531 +78629,0008663,108017 +78631,1087474,45009 +78633,1540814,44999 +78635,1145479,41142 +78637,0892791,10192 +78640,1007018,24663 +78642,1244588,24797 +78646,0105355,61120 +78649,0389011,62414 +78651,0060847,149511 +78653,1204773,33809 +78655,1337057,38780 +78658,0974544,56809 +78666,0441674,37711 +78669,0082596,110901 +78673,0029077,211256 +78677,0484064,46341 +78679,0954947,37414 +78681,1493886,44680 +78684,0104111,108705 +78690,0010307,70804 +78696,0466899,51138 +78698,0243415,26916 +78701,0942891,16890 +78703,1179794,39545 +78713,0020514,53796 +78715,0019591,42615 +78717,1134665,120529 +78721,0085656,34599 +78723,0095530,47282 +78727,1187046,16878 +78729,0813980,13989 +78737,0039243,44534 +78739,0035153,43780 +78742,0065636,31677 +78746,1144539,40819 +78748,1339635,68701 +78757,0381131,43699 +78759,1117646,45371 +78765,0030865,109970 +78772,1325004,24021 +78774,1294213,36691 +78776,1315214,39334 +78827,1355623,41499 +78829,1157685,40215 +78832,0037466,69847 +78834,1291548,33913 +78836,1191111,34647 +78838,1034302,18530 +78856,1189345,27865 +78858,0045706,52365 +78860,0059729,51054 +78873,1570417,32866 +78885,0770814,42891 +78893,0938283,10196 +78895,0089748,21042 +78898,0060165,37301 +78903,0070959,91487 +78905,0042039,29106 +78909,0335351,51865 +78913,0118976,37652 +78916,0340137,4676 +78919,1166810,28478 +78921,0037367,51617 +78934,0806686,3037 +78941,0492962,208478 +78944,0057982,61302 +78946,0069737,113012 +78949,0213968,108788 +78951,0780495,140172 +78955,0064873,59231 +78957,0062277,59088 +78959,1217616,15102 +78961,0993841,24963 +78965,0313504,36962 +78967,0076210,26932 +78974,1594971, +78976,1609157,40636 +78978,0052708,2363 +78980,0036783, +78982,0068669,34991 +78984,1288633,34703 +78986,0445691,1896 +78991,0114469,39129 +78993,0044811,69544 +79003,0040745,43449 +79006,0416716,76180 +79008,1308667,16023 +79010,0365480,25903 +79022,0202989,153913 +79029,0790769,25630 +79031,0460823,28036 +79035,0033722,51395 +79038,0052837,1789 +79043,0808138,74076 +79045,0302022,235199 +79057,1424381,34851 +79060,0860866,8471 +79063,1345488,45622 +79065,0036422,43514 +79067,0062977,87267 +79073,1333667,37659 +79077,0470764,166677 +79081,0047073,23097 +79083,0046564,44711 +79091,1323594,20352 +79094,0036367,150778 +79104,1235404,58781 +79106,0815182,142052 +79109,0034578,32921 +79111,0488121,24048 +79124,0030182,43853 +79127,0030817,43849 +79132,1375666,27205 +79134,1375670,38365 +79136,1101048,64861 +79139,0963966,27022 +79158,0451954,27843 +79163,0800228,80198 +79166,0478125,16304 +79185,1013743,37834 +79187,1226232,32395 +79191,0111002,26682 +79195,0405266,41252 +79197,0049201,25914 +79203,0446750,4556 +79207,0087247,18680 +79213,0217019,72356 +79220,1205503, +79222,1438437,41522 +79224,1155076,38575 +79226,1247662,39037 +79228,0425196,15714 +79230,0954990,22556 +79232,0092772,49500 +79234,0185691,54857 +79236,0103316,110903 +79238,0081662,110899 +79242,0842926,39781 +79244,1001540,26350 +79247,0053344,100661 +79249,0069426,85674 +79251,1273235,73861 +79254,1319569,61222 +79259,1248971,40850 +79274,1569923,40662 +79276,0082927,59484 +79278,0012486,54198 +79281,0135014, +79283,0139717, +79285,0021110,91470 +79287,0016544,47508 +79293,0944835,27576 +79299,0874957, +79303,0067815,86431 +79311,0116479,30565 +79318,1396557,42918 +79321,0050271,1920 +79327,0019258,53209 +79329,1259583,24487 +79333,0060161,39768 +79335,0024433,162862 +79337,0022834,134427 +79339,0021874,53232 +79344,1043651,37816 +79346,1236247,20996 +79348,1169158,18968 +79357,0485947,31011 +79363,0025536,96525 +79368,0065782,1863 +79388,0063443,26652 +79395,0047494,65212 +79397,0034780,35262 +79400,1487120,37098 +79402,1068669,26796 +79410,0452634,41163 +79424,0070435,85023 +79428,0427152,38778 +79430,1484522,40428 +79458,0066466,104343 +79461,0063598,104744 +79463,1415283,35019 +79467,1277728,17631 +79469,0105019,5899 +79471,0395424,18166 +79473,0102583,124096 +79475,0156906,86266 +79477,0067820,59881 +79494,0220016,17914 +79496,0497539,37766 +79498,0075342,48197 +79501,0352465,36274 +79505,1252610,26584 +79507,0075669,38022 +79515,1570966,32497 +79519,0061113,90908 +79521,0208995,45043 +79523,0415127,31262 +79525,0047101,21564 +79528,0025907,43605 +79533,0078915,20007 +79536,1227536,25335 +79539,1118045,41483 +79541,1264904,31203 +79543,0109685,54233 +79545,1352369,27297 +79547,1002561,39303 +79551,1104126,21900 +79553,1386932,37472 +79561,0400383,29168 +79565,0492967,108712 +79568,0079359,343283 +79570,1159712,63075 +79572,0493949,38843 +79575,0134108, +79578,0076252,39008 +79580,0034405,49609 +79588,1438254,37950 +79590,1205535,24122 +79592,1386588,27581 +79594,0238859, +79596,0051866,24508 +79599,1268987,41135 +79601,1513713,37570 +79603,0107175,52713 +79607,0066079,5465 +79610,0044331,61430 +79617,0038934,45322 +79627,0291833,20591 +79633,0479937,13221 +79636,0479074,18848 +79638,0093004,42008 +79640,0081616,77334 +79642,0044566,94618 +79644,0064227,102488 +79647,0051706,86667 +79651,0057239,76000 +79653,0032850,83360 +79656,0043599,98328 +79663,1217070,33195 +79667,0045592,46011 +79677,1522863,53190 +79681,0034902,28426 +79684,0437405,39414 +79686,0870210,42039 +79688,0995739,19528 +79692,1534397,37700 +79695,1320253,27578 +79702,0446029,22538 +79709,0038108,97735 +79711,0022454,45803 +79718,0070285,112383 +79720,1313092,44629 +79723,1294161,44770 +79725,1295068,46391 +79731,0048602,149114 +79736,0419952,30860 +79739,1424062,67367 +79741,1125387,96108 +79760,1419318,30966 +79765,0115109,47477 +79767,1058743,40818 +79769,1291465,37951 +79771,0032983,43821 +79773,0199777,55971 +79775,0383025,10271 +79794,0115985,17821 +79796,1020558,23759 +79798,1424797,26280 +79800,0808526,39800 +79802,1022606,8900 +79805,0073155,3476 +79807,0458455,9503 +79809,0038419,52270 +79824,1020938,44737 +79828,0077315,8070 +79830,0115822,46334 +79832,0028816,80364 +79835,0146990,21001 +79838,0071145,171492 +79842,1671630,79829 +79844,0038334,39142 +79846,0407821,21781 +79848,0832318,19874 +79850,1548865,44806 +79855,0026007,132883 +79860,0997152,43549 +79863,0816436,14138 +79866,1474312, +79868,1220214,38150 +79870,1280015,47912 +79872,0017750,128298 +79874,0018526,42565 +79879,0464154,43593 +79882,0081160,263579 +79884,0487027,1914 +79895,1179025,35552 +79897,1194263,44718 +79901,1500496,67381 +79910,1059925,26035 +79912,1202514,25474 +79914,1145144,16346 +79916,1223975,33774 +79918,0058091,102286 +79920,0038370,53446 +79923,0043792,108232 +79925,0041767,44533 +79927,1087890,15952 +79929,1346961,39563 +79936,0095880,55520 +79946,1285309,41479 +79953,0045333,65787 +79955,0020112,51759 +79972,1183672,41248 +79974,1351224,29538 +79977,0031835,115109 +79980,1322282,42850 +79987,1329457,31900 +79994,1156143,37842 +79996,1107816,29159 +80004,0093067,191550 +80014,0063384,122671 +80020,0055797,42991 +80022,0046076,44140 +80026,0411951,42194 +80033,0234516,31443 +80038,1359421,33494 +80041,0073045,91873 +80044,0181212,207937 +80049,0381442,20200 +80054,1394383,37259 +80072,0084358,62981 +80074,0406098,33682 +80076,0339357,79043 +80083,0142235,28609 +80086,0843302,46164 +80094,1320244,38358 +80097,0055153,113458 +80100,0087027,42085 +80102,0023891,37581 +80104,0036630,84701 +80107,0032376,32196 +80109,0064553,42495 +80111,0060758,95597 +80122,0091869,55562 +80124,0284492,49943 +80126,1440728,27579 +80129,0066936,105347 +80132,0044497,77057 +80135,0050612,98636 +80137,1587373,96451 +80139,1117523,14158 +80141,0099263,47670 +80144,0011960,55648 +80146,0077707,88034 +80152,0054403,172535 +80154,0196181,109466 +80158,0154129,32638 +80160,0281859, +80162,1183276,37905 +80164,1381282,30846 +80166,0889573,41210 +80179,0080806,107983 +80181,0807840,9761 +80183,1060234,57816 +80185,1558250,40663 +80189,0101664,91396 +80191,0045758,10165 +80193,1609145,139433 +80195,1333657,121471 +80204,1539086,103745 +80206,0079432,54182 +80208,1233611,39786 +80210,0903943,50641 +80214,0154750,55403 +80217,0107086,46697 +80219,0985694,23631 +80222,1193631,41233 +80224,0022403,17966 +80226,0041947,206145 +80230,1083853,44255 +80233,1315419,39240 +80235,1264074,50338 +80241,1322312,38073 +80243,1168773,76237 +80245,0073720,129467 +80247,0089124,105737 +80258,0046094,71839 +80260,0037885,109881 +80264,0038000,52337 +80267,0032349,32194 +80269,0044324,80806 +80271,1059790,44222 +80281,1351630,13585 +80283,0034485,43790 +80285,0028739,30630 +80288,0040843,36814 +80290,0041515,32552 +80292,0050569,133792 +80295,0073615,101422 +80311,0030006,132859 +80313,0029334,113214 +80315,0083579,33481 +80321,1137999,31549 +80324,1470171,43642 +80328,0083022,148482 +80330,0774755,13209 +80337,1333117,55063 +80339,1135500,22681 +80344,0061389,39519 +80346,0038104,119764 +80348,0040109,40985 +80350,1666186,40264 +80352,0092269,148175 +80354,1255955,28938 +80358,0318126,268021 +80361,1024733,4204 +80363,1220634,35791 +80374,1410261,42430 +80376,1328913,35716 +80398,1167638,37645 +80400,0034965,69119 +80402,0188350,24955 +80405,0846017,32151 +80408,0158011,55066 +80417,0151073,104310 +80419,0108192,124315 +80421,0024115,66701 +80424,0034384,43804 +80428,0262699,15915 +80430,1008017,8886 +80432,0028070,46026 +80444,0119329,148636 +80447,0078295,31428 +80449,0125522,49813 +80451,0069239,29424 +80454,1428453,60678 +80456,0079482,39995 +80463,1285016,37799 +80465,0116300,138522 +80467,0070258,114395 +80469,1673430,45162 +80472,0033525,96172 +80476,0996967,15527 +80478,0062043,85692 +80480,0066153,110748 +80487,0058701,40652 +80489,0840361,23168 +80491,0052961,45884 +80494,0048488,35956 +80498,1328867,85819 +80500,1135922,15834 +80502,1020543,22476 +80505,1479847,37059 +80549,1282140,37735 +80551,0879870,38167 +80553,1049402,38568 +80557,1047449,45778 +80560,1137439,18046 +80562,0795463,27442 +80566,0049042,107612 +80568,0056940,33729 +80570,0047550,50356 +80572,1356864,43939 +80574,0038053,46563 +80582,0912586,60076 +80584,1067733,15179 +80586,0817177,43949 +80588,1433813,44992 +80590,1027718,33909 +80592,0056346,48110 +80596,0098533,121154 +80599,0172202,59572 +80611,0059453,207681 +80615,1219342,41216 +80617,1287468,39691 +80619,0067975,42530 +80622,0038026,43491 +80639,0026144,43890 +80641,0050208,37596 +80646,0071695,41486 +80648,0143428,41482 +80650,0104105,74714 +80653,1105512,35219 +80655,1562847,72913 +80659,0041329,94959 +80661,0045551,22734 +80667,0060801,56168 +80677,0052698,34145 +80680,1604900,40911 +80683,1038913,54720 +80693,0804497,43923 +80701,0059477,5719 +80713,1212456,71575 +80715,1511400,159186 +80717,0090579,2754 +80719,0056134,166204 +80722,0257818,40970 +80725,0004635,161710 +80727,1251757,38842 +80729,1132193,45261 +80731,0819895,73682 +80733,1189076,22136 +80736,1010271,38410 +80738,0080185,342218 +80740,1433915,24219 +80742,0317341,125946 +80744,0091823,154442 +80746,0021294,201695 +80748,0023753,25694 +80759,0396630,42318 +80761,0902967,36569 +80763,1276105,27023 +80768,1103248, +80775,1486190,38961 +80777,0374271,56969 +80779,1301990,45077 +80787,1064801,40599 +80789,1346983,52221 +80792,0463032,165534 +80797,0029648,59581 +80799,0017534,67531 +80806,0318523,125948 +80808,0069002,32021 +80810,0076845,75938 +80812,0071458,706 +80816,0082235,30931 +80818,0892096,33009 +80820,1447793,46198 +80825,0834102,18178 +80827,0016690,117211 +80831,1228987,41402 +80834,1727587,45745 +80836,1254207,10378 +80839,1028576,39486 +80844,0816556,27374 +80846,1314655,44040 +80848,0410410,12807 +80858,1414382,38303 +80860,1055292,38408 +80862,1584016,42296 +80864,1182350,38031 +80866,1572150,28018 +80870,1260567,45729 +80880,1423995,44113 +80891,1176252,173672 +80893,0448400,9639 +80899,0026768,43894 +80901,0065820,85290 +80903,0032871,3592 +80906,1645089,44639 +80908,1315962,43619 +80917,1470827,43933 +80924,0192788,30071 +80926,0825245,17031 +80928,1646887,41994 +80933,0054102,15375 +80939,1244754,45094 +80941,1107319,70695 +80947,1148165,38415 +80950,0048513,110502 +80952,0045056,43369 +80954,0030442,111315 +80967,1196165,98115 +80969,1334260,42188 +80972,0382572,11567 +80980,0062827,27441 +80984,0047424,30036 +80986,0041955,43187 +80990,0079428,4706 +81000,0959282,9577 +81014,1093369,20034 +81018,0775489,41201 +81020,1442519,19597 +81027,0834170,46847 +81029,0037931,110790 +81031,1065318,16015 +81041,0899138,20263 +81046,0070374,10311 +81049,1114690, +81051,0074875,16271 +81054,0064588,12482 +81059,0772105,53486 +81061,0052050,25633 +81064,1009014,206577 +81067,0343992,166671 +81069,1209364,39933 +81072,0085807,81231 +81075,1247696,46756 +81080,1400526,46812 +81083,1523483,46837 +81085,0093791,76825 +81087,0886539,16344 +81090,1045642,38124 +81092,0490117,60035 +81094,0922522,35379 +81100,1099932,214430 +81102,0058438,41308 +81104,1542411,75341 +81107,0027138,92950 +81109,0122371,113456 +81111,1447508,44549 +81117,0080547,155852 +81123,0020919,174792 +81125,0060099,131861 +81130,0176250,45739 +81132,1612774,45649 +81138,0445054,39681 +81140,1179069,41505 +81142,0326965,40048 +81145,0093139,8749 +81147,0171357,14088 +81150,0415739,49218 +81152,0482358,50656 +81156,1116184,16290 +81158,1559549,39312 +81162,1241330,42307 +81164,1085779,45650 +81172,0365402,64156 +81180,1320304,42941 +81182,1662557,50475 +81184,0420181,97241 +81191,1566648,39440 +81193,0043123,52848 +81195,1003034,41009 +81198,0058745,73348 +81200,0028330,52358 +81204,1094295,32540 +81214,0062990,74896 +81216,0043565,44890 +81225,0441324,44823 +81229,1245526,39514 +81238,0092285,213864 +81243,0057536,90930 +81248,0073496,86233 +81250,0045471,98364 +81257,1340107,44716 +81270,0872230,43931 +81274,0479221,63611 +81276,1337137,47426 +81281,0466665,18590 +81305,1424327,37810 +81312,0452592,13548 +81314,1047445,21431 +81316,1242618,25073 +81322,0478214,155445 +81324,0810821,20700 +81328,0060223,114333 +81330,1611931,201646 +81333,0124294,127083 +81347,0497467,4921 +81349,0114198,370264 +81351,0063386,11389 +81355,1247184,45336 +81357,0187809,165911 +81359,1190894,37438 +81362,0435528,14397 +81364,0928188,53655 +81366,0027752,52047 +81371,0034591,27372 +81381,0376821,43681 +81383,1465487,41211 +81385,1588337,46332 +81387,0120116,135198 +81389,0459387,44986 +81391,1426361,43738 +81393,0379765,60665 +81396,0023825,43601 +81398,1679595,68774 +81403,0063005,4729 +81405,0454990, +81411,0088241,47792 +81413,0047821,46979 +81415,1202202,143336 +81417,1536044,41436 +81424,1434443,49207 +81427,1528718,46103 +81429,1675758,48016 +81432,0014900,55536 +81435,0012651,6793 +81441,1428050,79743 +81443,0023911,53792 +81445,0303281,67232 +81447,0262774,44076 +81451,1411232,48015 +81453,0042397,35957 +81456,1600524,51241 +81495,0496634,8316 +81497,0070287,31605 +81499,0494864,22398 +81501,0082633,16029 +81512,1212419,44603 +81516,1181791,41215 +81518,0940580,1782 +81520,1156466,38234 +81524,0073482,11391 +81535,1477076,41439 +81537,1231583,41733 +81546,0037980,182756 +81548,0051534,77960 +81562,1542344,44115 +81564,1001526,38055 +81566,1194235,54315 +81568,0035794,33600 +81574,0075433,54109 +81583,0029454,52237 +81585,0033110,43819 +81587,0056341,43007 +81589,0060983,49863 +81591,0947798,44214 +81610,0033283,80720 +81613,0078878,114096 +81615,0067980,91607 +81617,0081656,130917 +81621,0112934,40378 +81629,1333668,30979 +81631,0486665,56192 +81633,1245091,46537 +81637,1230204,49953 +81639,1278379,43943 +81641,0977855,38363 +81643,0037702,40716 +81646,0044903,43189 +81656,0019901,3007 +81658,0041373,27563 +81660,0085124,61755 +81665,0066122,59408 +81667,0318742,79591 +81669,0120075,26891 +81671,0043306,39039 +81673,0143334,52111 +81676,0374308,13630 +81679,0454932,45593 +81681,0041497,41058 +81684,0053729,1673 +81688,0113241,28671 +81690,0993778,14234 +81698,0217978,49110 +81700,0479550,126238 +81702,1101675,65726 +81704,1405809,41123 +81708,1225290,44442 +81711,1725156,48466 +81713,1136688,47065 +81725,1588875,38325 +81727,1644577,103894 +81731,1453159,133252 +81733,0147039,48000 +81736,0058126,71317 +81738,0045507,137504 +81742,0120404,64340 +81744,1038685,44571 +81751,1588895,38368 +81753,1533796,112072 +81755,0068983,114444 +81758,0466214, +81765,0113205,157178 +81768,0029201,68849 +81770,0118823,134569 +81782,0477080,44048 +81784,1126618,38357 +81786,1020773,48303 +81788,1458175,43539 +81791,1421051,39210 +81795,1270101,72421 +81802,1519245,62103 +81804,1235189,44147 +81806,0141966,92096 +81817,1321865,43434 +81819,1164999,45958 +81823,1360875,34208 +81825,1158936,15036 +81831,1467273,36940 +81834,0926084,12444 +81845,1504320,45269 +81847,0398286,38757 +81851,0055073,46757 +81853,0056576,71701 +81857,0029222,43862 +81859,0041687,43437 +81867,0758017,24574 +81880,0984159,80545 +81898,1518821,87387 +81903,1199494,44687 +81906,1441084,162643 +81910,1326733,41999 +81925,0384699,13834 +81927,1047832,15012 +81930,0460342,44886 +81932,0964517,45317 +81949,1403988,41556 +81952,0020876,42363 +81954,0095053,52998 +81957,1048174,31031 +81959,0176666,49583 +81962,0059829,202768 +81975,0046365,37927 +81979,0110547,48486 +81981,0074720,56648 +81983,0066127,128442 +81985,0070424,110115 +81987,0079023,87415 +81989,0095012,95043 +81991,0819723,113882 +81993,1626201,48871 +82003,0078152,93669 +82005,1361313,47088 +82007,0003014,147622 +82009,1196134,35458 +82011,1380174,50990 +82013,1499639,111396 +82015,0043766,36373 +82017,0019532,99080 +82022,1320291,49787 +82026,0382847,253074 +82030,0047167,64782 +82032,0058124,96118 +82035,1176726,26769 +82037,1568334,43924 +82041,1316536,46420 +82043,0492473,36615 +82045,0021106,83817 +82047,0769507,51885 +82049,0077188,54523 +82051,0021800,73420 +82053,1194417,45324 +82055,0020821,120835 +82059,0806029,33996 +82061,0431975,15702 +82063,1065332,15436 +82066,1227787,39358 +82068,0089821,6320 +82070,0055571,28699 +82088,1611211,47979 +82093,1213648,48838 +82095,1564585,42684 +82097,1373156,34764 +82102,1393020,37234 +82106,0068835,42483 +82108,1131727,42561 +82110,1326831,42046 +82115,1722515,52320 +82119,1514837,36405 +82121,0039080,35123 +82123,0054164,37083 +82129,0041735,51618 +82131,0050699,61370 +82139,1127221,22135 +82141,0062760,53654 +82143,0437806,14463 +82150,1251725,35395 +82152,1152398,38117 +82154,1194236,37690 +82157,0410332,24837 +82167,0758752,43347 +82169,0980970,10140 +82173,1570989,47607 +82175,1436560,80435 +82179,0059269,38340 +82182,0023049,121238 +82184,0039531,59828 +82186,0077756,28155 +82188,0038721,26663 +82194,0047603,86608 +82196,0041513,80572 +82202,1243957,37710 +82209,1319704,48946 +82227,0048337,45136 +82235,0046374,130424 +82240,1323605,44028 +82242,1401143,48395 +82244,0798817,44982 +82246,1252298,60440 +82261,0496253,57000 +82269,0374294,65041 +82271,0120494,39968 +82274,0403990,32234 +82276,0887732,12823 +82280,0478331,63290 +82283,0063571,71395 +82298,0051437,43114 +82300,0065579,59917 +82302,0062893,56693 +82304,0117056,40882 +82306,0018451,85876 +82308,0074262,62789 +82311,0026452,31988 +82313,0049552,34667 +82315,0051404,5562 +82320,0287803,41187 +82322,1356928,43614 +82324,1571724,44160 +82326,0471911,99738 +82328,0295192,95453 +82330,0479506,46773 +82332,0008879,70800 +82335,0049518,60234 +82337,0135696,49296 +82353,0079924,1906 +82356,1327819,36738 +82358,0439491,195833 +82360,1583356,49901 +82362,0226350,195311 +82364,0071585,56142 +82366,1270835,43919 +82368,0068187,84108 +82370,0068894,80701 +82378,1175709,46503 +82380,0775543,48833 +82382,1379689,40664 +82384,0044733,150838 +82386,0176198,234942 +82388,0063585,118533 +82390,0009878,44441 +82393,0423277,43973 +82395,0472175,50241 +82397,1404653,57489 +82420,1202203,37514 +82438,0378848,49322 +82447,1456941,43930 +82449,1376709,46660 +82452,1071798,170986 +82454,0036748,96366 +82459,1403865,44264 +82461,1104001,20526 +82463,1431181,44009 +82465,0093286,49684 +82467,0039391,104720 +82469,0033389,111470 +82476,0048210,43318 +82491,0106612,322799 +82499,1341188,42888 +82525,1013854,130623 +82527,1423894,46829 +82529,1137481,52445 +82531,0033980,84086 +82534,1172991,44129 +82536,0030396,43855 +82564,0027869,23108 +82567,0026932,121006 +82581,1064744,18029 +82584,0030202,62567 +82589,1121977,37080 +82591,0960721,30023 +82593,0839856,50701 +82595,0422349,250810 +82597,0049061,107592 +82602,0127319,83036 +82606,0910915,50673 +82608,0421090,30548 +82631,0475616,26138 +82633,0122136,40149 +82635,0484039,10817 +82638,0094011,31300 +82641,0061597,54178 +82643,0159797,8464 +82667,1588170,49797 +82669,0073836,39988 +82671,0461894,481 +82673,0997263,36115 +82676,0068675,31283 +82678,0066318,4266 +82680,0042998,111390 +82682,0059447,32609 +82684,1488163,46788 +82698,0104083,40649 +82701,0119510,10018 +82703,1692504,52587 +82705,0074400,48203 +82711,0122770,25908 +82713,0054780,117042 +82715,0121398,238362 +82722,0102842,15740 +82726,0832517,173288 +82732,0048421,35958 +82739,0302596,13246 +82744,1433108,41283 +82747,0057363,42984 +82749,0054709,31104 +82751,0495705, +82753,0257289,81219 +82759,0093593,27072 +82765,1319718,35138 +82767,0935075,27585 +82770,1186248,48204 +82772,0400517,62337 +82834,0049177,53156 +82836,0498366,84827 +82840,0452631,25434 +82842,1515935,54812 +82848,0011541,23282 +82850,0011071,38705 +82852,0970866,39451 +82854,1320261,38745 +82857,1517252,50071 +82877,0455638,28025 +82902,0256692,107548 +82904,0079802,1361 +82906,0337578,39839 +82909,0046398,102091 +82911,0030018,112674 +82915,0490499,10097 +82917,0101478,78320 +82920,0041998,51143 +82926,1680136,48748 +82928,1352388,52208 +82931,1572491,56812 +82934,1319726,34576 +82976,0011656,51357 +82978,0011508,51358 +82980,0418362,20495 +82982,0032946,80054 +82984,0036166,161512 +82991,0105462,56448 +83004,1629391,42323 +83006,1311087,56320 +83034,0043458,104394 +83038,0208903,19887 +83049,0127322,82549 +83051,0892100,196235 +83056,0032043,54430 +83059,1135952,46207 +83067,1391034,33107 +83071,0036217,48127 +83082,1071812,33870 +83086,1126591,42297 +83089,1407055,82622 +83096,0012255,51359 +83115,0102247,37866 +83132,1568921,51739 +83134,1465522,46838 +83138,1395183,38409 +83158,0374853,32407 +83163,0488174,38054 +83177,1302067,41515 +83180,1572769,50420 +83182,0451829,21136 +83184,1373120,31850 +83186,0062082,61943 +83189,0056234,35392 +83193,0049784,20531 +83219,1059955,15302 +83222,0090209,31694 +83225,0841017,163659 +83227,0104658,39967 +83232,0097995,37533 +83241,0923683,23508 +83244,1163752,18381 +83246,0061587,6474 +83248,0060380,30914 +83250,0071186,56787 +83256,0982939,64212 +83258,0407617,8995 +83260,1010313,7210 +83264,1610452,52696 +83266,0234000,16987 +83268,1792061, +83270,1371155,46138 +83273,0074448,247112 +83275,0175934,247124 +83277,0071880,61212 +83279,0485147,185720 +83281,0297871,72413 +83291,1157694,14639 +83293,1268204,46689 +83295,0082886,54660 +83300,0251640,49041 +83302,1294688,23830 +83308,0019655,55584 +83310,1327726,89126 +83316,0074207,42243 +83318,0012224,51360 +83320,0063612,27470 +83322,0011984,50704 +83324,0276866,15548 +83326,0368647,15552 +83330,0117442,46827 +83332,0756727,53079 +83334,1015474,22007 +83337,0272736,26277 +83339,0265148,165402 +83343,0042742,102144 +83345,0046159,56402 +83349,0990407,40805 +83351,0044905,49616 +83357,0057090,124058 +83359,0012570,51362 +83361,0012543,25770 +83369,1023114,49009 +83374,1032751,46528 +83376,0019823,84274 +83381,0054295,64605 +83385,1318001,51933 +83389,0121411,198317 +83411,0013025,38742 +83415,0081991,42138 +83417,1010415,25482 +83424,1166100,14070 +83430,0493417,156288 +83435,0050487,37086 +83437,0031002,38023 +83439,0057598,108869 +83446,0035157,43781 +83448,0432314,2325 +83450,1343703,50618 +83457,0110076,46387 +83464,0056308,54723 +83468,0414195,23019 +83478,1653690,43209 +83480,0479997,23047 +83506,1815899,198391 +83525,1462667,45284 +83527,0476298,46820 +83529,0116480,79118 +83531,0063771,62570 +83533,0137079,162234 +83535,0107875,42001 +83538,0055082,63892 +83540,0039822,40650 +83556,1174047,17605 +83558,0313550,53267 +83560,0054042,122019 +83562,0118201,58777 +83569,0064296,78117 +83575,0407021,36241 +83577,0031968,75363 +83579,1639075,57019 +83581,0044888,84903 +83583,0278413,25051 +83585,1172060,23174 +83588,0063152,4798 +83590,0056725,74924 +83592,0158117,105448 +83601,1426352,43950 +83603,0422258,90272 +83605,0367000,21198 +83607,0041634,132332 +83611,1630529,54779 +83613,0409847,49849 +83616,0189041, +83619,1625098,49073 +83652,0424992,1543 +83654,1093382,8951 +83656,0274154, +83658,0084164,223613 +83660,0066492,44000 +83662,0018440,207999 +83664,0062203,93072 +83666,0447641,69313 +83668,1526317,60708 +83671,0119185,15993 +83756,0315232,57256 +83758,1606382,57448 +83760,0489325,29670 +83763,0013422,38830 +83765,0012945,37360 +83767,0055214,99372 +83773,0213469,24403 +83777,0073760,31654 +83789,1166113,25259 +83791,0035958,18562 +83796,1217637,14556 +83798,1183665,35052 +83801,1568923,58772 +83803,1620446,40619 +83807,1369567,20332 +83809,0823187,23077 +83819,0045039,90968 +83821,0064405,94608 +83823,0054446,88376 +83825,0036984,43501 +83827,1391092,52013 +83829,0058555,46787 +83831,0037316,92399 +83833,0019429,28391 +83835,0013158,51364 +83837,0013099,51366 +83842,1706414,111239 +83897,0489212,43653 +83910,1578275,44564 +83912,1221208,55061 +83916,0033409,25862 +83918,0027690,112284 +83920,0069080,107774 +83923,0470000,10854 +83927,0034998,119094 +83956,0327071,33146 +83962,0013055,38787 +83969,0032410,43810 +83972,0079123,42175 +83974,0040626,18703 +83976,1740047,63578 +83978,1223150,48471 +83986,0469913,15316 +84015,1442580,47610 +84017,1506940,48752 +84019,1694015,47055 +84047,0764639,1244 +84090,1143155,25695 +84092,0050296,39557 +84094,0067962,32319 +84096,0975684,34025 +84098,0045029,76229 +84100,0415380,25664 +84103,0810809,61783 +84111,0060891,42722 +84114,0368954,43936 +84116,1287878,47909 +84118,1054674,12811 +84120,0108583,58937 +84122,0029002,31903 +84125,0021153,105067 +84128,1470024,55151 +84131,0086546,68757 +84133,0067384,39993 +84137,1314652,45202 +84140,0078435,54160 +84148,0043539,48481 +84150,0043938,22985 +84152,1219289,51876 +84154,1117394,58261 +84156,1683876,89704 +84158,0027474,120357 +84160,1705977,52461 +84162,0286864,51873 +84164,0129774,471 +84173,1002966,13652 +84176,0014586,27522 +84178,0032653,8417 +84181,0084674,44963 +84183,0082699,74289 +84187,0860906,22843 +84189,1242432,43947 +84192,1098199,60213 +84223,1285246,34013 +84226,0396818,62495 +84228,0770829,42411 +84230,0013858,45807 +84232,0014218,51367 +84234,1686313,55165 +84236,1487275,34767 +84238,0306434,21982 +84240,1422032,53596 +84242,1183923,31007 +84246,0039502,52844 +84248,0056945,51092 +84250,0036711,26530 +84252,0054653,43017 +84258,0037420,113757 +84260,1533084,32612 +84262,1148200,38033 +84273,1781069,54293 +84276,1756754,47330 +84279,0074815,117258 +84281,0249555,293946 +84283,1112756,56745 +84291,0046446,133119 +84293,0030517,122884 +84296,0036277,33039 +84298,0048748,114083 +84300,0061180,70635 +84302,0072307,139851 +84304,1667150,62976 +84312,0329200,12536 +84329,0247254,34192 +84334,0043968,131781 +84366,1352717,45485 +84372,0048538,39695 +84374,1411238,41630 +84387,1134664,36939 +84392,1189340,50348 +84395,1161864,48171 +84407,1422020,43920 +84414,1699114,56590 +84436,0252703,91958 +84442,0080842,79785 +84444,1122614,50779 +84446,1013856,44411 +84448,0454536,71732 +84450,0461795,85550 +84453,0184115,116751 +84455,1257562,72852 +84467,0047085,48954 +84469,0074404,32122 +84471,0269587,93553 +84473,1158889,16031 +84475,0054243,43046 +84477,0116005,86267 +84479,0078150,84207 +84481,0456873,53701 +84483,0347131,126104 +84485,0047417,28023 +84496,0074964,104364 +84498,0073317,78353 +84500,0108256,79731 +84502,0434440,103425 +84504,0339558,50900 +84506,1693830,51276 +84508,0047388,74074 +84510,0214529,35831 +84512,0021910,120843 +84523,0063186,39029 +84525,1509125,55662 +84529,0412298,13746 +84532,1405500,44944 +84534,0036989,8418 +84538,0076894,65898 +84540,0111038,288183 +84551,1539107,102527 +84553,0050832,148432 +84555,0029577,204040 +84557,0893412,50217 +84559,0057307,80988 +84563,1262413,24868 +84565,0086244,47578 +84570,1555064,45272 +84601,1401152,48138 +84613,0881320,48340 +84615,1477837,52067 +84619,0352925,22484 +84621,1576699,46441 +84637,0377981,45772 +84639,0033022,46260 +84641,0022397,84295 +84643,0031033,43825 +84646,0045494,91419 +84648,0062414,119183 +84660,0120754,195651 +84663,0465326,11788 +84665,0054172,82792 +84667,0034386,54635 +84669,0027902,81687 +84671,0053003,79180 +84680,0041672,109887 +84686,0022495,84296 +84689,0029656,150712 +84691,0034078,31324 +84696,1320239,50204 +84714,0067176,53045 +84716,1499666,18438 +84730,1258120,30432 +84732,1452628,43552 +84734,0063983,85886 +84736,0086484,87906 +84738,1230206,17240 +84740,1448762,39959 +84764,0067972,56259 +84766,0809427,114246 +84768,0109909,140527 +84770,1638362,45274 +84772,1092026,39513 +84775,1322385,46789 +84777,0069390,30901 +84779,1188983,15576 +84781,0056289,49844 +84792,0117808,81217 +84794,0118141,54506 +84796,0086606,32520 +84799,0069738,37618 +84801,1284591,12471 +84805,0457414,36883 +84807,1504429,51971 +84829,0084824,64441 +84832,0104121,31987 +84834,0882978,14538 +84836,0011723,92332 +84838,0010208,174958 +84844,0238883,20993 +84847,1366312,183894 +84852,0004181,98078 +84855,1054580,33997 +84857,1098226,14525 +84859,0110125,48118 +84861,0986358, +84863,0891457,43088 +84866,0112403,36505 +84869,0206569,119965 +84871,0072665,4704 +84876,0276818,83013 +84880,1424003,42171 +84884,0036818,878 +84890,0319237,57424 +84894,0050915,35001 +84942,1502404,47327 +84944,1192628,44896 +84948,0046425,37380 +84950,0810922,50725 +84952,1590089,54186 +84954,1385826,38050 +84957,1274300,113885 +84961,0039927,56930 +84963,0034923,43526 +84972,1173494,31890 +84974,1590050, +84976,0072782,52555 +84978,0054426,131836 +84980,1454505,58764 +84983,0034694,55238 +84985,0063260,33228 +84987,0068537,42482 +84989,0071680,91459 +84996,1320254,58376 +85007,1481572,47218 +85010,0035659,34944 +85012,0056322,59990 +85014,0048967,43256 +85016,1277936,56811 +85020,0472399,27582 +85022,0480687,48988 +85025,1034389,49494 +85056,1464540,46529 +85070,0822791,141971 +85072,1396227,49637 +85106,1198153,37714 +85108,0110297,305656 +85129,1587729,51200 +85131,1217613,44943 +85133,0056279,45714 +85143,0033314,106406 +85175,0025397,63702 +85177,0068152,31644 +85179,1474276,28874 +85181,0119918,14903 +85186,1453242,60290 +85188,0493226,60221 +85190,1734477,54793 +85203,0021074,144792 +85205,0016104,53230 +85209,0134928,9706 +85211,1270842,57703 +85213,1510938,56831 +85215,0972857,19829 +85226,1210071,25186 +85231,0047281,43339 +85259,0061199,36540 +85261,1305591,50321 +85268,1258157,22620 +85270,0063729,56092 +85273,1326204,34214 +85275,1279117,8770 +85278,0896923,42819 +85284,0159251,118381 +85291,1555747,53358 +85293,1404830,40655 +85295,1618435,47533 +85298,1569364,31162 +85305,1143896,45022 +85307,1133989,24885 +85309,0040848,43451 +85312,1361566,20722 +85316,0072410,72185 +85319,0063268,99329 +85323,0345185,71110 +85325,1284526,16439 +85327,0478303,29865 +85330,0373960,18143 +85332,0488380,13957 +85334,0093146,26011 +85342,1555149,47931 +85344,0443584,13461 +85354,0411272,15362 +85358,1522262,53237 +85360,0478126,19205 +85362,1227929,37583 +85365,1509276,59248 +85367,1564367,50546 +85369,0062985,70591 +85372,1521848,51447 +85374,0022854,104221 +85378,0030464,243565 +85387,0017743,44657 +85389,0030413,33025 +85392,0906326,15182 +85394,1664894,59490 +85397,1486185,49730 +85399,1464174,38322 +85401,1512235,45132 +85403,0076319,77078 +85410,1433826,103751 +85412,1740707,46146 +85414,0945513,45612 +85438,1229822,38684 +85440,0023488,84303 +85442,1189042, +85445,1538874,333590 +85450,0036699,81751 +85453,0043709,193547 +85476,0051193,93528 +85505,1440770,109326 +85510,0978764,23629 +85513,0406706,14147 +85527,1530975,55893 +85538,1114680,40856 +85540,1561768,48243 +85542,1185376,46458 +85544,0080482,42167 +85547,1503776,57409 +85549,1016205,2010 +85552,0188653,47215 +85555,1457766,45715 +85565,1487118,58232 +85567,1670632,53364 +85570,0425489,62342 +85572,0951335,37534 +85574,1454523,57521 +85576,0019630,13847 +85585,0170811,24926 +85609,0372303,10356 +85612,0765444,37405 +85616,0061696,76875 +85618,0020223,104430 +85624,1801038, +85626,0377935,29436 +85679,0418657,11406 +85684,1156506,19611 +85686,1220706,16179 +85689,0110747,153041 +85691,0065396,85769 +85694,0139984,211331 +85728,0120086,45046 +85734,1331095,42273 +85736,1334585,13413 +85738,0368309,159878 +85740,0186650,95242 +85742,1305897,81414 +85744,0052255,45189 +85763,1418646,43418 +85770,1121786,41616 +85772,0965411,15837 +85774,1424432,58496 +85777,0810827,16140 +85780,1701991,110639 +85783,1650416,60434 +85785,1797363, +85788,1591095,49018 +85790,1518812,57120 +85792,0032220,131770 +85794,0038578,99351 +85796,1640459,49010 +85861,0021770,42815 +85863,0047279,76372 +85874,0912597,20329 +85881,1606392,55725 +85883,0079366,57537 +85885,1263750,48650 +85889,0036386,98399 +85892,0067989,42531 +85894,0038238,44087 +85896,0049881,90406 +85910,1037163,44898 +85955,1209367,20995 +85966,0343624,54354 +85981,0271537,68629 +85983,0062768,82460 +85985,1292643,51290 +85987,0110998,98514 +85992,1267379,13190 +85994,1198142,43021 +85997,0372832,56527 +86000,1560139,39356 +86002,1280501,38502 +86014,1650043,60307 +86023,0069745,28802 +86028,1220888,53172 +86033,0104279,10408 +86055,0253779,31405 +86057,0252487,83651 +86059,1411704,50359 +86061,0086369,96529 +86064,0910860,8896 +86066,0820096,64484 +86068,0450827,75725 +86070,0775417,3397 +86077,0206746,97284 +86079,0051584,97149 +86081,0318988,48596 +86083,0252490,31408 +86085,0085966,149149 +86087,0252489,31402 +86089,0263975,31412 +86091,0107719,73191 +86094,1103963,29972 +86096,1623008,59266 +86137,1537401,63555 +86139,0071859,54001 +86142,1436045,58857 +86145,1451762,41273 +86148,0901494,21372 +86151,0076097,54194 +86153,0216605,89756 +86162,0328078,46228 +86166,0038675,30734 +86168,0040418,51141 +86170,0390080,27091 +86173,0020570,29043 +86181,0046750,36871 +86190,0993842,50456 +86204,0039895,49334 +86206,0042379,36331 +86210,0906083,47435 +86229,0068348,47582 +86231,0062474,86750 +86233,1648112,46523 +86237,0078588,367647 +86242,1075749,30388 +86244,1291652,29920 +86246,0043048,39284 +86263,1397502,44988 +86277,1437366,51423 +86279,1194612,54527 +86286,0094939,23521 +86288,0199208, +86290,1179947,46105 +86293,1334512,49012 +86295,1262416,41446 +86298,1436562,46195 +86300,1599975,57695 +86308,0057999,101226 +86310,0042757,126596 +86312,0057328,49876 +86314,0044687,178587 +86316,0027686,57698 +86318,0051667,3081 +86320,1527186,62215 +86330,0840322,31451 +86332,0800369,10195 +86334,0036038,40719 +86337,0041530,43435 +86343,1200273,59928 +86345,1421373,45523 +86347,1190722,30969 +86355,0480239,56780 +86368,0031173,99920 +86372,0052950,76714 +86377,0927619,24447 +86380,0047377,31555 +86382,0079843,77166 +86399,0109273,72596 +86401,0101526,26880 +86405,0814331,18826 +86408,1529235,48415 +86410,1334102,50671 +86412,1606180,57118 +86416,1261843,30599 +86418,0021750,29745 +86420,0450470,12221 +86430,1498887,44159 +86432,1229381,47904 +86434,1366981,34420 +86436,0052713,27045 +86438,0985636,25638 +86440,0117273,152861 +86442,0092794,53741 +86449,0402743,10011 +86451,0252335,140101 +86453,0059159,72026 +86455,0062042,77124 +86463,0098331,42709 +86471,0004465,36821 +86474,0372782,61952 +86476,0064994,12078 +86478,1343755,9511 +86487,1492030,202241 +86489,0187457,72375 +86491,1157720,21508 +86493,0080910,76816 +86495,1020972,51520 +86497,0461892,141241 +86500,1225296,8904 +86502,1149583,18187 +86504,0405455,167966 +86508,0062009,48515 +86510,0023261,87673 +86513,0414923,36290 +86515,0803047,4880 +86518,0003419,28627 +86521,1587854,239553 +86536,0064429,60315 +86539,1034419,43817 +86541,1502396,48414 +86544,1176686,12588 +86546,1409004,51736 +86548,1067583,55787 +86550,1213921,125874 +86553,0038262,43498 +86559,0068458,3581 +86572,1060255,33134 +86574,1853563,61488 +86576,1825163,61933 +86578,1646974,50848 +86583,0768239,35619 +86590,0387151,34902 +86593,1223236,57586 +86604,0843358,52032 +86606,1414378,62255 +86620,0028566,106515 +86622,0050156,185263 +86624,1428556,44555 +86626,1438535,54083 +86628,1416801,51209 +86635,0762145,14252 +86637,1139085,52256 +86642,1497874,55934 +86644,1596343,51497 +86646,1284587,87308 +86648,0029658,80639 +86651,0025238,84099 +86653,0036363,43515 +86655,0023985,43594 +86657,0080406,57082 +86664,0013059,157856 +86668,1347439,241620 +86671,0040000,37041 +86675,0025272,57035 +86677,0893532,19237 +86687,0053752,86225 +86689,0035250,28286 +86709,1561435,128990 +86715,0067690,46175 +86717,1371574,43908 +86719,0113840,130272 +86721,1013607,42521 +86723,1504300,56113 +86725,1620604,50272 +86728,0065152,55836 +86745,0091125,79179 +86748,0419773,1115 +86750,1339161,54524 +86753,0794350,22449 +86756,0145929,46804 +86758,0841922,8931 +86760,0273326,56314 +86762,1691323,62321 +86764,0096841,97039 +86766,1330205,19482 +86768,1176096,57859 +86770,0296809,117406 +86773,0025791,120972 +86775,1479388,73474 +86778,0283027,11376 +86781,1255953,46738 +86785,0893397,54699 +86787,0860467,18033 +86789,0022689,92341 +86791,0049367,47310 +86795,0807952,38944 +86797,0328045,55408 +86802,0082243,40041 +86807,1259570,62077 +86809,0840787,24810 +86811,0869921,30335 +86813,0472884,188505 +86815,1596346,43959 +86817,0491152,49022 +86819,1121964,40699 +86826,0933876,21841 +86829,0292081,115427 +86833,1478338,55721 +86835,0822847,38321 +86837,1681687,61420 +86839,1204953,56822 +86841,1186371,32654 +86844,1368443,49853 +86846,0465407,46849 +86848,0825248,13507 +86852,1321860,50780 +86854,0093349,50012 +86856,0035447,58035 +86858,0019304,27777 +86860,0026121,92667 +86862,0037849,106882 +86864,0055198,39410 +86866,0048127,1679 +86876,1017464,47518 +86880,1298650,1865 +86882,1605783,59436 +86884,1827512,63831 +86892,1527788,51608 +86894,0042275,43385 +86896,0023074,50078 +86898,0478304,8967 +86900,0063410,86284 +86902,0045492,63858 +86904,0045932,41611 +86906,0859644,15911 +86909,0826817,28723 +86911,1411697,45243 +86922,1528313,52077 +86927,0036208,32120 +86929,0022386,85504 +86931,0035431,110628 +86941,1386926,56271 +86943,1697920,70264 +86947,1361843,22882 +86949,1327827,121662 +86952,1415290,56807 +86955,1394268,23116 +86957,0918575,60306 +86960,1176724,21469 +86970,1668078,359002 +86973,1124377,5937 +86977,1326954,38931 +86982,0063172,3107 +86985,1562450,131880 +86988,1238721,145154 +86990,0024989,43692 +87000,1695994,42889 +87002,0071889,252059 +87004,1440266,57276 +87006,0082352,79649 +87008,0045002,87349 +87010,0085878,47489 +87012,1202579,29382 +87016,0475224,17367 +87028,1265990,49950 +87031,0073470,11226 +87033,0029314,84237 +87036,0254325,52049 +87038,0040444,25672 +87040,0150980,42506 +87042,0067961,80560 +87047,1282153,53413 +87049,0970935,23516 +87051,1354564,43616 +87053,0024800,122709 +87055,0328990,78789 +87057,0398013,58529 +87059,0339553,104505 +87061,0076871,83230 +87063,0818108,3962 +87065,1361825,142712 +87069,0119844,55700 +87071,0935086,80799 +87073,0114055,20881 +87076,0476999,10420 +87079,1529572,44945 +87081,0454224,15543 +87085,0024381,85670 +87092,0041399,113653 +87094,0048272,97211 +87096,1193096,44221 +87098,1274645,83345 +87100,1606789,57059 +87103,0367204,74183 +87105,1646926,51170 +87115,0847825,60164 +87164,1433528,41504 +87166,1139282,38850 +87168,1014774,37206 +87170,1278480,83587 +87173,0192701,76171 +87179,0030755,140995 +87181,1379222,42571 +87186,1202339,45033 +87188,1324053,44223 +87192,1478964,59678 +87194,1441912,59468 +87197,1533117,51533 +87205,1735485,46221 +87207,0410407,33203 +87210,0960097,37665 +87216,0057225,80027 +87218,0043625,25738 +87220,0048790,39834 +87222,1302011,49444 +87225,0068347,34184 +87227,0024044,100420 +87229,1032207,44443 +87232,1270798,49538 +87234,1440292,49020 +87238,0101864,50507 +87256,0038178,43497 +87258,0045230,38417 +87260,0021281,104439 +87262,0026264,120977 +87264,0037557,43489 +87266,0018253,102541 +87268,1570962,65289 +87270,1032825,52505 +87276,0453508,78526 +87279,1273241,25541 +87287,1307861,70862 +87290,0018515,102384 +87294,0756210,48996 +87296,0362496,21616 +87298,1531663,45658 +87300,0810856,127818 +87302,1465505,41827 +87304,1532503,55347 +87306,1650062,37686 +87308,0780362,15533 +87314,0979434,41382 +87316,0496673,45675 +87320,1522857,52918 +87322,0832347,79072 +87325,0293082,43765 +87327,0092716,103203 +87330,0234854,123074 +87332,1616194,78400 +87334,0272022,87945 +87336,0353400,126108 +87354,0126449,246882 +87356,0056327,61475 +87358,0060872,84823 +87360,1590078,34835 +87364,0772173,114044 +87366,0264378,140007 +87368,0076374,222600 +87370,0446510, +87378,0017376,185579 +87383,0026252,29877 +87385,1512894,37523 +87387,0420090,44104 +87390,0924165,13137 +87392,0066919,56231 +87403,0476519,47171 +87405,1581835,58446 +87408,0081672,144560 +87410,0970926,44219 +87413,0115658,19963 +87415,0020122,105981 +87417,0051372,89688 +87420,0403962,263532 +87425,0111648,55763 +87430,1133985,44912 +87433,0058544,15766 +87435,0105777,55761 +87442,1710542,57536 +87444,1340773,56272 +87446,0424279,13378 +87449,1365474,36784 +87466,0113956,112422 +87469,1623742,64566 +87471,1334479,50069 +87483,1396218,58224 +87485,1284575,52449 +87497,0057688,169788 +87499,1391137,35688 +87505,0046204,89158 +87507,0030811,148675 +87511,0037408,80941 +87514,0057400,74088 +87516,0034242,94241 +87518,0049800,45239 +87520,1399103,38356 +87522,1583420,59861 +87527,1592876,57771 +87529,1240982,38319 +87547,0109982,291164 +87549,1398428,47386 +87556,0073190,97831 +87558,0024763,175035 +87560,0045049,43188 +87562,0024475,95854 +87564,0033076,80086 +87566,0030265,126777 +87568,1547230,60062 +87572,0446802,14552 +87587,1109594,59111 +87589,1174693,44991 +87591,1841487,330152 +87595,0021025,108213 +87598,0037651,107973 +87608,1601475,64854 +87618,0068346,62382 +87633,0140536,128042 +87636,0062825,18928 +87639,0435610, +87642,0103228,55754 +87644,1537392,61033 +87647,1173907,23190 +87649,0962781,47975 +87660,1742683,65034 +87662,0020695,61546 +87683,0329679,125233 +87685,0416773,85430 +87689,0125981,148314 +87691,0372461,55502 +87693,0120371,32934 +87697,0805613,1736 +87700,0024214,91150 +87702,0024793,126516 +87719,0473506,64350 +87721,0170232,18888 +87745,0016013,44439 +87751,0306811,288108 +87761,0091859,18125 +87763,0016895,42368 +87766,0083226,42150 +87769,1105294,289010 +87771,1348997,366044 +87773,0020092,147846 +87780,0364527,27358 +87785,1135084,22907 +87790,1517177,53256 +87792,1528312,59065 +87794,0433028,41593 +87796,0462683,12840 +87798,0020446,169842 +87802,0100895,55756 +87804,0122787,55759 +87806,0076918,114514 +87808,0025338,126517 +87831,0293401,12513 +87834,0312941,73884 +87843,0976227,32893 +87858,1198075,60302 +87860,1712573,52605 +87867,1222817,38317 +87869,1499658,51540 +87872,1270291,41360 +87874,0382966,65509 +87876,1216475,49013 +87878,0058263,96394 +87880,0058166,64158 +87882,1255951,25867 +87884,0069225,58257 +87890,0068337,72449 +87909,1087461,63197 +87911,0995851,66113 +87913,0022276,52239 +87915,0064683,30645 +87917,0034251,45215 +87919,0019195,108923 +87921,1369706,45657 +87923,0045102,48627 +87928,1344784,41339 +87930,1787777,63144 +87948,0043361,109258 +87950,0079756,109251 +87952,0043882,29577 +87954,0020018,83989 +87960,1253565,24792 +87962,0818098,36663 +87964,1247644,44990 +87966,0020836,26699 +87971,1282041,45014 +87973,1074191,20055 +87975,1697851,61537 +87977,0085977,19434 +87979,0054817,37560 +87984,0450121,57965 +87988,1275891,86262 +87990,1590024,39840 +87992,1473074,37832 +87994,0382691,61814 +87996,0446930,52188 +87999,0063149,45690 +88001,0219333,80294 +88003,1056067,12432 +88005,0104693,1482 +88015,0079103,40047 +88017,0052281,98060 +88020,1823051,63297 +88022,1445203,68200 +88024,0100791,94725 +88028,0126838,95482 +88031,0362246,67236 +88038,0208664,262296 +88040,0090362,288153 +88042,0037615,35954 +88044,0067814,42516 +88047,0100274,32691 +88049,0253378,54690 +88051,0090565,37189 +88053,1288502,177697 +88055,0448131,24189 +88059,0101449,96105 +88061,0306359,109048 +88063,0862946,21959 +88065,1728239,68029 +88067,1810633,60897 +88069,1934231,67109 +88071,0143749,193065 +88073,0388996,73340 +88075,1123894,38645 +88078,1578709,49594 +88087,1002959,118116 +88089,0259256,295560 +88092,0035836,44480 +88094,1764726,64780 +88099,0112041,71982 +88106,0071797,84922 +88108,1067774,59860 +88110,1502714,55895 +88114,0494716,4641 +88116,1320302,16900 +88118,1334553,66195 +88125,1201607,12445 +88127,1864288,65058 +88129,0780504,64690 +88131,1459012,53404 +88133,0052017,60899 +88135,0056141,33765 +88138,1541995,58882 +88140,0458339,1771 +88158,0097332,27984 +88160,0109903,41872 +88163,1570728,50646 +88166,0097302,80613 +88168,0067329,72447 +88171,0042752,134168 +88173,0032477,100010 +88175,0033459,142876 +88177,0029950,115425 +88179,1563738,51828 +88181,1652287,62522 +88192,1014806,63287 +88194,1147684,27588 +88203,0308090, +88205,0255730,74946 +88210,0035689,62749 +88213,0034919,45801 +88224,0194026,55166 +88228,0046514,85367 +88235,1540133,67913 +88237,1509803,66942 +88248,1699231,59115 +88250,1230130,62106 +88252,0872094,72558 +88267,1449283,51162 +88270,1103273,55632 +88272,1714208,65599 +88274,0069444,91891 +88276,0062322,58897 +88278,0013496,28480 +88280,1073535,8897 +88282,0166808,56653 +88284,0029660,59566 +88299,1280011,30873 +88301,1482393,54540 +88305,0070453,42463 +88307,0066773,42481 +88310,0452580,8888 +88313,0072241,46772 +88315,0069120,47251 +88317,0064640,86655 +88321,0103800,31303 +88327,0069518,28039 +88329,0042700,46995 +88331,1091616,60785 +88335,0366808,230680 +88339,1646975,57389 +88341,0045009,26242 +88343,1721683,65016 +88345,0323250,13931 +88347,0111735,44117 +88349,1792794,63736 +88352,0020793,94716 +88356,0472181,41513 +88368,1664825,61724 +88371,0447907,48453 +88374,0064041,48612 +88376,0783328,67636 +88378,0115238,51765 +88380,1013860,43935 +88382,1146314,12446 +88398,1961604,80210 +88400,0419641,17086 +88405,1632708,50544 +88411,0765442,51735 +88414,0118174,47116 +88417,0085513,107246 +88419,0022905,50072 +88423,1314190,68412 +88425,1429392,69794 +88427,0047954,70192 +88429,0052117,111678 +88448,1360822,50004 +88452,1280567,20268 +88454,0831280,68174 +88456,1535617,49847 +88466,0783695,22093 +88468,1213012,12819 +88471,0056908,85640 +88473,0056566,121903 +88480,0103813,141055 +88483,0090769,83105 +88485,0106684,33927 +88488,0070748,92311 +88491,0033803,43792 +88493,0031282,76382 +88495,1456661,47854 +88511,0022676,138341 +88513,0023125,126922 +88515,1297919,55846 +88518,0028092,189005 +88520,0483719,13254 +88543,0117626,117401 +88548,0099844,44257 +88562,1081929,54384 +88564,1646958,67404 +88566,1236371,57403 +88568,1714878,86261 +88570,0073887,90511 +88572,1595842,45839 +88574,0049877,19178 +88576,0067048,128395 +88578,1289449,45765 +88580,0164347,88562 +88589,0071396,24923 +88591,0014497,91208 +88593,1230385,57361 +88595,0017449,95956 +88597,1509636,46920 +88599,1403144,36956 +88601,0045907,43338 +88603,0759509,51851 +88605,1076251,54326 +88607,0095788,191060 +88633,1264103,38937 +88638,0015842,8462 +88640,1430110,35008 +88642,0283915,47855 +88646,0051390,47324 +88649,1360887,51010 +88652,1103192,56810 +88654,0041776,77546 +88670,1193088,14688 +88672,1637706,59968 +88674,0000008,105158 +88676,0123802,38638 +88678,1630027,63849 +88680,0498846,11110 +88682,0808245,65673 +88688,1305112,73408 +88690,1756851,78381 +88692,1185344,39806 +88694,0101349,54220 +88697,0120240,209802 +88699,1500491,51620 +88701,0990427,53146 +88704,0799915,13070 +88706,1930315,70821 +88724,1613023,70342 +88726,1509638,52350 +88734,1441956,63943 +88740,0035605,25894 +88742,0044543,120932 +88744,1318514,61791 +88746,1687281,51993 +88748,0042702,101653 +88750,0093145,133781 +88752,0025251,64318 +88754,0072149,29399 +88756,0259929,35257 +88759,1104814,28793 +88761,0108230,26479 +88764,0281078,92465 +88766,0032012,120995 +88785,1488555,49520 +88788,1523980,46558 +88796,0066939,29496 +88801,0111792,324011 +88810,1454029,50014 +88812,1622547,62206 +88814,0050398,56697 +88816,0044941,52991 +88818,0019735,81829 +88821,0044900,185197 +88823,0053912,104602 +88833,0030856,80771 +88835,1922612,67675 +88837,1295072,46584 +88839,0411118,11604 +88852,0025718,111623 +88857,0021016,90395 +88877,1212454,59435 +88879,1525835,56832 +88886,0303780,36242 +88889,0109962,41387 +88894,0034961,52846 +88899,0995850,50722 +88901,1696535,82688 +88911,1455151,39413 +88925,0324015,9295 +88932,1622979,55779 +88934,1150947,51384 +88950,0968264,60309 +88954,1268799,55465 +88957,0053967,35030 +88959,0066078,31398 +88961,0053072,43120 +88971,0030469,38774 +88973,0030483,29484 +88975,0023450,88271 +88977,1405810,40794 +88979,0086456,62385 +88989,0104587,162453 +88991,1082009,42973 +88993,0020075,77922 +88998,0430652,35802 +89000,1542852,47261 +89002,1517489,56288 +89007,0098175,73930 +89010,0278069,105287 +89014,0023937,117412 +89016,0029557,98635 +89018,0040597,111960 +89021,0061620,42692 +89023,0358670,64964 +89025,1314242,46998 +89028,1270761,46261 +89030,1438176,58151 +89039,1549572,55420 +89041,0071406,104251 +89043,0246005,22857 +89045,0091865,60375 +89047,1403177,44835 +89052,1031225,51370 +89054,0301050,49913 +89056,0293475,100776 +89060,0808276,21786 +89069,0077157,33470 +89072,1464580,52015 +89074,1743720,58492 +89083,1764657,84880 +89085,1226753,48289 +89087,1657507,62835 +89090,1621444,55244 +89098,0070180,80382 +89100,0066416, +89102,1152822,43942 +89104,0450367,18634 +89110,0067601,29491 +89112,0038668,109235 +89114,0049431,4938 +89116,0048724,76121 +89118,1189073,63311 +89126,1299653,20441 +89133,0075962,121530 +89135,0062271,17974 +89137,1326238,59392 +89139,0851530,15052 +89145,1453403,64832 +89147,0243199,40959 +89162,1597089,55845 +89164,1576440,64320 +89170,1293842,44750 +89190,0816462,37430 +89192,1501652,50023 +89194,1604171,51588 +89203,1235790,57211 +89206,1235807,11388 +89208,1104006,16335 +89211,0392869, +89213,1043845,52725 +89215,1336011,53437 +89217,1296898,52338 +89219,0055872,69292 +89222,0106545,63721 +89230,0922642,15425 +89244,1262420,53520 +89246,0071949,69765 +89248,0024617,27986 +89260,1814836,63579 +89268,0032447,109008 +89273,0109779,11248 +89275,0458480,21141 +89277,0862892,52685 +89281,1316037,40016 +89285,0083713,100794 +89287,0364745,17236 +89289,0111749,48199 +89300,1522334,60784 +89302,1797469,73358 +89305,1716772,69798 +89308,0100288,79775 +89313,0059803,246749 +89315,0379269,86751 +89321,1235170,54662 +89323,0002461,46758 +89325,0094816,172149 +89327,1125929,39845 +89329,0023326,36519 +89337,1319744,72711 +89341,0049357,54797 +89343,0873886,48572 +89347,0104662,74938 +89349,0025509,67532 +89351,0022787,32859 +89354,0162426,407 +89356,1705786,67884 +89365,0938291,18375 +89367,0441782,14215 +89369,1554091,55720 +89371,1551621,25855 +89373,1341341,55246 +89375,1270277,58884 +89377,1316622,50838 +89386,1417592,72744 +89388,1742650,70868 +89393,0044572,117478 +89398,0035746,98482 +89401,0058479,95358 +89403,0046006,47675 +89406,0040869,52278 +89408,0050135,106833 +89427,1633356,65055 +89449,1529569,51072 +89470,1598778,39538 +89472,1456472,61667 +89476,0036840,131764 +89478,0084867,23587 +89480,1588398,64586 +89482,0037054,60225 +89485,0046057,85498 +89490,0999913,64639 +89492,1210166,60308 +89501,1466072,47753 +89506,0836683,16092 +89516,0079144,45048 +89521,0045332,108844 +89523,1227378,72914 +89527,0036919,43511 +89532,0032610,28373 +89535,1508675,73532 +89537,1226261,201405 +89545,1661099,73454 +89549,1058027,89271 +89551,0094375,43637 +89554,1562872,61202 +89570,1498569,47760 +89580,1560970,55785 +89582,1632547,68341 +89584,1425933,46909 +89586,1825918,71689 +89588,0041378,31167 +89590,0486541,30867 +89592,0067641,55847 +89594,0070565,65317 +89596,0368287,103475 +89598,0112710,49974 +89607,0058405,64524 +89610,0081606,35125 +89613,0478175,78228 +89616,0210163,65081 +89618,0210167,57726 +89620,0061037,36236 +89623,0069451,63327 +89629,1545759,61404 +89632,0406977,76684 +89635,1372685,32958 +89638,1320352,45806 +89650,1233301,38543 +89658,0047050,80241 +89662,1954794,66605 +89664,1146298,269518 +89666,0328952,81783 +89668,0051343,166798 +89670,0023277,36513 +89674,0088454,27881 +89676,0027307,100033 +89678,0844794,18093 +89701,0052812,86920 +89703,0352531,75865 +89705,1365023,124630 +89707,0139500,87063 +89712,0370477,5473 +89714,0906778,72049 +89718,1467088,46534 +89720,1100051,55890 +89722,1617620,44950 +89730,0486219,13616 +89732,0028668,38437 +89745,0848228,24428 +89747,0023556,82260 +89753,1340800,49517 +89759,1832382,60243 +89761,1571222,48231 +89763,0024302,109886 +89765,0040798,74525 +89767,0037932,42077 +89769,0073634,42266 +89774,1291584,59440 +89778,1608285,85821 +89780,1522835,33555 +89794,0022792,125736 +89797,0059160,94655 +89800,0026017,131732 +89802,0039634,106825 +89804,1124035,10316 +89806,0046149,65283 +89819,0079763,173341 +89829,0022430,91961 +89831,0044083,95949 +89833,0021635,84299 +89837,1788391,74725 +89840,1448755,49021 +89844,0470737,38743 +89846,1777551,67885 +89848,1602476,37822 +89850,1196672,52058 +89862,1242599,58699 +89864,1306980,40807 +89870,1043903,39517 +89872,0088380,52837 +89877,1365483,54469 +89881,0044091,41800 +89883,0059637,85916 +89896,1316540,81401 +89898,0459748,63375 +89900,1827487,74879 +89904,1655442,74643 +89908,1258141,17658 +89910,0397692,57714 +89912,0067979,105757 +89924,0791309,13687 +89926,1315582,72419 +89930,1792621,71905 +89932,0051915,114060 +89936,0061520,39861 +89939,0041414,123723 +89941,0427424,115596 +89945,1520494,59852 +89961,1376717,85743 +89963,0156701,100784 +89965,0099927,41822 +89967,0053258,45590 +89969,0087606,103590 +89971,0055253,55863 +89973,0249577,47182 +89977,0010071,70803 +89979,0426900,91094 +89983,1305797,148284 +89985,0979263,75375 +89988,0114669,56345 +89990,0435225,148327 +89994,1410281,129427 +89997,1684628,60421 +89999,0066827,27439 +90005,1519664,50765 +90007,1303782,70636 +90009,1233576,63907 +90011,1157732,113432 +90015,0094320,33592 +90017,0069818,58402 +90019,0436639,30043 +90021,1080857,86440 +90035,0076098,149507 +90049,0409965,126004 +90052,0067361,63025 +90055,0075001,88922 +90057,1675192,64720 +90059,0119242,125039 +90061,1174042,70588 +90064,0343524,48778 +90066,1504319,42707 +90068,0072666,31116 +90071,1613062,56401 +90084,0070766,129942 +90086,0074782,134209 +90090,1719498,113258 +90104,0281534,117404 +90106,0028103,83633 +90108,0088153,69722 +90112,0031311,61645 +90114,0026507,218389 +90116,0058429,143841 +90118,0047250,74810 +90127,1661862,76013 +90133,1298594,54700 +90154,1525890,73588 +90167,0046330,111625 +90170,0039632,43460 +90172,0043053,52847 +90183,1233259,80122 +90196,0042541,83015 +90199,0329347,225951 +90201,0116445,47496 +90203,0069013,85365 +90206,0046008,11383 +90208,1239427,28858 +90211,0114329,43981 +90235,1157549,80115 +90237,1279083,24566 +90239,0207195,125553 +90241,0066040,61683 +90243,0058652,58878 +90245,0086907,37239 +90247,0499157,76853 +90249,0433035,39254 +90252,0071413,72648 +90254,0128170,6182 +90256,1189259,42585 +90258,0091359,337435 +90260,0075454,208309 +90262,0301258,147105 +90264,0207653,131098 +90266,1753549,67273 +90268,1643222,73262 +90270,0482957,9345 +90273,1675167, +90279,0400868,61267 +90281,1646114,60981 +90284,1365637,91391 +90286,0139735,172004 +90288,0796829,162451 +90292,0189102, +90303,0069088, +90306,0013626,49452 +90308,1146295,126732 +90310,1381505,35221 +90312,0051082,109991 +90314,0047099,130650 +90319,1829648,131792 +90321,0042579,30014 +90327,0037563,58732 +90339,0003489,133123 +90341,1908471,75803 +90343,1068242,68817 +90345,0905372,60935 +90350,1236472,53344 +90353,1533013,59437 +90355,1981703,70875 +90357,1204340,76543 +90359,1729211,75969 +90364,0089714,71933 +90371,0049405,27999 +90374,1441326,50837 +90376,1242460,71859 +90378,1704619,69480 +90380,0025590,43688 +90382,1738387,70009 +90384,0497329,10005 +90397,0061664,79094 +90403,1509767,52451 +90405,1637688,49530 +90413,1438216,70925 +90419,1182924,18916 +90421,1233192,62728 +90424,0052997,46724 +90426,1283887,45013 +90428,0466893,44754 +90430,1692486,72113 +90432,0222581, +90434,1436568,71677 +90439,1615147,50839 +90453,0097942,71821 +90458,0051666,37079 +90460,0085125,23807 +90462,0783476,52297 +90466,0038816,206052 +90469,1778304,72571 +90471,1582248,72432 +90474,1661420,71157 +90476,1440161,45156 +90478,1372306,61730 +90488,0079710,104449 +90493,0077640,113105 +90495,0086141,70500 +90497,2058583,139863 +90514,0038367,3966 +90522,1634122,58233 +90524,1600195,59965 +90526,1699513,69310 +90528,1440345,53487 +90531,1723811,76025 +90533,0030424,43845 +90535,0074829,92751 +90537,0061912,42696 +90543,0156246,138535 +90545,0051114,83354 +90547,0486751,12838 +90549,1037004,22819 +90552,0449144,69487 +90554,0163559,113137 +90556,0066997,94623 +90559,0492494,123334 +90561,1664892,46147 +90564,1639901,57602 +90566,0291507,86126 +90568,0443678,28687 +90570,0086936,140003 +90572,0800341,58069 +90574,1143148,72172 +90576,0770703,63492 +90578,1462041,69668 +90592,1715802,65992 +90594,1185600,58511 +90596,0060877,27642 +90598,0091818,47342 +90600,1614989,70670 +90603,1672723,69735 +90605,1552976,126015 +90609,0075730,139467 +90617,0105087,344741 +90620,1308138,32909 +90622,1409006,47273 +90624,1586752,45610 +90630,1784538,77801 +90632,1488164,78309 +90634,0064570,81315 +90645,1521197,61891 +90647,0448694,58423 +90649,1183911,46934 +90651,1382722,62614 +90653,0097017,82020 +90662,1653700,70196 +90664,0047313,56122 +90666,0475243,18865 +90668,0294279,79031 +90671,0075140,72494 +90673,0042513,79401 +90683,0313285,69217 +90690,0848577,61121 +90693,0193171,28414 +90697,0067003,83147 +90700,0799916,18520 +90702,0068306,27012 +90704,0064400,42605 +90706,0077327,22396 +90717,0471042,59108 +90719,1616195,88794 +90730,0102960,27769 +90738,1646980,73499 +90741,0473464,14127 +90744,0066540,49411 +90746,0983193,17578 +90748,0050805,60387 +90751,1535612,74536 +90753,1368491,52799 +90769,1510934,40658 +90775,1446069, +90777,0892904,39450 +90795,1781843,95448 +90806,0070684,36261 +90809,1847731,65229 +90811,1016307,25656 +90813,0110958,64347 +90815,0815092,6360 +90817,0036716,38683 +90819,0026605,157924 +90821,0063527,47189 +90823,0112454,52472 +90825,0304023,125943 +90827,0443231,40592 +90843,0983242,149117 +90845,0082357,19034 +90849,0053450,199072 +90853,0467506,65044 +90863,1113829,75964 +90866,0970179,44826 +90868,1562568,50875 +90870,1674784,70578 +90873,0088044,14673 +90876,1485698,36142 +90878,0022436,109435 +90883,0110335,56489 +90886,1010005,263600 +90888,1253864,37958 +90890,0810913,71880 +90895,0391483,37736 +90897,0065541,185292 +90899,1325014,75311 +90903,0116962,54421 +90907,0010821,28629 +90910,1530970,31222 +90912,1234550,26738 +90914,1270262,62630 +90916,1748197,70586 +90929,1660379,84427 +90931,1718776,94336 +90933,1700844,51994 +90935,0157124,47099 +90937,0311750,121462 +90939,1712159,51248 +90943,1972663,77365 +90945,0685628,94174 +90947,1736633,75233 +90949,1284576,12428 +90951,0071890,4790 +90953,0758799,17495 +90958,0085390,80607 +90960,0027200,61985 +90963,1787816,53328 +90965,1667691,65831 +91007,1637687,72875 +91010,1719071,60422 +91012,0042247,238616 +91014,1533749,55292 +91026,0067119,40350 +91028,0051016,43252 +91031,0048806,114975 +91035,1181614,9364 +91037,0070078,48014 +91044,1714861,59206 +91046,1241329,11403 +91048,1315350,47320 +91054,0035665,125249 +91056,0041162,93560 +91058,0133033, +91065,0056165,4195 +91067,1149592,14726 +91069,0048130,4809 +91071,0039556,181537 +91073,0023225,119564 +91075,0037749,35543 +91077,1033575,65057 +91079,1758692,60420 +91094,1204342,64328 +91096,0441263,10109 +91104,1324999,50619 +91106,0082429,65002 +91108,0065720,107327 +91110,0074184,64983 +91112,0103843,20859 +91126,1568911,57212 +91128,0376136,23514 +91134,1655420,75900 +91137,0031973,89086 +91140,1485762,31208 +91154,0141937,131914 +91163,0037086, +91167,1268224,202152 +91169,1217426,50036 +91179,0032620,296104 +91181,0022335,82397 +91187,1863330, +91189,0984155,25922 +91191,1235552,64124 +91193,0053740,30784 +91195,0433624,24185 +91199,1714210,79120 +91201,0094076,46770 +91204,0973785,22165 +91206,0126004,84473 +91208,0083082,83233 +91211,1602572,39693 +91213,0874421,101124 +91216,1290082,61629 +91218,0025263,178452 +91223,0035751,85677 +91227,0233509,21244 +91229,1759871, +91231,1471195,68634 +91233,0945571,13060 +91235,1754141,76234 +91241,1948150,70590 +91243,1092634,38407 +91246,1092285,125161 +91248,1079450,94509 +91250,1091229,20002 +91253,0028305,221346 +91256,0276951,125700 +91261,1239426,38336 +91266,1071358,15157 +91268,0028112,173456 +91271,0117973,39463 +91273,1181795,30618 +91284,0093431,35841 +91286,0016029,29879 +91288,1525836,74135 +91290,1668200,53457 +91298,0831275,17155 +91302,1496005,51409 +91304,0086610,25834 +91306,0308363,47226 +91309,1314269,19305 +91323,1366344,57431 +91325,0477302,64685 +91331,0046432,172908 +91333,0095276,29932 +91335,1461418,28118 +91337,1124388,45708 +91339,0405615,26985 +91351,0096842,11625 +91353,0109162,9369 +91355,0371552,9642 +91360,1787797,91367 +91362,0035258,79887 +91371,1640548,75622 +91386,1402488,65759 +91388,0083560,125769 +91391,0079256,91781 +91393,0040092,43444 +91395,0065086,66488 +91414,1430607,51052 +91416,1911600,77635 +91419,0052395,80555 +91421,0059641,80046 +91423,0071089,52661 +91425,0037330,25413 +91429,0373653,153102 +91442,0063297,182129 +91444,0171340,125506 +91446,0048570,85639 +91448,1119123,37721 +91450,0473102,56601 +91461,1578882,57585 +91470,1634136,91550 +91474,1541160,62046 +91483,1308729,70074 +91485,1764651,76163 +91488,0084701,13396 +91490,1619880,46020 +91492,0036628,43546 +91494,0017540,111607 +91500,1392170,70160 +91503,0005529,174593 +91505,1216520,59457 +91509,1602500,38264 +91511,0195256,112698 +91513,0060543,77381 +91515,0028331,87911 +91517,0098486,15736 +91529,1345836,49026 +91531,0092306,83229 +91533,0060482,36662 +91535,1194173,49040 +91537,0485241,1254 +91540,1691920,75345 +91542,1515091,58574 +91548,1687247,66150 +91554,0154467,278822 +91556,0348572,54157 +91558,0113077,26824 +91560,1706596,73448 +91562,0006886,56801 +91564,0190882,25653 +91566,0208178,104465 +91571,1372686,101173 +91573,1742023,103597 +91582,0061024,39287 +91586,0295168,22075 +91589,0049783,46741 +91591,0071788,42450 +91593,0920460,54900 +91595,1334555,61896 +91597,1667905,83552 +91599,0043699,125264 +91601,1666168,89456 +91603,1865357,118204 +91605,1294212,119425 +91610,1113827,17775 +91612,0436091,70955 +91615,0872245,20186 +91617,0310313,99642 +91619,0082241,123712 +91622,1625346,57157 +91624,0995857,30245 +91626,1536410,70577 +91628,1598822,62838 +91630,1229238,56292 +91632,0231626, +91634,0231627,262475 +91653,1389137,74465 +91655,0044370,40693 +91658,1568346,65754 +91660,1093357,71469 +91664,1459052,45320 +91666,0042665,16939 +91671,1615918,55301 +91673,1602098,73873 +91681,1512685,52274 +91683,1709695,378477 +91688,1251743,51995 +91690,1720616,80038 +91692,0048119,82203 +91694,1634121,63207 +91697,0040695,25688 +91707,1714209,79777 +91709,0023101,84505 +91711,0041871,25915 +91713,0029940,111100 +91715,0064679,85942 +91718,0022725,58192 +91727,0029675,52359 +91729,0034269,75315 +91741,0366416,2349 +91743,1153053,46641 +91745,1590295,92464 +91747,1226036, +91749,1303833,24986 +91752,0257001,12599 +91755,1822382,56761 +91757,1328875,24833 +91762,1692928,53505 +91766,0065895,45138 +91768,0070083,48153 +91770,0047370,36522 +91782,1683970,74518 +91784,1682246,59006 +91786,1488591,41066 +91789,1656170,53100 +91793,1646131,293114 +91795,1346669,116537 +91797,0055841,118955 +91799,0023486,72997 +91805,1954598,82698 +91808,1233334,73939 +91821,0251282,13247 +91823,1702433,50393 +91826,1151410,71866 +91829,1880418,72766 +91831,1560985,76487 +91834,1781781,74523 +91840,1450330,76785 +91842,1524137,77866 +91844,0871510,14163 +91852,0059491,74878 +91854,0017119,72821 +91856,0100308, +91858,0064356,43984 +91860,0083318,269963 +91862,0140336,148503 +91866,1781775,78461 +91869,1787660,75301 +91871,0029044,112655 +91873,1710396,63574 +91880,0410316,37006 +91882,1424361,95538 +91884,0063569,184795 +91886,1564349,62837 +91888,1235830,63498 +91890,1007029,71688 +91894,1219828,39072 +91896,0882969,15346 +91902,1925421,78182 +91904,0319685,257608 +91906,1403047,81527 +91908,1334328,53128 +91911,1711484,65233 +91914,1787758,73066 +91919,0033727,31309 +91921,0290591,148353 +91924,0243859,33684 +91927,1176727,35156 +91929,1556190,72721 +91933,1509842,162374 +91935,1541149,72842 +91937,1568337,79465 +91947,1336006,79896 +91952,1324055,57829 +91954,0081280,42157 +91957,1446147,57353 +91960,0195039,84420 +91970,1529252,47383 +91972,1535616,38541 +91974,1496025,52520 +91976,1601913,75174 +91978,1568338,49527 +91981,1726738,55741 +91983,1604115,68861 +91987,1788461,84407 +91991,0080739,124210 +91993,0054614,37038 +91995,0047041,72313 +91997,1031243,8368 +92001,0049856,60938 +92004,0380311,145594 +92006,1550524,58194 +92008,1506999,70435 +92010,1821362,66118 +92023,0044825,26283 +92025,0044938,260064 +92027,0024539,105548 +92029,0053441,110139 +92032,0069989,94741 +92046,0780002,31337 +92048,0896872,65760 +92058,1530509,74997 +92062,0118915,75579 +92064,0030996,45971 +92079,0207907,60364 +92083,1156470,28632 +92085,0100963,47648 +92094,0995036,15044 +92096,1442571,34179 +92099,0387357,35250 +92102,0062767,32831 +92104,0057069,42990 +92106,1747924,65892 +92118,0091355,78450 +92120,1926992,87408 +92122,1695405,82321 +92124,0094745,115150 +92126,1978447,96888 +92128,1519635,102809 +92130,0067467,86732 +92132,0005960,86081 +92134,0290423,123690 +92136,0069027,63230 +92152,1650407,62564 +92154,1437357,77560 +92156,1714886,56815 +92159,0303325,25621 +92161,0393956,24870 +92163,1056422,25774 +92165,1426362,58251 +92167,0147192,125316 +92169,1263704,97394 +92172,0068629,21613 +92174,0077751,40939 +92176,0048133,66436 +92178,1132593,32169 +92180,1567130,70149 +92182,0465666,57046 +92184,0081793,27230 +92186,1270769,58391 +92188,0022737,86457 +92192,1772240,50357 +92196,2043814,82269 +92198,1214962,74998 +92200,0053298,159615 +92204,0048499,54436 +92206,1255916,71670 +92208,1331335,21864 +92210,1572781,36865 +92214,0419358,28512 +92222,0482857,20892 +92224,0070809,93164 +92229,0045294,90770 +92231,0008891,71271 +92234,0485985,72431 +92236,1417075,73686 +92240,0052957,43095 +92243,1410063,76758 +92245,0021375,45176 +92250,1260587,70917 +92252,1611180,72186 +92255,0371853,42968 +92257,0337744,57190 +92259,1675434,77338 +92262,1931470,73562 +92264,1598828,54054 +92266,0053944,35663 +92268,0039743,23340 +92270,1705969,96495 +92272,0087090,35659 +92307,1536048,80591 +92309,1594562,58428 +92314,1672215,142118 +92321,0042779,130900 +92325,1212408,19235 +92335,1430615,78698 +92341,1887703,85949 +92343,0076107,122515 +92348,0064714,58704 +92352,1484114,101520 +92354,0066050,70387 +92357,1626811,76142 +92371,1782568,57809 +92374,2124096,85317 +92376,0363129,57343 +92378,1397265,43711 +92380,0027818,76651 +92382,0028558,244115 +92389,0024610,52517 +92391,1703199,50698 +92393,1123373,48492 +92399,0061796,118911 +92408,0138317,56126 +92410,0019225,153845 +92412,1754398, +92416,0312862,38371 +92418,0322120,14224 +92420,1706593,76726 +92422,1596365,65086 +92424,0106757,148033 +92427,1802810,80125 +92435,0076796,107056 +92437,1658851,52850 +92439,1645080,64678 +92441,1311075,57400 +92446,0044474,93834 +92448,1411664,67911 +92453,1605769,66120 +92455,1014673,25058 +92457,0069988,42457 +92461,0960741,26223 +92471,0039250,108688 +92475,1955162,192695 +92477,0204116,42409 +92479,0058266,212713 +92481,1510906,75170 +92483,1229367,30849 +92490,0288441,15167 +92494,0439553,13976 +92496,1023122,13586 +92498,1583937,26118 +92500,2114375,79133 +92507,1599348,59961 +92509,1606389,72570 +92511,1684927,63749 +92514,0068967,49354 +92516,0052188,76399 +92518,0061868,39276 +92520,0033464,94209 +92522,0022775,72338 +92533,0851430,25143 +92535,2112999,80379 +92593,0086350,69266 +92600,1808240,84797 +92606,1592527,75000 +92611,0041415,130090 +92613,0960770,14205 +92633,0202604,29268 +92635,1347509,63217 +92637,0203612,54146 +92639,0069854,288094 +92641,0098139,84028 +92643,2011971,78480 +92646,0033167,108222 +92648,0250266,125695 +92652,1581829,62582 +92658,0015039,144611 +92660,0067755,92670 +92665,1996264,84200 +92670,0109474,37621 +92672,2061604,99254 +92674,1509130,73700 +92676,0023582,91181 +92681,1397514,72545 +92683,0117739,124847 +92685,0841182,86099 +92687,0056356,253105 +92691,0006826,112485 +92694,1439572,51999 +92696,1341710,47763 +92698,1248976,16702 +92702,1334247,126016 +92706,1507566,83716 +92713,0093040,84001 +92715,1248290,278458 +92719,1855401,79940 +92726,0037981,43459 +92728,0143350,189076 +92730,0249131,64029 +92738,1209377,29483 +92740,1651118,88491 +92747,0107903, +92749,1714110,79362 +92751,1700258,53174 +92756,0073096,84259 +92758,1547035,71184 +92760,0057859,37464 +92768,1606657,85988 +92781,1863406,84917 +92783,1541777, +92787,1479320,75469 +92789,1758576,83732 +92793,0160801,215478 +92804,1403130,30596 +92817,1857913,75948 +92819,1686784,81870 +92829,1319743,29564 +92836,1606259,71771 +92841,0795441,16564 +92843,0032028,110603 +92845,0051139,98079 +92847,0021917,96771 +92852,1380190,115656 +92867,0407269,14933 +92872,1543037,73921 +92874,0024906,81111 +92881,0218822,106199 +92883,0004066,147621 +92885,1177179,247500 +92887,0181173,29750 +92894,0086935,31400 +92904,1787837,81716 +92906,0068640,140632 +92910,0061029,51578 +92918,0277185,82762 +92920,1703148,70954 +92923,1386925,74471 +92925,0020114,108155 +92935,0060581,35671 +92938,1071875,71676 +92944,0961097,77459 +92946,0120171,158920 +92948,0071497,163937 +92951,1698499,178595 +92954,1073510,21634 +92956,0113666,70374 +92963,1129921,44053 +92966,0409011,27902 +92968,1683890,55802 +92980,0120311,186755 +93002,0033592,53798 +93006,2033193,54507 +93008,2040264,59017 +93014,1925446,105983 +93022,1129427,51875 +93024,1410051,73936 +93029,1337193,46504 +93035,0041430,147886 +93037,0037769,80030 +93040,0098769,26397 +93061,1720182,83860 +93063,1733525,79890 +93070,1783408,81675 +93083,1455209,98096 +93114,0056171,59045 +93116,0054156,43026 +93126,1212452,168210 +93128,1653911,62116 +93132,1699147,70876 +93134,1805297,57243 +93136,0075016,29694 +93139,1705773,52454 +93142,1865567,71672 +93162,0256939,144454 +93164,1437358,77495 +93168,0042762,55198 +93172,1117581,71254 +93181,0058318,202941 +93183,0059678,27709 +93185,1106448,53033 +93187,0255177,32708 +93189,0305884,276220 +93191,0282589,36427 +93193,1530983,45569 +93196,0092298,17790 +93201,0120785,15086 +93204,0307431,48458 +93206,0279083,85883 +93208,0100409,25831 +93210,1817191,116231 +93212,1673702,52264 +93217,0061014,77076 +93240,1839494,79707 +93242,1838544,79548 +93263,0016226,184507 +93265,1630036,72213 +93267,0425027,17345 +93270,1636826,57214 +93272,1482459,73723 +93279,0875581,25228 +93287,1053810,73937 +93289,0081701,214349 +93291,0236398, +93295,0031678,18705 +93297,1591479,75674 +93320,0383678,38674 +93322,0023956,46813 +93324,1860355,82620 +93326,1596350,59962 +93328,0007145,53418 +93330,0007832,53420 +93333,0004936,53410 +93336,0005810,53403 +93344,0058050,77669 +93351,0118930,26642 +93363,0401729,49529 +93365,1433817,123320 +93367,0010747,53424 +93376,1288376,44246 +93379,1503774,59974 +93391,1541788, +93393,1445683,85963 +93399,0072249,119364 +93404,1977894,74406 +93406,0007194,53414 +93408,0006414,53419 +93418,0007880,47650 +93420,1646967,68450 +93422,1756750,79108 +93432,1567233,64288 +93437,0023939,167112 +93439,0808393,288098 +93441,0923869,46101 +93443,1456635,74387 +93448,0128856,267197 +93450,1129405,178543 +93455,0066614,288291 +93457,1772250,80184 +93459,1534084,52349 +93463,0061634,3051 +93467,1274296,48373 +93469,0137457,47682 +93473,1506448,20683 +93475,1687901,77949 +93479,1382725,41411 +93481,1366409,45595 +93484,1531911,28524 +93490,0337898, +93492,1872819,92117 +93496,1520841,37928 +93498,1848902,91010 +93500,0188757,216672 +93502,1535970,63493 +93504,1655617,42507 +93510,1232829,64688 +93512,1588334,82532 +93516,0379184,14346 +93520,0033317,61020 +93522,0034577,261035 +93531,0091175,293097 +93533,0052696,37942 +93535,0293664,25435 +93544,0056447,144326 +93547,0029508,170936 +93550,1906518,64786 +93552,2025506,79374 +93563,1592525,81796 +93568,1056117, +93570,1646959,59421 +93572,1473397,70585 +93574,1787791,54358 +93578,1422136,81390 +93583,0052667,28063 +93598,1680114,67748 +93610,1477109,61984 +93612,0087817,52826 +93621,1206881,45273 +93628,1020952, +93641,1650028,95675 +93649,1333994,36944 +93652,0130200,114412 +93654,0088992,213938 +93656,0375909,273807 +93659,1534564,79754 +93665,1337686,64108 +93667,0325826,99698 +93669,0097951,145504 +93672,0077968,229670 +93674,0082883,42147 +93676,1699720,55245 +93693,1702425,80304 +93700,1185371,56591 +93702,0117970,83195 +93707,0410953,40056 +93709,0112993,48038 +93717,1927077,79221 +93719,1866426, +93721,1772925,80767 +93723,1667307,82533 +93725,0264013,74237 +93727,0084586,64992 +93729,1152834,61895 +93731,0070898,67696 +93733,1114712,33569 +93740,1441952,81025 +93742,0061786,77553 +93748,1460738,35435 +93750,1468321,44734 +93752,2140371,89191 +93757,0063822,158068 +93764,1810697,94204 +93766,1646987,57165 +93768,1715320,44032 +93775,0031914,362758 +93782,1620933,96398 +93785,0056315,42998 +93790,1683526,74308 +93792,0045787,100656 +93797,0095368,26881 +93801,1523939,75576 +93803,1707391,86820 +93805,1034314,10679 +93816,0057522,28533 +93819,1610996,74777 +93821,2011325,70845 +93831,1605630,71552 +93834,1587431,66895 +93838,1899353,94329 +93840,1259521,22970 +93842,1828995,81342 +93855,1912398,74306 +93859,1536458,87098 +93861,1640570,80432 +93865,0001223,2929 +93885,0195119, +93888,0319836,72958 +93890,0068899,178535 +93892,1565958,51991 +93894,1543055,251797 +93900,1453253,28136 +93905,0049248,43309 +93907,0059914,28912 +93909,1021004,37586 +93911,0949861, +93914,1398029,73889 +93916,0165297,36228 +93918,0043340,37084 +93921,1980986,85052 +93923,1395025,85050 +93928,0462172,39172 +93931,0071445,258227 +93933,1445520,72551 +93939,1550312,85033 +93946,1726589,91070 +93948,0981224,14686 +93950,0098023,75132 +93952,1646973,56180 +93954,1767382,92182 +93963,0216279,75778 +93967,0119454,274325 +93970,0093178,42960 +93980,0383010,76489 +93982,1486192,70436 +93988,0417349,147269 +93991,0199031, +94005,1827536,76346 +94011,1307873,54271 +94015,1667353,62764 +94018,1440129,44833 +94022,1651328,50365 +94024,1883251,206953 +94027,0047638,45993 +94041,1831575,206997 +94044,1641410,73872 +94061,0071790,28715 +94068,1618447,82327 +94070,1412386,74534 +94074,1545103,41120 +94076,1742178,58287 +94080,0121817, +94083,0055421,111037 +94101,1746153,77881 +94103,1869309,91292 +94107,1433802,109979 +94109,1332134,73211 +94112,1407084,40720 +94114,1629440,60405 +94120,1540991,86455 +94122,1605782,91356 +94126,1821593,63310 +94128,0075885,86727 +94130,1682181,84404 +94133,1094666,74447 +94142,0111549,18591 +94144,0035726,86416 +94146,0389052,84660 +94148,2144017,255772 +94150,1435513,75802 +94153,0462232,39509 +94155,0034978,88609 +94157,0048363,84820 +94160,1401113,31967 +94184,1535566,45347 +94186,0060150,121942 +94188,0960749,53191 +94190,1708453,54081 +94192,1018820,37434 +94202,0075654,86975 +94204,0044355,48646 +94218,2071601,138719 +94220,1404702,56325 +94222,0331999,319656 +94262,0052587,37467 +94264,0042229,37329 +94266,1195478,72207 +94268,0358284,194498 +94271,0122111,19757 +94278,2051941,85621 +94280,1059969,61410 +94283,0781599,111304 +94289,0034478,74402 +94291,0095415,68752 +94299,0874271,28891 +94301,0913413,25154 +94304,0118800,73336 +94306,0037151,23281 +94308,0050983,328918 +94310,1051231,31223 +94312,1772371,83330 +94314,1712578,70386 +94323,1621045,67660 +94325,1327194,77877 +94327,1303829,48008 +94337,0049211,145878 +94339,0049271,304375 +94341,1561406,84569 +94350,0037946,242621 +94352,1094241,17347 +94365,0043397,43373 +94394,0078683,284694 +94401,1787725,79042 +94403,1507564,73563 +94405,1656190,72387 +94407,0085635,106373 +94410,1449175,28238 +94412,1922645,89287 +94417,0196499,105583 +94419,0260731,253808 +94421,0372289, +94423,0221298, +94425,0022021,106605 +94427,0329429,170359 +94429,1722476,91352 +94431,0000192,159900 +94433,0021933,162284 +94435,0339482,61361 +94439,1640484,57119 +94442,0059758,148371 +94444,1104836,15135 +94466,2085059, +94469,0803061,66125 +94471,1735839,88478 +94473,0085599,131476 +94475,0414713,25799 +94478,1077368,62213 +94480,1104123,13486 +94482,2090463,84177 +94486,0986323,58390 +94491,1254978,140781 +94494,1641385,89326 +94496,1465533,92000 +94503,1657299,40161 +94531,0119264,135686 +94537,1559040,77957 +94539,1723120,63946 +94542,1787127,82624 +94545,1417582,59835 +94556,1709654,92493 +94558,1534085,50037 +94573,1262986,47479 +94647,0488612,23683 +94649,1921043,79934 +94653,1686018,73963 +94655,1354003,73881 +94657,0241000,159907 +94659,0286285,200157 +94661,1434447,26815 +94663,2317337,103243 +94666,0066605,84496 +94668,1225831,111188 +94670,0077860,258253 +94672,1663193,51823 +94675,1648216,61979 +94677,1645170,76493 +94679,2063834,80169 +94681,1235414,73517 +94725,0065484,73600 +94727,0090766,37497 +94729,1448751, +94733,1674775,93084 +94735,0490048,28500 +94737,0334960,231763 +94739,1990352,86850 +94746,0808339,14400 +94748,1034324,48620 +94750,0042767,76011 +94752,1295085,22683 +94760,0041232,132122 +94762,0035737,110573 +94765,0095764,362151 +94767,0076652,288165 +94769,0157154,97038 +94772,0073029,167408 +94777,1409024,41154 +94780,1735898,58595 +94782,0125730,199196 +94784,0074813,140036 +94786,0493044,122341 +94788,0033365,109016 +94790,0020581,118131 +94799,1748207,86812 +94801,0045190,31559 +94803,1268809,27646 +94806,1070858,39401 +94808,1417299,25121 +94810,1298554,77561 +94813,1991245,93856 +94815,1663321,78206 +94817,0409936,80742 +94819,0066593,161460 +94831,0074781,63773 +94833,1430626,72197 +94835,2027265,85546 +94837,0423455,111839 +94839,1235842,26864 +94841,1205558,94363 +94864,1446714,70981 +94867,2040560,111440 +94891,1382323,44997 +94893,1462054,35691 +94896,1704573,92591 +94900,1985981,79990 +94902,0052283,101288 +94904,0248661,77084 +94917,0044533,36334 +94919,1196340,12645 +94924,0310044,169747 +94928,1753995,169022 +94931,1592281,86555 +94933,1298540,50077 +94939,1278449,48392 +94941,0011979,155953 +94945,0055927,106020 +94949,1971339, +94951,0177707,104396 +94953,1655460,50647 +94955,0042544,85293 +94957,0024238,43598 +94959,1748122,83666 +94965,1316616,45054 +94967,1389127,72477 +94969,1821480,82825 +94972,1076780,168332 +94974,2224455,103269 +94978,1650453,79382 +94980,0072204,61296 +94982,0054116,80151 +94985,1567609,80389 +94987,0425153,109554 +94989,1296869,26583 +94998,1486193,50601 +95000,1646111,45244 +95002,1189374,49830 +95004,0934706,13640 +95007,0014872,44473 +95010,1270702,37000 +95012,1772407,54484 +95014,1699491,60592 +95016,0058277,109379 +95018,0069210,169652 +95021,0219964,110650 +95023,0145007, +95026,1356763,64836 +95028,0043292,25564 +95032,1604231,61125 +95034,1640711,85435 +95036,1572502,79995 +95052,0191915,12255 +95054,0072852,83723 +95058,1480656,49014 +95064,1788383,68472 +95067,0763831,72358 +95069,1222815,72334 +95085,0119579,201703 +95088,1862079,84332 +95105,1277953,80321 +95107,1308748,71326 +95109,0046728,109018 +95111,0042669,64456 +95113,0045719,65421 +95115,0047114,43337 +95133,1629705,68818 +95135,1742336,84355 +95137,0097561,20847 +95139,0091506,48210 +95145,0142251,39144 +95147,0142249,39145 +95149,1398941,22855 +95151,1711366,55215 +95153,0107228,56191 +95157,1629377,48393 +95159,0057842,66956 +95163,0142248,116776 +95165,0142240,39100 +95167,1217209,62177 +95170,0118692,13313 +95175,1292594,63193 +95177,0354364,379689 +95179,0825728,52462 +95182,0142233,39101 +95185,0901206, +95193,0143808,13761 +95197,1440732,86467 +95199,1586265,76494 +95201,1859650,81836 +95205,0064247,212622 +95207,1611224,72331 +95214,0055118,3556 +95216,0065215,42621 +95218,2008513,89874 +95223,1514041,44877 +95230,0159542, +95232,0208725,195056 +95234,0027221,81115 +95237,1701990,68684 +95285,0827729,27550 +95288,0028737,92352 +95290,0027845,173891 +95294,0770796,18150 +95296,1566501,96399 +95298,1274293,40171 +95300,1074213,34494 +95302,0262052,86157 +95305,0106714,154115 +95307,1336608,80585 +95309,1307068,88005 +95311,1245104,13042 +95313,0455565,13932 +95352,0099875,48747 +95375,0395479,13062 +95377,0479113,13933 +95425,1024964,44095 +95427,0081515,28380 +95441,1637725,72105 +95443,1769363,100046 +95446,0096273,13927 +95449,1915581,77930 +95461,1413496,67619 +95473,0142237,39103 +95475,1125254,24752 +95477,0051422,52639 +95480,1349452,151168 +95482,0285021,171108 +95484,0089851,26974 +95486,0088291,24729 +95488,0337692,83770 +95491,1247683,50590 +95494,1829041,105795 +95497,0142241,39104 +95499,0142242,34433 +95504,1205541,78999 +95506,1680133,76333 +95508,1598873,95516 +95510,0948470,1930 +95517,0086667,378452 +95519,0142238,39105 +95521,0069172,148811 +95524,0930083,21506 +95529,1731998,86985 +95531,0330536,38728 +95533,0074515,42226 +95539,1261978,23823 +95541,0000005,16624 +95543,1667889,57800 +95558,2125435,84175 +95560,0080593,46223 +95563,0019843,173580 +95565,0061553,61111 +95567,1716777,98548 +95570,0160440,86664 +95572,1446089,71722 +95574,0061675,264393 +95576,0072958,131653 +95578,1732676,200281 +95581,0019886,99934 +95583,1615065,82525 +95588,0281634,25913 +95591,2082410,104997 +95595,1830495,155288 +95597,1301706,16059 +95600,0869019,52311 +95602,2082262,86980 +95604,0996994,208988 +95606,0118489,57346 +95611,1450328,66025 +95613,1854364,105567 +95615,0078813,11680 +95617,0303017,5965 +95624,1313113,31218 +95628,0093832,13926 +95650,1756818,75810 +95652,0032457,59706 +95654,0131409,13929 +95658,1679248,96534 +95670,2215285,103370 +95672,0071229,32050 +95688,0203536,62289 +95690,1568341,80468 +95695,1686039,51794 +95705,1135983,31680 +95717,1820723,83191 +95720,1298649,80035 +95732,1500906,65997 +95735,0068509,57215 +95738,0283851,193976 +95740,0283856,276165 +95742,1703125,93676 +95744,1602472,84165 +95746,0079773,45945 +95748,1694508,50053 +95750,0163914,279159 +95752,0111399,183386 +95754,1440741,44125 +95756,0284714,43580 +95758,1043753,61015 +95761,1726669,73567 +95765,0214311, +95767,0025329,172214 +95769,0791307,82877 +95771,0285036,44251 +95773,1690483,50388 +95776,1091172,19575 +95780,0142234,39106 +95782,0142236,39107 +95784,0039495,55184 +95794,0209110,148807 +95796,1137996,14863 +95804,1795702,86593 +95814,1381413,72843 +95816,0455323,78571 +95830,0030082,43852 +95832,0028827,43858 +95835,1368858,101325 +95837,0172238,102431 +95839,0216621,16716 +95843,0058154,52906 +95854,1151923,61539 +95856,0097674,13928 +95858,0248808,13930 +95873,1839492,103332 +95875,1386703,64635 +95890,1437849,25048 +95896,1767272,73943 +95898,1772373,55680 +95901,0323339, +95926,1595833,75229 +95932,0109770,22059 +95935,0310733,65035 +95937,0418778,32171 +95939,1924394,103747 +95941,1482991,75446 +95945,1360767,28465 +95949,1630637,56909 +95961,0248194,37545 +95963,0142243,39108 +95965,0142245,39323 +95967,1684558,73335 +95969,0120428,34125 +95971,0456123,8736 +95973,0321715,16130 +95975,1189349,109459 +95977,0332166, +95979,0401703,320917 +95982,1261862,35402 +95984,1767319,80410 +96002,1223934,51365 +96004,0142247,39324 +96007,0142232,18095 +96009,0139738,94570 +96018,1227548, +96020,1235841,76696 +96022,0038478,68143 +96024,1919090,102630 +96026,1881024,122924 +96028,0400347,18443 +96030,0349113,155341 +96034,1318025,38256 +96052,0027126,58159 +96054,0889665,49084 +96056,0279919,81436 +96058,2043931,105978 +96060,0124307,94548 +96062,0497298,233984 +96064,1735862,100683 +96066,1436559,59296 +96069,0969647,13676 +96071,1612246,85593 +96075,0442632,53803 +96079,1074638,37724 +96082,0094097,131997 +96084,0057286,58383 +96086,0057162,77287 +96096,0338828,20106 +96098,1132594,21145 +96105,0116341,63988 +96110,1790886,77953 +96112,1941668,116019 +96114,1990181,85414 +96121,1535438,82696 +96131,1156395,24410 +96144,0049900,70872 +96146,0176943,38202 +96148,0304584,36996 +96150,2125666,84327 +96160,1704161,118984 +96170,0432267,20499 +96176,0036418,100910 +96179,1559025,45792 +96181,0824330,8266 +96193,0043380,314070 +96195,1380201,51190 +96197,1535491,50090 +96200,0780645,77068 +96210,1817753, +96212,0819791,46888 +96214,1438534,49958 +96216,0039340,32327 +96218,0063173,50696 +96221,0244199,133523 +96223,0051955,43121 +96225,0059668,133373 +96227,1248984,71719 +96239,1727252,79771 +96242,0090265, +96244,0068000,34800 +96246,0070017,21537 +96250,1726661,68649 +96252,1954299,84383 +96255,0083783,126420 +96257,0065834,104241 +96259,1815799,93188 +96264,2164862,120271 +96266,1623745,75595 +96273,0360839,95506 +96275,0107199,78263 +96277,0124836,38034 +96281,1623288,77174 +96283,2023453,82650 +96286,1437833,40572 +96288,0256106,208579 +96290,0037154,97088 +96292,0036036,265579 +96294,0312450,36859 +96296,2066040,75680 +96298,0454155, +96300,1542928, +96302,2025526,79224 +96304,1728196,85836 +96306,1577052,84203 +96314,1405365,84184 +96316,0417416,293094 +96337,1660302,121210 +96347,2039333,118013 +96367,2097307,109513 +96370,0828393,14196 +96373,1441940,109584 +96383,1175713,73846 +96401,0071690,93934 +96405,0291082,14128 +96407,1690455,83384 +96409,0094752,84289 +96411,2076781,76360 +96413,0064068,1556 +96415,2297164,118624 +96417,1547234,49526 +96419,0053106,83539 +96421,0019109,101482 +96423,0099524,30785 +96428,0080397,42152 +96430,1462769,71864 +96432,1212450,82633 +96435,1134828,57330 +96448,1714203,71668 +96451,0059063,71725 +96456,1603257,89691 +96460,0083316,31074 +96467,2077851,84340 +96469,1368982,26556 +96471,0106104,202043 +96473,0114180,216035 +96479,0063363,137625 +96481,0284329,90061 +96486,0811026,263946 +96488,2125608,84334 +96490,0431021,77883 +96496,1975249,127521 +96498,1907779,119698 +96501,1440232,48034 +96504,2067003,110491 +96510,1433822,79694 +96512,1819513,83540 +96514,1715827,108762 +96516,1039992,376394 +96518,0365651,263947 +96520,0114182,215999 +96522,0494901,134012 +96524,1394174,191402 +96530,1619277,83403 +96532,1851900,239368 +96535,0986230,39369 +96537,0473333,12677 +96539,0465160,79034 +96543,0068661,27349 +96545,0031650,40629 +96547,0191053,67429 +96563,2028530,83660 +96565,1920849,84174 +96567,1840417,83686 +96569,1729226,84344 +96571,0057517,53336 +96574,1043869,35623 +96576,0059459,86785 +96578,0064674,27146 +96585,0467867,189472 +96588,1981677,114150 +96590,1366365,77948 +96592,2063666,84281 +96594,0049537,46493 +96596,1368440,112090 +96598,0080132,85341 +96601,0424176,37661 +96603,0483179,130458 +96606,0770802,89708 +96608,0114308,67166 +96610,1276104,59967 +96612,1971352,84188 +96614,2395459,122080 +96616,1232200,87428 +96621,0940657,26505 +96629,0087127,15895 +96631,0092860,28218 +96634,1757742,97795 +96638,1885281,70808 +96640,1572154,81215 +96642,0043532,94108 +96644,0059936,71827 +96651,0071600,149145 +96653,0066517,126278 +96655,1990314,84329 +96662,1774438,122492 +96664,1772424,77461 +96667,1845773,84169 +96669,1082599,24421 +96671,1764366,82510 +96679,0368520, +96681,0069684,117408 +96683,1737747,61854 +96687,1393742,96973 +96689,0477065,16640 +96691,1855325,71679 +96693,2083383,87825 +96697,0043118,88075 +96700,1680045,89455 +96702,0460747,148857 +96704,0391067, +96706,0008634,157903 +96710,0023986,43599 +96717,0029394,70090 +96722,1569505,74103 +96724,2112868,84347 +96726,1710417,100529 +96728,1560747,68722 +96730,0081180,85339 +96732,0141762, +96734,0095408,191600 +96737,1343727,49049 +96739,0025964,179251 +96748,1877543,137145 +96751,1764183,60599 +96753,1758575,98369 +96755,0847745,20069 +96757,1267498,42399 +96759,0032916,129535 +96762,2125490,84190 +96764,2072268,78464 +96769,2155247, +96771,2137916,97933 +96773,0059581,106124 +96775,0176016,53909 +96789,0079264,64454 +96792,0048260,4822 +96794,1792799,55723 +96796,0073149,67441 +96799,0276428,48654 +96801,0963965,19823 +96803,0114132,112973 +96805,0209174,38091 +96807,2005164,122930 +96809,1753521,128280 +96811,1855199,77016 +96813,0029000,52432 +96815,2105044,84348 +96817,1653827,47059 +96819,0404029,47462 +96821,1659337,84892 +96829,2106476,103663 +96832,2076220,103328 +96834,2343601,111174 +96836,2009643,115712 +96840,1190072,52767 +96842,1510907,91911 +96845,1753722,102784 +96849,1876451,88036 +96851,0488928,68663 +96853,1512240,51996 +96857,1748179,75638 +96859,2150521,81830 +96861,1397280,82675 +96863,1496422,82390 +96865,0300444,101803 +96868,2124908,83589 +96870,0025681,38719 +96872,0030642,76703 +96894,1002573,97310 +96897,1339302,17165 +96901,0385073,223195 +96903,2062555,270372 +96905,0412608,148408 +96907,1039790,255948 +96909,1864557,128203 +96911,1276419,88273 +96917,1582507,82505 +96919,2098627,128564 +96921,0079642,5422 +96923,2043757,86703 +96925,0043619,83670 +96927,1695409,127700 +96933,0077421,42203 +96935,0319901,45397 +96937,2193698, +96939,2109106, +96941,2247692,126509 +96943,1987018,77462 +96945,1638328,85735 +96947,1695831,91913 +96950,1582244,83801 +96952,1462014,79172 +96954,0020838,104557 +96960,0047590,64071 +96962,0016022,168217 +96964,1658837,86597 +96966,1650048,110160 +96969,1839654,101731 +96971,1531930,74830 +96973,0025617,82096 +96975,1592873,80271 +96983,0034093,64897 +96985,0063371,105348 +96991,1673697,110146 +96993,0069368,142585 +97002,2062996,84342 +97005,0790723,15936 +97008,0060770,104306 +97010,0449599,75318 +97024,2053425,97365 +97026,0018530,131360 +97029,0063195,124597 +97031,0063206,42628 +97035,0203635,124423 +97037,0037035,81678 +97039,0036135,41996 +97042,2308773,103640 +97046,0829424,10089 +97051,2107648,123359 +97055,1988781,84577 +97057,1613750,70667 +97059,2215719,101267 +97061,0019725,130717 +97065,0062453,57230 +97068,0024962,43687 +97070,0076639,134738 +97073,0360946,71720 +97092,0274530,135312 +97094,0412852,170263 +97096,0264804,197726 +97115,0436845,100085 +97117,0253078,370044 +97119,1433819,76960 +97124,2034123,273029 +97128,0067699,53898 +97132,1701976,77269 +97134,0259731,112678 +97137,0061514,170517 +97139,0050201,110336 +97146,0492060,91250 +97148,0246601,131671 +97151,0352468,262243 +97153,0436445,537 +97161,1918727,84180 +97163,1711487,47405 +97165,2190421,135547 +97168,1183919,90125 +97172,1142977,62214 +97175,1282052,15004 +97177,1831611,61372 +97184,0103601,151232 +97186,2142889,161456 +97188,1922777,82507 +97190,0285089,288121 +97192,0157938,197733 +97194,0376921,92171 +97196,0281190,13830 +97200,0053242,64291 +97216,1396221,38753 +97220,1440379,102639 +97225,0837562,76492 +97230,2014338,110354 +97232,1231586,69778 +97234,0293282,196738 +97236,0429086,283101 +97238,0199741,288421 +97240,0259747,292547 +97242,0060278,16387 +97244,1995304,97683 +97246,0026197,33390 +97250,0024968,33391 +97252,0099310,39062 +97254,0059709,109600 +97256,0102958,49971 +97280,1192431,40709 +97283,0054768,48202 +97285,0054325,71723 +97296,0052169,34078 +97300,0266010,30953 +97302,1029440,35253 +97304,1024648,68734 +97306,1931533,86838 +97308,1907731,84317 +97311,1349451,79697 +97319,0015213,172538 +97324,1985017,134371 +97326,1760967,109843 +97328,1872818,84306 +97330,0085183,40075 +97332,0120299,80059 +97334,0054197,39779 +97336,0443284,340543 +97382,1250861,86726 +97384,2151543,116463 +97386,0457302,38280 +97388,1753813,99579 +97390,1704614,72391 +97393,2125653,84284 +97395,2130321,84351 +97397,1262863,18112 +97401,1867101,105210 +97423,1906426,78604 +97455,1558972,57722 +97457,0056403,131837 +97460,0031387,89723 +97462,0844993,57089 +97464,0060082,95503 +97466,2327631, +97468,1232775,49250 +97470,1886493,75736 +97494,0081417,202973 +97526,0043075,27543 +97533,1899324,122928 +97536,0063169,108512 +97538,0046447,149190 +97540,0035521,45000 +97542,0407888,50950 +97544,0129897,288105 +97546,0148110,288413 +97548,0073044, +97550,0323495,98303 +97552,1029340,55327 +97593,1120945,32904 +97595,1490637,82642 +97597,1517214,50845 +97600,0057238,95508 +97615,1130087,91122 +97639,2124803,84286 +97643,1649444,80280 +97646,0032490,110525 +97648,1954470,117691 +97650,1588886,122804 +97660,1235142,27480 +97662,1817676,82618 +97665,1597522,99770 +97667,0043744,72479 +97670,0043828,106016 +97673,2147134,116167 +97680,0455581,292975 +97685,0035648,43172 +97688,0110785,60985 +97690,0463385,49846 +97692,2177843,97690 +97694,2050633,135368 +97697,1059836,82485 +97699,0996930,9736 +97701,2109184,82990 +97703,2209386,135161 +97705,0088395,59897 +97707,1699233,99650 +97709,1981080,121823 +97711,0047832,66893 +97713,0062411,42712 +97715,0835418,98066 +97722,1840388,86759 +97724,0458227,71261 +97726,0076770,6078 +97730,0109784,75244 +97732,0288263,48770 +97740,1772271,94104 +97742,1712170,94348 +97744,2048877,84172 +97752,1371111,83542 +97755,0107455,171961 +97757,0424755,72867 +97759,0486560,288122 +97761,0357182,17216 +97763,1929387,108901 +97765,1580346,105942 +97768,1699185,85741 +97773,2132485,133557 +97775,2113090,91030 +97779,2104994,89638 +97781,0469966,17375 +97785,0938330,61012 +97787,0108518,288193 +97789,0929753,288037 +97792,0082467,27420 +97794,1018817,26233 +97797,0041473,24863 +97799,0981042,43937 +97801,2036408,149763 +97806,2072241,86983 +97808,1239290,41530 +97815,0978569,61997 +97817,0089852,164753 +97819,0047679,37635 +97821,0009976,174946 +97823,1723118,72245 +97826,1638353,128158 +97828,0099729,43761 +97832,1629757,82684 +97834,1486616,117266 +97836,1648179,87826 +97845,1507408,262988 +97847,0129358,181628 +97849,0083283,288298 +97853,0110668,51911 +97855,0174741,127756 +97858,1655416,126797 +97860,1764234,64689 +97866,1966604,84287 +97868,1606829,84318 +97870,1866249,113947 +97872,0314325,288117 +97874,0996957,288295 +97876,0345616,288284 +97878,0034092,56558 +97880,0056930,88912 +97882,1297298,39814 +97884,0063655,65049 +97886,1376233,80048 +97888,2366710, +97895,2092011,128248 +97897,0113037,128639 +97899,0173443,71730 +97904,2063781,84341 +97906,1254696,24385 +97908,0796302,13078 +97910,1233599,172474 +97913,1772341,82690 +97915,0084268,47878 +97917,0171227,27058 +97919,0113002,82663 +97921,1045658,82693 +97923,1907668,87502 +97933,2125423,84170 +97936,1781769,96724 +97938,0454876,87827 +97940,0031891,74545 +97946,1756799,84226 +97948,0970965,132185 +97950,1258972,97430 +97952,2023367,85544 +97955,0440410,288438 +97957,1984153,84194 +97959,2073016,125623 +97966,1438173,118957 +97968,0829176,46429 +97971,1122775,45961 +97973,0119710,119639 +97984,0067541,26405 +97986,1870529,82631 +97988,1713476,123105 +97994,1783798,102640 +97998,1556243,133458 +98000,2172071,138122 +98002,1760980,84308 +98004,0448120,35683 +98007,0137951,286267 +98013,1433207,135647 +98015,0850677,105531 +98017,1226240,121879 +98019,0970472,13391 +98022,1683921,79070 +98027,0024819,110540 +98030,0281617,24617 +98032,0228054,63957 +98034,0276011,34004 +98036,1802197,77878 +98041,0318641,32694 +98043,0053317,88564 +98045,1035729,14720 +98052,0499487,19139 +98054,1656186,127493 +98056,1602620,86837 +98059,1529331,109516 +98061,1900893,98631 +98063,0087738, +98065,1800266,95808 +98067,1473063,62580 +98069,0066031,20528 +98072,0415080,38030 +98076,0366598,73646 +98078,0075922,40343 +98080,1039646,42939 +98083,1753968,65851 +98085,1231287,19794 +98087,1362058,114606 +98107,2124074,84166 +98109,1641975,52001 +98111,2071441,121602 +98114,0083661,58790 +98116,1781896,78049 +98120,0156182,12594 +98122,1942884,80215 +98124,2313197,123025 +98126,1951166,121793 +98131,1471171,43652 +98140,1291549,56928 +98142,1844811,82911 +98144,0302427,149586 +98151,1728130,45585 +98154,0443272,72976 +98160,1493157,135708 +98162,0024851,137429 +98167,1285240,53354 +98169,1723047,68280 +98171,0016669,110253 +98173,0094826,132961 +98175,1545106,73935 +98187,2145540,126056 +98189,1407065,91549 +98191,1930371,144271 +98193,2120152,84288 +98198,2283748,135718 +98200,0066415,51956 +98203,1673434,50620 +98211,1884414,105586 +98213,0015684,120676 +98217,1807892,82099 +98219,0462667,16276 +98221,0179641,63172 +98224,0085739, +98228,0383046,59517 +98230,1715873,58547 +98237,1845849,84323 +98239,1234719,60747 +98241,2084098,85878 +98243,1446192,81188 +98246,0045130,45314 +98248,0054734,59434 +98251,0855852,25746 +98253,0064353,49363 +98261,0073418,108282 +98271,2104852,156180 +98273,0395514,13678 +98275,0162555,62012 +98277,0442207,13728 +98279,2006040,101519 +98284,0028872,22969 +98286,0025129,50675 +98288,0053341,32070 +98290,1986953,114958 +98294,1645164,338853 +98296,1667310,97614 +98298,1286809,16277 +98304,0023491,98536 +98306,0029571,245984 +98323,0039054,83098 +98325,0056387,185147 +98328,1818443,129609 +98335,0926317,288111 +98337,1422598,288146 +98339,0452332,217724 +98341,0128137,30998 +98344,0044855,43363 +98346,0043514,51389 +98348,0043120,249264 +98353,2094920,84326 +98358,1095423,16016 +98361,1531901,102780 +98363,1093355,112136 +98367,1650058,91930 +98369,2262308,119431 +98373,1800741,85446 +98376,0043150,89702 +98378,1598496,62069 +98381,1716747,70584 +98383,0385330,135313 +98385,0297994,288293 +98387,0804504,285594 +98389,0051881,94480 +98391,0478216,24409 +98394,0039288,62720 +98398,0016829, +98400,1959409,75204 +98402,1337366,48161 +98404,2406990,328712 +98406,0239879,114490 +98409,0495813,288292 +98411,0275413,288296 +98413,0489093,238397 +98415,0353849,82781 +98439,1562849,82685 +98441,0030657,38716 +98443,0306355,130002 +98445,1340425,53778 +98447,1870425,104859 +98449,1740053,80440 +98452,0041549,185934 +98456,0041093,229610 +98458,0024854,31621 +98460,0081613,119916 +98464,0075439,18666 +98467,0074747,46111 +98469,0075201,40829 +98471,0076661,46114 +98473,0059050,4311 +98475,0059499,33360 +98477,0079002,10792 +98481,1693843,70863 +98483,1452297,82708 +98485,2209300,143800 +98491,2388725,140420 +98493,0076227,18758 +98497,0077541,18735 +98499,0079315,19274 +98501,0079484,46124 +98503,0080623,18867 +98507,0792984,220106 +98509,1314240,26152 +98511,0455142,13679 +98513,0092011,51594 +98518,0410626,26168 +98520,0082106,67079 +98523,0106302,28790 +98526,0066674,232005 +98528,1326839,21317 +98532,1928330,94380 +98552,1242447,49522 +98554,2281069,125504 +98556,1492820,40900 +98558,0079509,38425 +98560,0085864,18741 +98563,1839591,91333 +98566,1144579,57529 +98570,1649780,98545 +98572,0272052,152795 +98581,0101869,294261 +98583,2062645,139325 +98585,0975645,112336 +98587,2177511,96821 +98589,0104516,45006 +98591,0070356,93289 +98593,0347718,104718 +98595,0075939,80220 +98601,0094644,128637 +98604,1798188,83389 +98607,1483797,71883 +98609,0039472,259292 +98611,0030302,43157 +98613,0033780,97598 +98615,0101522,55615 +98617,0264813,197752 +98619,2069830,288168 +98621,1679681,61591 +98623,0086605,25539 +98626,0482461,44594 +98629,1714205,135225 +98631,1922561,85525 +98633,0089177,10044 +98636,0090342,18707 +98643,0037848,125409 +98693,0246278,64362 +98695,0163494,81850 +98697,0066798,34280 +98699,0226418,146405 +98751,0015589, +98755,1772230,76349 +98757,1478291,45682 +98759,0079891,10275 +98761,0086301,37030 +98766,1737122,80387 +98768,0418879,36960 +98783,0091607,37032 +98786,1876446,81179 +98788,0031972,147829 +98795,0221300,142051 +98797,2178941,88284 +98799,1979172,110392 +98803,0030371,38769 +98805,0035068,200447 +98807,0041662,77012 +98809,0903624,49051 +98815,0393493,288290 +98817,1595364,288259 +98819,2354103,288288 +98821,0096507,15770 +98825,0097775,20811 +98829,0108624,10852 +98834,2331880,127916 +98836,1477855,87504 +98838,1132449,84305 +98840,0057230,48599 +98842,1034090,76297 +98845,1954352,106135 +98847,0113153,18725 +98850,0110463,31027 +98852,0120530,10620 +98854,0163818,10616 +98856,0077772, +98859,0431827,40004 +98861,0074524,63481 +98908,1241017,40722 +98911,1986204,83738 +98913,2014392,80717 +98922,1242521,76609 +98924,1132607,8941 +98927,1528224,64074 +98929,0471239,197723 +98931,0492337,269797 +98933,1934269,117629 +98936,0869155,288101 +98938,1550902,76800 +98941,0091935,147590 +98943,0048517,138357 +98949,1129420,65515 +98956,2082197,127501 +98958,0262414,279852 +98961,1790885,97630 +98963,2190367,97989 +98965,2253947,130445 +98973,1579361,84185 +98975,2099556,125490 +98981,0000012,160 +98983,0373690,11540 +98985,0114732,37653 +98989,1286147,26656 +98991,1323044,121147 +98994,0063127,84636 +98996,0077547,116800 +98999,1867566,122336 +99005,1925431,139567 +99007,1588173,82654 +99012,0815165,94583 +99014,0780503,16221 +99020,1943747,149172 +99024,1027820,96648 +99026,0112387,38414 +99028,0349225,19099 +99030,1901040,83186 +99041,2125698,84354 +99043,1836987,85542 +99045,1393746,44560 +99047,1989475,116979 +99050,0377990,66722 +99054,0411117,46280 +99056,0066952,28733 +99058,2112293,84187 +99061,1629376,56338 +99064,0468683,64792 +99068,0068294,27116 +99085,0026835,43895 +99087,1540128,77875 +99089,0028118,43268 +99101,1024856,36172 +99103,0284519,71378 +99106,1694020,82687 +99108,0063013,29722 +99110,1965065,84333 +99112,0790724,75780 +99114,1853728,68718 +99117,1758830,89492 +99119,0260155,99106 +99122,0097550,41153 +99124,0067991,42532 +99126,0087250,70410 +99128,0295052,64876 +99130,0113376,44470 +99143,1792647,94352 +99145,1649419,80278 +99147,0057916,86778 +99149,1707386,82695 +99169,0074569,39987 +99171,1863323,85652 +99173,0061414,114104 +99178,1791614,87440 +99180,2087878,151870 +99182,0450326,44732 +99191,0115813,16315 +99210,0054296,78550 +99214,1588412,30587 +99217,1230215,128270 +99220,1441951,121826 +99222,2347497,139455 +99238,1577883,63517 +99240,1174034,14419 +99243,0182357,35818 +99246,0034091,22752 +99249,1447479,46564 +99251,0079514,66745 +99253,0073946,135390 +99258,0125301,65904 +99260,1562563,89593 +99270,0025829,46159 +99273,0028315,27597 +99276,0031995,38727 +99279,2042432,98232 +99287,0119972,51982 +99289,0419673,61658 +99294,0415607,43767 +99296,1999995,97051 +99305,1865425,98886 +99308,0077827,31551 +99314,0039892,242378 +99317,0906599,81303 +99320,2119474,118683 +99325,1600207,98932 +99327,0101256,28751 +99329,0100975,55952 +99331,0115006,57597 +99335,2205401,235271 +99337,0049224,50177 +99343,0179841,47953 +99345,2397471,154792 +99347,0934446,63171 +99349,2072141,95511 +99351,0098350,22379 +99355,1610516,115400 +99364,2208144,130736 +99367,0938666,24446 +99371,1252380,44244 +99373,1447972,41592 +99380,0084424,48490 +99384,1727506,89481 +99387,1270120,73283 +99389,0374275,18038 +99395,0138764,161273 +99397,0113662,177522 +99400,1305869,30252 +99402,1374985,86819 +99413,1838571,74726 +99415,1047540,88042 +99417,2343713,104732 +99420,1634016, +99434,1719634,63147 +99437,1783732,75761 +99439,1649433,81515 +99441,1680059,50081 +99444,0041187,41487 +99446,1422786,83479 +99448,1529666,81899 +99450,1998399,100532 +99452,1746264,100825 +99468,2380247,124067 +99470,1748227,134597 +99474,1313145,125136 +99478,1811315,99223 +99487,1836212,86304 +99489,0447221,288109 +99491,2129930,105790 +99493,2287749,98065 +99495,1754078,85549 +99497,0280474,237983 +99499,0091621,27408 +99502,0790618,20224 +99515,0053458,94135 +99517,0033288,77775 +99519,1570594,72678 +99521,0374764,57307 +99523,1194242,35436 +99525,1678051,112304 +99530,1979319,127533 +99532,0230534,193380 +99537,1757746,97605 +99539,1303233,115241 +99549,2294729,104155 +99560,0050709,4412 +99562,0044907,132654 +99564,0034514,98262 +99566,0348254,172413 +99568,0373873,288128 +99570,0071163,44165 +99572,1609790,50021 +99574,2091473,133694 +99591,0364556,91795 +99594,1821427,122044 +99596,0140826,139909 +99598,0071357,33303 +99600,0066053,4910 +99602,0907848,20513 +99604,0102394,169836 +99607,1039786,51511 +99609,1242642,71208 +99611,0072814,34905 +99613,1500512,103516 +99615,1634300,76421 +99631,1579236,69162 +99633,0857190,116613 +99636,2181931,118628 +99638,1244666,38010 +99640,1276947,324173 +99642,0105598,36257 +99644,0491587,100450 +99659,0039806,87531 +99663,0069466,102699 +99665,1946289,151826 +99667,1877893,134132 +99669,0159241,31022 +99671,0068606,83215 +99673,0089018, +99675,2085002,127901 +99677,0881909,45360 +99679,1675161,132923 +99687,2083379,138376 +99689,0246520,135545 +99691,0486636,4171 +99693,1038045,48742 +99695,1921070,115276 +99699,0361856,143247 +99706,1754351,92662 +99708,1561770,74549 +99717,0024549,44668 +99719,1446695,135678 +99721,1572315,76617 +99724,1329177,170178 +99726,1853555,135200 +99728,1321870,82682 +99731,2112131,147405 +99733,0496350,22066 +99735,0256341,46016 +99737,0283999,26467 +99739,0088379,46500 +99741,1381404,87496 +99744,1483756,90122 +99746,1867093,98339 +99748,1915570,39458 +99750,1491044,68812 +99754,1510918,46953 +99756,0093465,86632 +99758,0131046,92681 +99760,1567736,79528 +99764,2396224,147538 +99766,1696202, +99768,0893346,19844 +99787,2243537,139038 +99790,1130969,66193 +99792,0148573,60917 +99795,1327628,85533 +99798,2332881,140668 +99800,1117386,38138 +99807,2057455,114994 +99809,1618399,99877 +99811,1931388,97610 +99813,2166834,142061 +99815,0086877,124167 +99817,2258281,103740 +99820,1961324,115223 +99822,2077826,88557 +99826,1007026,63146 +99828,1268989,53445 +99832,0239921,100592 +99839,1956594,93087 +99841,2062969,102000 +99843,2111478,124074 +99846,2366308,135921 +99850,0077630,41604 +99853,1762248,105538 +99855,0070928,33331 +99857,0431420,31046 +99859,0800095,30347 +99861,0905345,26114 +99866,1507261,106541 +99871,1315216,43263 +99873,1710573,59238 +99875,2004262,110148 +99889,2053352,82639 +99891,1391676, +99893,0834938,79983 +99895,0499238,29630 +99901,1869593, +99904,1135941,14078 +99906,2150332,134673 +99908,0475750,32168 +99910,1549920,76640 +99912,2023587,132232 +99915,1054113,15932 +99917,2084989,145197 +99919,0022882,152570 +99922,1835920,105676 +99925,1511532,66720 +99937,1418712,100183 +99939,0293525, +99941,0070000,84834 +99946,0339312,162678 +99957,1235522,98357 +99960,1213832,23976 +99962,0122565,47713 +99964,2082221,89501 +99968,2115295,121872 +99970,0285182,70404 +99986,2073029,84309 +99989,1913002,85543 +99992,1770734,84336 +99994,2112287,53567 +99996,1995341,114779 +99999,0061080,52480 +100001,0064179,84839 +100003,0051143,97353 +100006,0189525,102947 +100008,1787810,98551 +100010,1758570,59197 +100013,2120779,131220 +100015,0995033,28101 +100017,2011953,84290 +100032,2040281,90603 +100034,1806911,83443 +100036,2370140,137285 +100038,1211890,83588 +100040,0267989,72317 +100042,0050470,71768 +100044,1806234,69372 +100046,1842793,62403 +100048,1710590,68178 +100050,0185048,367678 +100052,1989593,84328 +100054,0009652,70753 +100056,1465478,53861 +100058,1625345,101517 +100060,1937339,77117 +100062,1606384,94047 +100068,1911553,85872 +100070,1192624,47863 +100072,2066922,159203 +100075,1325723,54075 +100077,0123328,26005 +100079,0074356,43753 +100081,0054495,121455 +100083,1333125,87818 +100085,0874289,118424 +100087,0110667,24925 +100089,2199603,273740 +100091,0036005,100747 +100093,1988591,156717 +100096,1003113,171859 +100099,0171587,124414 +100101,1376422,81634 +100103,0119418,160989 +100106,2152198,128190 +100108,1904996,119283 +100131,1702016,94356 +100138,2008006,91186 +100141,1542486,79404 +100143,1827578,84191 +100145,0168845,118557 +100147,0106217,288151 +100150,1734548,83125 +100155,1667130,76686 +100157,2106739,95571 +100159,2023690,117974 +100161,1399210,28830 +100163,1428538,60304 +100165,0042650,20088 +100167,1193626,103667 +100169,1291547,109520 +100171,0057846,44450 +100173,1488598,39750 +100180,1584131,70829 +100183,1919017,106591 +100185,2035630,91679 +100188,2070768,129728 +100190,2507488,215012 +100192,0102129,109475 +100194,2274356,146837 +100196,0965382,31147 +100198,1706542, +100200,0359078,14614 +100203,1223379,41863 +100205,0068371,19336 +100208,0293437,24105 +100210,2113113,111949 +100222,1913030,105678 +100226,1853643,118677 +100229,0060866,74397 +100232,0060760,91422 +100238,1533818,51071 +100240,0030337,76848 +100244,1869716,87499 +100246,1670995,144680 +100248,1047490,36628 +100251,0071627,42452 +100253,1670226,50006 +100255,0074343,33301 +100257,0075875,50076 +100259,0459668,126300 +100262,2106671,138574 +100264,2245049,114962 +100266,1556690,172003 +100268,0059859,131434 +100270,1807950,56919 +100272,1854513,127864 +100275,1677082,82520 +100277,2153963,93858 +100287,2239400,127505 +100289,2035599,89750 +100291,1885335,114562 +100294,0242424,334317 +100296,0075242,281007 +100298,1337103,57436 +100300,1442584,39936 +100302,1374992,58244 +100304,2081437,162145 +100306,0165623,18912 +100308,0056370,33735 +100310,0902262,93715 +100312,0845464,36931 +100315,0778129,271504 +100322,1836944,81446 +100324,1907707,83890 +100326,1389096,121824 +100328,2008562,70793 +100330,0133904,257604 +100332,0064038,123648 +100334,1141663,125541 +100336,1639426,45316 +100338,0119533,20302 +100342,0395571,34843 +100344,2059255,110398 +100347,1975158,142650 +100356,1937264,90369 +100359,1457765,150202 +100361,1563778,97724 +100363,1174954,13648 +100365,2088714,133823 +100368,0041694,40767 +100370,1216501,33786 +100372,1322346,78128 +100383,2053463,109421 +100385,1714866,121598 +100390,2024432,109431 +100393,0902348,24578 +100395,0783581,257176 +100397,1935896,87436 +100401,2281065,178806 +100404,0142316,36244 +100406,0066215,270002 +100408,1753496,133121 +100411,0077573,47219 +100415,0406910,177155 +100419,1251368,51590 +100421,0055309,207655 +100423,0497432,13946 +100426,1173687,60011 +100436,2309788,127918 +100438,2044729,124461 +100440,1996310,121835 +100442,2577150,167179 +100444,2400660,136553 +100446,0078203,119010 +100448,1372293,67701 +100450,1704292,156078 +100452,1147687,17577 +100457,1446072,46541 +100463,0066266,59005 +100465,0064123,131799 +100469,1424310,98567 +100483,1815998,161303 +100485,1047011,127370 +100487,1559547,109491 +100490,0068866,53031 +100492,0044110,115834 +100494,1808197,64335 +100496,1524131,44946 +100498,1606378,47964 +100503,0056089,103205 +100505,0329390,37348 +100507,1711425,107811 +100509,0079986,36079 +100511,0336693,44065 +100513,0057324,97514 +100515,1820488,98205 +100517,2258685,130750 +100519,0112267, +100521,0096440,123398 +100527,1702439,112949 +100529,1549589,85545 +100534,1159943,288430 +100536,0024651,166918 +100538,0818931,162806 +100540,2446192,160220 +100553,2092588,134481 +100556,2375605,123678 +100559,0023198,144465 +100562,0255195,46226 +100564,1609808,56991 +100567,1737674,58891 +100570,0195366,70051 +100574,0067650,53657 +100577,0065400,158262 +100579,1659343,122857 +100581,2085910,84330 +100583,0377390,141419 +100585,1512897,34061 +100588,1090639,39536 +100591,0024339,126122 +100593,2519480,180705 +100595,1787828,163845 +100611,0765446,68179 +100613,2034098,161187 +100617,0846724,44220 +100620,1587828,58235 +100629,0187806,241568 +100633,0198999,359353 +100645,0876257,311998 +100647,0113286,74935 +100651,0115750,61382 +100653,1587848,60993 +100655,1337601, +100714,2209418,132344 +100717,1313139,89008 +100719,1756511,103161 +100721,0122685,59912 +100723,0281919,38510 +100725,0489342,55204 +100727,1949548,134215 +100729,2085930,114478 +100731,0066019,36096 +100734,2076850,136080 +100737,0882977,134411 +100739,0062012,257716 +100741,0064558,55167 +100743,0901488,37984 +100745,2608732,50275 +100756,2655938,205864 +100799,1294182,70546 +100810,2387433,145135 +100823,0271885,13442 +100830,0409811,155941 +100836,1139664,73293 +100838,1937189,99480 +100840,1961192,133783 +100843,1954701,130739 +100882,2017561,170657 +100884,1014799,156937 +100902,0454587,14591 +100904,0339422,56744 +100906,0100107,28090 +100942,0113238,236035 +100944,0051952,128682 +100946,0002844,56508 +100948,0140788,126132 +100951,1290732,159480 +101003,0499516,24479 +101006,1555904,203329 +101016,0056514,67556 +101018,0059934,90228 +101020,0207145,143796 +101025,1351685,81005 +101058,2091885,85502 +101060,2034139,146203 +101062,0175844,103162 +101064,0052354,86244 +101068,1441373,53399 +101070,2258858,129112 +101072,1663636,59255 +101074,0051850,43650 +101076,1583421,72559 +101079,1859522,71325 +101086,0781533,74052 +101088,1682180,86825 +101097,1922685,152259 +101102,0147582,139244 +101104,0064390,138906 +101106,2306745,157117 +101112,1623205,68728 +101114,0449077,9834 +101123,0075999,28485 +101127,1212448,14850 +101133,0996396,82866 +101137,2101341,102362 +101142,0481499,49519 +101146,0258013,148820 +101148,0134756,159412 +101150,0134286,143946 +101156,1571739,44158 +101158,1518809,85039 +101160,1296893,82079 +101162,2043900,72841 +101164,1921111,133183 +101166,0069715,42455 +101168,0800268,17728 +101170,1975269,80709 +101172,0038137, +101176,0240505,180016 +101178,0248803,70121 +101180,1594917,59883 +101182,0098512,26883 +101186,2070776,136403 +101188,0097033,71809 +101197,0056135,159414 +101200,0378031,160324 +101204,0039477,88812 +101207,2103264,127372 +101210,1361835,60534 +101212,1127883,140443 +101214,0059219,4868 +101216,0199013,268674 +101218,2332522,127962 +101220,1781784,139948 +101222,1728975,93394 +101224,1188985,44114 +101226,1292644,51853 +101233,0042509,68443 +101235,0041428,80890 +101237,1450681,190167 +101239,0056693,89924 +101241,0057465,29103 +101243,1900908,95775 +101245,2079512,103734 +101247,0044205,101557 +101249,1785277,158386 +101258,2008633,89185 +101260,1579247,35558 +101262,1835977,81250 +101264,1273658,140697 +101273,1790869,117978 +101281,2244901,150117 +101283,0790628,124459 +101285,2101441,122081 +101287,0228456,30198 +101289,0228457,62301 +101292,2125427,81225 +101294,2070597,126186 +101296,2243389,144789 +101299,1849759,80437 +101301,2363439,150211 +101303,1737090,169730 +101305,0100848,103198 +101307,0431615,40859 +101319,0075019,72882 +101322,0210628,40878 +101329,2073077,206266 +101335,1981690,158238 +101337,0047507,41030 +101339,0076731,49353 +101341,2088919,84173 +101350,1804607,123964 +101352,1568926,41156 +101355,0098048,31131 +101360,1911644,158011 +101362,2302755,117263 +101373,0051182,152992 +101375,0007558,148357 +101379,1754811,156268 +101381,2281267,96088 +101383,0099151,109425 +101388,0273153,107250 +101398,0026119,210621 +101400,0020620,130816 +101402,0117476,134806 +101405,1003118,23524 +101407,1343324,116059 +101409,1629736,68047 +101413,2076897,84316 +101415,1763303,84199 +101423,0427531,55892 +101425,1942831,140846 +101428,2085957,167305 +101431,0065549,94551 +101433,0085968,188524 +101439,0144250,247695 +101444,1459858,62130 +101446,0052626,119001 +101448,1050002,43550 +101450,0020062,30631 +101456,0892109,20016 +101458,1621446,55861 +101466,1261041,25038 +101468,1977941,146313 +101470,0497411,189364 +101472,2279313,179668 +101476,0101444,46972 +101479,0202493,128748 +101481,0108243,281583 +101483,0134790, +101485,0025935,198146 +101487,1223893,34496 +101498,1964624,121875 +101505,1484521,109416 +101508,2072263,120399 +101510,0036423,100814 +101514,0134178,45562 +101525,1817273,97367 +101527,1876277,78215 +101529,1935902,127867 +101531,1745862,173153 +101534,0903831,75626 +101536,1300155,51249 +101538,1531914,96999 +101577,1517260,72710 +101579,1498858,54328 +101581,1711456,83735 +101583,1438251,59419 +101585,1792643,119634 +101590,1043787,58197 +101592,0448022,70736 +101595,0087001,96404 +101597,1509787,59441 +101599,1582271,65650 +101606,1708537,77880 +101612,1814621,144340 +101614,1419950,62878 +101616,2429312, +101627,0037610,160660 +101629,2316787,131822 +101632,0397853,20989 +101634,0493129,142989 +101636,0064629,219302 +101640,0461936,17501 +101642,1171226,18034 +101646,1876360,111667 +101648,2071620,116466 +101650,2118702,96535 +101653,1447500,23790 +101662,0368343,34601 +101664,0222012,60579 +101666,0086011,5686 +101670,0208654,26547 +101672,0481513,18843 +101674,0071256,28067 +101678,2780668,189359 +101680,0085363,19809 +101685,1762300,75720 +101687,2027064,158739 +101689,2220642,127509 +101692,1272006,111098 +101695,0855822,63840 +101703,2357453,136698 +101706,0107464,55144 +101708,2078523,127544 +101710,1891974,91694 +101713,0298317,54356 +101715,0893406,14607 +101717,0088338,148034 +101719,0254481,25516 +101726,0053768,55663 +101728,0395669,31389 +101730,0092711,87090 +101732,0120316,79816 +101734,0008523,51355 +101739,1288558,109428 +101741,1924429,68727 +101747,0060440,3146 +101749,0040559,102524 +101754,2261389,224992 +101756,1535101,54093 +101761,1684233,93828 +101763,2112210,128136 +101765,1986843,133698 +101767,1568815,58483 +101770,2006810,173294 +101782,1460739,81619 +101799,0368571,40798 +101801,1638350,85449 +101803,1980218,158231 +101812,0049523,57993 +101820,0060408,64875 +101823,0204350,44895 +101825,0086902,25290 +101827,0061590,3052 +101829,1185370, +101833,2085741,84171 +101835,0272440,51167 +101844,1864353,152938 +101846,1053902,81579 +101848,1152840,44671 +101850,0388644,89049 +101855,2221784,124080 +101857,1232206,54994 +101862,2131674,202132 +101864,1483013,75612 +101870,2130142,100089 +101872,1709122,92484 +101878,1089677,55956 +101880,1697064,171337 +101884,1507563,59963 +101887,0074200,198001 +101891,2129928,84179 +101893,1595656,60281 +101895,0453562,109410 +101897,0105651,293089 +101902,0057242,85510 +101904,1613092,86577 +101908,2093099,125140 +101916,0066225, +101918,1524095,62325 +101920,0285663,76809 +101922,2209400,117534 +101924,0111552,24527 +101926,0087010,60573 +101935,0048289,43314 +101938,0043262,34269 +101940,2320029,96090 +101942,1854236,126250 +101944,2088754,140448 +101947,2007385,78056 +101952,1680305,103707 +101954,0065380,32599 +101957,0312525,149469 +101962,2140203,110420 +101964,1437235,50221 +101967,0053388,62472 +101969,0272884,56419 +101971,1510985,37757 +101973,1433811,127517 +101975,2782834,186606 +101979,1328909,46451 +101984,1715853,81623 +101986,0036566,65646 +101989,0055058,43023 +101991,0051413,43113 +101997,0795461,4258 +101999,1208728,40864 +102005,1843287,102001 +102007,0903135,13647 +102009,1667903,63686 +102012,1410272,78432 +102025,0061549,42699 +102028,2073128,92837 +102033,1980209,134374 +102035,1582621,74394 +102037,1651323,80384 +102039,0081597,71508 +102047,0033432,29886 +102049,0040582,31664 +102051,2654124,169934 +102058,1325753,15257 +102060,1483025,30675 +102062,2064713,137563 +102064,2051894,176124 +102066,1977895,121606 +102070,1525366,84204 +102072,1645155,106021 +102078,1050001,25693 +102084,2027128,76589 +102086,2625598,229768 +102088,1462900,44865 +102090,0046026,44692 +102093,0026043,82106 +102101,0101325,110830 +102103,0164336,183015 +102107,2239034,179179 +102109,0023349,221656 +102111,0489062,50787 +102113,0988043,24133 +102115,0121641,55524 +102119,0448182,36549 +102121,2378465,130804 +102123,1245492,109414 +102125,1300854,68721 +102127,1076240,18089 +102131,0076868,42603 +102133,2350608,128201 +102138,0021668,38453 +102152,1032817,19688 +102154,2617456,166076 +102156,0045352,118636 +102158,0435593,36229 +102160,1659338,77234 +102165,2055765,174321 +102167,1905042,179154 +102171,1542482,91073 +102174,1701210,77221 +102176,0079445,56584 +102178,0168504,23705 +102180,0046834,57849 +102188,0970462,20181 +102190,0118248,2966 +102194,1935179,103731 +102197,1825842,82662 +102199,0065702,42587 +102201,0074653,32100 +102208,1087828,19989 +102210,0240325,96279 +102213,0096243,109669 +102217,0152183,25117 +102219,0083735,66209 +102221,0185511,64272 +102224,1641400,52225 +102231,1718199,70057 +102233,0044188,88176 +102235,2475544,159011 +102242,1159922,110272 +102245,1272886,95755 +102248,0086607,74257 +102250,0075415,58954 +102252,0084671,19156 +102263,1422675,26693 +102265,1422674,36917 +102267,0321897,281788 +102269,0110625,56763 +102273,0092767,31700 +102275,1566637,101501 +102278,1551630,165739 +102280,2060525,53101 +102282,1110207,25272 +102284,0079287,106849 +102286,1821426,172631 +102290,2114490, +102294,2084977,139463 +102297,2048688,127728 +102299,2323551,98541 +102303,0122648,48254 +102305,0079288,106851 +102323,0076042,53197 +102325,0073471,112823 +102327,0196530,108419 +102332,1446675,40852 +102338,0075202,45736 +102340,0076827,149961 +102342,0084594,64988 +102350,0118782,68761 +102352,1130980,14921 +102354,1945062,94901 +102356,1606339,60540 +102360,1477173,77439 +102364,0171049,19568 +102367,0093306,109962 +102369,1240538,191024 +102371,0056040,27699 +102373,0037386,101297 +102376,0407708,21522 +102378,0762138,72525 +102388,0069840,39889 +102390,0179183,11119 +102396,1605777,82501 +102399,0025031,183171 +102403,0187995,86023 +102407,1343092,64682 +102411,1046936,26293 +102413,0074650,100224 +102415,0104467,124085 +102417,0200135,104871 +102419,1740801,128847 +102421,0862826,355551 +102425,0095483,61904 +102429,0098087,8768 +102432,0045566,31560 +102434,0278490,31715 +102436,1637612,137474 +102443,1707821,84391 +102445,1408101,54138 +102447,0141861,72834 +102450,2400975,208700 +102459,2605244,166773 +102461,0241183,278111 +102463,1828972,137499 +102469,1684925,60270 +102477,1520392,39319 +102479,2312602,123431 +102481,2234155,116741 +102483,0978649,23112 +102485,0076741,48227 +102487,0043782,83664 +102495,0795473,82594 +102497,0119501,55576 +102499,2242712,235373 +102509,0022357,28258 +102514,0380349,39386 +102517,0066603,42601 +102521,1078885,21862 +102523,1414404,149101 +102526,0124169,155596 +102529,0073394,149155 +102533,1319746,37269 +102535,0049762,458 +102541,0077180,106388 +102544,0080427,134397 +102553,1876248,74460 +102557,1959438,139933 +102588,2366450,128216 +102590,0462246,16150 +102596,1407927,39333 +102598,0212742,41738 +102602,0076391,27861 +102604,1779076,97686 +102606,1269706,38875 +102660,2207050,156236 +102662,2555426,168676 +102664,0032030,64143 +102666,0070233,20803 +102672,0220924,194668 +102675,1890391,133082 +102677,2087850,83382 +102682,1727516,83900 +102684,1602613,77987 +102686,1951261,109439 +102688,1344315,81576 +102716,1905041,82992 +102720,0848537,116711 +102735,0078937,197467 +102739,0298597,44357 +102742,0389448,86282 +102744,0023284,84038 +102747,0007264,2077 +102749,0078938,197481 +102751,0455913,54120 +102753,2404461,152780 +102758,0290230,44546 +102760,1489167,42151 +102762,0340258,26146 +102765,0074259,95771 +102777,0430650,55657 +102779,0046475,43357 +102781,0081152,119933 +102783,0896031,28424 +102792,2024519,137182 +102794,2332523,118931 +102796,1848784,121725 +102798,2204379,100493 +102800,2347569,121986 +102802,1731697,104755 +102804,0053399,18146 +102807,1605735,70757 +102817,1789724,94841 +102819,1291580,119675 +102821,0052923,128873 +102823,0262240,130824 +102826,1784575,81534 +102828,1594921,60152 +102830,0204322,39193 +102841,0230010,293552 +102843,0109167,106263 +102845,0032231,189650 +102848,1679180,80034 +102850,1743378,108235 +102852,1091863,86843 +102854,1780762,123103 +102856,1667355,166666 +102858,2599898,167658 +102860,2261629,219781 +102862,2414454,176182 +102868,0062155,51856 +102870,1426371,109455 +102874,2125500,84302 +102876,1723126,90873 +102880,1815862,82700 +102882,0095063,49343 +102895,1341718,111172 +102897,1172992,99453 +102899,0072867,28271 +102901,0005542,53405 +102903,1670345,75656 +102905,1426329,77805 +102908,1155588,160758 +102910,0455980,54894 +102912,0475296,68297 +102917,1015246,22911 +102920,1863201,194121 +102922,2368553,184125 +102924,2061712,118737 +102941,1656192,74513 +102943,1706365,103970 +102949,1590950,38540 +102951,1446673,94326 +102953,1619037,43938 +102956,1261954,85431 +102961,0039485,32596 +102963,0060112,42714 +102965,0062688,124227 +102967,0054758,63212 +102969,0303970,40226 +102972,1426360,313972 +102974,2014346,97609 +102976,0087117, +102978,2284766,176339 +102980,0844742,63923 +102984,1857842,133463 +102986,0107922,57981 +102989,0213565,92620 +102991,1833844,116811 +102993,1727388,147773 +102995,1772270,101998 +102997,1124001,102331 +103003,0429245,183672 +103006,0024435,34977 +103008,2341664,127884 +103010,2112129,143567 +103017,1937149,111083 +103022,1687221,72660 +103027,2094064,91739 +103030,2066176,105526 +103032,0062900,56500 +103036,1600428,50158 +103040,0004101,53392 +103042,0770828,49521 +103044,0006032,53411 +103048,2179116,156700 +103050,1926313,65521 +103052,2064849,85047 +103055,1931435,87567 +103057,2073086,128215 +103059,1674773,121873 +103064,1695136,75945 +103066,2310157,121446 +103068,2148554,144481 +103071,1407939,233805 +103075,2184339,158015 +103078,0107666,182499 +103081,1785389,79201 +103083,2032557,121677 +103085,1879032,174188 +103087,0443091, +103089,1763270,97562 +103091,2147484,135317 +103101,0922354,51844 +103103,0060307,40244 +103105,1176416,52034 +103107,2396566,159014 +103112,0076341,84765 +103114,0099546,25111 +103116,1341764,194099 +103118,1773294,91334 +103120,2224075,105965 +103130,1295053,39279 +103132,0065711,224600 +103135,0882113,250625 +103137,2132285,96936 +103139,1006823,6636 +103141,1453405,62211 +103143,2146688, +103150,2193418,192538 +103164,1516002,88057 +103166,1809387,51795 +103171,1978524,160085 +103175,0106642,104739 +103177,0077159,131478 +103182,0079378,119838 +103186,0072355,35862 +103190,1468322,39544 +103203,1734433,96599 +103206,1450320,68556 +103208,1736049,84198 +103210,1776196,80518 +103212,1698651,201485 +103219,2103217,103620 +103221,1935065,120292 +103224,2056740,128124 +103226,2104837,108726 +103228,1663662,68726 +103233,2465238,177271 +103235,1924396,152742 +103237,1822302,138907 +103241,0062978,141955 +103243,0054601,118998 +103245,0391728,53928 +103249,0816711,72190 +103253,1535108,68724 +103255,2532528,159004 +103257,0385013,82134 +103259,0177876,41586 +103266,0030470,59584 +103269,1758610,126337 +103271,0093970,38178 +103273,0082592,39982 +103275,1824254,159154 +103277,1985443,114049 +103279,1932767,127373 +103282,1290472,31221 +103286,2352394,185562 +103288,2091398,106049 +103290,0062671,58293 +103292,0054218,262528 +103294,0067861,137037 +103296,0068951,125374 +103299,1959332,126277 +103301,2375255,130358 +103303,2510874,199687 +103306,2051879,174772 +103308,0271031,67272 +103315,1767354,179826 +103317,0397696,180050 +103319,2273321,101449 +103322,0067622,42527 +103324,0051150,120303 +103328,0450497,153420 +103330,1439573,55655 +103333,1871236,83342 +103335,1690953,93456 +103339,2334879,117251 +103341,1213663,107985 +103343,2147365,118690 +103359,0080000,119916 +103361,2113822,139329 +103363,0289845,93649 +103366,1893256,136418 +103368,2172061,167726 +103370,1935909,86410 +103372,2404463,136795 +103374,2081311,128276 +103380,0055593,120555 +103382,1274273,44646 +103384,1210819,57201 +103386,1872880,121936 +103388,1557720,80597 +103406,0043807,193878 +103411,0089034,80368 +103413,2106420,117377 +103418,1572146,117530 +103420,0262571,31460 +103422,0238064,114761 +103424,0004134,151085 +103433,0950740,72140 +103435,0026046,120892 +103437,0218127,35381 +103439,2330866,124157 +103444,2397619,81167 +103446,1124378,77449 +103449,1829012,109099 +103452,2481238,159032 +103454,1265589,29751 +103460,0097429,44909 +103462,0109895,30654 +103465,1977739,127872 +103472,0933877,38429 +103474,1276962,124071 +103476,1808587,82447 +103478,0119348,155055 +103481,0411805,24935 +103483,2450186,159117 +103487,0411806,24939 +103489,1523267,45556 +103493,2179053,159005 +103498,0273549, +103500,0084284,119844 +103502,1877797,136386 +103506,2072933,141733 +103515,0043276,43562 +103517,0038298,359010 +103519,0106258,36796 +103521,1528734,26018 +103523,0806940,20223 +103525,1060256,19506 +103528,0084666,22765 +103534,1722450,57209 +103536,0025347,108209 +103539,1714206,157386 +103541,1932718,112200 +103543,2265534,157375 +103545,1625092,154779 +103547,1711018,132064 +103549,2179121,112198 +103551,1668003, +103554,2216240,127846 +103557,1608217,179270 +103559,0117966,45875 +103561,2290151,193346 +103563,2480784,159166 +103567,0061827,91063 +103570,2094155,116340 +103572,2033981,173210 +103574,2620736,157115 +103576,0024978,181649 +103590,2856930,199327 +103593,0069434,126523 +103596,2724064,205321 +103598,0080835,106848 +103600,1600841,61330 +103602,2523852,178946 +103604,0102358,60824 +103606,2205697,111969 +103609,0103978,30963 +103611,1172957,61198 +103614,0121701, +103617,0138993, +103619,0102579,24646 +103621,0099173,5898 +103624,2334649,157354 +103626,2651774,173914 +103629,0469785,116432 +103631,2395129, +103633,1354556,64519 +103635,1553156,101609 +103637,0058917,132939 +103639,2356180,206324 +103641,2385104,206851 +103645,0096246,29345 +103647,0109761,133339 +103651,2296404,149085 +103653,0038270,30183 +103655,0790736,49524 +103657,1625340,41180 +103659,2820466,183011 +103661,1777034,62441 +103663,0060291,197602 +103665,2495118,182127 +103667,1741243,199420 +103669,1480295,77663 +103671,1918886,129507 +103673,0481348,260156 +103676,1613763,100287 +103681,0061411,77173 +103683,0082861,119928 +103685,2375574,179111 +103688,1457767,138843 +103690,0430065,28698 +103695,0058615,31122 +103721,1541874,54320 +103723,1679235,51481 +103727,1160996,178809 +103729,1341340,79699 +103731,1085362,23431 +103736,2012011,172847 +103739,0062150,39308 +103741,0096894,43980 +103743,0056692,5646 +103745,2934036,209204 +103747,1709652,103173 +103749,0039615,87245 +103751,2795078,174322 +103753,0822813,216755 +103755,1860353,77950 +103759,0051690,42871 +103769,2137359,173980 +103772,1430132,76170 +103774,1584146,191231 +103776,0970529,17303 +103779,0060484,192990 +103784,1538833,81581 +103787,2338846,159344 +103790,0282934,75878 +103792,1307963,23368 +103794,0379199,47089 +103798,2499076,159138 +103801,2265398,172533 +103806,2180277,123261 +103808,2318527,159092 +103810,1821694,146216 +103813,0092549,59558 +103816,2272350,177221 +103819,2234025,198062 +103821,0099387,19593 +103823,0031721,47404 +103825,1911662,180948 +103827,0792988,120393 +103829,0103092,284231 +103831,0102058,66753 +103834,0475271,46729 +103836,1820400,115046 +103838,0064546,62843 +103840,0929806,117209 +103842,0453366,144570 +103846,1047517,76043 +103849,2625030,165213 +103851,0026840,188468 +103861,1866255,58291 +103863,1754946,79850 +103865,2053423,192126 +103867,1654523,160139 +103869,1876261,117856 +103871,1337599,65435 +103873,1171701,27957 +103875,1378702,83566 +103877,1479293,173938 +103881,0050485,138308 +103883,1272878,136400 +103908,2954776,127905 +103910,1999243,125164 +103912,0109900,77728 +103920,0450238,17275 +103923,0094637,238748 +103935,1748043,74310 +103966,2459022,151743 +103972,1935914,168138 +103974,2282662,157016 +103976,0158831,85984 +103978,1730687,89325 +103980,2334873,160588 +103982,1925435,153738 +103984,2358891,179144 +103988,0309872,31354 +103990,0096310,28173 +103994,2085888,102867 +103996,2292959,109729 +103998,0146425,26622 +104000,0101343,77664 +104002,0096824,205798 +104011,0034458,43167 +104013,0077864,11144 +104015,0083675,11614 +104017,0181947,58447 +104019,1196124,211587 +104026,0026075,244447 +104028,0042206,22924 +104031,1305586,205005 +104033,2077747,121831 +104035,2325518,191619 +104039,0101366,44796 +104041,0122961,19154 +104043,0114754,50277 +104050,0266850,26450 +104054,0045077,77645 +104059,0101391,149856 +104061,1861281,83040 +104064,1625350,102234 +104066,2243246,189242 +104069,2510998,185574 +104072,0167565,4548 +104074,1854564,76285 +104076,2017020,77931 +104078,0469021,177699 +104085,0099277,23535 +104089,2007360,158743 +104091,0067592,58218 +104093,0787442,121791 +104095,0452745, +104097,2908228,201676 +104099,0078187,30143 +104101,0240380,89345 +104103,2276000,205985 +104116,0098208,293198 +104119,0061253,241340 +104123,2557848,147276 +104126,0044453,42502 +104129,2016940,76544 +104132,0051226,38120 +104135,0050432,36089 +104137,2195548,113148 +104139,0049944,44545 +104141,0346578,21683 +104144,1683043,65291 +104153,0047960,35919 +104155,2380408, +104175,0104609,39027 +104177,3108864,212994 +104179,0110255,50346 +104181,0109442,61954 +104211,1723121,138832 +104213,0087366,157862 +104215,1244658,39957 +104218,2191701,109418 +104224,3010462,211830 +104226,1718807,212927 +104231,2165735,110410 +104233,0031143,18851 +104236,0099321,259808 +104239,1609113,97008 +104241,1650554,59859 +104243,1411250,87421 +104245,1691917,151960 +104247,0123334,54266 +104249,0031677,59589 +104266,0903660,37312 +104270,0097008,59735 +104272,2545118,158999 +104274,1413495,115348 +104276,1887785,124091 +104280,0026123,27003 +104283,2013293,149870 +104285,1339122,24631 +104294,0060126,26158 +104298,1828970,198210 +104301,0090637,204128 +104303,2357129,115782 +104307,0105448,65958 +104309,0110583,215134 +104312,1538403,123553 +104314,2359085,113362 +104317,1570090,98412 +104319,0790663,47559 +104321,2364949,154282 +104323,1671513,92506 +104331,2295750,184020 +104335,0167474,72968 +104337,1327773,132363 +104339,2294677,157360 +104341,0284769,82473 +104345,0057864,62755 +104350,2084953,159622 +104352,1864253,174346 +104354,1288641,45109 +104356,2268732,128133 +104361,2388637,152748 +104363,2034741,133108 +104368,1542485,200063 +104370,1754858,49542 +104372,0049110,35895 +104374,2194499,122906 +104376,1922736,83114 +104379,2112124,205022 +104384,2245223,98064 +104386,1188990,15440 +104388,1464535,56937 +104390,0760188,19029 +104392,0066735,30689 +104406,2219514,122088 +104408,1838722,101179 +104412,1543807,104880 +104414,1906347,130055 +104419,1494772,30061 +104421,1581845,117924 +104423,1852006,91690 +104431,1631707,98568 +104436,1948209,109260 +104438,0057880,154019 +104441,2005374,199373 +104449,1756427,66608 +104451,0068455,116764 +104453,0082719,250155 +104457,1853739,83899 +104459,0051133,51166 +104462,0069825,107239 +104464,1682949,42355 +104472,0443507,46891 +104480,0015801,66148 +104489,0040271,96252 +104491,0038040,77123 +104493,0057583,107231 +104495,1961179,83272 +104498,0068642,242920 +104504,2214913,167919 +104506,1822311,136466 +104508,1198340,26971 +104513,0094886,25756 +104518,2171867,169209 +104520,0215685,39005 +104524,0100534,217038 +104526,2185178,140708 +104540,0113394,29231 +104542,0119426,48319 +104544,0364447,21708 +104546,2302334,129432 +104552,1890375,138496 +104556,1462757,122372 +104561,1146320,17886 +104563,0030879,33028 +104569,0046480,168496 +104571,0080331,219956 +104576,1555093,127651 +104581,1479688,202495 +104583,1563725,32389 +104588,0818170,43740 +104590,1153040,33196 +104595,2042520,198342 +104597,1511476,180318 +104599,2354495,159167 +104601,2180571,169758 +104604,1800379,176720 +104606,0398029,2911 +104608,0443435,16921 +104610,0172669,25172 +104612,1370803,129854 +104625,0040104,218212 +104627,0048975,46525 +104629,0118668,90785 +104631,2103267,111190 +104633,1323520,37845 +104636,1698010,79628 +104638,1615091,50674 +104640,0043752,136336 +104642,0044012,174773 +104644,2546038,147129 +104662,0074533,42244 +104664,0095177,211729 +104667,0113926,79950 +104669,1790834,84338 +104671,1852770,135812 +104673,0080997,107355 +104675,0125319,124298 +104677,0138797,40833 +104680,2450440,214091 +104685,1655413,118293 +104689,0103002,24789 +104691,0106436,52017 +104693,0109302,52021 +104698,0050414,84058 +104701,0101005,54768 +104712,2378281,211954 +104719,0181315,52022 +104721,2755016,174334 +104723,0184354,75465 +104726,2237822,138217 +104728,2515086,164558 +104731,0163114,64936 +104733,0006684,53417 +104736,2218003,146223 +104741,0067004,200236 +104743,1721672,219674 +104746,0250469,27711 +104748,0295369,27712 +104750,1603314,61716 +104757,1822381,185444 +104760,2167202,146227 +104762,2201548,158884 +104764,1971466,89623 +104767,2151988,127451 +104769,2256858,134756 +104772,1504467,27651 +104774,2369497,126321 +104776,0049083,65114 +104778,0282659,47913 +104780,0211653,49802 +104784,0475289,10432 +104795,0048976,62648 +104798,2660636, +104800,0166791,194126 +104803,0077025,136991 +104805,0181602,86685 +104807,1741225,82932 +104809,0047348,37463 +104813,1031276,86235 +104815,0033369,183825 +104817,0051394,124429 +104823,1727300,86274 +104827,2621714,171964 +104829,1038693,176088 +104832,0045825,37183 +104835,0076191,40231 +104837,0093820,17282 +104839,0120101,218508 +104841,1454468,49047 +104843,2094762,180810 +104847,0490701,57655 +104849,0100031,95730 +104854,0059348,138030 +104861,2537176,207768 +104863,1486834,212716 +104865,2117946,122597 +104867,1840911,104634 +104870,0077414,28735 +104872,0838231,103902 +104875,2245195,115199 +104879,1392214,146233 +104881,1206543,164457 +104883,2330322,133369 +104903,1920945,130593 +104906,1985019,156711 +104908,2226417,91586 +104910,1778924,195757 +104913,1979320,96721 +104920,0270053,57892 +104923,1798291,158895 +104925,2404311,112205 +104932,0384013,64820 +104936,1052003,58607 +104938,1144805,11111 +104944,2370248,169813 +104947,1937449,121789 +104952,0093238,30995 +104954,0087513,85509 +104956,0107292,27885 +104959,0387037,28320 +104961,0038321,38807 +104969,0027969,41349 +104971,0379158,106599 +104973,0477424,103713 +104975,1596753,180314 +104984,2285752,133701 +104990,1145157,34188 +104993,0110215,63924 +104996,2229842,157129 +104998,2371824,129734 +105001,1696194,158711 +105011,1926910,63383 +105013,0494224,12791 +105015,0376720,9971 +105017,0023685,156339 +105020,0097081,102059 +105028,1754367,103689 +105030,0886500,320849 +105032,2396485,174348 +105034,0090005,124531 +105037,1758795,129139 +105040,1772262,219288 +105042,0065198,74137 +105044,2023765,119826 +105047,0100589,36992 +105049,0005074,43678 +105051,0005571,50775 +105053,1132285,136911 +105055,1223932,27457 +105057,0050928,108564 +105068,2830416,176238 +105071,1022883,22731 +105073,1925479,100544 +105075,1196339,19458 +105077,0024961,41347 +105079,0192120,53407 +105081,0004277,53374 +105084,2476154,220714 +105086,1532958,109417 +105089,2207658,115189 +105091,1337117,43065 +105096,0073438,40950 +105098,0997057,34937 +105101,2182163,245950 +105104,0189201, +105111,0109209,81996 +105115,0093196, +105117,0091668,39243 +105119,0105078,114726 +105121,1844203,121676 +105126,2312890,156708 +105128,1293751,127878 +105130,2324384,199615 +105133,1580426,71700 +105135,0086113,47038 +105142,0044396,136966 +105147,1645048,85656 +105150,1082862, +105155,1040007,32630 +105157,1874789,139998 +105159,1859446,81857 +105161,1658487,73590 +105163,3178822,221410 +105165,0049964,75506 +105176,1861279,134394 +105178,0047149,23045 +105181,0050722,53949 +105184,0091810,25666 +105187,2130114,91018 +105189,0333395, +105191,1488060, +105193,2821088,179109 +105195,1909348,62425 +105197,1821549,129670 +105204,1167675,45756 +105206,0094651,2093 +105211,2390361,209263 +105213,2229499,138697 +105215,1893326,168051 +105217,1488181,133931 +105223,0041253,28484 +105227,1312203,36130 +105234,0865538,26251 +105236,0086340,41889 +105238,1183908,23385 +105240,0452692,15810 +105242,2239512,128135 +105244,1753653, +105246,2027140,157820 +105248,2172935,193613 +105250,0432232,51452 +105252,0085356,27232 +105254,2332579,157409 +105257,2997766,217014 +105266,2615134,132887 +105269,1623757,70115 +105271,0093076,78143 +105275,2179087,216374 +105279,0036758,118948 +105282,0040473,249333 +105288,1753821,175245 +105290,2072227,100681 +105292,1205071,25377 +105296,1969991,68780 +105299,1638939, +105302,1981140,128241 +105304,0078381,256382 +105306,0219919,60125 +105308,0102848,24331 +105310,0105322,33305 +105314,1621994,72440 +105320,0044367,103168 +105323,0483195,25584 +105325,2274570,172828 +105328,2084773,75757 +105330,0069131,86049 +105335,0082050,154413 +105338,0770214,30244 +105340,2659414,158445 +105343,2377938,165904 +105345,0867334,43727 +105347,1808426,139725 +105351,2364841,146238 +105353,0205011,77776 +105355,2278871,152584 +105357,2070862,97006 +105359,1701215,138202 +105364,1846472,122089 +105366,0053272,51947 +105368,2133239,128081 +105375,1847746,188761 +105377,2512204,222759 +105379,0064684,210940 +105382,2409634,192160 +105386,2230358,167032 +105388,0274738,97790 +105390,0098157,21381 +105404,2061756,196355 +105406,0042176,37087 +105408,1692235,102420 +105410,0086896,1803 +105412,0455949,49393 +105414,1721478,161073 +105416,0080616,65481 +105420,2345112,209262 +105423,1846492,128089 +105429,2215151,159008 +105435,0121244, +105439,1606761,55884 +105442,1568929,167673 +105444,0193493,126560 +105446,0093720,276123 +105448,0189814,195450 +105450,0060558,3149 +105453,2717558,190754 +105455,1512228,41443 +105461,1373149,45725 +105463,0882742,49162 +105465,0068190,34461 +105468,1985966,109451 +105470,2823574,218381 +105474,1684913,81435 +105477,1787988,86004 +105481,0066846,78250 +105484,1736636,53776 +105490,0086876,253120 +105492,0439544,10598 +105495,1554414,81626 +105497,2901584,208968 +105499,0055743,100461 +105502,1153102,14143 +105504,1535109,109424 +105506,0256749,97397 +105509,0077936,4479 +105519,1928340,198287 +105521,2390301,210708 +105526,0275085,175953 +105529,0803890,113364 +105531,1745686,115442 +105533,0069371,62996 +105538,2577990,159015 +105540,0166960,51985 +105542,1129404,134472 +105554,2072145,90645 +105560,1422800,49004 +105563,1969175,119893 +105565,0048623,197926 +105569,1043694,56997 +105571,0046731,56290 +105575,0810951,17025 +105577,0473445,47369 +105579,1876547,75735 +105581,0094383,55539 +105583,0100888,128917 +105585,2002718,106747 +105591,2856738,99279 +105593,1450321,85889 +105595,0138680,293109 +105597,1645131,91745 +105599,1060249,19623 +105601,0035706,38273 +105606,0378420, +105608,2481198,214100 +105612,0464320,10006 +105616,0037722,64078 +105618,0104293,273160 +105620,1171222,175528 +105622,2294965,169642 +105628,1232827,8935 +105630,2126362,115210 +105653,1211956,107846 +105659,0037453,64076 +105663,1515059, +105665,0103314,172782 +105700,0453533,10085 +105703,2094877,139651 +105709,1869416,195423 +105713,2261542,120587 +105715,1407061,38093 +105717,2150209,81708 +105720,0062457,55370 +105728,0268297,121317 +105731,1939659,133805 +105733,0063219,86816 +105742,1837703,162903 +105744,2558550,159009 +105746,2708946,173495 +105748,0037179,29368 +105753,1609492,74674 +105755,2193215,109091 +105759,0103812,56115 +105761,0086980,82407 +105763,0077247,34023 +105765,1686660,81622 +105767,0107748,154795 +105769,1821641,152795 +105772,0051570,43115 +105776,1515725,113194 +105778,1937269,166879 +105792,0036395,194516 +105794,0119576,18167 +105796,0033366,200390 +105799,2636522,191502 +105801,2187884,158752 +105803,0059205,3160 +105805,1444307,58877 +105811,0255198,39468 +105813,0070122,39264 +105815,1468381,74008 +105819,0233277,29941 +105821,0047966,35911 +105825,0046109,291907 +105827,0117089,36214 +105829,0101483,27207 +105831,1663625,120771 +105833,0092676,30478 +105835,1825157,146015 +105837,0109916,39466 +105841,2445556, +105844,2024544,76203 +105846,2383616,171738 +105849,1727381,91311 +105855,2286990,209406 +105863,2187115,160118 +105865,2544182,231038 +105869,1311071,157370 +105873,0157894,95006 +105884,0412308,28868 +105886,1094627,61820 +105888,1890383,79378 +105890,0092146, +105892,1753773,73099 +105899,1806971,115173 +105901,0133202, +105906,0405461,81538 +105911,2343617,214217 +105915,1527725,153196 +105918,1180311,55651 +105924,1176725,15866 +105926,2170301,160897 +105928,1891845,137193 +105936,0065776,38221 +105938,0056648,43015 +105943,2357788,174366 +105945,0283090,58631 +105948,0101296,87302 +105950,0419967,58591 +105952,2014351,214671 +105954,2017038,152747 +105959,0037989,64077 +105961,0133104,36212 +105963,0189764,36247 +105965,1930546,127374 +105968,0196632,103648 +105972,1319722,65056 +105974,0060135,42716 +105976,0088765,78235 +105978,0112563,293412 +105980,0101502,40221 +105982,0109323,50441 +105985,1611990,82627 +105987,2075352,103195 +105999,0197273,19594 +106002,1731141,80274 +106004,0056219,37342 +106006,0106479,62039 +106011,2616880,200481 +106017,1670627,88274 +106019,3040528,210624 +106022,2446040,213121 +106024,0079800, +106026,0026373,174988 +106028,0039032,256396 +106030,1709143,190847 +106032,2145637,166986 +106046,0083900,57725 +106048,0087286,187569 +106052,2304583,127929 +106054,2691722,225975 +106057,0169364,56949 +106059,0825244,4519 +106062,3063516,208134 +106064,1017456,19658 +106066,0938305,168027 +106068,2188750, +106072,1981115,76338 +106074,2060305, +106076,2973064, +106078,0076109,44005 +106080,0065737,75905 +106082,2083695, +106090,1029167,13390 +106092,0830535,83059 +106094,0366526,39469 +106098,1675198, +106100,0790636,152532 +106102,0404978,97434 +106107,2510620, +106109,2290840,133200 +106111,3004634,226632 +106113,1377796,48011 +106115,1647292, +106130,1686768,58166 +106136,1568323,44745 +106138,1381418,73500 +106141,2424418,250503 +106144,2304426,194101 +106147,1275590,15709 +106156,1937419,128129 +106158,0099436,66538 +106160,1733105,224746 +106163,2852400,187022 +106165,2263058,124075 +106168,0116975,193212 +106170,0110796,16242 +106173,1854551,91325 +106188,0014702,144613 +106190,0047400,156566 +106193,0826099,265727 +106195,1894476,162215 +106197,1698648,72890 +106200,2094018,172803 +106202,1673376,189747 +106204,2299842,123377 +106208,2369331,170632 +106210,1835955,121565 +106212,0774118,14297 +106214,1468387,42950 +106220,2836450,230158 +106222,2302529,96924 +106224,0377029,56579 +106226,1726888,127880 +106228,1576421,52045 +106230,1666305,85822 +106232,0042883,61936 +106234,1836808,121674 +106236,2204371,184149 +106238,2093944,135670 +106240,1621039,175574 +106243,0314111,12636 +106245,0064470,49186 +106250,0098965,295045 +106254,1456060,80188 +106256,0140613,128266 +106268,0421696,59100 +106270,0044402,184802 +106272,1678040,64458 +106275,0109498,250610 +106277,0101509,69056 +106286,0379708,44900 +106295,0057924,28592 +106297,0049358,118153 +106300,0053240,155399 +106302,0387596,19644 +106306,0420917,43208 +106310,0785012,24786 +106320,0265104,51215 +106324,1470021,99534 +106326,2167791,203062 +106330,1204975,137093 +106332,2492916,159151 +106334,2262456, +106336,2765340,191421 +106342,0050128,243860 +106344,2403029,225703 +106346,0075409,49914 +106348,0290014,124581 +106351,0051369,110674 +106353,0839851,173433 +106355,1845283,198365 +106363,2165955, +106365,0072228,84324 +106369,1727358,78294 +106374,1757769,123362 +106376,0085867,67530 +106378,0075436,36820 +106384,0139060,53318 +106387,0112594,222858 +106389,0191019,122408 +106391,0816362,93498 +106397,0437489,121555 +106399,0071974,4146 +106401,0347330,21776 +106403,0452011,19039 +106405,1413493,85312 +106407,2402179,193645 +106417,1796406,87380 +106421,2386327,159988 +106423,1853548,192393 +106431,0479879,15725 +106434,0092750,97971 +106436,2315628,187927 +106438,2431286,205220 +106441,0816442,203833 +106443,2083355,146304 +106450,1085382,43213 +106452,2718492,209274 +106455,2256749,163590 +106458,1250757,261508 +106460,0278067,70224 +106462,0046164,232018 +106464,3277552,238407 +106466,0015493,143534 +106471,1485763,41498 +106473,2375379,176983 +106475,1604070,92119 +106483,0050112,80521 +106485,0099260,13293 +106487,1951264,101299 +106489,1170358,57158 +106491,1335975,64686 +106493,0069228,42461 +106495,2332514,153820 +106498,0046264,46997 +106501,1359553,58258 +106503,1092058,24506 +106506,0108956,129405 +106508,1905040,169219 +106510,0071679,28550 +106515,1344355,37429 +106517,2396226,139848 +106519,1805516,51402 +106521,0053651,61194 +106523,0054881,171861 +106525,0035771,194509 +106527,1890371, +106529,0158591, +106538,0062979,4578 +106540,2387559,146239 +106542,1196948,41602 +106549,0099089,293092 +106559,0974977,15991 +106561,1029231,204435 +106563,0070479,206188 +106565,0229367,124517 +106579,2518924,188044 +106581,0034504,275905 +106583,0040155,42286 +106590,2415464,200462 +106592,1605765,154663 +106594,2147048,137312 +106599,2314886,218329 +106607,0198913,42870 +106609,0111159,85024 +106611,0109449,107781 +106614,0116717,231472 +106616,0075990,3030 +106618,0284334,76422 +106620,0069530,52608 +106624,1396226,121642 +106634,0808435,25781 +106642,2779318,253941 +106644,0051015,202436 +106646,1386683,31035 +106648,1743724,80662 +106672,0099280,251367 +106674,0109494,107311 +106676,0088963,27294 +106680,3021058,239747 +106682,2215562, +106684,1592292,36618 +106686,1789810,94639 +106688,0203425,40466 +106690,0040577,252622 +106696,2294629,109445 +106698,0164882,31297 +106700,0808265,18547 +106702,0082272,64534 +106704,0074412,77403 +106722,0263238,162494 +106725,0099259,162850 +106727,2853614,200713 +106729,0089185,75564 +106734,2168854,137174 +106736,0058933,42732 +106739,1129441,60366 +106741,2106675,140750 +106745,0062310,31332 +106747,1839522,110919 +106749,1838603,201749 +106751,0113637,37445 +106753,2429292,187628 +106762,1703049,51859 +106766,2042568,86829 +106768,1426374,39378 +106782,0993846,106646 +106785,2312718,204082 +106791,0089338,30877 +106794,0112763,2072 +106820,2628830,134372 +106822,0076765,46793 +106824,0084643,222487 +106832,0049745,43254 +106834,1885171,186399 +106839,2304771,192136 +106841,1322269,152737 +106848,0059080,21930 +106850,0056714,16692 +106852,0200309,16693 +106854,1833888,57210 +106859,2786278,180048 +106861,2976920,209282 +106863,2405182,215739 +106866,0499456,18440 +106868,1510686,136850 +106870,2231554,134366 +106873,0860907,75629 +106877,1641624,58043 +106879,2486630,214597 +106881,2224004,158916 +106883,1462901,174311 +106887,0120381,41831 +106889,3089388,212063 +106892,2430104,158994 +106895,1261900,44038 +106897,1536440,89883 +106906,0060446,22899 +106910,1015999,16985 +106914,2167873, +106916,1800241,168672 +106918,0359950,116745 +106920,1798709,152601 +106922,0057503,18510 +106924,0057715,18511 +106927,1381512,39260 +106963,0069483,163392 +106967,0064036,90563 +106970,1017428,35637 +106972,0877351,264113 +106981,1629747,86817 +106983,2752200,184314 +106986,0089488,48880 +106988,2177509,107916 +106990,0035022,309410 +106992,0072030,54236 +106994,0129767,195516 +106996,0052242,59833 +106998,0164982,54283 +107000,2421662,177203 +107002,2359427,159142 +107004,2201221,172897 +107011,1730311,180998 +107013,0188504,45697 +107017,2071550,215830 +107020,0094962,25028 +107022,0033056,264061 +107024,2704212,224659 +107028,0254334,57047 +107032,0215135,55547 +107039,0054230,121636 +107042,3385404,238478 +107050,0340380,26131 +107052,1785612,178290 +107055,0122037,40448 +107057,1285482,176297 +107059,0118942,223389 +107061,0088334,43967 +107065,0489085,14569 +107067,1331115,64632 +107069,1091191,193756 +107075,0112668,47257 +107077,0406649,28769 +107079,2299368,146712 +107081,0057714,18624 +107083,2235902,197033 +107085,1571401,115023 +107096,1764282,119288 +107098,0052063,132141 +107100,0069214,87392 +107102,1727523,121573 +107106,0112820,5546 +107115,1696192,70338 +107117,1638364,214083 +107128,0076313,47794 +107130,2663812,210024 +107132,0091560,29600 +107137,0835378,18231 +107141,2140373,140823 +107143,1596572,236661 +107145,2287675,107978 +107147,1810798,99880 +107153,0060434,89995 +107155,0044477,85494 +107157,0053672,18977 +107159,0130377,40897 +107161,0191664,54265 +107172,1446208,69717 +107174,0057442,49152 +107176,0425624,8985 +107178,0783522,18619 +107183,2674152,186279 +107185,0074226,40955 +107188,0164984,54272 +107194,0015036,176389 +107196,1817287,167502 +107199,3216510,252995 +107202,2826922,252993 +107204,1646221,57830 +107207,2095568,183258 +107209,2198241,241765 +107213,1838520,157351 +107215,0795426,15216 +107217,1041804,49852 +107224,2763790,220674 +107226,0217066,164123 +107230,0106683,92675 +107232,0087998,40059 +107234,0101688,110548 +107236,0064688,38792 +107238,0082998,256750 +107241,0452604,132812 +107243,0259340,45130 +107248,0081250,29565 +107252,0401019, +107262,0202154,54274 +107264,0123335,54273 +107266,2430084,234652 +107268,0116056,213842 +107270,0118951,19604 +107274,1764275,127913 +107278,0073324,29128 +107281,0113224,67750 +107289,0162854,77161 +107295,1605803,75300 +107297,2244856,160706 +107299,1935749,116853 +107302,2275471,228331 +107304,1288461,20986 +107306,1422651,23452 +107309,2184331,140447 +107312,0249677,18269 +107314,1321511,87516 +107316,0180657, +107326,1695765,114903 +107328,0065744,29129 +107334,0057967,25866 +107338,2969050,209232 +107342,0059942,54275 +107344,0143012,21410 +107346,0199905,54276 +107348,1229340,109443 +107350,2093109,84192 +107352,2299248,170039 +107354,2505938,173301 +107357,2536846,187541 +107359,2400283,172499 +107361,3003668,213015 +107368,2883224,230170 +107370,0071950,82362 +107372,1455810,42892 +107380,3009336,210041 +107382,2319863,174325 +107397,0057556,45241 +107400,2707792,239471 +107402,0039266,58799 +107404,0077525,70490 +107406,1706620,110415 +107408,0070861,37129 +107410,0086723,20894 +107412,0060584,20878 +107418,1568816,69278 +107422,2325719,121691 +107424,0099401,58899 +107426,0090930,40342 +107434,1450364, +107436,2345567,166271 +107445,0077233,42213 +107447,2166616,158990 +107449,1292569,27190 +107456,0104101, +107458,0101741,154226 +107460,0087373,37168 +107462,2458106,180894 +107466,0088701,144231 +107469,0817307,21138 +107477,0078058,11367 +107481,1128071,39055 +107484,3415676, +107499,2062575,142487 +107501,2258233,95383 +107503,0182719, +107505,0080764,67737 +107516,2836166,194188 +107537,1879030,86331 +107539,2325741,103742 +107541,1906329,83869 +107543,1560671,74626 +107546,0080530,11039 +107548,1657284,62989 +107551,1623765,78362 +107555,0845439,43766 +107557,1663143,82679 +107559,1384927,91551 +107561,1670388,85469 +107563,1083448,79113 +107565,2987732,233063 +107567,2421234,289336 +107569,0068692,222413 +107573,1686053,69353 +107575,1664971,189803 +107577,1282152,118778 +107579,2389120, +107581,2669832, +107584,0342771,5995 +107589,3421186,246314 +107591,2325909,203060 +107595,1907628,130233 +107601,2147550,130694 +107603,2325717,117467 +107610,0184197,52477 +107612,3104078,210842 +107614,2570738,176085 +107617,2419284,174358 +107619,2357790,228407 +107621,2173366, +107623,2928078, +107625,3194532,229974 +107627,2101473,169881 +107630,1247667,27584 +107632,0008950,174928 +107634,0104362,37420 +107636,2513616,199782 +107638,0073138,28323 +107640,0177511,328069 +107643,1874522,253988 +107645,2352230,214139 +107647,0985680,25583 +107649,1954315,186929 +107651,2374196,224950 +107653,1669698,58515 +107656,0082835,46445 +107658,0093543,14499 +107662,0186725,54277 +107664,0066572,149725 +107667,1592530,163795 +107669,2208272,128151 +107671,2182209,127866 +107673,0124621,100812 +107675,2572632,225747 +107677,1427298,185267 +107682,0079117,28981 +107684,2025667,119278 +107686,1091666,8213 +107688,0337610,25707 +107690,0075647,328631 +107692,2088871,211233 +107696,2091318,84283 +107698,1429432,69406 +107700,1356790,171910 +107702,1661382,64807 +107704,3165608,229296 +107707,0422091,17478 +107710,3011874,230864 +107713,1341746,72123 +107716,1942989,171698 +107718,0362192,211779 +107723,0465657,13194 +107725,1421383,35076 +107730,1201658,30077 +107732,0982913,259311 +107735,2281095,252385 +107737,2369396,209504 +107740,0248965,53500 +107743,3311384,240629 +107745,2317524,195269 +107747,0162503,35718 +107752,0069536,58061 +107754,2072236,265111 +107756,1311060,115283 +107758,1509788,159024 +107762,0106743,84152 +107765,0099462,66469 +107767,0988086,44432 +107769,2473682,227348 +107771,1714915,152603 +107778,0067249,101740 +107780,2227830,230657 +107782,0025189,170309 +107827,0307538,32616 +107836,0185157, +107840,1176095,36671 +107842,0076706,81462 +107846,0110420,13632 +107848,1814930,76127 +107851,1081731,267219 +107853,0073034,183654 +107855,0061580,257618 +107858,0282178,31013 +107860,0097260,41932 +107863,0484360,54229 +107865,0119204,83678 +107867,0400201,15826 +107869,0082461,40593 +107875,0068704,37488 +107877,0065163,42329 +107879,0059887,72091 +107881,1941541,158232 +107883,2350496,191714 +107885,1776222,114718 +107890,0020094,48734 +107894,0168922,143777 +107897,0112998,124409 +107899,0109760,53061 +107901,0446463,14432 +107903,0053306,199177 +107906,1833843,107445 +107910,2113683,124623 +107912,0382721,39516 +107914,0080711,40034 +107916,2707858,245775 +107919,1135083,53389 +107928,0290916,8434 +107943,0271984, +107945,1847548,122796 +107947,0099103,317246 +107949,1700845,111473 +107951,2295196,204810 +107953,2263944,126963 +107955,1774358,136735 +107958,1634003,153158 +107960,1107812,56965 +107962,2325002,243531 +107964,1305131,290075 +107966,0092734,292062 +107968,0061081,95410 +107970,2178929, +107972,0026409,54773 +107974,0026137,120497 +107976,0040342,95504 +107978,2331143,177945 +107980,2058107,127560 +107982,1844770,83896 +107984,0047220,277809 +107987,1758595,118289 +107990,1618445,109391 +107997,2309021,159128 +107999,0142244,39102 +108001,0452029,79690 +108003,0025132,150249 +108005,0124578,94747 +108007,0029989,89581 +108010,0039595,90966 +108012,0101970,170399 +108014,0388377,24671 +108016,1391116,96944 +108041,2315200,190880 +108043,2370224,173467 +108046,0022409,193638 +108048,0062373,4949 +108050,1024188,110992 +108052,0346039,27093 +108054,3155604,225235 +108056,3218680,245170 +108063,0311926,16076 +108065,0417046,33114 +108070,1292039,63206 +108072,0097335,71847 +108074,0113935,152206 +108076,2459100,173480 +108078,1937118,206408 +108085,2395385,176068 +108088,2112206,168806 +108090,0142250,39148 +108092,0861730,73554 +108095,0285104,38189 +108097,1279185,145059 +108100,1623777,63954 +108120,2288005,113594 +108125,0037505,60140 +108127,1999141,75507 +108130,1113810,303296 +108132,1850419,110391 +108134,0416960,75404 +108136,0049453,173340 +108138,0069117,256122 +108141,1844643,121498 +108143,2355540,159002 +108146,2236182,140174 +108149,3091552,211024 +108151,0116497,164278 +108153,1801123,126749 +108156,1408253,168530 +108158,0023327,84971 +108160,1736552,81867 +108186,0206179,20305 +108188,1205537,137094 +108190,1840309,157350 +108192,1094249,6418 +108194,0111170,31334 +108196,0086357,15494 +108200,2304953,240916 +108202,0322526,54642 +108209,1946269,91052 +108212,2707848,221667 +108214,0084540,51259 +108216,2842128, +108218,0025725,95943 +108220,2486682,159037 +108237,1723642,102207 +108239,0099557,52395 +108241,0082367,91817 +108243,2752758,79316 +108246,3019694,242661 +108248,2673812,163875 +108250,0403539,81600 +108253,0491145,19551 +108255,0135037,31769 +108257,0050152,91380 +108261,0113063,2442 +108265,0058403,29403 +108267,2397489,101352 +108271,0367232,55922 +108280,1930294,84178 +108282,0099578,41374 +108285,1793239,59145 +108287,2201034,149206 +108289,0481522,10958 +108306,0035807,118011 +108311,0038780,26657 +108313,0217363,135855 +108316,0371530,88293 +108318,1540741,159932 +108328,0782700,28062 +108330,0198837,21072 +108332,0356922,37351 +108342,0056636,33998 +108360,0024360,39311 +108370,0022635,161315 +108389,0296625,249072 +108395,0162556,61663 +108401,1504403,56906 +108403,1327599,31780 +108405,0052382,164353 +108407,0249259,255576 +108410,0177293,297560 +108413,0135509,266549 +108422,2248944,134096 +108425,1876330,138977 +108427,0069808,109259 +108445,2296697,156965 +108447,1734067,71622 +108466,0387541,11188 +108468,1464191,177047 +108473,0135520,331958 +108476,0135673, +108479,0106946,53063 +108481,0965484,72872 +108488,2297063,174344 +108491,0953404,25003 +108493,0439574,60976 +108495,0985119,52150 +108497,1844633,78308 +108499,0029695,114638 +108501,3060952,217993 +108503,0063000,34131 +108506,2328549,174671 +108508,2094890,157384 +108510,2078586,136727 +108512,1592521,56647 +108514,2178470,185008 +108516,2936174,199423 +108518,1094661,24475 +108520,1386654,215991 +108522,0458375,21073 +108524,0079808,11765 +108527,2385027,104710 +108529,0399854,92834 +108531,0029594,126783 +108534,1588342,92647 +108536,2514894,173465 +108538,0059958,19199 +108540,1816518,126319 +108542,0048814,111421 +108544,0200138,57680 +108546,1226334,72465 +108548,0898266, +108551,1302559,69746 +108564,0027908,114888 +108566,0192718,104086 +108569,2513092,222911 +108571,1757800,250769 +108575,2222206,184846 +108577,1510926,84690 +108579,0130236,65374 +108581,0217679,36075 +108583,0072500, +108588,0104309,117773 +108590,0106980,78239 +108592,0446370,76268 +108595,1414368,100409 +108597,0086345,7269 +108599,2011276,207769 +108601,1714833,137968 +108639,0014672,104067 +108647,2186812,173185 +108649,1733679,81657 +108653,0262560, +108656,0073620,42262 +108660,2654360,180383 +108663,1188992,29007 +108667,2285557, +108674,0021632,96482 +108676,0099090,218689 +108685,0082425,107430 +108687,0082440,95093 +108689,1418377,100241 +108692,2488310,378240 +108694,1587157,72013 +108696,0051638,44969 +108704,0267659,143973 +108709,0995832,54102 +108711,0109893,208529 +108713,0140627,253077 +108715,1609479,157099 +108719,0371954,37947 +108727,1937390,110414 +108729,2316411,181886 +108745,1754506,72767 +108748,1109523,127687 +108752,0133167, +108754,2142055,107203 +108756,0112304,112575 +108758,0120307,216369 +108760,2309224,171540 +108764,2586000,164328 +108766,1074194,37564 +108768,1552197,54312 +108770,1347521,27960 +108773,0033477,33031 +108775,0457290,30123 +108778,2852458,186992 +108780,1967545,130150 +108787,2427892,184352 +108789,2402623,136437 +108791,1625150,100898 +108795,1186373,15359 +108797,3074694,236399 +108799,0020439,128006 +108804,0470023,17940 +108806,0785002,2180 +108808,0077241,100063 +108811,0445800,21435 +108816,0138104,86221 +108819,0116446,36299 +108821,0095256,59744 +108823,0119244,281556 +108825,1981107,157841 +108844,2407712,271009 +108846,0078838, +108852,0115647,45266 +108857,1054115,11927 +108860,0087903,19400 +108862,0085627,40352 +108864,1726861,59118 +108866,0074216,46136 +108869,2293750,242033 +108871,0021576,47831 +108873,0210843,44516 +108875,1827528,79919 +108877,2191861,118761 +108879,2325989,177888 +108882,0127919,66892 +108885,3183716,234155 +108888,0022873,170234 +108891,0062518,54278 +108893,0063834,54279 +108895,0064360,26947 +108899,2425486,160068 +108901,0314390,60025 +108914,1208647,14028 +108916,0219430,137748 +108924,0043335,144121 +108928,2177771,152760 +108930,1855236,150093 +108932,1490017,137106 +108934,0025965,32996 +108936,0022119,106573 +108938,2339351,136582 +108940,2063008,97794 +108942,0089028, +108945,1234721,97020 +108947,0117547,58427 +108949,2172985,209247 +108951,0021282,99608 +108953,1535432,91101 +108968,0046770,83665 +108977,0433722,313289 +108979,0213338,314040 +108981,2382009,249397 +108983,1957945,83564 +108987,2230434,118513 +108989,0088193,133018 +108991,0114565,133021 +108997,1109574,137566 +109000,0291400,2594 +109002,0067332, +109004,3479540,253445 +109006,0139673,343435 +109008,0380798,24685 +109010,0478548,49729 +109015,1412442,75090 +109017,0044417,43191 +109019,0037539,42325 +109021,2324998,169224 +109023,1800671,87293 +109027,2207072,219318 +109030,2731434,172890 +109032,0065850,87358 +109034,0112990,106828 +109038,3057718,239155 +109042,1545660,74461 +109045,0171725,20756 +109055,0072263,4883 +109057,1322930,27952 +109060,0981352,52147 +109062,0015152,190341 +109064,2489734,174688 +109066,1690389,103717 +109069,0405280,205384 +109072,1742334,144336 +109074,2204340,120143 +109076,3462892,258126 +109093,1285241,41109 +109096,0119861,25519 +109098,0117315,47100 +109102,1856053,141614 +109104,0796232,17794 +109106,0054481, +109108,0342180,45115 +109151,1111313,56441 +109153,1839590,146490 +109155,2402200,140873 +109157,0458413,141043 +109159,3092076,246320 +109161,2406252,197082 +109168,0080486,84362 +109173,3020226,232898 +109177,1776143,67793 +109179,0024514,122435 +109181,1067765,143049 +109183,1878942,99367 +109185,0089206,37585 +109187,2333804,157834 +109189,2318092,226857 +109191,1837709,137321 +109193,0046058, +109195,2378884,192345 +109197,2299206,210913 +109199,1763316,83727 +109201,2360880,71203 +109203,0054343,43042 +109205,0081242,206822 +109207,0073168,40435 +109209,1320378,172120 +109226,3184096,232731 +109229,0169606,117426 +109231,0093383,158517 +109235,0032247,31445 +109237,0049007,81699 +109239,1738340,370353 +109241,1937133,146375 +109243,2382396,157847 +109245,0088133,31295 +109249,0105744,12124 +109251,0400647,32547 +109253,1002581,219931 +109256,0286727,162987 +109265,0421045,33563 +109267,0488962,39341 +109269,2316465,114575 +109273,1380784,43700 +109277,0490170,20493 +109280,2363471,133441 +109282,1559038,103732 +109284,1679227,237692 +109287,0204714, +109290,0085141,71055 +109295,2511428,210047 +109313,0328955,17684 +109315,1236397,30127 +109317,1978532,249923 +109319,0467923,60160 +109321,1891769,98162 +109323,2072045,142573 +109325,1563712,83401 +109330,0821638,13470 +109347,0109271,79869 +109351,0463953,14872 +109353,0046059,355515 +109355,0053558,359195 +109357,0871425,218277 +109359,1815717,212721 +109362,2369127,103875 +109364,0079820,22504 +109366,2655788,182246 +109368,2062602,92850 +109370,1566591,41639 +109372,1826590,222899 +109374,2278388,120467 +109376,2390237,201086 +109379,2708254,201550 +109381,0121065, +109383,2073520,84319 +109385,2294679,102862 +109388,2442466,141635 +109390,3469910,255756 +109392,3469964,256106 +109397,1673734,233470 +109399,3290276,253046 +109416,1349482,21474 +109418,0076674,142984 +109420,0901686,13934 +109423,1134859,13061 +109425,1537759,24589 +109430,1821449,83573 +109434,1351784,41445 +109436,2195498,125680 +109441,0473697,33817 +109444,2386922,137646 +109446,0200310,48707 +109448,0078797,4494 +109450,0076452,86814 +109452,2852406,187028 +109455,2980794,252841 +109457,1735200,77458 +109459,0118989,266333 +109461,3421514,248507 +109463,2333598,127847 +109468,2442502,204765 +109470,2354181,183836 +109472,2039345,220286 +109474,0409866,294709 +109476,0199444,295355 +109479,0199445,329740 +109481,0016672,172913 +109483,1800246,225565 +109485,2113075,158908 +109487,0816692,157336 +109489,2234451,159937 +109492,2340784,179146 +109514,0841993,24417 +109516,1540767,160070 +109518,0183892,220724 +109520,0074153,67657 +109522,0150488,145926 +109524,0001105,77133 +109526,3386954,254065 +109529,2784462,191515 +109533,0055146,153652 +109542,0377515,21580 +109556,1600656,32930 +109563,0369281,19325 +109565,0139730, +109567,0053583,133715 +109569,2172934,192102 +109571,1744612,263937 +109573,1345444,111481 +109576,2193265,205724 +109578,2024469,225574 +109580,1951216,158914 +109592,0387658,21379 +109594,0471588,18224 +109596,1407052,85444 +109598,0075386,95243 +109600,0878647,24756 +109602,1190867,70798 +109607,2165859,159095 +109613,2206354,117375 +109616,1787067,156284 +109621,1509268,86381 +109623,2671600,254464 +109627,2236054,199818 +109629,1999987,158907 +109633,2591814,198375 +109635,1992193,159152 +109638,0997184,83214 +109640,0010281,48263 +109643,0041115,100632 +109647,0047872,266373 +109649,1473345,22259 +109653,1477835,52817 +109665,1072754,79073 +109667,0036882,10574 +109671,0187501,201414 +109673,1253863,53182 +109675,1691154,87587 +109677,0046683,108668 +109680,0067634,88583 +109682,0105388,51581 +109684,1343712,23527 +109687,1385956,202141 +109697,0054001,55398 +109701,0041127,121074 +109704,0032256,121695 +109708,0041181,41552 +109710,1479269,49001 +109713,2275656,257155 +109715,2127295, +109718,1508955,87017 +109720,2281159,204349 +109723,2212008,242076 +109726,0065656,47459 +109728,2213054,168245 +109731,1744776,47626 +109733,0090793,19492 +109736,2207519,149862 +109738,0061429,37316 +109740,2910274,248774 +109742,2389182,175291 +109764,0081558,121015 +109767,0066469,121113 +109769,2438644,196024 +109771,1650516,80837 +109773,1946310,191566 +109776,2312262,222671 +109779,0476969,37646 +109781,2315152,128246 +109783,0953382,21788 +109786,2823088,241968 +109788,2350892,256731 +109790,0459744,45384 +109793,0052104,43135 +109796,1194610,20626 +109798,1179259,167983 +109800,1951090,79893 +109802,2027178,73624 +109804,0074575,79194 +109806,2151915,200145 +109808,0071438,184578 +109810,1575539,56743 +109812,0036316,148044 +109833,0044426,120509 +109839,0361399,24775 +109841,0390450,20695 +109846,0864835,82703 +109848,1441395,97370 +109850,2369135,136797 +109853,2355495,242042 +109858,0443072,38049 +109862,1943873,118769 +109864,2771372,177494 +109869,0104147,40346 +109874,0493101,45514 +109877,2290075,109404 +109881,0065686,68827 +109887,2315226,182827 +109889,0974077,64047 +109891,0100661,74343 +109893,1132474,8064 +109895,2170299,209403 +109897,3210686,235260 +109902,1703232,94331 +109904,0251637, +109910,0480268,24202 +109912,0135166,238972 +109914,0287936,116894 +109921,0783550,159464 +109923,1754795,68713 +109925,0056628,144728 +109927,0065187,144724 +109929,1311717,47771 +109931,0093754,96920 +109935,1990217,115821 +109939,1571243,58767 +109941,2268617,83201 +109943,1564916,62156 +109945,3034258,228202 +109947,2464018,203217 +109949,1477675,54597 +109951,2359002,184323 +109953,0039251,39853 +109963,2609222,209355 +109965,3070936,222481 +109968,2409302,134350 +109971,2955316,236737 +109981,0067801,118915 +109983,0078238,116760 +109985,0080903,39293 +109987,1153698,101242 +109989,2289538,157690 +109991,1029161,55825 +109993,1552624,72962 +109995,2054790,186971 +109997,2196017,199740 +110001,2476090,214250 +110004,0074962,86133 +110006,0080116,46460 +110008,0073131,31950 +110026,3145026,249726 +110030,1390398,164184 +110032,0029926,160162 +110034,0022700,4111 +110036,0053802,85620 +110039,2668134,192577 +110042,2524822, +110044,0038492,26286 +110046,0067224,45007 +110048,0013201,22592 +110052,0077373,31214 +110056,0020247,109891 +110058,1327820,25541 +110061,0083242,80992 +110063,2969776,248390 +110067,0073878,39211 +110070,1063056,16167 +110084,0305633,62709 +110086,1161404,47194 +110090,0096952,42552 +110097,2093997, +110102,1843866,100402 +110104,2369205,168399 +110106,1787767,114172 +110108,2521724,180420 +110110,2567712,209276 +110114,1815776,195022 +110116,2078599,128113 +110119,2140141,119685 +110123,0960730,226247 +110127,1959490,86834 +110130,1821658,227783 +110132,3482378,257346 +110134,3146360,204668 +110136,1240899,214418 +110138,2077703,203715 +110140,2626102,256628 +110155,0060660,151043 +110159,1212451,19501 +110163,2178935,110381 +110167,0073219,38080 +110169,1741542,56415 +110171,3106846,215031 +110173,2504404,191104 +110177,0078488,42216 +110179,0072201,27196 +110181,0064393,29290 +110194,2737310,173455 +110196,2308971,233841 +110198,1308756,102855 +110200,1398949,63143 +110214,0112534,373745 +110216,1153546,12685 +110219,0076512,112731 +110223,0079753,1732 +110225,0102007,49396 +110227,0018618,142159 +110229,0306892,5494 +110233,1701995,70993 +110235,1854568,99119 +110240,0896036,17456 +110242,0303732,103971 +110253,0076306,68123 +110255,2192882,233917 +110259,0067870,65674 +110265,0102319,232862 +110267,0094094,204113 +110269,0058787,94664 +110273,3129564,253239 +110276,0445570,31329 +110278,2175565,125395 +110281,0188766,53168 +110284,2008693,168767 +110286,2059171,155084 +110288,1980246,97733 +110293,1606674, +110295,1043726,188207 +110297,2281587,145220 +110310,1091744,36861 +110312,2356999,111250 +110314,0463352,14408 +110316,0792975,42802 +110318,0267440,117905 +110320,1236242,40172 +110322,2402105,192134 +110324,2852470,186997 +110326,0322422,218931 +110328,2139843,89237 +110330,1801061,119360 +110337,2942522,215743 +110339,0064725, +110342,0227066,64527 +110346,1747958,190955 +110348,2524674,208277 +110350,3203290,256561 +110352,0377309,9753 +110354,1998367,229613 +110366,1568335,51486 +110368,0045541,199463 +110370,2535664,213386 +110372,0058981,38655 +110375,0353252,34079 +110377,2836252,252607 +110380,1815852,110112 +110387,2390962,209799 +110390,1885300,138222 +110399,0028646,60438 +110403,0039210,224040 +110405,2069955,146955 +110407,2317225,174675 +110409,0013741,94344 +110412,2262010, +110415,0389817,65170 +110417,0072136,29854 +110419,0383551,246007 +110426,2101570,256474 +110431,1079360,80973 +110433,2106550,170689 +110435,0073697,34459 +110437,1492842,183433 +110439,2536306,180960 +110441,0076890,56533 +110445,1219817,38626 +110447,2081260,96769 +110449,2023714,95177 +110451,2235779,193612 +110453,2223990,200505 +110455,0469146,52762 +110457,1753693,178603 +110459,2036376,94887 +110461,2364975,191294 +110478,0315312,69492 +110482,1833879,131916 +110484,2378587,211078 +110486,0044418,40715 +110491,0132893,70417 +110493,1619813, +110497,0028413,264482 +110501,2265171,180299 +110503,1845838,158091 +110505,2234429,171776 +110508,0103116,40740 +110510,0079980,64349 +110512,0009893,48591 +110515,0072229,46667 +110531,1596565,77528 +110533,1436336,44369 +110535,0060186,39214 +110537,0055809,35057 +110539,0099172,67633 +110541,0106475,25706 +110546,0477449,148778 +110548,1759682,104250 +110551,1827372,88237 +110553,1872181,102382 +110555,0057960,42733 +110557,2131523,127495 +110560,0070788,26831 +110562,0075014,197611 +110564,0070704,42711 +110566,3139072,251519 +110568,0060580,74241 +110580,0105632,47628 +110582,2234419,130745 +110584,1697996,185602 +110586,2234003,157832 +110588,1753846,127540 +110591,2388715,157547 +110593,0044981,24006 +110597,0043286,45588 +110599,0167431,94248 +110601,0051020,71990 +110603,2528814,249660 +110607,1545986,35074 +110609,0021223,156320 +110611,1179031,244509 +110613,0044013,62661 +110627,0071610,98136 +110629,0027272,268875 +110631,0109098,50767 +110633,0022639,161297 +110635,0055781,211603 +110637,1410295,30844 +110639,2316801,197796 +110641,0431077,61492 +110643,1848824,73215 +110645,2404738,179538 +110647,0071780,172340 +110649,0076175,25388 +110651,0078007,47956 +110653,0906777,127702 +110655,2357291,172385 +110657,0104878, +110669,2246565,262481 +110671,1327702,202183 +110673,2425852,196027 +110675,2101569,226448 +110678,2458776,214314 +110686,0965375,32005 +110696,0054701,119926 +110718,2258345,214030 +110730,2209764,157353 +110739,0064881,153641 +110744,0065974,77333 +110746,1870419,167575 +110748,1296899,59726 +110750,1929263,236751 +110752,0061988,42697 +110761,0020713,166621 +110763,0067377,84465 +110765,3203890,219553 +110769,0163563,25951 +110771,2203939,193610 +110773,2828996,184345 +110779,0266041,242203 +110781,0279967,12242 +110788,0048239,113743 +110790,0195290,258369 +110792,2637720,29721 +110794,1121958,93122 +110796,2392326,209350 +110798,1194661,19063 +110800,3261740, +110802,2359712, +110805,0048124,139799 +110807,3142224,215656 +110809,1686821,203739 +110811,0235333,127016 +110813,1686042,199341 +110818,0066564,123961 +110820,0065979,95556 +110824,3188560,221737 +110826,1430612,254473 +110828,0804463,152792 +110845,0026139,112083 +110848,0045578,89547 +110850,0028665,43857 +110852,0036673,80918 +110854,0031121,130398 +110858,0087263,54752 +110860,0113939,85564 +110867,1783232,89584 +110871,2178256,168742 +110873,2113681,145247 +110880,0048420, +110882,2692904,210479 +110884,0224098,159403 +110889,0254703,46943 +110892,2281365,252143 +110895,2364066, +110897,1907614,126442 +110899,2401807,242310 +110916,0024625,38585 +110921,0024831,43901 +110948,2637994,211059 +110951,1701186,300940 +110966,3105418,293444 +110968,1921064,76649 +110970,1587877,44269 +110973,2319018,225564 +110975,1743922,137217 +110982,2991516,226269 +110984,2518926,192813 +111031,0419142,69054 +111036,0230832,22701 +111038,0083506,141643 +111040,1942787,137475 +111042,0054873,119593 +111044,1489248,51848 +111046,2315500,236417 +111050,1813609,197919 +111100,0021472,120837 +111103,2665626,245909 +111105,0065989,44721 +111107,0076715,61642 +111109,0070363,42472 +111111,0101542,71721 +111113,2004420,195589 +111115,1342378,33091 +111119,0067388,46845 +111124,1617207,49588 +111126,0064371,54919 +111128,0062285,195841 +111130,0078106,53223 +111142,1817276,177552 +111144,3111728,227425 +111146,3600760,258096 +111170,1582198,112287 +111226,2800964,201360 +111228,2525342,258476 +111230,1298564,272525 +111233,0076809,49158 +111235,1935156,191720 +111237,1979385,110958 +111245,1817081,174316 +111247,0201116,52531 +111249,2404181,205601 +111251,1951181,152599 +111253,1289451,39785 +111255,1280558,19703 +111257,0066844,30648 +111259,1361318,262338 +111261,0038593,53144 +111264,0088402,38980 +111266,1890373,82529 +111283,1672845,94478 +111285,0038429,26166 +111287,1929308,139519 +111290,2852376,186935 +111303,1152828,56967 +111310,0080868,48949 +111312,0865907,16931 +111314,0992993,36465 +111316,0057860,38281 +111318,1691832,44263 +111320,3014666,252680 +111329,1694118,105945 +111332,2379418,128237 +111343,0097409,197562 +111345,0065808,10244 +111347,0015768,55589 +111349,0028165,195522 +111351,0164983,54281 +111358,0075235,199715 +111360,2872732,240832 +111362,1877832,127585 +111364,0831387,124905 +111368,0021228,179818 +111370,0069452,90617 +111373,1707392,74505 +111375,2463288,187596 +111377,2396421,222724 +111380,3056202,223971 +111384,2359024,188166 +111387,2479800,192132 +111389,0780548,212231 +111401,0087328,42092 +111403,0101279,41781 +111405,0406280,215407 +111407,0084843,4269 +111409,0063835,54280 +111411,0202153,54284 +111436,3481550,263111 +111439,0884726,59981 +111441,2924484,249724 +111443,2883512,212778 +111445,0069986,94752 +111447,1328865,37848 +111449,2709784,209091 +111451,1382470,256922 +111453,0376215,41847 +111456,0039217,1840 +111458,0066839,49634 +111460,3087752,267795 +111462,0058954,69780 +111464,0046443,91456 +111468,1630061,89670 +111486,2294473,120852 +111499,0201922,54306 +111505,0064606,40721 +111507,0055074,96912 +111509,2082156,205225 +111515,0072439,54307 +111517,3114132,253251 +111519,3725278, +111529,1684226,113833 +111542,0048957,113154 +111544,3335378,238006 +111546,0278622, +111548,1791680,182848 +111551,2309961,210947 +111553,2352488,158936 +111566,2402539,138544 +111568,2254364,158864 +111570,2241471,214990 +111578,0068504,95551 +111583,0075993,121890 +111587,2904608,260202 +111589,2904626,260339 +111592,2507128,171795 +111595,0251094,49514 +111601,3727486,272543 +111603,1966396,213270 +111614,0400297,173151 +111617,1086772,232672 +111622,1980929,198277 +111624,3082826,253270 +111626,3219678,276122 +111628,1680138,56171 +111630,1830713,166822 +111632,0035978,75950 +111638,0251072, +111640,1009012,17156 +111642,2515242,204784 +111644,2466830,169864 +111647,2420006,169853 +111649,0027959,147726 +111653,0079631,65603 +111655,0070633,33543 +111657,0078034,47901 +111659,1587310,102651 +111661,1976000,192149 +111663,2784512,254474 +111667,0049870,148021 +111680,1483324,194722 +111689,0066017,92269 +111694,0064598,77925 +111696,0078846,5157 +111700,0049264,118283 +111702,0050963,176670 +111704,0051519,46615 +111706,2343549,190950 +111716,0042219,32929 +111722,0827425, +111726,2337576,258893 +111732,2301592,137698 +111734,2234261,209249 +111740,0184799,99312 +111743,2557490,188161 +111745,0055819,109133 +111749,0075848,42200 +111752,1362045,31185 +111755,2233406,252147 +111757,0390109,51069 +111759,1631867,137113 +111762,3253650,228339 +111764,2800240,262391 +111766,0069086,185949 +111774,2555202,173192 +111776,0048789,60643 +111778,2167266,203819 +111781,2381249,177677 +111783,1720619,106938 +111785,1079372,20880 +111787,2768874, +111789,0076119,64923 +111793,0066900,75130 +111795,1647668,198185 +111797,2070874,255497 +111800,2429074,174323 +111809,0276578,281908 +111811,1517249,173908 +111813,2504022,159012 +111815,2290567,248376 +111817,2402085,192133 +111838,0055569,62876 +111840,0245530,54544 +111842,0092609,181753 +111844,2996648,255268 +111846,0041144,256118 +111848,0045544,91245 +111850,1783392,79778 +111852,2205904,207021 +111854,0069516,120653 +111856,1975159,82657 +111861,2210463,185471 +111868,0035675,42886 +111872,2994646,245175 +111874,0068850,46941 +111878,3060338,267752 +111880,2327430,136786 +111882,0143751,234154 +111885,0012645,175339 +111887,1776086,220494 +111899,0061927,163376 +111901,0003772,92349 +111913,2560102,248212 +111915,2308260,248688 +111921,2582846,222935 +111924,2319580,209185 +111929,1090360,40458 +111931,2111392,174682 +111944,1425922,175541 +111946,2510268,220820 +111961,0910852,105875 +111990,1671582,79906 +111993,2368672,140870 +111995,1781840,94671 +111997,0061784,40485 +111999,0026891,93057 +112001,0049693,106042 +112003,1831806,128841 +112006,2112281,82881 +112013,2820226,202238 +112015,0056796,61221 +112019,0044333,44631 +112021,0032206,43808 +112023,0029872,104556 +112056,0012281,131366 +112060,0076500,50379 +112062,2018086,110428 +112064,0064820,41943 +112066,1853614,100271 +112070,2172584,157851 +112072,1012729,1731 +112076,1822255,78463 +112078,0069515,68247 +112081,0079894,41415 +112083,3264024,250651 +112085,2352802,201066 +112087,2414766,218425 +112089,1766094,93837 +112091,1715336,227700 +112093,1702004,83406 +112108,0115584,208182 +112112,2246887,228028 +112116,0922617,126676 +112118,2304517,114574 +112138,2294449,187017 +112163,2670642, +112165,2465578,244088 +112171,0455944,156022 +112173,1570583,84201 +112175,1646971,82702 +112177,2367066,228915 +112179,0067593,102272 +112181,1454607,38195 +112183,2562232,194662 +112185,1186357,48573 +112187,1107948,50028 +112193,1753584,112160 +112204,0046782,275573 +112206,0046792,38962 +112210,0088816,226630 +112214,0028651,240594 +112226,1860152,87368 +112229,2141777,209780 +112236,2689966,177703 +112240,1153693,250605 +112245,2334896,159770 +112247,0066080,119575 +112249,0067451,172475 +112251,0079917,86283 +112253,0058990,28497 +112255,1828247,21974 +112257,0062026,146521 +112261,0038289,28006 +112271,1059898,164379 +112273,1588358,51976 +112275,2112152,140456 +112277,2386278,146243 +112279,2481248,250577 +112281,2102499,159701 +112283,0070297,26480 +112288,3125472,259943 +112290,1065073,85350 +112293,1323973,253279 +112297,3485880,256593 +112299,2082415,133558 +112301,0054367,86297 +112303,2239832,184098 +112307,0029659,43868 +112309,0807028,31880 +112316,1742044,209451 +112320,1602617,77444 +112326,0119781,27460 +112328,0056350,58733 +112330,2287655,139575 +112332,0061447,44769 +112334,3268458,250658 +112338,2481202,159137 +112340,0965400,90829 +112342,1343113,140783 +112351,2290067,262390 +112353,0064329,110823 +112355,0048250,151431 +112359,0042053,84364 +112365,0067382,140825 +112367,1220553, +112370,2109248,91314 +112381,2374902,215042 +112383,0073646,242102 +112389,0106317,74629 +112395,0033383,72473 +112399,2714900,169607 +112404,2785288,204968 +112406,3778744, +112412,2027231,206192 +112416,1276940,21798 +112419,0038354,89187 +112421,1605717,171372 +112423,2377396,133411 +112425,0415141,13167 +112432,2990756,295958 +112434,2741806,176403 +112436,1931602,70706 +112439,0899109,43741 +112442,0075913,64976 +112444,0090322,80653 +112446,2649522,239163 +112448,2536612,288162 +112450,2398249,180296 +112452,3528874,248888 +112454,2357461,186988 +112458,0023495,212899 +112460,2980706,218836 +112463,0068281,100088 +112465,0072010,127091 +112467,0055459,88061 +112469,2405792,174319 +112471,0015498,120673 +112473,0853153,50032 +112477,1211353,79255 +112479,1302019,72951 +112481,3433074,262340 +112483,0079966,118887 +112485,0041387,43387 +112488,3375370,278878 +112493,0459131, +112495,2119463,174352 +112497,2103254,226486 +112501,0110222,15419 +112506,1129396,139406 +112508,0065393,219823 +112510,0070580,264723 +112512,1677561,64246 +112515,2321549,242224 +112517,0082769,28440 +112519,3449040,279661 +112538,0024895,29126 +112544,0348551,108636 +112546,1148198, +112548,0029949,114838 +112550,2844798,267999 +112552,2582802,244786 +112554,0070346,213635 +112556,2267998,210577 +112565,1540803,48375 +112577,0081758,92323 +112580,1294970,152790 +112582,2382298,250766 +112586,1754838,88059 +112589,1530991,49445 +112591,2194328,250705 +112594,0164550,159090 +112596,1633224,257974 +112599,1971397,184866 +112601,0074419,104528 +112603,0066738,204007 +112606,0056593, +112610,2941330,252200 +112614,0064310,121401 +112621,0115895,49104 +112623,2103281,119450 +112625,1869721,83721 +112637,0073835,32053 +112640,1562871,41517 +112642,3141912,258750 +112648,0081405,335340 +112650,0826756,26823 +112653,3445270,250700 +112655,1763264,123109 +112657,1595061,89873 +112663,0035700,129974 +112665,2016872,102668 +112667,2544734,169298 +112672,0057905,128437 +112674,1186201,39155 +112689,3078242,211052 +112693,0032396,109716 +112705,0048991,29058 +112710,0051019,80264 +112723,0069786,32143 +112725,0036677,43499 +112727,2377322,184346 +112729,1587309,168426 +112731,2887322,224076 +112733,1090665,121135 +112735,3244512,265349 +112741,2964360,209920 +112743,1067578,85788 +112749,2465146,253235 +112751,3572132,259233 +112753,2900822,227877 +112759,2310792,254143 +112762,0775480,44588 +112764,2675794, +112767,2182256,253310 +112770,0605145, +112772,0094794,40222 +112774,0070673,106402 +112776,1773314,73250 +112778,3430702,206574 +112780,0277944,71704 +112782,1935104,262267 +112784,0129775,148243 +112788,1956620,225886 +112790,1599296,105789 +112792,0076502,64627 +112798,0082902,98094 +112800,0060899,101308 +112802,0398037,65096 +112804,2884206,244267 +112807,0098492,30146 +112809,0856824,21680 +112811,2007387,79553 +112814,1758842,238067 +112816,0295671,53482 +112818,2975578,238636 +112840,0033439,146919 +112842,0049034,43257 +112844,0386346, +112846,0039231,89551 +112850,2380331,214075 +112852,2015381,118340 +112854,0026406,132263 +112856,0352621,63358 +112864,0364146,53870 +112866,2733258,208284 +112868,2910814,242095 +112871,0977642,74294 +112877,0034558,99324 +112880,0052662,121234 +112882,1740476,145668 +112888,0247232,298158 +112890,3110960,262958 +112893,1663675,200051 +112895,2885364,185460 +112897,2333784,138103 +112903,2574698,250551 +112905,2215477,235984 +112907,3175038,276935 +112909,1198101,37737 +112911,1267297,184315 +112913,3872778,282268 +112921,2956808,279414 +112923,1763194,79773 +112925,1964773,163710 +112929,2371834,150897 +112931,1348327,44527 +112938,1107807,56329 +112940,1972571,157849 +112942,0033059,47401 +112944,2388705,159667 +112946,2870708,231576 +112948,0073654,12470 +112950,0018935,158219 +112953,0055583,87966 +112955,0007819,38691 +112957,0012499,44405 +112959,2247432,172542 +112961,0076749,46853 +112974,1650393,156713 +112976,1764664,114577 +112978,0284741,34469 +112980,1436572,70005 +112982,0028676,168031 +112988,2106529,113091 +112990,1951076,136616 +112992,0055953,29313 +112995,3089978,191293 +112999,0263363,162372 +113001,2252680,215848 +113014,0044466,109913 +113016,0056897,108003 +113020,0019504,50916 +113022,0080100,54013 +113024,0051136,25722 +113029,0364457,40990 +113033,0082973,21393 +113035,2573858,215962 +113037,1185242,31896 +113039,0395565,70476 +113041,1258134,26566 +113043,0371907,60106 +113045,1235827,35837 +113048,0000014,82120 +113062,3186318,244536 +113064,2967006,242088 +113066,0104285,60316 +113068,2176786,199977 +113071,2183034,238603 +113073,1783422,149893 +113080,1322333,57331 +113083,0021542,80705 +113089,2555268,169760 +113092,2388558,262904 +113099,2378177,161056 +113103,2626350,243683 +113105,0036189,118953 +113107,0128274,46076 +113112,3214002,269100 +113122,3822614, +113126,1151833,116495 +113128,0030676, +113130,3743126,284711 +113132,0025346,53865 +113139,0010057,53425 +113143,0090630,27270 +113145,0049569,204213 +113149,0036602,92848 +113152,0376874,63334 +113159,2581244,244566 +113162,0046431,7983 +113170,0926036,69325 +113186,2402603,209269 +113188,2345737,157845 +113190,3793686,261813 +113203,0066365,4992 +113205,1612608,44155 +113207,2473602,239566 +113209,0388201,192143 +113214,2518788,217316 +113216,3404158,242454 +113218,1954843,167948 +113220,3091304,212849 +113223,0005339,38730 +113225,2870756,229297 +113227,0089072,61991 +113230,0421108,61050 +113232,0407038,36964 +113234,0078389,60287 +113236,0071095,78075 +113238,1972819,139997 +113240,2758880,265169 +113244,1395808,159160 +113246,0024762,53576 +113250,2675914,252822 +113252,3504048,253306 +113254,2077908,94196 +113256,0297314,64934 +113261,0086263,84986 +113263,0061343,18628 +113275,2980648,228194 +113278,3139086,242643 +113280,1967697,192623 +113282,2509922,133786 +113284,0037534,117959 +113286,0042664,30195 +113290,0069702,107891 +113300,2914838,193722 +113302,0076630,67822 +113304,2385558,201361 +113306,0074521,107828 +113309,0067134,42676 +113313,2503154,244610 +113315,3576084,261825 +113323,0080443,120212 +113325,0043372,161602 +113337,1793223,106337 +113343,0271136,47517 +113345,1617661,76757 +113348,1291150,98566 +113350,2048770,273404 +113352,3621802,296778 +113354,3479180,254446 +113358,0150021,56085 +113364,2481480,243935 +113370,0060742,112999 +113374,0127710,48347 +113376,2452470,137876 +113378,0435651,227156 +113380,0402505,62045 +113394,2140577,174337 +113416,1396523,286709 +113420,1059238,53544 +113428,0285698,210739 +113430,1568924,54487 +113432,0492488,81543 +113434,2520808,143295 +113449,0034622,42825 +113451,0026922,53860 +113453,1924435,193893 +113457,0075801,5800 +113459,1262990,152756 +113464,2669646,240679 +113466,1974254,124069 +113468,0049117,64129 +113470,3564534, +113472,0303915,30057 +113474,0071175,57868 +113476,0058622,42796 +113478,0067894,146428 +113497,2436046,198436 +113499,3606698,314285 +113501,3638012,269650 +113503,1718158,124972 +113505,0062782,22937 +113507,0059241,74767 +113510,1401636,69225 +113513,1033631,55225 +113515,0044052,292893 +113521,2091325,258805 +113532,3097204,242022 +113534,1064884,22555 +113536,1282156,36138 +113539,1349457,85547 +113541,0091892,162532 +113543,0118805,178606 +113545,2138180, +113549,0065522,56354 +113555,0110168,81828 +113557,3677466,275619 +113559,0028021,43877 +113561,0073903,112087 +113563,0050840,292294 +113565,2383068,211067 +113567,1828959,212769 +113573,0458481,189 +113575,2114461,255491 +113577,0051844,272261 +113582,2479384,213417 +113585,0034732,65210 +113604,1355630,249164 +113606,0440751,33209 +113608,0054750,257377 +113612,0075143,86997 +113614,0056818,122698 +113618,0173629,358199 +113630,0073386,290274 +113632,1790867,75785 +113634,0945365,123561 +113636,1765980, +113638,0195402,95372 +113640,2517658,265010 +113642,2043933,157823 +113644,0063636,31937 +113646,1492841,176069 +113648,0062751,85765 +113661,1826593,82760 +113663,0048983,44022 +113670,0800238,360380 +113674,2191888,211065 +113686,0092688,198460 +113692,0069815,76329 +113696,1545754,209244 +113698,0099017,41810 +113701,0054753,203245 +113703,2758890,197696 +113705,2737050,221902 +113707,2901962,257668 +113709,0027131,29705 +113711,1808223,60228 +113715,3605002,259761 +113717,0061140,56702 +113719,3330828,297167 +113721,1852805,288427 +113723,0123920,245184 +113725,0336618,83310 +113739,0079936,98355 +113741,2866360,220289 +113743,0021780, +113746,2515164,262357 +113749,0038056,38467 +113751,1582465,174326 +113755,0103282,91207 +113757,0029884,127812 +113760,1173686,25747 +113765,2004271,180856 +113767,3005242,261101 +113769,2799166,282813 +113771,1988621,124470 +113773,1372746,39398 +113775,1663207,209189 +113778,3461828,273621 +113780,2870612,256274 +113783,0063093,89092 +113790,0428959,64973 +113793,0948465,64522 +113795,3813916,285692 +113798,0036706,38462 +113800,0034985,40951 +113803,0019684,47571 +113816,1522196,273656 +113829,2756032,242090 +113831,1227170,46737 +113834,3981072, +113836,1630562,119700 +113840,2520394,189277 +113843,2507550,281468 +113845,0373193,135800 +113847,0336699,64683 +113849,1682186,88573 +113851,2093990,247182 +113853,2772092,207780 +113855,1714046, +113857,0949770,2692 +113860,2190568,254775 +113862,2980592,241848 +113864,0208579,187458 +113866,2345613,126172 +113868,2174896,250777 +113872,0115826, +113889,2123146,94590 +113891,0073239,76846 +113895,0032157,242683 +113898,0283452,98250 +113902,0059417,198567 +113904,2088903,174314 +113906,0071200,40218 +113908,2452236,173300 +113911,0120454,116569 +113924,0070472,147106 +113933,0070578,56364 +113938,3889036,285597 +113943,0056082,117969 +113945,0041278,49503 +113947,0019067,203024 +113949,0072596,201283 +113951,0088689,177335 +113953,0023758,242131 +113955,0021647,118245 +113968,1282015,35568 +113970,3595024,329227 +113972,0308188, +113974,0086488,76047 +113976,1891917,291162 +113981,0035681,285946 +113983,0029941,242475 +113989,0026180,286402 +113991,1632481,57277 +113997,0063668,52686 +113999,0106290,124295 +114001,0080755,47860 +114003,3199456,238561 +114007,1726592,204922 +114009,3410666,288916 +114011,1046963,267539 +114013,2800038,199933 +114015,0034814,212530 +114017,0052673,216859 +114028,3169706,234200 +114033,2106361,216282 +114035,1666335,283384 +114040,1564368,188839 +114042,2343793,192145 +114044,3177316,254191 +114046,2920808,244517 +114048,0036419,80853 +114060,1600196,154400 +114062,1559036,80318 +114064,0049616,98116 +114066,2920540,246400 +114068,1826730,250650 +114070,3983732,288130 +114072,1340803,184322 +114074,1571249,244772 +114078,2231489,287590 +114080,2095004,169314 +114082,0064064,3171 +114085,0093855,27740 +114087,0057820,117992 +114093,1618372,83188 +114095,0039244,121975 +114119,3004788,180252 +114122,0087150,135418 +114124,0077986,88285 +114126,0430916,27286 +114128,0090779,71181 +114130,0118247,2965 +114138,0057920,32109 +114140,0044488,72472 +114142,0050233,33814 +114146,0034586,29328 +114161,1264068,16091 +114164,1634286,96600 +114166,0068663,72114 +114170,2207870,179799 +114172,0017374,269710 +114174,2278392,196325 +114177,0087777,87151 +114180,1790864,198663 +114182,2011159,136835 +114184,2994190,244506 +114186,1185598,54336 +114188,0021140,166643 +114191,1270612,171061 +114193,0444875, +114195,0338357,55222 +114197,0361959,13434 +114199,0002054,193827 +114214,1772980,79611 +114217,0032315,26376 +114219,0106636,109565 +114232,0805188,34064 +114234,0079615,179519 +114236,1558865,16986 +114238,1969057,79016 +114240,0827990,343693 +114242,3062074,248504 +114244,2717860,270302 +114246,0365907,169917 +114248,2960450,223632 +114250,2908856,282296 +114252,0072278,95966 +114254,3478510,261855 +114256,2917566, +114261,1906384,261770 +114263,3383040,265832 +114265,2034031,244264 +114267,0065439,60859 +114269,0067968,124019 +114271,0070193,85633 +114273,2915160,215935 +114277,2141751,245859 +114280,3108430,264767 +114282,3593932,285026 +114292,0043390,29835 +114327,0218966,287831 +114329,2725962,276843 +114331,1540880,26750 +114333,2137702,154653 +114335,0121731,32891 +114337,2417970,279967 +114340,3198484,211879 +114342,3630276,265189 +114353,0780134,13914 +114355,0991269,2195 +114359,1151827,12523 +114361,1206486,8948 +114363,1608334,84857 +114365,1858538,117464 +114367,0932661,19996 +114369,0096131,237202 +114371,0000942,127105 +114373,0072196,94069 +114376,0002381,42553 +114378,1786751,111479 +114380,0138353,182799 +114382,0076993,67493 +114392,2398231,264656 +114394,0102816,68004 +114396,1621046,230779 +114398,0032321,127798 +114400,0042324,87621 +114417,0129794,54561 +114420,0067976,38654 +114426,3244992,257451 +114431,0309506,116352 +114433,0294959,69559 +114436,3108158,251981 +114439,2402157,254904 +114453,1432078,18374 +114455,0063348,42648 +114457,0066927,42493 +114459,2238050,157825 +114461,0309566,116351 +114464,0074621,17200 +114486,2125501,282041 +114489,1934195,198182 +114492,3569356,292483 +114494,3042408,284427 +114497,2229511,222461 +114503,0079204,287877 +114510,0276977,60828 +114514,1886502,64835 +114535,0126005, +114550,2818178,270668 +114552,0787474,170687 +114554,2576852,149871 +114556,0116014,37702 +114561,2387589,241261 +114563,1745710,174324 +114565,2915662,219054 +114567,2082155,199415 +114569,0047904,27212 +114571,0018937,110887 +114573,0044662,84540 +114577,0061334,205004 +114583,0321750,69328 +114585,1090256,116350 +114587,0013992,47703 +114591,0050762,20372 +114593,0052939,102913 +114595,0016691,102024 +114599,3249158,209440 +114601,1371150,239678 +114604,0449786,93115 +114617,1790825,179822 +114620,0459072,53042 +114624,0036625,295507 +114627,0208502,15916 +114629,2460426,140481 +114631,0059488,142375 +114633,0082591,123742 +114635,3521134,267480 +114640,1629439,57812 +114652,0437123,126141 +114659,2102496,157424 +114662,2179136,190859 +114667,2093995,263855 +114670,3099498,246403 +114673,0128051,42416 +114676,1348318,37630 +114678,1626146,254375 +114680,2771800,210911 +114685,0140603,65485 +114687,0254235,58509 +114692,3263996,250666 +114694,0052141,42581 +114696,0049322,43259 +114698,0202945,140513 +114700,1745787,271397 +114702,1847541,215928 +114704,2369317,253312 +114707,1528071,149509 +114713,3322940,250546 +114715,2545088,158997 +114721,0083701,26730 +114723,0036618,44445 +114725,0124148,104378 +114752,0058983,22758 +114754,0062957,28690 +114756,0265752,43749 +114758,2409818,151368 +114760,2955096,244534 +114762,2140619,286554 +114764,0147310,91878 +114766,0074768,56386 +114775,0106539,52315 +114777,0074300,26615 +114791,0072844,84062 +114793,1715210,234284 +114795,0829150,49017 +114799,0068356,88375 +114805,2125467,98069 +114807,0028707,38455 +114809,0027439,33386 +114814,0444505,1285 +114818,2494280,227300 +114832,0201057,107034 +114834,0097498,83613 +114836,0100637,108933 +114838,0087472,63360 +114842,0083727,118257 +114845,0074701,169250 +114847,1971325,262543 +114849,1085492,241254 +114852,1807944,152745 +114854,1961438,100341 +114856,1376213,227707 +114859,0028708,25148 +114861,0027440,28044 +114873,0065036,33691 +114875,0065591,27371 +114877,0042528,109364 +114883,0055266,107928 +114886,1842356,131887 +114888,0097527,38084 +114891,1563704,43922 +114893,0090522,264330 +114895,0309807, +114898,0022149,156360 +114900,0043671,75710 +114902,1070887,39958 +114904,1650535,73818 +114906,0406046,47525 +114909,4047734, +114922,1052027,25450 +114925,2326612,244761 +114928,2396721,251852 +114931,2233983,153532 +114933,2901736,188598 +114935,2397535,206487 +114945,1181840,204436 +114947,0067315,8063 +114958,2371399,293271 +114963,0322250, +114980,2349460,206284 +114984,0052131,53187 +114995,2319632,254611 +115004,3202968,297263 +115006,2351371,125607 +115008,1235926,53222 +115011,0902999,46247 +115017,0135187,79818 +115021,0118582,81246 +115023,0092530,52318 +115027,0214483,271007 +115038,0088118, +115040,0090610,21394 +115042,0093524,26111 +115060,0187152,108798 +115065,1639826,146381 +115068,0163985,108648 +115071,3766424,273641 +115075,0120254,54113 +115078,0033378,169883 +115080,0078884,34658 +115109,1523317,62967 +115111,0379000,48585 +115119,0498121,110073 +115122,3416742,246741 +115130,2192016,276496 +115133,3096440,298573 +115135,1863192,282376 +115137,1570982,37925 +115139,0041238,43398 +115143,3645982,261038 +115145,1397511,23996 +115147,1972779,239571 +115149,2911666,245891 +115151,2556874,208869 +115160,0056625,62655 +115162,3202890,286654 +115164,1783285,91322 +115166,1254249,38551 +115170,1872194,205587 +115172,3729920,157829 +115174,2639344,244268 +115176,0049869,15377 +115178,0050714,35847 +115180,1180329,256 +115203,1778338,295538 +115205,4067256,293205 +115207,0351382,36072 +115210,2713180,228150 +115212,3647110,298317 +115216,2720680,266285 +115218,1077394,75007 +115220,2095649,215211 +115229,1423636,224282 +115231,2170593,239563 +115233,0276819,250989 +115235,2693664,215379 +115238,1087858,16049 +115240,3283556,252102 +115242,1329404,203186 +115244,1928337,126323 +115247,0027441,33387 +115249,0032324,38457 +115251,0031147,33388 +115254,0021733, +115256,0031148,33389 +115258,0029984,33392 +115263,1811293,147923 +115277,0187375,62692 +115279,0082610, +115283,0093419,115232 +115285,3343136,275318 +115287,2190838,156597 +115291,1663187,54557 +115309,0149215,28302 +115333,0032325,38458 +115335,0026198,33393 +115337,0031149,33394 +115339,0033458,38461 +115341,0036709,38463 +115343,0028709,38454 +115348,1717724,81707 +115351,0209453,47455 +115353,0229957,74276 +115355,1139643,259442 +115357,0772172,22072 +115364,0107289,36323 +115373,2916510,204762 +115376,0049013,28437 +115379,0097456,124124 +115381,1698641,218778 +115386,0022755,267333 +115388,0024969,267336 +115403,3676596,284785 +115409,0050213,35017 +115412,0048334,117869 +115414,2467046,218043 +115417,0209256,47454 +115419,0095590,326038 +115421,0072342,76207 +115423,1853620,115214 +115437,2616810,245844 +115439,0339976,118658 +115441,2316325,292445 +115460,1754228,224946 +115463,0497351,74790 +115465,3273636,285025 +115467,3518988,253292 +115469,0190157,161426 +115471,2960930,265016 +115473,1337034,91237 +115475,2077721,127862 +115479,0044209,61138 +115502,2509850,289727 +115504,2510434,258193 +115518,0062006,39262 +115522,0057970,31275 +115524,0100931,142946 +115526,0068290,39263 +115529,2942250,299203 +115531,0078467,2813 +115534,1204977,242512 +115538,3511812,273997 +115540,3288290,250578 +115545,0166817,274127 +115556,0430164,15021 +115558,0116728,46314 +115565,1621429,54445 +115569,2872718,242582 +115571,3164988,252457 +115574,1951095,152736 +115598,0032263,3937 +115600,0069535,129943 +115602,0072902,94513 +115604,0084046,129945 +115607,0112545,41097 +115609,0109553,51576 +115611,0259308,36523 +115617,2245084,177572 +115620,0016629,27501 +115622,3439114,298538 +115624,1407972,49706 +115629,3253930,236735 +115631,3120508,241742 +115633,0426911,31446 +115635,0045533,31024 +115653,0052639,115549 +115664,2262227,228326 +115667,1638002,200727 +115669,2992146,217923 +115671,0035777,69017 +115676,2934696,304850 +115678,3104818,225044 +115680,2669336,273271 +115682,0075432,143516 +115685,1795369,203912 +115687,0061931,17278 +115690,0473719,268735 +115692,0058977,169066 +115699,2165236,149087 +115701,0221097,72270 +115703,0286151,22599 +115705,0094847,81424 +115708,0088805,48504 +115711,2450264,173491 +115713,0470752,264660 +115715,3670792, +115721,2967988,284306 +115724,1324058,41558 +115727,0077292,40081 +115746,1520380,159304 +115748,0296874,48488 +115752,0045229,207752 +115754,0078335,27805 +115756,1846445,102851 +115759,0035784,41023 +115761,0073172,32069 +115766,1119180,12314 +115768,0131396,52996 +115770,3060492,253254 +115772,2621742,208286 +115775,3091380,212846 +115777,2991296,257874 +115779,0033676,38890 +115781,0045283,84944 +115789,0031828,87060 +115793,1582383,63140 +115795,3260514,268272 +115797,0034570,3576 +115801,0023881, +115819,3043542,234862 +115821,3900116, +115824,2473794,245700 +115826,2357003,224414 +115828,2459156,251232 +115831,3237082,278772 +115834,0032326,38456 +115836,0027442,33708 +115840,0355315,21250 +115864,0039478,37193 +115867,0367195,83228 +115869,0105924,83226 +115871,2481496,180305 +115873,0046161,92401 +115875,1850374,77887 +115877,2175842,116440 +115879,2033372,82424 +115881,0443424,98622 +115885,1861439,89888 +115887,1194624,17082 +115893,0212318,273510 +115895,0346223,103081 +115897,2171815,141950 +115899,0412412,93407 +115903,1440180,52475 +115907,1071880,14575 +115909,1575694,58626 +115911,0160706,20270 +115913,2417650,157058 +115915,0098691,41244 +115917,1266027,27310 +115919,0159603,55069 +115921,2268419,151933 +115923,2992552,260063 +115925,2769896,230731 +115927,0910865,14830 +115929,2091240,77499 +115931,2234550,264646 +115933,2114058,275287 +115935,0224267,42313 +115937,0397501,12450 +115939,0444845,61495 +115941,0116817,19164 +115943,0123950,19165 +115945,0167247,17337 +115947,0166973,31473 +115949,0197230,27653 +115951,2268573,196830 +115953,0324038,57483 +115955,0468988,42903 +115957,0080947,79365 +115961,2334841,171581 +115963,1746183,56212 +115965,0420982,20994 +115967,2268458,199575 +115969,1883092,178446 +115971,0848538,17108 +115973,3390572,280795 +115975,2298820,123366 +115977,0446610,97414 +115979,0340919,34995 +115985,0243278,67669 +115987,0281726,188102 +115989,0425743,41497 +115991,3263614,244563 +115994,0476240,99819 +115996,3348102,256311 +115998,2107814,130747 +116000,0076760,42542 +116002,2194326,159140 +116004,1403214,103686 +116006,1797396,56481 +116008,1403846,42757 +116010,2315558,177865 +116012,0055633,86616 +116014,0069158,101307 +116016,2070803,138754 +116024,1837613,297265 +116026,0417532,54625 +116028,1290135,25754 +116030,0177625,25752 +116032,0150111,25751 +116034,1745672,70575 +116036,0279730,25753 +116042,0051477,4956 +116044,0103961,55596 +116048,0346765,71114 +116050,0178130,64679 +116052,1091992,15460 +116056,1334521,39213 +116062,0097074,32079 +116064,0118870,119213 +116066,1821374,131475 +116068,0276868,59996 +116076,1680123,158426 +116080,0062384,41035 +116082,0065494,39239 +116084,0071646,26298 +116086,0091504,61415 +116088,0094002,65612 +116090,0005812,53412 +116092,0005044,53406 +116094,0004282,53387 +116096,0113642,244838 +116098,0114097,244836 +116100,0778652,154188 +116102,0896955,253959 +116104,0069300,199336 +116106,0109580,293028 +116108,0438974,256679 +116118,0035744,51649 +116124,0150176,25896 +116126,2224119,172008 +116128,2381931,201847 +116132,2005185,250608 +116136,3012698,289314 +116138,2802154,265180 +116141,2526152,147533 +116155,2395417,216156 +116157,0062331,140979 +116159,0116866,57563 +116161,1100089,87492 +116163,0074715,80680 +116165,0061208,68715 +116167,0021040,122047 +116169,1460743,44092 +116171,1227189,31418 +116173,0029894,63069 +116175,0028829,53853 +116177,0025731,196802 +116179,0027076,112501 +116181,0028138,31879 +116183,0029058,106635 +116185,0025880,81113 +116187,0034407,97193 +116189,0029395,43863 +116191,2004432,199534 +116193,0034328,95874 +116195,0029165,82239 +116197,0028767,90523 +116199,0800367,14459 +116201,0031104,41234 +116203,0026606,87925 +116205,1345772,57749 +116207,2249221,185567 +116209,0028191,140276 +116211,0023469,27341 +116213,1762399,77951 +116215,1679332,52010 +116217,1217213,75258 +116219,1216516,25475 +116221,0114759,50114 +116223,2287699,99785 +116225,1424431,41545 +116227,0100757,41842 +116231,0055864,59101 +116233,0044513,85518 +116235,0045644,292498 +116245,0099300,71034 +116251,1386604,50119 +116253,0270291,17699 +116257,0795361,14666 +116259,0038427,61856 +116261,1238834,36597 +116265,1894561,105528 +116267,1831617,57573 +116271,2229095,134688 +116275,0867149,15501 +116279,0443474,18434 +116281,0470993,16080 +116283,0061136,232866 +116285,0072829,89602 +116289,0086199,74295 +116291,0080373,101330 +116293,0096056,109809 +116295,0056964,59838 +116297,0211792,2089 +116299,3776288,290729 +116301,2403558,293633 +116305,0254676,152943 +116307,1198156,290542 +116311,0042352,52364 +116313,0092802,57738 +116315,1170350,24091 +116317,2093977,183662 +116321,0035770,72103 +116323,0040257,20362 +116331,0112765,25391 +116341,1251752,64372 +116343,1151813,31775 +116345,2910342,255476 +116351,0038449,38470 +116387,0082280,125257 +116397,1772264,207933 +116399,1362118,49585 +116401,1260596,36407 +116403,2069100,136743 +116405,0160345,238203 +116407,0063170,107413 +116409,1527052,205819 +116411,2991224,238628 +116413,2870808,260001 +116415,3546114,286817 +116417,0063171,57875 +116419,2968804,256092 +116421,0122564,198225 +116423,2836524,248870 +116425,0311060,183108 +116427,0035617,61525 +116429,0022619,156317 +116431,0059520,145762 +116433,0416470,127375 +116435,0940813,299313 +116439,0014760,148326 +116441,2948472,222772 +116447,0062863,25553 +116449,0111770,107682 +116453,2463512,209271 +116457,0027726,195068 +116461,0122494,52989 +116463,1411276,33570 +116465,0409379,172226 +116467,0042608,91343 +116469,0110256,40661 +116471,0017029,188066 +116473,0022026,156356 +116477,3203462,230743 +116479,0084242,85910 +116481,2155337,290862 +116483,2801746,199851 +116485,2107835,112735 +116487,1810861,96239 +116489,2318625,128154 +116491,2222394,180147 +116493,2093270,227094 +116495,3100636,244801 +116497,2332865,141152 +116499,1239462,25353 +116501,2382090,193223 +116503,2282016,272692 +116505,2043932,79723 +116507,1127702,50400 +116511,0029817,258070 +116515,0049515,68097 +116517,0020210,264309 +116519,0062089,2516 +116521,0087864,251260 +116525,0028420,87799 +116529,1966566,203793 +116533,2071571,226948 +116539,2310109,249266 +116543,0021394,130813 +116545,0099978,35632 +116547,0048640,44888 +116549,0073726,11813 +116555,0050317,194393 +116557,0016258,99258 +116562,0063662,280134 +116564,0037461,28668 +116568,0033289,56154 +116570,0036554,108852 +116578,0002130,70512 +116580,0479008,73103 +116584,0038452,38471 +116590,1079980,30302 +116600,0059112,45256 +116602,0106763,57789 +116604,1212023,61233 +116608,1385543,257093 +116647,0027834,263915 +116660,2617828,167581 +116664,3268030,258358 +116666,0068502,30855 +116668,2832470,241842 +116672,0251656,32182 +116678,0277744,20053 +116680,0057608,47553 +116682,0087129,90652 +116694,1508661,65214 +116696,0036749,64075 +116698,0033519,38460 +116700,1436372,56929 +116702,0202152,40644 +116704,0070947,103236 +116710,0043153,34623 +116716,0059930,130474 +116718,0030947,37133 +116720,1399952,18122 +116722,3010660,240510 +116724,2036416,84111 +116726,1856014,82450 +116728,1890445,103972 +116730,1975146,207263 +116732,0025946,37128 +116738,1273207,77067 +116740,0390190,117007 +116742,1037850,20342 +116744,2007993,98344 +116746,2106383,273922 +116748,1430811,91316 +116750,0038458,34650 +116754,0059094,42734 +116756,0049130,62804 +116758,1261046,22515 +116766,0089065,202744 +116768,1272012,16639 +116770,1858481,104329 +116772,0093143,73091 +116779,3701804,291155 +116781,1247690,164251 +116783,0066980,88486 +116787,0076047,197489 +116791,0071270,59159 +116793,0063781,84352 +116797,2084970,205596 +116799,1791528,171274 +116801,3825638,287495 +116803,0485863,14808 +116805,1397498,34182 +116807,3013602,262551 +116809,0059076,38125 +116813,0060188,30972 +116817,1798243,244403 +116819,0915463,58760 +116821,1937226,81347 +116823,1951265,131631 +116825,0062363,48135 +116831,1258137,28019 +116833,0083931,41077 +116835,0091889,36132 +116837,0131636,28967 +116839,3062880,270403 +116841,2752688,222649 +116845,3784160,294959 +116847,3575800,273334 +116849,2751310,295315 +116851,0303668,58433 +116853,2180994,288281 +116855,1702014,237791 +116857,1976989,140222 +116859,2770480,188538 +116861,2261749,186161 +116863,0021273,56178 +116867,0021310,77412 +116879,0022660,20675 +116881,0022735,43075 +116885,0023181,114302 +116887,1528100,147441 +116889,1236471,46217 +116891,1361828,60479 +116893,1921149,206563 +116895,0756359,39298 +116897,3011894,265195 +116899,1179773,17234 +116901,4127138,298077 +116903,2391009,157305 +116905,2981768,212167 +116907,2381335,250657 +116909,0064747,55152 +116911,1077274,58700 +116913,0195232,78399 +116915,0221803,143451 +116917,0129602,183111 +116921,0135608,183113 +116923,0188773,183119 +116925,0035020,90978 +116927,0035259,52853 +116933,0032467,72638 +116935,2944454,232100 +116937,0050737,49431 +116939,0100912,9742 +116941,0099878,17009 +116943,2241605,167963 +116945,1495823,57106 +116947,1545328,165477 +116949,0090167,143453 +116951,3210258,244001 +116953,1525580,203179 +116955,0162046,183127 +116957,2402091,202573 +116959,0191310,162406 +116961,0191227,162437 +116963,0102940,21811 +116965,1253594,162442 +116967,1798638,162435 +116969,1787092,86532 +116971,0082084,55538 +116973,0100631,22585 +116975,0403778,203766 +116977,2096672,100042 +116979,2296935,233423 +116981,1054112,30449 +116983,0048139,128606 +116985,2064968,206821 +116987,0039441,55308 +116989,3904186,289575 +116991,2531282,284246 +117003,2210633,103528 +117017,0323808,79544 +117061,1720263,79475 +117065,2387408,258086 +117103,0069961,184061 +117107,3128900,261037 +117109,3534838,301566 +117111,0022251,82400 +117113,0032819,38459 +117115,2012665,80920 +117119,0954981,14524 +117121,1034306,15741 +117123,2235108,114750 +117125,1114723,13617 +117127,1206285,17893 +117129,0075666,40074 +117133,1055300,17808 +117136,1196956,209361 +117138,1273675,15199 +117142,1186803,14539 +117146,1885299,214096 +117148,1202540,22609 +117152,0477585,43768 +117154,2435458,288691 +117156,2492664,157380 +117158,1441083,128142 +117160,2403981,190870 +117162,2691734,285843 +117164,2078686,211411 +117166,2343621,248211 +117168,1690140,139930 +117170,2319797,166627 +117172,2375278,268174 +117176,2980516,266856 +117178,3139538,272602 +117180,1992147,182349 +117182,1757733,149940 +117184,0948530,13646 +117186,0032281,56152 +117188,0032651,66707 +117192,2986512,282848 +117194,2978462,227735 +117198,0032186,69060 +117300,1221207,100416 +117308,2247476,232679 +117310,2203308,192558 +117312,2926810,193726 +117314,2195566,228813 +117316,0068584,102410 +117318,0357668,20789 +117320,0876233,17175 +117322,0889595,40925 +117324,1092019,7267 +117326,1110209,15149 +117328,2207090,204768 +117330,2354215,201759 +117332,2330546,202215 +117334,3184934,283726 +117336,2978426,289153 +117338,1185264,15011 +117340,3985434,295087 +117342,0983909,13835 +117344,2363213,140818 +117346,1003052,18940 +117348,0996934,14866 +117350,0491046,45127 +117352,1235075,17780 +117354,0922547,19222 +117356,1043635,17143 +117358,1155705,36683 +117360,1027747,15542 +117362,1330607,18232 +117364,3455224,263614 +117366,1078931,23515 +117368,0484439,10258 +117370,0070672,32080 +117372,3704538,267806 +117374,2451742,159153 +117376,0146271,72933 +117415,3458776,250833 +117418,2113644,136459 +117420,1451423,48186 +117424,0069024,29596 +117426,0035800,98404 +117428,0883391,191037 +117430,0342965,17963 +117432,3115712,253256 +117434,2793490,254194 +117436,0065692,151679 +117438,3398268,242828 +117440,0862748,241868 +117442,1717715,119892 +117444,1865505,110416 +117446,2859246,304023 +117448,2865558,252391 +117450,1814701,142507 +117452,2256741,155890 +117454,0986361,137769 +117456,3125324,241771 +117458,0087730,54658 +117460,0084781,90816 +117462,0081677,40383 +117464,2215395,159121 +117466,1390411,205775 +117468,0063395,55317 +117470,1793931,66129 +117472,1558741,45368 +117474,2557256,105001 +117476,2494834,228445 +117478,1716759,80957 +117480,0092723,33838 +117482,0013386,114324 +117484,0006668,141868 +117486,0097104,101135 +117488,2191082,214081 +117490,0109078,24047 +117492,0112319,77348 +117494,0115505,81244 +117496,0115504,50291 +117498,2827320,230846 +117504,0087096,87235 +117506,0072860,22460 +117509,1739298,221240 +117511,3762944,303623 +117513,0064269,148430 +117515,2119396,80787 +117517,3093546,251736 +117521,0081552,61644 +117523,2062580,79151 +117525,1362518,100292 +117527,0928154,52444 +117529,0369610,135397 +117531,3106868,215032 +117533,4044364,293310 +117535,1967481,117678 +117537,1921068,129966 +117539,2602664,198130 +117541,1168639,46473 +117543,1194616,21861 +117545,3759416,170522 +117547,1827358,78646 +117549,3387648,297608 +117551,0384212,73452 +117553,1608368,158967 +117555,2593392,250643 +117561,1639397,294600 +117565,0061576,41608 +117570,0251382,42332 +117572,2402619,294538 +117574,1586753,63484 +117576,1508328,45167 +117578,1187047,9510 +117580,0999872,13610 +117582,2261434,184992 +117584,2343380,254435 +117586,1672091,43212 +117588,1282016,16877 +117590,2170439,227159 +117592,0196866,83451 +117594,1865346,139715 +117596,0042395,34651 +117598,0056993,29060 +117600,0089029,50571 +117604,0256639,44131 +117606,0037645,136525 +117610,0050323,68340 +117618,0016804,89059 +117620,0123808,237796 +117622,0080645,40102 +117624,0052749,143092 +117626,0050327,109441 +117628,1626139,84742 +117630,0104135,88107 +117632,1155060,180607 +117634,0041313,164073 +117638,1024724,27996 +117640,0034680,183190 +117642,1159984,35801 +117646,0214641,10473 +117648,0046935,34652 +117650,0466766,46302 +117652,0397401,21791 +117662,0041328,120785 +117666,0045718,43343 +117672,0134633,72892 +117676,1990216,102629 +117678,0112945,58058 +117680,0790653,140814 +117682,0787462,19554 +117684,0377057,37641 +117686,0122474,45120 +117690,0040321,33111 +117692,0302531,133831 +117694,1230372,63273 +117696,0076168,22124 +117698,0089741,161422 +117702,0051732,121250 +117704,0054021,116385 +117706,1806954,81182 +117708,0032788,121992 +117710,0279250,6110 +117712,0042769,96433 +117714,2395199,238589 +117716,0036794,171594 +117718,1912996,76815 +117722,0317522,155130 +117726,3397430,238185 +117728,0089629,31462 +117732,1826876,167935 +117736,0022802,78327 +117738,0023973,81110 +117740,3091272,211247 +117746,0051605,27446 +117748,0050483,134355 +117750,0031842,111750 +117752,0023584,81038 +117756,1714176,146946 +117838,2358592,219343 +117840,0202310,38636 +117843,1684911,254582 +117845,0189133,163068 +117847,0174719,49467 +117849,0115650,25518 +117851,1911658,270946 +117853,3354900,238222 +117855,1429448,75364 +117857,3213142,267355 +117859,1730760,299618 +117861,2883434,253331 +117863,2412568,268386 +117865,0175001,296136 +117867,2614684,252178 +117869,2809082,259610 +117871,3007512,256917 +117873,1306972,39849 +117875,2659190,173912 +117877,1355638,75491 +117879,2404171,278086 +117881,3316960,284293 +117883,0399222,40192 +117885,3801438,300441 +117887,1109624,116149 +117889,2499818,204965 +117891,1623660,135714 +117893,2300975,203834 +117895,4046784,294254 +117897,2017634,159100 +117899,1031658,302496 +117901,1942971,147778 +117903,0021799,99922 +117905,0010247,28526 +117907,0273850,89280 +117909,0285265,193411 +117911,0117419,93114 +117913,3919322,284995 +117918,0064797,150338 +117920,3091282,212843 +117922,2100546,79218 +117924,0130514,105770 +117926,2678448,169860 +117928,3622120,306650 +117930,1258123,35856 +117932,3625352,265449 +117956,0039479,137357 +117962,0040335,100257 +117964,0040761,43450 +117966,0041247,157283 +117977,0043772,80031 +117979,0042257,181876 +117981,0042851,27917 +117985,0043288,69784 +117987,0043721,123432 +117989,0045197,27884 +117997,0046387,64851 +118003,0047797,28909 +118006,0048001,68339 +118008,0047813,252721 +118017,0050649,191186 +118023,0052033,27261 +118025,0052780,185546 +118036,0055875,171075 +118054,0062534,82966 +118057,0065243,118337 +118082,1567437,244458 +118085,0058022,20886 +118087,0155028,185057 +118089,0066400,67869 +118091,0086149,139169 +118093,0079094,131194 +118095,2992220,230836 +118097,2089750,139380 +118099,1517238,41272 +118101,2345525,84154 +118103,2551396,276922 +118105,3596200,303742 +118107,3243196,257296 +118109,1705134,136476 +118111,2375597,257442 +118113,0061052,96846 +118115,3072182,240820 +118117,3068192,289416 +118133,2215113,99879 +118166,0091364,70966 +118173,0472219,20077 +118177,0068248,171308 +118183,0070012,86236 +118189,0085601,11616 +118193,0053889,266108 +118195,1834303,163870 +118198,2304915,250798 +118200,3311900,277846 +118202,3302820,282297 +118204,2845780,123581 +118206,1778931,253295 +118214,2977672,262088 +118220,0074881,189133 +118230,0073336,198171 +118236,1836099,74092 +118242,0069384,307114 +118244,4075578,306963 +118246,2452254,246860 +118248,1274586,297596 +118250,0098415,100110 +118252,2527186,210908 +118254,1468829,47259 +118256,2781516,262840 +118258,1319716,42057 +118260,2781832,207774 +118262,2375454,193040 +118264,2020110,82469 +118266,1528769,52009 +118268,1659612,169310 +118270,1865393,123107 +118272,2072220,181009 +118274,0091428,68590 +118276,0100586,58200 +118278,1235853,57387 +118284,0072791,2139 +118286,0208926,151730 +118288,2722780,171357 +118290,0117238,17135 +118292,0130515,44503 +118294,0493260,308792 +118296,0315488,63194 +118298,1024842,46760 +118300,2308733,134375 +118302,0083465,37176 +118324,1650555,100270 +118326,2543702,270005 +118328,1925518,110552 +118330,2078552,136278 +118332,1781812,86305 +118334,0102585,17792 +118336,1290099,74035 +118338,2328813,110402 +118340,0343827,255940 +118342,0415167,14228 +118344,0098375,39195 +118346,0108350,78247 +118348,0276580,188832 +118350,2724236,305276 +118352,0174772,190000 +118354,1216491,245916 +118380,2188717,183412 +118388,2330933,241448 +118390,0069442,4683 +118392,3069212,276690 +118426,0491811,96011 +118446,0050820,150108 +118448,0025227,48443 +118458,0455115,39928 +118460,0058541,116762 +118462,1570101,55322 +118464,1204341,65275 +118466,3204392,252511 +118468,0803038,158483 +118472,0060143,23076 +118476,0063379,46570 +118478,0078290,151024 +118482,0085438,124207 +118484,0075115,89652 +118486,0107958,42438 +118492,0081471,99361 +118494,0072008,96477 +118496,1814614,74018 +118500,0148615,104866 +118510,0194268,74417 +118512,0972785,15261 +118514,1232784,241953 +118520,0067565,58702 +118522,0079735,128555 +118524,0067487,42499 +118528,0078336,106970 +118530,0200215,42441 +118532,0115899,38366 +118536,0086438,121510 +118542,0075766,28844 +118544,0076176,118802 +118546,0072966,145677 +118558,0188082,105906 +118560,0061668,268662 +118564,0188277,48935 +118566,0185640,78566 +118568,0072123,101231 +118570,3699508,285423 +118572,2130270,253272 +118574,0106543,215016 +118576,0093964,69040 +118584,0074083,84425 +118606,0032408,104398 +118608,0034841,247437 +118610,0037566,145337 +118684,3486392,289728 +118686,1839642,214086 +118688,0040331,43441 +118690,0044579,212950 +118692,0165998,58414 +118694,0065693,74071 +118696,2310332,122917 +118700,1020072,273895 +118702,1809398,227306 +118704,0070242,29133 +118706,2261331,246080 +118708,0039031,225499 +118710,2567038,305127 +118718,0094317,60041 +118722,0105175,112054 +118734,0072448,18450 +118736,0072349,93142 +118742,0067084,29482 +118746,0066098,105078 +118748,0062712,98273 +118752,0060903,63260 +118754,0059601,56431 +118756,0057068,283281 +118758,0061870,103678 +118760,2652092,250538 +118762,0403935,308165 +118764,3591608,266782 +118766,2526846,298445 +118768,1816681,240982 +118770,0052393,241574 +118774,0021551,118134 +118776,2392385,304336 +118778,0065441,146121 +118782,0340110,15603 +118784,1782451,22285 +118786,0082193,83007 +118788,0412796,32624 +118790,1981637,76750 +118792,0435665,29293 +118806,2735760,228634 +118808,1462677,128264 +118812,0841128,74681 +118814,2139555,277547 +118816,0924468,30545 +118824,0203343,29542 +118826,0328945,9940 +118832,0458425,23523 +118834,0906325,24388 +118842,0094670,47057 +118844,0197256,65456 +118846,0839739,47491 +118850,0069464,72153 +118852,0272950,27739 +118854,2357472,144114 +118856,2122518,106685 +118858,0021969,136106 +118860,0091975,60629 +118862,2017486,137347 +118864,0050688,219043 +118866,3659786,295144 +118868,0038965,20000 +118872,2298394,295698 +118874,3797142,292191 +118876,1487931,172391 +118878,1339238,248785 +118880,2326554,252171 +118882,1286159,30174 +118884,2833074,280218 +118886,2833408,182528 +118888,0424934,20147 +118890,0148668,34505 +118892,0251070,26366 +118894,1599351,32916 +118896,3612616,265177 +118898,2937898,241239 +118900,2305051,228970 +118902,0271884,59940 +118904,0426138,68750 +118908,0095388,24486 +118910,1018877,28791 +118914,0464799,15056 +118916,0115392,2699 +118920,2421956,253290 +118922,2507280,174678 +118924,2784678,284296 +118930,3823690,308571 +118932,0893381,311021 +118934,0039376,246213 +118936,0047887,127817 +118938,0033865,210126 +118940,0057912,246648 +118942,0032271,132038 +118944,0050534,148176 +118946,1816597,94818 +118948,0051923,162755 +118950,0045028,223243 +118952,0044958,51406 +118954,0055227,214948 +118956,0056185,218658 +118958,0059471,211017 +118960,0041169,128679 +118962,0067813,215061 +118964,2317090,255496 +118966,0069318,40210 +118968,3003800,266044 +118970,2275946,190469 +118972,1572306,294308 +118974,0058512,292063 +118983,0118167,61086 +118985,1126590,87093 +118995,0062914,205349 +118997,2180411,224141 +119013,0122998,285532 +119027,0075260,61925 +119029,0076753,52914 +119031,0076026,255906 +119035,0076754,50758 +119037,0078312,52913 +119039,0079943,52238 +119041,0077130,165159 +119043,0078802,62715 +119045,0081689,127760 +119049,0080606,62725 +119051,0082256,46001 +119053,0161389,58083 +119055,0083812,52113 +119057,0083715,11613 +119059,0087133,53342 +119061,0090601,9807 +119063,0200030,82083 +119065,0196931,17681 +119068,3179568,243684 +119080,1012757,35069 +119082,0203302,257561 +119084,0203725,257563 +119086,0163632,308528 +119126,2409300,171846 +119129,1918657,125150 +119131,1918662,106196 +119133,0325965,136611 +119135,0299040,24179 +119137,0416906,307683 +119139,3696720,312497 +119141,2788710,228967 +119143,0065726,177043 +119145,2802144,207703 +119147,2622122,242555 +119149,1664662,85336 +119151,0070444,40387 +119153,2290153,191489 +119155,2692250,181533 +119157,0077977,293380 +119159,2196055,174309 +119161,0167046,59169 +119163,0130709,125154 +119165,1343394,122348 +119167,1343740,51239 +119169,2118775,222216 +119171,0865482,34515 +119174,0721244,307229 +119176,0163654,307228 +119178,0066394,306610 +119180,2184287,180951 +119182,1411249,46127 +119184,0238059,19444 +119186,1109583,42309 +119188,0149867,280927 +119190,2107861,267863 +119192,0151045,268007 +119194,0059020,263640 +119196,0030722,67753 +119198,2784004,313037 +119200,0299215,132936 +119202,2784002,313045 +119204,0559625,313050 +119206,0559649,313053 +119208,0027357,81116 +119210,0243976,274985 +119212,3002578,212503 +119214,1667079,142119 +119216,2437548,261820 +119218,2280378,120605 +119220,3506224,307113 +119222,2314824,259018 +119224,2609758,175555 +119226,3019796,277368 +119303,0066543,145162 +119305,0100281,13759 +119308,0058475,129062 +119310,2359381,241432 +119312,0182996,44936 +119314,1065106,18755 +119316,0030631,53527 +119332,0222664,182099 +119424,2320073,141058 +119426,1654829,110323 +119428,1594503,51090 +119430,1018830,14669 +119432,2353767,212606 +119436,0244196,60119 +119438,0067359,215538 +119440,0349747,65821 +119450,0216750,52622 +119454,1787759,51017 +119456,0154263,26540 +119563,1846442,81393 +119565,3877200,301231 +119567,1567215,62836 +119569,4045488,302118 +119571,1091207,33582 +119573,2072025,145186 +119575,1388371,158828 +119579,0115701,243856 +119583,0052676,32113 +119585,0053699,21240 +119589,0122571,94674 +119595,0097176,280495 +119601,0045682,123868 +119603,0092922,88253 +119605,0044586,197647 +119607,0034707,51416 +119609,0037678,30102 +119611,0053800,168408 +119615,0069713,11612 +119621,0840358,82676 +119625,0023993,52228 +119627,1409798,225898 +119629,1322306,63727 +119635,1647665,149600 +119637,0071537,40474 +119643,0106852,131903 +119645,1043756,92286 +119649,3441700,250114 +119651,2396436,280000 +119653,0968294,47365 +119655,1121096,68737 +119661,0060549,91261 +119663,0311210,19338 +119667,0439771,37529 +119670,3720794,266080 +119672,2403961,214761 +119675,0170223,55553 +119677,3663040,278334 +119679,1675759,176079 +119681,1720172,73661 +119683,1852040,136741 +119685,1680051,78093 +119687,0116897,33990 +119689,2378191,159211 +119691,1753422,57008 +119693,1470022,101791 +119695,0079128,99194 +119697,1663660,82492 +119699,0066924,16825 +119701,3320502,240906 +119703,0480008,16412 +119705,1886644,115084 +119714,3788052,298533 +119752,0071139,41897 +119754,2937752,280509 +119758,0039344,79376 +119760,0098552,43281 +119762,2076844,84193 +119766,0016832,99946 +119770,1872101,201018 +119782,0129924,18948 +119796,2520096,211085 +119798,0277705,21176 +119800,2226285,144595 +119802,0279231,25797 +119804,0479152,28535 +119810,0070111,121342 +119812,0070393,58080 +119818,0071331,105860 +119820,0075083,75754 +119822,0073406,80067 +119830,0077945,39973 +119832,0081467,27905 +119836,0079156,67219 +119844,0084506,43548 +119846,0083585,64666 +119848,0086266,197335 +119850,0085134,82341 +119856,0091166,67221 +119858,0094843,84729 +119870,0327733,275239 +119874,1073654,48805 +119878,0088148,272165 +119901,0114417,75136 +119904,0114416,75137 +119907,0114418,75138 +119909,0108107,69787 +119929,0420511,153936 +119946,0020230,151068 +119948,2980708,300706 +119950,0060163,64998 +119954,2611626,227359 +119960,2400377,208637 +119964,0910885,286532 +119966,2505294,271185 +119973,0072284,63340 +119975,0105410,70984 +119977,0053241,13383 +120074,0099072,96921 +120076,2368833,111022 +120096,0026361,190165 +120102,0918628,15888 +120104,0061669,33730 +120110,2514338,266031 +120112,2480454,287486 +120114,3097490,287301 +120116,2421230,289183 +120118,2364649,137614 +120120,3435570,300487 +120122,2965842,293491 +120124,0985692,239498 +120126,1922555,82967 +120128,2819436,248833 +120130,2061702,92321 +120132,1823664,196867 +120134,2635832,151153 +120136,0057993,28532 +120138,2338151,297222 +120142,2254010,201076 +120146,3205728,283712 +120200,2710368,224903 +120202,3534842,296626 +120206,0055988,42996 +120208,0013134,130064 +120214,0025124,84100 +120216,0363056,48854 +120222,0249516,116977 +120234,0040365,81878 +120240,0196723,17806 +120246,1431065,65186 +120250,0051629,95060 +120258,0200374,51175 +120260,0036836,106821 +120266,0039396,29365 +120268,0054892,98010 +120270,0109835,42706 +120272,0085551,29628 +120274,2785390,276918 +120276,2229399,186845 +120278,1816608,252529 +120280,0201450,173732 +120282,0286855,31821 +120284,2961890,288581 +120286,3431998,307127 +120290,1538401,43635 +120292,2368635,266040 +120294,2328922,153854 +120299,0313422,251959 +120301,3516378,253065 +120307,0027796,125891 +120311,3417422,244049 +120313,0435107,62653 +120315,2053378,149854 +120317,0283054,21605 +120319,0070787,22058 +120321,0060548,28763 +120323,2397521,135832 +120380,0095167,75298 +120382,1146283,19365 +120384,2609156,157674 +120388,1657513,209293 +120390,1621426,59439 +120392,2965412,276908 +120400,1839482,240881 +120408,0073019,56539 +120410,2065898,106136 +120412,1031241,49391 +120414,0026388,162059 +120420,0158409,16365 +120432,0088202,54165 +120436,0087313,105404 +120438,1059793,16460 +120440,1135929,26728 +120442,0975673,19993 +120444,2270274,133704 +120446,1508274,28630 +120448,0056016,37238 +120450,0089199,31609 +120452,0161612,94568 +120454,0460808,50392 +120458,2272336,159638 +120462,3078296,303542 +120464,0386695,17825 +120466,1823672,198184 +120468,2340678,130925 +120470,2565938,141423 +120474,3473654,256835 +120476,2166880,241930 +120478,3674140,265297 +120480,0097991,42012 +120482,1337068,81586 +120484,0049444,128946 +120486,0109555,74309 +120488,0069197,42759 +120490,0043658,39485 +120492,0042410,36339 +120516,0050097,73027 +120518,0054968,190474 +120524,0062731,121611 +120534,2276069,268536 +120536,3096712,253454 +120574,1657510,232175 +120578,0299535,95997 +120580,1884318,117942 +120586,1307926,61038 +120588,0024067,33709 +120610,2663380,222370 +120614,0452632,127150 +120618,2476624,148777 +120621,1797487,207871 +120623,2077677,209686 +120625,3560686,285700 +120627,1366862,226227 +120629,2512582,199291 +120631,2247696,125034 +120633,0074270,121727 +120635,2446042,260346 +120637,2717822,201088 +120639,1748260,188984 +120641,0043992,147903 +120751,0389009,213603 +120757,4186386,315360 +120759,0433422,72240 +120761,0017271,126644 +120763,1124215,73198 +120765,0296251,71886 +120767,0053582,127808 +120769,3526098,315057 +120771,3298522,315044 +120773,0068970,216736 +120775,0053176,38898 +120777,0059670,193348 +120779,2724304,278329 +120781,0836682,26700 +120783,2452200,294652 +120785,0033811,284793 +120787,0015873,115132 +120789,0059895,38267 +120791,0049063,66969 +120793,0064324,92251 +120795,0061402,48714 +120799,1340138,87101 +120801,0118670,71456 +120803,0001062,118943 +120805,1560169,26621 +120807,2246779,86705 +120809,0053428,66965 +120811,2060540,75874 +120813,1503646,27317 +120815,1084002,92452 +120817,1474251,36575 +120819,2261735,191120 +120821,0080118,149362 +120823,0468528,78531 +120825,2339741,288158 +120827,0095330,68352 +120829,0061971,126432 +120831,2948266,203534 +120833,1161064,20177 +120835,1791504,62934 +120837,0071259,84209 +120839,1900854,116723 +120841,0368730,3057 +120843,0090490,125458 +120845,2055709,199591 +120851,1224151,11752 +120853,2309977,142563 +120855,2162565,157301 +120857,0430926,9755 +120859,2142618,123634 +120861,0075683,8767 +120863,0411302,43629 +120865,1515157,187156 +120867,3384034,241287 +120869,0000010,774 +120871,2076787,163250 +120873,1534380,261207 +120875,0082073,37775 +120877,0083680,37768 +120879,0086850,37777 +120881,0087181,59040 +120883,0092116,23273 +120885,0093274,62491 +120887,0094901,56825 +120889,0096884,60014 +120891,0104798,56551 +120895,0110808,58189 +120897,0114844,56804 +120901,0117695,58081 +120903,0167947,42674 +120905,0208026,44933 +120907,0402764,22728 +120909,0312929,43544 +120911,0486138,38327 +120913,1077026,20414 +120919,3837196,267573 +120921,2542616,221437 +120923,3173524,255456 +120925,0067749,43477 +120928,2210781,261768 +120930,2916416,199925 +120932,0173231,211710 +120934,3578504,267872 +120936,0285930,38187 +120938,0283994,30091 +120940,0283875,38183 +120942,0340398,38190 +120944,0338768,51939 +120946,0338111,38185 +120948,3132094,251555 +120950,1978567,132601 +120952,1869425,84197 +121003,2380594,137079 +121005,0781332,21447 +121009,3214248,298935 +121011,2314036,293861 +121013,0074348,51213 +121015,0062092,55316 +121017,0056014,44522 +121019,0057870,31270 +121021,0054425,33336 +121023,1224378,208763 +121025,0119880,80145 +121027,2234032,212756 +121029,1565434,42863 +121031,0839976,20693 +121033,2343585,264048 +121035,3132738,289394 +121039,1624376,107255 +121045,0047336,96546 +121047,0057135,120539 +121053,0024830,43900 +121055,0028980,43153 +121057,0033603,84875 +121059,0044140,67756 +121061,0044883,65703 +121063,0024144,50107 +121073,0028770,88209 +121081,0034959,23107 +121097,0105606,50327 +121099,0324941,13654 +121101,0040917,65611 +121103,1702443,54518 +121109,1276434,19824 +121111,0085106,101660 +121113,0212235,4226 +121115,1705952,230222 +121117,0299981,13360 +121119,0088583,18729 +121122,0758781,15434 +121124,1718903,85373 +121126,0075809,24655 +121129,3138104,244688 +121133,0133024,29988 +121135,1913166,78383 +121137,2375779,125509 +121139,0110068,50326 +121141,0099327,25373 +121143,2351310,200085 +121145,2354205,151044 +121148,0756648,5139 +121150,0359144,115520 +121152,3465456,257648 +121155,2609912,181330 +121157,1764625,121734 +121159,0086823,140161 +121161,1458915,70008 +121165,0313597,18015 +121167,1559033,60575 +121169,2570858,250225 +121171,3264102,256876 +121173,2275861,161529 +121176,0263265,33932 +121178,2083231,174645 +121180,0460925,19033 +121182,1699755,72359 +121184,0486656,9817 +121186,0493451,24116 +121188,0451187,10055 +121190,0324532,39227 +121192,1486670,53459 +121194,2465140,239562 +121196,1662293,209901 +121198,0839880,14025 +121202,1002567,25597 +121205,0318497,32304 +121207,0817545,161321 +121209,0475417,15426 +121211,1034320,15616 +121217,1560954,51250 +121219,0995863,19066 +121221,0064916,52916 +121223,1792543,77879 +121225,4008652,293262 +121227,3074780,209416 +121231,3235888,270303 +121233,0066436,194817 +121235,2962726,269173 +121237,1403862,54415 +121239,2645000,152273 +121241,0084747,24745 +121243,1628055,75074 +121245,1924277,98582 +121247,0254871,28635 +121249,0205214,31183 +121251,2041488,119738 +121253,2561546,287084 +121255,2132324,110393 +121259,0817228,14440 +121261,0339294,19288 +121263,1285010,26588 +121265,1407078,38166 +121269,1243955,22175 +121271,0117692,27770 +121273,0161492,37526 +121275,0104418,16191 +121277,2040578,146631 +121279,0081062,38602 +121282,0068716,30934 +121284,1074214,29919 +121286,1502420,65762 +121288,0054561,115531 +121290,2529256,253153 +121294,0441633,68189 +121296,0055738,86240 +121298,0114019,9076 +121300,1391481,56624 +121302,3300814,222715 +121304,1733689,92968 +121306,1813774,98612 +121308,2400275,114982 +121310,1119194,59298 +121312,0078089,38020 +121314,2357377,160704 +121316,3404140,242452 +121318,0022979,118139 +121320,0057723,269165 +121322,1541110,185207 +121324,0090961,276819 +121326,0062741,3483 +121328,1606390,63139 +121330,1407049,44678 +121338,0056912,19254 +121340,0072764,19300 +121342,0055831,26190 +121346,0092751,47212 +121350,0069919,88359 +121352,0063341,25441 +121354,1327709,47891 +121364,1504019,114286 +121366,2980764,234567 +121370,2461132,277432 +121372,1717578,46967 +121374,1254947,32836 +121376,0034064,23338 +121378,1833708,63472 +121382,2552498,177566 +121390,0041600,113237 +121403,0095089,23178 +121407,0103955,86131 +121409,0115891,61550 +121413,1076252,15671 +121415,0006731,174594 +121417,0111093,64084 +121419,1083462,58231 +121426,0038514,86901 +121430,0067216,68659 +121432,1977953,147764 +121436,0094021,109161 +121438,0078313,237925 +121444,0454879,15558 +121447,0088851,29077 +121449,0254872,38157 +121451,1636844,91979 +121453,3118958,243568 +121455,0080024,31179 +121457,0217074,36251 +121461,0117676,29083 +121463,2046090,111443 +121467,0161970,42185 +121469,0988083,14862 +121473,0058580,26817 +121475,0765487,13903 +121477,0209264,41275 +121481,2805748,229839 +121483,2597242,254188 +121485,2217458,167683 +121487,2313896,215931 +121489,0949423,4344 +121491,0412888,3539 +121493,0203297,12115 +121495,1606385,80472 +121527,0075881,292133 +121543,0090318,158013 +121545,0073298,67298 +121575,0290240,211179 +121579,0073609,112481 +121581,0210576,240334 +121583,0436374,48594 +121586,2866676,216440 +121588,2328773,276120 +121590,4209244,317247 +121592,0021424,287169 +121594,0024334,70738 +121596,1691453,58448 +121598,0134693,295689 +121600,0024908,174442 +121604,2260052,201783 +121612,2526856,151509 +121614,0051076,247691 +121618,0016938,262176 +121620,0034282,218582 +121632,0026703,79631 +121634,2348322,137654 +121644,0077612,167882 +121650,0198371,257925 +121677,0073700,104606 +121693,0030382,258200 +121699,3742040,287299 +121703,0053331,241552 +121713,0027062,76380 +121715,2215489,102517 +121727,0199580,125229 +121729,0065534,39766 +121733,1043860,40502 +121735,0044928,44025 +121741,0041635,262454 +121763,0268037,205608 +121767,2299471,200358 +121777,1380279,132709 +121779,1312254,54602 +121781,0472602,30178 +121783,1642665,73290 +121785,0120847,29812 +121787,1764647,176570 +121790,1052040,24330 +121792,0210294,16174 +121794,1630564,56913 +121797,0031750,44919 +121799,0104808,50687 +121811,1719583,171363 +121815,1721685,81649 +121821,1989598,94720 +121825,0078500,52448 +121829,2109153,137651 +121831,0050954,193873 +121835,0827709,213955 +121841,0470857,142897 +121845,0119836,185110 +121849,0093432,237549 +121851,0044670,177440 +121857,0805631,75337 +121859,2328490,270672 +121863,0040773,185078 +121873,0022117,97024 +121875,0019434,248553 +121877,0055557,248469 +121879,2096541,124998 +121889,0018908,104485 +121907,0033805,87914 +121917,0057642,170368 +121929,0024269,290379 +121931,0021240,174762 +121933,0052610,37066 +121965,0054697,235092 +121967,0061076,79877 +121973,0047139,149957 +121981,1727373,100540 +121985,1757944,55190 +121993,0023268,117004 +121999,0046491,133716 +122009,0021087,146449 +122011,0045300,220504 +122015,1333656,39442 +122025,1034293,127413 +122027,2397549,126929 +122029,0322622,28486 +122031,0901504,55045 +122033,0469429,18598 +122035,0038151,55872 +122037,0343449,22451 +122039,1079448,14059 +122041,2421416,174343 +122043,0905994,21935 +122045,0039037,33546 +122048,1434423,32582 +122050,0438052,15166 +122058,0021413,229221 +122060,0474476,58309 +122062,0166593,263065 +122064,0043861,73313 +122082,1260365,51490 +122084,0053290,29996 +122086,0473364,35153 +122088,0090297,19127 +122090,0137799,54940 +122092,0408828,14407 +122094,1230211,18278 +122096,0065079,42619 +122098,1591504,81972 +122100,0048593,40578 +122102,0462359,68116 +122104,1714196,42189 +122108,0060893,29052 +122110,0058751,3686 +122127,1567385,241982 +122129,1731767,45752 +122131,2215077,209401 +122133,0154587,33037 +122143,2047802,161243 +122145,0050643,129359 +122147,4186390,315362 +122151,0024620,120657 +122155,0019557,171446 +122157,1766189,82326 +122159,0034433,219424 +122163,2597718,245169 +122197,0030554,247604 +122199,0040347,90956 +122205,0119358,138513 +122210,2147822,120990 +122216,0031909,153163 +122218,0041882,90955 +122220,0203695,56599 +122228,0057393,27858 +122230,0168355,63039 +122234,1946298,122192 +122238,0108556,30554 +122240,0123179,49742 +122242,2182019,98368 +122244,0055152,72693 +122246,1935929,84575 +122250,0031477,33030 +122254,1519663,66945 +122258,0095975,11496 +122260,1127205,133365 +122262,0255702,24649 +122264,0107333,52627 +122266,0757175,45760 +122268,1054675,47963 +122270,1724572,63339 +122272,0049434,44921 +122276,1937506,102222 +122278,2402985,246011 +122280,0284445,57326 +122282,0078672,77172 +122284,0171768,27771 +122286,0056138,18684 +122288,1946421,70703 +122290,0095316,12787 +122292,0463826,18202 +122294,0098328,33545 +122296,0128977,96716 +122298,0086486,36835 +122300,0267657,24102 +122302,0029864,17885 +122304,1474889,44966 +122306,1472195,56529 +122308,1320293,13480 +122310,0068524,54164 +122315,0059915,7085 +122317,0134969,32139 +122319,3104304,255692 +122321,0025465,23122 +122323,1222329,53729 +122325,0085328,28468 +122327,0387549,27417 +122333,1548635,58718 +122335,0345543,25556 +122337,1028581,16004 +122339,0804550,15066 +122341,0062479,42703 +122343,0038937,29237 +122345,1577055,62904 +122347,1610518,71461 +122349,1200272,43219 +122355,0058437,85609 +122357,0115820,48358 +122359,0151392,47962 +122371,0143367,171232 +122373,0016480,149515 +122381,0111386,113210 +122385,0035438,99234 +122393,0410554,239706 +122397,0014605,70734 +122399,0022191,116639 +122409,0042409,94228 +122413,0301526,25587 +122417,0057683,42305 +122421,0070700,39829 +122423,0140340,57943 +122425,0378230,24554 +122433,0061557,47003 +122435,0062360,35668 +122437,0064704,62108 +122441,0070770,42468 +122443,0072189,13013 +122451,0092831,106280 +122455,1292652,38932 +122458,0419373,42904 +122462,0057227,42783 +122464,1570970,65496 +122466,3468260,251768 +122468,3138376,259074 +122470,1640486,70877 +122472,0270882,42303 +122474,0120135,61168 +122478,1144551,34128 +122480,0110015,37404 +122482,0102067,36421 +122488,1838475,150229 +122490,2761578,256740 +122495,0787485,58096 +122497,0061176,36283 +122499,0040720,43448 +122501,0048204,57258 +122503,1053880,49848 +122505,0111470,41589 +122509,0285685,51438 +122511,0288415,21518 +122513,0387925,34672 +122515,0367088,26266 +122517,0470982,9973 +122519,1544572,48844 +122523,1791658,78047 +122525,2414212,142308 +122527,2999390,149910 +122531,0113748,71376 +122545,0811124,59120 +122547,0043687,60853 +122550,0062713,67659 +122559,0426550,31277 +122561,0494260,73548 +122563,1687277,77874 +122567,2388208,210059 +122569,2857160,240913 +122573,3745840,283105 +122575,0118453,51768 +122577,0023943,58012 +122579,0111387,113215 +122583,0111388,113209 +122591,0041526,274060 +122593,2207778,246218 +122595,0050298,102078 +122619,0104984,224937 +122621,0048346,38382 +122623,0084438,49483 +122625,0217136,85429 +122635,0037104,215299 +122643,0020589,5201 +122647,0089628,89743 +122653,0031710,47884 +122657,1978480,84312 +122659,0060295,4529 +122665,1734203,79190 +122667,0073765,78094 +122683,0031708,47882 +122693,0030491,47883 +122699,2490004,260535 +122703,1368870,81010 +122711,0222608,136867 +122713,0072107,35405 +122715,0932669,49429 +122719,0293509,4968 +122727,0423514,28282 +122729,0110706,49050 +122733,0064699,26316 +122735,0067491,71945 +122739,1052024,58664 +122743,0057379,29400 +122747,0015002,42367 +122749,0057212,52011 +122754,0113950,107096 +122756,0059518,43407 +122758,1636629,44773 +122760,0216930,38132 +122762,0165396,73257 +122764,0113932,44381 +122770,0079357,26538 +122772,1636539,69792 +122774,1148277,16309 +122779,0110999,106968 +122781,0057986,39044 +122783,0090073,32387 +122785,0120329,76864 +122787,0053354,25386 +122791,0074441,54613 +122793,0069278,87514 +122795,0054086,3582 +122797,1436034,45568 +122799,0068997,37608 +122801,0977663,23816 +122803,0265859,71204 +122807,0308443,31242 +122809,0414161,30402 +122811,0022054,99732 +122813,1537481,45662 +122815,0023312,44775 +122817,0473553,53953 +122819,0064471,11643 +122825,0044070,171130 +122841,0028873,43866 +122849,0195209,28321 +122851,0068902,61462 +122855,0071344,89651 +122857,0072786,74379 +122859,0076518,65320 +122861,0077191,55685 +122876,1417108,59117 +122878,3321428,254869 +122880,1797504,109689 +122882,1392190,76341 +122884,3195644,280092 +122886,2488496,140607 +122892,2395427,99861 +122894,1630029,76600 +122900,0478970,102899 +122902,1502712,166424 +122928,0206117,72900 +122930,0102799,77680 +122932,2113659,268171 +122934,0377834,54148 +122936,0055534,75752 +122938,3520564,290695 +122940,2279864,133790 +122942,2326574,279914 +122944,0165993,301883 +122946,2312390,214264 +122948,3204144,270343 +122950,0017120,183932 +122954,0034198,96175 +122968,0029845,104427 +122970,0044919,102289 +122972,0044503,87983 +122982,0053275,63486 +123004,0104469,82868 +123008,0044696,58757 +123016,0024307,176627 +123024,0033879,84719 +123026,0033728,109109 +123036,0042829,48645 +123044,0174240,156141 +123046,2028578,84346 +123061,0093290,252096 +123077,0045216,77678 +123085,0246786,1163 +123087,0067672,72032 +123089,0066064,45398 +123091,1235200,45020 +123093,1235837,16652 +123095,0918645,128598 +123097,0415855,52251 +123099,0080853,53950 +123101,0472465,36965 +123103,0249326,21533 +123107,0100361,69234 +123109,0130172,62410 +123111,0468965,24059 +123113,0045184,111043 +123115,0020585,288521 +123119,2530936,168164 +123121,2511670,216457 +123125,0133168,55531 +123129,0107482,215405 +123133,0054991,93892 +123139,0018836,206581 +123155,0093898,27738 +123159,0110017,75826 +123161,1745958,93077 +123163,2073121,228245 +123165,1504443,44811 +123172,0261992,14427 +123174,1650044,117120 +123176,0828450,27353 +123178,0093489,49712 +123180,0477349,53085 +123188,2404583,258251 +123190,1213856,21795 +123192,0424228,24556 +123194,1954811,97732 +123196,0250698,41235 +123198,0091183,41625 +123200,1439235,31981 +123202,2953196,236324 +123210,1087524,44862 +123215,0043769,80596 +123219,0035612,51791 +123221,0029087,87115 +123225,1843202,98586 +123229,0052811,52203 +123233,0031575,47197 +123235,0026966,86956 +123240,0039591,28567 +123244,0043436,173893 +123252,0051754,176216 +123256,1523485,48836 +123262,0058525,32560 +123264,0110016,75822 +123268,0040499,107593 +123274,0073229,221135 +123282,0111021,43275 +123284,0262259,178541 +123288,0289830,150004 +123294,0073488,86382 +123296,0062482,118017 +123298,0063240,5147 +123304,0026972,41118 +123306,1931466,157919 +123308,2569236,217896 +123310,0117942,36983 +123312,0049578,43311 +123314,2872810,228676 +123316,0029516,45800 +123318,2369041,226672 +123320,0385988,44507 +123326,0046035,38808 +123333,0026660,66963 +123337,0031503,130633 +123347,0073663,76829 +123349,0096340,86680 +123351,0058238,55150 +123353,2611026,263510 +123357,1206086,27944 +123359,2076176,85870 +123361,0486652,52788 +123381,0046865,108345 +123383,0018166,91480 +123385,0056187,183247 +123391,0866435,54162 +123395,0057362,1849 +123401,0030412,213443 +123405,0068613,90582 +123407,0026675,171032 +123419,0024471,39494 +123421,2217936,158870 +123423,2221648,172386 +123427,1461249,47902 +123429,0119505,48689 +123431,0044125,113823 +123435,0884214,73085 +123437,0382856,88905 +123439,0367245,165569 +123441,0088895,140605 +123449,0289652,57012 +123453,1956502,108251 +123463,0091706,46743 +123465,0451038,19183 +123467,0878814,220746 +123471,0268346,52784 +123473,0056183,45247 +123475,0046029,65489 +123477,0933064,31933 +123479,0043910,83667 +123481,0044075,35009 +123487,0240944,54782 +123493,3549508,256503 +123495,1063111,39477 +123497,1783772,52252 +123499,2963232,231474 +123516,0025173,121003 +123530,1365471,48746 +123532,0008443,95866 +123534,0110018,70811 +123545,0041190,228074 +123553,2379386,252360 +123565,0110019,75834 +123571,1935828,49505 +123573,1659253,72094 +123575,0067750,79735 +123577,1444252,48669 +123579,0029650,77964 +123585,2202471,95919 +123587,0120392,72483 +123589,2594950,191717 +123591,0033660,29609 +123596,0060783,79466 +123600,0066490,96131 +123602,0066062,221144 +123605,0073134,133148 +123607,0073454,83849 +123609,0079225,98130 +123613,0081344,51681 +123621,0088611,266314 +123625,0097648,69898 +123627,0099842,129251 +123629,0099225,108012 +123639,0108159,15759 +123645,0179940,50299 +123653,0284450,19496 +123655,0499260,27137 +123669,0037256,101289 +123677,0058585,98507 +123681,1511514,26250 +123699,0045479,177580 +123715,0082778,30002 +123717,0041926,41551 +123719,0025833,184936 +123735,1444284,108917 +123737,0050192,153997 +123747,0164110,113737 +123761,0040394,55603 +123773,0029541,74604 +123785,0310952,16356 +123816,0042553,87588 +123824,0026187,87881 +123834,0054963,80633 +123840,0174685,31253 +123848,0291330,27840 +123850,1662628,262609 +123854,0026758,84718 +123876,0492460,13699 +123882,0262776,137491 +123911,0026023,43603 +123935,1069229,149043 +123939,3992752,289390 +123941,0043725,118446 +123943,2036388,75562 +123945,0104351,244956 +123947,3442006,284276 +123949,2463808,237808 +123951,0078105,144229 +123959,1422653,44014 +123967,0206088,10639 +123973,0093658,169832 +123981,0050100,64984 +123985,2821832,220514 +123997,0023498,43131 +124007,0445461,51572 +124013,0029664,78354 +124025,0055453,74529 +124031,0029499,43151 +124043,0083343,64994 +124048,0060089,35109 +124050,0076407,59527 +124052,0084208,119840 +124059,0273907,42182 +124063,1092014,69495 +124077,3317326,258673 +124083,0031442,63591 +124125,2797106,242458 +124131,1500505,39337 +124137,0044871,48407 +124139,1496798,69803 +124149,1020996,13621 +124151,2071648,134415 +124164,0048822,53441 +124166,1456660,238811 +124168,0309986,24978 +124170,0118766,55989 +124172,0163375,38134 +124174,0051141,108812 +124178,0049407,43310 +124180,0039464,26838 +124182,0053849,99345 +124194,0054244,114251 +124213,0034389,90460 +124220,0035552,90461 +124224,0036533,90465 +124230,0040457,37484 +124232,0040379,43454 +124235,0117373,62347 +124243,0123581,252682 +124247,0035796,93335 +124253,0046267,44536 +124265,0060395,18373 +124269,0087749,180836 +124273,1705115,48132 +124279,1891905,79842 +124290,0041796,27635 +124292,0042609,43392 +124296,0044750,46145 +124298,0097503,56669 +124300,1984177,74860 +124302,0304283,15909 +124304,0070158,72460 +124320,0059540,36514 +124322,0244491,42354 +124324,0167360,61473 +124326,0073896,42267 +124332,2243621,164372 +124336,0247427,40624 +124342,1042567,91198 +124344,1328642,15587 +124348,1139111,39961 +124350,0457701,34862 +124352,0051759,77794 +124356,0951333,29192 +124358,0031589,149793 +124364,0037791,165300 +124368,0039357,107874 +124380,0049621,46421 +124394,0039486,147843 +124404,1429433,85439 +124406,0023180,95724 +124408,0044828,41468 +124412,0059726,76286 +124414,0044015,40642 +124430,0065184,66485 +124442,1485761,220933 +124446,0037428,199151 +124450,0028966,78537 +124452,0049834,74527 +124458,0249567,82309 +124462,0047501,105536 +124470,0024414,180635 +124472,0041790,25807 +124476,0055151,57665 +124488,1002543,86324 +124490,0015310,50329 +124492,0029662,147722 +124496,1201168,55767 +124502,0058232,137859 +124507,0097630,122894 +124519,0055458,30126 +124521,2359307,268321 +124525,0010267,143277 +124531,0099991,123770 +124533,0053334,43205 +124535,1234542,37779 +124537,0074798,5002 +124539,0119238,115373 +124544,0245356,61016 +124546,0043606,45099 +124550,0268466,194736 +124552,0926763,31340 +124554,0077332,46158 +124556,0057646,74215 +124560,1814905,129798 +124562,1503777,61263 +124571,0126016,70190 +124575,0086590,38782 +124577,1595354,61682 +124581,0246332,60703 +124595,0020488,99767 +124607,0025601,84097 +124611,0049278,94192 +124621,0078360,59402 +124623,0403004,95578 +124627,0034204,74550 +124629,0117814,145194 +124631,0057202,128779 +124639,0052030,118444 +124643,0076286,114570 +124645,2155391,167198 +124647,2554648,173488 +124651,1411236,90291 +124655,0048588,208434 +124657,0030857,160254 +124659,0100784,65482 +124681,0032963,200654 +124687,0024958,144475 +124691,3569326,293880 +124693,0022990,86087 +124713,0050944,79730 +124721,1493246,39433 +124725,0064088,72100 +124727,0451090,40874 +124731,0050580,38381 +124735,0107448,95820 +124745,0050439,62033 +124751,0068748,38165 +124763,0040438,128854 +124765,0020198,95348 +124767,0041963,73595 +124769,0045191,38964 +124771,1624426,72946 +124773,0470692,63612 +124775,0023151,98398 +124779,0041481,90807 +124781,1756615,102256 +124783,1787831,87820 +124793,0053742,94510 +124797,3341832,245589 +124801,0033858,56151 +124803,0024090,157343 +124805,0423474,68716 +124807,2366572,217925 +124811,0024465,96702 +124813,1017442,73614 +124817,0052934,175681 +124819,0095629,45774 +124825,1718898,217719 +124827,0076644,85695 +124831,0035428,61434 +124833,0047230,91477 +124839,1156067,50042 +124841,0060704,200863 +124843,0058881,98223 +124851,1698647,279828 +124853,0063804,72585 +124855,0064691,26121 +124857,2179226,199556 +124859,2039393,284536 +124861,3090252,249170 +124863,0071318,85236 +124867,3878542,297556 +124869,2783020,179267 +124871,1607577,118640 +124887,1313254,51548 +124889,0185143,62670 +124901,2364842,207475 +124905,0043595,115111 +124913,0023642,111307 +124919,0192802,59178 +124923,1206541,51800 +124927,1342403,60949 +124935,1470020,74457 +124943,0026744,76483 +124957,0997138,140509 +124963,2631862,212455 +124965,0091524,169541 +124971,0045232,78265 +124973,0027029,52864 +124977,0183808,141319 +124983,0480082,26497 +124991,0884177,46651 +124997,0047150,51227 +125005,0051074,95359 +125019,1322264,44998 +125021,0087550,87909 +125029,0096160,58526 +125043,0031470,178337 +125045,1655424,51832 +125049,0023659,79308 +125051,1650056,77716 +125059,0039973,29113 +125065,0042488,94831 +125067,0056673,43016 +125073,0035553,102526 +125077,3746820,238206 +125079,0024569,161967 +125081,0342739,289318 +125085,1982735,229526 +125091,0033596,95137 +125095,0024684,200574 +125107,1153106,6163 +125113,0041847,38395 +125125,1549571,58936 +125133,1160018,16926 +125135,1086798,13017 +125141,1927172,187263 +125143,0018795,207636 +125155,1839648,60977 +125157,0049787,123354 +125159,0152265,84211 +125169,0038929,38469 +125173,1722484,104711 +125181,0023202,84337 +125183,2376024,121667 +125185,0054803,131045 +125189,0048190,28490 +125193,0053457,72160 +125195,0061893,105059 +125205,0111385,113219 +125207,0048512,52857 +125209,1144815,74877 +125211,0059884,147371 +125213,0089892,73120 +125221,0048992,108181 +125223,0041495,27978 +125231,2280964,180891 +125233,2375417,152130 +125237,0064579,91737 +125241,0042786,62188 +125245,0042524,50926 +125249,1220217,98549 +125255,0984210,39042 +125257,0084914,126031 +125263,0049035,33843 +125267,0028661,112885 +125269,0860870,52323 +125271,0052148,75799 +125273,0200710,37053 +125275,2401223,174340 +125277,0040835,37294 +125279,0047537,68191 +125287,0439197,43625 +125289,1086797,15898 +125291,2396200,188357 +125305,0091688,40468 +125307,0473500,44974 +125309,1551641,75033 +125311,0097938,2199 +125313,1849111,122083 +125321,0065981,70422 +125323,0070827,5601 +125329,0082744,104729 +125337,0110340,70916 +125345,0102667,11719 +125347,1523367,63706 +125351,1262415,85768 +125353,0095366,31362 +125357,0080936,214181 +125359,0085873,71357 +125365,1178654,44989 +125367,1532538,208495 +125377,0052191,37123 +125381,0457475,23200 +125385,1230196,56596 +125387,0109969,173299 +125389,0080808,83802 +125393,0046239,46193 +125397,0039082,121230 +125399,0031981,67375 +125401,0093144,72984 +125403,1131747,18571 +125405,0023028,52355 +125409,0117495,113175 +125411,0091508,93263 +125413,1277736,26888 +125417,0045187,43365 +125421,1555110,67328 +125429,0119416,68744 +125435,2058710,139367 +125439,1268970,46562 +125441,0061401,99377 +125453,2328745,188507 +125455,0050993,67521 +125467,0155278,84508 +125471,0061173,102195 +125479,0247394,82243 +125481,0116619,108716 +125483,0038239,94881 +125489,0088006,47638 +125495,0085692,83579 +125497,1342115,61613 +125499,0039912,38472 +125501,0462598,37306 +125503,0024675,103938 +125505,1452599,78504 +125507,0052325,45599 +125509,0489279,24683 +125511,1190074,60965 +125517,0050283,23525 +125521,0073880,72455 +125523,0051083,46580 +125527,1245734,14053 +125531,0039405,175065 +125533,2131541,127614 +125535,2705402,167956 +125537,3557464,253266 +125539,2740538,233487 +125541,1947964,180644 +125543,2557276,302828 +125545,3419894,281298 +125555,0034546,38346 +125557,0035017,54288 +125563,1826753,166085 +125565,3455822,290802 +125569,2414046,215924 +125571,0099311,279979 +125574,0062117,171908 +125583,0041182,92796 +125585,0047579,45577 +125587,0166198,140032 +125596,0071968,58655 +125599,0077154,85637 +125601,0035964,299104 +125603,0036034,218233 +125605,0036977,168300 +125607,0037227,168994 +125609,0038810,130241 +125613,0048429,112244 +125617,0054845,105470 +125623,0021406,49308 +125628,2545338,159000 +125630,3157224,309049 +125632,0495225,318359 +125634,3661072,266880 +125636,0134833,155605 +125638,1712502,91929 +125640,2225782,142724 +125642,0024413,161880 +125644,0068206,64528 +125646,0056162,204800 +125652,0073792,141262 +125654,1864405,244580 +125656,3358552,242675 +125658,1230150,43721 +125661,3328716,286875 +125698,0297865,45441 +125700,0405004,105133 +125704,1672214,95853 +125770,1137436,21988 +125774,0078408,89056 +125782,2281425,188180 +125786,1811307,256196 +125795,3626442,261830 +125836,0059796,42779 +125854,0080625,55321 +125856,0023902,114626 +125864,0025704,130881 +125866,1686782,48798 +125868,0115563,104638 +125872,0425758,135696 +125874,1846444,59722 +125876,0416730,131932 +125878,0390136,48635 +125882,0026919,194407 +125884,0026184,75770 +125886,0026185,148617 +125888,0026095,72400 +125894,0026292,177902 +125896,0085303,39991 +125898,0026868,130882 +125902,0073686,53931 +125904,0251951,51780 +125906,2925768,283536 +125908,1367454,252637 +125910,2142955,131503 +125912,1808339,203321 +125914,3045616,210860 +125916,2322441,216015 +125918,4189442,305932 +125920,1072756,142208 +125922,2909154,196255 +125924,0239797,48522 +125926,1051713,53215 +125928,1213897,281615 +125930,0362449,48730 +125932,0437300,72205 +125934,0027446,46240 +125936,0082209,90781 +125938,1683941,56275 +125940,0211015,215657 +125942,1961251,190946 +125944,0083821,171292 +125946,0068918,54505 +125948,0150648,188392 +125950,0080832,67866 +125952,0387301,24251 +125954,0089331,261144 +125956,0021004,195617 +125958,1307789,76162 +125960,1013746,209209 +125962,0382602,37556 +125964,1839464,205818 +125966,0279830,15718 +125968,0104534,23998 +125970,0173886,27850 +125972,0274761,34205 +125974,0414078,34560 +125976,0079636,59354 +125978,0242849,105168 +125980,0114583,44666 +125982,0045261,67699 +125984,0092159,48841 +125986,0078503,2186 +125988,0179624,154622 +125990,0298737,43658 +125992,0213536,52458 +125994,0059058,234377 +125996,0215575,44342 +125998,0183288,52207 +126000,0325794,123283 +126002,0086168,197592 +126004,0091820,238090 +126006,0156031,81294 +126008,1377575,53214 +126010,1421377,25093 +126012,0800332,84805 +126014,0287670,140149 +126016,0059122,84617 +126018,2460746,157723 +126020,0441787,13535 +126022,1714191,57622 +126024,0083883,129363 +126026,1013528,261274 +126028,0163558,71145 +126030,1121969,80142 +126032,0023800,161885 +126034,0150814,187993 +126036,1725929,44874 +126038,0316318,192367 +126040,0007108,52035 +126042,2061818,162864 +126044,1806827,109477 +126046,1118665,73714 +126048,0045037,61080 +126050,0341011,110760 +126052,0041474,205651 +126054,0099796,91138 +126056,0225434,21714 +126058,0095968,59358 +126060,0475747,221234 +126062,0425674,67460 +126064,0106446,48273 +126066,0049032,83746 +126068,0934320,67456 +126070,2197863,141754 +126072,0816562,38580 +126074,0019968,77022 +126076,0351080,137014 +126078,0089355,167938 +126080,0241399,168202 +126082,0237335,241170 +126084,1301160,27618 +126086,2009538,60233 +126088,0193164,48874 +126090,0073099,36129 +126092,0021720,53178 +126094,0252993,53543 +126096,0461847,104062 +126098,2066973,93904 +126100,0462673,36003 +126102,0019715,190352 +126104,1521812,69168 +126106,0167030,53285 +126108,0454121,58587 +126110,0033397,29286 +126120,0349080,16048 +126122,0073945,52216 +126124,0099054,52304 +126126,0052595,56499 +126128,2577876,253686 +126130,0302382,78278 +126132,0402378,64850 +126134,0409860,20921 +126136,0116069,45221 +126138,1641831,72174 +126140,0115536,74192 +126142,0101095,159704 +126144,0375824,201561 +126146,2062966,130677 +126148,0286482,72917 +126150,0071550,76198 +126152,1285245,37688 +126154,0100440,71623 +126156,3579082,266723 +126158,0887887,13734 +126160,3136752,269714 +126162,0047368,76642 +126164,0098961,20220 +126166,0822827,31985 +126168,0216911,64357 +126170,0244071,77280 +126172,0117101,271327 +126174,0442371,79051 +126176,2492190,157787 +126178,1090674,55638 +126180,2608726,226363 +126182,2040504,253851 +126184,0156400,44349 +126186,0086292,201859 +126188,0108370,33489 +126190,0105815,54052 +126219,0026683,63180 +126227,0068735,260884 +126233,0154030,76155 +126235,0027342,67443 +126237,0058719,269070 +126239,0027653,192588 +126243,0028353,82237 +126245,0097843,145075 +126247,0029050,83816 +126249,0028958,131457 +126251,0069343,26504 +126283,0029190,56557 +126286,0028806,74208 +126290,0029529,206377 +126296,0029036,132506 +126300,0029706,92257 +126305,0030062,64442 +126309,0030933,180954 +126322,0031473,61523 +126325,0031493,52437 +126335,0114462,160194 +126385,4097108,310589 +126387,3657970,287504 +126389,3361004,292396 +126393,1403241,290555 +126395,2047890,94563 +126397,1663680,63348 +126399,1462411,156277 +126401,2311348,229559 +126403,2065877,127770 +126405,0086855,13924 +126407,0328993,80012 +126409,1836183,117963 +126412,1928200,229194 +126414,2240784,152113 +126416,0108210,116554 +126418,3079016,253287 +126420,2923316,250066 +126422,1673392,102534 +126424,2717528,248231 +126426,1808482,321130 +126428,0145528,258049 +126430,0374463,189197 +126432,0173024,73922 +126434,0314105,74695 +126436,0252612,72809 +126438,2740874,224293 +126482,4191054,302429 +126510,1885331,123235 +126544,1537314,94820 +126546,1797348,94904 +126548,1666801,272693 +126550,1992258,128876 +126552,1282046,281230 +126554,3924510,297544 +126558,0063485,56233 +126560,2960270,239030 +126562,2714380,280002 +126571,1374996,93556 +126573,0104401,193650 +126575,1945084,277355 +126577,2243469,89247 +126579,3102206,285135 +126582,0448404,63616 +126584,1724962,121828 +126586,0288114,46897 +126588,3188768,269576 +126591,0080058,73065 +126593,0452032,35646 +126595,2208216,133764 +126597,0087629,32088 +126599,2785032,276844 +126693,1693039,136619 +126713,0087229,69343 +126723,1278180,21013 +126725,0982893,83690 +126727,0432044,32649 +126731,0323084,44552 +126733,0168856,12609 +126735,0171851,27119 +126737,3625970,286805 +126739,0112480,36674 +126741,0112955,77331 +126743,0108252,30149 +126745,0107444,27599 +126747,0104761,27600 +126749,0096869,35927 +126751,0073227,30576 +126753,0062981,135337 +126767,0069073,29167 +126769,3450116,267268 +126771,1082144,83897 +126773,3102458,214251 +126775,3230082,266034 +126777,2385882,160160 +126779,1496792,72985 +126781,2942512,211579 +126783,2359417,97762 +126785,1828124,211722 +126787,1843840,128120 +126789,3102906,214069 +126791,1763280,54598 +126793,2706570,285463 +126795,1794790,60120 +126797,3474462,253377 +126799,1945034,139808 +126801,0065486,25251 +126803,2338864,204384 +126807,1706470,74608 +126809,0074451,63112 +126811,0071194,97313 +126815,1159200,96306 +126917,1018920,200547 +126919,3074732,217708 +126921,0465997,9948 +126923,2712878,293461 +126925,0139429,12575 +126927,0260948,41571 +126929,3053694,317384 +126931,0042466,81981 +126933,1273222,80337 +126935,0080776,85642 +126937,0047930,8779 +126939,0067782,163366 +126941,0441641,39064 +126943,0053041,28770 +126945,2317089,137008 +126947,0060597,118497 +126949,0061633,162510 +126951,3263520,250660 +126953,0054665,41213 +126955,0393435,129129 +126957,0283525,190152 +126959,0219671,217268 +126961,1015968,85658 +126963,0177990,122479 +126965,0831881,290739 +126967,0050633,128831 +126969,0080083,248921 +126971,1633175,49957 +126973,1432989,163978 +126975,0483022,25657 +126977,1982113,96574 +126979,0497204,257537 +126981,0053437,56691 +126983,0095244,74711 +126985,0214965,47448 +126987,0106384,102691 +126989,0002544,205504 +126991,0006761,282009 +126993,0008710,206390 +126997,0011370,116991 +126999,1104678,239123 +127001,0114081,87506 +127003,2554128,238386 +127005,0103301,217590 +127007,0157030,257534 +127009,0038774,26805 +127011,0289782,62851 +127013,0039317,29470 +127015,0027938,30640 +127017,0031614,26925 +127019,2286630,120850 +127021,2395970,173484 +127023,0092879,4885 +127025,2430044,199661 +127027,0050622,43716 +127029,0081019,83297 +127031,2536316,151136 +127033,2434988,166886 +127035,2516280,144331 +127038,0062529,198782 +127040,0058089,1871 +127042,0059168,1870 +127044,0060400,1875 +127046,0038008,50401 +127048,1056478,60769 +127050,0169024,92 +127052,0059550,20875 +127054,0004008,100246 +127056,2017464,86823 +127058,0261555,48419 +127060,1996196,150124 +127062,0151416,162592 +127064,1477171,56440 +127066,3654964,265929 +127068,0064338,3485 +127070,0063764,49183 +127072,0326598,72715 +127074,2201063,85711 +127076,0471359,195834 +127080,1319709,98560 +127082,1441309,84442 +127084,1808454,72478 +127086,0126711,121749 +127088,3279176,277688 +127090,1270296,43754 +127092,0125316,95010 +127094,1674274,116437 +127096,2436386,227719 +127098,4368814,321594 +127100,0111998,144183 +127102,1535107,47868 +127108,2381111,167073 +127110,3704416,295490 +127112,3534282,309298 +127114,3416744,249688 +127116,3726704,309299 +127118,3713030,291869 +127120,3442990,309581 +127122,3513054,310119 +127124,3236120,310121 +127126,2566644,310001 +127128,2349144,309242 +127130,2872462,309245 +127132,3346224,309503 +127134,1178665,232572 +127136,2273657,245706 +127138,3397754,253406 +127140,3165612,288036 +127142,4264834,315882 +127144,1674785,319070 +127146,4229236,319075 +127148,4185572,319091 +127150,4209900,319071 +127152,4257858,318224 +127154,3983674,224972 +127156,4188202,319079 +127158,3986532,318225 +127160,1780871,319074 +127162,4267108,319078 +127164,4284010,318044 +127166,4174320,312813 +127168,3592704,275647 +127170,3158416,227800 +127172,2917506,194537 +127176,1578269,115553 +127178,2891174,283235 +127180,2044056,125336 +127182,2494384,251321 +127184,3090634,283330 +127186,3655522,266082 +127188,3090670,308457 +127190,0128798,217313 +127192,3859304,308453 +127194,3534602,308638 +127196,3172532,250124 +127198,3850214,308639 +127200,3640682,307946 +127202,2582496,308369 +127204,3844362,308024 +127206,4104022,308027 +127208,3824412,294132 +127210,3566788,308640 +127212,0420293,308032 +127214,2481512,308361 +127216,4145304,306197 +127218,1598642,193687 +127220,0096523,52286 +127222,1503116,56036 +127224,2650986,161491 +127226,3465916,254721 +127228,1483780,42316 +127230,2229221,226163 +127232,3148468,223202 +127234,1846487,103758 +127236,0306456,57342 +127238,0389778,3168 +127240,2384642,128508 +127242,0317875,252063 +127244,2875926,188765 +127246,0072618,68864 +127248,2860720,190876 +127250,3727662,309875 +127252,2071582,318007 +127254,3032028,256108 +127256,0073864,3480 +127258,0084479,5063 +127260,0064165,3423 +127262,0046866,82046 +127264,0052644,54880 +127266,3962828,288708 +127268,2954184,223519 +127270,0117969,124857 +127272,0142634,80346 +127274,0233911,44489 +127276,0248110,202171 +127278,0108555,124524 +127280,0113249,71134 +127282,0066422,144910 +127284,0425295,37978 +127286,0462421,66787 +127288,0115288,64123 +127290,0122946,30492 +127292,1363468,63154 +127294,1039960,69335 +127296,1615075,81694 +127298,1883180,110390 +127300,0070505,123867 +127302,0812352,26722 +127305,2667960,230266 +127307,1674057,86391 +127309,1845866,73108 +127311,3066630,315855 +127313,0406754,46342 +127315,2474972,312526 +127319,1850397,72784 +127321,1649443,185341 +127323,3480796,307663 +127327,0815890,112952 +127331,0044202,29112 +127341,0201694,65257 +127371,0348847,74684 +127390,0888817,278468 +127419,2004419,248576 +127433,0051725,62037 +127441,3279124,250761 +127443,3103326,213684 +127445,1580427,295069 +127449,1131674,34630 +127451,3667610,278677 +127453,3646722,299796 +127455,0109384,126376 +127484,1754003,88599 +127496,0113576,57438 +127498,0115164,62352 +127565,2366608,167810 +127567,0206871,125305 +127569,0206988,217477 +127571,0131356,97046 +127573,0445158,36067 +127575,1528792,36120 +127579,1401643,56405 +127581,0239388,72480 +127583,2442080,312152 +127585,2165765,287524 +127587,0042965,30131 +127590,0068292,94744 +127600,0084887,27873 +127604,0192075,125063 +127606,0070585,62432 +127608,0073834,86598 +127610,4142022,320316 +127614,0041609,225184 +127622,0049450,237171 +127626,0054328,146563 +127628,0069833,73984 +127630,1059887,51261 +127632,0062266,93939 +127634,0063570,12796 +127636,0063647,155459 +127640,0064462,96243 +127642,0067375,55032 +127644,0076841,257605 +127650,3660370,266030 +127652,4076058,302376 +127654,3202408,255913 +127656,0063464,186629 +127658,3105350,316269 +127665,0045504,31293 +127667,0046352,276518 +127669,0049282,199198 +127681,0067932,73697 +127690,0079920,91901 +127701,2929890,270899 +127721,0076937,92316 +127724,2635006,169800 +127726,0068448,46439 +127728,0847833,54325 +127831,0378879,75224 +127833,0959306,251994 +127837,0309992,56482 +127843,0085991,17895 +127845,1436553,275468 +127851,0076192,110123 +127857,1934205,119193 +127859,1137477,16925 +127861,2044040,93103 +127863,0310024,54928 +127867,1405412,24051 +127873,2384296,250624 +127875,3216380,282042 +127877,1754277,105891 +127879,2395133,183910 +127881,1572965,24707 +127957,2923652,289278 +127974,2290065,126757 +127987,0169828,127668 +127991,0087349,142798 +127993,0057637,83429 +127995,0063332,134733 +127997,0066969,142808 +128001,0086638,191096 +128025,0049539,192544 +128029,0086264,25164 +128031,0089501,44191 +128071,0065019,64650 +128085,0066167,83124 +128089,1420554,27866 +128091,1395034,17485 +128093,1747960,47911 +128095,1820451,67952 +128097,3234126,216553 +128099,3958494,289333 +128143,0279513,55328 +128149,2226495,256347 +128151,0095869,43645 +128153,2815030,235093 +128157,3091242,212836 +128165,0192578,13351 +128167,1178640,15926 +128169,0206588,24476 +128171,0342108,24477 +128173,1176410,13955 +128175,3124476,295887 +128177,1855134,78080 +128181,1037222,187462 +128183,2245188,139459 +128187,0213668,47208 +128189,0068183,86637 +128195,0074592,252735 +128197,0102002,89292 +128199,0087386,91767 +128201,0420408,22211 +128203,0091411,258550 +128209,0056209,82937 +128215,0095924,32033 +128227,1425253,37813 +128231,0217841,65131 +128233,0052234,83132 +128235,0036391,43513 +128237,0348876,102533 +128239,0089271,30577 +128245,0081203,81887 +128247,0033490,43800 +128249,0074588,50953 +128251,0089265,23614 +128255,0479125,15420 +128269,2041534,239650 +128273,1032763,51245 +128277,0031345,64423 +128279,0038146,43486 +128283,0043303,28190 +128287,0047432,98969 +128297,0062137,103613 +128301,0054037,68198 +128303,1683524,110553 +128305,1411973,128062 +128308,2421224,256779 +128316,0106301,134463 +128318,2489512,158933 +128320,1422182,138394 +128322,3228830,261814 +128324,1539313,82649 +128327,0283474,238792 +128356,0144786,270045 +128358,0090245,36769 +128360,3460252,273248 +128362,1379057,63775 +128366,3628334,251016 +128369,2192888,133459 +128371,2652476,226673 +128379,0072200,90100 +128381,0308558,106622 +128383,0072712,106623 +128385,0074785,196847 +128387,0074345,90802 +128389,0151495,69569 +128391,0075722,52912 +128393,0076555,95096 +128395,0077363,128563 +128397,0076554,90019 +128399,0152018,106139 +128401,0079856,128557 +128425,3119416,209840 +128427,0073333,104334 +128429,0068416,6591 +128433,0076096,150658 +128435,0078445,183635 +128437,0080401,260888 +128439,3576060,264166 +128441,3303728,272691 +128443,3025410,273632 +128445,0073273,126706 +128447,3125220,244260 +128476,0069916,136576 +128478,1790621,81332 +128488,2231253,265208 +128490,3550444,293450 +128504,3417470,256912 +128506,2246953,116303 +128508,0392883,8014 +128510,2474438,186729 +128512,3622592,286565 +128514,2633014,173497 +128516,0429898,43584 +128518,3044244,265226 +128520,0884732,252838 +128530,0081126,217197 +128534,1379228,69499 +128536,0257290,22974 +128538,2622874,282672 +128540,2132486,81684 +128542,2535470,290999 +128544,3145220,242083 +128546,0499586,35336 +128548,0090115,19181 +128550,0096022,17172 +128552,3220192,308160 +128554,2287715,163431 +128556,0087527,37727 +128558,0091314,22192 +128560,0097636,37728 +128562,0104581,23654 +128564,0113510,37731 +128566,0269410,37730 +128568,2219516,218909 +128570,0297722,87204 +128572,0100264,30583 +128574,2642442,171427 +128576,2243361,93222 +128578,0265232,21842 +128580,0353962,8743 +128582,1580798,49874 +128584,1821624,86982 +128586,3013386,285245 +128588,0116883,54257 +128590,0119539,57548 +128592,3181822,241251 +128594,3007302,263105 +128596,0074788,223922 +128598,0090593,277416 +128600,1418754,253849 +128601,1710565,154326 +128604,2101383,86835 +128606,3544082,311291 +128608,2711898,320003 +128610,4135844,320001 +128612,4358230,319999 +128614,2735996,320004 +128616,3306858,311301 +128618,1037228,8906 +128620,4226388,320007 +128622,0872022,40243 +128624,4368334,323431 +128626,2042583,186976 +128628,2192900,248710 +128632,2802136,276839 +128634,0033760,23014 +128642,0099520,41816 +128648,2381046,244562 +128656,0093986,78691 +128661,0113752,107357 +128665,0159752,51854 +128669,0090323,46971 +128671,3409392,265228 +128673,2313189,176545 +128675,0113313,58028 +128677,0086636,38074 +128679,0072424,13397 +128681,0011833,175503 +128684,2370718,127853 +128686,2270802,259358 +128688,0972385,227383 +128690,3685818,315049 +128693,1338590,130805 +128695,2650978,248933 +128703,1303803,55567 +128711,0082476,107028 +128715,0346932,46806 +128717,3300942,265497 +128721,0118074,120122 +128723,0240628,2141 +128725,0353393,59191 +128727,3904272,318040 +128734,4438688, +128736,1571404,37058 +128738,0107961,39902 +128740,2405862,284568 +128758,0076242,74822 +128766,0068233,152635 +128768,0067710,122229 +128770,0065584,183962 +128792,0053707,142979 +128810,0058551,131507 +128812,1486843,213831 +128826,0074137,127092 +128830,1504691,66178 +128832,2474024,206296 +128834,0269604,11925 +128836,2654562,181454 +128838,2554274,201085 +128842,3829170,300803 +128844,0098962,30647 +128846,0195691,21585 +128848,0099137,100032 +128850,0092696,47631 +128852,0206636,17870 +128854,0200529,18128 +128856,1821384,322260 +128858,0054374,147415 +128860,0788026,26808 +128862,0427042,122023 +128864,4168188,303457 +128866,2640460,295914 +128868,0252488,31534 +128870,0170783,265910 +128872,0367495,26910 +128874,0095657,32601 +128876,0253614,31547 +128878,2375559,249772 +128880,3590482,299049 +128886,0071864,60430 +128898,2132374,214218 +128900,0137355,195862 +128902,1772382,105554 +128904,3252360,294826 +128906,1334313,37590 +128908,1466054,117098 +128910,2023473,85340 +128912,2937390,216652 +128914,3500822,259395 +128916,0132722,152797 +128918,1188112,55804 +128920,0110000,291325 +128922,0903849,13611 +128924,0012278,46510 +128928,0067987,95108 +128930,0074670,7392 +128942,1927124,326591 +128944,0119310,11425 +128946,1600409,158382 +128948,2763624,218393 +128950,0477991,91410 +128952,0104449,52868 +128954,1157658,134656 +128960,0090377,42081 +128964,1235537,83209 +128966,0067123,70322 +128968,0348124,15567 +128971,1123970,24633 +128973,1532413,84012 +128975,2637294,243938 +128977,0068535,78193 +128981,0283326,78274 +128985,0447619,21775 +128987,1043852,19106 +128989,1314237,18896 +128991,3723996,269711 +129003,3467440,268522 +129005,2246673,189204 +129009,2623502,170750 +129011,0195753,13590 +129013,0342317,13587 +129015,2191805,88318 +129017,2231646,277686 +129021,3552638,288313 +129030,2123170,326536 +129032,0847150,315010 +129034,1699762,98554 +129036,0075052,149347 +129042,0070599,104644 +129044,0076112,28656 +129046,0076312,81189 +129052,0123847,68635 +129056,0079486,175287 +129060,0067236,99449 +129064,2976354,300176 +129066,3069992,274805 +129068,1798108,228736 +129078,3877718,287509 +129080,1847629,95744 +129183,2517044,271164 +129185,0038155,117913 +129187,0039424,242240 +129189,0261277,69974 +129191,0066922,42590 +129193,3092606,218262 +129195,1781790,261985 +129197,0433649,54796 +129199,2395247,158150 +129201,1916749,121822 +129227,3596492,285176 +129229,2290553,286873 +129231,1071203,50714 +129233,3107070,285270 +129235,2399533,126331 +129237,0074703,44690 +129239,0076404,92309 +129241,0197042,81365 +129243,1309409,47110 +129245,0123976,58865 +129248,2436452,208028 +129250,2933474,325358 +129264,0098000,162821 +129268,0087284,4274 +129274,0075082,37455 +129285,0811137,96987 +129289,3360148,243881 +129291,1921179,306293 +129293,1434925,37858 +129295,0160339,129311 +129299,1605798,114155 +129303,2371287,179812 +129305,0263496,31355 +129307,0272362,45417 +129309,0261014,65364 +129311,0477392,13842 +129313,2392672,179150 +129317,0065148,2993 +129329,0202583,260907 +129333,2582426,278632 +129335,0114775,121493 +129337,0105328,6547 +129340,2852432,186975 +129342,3265462,229304 +129344,0280754,25320 +129346,1884457,146578 +129348,2265050,251987 +129350,2081194,165864 +129352,0914369,245025 +129354,2381941,256591 +129358,0369445,25745 +129360,3106464,221791 +129362,3675568,288789 +129364,1707380,246127 +129366,2004279,76532 +129370,2279373,228165 +129372,1841642,234212 +129378,0072007,69578 +129386,0062706,90015 +129389,0095289,41934 +129391,0144246,204090 +129393,1863280,125472 +129395,0110150,21742 +129397,2247732,119569 +129399,0251156,24665 +129401,1083858,17041 +129403,0104667,80343 +129405,1728217,85349 +129407,1499246,59596 +129409,0431764,38399 +129411,0429807,327924 +129413,0041506,195382 +129415,0475331,37028 +129417,0043412,211561 +129419,0053039,26296 +129421,0045807,146596 +129425,0228853,104549 +129428,2555736,268238 +129430,0044718,259183 +129432,0079488,38082 +129435,1951218,96631 +129437,2882328,191726 +129439,2992152,243919 +129443,2368056,253284 +129445,0100334,66584 +129447,0155833,57681 +129449,0104741,282624 +129451,0991174,113655 +129454,2945784,232610 +129456,0961206,146380 +129460,0077319,46448 +129466,0072595,121513 +129472,0063466,198772 +129474,0432373,14505 +129476,0279901,117212 +129478,0848243,113300 +129490,0069427,28801 +129506,0088108,28771 +129510,2088974,201124 +129512,0864911,40419 +129514,0963207,13643 +129516,0043927,65534 +129518,0498125,70989 +129520,0428940,59163 +129522,0119522,38017 +129524,0478687,54064 +129526,0425125,10119 +129528,0390425,118180 +129530,1157718,126729 +129532,1185393,63585 +129534,1571409,59110 +129536,0098544,31292 +129555,0034208,218305 +129640,0289045,83909 +129644,3181314,233863 +129646,0076410,69517 +129651,1855924,160874 +129653,1710393,220620 +129657,2401097,290764 +129659,2097298,228203 +129661,0072710,105156 +129667,2475492,173168 +129669,2925642,245158 +129671,1207926,55433 +129673,2095713,207766 +129675,2909116,309302 +129677,0289596,110779 +129699,0069732,119884 +129701,0050717,31243 +129703,1271973,104848 +129705,3356434,285595 +129707,2918436,243940 +129709,0042033,241754 +129713,0094683,47985 +129715,3088362,298396 +129717,0169548,63067 +129719,0166556,38396 +129721,0252985,50531 +129723,0461179,66700 +129737,2358925,239573 +129739,3745620,298040 +129741,1576434,165586 +129749,2935564,197950 +129751,0083743,104435 +129763,0074494,67883 +129767,0070553,260912 +129769,0077376,128588 +129771,2382422,223954 +129773,1826660,132759 +129775,0756618,17470 +129777,0988035,91443 +129779,2636124,196750 +129781,2667918,259956 +129784,0100070,45179 +129786,1433810,54890 +129788,2359810,191121 +129812,0347623,83912 +129814,0065374,106326 +129816,0098606,59050 +129818,3326366,246743 +129820,3233418,264337 +129822,4397346,324260 +129826,4189260,322456 +129830,1620449,50135 +129832,1210117,78124 +129834,4006794,287233 +129836,0000499,2963 +129838,0899052,132426 +129841,2776106,174372 +129843,2277946,269200 +129845,2295722,270938 +129847,0134770,161267 +129849,1604139,195186 +129851,0241373,33229 +129853,1850418,75861 +129855,1646127,59015 +129857,2379318,197936 +129859,2048804,73530 +129871,0128345,105149 +129873,0198508,195020 +129875,0195154,230606 +129877,0071326,105232 +129879,0073491,105384 +129881,0160105,260839 +129883,0070062,105145 +129885,0169787,199985 +129887,0310741,157152 +129889,2719094,205865 +129905,1674778,209032 +129907,1671457,76226 +129909,3118696,213983 +129911,1165293,86321 +129913,0449092,91908 +129915,1517163,181999 +129917,0064223,36785 +129919,0071897,127424 +129921,2125439,84176 +129923,1426357,102807 +129925,3645074,288312 +129927,1346973,125344 +129929,0949863,44570 +129931,0806125,213598 +129933,3172520,216790 +129935,2139919,97607 +129937,2199571,241554 +129939,2363181,257912 +129941,0052330,48775 +129945,1844763,139571 +129947,0067418,48207 +129949,3030354,326057 +129951,2548738,250668 +129958,2475454,201777 +129978,0058882,38681 +129980,0060790,317683 +129994,0147374,107068 +129996,0073845,200867 +130016,0037024,29094 +130034,3331846,265712 +130036,1270114,294690 +130038,1614456,66164 +130040,0085951,49239 +130042,2149360,138941 +130044,2420756,254193 +130046,2385074,144204 +130050,1991031,279972 +130052,1780798,112454 +130054,2246909,137370 +130056,3785740,324279 +130058,3432260,330275 +130060,0885484,142528 +130062,0881233,59346 +130064,1568863,85025 +130066,2253939,135281 +130069,3110770,291362 +130071,3171764,260030 +130073,1661199,150689 +130075,4007502,326359 +130077,2866660,283302 +130079,4139412,321644 +130081,3013588,263281 +130083,2917388,228968 +130085,3717510,319975 +130087,3203616,238215 +130089,4377918,327225 +130097,0031045,99909 +130101,0027345,43871 +130103,0807745,31341 +130107,0059014,5065 +130116,2393817,171045 +130128,0045331,124521 +130146,1669560,110965 +130152,0047067,32941 +130156,0104402,76794 +130170,0095357,48719 +130173,0226009,40681 +130185,0033808,65506 +130196,2195490,133601 +130198,0078024,163631 +130204,0095836,70202 +130208,0095877,48457 +130217,0042952,25548 +130219,2258647,72003 +130231,0119931,169158 +130233,3120054,253283 +130247,4406298,323555 +130259,1715876,137960 +130261,0044649,46586 +130267,0006753,200324 +130269,0367854,35946 +130275,2766004,264553 +130284,0124296,45197 +130290,2363178,193523 +130292,3215346,236314 +130294,3826814,295058 +130296,4212378,305450 +130298,3730228,300364 +130320,3570168,324436 +130324,1059233,38445 +130326,3720382,325205 +130328,0126220,13923 +130332,0074593,55784 +130338,1156528,89531 +130340,0355029,88418 +130342,3420534,256306 +130344,3103318,215637 +130347,0287337,14733 +130349,3013528,228558 +130351,1185418,70027 +130356,0202236,77787 +130372,0068367,69576 +130374,4058426,328233 +130376,1027683,47467 +130378,1764285,221488 +130380,0205722,69999 +130382,1485749,121830 +130384,1587807,39522 +130386,0156789,154140 +130388,1331297,193229 +130390,1001548,13277 +130392,2281345,97899 +130394,0025477,67654 +130396,0102439,47432 +130398,0960835,25055 +130400,0477404,101904 +130402,0301083,31347 +130404,1172995,71591 +130406,0076068,40261 +130408,0081443,264321 +130420,0070497,103432 +130422,0053900,28784 +130424,1815782,72993 +130436,0061565,90086 +130442,2147459,199578 +130444,2418558,175774 +130446,0479000,75028 +130448,1029360,243688 +130450,3332064,266647 +130452,1791682,252512 +130454,0378357,45148 +130458,0330760,40113 +130462,2443822,257444 +130466,4300028,328346 +130468,2122313,272634 +130472,0078820,100205 +130474,0900387,271674 +130476,0158560,59414 +130478,3711466,267481 +130480,0039482,27035 +130482,0041968,27036 +130488,2553424,253307 +130490,2908446,262500 +130492,3495030,325138 +130494,1375669,82448 +130496,2088003,230179 +130498,0120471,39385 +130500,0235532,142408 +130502,0364109,78258 +130504,0073535,40180 +130506,2358911,118412 +130508,2210479,113082 +130510,2358913,144288 +130512,2891070,271724 +130514,0115387,30496 +130516,1286151,18815 +130518,0468445,213110 +130520,2224026,228161 +130522,0147926,20377 +130524,2272918,261375 +130526,1534786,69619 +130532,0136225,62243 +130538,0066942,252714 +130540,0067849,252888 +130544,0189593,125990 +130552,0071548,252144 +130554,0072401,128364 +130560,0074085,82598 +130562,0078035,216153 +130572,0088077,181269 +130574,1327601,260947 +130576,2649554,245703 +130578,2515034,266396 +130580,3720788,275060 +130582,1531924,276401 +130584,2133333,199647 +130586,0095386,38198 +130588,2515030,255343 +130596,0067276,74746 +130604,0064624,47570 +130608,0065595,30792 +130614,0180396,48691 +130618,3848892,314389 +130622,3148952,255890 +130626,1569488,136070 +130628,3318220,244063 +130630,2199543,227975 +130634,2820852,168259 +130636,3713166,277685 +130638,3129484,246308 +130640,1844025,140441 +130642,2944198,228973 +130644,1278060,23155 +130648,0068235,59098 +130656,0065506,284013 +130672,0076726,255843 +130674,0081459,79823 +130680,0076398,26113 +130682,2207484,256030 +130684,3520418,291272 +130686,2118624,293970 +130692,0064924,73612 +130730,0079118,10580 +130734,0082806,69165 +130738,0100100,87122 +130746,0086987,5896 +130748,0099656,31281 +130762,0091862,23504 +130768,0207377,57219 +130784,1498878,87178 +130788,0089565,70903 +130794,0092626,49038 +130800,0093993,71750 +130804,0099606,51434 +130808,0098205,38652 +130812,0064625,117424 +130822,0078333,120386 +130824,0091603,42030 +130828,0066156,174383 +130834,0092822,163630 +130836,0106902,28263 +130838,0098638,173638 +130840,3395184,241855 +130842,4475970,327029 +130844,0084182,81475 +130846,0062732,121052 +130848,3489470,266537 +130850,1925466,276901 +130852,1344811,302465 +130854,0387057,79570 +130856,0494826,48376 +130862,3093522,240745 +130866,0107037,169656 +130878,2043832,137222 +130882,0119639,83361 +130894,3496892,267793 +130900,1389781,19318 +130912,1860359,136190 +130914,0079855,94874 +130922,0077357,106682 +130954,1205492,8371 +130956,1014763,181283 +130958,0143338,78402 +130960,0468463,39041 +130962,0467475,105766 +130964,1753792,74119 +130966,0079757,118083 +130968,0085320,149926 +130970,0484855,13015 +130972,3152130,264357 +130976,2182001,184155 +130978,0087650,32334 +130980,2634236,137221 +130982,1785670,81022 +130984,0208423,317168 +130986,1351770,165027 +130988,2639254,283227 +130992,0128332,31413 +130994,2275549,108540 +130996,0103790,45777 +130998,0070245,52980 +131000,0070244,52874 +131002,0226018,64912 +131004,0071696,52979 +131009,0118678,9527 +131011,0069109,79572 +131013,2561572,257091 +131015,1430116,143928 +131017,4530184,326665 +131019,3496372,322518 +131021,2417560,161064 +131023,3892434,305091 +131025,0049029,130100 +131027,0181396,53915 +131029,3061534,328032 +131031,0067344,96217 +131050,1483803,80527 +131052,0092196,259616 +131054,0372238,35177 +131056,0446009,1269 +131058,1754455,51450 +131060,0890888,1419 +131062,0825279,14642 +131066,1629374,79433 +131068,0429080,81086 +131070,2278988,133396 +131072,1920976,150056 +131074,1572309,61104 +131076,0384576,11207 +131078,0127458,257734 +131080,0465940,16119 +131082,1161051,167161 +131084,0428646,11651 +131086,0384252,204712 +131088,0385891,11179 +131090,2041385,79361 +131092,0371823,21385 +131094,0137201,33719 +131096,1639093,114438 +131098,2204315,238302 +131100,2389530,130798 +131102,0077204,50166 +131104,0064146,33436 +131106,0284946,5833 +131108,0119170,78694 +131110,1640103,333324 +131112,0378417,12128 +131114,1730701,71191 +131116,1350940,15713 +131118,0429095,10659 +131120,0213268,96872 +131122,1201143,48411 +131124,0293124,1615 +131126,0427219,1616 +131128,0113081,11084 +131130,1114698,24696 +131132,0119471,9497 +131134,0102396,2169 +131136,0258827,9337 +131138,0780568,6172 +131140,1780856,78313 +131142,0111640,9673 +131144,0118138,9514 +131146,0184005,9496 +131148,1661461,73770 +131150,0461642,10036 +131152,0059171,233438 +131154,0202806,11664 +131156,0295375,9572 +131158,0102397,1915 +131160,1242522,51880 +131162,3028412,258751 +131164,2109059,208982 +131166,1489097,56771 +131168,2764784,254578 +131170,3479316,328595 +131172,2626926,160171 +131174,2058617,287422 +131176,3305316,254200 +131178,3302594,265563 +131180,3816458,293771 +131186,0064259,272162 +131192,2536436,179053 +131196,0046722,138486 +131202,0378565,44119 +131206,0031133,153162 +131231,1645916,301225 +131233,0097964,214447 +131237,1595366,35428 +131239,1747994,91628 +131241,0239450,9478 +131243,0304931,10470 +131248,0465925,10010 +131250,0248409,9565 +131252,0289477,9677 +131254,0466713,4436 +131256,0277703,9274 +131258,3485166,285213 +131260,0249110,32099 +131262,1724965,286971 +131270,2952602,290864 +131272,0337660,22489 +131274,0093164,42023 +131282,0071638,202639 +131294,0079652,29582 +131305,0092863,27662 +131316,0056957,15469 +131341,0080917,112739 +131347,0064577,114116 +131353,0082145,167262 +131357,0081264,204737 +131361,0078294,120520 +131369,0066114,257574 +131378,0078067,17212 +131382,0072651,22365 +131386,0043967,29254 +131389,0117534,15674 +131391,0056435,183218 +131393,1053918,20893 +131419,1093906,46368 +131427,0013802,184267 +131429,0038172,52827 +131431,0039306,36335 +131433,2468774,140212 +131437,1984208,75006 +131439,2393845,237756 +131442,3563782,276904 +131444,3029556,221732 +131446,3029558,221731 +131448,2016335,323967 +131451,3280916,299551 +131453,2332831,106717 +131457,3469592,294993 +131464,2027136,146229 +131466,4141260,294991 +131470,1958043,293572 +131472,3506302,253376 +131474,3138558,265019 +131476,4177742,299588 +131478,3484800,314065 +131480,2548208,298093 +131482,1380152,15286 +131484,1334536,50288 +131486,1854580,267457 +131496,3290882,274815 +131498,2473624,257134 +131500,1339098,77586 +131502,2861532,214135 +131504,2006181,228426 +131506,0439581,53252 +131508,0160550,73534 +131516,0079520,53435 +131522,3400688,288618 +131524,3403776,259843 +131530,2186883,129115 +131532,2336361,126883 +131534,1158308,84925 +131536,2335740,255253 +131538,0319031,255979 +131540,0095812,67183 +131546,0091173,61117 +131548,0087385,52736 +131550,1370212,37573 +131554,0127311,83567 +131556,1961675,101995 +131558,1714014,54424 +131560,1558877,35964 +131562,0167400,124611 +131564,0076201,270336 +131566,0290312,270409 +131568,2205501,138767 +131570,1568343,254023 +131578,0107930,44664 +131582,0095384,110538 +131584,3576072,264763 +131586,4007554,293126 +131588,0077895,60029 +131590,0091165,52117 +131594,0091387,148833 +131596,0119598,57683 +131602,0094592,163523 +131604,0186910,82401 +131620,2088865,296095 +131622,0078054,70349 +131626,2523756,300690 +131628,2608030,257214 +131630,0088025,88338 +131634,0099212,49497 +131638,0089647,169379 +131640,0086161,142216 +131644,0078960,46578 +131646,0319147,62545 +131648,1758770,177354 +131650,0075208,27200 +131652,0355473,12601 +131654,1583265,151123 +131656,2872750,263109 +131658,1969062,244539 +131660,0460012,62678 +131670,0082956,14630 +131674,0090818,58507 +131682,0089762,57308 +131684,0089820,46830 +131686,1404386,101968 +131688,0099664,59798 +131690,0099138,16217 +131706,0081611,210777 +131710,0115656,134308 +131712,1712187,58219 +131714,2493486,308504 +131716,2063011,83706 +131718,1332486,40817 +131722,1479183,72024 +131724,4299972,321640 +131726,2555302,296029 +131730,0088195,85598 +131739,4324274,321528 +131749,2922440,268523 +131751,2361846,228692 +131769,0089997,38981 +131775,4083770,305310 +131777,0072173,151141 +131786,0095381,31448 +131788,0094037,51743 +131794,0097905,90888 +131796,2404425,304357 +131798,0181012,29611 +131808,3591984,283703 +131812,0379487,50220 +131816,3449252,248808 +131818,0838164,33370 +131820,3033948,328763 +131822,0114523,11677 +131824,0089656,10146 +131826,4073952,320996 +131828,3983738,301304 +131830,3399024,269148 +131832,0426148,18506 +131834,3141866,231401 +131836,0395474,13584 +131838,2551492,158455 +131840,0073601,111149 +131842,1661820,276902 +131844,3135362,284189 +131846,0316788,51883 +131848,0382295,9803 +131850,3609402,332356 +131852,0022103,156329 +131854,0318181,41422 +131856,0379265,79908 +131870,0091631,119592 +131872,0094941,24626 +131880,0091969,27886 +131884,0087837,104043 +131886,0089912,79054 +131888,0088255,84997 +131914,0094946,93937 +131920,2962876,228108 +131932,0091534,38916 +131934,0089538,30296 +131936,1272051,36696 +131950,0075815,56379 +131960,0086985,47946 +131962,1272010,334651 +131964,0052680,43030 +131966,0058863,31344 +131980,2876428,242575 +131994,0096239,98308 +131996,0093778,30643 +131998,0082812,54118 +132008,0192573,58242 +132010,0068207,107287 +132012,1648204,65218 +132014,0091927,116521 +132018,0089974,77850 +132024,0093201,71697 +132036,2404555,188826 +132040,0080465,8490 +132044,0156413,85230 +132046,1964418,158852 +132048,3560546,294083 +132050,0076725,37582 +132052,0064192,322460 +132054,0460557,107525 +132056,2376218,255157 +132058,2523600,167221 +132060,2936470,229328 +132062,0898897,136345 +132064,3837070,330588 +132066,3112966,215658 +132068,2936180,283708 +132070,3481232,253639 +132072,3665860,323016 +132074,3399112,250665 +132078,1854538,289126 +132080,3142260,320299 +132082,0344943,335141 +132084,0113638,335145 +132086,3135128,267623 +132094,0069064,74087 +132100,2023500,292262 +132106,1085515,19900 +132110,0092933,26574 +132112,3297330,253626 +132114,0144555,10370 +132116,0113523,158217 +132118,2977090,259958 +132120,0107147,59481 +132122,3344922,283698 +132128,3021360,243526 +132130,3061836,284270 +132132,2380564,186610 +132134,2368525,180418 +132136,2194826,312797 +132138,1510726,88744 +132140,1885265,62008 +132142,1462017,62730 +132144,3894190,283707 +132146,2543336,229182 +132148,4338148,321678 +132150,0182666,26569 +132153,2656588,253303 +132155,2339367,134662 +132157,3450650,256961 +132159,1867091,282313 +132161,1326247,32901 +132163,2118009,261273 +132165,2195552,312316 +132167,1692190,52629 +132169,1614408,54770 +132171,2137351,139302 +132173,3318750,287587 +132175,2075340,145474 +132178,1242527,19306 +132180,2495104,270654 +132182,3218580,269776 +132184,0051090,103199 +132186,4322280,328799 +132190,2690186,203072 +132192,2821430,247668 +132194,0059773,100351 +132196,1667146,132128 +132198,0130671,90509 +132206,0070836,195385 +132208,0065677,92233 +132210,0067446,77029 +132212,0068971,91255 +132214,0069761,92389 +132222,0051630,3164 +132234,0078231,52681 +132238,0109096,265741 +132249,0061667,281180 +132261,0067306,42495 +132264,0049472,91472 +132268,0089598,52212 +132270,2369600,301229 +132272,0093586,86269 +132275,0235413,61865 +132280,1679276,274415 +132282,0043359,86258 +132286,3334794,299353 +132288,0064627,92716 +132296,0083151,128043 +132309,0086593,47944 +132315,1094198,20036 +132317,2787834,165321 +132325,0067671,28855 +132327,0059933,128614 +132331,0097263,91683 +132333,3149640,278990 +132335,3365778,270400 +132338,2717318,259453 +132340,2917336,214464 +132342,0406941,38154 +132344,0297169,35703 +132346,0130192,43913 +132348,1197580,17669 +132352,1659216,164331 +132354,0035405,97829 +132356,3297792,281778 +132358,3742284,330431 +132360,1169809,19599 +132362,0124770,14572 +132364,3600950,260310 +132366,2404217,248087 +132368,2160163,94205 +132372,2157346,139862 +132374,0055336,75066 +132377,1552224,289720 +132379,0395441,294517 +132381,3541262,282631 +132384,0075950,32029 +132386,0072435,96337 +132388,0068384,55044 +132390,0064895,85644 +132394,0069385,144498 +132402,3402110,290865 +132404,0056661,75989 +132408,0089491,49823 +132410,0088176,154276 +132412,0083197,241939 +132414,0378011,246654 +132416,0416908,12697 +132418,3528666,329540 +132420,0166090,18068 +132422,3104930,278316 +132424,2726560,228205 +132430,2287170,272418 +132432,2186781,142115 +132434,1467388,52333 +132438,0086405,266331 +132442,2911668,284289 +132444,4115896,325382 +132446,3715406,284470 +132448,4114478,332759 +132450,2671980,228381 +132452,0884138,290043 +132454,1555440,254936 +132456,0456144,21461 +132458,3660770,295592 +132460,4186548,315367 +132462,3622332,313074 +132464,1876349,114003 +132468,1773764,128207 +132470,0041460,35852 +132472,2361700,201132 +132474,1356395,28904 +132476,2098791,194883 +132478,0106671,46808 +132480,1655441,293863 +132482,2252552,297702 +132484,3458236,250756 +132486,2387513,132342 +132488,2404299,319389 +132490,0439783,174615 +132492,3838978,329241 +132494,3607812,261906 +132496,1772288,256924 +132516,0142633,143525 +132518,0420560,21891 +132520,3369350,333089 +132522,1638979,70758 +132524,3804114,283691 +132526,1645774,95056 +132528,1229236,44216 +132530,0064494,87503 +132534,3662904,336018 +132539,0080440,26503 +132545,1381767,37932 +132547,2523832,325113 +132549,4270516,309304 +132551,3112654,248611 +132553,0022440,131455 +132555,1501757,39185 +132557,1493941,54735 +132559,1493940,54732 +132561,3682160,265330 +132563,3121050,214074 +132565,0950500,26687 +132567,0189981,13892 +132569,4504452,333103 +132571,1032747,21383 +132575,1777595,197583 +132577,1754177,73529 +132579,2423504,122662 +132584,0327698,50794 +132586,2006869,111771 +132588,2534660,262009 +132590,2171902,250745 +132592,2461034,168864 +132594,1837562,300155 +132596,0080513,60591 +132600,0081975,77128 +132604,1158278,27698 +132606,0196025,252845 +132608,3202120,250349 +132610,0363277,50113 +132612,1538988,108309 +132614,3539664,261860 +132616,3499458,312793 +132618,2044801,192712 +132622,1979269,80530 +132624,4047350,296941 +132626,3972398,290300 +132628,4018690,311627 +132630,3120408,297270 +132632,2483260,175112 +132634,2104080,100830 +132636,1542930,118762 +132638,0119863,44706 +132644,1861445,289723 +132646,0974662,28969 +132648,3488462,269258 +132650,0304564,36897 +132652,1434435,101669 +132654,0061038,45190 +132656,4437640,327418 +132658,3662066,321030 +132660,3064298,332340 +132662,1368070,72953 +132664,0085335,63573 +132666,3657420,290304 +132668,1112097,144097 +132678,0064193,107321 +132686,0028842,31899 +132690,0050087,86768 +132711,0808348,56555 +132723,0051066,204686 +132725,0056646,134608 +132727,0056918,170315 +132735,2090629,309889 +132739,0486597,18819 +132741,0816527,10037 +132751,0049955,118549 +132753,0059837,48136 +132758,0068950,56153 +132760,0070844,155597 +132766,0093650,56134 +132780,2281591,266689 +132784,0069944,54388 +132788,1951133,96087 +132790,1014766,59810 +132792,3567200,253262 +132794,3477752,328252 +132796,2126355,254128 +132798,3319920,241257 +132800,2788716,284537 +132806,0028836,242332 +132808,0030168,79968 +132816,0069156,63187 +132826,0063660,92705 +132836,0071362,155128 +132844,0076632,63029 +132846,0043142,28663 +132860,0071135,59873 +132870,0086074,109279 +132874,2043979,89156 +132877,0378936,259180 +132879,0200173,125889 +132883,1441953,284689 +132888,3098812,300302 +132894,0124312,90171 +132896,0378549,258630 +132898,0124899,89315 +132902,2444946,173205 +132904,1550557,105972 +132906,3625152,321494 +132908,0077497,39412 +132910,0085486,40978 +132912,0092962,146047 +132914,0095094,61108 +132916,0072930,40348 +132918,0074478,39965 +132922,0074473,28682 +132926,0075987,28325 +132936,0084869,28574 +132938,0195192,153035 +132940,0075085,89817 +132942,0035713,84708 +132944,0035124,99545 +132946,0153487,294085 +132948,0207415,166260 +132950,0220832,146270 +132952,0200087,31524 +132954,3741860,290504 +132958,2732932,174351 +132961,2935476,250734 +132965,3077108,249916 +132967,1398991,121929 +132969,2095684,84300 +132971,3089326,282983 +132975,1247658,139215 +132977,3148834,202575 +132979,2371486,134126 +132981,2180333,137955 +132987,1928335,150230 +132989,2510028,259611 +132991,3697566,265851 +132993,3103576,214093 +132995,1242423,71394 +132997,3612032,259072 +132999,0060608,107184 +133001,0061011,182067 +133047,0093090,30997 +133055,0084036,28678 +133067,0075720,52809 +133071,0075852,52810 +133073,0075352,53155 +133075,0074952,94809 +133077,0075152,52808 +133079,0073051,28489 +133081,0135026,105859 +133083,0134821,3701 +133089,0067696,3699 +133109,0169810,260857 +133115,3699674,268159 +133117,2232578,215946 +133119,2350852,290656 +133121,1227789,92397 +133123,0426955,15165 +133125,0450982,13284 +133127,0383206,15016 +133129,4215332,316322 +133131,0795338,21705 +133133,2066832,73456 +133135,3921852,285733 +133137,1800254,57737 +133139,0859594,13002 +133141,2396690,129533 +133143,1294138,13004 +133145,1610301,34134 +133147,1092053,13283 +133149,2197823,91342 +133151,1484922,23566 +133153,2630134,168903 +133155,1314715,13459 +133157,3504064,255718 +133159,2946582,196254 +133161,1398940,16418 +133163,1007920,16962 +133165,0775425,13285 +133167,0313255,15015 +133169,0480345,15906 +133171,3321254,227200 +133173,1201561,18198 +133175,0313254,136215 +133177,0060298,53019 +133179,0066168,56858 +133181,0058600,33447 +133183,2554946,325557 +133185,3547740,304410 +133187,0213688,98297 +133195,2679042,249070 +133197,2632340,237718 +133199,0092238,96349 +133201,2150006,104513 +133203,1935193,68370 +133205,2833398,216989 +133207,3804556,289339 +133209,0116891,54002 +133215,1094584,21671 +133217,4312536,335819 +133219,1216515,44683 +133221,0073340,37339 +133223,2307002,218670 +133225,3231010,240704 +133227,0020693,183832 +133229,3717068,290815 +133231,1418757,200918 +133233,2343158,174378 +133235,2854894,227325 +133237,1590013,135214 +133239,2167056,209556 +133241,2210834,160768 +133243,1301130,287815 +133255,2472432,193418 +133259,0420333,38911 +133262,1567279,173911 +133264,0062792,75947 +133270,3427772,298634 +133274,1610444,268015 +133276,3399916,283322 +133279,3213062,232351 +133281,3623726,275601 +133283,1227797,44720 +133285,2979638,284581 +133287,1950222,113374 +133289,2538128,182228 +133291,2630916,288931 +133293,0090251,85129 +133295,3845960,314407 +133297,1806910,171755 +133299,1478433,256562 +133301,1474579,256328 +133303,1662514,55194 +133305,0162211,65252 +133307,2120160,111173 +133309,0078517,64316 +133311,1649416,201867 +133313,3137552,221418 +133315,2124998,84350 +133317,1834234,89595 +133319,3393198,320179 +133321,2952438,305022 +133323,2182169,128766 +133325,1707818,57510 +133327,0064590,158443 +133329,1541153,133741 +133331,1495776,179159 +133333,3345206,253291 +133335,1492959,75910 +133337,0263868,49785 +133339,3781762,332286 +133343,0939684,42413 +133345,0035009,110980 +133347,1930463,330115 +133349,4163668,316715 +133353,0081055,42156 +133355,0096852,77352 +133357,4136056,320882 +133361,0063845,64714 +133365,3155242,306482 +133367,2660332,168758 +133369,0134805,153737 +133371,1651062,60170 +133373,0068179,240607 +133375,2077772,149868 +133377,3327624,301728 +133379,1584943,205466 +133381,2372776,130612 +133383,3417756,284305 +133385,1488594,101852 +133387,3904770,285581 +133389,3767372,332835 +133391,4234734,326923 +133393,3323314,265934 +133397,2090488,164286 +133399,3398436,252596 +133401,3157466,313096 +133404,0130508,273879 +133407,1534017,54466 +133409,0090702,147055 +133413,1692084,89857 +133415,3328092,323214 +133417,3672640,327476 +133419,2848292,254470 +133421,0273244,59839 +133423,0069460,62363 +133429,0074570,121927 +133437,3187076,223895 +133439,3631430,264471 +133441,2246924,241553 +133455,0062205,46568 +133457,0062151,46443 +133463,0065104,61738 +133473,0282100,44488 +133489,0066923,97987 +133493,0066908,107193 +133501,0079248,218772 +133505,0065226,94527 +133507,2318440,136368 +133509,3526160,266621 +133531,0068742,96793 +133533,0063237,139170 +133539,0428283,75193 +133541,2150543,190795 +133543,3062414,261033 +133545,2980472,258099 +133547,4341806,337101 +133555,0098659,108969 +133557,0089383,187219 +133561,0065133,259550 +133569,0110500,1481 +133571,0094015,174754 +133573,0014446,175869 +133575,0017813,50868 +133577,0019607,50922 +133579,0336678,67025 +133581,3074610,214138 +133583,3704352,330544 +133585,0060594,147287 +133591,0060529,9646 +133593,2088745,266442 +133600,0026739,27998 +133602,3042800,277662 +133610,0061023,127142 +133624,0005149,208517 +133626,1910608,191829 +133628,0050547,242629 +133630,0025393,188465 +133638,0037404,257084 +133643,2126403,193524 +133645,2402927,258480 +133647,4503900,333382 +133649,2151885,120370 +133651,1540868,147841 +133653,3205394,313867 +133655,1634013,57419 +133657,0117412,31789 +133667,0092851,61777 +133671,2759372,201419 +133673,2395228,173165 +133675,0397312,69129 +133677,2583020,129360 +133679,2075373,134255 +133689,3488328,326284 +133691,2488042,218482 +133693,1800338,242065 +133695,3614516,241882 +133697,1261047,21625 +133699,0400234,28740 +133701,0250214,48842 +133703,1345734,17593 +133706,0103900,55033 +133708,4311466,305088 +133710,2325977,245846 +133712,0076727,31139 +133714,2050634,123969 +133716,0055400,42279 +133718,0488832,191608 +133720,1726889,78478 +133722,1761005,257521 +133724,3587064,298830 +133727,2400441,276550 +133729,0096119,34312 +133731,1799508,118612 +133733,0489751,127326 +133735,0366227,58301 +133737,2610862,222885 +133739,0058361,148782 +133741,0095441,71393 +133743,2403899,123949 +133745,0117439,51268 +133747,1935302,145221 +133749,3036548,215976 +133753,2076346,297362 +133757,0061748,76018 +133759,1043844,40537 +133761,0054095,102165 +133767,0109117,58128 +133769,0242519,21614 +133771,3464902,254320 +133773,3881768,322766 +133775,0122116,88937 +133778,3163304,287483 +133780,3499048,256057 +133782,1881002,287424 +133784,0078398,28746 +133792,0067956,103067 +133796,0316763,14067 +133798,2967224,268920 +133800,0066216,41051 +133802,3205376,223485 +133804,2327453,138502 +133806,2798456,259830 +133808,4003774,291854 +133810,0848552,24632 +133812,0097818,169844 +133814,0437325,84572 +133816,0104822,65497 +133818,0081145,193387 +133820,1253596,40774 +133822,0089593,35564 +133824,1883367,94365 +133826,0104870,87321 +133828,0117061,291613 +133830,0110543,103675 +133832,2403021,171424 +133835,3696804,337210 +133837,2196430,113040 +133849,0393684,182424 +133851,2422326,167649 +133853,0059025,33382 +133859,4239548,310319 +133861,0075249,21554 +133863,3121096,215520 +133865,3122764,337944 +133867,1731701,248574 +133869,3321300,292040 +133871,0062502,61041 +133873,2534634,322488 +133875,1813327,56959 +133877,0079319,75162 +133879,0060330,5061 +133881,0121403,63625 +133883,2298416,190853 +133885,3692768,261039 +133887,3164198,261857 +133891,2075223,91584 +133893,0778631,17566 +133895,2404370,224303 +133897,3152602,283704 +133900,0126908,104146 +133909,0029952,115384 +133911,0031124,140470 +133915,0028669,140418 +133919,0031125,74314 +133921,0029951,125873 +133923,0028667,38433 +133925,0028670,140472 +133945,3312868,321769 +133951,0043587,118575 +133964,2872570,294544 +133966,0371878,48643 +133982,0300470,61803 +133986,0025844,236395 +133988,0194422,52051 +134004,0439876,25973 +134006,0046468,132641 +134009,0049973,59142 +134011,0017809,47590 +134013,1881060,165567 +134015,0011193,32683 +134017,4657764,334132 +134019,0059855,47759 +134021,2486678,259954 +134023,2219650,291817 +134025,1739304,334130 +134029,0118949,32648 +134033,0089776,170033 +134035,0039372,35401 +134041,0072613,20870 +134043,0065457,95431 +134045,0128960,107705 +134049,0093455,239386 +134057,0169815,156145 +134059,0068539,46567 +134069,2547942,277778 +134071,0062428,83444 +134073,0062907,109774 +134077,0070262,38359 +134079,0066124,83475 +134083,0057694,27862 +134085,0123186,27922 +134087,0079619,83446 +134089,0059529,53194 +134093,2192582,160833 +134095,0874952,104522 +134097,0494239,63717 +134099,0097118,118794 +134101,0416292,64483 +134103,0972546,179288 +134105,1224449,41703 +134107,0372478,23898 +134109,1217565,25936 +134111,0436254,64268 +134113,0148388,186634 +134115,0276613,40373 +134117,4547120,339533 +134120,0067907,110419 +134122,0063790,36530 +134124,0067321,3122 +134126,2497980,281418 +134128,2571226,259261 +134130,3659388,286217 +134152,0069229,22376 +134154,0067489,112355 +134156,3546370,276137 +134158,2948790,333381 +134160,2146960,109835 +134162,1075746,30778 +134164,0075656,86633 +134166,2266781,294862 +134168,3263690,250784 +134170,3472226,251516 +134172,1943765,151693 +134174,2062961,102596 +134176,1646979,58859 +134178,3447364,320295 +134180,3678782,323517 +134182,2556308,273886 +134184,1198196,20963 +134194,0198757,187771 +134202,1266093,240478 +134204,3697626,269494 +134206,0068369,82465 +134208,0051204,119687 +134210,0066372,37873 +134212,0053361,43112 +134214,3312830,310593 +134222,0049019,20806 +134224,0046561,247451 +134226,0052006,261419 +134228,0060662,198312 +134230,1324059,21297 +134232,0248185,46406 +134234,0323013,21175 +134236,0453729,21567 +134238,0190419,51216 +134240,0114234,21570 +134244,0088196,42098 +134246,3247714,334074 +134248,4382552,318256 +134250,0056357,45210 +134252,0080037,27937 +134254,0061434,337789 +134256,0177867,89330 +134262,0094899,154397 +134266,0090179,198240 +134268,0093120,122767 +134276,0086343,62558 +134278,0090200,92469 +134282,0079362,85602 +134290,0076853,75903 +134294,0073213,200331 +134322,0049475,65651 +134326,0080439,10986 +134328,0807006,119409 +134330,2797242,190940 +134332,0995031,19025 +134334,0419058,20359 +134336,0110546,109028 +134338,0490210,14394 +134340,0457875,87995 +134342,0432047,20968 +134344,0437238,20364 +134346,0384491,150922 +134348,0118751,33125 +134350,0039757,30162 +134352,0109010,33124 +134354,0291376,33457 +134356,0120456,166259 +134358,3242756,339992 +134360,4137596,323384 +134362,3796936,334088 +134366,1847687,119172 +134368,3079380,238713 +134370,3230162,265193 +134372,0038123,43269 +134374,0823671,13179 +134376,0277663,69921 +134378,2896036,209415 +134381,2296857,314555 +134383,0358647,38608 +134385,0800159,80136 +134389,0083865,96411 +134391,0050325,270015 +134393,3152624,271718 +134395,0061431,29510 +134398,0880570,26861 +134402,2651916,229702 +134405,0090383,58611 +134407,0091925,43211 +134409,0091148,38262 +134411,0093645,58615 +134413,0093869,58613 +134415,0164519,57918 +134423,0099293,43646 +134425,0102668,173177 +134427,0103991,43648 +134429,0129161,61303 +134433,0159611,43649 +134437,0113841,75001 +134449,0087971,38285 +134453,0189021,43571 +134459,0084782,121516 +134469,0081536,75336 +134487,0190591,82066 +134493,0072871,87709 +134495,0192427,279568 +134497,0072009,139563 +134499,0087798,49352 +134501,0403888,246917 +134503,0091671,39895 +134505,0889222,2197 +134507,0060092,101029 +134509,0066914,19095 +134511,0097364,30993 +134513,0077917,103612 +134515,0085204,17381 +134517,0083959,42251 +134519,3970854,264525 +134521,3474994,268100 +134524,3817848,280276 +134526,0780660,86700 +134528,1243974,222936 +134530,1109488,44486 +134532,0065224,39309 +134536,2275813,132551 +134538,0064091,34449 +134540,0019451,79757 +134549,1565068,98120 +134551,2042443,135695 +134553,2456720,161545 +134555,3237406,250235 +134557,2343371,173847 +134559,2402565,169683 +134561,2867096,190627 +134563,3066270,231176 +134565,1808015,53319 +134569,1767372,245906 +134571,0459516,69520 +134575,3374966,239877 +134579,2368749,126315 +134581,1539489,84196 +134583,3132632,316067 +134585,2278284,158589 +134587,2182972,244783 +134589,3311588,253267 +134591,3402078,300179 +134593,0379370,21265 +134595,0116749,126969 +134597,2893780,245527 +134599,0070283,47246 +134601,3966544,279992 +134603,2215221,159967 +134605,0384328,46923 +134607,0100712,146045 +134609,1075340,221171 +134611,0064542,46809 +134613,0075292,146030 +134615,0065180,47150 +134617,0013690,175518 +134619,0013823,146730 +134621,0210804,72204 +134623,0346900,26807 +134625,0110307,20333 +134627,0251590,70122 +134629,4627104,343070 +134631,2715446,231562 +134633,1691343,117452 +134635,0979917,46930 +134637,1480201,21535 +134639,2493386,199374 +134641,3776402,262311 +134643,0406728,9288 +134645,0447383,78696 +134647,0775461,51604 +134649,2106744,150473 +134651,1579232,76101 +134653,1543017,61035 +134657,1935742,223932 +134659,0064425,2462 +134661,0092797,66135 +134664,2229377,176077 +134666,0068200,53780 +134678,2766268,262788 +134680,4359416,320006 +134684,0101609,37307 +134687,0028799,106113 +134689,0037737,191487 +134695,0048217,202198 +134697,0222167,38309 +134700,2199436,334440 +134702,2718442,294483 +134704,1985970,296192 +134706,0840305,296194 +134708,1865333,329243 +134710,3883282,279960 +134712,4137324,298664 +134732,0029593,43419 +134740,0027395,112618 +134745,0227858,115572 +134747,0061556,14755 +134749,0061594,105056 +134751,1778342,86412 +134757,0049432,127564 +134763,0061098,26357 +134775,3672840,300168 +134777,2176013,132316 +134779,1740710,74458 +134781,1667838,40777 +134783,1674771,188222 +134785,3573598,328483 +134789,0203620,107637 +134791,0011157,82576 +134794,0241218,146679 +134796,4393514,321109 +134800,4075520,328692 +134802,2481554,266718 +134804,3720672,304640 +134806,0066982,46359 +134808,3133722,343371 +134810,1919174,85581 +134812,2401181,254007 +134815,3017412,303281 +134817,0056060,85428 +134819,1037714,315850 +134821,3483194,270886 +134823,2584018,288980 +134827,1309178,69352 +134829,2902898,212481 +134831,1757831,217787 +134833,0474603,296206 +134835,0167320,107308 +134838,0061658,16247 +134840,1466069,99904 +134843,1756479,109463 +134847,1924273,86541 +134849,0045708,53210 +134851,2933544,286521 +134853,2096673,150540 +134855,2420166,289716 +134857,3922958,285851 +134859,2415458,307931 +134861,3043546,250556 +134863,1769383,141884 +134865,0066950,52721 +134867,1694542,58333 +134869,3057836,223249 +134871,1015471,206197 +134879,3253624,295595 +134881,0903657,271714 +134883,1372301,38248 +134896,0025942,122525 +134900,0128076,222517 +134904,0077206,260899 +134908,0073003,157683 +134912,0071883,111697 +134915,0476958,13803 +134917,2316868,192142 +134919,1426328,171769 +134921,2177180,273745 +134931,0211077,198657 +134935,1748158,75719 +134937,1185405,37203 +134939,1252486,41331 +134941,1524148,40657 +134943,1483020,81021 +134945,2599716,219572 +134947,1243971,40090 +134949,0890879,15956 +134951,2180503,192028 +134953,1192422,154793 +134955,1399584,87851 +134957,0307920,39060 +134959,0100946,5302 +134963,0080488,107052 +134967,0079211,59156 +134971,0076185,42220 +134973,0075114,68882 +134979,0075221,82114 +134985,0068641,79750 +134991,0067685,108535 +135003,0455906,90659 +135007,0063508,68816 +135015,0062080,58404 +135023,0060545,59336 +135027,0051034,79744 +135031,0049866,55960 +135033,1117636,54398 +135041,1972646,75442 +135061,0099836,105616 +135067,0134668,186630 +135079,0136416,99916 +135081,1541666,63687 +135097,0052921,195413 +135117,0088782,32728 +135127,2649128,174733 +135129,2008655,257039 +135131,3598222,277597 +135133,1951266,131634 +135135,3369806,272878 +135137,2120120,257344 +135145,1502397,38700 +135147,3433358,270919 +135151,4246092,321315 +135153,0049769,25506 +135155,0089477,60363 +135157,0065700,122268 +135166,2088735,157289 +135168,0084698,94066 +135170,0067580,42497 +135172,0050210,43248 +135178,1421361,325365 +135180,2467442,186079 +135182,2167393,168219 +135184,0107061,17189 +135186,0104045,59908 +135188,1548629,45133 +135190,2004304,286407 +135192,3456090,250653 +135194,1931549,72845 +135198,1585255,42293 +135200,3481000,338107 +135202,0114181,131934 +135204,2855648,215776 +135206,0091091,59843 +135210,0442001,245017 +135212,0438575,31073 +135214,0800205,26469 +135216,0193524,74849 +135218,2837366,220287 +135220,3097084,251227 +135222,0069807,30485 +135224,3483612,339367 +135226,2486880,259997 +135228,3512066,253309 +135230,3138192,289239 +135232,0077762,86210 +135234,0107838,16530 +135236,2247646,190868 +135238,3111626,316310 +135240,0115321,216037 +135242,3013258,222297 +135244,0397430,3056 +135246,0401088,30762 +135248,0206064,24020 +135250,0942378,62527 +135252,0282223,103014 +135256,0256466,71887 +135258,1249300,33871 +135260,0114188,28601 +135262,0117287,64265 +135264,0186726,34766 +135266,0271271,29742 +135268,0379060,34765 +135270,0211174,124134 +135272,0208101,70772 +135274,0274636,46004 +135276,0365149,124097 +135278,0790781,61717 +135280,1294969,14912 +135282,2064745,200487 +135286,0118909,92943 +135288,3168230,280996 +135290,0972542,22520 +135292,2567000,257109 +135294,2582752,23808 +135296,0087520,39978 +135298,2434800,175606 +135300,1509742,63774 +135316,0046705,43294 +135378,0070534,11048 +135380,0073541,11053 +135388,0076544,11055 +135406,2054815,95756 +135410,1748062,76112 +135414,2274064,128121 +135420,0139193,113284 +135422,2806908,220731 +135424,0423868,315893 +135430,1227637,55229 +135432,1728979,80177 +135434,3725284,314996 +135438,0075367,172014 +135440,0333388,60142 +135442,0020414,88018 +135444,1893195,85739 +135452,3295482,319188 +135454,1592503,57011 +135456,1024215,18839 +135460,1049406,153153 +135462,2357770,253315 +135464,2406422,217576 +135466,0457342,134890 +135468,3205630,320430 +135470,2545186,240581 +135472,2792346,223946 +135474,1309463,14406 +135476,1636727,44937 +135478,0325322,96382 +135480,4323536,333346 +135484,2318405,111237 +135486,0289213,60495 +135488,0250593,92208 +135490,0984204,14565 +135492,3973410,264038 +135494,2408040,222951 +135498,0390205,49214 +135500,2424988,337876 +135502,3183630,223706 +135504,1810683,256962 +135506,4056738,309425 +135508,4573800,343921 +135510,0071258,84450 +135512,0070832,8703 +135514,0410520,11218 +135516,0094262,28851 +135518,2140379,238615 +135520,3405714,321068 +135524,0133351,78338 +135526,0437856,212934 +135528,0092978,25318 +135532,1618442,274854 +135534,3850590,287903 +135539,3416042,335676 +135541,0892332,44511 +135545,3922754,300900 +135547,0093546,21840 +135549,1808518,207909 +135551,1734428,120194 +135553,1305890,25168 +135555,0476527,19620 +135557,3089778,251577 +135559,0006517,120664 +135561,0232002,297835 +135571,0138986,345896 +135573,0119147,108677 +135575,0205957,175553 +135577,0075357,114255 +135579,0083352,64305 +135581,0199389,30780 +135583,0341266,107937 +135585,2585562,139357 +135587,0266875,228012 +135589,1301698,19951 +135591,0476649,31983 +135593,0349333,74481 +135595,0080827,15724 +135597,1433562,30974 +135599,0897347,25329 +135601,1839596,79464 +135603,1230165,19672 +135605,0207161,20310 +135607,0066374,78233 +135609,0410603,57269 +135611,0400762,168501 +135613,1754000,74586 +135615,0475217,19342 +135617,0131110,94585 +135619,2427502,196032 +135621,2332883,276909 +135623,3532608,256273 +135625,2124787,277558 +135627,2769184,299939 +135629,1675197,43083 +135631,0473103,38546 +135633,2215457,224087 +135635,0464059,13733 +135637,1386741,38238 +135639,1355235,32782 +135641,0068941,73147 +135643,2364897,293452 +135645,0875148,163406 +135647,0096282,32038 +135649,1692227,83388 +135651,3212392,257407 +135655,0197626,92657 +135657,0443057,102368 +135659,0239723,32742 +135667,0382711,58089 +135669,2952634,215741 +135673,0089529,60202 +135677,0078012,45004 +135679,0069094,58545 +135681,0065662,56366 +135691,0374212,201913 +135693,2836376,220153 +135695,4703660,341176 +135697,3349884,251028 +135699,3733678,338100 +135701,3547900,279977 +135703,2062989,97082 +135706,0003471,96128 +135709,0085665,69160 +135713,2338874,219666 +135715,0492896,81434 +135717,2841572,282502 +135725,0248428,109001 +135727,0431619,80880 +135729,0110438,46403 +135731,0251756,166255 +135733,0102701,140883 +135735,0477857,33460 +135737,0211126,155308 +135739,0201470,108665 +135741,0098155,29014 +135743,1616543,38877 +135745,1866570,293238 +135747,1504261,53774 +135749,0913262,46513 +135751,0061450,5064 +135753,0068161,49106 +135755,0201060,60568 +135757,0110577,201099 +135759,1155053,17903 +135761,1274295,20688 +135763,0296574,15761 +135765,2199711,117319 +135767,0488414,14705 +135769,0211934,41902 +135771,0136352,160265 +135773,0220757,170998 +135775,0099652,71308 +135777,0495034,19670 +135779,0104770,51730 +135781,2073070,75744 +135783,0284137,80156 +135785,0080166,39901 +135787,0297814,37588 +135789,1836912,69785 +135791,0319020,115124 +135793,0080156,155397 +135795,3495000,287767 +135797,0811066,20742 +135799,0151150,131940 +135801,0094374,66212 +135803,0084921,41378 +135805,0364647,66340 +135807,0076939,56095 +135809,0077262,64257 +135811,0079609,49642 +135813,0080971,73652 +135815,0079043,141131 +135817,0080905,41377 +135819,0290820,159636 +135821,0086304,59404 +135823,1833673,44977 +135825,1317478,38594 +135827,0199813,54503 +135829,0441048,14194 +135831,1754264,70006 +135833,0067009,49967 +135835,0293199,75840 +135837,0473310,31248 +135839,2181831,128206 +135841,2932606,212754 +135844,3471320,255528 +135846,0426265,85702 +135848,0246734,18881 +135850,0991243,28796 +135852,3302706,286519 +135854,0408730,13592 +135856,1469864,113190 +135859,2193185,217341 +135861,2637276,214756 +135863,1558575,79935 +135865,1514425,43099 +135867,0043953,53220 +135871,2073679,289159 +135873,4203824,305594 +135875,3322420,247645 +135877,2815072,265018 +135881,0341555,16318 +135885,1727770,86828 +135887,2293640,211672 +135889,2640474,207686 +135909,0065032,42685 +135913,0053879,63887 +135915,2144007,172457 +135917,0074087,227690 +135919,3531852,264085 +135923,1462050,27637 +135925,4024104,314327 +135927,2463154,296178 +135929,0049593,22390 +135931,0430239,24090 +135933,1730704,47407 +135935,0174732,165621 +135937,0111190,10450 +135939,0297120,19792 +135941,0089984,19386 +135943,1018790,51501 +135945,0433349,14619 +135947,0102210,36896 +135949,0760169,9935 +135951,0114306,28229 +135953,0486761,21316 +135955,0039750,60541 +135957,0336325,10578 +135959,0186655,27847 +135961,0954541,14503 +135963,1586740,48495 +135965,0167758,15162 +135967,1038072,14212 +135969,1129381,13577 +135971,0382943,35626 +135974,3307774,269242 +135977,0844029,15338 +135979,1259998,14613 +135981,0186654,10704 +135983,1204883,15262 +135985,0800203,19212 +135987,1270113,25701 +135989,2493466,153750 +135991,0419280,40069 +135993,1291521,104108 +135995,1087517,16116 +135997,1094668,32338 +136000,0200755,53875 +136002,0385890,27404 +136004,0250990,128862 +136006,0918627,21509 +136008,0405052,34789 +136010,0436855,59700 +136012,0115714,36692 +136014,2279353,144390 +136016,1979388,105864 +136018,1355683,261023 +136020,2379713,206647 +136022,0099935,36779 +136024,0086148,17922 +136026,0068657,61594 +136030,0804492,63315 +136032,0849470,20066 +136038,0105717,42444 +136040,0094786,82827 +136048,0077734,74080 +136054,0069235,56341 +136058,0066988,73827 +136060,0063288,58188 +136080,0056995,162382 +136082,0057274,62397 +136088,0054678,67377 +136090,0054442,60046 +136098,0053032,5839 +136188,0903606,20983 +136190,0102813,22466 +136192,0081229,40146 +136194,0303929,10579 +136196,1708497,80647 +136198,1046245,64325 +136200,1350512,26342 +136202,0117342,30926 +136204,3742378,310569 +136206,0100265,92496 +136208,1884369,120802 +136210,1670932,100057 +136212,1554092,75623 +136214,0165498,44661 +136217,0900357,14913 +136219,1865573,138372 +136221,2381962,161782 +136223,1671616,79854 +136225,0848592,13792 +136227,1986994,131689 +136229,2449810,167960 +136231,3557440,260211 +136233,3393070,249021 +136235,3499424,277594 +136237,0380420,41862 +136239,0192618,35215 +136241,0057897,63083 +136243,1478804,132236 +136245,0189072,37211 +136247,0166792,13151 +136249,0369903,21956 +136251,3025994,203696 +136253,0800226,19323 +136255,0299203,26449 +136257,4296026,323660 +136259,0498348,57784 +136261,0094010,325780 +136265,0166788,281783 +136275,0086412,60038 +136279,0084131,47245 +136297,0363828,72886 +136299,1190919,75101 +136301,1662534,37668 +136305,3899796,331446 +136307,3086386,297291 +136309,4215766,302960 +136311,0151683,32195 +136315,0078848,213095 +136331,1097636,13354 +136333,0189071,13350 +136335,0253658,20410 +136337,0290057,15601 +136339,0480461,20558 +136341,1421378,16390 +136343,0357139,30074 +136345,0433771,24615 +136347,0189070,24787 +136349,0867418,13355 +136351,1295021,12903 +136353,0418141,12902 +136355,2235542,119321 +136357,1777608,67900 +136359,0191423,36972 +136361,2586070,151535 +136363,2162709,81900 +136365,3043386,210769 +136367,2948202,308447 +136369,0192175,36868 +136371,0245380,101514 +136373,0492878,43960 +136375,0070641,68053 +136381,0138324,71776 +136419,0083909,19373 +136421,0076206,92853 +136423,0066940,117890 +136425,0067256,64465 +136427,0070552,87362 +136429,0199680,57706 +136431,0102629,4695 +136433,0473006,21578 +136435,3918650,292342 +136437,0484368,16014 +136439,2387443,103194 +136441,0030128,47166 +136443,1082588,20720 +136445,0246641,34509 +136447,0246645,34513 +136449,1260502,14092 +136451,0810895,16774 +136453,0036933,66984 +136455,3911200,284274 +136457,0806102,14542 +136459,1143143,14540 +136461,2297894,346106 +136463,0815456,108930 +136465,1218030,29144 +136467,0389074,51786 +136469,0218388,261414 +136471,1999192,74510 +136473,0164711,23289 +136475,1323941,46343 +136477,0048449,53211 +136479,0820986,23377 +136481,0039711,164954 +136483,1474311,26809 +136485,1020990,42979 +136487,0318062,74722 +136489,0035422,145977 +136491,1345777,33556 +136493,0267363,20769 +136495,1327035,15977 +136497,0466460,15412 +136499,2338343,78187 +136501,0024660,34463 +136503,0808508,60293 +136505,0497365,8557 +136507,1438214,222388 +136509,4319698,332980 +136511,4209802,300685 +136513,2461736,137144 +136515,2058636,75190 +136517,1295909,14541 +136519,0841150,16657 +136521,2855026,194104 +136524,4086116,335753 +136526,0395284,204912 +136528,0218440,77921 +136530,0420076,36218 +136532,0100448,5086 +136534,0267536,51531 +136536,1747967,92398 +136538,0816671,16237 +136540,1296373,85860 +136542,0085936,14813 +136544,0400673,82395 +136546,2301900,139659 +136548,1161646,16846 +136550,1293561,110588 +136552,3234078,231082 +136554,2637848,186254 +136556,1980162,81003 +136560,1930482,273926 +136562,2080374,321697 +136564,2884018,225728 +136572,2325611,208305 +136574,1726637,246422 +136576,2628316,182873 +136578,2197088,202980 +136580,1374990,61901 +136582,1653874,52474 +136584,0810990,37633 +136586,0128292,65896 +136588,0066327,13400 +136590,0200208,83965 +136592,0113112,196257 +136594,3102360,221510 +136596,0030448,53219 +136598,1524930,296099 +136602,2428170,250574 +136604,1637976,41371 +136606,0051471,46983 +136608,0208683,162320 +136610,0051472,44461 +136612,0041423,38811 +136614,0167319,49097 +136616,0167464,49112 +136618,3257582,227679 +136620,1468843,39057 +136622,1226251,25961 +136624,0875609,34067 +136626,3106120,226140 +136628,0311146,87233 +136630,0433537,282247 +136632,2905674,315024 +136634,3261302,294093 +136636,2924442,228358 +136638,3727824,309063 +136640,4693418,341984 +136642,2334733,253161 +136646,3816614,301730 +136652,3130734,299221 +136654,2967008,254024 +136656,2893490,254905 +136658,2048824,297462 +136660,2547172,339355 +136664,4442130,324333 +136666,2758904,239568 +136672,2950236,282248 +136674,3336368,261103 +136676,3033080,279988 +136678,3564200,337663 +136680,2784134,335077 +136684,0267817,31140 +136686,3717016,309924 +136688,3103412,336167 +136692,3094236,273610 +136694,3084028,331161 +136696,3503840,332976 +136698,1641841,327833 +136702,4026600,346838 +136704,1086363,82806 +136706,0109433,165790 +136708,0863093,64155 +136710,1147760,58525 +136712,0117069,39335 +136718,2290739,220471 +136722,3382842,268508 +136724,3593666,328448 +136726,3133246,276808 +136730,2081274,262866 +136732,1684548,143142 +136736,1322393,335805 +136738,2191612,128209 +136740,0043325,43371 +136742,1213917,84056 +136744,0386095,214146 +136746,0083102,57967 +136748,0407612,38517 +136750,0452611,102198 +136752,0444519,13748 +136754,1698652,262436 +136756,0427461,23843 +136758,0966582,115187 +136762,0498091,12188 +136764,2062622,245685 +136774,3398066,296456 +136776,1887746,179966 +136778,3248600,312796 +136784,4030442,291865 +136786,1629242,317744 +136788,3266948,332936 +136792,2122424,101724 +136794,3013018,277610 +136796,2267454,332488 +136798,3148348,276488 +136800,2145829,240483 +136804,4257950,319924 +136806,2290113,173224 +136810,0443334,58788 +136812,3518096,330011 +136814,2790182,261824 +136816,3525346,309887 +136818,3563892,308017 +136822,0074853,4199 +136824,0319371,285649 +136826,0089010,279984 +136828,0087480,81009 +136832,0049642,188684 +136834,0455135,33723 +136836,0024600,206237 +136838,0496325,38918 +136840,2517558,217412 +136842,0366919,213950 +136844,1813757,316776 +136846,0055294,27717 +136848,0409527,21905 +136850,0067952,30341 +136857,2577172,312791 +136859,1321869,79698 +136866,2085783,94935 +136868,1822266,313646 +136870,2196564,208756 +136872,0233979,192573 +136874,1590129,158503 +136876,0249386,334449 +136878,2355773,315417 +136880,0396963,91527 +136882,2321421,109515 +136884,3446426,249677 +136886,1906471,263314 +136888,1633989,82935 +136890,2991092,214210 +136892,1018887,36952 +136894,2938416,275657 +136898,0055827,43000 +136900,0053348,3026 +136904,0059631,32323 +136906,3289126,303483 +136908,2400002,201277 +136910,0083824,49398 +136912,2181959,128767 +136916,3746298,332177 +136918,3220528,338518 +136920,2242176,285549 +136922,2559214,297633 +136924,3462696,286548 +136926,2788556,272435 +136930,1824904,142391 +136932,2872724,283686 +136936,3465074,307479 +136938,0260320,16261 +136940,1860238,179340 +136942,1700467,92424 +136946,0120805,31003 +136948,2542368,230217 +136950,0100172,40000 +136952,1716753,73933 +136954,2011972,77171 +136956,0368197,37789 +136958,0087746,44859 +136960,0113858,41574 +136962,0107606,41587 +136964,0102484,168361 +136966,0104942,279692 +136968,0102489,29597 +136970,0107631,71687 +136972,0094407,4645 +136974,1562899,52653 +136976,2469760,287793 +136978,0309725,21896 +136980,0858437,29797 +136986,0099429,65683 +136988,3520010,258353 +136990,1672131,63326 +136992,0136780,116379 +136994,0471094,161825 +136996,0184039,221981 +136998,3661196,344255 +137000,1663689,68193 +137002,0961088,39824 +137004,0105215,200450 +137006,0241251,262522 +137008,2401147,137776 +137010,3058618,226701 +137012,3455826,306825 +137014,2953240,225850 +137016,3103284,270383 +137018,2636814,259894 +137020,1276106,18016 +137022,2368537,159763 +137024,0228711,103635 +137026,0108283,288668 +137028,0495023,69393 +137030,0284028,157655 +137032,0430457,38330 +137034,4340888,346570 +137036,2739524,242466 +137038,0153812,239513 +137040,0335163,224251 +137042,0117583,264560 +137044,0104612,70104 +137046,1063336,60664 +137048,1082863,143966 +137050,0835498,116609 +137052,0807726,157075 +137056,0114376,122982 +137060,1132288,17241 +137062,2290828,118406 +137064,0117995,75471 +137066,1480649,42554 +137068,1724982,140934 +137070,1969149,110204 +137072,1869315,78403 +137074,0175694,81470 +137078,0180207,108391 +137088,0248568,128979 +137090,0077735,23692 +137108,2095605,130267 +137112,1395054,42966 +137114,1602479,41993 +137126,0452644,21181 +137128,0365479,104431 +137142,0039583,72544 +137144,2391950,268245 +137150,1508290,46106 +137154,0300957,73329 +137172,0046928,37413 +137174,0333645,43773 +137196,2385195,212748 +137210,1090680,8932 +137228,2405372,173917 +137232,0044621,71243 +137238,0044085,152266 +137242,1507351,301368 +137250,2664080,171648 +137262,0485061,202960 +137268,2027091,263794 +137276,0065970,161565 +137278,4135218,317144 +137280,0194119,73098 +137282,2448028,174350 +137284,0495750,189080 +137286,2359814,234555 +137288,0051683,209248 +137290,1258154,44647 +137292,1010054,213648 +137294,0449057,240154 +137296,3687186,285024 +137299,3341582,284729 +137303,0029350,193652 +137307,0462703,49190 +137311,1366687,24686 +137315,1837574,277237 +137317,2468826,146371 +137319,0098165,41945 +137325,0109421,179641 +137335,1823096,270173 +137337,2870648,331781 +137339,0118686,37613 +137345,3511542,253622 +137347,0473028,25764 +137353,2228000,272892 +137365,0079135,29562 +137367,2245151,277702 +137377,1587119,63319 +137381,0091106,41869 +137383,4692656,343977 +137385,2027255,72972 +137387,0303151,14787 +137389,0487176,42246 +137391,1722638,43956 +137393,3108584,199753 +137395,2342207,139374 +137399,3171886,251671 +137403,0259017,102016 +137409,0098089,86326 +137421,2184207,202722 +137423,0365797,58487 +137425,2180168,159389 +137427,0993755,125911 +137431,1093374,19598 +137437,1198220,100061 +137441,2113809,121604 +137445,0304636,56766 +137455,1541123,110122 +137457,2287663,115290 +137463,1663673,82626 +137469,2231138,174341 +137471,0075345,108322 +137473,0314226,6962 +137475,0237765,16355 +137478,0887143,54099 +137482,0049095,49701 +137484,0052338,45948 +137486,1190905,143344 +137488,0459437,49711 +137490,0055508,43027 +137494,0114096,45997 +137496,0038222,46769 +137505,0125015,60087 +137507,0075850,29420 +137557,0052920,5648 +137561,0890885,22373 +137563,3300572,254472 +137565,2558318,270771 +137570,2790236,248934 +137572,0141871,347157 +137574,1571730,129552 +137579,0234512,126692 +137581,0058025,85110 +137583,0284060,127148 +137585,0284061,127320 +137587,0058026,127323 +137593,0497915,141603 +137595,2268016,264999 +137610,0074289,260840 +137612,4741170,346490 +137614,3270108,289891 +137616,2828954,200511 +137638,0068868,63176 +137640,0067896,81775 +137642,0064959,108179 +137646,0059535,99095 +137654,0057532,67378 +137660,0052073,110924 +137662,0053710,93907 +137666,2466212,348090 +137670,2091343,172824 +137672,1615902,112963 +137682,1675163,172548 +137696,0104365,70046 +137705,0138444,60662 +137707,1262406,42916 +137715,3902698,332354 +137723,2585548,248426 +137737,0131349,56608 +137749,1612782,101176 +137751,0371835,42971 +137757,0218121,71884 +137759,0117794,46227 +137761,3576038,261041 +137763,3267194,253263 +137765,0787500,98349 +137767,1703231,75329 +137781,1727816,75657 +137797,0097707,59171 +137815,1130993,15638 +137817,0386669,57709 +137819,0107046,151923 +137823,2010976,221161 +137825,3301196,270221 +137835,0082134,66590 +137853,0884038,101956 +137859,1286785,65973 +137861,1517470,299963 +137863,3819668,303857 +137867,0074475,113525 +137871,0062829,169962 +137873,4274822,344560 +137875,0197800,131830 +137879,0167479,37501 +137887,0071121,156140 +137898,0041858,87194 +137900,1137470,316002 +137904,0074006,206514 +137906,1087832,27379 +137908,0487037,41419 +137910,0929261,32158 +137914,0476293,113958 +137920,2979920,316654 +137926,1729615,126306 +137930,0077225,259075 +137932,0070026,294819 +137934,0067526,105087 +137940,0069794,293270 +137944,1201135,53121 +137952,0117077,114594 +137958,2388759,172469 +137992,1825806,80327 +138008,1543566,137484 +138010,0246834,39242 +138012,1307897,34557 +138014,1243939,78096 +138016,1942972,102931 +138018,1331126,188529 +138020,3213222,285856 +138022,0411377,73353 +138024,0480827,20227 +138026,0768131,17022 +138028,1303232,101752 +138030,4056808,319090 +138032,0071636,129067 +138034,0847759,41141 +138036,1638355,203801 +138038,3470838,320385 +138056,2040367,172785 +138066,1242544,44952 +138070,0313608,63971 +138074,1703919,74546 +138086,2011300,137683 +138104,4324302,323027 +138108,0818602,83785 +138118,0094827,41950 +138122,2338062,212752 +138128,1365598,77852 +138132,0100633,12638 +138146,0163318,219248 +138154,2140429,169644 +138166,0116646,128612 +138168,1670269,83583 +138180,2505376,331737 +138184,1791681,286372 +138186,2140423,337879 +138198,2466320,215023 +138200,2822400,188758 +138202,3339674,255798 +138204,3895884,287689 +138206,3094252,333594 +138208,3488710,285783 +138210,4172430,300671 +138214,3098306,273169 +138216,0198769,74645 +138218,0075109,134679 +138222,4382618,319167 +138224,0108480,154980 +138226,3093520,277582 +138228,0961209,156084 +138230,3137764,343934 +138232,0294264,66346 +138234,2098628,127856 +138236,0052606,48412 +138248,0087022,159324 +138258,3121332,308077 +138260,4437046,348499 +138268,0103878,348507 +138286,0243604,348528 +138294,1566948,57311 +138296,0256627,54627 +138298,1753476,77000 +138300,1756415,85038 +138302,1535429,61940 +138304,1002536,24168 +138306,1680089,58444 +138308,1261055,42679 +138310,1548559,56041 +138314,1904929,139504 +138316,1408062,63190 +138318,2550838,147868 +138320,1724553,63365 +138322,1964795,133788 +138324,2043888,108664 +138326,1082007,23509 +138328,2006781,73869 +138330,1513803,46128 +138332,1509743,57713 +138334,2076251,77944 +138336,1669625,58518 +138338,1065305,22182 +138340,1371700,56844 +138344,1680099,56014 +138346,1866205,59570 +138348,1694539,58453 +138350,1715356,60650 +138354,1900959,145872 +138356,1261056,56400 +138358,0415006,58531 +138360,1698566,72057 +138362,2299792,123375 +138364,2166285,160844 +138366,1521090,49850 +138368,2226407,169692 +138370,2290789,137315 +138372,2328487,219067 +138374,2461908,166262 +138376,2370096,141810 +138378,2427968,162282 +138380,1680095,58013 +138382,2058597,146364 +138386,3345966,238705 +138388,2473532,195544 +138390,2636178,171826 +138392,2751576,175116 +138394,2483050,156547 +138396,1951299,158182 +138398,2302531,184681 +138400,3761504,270479 +138402,2767948,178915 +138406,2882850,186982 +138408,2447934,182415 +138410,2573226,169069 +138412,2997896,201010 +138414,1523493,58204 +138416,3438354,250219 +138420,3485114,249457 +138422,2401715,191820 +138424,1992156,153774 +138426,3628598,262789 +138428,1054677,24243 +138430,3296204,247218 +138432,3078718,231565 +138434,2234543,197089 +138436,2406992,215628 +138438,3254706,226936 +138440,2491500,234356 +138442,1365490,56853 +138444,2385784,228290 +138446,2418510,235208 +138448,2390283,287935 +138450,4065308,301272 +138452,3107708,262785 +138454,1029364,348544 +138456,0402912,38328 +138458,0418259,57112 +138460,1351672,42808 +138462,0114368,58703 +138464,0102693,57110 +138466,1285243,58714 +138468,1523406,62349 +138470,0382804,84739 +138472,1509631,42675 +138474,0474917,56994 +138476,1075114,51917 +138478,1031218,56974 +138480,1320297,23619 +138482,0090055,58011 +138484,1217631,58400 +138486,1188988,15681 +138488,1409836,53957 +138492,1680110,56339 +138494,1526741,35554 +138496,1582207,58060 +138498,1821597,78854 +138500,0083655,62029 +138502,1843912,105884 +138504,0134912,165550 +138524,0090186,85009 +138526,1160317,18441 +138528,2443022,292988 +138532,1974393,273511 +138540,0112515,80473 +138546,2796678,301748 +138558,1808477,82115 +138564,0288203,128625 +138568,0120353,38162 +138576,1744760,129530 +138580,0871865,28741 +138582,0109503,219645 +138586,2292182,124054 +138600,0109136,348574 +138602,4497416,336560 +138606,2821314,292607 +138608,0478719,45939 +138610,2309260,299245 +138612,1980185,78339 +138616,0238137,51986 +138618,0460832,239417 +138620,2836328,280512 +138624,2982306,295368 +138626,0070109,64943 +138630,3347518,266353 +138632,2808986,240566 +138634,0029899,53851 +138636,0091360,17048 +138638,3148890,224908 +138640,0075347,63438 +138642,0109235,295279 +138650,3569374,277687 +138652,2184227,110447 +138672,1601463,89870 +138680,1529233,43200 +138682,1245735,22335 +138684,1821700,228101 +138686,1068956,23717 +138690,0169543,58195 +138692,1337155,70570 +138694,0483631,18618 +138696,1634334,54155 +138698,3611354,284362 +138702,3689498,293299 +138706,0037494,44869 +138713,0050204,102038 +138726,0076106,29737 +138730,0030225,176867 +138746,0088961,58903 +138750,2219210,286657 +138752,1540005,127594 +138754,0099701,28450 +138758,1801063,166161 +138760,2175669,211528 +138774,0482602,40012 +138784,1386492,82136 +138788,2235515,238358 +138794,1320296,41345 +138796,1977087,172390 +138798,4126340,335970 +138800,0047192,26948 +138802,3030970,320433 +138804,3142688,283201 +138806,0042265,54392 +138808,2753778,279144 +138816,0087465,85643 +138822,0060646,119801 +138835,0122227,49418 +138837,0043973,28561 +138863,0026113,197491 +138868,1850394,133469 +138870,2292576,114887 +138878,0281870,86154 +138890,0017103,29466 +138892,0461989,14096 +138894,0161777,41002 +138898,0827503,13296 +138904,0022264,95862 +138914,0062292,73203 +138916,0108339,34098 +138935,0038199,43533 +138940,0986225,79526 +138942,2549138,231263 +138944,2980736,120475 +138950,0800191,95758 +138952,4717798,347688 +138958,4296254,323383 +138960,0376098,207699 +138962,0055950,47447 +138964,0100324,46230 +138966,0382868,60843 +138968,1172063,53315 +138994,1336621,31991 +139010,0882755,21214 +139012,1798148,70583 +139020,1987028,132137 +139022,0386534,51938 +139026,0100156,70351 +139028,0488027,131116 +139030,2095008,79247 +139032,1808360,65696 +139034,2807624,226702 +139040,0082364,116997 +139042,0105572,34334 +139044,0171849,262517 +139046,4048050,315575 +139048,0077427,12578 +139050,2222584,204016 +139052,2402101,182560 +139054,0929742,48751 +139056,0469111,3602 +139058,0253225,78210 +139060,0079063,61638 +139062,0233709,77939 +139064,0094709,55853 +139066,0131596,44508 +139068,1989712,103753 +139074,0220672,214699 +139076,0107259,142373 +139078,0107260,142374 +139080,0113273,65040 +139082,0088344,77673 +139084,2624412,259963 +139086,1501756,54734 +139088,1493942,54743 +139090,1199479,54744 +139092,1617299,54731 +139094,1717745,54685 +139096,1724281,54746 +139098,1734593,54677 +139100,1738398,54692 +139102,1704731,54694 +139104,2318158,142161 +139106,2356302,149255 +139108,2835958,188509 +139110,2488386,233466 +139112,3267334,232048 +139114,3417870,251425 +139116,3605164,259679 +139118,2193456,163814 +139120,3966404,336804 +139122,0178057,163343 +139124,3882000,337677 +139128,1305678,77248 +139130,0465316,62931 +139132,0110845,16224 +139134,2877108,189227 +139136,1045898,66224 +139138,0458050,69598 +139140,2073510,191476 +139142,0201545,307261 +139144,1907639,112456 +139148,3863552,348892 +139150,2152896,76850 +139153,4786638,342003 +139155,3674026,267557 +139157,4328798,329134 +139159,1483820,55951 +139183,0066105,90540 +139187,0067434,69579 +139189,0075377,161299 +139195,0092383,141334 +139197,0090345,326013 +139199,0171726,260817 +139201,0171819,262514 +139203,0171095,292640 +139205,2140465,336211 +139207,0095379,31150 +139209,0204908,104965 +139211,0310279,246916 +139213,3063462,295581 +139215,0134749,142656 +139219,0120380,17100 +139223,0452703,93511 +139229,0076780,5731 +139233,2546764,287484 +139237,0075803,114423 +139239,1859603,117618 +139241,1710900,66925 +139243,0073758,131966 +139251,1527837,332745 +139259,0236126,40460 +139263,0088292,119540 +139267,0106681,180717 +139285,0097230,128152 +139307,2153394,123224 +139311,4530832,333545 +139313,3367686,322922 +139315,3312936,321662 +139317,3029476,252164 +139319,2940482,313179 +139321,3384870,328820 +139325,2274604,308418 +139327,2244889,276729 +139329,1610013,203182 +139331,3317562,348191 +139335,3654972,312167 +139341,0143213,45431 +139343,3623376,260094 +139371,1565441,71548 +139375,3778402,312138 +139377,0805580,88334 +139379,0082625,42983 +139383,3137546,340230 +139385,1663202,281957 +139387,0046269,40165 +139397,2711672,230588 +139399,0018397,108632 +139401,1249306,12424 +139403,0951279,57052 +139405,0483206,55717 +139407,1650404,44211 +139409,1288637,24169 +139411,1591123,59582 +139413,0117450,29804 +139415,3715320,282984 +139417,3278330,314405 +139419,3620860,347968 +139421,4840666,349045 +139423,4262142,336845 +139425,0085892,29610 +139447,1247400,68712 +139455,2088923,86215 +139467,1131742,25151 +139469,1640220,123389 +139489,0183306,41614 +139493,2990836,238923 +139495,1193460,38963 +139497,0444759,40127 +139499,3104062,325592 +139501,4329800,342765 +139503,2393787,137700 +139505,0923779,40701 +139507,0498525,4398 +139509,1428436,72589 +139511,0904049,21784 +139513,0073196,4580 +139515,0065000,71002 +139517,0451010,14021 +139519,0978797,55470 +139521,0074236,9878 +139523,3204734,302348 +139525,4126304,317952 +139529,0485857,27122 +139533,2401789,228606 +139539,1877688,241071 +139547,0417053,19445 +139549,1394211,61527 +139553,2082180,86000 +139555,1430620,49960 +139557,0088107,69599 +139559,2318268,294222 +139567,1451632,98532 +139575,2631186,256040 +139578,2375791,189019 +139584,1000095,16808 +139586,2231251,97938 +139588,0127045,26676 +139598,3526408,292795 +139600,2147521,266047 +139604,0322232,44781 +139606,2966760,258614 +139608,3062976,284286 +139610,2991934,199273 +139612,1501298,69550 +139614,0076247,107426 +139616,0050085,30299 +139618,1920996,138550 +139620,0263438,81549 +139622,1666700,69326 +139624,0261739,197297 +139626,1802529,257249 +139628,4450170,342052 +139630,0294592,108497 +139632,2723576,244776 +139634,3162938,339065 +139636,3461252,289510 +139638,2179007,256511 +139640,3411432,326215 +139642,1798684,307081 +139644,3397884,273481 +139647,0103292,212996 +139649,2664258,218688 +139651,4819458,350931 +139653,1727596,122320 +139655,3086442,284303 +139657,1009019,36165 +139663,0490075,171688 +139665,2594428,318868 +139667,1308144,75547 +139669,1918924,243279 +139675,0288324,117168 +139683,1949583,280459 +139687,0120498,57479 +139701,2402701,115451 +139711,0070189,95892 +139713,2191765,342878 +139715,3779300,348811 +139717,2134170,346592 +139719,3639176,260677 +139721,3149038,278236 +139723,2251281,300467 +139727,0054854,128960 +139731,1770672,229138 +139733,1970039,96750 +139735,4180650,327685 +139737,0098190,77292 +139741,0800026,24676 +139747,0443465,283350 +139751,1634524,78441 +139755,0044378,84734 +139757,3518012,319067 +139759,4060576,294562 +139761,3292154,344147 +139763,0059163,258521 +139765,4157510,326241 +139769,0100014,60898 +139771,1754736,300686 +139775,2358456,266619 +139777,2234536,190148 +139779,3430042,312131 +139781,2023438,109695 +139783,4604642,348857 +139785,0938706,67362 +139789,0043533,262987 +139793,0020980,162954 +139795,0012253,38812 +139797,4184878,311615 +139799,0278723,8460 +139803,2614860,229582 +139805,2873214,211076 +139807,3969972,313788 +139811,1157631,33558 +139817,2371315,153021 +139819,1730697,80015 +139821,0202055,207649 +139823,0031440,98125 +139825,0884335,13336 +139827,0417844,10270 +139829,2129887,204709 +139831,3538766,283317 +139835,3317874,304613 +139837,0102562,64348 +139839,0167945,39998 +139841,0117575,118379 +139843,0420133,254502 +139845,1649328,156896 +139847,3526706,314220 +139849,2386140,137002 +139853,1808659,130973 +139855,2401878,291270 +139857,4005402,318781 +139859,3017864,212168 +139861,3579524,240341 +139863,4016942,279254 +139865,2334779,214348 +139869,0059831,61765 +139871,3544048,267091 +139873,0013597,53800 +139875,0995055,97403 +139877,0173870,269999 +139879,0808482,99022 +139881,1717153,159039 +139883,0068562,102812 +139885,0457004,59444 +139887,3906444,288788 +139889,3043630,209049 +139891,3086582,211711 +139893,3861006,270842 +139895,0109732,317720 +139897,4074958,306758 +139899,3896016,272875 +139901,1929433,320132 +139903,2194748,148652 +139909,0100531,86223 +139911,0344936,171429 +139913,3667648,298614 +139915,1725986,253344 +139918,2649274,197276 +139920,0061203,42727 +139922,2542502,236329 +139936,0200108,325645 +139952,1233578,120922 +139960,0205924,41669 +139966,0116279,41668 +139974,0109378,64822 +139976,0106867,41665 +139978,0099545,37770 +139980,0178579,52106 +139982,0095134,41664 +139986,0203092,38315 +139988,0093864,82080 +139992,0091911,38313 +139994,0128221,30459 +139996,0126618,38310 +140000,0085524,26285 +140004,0086331,106256 +140006,0082407,41610 +140012,2949196,342896 +140016,2737926,329289 +140034,0079523,63274 +140036,0082034,37765 +140038,0082562,11441 +140040,0084018,38271 +140042,0086274,68275 +140046,0166335,128657 +140054,0092709,35634 +140070,0065904,4255 +140074,1524575,157544 +140076,1547638,28417 +140078,1740712,61312 +140080,0089297,42031 +140082,2433448,178917 +140084,1309449,37961 +140086,1904937,106417 +140088,1728620,114189 +140090,0100835,59241 +140096,2822742,283701 +140098,2094034,288778 +140102,3094816,324230 +140104,3202374,253944 +140106,3756788,315846 +140108,3675748,283127 +140110,2361509,257211 +140112,0146496,17401 +140115,4729754,342917 +140121,1436577,142402 +140123,0069334,169364 +140131,3467412,338676 +140133,0095312,27412 +140135,3074784,209413 +140142,0064086,210923 +140144,0087412,165108 +140146,2517300,273599 +140148,2082496,102292 +140150,4079776,297098 +140152,3215846,318033 +140154,2447750,224100 +140156,3620298,289933 +140158,2315806,248379 +140160,3440298,277217 +140162,3774694,292431 +140164,1679270,311600 +140166,0122580,147050 +140168,2435514,192023 +140170,1762308,61719 +140174,3170832,264644 +140176,2145778,204771 +140178,0051080,135697 +140182,1617250,79456 +140186,2308860,133603 +140188,3460152,250374 +140190,1893218,145312 +140194,1329370,49672 +140196,3611432,192911 +140198,0101561,102831 +140200,2759292,238925 +140204,1945044,226458 +140206,2458820,230095 +140210,2593224,267804 +140212,0437503,15657 +140214,1232838,46665 +140218,2721152,261047 +140220,0037756,130374 +140222,2231900,170455 +140224,2417154,210274 +140228,1160525,47292 +140235,0130216,86332 +140237,3687398,277546 +140239,2147319,104524 +140241,0482459,74495 +140243,0475760,52589 +140245,4415016,331251 +140247,4178092,328425 +140249,1275521,18380 +140255,2321379,137853 +140261,3455740,277847 +140263,2251090,245963 +140265,0246643,25161 +140267,4263482,310131 +140269,0338109,80219 +140271,3379358,250312 +140275,1828229,79000 +140279,1176954,15126 +140283,2082152,122369 +140289,3877674,296313 +140291,4158624,300667 +140293,0159510,39229 +140295,0159511,39230 +140297,2277106,214137 +140299,4291066,318042 +140301,3793788,351964 +140303,2131698,121640 +140305,3645848,353652 +140307,0394837,353653 +140309,3219194,324150 +140311,4074304,302502 +140313,3059656,291156 +140315,3680410,337958 +140317,0058657,64872 +140319,1230545,25423 +140321,4835636,348035 +140323,3124456,217389 +140325,2924472,190945 +140327,1846783,77322 +140329,1426363,239056 +140331,1314291,30428 +140333,0870967,63963 +140335,1743985,129517 +140339,2544766,277154 +140341,3824386,286192 +140343,0109161,66799 +140345,0060661,42515 +140347,0162897,65431 +140349,1554966,27169 +140351,0448100,67846 +140353,0296753,25926 +140355,3053202,238399 +140357,0267281,80609 +140359,1413314,281979 +140361,1748278,80801 +140363,0192080,182217 +140365,3392330,252520 +140367,0175122,13415 +140369,0046532,60551 +140371,0101631,89738 +140373,0147995,76790 +140375,0161215,82767 +140377,0140785,164652 +140379,0113008,108227 +140381,0214698,85411 +140383,0406310,7092 +140385,0113330,35178 +140387,0193732,60071 +140389,0117515,86543 +140391,0102674,50503 +140393,0112667,57857 +140395,0111695,30101 +140397,0204824,815 +140399,1047474,154207 +140401,0046789,24442 +140403,0192189,211231 +140405,0046280,33754 +140407,2334593,230428 +140411,0056472,93492 +140413,0069866,103711 +140415,0042211,106358 +140417,0040852,126712 +140419,0050546,26155 +140421,0806938,18082 +140423,0117179,34138 +140425,0275170,61113 +140427,0072796,137984 +140429,0043884,67313 +140431,0032254,121001 +140433,0050299,121959 +140435,0036697,106355 +140437,0080966,124523 +140439,0339210,142064 +140441,0158466,25180 +140443,0091846,151937 +140445,0162898,121945 +140447,0185895,49928 +140449,0341595,29055 +140451,0112519,27010 +140453,0115696,29054 +140455,0085616,142971 +140457,0163887,60587 +140459,0119025,150329 +140461,0323810,77606 +140463,0110094,160718 +140465,0271732,27338 +140467,0294564,109170 +140469,0082502,103260 +140471,0274735,27339 +140473,0078155,32677 +140475,0106689,20435 +140477,0091721,51881 +140479,0296185,288201 +140481,1329665,278604 +140483,0137937,252724 +140485,0196751,60457 +140487,0212885,270616 +140489,0241357,103688 +140491,0262711,20183 +140493,0046192,23331 +140495,0029542,105073 +140497,0049933,225958 +140499,0043989,39015 +140501,0058241,85827 +140503,0068276,56067 +140505,0104233,128795 +140507,0470994,55027 +140509,0200930,302721 +140511,0817910,13204 +140513,1150938,71665 +140515,0031709,23280 +140517,0064155,18688 +140519,0805190,60238 +140521,0197467,79419 +140523,3567288,298312 +140525,1741273,290751 +140527,0471945,76737 +140529,2752772,283445 +140531,0208069,174712 +140535,1705126,104232 +140537,3379456,289198 +140539,0000003,88013 +140541,0000516,143634 +140543,0279692,193977 +140545,0000682,85221 +140547,1740545,127391 +140549,1189078,212362 +140551,0000455,49273 +140553,0001737,100247 +140555,0005198,133213 +140557,0205719,205263 +140559,0439418,24448 +140561,4705522,343295 +140565,2165933,114955 +140567,0064988,130296 +140569,0077587,52485 +140571,2262270,200580 +140573,1865403,204095 +140577,0047862,243026 +140579,0090257,31410 +140581,3910602,345944 +140583,0055423,37487 +140585,0053445,38666 +140587,0057851,155685 +140589,0046937,107427 +140593,0072837,105687 +140617,1018723,15531 +140619,3271220,347528 +140621,2626962,234931 +140623,4286440,312149 +140627,4084744,332270 +140629,2924590,202570 +140631,1934458,128311 +140633,3326110,262897 +140635,3480446,337073 +140647,0289138,84730 +140649,0118906,41012 +140651,1224369,60279 +140653,0960792,27907 +140655,2371411,124471 +140657,0093910,45716 +140659,0066302,77882 +140667,0078986,135510 +140681,2552296,223566 +140699,2911342,257932 +140701,3397918,296130 +140703,0129805,60813 +140707,1350484,23903 +140709,2951788,246699 +140711,3316948,261392 +140713,1781922,192141 +140715,1398426,277216 +140719,2668150,298078 +140721,1733125,135858 +140723,1120889,34210 +140725,3813310,310133 +140729,0294806,49070 +140731,0067729,45940 +140733,0087589,56821 +140737,0830361,134777 +140739,0419722,41423 +140741,0218298,41636 +140743,0173906,19654 +140745,0312297,19828 +140747,1646876,40205 +140749,0455299,23427 +140751,0466669,32633 +140753,2404645,146778 +140755,0494253,77583 +140757,1137994,19369 +140759,1332100,36041 +140761,0300996,29063 +140763,1374841,185768 +140765,1756447,135465 +140767,0356485,35005 +140769,2205948,152042 +140771,0038826,212926 +140773,3214286,251471 +140775,2181961,157420 +140777,3125652,283700 +140783,0215837,117550 +140787,2536428,253687 +140789,0283623,45943 +140791,3307726,260372 +140793,0081520,50670 +140795,0930902,53064 +140797,0488870,13430 +140799,0072325,22121 +140801,2247566,256930 +140803,3316302,241693 +140805,2072230,295830 +140807,0109277,30575 +140809,0106417,37100 +140811,0112513,28460 +140814,0813789,59557 +140816,3824458,308084 +140818,1294699,16923 +140820,2091478,284674 +140822,1230387,39773 +140830,0765465,56672 +140832,1506458,42053 +140838,1989485,135579 +140842,0881310,8930 +140844,1708135,319337 +140846,4255626,319340 +140848,2091880,126862 +140850,1706598,258284 +140852,0225009,50162 +140854,0068443,95077 +140856,3038142,274899 +140858,3313908,299828 +140860,0338086,81229 +140862,0466043,57775 +140864,3919820,324578 +140866,3825738,298729 +140868,2637378,261036 +140870,0815447,44320 +140872,3072636,268917 +140874,1227183,347035 +140878,2260850,258034 +140880,0838192,60850 +140882,2871256,202456 +140884,0304790,107039 +140916,0070358,44741 +140926,1786742,75713 +140928,2446980,274479 +140932,1766085,73669 +140934,0310243,75025 +140936,0090748,109610 +140938,0455829,63670 +140940,0312403,94052 +140942,0374298,53129 +140944,1242457,17935 +140946,1606652,61998 +140948,1176730,43651 +140954,0145891,52761 +140956,1677720,333339 +140958,2446600,256836 +140960,0498118,64383 +140962,2837336,351043 +140974,0067787,92292 +140984,0028225,202839 +140986,0027056,296820 +140988,0026762,130624 +140990,0028974,179553 +140992,1942839,81438 +140994,2258513,210050 +140996,1554929,282374 +141000,2315236,193502 +141002,0270919,81760 +141004,1976009,228066 +141006,0086182,47736 +141008,1976608,84401 +141010,2711748,185326 +141012,2364659,160907 +141014,0119689,118553 +141016,1173922,74128 +141018,0078780,19247 +141036,2217895,274820 +141038,0282521,26189 +141040,0846787,243059 +141042,0156091,231009 +141046,0078235,91624 +141050,3170902,287628 +141054,4292554,325263 +141058,3449292,353898 +141060,4635372,336203 +141062,3851324,306543 +141064,1339686,316170 +141072,1185594,50341 +141088,0063421,297505 +141090,0062367,289679 +141092,0060456,270463 +141094,0057026,270470 +141096,0481269,192431 +141098,4076756,317655 +141100,0053319,82567 +141102,0047990,136627 +141104,1010278,31169 +141106,1426748,228039 +141110,0050803,64735 +141112,2011218,99762 +141114,0480002,75634 +141116,0083264,66127 +141118,4819514,354128 +141120,3802576,330037 +141124,0396587,37091 +141126,0875695,278388 +141129,3667148,264569 +141133,0106559,39915 +141135,0074988,265640 +141137,0093961,49455 +141139,2990738,209764 +141149,2612156,115873 +141158,0402014,16566 +141162,0476884,20931 +141166,0940656,42949 +141177,0092684,83415 +141179,1699745,98203 +141181,0039260,175386 +141185,0043417,239519 +141189,0097423,33787 +141191,0460892,58646 +141193,0069377,74430 +141195,0070157,2988 +141197,0075879,167583 +141201,0345177,212051 +141203,0080322,190213 +141207,1516586,253876 +141214,1826813,142106 +141216,1528227,56968 +141242,1056036,25713 +141251,4512714,354544 +141264,0032476,99863 +141269,0035952,73430 +141271,0030216,46617 +141273,0049302,107076 +141281,0056065,189723 +141288,0104495,87388 +141290,0021919,177190 +141292,0117096,158750 +141299,0255873,273106 +141301,0015224,120672 +141303,1935870,136752 +141305,0105289,170603 +141309,1707687,58625 +141311,2361184,257447 +141315,0062445,66568 +141317,2376440,299359 +141323,0028953,134480 +141329,0024373,248639 +141355,3203954,344591 +141357,0270841,27306 +141359,0120187,28646 +141361,0820111,27351 +141363,1544578,82466 +141365,0124349,64218 +141367,0220218,97187 +141369,1468324,76940 +141371,1483385,20044 +141373,1832484,63046 +141375,0847526,52764 +141377,0182526,250558 +141379,2364953,138450 +141381,0098026,56725 +141383,0114648,68115 +141385,1249453,21836 +141387,0054350,206461 +141389,0096863,49978 +141391,0082729,42132 +141393,2474958,318922 +141395,2885628,323694 +141397,3289728,301875 +141400,0077973,48297 +141402,2621446,329637 +141404,0089964,126930 +141406,0099376,128787 +141408,1727776,273477 +141410,0079771,196065 +141412,3362914,253155 +141414,0062144,83232 +141418,1801096,180679 +141420,1728179,59429 +141422,3077214,245168 +141424,0023990,113638 +141426,3446906,319669 +141428,3369248,285860 +141430,0380736,29008 +141432,4298958,319373 +141434,3203992,290316 +141436,4429074,336655 +141438,4105466,295111 +141440,3900206,260313 +141442,3104102,284048 +141444,3420848,320643 +141446,1779824,58858 +141448,0415833,32671 +141450,0454753,265758 +141452,0997274,16516 +141454,0065894,183859 +141456,1521877,62323 +141458,2088883,139572 +141462,1416336,79721 +141464,3060670,224297 +141466,0131515,107406 +141468,2674040,259999 +141470,0762070,135679 +141472,3510820,274906 +141474,0062113,105584 +141480,0074671,2909 +141483,2421498,171885 +141485,4593108,336206 +141487,1730695,45075 +141489,3948786,261884 +141493,0257778,12448 +141495,2708764,204342 +141497,1817209,91973 +141501,3350890,293828 +141505,0070413,20947 +141509,3478232,347096 +141511,2663744,208242 +141513,3457734,253255 +141517,2023694,209921 +141520,1694019,49087 +141522,0420313,54040 +141524,1734163,132912 +141526,0142632,41061 +141530,2328503,113388 +141534,0379484,48856 +141536,4768764,346646 +141538,3501416,291549 +141542,1437364,65103 +141544,3672742,310135 +141546,0060083,63569 +141550,1647483,70418 +141552,1090750,22084 +141554,0243220,45602 +141558,0469772,106194 +141564,0015634,86955 +141573,0025094,111344 +141583,1886740,138167 +141588,0038687,86990 +141590,3784222,336664 +141592,0036301,23388 +141594,1092411,52050 +141598,3907090,267815 +141602,0037034,85820 +141606,0082754,6945 +141610,0183718,41288 +141612,0020425,198204 +141618,0061714,88737 +141628,0050749,49843 +141630,4180576,316885 +141632,3257638,319513 +141634,2811878,191718 +141636,4429128,330421 +141638,0046120,177104 +141642,4660980,348296 +141644,0772185,26847 +141646,3816372,287241 +141648,3787590,301351 +141650,3636326,253333 +141652,1228915,62409 +141656,1168662,53743 +141658,1730294,112130 +141662,0097487,115616 +141664,0239594,146949 +141668,3832914,323272 +141670,2347144,180900 +141672,3480158,284290 +141674,4080768,273153 +141676,0264734,16366 +141678,0696447,281124 +141680,0696462,357130 +141682,0050948,128939 +141684,4902012,352552 +141686,0553958,357143 +141688,3569230,276907 +141690,3317208,277710 +141698,3754976,285841 +141700,0042780,60061 +141702,4430212,352173 +141704,3469244,353879 +141706,0307956,328714 +141708,3900822,324266 +141710,3297554,253253 +141712,4000870,301629 +141714,3993894,300542 +141718,3705412,323373 +141722,3663644,343289 +141725,0051102,78572 +141727,3400980,335837 +141729,3335048,288585 +141731,1623759,59499 +141733,4537412,349048 +141735,0461658,11204 +141737,2311948,238398 +141739,0150282,268009 +141741,0818226,82313 +141743,0005557,134144 +141745,1691926,180759 +141747,0867270,335874 +141749,0810819,306819 +141751,2402602,224894 +141755,4026914,295401 +141757,1183489,56554 +141761,1519461,57876 +141763,0675570,357935 +141765,0050259,263570 +141767,2232345,256515 +141769,0105183,128634 +141771,3735602,330171 +141795,2907640,297755 +141797,0185708,17433 +141799,2490326,241843 +141801,0079371,141138 +141804,0096492,148622 +141806,0084873,32336 +141810,0079679,27924 +141812,0089957,65142 +141816,0075468,27934 +141818,0186408,27935 +141820,0067789,46010 +141822,0049397,63258 +141824,0240033,57781 +141826,0079193,56547 +141830,0070439,57778 +141832,0050312,63303 +141834,0081796,78132 +141836,0073442,42275 +141840,0084716,71051 +141842,0481222,41605 +141844,0065670,31648 +141846,4425064,324308 +141850,1650537,87835 +141852,1027762,33789 +141854,1984110,125558 +141858,2819130,347328 +141860,2503954,319910 +141866,4062536,313922 +141868,0079437,37923 +141870,0074161,72614 +141874,0073570,20899 +141880,3548962,298432 +141882,0088865,108586 +141884,0270317,24436 +141886,0116729,5900 +141888,0171177,163428 +141890,1365050,283587 +141892,2936552,328132 +141894,3384890,293850 +141896,0419081,27724 +141898,3588982,285460 +141900,1966465,241739 +141902,2393805,261817 +141904,0095511,49693 +141908,2187444,326441 +141910,2191880,273261 +141912,3194590,333344 +141914,2631072,242462 +141916,2945796,356216 +141920,3150574,233490 +141922,1714843,261818 +141924,3722070,328589 +141926,3065132,338928 +141928,3487994,317981 +141930,4699624,346093 +141934,1625545,355135 +141940,2549540,150213 +141942,1690470,50087 +141944,0381838,41091 +141946,2545428,318279 +141950,3799372,323674 +141952,1270286,41144 +141954,3541080,323366 +141956,4255110,345468 +141958,1859438,57627 +141960,3397556,298865 +141962,2403419,191312 +141964,2883352,279968 +141968,3186946,266061 +141970,3918368,303903 +141972,4503906,350499 +141974,0267490,71118 +141976,1068284,68591 +141978,2363518,286452 +141980,0956335,70069 +141982,1431115,50506 +141984,1912982,90118 +141986,1361330,42673 +141988,3608654,275985 +141990,3298600,350555 +141992,2551428,153781 +141994,4009460,295884 +141996,0059116,104244 +142002,0074792,95375 +142004,0139691,195768 +142012,0066945,85784 +142020,0062083,2798 +142028,3484266,242262 +142030,4228746,310123 +142032,2938956,287948 +142034,0791338,126832 +142038,3123116,218974 +142040,0062679,154582 +142042,0063345,89625 +142044,0146592,163942 +142048,0073555,197177 +142050,0030881,193315 +142052,1151319,5804 +142054,1326252,86500 +142056,3221698,230896 +142058,0213065,38060 +142060,0213689,46963 +142062,0222874,96701 +142064,1794850,86868 +142066,0214289,31359 +142068,2866824,294086 +142070,3289712,342474 +142072,1230213,310137 +142074,3605418,263472 +142076,3602144,342021 +142078,3074578,290714 +142080,0045646,75901 +142082,3317522,312827 +142084,3962848,318973 +142086,0775362,50126 +142088,3038664,264264 +142090,0413053,83827 +142092,0066847,128174 +142094,0004873,87300 +142098,0118024,300532 +142100,0376058,80089 +142106,2723240,261192 +142108,1554426,92780 +142110,2461520,296523 +142113,1640718,283161 +142115,0296310,200813 +142117,3995006,299729 +142119,0031179,120581 +142126,2461126,271039 +142128,0037918,242115 +142142,0139491,151731 +142148,1699746,52060 +142150,1727885,167733 +142152,1763256,258255 +142154,3072668,211914 +142156,0116924,104150 +142158,0816520,34204 +142162,0036255,106513 +142164,2463302,327749 +142170,0188212,45489 +142172,4497142,324281 +142174,0827179,205076 +142176,0191610,162383 +142178,0136199,181574 +142180,0038243,215302 +142182,1446206,51272 +142184,2070649,81481 +142186,0478265,48675 +142188,1334278,51836 +142190,0493409,28640 +142192,0048064,65014 +142194,0810444,45052 +142196,1151911,32285 +142198,0091338,74225 +142200,2713642,288154 +142202,1954780,108147 +142204,1017465,46169 +142206,0455537,74254 +142210,4273886,338729 +142212,2948840,300153 +142214,0806136,307510 +142218,4080672,319341 +142226,3153582,331592 +142228,3957956,351901 +142232,2488220,358982 +142234,3142234,218576 +142236,4141368,356149 +142238,4216934,315335 +142240,1830792,81704 +142242,1525838,65953 +142244,0495729,222939 +142250,0068231,84418 +142258,4145178,319076 +142260,1503773,82939 +142264,0114196,116194 +142266,0309832,46025 +142268,2166143,139156 +142270,1159985,100243 +142272,0115638,68023 +142280,0060789,91265 +142284,0060051,128797 +142286,0058307,83121 +142300,0054950,22726 +142302,0054330,35611 +142314,0096785,27909 +142330,0084104,101444 +142336,0080379,8692 +142338,0077800,36275 +142348,0064273,77165 +142352,0063159,96133 +142354,3907674,294543 +142356,2573198,196761 +142358,4477936,326723 +142360,3169710,274483 +142362,4072352,306838 +142364,2488778,284284 +142366,0643109,327389 +142370,2302969,204255 +142372,1018765,10317 +142374,4294052,340382 +142378,0140428,63276 +142382,1849718,84858 +142384,2168910,118051 +142386,3508840,253450 +142388,4590930,356846 +142408,0054850,28058 +142420,0462335,254302 +142422,3530002,296100 +142426,3505712,284294 +142432,3904754,284870 +142434,2258713,121206 +142436,0053250,17938 +142440,4340720,352978 +142442,4058500,322125 +142444,3067274,285840 +142446,0796339,34381 +142448,2719848,253412 +142450,2457282,212162 +142452,2194724,152044 +142454,0184925,45492 +142456,3792960,330764 +142458,2486856,342550 +142460,2574576,284875 +142462,0086713,30294 +142468,3890278,283711 +142470,0065556,49326 +142472,0177882,2004 +142474,1058601,2333 +142476,0448009,1539 +142478,0809432,11440 +142484,3801934,338421 +142486,0068389,35922 +142488,1895587,314365 +142490,4334482,359108 +142492,3808342,336050 +142494,0167118,270081 +142496,0163636,311417 +142498,2226309,101420 +142503,4009278,333674 +142505,4379180,344120 +142507,1596345,245698 +142509,3072482,325348 +142511,0914813,57203 +142513,2918988,211755 +142515,3907180,321228 +142517,1895408,257237 +142519,3198698,239523 +142521,0046671,19430 +142523,0005060,109632 +142525,2429414,239619 +142527,1259520,65766 +142529,1135940,15640 +142532,2689354,285598 +142534,3970482,290382 +142536,2503944,295964 +142538,1837636,157843 +142540,2954474,353686 +142542,3161960,300839 +142546,4944352,359105 +142548,0157153,154671 +142550,4176776,315841 +142552,0112909,91007 +142554,0373762,11142 +142556,0151494,243473 +142558,0315152,18303 +142560,0454602,42427 +142562,3589290,322434 +142564,0461857,38977 +142566,3689910,267970 +142568,1723659,335310 +142570,0824316,44827 +142572,0450455,160155 +142574,0489007,24801 +142576,0193187,73527 +142578,1718915,285838 +142586,2215673,322443 +142588,2992302,240268 +142590,0103268,25088 +142598,2965466,296065 +142600,1129410,36588 +142602,3702996,329263 +142604,3733778,290637 +142606,1535419,45083 +142608,0023871,49961 +142610,1654082,139276 +142618,4195368,349498 +142624,0042383,65586 +142626,2456338,201274 +142628,0163986,20378 +142630,2252388,312963 +142634,0798423,54558 +142638,0277740,219435 +142644,0020499,27456 +142652,0902952,18557 +142663,0168473,72850 +142667,0280241,43481 +142669,1699164,55612 +142675,4427060,322740 +142677,2224317,205017 +142679,1727790,66211 +142689,1950135,340190 +142691,1640218,92395 +142695,3101132,329205 +142697,1877647,104709 +142707,1674776,119197 +142717,1297943,44682 +142721,0064897,65092 +142727,1870527,84449 +142751,0036823,86120 +142754,0451102,15711 +142763,0023335,27114 +142765,3083008,271736 +142775,0054263,286789 +142778,0030888,206480 +142780,0118499,77197 +142782,0027166,186227 +142788,0108577,40251 +142791,0395140,44656 +142793,0023720,246299 +142795,1592556,90682 +142797,2241116,300090 +142799,4708348,342657 +142801,4702528,347697 +142803,4791594,344476 +142805,3614922,315509 +142807,4115932,343059 +142809,1031294,58895 +142811,0120627,40341 +142813,3977462,298582 +142815,0118763,73339 +142817,0451631,28805 +142819,3668162,268660 +142821,3517192,257160 +142823,0106333,19657 +142825,0079938,173728 +142827,0242256,49035 +142829,1954206,81273 +142831,0453671,19636 +142833,0464160,19637 +142835,0210659,54971 +142837,0162480,170838 +142839,1180583,38637 +142841,1649431,97342 +142843,2704454,182131 +142845,1262958,58493 +142847,2368669,62368 +142849,2664910,245536 +142851,0256607,178755 +142853,2765306,312940 +142855,2415728,355545 +142857,3346824,285181 +142859,3182596,289039 +142861,4074512,298721 +142863,4362764,322614 +142865,4685750,336805 +142867,2911674,341077 +142869,0033994,97110 +142871,0035228,74717 +142873,0046873,74718 +142875,3924450,278718 +142877,2645188,293941 +142885,0073922,40483 +142887,3004746,289191 +142891,0070299,2232 +142893,0463959,126227 +142895,0025555,144111 +142897,0063740,20361 +142899,3407316,295314 +142901,4168502,337730 +142905,4065340,336149 +142907,0366518,32707 +142909,4159182,330298 +142911,3239442,267463 +142913,3678188,361138 +142915,0265691,10645 +142917,3678192,359325 +142919,0210964,13305 +142921,4608574,353500 +142923,0088818,104274 +142925,3688406,311539 +142927,0050974,459 +142929,0048624,457 +142935,0116247,25234 +142937,4432480,354667 +142943,0077834,17874 +142947,0090057,26679 +142951,0295001,6318 +142953,4211516,353117 +142955,1864461,78224 +142959,0239220,255775 +142961,3642618,277967 +142963,3488184,324245 +142965,0135031,168981 +142967,0029819,96717 +142969,2611652,320736 +142971,4059696,338767 +142973,4466550,338273 +142975,4511566,361159 +142977,2514028,336268 +142979,4801514,348295 +142981,4136636,338072 +142983,0068471,40345 +142985,1765730,68387 +142987,1075062,341962 +142989,3195056,268099 +142991,3486542,336660 +142993,4375438,319995 +142995,3685554,337115 +142997,2510894,159824 +142999,2131532,360784 +143001,3475596,330206 +143003,3009070,289232 +143005,3064356,314011 +143007,2901516,316347 +143009,1483753,58156 +143011,3561348,286301 +143013,0056467,72898 +143017,1327763,72642 +143019,0776804,16013 +143023,2634200,280668 +143025,3134058,286256 +143027,0426568,26267 +143029,0410696,115626 +143031,0805559,13968 +143033,0272360,36269 +143035,1072755,22371 +143037,0389721,19294 +143039,0221789,51824 +143041,0977668,50587 +143043,3257072,243884 +143045,2093153,127367 +143047,0293069,136884 +143053,3401748,356905 +143055,0272606,124111 +143061,1233487,45722 +143063,0073698,253112 +143065,0117262,49954 +143067,0104140,123691 +143069,3833822,346401 +143071,2425886,207273 +143076,0386582,33352 +143086,2818348,204582 +143091,1067773,224778 +143098,1848832,91926 +143103,0071996,179847 +143133,0093755,168375 +143158,0202415,179868 +143160,2385227,328930 +143168,3480164,288587 +143178,0117927,86040 +143192,0122444,117493 +143197,0065851,3145 +143199,0071359,46581 +143201,0097265,31927 +143203,0298934,136146 +143205,1549584,157161 +143207,1079968,36550 +143209,4180514,339530 +143231,0281905,108204 +143237,1658801,306745 +143239,3707106,314385 +143243,2088962,116377 +143245,1754656,309809 +143247,2322482,241573 +143249,4074502,295317 +143251,0380620,339320 +143253,2141739,292539 +143255,1957938,301228 +143257,3774466,330112 +143259,4510398,362046 +143271,4082068,314402 +143273,4103404,332749 +143275,5065822,361931 +143277,2094949,85616 +143283,0084136,72785 +143305,0075744,175924 +143309,2210769,326333 +143315,3705388,320028 +143317,2245171,250230 +143319,0042610,111732 +143333,0473733,276770 +143335,0082259,47211 +143341,2433040,318954 +143369,4411504,352161 +143373,1228963,28585 +143377,2049586,285689 +143379,0889212,63081 +143381,0063183,67337 +143383,1361349,46636 +143385,3682448,296098 +143389,1754109,158675 +143391,1390539,171759 +143404,1135989,336029 +143406,1625155,82968 +143408,0014406,138752 +143412,4116116,304126 +143414,0375782,27152 +143416,0469789,194548 +143418,0779722,12794 +143420,0996661,166733 +143422,1172162,307276 +143424,4175088,335138 +143426,0282123,126934 +143430,2787002,198200 +143432,0369738,106546 +143436,2926068,253533 +143438,0359679,84911 +143440,3858372,323661 +143442,1170352,362363 +143444,2056771,324807 +143446,0054366,111718 +143448,0053876,88529 +143450,0257935,55011 +143452,0087913,99760 +143454,0053989,133560 +143456,3117504,338312 +143458,3720058,273197 +143460,0181588,67977 +143462,4157220,295799 +143464,3200980,243352 +143466,0489286,51428 +143468,1921040,141760 +143470,3550902,346079 +143472,1694021,244316 +143474,2371158,277190 +143476,4897822,352208 +143492,0134070,156389 +143494,0023337,156388 +143500,0475302,26301 +143504,4590482,357441 +143506,3241196,256955 +143508,0378898,48426 +143511,3327994,359364 +143515,1702429,121869 +143517,2994832,310568 +143519,4377864,319994 +143521,0077060,143769 +143523,3778086,336666 +143525,3560464,319996 +143529,4923772,357784 +143531,3740778,314388 +143535,1699767,223574 +143539,2302931,149911 +143541,2450042,181104 +143543,0069161,75063 +143545,0081595,49249 +143547,2077886,76115 +143549,0826559,32226 +143551,0675266,327655 +143553,1891923,207270 +143561,3515632,359471 +143563,2908090,248633 +143571,0158863,113391 +143575,1861334,80105 +143583,2094898,141581 +143587,1397497,36737 +143595,0071240,30671 +143599,4647788,336744 +143621,0071987,118876 +143631,0232114,152846 +143635,2795848,225719 +143637,2386285,268060 +143639,0334548,72485 +143641,0198559,49837 +143643,0079738,38293 +143645,0057919,32105 +143647,4271918,359305 +143649,0291310,94649 +143651,0120037,9643 +143653,2194599,170759 +143655,2521700,297018 +143657,2400463,306947 +143659,0120356,66741 +143661,1403987,85566 +143666,2088832,191975 +143668,2106670,103750 +143679,0004413,151086 +143681,0007610,344339 +143683,0095502,216822 +143685,0066058,156068 +143687,0197857,39882 +143689,0072831,89659 +143693,0075278,194720 +143695,2306783,158848 +143697,1234259,197754 +143701,0352951,41809 +143703,3032282,360339 +143705,1091858,188560 +143707,0419663,44250 +143709,1366321,172577 +143713,3013610,315872 +143715,0283534,32577 +143787,0086989,63229 +143789,0089164,72279 +143791,0092770,59139 +143803,0067242,65573 +143831,0057323,45005 +143835,0017621,2969 +143853,0235512,36817 +143855,4522716,337014 +143857,0093103,47158 +143861,0118537,214717 +143863,0361240,32528 +143866,0985593,14847 +143868,1493842,39285 +143870,1560993,136294 +143872,1158933,29760 +143874,0852726,43713 +143876,0287045,45823 +143878,1684564,44008 +143880,1563719,46713 +143882,3849692,362185 +143886,3062742,250572 +143890,4938416,353595 +143892,3905662,328246 +143896,4144504,319073 +143898,2431934,184608 +143914,0213035,153410 +143935,0106680,238458 +143942,0060737,84114 +143959,1034305,41434 +143969,4176826,318917 +143972,2393825,237303 +143974,2093100,79580 +143980,0068708,30933 +143986,0104575,124088 +143990,1178522,47084 +143998,0482374,10094 +144005,2222430,70553 +144013,0029611,57662 +144020,1340765,58106 +144027,0010195,175005 +144031,0081053,97108 +144033,2137376,91001 +144037,0499540,78115 +144048,0088149,158939 +144050,3646944,292739 +144052,2855724,363439 +144056,4466362,325848 +144058,2251828,335724 +144060,4355574,334328 +144062,4995590,355600 +144064,3899932,316761 +144066,2825230,257117 +144068,2109127,362373 +144070,3379814,341886 +144072,2238470,291151 +144074,0499004,14091 +144102,0061157,80443 +144134,3745906,291866 +144136,0073015,38201 +144138,4085696,298931 +144140,1067084,40692 +144142,0051828,216363 +144144,0051211,255784 +144148,2297031,112162 +144152,3817962,299715 +144154,2611390,245855 +144158,2914740,341051 +144160,0150943,220200 +144162,0155671,90079 +144164,0083936,103210 +144166,0407048,139637 +144168,0843868,211144 +144170,2297906,171952 +144172,3286052,334536 +144174,0240641,113097 +144176,3140724,320343 +144178,2090594,143602 +144180,1826550,267178 +144182,3197766,331576 +144186,3919598,359255 +144190,0086838,203226 +144192,0055644,156225 +144194,1008010,24567 +144196,1612319,106845 +144198,4900018,360341 +144202,0296712,48761 +144204,4948452,360638 +144206,3791302,329819 +144208,1351099,65576 +144210,3597400,259985 +144212,0485552,32160 +144216,4420110,360605 +144218,2206082,217775 +144222,2947832,230211 +144224,4935418,334394 +144226,2189418,248417 +144228,2883236,190250 +144230,1959325,165181 +144248,0054225,49697 +144250,3169780,227350 +144254,1388402,61718 +144256,1517239,26781 +144258,0875025,38015 +144260,4156924,320150 +144262,2537390,333287 +144264,4319112,300433 +144266,2236160,268725 +144268,2125685,289712 +144270,2559458,285844 +144272,2570414,225285 +144274,3634940,267467 +144276,4019426,291692 +144278,0214728,32249 +144280,1292575,39111 +144282,1138442,58959 +144284,1331291,38988 +144286,3480556,286668 +144288,0891520,25744 +144290,0433328,32213 +144292,0826024,32152 +144294,0484090,37973 +144296,2996684,274626 +144298,1614950,50479 +144300,3414954,247954 +144302,3144098,235704 +144304,2385138,128842 +144306,1832438,65881 +144308,1193490,107976 +144310,1330525,18060 +144312,2835556,210966 +144314,0483918,77504 +144316,0440067,32229 +144318,0489067,32162 +144320,1942825,71620 +144322,0488762,32163 +144324,1138457,32149 +144326,0473490,32157 +144328,1242755,36063 +144330,1471236,29977 +144332,1092034,52418 +144334,1611840,41980 +144336,2354141,230210 +144338,0757223,13311 +144340,1814665,82477 +144342,1846803,56578 +144344,0891488,55765 +144346,2251662,120713 +144348,2554270,154030 +144350,1275861,32932 +144352,2347134,141819 +144354,3259968,254672 +144356,1648093,62977 +144358,1937388,101056 +144360,3504824,254526 +144362,1843120,61062 +144364,1156444,25655 +144366,0398373,10257 +144368,1535495,44245 +144370,2957774,233112 +144372,1465518,41441 +144374,2709764,193717 +144376,3281394,239853 +144378,0969268,104176 +144380,3479208,269340 +144382,2471940,32946 +144384,1518828,37849 +144386,1087906,33338 +144388,0973847,31036 +144390,1483421,44133 +144392,1883397,73897 +144394,1345525,37850 +144396,1092287,32150 +144398,2972362,214910 +144400,0446313,18816 +144402,4136696,280019 +144404,2828840,180651 +144406,1129415,37196 +144408,3341072,244114 +144410,0102351,11175 +144412,1347007,24821 +144414,0997229,24822 +144416,0473267,14660 +144418,1238304,19238 +144420,1322315,20458 +144422,2972482,281780 +144424,2024506,153795 +144426,0157472,15028 +144428,1533086,36681 +144430,0457007,40452 +144432,2015315,81460 +144434,0415689,32173 +144436,0435026,28366 +144438,2106741,129850 +144440,2173024,121491 +144442,1483004,31714 +144444,1825955,55758 +144448,2076298,324017 +144460,1438461,25626 +144464,0287624,206 +144466,2824852,258947 +144468,0444626,18638 +144470,2565752,253775 +144472,2825120,253451 +144474,2550112,246205 +144476,0008827,136842 +144478,2191400,211005 +144480,3922810,299400 +144482,3118452,335866 +144486,0117254,56549 +144488,1599378,50458 +144490,1935094,75931 +144492,2253742,124294 +144494,3892620,284063 +144496,0969367,70131 +144498,1307057,16313 +144500,1900891,68252 +144502,1438522,32272 +144504,2072962,81242 +144506,1156479,38604 +144508,1236370,26010 +144510,3554976,264273 +144512,0410537,21792 +144514,2007413,77175 +144516,2208020,204053 +144518,0425414,35851 +144520,2171993,96664 +144522,0398563,5846 +144524,2969522,195276 +144526,0416853,56790 +144528,2130033,86279 +144530,1349853,24889 +144532,2969656,204553 +144534,0462684,45089 +144536,0295368,23609 +144538,2186715,137409 +144540,0341334,352128 +144542,1371585,90147 +144544,2282917,208429 +144546,2763764,194872 +144548,0455400,14561 +144550,2186819,116227 +144552,1604670,72650 +144554,0816437,32159 +144556,2308725,108972 +144558,1722513,58679 +144560,0914845,28917 +144562,1232106,24037 +144564,1465499,34777 +144566,1814819,50210 +144568,2973516,204260 +144570,1372692,25124 +144572,1935785,132957 +144574,1611823,42380 +144576,0455116,10265 +144578,1740002,117506 +144580,2967578,199584 +144582,0455195,32164 +144584,1437362,72074 +144586,1533085,52441 +144588,3560580,257568 +144590,1852904,74639 +144592,3121442,262137 +144594,0851515,33106 +144596,1305730,49095 +144598,1572168,40025 +144600,2053339,162006 +144602,0470711,37502 +144604,0295578,45303 +144606,0270288,4912 +144608,0258489,127849 +144610,0390043,45407 +144612,2332707,194523 +144614,3529656,328869 +144616,2049589,250671 +144618,3272570,324253 +144620,1051904,257445 +144632,3118874,330127 +144634,1254322,329829 +144638,3582088,254155 +144640,3230608,280612 +144642,0891562,40122 +144646,3397948,364153 +144650,1943014,157422 +144652,0039460,90800 +144654,2739338,226354 +144656,4428814,329712 +144660,2618368,264401 +144662,1872102,200645 +144664,2356464,233639 +144668,3293462,281826 +144670,1558952,113377 +144672,0107415,19553 +144674,1576433,67499 +144676,2140671,134812 +144678,2343266,128140 +144680,1766044,141520 +144682,0006689,53416 +144684,4354740,335392 +144686,0072783,21459 +144688,2302966,263471 +144690,0007507,13707 +144692,0097410,8415 +144694,0006548,2079 +144696,0007162,2078 +144698,2245003,290762 +144700,3877296,339060 +144702,3105008,222832 +144704,0865560,68335 +144706,1592287,47761 +144708,2910508,306969 +144710,1333015,51270 +144712,2049636,345323 +144714,3862750,304372 +144716,3164256,253414 +144720,0425137,151069 +144722,0283453,44287 +144724,0097971,84071 +144734,1817771,218784 +144736,4024210,354150 +144738,4515684,334924 +144740,0030814,102901 +144742,1275724,97274 +144744,2109141,326058 +144746,2822578,262169 +144752,3208802,363805 +144760,3181776,346808 +144762,4163020,306964 +144764,2788512,361050 +144770,0498567,26130 +144774,4660952,345519 +144776,1931421,106629 +144782,3603808,323370 +144784,4374460,319993 +144786,0405022,51935 +144788,0029584,64551 +144804,0045072,149895 +144828,0024703,3578 +144848,2845578,246013 +144852,0076218,260886 +144858,0080800,45555 +144862,0035669,176143 +144882,0064964,146787 +144884,0068723,151732 +144886,0153520,332757 +144888,0203090,157779 +144890,0200049,167874 +144894,5113926,362439 +144896,0071147,104954 +144910,3213684,321303 +144916,1954407,87022 +144926,1473801,21954 +144928,0053600,41311 +144930,0049023,40933 +144932,0780577,59333 +144934,2436516,191562 +144936,0331072,146933 +144938,2752724,221800 +144940,0087742,72664 +144950,3983266,292035 +144956,0810746,76040 +144958,1941653,160106 +144960,0046218,798 +144962,1856057,356161 +144968,4640564,364781 +144970,2374835,146404 +144972,0063609,258656 +144974,3144708,284841 +144976,2494362,294963 +144982,2473510,146301 +144984,4430136,363413 +144986,1861421,70530 +144988,0970519,70656 +144990,1609962,228221 +144992,0425985,1899 +144994,0078217,218296 +145006,0071465,28072 +145012,0088089,131815 +145022,3700456,339669 +145024,3514982,289820 +145026,2909748,339312 +145028,3614530,266639 +145030,2006295,293646 +145034,4173478,334991 +145038,0331231,48615 +145042,0499484,35724 +145044,1584921,93178 +145046,1292561,84094 +145048,1715223,84942 +145050,1869682,72792 +145052,1526578,56623 +145054,2994962,264978 +145056,2600742,216539 +145058,2776344,184219 +145062,0457121,257253 +145064,4025514,356296 +145066,4909348,355178 +145070,4105970,325302 +145072,0783494,46526 +145074,0371576,49216 +145080,3454574,329020 +145088,3055402,339362 +145090,0118933,2734 +145092,0369059,51083 +145094,2393827,301846 +145096,5042426,361380 +145100,0090455,58207 +145102,0457355,32286 +145108,0084269,273896 +145110,0095545,32329 +145112,0039383,44296 +145114,1281383,75886 +145116,0193997,67810 +145118,4425138,337473 +145120,0117078,53689 +145122,3176134,314462 +145124,1807984,77241 +145126,1537772,52183 +145128,2114510,239534 +145130,3159564,236317 +145132,2608224,171160 +145142,3212904,347754 +145144,0250617,55249 +145146,0328007,47354 +145150,2910904,298382 +145156,0377102,80660 +145162,0268579,28314 +145168,0029161,32428 +145172,0025211,132714 +145174,0024792,67790 +145176,0023215,81338 +145186,0029149,58160 +145188,0029188,66997 +145192,0027281,66819 +145194,0028378,67661 +145196,0027963,67113 +145198,0027100,67626 +145200,0026872,67162 +145208,0023854,161836 +145218,0423849,34942 +145220,1468703,44224 +145235,2994948,271665 +145240,1653002,98557 +145279,0087616,87148 +145283,3626804,291343 +145307,0102996,45147 +145312,0065999,62762 +145324,0774756,5881 +145340,2577854,228294 +145342,0058349,111398 +145344,1111876,31686 +145364,0078989,81772 +145370,3279818,314443 +145372,2726270,298653 +145382,0271237,71147 +145384,3140100,254201 +145388,2555652,365491 +145390,2102396,113329 +145394,0049429,28061 +145400,3420392,262871 +145418,3203606,294016 +145468,2900624,231001 +145474,0078976,140648 +145487,0491399,26040 +145489,0167049,56195 +145491,0270560,34729 +145493,0365043,44899 +145496,1172587,51485 +145500,0266078,18017 +145502,4342172,353148 +145504,3400460,277541 +145506,3600588,238781 +145508,2356304,247720 +145510,1098356,20323 +145514,4428788,352157 +145520,0974583,17038 +145522,1499249,44037 +145524,2117905,135309 +145532,0055856,79506 +145538,0057535,81654 +145572,0092516,40461 +145576,0087759,40145 +145584,0075614,27703 +145596,3876372,287493 +145598,2763746,273096 +145602,3463244,293476 +145604,0458485,31973 +145606,3674410,339077 +145610,0047567,280957 +145700,0051951,70864 +145724,0071647,74836 +145733,1837587,74945 +145735,3922474,335872 +145737,3661236,366045 +145743,1683472,56663 +145745,0187598,268788 +145747,1536051,222581 +145751,0080900,113255 +145753,0098669,36880 +145755,0087317,139945 +145759,2175927,97632 +145761,2379080,258075 +145763,4229938,310126 +145765,0097270,37055 +145769,0126771,107596 +145771,1343750,79329 +145773,3540136,335462 +145775,1730714,342786 +145783,0086289,110261 +145787,0086176,83223 +145817,1043585,105989 +145837,0083710,40084 +145839,3322364,321741 +145857,4341532,321039 +145861,0094900,148451 +145893,0073679,79921 +145903,0067297,85442 +145905,0245509,213556 +145915,3800796,353345 +145919,0064121,68756 +145921,2814362,271331 +145923,0259958,315256 +145925,1832381,64931 +145929,0282658,18492 +145931,0468975,27875 +145933,0115004,125148 +145935,2452042,227973 +145937,4176604,278393 +145939,0353975,134477 +145941,0004288,53368 +145943,3341718,297023 +145947,0093426,64015 +145949,0055840,363157 +145951,0172184,36693 +145955,2396701,120478 +145958,0144106,8556 +145960,2881698,224815 +145962,0006589,118576 +145964,0005084,118580 +145966,0116672,56332 +145968,3425772,236368 +145972,0403237,21753 +145976,0047184,39016 +145978,3884528,320061 +145992,0085452,27939 +145994,0216755,27940 +145996,0071617,87897 +145998,0372166,208783 +146000,0167346,211928 +146002,0076998,64042 +146004,0325005,41955 +146006,0076101,38362 +146008,0177892,68192 +146010,0075190,263823 +146012,0078648,139579 +146014,0123975,56007 +146016,0061028,279543 +146018,0073743,65107 +146020,1249415,33627 +146022,0081262,65264 +146024,0092745,45227 +146026,0097194,214340 +146028,0083100,84254 +146030,0168269,42651 +146032,0059585,48676 +146034,0056269,94696 +146036,0077114,65089 +146038,0084696,27925 +146040,0230898,65123 +146042,0077337,100888 +146044,0017418,262806 +146046,1266037,62871 +146048,0125111,63536 +146050,0060747,41979 +146052,0102569,31647 +146056,1861982,72066 +146058,4373868,322039 +146060,4219894,315226 +146062,4635162,355636 +146064,3919208,347331 +146066,3850798,304274 +146068,4019578,313653 +146070,3980868,289781 +146072,3121604,237214 +146074,2878406,191112 +146076,3021806,254725 +146078,3319518,304134 +146080,3360350,252431 +146082,2290845,100783 +146084,2321513,114564 +146086,2022444,224714 +146088,2606516,337456 +146090,2343847,77745 +146092,3783464,306391 +146094,3610936,306406 +146096,1213838,30065 +146098,1219390,310458 +146100,1634331,312597 +146102,0833463,306411 +146104,0833444,227600 +146106,0233562,302472 +146108,0267277,302435 +146110,0063404,20622 +146112,0064506,166874 +146114,0066070,21466 +146116,0272118,304701 +146118,0071205,159365 +146120,0245977,303966 +146122,0157339,44059 +146124,0079355,241174 +146126,0244585,60730 +146128,0156014,366120 +146130,0253618,353813 +146132,0082796,84693 +146134,0085743,25499 +146136,0085913,21462 +146138,0123102,62803 +146140,0086170,54256 +146142,0253514,122895 +146144,0089413,188719 +146146,0266260,96112 +146148,0090812,96159 +146150,0395453,252073 +146152,0091328,170845 +146154,0260411,228650 +146156,0093578,41903 +146158,0096252,61271 +146160,0300160,54656 +146162,0260494,98122 +146164,0100095,27624 +146166,0259877,153170 +146168,0261296,301671 +146170,0102825,107745 +146172,0101244,55627 +146174,0254683,230437 +146176,0267617,118809 +146178,0104561,33202 +146180,0105500,161402 +146182,0126234,45002 +146184,0106204,96147 +146186,0107166,54814 +146188,0107321,81551 +146190,0107311,32295 +146192,0290331,161442 +146194,0032686,56598 +146196,2378401,266764 +146198,3809308,325690 +146200,1065329,42436 +146202,0003016,127017 +146204,0128974,225403 +146206,0073803,78329 +146208,0077610,72111 +146210,3748440,288171 +146212,3741316,333091 +146214,2574666,221444 +146216,0111308,143881 +146218,0110280,143980 +146220,0109922,318562 +146222,0121989,159657 +146224,0112459,46375 +146226,0135666,232728 +146228,0135641,305899 +146230,0116763,97449 +146232,0116898,325555 +146234,0117437,21566 +146236,0116690,141613 +146238,0115484,66292 +146240,0116407,118632 +146242,0233422,134446 +146244,0118983,13986 +146246,0135161,361992 +146248,0119428,161238 +146250,0119239,21906 +146252,0118931,54969 +146254,0225029,165016 +146256,0118673,46373 +146258,0210609,103048 +146260,0173080,45533 +146262,0211634,54959 +146264,0111156,74405 +146266,4881032,366742 +146268,3144266,324986 +146270,4820312,366551 +146272,2184211,124217 +146275,3865478,314371 +146277,2445488,215711 +146279,3997238,288301 +146291,0176097,84994 +146301,1424746,35652 +146303,3637028,284682 +146305,0229664,65592 +146307,2474976,312831 +146309,4272866,315465 +146311,1603933,90992 +146313,1870548,355389 +146317,1332125,50535 +146323,0111157,75133 +146325,1594534,43409 +146327,0078655,67467 +146329,0403783,51129 +146331,0156917,169090 +146333,3329956,228198 +146335,3727096,299851 +146337,0117026,367006 +146342,3263430,277435 +146344,3358304,365188 +146346,4103474,355436 +146348,0245910,121652 +146350,3561236,347548 +146352,1734580,179805 +146354,2167895,150161 +146356,0085667,169089 +146358,0152836,20929 +146360,0216817,62883 +146362,0226847,161227 +146364,0216707,165066 +146366,0195002,142412 +146368,0209263,305337 +146370,0281913,227832 +146372,0207341,161226 +146374,0233856,39347 +146376,0220594,319920 +146378,0214931,117345 +146380,0206067,211275 +146382,0255097,363105 +146384,0255111,35064 +146386,0255305,304755 +146388,0255309,81782 +146390,0232079,159666 +146392,0250690,166231 +146394,0250483,165573 +146396,0248012,56666 +146398,0252277,232496 +146400,0250415,157800 +146402,0218533,41381 +146404,0286504,271484 +146406,0220596,232711 +146408,0263491,348762 +146410,0249588,325140 +146412,0247944,276846 +146414,0111158,75134 +146419,2310800,199571 +146421,3626440,297603 +146423,3294200,294741 +146427,0184596,53554 +146429,3631388,262113 +146431,0107982,88126 +146433,2226301,89604 +146435,0067197,17875 +146437,5074414,362077 +146439,0165904,171174 +146441,4483262,365340 +146443,1408972,44282 +146455,4522158,359070 +146463,3493688,366763 +146475,3509270,298844 +146477,3427066,343878 +146481,0020945,85610 +146491,0058311,31396 +146499,3880688,336033 +146501,2474310,254005 +146511,4490654,348929 +146520,2634384,270696 +146523,0117549,27766 +146540,3826188,321224 +146554,3630326,344043 +146562,0057652,3012 +146582,4125220,355594 +146586,0093763,89183 +146588,0021810,128368 +146590,0113017,116789 +146592,1224376,26651 +146595,0098732,107393 +146600,0403057,25354 +146604,3282858,306952 +146606,4224478,347258 +146608,0167956,50189 +146630,0178544,280182 +146632,0375571,63825 +146634,1779826,80277 +146636,3073490,282762 +146638,2351524,125619 +146640,3733622,280755 +146642,2204080,300654 +146644,0145393,127471 +146648,0353168,15089 +146650,3568218,337549 +146654,4057632,364137 +146656,3076658,312221 +146660,1831829,62796 +146662,2065968,91417 +146668,0060450,4728 +146670,0065769,11913 +146672,0058135,4727 +146674,0079200,10516 +146676,1022885,70044 +146678,1677642,130515 +146680,0099377,86252 +146682,2980626,324325 +146684,5184298,367326 +146688,1291570,339527 +146690,0061626,42693 +146692,0062987,317260 +146696,1680679,82941 +146698,1482989,53807 +146700,2186566,235044 +146702,0032071,74751 +146704,1239228,58720 +146706,1175505,14558 +146708,0276409,39317 +146710,0385363,74922 +146712,2521188,251584 +146714,2343536,167424 +146716,1927068,133521 +146718,2370378,61580 +146720,3671676,278867 +146724,0097038,81274 +146728,2201251,170752 +146730,3593046,360203 +146732,3569782,270766 +146734,0117621,75140 +146736,3962210,328739 +146768,0173184,104945 +146776,0074423,57310 +146820,0115564,59857 +146830,0033941,64032 +146852,0240659,61217 +146854,0044562,75532 +146856,0047026,155956 +146858,1417038,42579 +146860,1655628,56922 +146866,2217859,157827 +146870,3765088,271983 +146872,0056969,70449 +146874,0057422,36324 +146876,2616594,293189 +146878,0061728,19548 +146880,1065307,134881 +146900,3276924,336004 +146902,3619102,368256 +146904,3343784,246133 +146906,1456606,211166 +146908,4298966,343426 +146912,0117622,75142 +146914,3921454,291006 +146918,3077818,200823 +146920,3841866,327383 +146922,3136112,287426 +146924,0411743,23857 +146926,3774790,332502 +146928,3661798,266058 +146930,0363728,40635 +146932,1671496,73132 +146934,0109673,122368 +146936,4440036,329206 +146938,0103615,250029 +146942,0076897,59959 +146944,0078528,11530 +146946,2645164,207402 +146966,0113007,183964 +146968,0140439,24195 +146970,0054242,71995 +146972,0047372,274131 +146974,0048739,62034 +146976,0049153,220565 +146978,0050813,217648 +146980,0470082,63074 +146982,0081541,60175 +146984,0080929,24260 +146986,0082726,53179 +146988,0086420,58833 +146990,0083618,52557 +146992,3708528,271388 +146994,3681154,266563 +146998,0068375,33126 +147002,0343663,39850 +147004,2124186,79212 +147006,4195278,332534 +147008,0902955,27721 +147010,2905772,193544 +147012,4119270,297308 +147014,1258201,117340 +147016,3409440,277153 +147018,0374627,33624 +147022,2279339,333348 +147024,3595298,362136 +147026,1322287,15768 +147028,0042824,73492 +147030,0062859,84844 +147033,4370922,318972 +147035,0118674,232739 +147037,0367097,92326 +147039,3268288,297466 +147041,4097612,330007 +147043,0006895,134155 +147045,1828148,84106 +147047,0298786,70815 +147049,0313410,65830 +147051,0214915,84368 +147053,0291855,237672 +147055,0082162,60392 +147057,0117620,75143 +147060,3115242,257200 +147062,2524568,214099 +147102,2979302,259838 +147104,3528498,253339 +147106,2281201,184080 +147108,3242934,257116 +147110,3638686,319964 +147112,2042464,280674 +147114,2569466,145203 +147116,2070852,189755 +147118,3216296,347264 +147120,0085077,137587 +147122,4067076,337751 +147124,3400010,293603 +147126,2827908,261810 +147128,4228816,329724 +147130,0098238,4228 +147132,0096828,59349 +147134,0103761,76793 +147136,0103168,50213 +147138,0055763,71767 +147140,1670715,301270 +147142,0478566,19100 +147144,0093132,31743 +147176,0112407,118758 +147178,0072919,156627 +147182,0107561,92562 +147184,3685218,285848 +147186,1074974,273126 +147188,0211896,79853 +147190,0084452,207720 +147192,0062245,164041 +147194,0062323,20879 +147196,0134614,20975 +147198,0072080,10939 +147200,0130195,63291 +147202,0044409,65656 +147204,0090370,65110 +147206,0401089,42952 +147208,0149244,64046 +147210,0125418,64044 +147212,0211191,84774 +147214,0193017,65099 +147216,0151987,140966 +147218,0115567,44617 +147220,0198439,80746 +147222,0237800,364684 +147224,0110383,37015 +147226,0182667,207696 +147228,0103218,63537 +147230,0281303,72888 +147232,0056045,63304 +147234,0135427,63538 +147236,0084155,59475 +147238,0063369,65591 +147240,0057232,20977 +147242,0067313,65594 +147244,0083730,41977 +147246,0217590,59803 +147248,0270151,238307 +147250,0229922,127605 +147252,1494191,189215 +147254,0081332,254311 +147256,0081267,254309 +147258,0086142,202239 +147260,2659374,193154 +147262,3451498,253192 +147264,2293138,169020 +147266,0136425,210365 +147268,0129686,19493 +147270,0271082,70874 +147272,0063583,50197 +147274,0218831,174905 +147276,2055790,167364 +147278,0099574,174224 +147280,0114580,119694 +147282,1863347,83456 +147284,0095987,132542 +147286,0086333,127608 +147288,0137432,82857 +147290,0069628,38430 +147292,0129562,203720 +147294,0068431,199655 +147296,0033889,68271 +147298,0276594,130492 +147300,0091942,270393 +147302,0082471,40055 +147304,1161426,21534 +147306,0261184,71662 +147308,1217578,65545 +147310,0114783,92737 +147312,0126253,62040 +147314,0084526,59455 +147316,0120413,263873 +147318,0119973,80386 +147320,0254926,77720 +147322,0108421,83614 +147324,0182512,74852 +147326,0459944,126846 +147328,0080263,72093 +147330,0079902,72095 +147332,0106029,60199 +147334,0808336,116544 +147336,0094369,227998 +147338,1512222,363890 +147340,1087853,16915 +147342,2419354,252189 +147344,0914372,30579 +147346,0082378,40469 +147348,1150934,19543 +147350,2637580,212494 +147352,0459392,48333 +147354,1727261,63350 +147356,3765892,296121 +147358,2924478,320412 +147360,0089038,84422 +147362,0085385,67087 +147364,2062661,92393 +147366,2837602,242376 +147368,0482495,12759 +147370,3214310,353462 +147372,4050552,317182 +147374,1998643,315623 +147376,1672218,315620 +147378,1337072,282963 +147380,1321969,317190 +147382,1061123,335209 +147384,0827573,282758 +147386,0100811,92787 +147388,0390073,55681 +147390,0385592,30385 +147392,1351177,22573 +147394,2070759,320169 +147396,1559359,54525 +147398,4601102,358881 +147400,2402186,191185 +147402,0342639,72232 +147404,5034276,367882 +147408,2669766,227262 +147410,3577624,321751 +147414,0440003,79434 +147418,0056470,18512 +147426,3646462,265351 +147428,4192740,333886 +147430,3345952,268413 +147432,0425333,64433 +147434,0470883,30634 +147436,0826606,49828 +147441,4126312,320349 +147452,2198956,172520 +147454,2215515,224923 +147456,3394758,337012 +147458,0057155,28536 +147460,0044974,219335 +147462,0301163,133137 +147464,0199817,92727 +147466,0080683,119944 +147471,2950052,300666 +147495,0088208,282298 +147597,2788526,268092 +147603,0880440,13732 +147605,0016310,105539 +147607,4150494,336806 +147609,0472254,28546 +147611,3334212,335869 +147613,0997035,51403 +147617,3734678,369230 +147619,2889050,257593 +147624,0228021,188981 +147631,0140307,44785 +147640,0055551,111397 +147662,0064265,48300 +147692,1579223,72560 +147698,0075802,66160 +147726,3687310,334527 +147728,0081755,60836 +147730,0072419,161620 +147732,1740828,253426 +147734,0194283,166207 +147736,4819804,356898 +147738,3765326,293982 +147740,4817256,346755 +147742,2543508,309018 +147744,3168808,343880 +147746,0120110,108794 +147748,1667133,65020 +147750,3296658,336222 +147752,4119052,329066 +147766,3833744,295602 +147768,0101697,86211 +147770,0006809,172443 +147775,2163315,219466 +147779,4226446,306060 +147781,2226519,215881 +147783,1492723,39446 +147789,0079834,38119 +147819,0047463,65799 +147825,3496334,293456 +147829,4401342,324573 +147831,5087554,364089 +147833,2624662,157050 +147835,5045592,363810 +147839,1517160,52255 +147841,4893244,353285 +147843,2719448,237960 +147845,3275216,323679 +147847,2058673,257088 +147855,0060848,119482 +147859,0070140,68865 +147865,0078879,3013 +147889,0085755,32665 +147895,1193516,31060 +147897,1373215,31061 +147899,1577061,32926 +147901,3477064,257343 +147903,1352455,78401 +147905,3504542,255533 +147907,0037960,23126 +147909,4232610,348060 +147911,2987342,210293 +147913,3407428,310491 +147915,2187474,114377 +147917,2174736,143169 +147921,3236976,291290 +147923,1532515,306464 +147927,4935446,352197 +147932,1354678,174611 +147934,0143088,63880 +147936,0185534,104515 +147940,3148502,339274 +147942,2949338,191850 +147986,0033558,42298 +147992,3300442,336691 +147994,5190958,368330 +147998,0048971,80775 +148030,3822818,333696 +148032,0071477,77861 +148034,1522846,84520 +148036,4908644,355020 +148038,2150511,205749 +148040,2075247,159897 +148042,1758563,96882 +148044,0361921,32571 +148046,0416046,33315 +148048,2221420,194079 +148050,0343112,16464 +148052,1202028,33316 +148054,3155794,315946 +148056,1754944,105885 +148058,4934950,353464 +148064,0241763,104852 +148066,0095857,249914 +148070,3001638,284288 +148074,0097753,184002 +148076,0096189,123623 +148078,0937378,14074 +148080,0097292,64508 +148082,0067178,100468 +148084,0124464,29539 +148089,1093815,49722 +148091,0057219,42809 +148093,4006044, +148095,4679210,341895 +148104,1654725,103947 +148106,1673736,79825 +148108,3529198,292177 +148110,4450396,349158 +148112,2363449,171277 +148114,5161392,369165 +148116,0067913,105098 +148146,0068566,79426 +148154,0071150,78546 +148160,2294819,130754 +148162,2664880,336884 +148166,3748512,339751 +148168,3698408,295748 +148170,0078212,34666 +148172,2304933,299687 +148176,0431842,16047 +148178,0273995,51210 +148180,0060084,129577 +148186,0071330,90092 +148188,0072785,93708 +148192,0074586,39979 +148194,0076877,68863 +148196,0062659,130322 +148204,0082451,64739 +148206,0089104,69152 +148222,0110207,42764 +148224,0063479,73740 +148228,0062429,22359 +148232,0063587,143936 +148238,4537842,364067 +148240,4147830,312100 +148242,0164226,73901 +148244,3685622,321666 +148248,3433632,307103 +148266,2400256,255869 +148272,0830581,56255 +148274,2306687,354625 +148276,0483200,75393 +148278,3530690,293082 +148280,3754940,341744 +148282,0272018,17007 +148284,0208993,26571 +148286,4718770,353311 +148288,0083325,134743 +148290,3121562,317953 +148294,0077699,36361 +148316,0020987,36789 +148333,2419986,214758 +148344,1049956,16422 +148357,0191076,285908 +148359,1641401,254918 +148361,0052570,358980 +148365,0111562,13591 +148367,4661600,345637 +148369,3616916,336882 +148372,3430416,333555 +148376,3142872,256546 +148378,0067511,105085 +148380,3638690,279179 +148382,0099826,61535 +148384,0060975,256375 +148386,0187579,79435 +148388,3698558,334028 +148390,0112326,152539 +148392,0375100,58384 +148394,0105502,68437 +148396,2947556,325039 +148398,0094730,16079 +148400,2175928,258147 +148402,3801730,297859 +148406,1998204,215740 +148408,0060672,24563 +148410,4472596,361042 +148412,1265621,32206 +148414,2139851,172721 +148418,3630556,353257 +148422,3152098,246594 +148424,4594834,340275 +148426,2332623,197599 +148428,0485774,10124 +148430,1754257,221801 +148432,5145828,348150 +148438,0272183,216983 +148440,4400058,331836 +148442,4029998,291868 +148444,0021836,4540 +148446,0004194,53385 +148448,0006177,30982 +148450,1075380,370524 +148452,0267601,15701 +148454,0233600,45438 +148456,0063477,42649 +148458,0068178,196253 +148460,3504226,327016 +148462,0241715,33318 +148464,1877727,277069 +148466,1155650,23150 +148468,1155651,23151 +148470,1155652,23153 +148472,1343089,23166 +148474,1345776,23167 +148476,5148864,366548 +148478,4644382,351694 +148480,1561457,260928 +148482,3859076,300693 +148484,1445208,218275 +148486,1051981,15706 +148488,3993802,301816 +148512,1910615,107100 +148548,0200052,74082 +148550,0179901,106155 +148560,0073633,96460 +148578,0186532,324194 +148584,0068463,295389 +148586,0082904,103122 +148592,3291148,323656 +148614,0040809,49502 +148616,0040764,320853 +148618,1321862,136793 +148620,4967094,354072 +148622,4788638,339562 +148624,1821680,78570 +148626,1596363,318846 +148628,4076980,321621 +148630,0102932,9048 +148632,4270878,333088 +148634,3703148,340816 +148636,0498719,85304 +148638,0007338,342831 +148640,1160313,25041 +148646,1977903,72246 +148648,4000442,342136 +148652,2479478,347969 +148654,2360334,166178 +148657,4881242,338930 +148659,4553712,332827 +148661,2175672,120149 +148665,2880448,347497 +148667,5069564,367735 +148669,3921418,247777 +148671,0495241,246355 +148673,3595848,299579 +148675,4843046,369879 +148679,2346046,185744 +148681,1535103,48009 +148683,4733536,367551 +148685,3591436,324291 +148687,2414166,137366 +148691,0410214,143546 +148693,2337981,107235 +148695,2241691,160564 +148697,3542188,332179 +148699,5098836,363683 +148701,2980554,339145 +148703,3508566,312452 +148705,0241524,105157 +148707,4163138,297789 +148709,2322517,237584 +148711,2827708,299511 +148713,0114860,195867 +148715,0110573,203066 +148717,2773898,179375 +148719,2082232,84186 +148721,3228360,291146 +148725,1322355,56685 +148729,2986300,267094 +148735,0066511,78101 +148739,0099430,73954 +148749,0097913,182843 +148751,0082752,162056 +148753,0205430,93064 +148755,0210209,150958 +148757,0256155,27009 +148761,0144039,30922 +148763,0089050,25568 +148765,0305556,6884 +148767,0127624,22162 +148769,0427206,46431 +148771,0476576,98456 +148773,0484831,31377 +148775,1369845,26736 +148777,0105551,172760 +148779,1183696,23205 +148781,2966934,242093 +148783,1540052,186121 +148789,0050604,116733 +148793,2071465,214215 +148797,0343594,44142 +148803,2297108,122326 +148805,2488366,262165 +148811,0319736,31525 +148814,2073661,299145 +148816,2451550,225283 +148818,1887748,160128 +148820,1723124,82743 +148824,1633329,111662 +148848,0368147,31557 +148850,0073640,30059 +148853,3212568,256314 +148855,4337072,334376 +148857,3894188,285020 +148859,1527835,64655 +148861,3893620,371507 +148863,2215267,138735 +148867,4382872,326425 +148877,0241446,105153 +148879,0078010,299165 +148881,4171032,303867 +148884,2016955,103502 +148904,1658797,68419 +148906,0090003,250096 +148909,0098444,195752 +148911,0249261,79236 +148913,1552987,179308 +148915,2415496,142635 +148917,3286484,245739 +148919,3144582,331351 +148921,2552394,283596 +148923,1169834,193309 +148926,0840304,17306 +148932,4938602,359983 +148934,2282973,135799 +148936,1233459,57440 +148938,0105385,32517 +148940,0103045,47647 +148942,0067354,150677 +148946,3709678,270646 +148948,0277558,157239 +148950,1602474,52776 +148952,0067924,29960 +148954,4973112,357681 +148960,3030580,361025 +148962,3777462,271433 +148964,3054798,348689 +148966,4883124,373162 +148968,4047752,302797 +148970,3620762,347944 +148972,0104115,1877 +148974,3377996,291537 +148976,5275778,372631 +148978,3028018,201223 +148980,3462002,319152 +148982,0077429,26702 +148984,4206218,359746 +148986,2799040,323149 +148988,3288948,253286 +149004,3505682,341045 +149011,2386404,279690 +149072,1986161,79781 +149080,0192013,108228 +149082,3924144,323968 +149084,1920846,120172 +149088,0076593,36748 +149090,1194105,303950 +149092,0225394,229056 +149094,0258247,42195 +149096,3398252,284460 +149100,2368817,168112 +149102,0076052,126947 +149104,0038497,67927 +149106,0099496,30452 +149108,1680102,356482 +149114,1841584,69985 +149116,3422094,268854 +149118,3212002,312993 +149120,0943232,52116 +149122,1385633,80041 +149124,0290321,13755 +149128,0406222,140733 +149130,3355014,346472 +149144,3345472,282069 +149146,3345474,282070 +149150,2992894,252028 +149154,0400913,36771 +149156,0161052,55254 +149158,0096318,62900 +149160,0094233,55776 +149162,0092144,62898 +149164,0086523,62896 +149166,0084845,62897 +149168,0083268,62894 +149170,0081665,145912 +149172,0079411,36772 +149174,0078143,55558 +149176,0076170,36767 +149178,0074818,36766 +149180,0073581,36765 +149182,3569544,322270 +149184,0380728,40836 +149234,0105120,56975 +149248,0038794,94641 +149268,0035189,84085 +149318,0349136,273085 +149320,0788006,63011 +149322,1548018,63160 +149324,0081915,20363 +149326,1756791,83728 +149328,0309150,55534 +149330,0182015,125464 +149336,3501046,339339 +149338,4254838,339888 +149340,4684410,359204 +149342,1025102,149232 +149348,3551400,356483 +149352,1528854,274167 +149354,1850457,266294 +149358,0461674,169382 +149360,1018902,46914 +149364,3626180,310972 +149366,5014528,363486 +149368,4767950,348634 +149370,5097970,363484 +149372,5033114,363482 +149376,3602128,343284 +149380,5056034,362886 +149382,5031014,360604 +149384,5156770,363476 +149386,5182120,363478 +149390,5204384,363480 +149392,5133810,363483 +149394,5133572,360603 +149398,5210078,366631 +149400,4587740,366018 +149402,0138074,79720 +149404,4603080,336681 +149406,2267968,140300 +149408,0159568,16308 +149410,0095262,16157 +149412,0095512,154738 +149414,1177161,45528 +149416,0416080,21442 +149418,4316236,319089 +149424,1459998,79280 +149426,2360446,281524 +149428,0416881,72443 +149430,1330229,58550 +149432,0456821,95164 +149434,0760185,160297 +149436,1139641,58551 +149438,0810400,72592 +149440,1826714,64882 +149442,1542840,61888 +149444,0235452,142499 +149446,1897945,63465 +149448,1882164,85377 +149450,1097268,41835 +149454,1655400,138853 +149456,1233473,38000 +149458,1810510,45079 +149460,1606595,72505 +149462,1872823,286007 +149464,1669801,56232 +149466,1603463,67560 +149468,2095657,108646 +149470,1032764,64228 +149472,0367174,41198 +149474,1954498,80618 +149476,0464762,114661 +149478,1078600,32695 +149480,1386449,313676 +149482,0475557,38011 +149484,2173264,116488 +149486,4276834,314283 +149488,1330015,26381 +149490,0872007,206155 +149492,1646214,49704 +149494,0493567,47331 +149496,2652756,159230 +149498,2411024,138665 +149500,2592336,171587 +149502,1674766,187006 +149504,1818377,189151 +149506,1665418,169068 +149508,2132405,92499 +149510,0104616,232420 +149512,3013126,212640 +149514,4280430,311093 +149516,0448245,13739 +149518,0027967,260583 +149520,4163644,343702 +149522,0098156,31127 +149524,0101309,40800 +149526,0091065,62768 +149530,0039320,70702 +149532,5248968,372981 +149534,3735302,320587 +149536,0376827,106222 +149546,0076448,26537 +149548,2303112,242551 +149550,2379436,128070 +149554,0040087,45166 +149556,0031058,60481 +149558,0021633,229005 +149560,0027376,82036 +149562,0034027,43788 +149564,0033169,43823 +149566,1734589,102051 +149568,4419390,364833 +149570,1554523,50542 +149572,1286126,24426 +149574,0079828,40246 +149576,2064865,141976 +149578,4012254,299578 +149580,2994382,239180 +149582,4737910,352209 +149584,2734566,350849 +149586,1794725,141476 +149588,4779296,373976 +149592,2102502,220488 +149594,2587914,291348 +149596,3473390,335205 +149598,1542488,76354 +149600,1172996,37715 +149602,1684928,70712 +149604,2040537,161482 +149606,3735246,362045 +149610,0071624,96985 +149614,3909336,350845 +149616,2912144,191731 +149618,0054756,43020 +149620,0430082,127642 +149622,3907790,315319 +149624,3358470,298722 +149626,4040072,370835 +149632,0034268,60116 +149634,0033648,278122 +149636,0038852,299143 +149638,0049839,113936 +149640,0056468,166888 +149642,3504604,339934 +149644,1699225,60895 +149646,4133088,316179 +149648,0038715,217250 +149650,4146128,373977 +149652,3284178,254736 +149656,2361042,128230 +149658,4618398,347201 +149660,0071138,66772 +149662,3271120,253258 +149664,3922350,326415 +149666,0053640,89751 +149668,0077682,26550 +149670,0795434,20360 +149674,0101070,373357 +149676,4685096,342927 +149683,1143145,272426 +149686,4701702,357940 +149688,0069316,41032 +149692,0063381,292523 +149694,0989007,28997 +149696,1735853,73976 +149698,0895777,37817 +149700,2139855,82745 +149702,1522189,85389 +149704,1483795,73919 +149706,0327002,69846 +149709,0187231,55138 +149711,4161962,300601 +149715,3573412,372821 +149717,2417134,145711 +149719,1823059,107257 +149723,3717532,317442 +149725,1320113,98440 +149727,0907868,98438 +149729,1128079,98439 +149735,0191066,114018 +149739,3063470,267955 +149753,2601260,309811 +149755,0099127,281291 +149759,4819560,362154 +149761,0395677,16632 +149764,0492650,20969 +149766,0430895,16147 +149768,3094914,214129 +149770,1866931,140054 +149772,2002626,129745 +149774,3469386,252981 +149776,1745713,63064 +149778,1649354,81560 +149780,1159223,41186 +149782,1985196,279998 +149784,1068643,36185 +149786,0215681,9375 +149788,1233482,36164 +149790,1786668,53514 +149792,1237958,40119 +149794,2714934,292264 +149796,2390253,118451 +149798,1587422,54225 +149800,1260937,40121 +149802,2319760,119273 +149804,1092006,39493 +149806,1427241,99188 +149808,3579990,252067 +149810,1493070,52870 +149814,2671776,201386 +149816,0151513,110713 +149818,0249947,341517 +149826,3949936,339944 +149832,0381842,31078 +149856,0029924,151911 +149858,0826039,163890 +149864,0023878,99729 +149888,3252786,337208 +149938,0114202,49172 +149946,1698008,83880 +149978,1289432,21167 +149980,0304389,66068 +149982,1772947,84479 +149984,0789770,20226 +149986,1301308,132561 +149988,1286784,44751 +149990,1194628,68360 +149992,0808174,68444 +149994,0441694,276608 +149996,0940723,12135 +149998,0098615,76202 +150000,1538545,61935 +150002,1381112,17486 +150004,1506965,69740 +150006,1817088,123005 +150008,0114577,47587 +150010,1511329,42748 +150012,1470860,60775 +150014,0473492,22034 +150016,2197849,150041 +150018,0443352,66066 +150020,0083307,263582 +150022,1784458,80469 +150024,1678044,56950 +150026,0204870,299856 +150028,0426037,20388 +150030,0106218,24524 +150032,0480854,17902 +150034,1272041,53103 +150036,1757710,80153 +150038,0314624,210320 +150040,0330539,209414 +150042,2123996,139270 +150044,0467817,10509 +150046,0472477,52738 +150048,1081964,22454 +150050,2365879,141145 +150052,1731230,73628 +150054,0129222,86482 +150056,2248805,164366 +150058,0077449,94630 +150060,0101805,280437 +150062,0129114,287344 +150064,0272087,374698 +150066,0228073,218238 +150068,1825974,73222 +150070,1405808,142085 +150072,0239593,75578 +150074,0085829,52260 +150076,1086214,15994 +150078,0131278,36712 +150080,2572160,182545 +150082,0812265,35639 +150084,0086553,63044 +150092,1801071,255647 +150140,3001186,215908 +150146,1289430,122619 +150148,0068493,48848 +150156,1345505,211220 +150190,3867396,324930 +150194,5290524,374416 +150196,0039676,65777 +150202,0042810,39288 +150228,2415372,178189 +150230,2974050,325712 +150232,3856042,317198 +150234,1865368,84105 +150236,3098874,286987 +150238,3142958,271954 +150240,1720044,54330 +150242,2249712,129119 +150244,3881700,328480 +150246,3463014,284250 +150250,4306308,325134 +150254,4935372,354216 +150256,1602575,376358 +150260,1454545,45098 +150262,1847645,57718 +150264,1849755,132873 +150268,4535650,370665 +150270,4183692,333596 +150272,3268668,331190 +150278,2141773,336313 +150282,4287610,256959 +150284,1037223,127363 +150294,3387542,329440 +150296,1438298,41518 +150300,2261505,141901 +150308,0053933,242354 +150316,1369667,277968 +150320,1334470,37460 +150322,1532957,26379 +150324,1013542,27621 +150334,2077833,102632 +150336,3034594,279973 +150338,2586682,210408 +150340,3554418,291157 +150342,0315642,275269 +150344,2905838,283589 +150346,2379679,258100 +150348,0078474,30117 +150352,4315956,313628 +150354,2326087,138038 +150358,2087838,118026 +150360,2642524,284050 +150362,2014268,105991 +150364,3958072,287497 +150367,3249478,320420 +150369,0784145,77194 +150371,1206479,77855 +150373,0304072,48661 +150375,2403867,204755 +150377,0167187,16075 +150379,1849027,74842 +150381,1928329,122198 +150383,0826110,173928 +150385,1092385,24154 +150387,0306474,59297 +150389,1039651,37425 +150391,3492436,254277 +150393,3797004,321191 +150395,3853452,349176 +150397,0138810,374883 +150399,0097035,350554 +150401,3511596,325173 +150407,0042522,118236 +150413,0070327,124122 +150417,0068014,49719 +150433,0050620,113700 +150443,0047945,16912 +150523,1107850,29982 +150534,0061496,360626 +150536,1476250,215408 +150538,4076760,362703 +150540,3854104,289190 +150542,1607568,54657 +150544,4689996,347767 +150546,1429313,57393 +150548,3845232,370646 +150550,0199148,67339 +150552,1127884,253353 +150554,0119571,32643 +150556,1198405,31237 +150558,2048865,342502 +150560,0118063,55949 +150562,0211328,222932 +150564,0261742,103851 +150566,3004278,243442 +150568,2871116,196398 +150570,3508830,267310 +150580,0065957,5953 +150582,0023137,266249 +150584,0026193,354105 +150586,0027244,258384 +150588,0029790,259325 +150590,0029685,61046 +150592,0173769,159849 +150594,0047978,193321 +150596,4701546,371759 +150598,2992524,288463 +150600,2121377,115547 +150602,4048668,333675 +150604,2718440,272548 +150606,2103171,140229 +150608,5227516,361671 +150610,1946193,245697 +150612,2512236,294825 +150615,0240610,61662 +150617,0069970,31343 +150619,1988699,150049 +150621,0477988,13713 +150629,0093611,347155 +150631,1322354,38883 +150633,5129768,322317 +150635,0058949,236570 +150647,0075756,277631 +150649,4221708,329407 +150651,0782847,135307 +150655,3550078,358238 +150657,3231100,376823 +150661,0071862,104041 +150663,0021607,86232 +150667,1957955,106739 +150669,5051390,372113 +150671,1918984,150054 +150674,3707114,321974 +150688,3648510,253150 +150694,2321502,137333 +150696,4449576,371492 +150700,4404474,340401 +150722,3797808,293006 +150724,3951298,377206 +150726,2914762,249926 +150728,1690368,72054 +150730,1809231,86987 +150732,1699135,89877 +150734,3667798,270724 +150736,3985604,286687 +150742,0072405,76764 +150748,0078956,151687 +150762,0063155,284467 +150766,2010939,180813 +150768,3750826,356994 +150772,0055119,198890 +150774,3530978,315880 +150776,4439120,340176 +150778,1726252,361854 +150780,2438860,173056 +150786,0469318,23382 +150788,3904778,286697 +150792,0050692,92189 +150798,0011865,53766 +150800,0012465,130275 +150838,2444006,155336 +150844,0420116,76817 +150846,2842470,187442 +150850,2536124,279997 +150852,1842532,85032 +150854,0115418,313985 +150856,5189670,374454 +150858,1413489,68184 +150864,2056501,79997 +150866,1542391,50526 +150868,1047481,77600 +150870,2005363,79516 +150872,0066933,360627 +150874,1291634,36620 +150876,0932533,26314 +150878,1118084,176535 +150880,0238825,74921 +150882,0120261,153266 +150884,1808045,78326 +150886,0100388,58553 +150888,0986232,36626 +150890,0476872,31855 +150892,0489134,13274 +150894,0476680,16907 +150896,2113820,209385 +150898,1420543,36377 +150900,2540072,144942 +150902,2282989,176037 +150904,4128514,329550 +150906,1344726,38941 +150908,3337188,282768 +150910,0073715,90909 +150916,3141810,152388 +150922,1847584,85434 +150931,0088853,169009 +150993,3510480,284514 +150995,3169770,351145 +151027,3581384,339790 +151030,0424359,126423 +151036,0020814,153444 +151038,0016232,184819 +151040,0024710,84248 +151046,0056921,115162 +151054,0053050,76777 +151058,0050854,76775 +151062,0051172,76772 +151064,0047217,147360 +151070,0048104,4709 +151072,0042988,68754 +151078,0038824,43462 +151084,0035885,116712 +151089,0124314,64418 +151091,0031309,92254 +151099,0025471,105549 +151105,0020656,47612 +151107,0023345,92413 +151111,0018187,214600 +151113,4080728,348678 +151189,1517213,163312 +151191,0242590,352024 +151193,0073589,67018 +151197,2321249,134409 +151199,4466936,334878 +151230,0109666,28920 +151277,5251348,359807 +151279,0075007,56588 +151281,0076684,56589 +151311,4144190,326094 +151313,1594972,276905 +151315,2869728,323675 +151319,4669210,377565 +151321,0428059,53301 +151343,0390418,27069 +151349,0344766,27748 +151353,0077343,85268 +151357,2245988,211845 +151359,0074635,136716 +151365,0304927,79911 +151367,1593807,309968 +151371,3108840,217587 +151384,1292648,53290 +151414,2964120,274817 +151431,3359366,56083 +151433,0054099,43036 +151441,0321353,67083 +151443,0474361,87943 +151451,2158649,85729 +151453,2366035,255396 +151459,4387040,375290 +151483,2005299,264036 +151485,0168749,104081 +151487,0293567,64462 +151489,0485634,65795 +151491,1160004,161024 +151493,1243375,35411 +151495,1760958,109690 +151497,2377398,222030 +151499,0162243,42107 +151501,4019560,331962 +151503,0870958,27428 +151505,1512738,273973 +151507,3399896,301729 +151509,2265080,224885 +151513,2753048,165718 +151515,3478962,329805 +151521,2492002,276883 +151543,2362062,255575 +151545,0202223,127468 +151547,3398052,291154 +151557,3018070,273899 +151561,3594826,345235 +151563,4466544,336807 +151565,0065932,70412 +151567,0076902,38268 +151569,0380726,35021 +151571,0485701,301744 +151573,0114429,97666 +151583,3008014,220176 +151587,2257602,156220 +151591,3059816,333387 +151593,1663655,362057 +151599,3984320,348069 +151601,1401656,40700 +151605,5275828,360030 +151611,5039822,378263 +151613,2477218,291851 +151615,1725995,50938 +151619,1064215,117316 +151621,4000936,352156 +151623,1582466,38677 +151625,0485777,25366 +151627,3040216,340243 +151629,1878805,139777 +151631,4940780,378350 +151641,4337690,343795 +151645,4552524,339547 +151647,3907156,285697 +151649,0101479,138022 +151655,0087436,48242 +151657,1007032,29695 +151661,1977002,87737 +151663,0416214,44563 +151667,0030694,268350 +151669,4293698,334146 +151671,4175888,346170 +151673,0313532,72790 +151675,3864024,279096 +151677,0385048,145385 +151679,0052529,111561 +151683,0101578,275477 +151685,1986769,243794 +151687,3231054,335778 +151689,0487116,15391 +151691,0076149,83001 +151695,2580382,329004 +151697,0062636,76851 +151701,1773315,235450 +151703,1507355,58500 +151709,2436672,365065 +151711,0388667,67844 diff --git a/go-lang/read-big-file/ml-latest/movies.csv b/go-lang/read-big-file/ml-latest/movies.csv new file mode 100644 index 00000000..7928353e --- /dev/null +++ b/go-lang/read-big-file/ml-latest/movies.csv @@ -0,0 +1,34209 @@ +movieId,title,genres +1,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy +2,Jumanji (1995),Adventure|Children|Fantasy +3,Grumpier Old Men (1995),Comedy|Romance +4,Waiting to Exhale (1995),Comedy|Drama|Romance +5,Father of the Bride Part II (1995),Comedy +6,Heat (1995),Action|Crime|Thriller +7,Sabrina (1995),Comedy|Romance +8,Tom and Huck (1995),Adventure|Children +9,Sudden Death (1995),Action +10,GoldenEye (1995),Action|Adventure|Thriller +11,"American President, The (1995)",Comedy|Drama|Romance +12,Dracula: Dead and Loving It (1995),Comedy|Horror +13,Balto (1995),Adventure|Animation|Children +14,Nixon (1995),Drama +15,Cutthroat Island (1995),Action|Adventure|Romance +16,Casino (1995),Crime|Drama +17,Sense and Sensibility (1995),Drama|Romance +18,Four Rooms (1995),Comedy +19,Ace Ventura: When Nature Calls (1995),Comedy +20,Money Train (1995),Action|Comedy|Crime|Drama|Thriller +21,Get Shorty (1995),Comedy|Crime|Thriller +22,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller +23,Assassins (1995),Action|Crime|Thriller +24,Powder (1995),Drama|Sci-Fi +25,Leaving Las Vegas (1995),Drama|Romance +26,Othello (1995),Drama +27,Now and Then (1995),Children|Drama +28,Persuasion (1995),Drama|Romance +29,"City of Lost Children, The (Cité des enfants perdus, La) (1995)",Adventure|Drama|Fantasy|Mystery|Sci-Fi +30,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama +31,Dangerous Minds (1995),Drama +32,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller +33,Wings of Courage (1995),Adventure|Romance|IMAX +34,Babe (1995),Children|Drama +35,Carrington (1995),Drama|Romance +36,Dead Man Walking (1995),Crime|Drama +37,Across the Sea of Time (1995),Documentary|IMAX +38,It Takes Two (1995),Children|Comedy +39,Clueless (1995),Comedy|Romance +40,"Cry, the Beloved Country (1995)",Drama +41,Richard III (1995),Drama|War +42,Dead Presidents (1995),Action|Crime|Drama +43,Restoration (1995),Drama +44,Mortal Kombat (1995),Action|Adventure|Fantasy +45,To Die For (1995),Comedy|Drama|Thriller +46,How to Make an American Quilt (1995),Drama|Romance +47,Seven (a.k.a. Se7en) (1995),Mystery|Thriller +48,Pocahontas (1995),Animation|Children|Drama|Musical|Romance +49,When Night Is Falling (1995),Drama|Romance +50,"Usual Suspects, The (1995)",Crime|Mystery|Thriller +51,Guardian Angel (1994),Action|Drama|Thriller +52,Mighty Aphrodite (1995),Comedy|Drama|Romance +53,Lamerica (1994),Adventure|Drama +54,"Big Green, The (1995)",Children|Comedy +55,Georgia (1995),Drama +56,Kids of the Round Table (1995),Adventure|Children|Comedy|Fantasy +57,Home for the Holidays (1995),Drama +58,"Postman, The (Postino, Il) (1994)",Comedy|Drama|Romance +59,"Confessional, The (Confessionnal, Le) (1995)",Drama|Mystery +60,"Indian in the Cupboard, The (1995)",Adventure|Children|Fantasy +61,Eye for an Eye (1996),Drama|Thriller +62,Mr. Holland's Opus (1995),Drama +63,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime +64,Two if by Sea (1996),Comedy|Romance +65,Bio-Dome (1996),Comedy +66,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller +67,Two Bits (1995),Drama +68,French Twist (Gazon maudit) (1995),Comedy|Romance +69,Friday (1995),Comedy +70,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller +71,Fair Game (1995),Action +72,Kicking and Screaming (1995),Comedy|Drama +73,"Misérables, Les (1995)",Drama|War +74,Bed of Roses (1996),Drama|Romance +75,Big Bully (1996),Comedy|Drama +76,Screamers (1995),Action|Sci-Fi|Thriller +77,Nico Icon (1995),Documentary +78,"Crossing Guard, The (1995)",Action|Crime|Drama|Thriller +79,"Juror, The (1996)",Drama|Thriller +80,"White Balloon, The (Badkonake sefid) (1995)",Children|Drama +81,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance +82,Antonia's Line (Antonia) (1995),Comedy|Drama +83,Once Upon a Time... When We Were Colored (1995),Drama|Romance +84,Last Summer in the Hamptons (1995),Comedy|Drama +85,Angels and Insects (1995),Drama|Romance +86,White Squall (1996),Action|Adventure|Drama +87,Dunston Checks In (1996),Children|Comedy +88,Black Sheep (1996),Comedy +89,Nick of Time (1995),Action|Thriller +90,"Journey of August King, The (1995)",Drama +92,Mary Reilly (1996),Drama|Horror|Thriller +93,Vampire in Brooklyn (1995),Comedy|Horror|Romance +94,Beautiful Girls (1996),Comedy|Drama|Romance +95,Broken Arrow (1996),Action|Adventure|Thriller +96,In the Bleak Midwinter (1995),Comedy|Drama +97,"Hate (Haine, La) (1995)",Crime|Drama +98,Shopping (1994),Action|Thriller +99,Heidi Fleiss: Hollywood Madam (1995),Documentary +100,City Hall (1996),Drama|Thriller +101,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance +102,Mr. Wrong (1996),Comedy +103,Unforgettable (1996),Mystery|Sci-Fi|Thriller +104,Happy Gilmore (1996),Comedy +105,"Bridges of Madison County, The (1995)",Drama|Romance +106,Nobody Loves Me (Keiner liebt mich) (1994),Comedy|Drama +107,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical +108,Catwalk (1996),Documentary +109,Headless Body in Topless Bar (1995),Comedy|Drama|Thriller +110,Braveheart (1995),Action|Drama|War +111,Taxi Driver (1976),Crime|Drama|Thriller +112,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime +113,Before and After (1996),Drama|Mystery +114,Margaret's Museum (1995),Drama +115,"Happiness Is in the Field (Bonheur est dans le pré, Le) (1995)",Comedy +116,Anne Frank Remembered (1995),Documentary +117,"Young Poisoner's Handbook, The (1995)",Crime|Drama +118,If Lucy Fell (1996),Comedy|Romance +119,"Steal Big, Steal Little (1995)",Comedy +120,Race the Sun (1996),Adventure|Comedy|Drama +121,"Boys of St. Vincent, The (1992)",Drama +122,Boomerang (1992),Comedy|Romance +123,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance +124,"Star Maker, The (Uomo delle stelle, L') (1995)",Drama +125,Flirting With Disaster (1996),Comedy +126,"NeverEnding Story III, The (1994)",Adventure|Children|Fantasy +127,"Silences of the Palace, The (Saimt el Qusur) (1994)",Drama +128,Jupiter's Wife (1994),Documentary +129,Pie in the Sky (1996),Comedy|Romance +130,Angela (1995),Drama +131,Frankie Starlight (1995),Drama|Romance +132,Jade (1995),Thriller +133,Nueba Yol (1995),Comedy|Drama +134,Sonic Outlaws (1995),Documentary +135,Down Periscope (1996),Comedy +136,From the Journals of Jean Seberg (1995),Documentary +137,Man of the Year (1995),Documentary +138,"Neon Bible, The (1995)",Drama +139,Target (1995),Action|Drama +140,Up Close and Personal (1996),Drama|Romance +141,"Birdcage, The (1996)",Comedy +142,Shadows (Cienie) (1988),Drama +143,Gospa (1995),Drama +144,"Brothers McMullen, The (1995)",Comedy +145,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller +146,"Amazing Panda Adventure, The (1995)",Adventure|Children +147,"Basketball Diaries, The (1995)",Drama +148,"Awfully Big Adventure, An (1995)",Drama +149,Amateur (1994),Crime|Drama|Thriller +150,Apollo 13 (1995),Adventure|Drama|IMAX +151,Rob Roy (1995),Action|Drama|Romance|War +152,"Addiction, The (1995)",Drama|Horror +153,Batman Forever (1995),Action|Adventure|Comedy|Crime +154,Beauty of the Day (Belle de jour) (1967),Drama +155,Beyond Rangoon (1995),Adventure|Drama|War +156,Blue in the Face (1995),Comedy|Drama +157,Canadian Bacon (1995),Comedy|War +158,Casper (1995),Adventure|Children +159,Clockers (1995),Crime|Drama|Mystery +160,Congo (1995),Action|Adventure|Mystery|Sci-Fi +161,Crimson Tide (1995),Drama|Thriller|War +162,Crumb (1994),Documentary +163,Desperado (1995),Action|Romance|Western +164,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller +165,Die Hard: With a Vengeance (1995),Action|Crime|Thriller +166,"Doom Generation, The (1995)",Comedy|Crime|Drama +167,Feast of July (1995),Drama +168,First Knight (1995),Action|Drama|Romance +169,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama +170,Hackers (1995),Action|Adventure|Crime|Thriller +171,Jeffrey (1995),Comedy|Drama +172,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller +173,Judge Dredd (1995),Action|Crime|Sci-Fi +174,Jury Duty (1995),Comedy +175,Kids (1995),Drama +176,Living in Oblivion (1995),Comedy +177,Lord of Illusions (1995),Horror +178,Love & Human Remains (1993),Comedy|Drama +179,Mad Love (1995),Drama|Romance +180,Mallrats (1995),Comedy|Romance +181,Mighty Morphin Power Rangers: The Movie (1995),Action|Children +182,Moonlight and Valentino (1995),Drama|Romance +183,Mute Witness (1994),Comedy|Horror|Thriller +184,Nadja (1994),Drama +185,"Net, The (1995)",Action|Crime|Thriller +186,Nine Months (1995),Comedy|Romance +187,Party Girl (1995),Comedy +188,"Prophecy, The (1995)",Fantasy|Horror|Mystery +189,Reckless (1995),Comedy|Fantasy +190,Safe (1995),Thriller +191,"Scarlet Letter, The (1995)",Drama|Romance +192,The Show (1995),Documentary +193,Showgirls (1995),Drama +194,Smoke (1995),Comedy|Drama +195,Something to Talk About (1995),Comedy|Drama|Romance +196,Species (1995),Horror|Sci-Fi +197,"Stars Fell on Henrietta, The (1995)",Drama +198,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller +199,"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)",Drama|Musical|Romance +200,"Tie That Binds, The (1995)",Thriller +201,Three Wishes (1995),Drama|Fantasy +202,Total Eclipse (1995),Drama|Romance +203,"To Wong Foo, Thanks for Everything! Julie Newmar (1995)",Comedy +204,Under Siege 2: Dark Territory (1995),Action +205,Unstrung Heroes (1995),Comedy|Drama +206,Unzipped (1995),Documentary +207,"Walk in the Clouds, A (1995)",Drama|Romance +208,Waterworld (1995),Action|Adventure|Sci-Fi +209,White Man's Burden (1995),Drama +210,Wild Bill (1995),Western +211,"Browning Version, The (1994)",Drama +212,Bushwhacked (1995),Adventure|Comedy|Crime|Mystery +213,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama +214,Before the Rain (Pred dozhdot) (1994),Drama|War +215,Before Sunrise (1995),Drama|Romance +216,Billy Madison (1995),Comedy +217,"Babysitter, The (1995)",Drama|Thriller +218,Boys on the Side (1995),Comedy|Drama +219,"Cure, The (1995)",Drama +220,Castle Freak (1995),Horror +222,Circle of Friends (1995),Drama|Romance +223,Clerks (1994),Comedy +224,Don Juan DeMarco (1995),Comedy|Drama|Romance +225,Disclosure (1994),Drama|Thriller +226,Dream Man (1995),Thriller +227,Drop Zone (1994),Action|Thriller +228,Destiny Turns on the Radio (1995),Comedy +229,Death and the Maiden (1994),Drama|Thriller +230,Dolores Claiborne (1995),Drama|Thriller +231,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy +232,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance +233,Exotica (1994),Drama +234,Exit to Eden (1994),Comedy +235,Ed Wood (1994),Comedy|Drama +236,French Kiss (1995),Action|Comedy|Romance +237,Forget Paris (1995),Comedy|Romance +238,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children +239,"Goofy Movie, A (1995)",Animation|Children|Comedy|Romance +240,Hideaway (1995),Thriller +241,Fluke (1995),Children|Drama +242,Farinelli: il castrato (1994),Drama|Musical +243,Gordy (1995),Children|Comedy|Fantasy +244,Gumby: The Movie (1995),Animation|Children +245,The Glass Shield (1994),Crime|Drama +246,Hoop Dreams (1994),Documentary +247,Heavenly Creatures (1994),Crime|Drama +248,Houseguest (1994),Comedy +249,Immortal Beloved (1994),Drama|Romance +250,Heavyweights (Heavy Weights) (1995),Children|Comedy +251,"Hunted, The (1995)",Action +252,I.Q. (1994),Comedy|Romance +253,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror +254,Jefferson in Paris (1995),Drama +255,"Jerky Boys, The (1995)",Comedy +256,Junior (1994),Comedy|Sci-Fi +257,Just Cause (1995),Mystery|Thriller +258,"Kid in King Arthur's Court, A (1995)",Adventure|Children|Comedy|Fantasy|Romance +259,Kiss of Death (1995),Crime|Drama|Thriller +260,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi +261,Little Women (1994),Drama +262,"Little Princess, A (1995)",Children|Drama +263,Ladybird Ladybird (1994),Drama +264,"Enfer, L' (1994)",Drama +265,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance +266,Legends of the Fall (1994),Drama|Romance|War|Western +267,Major Payne (1995),Comedy +268,Little Odessa (1994),Crime|Drama +269,My Crazy Life (Mi vida loca) (1993),Drama +270,Love Affair (1994),Drama|Romance +271,Losing Isaiah (1995),Drama +272,"Madness of King George, The (1994)",Comedy|Drama +273,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi +274,Man of the House (1995),Comedy +275,Mixed Nuts (1994),Comedy +276,Milk Money (1994),Comedy|Romance +277,Miracle on 34th Street (1994),Drama +278,Miami Rhapsody (1995),Comedy +279,My Family (1995),Drama +280,Murder in the First (1995),Drama|Thriller +281,Nobody's Fool (1994),Comedy|Drama|Romance +282,Nell (1994),Drama +283,New Jersey Drive (1995),Crime|Drama +284,New York Cop (Nyû Yôku no koppu) (1993),Action|Crime +285,Beyond Bedlam (1993),Drama|Horror +286,Nemesis 2: Nebula (1995),Action|Sci-Fi|Thriller +287,Nina Takes a Lover (1994),Comedy|Romance +288,Natural Born Killers (1994),Action|Crime|Thriller +289,Only You (1994),Comedy|Romance +290,Once Were Warriors (1994),Crime|Drama +291,Poison Ivy II (1996),Drama|Thriller +292,Outbreak (1995),Action|Drama|Sci-Fi|Thriller +293,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller +294,"Perez Family, The (1995)",Comedy|Romance +295,"Pyromaniac's Love Story, A (1995)",Comedy|Romance +296,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller +297,Panther (1995),Drama +298,Pushing Hands (Tui shou) (1992),Drama +299,Priest (1994),Drama +300,Quiz Show (1994),Drama +301,Picture Bride (Bijo photo) (1994),Drama|Romance +302,"Queen Margot (Reine Margot, La) (1994)",Drama|Romance +303,"Quick and the Dead, The (1995)",Action|Thriller|Western +304,Roommates (1995),Comedy|Drama +305,Ready to Wear (Pret-A-Porter) (1994),Comedy +306,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama +307,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama +308,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama +309,"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)",Drama +310,Rent-a-Kid (1995),Comedy +311,Relative Fear (1994),Horror|Thriller +312,Stuart Saves His Family (1995),Comedy +313,"Swan Princess, The (1994)",Animation|Children +314,"Secret of Roan Inish, The (1994)",Children|Drama|Fantasy|Mystery +315,"Specialist, The (1994)",Action|Drama|Thriller +316,Stargate (1994),Action|Adventure|Sci-Fi +317,"Santa Clause, The (1994)",Comedy|Drama|Fantasy +318,"Shawshank Redemption, The (1994)",Crime|Drama +319,Shallow Grave (1994),Comedy|Drama|Thriller +320,Suture (1993),Film-Noir|Thriller +321,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama +322,Swimming with Sharks (1995),Comedy|Drama +324,"Sum of Us, The (1994)",Comedy|Drama +325,National Lampoon's Senior Trip (1995),Comedy +326,To Live (Huozhe) (1994),Drama +327,Tank Girl (1995),Action|Comedy|Sci-Fi +328,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller +329,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi +330,Tales from the Hood (1995),Action|Crime|Horror +331,Tom & Viv (1994),Drama +332,Village of the Damned (1995),Horror|Sci-Fi +333,Tommy Boy (1995),Comedy +334,Vanya on 42nd Street (1994),Drama +335,Underneath (1995),Mystery|Thriller +336,"Walking Dead, The (1995)",Drama|War +337,What's Eating Gilbert Grape (1993),Drama +338,Virtuosity (1995),Action|Sci-Fi|Thriller +339,While You Were Sleeping (1995),Comedy|Romance +340,"War, The (1994)",Adventure|Drama|War +341,Double Happiness (1994),Drama +342,Muriel's Wedding (1994),Comedy +343,"Baby-Sitters Club, The (1995)",Children +344,Ace Ventura: Pet Detective (1994),Comedy +345,"Adventures of Priscilla, Queen of the Desert, The (1994)",Comedy|Drama +346,Backbeat (1993),Drama|Musical +347,Bitter Moon (1992),Drama|Film-Noir|Romance +348,Bullets Over Broadway (1994),Comedy +349,Clear and Present Danger (1994),Action|Crime|Drama|Thriller +350,"Client, The (1994)",Drama|Mystery|Thriller +351,"Corrina, Corrina (1994)",Comedy|Drama|Romance +352,Crooklyn (1994),Comedy|Drama +353,"Crow, The (1994)",Action|Crime|Fantasy|Thriller +354,Cobb (1994),Drama +355,"Flintstones, The (1994)",Children|Comedy|Fantasy +356,Forrest Gump (1994),Comedy|Drama|Romance|War +357,Four Weddings and a Funeral (1994),Comedy|Romance +358,Higher Learning (1995),Drama +359,I Like It Like That (1994),Comedy|Drama|Romance +360,I Love Trouble (1994),Action|Comedy +361,It Could Happen to You (1994),Comedy|Drama|Romance +362,"Jungle Book, The (1994)",Adventure|Children|Romance +363,"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)",Documentary +364,"Lion King, The (1994)",Adventure|Animation|Children|Drama|Musical|IMAX +365,Little Buddha (1993),Drama +366,"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)",Drama|Horror|Mystery|Thriller +367,"Mask, The (1994)",Action|Comedy|Crime|Fantasy +368,Maverick (1994),Adventure|Comedy|Western +369,Mrs. Parker and the Vicious Circle (1994),Drama +370,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy +371,"Paper, The (1994)",Comedy|Drama +372,Reality Bites (1994),Comedy|Drama|Romance +373,Red Rock West (1992),Thriller +374,Richie Rich (1994),Children|Comedy +375,Safe Passage (1994),Drama +376,"River Wild, The (1994)",Action|Thriller +377,Speed (1994),Action|Romance|Thriller +378,Speechless (1994),Comedy|Romance +379,Timecop (1994),Action|Sci-Fi|Thriller +380,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller +381,When a Man Loves a Woman (1994),Drama|Romance +382,Wolf (1994),Drama|Horror|Romance|Thriller +383,Wyatt Earp (1994),Western +384,Bad Company (1995),Action|Crime|Drama +385,"Man of No Importance, A (1994)",Drama +386,S.F.W. (1994),Drama +387,"Low Down Dirty Shame, A (1994)",Action|Comedy +388,Boys Life (1995),Drama +389,"Colonel Chabert, Le (1994)",Drama|Romance|War +390,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama +391,Jason's Lyric (1994),Crime|Drama +392,"Secret Adventures of Tom Thumb, The (1993)",Adventure|Animation +393,Street Fighter (1994),Action|Adventure|Fantasy +394,Coldblooded (1995),Comedy +395,Desert Winds (1995),Drama|Fantasy|Romance +396,Fall Time (1995),Drama +397,"Fear, The (1995)",Horror +398,Frank and Ollie (1995),Documentary +399,Girl in the Cadillac (1995),Drama +400,Homage (1995),Drama +401,Mirage (1995),Action|Thriller +402,Open Season (1996),Comedy +403,Two Crimes (Dos crímenes) (1995),Comedy|Crime|Drama +404,Brother Minister: The Assassination of Malcolm X (1994),Documentary +405,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy +406,Federal Hill (1994),Drama +407,In the Mouth of Madness (1995),Horror|Thriller +408,8 Seconds (1994),Drama +409,Above the Rim (1994),Crime|Drama +410,Addams Family Values (1993),Children|Comedy|Fantasy +411,Martin Lawrence: You So Crazy (1994),Comedy|Documentary +412,"Age of Innocence, The (1993)",Drama +413,Airheads (1994),Comedy +414,"Air Up There, The (1994)",Comedy +415,Another Stakeout (1993),Comedy|Thriller +416,Bad Girls (1994),Western +417,Barcelona (1994),Comedy|Romance +418,Being Human (1993),Drama +419,"Beverly Hillbillies, The (1993)",Comedy +420,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller +421,Black Beauty (1994),Adventure|Children|Drama +422,Blink (1994),Thriller +423,Blown Away (1994),Action|Thriller +424,Blue Chips (1994),Drama +425,Blue Sky (1994),Drama|Romance +426,Body Snatchers (1993),Horror|Sci-Fi|Thriller +427,Boxing Helena (1993),Drama|Mystery|Romance|Thriller +428,"Bronx Tale, A (1993)",Drama +429,Cabin Boy (1994),Comedy +430,Calendar Girl (1993),Comedy|Drama +431,Carlito's Way (1993),Crime|Drama +432,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western +433,Clean Slate (1994),Comedy +434,Cliffhanger (1993),Action|Adventure|Thriller +435,Coneheads (1993),Comedy|Sci-Fi +436,Color of Night (1994),Drama|Thriller +437,Cops and Robbersons (1994),Comedy +438,"Cowboy Way, The (1994)",Action|Comedy|Drama +439,Dangerous Game (1993),Drama +440,Dave (1993),Comedy|Romance +441,Dazed and Confused (1993),Comedy +442,Demolition Man (1993),Action|Adventure|Sci-Fi +443,"Endless Summer 2, The (1994)",Adventure|Documentary +444,Even Cowgirls Get the Blues (1993),Comedy|Romance +445,Fatal Instinct (1993),Comedy +446,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance +447,"Favor, The (1994)",Comedy|Romance +448,Fearless (1993),Drama +449,Fear of a Black Hat (1994),Comedy +450,With Honors (1994),Comedy|Drama +451,Flesh and Bone (1993),Drama|Mystery|Romance +452,Widows' Peak (1994),Drama +453,For Love or Money (1993),Comedy|Romance +454,"Firm, The (1993)",Drama|Thriller +455,Free Willy (1993),Adventure|Children|Drama +456,Fresh (1994),Crime|Drama|Thriller +457,"Fugitive, The (1993)",Thriller +458,Geronimo: An American Legend (1993),Drama|Western +459,"Getaway, The (1994)",Action|Adventure|Crime|Drama|Romance|Thriller +460,Getting Even with Dad (1994),Comedy +461,Go Fish (1994),Drama|Romance +462,"Good Man in Africa, A (1994)",Action|Adventure +463,Guilty as Sin (1993),Crime|Drama|Thriller +464,Hard Target (1993),Action|Adventure|Crime|Thriller +465,Heaven & Earth (1993),Action|Drama|War +466,Hot Shots! Part Deux (1993),Action|Comedy|War +467,Live Nude Girls (1995),Comedy +468,"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)",Comedy|Romance +469,"House of the Spirits, The (1993)",Drama|Romance +470,House Party 3 (1994),Comedy +471,"Hudsucker Proxy, The (1994)",Comedy +472,I'll Do Anything (1994),Comedy|Drama +473,In the Army Now (1994),Comedy|War +474,In the Line of Fire (1993),Action|Thriller +475,In the Name of the Father (1993),Drama +476,"Inkwell, The (1994)",Comedy|Drama +477,What's Love Got to Do with It? (1993),Drama|Musical +478,Jimmy Hollywood (1994),Comedy|Crime|Drama +479,Judgment Night (1993),Action|Crime|Thriller +480,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller +481,Kalifornia (1993),Drama|Thriller +482,Killing Zoe (1994),Crime|Drama|Thriller +483,King of the Hill (1993),Drama +484,Lassie (1994),Adventure|Children +485,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy +486,Life with Mikey (1993),Comedy +487,Lightning Jack (1994),Comedy|Western +488,M. Butterfly (1993),Drama|Romance +489,Made in America (1993),Comedy +490,Malice (1993),Thriller +491,"Man Without a Face, The (1993)",Drama +492,Manhattan Murder Mystery (1993),Comedy|Mystery +493,Menace II Society (1993),Action|Crime|Drama +494,Executive Decision (1996),Action|Adventure|Thriller +495,In the Realm of the Senses (Ai no corrida) (1976),Drama +496,What Happened Was... (1994),Comedy|Drama|Romance|Thriller +497,Much Ado About Nothing (1993),Comedy|Romance +498,Mr. Jones (1993),Drama|Romance +499,Mr. Wonderful (1993),Comedy|Romance +500,Mrs. Doubtfire (1993),Comedy|Drama +501,Naked (1993),Drama +502,"Next Karate Kid, The (1994)",Action|Children|Romance +503,"New Age, The (1994)",Drama +504,No Escape (1994),Action|Drama|Sci-Fi +505,North (1994),Comedy +506,Orlando (1992),Drama|Fantasy|Romance +507,"Perfect World, A (1993)",Crime|Drama|Thriller +508,Philadelphia (1993),Drama +509,"Piano, The (1993)",Drama|Romance +510,Poetic Justice (1993),Drama +511,"Program, The (1993)",Action|Drama +512,"Puppet Masters, The (1994)",Horror|Sci-Fi +513,Radioland Murders (1994),Comedy|Mystery|Romance +514,"Ref, The (1994)",Comedy +515,"Remains of the Day, The (1993)",Drama|Romance +516,Renaissance Man (1994),Comedy|Drama +517,Rising Sun (1993),Action|Drama|Mystery +518,"Road to Wellville, The (1994)",Comedy +519,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller +520,Robin Hood: Men in Tights (1993),Comedy +521,Romeo Is Bleeding (1993),Crime|Thriller +522,Romper Stomper (1992),Action|Drama +523,Ruby in Paradise (1993),Drama +524,Rudy (1993),Drama +525,"Saint of Fort Washington, The (1993)",Drama +526,"Savage Nights (Nuits fauves, Les) (1992)",Drama +527,Schindler's List (1993),Drama|War +528,"Scout, The (1994)",Comedy|Drama +529,Searching for Bobby Fischer (1993),Drama +530,Second Best (1994),Drama +531,"Secret Garden, The (1993)",Children|Drama +532,Serial Mom (1994),Comedy|Crime|Horror +533,"Shadow, The (1994)",Action|Adventure|Fantasy|Mystery +534,Shadowlands (1993),Drama|Romance +535,Short Cuts (1993),Drama +536,"Simple Twist of Fate, A (1994)",Drama +537,Sirens (1994),Drama +538,Six Degrees of Separation (1993),Drama +539,Sleepless in Seattle (1993),Comedy|Drama|Romance +540,Sliver (1993),Thriller +541,Blade Runner (1982),Action|Sci-Fi|Thriller +542,Son in Law (1993),Comedy|Drama|Romance +543,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller +544,Striking Distance (1993),Action|Crime +545,Harem (1985),Drama +546,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +547,Surviving the Game (1994),Action|Adventure|Thriller +548,Terminal Velocity (1994),Action|Mystery|Thriller +549,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical +550,Threesome (1994),Comedy|Romance +551,"Nightmare Before Christmas, The (1993)",Animation|Children|Fantasy|Musical +552,"Three Musketeers, The (1993)",Action|Adventure|Comedy|Romance +553,Tombstone (1993),Action|Drama|Western +554,Trial by Jury (1994),Crime|Drama|Thriller +555,True Romance (1993),Crime|Thriller +556,"War Room, The (1993)",Documentary +558,"Pagemaster, The (1994)",Action|Adventure|Animation|Children|Fantasy +559,"Paris, France (1993)",Comedy +560,"Beans of Egypt, Maine, The (1994)",Drama +561,Killer (Bulletproof Heart) (1994),Drama|Thriller +562,Welcome to the Dollhouse (1995),Comedy|Drama +563,Germinal (1993),Drama|Romance +564,Chasers (1994),Comedy +565,Cronos (1993),Drama|Horror +566,Naked in New York (1994),Comedy|Romance +567,Kika (1993),Comedy|Drama +568,Bhaji on the Beach (1993),Comedy|Drama +569,Little Big League (1994),Comedy|Drama +570,"Slingshot, The (Kådisbellan) (1993)",Comedy|Drama +571,"Wedding Gift, The (1994)",Drama|Romance +572,Foreign Student (1994),Drama +573,"Ciao, Professore! (Io speriamo che me la cavo) (1992)",Drama +574,Spanking the Monkey (1994),Comedy|Drama +575,"Little Rascals, The (1994)",Children|Comedy +576,Fausto (1993),Comedy +577,Andre (1994),Adventure|Children|Drama +579,"Escort, The (Scorta, La) (1993)",Crime|Thriller +580,Princess Caraboo (1994),Drama +581,"Celluloid Closet, The (1995)",Documentary +582,Métisse (Café au Lait) (1993),Comedy|Drama +583,Dear Diary (Caro Diario) (1994),Comedy|Drama +584,I Don't Want to Talk About It (De eso no se habla) (1993),Drama|Romance +585,"Brady Bunch Movie, The (1995)",Comedy +586,Home Alone (1990),Children|Comedy +587,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller +588,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical +589,Terminator 2: Judgment Day (1991),Action|Sci-Fi +590,Dances with Wolves (1990),Adventure|Drama|Western +591,Tough and Deadly (1995),Action|Drama|Thriller +592,Batman (1989),Action|Crime|Thriller +593,"Silence of the Lambs, The (1991)",Crime|Horror|Thriller +594,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical +595,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX +596,Pinocchio (1940),Animation|Children|Fantasy|Musical +597,Pretty Woman (1990),Comedy|Romance +598,Window to Paris (Okno v Parizh) (1994),Comedy|Fantasy +599,"Wild Bunch, The (1969)",Adventure|Western +600,Love and a .45 (1994),Action|Comedy|Crime +601,"Wooden Man's Bride, The (Yan shen) (1994)",Drama +602,"Great Day in Harlem, A (1994)",Documentary +603,"Bye Bye, Love (1995)",Comedy +604,Criminals (1996),Documentary +605,One Fine Day (1996),Drama|Romance +606,Candyman: Farewell to the Flesh (1995),Fantasy|Horror +607,Century (1993),Drama +608,Fargo (1996),Comedy|Crime|Drama|Thriller +609,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children +610,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi +611,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi +612,"Pallbearer, The (1996)",Comedy +613,Jane Eyre (1996),Drama|Romance +614,Loaded (1994),Drama|Thriller +615,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama +616,"Aristocats, The (1970)",Animation|Children +617,"Flower of My Secret, The (La flor de mi secreto) (1995)",Comedy|Drama +618,Two Much (1995),Comedy|Romance +619,Ed (1996),Comedy +620,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama +621,My Favorite Season (1993),Drama +623,"Modern Affair, A (1995)",Romance +624,Condition Red (Beyond the Law) (1995),Action|Drama|Thriller +625,Asfour Stah (1990),Drama +626,"Thin Line Between Love and Hate, A (1996)",Comedy +627,"Last Supper, The (1995)",Drama|Thriller +628,Primal Fear (1996),Crime|Drama|Mystery|Thriller +629,Rude (1995),Drama +630,Carried Away (1996),Drama|Romance +631,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance +632,Land and Freedom (Tierra y libertad) (1995),Drama|War +633,Denise Calls Up (1995),Comedy +634,Theodore Rex (1995),Comedy +635,"Family Thing, A (1996)",Comedy|Drama +636,Frisk (1995),Drama +637,Sgt. Bilko (1996),Comedy +638,Jack and Sarah (1995),Romance +639,Girl 6 (1996),Comedy|Drama +640,Diabolique (1996),Drama|Thriller +641,"Little Indian, Big City (Un indien dans la ville) (1994)",Adventure|Children|Comedy +642,Roula (1995),Drama +643,Peanuts - Die Bank zahlt alles (1996),Comedy +644,Happy Weekend (1996),Comedy +645,Nelly & Monsieur Arnaud (1995),Drama +647,Courage Under Fire (1996),Action|Crime|Drama|War +648,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller +649,Cold Fever (Á köldum klaka) (1995),Comedy|Drama +650,Moll Flanders (1996),Drama +651,"Superweib, Das (1996)",Comedy +652,"301, 302 (301/302) (1995)",Horror|Mystery|Thriller +653,Dragonheart (1996),Action|Adventure|Fantasy +654,And Nobody Weeps for Me (Und keiner weint mir nach) (1996),Drama|Romance +655,My Mother's Courage (Mutters Courage) (1995),Comedy +656,Eddie (1996),Comedy +657,Yankee Zulu (1994),Comedy|Drama +658,Billy's Holiday (1995),Drama|Musical +659,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller +660,August (1996),Drama +661,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical +662,Fear (1996),Thriller +663,Kids in the Hall: Brain Candy (1996),Comedy +664,Faithful (1996),Comedy +665,Underground (1995),Comedy|Drama|War +666,All Things Fair (Lust och fägring stor) (1995),Drama|Romance|War +667,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action +668,Song of the Little Road (Pather Panchali) (1955),Drama +670,"World of Apu, The (Apur Sansar) (1959)",Drama +671,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi +672,Tarantella (1995),Drama +673,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +674,Barbarella (1968),Adventure|Comedy|Sci-Fi +675,Hostile Intentions (1994),Action|Drama|Thriller +676,They Bite (1996),Comedy|Horror|Sci-Fi +678,Some Folks Call It a Sling Blade (1993),Drama|Thriller +679,"Run of the Country, The (1995)",Drama +680,"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)",Drama|Mystery|Romance|Sci-Fi|Thriller +681,Coup de torchon (Clean Slate) (1981),Crime +682,Tigrero: A Film That Was Never Made (1994),Documentary|Drama +683,"Eye of Vichy, The (Oeil de Vichy, L') (1993)",Documentary +684,Windows (1980),Drama +685,It's My Party (1996),Drama +687,Country Life (1994),Drama|Romance +688,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War +690,"Promise, The (Versprechen, Das) (1995)",Drama|Romance +691,Mrs. Winterbourne (1996),Comedy|Romance +692,Solo (1996),Action|Sci-Fi|Thriller +693,Under the Domim Tree (Etz Hadomim Tafus) (1994),Drama +694,"Substitute, The (1996)",Action|Crime|Drama +695,True Crime (1996),Mystery|Thriller +696,Butterfly Kiss (1995),Drama|Thriller +697,Feeling Minnesota (1996),Drama|Romance +698,Delta of Venus (1995),Drama +699,To Cross the Rubicon (1991),Drama +700,Angus (1995),Comedy +701,Daens (1992),Drama +702,Faces (1968),Drama +703,Boys (1996),Drama +704,"Quest, The (1996)",Action|Adventure +705,Cosi (1996),Comedy +706,Sunset Park (1996),Drama +707,Mulholland Falls (1996),Crime|Drama|Thriller +708,"Truth About Cats & Dogs, The (1996)",Comedy|Romance +709,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical +710,Celtic Pride (1996),Comedy +711,Flipper (1996),Adventure|Children +712,Captives (1994),Crime|Drama|Romance|Thriller +713,Of Love and Shadows (1994),Drama +714,Dead Man (1995),Drama|Mystery|Western +715,"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)",Drama|Romance +716,Switchblade Sisters (1975),Crime +717,Mouth to Mouth (Boca a boca) (1995),Comedy +718,"Visitors, The (Visiteurs, Les) (1993)",Comedy|Fantasy|Sci-Fi +719,Multiplicity (1996),Comedy +720,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy +721,Halfmoon (Paul Bowles - Halbmond) (1995),Drama +722,"Haunted World of Edward D. Wood Jr., The (1996)",Documentary +723,Two Friends (1986),Drama +724,"Craft, The (1996)",Drama|Fantasy|Horror|Thriller +725,"Great White Hype, The (1996)",Comedy +726,Last Dance (1996),Drama +727,War Stories (1995),Documentary +728,Cold Comfort Farm (1995),Comedy +729,"Institute Benjamenta, or This Dream People Call Human Life (1995)",Drama +730,Low Life (1994),Drama +731,Heaven's Prisoners (1996),Crime|Thriller +732,Original Gangstas (1996),Crime +733,"Rock, The (1996)",Action|Adventure|Thriller +734,Getting Away With Murder (1996),Comedy +735,Cemetery Man (Dellamorte Dellamore) (1994),Horror +736,Twister (1996),Action|Adventure|Romance|Thriller +737,Barb Wire (1996),Action|Sci-Fi +738,"Garçu, Le (1995)",Drama +739,Honey Moon (Honigmond) (1996),Comedy +741,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi +742,Thinner (1996),Horror|Thriller +743,Spy Hard (1996),Comedy +744,Brothers in Trouble (1995),Drama +745,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy +746,Force of Evil (1948),Film-Noir +747,"Stupids, The (1996)",Comedy +748,"Arrival, The (1996)",Action|Sci-Fi|Thriller +749,"Man from Down Under, The (1943)",Drama +750,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War +751,Careful (1992),Comedy|Horror +752,Vermont Is For Lovers (1992),Comedy|Documentary|Romance +753,"Month by the Lake, A (1995)",Comedy|Drama|Romance +754,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children +755,Kim (1950),Children|Drama +756,Carmen Miranda: Bananas Is My Business (1994),Documentary +757,Ashes of Time (Dung che sai duk) (1994),Drama +758,"Jar, The (Khomreh) (1992)",Drama +759,Maya Lin: A Strong Clear Vision (1994),Documentary +760,Stalingrad (1993),Drama|War +761,"Phantom, The (1996)",Action|Adventure +762,Striptease (1996),Comedy|Crime +763,"Last of the High Kings, The (a.k.a. Summer Fling) (1996)",Comedy|Drama +764,Heavy (1995),Drama|Romance +765,Jack (1996),Comedy|Drama +766,I Shot Andy Warhol (1996),Drama +767,"Grass Harp, The (1995)",Comedy|Drama +768,Someone Else's America (1995),Drama +769,Marlene Dietrich: Shadow and Light (1996),Documentary +770,Costa Brava (1946),Drama +771,"Life Is Rosy (a.k.a. Life Is Beautiful) (Vie est belle, La) (1987)",Comedy|Drama +772,Quartier Mozart (1992),Comedy +773,Touki Bouki (1973),Drama +774,Wend Kuuni (a.k.a. God's Gift) (1982),Drama +775,Spirits of the Dead (1968),Horror|Mystery +776,Babyfever (1994),Comedy|Drama +777,Pharaoh's Army (1995),War +778,Trainspotting (1996),Comedy|Crime|Drama +779,'Til There Was You (1997),Drama|Romance +780,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller +781,Stealing Beauty (1996),Drama +782,"Fan, The (1996)",Drama|Thriller +783,"Hunchback of Notre Dame, The (1996)",Animation|Children|Drama|Musical|Romance +784,"Cable Guy, The (1996)",Comedy|Thriller +785,Kingpin (1996),Comedy +786,Eraser (1996),Action|Drama|Thriller +787,"Gate of Heavenly Peace, The (1995)",Documentary +788,"Nutty Professor, The (1996)",Comedy|Fantasy|Romance|Sci-Fi +789,"I, the Worst of All (Yo, la peor de todas) (1990)",Drama +790,"Unforgettable Summer, An (Un été inoubliable) (1994)",Drama +791,"Last Klezmer: Leopold Kozlowski, His Life and Music, The (1994)",Documentary +792,"Hungarian Fairy Tale, A (Hol volt, hol nem volt) (1987)",Fantasy +793,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama +794,Midnight Dancers (Sibak) (1994),Comedy|Drama +795,Somebody to Love (1994),Drama +796,"Very Natural Thing, A (1974)",Drama +797,"Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)",Comedy +798,Daylight (1996),Action|Adventure|Drama|Thriller +799,"Frighteners, The (1996)",Comedy|Horror|Thriller +800,Lone Star (1996),Drama|Mystery|Western +801,Harriet the Spy (1996),Children|Comedy +802,Phenomenon (1996),Drama|Romance +803,Walking and Talking (1996),Comedy|Drama|Romance +804,She's the One (1996),Comedy|Romance +805,"Time to Kill, A (1996)",Drama|Thriller +806,American Buffalo (1996),Crime|Drama +807,"Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)",Comedy|Romance +808,Alaska (1996),Adventure|Children +809,Fled (1996),Action|Adventure +810,Kazaam (1996),Children|Comedy|Fantasy +812,Magic Hunter (Büvös vadász) (1994),Drama +813,Larger Than Life (1996),Comedy +814,"Boy Called Hate, A (1995)",Drama +815,Power 98 (1996),Action|Mystery|Thriller +816,Two Deaths (1995),Drama +818,"Very Brady Sequel, A (1996)",Comedy +819,Stefano Quantestorie (1993),Comedy|Drama +820,"Death in the Garden (Mort en ce jardin, La) (1956)",Drama +821,"Crude Oasis, The (1995)",Drama|Romance +822,Hedd Wyn (1992),Drama|Romance|War +823,"Collector, The (La collectionneuse) (1967)",Drama +824,Kaspar Hauser (1993),Drama|Mystery +825,Regular Guys (Echte Kerle) (1996),Comedy|Romance +826,Women Robbers (Diebinnen) (1995),Drama +827,"Convent, The (O Convento) (1995)",Drama +828,"Adventures of Pinocchio, The (1996)",Adventure|Children +829,Joe's Apartment (1996),Comedy|Fantasy|Musical +830,"First Wives Club, The (1996)",Comedy +831,Stonewall (1995),Drama +832,Ransom (1996),Crime|Thriller +833,High School High (1996),Comedy +834,Phat Beach (1996),Comedy +835,Foxfire (1996),Drama +836,Chain Reaction (1996),Action|Adventure|Thriller +837,Matilda (1996),Children|Comedy|Fantasy +838,Emma (1996),Comedy|Drama|Romance +839,"Crow: City of Angels, The (1996)",Action|Thriller +840,House Arrest (1996),Children|Comedy +841,"Eyes Without a Face (Yeux sans visage, Les) (1959)",Horror +842,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror +843,Lotto Land (1995),Drama +844,"Story of Xinghua, The (Xinghua san yue tian) (1994)",Drama +845,"Day the Sun Turned Cold, The (Tianguo niezi) (1994)",Drama +846,Flirt (1995),Drama +847,"Big Squeeze, The (1996)",Comedy|Drama +848,"Spitfire Grill, The (1996)",Drama +849,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller +850,Cyclo (Xich lo) (1995),Crime|Drama +851,Basquiat (1996),Drama +852,Tin Cup (1996),Comedy|Drama|Romance +853,Dingo (1991),Drama +854,"Ballad of Narayama, The (Narayama Bushiko) (1958)",Drama +855,Every Other Weekend (Un week-end sur deux) (1990),Drama +856,Mille bolle blu (1993),Comedy +857,Crows and Sparrows (Wuya yu maque) (1949),Drama +858,"Godfather, The (1972)",Crime|Drama +859,"Hippie Revolution, The (1996)",Documentary +860,"Maybe, Maybe Not (Bewegte Mann, Der) (1994)",Comedy +861,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller +862,Manny & Lo (1996),Drama +864,"Wife, The (1995)",Comedy|Drama +865,Small Faces (1996),Drama +866,Bound (1996),Crime|Drama|Romance|Thriller +867,Carpool (1996),Comedy|Crime +868,Death in Brunswick (1991),Comedy +869,Kansas City (1996),Crime|Drama|Musical|Thriller +870,Gone Fishin' (1997),Comedy +871,Lover's Knot (1996),Comedy +872,Vive L'Amour (Ai qing wan sui) (1994),Drama +873,Shadow of Angels (Schatten der Engel) (1976),Drama +874,Killer: A Journal of Murder (1995),Crime|Drama +875,Nothing to Lose (1994),Action|Crime|Drama +876,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller +877,Girls Town (1996),Comedy|Drama +878,Bye-Bye (1995),Drama +879,"Relic, The (1997)",Horror|Thriller +880,"Island of Dr. Moreau, The (1996)",Sci-Fi|Thriller +881,First Kid (1996),Children|Comedy +882,"Trigger Effect, The (1996)",Drama|Thriller +884,Sweet Nothing (1996),Drama +885,Bogus (1996),Children|Drama|Fantasy +886,Bulletproof (1996),Action|Comedy|Crime +887,Talk of Angels (1998),Drama +888,Land Before Time III: The Time of the Great Giving (1995),Adventure|Animation|Children|Musical +889,1-900 (06) (1994),Drama|Romance +890,Baton Rouge (Bâton rouge) (1988),Thriller +891,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller +892,Twelfth Night (1996),Comedy|Drama|Romance +893,Mother Night (1996),Drama +894,Liebelei (1933),Romance +895,Venice/Venice (1992),Drama +896,Wild Reeds (Les roseaux sauvages) (1994),Drama +897,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War +898,"Philadelphia Story, The (1940)",Comedy|Drama|Romance +899,Singin' in the Rain (1952),Comedy|Musical|Romance +900,"American in Paris, An (1951)",Musical|Romance +901,Funny Face (1957),Comedy|Musical +902,Breakfast at Tiffany's (1961),Drama|Romance +903,Vertigo (1958),Drama|Mystery|Romance|Thriller +904,Rear Window (1954),Mystery|Thriller +905,It Happened One Night (1934),Comedy|Romance +906,Gaslight (1944),Drama|Thriller +907,"Gay Divorcee, The (1934)",Comedy|Musical|Romance +908,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller +909,"Apartment, The (1960)",Comedy|Drama|Romance +910,Some Like It Hot (1959),Comedy|Crime +911,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller +912,Casablanca (1942),Drama|Romance +913,"Maltese Falcon, The (1941)",Film-Noir|Mystery +914,My Fair Lady (1964),Comedy|Drama|Musical|Romance +915,Sabrina (1954),Comedy|Romance +916,Roman Holiday (1953),Comedy|Drama|Romance +917,"Little Princess, The (1939)",Children|Drama +918,Meet Me in St. Louis (1944),Musical +919,"Wizard of Oz, The (1939)",Adventure|Children|Fantasy|Musical +920,Gone with the Wind (1939),Drama|Romance|War +921,My Favorite Year (1982),Comedy +922,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance +923,Citizen Kane (1941),Drama|Mystery +924,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi +925,Golden Earrings (1947),Adventure|Romance|War +926,All About Eve (1950),Drama +927,"Women, The (1939)",Comedy +928,Rebecca (1940),Drama|Mystery|Romance|Thriller +929,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller +930,Notorious (1946),Film-Noir|Romance|Thriller +931,Spellbound (1945),Mystery|Romance|Thriller +932,"Affair to Remember, An (1957)",Drama|Romance +933,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller +934,Father of the Bride (1950),Comedy +935,"Band Wagon, The (1953)",Comedy|Musical +936,Ninotchka (1939),Comedy|Romance +937,Love in the Afternoon (1957),Comedy|Romance +938,Gigi (1958),Musical +939,"Reluctant Debutante, The (1958)",Comedy|Drama +940,"Adventures of Robin Hood, The (1938)",Action|Adventure|Romance +941,"Mark of Zorro, The (1940)",Adventure +942,Laura (1944),Crime|Film-Noir|Mystery +943,"Ghost and Mrs. Muir, The (1947)",Drama|Fantasy|Romance +944,Lost Horizon (1937),Drama +945,Top Hat (1935),Comedy|Musical|Romance +946,To Be or Not to Be (1942),Comedy|Drama|War +947,My Man Godfrey (1936),Comedy|Romance +948,Giant (1956),Drama|Romance|Western +949,East of Eden (1955),Drama +950,"Thin Man, The (1934)",Comedy|Crime +951,His Girl Friday (1940),Comedy|Romance +952,Around the World in 80 Days (1956),Adventure|Comedy +953,It's a Wonderful Life (1946),Drama|Fantasy|Romance +954,Mr. Smith Goes to Washington (1939),Drama +955,Bringing Up Baby (1938),Comedy|Romance +956,Penny Serenade (1941),Drama|Romance +957,"Scarlet Letter, The (1926)",Drama +958,Lady of Burlesque (1943),Comedy|Mystery +959,Of Human Bondage (1934),Drama +960,Angel on My Shoulder (1946),Crime|Drama +961,Little Lord Fauntleroy (1936),Drama +962,They Made Me a Criminal (I Became a Criminal) (They Made Me a Fugitive) (1939),Crime|Drama +963,"Inspector General, The (1949)",Musical +964,Angel and the Badman (1947),Romance|Western +965,"39 Steps, The (1935)",Drama|Mystery|Thriller +966,"Walk in the Sun, A (1945)",War +967,"Outlaw, The (1943)",Western +968,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller +969,"African Queen, The (1951)",Adventure|Comedy|Romance|War +970,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance +971,Cat on a Hot Tin Roof (1958),Drama +972,"Last Time I Saw Paris, The (1954)",Drama +973,Meet John Doe (1941),Comedy|Drama +974,Algiers (1938),Drama|Romance +975,Something to Sing About (1937),Comedy|Musical +976,"Farewell to Arms, A (1932)",Romance|War +977,Moonlight Murder (1936),Mystery +979,Nothing Personal (1995),Drama|War +980,"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)",Action +981,Dangerous Ground (1997),Drama +982,Picnic (1955),Drama +983,Madagascar Skin (1995),Romance +984,"Pompatus of Love, The (1996)",Comedy|Drama +985,Small Wonders (1995),Documentary +986,Fly Away Home (1996),Adventure|Children +987,Bliss (1997),Drama|Romance +988,Grace of My Heart (1996),Comedy|Drama +989,Brother of Sleep (Schlafes Bruder) (1995),Drama +990,Maximum Risk (1996),Action|Adventure|Thriller +991,Michael Collins (1996),Drama +992,"Rich Man's Wife, The (1996)",Thriller +993,Infinity (1996),Drama +994,Big Night (1996),Comedy|Drama +996,Last Man Standing (1996),Action|Crime|Drama|Thriller +997,Caught (1996),Drama|Thriller +998,Set It Off (1996),Action|Crime +999,2 Days in the Valley (1996),Crime|Film-Noir +1000,Curdled (1996),Crime +1001,"Associate, The (Associé, L') (1979)",Comedy +1002,Ed's Next Move (1996),Comedy|Romance +1003,Extreme Measures (1996),Drama|Thriller +1004,"Glimmer Man, The (1996)",Action|Thriller +1005,D3: The Mighty Ducks (1996),Children|Comedy +1006,"Chamber, The (1996)",Drama +1007,"Apple Dumpling Gang, The (1975)",Children|Comedy|Western +1008,"Davy Crockett, King of the Wild Frontier (1955)",Adventure|Western +1009,Escape to Witch Mountain (1975),Adventure|Children|Fantasy +1010,"Love Bug, The (1969)",Children|Comedy +1011,Herbie Rides Again (1974),Adventure|Children|Comedy +1012,Old Yeller (1957),Children|Drama +1013,"Parent Trap, The (1961)",Children|Comedy|Romance +1014,Pollyanna (1960),Children|Comedy|Drama +1015,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama +1016,"Shaggy Dog, The (1959)",Children|Comedy +1017,Swiss Family Robinson (1960),Adventure|Children +1018,That Darn Cat! (1965),Children|Comedy|Mystery +1019,"20,000 Leagues Under the Sea (1954)",Adventure|Drama|Sci-Fi +1020,Cool Runnings (1993),Comedy +1021,Angels in the Outfield (1994),Children|Comedy +1022,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance +1023,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical +1024,"Three Caballeros, The (1945)",Animation|Children|Musical +1025,"Sword in the Stone, The (1963)",Animation|Children|Fantasy|Musical +1026,So Dear to My Heart (1949),Children|Drama +1027,Robin Hood: Prince of Thieves (1991),Adventure|Drama +1028,Mary Poppins (1964),Children|Comedy|Fantasy|Musical +1029,Dumbo (1941),Animation|Children|Drama|Musical +1030,Pete's Dragon (1977),Adventure|Animation|Children|Musical +1031,Bedknobs and Broomsticks (1971),Adventure|Children|Musical +1032,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical +1033,"Fox and the Hound, The (1981)",Animation|Children|Drama +1034,Freeway (1996),Comedy|Crime|Drama|Thriller +1035,"Sound of Music, The (1965)",Musical|Romance +1036,Die Hard (1988),Action|Crime|Thriller +1037,"Lawnmower Man, The (1992)",Action|Horror|Sci-Fi|Thriller +1038,Unhook the Stars (1996),Drama +1039,Synthetic Pleasures (1995),Documentary +1040,"Secret Agent, The (1996)",Drama +1041,Secrets & Lies (1996),Drama +1042,That Thing You Do! (1996),Comedy|Drama +1043,To Gillian on Her 37th Birthday (1996),Drama|Romance +1044,Surviving Picasso (1996),Drama +1045,Love Is All There Is (1996),Comedy|Drama +1046,Beautiful Thing (1996),Drama|Romance +1047,"Long Kiss Goodnight, The (1996)",Action|Drama|Thriller +1049,"Ghost and the Darkness, The (1996)",Action|Adventure +1050,Looking for Richard (1996),Documentary|Drama +1051,Trees Lounge (1996),Drama +1052,"Proprietor, The (1996)",Drama +1053,Normal Life (1996),Crime|Drama|Romance +1054,Get on the Bus (1996),Drama +1055,Shadow Conspiracy (1997),Thriller +1056,Jude (1996),Drama +1057,Everyone Says I Love You (1996),Comedy|Musical|Romance +1058,Bitter Sugar (Azúcar amarga) (1996),Drama +1059,William Shakespeare's Romeo + Juliet (1996),Drama|Romance +1060,Swingers (1996),Comedy|Drama +1061,Sleepers (1996),Thriller +1062,"Sunchaser, The (1996)",Drama +1063,Johns (1996),Drama +1064,Aladdin and the King of Thieves (1996),Animation|Children|Comedy|Fantasy|Musical|Romance +1065,Five Angles on Murder (1950),Mystery +1066,Shall We Dance (1937),Comedy|Musical|Romance +1067,"Damsel in Distress, A (1937)",Comedy|Musical|Romance +1068,Crossfire (1947),Crime|Film-Noir +1069,"Murder, My Sweet (1944)",Crime|Film-Noir|Thriller +1070,Macao (1952),Adventure +1071,For the Moment (1994),Romance|War +1073,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical +1075,"Sexual Life of the Belgians, The (Vie sexuelle des Belges 1950-1978, La) (1994)",Comedy|Romance +1076,"Innocents, The (1961)",Drama|Horror|Thriller +1077,Sleeper (1973),Comedy|Sci-Fi +1078,Bananas (1971),Comedy|War +1079,"Fish Called Wanda, A (1988)",Comedy|Crime +1080,Monty Python's Life of Brian (1979),Comedy +1081,Victor/Victoria (1982),Comedy|Musical|Romance +1082,"Candidate, The (1972)",Drama +1083,"Great Race, The (1965)",Comedy|Musical +1084,Bonnie and Clyde (1967),Crime|Drama +1085,"Old Man and the Sea, The (1958)",Adventure|Drama +1086,Dial M for Murder (1954),Crime|Mystery|Thriller +1087,Madame Butterfly (1995),Musical +1088,Dirty Dancing (1987),Drama|Musical|Romance +1089,Reservoir Dogs (1992),Crime|Mystery|Thriller +1090,Platoon (1986),Drama|War +1091,Weekend at Bernie's (1989),Comedy +1092,Basic Instinct (1992),Crime|Mystery|Thriller +1093,"Doors, The (1991)",Drama +1094,"Crying Game, The (1992)",Drama|Romance|Thriller +1095,Glengarry Glen Ross (1992),Drama +1096,Sophie's Choice (1982),Drama +1097,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi +1098,"Search for One-eye Jimmy, The (1996)",Comedy +1099,"Christmas Carol, A (1938)",Children|Drama|Fantasy +1100,Days of Thunder (1990),Action|Drama|Romance +1101,Top Gun (1986),Action|Romance +1102,American Strays (1996),Action +1103,Rebel Without a Cause (1955),Drama +1104,"Streetcar Named Desire, A (1951)",Drama +1105,Children of the Corn IV: The Gathering (1996),Horror +1106,"Leopard Son, The (1996)",Documentary +1107,Loser (1991),Comedy +1109,Charm's Incidents (Charms Zwischenfälle) (1996),Drama +1110,Bird of Prey (1996),Action +1111,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary +1112,Palookaville (1996),Action|Comedy|Drama +1113,"Associate, The (1996)",Comedy +1114,"Funeral, The (1996)",Crime|Drama +1115,Sleepover (1995),Drama +1116,"Single Girl, A (Fille seule, La) (1995)",Drama +1117,"Eighth Day, The (Huitième jour, Le) (1996)",Drama +1118,North Star (a.k.a. Tashunga) (1995),Action|Adventure|Crime|Drama|Western +1119,Drunks (1995),Drama +1120,"People vs. Larry Flynt, The (1996)",Comedy|Drama +1121,Glory Daze (1995),Drama +1122,Plutonium Circus (1995),Documentary +1123,"Perfect Candidate, A (1996)",Documentary +1124,On Golden Pond (1981),Drama +1125,"Return of the Pink Panther, The (1975)",Comedy|Crime +1126,Drop Dead Fred (1991),Comedy|Fantasy +1127,"Abyss, The (1989)",Action|Adventure|Sci-Fi|Thriller +1128,"Fog, The (1980)",Horror +1129,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller +1130,"Howling, The (1980)",Horror|Mystery +1131,Jean de Florette (1986),Drama|Mystery +1132,Manon of the Spring (Manon des sources) (1986),Drama +1133,Talking About Sex (1994),Comedy|Drama +1134,Johnny 100 Pesos (Johnny cien pesos) (1993),Action|Drama +1135,Private Benjamin (1980),Comedy +1136,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy +1137,Hustler White (1996),Romance +1138,Dadetown (1995),Drama +1139,Everything Relative (1996),Drama +1140,Entertaining Angels: The Dorothy Day Story (1996),Drama +1141,Last Call (Hoogste tijd) (1995),Drama +1142,Get Over It (1996),Drama +1143,Three Lives and Only One Death (Trois vies & une seule mort) (1996),Comedy +1144,"Line King: The Al Hirschfeld Story, The (1996)",Documentary +1145,Snowriders (1996),Documentary +1146,Curtis's Charm (1995),Comedy|Drama +1147,When We Were Kings (1996),Documentary +1148,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime +1149,JLG/JLG (JLG/JLG - autoportrait de décembre) (1994),Documentary|Drama +1150,"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)",Drama +1151,Faust (1994),Animation|Comedy|Thriller +1152,He Walked by Night (1948),Crime|Film-Noir|Thriller +1153,Raw Deal (1948),Film-Noir +1154,T-Men (1947),Film-Noir +1155,"Invitation, The (Zaproszenie) (1986)",Drama +1156,"Children Are Watching Us, The (Bambini ci guardano, I) (1944)",Drama +1157,"Symphonie pastorale, La (1946)",Drama +1158,Here Comes Cookie (1935),Comedy +1159,Love in Bloom (1935),Romance +1160,Six of a Kind (1934),Comedy +1161,"Tin Drum, The (Blechtrommel, Die) (1979)",Drama|War +1162,"Ruling Class, The (1972)",Comedy|Drama +1163,Mina Tannenbaum (1994),Drama +1164,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama +1165,"Bloody Child, The (1996)",Drama|Thriller +1166,Farmer & Chase (1997),Comedy +1167,Dear God (1996),Comedy +1168,Bad Moon (1996),Action|Adventure|Horror +1169,American Dream (1990),Documentary +1170,Best of the Best 3: No Turning Back (1995),Action +1171,Bob Roberts (1992),Comedy +1172,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama +1173,"Cook the Thief His Wife & Her Lover, The (1989)",Comedy|Drama +1174,Dead Tired (Grosse Fatigue) (1994),Comedy +1175,Delicatessen (1991),Comedy|Drama|Romance +1176,"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)",Drama|Fantasy|Romance +1177,Enchanted April (1992),Drama|Romance +1178,Paths of Glory (1957),Drama|War +1179,"Grifters, The (1990)",Crime|Drama|Film-Noir +1180,Hear My Song (1991),Comedy +1181,"Shooter, The (1997)",Western +1183,"English Patient, The (1996)",Drama|Romance|War +1184,Mediterraneo (1991),Comedy|Drama +1185,My Left Foot (1989),Drama +1186,"Sex, Lies, and Videotape (1989)",Drama +1187,Passion Fish (1992),Drama +1188,Strictly Ballroom (1992),Comedy|Romance +1189,"Thin Blue Line, The (1988)",Documentary +1190,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance +1191,Madonna: Truth or Dare (1991),Documentary|Musical +1192,Paris Is Burning (1990),Documentary +1193,One Flew Over the Cuckoo's Nest (1975),Drama +1194,Cheech and Chong's Up in Smoke (1978),Comedy +1196,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi +1197,"Princess Bride, The (1987)",Action|Adventure|Comedy|Fantasy|Romance +1198,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure +1199,Brazil (1985),Fantasy|Sci-Fi +1200,Aliens (1986),Action|Adventure|Horror|Sci-Fi +1201,"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)",Action|Adventure|Western +1202,Withnail & I (1987),Comedy +1203,12 Angry Men (1957),Drama +1204,Lawrence of Arabia (1962),Adventure|Drama|War +1206,"Clockwork Orange, A (1971)",Crime|Drama|Sci-Fi|Thriller +1207,To Kill a Mockingbird (1962),Drama +1208,Apocalypse Now (1979),Action|Drama|War +1209,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western +1210,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi +1211,"Wings of Desire (Himmel über Berlin, Der) (1987)",Drama|Fantasy|Romance +1212,"Third Man, The (1949)",Film-Noir|Mystery|Thriller +1213,Goodfellas (1990),Crime|Drama +1214,Alien (1979),Horror|Sci-Fi +1215,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror +1216,"Big Blue, The (Grand bleu, Le) (1988)",Adventure|Drama|Romance +1217,Ran (1985),Drama|War +1218,"Killer, The (Die xue shuang xiong) (1989)",Action|Crime|Drama|Thriller +1219,Psycho (1960),Crime|Horror +1220,"Blues Brothers, The (1980)",Action|Comedy|Musical +1221,"Godfather: Part II, The (1974)",Crime|Drama +1222,Full Metal Jacket (1987),Drama|War +1223,"Grand Day Out with Wallace and Gromit, A (1989)",Adventure|Animation|Children|Comedy|Sci-Fi +1224,Henry V (1989),Action|Drama|Romance|War +1225,Amadeus (1984),Drama +1226,"Quiet Man, The (1952)",Drama|Romance +1227,Once Upon a Time in America (1984),Crime|Drama +1228,Raging Bull (1980),Drama +1230,Annie Hall (1977),Comedy|Romance +1231,"Right Stuff, The (1983)",Drama +1232,Stalker (1979),Drama|Mystery|Sci-Fi +1233,"Boot, Das (Boat, The) (1981)",Action|Drama|War +1234,"Sting, The (1973)",Comedy|Crime +1235,Harold and Maude (1971),Comedy|Drama|Romance +1236,Trust (1990),Comedy|Drama|Romance +1237,"Seventh Seal, The (Sjunde inseglet, Det) (1957)",Drama +1238,Local Hero (1983),Comedy +1240,"Terminator, The (1984)",Action|Sci-Fi|Thriller +1241,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror +1242,Glory (1989),Drama|War +1243,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama +1244,Manhattan (1979),Comedy|Drama|Romance +1245,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller +1246,Dead Poets Society (1989),Drama +1247,"Graduate, The (1967)",Comedy|Drama|Romance +1248,Touch of Evil (1958),Crime|Film-Noir|Thriller +1249,"Femme Nikita, La (Nikita) (1990)",Action|Crime|Romance|Thriller +1250,"Bridge on the River Kwai, The (1957)",Adventure|Drama|War +1251,8 1/2 (8½) (1963),Drama|Fantasy +1252,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller +1253,"Day the Earth Stood Still, The (1951)",Drama|Sci-Fi|Thriller +1254,"Treasure of the Sierra Madre, The (1948)",Action|Adventure|Drama|Western +1255,Bad Taste (1987),Comedy|Horror|Sci-Fi +1256,Duck Soup (1933),Comedy|Musical|War +1257,Better Off Dead... (1985),Comedy|Romance +1258,"Shining, The (1980)",Horror +1259,Stand by Me (1986),Adventure|Drama +1260,M (1931),Crime|Film-Noir|Thriller +1261,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror +1262,"Great Escape, The (1963)",Action|Adventure|Drama|War +1263,"Deer Hunter, The (1978)",Drama|War +1264,Diva (1981),Action|Drama|Mystery|Romance|Thriller +1265,Groundhog Day (1993),Comedy|Fantasy|Romance +1266,Unforgiven (1992),Drama|Western +1267,"Manchurian Candidate, The (1962)",Crime|Thriller|War +1268,Pump Up the Volume (1990),Comedy|Drama +1269,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller +1270,Back to the Future (1985),Adventure|Comedy|Sci-Fi +1271,Fried Green Tomatoes (1991),Comedy|Crime|Drama +1272,Patton (1970),Drama|War +1273,Down by Law (1986),Comedy|Drama|Film-Noir +1274,Akira (1988),Action|Adventure|Animation|Sci-Fi +1275,Highlander (1986),Action|Adventure|Fantasy +1276,Cool Hand Luke (1967),Drama +1277,Cyrano de Bergerac (1990),Comedy|Drama|Romance +1278,Young Frankenstein (1974),Comedy|Fantasy +1279,Night on Earth (1991),Comedy|Drama +1280,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama +1281,"Great Dictator, The (1940)",Comedy|Drama|War +1282,Fantasia (1940),Animation|Children|Fantasy|Musical +1283,High Noon (1952),Drama|Western +1284,"Big Sleep, The (1946)",Crime|Film-Noir|Mystery +1285,Heathers (1989),Comedy +1286,Somewhere in Time (1980),Drama|Romance +1287,Ben-Hur (1959),Action|Adventure|Drama +1288,This Is Spinal Tap (1984),Comedy +1289,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary +1290,Some Kind of Wonderful (1987),Drama|Romance +1291,Indiana Jones and the Last Crusade (1989),Action|Adventure +1292,Being There (1979),Comedy|Drama +1293,Gandhi (1982),Drama +1295,"Unbearable Lightness of Being, The (1988)",Drama +1296,"Room with a View, A (1986)",Drama|Romance +1297,Real Genius (1985),Comedy +1298,Pink Floyd: The Wall (1982),Drama|Musical +1299,"Killing Fields, The (1984)",Drama|War +1300,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama +1301,Forbidden Planet (1956),Drama|Sci-Fi +1302,Field of Dreams (1989),Children|Drama|Fantasy +1303,"Man Who Would Be King, The (1975)",Adventure|Drama +1304,Butch Cassidy and the Sundance Kid (1969),Action|Western +1305,"Paris, Texas (1984)",Drama|Romance +1306,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi +1307,When Harry Met Sally... (1989),Comedy|Romance +1308,I Shot a Man in Vegas (1995),Comedy +1309,Parallel Sons (1995),Drama|Romance +1310,Hype! (1996),Documentary +1311,Santa with Muscles (1996),Comedy +1312,Female Perversions (1996),Drama +1313,Mad Dog Time (1996),Crime +1314,Breathing Room (1996),Romance +1315,Paris Was a Woman (1995),Documentary +1316,Anna (1996),Drama +1317,I'm Not Rappaport (1996),Comedy +1318,Blue Juice (1995),Comedy|Drama +1319,Kids of Survival (1996),Documentary +1320,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller +1321,"American Werewolf in London, An (1981)",Comedy|Horror|Thriller +1322,Amityville 1992: It's About Time (1992),Horror +1323,Amityville 3-D (1983),Horror +1324,Amityville: Dollhouse (1996),Horror +1325,Amityville: A New Generation (1993),Horror +1326,Amityville II: The Possession (1982),Horror +1327,"Amityville Horror, The (1979)",Drama|Horror|Mystery|Thriller +1328,"Amityville Curse, The (1990)",Horror +1329,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror +1330,April Fool's Day (1986),Horror +1331,Audrey Rose (1977),Horror +1332,"Believers, The (1987)",Horror|Thriller +1333,"Birds, The (1963)",Horror|Thriller +1334,"Blob, The (1958)",Horror|Sci-Fi +1335,Blood Beach (1981),Horror|Mystery +1336,Body Parts (1991),Horror|Thriller +1337,"Body Snatcher, The (1945)",Drama|Horror|Thriller +1339,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller +1340,"Bride of Frankenstein, The (Bride of Frankenstein) (1935)",Drama|Horror|Sci-Fi +1341,Burnt Offerings (1976),Horror +1342,Candyman (1992),Horror|Thriller +1343,Cape Fear (1991),Thriller +1344,Cape Fear (1962),Crime|Drama|Thriller +1345,Carrie (1976),Drama|Fantasy|Horror|Thriller +1346,Cat People (1982),Drama|Fantasy|Horror +1347,"Nightmare on Elm Street, A (1984)",Horror|Thriller +1348,"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)",Horror +1349,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror +1350,"Omen, The (1976)",Horror|Mystery|Thriller +1351,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller +1352,Albino Alligator (1996),Crime|Thriller +1353,"Mirror Has Two Faces, The (1996)",Comedy|Drama|Romance +1354,Breaking the Waves (1996),Drama|Mystery +1355,Nightwatch (1997),Horror|Thriller +1356,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller +1357,Shine (1996),Drama|Romance +1358,Sling Blade (1996),Drama +1359,Jingle All the Way (1996),Children|Comedy +1360,Identification of a Woman (Identificazione di una donna) (1982),Drama +1361,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary +1363,"Preacher's Wife, The (1996)",Drama +1364,Zero Kelvin (Kjærlighetens kjøtere) (1995),Drama +1365,Ridicule (1996),Drama +1366,"Crucible, The (1996)",Drama +1367,101 Dalmatians (1996),Adventure|Children|Comedy +1368,"Forbidden Christ, The (Cristo proibito, Il) (1950)",Drama +1369,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller +1370,Die Hard 2 (1990),Action|Adventure|Thriller +1371,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi +1372,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi +1373,Star Trek V: The Final Frontier (1989),Action|Sci-Fi +1374,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller +1375,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi +1376,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi +1377,Batman Returns (1992),Action|Crime +1378,Young Guns (1988),Action|Comedy|Western +1379,Young Guns II (1990),Action|Western +1380,Grease (1978),Comedy|Musical|Romance +1381,Grease 2 (1982),Comedy|Musical|Romance +1382,Marked for Death (1990),Action|Drama +1383,Adrenalin: Fear the Rush (1996),Action|Sci-Fi +1384,"Substance of Fire, The (1996)",Drama +1385,Under Siege (1992),Action|Drama|Thriller +1386,Terror in a Texas Town (1958),Western +1387,Jaws (1975),Action|Horror +1388,Jaws 2 (1978),Horror|Thriller +1389,Jaws 3-D (1983),Action|Horror +1390,My Fellow Americans (1996),Comedy +1391,Mars Attacks! (1996),Action|Comedy|Sci-Fi +1392,Citizen Ruth (1996),Comedy|Drama +1393,Jerry Maguire (1996),Drama|Romance +1394,Raising Arizona (1987),Comedy +1395,Tin Men (1987),Comedy|Drama +1396,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi +1397,Bastard Out of Carolina (1996),Drama +1398,In Love and War (1996),Romance|War +1399,Marvin's Room (1996),Drama +1400,Somebody is Waiting (1996),Drama +1401,Ghosts of Mississippi (1996),Drama +1404,Night Falls on Manhattan (1996),Crime|Drama +1405,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime +1406,La Cérémonie (1995),Crime|Drama|Mystery|Thriller +1407,Scream (1996),Comedy|Horror|Mystery|Thriller +1408,"Last of the Mohicans, The (1992)",Action|Romance|War|Western +1409,Michael (1996),Comedy|Drama|Fantasy|Romance +1410,"Evening Star, The (1996)",Comedy|Drama +1411,Hamlet (1996),Crime|Drama|Romance +1412,Some Mother's Son (1996),Drama +1413,"Whole Wide World, The (1996)",Drama +1414,Mother (1996),Comedy +1415,"Thieves (Voleurs, Les) (1996)",Crime|Drama|Romance +1416,Evita (1996),Drama|Musical +1417,"Portrait of a Lady, The (1996)",Drama +1419,Walkabout (1971),Adventure|Drama +1420,Message to Love: The Isle of Wight Festival (1996),Documentary +1421,Grateful Dead (1995),Documentary +1422,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller +1423,Hearts and Minds (1996),Drama +1424,Inside (1996),Action +1425,Fierce Creatures (1997),Comedy +1426,Zeus and Roxanne (1997),Children +1427,Turbulence (1997),Action|Thriller +1428,Angel Baby (1995),Drama +1429,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller +1430,Underworld (1996),Comedy|Thriller +1431,Beverly Hills Ninja (1997),Action|Comedy +1432,Metro (1997),Action|Comedy|Crime|Drama|Thriller +1433,The Machine (1994),Horror|Sci-Fi|Thriller +1434,"Stranger, The (1994)",Action +1436,Falling in Love Again (1980),Comedy +1437,"Cement Garden, The (1993)",Drama +1438,Dante's Peak (1997),Action|Thriller +1439,Meet Wally Sparks (1997),Comedy +1440,Amos & Andrew (1993),Comedy +1441,Benny & Joon (1993),Comedy|Romance +1442,Prefontaine (1997),Drama +1443,"Tickle in the Heart, A (1996)",Documentary +1444,Guantanamera (1994),Comedy +1445,McHale's Navy (1997),Comedy|War +1446,Kolya (Kolja) (1996),Comedy|Drama +1447,Gridlock'd (1997),Crime +1448,Fire on the Mountain (1996),Documentary +1449,Waiting for Guffman (1996),Comedy +1450,Prisoner of the Mountains (Kavkazsky plennik) (1996),War +1453,"Beautician and the Beast, The (1997)",Comedy|Romance +1454,SubUrbia (1997),Comedy|Drama +1455,Hotel de Love (1996),Comedy|Romance +1456,"Pest, The (1997)",Comedy +1457,Fools Rush In (1997),Comedy|Drama|Romance +1458,Touch (1997),Drama|Fantasy|Romance +1459,Absolute Power (1997),Mystery|Thriller +1460,That Darn Cat (1997),Children|Comedy|Mystery +1461,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy +1462,Unforgotten: Twenty-Five Years After Willowbrook (1996),Documentary +1463,That Old Feeling (1997),Comedy|Romance +1464,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance +1465,Rosewood (1997),Action|Drama +1466,Donnie Brasco (1997),Crime|Drama +1467,Salut cousin! (1996),Comedy|Drama +1468,Booty Call (1997),Comedy|Romance +1470,Rhyme & Reason (1997),Documentary +1471,Boys Life 2 (1997),Drama +1472,City of Industry (1997),Crime|Thriller +1473,Best Men (1997),Action|Comedy|Crime|Drama +1474,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy +1475,Kama Sutra: A Tale of Love (1996),Romance +1476,Private Parts (1997),Comedy|Drama +1477,Love Jones (1997),Romance +1479,"Saint, The (1997)",Action|Romance|Sci-Fi|Thriller +1480,Smilla's Sense of Snow (1997),Drama|Thriller +1482,"Van, The (1996)",Comedy|Drama +1483,Crash (1996),Drama|Thriller +1484,"Daytrippers, The (1996)",Comedy|Drama|Mystery|Romance +1485,Liar Liar (1997),Comedy +1486,"Quiet Room, The (1996)",Drama +1487,Selena (1997),Drama|Musical +1488,"Devil's Own, The (1997)",Action|Drama|Thriller +1489,Cats Don't Dance (1997),Animation|Children|Musical +1490,B*A*P*S (1997),Comedy +1493,Love and Other Catastrophes (1996),Romance +1495,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children +1496,Anna Karenina (1997),Drama|Romance +1497,Double Team (1997),Action +1498,Inventing the Abbotts (1997),Drama|Romance +1499,Anaconda (1997),Action|Adventure|Thriller +1500,Grosse Pointe Blank (1997),Comedy|Crime|Romance +1501,Keys to Tulsa (1997),Crime +1502,Kissed (1996),Drama|Romance +1503,8 Heads in a Duffel Bag (1997),Comedy +1504,Hollow Reed (1996),Drama +1507,Paradise Road (1997),Drama|War +1508,Traveller (1997),Drama +1509,All Over Me (1997),Drama +1510,"Brother's Kiss, A (1997)",Drama +1511,"Chef in Love, A (Shekvarebuli kulinaris ataserti retsepti) (1997)",Comedy|Romance +1513,Romy and Michele's High School Reunion (1997),Comedy +1514,Temptress Moon (Feng Yue) (1996),Romance +1515,Volcano (1997),Action|Drama|Thriller +1516,Children of the Revolution (1996),Comedy +1517,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy +1518,Breakdown (1997),Action|Thriller +1519,Broken English (1996),Drama +1520,Commandments (1997),Romance +1522,Ripe (1996),Drama +1523,"Truth or Consequences, N.M. (1997)",Action|Crime|Romance +1524,"Turning, The (1992)",Drama +1525,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy +1526,Fathers' Day (1997),Comedy +1527,"Fifth Element, The (1997)",Action|Adventure|Comedy|Sci-Fi +1528,Intimate Relations (1996),Comedy +1529,Nowhere (1997),Comedy|Drama +1531,Losing Chase (1996),Drama +1532,Sprung (1997),Comedy +1533,"Promise, The (La promesse) (1996)",Drama +1534,"Bonheur, Le (1965)",Drama +1535,Love! Valour! Compassion! (1997),Drama|Romance +1537,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance +1538,"Second Jungle Book: Mowgli & Baloo, The (1997)",Adventure|Children +1539,Twin Town (1997),Comedy|Crime +1541,Addicted to Love (1997),Comedy|Romance +1542,Brassed Off (1996),Comedy|Drama|Romance +1543,"Designated Mourner, The (1997)",Drama +1544,"Lost World: Jurassic Park, The (1997)",Action|Adventure|Sci-Fi|Thriller +1545,Ponette (1996),Drama +1546,Schizopolis (1996),Comedy +1547,Shiloh (1997),Children|Drama +1548,"War at Home, The (1996)",Drama +1549,Rough Magic (1995),Drama|Romance +1550,Trial and Error (1997),Comedy|Romance +1551,Buddy (1997),Adventure|Children|Drama +1552,Con Air (1997),Action|Adventure|Thriller +1553,Late Bloomers (1996),Comedy +1554,"Pillow Book, The (1996)",Drama|Romance +1555,"To Have, or Not (En avoir (ou pas)) (1995)",Drama +1556,Speed 2: Cruise Control (1997),Action|Romance|Thriller +1557,Squeeze (1997),Drama +1558,Sudden Manhattan (1997),Comedy +1559,"Next Step, The (1997)",Drama +1561,Wedding Bell Blues (1996),Comedy +1562,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller +1563,Dream With the Fishes (1997),Drama +1564,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance +1565,Head Above Water (1996),Comedy|Thriller +1566,Hercules (1997),Adventure|Animation|Children|Comedy|Musical +1567,The Last Time I Committed Suicide (1997),Drama +1568,MURDER and murder (1996),Crime|Drama|Mystery +1569,My Best Friend's Wedding (1997),Comedy|Romance +1570,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi +1571,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance +1572,"Contempt (Mépris, Le) (1963)",Drama +1573,Face/Off (1997),Action|Crime|Drama|Thriller +1574,Fall (1997),Romance +1575,Gabbeh (1996),Drama +1577,Mondo (1996),Drama +1578,"Innocent Sleep, The (1996)",Crime +1579,For Ever Mozart (1996),Drama +1580,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi +1581,Out to Sea (1997),Comedy +1582,Wild America (1997),Adventure|Children +1583,"Simple Wish, A (1997)",Children|Fantasy +1584,Contact (1997),Drama|Sci-Fi +1585,Love Serenade (1996),Comedy +1586,G.I. Jane (1997),Action|Drama +1587,Conan the Barbarian (1982),Action|Adventure|Fantasy +1588,George of the Jungle (1997),Children|Comedy +1589,Cop Land (1997),Action|Crime|Drama|Thriller +1590,Event Horizon (1997),Horror|Sci-Fi|Thriller +1591,Spawn (1997),Action|Adventure|Sci-Fi|Thriller +1592,Air Bud (1997),Children|Comedy +1593,Picture Perfect (1997),Comedy|Romance +1594,In the Company of Men (1997),Comedy|Drama +1595,Free Willy 3: The Rescue (1997),Adventure|Children|Drama +1596,Career Girls (1997),Drama +1597,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller +1598,Desperate Measures (1998),Crime|Drama|Thriller +1599,Steel (1997),Action +1600,She's So Lovely (1997),Drama|Romance +1601,Hoodlum (1997),Crime|Drama|Film-Noir +1602,Leave It to Beaver (1997),Comedy +1603,Mimic (1997),Horror|Sci-Fi|Thriller +1604,Money Talks (1997),Action|Comedy +1605,Excess Baggage (1997),Adventure|Romance +1606,Kull the Conqueror (1997),Action|Adventure +1608,Air Force One (1997),Action|Thriller +1609,187 (One Eight Seven) (1997),Drama|Thriller +1610,"Hunt for Red October, The (1990)",Action|Adventure|Thriller +1611,My Own Private Idaho (1991),Drama|Romance +1612,"Kiss Me, Guido (1997)",Comedy +1613,Star Maps (1997),Drama +1614,In & Out (1997),Comedy +1615,"Edge, The (1997)",Adventure|Drama +1616,"Peacemaker, The (1997)",Action|Thriller|War +1617,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller +1619,Seven Years in Tibet (1997),Adventure|Drama|War +1620,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller +1621,Soul Food (1997),Drama +1622,Kicked in the Head (1997),Comedy|Drama +1623,Wishmaster (1997),Horror +1624,"Thousand Acres, A (1997)",Drama +1625,"Game, The (1997)",Drama|Mystery|Thriller +1626,Fire Down Below (1997),Action|Drama|Thriller +1627,U Turn (1997),Crime|Drama|Mystery +1628,"Locusts, The (1997)",Drama +1629,"MatchMaker, The (1997)",Comedy|Romance +1630,"Lay of the Land, The (1997)",Comedy|Drama +1631,"Assignment, The (1997)",Action|Thriller +1632,"Smile Like Yours, A (1997)",Comedy|Romance +1633,Ulee's Gold (1997),Drama +1635,"Ice Storm, The (1997)",Drama +1636,Stag (1997),Action|Thriller +1639,Chasing Amy (1997),Comedy|Drama|Romance +1640,How to Be a Player (1997),Comedy +1641,"Full Monty, The (1997)",Comedy|Drama +1642,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama +1643,"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)",Drama|Romance +1644,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller +1645,"Devil's Advocate, The (1997)",Drama|Mystery|Thriller +1646,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi +1647,Playing God (1997),Crime|Drama|Thriller +1648,"House of Yes, The (1997)",Comedy|Drama +1649,"Fast, Cheap & Out of Control (1997)",Documentary +1650,Washington Square (1997),Drama +1651,Telling Lies in America (1997),Drama +1652,Year of the Horse (1997),Documentary +1653,Gattaca (1997),Drama|Sci-Fi|Thriller +1654,FairyTale: A True Story (1997),Children|Drama|Fantasy +1655,Phantoms (1998),Drama|Horror|Thriller +1656,Swept from the Sea (1997),Drama|Romance +1657,Wonderland (1997),Comedy|Documentary +1658,"Life Less Ordinary, A (1997)",Romance|Thriller +1659,Hurricane Streets (1997),Drama +1660,Eve's Bayou (1997),Drama +1661,Switchback (1997),Crime|Mystery|Thriller +1662,Gang Related (1997),Crime +1663,Stripes (1981),Comedy|War +1664,Nenette and Boni (Nénette et Boni) (1996),Drama +1665,Bean (1997),Comedy +1666,Hugo Pool (1997),Romance +1667,Mad City (1997),Action|Drama +1668,One Night Stand (1997),Drama +1669,"Tango Lesson, The (1997)",Romance +1670,Welcome to Sarajevo (1997),Drama|War +1671,Deceiver (1997),Crime|Drama|Thriller +1672,"Rainmaker, The (1997)",Drama +1673,Boogie Nights (1997),Drama +1674,Witness (1985),Drama|Romance|Thriller +1675,Incognito (1997),Crime|Thriller +1676,Starship Troopers (1997),Action|Sci-Fi +1677,Critical Care (1997),Comedy|Drama +1678,"Joy Luck Club, The (1993)",Drama|Romance +1679,Chairman of the Board (1998),Comedy +1680,Sliding Doors (1998),Drama|Romance +1681,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy +1682,"Truman Show, The (1998)",Comedy|Drama|Sci-Fi +1683,"Wings of the Dove, The (1997)",Drama|Romance +1684,Mrs. Dalloway (1997),Drama|Romance +1685,"I Love You, I Love You Not (1996)",Drama|Romance +1686,Red Corner (1997),Crime|Thriller +1687,"Jackal, The (1997)",Action|Thriller +1688,Anastasia (1997),Adventure|Animation|Children|Drama|Musical +1689,"Man Who Knew Too Little, The (1997)",Comedy|Crime|Thriller +1690,Alien: Resurrection (1997),Action|Horror|Sci-Fi +1692,Alien Escape (1995),Horror|Sci-Fi +1693,Amistad (1997),Drama|Mystery +1694,"Apostle, The (1997)",Drama +1695,Artemisia (1997),Drama +1696,Bent (1997),Drama|War +1697,Bang (1995),Crime|Drama +1698,"Boys, Les (1997)",Comedy +1699,"Butcher Boy, The (1997)",Comedy|Drama +1701,Deconstructing Harry (1997),Comedy|Drama +1702,Flubber (1997),Children|Comedy|Fantasy +1703,For Richer or Poorer (1997),Comedy +1704,Good Will Hunting (1997),Drama|Romance +1705,Guy (1997),Drama +1706,Tar (1996),Drama +1707,Home Alone 3 (1997),Children|Comedy +1708,Ill Gotten Gains (1997),Drama +1709,Legal Deceit (1997),Thriller +1710,Man of Her Dreams (a.k.a. The Fiancé) (1997),Drama +1711,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery +1713,Mouse Hunt (1997),Children|Comedy +1714,Never Met Picasso (1996),Romance +1715,Office Killer (1997),Thriller +1716,"Other Voices, Other Rooms (1995)",Drama +1717,Scream 2 (1997),Comedy|Horror|Mystery|Thriller +1718,Stranger in the House (1997),Thriller +1719,"Sweet Hereafter, The (1997)",Drama +1720,Time Tracers (1995),Action|Adventure|Sci-Fi +1721,Titanic (1997),Drama|Romance +1722,Tomorrow Never Dies (1997),Action|Adventure|Thriller +1723,Twisted (1996),Comedy|Drama +1724,Full Speed (À toute vitesse) (1996),Drama +1725,"Education of Little Tree, The (1997)",Drama +1726,"Postman, The (1997)",Action|Adventure|Drama|Sci-Fi +1727,"Horse Whisperer, The (1998)",Drama|Romance +1728,"Winter Guest, The (1997)",Drama +1729,Jackie Brown (1997),Crime|Drama|Thriller +1730,Kundun (1997),Drama +1731,Mr. Magoo (1997),Comedy +1732,"Big Lebowski, The (1998)",Comedy|Crime +1733,Afterglow (1997),Drama|Romance +1734,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama +1735,Great Expectations (1998),Drama|Romance +1738,Vermin (1998),Comedy +1739,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy +1740,Men of Means (1999),Action|Drama +1742,Caught Up (1998),Crime +1743,Arguing the World (1998),Documentary +1744,Firestorm (1998),Action|Adventure|Thriller +1746,Senseless (1998),Comedy +1747,Wag the Dog (1997),Comedy +1748,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller +1749,"Leading Man, The (1996)",Romance +1750,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi +1752,Hard Rain (1998),Action|Crime|Thriller +1753,Half Baked (1998),Comedy +1754,Fallen (1998),Crime|Drama|Fantasy|Thriller +1755,Shooting Fish (1997),Comedy|Romance +1756,"Prophecy II, The (1998)",Horror +1757,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance +1759,"Four Days in September (O Que É Isso, Companheiro?) (1997)",Drama +1760,Spice World (1997),Comedy +1762,Deep Rising (1998),Action|Horror|Sci-Fi +1764,Tainted (1998),Comedy|Thriller +1765,"Letter From Death Row, A (1998)",Crime|Drama +1767,Music From Another Room (1998),Drama|Romance +1768,Mother and Son (Mat i syn) (1997),Drama +1769,"Replacement Killers, The (1998)",Action|Crime|Thriller +1770,B. Monkey (1998),Crime|Romance|Thriller +1771,Night Flier (1997),Horror +1772,Blues Brothers 2000 (1998),Action|Comedy|Musical +1773,Tokyo Fist (Tokyo ken) (1995),Action|Drama +1774,Mass Transit (1998),Comedy|Drama +1776,Ride (1998),Drama +1777,"Wedding Singer, The (1998)",Comedy|Romance +1779,Sphere (1998),Sci-Fi|Thriller +1780,Ayn Rand: A Sense of Life (1997),Documentary +1781,"Further Gesture, A (1996)",Drama +1782,Little City (1998),Comedy|Romance +1783,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller +1784,As Good as It Gets (1997),Comedy|Drama|Romance +1785,King of New York (1990),Crime|Thriller +1787,"Paralyzing Fear: The Story of Polio in America, A (1998)",Documentary +1788,Men with Guns (1997),Action|Drama +1789,"Sadness of Sex, The (1995)",Drama +1791,Twilight (1998),Crime|Drama|Thriller +1792,U.S. Marshals (1998),Action|Crime|Thriller +1793,Welcome to Woop-Woop (1997),Comedy +1794,Love and Death on Long Island (1997),Comedy|Drama +1795,"Callejón de los milagros, El (1995)",Drama +1796,In God's Hands (1998),Action|Drama +1797,Everest (1998),Documentary|IMAX +1798,Hush (1998),Thriller +1799,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller +1801,"Man in the Iron Mask, The (1998)",Action|Adventure|Drama +1804,"Newton Boys, The (1998)",Crime|Drama +1805,Wild Things (1998),Crime|Drama|Mystery|Thriller +1806,Paulie (1998),Adventure|Children|Comedy +1807,"Cool, Dry Place, A (1998)",Drama +1809,Fireworks (Hana-bi) (1997),Crime|Drama +1810,Primary Colors (1998),Comedy|Drama +1811,"Niagara, Niagara (1997)",Drama +1812,Wide Awake (1998),Children|Comedy|Drama +1814,"Price Above Rubies, A (1998)",Drama +1815,Eden (1997),Drama +1816,Two Girls and a Guy (1997),Comedy|Drama +1817,No Looking Back (1998),Drama|Romance +1819,Storefront Hitchcock (1997),Documentary|Musical +1820,"Proposition, The (1998)",Drama|Romance +1821,"Object of My Affection, The (1998)",Comedy|Romance +1822,Meet the Deedles (1998),Children|Comedy +1824,Homegrown (1998),Comedy|Thriller +1825,The Players Club (1998),Comedy|Drama +1826,Barney's Great Adventure (1998),Adventure|Children +1827,"Big One, The (1997)",Comedy|Documentary +1829,Chinese Box (1997),Drama|Romance +1830,Follow the Bitch (1996),Comedy +1831,Lost in Space (1998),Action|Adventure|Sci-Fi +1832,Heaven's Burning (1997),Action|Drama +1833,Mercury Rising (1998),Action|Drama|Thriller +1834,"Spanish Prisoner, The (1997)",Crime|Drama|Mystery|Thriller +1835,City of Angels (1998),Drama|Fantasy|Romance +1836,"Last Days of Disco, The (1998)",Comedy|Drama +1837,"Odd Couple II, The (1998)",Comedy +1839,My Giant (1998),Comedy +1840,He Got Game (1998),Drama +1841,"Gingerbread Man, The (1998)",Drama|Thriller +1842,Illtown (1996),Crime|Drama +1843,Slappy and the Stinkers (1998),Children|Comedy +1844,Live Flesh (Carne trémula) (1997),Drama|Romance +1845,Zero Effect (1998),Comedy|Mystery|Thriller +1846,Nil By Mouth (1997),Drama +1847,Ratchet (1996),Drama|Thriller +1848,"Borrowers, The (1997)",Adventure|Children|Comedy|Fantasy +1849,Prince Valiant (1997),Adventure +1850,"I Love You, Don't Touch Me! (1998)",Drama|Romance +1851,Leather Jacket Love Story (1997),Drama|Romance +1852,Love Walked In (1998),Drama|Thriller +1853,"Alan Smithee Film: Burn Hollywood Burn, An (1997)",Comedy +1854,Kissing a Fool (1998),Comedy|Romance +1855,Krippendorf's Tribe (1998),Comedy +1856,Kurt & Courtney (1998),Documentary +1857,"Real Blonde, The (1997)",Comedy +1858,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy +1859,Taste of Cherry (Ta'm e guilass) (1997),Drama +1860,Character (Karakter) (1997),Drama +1861,Junk Mail (Budbringeren) (1997),Comedy|Thriller +1862,Species II (1998),Horror|Sci-Fi +1863,Major League: Back to the Minors (1998),Comedy +1864,Sour Grapes (1998),Comedy +1865,Wild Man Blues (1997),Documentary +1866,"Big Hit, The (1998)",Action|Comedy|Crime +1867,Tarzan and the Lost City (1998),Action|Adventure +1869,Black Dog (1998),Action|Thriller +1870,"Dancer, Texas Pop. 81 (1998)",Comedy|Drama +1871,"Friend of the Deceased, A (Priyatel pokonika) (1997)",Comedy|Drama +1872,Go Now (1995),Drama +1873,"Misérables, Les (1998)",Crime|Drama|Romance|War +1874,Still Breathing (1997),Comedy|Romance +1875,Clockwatchers (1997),Comedy +1876,Deep Impact (1998),Drama|Sci-Fi|Thriller +1877,Little Men (1998),Drama +1878,Woo (1998),Comedy|Romance +1879,"Hanging Garden, The (1997)",Drama|Romance +1880,Lawn Dogs (1997),Drama +1881,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical +1882,Godzilla (1998),Action|Sci-Fi|Thriller +1883,Bulworth (1998),Comedy|Drama|Romance +1884,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama +1885,"Opposite of Sex, The (1998)",Comedy|Drama|Romance +1886,I Got the Hook Up (1998),Comedy +1887,Almost Heroes (1998),Adventure|Comedy|Western +1888,Hope Floats (1998),Comedy|Drama|Romance +1889,Insomnia (1997),Drama|Mystery|Thriller +1890,Little Boy Blue (1997),Drama +1891,"Ugly, The (1997)",Horror|Thriller +1892,"Perfect Murder, A (1998)",Thriller +1893,Beyond Silence (Jenseits der Stille) (1996),Drama +1894,Six Days Seven Nights (1998),Adventure|Comedy|Romance +1895,Can't Hardly Wait (1998),Comedy|Drama|Romance +1896,Cousin Bette (1998),Comedy +1897,High Art (1998),Drama|Romance +1898,"Land Girls, The (1998)",Drama|War +1899,Passion in the Desert (1998),Adventure|Drama +1900,"Children of Heaven, The (Bacheha-Ye Aseman) (1997)",Comedy|Drama +1901,Dear Jesse (1997),Documentary +1902,Dream for an Insomniac (1996),Drama|Romance +1903,Hav Plenty (1997),Comedy +1904,Henry Fool (1997),Comedy|Drama +1905,Marie from the Bay of Angels (Marie Baie Des Anges) (1997),Drama +1906,Mr. Jealousy (1997),Comedy|Romance +1907,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance +1908,Resurrection Man (1998),Drama|Thriller +1909,"X-Files: Fight the Future, The (1998)",Action|Crime|Mystery|Sci-Fi|Thriller +1910,I Went Down (1997),Comedy|Crime|Drama +1911,Dr. Dolittle (1998),Comedy +1912,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller +1913,Picnic at Hanging Rock (1975),Drama|Mystery +1914,Smoke Signals (1998),Comedy|Drama +1915,Voyage to the Beginning of the World (Viagem ao Princípio do Mundo) (1997),Drama +1916,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance +1917,Armageddon (1998),Action|Romance|Sci-Fi|Thriller +1918,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller +1919,Madeline (1998),Children|Comedy +1920,Small Soldiers (1998),Animation|Children|Fantasy|War +1921,Pi (1998),Drama|Sci-Fi|Thriller +1922,Whatever (1998),Drama +1923,There's Something About Mary (1998),Comedy|Romance +1924,Plan 9 from Outer Space (1959),Horror|Sci-Fi +1925,Wings (1927),Action|Drama|Romance|War +1926,"Broadway Melody, The (1929)",Musical +1927,All Quiet on the Western Front (1930),Action|Drama|War +1928,Cimarron (1931),Drama|Western +1929,Grand Hotel (1932),Drama|Romance +1930,Cavalcade (1933),Drama|Romance|War +1931,Mutiny on the Bounty (1935),Adventure|Drama +1932,"Great Ziegfeld, The (1936)",Drama|Musical +1933,"Life of Emile Zola, The (1937)",Drama +1934,You Can't Take It with You (1938),Comedy|Romance +1935,How Green Was My Valley (1941),Drama|Musical|Romance +1936,Mrs. Miniver (1942),Drama|War +1937,Going My Way (1944),Comedy|Drama|Musical +1938,"Lost Weekend, The (1945)",Drama +1939,"Best Years of Our Lives, The (1946)",Drama|War +1940,Gentleman's Agreement (1947),Drama +1941,Hamlet (1948),Drama +1942,All the King's Men (1949),Drama +1943,"Greatest Show on Earth, The (1952)",Drama +1944,From Here to Eternity (1953),Drama|Romance|War +1945,On the Waterfront (1954),Crime|Drama +1946,Marty (1955),Drama|Romance +1947,West Side Story (1961),Drama|Musical|Romance +1948,Tom Jones (1963),Adventure|Comedy|Romance +1949,"Man for All Seasons, A (1966)",Drama +1950,In the Heat of the Night (1967),Drama|Mystery +1951,Oliver! (1968),Drama|Musical +1952,Midnight Cowboy (1969),Drama +1953,"French Connection, The (1971)",Action|Crime|Thriller +1954,Rocky (1976),Drama +1955,Kramer vs. Kramer (1979),Drama +1956,Ordinary People (1980),Drama +1957,Chariots of Fire (1981),Drama +1958,Terms of Endearment (1983),Comedy|Drama +1959,Out of Africa (1985),Drama|Romance +1960,"Last Emperor, The (1987)",Drama +1961,Rain Man (1988),Drama +1962,Driving Miss Daisy (1989),Drama +1963,Take the Money and Run (1969),Comedy|Crime +1964,Klute (1971),Drama|Mystery +1965,Repo Man (1984),Comedy|Sci-Fi +1966,Metropolitan (1990),Comedy +1967,Labyrinth (1986),Adventure|Fantasy|Musical +1968,"Breakfast Club, The (1985)",Comedy|Drama +1969,"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)",Horror +1970,"Nightmare on Elm Street 3: Dream Warriors, A (1987)",Horror|Thriller +1971,"Nightmare on Elm Street 4: The Dream Master, A (1988)",Horror|Thriller +1972,"Nightmare on Elm Street 5: The Dream Child, A (1989)",Horror +1973,"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)",Horror +1974,Friday the 13th (1980),Horror|Mystery|Thriller +1975,Friday the 13th Part 2 (1981),Horror +1976,Friday the 13th Part 3: 3D (1982),Horror +1977,Friday the 13th Part IV: The Final Chapter (1984),Horror +1978,Friday the 13th Part V: A New Beginning (1985),Horror +1979,Friday the 13th Part VI: Jason Lives (1986),Horror +1980,Friday the 13th Part VII: The New Blood (1988),Horror +1981,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror +1982,Halloween (1978),Horror +1983,Halloween II (1981),Horror +1984,Halloween III: Season of the Witch (1982),Horror +1985,Halloween 4: The Return of Michael Myers (1988),Horror +1986,Halloween 5: The Revenge of Michael Myers (1989),Horror +1987,Prom Night (1980),Horror +1988,Prom Night II (1987),Horror|Thriller +1989,Prom Night III: The Last Kiss (1989),Horror +1990,Prom Night IV: Deliver Us From Evil (1992),Horror +1991,Child's Play (1988),Horror|Thriller +1992,Child's Play 2 (1990),Horror|Thriller +1993,Child's Play 3 (1991),Comedy|Horror|Thriller +1994,Poltergeist (1982),Horror|Thriller +1995,Poltergeist II: The Other Side (1986),Horror|Thriller +1996,Poltergeist III (1988),Horror|Thriller +1997,"Exorcist, The (1973)",Horror|Mystery +1998,Exorcist II: The Heretic (1977),Horror +1999,"Exorcist III, The (1990)",Horror +2000,Lethal Weapon (1987),Action|Comedy|Crime|Drama +2001,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama +2002,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama +2003,Gremlins (1984),Comedy|Horror +2004,Gremlins 2: The New Batch (1990),Comedy|Horror +2005,"Goonies, The (1985)",Action|Adventure|Children|Comedy|Fantasy +2006,"Mask of Zorro, The (1998)",Action|Comedy|Romance +2007,Polish Wedding (1998),Comedy +2008,"This World, Then the Fireworks (1997)",Crime|Drama|Film-Noir +2009,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller +2010,Metropolis (1927),Drama|Sci-Fi +2011,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi +2012,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western +2013,"Poseidon Adventure, The (1972)",Action|Adventure|Drama +2014,Freaky Friday (1977),Children|Comedy|Fantasy +2015,"Absent-Minded Professor, The (1961)",Children|Comedy|Fantasy +2016,"Apple Dumpling Gang Rides Again, The (1979)",Children|Comedy|Western +2017,Babes in Toyland (1961),Children|Fantasy|Musical +2018,Bambi (1942),Animation|Children|Drama +2019,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama +2020,Dangerous Liaisons (1988),Drama|Romance +2021,Dune (1984),Adventure|Sci-Fi +2022,"Last Temptation of Christ, The (1988)",Drama +2023,"Godfather: Part III, The (1990)",Crime|Drama|Mystery|Thriller +2024,"Rapture, The (1991)",Drama|Mystery +2025,Lolita (1997),Drama|Romance +2026,Disturbing Behavior (1998),Horror|Thriller +2027,Jane Austen's Mafia! (1998),Comedy|Crime +2028,Saving Private Ryan (1998),Action|Drama|War +2029,Billy's Hollywood Screen Kiss (1997),Comedy|Romance +2030,East Palace West Palace (Dong gong xi gong) (1997),Drama +2031,"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)",Children|Comedy +2032,"Barefoot Executive, The (1971)",Children|Comedy +2033,"Black Cauldron, The (1985)",Adventure|Animation|Children|Fantasy +2034,"Black Hole, The (1979)",Children|Sci-Fi +2035,Blackbeard's Ghost (1968),Children|Comedy +2036,Blank Check (1994),Children|Comedy +2037,Candleshoe (1977),Adventure|Children|Comedy +2038,"Cat from Outer Space, The (1978)",Children|Comedy|Sci-Fi +2039,Cheetah (1989),Adventure|Children +2040,"Computer Wore Tennis Shoes, The (1969)",Children|Comedy +2041,Condorman (1981),Action|Adventure|Children|Comedy +2042,D2: The Mighty Ducks (1994),Children|Comedy +2043,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy +2044,"Devil and Max Devlin, The (1981)",Comedy|Fantasy +2045,"Far Off Place, A (1993)",Adventure|Children|Drama|Romance +2046,Flight of the Navigator (1986),Adventure|Children|Sci-Fi +2047,"Gnome-Mobile, The (1967)",Adventure|Children|Fantasy|Musical +2048,"Great Mouse Detective, The (1986)",Action|Animation|Children|Crime +2049,"Happiest Millionaire, The (1967)",Comedy|Musical +2050,Herbie Goes Bananas (1980),Adventure|Children|Comedy +2051,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy +2052,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror +2053,"Honey, I Blew Up the Kid (1992)",Children|Comedy|Sci-Fi +2054,"Honey, I Shrunk the Kids (1989)",Adventure|Children|Comedy|Fantasy|Sci-Fi +2055,Hot Lead and Cold Feet (1978),Action|Comedy|Western +2056,In Search of the Castaways (1962),Adventure|Children +2057,"Incredible Journey, The (1963)",Adventure|Children +2058,"Negotiator, The (1998)",Action|Crime|Drama|Mystery|Thriller +2059,"Parent Trap, The (1998)",Children|Comedy|Romance +2060,BASEketball (1998),Comedy +2061,Full Tilt Boogie (1997),Documentary +2062,"Governess, The (1998)",Drama|Romance +2063,"Seventh Heaven (Septième ciel, Le) (1997)",Drama|Romance +2064,Roger & Me (1989),Documentary +2065,"Purple Rose of Cairo, The (1985)",Comedy|Drama|Fantasy|Romance +2066,Out of the Past (1947),Film-Noir +2067,Doctor Zhivago (1965),Drama|Romance|War +2068,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery +2069,"Trip to Bountiful, The (1985)",Drama +2070,Tender Mercies (1983),Drama|Romance|Western +2071,And the Band Played On (1993),Drama +2072,"'burbs, The (1989)",Comedy +2073,Fandango (1985),Comedy +2074,"Night Porter, The (Portiere di notte, Il) (1974)",Crime|Drama|Romance +2075,Mephisto (1981),Drama|War +2076,Blue Velvet (1986),Drama|Mystery|Thriller +2077,"Journey of Natty Gann, The (1985)",Adventure|Children +2078,"Jungle Book, The (1967)",Animation|Children|Comedy|Musical +2079,Kidnapped (1960),Adventure|Children|Drama +2080,Lady and the Tramp (1955),Animation|Children|Comedy|Romance +2081,"Little Mermaid, The (1989)",Animation|Children|Comedy|Musical|Romance +2082,"Mighty Ducks, The (1992)",Children|Comedy +2083,"Muppet Christmas Carol, The (1992)",Children|Comedy|Musical +2084,Newsies (1992),Children|Musical +2085,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children +2086,One Magic Christmas (1985),Drama|Fantasy +2087,Peter Pan (1953),Animation|Children|Fantasy|Musical +2088,Popeye (1980),Adventure|Comedy|Musical +2089,"Rescuers Down Under, The (1990)",Adventure|Animation|Children +2090,"Rescuers, The (1977)",Adventure|Animation|Children|Crime|Drama +2091,Return from Witch Mountain (1978),Children|Sci-Fi +2092,"Return of Jafar, The (1994)",Adventure|Animation|Children|Fantasy|Musical|Romance +2093,Return to Oz (1985),Adventure|Children|Fantasy +2094,"Rocketeer, The (1991)",Action|Adventure|Sci-Fi +2095,"Shaggy D.A., The (1976)",Children|Comedy +2096,Sleeping Beauty (1959),Animation|Children|Musical +2097,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller +2098,Son of Flubber (1963),Children|Comedy +2099,Song of the South (1946),Adventure|Animation|Children|Musical +2100,Splash (1984),Comedy|Fantasy|Romance +2101,Squanto: A Warrior's Tale (1994),Adventure|Drama +2102,Steamboat Willie (1928),Animation|Children|Comedy|Musical +2103,Tall Tale (1995),Adventure|Children|Fantasy|Western +2104,Tex (1982),Drama +2105,Tron (1982),Action|Adventure|Sci-Fi +2106,Swing Kids (1993),Drama|War +2107,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller +2108,L.A. Story (1991),Comedy|Romance +2109,"Jerk, The (1979)",Comedy +2110,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller +2111,"Man with Two Brains, The (1983)",Comedy +2112,Grand Canyon (1991),Crime|Drama +2113,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller +2114,"Outsiders, The (1983)",Drama +2115,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy +2116,"Lord of the Rings, The (1978)",Adventure|Animation|Children|Fantasy +2117,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi +2118,"Dead Zone, The (1983)",Thriller +2119,Maximum Overdrive (1986),Horror +2120,Needful Things (1993),Drama|Horror +2121,Cujo (1983),Horror|Thriller +2122,Children of the Corn (1984),Horror|Thriller +2123,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy +2124,"Addams Family, The (1991)",Children|Comedy|Fantasy +2125,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance +2126,Snake Eyes (1998),Action|Crime|Mystery|Thriller +2127,"First Love, Last Rites (1997)",Drama|Romance +2128,Safe Men (1998),Comedy +2129,"Saltmen of Tibet, The (Salzmänner von Tibet, Die) (1997)",Documentary +2130,Atlantic City (1980),Crime|Drama|Romance +2131,Autumn Sonata (Höstsonaten) (1978),Drama +2132,Who's Afraid of Virginia Woolf? (1966),Drama +2133,Adventures in Babysitting (1987),Adventure|Comedy +2134,Weird Science (1985),Comedy|Fantasy|Sci-Fi +2135,Doctor Dolittle (1967),Adventure|Children|Musical +2136,"Nutty Professor, The (1963)",Comedy|Sci-Fi +2137,Charlotte's Web (1973),Animation|Children +2138,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy +2139,"Secret of NIMH, The (1982)",Adventure|Animation|Children|Drama +2140,"Dark Crystal, The (1982)",Adventure|Fantasy +2141,"American Tail, An (1986)",Adventure|Animation|Children|Comedy +2142,"American Tail: Fievel Goes West, An (1991)",Adventure|Animation|Children|Musical|Western +2143,Legend (1985),Adventure|Fantasy|Romance +2144,Sixteen Candles (1984),Comedy|Romance +2145,Pretty in Pink (1986),Comedy|Drama|Romance +2146,St. Elmo's Fire (1985),Drama|Romance +2147,"Clan of the Cave Bear, The (1986)",Adventure|Drama|Fantasy +2148,House (1986),Comedy|Fantasy|Horror +2149,House II: The Second Story (1987),Comedy|Fantasy|Horror +2150,"Gods Must Be Crazy, The (1980)",Adventure|Comedy +2151,"Gods Must Be Crazy II, The (1989)",Comedy +2152,Air Bud: Golden Receiver (1998),Children|Comedy +2153,"Avengers, The (1998)",Action|Adventure +2154,How Stella Got Her Groove Back (1998),Drama|Romance +2155,"Slums of Beverly Hills, The (1998)",Comedy|Drama +2156,"Best Man, The (Testimone dello sposo, Il) (1998)",Comedy|Drama|Romance +2157,"Chambermaid on the Titanic, The (Femme de chambre du Titanic, La) (1998)",Romance +2158,"Henry: Portrait of a Serial Killer, Part 2 (1998)",Crime|Horror +2159,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller +2160,Rosemary's Baby (1968),Drama|Horror|Thriller +2161,"NeverEnding Story, The (1984)",Adventure|Children|Fantasy +2162,"NeverEnding Story II: The Next Chapter, The (1990)",Adventure|Children|Fantasy +2163,Attack of the Killer Tomatoes! (1978),Comedy|Horror +2164,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror +2165,Your Friends and Neighbors (1998),Comedy|Drama +2166,Return to Paradise (1998),Crime|Drama|Romance|Thriller +2167,Blade (1998),Action|Horror|Thriller +2168,Dance with Me (1998),Drama|Romance +2169,Dead Man on Campus (1998),Comedy +2170,Wrongfully Accused (1998),Action|Comedy +2171,Next Stop Wonderland (1998),Comedy|Drama|Romance +2172,"Strike! (a.k.a. All I Wanna Do, The Hairy Bird) (1998)",Comedy|Drama +2173,"Navigator: A Mediaeval Odyssey, The (1988)",Adventure|Fantasy|Sci-Fi +2174,Beetlejuice (1988),Comedy|Fantasy +2175,Déjà Vu (1997),Drama|Romance +2176,Rope (1948),Crime|Drama|Thriller +2177,Family Plot (1976),Comedy|Thriller +2178,Frenzy (1972),Thriller +2179,Topaz (1969),Thriller +2180,Torn Curtain (1966),Thriller +2181,Marnie (1964),Drama|Mystery|Romance|Thriller +2182,"Wrong Man, The (1956)",Drama|Film-Noir|Thriller +2183,"Man Who Knew Too Much, The (1956)",Adventure|Drama|Mystery|Thriller +2184,"Trouble with Harry, The (1955)",Comedy|Mystery +2185,I Confess (1953),Thriller +2186,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller +2187,Stage Fright (1950),Mystery|Romance|Thriller +2188,54 (1998),Drama +2189,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi +2190,Why Do Fools Fall In Love? (1998),Drama +2191,"Merry War, A (1997)",Comedy +2192,See the Sea (1997),Thriller +2193,Willow (1988),Action|Adventure|Fantasy +2194,"Untouchables, The (1987)",Action|Crime|Drama +2195,Dirty Work (1998),Comedy +2196,Knock Off (1998),Action +2197,Firelight (1997),Drama +2198,Modulations (1998),Documentary +2199,Phoenix (1998),Crime|Drama +2200,Under Capricorn (1949),Drama +2201,"Paradine Case, The (1947)",Drama +2202,Lifeboat (1944),Drama|War +2203,Shadow of a Doubt (1943),Crime|Drama|Thriller +2204,Saboteur (1942),Mystery|Thriller +2205,Mr. & Mrs. Smith (1941),Comedy|Romance +2206,Suspicion (1941),Film-Noir|Mystery|Thriller +2207,Jamaica Inn (1939),Drama +2208,"Lady Vanishes, The (1938)",Drama|Mystery|Thriller +2209,Young and Innocent (1937),Crime|Thriller +2210,Sabotage (1936),Thriller +2211,Secret Agent (1936),Thriller +2212,"Man Who Knew Too Much, The (1934)",Drama|Thriller +2213,Waltzes from Vienna (1933),Comedy|Musical +2214,Number Seventeen (a.k.a. Number 17) (1932),Thriller +2215,Rich and Strange (1931),Comedy|Romance +2216,"Skin Game, The (1931)",Drama +2217,Elstree Calling (1930),Comedy|Musical +2218,Juno and the Paycock (1930),Drama +2219,Murder! (1930),Mystery|Thriller +2220,"Manxman, The (1929)",Drama +2221,Blackmail (1929),Drama|Thriller +2222,Champagne (1928),Comedy +2223,"Farmer's Wife, The (1928)",Comedy +2224,Downhill (1927),Drama +2225,Easy Virtue (1928),Drama +2226,"Ring, The (1927)",Drama +2227,"Lodger: A Story of the London Fog, The (1927)",Crime|Drama|Thriller +2229,"Pleasure Garden, The (1925)",Drama +2230,Always Tell Your Wife (1914),Comedy +2231,Rounders (1998),Drama +2232,Cube (1997),Horror|Mystery|Sci-Fi|Thriller +2233,Digging to China (1998),Drama +2234,Let's Talk About Sex (1998),Drama +2235,One Man's Hero (1999),Drama|War +2236,Simon Birch (1998),Drama +2237,Without Limits (1998),Drama +2238,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama +2239,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama +2240,My Bodyguard (1980),Drama +2241,Class (1983),Comedy +2242,"Grandview, U.S.A. (1984)",Drama +2243,Broadcast News (1987),Comedy|Drama|Romance +2244,"Allnighter, The (1987)",Comedy|Romance +2245,Working Girl (1988),Comedy|Drama|Romance +2246,Stars and Bars (1988),Action|Comedy|Romance +2247,Married to the Mob (1988),Comedy +2248,Say Anything... (1989),Comedy|Drama|Romance +2249,My Blue Heaven (1990),Comedy +2250,Men Don't Leave (1990),Drama +2251,"Cabinet of Dr. Ramirez, The (1991)",Comedy +2252,Hero (1992),Comedy|Drama +2253,Toys (1992),Comedy|Fantasy +2254,Choices (1981),Drama +2255,Young Doctors in Love (1982),Comedy +2256,Parasite (1982),Horror|Sci-Fi +2257,No Small Affair (1984),Comedy|Romance +2258,"Master, The (1984)",Action +2259,Blame It on Rio (1984),Comedy|Romance +2260,Wisdom (1986),Crime|Drama +2261,One Crazy Summer (1986),Comedy +2262,About Last Night... (1986),Comedy|Drama|Romance +2263,"Seventh Sign, The (1988)",Drama|Fantasy|Thriller +2264,We're No Angels (1989),Comedy|Crime +2265,Nothing But Trouble (1991),Adventure|Comedy +2266,"Butcher's Wife, The (1991)",Comedy|Romance +2267,Mortal Thoughts (1991),Mystery|Thriller +2268,"Few Good Men, A (1992)",Crime|Drama|Thriller +2269,Indecent Proposal (1993),Drama|Romance +2270,"Century of Cinema, A (1994)",Documentary +2271,Permanent Midnight (1998),Drama +2272,One True Thing (1998),Drama +2273,Rush Hour (1998),Action|Comedy|Crime|Thriller +2274,Lilian's Story (1995),Drama +2275,Six-String Samurai (1998),Action|Adventure|Sci-Fi +2276,"Soldier's Daughter Never Cries, A (1998)",Drama +2277,Somewhere in the City (1998),Comedy|Drama +2278,Ronin (1998),Action|Crime|Thriller +2279,Urban Legend (1998),Horror|Thriller +2280,Clay Pigeons (1998),Crime +2281,Monument Ave. (1998),Action|Crime|Drama +2282,Pecker (1998),Comedy|Drama +2283,"Sheltering Sky, The (1990)",Drama +2284,Bandit Queen (1994),Drama +2285,If.... (1968),Drama +2286,"Fiendish Plot of Dr. Fu Manchu, The (1980)",Comedy +2287,Them! (1954),Horror|Sci-Fi|Thriller +2288,"Thing, The (1982)",Action|Horror|Sci-Fi|Thriller +2289,"Player, The (1992)",Comedy|Crime|Drama +2290,Stardust Memories (1980),Comedy|Drama +2291,Edward Scissorhands (1990),Drama|Fantasy|Romance +2292,Overnight Delivery (1998),Comedy|Romance +2293,Shadrach (1998),Drama +2294,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy +2295,"Impostors, The (1998)",Comedy +2296,"Night at the Roxbury, A (1998)",Comedy +2297,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance +2298,Strangeland (1998),Thriller +2299,"Battle of the Sexes, The (1959)",Comedy +2300,"Producers, The (1968)",Comedy +2301,History of the World: Part I (1981),Comedy|Musical +2302,My Cousin Vinny (1992),Comedy +2303,Nashville (1975),Drama|Musical +2304,Love Is the Devil (1998),Drama +2305,Slam (1998),Drama +2306,Holy Man (1998),Comedy +2307,One Tough Cop (1998),Action|Crime +2308,Detroit 9000 (1973),Action|Crime +2309,"Inheritors, The (Siebtelbauern, Die) (1998)",Drama|Mystery +2310,"Mighty, The (1998)",Drama +2311,2010: The Year We Make Contact (1984),Sci-Fi +2312,Children of a Lesser God (1986),Drama +2313,"Elephant Man, The (1980)",Drama +2314,Beloved (1998),Drama +2315,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller +2316,Practical Magic (1998),Drama|Fantasy|Mystery|Romance +2317,"Alarmist, The (a.k.a. Life During Wartime) (1997)",Comedy +2318,Happiness (1998),Comedy|Drama +2319,Reach the Rock (1998),Comedy|Drama +2320,Apt Pupil (1998),Drama|Thriller +2321,Pleasantville (1998),Comedy|Drama|Fantasy +2322,Soldier (1998),Action|Sci-Fi|War +2323,"Cruise, The (1998)",Documentary +2324,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War +2325,Orgazmo (1997),Comedy +2326,Shattered Image (1998),Drama|Thriller +2327,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller +2328,Vampires (1998),Horror|Western +2329,American History X (1998),Crime|Drama +2330,Hands on a Hard Body (1996),Comedy|Documentary +2331,Living Out Loud (1998),Comedy|Drama|Romance +2332,Belly (1998),Crime|Drama +2333,Gods and Monsters (1998),Drama +2334,"Siege, The (1998)",Action|Thriller +2335,"Waterboy, The (1998)",Comedy +2336,Elizabeth (1998),Drama +2337,Velvet Goldmine (1998),Drama +2338,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller +2339,I'll Be Home For Christmas (1998),Comedy|Romance +2340,Meet Joe Black (1998),Romance +2341,Dancing at Lughnasa (1998),Drama +2342,Hard Core Logo (1996),Comedy|Drama +2343,"Naked Man, The (1998)",Drama +2344,Runaway Train (1985),Action|Adventure|Drama|Thriller +2345,Desert Bloom (1986),Drama +2346,"Stepford Wives, The (1975)",Mystery|Sci-Fi|Thriller +2347,"Pope of Greenwich Village, The (1984)",Drama +2348,Sid and Nancy (1986),Drama +2349,Mona Lisa (1986),Comedy|Thriller +2350,Heart Condition (1990),Comedy +2351,"Nights of Cabiria (Notti di Cabiria, Le) (1957)",Drama +2352,"Big Chill, The (1983)",Comedy|Drama +2353,Enemy of the State (1998),Action|Thriller +2354,"Rugrats Movie, The (1998)",Animation|Children|Comedy +2355,"Bug's Life, A (1998)",Adventure|Animation|Children|Comedy +2356,Celebrity (1998),Comedy +2357,Central Station (Central do Brasil) (1998),Drama +2358,Savior (1998),Drama|War +2359,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy +2360,"Celebration, The (Festen) (1998)",Drama +2361,Pink Flamingos (1972),Comedy +2362,Glen or Glenda (1953),Drama +2363,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi +2364,"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)",Action|Horror|Sci-Fi|Thriller +2365,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi +2366,King Kong (1933),Action|Adventure|Fantasy|Horror +2367,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller +2368,King Kong Lives (1986),Adventure|Sci-Fi +2369,Desperately Seeking Susan (1985),Comedy|Drama|Romance +2370,"Emerald Forest, The (1985)",Action|Adventure|Drama +2371,Fletch (1985),Comedy|Crime|Mystery +2372,Fletch Lives (1989),Comedy +2373,Red Sonja (1985),Action|Adventure|Fantasy +2374,Gung Ho (1986),Comedy|Drama +2375,"Money Pit, The (1986)",Comedy +2376,"View to a Kill, A (1985)",Action|Adventure|Thriller +2377,Lifeforce (1985),Horror|Sci-Fi +2378,Police Academy (1984),Comedy|Crime +2379,Police Academy 2: Their First Assignment (1985),Comedy|Crime +2380,Police Academy 3: Back in Training (1986),Comedy|Crime +2381,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime +2382,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime +2383,Police Academy 6: City Under Siege (1989),Comedy|Crime +2384,Babe: Pig in the City (1998),Adventure|Children|Drama +2385,Home Fries (1998),Comedy|Romance +2386,Jerry Springer: Ringmaster (1998),Comedy|Drama +2387,Very Bad Things (1998),Comedy|Crime +2388,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance +2389,Psycho (1998),Crime|Horror|Thriller +2390,Little Voice (1998),Comedy +2391,"Simple Plan, A (1998)",Crime|Drama|Thriller +2392,Jack Frost (1998),Children|Comedy|Drama +2393,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi +2394,"Prince of Egypt, The (1998)",Animation|Musical +2395,Rushmore (1998),Comedy|Drama +2396,Shakespeare in Love (1998),Comedy|Drama|Romance +2397,Mass Appeal (1984),Drama +2398,Miracle on 34th Street (1947),Comedy|Drama +2399,Santa Claus: The Movie (1985),Adventure|Children|Fantasy +2400,Prancer (1989),Children|Drama|Fantasy +2401,Pale Rider (1985),Western +2402,Rambo: First Blood Part II (1985),Action|Adventure|Thriller +2403,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller +2404,Rambo III (1988),Action|Adventure|Thriller|War +2405,"Jewel of the Nile, The (1985)",Action|Adventure|Comedy|Romance +2406,Romancing the Stone (1984),Action|Adventure|Comedy|Romance +2407,Cocoon (1985),Comedy|Sci-Fi +2408,Cocoon: The Return (1988),Comedy|Sci-Fi +2409,Rocky II (1979),Action|Drama +2410,Rocky III (1982),Action|Drama +2411,Rocky IV (1985),Action|Drama +2412,Rocky V (1990),Action|Drama +2413,Clue (1985),Comedy|Crime|Mystery|Thriller +2414,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller +2415,Violets Are Blue... (1986),Drama|Romance +2416,Back to School (1986),Comedy +2417,Heartburn (1986),Comedy|Drama +2418,Nothing in Common (1986),Comedy +2419,Extremities (1986),Drama|Thriller +2420,"Karate Kid, The (1984)",Drama +2421,"Karate Kid, Part II, The (1986)",Action|Adventure|Drama +2422,"Karate Kid, Part III, The (1989)",Action|Adventure|Children|Drama +2423,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy +2424,You've Got Mail (1998),Comedy|Romance +2425,"General, The (1998)",Crime +2426,"Theory of Flight, The (1998)",Comedy|Drama|Romance +2427,"Thin Red Line, The (1998)",Action|Drama|War +2428,"Faculty, The (1998)",Horror|Sci-Fi +2429,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller +2430,Mighty Joe Young (1949),Adventure|Children|Drama +2431,Patch Adams (1998),Comedy|Drama +2432,Stepmom (1998),Drama +2433,"Civil Action, A (1998)",Drama +2434,Down in the Delta (1998),Drama +2435,Hurlyburly (1998),Drama +2436,Tea with Mussolini (1999),Comedy|Drama|War +2437,Wilde (1997),Drama +2438,Outside Ozona (1998),Comedy|Drama|Thriller +2439,Affliction (1997),Drama +2440,Another Day in Paradise (1998),Drama +2441,"Hi-Lo Country, The (1998)",Drama|Romance|Western +2442,Hilary and Jackie (1998),Drama +2443,Playing by Heart (1998),Drama|Romance +2444,24 7: Twenty Four Seven (1997),Comedy|Drama +2445,At First Sight (1999),Drama +2446,In Dreams (1999),Horror|Thriller +2447,Varsity Blues (1999),Comedy|Drama +2448,Virus (1999),Horror|Sci-Fi +2449,"Garbage Pail Kids Movie, The (1987)",Adventure|Children|Comedy +2450,Howard the Duck (1986),Adventure|Comedy|Sci-Fi +2451,"Gate, The (1987)",Horror +2452,"Gate II: Trespassers, The (1990)",Horror +2453,"Boy Who Could Fly, The (1986)",Drama|Fantasy +2454,"Fly, The (1958)",Horror|Mystery|Sci-Fi +2455,"Fly, The (1986)",Drama|Horror|Sci-Fi|Thriller +2456,"Fly II, The (1989)",Horror|Sci-Fi +2457,Running Scared (1986),Action|Comedy +2458,Armed and Dangerous (1986),Comedy|Crime +2459,"Texas Chainsaw Massacre, The (1974)",Horror +2460,"Texas Chainsaw Massacre 2, The (1986)",Horror +2461,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller +2462,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror +2463,Ruthless People (1986),Comedy +2464,Trick or Treat (1986),Horror +2465,Deadly Friend (1986),Horror +2466,Belizaire the Cajun (1986),Drama +2467,"Name of the Rose, The (Name der Rose, Der) (1986)",Crime|Drama|Mystery|Thriller +2468,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller +2469,Peggy Sue Got Married (1986),Comedy|Drama +2470,Crocodile Dundee (1986),Adventure|Comedy +2471,Crocodile Dundee II (1988),Action|Adventure|Comedy +2472,Tough Guys (1986),Comedy +2473,Soul Man (1986),Comedy +2474,"Color of Money, The (1986)",Drama +2475,52 Pick-Up (1986),Action|Mystery|Thriller +2476,Heartbreak Ridge (1986),Action|War +2477,Firewalker (1986),Adventure +2478,¡Three Amigos! (1986),Comedy|Western +2479,Gloria (1999),Drama|Thriller +2480,Dry Cleaning (Nettoyage à sec) (1997),Drama +2481,My Name Is Joe (1998),Drama|Romance +2482,Still Crazy (1998),Comedy|Romance +2483,"Day of the Beast, The (Día de la Bestia, El) (1995)",Adventure|Comedy|Thriller +2484,Tinseltown (1997),Comedy|Crime|Drama +2485,She's All That (1999),Comedy|Romance +2486,"24 Hour Woman, The (1998)",Comedy|Drama +2487,"Blood, Guts, Bullets and Octane (1998)",Action|Comedy +2488,Peeping Tom (1960),Drama|Horror|Thriller +2489,Spanish Fly (1998),Drama +2490,Payback (1999),Action|Thriller +2491,Simply Irresistible (1999),Comedy|Romance +2492,20 Dates (1998),Comedy|Romance +2493,"Harmonists, The (1997)",Drama +2494,"Last Days, The (1998)",Documentary +2495,"Fantastic Planet, The (Planète sauvage, La) (1973)",Animation|Sci-Fi +2496,Blast from the Past (1999),Comedy|Romance +2497,Message in a Bottle (1999),Romance +2498,My Favorite Martian (1999),Comedy|Sci-Fi +2499,God Said 'Ha!' (1998),Comedy +2500,Jawbreaker (1999),Comedy +2501,October Sky (1999),Drama +2502,Office Space (1999),Comedy|Crime +2503,"Apple, The (Sib) (1998)",Drama +2504,200 Cigarettes (1999),Comedy|Drama +2505,8MM (1999),Drama|Mystery|Thriller +2506,"Other Sister, The (1999)",Comedy|Drama|Romance +2507,Breakfast of Champions (1999),Comedy|Sci-Fi +2508,"Breaks, The (1999)",Comedy +2509,Eight Days a Week (1997),Comedy +2510,Just the Ticket (1999),Comedy|Romance +2511,"Long Goodbye, The (1973)",Crime|Film-Noir +2512,"Ballad of Narayama, The (Narayama bushiko) (1983)",Drama +2513,Pet Sematary (1989),Horror +2514,Pet Sematary II (1992),Comedy|Horror +2515,Children of the Corn II: The Final Sacrifice (1993),Horror +2516,Children of the Corn III (1994),Horror +2517,Christine (1983),Horror +2518,Night Shift (1982),Comedy +2519,House on Haunted Hill (1959),Drama|Horror|Thriller +2520,Airport (1970),Drama +2521,Airport 1975 (1974),Action|Drama|Thriller +2522,Airport '77 (1977),Drama +2523,Rollercoaster (1977),Drama|Thriller +2524,"Towering Inferno, The (1974)",Action|Adventure|Drama|Thriller +2525,Alligator (1980),Action|Horror|Sci-Fi +2526,Meteor (1979),Sci-Fi +2527,Westworld (1973),Action|Sci-Fi|Thriller|Western +2528,Logan's Run (1976),Action|Adventure|Sci-Fi +2529,Planet of the Apes (1968),Action|Drama|Sci-Fi +2530,Beneath the Planet of the Apes (1970),Action|Sci-Fi +2531,Battle for the Planet of the Apes (1973),Action|Sci-Fi +2532,Conquest of the Planet of the Apes (1972),Action|Sci-Fi +2533,Escape from the Planet of the Apes (1971),Action|Sci-Fi +2534,Avalanche (1978),Action +2535,Earthquake (1974),Action|Drama|Thriller +2536,"Concorde: Airport '79, The (1979)",Drama +2537,Beyond the Poseidon Adventure (1979),Adventure +2538,Dancemaker (1998),Documentary +2539,Analyze This (1999),Comedy +2540,"Corruptor, The (1999)",Action|Crime|Drama|Thriller +2541,Cruel Intentions (1999),Drama +2542,"Lock, Stock & Two Smoking Barrels (1998)",Comedy|Crime|Thriller +2543,Six Ways to Sunday (1997),Comedy +2544,"School of Flesh, The (École de la chair, L') (1998)",Drama|Romance +2545,Relax... It's Just Sex (1998),Comedy +2546,"Deep End of the Ocean, The (1999)",Drama +2547,Harvest (1998),Drama +2548,"Rage: Carrie 2, The (1999)",Horror +2549,Wing Commander (1999),Action|Sci-Fi +2550,"Haunting, The (1963)",Horror|Thriller +2551,Dead Ringers (1988),Drama|Horror|Thriller +2552,My Boyfriend's Back (1993),Comedy +2553,Village of the Damned (1960),Horror|Sci-Fi|Thriller +2554,Children of the Damned (1963),Horror|Sci-Fi|Thriller +2555,Baby Geniuses (1999),Comedy +2556,Telling You (1998),Comedy|Drama|Romance +2557,I Stand Alone (Seul contre tous) (1998),Drama|Thriller +2558,Forces of Nature (1999),Comedy|Romance +2559,"King and I, The (1999)",Animation|Children +2560,Ravenous (1999),Horror|Thriller +2561,True Crime (1999),Crime|Thriller +2562,Bandits (1997),Drama +2563,Dangerous Beauty (1998),Drama +2564,"Empty Mirror, The (1996)",Drama +2565,"King and I, The (1956)",Drama|Musical|Romance +2566,Doug's 1st Movie (1999),Animation|Children +2567,EDtv (1999),Comedy +2568,"Mod Squad, The (1999)",Action|Crime +2569,Among Giants (1998),Comedy|Drama|Romance +2570,"Walk on the Moon, A (1999)",Drama|Romance +2571,"Matrix, The (1999)",Action|Sci-Fi|Thriller +2572,10 Things I Hate About You (1999),Comedy|Romance +2573,Tango (1998),Drama|Musical +2574,"Out-of-Towners, The (1999)",Comedy +2575,"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)",Drama +2576,"Love, etc. (1996)",Drama +2577,Metroland (1997),Comedy|Drama +2578,"Sticky Fingers of Time, The (1997)",Sci-Fi +2579,Following (1998),Crime|Mystery|Thriller +2580,Go (1999),Comedy|Crime +2581,Never Been Kissed (1999),Comedy|Romance +2582,Twin Dragons (Shuang long hui) (1992),Action|Comedy +2583,Cookie's Fortune (1999),Comedy|Drama +2584,Foolish (1999),Comedy +2585,"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)",Drama|Romance +2586,Goodbye Lover (1999),Comedy|Crime|Thriller +2587,Life (1999),Comedy|Crime|Drama +2588,Cloudland (1998),Animation +2589,Friends & Lovers (1999),Comedy|Drama|Romance +2590,Hideous Kinky (1998),Drama +2591,Jeanne and the Perfect Guy (Jeanne et le garçon formidable) (1998),Comedy|Drama|Romance +2592,"Joyriders, The (1999)",Drama +2593,"Monster, The (Mostro, Il) (1994)",Comedy +2594,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller +2595,Photographer (Fotoamator) (1998),Documentary +2596,SLC Punk! (1998),Comedy|Drama +2597,Lost & Found (1999),Comedy|Romance +2598,Pushing Tin (1999),Comedy +2599,Election (1999),Comedy +2600,eXistenZ (1999),Action|Sci-Fi|Thriller +2601,"Little Bit of Soul, A (1998)",Comedy +2602,Mighty Peking Man (a.k.a. Goliathon) (Xing xing wang) (1977),Action|Adventure|Horror|Sci-Fi +2603,Nô (1998),Drama +2604,Let it Come Down: The Life of Paul Bowles (1998),Documentary +2605,Entrapment (1999),Crime|Thriller +2606,Idle Hands (1999),Comedy|Horror +2607,Get Real (1998),Drama|Romance +2608,Heaven (1998),Thriller +2609,"King of Masks, The (Bian Lian) (1996)",Drama +2610,Three Seasons (1999),Drama +2611,"Winslow Boy, The (1999)",Drama +2612,Mildred Pierce (1945),Drama|Film-Noir +2613,Night of the Comet (1984),Comedy|Horror|Sci-Fi +2614,Chopping Mall (a.k.a. Killbots) (1986),Action|Horror|Sci-Fi +2615,My Science Project (1985),Adventure|Sci-Fi +2616,Dick Tracy (1990),Action|Crime +2617,"Mummy, The (1999)",Action|Adventure|Comedy|Fantasy|Horror|Thriller +2618,"Castle, The (1997)",Comedy +2619,Mascara (1999),Drama +2620,This Is My Father (1998),Drama|Romance +2621,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama +2622,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy +2623,Trippin' (1999),Comedy +2624,After Life (Wandafuru raifu) (1998),Drama|Fantasy +2625,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller +2626,Edge of Seventeen (1998),Comedy|Drama|Romance +2627,Endurance (1999),Documentary|Drama +2628,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi +2629,"Love Letter, The (1999)",Comedy|Romance +2630,Besieged (a.k.a. L' Assedio) (1998),Drama +2631,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller +2632,"Saragossa Manuscript, The (Rekopis znaleziony w Saragossie) (1965)",Adventure|Drama|Mystery +2633,"Mummy, The (1932)",Horror|Romance +2634,"Mummy, The (1959)",Horror +2635,"Mummy's Curse, The (1944)",Horror +2636,"Mummy's Ghost, The (1944)",Horror +2637,"Mummy's Hand, The (1940)",Horror +2638,"Mummy's Tomb, The (1942)",Horror +2639,Mommie Dearest (1981),Drama +2640,Superman (1978),Action|Adventure|Sci-Fi +2641,Superman II (1980),Action|Sci-Fi +2642,Superman III (1983),Action|Adventure|Sci-Fi +2643,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi +2644,Dracula (1931),Horror +2646,House of Dracula (1945),Horror +2647,House of Frankenstein (1944),Horror +2648,Frankenstein (1931),Drama|Horror|Sci-Fi +2649,Son of Frankenstein (1939),Horror +2650,"Ghost of Frankenstein, The (1942)",Horror +2651,Frankenstein Meets the Wolf Man (1943),Horror +2652,"Curse of Frankenstein, The (1957)",Horror +2653,Son of Dracula (1943),Horror +2654,"Wolf Man, The (1941)",Drama|Fantasy|Horror +2655,Howling II: Your Sister Is a Werewolf (1985),Horror +2656,Tarantula (1955),Horror|Sci-Fi +2657,"Rocky Horror Picture Show, The (1975)",Comedy|Horror|Musical|Sci-Fi +2658,"Flying Saucer, The (1950)",Sci-Fi +2659,It Came from Hollywood (1982),Comedy|Documentary +2660,"Thing from Another World, The (1951)",Horror|Sci-Fi +2661,It Came from Outer Space (1953),Sci-Fi +2662,"War of the Worlds, The (1953)",Action|Drama|Sci-Fi +2663,It Came from Beneath the Sea (1955),Sci-Fi +2664,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller +2665,Earth vs. the Flying Saucers (1956),Sci-Fi +2666,It Conquered the World (1956),Sci-Fi +2667,"Mole People, The (1956)",Horror|Sci-Fi +2668,Swamp Thing (1982),Horror|Sci-Fi +2669,Pork Chop Hill (1959),War +2670,Run Silent Run Deep (1958),War +2671,Notting Hill (1999),Comedy|Romance +2672,"Thirteenth Floor, The (1999)",Drama|Sci-Fi|Thriller +2673,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama +2674,"Loss of Sexual Innocence, The (1999)",Drama|Fantasy +2675,"Twice Upon a Yesterday (a.k.a. Man with Rain in His Shoes, The) (1998)",Comedy|Drama|Romance +2676,Instinct (1999),Drama|Thriller +2677,Buena Vista Social Club (1999),Documentary|Musical +2678,Desert Blue (1998),Drama +2679,Finding North (1998),Comedy|Drama|Romance +2680,Floating (1997),Drama +2681,Free Enterprise (1998),Comedy|Romance|Sci-Fi +2682,Limbo (1999),Drama +2683,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy +2684,Promise Her Anything (1999),Comedy|Drama +2685,"Red Dwarf, The (Nain rouge, Le) (1998)",Comedy|Drama +2686,"Red Violin, The (Violon rouge, Le) (1998)",Drama|Mystery +2687,Tarzan (1999),Adventure|Animation|Children|Drama +2688,"General's Daughter, The (1999)",Crime|Drama|Mystery|Thriller +2689,Get Bruce (1999),Documentary +2690,"Ideal Husband, An (1999)",Comedy|Romance +2691,"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)",Drama +2692,Run Lola Run (Lola rennt) (1998),Action|Crime +2693,Trekkies (1997),Documentary +2694,Big Daddy (1999),Comedy +2695,"Boys, The (1998)",Drama +2696,"Dinner Game, The (Dîner de cons, Le) (1998)",Comedy +2697,My Son the Fanatic (1997),Comedy|Drama|Romance +2698,Zone 39 (1997),Sci-Fi +2699,Arachnophobia (1990),Comedy|Horror +2700,"South Park: Bigger, Longer and Uncut (1999)",Animation|Comedy|Musical +2701,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western +2702,Summer of Sam (1999),Drama +2703,Broken Vessels (1998),Drama +2704,"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)",Drama|Romance +2705,"Late August, Early September (Fin août, début septembre) (1998)",Drama +2706,American Pie (1999),Comedy|Romance +2707,Arlington Road (1999),Thriller +2708,"Autumn Tale, An (Conte d'automne) (1998)",Romance +2709,Muppets From Space (1999),Children|Comedy +2710,"Blair Witch Project, The (1999)",Drama|Horror|Thriller +2711,My Life So Far (1999),Drama +2712,Eyes Wide Shut (1999),Drama|Mystery|Thriller +2713,Lake Placid (1999),Horror|Thriller +2714,"Wood, The (1999)",Drama +2715,"Velocity of Gary, The (1998)",Comedy|Romance +2716,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi +2717,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi +2718,Drop Dead Gorgeous (1999),Comedy +2719,"Haunting, The (1999)",Horror|Thriller +2720,Inspector Gadget (1999),Action|Adventure|Children|Comedy +2721,Trick (1999),Comedy|Romance +2722,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller +2723,Mystery Men (1999),Action|Comedy|Fantasy +2724,Runaway Bride (1999),Comedy|Romance +2725,Twin Falls Idaho (1999),Drama +2726,"Killing, The (1956)",Crime|Film-Noir +2727,Killer's Kiss (1955),Crime|Film-Noir +2728,Spartacus (1960),Action|Drama|Romance|War +2729,Lolita (1962),Drama|Romance +2730,Barry Lyndon (1975),Drama|Romance|War +2731,"400 Blows, The (Les quatre cents coups) (1959)",Crime|Drama +2732,Jules and Jim (Jules et Jim) (1961),Drama|Romance +2733,Vibes (1988),Adventure|Comedy|Romance +2734,"Mosquito Coast, The (1986)",Adventure|Drama|Thriller +2735,"Golden Child, The (1986)",Action|Adventure|Comedy|Fantasy|Mystery +2736,Brighton Beach Memoirs (1986),Comedy +2737,Assassination (1987),Action|Drama|Thriller +2738,Crimes of the Heart (1986),Comedy|Drama +2739,"Color Purple, The (1985)",Drama +2740,"Kindred, The (1986)",Horror|Sci-Fi +2741,No Mercy (1986),Action|Crime|Thriller +2742,Ménage (Tenue de soirée) (1986),Comedy|Drama +2743,Native Son (1986),Drama +2744,Otello (1986),Drama +2745,"Mission, The (1986)",Drama +2746,Little Shop of Horrors (1986),Comedy|Horror|Musical +2747,"Little Shop of Horrors, The (1960)",Comedy|Horror +2748,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy +2749,"Morning After, The (1986)",Drama|Mystery +2750,Radio Days (1987),Comedy|Drama +2751,From the Hip (1987),Comedy|Drama +2752,Outrageous Fortune (1987),Comedy|Mystery +2753,"Bedroom Window, The (1987)",Thriller +2754,Deadtime Stories (1987),Horror +2755,Light of Day (1987),Drama +2756,Wanted: Dead or Alive (1987),Action +2757,Frances (1982),Drama +2758,Plenty (1985),Drama +2759,Dick (1999),Comedy +2760,"Gambler, The (Játékos, A) (1997)",Drama +2761,"Iron Giant, The (1999)",Adventure|Animation|Children|Drama|Sci-Fi +2762,"Sixth Sense, The (1999)",Drama|Horror|Mystery +2763,"Thomas Crown Affair, The (1999)",Action|Mystery +2764,"Thomas Crown Affair, The (1968)",Crime|Drama|Romance|Thriller +2765,"Acid House, The (1998)",Comedy|Drama +2766,"Adventures of Sebastian Cole, The (1998)",Comedy|Drama +2767,Illuminata (1998),Comedy +2768,Stiff Upper Lips (1998),Comedy +2769,"Yards, The (2000)",Crime|Drama +2770,Bowfinger (1999),Comedy +2771,Brokedown Palace (1999),Drama +2772,Detroit Rock City (1999),Comedy +2773,Alice and Martin (Alice et Martin) (1998),Drama +2774,Better Than Chocolate (1999),Comedy|Romance +2775,Head On (1998),Drama +2776,"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)",Documentary +2777,Cobra (1925),Drama +2778,Never Talk to Strangers (1995),Crime|Drama|Romance|Thriller +2779,Heaven Can Wait (1978),Comedy +2780,"Raven, The (1963)",Comedy|Horror +2781,"Tingler, The (1959)",Horror +2782,Pit and the Pendulum (1961),Horror +2783,"Tomb of Ligeia, The (1965)",Horror +2784,"Masque of the Red Death, The (1964)",Horror +2785,Tales of Terror (1962),Horror +2786,Haunted Honeymoon (1986),Comedy +2787,Cat's Eye (1985),Horror +2788,Monty Python's And Now for Something Completely Different (1971),Comedy +2789,Damien: Omen II (1978),Horror +2790,"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)",Horror|Thriller +2791,Airplane! (1980),Comedy +2792,Airplane II: The Sequel (1982),Comedy +2793,"American Werewolf in Paris, An (1997)",Comedy|Horror|Romance|Thriller +2794,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance +2795,National Lampoon's Vacation (1983),Comedy +2796,Funny Farm (1988),Comedy +2797,Big (1988),Comedy|Drama|Fantasy|Romance +2798,Problem Child (1990),Children|Comedy +2799,Problem Child 2 (1991),Comedy +2800,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy +2801,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance +2802,Tequila Sunrise (1988),Action|Drama|Romance|Thriller +2803,"Pelican Brief, The (1993)",Crime|Drama|Mystery|Romance|Thriller +2804,"Christmas Story, A (1983)",Children|Comedy +2805,Mickey Blue Eyes (1999),Comedy|Romance +2806,Teaching Mrs. Tingle (1999),Comedy|Thriller +2807,Universal Soldier: The Return (1999),Action|Sci-Fi +2808,Universal Soldier (1992),Action|Sci-Fi +2809,Love Stinks (1999),Comedy +2810,Perfect Blue (1997),Animation|Horror|Mystery|Thriller +2811,With Friends Like These... (1998),Comedy +2812,In Too Deep (1999),Action|Thriller +2813,"Source, The (1999)",Documentary +2814,"Bat, The (1959)",Horror +2815,Iron Eagle (1986),Action|War +2816,Iron Eagle II (1988),Action|War +2817,Aces: Iron Eagle III (1992),Action +2818,Iron Eagle IV (1995),Action|War +2819,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller +2820,Hamlet (1964),Drama +2821,Male and Female (1919),Adventure|Drama +2822,Medicine Man (1992),Adventure|Romance +2823,"Spiders Part 1: The Golden Lake, The (Die Spinnen, 1. Teil: Der Goldene See) (1919)",Action|Adventure|Drama +2824,On the Ropes (1999),Documentary|Drama +2825,Rosie (1998),Drama +2826,"13th Warrior, The (1999)",Action|Adventure|Fantasy +2827,"Astronaut's Wife, The (1999)",Horror|Sci-Fi|Thriller +2828,Dudley Do-Right (1999),Children|Comedy +2829,"Muse, The (1999)",Comedy +2830,Cabaret Balkan (Bure Baruta) (1998),Drama +2831,A Dog of Flanders (1999),Children|Drama +2832,"Lost Son, The (1999)",Drama +2833,Lucie Aubrac (1997),Romance|War +2834,"Very Thought of You, The (1998)",Comedy|Romance +2835,Chill Factor (1999),Action|Adventure|Comedy|Thriller +2836,Outside Providence (1999),Comedy +2837,Bedrooms & Hallways (1998),Comedy|Romance +2838,I Woke Up Early the Day I Died (1998),Comedy|Crime|Thriller +2839,West Beirut (West Beyrouth) (1998),Drama +2840,Stigmata (1999),Drama|Thriller +2841,Stir of Echoes (1999),Horror|Mystery|Thriller +2842,Best Laid Plans (1999),Crime|Drama +2843,"Black Cat, White Cat (Crna macka, beli macor) (1998)",Comedy|Romance +2844,"Minus Man, The (1999)",Drama|Mystery +2845,Whiteboyz (1999),Comedy|Drama +2846,"Adventures of Milo and Otis, The (Koneko monogatari) (1986)",Adventure|Children|Comedy|Drama +2847,Only Angels Have Wings (1939),Adventure|Drama|Romance +2848,"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)",Drama +2849,Queens Logic (1991),Comedy|Drama +2850,Public Access (1993),Drama|Thriller +2851,Saturn 3 (1980),Adventure|Sci-Fi|Thriller +2852,"Soldier's Story, A (1984)",Drama +2853,"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)",Horror|Mystery +2854,Don't Look in the Basement! (1973),Horror +2855,Nightmares (1983),Horror +2856,I Saw What You Did (1965),Thriller +2857,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical +2858,American Beauty (1999),Drama|Romance +2859,Stop Making Sense (1984),Documentary|Musical +2860,Blue Streak (1999),Comedy +2861,For Love of the Game (1999),Comedy|Drama +2862,Caligula (1979),Drama +2863,"Hard Day's Night, A (1964)",Adventure|Comedy|Musical +2864,Splendor (1999),Comedy +2865,Sugar Town (1999),Comedy +2866,"Buddy Holly Story, The (1978)",Drama +2867,Fright Night (1985),Comedy|Horror|Thriller +2868,Fright Night Part II (1988),Horror +2869,"Separation, The (Séparation, La) (1994)",Drama +2870,Barefoot in the Park (1967),Comedy +2871,Deliverance (1972),Adventure|Drama|Thriller +2872,Excalibur (1981),Adventure|Fantasy +2873,Lulu on the Bridge (1998),Drama|Mystery|Romance +2874,"Pajama Game, The (1957)",Comedy|Musical|Romance +2875,Sommersby (1993),Drama|Mystery|Romance +2876,Thumbelina (1994),Animation|Children|Fantasy +2877,Tommy (1975),Musical +2878,Hell Night (1981),Horror +2879,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy +2880,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy +2881,Double Jeopardy (1999),Action|Crime|Drama|Thriller +2882,Jakob the Liar (1999),Drama +2883,Mumford (1999),Comedy|Drama +2884,Dog Park (1998),Comedy|Romance +2885,Guinevere (1999),Drama|Romance +2886,"Adventures of Elmo in Grouchland, The (1999)",Children|Comedy +2887,Simon Sez (1999),Action|Comedy +2888,Drive Me Crazy (1999),Comedy|Romance +2889,"Mystery, Alaska (1999)",Comedy|Drama +2890,Three Kings (1999),Action|Adventure|Comedy|Drama|War +2891,"Happy, Texas (1999)",Comedy +2892,New Rose Hotel (1998),Action|Drama +2893,Plunkett & MaCleane (1999),Action|Adventure|Drama +2894,Romance (1999),Drama|Romance +2895,Napoleon and Samantha (1972),Adventure|Drama +2896,Alvarez Kelly (1966),Western +2897,And the Ship Sails On (E la nave va) (1983),Comedy|War +2898,"Dark Half, The (1993)",Horror|Mystery +2899,Gulliver's Travels (1939),Adventure|Animation|Children +2900,Monkey Shines (1988),Horror|Sci-Fi +2901,Phantasm (1979),Horror|Sci-Fi +2902,Psycho II (1983),Horror|Mystery|Thriller +2903,Psycho III (1986),Horror|Thriller +2904,Rain (1932),Drama +2905,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama +2906,Random Hearts (1999),Drama|Romance +2907,Superstar (1999),Comedy +2908,Boys Don't Cry (1999),Drama +2909,"Five Wives, Three Secretaries and Me (1998)",Documentary +2910,"Ennui, L' (1998)",Drama|Romance +2911,"Grandfather, The (Abuelo, El) (1998)",Drama +2912,"Limey, The (1999)",Crime|Drama|Thriller +2913,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi +2914,Molly (1999),Comedy|Drama +2915,Risky Business (1983),Comedy +2916,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller +2917,Body Heat (1981),Crime|Thriller +2918,Ferris Bueller's Day Off (1986),Comedy +2919,"Year of Living Dangerously, The (1982)",Drama|Romance|War +2920,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance +2921,High Plains Drifter (1973),Western +2922,Hang 'Em High (1968),Crime|Drama|Western +2923,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy +2924,Drunken Master (Jui kuen) (1978),Action|Comedy +2925,"Conformist, The (Conformista, Il) (1970)",Drama +2926,Hairspray (1988),Comedy|Drama +2927,Brief Encounter (1946),Drama|Romance +2928,"Razor's Edge, The (1984)",Drama +2929,Reds (1981),Drama|Romance +2930,Return with Honor (1998),Documentary +2931,Time of the Gypsies (Dom za vesanje) (1989),Comedy|Crime|Drama|Fantasy +2932,Days of Heaven (1978),Drama +2933,"Fire Within, The (Feu follet, Le) (1963)",Drama +2934,"Amor brujo, El (Love Bewitched, A) (1986)",Drama|Musical +2935,"Lady Eve, The (1941)",Comedy|Romance +2936,Sullivan's Travels (1941),Adventure|Comedy|Romance +2937,"Palm Beach Story, The (1942)",Comedy +2938,Man Facing Southeast (1986),Drama|Sci-Fi +2939,Niagara (1953),Drama|Thriller +2940,Gilda (1946),Drama|Film-Noir|Mystery|Romance +2941,South Pacific (1958),Musical|Romance|War +2942,Flashdance (1983),Drama|Romance +2943,Indochine (1992),Drama|Romance +2944,"Dirty Dozen, The (1967)",Action|Drama|War +2945,Mike's Murder (1984),Mystery +2946,Help! (1965),Comedy|Musical +2947,Goldfinger (1964),Action|Adventure|Thriller +2948,From Russia with Love (1963),Action|Adventure|Thriller +2949,Dr. No (1962),Action|Adventure|Thriller +2950,"Blue Lagoon, The (1980)",Adventure|Drama|Romance +2951,"Fistful of Dollars, A (Per un pugno di dollari) (1964)",Action|Western +2952,Sydney (Hard Eight) (1996),Crime|Drama|Thriller +2953,Home Alone 2: Lost in New York (1992),Children|Comedy +2954,Penitentiary (1979),Drama +2955,Penitentiary II (1982),Drama +2956,Someone to Watch Over Me (1987),Action|Crime|Thriller +2957,Sparrows (1926),Drama +2958,Naturally Native (1998),Drama +2959,Fight Club (1999),Action|Crime|Drama|Thriller +2960,Beefcake (1999),Drama +2961,"Story of Us, The (1999)",Comedy|Drama +2962,Fever Pitch (1997),Comedy|Romance +2963,Joe the King (1999),Crime|Drama +2964,Julien Donkey-Boy (1999),Drama +2965,"Omega Code, The (1999)",Action +2966,"Straight Story, The (1999)",Adventure|Drama +2967,"Bad Seed, The (1956)",Drama|Thriller +2968,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi +2969,"Man and a Woman, A (Un homme et une femme) (1966)",Drama|Romance +2970,Fitzcarraldo (1982),Adventure|Drama +2971,All That Jazz (1979),Drama|Fantasy|Musical +2972,Red Sorghum (Hong gao liang) (1987),Drama|War +2973,Crimes and Misdemeanors (1989),Comedy|Crime|Drama +2974,Bats (1999),Horror|Thriller +2975,"Best Man, The (1999)",Comedy|Drama +2976,Bringing Out the Dead (1999),Drama +2977,Crazy in Alabama (1999),Comedy|Drama +2978,Three to Tango (1999),Comedy|Romance +2979,Body Shots (1999),Drama +2980,Men Cry Bullets (1997),Comedy|Drama +2981,"Brother, Can You Spare a Dime? (1975)",Documentary +2982,"Guardian, The (1990)",Horror|Thriller +2983,"Ipcress File, The (1965)",Thriller +2984,On Any Sunday (1971),Documentary +2985,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller +2986,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller +2987,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery +2988,Melvin and Howard (1980),Drama +2989,For Your Eyes Only (1981),Action|Adventure|Thriller +2990,Licence to Kill (1989),Action|Adventure|Thriller +2991,Live and Let Die (1973),Action|Adventure|Thriller +2992,Rawhead Rex (1986),Horror|Thriller +2993,Thunderball (1965),Action|Adventure|Thriller +2994,"City, The (Ciudad, La) (1998)",Drama +2995,House on Haunted Hill (1999),Horror|Thriller +2996,Music of the Heart (1999),Drama +2997,Being John Malkovich (1999),Comedy|Drama|Fantasy +2998,Dreaming of Joseph Lees (1999),Drama|Romance +2999,Man of the Century (1999),Comedy +3000,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy +3001,"Suburbans, The (1999)",Drama +3002,My Best Fiend (Mein liebster Feind) (1999),Documentary +3003,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War +3004,"Bachelor, The (1999)",Comedy|Romance +3005,"Bone Collector, The (1999)",Thriller +3006,"Insider, The (1999)",Drama|Thriller +3007,American Movie (1999),Documentary +3008,Last Night (1998),Drama|Sci-Fi +3009,Portraits Chinois (1996),Drama +3010,Rosetta (1999),Drama +3011,"They Shoot Horses, Don't They? (1969)",Drama +3012,Battling Butler (1926),Comedy +3013,Bride of Re-Animator (1990),Comedy|Horror +3014,Bustin' Loose (1981),Comedy +3015,Coma (1978),Thriller +3016,Creepshow (1982),Horror +3017,Creepshow 2 (1987),Horror +3018,Re-Animator (1985),Comedy|Horror|Sci-Fi +3019,Drugstore Cowboy (1989),Crime|Drama +3020,Falling Down (1993),Action|Drama +3021,"Funhouse, The (1981)",Horror +3022,"General, The (1926)",Comedy|War +3023,My Best Girl (1927),Comedy|Romance +3024,Piranha (1978),Horror|Sci-Fi +3025,Rough Night in Jericho (1967),Western +3026,Slaughterhouse (1987),Comedy|Horror +3028,"Taming of the Shrew, The (1967)",Comedy +3029,Nighthawks (1981),Action|Drama +3030,Yojimbo (1961),Action|Adventure +3031,Repossessed (1990),Comedy +3032,"Omega Man, The (1971)",Action|Drama|Sci-Fi|Thriller +3033,Spaceballs (1987),Comedy|Sci-Fi +3034,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical +3035,Mister Roberts (1955),Comedy|Drama|War +3036,"Quest for Fire (Guerre du feu, La) (1981)",Adventure|Drama +3037,Little Big Man (1970),Western +3038,"Face in the Crowd, A (1957)",Drama +3039,Trading Places (1983),Comedy +3040,Meatballs (1979),Comedy +3041,Meatballs Part II (1984),Comedy +3042,Meatballs III (1987),Comedy +3043,Meatballs 4 (1992),Comedy +3044,Dead Again (1991),Mystery|Romance|Thriller +3045,Peter's Friends (1992),Comedy|Drama +3046,"Incredibly True Adventure of Two Girls in Love, The (1995)",Comedy|Romance +3047,Experience Preferred... But Not Essential (1982),Drama +3048,Under the Rainbow (1981),Comedy +3049,How I Won the War (1967),Comedy|War +3050,Light It Up (1999),Drama +3051,Anywhere But Here (1999),Comedy|Drama +3052,Dogma (1999),Adventure|Comedy|Fantasy +3053,"Messenger: The Story of Joan of Arc, The (1999)",Drama|War +3054,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi +3055,Felicia's Journey (1999),Thriller +3056,Oxygen (1999),Crime|Drama|Thriller +3057,Where's Marlowe? (1998),Comedy +3058,"Ape, The (1940)",Horror|Sci-Fi +3059,British Intelligence (1940),Drama +3060,"Commitments, The (1991)",Comedy|Drama|Musical +3061,Holiday Inn (1942),Comedy|Musical +3062,"Longest Day, The (1962)",Action|Drama|War +3063,Poison Ivy (1992),Drama|Thriller +3064,Poison Ivy: New Seduction (1997),Drama|Thriller +3065,Nothing to Lose (a.k.a. Ten Benny) (1996),Drama +3066,Tora! Tora! Tora! (1970),Action|Drama|War +3067,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama +3068,"Verdict, The (1982)",Drama|Mystery +3069,"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)",Drama +3070,"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)",Adventure|Comedy|Sci-Fi +3071,Stand and Deliver (1988),Comedy|Drama +3072,Moonstruck (1987),Comedy|Romance +3073,"Sandpiper, The (1965)",Drama|Romance +3074,Jeremiah Johnson (1972),Western +3075,Repulsion (1965),Drama|Horror +3076,Irma la Douce (1963),Comedy +3077,42 Up (1998),Documentary +3078,Liberty Heights (1999),Drama +3079,Mansfield Park (1999),Comedy|Drama|Romance +3080,"Goodbye, 20th Century (1998)",Drama|Sci-Fi +3081,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance +3082,"World Is Not Enough, The (1999)",Action|Adventure|Thriller +3083,All About My Mother (Todo sobre mi madre) (1999),Drama +3084,Home Page (1999),Documentary +3085,"Living Dead Girl, The (Morte Vivante, La) (1982)",Horror +3086,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical +3087,Scrooged (1988),Comedy|Fantasy|Romance +3088,Harvey (1950),Comedy|Fantasy +3089,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama +3090,Matewan (1987),Drama +3091,Kagemusha (1980),Drama|War +3092,"47 Samurai (Chûshingura) (Loyal 47 Ronin, The) (1962)",Drama +3093,McCabe & Mrs. Miller (1971),Drama|Western +3094,Maurice (1987),Drama|Romance +3095,"Grapes of Wrath, The (1940)",Drama +3096,My Man Godfrey (1957),Comedy +3097,"Shop Around the Corner, The (1940)",Comedy|Drama|Romance +3098,"Natural, The (1984)",Drama +3099,Shampoo (1975),Comedy|Drama|Romance +3100,"River Runs Through It, A (1992)",Drama +3101,Fatal Attraction (1987),Drama|Thriller +3102,Jagged Edge (1985),Crime|Romance|Thriller +3103,Stanley & Iris (1990),Drama|Romance +3104,Midnight Run (1988),Action|Comedy|Crime|Thriller +3105,Awakenings (1990),Drama|Mystery +3106,Come See the Paradise (1990),Drama|Romance +3107,Backdraft (1991),Action|Drama +3108,"Fisher King, The (1991)",Comedy|Drama|Fantasy|Romance +3109,"River, The (1984)",Drama +3110,Country (1984),Drama +3111,Places in the Heart (1984),Drama +3112,'night Mother (1986),Drama +3113,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller +3114,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy +3115,Flawless (1999),Drama +3116,Miss Julie (1999),Drama +3117,Ride with the Devil (1999),Drama|Romance|War +3118,Tumbleweeds (1999),Drama +3119,Bay of Blood (a.k.a. Twitch of the Death Nerve) (Reazione a catena) (1971),Horror +3120,"Distinguished Gentleman, The (1992)",Comedy +3121,"Hitch-Hiker, The (1953)",Drama|Film-Noir +3122,Santa Fe Trail (1940),Drama|Romance|Western +3123,Lauderdale (a.k.a. Spring Break USA) (a.k.a. Spring Fever USA) (1989),Comedy +3124,Agnes Browne (1999),Comedy|Drama +3125,"End of the Affair, The (1999)",Drama +3126,"End of the Affair, The (1955)",Drama +3127,Holy Smoke (1999),Comedy|Drama +3128,"Map of the World, A (1999)",Drama +3129,Sweet and Lowdown (1999),Comedy|Drama +3130,Bonfire of the Vanities (1990),Comedy|Crime|Drama +3131,Broadway Damage (1997),Comedy +3132,Daddy Long Legs (1919),Comedy|Drama +3133,Go West (1925),Comedy|Western +3134,Grand Illusion (La grande illusion) (1937),Drama|War +3135,"Great Santini, The (1979)",Drama +3136,"James Dean Story, The (1957)",Documentary +3137,"Sea Wolves, The (1980)",Action|War +3138,Stealing Home (1988),Drama +3139,Tarzan the Fearless (1933),Action|Adventure +3140,Three Ages (1923),Comedy +3141,"Two Jakes, The (1990)",Drama +3142,U2: Rattle and Hum (1988),Documentary|Musical +3143,Hell in the Pacific (1968),Drama|War +3144,"Glass Bottom Boat, The (1966)",Comedy|Romance +3145,Cradle Will Rock (1999),Drama +3146,Deuce Bigalow: Male Gigolo (1999),Comedy +3147,"Green Mile, The (1999)",Crime|Drama +3148,"Cider House Rules, The (1999)",Drama +3149,Diamonds (1999),Mystery +3150,"War Zone, The (1999)",Drama|Thriller +3151,"Bat Whispers, The (1930)",Crime|Drama|Mystery +3152,"Last Picture Show, The (1971)",Drama +3153,"7th Voyage of Sinbad, The (1958)",Action|Adventure|Fantasy +3154,Blood on the Sun (1945),Drama|War +3155,Anna and the King (1999),Drama|Romance +3156,Bicentennial Man (1999),Drama|Romance|Sci-Fi +3157,Stuart Little (1999),Children|Comedy|Fantasy +3158,"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)",Drama +3159,Fantasia 2000 (1999),Animation|Children|Musical|IMAX +3160,Magnolia (1999),Drama +3161,Onegin (1999),Drama|Romance +3162,Simpatico (1999),Comedy|Drama +3163,Topsy-Turvy (1999),Comedy|Drama|Musical +3164,"Alley Cats, The (1966)",Drama +3165,Boiling Point (1993),Action|Drama +3166,Brenda Starr (1989),Adventure +3167,Carnal Knowledge (1971),Comedy|Drama +3168,Easy Rider (1969),Adventure|Drama +3169,The Falcon and the Snowman (1985),Crime|Drama|Thriller +3170,Hi-Yo Silver (1940),Western +3171,Room at the Top (1959),Drama +3172,Ulysses (Ulisse) (1954),Adventure +3173,Any Given Sunday (1999),Drama +3174,Man on the Moon (1999),Comedy|Drama +3175,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi +3176,"Talented Mr. Ripley, The (1999)",Drama|Mystery|Thriller +3177,Next Friday (2000),Comedy +3178,"Hurricane, The (1999)",Drama +3179,Angela's Ashes (1999),Drama +3180,Play it to the Bone (1999),Comedy|Drama +3181,Titus (1999),Drama +3182,"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)",Documentary +3183,"Third Miracle, The (1999)",Drama +3184,Montana (1998),Action|Comedy|Crime|Drama +3185,Snow Falling on Cedars (1999),Drama +3186,"Girl, Interrupted (1999)",Drama +3187,Trans (1998),Drama +3188,"Life and Times of Hank Greenberg, The (1998)",Documentary +3189,My Dog Skip (1999),Children|Drama +3190,Supernova (2000),Adventure|Sci-Fi|Thriller +3191,"Quarry, The (1998)",Drama +3192,"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)",Drama +3193,Creature (1999),Documentary +3194,"Way We Were, The (1973)",Drama|Romance +3195,Tess of the Storm Country (1922),Drama +3196,Stalag 17 (1953),Drama|War +3197,"Presidio, The (1988)",Action|Crime|Romance|Thriller +3198,Papillon (1973),Crime|Drama +3199,Pal Joey (1957),Comedy|Drama|Musical|Romance +3200,"Last Detail, The (1973)",Comedy|Drama +3201,Five Easy Pieces (1970),Drama +3202,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror +3203,Dead Calm (1989),Thriller +3204,"Boys from Brazil, The (1978)",Action|Mystery|Thriller +3205,Black Sunday (La maschera del demonio) (1960),Horror +3206,Against All Odds (1984),Romance +3207,"Snows of Kilimanjaro, The (1952)",Adventure +3208,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy +3209,"Loves of Carmen, The (1948)",Drama +3210,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance +3211,"Cry in the Dark, A (1988)",Drama +3212,Born to Win (1971),Drama +3213,Batman: Mask of the Phantasm (1993),Animation|Children +3214,American Flyers (1985),Drama +3215,Voyage of the Damned (1976),Drama +3216,"Vampyros Lesbos (Vampiras, Las) (1971)",Fantasy|Horror|Thriller +3217,"Star Is Born, A (1937)",Drama +3218,Poison (1991),Drama +3219,Pacific Heights (1990),Mystery|Thriller +3220,Night Tide (1961),Drama +3221,"Draughtsman's Contract, The (1982)",Drama +3222,Carmen (1984),Drama +3223,"Zed & Two Noughts, A (1985)",Drama +3224,Woman in the Dunes (Suna no onna) (1964),Drama +3225,Down to You (2000),Comedy|Romance +3226,Hellhounds on My Trail (1999),Documentary +3227,"Not Love, Just Frenzy (Más que amor, frenesí) (1996)",Comedy|Drama|Thriller +3228,Wirey Spindell (2000),Comedy +3229,Another Man's Poison (1952),Crime|Drama +3230,"Odessa File, The (1974)",Thriller +3231,"Saphead, The (1920)",Comedy +3232,Seven Chances (1925),Comedy +3233,Smashing Time (1967),Comedy +3234,Train Ride to Hollywood (1975),Comedy|Fantasy|Musical +3235,Where the Buffalo Roam (1980),Comedy +3236,Zachariah (1971),Comedy|Musical|Western +3237,Kestrel's Eye (Falkens öga) (1998),Documentary +3238,Eye of the Beholder (1999),Thriller +3239,Isn't She Great? (2000),Comedy +3240,"Big Tease, The (1999)",Comedy +3241,"Cup, The (Phörpa) (1999)",Comedy +3242,Santitos (1999),Comedy +3243,Encino Man (1992),Comedy +3244,"Goodbye Girl, The (1977)",Comedy|Romance +3245,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama +3246,Malcolm X (1992),Drama +3247,Sister Act (1992),Comedy|Crime +3248,Sister Act 2: Back in the Habit (1993),Comedy +3249,"Hand That Rocks the Cradle, The (1992)",Drama|Thriller +3250,Alive (1993),Drama +3251,Agnes of God (1985),Drama|Mystery +3252,Scent of a Woman (1992),Drama +3253,Wayne's World (1992),Comedy +3254,Wayne's World 2 (1993),Comedy +3255,"League of Their Own, A (1992)",Comedy|Drama +3256,Patriot Games (1992),Action|Crime|Drama|Thriller +3257,"Bodyguard, The (1992)",Drama|Romance|Thriller +3258,Death Becomes Her (1992),Comedy|Fantasy +3259,Far and Away (1992),Adventure|Drama|Romance +3260,Howards End (1992),Drama +3261,Singles (1992),Comedy|Drama|Romance +3262,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller +3263,White Men Can't Jump (1992),Comedy|Drama +3264,Buffy the Vampire Slayer (1992),Action|Comedy|Horror +3265,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller +3266,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller +3267,"Mariachi, El (1992)",Action|Crime|Thriller|Western +3268,Stop! Or My Mom Will Shoot (1992),Action|Comedy +3269,Forever Young (1992),Drama|Romance|Sci-Fi +3270,"Cutting Edge, The (1992)",Comedy|Drama|Romance +3271,Of Mice and Men (1992),Drama +3272,Bad Lieutenant (1992),Crime|Drama +3273,Scream 3 (2000),Comedy|Horror|Mystery|Thriller +3274,Single White Female (1992),Drama|Thriller +3275,"Boondock Saints, The (2000)",Action|Crime|Drama|Thriller +3276,Gun Shy (2000),Comedy +3277,Beloved/Friend (a.k.a. Amigo/Amado) (Amic/Amat) (1999),Drama +3278,Gendernauts (1999),Documentary +3279,Knockout (2000),Action|Drama +3280,"Baby, The (1973)",Horror +3281,"Brandon Teena Story, The (1998)",Documentary +3282,Different for Girls (1996),Comedy +3283,Minnie and Moskowitz (1971),Action +3284,They Might Be Giants (1971),Comedy|Mystery|Romance +3285,"Beach, The (2000)",Adventure|Drama +3286,Snow Day (2000),Comedy +3287,"Tigger Movie, The (2000)",Animation|Children +3288,Cotton Mary (1999),Drama +3289,Not One Less (Yi ge dou bu neng shao) (1999),Drama +3290,Soft Toilet Seats (1999),Comedy +3291,Trois (2000),Thriller +3292,"Big Combo, The (1955)",Film-Noir +3293,Conceiving Ada (1997),Drama|Sci-Fi +3294,Eaten Alive (1977),Horror +3295,Raining Stones (1993),Drama +3296,To Sir with Love (1967),Drama +3297,With Byrd at the South Pole (1930),Documentary +3298,Boiler Room (2000),Crime|Drama|Thriller +3299,Hanging Up (2000),Comedy|Drama +3300,Pitch Black (2000),Horror|Sci-Fi|Thriller +3301,"Whole Nine Yards, The (2000)",Comedy|Crime +3302,Beautiful People (1999),Comedy +3303,Black Tar Heroin: The Dark End of the Street (2000),Documentary +3304,Blue Collar (1978),Crime|Drama +3305,Bluebeard (1944),Film-Noir|Horror +3306,"Circus, The (1928)",Comedy +3307,City Lights (1931),Comedy|Drama|Romance +3308,"Flamingo Kid, The (1984)",Comedy|Drama +3309,"Dog's Life, A (1918)",Comedy +3310,"Kid, The (1921)",Comedy|Drama +3311,"Man from Laramie, The (1955)",Western +3312,"McCullochs, The (1975)",Drama +3313,Class Reunion (1982),Comedy +3314,"Big Trees, The (1952)",Action|Drama +3315,Happy Go Lovely (1951),Musical +3316,Reindeer Games (2000),Action|Thriller +3317,Wonder Boys (2000),Comedy|Drama +3318,Deterrence (1999),Drama|Thriller +3319,Judy Berlin (1999),Drama +3320,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance +3321,"Waiting Game, The (2000)",Comedy +3322,3 Strikes (2000),Comedy +3323,Chain of Fools (2000),Comedy|Crime +3324,Drowning Mona (2000),Comedy +3325,"Next Best Thing, The (2000)",Comedy|Drama +3326,What Planet Are You From? (2000),Comedy|Sci-Fi +3327,Beyond the Mat (1999),Documentary +3328,Ghost Dog: The Way of the Samurai (1999),Crime|Drama +3329,"Year My Voice Broke, The (1987)",Drama +3330,Splendor in the Grass (1961),Drama|Romance +3331,My Tutor (1983),Drama +3332,"Legend of Lobo, The (1962)",Adventure|Children +3333,"Killing of Sister George, The (1968)",Drama +3334,Key Largo (1948),Crime|Drama|Film-Noir|Thriller +3335,Jail Bait (1954),Crime|Drama +3336,It Happened Here (1966),Drama|Fantasy|War +3337,I'll Never Forget What's'isname (1967),Comedy|Drama +3338,For All Mankind (1989),Documentary +3339,Cross of Iron (1977),War +3340,Bride of the Monster (1955),Horror|Sci-Fi +3341,Born Yesterday (1950),Comedy +3342,Birdy (1984),Drama|War +3343,And God Created Woman (1988),Comedy|Drama|Romance +3344,Blood Feast (1963),Horror +3345,"Charlie, the Lonesome Cougar (1967)",Adventure|Children +3346,Color Me Blood Red (1965),Horror +3347,Never Cry Wolf (1983),Adventure|Drama +3348,The Night Visitor (1971),Crime|Horror|Thriller +3349,"Perils of Pauline, The (1947)",Comedy +3350,"Raisin in the Sun, A (1961)",Drama +3351,Two Thousand Maniacs! (1964),Horror +3352,Brown's Requiem (1998),Drama +3353,"Closer You Get, The (2000)",Comedy|Romance +3354,Mission to Mars (2000),Sci-Fi +3355,"Ninth Gate, The (1999)",Fantasy|Horror|Mystery|Thriller +3356,Condo Painting (2000),Documentary +3357,East-West (Est-ouest) (1999),Drama|Romance +3358,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance +3359,Breaking Away (1979),Comedy|Drama +3360,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance +3361,Bull Durham (1988),Comedy|Drama|Romance +3362,Dog Day Afternoon (1975),Crime|Drama +3363,American Graffiti (1973),Comedy|Drama +3364,"Asphalt Jungle, The (1950)",Crime|Film-Noir +3365,"Searchers, The (1956)",Drama|Western +3367,"Devil's Brigade, The (1968)",War +3368,"Big Country, The (1958)",Romance|Western +3369,Any Number Can Win (Mélodie en sous-sol ) (1963),Crime +3370,Betrayed (1988),Drama|Thriller +3371,Bound for Glory (1976),Drama +3372,"Bridge at Remagen, The (1969)",Action|War +3373,Buck and the Preacher (1972),Western +3374,Daughters of the Dust (1991),Drama +3375,Destination Moon (1950),Sci-Fi +3376,"Fantastic Night, The (Nuit fantastique, La) (1942)",Romance +3377,Hangmen Also Die (1943),Drama|War +3378,"Ogre, The (Unhold, Der) (1996)",Drama +3379,On the Beach (1959),Drama +3380,Railroaded! (1947),Film-Noir +3381,Slaves to the Underground (1997),Comedy|Drama +3382,Song of Freedom (1936),Drama +3383,Big Fella (1937),Drama|Musical +3384,"Taking of Pelham One Two Three, The (1974)",Action|Crime +3385,Volunteers (1985),Comedy +3386,JFK (1991),Drama|Mystery|Thriller +3387,Who's Harry Crumb? (1989),Comedy|Mystery +3388,Harry and the Hendersons (1987),Children|Comedy +3389,Let's Get Harry (1986),Action|Adventure +3390,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance +3391,Who's That Girl? (1987),Comedy +3392,She-Devil (1989),Comedy +3393,Date with an Angel (1987),Comedy|Fantasy|Romance +3394,Blind Date (1987),Comedy|Romance +3395,Nadine (1987),Comedy +3396,"Muppet Movie, The (1979)",Adventure|Children|Comedy|Musical +3397,"Great Muppet Caper, The (1981)",Children|Comedy +3398,"Muppets Take Manhattan, The (1984)",Children|Comedy|Musical +3399,Sesame Street Presents Follow That Bird (1985),Children|Comedy +3400,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy +3401,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi +3402,Turtle Diary (1985),Comedy|Drama|Romance +3403,Raise the Titanic (1980),Drama|Thriller +3404,Titanic (1953),Action|Drama +3405,"Night to Remember, A (1958)",Action|Drama +3406,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War +3407,"Carriers Are Waiting, The (Convoyeurs attendent, Les) (1999)",Comedy|Drama +3408,Erin Brockovich (2000),Drama +3409,Final Destination (2000),Drama|Thriller +3410,Soft Fruit (1999),Comedy|Drama +3411,Babymother (1998),Drama +3412,"Bear, The (Ours, L') (1988)",Adventure|Children|Drama +3413,Impact (1949),Crime|Drama +3414,Love Is a Many-Splendored Thing (1955),Drama|Romance|War +3415,"Mirror, The (Zerkalo) (1975)",Drama +3417,"Crimson Pirate, The (1952)",Adventure|Comedy +3418,Thelma & Louise (1991),Adventure|Crime|Drama +3419,Something for Everyone (1970),Comedy|Crime +3420,...And Justice for All (1979),Drama|Thriller +3421,Animal House (1978),Comedy +3422,She's Gotta Have It (1986),Comedy|Romance +3423,School Daze (1988),Drama +3424,Do the Right Thing (1989),Drama +3425,Mo' Better Blues (1990),Drama|Musical +3426,Jungle Fever (1991),Drama|Romance +3427,Coogan's Bluff (1968),Crime +3428,"Champ, The (1979)",Drama +3429,Creature Comforts (1989),Animation|Comedy +3430,Death Wish (1974),Action|Crime|Drama +3431,Death Wish 2 (1982),Action|Drama +3432,Death Wish 3 (1985),Action|Drama +3433,Death Wish 4: The Crackdown (1987),Action|Drama +3434,Death Wish 5: The Face of Death (1994),Action|Drama +3435,Double Indemnity (1944),Crime|Drama|Film-Noir +3436,Dying Young (1991),Drama|Romance +3437,Cool as Ice (1991),Drama +3438,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi +3439,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy +3440,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy +3441,Red Dawn (1984),Action|Drama|War +3442,Band of the Hand (1986),Action|Crime|Drama +3443,Born American (1986),Action|Drama|Thriller +3444,Bloodsport (1988),Action +3445,Eyes of Laura Mars (1978),Mystery|Thriller +3446,Funny Bones (1995),Comedy|Drama +3447,"Good Earth, The (1937)",Drama +3448,"Good Morning, Vietnam (1987)",Comedy|Drama|War +3449,"Good Mother, The (1988)",Drama +3450,Grumpy Old Men (1993),Comedy +3451,Guess Who's Coming to Dinner (1967),Drama +3452,Romeo Must Die (2000),Action|Crime|Romance|Thriller +3453,Here on Earth (2000),Drama|Romance +3454,Whatever It Takes (2000),Comedy|Romance +3455,Buddy Boy (1999),Drama|Thriller +3456,"Color of Paradise, The (Rang-e khoda) (1999)",Drama +3457,Waking the Dead (2000),Drama|Thriller +3458,Blood and Sand (Sangre y Arena) (1989),Drama|Romance +3459,Gothic (1986),Drama|Horror +3460,Hillbillys in a Haunted House (1967),Comedy +3461,Lord of the Flies (1963),Adventure|Drama|Thriller +3462,Modern Times (1936),Comedy|Drama|Romance +3463,Last Resort (National Lampoon's Last Resort) (1994),Comedy +3464,Solar Crisis (1990),Sci-Fi|Thriller +3465,That's Life! (1986),Drama +3466,Heart and Souls (1993),Comedy|Fantasy +3467,Hud (1963),Drama|Western +3468,"Hustler, The (1961)",Drama +3469,Inherit the Wind (1960),Drama +3470,Dersu Uzala (1975),Adventure|Drama +3471,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi +3472,"Horror Hotel (a.k.a. City of the Dead, The) (1960)",Horror|Thriller +3473,Jonah Who Will Be 25 in the Year 2000 (Jonas qui aura 25 ans en l'an 2000) (1976),Comedy +3474,Retroactive (1997),Sci-Fi|Thriller +3475,"Place in the Sun, A (1951)",Drama|Romance +3476,Jacob's Ladder (1990),Horror|Mystery +3477,Empire Records (1995),Comedy|Drama +3478,"Bamba, La (1987)",Drama +3479,Ladyhawke (1985),Adventure|Fantasy|Romance +3480,Lucas (1986),Drama|Romance +3481,High Fidelity (2000),Comedy|Drama|Romance +3483,"Road to El Dorado, The (2000)",Animation|Children +3484,"Skulls, The (2000)",Thriller +3485,Autopsy (Macchie Solari) (1975),Horror +3486,Devil Girl From Mars (1954),Sci-Fi +3487,El Dorado (1966),Western +3488,"Hideous Sun Demon, The (1959)",Horror|Sci-Fi +3489,Hook (1991),Adventure|Comedy|Fantasy +3490,Horror Express (1972),Horror +3491,My Chauffeur (1986),Comedy +3492,"Son of the Sheik, The (1926)",Adventure|Comedy|Romance +3493,Torso (1973),Horror|Mystery|Thriller +3494,True Grit (1969),Adventure|Drama|Western +3495,Roadside Prophets (1992),Comedy|Drama +3496,Madame Sousatzka (1988),Drama +3497,Max Dugan Returns (1983),Comedy +3498,Midnight Express (1978),Drama +3499,Misery (1990),Drama|Horror|Thriller +3500,Mr. Saturday Night (1992),Comedy|Drama +3501,Murphy's Romance (1985),Comedy|Romance +3502,My Life (1993),Drama +3503,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi +3504,Network (1976),Comedy|Drama +3505,No Way Out (1987),Drama|Mystery|Thriller +3506,North Dallas Forty (1979),Comedy|Drama +3507,"Odd Couple, The (1968)",Comedy +3508,"Outlaw Josey Wales, The (1976)",Action|Adventure|Drama|Thriller|Western +3509,Black and White (1999),Drama +3510,Frequency (2000),Drama|Thriller +3511,Ready to Rumble (2000),Comedy +3512,Return to Me (2000),Drama|Romance +3513,Rules of Engagement (2000),Drama|Thriller +3514,Joe Gould's Secret (2000),Drama +3515,Me Myself I (2000),Comedy|Romance +3516,"Bell, Book and Candle (1958)",Comedy|Fantasy|Romance +3517,"Bells, The (1926)",Crime|Drama +3518,"End of Violence, The (1997)",Drama|Thriller +3519,Force 10 from Navarone (1978),Action|Drama|War +3520,How to Stuff a Wild Bikini (1965),Comedy +3521,Mystery Train (1989),Comedy|Drama +3522,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama +3523,Taffin (1988),Action|Thriller +3524,Arthur (1981),Comedy|Romance +3525,Bachelor Party (1984),Comedy +3526,Parenthood (1989),Comedy|Drama +3527,Predator (1987),Action|Sci-Fi|Thriller +3528,"Prince of Tides, The (1991)",Drama|Romance +3529,"Postman Always Rings Twice, The (1981)",Crime|Thriller +3530,Smoking/No Smoking (1993),Comedy +3531,All the Vermeers in New York (1990),Comedy|Drama|Romance +3533,"Actor's Revenge, An (Yukinojô henge) (1963)",Drama +3534,28 Days (2000),Drama +3535,American Psycho (2000),Crime|Horror|Mystery|Thriller +3536,Keeping the Faith (2000),Comedy|Drama|Romance +3537,Where the Money Is (2000),Comedy|Drama +3538,East is East (1999),Comedy +3539,"Filth and the Fury, The (2000)",Documentary +3540,Passion of Mind (2000),Drama|Mystery|Romance +3541,Third World Cop (1999),Action +3542,Coming Apart (1969),Drama +3543,Diner (1982),Comedy|Drama +3544,Shakes the Clown (1992),Comedy +3545,Cabaret (1972),Drama|Musical +3546,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller +3547,Prick Up Your Ears (1987),Comedy|Drama +3548,Auntie Mame (1958),Comedy|Drama +3549,Guys and Dolls (1955),Comedy|Musical|Romance +3550,"Hunger, The (1983)",Horror +3551,Marathon Man (1976),Crime|Drama|Thriller +3552,Caddyshack (1980),Comedy +3553,Gossip (2000),Drama|Thriller +3554,Love and Basketball (2000),Drama|Romance +3555,U-571 (2000),Action|Thriller|War +3556,"Virgin Suicides, The (1999)",Drama|Romance +3557,Jennifer 8 (1992),Mystery|Thriller +3558,"Law, The (a.k.a. Where the Hot Wind Blows!) (Legge, La) (1958)",Drama +3559,Limelight (1952),Comedy|Drama|Romance +3560,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance +3561,Stacy's Knights (1982),Drama +3562,Committed (2000),Comedy|Drama +3563,"Crow: Salvation, The (2000)",Action|Horror +3564,"Flintstones in Viva Rock Vegas, The (2000)",Children|Comedy +3565,Where the Heart Is (2000),Comedy|Drama +3566,"Big Kahuna, The (2000)",Comedy|Drama +3567,Bossa Nova (2000),Comedy|Drama|Romance +3568,Smiling Fish and Goat on Fire (1999),Comedy|Romance +3569,"Idiots, The (Idioterne) (1998)",Comedy|Drama +3570,"Last September, The (1999)",Drama +3571,Time Code (2000),Comedy|Drama +3572,Carnosaur (1993),Horror|Sci-Fi +3573,Carnosaur 2 (1995),Horror|Sci-Fi +3574,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi +3575,Defying Gravity (1997),Drama +3576,"Hidden, The (1987)",Action|Horror|Sci-Fi +3577,Two Moon Junction (1988),Drama|Romance +3578,Gladiator (2000),Action|Adventure|Drama +3579,I Dreamed of Africa (2000),Drama +3580,Up at the Villa (2000),Drama +3581,Human Traffic (1999),Comedy +3582,"Jails, Hospitals & Hip-Hop (2000)",Comedy|Documentary|Drama +3583,Black Tights (1-2-3-4 ou Les Collants noirs) (1960),Drama|Musical +3584,Breathless (1983),Action|Drama|Romance|Thriller +3585,"Great Locomotive Chase, The (1956)",Adventure|War +3586,"Idolmaker, The (1980)",Drama +3587,Inferno (1980),Horror +3588,"King of Marvin Gardens, The (1972)",Crime|Drama +3589,"Whom the Gods Wish to Destroy (Nibelungen, Teil 1: Siegfried, Die) (1966)",Adventure|Fantasy +3590,"Lords of Flatbush, The (1974)",Comedy|Drama +3591,Mr. Mom (1983),Comedy|Drama +3592,"Time Masters (Maîtres du temps, Les) (1982)",Animation|Sci-Fi +3593,Battlefield Earth (2000),Action|Sci-Fi +3594,Center Stage (2000),Drama|Musical +3595,Held Up (1999),Comedy +3596,Screwed (2000),Comedy +3597,Whipped (2000),Comedy +3598,Hamlet (2000),Crime|Drama|Romance|Thriller +3599,Anchors Aweigh (1945),Comedy|Musical +3600,Blue Hawaii (1961),Comedy|Musical +3601,"Castaway Cowboy, The (1974)",Comedy|Western +3602,G. I. Blues (1960),Comedy|Musical|Romance +3603,"Gay Deceivers, The (1969)",Comedy +3604,Gypsy (1962),Musical +3605,King Creole (1958),Crime|Drama|Musical +3606,On the Town (1949),Comedy|Musical|Romance +3607,One Little Indian (1973),Comedy|Western +3608,Pee-wee's Big Adventure (1985),Adventure|Comedy +3609,Regret to Inform (1998),Documentary +3610,Roustabout (1964),Drama|Musical|Romance +3611,Saludos Amigos (1943),Animation|Children|Comedy +3612,"Slipper and the Rose, The (1976)",Adventure|Musical|Romance +3613,Things Change (1988),Comedy +3614,Honeymoon in Vegas (1992),Comedy|Romance +3615,Dinosaur (2000),Adventure|Animation|Children +3616,Loser (2000),Comedy|Romance +3617,Road Trip (2000),Comedy +3618,Small Time Crooks (2000),Comedy|Crime +3619,"Hollywood Knights, The (1980)",Comedy +3620,"Myth of Fingerprints, The (1997)",Comedy|Drama +3621,Possession (1981),Drama|Horror +3622,"Twelve Chairs, The (1970)",Comedy +3623,Mission: Impossible II (2000),Action|Adventure|Thriller +3624,Shanghai Noon (2000),Action|Adventure|Comedy|Western +3625,Better Living Through Circuitry (1999),Documentary +3626,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy +3627,Carnival of Souls (1962),Horror|Thriller +3628,Flying Tigers (1942),Action|Drama|Romance|War +3629,"Gold Rush, The (1925)",Adventure|Comedy|Romance +3630,"House of Exorcism, The (a.k.a. Lisa and the Devil) (Casa dell'esorcismo, La) (1973)",Horror +3631,It's in the Water (1998),Comedy +3632,Monsieur Verdoux (1947),Comedy|Crime +3633,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller +3634,Seven Days in May (1964),Thriller +3635,"Spy Who Loved Me, The (1977)",Action|Adventure|Thriller +3636,Those Who Love Me Can Take the Train (Ceux qui m'aiment prendront le train) (1998),Drama +3637,Vagabond (Sans toit ni loi) (1985),Drama +3638,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller +3639,"Man with the Golden Gun, The (1974)",Action|Adventure|Thriller +3640,"King in New York, A (1957)",Comedy|Drama +3641,"Woman of Paris, A (1923)",Drama +3642,In Old California (1942),Western +3643,"Fighting Seabees, The (1944)",Action|Drama|War +3644,Dark Command (1940),Western +3645,Cleo from 5 to 7 (Cléo de 5 à 7) (1962),Drama +3646,Big Momma's House (2000),Comedy +3647,Running Free (1999),Adventure|Children|Drama +3648,"Abominable Snowman, The (Abominable Snowman of the Himalayas, The) (1957)",Horror|Sci-Fi +3649,American Gigolo (1980),Drama +3650,Anguish (Angustia) (1987),Horror +3651,"Blood Spattered Bride, The (La novia ensangrentada) (1972)",Horror +3652,"City of the Living Dead (a.k.a. Gates of Hell, The) (Paura nella città dei morti viventi) (1980)",Horror +3653,"Endless Summer, The (1966)",Documentary +3654,"Guns of Navarone, The (1961)",Action|Adventure|Drama|War +3655,Blow-Out (La grande bouffe) (1973),Drama +3656,Lured (1947),Crime|Film-Noir|Mystery|Thriller +3657,Pandora and the Flying Dutchman (1951),Drama +3658,Quatermass and the Pit (1967),Horror|Sci-Fi +3659,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller +3660,Puppet Master (1989),Horror|Sci-Fi|Thriller +3661,Puppet Master II (1991),Horror|Sci-Fi|Thriller +3662,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller +3663,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller +3664,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller +3665,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller +3666,Retro Puppet Master (Puppet Master 7) (1999),Horror|Sci-Fi|Thriller +3667,Rent-A-Cop (1988),Action|Comedy|Crime +3668,Romeo and Juliet (1968),Drama|Romance +3669,Stay Tuned (1992),Comedy +3670,Story of G.I. Joe (1945),War +3671,Blazing Saddles (1974),Comedy|Western +3672,Benji (1974),Adventure|Children +3673,Benji the Hunted (1987),Adventure|Children +3674,For the Love of Benji (1977),Adventure|Children|Comedy|Drama +3675,White Christmas (1954),Comedy|Musical|Romance +3676,Eraserhead (1977),Drama|Horror +3677,Baraka (1992),Documentary +3678,"Man with the Golden Arm, The (1955)",Drama +3679,"Decline of Western Civilization, The (1981)",Documentary|Musical +3680,"Decline of Western Civilization Part II: The Metal Years, The (1988)",Documentary +3681,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western +3682,Magnum Force (1973),Action|Crime|Drama|Thriller +3683,Blood Simple (1984),Crime|Drama|Film-Noir +3684,"Fabulous Baker Boys, The (1989)",Drama|Romance +3685,Prizzi's Honor (1985),Comedy|Drama|Romance +3686,Flatliners (1990),Horror|Sci-Fi|Thriller +3687,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi +3688,Porky's (1982),Comedy +3689,Porky's II: The Next Day (1983),Comedy +3690,Porky's Revenge (1985),Comedy +3691,Private School (1983),Comedy +3692,Class of Nuke 'Em High (1986),Comedy|Horror +3693,"Toxic Avenger, The (1985)",Comedy|Horror +3694,"Toxic Avenger, Part II, The (1989)",Comedy|Horror +3695,"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)",Comedy|Horror +3696,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller +3697,Predator 2 (1990),Action|Sci-Fi|Thriller +3698,"Running Man, The (1987)",Action|Sci-Fi +3699,Starman (1984),Adventure|Drama|Romance|Sci-Fi +3700,"Brother from Another Planet, The (1984)",Drama|Sci-Fi +3701,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller +3702,Mad Max (1979),Action|Adventure|Sci-Fi +3703,"Road Warrior, The (Mad Max 2) (1981)",Action|Adventure|Sci-Fi +3704,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi +3705,Bird on a Wire (1990),Action|Comedy|Romance +3706,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller +3707,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance +3708,Firestarter (1984),Horror|Thriller +3709,Sleepwalkers (1992),Horror +3710,Action Jackson (1988),Action|Comedy|Crime|Thriller +3711,Sarafina! (1992),Drama +3712,Soapdish (1991),Comedy +3713,"Long Walk Home, The (1990)",Drama +3714,Clara's Heart (1988),Drama +3715,Burglar (1987),Comedy|Crime +3716,Fatal Beauty (1987),Action|Comedy|Crime|Drama +3717,Gone in 60 Seconds (2000),Action|Crime +3718,American Pimp (1999),Documentary +3719,Love's Labour's Lost (2000),Comedy|Romance +3720,Sunshine (1999),Drama +3721,Trixie (2000),Comedy|Crime|Mystery +3722,American Virgin (2000),Comedy +3723,Hamlet (1990),Drama +3724,Coming Home (1978),Drama|War +3725,American Pop (1981),Animation|Musical +3726,Assault on Precinct 13 (1976),Action|Thriller +3727,Near Dark (1987),Horror|Western +3728,One False Move (1992),Crime|Drama|Film-Noir|Thriller +3729,Shaft (1971),Action|Crime|Drama|Thriller +3730,"Conversation, The (1974)",Drama|Mystery +3731,Cutter's Way (1981),Drama|Thriller +3732,"Fury, The (1978)",Horror +3733,"Paper Chase, The (1973)",Drama +3734,Prince of the City (1981),Drama +3735,Serpico (1973),Crime|Drama +3736,"Ace in the Hole (Big Carnival, The) (1951)",Drama +3737,Lonely Are the Brave (1962),Drama|Western +3738,"Sugarland Express, The (1974)",Drama +3739,Trouble in Paradise (1932),Comedy|Romance +3740,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy +3741,Badlands (1973),Crime|Drama|Thriller +3742,Battleship Potemkin (1925),Drama|War +3743,Boys and Girls (2000),Comedy|Romance +3744,Shaft (2000),Action|Crime|Thriller +3745,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi +3746,Butterfly (La lengua de las mariposas) (1999),Drama +3747,Jesus' Son (1999),Drama +3748,"Match, The (1999)",Comedy|Romance +3749,"Time Regained (Temps retrouvé, Le) (1999)",Drama +3750,Boricua's Bond (2000),Drama +3751,Chicken Run (2000),Animation|Children|Comedy +3752,"Me, Myself & Irene (2000)",Adventure|Comedy +3753,"Patriot, The (2000)",Action|Drama|War +3754,"Adventures of Rocky and Bullwinkle, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +3755,"Perfect Storm, The (2000)",Drama|Thriller +3756,"Golden Bowl, The (2000)",Drama +3757,Asylum (1972),Horror +3758,Communion (1989),Drama|Sci-Fi|Thriller +3759,Fun and Fancy Free (1947),Animation|Children|Musical +3760,"Kentucky Fried Movie, The (1977)",Comedy +3761,"Bound by Honor (a.k.a. Blood In, Blood Out) (1993)",Action|Crime|Drama|Thriller +3762,Daughter of Dr. Jeckyll (1957),Horror +3763,F/X (1986),Action|Crime|Thriller +3764,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller +3765,"Hot Spot, The (1990)",Crime|Drama|Romance +3766,Missing in Action (1984),Action|War +3767,Missing in Action 2: The Beginning (1985),Action|War +3768,Braddock: Missing in Action III (1988),Action|War +3769,Thunderbolt and Lightfoot (1974),Action +3770,Dreamscape (1984),Horror|Sci-Fi|Thriller +3771,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy +3772,"Hatchet for the Honeymoon (Rosso segno della follia, Il) (1970)",Fantasy|Horror|Thriller +3773,House Party (1990),Comedy +3774,House Party 2 (1991),Comedy|Drama|Romance +3775,Make Mine Music (1946),Animation|Children|Musical +3776,Melody Time (1948),Animation|Children|Musical +3777,Nekromantik (1987),Comedy|Horror +3778,On Our Merry Way (1948),Comedy +3779,Project Moon Base (1953),Sci-Fi +3780,Rocketship X-M (1950),Sci-Fi +3781,Shaft in Africa (1973),Action|Crime +3782,Shaft's Big Score! (1972),Action|Crime +3783,Croupier (1998),Crime|Drama +3784,"Kid, The (2000)",Comedy|Fantasy +3785,Scary Movie (2000),Comedy|Horror +3786,But I'm a Cheerleader (1999),Comedy +3787,Shower (Xizao) (1999),Comedy +3788,Blow-Up (Blowup) (1966),Drama|Mystery +3789,"Pawnbroker, The (1964)",Drama +3790,Groove (2000),Drama +3791,Footloose (1984),Drama +3792,Duel in the Sun (1946),Western +3793,X-Men (2000),Action|Adventure|Sci-Fi +3794,Chuck & Buck (2000),Comedy|Drama +3795,"Five Senses, The (1999)",Drama +3796,"Wisdom of Crocodiles, The (a.k.a. Immortality) (2000)",Romance|Thriller +3797,"In Crowd, The (2000)",Thriller +3798,What Lies Beneath (2000),Drama|Horror|Mystery +3799,Pokémon the Movie 2000 (2000),Animation|Children +3800,Criminal Lovers (1999),Crime|Drama|Romance|Thriller +3801,Anatomy of a Murder (1959),Drama|Mystery +3802,Freejack (1992),Action|Sci-Fi +3803,Greaser's Palace (1972),Comedy|Drama|Western +3804,H.O.T.S. (1979),Comedy +3805,Knightriders (1981),Action|Adventure|Drama +3806,Mackenna's Gold (1969),Western +3807,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy +3808,"Two Women (Ciociara, La) (1960)",Drama|War +3809,What About Bob? (1991),Comedy +3810,White Sands (1992),Drama|Thriller +3811,Breaker Morant (1980),Drama|War +3812,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy +3813,Interiors (1978),Drama +3814,Love and Death (1975),Comedy +3816,"Official Story, The (La historia oficial) (1985)",Drama +3817,"Other Side of Sunday, The (Søndagsengler) (1996)",Comedy|Drama +3818,Pot O' Gold (1941),Comedy|Musical +3819,Tampopo (1985),Comedy +3820,Thomas and the Magic Railroad (2000),Children +3821,Nutty Professor II: The Klumps (2000),Comedy +3822,"Girl on the Bridge, The (Fille sur le pont, La) (1999)",Drama|Romance +3823,Wonderland (1999),Drama +3824,Autumn in New York (2000),Drama|Romance +3825,Coyote Ugly (2000),Comedy|Drama|Romance +3826,Hollow Man (2000),Horror|Sci-Fi|Thriller +3827,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi +3828,Better Living (1998),Comedy +3829,Mad About Mambo (2000),Comedy|Romance +3830,Psycho Beach Party (2000),Comedy|Horror|Thriller +3831,Saving Grace (2000),Comedy +3832,"Black Sabbath (Tre volti della paura, I) (1963)",Horror +3833,"Brain That Wouldn't Die, The (1962)",Horror|Sci-Fi +3834,Bronco Billy (1980),Adventure|Drama|Romance +3835,"Crush, The (1993)",Thriller +3836,Kelly's Heroes (1970),Action|Comedy|War +3837,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller +3838,Phantasm III: Lord of the Dead (1994),Horror +3839,Phantasm IV: Oblivion (1998),Horror +3840,Pumpkinhead (1988),Horror +3841,Air America (1990),Action|Comedy +3843,Sleepaway Camp (1983),Horror +3844,Steel Magnolias (1989),Drama +3845,And God Created Woman (Et Dieu... créa la femme) (1956),Drama +3846,Easy Money (1983),Comedy +3847,"Ilsa, She Wolf of the SS (1974)",Horror +3848,Silent Fall (1994),Drama|Thriller +3849,"Spiral Staircase, The (1946)",Thriller +3850,Whatever Happened to Aunt Alice? (1969),Crime|Thriller +3851,I'm the One That I Want (2000),Comedy +3852,"Tao of Steve, The (2000)",Comedy +3853,"Tic Code, The (1998)",Drama +3854,Aimée & Jaguar (1999),Drama|Romance|War +3855,"Affair of Love, An (Liaison pornographique, Une) (1999)",Drama|Romance +3856,"Autumn Heart, The (1999)",Drama +3857,Bless the Child (2000),Thriller +3858,Cecil B. DeMented (2000),Comedy +3859,"Eyes of Tammy Faye, The (2000)",Documentary +3860,"Opportunists, The (2000)",Comedy|Crime|Drama +3861,"Replacements, The (2000)",Comedy +3862,About Adam (2000),Comedy +3863,"Cell, The (2000)",Drama|Horror|Thriller +3864,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi +3865,"Original Kings of Comedy, The (2000)",Comedy|Documentary +3866,Sunset Strip (2000),Comedy +3867,All the Rage (It's the Rage) (1999),Drama +3868,"Naked Gun: From the Files of Police Squad!, The (1988)",Action|Comedy|Crime|Romance +3869,"Naked Gun 2 1/2: The Smell of Fear, The (1991)",Comedy +3870,Our Town (1940),Drama +3871,Shane (1953),Drama|Western +3872,"Suddenly, Last Summer (1959)",Drama +3873,Cat Ballou (1965),Comedy|Western +3874,"Couch in New York, A (1996)",Comedy|Drama|Romance +3875,"Devil Rides Out, The (1968)",Horror +3876,Jerry and Tom (1998),Comedy|Crime|Drama +3877,Supergirl (1984),Action|Adventure|Fantasy +3878,X: The Unknown (1956),Horror|Sci-Fi +3879,"Art of War, The (2000)",Action|Thriller +3880,"Ballad of Ramblin' Jack, The (2000)",Documentary +3881,Phish: Bittersweet Motel (2000),Documentary +3882,Bring It On (2000),Comedy +3883,Catfish in Black Bean Sauce (2000),Comedy|Drama +3884,"Crew, The (2000)",Comedy +3885,Love & Sex (2000),Comedy|Drama|Romance +3886,Steal This Movie! (2000),Drama +3887,Went to Coney Island on a Mission From God... Be Back by Five (1998),Drama +3888,Skipped Parts (2000),Drama|Romance +3889,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy +3890,Back Stage (2000),Documentary +3891,Turn It Up (2000),Crime|Drama +3892,Anatomy (Anatomie) (2000),Horror +3893,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller +3894,Solas (1999),Drama +3895,"Watcher, The (2000)",Crime|Thriller +3896,"Way of the Gun, The (2000)",Crime|Thriller +3897,Almost Famous (2000),Drama +3898,Bait (2000),Action|Comedy +3899,Circus (2000),Crime|Drama|Thriller +3900,Crime and Punishment in Suburbia (2000),Comedy|Drama +3901,Duets (2000),Comedy|Drama +3902,Goya in Bordeaux (Goya en Burdeos) (1999),Drama +3903,Urbania (2000),Drama +3904,Uninvited Guest (1999),Drama +3905,"Specials, The (2000)",Comedy +3906,Under Suspicion (2000),Crime|Thriller +3907,"Prince of Central Park, The (1999)",Action|Adventure|Drama +3908,Urban Legends: Final Cut (2000),Horror +3909,Woman on Top (2000),Comedy|Romance +3910,Dancer in the Dark (2000),Drama|Musical +3911,Best in Show (2000),Comedy +3912,Beautiful (2000),Comedy|Drama +3913,Barenaked in America (1999),Documentary +3914,"Broken Hearts Club, The (2000)",Drama +3915,Girlfight (2000),Drama +3916,Remember the Titans (2000),Drama +3917,Hellraiser (1987),Horror +3918,Hellbound: Hellraiser II (1988),Horror +3919,Hellraiser III: Hell on Earth (1992),Horror +3920,"Faraway, So Close (In weiter Ferne, so nah!) (1993)",Drama|Fantasy|Mystery|Romance +3921,Beach Party (1963),Comedy +3922,Bikini Beach (1964),Comedy +3923,Return of the Fly (1959),Horror|Sci-Fi +3924,Pajama Party (1964),Comedy +3925,Stranger Than Paradise (1984),Comedy|Drama +3926,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi +3927,Fantastic Voyage (1966),Adventure|Sci-Fi +3928,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror +3929,"Bank Dick, The (1940)",Comedy +3930,"Creature from the Black Lagoon, The (1954)",Adventure|Horror|Sci-Fi +3931,"Giant Gila Monster, The (1959)",Horror|Sci-Fi +3932,"Invisible Man, The (1933)",Horror|Sci-Fi +3933,"Killer Shrews, The (1959)",Horror|Sci-Fi +3934,Kronos (1957),Sci-Fi +3936,Phantom of the Opera (1943),Horror|Musical|Thriller +3937,Runaway (1984),Sci-Fi|Thriller +3938,"Slumber Party Massacre, The (1982)",Horror +3939,Slumber Party Massacre II (1987),Horror +3940,Slumber Party Massacre III (1990),Horror +3941,Sorority House Massacre (1986),Horror +3942,Sorority House Massacre II (1990),Horror +3943,Bamboozled (2000),Comedy +3944,Bootmen (2000),Comedy|Drama +3945,Digimon: The Movie (2000),Adventure|Animation|Children +3946,Get Carter (2000),Action|Drama|Thriller +3947,Get Carter (1971),Action|Crime|Drama|Thriller +3948,Meet the Parents (2000),Comedy +3949,Requiem for a Dream (2000),Drama +3950,Tigerland (2000),Drama +3951,Two Family House (2000),Drama +3952,"Contender, The (2000)",Drama|Thriller +3953,Dr. T and the Women (2000),Comedy|Romance +3954,Just Looking (1999),Comedy +3955,"Ladies Man, The (2000)",Comedy +3956,Lost Souls (2000),Drama|Horror|Thriller +3957,Billy Jack (1971),Action|Drama +3958,Billy Jack Goes to Washington (1977),Drama +3959,"Time Machine, The (1960)",Action|Adventure|Sci-Fi +3960,Haunted (1995),Drama|Thriller +3961,Ghoulies (1985),Horror +3962,Ghoulies II (1987),Comedy|Horror +3963,"Unsinkable Molly Brown, The (1964)",Musical +3964,"Adventures of Ichabod and Mr. Toad, The (1949)",Animation|Children +3965,"Strange Love of Martha Ivers, The (1946)",Drama|Film-Noir +3966,Detour (1945),Crime|Film-Noir +3967,Billy Elliot (2000),Drama +3968,Bedazzled (2000),Comedy +3969,Pay It Forward (2000),Drama +3970,"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)",Horror +3971,"Private Eyes, The (1981)",Comedy|Mystery +3972,"Legend of Drunken Master, The (Jui kuen II) (1994)",Action|Comedy +3973,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller +3974,"Little Vampire, The (2000)",Adventure|Children +3975,Lucky Numbers (2000),Comedy|Drama +3976,Stardom (2000),Comedy|Drama +3977,Charlie's Angels (2000),Action|Comedy +3978,"Legend of Bagger Vance, The (2000)",Drama|Romance +3979,Little Nicky (2000),Comedy +3980,Men of Honor (2000),Drama +3981,Red Planet (2000),Action|Sci-Fi|Thriller +3982,What's Cooking? (2000),Drama +3983,You Can Count on Me (2000),Drama|Romance +3984,Diamonds Are Forever (1971),Action|Adventure|Thriller +3985,"Eagle Has Landed, The (1976)",Drama|War +3986,"6th Day, The (2000)",Action|Sci-Fi|Thriller +3987,Bounce (2000),Drama|Romance +3988,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy +3989,One Day in September (1999),Documentary +3990,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy +3991,102 Dalmatians (2000),Children|Comedy +3992,Malèna (2000),Drama|Romance|War +3993,Quills (2000),Drama|Romance +3994,Unbreakable (2000),Drama|Sci-Fi +3995,Boys Life 3 (2000),Drama +3996,"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)",Action|Drama|Romance +3997,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy +3998,Proof of Life (2000),Drama +3999,Vertical Limit (2000),Action|Adventure +4000,"Bounty, The (1984)",Adventure|Drama +4001,Code of Silence (1985),Action +4002,"Planes, Trains & Automobiles (1987)",Comedy +4003,She's Having a Baby (1988),Comedy +4004,Secrets of the Heart (Secretos del Corazón) (1997),Drama +4005,"Living Daylights, The (1987)",Action|Adventure|Thriller +4006,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi +4007,Wall Street (1987),Drama +4008,Born on the Fourth of July (1989),Drama|War +4009,Talk Radio (1988),Drama +4010,Brewster's Millions (1985),Comedy +4011,Snatch (2000),Comedy|Crime|Thriller +4012,Punchline (1988),Comedy|Drama +4013,Mr. Accident (2000),Comedy +4014,Chocolat (2000),Drama|Romance +4015,"Dude, Where's My Car? (2000)",Comedy|Sci-Fi +4016,"Emperor's New Groove, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +4017,Pollock (2000),Drama +4018,What Women Want (2000),Comedy|Romance +4019,Finding Forrester (2000),Drama +4020,"Gift, The (2000)",Thriller +4021,Before Night Falls (2000),Drama +4022,Cast Away (2000),Drama +4023,"Family Man, The (2000)",Comedy|Drama|Romance +4024,"House of Mirth, The (2000)",Romance +4025,Miss Congeniality (2000),Comedy|Crime +4026,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller +4027,"O Brother, Where Art Thou? (2000)",Adventure|Comedy|Crime +4028,Songcatcher (2000),Drama +4029,State and Main (2000),Comedy|Drama +4030,Dracula 2000 (2000),Horror +4031,All the Pretty Horses (2000),Drama|Romance|Western +4032,"Everlasting Piece, An (2000)",Comedy +4033,Thirteen Days (2000),Drama|Thriller|War +4034,Traffic (2000),Crime|Drama|Thriller +4035,"Claim, The (2000)",Romance|Western +4036,Shadow of the Vampire (2000),Drama|Horror +4037,House of Games (1987),Crime|Film-Noir|Mystery|Thriller +4038,Kill Me Again (1989),Crime|Drama|Thriller +4039,Annie (1982),Children|Musical +4040,Don't Tell Mom the Babysitter's Dead (1991),Comedy +4041,"Officer and a Gentleman, An (1982)",Drama|Romance +4042,"Alamo, The (1960)",Action|Drama|War|Western +4043,At Close Range (1986),Crime|Drama +4044,Breaker! Breaker! (1977),Action|Adventure|Crime +4045,Breakheart Pass (1975),Western +4046,Friendly Persuasion (1956),Drama +4047,Gettysburg (1993),Drama|War +4048,Imaginary Crimes (1994),Drama +4049,Rancho Deluxe (1975),Comedy|Western +4050,"St. Francisville Experiment, The (2000)",Horror|Thriller +4051,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi +4052,Antitrust (2001),Crime|Drama|Thriller +4053,Double Take (2001),Action|Comedy +4054,Save the Last Dance (2001),Drama|Romance +4055,Panic (2000),Drama +4056,"Pledge, The (2001)",Crime|Drama|Mystery|Thriller +4057,Kids World (2000),Adventure|Children|Comedy +4058,"Personals, The (Zheng hun qi shi) (1998)",Drama +4059,"Amati Girls, The (2000)",Drama +4060,Love Field (1992),Drama +4061,The Man in the Moon (1991),Drama|Romance +4062,Mystic Pizza (1988),Comedy|Drama|Romance +4063,Prelude to a Kiss (1992),Comedy|Drama|Romance +4064,Coffy (1973),Action|Crime|Thriller +4065,Foxy Brown (1974),Action|Crime|Drama +4066,I'm Gonna Git You Sucka (1988),Action|Comedy +4067,Untamed Heart (1993),Drama|Romance +4068,Sugar & Spice (2001),Comedy +4069,"Wedding Planner, The (2001)",Comedy|Romance +4070,Amy (1998),Comedy|Drama +4071,Dog Run (1996),Drama +4072,Faithless (Trolösa) (2000),Drama|Romance +4073,"Invisible Circus, The (2001)",Drama|Romance +4074,"Legend of Rita, The (Stille nach dem Schuß, Die) (1999)",Drama +4075,"Monkey's Tale, A (Château des singes, Le) (1999)",Animation|Children +4076,Two Ninas (1999),Comedy|Romance +4077,"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)",Drama|Thriller +4078,Amazing Grace and Chuck (1987),Drama +4079,Amazon Women on the Moon (1987),Comedy|Sci-Fi +4080,Baby Boom (1987),Comedy +4081,Back to the Beach (1987),Comedy +4082,Barfly (1987),Comedy|Drama|Romance +4083,Best Seller (1987),Thriller +4084,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller +4085,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama +4086,"Big Easy, The (1987)",Action|Crime|Mystery|Romance|Thriller +4087,Big Shots (1987),Adventure|Children|Comedy +4088,"Big Town, The (1987)",Drama|Romance|Thriller +4089,Born in East L.A. (1987),Comedy +4090,"Brave Little Toaster, The (1987)",Animation|Children +4091,Can't Buy Me Love (1987),Comedy|Romance +4092,Cherry 2000 (1987),Romance|Sci-Fi +4093,Cop (1988),Thriller +4094,Critical Condition (1987),Comedy +4095,Cry Freedom (1987),Drama +4096,"Curse, The (a.k.a. The Farm) (1987)",Horror|Sci-Fi +4097,Dead of Winter (1987),Horror|Thriller +4098,"Dead, The (1987)",Drama +4099,Death Before Dishonor (1987),Action|Drama +4100,Disorderlies (1987),Comedy +4101,Dogs in Space (1987),Drama +4102,Eddie Murphy Raw (1987),Comedy|Documentary +4103,Empire of the Sun (1987),Action|Adventure|Drama|War +4104,Ernest Goes to Camp (1987),Comedy +4105,"Evil Dead, The (1981)",Fantasy|Horror|Thriller +4106,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western +4107,Family Viewing (1987),Drama +4108,Five Corners (1987),Drama +4109,Flowers in the Attic (1987),Drama|Thriller +4110,"Fourth Protocol, The (1987)",Thriller +4111,Gardens of Stone (1987),Drama|War +4112,Julia and Julia (Giulia e Giulia) (1987),Drama|Mystery|Thriller +4113,"Glass Menagerie, The (1987)",Drama +4114,"Good Morning, Babylon (1987)",Drama +4115,Hiding Out (1987),Comedy +4116,Hollywood Shuffle (1987),Comedy +4117,Hope and Glory (1987),Drama +4118,Hot Pursuit (1987),Comedy +4119,Housekeeping (1987),Comedy|Drama +4120,Hunk (1987),Comedy +4121,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi +4122,Ironweed (1987),Drama +4123,Ishtar (1987),Comedy +4124,Jaws: The Revenge (1987),Horror|Thriller +4125,Leonard Part 6 (1987),Comedy|Sci-Fi +4126,Less Than Zero (1987),Drama +4127,"Like Father, Like Son (1987)",Comedy +4128,"Lost Boys, The (1987)",Comedy|Horror|Thriller +4129,Made in Heaven (1987),Fantasy|Romance +4130,Maid to Order (1987),Comedy|Fantasy +4131,Making Mr. Right (1987),Comedy|Romance|Sci-Fi +4132,Mannequin (1987),Comedy|Romance +4133,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi +4134,Million Dollar Mystery (1987),Comedy +4135,"Monster Squad, The (1987)",Adventure|Comedy|Horror +4136,"Month in the Country, A (1987)",Drama +4137,Morgan Stewart's Coming Home (1987),Comedy +4138,My Demon Lover (1987),Comedy|Horror +4139,No Man's Land (1987),Crime|Drama +4140,North Shore (1987),Drama|Romance +4141,Head Over Heels (2001),Comedy|Romance +4142,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller +4143,Valentine (2001),Horror|Mystery +4144,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance +4145,Fever (1999),Thriller +4146,"Million Dollar Hotel, The (2001)",Drama|Mystery|Romance +4147,Nico and Dani (Krámpack) (2000),Comedy|Drama|Romance +4148,Hannibal (2001),Horror|Thriller +4149,Saving Silverman (Evil Woman) (2001),Comedy|Romance +4150,Signs & Wonders (2001),Drama +4151,"Taste of Others, The (Le goût des autres) (2000)",Comedy|Drama|Romance +4152,Vatel (2000),Drama +4153,Down to Earth (2001),Comedy|Fantasy|Romance +4154,Recess: School's Out (2001),Animation|Children +4155,Sweet November (2001),Drama|Romance +4156,Company Man (2000),Comedy +4157,"Price of Milk, The (2000)",Comedy|Drama|Fantasy|Romance +4158,Monkeybone (2001),Animation|Comedy|Fantasy +4159,3000 Miles to Graceland (2001),Action|Thriller +4160,"Widow of St. Pierre, The (Veuve de Saint-Pierre, La) (2000)",Drama|Romance +4161,"Mexican, The (2001)",Action|Comedy +4162,See Spot Run (2001),Comedy +4163,Carman: The Champion (2001),Action|Drama +4164,"Caveman's Valentine, The (2001)",Drama +4165,"Me You Them (Eu, Tu, Eles) (2000)",Comedy|Drama|Romance +4166,Series 7: The Contenders (2001),Action|Drama +4167,15 Minutes (2001),Thriller +4168,Get Over It (2001),Comedy|Romance +4169,Blow Dry (a.k.a. Never Better) (2001),Comedy +4170,Hit and Runway (1999),Comedy +4171,Long Night's Journey Into Day (2000),Documentary +4172,Simon Magus (1999),Drama|Fantasy|Mystery|Romance +4173,When Brendan Met Trudy (2000),Comedy|Romance +4174,Avalon (1990),Drama +4175,Gray's Anatomy (1996),Comedy|Drama +4176,Madadayo (a.k.a. Not Yet) (1993),Drama +4177,"Mirror Crack'd, The (1980)",Crime|Mystery|Thriller +4178,Of Mice and Men (1939),Drama +4179,Pixote (1981),Drama +4180,Reform School Girls (1986),Action|Drama +4181,Tapeheads (1988),Comedy +4182,Tuff Turf (1985),Drama +4183,"Unbelievable Truth, The (1989)",Comedy|Drama +4184,"Bishop's Wife, The (1947)",Comedy|Drama|Romance +4185,Elvis: That's the Way It Is (1970),Documentary +4186,"Fortune Cookie, The (1966)",Comedy|Drama|Romance +4187,Lilies of the Field (1963),Drama +4188,Hans Christian Andersen (1952),Children|Musical +4189,"Greatest Story Ever Told, The (1965)",Drama +4190,Elmer Gantry (1960),Drama +4191,Alfie (1966),Comedy|Drama|Romance +4192,Demetrius and the Gladiators (1954),Drama +4193,"Fantasticks, The (1995)",Musical +4194,I Know Where I'm Going! (1945),Drama|Romance|War +4195,"Abominable Dr. Phibes, The (1971)",Horror|Mystery +4196,"Die, Monster, Die! (1965)",Horror|Mystery|Sci-Fi +4197,Real Life (1979),Comedy +4198,Battle Beyond the Stars (1980),Sci-Fi +4199,Death Warrant (1990),Action +4200,Double Impact (1991),Action +4201,"End, The (1978)",Comedy +4202,Fuzz (1972),Drama +4203,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama +4204,Losin' It (1983),Comedy +4205,Mermaids (1990),Comedy|Drama|Romance +4206,"Mighty Quinn, The (1989)",Crime|Mystery +4207,Navy Seals (1990),Action|Adventure|War +4208,Unmade Beds (1997),Documentary +4209,Rated X (2000),Drama +4210,Manhunter (1986),Action|Crime|Drama|Horror|Thriller +4211,Reversal of Fortune (1990),Drama +4212,Death on the Nile (1978),Crime|Mystery +4213,Deepstar Six (1989),Horror|Sci-Fi|Thriller +4214,Revenge of the Nerds (1984),Comedy +4215,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy +4216,Longtime Companion (1990),Drama +4217,4 Little Girls (1997),Documentary +4218,River's Edge (1986),Crime|Drama +4219,Girls Just Want to Have Fun (1985),Comedy +4220,"Longest Yard, The (1974)",Comedy +4221,Necessary Roughness (1991),Comedy +4222,C.H.U.D. (1984),Horror +4223,Enemy at the Gates (2001),Drama|War +4224,Exit Wounds (2001),Action|Thriller +4225,"Dish, The (2001)",Comedy +4226,Memento (2000),Mystery|Thriller +4227,"Brothers, The (2001)",Comedy|Drama +4228,Heartbreakers (2001),Comedy|Crime|Romance +4229,Say It Isn't So (2001),Comedy|Romance +4230,Too Much Sleep (1997),Comedy +4231,Someone Like You (2001),Comedy|Romance +4232,Spy Kids (2001),Action|Adventure|Children|Comedy +4233,Tomcats (2001),Comedy +4234,"Tailor of Panama, The (2001)",Drama|Thriller +4235,Amores Perros (Love's a Bitch) (2000),Drama|Thriller +4236,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary +4237,"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)",Documentary +4238,Along Came a Spider (2001),Action|Crime|Mystery|Thriller +4239,Blow (2001),Crime|Drama +4240,Just Visiting (2001),Comedy|Fantasy +4241,Pokémon 3: The Movie (2001),Animation|Children +4242,Beautiful Creatures (2000),Comedy|Crime|Drama|Thriller +4243,Brigham City (2001),Crime|Drama|Mystery +4244,"Day I Became a Woman, The (Roozi khe zan shodam) (2000)",Drama +4245,Shadow Magic (2000),Drama|Romance +4246,Bridget Jones's Diary (2001),Comedy|Drama|Romance +4247,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance +4248,Josie and the Pussycats (2001),Comedy +4249,Kingdom Come (2001),Comedy +4250,"Body, The (2001)",Drama|Sci-Fi +4251,Chopper (2000),Drama|Thriller +4252,"Circle, The (Dayereh) (2000)",Drama +4253,Lakeboat (2000),Comedy +4254,Crocodile Dundee in Los Angeles (2001),Comedy|Drama +4255,Freddy Got Fingered (2001),Comedy +4256,"Center of the World, The (2001)",Drama +4257,"Girl, The (2000)",Drama|Mystery|Romance +4258,"Low Down, The (2000)",Drama +4259,"Luzhin Defence, The (2000)",Drama|Romance +4260,"Visit, The (2000)",Drama +4261,Lilies (1996),Drama|Fantasy|Romance +4262,Scarface (1983),Action|Crime|Drama +4263,Days of Wine and Roses (1962),Drama +4265,Driven (2001),Action|Thriller +4266,"Forsaken, The (2001)",Horror +4267,One Night at McCool's (2001),Comedy +4268,Town & Country (2001),Comedy +4269,Rat (2000),Comedy|Drama|Romance +4270,"Mummy Returns, The (2001)",Action|Adventure|Comedy|Thriller +4271,Eureka (Yurîka) (2000),Drama +4272,Tuvalu (1999),Comedy +4273,Under the Sand (2000),Drama +4274,Cleopatra (1963),Drama|Romance +4275,Krull (1983),Action|Adventure|Fantasy|Sci-Fi +4276,Lost in America (1985),Comedy +4277,"Lost World, The (1925)",Adventure|Sci-Fi +4278,Triumph of the Will (Triumph des Willens) (1934),Documentary +4279,True Believer (1989),Crime +4280,"World According to Garp, The (1982)",Comedy|Drama|Romance +4281,Candy (1968),Comedy +4282,Fellini Satyricon (1969),Drama|Fantasy +4283,Fellini's Roma (Roma) (1972),Drama +4284,Frankie and Johnny (1966),Comedy +4285,Frankie and Johnny (1991),Comedy|Romance +4286,"Home of Our Own, A (1993)",Drama +4287,Paris When It Sizzles (1964),Comedy|Romance +4288,Pola X (1999),Drama|Romance +4289,"City of Women, The (Città delle donne, La) (1980)",Comedy|Drama +4290,For the Boys (1991),Comedy|Drama|Musical +4291,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime +4292,Norma Rae (1979),Drama +4293,Summer Rental (1985),Comedy +4294,"5,000 Fingers of Dr. T, The (1953)",Children|Fantasy|Musical +4295,Backtrack (Catchfire) (1990),Action|Drama|Thriller +4296,Love Story (1970),Drama|Romance +4297,Pelle the Conqueror (Pelle erobreren) (1987),Drama +4298,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller +4299,"Knight's Tale, A (2001)",Action|Comedy|Romance +4300,Bread and Roses (2000),Drama +4301,Calle 54 (2000),Documentary|Musical +4302,"King Is Alive, The (2000)",Drama +4303,Sordid Lives (2000),Comedy +4304,Startup.com (2001),Documentary +4305,Angel Eyes (2001),Romance|Thriller +4306,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance +4307,"Fast Food, Fast Women (2000)",Comedy|Romance +4308,Moulin Rouge (2001),Drama|Musical|Romance +4309,Petits Freres (Petits Frères) (1999),Drama +4310,Pearl Harbor (2001),Action|Drama|Romance|War +4311,Bloody Angels (1732 Høtten: Marerittet har et postnummer) (1998),Thriller +4312,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama +4313,"Man Who Cried, The (2000)",Drama +4314,Our Song (2000),Drama +4315,Gabriela (2001),Comedy|Drama|Romance +4316,Ice Castles (1978),Drama +4317,Love Potion #9 (1992),Comedy|Romance +4318,Postcards From the Edge (1990),Comedy|Drama +4319,Apache (1954),Western +4320,"Buffalo Bill and the Indians, or Sitting Bull's History Lesson (a.k.a. Buffalo Bill and the Indians) (1976)",Comedy|Western +4321,City Slickers (1991),Comedy|Western +4322,Eight Men Out (1988),Drama +4323,"Horse Soldiers, The (1959)",Adventure|War|Western +4324,"Kentuckian, The (1955)",Drama|Western +4325,"Night, The (Notte, La) (1960)",Drama +4326,Mississippi Burning (1988),Crime|Drama|Thriller +4327,"Magnificent Seven, The (1960)",Adventure|Western +4328,"Return of the Magnificent Seven, The (a.k.a. Return of the Seven) (1966)",Western +4329,Rio Bravo (1959),Western +4330,"Scarlet Empress, The (1934)",Drama +4331,Semi-Tough (1978),Comedy +4332,Suspect (1987),Crime|Drama|Thriller +4333,Throw Momma from the Train (1987),Comedy|Crime +4334,Yi Yi (2000),Drama +4335,Midnight Madness (1980),Comedy +4336,Nightwatch (Nattevagten) (1994),Horror|Thriller +4337,"Sand Pebbles, The (1966)",Drama|Romance|War +4338,Twelve O'Clock High (1949),Drama|War +4339,Von Ryan's Express (1965),Action|Adventure|Drama|War +4340,"Animal, The (2001)",Comedy +4341,What's the Worst That Could Happen? (2001),Comedy +4342,Big Eden (2000),Drama|Romance +4343,Evolution (2001),Comedy|Sci-Fi +4344,Swordfish (2001),Action|Crime|Drama +4345,"Anniversary Party, The (2001)",Drama +4346,Bride of the Wind (2001),Drama|Musical|Romance +4347,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama +4348,Whatever Happened to Harold Smith? (1999),Comedy +4349,Catch-22 (1970),Comedy|War +4350,Forgotten Silver (1996),Comedy|Documentary +4351,Point Break (1991),Action|Crime|Thriller +4352,Shag (1989),Comedy|Drama +4353,Uncommon Valor (1983),Action|War +4354,Unlawful Entry (1992),Crime|Thriller +4355,Youngblood (1986),Action|Drama +4356,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance +4357,How to Marry a Millionaire (1953),Comedy|Drama|Romance +4358,Macabre (1958),Horror|Thriller +4359,"Seven Year Itch, The (1955)",Comedy +4360,There's No Business Like Show Business (1954),Musical +4361,Tootsie (1982),Comedy|Romance +4362,"Boys Next Door, The (1986)",Crime|Drama +4363,Too Late the Hero (1970),Action|War +4364,"Trio, The (Trio, Das) (1998)",Drama|Romance +4365,Pavilion of Women (2000),Drama +4366,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy +4367,Lara Croft: Tomb Raider (2001),Action|Adventure +4368,Dr. Dolittle 2 (2001),Comedy +4369,"Fast and the Furious, The (2001)",Action|Crime|Thriller +4370,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi +4371,Baby Boy (2001),Crime|Drama +4372,Crazy/Beautiful (2001),Drama|Romance +4373,Pootie Tang (2001),Comedy +4374,Let It Snow (1999),Comedy|Romance +4375,"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)",Comedy|Drama +4376,Down From the Mountain (2000),Documentary +4377,Russian Doll (2000),Comedy|Romance +4378,Sexy Beast (2000),Crime|Drama +4379,"South of Heaven, West of Hell (2000)",Drama|Western +4380,"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)",Drama|Romance +4381,"Closet, The (Placard, Le) (2001)",Comedy +4382,Wolves (1999),Documentary|IMAX +4383,"Crimson Rivers, The (Rivières pourpres, Les) (2000)",Crime|Drama|Mystery|Thriller +4384,Lumumba (2000),Drama +4385,Pandaemonium (2000),Drama +4386,Cats & Dogs (2001),Children|Comedy +4387,Kiss of the Dragon (2001),Action +4388,Scary Movie 2 (2001),Comedy +4389,Lost and Delirious (2001),Drama +4390,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller +4391,"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)",Drama +4392,Alice (1990),Comedy|Drama|Fantasy|Romance +4393,Another Woman (1988),Drama +4394,Beach Blanket Bingo (1965),Comedy|Musical +4395,Big Deal on Madonna Street (I Soliti Ignoti) (1958),Comedy|Crime +4396,"Cannonball Run, The (1981)",Action|Comedy +4397,Cannonball Run II (1984),Action|Comedy +4398,Speed Zone! (a.k.a. Cannonball Run III) (1989),Action|Comedy +4399,"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)",Comedy|Drama +4400,Donovan's Brain (1953),Sci-Fi +4401,Donovan's Reef (1963),Action|Comedy|Romance +4402,Dr. Goldfoot and the Bikini Machine (1965),Comedy +4403,"Fall of the House of Usher, The (House of Usher) (1960)",Horror +4404,Faust (1926),Drama|Fantasy|Horror +4405,"Last Laugh, The (Letzte Mann, Der) (1924)",Drama +4406,"Man Who Shot Liberty Valance, The (1962)",Crime|Drama|Western +4407,Salvador (1986),Drama|Thriller|War +4408,September (1987),Drama +4409,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller +4410,Something Wild (1986),Comedy|Crime|Drama +4411,Sons of Katie Elder (1965),Western +4412,"Thing with Two Heads, The (1972)",Comedy|Horror|Sci-Fi +4413,Village of the Giants (1965),Sci-Fi +4414,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller +4415,Cheech & Chong's Nice Dreams (1981),Comedy +4416,"Day the Earth Caught Fire, The (1961)",Sci-Fi +4417,"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)",Horror +4418,Things Are Tough All Over (1982),Comedy +4419,All That Heaven Allows (1955),Drama|Romance +4420,"Barefoot Contessa, The (1954)",Drama +4421,"Blackout, The (1997)",Drama +4422,Cries and Whispers (Viskningar och rop) (1972),Drama +4423,"Entertainer, The (1960)",Drama +4424,"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)",Drama +4425,Howling III: The Marsupials (1987),Comedy|Horror +4426,Kiss Me Deadly (1955),Film-Noir +4427,"Lion in Winter, The (1968)",Drama +4428,"Misfits, The (1961)",Comedy|Drama|Romance|Western +4429,Moby Dick (1956),Drama +4430,Popcorn (1991),Horror +4431,Rembrandt (1936),Drama +4432,Sweet Smell of Success (1957),Drama|Film-Noir +4433,Written on the Wind (1956),Drama +4434,"10th Victim, The (La decima vittima) (1965)",Action|Comedy|Sci-Fi|Thriller +4435,Colonel Redl (Oberst Redl) (1985),Drama +4436,Obsession (1976),Mystery|Thriller +4437,Suspiria (1977),Horror +4438,"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)",Action|Drama|Romance|Thriller +4439,Christiane F. (a.k.a. We Children from Bahnhof Zoo) (Christiane F. - Wir Kinder vom Bahnhof Zoo) (1981),Drama +4440,"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)",Action|Thriller +4441,Game of Death (1978),Action +4442,"Last Dragon, The (1985)",Action|Comedy|Drama +4443,Outland (1981),Action|Sci-Fi|Thriller +4444,"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)",Action|Crime +4445,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX +4446,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi +4447,Legally Blonde (2001),Comedy|Romance +4448,"Score, The (2001)",Action|Drama +4449,Adanggaman (2000),Drama +4450,Bully (2001),Crime|Drama|Thriller +4451,Jump Tomorrow (2001),Comedy|Drama|Romance +4452,Made (2001),Comedy +4453,Michael Jordan to the Max (2000),Documentary|IMAX +4454,More (1998),Animation|Drama|Sci-Fi|IMAX +4455,Thrill Ride: The Science of Fun (1997),Adventure|Documentary|IMAX +4456,Haunted Castle (2001),Animation|Horror|IMAX +4457,All Access (2001),Documentary|Musical|IMAX +4458,Africa: The Serengeti (1994),Documentary|IMAX +4459,Alaska: Spirit of the Wild (1997),Documentary|IMAX +4460,Encounter in the Third Dimension (1999),IMAX +4461,Siegfried & Roy: The Magic Box (1999),Documentary|IMAX +4462,18 Again! (1988),Comedy|Fantasy +4463,1969 (1988),Drama|War +4464,"Accidental Tourist, The (1988)",Comedy|Drama|Romance +4465,"Accused, The (1988)",Drama +4466,Above the Law (1988),Action|Crime|Drama +4467,"Adventures of Baron Munchausen, The (1988)",Adventure|Comedy|Fantasy +4468,Apartment Zero (1988),Drama|Thriller +4469,Appointment with Death (1988),Crime|Mystery +4470,Ariel (1988),Drama +4471,Arthur 2: On the Rocks (1988),Comedy|Romance +4472,Bad Dreams (1988),Horror|Thriller +4473,Bat*21 (1988),Drama|War +4474,Beaches (1988),Comedy|Drama|Musical +4475,"Beast of War, The (Beast, The) (1988)",Drama|War +4476,Big Business (1988),Comedy +4477,Big Top Pee-Wee (1988),Adventure|Children|Comedy +4478,Biloxi Blues (1988),Comedy|Drama +4479,Bird (1988),Drama|Musical +4480,"Blob, The (1988)",Horror|Sci-Fi +4481,"Boost, The (1988)",Drama +4482,"Bright Lights, Big City (1988)",Drama +4483,Caddyshack II (1988),Comedy +4484,Camille Claudel (1988),Drama +4485,Casual Sex? (1988),Comedy +4486,Clean and Sober (1988),Drama +4487,Cocktail (1988),Drama|Romance +4488,Colors (1988),Action|Crime|Drama +4489,Coming to America (1988),Comedy|Romance +4490,"Couch Trip, The (1988)",Comedy +4491,Criminal Law (1988),Thriller +4492,Critters (1986),Comedy|Sci-Fi +4493,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi +4494,Critters 3 (1991),Comedy|Sci-Fi +4495,Crossing Delancey (1988),Comedy|Romance +4496,D.O.A. (1988),Film-Noir|Mystery|Thriller +4497,Dead Heat (1988),Action|Comedy|Horror|Sci-Fi +4498,"Dead Pool, The (1988)",Action|Crime|Thriller +4499,Dirty Rotten Scoundrels (1988),Comedy +4500,Drowning by Numbers (1988),Comedy|Drama +4501,"Elvira, Mistress of the Dark (1988)",Comedy|Horror +4502,Ernest Saves Christmas (1988),Children|Comedy +4503,Everybody's All-American (1988),Romance +4504,Feds (1988),Comedy +4505,For Keeps (1988),Drama|Romance +4506,Frantic (1988),Crime|Mystery|Thriller +4507,Fresh Horses (1988),Drama +4508,Gorillas in the Mist (1988),Drama +4509,"Great Outdoors, The (1988)",Comedy +4510,Heartbreak Hotel (1988),Comedy +4511,High Spirits (1988),Comedy +4512,Hot to Trot (1988),Comedy +4513,"House on Carroll Street, The (1988)",Thriller +4514,Howling IV: The Original Nightmare (1988),Horror +4515,Imagine: John Lennon (1988),Documentary +4516,Johnny Be Good (1988),Comedy +4517,Lady in White (a.k.a. The Mystery of the Lady in White) (1988),Horror|Mystery|Thriller +4518,The Lair of the White Worm (1988),Comedy|Horror +4519,"Land Before Time, The (1988)",Adventure|Animation|Children|Fantasy +4520,License to Drive (1988),Comedy +4521,Little Nikita (1988),Drama +4522,Masquerade (1988),Mystery|Romance|Thriller +4523,Milagro Beanfield War (1988),Comedy|Drama|Fantasy +4524,Moon Over Parador (1988),Comedy +4525,Moving (1988),Comedy +4526,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi +4527,"Night in the Life of Jimmy Reardon, A (1988)",Comedy|Romance +4528,Off Limits (1988),Action|Thriller|War +4529,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama +4530,Permanent Record (1988),Drama +4531,Red Heat (1988),Action +4532,Return of the Living Dead Part II (1988),Comedy|Horror +4533,"Return of the Living Dead, The (1985)",Comedy|Horror|Sci-Fi +4534,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western +4535,"Man from Snowy River, The (1982)",Drama|Romance|Western +4536,Rocket Gibraltar (1988),Drama +4537,Running on Empty (1988),Drama +4538,Salome's Last Dance (1988),Comedy|Drama +4539,Salsa (1988),Musical|Romance +4540,Satisfaction (a.k.a. Girls of Summer) (1988),Comedy|Drama|Romance +4541,"Serpent and the Rainbow, The (1988)",Horror +4542,Shakedown (1988),Action +4543,Shoot to Kill (1988),Action|Adventure +4544,Short Circuit 2 (1988),Comedy|Sci-Fi +4545,Short Circuit (1986),Comedy|Sci-Fi +4546,"Vanishing, The (Spoorloos) (1988)",Drama|Thriller +4547,Stormy Monday (1988),Crime|Drama +4548,Sunset (1988),Action|Comedy|Thriller|Western +4549,Sweet Hearts Dance (1988),Drama +4550,Switching Channels (1988),Comedy +4551,"Telephone, The (1988)",Comedy +4552,"Tetsuo, the Ironman (Tetsuo) (1988)",Action|Horror|Sci-Fi|Thriller +4553,They Live (1988),Action|Sci-Fi|Thriller +4554,To Kill a Priest (1988),Drama +4555,Torch Song Trilogy (1988),Comedy|Drama|Romance +4556,Track 29 (1988),Drama|Mystery +4557,Tucker: The Man and His Dream (1988),Drama +4558,Twins (1988),Comedy +4559,Vice Versa (1988),Comedy +4560,Watchers (1988),Horror|Sci-Fi +4561,Waxwork (1988),Comedy|Horror +4562,Without a Clue (1988),Comedy|Mystery +4563,Young Einstein (1988),Comedy +4564,Always (1989),Drama|Fantasy|Romance +4565,American Ninja (1985),Action|Adventure +4566,American Ninja 2: The Confrontation (1987),Action|Adventure +4567,American Ninja 3: Blood Hunt (1989),Action|Adventure +4568,Best of the Best (1989),Action +4569,Best of the Best 2 (1993),Action +4570,"Big Picture, The (1989)",Comedy|Drama +4571,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi +4572,Black Rain (1989),Action|Crime|Drama +4573,Blaze (1989),Comedy|Drama +4574,Blind Fury (1989),Action|Thriller +4575,Breaking In (1989),Adventure|Comedy +4576,C.H.U.D. II - Bud the Chud (1989),Comedy|Horror +4577,Casualties of War (1989),Drama|War +4578,Chances Are (1989),Comedy|Romance +4579,Cookie (1989),Comedy|Crime +4580,Cyborg (1989),Action|Sci-Fi +4581,Dad (1989),Drama +4582,Dead Bang (1989),Thriller +4583,Disorganized Crime (1989),Action|Comedy +4584,Dream a Little Dream (1989),Comedy|Drama|Romance +4585,"Dream Team, The (1989)",Comedy +4586,"Dry White Season, A (1989)",Drama|Thriller +4587,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi +4588,Eddie and the Cruisers II: Eddie Lives! (1989),Drama|Musical +4589,Eddie and the Cruisers (1983),Drama|Musical|Mystery +4590,Enemies: A Love Story (1989),Drama +4591,Erik the Viking (1989),Adventure|Comedy|Fantasy +4592,"Experts, The (1989)",Comedy +4593,Family Business (1989),Comedy +4594,Farewell to the King (1989),Action|War +4595,Fat Man and Little Boy (1989),Drama +4596,The Girl in a Swing (1988),Drama|Romance +4597,Gleaming the Cube (1989),Action|Drama|Mystery +4598,Going Overboard (1989),Comedy +4599,Great Balls of Fire! (1989),Drama +4600,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama +4601,Happy Together (1989),Drama|Romance +4602,Harlem Nights (1989),Comedy|Crime|Romance +4603,Her Alibi (1989),Comedy|Romance +4604,Homer & Eddie (1989),Drama +4605,How to Get Ahead in Advertising (1989),Comedy|Fantasy +4606,Immediate Family (1989),Drama +4607,In Country (1989),Drama +4608,"Innocent Man, An (1989)",Crime|Drama +4609,Jacknife (1989),Drama +4610,"January Man, The (1989)",Comedy|Crime|Mystery|Thriller +4611,Johnny Handsome (1989),Crime|Drama +4612,Jesus of Montreal (Jésus de Montréal) (1989),Drama +4613,K-9 (1989),Action|Comedy|Crime +4614,Kickboxer (1989),Action +4615,Last Exit to Brooklyn (1989),Drama +4616,Lean on Me (1989),Drama +4617,Let It Ride (1989),Comedy +4618,Leviathan (1989),Horror|Sci-Fi|Thriller +4619,Little Monsters (1989),Comedy +4620,Lock Up (1989),Action|Adventure|Crime|Drama|Thriller +4621,Look Who's Talking (1989),Comedy|Romance +4622,Loverboy (1989),Comedy +4623,Major League (1989),Comedy +4624,Meet the Feebles (1989),Animation|Comedy|Musical +4625,Millennium (1989),Drama|Sci-Fi|Thriller +4626,Miracle Mile (1989),Drama|Romance|Sci-Fi +4627,Miss Firecracker (1989),Comedy +4628,New York Stories (1989),Comedy|Drama +4629,Next of Kin (1989),Action|Crime|Thriller +4630,No Holds Barred (1989),Action +4631,Old Gringo (1989),Drama +4632,"Package, The (1989)",Action|Thriller +4633,Parents (1989),Comedy|Drama|Horror +4634,Penn & Teller Get Killed (1989),Adventure|Comedy +4635,Pink Cadillac (1989),Action|Comedy|Drama +4636,"Punisher, The (1989)",Action +4637,Red Scorpion (1989),Action +4638,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller +4639,America's Sweethearts (2001),Comedy|Romance +4640,Brother (2000),Action|Crime|Thriller +4641,Ghost World (2001),Comedy|Drama +4642,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical +4643,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi +4644,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance +4645,Cure (1997),Crime|Horror|Thriller +4646,Greenfingers (2000),Comedy|Drama +4647,Jackpot (2001),Drama +4648,"Monkey's Mask, The (2000)",Crime|Mystery +4649,Wet Hot American Summer (2001),Comedy +4650,Relentless (1989),Thriller +4651,Renegades (1989),Action +4652,"Return of Swamp Thing, The (1989)",Comedy|Horror|Sci-Fi +4653,"Return of the Musketeers, The (1989)",Adventure|Comedy +4654,Road House (1989),Action|Drama +4655,Romero (1989),Drama +4656,Rosalie Goes Shopping (1989),Comedy +4657,Rude Awakening (1989),Comedy +4658,Santa Sangre (1989),Drama|Horror|Mystery|Thriller +4659,Scandal (1989),Drama +4660,Scenes from the Class Struggle in Beverly Hills (1989),Comedy +4661,Sea of Love (1989),Crime|Drama|Thriller +4662,"See No Evil, Hear No Evil (1989)",Comedy|Crime +4663,She's Out of Control (1989),Comedy +4664,Shirley Valentine (1989),Comedy|Romance +4665,Shocker (1989),Horror +4666,Skin Deep (1989),Comedy +4667,Slaves of New York (1989),Drama +4668,Some Girls (1988),Comedy|Drama|Romance +4669,Stepfather II (1989),Horror|Thriller +4670,"Stepfather, The (1987)",Horror|Thriller +4671,Sweetie (1989),Drama +4672,"Tall Guy, The (1989)",Comedy|Romance +4673,Tango & Cash (1989),Action|Comedy|Crime|Thriller +4674,Tap (1989),Drama +4675,Three Fugitives (1989),Action|Comedy +4676,Troop Beverly Hills (1989),Comedy +4677,Turner & Hooch (1989),Comedy|Crime +4678,UHF (1989),Comedy +4679,Uncle Buck (1989),Comedy +4680,Vampire's Kiss (1989),Comedy|Fantasy|Horror +4681,"War of the Roses, The (1989)",Comedy|Drama +4682,Warlock (1989),Action|Horror +4683,"Wizard, The (1989)",Adventure|Children|Comedy|Drama +4684,Worth Winning (1989),Comedy +4685,Warlock: The Armageddon (1993),Horror +4686,Weekend at Bernie's II (1993),Adventure|Comedy +4687,Billy Liar (1963),Comedy +4688,Black Robe (1991),Adventure|Drama +4689,"Cat o' Nine Tails, The (Gatto a nove code, Il) (1971)",Mystery|Thriller +4690,"Cotton Club, The (1984)",Crime|Musical +4691,Def-Con 4 (1985),Action|Sci-Fi +4692,"Hotel New Hampshire, The (1984)",Drama +4693,Idiot Box (1996),Crime|Drama +4694,Left Luggage (1998),Drama +4695,Who'll Stop the Rain (1978),Crime|Drama +4696,"Zorro, the Gay Blade (1981)",Comedy +4697,Basket Case (1982),Comedy|Horror +4698,Orphans (1997),Comedy|Drama +4699,Original Sin (2001),Drama|Romance|Thriller +4700,"Princess Diaries, The (2001)",Children|Comedy|Romance +4701,Rush Hour 2 (2001),Action|Comedy +4702,Thomas in Love (Thomas est Amoureux) (2000),Comedy|Drama +4703,Chocolat (1988),Drama +4704,Hatari! (1962),Adventure|Comedy +4705,"Cage aux Folles, La (1978)",Comedy +4706,"Cage aux Folles II, La (1980)",Comedy +4707,Liebestraum (1991),Mystery|Thriller +4708,Marat/Sade (1966),Drama|Musical +4709,Paint Your Wagon (1969),Comedy|Musical|Western +4710,"Shootist, The (1976)",Drama|Western +4711,Theremin: An Electronic Odyssey (1993),Documentary +4712,"Wild Child, The (Enfant sauvage, L') (1970)",Drama +4713,Altered States (1980),Drama|Sci-Fi +4714,Any Which Way You Can (1980),Comedy +4715,"Awakening, The (1980)",Horror +4716,Bad Timing: A Sensual Obsession (1980),Drama +4717,"Battle Creek Brawl (Big Brawl, The) (1980)",Action|Comedy +4718,American Pie 2 (2001),Comedy +4719,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller +4720,"Others, The (2001)",Drama|Horror|Mystery|Thriller +4721,American Outlaws (2001),Action|Comedy|Western +4722,All Over the Guy (2001),Comedy +4723,"Deep End, The (2001)",Drama +4724,On the Edge (2001),Drama +4725,Session 9 (2001),Horror|Thriller +4726,"Turandot Project, The (2000)",Documentary +4727,Captain Corelli's Mandolin (2001),Drama|Romance|War +4728,Rat Race (2001),Comedy +4729,Aberdeen (2000),Drama +4731,Innocence (2000),Drama +4732,Bubble Boy (2001),Comedy +4733,"Curse of the Jade Scorpion, The (2001)",Comedy +4734,Jay and Silent Bob Strike Back (2001),Adventure|Comedy +4735,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller +4736,Summer Catch (2001),Comedy|Drama|Romance +4737,"American Rhapsody, An (2001)",Drama +4738,Happy Accidents (2000),Romance|Sci-Fi +4739,Lisa Picard is Famous (a.k.a. Famous) (2000),Comedy|Drama +4740,Maybe Baby (2000),Comedy|Romance +4741,Together (Tillsammans) (2000),Comedy|Drama|Romance +4742,Punks (2000),Comedy +4743,Tortilla Soup (2001),Comedy|Romance +4744,Jeepers Creepers (2001),Horror +4745,O (2001),Drama +4746,Waking Up in Reno (2002),Comedy|Romance +4747,Speedway Junky (1999),Drama +4748,3 Ninjas (1992),Action|Children|Comedy +4749,3 Ninjas Kick Back (1994),Action|Children|Comedy +4750,3 Ninjas Knuckle Up (1995),Action|Children +4751,"Hunter, The (1980)",Action|Thriller +4752,Maniac (1980),Horror +4753,Vamp (1986),Comedy|Horror +4754,"Wicker Man, The (1973)",Drama|Horror|Mystery|Thriller +4755,Wish Upon a Star (1996),Comedy +4756,"Musketeer, The (2001)",Action|Adventure|Drama|Romance +4757,Rock Star (2001),Comedy|Drama|Musical +4758,Soul Survivors (a.k.a. The Killer Cut) (2001),Horror|Thriller +4759,Two Can Play That Game (2001),Comedy|Drama +4760,Bounce: Behind the Velvet Rope (2000),Documentary +4761,Diamond Men (2001),Drama +4762,Djomeh (2000),Drama +4763,"Iron Ladies, The (Satree lek) (2000)",Comedy +4764,Kill Me Later (2001),Romance|Thriller +4765,L.I.E. (2001),Drama +4766,"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)",Crime|Drama|Romance +4767,Abbott and Costello Meet the Mummy (1955),Comedy|Horror +4768,"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)",Crime|Mystery|Thriller +4769,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary +4770,"Glass House, The (2001)",Thriller +4771,Hardball (2001),Drama +4772,Dinner Rush (2000),Drama +4773,Haiku Tunnel (2001),Comedy +4774,Big Trouble (2002),Comedy|Crime +4775,Glitter (2001),Drama|Musical|Romance +4776,Training Day (2001),Crime|Drama|Thriller +4777,"American Astronaut, The (2001)",Comedy|Musical|Sci-Fi +4778,Children Underground (2001),Documentary +4779,Go Tigers! (2001),Documentary +4780,Liam (2000),Drama +4781,Megiddo: The Omega Code 2 (2001),Action|Adventure|Fantasy|Sci-Fi|Thriller +4782,Sidewalks of New York (2001),Comedy|Romance +4783,"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)",Documentary +4784,"French Lieutenant's Woman, The (1981)",Drama +4785,"Great Silence, The (Grande silenzio, Il) (1969)",Drama|Western +4786,"Legend of Hell House, The (1973)",Horror|Thriller +4787,Little Man Tate (1991),Drama +4788,Moscow Does Not Believe in Tears (Moskva slezam ne verit) (1979),Drama|Romance +4789,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller +4790,"Return of a Man Called Horse, The (1976)",Western +4791,Valdez Is Coming (1971),Western +4792,13 Ghosts (1960),Horror +4793,Montenegro (1981),Comedy|Drama +4794,Opera (1987),Crime|Horror|Mystery +4795,Father Goose (1964),Adventure|Comedy|Romance|War +4796,"Grass Is Greener, The (1960)",Comedy|Romance +4797,"Hole in the Head, A (1959)",Comedy|Musical +4798,Indiscreet (1958),Comedy|Romance +4799,"It's a Mad, Mad, Mad, Mad World (1963)",Comedy +4800,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller +4801,"Little Foxes, The (1941)",Drama +4802,Operation Petticoat (1959),Action|Comedy|Romance|War +4803,Play Misty for Me (1971),Drama|Thriller +4804,Pocketful of Miracles (1961),Comedy|Drama +4805,Sayonara (1957),Drama +4806,"Shop on Main Street, The (Obchod na korze) (1965)",Drama +4807,Spring Break (1983),Comedy +4808,"Vanishing, The (1993)",Mystery|Thriller +4809,Silkwood (1983),Drama +4810,I Never Promised You a Rose Garden (1977),Drama +4811,Quadrophenia (1979),Drama|Musical +4812,SpaceCamp (1986),Adventure|Sci-Fi +4813,When Worlds Collide (1951),Sci-Fi +4814,Don't Say a Word (2001),Thriller +4815,Hearts in Atlantis (2001),Drama +4816,Zoolander (2001),Comedy +4817,Born Romantic (2000),Comedy|Drama|Romance +4818,Extreme Days (2001),Action|Adventure|Comedy|Drama +4819,Go Figure (Va savoir) (2001),Comedy|Drama|Romance +4820,Won't Anybody Listen? (2000),Documentary +4821,Joy Ride (2001),Adventure|Thriller +4822,Max Keeble's Big Move (2001),Children|Comedy +4823,Serendipity (2001),Comedy|Romance +4824,Grateful Dawg (2000),Documentary +4825,"Swamp, The (Ciénaga, La) (2001)",Comedy|Drama +4826,"Big Red One, The (1980)",Action|Adventure|Drama|War +4827,"Boogeyman, The (1980)",Horror +4828,"Party, The (Boum, La) (1980)",Comedy|Romance +4829,Lady in a Cage (1964),Drama|Thriller +4830,Brubaker (1980),Crime|Drama +4831,Can't Stop the Music (1980),Comedy|Musical +4832,Carny (1980),Drama +4833,"Changeling, The (1980)",Horror|Mystery|Thriller +4834,Cheech & Chong's Next Movie (1980),Comedy +4835,Coal Miner's Daughter (1980),Drama +4836,"Competition, The (1980)",Drama|Romance +4837,Cruising (1980),Crime|Drama|Thriller +4838,D.O.A. (1980),Documentary +4839,Death Ship (1980),Horror +4840,"Last Metro, The (Dernier métro, Le) (1980)",Drama|Romance +4841,Divine Madness! (1980),Comedy +4842,"Dogs of War, The (1980)",Drama|War +4843,"Learning Curve, The (1999)",Crime|Drama|Thriller +4844,Bandits (2001),Comedy|Crime|Romance +4845,Corky Romano (2001),Comedy|Crime +4846,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy +4847,Fat Girl (À ma soeur!) (2001),Drama +4848,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller +4849,My First Mister (2001),Comedy|Drama +4850,Spriggan (Supurigan) (1998),Action|Animation|Sci-Fi +4851,Things Behind the Sun (2001),Drama +4852,Bones (2001),Horror +4853,Brannigan (1975),Action +4854,Clambake (1967),Musical +4855,Dirty Harry (1971),Action|Crime|Thriller +4856,Destiny in Space (1994),Documentary|IMAX +4857,Fiddler on the Roof (1971),Drama|Musical +4858,Hail Columbia! (1982),Documentary|IMAX +4859,Kansas (1988),Crime|Drama +4860,Making the Grade (1984),Comedy +4861,Mission to Mir (1997),Documentary|IMAX +4862,Not Without My Daughter (1991),Drama +4863,Female Trouble (1975),Comedy|Crime +4864,Titanica (1992),Documentary|IMAX +4865,From Hell (2001),Crime|Horror|Mystery|Thriller +4866,"Last Castle, The (2001)",Action +4867,Riding in Cars with Boys (2001),Comedy|Drama +4868,Bangkok Dangerous (2000),Action|Crime|Romance +4869,Burnt Money (Plata Quemada) (2000),Action|Crime|Drama|Romance|Thriller +4870,Dancing at the Blue Iguana (2000),Drama +4871,Focus (2001),Drama +4872,Intimacy (2000),Drama +4873,Waking Life (2001),Animation|Drama|Fantasy +4874,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi +4875,On the Line (2001),Comedy|Romance +4876,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller +4877,Better Than Sex (2000),Comedy|Romance +4878,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller +4879,High Heels and Low Lifes (2001),Action|Comedy|Crime|Drama +4880,Life as a House (2001),Drama +4881,"Man Who Wasn't There, The (2001)",Crime|Drama +4882,Ouch (Aïe) (2000),Comedy +4883,"Town is Quiet, The (Ville est tranquille, La) (2000)",Drama +4884,Trembling Before G-d (2001),Documentary +4885,Domestic Disturbance (2001),Thriller +4886,"Monsters, Inc. (2001)",Adventure|Animation|Children|Comedy|Fantasy +4887,"One, The (2001)",Action|Sci-Fi|Thriller +4888,Tape (2001),Drama +4889,Heist (2001),Crime|Drama +4890,Shallow Hal (2001),Comedy|Fantasy|Romance +4891,King of the Jungle (2000),Drama|Thriller +4892,Maze (2000),Romance +4893,When a Stranger Calls (1979),Horror|Thriller +4894,Timerider: The Adventure of Lyle Swann (1982),Action|Adventure|Sci-Fi|Western +4895,"Wash, The (2001)",Comedy +4896,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy +4897,"Fluffer, The (2001)",Drama|Romance +4898,Novocaine (2001),Comedy|Crime|Mystery|Thriller +4899,Black Knight (2001),Adventure|Comedy|Fantasy +4900,Out Cold (2001),Comedy +4901,Spy Game (2001),Action|Crime|Drama|Thriller +4902,"Devil's Backbone, The (Espinazo del diablo, El) (2001)",Drama|Fantasy|Horror|Thriller|War +4903,In the Bedroom (2001),Drama +4904,"Way We Laughed, The (Così Ridevano) (1998)",Drama +4905,Hell Up in Harlem (1973),Crime +4906,Bucktown (1975),Crime|Drama +4907,Across 110th Street (1972),Action|Crime|Drama +4908,"Little Soldier, The (Petit soldat, Le) (1963)",Drama|War +4909,"Incredible Shrinking Woman, The (1981)",Comedy|Sci-Fi +4910,Katie Tippel (Keetje Tippel) (1975),Drama +4911,Jabberwocky (1977),Adventure|Comedy|Fantasy +4912,Funny Girl (1968),Drama|Musical|Romance +4913,Circus of Horrors (1960),Horror +4914,Breathless (À bout de souffle) (1960),Crime|Drama|Romance +4915,"Beastmaster, The (1982)",Action|Adventure|Fantasy +4916,Midway (1976),Drama|War +4917,MacArthur (1977),Drama +4918,"Young Lions, The (1958)",Drama|War +4919,Subway (1985),Crime|Drama|Romance|Thriller +4920,"Now, Voyager (1942)",Drama|Romance +4921,Little Women (1933),Drama|Romance +4922,Halls of Montezuma (1950),Adventure|War +4923,Guadalcanal Diary (1943),Action|War +4924,Anzio (1968),War +4925,"Cheap Detective, The (1978)",Comedy +4926,Everybody's Famous! (Iedereen beroemd!) (2000),Comedy|Drama|Musical +4927,"Last Wave, The (1977)",Fantasy|Mystery|Thriller +4928,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama +4929,"Toy, The (1982)",Comedy +4930,Funeral in Berlin (1966),Action|Drama|Thriller +4931,Don't Go in the House (1980),Horror +4932,Dressed to Kill (1980),Mystery|Thriller +4933,"Earthling, The (1980)",Adventure|Drama +4934,"Exterminator, The (1980)",Action|Crime|Thriller|War +4935,"Falls, The (1980)",Drama|Sci-Fi +4936,Fame (1980),Drama|Musical +4937,Fatso (1980),Comedy +4938,"Aviator's Wife, The (La femme de l'aviateur) (1981)",Drama +4939,"Final Countdown, The (1980)",Action|Sci-Fi +4940,"First Deadly Sin, The (1980)",Thriller +4941,Flash Gordon (1980),Action|Adventure|Sci-Fi +4942,"Angry Red Planet, The (1959)",Sci-Fi +4943,At the Earth's Core (1976),Adventure|Sci-Fi +4944,Empire of the Ants (1977),Horror|Sci-Fi +4945,"Enforcer, The (1976)",Crime +4946,"Eye for an Eye, An (1981)",Action|Crime|Thriller +4947,"Gauntlet, The (1977)",Action +4948,I Bury the Living (1958),Horror +4949,Invasion U.S.A. (1985),Action|Thriller +4950,Lone Wolf McQuade (1983),Action +4951,Lord of the Flies (1990),Adventure|Drama|Thriller +4952,Morons From Outer Space (1985),Comedy|Sci-Fi +4953,"People That Time Forgot, The (1977)",Adventure|Sci-Fi +4954,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime +4955,"Sicilian, The (1987)",Crime|Drama +4956,"Stunt Man, The (1980)",Action|Adventure|Comedy|Drama|Romance|Thriller +4957,Sudden Impact (1983),Crime|Thriller +4958,Behind Enemy Lines (2001),Action|Drama|War +4959,"Affair of the Necklace, The (2001)",Drama +4960,"Independent, The (2000)",Comedy +4961,Pornstar: The Legend of Ron Jeremy (2001),Documentary +4962,Texas Rangers (2001),Adventure|Western +4963,Ocean's Eleven (2001),Crime|Thriller +4964,Baran (2001),Adventure|Drama|Romance +4965,"Business of Strangers, The (2001)",Action|Drama|Thriller +4966,"Incredible Shrinking Man, The (1957)",Sci-Fi|Thriller +4967,No Man's Land (2001),Drama|War +4968,Piñero (2001),Drama +4969,And Then There Were None (1945),Crime|Mystery +4970,"Blue Angel, The (Blaue Engel, Der) (1930)",Drama +4971,Moscow on the Hudson (1984),Comedy|Drama +4972,"Owl and the Pussycat, The (1970)",Comedy +4973,"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)",Comedy|Romance +4974,Not Another Teen Movie (2001),Comedy +4975,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller +4976,Iris (2001),Drama +4977,Kandahar (Safar e Ghandehar) (2001),Drama +4978,Lantana (2001),Drama|Mystery|Thriller +4979,"Royal Tenenbaums, The (2001)",Comedy|Drama +4980,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi +4981,Clockwise (1986),Comedy +4982,"Crawling Eye, The (a.k.a. Trollenberg Terror, The) (1958)",Horror|Sci-Fi +4983,"Holcroft Covenant, The (1985)",Drama|Thriller +4984,Morgan! (1966),Comedy|Drama|Fantasy +4985,Sheena (1984),Action|Adventure|Fantasy +4986,Silent Rage (1982),Action|Sci-Fi +4987,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi +4988,White Water Summer (1987),Adventure +4989,How High (2001),Comedy +4990,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy +4991,Joe Somebody (2001),Comedy|Drama|Romance +4992,Kate & Leopold (2001),Comedy|Romance +4993,"Lord of the Rings: The Fellowship of the Ring, The (2001)",Adventure|Fantasy +4994,"Majestic, The (2001)",Comedy|Drama|Romance +4995,"Beautiful Mind, A (2001)",Drama|Romance +4996,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy +4997,"Convent, The (2000)",Horror|Sci-Fi +4998,"Defiant Ones, The (1958)",Adventure|Crime|Drama|Thriller +4999,Dodsworth (1936),Drama|Romance +5000,Medium Cool (1969),Drama|Romance +5001,Sahara (1943),Action|Drama|War +5002,Fritz the Cat (1972),Animation +5003,"Nine Lives of Fritz the Cat, The (1974)",Animation +5004,"Party, The (1968)",Comedy +5005,Separate Tables (1958),Drama +5006,Sex and Zen (Rou pu Tuan zhi tou Qing bao Jian) (1992),Action|Adventure|Comedy|Fantasy +5007,Topkapi (1964),Adventure|Comedy|Thriller +5008,Witness for the Prosecution (1957),Drama|Mystery|Thriller +5009,Ali (2001),Drama +5010,Black Hawk Down (2001),Action|Drama|War +5011,Charlotte Gray (2001),Drama|Romance +5012,Yentl (1983),Drama|Musical|Romance +5013,Gosford Park (2001),Comedy|Drama|Mystery +5014,I Am Sam (2001),Drama +5015,Monster's Ball (2001),Drama|Romance +5016,"Shipping News, The (2001)",Drama +5017,"Big Heat, The (1953)",Drama|Film-Noir +5018,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller +5019,Queen Bee (1955),Drama +5020,Silent Trigger (1996),Action|Drama +5021,Murder by Death (1976),Comedy|Crime|Mystery|Thriller +5022,"Servant, The (1963)",Drama +5023,"Waterdance, The (1992)",Drama +5024,Come Undone (Presque Rien) (2000),Drama|Romance +5025,Orange County (2002),Comedy +5026,"Brotherhood of the Wolf (Pacte des loups, Le) (2001)",Action|Mystery|Thriller +5027,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller +5028,What Time Is It There? (Ni neibian jidian) (2001),Drama +5029,China Moon (1994),Thriller +5030,"Good Wife, The (1987)",Drama +5031,Maria's Lovers (1984),Drama|Romance +5032,Romantic Comedy (1983),Comedy +5033,"Russia House, The (1990)",Drama|Thriller +5034,"Truly, Madly, Deeply (1991)",Drama|Romance +5035,Wuthering Heights (1970),Drama +5036,California Suite (1978),Comedy +5037,"Long Gray Line, The (1955)",Drama +5038,"Flight of Dragons, The (1982)",Adventure|Animation|Children|Drama|Fantasy +5039,Dragonslayer (1981),Action|Adventure|Fantasy +5040,Conan the Destroyer (1984),Action|Adventure|Fantasy +5041,Fire and Ice (1983),Animation|Fantasy +5042,Forbidden Zone (1980),Musical|Sci-Fi +5043,"Formula, The (1980)",Thriller +5044,Foxes (1980),Drama +5045,Galaxina (1980),Comedy|Sci-Fi +5046,Impostor (2002),Action|Drama|Sci-Fi|Thriller +5047,Kung Pow: Enter the Fist (2002),Action|Comedy +5048,Snow Dogs (2002),Adventure|Children|Comedy +5049,48 Hrs. (1982),Action|Comedy|Crime|Drama +5050,"Farewell, The (Abschied - Brechts letzter Sommer) (2000)",Drama +5051,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance +5052,Time of Favor (Ha-Hesder) (2000),Drama|War +5053,Blankman (1994),Comedy +5054,Brainstorm (1983),Sci-Fi|Thriller +5055,Dragon: The Bruce Lee Story (1993),Action|Drama +5056,"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)",Crime|Drama +5057,4 for Texas (1963),Comedy|Western +5058,Heart of Glass (Herz aus Glas) (1976),Drama +5059,Little Dieter Needs to Fly (1997),Documentary +5060,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War +5061,Mrs. Soffel (1984),Drama|Romance +5062,Seconds (1966),Mystery|Sci-Fi|Thriller +5063,One-Eyed Jacks (1961),Western +5064,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller +5065,"Mothman Prophecies, The (2002)",Drama|Fantasy|Horror|Mystery|Thriller +5066,"Walk to Remember, A (2002)",Drama|Romance +5067,American Adobo (2000),Comedy +5068,Beijing Bicycle (Shiqi sui de dan che) (2001),Drama +5069,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy +5070,"Hey, Happy! (2001)",Drama|Sci-Fi +5071,Maelström (2000),Drama|Romance +5072,Metropolis (2001),Animation|Sci-Fi +5073,"Son's Room, The (Stanza del figlio, La) (2001)",Drama +5074,Storytelling (2001),Comedy|Drama +5075,Waydowntown (2000),Comedy +5076,"Adventures of Huck Finn, The (1993)",Adventure|Children|Comedy|Drama +5077,Cousins (1989),Comedy|Romance +5078,Falling in Love (1984),Drama|Romance +5079,Young at Heart (1954),Drama|Musical|Romance +5080,Slackers (2002),Comedy +5081,Birthday Girl (2001),Drama|Romance +5082,"Rumor of Angels, A (2000)",Drama +5083,Rare Birds (2001),Comedy|Drama +5084,Caged Heat (1974),Action +5085,Carmen Jones (1954),Drama|Musical +5086,"Five Heartbeats, The (1991)",Drama|Musical +5087,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance +5088,"Going Places (Valseuses, Les) (1974)",Comedy|Crime|Drama +5089,Honky Tonk Freeway (1981),Comedy +5090,"Hunchback of Notre Dame, The (Notre Dame de Paris) (1956)",Drama +5091,The Man from Acapulco (1973),Action|Comedy|Fantasy|Romance +5092,Big Fat Liar (2002),Children|Comedy +5093,Collateral Damage (2002),Action|Thriller +5094,Rollerball (2002),Action|Sci-Fi +5095,"Scotland, Pa. (2001)",Comedy|Crime +5096,Baby's Day Out (1994),Comedy +5097,Bright Eyes (1934),Comedy|Drama +5098,Dimples (1936),Musical +5099,Heidi (1937),Children|Drama +5100,"Man Who Loved Women, The (1983)",Comedy +5101,Richard Pryor Here and Now (1983),Comedy|Documentary +5102,Rookie of the Year (1993),Comedy|Fantasy +5103,"Sandlot, The (1993)",Children|Comedy|Drama +5104,Cows (Vacas) (1991),Drama +5105,Don't Look Now (1973),Drama|Horror|Thriller +5106,Crossroads (2002),Comedy|Musical|Romance +5107,Hart's War (2002),Drama|War +5108,John Q (2002),Crime|Drama|Thriller +5109,Return to Never Land (2002),Adventure|Animation|Children +5110,Super Troopers (2001),Comedy|Crime|Mystery +5111,"Good Son, The (1993)",Drama|Thriller +5112,Last Orders (2001),Drama +5113,After the Fox (Caccia alla volpe) (1966),Comedy|Crime +5114,"Bad and the Beautiful, The (1952)",Drama +5115,Cast a Giant Shadow (1966),Adventure|War +5116,Designing Woman (1957),Comedy +5117,Funny Lady (1975),Comedy|Musical +5118,"Heartbreak Kid, The (1972)",Comedy|Romance +5119,Saturday Night and Sunday Morning (1960),Drama +5120,Sleuth (1972),Comedy|Mystery|Thriller +5121,Stroszek (1977),Comedy|Drama +5122,Summer of '42 (1971),Drama +5123,"Touch of Class, A (1973)",Comedy +5124,Town Without Pity (1961),Drama +5125,Used Cars (1980),Comedy +5126,"Deadly Mantis, The (1957)",Horror|Sci-Fi +5127,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller +5128,Queen of the Damned (2002),Fantasy|Horror +5129,Big Bad Love (2001),Drama +5130,Green Dragon (2001),Drama +5131,How to Kill Your Neighbor's Dog (2000),Comedy|Drama +5132,"Last Man, The (2000)",Comedy|Romance|Sci-Fi +5133,Maryam (2000),Drama +5134,Mean Machine (2001),Comedy|Drama +5135,Monsoon Wedding (2001),Comedy|Romance +5136,Wendigo (2001),Drama|Horror +5137,Scratch (2001),Documentary +5138,State Property (2002),Action|Crime|Drama +5139,"Bad News Bears, The (1976)",Comedy +5140,"Bad News Bears Go to Japan, The (1978)",Comedy +5141,"Bad News Bears in Breaking Training, The (1977)",Comedy +5142,"Firemen's Ball, The (Horí, má panenko) (1967)",Comedy|Drama +5143,"Lone Ranger, The (1956)",Adventure|Western +5144,"Lone Ranger and the Lost City of Gold, The (1958)",Adventure|Mystery|Western +5145,Loves of a Blonde (Lásky jedné plavovlásky) (1965),Comedy|Drama|Romance +5146,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi +5147,Wild Strawberries (Smultronstället) (1957),Drama +5148,Black Like Me (1964),Drama +5149,Cattle Queen of Montana (1954),Western +5150,Under the Skin (1997),Drama +5151,40 Days and 40 Nights (2002),Comedy|Romance +5152,We Were Soldiers (2002),Action|Drama|War +5153,Trouble Every Day (2001),Drama|Horror|Thriller +5154,"Arena, The (a.k.a. Naked Warriors) (1974)",Action|Adventure +5155,"Big Bird Cage, The (1972)",Action +5156,"Big Doll House, The (1971)",Action +5157,"Church, The (Chiesa, La) (1989)",Drama|Fantasy|Horror +5158,Cross Creek (1983),Drama +5159,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical +5160,Night of the Zombies (a.k.a. Hell of the Living Dead) (Virus) (1980),Action|Horror|Thriller +5161,Intersection (1994),Drama|Romance +5162,"Jo Jo Dancer, Your Life is Calling (1986)",Comedy|Drama +5163,StageFright: Aquarius (1987),Horror|Thriller +5164,"Troll in Central Park, A (1994)",Animation|Children +5165,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror +5166,"Amazing Adventure, The (a.k.a. The Amazing Quest of Ernest Bliss) (1936)",Comedy|Drama|Romance +5167,My Favorite Brunette (1947),Comedy|Mystery +5168,Royal Wedding (1951),Comedy|Musical|Romance +5169,Scarlet Street (1945),Film-Noir +5170,All About the Benjamins (2002),Action|Comedy|Crime +5171,"Time Machine, The (2002)",Action|Adventure|Sci-Fi +5172,Full Frontal (2002),Comedy|Drama|Romance +5173,Divorcing Jack (1998),Comedy|Thriller +5174,"Field, The (1990)",Drama +5175,Hidden Agenda (1990),Drama|Thriller +5176,Luminarias (2000),Comedy|Romance +5177,"Magnificent Ambersons, The (1942)",Drama|Romance +5178,Fun (1994),Crime|Drama +5179,Gloria (1980),Drama|Thriller +5180,"Great Rock 'n' Roll Swindle, The (1980)",Documentary +5181,Hangar 18 (1980),Action|Sci-Fi|Thriller +5182,Hawk the Slayer (1980),Action|Fantasy +5183,He Knows You're Alone (a.k.a. Blood Wedding) (1980),Horror|Thriller +5184,Heaven's Gate (1980),Western +5185,Hero at Large (1980),Comedy +5186,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance +5187,Hopscotch (1980),Comedy +5188,How to Beat the High Cost of Living (1980),Comedy +5189,Humanoids from the Deep (1980),Horror|Sci-Fi +5190,Inside Moves (1980),Drama +5192,"Island, The (1980)",Adventure|Horror|Thriller +5193,"Jazz Singer, The (1980)",Musical +5194,Who's Singin' Over There? (a.k.a. Who Sings Over There) (Ko to tamo peva) (1980),Comedy +5195,"Zombie Lake (Lac des morts vivants, Le) (Zombies Lake) (Lake of the Living Dead, The) (1981)",Horror +5196,Lion of the Desert (1980),War +5197,Little Darlings (1980),Drama +5198,"Long Good Friday, The (1980)",Drama|Thriller +5199,"Long Riders, The (1980)",Western +5200,"Man Who Saw Tomorrow, The (1980)",Documentary +5201,Eaten Alive (Mangiati Vivi) (1980),Adventure|Horror +5202,Mon oncle d'Amérique (1980),Drama +5203,The Monster Club (1981),Comedy|Horror +5204,Death Watch (La Mort en Direct) (1980),Drama|Sci-Fi +5205,Motel Hell (1980),Comedy|Horror +5206,Mother's Day (1980),Comedy|Horror +5207,"Mountain Men, The (1980)",Adventure|Western +5208,"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)",Drama|War +5209,Ffolkes (1979),Action|Adventure|Thriller +5210,"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)",Horror +5211,"Nude Bomb, The (1980)",Comedy +5212,"Octagon, The (1980)",Action +5213,"Oh, God! Book II (1980)",Comedy +5214,"Oh, God! (1977)",Comedy|Fantasy +5215,"Oh, Heavenly Dog! (1980)",Comedy|Crime +5216,"Pepi, Luci, Bom (Pepi, Luci, Bom y Otras Chicas del Montón) (1980)",Comedy +5217,Super Fuzz (a.k.a. Super Snooper) (Poliziotto superpiù) (1980),Action|Comedy|Sci-Fi +5218,Ice Age (2002),Adventure|Animation|Children|Comedy +5219,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller +5220,Showtime (2002),Action|Comedy +5221,Harrison's Flowers (2000),Drama +5222,Kissing Jessica Stein (2001),Comedy|Romance +5223,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama +5224,Promises (2001),Documentary +5225,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance +5226,All the Right Moves (1983),Drama|Romance +5227,Barabbas (1961),Adventure|Drama +5228,"Ghost Breakers, The (1940)",Comedy|Horror +5229,I Think I Do (1997),Comedy +5230,"Paleface, The (1948)",Comedy|Western +5231,Road to Morocco (1942),Comedy +5232,Road to Singapore (1940),Comedy|Musical +5233,Road to Utopia (1946),Comedy +5234,Road to Zanzibar (1941),Comedy +5235,Split Second (1992),Action|Sci-Fi|Thriller +5236,"Tale of Springtime, A (Conte de Printemps) (1990)",Drama|Romance +5237,Taps (1981),Drama +5238,Return of the Secaucus 7 (1980),Drama +5239,Rude Boy (1980),Documentary|Drama +5240,Running Scared (1980),Action|Drama +5241,Seems Like Old Times (1980),Comedy|Romance +5242,Serial (1980),Comedy +5243,"Young Master, The (Shi di chu ma) (1980)",Action|Comedy +5244,Shogun Assassin (1980),Action|Adventure +5245,Simon (1980),Comedy|Sci-Fi +5246,Smokey and the Bandit II (1980),Action|Comedy +5247,Smokey and the Bandit (1977),Action|Comedy +5248,Smokey and the Bandit III (1983),Action|Comedy +5249,Spetters (1980),Comedy|Drama +5250,Stir Crazy (1980),Comedy +5251,"Charter Trip, The (a.k.a. Package Tour, The) (Sällskapsresan) (1980)",Comedy +5252,Teheran 43: Spy Ring (a.k.a. Assassination Attempt) (Tegeran-43) (1980),Action|Crime|Drama|Thriller +5253,Cousins in Love (a.k.a. Tender Cousins) (Tendres Cousines) (1980),Drama|Romance +5254,Blade II (2002),Action|Horror|Thriller +5255,Sorority Boys (2002),Comedy +5256,Stolen Summer (2002),Drama +5257,In the Winter Dark (1998),Drama +5258,George Washington (2000),Drama +5259,Homicidal (1961),Horror|Mystery|Thriller +5260,"Life is to Whistle (Vida es silbar, La) (1998)",Drama +5261,"Light at the Edge of the World, The (1971)",Adventure +5262,Mr. Sardonicus (1961),Horror +5263,Strait-Jacket (1964),Horror|Thriller +5264,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller +5265,Death to Smoochy (2002),Comedy|Crime|Drama +5266,Panic Room (2002),Thriller +5267,"Rookie, The (2002)",Drama +5268,No Such Thing (2001),Drama|Fantasy|Romance +5269,"Piano Teacher, The (La pianiste) (2001)",Drama +5270,Teddy Bears' Picnic (2001),Comedy +5271,30 Years to Life (2001),Comedy|Drama|Romance +5272,Time Out (L'emploi du temps) (2001),Drama +5273,Very Annie Mary (2001),Comedy|Musical +5274,Bar Girls (1994),Comedy|Romance +5275,Boxcar Bertha (1972),Drama +5276,Crimes of Passion (1984),Drama|Romance|Thriller +5277,"Evil That Men Do, The (1984)",Action|Thriller +5278,Fraternity Vacation (1985),Comedy|Romance +5279,Impromptu (1991),Comedy|Romance +5280,Salmonberries (1991),Drama +5281,"Wrong Guys, The (1988)",Comedy +5282,High Crimes (2002),Thriller +5283,National Lampoon's Van Wilder (2002),Comedy +5284,Crush (2001),Comedy|Romance +5285,Lucky Break (2001),Comedy|Crime +5286,"Destinées, Les (Destinées sentimentales, Les) (2000)",Drama|Romance +5287,"After Dark, My Sweet (1990)",Crime|Drama|Mystery +5288,"Atomic Cafe, The (1982)",Documentary|War +5289,Body and Soul (1947),Drama|Film-Noir +5290,First Men in the Moon (1964),Adventure|Sci-Fi +5291,Rashomon (Rashômon) (1950),Crime|Drama|Mystery +5292,Slap Shot (1977),Comedy +5293,Changing Lanes (2002),Drama|Thriller +5294,Frailty (2001),Crime|Drama|Thriller +5295,New Best Friend (2002),Drama|Thriller +5296,"Sweetest Thing, The (2002)",Comedy|Romance +5297,"Cat's Meow, The (2002)",Drama|Thriller +5298,Human Nature (2001),Comedy|Romance +5299,My Big Fat Greek Wedding (2002),Comedy|Romance +5300,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western +5301,Bite the Bullet (1975),Action|Adventure|Western +5302,Breakout (1975),Action|Adventure +5303,Joe Versus the Volcano (1990),Comedy|Romance +5304,"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)",Drama|War +5305,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi +5306,Return to Horror High (1987),Horror +5307,Taking Care of Business (1990),Comedy +5308,Three Men and a Baby (1987),Comedy +5309,Three Men and a Little Lady (1990),Comedy|Romance +5310,Transylvania 6-5000 (1985),Comedy|Horror +5311,"Watcher in the Woods, The (1980)",Children|Horror|Mystery|Thriller +5312,Murder by Numbers (2002),Crime|Thriller +5313,"Scorpion King, The (2002)",Action|Adventure|Fantasy +5314,Behind the Sun (Abril Despedaçado) (2001),Drama +5315,Chelsea Walls (2001),Drama +5316,Enigma (2001),Romance|Thriller +5317,"Girls Can't Swim (Filles ne savent pas nager, Les) (2000)",Drama +5318,Joshua (2002),Drama +5319,Nine Queens (Nueve reinas) (2000),Crime|Thriller +5320,Spooky House (2000),Children +5321,"Triumph of Love, The (2001)",Comedy +5322,World Traveler (2001),Drama +5323,Jason X (2002),Horror|Sci-Fi|Thriller +5324,Life or Something Like It (2002),Comedy|Romance +5325,Dogtown and Z-Boyz (2001),Documentary +5326,"Frank McKlusky, C.I. (2002)",Comedy +5327,In Praise of Love (Éloge de l'amour) (2001),Drama +5328,Rain (2001),Drama|Romance +5329,"Salton Sea, The (2002)",Crime|Drama|Thriller +5330,Some Body (2001),Drama +5331,Vulgar (2000),Drama +5332,"Aviator, The (1985)",Adventure +5333,Bob le Flambeur (1955),Crime|Drama +5334,Cadillac Man (1990),Comedy|Crime +5335,"Coca-Cola Kid, The (1985)",Comedy|Romance +5336,Cuba (1979),Action|Adventure|War +5337,Delirious (1991),Comedy +5338,Full Moon in Blue Water (1988),Drama +5339,Husbands and Wives (1992),Comedy|Drama +5340,Joe (1970),Drama +5341,Lenny (1974),Drama +5342,Nomads (1986),Horror|Mystery|Thriller +5343,"Temp, The (1993)",Drama|Thriller +5344,Thief of Hearts (1984),Drama|Thriller +5345,Triumph of the Spirit (1989),Drama +5346,Wild Orchid (1990),Drama|Romance +5347,Deuces Wild (2002),Drama +5348,Hollywood Ending (2002),Comedy|Drama +5349,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller +5350,"Mystic Masseur, The (2001)",Drama +5351,Warm Water Under a Red Bridge (Akai hashi no shita no nurui mizu) (2001),Comedy|Drama +5352,The Big Sleep (1978),Thriller +5353,Butterflies Are Free (1972),Comedy|Drama +5354,Cactus Flower (1969),Comedy +5355,"Cassandra Crossing, The (1976)",Drama +5356,"Giant Spider Invasion, The (1975)",Horror|Sci-Fi +5357,Iron Will (1994),Adventure +5358,Mountains of the Moon (1990),Adventure +5359,Rambling Rose (1991),Drama +5360,"Survivors, The (1983)",Comedy +5361,White Fang (1991),Adventure +5362,White Fang 2: Myth of the White Wolf (1994),Adventure|Children +5363,"New Guy, The (2002)",Comedy +5364,Unfaithful (2002),Drama|Thriller +5365,"Lady and the Duke, The (Anglaise et le duc, L') (2001)",Drama|Romance +5366,Whore (1991),Drama +5367,My Beautiful Laundrette (1985),Drama|Romance +5368,Ballad of a Soldier (Ballada o soldate) (1959),Drama|Romance|War +5369,Big Bad Mama (1974),Action|Comedy +5370,Big Bad Mama II (1987),Action|Comedy +5371,"Final Darkness, The (Buio Omega) (1979)",Horror +5372,Calamity Jane (1953),Musical|Western +5373,"Cranes Are Flying, The (Letyat zhuravli) (1957)",Drama|Romance|War +5374,Devil Doll (1964),Horror +5375,"Harvey Girls, The (1946)",Comedy|Musical|Western +5376,"Lady in Red, The (1979)",Action +5377,About a Boy (2002),Comedy|Drama|Romance +5378,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX +5379,"Believer, The (2001)",Drama +5380,"Importance of Being Earnest, The (2002)",Comedy|Drama|Romance +5381,"Charge of the Light Brigade, The (1968)",Drama|War +5382,Every Which Way But Loose (1978),Comedy +5383,"Hound of the Baskervilles, The (1959)",Crime|Horror|Mystery +5384,I Want to Live! (1958),Crime|Drama +5385,"Last Waltz, The (1978)",Documentary +5386,"Pride and the Passion, The (1957)",Adventure|War +5387,Enough (2002),Drama|Thriller +5388,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller +5389,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western +5390,CQ (2001),Drama +5391,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama +5392,Bus Stop (1956),Comedy|Drama|Romance +5393,Cowboy (1958),Western +5394,Don't Bother to Knock (1952),Drama|Thriller +5395,"Gambler, The (1974)",Drama +5396,Let's Make Love (1960),Comedy|Musical|Romance +5397,Monkey Business (1952),Comedy|Sci-Fi +5398,Requiem for a Heavyweight (1962),Drama +5399,River of No Return (1954),Adventure|Western +5400,"Sum of All Fears, The (2002)",Drama|Thriller +5401,Undercover Brother (2002),Comedy +5402,"Diaries of Vaslav Nijinsky, The (2002)",Documentary|Drama +5403,"Sleepy Time Gal, The (2001)",Drama +5404,84 Charing Cross Road (1987),Drama|Romance +5405,Dakota (1945),Western +5406,"Desert Rats, The (1953)",Drama|War +5407,"Bûche, La (1999)",Comedy|Drama +5408,Nora (2000),Drama +5409,Rapid Fire (1992),Action +5410,Silent Running (1972),Drama|Sci-Fi +5411,Summer Holiday (1963),Musical|Romance +5412,"Villain, The (1979)",Comedy|Western +5413,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror +5414,Bad Company (2002),Action|Comedy|Crime +5415,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama +5416,Cherish (2002),Comedy|Drama|Thriller +5417,"Fast Runner, The (Atanarjuat) (2001)",Drama|Fantasy +5418,"Bourne Identity, The (2002)",Action|Mystery|Thriller +5419,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery +5420,Windtalkers (2002),Action|Drama|War +5421,"Dangerous Lives of Altar Boys, The (2002)",Drama +5422,"Emperor's New Clothes, The (2001)",Comedy +5423,Gangster No. 1 (2000),Action|Crime|Thriller +5424,Harvard Man (2001),Crime|Drama|Romance|Thriller +5425,Dark Blue World (Tmavomodrý svet) (2001),Drama|War +5426,Bad Company (1972),Western +5427,Caveman (1981),Comedy +5428,Cheech & Chong's The Corsican Brothers (1984),Comedy +5429,5 Card Stud (1968),Mystery|Western +5430,For a Lost Soldier (Voor een Verloren Soldaat) (1992),Romance +5431,Goin' South (1978),Comedy|Western +5432,Hero and the Terror (1988),Action|Crime +5433,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller +5434,"Sorry, Wrong Number (1948)",Drama|Film-Noir|Thriller +5435,Hombre (1967),Western +5436,"Horse's Mouth, The (1958)",Comedy +5437,"Manhattan Project, The (1986)",Comedy|Sci-Fi|Thriller +5438,Men at Work (1990),Action|Comedy +5439,S.O.B. (1981),Comedy +5440,She Wore a Yellow Ribbon (1949),Western +5441,Traces of Red (1992),Mystery|Thriller +5442,V. I. Warshawski (1991),Action|Comedy|Crime +5443,Juwanna Mann (2002),Comedy +5444,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi +5445,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller +5446,Rabbit-Proof Fence (2002),Adventure|Drama +5447,Sunshine State (2002),Drama +5448,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy +5449,Mr. Deeds (2002),Comedy|Romance +5450,Lovely & Amazing (2001),Comedy|Drama|Romance +5451,Pumpkin (2002),Comedy|Drama|Romance +5452,Look Who's Talking Now (1993),Children|Comedy|Romance +5453,Lost in Yonkers (1993),Comedy|Drama +5454,Mo' Money (1992),Comedy|Romance +5455,"Object of Beauty, The (1991)",Comedy|Drama +5456,Wagons East (1994),Comedy|Western +5457,Zebrahead (1992),Drama +5458,Like Mike (2002),Children|Comedy|Fantasy +5459,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi +5460,"Powerpuff Girls, The (2002)",Action|Animation|Children|Comedy +5461,Me Without You (2001),Comedy|Drama +5462,"Crocodile Hunter: Collision Course, The (2002)",Adventure|Comedy +5463,Reign of Fire (2002),Action|Adventure|Fantasy +5464,Road to Perdition (2002),Crime|Drama +5465,All About Lily Chou-Chou (Riri Shushu no subete) (2001),Crime|Drama|Thriller +5466,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance +5467,Never Again (2001),Comedy|Romance +5468,20 Million Miles to Earth (1957),Sci-Fi +5469,Grand Theft Auto (1977),Action|Comedy +5470,The Importance of Being Earnest (1952),Comedy|Romance +5471,Perfect (1985),Drama|Romance +5472,1776 (1972),Children|Drama|Musical +5473,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama +5474,"Legend of Boggy Creek, The (1972)",Drama|Horror|Mystery|Thriller +5475,Z (1969),Drama|Mystery|Thriller +5476,Halloween: Resurrection (Halloween 8) (2002),Horror|Thriller +5477,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance +5478,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi +5479,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller +5480,Stuart Little 2 (2002),Children|Comedy +5481,Austin Powers in Goldmember (2002),Comedy +5482,"Country Bears, The (2002)",Children|Comedy +5483,"Kid Stays in the Picture, The (2002)",Documentary +5484,Happy Times (Xingfu shiguang) (2000),Comedy|Drama +5485,Tadpole (2002),Comedy|Drama|Romance +5486,Who Is Cletis Tout? (2001),Comedy +5487,Harry and Walter Go to New York (1976),Comedy +5488,"Merchant of Four Seasons, The (Händler der vier Jahreszeiten) (1972)",Drama +5489,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror +5490,The Big Bus (1976),Action|Comedy +5491,"Eddy Duchin Story, The (1956)",Drama|Musical|Romance +5492,Fathom (1967),Adventure +5493,In Like Flint (1967),Action|Adventure|Comedy +5494,"Earth Trembles, The (Terra trema: Episodio del mare, La) (1948)",Drama +5495,Modesty Blaise (1966),Comedy +5496,Ossessione (1943),Drama +5497,Our Man Flint (1965),Adventure|Comedy|Sci-Fi +5498,Red Beard (Akahige) (1965),Drama +5499,Robin and Marian (1976),Adventure|Drama|Romance +5500,Top Secret! (1984),Comedy +5501,"Master of Disguise, The (2002)",Comedy|Mystery +5502,Signs (2002),Horror|Sci-Fi|Thriller +5503,"Last Kiss, The (Ultimo bacio, L') (2001)",Comedy|Drama|Romance +5504,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children +5505,"Good Girl, The (2002)",Comedy|Drama +5506,Blood Work (2002),Crime|Drama|Mystery|Thriller +5507,xXx (2002),Action|Crime|Thriller +5508,24 Hour Party People (2002),Comedy|Drama|Musical +5509,Biggie and Tupac (2002),Documentary +5510,"Château, The (2001)",Comedy +5511,Pandora's Box (2002),Drama|Thriller +5512,Secret Ballot (Raye makhfi) (2001),Comedy +5513,Martin Lawrence Live: Runteldat (2002),Comedy|Documentary +5514,Lan Yu (2001),Drama|Romance +5515,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama +5516,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller +5517,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller +5518,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama +5519,Change of Habit (1969),Drama +5520,"Matter of Taste, A (Affaire de Goût, Une) (2000)",Crime|Drama|Thriller +5521,"Principal, The (1987)",Action|Crime|Drama +5522,Rollerball (1975),Action|Drama|Sci-Fi +5523,"Adventures of Pluto Nash, The (2002)",Action|Adventure|Comedy|Sci-Fi +5524,Blue Crush (2002),Adventure|Drama|Romance +5525,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance +5526,"Isle, The (Seom) (2000)",Drama +5527,Possession (2002),Drama|Romance +5528,One Hour Photo (2002),Drama|Thriller +5529,Serving Sara (2002),Comedy|Romance +5530,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi +5531,Undisputed (2002),Drama +5532,Amy's O (a.k.a. Amy's Orgasm) (2001),Comedy|Romance +5533,Children On Their Birthdays (2002),Drama +5534,Hush! (2001),Drama +5535,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama +5536,Hybrid (2000),Documentary +5537,Satin Rouge (2002),Drama|Musical +5538,"Care Bears Movie, The (1985)",Animation|Children|Fantasy +5539,Care Bears Movie II: A New Generation (1986),Animation|Children +5540,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance +5541,Hot Shots! (1991),Action|Comedy|Romance|War +5542,"Nightmare City (a.k.a. City of the Walking Dead) (a.k.a. Invasión de los zombies atómicos, La) (Incubo sulla città contaminata) (1980)",Action|Horror +5543,"Swarm, The (1978)",Action|Horror|Sci-Fi +5544,Time After Time (1979),Sci-Fi|Thriller +5545,"Unearthly, The (1957)",Horror|Sci-Fi +5546,976-EVIL (1989),Horror +5547,Camilla (1994),Adventure|Drama|Romance +5548,Down and Out in Beverly Hills (1986),Comedy +5549,Flaming Star (1960),Western +5550,Love Me Tender (1956),Musical|Western +5551,"Return of the Vampire, The (1944)",Horror +5552,"Revenge of Frankenstein, The (1958)",Drama|Horror|Sci-Fi +5553,Stakeout (1987),Comedy|Crime|Romance|Thriller +5554,Wild in the Country (1961),Drama +5555,Wolfen (1981),Horror +5556,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller +5557,Slap Her... She's French (a.k.a. She Gets What She Wants) (2002),Comedy +5558,Love and a Bullet (2002),Action|Crime +5559,Mad Love (Juana la Loca) (2001),Drama +5560,À nous la liberté (Freedom for Us) (1931),Comedy|Musical +5561,True Colors (1991),Drama +5562,Snipes (2001),Drama|Thriller +5563,City by the Sea (2002),Crime|Drama +5564,Swimfan (2002),Thriller +5565,"Dogwalker, The (2002)",Drama +5566,Heartbreak Hospital (2002),Comedy|Thriller +5567,"Incubus, The (1981)",Horror|Thriller +5568,Johnny Dangerously (1984),Comedy +5569,"Last House on the Left, The (1972)",Crime|Horror|Thriller +5570,Thesis (Tesis) (1996),Drama|Horror|Thriller +5571,"Pinochet Case, The (Cas Pinochet, Le) (2001)",Documentary +5572,Barbershop (2002),Comedy +5573,Stealing Harvard (2002),Comedy|Crime +5574,"Transporter, The (2002)",Action|Crime +5575,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama +5576,"Children of the Century, The (Enfants du siècle, Les) (1999)",Drama|Romance +5577,Igby Goes Down (2002),Comedy|Drama +5579,Quitting (Zuotian) (2001),Drama +5580,Aspen Extreme (1993),Action +5581,Betsy's Wedding (1990),Comedy +5582,Captain Ron (1992),Adventure|Comedy +5583,"Devil Bat, The (1940)",Crime|Horror|Mystery|Sci-Fi +5584,Ernest Goes to Jail (1990),Comedy +5585,Ernest Scared Stupid (1991),Comedy +5586,"Gypsy Moths, The (1969)",Drama +5587,"Hills Have Eyes Part II, The (1985)",Horror +5588,"Hills Have Eyes, The (1977)",Horror +5589,Indian Summer (1993),Comedy|Drama +5590,"Mack, The (1973)",Crime +5591,Monkey Trouble (1994),Children|Comedy +5592,Monster in the Closet (1986),Comedy|Horror +5593,No Way to Treat a Lady (1968),Crime|Drama|Thriller +5595,Shock Waves (1977),Horror +5596,Spaced Invaders (1990),Adventure|Comedy|Sci-Fi +5597,Suburban Commando (1991),Comedy|Sci-Fi +5598,Surf Ninjas (1993),Comedy +5599,Tabu: A Story of the South Seas (1931),Drama|Romance +5600,"Wanderers, The (1979)",Drama +5601,"Yearling, The (1946)",Children|Drama +5602,"Ladykillers, The (1955)",Comedy|Crime +5603,"Lavender Hill Mob, The (1951)",Comedy|Crime +5604,"Man in the White Suit, The (1951)",Comedy|Sci-Fi +5605,Ratcatcher (1999),Drama +5606,Society (1989),Horror|Mystery +5607,"Son of the Bride (Hijo de la novia, El) (2001)",Comedy|Drama +5608,"Das Experiment (Experiment, The) (2001)",Drama|Thriller +5609,Ballistic: Ecks vs. Sever (2002),Action|Thriller +5610,"Banger Sisters, The (2002)",Comedy|Drama +5611,"Four Feathers, The (2002)",Adventure|War +5612,Trapped (2002),Action|Thriller +5613,8 Women (2002),Comedy|Crime|Musical|Mystery +5614,"His Secret Life (a.k.a. Ignorant Fairies, The) (Fate ignoranti, Le) (2001)",Drama|Romance +5615,Invincible (2001),Drama +5616,"Mesmerist, The (2002)",Comedy|Fantasy|Horror +5617,Secretary (2002),Comedy|Drama|Romance +5618,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy +5619,"Trials of Henry Kissinger, The (2002)",Documentary +5620,Sweet Home Alabama (2002),Comedy|Romance +5621,"Tuxedo, The (2002)",Action|Comedy +5622,Charly (2002),Comedy|Drama|Romance +5623,Crazy as Hell (2002),Drama +5624,Just a Kiss (2002),Comedy|Romance +5625,Moonlight Mile (2002),Drama|Romance +5626,Shanghai Ghetto (2002),Documentary +5627,Skins (2002),Crime|Drama +5628,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller +5629,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical +5630,Red Dragon (2002),Crime|Mystery|Thriller +5631,Between Strangers (2002),Drama +5632,Bloody Sunday (2002),Drama +5633,Heaven (2002),Drama +5634,Pipe Dream (2002),Drama +5635,"Man from Elysian Fields, The (2001)",Drama +5636,Welcome to Collinwood (2002),Comedy|Crime +5637,Flirting (1991),Drama +5638,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi +5639,Godzilla's Revenge (Gojira-Minira-Gabara: Oru Kaijû Daishingeki) (All Monsters Attack) (1969),Children +5640,"Godzilla, King of the Monsters! (Kaijû-ô Gojira) (1956)",Horror|Sci-Fi +5641,"Moderns, The (1988)",Drama +5642,"Onion Field, The (1979)",Drama +5643,Powaqqatsi (1988),Documentary +5644,"Pride of the Yankees, The (1942)",Drama +5645,Texasville (1990),Drama +5646,Valmont (1989),Drama|Romance +5647,Ernest Goes to Africa (1997),Comedy +5648,Ernest in the Army (1998),Comedy +5649,Horror of Dracula (Dracula) (1958),Horror +5650,Strange Brew (1983),Comedy +5651,"Incredible Mr. Limpet, The (1964)",Animation|Comedy|War +5652,Claire of the Moon (1992),Drama|Romance +5653,Django (1966),Western +5654,Django 2: Django Strikes Again (1987),Western +5655,"Fan, The (1981)",Drama|Thriller +5656,Festival in Cannes (2001),Drama +5657,Flashback (1990),Action|Adventure|Comedy|Crime|Drama +5658,Hanky Panky (1982),Comedy +5659,"Rocking Horse Winner, The (1950)",Drama|Horror +5660,Seance on a Wet Afternoon (1964),Crime|Drama|Thriller +5661,Shamus (1973),Crime|Mystery +5662,"Wrong Guy, The (1997)",Comedy|Romance|Thriller +5663,Below (2002),Horror +5664,Brown Sugar (2002),Romance +5665,Knockaround Guys (2002),Action|Comedy|Crime +5666,"Rules of Attraction, The (2002)",Comedy|Drama|Romance|Thriller +5667,Tuck Everlasting (2002),Drama|Fantasy +5668,White Oleander (2002),Drama +5669,Bowling for Columbine (2002),Documentary +5670,Comedian (2002),Comedy|Documentary +5671,"On Guard (Bossu, Le) (1997)",Adventure|Drama +5672,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy +5673,Punch-Drunk Love (2002),Comedy|Drama|Romance +5674,Safe Conduct (Laissez-Passer) (2002),Drama|War +5675,Swept Away (2002),Comedy|Romance +5676,"Young Unknowns, The (2000)",Drama +5677,Abandon (2002),Drama|Thriller +5678,Formula 51 (2001),Action|Comedy|Crime|Thriller +5679,"Ring, The (2002)",Horror|Mystery|Thriller +5680,Auto Focus (2002),Crime|Drama +5681,Fidel (2001),Documentary +5682,"Grey Zone, The (2001)",Drama +5683,Hansel & Gretel (2002),Children|Fantasy +5684,Naqoyqatsi (2002),Documentary +5685,Real Women Have Curves (2002),Comedy|Drama +5686,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War +5687,Take Care of My Cat (Goyangileul butaghae) (2001),Drama +5688,Tully (2000),Drama +5689,Billy Bathgate (1991),Crime|Drama +5690,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War +5691,Jason Goes to Hell: The Final Friday (1993),Action|Horror +5692,"Mechanic, The (1972)",Action|Thriller +5693,Saturday Night Fever (1977),Comedy|Drama|Romance +5694,Staying Alive (1983),Comedy|Drama|Musical +5695,To the Devil a Daughter (1976),Fantasy|Horror|Mystery +5696,Urban Cowboy (1980),Drama +5697,Terror Train (1980),Horror +5698,Times Square (1980),Drama +5699,Tom Horn (1980),Western +5700,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi +5701,Up the Academy (1980),Comedy +5702,"When Time Ran Out... (Day the World Ended, The) (1980)",Action|Adventure +5703,Wholly Moses (1980),Comedy +5704,Without Warning (a.k.a. Alien Warning) (a.k.a. It Came Without Warning) (1980),Horror|Sci-Fi +5705,Xanadu (1980),Fantasy|Musical|Romance +5706,...All the Marbles (1981),Comedy|Drama +5707,Absence of Malice (1981),Drama|Romance +5708,All Night Long (1981),Comedy|Drama +5709,"Amateur, The (1981)",Crime|Thriller +5710,Banana Joe (1981),Comedy +5711,Marianne & Juliane (Die Bleierne Zeit) (1981),Drama +5712,Blow Out (1981),Mystery|Thriller +5713,The Boogens (1981),Horror +5714,Buddy Buddy (1981),Comedy +5715,"Burning, The (1981)",Horror +5716,Butterfly (1982),Drama +5717,Make Them Die Slowly (Cannibal Ferox) (1981),Horror +5718,Carbon Copy (1981),Comedy +5719,Charlie Chan and the Curse of the Dragon Queen (1981),Comedy|Mystery +5720,"Friend Is a Treasure, A (Chi Trova Un Amico, Trova un Tesoro) (Who Finds a Friend Finds a Treasure) (1981)",Action|Adventure|Comedy +5721,"Chosen, The (1981)",Drama +5722,"Goat, The (a.k.a. Knock On Wood) (Chèvre, La) (1981)",Comedy +5723,Continental Divide (1981),Comedy|Romance +5724,"Creature Wasn't Nice, The (a.k.a. Naked Space) (a.k.a. Spaceship) (1981)",Comedy|Horror|Musical|Sci-Fi +5725,Man of Iron (Czlowiek z Zelaza) (1981),Drama|Romance +5726,Dead & Buried (1981),Horror +5727,Deadly Blessing (1981),Horror +5728,Death Hunt (1981),Action|Adventure|Crime|Thriller +5729,Endless Love (1981),Drama|Romance +5730,Enter the Ninja (a.k.a. Ninja I) (1981),Action|Drama +5731,"Entity, The (1981)",Horror +5732,Eye of the Needle (1981),Thriller +5733,"Eyewitness (Janitor, The) (1981)",Thriller +5734,Faces of Death 2 (1981),Documentary|Horror +5735,Faces of Death (1978),Documentary|Horror +5736,Faces of Death 3 (1985),Documentary|Horror +5737,Faces of Death 4 (1990),Documentary|Horror +5738,Faces of Death 5 (1996),Documentary|Horror +5739,Faces of Death 6 (1996),Documentary|Horror +5740,Faces of Death: Fact or Fiction? (1999),Documentary|Horror +5741,"Woman Next Door, The (Femme d'à côté, La) (1981)",Drama|Romance +5742,First Monday in October (1981),Comedy|Drama +5743,"Fort Apache, the Bronx (1981)",Action|Drama +5744,Four Friends (a.k.a. Georgia's Friends) (1981),Drama +5745,"Four Seasons, The (1981)",Comedy|Drama +5746,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi +5747,Gallipoli (1981),Drama|War +5748,"Inquisitor, The (a.k.a. Under Suspicion) (Garde à vue) (1981)",Crime|Drama +5749,Ghost Story (1981),Drama|Horror +5750,Going Ape! (1981),Comedy +5751,Goodbye Pork Pie (1981),Action|Adventure|Drama +5752,Gregory's Girl (1981),Comedy|Romance +5753,Who Pulled the Plug? (Göta kanal eller Vem drog ur proppen?) (1981),Comedy +5754,"Hand, The (1981)",Drama|Horror +5755,Happy Birthday to Me (1981),Horror|Mystery +5756,Heartbeeps (1981),Comedy|Sci-Fi +5757,History of Kim Skov (Historien om Kim Skov) (1981),Documentary|Drama +5758,Horror Planet (a.k.a. Inseminoid) (1981),Action|Drama|Horror|Sci-Fi +5759,"Ladies and Gentlemen, the Fabulous Stains (a.k.a. All Washed Up) (1981)",Comedy|Drama +5760,Lady Chatterley's Lover (1981),Drama|Romance +5761,"Legend of the Lone Ranger, The (1981)",Western +5762,Lili Marleen (1981),Drama +5763,Lola (1981),Drama +5764,Looker (1981),Drama|Horror|Sci-Fi|Thriller +5765,"Looney, Looney, Looney Bugs Bunny Movie, The (1981)",Animation|Children|Comedy +5766,Madman (1981),Horror +5767,Teddy Bear (Mis) (1981),Comedy|Crime +5768,Modern Problems (1981),Comedy|Fantasy +5769,Modern Romance (1981),Comedy|Romance +5770,Ms. 45 (a.k.a. Angel of Vengeance) (1981),Crime|Drama +5771,My Bloody Valentine (1981),Drama|Horror|Thriller +5772,My Dinner with André (1981),Drama +5773,Neighbors (1981),Comedy +5774,Night of the Zombies (a.k.a. Batallion of the Living Dead) (1981),Horror|Sci-Fi +5775,"Night the Lights Went Out in Georgia, The (1981)",Drama +5776,Only When I Laugh (1981),Comedy|Drama +5777,Pennies from Heaven (1981),Musical|Romance +5778,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller +5779,Piranha II: The Spawning (1981),Horror|Sci-Fi +5780,Polyester (1981),Comedy +5781,Private Lessons (1981),Comedy +5782,"Professional, The (Le professionnel) (1981)",Action|Drama|Thriller +5783,Derrida (2002),Documentary +5784,Ghost Ship (2002),Horror +5785,Jackass: The Movie (2002),Action|Comedy|Documentary +5786,Paid in Full (2002),Action|Drama +5787,"Truth About Charlie, The (2002)",Mystery|Thriller +5788,All or Nothing (2002),Drama +5789,All the Queen's Men (2001),Comedy|War +5790,Food of Love (Manjar de Amor) (2002),Drama +5791,Frida (2002),Drama|Romance +5792,Roger Dodger (2002),Comedy|Drama +5793,Time Changer (2002),Drama|Sci-Fi +5794,Good Work (Beau travail) (1999),Drama +5795,"Big Knife, The (1955)",Film-Noir +5796,Casino Royale (1967),Action|Adventure|Comedy +5797,"Company of Wolves, The (1984)",Fantasy|Horror +5798,Escanaba in da Moonlight (2001),Comedy +5799,Exodus (1960),Drama|Romance|War +5800,How to Murder Your Wife (1965),Comedy +5801,"Russians Are Coming, the Russians Are Coming, The (1966)",Comedy|War +5802,"World of Henry Orient, The (1964)",Comedy +5803,I Spy (2002),Action|Adventure|Comedy|Crime +5804,"Santa Clause 2, The (2002)",Children|Comedy|Fantasy|Romance +5805,Besotted (2001),Drama +5806,Blackboards (Takhté Siah) (2000),Drama +5807,Love In the Time of Money (2002),Comedy|Drama|Romance +5808,"Weight of Water, The (2000)",Thriller +5809,Femme Fatale (2002),Crime|Thriller +5810,8 Mile (2002),Drama +5811,Etoiles: Dancers of the Paris Opera Ballet (Tout Près des étoiles) (2001),Documentary|Musical +5812,Far from Heaven (2002),Drama|Romance +5813,"God is Great, I'm Not (Dieu est grand, je suis toute petite) (2001)",Comedy|Romance +5814,"Rising Place, The (2002)",Drama +5815,Half Past Dead (2002),Action|Crime|Thriller +5816,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy +5817,Ararat (2002),Drama|War +5818,"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)",Drama|Romance +5819,Interview with the Assassin (2002),Drama +5820,Standing in the Shadows of Motown (2002),Documentary|Musical +5821,"Way Home, The (Jibeuro) (2002)",Drama +5822,Mutant Action (Acción Mutante) (1993),Action|Comedy|Sci-Fi +5823,Eyes of an Angel (1991),Drama +5824,Liberty Stands Still (2002),Action|Drama|Thriller +5825,"Life and Death of Colonel Blimp, The (1943)",Drama|Romance|War +5826,Rio Grande (1950),Romance|Western +5827,"Young Americans, The (1993)",Crime|Drama +5828,Blackrock (1997),Drama|Thriller +5829,Men with Brooms (2002),Comedy|Drama|Romance +5830,Mysterious Island (1961),Adventure|Sci-Fi +5831,Soul Assassin (2001),Action|Crime|Thriller +5832,Left Behind II: Tribulation Force (2002),Drama +5833,Dog Soldiers (2002),Action|Horror +5834,Fingers (1978),Drama +5835,"Good Evening, Mr. Wallenberg (God afton, Herr Wallenberg) (1990)",Drama|War +5836,Houseboat (1958),Comedy|Romance +5837,Legion of the Dead (2001),Comedy|Horror +5838,Madame Bovary (1991),Drama +5839,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama +5840,"My Mother's Castle (Château de ma mère, Le) (1990)",Comedy|Drama +5841,Return to the Blue Lagoon (1991),Adventure|Romance +5842,Too Beautiful for You (Trop belle pour toi) (1989),Comedy|Drama|Romance +5843,Toy Soldiers (1991),Action|Drama +5844,"Prowler, The (a.k.a. Rosemary's Killer) (a.k.a. The Graduation) (1981)",Horror +5845,"Pursuit of D.B. Cooper, The (a.k.a. Pursuit) (1981)",Adventure +5846,Raggedy Man (1981),Drama +5847,Ragtime (1981),Drama +5848,Rich and Famous (1981),Drama +5849,I'm Starting From Three (Ricomincio da Tre) (1981),Comedy +5850,Road Games (a.k.a. Roadgames) (1981),Thriller +5851,Rollover (1981),Drama +5852,Saturday the 14th (1981),Comedy|Horror +5853,Scanners (1981),Horror|Sci-Fi|Thriller +5854,Sharky's Machine (1981),Crime|Drama|Romance +5855,Shock Treatment (1981),Comedy|Musical|Sci-Fi +5856,"Do You Remember Dolly Bell? (Sjecas li se, Dolly Bell) (1981)",Comedy|Drama|Romance +5857,So Fine (1981),Comedy +5858,"Soupe aux Choux, La (1981)",Comedy +5859,Southern Comfort (1981),Drama|Thriller|War +5860,Sphinx (1981),Mystery|Thriller +5861,Tales of Ordinary Madness (Storie di Ordinaria Follia) (1981),Drama +5862,Student Bodies (1981),Comedy|Horror +5863,Take This Job and Shove It (1981),Comedy +5864,"Tarzan, the Ape Man (1981)",Adventure +5865,Tattoo (1981),Drama|Thriller +5866,They All Laughed (1981),Comedy +5867,Thief (1981),Crime|Drama|Thriller +5868,This Is Elvis (1981),Documentary|Drama|Musical +5869,True Confessions (1981),Crime|Drama +5870,Revolution #9 (2001),Thriller +5871,Better Housekeeping (a.k.a. Good Housekeeping) (2000),Comedy|Drama +5872,Die Another Day (2002),Action|Adventure|Thriller +5873,The Emperor's Club (2002),Drama +5874,Friday After Next (2002),Comedy +5875,Personal Velocity (2002),Drama +5876,"Quiet American, The (2002)",Drama|Thriller|War +5877,Smokers Only (Vagón Fumador) (2001),Drama|Romance +5878,Talk to Her (Hable con Ella) (2002),Drama|Romance +5879,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical +5880,Extreme Ops (2002),Action|Adventure|Crime|Thriller +5881,Solaris (2002),Drama|Romance|Sci-Fi +5882,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX +5883,They (2002),Horror|Thriller +5884,Chopper Chicks in Zombietown (1989),Comedy|Horror +5885,"What to Do in Case of Fire (Was tun, wenn's brennt?) (2002)",Comedy|Drama +5886,I Love You Too (Ik ook Van Jou) (2001),Drama|Romance +5887,Another You (1991),Comedy +5888,Brother (Brat) (1997),Crime|Drama +5889,"Cruel Romance, A (Zhestokij Romans) (1984)",Drama|Romance +5890,Elling (2001),Comedy|Drama +5891,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller +5892,"Island at the Top of the World, The (1974)",Action|Adventure|Children +5893,"Last Seduction, The (1994)",Crime|Drama|Thriller +5894,"Last Seduction II, The (1999)",Crime|Drama|Thriller +5895,Making Contact (a.k.a. Joey) (1985),Fantasy|Horror|Sci-Fi +5896,New Waterford Girl (1999),Comedy +5897,"Noah's Arc Principle, The (Arche Noah Prinzip, Das) (1984)",Sci-Fi +5898,"Sword and the Sorcerer, The (1982)",Action|Adventure|Fantasy +5899,Zulu (1964),Action|Drama|War +5900,Analyze That (2002),Comedy|Crime +5901,Empire (2002),Crime|Drama +5902,Adaptation (2002),Comedy|Drama|Romance +5903,Equilibrium (2002),Action|Sci-Fi|Thriller +5904,My Kingdom (2001),Drama +5905,Soap Girl (2002),Drama|Romance +5906,It All Starts Today (Ça commence aujourd'hui) (1999),Drama +5907,Medea (1970),Drama +5908,Scarlet Diva (2000),Drama +5909,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror +5910,"Bolero (Uns et les autres, Les) (1981)",Drama|War +5911,Urgh! A Music War (1981),Documentary +5912,Hit the Bank (Vabank) (1981),Comedy|Crime +5913,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime +5914,"Vernon, Florida (1981)",Documentary +5915,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War +5916,Whose Life Is It Anyway? (1981),Drama +5917,Zoot Suit (1981),Drama|Musical +5918,Alone in the Dark (1982),Horror +5919,Android (1982),Sci-Fi +5920,"Ace of Aces (a.k.a. Super Ace, The) (As des as, L') (1982)",Adventure|Comedy +5921,Attack Force Z (a.k.a. The Z Men) (Z-tzu te kung tui) (1982),War +5922,Attila (Attila Flagello di Dio) (1982),Action +5923,Author! Author! (1982),Comedy|Drama +5924,Barbarosa (1982),Western +5925,"Beast Within, The (1982)",Horror +5926,Best Friends (1982),Comedy|Drama|Romance +5927,"Best Little Whorehouse in Texas, The (1982)",Comedy|Drama|Musical|Romance +5928,"Border, The (1982)",Drama +5929,"Party 2, The (Boum 2, La) (1982)",Comedy|Romance +5930,Brimstone and Treacle (1982),Drama|Thriller +5931,Britannia Hospital (1982),Comedy|Drama +5932,Burden of Dreams (1982),Documentary +5933,Cannery Row (1982),Drama +5934,"Challenge, The (1982)",Action +5935,Class of 1984 (1982),Action|Drama|Thriller +5936,"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)",Drama +5937,Danton (1983),Drama +5938,Deathtrap (1982),Comedy|Crime|Mystery|Thriller +5939,"Man Who Saves the World, The (Dünyayi Kurtaran Adam) (1982)",Adventure|Sci-Fi +5940,Eating Raoul (1982),Comedy +5941,Drumline (2002),Comedy|Drama|Musical|Romance +5942,"Hot Chick, The (2002)",Comedy +5943,Maid in Manhattan (2002),Comedy|Romance +5944,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller +5945,About Schmidt (2002),Comedy|Drama +5946,"Pellet (Bola, El) (2000)",Drama +5947,Evelyn (2002),Drama +5948,"Guys, The (2002)",Drama +5949,Intact (Intacto) (2001),Thriller +5950,"Jimmy Show, The (2002)",Comedy|Drama +5951,Morvern Callar (2002),Drama +5952,"Lord of the Rings: The Two Towers, The (2002)",Adventure|Fantasy +5953,Devils on the Doorstep (Guizi lai le) (2000),Drama|War +5954,25th Hour (2002),Crime|Drama +5955,Antwone Fisher (2002),Drama +5956,Gangs of New York (2002),Crime|Drama +5957,Two Weeks Notice (2002),Comedy|Romance +5958,"Wild Thornberrys Movie, The (2002)",Animation|Children|Comedy +5959,Narc (2002),Crime|Drama|Thriller +5960,Bad Influence (1990),Drama|Thriller +5961,Blue Steel (1990),Action|Thriller +5962,Body of Evidence (1993),Drama|Thriller +5963,"Children's Hour, The (1961)",Drama +5964,Company Business (1991),Action|Comedy +5965,"Duellists, The (1977)",Action|War +5966,"Kiss Before Dying, A (1956)",Film-Noir|Mystery +5967,Legend of the Lost (1957),Adventure +5968,Miami Blues (1990),Comedy|Crime|Drama +5969,My Girl 2 (1994),Comedy|Drama|Romance +5970,My Girl (1991),Comedy|Drama|Romance +5971,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy +5972,"Road to Hong Kong, The (1962)",Comedy +5973,Running Time (1997),Crime|Thriller +5974,"Thief of Bagdad, The (1940)",Adventure|Fantasy +5975,War and Peace (1956),Drama|Romance|War +5976,Where Sleeping Dogs Lie (1992),Crime +5977,Where's Poppa? (1970),Comedy +5978,"Whistle Blower, The (1986)",Thriller +5979,Attack of the Crab Monsters (1957),Horror|Sci-Fi +5980,Black Christmas (1974),Horror|Mystery|Thriller +5981,"Day of the Triffids, The (1962)",Horror|Sci-Fi +5982,Esther Kahn (2000),Drama +5983,Invaders from Mars (1953),Sci-Fi +5984,"Story of O, The (Histoire d'O) (1975)",Drama|Romance +5985,Asoka (Ashoka the Great) (2001),Action|Drama|Romance +5986,Fat City (1972),Drama +5987,"Love, Honour and Obey (2000)",Comedy|Crime|Drama +5988,Quicksilver (1986),Drama +5989,Catch Me If You Can (2002),Crime|Drama +5990,Pinocchio (2002),Children|Comedy|Fantasy +5991,Chicago (2002),Comedy|Crime|Drama|Musical +5992,"Hours, The (2002)",Drama|Romance +5993,Max (2002),Drama +5994,Nicholas Nickleby (2002),Drama|Romance +5995,"Pianist, The (2002)",Drama|War +5996,Sonny (2002),Crime|Drama +5997,Champagne for Caesar (1950),Comedy +5998,Doppelganger (1993),Horror|Thriller +5999,Heavy Metal 2000 (2000),Action|Adventure|Animation|Fantasy|Sci-Fi +6000,"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)",Horror|Thriller +6001,"King of Comedy, The (1983)",Comedy|Drama +6002,Love Liza (2002),Drama +6003,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller +6004,Abraham's Valley (Vale Abraão) (1993),Drama +6005,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary +6006,Just Married (2003),Comedy|Romance +6007,P.S. Your Cat is Dead (2002),Comedy +6008,"Son, The (Le fils) (2002)",Drama +6009,"City of Lost Souls, The (Hyôryuu-gai) (2000)",Crime|Drama|Thriller +6010,Double Whammy (2001),Action|Comedy|Drama +6011,Wisegirls (2002),Crime|Drama +6012,"Guy Thing, A (2003)",Comedy|Romance +6013,Kangaroo Jack (2003),Action|Comedy +6014,National Security (2003),Action|Comedy +6015,Big Shot's Funeral (Da Wan) (2001),Comedy +6016,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller +6017,Divine Intervention (Yadon ilaheyya) (2002),Comedy|Drama|Romance|War +6018,Kira's Reason: A Love Story (En Kærlighedshistorie) (2001),Drama +6019,Above Suspicion (1995),Thriller +6020,Alice Adams (1935),Comedy|Drama +6021,"American Friend, The (Amerikanische Freund, Der) (1977)",Crime|Drama|Mystery|Thriller +6022,American Me (1992),Drama +6023,Band of Outsiders (Bande à part) (1964),Comedy|Crime|Drama|Romance +6024,Breaking Up (1997),Comedy|Romance +6025,CB4 - The Movie (1993),Comedy +6026,"Deathmaker, The (Totmacher, Der) (1995)",Crime|Drama +6027,Dogfight (1991),Drama|Romance +6028,"Easy Come, Easy Go (1967)",Adventure|Musical +6029,Fun in Acapulco (1963),Comedy|Musical +6030,Girls! Girls! Girls! (1962),Comedy|Musical +6031,Imitation of Life (1959),Drama|Romance +6032,"Little Romance, A (1979)",Comedy|Romance +6033,Mystery Date (1991),Comedy +6034,"Paradise, Hawaiian Style (1966)",Comedy|Musical +6035,Pépé le Moko (1937),Crime|Drama|Romance +6036,Secret Admirer (1985),Comedy|Romance +6037,Summer Lovers (1982),Comedy|Drama|Romance +6038,Tune in Tomorrow... (1990),Comedy|Romance +6039,"Woman in Red, The (1984)",Comedy|Romance +6040,Darkness Falls (2003),Horror|Thriller +6041,Amen. (2002),Drama +6042,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary +6043,In the Mirror of Maya Deren (Im Spiegel der Maya Deren) (2002),Documentary +6044,Blind Date (1984),Horror|Thriller +6045,Bullet (1996),Action|Crime|Drama +6046,Claudine (1974),Drama +6047,Dead Reckoning (1947),Drama|Film-Noir|Mystery +6048,"Devil at 4 O'Clock, The (1961)",Drama +6049,Ethan Frome (1993),Drama +6050,Gus (1976),Children|Comedy +6051,"Harder They Come, The (1973)",Action|Crime|Drama +6052,"Horse in the Gray Flannel Suit, The (1968)",Children|Comedy +6053,Krush Groove (1985),Drama|Musical +6054,"Moon-Spinners, The (1964)",Children|Mystery +6055,Sugar Hill (1994),Drama +6056,Chaos (2001),Comedy|Crime|Drama +6057,Biker Boyz (2003),Action|Crime|Drama +6058,Final Destination 2 (2003),Horror|Thriller +6059,"Recruit, The (2003)",Action|Thriller +6060,"Guru, The (2002)",Comedy|Romance +6061,Kedma (2002),Drama|War +6062,Lost in La Mancha (2002),Documentary +6063,May (2002),Drama|Horror +6064,"Harder They Fall, The (1956)",Drama|Film-Noir +6065,I'm All Right Jack (1959),Comedy +6066,Murder by Decree (1979),Mystery|Thriller +6067,Ordinary Decent Criminal (2000),Comedy|Crime +6068,Pursued (1947),Thriller|Western +6069,"Big Time Operators (Smallest Show on Earth, The) (1957)",Comedy +6070,Tokyo Decadence (Topâzu) (1992),Drama +6071,Two-Way Stretch (1960),Comedy|Crime +6072,"Unfaithful Wife, The (Femme infidèle, La) (1969)",Drama|Thriller +6073,Victim (1961),Crime|Drama +6074,Endangered Species (1982),Mystery|Sci-Fi|Thriller +6075,"Simple-Minded Murder, The (Enfaldige mördaren, Den) (1982)",Drama +6076,Enigma (1983),Drama|Sci-Fi +6077,Evil Under the Sun (1982),Crime|Drama|Mystery +6078,Firefox (1982),Action|Sci-Fi|Thriller +6079,Five Days One Summer (1982),Drama +6080,Forced Vengeance (1982),Action|Adventure +6081,"Never Play Clever Again (Gendarme et les gendarmettes, Le) (1982)",Comedy|Crime +6082,"Grey Fox, The (1982)",Romance|Western +6083,Hammett (1982),Crime|Mystery +6084,Honkytonk Man (1982),Comedy|Drama +6085,Neil Young: Human Highway (1982),Comedy|Drama +6086,"I, the Jury (1982)",Crime|Drama|Thriller +6087,If You Could See What I Hear (1982),Comedy|Drama|Romance +6088,Jekyll & Hyde... Together Again (1982),Comedy|Sci-Fi +6089,"J. Gang Meets Dynamite Harry, The (Jönssonligan & DynamitHarry) (1982)",Comedy|Crime +6090,Kiss Me Goodbye (1982),Comedy +6091,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy +6092,"Last American Virgin, The (1982)",Comedy|Drama +6093,"Last Unicorn, The (1982)",Animation|Children|Fantasy +6094,Liquid Sky (1982),Comedy|Sci-Fi +6095,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action +6096,Making Love (1982),Drama +6097,Manhattan Baby (1982),Horror +6098,"Marathon Family, The (Maratonci Trce Pocasni Krug) (1982)",Comedy +6099,Megaforce (1982),Action|Sci-Fi +6100,"Midsummer Night's Sex Comedy, A (1982)",Comedy|Romance +6101,Missing (1982),Drama|Mystery|Thriller +6102,"Missionary, The (1982)",Comedy +6103,Monsignor (1982),Drama|War +6104,Monty Python Live at the Hollywood Bowl (1982),Comedy +6105,Moonlighting (1982),Drama +6106,Mother Lode (1982),Adventure +6107,"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)",Drama|War +6108,"That Night in Varennes (Nuit de Varennes, La) (1982)",Drama +6109,One from the Heart (1982),Drama|Romance +6110,Pandemonium (1982),Comedy|Horror|Mystery +6111,Paradise (1982),Adventure|Romance +6112,Partners (1982),Comedy +6113,Godard's Passion (Passion) (1982),Drama +6114,Permanent Vacation (1982),Drama +6115,Personal Best (1982),Drama +6116,"Pirate Movie, The (1982)",Adventure|Comedy|Musical +6117,Privates on Parade (1982),Comedy|Drama|War +6118,Blind Chance (Przypadek) (1981),Drama +6119,Santa Claus Is a Stinker (Le Père Noël est une ordure) (1982),Comedy +6120,Q: The Winged Serpent (1982),Drama|Fantasy|Horror|Sci-Fi|Thriller +6121,Querelle (1982),Drama +6122,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary +6123,Sunless (Sans Soleil) (1983),Documentary +6124,Savannah Smiles (1982),Comedy +6125,"Secret Policeman's Other Ball, The (1982)",Comedy|Documentary|Musical +6126,"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)",Drama +6127,Shoot the Moon (1982),Drama +6128,Six Pack (1982),Comedy|Drama +6129,Six Weeks (1982),Drama +6130,"Soldier, The (1982)",Action +6131,Some Kind of Hero (1982),Comedy|Drama +6132,"New York Ripper, The (Squartatore di New York, Lo) (1982)",Crime|Horror|Mystery|Thriller +6133,"State of Things, The (Stand der Dinge, Der) (1982)",Drama +6134,Starstruck (1982),Comedy|Musical +6135,Still of the Night (1982),Mystery|Thriller +6136,"South, The (Sur, El) (1983)",Drama|Romance +6137,Sword of the Valiant (1984),Action|Adventure|Fantasy|Romance +6138,Tag: The Assassination Game (a.k.a. Everybody Gets It in the End) (1982),Action|Thriller +6139,Tempest (1982),Comedy|Drama +6140,Tenebre (1982),Horror|Mystery|Thriller +6141,They Call Me Bruce? (a.k.a. A Fistful of Chopsticks) (1982),Comedy +6142,Time Walker (a.k.a. Being From Another Planet) (1982),Horror|Sci-Fi +6143,Trail of the Pink Panther (1982),Comedy|Crime +6144,"Traviata, La (1982)",Drama|Musical +6145,Venom (1982),Horror|Thriller +6146,To Begin Again (a.k.a. Starting Over) (Volver a Empezar) (1982),Drama +6147,"White Rose, The (Weiße Rose, Die) (1982)",Drama|Film-Noir +6148,White Dog (1982),Drama|Horror|Thriller +6149,"Final Option, The (Who Dares Wins) (1982)",Action|War +6150,Wrong Is Right (a.k.a. The Man With the Deadly Lens) (1982),Drama|Thriller +6151,Yol (a.k.a. The Way) (1982),Drama +6152,"Yor, the Hunter from the Future (1983)",Sci-Fi +6153,Zapped! (1982),Comedy|Sci-Fi +6154,Deliver Us from Eva (2003),Comedy|Romance +6155,How to Lose a Guy in 10 Days (2003),Comedy|Romance +6156,Shanghai Knights (2003),Action|Adventure|Comedy +6157,Daredevil (2003),Action|Crime +6158,"Jungle Book 2, The (2003)",Animation|Children +6159,All the Real Girls (2003),Drama|Romance +6160,Amandla! A Revolution in Four Part Harmony (2002),Documentary|Musical +6161,Painted Fire (Chihwaseon) (2002),Drama +6162,Gerry (2002),Adventure|Drama +6163,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller +6164,Lockdown (2000),Drama +6165,Ordinary Sinner (2001),Drama|Romance +6166,Dennis the Menace (1993),Comedy +6167,Stand-In (1937),Comedy +6168,10 to Midnight (1983),Action|Adventure|Thriller +6169,"Black Stallion Returns, The (1983)",Adventure|Children +6170,"Black Stallion, The (1979)",Adventure|Children|Drama +6171,Cesar & Rosalie (César et Rosalie) (1972),Comedy|Drama|Romance +6172,"Countess from Hong Kong, A (1967)",Comedy +6173,Into the West (1992),Adventure|Children +6174,Kinjite: Forbidden Subjects (1989),Crime|Thriller +6175,Messenger of Death (1988),Thriller +6176,Mr. Majestyk (1974),Action|Drama +6177,Murphy's Law (1986),Action +6178,"Patch of Blue, A (1965)",Drama|Romance +6179,"Prayer for the Dying, A (1987)",Action|Drama +6180,Q & A (1990),Crime|Drama +6181,"Red Badge of Courage, The (1951)",Drama|War +6182,"Thrill of It All, The (1963)",Comedy +6183,Pillow Talk (1959),Comedy|Musical|Romance +6184,"Man Who Fell to Earth, The (1976)",Drama|Sci-Fi +6185,Dark Blue (2003),Action|Crime|Drama|Thriller +6186,Gods and Generals (2003),Action|Drama|War +6187,"Life of David Gale, The (2003)",Crime|Drama|Thriller +6188,Old School (2003),Comedy +6189,Dischord (2001),Drama|Thriller +6190,"Lawless Heart, The (2003)",Comedy|Drama +6191,"Navigators, The (2001)",Comedy|Drama +6192,Open Hearts (Elsker dig for evigt) (2002),Romance +6193,Poolhall Junkies (2002),Comedy|Drama|Thriller +6194,Till Human Voices Wake Us (2001),Drama|Romance +6195,Stone Reader (2002),Documentary +6196,Cradle 2 the Grave (2003),Action|Crime|Drama|Thriller +6197,Spider (2002),Drama|Mystery +6198,American Heart (1992),Crime|Drama +6199,Edie & Pen (1996),Comedy +6200,Insignificance (1985),Comedy|Drama +6201,Lady Jane (1986),Drama|Romance +6202,Late Marriage (Hatuna Meuheret) (2001),Comedy|Drama|Romance +6203,Life Stinks (1991),Comedy +6204,"Meteor Man, The (1993)",Comedy +6205,Mr. North (1988),Comedy|Drama +6206,Seize the Day (1986),Drama +6207,"Slaughter Rule, The (2002)",Drama +6208,Teenagers from Outer Space (1959),Horror|Sci-Fi +6209,Trouble Bound (1993),Action|Comedy +6210,Volcano High (Whasango) (2001),Action|Comedy +6211,Ten (2002),Drama +6212,Bringing Down the House (2003),Comedy +6213,Tears of the Sun (2003),Action|Drama|Thriller +6214,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller +6215,Laurel Canyon (2002),Drama +6216,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama +6217,"Safety of Objects, The (2001)",Drama +6218,Bend It Like Beckham (2002),Comedy|Drama|Romance +6219,"Hunted, The (2003)",Action|Drama|Thriller +6220,Willard (2003),Drama|Horror|Thriller +6221,Gaudi Afternoon (2001),Comedy|Drama|Mystery +6222,Prozac Nation (2001),Drama +6223,Spun (2001),Comedy|Crime|Drama +6224,Under the Skin of the City (Zir-e-poost-e Shahr) (2001),Drama +6225,King of Kings (1961),Drama +6226,"Lost Honor of Katharina Blum, The (Verlorene Ehre der Katharina Blum oder: Wie Gewalt entstehen und wohin sie führen kann, Die) (1975)",Drama +6227,Loving You (1957),Drama|Musical +6228,"Talk of the Town, The (1942)",Comedy|Romance|Thriller +6229,Two-Lane Blacktop (1971),Drama +6230,Bang the Drum Slowly (1973),Drama +6231,"Benny Goodman Story, The (1955)",Drama|Musical +6232,Born Free (1966),Adventure|Children|Drama +6233,Born Yesterday (1993),Comedy|Romance +6234,Equus (1977),Drama|Mystery +6235,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War +6236,Fear Strikes Out (1957),Drama +6237,"Glenn Miller Story, The (1953)",Drama +6238,Green Card (1990),Comedy|Drama|Romance +6239,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi +6240,One Good Cop (1991),Action|Crime|Drama +6241,Pauline at the Beach (Pauline à la Plage) (1983),Comedy|Drama|Romance +6242,Ringu (Ring) (1998),Horror|Mystery|Thriller +6243,Ringu 2 (Ring 2) (1999),Horror|Mystery +6244,Salaam Bombay! (1988),Drama +6245,Sweet Charity (1969),Comedy|Drama|Musical|Romance +6246,Talent for the Game (1991),Drama +6247,Women in Love (1969),Drama|Romance +6248,Japon (a.k.a. Japan) (Japón) (2002),Drama +6249,Boat Trip (2003),Comedy +6250,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller +6251,Piglet's Big Movie (2003),Animation|Children +6252,View from the Top (2003),Comedy|Romance +6253,Down and Out with the Dolls (2001),Comedy +6254,"Awful Truth, The (1937)",Comedy|Romance +6255,"Bible, The (a.k.a. Bible... In the Beginning, The) (1966)",Drama +6256,"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)",Horror|Mystery|Thriller +6257,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Documentary|Drama +6258,"Dames du Bois de Boulogne, Les (Ladies of the Bois de Boulogne, The) (Ladies of the Park) (1945)",Drama|Romance +6259,My Friend Flicka (1943),Children|Western +6260,"Robe, The (1953)",Drama +6261,Wind (1992),Action|Romance +6262,Unknown Pleasures (Ren xiao yao) (2002),Comedy|Drama +6263,Basic (2003),Drama|Thriller|War +6264,"Core, The (2003)",Action|Drama|Sci-Fi|Thriller +6265,Head of State (2003),Comedy +6266,What a Girl Wants (2003),Comedy|Drama|Romance +6267,Assassination Tango (2002),Drama|Thriller +6268,Raising Victor Vargas (2002),Comedy|Drama|Romance +6269,Stevie (2002),Documentary +6270,Akira Kurosawa's Dreams (Dreams) (1990),Drama|Fantasy +6271,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance +6272,Eye of God (1997),Drama +6273,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance +6274,Physical Evidence (1989),Crime|Thriller +6275,Square Dance (1987),Drama|Romance +6276,Wake of the Red Witch (1948),Action|Adventure|Drama +6277,Winter Kills (1979),Drama +6278,Fellini: I'm a Born Liar (Fellini: Je Suis um Grand Menteur) (2001),Documentary +6279,"Good Thief, The (2002)",Crime|Drama +6280,"Man Apart, A (2003)",Action|Crime|Drama|Thriller +6281,Phone Booth (2002),Drama|Thriller +6282,Cet amour-là (2001),Drama|Romance +6283,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller +6284,DysFunktional Family (2003),Comedy|Documentary +6285,Levity (2003),Drama +6286,"Man Without a Past, The (Mies vailla menneisyyttä) (2002)",Comedy|Crime|Drama +6287,Anger Management (2003),Comedy +6288,Better Luck Tomorrow (2002),Crime|Drama +6289,Ghosts of the Abyss (2003),Documentary|IMAX +6290,House of 1000 Corpses (2003),Horror +6291,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama +6292,Marion Bridge (2002),Drama +6293,XX/XY (2002),Drama|Romance +6294,Bulletproof Monk (2003),Action|Adventure|Sci-Fi +6295,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy +6296,"Mighty Wind, A (2003)",Comedy|Musical +6297,Holes (2003),Adventure|Children|Comedy|Mystery +6298,Malibu's Most Wanted (2003),Comedy|Crime +6299,"Winged Migration (Peuple migrateur, Le) (2001)",Documentary +6300,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime +6301,Straw Dogs (1971),Drama|Thriller +6302,Beginning of the End (1957),Sci-Fi +6303,"Andromeda Strain, The (1971)",Mystery|Sci-Fi +6304,Brainscan (1994),Comedy|Horror|Sci-Fi|Thriller +6305,Fahrenheit 451 (1966),Drama|Sci-Fi +6306,I Am Trying to Break Your Heart (2002),Documentary +6307,"Iceman Cometh, The (1973)",Drama +6308,Legal Eagles (1986),Comedy|Crime|Romance +6309,Married to It (1991),Comedy|Drama +6310,Memories of Me (1988),Comedy|Drama +6311,"Other Side of Heaven, The (2001)",Adventure|Drama +6312,"Private Function, A (1984)",Comedy +6313,Sibling Rivalry (1990),Comedy +6314,Undercover Blues (1993),Comedy|Crime +6315,Wildcats (1986),Comedy +6316,"Wiz, The (1978)",Adventure|Children|Comedy|Fantasy|Musical +6317,Cartouche (1962),Action|Adventure|Comedy|Drama +6318,"Marrying Man, The (Too Hot to Handle) (1991)",Comedy|Romance +6319,"My Father the Hero (Mon père, ce héros.) (1991)",Comedy|Drama +6320,Scenes from a Mall (1991),Comedy +6321,Stella (1990),Drama +6322,Confidence (2003),Crime|Thriller +6323,Identity (2003),Crime|Horror|Mystery|Thriller +6324,It Runs in the Family (2003),Comedy|Drama +6325,"Real Cancun, The (2003)",Documentary +6326,City of Ghosts (2002),Crime|Drama|Thriller +6327,"Decade Under the Influence, A (2003)",Documentary +6328,House of Fools (2002),Drama|Romance|War +6329,Manic (2001),Drama +6330,People I Know (2002),Crime|Drama +6331,Spellbound (2002),Documentary +6332,"Lizzie McGuire Movie, The (2003)",Children|Comedy|Romance +6333,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller +6334,Blue Car (2002),Drama +6335,"Dancer Upstairs, The (2002)",Crime|Drama|Thriller +6336,Marooned in Iraq (Gomgashtei dar Aragh) (2002),Drama +6337,Owning Mahowny (2003),Crime|Drama|Thriller +6338,Daddy Day Care (2003),Children|Comedy +6339,"Man on the Train (Homme du train, L') (2002)",Comedy|Drama +6340,Only the Strong Survive - A Celebration of Soul (2002),Documentary|Musical +6341,"Shape of Things, The (2003)",Drama +6342,"Trip, The (2002)",Comedy|Drama|Romance +6343,Washington Heights (2002),Drama|Romance +6344,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance +6345,"Chorus Line, A (1985)",Comedy|Drama|Musical +6346,Absolute Beginners (1986),Musical +6347,Beat Street (1984),Drama|Musical +6348,Breakin' 2: Electric Boogaloo (1984),Musical +6349,Breakin' (1984),Drama|Musical +6350,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +6351,Hysterical Blindness (2002),Drama +6352,Lambada (1990),Drama +6353,Roadie (1980),Comedy|Musical +6354,"Carpetbaggers, The (1964)",Drama +6355,"Girls, Les (1957)",Musical +6356,Gunfight at the O.K. Corral (1957),Western +6357,High Society (1956),Comedy|Musical|Romance +6358,Kiss Me Kate (1953),Comedy|Musical|Romance +6365,"Matrix Reloaded, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6366,Dracula: Pages from a Virgin's Diary (2001),Horror|Mystery +6367,Down with Love (2003),Comedy|Romance +6368,Cinemania (2002),Documentary +6369,Friends and Family (2001),Comedy +6370,"Spanish Apartment, The (L'auberge espagnole) (2002)",Comedy|Drama|Romance +6371,Pokémon Heroes (2003),Animation|Children +6373,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance +6374,"In-Laws, The (2003)",Comedy +6375,Gigantic (A Tale of Two Johns) (2002),Documentary +6376,Respiro (2002),Comedy|Drama +6377,Finding Nemo (2003),Adventure|Animation|Children|Comedy +6378,"Italian Job, The (2003)",Action|Crime +6379,Wrong Turn (2003),Horror|Thriller +6380,Capturing the Friedmans (2003),Documentary +6381,"Three Marias, The (Três Marias, As) (2002)",Drama +6382,Together (Han ni Zai Yiki) (2002),Drama +6383,"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)",Action|Crime|Thriller +6384,Love the Hard Way (2001),Crime|Drama|Romance +6385,Whale Rider (2002),Drama +6386,Nevada Smith (1966),Western +6387,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller +6388,Regeneration (1997),Drama|War +6390,Silk Stockings (1957),Musical +6391,Snowball Express (1972),Children|Comedy +6392,"Man Called Horse, A (1970)",Adventure|Drama|Western +6393,For Sale (À Vendre) (1998),Drama +6394,Big Jake (1971),Western +6395,"Crazies, The (a.k.a. Code Name: Trixie) (1973)",Action|Drama|Horror|Sci-Fi|Thriller +6396,Dementia 13 (1963),Horror|Thriller +6397,"Bizarre, Bizarre (Drôle de drame ou L'étrange aventure de Docteur Molyneux) (1937)",Comedy +6398,Le Mans (1971),Action|Adventure +6400,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary +6401,Rio Lobo (1970),Adventure|Romance|War|Western +6402,Siam Sunset (1999),Comedy +6403,"Swimmer, The (1968)",Drama +6404,"White Sheik, The (Sceicco bianco, Lo) (1952)",Comedy|Romance +6405,Treasure Island (1950),Adventure|Children +6406,Two Evil Eyes (1990),Horror +6407,"Walk, Don't Run (1966)",Comedy|Romance +6408,Animals are Beautiful People (1974),Comedy|Documentary +6409,Bend of the River (1952),Western +6410,Car Wash (1976),Comedy +6411,Come September (1961),Comedy +6412,Destry Rides Again (1939),Comedy|Western +6413,"Electric Horseman, The (1979)",Comedy|Western +6414,Gay Purr-ee (1962),Animation|Children|Musical +6415,Intervista (1987),Comedy|Drama +6416,King Rat (1965),Drama|War +6417,Live Wire (1992),Action +6419,Mr. & Mrs. Bridge (1990),Drama +6420,Night Passage (1957),Western +6421,"Rare Breed, The (1966)",Action|Drama|Romance|Western +6422,Shenandoah (1965),Drama|War|Western +6423,Straight Talk (1992),Comedy +6424,Oscar (1991),Comedy|Crime|Mystery|Romance +6425,"6th Man, The (Sixth Man, The) (1997)",Comedy +6426,"Far Country, The (1954)",Western +6427,"Railway Children, The (1970)",Children|Drama +6428,Two Mules for Sister Sara (1970),Comedy|War|Western +6429,Winchester '73 (1950),Western +6430,Ziggy Stardust and the Spiders from Mars (1973),Documentary|Musical +6431,Battle Cry (1955),Drama|War +6432,"Courtship of Eddie's Father, The (1963)",Comedy +6433,"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)",Documentary +6434,"Objective, Burma! (1945)",War +6435,Operation Pacific (1951),Drama|War +6436,This Boy's Life (1993),Drama +6437,13 Rue Madeleine (1947),Thriller|War +6438,633 Squadron (1964),Drama|War +6439,Attack! (1956),Drama|War +6440,Barton Fink (1991),Drama|Thriller +6441,Battle of Britain (1969),War +6442,Belle époque (1992),Comedy|Romance +6443,"Big Trail, The (1930)",Adventure|Romance|Western +6445,Cloak and Dagger (1946),Drama|Romance +6446,"Comancheros, The (1961)",Action|Adventure|Drama|Romance +6447,Duel at Diablo (1966),War +6448,"Flight of the Phoenix, The (1965)",Action|Adventure|Drama +6449,From the Terrace (1960),Drama +6450,"Heaven Knows, Mr. Allison (1957)",Drama|War +6451,"Hot Rock, The (1972)",Comedy|Crime +6452,"Long, Hot Summer, The (1958)",Drama +6453,Man of Aran (1934),Documentary +6454,Music Box (1989),Drama +6455,North to Alaska (1960),Comedy|Western +6456,This Man Must Die (Que la bête meure) (1969),Crime|Drama|Thriller +6457,Sink the Bismark! (1960),Action|Drama|War +6458,"Blue Max, The (1966)",Adventure|Drama|War +6459,"Desert Fox, The (1951)",Drama|War +6460,"Trial, The (Procès, Le) (1962)",Drama +6461,"Unforgiven, The (1960)",Drama|Western +6462,"Undefeated, The (1969)",Western +6463,Divine Trash (1998),Documentary +6464,Good Burger (1997),Children|Comedy +6465,Jubilee (1977),Drama +6466,Mississippi Masala (1991),Drama|Romance +6467,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama +6468,"Stranger Among Us, A (1992)",Crime|Drama|Romance +6469,Cahill U.S. Marshal (Cahill: United States Marshal) (Wednesday Morning) (1973),Western +6470,Chisum (1970),Western +6471,Defense of the Realm (1986),Thriller +6472,Eat a Bowl of Tea (1989),Romance +6473,Half Moon Street (1986),Drama|Thriller +6474,"Truce, The (a.k.a. La Tregua) (1996)",Drama +6475,Opportunity Knocks (1990),Comedy +6476,Shattered (1991),Mystery|Thriller +6477,"Song of Bernadette, The (1943)",Drama +6478,"Life and Times of Judge Roy Bean, The (1972)",Comedy|Western +6479,"Spirit of '76, The (1990)",Comedy|Sci-Fi +6480,Thoroughly Modern Millie (1967),Comedy|Musical +6481,Where the Heart Is (1990),Comedy|Drama +6482,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy +6483,From Justin to Kelly (2003),Musical|Romance +6484,Hollywood Homicide (2003),Action|Crime|Drama +6485,Rugrats Go Wild! (2003),Adventure|Animation|Children|Comedy +6486,"Hard Word, The (2002)",Comedy|Crime|Drama|Thriller +6487,"Heart of Me, The (2002)",Drama|Romance +6488,Jet Lag (Décalage horaire) (2002),Comedy|Romance +6489,"Loco Love (Mi Casa, Su Casa) (2002)",Comedy +6490,Manito (2002),Drama +6491,No Turning Back (2001),Adventure|Drama|Thriller +6492,Tycoon (Oligarkh) (2002),Crime|Drama +6493,Alex and Emma (2003),Comedy|Drama|Romance +6494,On_Line (a.k.a. On Line) (2002),Drama +6495,Experiment in Terror (1962),Crime|Thriller +6496,Ecstasy (Éxtasis) (1996),Drama +6497,Is Paris Burning? (Paris brûle-t-il?) (1966),Drama|War +6498,Murphy's War (1971),War +6499,Orphans of the Storm (1921),Drama +6500,"Satanic Rites of Dracula, The (1974)",Horror +6501,Strange Planet (1999),Comedy|Romance +6502,28 Days Later (2002),Action|Horror|Sci-Fi +6503,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller +6504,Gasoline (Benzina) (2001),Crime +6505,Ed and His Dead Mother (1993),Comedy|Horror +6506,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller +6507,Just a Little Harmless Sex (1999),Comedy|Romance +6508,"Bank, The (2001)",Thriller +6509,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance +6510,"Bodies, Rest & Motion (1993)",Drama|Romance +6511,Jesus (1979),Drama +6512,"Long Ships, The (1963)",Adventure +6513,Made for Each Other (1939),Comedy|Drama|Romance +6514,Ring of Terror (1962),Horror +6515,You Only Live Once (1937),Crime|Film-Noir +6516,Anastasia (1956),Drama +6517,"Babe, The (1992)",Drama +6518,Flight of the Intruder (1991),Action|War +6519,Fun with Dick and Jane (1977),Comedy +6520,Knights of the Round Table (1953),Adventure|Drama +6521,"Main Event, The (1979)",Comedy +6522,Man's Favorite Sport? (1964),Comedy +6523,Mr. Baseball (1992),Comedy|Romance +6524,Never on Sunday (Pote tin Kyriaki) (1960),Comedy|Drama +6525,Nuts (1987),Drama +6526,Rhapsody in August (Hachi-gatsu no kyôshikyoku) (1991),Drama +6527,Scaramouche (1952),Adventure|Romance +6528,Start the Revolution Without Me (1970),Comedy +6529,Strange Bedfellows (1965),Comedy +6530,"Tenant, The (Locataire, Le) (1976)",Drama|Horror|Mystery|Thriller +6531,"Hour of the Pig, The (1993)",Crime|Drama|Mystery +6532,Up the Sandbox (1972),Comedy +6533,"What's Up, Doc? (1972)",Comedy +6534,Hulk (2003),Action|Adventure|Sci-Fi +6535,"Legally Blonde 2: Red, White & Blonde (2003)",Comedy +6536,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy +6537,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi +6538,Swimming Pool (2003),Drama|Mystery|Thriller +6539,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy +6540,Madame Satã (2002),Drama +6541,"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)",Action|Fantasy|Sci-Fi +6542,"Cuckoo, The (Kukushka) (2002)",Comedy|Drama|War +6543,"Holy Land, The (2001)",Drama +6544,"Housekeeper, The (femme de ménage, Une) (2002)",Comedy|Drama|Romance +6545,I Capture the Castle (2003),Drama|Romance +6546,Km. 0 - Kilometer Zero (Kilómetro cero) (2000),Comedy|Drama +6547,Northfork (2003),Drama|Fantasy +6548,Bad Boys II (2003),Action|Comedy|Crime|Thriller +6549,How to Deal (2003),Comedy|Drama|Romance +6550,Johnny English (2003),Action|Comedy|Thriller +6551,"Anarchist Cookbook, The (2002)",Comedy|Romance +6552,Dirty Pretty Things (2002),Crime|Drama|Thriller +6553,"Embalmer, The (Imbalsamatore, L') (2002)",Drama +6554,Garage Days (2002),Comedy|Musical +6555,On the Run (2002),Crime|Drama|Thriller +6556,"Sea Is Watching, The (Umi wa miteita) (2002)",Romance +6557,Born to Be Wild (1995),Adventure|Children|Comedy|Drama +6558,Curly Sue (1991),Comedy|Drama +6559,Little Giants (1994),Children|Comedy +6560,Loose Cannons (1990),Action|Comedy +6561,"Mouse That Roared, The (1959)",Comedy|War +6562,Spencer's Mountain (1963),Comedy|Drama +6563,Masked & Anonymous (2003),Comedy|Drama +6564,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller +6565,Seabiscuit (2003),Drama +6566,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children +6567,Buffalo Soldiers (2001),Comedy|Crime|Drama|War +6568,Camp (2003),Comedy|Musical +6569,Hotel (2001),Comedy +6570,"Lucía, Lucía (Hija del caníbal, La) (2003)",Comedy|Drama +6571,"Mondays in the Sun (Lunes al sol, Los) (2002)",Drama +6572,Scorched (2003),Comedy|Crime +6573,Avanti! (1972),Comedy|Drama +6574,Eve of Destruction (1991),Action|Sci-Fi|Thriller +6575,Gator (1976),Action|Drama +6576,Juggernaut (1974),Action|Thriller +6577,Kickboxer 2: The Road Back (1991),Action|Drama +6578,"Kiss Me, Stupid (1964)",Comedy +6579,"One, Two, Three (1961)",Comedy +6580,Possible Loves (Amores Possíveis) (2000),Comedy|Romance +6581,"Private Life of Sherlock Holmes, The (1970)",Comedy|Drama|Mystery +6582,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller +6583,"Blood of Heroes, The (Salute of the Jugger, The) (1989)",Action|Sci-Fi +6584,"What's Up, Tiger Lily? (1966)",Adventure|Comedy|Crime|Thriller +6585,White Lightning (1973),Action|Crime|Drama +6586,American Wedding (American Pie 3) (2003),Comedy +6587,Gigli (2003),Comedy|Crime|Romance +6588,And Now... Ladies and Gentlemen... (2002),Romance|Thriller +6589,Boys Life 4: Four Play (2003),Comedy|Drama +6590,I'll Be There (2003),Comedy|Musical|Romance +6591,"Magdalene Sisters, The (2002)",Drama +6592,"Secret Lives of Dentists, The (2002)",Drama +6593,Freaky Friday (2003),Children|Comedy|Fantasy +6594,Seaside (Bord de Mer) (2002),Drama +6595,S.W.A.T. (2003),Action|Thriller +6596,"Divorce, Le (2003)",Comedy|Drama|Romance +6597,"Princess Blade, The (Shura Yukihime) (2001)",Action|Sci-Fi +6598,Step Into Liquid (2002),Documentary +6599,Accattone (1961),Drama +6600,...And God Spoke (1993),Comedy +6601,Big Trouble (1986),Comedy +6602,Brain Damage (1988),Comedy|Horror +6603,"Double Life, A (1947)",Crime|Drama|Film-Noir +6604,Hawks and Sparrows (Uccellacci e Uccellini) (1966),Comedy +6605,"Man in the Glass Booth, The (1975)",Drama +6606,Purpose (2002),Drama +6607,"Red Pony, The (1949)",Drama +6608,Sex & the Other Man (1996),Comedy|Drama +6609,"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)",Drama +6610,"Honeymoon Killers, The (1970)",Crime|Thriller +6611,Umberto D. (1952),Drama +6612,Brother's Keeper (1992),Documentary +6613,"Day of the Dolphin, The (1973)",Drama +6614,I Love You to Death (1990),Comedy|Crime +6615,Freddy vs. Jason (2003),Action|Horror|Thriller +6616,Grind (2003),Action|Comedy +6617,Open Range (2003),Western +6618,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy +6619,Uptown Girls (2003),Comedy +6620,American Splendor (2003),Comedy|Drama +6621,"Backyard, The (2002)",Documentary +6622,Carnages (a.k.a. Carnage) (2002),Drama +6623,Passionada (2002),Comedy|Romance +6624,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy +6625,Camp Nowhere (1994),Adventure|Children|Comedy +6626,"Cemetery Club, The (1993)",Comedy|Drama|Romance +6627,Changing Habits (1997),Comedy|Drama +6628,Hot Dog... The Movie (1984),Comedy +6629,House of Wax (1953),Crime|Horror|Mystery|Thriller +6630,"Inn of the Sixth Happiness, The (1958)",Adventure|Drama +6631,Man's Best Friend (1993),Horror|Sci-Fi|Thriller +6632,Of Unknown Origin (1983),Horror +6633,Prince of Jutland (a.k.a. Royal Deceit) (1994),Drama +6634,Rowing with the Wind (Remando al viento) (1988),Drama|Romance +6635,"Rachel Papers, The (1989)",Drama|Romance +6636,"Sure Thing, The (1985)",Comedy|Romance +6637,Thrashin' (1986),Action|Drama +6638,Valley Girl (1983),Comedy|Romance +6639,Wait Until Dark (1967),Drama|Thriller +6640,Where the Rivers Flow North (1993),Drama +6641,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama +6642,Showdown in Little Tokyo (1991),Action|Crime +6643,Tokyo Story (Tôkyô monogatari) (1953),Drama +6644,"Green Ray, The (Rayon vert, Le) (1986)",Drama|Romance +6645,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi +6646,Valley of the Dolls (1967),Drama +6647,"Business of Fancydancing, The (2002)",Drama +6648,Chunhyang (2000),Drama|Musical|Romance +6649,Tunes of Glory (1960),Drama +6650,Kind Hearts and Coronets (1949),Comedy|Drama +6651,Ash Wednesday (2002),Crime|Drama +6652,Joe Kidd (1972),Western +6653,"Keep, The (1983)",Horror|Thriller +6654,Atragon (Kaitei Gunkan) (1963),Adventure|Sci-Fi +6655,"Mysterians, The (Chikyu Boeigun) (1957)",Sci-Fi +6656,Attack of the Puppet People (1958),Horror|Sci-Fi +6657,"Beast from 20,000 Fathoms, The (1953)",Sci-Fi +6658,10 (1979),Comedy|Romance +6659,Tremors (1990),Comedy|Horror|Sci-Fi +6660,"Red Shoes, The (1948)",Drama|Fantasy|Musical|Romance +6661,Me & Isaac Newton (1999),Documentary +6662,"Pink Panther, The (1963)",Comedy|Crime +6663,"Pink Panther Strikes Again, The (1976)",Comedy|Crime +6664,Commando (1985),Action|Adventure +6665,Dracula (1979),Horror|Romance +6666,"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)",Comedy|Drama|Fantasy +6667,Waco: The Rules of Engagement (1997),Documentary +6668,"Road Home, The (Wo de fu qin mu qin) (1999)",Drama|Romance +6669,Ikiru (1952),Drama +6670,Comic Book Villains (2002),Comedy +6671,"Angel at My Table, An (1990)",Drama +6672,War Photographer (2001),Documentary|War +6673,"Ay, Carmela! (¡Ay, Carmela!) (1990)",Drama|War +6674,War and Peace (Jang Aur Aman) (2001),Documentary|War +6675,Far (2001),Drama +6676,Incident at Oglala (1992),Documentary +6677,Predictions of Fire (Prerokbe Ognja) (1996),Documentary +6678,"Handmaid's Tale, The (1990)",Drama|Sci-Fi +6679,Revolution OS (2001),Documentary +6680,Live Nude Girls Unite! (2000),Documentary +6681,All the Little Animals (1998),Drama|Thriller +6682,Earth (1998),Drama|War +6683,Fire (1996),Drama +6684,Death in Venice (Morte a Venezia) (1971),Drama|Romance +6685,Marci X (2003),Comedy|Musical +6686,"Medallion, The (2003)",Action|Comedy|Crime|Fantasy +6687,My Boss's Daughter (2003),Comedy|Romance +6688,Autumn Spring (Babí léto) (2001),Comedy|Drama +6689,"Battle of Shaker Heights, The (2003)",Comedy|Drama|Romance +6690,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery +6691,Dust (2001),Drama|Western +6692,Stoked: The Rise and Fall of Gator (2002),Documentary +6693,Venus Boyz (2001),Documentary +6694,Suddenly (Tan de Repente) (2002),Comedy|Drama +6695,Jeepers Creepers 2 (2003),Horror|Thriller +6696,Bollywood/Hollywood (2002),Comedy|Drama|Musical|Romance +6697,Civil Brand (2002),Drama +6698,Nola (2002),Drama +6699,Once Upon a Time in the Midlands (2002),Drama +6700,"Other Side of the Bed, The (Otro lado de la cama, El) (2002)",Comedy|Drama|Musical|Romance +6701,Zero Day (2002),Drama +6702,Dickie Roberts: Former Child Star (2003),Comedy +6703,"Order, The (2003)",Horror|Mystery|Thriller +6704,Home Room (2002),Drama +6705,Party Monster (2003),Comedy|Crime|Drama|Thriller +6706,Taking Sides (2001),Drama +6707,Cabin Fever (2002),Horror|Thriller +6708,Matchstick Men (2003),Comedy|Crime|Drama +6709,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller +6710,Dummy (2002),Comedy|Drama|Romance +6711,Lost in Translation (2003),Comedy|Drama|Romance +6712,Luster (2002),Comedy|Drama|Romance +6713,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance +6714,So Close (Chik Yeung Tin Sai) (2002),Action|Comedy|Romance|Thriller +6715,Children of the Night (1991),Horror +6716,Daisy Miller (1974),Drama +6717,Enlightenment Guaranteed (Erleuchtung Garantiert) (2000),Comedy|Drama +6718,Gotcha! (1985),Comedy +6719,Hard to Hold (1984),Drama|Romance +6720,Kuffs (1992),Action|Comedy|Crime +6721,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama +6722,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance +6723,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action +6724,Paper Moon (1973),Comedy|Crime|Drama +6725,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical +6726,"Song for Martin, A (Sång för Martin, En) (2001)",Drama +6727,Targets (1968),Crime|Thriller +6728,"Ugly American, The (1963)",Drama +6729,"Bostonians, The (1984)",Drama|Romance +6730,Convoy (1978),Action|Comedy|Drama +6731,Day of the Dead (1985),Horror|Sci-Fi|Thriller +6732,"Hello, Dolly! (1969)",Comedy|Musical|Romance +6733,I'm Going Home (Je rentre à la maison) (2001),Comedy|Drama +6734,Memoirs of an Invisible Man (1992),Comedy|Romance|Sci-Fi|Thriller +6735,"Rose, The (1979)",Drama +6736,See No Evil (1971),Crime|Drama|Horror|Thriller +6737,Super Sucker (2002),Comedy +6738,Indiscretion of an American Wife (a.k.a. Terminal Station) (Stazione Termini) (1953),Drama +6739,At War with the Army (1950),Comedy|Musical|Romance +6740,Bingo (1991),Adventure|Comedy +6741,God told Me To (1976),Crime|Horror|Mystery|Sci-Fi|Thriller +6742,"I, Madman (1989)",Horror +6743,Jungle Book (1942),Adventure|Fantasy +6744,Once Bitten (1985),Comedy|Horror +6745,"Shrimp on the Barbie, The (1990)",Comedy +6746,Squirm (1976),Horror|Romance +6747,"Adventures of Huckleberry Finn, The (1960)",Adventure|Children +6748,"Brood, The (1979)",Horror +6749,"Prince and the Pauper, The (1937)",Adventure|Drama +6750,Anything Else (2003),Comedy|Drama|Romance +6751,Cold Creek Manor (2003),Drama|Thriller +6752,"Fighting Temptations, The (2003)",Drama +6753,Secondhand Lions (2003),Children|Comedy|Drama +6754,Underworld (2003),Action|Fantasy|Horror +6755,Bubba Ho-tep (2002),Comedy|Horror +6756,Casa de los babys (2003),Drama +6757,Demonlover (2002),Crime|Drama|Mystery|Thriller +6758,Emerald Cowboy (2002),Documentary|Drama +6759,Close Your Eyes (Hypnotic) (Doctor Sleep) (2002),Crime|Thriller +6760,In This World (2002),Adventure|Drama +6761,Tibet: Cry of the Snow Lion (2002),Documentary +6762,Yossi & Jagger (2002),Drama|Romance +6763,Duplex (2003),Comedy|Crime +6764,"Rundown, The (2003)",Action|Adventure|Comedy +6765,Under the Tuscan Sun (2003),Comedy|Drama|Romance +6766,Camera Obscura (2000),Crime|Drama|Thriller +6767,Kart Racer (2003),Drama +6768,Luther (2003),Drama +6769,Mambo Italiano (2003),Comedy +6770,My Life Without Me (2003),Drama|Romance +6771,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy +6772,To Be and to Have (Être et avoir) (2002),Documentary +6773,"Triplets of Belleville, The (Les triplettes de Belleville) (2003)",Animation|Comedy|Fantasy +6774,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller +6775,Life and Debt (2001),Documentary +6776,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance +6777,Judgment at Nuremberg (1961),Drama +6778,Journey of Hope (Reise der Hoffnung) (1990),Drama +6779,"Same Time, Next Year (1978)",Comedy|Drama|Romance +6780,"Brief History of Time, A (1991)",Documentary +6781,"Jacob the Liar (Jakob, der Lügner) (1975)",Drama +6782,Leningrad Cowboys Go America (1989),Comedy|Musical +6783,"Rules of the Game, The (La règle du jeu) (1939)",Comedy|Drama +6784,"Song Remains the Same, The (1976)",Documentary|Musical +6785,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western +6786,Kiss of the Spider Woman (1985),Drama +6787,All the President's Men (1976),Drama|Thriller +6788,Angie (1994),Comedy|Drama|Romance +6789,"Apartment, The (Appartement, L') (1996)",Drama|Mystery|Romance +6790,Avalon (2001),Drama|Fantasy|Sci-Fi +6791,Babette's Feast (Babettes gæstebud) (1987),Drama +6792,"Barber of Siberia, The (Sibirskij tsiryulnik) (1998)",Drama|Romance +6793,Beethoven (1992),Children|Comedy|Drama +6794,Beethoven's 2nd (1993),Children|Comedy +6795,Black Moon Rising (1986),Action|Crime|Sci-Fi|Thriller +6796,Boyz N the Hood (1991),Crime|Drama +6797,Bugsy (1991),Crime|Drama +6798,Bugsy Malone (1976),Children|Comedy|Crime|Musical +6799,By the Sword (1991),Drama +6800,Cobra (1986),Action|Crime +6801,"Common Wealth (Comunidad, La) (2000)",Comedy|Thriller +6802,Consenting Adults (1992),Thriller +6803,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller +6804,Crimewave (1985),Comedy|Crime +6805,Crying Freeman (1995),Action|Crime|Thriller +6806,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller +6807,Monty Python's The Meaning of Life (1983),Comedy +6808,Where Eagles Dare (1968),Action|Adventure|War +6809,Tightrope (1984),Thriller +6810,Sleeping with the Enemy (1991),Drama|Thriller +6811,PCU (1994),Comedy +6812,"Rookie, The (1990)",Action|Comedy|Thriller +6813,"Ghost and Mr. Chicken, The (1966)",Comedy|Romance +6814,City Heat (1984),Action|Comedy +6815,Into the Night (1985),Action|Comedy|Drama|Thriller +6816,Three O'Clock High (1987),Comedy +6817,"White Hunter, Black Heart (1990)",Adventure|Drama +6818,Come and See (Idi i smotri) (1985),Drama|War +6819,"Rage in Harlem, A (1991)",Crime +6820,Ginger Snaps (2000),Drama|Horror|Thriller +6821,More American Graffiti (1979),Comedy +6822,"Ballad of Little Jo, The (1993)",Drama|Western +6823,Under Suspicion (1992),Crime|Drama|Thriller +6824,Ruby (1992),Crime|Drama +6825,"Reluctant Astronaut, The (1967)",Comedy +6826,"Shakiest Gun in the West, The (1968)",Comedy|Western +6827,It's Pat (1994),Comedy +6828,"Sunday in the Country, A (Un dimanche à la campagne) (1984)",Drama +6829,"Gun in Betty Lou's Handbag, The (1992)",Comedy|Mystery +6830,Sudden Fear (1952),Film-Noir|Horror|Thriller +6831,Nobody's Baby (2001),Comedy +6832,Regarding Henry (1991),Drama +6833,"Debut, The (2000)",Comedy|Drama +6834,Wilder Napalm (1993),Comedy|Fantasy|Romance +6835,Alien Contamination (1980),Action|Horror|Sci-Fi +6836,"Amazing Transparent Man, The (1960)",Sci-Fi +6837,Love Affair (1939),Comedy|Drama|Romance +6838,Once in the Life (2000),Crime|Drama +6839,All I Want (Try Seventeen) (2002),Comedy|Drama|Romance +6840,"Hospital, The (1971)",Comedy|Drama +6841,Article 99 (1992),Comedy|Drama +6842,Images (1972),Drama|Fantasy|Horror +6843,Eureka (1986),Drama +6844,Oleanna (1994),Drama +6845,Chattahoochee (1989),Drama +6846,Tough Guys Don't Dance (1987),Drama +6847,There Goes My Baby (1994),Comedy|Drama +6848,Kingdom of the Spiders (1977),Horror|Sci-Fi +6849,Scrooge (1970),Drama|Fantasy|Musical +6850,Leap of Faith (1992),Comedy|Drama +6851,"Gas, Food, Lodging (1992)",Drama|Romance +6852,In Cold Blood (1967),Crime|Drama +6853,Campus Man (1987),Comedy +6854,"Bedford Incident, The (1965)",Drama|Thriller|War +6855,"Murderous Maids (Blessures assassines, Les) (2000)",Drama +6856,Yankee Doodle Dandy (1942),Drama|Musical +6857,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy +6858,Knife in the Water (Nóz w wodzie) (1962),Drama +6859,"Devil and Daniel Webster, The (All That Money Can Buy) (1941)",Drama|Fantasy +6860,Mobsters (1991),Crime|Drama +6861,Charlotte Sometimes (2002),Drama|Romance +6862,Out of Time (2003),Crime|Drama|Thriller +6863,School of Rock (2003),Comedy|Musical +6864,"Concert for George, The (2003)",Documentary|Musical +6865,"Event, The (2003)",Drama +6866,Nine Dead Gay Guys (2003),Comedy|Crime +6867,"Station Agent, The (2003)",Comedy|Drama +6868,Wonderland (2003),Crime|Drama|Mystery|Thriller +6869,Bus 174 (Ônibus 174) (2002),Crime|Documentary +6870,Mystic River (2003),Crime|Drama|Mystery +6871,Good Boy! (2003),Children|Comedy|Sci-Fi +6872,"House of the Dead, The (2003)",Action|Horror +6873,Intolerable Cruelty (2003),Comedy|Romance +6874,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller +6875,Dopamine (2003),Comedy|Drama|Romance +6876,"Flower of Evil, The (Fleur du mal, La) (2003)",Drama +6877,Girls Will Be Girls (2003),Comedy +6878,"Porn Theater (Chatte à deux têtes, La) (2002)",Drama +6879,Runaway Jury (2003),Drama|Thriller +6880,"Texas Chainsaw Massacre, The (2003)",Horror +6881,Pieces of April (2003),Comedy|Drama +6882,Returner (Ritaanaa) (2002),Action|Adventure|Sci-Fi +6883,Sylvia (2003),Drama|Romance +6884,Veronica Guerin (2003),Crime|Drama|Thriller +6885,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller +6886,Beyond Borders (2003),Drama|Romance|War +6887,Radio (2003),Drama +6888,Scary Movie 3 (2003),Comedy|Horror +6889,Brother Bear (2003),Adventure|Animation|Children +6890,Elephant (2003),Drama +6891,Gypsy 83 (2001),Drama +6892,"Singing Detective, The (2003)",Comedy|Drama|Musical|Mystery +6893,"Italian Job, The (1969)",Action|Comedy|Crime +6894,Impulse (1984),Mystery|Sci-Fi|Thriller +6895,Normal (2003),Drama +6896,Shoah (1985),Documentary|War +6897,Unconditional Love (2002),Comedy|Drama +6898,Sweet Sixteen (2002),Drama +6899,Alien from L.A. (1988),Sci-Fi +6900,Black Sunday (1977),Action|Drama|Thriller +6901,Men of Respect (1991),Crime|Drama|Thriller +6902,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +6903,Lipstick (1976),Drama +6905,Storyville (1992),Drama|Thriller +6906,That Was Then... This Is Now (1985),Drama +6907,Holy Matrimony (1994),Comedy|Crime +6908,"Black Scorpion, The (1957)",Sci-Fi +6909,"Eye, The (Gin gwai) (Jian gui) (2002)",Thriller +6910,Kronos (a.k.a. Captain Kronos: Vampire Hunter) (1973),Horror +6911,"Jolson Story, The (1946)",Musical +6912,You'll Never Get Rich (1941),Comedy|Musical|Romance +6913,Frankenstein and the Monster from Hell (1974),Horror +6914,Preaching to the Perverted (1997),Comedy|Drama +6915,Chicago Joe and the Showgirl (1990),Drama +6916,"Magic Sword, The (1962)",Drama|Fantasy +6917,Promised Land (1987),Drama +6918,"Unvanquished, The (Aparajito) (1957)",Drama +6919,"Hired Hand, The (1971)",Western +6920,"Cercle Rouge, Le (Red Circle, The) (1970)",Crime|Thriller +6921,Man of Marble (Czlowiek z Marmuru) (1977),Drama +6923,Sherlock Holmes and the Voice of Terror (1942),Crime|Mystery|War +6924,Sherlock Holmes Faces Death (1943),Crime|Mystery +6925,Sherlock Holmes in Washington (1943),Crime|Mystery +6926,"Solid Gold Cadillac, The (1956)",Comedy +6927,"Human Stain, The (2003)",Drama|Romance|Thriller +6928,"Die, Mommie, Die (2003)",Comedy +6929,Dirt (2001),Comedy|Crime +6930,Girlhood (2003),Documentary +6931,Mail Order Bride (2003),Comedy +6932,Shattered Glass (2003),Crime|Drama +6933,Suspended Animation (2001),Thriller +6934,"Matrix Revolutions, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6935,"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)",Documentary +6936,Elf (2003),Children|Comedy|Fantasy +6937,Anything But Love (a.k.a. Standard Time) (2002),Musical|Romance +6938,Billabong Odyssey (2003),Documentary +6939,Gloomy Sunday (Ein Lied von Liebe und Tod) (1999),Drama|Romance +6940,In My Skin (Dans ma Peau) (2002),Drama +6941,Just an American Boy (2003),Documentary +6942,Love Actually (2003),Comedy|Drama|Romance +6943,Love Forbidden (Défense d'aimer) (2002),Drama +6944,Father of the Bride (1991),Comedy +6945,My Architect: A Son's Journey (2003),Documentary +6946,Looney Tunes: Back in Action (2003),Action|Animation|Children|Fantasy +6947,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War +6948,Tupac: Resurrection (2003),Documentary +6949,"Big Empty, The (2003)",Comedy|Mystery|Sci-Fi +6950,"Missing, The (2003)",Adventure|Thriller|Western +6951,"Cat in the Hat, The (2003)",Children|Comedy +6952,Gothika (2003),Horror|Thriller +6953,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller +6954,"Barbarian Invasions, The (Les invasions barbares) (2003)",Comedy|Crime|Drama|Mystery|Romance +6955,Blindness (2003),Drama|Thriller +6956,Blue Gate Crossing (Lan se da men) (2002),Drama|Romance +6957,Bad Santa (2003),Comedy|Crime +6958,"Haunted Mansion, The (2003)",Children|Comedy|Fantasy|Horror +6959,Timeline (2003),Action|Adventure|Sci-Fi +6960,Marquis (1989),Drama +6961,Damage (Fatale) (1992),Drama +6962,OT: Our Town (2002),Documentary +6963,Devil's Playground (2002),Documentary +6964,Dance with a Stranger (1985),Crime|Drama|Thriller +6965,Journeys with George (2002),Documentary +6966,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller +6967,Dead of Night (1945),Horror|Mystery +6968,Death Machine (1995),Action|Sci-Fi +6969,"Dernier Combat, Le (Last Battle, The) (1983)",Drama|Sci-Fi +6970,Desk Set (1957),Comedy|Romance +6971,Europa (Zentropa) (1991),Drama|Thriller +6972,"Watermelon Woman, The (1996)",Documentary|Drama +6973,Final Analysis (1992),Drama|Romance|Thriller +6974,"Freshman, The (1990)",Comedy|Crime +6975,Funny Games (1997),Drama|Horror|Thriller +6976,Tales from the Crypt (1972),Horror +6977,New Jack City (1991),Action|Crime|Drama +6978,Slacker (1991),Comedy|Drama +6979,WarGames (1983),Drama|Sci-Fi|Thriller +6980,Mr. Hobbs Takes a Vacation (1962),Comedy +6981,"Ordet (Word, The) (1955)",Drama +6982,Forbidden Games (Jeux interdits) (1952),Drama|War +6983,Jane Eyre (1944),Drama|Romance +6984,"Tale of Two Cities, A (1935)",Drama +6985,"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)",Drama +6986,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama +6987,"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)",Crime|Fantasy|Horror +6988,Broken Blossoms or The Yellow Man and the Girl (1919),Drama|Romance +6989,Gorky Park (1983),Crime|Drama|Thriller +6990,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama +6991,"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)",Adventure|Drama|Romance +6992,Guarding Tess (1994),Comedy|Drama +6993,Hannah and Her Sisters (1986),Comedy|Drama|Romance +6994,"Hard Way, The (1991)",Action|Comedy +6995,Hercules in New York (1970),Action|Comedy|Fantasy +6996,Highlander II: The Quickening (1991),Action|Sci-Fi +6997,Hoffa (1992),Crime|Drama +6998,House of Cards (1993),Drama +6999,Housesitter (1992),Comedy|Romance +7000,Hudson Hawk (1991),Action|Adventure|Comedy +7001,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller +7002,Mindwalk (1990),Drama +7003,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller +7004,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller +7005,King Ralph (1991),Comedy +7006,Knight Moves (1992),Mystery|Thriller +7007,"Last Boy Scout, The (1991)",Action|Comedy|Crime|Drama|Thriller +7008,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance +7009,Lorenzo's Oil (1992),Drama +7010,"Lover, The (Amant, L') (1992)",Drama|Romance +7011,"Bullfighter, The (Matador) (1986)",Comedy|Crime|Drama +7012,Mr. Destiny (1990),Comedy|Fantasy +7013,"Night of the Hunter, The (1955)",Drama|Film-Noir|Thriller +7014,Nowhere to Run (1993),Action|Romance +7015,Only the Lonely (1991),Comedy|Romance +7016,Over the Top (1987),Action|Drama +7017,Passenger 57 (1992),Action|Thriller +7018,Presumed Innocent (1990),Crime|Drama|Thriller +7019,Project X (1987),Comedy|Drama +7020,Proof (1991),Comedy|Drama|Romance +7021,Pure Luck (1991),Comedy|Crime +7022,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller +7023,"Wedding Banquet, The (Xi yan) (1993)",Comedy|Drama|Romance +7024,"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)",Drama +7025,"Midnight Clear, A (1992)",Drama|War +7026,Summer School (1987),Comedy +7027,Silverado (1985),Action|Western +7028,Quick Change (1990),Comedy|Crime +7029,Rabid (1977),Horror|Thriller +7030,Radio Flyer (1992),Drama +7031,"Real McCoy, The (1993)",Action|Crime|Drama|Thriller +7032,Revenge (1990),Drama|Romance|Thriller +7033,"Secret of My Succe$s, The (a.k.a. The Secret of My Success) (1987)",Comedy|Romance +7034,Show Me Love (Fucking Åmål) (1998),Drama|Romance +7035,Streets of Fire (1984),Action|Romance +7036,Teen Wolf (1985),Comedy|Fantasy +7037,High Heels (Tacones lejanos) (1991),Comedy|Drama +7038,Things You Can Tell Just by Looking at Her (2000),Drama|Romance +7039,Thunderheart (1992),Crime|Mystery|Thriller +7040,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller +7041,Trapped in Paradise (1994),Comedy|Crime +7042,Betty Blue (37°2 le matin) (1986),Drama|Romance +7043,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama +7044,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller +7045,"Witches, The (1990)",Children|Fantasy +7046,"Witches of Eastwick, The (1987)",Comedy|Fantasy|Horror|Thriller +7047,Year of the Dragon (1985),Action|Crime|Drama +7048,Nothing to Lose (1997),Action|Adventure|Comedy|Crime +7049,Flying Down to Rio (1933),Comedy|Musical|Romance +7050,Follow the Fleet (1936),Comedy|Musical|Romance +7051,"What's New, Pussycat (1965)",Comedy +7052,Mary of Scotland (1936),Drama +7053,Roberta (1935),Comedy|Musical|Romance +7054,Little Women (1949),Drama +7055,Swing Time (1936),Comedy|Musical|Romance +7056,"Public Enemy, The (1931)",Action|Crime|Drama +7057,"Midsummer Night's Dream, A (1935)",Comedy|Fantasy|Romance +7058,Life with Father (1947),Comedy +7059,National Velvet (1944),Children|Drama +7060,Jesus Christ Superstar (1973),Drama|Musical +7061,Dark Victory (1939),Drama|Romance +7062,Birdman of Alcatraz (1962),Drama +7063,"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)",Adventure|Drama +7064,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy +7065,"Birth of a Nation, The (1915)",Drama|War +7066,"Blue Kite, The (Lan feng zheng) (1993)",Drama +7067,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance +7068,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance +7069,"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)",Drama +7070,Red River (1948),Action|Adventure|Western +7071,"Woman Under the Influence, A (1974)",Drama +7072,Stagecoach (1939),Action|Drama|Romance|Western +7073,"Shot in the Dark, A (1964)",Comedy|Crime|Mystery +7074,"Navigator, The (1924)",Comedy +7075,"Court Jester, The (1956)",Adventure|Comedy|Musical +7076,Bullitt (1968),Action|Crime|Drama|Thriller +7077,Way Down East (1920),Drama|Romance +7078,Jezebel (1938),Drama +7079,"Hunchback of Notre Dame, The (1939)",Drama +7080,42nd Street (1933),Drama|Musical|Romance +7081,I'm No Angel (1933),Comedy +7082,That Touch of Mink (1962),Comedy|Romance +7083,Sweet Dreams (1985),Drama +7084,"Play It Again, Sam (1972)",Comedy|Romance +7085,Send Me No Flowers (1964),Comedy|Romance +7086,Pygmalion (1938),Comedy|Drama +7087,"Passage to India, A (1984)",Adventure|Drama +7088,Black Orpheus (Orfeu Negro) (1959),Drama|Romance +7089,Amarcord (1973),Comedy|Drama +7090,Hero (Ying xiong) (2002),Action|Adventure|Drama +7091,Horse Feathers (1932),Comedy +7092,Anna Karenina (1935),Drama|Romance +7093,"Front Page, The (1974)",Comedy +7094,Attraction (2000),Drama|Romance|Thriller +7095,Looking for Mr. Goodbar (1977),Drama +7096,Rivers and Tides (2001),Documentary +7097,"Girl From Paris, A (hirondelle a fait le printemps, Une) (2001)",Comedy|Drama +7098,Seven Days to Noon (1950),Drama|Thriller +7099,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi +7100,CrissCross (1992),Drama +7101,Doc Hollywood (1991),Comedy|Romance +7102,Dragnet (1987),Comedy|Crime|Drama +7103,Madhouse (1990),Comedy +7104,1941 (1979),Comedy|War +7105,"Shot at Glory, A (2000)",Drama +7106,Black and White in Color (Noirs et blancs en couleur) (1976),Drama|War +7107,Foul Play (1978),Comedy|Thriller +7108,Crime Story (Zhong an zu) (1993),Action|Crime|Drama +7109,Beyond the Clouds (Al di là delle nuvole) (1996),Drama|Romance +7110,Blind Beast (Môjuu) (1969),Drama|Thriller +7111,Ryan's Daughter (1970),Drama|Romance +7112,Accident (1967),Crime|Drama +7113,Cabeza de Vaca (1991),Action|Adventure +7114,"Collector, The (1965)",Drama|Horror|Thriller +7115,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller +7116,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller +7117,Leprechaun (1993),Comedy|Horror +7118,Wings of Honneamise (Ôritsu uchûgun Oneamisu no tsubasa) (1987),Animation|Drama|Sci-Fi|War +7119,Crazy People (1990),Comedy +7120,DarkWolf (2003),Horror +7121,Adam's Rib (1949),Comedy|Romance +7122,King of Hearts (1966),Comedy|Drama|War +7123,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi +7124,Grass (1999),Documentary +7125,Spring Forward (1999),Drama +7126,"Killing of a Chinese Bookie, The (1976)",Comedy|Crime|Drama|Film-Noir|Musical +7127,Run (1991),Action|Drama|Thriller +7128,Things to Come (1936),Sci-Fi +7129,Queen of Hearts (1989),Comedy|Drama|Romance +7130,Darling (1965),Drama +7131,"Summer Place, A (1959)",Drama +7132,"Night at the Opera, A (1935)",Comedy|Musical|Romance +7133,Metalstorm: The Destruction of Jared-Syn (1983),Action|Adventure|Sci-Fi +7134,"Element of Crime, The (Forbrydelsens Element) (1984)",Drama|Thriller +7135,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller +7136,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance +7137,"Cooler, The (2003)",Comedy|Drama|Romance +7138,"Bonaerense, El (2002)",Action|Drama +7139,In America (2002),Drama|Romance +7140,"Legend of Leigh Bowery, The (2002)",Documentary +7141,My Flesh and Blood (2003),Documentary +7142,Honey (2003),Drama|Romance +7143,"Last Samurai, The (2003)",Action|Adventure|Drama|War +7144,Forget Baghdad: Jews and Arabs - The Iraqi Connection (2002),Documentary +7145,Prisoner of Paradise (2002),Documentary +7146,What Alice Found (2003),Crime|Drama +7147,Big Fish (2003),Drama|Fantasy|Romance +7148,Love Don't Cost a Thing (2003),Drama|Romance +7149,Something's Gotta Give (2003),Comedy|Drama|Romance +7150,Stuck on You (2003),Comedy +7151,Girl with a Pearl Earring (2003),Drama|Romance +7152,"Statement, The (2003)",Drama|Thriller +7153,"Lord of the Rings: The Return of the King, The (2003)",Action|Adventure|Drama|Fantasy +7154,Mona Lisa Smile (2003),Drama|Romance +7155,Calendar Girls (2003),Comedy +7156,"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)",Documentary|War +7157,"Hebrew Hammer, The (2003)",Comedy +7158,House of Sand and Fog (2003),Drama +7159,Two Men Went to War (2003),Comedy|War +7160,Monster (2003),Crime|Drama +7161,Cheaper by the Dozen (2003),Children|Comedy +7162,Cold Mountain (2003),Drama|Romance|War +7163,Paycheck (2003),Action|Sci-Fi|Thriller +7164,Peter Pan (2003),Action|Adventure|Children|Fantasy +7165,"Company, The (2003)",Drama|Musical +7166,"Young Black Stallion, The (2003)",Adventure|Children|Drama +7167,Japanese Story (2003),Drama +7168,Secret Things (Choses secrètes) (2002),Drama +7169,Chasing Liberty (2004),Comedy|Romance +7170,My Baby's Daddy (2004),Comedy +7171,Aileen: Life and Death of a Serial Killer (2003),Documentary +7172,Distant (Uzak) (2002),Drama +7173,Along Came Polly (2004),Comedy|Romance +7174,Teacher's Pet (2004),Animation|Children +7175,Torque (2004),Action|Crime +7176,Crimson Gold (Talaye sorgh) (2003),Drama +7177,Osama (2003),Drama +7178,"Great Gatsby, The (1974)",Drama +7179,Wuthering Heights (1992),Drama|Romance +7180,Odds Against Tomorrow (1959),Crime|Drama|Thriller +7181,Ship of Fools (1965),Drama +7182,Lord Love a Duck (1966),Comedy +7183,There's a Girl in My Soup (1970),Comedy +7184,This Property is Condemned (1966),Drama|Romance +7185,Real Men (1987),Comedy|Sci-Fi +7186,Once Upon a Crime... (1992),Comedy|Mystery +7187,Beyond Therapy (1987),Comedy +7188,Buster (1988),Comedy|Crime +7189,"Car 54, Where Are You? (1994)",Comedy +7190,Jane Eyre (1970),Drama +7191,Blame It on the Bellboy (1992),Comedy +7192,Only the Strong (1993),Action +7193,"Adventures of Ford Fairlane, The (1990)",Action|Comedy +7194,Bonjour tristesse (1958),Drama +7195,"Enforcer, The (1951)",Crime|Drama|Film-Noir +7196,"Men, The (1950)",Drama +7197,Ransom (a.k.a. The Terrorists) (1975),Crime|Thriller +7198,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance +7199,Melvin Goes to Dinner (2003),Comedy|Drama +7200,"Court-Martial of Billy Mitchell, The (1955)",Drama|War +7201,Crime Spree (2003),Comedy|Crime +7202,Beyond Re-Animator (2003),Horror +7203,Final Cut (1998),Drama +7204,Hells Angels on Wheels (1967),Drama +7205,"Wind and the Lion, The (1975)",Adventure +7206,Mon Oncle (My Uncle) (1958),Comedy +7207,Where the Boys Are (1960),Comedy +7208,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror +7209,"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)",Comedy +7210,My Darling Clementine (1946),Western +7211,People Will Talk (1951),Comedy|Romance +7212,I Was a Male War Bride (1949),Comedy|Romance +7213,Divorce American Style (1967),Comedy +7214,Kiss Them for Me (1957),Comedy|Romance|War +7215,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War +7216,High Sierra (1941),Crime|Drama|Film-Noir|Thriller +7217,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller +7218,"Ox-Bow Incident, The (1943)",Drama|Western +7219,They Drive by Night (1940),Drama +7220,Micki + Maude (1984),Comedy +7221,Platinum Blonde (1931),Comedy|Romance +7222,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama +7223,D.O.A. (1950),Drama|Film-Noir|Mystery +7224,"Boy with Green Hair, The (1948)",Children|Drama +7225,Pumping Iron (1977),Documentary +7226,No Good Deed (a.k.a. The House on Turk Street) (2002),Crime|Drama|Thriller +7227,"Trouble with Angels, The (1966)",Comedy +7228,Cool World (1992),Animation|Comedy|Fantasy +7229,Money for Nothing (1993),Comedy|Crime +7230,"Silencers, The (1966)",Action|Comedy +7231,"Where Angels Go, Trouble Follows (1968)",Comedy +7232,Heat and Dust (1983),Drama +7233,My Letter to George (Mesmerized) (1986),Drama +7234,"Strada, La (1954)",Drama +7235,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller +7236,"Boy and His Dog, A (1975)",Sci-Fi +7237,"Last Tycoon, The (1976)",Drama|Romance +7238,Ashes and Diamonds (Popiól i diament) (1958),Drama|War +7239,Marooned (1969),Drama|Sci-Fi +7240,King David (1985),Action|Drama|War +7241,Kanal (1957),Drama|War +7242,Cat Chaser (1989),Action|Thriller +7243,Intolerance: Love's Struggle Throughout the Ages (1916),Drama +7244,"Beast of Yucca Flats, The (1961)",Horror|Sci-Fi +7245,Tormented (1960),Horror|Thriller +7246,"Violent Years, The (1956)",Drama +7247,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical +7248,"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)",Action|Adventure|Drama|War +7249,Plaza Suite (1971),Comedy +7250,"Out of Towners, The (1970)",Comedy +7251,Where the Day Takes You (1992),Drama +7252,"Three Stooges in Orbit, The (1962)",Comedy|Sci-Fi +7253,It (1927),Comedy|Romance +7254,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller +7255,Win a Date with Tad Hamilton! (2004),Comedy|Romance +7256,Touching the Void (2003),Adventure|Documentary +7257,"Big Bounce, The (2004)",Comedy|Crime|Thriller +7258,"Perfect Score, The (2004)",Comedy|Crime +7259,You Got Served (2004),Drama|Musical +7260,Latter Days (2003),Comedy|Drama|Romance +7261,Barbershop 2: Back in Business (2004),Comedy +7262,Catch That Kid (2004),Action|Adventure|Children|Comedy|Crime +7263,Miracle (2004),Drama +7264,An Amazing Couple (2002),Comedy|Romance +7265,"Dreamers, The (2003)",Drama +7266,"Lost Skeleton of Cadavra, The (2002)",Comedy|Horror|Sci-Fi +7267,Who's the Man? (1993),Comedy +7268,Love at Large (1990),Romance|Thriller +7269,Hangin' with the Homeboys (1991),Comedy|Drama +7270,Sleep with Me (1994),Comedy|Drama|Romance +7271,Just Between Friends (1986),Drama +7272,Super Fly (Superfly) (1972),Action|Crime|Drama +7273,"Piece of the Action, A (1977)",Crime|Drama +7274,Let's Do It Again (1975),Comedy +7275,Uptown Saturday Night (1974),Comedy +7276,Hell's Kitchen (1998),Drama +7277,"Innocent, The (1993)",Drama +7278,Daddy and Them (2001),Comedy|Drama +7279,"Wilby Conspiracy, The (1975)",Thriller +7280,Blacula (1972),Horror +7281,"Scream, Blacula, Scream! (1973)",Horror +7282,"Hip Hop Witch, Da (2000)",Comedy|Horror|Thriller +7283,Swing Shift (1984),Drama +7284,Trespass (1992),Action|Crime|Thriller +7285,Thirteen (2003),Drama +7286,Simple Men (1992),Comedy|Drama +7287,"Sailor Who Fell from Grace with the Sea, The (1976)",Drama +7288,Foolish Wives (1922),Drama +7289,"Silent Night, Bloody Night (1973)",Horror +7290,"Sin of Harold Diddlebock, The (1947)",Comedy +7291,Pontiac Moon (1994),Drama +7292,Best Defense (1984),Comedy|War +7293,50 First Dates (2004),Comedy|Romance +7294,Welcome to Mooseport (2004),Comedy +7295,After the Life (2002),Crime|Drama +7296,Face (2002),Comedy +7297,Kitchen Stories (Salmer fra kjøkkenet) (2003),Comedy|Drama +7298,"Code, The (Mentale, La) (2002)",Action|Crime|Thriller +7299,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama +7300,Vanishing Point (1971),Action|Drama +7301,Diary of a Country Priest (Journal d'un curé de campagne) (1951),Drama +7302,"Thief of Bagdad, The (1924)",Action|Adventure|Fantasy +7303,The Diary of Anne Frank (1959),Drama|War +7304,Allegro non troppo (1977),Animation|Comedy|Fantasy|Musical +7305,Black Widow (1987),Crime|Drama|Mystery|Thriller +7306,"Herod's Law (Ley de Herodes, La) (2000)",Comedy|Crime|Mystery +7307,Flesh & Blood (1985),Action|Adventure|Drama|War +7308,King Solomon's Mines (1985),Adventure|Comedy +7309,"Black Pirate, The (1926)",Action|Adventure +7310,Raw Deal (1986),Action +7311,"Goodbye, Mr. Chips (1939)",Drama|Romance +7312,"Follow Me, Boys! (1966)",Comedy|Drama +7313,Fire Birds (1990),Action|Adventure +7314,Robot Stories (2003),Drama|Sci-Fi +7315,Against the Ropes (2004),Comedy|Drama +7316,Confessions of a Teenage Drama Queen (2004),Comedy +7317,EuroTrip (2004),Adventure|Comedy +7318,"Passion of the Christ, The (2004)",Drama +7319,Club Dread (2004),Comedy|Horror +7320,Dirty Dancing: Havana Nights (2004),Romance +7321,Twisted (2004),Thriller +7322,Alila (2003),Drama +7323,"Good bye, Lenin! (2003)",Comedy|Drama +7324,Hidalgo (2004),Adventure|Drama +7325,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller +7326,"Reckoning, The (2004)",Crime|Drama +7327,Persona (1966),Drama +7328,"Passion of Anna, The (Passion, En) (1969)",Drama +7329,Walk on the Wild Side (1962),Drama +7330,Tokyo Joe (1949),Drama|Thriller +7331,"Serpent's Egg, The (Schlangenei, Das) (1977)",Drama|Thriller +7332,Fire Down Below (1957),Adventure|Drama +7333,"Corbeau, Le (Raven, The) (1943)",Crime|Drama|Thriller +7334,"Front, The (1976)",Comedy|Drama +7335,Pickup on South Street (1953),Film-Noir +7336,"Damned, The (La Caduta degli dei) (1969)",Drama|War +7337,American Gun (2002),Drama +7338,Richard III (1955),Drama|War +7339,Quartet (1981),Drama|Romance +7340,Just One of the Guys (1985),Comedy +7341,The Chase (1966),Crime|Drama|Thriller +7342,"Kiss, The (1988)",Horror +7343,Wisconsin Death Trip (1999),Documentary +7344,"Wrong Arm of the Law, The (1963)",Comedy|Crime +7345,Agent Cody Banks 2: Destination London (2004),Action|Adventure|Children|Comedy +7346,"Girl Next Door, The (2004)",Comedy|Romance +7347,Secret Window (2004),Mystery|Thriller +7348,Spartan (2004),Thriller +7349,Broken Wings (Knafayim Shvurot) (2002),Drama +7350,Games People Play: New York (2004),Comedy|Documentary|Drama +7351,How to Draw a Bunny (2002),Documentary +7352,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance +7353,Clifford (1994),Comedy +7354,Mad Dog and Glory (1993),Comedy|Drama|Romance +7355,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy +7356,Night Crossing (1981),Drama +7357,Peyton Place (1957),Drama|Romance +7358,Searching for Debra Winger (2002),Documentary +7359,Walk Like a Man (1987),Comedy +7360,Dawn of the Dead (2004),Action|Drama|Horror|Thriller +7361,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi +7362,Taking Lives (2004),Crime|Drama|Thriller +7363,"Child I Never Was, The (Leben lang kurze Hosen Tragen, Ein) (2002)",Crime|Drama +7364,Intermission (2003),Comedy|Crime|Drama +7365,Noi the Albino (Nói albinói) (2003),Drama +7366,Jersey Girl (2004),Comedy|Drama|Romance +7367,"Ladykillers, The (2004)",Comedy|Crime +7368,Never Die Alone (2004),Crime|Drama|Thriller +7369,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery +7370,"Foreign Affair, A (2 Brothers & a Bride) (2003)",Comedy|Drama|Romance +7371,Dogville (2003),Drama|Mystery|Thriller +7372,Ned Kelly (2003),Drama +7373,Hellboy (2004),Action|Adventure|Fantasy|Horror +7374,Home on the Range (2004),Animation|Children|Comedy|Musical|Western +7375,"Prince & Me, The (2004)",Comedy|Romance +7376,Walking Tall (2004),Action +7377,"United States of Leland, The (2003)",Crime|Drama +7378,Johnson Family Vacation (2004),Comedy +7379,The Alamo (2004),Drama|War|Western +7380,Ella Enchanted (2004),Comedy|Fantasy|Romance +7381,"Whole Ten Yards, The (2004)",Action|Comedy|Crime +7382,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller +7383,Shade (2003),Crime|Drama|Thriller +7384,Since Otar Left (Depuis qu'Otar est parti...) (2003),Drama +7385,Twentynine Palms (2003),Drama|Horror +7386,"Ten Commandments, The (1956)",Adventure|Drama +7387,Dawn of the Dead (1978),Action|Drama|Horror +7388,"Brother Sun, Sister Moon (Fratello sole, sorella luna) (1972)",Drama +7389,One Million Years B.C. (1966),Adventure|Fantasy +7390,Prey for Rock & Roll (2003),Drama|Musical +7391,"Mother, Jugs & Speed (1976)",Comedy +7392,Bandolero! (1968),Western +7393,"Slugger's Wife, The (1985)",Comedy|Romance +7394,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy +7395,Cheaper by the Dozen (1950),Comedy|Drama +7396,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama +7397,"Baby, the Rain Must Fall (1965)",Drama +7398,Belles on Their Toes (1952),Comedy +7399,Ned Kelly (1970),Action|Crime|Western +7400,Beyond the Stars (1989),Drama|Sci-Fi +7401,Mac (1992),Drama +7402,"Food of the Gods, The (1976)",Horror|Sci-Fi +7403,Food of the Gods II (1989),Horror|Sci-Fi +7404,Anna (1987),Drama +7405,Road to Bali (1952),Comedy|Musical +7406,"Flying Deuces, The (1939)",Comedy +7407,Africa Screams (1949),Adventure|Comedy +7408,Jack and the Beanstalk (1952),Children|Comedy|Fantasy +7409,High Risk (1981),Action|Comedy|Crime +7410,"Osterman Weekend, The (1983)",Action|Thriller +7411,Munchies (1987),Comedy|Horror +7412,"Cat and the Canary, The (1978)",Comedy|Horror|Mystery +7413,Hangman's Curse (2003),Horror|Mystery|Thriller +7414,Going in Style (1979),Comedy|Drama +7415,"Late Show, The (1977)",Comedy|Crime|Drama|Mystery +7416,"Sunshine Boys, The (1975)",Comedy +7417,Jersey Girl (1992),Comedy|Romance +7418,"American Nightmare, The (2000)",Documentary +7419,After Hours (1985),Comedy|Thriller +7420,Viva Las Vegas (1964),Comedy|Musical|Romance +7422,"Love and Anarchy (Film d'amore e d'anarchia, ovvero 'stamattina alle 10 in via dei Fiori nella nota casa di tolleranza...') (1973)",Comedy|Drama|Romance +7423,Hitman Hart: Wrestling with Shadows (1998),Documentary +7437,Connie and Carla (2004),Comedy +7438,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller +7439,"Punisher, The (2004)",Action|Crime|Thriller +7440,Paper Clips (2004),Documentary +7441,"Thousand Clouds of Peace, A (Mil nubes de paz cercan el cielo, amor, jamás acabarás de ser amor) (2003)",Drama|Romance +7442,Young Adam (2003),Crime|Drama|Thriller +7443,This So-Called Disaster (2003),Documentary +7444,13 Going on 30 (2004),Comedy|Fantasy|Romance +7445,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller +7446,Clifford's Really Big Movie (2004),Animation|Children +7447,MC5*: A True Testimonial (2002),Documentary +7448,Envy (2004),Comedy +7449,Godsend (2004),Drama|Horror|Thriller +7450,Laws of Attraction (2004),Comedy|Romance +7451,Mean Girls (2004),Comedy +7452,Mickey (2003),Crime|Drama +7453,New York Minute (2004),Action|Adventure|Comedy +7454,Van Helsing (2004),Action|Adventure|Fantasy|Horror +7455,"Mudge Boy, The (2003)",Drama +7456,Valentin (Valentín) (2002),Drama +7457,Breakin' All the Rules (2004),Comedy|Romance +7458,Troy (2004),Action|Adventure|Drama|War +7459,Carandiru (2003),Crime|Drama +7460,Coffee and Cigarettes (2003),Comedy|Drama +7461,"Strayed (égarés, Les) (2003)",Drama|Romance +7471,Dance Me Outside (1994),Comedy|Drama +7474,"Boys in the Band, The (1970)",Drama +7475,Raid (2003),Action|Crime|Drama|Thriller +7477,Eye See You (D-Tox) (2002),Horror|Thriller +7478,Swimming to Cambodia (1987),Drama +7479,Watch on the Rhine (1943),Drama +7480,Under Fire (1983),Drama|Thriller|War +7481,Enemy Mine (1985),Adventure|Drama|Sci-Fi +7482,Enter the Dragon (1973),Action|Crime +7483,Foreign Land (Terra Estrangeira) (1996),Action|Crime|Drama|Romance|Thriller +7484,Gimme Shelter (1970),Documentary +7485,Good Morning (Ohayô) (1959),Comedy +7486,Happy Together (a.k.a. Buenos Aires Affair) (Chun gwong cha sit) (1997),Drama|Romance +7487,Henry & June (1990),Drama +7488,Berkeley in the '60s (1990),Documentary +7489,"Nasty Girl, The (schreckliche Mädchen, Das) (1990)",Comedy|Drama +7490,At First Sight (Entre Nous) (Coup de foudre) (1983),Drama +7491,"Naked Prey, The (1966)",Adventure +7492,Martin (1977),Drama|Horror +7493,"Three Faces of Eve, The (1957)",Drama +7502,Band of Brothers (2001),Action|Drama|War +7505,"Kingdom, The (Riget) (1994)",Drama|Horror|Mystery +7521,Mercy (2000),Crime|Mystery|Thriller +7523,Desperate Hours (1990),Crime|Drama|Thriller +7528,"Passion of Ayn Rand, The (1999)",Documentary|Drama|Romance +7537,Du côté de la côte (1958),Documentary +7541,100 Girls (2000),Comedy|Romance +7560,Fail-Safe (1964),Drama|Thriller|War +7561,Paperhouse (1988),Fantasy|Horror|Thriller +7562,Dobermann (1997),Action|Crime +7563,"Discovery of Heaven, The (2001)",Drama +7564,Kwaidan (Kaidan) (1964),Horror +7565,Cat-Women of the Moon (a.k.a. Rocket to the Moon) (1953),Adventure|Sci-Fi +7566,28 Up (1985),Documentary +7567,Chance (2002),Comedy|Drama +7568,Love Life (2001),Comedy|Romance +7569,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller +7570,Octopussy (1983),Action|Adventure|Thriller +7571,"Blue Gardenia, The (1953)",Crime|Drama|Film-Noir|Thriller +7572,Wit (2001),Drama +7573,Never Say Never Again (1983),Action|Adventure|Thriller +7574,Maborosi (Maboroshi no hikari) (1995),Drama +7577,"Magic Flute, The (Trollflöjten) (1975)",Comedy|Fantasy|Musical|Romance +7578,Midnight (1939),Comedy|Romance +7579,Pride and Prejudice (1940),Comedy|Drama|Romance +7580,"Man in the Gray Flannel Suit, The (1956)",Drama +7581,"Fountainhead, The (1949)",Drama +7582,Old Acquaintance (1943),Drama +7583,In This Our Life (1942),Drama +7584,Woman of the Year (1942),Comedy|Romance +7585,Summertime (1955),Drama|Romance +7586,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War +7587,"Samouraï, Le (Godson, The) (1967)",Crime|Drama|Thriller +7613,White Palace (1990),Drama +7614,Oklahoma! (1955),Musical|Romance|Western +7615,Desert Hearts (1985),Drama +7616,Body Double (1984),Mystery|Thriller +7617,Rooster Cogburn (1975),Comedy|Western +7618,Chaplin (1992),Drama +7619,"Miracle Worker, The (1962)",Drama +7620,Monster in a Box (1992),Comedy|Drama +7621,Vengo (2000),Drama|Musical +7622,"Midnight (Primeiro Dia, O) (1998)",Drama +7623,If You Only Knew (2000),Comedy|Romance +7624,School Ties (1992),Drama +7625,Girl (1998),Drama +7626,Switch (1991),Comedy|Crime|Fantasy +7627,Just Write (1997),Comedy +7636,Raising Cain (1992),Horror|Thriller +7637,Irma Vep (1996),Comedy|Drama +7638,Buck Privates (1941),Comedy|Musical +7639,Nice Guys Sleep Alone (1999),Comedy|Romance +7644,Divorce Iranian Style (1998),Documentary +7645,Iron & Silk (1990),Comedy|Drama +7646,Rose Red (2002),Horror|Mystery|Thriller +7647,Noises Off... (1992),Comedy +7648,Wildflowers (1999),Drama +7649,Babylon 5: In the Beginning (1998),Adventure|Sci-Fi +7650,"Witchfinder General (Conquerer Worm, The) (1968)",Horror +7657,Versus (2000),Action|Comedy|Fantasy|Horror +7669,Pride and Prejudice (1995),Drama|Romance +7675,"Canterville Ghost, The (1944)",Comedy|Fantasy +7697,"Prince and the Showgirl, The (1957)",Comedy|Romance +7698,"China Syndrome, The (1979)",Drama|Thriller +7699,Who the Hell Is Juliette? (¿Quién diablos es Juliette?) (1997),Documentary +7700,"Wages of Fear, The (Salaire de la peur, Le) (1953)",Action|Adventure|Drama|Thriller +7701,Look Who's Talking Too (1990),Comedy|Romance +7702,"Bells of St. Mary's, The (1945)",Drama +7703,You Light Up My Life (1977),Drama|Romance +7704,"Delta Force, The (1986)",Action +7705,Pat and Mike (1952),Comedy|Romance +7706,Animal Crackers (1930),Comedy|Musical +7707,"He Said, She Said (1991)",Comedy|Drama|Romance +7708,Bedazzled (1967),Comedy|Fantasy +7713,Cat People (1942),Drama|Horror|Romance|Thriller +7714,Camelot (1967),Drama|Musical|Romance +7716,"Lonely Guy, The (1984)",Comedy +7719,"Comedy of Terrors, The (1964)",Comedy|Horror +7720,"Four Musketeers, The (1974)",Action|Adventure|Comedy|Romance +7723,Good Guys Wear Black (1978),Action +7724,Steel Dawn (1987),Action|Sci-Fi +7725,On Deadly Ground (1994),Action|Adventure|Thriller +7726,Boy Meets Girl (1998),Comedy|Romance +7727,Protocol (1984),Comedy +7728,"Postman Always Rings Twice, The (1946)",Crime|Drama|Film-Noir|Thriller +7730,Matinee (1993),Comedy|Drama +7738,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance +7739,Virtual Sexuality (1999),Comedy|Drama +7742,Baxter (1989),Drama|Horror +7743,Explorers (1985),Adventure|Children|Sci-Fi +7745,"Scent of Green Papaya, The (Mùi du du xhan - L'odeur de la papaye verte) (1993)",Drama +7748,Pierrot le fou (1965),Crime|Drama +7749,Weekend (a.k.a. Le Week-end) (Week End) (1967),Drama +7750,"Hundred and One Nights, A (Cent et une nuits de Simon Cinéma, Les) (1995)",Comedy +7751,Strange Cargo (1940),Drama +7752,Seven Girlfriends (1999),Comedy|Romance +7753,Tuesdays with Morrie (1999),Drama +7754,Temptation of a Monk (You Seng) (1993),Action|Adventure|Drama|Romance +7756,Alexander Nevsky (Aleksandr Nevskiy) (1938),Action|Drama|War +7757,Jason and the Argonauts (1963),Action|Adventure|Fantasy +7758,Same Old Song (On connaît la chanson) (1997),Comedy|Drama|Musical +7759,Nostalghia (1983),Drama +7761,"Soft Skin, The (La peau douce) (1964)",Drama +7762,"Tinker, Tailor, Soldier, Spy (1979)",Drama|Thriller +7763,Winter Sleepers (Winterschläfer) (2000),Drama|Romance +7764,"Driller Killer, The (1979)",Drama|Horror +7765,Perfectly Normal (1990),Comedy +7766,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War +7767,"Best of Youth, The (La meglio gioventù) (2003)",Drama +7768,Guncrazy (1992),Crime|Drama|Romance|Thriller +7769,Legend of the Village Warriors (Bangrajan) (2000),Action|Drama|War +7770,Treasure Island (1990),Adventure +7771,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama +7772,Undercurrent (1946),Film-Noir|Thriller +7773,"Bang, Bang, You're Dead (2002)",Drama +7774,My Side of the Mountain (1969),Adventure|Children +7775,"Thin Blue Lie, The (2000)",Drama +7778,"Unsaid, The (2001)",Crime|Drama|Mystery +7781,Twister (1990),Comedy +7782,Sniper (1993),Action|Drama +7783,Don't Tell Anyone (No se lo digas a nadie) (1998),Comedy|Drama +7784,Ghost in the Machine (1993),Horror|Sci-Fi|Thriller +7785,"Time for Drunken Horses, A (Zamani barayé masti asbha) (2000)",Drama +7786,Genghis Blues (1999),Documentary +7787,To Hell and Back (1955),Action|Drama|War +7789,"11'09""01 - September 11 (2002)",Drama +7790,"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)",Animation|Children|Comedy +7791,Internal Affairs (1990),Crime|Thriller +7792,"Parallax View, The (1974)",Thriller +7802,"Warriors, The (1979)",Action|Adventure|Crime|Thriller +7808,Mayerling (1968),Drama|Romance +7809,Ambush (Rukajärven tie) (1999),Drama|Romance|War +7810,Babylon 5: A Call to Arms (1999),Adventure|Sci-Fi +7811,Babylon 5: The River of Souls (1998),Drama|Sci-Fi +7812,Babylon 5: Thirdspace (1998),Drama|Sci-Fi +7813,FM (1978),Drama +7814,Waterloo (1970),Action|Drama|War +7815,True Stories (1986),Comedy|Musical +7816,North Beach (2000),Comedy|Drama +7817,Zardoz (1974),Fantasy|Sci-Fi +7818,School For Scoundrels (1960),Comedy +7820,"Virgin Spring, The (Jungfrukällan) (1960)",Crime|Drama +7821,Ice-Cold in Alex (1958),Adventure|Drama|War +7822,Mogambo (1953),Adventure|Drama|Romance +7823,Demon Lover Diary (1980),Documentary +7824,Second Skin (Segunda Piel) (1999),Drama|Romance +7825,Victory (1995),Drama +7826,"Secret Life of Walter Mitty, The (1947)",Comedy|Romance|Thriller +7827,Cypher (2002),Action|Sci-Fi|Thriller +7828,"Rack, The (1956)",Drama|War +7831,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance +7832,"Thin Man Goes Home, The (1945)",Comedy|Crime|Mystery +7833,Shadow of the Thin Man (1941),Comedy|Crime|Mystery +7834,After the Thin Man (1936),Comedy|Crime|Mystery|Romance +7835,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance +7836,Woodstock (1970),Documentary|Musical +7837,36 fillette (1988),Drama|Romance +7838,"Internecine Project, The (1974)",Action|Thriller +7839,Love Crazy (1941),Comedy +7840,Gunga Din (1939),Adventure|Comedy|War +7841,Children of Dune (2003),Fantasy|Sci-Fi +7842,Dune (2000),Drama|Fantasy|Sci-Fi +7843,Lammbock (2001),Comedy +7844,"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)",Action|Comedy +7845,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi +7846,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi +7847,"Peanut Butter Solution, The (1985)",Children|Fantasy +7850,Hallelujah I'm a Bum (1933),Musical +7872,Getting It Right (1989),Comedy|Drama +7878,Straight to Hell (1987),Comedy|Crime|Western +7879,Notorious C.H.O. (2002),Comedy +7880,Friday Night (Vendredi Soir) (2002),Drama +7881,White Zombie (1932),Horror +7882,The Plague of the Zombies (1966),Horror +7883,I Walked with a Zombie (1943),Drama|Horror +7884,Highway 61 (1991),Comedy +7885,"Vampire Lovers, The (1970)",Horror +7886,Countess Dracula (1972),Horror +7887,"Cheerleaders, The (1973)",Comedy +7888,How to Succeed in Business Without Really Trying (1967),Comedy|Musical +7889,Pat Garrett and Billy the Kid (1973),Western +7890,The Left Handed Gun (1958),Crime|Drama|Western +7891,"Last Man on Earth, The (Ultimo uomo della Terra, L') (1964)",Drama|Horror|Sci-Fi +7892,"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)",Action +7893,Return of the Street Fighter (Satsujin ken 2) (1974),Action|Crime|Drama +7894,"Duck, You Sucker (a.k.a. Fistful of Dynamite, A) (Giù la testa) (1971)",Action|Adventure|War|Western +7895,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller +7896,Ride the High Country (1962),Adventure|Drama|Western +7897,"Ballad of Cable Hogue, The (1970)",Comedy|Western +7898,Junior Bonner (1972),Comedy|Drama|Western +7899,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action +7900,Frankenstein Must Be Destroyed (1969),Drama|Horror|Sci-Fi +7901,"Haunted Palace, The (1963)",Horror +7912,Finder's Fee (2001),Drama|Thriller +7913,"Whip and the Body, The (Frusta e il corpo, La) (1963)",Horror +7914,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary +7915,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy +7916,Gidget (1959),Comedy +7917,Wild in the Streets (1968),Drama|Horror|Sci-Fi +7918,"Indian Runner, The (1991)",Drama +7919,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir +7920,Desperate Living (1977),Comedy|Crime +7921,"Devil's Rain, The (1975)",Horror +7922,"Valachi Papers,The (1972)",Crime|Drama +7923,Rolling Thunder (1977),Action|Drama +7924,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller +7925,"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)",Action|Adventure +7926,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller +7928,After the Rehearsal (Efter repetitionen) (1984),Drama +7930,"People Under the Stairs, The (1991)",Horror|Mystery|Thriller +7931,My New Gun (1992),Comedy +7932,Dark Days (2000),Documentary +7933,"Night in Casablanca, A (1946)",Comedy +7934,Zelig (1983),Comedy +7935,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery +7936,Shame (Skammen) (1968),Drama|War +7937,"Silence, The (Tystnaden) (1963)",Drama +7938,Winter Light (Nattvardsgästerna) (1963),Drama +7939,Through a Glass Darkly (Såsom i en spegel) (1961),Drama +7940,The Magician (1958),Drama +7941,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance +7942,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance +7943,"Killers, The (1946)",Crime|Film-Noir +7944,"Night of the Iguana, The (1964)",Drama|Thriller +7945,Freud: The Secret Passion (1962),Drama +7946,Reflections in a Golden Eye (1967),Drama +7947,Under the Volcano (1984),Drama +7948,Wise Blood (1979),Comedy|Drama +7949,"Yakuza, The (1975)",Drama +7950,"Better Place, A (1997)",Drama +7951,Nightbreed (1990),Fantasy|Horror +7952,Beyond the Door II (Schock) (Shock) (Suspense) (1977),Horror +7953,Rabid Dogs (1974),Crime|Drama|Thriller +7954,"Baron Blood (Orrori del castello di Norimberga, Gli) (1972)",Horror +7958,Bloody Mama (1970),Crime|Drama +7959,"Trip, The (1967)",Drama +7976,Ken Park (2002),Drama +7979,Monterey Pop (1968),Documentary|Musical +7980,"Bridge Too Far, A (1977)",Action|Drama|War +7981,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller +7982,"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)",Drama|Horror|Mystery|Thriller +7983,Broadway Danny Rose (1984),Comedy +7984,From Beyond (1986),Horror|Sci-Fi +7985,The Wonderful Ice Cream Suit (1998),Children|Comedy|Fantasy +7986,Robot Jox (1990),Sci-Fi +7987,Dolls (1987),Horror +7988,Space Truckers (1996),Comedy|Sci-Fi +7989,Not of This Earth (1988),Sci-Fi +7990,Rock 'N' Roll High School (1979),Comedy|Musical +7991,Death Race 2000 (1975),Action|Sci-Fi +7992,Cockfighter (1974),Drama +7993,"Bucket Of Blood, A (1959)",Comedy|Horror +7994,"Premature Burial, The (1962)",Horror +7995,"Wild Angels, The (1966)",Action|Drama +8003,Bedlam (1946),Drama|Horror +8004,Planet of the Vampires (Terrore nello spazio) (1965),Horror|Sci-Fi +8007,Pure Country (1992),Drama|Musical|Romance +8008,Brigadoon (1954),Fantasy|Musical|Romance +8009,Marjorie Morningstar (1958),Drama +8010,"Power of One, The (1992)",Drama +8011,"Weather Underground, The (2002)",Documentary +8012,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama +8013,I'm with Lucy (2002),Comedy|Romance +8014,"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)",Drama +8015,"Phantom Tollbooth, The (1970)",Adventure|Animation|Children|Fantasy +8016,"Getaway, The (1972)",Action|Crime|Drama|Thriller +8017,10 Rillington Place (1971),Crime|Drama|Thriller +8019,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller +8024,"Thing Called Love, The (1993)",Comedy|Drama|Romance +8025,The Thief (1997),Drama +8033,How to Steal a Million (1966),Comedy|Crime|Romance +8035,"Stendhal Syndrome, The (Sindrome di Stendhal, La) (1996)",Crime|Horror|Thriller +8037,Non-Stop (1996),Action|Comedy|Crime +8038,Manslaughter (1922),Drama +8039,Support Your Local Sheriff! (1969),Comedy|Western +8040,Brain Donors (1992),Comedy +8041,Passed Away (1992),Comedy +8042,Mean Streets (1973),Crime|Drama +8043,Jack the Bear (1993),Comedy|Drama +8044,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir +8045,Hamburger Hill (1987),Action|Drama|War +8055,"Last Broadcast, The (1998)",Horror|Mystery|Thriller +8056,Harper (1966),Crime|Drama|Mystery +8057,Sweet Bird of Youth (1962),Drama +8062,Dahmer (2002),Drama|Horror|Thriller +8063,Paradise (1991),Drama +8068,Sundays and Cybele (Les dimanches de Ville d'Avray) (1962),Drama +8069,Comes a Horseman (1978),Drama|Romance|Western +8070,Grill Point (Halbe Treppe) (2002),Drama +8092,Frankenstein Unbound (1990),Drama|Horror|Sci-Fi +8093,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller +8094,Bad Day at Black Rock (1955),Drama|Thriller|Western +8095,"Cucaracha, La (1998)",Thriller +8117,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy +8118,Delta Force 2 (Delta Force 2: The Colombian Connection) (1990),Action|Adventure|Thriller|War +8119,Crossroads (1986),Drama +8120,29th Street (1991),Comedy|Drama +8121,"Seducing Doctor Lewis (Grande séduction, La) (2003)",Comedy +8122,City Limits (1984),Action|Sci-Fi +8123,Sammy and Rosie Get Laid (1987),Comedy|Drama +8124,Leaving Normal (1992),Comedy|Drama +8125,Sunrise: A Song of Two Humans (1927),Drama|Romance +8126,Shock Corridor (1963),Drama +8127,"First $20 Million Is Always the Hardest, The (2002)",Comedy +8128,Au revoir les enfants (1987),Drama +8129,Sex: The Annabel Chong Story (1999),Documentary +8130,"Girl Next Door, The (1999)",Documentary +8131,Pursuit of Happiness (2001),Comedy|Romance +8132,Gladiator (1992),Action|Drama +8133,"Inheritance, The (Arven) (2003)",Drama +8134,Wonderful Days (a.k.a. Sky Blue) (2003),Animation|Sci-Fi +8136,Indestructible Man (1956),Crime|Horror|Sci-Fi +8137,"Wasp Woman, The (1959)",Horror|Sci-Fi +8138,Attack of the Giant Leeches (1959),Horror|Sci-Fi +8139,Deranged (1974),Horror|Thriller +8140,The Cruel Sea (1953),Drama|War +8141,Sodom and Gomorrah (1962),Adventure|Drama +8142,Dead or Alive: Hanzaisha (1999),Action|Crime +8143,Lola Montès (1955),Drama +8147,Charly (1968),Drama|Sci-Fi +8148,Twice Upon a Time (1983),Animation|Fantasy +8149,"Atlantis, the Lost Continent (1961)",Adventure|Sci-Fi +8153,Lust for Life (1956),Drama +8154,"Dolce Vita, La (1960)",Drama +8157,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller +8158,Rush (1991),Crime|Drama +8167,Captain Blood (1935),Action|Adventure|Romance +8168,"Lift, De (1983)",Horror|Thriller +8169,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi +8183,Educating Rita (1983),Comedy|Drama +8187,On Moonlight Bay (1951),Comedy|Musical +8188,Sansho the Bailiff (Sanshô dayû) (1954),Drama +8189,Zazie dans le métro (1960),Comedy +8190,"Americanization of Emily, The (1964)",Comedy|Drama|War +8191,Anne of the Thousand Days (1969),Drama +8194,Baby Doll (1956),Drama +8195,"Avventura, L' (Adventure, The) (1960)",Drama|Mystery|Romance +8196,Beyond the Valley of the Dolls (1970),Comedy|Horror +8197,Hiroshima Mon Amour (1959),Drama|Romance|War +8198,"1000 Eyes of Dr. Mabuse, The (Die 1000 Augen des Dr. Mabuse) (1960)",Crime|Horror|Mystery|Thriller +8199,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller +8201,At Play in the Fields of the Lord (1991),Drama +8202,"Golden Coach, The (Le carrosse d'or) (1953)",Comedy|Drama|Romance +8203,"War Is Over, The (Guerre est finie, La) (1966)",Drama +8206,Mystery of the Wax Museum (1933),Horror +8207,"Day of the Jackal, The (1973)",Crime|Thriller +8208,"Razor's Edge, The (1946)",Drama +8220,"Walking Dead, The (1936)",Crime|Horror|Sci-Fi +8221,War of the Buttons (1994),Adventure|Children|Drama +8222,"Other, The (1972)",Drama|Horror|Mystery|Thriller +8224,"Dexter the Dragon & Bumble the Bear (a.k.a. Dragon That Wasn't (Or Was He?), The) (Als je begrijpt wat ik bedoel) (1983)",Animation|Children|Fantasy +8225,Night of the Living Dead (1990),Horror +8227,Drums Along the Mohawk (1939),Adventure|War|Western +8228,"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)",Mystery +8232,I Love You Again (1940),Comedy|Drama +8235,Safety Last! (1923),Action|Comedy|Romance +8236,While the City Sleeps (1956),Drama|Film-Noir +8237,"Way Ahead, The (a.k.a. The Immortal Battalion) (1944)",Drama|War +8238,Little Murders (1971),Comedy|Crime +8239,Viridiana (1961),Comedy|Drama +8240,Totally F***ed Up (1993),Drama +8241,Masterminds (1997),Action|Comedy|Thriller +8252,You're a Big Boy Now (1966),Comedy|Drama +8253,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery +8254,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance +8255,Chaos (Kaosu) (1999),Crime|Mystery|Thriller +8256,Queen Christina (1933),Drama|Romance +8257,Battleground (1949),Action|Drama|War +8258,Citizen Toxie: The Toxic Avenger IV (2000),Action|Comedy|Horror +8259,Hooper (1978),Action|Comedy +8260,"Crazy Stranger, The (Gadjo Dilo) (1997)",Comedy|Drama +8261,3 Women (Three Women) (1977),Drama +8262,"Green Pastures, The (1936)",Drama +8263,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance +8264,Grey Gardens (1975),Documentary +8265,Frogs (1972),Drama|Horror|Mystery|Thriller +8266,Purple Rain (1984),Drama|Musical +8267,Signs of Life (Lebenszeichen) (1968),Drama +8268,Point of No Return (1993),Action|Thriller +8269,Short Time (1990),Comedy +8270,"Hairdresser's Husband, The (Le mari de la coiffeuse) (1990)",Comedy|Drama|Romance +8272,Cromwell (1970),Drama +8273,"Tale of Ham and Passion, A (Jamón, Jamón) (1992)",Comedy|Drama|Romance +8275,College (1927),Comedy +8290,Mitchell (1975),Action|Crime +8291,Agatha Christie's 'Ten Little Indians' (Ten Little Indians) (And Then There Were None) (1965),Mystery +8292,Hakuchi (1951),Crime|Drama|Romance +8293,Used People (1992),Comedy|Drama +8294,"Swan, The (1956)",Comedy|Drama|Romance +8295,"Most Dangerous Game, The (1932)",Adventure|Mystery|Thriller +8302,"Front Page, The (1931)",Comedy|Drama|Romance +8327,Dolls (2002),Drama|Romance +8329,Three Came Home (1950),Drama|War +8330,Our Man in Havana (1959),Comedy|Drama|Thriller +8331,"Man Who Came to Dinner, The (1942)",Comedy +8332,Sunday Bloody Sunday (1971),Drama +8334,"Cowboys, The (1972)",Western +8335,Make Way for Tomorrow (1937),Drama +8336,"Major and the Minor, The (1942)",Comedy|Romance +8337,"Caine Mutiny, The (1954)",Drama|War +8338,Black Narcissus (1947),Drama +8339,Damn the Defiant! (H.M.S. Defiant) (1962),Adventure|Drama +8340,Escape from Alcatraz (1979),Drama|Thriller +8341,Oliver Twist (1948),Adventure|Crime|Drama +8359,Skokie (1981),Drama +8360,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance +8361,"Day After Tomorrow, The (2004)",Action|Adventure|Drama|Sci-Fi|Thriller +8362,Raising Helen (2004),Comedy|Drama|Romance +8363,Soul Plane (2004),Comedy +8364,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama +8365,"Mother, The (2003)",Drama +8366,Saved! (2004),Comedy|Drama +8367,"Time of the Wolf, The (Le temps du loup) (2003)",Drama +8368,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX +8369,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller +8370,"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)",Action|Comedy|Crime|Drama +8371,"Chronicles of Riddick, The (2004)",Action|Sci-Fi|Thriller +8372,Garfield: The Movie (2004),Animation|Children|Comedy +8373,"Stepford Wives, The (2004)",Comedy|Fantasy|Thriller +8374,Bright Future (Akarui mirai) (2003),Drama +8375,"Hunting of the President, The (2004)",Documentary +8376,Napoleon Dynamite (2004),Comedy +8377,City of Joy (1992),Drama +8378,"Doctor, The (1991)",Drama +8379,"Dresser, The (1983)",Drama +8380,Father Hood (1993),Comedy +8381,For Me and My Gal (1942),Drama|Musical|Romance +8382,Hello Again (1987),Comedy +8383,Hope Springs (2003),Comedy|Romance +8384,Love Finds Andy Hardy (1938),Comedy|Romance +8385,Lover Come Back (1961),Comedy|Romance +8387,Police Academy: Mission to Moscow (1994),Comedy|Crime +8388,Ring of Bright Water (1969),Comedy|Drama +8391,Big Wednesday (1978),Comedy|Drama +8392,Fool for Love (1985),Drama +8393,Give My Regards to Broad Street (1984),Drama|Musical +8394,"Hi-Line, The (1999)",Drama +8395,"Last of Sheila, The (1973)",Crime|Mystery|Thriller +8397,"Playboys, The (1992)",Drama|Romance +8398,Star! (1968),Musical +8399,We're Not Married! (1952),Comedy|Romance +8400,Wish You Were Here (1987),Comedy|Drama +8401,"Adventures of Sherlock Holmes, The (1939)",Crime|Mystery|Thriller +8402,Book of Love (1990),Comedy|Romance +8403,Helen of Troy (1956),Action|Adventure|Drama|Romance|War +8404,"Hound of the Baskervilles, The (1939)",Crime|Mystery|Thriller +8405,Hour of the Wolf (Vargtimmen) (1968),Drama|Horror +8407,"Molly Maguires, The (1970)",Drama +8410,Suddenly (1954),Crime|Drama|Film-Noir +8411,Urban Ghost Story (1998),Drama +8420,Possessed (1947),Drama|Film-Noir +8421,Dying of Laughter (Muertos de Risa) (1999),Comedy +8422,Kings Row (1942),Drama|Romance +8423,"Kid Brother, The (1927)",Children|Comedy|Romance +8424,"Divorcee, The (1930)",Drama|Romance +8425,Meet the Applegates (1991),Comedy +8426,Robot Carnival (Roboto kânibauru) (1987),Animation|Comedy|Drama|Fantasy|Sci-Fi +8427,Americathon (1979),Comedy|Sci-Fi +8444,"Chipmunk Adventure, The (1987)",Adventure|Animation|Children|Comedy|Fantasy|Musical +8446,Sands of Iwo Jima (1949),Action|Drama|Romance|War +8447,This Island Earth (1955),Sci-Fi +8448,ComDads (les Compères) (1983),Comedy|Crime +8450,Anthony Adverse (1936),Adventure|Romance +8451,Blackboard Jungle (1955),Drama +8452,Moment by Moment (1978),Drama|Romance +8453,It Had to Be You (2000),Comedy|Romance +8454,Luna Papa (1999),Comedy|Drama|Fantasy +8455,"Long Way Home, The (1997)",Documentary +8456,Investigation of a Citizen Above Suspicion (Indagine su un cittadino al di sopra di ogni sospetto) (1970),Crime|Drama|Thriller +8457,True Love (1989),Comedy +8458,To Each His Own (1946),Drama +8459,"Heiress, The (1949)",Drama|Romance +8460,State Fair (1945),Musical|Romance +8461,Dragon Seed (1944),Drama +8462,Executive Suite (1954),Drama +8463,Johnny Belinda (1948),Drama +8464,Super Size Me (2004),Comedy|Documentary|Drama +8465,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance +8469,None But the Lonely Heart (1944),Drama|Romance +8477,"Pier, The (Jetée, La) (1962)",Romance|Sci-Fi +8478,"Distant Voices, Still Lives (1988)",Drama +8480,"King of Kings, The (1927)",Drama +8481,Northwest Passage (1940),Action|Adventure|Drama|Romance|Thriller|Western +8482,"Picture of Dorian Gray, The (1945)",Drama|Fantasy|Horror +8483,"Born Losers, The (1967)",Action|Drama|Thriller +8484,"Human Condition I, The (Ningen no joken I) (1959)",Drama|War +8485,Samsara (2001),Adventure|Drama|Romance +8486,Bachelor Mother (1939),Comedy|Romance +8487,Please Don't Eat the Daisies (1960),Children|Comedy|Musical +8488,Siddhartha (1972),Drama +8491,White Heat (1949),Crime|Drama|Film-Noir +8492,"Christmas Carol, A (Scrooge) (1951)",Drama|Fantasy +8493,Memphis Belle (1990),Action|Drama|War +8494,"Cincinnati Kid, The (1965)",Drama +8495,Animal Factory (2000),Crime|Drama +8496,"Panic in Needle Park, The (1971)",Drama|Romance +8499,Pretty Baby (1978),Drama +8500,Godzilla vs. Mechagodzilla (Gojira tai Mekagojira) (1974),Action|Horror|Sci-Fi +8501,"Hitcher, The (1986)",Action|Thriller +8502,Show Boat (1951),Drama|Musical|Romance +8503,Ivanhoe (1952),Adventure|Drama|Romance +8504,Box of Moon Light (1996),Comedy|Drama +8505,"Eel, The (Unagi) (1997)",Drama|Romance +8506,Fear X (2003),Mystery|Thriller +8507,Freaks (1932),Crime|Drama|Horror +8511,"Immigrant, The (1917)",Comedy +8512,Silent Movie (1976),Comedy +8516,"Matter of Life and Death, A (Stairway to Heaven) (1946)",Drama|Fantasy|Romance +8518,Anna Christie (1930),Drama +8519,"Bat People, The (1974)",Comedy|Drama|Horror|Sci-Fi +8520,Deep Cover (1992),Action|Crime|Thriller +8521,Dr. Jekyll and Mr. Hyde (1931),Drama|Horror +8522,My Little Chickadee (1940),Comedy|Western +8524,"High and the Mighty, The (1954)",Drama +8525,"Ugly Dachshund, The (1966)",Children|Comedy +8526,Around the World in 80 Days (2004),Adventure|Children|Comedy +8527,I'll Sleep When I'm Dead (2003),Crime|Drama +8528,Dodgeball: A True Underdog Story (2004),Comedy +8529,"Terminal, The (2004)",Comedy|Drama|Romance +8530,Dear Frankie (2004),Drama|Romance +8531,White Chicks (2004),Action|Comedy|Crime +8532,"Door in the Floor, The (2004)",Drama +8533,"Notebook, The (2004)",Drama|Romance +8534,Two Brothers (Deux frères) (2004),Adventure|Children|Drama +8535,De-Lovely (2004),Drama|Musical +8536,"Intended, The (2002)",Drama|Thriller +8537,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi +8540,Back to Bataan (1945),Drama|War +8541,Bloodhounds of Broadway (1989),Comedy|Drama +8542,"Day at the Races, A (1937)",Comedy|Musical +8543,"Flying Leathernecks, The (1951)",Action|Drama|War +8544,"Now You See Him, Now You Don't (1972)",Comedy|Sci-Fi +8545,Plain Dirty (a.k.a. Briar Patch) (2003),Drama|Romance +8571,Bob & Carol & Ted & Alice (1969),Comedy|Drama +8572,"Littlest Rebel, The (1935)",Children|Drama +8573,Reconstruction (2003),Drama|Romance +8574,"Claymation Christmas Celebration, A (1987)",Animation|Children|Comedy|Musical +8575,"Happenstance (Battement d'ailes du papillon, Le) (2001)",Comedy|Drama +8576,Kopps (2003),Action|Comedy +8577,Comandante (2003),Documentary +8578,Undead (2003),Action|Comedy|Horror|Sci-Fi +8579,"Scarlet and the Black, The (1983)",Action|Drama|War +8580,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical +8581,Pirates of Silicon Valley (1999),Documentary|Drama +8582,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War +8583,"Clock, The (1945)",Adventure|Drama|Romance +8584,Leave Her to Heaven (1945),Drama|Film-Noir +8585,Rapa Nui (1994),Action|Adventure|Drama|Romance +8586,Roxie Hart (1942),Comedy +8587,Mayor of the Sunset Strip (2003),Documentary +8588,Killing Me Softly (2002),Drama|Mystery|Romance|Thriller +8589,Winter War (Talvisota) (1989),Drama|War +8591,"Philadelphia Experiment, The (1984)",Adventure|Drama|Sci-Fi +8592,"Wheeler Dealers, The (1963)",Comedy +8593,Juice (1992),Action|Crime|Drama|Thriller +8594,"Secret Life of Girls, The (1999)",Comedy +8595,"Flim-Flam Man, The (1967)",Action|Adventure|Comedy +8596,Revenge of the Pink Panther (1978),Comedy|Crime +8597,Riders (2002),Action|Crime|Thriller +8598,I Am Dina (2002),Crime|Drama|Mystery|Romance +8599,"Escapist, The (2001)",Thriller +8600,Angels with Dirty Faces (1938),Crime|Drama +8601,Zero de conduite (Zero for Conduct) (Zéro de conduite: Jeunes diables au collège) (1933),Comedy|Drama +8602,Shadows (1959),Drama +8603,Coming Out (1989),Drama +8604,Taxi (1998),Action|Comedy +8605,Taxi 3 (2003),Action|Comedy +8606,Pull My Daisy (1958),Comedy|Drama +8607,Tokyo Godfathers (2003),Adventure|Animation|Drama +8608,"Butcher, The (Boucher, Le) (1970)",Drama|Thriller +8609,Our Hospitality (1923),Comedy +8610,All of Me (1984),Comedy|Fantasy +8611,"Farmer's Daughter, The (1947)",Comedy +8612,Lassie Come Home (1943),Adventure|Children|Drama +8613,"Time of Your Life, The (1948)",Comedy|Drama +8614,Overboard (1987),Comedy|Romance +8615,"Mask of Fu Manchu, The (1932)",Adventure|Horror|Sci-Fi +8616,By the Light of the Silvery Moon (1953),Children|Musical|Romance +8617,Butterfield 8 (1960),Drama +8618,Johnny Guitar (1954),Drama|Western +8619,Sister My Sister (1994),Drama +8620,"Exterminating Angel, The (Ángel exterminador, El) (1962)",Comedy|Drama|Fantasy|Mystery +8621,Ivans xtc. (2000),Drama +8622,Fahrenheit 9/11 (2004),Documentary +8623,Roxanne (1987),Comedy|Romance +8624,Freedom Downtime (2001),Adventure|Crime|Documentary +8625,"Same River Twice, The (2003)",Documentary +8626,Dr. Terror's House of Horrors (1965),Horror|Sci-Fi +8627,Confessions of a Burning Man (2003),Documentary +8628,Search and Destroy (1995),Comedy|Drama +8629,"Book of Life, The (1998)",Comedy|Fantasy +8630,Such a Long Journey (1998),Drama|War +8631,Hard Times (1975),Action|Drama +8632,Secret Society (2002),Comedy +8633,"Last Starfighter, The (1984)",Action|Adventure|Comedy|Sci-Fi +8634,Tank (1984),Action|Comedy|Drama +8635,Jungle Holocaust (Ultimo mondo cannibale) (1977),Adventure|Horror +8636,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX +8637,America's Heart and Soul (2004),Documentary +8638,Before Sunset (2004),Drama|Romance +8639,"Clearing, The (2004)",Drama|Thriller +8640,King Arthur (2004),Action|Adventure|Drama|War +8641,Anchorman: The Legend of Ron Burgundy (2004),Comedy +8642,Sleepover (2004),Comedy +8643,"Cinderella Story, A (2004)",Comedy|Romance +8644,"I, Robot (2004)",Action|Adventure|Sci-Fi|Thriller +8645,"Maria Full of Grace (Maria, Llena eres de gracia) (2004)",Crime|Drama +8646,Distant Drums (1951),Action|Romance|Western +8647,Follow That Dream (1962),Comedy|Musical +8648,"Girl of Your Dreams, The (Niña de tus ojos, La) (1998)",Comedy|Drama +8649,Gray Lady Down (1978),Drama|Thriller +8650,Long Day's Journey Into Night (1962),Drama +8651,Man of La Mancha (1972),Adventure|Comedy|Musical +8652,"Night of the Following Day, The (1968)",Crime|Drama +8653,Posse (1975),Western +8654,Prince Valiant (1954),Adventure +8655,Rustlers' Rhapsody (1985),Comedy|Western +8656,"Short Film About Killing, A (Krótki film o zabijaniu) (1988)",Crime|Drama +8657,"Tin Star, The (1957)",Western +8658,Zandalee (1991),Drama|Thriller +8659,Brief Crossing (Brève traversée) (2001),Comedy|Drama|Romance +8660,"Deluge, The (Potop) (1974)",Adventure|War +8661,How the West Was Won (1962),Adventure|Drama|Western +8662,Joan of Arc (1948),Action|Drama|War +8663,Live Forever (2003),Comedy|Documentary +8664,Mr. Klein (Monsieur Klein) (1976),Drama +8665,"Bourne Supremacy, The (2004)",Action|Crime|Thriller +8666,Catwoman (2004),Action|Crime|Fantasy +8667,A Home at the End of the World (2004),Drama|Romance +8668,Some Girl (1998),Comedy|Drama +8669,Stay Hungry (1976),Comedy|Drama +8670,"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)",Crime|Horror|Mystery|Thriller +8671,Zus & Zo (2001),Comedy|Drama|Romance +8672,Battle Hymn (1957),Drama +8673,Crash Dive (1943),Drama|Romance|War +8674,Disco Pigs (2001),Drama +8675,"Enemy Below, The (1957)",Action|Drama|War +8676,Fist of the North Star (1995),Action|Thriller +8677,Flash Gordon Conquers the Universe (1940),Action|Sci-Fi +8678,Guns of the Magnificent Seven (1969),Action|Adventure|Drama|Western +8679,"Hunters, The (1958)",Drama|War +8680,In a Glass Cage (Tras el cristal) (1986),Drama|Horror +8681,Lancelot of the Lake (Lancelot du Lac) (1974),Drama|War +8682,"Last Valley, The (1971)",Adventure +8683,"Magnificent Seven Ride!, The (1972)",Western +8684,"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)",Adventure|Drama +8685,"Miracle of Marcelino, The (Marcelino pan y vino) (1955)",Comedy|Drama +8686,Morituri (1965),Drama|War +8687,Orgy of the Dead (1965),Horror +8688,Shalako (1968),Western +8689,"Shock to the System, A (1990)",Comedy|Crime|Thriller +8690,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War +8691,His Brother (Son frère) (2003),Drama +8692,Wake Island (1942),Drama|War +8693,What Price Glory (1952),Drama|War +8694,You Were Never Lovelier (1942),Comedy|Musical|Romance +8695,"Bachelor and the Bobby-Soxer, The (1947)",Comedy +8696,Breezy (1973),Drama|Romance +8697,"City of No Limits, The (la ciudad sin límites, En) (2002)",Drama|Thriller +8698,"Comfort of Strangers, The (1990)",Drama +8699,Dancing in September (2000),Drama +8700,Destination Tokyo (1943),Adventure|War +8701,Dr. Jekyll and Ms. Hyde (1995),Comedy|Horror +8702,Dream Lover (1993),Drama|Mystery|Thriller +8703,Fausto 5.0 (2001),Horror +8704,For Queen and Country (1988),Drama +8705,Funny About Love (1990),Comedy|Romance +8706,"Greatest, The (1977)",Drama +8707,Grief (1993),Comedy +8708,Hometown Legend (2002),Drama +8709,How I Got Into College (1989),Comedy|Romance +8710,Map of the Human Heart (1993),Drama|Romance +8711,Mr. Blandings Builds His Dream House (1948),Comedy +8712,My Favorite Wife (1940),Comedy|Romance +8713,"New Adventures of Pippi Longstocking, The (1988)",Adventure|Children|Fantasy|Musical +8714,Night and Day (1946),Drama|Musical +8715,No Name on the Bullet (1959),Western +8716,"Plainsman, The (1937)",War|Western +8717,Slaughter of the Innocents (1993),Crime|Horror|Mystery|Thriller +8718,"Snake Pit, The (1948)",Drama +8719,"Spoilers, The (1942)",Action|Western +8720,"Super, The (1991)",Comedy +8721,Tai-Pan (1986),Adventure +8722,Two of a Kind (1983),Comedy|Fantasy|Romance +8723,Warriors (Guerreros) (2002),Adventure|Drama|War +8724,"Leopard, The (Gattopardo, Il) (1963)",Drama|War +8725,"Goodbye, Columbus (1969)",Comedy|Drama|Romance +8726,"President's Analyst, The (1967)",Comedy|Thriller +8727,"Day of the Locust, The (1975)",Drama +8728,"Creeping Flesh, The (1973)",Horror|Sci-Fi +8729,Swann in Love (Un amour de Swann) (1984),Drama +8730,To End All Wars (2001),Action|Drama|War +8731,Moulin Rouge (1952),Drama +8732,"Belly of an Architect, The (1987)",Drama +8733,"Nest, The (Nid de Guêpes) (2002)",Action|Crime|Thriller +8734,Love Happy (1949),Comedy +8735,High School Confidential! (1958),Crime|Drama +8736,Out of the Blue (1980),Drama +8737,Crimetime (1996),Thriller +8738,"Woman Is a Woman, A (femme est une femme, Une) (1961)",Comedy|Drama|Musical|Romance +8739,Mamma Roma (1962),Drama +8740,"Lower Depths, The (Donzoko) (1957)",Comedy|Drama +8741,Ruby Cairo (1993),Thriller +8742,Night Patrol (1984),Comedy +8743,Biggles (1986),Adventure|Fantasy|Sci-Fi +8744,Fancy Pants (1950),Comedy|Western +8745,"World of Suzie Wong, The (1960)",Drama|Romance +8746,King of the Ants (2003),Crime|Horror +8747,Uncle Sam (1997),Horror +8748,"Yesterday, Today and Tomorrow (Ieri, oggi, domani) (1963)",Comedy +8749,"Beautiful Troublemaker, The (La belle noiseuse) (1991)",Drama +8750,"Balance, La (1982)",Action|Crime|Drama +8751,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir +8752,"Set-Up, The (1949)",Drama|Film-Noir|Romance +8753,Unprecedented: The 2000 Presidential Election (2002),Documentary +8754,"Prime of Miss Jean Brodie, The (1969)",Drama +8755,My Voyage to Italy (Il mio viaggio in Italia) (1999),Documentary +8756,"North Avenue Irregulars, The (1979)",Action|Crime +8757,Lovers and Other Strangers (1970),Comedy +8758,Kotch (1971),Comedy|Drama +8759,Greyfriars Bobby (a.k.a. Greyfriars Bobby: The True Story of a Dog) (1961),Children|Drama +8760,Side Out (1990),Comedy|Romance +8761,"Three Lives of Thomasina, The (1964)",Children|Drama +8762,"No Deposit, No Return (1976)",Children|Comedy +8763,"One and Only, Genuine, Original Family Band, The (1968)",Children|Comedy|Musical +8764,Under the Lighthouse Dancing (1997),Drama +8765,This Gun for Hire (1942),Crime|Film-Noir|Thriller +8766,Black Angel (1946),Drama|Film-Noir|Mystery +8767,"Big Clock, The (1948)",Crime|Film-Noir|Thriller +8768,Criss Cross (1949),Crime|Drama|Film-Noir +8769,"5th Musketeer, The (a.k.a. Fifth Musketeer, The) (1979)",Adventure +8770,Evilspeak (1981),Horror|Sci-Fi +8771,Sherlock Holmes: Terror by Night (1946),Crime|Mystery|Thriller +8772,"Spy Who Came in from the Cold, The (1965)",Drama|Thriller +8773,Sherlock Holmes and the Secret Weapon (1942),Crime|Mystery|Thriller +8774,Sherlock Holmes: The Woman in Green (1945),Mystery +8775,"Counterfeit Traitor, The (1962)",Thriller|War +8776,"1, 2, 3, Sun (Un, deuz, trois, soleil) (1993)",Drama +8777,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama +8778,Sherlock Holmes: Dressed to Kill (1946),Crime|Mystery +8779,Bon Voyage (2003),Comedy|Drama +8780,"Assassination Bureau, The (1969)",Action|Adventure|Comedy|Crime|Sci-Fi +8781,"Manchurian Candidate, The (2004)",Thriller +8782,Thunderbirds (2004),Action|Adventure|Fantasy|Sci-Fi +8783,"Village, The (2004)",Drama|Mystery|Thriller +8784,Garden State (2004),Comedy|Drama|Romance +8785,Early Summer (Bakushû) (1951),Drama +8786,Port of Shadows (Quai des brumes) (1938),Drama +8787,Thunderbirds Are GO (1966),Action|Sci-Fi +8788,Thunderbird Six (1968),Action|Sci-Fi +8789,Castle Keep (1969),Drama|War +8790,Revengers Tragedy (2002),Comedy|Horror +8791,Beyond Hypothermia (Sip si 32 doe) (1996),Action|Drama|Thriller +8792,Octane (2003),Horror|Thriller +8793,PTU (2003),Crime|Drama +8794,"Unfinished Piece for a Player Piano, An (Neokonchennaya pyesa dlya mekhanicheskogo pianino) (1977)",Drama +8795,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War +8796,"Funny Thing Happened on the Way to the Forum, A (1966)",Comedy|Musical +8797,Salesman (1969),Documentary +8798,Collateral (2004),Action|Crime|Drama|Thriller +8799,Little Black Book (2004),Comedy|Romance +8800,Code 46 (2003),Romance|Sci-Fi +8801,In the Soup (1992),Comedy|Drama +8802,They Came to Cordura (1959),Western +8803,Blue Spring (Aoi haru) (2001),Drama +8804,"Story of Women (Affaire de femmes, Une) (1988)",Drama +8805,Attack the Gas Station! (Juyuso seubgyuksageun) (1999),Comedy|Crime +8806,Masks (Masques) (1987),Thriller +8807,Harold and Kumar Go to White Castle (2004),Adventure|Comedy +8808,"Princess Diaries 2: Royal Engagement, The (2004)",Comedy|Romance +8809,Danny Deckchair (2003),Comedy|Romance +8810,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller +8811,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy +8812,Novo (2002),Drama +8813,We Don't Live Here Anymore (2004),Drama +8814,Without a Paddle (2004),Comedy +8815,Exorcist: The Beginning (2004),Horror|Thriller +8816,Speedway (1968),Action +8817,"Trouble with Girls, The (1969)",Comedy|Drama +8818,It Happened at the World's Fair (1963),Comedy|Drama|Musical +8819,Double Trouble (1967),Musical +8820,Spinout (1966),Comedy|Musical +8821,Harum Scarum (1965),Comedy|Musical +8822,"Unidentified Flying Oddball (a.k.a. Spaceman and King Arthur, The) (a.k.a. Spaceman in King Arthur's Court, A) (1979)",Adventure|Comedy|Fantasy|Sci-Fi +8823,"Sting II, The (1983)",Comedy|Crime +8824,If a Man Answers (1962),Comedy +8825,Cheerleader Camp (1987),Comedy|Horror|Mystery +8826,Human Resources (Ressources humaines) (1999),Drama +8827,"Bill Cosby, Himself (1983)",Comedy|Documentary +8828,Dead Ringer (1964),Drama|Thriller +8829,Benji: Off the Leash! (2004),Children|Drama +8830,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller +8831,Suspect Zero (2004),Crime|Thriller +8832,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama +8833,Vanity Fair (2004),Drama|Romance +8834,"Cookout, The (2004)",Comedy +8835,Paparazzi (2004),Drama|Thriller +8836,Wicker Park (2004),Drama|Romance|Thriller +8837,Triggermen (2002),Comedy|Crime +8838,Alice Doesn't Live Here Anymore (1974),Drama|Romance +8839,"Mangler, The (1995)",Horror +8840,Who's That Knocking at My Door? (1967),Drama +8841,Seeing Other People (2004),Comedy +8842,Past Midnight (1992),Horror|Thriller +8843,"Million to Juan, A (1994)",Comedy +8844,Camera Buff (Amator) (1979),Drama +8845,No End (Bez konca) (1985),Drama +8846,Highwaymen (2003),Action|Crime|Thriller +8847,Graffiti Bridge (1990),Drama|Musical +8848,"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)",Drama +8849,Under the Cherry Moon (1986),Comedy|Drama|Musical|Romance +8850,Flipper (1963),Adventure|Children|Drama +8851,Smile (1975),Comedy +8852,Lord Jim (1965),Adventure|Drama +8853,"Small Circle of Friends, A (1980)",Drama +8854,Night of the Demons (1988),Horror +8855,Witchboard (1986),Horror|Mystery|Thriller +8856,Roller Boogie (1979),Drama +8857,Lilith (1964),Drama +8858,"Apple, The (1980)",Musical|Sci-Fi +8859,SuperBabies: Baby Geniuses 2 (2004),Comedy +8860,Cellular (2004),Action|Crime|Drama|Mystery|Thriller +8861,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller +8862,Criminal (2004),Comedy|Drama +8863,Evergreen (2004),Drama +8864,Mr. 3000 (2004),Comedy|Drama +8865,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi +8866,Wimbledon (2004),Comedy|Romance +8867,Anatomy of Hell (Anatomie de l'enfer) (2004),Drama +8868,Head in the Clouds (2004),Drama|Romance|War +8869,First Daughter (2004),Comedy|Romance +8870,"Forgotten, The (2004)",Drama|Mystery|Sci-Fi|Thriller +8871,"Last Shot, The (2004)",Comedy +8872,"Dirty Shame, A (2004)",Comedy +8873,"Motorcycle Diaries, The (Diarios de motocicleta) (2004)",Adventure|Drama +8874,Shaun of the Dead (2004),Comedy|Horror +8875,"Come Back, Little Sheba (1952)",Drama +8876,"Black Orchid, The (1958)",Drama +8877,Second Chorus (1940),Comedy|Musical|Romance +8878,Class of Nuke 'Em High Part II: Subhumanoid Meltdown (1991),Comedy|Horror|Sci-Fi +8879,Murder on the Orient Express (1974),Crime|Mystery|Thriller +8880,Mask (1985),Drama +8881,Alexander's Ragtime Band (1938),Drama|Musical +8882,"Boston Strangler, The (1968)",Crime|Drama|Mystery|Thriller +8883,"Last Flight of Noah's Ark, The (1980)",Adventure|Children|Comedy +8884,"Man with One Red Shoe, The (1985)",Comedy|Thriller +8885,"Sentinel, The (1977)",Drama|Horror|Mystery|Thriller +8886,SSSSSSS (1973),Horror|Sci-Fi +8887,Whispers in the Dark (1992),Thriller +8888,Stealing Time (a.k.a. Rennie's Landing) (2001),Drama +8889,"Legacy, The (1978)",Horror +8890,"Alligator People, The (1959)",Horror +8891,Hear No Evil (1993),Thriller +8892,Basket Case 3: The Progeny (1992),Comedy|Horror +8893,Basket Case 2 (1990),Comedy|Horror +8894,Orca: The Killer Whale (1977),Action|Drama|Horror|Thriller +8895,AKA (2002),Drama +8896,I Married a Monster from Outer Space (1958),Horror|Sci-Fi +8897,"Trojan Women, The (1971)",Drama +8898,"Robinson Crusoe (Adventures of Robinson Crusoe, The) (1954)",Adventure|Drama +8899,Hardcore (1979),Drama +8900,Watermelon Man (1970),Comedy|Drama +8901,Flashpoint (1984),Action|Adventure|Crime|Mystery|Thriller +8902,Bug (1975),Horror|Mystery|Sci-Fi +8903,"Terror, The (1963)",Horror|Mystery +8904,Jack-O (1995),Horror +8905,1492: Conquest of Paradise (1992),Adventure|Drama +8906,Cannibal Holocaust (1980),Horror +8907,Shark Tale (2004),Animation|Children|Comedy +8908,Ladder 49 (2004),Action|Drama|Thriller +8909,Black Cloud (2004),Drama +8910,I Heart Huckabees (2004),Comedy +8911,Raise Your Voice (2004),Romance +8912,Taxi (2004),Action|Comedy +8913,Around the Bend (2004),Drama +8914,Primer (2004),Drama|Sci-Fi +8915,Stage Beauty (2004),Drama +8916,Shall We Dance? (2004),Comedy|Romance +8917,Team America: World Police (2004),Action|Adventure|Animation|Comedy +8918,Eulogy (2004),Comedy|Crime|Drama +8919,P.S. (2004),Comedy|Drama|Fantasy|Romance +8920,"Country Girl, The (1954)",Drama +8921,"Rose Tattoo, The (1955)",Drama|Romance +8922,Epidemic (1988),Drama|Horror|Thriller +8923,Tess (1979),Drama|Romance +8924,I Wanna Hold Your Hand (1978),Comedy +8925,Spinning Boris (2003),Comedy|Drama +8926,Circle of Iron (1978),Action|Adventure|Fantasy|Mystery +8927,Cannonball (1976),Action|Comedy|Drama +8928,"Fearless Vampire Killers, The (1967)",Comedy|Horror +8929,Black Beauty (1971),Children|Drama +8930,"Five Obstructions, The (Fem benspænd, De) (2003)",Documentary +8931,Born Rich (2003),Documentary +8932,It's Alive (1974),Horror +8933,"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)",Comedy|Drama +8934,Bebe's Kids (1992),Animation|Children|Comedy +8935,All I Want for Christmas (1991),Children|Comedy|Romance +8936,"Life and Nothing But (Vie et rien d'autre, La) (1989)",Drama +8937,Friday Night Lights (2004),Action|Drama +8938,Tarnation (2003),Documentary +8939,"Final Cut, The (2004)",Sci-Fi|Thriller +8940,Hair Show (2004),Comedy|Romance +8941,Riding the Bullet (2004),Horror|Thriller +8942,Spin (2003),Children|Drama +8943,Being Julia (2004),Comedy|Drama +8944,"Dust Factory, The (2004)",Adventure|Children|Romance +8945,Thérèse: The Story of Saint Thérèse of Lisieux (2004),Drama +8946,Surviving Christmas (2004),Comedy +8947,"Grudge, The (2004)",Horror|Mystery|Thriller +8948,Alfie (2004),Comedy|Drama|Romance +8949,Sideways (2004),Comedy|Drama|Romance +8950,The Machinist (2004),Drama|Mystery|Thriller +8951,Vera Drake (2004),Drama +8952,Falling Angels (2003),Drama +8953,Stella Street (2004),Comedy +8954,Lightning in a Bottle (2004),Documentary +8955,Undertow (2004),Crime|Drama|Thriller +8956,Enduring Love (2004),Drama +8957,Saw (2004),Horror|Mystery|Thriller +8958,Ray (2004),Drama +8959,Birth (2004),Drama|Mystery +8960,Voices of Iraq (2004),Documentary +8961,"Incredibles, The (2004)",Action|Adventure|Animation|Children|Comedy +8962,Fade to Black (2004),Documentary +8963,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller +8964,Callas Forever (2002),Drama +8965,"Polar Express, The (2004)",Adventure|Animation|Children|Fantasy|IMAX +8966,Kinsey (2004),Drama +8967,Seed of Chucky (Child's Play 5) (2004),Comedy|Horror +8968,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller +8969,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance +8970,Finding Neverland (2004),Drama +8971,Veer Zaara (2004),Drama|Musical|Romance +8972,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller +8973,Bad Education (La mala educación) (2004),Drama|Thriller +8974,"SpongeBob SquarePants Movie, The (2004)",Adventure|Animation|Children|Comedy +8975,Fabled (2002),Drama|Mystery|Thriller +8976,San Antonio (1945),Western +8977,Alexander (2004),Action|Adventure|Drama|War +8978,Christmas with the Kranks (2004),Children|Comedy +8979,Guerrilla: The Taking of Patty Hearst (2004),Documentary +8980,Our Music (Notre musique) (2004),Drama +8981,Closer (2004),Drama|Romance +8982,I Am David (2003),Drama +8983,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance +8984,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller +8985,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller +8986,"Bellboy, The (1960)",Comedy +8987,Bush's Brain (2004),Documentary +8988,Cinderfella (1960),Comedy +8989,Damn Yankees! (1958),Comedy|Musical +8990,"Delicate Delinquent, The (1957)",Comedy +8991,"Disorderly Orderly, The (1964)",Comedy|Romance +8992,"Errand Boy, The (1961)",Comedy +8993,"Family Jewels, The (1965)",Comedy +8994,"Ladies Man, The (1961)",Comedy +8995,"Patsy, The (1964)",Comedy +8996,Stateside (2004),Drama +8997,"Stooge, The (1953)",Comedy +8998,That's Entertainment (1974),Documentary +8999,"That's Entertainment, Part II (1976)",Documentary +9000,That's Entertainment! III (1994),Documentary +9001,"Wackiest Ship in the Army, The (1960)",Comedy|War +9002,Alexander the Great (1956),Drama +9003,Conquest of Space (1955),Sci-Fi +9004,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi +9005,Fire in the Sky (1993),Drama|Mystery|Sci-Fi +9006,"Garden of Allah, The (1936)",Drama +9007,I'll Be Seeing You (1944),Drama +9008,"Invisible Man Returns, The (1940)",Horror|Sci-Fi +9009,"Last Minute, The (2001)",Drama|Mystery|Thriller +9010,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance +9011,Portrait of Jennie (1948),Drama|Fantasy|Mystery|Romance +9012,Ruby Gentry (1952),Drama +9013,Secret Honor (1984),Drama +9014,Since You Went Away (1944),Drama|War +9015,"Slipping-Down Life, A (1999)",Drama|Romance +9016,Splatter University (1984),Horror +9017,Twist (2003),Drama +9018,Control Room (2004),Documentary|War +9019,Celsius 41.11: The Temperature at Which the Brain... Begins to Die (2004),Documentary +25735,"Cheat, The (1915)",Drama +25736,Dr. Jekyll and Mr. Hyde (1920),Drama|Horror|Sci-Fi +25737,"Golem, The (Golem, wie er in die Welt kam, Der) (1920)",Fantasy|Horror +25738,"Last of the Mohicans, The (1920)",Adventure|Drama +25739,"Idle Class, The (1921)",Comedy +25741,"Phantom Carriage, The (Körkarlen) (1921)",Drama +25742,Destiny (a.k.a. Between Two Worlds) (Der müde Tod) (1921),Fantasy +25743,"Sheik, The (1921)",Adventure|Drama|Romance +25744,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror +25745,"Man from Beyond, The (1922)",Mystery +25746,"Hunchback of Notre Dame, The (1923)",Drama|Horror +25747,Why Worry? (1923),Adventure|Comedy|Romance +25748,HE Who Gets Slapped (1924),Drama|Thriller +25749,"Marriage Circle, The (1924)",Comedy +25750,Sherlock Jr. (1924),Comedy|Fantasy|Romance +25751,"Big Parade, The (1925)",Drama|Romance|War +25752,"Freshman, The (1925)",Comedy +25753,Greed (1924),Drama +25755,"Phantom of the Opera, The (1925)",Drama|Horror +25757,"Jazz Singer, The (1927)",Drama|Musical|Romance +25759,October (1928),Drama|War +25760,Old San Francisco (1927),Drama|Romance +25762,"Unknown, The (a.k.a. Alonzo the Armless) (1927)",Drama|Horror|Romance +25763,"Pandora's Box (Büchse der Pandora, Die) (1929)",Drama +25764,"Cameraman, The (1928)",Comedy|Drama|Romance +25765,"Fall of the House of Usher, The (chute de la maison Usher, La) (1928)",Drama|Horror +25766,"Crowd, The (1928)",Drama +25767,"Man Who Laughs, The (1928)",Drama|Romance +25768,Sadie Thompson (1928),Drama +25769,"Steamboat Bill, Jr. (1928)",Comedy|Romance +25770,Applause (1929),Drama|Musical +25771,"Andalusian Dog, An (Chien andalou, Un) (1929)",Fantasy +25773,Little Caesar (1931),Crime|Drama +25774,"Golden Age, The (Âge d'Or, L') (1930)",Comedy|Drama|Romance +25775,"Champ, The (1931)",Drama +25777,Monkey Business (1931),Comedy +25778,Night Nurse (1931),Crime|Drama|Mystery|Thriller +25782,Boudu Saved From Drowning (Boudu sauvé des eaux) (1932),Comedy +25783,Doctor X (1932),Horror|Thriller +25785,"Land Without Bread (Hurdes, tierra sin pan, Las) (1933)",Documentary|Drama +25786,"Old Dark House, The (1932)",Drama|Horror|Thriller +25787,Rasputin and the Empress (1932),Drama +25788,Scarface (1932),Crime|Drama +25789,Shanghai Express (1932),Adventure|Drama|Romance +25792,"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)",Comedy|Drama +25793,Vampyr (1932),Fantasy|Horror +25794,What Price Hollywood? (1932),Drama +25795,Dinner at Eight (1933),Comedy|Drama|Romance +25796,"Ghoul, The (1933)",Drama|Horror +25797,Gold Diggers of 1933 (1933),Musical +25798,Island of Lost Souls (1932),Adventure|Horror|Romance|Sci-Fi +25800,Lady for a Day (1933),Comedy +25801,She Done Him Wrong (1933),Comedy|Romance +25802,"Son of Kong, The (1933)",Adventure|Comedy|Fantasy +25803,"Vampire Bat, The (1933)",Horror +25804,Wild Boys of the Road (1933),Adventure|Drama|Romance +25805,"Atalante, L' (1934)",Comedy|Drama|Romance +25806,"Barretts of Wimpole Street, The (a.k.a. Forbidden Alliance) (1934)",Drama|Romance +25807,"Black Cat, The (1934)",Adventure|Crime|Horror|Thriller +25808,Imitation of Life (1934),Drama|Romance +25809,"Lawless Frontier, The (1934)",Romance|Western +25810,"Lost Patrol, The (1934)",Adventure|Drama|War +25811,"Merry Widow, The (1934)",Comedy|Musical|Romance +25812,"Scarlet Pimpernel, The (1934)",Adventure|Comedy +25814,Toni (1935),Drama +25816,Bonnie Scotland (Heroes of the Regiment) (1935),Comedy +25818,"Informer, The (1935)",Crime|Drama +25819,Mark of the Vampire (1935),Horror|Mystery +25820,"Raven, The (1935)",Horror +25822,Werewolf of London (1935),Drama|Fantasy|Horror|Sci-Fi +25824,"Crime of Monsieur Lange, The (Le crime de Monsieur Lange) (1936)",Comedy|Crime|Drama +25825,Fury (1936),Drama|Film-Noir +25826,Libeled Lady (1936),Comedy|Romance +25827,Mr. Deeds Goes to Town (1936),Comedy|Romance +25828,"Petrified Forest, The (1936)",Crime|Drama|Romance +25829,Revolt of the Zombies (1936),Horror|War +25830,Show Boat (1936),Comedy|Drama|Musical|Romance +25831,These Three (1936),Drama|Romance +25832,Wife vs. Secretary (1936),Comedy|Drama|Romance +25833,Camille (1936),Drama|Romance +25834,Captains Courageous (1937),Adventure|Drama +25835,Dead End (1937),Crime|Drama +25837,Double Wedding (1937),Comedy|Romance +25839,Nothing Sacred (1937),Comedy|Drama|Romance +25840,"Prisoner of Zenda, The (1937)",Action|Adventure|Romance +25841,Stage Door (1937),Drama +25842,Topper (1937),Comedy|Fantasy|Romance +25843,"Big Broadcast of 1938, The (1938)",Comedy|Musical|Romance +25846,"Dawn Patrol, The (1938)",Drama|War +25850,Holiday (1938),Comedy|Drama|Romance +25851,"Shopworn Angel, The (1938)",Drama|Romance|War +25852,Gaslight (1940),Mystery|Thriller +25854,Intermezzo (1939),Drama|Romance +25855,"Roaring Twenties, The (1939)",Crime|Drama|Thriller +25856,Wuthering Heights (1939),Drama|Romance +25858,"Story of the Late Chrysanthemums, The (Zangiku monogatari) (1939)",Drama +25859,Abe Lincoln in Illinois (1940),Drama +25860,Boom Town (1940),Adventure|Drama|Romance +25861,Brother Orchid (1940),Comedy|Crime|Drama|Romance +25864,"Edison, the Man (1940)",Drama +25865,"Letter, The (1940)",Drama|Film-Noir +25866,"Sea Hawk, The (1940)",Action|Adventure|Romance +25868,Ball of Fire (1941),Comedy|Romance +25869,"47 Ronin, The (Genroku Chûshingura) (1941)",Drama +25870,Here Comes Mr. Jordan (1941),Comedy|Fantasy|Romance +25871,In the Navy (1941),Comedy|Musical +25872,It Started with Eve (1941),Comedy|Musical|Romance +25874,Never Give a Sucker an Even Break (1941),Comedy|Musical +25875,That Uncertain Feeling (1941),Comedy +25878,Across the Pacific (1942),Action|Adventure|Romance|War +25879,All Through the Night (1941),Action|Comedy|Drama|Thriller|War +25881,Gentleman Jim (1942),Comedy|Drama|Romance +25882,"Hard Way, The (1943)",Drama +25884,My Favorite Blonde (1942),Comedy|Romance|Thriller +25885,"Prelude to War (Why We Fight, 1) (1943)",Documentary|War +25886,Random Harvest (1942),Drama|Romance +25887,Tales of Manhattan (1942),Comedy|Drama +25888,Action in the North Atlantic (1943),Action|War +25890,"Guy Named Joe, A (1943)",Drama|Fantasy|Romance|War +25891,Heaven Can Wait (1943),Comedy|Fantasy|Romance +25892,"Heavenly Body, The (1944)",Comedy|Romance +25893,"Memphis Belle: A Story of a Flying Fortress, The (1944)",Documentary|War +25894,Mr. Lucky (1943),Comedy|Romance +25897,Thousands Cheer (1943),Comedy|Drama|Musical +25898,Day of Wrath (Vredens dag) (1943),Drama +25899,Cover Girl (1944),Comedy|Musical +25900,"Curse of the Cat People, The (1944)",Drama +25901,"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)",Drama|War +25902,Torment (Hets) (1944),Drama +25903,"Mask of Dimitrios, The (1944)",Crime|Drama|Film-Noir|Mystery +25904,Ministry of Fear (1944),Drama|Film-Noir|Thriller +25905,"Miracle of Morgan's Creek, The (1944)",Comedy|Romance +25906,Mr. Skeffington (1944),Drama|Romance +25907,Mrs. Parkington (1944),Drama|Romance +25908,Passage to Marseille (1944),Adventure|Drama|War +25910,"White Cliffs of Dover, The (1944)",Drama|Romance|War +25911,"Woman in the Window, The (1944)",Crime|Film-Noir|Thriller +25912,"Enchanted Cottage, The (1945)",Drama|Romance +25913,Isle of the Dead (1945),Horror|Thriller +25914,"Ivan the Terrible, Part One (Ivan Groznyy I) (1944)",Drama +25915,"Southerner, The (1945)",Drama +25916,They Were Expendable (1945),Drama|War +25918,"Tree Grows in Brooklyn, A (1945)",Drama +25919,"Beast with Five Fingers, The (1946)",Horror +25920,"Blue Dahlia, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +25921,"Dark Mirror, The (1946)",Film-Noir|Thriller +25922,Deception (1946),Drama|Film-Noir|Thriller +25923,Great Expectations (1946),Drama +25924,Humoresque (1946),Drama|Romance +25926,Shoeshine (Sciuscià) (1946),Drama +25927,"Stranger, The (1946)",Drama|Film-Noir|Thriller +25928,Mourning Becomes Electra (1947),Drama +25929,Nightmare Alley (1947),Drama|Film-Noir +25930,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller +25931,Road to Rio (1947),Adventure|Comedy|Musical|Romance +25932,"Two Mrs. Carrolls, The (1947)",Crime|Drama|Film-Noir|Thriller +25934,3 Godfathers (1948),Drama|Western +25935,B.F.'s Daughter (1948),Drama|Romance +25936,"Babe Ruth Story, The (1948) ",Drama +25937,Easter Parade (1948),Musical|Romance +25938,Fort Apache (1948),Western +25940,"Lady from Shanghai, The (1947)",Drama|Film-Noir|Mystery +25941,Letter from an Unknown Woman (1948),Drama|Romance +25942,Louisiana Story (1948),Drama +25943,"Naked City, The (1948)",Crime|Drama|Film-Noir|Mystery +25944,"Pirate, The (1948)",Adventure|Comedy|Musical|Romance +25945,They Live by Night (1949),Crime|Film-Noir|Romance +25946,"Three Musketeers, The (1948)",Action|Adventure|Drama|Romance +25947,Unfaithfully Yours (1948),Comedy +25948,Yellow Sky (1948),Crime|Western +25950,"Barkleys of Broadway, The (1949)",Comedy|Musical +25951,In the Good Old Summertime (1949),Musical +25952,"Letter to Three Wives, A (1949)",Comedy|Drama +25954,Orpheus (Orphée) (1950),Drama|Fantasy|Romance +25956,"Secret Garden, The (1949)",Children|Drama +25957,"Story of Seabiscuit, The (1949)",Drama|Romance +25959,Annie Get Your Gun (1950),Comedy|Musical|Romance|Western +25960,"Terrible Kids (Enfants terribles, Les) (Strange Ones, The) (1950)",Drama +25961,"Gunfighter, The (1950)",Action|Western +25962,King Solomon's Mines (1950),Action|Adventure|Romance +25963,"Young and the Damned, The (Olvidados, Los) (1950)",Crime|Drama +25964,Scandal (Shubun) (1950),Drama +25965,Summer Stock (1950),Comedy|Musical|Romance +25966,"Greatest Love, The (Europa '51) (1952)",Drama +25970,Carbine Williams (1952),Crime|Drama +25971,Carrie (1952),Drama|Romance +25972,Clash by Night (1952),Drama|Film-Noir +25974,"Prisoner of Zenda, The (1952)",Adventure +25975,"Life of Oharu, The (Saikaku ichidai onna) (1952)",Drama +25976,Son of Paleface (1952),Action|Comedy|Romance|Western +25977,Abbott and Costello Meet Dr. Jekyll and Mr. Hyde (1953),Comedy|Horror|Sci-Fi +25979,Gun Fury (1953),Action|Adventure|Crime|Western +25980,Gate of Hell (Jigokumon) (1953),Drama|Romance +25981,Man on a Tightrope (1953),Drama +25984,"Titfield Thunderbolt, The (1953)",Comedy +25986,"Belles of St. Trinian's, The (1954)",Comedy +25987,"Crucified Lovers, The (Chikamatsu monogatari) (1954)",Drama +25989,French Cancan (1954),Comedy|Drama|Musical|Romance +25990,It Should Happen to You (1954),Comedy|Romance +25991,"Long, Long Trailer, The (1953)",Comedy|Romance +25993,Magnificent Obsession (1954),Drama|Romance +25994,Salt of the Earth (1954),Drama +25995,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama +25996,"Star Is Born, A (1954)",Drama|Musical +25998,Three Coins in the Fountain (1954),Drama|Romance +25999,The Wild One (1953),Drama +26000,"Cobweb, The (1955)",Drama +26001,It's Always Fair Weather (1955),Comedy|Drama|Musical +26002,Confidential Report (1955),Crime|Drama|Mystery|Thriller +26003,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War +26005,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama +26006,"Seven Little Foys, The (1955)",Comedy|Drama +26007,"Unknown Soldier, The (Tuntematon sotilas) (1955)",Drama|War +26008,Anything Goes (1956),Musical +26009,"Burmese Harp, The (Biruma no tategoto) (1956)",Drama|War +26010,Carousel (1956),Musical|Romance +26012,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama +26013,Rodan (Sora no daikaijû Radon) (1956),Adventure +26016,All at Sea (1957),Comedy +26018,Chase a Crooked Shadow (1958),Crime|Film-Noir|Mystery|Thriller +26019,Fiend Without a Face (1958),Horror|Sci-Fi|Thriller +26021,Jailhouse Rock (1957),Crime|Drama|Musical|Romance +26022,Man of a Thousand Faces (1957),Drama +26025,"Spirit of St. Louis, The (1957)",Adventure|Drama +26026,"Undead, The (1957)",Fantasy|Horror +26027,Zero Hour! (1957),Drama|Thriller +26028,Carve Her Name with Pride (1958),Drama|War +26030,Corridors of Blood (1958),Crime|Drama|Horror|Thriller +26033,Giants and Toys (Kyojin to gangu) (1958),Comedy|Drama +26034,"Last Hurrah, The (1958)",Drama +26035,Machine Gun Kelly (1958),Action|Crime +26038,Teacher's Pet (1958),Comedy|Romance +26042,Torpedo Run (1958),Drama|War +26043,"Vikings, The (1958)",Action|Adventure +26044,Al Capone (1959),Crime|Drama +26046,Picnic on the Grass (Le déjeuner sur l'herbe) (1959),Comedy|Romance +26047,Invisible Invaders (1959),Horror|Sci-Fi +26048,"Human Condition II, The (Ningen no joken II) (1959)",Drama|War +26049,Fires on the Plain (Nobi) (1959),Drama|War +26050,North West Frontier (1959),Adventure|Drama|War +26051,"Nun's Story, The (1959)",Drama +26052,Pickpocket (1959),Crime|Drama +26055,Floating Weeds (Ukigusa) (1959),Drama +26056,"Young Philadelphians, The (1959)",Drama +26058,"Leech Woman, The (1960)",Horror|Sci-Fi +26059,When a Woman Ascends the Stairs (Onna ga kaidan wo agaru toki) (1960),Drama +26062,"Sundowners, The (1960)",Adventure|Drama +26063,Sunrise at Campobello (1960),Drama +26064,"Bad Sleep Well, The (Warui yatsu hodo yoku nemuru) (1960)",Drama|Thriller +26066,Bachelor in Paradise (1961),Comedy|Romance +26067,"Deadly Companions, The (1961)",Western +26068,"4 Horsemen of the Apocalypse, The (1962)",Drama +26070,"Intruder, The (1962)",Drama +26072,Murder She Said (1961),Comedy|Crime|Drama|Mystery +26073,"Human Condition III, The (Ningen no joken III) (1961)",Drama|War +26074,Paris Blues (1961),Drama|Romance +26076,Scream of Fear (a.k.a. Taste of Fear) (1961),Horror|Mystery|Thriller +26078,Advise and Consent (1962),Drama +26079,David and Lisa (1962),Drama +26080,Eegah (1962),Fantasy|Horror|Romance|Thriller +26082,Harakiri (Seppuku) (1962),Drama +26083,"Loneliness of the Long Distance Runner, The (1962)",Drama +26084,"Music Man, The (1962)",Children|Comedy|Musical|Romance +26085,Mutiny on the Bounty (1962),Adventure|Drama|Romance +26086,"Occurrence at Owl Creek Bridge, An (La rivière du hibou) (1962)",Drama|War +26088,"Four Days of Naples, The (Le quattro giornate di Napoli) (1962)",Drama|War +26090,"Easy Life, The (Il Sorpasso) (1962)",Comedy|Drama +26093,"Wonderful World of the Brothers Grimm, The (1962)",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance +26094,"Eclisse, L' (Eclipse) (1962)",Drama +26095,"Carabineers, The (Carabiniers, Les) (1963)",Comedy|Drama|War +26096,"Cardinal, The (1963)",Drama +26098,"Incredibly Strange Creatures Who Stopped Living and Became Mixed-Up Zombies!!?, The (1964)",Horror|Mystery +26099,"Kiss of the Vampire, The (1963)",Horror +26100,Love with the Proper Stranger (1963),Comedy|Drama|Romance +26101,McLintock! (1963),Comedy|Western +26104,Murder at the Gallop (1963),Comedy|Crime|Drama|Mystery|Thriller +26106,"New Kind of Love, A (1963)",Comedy +26107,"Prize, The (1963)",Drama|Mystery|Thriller +26108,Sunday in New York (1963),Comedy|Romance +26109,Crooks in Clover (a.k.a. Monsieur Gangster) (Les tontons flingueurs) (1963),Action|Comedy|Crime +26110,36 Hours (1965),Thriller|War +26111,Becket (1964),Drama +26112,Behold a Pale Horse (1964),Drama|War +26113,"Best Man, The (1964)",Comedy|Drama +26116,"Hush... Hush, Sweet Charlotte (1964)",Horror|Thriller +26117,"Killers, The (1964)",Action|Crime|Drama|Film-Noir|Thriller +26119,"Naked Kiss, The (1964)",Drama +26122,Onibaba (1964),Drama|Horror|War +26123,Robin and the 7 Hoods (1964),Comedy|Crime|Musical +26124,Robinson Crusoe on Mars (1964),Sci-Fi +26125,"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)",Comedy|Horror +26127,"Visit, The (1964)",Drama +26128,What a Way to Go! (1964),Comedy|Musical|Romance +26130,Docking the Boat (Att angöra en brygga) (1965),Comedy|Drama|Romance +26131,"Battle of Algiers, The (La battaglia di Algeri) (1966)",Drama|War +26133,"Charlie Brown Christmas, A (1965)",Animation|Children|Comedy +26134,Dracula: Prince of Darkness (1966),Horror|Mystery +26136,"Hallelujah Trail, The (1965)",Comedy|Western +26137,"Heroes of Telemark, The (1965) ",Action|Drama|War +26138,"Hill, The (1965)",Drama|War +26139,In Harm's Way (1965),Drama|War +26140,Incubus (1966),Horror +26141,"Loved One, The (1965)",Comedy +26142,Major Dundee (1965),Adventure|War|Western +26144,Operation Crossbow (1965),Action|Adventure|War +26146,Ride in the Whirlwind (1965),Western +26147,"Thousand Clowns, A (1965)",Comedy|Drama|Romance +26148,"Train, The (1964)",Action|Thriller|War +26150,Andrei Rublev (Andrey Rublyov) (1969),Drama|War +26151,Au Hasard Balthazar (1966),Crime|Drama +26152,Batman (1966),Action|Adventure|Comedy +26153,Grand Prix (1966),Drama +26155,Khartoum (1966),Action|Adventure|Drama|War +26156,Dragon Gate Inn (Dragon Inn) (Long men kezhan) (1967),Action|Adventure +26157,Manos: The Hands of Fate (1966),Horror +26158,Closely Watched Trains (Ostre sledované vlaky) (1966),Comedy|Drama|War +26159,Tokyo Drifter (Tôkyô nagaremono) (1966),Action|Crime|Drama +26160,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy +26162,Gappa: The Triphibian Monsters (AKA Monster from a Prehistoric Planet) (Daikyojû Gappa) (1967),Sci-Fi +26163,Don't Look Back (1967),Documentary|Musical +26164,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy +26167,The Incident (1967),Crime|Drama +26169,Branded to Kill (Koroshi no rakuin) (1967),Action|Crime|Drama +26170,"Bride Wore Black, The (La mariée était en noir) (1968)",Crime|Drama +26171,Play Time (a.k.a. Playtime) (1967),Comedy +26172,Point Blank (1967),Action|Crime|Drama|Thriller +26174,The Shooting (1966),Western +26175,"St. Valentine's Day Massacre, The (1967)",Crime|Drama +26176,Titicut Follies (1967),Documentary|Drama +26177,Tony Rome (1967),Crime|Drama|Thriller +26178,Two for the Road (1967),Comedy|Drama|Romance +26180,Up the Down Staircase (1967),Drama +26181,"War Wagon, The (1967)",Action|Western +26183,Asterix and Cleopatra (Astérix et Cléopâtre) (1968),Action|Adventure|Animation|Children|Comedy +26184,"Diamond Arm, The (Brilliantovaya ruka) (1968)",Action|Adventure|Comedy|Crime|Thriller +26185,Dracula Has Risen from the Grave (1968),Horror|Romance|Thriller +26187,Head (1968),Comedy|Fantasy|Musical +26188,"Heart Is a Lonely Hunter, The (1968)",Drama +26189,"I Love You, Alice B. Toklas! (1968)",Comedy +26191,Petulia (1968),Drama +26194,"Subject Was Roses, The (1968)",Drama +26195,Sympathy for the Devil (1968),Documentary|Musical +26197,War and Peace (Voyna i mir) (1967),Drama|Romance|War +26198,"Yours, Mine and Ours (1968)",Children|Comedy +26199,Alice's Restaurant (1969),Comedy|Drama +26203,Colossus: The Forbin Project (1970),Sci-Fi|Thriller +26204,Death Rides a Horse (Da uomo a uomo) (1967),Action|Western +26205,"Goodbye, Mr. Chips (1969)",Drama|Musical|Romance +26206,Journey to the Far Side of the Sun (a.k.a. Doppelgänger) (1969),Fantasy|Mystery|Sci-Fi|Thriller +26207,Last Summer (1969),Drama +26208,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance +26209,"Magic Christian, The (1969)",Comedy +26210,Marlowe (1969),Crime|Drama|Mystery +26211,More (1969),Crime|Drama|Romance +26213,"Reivers, The (1969)",Comedy|Drama +26214,Taste the Blood of Dracula (1970),Horror +26215,"Joke, The (Zert) (1969)",Drama +26216,...tick... tick... tick... (1970),Action|Drama +26219,Brewster McCloud (1970),Comedy +26220,"Violent City (Family, The) (Città violenta) (1970)",Action|Crime|Drama +26221,Dirty Dingus Magee (1970),Comedy|Western +26222,Dodes'ka-den (Clickety-Clack) (1970),Drama|Fantasy +26223,Gamera vs. Jiger (1970),Action|Fantasy|Sci-Fi +26225,"Claire's Knee (Genou de Claire, Le) (1970)",Comedy|Romance +26226,"Hi, Mom! (1970)",Comedy +26227,House of Dark Shadows (1970),Drama|Horror|Romance +26228,"Swedish Love Story, A (Kärlekshistoria, En) (1970)",Drama|Romance +26229,"Landlord, The (1970)",Comedy|Drama +26230,On a Clear Day You Can See Forever (1970),Comedy|Musical|Romance +26231,Performance (1970),Crime|Drama|Thriller +26232,Rejs (1970),Comedy +26235,Long Live Death (Viva la muerte) (1971),Drama|War +26236,"White Sun of the Desert, The (Beloe solntse pustyni) (1970)",Action|Adventure|Comedy|Drama|Romance|War +26237,Zabriskie Point (1970),Drama|Romance +26240,"Beguiled, The (1971)",Drama|Thriller|War +26241,The Devils (1971),Drama +26242,Duel (1971),Action|Mystery|Thriller +26243,Evil Roy Slade (1972),Comedy|Western +26245,"Go-Between, The (1970)",Drama|Romance +26246,Johnny Got His Gun (1971),Drama|War +26247,Lawman (1971),Western +26248,Let's Scare Jessica to Death (1971),Horror|Mystery +26249,They Call Me Trinity (1971),Comedy|Western +26251,Mon Oncle Antoine (1971),Drama +26252,"New Leaf, A (1971)",Comedy|Romance +26253,Nicholas and Alexandra (1971),Drama|War +26254,Von Richthofen and Brown (1971),Action|Drama|War +26255,Scars of Dracula (1970),Horror +26256,Support Your Local Gunfighter (1971),Comedy|Romance|Western +26257,Sweet Sweetback's Baadasssss Song (1971),Crime|Drama|Thriller +26258,"Topo, El (1970)",Fantasy|Western +26259,"Emigrants, The (Utvandrarna) (1971)",Drama +26263,Fiend with the Electronic Brain (Blood of Ghastly Horror) (1972),Horror|Sci-Fi +26264,Brother John (1971),Drama|Sci-Fi +26265,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance +26266,Dracula A.D. 1972 (1972),Horror|Thriller +26267,Get to Know Your Rabbit (1972),Comedy +26268,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery +26269,Lone Wolf and Cub: Sword of Vengeance (Kozure Ôkami: Kowokashi udekashi tsukamatsuru) (1972),Action|Crime +26270,Lone Wolf and Cub: Baby Cart at the River Styx (Kozure Ôkami: Sanzu no kawa no ubaguruma) (1972),Action|Adventure +26271,Lady Sings the Blues (1972),Drama|Musical +26274,Payday (1973),Drama +26277,Slither (1973),Comedy|Crime|Thriller +26280,Traffic (Trafic) (1971),Comedy +26282,"Mad Adventures of Rabbi Jacob, the (Les Aventures de Rabbi Jacob) (1973)",Comedy +26283,Charley Varrick (1973),Crime|Drama|Thriller +26285,Dark Star (1974),Comedy|Sci-Fi|Thriller +26287,"Delicate Balance, A (1973)",Drama +26288,Dracula (1973),Horror +26289,Emperor of the North (Emperor of the North Pole) (1973),Action|Drama|Thriller +26290,Executive Action (1973),Crime|Drama +26291,"Glass Menagerie, The (1973)",Drama +26294,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western +26295,Invasion of the Bee Girls (1973),Horror|Mystery|Sci-Fi +26297,Lemora: A Child's Tale of the Supernatural (1973),Horror +26299,Phase IV (1974),Horror|Sci-Fi|Thriller +26301,Save the Tiger (1973),Drama +26302,Scarecrow (1973),Drama +26303,Sisters (1973),Horror|Thriller +26304,"Spook Who Sat by the Door, The (1973)",Action|Crime|Drama +26306,Theatre of Blood (1973),Comedy|Horror|Mystery +26307,Five Fingers of Death (1972),Action|Drama|Romance +26308,Turkish Delight (Turks fruit) (1973),Drama|Romance +26309,Walking Tall (1973),Action|Crime|Drama|Thriller +26312,Butley (1974),Drama +26313,California Split (1974),Comedy|Drama +26314,"Cars That Ate Paris, The (1974)",Comedy|Horror|Thriller +26315,Conrack (1974),Drama +26316,Let Sleeping Corpses Lie (Non si deve profanare il sonno dei morti) (1974),Horror +26317,Emmanuelle (1974),Drama|Romance +26318,"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)",Comedy|Drama +26320,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi +26321,Général Idi Amin Dada: A Self Portrait (Général Idi Amin Dada: Autoportrait) (1974),Documentary|War +26322,Gone in 60 Seconds (1974),Action|Crime|Drama +26323,"Groove Tube, The (1974)",Comedy +26324,Harry and Tonto (1974),Comedy|Drama +26325,Hearts and Minds (1974),Documentary|War +26326,"Holy Mountain, The (Montaña sagrada, La) (1973)",Drama +26327,"Little Prince, The (1974)",Children|Musical|Sci-Fi +26333,"Terminal Man, The (1974)",Sci-Fi|Thriller +26334,Thieves Like Us (1974),Crime|Drama|Romance +26336,"Adventure of Sherlock Holmes' Smarter Brother, The (1975)",Comedy|Crime|Mystery +26337,"Adventures of the Wilderness Family, The (1975)",Adventure|Children|Drama +26338,Cousin cousine (1975),Comedy|Romance +26339,Dolemite (1975),Action|Comedy|Crime|Mystery|Thriller +26340,"Twelve Tasks of Asterix, The (Les douze travaux d'Astérix) (1976)",Action|Adventure|Animation|Children|Comedy|Fantasy +26341,Emmanuelle 2 (1975),Drama +26342,"Farewell, My Lovely (1975)",Crime|Mystery|Thriller +26343,"Fortune, The (1975)",Comedy|Crime|Romance +26344,French Connection II (1975),Action|Crime|Drama|Thriller +26345,"Great Waldo Pepper, The (1975)",Drama|Romance +26346,"Story of Adele H., The (Histoire d'Adèle H., L') (1975)",Drama +26347,"Irony of Fate, or Enjoy Your Bath! (Ironiya sudby, ili S legkim parom!) (1975)",Comedy|Drama|Romance +26349,Night Moves (1975),Crime|Thriller +26350,"Passenger, The (Professione: reporter) (1975)",Drama +26353,"Hand of Death, The (Shao Lin men) (1976)",Action +26354,Sister Street Fighter (Onna hissatsu ken) (1974),Action|Drama +26356,Supervixens (1975),Comedy|Thriller +26357,Trilogy of Terror (1975),Horror|Thriller +26359,1900 (Novecento) (1976),Drama|War +26360,"Small Change (Argent de poche, L') (1976)",Comedy|Drama +26362,Twenty Days Without War (Dvadtsat dney bez voyny) (1981),Drama|Romance|War +26364,From Noon Till Three (1976),Comedy|Romance|Western +26365,Futureworld (1976),Sci-Fi|Thriller +26366,Harlan County U.S.A. (1976),Documentary +26368,"Marquise of O, The (Marquise von O..., Die) (1976)",Drama +26369,Maîtresse (Mistress) (1975),Drama|Romance +26370,"Message, The (a.k.a. Mohammad: Messenger of God) (1976)",Adventure|Drama|War +26371,The Missouri Breaks (1976),Drama|Western +26372,"Slave of Love, A (Raba lyubvi) (1976)",Drama|Romance +26375,Silver Streak (1976),Action|Comedy|Crime +26377,Up! (1976),Comedy +26378,Who Can Kill a Child? (a.k.a. Island of the Damned) (¿Quién puede matar a un niño?) (1976),Horror|Mystery|Thriller +26379,Jesus of Nazareth (1977),Drama +26380,ABBA: The Movie (1977),Musical +26383,Demon Seed (1977),Horror|Sci-Fi|Thriller +26386,High Anxiety (1977),Comedy|Thriller +26387,"Man Who Loved Women, The (Homme qui aimait les femmes, L') (1977)",Comedy|Drama|Romance +26388,"Hound of the Baskervilles, The (1978)",Comedy|Crime|Mystery +26389,"Hell Without Limits (Lugar sin límites, El) (1978)",Drama +26391,"New York, New York (1977)",Drama|Musical|Romance +26392,Providence (1977),Drama +26393,Sorcerer (1977),Action|Thriller +26394,"Turning Point, The (1977)",Drama|Romance +26395,"Rutles: All You Need Is Cash, The (1978)",Comedy +26397,Brass Target (1978),Action|Drama|Mystery|Thriller +26398,Capricorn One (1978),Drama|Sci-Fi|Thriller +26399,Five Deadly Venoms (1978),Action +26400,Gates of Heaven (1978),Documentary +26401,Last Hurrah for Chivalry (Hao xia) (1979),Action|Drama +26402,Harper Valley P.T.A. (1978),Comedy +26403,"Hobbit, The (1977)",Animation|Children|Fantasy +26404,In Praise of Older Women (1978),Drama +26409,"Clonus Horror, The (1979)",Horror|Sci-Fi +26410,"Grapes of Death, The (Raisins de la mort, Les) (1978)",Horror +26411,"Adventures of Picasso, The (Picassos äventyr) (1978)",Comedy +26413,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy +26414,"Wedding, A (1978)",Comedy|Drama +26416,Best Boy (1979),Documentary +26417,French Fried Vacation 2 (Les bronzés font du ski) (1979),Comedy +26418,Buffet froid (1979),Comedy|Crime +26422,Hair (1979),Comedy|Drama|Musical +26424,I as in Icarus (I... comme Icare) (1979),Thriller +26425,"In-Laws, The (1979)",Action|Comedy +26429,Love at First Bite (1979),Comedy|Horror|Romance +26430,"Luna, La (1979)",Drama +26431,Opening Night (1977),Drama +26432,Quintet (1979),Mystery|Sci-Fi +26433,Rockers (1978),Comedy|Drama|Musical +26435,Starting Over (1979),Comedy|Romance +26436,Barnens ö (1980),Adventure|Children|Drama +26438,Defiance (1980),Action|Crime|Drama +26444,"Hitch Hikers Guide to the Galaxy, The (1981)",Adventure|Comedy|Sci-Fi +26446,Genocide (1982),Documentary +26448,Pelle Svanslös (1981),Animation|Children +26450,Treasure of the Yankee Zephyr (1981),Action|Adventure|Drama +26452,"Blue and the Gray, The (1982)",Drama|War +26453,Smiley's People (1982),Drama|Mystery +26459,"Scarlet Pimpernel, The (1982)",Action|Drama|Romance +26462,Bad Boys (1983),Crime|Drama|Thriller +26463,Barefoot Gen (Hadashi no Gen) (1983),Animation|Drama|War +26464,Blue Thunder (1983),Action|Crime|Drama +26465,D.C. Cab (1983),Action|Comedy +26467,"Day After, The (1983)",Drama|Sci-Fi +26468,Deal of the Century (1983),Comedy +26470,Doctor Detroit (1983),Comedy +26471,Eddie Murphy Delirious (1983),Comedy|Documentary +26472,"Norte, El (1984)",Adventure|Drama +26475,Lianna (1983),Drama|Romance +26476,Merry Christmas Mr. Lawrence (1983),Drama|War +26479,"Pirates of Penzance, The (1983)",Adventure|Comedy|Musical|Romance +26480,"Raiders of Atlantis, The (1983)",Action|Mystery|Sci-Fi +26481,First Name: Carmen (Prénom Carmen) (1983),Crime|Drama|Romance +26483,Rock & Rule (1983),Animation|Fantasy|Musical|Sci-Fi +26484,Sugar Cane Alley (Rue cases nègres) (1983),Drama +26485,Rumble Fish (1983),Drama +26486,"Makioka Sisters, The (Sasame-yuki) (1983)",Drama|Romance +26487,Star 80 (1983),Drama +26488,"Star Chamber, The (1983)",Action|Crime|Drama|Thriller +26489,Strange Invaders (1983),Drama|Romance|Sci-Fi +26490,Stroker Ace (1983),Action|Comedy|Romance +26491,To Be or Not to Be (1983),Comedy|Romance|War +26492,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller +26493,"4th Man, The (Fourth Man, The) (Vierde man, De) (1983)",Drama|Mystery|Thriller +26494,Suburbia (1984),Drama +26495,Yellowbeard (1983),Action|Adventure|Comedy +26496,One Deadly Summer (L'été meurtrier) (1983),Comedy|Drama|Mystery +26497,Another Country (1984),Drama|Romance +26498,Boy Meets Girl (1984),Drama +26501,Choose Me (1984),Comedy|Romance +26502,"Christmas Carol, A (1984)",Drama|Fantasy +26504,Cloak & Dagger (1984),Action|Adventure|Children|Crime|Mystery|Thriller +26505,Comfort and Joy (1984),Comedy +26507,Dangerous Moves (La diagonale du fou) (1984),Drama|Thriller +26509,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi +26510,"Ewok Adventure, The (a.k.a. Caravan of Courage: An Ewok Adventure) (1984)",Adventure|Children|Fantasy|Sci-Fi +26512,"Hit, The (1984)",Crime|Drama|Thriller +26513,"Ice Pirates, The (1984)",Action|Adventure|Comedy|Sci-Fi +26514,Irreconcilable Differences (1984),Comedy|Drama|Romance +26515,"Last Polka, The (1985)",Comedy|Musical +26519,Next of Kin (1984),Comedy|Drama +26520,Full Moon in Paris (Les nuits de la pleine lune) (1984),Drama|Romance +26521,Racing with the Moon (1984),Comedy|Drama|Romance +26523,"Silent Night, Deadly Night (1984)",Horror|Thriller +26524,"Times of Harvey Milk, The (1984)",Documentary +26526,Drunken Tai Chi (Siu taai gik) (1984),Action|Comedy +26527,What Have I Done to Deserve This? (¿Qué he hecho yo para merecer esto!!) (1984),Comedy|Drama +26528,Anne of Green Gables (1985),Children|Drama +26529,Asterix vs. Caesar (Astérix et la surprise de César) (1985),Adventure|Animation|Children|Comedy +26530,Barbarian Queen (1985),Action|Adventure|Fantasy +26532,Beer (1985),Comedy +26536,Bliss (1985),Comedy|Drama +26538,Creator (1985),Comedy|Drama|Romance +26539,Death of a Salesman (1985),Drama +26540,Demons (Dèmoni) (1985),Horror +26542,Ewoks: The Battle for Endor (1985),Adventure|Children|Fantasy|Sci-Fi +26544,Heaven Help Us (1985),Comedy|Drama +26546,Mr. Vampire (Geung si sin sang) (1985),Comedy|Fantasy|Horror +26547,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller +26550,Mishima: A Life in Four Chapters (1985),Drama +26551,Nine Deaths of the Ninja (1985),Action +26553,Pelle Svanslös i Amerikatt (1985),Animation|Children +26554,"Quiet Earth, The (1985)",Drama|Mystery|Sci-Fi +26555,Spies Like Us (1985),Comedy +26558,"Stuff, The (1985)",Comedy|Horror|Mystery|Sci-Fi +26559,Target (1985),Action|Drama|Thriller +26560,"Unknown Soldier, The (Tuntematon sotilas) (1985)",Drama|War +26561,Vision Quest (1985),Drama|Romance +26562,White Nights (1985),Drama +26564,'Round Midnight (1986),Drama|Musical +26565,Asterix in Britain (Astérix chez les Bretons) (1986),Adventure|Animation|Children|Comedy +26566,"Best of Times, The (1986)",Comedy|Drama +26567,Club Paradise (1986),Comedy +26569,Dead End Drive-In (1986),Action|Drama|Horror|Sci-Fi|Thriller +26571,Flodder (1986),Comedy +26574,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama +26577,Nobody's Fool (1986),Comedy|Romance +26578,"Sacrifice, The (Offret - Sacraficatio) (1986)",Drama +26580,"Park Is Mine, The (1986)",Action|Drama|Thriller +26581,Sherman's March (1985),Documentary +26582,Solarbabies (1986),Action|Drama|Sci-Fi +26585,"Better Tomorrow, A (Ying hung boon sik) (1986)",Crime|Drama|Thriller +26587,"Decalogue, The (Dekalog) (1989)",Crime|Drama|Romance +26589,Dragons Forever (1988),Action|Comedy|Romance +26590,G.I. Joe: The Movie (1987),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +26593,Hell Comes to Frogtown (1988),Action|Comedy|Sci-Fi +26596,Where Is the Friend's Home? (Where Is My Friend's House?) (Khane-ye doust kodjast?) (1987),Drama +26597,Leif (1987),Comedy|Musical +26599,"Law of Desire (Ley del deseo, La) (1987)",Comedy|Drama|Romance +26600,Malone (1987),Action|Drama|Thriller +26602,Pathfinder (Ofelas) (1987),Action|Adventure|Drama +26603,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller +26606,"Chinese Ghost Story, A (Sinnui yauwan) (1987)",Action|Fantasy|Horror|Romance +26608,Street Smart (1987),Crime|Drama +26610,Weeds (1987),Drama +26611,"Whales of August, The (1987)",Drama +26612,"Better Tomorrow II, A (Ying hung boon sik II) (1987)",Crime|Drama|Thriller +26613,Ashik Kerib (1988),Drama|Romance +26614,"Bourne Identity, The (1988)",Action|Adventure|Drama|Mystery|Thriller +26615,Cannibal Women in the Avocado Jungle of Death (1989),Action|Comedy +26616,Cobra Verde (1987),Adventure|Drama +26617,Comic Book Confidential (1988),Documentary +26622,Dominick and Eugene (1988),Drama +26628,Jack's Back (1988) ,Crime|Horror|Mystery|Thriller +26629,Killer Klowns from Outer Space (1988),Comedy|Horror|Sci-Fi +26630,Moonwalker (1988),Musical +26631,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery +26634,Pascali's Island (1988),Drama +26638,Prison (1988),Crime|Drama|Horror|Thriller +26641,Split Decisions (1988),Action|Drama +26643,Tales from the Gimli Hospital (1988),Fantasy|Horror +26644,Landscape in the Mist (Topio stin omichli) (1988),Drama +26645,Life Is a Long Quiet River (La vie est un long fleuve tranquille) (1988),Comedy +26647,"World Apart, A (1988)",Drama +26649,Lonesome Dove (1989),Adventure|Drama|Western +26655,Common Threads: Stories from the Quilt (1989),Documentary +26662,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy +26663,Monsieur Hire (1989),Crime|Romance|Thriller +26664,Moon 44 (1990),Action|Film-Noir|Sci-Fi|Thriller +26670,Rikyu (1989),Drama +26672,Speaking Parts (1989),Drama +26674,Prime Suspect (1991),Crime|Drama|Mystery|Thriller +26675,Boiling Point (3-4 x jûgatsu) (1990),Action|Comedy|Crime +26676,Almost an Angel (1990),Comedy +26677,Black Rainbow (1989),Thriller +26680,Cry-Baby (1990),Comedy|Musical|Romance +26681,Bullet in the Head (1990),Action|Drama|War +26682,Downtown (1990),Action|Comedy +26684,Frankenhooker (1990),Comedy|Horror +26685,"Garden, The (1990)",Drama +26686,Ghost Dad (1990),Comedy|Fantasy +26688,Hard to Kill (1990),Action|Crime|Drama +26689,Havana (1990),Drama +26690,Shipwrecked (a.k.a. Haakon Haakonsen) (1990),Adventure|Children +26691,I Hired a Contract Killer (1990),Comedy|Drama +26693,It (1990),Drama|Fantasy|Horror|Mystery|Thriller +26694,Ju Dou (1990),Drama +26695,"Krays, The (1990)",Drama +26696,Lionheart (1990),Action +26698,Narrow Margin (1990),Crime|Thriller +26699,Close-Up (Nema-ye Nazdik) (1990),Drama +26700,Nuns on the Run (1990),Comedy|Crime +26701,Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989),Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller +26702,"Reflecting Skin, The (1990)",Drama|Horror|Thriller +26703,Riff-Raff (1991),Comedy|Drama +26704,State of Grace (1990),Crime|Drama|Thriller +26707,Tatie Danielle (1990),Comedy|Drama +26708,Time to Kill (Tempo di uccidere) (1989),Drama|War +26710,"Welcome Home, Roxy Carmichael (1990)",Comedy|Drama +26712,35 Up (1991),Documentary +26713,Days of Being Wild (A Fei jingjyuhn) (1990),Drama|Romance +26714,Across the Tracks (1991),Drama +26717,Begotten (1990),Drama|Horror +26718,Life On A String (Bian chang Bian Zou) (1991),Adventure|Drama|Fantasy|Musical +26719,Cadence (1990),Drama +26720,Closet Land (1991),Drama|Thriller +26723,Delusion (1991),Crime|Drama|Thriller +26724,Dollman (1991),Action|Comedy|Crime +26726,Dutch (1991),Comedy +26728,Guilty by Suspicion (1991),Drama +26729,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary +26730,High Strung (1991),Comedy +26731,Homicide (1991),Crime|Drama|Thriller +26732,Johnny Stecchino (1991),Comedy +26734,"Kiss Before Dying, A (1991)",Thriller +26736,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller +26737,Light Sleeper (1992),Crime|Drama +26738,"Linguini Incident, The (1991)",Comedy|Crime +26741,Mannequin 2: On the Move (1991),Comedy|Fantasy|Romance +26743,Only Yesterday (Omohide poro poro) (1991),Animation|Drama +26744,Once Around (1991),Drama +26745,Other People's Money (1991),Comedy|Drama|Romance +26746,Out for Justice (1991),Action|Crime|Drama|Thriller +26749,Prospero's Books (1991),Drama|Fantasy +26750,Quigley Down Under (1990),Adventure|Drama|Western +26751,Rubin and Ed (1991),Comedy|Drama +26752,Shout (1991),Drama +26754,"Stationmaster Is on Fire - The Movie, That Is!, The (Stinsen brinner... filmen alltså) (1991)",Comedy|Musical +26755,Stone Cold (1991),Action|Crime +26756,Strangers in Good Company (1990),Drama +26757,Surviving Desire (1991),Comedy|Drama|Romance +26758,All the Mornings of the World (Tous les matins du monde) (1991),Drama|Romance +26759,Assassin of the Tsar (1991),Drama +26760,Wild Hearts Can't Be Broken (1991),Drama|Romance +26761,Prime Suspect 2 (1992),Crime|Drama|Mystery|Romance|Thriller +26762,Aileen Wuornos: The Selling of a Serial Killer (1993),Documentary +26763,Barbarian Queen II: The Empress Strikes Back (1990),Action|Adventure|Fantasy +26764,Captain America (1990),Action|Fantasy|Sci-Fi|Thriller|War +26765,City Hunter (Sing si lip yan) (1993),Action|Comedy|Romance +26766,"Oak, The (Balanta) (1992)",Comedy|Drama +26767,Citizen Cohn (1992),Drama +26769,Crossing the Bridge (1992),Comedy|Drama +26770,Diggstown (1992),Drama +26774,Innocent Blood (1992),Comedy|Horror +26775,Johnny Suede (1991),Comedy|Musical|Romance +26776,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance +26777,"Stolen Children (Ladro di bambini, Il) (1992)",Drama +26778,Ladybugs (1992),Comedy +26782,"Mambo Kings, The (1992)",Drama|Musical +26784,Night and the City (1992),Crime|Drama +26788,"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)",Comedy|Drama +26791,Shining Through (1992),Drama|Romance|Thriller|War +26792,Sidekicks (1992),Action|Adventure|Children|Comedy +26793,Tito and Me (Tito i ja) (1992),Comedy +26796,"Heart in Winter, A (Un coeur en hiver) (1992)",Drama|Romance +26797,Visions of Light: The Art of Cinematography (1992),Documentary +26801,Dragon Inn (Sun lung moon hak chan) (1992),Action +26802,And Life Goes On (a.k.a. Life and Nothing More) (Zendegi va digar hich) (1992),Drama +26803,House of Angels (Änglagård) (1992),Comedy|Drama +26804,Return to Lonesome Dove (1993),Drama|Western +26806,American Ninja 5 (1993),Action +26809,"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)",Drama +26810,Bad Boy Bubby (1993),Drama +26811,"Bride with White Hair, The (Bai fa mo nu zhuan) (1993)",Action|Fantasy|Romance +26812,Barbarians at the Gate (1993),Drama +26813,Calendar (1993),Drama +26814,Cyborg 2: Glass Shadow (1993),Action|Sci-Fi|Thriller +26815,Deadly Advice(1994),Comedy|Drama +26818,"Legend II, The (Fong Sai Yuk juk jaap) (1993)",Action|Adventure|Comedy +26819,Fortress (1992),Action|Sci-Fi +26822,The Puppetmaster (1993),Drama|War +26825,Josh and S.A.M. (1993),Adventure|Comedy|Drama +26826,Latcho Drom (1993),Documentary|Musical +26827,Leningrad Cowboys Meet Moses (1994),Adventure|Comedy +26828,Mr. Nanny (1993),Action|Children|Comedy +26831,"Night We Never Met, The (1993)",Comedy|Romance +26834,Philadelphia Experiment II (1993),Action|Adventure|Sci-Fi +26835,"Positively True Adventures of the Alleged Texas Cheerleader-Murdering Mom, The (1993)",Comedy|Thriller +26838,"Snapper, The (1993)",Comedy|Drama +26840,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama +26841,Splitting Heirs (1993),Comedy +26842,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama +26843,Three of Hearts (1993),Comedy|Romance +26849,"Stand, The (1994)",Adventure|Drama|Fantasy|Horror|Sci-Fi +26850,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama +26851,Naked Killer (Chik loh go yeung) (1992),Action|Crime|Drama|Thriller +26853,"Dark Angel: Ascent, The (1994)",Horror|Romance +26854,"Darkman II: Return of Durant, The (1995)",Action|Crime|Horror +26856,Embrace of the Vampire (1995),Horror|Thriller +26858,Felidae (1994),Animation|Mystery|Thriller +26860,Floundering (1994),Comedy +26861,Freaked (1993),Comedy|Sci-Fi +26863,Golden Gate (1994),Drama +26865,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama +26868,Lucky Break (a.k.a. Paperback Romance) (1994),Comedy|Romance +26869,Macross Plus (1994),Action|Drama|Sci-Fi|War +26870,Major League II (1994),Comedy +26871,My Father the Hero (1994),Comedy|Romance +26873,"Take Care of Your Scarf, Tatiana (Pidä huivista kiinni, Tatjana) (1994)",Comedy +26874,Pumpkinhead II: Blood Wings (1994),Horror|Thriller +26875,"Pure Formality, A (Pura formalità, Una) (1994)",Crime|Film-Noir|Mystery|Thriller +26880,Staggered (1994),Comedy +26886,"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)",Action +26887,"Langoliers, The (1995)",Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller +26889,Blood & Donuts (1995),Comedy|Horror +26898,"Five, The (Gonin) (1995)",Action|Crime|Drama +26900,"Last Wedding, The (Kivenpyörittäjän kylä) (1995)",Comedy|Drama +26901,Last of the Dogmen (1995),Adventure|Western +26903,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance +26908,"Passion of Darkly Noon, The (1995)",Drama|Mystery|Thriller +26911,Meltdown (Shu dan long wei) (1995),Action|Comedy|Crime +26913,Street Fighter II: The Animated Movie (Sutorîto Faitâ II gekijô-ban) (1994),Action|Animation +26914,Trinity and Beyond (1995),Documentary +26915,Tromeo and Juliet (1996),Comedy|Drama +26925,Cannibal! The Musical (a.k.a. Alferd Packer: The Musical) (1996),Comedy|Horror|Musical|Western +26928,"Summer's Tale, A (Conte d'été) (1996)",Comedy|Drama|Romance +26933,Fetishes (1996),Documentary +26934,God of Cookery (Sik san) (1996),Comedy +26937,Jack Frost (1997),Comedy|Fantasy|Horror +26938,"Hunters, The (Jägarna) (1996)",Crime|Thriller +26939,Drifting Clouds (Kauas pilvet karkaavat) (1996),Comedy|Drama +26940,"Late Shift, The (1996)",Comedy +26941,"Pretty Village, Pretty Flame (Lepa sela lepo gore) (1996)",Drama|War +26944,My Man (Mon homme) (1996),Comedy|Drama|Romance +26945,No Way Back (1995),Action|Crime|Drama|Thriller +26946,No Way Home (1996),Drama +26947,Pusher (1996),Crime|Thriller +26948,Robinson Crusoe (Daniel Defoe's Robinson Crusoe) (1997),Adventure|Drama +26949,Freakin' Beautiful World (Sairaan kaunis maailma) (1997),Drama +26950,Sgt. Kabukiman N.Y.P.D. (1991),Action|Comedy|Fantasy +26954,Earth (Tierra) (1996),Drama|Romance +26958,Emma (1996),Romance +26962,American Perfekt (1997),Crime|Drama|Thriller +26964,Bikini Summer III - South Beach Heat (1997),Comedy +26965,"Boxer, The (1997)",Drama|Thriller +26966,"Brave, The (1997)",Drama +26968,Cremaster 5 (1997),Drama|Musical +26969,Executive Target (1997),Action|Adventure|Crime|Thriller +26970,Face (1997),Crime|Drama|Thriller +26973,Snow White: A Tale of Terror (1997),Fantasy|Horror +26974,Gummo (1997),Drama +26975,Commander Hamilton (Hamilton) (1998),Action|Crime +26976,Chicago Cab (1997),Comedy|Drama +26978,Kiss or Kill (1997),Crime|Drama|Thriller +26980,Destiny (Al-massir) (1997),Comedy|Drama|Musical|Romance +26981,Mean Guns (1997),Action|Crime|Thriller +26982,Men with Guns (1997),Drama +26985,Nirvana (1997),Action|Sci-Fi +26989,Dance with the Devil (Perdita Durango) (1997),Action|Crime|Drama|Romance +26990,Photographing Fairies (1997),Drama|Fantasy|Mystery +26991,Postman Blues (1997),Action|Comedy|Crime|Drama +26992,Quicksilver Highway (1997),Horror|Thriller +26994,"Swindle, The (Rien ne va plus) (1997)",Comedy|Crime|Thriller +26996,Safe House (1998),Thriller +26998,"Sick: The Life & Death of Bob Flanagan, Supermasochist (1997)",Documentary +26999,"Lion King II: Simba's Pride, The (1998)",Adventure|Animation|Children|Musical|Romance +27001,Wishful Thinking (1997),Comedy +27002,From the Earth to the Moon (1998),Action|Documentary|Drama|Thriller +27003,Beowulf (1999),Action|Horror|Sci-Fi +27004,From Dusk Till Dawn 3: The Hangman's Daughter (1999),Horror|Thriller|Western +27005,"Interview, The (1998)",Crime|Drama|Mystery|Thriller +27006,RKO 281 (1999),Drama +27008,From Dusk Till Dawn 2: Texas Blood Money (1999) ,Comedy|Crime|Horror +27009,"Torrente, el brazo tonto de la ley (1998)",Comedy|Crime +27011,Koko Flanel (1990),Comedy|Romance +27015,"Bruno (Dress Code, The) (2000)",Comedy|Drama +27016,"Curve, The (Dead Man's Curve) (1998)",Comedy|Drama|Mystery|Romance|Thriller +27018,Fudoh: The New Generation (Gokudô sengokushi: Fudô) (1996),Action|Crime +27020,Gia (1998),Drama|Romance +27022,Thursday (1998),Action|Crime|Thriller +27027,Sophie's World (Sofies verden) (1999),Adventure|Drama|Fantasy +27031,Wavelength (1967),Drama +27032,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller +27033,"Kingdom II, The (Riget II) (1997)",Drama|Horror|Mystery +27036,Merlin (1998),Action|Adventure|Drama|Fantasy|Romance +27040,Rogue Trader (1999),Crime|Drama +27044,Breast Men (1997),Comedy|Drama +27046,"Murder of Crows, A (1998)",Action|Crime|Thriller +27049,Storm of the Century (1999),Horror|Thriller +27050,Bang Boom Bang - Ein todsicheres Ding (1999),Action|Comedy +27064,Batman & Mr. Freeze: Subzero (1998),Action|Animation|Children|Crime +27067,"Pentagon Wars, The (1998)",Comedy|War +27070,"Place Called Chiapas, A (1998)",Documentary +27073,Two Hands (1999),Comedy|Crime|Thriller +27074,Brave New World (1998),Sci-Fi +27075,Addams Family Reunion (1998),Children|Comedy|Fantasy +27077,Thick as Thieves (1999),Crime|Drama +27078,Set Me Free (Emporte-moi) (1999),Drama +27081,Claire Dolan (1998),Drama +27087,The Sinners of Hell (1960),Drama|Horror +27092,Smashing Pumpkins: Vieuphoria (1994),Documentary|Musical +27093,"Class Trip, The (La classe de neige) (1998)",Drama|Mystery +27094,Flowers of Shanghai (1998),Drama +27095,"Hole, The (Dong) (1998)",Drama|Musical +27096,Of Freaks and Men (Pro urodov i lyudey) (1998),Drama +27103,"Strange Behaviour of Sexually Mature City Slickers at Mating Season, The (Das merkwürdige Verhalten geschlechtsreifer Großstädter zur Paarungszeit) (1998)",Comedy|Romance +27105,Purgatory (1999),Fantasy|Western +27108,Juha (1999),Comedy|Drama|Romance +27109,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller +27112,"Tough Ones, The (Häjyt) (1999)",Action|Drama +27114,Takedown (2000),Action|Thriller +27124,Bleeder (1999),Drama|Thriller +27131,Dil Se (1998),Drama|Musical|Romance +27132,"Bodyguard, The (Karate Kiba) (1976)",Action|Crime|Drama +27134,Dark Portals: The Chronicles of Vidocq (Vidocq) (2001),Action|Crime|Fantasy +27135,Molokai (Molokai: The Story of Father Damien) (1999),Drama +27136,"Godson, The (1998)",Comedy|Crime +27140,Candyman 3: Day of the Dead (1999),Horror +27147,"4th Floor, The (1999)",Thriller +27152,Pitkä kuuma kesä (1999),Comedy|Drama +27155,"Batman/Superman Movie, The (1998)",Action|Adventure|Animation|Children|Fantasy|Sci-Fi +27156,"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)",Action|Animation|Drama|Fantasy|Sci-Fi +27158,"Life of Aleksis Kivi, The (Aleksis Kiven elämä) (2002)",Drama +27162,He Died With a Felafel in His Hand (2001),Comedy +27163,Something Is Happening (Kuch Kuch Hota Hai) (1998),Comedy|Musical|Romance +27164,Document of the Dead (1985),Documentary|Horror +27166,Venus Beauty Institute (Vénus beauté) (1999),Comedy|Drama|Romance +27170,Cherry Falls (2000),Comedy|Horror|Mystery +27171,Freeway II: Confessions of a Trickbaby (1999),Comedy|Crime|Drama|Thriller +27172,Joseph and the Amazing Technicolor Dreamcoat (1999),Musical +27176,Style Wars (1983),Documentary +27178,In July (Im Juli) (2000),Comedy|Romance +27180,Joan of Arc (1999),Adventure|Drama +27186,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy +27189,After the Rain (Ame agaru) (1999) ,Action|Drama +27192,"Prophecy 3: The Ascent, The (2000)",Horror|Thriller +27193,Taxi 2 (2000),Action|Comedy +27197,Pups (1999),Crime|Drama|Thriller +27198,Peculiarities of the National Fishing (Osobennosti natsionalnoy rybalki) (1998),Comedy +27204,Cut (2000),Comedy|Horror|Mystery|Thriller +27205,Kadosh (1999),Drama +27212,Essex Boys (2000),Crime|Thriller +27213,Picking Up the Pieces (2000),Comedy|Fantasy +27215,Badding (2000),Comedy|Drama|Musical +27216,Katsastus (1988),Comedy|Drama +27217,Radiohead: Meeting People Is Easy (1998),Documentary +27220,Cruel Intentions 2 (Cruel Intentions 2: Manchester Prep) (2000),Comedy|Drama +27221,Adrenaline Drive (Adorenarin doraibu) (1999),Comedy +27223,"Humanité, L' (1999)",Crime|Drama +27232,Beautiful Joe (2000),Comedy|Drama|Romance +27234,"Underground Comedy Movie, The (1999)",Comedy +27235,"Shrink Is In, The (2001)",Comedy|Romance +27236,Charisma (Karisuma) (1999),Drama +27238,Guest House Paradiso (1999),Comedy|Thriller +27239,Swimming (2000),Drama +27246,If These Walls Could Talk 2 (2000),Drama|Romance +27249,"Trumpet of the Swan, The (2001)",Animation|Drama|Musical +27251,"10th Kingdom, The (2000)",Adventure|Comedy|Fantasy +27253,"Extremely Goofy Movie, An (2000)",Animation|Children|Comedy +27255,"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)",Drama +27261,Water Drops on Burning Rocks (2000),Drama +27263,"Tracker, The (2002)",Drama +27266,2046 (2004),Drama|Fantasy|Romance|Sci-Fi +27268,Bruiser (2000),Horror|Thriller +27271,Taboo (Gohatto) (1999),Drama +27273,Crane World (Mundo grúa) (1999),Comedy|Drama +27274,Cremaster 2 (1999),Drama +27276,Running Out of Time (Am zin) (1999),Action|Crime|Drama|Thriller +27277,"Wog Boy, The (2000)",Comedy +27291,Century of the Dragon (Long zai bian yuan) (1999),Crime|Thriller +27292,Chasing Sleep (2000),Horror|Thriller +27293,"Stepdaughter, The (2000)",Horror|Thriller +27297,Possible Worlds (2000),Crime|Drama|Mystery|Sci-Fi +27298,"Nameless, The (Los sin nombre) (1999)",Drama|Horror|Mystery +27302,"Debt, The (Dlug) (1999)",Crime|Drama|Thriller +27304,Female Prisoner #701: Scorpion (Joshuu 701-gô: Sasori) (1972),Crime|Drama|Thriller +27305,Female Convict Scorpion: Jailhouse 41 (Joshuu sasori: Dai-41 zakkyo-bô) (1972),Crime|Drama|Thriller +27306,Bartleby (2001),Comedy|Drama +27307,Night of the Day of the Dawn of the Son of the Bride of the Return of the Terror (1991),Comedy|Horror +27309,Restless (Levottomat) (2000),Drama|Romance +27310,Shiner (2000),Crime|Drama|Thriller +27311,Batman Beyond: Return of the Joker (2000),Action|Animation|Crime|Sci-Fi|Thriller +27313,Roberto Succo (2001),Crime|Drama +27315,Suzhou River (Suzhou he) (2000),Drama|Romance +27316,6ixtynin9 (Ruang Talok 69) (1999),Action|Comedy|Thriller +27317,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller +27320,"Nine Lives of Tomas Katz, The (2000)",Comedy|Drama|Fantasy +27321,For Love or Country: The Arturo Sandoval Story (2000),Drama|Musical +27322,Paragraph 175 (2000),Documentary +27326,Devdas (2002),Musical|Romance +27327,Mimic 2 (2001),Horror|Sci-Fi|Thriller +27328,Monday (2000),Action|Comedy|Crime|Fantasy|Thriller +27329,Paradise Lost 2: Revelations (2000),Documentary +27332,Dark Prince: The True Story of Dracula (2000),Drama|Horror|Thriller +27334,Sound and Fury (2000),Documentary +27338,The Hole (2001),Drama|Horror|Mystery|Thriller +27340,"Sleeping Dictionary, The (2003)",Drama|Romance +27343,When Strangers Appear (2001),Action|Mystery|Thriller +27344,Revolutionary Girl Utena: Adolescence of Utena (a.k.a. Revolutionary Girl Utena the Movie) (Shoujo kakumei Utena: Adolescence mokushiroku) (1999),Action|Adventure|Animation|Comedy|Drama|Fantasy|Romance +27345,Speaking of Sex (2001),Comedy|Romance +27347,Good Advice (2001),Comedy|Romance +27348,Needing You... (Goo naam gwa neui) (2000),Comedy|Romance +27350,"Mists of Avalon, The (2001)",Drama|Fantasy +27351,Spiral (2000),Horror +27356,Big Animal (Duze zwierze) (2000),Comedy|Drama +27357,Old Men in New Cars (Gamle mænd i nye biler) (2002),Action|Comedy +27359,Purely Belter (2000),Adventure|Comedy|Drama +27360,"Quickie, The (2001)",Crime|Drama +27362,"Sometimes Happiness, Sometimes Sorrow (Kabhi Khushi Kabhie Gham) (2001)",Drama|Musical|Romance +27365,"River, The (Joki) (2001)",Drama +27366,Werckmeister Harmonies (Werckmeister harmóniák) (2000),Drama +27368,Asterix & Obelix: Mission Cleopatra (Astérix & Obélix: Mission Cléopâtre) (2002),Adventure|Comedy|Fantasy +27369,Daria: Is It Fall Yet? (2000),Animation|Comedy +27370,Late Night Shopping (2001),Comedy +27372,Uprising (2001),Drama +27373,61* (2001),Drama +27376,"Tunnel, The (Tunnel, Der) (2001)",Action|Drama|Thriller +27378,Long Time Dead (2002),Horror|Thriller +27382,Idle Mist (Vana Espuma) (1998),Crime|Horror|Mystery|Sci-Fi +27391,"Laramie Project, The (2002)",Crime|Drama +27392,Run Ronnie Run (2002),Comedy +27395,Gojoe: Spirit War Chronicle (Gojo reisenki: Gojoe) (2000),Drama +27396,"Gentleman's Game, A (2002)",Drama +27397,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War +27402,Dagon (2001),Fantasy|Horror|Mystery|Thriller +27408,Ripley's Game (2002),Drama|Thriller +27410,Conspiracy (2001),Drama|War +27411,Freeze Me (2000),Drama|Thriller +27416,Jalla! Jalla! (2000),Comedy|Drama|Romance +27420,Teknolust (2002),Comedy|Drama|Romance|Sci-Fi +27423,"O Auto da Compadecida (Dog's Will, A) (2000)",Adventure|Comedy +27426,"Accidental Spy, The (Dak miu mai shing) (2001)",Action|Comedy|Thriller +27431,"Adversary, The (L'adversaire) (2002)",Crime|Drama|Mystery|Thriller +27432,"Beautiful Country, The (2004)",Drama +27434,Darkness (2002),Horror|Mystery +27436,Mockingbird Don't Sing (2001),Drama +27441,Blood: The Last Vampire (2000),Action|Animation|Horror +27444,Vacuuming Completely Nude in Paradise (2001),Comedy|Drama +27445,Avenging Angelo (2002),Action|Comedy|Crime +27447,Southern Comfort (2001),Documentary +27449,Berlin Is in Germany (2001),Drama +27450,Blueberry (2004),Adventure|Western +27451,Electric Dragon 80.000 V (2001),Drama|Fantasy|Sci-Fi +27454,"Nugget, The (2002)",Comedy +27455,"Godzilla, Mothra, and King Ghidorah: Giant Monsters All-Out Attack (Gojira, Mosura, Kingu Gidorâ: Daikaijû sôkôgeki) (Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack) (2001)",Action|Fantasy|Sci-Fi +27456,Shackleton's Antarctic Adventure (2001),Documentary|IMAX +27457,"Barber, The (2002)",Crime|Horror|Mystery|Thriller +27458,Dirty Deeds (2002),Action|Comedy|Crime +27459,Miranda (2002),Romance|Thriller +27461,My Little Eye (2002),Horror|Mystery|Thriller +27467,Kung Phooey! (2003),Comedy +27468,Stranded (2001),Drama|Sci-Fi +27469,Millennium Mambo (2001),Drama|Romance +27472,Martin & Orloff (2002),Comedy +27473,American Psycho II: All American Girl (2002),Comedy|Crime|Horror|Mystery|Thriller +27474,Double Vision (Shuang tong) (2002),Horror|Mystery|Thriller +27475,Soft Shell Man (Un crabe dans la tête) (2001),Drama|Romance +27477,Samurai (Samourais) (2002),Action +27478,Ali G Indahouse (2002),Comedy +27479,Anazapta (Black Plague) (2002),Drama|Mystery|Thriller +27480,Dead or Alive 2: Tôbôsha (2000),Action|Crime|Thriller +27482,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi +27484,"Milwaukee, Minnesota (2003)",Drama +27485,Pistol Opera (Pisutoru opera) (2001),Action|Crime|Drama +27486,Secret Passage (2004),Drama +27488,Stark Raving Mad (2002),Action|Comedy|Crime +27491,Pulse (Kairo) (2001),Horror|Mystery|Thriller +27496,Emmett's Mark (2002),Crime|Drama|Thriller +27497,"Lost Battalion, The (2001)",Action|Drama|War +27506,Hukkle (2002),Crime|Drama|Mystery +27509,Carolina (2005),Comedy|Romance +27511,Charms for the Easy Life (2002),Drama +27513,Dog Days (Hundstage) (2001),Drama +27515,Balzac and the Little Chinese Seamstress (Xiao cai feng) (2002),Drama|Romance +27518,D.C.H. (Dil Chahta Hai) (2001),Comedy|Drama +27523,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance +27524,"Gathering, The (2002)",Horror|Mystery|Thriller +27525,Shot in the Heart (2001),Crime|Drama +27526,Deadline (Sprängaren) (2001),Drama|Thriller +27528,"Warrior, The (2001)",Adventure|Drama +27530,My Wife Is a Gangster (Jopog manura) (2001),Action|Comedy|Romance +27537,Nothing (2003),Comedy|Fantasy|Mystery|Sci-Fi +27539,Undertaking Betty (Plots with a View) (2002),Comedy|Romance +27544,Waterboys (2001),Comedy +27548,Absolon (2003),Action|Sci-Fi|Thriller +27549,Dead or Alive: Final (2002),Comedy|Crime|Drama|Sci-Fi|Thriller +27550,Hell House (2001),Documentary +27555,Fubar (2002),Comedy +27563,"Happiness of the Katakuris, The (Katakuri-ke no kôfuku) (2001)",Comedy|Horror|Musical +27564,Sex Is Comedy (2002),Comedy|Drama|Romance +27571,"Rage in Placid Lake, The (2003)",Comedy +27573,Stratosphere Girl (2004),Drama|Mystery +27576,My Mother Likes Women (A mi madre le gustan las mujeres) (2002),Comedy +27584,Dead End (2003),Comedy|Horror|Mystery|Thriller +27587,Pure (2002),Drama +27592,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama +27595,Jesus Christ Vampire Hunter (2001),Action|Comedy|Horror|Musical +27598,Chinese Odyssey 2002 (Tian xia wu shuang) (2002),Action|Comedy|Romance +27602,"Foreigner, The (2003)",Action|Thriller +27603,"Man of the Year, The (O Homem do Ano) (2003)",Action|Comedy|Crime +27604,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller +27606,"Third Wave, The (Tredje vågen, Den) (2003)",Action|Thriller +27608,Immortel (ad vitam) (Immortal) (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +27611,Battlestar Galactica (2003),Drama|Sci-Fi|War +27616,Tiptoes (2003),Comedy|Drama|Romance +27618,"Sound of Thunder, A (2005)",Action|Adventure|Drama|Sci-Fi|Thriller +27619,"Lion King 1½, The (2004)",Adventure|Animation|Children|Comedy +27620,Fear and Trembling (Stupeur et tremblements) (2003),Comedy +27624,Live from Baghdad (2002),Drama|War +27626,Entre Amigos (Planta 4ª) (2003),Comedy|Drama +27627,Oasis (2002),Drama|Romance +27631,Cremaster 3 (2002),Drama +27636,Herr Lehmann (2003),Comedy|Drama +27639,Twin Sisters (De tweeling) (2002),Drama|Romance|War +27640,My House in Umbria (2003),Drama +27641,Upswing (Nousukausi) (2003),Comedy|Drama +27642,Out for a Kill (2003),Action|Crime|Thriller +27643,Pahat pojat (2003),Action|Crime|Drama +27644,Remember Me (Ricordati di me) (2003),Comedy|Drama|Romance +27646,Soldier's Girl (2003),Drama +27647,Tipping the Velvet (2002),Comedy|Drama|Romance +27648,Bright Young Things (2003),Comedy|Drama +27656,Resurrection of the Little Match Girl (Sungnyangpali sonyeoui jaerim) (2002),Action|Comedy|Sci-Fi +27657,Alien Hunter (2003),Action|Sci-Fi|Thriller +27658,Love Object (2003),Comedy|Drama|Horror|Romance|Thriller +27660,"Animatrix, The (2003)",Action|Animation|Drama|Sci-Fi +27664,"Brown Bunny, The (2003)",Drama +27667,Ju-on: The Curse (2000),Horror +27668,Ju-on: The Curse 2 (2000),Horror +27671,As If I Didn't Exist (Elina - Som om jag inte fanns) (2002),Children|Drama +27674,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller +27675,Alive (2002),Action|Drama|Horror|Sci-Fi|Thriller +27679,Springtime in a Small Town (Xiao cheng zhi chun) (2002),Drama|Romance +27683,Tremors 4: The Legend Begins (2004),Action|Comedy|Horror|Sci-Fi|Thriller|Western +27684,Wondrous Oblivion (2003),Children|Comedy|Drama +27685,Bring It On Again (2004),Comedy +27689,"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)",Action|Crime|Thriller +27692,And Starring Pancho Villa as Himself (2003),Action|Comedy|Drama|War +27695,Nicotina (2003),Action|Comedy|Drama +27699,Iron Jawed Angels (2004),Drama|Romance +27700,Evil (Ondskan) (2003),Drama +27702,Sniper 2 (2002),Action|Adventure|War +27703,High Roller: The Stu Ungar Story (2003),Drama +27704,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War +27705,In Hell (2003),Action|Drama|Thriller +27706,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy +27708,Helen of Troy (2003),Action|Adventure|Drama|Romance +27711,Naked Weapon (Chek law dak gung) (2002),Action|Drama|Romance|Thriller +27713,Bukowski: Born into This (2003),Documentary +27716,"Green Butchers, The (Grønne slagtere, De) (2003)",Comedy|Crime|Drama|Romance +27717,Pearls and Pigs (Helmiä ja sikoja) (2003),Comedy +27718,"Injury to One, An (2002)",Documentary +27719,Levottomat 3 (2004),Romance +27721,"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)",Drama|Mystery|Romance|War +27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance +27724,Hitler: The Rise of Evil (2003),Drama +27727,Head-On (Gegen die Wand) (2004),Drama|Romance +27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller +27729,Kal Ho Naa Ho (2003),Comedy|Drama|Romance +27731,"Cat Returns, The (Neko no ongaeshi) (2002)",Adventure|Animation|Children|Fantasy +27734,In My Country (a.k.a. Country of My Skull) (2004),Drama +27735,Unstoppable (2004),Action|Adventure|Comedy|Drama|Thriller +27736,Take My Eyes (Te doy mis ojos) (2003),Drama|Romance|Thriller +27738,"Cathedral, The (Katedra) (2002)",Animation +27740,Blind Shaft (Mang jing) (2003),Drama +27741,"Twilight Samurai, The (Tasogare Seibei) (2002)",Drama|Romance +27742,Vampire Effect (The Twins Effect) (Chin gei bin) (2003),Action|Comedy|Fantasy|Horror +27743,"Far Side of the Moon, The (Face cachée de la lune, La) (2003)",Drama +27744,"Facing Windows (Finestra di fronte, La) (2003)",Drama|Romance +27746,Ginger Snaps: Unleashed (2004),Horror|Thriller +27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller +27752,Dark Woods (Villmark) (2003),Adventure|Horror|Mystery|Thriller +27754,Foolproof (2003),Action|Comedy|Crime|Thriller +27756,Belly of the Beast (2003),Action +27758,"Easy Riders, Raging Bulls: How the Sex, Drugs and Rock 'N' Roll Generation Saved Hollywood (2003)",Documentary +27759,"Book of Fate, The (Kohtalon kirja) (2003)",Action|Horror|Sci-Fi|War|Western +27760,When the Last Sword is Drawn (Mibu gishi den) (2003),Drama +27762,Comic Book: The Movie (2004),Comedy +27764,2LDK (2003),Drama|Horror|Thriller +27765,Trauma (2004),Drama|Mystery|Thriller +27768,Intimate Strangers (Confidences trop intimes) (2004),Drama +27769,Down to the Bone (2004),Drama +27771,"Talking Picture, A (Um Filme Falado) (2003)",Comedy|Drama|War +27772,Ju-on: The Grudge (2002),Horror +27773,Old Boy (2003),Mystery|Thriller +27776,Red Lights (Feux rouges) (2004),Drama +27777,GhostWatcher (2002),Horror|Mystery|Sci-Fi +27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror +27779,Moon Child (2003),Action|Drama|Sci-Fi +27780,Skenbart: En film om tåg (2003),Comedy +27781,Svidd Neger (2003),Comedy|Crime|Drama|Horror|Mystery|Romance|Thriller +27783,"Lost Embrace (Abrazo partido, El) (2004)",Comedy|Drama +27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery +27786,Goldfish Memory (2003),Comedy|Drama +27787,Inuyasha the Movie: The Castle Beyond the Looking Glass (2002),Action|Animation|Comedy|Romance +27788,"Jacket, The (2005)",Drama|Mystery|Sci-Fi|Thriller +27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy +27792,"Saddest Music in the World, The (2003)",Comedy|Drama|Fantasy|Musical|Romance +27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War +27797,"Man Who Copied, The (Homem Que Copiava, O) (2003)",Comedy|Crime|Drama|Romance +27798,Ju-on: The Grudge 2 (2003),Horror +27799,Sex Lives of the Potato Men (2004),Comedy +27800,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi +27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller +27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller +27803,"Sea Inside, The (Mar adentro) (2004)",Drama +27805,Lucky 7 (2003),Comedy|Romance +27808,Spanglish (2004),Comedy|Drama|Romance +27811,Buddy (2003),Comedy|Drama +27812,Festival Express (2003),Documentary|Musical +27815,"Chorus, The (Choristes, Les) (2004)",Drama +27816,Saints and Soldiers (2003),Action|Adventure|Drama|War +27818,Just Bea (Bare Bea) (2004),Drama +27820,"Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)",Documentary|Drama +27821,"Interpreter, The (2005)",Drama|Thriller +27822,Open Water (2003),Drama|Thriller +27823,Romasanta: The Werewolf Hunt (2004),Drama|Horror|Mystery +27824,Running On Karma (Daai Zek Lou) (2003),Action|Drama|Thriller +27826,Touch of Pink (2004),Comedy|Drama|Romance +27827,Infernal Affairs III (Mou gaan dou III: Jung gik mou gaan) (2003),Action|Crime|Drama|Thriller +27828,"Memory of a Killer, The (Zaak Alzheimer, De) (2003)",Action|Crime|Drama|Thriller +27829,Slasher (2004),Documentary +27830,"Bobby Jones, Stroke of Genius (2004)",Drama +27831,Layer Cake (2004),Crime|Drama|Thriller +27833,Silver City (2004),Comedy|Drama|Mystery|Thriller +27834,"Return, The (Vozvrashcheniye) (2003)",Drama +27835,"Agronomist, The (2003)",Documentary +27837,Flight of the Phoenix (2004),Action|Adventure +27838,Mean Creek (2004),Drama|Thriller +27839,"Ring Two, The (2005)",Drama|Horror|Mystery|Thriller +27840,"Day Without a Mexican, A (2004)",Comedy|Drama|Fantasy|Mystery +27841,"Gospel of John, The (2003)",Drama +27843,Machuca (2004),Drama +27846,"Corporation, The (2003)",Documentary +27847,Game Over: Kasparov and the Machine (2003),Documentary +27849,Vibrator (2003),Drama +27850,"Yes Men, The (2003)",Documentary +27851,"Fond Kiss, A (Ae Fond Kiss...) (2004)",Drama|Romance +27856,Bummer (Bumer) (2003),Action|Drama|Thriller +27857,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance +27858,Green Tea (Lü cha) (2003),Drama|Romance +27862,Lost Boys of Sudan (2003),Documentary +27864,She Hate Me (2004),Comedy|Drama +27865,Azumi (2003),Action|Adventure|Drama|Thriller +27866,In My Father's Den (2004),Drama +27867,"Football Factory, The (2004)",Action|Drama +27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War +27871,Something the Lord Made (2004),Drama +27873,Metallica: Some Kind of Monster (2004),Documentary +27874,Going the Distance (2004),Comedy +27875,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama +27876,Schultze Gets the Blues (2003),Comedy|Drama +27878,Born into Brothels (2004),Documentary +27879,DiG! (2004),Documentary +27881,"Girl from Monday, The (2005)",Action|Comedy|Sci-Fi +27882,Riding Giants (2004),Documentary +27883,Dear Pillow (2004),Drama +27884,Word Wars (2004),Comedy|Documentary|Drama +27887,Cruel Intentions 3 (2004),Drama|Thriller +27888,When Will I Be Loved (2004),Drama +27889,Hell's Gate 11:11 (2004),Horror|Thriller +27891,Quiet as a Mouse (Muxmäuschenstill) (2004),Drama +27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama +27903,"Eye 2, The (Gin gwai 2) (2004)",Horror|Thriller +27904,"Scanner Darkly, A (2006)",Animation|Drama|Mystery|Sci-Fi|Thriller +27905,Casshern (2004),Action|Drama|Fantasy|Sci-Fi +27909,Windstruck (Nae yeojachingureul sogae habnida) (2004),Comedy|Crime|Drama +27911,Howard Zinn: You Can't Be Neutral on a Moving Train (2004),Documentary +27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary +27914,"Hijacking Catastrophe: 9/11, Fear & the Selling of American Empire (2004)",Documentary +27919,Fahrenhype 9/11 (2004),Documentary +27922,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary +30659,Noel (2004),Drama +30695,In Enemy Hands (2004),War +30698,Sexual Dependency (Dependencia sexual) (2003),Drama +30701,Chimes at Midnight (Campanadas a medianoche) (1965),Comedy|Drama|War +30707,Million Dollar Baby (2004),Drama +30712,"Narrow Margin, The (1952)",Crime|Drama|Film-Noir +30721,Hell Is for Heroes (1962),Drama|War +30723,Vincent & Theo (1990),Drama +30742,Some Came Running (1958),Drama|Romance +30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery +30747,"Goodbye, Dragon Inn (Bu san) (2003)",Comedy|Drama +30749,Hotel Rwanda (2004),Drama|War +30764,"Mahabharata, The (1989)",Action|Drama|War +30767,Sitcom (1998),Comedy|Drama|Thriller +30776,Born to Dance (1936),Comedy|Musical +30781,Travels with My Aunt (1972),Adventure|Comedy|Drama +30783,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller +30791,Hellraiser: Inferno (2000),Horror +30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX +30798,Auggie Rose (a.k.a. Beyond Suspicion) (2000),Drama|Mystery|Thriller +30800,"Wrong Box, The (1966)",Comedy +30803,3-Iron (Bin-jip) (2004),Drama|Romance +30808,It Happens Every Spring (1949),Comedy|Sci-Fi +30810,"Life Aquatic with Steve Zissou, The (2004)",Adventure|Comedy|Fantasy +30812,"Aviator, The (2004)",Drama +30816,"Phantom of the Opera, The (2004)",Drama|Musical|Romance +30818,Beyond the Sea (2004),Drama|Musical +30820,"Woodsman, The (2004)",Drama +30822,In Good Company (2004),Comedy|Drama +30825,Meet the Fockers (2004),Comedy +30846,"Assassination of Richard Nixon, The (2004)",Crime|Drama|Thriller +30848,"Love Song for Bobby Long, A (2004)",Drama +30850,"Merchant of Venice, The (2004)",Drama +30854,"River, The (He liu) (1997)",Drama +30856,Rebels of the Neon God (Qing shao nian nuo zha) (1992),Drama +30861,Captain Kidd (1945),Action|Adventure|Drama +30863,Hold That Ghost (1941),Adventure|Comedy +30867,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy +30883,Fat Albert (2004),Comedy|Fantasy +30890,"Keys to the House, The (Chiavi di casa, Le) (2004)",Drama +30892,In the Realms of the Unreal (2004),Animation|Documentary +30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller +30896,Underclassman (2005),Action|Comedy|Thriller +30898,"Upside of Anger, The (2005)",Comedy|Drama|Romance +30905,Bomb the System (2002),Action|Drama +30942,Arrowhead (1953),Drama|Western +30949,"Grateful Dead Movie, The (1977)",Documentary|Musical +30952,Last Train from Gun Hill (1959),Drama|Western +30954,"Naked Jungle, The (1954)",Adventure|Drama +30958,Who's the Caboose? (1997),Comedy|Documentary +30970,"Handful of Dust, A (1988)",Drama +30977,"Pickle, The (1993)",Comedy +30981,Wetherby (1985),Drama +30991,Powwow Highway (1989),Drama +30994,Little Miss Marker (1980),Comedy|Drama +30996,Little Miss Marker (1934),Comedy|Drama +31000,Sweet Liberty (1986),Comedy +31004,"Promised Life, The (Vie promise, La) (2002)",Drama +31011,It's All True (1993),Documentary +31026,"Phantom of the Opera, The (1989)",Drama|Horror|Musical +31030,I Remember Mama (1948),Children|Drama +31032,"Last Horror Movie, The (2003)",Horror|Thriller +31035,Testament (1983),Drama +31038,Smooth Talk (1985),Drama|Romance +31040,Distant Thunder (1988),Drama +31042,Hell's Angels (1930),Drama|War +31045,Daddy's Dyin'... Who's Got the Will? (1990),Comedy +31047,Jinxed! (1982),Comedy +31049,Out Cold (1989),Comedy|Thriller +31053,Heart of America (2003),Drama +31060,A Show of Force (1990),Drama|Thriller +31079,Son of Godzilla (Kaijûtô no kessen: Gojira no musuko) (1967),Sci-Fi +31083,Man Trouble (1992),Comedy|Romance +31086,Battles Without Honor & Humanity (Jingi naki tatakai) (1973),Crime|Drama +31090,Fuhrer Ex (Führer EX) (2002),Drama +31101,Stander (2003),Action|Crime|Drama +31104,Hester Street (1975),Drama +31107,Mikey and Nicky (1976),Drama +31109,"Bigamist, The (1953)",Drama +31112,Freedomfighters (Libertarias) (1996),Drama|War +31114,Imaginary Heroes (2004),Comedy|Drama +31116,Sergeant York (1941),Drama|War +31123,Ruby & Quentin (Tais-toi!) (2003),Comedy|Crime +31133,Deathwatch (2002),Drama|Horror|Thriller|War +31140,Madame Rosa (La vie devant soi) (1977),Drama +31148,Day of the Wacko (Dzien swira) (2002),Comedy|Drama +31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War +31152,For Love and Gold (L'armata Brancaleone) (1966),Adventure|Comedy +31154,Heartlands (2002),Comedy|Drama +31156,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi +31158,Abbott and Costello Go to Mars (1953),Comedy|Sci-Fi +31160,"Abbott and Costello Meet the Killer, Boris Karloff (1949)",Comedy|Mystery|Thriller +31162,"Life and Death of Peter Sellers, The (2004)",Comedy|Drama +31165,"Badge, The (2002)",Crime|Drama|Mystery|Thriller +31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi +31188,"Milky Way, The (Voie lactée, La) (1969)",Comedy|Drama +31193,"Many Adventures of Winnie the Pooh, The (1977)",Animation|Children|Musical +31195,Pippi in the South Seas (Pippi Långstrump på de sju haven) (1970),Adventure|Children +31201,Pippi on the Run (På rymmen med Pippi Långstrump) (1970),Children +31203,Puddle Cruiser (1996),Comedy +31205,"Stickup, The (2002)",Action|Crime|Mystery +31221,Elektra (2005),Action|Adventure|Crime|Drama +31223,Racing Stripes (2005),Children|Comedy +31225,Coach Carter (2005),Drama +31247,"Fighting Sullivans, The (Sullivans, The) (1944)",Drama +31251,Iceman (1984),Drama|Sci-Fi +31255,Ice Station Zebra (1968),Action|Thriller +31258,Common Places (a.k.a. Common Ground) (Lugares comunes) (2002),Drama +31260,Boys Town (1938),Drama +31263,Torremolinos 73 (2003),Comedy|Drama +31267,Zhou Yu's Train (Zhou Yu de huo che) (2002),Drama|Romance +31270,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi +31284,"Star Is Born, A (1976)",Drama|Musical|Romance +31290,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi +31297,Gold Diggers of 1935 (1935),Comedy|Musical +31309,Rocco and His Brothers (Rocco e i suoi fratelli) (1960),Crime|Drama +31330,Strawberries in the Supermarket (Jagoda u supermarketu) (2003) ,Action|Adventure|Comedy +31337,"Mortal Storm, The (1940)",Drama +31340,Once Upon a Honeymoon (1942),Comedy|Mystery|Romance +31342,Monday Morning (Lundi matin) (2002),Comedy|Drama|Romance +31347,Christmas in July (1940),Comedy|Romance +31349,I Married a Witch (1942),Comedy|Fantasy|Romance +31351,"Mayor of Hell, The (1933)",Crime|Drama|Romance +31353,"Miracle Woman, The (1931)",Drama +31359,Moolaadé (2004),Drama +31362,This Girl's Life (2003),Drama +31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller +31367,"Chase, The (1994)",Action|Adventure|Comedy|Crime|Romance|Thriller +31374,Hobson's Choice (1954),Comedy|Drama|Romance +31389,Dr. Who and the Daleks (1965),Adventure|Children|Sci-Fi +31408,Summer Storm (Sommersturm) (2004),Drama|Romance +31410,"Downfall (Untergang, Der) (2004)",Drama|War +31413,"White Sound, The (Das weiße Rauschen) (2001)",Drama +31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller +31422,Are We There Yet? (2005),Children|Comedy +31424,Alone in the Dark (2005),Action|Horror|Sci-Fi|Thriller +31427,Hide and Seek (2005),Horror|Mystery|Thriller +31429,Aliens of the Deep (2005),Documentary|IMAX +31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller +31433,"Wedding Date, The (2005)",Comedy|Romance +31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama +31437,Nobody Knows (Dare mo shiranai) (2004),Drama +31445,Employee of the Month (2004),Comedy|Drama +31447,Magic in the Water (1995),Adventure|Children|Fantasy +31467,"Great White Hope, The (1970)",Action|Drama +31469,"Study in Terror, A (1965)",Crime|Drama|Horror +31474,Everything About Mustafa (Mustafa hakkinda hersey) (2004),Drama|Thriller +31485,"Professionals, The (1966)",Western +31487,"Devil and Miss Jones, The (1941)",Comedy|Romance +31490,Alice in Wonderland (1999),Adventure|Comedy|Fantasy +31494,Everyday People (2004),Drama +31498,Backflash (Backflash Blues) (2002),Action|Crime|Drama|Thriller +31502,Salem's Lot (1979),Drama|Horror|Mystery|Thriller +31522,"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)",Drama +31524,"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)",Drama +31528,Beau Geste (1939),Action|Adventure|Drama|War +31535,At Sword's Point (1952),Adventure +31539,Overnight (2003),Documentary +31545,"Trou, Le (Hole, The) (Night Watch, The) (1960)",Crime|Film-Noir +31547,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War +31549,Fata Morgana (1971),Documentary|Drama|Sci-Fi +31553,Double Dragon (1994),Action|Adventure|Sci-Fi +31555,Mac and Me (1988),Children|Fantasy|Sci-Fi +31577,Scorchers (1991),Comedy|Drama +31584,Rosenstrasse (2003),Drama|War +31588,Casque d'or (1952),Crime|Drama|Romance +31590,Hands Off the Loot (Touchez pas au grisbi) (1954),Crime|Drama|Thriller +31594,"Matchmaker, The (1958)",Comedy|Romance +31598,"Ballad of the Sad Cafe, The (1991)",Drama +31600,"Deceivers, The (1988)",Adventure|Drama|Thriller +31606,Siberia (1998),Comedy +31610,Purple Butterfly (Zi hudie) (2003),Drama +31613,Easy (2003),Comedy|Drama|Romance +31617,El Cid (1961),Action|Adventure|Drama|Romance|War +31619,Going All the Way (1997),Comedy|Drama +31628,"Taxing Woman, A (Marusa no onna) (1987)",Comedy +31636,"Bunker, The (2001)",Drama|Horror|Mystery|Thriller|War +31638,"Fine Madness, A (1966)",Comedy|Drama|Romance +31645,Reap the Wild Wind (1942),Action|Adventure|Drama +31647,2009: Lost Memories (2002),Action|Sci-Fi|Thriller +31649,"Architecture of Doom, The (Undergångens arkitektur) (1989)",Documentary|War +31655,Inferno (1953),Drama +31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance +31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi +31664,Gorgeous (Boh lee chun) (1999),Action|Comedy|Romance +31672,"Blade, The (Dao) (1995)",Action|Drama +31680,Assisted Living (2003),Comedy|Drama +31682,"Nomi Song, The (2004)",Documentary|Musical +31685,Hitch (2005),Comedy|Romance +31687,Pooh's Heffalump Movie (2005),Animation|Children +31689,Inside Deep Throat (2005),Documentary +31692,Uncle Nino (2003),Comedy +31694,Bride & Prejudice (2004),Comedy|Musical|Romance +31696,Constantine (2005),Action|Fantasy|Horror|Thriller +31698,Son of the Mask (2005),Adventure|Children|Comedy|Fantasy +31700,Because of Winn-Dixie (2005),Children|Comedy|Drama +31702,Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004),Drama|War +31705,Beautiful Boxer (2003),Action|Drama +31724,Pauly Shore Is Dead (2003),Comedy +31737,Bunny Lake Is Missing (1965),Mystery|Thriller +31742,Jeremy (1973),Drama|Romance +31747,The Boyfriend School (1990),Comedy|Romance +31750,Until September (1984),Drama|Romance +31770,Night and the City (1950),Film-Noir|Thriller +31785,Frozen Land (Paha maa) (2005),Drama +31793,Big Girls Don't Cry (Große Mädchen weinen nicht) (2002),Drama|Romance +31797,White Banners (1938),Drama +31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller +31807,Dot the I (2003),Drama|Film-Noir|Thriller +31813,Sister Helen (2002) ,Documentary +31826,Bright Leaves (2003),Documentary +31847,Topper Returns (1941),Comedy|Fantasy|Mystery|Romance +31851,Sons of the Desert (1933),Comedy +31854,Morocco (1930),Drama|Romance +31856,Surplus: Terrorized Into Being Consumers (2003),Documentary +31867,Man of the House (2005),Action|Comedy +31869,Samson and Delilah (1949),Drama|Romance +31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy +31881,Shark Skin Man and Peach Hip Girl (Samehada otoko to momojiri onna) (1998),Action|Comedy|Mystery|Thriller +31889,"Five People You Meet in Heaven, The (2004)",Drama|Fantasy +31892,"No Retreat, No Surrender (1986)",Action|Drama +31894,"ChubbChubbs!, The (2002)",Animation|Comedy|Sci-Fi +31900,Travellers and Magicians (2003),Adventure|Drama +31903,Zelary (2003),Drama|Romance +31907,Dragonworld (1994),Adventure|Fantasy +31909,Dr. Giggles (1992),Comedy|Horror +31915,"Corn Is Green, The (1945)",Drama +31921,"Seven-Per-Cent Solution, The (1976)",Adventure|Comedy|Crime|Drama|Mystery|Thriller +31923,"Three Musketeers, The (1973)",Action|Adventure|Comedy +31925,Royal Flash (1975),Adventure|Comedy|Romance +31930,Masculin Féminin (1966),Drama +31932,Fallen Angel (1945),Crime|Film-Noir|Mystery|Romance +31934,"Four Feathers, The (1939)",Adventure|War +31948,"Phone Box, The (Cabina, La) (1972)",Comedy|Drama|Mystery|Thriller +31950,Curse of the Demon (Night of the Demon) (1957),Fantasy|Horror|Mystery +31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery +31954,Beautiful City (Shah-re ziba) (2004),Drama +31956,5x2 (2004),Drama|Romance +31960,Tart (2001),Crime|Drama|Romance +31963,Bed & Board (Domicile conjugal) (1970),Comedy|Drama +31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War +31975,Tombs of the Blind Dead (La noche del terror ciego) (1972),Horror|Mystery +31983,"Sicilian Clan, The (Clan des Siciliens, Le) (1969)",Crime|Drama +31991,Love Me Tonight (1932),Comedy|Musical +31998,"Hole in My Heart, A (Hål i mitt hjärta, Ett) (2004)",Drama +32002,Bigger Than the Sky (2005),Comedy|Drama|Romance +32009,Tyler Perry's Diary of a Mad Black Woman (2005),Comedy|Drama|Romance +32011,Cursed (2005),Horror|Thriller +32013,Loop the Loop (Up and Down) (Horem pádem) (2004),Comedy +32015,Gory Gory Hallelujah (2003),Comedy|Fantasy|Horror +32017,"Pacifier, The (2005)",Action|Comedy +32019,Be Cool (2005),Comedy|Crime|Musical +32022,Gunner Palace (2004),Documentary|War +32025,Walk on Water (2004),Drama|Thriller +32029,Hostage (2005),Action|Crime|Drama|Thriller +32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX +32049,"Laughing Policeman, The (1973)",Crime|Drama|Thriller +32056,Bopha! (1993),Drama +32058,Class Action (1991),Drama +32060,"Cat and the Canary, The (1927)",Horror|Mystery +32062,Courage Mountain (1990),Adventure|Children|Drama +32074,Kiss the Bride (2002),Drama|Romance +32076,Godzilla vs. The Sea Monster (Gojira-Ebira-Mosura: Nankai no daiketto) (1966),Action|Adventure|Fantasy|Sci-Fi +32078,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi +32082,That Championship Season (1982),Drama +32084,Crush (1992),Drama +32088,DNA (1997),Action|Sci-Fi +32090,"Low Life, The (1995)",Drama +32109,Rendez-vous (1985),Drama +32116,"Oh, God! You Devil (1984)",Comedy +32120,Amongst Friends (1993),Crime|Drama +32122,Asfalto (2000),Drama +32124,God Is Brazilian (Deus É Brasileiro) (2003),Adventure|Comedy|Fantasy +32126,April Captains (Capitães de Abril) (2000),Drama +32128,Blackball (2003),Comedy|Drama +32139,"Agony and the Ecstasy, The (1965)",Drama +32141,Return to Peyton Place (1961),Drama +32149,Butch and Sundance: The Early Days (1979),Western +32151,It Happened to Jane (1959),Comedy +32153,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy +32156,Hello Down There (1969),Comedy|Sci-Fi +32158,All in a Night's Work (1961),Comedy +32160,Twentieth Century (1934),Comedy +32162,My Sister Eileen (1955),Comedy|Musical|Romance +32166,Strangers When We Meet (1960),Drama +32168,Or (a.k.a. My Treasure) (2004),Drama +32170,Chronicles (Crónicas) (2004),Crime|Drama +32172,Lackawanna Blues (2005),Drama +32174,"Green Berets, The (1968)",Action|Drama|War +32179,Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958),Crime|Drama|Thriller +32181,"Diary of a Chambermaid, The (1946)",Drama|Romance +32196,"Violent Cop (Sono otoko, kyôbô ni tsuki) (1989)",Action|Crime|Drama|Thriller +32199,Four Shades of Brown (Fyra nyanser av brunt) (2004),Comedy|Drama +32203,Brian's Song (1971),Drama +32211,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller +32213,Cube Zero (2004),Horror|Mystery|Sci-Fi|Thriller +32216,Into the Sun (2005),Action|Adventure|Thriller +32225,Project Grizzly (1996),Documentary +32230,"Snow Queen, The (Lumikuningatar) (1986)",Children|Fantasy +32234,Julia (1977),Drama +32239,Save the Green Planet! (Jigureul jikyeora!) (2003),Comedy|Drama|Horror|Sci-Fi|Thriller +32243,Stealing Rembrandt (Rembrandt) (2003),Action|Comedy|Crime +32250,"Snake of June, A (Rokugatsu no hebi) (2002)",Drama|Mystery +32261,Thirty Seconds Over Tokyo (1944),Drama|War +32263,Vares: Private Eye (Vares - Yksityisetsivä) (2004),Action|Comedy|Crime|Thriller +32277,Girl Crazy (1943),Comedy|Musical|Romance +32280,"3 Penny Opera, The (Threepenny Opera, The) (3 Groschen-Oper, Die) (1931)",Crime|Musical +32285,"Boys & Girl from County Clare, The (a.k.a. The Boys from County Clare) (2003)",Comedy|Musical|Romance +32289,Ice Princess (2005),Children|Comedy|Drama +32291,Melinda and Melinda (2004),Comedy|Drama +32294,Milk and Honey (2003),Drama +32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime +32298,Guess Who (2005),Comedy|Romance +32300,D.E.B.S. (2004),Action|Comedy +32302,"League of Ordinary Gentlemen, A (2004)",Documentary +32314,Incident at Loch Ness (2004),Adventure|Comedy|Documentary +32316,"River, The (1951)",Drama|Romance +32318,Virginia's Run (2002),Drama +32325,Yanks (1979),Drama|Romance|War +32329,Paradise Alley (1978),Drama +32333,"Seagull's Laughter, The (Mávahlátur) (2001)",Comedy|Drama +32335,Wild Horses (Caballos salvajes) (1995),Drama +32342,Woman Thou Art Loosed (2004),Drama +32345,Arrowsmith (1931),Drama +32347,Barbary Coast (1935),Adventure|Drama|Romance|Western +32349,Stella Dallas (1937),Drama +32352,"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)",Adventure|Animation|Comedy|Fantasy +32354,Free Radicals (Böse Zellen) (2003),Drama +32357,"Unfaithful, The (1947)",Drama|Film-Noir +32361,Come and Get It (1936),Drama +32369,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller +32371,Call Northside 777 (1948),Crime|Drama|Film-Noir +32375,Young Torless (1966),Drama +32381,Bells Are Ringing (1960),Comedy|Musical|Romance +32383,Finian's Rainbow (1968),Fantasy|Musical +32385,"Toolbox Murders, The (1978)",Horror|Thriller +32387,"Sword of Doom, The (Dai-bosatsu tôge) (1966)",Action|Drama +32389,Deep Crimson (Profundo carmesí) (1996),Crime|Drama +32392,800 Bullets (800 Balas) (2002),Comedy|Crime|Drama|Western +32395,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller +32415,"Ebola Syndrome, The (Yi boh laai beng duk) (1996)",Comedy|Horror +32419,"Music of Chance, The (1993)",Drama +32421,Tammy and the T-Rex (1994),Comedy|Sci-Fi +32433,Mixed Blood (1984),Action|Drama +32440,If Looks Could Kill (1991),Action|Comedy +32442,Greedy (1994),Comedy +32444,Carmen (1983),Drama|Musical|Romance +32452,My Neighbors the Yamadas (Hôhokekyo tonari no Yamada-kun) (1999),Animation|Comedy +32456,"Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)",Animation|Comedy|Drama|Fantasy +32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama +32464,City of Hope (1991),Drama +32469,We're No Angels (1955),Comedy|Crime|Drama +32471,Sons and Lovers (1960),Drama +32478,"Arrow, The (1997)",Drama +32483,Ruggles of Red Gap (1935),Comedy|Romance +32485,Greetings (1968),Comedy +32493,End of the Century: The Story of the Ramones (2003),Documentary|Musical +32497,Love Letter (1995) ,Drama|Romance +32501,Natural City (2003),Action|Romance|Sci-Fi +32509,This Sporting Life (1963),Drama +32511,"Touch of Zen, A (Xia nu) (1971)",Action|Adventure +32515,Walker (1987),Adventure|Drama|War|Western +32518,Zu: Warriors from the Magic Mountain (Xin shu shan jian ke) (1983),Action|Adventure|Fantasy|Horror +32520,Whistle Down the Wind (1961),Drama +32525,"Earrings of Madame de..., The (Madame de...) (1953)",Drama +32535,No One Writes to the Colonel (El coronel no tiene quien le escriba) (1999),Drama +32551,Speedy (1928),Action|Comedy +32554,Memories (Memorîzu) (1995),Animation|Fantasy|Sci-Fi|Thriller +32560,Invasion of Astro-Monster (Godzilla vs. Monster Zero) (Kaijû daisensô) (1965),Action|Adventure|Sci-Fi +32562,Harvie Krumpet (2003),Animation|Comedy|Drama +32567,Investigating Sex (a.k.a. Intimate Affairs) (2001),Comedy|Drama +32582,"Wild Parrots of Telegraph Hill, The (2003)",Documentary +32584,"Ballad of Jack and Rose, The (2005)",Drama +32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller +32589,Beauty Shop (2005),Comedy +32591,Look at Me (Comme une image) (2004),Comedy|Drama|Romance +32593,Dust to Glory (2005),Action|Adventure|Documentary +32596,Sahara (2005),Action|Adventure|Comedy +32598,Fever Pitch (2005),Comedy|Romance +32600,Eros (2004),Drama +32602,Winter Solstice (2004),Drama +32605,Smile (2005),Drama +32617,Eye of the Tiger (1986),Action +32620,Not on the Lips (Pas sur la bouche) (2003),Comedy|Musical|Romance +32625,"Krakatoa, East of Java (1969)",Adventure|Drama +32627,Rhinestone (1984),Comedy +32632,Electra Glide in Blue (1973),Action|Crime +32646,Bring on the Night (1985),Documentary|Musical +32649,"Special Day, A (Giornata particolare, Una) (1977)",Drama|War +32653,This Land Is Mine (1943),Drama|War +32655,"Foul King, The (Banchikwang) (2000)",Comedy +32657,"Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)",Animation|Drama +32659,Tanguy (2001),Comedy +32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy +32668,Blind Horizon (2003),Drama|Thriller +32674,Islands in the Stream (1977),Drama +32677,Go for Broke! (1951),Drama|War +32686,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller +32689,"Reuben, Reuben (1983)",Comedy|Drama|Romance +32705,Why Has Bodhi-Dharma Left for the East?: A Zen Fable (Dharmaga tongjoguro kan kkadalgun) (1989),Drama +32707,Blue (1993),Drama +32716,Bilitis (1977),Drama|Romance +32719,Burn! (Queimada) (1969),Drama|Thriller +32721,Battle of the Bulge (1965),Action|Drama|War +32724,Ghosts... of the Civil Dead (1988),Crime|Drama +32728,"Little Girl Who Lives Down the Lane, The (1976)",Drama|Mystery|Thriller +32735,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy +32737,Age of Consent (1969),Comedy|Drama|Romance +32741,Oedipus Rex (Edipo re) (1967),Drama +32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller +32770,Brothers (Brødre) (2004),Drama +32773,Parenti serpenti (1992),Comedy +32777,Major Barbara (1941),Comedy +32779,Steppenwolf (1974),Drama +32781,Hawaii (1966),Drama +32783,Pretty Maids All in a Row (1971),Comedy|Crime|Thriller +32788,Loners (Samotári) (2000),Drama +32792,"Red Desert (Deserto rosso, Il) (1964)",Drama +32797,Satan's Brew (Satansbraten) (1976),Comedy|Drama +32799,Maidens in Uniform (Mädchen in Uniform) (1931),Drama|Romance +32811,Diary of a Lost Girl (Tagebuch einer Verlorenen) (1929),Drama +32825,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi +32830,44 Minutes: The North Hollywood Shoot-Out (2003),Action|Crime +32834,Macbeth (1948),Drama +32836,Garage Olimpo (1999),Drama +32840,Vincent (1982),Animation +32844,Waterloo Bridge (1940),Drama|Romance|War +32851,Hotel Terminus: The Life and Times of Klaus Barbie (Hôtel Terminus) (1988),Documentary +32853,"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)",Documentary|War +32860,Premiers désirs (1984),Drama|Romance +32862,With Six You Get Eggroll (1968),Comedy|Romance +32864,"Move Over, Darling (1963)",Comedy|Romance +32866,Love Me or Leave Me (1955),Drama|Musical|Romance +32875,Holiday (Jour de fête) (1949),Comedy +32882,"Big Store, The (1941)",Comedy|Musical +32890,Mother Küsters Goes to Heaven (Mutter Küsters' Fahrt zum Himmel) (1975),Drama +32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War +32898,"Trip to the Moon, A (Voyage dans la lune, Le) (1902)",Action|Adventure|Fantasy|Sci-Fi +32902,Whisky (2004),Comedy|Drama +32906,"Ascent, The (Voskhozhdeniye) (1977)",Drama|War +32914,Carrie (2002),Drama|Horror|Thriller +32917,Boccaccio '70 (1962),Comedy|Fantasy|Romance +32923,Frankenfish (2004),Action|Comedy|Horror|Sci-Fi|Thriller +32925,Who's Your Daddy? (2004),Comedy +32928,Control (2004),Crime|Sci-Fi|Thriller +32935,Evil Remains (Trespassing) (2004),Horror|Thriller +32941,"Self-Made Hero, A (Un héros très discret) (1996)",Comedy|Drama +32943,Life Is Sweet (1990),Comedy|Drama +32952,Ride the Pink Horse (1947),Drama|Film-Noir|Mystery|Thriller +32954,"Chant of Jimmy Blacksmith, The (1978)",Drama +32957,Double Suicide (Shinjû: Ten no amijima) (1969),Drama|Romance +32959,Boy (Shônen) (1969),Drama +32966,Let Him Have It (1991),Crime|Drama +32968,Guelwaar (1993),Drama +32972,Dr. Akagi (Kanzo sensei) (1998),Comedy|Drama|War +32974,Black Rain (Kuroi ame) (1989),Drama|War +32979,Alexandra's Project (2003),Drama|Thriller +32988,Clean (2004),Drama +32994,"Delicate Art of Parking, The (2003)",Comedy +32999,Wilson (1944),Drama +33001,Blossoms in the Dust (1941),Drama +33004,"Hitchhiker's Guide to the Galaxy, The (2005)",Adventure|Comedy|Sci-Fi +33008,King's Game (Kongekabale) (2004),Thriller +33019,Barefoot (Barfuss) (2005),Comedy|Drama|Romance +33021,Dark Habits (Entre tinieblas) (1983),Comedy|Drama +33027,Snake and Crane Arts of Shaolin (She hao ba bu) (1978),Action|Drama +33036,"Eiger Sanction, The (1975)",Action|Adventure|Drama|Thriller +33049,It Started in Naples (1960),Comedy|Drama +33051,Skin Game (1971),Comedy|Romance|Western +33072,F for Fake (Vérités et mensonges) (1973),Documentary|Mystery +33081,Love Comes Softly (2003),Drama|Romance|Western +33085,"Amityville Horror, The (2005)",Horror|Thriller +33090,Mutant Aliens (2001),Animation|Comedy|Sci-Fi +33092,Acts of Worship (2001) ,Drama +33098,Ike: Countdown to D-Day (2004),Action|Adventure|Drama|War +33102,Cry of the Banshee (1970),Horror +33110,Phantom Lady (1944),Crime|Film-Noir|Mystery +33113,Act of Violence (1948),Drama|Film-Noir|Thriller +33117,Rouge (Yin ji kau) (1988),Drama|Fantasy|Mystery|Romance +33119,Miracle in Milan (Miracolo a Milano) (1951),Comedy|Drama|Fantasy +33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War +33126,"Frisco Kid, The (1979)",Comedy|Western +33129,Onmyoji (Onmyoji: The Yin Yang Master) (2001),Action|Drama|Fantasy|Horror +33132,State Property 2 (2005),Action|Crime|Drama +33134,"Year of the Yao, The (2004)",Documentary +33136,House of D (2004),Drama +33138,Palindromes (2004),Adventure|Comedy|Drama +33140,Down and Derby (2005),Children|Comedy +33142,"Wake in Providence, A (1999)",Comedy +33145,"Lot Like Love, A (2005)",Comedy|Drama|Romance +33148,King's Ransom (2005),Comedy|Crime +33150,"Game of Their Lives, The (2005)",Drama +33152,Madison (2001),Drama +33154,Enron: The Smartest Guys in the Room (2005),Documentary +33158,xXx: State of the Union (2005),Action|Crime|Thriller +33160,Death of a Dynasty (2003),Comedy +33162,Kingdom of Heaven (2005),Action|Drama|Romance|War +33164,House of Wax (2005),Horror|Thriller +33166,Crash (2004),Crime|Drama +33168,Jiminy Glick in La La Wood (2004),Comedy|Mystery +33171,Mysterious Skin (2004),Drama|Mystery +33188,Mischief (1985),Comedy|Romance +33191,Jubal (1956),Western +33193,Viva María! (1965),Adventure|Comedy|Western +33201,Between Your Legs (Entre las piernas) (1999),Drama|Mystery|Romance|Thriller +33226,Zatoichi Meets the One-Armed Swordsman (Shin zatô Ichi: Yabure! Tôjin-ken) (Zatôichi 22) (1971),Action|Adventure|Drama +33229,"Angry Silence, The (1960)",Drama +33235,Isadora (1968),Drama +33237,San Francisco (1936),Drama|Musical|Romance +33245,Earth (Zemlya) (1930),Drama +33247,Torments (El) (This Strange Passion) (1953),Drama|Romance +33251,"Bitch, The (La chienne) (1931)",Drama +33253,Erendira (1983),Drama +33255,"Private Lives of Elizabeth and Essex, The (1939)",Drama|Romance +33261,"Search, The (1948)",Drama|War +33264,Satan's Tango (Sátántangó) (1994),Drama +33267,On Borrowed Time (1939),Comedy|Drama|Fantasy +33270,"Taste of Tea, The (Cha no aji) (2004)",Comedy|Drama +33288,Kes (1969),Drama +33292,"Human Comedy, The (1943)",Drama +33294,Vampire Hunter D (1985),Animation|Fantasy|Horror +33296,Buying the Cow (2002),Comedy|Romance +33310,"Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)",Drama|Romance +33312,"Cocoanuts, The (1929)",Comedy|Musical +33316,"Bridge, The (Brücke, Die) (1959)",Drama|War +33318,In the Time of the Butterflies (2001),Crime|Drama +33321,Road House (1948),Drama|Film-Noir +33328,Dark Eyes (Oci ciornie) (1987),Comedy|Drama|Romance +33330,Edges of the Lord (2001),Drama|War +33340,Kids Return (Kizzu ritân) (1996),Drama +33342,"Fearless Freaks, The (2005)",Documentary|Musical +33358,Off the Map (2003),Comedy|Drama +33363,Unconscious (Inconscientes) (2004),Comedy|Mystery|Romance +33376,"Tesseract, The (2003)",Action|Crime|Drama|Thriller +33380,25 Watts (2001),Comedy|Drama +33389,"Hiding Place, The (1975)",Drama|War +33393,"Keys of the Kingdom, The (1944)",Drama +33397,300 Miles to Heaven (300 Mil do Nieba) (1989),Drama +33401,"Adventurer, The (1917)",Comedy +33410,Crackerjack (2002),Comedy +33415,Solino (2002),Comedy|Drama +33421,Dear Wendy (2005),Drama +33424,"List of Adrian Messenger, The (1963)",Crime|Drama|Mystery +33426,9 Souls (Nain souruzu) (2003),Drama +33435,Los Angeles Plays Itself (2003),Documentary +33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller +33443,"Red Squirrel, The (Ardilla roja, La) (1993)",Comedy|Drama|Mystery|Romance +33445,Martín (Hache) (1997),Drama +33451,"Ugly, Dirty and Bad (Brutti sporchi e cattivi) (1976)",Comedy|Drama +33454,Léolo (1992),Comedy|Drama +33463,DuckTales: The Movie - Treasure of the Lost Lamp (1990),Adventure|Animation|Children|Comedy|Fantasy +33480,Babes in Arms (1939),Comedy|Musical +33487,Samaritan Girl (Samaria) (2004),Drama +33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi +33495,Kicking & Screaming (2005),Comedy +33499,Monster-in-Law (2005),Comedy|Romance +33507,Agatha (1979),Drama|Mystery +33524,Death Takes a Holiday (1934),Fantasy|Romance +33533,Vodka Lemon (2003),Comedy|Drama +33539,Deep Blue (2003),Documentary +33555,"Invisible Woman, The (1940)",Comedy|Romance|Sci-Fi +33558,"Snow Walker, The (2003)",Adventure|Drama +33564,Divorce - Italian Style (Divorzio all'italiana) (1961),Comedy +33567,Carefree (1938),Comedy|Musical|Romance +33573,Wu Tang Master (Tian shi zhuang xie) (1983),Action +33579,China Strike Force (Leui ting jin ging) (2000),Action +33581,Bad Boy (Dawg) (2002),Comedy|Drama|Romance +33585,9 Songs (2004),Drama|Romance +33587,"Uninvited, The (1944)",Horror|Mystery|Romance +33592,Bad Guy (Nabbeun namja) (2001),Drama +33603,Simon (2004),Comedy|Drama +33608,December 7th (1943),Documentary|War +33610,Bataan (1943),War +33615,Madagascar (2005),Adventure|Animation|Children|Comedy +33621,Somersault (2004),Drama +33624,11 Harrowhouse (1974),Comedy|Crime +33629,Airborne (1993),Adventure|Comedy +33639,Mad Hot Ballroom (2005),Children|Documentary +33641,Tell Them Who You Are (2004),Documentary +33644,Dominion: Prequel to the Exorcist (2005),Horror|Thriller +33646,"Longest Yard, The (2005)",Comedy|Drama +33649,Saving Face (2004),Comedy|Drama|Romance +33655,Most Wanted (1997),Action|Thriller +33660,Cinderella Man (2005),Drama|Romance +33669,"Sisterhood of the Traveling Pants, The (2005)",Adventure|Comedy|Drama +33672,Lords of Dogtown (2005),Action|Comedy|Drama +33675,After You (Après vous...) (2003),Comedy|Romance +33677,Rock School (2005),Documentary +33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance +33681,"Adventures of Sharkboy and Lavagirl 3-D, The (2005)",Action|Adventure|Children|Fantasy +33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller +33685,"Honeymooners, The (2005)",Comedy +33688,Parineeta (2005),Drama|Musical|Romance +33709,Toto le héros (1991),Drama +33722,Ladies in Lavender (2004),Comedy|Drama|Romance +33725,It's All Gone Pete Tong (2004),Comedy|Drama|Musical +33737,Daybreak (1993),Action|Drama|Romance|Sci-Fi +33743,When Trumpets Fade (1998),Drama|War +33750,Innocent Voices (Voces inocentes) (2004),Drama|War +33755,Godzilla vs. Biollante (Gojira vs. Biorante) (1989) ,Action|Sci-Fi +33760,Anna and the King of Siam (1946),Drama|Romance +33762,Dirty Filthy Love (2004),Drama|Romance +33767,Good Neighbor Sam (1964),Comedy +33779,Eddie Izzard: Dress to Kill (1999),Comedy +33781,Quo Vadis (1951),Drama|Romance +33790,"Captain's Paradise, The (1953)",Comedy +33794,Batman Begins (2005),Action|Crime|IMAX +33799,Aragami (2003),Action|Fantasy|Horror +33801,Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004),Action|Adventure|Fantasy|Sci-Fi +33808,Kings & Queen (Rois et reine) (2004),Comedy|Drama +33815,"Perfect Man, The (2005)",Comedy|Drama|Romance +33817,My Summer of Love (2004),Drama|Romance +33819,Heights (2004),Drama +33821,"Deal, The (2005)",Drama +33823,"Bridge of San Luis Rey, The (2004)",Drama +33826,Saint Ralph (2004),Comedy|Drama +33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance +33832,Yes (2004),Drama +33834,Land of the Dead (2005),Action|Horror|Thriller +33836,Bewitched (2005),Comedy|Fantasy|Romance +33838,Rize (2005),Documentary +33844,Exiles (Exils) (2004),Adventure|Drama +33847,Home Movie (2001),Documentary +33852,Becky Sharp (1935),Drama|Romance|War +33861,Danger: Diabolik (Diabolik) (1968),Action|Crime|Thriller +33863,"Trail of the Lonesome Pine, The (1936)",Drama|Romance +33880,Me and You and Everyone We Know (2005),Comedy|Drama +33893,"Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)",Comedy|Crime|Thriller +33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror +33898,Happily Ever After (Ils se marièrent et eurent beaucoup d'enfants) (2004),Comedy|Drama +33901,Satan's Little Helper (2004),Comedy|Horror +33903,"Edukators, The (Die Fetten Jahre sind vorbei) (2004)",Comedy|Crime|Drama|Romance +33905,Somebody Up There Likes Me (1956),Action|Crime|Drama +33912,"Unmarried Woman, An (1978)",Comedy|Drama|Romance +33914,"Racket, The (1951)",Crime|Drama|Film-Noir +33917,"Member of the Wedding, The (1952)",Drama +33919,Coronado (2003),Action|Adventure|War +33921,Retrogade (2004),Action|Adventure|Sci-Fi +33928,Trekkies 2 (2004),Documentary|Sci-Fi +33930,Man with the Screaming Brain (2005),Adventure|Comedy|Sci-Fi +33933,Ulzana's Raid (1972),Adventure|Western +33940,Rabbit Test (1978),Comedy +33945,"New Land, The (Nybyggarna) (1972)",Drama|Western +33956,"Adventures of Mark Twain, The (1944)",Adventure|Drama +33958,Bordertown (1935),Crime|Drama +33966,Cop and ½ (1993),Comedy +33970,Equinox (1992),Drama|Mystery|Thriller +33972,Father's Little Dividend (1951),Comedy|Romance +33974,For Pete's Sake (1974),Comedy +33988,Twenty Bucks (1993),Comedy +33994,Silent Witness (Do Not Disturb) (1999),Action|Comedy|Thriller +33998,Deceived (1991),Thriller +34002,Room Service (1938),Comedy +34004,Desert Saints (2002),Action|Thriller +34008,Caterina in the Big City (Caterina va in città) (2003),Drama|Romance +34016,My Friends (Amici miei) (1975),Comedy +34018,At the Circus (1939),Comedy|Musical +34026,"Outfit, The (1973)",Crime|Drama|Thriller +34032,Modigliani (2004),Drama +34039,Broadway Melody of 1940 (1940),Musical +34045,"I Inside, The (2004)",Fantasy|Mystery|Sci-Fi +34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller +34051,My Brilliant Career (1979),Drama|Romance +34057,Godzilla vs. Hedorah (Gojira tai Hedorâ) (Godzilla vs. The Smog Monster) (1971) ,Horror|Sci-Fi +34063,Gambit (1966),Comedy|Crime +34065,Billion Dollar Brain (1967),Drama|Thriller +34072,"March of the Penguins (Marche de l'empereur, La) (2005)",Documentary +34076,Right Now (À tout de suite) (2004),Crime|Drama|Romance|Thriller +34099,Julian Po (1997),Comedy|Drama +34111,"God Who Wasn't There, The (2005)",Documentary +34115,Black Belt Jones (1974),Action|Comedy +34129,Rebound (2005),Comedy +34135,Bonjour Monsieur Shlomi (Ha-Kochavim Shel Shlomi) (2003),Comedy|Drama +34138,The Inner Circle (1991),Drama +34143,Dark Water (2005),Drama|Horror|Thriller +34148,"Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)",Drama +34150,Fantastic Four (2005),Action|Adventure|Sci-Fi +34153,Murderball (2005),Documentary +34155,Saraband (2003),Drama +34158,Julie Johnson (2001),Drama +34162,Wedding Crashers (2005),Comedy|Romance +34164,Happy Endings (2005),Comedy|Drama +34170,C.H.O.M.P.S. (1979),Comedy|Sci-Fi +34177,"Hindenburg, The (1975)",Drama|Thriller +34185,Staying Together (1989),Comedy|Drama +34189,Twin Sitters (1994),Thriller +34193,Conflict (1945),Drama|Film-Noir +34198,Russian Dolls (Les poupées russes) (2005),Comedy|Romance +34206,Crippled Masters (Tian can di que) (1979),Action|Drama +34214,"Generale Della Rovere, Il (1959)",Drama +34216,Rick (2003),Comedy|Drama +34224,No Blade of Grass (1970),Drama|Sci-Fi +34226,"Time to Love and a Time to Die, A (1958)",Drama|Romance|War +34229,"Big Sky, The (1952)",Drama|Western +34231,Fighter in the Wind (2004),Action|Drama +34234,Pornography (Pornografia) (2003),Drama|Romance|War +34238,Symmetry (Symetria) (2003),Crime|Drama +34240,"Karol: A Man Who Became Pope (Karol, un uomo diventato Papa) (Karol. Czlowiek, który zostal papiezem) (2005)",Drama +34246,Family Resemblances (Un air de famille) (1996),Comedy +34271,Hustle & Flow (2005),Crime|Drama +34292,Hardware (1990),Action|Horror|Sci-Fi +34299,"Appaloosa, The (1966)",Western +34306,Journey Into Fear (1943),Drama|Film-Noir|War +34312,"Calcium Kid, The (2004)",Comedy +34314,Funny Ha Ha (2002),Comedy|Drama +34319,"Island, The (2005)",Action|Sci-Fi|Thriller +34321,Bad News Bears (2005),Children|Comedy +34323,"Devil's Rejects, The (2005)",Action|Crime|Horror +34326,Last Days (2005),Drama +34330,November (2004),Drama|Mystery +34332,Sky High (2005),Action|Adventure|Children|Comedy +34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller +34336,Must Love Dogs (2005),Comedy|Romance +34338,"Aristocrats, The (2005)",Comedy|Documentary +34353,Twice in a Lifetime (1985),Drama +34359,Georgy Girl (1966),Comedy +34364,This Is My Life (1992),Comedy|Drama +34369,The Music Lovers (1970),Drama +34371,Kiss and Make-Up (1934),Comedy|Musical|Romance +34373,Killer Condom (Kondom des Grauens) (1996),Comedy|Horror|Romance|Sci-Fi +34375,"Touch of Spice, A (Politiki kouzina) (2003)",Comedy|Drama +34378,Dust Devil (1992),Horror|Mystery|Thriller +34386,Phone (Pon) (2002),Drama|Horror|Mystery|Sci-Fi|Thriller +34397,"Order, The (2001)",Action|Adventure|Drama|Thriller +34405,Serenity (2005),Action|Adventure|Sci-Fi +34411,End of Suburbia: Oil Depletion and the Collapse of the American Dream (2004),Documentary +34416,Let's Get Lost (1988),Documentary|Musical +34426,"Talent Given Us, The (2004)",Comedy|Drama +34435,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller +34437,Broken Flowers (2005),Comedy|Drama +34450,Miracles - Mr. Canton and Lady Rose (1989),Action|Comedy|Crime|Drama +34464,Christmas in August (Palwolui Christmas) (1998),Drama|Romance +34466,Hum Dil De Chuke Sanam (1999),Drama|Romance +34469,Baby Face (1933),Drama +34473,"Star, The (1952)",Drama +34482,"Browning Version, The (1951)",Drama +34488,14 Hours (Fourteen Hours) (1951),Drama|Film-Noir|Thriller +34499,"Heart Is Deceitful Above All Things, The (2004)",Drama +34505,Whispering Corridors (Yeogo Goedam) (1998),Drama|Horror +34511,Man-Thing (2005),Action|Horror|Sci-Fi +34517,Berserk (1967),Horror|Mystery|Thriller +34520,"Dukes of Hazzard, The (2005)",Action|Adventure|Comedy +34523,The Chumscrubber (2005),Comedy|Drama +34526,Secuestro Express (2004),Action|Drama|Thriller +34528,Junebug (2005),Comedy|Drama +34530,Deuce Bigalow: European Gigolo (2005),Comedy +34532,"Skeleton Key, The (2005)",Drama|Horror|Mystery|Thriller +34534,Four Brothers (2005),Action|Crime|Drama +34536,The Great Raid (2005),Action|Drama|War +34538,Asylum (2005),Romance|Thriller +34540,Pretty Persuasion (2005),Comedy|Drama +34542,Grizzly Man (2005),Documentary +34548,"Tree of Wooden Clogs, The (L'albero degli zoccoli) (1978)",Drama +34552,"Girl in the Café, The (2005)",Drama|Romance +34579,"24th Day, The (2004)",Drama|Thriller +34583,Prime Cut (1972),Action|Crime|Drama +34608,"Best of Everything, The (1959)",Drama|Romance +34624,Summer Magic (1963),Children|Comedy|Musical +34643,"Three Stooges Meet Hercules, The (1962)",Comedy|Fantasy +34645,Race with the Devil (1975),Action|Horror|Mystery +34648,Acacia (2003),Horror +34659,She Creature (Mermaid Chronicles Part 1: She Creature) (2001),Fantasy|Horror|Thriller +34666,Attila (Attila the Hun) (2001),Action|Adventure|Drama|War +34696,Dirty Money (Un flic) (1972),Crime|Drama +34729,One Point O (2004),Drama|Mystery|Sci-Fi|Thriller +34767,My Date with Drew (2004),Comedy|Documentary|Romance +34800,Private Resort (1985),Comedy +34811,Pusher II: With Blood on My Hands (2004),Action|Crime|Drama|Thriller +35008,"Woman Rebels, A (Portrait of a Rebel) (1936)",Drama|Romance +35015,Duma (2005),Adventure|Drama +35050,Bitter Victory (1957),Action|Drama|Romance|War +35082,Lila Says (Lila dit ça) (2004),Crime|Drama|Romance +35331,Doomed to Die (1940),Crime|Drama|Mystery|Thriller +35347,Animal Farm (1954),Animation|Drama +35386,Winter Soldier (1972),Documentary|War +35618,"Third Wheel, The (2002)",Comedy|Romance +35629,"Sea, The (Hafið) (2002)",Drama +35636,Teen Witch (1989),Comedy +35640,"Last of Mrs. Cheyney, The (1937)",Comedy|Drama +35681,Koti-ikävä (2005),Drama +35721,Cast A Deadly Spell (1991),Comedy|Fantasy|Horror +35738,Movie Movie (1978),Comedy|Musical +35807,"Teahouse of the August Moon, The (1956)",Comedy +35826,Do Fish Do It? (Fickende Fische) (2002),Drama|Romance +35828,Black (2005),Drama +35836,"40-Year-Old Virgin, The (2005)",Comedy|Romance +35843,Who Killed Bambi? (Qui a tué Bambi?) (2003),Drama|Thriller +35853,Blackout (Contraband) (1940),Adventure|Romance +35906,Toolbox Murders (2004),Horror|Mystery +35957,Red Eye (2005),Horror|Thriller +36046,Lightning Bug (2004),Drama|Horror|Thriller +36056,Man of the West (1958),Western +36083,Main Hoon Na (2004),Action|Comedy|Drama +36086,Dilwale Dulhania Le Jayenge (1995),Comedy|Musical|Romance +36152,Dreamchild (1985),Drama|Fantasy|Romance +36247,Miss Sweden (Fröken Sverige) (2004),Drama +36264,My Cousin Rachel (1952),Drama|Mystery|Romance +36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller +36286,Nobody Will Speak of Us When We're Dead (Nadie hablará de nosotras cuando hayamos muerto) (1995),Drama +36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy +36312,"Key, The (1958)",Drama|Romance|War +36326,Strings (2004),Adventure|Fantasy +36363,Kin-Dza-Dza! (1986),Comedy|Drama|Sci-Fi +36373,Comrades: Almost a Love Story (Tian mi mi) (1996),Drama|Romance +36392,Supercross (2005),Action +36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War +36401,"Brothers Grimm, The (2005)",Comedy|Fantasy|Horror|Thriller +36405,"Desperadoes, The (1943)",Romance|Western +36426,Black Dragons (1942),Mystery|Thriller|War +36436,"Holy Girl, The (Niña santa, La) (2004)",Drama +36462,They Came Back (Les Revenants) (2004),Drama|Fantasy +36477,"Baxter, The (2005)",Comedy|Drama|Romance +36509,"Cave, The (2005)",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller +36511,Undiscovered (2005),Comedy|Drama|Romance +36513,Dirty Deeds (2005),Comedy +36517,"Constant Gardener, The (2005)",Drama|Thriller +36519,Transporter 2 (2005),Action|Crime|Thriller +36523,Margaret Cho: Assassin (2005),Comedy +36525,Just Like Heaven (2005),Comedy|Fantasy|Romance +36527,Proof (2005),Drama +36529,Lord of War (2005),Action|Crime|Drama|Thriller|War +36531,Venom (2005),Horror|Thriller +36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller +36535,Everything Is Illuminated (2005),Comedy|Drama +36537,Thumbsucker (2005),Comedy|Drama +36539,"Thing About My Folks, The (2005)",Comedy +36541,HellBent (2004),Horror|Thriller +36545,G (2002),Drama|Romance +36553,In Old Chicago (1937),Action|Drama|Musical|War +36576,Now and Forever (1934),Drama|Romance +36630,L.A. Without a Map (1998),Comedy|Drama|Romance +36683,Where Angels Fear to Tread (1991),Drama +36708,Family Guy Presents Stewie Griffin: The Untold Story (2005),Adventure|Animation|Comedy +36711,Born in Flames (1983),Comedy|Drama|Fantasy|Sci-Fi +36752,Revenge of the Ninja (1983),Action|Drama +36799,Sometimes in April (2005),Drama|War +36804,Bookies (2003),Comedy|Crime|Drama|Thriller +36816,Angel in My Pocket (1969),Comedy +36850,Police Story 2 (Ging chaat goo si juk jaap) (1988),Action|Comedy|Crime|Thriller +36883,"Jour se lève, Le (Daybreak) (1939)",Crime|Drama|Romance|Thriller +36902,International House (1933),Comedy +36931,New Police Story (Xin jing cha gu shi) (2004),Action|Crime|Drama +37058,"Edge of the World, The (1937)",Drama|Romance +37113,Golden Boy (1939),Drama +37211,Go West (1940),Comedy|Musical|Western +37240,Why We Fight (2005),Documentary +37257,"Companeros (Vamos a matar, compañeros) (1970)",Comedy|Western +37269,Will Penny (1968),Romance|Western +37277,200 Motels (1971),Comedy|Musical +37287,Gertrud (1964),Drama +37335,Come Drink with Me (Da zui xia) (1966),Action|Adventure|Crime +37375,Kitty Foyle (1940),Drama|Romance +37380,Doom (2005),Action|Horror|Sci-Fi +37382,Domino (2005),Crime|Drama|Thriller +37384,Waiting... (2005),Comedy +37386,Aeon Flux (2005),Action|Sci-Fi +37444,Frankenstein 90 (1984),Comedy|Horror|Romance +37462,Wedlock (1991),Action|Crime|Drama|Sci-Fi|Thriller +37475,"Unfinished Life, An (2005)",Drama +37477,"Man, The (2005)",Action|Comedy|Crime +37495,Survive Style 5+ (2004),Fantasy|Mystery|Romance|Thriller +37545,Woyzeck (1979),Drama +37626,It's a Gift (1934),Comedy +37653,Zozo (2005),Drama +37663,Blue Hill Avenue (2001),Crime|Drama +37683,Chapter Two (1979),Comedy|Drama|Romance +37689,16 Years of Alcohol (2003),Drama +37720,"Exorcism of Emily Rose, The (2005)",Crime|Drama|Horror|Thriller +37727,Flightplan (2005),Action|Drama|Thriller +37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance +37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama +37733,"History of Violence, A (2005)",Action|Crime|Drama|Thriller +37736,Oliver Twist (2005),Drama +37739,"Greatest Game Ever Played, The (2005)",Drama +37741,Capote (2005),Crime|Drama +37744,"Story of Vernon and Irene Castle, The (1939)",Musical|Romance|War +37785,"Anderson Tapes, The (1971)",Crime|Drama|Thriller +37824,Born to Fight (Kerd ma lui) (2004),Action|Adventure|Crime|Thriller +37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +37837,Côte d'Azur (Crustacés et coquillages) (2005),Comedy|Musical|Romance +37844,Roll Bounce (2005),Comedy|Drama|Romance +37846,Daltry Calhoun (2005),Comedy|Drama +37853,Into the Blue (2005),Action|Adventure|Crime|Thriller +37855,"Prize Winner of Defiance Ohio, The (2005)",Drama +37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy +37949,Kwik Stop (2001),Comedy|Drama|Romance +37955,Innocence (2004),Drama|Fantasy|Mystery +37957,4 (2005),Drama +37960,Book of Love (2004),Comedy|Drama +37967,American Yakuza (1993),Action|Drama|Thriller +37976,"Flowers of St. Francis (Francesco, giullare di Dio) (1950)",Drama +37982,Madhouse (2004),Horror|Thriller +38001,Man to Man (2005),Drama +38004,Münchhausen (1943),Adventure|Comedy|Fantasy +38036,Medea (1988),Drama +38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy +38046,Seven Swords (Chat gim) (2005),Action|Drama +38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller +38086,Wishing Stairs (Yeogo goedam 3: Yeowoo gyedan) (2003),Drama|Horror +38095,"Bittersweet Life, A (Dalkomhan insaeng) (2005)",Action|Crime|Drama +38097,Dumplings (Gaau ji) (2004),Drama|Horror|Thriller +38159,"Short Film About Love, A (Krótki film o milosci) (1988)",Drama|Romance +38164,"All This, and Heaven Too (1940)",Drama|Romance +38188,Bubble (2006),Crime|Drama|Mystery +38198,Darwin's Nightmare (2004),Documentary +38294,Beowulf & Grendel (2005),Action|Adventure|Drama|Fantasy +38304,No Direction Home: Bob Dylan (2005),Documentary +38320,Valerie and Her Week of Wonders (Valerie a týden divu) (1970),Adventure|Drama|Fantasy +38376,Everybody's Fine (Stanno tutti bene) (1990),Comedy|Drama +38384,Hail the Conquering Hero (1944),Comedy +38388,Goal! The Dream Begins (Goal!) (2005),Drama +38435,Forty Shades of Blue (2005),Drama +38473,Touch the Sound: A Sound Journey with Evelyn Glennie (2004),Documentary +38499,Angels in America (2003),Drama|Fantasy +38538,Speak (2004),Drama +38583,"Wraith, The (1986)",Action|Horror|Sci-Fi|Thriller +38600,Factotum (2005),Drama +38656,Sweet Movie (1974),Comedy|Drama +38688,By Dawn's Early Light (1990),Action|Drama|Thriller +38701,Don't Come Knocking (2005),Drama|Western +38713,Bullets or Ballots (1936),Crime|Drama|Thriller +38798,In Her Shoes (2005),Comedy|Drama +38824,Mother of Mine (Äideistä parhain) (2005),Drama +38839,"Ketchup Effect, The (Hip Hip Hora!) (2004)",Drama +38843,55 Days at Peking (1963),Drama|War +38849,Dead & Breakfast (2004),Comedy|Horror|Musical +38867,Freeze Frame (2004),Crime|Drama|Thriller +38881,Punishment Park (1971),Drama|Thriller +38884,"Mating Game, The (1959)",Comedy|Romance +38886,"Squid and the Whale, The (2005)",Comedy|Drama +38992,Two for the Money (2005),Drama +38994,Separate Lies (2005),Drama|Romance|Thriller +39048,Fjorton suger (2004),Drama|Romance +39052,Star Wreck: In the Pirkinning (2005),Action|Comedy|Sci-Fi +39075,Evelyn Prentice (1934),Drama|Mystery|Romance +39183,Brokeback Mountain (2005),Drama|Romance +39191,Blue Vinyl (2002),Documentary +39231,Elizabethtown (2005),Comedy|Drama|Romance +39234,North Country (2005),Drama +39244,Leila (1996),Drama|Romance +39292,"Good Night, and Good Luck. (2005)",Crime|Drama +39305,Li'l Abner (1959),Comedy|Musical +39307,Dreamer: Inspired by a True Story (2005),Children|Drama +39364,"Profession of Arms, The (Il mestiere delle armi) (2001)",Adventure|Drama|War +39369,Detective Story (1951),Crime|Drama|Film-Noir +39381,"Proposition, The (2005)",Crime|Drama|Western +39390,"Gospel, The (2005)",Drama +39394,Dandelion (2004),Drama +39398,C.S.A.: The Confederate States of America (2004),Comedy|Drama +39400,"Fog, The (2005)",Action|Horror|Mystery|Thriller +39402,Loggerheads (2005),Drama +39408,Left Behind: World at War (2005),Drama +39410,Protocols of Zion (2005),Documentary +39412,Living 'til the End (2005),Drama +39414,Shopgirl (2005),Comedy|Drama|Romance +39416,Kids in America (2005),Comedy|Drama +39419,Where the Truth Lies (2005),Drama|Thriller +39421,After School Special (a.k.a. Barely Legal) (2003),Comedy +39425,Emmanuel's Gift (2005),Documentary +39427,Stay (2005),Thriller +39429,Confess (2005),Drama|Thriller +39435,"Legend of Zorro, The (2005)",Action|Adventure|Drama|Western +39439,God's Sandbox (Tahara) (2002),Drama +39441,New York Doll (2005),Documentary +39444,"Weather Man, The (2005)",Comedy|Drama +39446,Saw II (2005),Horror|Thriller +39449,Prime (2005),Comedy|Drama|Romance +39474,One Wonderful Sunday (Subarashiki nichiyobi) (1947),Drama|Romance +39481,Will Success Spoil Rock Hunter? (1957),Comedy|Romance +39516,Don't Move (Non ti muovere) (2004),Drama +39524,"3 Rooms of Melancholia, The (Melancholian 3 huonetta) (2004)",Documentary +39529,"Race for Your Life, Charlie Brown (1977)",Adventure|Animation|Children +39615,Jerusalem (1996),Drama +39625,"Genius, Two Friends, and an Idiot, A (Trinity Is Back Again) (Un genio, due compari, un pollo) (1975)",Comedy|Western +39659,Teorema (1968),Drama +39703,Little Fish (2005),Crime|Drama|Romance|Thriller +39715,American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005),Comedy +39731,Champion (1949),Drama|Film-Noir|Romance +39740,Requiem for a Vampire (Vierges et vampires) (1971),Horror +39768,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War +39777,Tarzan the Ape Man (1932),Action|Adventure +39779,Tarzan and His Mate (1934),Action|Adventure +39786,Midnight Lace (1960),Mystery|Thriller +39796,Empire of the Wolves (L'empire des loups) (2005),Action|Drama|Thriller +39801,"Great Yokai War, The (Yôkai daisensô) (2005)",Adventure|Comedy|Fantasy|Horror +39818,"Swindle, The (Bidone, Il) (1955)",Drama +39824,Mahogany (1975),Drama|Romance +39857,Nordkraft (2005),Crime|Drama|Romance +39869,Manderlay (2005),Drama +39876,Week-End in Havana (1941),Comedy|Musical|Romance +39886,Nine Lives (2005),Drama +39896,South Central (1992),Action|Crime|Drama +39931,Damnation Alley (1977),Drama|Sci-Fi|Thriller +39934,"Bridges at Toko-Ri, The (1954)",Drama|Romance|War +39941,"Love on the Run (Amour en fuite, L') (1979)",Comedy|Drama|Romance +40010,Duck Season (Temporada de patos) (2004),Comedy +40015,Aprile (1998),Comedy +40033,"Adventures of Prince Achmed, The (Abenteuer des Prinzen Achmed, Die) (1926)",Adventure|Animation|Fantasy|Romance +40111,"Gore Gore Girls, The (1972)",Comedy|Horror|Mystery +40148,Revolver (2005),Crime|Drama|Thriller +40226,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi +40275,Everything Put Together (2000),Drama +40278,Jarhead (2005),Action|Drama|War +40291,Siblings (2004),Comedy +40337,Holy Guests (Ha-Ushpizin) (2004),Drama +40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi +40342,Romance & Cigarettes (2005),Comedy|Drama|Musical|Romance +40404,Al otro lado (2004),Drama +40412,Dead Man's Shoes (2004),Crime|Thriller +40414,Joyeux Noël (Merry Christmas) (2005),Drama|War +40422,"Count Dracula (Nachts, wenn Dracula erwacht) (1970)",Horror|Mystery +40425,Brides of Dracula (1960),Horror +40436,"Stratton Story, The (1949)",Drama|Romance +40457,"House That Dripped Blood, The (1971)",Horror|Mystery +40465,Island of the Burning Damned (Night of the Big Heat) (1967),Horror|Mystery|Sci-Fi|Thriller +40467,"Gorgon, The (1964)",Fantasy|Horror|Mystery +40478,Night of the Lepus (1972),Horror|Sci-Fi|Thriller +40491,"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)",Comedy|Drama +40494,Zombie and the Ghost Train (Zombie ja Kummitusjuna) (1991),Comedy|Drama +40559,Highball (1997),Comedy|Drama +40574,Get Rich or Die Tryin' (2005),Action|Crime|Drama +40578,Sword of the Beast (Kedamono no ken) (1965),Action|Drama +40581,Just Friends (2005),Comedy|Romance +40583,Syriana (2005),Drama|Thriller +40586,Calamari Union (1985),Comedy +40589,"Best Intentions, The (Den goda viljan) (1992)",Drama|Romance +40591,"Bohemian Life, The (La vie de bohème) (1992)",Comedy|Drama +40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama +40614,Derailed (2005),Drama|Thriller +40617,Creep (2004),Horror|Thriller +40629,Pride & Prejudice (2005),Drama|Romance +40679,Keep Your Distance (2005),Drama|Mystery|Romance +40681,Edison Force (a.k.a. Edison) (2005),Crime|Drama|Thriller +40697,Babylon 5,Sci-Fi +40699,Hi-Life (1998),Comedy|Romance +40723,Wolf Creek (2005),Crime|Horror|Thriller +40732,"Descent, The (2005)",Adventure|Drama|Horror|Thriller +40738,Summer Interlude (Sommarlek) (1951),Drama|Romance +40752,Takeshis' (2005),Comedy|Drama +40755,Forty Guns (1957),Drama|Western +40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX +40817,Dinner with Friends (2001),Comedy|Drama +40819,Walk the Line (2005),Drama|Musical|Romance +40826,Rent (2005),Drama|Musical|Romance +40828,"Story of Floating Weeds, A (Ukikusa monogatari) (1934)",Drama +40831,My Mother's Smile (a.k.a. The Religion Hour) (L'ora di religione) (Il sorriso di mia madre) (2002),Drama +40833,"Fists in the Pocket (Pugni in tasca, I) (1965)",Drama +40851,Zathura (2005),Action|Adventure|Children|Fantasy +40870,C.R.A.Z.Y. (2005),Drama +40887,Lonesome Jim (2005),Drama|Romance +40898,Our Vines Have Tender Grapes (1945),Drama +40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical +40952,Bee Season (2005),Drama +40955,Breakfast on Pluto (2005),Comedy|Drama +40959,"Ice Harvest, The (2005)",Action|Comedy|Crime|Thriller +40962,"Yours, Mine and Ours (2005)",Comedy|Romance +40964,In the Mix (2005),Comedy|Crime|Romance +40966,"Libertine, The (2004)",Drama +40969,First Descent (2005),Documentary +40973,"Wild Geese, The (1978)",Action|Adventure|Drama|War +40988,Hondo (1953),Western +41014,"Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)",Crime|Horror|Mystery|Thriller +41025,"Good Woman, A (2004)",Comedy|Drama|Romance +41058,Gate of Flesh (Nikutai no mon) (1964),Drama +41094,Brides (Nyfes) (2004),Drama|Romance +41104,"Evil of Frankenstein, The (1964)",Horror +41126,"Clockmaker of St. Paul, The (L'horloger de Saint-Paul) (1974)",Crime|Drama +41130,Welcome to the Roses (Bienvenue chez les Rozes) (2003),Comedy +41136,"Driver, The (1978)",Action|Crime|Film-Noir +41212,Mondovino (2004),Documentary +41226,Sounder (1972),Drama +41285,Match Point (2005),Crime|Drama|Romance +41336,Nazarin (Nazarín) (1959),Drama +41353,Ziegfeld Follies (1945),Comedy|Musical +41402,Lorna (1964),Drama +41411,"Deep, The (1977)",Adventure|Horror|Mystery|Thriller +41425,"Dying Gaul, The (2005)",Drama|Romance +41434,After Innocence (2005),Crime|Documentary +41499,"Citadel, The (1938)",Drama +41518,Beyond the Gates of Splendor (2002),Documentary +41523,"Southern Yankee, A (1948)",Comedy|War|Western +41527,Paradise Now (2005),Crime|Drama|Thriller|War +41564,"Kid & I, The (2005)",Comedy +41566,"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)",Adventure|Children|Fantasy +41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller +41571,Memoirs of a Geisha (2005),Drama|Romance +41573,"Family Stone, The (2005)",Comedy|Drama|Romance +41575,"Promise, The (Wu ji) (2005)",Action|Drama|Fantasy +41585,Kiss of Death (1947),Crime|Drama|Film-Noir +41596,Where Were You When the Lights Went Out? (1968),Comedy +41602,Balseros (Cuban Rafters) (2002),Documentary +41617,Havoc (2005),Crime|Drama|Romance +41627,Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967),Action|Drama +41644,Dog Nail Clipper (Koirankynnenleikkaaja) (2004),Drama +41650,Mother India (1957),Drama|Musical +41688,Cowards Bend the Knee (a.k.a. The Blue Hands) (2003),Drama|Romance +41691,"Generation, A (Pokolenie) (1955)",Drama|War +41699,"Ivan the Terrible, Part Two (Ivan Groznyy II: Boyarsky zagovor) (1958)",Drama +41704,"Shaft, The (a.k.a. Down) (2001)",Action|Horror|Mystery|Sci-Fi +41706,"Loveless, The (Breakdown) (1981)",Drama +41712,"Room for Romeo Brass, A (1999)",Comedy|Drama +41714,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy +41716,"Matador, The (2005)",Comedy|Drama|Thriller +41721,Look Both Ways (2005),Drama|Romance +41724,Wal-Mart: The High Cost of Low Price (2005),Documentary +41736,7 Seconds (2005),Action|Crime|Thriller +41753,8 Million Ways to Die (1986),Action|Adventure|Crime|Thriller +41762,Beyond the Forest (1949),Drama|Film-Noir|Thriller +41767,Phffft (1954),Comedy|Romance +41769,Mozart and the Whale (2005),Comedy|Drama|Romance +41792,"Organization, The (1971)",Crime|Drama|Thriller +41810,Cinderella Liberty (1973),Drama|Romance +41812,Knute Rockne All American (1940),Drama +41815,"Scene at the Sea, A (Ano natsu, ichiban shizukana umi) (1991)",Comedy|Romance +41820,Birdcage Inn (Paran daemun) (1998),Drama +41822,Real Fiction (Shilje sanghwang) (2000),Crime|Drama +41824,Address Unknown (2001),Drama|War +41828,Don't Look Now: We're Being Shot At (La grande vadrouille) (1966),Comedy|War +41831,They Died with Their Boots On (1941),Drama|Romance|War|Western +41863,"Three Burials of Melquiades Estrada, The (2006)",Adventure|Crime|Drama +41880,House of Strangers (1949),Drama|Film-Noir +41889,Lili (1953),Drama|Musical|Romance +41912,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery +41914,Executive Protection (Livvakterna) (2001),Action|Thriller +41941,"Aura, The (Aura, El) (2005)",Crime|Drama|Thriller +41974,"Ambushers, The (1967)",Comedy|Sci-Fi|Thriller +41980,Day of Anger (I giorni dell'ira) (1967),Western +41997,Munich (2005),Action|Crime|Drama|Thriller +42002,"Producers, The (2005)",Comedy|Musical +42004,Transamerica (2005),Adventure|Comedy|Drama +42007,Rumor Has It... (2005),Comedy|Drama|Romance +42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy +42011,Fun with Dick and Jane (2005),Comedy|Crime +42013,"Ringer, The (2005)",Comedy +42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance +42018,Mrs. Henderson Presents (2005),Comedy|Drama +42021,"White Countess, The (2005)",Drama +42053,Dirty Love (2005),Comedy|Romance +42094,"Spirit of the Beehive, The (Espíritu de la colmena, El) (1973)",Drama|Horror|Mystery +42150,Abouna (2002),Drama +42152,Interrogation (Przesluchanie) (1989),Crime|Drama|Thriller +42163,Richard Pryor: Live in Concert (1979),Comedy|Documentary +42172,Kevin & Perry Go Large (2000),Comedy +42176,"Ear, The (Ucho) (1970)",Drama|Thriller +42189,"Debutantes, Los (2003)",Crime|Drama|Thriller +42191,Luxo Jr. (1986),Animation|Children +42197,Keeping Mum (2005),Comedy|Crime +42208,Paheli (2005),Drama|Fantasy|Musical|Romance +42213,"Goodnight, Mister Tom (1999)",Drama +42217,Late Spring (Banshun) (1949),Drama +42285,"Dentist, The (1996)",Horror|Thriller +42312,"Personal History, Adventures, Experience, & Observation of David Copperfield the Younger, The (a.k.a. David Copperfield) (1935)",Adventure|Drama|Romance +42335,Familia (1996),Comedy +42341,How to Irritate People (1969),Comedy +42351,Threads (1984),Drama|Sci-Fi|War +42385,Yamakasi - Les samouraïs des temps modernes (2001),Action|Crime|Drama +42393,Love's Enduring Promise (2004),Drama|Romance +42407,After Image (Seeing in the Dark) (2001),Drama|Thriller +42413,After Midnight (1989),Horror|Thriller +42418,"New World, The (2005)",Adventure|Drama|Romance +42422,Voices of a Distant Star (Hoshi no koe) (2003),Animation|Drama|Romance|Sci-Fi +42491,"When You Comin' Back, Red Ryder? (1979)",Drama +42518,Christmas in Connecticut (1945),Comedy|Romance +42543,She (1935),Adventure|Fantasy|Romance +42546,Passport to Pimlico (1949),Comedy +42548,Whisky Galore (1949),Comedy|Crime +42550,A Run for Your Money (1949),Comedy +42553,"Master of Ballantrae, The (1953)",Adventure +42556,7 Faces of Dr. Lao (1964),Fantasy|Mystery|Western +42559,Samurai Assassin (Samurai) (1965),Action|Adventure|Drama +42562,Lies My Father Told Me (1975),Children|Drama +42584,We All Loved Each Other So Much (C'eravamo tanto amati) (1974),Comedy|Drama +42591,A.K. (1985),Documentary +42602,"Boys of Baraka, The (2005)",Documentary +42629,Tartuffe (Herr Tartüff) (1925),Drama +42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller +42634,Boys Don't Cry (Chlopaki nie placza) (2000),Comedy +42636,Superproduction (Superprodukcja) (2003),Comedy +42638,Grand Theft Parsons (2003),Comedy|Drama +42659,Devil's Pond (2003),Drama|Thriller +42661,"Cross of Lorraine, The (1943)",Drama|War +42677,"Cutting Edge: The Magic of Movie Editing, The (2004)",Documentary +42679,"Quiller Memorandum, The (1966)",Action|Drama|Mystery|Thriller +42681,49th Parallel (1941),Adventure|Drama|Thriller|War +42698,Yesterday (2004),Drama +42705,Penelope (1966),Comedy|Crime +42710,Ted Bundy (2002),Crime|Drama|Thriller +42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi +42721,BloodRayne (2005),Action|Fantasy +42723,Hostel (2005),Horror +42725,Grandma's Boy (2006),Comedy +42728,Tristan & Isolde (2006),Drama|Romance +42730,Glory Road (2006),Drama +42732,Last Holiday (2006),Comedy +42734,Hoodwinked! (2005),Animation|Children|Comedy +42736,April's Shower (2003),Comedy|Romance +42738,Underworld: Evolution (2006),Action|Fantasy|Horror +42740,Looking for Comedy in the Muslim World (2005),Comedy +42761,Casper Meets Wendy (1998),Adventure|Children|Comedy|Fantasy +42763,Hell Drivers (1957),Drama +42783,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance +42794,Buried Alive (1990),Film-Noir|Horror|Thriller +42856,Seance (Kôrei) (2000),Drama|Horror|Thriller +42886,Hallelujah! (1929),Drama|Musical +42900,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller +42935,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama +42938,Confidentially Yours (Vivement dimanche!) (1983),Comedy|Crime|Mystery|Thriller +42943,Revolution (1985),Adventure|Drama|War +42946,Project A ('A' gai waak) (1983),Action|Comedy +42952,"Woman's Face, A (1941)",Drama|Thriller +42956,Sword of Gideon (1986),Action|Drama|Thriller +42958,Little Manhattan (2005),Children|Comedy|Romance +42973,Crocodile (Ag-o) (1996),Drama +42984,"Lower Depths, The (Les bas-fonds) (1936)",Crime|Drama|Romance +42987,Fingersmith (2005),Crime|Drama|Romance +43007,Vinci (2004),Comedy|Crime +43009,"Ordeal, The (Calvaire) (2004)",Drama|Horror +43011,"Dunwich Horror, The (1970)",Horror +43014,"Quatermass Xperiment, The (1955)",Horror|Mystery|Sci-Fi|Thriller +43022,Hellraiser: Hellseeker (2002),Horror +43039,Inside Daisy Clover (1965),Drama +43081,Gamera vs. Gyaos (Daikaijû kûchûsen: Gamera tai Gyaosu) (1967),Action|Horror|Sci-Fi +43177,Over the Edge (1979),Crime|Drama +43244,Roads to Koktebel (Koktebel) (2003),Drama|Romance +43248,Swamp Women (1956),Adventure|Crime|Horror +43260,8MM 2 (2005),Drama|Mystery|Thriller +43267,On Probation (Tiempo de Valientes) (2005),Action|Comedy +43269,Bombón: El Perro (El perro) (2004),Comedy|Drama +43289,"Bird People in China, The (Chûgoku no chôjin) (1998)",Adventure|Comedy|Drama|Fantasy +43292,Thoughtcrimes (2003),Action|Crime|Drama +43333,Water (2005),Drama|Romance +43351,"Temptations, The (1998)",Drama|Musical +43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War +43383,"Big House, The (1930)",Drama|Thriller +43389,Numbskull Emptybrook in the Army (Uuno Turhapuro armeijan leivissä) (1984),Comedy +43391,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama +43396,"World's Fastest Indian, The (2005)",Drama +43415,As Tears Go By (Wong gok ka moon) (1988),Crime|Drama +43419,Bandidas (2006),Action|Comedy|Crime|Western +43444,Made in Britain (1982),Crime|Drama +43460,Tristram Shandy: A Cock and Bull Story (2005),Comedy|Drama +43482,"Bitter Tea of General Yen, The (1933)",Drama|Romance|War +43497,Love in the Afternoon (Chloe in the Afternoon) (L'amour l'après-midi) (1972),Drama|Romance +43518,Charlie: The Life and Art of Charles Chaplin (2003),Documentary +43528,Wilby Wonderful (2004),Drama +43538,Rampo (a.k.a. The Mystery of Rampo) (1994),Drama|Mystery +43549,Helter Skelter (2004),Action|Crime|Drama|Horror +43552,French Fried Vacation (Les Bronzés) (1978),Comedy +43556,Annapolis (2006),Drama +43558,Big Momma's House 2 (2006),Action|Comedy|Crime +43560,Nanny McPhee (2005),Children|Comedy|Fantasy +43567,Sweet November (1968),Drama +43571,Double Dare (2004),Documentary +43589,"Dark, The (2005)",Horror|Mystery|Thriller +43608,Panic in Year Zero! (1962),Horror|Sci-Fi|Thriller +43624,Here Comes the Groom (1951),Comedy|Musical|Romance +43626,Julie (1956),Thriller +43628,Tea For Two (1950),Comedy|Musical|Romance +43631,Green Dolphin Street (1947),Adventure|Drama|Romance +43633,"Lt. Robin Crusoe, U.S.N. (1966)",Adventure|Comedy +43635,Bye Bye Birdie (1963),Comedy|Musical +43652,"Comedians of Comedy, The (2005)",Comedy|Documentary +43675,"Honey Pot, The (1967)",Comedy|Crime +43677,"Tuskegee Airmen, The (1995)",Drama|War +43679,Final Destination 3 (2006),Horror|Mystery|Thriller +43682,I Could Go on Singing (1963),Drama|Musical +43684,Something New (2006),Comedy|Drama|Romance +43692,Free Money (1998),Comedy|Crime +43699,"Wind, The (1928)",Drama|Western +43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary +43710,Madame Curie (1943),Drama +43727,Orfeu (1999),Crime|Drama|Romance +43744,Imagine Me & You (2005),Comedy|Drama|Romance +43762,"Mississippi Mermaid (Sirène du Mississipi, La) (1969)",Crime|Drama|Romance +43801,Good Old Daze (Le péril jeune) (1994),Comedy|Drama +43803,Place Vendôme (1998),Crime|Drama +43813,Broken Lance (1954),Drama|Romance|Western +43822,"Four Horsemen of the Apocalypse, The (1921)",Drama|Romance|War +43828,Sabah (2005),Comedy|Drama|Romance +43832,"Call of Cthulhu, The (2005)",Horror|Thriller +43836,"Pink Panther, The (2006)",Adventure|Comedy|Crime +43838,Troll (1986),Comedy|Fantasy|Horror +43853,"Business, The (2005)",Action|Comedy|Crime|Drama|Thriller +43869,Curious George (2006),Adventure|Animation|Children|Comedy +43871,Firewall (2006),Crime|Drama|Thriller +43883,"Great McGinty, The (1940)",Comedy +43892,Le créateur (1999) ,Comedy +43897,"White Diamond, The (2004)",Documentary +43899,Tony Takitani (2004),Drama +43904,When a Stranger Calls (2006),Horror|Thriller +43906,Tamara (2005),Fantasy|Horror|Thriller +43908,London (2005),Drama +43910,Neil Young: Heart of Gold (2006),Documentary|Musical +43912,Freedomland (2006),Crime|Drama +43914,Winter Passing (2005),Drama +43917,Eight Below (2006),Action|Adventure|Drama|Romance +43919,Date Movie (2006),Comedy|Romance +43921,Running Scared (2006),Action|Crime|Thriller +43923,Tyler Perry's Madea's Family Reunion (2006),Comedy|Drama +43926,Doogal (2006),Animation|Children +43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller +43930,Just My Luck (2006),Comedy|Romance +43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller +43934,Deep Sea 3D (2006),Documentary|IMAX +43936,16 Blocks (2006),Crime|Thriller +43953,Agata and the Storm (Agata e la tempesta) (2004),Comedy|Drama|Romance +43967,Bongwater (1997),Comedy|Romance +43971,Trauma (1993),Horror|Mystery|Thriller +43983,Election (Hak se wui) (2005),Crime|Drama|Thriller +43987,Half Light (2006),Romance|Thriller +43997,Twist of Faith (2004),Documentary +44004,Failure to Launch (2006),Comedy|Romance +44020,Ultimate Avengers (2006),Action|Animation|Children|Sci-Fi +44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy +44041,All Quiet on the Western Front (1979),Action|Drama|War +44058,"Big White, The (2005)",Comedy|Crime|Drama +44073,Stromboli (1950),Drama +44100,Cyrano de Bergerac (1950),Drama|Romance +44115,Shinobi: Heart Under Blade (2005),Action|Drama|Fantasy|Romance +44124,Every Man for Himself (Slow Motion) (Sauve qui peut (la vie)) (1980),Drama +44153,Chronos (1985),Documentary|IMAX +44155,Five Children and It (2004),Adventure|Children|Fantasy +44161,Free Zone (2005),Drama|War +44168,"Naked Spur, The (1953)",Western +44187,"Prince & Me II: The Royal Wedding, The (2006)",Comedy|Romance +44189,Ask the Dust (2006),Drama|Romance +44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX +44193,She's the Man (2006),Comedy|Romance +44195,Thank You for Smoking (2006),Comedy|Drama +44197,Find Me Guilty (2006),Comedy|Crime|Drama +44199,Inside Man (2006),Crime|Drama|Thriller +44204,Tsotsi (2005),Crime|Drama +44225,Aquamarine (2006),Children|Comedy|Fantasy +44234,"Illustrated Man, The (1969)",Sci-Fi +44238,Leprechaun 2 (1994),Comedy|Fantasy|Horror +44241,Leprechaun 3 (1995),Comedy|Fantasy|Horror +44243,Leprechaun 4: In Space (1997),Comedy|Fantasy|Horror|Sci-Fi +44245,Leprechaun in the Hood (2000),Action|Comedy|Horror +44253,"Dark at the Top of the Stairs, The (1960)",Drama +44255,Story of a Love Affair (Cronaca di un amore) (1950),Crime|Drama|Romance +44295,"Man Who Sued God, The (2001)",Comedy|Drama|Romance +44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama +44317,Kummeli Stories (1995),Comedy +44392,Stranger on the Third Floor (1940),Drama|Film-Noir +44397,"Hills Have Eyes, The (2006)",Drama|Horror|Thriller +44399,"Shaggy Dog, The (2006)",Adventure|Children|Comedy|Fantasy +44421,"Personal Journey with Martin Scorsese Through American Movies, A (1995)",Documentary +44427,Inspector Clouseau (1968),Comedy|Crime|Mystery +44494,Son of the Pink Panther (1993),Comedy +44511,Unknown White Male (2005),Documentary +44555,"Lives of Others, The (Das leben der Anderen) (2006)",Drama|Romance|Thriller +44568,"Red and the White, The (Csillagosok, katonák) (1967)",Drama|War +44571,Fatty Drives the Bus (1999),Comedy +44582,City on Fire (Lung fu fong wan) (1987),Action|Crime|Drama|Thriller +44585,"Goodbye, South, Goodbye (1996)",Crime|Drama +44587,Nanook of the North (1922),Documentary|Drama +44590,Don't Torture a Duckling (Non si sevizia un paperino) (1972),Horror|Mystery|Thriller +44595,Resurrection (1980),Drama|Fantasy +44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery +44601,Go Tell the Spartans (1978),Drama|War +44611,They Call Me Mister Tibbs! (1970),Crime|Drama|Mystery +44613,Take the Lead (2006),Drama +44628,"Lacemaker, The (Dentellière, La) (1977)",Drama|Romance +44633,"Devil and Daniel Johnston, The (2005)",Documentary +44653,Money (L'argent) (1983),Crime|Drama +44655,"Trial of Joan of Arc, The (Procès de Jeanne d'Arc) (1962)",Drama|War +44657,Mouchette (1967),Drama +44663,"Caiman, The (Il caimano) (2006)",Comedy|Drama|Romance +44665,Lucky Number Slevin (2006),Crime|Drama|Mystery +44671,"Wild Blue Yonder, The (2005)",Sci-Fi +44674,Wheel of Time (2003),Documentary +44685,Riot On! (2004),Documentary +44694,Volver (2006),Comedy|Drama +44703,"N Word, The (2004)",Documentary +44709,Akeelah and the Bee (2006),Drama +44717,Lisbela e o Prisioneiro (Lisbela and the Prisoner) (2003),Comedy|Romance +44719,Brainstorm (2001),Drama +44724,Urban Legends: Bloody Mary (2005),Horror|Thriller +44729,Larry the Cable Guy: Health Inspector (2006),Comedy +44731,Stay Alive (2006),Horror|Sci-Fi|Thriller +44752,Annie Oakley (1935),Drama|Western +44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller +44761,Brick (2005),Crime|Drama|Film-Noir|Mystery +44763,"Brothers Lionheart, The (Bröderna Lejonhjärta) (1977)",Adventure|Children|Fantasy +44773,"Dead Hate the Living!, The (2000)",Comedy|Horror +44777,Evil Aliens (2005),Comedy|Horror|Sci-Fi +44779,Santa's Slay (2005),Comedy|Fantasy|Horror +44782,"Dark Hours, The (2005)",Horror|Thriller +44788,This Film Is Not Yet Rated (2006),Documentary +44800,Fragile (2005),Horror|Thriller +44815,ATL (2006),Drama +44825,"Brotherhood of Justice, The (1986)",Action|Drama|Thriller +44828,Slither (2006),Comedy|Horror|Sci-Fi +44840,"Benchwarmers, The (2006)",Comedy +44844,Phat Girlz (2006),Comedy +44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller +44851,Go for Zucker! (Alles auf Zucker!) (2004),Comedy +44856,"Curse of the Werewolf, The (1961)",Drama|Horror|Romance +44861,Dead Fish (2004),Action|Comedy|Drama|Thriller +44864,Friends with Money (2006),Comedy|Drama|Romance +44871,"King Is Dancing, The (Le roi danse) (2000)",Drama +44881,Keane (2004),Mystery|Thriller +44889,Reefer Madness: The Movie Musical (2005),Comedy|Drama|Musical +44892,I Love Your Work (2003),Drama|Mystery +44900,Beauty and the Bastard (Tyttö sinä olet tähti) (2005),Drama|Musical|Romance +44903,Dementia (a.k.a. Daughter of Horror) (1955),Horror|Mystery +44911,Magic (1978),Drama|Horror|Romance|Thriller +44929,Candy (2006),Drama|Romance +44931,Secrets of a Soul (Geheimnisse einer Seele) (1926),Drama +44937,"Child, The (L'enfant) (2005)",Crime|Drama +44943,9/11 (2002),Documentary +44947,Lacombe Lucien (1974),Drama +44949,Hoot (2006),Children|Comedy +44966,Where the Red Fern Grows (1974),Children|Drama +44972,Scary Movie 4 (2006),Comedy|Horror +44974,Hard Candy (2005),Drama|Thriller +44978,Dead Birds (2004),Horror|War|Western +45000,"Chinoise, La (1967)",Comedy|Drama +45003,Shutter (2004),Fantasy|Horror|Mystery|Thriller +45028,"Prairie Home Companion, A (2006)",Comedy|Drama|Musical +45030,Even Money (2006),Crime|Drama +45036,"Chess Players, The (Shatranj Ke Khilari) (1977)",Comedy|Drama +45038,Pinocchio and the Emperor of the Night (1987),Animation|Children|Fantasy +45047,Corvette Summer (1978),Adventure|Comedy +45062,"Sentinel, The (2006)",Crime|Drama|Thriller +45068,Mirage (1965),Mystery|Thriller +45072,"President's Last Bang, The (Geuddae geusaramdeul) (2005)",Comedy|Crime|Drama +45074,"Wild, The (2006)",Adventure|Animation|Children|Comedy|Fantasy +45079,"My Brother's Wife (Mujer de mi hermano, La) (2005)",Drama +45081,Silent Hill (2006),Fantasy|Horror|Thriller +45100,Battle in Heaven (Batalla en el cielo) (2005),Comedy|Drama|Romance +45106,American Dreamz (2006),Comedy|Drama +45134,Hôtel du Nord (1938),Drama +45137,Irresistible (2006),Drama|Thriller +45170,Mata Hari (1931),Drama|Romance +45172,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller +45175,Kinky Boots (2005),Comedy|Drama +45179,"Glass Key, The (1942)",Crime|Drama|Film-Noir|Mystery +45183,"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)",Action|Comedy|Crime|Thriller +45186,Mission: Impossible III (2006),Action|Adventure|Thriller +45188,"Wayward Cloud, The (Tian bian yi duo yun) (2005)",Comedy|Drama|Musical +45192,"Nibelungen: Siegfried, Die (1924)",Adventure|Drama|Fantasy +45194,"Nibelungen: Kriemhild's Revenge, Die (Die Nibelungen: Kriemhilds Rache) (1924)",Adventure|Drama|Fantasy +45200,"Coast Guard, The (Hae anseon) (2002)",Drama +45208,RV (2006),Adventure|Children|Comedy +45210,United 93 (2006),Crime|Drama +45221,Stick It (2006),Comedy +45224,Secret Beyond the Door (1948),Drama|Film-Noir|Mystery|Thriller +45259,Man Push Cart (2005),Drama +45303,"World, The (Shijie) (2004)",Drama +45329,Soldier Blue (1970),Western +45335,Footlight Parade (1933),Comedy|Musical|Romance +45346,Lollilove (2004),Comedy +45361,"American Haunting, An (2005)",Drama|Horror|Mystery|Thriller +45382,Down in the Valley (2005),Drama|Romance +45412,"Hidden Blade, The (Kakushi ken oni no tsume) (2004)",Action|Drama|Romance +45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy +45440,Art School Confidential (2006),Comedy|Drama +45442,Poseidon (2006),Action|Adventure|Thriller|IMAX +45447,"Da Vinci Code, The (2006)",Drama|Mystery|Thriller +45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller +45501,"Break-Up, The (2006)",Comedy|Drama|Romance +45503,Peaceful Warrior (2006),Drama +45506,Twelve and Holding (2005),Drama +45508,Wah-Wah (2005),Drama +45512,Keeping Up with the Steins (2006),Comedy +45517,Cars (2006),Animation|Children|Comedy +45521,Wassup Rockers (2005),Comedy|Drama +45525,"Lost City, The (2005)",Drama +45527,Standing Still (2005),Comedy|Drama|Romance +45531,Carlito's Way: Rise to Power (Carlito's Way 2: Rise to Power) (2005),Action|Crime|Drama|Thriller +45533,Conspirators of Pleasure (Spiklenci slasti) (1996),Animation|Comedy +45537,Tall in the Saddle (1944),Mystery|Romance|Western +45550,Beyond a Reasonable Doubt (1956),Crime|Drama|Film-Noir +45576,Sinbad of the Seven Seas (1989),Adventure|Fantasy|Romance +45578,"Earth Is a Sinful Song, The (Maa on syntinen laulu) (1973)",Drama +45581,Shanghai Dreams (Qing hong) (2005),Drama +45611,Vera Cruz (1954),Adventure|Western +45635,"Notorious Bettie Page, The (2005)",Drama +45639,"Russian Specialist, The (Mechanik, The) (2005)",Action|Drama|Thriller +45642,Parting Glances (1986),Comedy|Drama|Romance +45648,Game 6 (2005),Comedy|Drama +45652,American Gun (2005),Drama +45656,Marilyn Hotchkiss' Ballroom Dancing & Charm School (2005),Comedy|Drama|Romance +45658,On a Clear Day (2005),Drama +45662,"Omen, The (2006)",Horror|Thriller +45664,"King, The (2005)",Drama +45666,Nacho Libre (2006),Comedy +45668,"Lake House, The (2006)",Drama|Fantasy|Romance +45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance +45679,"Seventh Victim, The (1943)",Drama|Film-Noir|Horror|Mystery +45689,Bleak Moments (1972),Comedy|Drama +45691,Edvard Munch (1974),Drama +45707,"Ace of Hearts, The (1921)",Crime|Drama|Romance +45720,"Devil Wears Prada, The (2006)",Comedy|Drama +45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy +45726,"You, Me and Dupree (2006)",Comedy +45728,Clerks II (2006),Comedy +45730,Lady in the Water (2006),Drama|Fantasy|Mystery +45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance +45756,Tammy and the Bachelor (1957),Musical|Romance +45758,Lady on a Train (1945),Comedy|Crime|Film-Noir|Mystery|Romance|Thriller +45761,"Nightmare Castle (Amanti d'oltretomba) (Lovers from Beyond the Tomb) (Faceless Monster, The) (1965)",Horror +45837,Let It Be (1970),Documentary +45845,"Farewell, Home Sweet Home (Adieu, plancher des vaches!) (1999)",Comedy|Drama +45852,See No Evil (2006),Horror +45880,Marie Antoinette (2006),Drama|Romance +45891,Lady in the Lake (1947),Crime|Drama|Film-Noir|Mystery|Romance +45899,Trial of the Road (Check-up on the Roads) (Checkpoint) (Proverka na dorogakh) (1971),Drama|War +45928,Who Killed the Electric Car? (2006),Documentary +45940,"Miracle of Bern, The (Wunder von Bern, Das) (2003)",Comedy|Drama +45942,"Mother and the Whore, The (Maman et la putain, La) (1973)",Drama +45950,"Inconvenient Truth, An (2006)",Documentary +45952,Test Pilot (1938),Drama|Romance +45969,Career Opportunities (1991),Comedy|Romance +45981,Hollow Man II (2006),Action|Horror|Sci-Fi|Thriller +45987,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical +45991,Psych-Out (1968),Drama|Musical|Thriller +45994,National Lampoon's Cattle Call (Cattle Call) (2006),Comedy +46008,Sister Kenny (1946),Drama +46034,Mountain Patrol (Kekexili) (2004),Action|Drama +46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance +46065,Ice Bound (2003),Drama +46083,Drawing Restraint 9 (2005),Fantasy +46098,Crossing the Bridge: The Sound of Istanbul (2005),Documentary|Musical +46105,I Am a Sex Addict (2005),Comedy|Documentary|Romance +46108,Lower City (Cidade Baixa) (2005),Drama +46115,Forever Mine (1999),Crime|Drama|Romance|Thriller +46154,"War Within, The (2005)",Drama +46156,"Ax, The (couperet, Le) (2005)",Comedy|Crime +46194,Adam & Steve (2005),Comedy|Romance +46199,Beyond the Rocks (1922),Drama|Romance +46201,Bob the Butler (2005),Comedy +46207,Jack Frost 2: Revenge of the Mutant Killer Snowman (2000),Horror +46231,Stoned (2005),Drama +46258,Marked Woman (1937),Crime|Drama|Film-Noir +46311,Running (1979),Drama +46318,Blessed Event (1932),Comedy|Drama +46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama +46325,Susan Lenox (Her Fall and Rise) (1931),Adventure|Drama|Romance +46331,"Adjuster, The (1991)",Drama +46335,"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)",Action|Crime|Drama|Thriller +46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy +46347,Metal: A Headbanger's Journey (2005),Documentary +46363,Summer in Berlin (Sommer vorm Balkon) (2005),Drama +46367,"Public Eye, The (1992)",Crime|Thriller +46372,"Bribe, The (1949)",Drama|Film-Noir|Thriller +46409,Without Love (1945),Comedy|Romance +46430,Waist Deep (2006),Action|Crime|Drama|Thriller +46441,"Sheriff and the Satellite Kid, The (1979)",Action|Comedy|Sci-Fi +46457,Triple Cross (1966),Action|Adventure|Drama|Thriller|War +46478,Mouth to Mouth (2005),Drama +46525,Spite Marriage (1929),Comedy +46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX +46544,Edward II (1991),Drama +46559,"Road to Guantanamo, The (2006)",Drama|War +46561,Leonard Cohen: I'm Your Man (2005),Documentary|Musical +46572,Edmond (2005),Drama|Thriller +46574,"OH in Ohio, The (2006)",Comedy +46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama +46581,Brothers of the Head (2005),Drama +46588,Forgiving Dr. Mengele (2006),Documentary +46595,Fuse (Gori vatra) (2003),Comedy|Drama +46604,Curse of the Pink Panther (1983),Comedy|Crime|Mystery +46613,Mimic: Sentinel (2003),Horror|Sci-Fi|Thriller +46627,Rock 'n' Roll Nightmare (1987),Fantasy|Horror +46634,These Girls (2005),Comedy +46640,Why Does Herr R. Run Amok? (Warum läuft Herr R. Amok?) (1970),Drama +46651,Instrument (2003),Documentary +46653,"300 Spartans, The (1962)",Adventure|Drama|War +46664,"Fallen Idol, The (1948)",Drama|Mystery|Thriller +46713,Desperate (1947),Drama|Film-Noir +46716,Knock on Any Door (1949),Crime|Drama|Film-Noir +46723,Babel (2006),Drama|Thriller +46748,China Seas (1935),Action|Adventure|Drama|Romance +46753,I Walk the Line (1970),Drama +46762,"Thief Lord, The (2006)",Adventure|Children|Fantasy +46765,"Girl Can't Help It, The (1956)",Comedy +46770,Krrish (2006),Adventure|Musical|Romance|Sci-Fi +46772,Strangers with Candy (2005),Comedy +46788,Prophecy (1979),Horror|Sci-Fi +46790,"Kremlin Letter, The (1970)",Drama|Thriller +46803,Young Mr. Lincoln (1939),Drama +46808,Subject Two (2006),Drama|Thriller +46821,Blackjack (1998),Action|Thriller +46839,Three Times (2005),Drama|Romance +46848,"Gumball Rally, The (1976)",Adventure|Comedy +46850,Wordplay (2006),Documentary +46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War +46862,Orchestra Rehearsal (Prova d'orchestra) (1978),Drama +46865,Little Man (2006),Comedy +46869,Dames (1934),Comedy|Musical +46880,Dancing Lady (1933),Comedy|Musical|Romance +46901,"Purple Plain, The (1954)",Drama|War +46910,Coonskin (1975),Animation|Crime|Drama +46912,Memento Mori (Yeogo goedam II) (1999),Horror +46915,End Game (2006),Crime|Drama|Mystery +46919,End of the Spear (2005),Drama +46925,Two for the Seesaw (1962),Drama|Romance +46929,"Detective, The (1968)",Crime|Drama +46948,Monster House (2006),Animation|Children|Fantasy|Mystery +46952,Wrong Side Up (Pribehy obycejneho silenstvi) (2005),Comedy|Drama +46954,Just love me (Tylko mnie kochaj) (2006),Comedy|Romance +46957,Combien Tu M'aimes? (How Much Do You Love Me?) (2005),Comedy|Romance +46959,Colour Me Kubrick: A True...ish Story (2005),Comedy|Drama +46961,Death of a Bureaucrat (La muerte de un burócrata) (1966),Comedy +46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller +46967,Scoop (2006),Comedy|Fantasy|Mystery +46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy +46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX +46974,World Trade Center (2006),Drama +46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance +46979,"Valley of Decision, The (1945)",Drama +47005,"Last Angry Man, The (1959)",Drama +47007,"Good Fairy, The (1935)",Comedy|Romance +47028,Sione's Wedding (Samoan Wedding) (2006),Comedy|Romance +47044,Miami Vice (2006),Action|Crime|Drama|Thriller +47047,"Groomsmen, The (2006)",Comedy|Drama|Romance +47049,Shadowboxer (2005),Crime|Drama|Thriller +47054,Each Dawn I Die (1939),Crime|Drama|Thriller +47063,Loch Ness (1996),Drama +47076,"Good Morning, Night (Buongiorno, notte) (2003)",Drama +47084,"Live and Become (Va, vis et deviens) (2005)",Drama +47092,On Dangerous Ground (1952),Crime|Drama|Film-Noir +47099,"Pursuit of Happyness, The (2006)",Drama +47117,Tears of the Black Tiger (Fah talai jone) (2000),Action|Comedy|Romance|Western +47122,John Tucker Must Die (2006),Comedy|Romance +47124,"Ant Bully, The (2006)",Adventure|Animation|Children|Comedy|Fantasy|IMAX +47129,Warning Shadows (Schatten - Eine nächtliche Halluzination) (1923),Drama|Fantasy +47131,Leaves from Satan's Book (Blade af Satans bog) (1921),Drama +47135,Michael (1924),Drama +47146,Lady Killer (1933),Comedy|Crime +47148,Mrs. Palfrey at the Claremont (2005),Comedy|Drama +47150,"Death of Mr. Lazarescu, The (Moartea domnului Lazarescu) (2005)",Drama +47152,Cria Cuervos (1976),Drama +47165,Ciao Manhattan (Ciao! Manhattan) (1972),Documentary|Drama|Romance +47180,"Gas, Inspector Palmu! (Kaasua, komisario Palmu!) (1961)",Comedy|Crime|Mystery|Thriller +47196,"Rainmaker, The (1956)",Comedy|Romance|Thriller|Western +47200,Crank (2006),Action|Thriller +47202,"Secret Life of Words, The (2005)",Drama|Romance +47221,"Dudesons Movie, The (2006)",Comedy|Documentary +47237,Black Gold (2006),Documentary +47239,"Hurricane, The (1937)",Action|Drama|Romance +47248,Johnny Was (2006),Action|Crime|Drama|Thriller +47250,Played (2006),Crime|Thriller +47254,Chaos (2005),Action|Crime|Drama|Thriller +47261,"Night Listener, The (2006)",Fantasy|Mystery|Thriller +47264,Barnyard: The Original Party Animals (2006),Animation|Children|Comedy +47274,Murmur of the Heart (Le souffle au coeur) (1971),Drama +47277,They Won't Believe Me (1947),Drama|Film-Noir +47285,"Left Hand of God, The (1955)",Drama +47287,Compulsion (1959),Crime|Drama|Thriller +47306,"Canterbury Tale, A (1944)",Drama|Mystery|War +47330,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance +47342,Angels Over Broadway (1940),Adventure|Comedy|Crime|Drama +47356,Fortress (1985),Action|Thriller +47382,Step Up (2006),Drama|Romance +47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy +47394,"Bon Cop, Bad Cop (2006)",Action|Comedy|Crime|Thriller +47397,"Tom, Dick and Harry (1941)",Comedy|Fantasy|Romance +47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi +47417,Land of the Blind (2006),Drama|Thriller +47423,Half Nelson (2006),Drama +47446,"Moustache, La (2005)",Drama|Mystery|Thriller +47452,Wing Chun (1994),Action|Comedy|Drama|Romance +47455,Executioners (Xian dai hao xia zhuan) (1993),Action|Comedy|Sci-Fi +47458,"Swordsman II (Legend of the Swordsman, The) (Xiao ao jiang hu zhi: Dong Fang Bu Bai) (1992)",Action|Fantasy +47460,Peking Opera Blues (Do ma daan) (1986),Action|Comedy +47465,Tideland (2005),Drama|Fantasy|Thriller +47477,Good News (1947),Comedy|Musical|Romance +47482,Thunderbolt (Pik lik feng) (1995),Action|Crime +47484,G Men (1935),Crime|Drama +47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama +47493,Cabin in the Sky (1943),Fantasy|Musical +47501,Tol'able David (1921),Drama +47503,2:37 (2006),Drama +47516,Material Girls (2006),Children|Comedy|Drama +47518,Accepted (2006),Comedy +47525,Lie with Me (2005),Drama|Romance +47538,Crime Busters (1977),Action|Adventure|Comedy|Crime +47540,Att stjäla en tjuv (1996),Comedy +47559,Drömkåken (1993),Comedy +47561,Shake It (En kort en lang) (2001),Comedy|Drama|Romance +47566,Born to Kill (1947),Crime|Drama|Film-Noir +47571,Heading South (Vers le sud) (2005),Drama +47601,7 Men from Now (Seven Men from Now) (1956),Western +47606,Captain January (1936),Children|Comedy|Musical +47610,"Illusionist, The (2006)",Drama|Fantasy|Mystery|Romance +47615,Adventures of Don Juan (1948),Adventure|Romance +47619,State of the Union (1948),Comedy|Drama +47626,San Quentin (1937),Drama +47629,The Queen (2006),Drama +47634,36 Quai des Orfèvres (Department 36) (2004),Action|Crime|Drama|Thriller +47640,Beerfest (2006),Comedy +47642,How to Eat Fried Worms (2006),Children|Drama +47644,Invincible (2006),Drama +47646,Idlewild (2006),Crime|Drama|Musical +47665,"Slight Case of Murder, A (1938)",Comedy|Crime +47670,"Syrian Bride, The (2004)",Drama +47681,"Sorry, Haters (2005)",Drama|Thriller +47701,"Ritz, The (1976)",Comedy +47707,My Geisha (1962),Comedy +47714,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance +47719,"Music Box, The (1932)",Comedy +47721,"Red Balloon, The (Ballon rouge, Le) (1956)",Children|Fantasy +47723,Way Out West (1937),Comedy|Western +47725,Angel-A (2005),Comedy|Drama|Fantasy|Romance +47728,Green for Danger (1946),Crime|Mystery +47736,"Chump at Oxford, A (1940)",Comedy +47740,Block-Heads (1938),Comedy|War +47774,"Icicle Thief, The (Ladri di saponette) (1989)",Comedy|Fantasy +47778,Quinceañera (2006),Drama +47793,"Puffy Chair, The (2006)",Drama|Romance +47805,Lassie (2005),Adventure|Children +47808,Mutual Appreciation (2005),Comedy|Drama +47810,"Wicker Man, The (2006)",Horror|Mystery|Thriller +47815,Crossover (2006),Action|Drama +47830,"Quiet, The (2005)",Crime|Drama|Mystery|Thriller +47836,Sketches of Frank Gehry (2005),Documentary +47860,Ivanhoe (1982),Adventure|Romance +47868,Ronja Robbersdaughter (Ronja Rövardotter) (1984),Adventure|Children|Drama +47871,Strul (1988),Action|Comedy +47880,Breaking Out (Vägen ut) (1999),Comedy|Drama +47886,Yrrol: An Enormously Well Thought Out Movie (Yrrol - en kolossalt genomtänkt film) (1994),Comedy +47894,"Wind That Shakes the Barley, The (2006)",Drama|War +47902,Blood on the Moon (1948),Action|Drama|Western +47904,"Notti bianche, Le (White Nights) (1957)",Drama|Romance +47907,Fateless (Sorstalanság) (2005),Drama|War +47918,"Bravados, The (1958)",Drama|Western +47927,"Sign of the Cross, The (1932)",Drama +47931,"Criminal Life of Archibaldo de la Cruz, The (Ensayo de un crimen) (1955)",Comedy|Crime|Drama +47935,Overlord (1975),Drama|War +47937,Severance (2006),Comedy|Horror|Thriller +47940,Time to Leave (2005),Drama +47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller +47952,"Covenant, The (2006)",Action|Horror|Thriller +47956,Jesse James (1939),Action|Crime|Drama|Romance|Western +47962,"Scar, The (Blizna) (1976)",Drama +47970,"Last Kiss, The (2006)",Comedy|Drama +47972,Gabrielle (2005),Drama|Romance +47976,Trust the Man (2005),Comedy|Drama|Romance +47978,SherryBaby (2006),Drama +47980,Bio Zombie (Sun faa sau si) (1998),Comedy|Horror +47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller +47999,Jesus Camp (2006),Documentary|Drama +48001,"Bow, The (Hwal) (2005)",Drama|Romance +48030,"Crusades, The (1935)",Adventure|Drama|War +48032,"Tiger and the Snow, The (La tigre e la neve) (2005)",Comedy|Drama|Romance|War +48035,Pretty Poison (1968),Comedy|Crime|Romance|Thriller +48043,"Fountain, The (2006)",Drama|Fantasy|Romance +48045,Fear City: A Family-Style Comedy (La cité de la peur) (1994),Comedy +48049,Assassin(s) (1997),Crime|Drama +48057,Union Pacific (1939),Drama|Western +48059,"Boy Named Charlie Brown, A (1969)",Animation|Children|Comedy|Drama +48061,Snoopy Come Home (1972),Animation|Children|Comedy|Musical +48067,"Soldier's Sweetheart, A (1998)",Drama|War +48082,"Science of Sleep, The (La science des rêves) (2006)",Comedy|Drama|Fantasy|Romance +48084,City for Conquest (1940),Drama +48093,Initial D (Tau man ji D) (2005),Action|Crime|Drama +48098,Wicked (1998),Thriller +48123,"Long Voyage Home, The (1940)",Drama|War +48127,Not as a Stranger (1955),Drama +48142,"Black Dahlia, The (2006)",Crime|Drama|Mystery|Thriller +48150,"Woods, The (2006)",Horror +48159,Everyone's Hero (2006),Adventure|Animation|Children|Comedy +48161,Gridiron Gang (2006),Drama +48165,"Seventh Continent, The (Der siebente Kontinent) (1989)",Drama +48167,Aaltra (2004),Comedy|Drama +48177,Wonder Man (1945),Comedy|Fantasy|Musical +48193,Lisbon Story (1994),Drama +48198,Streamers (1983),Drama|War +48214,Land of Plenty (Angst and Alienation in America) (2004),Drama +48229,Lemming (2005),Drama|Mystery|Thriller +48231,Taxidermia (2006),Comedy|Drama|Horror +48235,Flight from Death: The Quest for Immortality (2003),Documentary +48239,Yuva (2004),Action|Adventure|Crime|Drama +48242,Mondo Topless (1966),Documentary +48262,"Bridge, The (2006)",Documentary +48264,Vixen! (1968),Drama +48268,Empire Falls (2005),Drama|Romance +48299,Piccadilly (1929),Crime|Drama +48301,"Private Life of Henry VIII, The (1933)",Comedy|Drama +48304,Apocalypto (2006),Adventure|Drama|Thriller +48308,Household Saints (1993),Drama +48315,Raintree County (1957),Drama|Romance +48319,Flyboys (2006),Action|Adventure|Drama|War +48322,Jackass Number Two (2006),Comedy|Documentary +48326,All the King's Men (2006),Drama +48342,Conversations with Other Women (2005),Comedy|Drama|Romance +48346,"Land Before Time II: The Great Valley Adventure, The (1994)",Adventure|Animation|Children|Musical +48374,Father Sergius (Otets Sergiy) (1917),Drama|Romance +48381,"Assault, The (Aanslag, De) (1986)",Drama|Romance|War +48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy +48389,Iraq for Sale: The War Profiteers (2006),Documentary +48394,"Pan's Labyrinth (Laberinto del fauno, El) (2006)",Drama|Fantasy|Thriller +48407,"Conqueror, The (1956)",Adventure|Romance|War +48412,"Guardian, The (2006)",Action|Adventure|Drama +48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX +48416,School for Scoundrels (2006),Comedy|Crime +48427,Romy and Michele: In the Beginning (2005),Comedy +48458,Sidewalks of London (St. Martin's Lane) (1938),Comedy +48501,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi +48516,"Departed, The (2006)",Crime|Drama|Thriller +48518,"Texas Chainsaw Massacre: The Beginning, The (2006)",Horror|Thriller +48520,Employee of the Month (2006),Comedy +48522,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children +48528,Sirocco (1951),Action|Drama +48530,"Hawaii, Oslo (2004)",Drama +48536,Dante's Inferno (1935),Action|Drama +48543,Antibodies (Antikörper) (2005),Crime|Drama|Horror|Thriller +48555,Dr. Cyclops (1940),Adventure|Horror|Sci-Fi +48560,Running With Scissors (2006),Comedy|Drama +48567,Dillinger (1945),Crime|Drama|Film-Noir +48575,Brute Force (1947),Drama|Film-Noir|Thriller +48584,Ellie Parker (2005),Comedy|Drama +48591,"Grudge 2, The (2006)",Drama|Horror|Mystery|Thriller +48593,Man of the Year (2006),Comedy|Thriller +48596,"Marine, The (2006)",Action|Drama|Thriller +48598,Infamous (2006),Drama +48600,One Night with the King (2006),Drama +48626,Once in a Lifetime: The Extraordinary Story of the New York Cosmos (2006),Documentary +48638,Fellini's Casanova (Il Casanova di Federico Fellini) (1976),Drama|Romance +48642,"Howards of Virginia, The (1940)",Drama|War +48647,"Last Bolshevik, The (Tombeau d'Alexandre, Le) (1993)",Documentary +48649,Chapayev (1934),Drama|War +48660,"Elementary Particles, The (Elementarteilchen) (2006)",Drama|Romance +48673,Kummelin jackpot (2006),Comedy +48678,Feast (2005),Action|Comedy|Horror|Thriller +48682,Offside (2006),Comedy|Drama +48696,Little Children (2006),Drama|Romance +48698,Deliver Us from Evil (2006),Documentary +48700,Marie Antoinette (1938),Drama|Romance +48704,F.I.S.T. (1978),Drama +48711,Facing the Giants (2006),Action|Drama +48713,Mr. Conservative: Goldwater on Goldwater (2006),Documentary +48715,Broadway Bill (1934),Comedy|Drama +48738,"Last King of Scotland, The (2006)",Drama|Thriller +48741,"U.S. vs. John Lennon, The (2006)",Documentary +48744,Shortbus (2006),Comedy|Drama|Romance +48770,3 Blind Mice (2003),Crime|Mystery|Romance|Thriller +48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller +48780,"Prestige, The (2006)",Drama|Mystery|Sci-Fi|Thriller +48783,Flags of Our Fathers (2006),Drama|War +48791,Flicka (2006),Children|Drama +48817,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance +48820,After Five in the Jungle (Nach Fünf im Urwald) (1995),Comedy|Romance +48825,9th Company (2005),Action|Drama|War +48833,Jade Warrior (Jadesoturi) (2006),Action|Adventure|Drama +48851,Spies (Spione) (1928),Thriller +48856,"Guide to Recognizing Your Saints, A (2006)",Crime|Drama +48863,Azumi 2: Death or Love (2005),Action|Adventure +48872,13 Tzameti (2005),Film-Noir|Thriller +48877,Saw III (2006),Crime|Horror|Thriller +48879,Catch a Fire (2006),Drama|Thriller +48883,Death of a President (2006),Crime|Drama|Mystery|Thriller +48895,Little Secrets (2001),Children|Comedy|Drama +48899,"Man of Straw (Untertan, Der) (1951)",Comedy|Drama +48901,Corto Maltese in Siberia (Corto Maltese - La cour secrète des Arcanes) (2002),Adventure|Animation|Drama|Romance|War +48909,5 Fingers (1952),Drama|Thriller +48943,The Butterfly Effect 2 (2006),Adventure|Drama|Romance|Sci-Fi|Thriller +48957,"Charge of the Light Brigade, The (1936)",Action|Adventure|Romance|War +48970,Platform (Zhantai) (2000),Drama +48972,Lunacy (Sílení) (2006),Animation|Horror +48982,Flushed Away (2006),Animation|Comedy +48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller +49007,Arabesque (1966),Adventure|Drama|Romance|Thriller +49013,"Santa Clause 3: The Escape Clause, The (2006)",Comedy|Fantasy +49016,"Long Weekend, The (2005)",Comedy +49035,Daddy Long Legs (1955),Musical|Romance +49037,Hi Tessa (Czesc Tereska) (2001),Drama +49050,All the Invisible Children (2005),Drama +49060,Ocean Waves (Umi ga kikoeru) (1993),Animation|Drama|Romance +49063,Mad Dogs & Englishmen (1971),Documentary|Musical +49079,Four Daughters (1938),Drama|Romance +49082,Arizona (1940),Western +49085,"Big City, The (Mahanagar) (1963)",Drama +49098,"World, the Flesh and the Devil, The (1959)",Drama|Romance|Sci-Fi +49110,Mom and Dad Save the World (1992),Comedy|Sci-Fi +49115,"Boynton Beach Bereavement Club, The (2005)",Comedy|Drama +49121,Farce of the Penguins (2006),Comedy +49123,Emmet Otter's Jug-Band Christmas (1977),Children|Comedy|Drama|Musical +49130,"Good Year, A (2006)",Comedy|Drama|Romance +49132,Shut Up & Sing (2006),Documentary +49183,Vital (2004),Thriller +49200,"Foreign Affair, A (1948)",Comedy|Romance +49205,"Return, The (2006)",Sci-Fi|Thriller +49220,For Your Consideration (2006),Comedy +49225,Street Fight (2005),Documentary +49234,Red Dust (2004),Drama +49263,Fuck (2005),Comedy|Documentary +49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War +49272,Casino Royale (2006),Action|Adventure|Thriller +49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX +49276,Let's Go to Prison (2006),Comedy +49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller +49280,Bobby (2006),Drama +49282,Deck the Halls (2006),Comedy +49284,10 Items or Less (2006),Comedy|Drama|Romance +49286,"Holiday, The (2006)",Comedy|Romance +49291,I Wake Up Screaming (1941),Crime|Film-Noir|Mystery|Romance|Thriller +49299,Luna de Avellaneda (2004),Drama|Romance +49312,Snow Cake (2006),Drama +49314,Harsh Times (2006),Action|Crime|Drama +49330,London to Brighton (2006),Crime|Drama|Thriller +49338,Gacy (2003),Crime|Drama|Horror|Thriller +49347,Fast Food Nation (2006),Drama +49355,"Bête humaine, La (1938)",Drama +49359,Celine and Julie Go Boating (Celine et Julie vont en bateau) (1974),Drama|Fantasy|Mystery +49371,Min and Bill (1930),Comedy|Drama +49379,"20,000 Years in Sing Sing (1932)",Crime|Drama +49389,The Great Train Robbery (1903),Crime|Western +49394,Simon of the Desert (Simón del desierto) (1965),Drama +49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical +49402,"Facts of Life, The (1960)",Comedy|Drama|Romance +49412,It's A Wonderful World (1939),Comedy|Crime|Romance +49422,"OSS 117: Cairo, Nest of Spies (OSS 117: Le Caire nid d'espions) (2006)",Adventure|Comedy|Crime +49435,Reeker (2005),Horror|Mystery +49464,Sitting Pretty (1948),Comedy +49494,"Last Hard Men, The (1976)",Western +49513,"Brighter Summer Day, A (Gu ling jie shao nian sha ren shi jian) (1991)",Drama|Romance +49518,Moog (2004),Documentary|Musical +49524,"Nativity Story, The (2006)",Drama +49526,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy +49528,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller +49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War +49571,Dracula's Daughter (1936),Drama|Horror +49591,Doc Savage: The Man of Bronze (1975),Adventure +49593,She (1965),Action|Adventure|Drama|Fantasy|Horror|Romance|Sci-Fi +49615,Triad Election (Election 2) (Hak se wui yi wo wai kwai) (2006),Crime|Drama|Thriller +49642,Unaccompanied Minors (2006),Children|Comedy +49644,Off the Black (2006),Drama +49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy +49649,Eragon (2006),Action|Adventure|Fantasy +49651,Rocky Balboa (2006),Action|Drama +49663,Iron Island (Jazireh Ahani) (2005),Drama +49666,Fur: An Imaginary Portrait of Diane Arbus (2006),Drama|Fantasy|Romance +49668,Girl Shy (1924),Action|Comedy|Drama|Romance +49688,"Dam Busters, The (1955)",Action|Drama|War +49691,Zombie Honeymoon (2004),Drama|Horror|Romance +49735,Another Gay Movie (2006),Comedy +49737,"Myth, The (San wa) (2005)",Action|Adventure|Comedy|Fantasy +49739,Oyster Farmer (2004),Drama +49746,Waterloo Bridge (1931),Drama|War +49752,Red-Headed Woman (1932),Comedy|Romance +49754,Daniel (1983),Drama +49757,Power (1986),Drama +49759,Lost Horizon (1973),Adventure|Drama|Fantasy|Musical|Romance +49766,"Man Who Never Was, The (1956)",Drama|War +49769,Something Wild (1961),Drama +49772,"Painted Veil, The (2006)",Drama|Romance +49793,We Are Marshall (2006),Drama +49815,"Place Promised in Our Early Days, The (Kumo no mukô, yakusoku no basho) (2004)",Animation|Drama|Romance|Sci-Fi|War +49817,"Plague Dogs, The (1982)",Adventure|Animation|Drama +49822,"Good Shepherd, The (2006)",Drama|Thriller +49824,Dreamgirls (2006),Drama|Musical +49856,"Page Turner, The (Tourneuse de pages, La) (2006)",Drama|Musical|Thriller +49872,Loose Change: Second Edition (2006),Documentary|Mystery +49899,We Feed the World (2005),Documentary +49902,"Decameron, The (Decameron, Il) (1971)",Comedy|Drama +49910,Freedom Writers (2007),Drama +49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary +49926,"Intruder, The (L'intrus) (2004)",Drama +49929,Katzelmacher (1969),Drama|Romance +49932,Inland Empire (2006),Drama|Mystery|Thriller +49951,Sebastiane (1976),Drama|Thriller +49953,Caravaggio (1986),Drama +49955,Wild Side (2004),Drama +49957,"History Boys, The (2006)",Comedy|Drama +49961,Notes on a Scandal (2006),Drama +49973,Children Shouldn't Play with Dead Things (1973),Horror +49979,Desert Heat (Inferno) (1999),Action +49985,The Face Behind the Mask (1941),Crime|Drama|Film-Noir|Romance +49994,"Life of Jesus, The (La vie de Jésus) (1997)",Drama +50003,DOA: Dead or Alive (2006),Action|Adventure +50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama +50011,"Bothersome Man, The (Brysomme mannen, Den) (2006)",Comedy|Drama|Fantasy|Mystery +50059,Don't Drink the Water (1994),Comedy +50064,"Good German, The (2006)",Drama|Mystery|Thriller +50066,Sweet Land (2005),Drama|Romance +50068,Letters from Iwo Jima (2006),Drama|War +50076,Presenting Lily Mars (1943),Comedy|Musical|Romance +50147,Black Christmas (2006),Action|Horror|Thriller +50149,Happily N'Ever After (2007),Animation|Children|Comedy +50151,Home of the Brave (2007),Action|Drama|War +50153,Code Name: The Cleaner (2007),Action|Comedy|Crime +50158,Stomp the Yard (2007),Drama|Musical +50160,Miss Potter (2006),Drama +50162,Arthur and the Invisibles (2007),Action|Children|Fantasy +50165,Tell Me Something (Telmisseomding) (1999),Crime|Horror|Mystery|Thriller +50183,Loving Annabelle (2006),Drama|Romance +50189,American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006),Comedy|Romance +50208,Rolling Family (Familia rodante) (2004),Comedy|Drama +50229,"Young Girls of Rochefort, The (Demoiselles de Rochefort, Les) (1967)",Comedy|Musical|Romance +50245,Alice in the Cities (Alice in den Stadten) (1974),Drama +50253,David and Bathsheba (1951),Drama|Romance +50259,Old Joy (2006),Drama +50271,Legend of the Black Scorpion (a.k.a. The Banquet) (Ye yan) (2006),Action|Drama|Fantasy|War +50274,Venus (2006),Drama|Romance +50279,My Bollywood Bride (2006),Comedy|Drama|Romance +50347,Rosario Tijeras (2005),Crime|Drama|Romance +50349,American Madness (1932),Drama +50354,The Return of Don Camillo (1953),Comedy +50356,The Little World of Don Camillo (1952),Comedy +50358,Invisible Waves (2006),Adventure|Crime|Drama +50379,Cold Showers (Douches froides) (2005),Drama +50382,"Singer, The (Quand j'étais chanteur) (2006)",Drama|Romance +50440,Primeval (2007),Horror|Thriller +50442,Alpha Dog (2007),Crime|Drama +50445,"Hitcher, The (2007)",Action|Horror|Thriller +50447,"Dead Girl, The (2006)",Drama|Mystery|Thriller +50477,"Testament of Orpheus, The (Testament d'Orphée) (1960)",Drama +50482,House of 9 (2005),Drama|Horror|Mystery|Thriller +50488,"Stolen Life, A (1946)",Drama +50514,After the Wedding (Efter brylluppet) (2006),Drama +50517,Time (Shi gan) (2006),Drama|Romance +50533,Into Great Silence (Die große Stille) (2005),Documentary +50541,Dinner for One (Der 90. Geburtstag oder Dinner for One) (1963),Comedy +50550,Red Doors (2005),Comedy|Drama +50572,"Wendell Baker Story, The (2005)",Comedy|Drama|Romance +50574,Crawlspace (1986),Horror +50583,Linda Linda Linda (2005),Comedy|Drama +50585,Juarez (1939),Drama|Romance +50589,Trilogy: The Weeping Meadow (Trilogia: To livadi pou dakryzei) (2004),Drama|Romance +50594,Daisies (Sedmikrasky) (1966),Comedy|Drama +50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy +50610,Beer League (2006),Comedy +50613,Dead Meat (2004),Horror +50615,Killer of Sheep (1977),Drama +50619,"Blood of a Poet, The (Sang d'un poète, Le) (1930)",Drama|Fantasy +50628,Dirty Sanchez: The Movie (2006),Comedy +50630,"Shadow Dancer, The (Shadows in the Sun) (2005)",Comedy|Drama|Romance +50641,House (Hausu) (1977),Comedy|Fantasy|Horror +50651,Kenny (2006),Comedy +50658,49 Up (2005),Documentary +50685,Waitress (2007),Comedy|Drama|Romance +50703,"Secret, The (2006)",Documentary +50705,Neverwas (2005),Drama|Fantasy|Mystery +50740,Seven Up! (1964),Documentary +50742,7 Plus Seven (1970),Documentary +50754,Record of a Tenement Gentleman (Nagaya shinshiroku) (1947),Drama +50774,R-Point (Arpointeu) (2004),Action|Drama|Horror +50792,Catch and Release (2006),Comedy|Drama|Romance +50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller +50796,Blood and Chocolate (2007),Drama|Fantasy|Horror|Romance +50798,Epic Movie (2007),Adventure|Comedy +50800,"Messengers, The (2007)",Drama|Horror|Thriller +50802,Because I Said So (2007),Comedy|Drama|Romance +50804,Hannibal Rising (2007),Drama|Horror|Thriller +50806,Norbit (2007),Comedy|Romance +50821,Billy the Kid vs. Dracula (1966),Action|Drama|Horror +50828,Red Angel (Akai tenshi) (1966),Drama|Romance|War +50842,"Boss of It All, The (Direktøren for det hele) (2006)",Comedy|Drama +50851,Cocaine Cowboys (2006),Documentary +50858,Lonely Hearts (2006),Crime|Drama|Thriller +50872,Ratatouille (2007),Animation|Children|Drama +50886,Five Fingers (2006),Drama|Thriller +50892,Izo (2004),Action|Drama|Fantasy|Horror|Thriller|War +50898,Lola (1961),Drama|Romance +50909,"Point, The (1971)",Animation|Children|Fantasy|Musical +50912,"Paris, I Love You (Paris, je t'aime) (2006)",Romance +50923,"Astronaut Farmer, The (2007)",Drama +50940,Murk (Mørke) (2005),Drama|Thriller +50942,"Wake Up, Ron Burgundy (2004)",Comedy +50944,S.P.L.: Kill Zone (Saat po long) (2005),Action|Crime|Drama|Thriller +50949,Mafioso (1962),Comedy|Crime|Drama +50954,It's a Boy Girl Thing (2006),Comedy|Romance +50970,Myra Breckinridge (1970),Comedy +50977,Vice Squad (1982),Action|Thriller +50999,"Ugly Duckling and Me!, The (2006)",Animation|Comedy +51004,Danika (2006),Drama|Horror|Thriller +51007,Days of Glory (Indigènes) (2006),Action|Adventure|Drama|War +51014,"Strange Case of Dr. Jekyll and Mr. Hyde, The (1968)",Drama|Horror|Sci-Fi|Thriller +51019,Fifty-Fifty (a.k.a. Schizo) (Shiza) (2004),Crime|Drama|Romance|Thriller +51024,The Odyssey (1997),Adventure|Drama|Fantasy +51037,Unknown (2006),Drama|Mystery|Thriller +51044,Magical Mystery Tour (1967),Comedy|Musical +51053,Ringers: Lord of the Fans (2005),Comedy|Documentary +51060,Sisters of the Gion (Gion no shimai) (1936),Drama +51063,Trailer Park Boys: The Movie (2006),Comedy|Crime +51077,Ghost Rider (2007),Action|Fantasy|Thriller +51080,Breach (2007),Drama|Thriller +51082,Tyler Perry's Daddy's Little Girls (2007),Comedy|Romance +51084,Music and Lyrics (2007),Comedy|Romance +51086,"Number 23, The (2007)",Drama|Mystery|Thriller +51088,Reno 911!: Miami (2007),Comedy +51091,Black Snake Moan (2006),Drama +51094,Gray Matters (2006),Comedy|Drama|Romance +51103,Be with Me (2005),Drama|Romance +51106,Shooting Gallery (2005),Crime|Drama|Thriller +51111,What Will You Do When You Catch Me? (Co mi zrobisz jak mnie zlapiesz?) (1978),Comedy|Crime +51119,"Dagger of Kamui, The (1985)",Action|Adventure|Animation +51127,loudQUIETloud: A Film About the Pixies (2006),Documentary +51167,My Father and My Son (Babam ve oglum) (2005),Drama +51174,Factory Girl (2006),Drama +51182,Salon Kitty (1976),Drama +51185,Human Trafficking (2005),Crime|Drama|Mystery|Thriller +51187,Kidulthood (2006),Drama +51194,Like Mike 2: Streetball (2006),Children|Comedy +51203,Lady in Cement (1968),Crime|Drama|Mystery|Thriller +51207,Street Trash (1987),Comedy|Horror +51209,Fighting Elegy (Kenka erejii) (1966),Action|Comedy +51246,Salvatore Giuliano (1964),Crime|Drama|War +51249,First Man Into Space (1959),Drama|Horror|Sci-Fi +51251,I Drink Your Blood (1970),Horror +51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery +51265,Dead Heat on a Merry-Go-Round (1966),Comedy|Crime +51277,"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)",Action|Adventure +51287,Mad Love (1935),Horror|Romance +51300,"Trial of Billy Jack, The (1974)",Action|Drama|Musical +51302,"Savage Innocents, The (1960)",Adventure|Crime|Drama +51304,Karla (2006),Crime|Drama|Thriller +51312,"Consequences of Love, The (Conseguenze dell'amore, Le) (2004)",Crime|Drama +51314,Golden Door (Nuovomondo) (2006),Adventure|Drama|Romance +51317,Kamchatka (2002),Drama +51321,"Leopard Man, The (1943)",Drama|Horror|Mystery|Thriller +51341,Family Law (Derecho de familia) (2006),Comedy|Drama +51354,Emil i Lönneberga (1971),Children|Drama +51357,Citizen X (1995),Crime|Drama|Thriller +51372,"""Great Performances"" Cats (1998)",Musical +51380,"Canterbury Tales, The (I racconti di Canterbury) (1972)",Comedy|Drama +51402,"Forest for the Trees, The (Der Wald vor lauter Bäumen) (2003)",Drama +51412,Next (2007),Action|Sci-Fi|Thriller +51418,Breaking and Entering (2006),Drama +51433,Changing Times (Les temps qui changent) (2004),Drama|Romance +51455,God Grew Tired of Us (2006),Documentary|Drama +51457,Iraq in Fragments (2006),Documentary|War +51471,Amazing Grace (2006),Drama|Romance +51486,Romanzo Criminale (2005),Crime|Drama +51498,2001 Maniacs (2005),Comedy|Horror +51503,Wise Guys (1986),Comedy|Crime +51520,Teen Wolf Too (1987),Comedy +51528,"Commare secca, La (Grim Reaper, The) (1962)",Drama|Mystery +51535,Body Count (1998),Comedy|Crime|Drama|Thriller +51540,Zodiac (2007),Crime|Drama|Thriller +51545,Pusher III: I'm the Angel of Death (2005),Action|Comedy|Drama|Horror|Thriller +51559,Eight Deadly Shots (Kahdeksan surmanluotia) (1972),Drama +51562,Babylon 5: The Gathering (1993),Sci-Fi +51569,White Noise 2: The Light (2007),Drama|Horror|Thriller +51573,Meshes of the Afternoon (1943),Fantasy +51575,Wild Hogs (2007),Adventure|Comedy +51577,Zyzzyx Rd (2006),Thriller +51579,Man About Town (2006),Comedy|Drama +51596,First on the Moon (Pervye na Lune) (2005),Documentary|Sci-Fi +51605,El Lobo (2004),Thriller +51617,Unfaithfully Yours (1984),Comedy|Romance +51619,"Lathe of Heaven, The (1980)",Sci-Fi +51632,Atlantis: Milo's Return (2003) ,Action|Adventure|Animation|Children|Comedy|Fantasy +51638,"Westerner, The (1940)",Western +51660,"Ultimate Gift, The (2006)",Drama +51662,300 (2007),Action|Fantasy|War|IMAX +51666,"Abandoned, The (2006)",Horror|Mystery|Thriller +51678,Julius Caesar (1953),Drama +51686,Three Smart Girls (1936),Comedy|Musical|Romance +51691,Something in the Wind (1947),Comedy|Musical +51694,Starter for 10 (2006),Drama|Romance +51698,"Last Mimzy, The (2007)",Adventure|Children|Sci-Fi +51705,Priceless (Hors de prix) (2006),Comedy|Romance +51709,"Host, The (Gwoemul) (2006)",Comedy|Drama|Horror|Sci-Fi|Thriller +51773,"America, America (1963)",Drama +51800,Kippur (2000),Drama|War +51809,"Situation, The (2006)",Drama +51817,Diary of a Hitman (1991),Crime|Drama|Thriller +51820,Flower Drum Song (1961),Comedy|Musical|Romance +51834,Becoming Jane (2007),Drama|Romance +51847,Right at Your Door (2006),Drama|Thriller +51857,"Taste of Honey, A (1961)",Drama +51884,"Namesake, The (2006)",Drama|Romance +51886,Omagh (2004),Drama +51891,Samurai Spy (Ibun Sarutobi Sasuke) (1965),Action|Drama +51894,"Last Command, The (1928)",Drama|War +51903,I Think I Love My Wife (2007),Comedy|Drama|Romance +51905,"Second Chance, The (2006)",Drama +51911,"Fugitive Kind, The (1959)",Crime|Drama|Romance +51917,Wilderness (2006),Horror|Thriller +51921,Hipnos (2004),Horror|Thriller +51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller +51927,Dead Silence (2007),Horror|Mystery|Thriller +51931,Reign Over Me (2007),Drama +51933,Pride (2007),Drama +51935,Shooter (2007),Action|Drama|Thriller +51937,"Hills Have Eyes II, The (2007)",Horror|Thriller +51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy +51991,"Italian, The (Italianetz) (2005)",Drama +52005,Jindabyne (2006),Crime|Drama|Mystery|Thriller +52009,"Spider's Stratagem, The (Strategia del ragno) (1970)",Drama|Mystery +52016,Nomad (Köshpendiler) (2005),Drama|War +52033,"Tall Target, The (1951)",Adventure|Crime|Drama|Thriller +52037,Avenue Montaigne (Fauteuils d'orchestre) (2006),Comedy|Drama|Romance +52042,Black Book (Zwartboek) (2006),Drama|Thriller|War +52078,Love and Honor (2006),Drama|Romance +52088,Dreamland (2006),Drama +52101,"Quiet Duel, The (Shizukanaru ketto) (1949)",Drama +52104,"Moment of Innocence, A (Nun va Goldoon) (1996)",Drama +52106,"Silence, The (Sokout) (1998)",Drama +52108,It's Impossible to Learn to Plow by Reading Books (1988),Drama +52118,R.S.V.P. (2002) ,Comedy|Crime|Horror +52153,"Five Pennies, The (1959)",Drama +52170,Philanthropy (Filantropica) (2002),Comedy +52173,Ladies in Retirement (1941),Drama +52180,"Not for or Against (Quite the Contrary) (Ni pour, ni contre (bien au contraire)) (2002)",Crime|Drama +52182,Eklavya: The Royal Guard (2007),Action|Drama|Thriller +52189,Dark Horse (Voksne mennesker) (2005),Comedy|Drama|Romance +52199,Damnation (Karhozat) (1987),Drama|Film-Noir +52202,His Kind of Woman (1951),Comedy|Crime|Drama|Film-Noir|Thriller +52224,Turn of Faith (2002),Crime|Drama +52227,"Darwin Awards, The (2006)",Adventure|Comedy|Romance +52237,"Tarnished Angels, The (1958)",Drama +52241,"Lookout, The (2007)",Crime|Drama|Thriller +52245,Blades of Glory (2007),Comedy|Romance +52265,"Armwrestler From Solitude, The (Armbryterskan från Ensamheten) (2004)",Documentary +52273,Kissed by Winter (Vinterkyss) (2005),Drama|Mystery|Thriller +52279,Are We Done Yet? (2007),Comedy +52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller +52283,"Reaping, The (2007)",Horror|Thriller +52285,Firehouse Dog (2007),Action|Comedy +52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi +52299,American Hardcore (2006),Documentary +52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War +52321,Seraphim Falls (2006),Action|Adventure|Drama|War|Western +52326,Double Harness (1933),Comedy|Drama +52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller +52352,Judge Priest (1934),Comedy|Drama|Romance +52356,Copying Beethoven (2006),Drama|Musical +52365,Palais royal ! (2005),Comedy +52375,"Hoax, The (2007)",Crime|Drama +52378,No Way Out (1950),Drama|Film-Noir +52413,Ulysses' Gaze (To Vlemma tou Odyssea) (1995),Drama|War +52418,Sky Fighters (Les Chevaliers Du Ciel) (2005),Action|Adventure +52424,Scent of a Woman (Profumo di donna) (1974),Comedy|Drama +52427,"Welcome Back, Mr. McDonald (Rajio no jikan) (1997)",Comedy +52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical +52443,Origin: Spirits of the Past (Gin-iro no kami no Agito) (2006),Animation|Drama|Romance|Sci-Fi +52448,Goya's Ghosts (2006),Drama +52456,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller +52458,Disturbia (2007),Drama|Thriller +52460,Pathfinder (2007),Action|Adventure|Drama|Thriller|War +52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi +52489,"Private Affairs of Bel Ami, The (1947)",Drama +52495,Straight Time (1978),Crime|Drama +52528,Tristana (1970),Drama +52545,Puccini for Beginners (2006),Comedy|Romance +52548,Slow Burn (2005),Drama|Mystery|Thriller +52551,Redline (2007),Action +52561,Summer Palace (Yihe yuan) (2006),Drama|Romance +52570,In the Year of the Pig (1968),Documentary|War +52572,"Mackintosh Man, The (1973)",Action|Drama|Thriller +52579,"Vie en Rose, La (Môme, La) (2007)",Drama|Musical +52581,"Man - Woman Wanted (Poszukiwany, poszukiwana) (1973)",Comedy +52583,Griffin & Phoenix (2006),Comedy|Drama|Romance +52589,"Resurrected, The (1992)",Horror +52591,"Contract, The (2006)",Crime|Drama|Thriller +52604,Fracture (2007),Crime|Drama|Mystery|Thriller +52606,Big Nothing (2006),Comedy|Crime|Thriller +52617,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama +52634,Smash-Up: The Story of a Woman (1947),Drama|Romance +52641,"Prisoner, The (Island of Fire) (Huo shao dao) (1990)",Action|Crime|Drama +52644,Vacancy (2007),Horror|Thriller +52660,Night of the Ghouls (1959),Horror +52666,Benny's Video (1992),Drama|Horror +52668,In the Land of Women (2007),Comedy|Drama|Romance +52672,Confetti (2006),Comedy +52690,"Devil Commands, The (1941)",Horror|Sci-Fi +52694,Mr. Bean's Holiday (2007),Comedy +52704,"Grace Lee Project, The (2005)",Documentary +52709,Adam & Paul (2004),Comedy|Drama +52712,"Invisible, The (2007)",Crime|Drama|Fantasy|Mystery|Thriller +52715,Kickin It Old Skool (2007),Comedy +52717,"Condemned, The (2007)",Action|Adventure|Crime|Thriller +52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX +52724,Lucky You (2007),Comedy|Drama +52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy +52742,"Furies, The (1950)",Drama|Romance|Western +52767,21 Up (1977),Documentary +52773,Kiss Me Again (2006),Drama|Romance +52781,Hana (Hana yori mo naho) (2006),Comedy|Drama +52784,Sharkwater (2006),Documentary +52796,West (Occident) (2002),Comedy +52804,Flannel Pajamas (2006),Romance +52806,Tales from Earthsea (Gedo Senki) (2006),Adventure|Animation|Fantasy +52813,Thieves' Highway (1949),Drama|Film-Noir|Thriller +52831,Maniac Cop (1988),Action|Crime|Horror|Thriller +52838,Year of the Dog (2007),Comedy|Drama|Romance +52845,Thr3e (Three) (2006),Drama|Horror|Mystery|Thriller +52858,"Rocket, The (a.k.a. Maurice Richard) (2005)",Drama +52865,Diggers (2006),Comedy|Drama +52867,"Ex, The (2007)",Comedy|Romance +52872,Woman Is the Future of Man (Yeojaneun namjaui miraeda) (2004),Drama +52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi +52891,"Flying Scotsman, The (2006)",Drama +52913,Sylvia Scarlett (1935),Comedy|Drama|Romance +52922,Fixed Bayonets! (1951),Drama|War +52927,Syndromes and a Century (Sang sattawat) (2006),Drama +52929,Red Road (2006),Drama +52938,"Adventures of Mark Twain, The (1986)",Adventure|Animation|Children +52942,At Five in the Afternoon (Panj é asr) (2003),Drama +52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller +52952,This Is England (2006),Drama +52956,One Nite In Mongkok (Wong gok hak yau) (2004),Action|Crime|Drama +52967,Away from Her (2006),Drama +52973,Knocked Up (2007),Comedy|Drama|Romance +52975,Hairspray (2007),Comedy|Drama|Musical +52980,"Zidane: A 21st Century Portrait (Zidane, un portrait du 21e siècle) (2006)",Documentary +52995,"Prodigal Son, The (Bai ga jai) (1981)",Action|Adventure|Drama +53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller +53002,Georgia Rule (2007),Comedy|Drama|Romance +53004,Delta Farce (2007),Action|Adventure|Comedy +53022,Wheels on Meals (Kuai can che) (1984),Action|Comedy|Crime|Romance +53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary +53038,Red Dust (1932),Drama +53046,Desperation (2006),Drama|Fantasy|Horror|Mystery|Thriller +53052,Tokyo Olympiad (1965),Documentary +53066,Caught (1949),Drama|Film-Noir +53084,Blood Trails (2006) ,Horror|Thriller +53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy +53123,Once (2006),Drama|Musical|Romance +53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy +53127,Bug (2007),Drama|Horror|Thriller +53129,Mr. Brooks (2007),Crime|Drama|Thriller +53131,Rise: Blood Hunter (2007),Action|Horror|Mystery|Thriller +53133,Gracie (2007),Drama +53138,"Librarian: Return to King Solomon's Mines, The (2006)",Action|Adventure|Fantasy +53140,"Librarian: Quest for the Spear, The (2004)",Action|Adventure|Comedy|Fantasy|Romance +53143,Fay Grim (2006),Action|Thriller +53152,"Man from Planet X, The (1951)",Horror|Romance|Sci-Fi +53154,Zoo (2007),Documentary +53161,"I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)",Comedy|Drama|Romance|Sci-Fi +53183,Dragon Tiger Gate (Lung fu moon) (2006),Action|Drama +53187,Beauty in Trouble (Kráska v nesnázích) (2006),Drama +53189,Eagle vs Shark (2007),Comedy +53207,88 Minutes (2008),Crime|Drama|Mystery|Thriller +53226,"Great War, The (Grande guerra, La) (1959)",Action|Adventure|Comedy|Drama|War +53280,"Breed, The (2006)",Horror|Thriller +53282,Day Night Day Night (2006),Crime|Drama|Thriller +53318,Cashback (2006),Comedy|Drama|Romance +53322,Ocean's Thirteen (2007),Crime|Thriller +53326,Them (Ils) (2006),Horror +53342,Flandres (Flanders) (2006),Action|Drama|War +53349,Ten Canoes (2006),Adventure|Comedy|Drama|War +53352,Sheitan (2006),Comedy|Horror|Thriller +53355,Sun Alley (Sonnenallee) (1999),Comedy|Romance +53370,Godzilla and Mothra: The Battle for Earth (Gojira vs. Mosura) (1992),Action|Sci-Fi +53373,Godzilla vs. Destroyah (Gojira vs. Desutoroiâ) (1995) ,Action|Sci-Fi +53375,Godzilla vs. King Ghidorah (Gojira vs. Kingu Gidorâ) (1991),Action|Sci-Fi +53379,"Ghost Ship, The (1943)",Drama|Mystery|Thriller +53382,Experiment Perilous (1944),Romance|Thriller +53406,Go (2001),Drama +53416,Alone with Her (2006),Crime|Drama|Thriller +53435,Hostel: Part II (2007),Crime|Horror|Thriller +53443,Remember the Night (1940),Comedy|Drama|Romance +53447,Paranoid Park (2007),Crime|Drama +53450,"Legend of Sleepy Hollow, The (1980)",Comedy|Fantasy|Horror +53453,Starcrash (a.k.a. Star Crash) (1978),Action|Adventure|Fantasy|Sci-Fi +53460,Surf's Up (2007),Animation|Children|Comedy +53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi +53466,Nancy Drew (2007),Adventure|Crime|Thriller +53468,Fido (2006),Comedy|Horror|Thriller +53476,"Iceberg, L' (2005)",Comedy +53498,Who the #$&% is Jackson Pollock? (2006),Documentary +53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller +53548,Robot Monster (1953),Horror|Sci-Fi +53550,Rescue Dawn (2006),Action|Adventure|Drama|War +53554,"Blue Bird, The (1940)",Children|Fantasy +53561,"Wedding Night, The (1935)",Drama|Romance +53569,"Amateurs, The (Moguls, The) (2005)",Comedy +53574,"TV Set, The (2006)",Comedy|Drama +53578,"Valet, The (La doublure) (2006)",Comedy +53582,Dodge City (1939),Romance|Western +53584,"Mistress of Spices, The (2005)",Romance +53592,Four Minutes (Vier Minuten) (2006),Drama +53600,In Your Hands (Forbrydelser) (2004),Drama +53651,Once You're Born You Can No Longer Hide (Quando sei nato non puoi più nasconderti) (2005),Adventure|Drama +53737,"Night of the Generals, The (1967)",Crime|Drama|Mystery|Thriller|War +53741,"Comedy of Power (Ivresse du pouvoir, L') (2006)",Drama +53752,Gui Si (Silk) (2006),Drama|Horror|Mystery|Sci-Fi|Thriller +53766,Breaking News (Daai si gin) (2004),Action|Crime|Drama +53769,In Search of a Midnight Kiss (2007),Comedy|Romance +53771,Alice in Wonderland (1985),Adventure|Children|Fantasy +53774,"Mystery of Picasso, The (Le mystère Picasso) (1956)",Documentary +53788,Exiled (Fong juk) (2006),Action|Crime|Thriller +53808,Bring It On: All or Nothing (2006),Comedy +53827,Sybil (1976),Drama +53833,David Holzman's Diary (1967),Documentary|Drama +53835,Journey to Italy (Viaggio in Italia) (Voyage to Italy) (Voyage in Italy) (1954),Drama|Romance +53837,Swoon (1992),Crime|Drama +53839,East Side Story (1997),Documentary|Musical +53841,Knock on Wood (1954),Comedy +53843,O.C. and Stiggs (1985),Comedy +53845,"Homecoming, The (1973)",Drama +53847,"Woman Chaser, The (1999)",Comedy +53849,Uranus (1990),Comedy|Drama +53851,American Friends (1991),Drama|Romance +53853,Within Our Gates (1920),Drama|Romance +53855,Johnny Tremain (1957),Adventure|Children|War +53857,Alan & Naomi (1992),Children|Drama +53859,Goal II: Living the Dream (2007),Action|Drama +53873,Cheech & Chong: Still Smokin' (1983),Comedy +53880,Putney Swope (1969),Comedy +53883,"Power of Nightmares, The: The Rise of the Politics of Fear (2004)",Documentary +53885,"Trials of Darryl Hunt, The (2006)",Crime|Documentary +53887,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical +53894,Sicko (2007),Documentary|Drama +53906,Popular Music (Populärmusik från Vittula) (2004),Comedy|Drama +53912,Awesome; I Fuckin Shot That! (2006),Documentary|Musical +53916,Tea and Sympathy (1956),Drama|Romance +53919,"Man in the Iron Mask, The (1939)",Adventure +53921,"Mighty Heart, A (2007)",Drama|Thriller +53953,1408 (2007),Drama|Horror|Thriller +53956,Death at a Funeral (2007),Comedy +53963,Clubland (a.k.a. Introducing the Dwights) (2007),Comedy|Drama +53967,High Road to China (1983),Adventure|Drama|Romance|War +53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller +53974,License to Wed (2007),Comedy|Romance +53988,Evening (2007),Drama +53993,Evan Almighty (2007),Comedy|Fantasy +53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX +53999,Captivity (2007),Crime|Thriller +54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX +54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance +54010,Bedtime Story (1964),Comedy +54020,McQ (1974),Action|Crime|Drama +54049,"Mean Season, The (1985)",Crime|Thriller +54056,Back In Action (1993),Action|Adventure|Drama +54067,Heart of Dragon (Long de xin) (1985),Action|Comedy|Crime|Drama|War +54075,Arn: The Knight Templar (Arn - Tempelriddaren) (2007),Action|Adventure|Drama|Romance|War +54094,Driving Lessons (2006),Comedy|Drama +54116,First Snow (2006),Drama|Thriller +54121,Broken Arrow (1950),Drama|Romance|Western +54144,"Last Time, The (2006)",Comedy|Drama|Romance +54171,Re-cycle (Gwai wik) (2006),Fantasy|Horror +54176,No Time For Sergeants (1958),Adventure|Comedy|War +54185,Manufactured Landscapes (2006),Documentary +54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance +54193,Broken English (2007),Comedy|Drama|Romance +54196,Brand Upon the Brain! (2006),Adventure|Fantasy|Mystery +54198,Boris and Natasha (1992),Action|Comedy +54220,"Sterile Cuckoo, The (1969)",Comedy|Drama +54229,When the Wind Blows (1986),Animation|War +54239,"Dawn Patrol, The (Flight Commander) (1930)",Action|Drama|War +54241,"Lives of a Bengal Lancer, The (1935)",Adventure|Drama +54243,"Piano Tuner of Earthquakes, The (2005)",Drama|Fantasy|Romance +54248,A Dog's Breakfast (2007),Comedy +54251,Dorian Blues (2004),Comedy +54254,Come Early Morning (2006),Drama|Romance +54256,Hot Rod (2007),Comedy +54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance +54262,Murder Most Foul (1964),Comedy|Crime|Drama|Mystery|Thriller +54268,Who's Your Caddy? (2007),Comedy +54270,Skinwalkers (2007),Horror|Thriller +54272,"Simpsons Movie, The (2007)",Animation|Comedy +54274,I Know Who Killed Me (2007),Crime|Drama|Thriller +54276,No Reservations (2007),Comedy|Drama|Romance +54278,Underdog (2007),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +54281,Charlie Bartlett (2007),Comedy|Drama +54284,"Cantante, El (2007)",Drama|Musical +54286,"Bourne Ultimatum, The (2007)",Action|Crime|Thriller +54290,Bratz: The Movie (2007),Comedy +54318,Cruel Story of Youth (Seishun zankoku monogatari) (1960),Drama +54326,"Sierra, La (2005)",Documentary +54328,My Best Friend (Mon meilleur ami) (2006),Comedy +54331,You Kill Me (2007),Comedy|Crime|Thriller +54341,Wild Tigers I Have Known (2006),Drama +54349,Reincarnation (2005),Horror|Mystery +54354,China Blue (2005),Documentary +54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller +54378,Man's Job (Miehen työ) (2007),Drama +54406,Morning Glory (1933),Drama|Romance +54419,Czech Dream (Ceský sen) (2004),Documentary +54426,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama +54445,"All the Way Boys (Più forte, ragazzi!) (1972)",Action|Adventure|Comedy +54455,Teachers (1984),Comedy|Drama|Romance +54480,Jack the Giant Killer (1962),Adventure|Fantasy +54491,If I Were You (Se Eu Fosse Você) (2006),Comedy +54493,"Manitou, The (1978)",Horror +54501,Miss Julie (1951),Drama +54503,Superbad (2007),Comedy +54505,Arctic Tale (2007),Documentary +54510,Joshua (2007),Drama|Thriller +54513,Talk to Me (2007),Drama +54519,Princesas (2005),Drama +54536,"Tripper, The (2006)",Horror +54542,Command Decision (1948),Drama|War +54554,"Cave of the Yellow Dog, The (2005)",Drama +54561,Abraham (1993),Adventure|Drama +54580,"Young Lieutenant, The (Le petit lieutenant) (2005)",Crime|Drama +54605,"Kill, Baby, Kill (Operazione paura) (1966)",Horror +54607,"War Tapes, The (2006)",Documentary|War +54612,Resurrecting the Champ (2007),Drama +54614,American Pastime (2007),Drama|Romance +54617,"Brice Man, The (Brice de Nice) (2005)",Comedy +54621,Molière (2007),Comedy|Drama|Romance +54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller +54652,1991: The Year Punk Broke (1992),Documentary +54686,"Last Legion, The (2007)",Action|Adventure|Fantasy|War +54689,"Last Casino, The (2004)",Comedy|Drama +54691,Lady Chatterley (2006),Drama|Romance +54725,Under the Yum Yum Tree (1963),Comedy +54732,Balls of Fury (2007),Comedy +54734,Sydney White (2007),Comedy +54736,"Kingdom, The (2007)",Action|Drama|Thriller +54738,Wind Chill (2007),Drama|Horror|Thriller +54745,Rocket Science (2007),Comedy|Drama +54758,TerrorStorm: A History of Government-Sponsored Terrorism (2006),Documentary +54768,Daddy Day Camp (2007),Children|Comedy +54771,"Invasion, The (2007)",Action|Drama|Horror|Sci-Fi|Thriller +54775,War (2007),Action|Thriller +54778,Illegal Tender (2007),Crime|Drama|Thriller +54780,"Nanny Diaries, The (2007)",Comedy|Drama|Romance +54783,September Dawn (2007),Drama|Romance|Western +54785,Halloween (2007),Horror +54787,Death Sentence (2007),Drama|Thriller +54796,2 Days in Paris (2007),Comedy|Drama|Romance +54826,Do You Like Hitchcock? (Ti piace Hitchcock?) (2005),Horror|Mystery|Thriller +54833,Brighton Rock (1947),Crime|Drama|Film-Noir +54872,Keoma (1976),Action|Drama|Western +54875,Face to Face (Faccia a faccia) (1967),Adventure|Western +54878,"Professional Gun, A (Mercenary, The) (Mercenario, Il) (1968)",Comedy|Western +54881,"King of Kong, The (2007)",Documentary +54885,"Wool Cap, The (2004)",Drama +54908,Taxi 4 (2007),Action|Comedy +54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller +54922,Victory Through Air Power (1943),Animation|Documentary|War +54934,"Brothers Solomon, The (2007)",Comedy +54958,Bordertown (2006),Crime|Drama|Thriller +54962,"Nines, The (2007)",Drama|Mystery +54964,Die! Die! My Darling! (Fanatic) (1965),Horror|Thriller +54967,"Hunting and Gathering (Ensemble, c'est tout) (2007)",Drama|Romance +54972,"New Wave, A (2007)",Action|Crime +54978,"Good Night, The (2007)",Comedy|Drama|Fantasy|Musical|Romance +54986,"Watch Out, We're Mad (...Altrimenti ci arrabbiamo!) (1974)",Action|Comedy +54988,Stories of Lost Souls (2005),Comedy|Drama|Thriller +54995,Planet Terror (2007),Action|Horror|Sci-Fi +54997,3:10 to Yuma (2007),Action|Crime|Drama|Western +54999,Shoot 'Em Up (2007),Action|Comedy|Crime +55020,"Ten, The (2007)",Comedy +55031,"Evening with Kevin Smith, An (2002)",Comedy|Documentary +55036,Gotti (1996),Crime|Drama +55040,Bitter Rice (Riso amaro) (1949),Drama +55050,Fierce People (2005),Drama +55052,Atonement (2007),Drama|Romance|War +55061,Electroma (2006),Drama|Sci-Fi +55063,My Winnipeg (2007),Documentary|Fantasy +55067,Requiem (2006),Drama|Thriller +55069,"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)",Drama +55071,No End in Sight (2007),Documentary +55073,Mercenary for Justice (2006),Action +55078,Far from the Madding Crowd (1967),Drama|Romance +55080,"Brave One, The (2007)",Crime|Drama|Thriller +55094,In the Valley of Elah (2007),Drama|Mystery +55098,Paint It Yellow (Rang De Basanti) (2006),Action|Comedy|Drama +55100,I Could Never Be Your Woman (2007),Comedy|Romance +55106,Design for Living (1933),Comedy|Romance +55110,December Boys (2007),Drama +55112,Shanghai Kiss (2007),Comedy|Drama|Romance +55116,"Hunting Party, The (2007)",Action|Adventure|Comedy|Drama|Thriller +55118,Eastern Promises (2007),Crime|Drama|Thriller +55132,"Bubble, The (Ha-Buah) (2006)",Drama|Romance +55147,27 Missing Kisses (2000),Comedy|Drama|Romance +55154,Brooklyn Rules (2007),Crime|Drama|Romance +55156,"Unreasonable Man, An (2006)",Documentary +55159,Vengeance is Mine (Fukushu suruwa wareniari) (1979),Crime|Drama +55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy +55176,In the Shadow of the Moon (2007),Documentary +55178,Stephanie Daley (2006),Drama +55190,Love and Other Disasters (2006),Comedy|Romance +55199,"Contractor, The (2007)",Action|Drama|Thriller +55205,Interview (2007),Drama +55207,Cashback (2004),Comedy|Drama +55209,The Death and Life of Bobby Z (2007),Action|Crime|Drama|Thriller +55223,Private Fears in Public Places (Coeurs) (2006),Drama|Romance +55226,House of Bamboo (1955),Crime|Film-Noir +55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller +55241,Mr. Woodcock (2007),Comedy +55245,Good Luck Chuck (2007),Comedy|Romance +55247,Into the Wild (2007),Action|Adventure|Drama +55250,"Game Plan, The (2007)",Comedy +55253,"Lust, Caution (Se, jie) (2007)",Drama|Romance|Thriller|War +55255,Feast of Love (2007),Drama|Romance +55257,Postal (2007),Action|Comedy|Thriller +55259,"Seeker: The Dark Is Rising, The (2007)",Action|Adventure|Drama|Fantasy +55261,"Heartbreak Kid, The (2007)",Comedy|Drama|Romance +55267,Dan in Real Life (2007),Comedy|Drama|Romance +55269,"Darjeeling Limited, The (2007)",Adventure|Comedy|Drama +55272,We Own the Night (2007),Crime|Drama +55274,Elizabeth: The Golden Age (2007),Drama +55276,Michael Clayton (2007),Drama|Thriller +55278,Sleuth (2007),Drama|Mystery|Thriller +55280,Lars and the Real Girl (2007),Comedy|Drama +55282,30 Days of Night (2007),Horror|Thriller +55284,Rendition (2007),Drama|Thriller +55286,Things We Lost in the Fire (2007),Drama|Romance +55288,Reservation Road (2007),Drama|Thriller +55290,Gone Baby Gone (2007),Crime|Drama|Mystery +55292,"Comebacks, The (2007)",Comedy +55294,Weirdsville (2007),Comedy|Crime|Drama +55298,"Dog Problem, The (2006)",Comedy +55324,Relative Strangers (2006),Comedy +55329,Alien Autopsy (2006),Comedy|Sci-Fi +55343,Straightheads (Closure) (2007),Crime|Drama +55360,Climates (Iklimler) (2006),Drama +55363,"Assassination of Jesse James by the Coward Robert Ford, The (2007)",Crime|Drama|Western +55369,Chronicle of a Summer (Chronique d'un été) (1961),Documentary +55373,"Breaking Point, The (1950)",Crime|Drama|Film-Noir +55389,"Nanny, The (1965)",Drama|Thriller +55391,10th & Wolf (2006),Crime|Drama|Thriller +55402,Beaufort (2007),Action|Drama|War +55406,Civic Duty (2006),Drama|Thriller +55408,The Killing Floor (2007),Crime|Horror|Mystery +55417,Irina Palm (2007),Drama +55419,I'm Reed Fish (2006),Comedy|Drama|Romance +55434,Between Heaven and Hell (1956),Drama|War +55440,"Final Season, The (2007)",Drama +55442,Persepolis (2007),Animation|Drama +55444,Control (2007),Drama +55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance +55460,And the Pursuit of Happiness (La poursuite du bonheur) (1986),Documentary +55462,Frostbitten (Frostbiten) (2006),Comedy|Horror +55467,Jonny Vang (2003),Comedy|Drama|Mystery +55469,Graveyard of Honor (Shin jingi no hakaba) (2002),Action|Crime|Thriller +55476,"Wood & Stock: Sexo, Orégano e Rock'n'Roll (2006)",Animation|Comedy +55485,Fugitive Pieces (2007),Drama +55487,Outlaw (2007),Action|Crime|Drama|Thriller +55489,"Good Time Girls, The (Bonnes femmes, Les) (1960)",Drama|Mystery|Romance +55492,"Last Winter, The (2006)",Horror +55498,Silk (2007),Adventure|Drama|Romance +55507,"Mary, Queen of Scots (1971)",Drama +55512,Can't Help Singing (1944),Musical|Western +55517,I Want Someone to Eat Cheese With (2006),Comedy +55549,Manufacturing Dissent (2007),Documentary +55553,Black Sheep (2006),Comedy|Horror +55555,"Edge of Heaven, The (Auf der anderen Seite) (2007)",Drama +55566,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama +55577,Saw IV (2007),Crime|Horror|Thriller +55603,My Mom's New Boyfriend (2008),Action|Comedy|Romance|Thriller +55620,For the Bible Tells Me So (2007),Documentary +55626,Gemini (Sôseiji) (1999),Drama|Fantasy|Horror|Mystery|Thriller +55628,"Monster Walks, The (1932)",Horror +55652,Scum (1979),Crime|Drama +55659,Return to the 36th Chamber (Shao Lin da peng da shi) (1980) ,Action|Comedy +55668,Full of It (2007),Comedy|Drama +55671,"Sea Wolf, The (1941)",Adventure|Drama +55681,Valhalla (1986),Adventure|Animation|Children|Fantasy +55684,"City of Violence, The (Jjakpae) (2006)",Action|Crime|Drama +55687,My Kid Could Paint That (2007),Documentary +55691,"Amanece, que no es poco (1989)",Comedy +55705,Secret Sunshine (Milyang) (2007),Comedy|Drama|Romance +55713,"Reckless Moment, The (1949)",Drama|Film-Noir +55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller +55726,"Year My Parents Went on Vacation, The (O Ano em Que Meus Pais Saíram de Férias) (2006)",Drama +55729,King of California (2007),Comedy +55732,Martian Child (2007),Comedy|Drama +55737,Flight of the Living Dead (2007),Action|Horror|Sci-Fi +55748,All Souls Day: Dia de los Muertos (2005),Horror|Thriller +55751,Decoys (2004),Comedy|Horror|Sci-Fi +55757,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance +55765,American Gangster (2007),Crime|Drama|Thriller +55768,Bee Movie (2007),Animation|Comedy +55782,Citizen Dog (Mah nakorn) (2004),Comedy|Fantasy|Romance +55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller +55814,"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)",Drama +55820,No Country for Old Men (2007),Crime|Drama +55826,Ripley Under Ground (2005),Drama|Romance|Thriller +55830,Be Kind Rewind (2008),Comedy +55844,Itty Bitty Titty Committee (2007),Comedy|Drama|Romance +55851,Crazy Love (2007),Documentary +55854,"Fugitive, The (1947)",Drama +55856,Azur & Asmar (Azur et Asmar) (2006),Adventure|Animation|Children +55872,August Rush (2007),Drama|Musical +55875,Space Is The Place (1974),Sci-Fi +55888,"Dawn Rider, The (1935)",Western +55895,"Desperate Hours, The (1955)",Drama|Film-Noir|Thriller +55901,"You, the Living (Du levande) (2007)",Comedy|Drama|Musical +55908,"Man from Earth, The (2007)",Drama|Sci-Fi +55922,No Mercy for the Rude (Yeui-eomneun geotdeul) (2006),Action|Comedy|Crime +55926,Hellfighters (1968),Action|Adventure +55946,Lions For Lambs (2007),Drama|Thriller|War +55955,Fred Claus (2007),Children|Comedy|Fantasy +55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX +55999,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy +56001,Love in the Time of Cholera (2007),Drama|Romance +56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller +56006,Ever Since the World Ended (2001),Fantasy|Sci-Fi +56009,"American Soldier, The (Der amerikanische Soldat) (1970)",Drama +56012,"Evening with Kevin Smith 2: Evening Harder, An (2006)",Comedy|Documentary +56015,Kansas City Confidential (1952),Crime|Drama|Film-Noir|Mystery +56022,Harrison Bergeron (1995),Drama|Sci-Fi +56026,5ive Girls (2006),Horror|Thriller +56028,Rails & Ties (2007),Drama +56030,Darfur Now (2007),Documentary +56051,Heavens Fall (2006),Drama +56060,I Served the King of England (Obsluhoval jsem anglického krále) (2006),Comedy|Drama|Romance|War +56067,Texas Terror (1935),Action|Romance|Western +56069,Murder Party (2007),Comedy|Drama|Horror|Thriller +56079,Smiley Face (2007),Comedy +56093,12 (2007),Crime|Drama|Thriller|War +56095,XXY (2007),Drama +56098,"Steel Helmet, The (1951)",Action|Drama|War +56102,Endgame: Blueprint for Global Enslavement (2007),Documentary +56141,Blame it on Fidel! (La faute à Fidel!) (2006),Drama +56145,"Mist, The (2007)",Horror|Sci-Fi +56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance +56156,Hitman (2007),Action|Crime|Thriller +56158,This Christmas (2007),Comedy|Drama|Romance +56165,P2 (2007),Horror|Thriller +56167,Om Shanti Om (2007),Action|Drama|Musical|Romance +56169,Awake (2007),Drama|Thriller +56171,"Golden Compass, The (2007)",Adventure|Children|Fantasy +56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX +56176,Alvin and the Chipmunks (2007),Children|Comedy +56251,Futurama: Bender's Big Score (2007),Animation|Comedy|Sci-Fi +56253,Symbiopsychotaxiplasm: Take One (1968),Documentary +56274,Margot at the Wedding (2007),Drama +56286,I'm Not There (2007),Drama +56294,Beyond the Law (1993),Crime|Drama|Thriller +56313,"Shepherd of the Hills, The (1941)",Drama +56331,As Far As My Feet Will Carry Me (So weit die Füße tragen) (2001),Drama|War +56333,"Savages, The (2007)",Comedy|Drama +56336,Wrong Turn 2: Dead End (2007),Action|Horror|Thriller +56339,"Orphanage, The (Orfanato, El) (2007)",Drama|Horror|Mystery|Thriller +56350,That Hamilton Woman (1941),Drama|Romance|War +56367,Juno (2007),Comedy|Drama|Romance +56370,"Goodbye Bafana (Color of Freedom, The) (2007)",Drama|War +56372,Tokyo Twilight (Tôkyô boshoku) (1957),Drama +56379,"Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)",Documentary +56389,My Blueberry Nights (2007),Drama|Romance +56432,"Swimming Pool, The (La piscine) (1969)",Crime|Drama +56449,Cake (2005),Comedy|Romance +56456,Day of the Dead 2: Contagium (2005),Horror|Sci-Fi +56474,My Mother (Ma mère) (2004),Drama +56477,Noise (2004),Drama|Thriller +56479,Party Monster (1998),Documentary +56485,Return to Sender (2004),Drama|Thriller +56490,"Buy the Ticket, Take the Ride: Hunter S. Thompson on Film (2006)",Documentary +56508,Starting Out in the Evening (2007),Drama +56511,Redacted (2007),Action|Crime|Drama|War +56513,Suicide Killers (2006),Documentary +56515,"Devil Came on Horseback, The (2007)",Documentary +56548,All Passion Spent (1986),Drama +56551,"Treatment, The (2006)",Comedy|Drama|Romance +56561,10 Questions for the Dalai Lama (2006),Documentary +56563,Helvetica (2007),Documentary +56570,Mary (2005),Drama|Thriller +56574,Journey from the Fall (2006),Drama +56580,"War on Democracy, The (2007)",Documentary +56587,"Bucket List, The (2007)",Comedy|Drama +56599,Fall From Grace (2007),Documentary +56602,Between Two Worlds (1944),Action|Adventure|Drama|Fantasy|Mystery +56607,"Kite Runner, The (2007)",Drama +56612,Sex and Fury (Furyô anego den: Inoshika Ochô) (1973),Action|Crime|Thriller +56614,"Regular Lovers (Amants réguliers, Les) (2005)",Drama +56616,Allegro (2005),Drama|Fantasy|Mystery|Romance|Sci-Fi +56620,"Deaths of Ian Stone, The (2007)",Horror|Thriller +56624,Commune (2005),Documentary +56626,Robin Hood (1922),Adventure|Romance +56631,Densha otoko (Train Man) (2005),Comedy|Romance +56633,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller +56651,Seduced and Abandoned (Sedotta e abbandonata) (1964),Comedy|Drama +56671,"Go-Getter, The (2007)",Comedy|Drama +56691,"Hamiltons, The (2006)",Drama|Horror|Thriller +56693,Close My Eyes (1991),Drama|Romance +56700,"Flock, The (2007)",Crime|Drama|Mystery|Thriller +56702,"Maidens' Conspiracy, The (Tirante el Blanco) (2006)",Adventure +56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance +56719,Vitus (2006),Drama +56724,Joe and Max (2002),Drama|War +56744,Longford (2006),Crime|Drama +56748,"Big Bad Swim, The (2006)",Comedy|Drama +56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller +56775,National Treasure: Book of Secrets (2007),Action|Adventure +56779,I Don't Want to Sleep Alone (Hei yan quan) (2006),Comedy|Drama +56782,There Will Be Blood (2007),Drama|Western +56786,W.R.: Mysteries of the Organism (1971),Comedy|Documentary +56788,Charlie Wilson's War (2007),Comedy|Drama|War +56797,"Train Robbers, The (1973)",Western +56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi +56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical +56835,Pledge This! (2006),Comedy +56837,As You Like It (2006),Comedy|Drama|Romance +56846,Rabbit Without Ears (Keinohrhasen) (2007),Comedy|Romance +56848,Ricochet (1991),Action|Crime|Thriller +56869,Drained (O cheiro do Ralo) (2006),Comedy +56874,Chicks with Sticks (2004),Comedy|Drama +56885,"Great Debaters, The (2007)",Drama +56888,Mongolian Ping-Pong (Lü cao di) (2005),Comedy|Drama +56908,Dedication (2007),Comedy|Drama|Romance +56915,"Water Horse: Legend of the Deep, The (2007)",Adventure|Children|Fantasy +56921,Battlestar Galactica: Razor (2007),Action|Drama|Sci-Fi|Thriller +56931,"Mission, The (Cheung fo) (1999)",Crime|Drama|Mystery +56941,P.S. I Love You (2007),Comedy|Drama|Romance +56945,"Perfect Holiday, The (2007)",Comedy|Romance +56949,27 Dresses (2008),Comedy|Romance +56956,Savages (1972),Comedy|Fantasy +56959,The Mad Magician (1954),Horror|Mystery|Thriller +56995,Nanking (2007),Documentary|War +57017,"Pumpkin Eater, The (1964)",Drama +57023,Cosas que nunca te dije (Things I Never Told You) (1996),Comedy|Drama|Romance +57027,Killing Words (Palabras encadenadas) (2003),Crime|Drama|Thriller +57038,To the Left of the Father (Lavoura Arcaica) (2001),Drama +57041,Santa Claus Conquers the Martians (1964),Fantasy|Sci-Fi +57044,Two Sons of Francisco (2 Filhos de Francisco - A História de Zezé di Camargo & Luciano) (2005),Drama +57069,Equinox Flower (Higanbana) (1958),Comedy|Drama +57147,Cassandra's Dream (2007),Crime|Drama|Thriller +57171,10.5: Apocalypse (2006),Drama|Sci-Fi|Thriller +57179,"Mostly Unfabulous Social Life of Ethan Green, The (2005)",Comedy|Romance +57183,Like Stars on Earth (Taare Zameen Par) (2007),Drama +57209,Lemonade Joe (Limonádový Joe aneb Konská opera) (1964),Adventure|Comedy|Musical|Romance|Western +57223,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy +57236,LOL (2006),Comedy|Drama +57243,"Band's Visit, The (Bikur Ha-Tizmoret) (2007)",Comedy|Drama +57269,In Between Days (2006),Drama +57274,[REC] (2007),Drama|Horror|Thriller +57276,.45 (2006),Crime|Drama|Thriller +57282,And Soon the Darkness (1970),Mystery|Thriller +57291,God Save the King (2005),Comedy|Drama|Romance +57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy +57353,Flawless (2007),Crime|Drama +57357,Live-In Maid (Cama adentro) (2004),Drama +57359,Along the Ridge (Anche libero va bene) (2006),Drama +57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller +57370,Mad Money (2008),Comedy|Crime|Thriller +57378,"Detonator, The (2006)",Action|Thriller +57393,Trade (2007),Crime|Drama|Thriller +57401,Cleaner (2007),Crime|Thriller +57418,"Rachel, Rachel (1968)",Drama|Romance +57421,Hatchet (2006),Comedy|Horror +57426,Blonde Ambition (2007),Comedy|Romance +57430,Welcome to L.A. (1976),Drama|Musical +57432,Timber Falls (2007),Horror|Thriller +57439,"Sensation of Sight, The (2006)",Drama +57453,Arranged (2007),Comedy|Drama|Romance +57464,He Was a Quiet Man (2007),Drama +57468,Viva Villa! (1934),Western +57473,"Return of Doctor X, The (1939)",Horror|Mystery|Sci-Fi|Thriller +57476,The Cheyenne Social Club (1970),Comedy|Western +57478,"Laugh, Clown, Laugh (1928)",Drama +57480,"Iron Horse, The (1924)",Western +57482,Just Pals (1920),Western +57484,3 Bad Men (1926),Western +57499,Heaven and Earth (Ten to Chi to) (1990),Action|Adventure|Drama|War +57502,Cat Soup (Nekojiru-so) (2001),Adventure|Animation|Drama|Horror +57504,"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)",Animation|Comedy|Drama|Romance|Sci-Fi +57509,Sex and Breakfast (2007),Comedy|Drama|Romance +57513,What? (Che?) (1972),Comedy +57520,One Missed Call (2008),Horror|Mystery|Thriller +57522,First Sunday (2008),Comedy|Crime +57526,Untraceable (2008),Crime|Thriller +57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War +57530,How She Move (2007),Drama +57532,Meet the Spartans (2008),Comedy +57534,"Eye, The (2008)",Drama|Horror|Thriller +57536,Strange Wilderness (2008),Comedy +57538,Over Her Dead Body (2008),Comedy|Fantasy|Romance +57543,Fallen Art (Sztuka spadania) (2004),Action|Animation|Comedy +57550,Kings of the Road (Im Lauf der Zeit) (1976),Drama +57637,"Signal, The (2007)",Horror|Sci-Fi|Thriller +57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi +57648,"Green Man, The (1956)",Comedy +57655,Ira and Abby (2006),Comedy +57669,In Bruges (2008),Comedy|Crime|Drama|Thriller +57690,"Shoes of the Fisherman, The (1968)",Drama +57692,That Man from Rio (1964),Action|Adventure|Comedy|Romance +57695,"Clean, Shaven (1993)",Crime|Drama +57706,À nos amours (1983),Drama|Romance +57709,Thunder Rock (1942),Drama|Fantasy|War +57754,Bamako (2006),Drama +57772,World on a Wire (Welt am Draht) (1973),Crime|Sci-Fi +57774,"Bottom of the Sea, The (El fondo del mar) (2003)",Drama|Thriller +57776,Cazuza - O Tempo Não Pára (2004),Drama +57778,Future by Design (2006),Documentary|Sci-Fi +57792,Caramel (Sukkar banat) (2007),Comedy +57805,Poor Boy's Game (2007),Drama +57811,Operation Homecoming: Writing the Wartime Experience (2007),Documentary +57843,Rise of the Footsoldier (2007),Action|Crime|Drama +57845,Joe Strummer: The Future Is Unwritten (2007),Documentary +57848,Canvas (2006),Drama +57854,The Count of Monte Cristo (1934),Action|Adventure|Drama|Romance|Thriller +57865,Wedding Daze (2006),Comedy|Romance +57868,"Prisoner of Shark Island, The (1936)",Drama +57873,Dark Angel (I Come in Peace) (1990),Action|Horror|Sci-Fi|Thriller +57910,Teeth (2007),Comedy|Horror +57938,Crime Zone (1989),Action|Film-Noir|Sci-Fi +57940,Visiting Hours (1982),Horror +57942,"Big Bang Love, Juvenile A (46-okunen no koi) (2006)",Drama +57946,Noriko's Dinner Table (Noriko no shokutaku) (2005),Drama|Horror +57949,"Welcome Home, Roscoe Jenkins (2008)",Comedy +57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance +57960,"Great Lie, The (1941)",Drama +57964,Blue State (2007),Comedy +57970,U2 3D (2007),Documentary|IMAX +57972,Deep Water (2006),Documentary +57980,"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)",Comedy|Drama +57991,In Which We Serve (1942),Drama|War +57996,"Motel, The (2005)",Comedy|Drama +58003,Hunger (Sult) (1966),Drama +58007,"Shout, The (1978)",Drama|Horror +58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller +58029,It's a Free World... (2007),Drama +58033,Already Dead (2007),Action|Fantasy|Thriller +58047,"Definitely, Maybe (2008)",Comedy|Drama|Romance +58059,I Live in Fear (Ikimono no kiroku) (1955),Drama +58061,Four Sons (1928),Drama +58078,"Air I Breathe, The (2007)",Crime|Drama|Romance|Thriller +58081,Hangman's House (1928),Drama +58084,Street Thief (2006),Crime|Documentary +58094,"10th Judicial Court: Judicial Hearings, The (10e chambre - Instants d'audience) (2004)",Documentary +58103,Vantage Point (2008),Action|Drama|Thriller +58105,"Spiderwick Chronicles, The (2008)",Adventure|Children|Drama|Fantasy|IMAX +58107,Step Up 2 the Streets (2008),Drama|Musical|Romance +58111,Jodhaa Akbar (2008),Drama|Musical|Romance|War +58120,Born Reckless (1930),Comedy|Crime|Drama +58123,Il Mare (Siworae) (2000),Fantasy|Romance|Sci-Fi +58130,Up the River (1930),Comedy|Crime|Drama +58136,Great World of Sound (2007),Comedy +58146,Witless Protection (2008),Comedy +58154,"Other Boleyn Girl, The (2008)",Drama|Romance +58156,Semi-Pro (2008),Comedy +58162,Run Fatboy Run (2007),Comedy|Romance +58174,"Crying Out Love in the Center of the World (Sekai no chûshin de, ai o sakebu) (2004)",Drama|Romance +58180,Seas Beneath (1931),Action|Drama|War +58185,Please Vote for Me (2007),Documentary +58191,Taxi to the Dark Side (2007),Documentary +58207,Out of the Blue (Aramoana) (2006),Crime|Drama +58223,"Method, The (Método, El) (2005)",Drama +58228,Which Way Is Up? (1977),Comedy +58246,Grace Is Gone (2007),Drama +58250,"Marksman, The (2005)",Action|Adventure|Thriller|War +58269,Gran Paradiso (2000),Adventure|Drama|Romance +58274,Keeper of the Flame (1942),Drama|Mystery +58282,"Emperor Waltz, The (1948)",Comedy|Musical|Romance +58287,Descent (2007),Drama|Thriller +58291,College Road Trip (2008),Comedy +58293,"10,000 BC (2008)",Adventure|Romance|Thriller +58295,"Bank Job, The (2008)",Action|Crime|Thriller +58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller +58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy +58301,Funny Games U.S. (2007),Drama|Thriller +58303,"Counterfeiters, The (Die Fälscher) (2007)",Crime|Drama|War +58306,Mongol (2007),Drama|War +58309,War Dance (2007),Documentary +58315,"Love Guru, The (2008)",Comedy +58324,"Pirates Who Don't Do Anything: A VeggieTales Movie, The (2008)",Adventure|Animation|Children|Comedy +58332,Diary of the Dead (2007),Horror|Sci-Fi +58334,Hallam Foe (Mister Foe) (2007),Drama|Romance +58347,Penelope (2006),Comedy|Fantasy|Romance +58351,City of Men (Cidade dos Homens) (2007),Drama +58365,Chicago 10 (2007),Animation|Documentary +58367,"Romulus, My Father (2007)",Drama +58373,"Woman in White, The (1948)",Mystery|Thriller +58376,Zeitgeist: The Movie (2007),Documentary|War +58379,Terkel in Trouble (Terkel i knibe) (2004),Animation|Comedy|Drama|Musical +58381,Jellyfish (Meduzot) (2007),Drama +58404,Justice League: The New Frontier (2008) ,Action|Adventure|Animation|Fantasy|Sci-Fi +58409,"District, The (Nyócker!) (2004)",Animation|Comedy +58411,"Hottest State, The (2006)",Drama +58418,Then She Found Me (2007),Comedy|Drama|Romance +58422,"Island, The (a.k.a. Naked Island) (Hadaka no shima) (1960)",Drama +58425,Heima (2007),Documentary +58432,What Just Happened (2008),Comedy|Drama +58434,"Little Trip to Heaven, A (2005)",Drama|Thriller +58437,"Prince of Pennsylvania, The (1988)",Comedy|Drama +58439,Downhill Racer (1969),Drama +58452,Saving Sarah Cain (2007),Drama +58485,Return of the Living Dead 3 (1993),Horror|Romance|Sci-Fi +58490,Miss Pettigrew Lives for a Day (2008),Comedy|Romance +58492,Snow Angels (2007),Drama +58494,Married Life (2007),Crime|Drama|Romance +58509,Sun Valley Serenade (1941),Comedy|Musical|Romance +58520,Mala Noche (1985),Drama +58530,On the Outs (2004),Drama +58534,Stupid Boy (Garçon stupide) (2004),Drama +58554,"Class, The (Klass) (2007)",Drama +58559,"Dark Knight, The (2008)",Action|Crime|Drama|IMAX +58564,Doctor Bull (1933),Comedy|Drama +58576,Made in U.S.A. (1966),Crime|Mystery +58578,Restless Natives (1985),Adventure|Comedy|Drama +58595,Quiet City (2007),Drama +58598,Phar Lap (1983),Children|Drama +58610,51 Birch Street (2005),Documentary +58617,Black Dawn (2005),Action +58622,"Hammer, The (2007)",Comedy +58627,Never Back Down (2008),Action +58632,"Terror's Advocate (Avocat de la terreur, L') (2007)",Documentary +58641,9 Star Hotel (Malon 9 Kochavim) (2007),Documentary +58649,Napoléon (1927),Drama|War +58652,CJ7 (Cheung Gong 7 hou) (2008),Children|Comedy|Sci-Fi +58655,Drillbit Taylor (2008),Comedy +58661,Dead Awake (2001),Action|Thriller +58706,"Under the Same Moon (Misma luna, La) (2007)",Drama +58709,Tropical Malady (Sud pralad) (2004),Drama|Fantasy|Romance +58718,Slipstream (2007),Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +58722,Terror of Mechagodzilla (Mekagojira no gyakushu) (1975),Action|Sci-Fi +58740,"Smiling Lieutenant, The (1931)",Comedy|Musical|Romance +58743,Alatriste (2006),Action|Adventure|Romance|War +58760,Joysticks (1983),Comedy +58770,Spirit Trap (2005),Horror|Thriller +58774,Promised Land (Ziemia Obiecana) (1975),Drama +58783,Youth Without Youth (2007),Drama|Romance|Sci-Fi +58803,21 (2008),Crime|Drama|Romance|Thriller +58806,Smart People (2008),Comedy|Drama|Romance +58808,"Last Hangman, The (Pierrepoint) (2005)",Drama +58810,"Hawk Is Dying, The (2006)",Drama +58812,"Ball, The (Le bal) (1983)",Musical +58816,"Gymnast, The (2006)",Drama|Romance +58826,"Shepherd: Border Patrol, The (2008)",Action|Crime|Thriller +58839,Leatherheads (2008),Comedy|Drama|Romance +58842,Assembly (Ji jie hao) (2007) ,Action|Drama|War +58847,Why Not? (Eijanaika) (1981),Drama +58850,Pirates (1986),Adventure|Comedy +58870,Zebraman (2004),Comedy +58874,Marketa Lazarová (1967),Drama|Romance +58876,Stop-Loss (2008),Drama|War +58879,Shine a Light (2008),Documentary|Musical|IMAX +58881,Dark Matter (2007),Drama +58889,"Business of Being Born, The (2008)",Documentary +58895,Black Peter (Cerný Petr) (1964),Drama +58898,"Aerial, The (La antena) (2007)",Adventure|Fantasy|Film-Noir|Mystery|Sci-Fi +58904,Chan Is Missing (1982),Crime +58920,Close to Home (Karov La Bayit) (2005),Drama +58922,White Palms (Fehér tenyér) (2006),Drama +58933,Saawariya (2007),Drama|Musical|Romance +58937,Julia (2008),Drama|Thriller +58939,I Always Wanted to Be a Gangster (J'ai toujours rêvé d'être un gangster) (2007),Comedy|Crime|Drama +58941,Just Anybody (Le premier venu) (2008),Drama|Romance +58945,"Pope's Toilet, The (El bano del Papa) (1998)",Drama +58964,Inside (À l'intérieur) (2007),Horror|Thriller +58972,Nim's Island (2008),Adventure|Comedy|Fantasy +58975,"Ruins, The (2008)",Horror|Thriller +58992,Joy Division (2007),Documentary|Musical +58994,Send a Bullet (Manda Bala) (2007),Documentary +58998,Forgetting Sarah Marshall (2008),Comedy|Romance +59000,Sex and Death 101 (2007),Comedy|Drama +59014,Superhero Movie (2008),Action|Comedy|Sci-Fi +59016,Street Kings (2008),Crime|Drama|Thriller +59018,"Visitor, The (2007)",Drama|Romance +59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy +59026,99 francs (2007),Comedy +59031,Private Property (Nue propriété) (2006),Drama +59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX +59040,Gabriel (2007),Action|Horror +59044,Diminished Capacity (2008),Comedy +59053,Nathalie... (2003),Drama +59065,Chapter 27 (2007),Crime|Drama +59074,"Thief Who Came to Dinner, The (1973)",Comedy|Romance +59103,"Forbidden Kingdom, The (2008)",Action|Adventure|Comedy|Fantasy +59105,Where in the World Is Osama Bin Laden? (2008),Documentary +59107,"Life Before Her Eyes, The (2007)",Drama|Thriller +59112,"Puff, Puff, Pass (2006)",Comedy +59114,Pulp (1972),Comedy|Thriller +59116,Virgin Territory (2007),Adventure|Comedy|Romance +59118,Happy-Go-Lucky (2008),Comedy|Drama +59126,Religulous (2008),Comedy|Documentary +59129,Outpost (2008),Action|Horror +59131,Are You Scared? (2006),Horror +59136,Before Flying Back to Earth (Pries parskrendant i zeme) (2005),Documentary +59138,Bernard and Doris (2007),Comedy|Drama +59141,Son of Rambow (2007),Children|Comedy|Drama +59143,Super High Me (2007),Comedy|Documentary +59154,Black Friday (1940),Crime|Drama|Horror|Sci-Fi +59157,"Invisible Ray, The (1936)",Horror|Sci-Fi +59159,Murders in the Rue Morgue (1932),Crime|Horror|Mystery +59173,"Killer Elite, The (1975)",Action|Drama|Thriller +59178,Tarzan Escapes (1936),Action|Adventure +59180,Tarzan Finds a Son! (1939),Action|Adventure +59182,Tarzan's Secret Treasure (1941),Action|Adventure +59184,Tarzan's New York Adventure (1942),Action|Adventure +59188,Viva Zapata! (1952),Western +59216,Antares (2004),Drama +59220,Outsourced (2006),Comedy|Romance +59256,Deception (2008),Action|Drama|Thriller +59258,Baby Mama (2008),Comedy +59260,"Unknown Woman, The (La Sconosciuta) (2006)",Drama|Mystery|Thriller +59273,Delirious (2006),Comedy|Drama +59290,Klimt (2006),Drama +59295,Expelled: No Intelligence Allowed (2008),Documentary +59302,Viva Cuba (2005),Comedy|Drama +59306,Prom Night (2008),Horror|Mystery|Thriller +59313,"White Massai, The (Weisse Massai, Die) (2005)",Drama|Romance +59315,Iron Man (2008),Action|Adventure|Sci-Fi +59327,Possessed (Besat) (1999),Action|Crime|Drama|Horror|Thriller +59333,Made of Honor (2008),Comedy|Romance +59336,Redbelt (2008),Action|Drama +59339,Mister Lonely (2007),Comedy|Drama +59362,Anamorph (2007),Crime|Thriller +59366,"Bread, My Sweet, The (a.k.a. Wedding for Bella, A) (2001)",Drama|Romance +59369,Taken (2008),Action|Crime|Drama|Thriller +59376,Hero Wanted (2008),Action|Crime|Drama|Thriller +59382,Flight of the Red Balloon (2007),Children|Drama +59387,"Fall, The (2006)",Adventure|Drama|Fantasy +59392,Stargate: The Ark of Truth (2008),Action|Fantasy|Sci-Fi +59397,Walk All Over Me (2007),Comedy|Crime|Drama +59399,Blind Dating (2006),Comedy|Romance +59404,Meet Bill (2007),Comedy|Drama +59418,"American Crime, An (2007)",Crime +59421,What Happens in Vegas... (2008),Comedy|Romance +59426,White Night (Hvid nat) (2007),Drama +59429,American Pie Presents Beta House (American Pie 6: Beta House) (2007),Comedy +59435,Numb (2007),Comedy|Drama|Romance +59440,Bella (2006),Drama|Romance +59447,Fiorile (1993),Drama +59463,"Man Between, The (1953)",Drama|Film-Noir|Romance|Thriller +59465,"Stars Look Down, The (1940)",Drama +59478,"Unknown Soldier, The (Unbekannte Soldat, Der) (2006)",Documentary +59485,a/k/a Tommy Chong (2005),Documentary +59501,"Chronicles of Narnia: Prince Caspian, The (2008)",Adventure|Children|Fantasy +59519,Reprise (2006),Drama +59527,"Window, The (1949)",Drama|Film-Noir|Thriller +59547,"Ron Clark Story, The (2006)",Drama +59549,Shelter (2007),Drama|Romance +59561,American Crude (2008),Comedy|Drama +59590,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical +59594,"War, Inc. (2008)",Comedy|Crime|Thriller +59602,"Year of the Wolf, The (Suden vuosi) (2007)",Drama|Romance +59604,"Girl Next Door, The (2007)",Crime|Drama|Horror|Thriller +59607,King Corn (2007),Documentary +59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi +59621,How to Rob a Bank (2007),Comedy|Crime|Mystery|Thriller +59625,"Hey, Hey, It's Esther Blueburger (2008)",Comedy|Drama +59641,"Quiet American, The (1958)",Drama|Romance|Thriller|War +59649,Blonde and Blonder (2008),Comedy|Crime +59651,Wesley Willis: The Daddy of Rock 'n' Roll (2003),Documentary +59655,Patti Smith: Dream of Life (2008),Documentary +59665,Day of the Outlaw (1959),Western +59667,Nina's Heavenly Delights (2006),Comedy +59669,Following Sean (2005),Documentary +59680,One Hour with You (1932),Comedy|Musical|Romance +59684,Lake of Fire (2006),Documentary +59705,"Witnesses, The (Les témoins) (2007)",Drama +59709,"Oxford Murders, The (2007)",Crime|Mystery|Romance|Thriller +59715,Shutter (2008),Horror|Mystery|Thriller +59721,"Grand, The (2007)",Comedy +59725,Sex and the City (2008),Comedy|Romance +59727,"Strangers, The (2008)",Horror|Thriller +59729,Savage Grace (2007),Crime|Drama +59731,"Bigger, Stronger, Faster* (2008)",Documentary +59738,All the Boys Love Mandy Lane (2006),Horror|Mystery|Thriller +59753,Memories of Matsuko (Kiraware Matsuko no isshô) (2006),Comedy|Drama|Musical|Mystery +59775,Allan Quatermain and the Temple of Skulls (2008),Action|Adventure +59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX +59795,What Would Jesus Buy? (2007),Comedy|Documentary +59799,Extreme Private Eros: Love Song 1974 (1974),Documentary +59801,"Emperor's Naked Army Marches On, The (Yuki Yukite shingun) (1987)",Documentary +59805,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western +59810,Recount (2008),Drama +59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror +59816,"Art of Crying, The (Kunsten at græde i kor) (2006)",Drama +59832,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir +59834,100 Rifles (1969),Adventure|War|Western +59836,Blood Alley (1955),Action|Adventure +59838,Chato's Land (1972),Western +59840,Cold Sweat (De la part des copains) (1970),Action|Drama|Thriller +59842,"FBI Story, The (1959)",Crime|Drama|Thriller +59844,"Honor Among Thieves (Adieu l'ami) (Farewell, Friend) (1968)",Action|Adventure|Crime|Drama|Mystery|Thriller +59846,"Iron Mask, The (1929)",Adventure|Drama|Romance +59850,St. Ives (1976),Crime|Mystery|Thriller +59852,Villa Rides! (1968),War|Western +59854,"Wings of Eagles, The (1957)",Drama|War +59858,Steamboat Round the Bend (1935),Comedy|Drama +59861,"World Moves On, The (1934)",Drama|Romance|War +59865,Pilgrimage (1933),Drama +59867,Lonelyhearts (1958),Drama|Film-Noir +59869,"Andromeda Strain, The (2008)",Sci-Fi +59888,Boat People (Tau ban no hoi) (1982),Drama +59893,"Wrong Move, The (Falsche Bewegung) (1975)",Drama +59895,Dust in the Wind (1987),Drama|Romance +59900,You Don't Mess with the Zohan (2008),Comedy +59905,"Prefab People, The (Panelkapcsolat) (1982)",Drama +59908,"Promotion, The (2008)",Comedy +59910,And When Did You Last See Your Father? (2007),Drama +59912,My Brother Is an Only Child (Mio fratello è figlio unico) (2006),Comedy|Crime|Drama +59915,Stuck (2007),Horror|Thriller +59922,July Rhapsody (Laam yan sei sap) (2002),Drama +59935,Flesh Gordon (1974),Adventure|Comedy|Sci-Fi +59938,Telefon (1977),Action|Crime|Thriller +59942,"Lost World, The (1960)",Adventure +59945,"Mark of Zorro, The (1920)",Adventure|Romance|Western +59947,"Protector, The (1985)",Action|Comedy|Drama|Thriller +59954,"Three Musketeers, The (1921)",Action|Adventure|Romance +59960,Warlock (1959),Romance|Western +59974,"Fidanzati, I (Fiances, The) (1963)",Drama +59976,"Posto, Il (1961)",Drama +59985,Chaos Theory (2007),Comedy|Drama|Romance +59988,"Boys and Girls Guide to Getting Down, The (2006)",Comedy +59995,Boy A (2007),Crime|Drama +60007,Doctor Who (1996),Adventure|Sci-Fi +60014,"Complete History of My Sexual Failures, A (2008)",Comedy|Documentary +60020,"Warlords, The (Tau ming chong) (2007)",Action|Drama|War +60030,Spiral (2007),Drama|Horror|Thriller +60032,Hounddog (2007),Drama +60037,"Happening, The (2008)",Drama|Sci-Fi|Thriller +60040,"Incredible Hulk, The (2008)",Action|Sci-Fi +60044,Baghead (2008),Comedy|Drama|Horror +60046,"Children of Huang Shi, The (2008)",Drama|War +60059,Quill (2004),Drama +60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi +60072,Wanted (2008),Action|Thriller +60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy +60086,Boy Culture (2006),Drama +60096,Ten Minutes Older: The Trumpet (2002),Drama +60103,Angel Face (1952),Crime|Drama|Film-Noir +60106,Huckleberry Finn (1974),Adventure|Musical +60110,Tom Sawyer (1973),Adventure|Children|Musical +60124,Turn the River (2007),Drama +60126,Get Smart (2008),Action|Comedy +60128,Young People Fucking (a.k.a. YPF) (2007),Comedy +60133,Brick Lane (2007),Drama +60135,Surfwise (2007),Documentary +60137,"Rape of Europa, The (2006)",Documentary +60141,St. Trinian's (2007),Children|Comedy +60145,"Penalty, The (1920)",Crime|Drama|Horror +60147,Roman de gare (2007),Drama +60150,Desire (1936),Comedy|Crime|Romance +60161,Futurama: The Beast with a Billion Backs (2008),Action|Animation|Comedy|Romance|Sci-Fi +60179,Equinox (1970),Adventure|Horror|Mystery +60183,At the Death House Door (2008),Documentary +60189,Archangel (1990),Comedy +60193,Battlefield Baseball (Jigoku kôshien) (2003),Action|Horror|Musical +60198,"Sandglass, The (Sanatorium pod klepsydra) (1973)",Mystery +60201,"Color of Pomegranates, The (Sayat Nova) (1968)",Drama +60213,David Cross: Let America Laugh (2003),Comedy|Documentary +60223,West of Zanzibar (1928),Drama|Mystery +60225,Tell It to the Marines (1926),Comedy|Drama|Romance|War +60227,"Unholy Three, The (1925)",Crime|Drama|Romance +60229,"Unholy Three, The (1930)",Crime|Drama +60231,London After Midnight (1927),Drama|Horror +60237,Dog Day (Canicule) (1984),Action|Crime|Drama|Thriller +60240,"Klansman, The (1974)",Action|Drama|Thriller +60243,Pocket Money (1972),Comedy|Western +60256,Goddess (Devi) (1960),Drama +60259,Bambi 2 (2006),Animation|Children|Drama +60284,Gunnin' for That #1 Spot (2008),Documentary +60286,Finding Amanda (2008),Comedy|Drama +60289,Kit Kittredge: An American Girl (2008),Children|Comedy|Drama|Mystery +60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary +60293,"Wackness, The (2008)",Comedy|Drama|Romance +60295,Up the Yangtze (2007),Documentary +60299,Get Well Soon (2001),Comedy|Drama|Romance +60303,Strange Circus (Kimyô na sâkasu) (2005),Horror|Mystery|Thriller +60309,Along Came Jones (1945),Comedy|Romance|Western +60311,"Black Swan, The (1942)",Adventure +60314,Cheyenne Autumn (1964),Western +60316,Hour of the Gun (1967),Western +60322,Sleepwalking (2008),Drama +60333,Encounters at the End of the World (2008),Documentary +60336,Bad Blood (Mauvais sang) (1986),Crime|Drama|Romance +60338,Dante 01 (2008),Sci-Fi|Thriller +60341,Standard Operating Procedure (2008),Crime|Documentary|War +60343,Wee Willie Winkie (1937),Adventure +60353,A Page of Madness (1926),Drama|Horror +60356,Two Women (2000),Drama +60363,Zombie Strippers! (2008),Comedy|Horror +60365,Frosty the Snowman (1969),Animation|Children|Comedy|Fantasy|Musical +60376,White Light/Black Rain: The Destruction of Hiroshima and Nagasaki (2007),Documentary|Horror|War +60382,Roman Polanski: Wanted and Desired (2008),Documentary +60384,Z Channel: A Magnificent Obsession (2004),Documentary +60389,Battle for Haditha (2007),War +60391,Alexandra (Aleksandra) (2007),Drama|War +60393,Transylvania (2006),Drama +60397,Mamma Mia! (2008),Comedy|Musical|Romance +60405,Ganes (2007),Drama|Musical +60408,Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008),Comedy +60411,"Pornographers, The (Erogotoshi-tachi yori: Jinruigaku nyûmon) (1966)",Comedy|Drama +60418,Kabluey (2007),Comedy|Drama +60421,"Stone Angel, The (2007)",Drama +60436,Honeydripper (2007),Drama +60450,Summer of '04 (Sommer '04) (2006),Drama +60461,"Home of Dark Butterflies, The (Tummien perhosten koti) (2008)",Drama +60463,Dark Floors (2008),Fantasy|Horror +60469,Silentium (2004),Crime|Thriller +60471,Rogue (2007),Action|Adventure|Horror|Thriller +60475,"Violin, El (2005)",Drama +60479,Sublime (2007),Horror|Thriller +60482,Towelhead (a.k.a. Nothing is Private) (2007),Drama +60484,No Regrets for Our Youth (Waga seishun ni kuinashi) (1946),Drama +60487,"It's the Great Pumpkin, Charlie Brown (1966)",Animation|Children|Comedy +60490,Lost Islands (2008),Drama +60494,Borderline (1950),Crime|Drama|Romance +60503,Katyn (2007),Drama|War +60508,Pan Tadeusz: The Last Foray in Lithuania (Pan Tadeusz) (1999),Drama|Romance|War +60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi +60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi +60522,"Machine Girl, The (Kataude mashin gâru) (2008)",Action|Comedy|Fantasy|Horror|Thriller +60524,August (2008),Drama +60526,Death Defying Acts (2007),Drama|Romance|Thriller +60530,Water Lilies (Naissance des pieuvres) (2007),Drama +60538,Shrooms (2007),Horror|Thriller +60544,Manslaughter (Drabet) (2005),Drama +60546,"Bench, The (Bænken) (2000)",Drama +60551,Breath (Soom) (2007),Drama +60566,Just Another Love Story (Kærlighed på film) (2007),Crime|Drama|Thriller +60568,"Substitute, The (Vikaren) (2007)",Comedy|Sci-Fi|Thriller +60579,Next Door (Naboer) (2005),Horror|Mystery|Thriller +60585,Chinese Roulette (Chinesisches Roulette) (1976),Drama +60590,"Heartbeat Detector (Question humaine, La) (2007)",Drama|Thriller +60599,Flakes (2007),Comedy +60609,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery +60616,"Majority of One, A (1961)",Comedy|Drama|Romance +60618,Moving McAllister (2007),Comedy +60625,"Tall T, The (1957)",Western +60641,Music Within (2007),Comedy|Drama|Romance|War +60647,Transsiberian (2008),Crime|Drama|Thriller +60649,Space Chimps (2008),Adventure|Animation|Comedy +60654,"Last Mistress, The (vieille maîtresse, Une) (2007)",Drama +60666,Jimmy Carter Man from Plains (2007),Documentary +60674,Stargate: Continuum (2008),Sci-Fi +60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX +60686,Bravo Two Zero (1999) ,Adventure|Thriller|War +60688,Conspiracy (2008),Action|Drama|Mystery|Thriller|War +60702,WarGames: The Dead Code (2008),Drama|Sci-Fi|Thriller +60707,Vince Vaughn's Wild West Comedy Show: 30 Days & 30 Nights - Hollywood to the Heartland (2006),Comedy|Documentary +60728,Steal a Pencil for Me (2007),Documentary|Romance +60735,Shotgun Stories (2007),Drama|Thriller +60737,Watching the Detectives (2007),Comedy|Romance +60743,Mr. Untouchable (2007),Crime|Documentary +60745,Blast of Silence (1961),Crime|Drama|Thriller +60753,Felon (2008),Crime|Drama +60756,Step Brothers (2008),Comedy +60758,Brideshead Revisited (2008),Drama +60760,"X-Files: I Want to Believe, The (2008)",Drama|Mystery|Sci-Fi|Thriller +60763,American Teen (2008),Documentary +60766,Man on Wire (2008),Documentary +60768,CSNY Déjà Vu (2008),Documentary +60803,"Little Drummer Boy, The (1968)",Animation|Children|Musical +60806,"Little Mermaid 2: Return to the Sea, The (2000)",Animation|Children|Fantasy|Musical +60816,"Colour of Magic, The (Terry Pratchett's The Colour of Magic) (2008)",Adventure|Comedy|Fantasy +60818,Hogfather (Terry Pratchett's Hogfather) (2006),Adventure|Fantasy|Thriller +60825,Mulberry Street (2006),Action|Horror|Thriller +60827,Lost in Beijing (Ping guo) (2007),Drama +60832,Pathology (2008),Crime|Horror|Thriller +60838,Love & Pop (1998),Drama +60857,"Tracey Fragments, The (2007)",Drama +60880,"Family Game, The (Kazoku gêmu) (1983)",Comedy|Drama +60885,"Zone, The (La Zona) (2007)",Drama|Thriller +60887,Blindsight (2006),Adventure|Documentary +60894,"Edge of Love, The (2008)",Drama|Romance|War +60896,"Godless Girl, The (1929)",Drama +60904,Heart of a Dog (Sobachye serdtse) (1988),Comedy|Drama|Sci-Fi +60914,Bonneville (2006),Comedy|Drama +60930,Frozen City (Valkoinen kaupunki) (2006) ,Drama +60937,"Mummy: Tomb of the Dragon Emperor, The (2008)",Action|Adventure|Fantasy|Thriller +60939,Swing Vote (2008),Comedy|Drama +60941,"Midnight Meat Train, The (2008)",Horror|Mystery|Thriller +60943,Frozen River (2008),Drama +60946,Sixty Six (2006),Comedy|Drama +60948,Bottle Shock (2008),Drama +60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance +60979,Batman: Gotham Knight (2008),Action|Animation|Crime +60981,Fist of the North Star (1986),Action|Animation +60983,Eve and the Fire Horse (2005),Drama +60990,"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)",Drama +60992,"Moment to Remember, A (Nae meorisokui jiwoogae) (2004)",Drama|Romance +61004,Year of the Gun (1991),Action|Romance|Thriller +61009,Inside Paris (Dans Paris) (2006),Drama +61011,"Walker, The (2007)",Drama|Mystery +61013,Absolute Giganten (1999),Action|Comedy|Drama|Romance +61018,Peppermint Candy (Bakha satang) (1999),Drama +61024,Pineapple Express (2008),Action|Comedy|Crime +61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War +61031,"World's Greatest Lover, The (1977)",Comedy +61035,W Delta Z (a.k.a. The Killing Gene) (2007),Crime|Horror|Thriller +61037,Silent Light (Stellet licht) (2007),Drama +61041,"Take, The (2007)",Crime|Drama +61048,Expired (2007),Comedy|Drama|Romance +61071,"Sisterhood of the Traveling Pants 2, The (2008)",Adventure|Comedy|Drama|Romance +61073,Hell Ride (2008),Action|Drama|Thriller +61075,Elegy (2008),Drama|Romance +61083,"Good Humor Man, The (2005)",Drama|Romance +61091,Bomb It (2007),Documentary +61100,Still Life (Sanxia haoren) (2006),Drama|Romance +61108,Bathory (2008),Drama|Fantasy +61110,Quid Pro Quo (2008),Drama|Thriller +61116,Black Caesar (1973),Crime|Drama +61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance +61132,Tropic Thunder (2008),Action|Adventure|Comedy|War +61136,"Objective, The (2008)",Horror|Sci-Fi|Thriller|War +61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi +61167,Henry Poole is Here (2008),Drama|Mystery +61206,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama +61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi +61215,13 Beloved (13 game sayawng) (2006),Horror|Mystery|Thriller +61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War +61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance +61246,Hamlet 2 (2008),Comedy +61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller +61250,"House Bunny, The (2008)",Comedy +61253,"Longshots, The (2008)",Drama +61255,"Rocker, The (2008)",Comedy +61257,I.O.U.S.A. (a.k.a. IOUSA) (2008),Documentary +61262,Mirrors (2008),Horror|Mystery|Thriller +61264,"Girl Cut in Two, The (Fille coupée en deux, La) (2007)",Drama|Thriller +61267,Fly Me to the Moon (2008),Adventure|Animation|Children|IMAX +61269,Trumbo (2007),Documentary +61279,Variety Lights (1950),Drama +61285,Path to War (2002),Drama +61289,Sukiyaki Western Django (2008),Action|Western +61301,American Zombie (2007),Comedy|Horror +61312,Noise (2007),Comedy|Drama +61314,Return to House on Haunted Hill (2007),Horror|Thriller +61317,Feed (2005),Action|Crime|Mystery|Thriller +61319,Somers Town (2008),Drama +61323,Burn After Reading (2008),Comedy|Crime|Drama +61348,Disaster Movie (2008),Comedy +61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller +61352,Traitor (2008),Crime|Drama|Thriller +61354,College (2008),Comedy +61357,Trouble the Water (2008),Documentary +61361,"Women, The (2008)",Comedy|Drama +61373,"Woman in Black, The (1989)",Horror|Mystery +61394,"Onion Movie, The (2008)",Comedy +61396,Sergeant Rutledge (1960),Crime|Western +61398,"Mother of Tears: The Third Mother (Terza madre, La) (2007)",Fantasy|Horror|Thriller +61401,"Spirit, The (2008)",Action|Comedy|Fantasy|Thriller +61406,John Adams (2008),Drama +61414,Tobacco Road (1941),Comedy|Drama +61434,Oh! What a Lovely War (1969),Musical|War +61449,"Burning Plain, The (2008)",Drama|Romance +61451,"Seventh Cross, The (1944)",Drama|War +61465,Bangkok Dangerous (2008),Action|Crime|Thriller +61467,Everybody Wants to Be Italian (2007),Comedy|Romance +61470,"Boys in Company C, The (1978)",Drama|War +61473,"Secret, A (Un secret) (2007)",Drama|War +61475,August Evening (2007),Drama +61493,Flash Point (a.k.a. Flashpoint) (Dou fo sin) (2007),Action +61553,"Fifth Commandment, The (2008)",Action|Comedy|Crime|Drama|Thriller +61560,That's Black Entertainment (1990),Documentary +61567,Kummeli Alivuokralainen (2008),Comedy +61569,"Jammed, The (2007)",Drama|Thriller +61586,"Half Life of Timofey Berezin, The (PU-239) (2006)",Drama +61628,Sunflower (Xiang ri kui) (2005),Drama +61634,Son of Lassie (1945),Children|Drama +61638,Flu Bird (2008),Horror +61646,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance +61678,"Foot Fist Way, The (2006)",Comedy +61692,Altered (2006),Horror|Sci-Fi|Thriller +61695,Ladrones (2007),Drama +61697,Righteous Kill (2008),Crime|Mystery|Thriller +61705,Lakeview Terrace (2008),Drama|Thriller +61707,Ladrón que roba a ladrón (2007),Action|Adventure|Comedy|Crime +61724,Shadows in Paradise (Varjoja paratiisissa) (1986),Comedy|Romance +61729,Ghost Town (2008),Comedy|Fantasy|Romance +61742,Maradona by Kusturica (2008),Documentary +61768,Accused (Anklaget) (2005),Drama +61816,Import/Export (2007),Drama +61818,"Crow, The: Wicked Prayer (2005)",Action|Adventure|Fantasy|Thriller +61862,In Bed (En la cama) (2005),Drama +61868,Jam (2006),Drama +61913,Africa addio (1966),Documentary +61931,Private Parts (1972),Horror|Thriller +61934,Freebie and the Bean (1974),Action|Comedy +61937,Sawdust and Tinsel (Gycklarnas afton) (1953),Drama +61941,Humboldt County (2008),Comedy|Drama +61948,100 Feet (2008),Horror|Thriller +61950,Boot Camp (2007),Thriller +61961,On the Beach (2000),Drama|Sci-Fi +61967,"Autumn Afternoon, An (Sanma no aji) (1962)",Drama +61970,Moonbase (1998),Sci-Fi +61986,Appaloosa (2008),Western +61991,Miracle at St. Anna (2008),Drama|Mystery|War +61994,"So Normal (Normais, Os) (2003)",Comedy +62000,"Steamroller and the Violin, The (Katok i skripka) (1961)",Drama +62008,Dead Fury (2008),Action|Animation|Comedy|Horror +62010,Tears of April (Käsky) (2008),Drama|Romance|War +62014,Zuzu Angel (2006),Drama +62049,1984 (1956),Drama|Sci-Fi +62054,"Friend Among Strangers, Stranger Among Friends (Svoy sredi chuzhikh, chuzhoy sredi svoikh) (1974)",Action|War|Western +62063,Dead Man's Letters (Pisma myortvogo cheloveka) (1986),Drama|Film-Noir +62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX +62113,How to Lose Friends & Alienate People (2008),Comedy +62115,Six Shooter (2004),Comedy|Drama +62137,Nights in Rodanthe (2008),Drama|Romance +62153,Look Back in Anger (1958),Drama +62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance +62157,"Secrets, The (Sodot, Ha-) (2007)",Drama|Romance +62198,Marjoe (1972),Documentary +62203,Martyrs (2008),Horror +62206,Supermarket Woman (Sûpâ no onna) (1996),Comedy +62208,"Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)",Drama +62213,"Sexo, Amor e Traição (2004)",Comedy +62235,Red (2008),Drama|Thriller +62237,Part of the Weekend Never Dies (2008),Documentary +62245,"Music Room, The (Jalsaghar) (1958)",Drama +62250,Gomorrah (Gomorra) (2008),Crime|Drama +62254,"Funeral, The (Ososhiki) (1984)",Comedy +62265,"Accidental Husband, The (2009)",Comedy|Romance +62277,KM 31: Kilometro 31 (2006),Horror +62293,"Duchess, The (2008)",Drama|Romance +62299,Alone in the Dark II (2008),Action|Horror +62304,"Tulse Luper Suitcases, Part 1: The Moab Story, The (2003)",Adventure|Drama|Fantasy|Film-Noir +62331,Dead Leaves (2004),Action|Adventure|Animation|Comedy|Sci-Fi +62334,"Wrong Man, The (1993)",Romance|Thriller +62336,FLCL (2000),Animation|Comedy|Fantasy|Sci-Fi +62344,Rachel Getting Married (2008),Drama|Romance +62374,Body of Lies (2008),Action|Drama|Thriller +62376,City of Ember (2008),Adventure|Children|Sci-Fi +62378,Magicians (2007),Comedy +62383,"20,000 Leagues Under the Sea (1916)",Action|Adventure|Sci-Fi +62385,Ace High (1968),Comedy|Western +62390,Autism: The Musical (2007),Documentary +62394,Max Payne (2008),Action|Crime|Drama|Thriller +62420,"Pool, The (2007)",Comedy|Drama +62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance +62437,W. (2008),Drama +62439,My Best Friend's Girl (2008),Comedy|Romance +62467,Family Life (1971),Drama +62474,Adios Sabata (1970),Action|War|Western +62511,"Synecdoche, New York (2008)",Comedy|Drama +62514,Come to the Stable (1949),Drama +62526,"Drowning Pool, The (1975)",Mystery|Thriller +62553,"Secret Life of Bees, The (2008)",Drama +62577,Flash of Genius (2008),Drama +62586,"American Carol, An (2008)",Comedy|Fantasy +62594,"Banishment, The (Izgnanie) (2007)",Drama +62644,"Wave, The (Welle, Die) (2008)",Drama +62660,"Deux mondes, Les (2007)",Comedy|Fantasy +62662,Tokyo-Ga (1985),Documentary +62669,Black River (Kuroi kawa) (1957),Drama +62671,Fallout (1998),Action|Sci-Fi +62718,"Angus, Thongs and Perfect Snogging (2008)",Comedy|Romance +62721,Bad Eggs (2003),Comedy|Thriller +62726,Tyler Perry's The Family That Preys (2008),Drama +62729,Niko & the Way to the Stars (a.k.a. The Flight Before Christmas) (Niko - Lentäjän poika) (2008),Adventure|Animation|Children|Drama|Fantasy +62733,Quarantine (2008),Drama|Horror|Mystery|Thriller +62761,Taifu Club (Taifû kurabu) (1985),Drama|Romance +62764,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War +62781,My Sons (Musuko) (1991),Comedy|Romance +62788,Lost Boys: The Tribe (2008),Comedy|Horror|Thriller +62792,Pride and Glory (2008),Crime|Drama +62796,Fifty Pills (2006),Comedy +62799,"Express, The (2008)",Drama +62801,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama +62803,Lone Wolf and Cub: Baby Cart in Peril (Kozure Ôkami: Oya no kokoro ko no kokoro) (1972),Action +62834,Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002),Sci-Fi +62836,Babylon 5: The Lost Tales - Voices in the Dark (2007),Sci-Fi +62847,"Love of Siam, The (Rak haeng Siam) (2007)",Drama|Mystery|Romance +62849,RocknRolla (2008),Action|Crime +62851,Zen Noir (2004),Comedy|Drama|Mystery +62912,High School Musical 3: Senior Year (2008),Musical +62916,"Wicked Lady, The (1945)",Adventure|Drama +62920,I Can Get It for You Wholesale (1951),Drama|Romance +62925,"Adventures of Huckleberry Finn, The (1939)",Adventure|Drama +62953,Resistance (2003),Drama|Romance|War +62956,Futurama: Bender's Game (2008),Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi +62970,Tin Man (2007),Adventure|Fantasy|Sci-Fi +62972,Into the West (2005),Adventure|Drama|Western +62974,"Adventures of Tom Sawyer, The (1938)",Adventure +62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX +63001,Admiral (2008),Drama|War +63007,"Affairs of Anatol, The (1921)",Comedy|Drama +63033,Blindness (2008),Drama|Mystery|Romance|Thriller +63062,Changeling (2008),Crime|Drama|Mystery +63069,Guinea Pig: Flowers of Flesh and Blood (Za ginipiggu 2: Chiniku no hana) (1985),Horror +63072,"Road, The (2009)",Adventure|Drama|Thriller +63082,Slumdog Millionaire (2008),Crime|Drama|Romance +63113,Quantum of Solace (2008),Action|Adventure|Thriller +63119,Filth and Wisdom (2008),Comedy|Drama|Musical|Romance +63121,"Tale of Two Cities, A (1958)",Drama|Romance +63131,Role Models (2008),Comedy +63134,"Great K & A Train Robbery, The (1926)",Action|Western +63141,Rockin' in the Rockies (1945),Comedy|Musical|Western +63179,Tokyo! (2008),Drama +63181,Tokyo Gore Police (Tôkyô zankoku keisatsu) (2008),Action|Horror +63187,Kozara (1962),Drama|War +63189,Sauna (2008),Horror|Mystery +63194,Caótica Ana (2007),Comedy|Drama|Mystery|Romance +63222,JCVD (2008),Action|Drama|Thriller +63226,Repast (Meshi) (1951),Drama +63229,Feiern (2006),Documentary +63237,Happily Ever After (1993),Animation|Children|Comedy|Musical +63239,Cinderella (1997),Children|Fantasy|Musical|Romance +63271,Gold Raiders (1951),Comedy|Western +63273,Captain Mike Across America (Slacker Uprising) (2007),Documentary +63276,Crows Zero (Kurôzu zero) (2007),Action +63278,"Homem Que Desafiou o Diabo, O (2007)",Comedy +63280,"Winning of Barbara Worth, The (1926)",Drama|Romance|Western +63283,"Whole Town's Talking, The (Passport to Fame) (1935)",Comedy|Crime +63310,"War Lord, The (1965)",Drama|Romance|War +63312,Krabat (2008),Drama|Fantasy +63327,Säg att du älskar mig (2006),Drama +63329,Christmas Story (Joulutarina) (2007),Children|Drama|Fantasy +63332,"Guard Post, The (G.P. 506) (2008)",Horror +63339,Every Stewardess Goes to Heaven (Todas las azafatas van al cielo) (2002),Drama|Romance +63391,Goyokin (1969),Action|Drama +63393,Camp Rock (2008),Comedy|Musical|Romance +63433,Farscape: The Peacekeeper Wars (2004),Action|Adventure|Sci-Fi +63436,Saw V (2008),Crime|Horror|Thriller +63446,"Christmas Tale, A (Un conte de Noël) (2008)",Comedy|Drama +63458,Critters 4 (1991),Comedy|Horror|Sci-Fi +63468,Restaurant (1998),Drama +63479,Sex Drive (2008),Comedy +63481,Soul Men (2008),Comedy|Musical +63483,While She Was Out (2008),Thriller +63515,The Island (2006),Drama|Mystery +63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy +63544,Half Moon (a.k.a. Niwemang) (2006),Drama|War +63590,Purple Violets (2007),Comedy|Drama|Romance +63617,Christmas on Mars (2008),Sci-Fi +63619,"Blue Hour, The (2007)",Drama +63629,Fanny (1961),Drama|Romance +63645,"Free Will, The (Freie Wille, Der) (2006)",Crime|Drama +63647,Hanzo the Razor: Sword of Justice (Goyôkiba) (1972),Action +63662,Where a Good Man Goes (Joi gin a long) (1999),Action|Drama|Thriller +63676,"Face of Another, The (Tanin no kao) (1966)",Drama|Sci-Fi +63688,"Gaucho, The (1927)",Adventure|Romance +63692,Don Q Son of Zorro (1925),Adventure|Romance +63698,Three Monkeys (Üç maymun) (2008),Drama +63758,Casanova '70 (1965),Comedy|Drama +63760,Bellissima (1951),Drama +63768,Tattooed Life (Irezumi ichidai) (1965),Crime|Drama +63772,Bullfighter and the Lady (1951),Action|Drama|Romance +63781,"Living Sea, The (1995)",Documentary|IMAX +63788,"Dirty Dozen: Next Mission, The (1985)",Action|War +63791,Dirty Dozen: The Deadly Mission (1987),Action|Drama|War +63793,Wagon Master (1950),Western +63806,Ring of Darkness (2004),Horror|Thriller +63808,"Class, The (Entre les murs) (2008)",Drama +63810,When Willie Comes Marching Home (1950),Comedy|War +63826,Splinter (2008),Action|Horror|Thriller +63828,Confessions of a Superhero (2007),Documentary +63836,"Manson Family, The (2003)",Crime|Drama|Horror +63840,Kanak Attack (2000),Drama +63853,Australia (2008),Adventure|Drama|War|Western +63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy +63862,Revenge of the Zombies (1943),Horror +63876,Milk (2008),Drama +63989,"Devil Doll, The (1936)",Horror|Sci-Fi +63992,Twilight (2008),Drama|Fantasy|Romance|Thriller +64010,"Children, The (2008)",Horror +64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller +64032,Four Christmases (2008),Comedy +64034,"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)",Drama|War +64037,Surveillance (2008),Crime|Mystery|Thriller +64099,Stuff and Dough (Marfa si banii) (2001),Drama +64114,Fireproof (2008),Drama|Romance +64116,Igor (2008),Animation|Comedy +64153,"Devil's Chair, The (2006)",Horror +64167,Dinotopia (2002),Adventure|Fantasy +64197,Hunger (2008),Drama +64229,Cadillac Records (2008),Drama|Musical +64231,Punisher: War Zone (2008),Action|Crime|Drama|Thriller +64234,"Guyver, The (1991)",Action|Comedy|Sci-Fi +64236,Flashbacks of a Fool (2008),Drama +64241,"Lonely Wife, The (Charulata) (1964)",Drama|Romance +64243,"Lady with the Dog, The (Dama s sobachkoy) (1960)",Drama|Romance +64245,"Bell Boy, The (1918)",Comedy +64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy +64273,"Lovers, The (Les Amants) (1958)",Drama +64275,"Blue Light, The (Blaue Licht, Das) (1932)",Drama|Fantasy|Mystery +64278,"Pervert's Guide to Cinema, The (2006)",Documentary +64280,Hospital (1970),Documentary +64283,Women of the Night (Yoru no onnatachi) (1948),Drama +64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy +64288,Ace of Hearts (2008),Children|Drama +64321,"Friend of Mine, A (Ein Freund von mir) (2006)",Comedy|Drama +64325,"Long Night, The (1947)",Crime|Drama|Film-Noir|Romance|Thriller +64327,Fools' Parade (1971),Comedy|Drama|Thriller +64338,Gypsy (1993),Comedy|Drama|Musical +64365,Malaya (1949),Adventure|Drama +64368,Ninja III: The Domination (1984),Action +64385,Body of War (2007),Documentary|War +64408,"Sun Shines Bright, The (1953)",Comedy|Drama +64410,Four Men and a Prayer (1938),Adventure|Mystery +64418,"Man Named Pearl, A (2006)",Documentary +64424,Dallas: War of the Ewings (1998),Drama +64427,Much Ado About Something (2001),Documentary +64497,"Day the Earth Stood Still, The (2008)",Drama|Sci-Fi|Thriller|IMAX +64499,Che: Part One (2008),Drama|War +64501,Che: Part Two (2008),Drama|War +64508,Starship Troopers 3: Marauder (2008),Action|Sci-Fi|War +64511,Dean Spanley (2008),Comedy|Drama +64517,I Am the Law (1938),Crime|Drama +64519,Boomerang (1947),Crime|Drama|Film-Noir +64522,Patterns (1956),Drama +64524,Nothing Like the Holidays (2008),Comedy|Drama|Romance +64548,"Climax, The (1944)",Horror|Musical +64550,"Strange Door, The (1951)",Horror +64552,Pandora's Box (Pandora'nin kutusu) (2008),Drama +64575,Doubt (2008),Drama|Mystery +64577,Cyborg Girl (Boku no kanojo wa saibôgu) (2008),Action|Comedy|Romance|Sci-Fi +64611,"Forgotten One, The (1990)",Thriller +64614,Gran Torino (2008),Crime|Drama +64620,Frost/Nixon (2008),Drama +64622,"Reader, The (2008)",Drama|Romance +64645,The Wrecking Crew (1968),Action|Adventure|Comedy|Crime|Drama|Thriller +64650,"Marriage Made in Heaven, A (Rab Ne Bana Di Jodi) (2008)",Comedy|Drama|Musical|Romance +64652,Delgo (2008),Adventure|Animation|Comedy|Fantasy|Romance +64658,"Chamber of Death (Chambre des morts, La) (2007)",Crime|Mystery|Thriller +64660,Waiter (Ober) (2006),Comedy +64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation +64701,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery +64704,Jesus Is a Palestinian (Jezus is een Palestijn) (1999),Comedy +64716,Seven Pounds (2008),Drama +64747,Meltdown: Days of Destruction (2006),Action|Sci-Fi|Thriller +64750,Pin... (1988),Horror +64754,Love (2005),Crime|Drama|Thriller +64784,"Animal Kingdom, The (1932)",Drama|Romance +64793,Tumannost Andromedy (1967),Adventure|Romance|Sci-Fi +64839,"Wrestler, The (2008)",Drama +64845,"Memory Keeper's Daughter, The (2008)",Drama +64895,"Little Giant, The (1933)",Comedy|Crime +64897,Mr. Wu (1927),Drama +64900,"Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do) (1990)",Action|Adventure|Fantasy|Horror|Romance +64903,"Nazis Strike, The (Why We Fight, 2) (1943)",Documentary|War +64906,"Battle of Britain, The (Why We Fight, 4) (1943)",Documentary|War +64918,Small Cuts (Petites coupures) (2003),Drama|Romance +64921,Arabian Nights (1942),Action|Adventure +64923,"Blackbird, The (1926)",Crime|Drama +64926,"Battle of Russia, The (Why We Fight, 5) (1943)",Documentary|War +64930,"More the Merrier, The (1943)",Comedy|Romance +64942,Tuya's Marriage (Tuya de hun shi) (2006),Drama|Romance +64944,Face of a Fugitive (1959),Western +64953,"Dirty Dozen, The: The Fatal Mission (1988)",Action|Adventure|War +64957,"Curious Case of Benjamin Button, The (2008)",Drama|Fantasy|Mystery|Romance +64959,"Divide and Conquer (Why We Fight, 3) (1943)",Documentary|War +64969,Yes Man (2008),Comedy +64976,Hexed (1993),Comedy +64979,On the Rumba River (On the Rhumba River) (2007),Documentary|Musical +64983,Valkyrie (2008),Drama|Thriller|War +64986,Birds of America (2008),Comedy|Drama +64990,Pete Seeger: The Power of Song (2007),Documentary +64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance +64997,War of the Worlds (2005),Action|Sci-Fi +64999,War of the Worlds 2: The Next Wave (2008),Action +65001,Constantine's Sword (2007),Documentary +65006,Impulse (2008),Mystery|Thriller +65011,Zona Zamfirova (2002),Comedy|Drama +65025,Double Dynamite (1951),Comedy|Musical +65027,"Death Kiss, The (1933)",Comedy|Mystery +65033,Girls Rock! (2007),Documentary +65037,Ben X (2007),Drama +65045,Alien Raiders (2008),Mystery|Sci-Fi|Thriller +65051,American Loser (Trainwreck: My Life as an Idiot) (2007),Comedy|Drama +65063,"King of Ping Pong, The (Ping-pongkingen) (2008)",Drama +65078,Jane Austen in Manhattan (1980),Drama|Romance +65088,Bedtime Stories (2008),Adventure|Children|Comedy +65091,Manhattan Melodrama (1934),Crime|Drama|Romance +65111,Two Days (2003),Comedy|Drama|Thriller +65126,Choke (2008),Comedy|Drama +65130,Revolutionary Road (2008),Drama|Romance +65133,Blackadder Back & Forth (1999),Comedy +65135,Blackadder's Christmas Carol (1988),Comedy +65142,Loft (2008),Crime|Drama|Mystery +65155,"Surfer, Dude (2008)",Comedy +65181,Nobel Son (2007),Comedy|Crime|Drama|Thriller +65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary +65193,Wild Child (2008),Drama|Romance +65204,Chandu the Magician (1932),Action|Adventure|Fantasy|Sci-Fi +65216,Defiance (2008),Drama|Thriller|War +65225,Zeitgeist: Addendum (2008),Documentary +65227,Dr. Jack (1922),Comedy +65230,Marley & Me (2008),Comedy|Drama +65235,"Grocer's Son, The (Fils de l'épicier, Le) (2007)",Drama|Romance +65238,Decoy (1946),Crime|Drama|Film-Noir +65243,Blackout (2008),Mystery|Thriller +65256,Jesse Stone: Night Passage (2006),Crime|Drama|Mystery +65259,Involuntary (De ofrivilliga) (2008),Drama +65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy +65263,High and Dizzy (1920),Comedy +65267,Now or Never (1921),Comedy +65277,"Good Guys and the Bad Guys, The (1969)",Comedy|Western +65288,Six in Paris (Paris vu par...) (1965),Drama|Romance +65290,Shadow Company (2006),Documentary|War +65293,Satan Met a Lady (1936),Comedy|Drama|Mystery +65300,Jack Brooks: Monster Slayer (2007),Action|Comedy|Horror +65304,Ce que mes yeux ont vu (2007),Drama|Mystery|Thriller +65310,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical +65315,Young Gods (Hymypoika) (2003),Drama +65350,"General Died at Dawn, The (1936)",Adventure|Crime|Thriller +65352,"Have Rocket, Will Travel (1959)",Comedy|Sci-Fi +65357,House of Sand (Casa de Areia) (2005),Drama +65359,Earthsea (Legend of Earthsea) (2004),Adventure|Drama|Fantasy +65370,Brotherhood of Death (1976),Action|Drama|War +65381,Man with the Gun (1955),Western +65387,"Good Student, The (Mr. Gibb) (2006)",Comedy +65400,American Ninja 4: The Annihilation (1990),Action +65418,Wendy and Lucy (2008),Drama +65435,Open Season 2 (2008),Adventure|Animation|Children|Comedy +65465,Last Chance Harvey (2008),Drama|Romance +65468,Dallas (1950),Western +65514,Ip Man (2008),Action|Drama|War +65518,"Dungeonmaster, The (1985)",Fantasy|Horror|Sci-Fi +65521,Howling V: The Rebirth (1989),Horror +65538,"Young Visiters, The (2003)",Comedy|Romance +65552,Replicant (2001),Action|Sci-Fi|Thriller +65556,"Duel at Silver Creek, The (1952)",Western +65558,"Recruiter, The (2008)",Documentary +65562,Habana Blues (2005),Drama|Musical +65564,"Battle of China, The (Why We Fight, 6) (1944)",Documentary|War +65567,Passengers (2008),Drama|Mystery|Thriller +65577,"Tale of Despereaux, The (2008)",Adventure|Animation|Children|Comedy|Fantasy +65585,Bride Wars (2009),Comedy|Romance +65588,"Gamers, The: Dorkness Rising (2008)",Action|Adventure|Comedy|Fantasy +65596,Mesrine: Killer Instinct (L'instinct de mort) (2008),Action|Crime|Drama|Thriller +65601,My Bloody Valentine 3-D (2009),Horror|Thriller +65603,Blood and Bones (Chi to hone) (2004),Drama +65612,Castaway (1986),Adventure|Drama +65614,Island in the Sun (1957),Drama|Romance +65621,Liberty Kid (2007),Drama +65629,"Fûke, De (2000)",Drama|War +65631,Battle in Seattle (2007),Action|Drama +65633,Fuel (2008),Documentary +65638,Aspen (1991),Documentary +65640,Model (1980),Documentary +65642,"Timecrimes (Cronocrímenes, Los) (2007)",Sci-Fi|Thriller +65651,Fire and Ice (2008),Adventure|Fantasy +65660,"Secret of the Grain, The (La graine et le mulet) (2007)",Drama +65665,Hamlet (2000),Drama +65667,Punk's Not Dead (2007),Documentary +65669,"Streaks, The (Pregi) (2004)",Drama +65672,Grbavica: The Land of My Dreams (Grbavica) (2006),Drama +65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller +65685,Inkheart (2008),Adventure|Fantasy +65696,Gun the Man Down (1956),Western +65698,Albuquerque (1948),Romance|Western +65702,"War Comes to America (Why We Fight, 7) (1945)",Documentary|War +65709,This Filthy World (2006),Comedy|Documentary +65721,"Soviet Story, The (2008)",Documentary +65729,Shoot on Sight (2007),Crime|Drama +65731,The Alphabet Killer (2008),Crime|Mystery|Thriller +65738,Revenge of the Nerds III: The Next Generation (1992),Comedy +65740,Revenge of the Nerds IV: Nerds in Love (1994),Comedy|Romance +65762,Soup to Nuts (1930),Comedy|Romance +65764,Chinese Coffee (2000),Drama +65770,Save Me (2007),Drama +65772,"Lazarus Project, The (2008)",Drama|Thriller +65780,"Man, The (1972)",Drama +65796,Galaxy Express 999 (Ginga tetsudô Three-Nine) (1979),Adventure|Animation|Fantasy|Sci-Fi +65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime +65810,Notorious (2009),Drama|Musical +65813,"Unborn, The (2009)",Horror|Mystery|Thriller +65817,Donkey Punch (2008),Horror|Thriller +65840,Where Is Fred!? (Wo ist Fred?) (2006),Comedy|Romance +65845,Make It Happen (2008),Drama +65866,Three Strangers (1946),Crime|Drama +65868,Repo! The Genetic Opera (2008),Fantasy|Horror|Musical +65878,Edge of Madness (2002),Drama +65882,"Uninvited, The (2009)",Drama|Horror|Mystery|Thriller +65894,Fear[s] of the Dark (Peur[s] du noir) (2007),Animation|Horror +65899,12:01 (1993),Comedy|Romance|Sci-Fi|Thriller +65907,Game Over (2005),Crime|Drama|Thriller +65909,Maria (2003),Drama +65927,Night Train (2009),Action|Mystery|Thriller +65930,"Big Stampede, The (1932)",Western +65932,Blue (1968),Romance|Western +65935,"Visitor, The (Muukalainen) (2008)",Drama|Mystery +65939,Kummeli Goldrush (Kummeli kultakuume) (1997),Comedy +65974,Shadow of the Holy Book (Pyhän kirjan varjo) (2007),Documentary +65982,Outlander (2008),Action|Adventure|Sci-Fi +65984,Belle of the Nineties (1934),Comedy|Western +65986,Branded (1950),Western +65994,"Dead Calling, A (2006)",Horror +66006,Beachhead (1954),Drama|War +66008,"Signos del zodiaco, Los (1964)",Drama +66015,Passchendaele (2008),Action|Drama|Romance|War +66019,"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)",Documentary +66025,Go Go Tales (2007),Comedy|Drama +66036,Wrestling with Alligators (1998),Drama +66051,"Badlanders, The (1958)",Romance|Western +66053,Black Widow (1954),Drama|Mystery +66057,Dead Husbands (1998),Comedy|Drama|Romance +66059,Bad Luck Love (2000),Crime|Drama +66066,"Grudge 3, The (2009)",Horror +66068,Indictment: The McMartin Trial (1995),Drama|Thriller +66090,Eden Lake (2008),Horror|Thriller +66092,"Triumph of the Nerds, The: The Rise of Accidental Empires (1996)",Documentary +66097,Coraline (2009),Animation|Fantasy|Thriller +66105,"Psychomania (Death Wheelers, The) (1973)",Horror +66118,Point of Order (1964),Documentary +66130,Chocolate (2008),Action|Drama +66140,Blackout (2007),Horror|Thriller +66152,TerrorVision (1986),Comedy|Horror|Sci-Fi +66156,"Escapist, The (2008)",Thriller +66171,Push (2009),Sci-Fi|Thriller +66198,"International, The (2009)",Drama|Thriller +66200,Two Lovers (2008),Drama|Romance +66203,He's Just Not That Into You (2009),Comedy|Drama|Romance +66234,Jar City (Mýrin) (2006),Crime|Drama|Thriller +66240,Dead Like Me: Life After Death (2009),Comedy|Fantasy +66246,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy +66250,California (1946),Romance|Western +66252,Canyon Passage (1946),Action|Romance|Western +66268,"Con, The (1998)",Comedy|Crime +66279,Husbands (1970),Drama +66282,"Cimarron Kid, The (1952)",Western +66284,"Avenging Conscience, The (1914)",Drama|Horror +66289,Singapore Sling (Singapore sling: O anthropos pou agapise ena ptoma) (1990),Crime|Film-Noir|Horror|Romance|Thriller +66295,33 Scenes from Life (33 sceny z zycia) (2008),Drama +66297,Futurama: Into the Wild Green Yonder (2009),Action|Animation|Comedy|Sci-Fi +66302,"Bandit, The (Eskiya) (1996)",Action|Crime|Romance|Thriller +66304,Hotel for Dogs (2009),Adventure|Children|Comedy +66306,The Deadly Trackers (1973),Drama|Western +66310,Frontière(s) (2007),Drama|Horror|Thriller +66317,Comet in Moominland (1992),Adventure|Animation|Fantasy +66320,"11th Hour, The (2007)",Documentary +66323,Daddy (Tato) (1995),Drama +66330,Fireflies in the Garden (2008),Drama +66335,Afro Samurai: Resurrection (2009),Animation +66337,Café Lumière (2003),Drama +66339,Death by Hanging (Koshikei) (1968),Comedy|Crime +66344,"Last Movie, The (1971)",Drama +66352,Dry Season (Daratt) (2006),Drama +66354,Jesus Christ Superstar (2000),Drama|Musical +66365,Trancers (1985),Action|Sci-Fi +66369,"Man Who Quit Smoking, The (Mannen som slutade röka) (1972)",Comedy +66371,Departures (Okuribito) (2008),Drama +66385,Taking Chance (2009),Drama|War +66389,AmericanEast (2008),Drama +66427,My Name Is Bruce (2007),Comedy|Horror +66437,Man in the Chair (2007),Comedy|Drama +66440,Robinson in Space (1997),Documentary|Sci-Fi +66472,"Way of War, The (2009)",Action|Thriller +66491,Kimberly (1999),Comedy|Romance +66503,Rally On! (Ralliraita) (2009),Comedy +66506,Ping Pong Playa (2007),Comedy +66509,Funny People (2009),Comedy|Drama +66511,Berlin Calling (2008),Comedy|Drama +66513,Devil Hides in Doubt (Sollbruchstelle) (2008),Documentary +66517,Against the Dark (2009),Action|Horror +66537,"Letter for the King, The (Brief voor de koning, De) (2008)",Adventure +66539,Firepower (1979),Action|Drama|Thriller +66544,Nuremberg (2000),Drama|War +66547,Bigger Than Life (1956),Drama|Mystery|Thriller +66549,Going to Kansas City (1998),Drama|Romance|Thriller +66551,Red Sands (2009),Action|Horror +66553,Show Me (2004),Crime|Drama|Thriller +66579,"Lost, The (2009)",Thriller +66581,Still Waiting... (2009),Comedy +66584,Pistol Whipped (2008),Action|Drama +66586,Flight of Fury (2007),Action +66590,"Far Horizons, The (1955)",Western +66592,Container (2006),Drama|Horror +66596,Mystery Team (2009),Comedy|Crime|Mystery +66614,Moordwijven (2007),Comedy +66618,"World Without Thieves, A (Tian xia wu zei) (2004)",Action|Crime|Drama +66620,"Gunfight at Dodge City, The (1959)",Western +66622,His Private Secretary (1933),Comedy|Romance +66639,Street Fighter: The Legend of Chun-Li (2009),Action|Adventure|Sci-Fi|Thriller +66652,Urban Justice (2007),Action +66655,Tough Enough (Knallhart) (2006),Crime|Drama +66659,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama +66662,"Black Watch, The (1929)",Adventure|Drama +66665,Away We Go (2009),Comedy|Drama|Romance +66667,Hell to Eternity (1960),Drama|War +66686,"Unsuspected, The (1947)",Drama|Film-Noir|Thriller +66691,"Thick as Thieves (a.k.a. Code, The) (2009)",Crime +66701,Beautiful Ohio (2006),Comedy|Drama +66718,"Cry, The (Grido, Il) (1957)",Drama +66720,"Big Lift, The (1950)",Drama|War +66744,"Divo, Il (2008)",Drama +66758,Wings (Krylya) (1966),Drama +66762,Paris (2008),Comedy|Drama|Romance +66773,Adrift in Manhattan (2007),Drama +66783,Friday the 13th (2009),Horror +66785,"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)",Action|Adventure|Comedy|Western +66789,Screamers: The Hunting (2009),Sci-Fi|Thriller +66798,"Pink Panther 2, The (2009)",Adventure|Comedy|Mystery +66801,Crips and Bloods: Made in America (2008),Documentary +66808,Far Cry (2008),Action|Adventure|Drama +66811,Glenn Killing på Berns (1993),Comedy +66813,"English Surgeon, The (2007)",Documentary +66815,"Hell of a Day, A (Reines d'un jour) (2001)",Comedy|Drama +66854,Shara (Sharasojyu) (2003),Drama +66857,Marius (1931),Comedy|Drama|Romance +66859,"Adventures of Food Boy, The (aka High School Superhero) (2008)",Comedy +66861,César (1936),Comedy|Drama|Romance +66866,They Wait (2007),Horror|Mystery|Thriller +66868,"Rebel, The (2006)",Action|Drama|Romance +66870,Everlasting Moments (Maria Larssons eviga ögonblick) (2008),Drama +66897,Expecting Love (Mala wielka milosc) (2008),Comedy|Romance +66900,Attack Force (2006),Action|Horror|Sci-Fi +66902,Shadow Man (2006),Action +66904,Playing for Keeps (1986),Comedy +66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical +66927,Tokyo.Sora (2002),Drama +66932,Dead Silent (1999),Thriller +66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi +66941,Today You Die (2005),Action|Crime +66943,"Cottage, The (2008)",Comedy|Crime|Horror|Thriller +66947,Two Men in Manhattan (Deux hommes dans Manhattan) (1959),Crime|Drama|Thriller +66977,Fanny (1932),Comedy|Drama|Romance +66979,Out at the Wedding (2007),Comedy|Romance +66981,Hell Town (Born to the West) (1937),Romance|Western +66983,"Hasty Heart, The (1949)",Drama +67009,Frontrunners (2008),Documentary +67068,"Quick and the Dead, The (1987)",Western +67070,Army of One (Joshua Tree) (1993),Action|Adventure|Crime|Drama|Mystery|Thriller +67073,Day of the Dead (2008),Horror +67087,"I Love You, Man (2009)",Comedy +67096,"Big Steal, The (1949)",Adventure|Drama|Film-Noir|Thriller +67098,Billy Budd (1962),Adventure +67135,Night Has a Thousand Eyes (1948),Drama|Film-Noir +67138,Live Free or Die (2006),Comedy|Crime +67140,Blonde Venus (1932),Drama +67168,Dance of the Dead (2008),Adventure|Comedy|Horror +67186,"Haunting in Connecticut, The (2009)",Horror|Thriller +67190,"Little Engine That Could, The (1991)",Animation|Children +67193,Duplicity (2009),Crime|Romance|Thriller +67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller +67223,Sugar (2008),Drama +67233,Young Thugs: Nostalgia (Kishiwada shônen gurentai: Bôkyô) (1998),Drama +67247,Praying with Lior (2008),Documentary +67252,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action +67255,"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)",Crime|Drama|Mystery|Thriller +67257,Bloodbath at the House of Death (1984),Comedy|Horror +67267,Sunshine Cleaning (2008),Comedy|Drama +67295,Kung Fu Panda: Secrets of the Furious Five (2008),Action|Animation|Children|Comedy +67298,Hangman's Knot (1952),Western +67300,Immortal Sergeant (1943),Drama|War +67314,Never Ever! (Nigdy w zyciu!) (2004),Comedy|Romance +67316,"Children of Leningradsky, The (2005)",Documentary +67331,Submerged (2005),Action +67354,Stacy (2001),Comedy|Horror +67356,Insanitarium (2008),Horror|Thriller +67359,Illegal (1955),Crime|Drama|Film-Noir +67361,Echelon Conspiracy (2009),Action|Mystery|Thriller +67363,Jasminum (2006),Comedy|Drama +67365,After Sex (2007),Comedy|Drama|Romance +67370,"Third Part of the Night, The (Trzecia czesc nocy) (1972)",Drama|Horror|War +67405,13B (2009),Horror|Mystery|Thriller +67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX +67420,Boarding Gate (2007),Thriller +67422,California Dreamin' (Nesfarsit) (2007),Comedy|Drama|War +67424,Counter Investigation (Contre-enquête) (2007),Crime|Drama +67429,Sita Sings the Blues (2008),Animation|Musical +67457,Naked Fear (2007),Horror|Thriller +67459,Chaos (2005),Crime|Drama|Horror +67464,Three on a Match (1932),Crime|Drama|Romance +67501,Kogel mogel (1988),Comedy +67504,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary +67508,"Baader Meinhof Komplex, Der (2008)",Action|Crime|Drama|Thriller +67534,Big Stan (2007),Comedy +67536,Dating the Enemy (1996),Comedy|Romance +67603,Blue Steel (1934),Western +67607,We Live in Public (2009),Documentary +67618,Strictly Sexual (2008),Comedy|Drama|Romance +67620,Nothing But the Truth (2008),Drama|Thriller +67624,"Square, The (2008)",Thriller +67657,"Gray Man, The (2007)",Crime|Thriller +67665,Anvil! The Story of Anvil (2008),Documentary|Musical +67667,Border Incident (1949),Crime|Drama|Film-Noir +67675,Star of Midnight (1935),Comedy|Mystery|Romance +67695,Observe and Report (2009),Action|Comedy +67702,Private Lives (1931),Comedy|Drama +67704,Too Many Girls (1940),Comedy|Musical +67706,Union Station (1950),Drama|Film-Noir +67734,Adventureland (2009),Comedy|Drama +67744,With Fire and Sword (Ogniem i mieczem) (1999),Adventure|Crime|Drama|Romance|War +67748,Scenes of a Sexual Nature (2006),Comedy|Drama|Romance +67784,"Cake Eaters, The (2007)",Drama +67788,Confessions of a Shopaholic (2009),Comedy|Romance +67792,"Black Balloon, The (2008)",Drama +67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller +67801,Revanche (2008),Crime|Drama|Romance +67803,One Kill (2000),Crime|Drama +67809,Killer Force (1976),Action|Thriller +67812,Cheeky (Trasgredire) (2000),Comedy|Drama +67839,"Lucky Ones, The (2008)",Comedy|Drama|War +67845,My Friend Henry (Ystäväni Henry) (2004),Children|Drama +67847,Cialo (2003),Comedy|Crime +67850,Fitna (2008),Documentary +67852,"Bar at the Victoria Station, A (Bar na Victorii) (2003)",Documentary +67865,Land of Happines (Onnen maa) (1993),Drama +67867,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi +67869,Flash Gordon (1936),Action|Adventure|Sci-Fi +67871,Rest Stop (2006),Horror|Thriller +67873,Your Life in 65 (Tu vida en 65') (2006),Comedy|Romance +67876,Kansas Raiders (1950),Action|Adventure|Western +67878,"Lonely Man, The (1957)",Western +67881,Dating Games People Play (2005),Comedy +67888,Man on the Flying Trapeze (1935),Comedy +67890,Porgy and Bess (1959),Drama|Musical|Romance +67892,Can-Can (1960),Comedy|Musical|Romance +67894,Pekka ja Pätkä lumimiehen jäljillä (1954),Comedy +67896,Law and Order (1953),Action|Romance|Western +67898,"Gravedancers, The (2006)",Horror|Thriller +67900,Broken (2006),Horror|Thriller +67907,Kiler (1997),Comedy|Crime +67923,"Fast & Furious (Fast and the Furious 4, The) (2009)",Action|Crime|Drama|Thriller +67925,City Girl (1930),Drama|Romance +67927,Hangover Square (1945),Crime|Drama|Horror|Thriller +67929,Sanshiro Sugata (Judo Saga) (Sugata Sanshirô) (1943),Action|Adventure|Drama +67931,Sanshiro Sugata Part Two (Judo Saga II) (Zoku Sugata Sanshirô) (1945),Action|Adventure +67949,"Exterminating Angels, The (anges exterminateurs, Les) (2006)",Drama|Fantasy|Romance +67957,Superstar: The Karen Carpenter Story (1988),Drama|Musical +67980,"Force of One, A (1979)",Action|Crime|Drama|Thriller +67983,Gardens of the Night (2008),Drama +67997,In the Loop (2009),Comedy +67999,Global Metal (2008),Documentary +68012,"End of America, The (2008)",Documentary +68028,What Doesn't Kill You (2008),Crime|Drama +68039,Life Is What You Make It (Linha de Passe) (2008),Drama +68044,Crime Wave (1954),Crime|Drama|Film-Noir +68067,Escape from Fort Bravo (1953),Western +68069,Ride Lonesome (1959),Western +68073,Pirate Radio (2009),Comedy|Drama +68099,Apollo 13: To the Edge and Back (1994),Documentary +68115,"Small Back Room, The (1949)",Romance|Thriller +68128,"Mindscape of Alan Moore, The (2003)",Documentary +68135,17 Again (2009),Comedy|Drama +68137,Nana (2005),Drama +68153,Double Trouble (1984),Action|Comedy +68157,Inglourious Basterds (2009),Action|Drama|War +68159,State of Play (2009),Crime|Drama|Thriller +68161,"Lawless Breed, The (1953)",Action|Romance|Western +68163,Lust for Gold (1949),Romance|Western +68168,"Strategy of the Snail, The (Estrategia del Caracol, La) (1993)",Comedy|Drama +68173,Strike (Stachka) (1925),Drama +68175,"Magic of Méliès, The (magie Méliès, La) (1997)",Documentary +68177,Lawless Range (1935),Western +68180,Bab'Aziz -The Prince Who Contemplated His Soul (2005),Drama +68194,"Damned United, The (2009)",Drama +68201,Hank and Mike (2008),Comedy +68205,Crank: High Voltage (2009),Action|Comedy|Crime +68214,"Garage, The (1920)",Comedy +68216,"Strong Man, The (1926)",Comedy +68222,"Final Inquiry, The (Inquiry, The) (inchiesta, L') (2006)",Adventure|Drama|Mystery +68226,Two Kilers (Kilerów 2-óch) (1999),Comedy|Crime +68233,"Man Behind the Gun, The (1953)",Western +68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller +68242,Matrimonial Comedy (Komedia malzenska) (1994),Comedy +68244,Break Up (1998),Thriller +68246,Fraternity Demon (1992),Comedy +68254,"Smart Set, The (1928)",Comedy|Drama +68259,Aamir (2008),Drama|Thriller +68263,Mammoth (Mammut) (2009),Drama +68265,"Days Between, The (In den Tag hinein) (2001)",Drama +68269,"Young Victoria, The (2009)",Drama|Romance +68271,Intentions of Murder (a.k.a. Murderous Instincts) (Akai satsui) (1964),Drama +68273,Amazing Journey: The Story of The Who (2007),Documentary +68288,"Informers, The (2008)",Crime|Drama|Thriller +68314,Antique (Sayangkoldong yangkwajajeom aentikeu) (2008),Comedy|Drama +68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller +68324,"Girlfriend Experience, The (2009)",Drama +68329,"Desert Trail, The (1935)",Western +68337,Moving Midway (2007),Documentary +68339,American Swing (2008),Documentary +68347,Sin Nombre (2009),Crime|Drama|Thriller +68349,"Life and Times of Allen Ginsberg, The (1994)",Documentary +68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX +68392,Happy Campers (2001),Comedy +68411,Black Magic (Meeting at Midnight) (Charlie Chan in Meeting at Midnight) (Charlie Chan in Black Magic) (1944),Comedy|Crime|Drama +68442,Lymelife (2008),Comedy|Drama +68444,"Great Buck Howard, The (2008)",Comedy +68462,Euphoria (Eyforiya) (2006),Drama|Romance +68472,Cherry Blossoms (Kirschblüten - Hanami) (2008),Drama|Romance +68474,Riders of Destiny (1933),Romance|Western +68480,Flatfoot on the Nile (Piedone d'Egitto) (1980),Action|Comedy|Crime +68482,XIII: The Conspiracy (2008),Action|Crime|Mystery|Thriller +68484,Knights of Bloodsteel (2009),Fantasy +68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War +68489,Täynnä Tarmoa (2009),Documentary +68495,Love Sick (Legaturi bolnavicioase) (2006),Drama +68498,"Girl from Monaco, The (fille de Monaco, La) (2008)",Comedy|Drama +68511,Black Ice (Musta jää) (2007),Drama +68513,Wild Things: Diamonds in the Rough (2005),Mystery|Thriller +68515,Man with an Apartment (Czlowiek z M-3) (1969),Comedy +68517,"I Hate Mondays, (Nie lubie poniedzialku) (1971)",Comedy +68519,S. Darko (S. Darko: A Donnie Darko Tale) (2009),Crime|Mystery|Sci-Fi|Thriller +68522,Earth (2007),Documentary +68524,Sagebrush Trail (1933),Western +68533,Within Limits (Liikkumavara) (2009),Documentary +68536,Stanley Kubrick: A Life in Pictures (2001),Documentary +68539,"Lady Takes a Chance, A (1943)",Comedy|Romance|Western +68541,"Emergency Escape, The (Wyjscie awaryjne) (1982)",Comedy +68544,"Stolen Collection, (Skradziona kolekcja) (1979)",Comedy +68548,Shuttle (2008),Crime|Drama|Horror|Thriller +68552,Crossing Over (2009),Drama +68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller +68572,"Kids in the Hall: Same Guys, New Dresses (2001)",Comedy|Documentary +68574,"Django the Bastard (Strangers Gundown, The) (Django il bastardo) (1969)",Action|Thriller|Western +68576,"Man from Monterey, The (1933)",Western +68590,Horrorvision (2001),Horror +68593,Daylight Robbery (2008),Crime|Drama|Thriller +68597,Scorpio (1973),Action|Drama|Thriller +68600,Balls Out: Gary the Tennis Coach (2009),Comedy +68612,Outrage (2009),Documentary +68614,"Seduction of Joe Tynan, The (1979)",Drama +68645,Man in the Middle (1963),Drama|War +68647,More Dead Than Alive (1968),Romance|Western +68650,Powder Blue (2009),Drama +68653,"Devil Is a Woman, The (1935)",Comedy|Drama|Romance +68659,Fanboys (2009),Adventure|Comedy|Drama +68662,Folks! (1992),Comedy +68664,Breaking the Rules (1992),Comedy|Drama +68667,Live! (2007),Comedy|Drama +68674,"Merry Gentleman, The (2008)",Drama +68676,"Murder of Fred Hampton, The (1971)",Crime|Documentary +68685,Incendiary (2008),Drama|Mystery|Romance|Thriller +68690,Love Songs (Les chansons d'amour) (2007),Drama|Musical +68749,Management (2008),Comedy|Romance +68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller +68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX +68831,Ghosts of Cité Soleil (2006),Action|Documentary|Drama|Romance|War +68833,How to Cook Your Life (2007),Documentary +68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance +68838,Every Little Step (2008),Documentary +68843,Lesbian Vampire Killers (2009),Action|Comedy|Horror +68848,"Brothers Bloom, The (2008)",Adventure|Comedy|Crime|Romance +68853,Man in the Saddle (1951),Western +68855,Montana (1950),Action|Adventure|Romance|Western +68858,Vincere (2009),Drama|Romance +68865,"Cure for Love, A (Lekarstwo na milosc) (1966)",Comedy|Crime|Romance +68868,Our Folks (Sami swoi) (1967),Comedy +68872,Paisan (Paisà) (1946),Drama|War +68874,"Jeanne Dielman, 23 Quai du Commerce, 1080 Bruxelles (1975)",Drama +68884,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance +68886,I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006),Comedy|Romance +68890,Hi Diddle Diddle (1943),Comedy +68892,Rhinoceros (1974),Comedy|Drama|Fantasy|Mystery|Romance +68897,"Man with Bogart's Face, The (1980)",Comedy +68899,"Monster, The (1925)",Comedy|Horror|Mystery|Sci-Fi +68901,Chop Shop (2007),Drama +68915,Caliber 9 (1972),Action|Crime|Thriller +68919,Suzanne's Career (La carrière de Suzanne) (1963),Romance +68921,Moontide (1942),Drama|Film-Noir +68923,Catacombs (2007),Horror|Thriller +68932,"Soloist, The (2009)",Drama|Musical +68941,"Last House on the Left, The (2009)",Drama|Horror|Thriller +68943,Angel in Cracow (Aniol w Krakowie) (2002),Comedy|Drama +68945,Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997),Action|Animation|Mystery|Sci-Fi +68952,Drag Me to Hell (2009),Comedy|Horror +68954,Up (2009),Adventure|Animation|Children|Drama +68956,Late Autumn (Akibiyori) (1960),Comedy|Drama +68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama +68963,Easy Virtue (2008),Comedy|Romance +68965,Dance Flick (2009),Comedy|Musical +68967,"Summer Hours (Heure d'été, L') (2008)",Drama +68974,Show People (1928),Comedy|Romance +68976,Two English Girls (Les deux anglaises et le continent) (1971),Drama|Romance +69005,Female (1933),Comedy|Drama|Romance +69007,Firecreek (1968),Western +69027,OSS 117 - Lost in Rio (OSS 117: Rio ne répond plus) (2009),Adventure|Comedy +69039,"Flame of New Orleans, The (1941)",Comedy|Romance +69042,Flash Gordon's Trip to Mars (1938),Action|Sci-Fi +69061,Personal Effects (2009),Drama +69069,Fired Up (2009),Comedy +69072,The Winslow Boy (1948),Children|Crime|Drama +69075,Trojan War (1997),Comedy +69088,"War Game, The (1965)",Documentary|Drama|War +69093,Without a Paddle: Nature's Calling (2009),Adventure|Comedy +69103,Welcome (2009),Drama +69118,In the Electric Mist (2009),Drama|Mystery +69122,"Hangover, The (2009)",Comedy|Crime +69131,Killshot (2008),Action|Crime|Drama|Thriller +69134,Antichrist (2009),Drama|Fantasy +69136,Don (1978),Action|Comedy|Crime|Drama|Musical|Thriller +69140,Sweeney Todd (2006),Crime|Drama|Horror|Thriller +69155,Pete Kelly's Blues (1955),Crime|Drama +69159,Jimmy and Judy (2006),Crime|Drama|Thriller +69169,"Song Is Born, A (1948)",Comedy|Musical +69187,Billu (2009),Comedy|Drama|Musical +69195,Many Rivers to Cross (1955),Comedy|Romance|Western +69199,Ricky Rapper (Risto Räppääjä) (2008),Comedy|Musical +69201,Zakochani (2000),Comedy|Romance +69203,Show (2003),Comedy|Crime|Drama +69211,Boy Eats Girl (2005),Comedy|Horror +69213,"Ranma ½: Big Trouble in Nekonron, China (Ranma ½: Chûgoku Nekonron daikessen! Okite yaburi no gekitô hen) (1991)",Animation|Comedy +69217,"Man from Utah, The (1934)",Action|Adventure|Crime|Romance|Western +69219,"Wing and the Thigh, The (L'aile ou la cuisse) (1976)",Comedy +69222,Perched on a Tree (Sur un arbre perché) (1971),Comedy +69224,Marius and Jeanette (Marius et Jeannette) (1997),Comedy|Drama|Romance +69227,Ernest Rides Again (1993),Children|Comedy +69231,Snug as a Bug (U Pana Boga za piecem) (1998),Comedy|Drama +69233,Blind Husbands (1919),Drama|Romance +69241,Berlin Alexanderplatz (1980),Drama +69243,Before the Rains (2007),Drama|Romance|Thriller +69251,Special (2006),Drama|Fantasy +69253,New in Town (2009),Comedy|Romance +69255,The Merry Widow (2007),Comedy|Drama +69269,Salaam Namaste (2005),Comedy|Musical|Romance +69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror +69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi +69280,"Clique, The (2008)",Comedy +69284,Fatso (2008),Comedy +69299,"Free Soul, A (1931)",Drama +69302,Momma's Man (2008),Drama +69304,Imagine That (2009),Comedy|Drama|Fantasy +69306,"Taking of Pelham 1 2 3, The (2009)",Crime|Drama|Thriller +69310,Hana and Alice (Hana to Arisu) (2004),Comedy|Drama +69324,Flame and Citron (Flammen & Citronen) (2008),Action|Drama|War +69332,Fade to Black (2006),Mystery|Thriller +69336,In Therapy (Divã) (2009),Comedy|Drama|Romance +69339,Chain Reaction (2006),Horror +69341,Jekyll + Hyde (2006),Horror|Thriller +69354,Went the Day Well? (1942),Thriller|War +69356,Zulu Dawn (1979),Action|Drama|Thriller|War +69358,American Violet (2008),Drama +69361,Suspect X (Yôgisha X no kenshin) (2008),Crime|Drama|Mystery +69370,Spiritual Kung Fu (Quan jing) (1978),Action +69372,Big Man Japan (Dai-Nihonjin) (2007),Comedy|Sci-Fi +69374,Wrestling Ernest Hemingway (1993),Drama|Romance +69379,Cargo (2006),Adventure|Drama|Thriller +69381,"Hitman, The (1991)",Action|Crime|Thriller +69387,Goodbye Again (1961),Drama|Romance +69394,"Stoning of Soraya M., The (2008)",Crime|Drama +69406,"Proposal, The (2009)",Comedy|Romance +69419,"Crawling Hand, The (1963)",Horror|Sci-Fi +69421,Dillinger (1973),Action|Crime|Drama +69429,Home from the Hill (1960),Drama|Romance +69432,Small Town Gay Bar (2006),Documentary +69436,Year One (2009),Adventure|Comedy +69438,O'Horten (2007),Comedy|Drama +69442,Pekka ja Pätkä neekereinä (1960),Comedy +69444,5 Against the House (1955),Crime|Drama|Film-Noir +69446,3 on a Couch (Three on a Couch) (1966),Comedy|Romance +69448,Promise Me This (Zavet) (2007),Comedy +69451,Mindwarp (1992),Horror|Sci-Fi|Thriller +69453,"Land That Time Forgot, The (1975)",Adventure|Sci-Fi +69458,Tyson (2008),Documentary +69460,Primary (1960),Documentary +69464,Angels of the Universe (Englar alheimsins) (2000),Drama +69466,"Alibi, The (Lies and Alibis) (2006)",Comedy|Drama|Romance +69469,Garfield's Pet Force (2009),Animation +69475,Dutchman (1967),Drama +69481,"Hurt Locker, The (2008)",Action|Drama|Thriller|War +69483,"Not on Your Life (Verdugo, El) (Executioner, The) (1963)",Comedy|Drama +69485,Air Hawks (1935),Action|Drama|Mystery|Romance|Sci-Fi +69487,Anna Lucasta (1958),Drama +69489,How I Unleashed World War II (Jak rozpetalem II wojne swiatowa) (1970),Comedy|War +69493,Tu£sday (2008),Action|Crime|Mystery|Thriller +69495,Breakfast with Scot (2007),Drama|Romance +69498,"Ronde, La (1950)",Drama +69500,Brunet Will Call (Brunet wieczorowa pora) (1976),Comedy +69503,Going Berserk (1983),Comedy +69506,Luther the Geek (1990),Horror +69509,"Vampires, Les (1915)",Action|Adventure|Drama|Horror|Thriller +69516,"Limits of Control, The (2009)",Crime|Drama|Film-Noir +69518,Pornorama (2007),Comedy +69521,Heavy Metal in Baghdad (2007),Documentary|Musical|War +69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller +69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX +69529,Home (2009),Documentary +69542,K2 (1991),Adventure|Drama +69545,D@bbe (2006),Horror|Thriller +69552,Tulpan (2008),Comedy|Drama +69559,"File on Thelma Jordan, The (1950)",Crime|Drama|Film-Noir|Mystery +69565,Bling: A Planet Rock (2007),Documentary +69569,Jet Pilot (1957),Drama +69574,Phoebe in Wonderland (2008),Drama|Fantasy +69604,Whatever Works (2009),Comedy|Romance +69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance +69609,Holly (2006),Drama +69611,Hustle (1975),Crime|Drama|Mystery|Thriller +69626,Houdini (1953),Drama +69640,Public Enemies (2009),Crime|Drama|Thriller +69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance +69652,120 (2008),Drama|War +69654,Prison Break: The Final Break (2009),Action|Drama|Thriller +69666,Samson and Delilah (2009),Drama +69670,Final Approach (1991),Sci-Fi|Thriller +69674,"Mob, The (1951)",Crime|Drama|Film-Noir +69677,Daisy Kenyon (1947),Drama|Romance +69685,Daria: Is It College Yet? (2002),Animation|Comedy +69687,"Irene, Go Home! (Irena do domu!) (1955)",Comedy +69689,Resan Till Melonia (1989),Adventure|Animation|Children|Fantasy +69699,Love Streams (1984),Comedy|Drama +69701,Blue Week (Sininen viikko) (1954),Drama|Romance +69704,Night of the Living Dead 3D (2006),Adventure|Comedy|Fantasy|Horror +69706,Mumia Abu-Jamal: A Case for Reasonable Doubt? (1997),Documentary +69708,Off the Charts: The Song-Poem Story (2003),Documentary +69712,My Sister's Keeper (2009),Drama +69714,Kambakkht Ishq (Incredible Love) (2009),Action|Comedy|Musical +69720,Hood of Horror (2006),Comedy|Drama|Horror +69722,"Dirt Bike Kid, The (1985)",Children|Comedy|Fantasy +69729,I Have Found It (Kandukondain Kandukondain) (2000),Comedy|Drama|Musical|Romance +69732,Lady Death (2004),Action|Animation|Horror +69744,Blonde Crazy (1931),Comedy|Crime|Drama|Romance +69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror +69748,Ranma ½: Nihao My Concubine (Ranma ½: Kessen Tôgenkyô! Hanayome o torimodose!!) (1992),Action|Adventure|Comedy|Fantasy|Romance +69753,Pittsburgh (1942),Drama +69755,"Lucky Texan, The (1934)",Romance|Western +69757,(500) Days of Summer (2009),Comedy|Drama|Romance +69761,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama +69766,News from a Personal War (Notícias de uma Guerra Particular) (1999),Documentary +69768,Magnificent Obsession (1935),Drama|Romance +69771,7th Heaven (Seventh Heaven) (1927),Drama|Romance +69773,Madame Bovary (1949),Drama|Romance +69784,Brüno (Bruno) (2009),Comedy +69786,"Boys: The Sherman Brothers' Story, The (2009)",Documentary +69788,1939: Hollywood's Greatest Year (2009),Documentary +69792,Madigan (1968),Crime|Drama +69800,Toughguy (1995),Crime|Drama|Thriller +69803,Pinchcliffe Grand Prix (Flåklypa Grand Prix) (1975),Adventure|Animation|Children|Comedy +69805,"Librarian, The: The Curse of the Judas Chalice (2008)",Action|Adventure|Fantasy +69809,The Inhabited Island (2008),Fantasy|Sci-Fi +69811,Odgrobadogroba (2005),Comedy|Drama +69818,Franklyn (2008),Drama|Fantasy|Romance|Thriller +69821,Men of War (1994),Action|Drama +69830,Iron Maiden: Flight 666 (2009),Documentary +69842,Good Dick (2008),Comedy|Drama|Romance +69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX +69849,Roots (1977),Drama|War +69856,Mélo (1986),Drama|Romance +69858,Love unto Death (L'amour a mort) (1984),Drama +69860,Eichmann (2007),Drama|War +69864,Blue Blood (2006),Documentary +69873,"Corridors of Time: The Visitors II, The (Couloirs du temps: Les visiteurs 2, Les) (1998)",Children|Comedy|Fantasy|Sci-Fi +69878,Who Killed Nancy? (2009),Documentary +69880,Summer of Fear (1996),Drama|Horror|Mystery|Thriller +69904,Open Water 2: Adrift (2006),Drama|Thriller +69906,Possessed (2000),Drama|Horror +69908,"Group, The (1966)",Drama +69911,Senso (1954),Drama|Romance|War +69917,Slap Shot 2: Breaking the Ice (2002),Comedy +69919,"Mark of Cain, The (2007)",Drama +69926,"Strawberry Blonde, The (1941)",Comedy|Romance +69928,"Muppet Musicians of Bremen, The (1972)",Children|Comedy|Musical +69931,"Brief Vacation, A (breve vacanza, Una) (1973)",Drama|Romance +69934,My Sassy Girl (2008),Comedy|Drama|Romance +69945,"Fast and the Furious, The (1955)",Crime|Mystery +69947,Game of Death II (a.k.a. Tower of Death) (Si wang ta) (1981),Action|Mystery +69949,Rosso (1985),Crime|Drama +69951,"Imaginarium of Doctor Parnassus, The (2009)",Drama|Fantasy +69953,9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008),Documentary +69957,Sink or Swim (1990),Documentary +69964,"Giant of Marathon, The (Battaglia di Maratona, La) (1959)",Action|Drama|War +69971,Ludwig (1972),Drama +69974,Shiver (Eskalofrío) (2008),Horror|Thriller +69979,Haaveiden kehä (2002),Drama +69981,Winter of Frozen Dreams (2009),Crime|Thriller +69986,"Cold Water (Eau Froide, L') (1994)",Drama +69988,Humpday (2009),Comedy +69992,Ten Inch Hero (2007),Comedy|Drama|Romance +69995,Tokyo Sonata (2008),Drama +70008,Kill Your Darlings (2006),Comedy|Drama +70015,Polytechnique (2009),Crime|Drama +70032,Visioneers (2008),Comedy +70046,"Vault of Horror, The (1973)",Horror|Mystery +70048,"Dark Backward, The (1991)",Comedy +70050,Blue City (1986),Action|Crime|Drama +70062,Judas Kiss (1998),Crime|Drama|Thriller +70064,Streets of Blood (2009),Action|Thriller +70088,Jonathan Livingston Seagull (1973),Drama +70093,Cheri (2009),Romance +70102,One Week (2008),Adventure|Drama +70118,"Run, Simon, Run (1970)",Adventure|Thriller +70121,'Neath the Arizona Skies (1934),Western +70126,Pavement: Slow Century (2002),Documentary +70128,Mortel transfert (2001),Comedy|Crime|Thriller +70130,Loulou (1980),Drama|Romance +70133,"Answer Man, The (a.k.a. Arlen Faber) (2009)",Comedy|Romance +70146,Rage at Dawn (1955),Western +70148,Paradise Canyon (1935),Crime|Western +70152,"Perfect Fake, A (2005)",Documentary +70155,Seven Years Bad Luck (1921),Comedy +70157,"Gang's All Here, The (1943)",Comedy|Musical|Romance +70159,Orphan (2009),Drama|Horror|Mystery|Thriller +70173,Afterburn (1992),Drama +70175,Fragments (2008),Crime|Drama +70181,Rainbow Valley (1935),Action|Romance|Western +70183,"Ugly Truth, The (2009)",Comedy|Drama|Romance +70186,Heimat - A Chronicle of Germany (Heimat - Eine deutsche Chronik) (1984),Drama +70188,Wild River (1960),Drama|Romance +70197,My First War (2008),Documentary +70201,High Hopes (1988),Comedy +70204,Tulsa (1949),Action|Drama|Romance +70206,"Collector, The (2009)",Crime|Horror|Thriller +70208,"Perfect Getaway, A (2009)",Horror|Thriller +70223,Fanfan la Tulipe (Fan-Fan the Tulip) (1952),Action|Adventure|Comedy|Romance|War +70227,Dark Ride (2006),Horror|Thriller +70229,House (2008),Drama|Horror|Thriller +70235,Dallas 362 (2003),Drama +70237,Moonshot (2009),Drama +70282,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi +70286,District 9 (2009),Mystery|Sci-Fi|Thriller +70293,Julie & Julia (2009),Comedy|Drama|Romance +70295,"Beaches of Agnes, The (Plages d'Agnès, Les) (2008)",Documentary +70301,Obsessed (2009),Crime|Drama|Thriller +70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller +70315,Friend Zone (Pagafantas) (2009),Comedy +70318,"Black Box, The (La boîte noire) (2005)",Mystery|Thriller +70331,My Stars (Mes stars et moi) (2008),Comedy +70334,Hannah Montana: The Movie (2009),Comedy|Drama|Musical|Romance +70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller +70342,Séraphine (2008),Drama|War +70344,Cold Souls (2009),Comedy|Drama +70355,Daddy Nostalgia (Daddy Nostalgie) (1990),Drama +70361,12 Rounds (2009),Action|Thriller +70366,"Silent Night, Deadly Night Part 2 (1987)",Comedy|Horror +70370,The Boys from Fengkuei (1983),Drama +70372,The Sandwich Man (1983),Drama +70374,"Left-Hand Side of the Fridge, The (Moitié gauche du frigo, La) (2000)",Comedy +70377,Where Danger Lives (1950),Drama|Film-Noir|Romance|Thriller +70410,"Killing Room, The (2009)",Drama|Mystery|Thriller +70418,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance +70421,A Summer at Grandpa's (1984),Drama +70423,"A Time to Live, a Time to Die (1985)",Drama +70425,"One and Only, The (Eneste ene, Den) (1999)",Comedy|Romance +70432,Fail Safe (2000),Drama|Thriller +70451,Max Manus (2008),Action|Drama|War +70465,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama +70488,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary +70490,"Trail Beyond, The (1934)",Action|Adventure|Western +70492,Winds of the Wasteland (1936),Western +70495,Kill Buljo: The Movie (2007),Action|Comedy +70497,Stone of Destiny (2008),Adventure|Comedy|Crime|Drama +70500,Okie Noodling (2001),Documentary +70507,Days of Darkness (2007),Comedy|Drama|Fantasy +70511,Randy Rides Alone (1934),Western +70513,West of the Divide (1934),Romance|Western +70517,Army Brats (Schatjes!) (1984),Children|Comedy +70521,Lost in Austen (2008),Drama|Fantasy|Romance|Sci-Fi +70529,Je suis né d'une cigogne (1999),Comedy|Fantasy +70531,"Star Packer, The (1934)",Action|Romance|Western +70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi +70535,Love Hina Christmas Special: Silent Eve (Rabu Hina kurisumasu supesharu: Sairento ivu) (2000),Animation|Comedy|Romance +70537,Moliere (1978),Drama +70541,Floating Clouds (Ukigumo) (1955),Drama|Romance +70543,Japanese Girls at the Harbor (Minato no nihon musume) (1933),Drama +70545,"Deal, The (2008)",Comedy +70549,Doing Time on Maple Drive (1992),Drama +70559,"Line, The (La linea) (2008)",Action|Crime|Drama|Thriller +70562,"Ramen Girl, The (2008)",Comedy|Drama|Romance +70565,"Goods: Live Hard, Sell Hard, The (2009)",Comedy +70567,Adam (2009),Drama|Romance +70571,Just Sex and Nothing Else (Csak szex és más semmi) (2005),Comedy +70587,Alien Trespass (2009),Comedy|Sci-Fi +70591,Ignition (2001),Action|Drama +70593,Dillinger and Capone (1995),Crime|Drama +70595,"Next Stop, Greenwich Village (1976)",Comedy +70597,Gigantic (2008),Comedy|Romance +70599,"Time Traveler's Wife, The (2009)",Drama|Romance|Sci-Fi +70607,Feast II: Sloppy Seconds (2008),Action|Comedy|Horror|Thriller +70609,Katze im Sack (2005),Drama +70611,Traffic Affairs (Mitfahrer) (2004),Drama +70629,Waterland (1992),Drama +70637,I Can't Think Straight (2007),Drama|Romance +70641,Miss March (2009),Comedy +70643,Bandslam (2009),Comedy|Drama|Musical +70649,A City of Sadness (1989),Drama +70656,Harvard Beats Yale 29-29 (2008),Documentary +70659,"Great Happiness Space, The: Tale of an Osaka Love Thief (2006)",Documentary +70661,Tyler Perry's Meet the Browns (2008),Comedy|Drama|Romance +70663,"I Love You, Beth Cooper (2009)",Comedy|Romance +70670,Second Wind (Le deuxième souffle) (Second Breath) (1966),Crime|Drama|Film-Noir +70678,Huhwihaji Anha (No Regret) (2006),Drama +70682,Detroit Metal City (Detoroito Metaru Shiti) (2008),Comedy|Drama|Musical +70684,Daughter of the Nile (1987),Drama +70687,Paper Heart (2009),Comedy|Documentary|Drama|Romance +70689,Mystery Street (1950),Crime|Drama|Film-Noir +70695,"Haunting of Molly Hartley, The (2008)",Drama|Horror|Thriller +70697,G-Force (2009),Action|Adventure|Children|Fantasy +70703,Christopher Columbus: The Discovery (1992),Adventure +70706,Fighting (2009),Action|Drama +70708,Tetro (2009),Drama|Mystery +70712,Abandon Ship! (Seven Waves Away) (1957),Adventure|Drama +70722,"Good Men, Good Women (1995)",Drama|Romance +70724,Side Street (1949),Crime|Drama|Film-Noir +70726,Adoration (2008),Drama +70728,Bronson (2009),Action|Comedy|Drama|Thriller +70730,Feel the Noise (2007),Drama +70740,I Really Hate My Job (2007),Comedy|Drama +70742,"Matador, The (2008)",Documentary +70751,Little Richard (2000),Drama +70762,"Curiosity of Chance, The (2006)",Comedy +70769,If Only (2004),Drama|Fantasy|Romance|Thriller +70789,"Susana (Devil and the Flesh, The) (1951)",Drama|Romance +70792,Vengeance Valley (1951),Western +70795,Great Guy (1936),Crime|Drama|Mystery +70797,"Hurricane Express, The (1932)",Adventure|Crime|Drama +70800,Paris (2007),Documentary +70802,"Secret of Moonacre, The (2008)",Adventure|Fantasy|Romance +70804,Olympia Part One: Festival of the Nations (Olympia 1. Teil - Fest der Völker) (1938),Documentary +70806,Olympia Part Two: Festival of Beauty (Olympia 2. Teil - Fest der Schönheit) (1938),Documentary +70817,Shadow Warriors 2 (Assault on Devil's Island) (1997),Action|Adventure|Thriller +70819,The Shadow of the Eagle (1932),Crime|Drama|Mystery|Thriller +70821,Cinematographer Style (2006),Documentary +70824,"Cell 2, The (2009)",Horror|Sci-Fi|Thriller +70826,Summer School (2006),Horror +70828,Space Odyssey: Voyage to the Planets (2004),Documentary|Drama|Sci-Fi +70831,Krakatoa: The Last Days (2006),Documentary|Drama +70833,Queen Kelly (1929),Drama +70839,Midnight Bayou (2009),Drama|Mystery|Romance +70843,Northern Lights (2009),Drama|Mystery|Romance +70846,Lorna's Silence (Le silence de Lorna) (2008),Drama +70849,"Doulos, Le (1962)",Crime|Thriller +70862,It Might Get Loud (2008),Documentary +70864,Botched (2007),Comedy|Crime|Horror|Thriller +70867,Lonely Street (2009),Comedy|Mystery +70869,High Noon (2009),Drama|Mystery|Romance +70871,"Day in the Country, A (Partie de campagne) (1936)",Drama|Romance +70877,Moonfleet (1955),Adventure|Drama +70880,7 Women (a.k.a. Seven Women) (1966),Drama +70887,Vacancy 2: The First Cut (2009),Horror|Thriller +70889,"Pom Pom Girls, The (1976)",Comedy +70891,Tribute (2009),Drama|Mystery|Romance +70898,Post Grad (2009),Comedy +70912,Goodbye Solo (2008),Drama +70914,Long John Silver (1954),Action|Adventure +70920,Questo piccolo grande amore (2009),Comedy|Romance +70924,Voices (1979),Drama|Romance +70927,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama +70932,My Life in Ruins (2009),Comedy +70946,Troll 2 (1990),Fantasy|Horror +70948,London (1994),Documentary +70958,Paris 36 (Faubourg 36) (2008),Drama|Musical|Romance +70961,Murder Ahoy (1964),Comedy|Crime|Drama|Mystery +70964,Witch Hunt (2008),Documentary +70968,"Dog Year, A (2009)",Comedy|Drama +70970,Good (2008),Drama|War +70976,"Romance of Astrea and Celadon, The (Les amours d'Astrée et de Céladon) (2007)",Drama|Romance +70978,Boyfriends and Girlfriends (a.k.a. My Girlfriend's Boyfriend) (L'ami de mon amie) (1987),Comedy +70984,Taking Woodstock (2009),Comedy +70988,Norma Jean & Marilyn (1996),Drama +70990,If These Walls Could Talk (1996),Drama +70992,Cargo 200 (Gruz 200) (2007),Drama +70994,Halloween II (2009),Horror|Thriller +71007,Meteor (2009),Action|Drama|Sci-Fi +71011,Five Graves to Cairo (1943),Thriller|War +71014,"Dark Corner, The (1946)",Crime|Drama|Film-Noir +71017,Full Body Massage (1995),Drama +71027,"Good Marriage, A (Beau mariage, Le) (1982)",Comedy|Drama|Romance +71029,Videocracy (Videocracy - Basta apparire) (2009),Documentary +71033,"Secret in Their Eyes, The (El secreto de sus ojos) (2009)",Crime|Drama|Mystery|Romance|Thriller +71047,"Day After Trinity, The (1981)",Documentary +71057,9 (2009),Adventure|Animation|Sci-Fi +71065,Cosmonaut (Cosmonauta) (2009),Comedy +71067,Carry on Screaming! (1966),Comedy|Horror +71069,Green Street Hooligans 2 (2009),Action|Crime|Drama +71094,Randy and the Mob (2007),Comedy|Crime +71096,Detective (Détective) (1985),Crime|Drama +71102,"Three Musketeers, The (1933)",Action|Adventure|Thriller +71104,Seven Sinners (1940),Comedy|Drama|Romance +71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi +71108,"White Ribbon, The (Das weiße Band) (2009)",Drama|Mystery +71110,Kahlekuningas (2002),Comedy|Drama +71112,Mentiras y gordas (2009),Comedy|Drama|Romance +71114,Brain Drain (2009),Comedy|Romance +71116,Living with Michael Jackson (2003),Documentary +71129,Green Lantern: First Flight (2009),Action|Adventure|Animation|Fantasy|Sci-Fi +71131,"Most Hated Family in America, The (2007)",Documentary +71133,Lies and Illusions (2009),Action|Comedy|Thriller +71135,Pandorum (2009),Horror|Sci-Fi|Thriller +71139,Paraíso Travel (2008),Adventure|Drama|Romance +71141,Airbag (1997),Action|Comedy|Crime|Thriller +71143,Peter Ibbetson (1935),Drama|Fantasy|Romance +71147,Death of a Cyclist (Muerte de un ciclista) (1955),Drama +71152,Skellig (2009),Drama|Fantasy|Mystery +71154,Flood (2007),Action|Drama|Thriller +71156,"Men Who Stare at Goats, The (2009)",Action|Comedy|Drama +71158,Immigrants (L.A. Dolce Vita) (2008),Animation +71160,"Hunt For Gollum, The (2009)",Action|Adventure|Fantasy +71164,Welcome Mr. Marshall (Bienvenido Mister Marshall) (1953),Comedy +71168,Beast from Haunted Cave (1959),Crime|Horror|Romance +71170,All's Well (1972),Drama +71178,Street of Shame (Akasen chitai) (1956),Drama +71180,Padre padrone (1977),Drama +71182,"Travelling Players, The (O thiasos) (1975)",Drama|War +71184,Valentino: The Last Emperor (2008),Documentary +71187,"Pilgrim, The (1923)",Comedy +71189,"Million, Le (Million, The) (1931)",Comedy|Musical +71199,Memories of Underdevelopment (Memorias del subdesarrollo) (1968),Drama +71201,Return Of The Ghostbusters (2007),Comedy +71203,Laid To Rest (2009),Horror +71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller +71211,"Informant!, The (2009)",Comedy|Crime|Drama|Thriller +71216,"Great Gabbo, The (1929)",Drama|Musical|Romance +71237,Hillsborough (1996),Drama +71239,"Brøken, The (a.k.a. Broken, The) (2008)",Drama|Horror|Thriller +71241,"Tall Men, The (1955)",Action|Adventure|Drama|Romance|Western +71243,Tension (1949),Crime|Drama|Film-Noir|Romance +71246,Amreeka (2009),Drama +71248,Extract (2009),Comedy +71252,"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)",Horror|Thriller +71254,Gamer (2009),Action|Sci-Fi|Thriller +71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX +71266,Radio Inside (1994),Drama|Romance +71268,Tyler Perry's I Can Do Bad All by Myself (2009),Comedy|Drama +71276,"Silver Stallion (Silver Brumpy, The) (1993)",Drama +71278,Mr. Robinson Crusoe (1932),Adventure|Comedy +71280,"Wreck of the Mary Deare, The (1959)",Drama|Thriller +71282,"Food, Inc. (2008)",Documentary +71285,Beeswax (2009),Comedy|Drama +71300,"Conspiracy of Torture, The (Beatrice Cenci) (1969)",Drama +71302,Attack of the 50 Foot Woman (1958),Comedy|Sci-Fi +71304,Thirst (Bakjwi) (2009),Drama|Horror +71318,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi +71322,Forbidden Fruit (Kielletty hedelmä) (2009),Drama +71325,Love Happens (2009),Comedy|Drama|Romance +71327,Bright Star (2009),Drama|Romance +71341,Blood Creek (a.k.a. Town Creek) (2009),Horror +71343,Split Second (1953),Film-Noir|Thriller +71348,A Good Man (2009),Crime|Drama +71350,Scandal Sheet (1952),Crime|Drama|Film-Noir|Romance|Thriller +71357,Turn Left at the End of the World (Sof Ha'Olam Smola) (2005),Drama|Romance +71361,I Want You (1998),Crime|Drama|Romance +71363,"Confiance règne, La (2004)",Comedy +71372,Hellraiser: Deader (2005),Horror +71374,Hellraiser: Hellworld (2005),Horror +71376,Chronicle of an Escape (Crónica de una fuga) (2006),Thriller +71379,Paranormal Activity (2009),Horror|Thriller +71382,Lake City (2008),Drama +71384,"Eagle Has Two Heads, The (L'aigle à deux têtes) (1948)",Drama +71386,"Forever, Darling (1956)",Comedy|Fantasy +71390,"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)",Documentary +71402,3 Ring Circus (1954),Comedy +71404,"3 Worlds of Gulliver, The (1960)",Adventure|Fantasy +71409,"Execution of P, The (Kinatay) (2009)",Crime|Thriller +71413,Angel (1937),Comedy|Drama|Romance +71416,Hellzapoppin' (1941),Comedy|Musical +71418,Ballast (2008),Drama +71426,5 Dolls for an August Moon (5 bambole per la luna d'agosto) (1970),Horror|Mystery|Thriller +71429,World's Greatest Dad (2009),Comedy|Drama +71433,"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)",Adventure|Crime|Drama|Western +71438,Still Walking (Aruitemo aruitemo) (2008),Drama +71442,"Plaisir, Le (1952)",Comedy|Drama +71444,Thirst (Pyaasa) (1957),Drama|Musical|Romance +71446,"Muriel, or The Time of Return (Muriel ou Le temps d'un retour) (1963)",Drama +71448,Xala (1975),Comedy +71450,Capitalism: A Love Story (2009),Documentary +71453,"Blood of the Beasts (Sang des bêtes, Le) (1949)",Documentary|Drama +71458,The Five Man Army (1969),Western +71460,Wanted (2009),Action|Romance +71462,"Cove, The (2009)",Documentary +71464,"Serious Man, A (2009)",Comedy|Drama +71466,City Island (2009),Comedy|Drama +71468,Ink (2009),Action|Fantasy|Sci-Fi +71472,"Cameraman's Revenge, The (Mest kinematograficheskogo operatora) (1912)",Animation|Comedy +71474,Down to the Cellar (Do pivnice) (1983),Adventure|Fantasy|Thriller +71482,Yatterman (Yattâman) (2009),Action|Comedy|Fantasy +71484,Metropia (2009),Animation|Sci-Fi +71486,Clubbed (2008),Action|Crime|Drama +71488,"Pit, the Pendulum and Hope, The (Kyvadlo, jáma a nadeje) (1983)",Horror|Thriller +71490,Grace (2009),Drama|Horror|Thriller +71494,"Haunted World of El Superbeasto, The (2009)",Action|Animation|Comedy|Horror|Thriller +71497,Story of a Prostitute (Shunpu den) (1965),Drama|War +71500,Trick 'r Treat (2007),Comedy|Horror|Thriller +71503,"Hills Run Red, The (2009)",Horror +71518,Whip It (2009),Comedy|Drama +71520,"Invention of Lying, The (2009)",Comedy +71522,Unmistaken Child (2008),Documentary +71525,A-Haunting We Will Go (1942),Comedy +71530,Surrogates (2009),Action|Sci-Fi|Thriller +71533,Next Day Air (2009),Action|Comedy|Crime +71535,Zombieland (2009),Action|Comedy|Horror +71537,Fame (2009),Comedy|Drama|Musical|Romance +71542,"September Issue, The (2009)",Documentary +71545,Paris Trout (1991),Drama +71550,Assassination of a High School President (2008),Comedy|Drama|Mystery +71556,How to Be a Serial Killer (2008),Comedy|Crime|Horror +71558,Abbott and Costello in Hollywood (1945),Comedy +71560,Abbott and Costello in the Foreign Legion (1950),Adventure|Comedy +71571,Sorority Row (2009),Horror|Thriller +71573,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller +71575,Rudo y Cursi (Rough and Vulgar) (2008),Comedy|Drama +71579,"Education, An (2009)",Drama|Romance +71582,David and Lisa (1998),Drama +71591,Abbott and Costello Meet Captain Kidd (1952),Adventure|Comedy|Musical +71606,"Life is a Bed of Roses (Vie est un roman, La) (1983)",Fantasy|Musical +71619,Coco Before Chanel (Coco avant Chanel) (2009),Drama +71634,"Story of Louis Pasteur, The (1935)",Drama +71638,"Killing of John Lennon, The (2006)",Drama +71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary +71650,Werner Herzog Eats His Shoe (1980),Documentary +71653,Capone (1975),Crime|Drama +71664,Abbott and Costello Meet the Keystone Kops (1955),Comedy +71668,Couples Retreat (2009),Comedy|Romance +71670,All About Steve (2009),Comedy +71675,Hiroshima (2009),Comedy +71677,Gigante (2009),Comedy|Drama +71685,"End of St. Petersburg, The (Konets Sankt-Peterburga) (1927)",Drama +71688,Jab We Met (2007),Comedy|Drama|Romance +71691,Fifty Dead Men Walking (2008),Action|Drama|Thriller +71693,Bay of Angels (La baie des anges) (1963),Drama|Romance +71695,"Docks of New York, The (1928)",Crime|Drama +71697,Our Daily Bread (1934),Drama|Romance +71700,Deadgirl (2008),Horror +71702,All About Lola (Ce que je sais de Lola) (Lo que sé de Lola) (2006),Romance +71705,"Merry Jail, The (Das fidele Gefängnis) (1917)",Comedy|Romance +71707,Love Hina Spring Special (2001),Animation|Comedy|Musical|Romance +71709,Yellow Earth (Huang tu di) (1984),Drama +71717,Cleopatra (1934),Drama|Romance|War +71719,"Divorce of Lady X, The (1938)",Comedy|Romance +71726,Bye-Bye Bin Laden (2009),Animation|Comedy +71728,Gayniggers From Outer Space (1992),Comedy|Sci-Fi +71730,"Windmill Movie, The (2008)",Documentary +71732,I Sell the Dead (2008),Comedy|Horror +71736,Van Gogh (1991),Drama +71738,"Shanghai Gesture, The (1941)",Drama|Film-Noir +71740,"Tales of Hoffmann, The (1951)",Adventure|Fantasy|Musical|Romance +71743,"Wedding March, The (1928)",Drama|Romance +71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX +71748,Georg (2007),Drama|Musical +71750,Chelsea Girls (1966),Drama +71755,Earth Entranced (Terra em Transe) (1967),Drama +71758,"Cloud-Capped Star, The (Meghe Dhaka Tara) (1960)",Drama +71760,India Song (1975),Drama|Fantasy|Romance +71762,Que Viva Mexico (¡Que Viva Mexico! - Da zdravstvuyet Meksika!) (1979),Documentary +71765,Get Thrashed: The Story of Thrash Metal (2006),Documentary +71779,Aces High (1976),Action|Drama|War +71792,Shoulder Arms (1918),Comedy|War +71795,The Paris Express (1952),Crime|Drama +71804,Reckless (1984),Comedy|Drama|Romance +71806,Lost Angels (1989),Drama +71808,Black Eagle (1988),Action|Drama +71810,Legionnaire (1998),Action|Adventure|Drama|War +71817,Beer Wars (2009),Documentary +71821,Shorts (2009),Children +71823,"New York, I Love You (2009)",Drama|Romance +71838,Law Abiding Citizen (2009),Drama|Thriller +71840,"Flame and the Arrow, The (1950)",Action|Adventure|Romance +71851,"I, Monster (1971)",Horror|Sci-Fi +71865,Rich in Love (1993),Drama +71867,"Misfortunates, The (De helaasheid der dingen) (2009)",Drama +71873,"Moon Warriors, The (Zhan shen chuan shuo) (1993)",Action|Adventure +71876,Amelia (2009),Drama +71878,"Stepfather, The (2009)",Horror|Thriller +71888,See You in the Morning (1989),Drama|Romance +71899,Mary and Max (2009),Animation|Comedy|Drama +71902,Spread (2009),Drama|Romance +71910,"Tournament, The (2009)",Action +71926,"Boys Are Back, The (2009)",Comedy|Drama +71928,Cairo Time (2009),Drama|Romance +71931,5th Day of Peace (Dio è con noi) (1969),Drama|War +71933,"7th Dawn, The (1964)",Adventure|Drama|War +71936,There's Always Tomorrow (1956),Drama +71938,"Round-Up, The (Szegénylegények) (1966)",Drama|War +71940,"Taking of Power by Louis XIV, The (Prise de pouvoir par Louis XIV, La) (1966)",Drama +71942,"Sound Barrier, The (1952)",Drama +71966,Spring in a Small Town (Xiao cheng zhi chun) (1948),Drama|Romance +71970,"Princess and the Pirate, The (1944)",Adventure|Comedy|Romance +71973,Outsiders (Ceddo) (1977),Drama +71976,"Tiger of Eschnapur, The (Tiger von Eschnapur, Der) (1959)",Adventure|Romance +71978,Mother (Mat) (1926),Drama +71980,Under the Roofs of Paris (Sous les toits de Paris) (1930),Comedy|Drama|Romance +71986,"Hour of the Furnaces, The (Hora de los hornos, La) (1968)",Documentary|War +71989,Before the Revolution (Prima della rivoluzione) (1964),Drama|Romance +71991,Afterschool (2008),Drama +71993,Dragonquest (2009),Fantasy +71995,"Dark Lurking, The (2008)",Action|Horror|Sci-Fi +71999,Aelita: The Queen of Mars (Aelita) (1924),Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller +72001,"Extraordinary Adventures of Mr. West in the Land of the Bolsheviks, The (Neobychainye priklyucheniya mistera Vesta v strane bolshevikov) (1924)",Comedy +72011,Up in the Air (2009),Drama|Romance +72013,David Copperfield (2000),Drama +72016,EXPO: Magic of the White City (2005),Documentary +72018,H.H. Holmes: America's First Serial Killer (2004),Crime|Documentary +72022,"Cuenca Crime, The (Crimen de Cuenca, El) (1980)",Drama +72027,Korczak (1990),Drama|War +72030,You're Gonna Miss Me (2005),Documentary +72032,Forever (2006),Documentary +72035,Dimensions of Dialogue (Moznosti dialogu) (1982),Animation|Comedy|Fantasy +72037,Darkness/Light/Darkness (Tma/Svetlo/Tma) (1989),Animation|Comedy|Fantasy +72039,35 Shots of Rum (35 rhums) (2008),Drama +72041,Tormented (2009),Comedy|Horror +72043,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi +72045,"Ali Zoua: Prince of the Streets (Ali Zaoua, prince de la rue) (2000)",Crime|Drama +72090,"13th Letter, The (1951)",Film-Noir +72092,23 Paces to Baker Street (1956),Mystery|Thriller +72094,"Maradona, the Hand of God (Maradona, la mano di Dio) (2007)",Drama +72096,"Collector, The (Komornik) (2005)",Drama +72100,"Jungle Book of Regulations, A (Nie Ma Rozy Bez Ognia) (1974)",Comedy +72102,Ryan (2004),Animation|Documentary|Drama|Fantasy +72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller +72109,Vampire Girl vs. Frankenstein Girl (Kyûketsu Shôjo tai Shôjo Furanken) (2009),Action|Comedy|Horror|Romance +72113,Is Anybody There? (2008),Drama +72117,"Misérables, Les (1935)",Drama|Romance +72124,Vital Signs (1990),Drama +72129,Saw VI (2009),Crime|Horror|Mystery|Thriller +72131,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX +72142,Love Exposure (Ai No Mukidashi) (2008),Action|Comedy|Drama|Romance +72153,"Dangerous Woman, A (1993)",Drama|Romance +72156,Twilight of the Ice Nymphs (1997),Fantasy +72159,"Grave Decisions (Wer früher stirbt, ist länger tot) (2006)",Comedy|Drama +72161,99 River Street (1953),Action|Crime|Drama|Film-Noir +72163,40 Guns to Apache Pass (1967),Adventure|Romance|Western +72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller +72167,"Boondock Saints II: All Saints Day, The (2009)",Action|Crime|Drama|Thriller +72169,Good Hair (2009),Comedy|Documentary +72171,Black Dynamite (2009),Action|Comedy +72176,Big Fan (2009),Comedy|Crime|Drama +72178,Welcome to Dongmakgol (2005),Comedy|Drama|War +72204,Salvage (2006),Horror|Mystery|Thriller +72209,Astro Boy (2009),Action|Animation|Children|Sci-Fi +72212,100 Men and a Girl (One Hundred Men and a Girl) (1937),Comedy +72216,Fun is Beautiful (1980),Comedy +72224,Gentlemen Broncos (2009),Comedy +72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime +72228,Creation (2009),Drama +72235,Between the Devil and the Deep Blue Sea (1995),Drama +72249,Coco Chanel & Igor Stravinsky (2009),Drama|Romance +72258,Top Dog (1995),Action|Comedy|Crime|Thriller +72261,"Pebble and the Penguin, The (1995)",Animation|Musical +72263,MVP: Most Valuable Primate (2000),Comedy +72265,Not Easily Broken (2009),Drama|Romance +72267,Price of Glory (2000),Drama +72273,Plácido (1961),Comedy +72276,"Indian Tomb, The (Das indische Grabmal) (1959)",Adventure +72281,"Amour fou, L' (1969)",Drama +72283,Storm Over Asia (Potomok Chingis-Khana) (1928),Drama|War +72287,"Bridge, The (Most) (2003)",Drama +72290,Arsenal (1928),Drama|War +72292,Barren Lives (Vidas Secas) (1963),Drama +72294,"Christmas Carol, A (2009)",Animation|Children|Drama|Fantasy|IMAX +72298,"Lusty Men, The (1952)",Action|Drama|Western +72300,"Hart of London, The (1970)",Drama +72302,Outskirts (Okraina) (1933),Drama|War +72304,Fires Were Started (1943),Documentary|Drama +72308,Battlestar Galactica: The Plan (2009),Action|Adventure|Drama|Sci-Fi +72310,"Chronicle of Anna Magdalena Bach, The (Chronik der Anna Magdalena Bach) (1968)",Drama +72315,Hell's Hinges (1916),Romance|Western +72321,Michael Jackson: Life of a Superstar (2009),Documentary +72325,Paper Flowers (Kaagaz Ke Phool) (1959),Musical|Romance +72327,Murder by Contract (1958),Crime|Drama|Film-Noir|Thriller +72330,"Private Lives of Pippa Lee, The (2009)",Drama +72332,"Introduction to Physics, An (2009)",Adventure|Comedy|Documentary|Fantasy +72334,Our Daily Bread (2005),Documentary +72336,"Doctor Takes a Wife, The (1940)",Comedy +72340,"Night to Remember, A (1942)",Comedy|Mystery +72342,Last Stop for Paul (2006),Comedy +72344,"Toll of the Sea, The (1922)",Drama|Romance +72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy +72360,Rocks (Das Rad) (2003),Action|Animation|Fantasy +72363,"Chechahcos, The (1924)",Adventure|Drama +72367,Grey Gardens (2009),Drama +72369,Goemon (2009),Action|Drama +72378,2012 (2009),Action|Drama|Sci-Fi|Thriller +72380,"Box, The (2009)",Drama|Horror|Mystery|Sci-Fi|Thriller +72386,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller +72388,Sunday (1997),Drama|Romance +72393,"Fourth Kind, The (2009)",Horror|Mystery|Sci-Fi|Thriller +72395,Precious (2009),Drama +72400,Undercover Man (1949),Crime|Drama|Film-Noir|Romance +72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama +72407,"Twilight Saga: New Moon, The (2009)",Drama|Fantasy|Horror|Romance|Thriller +72424,Derailed (2002),Action|Thriller +72479,"Messenger, The (2009)",Drama|Romance|War +72483,Keith (2008),Drama|Romance +72485,Lemon Tree (2008),Drama +72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller +72491,"Police, Adjective (Politist, adj.) (2009)",Comedy|Crime|Drama +72505,Wake of Death (2004),Action|Adventure +72507,Second in Command (2006),Action|Thriller +72512,Efectos secundarios (2006),Comedy +72516,"Plumm Summer, A (2007)",Adventure +72524,Wattstax (1973),Documentary|Musical +72537,"Hard Corps, The (2006)",Action|Thriller +72552,Oxford Blues (1984),Comedy|Drama +72554,Cell 211 (Celda 211) (2009),Action|Drama +72557,"Film with Me in It, A (2008)",Comedy|Thriller +72559,"Last Remake of Beau Geste, The (1977)",Adventure|Comedy +72571,Doomwatch (1972),Mystery|Sci-Fi|Thriller +72574,Until Death (2007),Action|Drama|Thriller +72583,Brightness (Yeelen) (1987),Fantasy +72585,Carnival in Flanders (La kermesse héroïque) (1935),Comedy|Romance +72587,Pure One (Pakeezah) (1972),Drama|Musical|Romance +72589,Princess Yang Kwei Fei (Yôkihi) (1955),Drama|Romance +72591,"Patriot, The (1998)",Action|Thriller +72593,Ticker (2001),Action|Crime|Thriller +72601,Teenage Mutant Ninja Turtles: Turtles Forever (2009),Action|Adventure|Animation|Comedy|Thriller +72603,Merry Madagascar (2009),Animation +72605,Brothers (2009),Drama|Thriller|War +72607,Portraits of Women (Naisenkuvia) (1970),Comedy|Drama +72609,Nine Ways to Approach Helsinki (Yhdeksän tapaa lähestyä Helsinkiä) (1982),Documentary +72612,"Fly, The (Légy, A) (1980)",Animation|Comedy +72618,Summer of the Monkeys (1998),Children|Drama +72621,"Man with No Shadow, The (Homme sans ombre, L') (2004)",Animation|Drama +72624,Garage (2007),Drama +72626,"Billy Blazes, Esq. (1919)",Comedy|Western +72628,Home Movie (2008),Horror|Thriller +72630,Sleep Dealer (2008),Sci-Fi +72632,Before I Self Destruct (2009),Drama +72634,Hoop Realities (2007),Documentary +72637,Printed Rainbow (2006),Adventure|Animation|Fantasy +72641,"Blind Side, The (2009)",Drama +72643,Happiness (Schastye) (1934),Comedy|Drama +72645,"Tale of the Wind, A (Histoire de vent, Une) (1988)",Documentary +72647,Zorn's Lemma (1970),Drama +72649,"Ceremony, The (Gishiki) (1971)",Comedy|Drama +72651,"Italian Straw Hat, The (Un chapeau de paille d'Italie) (1928)",Comedy +72653,"Tom, Tom, the Piper's Son (1969)",Drama +72657,Hitler: A Film from Germany (Hitler - ein Film aus Deutschland) (1977),Drama|War +72668,Torrente 2: Misión Marbella (2001),Action|Comedy|Crime +72670,Asylum (2008),Horror|Thriller +72672,Crows Zero II (Kurôzu Zero II) (2009),Action +72674,True Heart Susie (1919),Drama|Romance +72678,"Région centrale, La (1971)",Drama +72681,Anatahan (1953),Drama|War +72683,Limit (Limite) (1931),Drama +72692,Mickey's Once Upon a Christmas (1999),Animation|Comedy|Fantasy +72694,Shrink (2009),Drama +72696,Old Dogs (2009),Comedy +72698,Out of Reach (2004),Action|Drama|Romance|Thriller +72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi +72703,Me and Orson Welles (2008),Drama +72712,Objectified (2009),Documentary +72714,Earthlings (2006),Documentary +72718,Trucker (2008),Drama +72720,"Single Man, A (2009)",Drama +72722,Kill Switch (2008),Action|Crime|Drama|Thriller +72724,Driven to Kill (2009),Action|Crime|Thriller +72726,Morphia (Morfiy) (2008),Drama +72731,"Lovely Bones, The (2009)",Crime|Drama|Fantasy|Horror|Thriller +72733,Invictus (2009),Drama +72735,Carla's Song (1996),Drama|Romance|War +72737,"Princess and the Frog, The (2009)",Animation|Children|Fantasy|Musical|Romance +72741,Everybody's Fine (2009),Drama +72751,Two Rode Together (1961),Western +72762,Armored (2009),Action|Drama|Thriller +72764,Transylmania (2009),Comedy|Horror +72777,Invaders from Mars (1986),Horror|Sci-Fi +72781,Red Chapel (Røde kapel) (2006),Comedy|Documentary +72784,Link (1986),Horror|Thriller +72787,Doghouse (2009),Comedy|Horror +72815,Recipes for Disaster (2008),Documentary +72822,Munyurangabo (2007),Drama +72833,"Art of Travel, The (2008)",Adventure|Drama|Romance +72840,Cover-Up (1991),Action|Thriller +72842,Pentathlon (1994),Action|Drama|Thriller +72844,People on Sunday (Menschen am Sonntag) (1930),Documentary|Drama|Romance +72846,Days and Nights in the Forest (Aranyer Din Ratri) (1970),Drama +72848,"Sign of Leo, The (Signe du lion, Le) (1959)",Drama +72850,My Friend Ivan Lapshin (Moy drug Ivan Lapshin) (1984),Drama +72852,Judex (1963),Action|Crime|Drama +72854,"Saga of Gosta Berling, The (Gösta Berlings saga) (1924)",Drama|Romance +72856,Moonrise (1948),Drama|Film-Noir +72866,Sandra of a Thousand Delights (Vaghe stelle dell'Orsa...) (1965),Drama +72870,"Taira Clan Saga, The (Shin heike monogatari) (1955)",Drama +72872,"Hidden Assassin (Shooter, The) (1995)",Action|Crime|Drama +72874,"Peacekeeper, The (1997)",Action +72876,Comradeship (Kameradschaft) (1931),Drama +72878,Utamaro and His Five Women (Utamaro o meguru gonin no onna) (1946),Drama +72880,Flaming Creatures (1963),Drama +72883,Yesterday Girl (Abschied von gestern - Anita G.) (1966),Comedy|Romance +72885,"Childhood of Maxim Gorky, The (Detstvo Gorkogo) (1938)",Drama +72897,White Shadows in the South Seas (1928),Drama|Romance +72899,Blissfully Yours (Sud sanaeha) (2002),Drama|Romance +72904,Colossal Youth (Juventude Em Marcha) (2006),Drama +72906,Not Reconciled (Nicht versöhnt oder Es hilft nur Gewalt wo Gewalt herrscht) (1965),Drama +72908,Devil in the Flesh (1947),Drama|Romance +72910,King of the Children (Hai zi wang) (1987),Drama +72913,Disco and Atomic War (Disko ja tuumasõda) (2009),Documentary +72915,Duo (Pas de deux) (1968),Animation|Musical +72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance +72921,Snow White (1916),Fantasy|Romance +72923,Shaolin Kung Fu Mystagogue (Da mo mi zong) (1976),Action|Drama +72925,Dinosaurs: A Fun Filled Trip Back in Time (1987),Animation|Children +72927,Donkey Xote (2007),Animation +72929,"Art of Dying, The (El Arte de Morir) (2000)",Horror|Mystery|Thriller +72931,Tango (1981),Animation +72934,My Sister Eileen (1942),Comedy +72936,She Wouldn't Say Yes (1945),Comedy|Romance +72947,Make the Yuletide Gay (2009),Comedy|Romance +72949,Faith Like Potatoes (2006),Drama +72953,Less of Sugar (Cheeni Kum) (2007),Comedy|Drama|Musical|Romance +72956,How 2 Build a Rapper (2008),Comedy +72958,Mum & Dad (2008),Horror +72960,Nasty Old People (2009),Drama +72980,Veronika Decides to Die (2009),Drama|Romance +72982,Alice (2009),Action|Adventure|Fantasy +72995,"Offence, The (1972)",Crime|Drama|Mystery +72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX +73000,Nine (2009),Drama|Musical|Romance +73002,Hard Luck (2006),Crime|Drama|Thriller +73008,"Officer's Ward (chambre des officiers, La) (2001)",Drama|Romance|War +73010,You Are So Beautiful (Je vous trouve très beau) (2005),Comedy|Romance +73015,It's Complicated (2009),Comedy|Romance +73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller +73023,Crazy Heart (2009),Drama|Romance +73025,"Art of War II: Betrayal, The (2008)",Action|Thriller +73027,"Last Station, The (2009)",Drama +73031,Too Shy to Try (Je suis timide... mais je me soigne) (1978),Comedy +73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical +73049,Uncertainty (2009),Action|Crime|Drama|Fantasy|Romance +73051,Guru (2007),Drama|Romance +73056,After Death (Posle smerti) (1915),Drama +73060,Film Geek (2005),Comedy +73064,In a Year with 13 Moons (In einem Jahr mit 13 Monden) (1978),Drama +73086,"Fallen Sparrow, The (1943)",Film-Noir|Thriller +73089,Beyond a Reasonable Doubt (2009),Drama|Mystery +73099,"Profit, The (2001)",Drama +73101,Looking for Eric (2009),Comedy|Drama|Fantasy +73106,American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009),Comedy +73109,Trapeze (1956),Drama +73111,There Was a Crooked Man... (1970),Comedy|Western +73114,"Pursuit of the Graf Spee (Battle of the River Plate, The) (1956)",Action|Adventure|Drama|War +73117,Marriage Italian Style (Matrimonio all'italiana) (1964),Comedy|Drama|Romance +73121,"Minion, The (1998)",Action|Fantasy|Horror +73123,Sweepers (1998),Action|Adventure|Drama +73125,Lady Windermere's Fan (1925),Comedy|Drama +73133,Not Your Typical Bigfoot Movie (2008),Documentary +73135,"Good Life, The (2007)",Comedy|Drama +73137,Variety (Varieté) (1925),Crime|Drama|Romance +73139,Out 1: Spectre (1974),Comedy|Drama|Thriller +73141,Moana (1926),Documentary +73143,"Diary for Timothy, A (1945)",Documentary +73145,Under the Bridges (Unter den Brücken) (1945),Comedy|Drama|Romance +73148,Bridge of Dragons (1999),Action|Romance|Sci-Fi|Thriller +73150,Storm Catcher (1999),Action|Thriller +73152,By the Bluest of Seas (U samogo sinego morya) (1936),Drama +73154,"H.M. Pulham, Esq. (1941)",Drama|Romance +73158,Clash of the Wolves (1925),Adventure|Romance|Western +73160,Sorority Babes in the Slimeball Bowl-O-Rama (1988),Comedy|Horror +73162,Jill the Ripper (Jill Rips) (2000),Drama|Thriller +73165,Pronto (1997),Comedy|Crime|Thriller +73168,Carriers (2009),Drama|Horror|Thriller +73170,Aaja Nachle (2007),Comedy|Musical|Romance +73183,"Friends of Eddie Coyle, The (1973)",Crime|Drama|Thriller +73185,Rocker (1972),Action|Crime|Drama +73188,Mayerling (1936),Drama +73194,"Whole Night, A (Toute une nuit) (1982)",Drama +73196,My Love Has Been Burning (Waga koi wa moenu) (1949),Drama +73198,"Song of Ceylon, The (1934)",Documentary +73200,Maskerade (1934),Comedy|Romance +73202,"Too Early, Too Late (Trop tôt, trop tard) (1982)",Drama +73204,On His Own (a.k.a. My Apprenticeship) (V lyudyakh) (1939),Drama +73208,Piter FM (2006),Comedy|Drama|Romance +73211,Pontypool (2008),Horror|Thriller +73224,Playmobil: The Secret of Pirate Island (2009),Animation|Children +73226,Big Pun: The Legacy (2008),Documentary +73228,Agent Red (2000),Action +73230,"Last Warrior, The (Last Patrol, The) (2000)",Action|Drama +73232,"Girl in the Park, The (2007)",Drama +73234,Command Performance (2009),Action|Drama|Thriller +73236,Direct Contact (2009),Action +73240,"Matriarch, The (Lieksa!) (2007)",Comedy|Drama|Romance +73245,Land of the Pharaohs (1955),Drama +73256,Heart of Midnight (1988),Drama|Horror|Thriller +73261,"Sun Also Rises, The (1957)",Drama +73266,Youth in Revolt (2009),Comedy|Drama|Romance +73268,Daybreakers (2010),Action|Drama|Horror|Thriller +73270,"Milk of Sorrow, The (Teta asustada, La) (2009)",Drama +73276,"Age of Stupid, The (2009)",Documentary +73284,Missionary Man (2007),Action|Drama|Thriller|Western +73286,Diamond Dogs (2007),Action|Adventure +73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama +73304,Twogether (1994),Comedy|Drama +73306,Enid Is Sleeping (1990),Comedy +73314,10 MPH (2007),Documentary +73317,"Prophet, the Gold and the Transylvanians, The (Profetul, aurul si Ardelenii) (1979)",Comedy|Western +73319,Leap Year (2010),Comedy|Romance +73321,"Book of Eli, The (2010)",Action|Adventure|Drama +73323,"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)",Action|Crime|Mystery +73328,Tickets (2005),Comedy|Drama +73330,Hickey and Boggs (1972),Crime|Drama|Film-Noir|Thriller +73334,Mister Johnson (1990),Drama +73339,"Innocent, The (Innocente, L') (1976)",Drama|Romance +73344,"Prophet, A (Un Prophète) (2009)",Crime|Drama +73355,"Man, Woman and Beast (L'uomo la donna e la bestia) (1977)",Drama|Fantasy +73359,"Guide for the Married Man, A (1967)",Comedy +73365,Dead Time: Kala (2007),Crime|Fantasy|Film-Noir|Thriller +73370,"Thorn Birds, The (1983)",Drama|Romance +73384,"Phantom Lover, The (Ye ban ge sheng) (1995)",Drama|Mystery|Romance +73386,Staten Island (2009),Crime|Drama +73390,Princess (2006),Action|Animation|Drama +73392,Collapse (2009),Documentary +73399,Last Resort (2000),Drama|Romance +73401,"Yacoubian Building, The (Omaret yakobean) (2006)",Drama +73411,MGS: Philanthropy (2009),Action|Adventure|Sci-Fi|War +73413,My One and Only (2009),Comedy|Drama +73416,"Birdsong (Cant dels ocells, El) (2008)",Drama +73431,"Maiden Heist, The (2009)",Comedy|Crime +73442,Hidden Agenda (2001),Action|Mystery|Thriller +73444,Detention (2003),Action|Drama|Thriller +73447,I Live My Life (1935),Comedy|Romance +73449,"V.I.P.s, The (1963)",Drama +73453,One Shot (2004),Documentary +73457,Flavor of Green Tea Over Rice (Ochazuke no aji) (1952),Drama +73460,Louie Bluie (1985),Documentary +73462,Ernest Goes to School (1994),Children|Comedy|Drama +73464,Direct Action (2004),Action|Crime|Thriller +73466,"Defender, The (2004)",Action +73469,Mr. Warmth: The Don Rickles Project (2007),Documentary +73472,Shooting War (2000),Documentary +73475,Semper Fi (2001),Action|Drama +73478,Puppet Master: The Legacy (Puppet Master 8) (2004),Horror +73480,Gretchen the Greenhorn (1916),Crime|Drama|Romance +73488,Blood: The Last Vampire (2009),Action|Horror|Thriller +73492,Liverpool (2008),Drama +73494,Theodora Goes Wild (1936),Comedy|Romance +73499,MacGyver: Lost Treasure of Atlantis (1994),Action|Adventure +73501,Pekka ja Pätkä Suezilla (1958),Comedy +73504,"Duchess of Langeais, The (a.k.a. Don't Touch the Axe) (Ne touchez pas la hache) (2007)",Drama|Romance +73511,Horsemen (2009),Crime|Drama|Horror|Mystery|Thriller +73513,"Swades: We, the People (Our Country) (2004)",Drama +73515,Bart Got a Room (2008),Comedy|Romance +73523,Jerichow (2008),Drama +73526,"Matter of Dignity, A (To teleftaio psema) (1957)",Drama +73529,God’s Wedding (As Bodas de Deus) (1999),Comedy +73531,"Last of England, The (1988)",Drama +73533,Harmful Insect (Gaichu) (2001),Drama +73569,Project A 2 ('A' gai wak juk jap) (1987),Action|Comedy|Crime +73572,"My Son, My Son, What Have Ye Done (2009)",Drama|Horror +73581,Fire-Eater (Tulennielijä) (1998),Drama +73587,Soul Kitchen (2009),Comedy +73590,Quiet Chaos (Caos calmo) (2008),Drama|Romance +73608,Heat (1972),Comedy|Drama|Romance +73614,"Devil, Probably, The (Diable probablement, Le) (1977)",Crime|Drama +73617,Altiplano (2009),Drama +73630,One Way Passage (1932),Drama|Romance +73639,"Actress, the Dollars and the Transylvanians, The (Artista, dolarii si Ardelenii) (1979)",Western +73641,"House on Sorority Row, The (1983)",Horror|Mystery|Thriller +73664,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children +73668,"27 Club, The (2008)",Drama +73676,Robin-B-Hood (Bo bui gai wak) (2006),Action|Comedy|Drama +73678,Year of the Comet (1992),Action|Adventure|Comedy|Romance +73681,"Concert, Le (2009)",Comedy|Drama +73708,Macheads (2009),Documentary +73710,Welcome to Macintosh (2008),Documentary +73713,"Butterfly, The (Papillon, Le) (2002)",Comedy|Drama +73718,"Other Man, The (2008)",Drama +73730,Wrong Turn at Tahoe (2009),Action|Crime|Thriller +73741,Ninja (2009),Action|Crime|Drama|Thriller +73744,If You Love (Jos rakastat) (2010),Drama|Musical|Romance +73754,"Queen and I, The (Drottningen och jag) (2008)",Documentary +73759,Hellsing Ultimate OVA Series (2006),Action|Animation|Horror +73772,"Long Day Closes, The (1992)",Drama +73774,The Baker's Wife (1938),Comedy|Drama +73776,Fighter (2007),Action|Drama|Romance +73778,"Story of a Cheat, The (Roman d'un tricheur, Le) (1936)",Comedy +73780,"Golden Thread, The (Subarnarekha) (1965)",Drama +73782,Love Story (1943),Drama +73790,Kid Galahad (1937),Crime|Drama|Romance +73804,Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008),Adventure|Children|Comedy|Fantasy +73808,"Chaser, The (Chugyeogja) (2008)",Crime|Drama|Thriller +73813,Flock of Dodos: The Evolution-Intelligent Design Circus (2006),Documentary +73818,My Sex Life... or How I Got Into an Argument (Comment je me suis disputé... (ma vie sexuelle)) (1996),Comedy|Drama|Romance +73820,Hannah Takes the Stairs (2007),Drama +73822,Meantime (1984),Comedy|Drama +73824,Abigail's Party (1977),Drama +73826,Violence at Noon (Hakuchu no torima) (1966),Drama +73829,Mega Shark vs. Giant Octopus (2009),Action|Horror +73831,Mall Girls (Galerianki) (2009),Drama +73834,Pokrajina St.2 (2008),Thriller +73851,Dr. Otto and the Riddle of the Gloom Beam (1986),Comedy +73854,"Rudolph, the Red-Nosed Reindeer (1964)",Adventure|Animation|Children|Fantasy|Musical +73858,"Dennis the Menace Christmas, A (2007)",Comedy +73860,Nowhere Boy (2009),Drama +73862,Note by Note: The Making of Steinway L1037 (2007),Documentary +73868,Garbage Warrior (2007),Documentary +73870,"Thaw, The (2009)",Horror|Sci-Fi|Thriller +73872,"Living Room of the Nation, The (Kansakunnan olohuone) (2009)",Documentary +73874,Blood and Bone (2009),Action|Drama +73876,Undisputed II: Last Man Standing (2006),Action|Crime|Drama +73879,Motocrossed (2001),Action|Children|Comedy|Romance +73881,3 Idiots (2009),Comedy|Drama|Romance +73883,Svampe (1990),Adventure|Children +73885,Troubled Water (DeUsynlige) (2008),Drama|Thriller +73900,Hum Tum (2004),Comedy|Drama|Musical|Romance +73912,Genevieve (1953),Comedy +73914,Sometimes a Great Notion (1970),Action|Adventure|Drama +73919,The Escape (1978),Comedy +73922,Running Mates (1992),Comedy|Romance +73929,Legion (2010),Action|Fantasy|Horror|Thriller +73954,Air Force (1943),Action|Drama|War +73967,Coquette (1929),Drama +73978,Unconquered (1947),Adventure|Drama|Romance|Western +73981,Man Hunt (1941),Crime|Drama|Thriller +73983,"Maid, The (Nana, La) (2009)",Drama +73987,"Oil, the Baby and the Transylvanians, The (Pruncul, petrolul si Ardelenii) (1981)",Comedy|Western +73989,Defenseless (1991),Thriller +73991,Pyrates (1991),Comedy|Romance +74014,Silent Wedding (Nunta Muta) (2008),Comedy|Drama +74017,"Fine Mess, A (1986)",Comedy +74056,Thomas Pynchon: A Journey into the Mind of P. (2001),Documentary +74061,Rahtree: Flower of the Night (Buppha Rahtree) (2003),Comedy|Drama|Horror|Thriller +74064,Beautiful (2009),Drama|Thriller +74075,Stan Helsing (2009),Comedy|Horror +74086,Forgiven (2007),Drama +74089,Peter Pan (1960),Children|Fantasy|Musical +74095,Wicked City (Yôjû toshi) (1987),Animation|Fantasy|Horror|Sci-Fi +74097,Cabiria (1914),Adventure|Drama|War +74099,Virginia City (1940),Action|Drama|Romance|Western +74103,Female Yakuza Tale: Inquisition and Torture (Yasagure anego den: sôkatsu rinchi) (1973),Action|Crime|Drama|Thriller +74107,Together Again (1944),Comedy +74109,If You Could Only Cook (1935),Comedy|Romance +74111,Arn: The Kingdom at Road's End (Arn: Riket vid vägens slut) (2008),Action|Adventure|Drama|Romance|War +74113,Japan's Longest Day (Nihon no ichiban nagai hi) (1967),Drama|War +74115,Dante's Inferno Animated (2010),Action|Animation|Fantasy +74127,Shriek of the Mutilated (1974),Horror +74129,Four Eyed Monsters (2005),Comedy|Drama|Fantasy|Romance +74131,Extraordinary Measures (2010),Drama +74135,Backwood Philosopher (Havukka-ahon ajattelija) (2009),Comedy|Drama +74137,Too Many Husbands (1940),Comedy|Romance +74139,"Red Baron, The (Der rote Baron) (2008)",Action|Drama|Romance|War +74141,"Holy Innocents, The (Santos inocentes, Los) (1984)",Drama +74144,Crime and Punishment (1935),Drama +74148,More Than a Game (2008),Documentary +74150,Falling Up (2009),Comedy|Drama|Romance +74152,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary +74154,When in Rome (2010),Comedy|Romance +74156,Edge of Darkness (2010),Drama|Thriller +74159,Ethan Mao (2004),Drama|Thriller +74161,Charlie Chan in Shanghai (1935),Comedy|Crime|Mystery|Thriller +74164,"Hands of Orlac, The (Orlacs Hände) (1924)",Crime|Horror +74204,Mad Detective (Sun taam) (2007),Action|Crime|Thriller +74226,"Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)",Documentary|Drama +74228,Triangle (2009),Drama|Horror|Mystery|Thriller +74230,"Perfect Circle, The (Savrseni krug) (1997)",Drama|War +74255,Rampage (1987),Thriller +74257,"Ambulance, The (1990)",Thriller +74261,Cimarron (1960),Drama|Western +74263,Dangerous (1935),Drama +74266,I Never Sang for My Father (1970),Drama +74271,Space Pirate Captain Harlock: Arcadia of My Youth (Waga seishun no Arcadia) (1982),Action|Adventure|Animation|Drama|Sci-Fi +74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance +74282,Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987),Children|Drama|Romance +74284,Nobody (2009),Comedy +74287,"Donner Party, The (2009)",Drama|Western +74297,Electric Shadows (Meng ying tong nian) (2004),Drama +74300,Mistress (1992),Comedy +74302,Extreme Justice (1993),Action|Thriller +74306,"Sun, The (Solntse) (2005)",Drama +74310,Vivacious Lady (1938),Comedy|Romance +74317,Escape from Suburbia: Beyond the American Dream (2007),Documentary +74319,Dead Ahead: The Exxon Valdez Disaster (1992),Drama +74324,Temple Grandin (2010),Drama +74327,"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)",Comedy|Drama +74332,Me and Him (Ich und Er) (1988),Comedy +74337,Desirée (1954),Drama|Romance +74339,Thank God It's Friday (1978),Comedy|Musical +74342,"Captain Newman, M.D. (1963)",Comedy|Drama|War +74355,Serious Moonlight (2009),Comedy|Crime|Drama|Romance +74370,"House of the Devil, The (2009)",Horror|Thriller +74382,Black Legion (1937),Crime|Drama +74404,"Hero: Love Story of a Spy, The (2003)",Action|Adventure|Drama|Musical|Romance|Thriller|War +74406,Lucky: No Time For Love (2005),Action|Adventure|Drama|Musical|Romance|Thriller|War +74416,Fish Tank (2009),Drama +74426,Mohabbatein (2000),Drama|Musical|Romance +74428,Absurdistan (2008),Comedy|Romance +74431,Takva: A Man's Fear of God (2006),Drama +74434,"Wounds, The (Rane) (1998)",Comedy|Crime|Drama|War +74436,Body Bags (1993),Comedy|Horror|Sci-Fi|Thriller +74438,"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)",Action|Adventure|Comedy|Drama|Romance +74446,"Hound of the Baskervilles, The (2000)",Crime|Mystery +74448,"Royal Scandal, The (2001)",Crime|Mystery +74450,Valentine's Day (2010),Comedy|Romance +74452,"Wolfman, The (2010)",Horror|Thriller +74456,Babysitter Wanted (2008),Horror|Thriller +74458,Shutter Island (2010),Drama|Mystery|Thriller +74471,"Sign of Four, The (2001)",Crime|Mystery +74473,"Case of the Whitechapel Vampire, The (2002)",Crime|Mystery +74475,"Headless Woman, The (Mujer sin cabeza, La) (2008)",Drama|Mystery|Thriller +74478,Yellow (1998),Comedy|Drama +74480,"Other End of the Line, The (2008)",Comedy|Romance +74484,Bitch Slap (2009),Action|Comedy|Crime|Thriller +74486,$9.99 (2008),Animation +74488,Ondine (2009),Drama|Fantasy|Romance +74491,1066 (2009),Action|Adventure|War +74493,"Steam Experiment, The (2009)",Drama|Thriller +74504,Letters to Father Jacob (Postia pappi Jaakobille) (2009),Drama +74506,"Bakery Girl of Monceau, The (La boulangère de Monceau) (1963)",Romance +74508,Persuasion (2007),Drama|Romance +74510,"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)",Action|Crime|Drama|Mystery|Thriller +74512,Steal This Film (2006),Documentary +74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy +74532,Cop Out (2010),Action|Comedy|Crime +74538,Mademoiselle (1966),Drama +74541,Trailer Park Boys: Countdown to Liquor Day (2009),Comedy|Crime +74545,"Ghost Writer, The (2010)",Drama|Mystery|Thriller +74547,Darling Lili (1970),Drama|War +74553,"Secret of Kells, The (2009)",Animation|Fantasy +74573,"Vicious Kind, The (2009)",Comedy|Drama +74575,"Secret of Santa Vittoria, The (1969)",Comedy|Drama|War +74580,"Spy Next Door, The (2010)",Action|Children|Comedy +74582,I Hope They Serve Beer in Hell (2009),Comedy +74588,Caged (1950),Crime|Drama +74590,"House on 92nd Street, The (1945)",Drama|Film-Noir +74595,Blood Done Sign My Name (2010),Drama +74613,"Therese Raquin (a.k.a. Adultress, The) (1953)",Crime|Drama|Romance +74619,Mysterious Island (2005),Action|Adventure|Fantasy|Sci-Fi +74621,Dare (2009),Drama +74624,Agora (2009),Adventure|Drama|Romance +74630,Tom Thumb (1958),Children|Fantasy|Musical +74641,Singh Is Kinng (2008),Action|Comedy|Crime|Romance +74647,Motherhood (2009),Comedy +74649,Shades of Ray (2008),Comedy|Drama|Romance +74653,Shinjuku Incident (San suk si gin) (2009),Crime|Drama|Thriller +74657,High Life (2009),Comedy|Crime +74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi +74671,Rockaway (2007),Action|Crime|Drama +74673,Fast Lane (2009),Action|Drama +74675,Pudana Last of the Line (Sukunsa viimeinen) (2010),Drama +74677,"Yes Men Fix the World, The (2009)",Documentary +74679,In the Shadow of Doubt (Epäilyksen varjossa) (2010),Documentary +74681,Pekka ja Pätkä puistotäteinä (1955),Comedy +74683,Mike Bassett: England Manager (2001),Comedy +74685,"Crazies, The (2010)",Action|Drama|Horror|Sci-Fi|Thriller +74688,Dear John (2010),Drama|Romance|War +74696,Last Train Home (2009),Documentary|Drama +74698,Tooth Fairy (2010),Comedy|Fantasy +74701,Of Time and the City (2008),Documentary +74706,"Commune, La (Paris, 1871) (2000)",Drama|War +74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery +74731,Eden Log (2007),Horror|Mystery|Sci-Fi|Thriller +74733,"Trap, The (Klopka) (2007)",Crime|Drama|Thriller +74738,Isolation (2005),Horror|Thriller +74740,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller +74748,Under the Bombs (2007),Drama|War +74750,[REC]² (2009),Horror|Thriller +74752,Cabin Fever 2: Spring Fever (2009),Horror|Thriller +74754,"Room, The (2003)",Comedy|Drama|Romance +74760,Killer Bean 2: The Party (2000),Action|Animation|Comedy +74777,"Scarlet Dove, The (Tulipunainen kyyhkynen) (1961)",Drama|Mystery|Thriller +74780,Asfalttilampaat (1968),Drama +74782,On the Threshold (Lars i porten) (1984),Children|Drama +74787,My Name is Khan (2010),Drama|Romance +74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX +74791,"Town Called Panic, A (Panique au village) (2009)",Animation +74795,Green Zone (2010),Action|Drama|Thriller|War +74799,"Call of the Wild, The (1935)",Action|Adventure|Drama|Romance|Western +74818,44 Inch Chest (2009),Crime|Drama +74820,"Fall of the Roman Empire, The (1964)",Drama +74827,Ajami (2009),Crime|Drama +74851,From Paris with Love (2010),Action|Crime +74857,Strategic Air Command (1955),Action|Drama +74859,The Boy Friend (1971),Comedy|Musical|Romance +74864,Road Trip: Beer Pong (2009),Comedy +74868,Dorian Gray (2009),Drama|Horror|Sci-Fi +74870,That Sinking Feeling (1980),Comedy +74886,Taras Bulba (1962),Action|Adventure|Drama|Romance|War +74916,Greenberg (2010),Comedy|Drama +74937,Two-Minute Warning (1976),Drama|Thriller +74944,Brooklyn's Finest (2010),Crime|Drama|Thriller +74946,She's Out of My League (2010),Comedy +74948,Harry Brown (2009),Crime|Drama|Thriller +74965,"Dead Outside, The (2008)",Horror|Mystery|Thriller +74967,"Mysteries of Pittsburgh, The (2008)",Adventure|Comedy|Drama +75335,Never Forever (2007),Drama|Romance +75341,Remember Me (2010),Drama|Romance +75345,Failan (2001),Drama|Romance +75349,Teenage Caveman (2002),Horror|Sci-Fi|Thriller +75351,"Night Stalker, The (1972)",Horror|Thriller +75362,Skeleton Crew (2009),Horror +75367,"Cool World, The (1964)",Crime|Drama +75370,Posse (1993),Western +75374,Joy Ride 2: Dead Ahead (2008),Action|Horror|Thriller +75386,Vinyan (2008),Drama|Horror|Thriller +75389,"Burrowers, The (2008)",Horror|Thriller|Western +75392,MR 73 (a.k.a. The Last Deadly Mission) (2008),Crime|Drama|Thriller +75395,Frozen (2010),Drama|Horror|Thriller +75397,Torrid Zone (1940),Action|Adventure|Comedy +75402,Rosvo Roope (1949),Drama|Romance +75404,ZMD: Zombies of Mass Destruction (2009),Comedy|Horror +75406,"Carter, The (2009)",Documentary +75408,Lupin III: Sweet Lost Night (Rupan Sansei: Sweet Lost Night) (2008),Action|Animation|Comedy|Crime|Drama|Mystery|Romance|Thriller +75414,Blade of the Ripper (1971),Drama|Horror|Mystery|Romance|Thriller +75416,Generation X (1996),Action|Adventure|Sci-Fi +75421,Girl of Finland (Lapualaismorsian) (1967),Drama +75423,"Devil's Eye, The (Djävulens öga) (1960)",Comedy|Drama|Fantasy +75425,Survival of the Dead (2009),Horror +75428,"Way You Wanted Me, The (Sellaisena kuin sinä minut halusit) (1944)",Drama|Romance +75434,"Wrestler, The (Painija) (1985)",Comedy|Drama|Fantasy +75436,"Skin, Skin (Käpy selän alla) (1966)",Drama +75438,Nine Dead (2010),Crime|Mystery|Thriller +75440,Will Ferrell: You're Welcome America - A Final Night with George W Bush (2009),Comedy +75443,Invisible Stripes (1939),Crime|Drama +75446,Little Ashes (2008),Drama +75803,Our Family Wedding (2010),Comedy +75805,"Bounty Hunter, The (2010)",Action|Comedy|Romance +75808,Dead Man Running (2009),Action|Crime|Drama|Thriller +75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller +75816,Women in Trouble (2009),Comedy +75818,Afghan Star (2009),Documentary +75820,I Was A Communist for the FBI (1951),Drama|Film-Noir|Thriller +75823,Combat Shock (1986),Drama|Horror|War +75825,"Card Player, The (Il cartaio) (2004)",Crime|Horror|Mystery|Thriller +75831,"Hollywood Revue of 1929, The (1929)",Musical +75927,Haunted Echoes (2008),Thriller +75929,Possession (2009),Drama|Horror|Mystery|Romance|Thriller +75938,Deadly Prey (1987),Action|Adventure|War +75940,"Seventh Veil, The (1945)",Drama +75947,Mondo Cane (1962),Documentary +75950,"Egyptian, The (1954)",Drama +75962,"Egg and I, The (1947)",Comedy|Romance +75977,Brass Monkey (1948),Comedy|Crime|Drama|Mystery +75979,"Frightened City, The (1961)",Crime|Drama|Film-Noir +75981,"Who Are you Polly Maggoo (Qui êtes-vous, Polly Maggoo?) (1966)",Comedy +75983,North Face (Nordwand) (2008),Adventure|Drama +75985,Repo Men (2010),Action|Sci-Fi|Thriller +75990,"Apprenticeship of Duddy Kravitz, The (1974)",Comedy|Drama +75992,"Brothers Karamazov, The (1958)",Drama +75994,"Buccaneer, The (1958)",Adventure|Drama|Romance|War +76022,Restless Blood (Levoton veri) (1946),Drama|Romance|Thriller +76030,Case 39 (2009),Horror|Thriller +76032,After Last Season (2009),Drama|Thriller +76034,"Cross: The Arthur Blessitt Story, The (2009)",Documentary +76049,Guest of Cindy Sherman (2008),Documentary +76051,Delhi-6 (2009),Comedy|Crime|Drama +76054,Oceans (Océans) (2009),Documentary|Drama +76056,New York (2009),Crime|Drama|Thriller +76060,"Slammin' Salmon, The (2009)",Comedy +76063,Your Vice is a Locked Room and Only I Have the Key (1972),Horror|Mystery|Thriller +76066,Cookers (2001),Drama|Horror|Thriller +76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi +76079,Chloe (2009),Drama|Thriller +76082,Blackwoods (2002),Drama|Thriller +76085,Trash (1970),Drama +76087,Zift (2008),Crime|Drama|Mystery +76089,Flesh and the Devil (1926),Drama|Romance +76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller +76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX +76108,Tom and Jerry: The Movie (1992),Animation|Children|Comedy +76111,About Elly (Darbareye Elly) (2009),Drama|Mystery +76117,"King and the Clown, The (Wang-ui namja) (2005)",Drama|Thriller +76119,Extreme Movie (2008),Comedy +76121,Dark Mirror (2007),Thriller +76127,"You're a Good Man, Charlie Brown (1985)",Animation|Comedy|Musical +76130,Universal Soldier: Regeneration (2009),Action|Drama|Sci-Fi|Thriller +76132,B.N.B. (Bunty Aur Babli) (2005),Adventure|Comedy|Crime +76134,"Sherlock Holmes in Pearl of Death (Pearl of Death, The) (1944)",Crime|Horror|Mystery|Thriller +76137,Lumiere and Company (Lumière et compagnie) (1995),Documentary +76143,"Bone Man, The (Der Knochenmann) (2009)",Crime|Thriller +76145,Scar (2007),Crime|Horror|Thriller +76147,I Hate Valentine's Day (2009),Comedy|Romance +76149,Ollin oppivuodet (1920),Drama +76151,Zizek! (2005),Documentary +76153,Lupin III: First Contact (Rupan Sansei: Faasuto Kontakuto) (2002),Action|Animation|Comedy|Crime|Drama|Mystery|Romance|Thriller +76156,Yuki & Nina (2009),Drama +76158,Air Doll (Kûki ningyô) (2009),Drama +76163,Main Street (Calle Mayor) (1956),Drama +76169,"Come Sweet Death (Komm, süsser Tod) (2000)",Comedy|Mystery|Thriller +76171,India (Indien) (1993),Comedy|Drama +76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime +76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy +76182,Rockabilly Vampire (1996),Comedy|Horror +76185,Miss Météo (2005),Comedy|Drama +76187,White Mane (Crin blanc: Le cheval sauvage) (1953),Drama +76189,Growth (2009),Sci-Fi|Thriller +76208,"Cremator, The (Spalovac mrtvol) (1969)",Comedy|Drama|Horror|Thriller +76210,Defendor (2009),Comedy|Crime|Drama +76217,Bass Ackwards (2010),Drama +76238,One 2 Ka 4 (2001),Action|Comedy|Drama +76241,Shakthi: The Power (2002),Action|Drama +76244,Glorious 39 (2009),Drama|Romance|Thriller|War +76251,Kick-Ass (2010),Action|Comedy +76255,Varg Veum - Bitter Flowers (Varg Veum - Bitre Blomster) (2007),Crime|Drama|Thriller +76258,Varg Veum - Fallen Angels (Varg Veum - Falne Engler) (2008),Crime|Drama|Thriller +76269,Chalte Chalte (2003),Drama +76272,Five Minutes of Heaven (2009),Crime|Drama|Thriller +76277,"Hanging Tree, The (1959)",Drama|Romance|Western +76279,Cain and Mabel (1936),Comedy|Musical|Romance +76288,Swastika (1973),Documentary +76291,Karan Arjun (1995),Drama +76293,Date Night (2010),Action|Comedy|Romance +76298,The Pit and the Pendulum (1991),Horror +76301,"Emperor's New Groove 2: Kronk's New Groove, The (2005)",Animation|Children|Comedy +76303,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror +76312,"Brink's Job, The (1978)",Comedy|Crime|Drama +76317,After.Life (2009),Drama|Horror|Thriller +76533,Dear Me (2008),Comedy|Romance +76680,Camille (2007),Comedy|Drama|Romance +76692,"Virgin Queen, The (1955)",Drama|Romance +76695,"Sheepman, The (1958)",Comedy|Western +76699,Sex Positive (2008),Documentary +76701,Love's Long Journey (2005),Drama|Romance|Western +76709,Spider-Man: The Ultimate Villain Showdown (2002),Animation +76711,Terry Fator: Live from Las Vegas (2009),Comedy +76714,Five Star Final (1931),Drama +76716,Downloading Nancy (2008),Drama|Thriller +76718,Onechanbara - Zombie Bikini Squad (a.k.a. Oneechanbara: The Movie) (2008),Action|Horror +76720,Movie Crazy (1932),Comedy|Romance +76722,"Oklahoma Kid, The (1939)",Western +76729,Don McKay (2009),Drama|Mystery|Thriller +76731,Taqwacore: The Birth of Punk Islam (2009),Documentary +76736,Grim Reaper (2007),Horror +76738,Steam of Life (Miesten vuoro) (2010),Documentary +76743,Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003),Action|Adventure|Comedy +76747,Angel (2007),Drama|Romance +76751,American Drug War: The Last White Hope (2007),Crime|Documentary +76753,"Final, The (2010)",Drama|Horror|Thriller +76755,Peacock (2010),Thriller +76758,Tillie's Punctured Romance (1914),Comedy +76763,"Runaways, The (2010)",Drama|Musical +76770,Steal This Film II (2007),Documentary +76772,Carne (1991),Drama|Thriller +76776,Pigsty (Porcile) (1969),Drama|Mystery +76778,Rembrandt's J'accuse (2008),Documentary|Mystery +76808,"Way I Spent the End of the World, The (Cum mi-am petrecut sfarsitul lumii) (2006)",Drama +76811,It! The Terror from Beyond Space (1958),Horror|Sci-Fi|Thriller +76814,Deep in the Woods (Promenons-nous dans les bois) (2000),Horror|Thriller +76816,Daisy (2006),Drama|Romance +76818,Cape No. 7 (Hái-kak chhit-ho) (2008),Comedy|Drama|Romance +76823,"Men Who Tread on the Tiger's Tail, The (Tora no o wo fumu otokotachi) (1945)",Adventure|Drama|Thriller +76827,Trench Road (Juoksuhaudantie) (2004),Comedy|Drama +76829,Oh Happy Day (2007),Comedy|Romance +76832,"Black Waters of Echo's Pond, The (2009)",Fantasy|Horror|Thriller +76836,"Most Beautiful, The (Ichiban utsukushiku) (1944)",Drama +76860,Razorback (1984),Horror|Thriller +76862,"Education of Charlie Banks, The (2007)",Drama +76864,Cooking with Stella (2009),Drama +76866,Until the Light Takes Us (2008),Documentary +76873,Angel of Death (2009),Action|Crime|Thriller +77141,"Farewell to Arms, A (1957)",Drama|Romance|War +77143,Caesar and Cleopatra (1945),Comedy|Drama|War +77146,Reclaim Your Brain (Free Rainer) (2007),Comedy|Crime|Drama|Romance +77149,When Dinosaurs Ruled the Earth (1970),Adventure|Fantasy|Romance|Sci-Fi +77154,Waking Sleeping Beauty (2009),Animation|Documentary +77156,Affinity (2008),Drama|Romance +77162,"Roman Spring of Mrs. Stone, The (1961)",Drama|Romance +77177,Wild China (2008),Documentary +77179,"Case for Christ, The (2007)",Documentary +77181,"Ascent of Money, The (2008)",Documentary +77184,Hot Millions (1968),Comedy|Crime +77189,Desperate Journey (1942),Drama|War +77191,Death at a Funeral (2010),Comedy +77201,Valhalla Rising (2009),Action|Drama|War +77204,Sahara (1983),Adventure|Drama|Romance +77206,Diary of a Wimpy Kid (2010),Children|Comedy +77208,Skin (2008),Drama|Mystery +77210,Hum Tumhare Hain Sanam (2002),Comedy|Drama|Romance +77212,Out of the Fog (1941),Crime|Drama|Film-Noir +77217,"Tender Trap, The (1955)",Comedy|Musical +77223,"Caddy, The (1953)",Comedy|Musical +77229,Hotel Reserve (1944),Thriller +77231,Hell Is Sold Out (1951),Drama|Romance +77233,"Union: The Business Behind Getting High, The (2007)",Comedy|Documentary +77238,Decision Before Dawn (1951),Drama|War +77240,I Am Love (Io sono l'amore) (2009),Drama|Romance +77259,Circle of Eight (2009),Horror|Mystery +77264,Ballet Shoes (2007),Children|Drama +77266,Disgrace (2008),Drama +77281,For the Love of Movies (2009),Documentary +77291,Aria (1987),Comedy|Drama +77293,"Silent Partner, The (1978)",Crime|Drama|Thriller +77296,Normal Adolescent Behavior (2007),Drama|Romance +77298,Hell (L'enfer) (2005),Drama +77300,Lego: The Adventures of Clutch Powers (2010),Action|Animation +77303,American Virgin (2009),Comedy +77307,Dogtooth (Kynodontas) (2009),Drama +77312,"Genova (Summer in Genoa, A) (2008)",Drama|Romance +77316,City of Life and Death (Nanjing! Nanjing!) (2009),Drama|War +77318,Scarecrows (1988),Horror +77326,"Beast, The (La bête) (1975)",Drama|Fantasy|Horror|Mystery|Romance +77328,Red Riding: 1974 (2009),Crime|Drama|Mystery|Thriller +77330,Red Riding: 1980 (2009),Crime|Drama|Mystery +77332,Don's Plum (2001),Drama +77336,"Cellar, The (Huset vid vägens ände) (2003)",Horror|Thriller +77339,"Dunwich Horror, The (2009)",Horror +77342,"I Are You, You Am Me (Tenkosei) (1982)",Comedy +77344,Chizuko's Younger Sister (Futari) (1991),Drama +77349,As Good as Dead (2010),Thriller +77351,Glory to the Filmmaker! (Kantoku · Banzai!) (2007),Comedy|Drama +77353,Achilles and the Tortoise (Akiresu to kame) (2008),Comedy +77355,"Moment After, The (1999)",Drama|Sci-Fi|Thriller +77357,Bananas!* (2009),Crime|Documentary|Drama +77359,Red Riding: 1983 (2009),Crime|Drama|Mystery +77362,Texas Carnival (1951),Comedy|Musical +77364,"Losers, The (2010)",Action|Adventure|Drama|Mystery|Thriller +77370,Tenure (2009),Comedy +77412,Panda! Go Panda! (Panda kopanda) (1972),Animation|Children +77414,"Last Song, The (2010)",Drama|Romance +77416,Chained Heat (1983),Action|Crime|Drama|Thriller +77421,Cyrus (2010),Comedy|Drama|Romance +77427,"Human Centipede, The (First Sequence) (2009)",Horror +77433,"Ten Commandments, The (1923)",Drama +77435,This Is the Army (1943),Comedy|Musical|War +77444,"Best of Times, The (Mei li shi guang) (2001)",Crime|Drama|Thriller +77449,Ben (1972),Horror|Thriller +77451,Operator 13 (1934),Drama|Romance|War +77455,Exit Through the Gift Shop (2010),Comedy|Documentary +77463,Summer and Smoke (1961),Drama|Romance +77468,Bloody Territories (Kôiki bôryoku: ryuuketsu no shima) (1969),Action|Crime +77470,Stray Cat Rock: Sex Hunter (Nora-neko rokku: Sekkusu hanta) (1970),Crime +77479,Letting Go of God (2008),Comedy|Documentary +77481,King of the Zombies (1941),Comedy|Horror +77491,"Last Voyage, The (1960)",Drama +77493,Night Must Fall (1937),Thriller +77496,Night Train to Munich (1941),Film-Noir|Thriller|War +77509,Pinky (1949),Drama +77517,Tobruk (1967),Drama|War +77538,Stray Cat Rock: Delinquent Girl Boss (Nora-neko rokku: Onna banchô) (1970),Action|Crime +77540,Solomon Kane (2009),Action|Adventure|Fantasy|Horror +77550,Blood and Sand (1941),Drama +77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX +77596,Lebanon (2009),Drama|War +77613,Johnny Angel (1945),Crime|Drama|Film-Noir +77615,"Dark Tower, The (1943)",Drama|Thriller +77629,Reindeerspotting - Pako joulumaasta (2010),Documentary +77658,Cosmos (1980),Documentary +77665,Marmaduke (2010),Comedy +77667,MacGruber (2010),Action|Comedy +77672,Ca$h (2010),Crime|Thriller +77680,"Dalton, Les (2004)",Comedy|Western +77682,Three (a.k.a. 3 Extremes II) (Saam gaang) (2002),Horror|Mystery +77688,Three Men and a Cradle (3 hommes et un couffin) (1985),Comedy +77707,"When I Grow Up, I'll Be a Kangaroo (Kad porastem bicu Kengur) (2004)",Comedy +77709,"Sky Crawlers, The (Sukai kurora) (2008)",Adventure|Animation|Drama +77711,"Bridesmaid, The (Demoiselle d'honneur, La) (2004)",Drama|Romance|Thriller +77715,Games of Love and Chance (L'esquive) (2003),Drama|Romance +77719,Voyager (Homo Faber) (1991),Drama +77721,Deathdream (a.k.a. Dead of Night) (1974),Horror|War +77729,"Man on the Roof, The (Mannen på taket) (1976)",Action|Crime|Drama|Thriller +77731,Vengeance (Fuk sau) (2009),Action|Crime|Thriller +77734,Confessions of a Gangsta (2006),Action +77736,Crazy Stone (Fengkuang de shitou) (2006),Comedy|Crime +77738,Living Death (2006),Drama|Horror|Thriller +77742,3 Sailors and a Girl (Three Sailors and a Girl) (1953),Comedy|Musical +77744,"3rd Voice, The (1960)",Crime|Drama|Thriller +77752,Getting Any? (Minnâ-yatteruka!) (1994),Comedy +77770,Los Bandoleros (2009),Action|Drama +77772,Vampire Apocalypse (2008),Comedy|Horror +77774,Big River Man (2009),Documentary +77776,7 Dollars on the Red (Sette dollari sul rosso) (1966),Western +77778,Aces and Eights (1936),Western +77780,Virtuality (2009),Drama|Sci-Fi|Thriller +77783,Tora-san Our Lovable Tramp (Otoko wa tsurai yo) (1969),Comedy|Drama|Romance +77788,"Good Heart, The (2009)",Drama +77795,Cargo (2009),Sci-Fi +77798,"Nightmare on Elm Street, A (2010)",Fantasy|Horror|Thriller +77800,Four Lions (2010),Comedy|Drama +77802,Cream Lemon (Kurîmu remon) (2004),Comedy|Drama +77808,Bobby Deerfield (1977),Drama|Romance +77810,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama +77816,"Lord, Save Us from Your Followers (2008)",Documentary +77818,Gunless (2010),Action|Comedy|Drama|Western +77820,Furry Vengeance (2010),Children|Comedy +77829,"Shock Doctrine, The (2009)",Documentary +77831,"Fine, Totally Fine (Zenzen Daijobu) (2008)",Comedy +77833,Armadillo (2010),Documentary|Drama +77835,Stage Door Canteen (1943),Comedy|Musical|Romance|War +77837,You Don't Know Jack (2010),Drama +77841,St Trinian's 2: The Legend of Fritton's Gold (2009),Adventure|Comedy +77843,"Disappearance of Alice Creed, The (2009)",Thriller +77846,12 Angry Men (1997),Crime|Drama +77852,Tales of Terror (Kaidan Shin Mimibukuro) (2004),Horror +77854,"Work of Director Michel Gondry, The (2003)",Comedy|Documentary +77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War +77875,L'enfance nue (Naked Childhood) (1968),Drama +77881,Lovers & Leavers (Kuutamolla) (2002),Drama|Romance +77883,Heartbeats (Kohtaamisia) (2009),Comedy|Drama +77891,Little Fugitive (1953),Drama +77893,Merantau (2009),Action|Drama +77896,Gold (1974),Action|Adventure|Drama|Thriller +77899,I'll Cry Tomorrow (1955),Drama +77907,"Red Chapel, The (Røde kapel, Det) (2009)",Comedy|Documentary +77910,American Gothic (1988),Horror +77917,"Inn in Tokyo, An (Tôkyô no yado) (1935)",Drama +77919,"Chalk Garden, The (1964)",Drama +77921,Hollywood Canteen (1944),Comedy|Musical|Romance +77931,Stingray Sam (2009),Comedy|Musical|Sci-Fi|Western +77941,In a Dark Place (2006),Horror|Mystery|Thriller +77944,Art & Copy (2009),Documentary +77947,Harishchandrachi Factory (2009),Comedy|Drama +77951,Bonhoeffer: Agent of Grace (2000),Drama +77966,Love the Beast (2009),Documentary +77968,Must Read After My Death (2007),Documentary +77979,Johnny Mad Dog (2008),Drama|War +77981,Sparrow (a.k.a. Cultured Bird) (Man jeuk) (2008),Drama|Romance +77983,Rancho Notorious (1952),Drama|Western +77985,Father and Son (Otets i syn) (2003),Drama +77990,Scavenger Hunt (1979),Comedy +78000,Deficit (Déficit) (2007),Drama +78003,"Dirty Carnival, A (Biyeolhan geori) (2006)",Action|Crime|Thriller +78006,Phantom (O Fantasma) (2000),Drama +78009,Donkey Skin (Peau d'âne) (1970),Children|Drama|Fantasy|Musical|Romance +78011,Me and Morrison (Minä ja Morrison) (2001),Romance +78014,"Peck on the Cheek, A (Kannathil Muthamittal) (2002)",Drama|War +78016,Times and Winds (Bes vakit) (2006),Drama +78019,Adam Resurrected (2008),Drama|War +78022,Halo Legends (2010),Action|Animation|Sci-Fi +78025,Ritual (Shiki-Jitsu) (2000),Drama +78030,Stoic (2009),Drama +78032,Dread (2009),Horror +78034,Cemetery Junction (2010),Comedy|Drama|Romance +78037,Hell's Highway: The True Story of Highway Safety Films (2003),Documentary +78039,Blue Valentine (2010),Drama|Romance +78041,Killers (2010),Action|Comedy +78043,Tora-san's Rise and Fall (Otoko wa tsurai yo: Torajiro aiaigasa) (1975),Comedy +78045,Tora-san's Love Call (Otoko wa tsurai yo: Torajiro koiuta) (1971),Comedy +78054,Esa ja Vesa - auringonlaskun ratsastajat (1994),Action|Adventure|Comedy|Crime +78057,Adventures of Tarzan (1921),Action|Adventure +78059,"Velvet Vampire, The (1971)",Fantasy|Horror +78062,Puppet Master vs. Demonic Toys (Puppet Master 9) (2004),Comedy|Fantasy|Horror|Sci-Fi|Thriller +78064,Ween Live in Chicago (2004),Documentary +78066,Sada (1998),Drama +78068,Aerial Gunner (1943),Drama|War +78071,Panama Hattie (1942),Comedy|Musical +78073,Lucky Night (1939),Drama|Romance +78081,Delusions of Grandeur (La folie des grandeurs) (1971),Comedy +78084,"Anthropophagus: The Grim Reaper (Antropophagus) (Man Beast) (Savage Island, The) (Zombie's Rage, The) (1980)",Horror +78086,Death and Cremation (2010),Thriller +78088,Buried (2010),Mystery|Thriller +78090,Sleep Furiously (2008),Documentary +78093,Parisian Love (1925),Comedy|Crime|Drama|Romance +78095,Girl with Green Eyes (1964),Drama|Romance +78097,Forbidden Door (Pintu Terlarang) (2009),Drama|Mystery|Thriller +78099,"Ape, The (Apan) (2009)",Drama|Thriller +78101,Life After Tomorrow (2006),Documentary +78103,Shake Hands with the Devil (2007),Drama|War +78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX +78111,Artists and Models (1955),Comedy|Musical +78116,Please Give (2010),Comedy|Drama +78122,Peter & the Wolf (2006),Animation|Musical +78124,Hoffman (1970),Comedy|Drama|Romance +78128,True Legend (Su Qi-Er) (2010),Action|Drama +78130,"Reeds, The (2009)",Action|Horror|Thriller +78132,The Tomb (2009),Horror|Thriller +78140,Supermen of Malegaon (2008),Documentary +78142,Baarìa (2009),Comedy|Drama|War +78145,Reunion (1989),Drama +78157,At Midnight I'll Take Your Soul (À Meia-Noite Levarei Sua Alma) (1964),Horror +78160,Ricky Gervais Live: Animals (2003),Comedy +78162,Ricky Gervais Live 2: Politics (2004),Comedy +78168,"Wedding Weekend, The (Sing Now or Forever Hold Your Peace) (Shut Up and Sing) (2006)",Comedy|Drama +78170,Tokyo Chorus (Tôkyô no kôrasu) (1931),Comedy|Drama +78174,Sex and the City 2 (2010),Comedy|Drama|Romance +78181,Young Winston (1972),Adventure|Drama|War +78184,The Black Rose (1950),Adventure +78186,"Sniper, The (1952)",Crime|Drama|Film-Noir|Thriller +78192,Firaaq (2008),Drama +78196,Chhoti Si Baat (1975),Comedy|Romance +78201,The Past Is a Foreign Land (2008),Drama +78207,Brief Interviews with Hideous Men (2009),Comedy|Drama +78209,Get Him to the Greek (2010),Comedy +78211,Snarveien (Detour) (2009),Horror|Thriller +78218,Unthinkable (2010),Drama|Thriller +78222,"Other Side of Midnight, The (1977)",Drama|Romance|Thriller +78224,Our Dancing Daughters (1928),Drama +78235,Betrayal (1983),Drama|Thriller +78245,Romeo and Juliet (1936),Drama|Romance +78247,"Drawn Together Movie: The Movie!, The (2010)",Animation|Comedy +78249,It's Good to Be Alive (1974),Drama +78251,Friendship! (2010),Comedy +78264,"Back-up Plan, The (2010)",Comedy|Romance +78266,Splice (2009),Horror|Sci-Fi|Thriller +78268,Tales from the Golden Age (Amintiri din epoca de aur) (2009),Comedy +78270,May Fools (Milou en mai) (1990),Comedy|Romance +78272,"Tale of Winter, A (a.k.a. A Winter's Tale) (Conte d'hiver) (1992)",Drama +78276,"Hail Mary ('Je vous salue, Marie') (1985)",Drama +78278,No One Knows About Persian Cats (Kasi az gorbehaye irani khabar nadareh) (2009),Drama +78290,Burnt by the Sun 2 (Utomlyonnye solntsem 2) (2010),Drama +78295,"Knack ...and How to Get It, The (1965)",Comedy +78308,El Greco (2007),Drama +78313,Adulthood (2008),Drama +78316,Letters to Juliet (2010),Drama|Romance +78319,"Descent: Part 2, The (2009)",Adventure|Horror|Thriller +78321,"41-Year-Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It, The (2010)",Comedy +78329,Reconstituirea (Reconstruction) (1968),Comedy|Drama +78332,"Beautiful Person, The (La belle personne) (2008)",Drama|Romance +78335,"Mermaid, The (Rusalka) (2007)",Comedy|Drama|Fantasy +78337,Humble Pie (American Fork) (2007),Comedy|Drama +78340,Gervaise (1956),Drama +78342,Wonderful World (2009),Drama|Romance +78344,"Song of Sparrows, The (Avaze gonjeshk-ha) (2008)",Drama +78349,Exam (2009),Mystery|Thriller +78358,"Go, Go Second Time Virgin (Yuke yuke nidome no shojo) (1969)",Drama +78360,"Corridor, The (Koridorius) (1994)",Drama +78366,No Time for Comedy (1940),Comedy|Drama|Romance +78370,How to Be (2008),Comedy|Drama +78376,"Wheel, The (La Roue) (1923)",Drama +78379,Dialogues with Solzhenitsyn (Uzel) (1999),Documentary +78381,Blood Wedding (Bodas de sangre) (1981),Drama|Musical|Romance +78405,It Happened Tomorrow (1944),Comedy|Fantasy +78408,Salaam-E-Ishq (2007),Comedy|Drama|Musical|Romance +78410,Chance Pe Dance (2010),Comedy|Drama|Romance +78413,Bless the Beasts & Children (1971),Drama +78416,Whoopee! (1930),Comedy|Musical +78418,Dr. Ehrlich's Magic Bullet (1940),Drama +78420,"House on Telegraph Hill, The (1951)",Drama|Film-Noir|Mystery|Thriller +78422,How About You... (2007),Comedy|Drama +78438,Edge of the City (1957),Drama|Film-Noir +78442,No Greater Love (2009),Drama|Romance +78445,"Woman In Berlin, A (Anonyma - Eine Frau in Berlin) (2008)",Drama|War +78459,Talhotblond: (2009),Documentary|Thriller +78461,Godspeed (2009),Drama|Horror|Thriller +78463,Tortilla Flat (1942),Comedy|Drama|Romance +78465,Three Little Words (1950),Comedy|Musical|Romance +78467,Jonah Hex (2010),Action|Drama|Thriller|Western +78469,"A-Team, The (2010)",Action|Comedy|Thriller +78483,Gigot (1962),Comedy +78488,Dhoondte Reh Jaoge (2009),Comedy|Drama +78490,Othello (1965),Drama|Romance +78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78517,Joan Rivers: A Piece of Work (2010),Documentary +78519,No Highway in the Sky (1951),Drama|Thriller +78528,"East Side, West Side (1949)",Crime|Drama|Romance +78534,Adrift (À Deriva) (2009),Drama +78536,In the Beginning (À l'Origine) (2009),Drama +78539,"Halloween Tree, The (1993)",Animation|Children +78544,Ricky Gervais Live 3: Fame (2007),Comedy +78557,Aladin (2009),Comedy|Fantasy|Musical|Romance +78574,Winter's Bone (2010),Drama|Thriller +78579,Tell-Tale (2009),Drama|Horror|Sci-Fi|Thriller +78583,Drama/Mex (2006),Drama +78585,Dream (Bi-mong) (2008),Drama|Fantasy|Mystery|Romance +78606,Don't Look Back (Ne te retourne pas) (2009),Drama|Horror|Mystery|Thriller +78612,Mandingo (1975),Action|Romance +78614,Clouds of May (Mayis sikintisi) (1999),Drama +78618,"Bad Girls (Biches, Les) (1968)",Drama|Mystery +78620,"Scalphunters, The (1968)",Comedy|Western +78622,Nekromantik 2 (1991),Horror +78626,Barking Dogs Never Bite (Flandersui gae) (2000),Comedy|Horror +78629,"Man There Was, A (Terje Vigen) (1917)",Drama +78631,Shark in Venice (2008),Action|Horror|Thriller +78633,Casino Jack and the United States of Money (2010),Documentary +78635,Under the North Star (Täällä Pohjantähden alla) (2009),Drama|Romance|War +78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78640,"Open Road, The (2009)",Comedy|Drama +78642,Magic Man (2009),Crime|Mystery|Thriller +78646,"Sense of History, A (1992)",Comedy|Crime|Drama +78649,"Hot Dog Program, A (1999)",Documentary +78651,"Ashes, The (Popioly) (1965)",Drama|War +78653,Everyone Else (Alle Anderen) (2009),Drama|Romance +78655,Rampage (2009),Action|Crime|Thriller +78658,Coming Down the Mountain (2007),Drama +78666,Princess Raccoon (Operetta tanuki goten) (2005),Comedy|Fantasy|Musical|Romance +78669,Kagerô-za (1981),Fantasy|Romance|Thriller +78673,Children in the Wind (Kaze no naka no kodomo) (1937),Drama +78677,"Near East, The (El Proximo Oriente) (2006)",Comedy|Drama|Romance +78679,"Killer Inside Me, The (2010)",Crime|Drama|Thriller|Western +78681,"Wild Hunt, The (2009)",Drama|Thriller +78684,"Acla, The Descent into Floristella (La discesa di Aclà a Floristella) (1992)",Drama +78690,I Accuse (1919),Drama|Horror|War +78696,"Moment After 2, The: The Awakening (2006)",Drama|Sci-Fi|Thriller +78698,Mercy Streets (2000),Action|Crime|Drama +78701,"Guitar, The (2008)",Drama|Romance +78703,TiMER (2009),Comedy|Drama|Fantasy|Romance +78713,"Trespasser, The (1929)",Drama +78715,"Woman of Affairs, A (1928)",Drama +78717,Chelsea on the Rocks (2008),Documentary +78721,Heart Like a Wheel (1983),Drama +78723,Little Dorrit (1988),Drama|Romance +78727,Saving God (2008),Crime|Drama +78729,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller +78737,Captain from Castile (1947),Adventure|Drama +78739,One of Our Aircraft Is Missing (1942),Action|Drama|War +78742,Diary of a Mad Housewife (1970),Comedy|Drama +78746,Best Worst Movie (2009),Documentary +78748,Beetle Queen Conquers Tokyo (2009),Documentary +78757,"Deal, The (2003)",Drama +78759,"Special Relationship, The (2010)",Drama +78765,Three Comrades (1938),Drama +78772,"Twilight Saga: Eclipse, The (2010)",Fantasy|Romance|Thriller|IMAX +78774,Solitary Man (2009),Comedy|Drama +78776,Hannah Free (2009),Drama +78827,Bluebeard (Barbe Bleue) (2009),Fantasy +78829,"Betrayal, The (Nerakhoon) (2008)",Documentary +78832,Wing and a Prayer (1944),Action|Drama|War +78834,Tomorrow at Dawn (Demain dès l'aube) (2009),Drama +78836,Enter the Void (2009),Drama +78838,"Cry of the Owl, The (2009)",Drama|Thriller +78856,"World According to Monsanto, The (monde selon Monsanto, Le) (2008)",Documentary +78858,Dream Wife (1953),Comedy|Romance +78860,"Slender Thread, The (1965)",Drama +78873,Accident on Hill Road (2010),Crime|Drama|Thriller +78885,Tennessee (2008),Drama +78893,"Last Airbender, The (2010)",Action|Adventure|Fantasy +78895,When Father Was Away on Business (Otac na sluzbenom putu) (1985),Drama +78898,"Big Hand for the Little Lady, A (1966)",Comedy|Drama|Western +78903,State of Siege (État de siège) (1972),Drama|Thriller +78905,Whirlpool (1949),Crime|Drama|Film-Noir|Mystery +78909,Little Lili (La petite Lili) (2003),Drama +78913,Didier (1997),Comedy|Fantasy +78916,Grande école (2004),Drama +78919,Fat People (Gordos) (2009),Comedy +78921,This Happy Breed (1944),Comedy|Drama +78934,Yella (2007),Drama|Romance|Thriller +78941,Destricted (2006),Drama +78944,Culloden (The Battle of Culloden) (1964),Documentary|Drama|War +78946,Distant Thunder (Ashani Sanket) (1973),Drama +78949,Out of Mind: The Stories of H.P. Lovecraft (1998),Fantasy|Horror +78951,Cool Air (2006),Horror +78955,"Rain People, The (1969)",Drama +78957,I Even Met Happy Gypsies (Skupljaci perja) (1967),Drama +78959,Endgame (2009),Drama +78961,Dead Air (2009),Horror|Sci-Fi|Thriller +78965,Puppetry of the Penis: Live at the Forum (Puppetry of the Penis: The Ancient Art of Genital Origami) (2001),Comedy|Documentary +78967,"Island of Dr. Moreau, The (1977)",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller +78974,Malice N Wonderland (2010),Drama|Musical +78976,Stones in Exile (2010),Documentary|Musical +78978,"Cousins, The (Cousins, Les) (1959)",Drama|Romance +78980,Dynamite Girl (Dynamiittityttö) (1944),Comedy|Crime +78982,Gumshoe (1971),Comedy|Crime|Drama|Mystery +78984,Guts (Agallas) (2009),Action|Crime +78986,Salvador (Puig Antich) (2006),Drama +78991,Slam Dunk Ernest (1995),Children|Comedy +78993,Waiting Women (Kvinnors väntan) (1952),Comedy|Drama +79003,Romance on the High Seas (1948),Comedy|Musical|Romance +79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary +79008,South Park: Imaginationland (2008),Animation|Comedy|Fantasy +79010,Marie and Bruce (2004),Comedy|Drama +79022,"Intern, The (2000)",Comedy +79029,Kurt Cobain About a Son (2006),Documentary|Musical +79031,Horror Business (2005),Documentary +79035,Hold Back the Dawn (1941),Drama|Romance +79038,"Gazebo, The (1959)",Comedy|Crime +79043,Inside the Twin Towers (2006),Drama +79045,We Stand Alone Together (2001),Documentary +79057,Predators (2010),Action|Sci-Fi|Thriller +79060,Far North (2007),Drama|Romance|Thriller +79063,"Leslie, My Name is Evil (Manson, My Name is Evil) (2009)",Comedy|Crime|Fantasy +79065,Thank Your Lucky Stars (1943),Comedy|Musical +79067,"Fixer, The (1968)",Drama +79073,When You're Strange (2009),Documentary +79077,"Flight That Fought Back, The (2005)",Drama +79081,Hell and High Water (1954),Adventure|Drama|Thriller +79083,Young Bess (1953),Drama|Romance +79091,Despicable Me (2010),Animation|Children|Comedy|Crime +79094,So Proudly We Hail! (1943),Drama|Romance|War +79104,31 North 62 East (2009),Thriller +79106,Irene in Time (2009),Comedy|Drama|Romance +79109,Captains of the Clouds (1942),Action|Drama|War +79111,"Front Line, The (2006)",Crime|Drama|Thriller|War +79124,The Girl of the Golden West (1938),Musical|Romance|Western +79127,Sweethearts (1938),Musical|Romance +79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX +79134,Grown Ups (2010),Comedy +79136,Thirst (2008),Drama +79139,"Sorcerer's Apprentice, The (2010)",Action|Adventure|Children|Comedy|Fantasy +79158,Tokyo Zombie (Tôkyô zonbi) (2005),Action|Comedy|Horror +79163,Swedish Auto (2006),Drama|Romance +79166,Creepshow 3 (2006),Horror +79185,Knight and Day (2010),Action|Comedy|Romance +79187,"Greatest, The (2009)",Drama|Romance +79191,Roadracers (1994),Drama +79195,Raincoat (2004),Drama|Romance +79197,"Fastest Gun Alive, The (1956)",Western +79203,Nightwatching (2007),Drama|Mystery +79207,Fear City (1984),Crime|Drama|Mystery|Thriller +79213,Sade (2000),Crime|Drama +79220,Without Bias (a.k.a. Len Bias) (2009),Documentary +79222,"Phantom, The (2009)",Action|Adventure|Crime|Fantasy +79224,"Karate Kid, The (2010)",Action|Children|Drama +79226,"Good Guy, The (2009)",Comedy|Romance +79228,Like Minds (2006),Crime|Horror|Mystery|Thriller +79230,"Yellow Handkerchief, The (2008)",Drama|Romance +79232,Comrades (1986),Drama +79234,Snake-Crane Secret (She hao dan xin zhen jiu zhou) (1976),Action|Drama +79236,Yumeji (1991),Drama|Fantasy +79238,Zigeunerweisen (Tsigoineruwaizen) (1980),Horror|Mystery +79242,"Kids Are All Right, The (2010)",Comedy|Drama +79244,Perestroika (2009),Drama +79247,Terror is a Man (1959),Horror|Sci-Fi +79249,"Twilight People, The (1973)",Horror +79251,"Serbian Film, A (Srpski film) (2010)",Horror|Thriller +79254,Home (2008),Drama +79259,Cherrybomb (2009),Drama|Thriller +79274,Batman: Under the Red Hood (2010),Action|Animation +79276,"Pont du Nord, Le (1981)",Comedy|Fantasy|Mystery +79278,My Boy (1921),Comedy|Drama +79281,Windy Day (Tuulinen päivä) (1962),Drama +79283,"Siffleurs, Les (Viheltäjät) (1964)",Drama +79285,Mammy (1930),Comedy|Drama|Musical +79287,"Wizard of Oz, The (1925)",Adventure|Children|Comedy|Fantasy +79293,Salt (2010),Action|Thriller +79299,"No. 1 Ladies' Detective Agency, The (2008)",Comedy|Crime|Mystery +79303,Sinbad (Szindbád) (1971),Drama +79311,"Hamster Factor and Other Tales of Twelve Monkeys, The (1997)",Documentary +79318,Winnebago Man (2009),Comedy|Documentary +79321,Crime of Passion (1958),Crime|Drama|Film-Noir +79327,"Patsy, The (1928)",Comedy|Drama|Romance +79329,Passing Strange (2009),Documentary|Musical +79333,Watch Out for the Automobile (Beregis avtomobilya) (1966),Comedy|Crime|Romance +79335,Peg o' My Heart (1933),Drama|Romance +79337,Downstairs (1932),Drama +79339,Five and Ten (1931),Romance +79344,Dark Island (2010),Action|Sci-Fi|Thriller +79346,Smashing Pumpkins: If All Goes Wrong (2008),Documentary|Musical +79348,Pearl Jam: Immagine in Cornice - Live in Italy 2006 (2007),Documentary|Musical +79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi +79363,Music in the Air (1934),Comedy|Musical|Romance +79368,"Girasoli, I (Sunflower) (1970)",Drama +79388,Play Dirty (1969),Action|Adventure|Drama|War +79395,"Silver Chalice, The (1954)",Drama|Romance +79397,George Washington Slept Here (1942),Comedy +79400,"Last Truck: Closing of a GM Plant, The (2009)",Documentary +79402,Telstar: The Joe Meek Story (2008),Comedy|Drama +79410,In A Day (2006),Romance +79424,"Name for Evil, A (1973)",Horror +79428,Dinner for Schmucks (2010),Comedy +79430,8: The Mormon Proposition (2010),Documentary +79458,"Man Who Left His Will on Film, The (Tôkyô sensô sengo hiwa) (1970)",Drama +79461,Diary of a Shinjuku Thief (Shinjuku dorobo nikki) (1969),Comedy|Drama +79463,Nanny McPhee Returns (a.k.a. Nanny McPhee and the Big Bang) (2010),Children|Comedy|Fantasy +79467,Mid-August Lunch (Pranzo di ferragosto) (2008),Comedy|Drama +79469,"Northerners, The (De noorderlingen) (1992)",Comedy +79471,3 Needles (2005),Drama +79473,"Olivier, Olivier (1992)",Drama +79475,"Power of Kangwon Province, The (Kangwon-do ui him) (1998)",Drama +79477,Taking Off (1971),Comedy|Drama +79494,Safe Sex (1999),Comedy +79496,Restless (Uro) (2006),Action|Crime|Thriller +79498,"Town That Dreaded Sundown, The (1976)",Crime|Drama|Horror|Mystery|Thriller +79501,Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002),Crime|Drama|Thriller +79505,North (Nord) (2009),Comedy|Drama +79507,Amar Akbar Anthony (1977),Action|Comedy|Drama +79515,Farsan (2010),Comedy +79519,Trans-Europ-Express (1966),Thriller +79521,Lies (Gojitmal) (1999),Drama +79523,"Man from London, The (A Londoni férfi) (2007)",Crime|Drama|Mystery +79525,Human Desire (1954),Drama|Film-Noir +79528,Treasure Island (1934),Adventure +79533,"Bugs Bunny / Road Runner Movie, The (a.k.a. The Great American Chase) (1979)",Animation|Children|Comedy +79536,Hellsinki (Rööperi) (2009),Crime +79539,Here and There (Tamo i ovde) (2009),Comedy|Drama +79541,Little Nicholas (Le petit Nicolas) (2009),Comedy|Drama +79543,"Confucian Confusion, A (Du li shi dai) (1994)",Comedy +79545,Grotesque (Gurotesuku) (2009),Horror|Thriller +79547,2:13 (2009),Horror|Thriller +79551,Shifty (2008),Crime|Thriller +79553,Ip Man 2 (2010),Action +79561,Dr. Moreau's House of Pain (2004),Horror +79565,I Remember (Eu Me Lembro) (2005),Drama +79568,I Am Maria (Jag är Maria) (1979),Drama +79570,Lucky (2010),Documentary +79572,Ramona and Beezus (2010),Children|Comedy +79575,Solstice (1994),Drama +79578,"Year of the Hare, The (Jäniksen vuosi) (1977)",Drama|Romance +79580,"Yank in the R.A.F., A (1941)",Action|Adventure|Drama|Romance|War +79588,Charlie St. Cloud (2010),Drama|Fantasy|Romance +79590,"Rebound, The (2009)",Comedy|Romance +79592,"Other Guys, The (2010)",Action|Comedy +79594,Thrilla in Manila (1975),Documentary +79596,"Lineup, The (1958)",Crime|Drama|Film-Noir +79599,Operation Endgame (2010),Action|Comedy|Drama +79601,Love in Another Language (Baska Dilde Ask) (2009),Drama|Romance +79603,"Oh, Woe Is Me (Hélas pour moi) (1993)",Comedy|Drama +79607,"Millions Game, The (Das Millionenspiel)",Action|Drama|Sci-Fi|Thriller +79610,Affair in Trinidad (1952),Drama|Film-Noir|Musical|Thriller +79617,She-Wolf of London (1946),Action|Drama|Horror|Mystery +79627,Cradle of Fear (2001),Crime|Drama|Horror|Mystery|Thriller +79633,"Kautokeino Rebellion, The (Kautokeino-opprøret) (2008)",Drama +79636,"Inner Life of Martin Frost, The (2007)",Comedy|Drama +79638,"Family, The (Famiglia, La) (1987)",Drama|Musical|Romance +79640,"Terrace, The (Terrazza, La) (1980)",Drama +79642,Dreamboat (1952),Comedy +79644,"Desperados, The (1969)",Western +79647,"Haunted Strangler, The (Grip of the Strangler) (1958)",Crime|Horror|Mystery +79651,"L-Shaped Room, The (1962)",Drama +79653,North West Mounted Police (1940),Action|Adventure|Drama|Romance|Western +79656,"Great Caruso, The (1951)",Drama|Musical +79663,Triage (2009),Drama|War +79667,Call Me Madam (1953),Comedy|Musical|Romance +79677,"Two Escobars, The (2010)",Crime|Documentary +79681,Invisible Agent (1942),Adventure|Comedy|Sci-Fi|Thriller|War +79684,Paper Man (2009),Comedy|Drama +79686,All Tomorrow's Parties (2009),Documentary|Musical +79688,Invisible Target (Naam yi boon sik) (2007),Action|Crime +79692,Bjarnfreðarson (2009),Comedy|Drama +79695,"Expendables, The (2010)",Action|Adventure|Thriller +79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance +79709,"Spanish Main, The (1945)",Adventure|Drama|Romance +79711,Svengali (1931),Drama|Horror +79718,Sheep Eaters (Lampaansyöjät) (1972),Comedy|Drama +79720,Animal Kingdom (2010),Crime|Drama +79723,"Exploding Girl, The (2009)",Drama +79725,Prodigal Sons (2008),Documentary +79731,Seven Angry Men (1955),Drama|Western +79736,May 6th (06/05) (2004),Drama|Thriller +79739,"Thorn in the Heart, The (2009)",Documentary +79741,See What I'm Saying: The Deaf Entertainers Documentary (2010),Documentary +79760,Facing Ali (2009),Documentary +79765,"Beast, The (1996)",Drama|Horror|Thriller +79767,Pretty Bird (2008),Comedy|Drama +79769,Raajneeti (2010),Crime|Drama|Romance +79771,"Return of Frank James, The (1940)",Western +79773,Moloch (Molokh) (1999),Drama +79775,"Story of My Life, The (Mensonges et trahisons et plus si affinités...) (2004)",Comedy|Romance +79794,Crossworlds (1997),Action|Comedy|Sci-Fi +79796,Centurion (2010),Action|Adventure|Drama|Thriller|War +79798,I Killed My Mother (J'ai tué ma mère) (2009),Drama +79800,Life During Wartime (2009),Comedy|Drama +79802,Lion's Den (Leonera) (2008),Drama +79805,That Most Important Thing: Love (L'important c'est d'aimer) (1975),Drama|Romance +79807,Pope Joan (Die Päpstin) (2009),Drama|Romance +79809,Cluny Brown (1946),Comedy|Romance +79824,Babies (Bébé(s)) (2010),Documentary +79828,"Green Room, The (a.k.a. Vanishing Fiancee) (La chambre verte) (1978)",Drama +79830,Captain Conan (Capitaine Conan) (1996),Drama|War +79832,Easy Living (1937),Comedy|Romance +79835,Like It Is (1998),Drama +79838,Ankur (The Seedling) (1974),Drama +79842,For Neda (2010),Documentary +79844,"Battle of the Rails, The (La bataille du rail) (1946)",Drama|War +79846,Spider Forest (Geomi sup) (2004),Drama|Horror|Mystery|Thriller +79848,What Goes Up (2009),Drama +79850,12th & Delaware (2010),Documentary +79855,Wonder Bar (1934),Comedy|Crime|Drama|Musical|Romance +79860,"Experiment, The (2010)",Drama|Thriller +79863,Black Water (2007),Adventure|Drama|Horror|Thriller +79866,Schmatta: Rags to Riches to Rags (2009),Documentary +79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller +79870,Smash His Camera (2010),Documentary +79872,Chicago (1927),Comedy|Crime|Drama +79874,Underworld (1927),Crime|Drama|Film-Noir +79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller +79882,Milka - A Film About Taboos (Milka - elokuva tabuista) (1980),Drama +79884,FC Venus (2006),Comedy|Romance +79895,"Extraordinary Adventures of Adèle Blanc-Sec, The (2010)",Action|Adventure|Fantasy|Mystery +79897,Get Low (2009),Comedy|Drama|Mystery +79901,"Danse: The Paris Opera Ballet, La (La Danse - Le ballet de l'Opéra de Paris) (2009)",Documentary +79910,According to Greta (2009),Drama|Romance +79912,Accident (Yi ngoi) (2009),Thriller +79914,Centre Stage: Turn It Up (2008),Drama|Romance +79916,Tony Manero (2008),Crime|Drama +79918,Fate Is the Hunter (1964),Drama +79920,Blue Skies (1946),Comedy|Drama|Musical|Romance +79923,"Mating Season, The (1951)",Comedy +79925,Prince of Foxes (1949),Adventure|Drama +79927,Terribly Happy (Frygtelig lykkelig) (2008),Crime|Drama|Film-Noir|Thriller +79929,"Eclipse, The (2009)",Drama|Horror|Thriller +79936,Pohjanmaa (1988),Drama +79946,"Joneses, The (2009)",Comedy|Drama +79953,With a Song in My Heart (1952),Drama|Musical +79955,"Love Parade, The (1929)",Comedy|Musical|Romance +79972,"Girl on the Train, The (La fille du RER) (2009)",Drama +79974,Pyaar Impossible (2010),Comedy|Romance +79977,"Rains Came, The (1939)",Adventure|Drama|Romance +79980,Children of Invention (2009),Drama +79987,Gainsbourg (Vie Héroïque) (2010),Drama|Musical|Romance +79994,"Wild Grass (Herbes folles, Les) (2009)",Drama|Romance +79996,Giallo (2009),Crime|Horror|Thriller +80004,Gaby: A True Story (1987),Drama|Romance +80014,Ole dole doff (1968),Drama +80020,Jumbo (Billy Rose's Jumbo) (1962),Comedy|Musical|Romance +80022,Miss Sadie Thompson (1953),Drama|Musical|Romance +80026,Tekken (2010),Action|Sci-Fi +80033,"President's Man, The (2000)",Action|Adventure|Thriller +80038,"Wedding Photographer, The (Bröllopsfotografen) (2009)",Comedy|Drama|Romance +80041,Giliap (1975),Crime|Drama +80044,Don Quixote (2000),Adventure|Comedy|Drama|Romance +80049,"Secret Adventures of Gustave Klopp, The (Narco) (2004)",Action|Comedy|Fantasy +80054,Blood into Wine (2010),Documentary +80072,Deadly Circuit (Mortelle randonnée) (1983),Crime|Mystery|Thriller +80074,Something Like Happiness (Stestí) (2005),Comedy|Drama +80076,"Story of Marie and Julien, The (Histoire de Marie et Julien) (2003)",Drama|Mystery|Romance +80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi +80086,Retribution (Sakebi) (2006),Horror|Mystery|Thriller +80094,"Last Exorcism, The (2010)",Horror|Thriller +80097,Mother Joan of the Angels (Matka Joanna od aniolów) (1961),Drama|Horror +80100,Camila (1984),Drama|Romance +80102,Christopher Strong (1933),Drama +80104,San Pietro (1945),Documentary|War +80107,"Dance, Girl, Dance (1940)",Comedy|Drama +80109,King Lear (Korol Lir) (1971),Drama +80111,Black Girl (La noire de...) (1966),Drama +80122,Rosa Luxemburg (1986),Drama +80124,Sisters (Syostry) (2001),Action|Crime|Drama +80126,"American, The (2010)",Drama|Thriller +80129,How Tasty Was My Little Frenchman (Como Era Gostoso o Meu Francês) (1971),Comedy|Drama +80132,Children of Hiroshima (Gembaku no ko) (1952),Drama|War +80135,Kisses (Kuchizuke) (1957),Drama|Romance +80137,If God Is Willing and da Creek Don't Rise (2010),Documentary +80139,Jackass 2.5 (2007),Comedy|Documentary +80141,"Christmas Toy, The (1986)",Children|Musical +80144,"Wildcat, The (Die Bergkatze) (1921)",Comedy|Drama|Romance +80146,"Hypothesis of the Stolen Painting, The (L'hypothèse du tableau volé) (1979)",Drama|Mystery +80152,"Trials of Oscar Wilde, The (1960)",Drama +80154,Urban Menace (1999),Action|Horror +80158,Cartoon All-Stars to the Rescue (1990),Animation|Children|Comedy|Drama|Fantasy +80160,"Flintstone Kids' Just Say No Special, The (1988)",Animation|Children +80162,"Horde, The (La Horde) (2009)",Action|Horror|Thriller +80164,Burrowing (Man tänker sitt) (2009),Drama +80166,"Switch, The (2010)",Comedy|Romance +80179,Golem (1980),Drama|Mystery|Sci-Fi +80181,Elephants Dream (2006),Animation|Fantasy|Sci-Fi +80183,8th Wonderland (2008),Drama|Thriller +80185,GasLand (2010),Documentary +80189,"Dark Wind, The (1991)",Action|Mystery +80191,Fear and Desire (1953),Drama|War +80193,No One Dies in Lily Dale (2010),Documentary +80195,Shouting Fire: Stories from the Edge of Free Speech (2009),Documentary +80204,Vesku from Finland (Vesku) (2010),Documentary +80206,Dirty Ho (Lan tou He) (1976),Action|Drama +80208,Visual Acoustics (2008),Documentary +80210,"End of Poverty, The (2008)",Documentary +80214,"Swan and the Wanderer, The (Kulkuri ja joutsen) (1999)",Drama +80217,Hated (1994),Documentary +80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller +80222,Step Up 3D (2010),Drama|Romance +80224,Smart Money (1931),Crime|Drama +80226,Tarzan's Magic Fountain (1949),Action|Adventure|Fantasy|Romance +80230,Off and Running (2009) ,Documentary +80233,"Truth, The (2010) ",Thriller +80235,"Wedding Song, The (2008) ",Drama|War +80241,Going the Distance (2010),Comedy|Romance +80243,Bananaz (2008),Documentary +80245,Release the Prisoners to Spring (1975),Comedy +80247,False as Water (Falsk som vatten) (1985),Drama|Mystery|Thriller +80258,"Moon Is Blue, The (1953)",Comedy|Romance +80260,Love Letters (1945),Drama|Mystery|Romance +80264,Pride of the Marines (1945),Drama|War +80267,Comrade X (1940),Comedy|Drama +80269,Above and Beyond (1952),Action|Drama +80271,Four Stories of St. Julian (2010) ,Crime|Thriller +80281,Bill Bailey: Tinselworm (2008),Comedy|Documentary +80283,Babes on Broadway (1941),Comedy|Musical|Romance +80285,Conquest (1937),Drama|Romance +80288,"Street with No Name, The (1948)",Crime|Drama|Film-Noir|Thriller +80290,It's a Great Feeling (1949),Comedy +80292,"Joker Is Wild, The (All the Way) (1957)",Drama|Musical +80295,"Reincarnation of Peter Proud, The (1975)",Horror|Mystery +80311,"Come On, Rangers (1938)",Romance|Western +80313,"Oh, Susanna! (1936)",Romance|Western +80315,"Worthless, The (Arvottomat) (1982)",Crime|Drama +80321,Blood River (2009),Horror|Thriller|Western +80324,Abandoned (2010),Drama|Mystery|Thriller +80328,"Saimaa Gesture, The (Saimaa-ilmiö) (1981)",Documentary +80330,Offside (2006),Comedy|Drama +80337,Still Bill (2009),Documentary +80339,Homecoming (2009),Drama|Thriller +80344,Beach Red (1967),Drama|War +80346,"Song to Remember, A (1945)",Drama +80348,Arch of Triumph (1948),Drama|Romance|War +80350,Vampires Suck (2010),Comedy +80352,Young Again (1986),Fantasy +80354,Men in the City (Männerherzen) (2009),Comedy +80358,"Theory of Everything, The (2006)",Drama +80361,$5 a Day (2008),Comedy|Drama +80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX +80374,Symbol (Shinboru) (2009),Comedy|Fantasy +80376,Preacher's Kid (2010),Drama +80398,22 Bullets (L'immortel) (2010),Action|Crime|Thriller +80400,"Larceny, Inc. (1942)",Comedy|Crime|Drama +80402,"New Country, The (Det nya landet) (2000)",Comedy|Drama +80405,Triangle (Tie saam gok) (2007),Action +80408,Trance (1998),Horror +80417,Io Island (Iodo) (1977),Mystery +80419,Seopyeonje (1993),Drama|Musical +80421,Heroes for Sale (1933),Drama +80424,Western Union (1941),Western +80428,"Pornographer, The (Le pornographe) (2001)",Drama +80430,Palermo Shooting (2008),Drama +80432,Our Relations (1936),Comedy +80444,"Hunchback, The (1997)",Drama +80447,Someone's Watching Me! (1978),Horror|Mystery|Thriller +80449,Sue (1997),Drama +80451,Season of the Witch (Hungry Wives) (Jack's Wife) (1972),Drama|Horror +80454,Princess (Prinsessa) (2010),Drama +80456,Long Weekend (1978),Horror|Mystery|Thriller +80463,"Social Network, The (2010)",Drama +80465,Few of Us (1996),Drama +80467,Juvenile Court (1973),Documentary +80469,Superman/Batman: Apocalypse (2010),Animation +80472,Design for Scandal (1941),Comedy|Romance +80476,Otis (2008),Comedy|Crime|Horror|Thriller +80478,"Man Vanishes, A (Ningen Johatsu) (1967)",Documentary|Drama|Mystery +80480,History of Postwar Japan as Told by a Bar Hostess (Nippon Sengoshi - Madamu onboro no Seikatsu) (1970),Documentary +80487,"Married Woman, A (Une femme mariée) (1964)",Drama +80489,"Town, The (2010)",Crime|Drama|Thriller +80491,Kapò (1959),Drama|War +80494,"Phenix City Story, The (1955)",Crime|Drama|Film-Noir +80498,Some Days Are Better Than Others (2010),Drama +80500,Fear Me Not (Den du frygter) (2008),Drama|Thriller +80502,Infestation (2009),Action|Comedy|Sci-Fi +80505,2012: Supernova (2009),Action|Sci-Fi +80549,Easy A (2010),Comedy|Romance +80551,Eat Pray Love (2010),Drama|Romance +80553,Howl (2010),Drama +80557,Camp Hell (2010),Thriller +80560,Blue Gold: World Water Wars (2008),Documentary +80562,Senseless (2008),Crime|Drama|Thriller +80566,"Rocket from Calabuch, The (Calabuch) (1956)",Comedy +80568,Come Blow Your Horn (1963),Comedy +80570,Susan Slept Here (1954),Comedy|Drama +80572,I'm Still Here (2010),Comedy|Drama +80574,Saratoga Trunk (1945),Drama|Romance +80582,Girl 27 (2007),Documentary +80584,"Patrik Age 1.5 (Patrik 1,5) (2008)",Comedy|Drama|Romance +80586,Flipped (2010),Comedy|Drama|Romance +80588,IMAX: Hubble 3D (2010),Documentary|IMAX +80590,Wall Street: Money Never Sleeps (2010),Drama +80592,Phaedra (1962),Drama +80596,Tumbledown (1988),War +80599,Buster Keaton: A Hard Act to Follow (1987),Documentary +80611,Mister Buddwing (1966),Drama +80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX +80617,Cats & Dogs: The Revenge of Kitty Galore (2010),Action|Children|Comedy +80619,What's the Matter with Helen? (1971),Crime|Drama|Horror|Musical +80622,Rhapsody in Blue (1945),Drama|Musical +80639,Broadway Melody of 1936 (1935),Musical|Romance +80641,Boy on a Dolphin (1957),Adventure|Romance +80646,Lone Wolf and Cub: White Heaven in Hell (Kozure ôkami: Jigoku e ikuzo! Daigorô) (1974),Action|Drama|Fantasy +80648,Lone Wolf and Cub: Baby Cart in the Land of Demons (Kozure Ôkami: Meifumadô) (1973),Action|Drama|Thriller +80650,Diên Biên Phú (1992),Drama|War +80653,"Missing Person, The (2009)",Drama|Film-Noir|Mystery +80655,Amigo (2010),Drama|War +80659,"Edward, My Son (1949)",Drama +80661,Beneath the 12-Mile Reef (1953),Adventure +80667,The Oscar (1966),Drama +80677,"Classe Tous Risques (Big Risk, The) (1960)",Crime|Drama|Film-Noir|Romance|Thriller +80680,Monga (2010),Crime|Drama +80683,Killing Kasztner (2008),Documentary +80693,It's Kind of a Funny Story (2010),Comedy|Drama +80701,Mudhoney (1965),Drama +80713,Entre nos (Between Us) (2009),Drama +80715,Just Like Us (2010),Comedy|Documentary +80717,Voyeur (Abel) (1986),Comedy +80719,Kanchenjungha (1962),Drama +80722,"Jolly Boys' Last Stand, The (2000)",Comedy|Drama +80725,"Squaw Man, The (1914)",Drama|Western +80727,Middle Men (2009),Comedy|Crime|Drama +80729,(Untitled) (2009),Comedy|Drama +80731,"Paper Will Be Blue, The (Hîrtia va fi albastrã) (2006)",Action|Drama +80733,Ricky (2009),Comedy|Drama|Fantasy +80736,"Poughkeepsie Tapes, The (2007)",Horror|Mystery|Thriller +80738,"Eighth Day, The (Den Åttonde dagen) (1979)",Children|Drama +80740,Luke and Lucy: The Texas Rangers (Suske en Wiske: De Texas rakkers) (2009),Adventure|Animation|Comedy|Western +80742,"Last Letter, The (La dernière lettre) (2002)",Drama +80744,Deciduous Tree (Tree Without Leaves) (Rakuyôju) (1986),Drama +80746,Remote Control (1930),Comedy|Drama +80748,Alice in Wonderland (1933),Adventure|Children|Fantasy +80759,Hardcore (2004),Crime|Drama +80761,"Crimson Wing: Mystery of the Flamingos, The (2008)",Documentary +80763,Saint John of Las Vegas (2009),Comedy|Drama +80768,Patsy (2008),Comedy|Drama|Mystery|Romance +80775,Tamara Drewe (2010),Comedy|Drama|Romance +80777,Tere Naam (2003),Romance +80779,Every Day (2010),Comedy|Drama +80787,Red Canyon (2008),Action|Horror|Thriller +80789,Loving Leah (2009),Drama|Romance +80792,Southbounders (2005),Drama +80797,"Thank You, Mr. Moto (1937)",Crime|Drama|Mystery +80799,West Point (1927),Drama|Romance +80806,"Red Bear, A (Un oso rojo) (2002)",Crime|Drama|Thriller +80808,"Night Strangler, The (1973)",Crime|Horror|Mystery +80810,Twilight's Last Gleaming (1977),Thriller +80812,Effi Briest (Fontane - Effi Briest) (1974),Drama +80816,Dark Night of the Scarecrow (1981),Horror|Mystery +80818,Remarkable Power (2008),Comedy +80820,My Girlfriend's Boyfriend (2010),Comedy|Romance +80825,Shadows (Senki) (2007),Drama|Horror|Mystery|Thriller +80827,Brown of Harvard (1926),Drama|Romance +80831,Let Me In (2010),Drama|Horror|Mystery +80834,Sintel (2010),Animation|Fantasy +80836,Big Buck Bunny (2008),Animation|Comedy +80839,Secretariat (2010),Adventure|Drama +80844,Lake Mungo (2008),Drama|Mystery|Thriller +80846,Devil (2010),Horror|Mystery|Thriller +80848,Looking for Cheyenne (2005),Drama|Romance +80858,You Again (2010),Comedy +80860,Life as We Know It (2010),Comedy|Romance +80862,Catfish (2010),Documentary|Mystery +80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance +80866,Collision: Christopher Hitchens vs. Douglas Wilson (2009),Documentary +80870,Dark House (2009),Horror|Thriller +80880,Stone (2010),Drama|Thriller +80891,Hunger (2009),Horror|Thriller +80893,Grimm Love (Rohtenburg) (2006),Drama|Horror +80899,Naughty Marietta (1935),Drama|Musical +80901,"Hawaiians, The (1970)",Drama +80903,One Million B.C. (1940),Adventure|Fantasy|Romance|Sci-Fi +80906,Inside Job (2010),Documentary +80908,Leaving (Partir) (2009),Drama|Romance +80917,Monsters (2010),Drama|Sci-Fi +80924,Where the Red Fern Grows (2003),Drama +80926,Dragonlance: Dragons of Autumn Twilight (2008),Action|Adventure|Animation|Fantasy +80928,David Cross: Bigger & Blackerer (2010),Comedy|Documentary +80933,"Murder, Inc. (1960)",Crime|Drama +80939,Conviction (2010),Drama +80941,Dirty Girl (2010),Comedy|Drama +80947,Bran Nue Dae (2009),Comedy|Musical +80950,"Private War of Major Benson, The (1955)",Children|Comedy|Romance +80952,"Promoter, The (Card, The) (1952)",Comedy +80954,Merrily We Live (1938),Comedy|Romance +80967,Harmony and Me (2009),Comedy +80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi +80972,"Wedding Party, The (Die Bluthochzeit) (2005)",Action|Comedy|Drama +80980,Countdown (1968),Sci-Fi|Thriller +80984,Rogue Cop (1954),Crime|Drama|Film-Noir +80986,That Forsyte Woman (1949),Drama|Romance +80990,"Lady Vanishes, The (1979)",Action|Comedy|Mystery|Romance +81000,To the Limit (Am Limit) (2007),Documentary +81014,Hush (2009),Horror|Thriller +81018,"Illusionist, The (L'illusionniste) (2010)",Animation +81020,"Hedgehog, The (Le hérisson) (2009)",Comedy|Drama +81027,Autumn Ball (Sügisball) (2007),Drama +81029,"Murder, He Says (1945)",Comedy +81031,Worlds Apart (To verdener) (2008),Drama +81041,"American Affair, An (2009)",Drama +81046,Martha (1974),Drama|Thriller +81049,Rooster's Breakfast (Petelinji zajtrk) (2007),Drama +81051,Massacre at Central High (1976),Drama|Horror|Thriller +81054,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance +81059,"Family Friend, The (L'amico di famiglia) (2006)",Drama +81061,Party Girl (1958),Drama|Film-Noir +81064,J.C. Chávez (a.k.a. Chavez) (2007),Documentary +81067,"Long and Short of It, The (2003)",Drama +81069,Toe to Toe (2009),Drama +81072,Konopielka (1982),Comedy +81075,"Temptation of St. Tony, The (Püha Tõnu kiusamine) (2009)",Drama|Fantasy|Mystery +81080,Lost Boys: The Thirst (2010),Horror|Thriller +81083,Kaboom (2010),Comedy|Sci-Fi +81085,Morning Patrol (Proini peripolos) (1987),Sci-Fi +81087,Luck by Chance (2009),Drama +81090,Tales from the Script (2009),Documentary +81092,Dreams on Spec (2007),Documentary +81094,Mummies: Secrets of the Pharaohs (a.k.a. Mummies 3D) (2007),Documentary|IMAX +81100,Bianca Beauchamp: All Access (2007),Documentary +81102,"Padrecito, El (Little Priest) (1964)",Comedy|Drama +81104,Budrus (2009),Documentary +81107,Wife! Be Like a Rose! (Tsuma yo bara no yo ni) (1935),Drama +81109,Adelheid (1970),Drama +81111,Peepli Live (2010),Comedy|Drama +81117,"Moth, The (Cma) (1980)",Drama +81123,"Girl Said No, The (1930)",Comedy|Romance +81125,"American Dream, An (1966)",Drama +81130,Tube Tales (1999),Drama +81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western +81138,7 Days (Les 7 jours du talion) (2010),Thriller +81140,6 Souls (Shelter) (2010),Horror|Mystery|Thriller +81142,In My Sleep (2009),Drama|Mystery|Thriller +81145,Hamlet Goes Business (Hamlet liikemaailmassa) (1987),Comedy|Drama|Romance +81147,Barefoot Gen 2 (Hadashi no Gen II) (1986),Animation|Drama|War +81150,"Trouble with Dee Dee, The (2005)",Comedy +81152,"Early Years: Erik Nietzsche Part 1, The (De unge år: Erik Nietzsche) (2007)",Comedy|Drama +81156,Jackass 3D (2010),Action|Comedy|Documentary +81158,Restrepo (2010),Documentary|War +81162,Road Kill (a.k.a. Road Train) (2010),Horror|Sci-Fi|Thriller +81164,"Hole, The (2009)",Horror|Thriller +81172,Spring Subway (2002),Drama|Romance +81180,30 Days of Night: Dark Days (2010),Horror|Thriller +81182,No Mercy (Yongseoneun Eupda) (2010),Thriller +81184,"Short Film About John Bolton, A (2003)",Fantasy|Horror|Mystery +81191,Waiting for 'Superman' (2010),Documentary +81193,"West Point Story, The (1950)",Comedy|Musical +81195,Perrier's Bounty (2009),Action|Comedy|Crime|Drama +81198,Where Love Has Gone (1964),Drama +81200,Suzy (1936),Drama +81204,"Disappeared, The (2008)",Horror +81214,"Fox, The (1967)",Drama +81216,"Frogmen, The (1951)",Adventure|Drama|War +81225,Jerry Springer: The Opera (2005),Comedy|Fantasy|Musical +81229,Red (2010),Action|Comedy +81238,Zeisters (Fat Guy Goes Nutzoid) (1986),Comedy +81243,Strip-tease (1963),Drama +81248,The Other Side of the Mountain (1975),Drama +81250,"Actress, The (1953)",Comedy|Drama +81257,In a Better World (Hævnen) (2010),Drama +81270,My Soul to Take (2010),Horror|Thriller +81274,Under the Stars (Bajo las estrellas) (2007),Drama +81276,South of the Border (2009),Documentary +81281,"Architect, The (2006)",Drama +81305,Eyes Wide Open (Einayim Petukhoth) (2009),Drama +81312,Borderland (2007),Crime|Horror|Thriller +81314,Big Game (2008),Action|Drama|Thriller +81316,Deadline (2009),Drama|Horror|Thriller +81322,Nicht alle waren Mörder (2006),Drama|War +81324,"Day in the Life, A (2009)",Crime|Drama|Thriller +81328,"Hunt, The (Caza, La) (1966)",Drama|Thriller +81330,My Kidnapper (2010),Documentary +81333,It Rains in My Village (Bice skoro propast sveta) (1968),Drama +81347,Vivere (2007),Drama|Romance +81349,Provocateur (Prowokator) (1995),Drama +81351,"Olsen Gang, The (Olsen-Banden) (1968)",Comedy|Crime +81355,"Employment, The (Empleo, El) (2008)",Animation|Comedy|Drama +81357,"Pear Tree, The (Derakhte Golabi) (1998)",Drama|Romance +81359,"Road, Movie (2009)",Comedy|Drama|Fantasy +81362,Whisper (2007),Crime|Drama|Horror|Thriller +81364,"Box, The (2007)",Crime|Thriller +81366,"Only Son, The (Hitori musuko) (1936)",Drama +81371,There Was a Father (Chichi ariki) (1942),Drama +81381,"Perfect Human, The (Perfekte Menneske, Det) (1967)",Documentary +81383,Heartbreaker (L'Arnacoeur) (2010),Comedy|Romance +81385,Of Gods and Men (Des hommes et des dieux) (2010),Drama +81387,12 Storeys (Shier lou) (1997),Comedy|Drama +81389,"Great Ecstasy of Robert Carmichael, The (2005)",Drama|Horror +81391,Eastern Plays (2009),Drama +81393,Drum (2004),Thriller +81396,Bombshell (1933),Comedy|Drama|Romance +81398,Eastern Drift (Indigène d'Eurasie) (2010),Drama|Film-Noir|Thriller +81403,"Gendarme Gets Married, The (Le gendarme se marie) (1968)",Comedy +81405,Zero Degrees of Separation (2005),Documentary +81411,Voyage to Cythera (Taxidi sta Kythira) (1984),Drama +81413,"Girlfriends, The (Le amiche) (1955)",Drama|Romance +81415,"Chicken, the Fish and the King Crab, The (El pollo, el pez y el cangrejo real) (2008)",Documentary +81417,Paranormal Activity 2 (2010),Horror|IMAX +81424,R (2010),Drama +81427,Born to Raise Hell (2010),Action +81429,"Maze, The (2010)",Horror +81432,"Finances of the Grand Duke, The (Die Finanzen des Großherzogs) (1924)",Comedy +81435,"Haunted Castle, The (Schloß Vogeloed) (1921)",Crime|Drama|Horror|Mystery +81441,Mitä meistä tuli (2009),Crime|Drama|Thriller +81443,Counsellor at Law (1933),Drama +81445,Daughter from Danang (2002),Documentary|War +81447,"Smell of Camphor, Fragrance of Jasmine (Booye kafoor, atre yas) (2000)",Drama +81451,Night Wolf (2010),Action|Horror +81453,Dial 1119 (1950),Crime|Drama|Film-Noir +81456,Heartbeats (Les amours imaginaires) (2010),Drama|Romance +81495,"Countess, The (2009)",Drama|Thriller +81497,"Last American Hero, The (1973)",Action|Drama +81499,Tenderness (2009),Crime|Drama|Thriller +81501,"Tree of Knowledge, The (Kundskabens træ) (1981)",Drama +81512,Hereafter (2010),Drama|Fantasy +81516,Black Death (2010),Adventure|Drama|Horror|Mystery +81518,Afterwards (2008),Mystery +81520,Undisputed III: Redemption (2010),Action|Crime|Drama +81524,"Olsen Gang on the Track, The (Olsen-banden på sporet) (1975)",Comedy|Crime +81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller +81537,Due Date (2010),Comedy +81546,Vacation from Marriage (1945),Drama|Romance +81548,Desire Under the Elms (1958),Drama|Romance +81562,127 Hours (2010),Adventure|Drama|Thriller +81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX +81566,"Stranger in Me, The (Das Fremde in mir) (2008)",Drama +81568,"Fuehrer's Face, Der (1942)",Animation|War +81574,"Witch Who Came from the Sea, The (1976)",Horror|Thriller +81583,Quality Street (1937),Comedy|Drama|Romance +81585,Strike Up the Band (1940),Comedy|Musical|Romance +81587,Period of Adjustment (1962),Comedy|Drama +81589,"Singing Nun, The (1966)",Comedy|Drama +81591,Black Swan (2010),Drama|Thriller +81610,You'll Find Out (1940),Comedy|Horror|Musical|Mystery|Romance +81613,Bloodbrothers (1978),Drama +81615,Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me? (1971),Comedy|Drama +81617,Tribute (1980),Comedy|Drama +81621,Eggs (1995),Comedy|Drama +81629,"Horse Boy, The (2009)",Documentary +81631,Trail of the Screaming Forehead (2007),Comedy|Sci-Fi +81633,Dark and Stormy Night (2009),Comedy|Mystery +81637,"Turtle's Tale: Sammy's Adventures, A (2010)",Adventure|Animation +81639,Jack Goes Boating (2010),Comedy|Romance +81641,Fair Game (2010),Drama|Thriller +81643,Flame of Barbary Coast (1945),Romance|Western +81646,Million Dollar Mermaid (1952),Drama|Musical +81656,Woman in the Moon (By Rocket to the Moon) (Frau im Mond) (1929),Comedy|Drama|Romance|Sci-Fi +81658,Flamingo Road (1949),Drama|Romance +81660,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi +81665,Deep End (1970),Comedy|Drama|Romance +81667,Ten Minutes Older: The Cello (2002),Drama|Musical|Romance|Sci-Fi +81669,"Castle, The (Das Schloß) (1997)",Drama|Mystery +81671,"Tramp, The (Awaara) (Awara) (1951)",Drama|Musical|Romance +81673,"Small Town, The (a.k.a. The Town) (Kasaba) (1997)",Drama +81676,United (2003),Comedy|Romance +81679,Roman (2006),Drama|Thriller +81681,I Shot Jesse James (1949),Drama|Romance|Western +81684,Comanche Station (1960),Western +81688,Habit (1995),Drama|Horror|Romance +81690,Ploy (2007),Drama +81698,'R Xmas (2001),Crime|Drama +81700,Ten Skies (2004),Documentary +81702,Lake Tahoe (2008),Drama +81704,Lourdes (2009),Drama +81708,Four Nights with Anna (Cztery noce z Anna) (2008),Crime|Drama|Thriller +81711,Scared Shrekless (2010),Adventure|Animation|Comedy +81713,Abelar: Tales of an Ancient Empire (Tales of an Ancient Empire) (2010),Fantasy +81725,How I Ended This Summer (Kak ya provyol etim letom) (2010),Drama +81727,Thieves by Law (Ganavim Ba Hok) (2010),Documentary +81731,"Pillars of the Earth, The (2010)",Drama|Romance|Thriller +81733,Ménilmontant (1926),Comedy|Drama +81736,Hamlet (Gamlet) (1964),Drama +81738,"Older Brother, Younger Sister (Ani imôto) (1953)",Drama +81742,Witch Way Love (Un amour de sorcière) (1997),Comedy|Fantasy +81744,"King of Fighters, The (2010)",Action|Sci-Fi +81751,Uncle Boonmee Who Can Recall His Past Lives (Loong Boonmee raleuk chat) (2010),Drama|Fantasy +81753,"Magnetic Man, The (Magneettimies) (2009)",Documentary +81755,My Childhood (1972),Drama +81758,Faces of Schlock (2005),Comedy|Horror +81765,Playing from the Plate (Grajacy z talerza) (1995),Drama|Fantasy|Mystery +81768,"Man Who Could Work Miracles, The (1936)",Comedy|Fantasy +81770,"House, The (A Casa) (1997)",Drama +81782,Unstoppable (2010),Action|Drama|Thriller +81784,Morning Glory (2010),Comedy|Drama|Romance +81786,Certified Copy (Copie conforme) (2010),Drama +81788,"Next Three Days, The (2010)",Crime|Drama|Romance|Thriller +81791,Somewhere (2010),Drama +81795,Mein Leben - Marcel Reich-Ranicki (2009),Drama +81802,Agnosia (2010),Drama|Thriller +81804,Wild Target (2010),Comedy|Drama|Romance|Thriller +81806,Vlad Tepes (Vlad Ţepeş) (1979),Drama +81817,Carlos (2010),Crime|Drama|Thriller +81819,Biutiful (2010),Drama +81823,Katalin Varga (2009),Crime|Drama|Thriller +81825,Eden Is West (Eden à l'Ouest) (2009),Drama +81831,"First Beautiful Thing, The (La prima cosa bella) (2010)",Comedy|Drama +81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX +81845,"King's Speech, The (2010)",Drama +81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX +81851,"Last Sunset, The (1961)",Western +81853,These Are the Damned (a.k.a. The Damned) (1963),Drama|Fantasy|Romance|Sci-Fi +81857,Maytime (1937),Drama|Musical|Romance +81859,Neptune's Daughter (1949),Comedy|Musical|Romance +81867,Steel Toes (2006),Crime|Drama +81880,Wedding Belles (2007),Comedy|Drama +81898,"Agony and the Ecstasy of Phil Spector, The (2009)",Documentary +81903,"Lost Skeleton Returns Again, The (2009)",Comedy +81906,Snow and Ashes (2010),Drama|Thriller|War +81910,"Art of the Steal, The (2009)",Documentary +81925,Missing in America (2005),Drama|War +81927,Linewatch (2008),Crime|Drama|Thriller +81930,Toi et Moi (2006),Comedy|Drama|Romance +81932,"Fighter, The (2010)",Drama +81949,"Romantics, The (2010)",Comedy|Drama|Romance +81952,Feet First (1930),Comedy +81954,"Dorado, El (1988)",Drama +81957,"World Unseen, The (2007)",Drama|Romance +81959,"Dossier 51 (Dossier 51, Le) (1978)",Crime|Drama +81962,Three (Tri) (1965),Drama|War +81975,"Statues Also Die (Statues meurent aussi, Les) (1953)",Documentary +81979,"Monk and the Fish, The (Le moine et le poisson) (1994)",Animation|Musical +81981,"Toy, The (Le jouet) (1976)",Comedy +81983,Bread and Alley (Nan va Koutcheh) (1970),Drama +81985,My Ain Folk (1973),Drama +81987,From the Clouds to the Resistance (Dalla nube alla resistenza) (1979),Drama +81989,"Devil, The (Diabel) (1972)",Drama|Horror +81991,Islander (2006),Drama +81993,Red: Werewolf Hunter (2010),Action|Fantasy|Horror +82003,"Rendez-vous d'Anna, Les (Meetings of Anna, The) (1978)",Drama +82005,"Extra Man, The (2010)",Comedy +82007,Ingeborg Holm (1913),Drama +82009,Crazy on the Outside (2010),Comedy|Crime +82011,Bad Family (Paha Perhe) (2010),Comedy|Drama +82013,Adrift (Choi Voi) (2009),Drama +82015,M (1951),Crime|Drama|Film-Noir|Thriller +82017,"Viking, The (1928)",Action|Adventure|Drama +82022,"Reef, The (2010)",Drama|Horror|Thriller +82026,Mendy: A Question of Faith (2003),Drama +82030,"Lesson in Love, A (En lektion i kärlek) (1954)",Comedy|Drama +82032,All These Women (För att inte tala om alla dessa kvinnor) (1964),Comedy +82035,Cocaine Cowboys II: Hustlin' With the Godmother (2008),Crime|Documentary +82037,"Tillman Story, The (2010)",Documentary +82041,"Loved Ones, The (2009)",Horror +82043,Little Red Flowers (Kan shang qu hen mei) (2006),Comedy|Drama +82045,Madam Satan (1930),Comedy|Musical|Romance +82047,"Sun Also Rises, The (Tai yang zhao chang sheng qi) (2007)",Drama +82049,"Hitch Hike (Autostop rosso sangue) (Naked Prey, The) (1977)",Adventure|Crime|Drama|Horror|Thriller +82051,Dishonored (1931),Drama|War +82053,Casino Jack (2010),Comedy|Crime +82055,"Devil to Pay!, The (1930)",Comedy|Romance +82059,Farewell (L'affaire Farewell) (2009),Thriller +82061,To Paint or Make Love (Peindre ou faire l'amour) (2005),Comedy +82063,Let it Rain (Parlez-moi de la pluie) (2008),Comedy|Drama +82066,London River (2009),Drama|Mystery +82068,Police (1985),Crime|Drama|Romance +82070,Underworld U.S.A. (1961),Crime|Drama +82088,Vincent Wants to Sea (Vincent will meer) (2010),Drama +82093,London Boulevard (2010),Crime|Romance +82095,Skyline (2010),Sci-Fi|Thriller +82097,Karthik Calling Karthik (2010),Comedy|Drama|Thriller +82102,Sex & Drugs & Rock & Roll (2010),Comedy|Drama +82106,Last of the Red Hot Lovers (1972),Comedy|Romance +82108,Against the Current (2009),Drama +82110,October Country (2009),Documentary +82115,Home for Christmas (Hjem til jul) (2010),Drama +82119,The Reverse (2009),Comedy|Drama|Romance|Thriller +82121,"Verdict, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +82123,Pay or Die (1960),Crime +82129,"Passionate Friends, The (a.k.a. One Woman's Story) (1949)",Drama +82131,Men in War (1957),Drama|War +82139,Not Forgotten (2009),Thriller +82141,"Brotherhood, The (1968)",Crime|Drama +82143,Alone in the Wilderness (2004),Documentary +82150,Bunny and the Bull (2009),Adventure|Comedy|Drama +82152,Beastly (2011),Drama|Fantasy|Romance +82154,Get Educated: Paathshaala (2010),Drama +82157,August Mordum's Underground (2003),Horror +82167,Love and Other Drugs (2010),Comedy|Drama|Romance +82169,"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)",Adventure|Children|Fantasy +82173,Tiny Furniture (2010),Comedy +82175,Lovers of Hate (2010),Comedy +82179,"High Wind in Jamaica, A (1965)",Adventure|Drama +82182,If I Had a Million (1932),Comedy|Drama +82184,Killer McCoy (1947),Drama +82186,It's Alive 2: It Lives Again (1978),Horror +82188,"Man I Love, The (1947)",Crime|Drama|Thriller +82194,Track of the Cat (1954),Drama|Western +82196,Intruder in the Dust (1949),Drama +82202,"Tourist, The (2010)",Drama|Thriller +82209,Chatroom (2010),Crime|Drama|Mystery|Thriller +82227,"Man Called Peter, A (1955)",Drama +82235,"Story of Three Loves, The (1953)",Drama|Musical|Romance +82240,Suck (2009),Comedy|Horror|Musical +82242,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy +82244,13 (2010),Thriller +82246,"Human Experience, The (2008)",Documentary +82261,Breaking the Maya Code (2008),Documentary +82269,Triple Agent (2004),Drama|Thriller +82271,Western (1997),Comedy|Romance +82274,Doppelganger (Dopperugengâ) (2003),Comedy|Thriller +82276,Days and Clouds (Giorni e nuvole) (2007),Drama +82280,Workingman's Death (2005),Documentary +82283,Secret Ceremony (1968),Drama|Thriller +82298,Buchanan Rides Alone (1958),Western +82300,Cotton Comes to Harlem (1970),Action|Comedy +82302,Dillinger Is Dead (Dillinger è morto) (1969),Crime|Drama +82304,"Mirror, The (Ayneh) (1997)",Drama +82306,"Student Prince in Old Heidelberg, The (1927)",Drama|Romance +82308,Illustrious Corpses (Cadaveri eccellenti) (1976),Crime|Mystery|Thriller +82311,Hands Across the Table (1935),Comedy|Romance +82313,Nightfall (1957),Crime|Drama|Film-Noir +82315,"Beau Serge, Le (1958)",Drama +82320,Fate (Yazgi) (2001),Drama +82322,"Father of My Children, The (Le père de mes enfants) (2009)",Drama +82324,Bal (Honey) (2010),Drama +82326,Seven Invisible Men (Septyni nematomi zmones) (2005),Drama +82328,One Fine Spring Day (Bomnaleun ganda) (2001),Drama +82330,"Blossoming of Maximo Oliveros, The (Ang pagdadalaga ni Maximo Oliveros) (2005)",Comedy|Drama +82332,"Outlaw and His Wife, The (a.k.a. You and I) (Berg-Ejvind och hans hustru) (1918)",Drama +82335,"Silent World, The (Le monde du silence) (1956)",Documentary +82337,Four Heads Are Better Than One (Un homme de tête) (1898),Fantasy +82353,Solo Sunny (1980),Drama|Musical|Romance +82356,Boy Interrupted (2008),Documentary +82358,Caribe (2004),Drama|Mystery|Romance +82360,Rammbock (2010),Drama|Horror +82362,"Pyramid of Triboulet, The (La pyramide de Triboulet) (1899)",Fantasy +82364,Conversation Piece (Gruppo di famiglia in un interno) (1974),Drama +82366,Hatchet II (2010),Comedy|Horror|Thriller +82368,Alabama's Ghost (1973),Horror +82370,"Master and Margaret, The (Il maestro e Margherita) (1972)",Drama|Fantasy|Romance +82378,All Good Things (2010),Drama|Mystery|Thriller +82380,Night Catches Us (2010),Drama|Romance +82382,"Interrogation, The (Kuulustelu) (2009)",Drama +82384,Hôtel des Invalides (1952),Documentary +82386,Shades of Fern (Stín kapradiny) (1984),Drama +82388,"Sergeant, The (1968)",Drama +82390,Different from the Others (Anders als die Andern) (1919),Drama +82393,Stray Dogs (Sag-haye velgard) (2004),Drama +82395,Saving Shiloh (2006),Children|Drama +82397,"Last Summer of La Boyita, The (El último verano de la Boyita) (2009)",Drama +82420,Pray the Devil Back to Hell (2008),Documentary +82438,Tali-Ihantala 1944 (2007),Action|Drama|War +82447,"Tomorrow, When the War Began (2010)",Action|Adventure|Drama +82449,I Love You Too (2010),Comedy +82452,Frozen (2007),Drama +82454,Days of Glory (1944),Drama|Romance|War +82459,True Grit (2010),Western +82461,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX +82463,Another Year (2010),Drama +82465,It's Alive III: Island of the Alive (1987),Comedy|Drama|Horror|Sci-Fi +82467,Forever Amber (1947),Drama +82469,Billy the Kid (1941),Drama|Western +82476,Interrupted Melody (1955),Drama|Musical +82491,Cooperstown (1993),Drama +82499,How Do You Know (2010),Comedy|Drama|Romance +82525,Nömadak TX (2006),Documentary|Musical +82527,Barney's Version (2010),Drama +82529,Soo (Art of Revenge) (2007),Action|Crime|Drama|Thriller +82531,One Foot in Heaven (1941),Drama +82534,"Company Men, The (2010)",Drama +82536,"Mad Miss Manton, The (1938)",Comedy|Crime|Mystery|Romance +82564,"Last of the Mohicans, The (1936)",Adventure|Drama|War +82567,Riffraff (1936),Crime|Drama +82581,Dying Breed (2008),Horror|Thriller +82584,The Great Waltz (1938),Drama|Musical|Romance +82589,Mother and Child (2009),Drama|Romance +82591,Adventures of Power (2008),Comedy|Musical +82593,How to Seduce Difficult Women (2009),Comedy +82595,Great Communist Bank Robbery (Marele jaf comunist) (2004),Documentary +82597,"Catered Affair, The (1956)",Comedy|Drama|Romance +82602,Titanic Town (1998),Drama +82606,Life in Flight (2008) ,Drama +82608,Zerophilia (2005),Comedy|Romance +82631,Duelist (Hyeongsa) (2005),Action|Mystery +82633,"Kuroneko (Black Cat from the Grove, The) (Yabu no naka no kuroneko) (1968)",Drama|Fantasy|Horror|Romance +82635,Glue (2006),Drama +82638,Under the Sun of Satan (Sous le soleil de Satan) (1987),Drama +82641,"One-Armed Swordsman, The (Dubei dao) (1967)",Action|Drama +82643,Top of the Food Chain (a.k.a. Invasion!) (1999),Comedy|Horror|Sci-Fi +82667,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller +82669,"Night Train Murders (Last Stop on the Night Train) (Ultimo treno della notte, L') (1975)",Horror|Thriller +82671,7 Virgins (7 vírgenes) (2005),Crime|Drama +82673,Unmade Beds (2009),Comedy|Drama +82676,Hannie Caulder (1971),Comedy|Crime|Drama|Western +82678,"Breach, The (Rupture, La) (1970)",Drama|Thriller +82680,Stars in My Crown (1950),Drama|Western +82682,Mickey One (1965),Crime|Drama +82684,Trash Humpers (2009),Drama +82698,Demonic Toys (1992),Comedy|Fantasy|Horror +82701,Life Is All You Get (Das Leben ist eine Baustelle.) (1997),Comedy|Drama +82703,We Are The Night (Wir sind die Nacht) (2010),Drama|Fantasy|Horror +82705,"Desert of the Tartars, The (Deserto dei Tartari, Il) (1976)",Drama|War +82711,Valley of the Bees (Údolí vcel) (1968),Drama +82713,"Devil's Trap, The (Dáblova past) (1962)",Drama +82715,Morsian yllättää (1941),Comedy +82722,"Sarah, Plain and Tall (1991)",Children|Drama +82726,Black Sheep (Schwarze Schafe) (2006),Comedy +82732,New York Confidential (1955),Crime|Drama|Film-Noir +82739,"Garfield Christmas Special, A (1987)",Animation|Children|Comedy|Musical +82744,Faster (2010),Action|Crime|Drama +82747,"Insect Woman, The (Nippon konchûki) (1963)",Drama +82749,Pigs and Battleships (Hogs and Warships) (The Flesh Is Hot) (Buta to gunkan) (1961),Comedy|Crime|Drama +82751,From B Movie to Cult Film: Western (2005),Adventure|Documentary +82753,Life As a Fatal Sexually Transmitted Disease (Zycie jako smiertelna choroba przenoszona droga plciowa) (2000),Drama +82759,On the Silver Globe (Na srebrnym globie) (1988),Sci-Fi +82765,Little Big Soldier (Da bing xiao jiang) (2010),Action|Adventure|Comedy|Drama|War +82767,Rabbit Hole (2010),Drama +82770,Nights and Weekends (2008),Drama +82772,Hotte in Paradise (Hotte im Paradies) (2003),Drama +82834,Elena and Her Men (Paris Does Strange Things) (Elena et les hommes) (1956),Comedy|Drama|Romance +82836,"Life of Reilly, The (2006)",Comedy +82840,"Home Song Stories, The (2007)",Drama +82842,"Lottery, The (2010)",Documentary|Drama +82848,One Week (1920),Comedy +82850,Convict 13 (1920),Comedy +82852,Little Fockers (2010),Comedy +82854,Gulliver's Travels (2010),Adventure|Comedy|Fantasy +82857,Sweetgrass (2009),Adventure|Documentary|Western +82877,Moonlight Serenade (2009),Musical|Romance +82902,Chori Chori Chupke Chupke (2001),Drama|Romance +82904,"Return of the King, The (1980)",Adventure|Animation|Fantasy|Musical +82906,Baghban (2003),Drama|Romance +82909,Take the High Ground! (1953),Comedy|Drama|War +82911,"Cowboy and the Lady, The (1938)",Comedy|Drama|Romance|Western +82915,"Tiger's Tail, The (2006)",Comedy|Crime|Drama|Mystery|Thriller +82917,Blood and Concrete (Blood & Concrete: A Love Story) (1991),Comedy|Crime +82920,Thirst (a.k.a. Three Strange Loves) (Törst) (1949),Drama +82926,Klown: The Movie (Klovn) (2010),Comedy +82928,Nude Nuns with Big Guns (2010),Action|Comedy +82931,"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)",Comedy|Drama|War +82934,"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)",Documentary +82976,"Scarecrow, The (1920)",Comedy +82978,Neighbors (1920),Comedy +82980,Mujhse Shaadi Karogi (2004),Comedy|Romance +82982,Primrose Path (1940),Drama +82984,Mission to Moscow (1943),Drama|War +82991,Stalin (1992),Drama +83004,Tere Bin Laden (2010),Comedy|Drama +83006,"Scientist, The (2010)",Drama +83034,Death of a Salesman (1951),Drama +83038,Disco Dancer (1983),Action|Musical|Romance +83049,Toothless (1997),Children|Comedy +83051,Steam (2007),Comedy|Drama|Romance +83056,Topper Takes a Trip (1938),Comedy|Fantasy|Romance +83059,White Material (2009),Drama|Mystery|Thriller|War +83067,And Soon the Darkness (2010),Horror|Thriller +83071,"North Star, The (1943)",Drama|Musical|Romance|War +83082,Mao's Last Dancer (2009),Drama +83086,Burlesque (2010),Drama|Musical|Romance +83089,Violet Tendencies (2010),Comedy|Drama|Romance +83096,"Haunted House, The (1921)",Comedy +83115,"Polar Bear King, The (Kvitebjørn Kong Valemon) (1991)",Adventure|Children|Fantasy +83132,"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)",Animation|Children|Fantasy +83134,Tucker & Dale vs Evil (2010),Comedy|Horror +83138,Erasing David (2010),Documentary +83158,Malice in Wonderland (2009),Drama|Fantasy|Romance +83163,Princess Aurora (Orora gongju) (2005),Crime|Drama|Mystery +83177,Yogi Bear (2010),Children|Comedy +83180,Countdown to Zero (2010),Documentary +83182,Funky Forest: The First Contact (2005),Comedy +83184,Breathless (Ddongpari) (2009),Crime|Drama +83186,"Django, Kill... If You Live, Shoot! (Se sei vivo spara) (1967)",Horror|Western +83189,Merrill's Marauders (1962),Adventure|Drama|War +83193,Early Spring (Soshun) (1956),Drama +83219,"Pixar Story, The (2007)",Documentary +83222,Trouble in Mind (1985),Crime|Drama +83225,Cochochi (2007),Drama +83227,L.627 (1992),Crime|Drama|Thriller +83232,White Wedding (Noce blanche) (1989),Drama|Romance +83241,Embodiment of Evil (Encarnação do Demônio) (2008),Mystery +83244,"It's Not Me, I Swear! (C'est pas moi, je le jure!) (2008)",Comedy|Drama +83246,Navajo Joe (1966),Western +83248,This Night I'll Possess Your Corpse (Esta Noite Encarnarei no Teu Cadáver) (1967),Horror +83250,Bad Ronald (1974),Drama|Horror|Thriller +83256,"State Witness, The (Swiadek koronny) (2007)",Action|Crime|Drama +83258,C(r)ook (Basta - Rotwein Oder Totsein) (2004),Comedy +83260,Hardcover (2008),Comedy +83264,Band Baaja Baaraat (2010),Comedy|Drama|Musical +83266,Kaho Naa... Pyaar Hai (2000),Action|Adventure|Comedy|Drama|Mystery|Romance|Thriller +83268,Flow (2008),Documentary +83270,Made in Dagenham (2010),Comedy|Drama +83273,Smoke on the Potato Fields (Dým bramborové nate) (1977),Drama +83275,Mág (1988),Drama +83277,Last Days of Mussolini (Mussolini: Ultimo atto) (1974),Drama|War +83279,Samoure (2005),Drama +83281,"Family Jewels, The (Eierdiebe) (2003)",Comedy|Drama|Romance +83291,"Order of Myths, The (2008)",Documentary +83293,Waste Land (2010),Documentary +83295,Paternity (1981),Comedy|Romance +83300,Christmas at Pee Wee's Playhouse (a.k.a. Pee-Wee's Playhouse Christmas Special) (1988),Children|Comedy|Musical +83302,Last Night (2010),Drama|Romance +83308,Asphalt (1929),Drama +83310,Harlan: In the Shadow of Jew Suess (Harlan - Im Schatten von Jud Süss) (2006),Documentary +83316,"Bingo Long Traveling All-Stars & Motor Kings, The (1976)",Comedy +83318,"Goat, The (1921)",Comedy +83320,Skidoo (1968),Comedy +83322,"Boat, The (1921)",Comedy +83324,Cirque du Soleil: Dralion (2001),Fantasy|Musical|Mystery +83326,Cirque du Soleil: Varekai (2003),Comedy|Fantasy|Musical|Mystery +83330,Rasputin (1996),Drama +83332,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary +83334,Train (2008),Horror|Thriller +83337,Mujhse Dosti Karoge! (2002),Drama|Romance +83339,Main Prem Ki Diwani Hoon (2003),Comedy|Drama|Romance +83343,Mister 880 (1950),Comedy +83345,"Bread, Love and Dreams (Pane, amore e fantasia) (1953)",Comedy|Romance +83349,"Green Hornet, The (2011)",Action|Comedy|Crime|Fantasy|Thriller|IMAX +83351,The Miracle of Our Lady of Fatima (1952),Drama +83357,A Gathering of Eagles (1963),Drama|Romance +83359,"Play House, The (1921)",Comedy +83361,"Paleface, The (1922)",Comedy +83369,"Way Back, The (2010)",Drama +83374,"Warrior's Way, The (2010)",Action|Fantasy|Western +83376,Disraeli (1929),Drama +83381,Seven Thieves (1960),Crime|Drama +83385,Handsome Harry (2009),Crime|Drama +83389,Jacques Brel Is Alive and Well and Living in Paris (1975),Musical +83411,Cops (1922),Comedy +83415,Agony (a.k.a. Rasputin) (Agoniya) (1981),Drama +83417,Canciones de amor en Lolita's Club (2007),Drama +83424,Ghajini (2008),Action|Romance|Thriller +83430,Fool N Final (2007),Action|Comedy|Romance +83435,"Hatful of Rain, A (1957)",Drama +83437,"Young in Heart, The (1938)",Comedy|Drama +83439,Toys in the Attic (1963),Drama +83446,Orchestra Wives (1942),Musical +83448,Attack on Leningrad (2009),Drama|War +83450,Brest Fortress (Brestskaya krepost) (2010),Action|Drama|War +83457,Hum Aapke Hain Koun...! (1994),Comedy|Drama|Musical +83464,Only Two Can Play (1962),Comedy|Drama +83468,Chinaman (Kinamand) (2005),Drama +83478,Ong-Bak 3: The Final Battle (Ong Bak 3) (2010),Action +83480,Season of the Witch (2011),Adventure|Drama|Fantasy +83506,Ricky Gervais Live 4: Science (2010),Comedy +83525,Outrage (Autoreiji) (2010),Crime|Drama +83527,Madeinusa (2006),Drama +83529,Hamsun (1996),Drama|War +83531,"Two of Us, The (Le vieil homme et l'enfant) (1967)",Comedy|Drama +83533,Lola and Billy the Kid (Lola + Bilidikid) (1999),Drama +83535,"Princess and the Goblin, The (1992)",Animation|Fantasy +83538,"Léon Morin, Priest (Léon Morin, prêtre) (1961)",Drama +83540,"Silence of the Sea, The (Le silence de la mer) (1949)",Drama|Romance|War +83556,Stella (2008),Drama +83558,On the Occasion of Remembering the Turning Gate (Saenghwalui balgyeon) (2002),Drama +83560,Macario (1960),Drama|Fantasy|Mystery +83562,Will It Snow For Christmas? (Y'aura-t-il de la neige à Noël?) (1996),Drama +83569,Eros Plus Massacre (Erosu purasu Gyakusatsu) (1969),Drama +83575,"Muertos, Los (2004)",Drama +83577,"Spy in Black, The (1939)",Thriller|War +83579,Sin Retorno (2010),Drama|Thriller +83581,"Marrying Kind, The (1952)",Comedy|Drama +83583,Distance (2001),Drama +83585,It's Alive (2008),Horror +83588,"I Love You, I Love You (Je t'aime je t'aime) (1968)",Drama|Sci-Fi +83590,Zotz! (1962),Comedy|Fantasy|Horror +83592,"Letter, The (La lettre) (1999)",Drama +83601,Amer (2009),Drama|Horror +83603,Fern flowers (Fleur de fougère) (1949),Animation +83605,Saint Ange (House of Voices) (2004),Drama|Fantasy|Horror|Mystery +83607,Manon (1949),Crime|Drama +83611,Clonehunter (2009),Sci-Fi +83613,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX +83616,"Real McCoy, The (1999)",Drama +83619,Just Like Me (Igualita a Mi) (2010),Comedy|Romance +83652,Emma's Bliss (Emmas Glück) (2006),Drama|Romance +83654,Don't Think About It (Non Pensarci) (2007),Comedy|Drama +83656,Tango Kabaree (2001),Comedy|Drama +83658,Jackpot 2 (1982),Sci-Fi +83660,Trog (1970),Horror|Sci-Fi +83662,Spring Fever (1927),Comedy|Romance +83664,Riot on Sunset Strip (1967),Drama +83666,Gitarrmongot (2004),Drama +83668,Southern District (Zona Sur) (2009),Drama +83671,Gen 13 (a.k.a. Gen13: The Animated Movie) (1999),Action|Animation|Sci-Fi +83756,Facing the Truth (At kende sandheden) (2002),Drama +83758,"Amour fou, L' (2010)",Documentary +83760,V2: Dead Angel (Vares 2 - Jäätynyt Enkeli) (2007),Action|Comedy|Crime +83763,My Wife's Relations (1922),Comedy +83765,"Blacksmith, The (1922)",Comedy +83767,"Naked Edge, The (1961)",Thriller +83773,Away with Words (San tiao ren) (1999),(no genres listed) +83777,"Strongest Man in the World, The (1975)",Comedy|Fantasy +83789,Siete minutos (Seven Minutes) (2009),Comedy +83791,Gung Ho! (Gung Ho!: The Story of Carlson's Makin Island Raiders) (1943),Drama|War +83796,Anything for Her (Pour elle) (2008),Crime|Drama|Thriller +83798,Cracks (2009),Drama|Romance|Thriller +83801,"Film Unfinished, A (Shtikat Haarchion) (2010)",Documentary|Drama +83803,Day & Night (2010),Animation|Children +83807,"Russell Peters: Red, White and Brown (2008)",Comedy|Documentary +83809,Russell Peters: Outsourced (2006),Comedy|Documentary +83819,Plymouth Adventure (1952),Adventure|Drama|Romance +83821,"Happy Ending, The (1969)",Drama +83823,Visit to a Small Planet (1960),Comedy|Sci-Fi +83825,Kismet (1944),Adventure|Fantasy +83827,Marwencol (2010),Documentary +83829,Scorpio Rising (1964),(no genres listed) +83831,"Story of Dr. Wassell, The (1944)",Action|Adventure|Drama|Romance|War +83833,Street Angel (1928),Drama +83835,"Frozen North, The (1922)",Comedy +83837,"Electric House, The (1922)",Comedy +83842,"Edge, The (Kray) (2010)",Adventure|Drama|Romance +83897,"Living Wake, The (2007)",Comedy +83910,"Dilemma, The (2011)",Comedy|Drama +83912,Frankie and Alice (2010),Drama +83916,Blues in the Night (1941),Drama|Film-Noir|Musical +83918,"Gorgeous Hussy, The (1936)",Drama +83920,Pete 'n' Tillie (1972),Comedy|Drama +83923,Wicked Little Things (2006),Horror +83927,Lucky Jordan (1942),Comedy|Crime|Drama +83956,Om Jai Jagadish (2002),Drama +83962,Daydreams (1922),Comedy +83969,Down Argentine Way (1940),Comedy|Drama|Romance +83972,"Europeans, The (1979)",Drama|Romance +83974,My Dear Secretary (1948),Comedy|Romance +83976,"Trip, The (2010)",Comedy|Drama +83978,Walt & El Grupo (2008),Documentary +83986,Good Time Max (2007),Drama +84015,Gravity (Schwerkraft) (2009),Crime|Drama|Romance +84017,2012: Time for Change (2010),Animation|Documentary +84019,Cool It (2010),Documentary +84047,Eight Miles High (Das wilde Leben) (2007),Drama +84090,Treeless Mountain (2008),Drama +84092,Decision at Sundown (1957),Western +84094,Beware of a Holy Whore (Warnung vor einer heiligen Nutte) (1971),Comedy|Drama +84096,Kisses (2008),Drama +84098,Phone Call from a Stranger (1952),Drama +84100,Throw Down (Yau doh lung fu bong) (2004),Drama +84103,Congorama (2006),Comedy|Drama +84111,"Nun, The (La religieuse) (1966)",Drama +84114,"S21: The Khmer Rouge Death Machine (S-21, la machine de mort Khmère rouge) (2003)",Documentary|War +84116,Poetry (Shi) (2010),Drama +84118,Birdwatchers (BirdWatchers - La terra degli uomini rossi) (2008),Drama +84120,Wittgenstein (1993),Comedy|Drama +84122,History Is Made at Night (1937),Drama|Romance +84125,Monte Carlo (1930),Comedy|Musical|Romance +84128,"Tuesday, After Christmas (Marti, dupa craciun) (2010)",Drama|Romance +84131,City of Pirates (La ville des pirates) (1983) ,Drama|Fantasy +84133,Short Night of the Glass Dolls (La corta notte delle bambole di vetro) (1971),Horror|Mystery|Thriller +84137,"Housemaid, The (Hanyo) (2010)",Thriller +84140,Message from Space (Uchu Kara no Messeji) (Return to Jelucia) (1978),Action|Adventure|Sci-Fi +84148,Five (1951),Drama|Horror|Sci-Fi +84150,"Prowler, The (1951)",Drama|Film-Noir|Thriller +84152,Limitless (2011),Sci-Fi|Thriller +84154,Transcendent Man (2009),Documentary +84156,Happy People: A Year in the Taiga (2010),Documentary +84158,Craig's Wife (1936),Drama +84160,Wishful Drinking (2010),Documentary +84162,"One and Only, The (2002)",Comedy|Romance +84164,Brute (Bandyta) (1998),Drama +84173,Ca$h (2008),Action|Comedy|Crime|Thriller +84176,Waxworks (Das Wachsfigurenkabinett) (1924),Comedy|Drama|Romance|Thriller +84178,Jew Süss (Jud Süß) (1940),Drama +84181,Shogun's Ninja (Ninja bugeicho momochi sandayu) (1980),Action|Adventure|Drama +84183,Makai Tensho: Samurai Reincarnation (Makai tenshô) (1981),Action|Fantasy|Horror +84187,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi +84189,I Spit on Your Grave (2010),Crime|Horror|Thriller +84192,Corto Maltese: Ballad of the Salt Sea (Corto Maltese - La ballade de la mer salée) (2003),Animation +84223,Mademoiselle Chambon (2009),Drama|Romance +84226,First Love (2004),Drama|Romance +84228,"Girl by the Lake, The (La ragazza del lago) (2007)",Drama|Mystery|Thriller +84230,"Balloonatic, The (1923)",Comedy +84232,"Love Nest, The (1923)",Comedy +84234,Simple Simon (I rymden finns inga känslor) (2010),Comedy|Drama +84236,"White Stripes Under Great White Northern Lights, The (2009)",Documentary +84238,Aankhen (2002),Comedy|Crime|Thriller +84240,Even the Rain (También la lluvia) (2010),Drama +84242,Welcome to the Rileys (2010),Drama +84246,It Happened on Fifth Avenue (1947),Comedy|Romance +84248,"Organizer, The (I compagni) (1963)",Crime|Drama +84250,Christmas Holiday (1944),Drama|Film-Noir +84252,Back Street (1961),Drama +84258,Up in Arms (1944),Comedy|Musical +84260,"Traveler, The (2010)",Horror|Thriller +84262,Chain Letter (2009),Horror|Mystery|Thriller +84273,Zeitgeist: Moving Forward (2011),Documentary +84276,"Stewart Lee: If You Prefer a Milder Comedian, Please Ask for One (2010)",Comedy +84279,Look What's Happened to Rosemary's Baby (a.k.a. Rosemary's Baby II) (1976),Drama|Horror +84281,"Great Stone Face, The (1968)",Documentary +84283,Speed & Angels (2008),Documentary|Drama +84291,Torch Song (1953),Drama|Romance +84293,Of Human Hearts (1938),Drama +84296,Princess O'Rourke (1943),Comedy|Romance +84298,Trial (1955),Drama +84300,"Whisperers, The (1967)",Drama|Thriller +84302,And Now My Love (Toute une vie) (1974),Drama|Romance +84304,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance +84312,Home Alone 4 (2002),Children|Comedy|Crime +84329,"Code Conspiracy, The (2002)",Action|Mystery|Thriller +84334,"Rich, Young and Pretty (1951)",Comedy|Musical|Romance +84366,I Knew It Was You: Rediscovering John Cazale (2009),Documentary +84372,"Rains of Ranchipur, The (1955)",Adventure|Drama|Romance +84374,No Strings Attached (2011),Comedy|Romance +84387,Boogie Woogie (2009),Comedy|Drama +84392,"Lincoln Lawyer, The (2011)",Crime|Drama|Thriller +84395,"Rite, The (2011)",Drama|Horror|Thriller +84407,Dog Pound (2010),Drama +84414,All-Star Superman (2011),Action|Adventure|Animation|Sci-Fi +84436,Less is More (Menos es más) (2000),Comedy +84442,Dark Forces (Harlequin) (1980),Drama|Fantasy|Mystery +84444,And Everything Is Going Fine (2010),Documentary +84446,Eccentricities of a Blonde-haired Girl (Singularidades de uma Rapariga Loura) (2009),Drama|Romance +84448,The Law of the Weakest (2006),Crime|Drama|Thriller +84450,Tale of Cinema (Geuk jang jeon) (2005),Drama +84453,"Little Thief, The (Le petit voleur) (1999)",Drama +84455,Hadewijch (2009),Drama +84467,High and Dry (1954),Comedy +84469,"Devil's Playground, The (1976)",Drama +84471,Mysterious Object at Noon (Dokfa nai meuman) (2000),Drama|Mystery +84473,Little Soldier (Lille soldat) (2008),Drama +84475,"Rise and Fall of Legs Diamond, The (1960)",Crime +84477,"Day a Pig Fell Into the Well, The (Daijiga umule pajinnal) (1996)",Drama +84479,Remember My Name (1978),Drama|Thriller +84481,Who's Camus Anyway? (Kamyu nante shiranai) (2005),Drama +84483,"Magic Gloves, The (Los guantes mágicos) (2003)",Comedy|Drama +84485,Riot in Cell Block 11 (1954),Drama +84496,Nickelodeon (1976),Comedy +84498,Lucky Lady (1975),Comedy|Drama +84500,Seventh Horse of the Sun (Suraj Ka Satvan Ghoda) (1993),Drama|Romance +84502,"World According to Sesame Street, The (2006)",Documentary|War +84504,Raja (2003),Drama +84506,Silent Souls (Ovsyanki) (2010),Drama +84508,The Raid (1954),Action|Drama|War +84510,Belphecor: Curse of the Mummy (Belphégor - Le fantôme du Louvre) (2001),Fantasy|Horror|Mystery +84512,Girls About Town (1931),Comedy +84523,Kill! (Kiru) (1968),Action|Comedy|Drama +84525,Virus X (2010),Horror|Sci-Fi +84529,Thirty-Five Something (Tout pour plaire) (2005),Comedy +84532,Tyler Perry's For Colored Girls (2010),Drama +84534,Kolberg (1945),Drama|War +84538,"Suspended Vocation, The (La vocation suspendue) (1978)",Drama +84540,"Hole in the Soul, A (Rupa u dusi) (1994)",Comedy|Documentary +84551,44500 Max (2009),Documentary +84553,Pekka ja Pätkä salapoliiseina (1957),Comedy +84555,Slave Ship (1937),Adventure|Drama +84557,From Prada to Nada (2011),Comedy|Romance +84559,Young Aphrodites (Mikres Afrodites) (1963),Drama|Romance +84563,Offspring (2009) ,Horror +84565,Legend of the Eight Samurai (Satomi hakken-den) (1983),Action|Adventure|Drama|Fantasy +84570,Country Strong (2010),Drama|Musical|Romance +84601,Unknown (2011),Drama|Mystery|Thriller +84613,Sanctum (2011),Action|Adventure|Drama|Thriller|IMAX +84615,Cedar Rapids (2011),Comedy +84619,Tongan Ninja (2002),Action|Adventure|Comedy +84621,Mirrors 2 (2010),Horror|Mystery|Thriller +84637,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance +84639,Saps at Sea (1940),Comedy +84641,Skippy (1931),Comedy|Drama +84643,Allegheny Uprising (1939),Action|Adventure|Western +84646,All the Brothers Were Valiant (1953),Adventure|Drama|Romance +84648,Ulysses (1967),Drama +84660,"Misadventures of Margaret, The (1998)",Comedy|Romance +84663,Elizabeth I (2005),Drama +84665,Pepe (1960),Comedy|Musical +84667,When Ladies Meet (1941),Comedy|Drama|Romance +84669,Lloyds of London (1936),Drama|Romance|War +84671,Libel (1959),Drama +84680,My Foolish Heart (1949),Drama +84686,Trader Horn (1931),Adventure|Romance +84689,They Gave Him A Gun (1937),Crime|Drama +84691,Rage in Heaven (1941),Drama|Thriller +84696,Burke and Hare (2010),Comedy|Thriller +84714,Hands of the Ripper (1971),Horror|Thriller +84716,Castaway on the Moon (Kimssi pyoryugi) (2009),Comedy|Drama|Romance +84730,Army of Crime (L'armée du crime) (2009),Drama|Thriller|War +84732,Vanishing on 7th Street (2010),Horror|Mystery|Thriller +84734,Old Man Made in Spain (Abuelo made in Spain) (1969),Comedy +84736,Tuareg: The Desert Warrior (Tuareg - Il guerriero del deserto) (1984),Action|Adventure +84738,Slaughter (2009),Horror|Thriller +84740,Open House (2010) ,Crime|Drama|Thriller +84764,Werewolves on Wheels (1971),Horror +84766,Fantasma (2006),Drama +84768,Glitterbug (1994),(no genres listed) +84770,Client 9: The Rise and Fall of Eliot Spitzer (2010),Documentary +84772,Paul (2011),Adventure|Comedy|Sci-Fi +84775,Submarino (2010),Drama +84777,All the Colors of the Dark (1972),Horror|Mystery|Thriller +84779,Inspector Bellamy (Bellamy) (2009),Crime|Drama +84781,"Notorious Landlady, The (1962)",Comedy|Mystery +84792,Szamanka (1996),Drama|Horror|Mystery +84794,What Is It? (2005),Drama +84796,"8 Diagram Pole Fighter, The (a.k.a. Invincible Pole Fighter) (Wu Lang ba gua gun) (1984)",Action|Drama +84799,"Asphyx, The (1973)",Horror|Sci-Fi +84801,Sut (Milk) (2008),Drama +84805,Midnight Movies: From the Margin to the Mainstream (2005),Documentary +84807,Hideaway (2009),Drama +84829,Three Crowns of the Sailor (Les trois couronnes du matelot) (1983),Drama|Fantasy +84832,Don Quixote (Don Quijote de Orson Welles) (1992),Drama +84834,Three Kingdoms: Resurrection of the Dragon (Saam gwok dzi gin lung se gap) (2008),Action|Drama|War +84836,"Spiders, Part 2: The Diamond Ship, The (Die Spinnen, 2. Teil - Das Brillantenschiff) (1920)",Action|Adventure|Drama +84838,Harakiri (1919),Drama +84844,Brother 2 (Brat 2) (2000),Crime|Drama +84847,Emma (2009),Comedy|Drama|Romance +84852,Judith of Bethulia (1914),Adventure|Drama|Romance +84855,Desert Flower (2009),Drama +84857,Adrift in Tokyo (Tenten) (2007),Comedy|Drama +84859,"Cold Light of Day, The (1996)",Drama|Thriller +84861,"Jimmy Rosenberg: The Father, the Son & the Talent (2006)",Documentary +84863,Spider Lilies (Ci qing) (2007),Drama|Romance +84866,On Earth as It Is in Heaven (Así en el cielo como en la tierra) (1995),Comedy +84869,In the Midst of Life (Au coeur de la vie) (1963),Drama|War +84871,At Long Last Love (1975),Comedy|Musical|Romance +84876,Bungee Jumping of Their Own (Beonjijeompeureul hada) (2001),Drama|Romance +84880,"Infidel, The (2010)",Comedy +84884,"Feuerzangenbowle, Die (1944)",Comedy +84890,Incantato (Il cuore altrove) (2003),Comedy|Drama|Romance +84894,Run of the Arrow (1957),Western +84942,Drive Angry (2011),Action|Fantasy|Thriller +84944,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western +84948,Thunder Bay (1953),Adventure +84950,Take Me Home Tonight (2011),Comedy|Drama +84952,Confessions (Kokuhaku) (2010),Drama|Horror +84954,"Adjustment Bureau, The (2011)",Romance|Sci-Fi|Thriller +84957,"Tempest, The (2010)",Comedy|Drama|Fantasy|Romance +84961,Tycoon (1947),Adventure|Drama|Romance +84963,Journey for Margaret (1942),Drama|War +84972,God on Trial (2008),Drama +84974,Holokaustin värit (2010),Documentary|War +84976,Chronicle of the Years of Fire (Chronique des années de braise) (1975),Drama +84978,"Long Absence, The (Une aussi longue absence) (1961)",Drama +84980,Lapland Odyssey (Napapiirin sankarit) (2010),Comedy|Drama|Romance +84983,Edge of Darkness (1943),Drama|War +84985,"Magus, The (1968)",Drama|Fantasy|Mystery +84987,Elvis on Tour (1972),Documentary|Musical +84989,Italianamerican (1974),Documentary +84996,Presumed Guilty (Presunto culpable) (2008),Crime|Documentary +85007,Happythankyoumoreplease (2010),Comedy|Drama +85010,Background to Danger (1943),Drama|Thriller|War +85012,"Given Word, The (O Pagador de Promessas) (1962)",Drama +85014,Autumn Leaves (1956),Drama +85016,Cropsey (2009),Documentary|Horror +85020,"Mechanic, The (2011)",Action|Drama|Thriller +85022,Hall Pass (2011),Comedy +85025,"Eagle, The (2011)",Adventure|Drama +85056,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX +85070,Blackout (2007),Drama +85072,"Wild and Wonderful Whites of West Virginia, The (2009)",Documentary +85106,"Assassin Next Door, The (Kirot) (2009)",Action|Film-Noir|Thriller +85108,Lakota Woman: Siege at Wounded Knee (1994),Drama +85129,71: Into The Fire (Pohwasogeuro) (2010),War +85131,Battle: Los Angeles (2011),Action|Sci-Fi|War +85133,"Burn, Witch, Burn (Night of the Eagle) (1962)",Horror +85143,Adam Had Four Sons (1941),Drama|Romance +85175,Liliom (1934),Drama|Fantasy +85177,$ (Dollars) (1971),Comedy|Crime|Drama +85179,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi +85181,Pooh's Grand Adventure: The Search for Christopher Robin (1997),Adventure|Animation|Children|Musical +85186,Corto Maltese: Under the Sign of Capricorn (Sous le signe du capricorne) (2002),Animation|Drama|Romance|War +85188,Corto Maltese: The Guilded House of Samarkand (La maison dorée de Samarkand) (2004),Adventure|Animation|Drama|Romance|War +85190,Public Speaking (2010),Documentary +85203,Liliom (1930),Drama|Fantasy +85205,"Merry Widow, The (1925)",Drama|Romance +85209,Rasen (1998),Drama|Fantasy|Horror|Mystery|Thriller +85211,Norwegian Wood (Noruwei no mori) (2010),Drama|Romance +85213,"Sunset Limited, The (2011)",Drama +85215,Ninja Cheerleaders (2008),Action|Comedy +85226,"Janky Promoters, The (2009)",Comedy|Crime|Musical +85231,Twenty-Four Eyes (Nijûshi no hitomi) (1954),Drama +85259,Winnie the Pooh and the Honey Tree (1966),Animation|Children +85261,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX +85268,Scooby-Doo! The Mystery Begins (2009),Comedy|Fantasy|Mystery +85270,Twisted Nerve (1968),Crime|Drama|Horror|Thriller +85273,Crude (2009),Documentary +85275,Uncounted: The New Math of American Elections (2008),Documentary +85278,"City of Your Final Destination, The (2009)",Drama +85284,Anna Madelina (Ngon na ma dak lin na) (1998),Comedy|Romance +85291,Fubar II (Fubar: Balls to the Wall) (2010),Comedy +85293,"Bannen Way, The (2010)",Action|Comedy|Crime|Thriller +85295,Scooby-Doo! Curse of the Lake Monster (2010),Adventure|Children|Comedy|Mystery +85298,Black Lightning (Chernaya Molniya) (2009),Action|Adventure|Sci-Fi +85305,Holy Rollers (2010),Crime|Drama +85307,Medicine for Melancholy (2008),Drama|Romance +85309,Summer Holiday (1948),Musical +85312,"House of Small Cubes, The (Tsumiki no ie) (2008)",Animation|Drama +85316,Winnie the Pooh and Tigger Too (1974),Animation|Children +85319,Mandabi (The Money Order) (1968),Drama +85323,In the City (En la ciudad) (2003),Drama +85325,"County Teacher, The (Venkovský ucitel) (2008)",Drama +85327,Trapped Ashes (2006),Horror +85330,She and Her Cat (Kanojo to kanojo no neko) (1999),Animation|Drama +85332,Closing the Ring (2007),Drama|Romance +85334,Hard Ticket to Hawaii (1987),Action|Comedy +85342,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama +85344,Melissa P. (2005),Drama +85354,Mesrine: Public Enemy #1 (L'ennemi public n°1) (2008),Action|Crime +85358,"Last Lovecraft: Relic of Cthulhu, The (2009)",Comedy|Horror +85360,Cthulhu (2007),Drama|Thriller +85362,Herb & Dorothy (2008),Documentary +85365,"Wildest Dream, The (2010)",Documentary +85367,Just Go with It (2011),Comedy|Romance +85369,For Love of Ivy (1968),Comedy|Drama|Romance +85372,Potiche (2010),Comedy +85374,Emma (1932),Comedy|Drama|Romance +85378,Mother Carey's Chickens (1938),Drama|Romance +85387,Chang: A Drama of the Wilderness (1927),Adventure|Documentary +85389,Mannequin (1937),Drama +85392,Just Buried (2008),Comedy|Drama|Romance +85394,Cave of Forgotten Dreams (2010),Documentary +85397,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller +85399,"Big Mommas: Like Father, Like Son (2011)",Comedy +85401,Super (2010),Action|Comedy|Drama +85403,"Little Night Music, A (1977)",Comedy|Musical|Romance +85410,Täällä Pohjantähden alla II (2010) ,Drama|War +85412,"Troll Hunter, The (Trolljegeren) (2010)",Fantasy|Horror +85414,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller +85438,Jane Eyre (2011),Drama|Romance +85440,Smilin' Through (1932),Drama|Romance +85442,Children of the Decree (Das Experiment 770 - Gebären auf Befehl) (2005),Documentary +85445,"My Beautiful Dacia (Dacia, dragostea mea) (2009)",Documentary +85450,Casanova Brown (1944),Comedy +85453,Kind Lady (1951),Drama|Thriller +85476,Wild Is the Wind (1957),Drama +85505,X Games 3D: The Movie (2009),Documentary +85510,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX +85513,Devour (2005),Horror +85527,Putty Hill (2010),Drama +85538,That Evening Sun (2009),Drama +85540,Essential Killing (2010),Thriller|War +85542,Map of the Sounds of Tokyo (2009),Drama|Thriller +85544,Bye Bye Brazil (Bye Bye Brasil) (1980),Drama +85547,"Hugh Hefner: Playboy, Activist and Rebel (2009)",Documentary +85549,"Mourning Forest, The (Mogari no mori) (2007)",Drama +85552,Journey to the Sun (Günese yolculuk) (1999),Drama +85555,"Kings of Mykonos, The (2010)",Comedy +85565,Chalet Girl (2011),Comedy|Romance +85567,"Letzte schöne Herbsttag, Der (2010)",Comedy|Drama|Romance +85570,"Die Is Cast, The (La suerte está echada) (2005)",Comedy +85572,"New Daughter, The (2009)",Horror|Thriller +85574,Black Bread (Pa Negre) (2010),Drama +85576,Alibi (1929),Crime|Drama +85585,Winnie the Pooh and a Day for Eeyore (1983),Animation|Children +85609,The Good Shepherd (2004),Drama|Thriller +85612,Eden (2006),Drama|Romance +85616,Games (1967),Thriller +85618,Noah's Ark (1928),Drama|War +85624,Bohemian Eyes (Boheemi elää - Matti Pellonpää) (2011),Documentary +85626,Beyond Enemy Lines (Framom främsta linjen) (2004),Drama|War +85679,Goldene Zeiten (2006),Comedy|Crime|Drama +85684,Connected (Bo chi tung wah) (2008) ,Action|Thriller +85686,Breathing Room (2008),Horror|Mystery|Thriller +85689,Otaku (1994),Documentary +85691,Reconstruction (Anaparastasi) (1970),Crime|Drama +85694,Diamond Girl (1998),Drama|Romance +85728,"Second Civil War, The (1997)",Comedy|Drama +85734,Don't You Forget About Me (2009),Documentary +85736,BURN-E (2008),Adventure|Animation|Children|Sci-Fi +85738,Twilight of a Woman's Soul (Sumerki zhenskoi dushi) (1913),Drama +85740,"Dying Swan, The (Umirayushchii lebed) (1917)",Drama +85742,Ingrid (2009),Drama +85744,Sube y Baja (1959),Comedy +85763,Beneath Hill 60 (2010),Drama|War +85770,Formosa Betrayed (2009),Thriller +85772,What No One Knows (Det som ingen ved) (2008),Drama|Thriller +85774,Senna (2010),Documentary +85777,Death Note 2: The Last Name (2006),Adventure|Crime|Drama +85780,Family Guy Presents: It's a Trap (2010),Animation|Comedy|Sci-Fi +85783,Kapitalism: Our Improved Formula (Kapitalism - Reteta noastra secreta) (2010),Documentary +85785,"Curse of the Hedgehog, The (Blestemul ariciului) (2005)",Documentary +85788,Insidious (2010),Fantasy|Horror|Thriller +85790,Meek's Cutoff (2010),Western +85792,"Arise, My Love (1940)",Comedy|Drama|Romance +85794,"Green Years, The (1946)",Drama +85796,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller +85861,"Criminal Code, The (1931)",Crime|Drama|Romance +85863,Night People (1954),Adventure +85874,L: Change the World (2008),Crime|Drama|Horror|Thriller +85881,Win Win (2011),Comedy|Drama +85883,"Jericho Mile, The (1979)",Crime|Drama +85885,Room in Rome (Habitación en Roma) (2010),Drama|Romance +85889,Stand by for Action (1942),Action|Drama|War +85892,Wild Rovers (1971),Western +85894,Johnny in the Clouds (1945),Drama|Romance|War +85896,Tribute to a Bad Man (1956),Western +85910,"Time That Remains, The (2009)",Drama +85955,"Swimsuit Issue, The (Allt flyter) (2008)",Comedy|Drama +85966,Eila (2003),Drama +85981,Happy Here and Now (2002),Drama +85983,Bye Bye Braverman (1968),Comedy|Drama +85985,Artois the Goat (2009),Comedy +85987,River of Grass (1994),Drama +85992,Dead Space: Downfall (2008),Action|Animation|Sci-Fi +85994,Sex Galaxy (2008),Comedy|Sci-Fi +85997,Skeleton Man (2004),Action|Horror +86000,Boy (2010),Comedy|Drama +86002,"Necessities of Life, The (Ce qu'il faut pour vivre) (2008)",Drama +86014,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy +86023,Female Vampire (Les avaleuses) (Erotic Kill) (1973),Horror +86028,Henry's Crime (2010),Comedy|Crime +86033,Flodder in Amerika! (1992),Comedy +86055,"Foster Brothers, The (Süt kardesler) (1976)",Comedy +86057,Outrageous Class (Hababam sinifi) (1975),Comedy|Drama +86059,Hop (2011),Animation|Children|Comedy +86061,"Question of Silence, A (De stilte rond Christine M.) (1982)",Drama +86064,Delta (2008),Drama +86066,Playing the Victim (Izobrazhaya zhertvu) (2006),Comedy +86068,Films to Keep You Awake: The Christmas Tale (Películas para no dormir: Cuento de navidad) (2005),Horror|Thriller +86070,And Along Come Tourists (Am Ende kommen Touristen) (2007),Drama +86077,Film ist. (2000),Documentary +86079,Conflagration (Enjô) (1958),Drama +86081,Ana and the Others (Ana y los otros) (2003),Drama +86083,"Crazy Class Wakes Up, The (Hababam sinifi uyaniyor) (1977)",Comedy +86085,Berta's Motives (Los motivos de Berta: Fantasía de Pubertad) (1985),Drama +86087,"Dunce Class on Vacation, The (Hababam sinifi tatilde) (1978)",Comedy +86089,"Girl with the Red Scarf, The (Selvi boylum, al yazmalim) (1978)",Drama|Romance +86091,"Nutcracker, The (1993)",Children|Fantasy|Musical +86094,24 City (Er shi si cheng ji) (2008),Drama +86096,"Arbor, The (2010)",Documentary +86137,Leap Year (Año bisiesto) (2010),Drama +86139,"Traveler, The (Mossafer) (1974)",Drama +86142,13 Assassins (Jûsan-nin no shikaku) (2010),Action +86145,On Tour (Tournée) (2010),Comedy|Drama +86148,Life Is Hot in Cracktown (2009),Drama +86151,"Koko, a Talking Gorilla (1978)",Documentary +86153,"Captive, The (La captive) (2000)",Drama|Romance +86162,Love That Boy (2003),Comedy|Romance +86166,Crisis (Kris) (1946),Drama +86168,Port of Call (Hamnstad) (1948),Drama +86170,Harry + Max (2004),Drama +86173,"White Hell of Pitz Palu, The (Die weiße Hölle vom Piz Palü) (1929) ",Action|Adventure|Drama +86181,Late Chrysanthemums (Bangiku) (1954),Drama +86190,Hanna (2011),Action|Adventure|Mystery|Thriller +86204,I Became a Criminal (They Made Me a Fugitive) (1947),Crime|Drama|Film-Noir +86206,Dark City (1950),Crime|Drama|Film-Noir|Mystery +86210,St. George Shoots the Dragon (Sveti Georgije ubiva azdahu) (2009),Drama|War +86229,Castle of Purity (El castillo de la pureza) (1973),Drama +86231,Warrendale (1967),Documentary +86233,New Kids Turbo (2010),Action|Comedy +86237,Connections (1978),Documentary +86242,Reykjavik Whale Watching Massacre (2009),Comedy|Horror +86244,Easy Money (Snabba Cash) (2010),Action|Thriller +86246,To Joy (Till glädje) (1950),Drama +86263,Grown Up Movie Star (2009),Drama +86277,Beyond (Svinalängorna) (2010),Drama +86279,Into Eternity (2010),Documentary +86286,Daffy Duck's Quackbusters (1988),Animation|Children|Comedy|Horror +86288,"Day the Universe Changed, The (1985)",Documentary +86290,American: The Bill Hicks Story (2009),Comedy|Documentary +86293,Arthur (2011),Comedy +86295,Scream 4 (2011),Comedy|Horror|Mystery|Thriller +86298,Rio (2011),Adventure|Animation|Children|Comedy +86300,"Princess of Montpensier, The (La princesse de Montpensier) (2010)",Action|Drama|Romance +86308,Dear Heart (1964),Comedy +86310,"Mudlark, The (1950)",Drama +86312,"Mouse on the Moon, The (1963)",Comedy +86314,"Happy Time, The (1952)",Comedy +86316,Gold Diggers of 1937 (1936),Comedy|Musical|Romance +86318,"Goddess, The (1958)",Drama +86320,Melancholia (2011),Drama|Sci-Fi +86330,Forever Strong (2008),Drama +86332,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX +86334,War of the Wildcats (In Old Oklahoma) (1943),Western +86337,Jolson Sings Again (1949),Musical +86343,Spooner (2009),Comedy|Drama +86345,Louis C.K.: Hilarious (2010),Comedy +86347,Louis C.K.: Chewed Up (2008),Comedy +86355,Atlas Shrugged: Part 1 (2011),Drama|Mystery|Sci-Fi +86368,Confessions of a Nazi Spy (1939),Drama +86372,"Journey, The (1959)",Drama|Romance +86377,Louis C.K.: Shameless (2007),Comedy +86380,Pushover (1954),Crime|Drama|Film-Noir +86382,Saint Jack (1979),Drama +86399,Movie Days (Bíódagar) (1994),Comedy|Drama +86401,Children of Nature (Börn náttúrunnar) (1991),Drama|Mystery +86405,Spring Breakdown (2009),Comedy +86408,Welcome to the South (Benvenuti al Sud) (2010),Comedy +86410,"Resident, The (2011)",Drama|Horror|Thriller +86412,That's What I Am (2011),Children|Comedy +86416,Kobe Doin' Work (2009),Documentary +86418,City Streets (1931),Crime|Film-Noir +86420,Two Drifters (Odete) (2005),Drama +86430,Women Without Men (Zanan-e bedun-e mardan) (2009),Drama +86432,Outside the Law (Hors-la-loi) (2010),Crime|Drama|War +86434,Wrong Rosary (Uzak ihtimal) (2009),Drama +86436,"Crimson Kimono, The (1959)",Crime|Mystery|Thriller +86438,Laaga Chunari Mein Daag: Journey of a Woman (2007),Drama +86440,Outsider (1997),Drama +86442,Crazy Love (a.k.a. Love Is a Dog from Hell) (1987),Drama +86449,Abominable (2006),Horror +86451,Love Torn in Dream (Combat d'amour en songe) (2000),Drama|Fantasy +86453,Pleasures of the Flesh (Etsuraku) (1965),Comedy|Drama +86455,"Sing a Song of Sex (Treatise on Japanese Bawdy Songs, A) (Nihon shunka-kô) (1967)",Thriller +86463,"Silent Night, Deadly Night III: Better Watch Out! (1989)",Horror +86471,"Perils of Pauline, The (1914)",Action +86474,"Good Lawyer's Wife, A (Baramnan gajok) (2003)",Drama +86476,Larks on a String (Skrivánci na niti) (1990),Comedy|Drama|Romance +86478,Rabbit Without Ears 2 (Zweiohrküken) (2009),Comedy|Romance +86487,Mildred Pierce (2011),Drama +86489,Nothing About Robert (Rien sur Robert) (1999),Comedy|Drama +86491,Stranded: I've Come from a Plane That Crashed on the Mountains (2007),Documentary +86493,"Age of the Earth, The (A Idade da Terra) (1980)",(no genres listed) +86495,Blind Mountain (Mang shan) (2007),Drama +86497,15 (2005),Action|Drama +86500,Service (Serbis) (2008),Drama +86502,Flow: For Love of Water (2008),Documentary +86504,Voices from the List (2004),Documentary +86508,Japanese Summer: Double Suicide (Muri shinjû: Nihon no natsu) (1967),Crime|Drama +86510,"No Blood Relation (Stepchild, The) (Nasanunaka) (1932)",Drama +86513,Crimes of Fashion (2004),Comedy +86515,Nothing But Ghosts (Nichts als Gespenster) (2006),Drama +86518,"Student of Prague, The (a.k.a. Bargain with Satan, A) (Student von Prag, Der) (1913)",Drama|Horror +86521,Ito: A Diary of an Urban Priest (Seitti - kilvoittelijan päiväkirja) (2009),Documentary +86536,High School (1968),Documentary +86539,White Lightnin' (2009),Drama +86541,To the Sea (Alamar) (2009),Drama +86544,To Faro (Mein Freund aus Faro) (2008),Drama +86546,Bloomington (2010),Drama +86548,Water for Elephants (2011),Drama|Romance +86550,Love & Savagery (2009),Drama|Romance +86553,Yolanda and the Thief (1945),Fantasy|Musical|Romance +86559,Raw Meat (Death Line) (1973),Horror +86572,"Horseman, The (2008)",Crime|Thriller +86574,Foo Fighters: Back and Forth (2011),Documentary|Musical +86576,"Light Bulb Conspiracy, The (2010)",Documentary +86578,"Names of Love, The (Le nom des gens) (2010)",Comedy +86583,Storm (2009),Drama +86590,Day and Night (Dag och natt) (2004),Drama +86593,African Cats (2011),Adventure|Documentary +86604,My Dog Tulip (2009),Animation|Drama +86606,Tracker (2010),Action|Adventure|Drama|Thriller +86620,Ali Baba Goes to Town (1937),Comedy|Fantasy|Musical +86622,"Bachelor Party, The (1957)",Drama +86624,"Woman, a Gun and a Noodle Shop, A (San qiang pai an jing qi) (2009)",Comedy|Drama +86626,Socialism (Film socialisme) (2010),Drama +86628,Kill the Irishman (2011),Action|Crime +86635,Vice (2008),Crime|Film-Noir|Mystery|Thriller +86637,1612: Khroniki smutnogo vremeni (2007),Drama|Fantasy|War +86642,Cold Weather (2010),Drama +86644,"Fast Five (Fast and the Furious 5, The) (2011)",Action|Crime|Drama|Thriller|IMAX +86646,Shirin (2008),Drama +86648,They Won't Forget (1937),Drama|Mystery +86651,Here Comes the Navy (1934),Comedy|Drama|Romance +86653,"Sky's the Limit, The (1943)",Comedy|Musical|Romance +86655,"Emperor Jones, The (1933)",Drama +86657,Babylon (1981),Drama +86664,Once Upon a Time (Der var engang) (1922),Romance +86668,Louis Theroux: Law & Disorder (2008),Documentary +86671,"Woman on the Beach, The (1947)",Drama|Film-Noir|Romance +86675,"House of Rothschild, The (1934)",Drama|War +86677,Kill Theory (2009),Horror|Thriller +86687,"Day They Robbed the Bank of England, The (1960)",Crime|Drama +86689,Reunion in France (1942),Drama|Romance|War +86709,Cooking Up Dreams (De ollas y sueños) (2009),Documentary +86715,Daughters of Darkness (Les lèvres rouges) (1971),Horror +86717,Kosmos (2010),Drama +86719,"Mother Dao, the Turtlelike (Moeder Dao, de schildpadgelijkende) (1995)",Documentary +86721,Idiots and Angels (2008),Animation|Drama|Fantasy +86723,"Parking Lot Movie, The (2010)",Documentary +86725,We Are What We Are (Somos lo que hay) (2010),Drama|Horror +86728,"Gentle Woman, A (Une femme douce) (1969)",Drama +86745,God's Country (1986),Documentary +86748,Ghosts (Gespenster) (2005),Drama +86750,"Robber, The (Der Räuber) (2010)",Crime|Drama +86753,I Just Didn't Do It (Soredemo boku wa yattenai) (2006),Drama +86756,"Idiot Returns, The (Návrat idiota) (1999)",Comedy|Drama|Romance +86758,"Bastards, The (Los bastardos) (2008)",Crime|Drama|Thriller +86760,Truly Human (Et rigtigt menneske) (2001),Drama +86762,Attenberg (2010),Drama +86764,"Asthenic Syndrome, The (Astenicheskiy sindrom) (1990)",Drama +86766,My Dear Enemy (Meotjin haru) (2008),Drama|Romance +86768,Night and Day (Bam gua nat) (2008),Drama +86770,Porto of My Childhood (Porto da Minha Infância) (2001),Drama +86773,Everybody's Woman (La signora di tutti) (1934),Drama +86775,"High Cost of Living, The (2010)",Drama +86778,"Pool, The (Swimming Pool - Der Tod feiert mit) (2001) ",Horror|Thriller +86781,Incendies (2010),Drama|Mystery|War +86785,Blue Smoke (2007),Drama|Romance|Thriller +86787,Montana Sky (2007),Drama|Romance|Thriller +86789,Bird of Paradise (1932),Adventure|Drama|Romance +86791,Invitation to the Dance (1956),Animation|Fantasy|Musical +86795,"Leaning Tower, The (Kalteva torni) (2006)",Comedy +86797,"Ten Shrews, The (Kymmenen riivinrautaa) (2002)",Comedy +86802,Strange Behavior (1981),Horror|Mystery|Thriller +86807,Neon Flesh (Carne de neón) (2010),Comedy|Drama +86809,Carolina Moon (2007),Drama|Mystery|Romance +86811,Angels Fall (2007),Drama|Romance|Thriller +86813,Persona non grata (2005),Drama +86815,Soul Surfer (2011),Action|Drama +86817,Something Borrowed (2011),Comedy|Drama|Romance +86819,"Rock, Paper, Scissors: The Way of the Tosser (2007)",Comedy +86826,June 9 (2008) ,Horror|Mystery|Thriller +86829,Macbeth (1982),Drama +86833,Bridesmaids (2011),Comedy +86835,Priest (2011),Action|Horror|Sci-Fi|Thriller +86837,"19th Wife, The (2010)",Drama +86839,PoliWood (2009),Documentary +86841,"Storm Warriors, The (Fung wan II) (2009)",Action|Adventure|Fantasy +86844,Same Same But Different (2009),Drama|Romance +86846,Eye of the Dolphin (2006),Children|Drama +86848,Intimate Enemies (L'ennemi intime) (2007),Drama|War +86852,"Beaver, The (2011)",Drama +86854,King Lear (1987),Comedy|Drama|Sci-Fi +86856,To the Shores of Tripoli (1942),Drama|Romance|War +86858,"Racket, The (1928)",Crime|Film-Noir +86860,Black Fury (1935),Crime|Drama|Romance +86862,Kitty (1945),Drama +86864,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi +86866,Godzilla Raids Again (Gojira no gyakushû) (1955),Action|Drama|Horror|Romance|Sci-Fi +86876,"Tortured, The (2010)",Horror|Thriller +86880,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX +86882,Midnight in Paris (2011),Comedy|Fantasy|Romance +86884,"Kid With a Bike, The (Le gamin au vélo) (2011)",Drama +86892,The Man from Nowhere (2010),Action|Crime|Thriller +86894,Born to Be Bad (1950),Drama|Film-Noir +86896,Jewel Robbery (1932),Comedy|Crime|Romance +86898,"Tree of Life, The (2011)",Drama +86900,Paper Lion (1968),Comedy +86902,All I Desire (1953),Drama|Romance +86904,Jeopardy (a.k.a. A Woman in Jeopardy) (1953),Film-Noir|Thriller +86906,"Village Barbershop, The (2008)",Comedy|Drama +86909,Diary of a Cannibal (2007),Crime|Horror +86911,"Hangover Part II, The (2011)",Comedy +86922,Nothing to Declare (Rien à déclarer) (2010),Comedy +86927,No Time for Love (1943),Comedy|Romance +86929,"Sin of Madelon Claudet, The (1931)",Drama +86931,This Above All (1942),Drama|Romance|War +86941,Double Take (2009),Documentary +86943,Fly Away (2011),Drama +86947,Van Diemen's Land (2009),Drama +86949,One Hundred Mornings (2009),Drama +86952,Son of Babylon (Syn Babilonu) (2009),Drama +86955,Loose Change 9/11: An American Coup (2009),Documentary +86957,Victim (2010),Horror|Thriller +86960,Across the Hall (2009),Thriller +86970,Daayen Ya Baayen (2010),Comedy|Drama +86973,John Rabe (2009),Drama|War +86977,Oh My God (2009),Documentary +86982,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller +86985,Stonewall Uprising (2010),Documentary +86988,Ballou (2008),Documentary|Musical +86990,"Clairvoyant, The (1935)",Drama|Thriller +87000,"Virginity Hit, The (2010)",Comedy +87002,Through and Through (Na wylot) (1973),Crime +87004,Pina (2011),Documentary|Musical +87006,Eyes of a Stranger (1981),Horror|Thriller +87008,Outcast of the Islands (1952),Adventure|Drama +87010,"Moon in the Gutter, The (La lune dans le caniveau) (1983)",Drama +87012,Under Our Skin (2008),Documentary +87016,Belle toujours (2006),Drama +87028,"Roommate, The (2011)",Drama|Thriller +87031,Strip Nude for Your Killer (Nude per l'assassino) (1975),Horror|Mystery|Thriller +87033,Ballad of the Paper Balloons (a.k.a. Humanity and Paper Balloons) (Ninjô kami fûsen) (1937),Drama +87036,Comedy of Innocence (Comédie de l'innocence) (2000),Drama|Thriller +87038,Hollow Triumph (a.k.a. The Scar) (1948),Crime|Drama|Film-Noir +87040,"Housemaid, The (Hanyo) (1960)",Crime|Drama|Horror +87042,Wanda (1970),Crime|Drama +87047,"Strange Case of Angelica, The (O Estranho Caso de Angélica) (2010)",Drama +87049,Frownland (2007),Comedy|Drama +87051,"King of Escape, The (Le roi de l'évasion) (2009)",Adventure|Comedy +87053,Zoo in Budapest (1933),Drama|Romance +87055,Tomorrow We Move (Demain on déménage) (2004),Comedy +87057,Dealer (2004),Drama +87059,No Rest for the Brave (Pas de repos pour les braves) (2003),Comedy|Drama|Romance +87061,Trails (Veredas) (1978),(no genres listed) +87063,Bis zum Ellenbogen (2007),Comedy +87065,8:28 am (8 Uhr 28) (2010),Drama|Romance|Thriller +87069,Ossos (1997),Drama +87071,All Is Forgiven (Tout est pardonné) (2007),Drama +87073,Peculiarities of the National Hunt (Osobennosti natsionalnoy okhoty) (1995) ,Comedy +87076,Fraulein (Das Fräulein) (2006) ,Drama +87079,Trust (2010),Drama|Thriller +87081,Penny Dreadful (2006),Horror|Thriller +87085,Night Flight (1933),Drama +87092,Prison (Fängelse) (1949) ,Drama +87094,Dreams (Kvinnodröm) (1955),Drama +87096,Group Sex (2010),Comedy +87098,"Mosquito Net, The (La mosquitera) (2010)",Drama +87100,Loft (2010),Comedy|Thriller +87103,Vieraalla maalla (2003),Comedy|Romance +87105,Open Season 3 (2010),Animation|Children|Comedy +87115,"Speed Of Thought, The (2011)",Sci-Fi|Thriller +87164,Henri-Georges Clouzot's Inferno (L'enfer d'Henri-Georges Clouzot) (2009),Documentary +87166,Stolen (Stolen Lives) (2009),Crime|Drama|Mystery|Thriller +87168,"Shine of Rainbows, A (2009)",Drama +87170,Zombie Girl: The Movie (2009),Documentary +87173,Turbulence 2: Fear of Flying (1999),Action|Thriller +87179,"Sisters, The (1938)",Drama +87181,"Double Hour, The (La doppia ora) (2009)",Crime|Drama|Mystery|Romance|Thriller +87186,20 Seconds of Joy (2007),Documentary +87188,Happy Ever Afters (2009),Comedy +87192,Attack the Block (2011),Action|Comedy|Sci-Fi +87194,The Way (2010),Adventure|Comedy|Drama +87197,Let the Bullets Fly (2010),Action|Comedy +87205,"Tunnel, The (2011)",Drama|Horror|Thriller +87207,Orwell Rolls in His Grave (2003),Documentary +87210,Wake (2009),Comedy|Drama|Romance +87216,Kings of the Sun (1963),Adventure|Drama|Thriller +87218,He Ran All the Way (1951),Crime|Drama|Film-Noir +87220,Violent Saturday (1955),Crime|Drama +87222,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX +87225,"Burglars, The (Le casse) (1971)",Action|Crime|Thriller +87227,Gabriel Over the White House (1933),Drama|Fantasy|Romance +87229,Lynch (2007),Documentary +87232,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War +87234,Submarine (2010),Comedy|Drama|Romance +87238,"Gods Must Be Crazy III, The (a.k.a. Crazy Safari) (Fei zhou he shang) (1992)",Comedy|Fantasy +87256,Tonight and Every Night (1945),Musical +87258,The Thief (1952),Crime|Drama|Film-Noir +87260,Raffles (1930),Adventure|Crime|Drama|Romance|Thriller +87262,"Dark Angel, The (1935)",Drama|Romance +87264,Brewster's Millions (1945),Comedy +87266,"Patent Leather Kid, The (1927)",Drama +87268,"Nightmare in Las Cruces, A (2011)",Documentary +87270,"Other Woman, The (2009)",Drama +87276,"Last Dispatch, The (2005)",Documentary +87279,Brotherhood (2010),Crime|Drama|Thriller +87287,American Grindhouse (2010),Documentary +87290,Two Arabian Knights (1927),Adventure|Comedy|Romance +87294,Den enskilde medborgaren (2006),Comedy +87296,Captive (Cautiva) (2004) ,Drama +87298,Everything Must Go (2010),Comedy|Drama +87300,Eyes of the Mothman (2011),Documentary +87302,Red White & Blue (2010),Drama|Mystery|Romance +87304,Beginners (2010),Drama +87306,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX +87308,Jane Eyre (2006),Drama|Romance +87314,Lottery Ticket (2010),Comedy +87316,Calvin Marshall (2009) ,Comedy +87320,"Oath, The (2010)",Documentary +87322,Falling (a.k.a. Fallen) (2006),Drama +87325,Delbaran (2001),Drama +87327,Camp de Thiaroye (1989),Drama|War +87330,"Target Shoots First, The (2000)",Comedy|Drama +87332,"City Below, The (Unter dir die Stadt) (2010)",Drama +87334,Chain Camera (2001),Documentary +87336,Playing 'In the Company of Men' (En jouant 'Dans la compagnie des hommes') (2003),Drama +87354,Then I Sentenced Them All to Death (Atunci i-am condamnat pe toti la moarte) (1972),Drama|War +87356,Pale Flower (Kawaita hana) (1964),Crime|Film-Noir|Thriller +87358,Santa Claus Has Blue Eyes (Le père Noël a les yeux bleus) (1969),Drama +87360,It Felt Like a Kiss (2009),Documentary +87364,Interkosmos (2006),Drama +87366,After the Reconciliation (Après la réconciliation) (2000),Drama +87368,Matinée (1977),Adventure|Comedy|Crime|Thriller +87370,"Year of Living Vicariously, The (2005)",Documentary +87378,"Sixth of the World, A (Shestaya chast mira) (1926)",Documentary +87383,Curly Top (1935),Children|Musical|Romance +87385,Envy (Kiskanmak) (2009),Drama +87387,Private (2004),Drama|War +87390,"Very British Gangster, A (2007)",Crime|Documentary +87392,"Working Class Goes to Heaven, The (a.k.a. Lulu the Tool) (La classe operaia va in paradiso) (1971)",Drama +87403,48 Shades (2006),Comedy|Drama +87405,Daydream Nation (2010),Drama|Romance +87408,"Täältä tullaan, elämä! (1980)",Drama|Romance +87410,"Chosen One, The (2010)",Comedy|Drama +87413,Bernie (1996),Comedy|Drama +87415,Lucky Star (1929),Drama|Romance +87417,Araya (1959),Documentary +87420,"Danube Exodus, The (1998)",Documentary +87425,Vääpeli Körmy - Taisteluni (1994),Comedy +87430,Green Lantern (2011),Action|Adventure|Sci-Fi +87433,"Ghidorah, the Three-Headed Monster (San daikaijû: Chikyû saidai no kessen) (1964)",Action|Adventure|Fantasy|Sci-Fi +87435,Sergeant Körmy and the South Pacific (Vääpeli Körmy ja etelän hetelmät) (1992),Comedy +87442,"Bicycle, Spoon, Apple (Bicicleta, cullera, poma)",Documentary +87444,Elektra Luxx (2010),Comedy +87446,Mickey's Twice Upon a Christmas (2004),Animation|Children|Comedy +87449,Stricken (Er komt een vrouw bij de dokter) (2009),Drama|Romance +87466,Net Worth (1995),Drama +87469,Cinema Verite (2011),Drama +87471,"Yoo-Hoo, Mrs. Goldberg (2009)",Documentary +87483,Mr. Popper's Penguins (2011),Comedy +87485,Bad Teacher (2011),Comedy +87497,Wives and Lovers (1963),Comedy +87499,Tyler Perry's Why Did I Get Married Too? (2010),Comedy +87505,"President's Lady, The (1953)",Drama +87507,Suez (1938),Drama|Romance +87511,Two Girls and a Sailor (1944),Comedy|Musical|Romance +87514,Papa's Delicate Condition (1963),Comedy +87516,Sundown (1941),Drama|War +87518,Storm Center (1956),Drama +87520,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX +87522,Larry Crowne (2011),Comedy|Drama|Romance +87527,Score: A Hockey Musical (2010),Comedy|Musical +87529,Your Highness (2011),Action|Adventure|Comedy|Fantasy +87547,Hand Gun (1994),Action|Crime|Drama|Thriller +87549,YellowBrickRoad (2010),Horror|Thriller +87556,Jacqueline Susann's Once Is Not Enough (1975),Drama|Romance +87558,When Ladies Meet (1933),Comedy|Romance +87560,"Pride of St. Louis, The (1952)",Drama +87562,"Prizefighter and the Lady, The (1933)",Comedy|Crime|Romance +87564,"Son of Monte Cristo, The (1940)",Action|Adventure +87566,If I Were King (1938),Adventure +87568,Judy Moody and the Not Bummer Summer (2011),Children|Comedy +87572,"Have Dreams, Will Travel (2007)",Drama|Romance +87587,Kalamity (2010),Thriller +87589,"Four-Faced Liar, The (2010)",Comedy|Drama|Romance +87591,"Lamp in the Dark; The Untold History of the Bible, A (2009)",Documentary +87595,King of Jazz (1930),Animation|Musical +87598,"Dolly Sisters, The (1945)",Drama|Musical|Romance +87608,Seconds Apart (2011) ,Horror|Thriller +87618,"Mattei Affair, The (Il caso Mattei) (1972)",Crime|Drama|Mystery +87633,"Scenic Route, The (1978)",Drama +87636,"Run, Man, Run! (Corri uomo corri) (1968)",Adventure|Comedy|Western +87639,Brushfires (2004),Drama +87642,Sergeant Körmy and the Underwater Vehicles (Vääpeli Körmy ja vetenalaiset vehkeet) (1991),Comedy +87644,Armless (2010),Comedy +87647,Life After People (2008),Documentary +87649,"Spaghetti West, The (2005)",Documentary +87660,Too Big to Fail (2011),Drama +87662,"Bishop Murder Case, The (1930)",Mystery +87683,"Unexpected Love, An (2003)",Drama +87685,Girl Play (2004),Comedy +87689,Pekko ja unissakävelijä (1997),Comedy +87691,Pelicanman (Pelikaanimies) (2004),Adventure|Children|Fantasy +87693,Train of Shadows (Tren de sombras) (1997),Drama +87697,Shoppen (2006) ,Comedy|Romance +87700,Apart from You (After Our Separation) (Kimi to wakarete) (1933),Drama +87702,Every Night Dreams (Each Night I Dream) (Yogoto no yume) (1933),Drama +87719,Living with Wolves (2005),Documentary +87721,Meat Love (1989),Comedy|Fantasy +87745,Lazybones (1925),Action|Comedy|Drama|Romance|War +87751,Film ist. 7-12 (2002),Documentary +87761,"Rita, Sue and Bob Too! (1987)",Comedy|Drama +87763,For Heaven's Sake (1926),Action|Comedy|Romance +87766,Three Brothers (Tre fratelli) (1981),Drama +87769,Die Frau des Frisörs (2008),Drama +87771,Human Failure (Menschliches Versagen) (2008),Documentary +87773,"Letter, The (1929)",Drama +87780,Monsturd (2003),Comedy|Horror +87785,Takers (2010),Action|Crime|Thriller +87790,Three (a.k.a. 3) (2010),Comedy|Drama|Romance +87792,Route Irish (2010),Drama|Thriller +87794,"Quo Vadis, Baby? (2005)",Drama|Thriller +87796,"Man of My Life, The (L'homme de sa vie) (2006)",Drama +87798,"Squall, The (1929)",Drama +87802,Vääpeli Körmy ja marsalkan sauva (1990),Comedy +87804,Vääpeli Körmy ja kahtesti laukeava (1997),Comedy|War +87806,Who Are the DeBolts? [And Where Did They Get 19 Kids?] (1977),Documentary +87808,Street Without End (Kagirinaki hodo) (1934),Drama +87831,Marie-Jo and Her 2 Lovers (Marie-Jo et ses 2 amours) (2002),Comedy|Drama +87834,My Life as McDull (Mak dau goo si) (2001),Animation|Comedy|Drama +87843,Broken Windows (2008),Drama +87858,"Cougars, Inc. (2011)",Comedy|Drama +87860,Strapped (2010),Drama +87867,Zookeeper (2011),Comedy +87869,Horrible Bosses (2011),Comedy|Crime +87872,Hunter Prey (2009),Sci-Fi +87874,See This Movie (2004),Comedy +87876,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX +87878,King & Country (1964),Drama|War +87880,Guns at Batasi (1964),Drama +87882,De Dana Dan (2009),Comedy +87884,Savage Messiah (1972),Drama +87890,"Carey Treatment, The (1972)",Mystery +87909,Megan Is Missing (2011),Crime|Drama +87911,I Am You (In Her Skin) (2009),Drama|Thriller +87913,Possessed (1931),Drama|Romance +87915,Mondo Trasho (1969),Comedy +87917,Swamp Water (1941),Drama +87919,"Mysterious Lady, The (1928)",Drama|Romance +87921,"Ward, The (2010)",Horror|Thriller +87923,Room for One More (1952),Comedy +87928,Tapped (2009),Documentary +87930,Page One: Inside the New York Times (2011),Documentary +87948,Bright Victory (1951),Drama +87950,"Promise, The (1979)",Drama +87952,On the Riviera (1951),Comedy|Musical +87954,In Old Arizona (1928),Romance|Western +87960,Between the Folds (2008),Documentary +87962,Dreamkiller (2010),Thriller +87964,Breaking Upwards (2010),Romance +87966,"Doorway to Hell, The (1930)",Crime|Drama +87971,Anton Chekhov's The Duel (2010),Drama +87973,"Betrayed, The (2009)",Crime|Drama|Mystery|Thriller +87975,Burn Notice: The Fall of Sam Axe (2011),Crime|Drama|Mystery +87977,Murder in Coweta County (1983),Crime|Drama +87979,Five Minutes to Live (1961),Crime|Drama|Thriller +87984,Red Like the Sky (Rosso come il cielo) (2007),Drama +87988,Like You Know It All (Jal aljido mothamyeonseo) (2009),Drama +87990,"If I Want to Whistle, I Whistle (Eu cand vreau sa fluier, fluier) (2010)",Drama +87992,Mammuth (2010),Comedy|Drama +87994,Gilles' Wife (La femme de Gilles) (2004),Drama +87996,Waiting Room (Bekleme odasi) (2004),Drama +87999,I Am Curious (Blue) (Jag är nyfiken - en film i blått) (1968),Drama +88001,Suspicious River (2000),Drama +88003,"Perfect Day, A (Un giorno perfetto) (2008)",Drama +88005,Laws of Gravity (1992),Drama +88015,Elvis (1979),Drama +88017,Time Stood Still (Il tempo si è fermato) (1959),Drama +88020,200 M.P.H. (2011),Action|Adventure|Drama +88022,Hot Coffee (2011),Documentary +88024,To Sleep with Anger (1990),Drama +88028,Green Fish (Chorok mulkogi) (1997),Drama +88031,Tiresia (2003),Drama +88038,"Acadia Acadia?!? (L'acadie, l'Acadie) (1971)",Documentary +88040,Killing Auntie (Zabicie ciotki) (1985),Drama|Thriller +88042,Cornered (1945),Film-Noir|Thriller +88044,Love (Szerelem) (1971),Drama +88047,New Wave (Nouvelle vague) (1990),Drama +88049,Virgin Stripped Bare by Her Bachelors (Oh! Soo-jung) (2000),Drama +88051,Four Adventures of Reinette and Mirabelle (4 aventures de Reinette et Mirabelle) (1987),Comedy|Drama|Romance +88053,Hangtime - Kein leichtes Spiel (2009),Drama +88055,"Missing Star, The (La stella che non c'è) (2006)",Drama +88059,Bikini Summer (1991),Comedy +88061,Transistor Love Story (Monrak Transistor) (2001),Comedy|Drama|Musical|Romance +88063,Bugmaster (Mushishi) (2006),Fantasy +88065,Double Dhamaal (2011),Comedy|Crime|Drama +88067,"Happiness Is a Warm Blanket, Charlie Brown (2011)",Animation|Comedy +88069,Delhi Belly (2011),Comedy|Crime +88071,Ballerina (La mort du cygne) (1937),Children|Drama|Romance +88073,Heir to an Execution (2004),Documentary +88075,And Then Came Lola (2009),Comedy|Drama|Romance +88078,Snowblind (2010),Western +88087,Welcome Farewell-Gutmann (Bienvenido a Farewell-Gutmann) (2008),Comedy|Drama +88089,Clint Eastwood: Out of the Shadows (2000),Documentary +88092,Education for Death (1943),Animation|Comedy +88094,Upside Down: The Creation Records Story (2010),Documentary +88099,Streets of Laredo (1995),Drama|Western +88106,Mahler (1974),Drama +88108,Monte Carlo (2011),Adventure|Comedy|Romance +88110,Monogamy (2010) ,Drama|Romance +88114,Read It and Weep (2006),Comedy +88116,Truth in 24 (2008),Documentary +88118,"Perfect Host, The (2010)",Crime|Drama|Thriller +88125,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX +88127,Conan O'Brien Can't Stop (2011),Documentary +88129,Drive (2011),Crime|Drama|Film-Noir|Thriller +88131,Love Crime (Crime d'amour) (2010),Crime|Mystery|Thriller +88133,Brink of Life (Nära livet) (1958),Drama +88135,"Kind of Loving, A (1962)",Drama|Romance +88138,Snow Flower and the Secret Fan (2011),Drama +88140,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War +88158,Far from Home (1989),Thriller +88160,Girls in Prison (1994),Crime|Drama|Thriller +88163,"Crazy, Stupid, Love. (2011)",Comedy|Drama|Romance +88166,"Eversmile, New Jersey (1989)",Comedy|Drama|Romance +88168,"Last Run, The (1971)",Action|Crime|Drama|Thriller +88171,Trio (1950),Drama|Romance +88173,Flight Command (1940),Drama|War +88175,Cheers for Miss Bishop (1941),Drama +88177,"Buccaneer, The (1938)",Adventure +88179,One Day (2011),Drama|Romance +88181,35 and Ticking (2011),Romance +88192,"Poker House, The (2008)",Drama +88194,Forget Me Not (2009),Horror|Romance|Thriller +88203,Car Bonus (Autobonus) (2001),Documentary +88205,Feast of All Saints (2001),Drama|Romance +88210,Bombardier (1943),Drama|War +88213,Joan of Paris (1942),Drama|Romance|War +88224,"Charming Mass Suicide, A (Hurmaava joukkoitsemurha) (2000)",Comedy +88228,Vice Squad (1953),Crime|Drama +88235,"Guard, The (2011)",Comedy|Crime +88237,Griff the Invisible (2011),Comedy|Drama|Romance +88248,Quarantine 2: Terminal (2011),Horror|Mystery|Sci-Fi +88250,Earth Days (2009),Documentary +88252,Children (Börn) (2006),Drama +88267,Winnie the Pooh (2011),Animation|Children|Comedy +88270,Peep World (2010),Comedy +88272,"Woman, The (2011)",Horror +88274,"Unholy Rollers, The (1972)",Action|Comedy|Drama +88276,Dry Summer (Susuz yaz) (Reflections) (1964),Drama +88278,Phantom (1922),Drama|Fantasy|Romance +88280,Frontier of the Dawn (La frontière de l'aube) (2008),Drama +88282,Sombre (1998),Drama|Horror +88284,"Think Fast, Mr. Moto (1937)",Crime|Drama|Mystery|Thriller +88299,No Impact Man: The Documentary (2009),Documentary +88301,Beverly Hills Chihuahua 2 (2011),Children|Comedy +88305,"Wedding in Blood (Noces rouges, Les) (1973)",Crime|Drama +88307,"Goalie's Anxiety at the Penalty Kick, The (Die Angst des Tormanns beim Elfmeter) (1972)",Drama +88310,A Year Ago in Winter (2008),Drama +88313,"Electra, My Love (Szerelmem, Elektra) (1974)",Drama +88315,Indian Summer (a.k.a. The Professor) (La prima notte di quiete) (1972),Drama +88317,"Married Couple, A (1969)",Documentary +88321,Betty (1992),Drama +88327,"New One-Armed Swordsman, The (Xin du bi dao) (1971)",Action|Drama|War +88329,Madeleine (1950),Crime|Drama +88331,Exodus (Cheut ai kup gei) (2007),Comedy|Crime|Drama +88335,Wanted! (Nachbarinnen) (2004),Drama +88339,"Four Times, The (Le Quattro Volte) (2010)",Drama +88341,Park Row (1952),Drama|Thriller +88343,"Sleeping Beauty, The (La belle endormie) (2010)",Drama +88345,Mike's New Car (2002),Animation|Comedy +88347,Without Warning (1994),Sci-Fi +88349,Almighty Thor (2011),Adventure|Fantasy +88352,Escape from Dartmoor (1929),Crime|Drama +88356,"Smurfs, The (2011)",Animation|Children|Comedy +88368,Reparando (2010),Documentary +88371,Concursante (2007),Comedy|Drama +88374,"Arrangement, The (1969)",Drama +88376,Comanche Moon (2008),Drama|Western +88378,Dead Man's Walk (1996),Western +88380,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller +88382,Angel of Mine (a.k.a. The Mark of an Angel) (L'empreinte de l'ange) (2008),Drama +88398,"Undefeated, The (2011)",Documentary +88400,Chromophobia (2005),Drama +88405,Friends with Benefits (2011),Comedy|Romance +88411,"Dust of Time, The (2008)",Drama +88414,"Winner, The (1996)",Comedy|Crime|Thriller +88417,Exposed (1983),Drama +88419,Forbidden (1932),Drama|Romance +88423,3 Backyards (2010),Drama +88425,Small Town Murder Songs (2010),Crime|Thriller +88427,Count Three and Pray (1955),Drama|Western +88429,"Rally 'Round the Flag, Boys! (1958)",Comedy +88448,Paper Birds (Pájaros de papel) (2010),Comedy|Drama +88452,Last Stop 174 (Última Parada 174) (2008) ,Crime|Drama|Thriller +88454,Waking Madison (2010) ,Drama +88456,"Possession of David O'Reilly, The (2010) ",Horror +88466,Broken Sky (El cielo dividido) (2006),Drama +88468,Alpha and Omega (2010),Adventure|Animation|Children|Comedy|Romance +88471,"Caretakers, The (1963)",Drama +88473,Tender Is the Night (1962),Drama +88480,Bikini Summer II (1992),Comedy +88483,"Boy in Blue, The (1986)",Drama +88485,Deadfall (1993),Comedy|Crime|Drama +88488,"Summer Wishes, Winter Dreams (1973)",Drama +88491,Lady Be Good (1941),Comedy|Musical +88493,Eternally Yours (1939),Comedy|Drama +88495,Legend of the Fist: The Return of Chen Zhen (Jing wu feng yun: Chen Zhen) (2010),Action|Drama +88511,Big City Blues (1932),Comedy|Drama +88513,Lawyer Man (1932),Drama|Romance +88515,Blitz (2011),Action|Crime|Thriller +88518,Pennies from Heaven (1936),Comedy|Drama|Musical +88520,"Living and the Dead, The (2006)",Drama|Horror|Mystery +88543,She Cried No (Freshman Fall) (1996),Crime|Drama +88548,Industrial Symphony No. 1: The Dream of the Brokenhearted (1990),Drama +88562,Our Beloved Month of August (Aquele Querido Mês de Agosto) (2008),Romance +88564,"Autobiography of Nicolae Ceausescu, The (Autobiografia lui Nicolae Ceausescu) (2010)",Documentary +88566,Mysteries of Lisbon (Mistérios de Lisboa) (2010),Drama|Mystery +88568,Oki's Movie (Ok-hui-ui yeonghwa) (2010),Comedy|Drama +88570,Welfare (1975),Documentary +88572,Fred: The Movie (2010),Comedy +88574,Four Bags Full (1956),Comedy +88576,Emitai (1971),Drama +88578,"Me Too (Yo, también) (2009)",Drama +88580,"Assassination (Ansatsu) (Assassination, The) (Assassin, The) (1964)",Action|Drama +88589,Messiah of Evil (1973),Horror +88591,Souls for Sale (1923),Comedy|Drama|Romance +88593,"Yellow Sea, The (a.k.a. The Murderer) (Hwanghae) (2010)",Crime|Drama|Thriller +88595,"Temptress, The (1926)",Drama|Romance +88597,Our Life (La nostra vita) (2010),Drama +88599,Come Undone (Cosa voglio di più) (2010),Drama +88601,"Illusion Travels by Streetcar (Ilusión viaja en tranvía, La) (1954)",Adventure|Comedy|Drama +88603,Change of Address (Changement d'adresse) (2006),Comedy +88605,"Help Me, Eros (Bang bang wo ai shen) (2007)",Drama +88607,"Eye Above the Well, The (Het oog boven de put) (1988)",Documentary +88633,Adopted (2009),Comedy +88638,"Joyless Street, The (Die freudlose Gasse) (1925)",Drama +88640,Rapt (2009),Drama +88642,Bear's Kiss (2002),Drama|Fantasy|Romance +88646,"Cairo Station (a.k.a. Iron Gate, The) (Bab el hadid) (1958)",Crime|Drama +88649,Sweet Rush (Tatarak) (2009),Drama +88652,"Blind Sunflowers, The (Los girasoles ciegos) (2008)",Drama +88654,"Queen of Spades, The (1949)",Drama|Horror +88670,Change of Plans (Le code a changé) (2009),Comedy|Drama +88672,Our Idiot Brother (2011),Comedy +88674,Edison Kinetoscopic Record of a Sneeze (1894),Documentary +88676,Divine Horsemen: The Living Gods of Haiti (1985),Documentary +88678,Almanya - Welcome to Germany (Almanya - Willkommen in Deutschland) (2011),Comedy|Drama +88680,Sweet Mud (Adama Meshuga'at) (2006),Drama +88682,"Letter to Elia, A (2010)",Documentary +88688,Drive-In Horrorshow (2009),Horror +88690,Twixt (2011),Horror|Thriller +88692,Princess Ka'iulani (2009),Drama|Romance +88694,Anima Mundi (1992),Documentary +88697,SUBWAYStories: Tales from the Underground (1997),Drama +88699,Death Race 2 (2010),Action|Sci-Fi|Thriller +88701,"Debt, The (2007)",Thriller +88704,Air Guitar Nation (2006),Comedy|Documentary|Musical +88706,Cyberbully (2011),Drama +88724,Beats Rhymes & Life: The Travels of a Tribe Called Quest (2011),Documentary +88726,"Petits ruisseaux, Les (2010)",Drama +88734,West Is West (2010),Comedy|Drama +88740,Above Suspicion (1943),Drama|Thriller +88742,Desperate Search (1952),Adventure|Drama +88744,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller +88746,Terri (2011),Comedy +88748,"Magnificent Yankee, The (1950)",Drama +88750,Happy New Year (1987),Comedy|Crime|Romance +88752,Hide-Out (1934),Comedy|Crime|Drama|Romance +88754,Shanks (1974),Fantasy|Horror +88756,Christmas Carol: The Movie (2001),Animation|Children +88759,Coffin Rock (2009),Thriller +88761,Strapped (1993),Action|Drama +88764,Ponterosa (2001),Comedy +88766,Tevye (1939),Drama +88785,"Change-Up, The (2011)",Comedy +88788,Sins of My Father (2009),Documentary +88796,Cut-Throats Nine (Condenados a vivir) (1972),Crime|Thriller|Western +88801,"Yearling, The (1994)",Adventure|Children|Drama +88810,"Help, The (2011)",Drama +88812,30 Minutes or Less (2011),Action|Comedy|Crime +88814,Fjols til fjells (1957),Comedy +88816,My Son John (1952),Drama +88818,Bulldog Drummond (1929),Drama|Mystery|Thriller +88821,"Merry Widow, The (1952)",Musical +88823,High Time (Big Daddy) (1960),Comedy|Musical +88833,There Goes My Heart (1938),Comedy|Romance +88835,Glee: The 3D Concert Movie (2011),Documentary|Musical +88837,"Trotsky, The (2009)",Comedy +88839,Anthony Zimmer (2005),Crime|Drama|Romance|Thriller +88852,"Richest Girl in the World, The (1934)",Comedy|Romance +88857,Just Imagine (1930),Musical|Sci-Fi +88877,"Invisible Sign, An (2010)",Comedy|Drama +88879,Gantz (2011),Action|Horror|Sci-Fi +88886,Blues Harp (1998),Crime|Drama +88889,From Beijing with Love (1994),Action|Comedy +88894,"Lady is Willing, The (1942)",Comedy|Drama|Romance +88899,Vision (Vision - Aus dem Leben der Hildegard von Bingen) (2009),Drama +88901,"Bulli: Cooking in Progress, El (2011)",Documentary +88911,My Afternoons with Margueritte (La tête en friche) (2010),Comedy +88925,Soloalbum (2003),Comedy|Romance +88932,Final Destination 5 (2011),Horror|Thriller|IMAX +88934,"Lovely, Still (2008)",Drama|Romance +88950,"Conspirator, The (2010)",Drama +88954,"Very Harold & Kumar 3D Christmas, A (2011)",Comedy +88957,"Young One, The (1960)",Drama +88959,Michael the Brave (Mihai Viteazul) (1971),Action|Drama +88961,Missile to the Moon (1958),Sci-Fi +88971,Mr. Moto Takes a Chance (1938),Crime|Drama|Mystery +88973,Mysterious Mr. Moto (1938),Crime|Drama|Mystery +88975,Where Are the Dreams of Youth? (Seishun no yume imaizuko) (1932),Drama +88977,Loose Cannons (Mine vaganti) (2010),Comedy|Drama +88979,"Little Girl Who Conquered Time, The (Toki o kakeru shôjo) (1983)",Romance|Sci-Fi +88989,Kairat (1992),Drama +88991,Queen to Play (Joueuse) (2009),Drama +88993,Laila (1929),Drama|Romance +88998,Suzanne's Diary for Nicholas (2005),Drama|Romance +89000,Carancho (2010),Crime|Drama|Romance +89002,Spy Kids: All the Time in the World in 4D (2011),Action|Adventure|Children|Comedy|Sci-Fi +89007,Recollections of the Yellow House (Recordações da Casa Amarela) (1989),Comedy|Drama +89010,Super 8 Stories (2001),Documentary +89014,Passing Fancy (Dekigokoro) (1933),Drama +89016,What Did the Lady Forget? (Shukujo wa nani o wasureta ka) (1937) ,Comedy|Drama +89018,Miranda (1948),Comedy|Fantasy|Romance +89021,Elvira Madigan (1967),Drama|Romance +89023,Forest (Rengeteg) (2003),Drama +89025,Evil - In the Time of Heroes (To kako - Stin epohi ton iroon) (2009),Adventure|Comedy|Horror +89028,Don't Be Afraid of the Dark (2010),Horror|Thriller +89030,Fright Night (2011),Comedy|Horror +89039,Another Earth (2011),Drama|Romance|Sci-Fi +89041,Pastoral Hide and Seek (Den-en ni shisu) (1974),Drama +89043,"Classic, The (Klassikko) (2001)",Comedy|Drama +89045,Rocky VI (1986) ,Comedy +89047,Hesher (2010),Drama +89052,"Cool School, The (2008)",Documentary +89054,Bolivia (2001),Drama +89056,Company: Original Cast Album (1970),Documentary|Musical +89060,Cold Prey (Fritt Vilt) (2006),Action|Horror|Mystery|Thriller +89069,American Boy: A Profile of: Steven Prince (1978),Documentary +89072,Stake Land (2010),Horror +89074,"Greatest Movie Ever Sold, The (POM Wonderful Presents: The Greatest Movie Ever Sold) (2011)",Documentary +89083,"Great White Silence, The (1924)",Documentary +89085,"Debt, The (2011)",Drama|Thriller +89087,Colombiana (2011),Action|Adventure|Drama|Thriller +89090,Bill Cunningham New York (2011),Documentary +89098,"Hireling, The (1973)",Drama +89100,Street Scenes (1970) ,Documentary +89102,Freakonomics (2010),Documentary +89104,Puzzlehead (2005),Drama|Sci-Fi +89110,"Possession of Joel Delaney, The (1972)",Drama|Horror|Thriller +89112,"Kid from Brooklyn, The (1946)",Comedy +89114,"Last Frontier, The (1955)",Western +89116,Tight Spot (1955),Drama|Film-Noir|Thriller +89118,"Skin I Live In, The (La piel que habito) (2011)",Drama +89126,Messengers 2: The Scarecrow (2009),Horror|Mystery +89133,Boys (Drenge) (1977),Drama +89135,"Birds, the Bees and the Italians, The (Signore & signori) (1966)",Comedy +89137,Backlight (2010),Drama|Sci-Fi|Thriller +89139,"Lodger, The (2009)",Crime|Drama|Mystery|Thriller +89145,William Vincent (Shadows and Lies) (2010),Drama +89147,Legends of the Canyon (2009),Documentary +89162,Phil Ochs: There But for Fortune (2010),Documentary|Musical +89164,Good Neighbours (a.k.a. Good Neighbors) (2010),Crime|Thriller +89170,"Winning Season, The (2009)",Comedy +89190,Conan the Barbarian (2011),Action|Adventure|Fantasy +89192,Dead Awake (2010),Fantasy|Mystery|Romance|Thriller +89194,Prom (2011),Comedy|Drama +89203,Magic Trip (2011),Documentary +89206,Stay Cool (2009),Comedy|Drama|Romance +89208,Walled In (2009),Horror|Thriller +89211,Tuulikaappimaa (2003),Comedy +89213,Fierce Light: When Spirit Meets Action (2008),Documentary +89215,Strongman (2009),Documentary +89217,Waiting for Forever (2010),Drama|Romance +89219,"Creation of the Humanoids, The (1962)",Sci-Fi +89222,Future Cops (Chao ji xue xiao ba wang) (1993),Action +89230,Tooth & Nail (2007),Drama|Horror|Sci-Fi +89244,Face (Visage) (2009),Comedy|Drama +89246,Orderers (Les ordres) (1974),Drama +89248,"Story of Temple Drake, The (1933)",Drama +89260,Project Nim (2011),Documentary +89268,Escape (1940),Drama +89273,Fatherland (1994),Action|Drama +89275,Simon Says (2009),Horror +89277,Chill (2007),Horror|Mystery|Thriller +89281,Birdemic: Shock and Terror (2010),Romance|Thriller +89285,Keep Walking (Camminacammina) (1983),Drama +89287,Whirlygirl (2006),Drama|Romance +89289,Woyzeck (1994),Drama +89300,Win/win (2010),Drama +89302,Page Eight (2011),Drama|Thriller +89305,"Inbetweeners Movie, The (2011)",Adventure|Comedy +89308,"Old Man and the Sea, The (1990)",Drama +89313,Time to Die (Tiempo de morir) (1966),Drama|Western +89315,Dying at Grace (2003),Documentary +89321,"Future, The (2011)",Drama +89323,Richard III (1912),Drama +89325,Burning Secret (1988),Drama +89327,Love Ranch (2010),Comedy|Drama|Romance +89329,Payment Deferred (1932),Drama +89337,"Interrupters, The (2011)",Documentary +89341,Night Ambush (Ill Met by Moonlight) (1957),Action|Adventure|Drama|War +89343,Red State (2011),Action|Crime|Horror|Thriller +89347,"Dark Side of the Heart, The (Lado oscuro del corazón, El) (1992)",Comedy|Drama|Romance +89349,"Misérables, Les (1934)",Drama +89351,Wooden Crosses (Les croix de bois) (1932),Drama|War +89354,Short Sharp Shock (Kurz und schmerzlos) (1998) ,Crime|Drama +89356,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy +89365,"Stranger's Heart, A (2007)",Drama +89367,Restraint (2008),Drama|Thriller +89369,"Better Life, A (2011)",Drama +89371,Raging Phoenix (Deu suay doo) (2009),Action|Romance +89373,Ceremony (2011),Comedy +89375,Sympathy for Delicious (2011),Drama +89377,Wrecked (2010),Thriller +89386,Pearl Jam Twenty (2011),Documentary|Musical +89388,I Don't Know How She Does It (2011),Comedy +89393,Two Cents Worth of Hope (Due soldi di speranza) (1952),Comedy|Romance +89398,Commandos Strike at Dawn (1942),Drama|War +89401,"Pleasure Seekers, The (1964)",Comedy|Musical|Romance +89403,The Little Kidnappers (1953),Drama|Romance|War +89406,That Lady in Ermine (1948),Comedy|Fantasy|Musical|Romance +89408,April Love (1957),Comedy|Drama|Musical +89427,Shark Night 3D (2011),Horror|Thriller +89449,Beautiful Lies (De vrais mensonges) (Full Treatment) (2010),Comedy|Drama|Romance +89470,Contagion (2011),Sci-Fi|Thriller|IMAX +89472,We Have a Pope (Habemus Papam) (2011),Drama +89476,Frenchman's Creek (1944),Adventure|Drama|Romance +89478,Vigilante (1983),Action|Crime|Drama +89480,Sleeping Beauty (2011),Drama +89482,Portrait of Maria (María Candelaria (Xochimilco)) (1944),Drama|Romance +89485,"Maze, The (1953)",Horror|Sci-Fi +89490,Straw Dogs (2011),Thriller +89492,Moneyball (2011),Drama +89501,William S. Burroughs: A Man Within (2010),Documentary +89506,"Appeared, The (Aparecidos) (2007)",Horror|Thriller +89516,Felicity (1980),Drama +89521,"Winning Team, The (1952)",Drama|Romance +89523,"Fat, Sick & Nearly Dead (2010)",Documentary +89527,Higher and Higher (1943),Comedy|Musical|Romance +89532,"House of the Seven Gables, The (1940)",Drama|Thriller +89535,"Havre, Le (2011)",Comedy|Drama +89537,"Unlikely Weapon, An (2008)",Documentary +89545,X (2011),Thriller +89549,A Via Láctea (2007),Drama +89551,Magnificent Warriors (Zhong hua zhan shi) (1987),Action +89554,Zindagi Na Milegi Dobara (2011),Adventure|Comedy|Drama|Romance +89570,Restless (2011),Drama +89580,Neds (2010),Drama +89582,Cold Fish (Tsumetai nettaigyo) (2010),Drama|Thriller +89584,Skeletons (2010),Comedy|Fantasy +89586,Phineas and Ferb the Movie: Across the 2nd Dimension (2011),Adventure|Animation|Children +89588,Follow Me Quietly (1949),Crime|Drama|Film-Noir|Mystery +89590,Scott Walker: 30 Century Man (2006),Documentary|Musical +89592,Four Nights of a Dreamer (Quatre nuits d'un rêveur) (1971),Drama|Romance +89594,"Perfume of the Lady in Black, The (Il profumo della signora in nero) (1974)",Horror|Mystery|Thriller +89596,"Soul of a Man, The (2003)",Documentary|Musical +89598,God's Comedy (A Comédia de Deus) (1995),Comedy|Drama +89607,Nightmare (1964),Horror|Mystery|Thriller +89610,Taxi zum Klo (1980),Comedy +89613,I Am (Jestem) (2005),Drama +89616,My Little Business (Ma petite entreprise) (1999),Comedy|Drama +89618,Sachs' Disease (La maladie de Sachs) (1999),Drama +89620,"Witches, The (Le streghe) (1967)",Comedy|Drama|Romance +89623,"Valley, The (Obscured by Clouds) (La vallée) (1972)",Action|Drama +89629,Point Blank (À bout portant) (2010),Action|Crime|Thriller +89632,Masti (2004),Comedy +89635,"Story of Me, The (O contador de histórias) (2009)",Drama +89638,Nothing Personal (2009),Drama +89650,Ironclad (2011),Action|Adventure +89658,Green Fire (1954),Adventure|Drama +89662,Russell Peters: The Green Card Tour - Live from the O2 Arena (2011),Comedy|Documentary +89664,Photos in the City of Sylvia (Unas fotos en la ciudad de Sylvia) (2007),Documentary +89666,Children of the Secret State (2001),Documentary +89668,Pathetic Fallacy (Ajantrik) (1958),Drama +89670,No Man of Her Own (1932),Drama|Romance +89674,Zombie Island Massacre (1984),Horror +89676,Mr. Thank You (Arigatô-san) (1936),Drama +89678,Northanger Abbey (2007),Drama|Romance +89701,Floods of Fear (1959),Action|Adventure|Crime|Thriller +89703,"Loser Takes All, The (O hamenos ta pairnei ola) (2002)",Action|Adventure|Drama +89705,Film ist a Girl & a Gun (2009),Documentary|Romance +89707,In Vanda's Room (No Quarto da Vanda) (2000),Drama +89712,"Preacher, The (De dominee) (2004)",Crime|Drama +89714,Black Butterflies (2011),Drama +89718,Sweet Karma (2009),Crime|Drama|Thriller +89720,Bereavement (2010),Horror +89722,"Horrible Way to Die, A (2010) ",Horror|Thriller +89730,"Children of Glory (Szabadság, szerelem) (2006)",Drama|Romance|War +89732,Bulldog Drummond Escapes (1937),Adventure|Mystery|Romance|Thriller +89745,"Avengers, The (2012)",Action|Adventure|Sci-Fi|IMAX +89747,Taxi! (1932),Crime|Drama|Romance +89753,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller +89759,"Separation, A (Jodaeiye Nader az Simin) (2011)",Drama +89761,"Dangerous Method, A (2011)",Drama|Thriller +89763,Man's Castle (1933),Drama|Romance +89765,"Sleep, My Love (1948)",Drama|Film-Noir|Mystery +89767,My Name Is Julia Ross (1945),Drama|Film-Noir|Mystery +89769,"Romantic Englishwoman, The (1975)",Comedy|Drama +89774,Warrior (2011),Drama +89778,Littlerock (2010),Drama +89780,Sherlock Holmes (2010),Mystery|Sci-Fi +89794,"Crowd Roars, The (1932)",Action|Drama +89797,Eva (a.k.a. Eve) (1962),Drama +89800,You're Telling Me! (1934),Comedy +89802,Mother Wore Tights (1947),Musical +89804,"Ides of March, The (2011)",Drama +89806,"Proud and the Beautiful, The (Orgueilleux, Les) (Proud Ones, The) (1953)",Drama +89819,Punk in London (1977),Documentary|Musical +89829,"Star Witness, The (1931)",Drama +89831,"Strip, The (1951)",Drama|Film-Noir +89833,Bad Girl (1931),Drama +89837,Kill List (2011),Horror|Mystery|Thriller +89840,Killer Elite (2011),Action|Thriller +89844,"Dukes, The (2007)",Comedy|Crime|Drama +89846,Bobby Fischer Against the World (2011),Documentary +89848,Badmaash Company (2010),Comedy|Crime|Drama +89850,"Nature of Existence, The (2010)",Documentary +89862,Bellflower (2011),Action|Drama|Romance +89864,50/50 (2011),Comedy|Drama +89870,Clapham Junction (2007),Drama +89872,Warrior of the Lost World (1983),Action|Sci-Fi +89877,Main Street (2010),Drama +89881,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi +89883,Rat Pfink a Boo Boo (1966),Action|Comedy +89896,"Turin Horse, The (A Torinói ló) (2011)",Drama +89898,Generation P (2011),Comedy|Drama|Sci-Fi +89900,Once Upon a Time in Anatolia (Bir zamanlar Anadolu'da) (2011),Drama +89904,The Artist (2011),Comedy|Drama|Romance +89908,Someone I Loved (Je l'aimais) (2009),Drama|Romance +89910,"Housewarming (Travaux, on sait quand ça commence...) (2005)",Comedy +89912,Whity (1971),Drama|Western +89924,I Want Candy (2007),Comedy +89926,At Any Second (In jeder Sekunde) (2008),Drama +89930,Superheroes (2011),Action|Comedy|Documentary|Drama +89932,Me and the Colonel (1958),Comedy|War +89936,Corruption (1968),Horror +89939,Gigi (1949),Comedy +89941,Ornamental Hairpin (Kanzashi) (1941),Drama +89945,BlinkyTM (2011),Horror|Sci-Fi +89961,Play (2011),Crime|Drama +89963,"Khroustaliov, My Car! (Khrustalyov, mashinu!) (1998)",Comedy|Drama +89965,Song of the Exile (Ke tu qiu hen) (1990),Drama +89967,There Will Be No Leave Today (Segodnya uvolneniya ne budet) (1959),Drama|Thriller +89969,"Legend of Suram Fortress, The (Ambavi Suramis tsikhitsa) (1986) ",Drama +89971,On the Double (1961),Comedy|War +89973,Here Comes Peter Cottontail (1971),Animation|Children|Musical +89977,Don't Change Your Husband (1919),Comedy +89979,"Masseurs and a Woman, The (Anma to onna) (1938)",Drama +89983,Robot (2010),Action|Comedy|Musical|Sci-Fi +89985,"Trap: What Happened to Our Dream of Freedom, The (2007)",Documentary +89988,Animal Love (Tierische Liebe) (1996),Documentary +89990,"Novena, The (La neuvaine) (2005)",Drama +89994,Rabbit à la Berlin (Królik po berlinsku) (2009),Documentary|War +89997,Circumstance (2011),Drama +89999,The Beast Kills in Cold Blood (1971),Horror|Mystery|Thriller +90005,Ticking Clock (2011),Action|Crime|Mystery|Sci-Fi|Thriller +90007,Ghost from the Machine (2010),Sci-Fi +90009,Reykjavik-Rotterdam (2008),Drama|Thriller +90011,Wrestling (Bræðrabylta) (2007),Drama|Romance +90015,White of the Eye (1987),Thriller +90017,The Boss (1973),Action|Crime|Thriller +90019,Green Chair (Noksaek uija) (2005),Drama|Romance +90021,I'm Gonna Explode (a.k.a. I'm Going to Explode) (Voy a explotar) (2008),Drama +90035,"Report, The (Gozaresh) (1977)",Drama +90049,Five Dedicated to Ozu (2003),Documentary +90052,"Lizard in a Woman's Skin, A (Lucertola con la pelle di donna, Una) (1971)",Horror|Mystery|Thriller +90055,"Oily Maniac, The (You gui zi) (1976)",Horror +90057,Take Shelter (2011),Drama +90059,Genealogies of a Crime (Généalogies d'un crime) (1997),Crime|Drama +90061,"Myth of the American Sleepover, The (2010)",Comedy|Drama|Romance +90064,That Day (Ce jour-là) (2003),Comedy|Crime|Drama|Mystery +90066,Road to Nowhere (2010),Romance|Thriller +90068,Zaat (1971),Fantasy|Horror|Sci-Fi +90071,"Music Never Stopped, The (2011)",Drama +90084,"Experience, The (Tadjrebeh) (1973)",Drama +90086,"Suit for Wedding, A (a.k.a. The Wedding Suit) (Lebassi Baraye Arossi) (1976)",Drama +90090,"Game of Death, The (Le Jeu de la Mort) (2010)",Documentary +90104,ABC Africa (2001),Documentary +90106,Pigskin Parade (1936),Musical +90108,Songwriter (1984),Drama +90112,First Love (1939),Comedy|Musical +90114,I Dream Too Much (1935),Comedy|Musical|Romance +90116,"One Potato, Two Potato (1964)",Drama +90118,"Sheep Has Five Legs, The (Le mouton à cinq pattes) (1954)",Comedy +90127,No Rest for the Wicked (2011),Thriller +90133,"Presence, The (2010)",Drama|Horror|Thriller +90154,"Caller, The (2011)",Horror|Mystery|Thriller +90167,Small Town Girl (1953),Musical|Romance +90170,Monsieur Vincent (1947),Drama +90172,"Toast of New Orleans, The (1950)",Musical +90183,"Captain Thunder (Capitán Trueno y el Santo Grial, El) (Prince Killian and the Holy Grail) (2011)",Adventure +90196,"Happiest Days of Your Life, The (1950)",Comedy +90199,"I Am Taraneh, I Am Fifteen Years Old (Man, taraneh, panzdah sal daram) (2002)",Drama +90201,"Grand Dukes, The (Les grands ducs) (1996)",Comedy +90203,Tony Arzenta (No Way Out) (Big Guns) (1973),Action|Crime|Drama|Thriller +90206,"Living Desert, The (1953)",Documentary +90208,Brothers at War (2009),Documentary|War +90211,Salaam Cinema (1995),Comedy|Documentary|Drama +90235,"Happiest Girl in the World, The (Cea mai fericita fata din lume) (2009)",Drama +90237,Examined Life (2008),Documentary +90239,Wadd: The Life & Times of John C. Holmes (1999),Documentary +90241,Don't Deliver Us from Evil (Mais ne nous délivrez pas du mal) (1971),Drama|Horror +90243,Three Outlaw Samurai (Sanbiki no samurai) (1964),Action|Drama +90245,Antonio Gaudí (1985),Documentary +90247,Slumming (2006),Comedy|Drama +90249,Real Steel (2011),Action|Drama|Sci-Fi|IMAX +90252,Devil Times Five (a.k.a. Peopletoys) (1974),Horror +90254,"Dream Catcher, The (1999)",Drama +90256,"Pleasure of Being Robbed, The (2008)",Comedy +90258,Cuckoo in a Dark Forest (Kukacka v temném lese) (1986) ,Drama|War +90260,Hotel Pacific (Zaklete rewiry) (1975),Drama +90262,"Enchanted World of Danny Kaye: The Emperor's New Clothes, The (1972)",Animation|Children|Musical +90264,Pinocchio (1976),Children|Fantasy|Musical +90266,Buck (2011),Documentary +90268,Hell (2011),Horror|Sci-Fi|Thriller +90270,Exit (2006),Drama|Mystery|Thriller +90273,Frozen Hell (Jäämarssi) (2011) ,Documentary|War +90279,Clara and Me (Clara et moi) (2004),Drama|Romance +90281,My Joy (Schastye moe) (2010),Drama +90284,"Overbrook Brothers, The (2009)",Comedy +90286,"I Am My Films - A Portrait of Werner Herzog (Was ich bin, sind meine Filme) (1979)",Documentary +90288,Portrait Werner Herzog (1986),Documentary +90292,Sokkotanssi (1999),Comedy|Drama +90303,Pilate and Others (Pilatus und andere - Ein Film für Karfreitag) (1972) ,Drama +90306,"Smiling Madame Beudet, The (La souriante Madame Beudet) (1923)",Drama +90308,Snow (Snijeg) (2008),Drama +90310,Father of Invention (2010),Comedy|Drama +90312,Quiet Flows the Don (Tikhiy Don) (1957),Drama|War +90314,No Exit (Huis clos) (1954),Drama +90319,At Sea (2007),Documentary +90321,House by the River (1950),Crime|Drama|Film-Noir +90327,"Bullfighters, The (1945)",Comedy|Musical +90339,"Last Days of Pompeii, The (Gli ultimi giorni di Pompeii) (1913)",Adventure|Drama +90341,Catching Hell (2011),Documentary +90343,Footloose (2011),Comedy|Drama|Musical +90345,"Thing, The (2011)",Horror|Mystery|Sci-Fi|Thriller +90350,Lemmy (2010),Documentary +90353,Beautiful Boy (2010),Drama +90355,"Harvest/La Cosecha, The (2011)",Documentary +90357,Tyrannosaur (2011),Drama +90359,Männerherzen... und die ganz ganz große Liebe (2011),Comedy|Drama|Romance +90364,"O-Bi, O-Ba - The End of Civilization (O-bi, O-ba - Koniec cywilizacji) (1985)",Drama|Mystery|Sci-Fi +90371,"Killer Is Loose, The (1956)",Crime|Drama|Film-Noir +90374,Martha Marcy May Marlene (2011),Drama|Thriller +90376,We Need to Talk About Kevin (2011),Drama|Thriller +90378,Tabloid (2010),Documentary +90380,"Old Fashioned Way, The (1934)",Comedy +90382,"River Murders, The (2011)",Thriller +90384,Behind Enemy Lines II: Axis of Evil (2006),Action|Thriller|War +90397,"Return of Django (Son of Django) (Figlio di Django, Il) (1968)",Western +90403,"Three Musketeers, The (2011)",Action|Adventure +90405,In Time (2011),Crime|Sci-Fi|Thriller +90413,Oranges and Sunshine (2010),Drama +90419,"Pain in the Ass, A (L'emmerdeur) (2008)",Comedy +90421,Brighton Rock (2010),Crime|Drama|Thriller +90424,"League of Gentlemen, The (1960)",Adventure|Comedy|Crime|Drama +90426,Burning Palms (2010),Comedy|Drama +90428,Margaret (2011),Drama +90430,Carnage (2011),Comedy|Drama +90432,Lentsu (1990),Comedy +90434,Assassination Games (2011),Action|Thriller +90439,Margin Call (2011),Drama|Thriller +90453,Mystics in Bali (Leák)(1981),Fantasy|Horror|Thriller +90458,God's Little Acre (1958),Comedy|Drama|Romance +90460,2019: After the Fall of New York (1983),Action|Horror|Sci-Fi +90462,Alaska: Silence & Solitude (2005),Documentary +90466,Out California Way (1946),Western +90469,Paranormal Activity 3 (2011),Horror +90471,Puncture (2011),Drama +90474,Polisse (2011),Crime|Drama +90476,"Little Bit of Heaven, A (2011)",Comedy|Drama|Romance +90478,Year of the Carnivore (2010),Comedy|Romance +90488,"Perfect Couple, A (1979)",Comedy|Romance +90493,War of the Robots (La guerra dei robot) (1978),Action|Adventure|Sci-Fi +90495,Prisoners of the Lost Universe (1983),Action|Adventure|Sci-Fi +90497,Bertsolari (2011),Documentary +90514,Blondie Knows Best (1946),Comedy +90522,Johnny English Reborn (2011),Adventure|Comedy|Thriller +90524,Abduction (2011),Action|Drama|Mystery|Thriller +90526,Beginning of the Great Revival (a.k.a. The Founding of a Party) (2011),Drama|IMAX +90528,This Must Be the Place (2011),Crime|Drama|Thriller +90531,Shame (2011),Drama +90533,"Marseillaise, La (1938)",Drama|War +90535,Werewolf Woman (La lupa mannara) (1976),Horror +90537,"Love Affair, or the Case of the Missing Switchboard Operator (Ljubavni slucaj ili tragedija sluzbenice P.T.T.) (1967)",Drama +90543,11 x 14 (1977),Drama +90545,"True Story of Jesse James, The (1957)",Action|Crime|Western +90547,One to Another (Chacun sa nuit) (2006),Drama +90549,American Son (2008),Drama|Romance|War +90552,Blame (6 Films to Keep You Awake) (Películas para no dormir: La culpa) (2006),Drama|Horror|Mystery +90554,"Book of Stars, The (1999)",Drama +90556,Directed by John Ford (1971),Documentary +90559,TV Junkie (2006),Documentary +90561,"Happy, Happy (Sykt lykkelig) (2010)",Comedy|Drama +90564,"Screaming Man, A (Un homme qui crie) (2010)",Drama +90566,"Cab for Three, A (Taxi para tres) (2001)",Action|Comedy|Crime|Drama +90568,Unholy (2007),Horror|Thriller +90570,Ballad of the Little Soldier (Ballade vom kleinen Soldaten) (1984),Documentary +90572,May 18 (Hwaryeohan hyuga) (2007),Drama +90574,Nora's Will (Cinco días sin Nora) (2008),Comedy|Drama +90576,What's Your Number? (2011),Comedy|Romance +90578,Dream House (2011),Drama|Mystery|Thriller +90592,How to Die in Oregon (2011),Documentary|Drama +90594,"Suddenly, Last Winter (Improvvisamente l'inverno scorso) (2008)",Documentary +90596,Queen of Blood (1966),Horror|Sci-Fi +90598,Radioactive Dreams (1985),Action|Comedy|Film-Noir|Musical|Sci-Fi +90600,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller +90603,Batman: Year One (2011),Action|Animation|Crime +90605,America Before Columbus (2009),Documentary +90609,Camouflage (Barwy ochronne) (1977),Comedy|Drama +90617,Pajeczarki (1993),Action|Comedy +90620,Mulan (2009),Action|Adventure|Drama|Romance +90622,Campus Radio (2011),Comedy|Drama +90624,Machine Gun Preacher (2011),Action|Crime +90630,Miss Representation (2011),Documentary +90632,Answer This! (2010),Comedy|Romance +90634,"Doll, The (Lalka) (1968)",Drama|Romance +90645,Anonymous (2011),Drama +90647,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX +90649,Mr. Nice (2010),Comedy|Drama +90651,Hella W (2011),Drama +90653,"Carpenter, The (1988)",Horror|Thriller +90662,"Veteran, The (2011)",Action|Thriller +90664,"Gold of Naples, The (L'oro di Napoli) (1954)",Comedy +90666,Crashing (2007),Drama +90668,"Loving Father, A (Aime ton père) (2002)",Drama +90671,End of the Game (Der Richter und sein Henker) (1975),Crime|Drama|Mystery|Thriller +90673,Gone to Earth (1950),Drama|Romance +90683,Black Cadillac (2003),Horror|Thriller +90690,Colorado Avenue (2007),Drama +90693,"Sunday Day in Hell, A (En forårsdag i Helvede) (1976)",Documentary +90697,Doc (1971),Western +90700,Al Franken: God Spoke (2006),Documentary +90702,Bone (1972),Comedy +90704,Hamlet (1969),Drama +90706,"China 9, Liberty 37 (Amore, piombo e furore) (1978)",Western +90717,Tower Heist (2011),Action|Comedy|Crime +90719,J. Edgar (2011),Drama +90730,Sometimes They Come Back (1991),Drama|Fantasy|Horror|Thriller +90738,"Double, The (2011)",Action|Crime|Drama|Mystery|Thriller +90741,Cherry Crush (2007),Drama|Thriller +90744,WUSA (1970),Drama +90746,"Adventures of Tintin, The (2011)",Action|Animation|Mystery|IMAX +90748,Operation Mad Ball (1957),Comedy|War +90751,"Son of No One, The (2011)",Action|Crime|Thriller +90753,Undertow (Contracorriente) (2009),Drama|Romance +90769,Starsuckers (2009),Documentary +90775,Flicker (2009),Horror +90777,White on Rice (2009),Comedy +90795,"Exercice de l'État, L' (2011)",Drama +90806,"Heroic Ones, The (Shi san tai bao) (1970)",Action|Drama +90809,Tomboy (2011),Drama +90811,Glasses (Megane) (2007),Comedy|Drama +90813,See How They Fall (Regarde les hommes tomber) (1994),Drama +90815,Actresses (Actrices) (2007),Comedy|Drama +90817,Cobra Woman (1944),Adventure|Drama +90819,"Last Days of Pompeii, The (1935)",Adventure|Drama +90821,Capricious Summer (Rozmarné léto) (1968),Comedy +90823,Bandwagon (1996),Comedy +90825,Flower & Garnet (2002),Drama +90827,Loft (Rofuto) (2005),Horror +90843,Lavatory Lovestory (Ubornaya istoriya - lyubovnaya istoriya) (2007),Animation +90845,"Fall of the House of Usher, The (Zánik domu Usheru) (1982)",Animation +90849,Woman Obsessed (1959),Drama|Romance +90853,"Heirloom, The (Zhai Ban) (2005)",Drama|Horror +90863,George Harrison: Living in the Material World (2011),Documentary +90866,Hugo (2011),Children|Drama|Mystery +90868,Higher Ground (2011),Drama +90870,Trespass (2011),Crime|Drama|Thriller +90873,Savage Streets (1984),Action|Crime|Drama|Thriller +90876,"Dark House, The (Dom zly) (2009)",Crime|Drama|Thriller +90878,Street Scene (1931),Drama +90883,"Last Real Men, The (Die letzten Männer) (1994)",Documentary +90886,Election Day (2007),Documentary +90888,Immortals (2011),Action|Drama|Fantasy +90890,Jack and Jill (2011),Comedy +90895,Take Out (2004),Drama +90897,Chesty: A Tribute to a Legend (1976),Documentary +90899,"People vs. George Lucas, The (2010)",Documentary +90903,Mahjong (Ma jiang) (1996),Comedy|Drama +90907,Eerie Tales (Unheimliche Geschichten) (1919),Fantasy|Horror|Mystery +90910,Progression (2009),Adventure|Documentary +90912,Rage (2009),Drama +90914,"Devil's Double, The (2011)",Action|Drama +90916,Setup (Set Up) (2011),Action|Crime|Drama +90929,House of Tolerance (2011),Drama +90931,Beats Being Dead (Dreileben - Etwas Besseres als den Tod) (2011),Drama +90933,"Deep Blue Sea, The (2011)",Drama|Romance +90935,Killer (Tueur à gages) (1998),Action|Crime|Thriller +90937,My Mother and Her Guest (Sarangbang sonnimgwa eomeoni) (1961),Drama +90939,11-11-11 (11-11-11: The Prophecy) (2011),Horror|Thriller +90943,Into the Abyss (2011),Documentary +90945,"Sign of Four, The (1987)",Adventure|Crime|Drama +90947,"Oslo, August 31st (Oslo, 31. august) (2011)",Drama +90949,Paper Soldier (Bumazhnyy soldat) (2008),Drama|Romance +90951,"Nada Gang, The (Nada) (1974)",Thriller +90953,Whatever Lola Wants (2007),Drama +90958,Daffy Duck's Movie: Fantastic Island (1983),Animation|Children|Comedy +90960,Westward Ho (1935),Drama|Western +90963,"Last Mountain, The (2011)",Documentary +90965,Sasha (Sascha) (2010),Comedy|Drama +91007,I Want to Be a Soldier (2011),Drama +91010,Another Happy Day (2011),Drama +91012,"Big Hangover, The (1950)",Comedy +91014,Shaolin (Xin shao lin si) (2011),Action|Drama +91026,Fright (1972),Crime|Horror|Thriller +91028,"Story of Mankind, The (1957)",Drama|Fantasy +91031,Wichita (1955),Action|Romance|Western +91035,Wuthering Heights (2011),Drama +91037,From Beyond the Grave (Creatures) (1974),Horror +91044,LennoNYC (2010),Documentary +91046,"River Why, The (2010)",Drama +91048,Cherry (2010),Comedy|Drama +91054,Batman (1943),Action|Adventure|Crime|Sci-Fi|Thriller +91056,Batman and Robin (1949),Action|Adventure|Crime|Drama|Sci-Fi +91058,Make Like a Thief (Juokse kuin varas) (1964),Comedy|Crime|Thriller +91065,Bluebeard (Landru) (1963),Drama +91067,Spy(ies) (Espion(s)) (2009),Drama|Romance|Thriller +91069,"Good Morning, Miss Dove (1955)",Drama +91071,"Late George Apley, The (1947)",Comedy +91073,Million Dollar Legs (1932),Comedy +91075,"Great Flamarion, The (1945)",Drama|Film-Noir +91077,"Descendants, The (2011)",Comedy|Drama +91079,Like Crazy (2011),Drama|Romance +91094,"Muppets, The (2011)",Children|Comedy|Musical +91096,"White Dragon, The (Fei hap siu baak lung) (2004)",Action|Adventure|Fantasy|Romance +91104,"Twilight Saga: Breaking Dawn - Part 1, The (2011)",Adventure|Drama|Fantasy|Romance +91106,Circle of Deceit (Die Fälschung) (1981),Drama|War +91108,Figures in a Landscape (1970),Thriller +91110,Barocco (1976),Crime|Drama|Romance|Thriller +91112,Blown Away (1993),Action|Drama|Romance +91126,War Horse (2011),Drama|War +91128,"Rum Diary, The (2011)",Comedy|Drama|Thriller +91134,My Week with Marilyn (2011),Drama +91137,Stanley and Livingstone (1939),Adventure|Drama +91140,"Making Plans for Lena (Non ma fille, tu n'iras pas danser) (2009)",Drama +91154,"Uninvited, The (1996)",Drama|Horror|Mystery|Thriller +91163,Moonlight and Cactus (1944),Comedy|Musical|Western +91167,"Inconvenient Tax, An (2011)",Documentary +91169,Easier with Practice (2009),Drama|Romance +91179,I Was an Adventuress (1940),Comedy|Crime +91181,Safe in Hell (1931),Drama +91187,Millhaven (2010),Animation +91189,Three Days (Tres días) (2008),Crime|Drama|Fantasy +91191,À l'aventure (2008),Drama +91193,"Criminal, The (a.k.a. Concrete Jungle) (1960)",Crime|Drama +91195,"Wedding Director, The (Il regista di matrimoni) (2006)",Drama|Mystery +91199,Weekend (2011),Drama|Romance +91201,"South, The (Sur) (1988)",Drama +91204,"Bridge to Nowhere, The (2009)",Crime|Drama +91206,"Iron Rose, The (Rose de fer, La) (1973)",Horror +91208,Silvestre (1982),Drama +91211,Echoes of the Rainbow (Sui yuet san tau) (2010),Comedy|Drama|Romance +91213,Beijing Taxi (2010),Documentary +91216,"Lebanon, Pa. (2010)",Drama +91218,Hollywood Party (1934),Comedy|Musical +91223,"Constant Nymph, The (1943)",Drama|Romance +91227,Cyclomania (2001),Drama|Romance +91229,Enon opetukset (2011),Comedy|Drama +91231,My Flesh My Blood (Moja krew) (2009),Drama +91233,Lifted (2006),Animation|Comedy|Sci-Fi +91235,Living Will... (2010),Comedy +91241,Singham (2011),Action|Drama|Romance +91243,Shanghai (2010),Drama|Mystery|Romance +91246,Milky Way (Tejút) (2007),(no genres listed) +91248,"Silence Before Bach, The (Die Stille vor Bach) (2007) ",Musical +91250,Chandni Chowk to China (2009),Action|Comedy +91253,Stage Struck (1936),Comedy|Musical +91256,Faat Kiné (2001),Comedy|Drama +91261,Hipsters (Stilyagi) (2008),Drama|Musical|Romance +91266,Another Cinderella Story (2008),Children|Comedy|Musical|Romance +91268,"Plough and the Stars, The (1936)",Drama +91271,Miracle at Oxford (True Blue) (1996),Drama +91273,Bunraku (2010),Action|Drama|Fantasy +91284,"Lonely Passion of Judith Hearne, The (1987)",Drama|Romance +91286,"Little Colonel, The (1935)",Children|Comedy|Crime|Drama +91288,Gantz: Perfect Answer (2011),Action|Mystery|Sci-Fi +91290,Sarah's Key (Elle s'appelait Sarah) (2010),Drama +91298,Bigga Than Ben (2008),Crime|Drama +91302,"Tree, The (2010)",Children|Drama +91304,Xtro (1983),Horror|Sci-Fi +91306,Waiting for Happiness (Heremakono) (2002),Drama +91309,Applause (Applaus) (2009),Drama +91323,"Sitter, The (2011)",Comedy +91325,Extremely Loud and Incredibly Close (2011),Drama +91331,Terror on a Train (Time Bomb) (1953),Thriller +91333,Hanussen (1988),Drama +91335,"Gruffalo, The (2009)",Adventure|Animation|Children|Comedy|Drama +91337,Play the Game (2009),Comedy|Romance +91339,"12 Dogs of Christmas, The (2005)",Children +91351,Asterix and the Big Fight (Astérix et le coup du menhir) (1989),Adventure|Animation|Children|Comedy +91353,Asterix in America (a.k.a Asterix Conquers America) (Astérix et les Indiens) (1994),Adventure|Animation|Children|Comedy +91355,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy +91360,Sing Your Song (2011),Documentary +91362,Rings on Her Fingers (1942),Comedy|Romance +91371,Rampart (2011),Action|Crime|Drama|Thriller +91386,Happy Feet Two (2011),Animation|Children|Comedy|IMAX +91388,Angel (1982),Drama +91391,HealtH (1980),Comedy +91393,Amore (L'Amore) (1948),Drama +91395,That Cold Day in the Park (1969),Drama +91414,Arthur Christmas (2011),Animation|Children|Comedy|Drama +91416,Miss Bala (2011),Action|Adventure|Drama|Thriller +91419,Wind Across the Everglades (1958),Drama|Romance +91421,Red Line 7000 (1965),Action|Drama +91423,99 and 44/100% Dead (1974),Action|Adventure|Comedy|Crime +91425,"Suspect, The (1944)",Drama|Thriller +91429,12 Days of Terror (2005),Drama|Horror|Thriller +91442,"Midsummer Night's Dream, A (1968)",Comedy|Fantasy|Romance +91444,Getting to Know You (1999),Comedy|Drama +91446,Run for Cover (1955),Western +91448,Accidents Happen (2009),Comedy|Drama +91450,"Perfect Game, The (2009)",Drama +91461,Elephant White (2011),Action|Crime|Thriller +91470,Violet & Daisy (2011),Action|Drama +91474,Flypaper (2011),Comedy|Crime +91483,Bullet to the Head (2012),Action|Crime|Film-Noir +91485,"Expendables 2, The (2012)",Action|Adventure +91488,"Snowman, The (1982)",Animation|Children|Musical +91490,Sharktopus (2010),Action|Horror|Sci-Fi +91492,Bathing Beauty (1944),Comedy|Musical +91494,What Price Glory (1926),Comedy|Drama|War +91500,"Hunger Games, The (2012)",Action|Adventure|Drama|Sci-Fi|Thriller +91503,Blind Justice (Hævnens nat) (1916),Drama|Mystery|Thriller +91505,Clone (Womb) (2010),Drama|Romance|Sci-Fi +91509,Fire of Conscience (For lung) (2010),Action|Crime|Mystery|Thriller +91511,"Goddess, The (Shen nu) (1934)",Drama +91513,Intimate Lighting (Intimni osvetleni) (1965),Comedy|Drama +91515,Sweeney Todd: The Demon Barber of Fleet Street (1936),Crime|Horror +91517,"Death King, The (Der Todesking) (1990)",Drama|Horror +91529,"Dark Knight Rises, The (2012)",Action|Adventure|Crime|IMAX +91531,Hovering Over the Water (À Flor do Mar) (1986),Drama|Romance +91533,Dacii (1967),Drama|War +91535,"Bourne Legacy, The (2012)",Action|Adventure|Drama|Thriller|IMAX +91537,"Don't Worry, I'm Fine (Je vais bien, ne t'en fais pas) (2006)",Drama +91540,I Melt with You (2011),Drama +91542,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller +91548,Life in a Day (2011),Documentary|Drama +91554,Evidence of Blood (1998),Crime|Drama|Mystery|Thriller +91556,"Cost of Living, The (Le coût de la vie) (2003)",Comedy +91558,Flamenco (de Carlos Saura) (1995),Musical +91560,"Funny Man, A (Dirch) (2011)",Drama +91562,Judex (1916),Adventure +91564,Wild Animals (Yasaeng dongmul bohoguyeog) (1997),Crime|Drama +91566,Sasayaki (a.k.a. Moonlight Whispers) (Gekkô no sasayaki) (1999),Drama|Romance +91571,Coriolanus (2011),Drama|Thriller +91573,Americano (2011),Drama +91582,Stagecoach (1966),Western +91586,Angelus (2000),Comedy|Drama +91589,"Forty-first, The (Sorok pervyy) (1956)",Drama|Romance|War +91591,Macon County Line (1974),Action|Drama +91593,Gitmek: My Marlon and Brando (Gitmek: Benim Marlon ve Brandom) (2008),Drama|Romance|War +91595,Prom Night in Mississippi (2009),Documentary +91597,This Is Not a Film (In film nist) (2011),Documentary +91599,Carmen Comes Home (Karumen kokyo ni kaeru) (1951),Comedy +91601,Outside Satan (Hors Satan) (2011),Drama +91603,"Student, The (El estudiante) (2011)",Drama +91605,Shit Year (2010),Drama +91610,Toronto Stories (2008),Drama +91612,Backstage (2005),Drama +91615,Better Things (2008),Drama +91617,"New Life, A (La vie nouvelle) (2002)",Drama +91619,"Why Are the Bells Ringing, Mitica? (a.k.a. Carnival Scenes) (De ce trag clopotele, Mitica?) (1981)",Comedy +91622,Young Adult (2011),Comedy|Drama +91624,Mr Bones 2: Back from the Past (2008),Comedy +91626,Faces in the Crowd (2011),Crime|Drama|Mystery +91628,New Year's Eve (2011),Comedy|Romance +91630,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX +91632,G.I. Joe: A Real American Hero (G.I. Joe: The MASS Device) (1983),Action|Animation +91634,G.I. Joe: The Revenge of Cobra (1984),Action|Animation +91653,We Bought a Zoo (2011),Comedy|Drama +91655,April in Paris (1952),Comedy|Musical|Romance +91658,"Girl with the Dragon Tattoo, The (2011)",Drama|Thriller +91660,"Darkest Hour, The (2011)",Action|Horror|Sci-Fi|Thriller +91664,Picture Me: A Model's Diary (2009),Documentary +91666,Last Holiday (1950),Comedy|Drama|Romance +91671,Alvin and the Chipmunks: Chipwrecked (2011),Animation|Comedy +91673,Albert Nobbs (2011),Drama +91681,"Julia's Eyes (Ojos de Julia, Los) (2010)",Horror|Thriller +91683,Metrobranding (2010),Documentary +91688,Salvation Boulevard (2011),Comedy|Thriller +91690,Friends with Kids (2011),Comedy +91692,"Girl in the Red Velvet Swing, The (1955)",Crime|Drama|Romance +91694,Intruders (2011),Horror|Thriller +91697,Pitfall (1948),Film-Noir +91707,In the Land of Blood and Honey (2011),Drama|Romance|War +91709,Kongo (1932),Drama|Horror +91711,Shockproof (1949),Crime|Drama|Film-Noir +91713,Boy Meets Girl (1938),Comedy +91715,Model Shop (1969),Drama +91718,Broken Lullaby (a.k.a. The Man I Killed) (1932),Drama +91727,"Toast of New York, The (1937)",Comedy|Drama|War +91729,Texas (1941),Drama|Romance|Western +91741,Peas at 5:30 (Erbsen auf halb 6) (2004),Comedy|Drama|Romance +91743,Today's Special (2009),Comedy +91745,Brutal Beauty: Tales of the Rose City Rollers (2010),Documentary +91747,G.I. Joe: Operation Dragonfire (1989),Action|Animation +91749,Sophie's Revenge (Fei chang wan mei) (2009),Comedy|Romance +91752,Pokemon: The Movie 2000 (2000),Adventure|Animation|Children|Fantasy +91755,Reagan (2011),Documentary +91757,Santa Buddies (2009),Adventure|Children +91762,"Last Lions, The (2011)",Documentary +91766,Machine Gun McCain (Gli intoccabili) (1969),Crime|Drama|Thriller +91768,"Outside Man, The (Un homme est mort) (1972)",Action|Crime|Drama|Thriller +91770,Private Hell 36 (1954),Crime|Drama|Film-Noir +91782,Territories (2010) ,Crime|Horror +91784,Girl Walks Into a Bar (2011),Comedy|Drama|Fantasy +91786,Professor Layton and the Eternal Diva (Eiga Reiton-kyôju to eien no utahime) (2009),Action|Adventure|Animation|Mystery|Sci-Fi +91789,Bringing Up Bobby (2011),Comedy +91793,"Painting Sellers, The (Taulukauppiaat) (2010)",Drama +91795,Hans (Kukkulan kuningas) (2009) ,Crime|Drama +91797,"Chapman Report, The (1962)",Comedy|Drama|Romance +91799,Skyscraper Souls (1932),Drama|Romance +91805,Ladies vs. Ricky Bahl (2011),Comedy|Drama +91808,Pariah (2011),Drama +91821,"Muppet Family Christmas, A (1987)",Children|Comedy|Musical +91823,Kung Fu Panda Holiday Special (2010),Animation|Children|Comedy +91826,Tanner Hall (2009),Drama +91829,Newlyweds (2011),Drama +91831,"Devil Inside, The (2012)",Horror|Thriller +91834,Born to Race (2011),Action +91840,Roadie (2011),Comedy|Drama +91842,Contraband (2012),Action|Crime|Drama|Thriller +91844,Chak De India! (2007),Drama +91852,"Métamorphose des cloportes, La (1965)",Comedy|Crime +91854,Mantrap (1926),Comedy +91856,"Last Ferry, The (Ostatni prom) (1989)",Drama +91858,"Cow, The (Gaav) (1969)",Drama +91860,"Way South, The (De weg naar het zuiden) (1981)",Documentary +91862,Local Color (1977),Drama +91866,Beneath the Darkness (2011),Thriller +91869,Being Elmo: A Puppeteer's Journey (2011),Documentary +91871,Idol of the Crowds (1937),Drama|Romance +91873,Joyful Noise (2012),Comedy|Musical +91880,My Best Enemy (Mi mejor enemigo) (2005),Drama|War +91882,To Die Like a Man (Morrer Como Um Homem) (2009),Drama|Fantasy|Musical +91884,"Sea Gull, The (1968)",Drama|Romance +91886,Dolphin Tale (2011),Children|Drama +91888,Chico & Rita (2010),Animation|Musical|Romance +91890,"Iron Lady, The (2011)",Drama +91894,Happy Tears (2009),Comedy|Drama +91896,"Golden Boys, The (2008)",Comedy|Romance +91902,Elena (2011),Drama +91904,"House Built on Water, A (Khanei ruye ab) (2003)",Thriller +91906,Aurora (2010),Drama +91908,Psyhi vathia (a.k.a. Deep Soul) (2009),Drama|War +91911,"Conquest, The (La conquête) (2011)",Drama +91914,Mad Bastards (2010),Drama +91919,Mr. Bug Goes to Town (1941),Animation|Children|Comedy|Fantasy|Musical +91921,"Construction, The (En construcción) (2001)",Documentary +91924,"Wild Bees, The (Divoké vcely) (2001)",Comedy|Drama +91927,"End of the Line, The (2009)",Documentary +91929,Nostalgia for the Light (Nostalgia de la luz) (2010),Documentary|Drama +91933,Top Floor Left Wing (Dernier étage gauche gauche) (2010),Action|Comedy|Drama +91935,Albatross (2011),Drama +91937,Loosies (2012),Comedy|Drama|Romance +91947,"Revenant, The (2009)",Comedy|Horror +91952,"Mill and the Cross, The (2011)",Drama +91954,One Trick Pony (1980),Drama +91957,Cat Run (2011),Action|Comedy +91960,"Magic Christmas Tree, The (1964)",Children|Comedy|Fantasy +91970,The Man Next Door (2009),Comedy|Drama +91972,"Divide, The (2011)",Thriller +91974,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX +91976,"Grey, The (2012)",Action|Drama +91978,Man on a Ledge (2012),Crime|Thriller +91981,Sacrifice (Zhao shi gu er) (2010),Drama +91983,"Hustlers, The (Veijarit) (2010)",Comedy|Drama +91987,"Pruitt-Igoe Myth, The (2011)",Documentary|Drama +91991,First Family (1980),Comedy +91993,All Night Long (1962),Drama +91995,Gorilla at Large (1954),Mystery|Thriller +91997,"Garden of Eden, The (2008)",Drama +92001,Time Without Pity (1957),Crime|Drama|Mystery +92004,Chill Out! (Descongélate!) (2003),Comedy|Drama +92006,White Irish Drinkers (2010),Drama +92008,Haywire (2011),Action|Thriller +92010,Case départ (2011),Comedy +92023,"Las Vegas Story, The (1952)",Crime|Drama|Film-Noir +92025,My Man and I (1952),Drama +92027,Secrets (1933),Western +92029,Westbound (1959),Western +92032,"Don Is Dead, The (1973)",Action|Crime|Drama|Thriller +92046,Contact High (2009),Comedy +92048,"Whistleblower, The (2010)",Drama|Thriller +92058,"Human Centipede II (Full Sequence), The (2011)",Horror +92062,Dad Savage (1998),Crime|Thriller +92064,You and Me (1938),Crime|Romance +92079,"Nazis: A Warning from History, The (1997)",Documentary|War +92083,Zen (2009),Drama +92085,King of Beggars (Mo jong yuen So Hat-Yi) (1992),Action|Comedy|Drama +92094,Einstein and Eddington (2008),Drama +92096,14 Blades (Jin yi wei) (2010),Action|Drama +92099,"Locals, The (2003)",Horror|Thriller +92102,"Buona Sera, Mrs. Campbell (1968)",Comedy +92104,40 Pounds of Trouble (1962),Comedy +92106,My Future Boyfriend (2011),Comedy|Romance|Sci-Fi +92118,"Terrorizers, The (Kong bu fen zi) (1986)",Drama +92120,Good Bye (Bé omid é didar) (2011),Drama +92122,"Loneliest Planet, The (2011)",Thriller +92124,Images of the World and the Inscription of War (Bilder der Welt und Inschrift des Krieges) (1989),Documentary|War +92126,Policeman (Ha-shoter) (2011),Drama +92128,Disorder (2009),Documentary +92130,Red Psalm (Még kér a nép) (1972),Drama|Musical|War +92132,Regeneration (1915),Crime|Drama|Romance +92134,"Afternoon of a Torturer, The (Dupa-amiaza unui tortionar) (2001)",Drama +92136,We Won't Grow Old Together (Nous ne vieillirons pas ensemble) (1972),Drama +92152,"Turn Me On, Dammit! (Få meg på, for faen) (2011)",Comedy +92154,Faust (2011),Drama +92156,Post Mortem (2010),Drama +92159,Decasia: The State of Decay (2002),Documentary +92161,Viva (2007),Comedy|Drama|Musical +92163,Fados (2007),Documentary|Musical +92165,Go Get Some Rosemary (Daddy Longlegs) (2009),Comedy|Drama +92167,Praise (1998),Drama +92169,Stanley Kubrick's Boxes (2008),Documentary +92172,Street Mobster (a.k.a. Modern Yakuza: Outlaw Killer) (Gendai yakuza: hito-kiri yota) (1972),Action|Crime +92174,Alexandria... Why? (Iskanderija... lih?) (1979),Drama +92176,"Grand Maneuver, The (Les grandes manoeuvres) (1955)",Comedy|Drama|Romance +92178,Can Go Through Skin (Kan door huid heen) (2009),Drama +92180,Morgen (2010),Drama +92182,"What's Up, Scarlet? (2005)",Comedy|Romance +92184,Christmas Evil (a.k.a. You Better Watch Out) (1980),Horror|Thriller +92186,Three Wise Men (Kolme viisasta miestä) (2008),Drama +92188,Call Her Savage (1932),Drama +92192,Apollo 18 (2011),Horror|Sci-Fi|Thriller +92196,Crazy Horse (2011),Documentary +92198,Seeking Justice (2011),Action|Drama|Thriller +92200,"Sound and the Fury, The (1959)",Drama|Romance +92204,"Pointe-Courte, La (1955)",Drama +92206,Hostel: Part III (2011) ,Horror|Thriller +92208,Wyvern (2009),Horror|Sci-Fi|Thriller +92210,"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)",Adventure|Animation|Drama|Mystery|Sci-Fi +92214,"Poseidon Adventure, The (2005) ",Action|Adventure|Drama +92222,Broken Trail (2006),Action|Adventure|Crime|Drama|Western +92224,"River Called Titas, A (Titash Ekti Nadir Naam) (1973)",Drama +92229,"Vanquished, The (I vinti) (1953)",Drama +92231,"Blue Bird, The (1918)",Fantasy +92234,Red Tails (2012),Action|Adventure|Drama|War +92236,In Darkness (2011),Drama +92240,Kagi (Odd Obsession) (1959),Drama +92243,"Flowers of War, The (Jin líng shí san chai) (2011)",Drama|War +92245,Enthusiasm (Entuziazm: Simfoniya Donbassa) (1931),Documentary +92250,"Scenesters, The (2009)",Comedy|Crime|Mystery +92252,Thunder Soul (2010),Documentary +92255,"Nun, The (La monja) (2005) ",Horror|Thriller +92257,Vlad (2003),Horror|Thriller +92259,Intouchables (2011),Comedy|Drama +92262,Declaration of War (La Guerre est Déclarée) (2011),Drama +92264,One for the Money (2012),Action|Comedy|Crime +92266,"Incredible Petrified World, The (1957)",Adventure|Sci-Fi +92268,Queen of the Amazons (1947),Action|Adventure|Mystery|Romance +92270,Becoming Chaz (2011),Documentary +92272,Countdown to Looking Glass (1984),Drama +92307,W.E. (2011),Drama|Romance +92309,"Innkeepers, The (2011)",Horror|Thriller +92314,Varasto (2011),Comedy|Drama +92321,Nancy Goes to Rio (1950),Comedy|Musical +92325,Dog Tags (2008),Drama|Romance +92335,Big Miracle (2012),Drama|Romance +92341,Collision Earth (2011),Action|Sci-Fi +92343,"Great Bank Hoax, The (1978)",Comedy|Crime +92348,Puss in Boots (Nagagutsu o haita neko) (1969),Adventure|Animation|Children|Comedy|Fantasy|Romance +92352,Reel Injun (2009),Documentary +92354,"Man Called Sledge, A (1970)",Western +92357,Cameraman: The Life and Work of Jack Cardiff (2010),Documentary +92371,Yolki (2010),Comedy +92374,Yolki 2 (2011),Comedy +92376,This Time Around (2003),Comedy|Romance +92378,Enid (2009),Drama +92380,Jenny (1936),Drama +92382,"Straits of Love and Hate, The (Aien kyo) (1937)",Drama +92389,State Fair (1933),Comedy|Drama|Romance +92391,Grave Encounters (2011),Horror +92393,Detective Dee and the Mystery of the Phantom Flame (Di Renjie) (2010),Action|Crime|Mystery +92399,Hurry Sundown (1967),Drama +92408,Batch '81 (1982),Drama +92410,"Eleventh Year, The (Odinnadtsatyy) (1928) ",Documentary +92412,Forever Yours (Ikuisesti sinun) (2011),Documentary +92416,Kariera Nikosia Dyzmy (2002),Comedy +92418,E=mc2 (2002),Action|Comedy +92420,Chronicle (2012),Action|Sci-Fi|Thriller +92422,"Woman in Black, The (2012)",Drama|Horror|Thriller +92424,Dottie Gets Spanked (1993),Drama +92427,Woman in Love (Rubbeldiekatz) (2011),Comedy +92435,"Dancing Hawk, The (Tanczacy jastrzab) (1978)",(no genres listed) +92437,Toast (2010),Comedy|Drama +92439,"Art of Getting By, The (2011)",Drama|Romance +92441,"Human Resources Manager, The (2010)",Drama +92446,"Overcoat, The (Il cappotto) (1952)",Comedy|Drama|Fantasy +92448,Bucky Larson: Born to Be a Star (2011),Comedy +92453,"Moine, Le (Monk, The) (2011)",Drama|Mystery|Thriller +92455,Can Mr. Smith Get to Washington Anymore? (2006),Documentary +92457,"Doll's House, A (1973)",Drama +92461,"Canyon, The (2009)",Thriller +92471,Cass Timberlane (1947),Drama|Romance +92475,All Watched Over by Machines of Loving Grace (2011),Documentary +92477,Yes: 9012 Live (1985),Documentary|Musical +92479,Kisses for My President (1964),Comedy +92481,Third Star (2010),Comedy|Drama +92483,Living Proof (2008),Drama +92490,Barbie in the Nutcracker (2001),Animation|Children|Musical +92494,Dylan Moran: Monster (2004),Comedy|Documentary +92496,"Dylan Moran: Like, Totally (2006)",Comedy +92498,Dylan Moran Live: What It Is (2009),Comedy +92500,"Dylan Moran: Yeah, Yeah (2011)",Comedy +92507,Safe House (2012),Action|Crime|Mystery|Thriller +92509,"Vow, The (2012)",Drama|Romance +92511,Swamp Shark (2011),Sci-Fi +92514,Moon of the Wolf (1972),Horror|Mystery +92516,She Gods of Shark Reef (1958),Adventure +92518,King Kong Escapes (Kingu Kongu no gyakushû) (1967),Action|Adventure|Sci-Fi +92520,"Chocolate Soldier, The (1941)",Comedy|Musical +92522,Frisco Jenny (1932),Drama +92533,My Boy Jack (2007),Drama|War +92535,Louis C.K.: Live at the Beacon Theater (2011),Comedy +92593,Special Bulletin (1983),Drama +92600,"As Luck Would Have It (Chispa de la vida, La) (2011)",Drama +92606,"Black Power Mixtape 1967-1975, The (2011)",Documentary +92611,"Girl from Jones Beach, The (1949)",Comedy +92613,Holding Trevor (2007),Drama|Romance +92633,The Castle of Sand (1974),Crime|Mystery|Thriller +92635,At Home by Myself... with You (2009),Comedy|Romance +92637,Pitfall (Otoshiana) (1962),Crime|Drama|Fantasy +92639,Casual Relations (1973),Drama +92641,Warsaw Bridge (Pont de Varsòvia) (1990),(no genres listed) +92643,Monsieur Lazhar (2011),Children|Comedy|Drama +92646,Tin Pan Alley (1940),Drama|Musical|Romance +92648,BookWars (2000),Comedy|Crime|Documentary +92652,Windfall (2010),Documentary +92658,Kino-Eye (Kinoglaz) (1924),Documentary +92660,Silence (Chinmoku) (1971),Drama +92665,"For a Good Time, Call... (2012)",Comedy|Drama|Romance +92670,"Jodorowsky Constellation, The (La constellation Jodorowsky) (1994)",Documentary +92672,Casey Jones (2011),Action|Adventure|Fantasy +92674,Janie Jones (2010),Drama|Musical +92676,Thirteen Women (1932),Drama|Mystery +92681,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX +92683,Stella Does Tricks (1996),Drama +92685,Valerie (2006),Drama +92687,"Boys, The (Pojat) (1962)",Drama|War +92691,Hoodoo Ann (1916),Comedy|Drama|Romance +92694,Perfect Sense (2011),Drama|Romance|Sci-Fi +92696,"Shrine, The (2010)",Horror +92698,Israeli Intelligence (Hamosad Hasagur) (2007),Action|Comedy +92702,Johnny Cash at Folsom Prison (2008),Documentary +92706,Fake (2010) ,Crime|Mystery|Thriller +92713,Forest of Bliss (1986),Documentary +92715,The Artist (2008),Comedy|Drama +92719,Tim and Eric's Billion Dollar Movie (2012),Comedy +92726,"Pearl, The (La perla) (1947)",Adventure|Drama|Romance +92728,"Summer by the River, A (Kuningasjätkä) (1998)",Drama +92730,Rollo and the Woods Sprite (Rölli ja metsänhenki) (2001),Children|Fantasy +92738,Beautiful Kate (2009),Drama|Mystery +92740,Chapiteau-show (Shapito-shou) (2011),Adventure|Comedy +92747,Vacuum-Cleaner Salesmen (Pölynimurikauppiaat) (1993),Documentary +92749,"Sommer der Gaukler, Der (2011)",Comedy +92751,Kokowääh (2011),Comedy +92756,Hearts of the West (1975),Comedy|Western +92758,When Love Is Not Enough: The Lois Wilson Story (2010),Drama +92760,"Atomic Brain, The (1963)",Horror|Sci-Fi +92768,Sixpack (Pussikaljaelokuva) (2011),Comedy|Drama +92781,"City Dark, The (2011)",Documentary +92783,Latin Music USA (2009),Documentary|Musical +92787,OKA! (2011),Drama +92789,Bombay Beach (2011),Documentary|Drama|Musical +92793,Rusalochka (The Little Mermaid) (1976),Children|Fantasy|Musical|Romance +92804,Bodyguards and Assassins (2009),Action|Drama +92817,"Sorcerer and the White Snake, The (Bai she chuan shuo) (2011)",Action|Fantasy|Romance +92819,"Flying Swords of Dragon Gate, The (Long men fei jia) (2011)",Action|Adventure|IMAX +92829,Smokin' Aces 2: Assassins' Ball (2010),Action +92836,Knuckle (2011) ,Documentary +92841,Winter in Wartime (Oorlogswinter) (2008),Drama|War +92843,"Three Musketeers, The (1939)",Adventure|Comedy|Musical +92845,Untamed Youth (1957),Drama +92847,God's Gift to Women (1931),Comedy|Romance +92852,Ricky Rapper and the Bicycle Thief (Risto Räppääjä ja polkupyörävaras) (2009),Children|Comedy|Musical +92867,"Truth About Love, The (2005)",Comedy|Romance +92872,Plans for Tomorrow (Planes para mañana) (2010),Drama +92874,Born to Be Bad (1934),Drama|Romance +92881,Such Is Life (Así es la vida...) (2000),Drama|Romance +92883,"Mysterious X, The (Sealed Orders) (Det hemmelighedsfulde X) (1914)",Drama|War +92885,"Septième juré, Le (2008)",Crime|Drama +92887,"Year and a Half in the Life of Metallica, A (1992)",Documentary|Musical +92894,Balkan Spy (Balkanski spijun) (1984),Comedy|Drama +92904,We Were Here (2011),Documentary +92906,Girls on the Road (a.k.a. Hot Summer Week) (1973),Comedy|Drama|Thriller +92910,Happy End (1967),Comedy +92918,New York in the 50's (2000),Documentary +92920,"Hunter, The (2011)",Drama +92923,"Dead, The (2010)",Horror +92925,"Love Trap, The (1929)",Comedy|Romance +92935,Kaleidoscope (1966),Comedy|Crime +92938,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller +92944,"Monster in Paris, A (Un monstre à Paris) (2011)",Adventure|Animation|Children +92946,"Souler Opposite, The (1998)",Comedy|Romance +92948,Film About a Woman Who... (1974),Drama +92951,Dos (2011),Drama|Fantasy|Romance +92954,Prayers for Bobby (2009),Drama +92956,Little Criminals (1995),Crime|Drama +92963,Bustin' Down the Door (2009),Documentary +92966,Love Wrecked (2005),Comedy|Romance +92968,"World according to Ion B., The (Lumea vazuta de Ion B) (2009)",Documentary +92980,Comanche Territory (Territorio comanche) (1997),Drama|War +93002,Father Takes a Wife (1941),Comedy|Romance +93006,"Very Potter Musical, A (2009)",Comedy|Musical +93008,"Very Potter Sequel, A (2010)",Comedy|Musical +93014,Perifery (Härmä) (2012),Drama +93022,Miss Nobody (2010),Comedy|Crime +93024,Retreat (2011),Thriller +93029,Guy and Madeline on a Park Bench (2009),Drama|Musical +93035,"Great Sinner, The (1949)",Drama +93037,Her Highness and the Bellboy (1945),Comedy|Romance +93040,"Civil War, The (1990)",Documentary|War +93061,October Baby (2011),Drama +93063,Khodorkovsky (2011),Documentary|Drama +93070,Ursul (2011),Comedy|Drama +93083,Live Music (2009),Animation +93114,Ro.Go.Pa.G. (1963),Comedy|Drama +93116,Paris Belongs to Us (Paris nous appartient) (1961),Mystery +93126,Bag of Bones (2011),Horror +93128,"Mozart's Sister (Nannerl, la soeur de Mozart) (2011)",Drama|Romance +93132,Seven Days in Utopia (2011),Drama +93134,"Women on the 6th Floor, The (Les Femmes du 6ème Étage) (2010)",Comedy +93136,One of Our Dinosaurs Is Missing (1975),Adventure|Comedy +93139,Mega Shark vs. Crocosaurus (2010),Action|Adventure|Horror +93142,Wrong Turn 4 (2011),Action|Horror|Thriller +93162,Moscow Clad in Snow (Moscou sous la neige) (1909) ,Documentary +93164,Sleep Tight (Mientras duermes) (2011),Horror|Thriller +93168,"Munekata Sisters, The (Munekata kyôdai) (1950)",Drama +93172,Arena (2011),Action|Thriller +93181,Mail Order Bride (1964),Comedy|Western +93183,"Satan Bug, The (1965)",Sci-Fi|Thriller +93185,Poppy Shakespeare (2008),Drama +93187,Freedom (2000),Drama +93189,"Price of Forgiveness, The (Ndeysaan) (2001)",Drama +93191,I Saw Mommy Kissing Santa Claus (2002),Children|Comedy +93193,Red Hill (2010),Crime|Thriller|Western +93196,Zone Troopers (1985),Action|Sci-Fi|War +93201,"Ice Rink, The (La patinoire) (1998)",Comedy|Romance +93204,"Secret Glory, The (2001)",Documentary +93206,"Woman Who Drinks, The (La femme qui boit) (2001)",Drama|Romance +93208,Mickey's The Prince and the Pauper (1990),Animation|Children +93210,"Life of Another, The (La vie d'une autre) (2012)",Comedy|Drama|Mystery +93212,"Cat in Paris, A (Une vie de chat) (2010)",Animation|Crime|Mystery +93217,Dr. Goldfoot and the Girl Bombs (Le spie vengono dal semifreddo) (1966),Comedy|Sci-Fi +93240,Children Who Chase Lost Voices from Deep Below (Hoshi o ou kodomo) (Journey to Agartha) (2011),Animation|Drama|Fantasy +93242,Gone (2012),Drama|Thriller +93263,"Plastic Age, The (1925)",Comedy|Romance +93265,Courageous (2011),Drama +93267,Flywheel (2003),Drama +93270,Project X (2012),Comedy +93272,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX +93279,Darling (2007),Drama +93287,"Big Year, The (2011)",Comedy +93289,"Liar, The (Valehtelija) (1981)",Comedy|Drama +93291,"Stone Left Unturned, A (Kovat miehet) (2000)",Comedy|Drama +93295,Mr. Moto's Last Warning (1939),Crime|Mystery|Thriller +93297,Act of Valor (2012),Action|Thriller|War +93320,Trailer Park Boys (1999),Comedy|Crime +93322,Don Quixote (1933),Adventure|Comedy|Drama +93324,Undefeated (2011),Documentary +93326,This Means War (2012),Action|Comedy|Romance +93328,One A.M. (1916),Comedy +93330,"Cure, The (1917)",Comedy +93333,"Bank, The (1915)",Comedy +93336,"Night Out, A (1915)",Comedy +93344,"Earth Dies Screaming, The (1964)",Horror|Sci-Fi +93351,"Dark Side of the Sun, The (1988)",Drama|Romance +93363,John Carter (2012),Action|Adventure|Sci-Fi|IMAX +93365,Canned Dreams (Säilöttyjä unelmia) (2012),Documentary +93367,Sunnyside (1919),Comedy +93376,When We Leave (Die Fremde) (2010),Drama +93379,Genius Within: The Inner Life of Glenn Gould (2009),Documentary +93391,10 Mountains 10 Years (2010),Documentary +93393,Great Directors (2009),Documentary +93399,"Take, The (1974)",Crime|Drama +93404,Queen: Days of Our Lives (2011),Documentary +93406,Police (1916),Comedy +93408,Behind the Screen (1916),Comedy|Romance +93418,Easy Street (1917),Comedy +93420,"Art of Flight, The (2011)",Adventure|Documentary +93422,Starbuck (2011),Comedy +93432,Forks Over Knives (2011),Documentary +93437,Deserter (Dezertir) (1933),Drama +93439,Skies Above the Landscape (Nebo iznad krajolika) (2006),Comedy +93441,United Red Army (Jitsuroku Rengo Sekigun: Asama sanso e no michi) (2007),Drama +93443,Goon (2011),Comedy|Drama +93448,Landscape with a Woman (Zena s krajolikom) (1989),Drama +93450,Blind Pig Who Wants to Fly (Babi buta yang ingin terbang) (2008),Drama +93455,¡Qué hacer! (1970),Drama +93457,"Hidden Face, The (La cara oculta) (2011)",Thriller +93459,In Gold We Trust (600 kilos d'or pur) (2010),Adventure +93463,Eye of the Devil (1966),Horror|Mystery +93467,Listen to Your Heart (2010),Drama|Musical|Romance +93469,Dead on Time (1983),Comedy|Drama|Romance +93473,Pale Cocoon (Peiru Kokun) (2006),Animation|Sci-Fi +93475,"Awakening, The (2011)",Horror|Thriller +93479,"Round Up, The (La Rafle) (2010)",Drama|War +93481,Miral (2010),Drama +93484,Princess of Mars (2009),Sci-Fi|Thriller|War +93490,Law of the Lawless (Brigada) (2002),Crime +93492,Like Water (2011),Documentary +93496,Cencoroll (2009),Action|Animation|Sci-Fi +93498,Game Change (2012),Drama +93500,Kill by Inches (1999),Fantasy|Horror|Thriller +93502,"Ledge, The (2011)",Drama|Thriller +93504,Bestseller (Be-seu-teu-sel-leo) (2010),Horror|Mystery|Thriller +93510,21 Jump Street (2012),Action|Comedy|Crime +93512,"Jeff, Who Lives at Home (2012)",Comedy|Drama +93516,Blackballed: The Bobby Dukes Story (2004),Comedy +93520,Adventures of Captain Marvel (1941),Action|Adventure|Fantasy|Mystery|Sci-Fi +93522,Captain Midnight (1942),Action|Adventure|Thriller +93531,Harmagedon (1986),Action|Drama +93533,City of Fear (1959),Crime|Thriller +93535,Treed Murray (2001),Drama +93544,Satan Never Sleeps (1962),Drama|War +93547,S.O.S. Coast Guard (1937),Action|Adventure|Sci-Fi|Thriller +93550,Yes Or No (2010),Comedy|Drama|Romance +93552,Blind (Beul-la-in-deu) (2011),Drama|Horror|Thriller +93563,Lockout (2012),Action|Sci-Fi|Thriller +93568,Punksters & Youngsters (Punk - Tauti joka ei tapa) (2008),Documentary +93570,Bedevilled (Kim Bok-nam salinsageonui jeonmal) (2010),Crime|Drama|Horror +93572,Lucky (2011),Comedy|Crime|Romance +93574,Resurrect Dead: The Mystery of the Toynbee Tiles (2011),Documentary|Mystery +93578,"Lonely Place to Die, A (2011)",Adventure|Crime|Thriller +93583,Caltiki the Undying Monster (1959),Adventure|Horror|Sci-Fi|Thriller +93598,"Snowtown (Snowtown Murders, The) (2011)",Crime|Drama|Thriller +93610,Space Battleship Yamato (2010),Action|Adventure|Drama +93612,Nothing Lasts Forever (1984) ,Comedy|Fantasy|Sci-Fi +93621,"Bleeding, The (2009)",Action|Horror +93628,Family Meeting (2007),Documentary|Musical +93641,Wreckers (2011),Drama +93649,Fat Head (2009),Documentary +93652,Public Housing (1997),Documentary +93654,"Runner, The (Davandeh) (1990)",Drama +93656,Last Exit (2003),Crime|Drama|Thriller +93659,Verbo (2011),Adventure|Fantasy +93665,"Frankenstein Syndrome, The (2010)",Horror|Sci-Fi +93667,"Thousand Months, A (Mille mois) (2003)",Drama +93669,La nación clandestina (1990),Drama +93672,Manrape (Män kan inte våldtas) (1978) ,Drama +93674,Passion of Love (Passione d'amore) (1981),Drama|Romance +93676,Women Art Revolution (2010),Documentary +93693,Casa de mi Padre (2012),Comedy +93700,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary +93702,Tropical Fish (Re dai yu) (1995),Comedy|Drama +93707,Prom Queen: The Marc Hall Story (2004),Comedy|Drama +93709,Evolver (1995),Action|Horror|Sci-Fi +93717,Listy do M. (2011),Comedy|Romance +93719,Dragon Age: Redemption (2011),Action|Adventure|Fantasy +93721,Jiro Dreams of Sushi (2011),Documentary +93723,Damsels in Distress (2011),Comedy|Romance +93725,"Skin Too Few: The Days of Nick Drake, A (2002)",Documentary +93727,Human Lanterns (Ren pi deng long) (1982),Action|Horror +93729,Pageant (2008),Documentary +93731,"Warm December, A (1973)",Drama|Romance +93733,White Night Wedding (Brúðguminn) (2008),Drama +93740,Salmon Fishing in the Yemen (2011),Comedy|Drama|Romance +93742,Hotel (1967),Drama +93748,Eden of the East the Movie I: The King of Eden (Higashi no Eden Gekijoban) (2009),Action|Animation|Crime|Sci-Fi|Thriller +93750,Eden of the East the Movie II: Paradise Lost (Higashi no Eden Gekijôban II: Paradise Lost) (2010),Animation|Crime|Mystery|Sci-Fi|Thriller +93752,Saving Face (2012),Documentary|Drama +93757,Admiral Yamamoto (1968),Drama|War +93764,Meeting Evil (2012),Crime|Drama|Mystery|Thriller +93766,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX +93768,Bending the Rules (2012),Action|Drama +93775,Seitsemän veljestä (1939),Drama +93782,Paan Singh Tomar (2010),Crime +93785,"Horrible Dr. Hichcock, The (1962)",Horror +93790,Detachment (2011),Drama +93792,Four Sided Triangle (1953),Romance|Sci-Fi +93797,"Incredible Hulk Returns, The (1988)",Action|Adventure|Drama|Sci-Fi +93801,Answers to Nothing (2011),Drama|Mystery +93803,4:44 Last Day on Earth (2011),Drama|Fantasy|Sci-Fi +93805,Iron Sky (2012),Action|Comedy|Sci-Fi +93816,"Ghost, The (1963)",Horror|Mystery +93819,Absentia (2011),Horror +93821,There's Something Wrong with Aunt Diane (2011),Documentary +93831,American Reunion (American Pie 4) (2012),Comedy +93834,Ticked-Off Trannies with Knives (2010),Action|Comedy|Crime|Horror|Thriller +93838,The Raid: Redemption (2011),Action|Crime +93840,"Cabin in the Woods, The (2012)",Comedy|Horror|Sci-Fi|Thriller +93842,Delicacy (La délicatesse) (2011),Comedy|Romance +93855,God Bless America (2011),Comedy|Drama +93859,"Desert of Forbidden Art, The (2010)",Adventure|Documentary|Drama|War +93861,"Wayshower, The (2011)",Drama +93865,Frankenstein (1910),Drama|Horror|Sci-Fi +93885,Osmosis (Osmose) (2003),Comedy|Drama|Romance +93888,"Clay Bird, The (Matir moina) (2002)",Drama +93890,"Dupes, The (Al-makhdu'un) (1973)",Drama +93892,Romantics Anonymous (Les émotifs anonymes) (2010),Comedy|Romance +93894,"Unknown Woman, The (Tuntematon emäntä) (2011)",Documentary +93900,Popatopolis (2009),Documentary +93905,The Gamma People (1956),Horror|Sci-Fi +93907,"Wild, Wild Planet (I criminali della galassia) (1965)",Sci-Fi +93909,Yumurta (Egg) (2007),Drama +93911,Village People Radio Show (Apa khabar orang kampung) (2007),Documentary +93914,Das Lied in mir (2010),Drama +93916,Genesis (1998),Drama|Horror +93918,"Big Night, The (1951)",Drama|Film-Noir|Thriller +93921,Housefull 2 (2012),Comedy|Romance +93923,Agent Vinod (2012),Action +93928,After... (2006),Horror|Thriller +93931,Lust for Gold (Duhul aurului) (1974),Drama +93933,Footnote (Hearat Shulayim) (2011),Drama +93939,Café de Flore (2011),Drama +93946,L!fe Happens (2012),Comedy +93948,Midnight Movie (2008),Horror|Thriller +93950,Ollie Hopnoodle's Haven of Bliss (1988),Children|Comedy +93952,"Silent House, The (La casa muda) (2010)",Horror|Thriller +93954,Silent House (2011),Horror|Thriller +93963,Wild About Harry (2000),Comedy|Drama|Romance +93967,"Keeping the Promise (Sign of the Beaver, The) (1997)",Children|Drama +93970,Helsinki Napoli All Night Long (1987),Comedy|Thriller +93980,"Three Stooges, The (2012)",Comedy +93982,"Raven, The (2012)",Mystery|Thriller +93988,North & South (2004),Drama|Romance +93991,"Eye for an Eye, An (Silmä silmästä) (1999)",Horror +94005,"Ballad of Nessie, The (2011)",Animation|Children +94011,"Big Bang, The (2011)",Action|Thriller +94015,Mirror Mirror (2012),Adventure|Comedy|Fantasy +94018,Battleship (2012),Action|Sci-Fi|Thriller|IMAX +94022,Notre jour viendra (2010),Drama +94024,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary +94027,Uwasa No Onna (The Woman in the Rumor) (Her Mother's Profession) (1954),Drama|Romance +94041,Appropriate Adult (2011),Drama +94044,Terraferma (2011),Drama +94061,Madhouse (1974),Crime|Horror|Mystery +94068,Goodbye First Love (2011),Drama|Romance +94070,"Best Exotic Marigold Hotel, The (2011)",Comedy|Drama +94074,Rush: Beyond the Lighted Stage (2010),Documentary|Musical +94076,Position Among The Stars (Stand van de Sterren) (2010),Documentary +94080,"Horse Rebellion, The (Pulakapina) (1977)",Drama +94083,"Second Time Around, The (1961)",Comedy|Western +94101,Crime After Crime (2011),Documentary +94103,Black Pond (2011),Comedy|Drama +94107,18 Years Later (Diciotto anni dopo) (2010),Comedy|Drama +94109,King of Devil's Island (Kongen av Bastøy) (2010) ,Action|Drama +94112,Twelve (2010),Crime|Drama|Thriller +94114,Sharpay's Fabulous Adventure (2011),Children|Comedy +94120,"Cartoonist: Jeff Smith, BONE and the Changing Face of Comics, The (2009)",Documentary +94122,Comic-Con Episode IV: A Fan's Hope (2011),Documentary +94126,Bullhead (Rundskop) (2011),Crime|Drama +94128,Drummer-Crab (Le Crabe-Tambour) (1977),Adventure|Drama|War +94130,Bully (2011),Documentary +94133,"Hammer, The (2010)",Drama +94142,Uncovered (1995),Mystery|Thriller +94144,"Chance of a Lifetime, The (1943)",Crime|Drama +94146,Flower in Hell (Jiokhwa) (1958),Crime|Drama +94148,White Mountains (Belyie gory) (1964),Drama +94150,Hysteria (2011),Comedy|Romance +94153,Cold Storage (2000),Thriller +94155,Listen to Britain (1942),Documentary +94157,"Mad Masters, The (Les maîtres fous) (1955)",Documentary +94160,Dante's Inferno: An Animated Epic (2010),Action|Animation|Fantasy +94184,"Bleeding House, The (2011)",Drama|Horror|Mystery|Thriller +94186,Barrier (Bariera) (1966),Comedy|Drama +94188,Crazy Sexy Cancer (2007),Documentary +94190,Aakrosh (2010),Action|Drama|Thriller +94192,Devil's Diary (2007),Drama|Horror|Mystery +94202,"¡Alambrista! (Illegal, The) (1977)",Drama +94204,Androcles and the Lion (1952),Comedy +94218,Super Demetrios (2012),Adventure|Comedy|Sci-Fi +94220,Naked Ambition: An R Rated Look at an X Rated Industry (2009) ,Documentary +94222,Don't Eat the Pictures: Sesame Street at the Metropolitan Museum of Art (1983),Children +94262,"Atomic Submarine, The (1959)",Sci-Fi|Thriller +94264,"Baron of Arizona, The (1950)",Drama|Romance|Western +94266,"Five-Year Engagement, The (2012)",Comedy|Romance +94268,"White Darkness, The (2002)",Documentary +94271,Voyage to the End of the Universe (Ikarie XB 1) (1963),Sci-Fi +94278,Muzi v nadeji (2011),Comedy|Drama|Romance +94280,Spud (2010),Comedy +94283,Black Sun (Kuroi taiyô) (1964),Drama|Thriller +94289,"Murderer Lives at Number 21, The (L'assassin habite... au 21) (1942)",Comedy|Mystery|Thriller +94291,Judgment in Berlin (1988),Crime|Drama +94299,Elsewhere (2009),Crime|Drama|Thriller +94301,"Marc Pease Experience, The (2009)",Comedy|Drama|Musical +94304,Buried Alive II (1997),Horror|Thriller +94306,One Body Too Many (1944),Comedy|Horror|Mystery +94308,Slim Carter (1957),Comedy|Western +94310,In the Hands of the Gods (2007),Documentary +94312,"Catechism Cataclysm, The (2011)",Comedy +94314,"Devil's Rock, The (2011)",Horror|Thriller|War +94323,Think Like a Man (2012),Comedy +94325,"Lucky One, The (2012)",Drama +94327,Diverted (2009),Drama +94337,"First Texan, The (1956)",Western +94339,"Good-bye, My Lady (1956)",Drama +94341,Chosin (2010) ,Documentary|War +94350,Nob Hill (1945),Drama|Musical +94352,Bride Flight (2008),Drama +94365,Chained for Life (1951),Crime +94394,"Scarlet Letter, The (1979)",Drama +94401,If a Tree Falls: A Story of the Earth Liberation Front (2011),Documentary +94403,"Greening of Whitney Brown, The (2011)",Adventure +94405,Safe (2012),Action|Crime|Thriller +94407,"That Day, on the Beach (Hai tan de yi tian) (1983)",Drama +94410,Hamlet (2009),Drama +94412,"Fairy, The (La fée) (2011) ",Comedy|Drama +94417,Diaries Notes and Sketches (Walden) (1969),Documentary +94419,3rd World Hero (Bayaning Third World) (2000),Drama +94421,Fruitcake (2003),Comedy +94423,Disney Princess Collection: Jasmine's Enchanted Tales: Jasmine's Wish (1999),Animation +94425,Kept Husbands (1931),Comedy|Drama +94427,Shadow Kill (2002),Drama +94429,"Swell Season, The (2011)",Documentary|Romance +94431,"Ella Lola, a la Trilby (1898)",(no genres listed) +94433,Guilty Hands (1931),Crime|Drama +94435,"Over-Eater, The (L'outremangeur) (2003)",Crime|Drama +94439,Jumping the Broom (2011),Comedy +94442,"Story Written with Water, A (Mizu de kakareta monogatari) (1965)",Drama +94444,Feast III: The Happy Finish (2009),Action|Comedy|Horror +94466,Black Mirror (2011),Drama|Sci-Fi +94469,Red Dog (2011),Comedy|Drama|Romance +94471,Any Questions for Ben? (2012),Comedy|Drama +94473,Sweet Bunch (Glykia symmoria) (1983),Crime|Drama|Thriller +94475,Amu (2005),Drama +94478,Dark Shadows (2012),Comedy|Horror|IMAX +94480,"Scorpion King 2: Rise of a Warrior, The (2008)",Action|Adventure|Fantasy +94482,Big Boys Gone Bananas!* (2011),Documentary +94486,Ciao Bella (2007),Comedy|Drama|Romance +94491,Daylight (2010),Horror|Thriller +94494,96 Minutes (2011) ,Drama|Thriller +94496,Columbus Circle (2012),Crime|Mystery|Thriller +94503,"Decoy Bride, The (2011)",Comedy|Romance +94531,"Headhunter's Sister, The (1997)",Drama +94537,Angels Crest (2011),Drama +94539,Viva Riva! (2010),Drama +94542,"Forgiveness of Blood, The (Falja e gjakut) (2011)",Drama +94545,Among Wolves (Entrelobos) (2010),Drama +94556,Citizen Gangster (2011) ,Crime|Drama +94558,Beyond the Black Rainbow (2010),Mystery|Sci-Fi +94573,"Last Play at Shea, The (2010)",Documentary|Musical +94647,"Poker Club, The (2008)",Crime|Drama|Thriller +94649,"Clown, The (2011)",Comedy|Drama +94653,Creature (2011),Horror +94655,Thawing Out (La fonte des neiges) (2009) ,Comedy|Drama +94657,"Turkish Dance, Ella Lola (1898)",(no genres listed) +94659,Walking with Prehistoric Beasts (2001),Animation|Documentary +94661,Rocket Singh: Salesman of the Year (2009),Comedy|Drama +94663,Vicky Donor (2012),Comedy|Romance +94666,Zig Zag (1970),Drama|Thriller +94668,Extraordinary Stories (Historias extraordinarias) (2008),Drama|Mystery +94670,Small Town of Anara (Qalaqi Anara) (1978),Comedy +94672,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama +94675,Three Steps Above Heaven (2010),Drama|Romance +94677,"Dictator, The (2012)",Comedy +94679,Thrive (2011),Documentary +94681,Boys Love (2006),Drama|Romance +94725,Bombay Talkie (1970),Drama|Musical|Romance +94727,Border Radio (1987),Drama +94729,Beyond All Boundaries (2009),Documentary|War +94733,Keyhole (2011),Drama|Mystery +94735,Walking with Monsters (2005),Documentary +94737,"Boys Diving, Honolulu (1901)",Documentary +94739,"Island President, The (2011)",Documentary +94746,"Largo Winch (Heir Apparent: Largo Winch, The) (2008)",Adventure|Thriller +94748,"Mighty Macs, The (2009)",Drama +94750,My Blue Heaven (1950),Drama|Musical +94752,Gifted Hands: The Ben Carson Story (2009),Drama +94760,Chains (Catene) (1949),Crime|Drama +94762,"Ciel est à vous, Le (Woman Who Dared, The) (1944)",Drama +94765,Lumberjacking (Nuoruuteni savotat) (1988),Drama +94767,Safrana or Freedom of Speech (Safrana ou le droit à la parole) (1978),Drama +94769,"Rose Seller, The (La vendedora de rosas) (1998)",Drama +94772,Galileo (1975),Drama +94777,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX +94780,Snow White and the Huntsman (2012),Action|Adventure|Drama +94782,"Harvest Month, The (Elokuu) (1956)",Drama +94784,Olympian Holiday (Loma) (1976) ,Comedy|Romance +94786,Pine Flat (2006),Drama +94788,Back Street (1941),Drama +94790,Where East Is East (1929),Drama +94799,Sound of My Voice (2011),Drama|Mystery|Sci-Fi +94801,"Steel Trap, The (1952)",Crime|Drama +94803,Night of the Demons (2009),Horror +94806,"Secrets of Jonathan Sperry, The (2008)",Drama +94808,Someone Like You (Unnaipol Oruvan) (2009),Crime|Drama +94810,Eva (2011),Drama|Fantasy|Sci-Fi +94813,Chernobyl Diaries (2012),Horror +94815,Chicken with Plums (Poulet aux prunes) (2011),Drama +94817,Escuela de seducción (2004),Comedy +94819,You Can't Win 'Em All (1970),Adventure|Comedy|War +94831,Leadbelly (1976),Drama +94833,"Pirates! Band of Misfits, The (2012)",Adventure|Animation|Children|Comedy +94835,"Vie meilleure, Une (Better Life, A) (2011)",Drama +94837,Hemingway & Gellhorn (2012),Drama|Romance|War +94839,"Fish Child, The (El niño pez) (2009)",Drama|Romance|Thriller +94841,Hick (2011),Drama|Romance +94864,Prometheus (2012),Action|Horror|Sci-Fi|IMAX +94867,"Pact, The (2012)",Horror|Mystery|Thriller +94891,Phyllis and Harold (2008),Documentary +94893,Letters to God (2010),Children|Drama +94896,Bernie (2011),Comedy|Crime|Drama +94900,Desi Boyz (2011),Comedy|Drama +94902,Ten North Frederick (1958),Drama|Romance +94904,3 A.M. (2001),Crime|Mystery|Romance +94917,Deadline - U.S.A. (1952),Crime|Drama +94919,Inhale (2010),Drama|Thriller +94924,Rated X: A Journey Through Porn (1999),Documentary +94928,Just Friends? (2010),Romance +94931,Take This Waltz (2011),Drama|Romance +94933,Berlin 36 (2011),Drama +94939,Sound of Noise (2010),Comedy|Crime|Musical +94941,"Blot, The (1921)",Drama +94945,Dr. Crippen (1964),Crime|Drama +94949,Boy Meets Boy (2008),Romance +94951,Dickson Experimental Sound Film (1894),Musical +94953,Wanderlust (2012),Comedy +94955,Harriet Craig (1950),Drama +94957,Ladies They Talk About (1933),Drama|Romance +94959,Moonrise Kingdom (2012),Comedy|Drama|Romance +94965,There Be Dragons (2011),Drama|War +94967,Texas Killing Fields (2011),Crime|Drama|Thriller +94969,Kahaani (2012),Crime|Drama|Thriller +94972,"Best of Ernie and Bert, The (1988)",Children +94974,Superman vs. The Elite (2012),Action|Animation +94978,I Wish (Kiseki) (2011),Children|Drama +94980,Stavisky... (1974),Crime|Drama +94982,Never Take Candy from a Stranger (Never Take Sweets from a Stranger) (1960),Drama|Thriller +94985,Get the Gringo (2012),Action|Crime|Drama|Thriller +94987,Suicide Manual (Jisatsu manyaru) (2003),Horror|Mystery|Thriller +94989,"Keeper, The (2009)",Action|Crime|Thriller +94998,5 Days of War (2011),Action|Drama|War +95000,"Life, Above All (2010)",Drama +95002,Contagion / Bio Slime (2010),Horror +95004,Superman/Doomsday (2007) ,Action|Animation +95007,Entr'acte (1924),Comedy|Drama +95010,"Lake, A (Un lac) (2008)",Drama +95012,Tracy Morgan: Black and Blue (2010),Comedy +95014,"Importance of Tying Your Own Shoes, The (Hur många lingon finns det i världen?) (2011)",Drama +95016,"Peach Thief, The (Kradetzat na praskovi) (1964)",Drama|Romance|War +95018,Salomè (1972),Drama +95021,Outer Space (2000),Animation|Horror +95023,"Jew in the Lotus, The (1998)",Documentary +95026,Exporting Raymond (2010),Comedy|Documentary +95028,Appointment with Danger (1951),Crime|Drama|Film-Noir +95032,Vares: The Kiss of Evil (Vares - Pahan suudelma) (2011),Action|Crime|Film-Noir +95034,"Few Best Men, A (2011)",Comedy +95036,Late Bloomers (2011),Drama +95052,Hide and Seek (2000),Crime|Drama|Thriller +95054,"Deadly Tower, The (1975)",Action|Drama|Thriller +95058,Cosmopolis (2012),Drama +95064,House of the Rising Sun (2011),Action|Crime|Drama|Thriller +95067,"Thousand Words, A (2012)",Comedy|Drama +95069,Chimpanzee (2012),Documentary +95085,Love's Deadly Triangle: The Texas Cadet Murder (1997),Drama +95088,Safety Not Guaranteed (2012),Comedy|Drama +95105,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX +95107,Bunnyman (2011),Horror +95109,Athena (1954),Comedy|Musical|Romance +95111,"Lawless, The (1950)",Drama +95113,Eaux d'artifice (1953),Fantasy +95115,Inauguration of the Pleasure Dome (1954),Fantasy +95133,Blackthorn (2011),Western +95135,Your Sister's Sister (2011),Comedy|Drama +95137,"Needle, The (Igla) (1988)",Drama|Thriller +95139,"Beekeeper, The (O melissokomos) (1986)",Drama +95145,Dragon Ball: The Curse Of The Blood Rubies (Doragon bôru: Shenron no densetsu) (1986),Action|Adventure|Animation|Children +95147,Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987),Action|Adventure|Animation|Children +95149,Superman/Batman: Public Enemies (2009),Action|Animation|Fantasy +95151,Dead Space: Aftermath (2011),Animation|Horror|Sci-Fi +95153,Iria: Zeiram the Animation (1993) ,Action|Animation|Horror|Sci-Fi|Thriller +95157,Kidnapped (2010),Horror|Thriller +95159,This Special Friendship (Les amitiés particulières) (1964),Drama +95163,Dragon Ball: Mystical Adventure (Doragon bôru: Makafushigi dai bôken) (1988),Action|Adventure|Animation|Children +95165,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller +95167,Brave (2012),Action|Adventure|Animation|Children +95170,Beauty and the Beast: The Enchanted Christmas (1997),Animation|Children|Fantasy|Musical +95175,Front of the Class (2008),Drama +95177,Alcina (2000),Drama|Fantasy|Romance +95179,"Pet, The (2006)",Drama|Thriller +95182,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi +95185,Dangerous Liaisons (2007),Comedy|Crime|Drama|Mystery +95193,Pocahontas II: Journey to a New World (1998) ,Adventure|Animation|Children +95197,Bel Ami (2012),Drama|Romance +95199,What to Expect When You're Expecting (2012),Comedy|Drama|Romance +95201,To Rome with Love (2012),Comedy +95205,Don't Drink the Water (1969),Comedy +95207,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller +95214,Mad Dog Coll (1961),Crime|Drama +95216,Winning (1969),Action|Drama +95218,First Position (2011),Documentary +95223,4.3.2.1 (2010),Crime|Thriller +95230,Macbeth in Manhattan (1999),Drama +95232,Beauty #2 (1965),Drama +95234,Wings in the Dark (1935),Adventure|Romance +95237,Detention (2012),Comedy|Horror +95285,Nina Frisk (2007),Comedy|Drama +95288,Confession (1937),Drama +95290,Kind Lady (1935),Drama|Thriller +95294,Planet B-Boy (2007),Documentary +95296,For Greater Glory: The True Story of Cristiada (2012),Drama|War +95298,Woochi: The Demon Slayer (2009),Action|Comedy|Fantasy +95300,Scusa ma ti chiamo amore (2008),Romance +95302,Torpedo Bombers (Torpedonostsy) (1983),Drama|War +95305,Taxi Hunter (Di shi pan guan) (1993),Action +95307,Rock of Ages (2012),Comedy|Drama|Musical|IMAX +95309,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance +95311,Presto (2008),Animation|Children|Comedy|Fantasy +95313,Jack-Jack Attack (2005),Adventure|Animation|Children|Comedy +95352,Jekyll & Hyde (1990),Horror +95375,Boundin' (2003),Animation|Children +95377,One Man Band (2005),Animation|Comedy|Musical +95425,"Map For Saturday, A (2007)",Documentary +95427,"Silent Scream, The (1980)",Horror|Thriller +95441,Ted (2012),Comedy|Fantasy +95443,"Giant Mechanical Man, The (2012)",Comedy|Drama|Romance +95446,Tin Toy (1988),Animation|Children +95449,Magic Mike (2012),Drama|Romance +95461,Revenge of the Electric Car (2011),Documentary +95473,Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992),Action|Adventure|Animation +95475,Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991),Action|Adventure|Animation +95477,Blood of the Vampire (1958),Horror|Sci-Fi +95480,Disneyland Dream (1956),Documentary +95482,Disney Sing Along Songs: Under the Sea (1990),Animation|Children|Musical +95484,Pulgasari (1985),Action|Drama|Fantasy +95486,"Toughest Man in the World, The (1984)",Comedy|Drama +95488,On the Road (2012),Adventure|Drama +95491,Norman (2010),Comedy|Drama +95494,Joffrey: Mavericks of American Dance (2012),Documentary +95497,Dragon Ball Z: Super Android 13! (Doragon bôru Z 7: Kyokugen batoru!! San dai sûpâ saiyajin) (1992),Action|Adventure|Animation +95499,Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993),Action|Adventure|Animation +95504,Virtual JFK: Vietnam If Kennedy Had Lived (2008),Documentary +95506,Extraterrestrial (Extraterrestre) (2011),Comedy|Drama|Sci-Fi +95508,Cleanskin (2012),Crime|Drama|Thriller +95510,"Amazing Spider-Man, The (2012)",Action|Adventure|Sci-Fi|IMAX +95517,"Barchester Chronicles, The (1982)",Drama +95519,Dragon Ball Z: Bojack Unbound (Doragon bôru Z 9: Ginga girigiri!! Butchigiri no sugoi yatsu) (1993),Action|Adventure|Animation|Fantasy +95521,Reminiscences of a Journey to Lithuania (1972),Documentary +95524,Noroi: The Curse (2005) ,Horror +95529,ID:A (2011),Crime|Thriller +95531,"Koruto wa ore no pasupooto (Colt Is My Passport, A) (1967)",Action|Crime|Drama +95533,Coup de grâce (Der Fangschuß) (1976),Drama|War +95539,Wrong Turn 3: Left for Dead (2009),Horror +95541,Blacksmith Scene (1893),(no genres listed) +95543,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy +95558,Beasts of the Southern Wild (2012),Drama|Fantasy +95560,Dangerous Davies: The Last Detective (1981),Comedy|Crime +95563,Dynamite (1929),Drama +95565,"Day the Fish Came Out, The (1967)",Comedy|Sci-Fi +95567,People Like Us (2012),Drama +95570,Crazed Fruit (Kurutta kajitsu) (1956),Drama +95572,Cruel Gun Story (Kenjû zankoku monogatari) (1964),Action|Crime|Thriller +95574,Flame and Women (Honô to onna) (1967) ,Drama +95576,Euridice BA 2O37 (Evridiki BA 2O37) (1975),Drama +95578,"Stoplight Society, The (La Sociedad del Semáforo) (2010)",Drama +95581,"Flying Fleet, The (1929)",Adventure|Drama|Romance +95583,Savages (2012),Crime|Drama|Thriller +95588,Balto: Wolf Quest (2002) ,Adventure|Animation|Children +95591,Rat King (2012),Mystery|Thriller +95595,Bela Kiss: Prologue (2013),Horror|Mystery|Thriller +95597,Ticket To Romance (En enkelt til Korsør) (2008),Comedy|Drama|Romance +95600,Candles on Bay Street (2006) ,Drama +95602,Once Upon a Time in Phuket (En gång i Phuket) (2011),Comedy +95604,The War (2007),Documentary|War +95606,Thomas Jefferson (1997),Documentary +95611,Mooz-lum (2011),Drama +95613,"Union, The (2011)",Documentary +95615,"Miser, The (L'avare) (1980)",Comedy +95617,Scorcher (2002),Action|Sci-Fi +95624,"Firm, The (2009)",Drama +95628,Red's Dream (1987),Animation|Children +95650,"Perfect Roommate, The (2011)",Thriller +95652,"Fatal Hour, The (1940)",Crime|Mystery|Thriller +95654,Geri's Game (1997),Animation|Children +95658,My Last Day Without You (Nie mehr ohne Dich) (2011),Comedy|Drama|Romance +95670,Tyler Perry's Madea's Witness Protection (2012),Comedy +95672,"Black Windmill, The (1974)",Crime|Drama +95688,"Good Night to Die, A (2003)",Action|Comedy|Crime|Thriller +95690,Some Guy Who Kills People (2011),Comedy|Thriller +95695,"Five Minarets in New York (Act of Vengeance) (Terrorist, The) (2010)",Drama +95705,Sasori (2008),Action +95717,Treasure Island (2012),Adventure +95720,"Watch, The (2012)",Comedy|Sci-Fi +95732,Vampires (2010),Comedy|Fantasy|Horror +95735,"Drive, He Said (1971)",Comedy|Drama +95738,"Adventures of Mary-Kate and Ashley, The: The Case of the Christmas Caper (1995)",Children|Musical|Mystery +95740,"Adventures of Mary-Kate and Ashley, The: The Case of the United States Navy Adventure (1997)",Children|Musical|Mystery +95742,Someday This Pain Will Be Useful to You (2011),Drama +95744,2 Days in New York (2012),Comedy +95746,Radio On (1980),Drama +95748,2010: Moby Dick (2010),Action|Adventure|Thriller +95750,Promise of the Flesh (Yukcheui yaksok) (1975),(no genres listed) +95752,Terminal USA (1993),Comedy +95754,From Beginning to End (Do Começo ao Fim) (2009),Drama|Romance +95756,"Cat in the Hat, The (1971)",Animation|Children +95758,"Ultramarathon Man: 50 Marathons, 50 States, 50 Days (2008)",Documentary +95761,Killer Joe (2011),Crime|Thriller +95765,Yertle the Turtle and Other Stories (1992),Animation|Children +95767,Power (Jew Süss) (1934),Drama|Romance +95769,"Gospel of Judas, The (2006)",Documentary +95771,Dragon Ball Z: Broly Second Coming (Doragon bôru Z 10: Kiken na futari! Sûpâ senshi wa nemurenai) (1994),Action|Adventure|Animation +95773,King of Thorn (King of Thorns) (Ibara no O) (2009),Adventure|Animation|Horror|Sci-Fi|Thriller +95776,Bob Funk (2009),Comedy|Romance +95780,Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994),Action|Adventure|Animation +95782,Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta) (1995),Action|Adventure|Animation +95784,Intohimon vallassa (1947),Drama|Romance +95794,"Lost, Lost, Lost (1976) ",Documentary +95796,Anaconda: The Offspring (2008),Action|Horror|Sci-Fi|Thriller +95804,Wild Bill (2011),Crime|Drama +95814,Pete Smalls Is Dead (2010),Comedy +95816,Being Flynn (2012),Comedy|Drama +95830,Drums (1938),Adventure|War +95832,Elephant Boy (1937),Adventure|Drama +95835,"Forger, The (2012)",Drama +95837,"Child's Christmas in Wales, A (1987)",Children|Drama +95839,"Christmas Carol, A (1999)",Drama|Fantasy +95843,Goodbye Charlie (1964),Comedy|Fantasy|Romance +95854,Rage (Rabia) (2009),Romance|Thriller +95856,Knick Knack (1989),Animation|Children +95858,For the Birds (2000),Animation|Children|Comedy +95873,Ruby Sparks (2012),Comedy|Fantasy|Romance +95875,Total Recall (2012),Action|Sci-Fi|Thriller +95890,Le Donk & Scor-zay-zee (2009),Comedy +95896,388 Arletta Avenue (2011),Thriller +95898,The Craigslist Killer (2011),Crime|Drama|Thriller +95901,Mysterious Origins of Man (1996),Documentary +95926,"Monitor, The (Babycall) (2011)",Horror|Thriller +95932,"Fantastic Four, The (1994)",Action|Adventure|Fantasy|Sci-Fi +95935,Bertie and Elizabeth (2002),Drama +95937,Infection (Kansen) (2004),Drama|Horror +95939,"Angels' Share, The (2012)",Comedy|Drama +95941,Carbon Nation (2010),Documentary +95945,"Dangerous Man, A (2009)",Action|Crime|Thriller +95949,"Immature, The (Immaturi) (2011)",Comedy +95961,Morning of the Earth (1971),Documentary +95963,Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru) (1995),Action|Adventure|Animation +95965,Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi) (1990),Action|Adventure|Animation +95967,Marriage Retreat (2011),Comedy|Drama +95969,Vampire Journals (1997),Fantasy|Horror +95971,Dikkenek (2006),Comedy +95973,"Classe américaine, La (a.k.a. Le grand détournement) (1993)",Comedy +95975,"Necessary Death, A (2008)",Crime|Drama|Thriller +95977,Junior Prom (1946),Documentary +95979,Oranges (2004),Drama +95982,"Killing Machine, The (Icarus) (2010)",Action|Drama|Thriller +95984,In the Name of the King 2: Two Worlds (2011),Action|Adventure|Drama|Fantasy +96002,"Tür, Die (Door, The) (2009)",Drama|Mystery|Sci-Fi +96004,Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu) (1993),Action|Adventure|Animation +96007,Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû) (1997),Action|Adventure|Animation +96009,"Kiss, The (1896)",Romance +96018,Decoding the Past: Secrets of the Koran (2006),Documentary +96020,Sidewalls (Medianeras) (2011),Drama +96022,Dick Tracy vs. Cueball (1946),Action|Crime|Mystery +96024,Stash House (2012),Thriller +96026,One in the Chamber (2012),Action|Crime|Thriller +96028,Decoys 2: Alien Seduction (2007) ,Horror|Sci-Fi|Thriller +96030,"Weekend It Lives, The (Ax 'Em) (1992)",Horror +96034,Hierro (2009) ,Mystery|Thriller +96052,"Tortoise and the Hare, The (1935)",Animation|Children|Comedy +96054,Steak (2007),Comedy +96056,"Legend of Bigfoot, The (1976)",Documentary +96058,Neil Young Journeys (2012),Documentary +96060,"Capture of Bigfoot, The (1979)",Adventure|Horror|Sci-Fi +96062,Jekyll (2007),Crime|Horror|Thriller +96064,Dragon Eyes (2012),Action|Crime|Drama +96066,"Love, Wedding, Marriage (2011)",Comedy|Romance +96069,"Little Mermaid: Ariel's Beginning, The (2008)",Animation|Children|Fantasy +96071,Bag It (2010),Documentary +96075,Bleak House (2005),Drama +96079,Skyfall (2012),Action|Adventure|Thriller|IMAX +96082,"Thrushes Are Still Singing, The (Ta kourelia tragoudane akoma...) (1979)",Adventure|Crime|Drama +96084,Hands Over the City (Le mani sulla città) (1963),Drama +96086,"Householder, The (Gharbar) (1963)",Comedy|Drama +96096,Mais qui a tué Pamela Rose ? (2003),Comedy +96098,Louise-Michel (2008),Comedy +96105,Forest Warrior (1996),Action|Adventure|Comedy|Western +96110,"Campaign, The (2012)",Comedy +96112,Taistelu Näsilinnasta 1918 (2012),War +96114,Brake (2012),Crime|Thriller +96121,Hope Springs (2012),Comedy|Drama +96131,K-20: The Fiend with Twenty Faces (2008),Action|Adventure|Crime +96144,Warning from Space (Uchûjin Tôkyô ni arawaru) (1956),Sci-Fi +96146,Logan's War: Bound by Honor (1998),Action|Drama|Thriller +96148,"President's Man: A Line in the Sand, The (2002)",Action|Drama|Thriller +96150,"Queen of Versailles, The (2012)",Documentary +96160,33 Postcards (2011),Drama +96170,"Cutter, The (2005)",Action|Drama|Thriller +96176,Tender Comrade (1943),Drama|Romance +96179,Amish Grace (2010),Drama +96181,Female Agents (Les femmes de l'ombre) (2008),Drama|War +96193,Captain Video: Master of the Stratosphere (1951),Adventure|Sci-Fi +96195,Run Sister Run! (2010),Drama +96197,Secret Reunion (Ui-hyeong-je) (2010),Drama|Thriller +96200,War of the Dead - Stone's War (2011) ,Action|Adventure|Horror|Sci-Fi|Thriller|War +96210,Super Rich: The Greed Game (2008),Documentary +96212,"One Percent, The (2006)",Documentary +96214,Primal (2010),Horror|Thriller +96216,Dreams That Money Can Buy (1947),Fantasy +96218,Profound Desires of the Gods (Kamigami no fukaki yokubo) (1968) ,Drama +96221,"See You in Hell, My Darling (Tha se do stin Kolasi, agapi mou) (1999)",Crime|Horror|Thriller +96223,"Rickshaw Man, The (Muhomatsu no issho) (1958)",Comedy|Drama +96225,Identification Marks: None (Rysopis) (1965) ,Drama +96227,I Am Waiting (Ore wa matteru ze) (1957),Crime|Drama +96239,Chillerama (2011),Comedy|Horror +96242,Viimeiset rotannahat (1985) ,Comedy +96244,Master with Cracked Fingers (Guang dong xiao lao hu) (1971),Action|Comedy|Drama +96246,In Eagle Shadow Fist (Ding tian li di) (Fist of Anger) (1973),Action|Drama|War +96250,K.G. (Karate Girl) (2011),Action +96252,I Am Bruce Lee (2011),Documentary +96255,On Top of the Whale (Het dak van de Walvis) (1982),Fantasy +96257,Heroic Purgatory (Rengoku eroica) (1970),Drama +96259,Beloved (Les bien-aimées) (2011),Drama|Musical|Romance +96264,Wagner's Dream (2012),Documentary +96266,Little Birds (2011),Drama +96273,I Hate But Love (Nikui an-chikushô) (1962),Action|Comedy|Drama|Romance +96275,In Custody (1994),Comedy|Drama +96277,"Rumble in Hong Kong (Nu jing cha) (Heroine, The) (1973)",Action|Crime +96281,ParaNorman (2012),Adventure|Animation|Comedy +96283,Diary of a Wimpy Kid: Dog Days (2012),Children|Comedy +96286,How Bruce Lee Changed the World (2009),Documentary +96288,"Rites of May, The (Itim) (1977) ",Drama|Horror|Thriller +96290,Opfergang (1944),Drama +96292,Immensee (1943),Drama +96294,Bells of Innocence (2003),Horror +96296,Piled Higher and Deeper (2011),Comedy +96298,El Hada Buena - Una Fábula Peronista (2010),Comedy|Sci-Fi +96300,Operación Cannabis (2009),Action|Adventure|Comedy|Crime +96302,War of the Arrows (Choi-jong-byeong-gi Hwal) (2011),Action +96304,Hara-Kiri: Death of a Samurai (2011),Drama +96306,Goats (2012),Comedy +96314,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance +96316,Aliisa (1970),Drama +96337,Our Children (À perdre la raison) (2012),Drama +96347,Endeavour (2012),Crime|Drama|Mystery +96367,Hit and Run (Hit & Run) (2012),Action|Comedy|Romance +96370,Garden Party (2008),Drama|Romance +96373,Broken (2012),Drama +96383,"Family Tree, The (2011)",Comedy|Drama +96401,"Je, tu, il, elle (I, You, He, She) (1976)",Drama +96405,Cinderella II: Dreams Come True (2002),Animation|Children|Fantasy +96407,Dark Horse (2011),Drama +96409,Black Roses (1988) ,Horror|Musical +96411,6 Days to Air: The Making of South Park (2011),Documentary +96413,Funeral Parade of Roses (Bara no sôretsu) (1969),Drama +96415,Doomsday Book (2012),Comedy|Drama|Horror|Sci-Fi +96417,Premium Rush (2012),Action|Thriller +96419,Letter Never Sent (Neotpravlennoye pismo) (1960),Drama|Romance +96421,Lonesome (1928),Comedy|Drama|Romance +96423,Evil Toons (1992),Comedy|Horror +96428,From the Life of the Marionettes (Aus dem Leben der Marionetten) (1980) ,Drama +96430,"Odd Life of Timothy Green, The (2012)",Comedy|Drama|Fantasy +96432,Lawless (2012),Crime|Drama +96435,Chameleon (Kaméleon) (2008),Comedy|Drama|Thriller +96448,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror +96451,Man Is Not a Bird (Covek nije tica) (1965),Drama|Romance +96456,ATM (2012),Horror|Thriller +96460,"Wave, The (1981)",Drama +96467,Sleepwalk with Me (2012),Comedy|Drama +96469,Dara Ó Briain Talks Funny: Live in London (2008),Comedy +96471,Prime Suspect 3 (1993),Crime|Drama|Mystery +96473,Prime Suspect: Inner Circles (1995),Drama|Mystery +96479,Nocturno 29 (1968),(no genres listed) +96481,American Mullet (2001),Documentary +96486,Prime Suspect 7: The Final Act (2006),Crime|Drama|Mystery|Thriller +96488,Searching for Sugar Man (2012),Documentary +96490,"Possession, The (2012)",Horror|Thriller +96496,6 Bullets (2012),Action|Crime|Thriller +96498,"Dinosaur Project, The (2012)",Adventure +96501,Little White Lies (Les petits mouchoirs) (2010),Comedy|Drama +96504,"Manzanar Fishing Club, The (2012)",Adventure|Documentary +96510,"Apparition, The (2012)",Horror|Thriller +96512,Dreams of a Life (2011),Documentary +96514,Life for Sale (Kotirauha) (2011),Drama +96516,To Mars by A-Bomb: The Secret History of Project Orion (2003),Documentary +96518,Prime Suspect 6: The Last Witness (2003),Drama|Thriller +96520,Prime Suspect: The Lost Child (1995),Drama|Mystery +96522,"Zero Years, The (2005)",Drama +96524,Bigfoot Lives (2007),Adventure|Documentary|Drama +96530,Conception (2011),Comedy|Romance +96532,Do We Really Need the Moon? (2011),Documentary +96535,French Film (2008),Comedy|Romance +96537,Backwoods (Bosque de sombras) (2006),Drama|Thriller +96539,"Californie, La (2006)",Drama +96543,The Great Northfield Minnesota Raid (1972),Action|Western +96545,"Mikado, The (1939)",Comedy|Musical +96547,"Model Couple, The (Le couple témoin) (1977)",Comedy +96563,Paradise Lost 3: Purgatory (2011),Documentary +96565,Bachelorette (2012),Comedy +96567,"Words, The (2012)",Drama|Romance +96569,Teddy Bear (10 timer til Paradis) (2012),Drama|Romance +96571,Soldier in the Rain (1963),Comedy|Drama +96574,For My Father (Sof Shavua B'Tel Aviv) (2008),Drama +96576,"Moment of Truth, The (Il momento della verità) (1965)",Drama +96578,Mr. Freedom (1969),Comedy +96585,La dama boba (2006),Comedy +96588,Pitch Perfect (2012),Comedy|Musical +96590,"Cold Light of Day, The (2012)",Action|Thriller +96592,Hello I Must Be Going (2012),Comedy|Drama|Romance +96594,Flowing (Nagareru) (1956),Drama +96596,Branded (2012),Action|Drama|Mystery|Sci-Fi +96598,"Wild Wild West Revisited, The (1979)",Action|Adventure|Sci-Fi|Western +96601,Icon (2005),Action|Adventure|Crime|Drama|Thriller +96603,"Sugar Curtain, The (El telón de azúcar) (2005)",Documentary +96606,Samsara (2011),Documentary +96608,Runaway Brain (1995) ,Animation|Comedy|Sci-Fi +96610,Looper (2012),Action|Crime|Sci-Fi +96612,Compliance (2012),Drama|Thriller +96614,Thy Womb (Sinapupunan) (2012),Drama +96616,That's My Boy (2012),Comedy +96621,Arthur and the Revenge of Maltazard (Arthur et la vengeance de Maltazard) (2009),Animation|Children|Fantasy +96629,Deathstalker (1983),Action|Adventure|Fantasy +96631,Deathstalker II (1987),Action|Adventure|Comedy|Fantasy +96634,Apartment 143 (2011),Horror|Thriller +96638,Klitschko (2011),Documentary +96640,Kinyarwanda (2011),Drama|Romance +96642,Nobody's Children (I figli di nessuno) (1952),Drama|Romance +96644,Patriotism (Yûkoku) (1966),Drama +96651,Les hautes solitudes (1974),(no genres listed) +96653,"Vampir (Cuadecuc, vampir) (1971)",Documentary|Horror +96655,Robot & Frank (2012),Comedy|Drama|Sci-Fi +96662,"Punk Syndrome, The (Kovasikajuttu) (2012)",Documentary +96664,Where Do We Go Now? (2011),Comedy|Drama +96667,Ai Weiwei: Never Sorry (2012),Documentary +96669,Stag Night (2008),Horror|Thriller +96671,Hollywood Sex Wars (2011),Comedy +96679,Love Hina Again (2002),Animation|Comedy|Drama +96681,"Age of the Medici, The (L'età di Cosimo de Medici) (1973) ",Drama +96683,Something Ventured (2011),Documentary +96687,Jesus Henry Christ (2012),Comedy +96689,Pirates of the Great Salt Lake (2006),Adventure|Comedy +96691,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX +96693,Trouble with the Curve (2012),Drama +96697,"Walk Softly, Stranger (1950)",Crime|Drama|Film-Noir|Romance +96700,360 (2011),Drama +96702,Close (2004),Drama +96704,Detroit (2003),Drama +96706,Straight Shooting (1917),Western +96710,Employees' Entrance (1933),Drama|Romance +96717,"Pearls of the Crown, The (Les perles de la couronne) (1937)",Comedy +96722,Suicide Club (2010),Adventure|Comedy|Drama +96724,Under African Skies (2012),Documentary +96726,Lola Versus (2012),Comedy|Romance +96728,"Master, The (2012)",Drama +96730,More Wild Wild West (1980),Adventure|Comedy|Sci-Fi|Western +96732,"Love Movie, The (Rakkauselokuva) (1984)",Comedy|Drama +96734,"John Huston: The Man, the Movies, the Maverick (1989)",Documentary +96737,Dredd (2012),Action|Sci-Fi +96739,We Live Again (1934),Drama +96748,247°F (2011) ,Horror|Thriller +96751,Arbitrage (2012),Drama|Thriller +96753,Blue Like Jazz (2012),Comedy|Drama +96755,Manual of Love 2 (Manuale d'amore (capitoli successivi)) (2007),Comedy|Romance +96757,"Friends at the Margherita Cafe, The (Gli amici del bar Margherita) (2009)",Comedy|Drama|Romance +96759,Play Girl (1941),Comedy|Romance +96762,Detropia (2012),Documentary +96764,"Liquidator, The (2011)",Action|Thriller +96769,Australian Atomic Confessions (2005),Documentary +96771,"Chemical Brothers: Don't Think, The (2012)",Musical +96773,Pearls of the Deep (Perlicky na dne) (1966),Comedy +96775,"Perfect Murder, The (1988)",Action|Comedy|Crime|Thriller +96789,"Hamburg Syndrome, The (Die Hamburger Krankheit) (1979)",Adventure|Sci-Fi +96792,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance +96794,ChromeSkull: Laid to Rest 2 (2011),Horror +96796,Rain Over Santiago (Il pleut sur Santiago) (1976),Documentary|Drama|War +96799,Puckoon (2002),Comedy +96801,Dolan's Cadillac (2009),Crime|Thriller +96803,"Pig's Tale, A (1996)",Adventure|Comedy|Drama|Romance +96805,Nobody Knows Anybody (Nadie conoce a nadie) (1999),Romance|Thriller +96807,Breathless (2012),Thriller +96809,Blood Money (2012),Action|Thriller +96811,End of Watch (2012),Crime|Drama|Thriller +96813,"High, Wide, and Handsome (1937)",Musical|Western +96815,V/H/S (2012),Horror|Thriller +96817,Boxing Gym (2010),Documentary +96819,Everyone (2004),Comedy +96821,"Perks of Being a Wallflower, The (2012)",Drama|Romance +96829,"Hunt, The (Jagten) (2012)",Drama +96832,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi +96834,Knuckleball! (2012),Documentary +96836,Either Way (Á annan veg) (2011),Comedy|Drama +96840,"Hunter, The (2010)",Thriller +96842,Behind the Burly Q: The Story of Burlesque in America (2010),Documentary +96845,Two Rabbits (2 Coelhos) (2012),Action +96849,Sparkle (2012),Drama|Musical +96851,Guilty Hearts (2006),Drama +96853,Thin Ice (2011),Comedy|Crime|Drama +96857,Red Lights (2012),Drama|Mystery|Thriller +96859,"Rocky Saga: Going the Distance, The (2011)",Documentary +96861,Taken 2 (2012),Action|Crime|Drama|Thriller +96863,"Paperboy, The (2012)",Thriller +96865,Sam Peckinpah: Man of Iron (1993),Documentary +96868,Shut Up and Play the Hits (2012),Documentary +96870,"Private Life of Don Juan, The (1934)",Comedy|Drama|Romance +96872,Quadrille (1938),Comedy|Romance +96894,One Nine Nine Four (2009),Documentary +96897,Bleach: Fade to Black (Burīchi Fade to Black Kimi no Na o Yobu) (2008),Animation +96901,"Making of a Legend: Gone with the Wind, The (1988)",Documentary +96903,In Passing (2011),Drama|Fantasy|Mystery +96905,"Crush, The (La cotta) (1967)",Romance +96907,Nanayo (Nanayomachi) (2008),Drama +96909,Road North (Tie pohjoiseen) (2012),Comedy|Drama +96911,"Royal Affair, A (Kongelig affære, En) (2012)",Drama|Romance +96917,House at the End of the Street (2012),Horror|Thriller +96919,Attack of the 50ft Cheerleader (2012),Comedy +96921,Sexy Nights of the Living Dead (1980),Horror +96923,2-Headed Shark Attack (2012),Comedy|Horror +96925,"Hard, Fast and Beautiful (1951)",Drama +96927,"Newest Pledge, The (2012)",Comedy +96933,Despair (1978),Drama|Fantasy +96935,My Left Eye Sees Ghosts (Ngo joh aan gin diy gwai) (2002),Comedy|Fantasy|Romance +96937,Russia's Toughest Prisons (National Geographic) (2011),Documentary +96939,Crime Lords of Tokyo (2011),Documentary +96941,2016: Obama's America (2012),Documentary +96943,"Happy Event, A (Un Heureux Evénement) (2011)",Comedy|Drama|Romance +96945,Love Lasts Three Years (L'amour dure trois ans) (2011),Comedy|Drama|Romance +96947,Volcano (Eldfjall) (2011),Drama +96950,Guilty (Présumé coupable) (2011),Drama +96952,Surviving Progress (2011),Documentary +96954,Doughboys (1930),Comedy|War +96960,Tobor the Great (1954),Children|Sci-Fi +96962,Lightnin' (1925),Comedy|Drama +96964,"Tall Man, The (2012)",Crime|Drama|Mystery +96966,Laurence Anyways (2012),Drama|Romance +96969,"Magic of Belle Isle, The (2012)",Comedy|Drama +96971,"Lie, The (2011)",Drama +96973,"Painted Veil, The (1934)",Drama|Romance +96975,LOL (2012),Comedy|Drama|Romance +96983,Remorques (Stormy Waters) (1941),Action|Drama|Romance +96985,"Report on the Party and the Guests, A (O slavnosti a hostech) (1966)",Drama +96991,"Sapphires, The (2012)",Comedy|Drama|Musical +96993,That Certain Summer (1972),Drama +97002,Something from Nothing: The Art of Rap (2012),Documentary|Musical +97005,Just Add Water (2008),Comedy|Romance +97008,"Return of the Prodigal Son, The (Návrat ztraceného syna) (1967)",Drama +97010,Hood of the Living Dead (2005),Horror +97024,Rust and Bone (De rouille et d'os) (2012),Drama|Romance +97026,Upstream (1927),Comedy|Drama +97029,Genocide (Konchû daisensô) (1968),Horror|Sci-Fi +97031,"Goke, Body Snatcher from Hell (Kyuketsuki Gokemidoro) (1968)",Horror|Sci-Fi +97035,"Living Skeleton, The (Kyûketsu dokuro-sen) (1968)",Horror +97037,Madonna of the Seven Moons (1945),Drama|Mystery +97039,"Man in Grey, The (1943)",Drama|Romance +97042,Ishaqzaade (2012),Action|Drama|Romance +97046,Evil Bong (2006),Comedy|Horror +97051,Here Comes the Devil (Ahí va el diablo) (2012),Horror|Thriller +97055,7 Below (Seven Below) (2012),Horror|Thriller +97057,Kon-Tiki (2012),Adventure|Documentary|Drama +97059,Katy Perry: Part of Me (2012),Documentary|Drama +97061,Broadway (1929),Drama|Musical +97065,Viy or Spirit of Evil (Viy) (1967),Comedy|Drama|Fantasy|Horror +97068,"Rise of Catherine the Great, The (1934)",Drama +97070,Roseland (1977),Drama|Musical|Romance +97073,Rusty Knife (Sabita naifu) (1958),Action|Crime +97092,Glorious Technicolor (1998),Documentary +97094,Ingmar Bergman on Life and Work (Ingmar Bergman: Om liv och arbete) (1998),Documentary +97096,Lon Chaney: A Thousand Faces (2000),Documentary +97115,El tren de la memoria (2005),Documentary +97117,"March of the Movies (Film Parade, The) (1933)",Documentary +97119,Rules of Single Life (Sinkkuelämän säännöt) (2011),Documentary +97124,Tank on the Moon (2007),Documentary +97128,"Safe Place, A (1971)",Drama +97132,Urbanized (2011),Documentary +97134,Waco: A New Revelation (1999),Documentary +97137,"Cool Ones, The (1967)",Comedy +97139,Blood of Dracula (1957),Horror|Romance +97146,I'm King Kong!: The Exploits of Merian C. Cooper (2005) ,Documentary +97148,Elia Kazan: A Director's Journey (1995),Documentary +97151,"John Garfield Story, The (2003)",Documentary +97153,Not Here to Be Loved (Je ne suis pas là pour être aimé) (2005),Drama|Romance +97161,California Solo (2012),Drama +97163,Shameless (Maskeblomstfamilien ) (2010),Drama +97165,"Marshal of Finland, The (Suomen Marsalkka) (2012)",Drama|Romance +97168,Marley (2012),Documentary +97172,Frankenweenie (2012),Animation|Comedy|Horror|IMAX +97175,His Name Was Jason: 30 Years of Friday the 13th (2009),Documentary|Horror +97177,Colin Quinn: Long Story Short (2011),Comedy +97184,588 Rue Paradis (Mother) (1992),Drama +97186,Sinivalkoinen valhe (2012),Documentary +97188,Sinister (2012),Horror|Thriller +97190,Fearful Symmetry: The Making of 'To Kill a Mockingbird' (1998),Documentary +97192,Louise Brooks: Looking for Lulu (1998),Documentary +97194,"Thing: Terror Takes Shape, The (1998)",Documentary +97196,Shottas (2002),Action|Crime|Drama +97200,Sapphire (1959),Crime|Drama|Mystery|Thriller +97216,Passion Play (2010),Drama|Romance +97220,Virginia (2010),Drama +97225,Hotel Transylvania (2012),Animation|Children|Comedy +97230,Side by Side (2012),Documentary +97232,"Good Old Fashioned Orgy, A (2011)",Comedy +97234,Inside: 'Dr. Strangelove or How I Learned to Stop Worrying and Love the Bomb' (2000),Documentary +97236,Shadowing the Third Man (2004),Documentary +97238,Making 'Do the Right Thing' (1989),Documentary +97240,"Young and the Dead, The (2000)",Documentary +97242,Daleks' Invasion Earth: 2150 A.D. (1966),Adventure|Sci-Fi +97244,Fat Kid Rules the World (2012),Comedy +97246,Charlie Chan in Egypt (1935),Mystery +97250,Charlie Chan in London (1934),Drama|Mystery +97252,Coupe de Ville (1990),Comedy|Drama +97254,Shakespeare-Wallah (1965),Drama +97256,Love in the Time of Hysteria (Sólo con tu pareja) (1991),Comedy|Romance +97280,We Are from the Future (My iz budushchego) (2008),Action|Drama|Fantasy +97283,Creature from the Haunted Sea (1961),Comedy|Horror +97285,Take Aim at the Police Van (Sono gosôsha wo nerae: 'Jûsangô taihisen' yori) (1960),Action|Crime|Mystery +97296,"Screaming Skull, The (1958)",Horror|Mystery +97300,Björk: Volumen (1999),Animation|Musical +97302,Madame Tutli-Putli (2007),Animation|Fantasy +97304,Argo (2012),Drama|Thriller +97306,Seven Psychopaths (2012),Comedy|Crime +97308,Nobody Walks (2012),Drama +97311,Butter (2011),Comedy +97319,"Cigarette Girl of Mosselprom, The (Papirosnitsa ot Mosselproma) (1924)",Comedy|Romance +97324,Atlas Shrugged: Part II (2012),Drama|Mystery|Sci-Fi +97326,Ill Manors (2012),Crime|Drama +97328,Liberal Arts (2012),Comedy|Drama +97330,"Ator, the Fighting Eagle (Ator l'invincibile) (1982)",Action|Adventure|Fantasy +97332,"Den tatuerade änkan (Tattooed Widow, The) (1998) ",Comedy|Drama|Romance +97334,Portrait in Black (1960),Crime|Drama|Thriller +97336,Vivien Leigh: Scarlett and Beyond (1990),Documentary +97382,Under the Boardwalk: The Monopoly Story (2010),Documentary +97384,Arachnoquake (2012),Action|Horror|Sci-Fi +97386,Choking Man (2006),Drama +97388,"Farewell, My Queen (Les adieux à la reine) (2012)",Drama|Romance +97390,Marley & Me: The Puppy Years (2011),Children|Comedy +97393,"House I Live In, The (2012)",Documentary +97395,West of Memphis (2012),Documentary +97397,Boogie Man: The Lee Atwater Story (2008),Documentary +97401,Terumae romae (Thermae Romae) (2012),Comedy|Sci-Fi +97423,Michael (2011),Drama|Thriller +97455,Kings of Pastry (Les rois de la pâtisserie) (2009),Documentary +97457,"Reluctant Saint, The (1962)",Comedy|Drama +97460,"Gorilla, The (1939)",Comedy|Horror +97462,Hoodwinked Too! Hood vs. Evil (2011),Animation|Comedy +97464,"Thirst for Love, The (Ai no kawaki) (1966)",Drama +97466,Weight of the Nation (2012),Documentary +97468,Drones (2010),Comedy|Sci-Fi +97470,Catch .44 (2011),Action|Drama|Thriller +97494,"Return of Frank Cannon, The (1980)",Action|Crime|Drama|Mystery|Thriller +97526,"Sound of Fury, The (1950)",Crime|Drama|Film-Noir +97533,"Letter, The (2012)",Drama +97536,Three Resurrected Drunkards (Kaette kita yopparai) (1968),Comedy +97538,Tormento (1950),Drama +97540,"Visiteurs du soir, Les (Devil's Envoys, The) (1942)",Drama|Fantasy|Romance +97542,Ingmar Bergman Makes a Movie (Ingmar Bergman gör en film) (1963),Documentary +97544,Eastwood on Eastwood (1997),Documentary +97546,"Ernest Film Festival, The (1986)",Comedy +97548,Giger's Necronomicon (1975),Documentary +97550,"Secret Life of Zoey, The (2002)",Drama +97552,Moebius Redux: A Life in Pictures (2007),Documentary +97593,Tony (2009),Drama|Horror|Thriller +97595,Dive! (Dive!: Living off America's Waste) (2010),Documentary +97597,"Clink of Ice, The (a.k.a.: Sound of Ice Cubes, The) (Le bruit des glaçons) (2010)",Comedy|Drama +97600,"Warped Ones, The (Kyonetsu no kisetsu) (1960)",Drama +97615,16 to Life (2009),Comedy|Drama +97639,How to Survive a Plague (2012),Documentary +97643,[REC]³ 3 Génesis (2012),Horror|Thriller +97646,Four Sons (1940),Drama|War +97648,Gangs of Wasseypur (2012),Crime|Drama +97650,Greystone Park (2012),Horror +97660,Last Ride (2009),Drama +97662,Girl in Progress (2012),Comedy|Drama +97665,Asterix & Obelix: God Save Britannia (Astérix et Obélix: Au service de Sa Majesté) (2012),Adventure|Comedy +97667,Lightning Strikes Twice (1951),Drama|Mystery +97670,My Forbidden Past (1951),Drama +97673,56 Up (2012),Documentary +97680,King Leopold's Ghost (2006),Documentary +97685,Around the World (1943),Comedy|Musical +97688,Turkish Passion (La pasión turca) (1994),Drama +97690,"Sunday in Kigali, A (Un dimanche à Kigali) (2006)",Drama|War +97692,We Are Legion: The Story of the Hacktivists (2012),Documentary +97694,"Barrens, The (2012)",Horror +97697,Transit (2012),Crime|Drama|Thriller +97699,Love Me No More (Deux jours à tuer) (2008),Drama|Romance +97701,Paranormal Activity 4 (2012),Horror|IMAX +97703,You Are God (Jestes Bogiem) (2012),Drama +97705,Where the Boys Are '84 (1984),Comedy +97707,Skyscraper (Skyskraber) (2011),Comedy|Drama +97709,Tai Chi Zero (2012),Action|Fantasy|Sci-Fi|IMAX +97711,"White Angel, The (L'angelo bianco) (1955)",Drama +97713,"X from Outer Space, The (Uchû daikaijû Girara) (1967)",Horror|Sci-Fi +97715,"Babymakers, The (2012)",Adventure|Comedy +97722,Rosewood Lane (2011),Horror|Thriller +97724,"Glamorous Life of Sachiko Hanai, The (Hatsujô kateikyôshi: sensei no aijiru) (2003)",Action|Comedy|Drama|Fantasy|Mystery|Sci-Fi|War +97726,"Strange Case of the End of Civilization as We Know It, The (1977)",Comedy|Crime|Mystery +97730,"Feast at Midnight, A (1994)",Children|Comedy|Drama +97732,Tom & Thomas (2002),Adventure|Children +97740,"3, 2, 1... Frankie Go Boom (Frankie Go Boom) (2012)",Comedy +97742,Alex Cross (2012),Action|Crime|Mystery|Thriller +97744,"Ambassador, The (Ambassadøren) (2011)",Documentary +97752,Cloud Atlas (2012),Drama|Sci-Fi|IMAX +97755,"Luck, Trust & Ketchup: Robert Altman in Carver Country (1993)",Documentary +97757,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy +97759,Budd Boetticher: A Man Can Do That (2005),Documentary +97761,Rx (2005),Crime|Romance|Thriller +97763,Terry Pratchett: Choosing to Die (2011),Documentary +97765,ReGeneration (2010),Documentary +97768,Free Men (Les hommes libres) (2011),Drama|War +97773,"Girl, The (2012)",Drama +97775,This Ain't California (2012),Documentary +97779,Steve Jobs: The Lost Interview (2012),Documentary +97781,Rolling (2007),Drama +97785,Silent Hill: Revelation 3D (2012),Horror|Mystery|Thriller +97787,Warren Oates: Across the Border (1993),Documentary +97789,Step Up Love Story (Futari ecchi) (2002),Animation|Comedy|Romance +97792,Graduation Day (1981),Horror +97794,April Fool's Day (2008),Horror +97797,Holiday Affair (1949),Drama|Romance +97799,Like Dandelion Dust (2009),Drama +97801,Mann tut was Mann kann (2012),Comedy +97806,Stockholm East (Stockholm Östra) (2011),Drama +97808,"Woman That Dreamed About a Man, The (Kvinden der drømte om en mand) (2010)",Drama +97815,Beware the Moon: Remembering 'An American Werewolf in London' (2009),Documentary +97817,Pumping Iron II: The Women (1985),Documentary +97819,Witness to Murder (1954),Crime|Drama|Film-Noir|Thriller +97821,"Busher, The (1919)",Comedy|Drama +97823,"Piano in a Factory, The (Gang de qin) (2010)",Comedy|Drama|Musical +97826,"Patience Stone, The (2012)",Drama|War +97828,Hamoun (1990),Drama +97832,Chasing Mavericks (2012),Drama +97834,Craigslist Joe (2012),Adventure|Documentary +97836,Here Comes the Boom (2012),Action|Comedy +97845,"Men Who Made the Movies: Samuel Fuller, The (2002)",Documentary +97847,Search for the Beast (1997),Horror +97849,Victor Sjöström: Ett porträtt (1981),Documentary +97853,Night of the Running Man (1995),Action|Crime|Thriller +97855,Hitman's Run (1999),Action +97858,Mental (2012),Comedy|Drama +97860,Killing Them Softly (2012),Crime|Drama|Thriller +97866,"Imposter, The (2012)",Documentary +97868,"Other Dream Team, The (2012)",Documentary +97870,"Sessions, The (Surrogate, The) (2012)",Drama +97872,Living with the Fosters (2002),Comedy +97874,Lana Turner... a Daughter's Memoir (2001),Documentary +97876,Making the Earth Stand Still (1995),Documentary +97878,Remember the Day (1941),Drama|Romance|War +97880,"Child Is Waiting, A (1963)",Drama +97882,Salvage (2009),Horror +97884,Submarine X-1 (1969),Drama|War +97886,Rid of Me (2011),Comedy|Drama|Romance +97888,I Want to Look Like That Guy (2009),Documentary +97895,What Richard Did (2012),Drama +97897,Kounterfeit (1996),Action|Crime|Thriller +97899,Nightmaster (Watch the Shadows Dance) (1987),Action +97904,Smashed (2012),Comedy|Drama +97906,Splinterheads (2009),Comedy +97908,"Babysitters, The (2007)",Drama +97910,"Juche Idea, The (2008)",Documentary +97913,Wreck-It Ralph (2012),Animation|Comedy +97915,Lookin' to Get Out (1982),Comedy +97917,Diplomatic Siege (1999),Action|Thriller +97919,Midnight Man (1997),Action|Drama|Thriller +97921,Silver Linings Playbook (2012),Comedy|Drama +97923,Flight (2012),Drama +97933,5 Broken Cameras (2011),Documentary +97936,Anna Karenina (2012),Drama +97938,Life of Pi (2012),Adventure|Drama|IMAX +97940,"Saint in London, The (1939)",Action|Comedy|Crime|Drama|Mystery +97946,"Day, The (2011)",Drama|Sci-Fi|Thriller +97948,Two Days in April (2007),Documentary +97950,"Man with the Iron Fists, The (2012)",Action|Adventure|Crime +97952,Back to stay (Abrir puertas y ventanas) (2011),Comedy +97955,Gable: The King Remembered (1975),Documentary +97957,Excision (2012),Crime|Drama|Horror|Thriller +97959,"Other Son, The (Fils de l'autre, Le) (2012)",Drama +97966,Bait (2012),Action|Horror|Thriller +97968,Gallowwalkers (2012),Action|Horror|Sci-Fi|Western +97971,Rosencrantz and Guildenstern Are Undead (2009),Comedy|Horror +97973,Mother Knows Best (1997),Crime|Thriller +97984,Wake in Fright (1971),Drama|Thriller +97986,Won't Back Down (2012),Drama +97988,"Bay, The (2012)",Horror|Sci-Fi|Thriller +97994,Union Square (2011),Drama +97998,"Hypnotist, The (Hypnotisören) (2012)",Thriller +98000,Student of the Year (2012),Comedy|Romance +98002,"Madrid, 1987 (2011)",Drama +98004,Single White Female 2: The Psycho (2005),Drama|Thriller +98007,Miehen tie (1940),Drama +98013,"Details, The (2011)",Comedy +98015,Jack and Diane (2012),Drama|Horror|Romance +98017,"Late Quartet, A (2012)",Drama +98019,Vexille (Bekushiru: 2077 Nihon sakoku) (2007),Action|Animation|Sci-Fi +98022,Sleepless Night (Nuit blanche) (2011),Action|Crime|Thriller +98027,"Age of Innocence, The (1934)",Drama|Romance +98030,Atomic Twister (2002),Action|Drama|Sci-Fi +98032,Bear with Me (2005),Adventure +98034,Children of the Living Dead (2001),Horror|Thriller +98036,"Lady, The (2011)",Drama +98041,"Rutles 2: Can't Buy Me Lunch, The (2004)",Comedy|Documentary|Musical +98043,Fate of a Man (Sudba cheloveka) (1959),Drama|War +98045,All About Actresses (Le bal des actrices) (2009),Comedy|Drama +98052,Goal! III (2009),Drama|Romance +98054,Stolen (2012),Action|Crime|Thriller +98056,Amour (2012),Drama|Romance +98059,Something's Gonna Live (2010),Documentary +98061,Himizu (2011),Children|Crime|Drama +98063,Mona and the Time of Burning Love (Mona ja palavan rakkauden aika) (1983)),Drama +98065,Brooklyn Castle (2012),Documentary +98067,"Well Digger's Daughter, The (La fille du puisatier) (2011)",Comedy|Drama|Romance +98069,Incident at Blood Pass (Machibuse) (Ambush) (1970),Action|Drama +98072,Triad Underworld (Gong wu) (Jiang Hu) (2004),Action|Crime|Drama +98076,I Accuse (2003),Crime|Drama|Thriller +98078,Death Weekend (1976),Horror|Thriller +98080,"Tomb, The (2007)",Horror|Thriller +98083,Jackass 3.5 (2011),Comedy|Documentary +98085,Labor Pains (2009),Comedy|Romance +98087,Cockneys vs Zombies (2012),Comedy|Horror +98107,28 Hotel Rooms (2012),Drama +98109,Citadel (2012),Drama|Horror|Thriller +98111,Dangerous Liaisons (2012),Drama|Mystery|Romance +98114,Bloodtide (1982),Horror +98116,"Scorpion King 3: Battle for Redemption, The (2012)",Action|Adventure|Comedy|Fantasy +98120,Wishmaster 2: Evil Never Dies (1999),Fantasy|Horror +98122,Indie Game: The Movie (2012),Documentary +98124,"Batman: The Dark Knight Returns, Part 1 (2012)",Action|Animation|Sci-Fi +98126,Capital (Le capital) (2012),Drama +98131,Beloved Berlin Wall (Liebe Mauer) (2009),Comedy|Drama|Romance +98140,Meet Monica Velour (2010),Comedy|Drama|Romance +98142,Thurgood (2011),Drama +98144,"Conscientious Objector, The (2004)",Documentary|War +98151,Kill Me Please (2010),Comedy +98154,Lincoln (2012),Drama|War +98160,Nature Calls (2012),Comedy +98162,Babbitt (1934),Drama +98167,In Their Sleep (Dans ton sommeil) (2010),Horror|Thriller +98169,Requiem for a Killer (Requiem pour une tueuse) (2011),Thriller +98171,"Bohème, La (1926)",Drama|Romance +98173,"Caine Mutiny Court-Martial, The (1988)",Drama|War +98175,Vamps (2012),Comedy|Horror|Romance +98187,"Naughty Room, The (2012)",Comedy|Drama +98189,"Moth Diaries, The (2011)",Thriller +98191,Joe + Belle (2011),Comedy|Crime|Drama|Romance +98193,"Invisible War, The (2012)",Crime|Documentary|Drama|War +98198,OMG Oh My God! (2012),Comedy|Drama +98200,"Strawberry Statement, The (1970)",Drama|Romance +98203,"Twilight Saga: Breaking Dawn - Part 2, The (2012)",Adventure|Drama|Fantasy|Romance|IMAX +98211,Shakespeare High (2011),Documentary +98213,"Circle, The (1925)",Drama +98217,Holiday Engagement (2011),Comedy +98219,"Tiger Brigades, The (Les brigades du Tigre) (2006)",Action|Adventure|Crime +98221,"Year One, The (L'an 01) (1973)",Comedy +98224,"Big Blonde, The (Iso vaalee) (1983)",Comedy|Drama +98228,Walter (1982),Drama +98230,10 Years (2011),Comedy|Drama|Romance +98237,Price Check (2012),Comedy|Drama +98239,Red Dawn (2012),Action|War +98241,Starry starry night (Xing kong) (2011),Children|Drama|Fantasy +98243,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX +98246,"Seafarers, The (1953)",Documentary +98248,"Counterfeiters, The (Le cave se rebiffe) (1961)",Comedy +98251,Kabei: Our Mother (Kâbê) (2008),Drama +98253,Samurai Banners (Fûrin kazan) (1969),Action|Adventure|Drama|War +98261,Murder on Flight 502 (1975),Drama|Mystery|Thriller +98271,Amor? (2011),Drama +98273,"Last Trapper, The (Le dernier trappeur) (2004)",Adventure|Documentary +98275,"Octopus, The (Le poulpe) (1998)",Comedy|Crime|Thriller +98277,Locked Out (Enfermés dehors) (2006),Comedy +98279,"Fantastic Fear of Everything, A (2012)",Comedy +98284,Fire Over England (1937),Adventure|Romance|War +98286,Fog Over Frisco (1934),Crime|Mystery|Thriller +98288,Ten Seconds to Hell (1959),Action|Drama|Romance|War +98290,Storage 24 (2012),Horror|Sci-Fi +98294,Tokio Baby (2010),Drama +98296,Deadfall (2012),Crime|Drama|Thriller +98298,Skirt Day (La journée de la jupe) (2008),Drama +98304,So Big! (1932),Drama +98306,"Singing Marine, The (1937)",Comedy|Musical|Romance +98323,Two Sisters from Boston (1946),Comedy|Musical +98325,"Quare Fellow, The (a.k.a. The Condemned Man) (1962)",Drama +98328,Chronicle of My Mother (Waga haha no ki) (2011),Drama +98335,"Moral Tales, Filmic Issues (2006)",Documentary +98337,97 Percent True (2008),Documentary +98339,Les modèles de 'Pickpocket' (2005),Documentary +98341,"Confession, The (1999)",Drama|Thriller +98344,Lovely to Look At (1952),Comedy|Musical|Romance +98346,Excuse My Dust (1951),Comedy|Musical +98348,Watch the Birdie (1950),Comedy|Crime|Romance +98353,Putin's Kiss (2012),Documentary +98358,Journey to Saturn (Rejsen til Saturn) (2008),Action|Adventure|Animation|Sci-Fi +98361,Byzantium (2012),Drama|Fantasy|Thriller +98363,BuzzKill (2012),Comedy +98367,"Perfect Family, The (2011)",Comedy|Drama +98369,Halo 4: Forward Unto Dawn (2012),Action|Sci-Fi|Thriller +98373,Step Up Revolution (2012),Musical +98376,"Yellow Cab Man, The (1950)",Comedy|Drama|Romance +98378,Four more years (Fyra år till) (2010),Comedy|Romance +98381,Hellraiser: Revelations (2011),Horror +98383,Welcome to Sherwood! The Story of 'The Adventures of Robin Hood' (2003),Documentary +98385,Jungle de Ikou (Jungre de Ikou) (1997),Action|Comedy|Fantasy +98387,Making 'The New World' (2006),Documentary +98389,"Lost Missile, The (1958)",Sci-Fi +98391,Nightmare Man (2006),Comedy|Horror|Thriller +98394,Cry Wolf (1947),Crime|Drama|Mystery|Thriller +98398,Everybody's Acting (1926),Drama|Romance +98400,Imaginaerum (2012),Fantasy|Musical +98402,Nokas (2010),Crime|Thriller +98404,Tarda estate (2010),Drama +98406,Raw Deal: A Question of Consent (2001),Documentary +98409,Budd Boetticher: An American Original (2005) ,Documentary +98411,"Footprints of a Spirit, The (Huellas de un espíritu) (1998)",Documentary +98413,James Dean Remembered (1974),Documentary +98415,Our Town (2003),Drama|Romance +98439,Division III: Football's Finest (2011),Comedy|Romance +98441,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical +98443,Mark Twain (2001),Documentary +98445,DMT: The Spirit Molecule (2010),Documentary +98447,Mac & Devin Go to High School (2012),Comedy +98449,"Burning Hot Summer, A (Un été brûlant) (2011)",Drama +98452,"Kiss for Corliss, A (Almost a Bride) (1949)",Comedy +98456,Adventure in Baltimore (1949),Comedy|Drama +98458,Baby Take a Bow (1934),Children|Comedy|Drama +98460,"Tempest, The (1979)",Drama +98464,New Fist of Fury (Xin jing wu men) (1976),Action|Drama +98467,"Killer Meteors, The (Feng yu shuang liu xing) (1976)",Action|Thriller +98469,Shaolin Wooden Men (Shao Lin mu ren xiang) (1976),Action +98471,36 Crazy Fists (San shi liu mi xing quan) (1977),Action|Comedy|Drama +98473,"Sleeping Car Murder, The (Compartiment tueurs) (1965)",Drama|Mystery|Thriller +98475,Let's Not Get Angry (Ne nous fâchons pas) (1966),Comedy|Crime +98477,Hothead (Coup de tête) (1979),Comedy|Drama +98481,Poolboy: Drowning Out the Fury (2011),Comedy +98483,"Poll Diaries, The (Poll) (2010)",Drama|War +98485,Aftermath (2012),Drama|Thriller +98491,Paperman (2012),Animation|Comedy|Romance +98493,To Kill with Intrigue (Jian hua yan yu Jiang Nan) (1977),Action|Drama +98497,Magnificent Bodyguards (Fei du juan yun shan) (1978),Action +98499,"Fearless Hyena, The (Xiao quan guai zhao) (1979)",Action|Comedy +98501,Dragon Fist (Long quan) (1979),Action|Drama +98503,Half a Loaf of Kung Fu (Dian zhi gong fu gan chian chan) (1980),Action|Comedy +98507,We Should Not Exist (On ne devrait pas exister) (2006),Comedy|Drama +98509,Bank Error in Your Favour (Erreur de la banque en votre faveur) (2009),Comedy +98511,Kirikou and the Wild Beast (Kirikou et les bêtes sauvages) (2005),Adventure|Animation|Children +98513,"Statue of Liberty, The (1985)",Documentary +98518,Slingshot (2005),Crime|Drama|Romance +98520,Brooklyn Bridge (1981),Documentary +98523,Arcade (1993),Horror|Sci-Fi +98526,Jude the Obscure (1971),Drama +98528,"Paramore Live, the Final Riot! (2008)",Documentary|Musical +98532,Bad Ass (2012),Action|Crime|Drama +98552,Nativity! (2009),Children|Comedy|Musical +98554,"Christmas Story 2, A (2012)",Children|Comedy +98556,Elevator Girl (2010),Comedy|Romance +98558,Dragon Attack (1983),Action|Adventure|Comedy|Crime|Thriller|War +98560,Fearless Hyena II (Long teng hu yue) (1983),Action +98563,Recoil (2011),Action +98566,Ghost Voyage (2008),Horror|Thriller +98570,"Peace, Love & Misunderstanding (2011)",Drama|Romance +98572,"Congress, The (1988)",Documentary +98581,Fever (1991),Drama +98583,Hecho en México (2012),Documentary|Musical +98585,Hitchcock (2012),Drama +98587,Caesar Must Die (Cesare deve morire) (2012),Drama +98589,Interceptor (1993),Action|Sci-Fi +98591,Now Where Did the Seventh Company Get to? (Mais où est donc passée la 7ème compagnie) (1973),Action|Comedy|War +98593,Other Worlds (D'autres mondes) (2004),Documentary +98595,Peppermint Soda (Diabolo menthe) (1977),Comedy|Drama +98601,American Roulette (1988),Thriller +98604,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance +98607,Redline (2009),Action|Animation|Sci-Fi +98609,Honeymoon (1947),Comedy|Romance +98611,Just Around the Corner (1938),Comedy|Musical +98613,Kathleen (1941),Comedy|Drama|Romance +98615,Burn Up! (1991),Action|Animation +98617,Lulu in Berlin (1984),Documentary +98619,L'instant et la patience (1994) ,Documentary +98621,Welcome to the Space Show (Uchû shô e yôkoso) (2010),Adventure|Animation|Sci-Fi +98623,Winners and Sinners (Qi mou miao ji: Wu fu xing) (1983),Action|Comedy|Crime +98626,Barry Munday (2010),Comedy +98629,Purge (Puhdistus) (2012),Drama +98631,"Day He Arrives, The (Book chon bang hyang) (2011)",Drama|Romance +98633,My Lucky Stars (Fuk sing go jiu) (1985),Action|Comedy +98636,Twinkle Twinkle Lucky Stars (Xia ri fu xing) (1985),Action|Comedy +98643,Kiss and Tell (1945),Comedy +98693,"Yes, But... (Oui, mais...) (2001)",Comedy|Drama|Romance +98695,Space Adventure Cobra (1982),Animation|Sci-Fi +98697,"Money Money Money (L'aventure, c'est l'aventure) (1972)",Adventure|Comedy +98699,"Season for Miracles, A (1999)",Children|Romance +98751,"Awful Truth, The (1925)",Comedy +98755,1911 (Xinhai geming) (2011),Action|Adventure|Drama|War +98757,Jackie Chan: Kung Fu Master (Xun zhao Cheng Long) (2009),Action|Comedy +98759,"Shaolin Temple, The (Shao Lin Si) (1982)",Action +98761,Shaolin Temple 2: Kids from Shaolin (Shao Lin xiao zi) (Kids from Shaolin) (1984),Action|Comedy +98766,Carol Channing: Larger Than Life (2012),Comedy|Documentary|Musical +98768,Memory (2006),Drama|Horror|Thriller +98783,Shaolin Temple 3: Martial Arts of Shaolin (Nan bei Shao Lin) (Martial Arts of Shaolin) (1986),Action +98786,Snowmageddon (2011),Adventure|Fantasy +98788,Stand Up and Fight (1939),Drama|Romance|Western +98795,Jazz (2001),Documentary +98797,Barbara (2012),Drama +98799,"Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman, A (2012)",Animation|Comedy +98803,Little Miss Broadway (1938),Drama|Musical +98805,Miss Annie Rooney (1942),Drama +98807,Mr. Belvedere Goes to College (1949),Comedy +98809,"Hobbit: An Unexpected Journey, The (2012)",Adventure|Fantasy|IMAX +98815,Mon Paradis - Der Winterpalast (2001),Documentary +98817,No Flesh Shall Be Spared (2009),Documentary +98819,I am Von Höfler (Variation on Werther - Private Hungary 15) (2008),Documentary +98821,Born to Defense (Zhong hua ying xiong) (1986),Action|War +98825,"Master, The (Huang Fei Hong jiu er zhi long xing tian xia) (1992)",Action +98829,"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)",Action|Fantasy +98834,"Fitzgerald Family Christmas, The (2012)",Drama +98836,Hyde Park on Hudson (2012),Comedy|Drama +98838,Lay the Favorite (2012),Comedy +98840,Audition (Konkurs) (1964),Documentary +98842,All's Faire in Love (2009),Comedy +98845,Crooked Arrows (2012),Drama +98847,"Enforcer, The (Gei ba ba de xin) (1995)",Action +98850,Dr. Wai in the Scriptures with No Words (Mao xian wang) (1996),Action +98852,Once Upon a Time in China and America (Wong Fei Hung: Chi sai wik hung see) (1997) ,Action|Adventure|Western +98854,Hitman (Contract Killer) (Sat sau ji wong) (1998),Action|Comedy +98856,Heroic Cops (Jing wang shuang xiong) (1978),Action|Crime +98859,Never Say... Never! (Il ne faut jurer... de rien!) (2005),Comedy +98861,"Cool, Calm and Collected (Calmos) (1976)",Comedy +98908,How to Make Love to a Woman (2010),Comedy|Romance +98911,"After Fall, Winter (2011)",Drama +98913,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama +98922,Rebellion (L'ordre et la morale) (2011),Action|Drama +98924,Versailles (2008),Drama +98927,Two in the Wave (2010),Documentary +98929,Lotte Reiniger: Homage to the Inventor of the Silhouette Film (2001),Documentary +98931,"RKO Production 601: The Making of 'Kong, the Eighth Wonder of the World' (2005)",Documentary +98933,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance +98936,"All Blossoms Again: Pedro Costa, Director (Tout refleurit: Pedro Costa, cinéaste) (2006)",Documentary +98938,"Last Rites of Joe May, The (2011)",Drama +98941,100 Ways to Murder Your Wife (Sha qi er ren zu) (1986),Comedy +98943,"Prodigal, The (1955)",Drama +98949,"Eleventh Hour, The (2008)",Action|Thriller +98956,Barfi! (2012),Comedy|Drama|Romance +98958,Federico Fellini's Autobiography (Federico Fellini - un autoritratto ritrovato) (2000),Documentary +98961,Zero Dark Thirty (2012),Action|Drama|Thriller +98963,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller +98965,Consuming Spirits (2012),Animation|Comedy|Drama|Mystery +98973,Chasing Ice (2012),Documentary +98975,Antiviral (2012),Horror|Sci-Fi|Thriller +98981,"Arrival of a Train, The (1896)",Documentary +98983,Arsène Lupin (2004),Action|Adventure|Crime|Mystery|Romance +98985,"Three Brothers, The (Les trois frères) (1995)",Comedy +98989,Ghost Machine (2009),Action|Sci-Fi|Thriller +98991,Freeloaders (2011),Comedy +98994,"Immortal Story, The (Histoire immortelle) (1968)",Drama +98996,Filming 'Othello' (1978),Documentary +98999,Woodsman and the Rain (Kitsutsuki to ame) (2011),Comedy|Drama +99005,Fire with Fire (2012),Action|Crime|Drama +99007,Warm Bodies (2013),Comedy|Horror|Romance +99012,"Gay Bed and Breakfast of Terror, The (2007)",Comedy|Horror +99014,Dororo (2007),Adventure|Fantasy +99020,Let Fury Have the Hour (2012),Documentary +99024,Asylum Blackout (2011),Horror|Thriller +99026,Fresh Bait (L'appât) (1995) ,Crime|Drama +99028,Frenchmen (Le coeur des hommes) (2003),Comedy|Romance +99030,Wrong (2012),Comedy|Drama +99041,Young & Wild (Joven y alocada) (2012),Drama +99043,Trishna (2011),Drama +99045,Aftershock (Tangshan dadizhen) (2010),Drama|IMAX +99047,Chained (2012),Horror|Thriller +99050,"Goodbye Girl, The (2004)",Comedy|Romance +99054,"Ring Finger, The (L'annulaire) (2005)",Drama +99056,"Count Yorga, Vampire (1970)",Drama|Horror|Romance +99058,"Comedy, The (2012)",Drama +99061,7 Khoon Maaf (2011),Drama|Mystery|Thriller +99064,"Red Shoes, The (Bunhongsin) (2005)",Drama|Horror|Mystery +99068,Bluebeard (1972),Thriller +99085,Our Little Girl (1935),Comedy|Drama|Romance +99087,Playing for Keeps (2012),Comedy|Romance +99089,Poor Little Rich Girl (1936),Adventure|Musical|Romance +99101,Negative Happy Chainsaw Edge (Negatibu happî chênsô ejji) (2007),Comedy|Horror +99103,Stevie Nicks: Live at Red Rocks (1987),Documentary|Musical +99106,"Guilt Trip, The (2012)",Comedy +99108,"Girl on a Motorcycle, The (1968)",Drama|Romance +99110,Save the Date (2012),Comedy|Romance +99112,Jack Reacher (2012),Action|Crime|Thriller +99114,Django Unchained (2012),Action|Drama|Western +99117,This Is 40 (2012),Drama +99119,Mahakaal (The Monster) (1993),Horror +99122,I Bought a Vampire Motorcycle (1990),Comedy|Horror +99124,Willard (1971),Horror +99126,"Public Woman, The (Femme publique, La) (1984)",Drama +99128,Female Demon Ohyaku (Yôen dokufuden hannya no ohyaku) (1968),Action +99130,Ice Cream Man (1995),Comedy|Horror +99143,Cirque du Soleil: Worlds Away (2012),Fantasy|IMAX +99145,"Impossible, The (Imposible, Lo) (2012)",Drama|Thriller +99147,Carol for Another Christmas (1964),Drama|Fantasy|War +99149,"Misérables, Les (2012)",Drama|Musical|Romance|IMAX +99169,"Gestapo's Last Orgy, The (L'ultima orgia del III Reich) (1977)",Thriller|War +99171,Mamitas (2011),Drama +99173,"Bobo, The (1967)",Comedy +99178,Struck by Lightning (2012),Comedy|Drama +99180,Minecraft: The Story of Mojang (2012),Documentary +99182,Spring Break Shark Attack (2005),Adventure|Drama|Horror +99191,Campfire Tales (1997),Horror +99210,Seven Ways from Sundown (1960),Action|Adventure|Western +99214,Aziz Ansari: Intimate Moments for a Sensual Evening (2010),Comedy|Documentary +99217,Not Fade Away (2012),Drama +99220,Quartet (2012),Comedy|Drama +99222,Silent Night (2012),Horror +99238,"Turn of the Screw, The (2009)",Drama|Horror|Mystery +99240,"Coluche, l'histoire d'un mec (2008)",Drama +99243,"Parasites, Les (1999)",Comedy +99246,"Reluctant Dragon, The (1941)",Animation|Comedy +99249,"Marine Story, A (2010)",Drama +99251,Malibu High (1979),Comedy|Crime +99253,"Softening of the Egg, The (Ägget är löst!) (1975)",Comedy|Drama +99258,Who Wants to Kill Jessie? (Kdo chce zabít Jessii?) (1966),Comedy|Sci-Fi +99260,Jerusalem Countdown (2011),Thriller +99270,Stand Up and Cheer! (1934),Comedy|Musical +99273,Stowaway (1936),Adventure|Musical +99276,Susannah of the Mounties (1939),Drama +99279,11 Flowers (Wo 11) (2011),Drama +99287,Quatre garçons pleins d'avenir (1997),Comedy +99289,In Your Dreams (Dans tes rêves) (2005),Drama +99294,"Willow Tree, The (Beed-e majnoon) (2005)",Drama +99296,Would You Rather (2012),Horror|Thriller +99305,Kumaré (2011),Documentary +99308,Lady Oscar (1979),Drama +99314,That Hagen Girl (1947),Drama +99317,Holiday Wishes (2006),Children|Comedy|Drama +99320,Maximum Conviction (2012),Action|Adventure|Thriller +99325,"Eye of the Storm, The (2011)",Drama +99327,976-EVIL II (1992),Horror +99329,Xtro 2: The Second Encounter (1991),Horror|Sci-Fi +99331,Xtro 3: Watch the Skies (1995),Horror|Sci-Fi +99335,Addicted (2013),Drama +99337,Foreign Intrigue (1956),Thriller +99343,Harem suare (1999),Drama +99345,Electile Dysfunction (2008),Documentary +99347,"Glenn, the Flying Robot (2010)",Sci-Fi +99349,Kevin Smith: Burn in Hell (2012),Comedy +99351,Slipstream (1989),Adventure|Sci-Fi +99355,"Woodmans, The (2010)",Documentary +99364,Move (3 Zimmer/Küche/Bad) (2012),Comedy|Drama +99367,Holiday in Handcuffs (2007),Comedy|Romance +99371,Camp Rock 2: The Final Jam (2010),Comedy|Musical|Romance +99373,StreetDance 3D (2010),Drama|Romance +99380,"New Barbarians, The (I nuovi barbari) (1983)",Action|Sci-Fi|Thriller|Western +99384,How to Stop Being a Loser (2011),Comedy +99387,Transfer (2010),Drama|Sci-Fi +99389,Thanksgiving Family Reunion (National Lampoon's Holiday Reunion) (2003),Comedy +99395,Time of Roses (Ruusujen aika) (1969),Sci-Fi +99397,Lipton Cockton in the Shadows of Sodoma (1995),Drama|Mystery|Sci-Fi +99400,"Midsummer Night's Party, A (Midsummer of Love, A) (Sommaren med Göran) (2009)",Comedy +99402,Alois Nebel (2011),Animation|Crime|War +99413,Juan of the Dead (Juan de los Muertos) (2011),Comedy|Horror +99415,Parental Guidance (2012),Comedy +99417,Sexy Baby (2012),Documentary +99420,Kings of Recycling (Kierrätyksen kuninkaat) (2000),Documentary +99434,Snow on Tha Bluff (2011),Crime|Drama +99437,John Dies at the End (2012),Comedy|Fantasy|Horror +99439,Vidal Sassoon: The Movie (2010),Documentary +99441,Born to Be Wild (2011),Documentary|IMAX +99444,Blonde Ice (1948),Film-Noir +99446,Ultrasuede: In Search of Halston (2010),Documentary +99448,Trek Nation (2010),Documentary +99450,Sun Kissed (2012),Documentary +99452,Wish Me Away (2011),Documentary +99468,"Central Park Five, The (2012)",Documentary +99470,"Collection, The (2012)",Action|Horror|Thriller +99474,"Cherry Orchard, The (Sakura no sono) (2008)",Drama +99478,FDR: American Badass! (2012),Action|Comedy +99487,All Superheros Must Die (2011),Thriller +99489,Jean Renoir: Part One - From La Belle Époque to World War II (1993),Documentary +99491,Booker's Place: A Mississippi Story (2012),Documentary|Mystery +99493,Girl Walk: All Day (2011),Musical +99495,"Acacias, Las (2011)",Drama +99497,Just Ask My Children (2001),Drama +99499,Never Too Young to Die (1986),Action|Adventure|Drama +99502,"Remember the Daze (Beautiful Ordinary, The) (2007)",Comedy|Drama +99515,Yesterday's Enemy (1959),Drama|War +99517,Young People (1940),Drama +99519,Henry (2010),Comedy +99521,"Incruste, L' (a.k.a. L'Incruste, fallait pas le laisser entrer!) (2004)",Comedy +99523,"Villain, The (Le Vilain) (2009)",Comedy +99525,Soldiers of Fortune (2012),Action|Adventure +99530,Rurouni Kenshin (Rurôni Kenshin: Meiji kenkaku roman tan) (2012),Action|Drama +99532,"Misérables, Les (2000)",Drama|Romance +99537,Extracted (2012),Drama|Sci-Fi +99539,Stevie (2008),Drama|Horror +99549,Mansome (2012),Documentary +99560,"Misérables, Les (1958)",Drama +99562,"Misérables, Les (1952)",Drama|Romance +99564,"Big Street, The (1942)",Drama|Romance +99566,"True Meaning of Christmas Specials, The (2002)",Comedy +99568,Great Escape: The Untold Story (2001),Documentary|Drama|War +99570,Kenji Mizoguchi: The Life of a Film Director (Aru eiga-kantoku no shogai) (1975),Documentary +99572,Cornelis (2010),Drama +99574,Promised Land (2012),Drama +99591,Neo Ned (2005),Drama|Romance +99594,Offender (2012),Crime|Thriller +99596,Sun Wind (Aurinkotuuli) (1980),Drama|Sci-Fi +99598,Confessions of a Window Cleaner (1974),Comedy +99600,"Man Who Haunted Himself, The (1970)",Drama|Fantasy|Horror|Mystery|Thriller +99602,Dakota Skye (2008),Drama|Romance +99604,"Demon in My View, A (Der Mann nebenan) (1991)",Horror|Thriller +99607,Immaculate Conception of Little Dizzle (2009),Comedy +99609,Judas Kiss (2011),Drama|Sci-Fi +99611,Confessions of a Pop Performer (1975),Comedy +99613,Private Romeo (2011),Drama +99615,Role/Play (2010),Drama +99631,I Know What I Saw (2009),Documentary +99633,"Sweeney, The (2012)",Action|Crime +99636,English Vinglish (2012),Comedy|Drama +99638,Fish Story (Fisshu sutôrî) (2009),Comedy +99640,Comedy Central Roast of Bob Saget (2008),Comedy +99642,Tiny Toon Adventures: How I Spent My Vacation (1992),Adventure|Animation|Comedy +99644,Trapped in the Closet: Chapters 1-12 (2005),Drama|Musical +99659,"Sea of Grass, The (1947)",Drama|Western +99663,"Visitors, The (1972)",Crime|Drama|Thriller +99665,L'homme qui rit (2012),Drama|Fantasy|Romance +99667,Excuse Me for Living (2012),Comedy|Romance +99669,Aftermath (1994),Horror +99671,Fragments of an Alms-Film (Fragmentos de um Filme-Esmola: A Sagrada Família) (1972),Comedy +99673,Manuel on the Island of Wonders (Manoel dans l'île des merveilles) (1984),Drama +99675,Eat Sleep Die (Äta sova dö) (2012),Drama +99677,Dr. Bronner's Magic Soapbox (2006),Documentary +99679,"Guns, Girls and Gambling (2011)",Crime|Thriller +99687,"Dark Truth, A (Truth, The) (2012)",Drama|Thriller +99689,"Conversation with Gregory Peck, A (1999)",Documentary +99691,Odette Toulemonde (2006),Comedy|Drama +99693,Mein Kampf (2009),Comedy|Drama +99695,Pusher (2012),Crime|Drama +99699,Lucy (2003),Comedy|Drama +99706,"Hollywood Complex, The (2011)",Documentary +99708,"Shunning, The (2011)",Drama +99717,She Had to Say Yes (1933),Drama +99719,Leave (2011),Drama|Thriller +99721,Texas Chainsaw 3D (2013),Horror|Mystery|Thriller +99724,K-11 (2012),Crime|Drama +99726,Ex-Girlfriends (2012),Comedy|Drama +99728,Gangster Squad (2013),Action|Crime|Drama +99731,Dabangg 2 (2012),Action|Comedy|Drama|Musical|Romance +99733,"Marsh, The (2006)",Horror|Thriller +99735,Road to Redemption (2001),Comedy|Drama +99737,"Climb, The (2002)",Action|Adventure|Drama +99739,"Warrior and the Sorceress, The (1984)",Action|Adventure|Fantasy|Sci-Fi +99741,"Company You Keep, The (2012)",Thriller +99744,"Trouble with Bliss, The (2011)",Comedy|Drama +99746,"Samaritan, The (2012)",Drama|Thriller +99748,I Got Next (2011),Documentary +99750,"Iceman, The (2012)",Crime|Drama|Thriller +99754,Behind Blue Skies (Himlen är oskyldigt blå) (2010),Drama +99756,Mad Ron's Prevues from Hell (1987),Comedy|Horror +99758,T.N.T. (1997),Action +99760,Secrets of the Tribe (2010),Documentary +99764,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi +99766,Superman/Shazam!: The Return of Black Adam (DC Showcase Original Shorts Collection) (2010),Action|Adventure|Animation +99768,Kiss the Bride (2007),Comedy|Romance +99787,"Haunted House, A (2013)",Comedy|Horror +99790,Sinners and Saints (2010),Action|Crime +99792,Painted Lady (1997),Crime|Drama|Thriller +99795,Whores' Glory (2011),Documentary +99798,Somewhere in Palilula (Undeva la Palilula) (2012),Drama +99800,"Fork in the Road, A (2010)",Comedy|Crime +99807,Planet of Snail (2011),Documentary|Drama +99809,"Waiting Room, The (2012)",Documentary +99811,Beware of Mr. Baker (2012),Documentary +99813,"Batman: The Dark Knight Returns, Part 2 (2013)",Action|Animation +99815,Alphabet City (1984),Crime|Drama|Thriller +99817,Beyond The Hills (2012),Drama +99820,Pokémon the Movie: Black - Victini and Reshiram (2011),Animation +99822,Pokémon the Movie: White - Victini and Zekrom (2011),Animation +99826,Cleanflix (2009),Crime|Documentary +99828,"Unloved, The (2009)",Drama +99832,"Hand, The (Ruka) (1966)",Animation +99839,Paul Williams Still Alive (2011),Comedy|Documentary|Musical +99841,Sister (L'enfant d'en haut) (2012),Crime|Drama +99843,Mea Maxima Culpa: Silence in the House of God (2012),Documentary +99846,Everything or Nothing: The Untold Story of 007 (2012),Documentary +99850,Grayeagle (1977),Adventure|Drama|Romance|Western +99853,Codependent Lesbian Space Alien Seeks Same (2011),Comedy|Romance|Sci-Fi +99855,"World's Greatest Athlete, The (1973)",Comedy|Romance +99857,Jesse Stone: Stone Cold (2005),Crime|Drama|Mystery +99859,Jesse Stone: Death in Paradise (2006),Crime|Drama|Mystery +99861,Jesse Stone: Sea Change (2007),Crime|Drama +99866,Cargo (2011),Drama|Thriller +99871,Jesse Stone: No Remorse (2010),Crime|Mystery +99873,Jesse Stone: Innocents Lost (2011),Crime|Drama +99875,Jesse Stone: Benefit of the Doubt (2012),Crime|Drama +99889,Diana Vreeland: The Eye Has to Travel (2011),Documentary +99891,Fine-Tune (2008),Comedy|Drama +99893,Sangre de mi sangre (Padre Nuestro) (2007),Drama|Thriller +99895,Milarepa (2006),Action|Adventure|Drama +99901,O Panishyros Megistanas Ton Ninja (2008),Action|Comedy|Sci-Fi +99904,Morgan Pålsson - världsreporter (2008),Action|Comedy +99906,Renoir (2012),Drama|Romance +99908,Typhoon (Tae-poong) (2005),Action|Drama|Thriller +99910,"Last Stand, The (2013)",Action|Crime|Thriller +99912,Mama (2013),Horror +99915,"Candidate, The (Kandidaten) (2008)",Thriller +99917,Upstream Color (2013),Romance|Sci-Fi|Thriller +99919,Fast Life (1932),Comedy|Romance +99922,Carless Love (2012),Drama +99925,Special When Lit (2009),Documentary +99937,Outpost: Black Sun (2012),Action|Horror +99939,Preston Sturges: The Rise and Fall of an American Dreamer (1990),Documentary +99941,Double Indemnity (1973),Crime|Drama|Thriller +99946,London After Midnight (2002),Drama|Horror +99957,Broken City (2013),Crime|Drama|Thriller +99960,Nursery University (2008),Documentary +99962,"Counterfeit Coin, The (Istoria mias kalpikis liras) (1955)",Comedy|Drama|Film-Noir|Romance +99964,Nameless Gangster (Bumchoiwaui junjaeng) (2012),Crime|Thriller +99968,Ginger & Rosa (2012),Drama +99970,First Shot (2002),Action +99986,Marina Abramovic: The Artist Is Present (2012),Documentary +99989,Bonsái (2011),Drama +99992,Shadow Dancer (2012),Crime|Drama|Thriller +99994,Thale (2012),Action|Drama|Horror|Mystery +99996,It's a Disaster (2012),Comedy|Drama +99999,Texas Across the River (1966),Comedy|Western +100001,"Comic, The (1969)",Comedy|Drama +100003,Up in Smoke (1957),Comedy +100006,First Daughter (1999),Comedy|Romance|Thriller +100008,"Flaw, The (2011)",Documentary +100010,Battle of Los Angeles (2011),Action|Sci-Fi +100013,Jason Becker: Not Dead Yet (2012),Documentary +100015,Chicago Massacre: Richard Speck (2007),Crime|Drama|Thriller +100017,Keep the Lights On (2012),Drama +100032,Beauty Is Embarrassing (2012),Documentary +100034,Girl Model (2011),Documentary +100036,Crossfire Hurricane (2012),Documentary|Musical +100038,Middle of Nowhere (2012),Drama|Romance +100040,True Blue (2001) ,Crime|Drama|Thriller +100042,"Guns of Fort Petticoat, The (1957)",War|Western +100044,Human Planet (2011),Documentary +100046,Madagascar (2011),Documentary +100048,Omar Killed Me (Omar m'a tuer) (2011),Crime|Drama +100050,Enola Gay and the Atomic Bombing of Japan (1995),Documentary +100052,Red Hook Summer (2012),Drama +100054,Stella Maris (1918),Drama +100056,Die (2010),Thriller +100058,Patrice O'Neal: Elephant in the Room (2011),Comedy +100060,Sunny (Sseo-ni) (2011),Drama +100062,My Way (Mai Wei) (2011),Action|Drama|War +100068,Comme un chef (2012),Comedy +100070,Punching the Clown (2009),Comedy +100072,Metsän tarina (2012),Documentary +100075,Choose (2010),Crime|Drama|Horror +100077,Made in Hong Kong (Xiang Gang zhi zao) (1997),Crime|Drama|Romance +100079,Creature from Black Lake (1976) ,Drama|Horror|Mystery +100081,Bad Luck (Zezowate szczescie) (1960),Comedy +100083,Movie 43 (2013),Comedy +100085,"Iceman Tapes: Conversations with a Killer, The (1992)",Crime|Documentary +100087,Night of the Demons 2 (1994),Horror +100089,Star Wars Uncut: Director's Cut (2012),Action|Animation|Comedy|Sci-Fi|Western +100091,Hitler's Madman (1943),Drama|War +100093,Death Race 3: Inferno (2012),Action|Sci-Fi|Thriller +100096,Black White + Gray: A Portrait of Sam Wagstaff and Robert Mapplethorpe (2007) ,Documentary +100099,Pictures of the Old World (Obrazy starého sveta) (1972),Documentary +100101,Jean Gentil (2010),Drama +100103,Day and Night (Le jour et la nuit) (1997),Drama +100106,"Pervert's Guide to Ideology, The (2012)",Documentary +100108,Parker (2013),Crime|Thriller +100131,We the Party (2012),Comedy +100138,"Simple Life, A (Tao jie) (2011)",Drama +100141,Treacle Jr. (2010),Drama +100143,"End of Love, The (2012)",Drama +100145,Palms (Ladoni) (1994),Documentary +100147,"Act in Question, The (Acto en cuestión, El) (1993)",Drama +100150,"Color Wheel, The (2011)",Comedy|Romance +100155,"Green Wave, The (2010)",Documentary +100157,Gayby (2012),Comedy|Drama +100159,Sightseers (2012),Comedy +100161,Oppai Volleyball (Oppai barê) (2009),Comedy +100163,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX +100165,Kon-Tiki (1950),Adventure|Documentary +100167,Murder by Proxy: How America Went Postal (2010),Documentary +100169,After Porn Ends (2010),Documentary +100171,"Angélique, marquise des anges (1964)",Adventure|Romance +100173,Stonehenge Apocalypse (2010),Sci-Fi +100180,"Last Godfather, The (2010)",Comedy +100183,Portrait of Wally (2012),Documentary +100185,Starlet (2012),Drama +100188,Palme (2012),Documentary +100190,Poor Us: An Animated History of Poverty (2012),Animation|Documentary +100192,Ironclads (1991),Drama|Romance|War +100194,Jim Jefferies: Fully Functional (EPIX) (2012),Comedy +100196,Tom Petty and the Heartbreakers: Runnin' Down a Dream (2007),Documentary|Musical +100198,"Ah of Life, The (2010)",Drama|Romance|Sci-Fi +100200,Churchill: The Hollywood Years (2004),Comedy|War +100203,Sundome (2007),Comedy|Drama|Romance +100205,Godzilla vs. Gigan (Chikyû kogeki meirei: Gojira tai Gaigan) (1972),Action|Adventure|Horror +100208,"Music Man, The (2003)",Comedy|Drama|Musical|Romance +100210,"Wild Horse, Wild Ride (2011)",Documentary|Western +100222,God Save My Shoes (2011),Documentary +100226,Why Stop Now (2012),Comedy|Drama +100229,"Psychopath, The (1966)",Horror|Mystery +100232,"Not with My Wife, You Don't! (1966)",Comedy|Drama +100238,"Big Picture, The (L'homme qui voulait vivre sa vie) (2010)",Drama +100240,"Woman's Face, A (En kvinnas ansikte) (1938) ",Drama +100244,"East, The (2013)",Drama +100246,Pretty Sweet (2012),Documentary +100248,Lo (2009),Comedy|Horror|Romance +100251,"House of Seven Corpses, The (1974)",Horror +100253,Karlsson Brothers (Bröderna Karlsson) (2010),Comedy|Drama +100255,Confessions of a Driving Instructor (1976),Comedy +100257,Confessions from a Holiday Camp (1977),Comedy +100259,Kilometre Zero (Kilomètre zéro) (2005),Drama|War +100262,Tepenin Ardi (2012),Drama|Thriller +100264,Paziraie Sadeh (2012),Drama +100266,Day Is Done (2011),Documentary +100268,Un vampiro para dos (1965),Comedy|Horror +100270,Love Loves Coincidences (2011),Drama|Romance +100272,Snow White (Blancanieves) (2012),Drama +100275,Return (2011),Drama +100277,Tabu (2012),Drama|Romance +100287,Head Games (2012),Documentary +100289,"Pink Ribbons, Inc. (2011)",Documentary +100291,Ballplayer: Pelotero (2011),Documentary|Drama +100294,Désiré (1992),Comedy +100296,Den sommeren jeg fylte 15 (1976),Drama +100298,"Erotic Man, The (2010)",Drama +100300,"Wszystko, co kocham (2009)",Comedy|Drama +100302,Upside Down (2012),Drama|Romance|Sci-Fi +100304,"Liability, The (2012)",Action|Thriller +100306,Angst (1983),Drama|Horror +100308,Pressure Point (1962) ,Drama +100310,Butchered (2010),Horror +100312,On the Edge (Hak bak do) (2006),Crime|Drama +100315,2 Become 1 (Tin sun yut dui) (2006),Comedy|Drama|Romance +100322,"Baytown Outlaws, The (2012)",Action|Comedy|Crime +100324,LUV (2012),Drama +100326,Stand Up Guys (2012),Comedy|Crime +100328,Le grand soir (2012),Comedy +100330,Kukuli (1961),Drama +100332,"Land, The (Al-ard) (1969)",Drama +100334,Chouga (Shuga) (2007),Drama +100336,Udaan (2010),Drama +100338,"Life Apart: Hasidism in America, A (1997)",Documentary +100342,Hawking (2004),Drama +100344,No (2012),Drama +100347,Finding Joy (2013),Comedy +100356,Now Is Good (2012),Drama|Romance +100359,"Haunting in Connecticut 2: Ghosts of Georgia, The (2013)",Drama|Horror|Thriller +100361,"Adonis Factor, The (2010)",Documentary +100363,Resident Evil: Degeneration (Baiohazâdo: Dijenerêshon) (2008),Animation|Horror +100365,Call Me Kuchu (2012),Documentary +100368,No Man of Her Own (1950) ,Drama|Film-Noir +100370,Prinsessa (Starring Maja) (2009),Drama +100372,Miss Kicki (2009),Drama +100383,Side Effects (2013),Crime|Drama|Mystery|Thriller +100385,Midnight's Children (2012),Drama +100390,Identity Thief (2013),Comedy|Crime +100393,"Waiting Room, The (2007)",Drama|Romance +100395,Shadow People (2007),Drama +100397,"ABCs of Death, The (2012)",Horror +100401,21 tapaa pilata avioliitto (2013),Comedy|Romance +100404,Rainy Dog (Gokudô kuroshakai) (1997),Crime|Drama +100406,Perkele! Kuvia Suomesta (1971),Documentary +100408,Resident Evil: Damnation (2012),Action|Animation|Horror +100411,"Foreigner, The (1978)",Drama +100415,Days and Hours (Kod amidze Idriza) (2004),Drama +100419,Assault of the Sasquatch (Sasquatch Assault) (2009),Action|Horror +100421,Dancing in the Rain (Ples v dezju) (1961),Drama +100423,"Rage, The (2007)",Horror|Sci-Fi +100426,"Bang Bang Club, The (2010)",Drama +100436,"Gatekeepers, The (2012)",Documentary +100438,"Glimpse Inside the Mind of Charles Swan III, A (2012)",Comedy +100440,Lore (2012),Drama|Thriller|War +100442,Drogówka (2013),Comedy|Crime|Drama +100444,"Rumble in the Air-Conditioned Auditorium: O'Reilly vs. Stewart 2012, The (2012)",Comedy +100446,Sasquatch: The Legend of Bigfoot (1977),Adventure|Mystery +100448,Right America: Feeling Wronged - Some Voices from the Campaign Trail (2009) ,Documentary +100450,Battlestar Galactica: Blood & Chrome (2012),Sci-Fi +100452,"Devil's Tomb, The (2009)",Action|Horror|Sci-Fi|Thriller +100457,Game of Death (2010),Action|Adventure|Thriller +100463,Quackser Fortune Has a Cousin in the Bronx (1970),Comedy|Drama|Romance +100465,Can Heironymus Merkin Ever Forget Mercy Humppe and Find True Happiness? (1969),Comedy|Musical +100469,Chinese Zodiac (Armour of God III) (CZ12) (2012),Action|Adventure|IMAX +100483,"Playroom, The (2012)",Drama +100485,Unfinished Song (Song for Marion) (2012),Comedy|Drama|Romance +100487,Beautiful Creatures (2013),Drama|Fantasy|Romance +100490,Living Free (1972),Adventure|Children|Drama +100492,Ten Tall Men (1951),Action|Adventure|Comedy|War +100494,Incir Reçeli (2011),Drama|Romance +100496,Knucklehead (2010),Comedy|Drama +100498,"Good Day to Die Hard, A (2013)",Action|Crime|Thriller|IMAX +100503,I Thank a Fool (1962),Drama +100505,Monte Walsh (2003),Action|Adventure|Western +100507,21 and Over (2013),Comedy +100509,Tale of Tales (Skazka skazok) (1979),Animation +100511,"House Is Black, The (1963)",Documentary +100513,Mothlight (1963),Documentary +100515,War Witch (Rebelle) (2012),Drama|War +100517,"World Before Her, The (2012)",Documentary +100519,A.K.A. Don Bonus (1995),Documentary +100521,Who Killed Vincent Chin? (1987),Crime|Documentary +100527,Safe Haven (2013),Drama|Mystery|Romance +100529,Elles (2011),Drama +100534,In the Edges: The 'Grizzly Man' Session (2005) ,Documentary +100536,"Last Will of Dr. Mabuse, The (Testament du Dr. Mabuse, Le) (1933)",Crime|Horror|Mystery +100538,"Blue Angel, The (1930)",Drama|Musical +100540,Bronies: The Extremely Unexpected Adult Fans of My Little Pony (2012),Documentary +100553,Frozen Planet (2011),Documentary +100556,"Act of Killing, The (2012)",Documentary +100559,"Match King, The (1932)",Drama +100562,"Goddess of 1967, The (2000)",Comedy|Drama|Romance +100564,Åsa-Nisse - Wälkom to Knohult (2011),Comedy +100567,PressPausePlay (2011),Documentary +100570,U.S. Seals (2000),Action|Thriller +100574,Raid on Rommel (1971),War +100577,"Angel Levine, The (1970)",Comedy|Drama +100579,Universal Soldier: Day of Reckoning (2012),Action|Sci-Fi|Thriller +100581,Room 237 (2012),Documentary +100583,Arnulf Rainer (1960),Documentary +100585,"Above the Street, Below the Water (Over gaden under vandet) (2009)",Drama +100588,Amazing Johnathan: Wrong on Every Level (2006),Comedy +100591,"Mind Reader, The (1933)",Drama|Romance +100593,Benji (2012) ,Documentary +100595,To.get.her (2011),Drama|Mystery|Thriller +100611,Escape from Planet Earth (2013),Adventure|Animation|Comedy|Sci-Fi +100613,Saving Lincoln (2013),Drama +100617,Patton Oswalt: No Reason to Complain (2004),Comedy +100620,Bruna Surfistinha (2011),Drama +100629,Death of a Salesman (1966),Drama +100633,"Scarecrow, The (1972)",Drama|Fantasy|Romance +100645,Film Noir: Bringing Darkness to Light (2006),Documentary +100647,Helicopter String Quartet (1996),Documentary +100651,Breaking the Surface: The Greg Louganis Story (1997),Drama +100653,Salla: Selling the Silence (2010),Documentary +100655,"Cost of Oil: Voices from the Arctic, The (2009)",Documentary +100714,Before Midnight (2013),Drama|Romance +100717,"Oranges, The (2011)",Comedy|Drama|Romance +100719,Fake It So Real (2012),Documentary +100721,"Black Magic Rites & the Secret Orgies of the 14th Century (Riti, magie nere e segrete orge nel trecento...) (1973)",Horror +100723,How to Make a Monster (2001),Horror|Sci-Fi +100725,Which Way Home (2009),Documentary +100727,Heroine (2012),Drama +100729,Starship Troopers: Invasion (2012),Action|Animation|Sci-Fi|War +100731,Lucifer Rising (1972),Fantasy +100734,Escape (Flukt) (2012),Action|Drama +100737,Snitch (2013),Action|Drama|Thriller +100739,Black on White (Mustaa valkoisella) (1968),Drama +100741,Sixtynine (69) (1969),Drama +100743,Eye In The Sky (Gun chung) (2007),Crime|Thriller +100745,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary +100756,I aionia epistrofi tou Antoni Paraskeva (2013),Drama +100799,Living in Emergency: Stories of Doctors Without Borders (2008),Documentary +100810,Dark Skies (2013),Horror|Sci-Fi|Thriller +100823,Zig Zag (2002),Drama +100830,Blue Swallow (Cheong yeon) (2005),Drama|Romance +100836,Empty Nest (El nido vacío) (2008),Comedy|Drama +100838,I Am Jesus (2011),Documentary +100840,Marie Krøyer (2012),Drama +100843,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama +100882,Journey to the West: Conquering the Demons (Daai wa sai you chi Chui mo chun kei) (2013),Adventure|Comedy|Fantasy|Romance|IMAX +100884,Holy Wars (2010),Documentary +100902,911 in Plane Site (2004),Documentary +100904,Murder in Greenwich (2002),Crime|Drama|Mystery +100906,Maniac Cop 2 (1990),Action|Horror|Thriller +100942,Gunfighter's Moon (1997),Romance|Western +100944,"Movie, A (1958)",Documentary +100946,Fantomas (Fantômas - À l'ombre de la guillotine) (1913),Crime|Drama +100948,"Act of Seeing with One's Own Eyes, The (1971) ",Documentary +100951,På sista versen (1999),Comedy +101003,"Look, Up in the Sky! The Amazing Story of Superman (2006)",Documentary +101006,"Aral, Fishing in an Invisible Sea (2004)",Documentary +101016,"Suitor, The (Soupirant, Le) (1962)",Comedy +101018,Yo Yo (Yoyo) (1965),Comedy|Drama|Romance +101020,As Long as You've Got Your Health (Tant qu'on a la santé) (1966),Comedy +101025,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX +101058,East Meets West (Dung sing sai tsau 2011) (2011),Comedy +101060,"Last Exorcism Part II, The (2013)",Horror|Thriller +101062,Lenny Bruce: Swear to Tell the Truth (1998),Documentary +101064,Verboten! (1959),Action|Romance|War +101068,"Solitude of Prime Numbers, The (2010)",Drama +101070,Wadjda (2012),Drama +101072,"Unintentional Kidnapping of Mrs. Elfriede Ott, The (Die Unabsichtliche Entführung der Frau Elfriede Ott) (2010)",Comedy +101074,"Legend of Sleepy Hollow, The (1949)",Animation|Comedy|Horror|Musical +101076,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX +101079,Kiss Me (Kyss Mig) (2011),Drama|Romance +101086,My Name is Juani (Yo soy la Juani) (2006),Comedy|Drama +101088,Stoker (2013),Drama|Mystery|Thriller +101097,Phantom (2013),Thriller +101102,"Tale of Sweeney Todd, The (1997)",Crime|Drama|Horror|Thriller +101104,"Grand Amour, Le (1969)",Comedy|Romance +101106,Sound City (2013),Documentary +101112,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX +101114,"Net 2.0, The (2006) ",Action|Drama|Thriller +101123,Satan's Blood (Escalofrío) (1978),Horror +101127,Tripping the Rift: The Movie (2008),Animation|Comedy|Sci-Fi +101133,Fog City Mavericks (2007),Documentary +101137,Dead Man Down (2013),Action|Crime|Drama|Romance|Thriller +101142,"Croods, The (2013)",Adventure|Animation|Comedy +101146,Land of Milk and Honey (Pays de cocagne) (1971),Documentary +101148,"Thick-Walled Room, The (Kabe atsuki heya) (1953)",Drama|War +101150,I Will Buy You (Anata kaimasu) (1956),Drama +101156,This Movie Is Broken (2010),Drama|Romance +101158,Life 2.0 (2010),Documentary +101160,Sons of Perdition (2010),Documentary +101162,Last Call at the Oasis (2011),Documentary +101164,"Child, The (2012)",Thriller +101166,And Now the Screaming Starts! (1973),Horror|Thriller +101168,Wieners (2008),Comedy +101170,"Borrowers, The (2011)",Adventure|Children|Fantasy +101172,Suomisen Olli yllättää (1945),Drama +101176,First Person Plural (2000),Documentary +101178,First Target (2000),Action +101180,Age of the Dragons (2011),Action|Adventure|Fantasy +101182,"Trial of the Incredible Hulk, The (1989)",Action|Crime|Sci-Fi +101186,Populaire (2012),Comedy +101188,Central Park (1990),Documentary +101197,"Inheritance, The (Karami-ai) (1964)",Drama +101200,"Hello, Friend (2003)",Comedy|Horror +101204,"Hucksters, The (1947)",Drama +101207,Emperor (2012),Drama|War +101210,"Silence, The (Das letzte Schweigen) (2010)",Crime|Drama|Thriller +101212,"Girl, The (2012)",Drama +101214,Genghis Khan (1965),Adventure|Drama|War +101216,Shadow Boxers (1999),Documentary +101218,Leviathan (2012),Documentary +101220,Burn (2012),Documentary +101222,Elevator (2011) ,Thriller +101224,3some (Castillos de cartón) (2009),Drama|Romance +101226,Accomplices (Complices) (2009),Crime|Mystery +101233,"Glass Menagerie, The (1950)",Drama +101235,"Great Gatsby, The (1949)",Drama +101237,9500 Liberty (2009),Documentary +101239,Wild Guitar (1962),Drama|Musical|Romance +101241,"Sadist, The (1963)",Thriller +101243,Klip (Clip) (2012),Drama|Romance +101245,Herman's House (2012),Crime|Documentary +101247,Westward the Women (1951),Drama|Western +101249,"Thousand Cuts, A (2012)",Thriller +101258,Radio Rebel (2010),Drama +101260,StarStruck (2010),Comedy|Musical +101262,Geek Charming (2011),Comedy +101264,Elevator (2008),Comedy|Drama +101273,In Their Skin (2012),Horror|Thriller +101281,I Give It a Year (2013),Comedy|Romance +101283,"Incredible Burt Wonderstone, The (2013)",Comedy +101285,Spring Breakers (2013),Comedy|Crime|Drama +101287,"Red Spectacles, The (Jigoku no banken: akai megane) (1987)",Comedy|Drama|Sci-Fi +101289,Stray Dog: Kerberos Panzer Cops (Jigoku no banken: kerubersu) (1991),Comedy|Drama|Sci-Fi +101292,Abendland (2011),Documentary +101294,Shanghai Calling (2012),Comedy|Drama|Romance +101296,I'm So Excited (Los amantes pasajeros) (2013),Comedy +101299,"Finger, The (Dedo, El) (2011)",Comedy +101301,"Frozen, The (2012)",Horror|Thriller +101303,Amber Lake (2011) ,Drama|Thriller +101305,Unspeakable Acts (1990) ,Drama +101307,Árido Movie (2005),Drama +101319,Operation Daybreak (1975),War +101322,"Crossing, The (2000)",Drama|War +101329,Shining Night: A Portrait of Composer Morten Lauridsen (2012),Documentary +101335,Stolen Seas (2012),Adventure|Crime|Documentary +101337,"Snow Creature, The (1954)",Horror +101339,Snowbeast (1977),Horror +101341,"Atomic States of America, The (2012)",Documentary +101350,Miss Farkku-Suomi (2012),Drama|Romance +101352,I Am Comic (2010),Documentary +101355,Outlaw of Gor (1988),Action|Fantasy|Sci-Fi +101360,"Call, The (2013)",Drama|Thriller +101362,Olympus Has Fallen (2013),Action|Thriller +101373,"Wayward Bus, The (1957)",Drama +101375,Where Are My Children? (1916),Drama +101379,InAPPropriate Comedy (2013),Comedy +101381,Gregory Crewdson: Brief Encounters (2012),Documentary|Drama +101383,Blood Games (1990) ,Action|Thriller +101388,"Colder Kind of Death, A (2001)",Crime|Drama|Mystery +101398,"Greater Promise, A (Iskateli Schastya) (1936)",Crime|Drama|Western +101400,Abraham Lincoln (1930),Drama|War +101402,Riders of the Purple Sage (1996),Drama|Romance|Western +101405,Steep (2007),Documentary +101407,Laffghanistan: Comedy Down Range (2009),Comedy|Documentary|War +101409,Los Marziano (2011),Comedy|Drama +101413,My Brother the Devil (2012),Drama +101415,"First Time, The (2012)",Comedy|Drama|Romance +101423,Mezzo Forte (1998),Action|Animation|Comedy +101425,Company (2011),Drama|Musical +101428,Kill for Me (2013),Drama|Thriller +101431,"Christine Jorgensen Story, The (1970)",Drama +101433,Moving Out (1983),Drama +101439,"Inspectors, The (1998)",Crime|Mystery +101444,Big Bang in Tunguska (Das Rätsel von Tunguska) (2008),Documentary +101446,"Big Circus, The (1959)",Drama +101448,My Last Five Girlfriends (2009),Comedy +101450,"Kiss, The (1929)",Drama|Romance +101456,Trailer Park of Terror (2008),Horror|Thriller +101458,"Task, The (2011)",Horror +101466,2:22 (2008),Crime|Drama|Thriller +101468,"Cottage, The (2012)",Thriller +101470,Miguel and William (Miguel y William) (2007),Comedy|Romance +101472,"Brussels Business, The (2012)",Documentary|Thriller +101476,Big Girls Don't Cry... They Get Even (Stepkids) (1992),Comedy +101479,Curse of the Blair Witch (1999),Documentary|Horror|Thriller +101481,"Substitute, The (1993)",Drama|Thriller +101483,"Likeable Mister R, The (Simpaticul domn R) (1969)",Action|Crime|Thriller +101485,Upperworld (1934),Drama +101487,Storage (2009),Thriller +101498,In the House (2012),Comedy|Drama|Mystery|Thriller +101505,30 Beats (2012),Comedy|Romance +101508,"King Is Dead!, The (2012)",Comedy|Drama|Thriller +101510,Nazty Nuisance (1943),Action|Adventure|Comedy +101514,"Ungentlemanly Act, An (1992)",Action|Documentary|Drama|War +101525,"Place Beyond the Pines, The (2012)",Crime|Drama +101527,Into the White (Cross of Honour) (2012),Action|Drama|War +101529,"Brass Teapot, The (2012)",Comedy|Fantasy|Thriller +101531,Phil Spector (2013),Drama +101534,For the Love of a Dog (2008),Children +101536,Alabama Moon (2009),Adventure|Children|Drama +101538,Smitty (2012),Children|Drama +101577,"Host, The (2013)",Action|Adventure|Romance +101579,Ocean Heaven (2010) ,Drama +101581,Angel Dog (2011),Children|Drama +101583,"Best and the Brightest, The (2010)",Comedy +101585,Two Little Boys (2012),Comedy +101590,"Beautiful Life, A (2008)",Drama +101592,"Bird of the Air, A (Loop, The) (2011)",Drama|Romance +101595,"Breed Apart, A (1984)",Action|Drama +101597,"Bag of Hammers, A (2011)",Comedy|Drama +101599,"Good Doctor, The (2011)",Drama|Mystery|Thriller +101606,"Whale, The (2011)",Documentary +101612,Admission (2013),Comedy|Romance +101614,Riverworld (2010),Drama|Sci-Fi +101616,First Strike (1979),Documentary +101627,Confidential Agent (1945),Drama|Thriller +101629,"King - Jari Litmanen, The (Kuningas Litmanen) (2012)",Documentary +101632,18 Fingers of Death! (2006),Action|Comedy +101634,"Get2Gether, A (2005)",Comedy +101636,"Man Called Gannon, A (1968)",Western +101640,Don (2006),Action|Crime|Musical +101642,"Bunch Of Amateurs, A (2008)",Comedy +101646,Night Across the Street (La noche de enfrente) (2012),Drama +101648,"Flat, The (2011)",Documentary +101650,Patience (After Sebald) (2012),Documentary +101653,Magadheera (2009),Action|Adventure|Fantasy|Romance +101662,Three Way (2004),Crime|Drama|Thriller +101664,Hey Ram (2000),Drama +101666,"Night in Heaven, A (1983)",Drama|Romance +101670,'Twas the Night Before Christmas (1974),Animation|Children|Fantasy +101672,Dr. Dolittle 3 (2006),Children|Comedy|Fantasy +101674,Horror of the Zombies (1974),Horror +101678,Marvin Gaye: What's Going On (2005),Documentary +101680,Copper Mountain (1983),Comedy|Musical +101685,One Life (2011),Documentary +101687,Blue Caprice (2013),Crime|Drama +101689,Bad 25 (2012),Documentary +101692,Besa (Solemn Promise) (2009),Drama|Romance|War +101695,Hadersfild (Huddersfield) (2007),Drama +101703,Underground: The Julian Assange Story (2012),Drama +101706,Lush Life (1993),Drama|Musical +101708,009 Re: Cyborg (2012),Action|Animation|Sci-Fi +101710,Ace Attorney (Gyakuten saiban) (2012),Comedy|Crime|Drama +101713,On the Road to Emmaus (Emmauksen tiellä) (2001),Comedy|Drama|Musical +101715,Loaded (2008),Action|Crime|Drama|Thriller +101717,"Elusive Summer of '68, The (Varljivo leto '68) (1984)",Comedy|Drama|Romance +101719,Koi... Mil Gaya (2003),Action|Adventure|Fantasy|Sci-Fi +101726,Dinosaurus! (1960),Adventure|Comedy +101728,Miss Castaway and the Island Girls (2004),Adventure|Comedy|Fantasy +101730,Business as Usual (1988),Drama +101732,Thank God He Met Lizzie (1997),Comedy|Drama|Romance +101734,"Rough House, The (1917)",Comedy +101739,Evil Dead (2013),Horror +101741,Trance (2013),Crime|Thriller +101747,"War of the Gargantuas, The (Furankenshutain no kaijû: Sanda tai Gaira) (1968)",Horror|Sci-Fi +101749,"Machine That Kills Bad People, The (La Macchina Ammazzacattivi) (1952)",Comedy|Fantasy +101754,Chasing Beauty (2013),Documentary +101756,Killing Bono (2011),Comedy +101761,Welcome to the Punch (2013),Action|Adventure|Crime|Thriller +101763,My Awkward Sexual Adventure (2012),Comedy +101765,"Perfect Plan, A (Plan parfait, Un) (2012)",Adventure|Comedy|Romance +101767,"Familie, En (2010)",Drama +101770,Papadopoulos & Sons (2012),Comedy|Drama +101782,Better This World (2011),Documentary +101799,Americano (2005),Adventure|Comedy|Documentary +101801,"Skylab, Le (2011)",Comedy|Drama +101803,Putzel (2012),Comedy|Romance +101812,"Mountain, The (1956)",Adventure|Drama +101820,"Fighting Prince of Donegal, The (1966)",Action|Adventure +101823,Poor White Trash (2000),Comedy|Crime +101825,Year of the Jellyfish (L'année des méduses) (1984),Drama +101827,Don't Make Waves (1967),Comedy +101829,"King of Texas, The (2008)",Documentary +101833,About Face: Supermodels Then and Now (2012),Comedy|Documentary +101835,According to Spencer (2001),Comedy|Drama|Romance +101844,Hitler's Stealth Fighter (2009),Documentary +101846,One Lucky Elephant (2010),Documentary +101848,Racing Dreams (2009),Documentary +101850,Death on the Staircase (Soupçons) (2004),Crime|Documentary +101855,Shepard & Dark (2012),Documentary +101857,Teenage Paparazzo (2010),Documentary +101862,50 Children: The Rescue Mission of Mr. And Mrs. Kraus (2013),Documentary +101864,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX +101870,Nazis at the Center of the Earth (2012),Action|Adventure|Horror|Thriller +101872,"Fourth State, The (Die vierte Macht) (2012)",Thriller +101878,God's Puzzle (Kamisama no pazuru) (2008),Drama|Sci-Fi +101880,Siberian Education (Educazione siberiana) (2013),Drama +101884,Dark Tide (2012),Adventure|Drama|Thriller +101887,Bernice Bobs Her Hair (1976),Comedy|Drama +101891,Bones Brigade: An Autobiography (2012),Documentary +101893,To the Wonder (2013),Drama|Romance +101895,42 (2013),Drama +101897,"Prodigal Son, The (Tuhlaajapoika) (1992)",Thriller +101902,Ladybug Ladybug (1963) ,Drama +101904,Happy (2011),Documentary|Drama +101908,"Truth of Lie, The (Die Wahrheit der Lüge) (2011)",Drama|Thriller +101916,"Castle of Cloads, The (Pilvilinna) (1970)",Comedy|Drama +101918,Bhutto (2010),Documentary +101920,Black Rose Ascension (Kurobara shôten) (1975),Drama +101922,E Aí... Comeu? (2012),Comedy +101924,Undefeatable (1993),Action +101926,"Burning Bed, The (1984)",Drama +101935,"Lawless Street, A (Marshal of Medicine Bend) (1955)",Western +101938,Across the Wide Missouri (1951),Adventure|Romance|Western +101940,Seeking Asian Female (2012),Documentary +101942,Love Is All You Need (Den skaldede frisør) (2012),Comedy|Drama|Romance +101944,Downeast (2012),Documentary +101947,From the Sky Down (2011),Documentary +101952,Afghan Luke (2011),Drama +101954,Alex in Wonderland (1970),Comedy|Drama +101957,Carne de gallina (Chicken Skin) (2002),Comedy +101962,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy +101964,Mugabe and the White African (2009),Documentary +101967,Battle in Outer Space (1959),Adventure|Sci-Fi +101969,Tesla: Master of Lightning (2000),Documentary +101971,Never Sleep Again: The Elm Street Legacy (2010),Documentary +101973,Disconnect (2012),Drama|Thriller +101975,iSteve (2013),Comedy +101979,All American Orgy (Cummings Farm) (2009),Comedy +101984,"Colors of the Mountain, The (Los colores de la montaña) (2010)",Drama +101986,"Eternal Return, The (L'éternel retour) (1943)",Drama|Romance +101989,Konga (1961),Horror|Sci-Fi +101991,"H-Man, The (Bijo to Ekitainingen) (1958)",Horror|Mystery|Sci-Fi|Thriller +101997,Scary Movie 5 (Scary MoVie) (2013),Comedy +101999,Last Cowboy Standing (Skavabölen pojat) (2009),Drama +102005,Like Someone In Love (2012),Drama +102007,"Invincible Iron Man, The (2007)",Animation +102009,Thor: Tales of Asgard (2011),Animation +102012,Before Your Eyes (Min Dit: The Children of Diyarbakir) (2009),Drama +102025,Yongary: Monster from the Deep (1967),Children|Horror|Sci-Fi +102028,To the Arctic (2012),Documentary|IMAX +102033,Pain & Gain (2013),Action|Comedy|Crime +102035,"Holding, The (2011)",Horror|Thriller +102037,Breaking Wind (2011),Comedy +102039,"Taming of the Shrew, The (1980)",Comedy +102047,"Bride Came C.O.D., The (1941)",Comedy|Romance +102049,Mexican Hayride (1948),Comedy +102051,Iron Man: Rise Of Technovore (2013),Animation +102058,Hulk Vs. (2009),Animation +102060,Planet Hulk (2010),Animation|Sci-Fi +102062,"Band Called Death, A (2012)",Documentary +102064,Home Run (2013),Drama +102066,Resolution (2012),Horror|Thriller +102070,Grabbers (2012),Comedy|Horror|Sci-Fi +102072,"Erased (Expatriate, The) (2012)",Action|Thriller +102078,Albino Farm (2009),Horror +102084,Justice League: Doom (2012) ,Action|Animation|Fantasy +102086,Living on One Dollar (2013),Adventure|Documentary|Drama +102088,"Grandmaster, The (Yi dai zong shi) (2013)",Action|Drama|IMAX +102090,"Magnetic Monster, The (1953)",Sci-Fi +102093,After Office Hours (1935),Comedy|Crime|Drama +102101,American Kickboxer (American Kickboxer 1) (1991),Action +102103,American Kickboxer 2 (American Kickboxer 2: To the Death) (1993),Action +102107,American Winter (2013),Documentary|Drama +102109,Polly of the Circus (1932),Comedy|Drama|Fantasy +102111,Going to Pieces: The Rise and Fall of the Slasher Film (2006),Documentary +102113,One-Eyed Monster (2008),Comedy|Horror|Sci-Fi +102115,Prinsessa Ruusunen (1949),Children|Fantasy|Romance +102119,Yesterday Was a Lie (2008),Drama|Film-Noir|Mystery|Romance|Sci-Fi +102121,Sofia's Last Ambulance (Poslednaka lineika na Sofia) (2012),Documentary +102123,This Is the End (2013),Action|Comedy +102125,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX +102127,Miss Austen Regrets (2008),Drama +102131,Valentino (1977),Drama +102133,Revolution (2012),Adventure|Documentary +102138,"Black Camel, The (Charlie Chan in the Black Camel) (1931)",Crime|Drama|Horror|Mystery|Thriller +102152,Middle of Nowhere (2008),Comedy|Drama +102154,Superman Unbound (2013),Action|Adventure|Animation +102156,Zombies of the Stratosphere (1952),Adventure|Sci-Fi|Thriller +102158,Three Degrees Colder (3° kälter) (2005),Drama|Romance +102160,"Numbers Station, The (2013)",Action|Thriller +102165,"English Teacher, The (2013)",Comedy|Drama +102167,Standing Up (2013),Adventure|Children +102171,Late Autumn (Man-choo) (2010),Drama|Romance +102174,Day of the Falcon (2011),Adventure|Drama +102176,"Late Great Planet Earth, The (1979)",Documentary|Drama +102178,"Better Way to Die, A (2000)",Action|Thriller +102180,Casanova's Big Night (1954),Adventure|Comedy +102188,Tunnel Rats (1968 Tunnel Rats) (2008),Action|Drama|War +102190,"20,000 Leagues Under the Sea (1997)",Adventure|Romance|Sci-Fi +102194,Mud (2012),Adventure|Crime|Drama +102197,"Entrepreneur, The (L'industriale) (2011)",Drama +102199,Chariots of the Gods (Erinnerungen an die Zukunft) (1970),Documentary +102201,"Human Tornado, The (1976)",Action|Comedy +102208,Aces 'N' Eights (2008),Action|Adventure|Drama|Romance|Western +102210,After the Storm (2001),Action|Crime|Thriller +102213,"Tenth Man, The (1988)",Drama|War +102217,Bill Hicks: Revelations (1993),Comedy +102219,Perils of the Sentimental Swordsman (1982),Action|Adventure|Fantasy +102221,War of the Shaolin Temple (Shao Lin shi san gun seng) (1980),Action|Adventure|War +102224,Majesteit (2010),Drama +102231,Dragon (Wu Xia) (2011),Action|Drama +102233,"Verlorene, Der (Lost One, The) (1951)",Crime|Drama|Thriller +102235,Manhunt (2013),Documentary|War +102242,Cheerful Weather for the Wedding (2012),Comedy|Drama +102245,Small Apartments (2012),Comedy|Crime|Drama +102248,Holy Flame of the Martial World (1983),Adventure|Comedy|Fantasy +102250,"Web of Death, The (1976)",Action|Adventure|Fantasy|Horror +102252,Legendary Weapons of China (1982),Action|Adventure +102263,Ju-on: White Ghost (2009),Horror +102265,Ju-on: Black Ghost (2009),Horror +102267,Daniel Deronda (2002),Drama|Romance +102269,"South Shaolin Master, The (Nan quan wang) (1984)",Action|Adventure|Drama +102273,Cold Steel (1987),Action|Thriller +102275,"Afflicted, The (2010)",Horror|Thriller +102278,Pawn (2013),Crime|Thriller +102280,Manborg (2011),Action|Adventure|Comedy +102282,Bajo la Sal (Under the Salt) (2008),Mystery|Thriller +102284,"Henry IV, Part I (First Part of King Henry the Fourth, with the Life and Death of Henry Surnamed Hotspur, The) (1979)",Drama +102286,Family Weekend (2013),Comedy|Drama +102290,"Woman Who Wasn't There, The (2012)",Documentary +102294,"Scapegoat, The (2012)",Drama +102297,8:46 (2011),Drama +102299,Hungry for Change (2012),Documentary +102303,Hardboiled Egg (Ovosodo) (1997),Comedy|Drama +102305,"Henry IV, Part II (Second Part of King Henry the Fourth, including his death and the coronation of King Henry the Fifth, The) (1979)",Drama +102323,"Grin Without a Cat, A (Fond de l'air est rouge, Le) (1977)",Documentary +102325,Number Two (Numéro deux) (1975),Drama +102327,Empire (1964),Documentary +102332,American Bandits: Frank and Jesse James (2010),Western +102338,Shaolin Temple (Shao Lin si) (1976),Action|Adventure|Drama +102340,"Sentimental Swordsman, The (To ching chien ko wu ching chien) (1977)",Action|Adventure +102342,Descendant of the Sun (Ri jie) (1983),Action|Adventure|Fantasy|Sci-Fi +102350,"Brooklyn State of Mind, A (1998)",Action|Crime|Drama +102352,"Three and Out (Deal Is a Deal, A) (2008)",Comedy|Drama +102354,About Cherry (2012),Drama +102356,Sushi Girl (2012),Crime|Mystery|Thriller +102360,Where the Road Meets the Sun (2011),Crime|Drama +102364,Airspeed (1999),Action|Adventure|Drama|Thriller +102367,Rich and Famous (Gong woo ching) (1987),Action|Crime|Drama +102369,"Arrested Development Documentary Project, The (2013)",Documentary +102371,"Awful Dr. Orlof, The (Gritos en la Noche) (1962)",Horror|Thriller +102373,"Tomorrow, the World! (1944)",Drama +102376,Enter the Phoenix (Da lao ai mei li) (2004),Action|Comedy +102378,Syrup (2013),Comedy|Drama +102388,"Candy Snatchers, The (1973)",Crime|Thriller +102390,Fortress 2 (2000),Action|Sci-Fi +102396,"Woman in the Fifth, The (Femme du Vème, La) (2011)",Drama|Mystery|Thriller +102399,Dangerous Corner (1934),Mystery +102403,"Intruder, The (1999)",Drama|Mystery|Romance|Thriller +102407,"Great Gatsby, The (2013)",Drama +102411,Hurt (2009),Drama|Horror|Thriller +102413,How Much Wood Would a Woodchuck Chuck (Beobachtungen zu einer neuen Sprache) (1976),Documentary +102415,Hyenas (Hyènes) (1992),Comedy|Drama +102417,Sicily! (Sicilia!) (1999),Drama +102419,Lesson Plan (2011) ,Documentary +102421,Seven Billiard Tables (Siete mesas de billar francés) (2007),Drama +102425,Lady Terminator (Pembalasan ratu pantai selatan) (1989),Action|Adventure|Horror|Sci-Fi|Thriller +102429,"Little Thief, The (La petite voleuse) (1988)",Crime|Drama|Romance +102432,"Blueprint for Murder, A (1953)",Film-Noir|Mystery|Thriller +102434,"Huey P. Newton Story, A (2001)",Documentary +102436,"Affair of the Heart, An (2012)",Documentary +102443,My Sucky Teen Romance (2011),Comedy +102445,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX +102447,Sweet Home (1989),Horror +102450,"Last Chance: Diary of Comedians, The (Bokutachi no koukan nikki) (2013)",Comedy|Drama +102459,Andrew Dice Clay: Indestructible (2012),Comedy +102461,Angels Don't Sleep Here (Backflash 2: Angels Don't Sleep Here) (2002),Thriller +102463,Foreverland (2011),Drama +102469,Wish You Were Here (2012),Drama|Mystery +102477,Tales of Vesperia: The First Strike (Teiruzu obu vesuperia: The first strike) (2009),Animation +102479,Reincarnated (2012),Adventure|Documentary +102481,"Internship, The (2013)",Comedy +102483,Bliss (Mutluluk) (2007),Drama +102485,La Soufrière - Warten auf eine unausweichliche Katastrophe (1977),Documentary +102487,"Man with a Cloak, The (1951)",Drama|Thriller +102495,Spine Tingler! The William Castle Story (2007),Documentary +102497,Last Stand At Saber River (1997),Western +102499,"Flaying, The (El Bosque de los Sometidos) (2012)",Fantasy|Horror|Thriller +102509,"Secret Six, The (1931)",Crime +102514,"Corsican File, The (L'enquête corse) (2004)",Action|Comedy|Crime +102517,Zatoichi Meets Yojimbo (Zatôichi to Yôjinbô) (Zatôichi 20) (1970),Action|Adventure|Drama +102521,Deep in the Valley (American Hot Babes) (2009),Comedy +102523,To Be King (Koning van Katoren) (2012),Adventure +102526,Tokyo Trial (Tokyo saiban) (1983),Documentary +102529,"Harvest: 3,000 Years (Mirt Sost Shi Amit) (1976)",Drama +102533,My Fake Fiance (2009),Comedy|Romance +102535,Sissi: The Young Empress (Sissi - Die Junge Kaiserin) (1956),Drama +102541,As You Like It (1978),Comedy +102544,Below the Belt (1980),Action|Comedy|Drama +102553,"Aries Spears: Hollywood, Look I'm Smiling (2011)",Comedy +102557,Kiss of the Damned (2012),Horror|Romance|Thriller +102588,Stories We Tell (2012),Documentary +102590,Darkon (2006),Documentary|Fantasy +102596,180° South (180 Degrees South) (180° South: Conquerors of the Useless) (2010),Documentary|Drama +102598,After Alice (Eye of the Killer) (2000),Crime|Drama|Mystery|Thriller +102602,Mimino (1977),Comedy +102604,"Jeffrey Dahmer Files, The (2012)",Crime|Documentary +102606,Drowsiness (Sennosc) (2008),Drama +102660,Cycling with Moliere (Alceste à bicyclette) (2013),Comedy|Drama +102662,Company of Heroes (2013),Action|War +102664,Three Smart Girls Grow Up (1939),Comedy|Musical|Romance +102666,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy +102672,New York: A Documentary Film (1999),Documentary +102675,"Dead Man and Being Happy, The (El muerto y ser feliz) (2012)",Drama +102677,"Players, The (Les infidèles) (2012)",Comedy +102682,Livid (Livide) (2011),Fantasy|Horror +102684,Only God Forgives (2013),Drama|Thriller +102686,"Hangover Part III, The (2013)",Comedy +102688,Garbo the Spy (Garbo: El espía) (2009),Documentary|War +102716,"Fast & Furious 6 (Fast and the Furious 6, The) (2013)",Action|Crime|Thriller|IMAX +102720,Epic (2013),Adventure|Animation|Fantasy +102735,Captain America (1979),Action|Drama +102739,"Four Seasons (Seasons, The) (Vremena goda) (1975)",Documentary +102742,Tie Xi Qu: West of the Tracks (Tiexi qu) (2003),Documentary +102744,Night at the Crossroads (La nuit du carrefour) (1932),Crime|Drama|Mystery +102747,"Rink, The (1916)",Comedy +102749,Captain America II: Death Too Soon (1979),Action|Crime +102751,Bastards of the Party (2005),Documentary +102753,"Past, The (Le passé) (2013)",Drama|Mystery|Romance +102758,Lathe of Heaven (2002),Sci-Fi +102760,Down Terrace (2009),Comedy|Crime|Drama +102762,My Wrongs 8245-8249 and 117 (2002),Comedy|Drama +102765,Bush Mama (1979),Drama +102777,"Surrender, Dorothy (2006)",Drama +102779,"Twonky, The (1953)",Comedy|Sci-Fi +102781,"Merchant of Venice, The (1980)",Comedy|Drama +102783,"Loss of a Teardrop Diamond, The (2008)",Drama +102792,"Broken Circle Breakdown, The (2012)",Drama +102794,After School Midnighters (Hôkago middonaitâzu) (2012),Action|Animation|Children|Comedy|Fantasy +102796,Life Back Then (Antoki no inochi) (2011),Drama|Romance +102798,"Devil's Carnival, The (2012)",Horror|Musical +102800,Frances Ha (2012),Comedy|Drama +102802,"Lords of Salem, The (2012)",Horror|Thriller +102804,Up Periscope (1959),Action|Drama|War +102807,Alive and Ticking (Ein Tick anders) (2011),Comedy|Drama +102817,Cell Count (2012),Horror|Sci-Fi +102819,Behind the Candelabra (2013),Drama +102821,India: Matri Bhumi (1959),Documentary|Drama +102823,As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty (2000),Documentary +102826,"Parade, The (Parada) (2011)",Comedy|Drama +102828,L.A. Zombie (2010),Horror +102830,Firecracker (2005),Crime|Drama|Mystery +102841,At the River I Stand (1993),Documentary +102843,Attack of the 5 Ft. 2 Women (National Lampoon's Attack of the 5 Ft 2 Woman) (1994),Comedy +102845,Babies for Sale (1940),Crime|Drama +102848,Armageddon 2012 (2012),Sci-Fi +102850,Finding a Family (2011),Drama +102852,With Great Power: The Stan Lee Story (2012),Documentary +102854,Aftershock (2012),Horror|Thriller +102856,3096 Days (2013),Drama +102858,Tavarataivas (2013),Documentary +102860,Hilton! (2013),Documentary +102862,"Human Scale, The (2012)",Documentary +102868,Privilege (1967),Drama|Musical +102870,Little Girl (La pivellina) (2009),Drama +102874,"Last Elvis, The (Último Elvis, El) (2012)",Drama +102876,Last Days Here (2011),Documentary +102880,After Earth (2013),Action|Adventure|Sci-Fi|IMAX +102882,Dream Demon (1988),Horror +102895,Fairhaven (2012),Drama +102897,Derek (2008),Documentary +102899,Sharon's Baby (1975),Horror +102901,In the Park (1915),Comedy +102903,Now You See Me (2013),Crime|Mystery|Thriller +102905,Lovelace (2013),Drama +102908,"Dangerous Place, A (2012)",Thriller +102910,Modify (2005) ,Documentary +102912,Hiroshima (2005) ,Documentary +102917,War Made Easy: How Presidents & Pundits Keep Spinning Us to Death (2007),Documentary|War +102920,Dark Circles (2013) ,Horror +102922,Assault on Wall Street (2013) ,Drama|Thriller +102924,Interview with a Hitman (2012),Action|Thriller +102941,Special Forces (Forces spéciales) (2011),Action|Drama|War +102943,Feeding Frenzy (2010),Comedy|Horror +102949,Age of Heroes (2011),Action|Adventure|Drama|Thriller|War +102951,All In: The Poker Movie (2009),Documentary +102953,Nice Guy Johnny (2010),Comedy|Romance +102956,Take Me Home (2011),Comedy|Romance +102961,"Ideal Husband, An (1947)",Comedy +102963,Any Wednesday (Bachelor Girl Apartment) (1966),Comedy +102965,Attack on the Iron Coast (1968),Action|Drama|War +102967,"Combat dans L'Ile, Le (Fire and Ice) (1962)",Drama +102969,"Era of Vampires, The (2003)",Action|Horror +102972,"East, West, East: The Final Sprint (2009)",Comedy|Drama +102974,Somebody Up There Likes Me (2012),Comedy|Drama|Romance +102976,Dances Sacred and Profane (1985),Documentary +102978,Mary and Martha (2013),Drama +102980,Opera Jawa (2006),Musical +102984,Inhuman Resources (Redd Inc.) (2012),Horror|Thriller +102986,Rapado (1992),Drama +102989,"Color of Friendship, The (2000)",Comedy|Drama +102991,Berberian Sound Studio (2012),Drama|Horror|Thriller +102993,"Way, Way Back, The (2013)",Comedy|Drama +102995,Foxfire (2012),Drama +102997,Vasermil (2007),Drama +103003,Whole (2003),Documentary +103006,Penthouse (1933),Comedy|Crime|Drama +103008,Come Out and Play (2012),Horror +103010,Just Like Brothers (Comme des frères) (2012),Comedy|Drama|Romance +103017,The Body (2012),Mystery|Thriller +103022,Eu Não Quero Voltar Sozinho (I Don't Want to Go Back Alone) (2010),Drama|Romance +103027,Much Ado About Nothing (2012),Comedy|Drama|Romance +103030,Any Day Now (2012),Drama +103032,They Call Us Misfits (Dom kallar oss mods) (1968),Documentary +103036,No and Me (No et moi) (2010),Drama +103040,His New Profession (1914),Comedy +103042,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX +103044,Shanghaied (1915),Comedy +103048,"Kings of Summer, The (2013)",Comedy +103050,Pyaar Ka Punchnama (2011),Comedy|Drama|Romance +103052,London Paris New York (2012),Romance +103055,The Big Wedding (2013),Comedy +103057,Still Mine (2012),Drama +103059,Hannah Arendt (2012),Drama +103064,"Otra Familia, La (2011)",Drama +103066,"Birders: The Central Park Effect (Central Park Effect, The) (2012)",Documentary +103068,41 (2012),Documentary +103071,Bakhita (2009),Drama +103075,"Purge, The (2013)",Crime|Horror|Thriller +103078,"Neighbor, The (1993)",Horror|Thriller +103081,God Bless Ozzy Osbourne (2011),Documentary +103083,"Reluctant Fundamentalist, The (2012)",Drama +103085,Rapture-Palooza (2013),Comedy|Fantasy +103087,Landet som icke är (1977),Drama +103089,100 Years of Evil (2010),Adventure|Comedy|Documentary +103091,Speed: In Search of Lost Time (Speed - Auf der Suche nach der verlorenen Zeit) (2012),Documentary +103101,Après lui (2007),Drama +103103,"Witches, The (aka Devil's Own, The) (1966)",Horror +103105,Tetsuo III: The Bullet Man (2009),Action|Horror|Sci-Fi +103107,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary +103112,Perfumed Nightmare (1977),Comedy|Drama +103114,Far Out Man (1990),Comedy +103116,Out Late (2008) ,Documentary +103118,Bad Blood: A Cautionary Tale (2010) ,Documentary +103120,Beverly Hills Chihuahua 3 (2012),Adventure|Children|Comedy +103130,AM1200 (2008),Horror +103132,"Executioner, The (1970)",Drama|Thriller +103135,Looking for Palladin (2008),Comedy +103137,"Bling Ring, The (2013)",Crime|Drama +103139,"Mugger, The (El asaltante) (2007)",Drama +103141,Monsters University (2013),Adventure|Animation|Comedy +103143,Donos de Portugal (2012),Documentary +103150,Hammer of the Gods (2013),Action +103164,"Beginner's Guide to Endings, A (2010)",Comedy|Drama +103166,"War You Don't See, The (2010)",Documentary +103171,Schlussmacher (2013),Comedy +103175,From the East (D'Est) (1993),Documentary +103177,Ill-Fated Love (Doomed Love) (Amor de Perdição) (1979),Drama|Romance +103182,Julius Caesar (1979),Drama +103186,Wedding Trough (Vase de noces) (1975),Horror|Romance +103190,Oblivion Island: Haruka and the Magic Mirror (Hottarake no shima - Haruka to maho no kagami) (2009),Adventure|Animation|Fantasy +103203,Eden (2012),Crime|Drama +103206,Days of Grace (Días de gracia) (2011) ,Thriller +103208,"Place at the Table, A (2012)",Documentary +103210,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation +103212,American Idiots (2013),Comedy|Romance +103219,Maniac (2012),Horror|Thriller +103221,Not Suitable for Children (2012),Comedy|Romance +103224,"Lesser Blessed, The (2012)",Drama +103226,"Common Man, A (2012)",Action|Thriller +103228,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX +103233,LEGO Batman: The Movie - DC Heroes Unite (2013),Action|Adventure|Animation +103235,"Best Offer, The (Migliore offerta, La) (2013)",Thriller +103237,Sassy Pants (2012),Comedy|Drama +103241,"Flea in Her Ear, A (1968)",Comedy +103243,Ada (1961),Drama +103245,Adam and Eve (National Lampoon's Adam & Eve) (2005),Comedy|Drama|Romance +103249,World War Z (2013),Action|Drama|Horror|IMAX +103253,Elysium (2013),Action|Drama|Sci-Fi|IMAX +103255,Dirty Wars (2013),Documentary|War +103257,"Reality of Love, The (I Want to Marry Ryan Banks) (2004)",Comedy|Romance +103259,K-911 (1999),Action|Comedy|Crime +103266,Mr. Moto's Gamble (1938),Crime|Drama|Mystery +103269,Unconditional (2012),Drama +103271,Sign 'o' the Times (1987),Documentary|Musical +103273,Just Before Dawn (1981),Horror +103275,We Steal Secrets: The Story of WikiLeaks (2013),Documentary +103277,Hatfields & McCoys (2012),Drama|Romance +103279,What Maisie Knew (2012),Drama +103282,Dragon Hunter (2009),Action|Adventure|Fantasy +103286,Shark Alarm at Müggelsee (Hai Alarm am Müggelsee) (2013),Comedy +103288,"Revisionaries, The (2012)",Documentary +103290,"Anniversary, The (1968)",Comedy|Drama|Horror|Thriller +103292,"Purple Gang, The (1959)",Crime|Drama +103294,"Death of Maria Malibran, The (Der Tod der Maria Malibran) (1972)",Comedy|Drama|Fantasy|Musical +103296,Minamata: The Victims and Their World (Minamata: Kanja-san to sono sekai) (1971),Documentary +103299,American Mary (2012),Horror|Thriller +103301,Liz & Dick (2012) ,Drama +103303,Yamla Pagla Deewana 2 (2013),Action|Comedy|Drama +103306,Europa Report (2013),Sci-Fi|Thriller +103308,Känd från TV (2001),Comedy +103315,Odd Thomas (2013),Drama|Fantasy|Mystery|Thriller +103317,Cigarettes and Coffee (Un cartus de kent si un pachet de cafea) (2004),Drama +103319,Jim Gaffigan: Mr. Universe (2012),Comedy +103322,"Projectionist, The (1971)",Comedy|Drama|Fantasy +103324,"Vampire, The (1957)",Horror|Sci-Fi|Thriller +103328,Love Ghost (Shibito no koiwazura) (2001),Horror +103330,"Sound of Insects, The (2009)",Adventure|Documentary|Drama|Mystery|Thriller +103333,Blutzbrüdaz (2013),Comedy +103335,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX +103339,White House Down (2013),Action|Drama|Thriller|IMAX +103341,"World's End, The (2013)",Action|Comedy|Sci-Fi +103343,Keith Lemon: The Film (2012),Comedy +103359,"Tempest, The (1980)",Comedy|Drama|Fantasy +103361,Back to 1942 (2012) ,Drama|IMAX +103363,Aks (2001),Thriller +103366,Redemption (Hummingbird) (2013),Action|Crime|Thriller +103368,Love and Lemons (Små citroner gula) (2013),Romance +103370,"Hounds, The (2011)",Crime|Horror|Thriller +103372,"Heat, The (2013)",Action|Comedy|Crime +103374,May I Kill U? (2012),Comedy|Horror|Thriller +103380,A Coming-Out Party (1961),Comedy|Drama +103382,"Last Seven, The (2010)",Horror|Mystery|Thriller +103384,"Lone Ranger, The (2013)",Action|Adventure|Western|IMAX +103386,Happiness Never Comes Alone (Un bonheur n'arrive jamais seul) (2012),Comedy|Romance +103388,My Perestroika (2010),Documentary +103406,"Millionaire for Christy, A (Golden Goose) (No Room for the Groom) (1951)",Comedy|Romance +103411,"Doctor and the Devils, The (1985)",Drama|Horror +103413,Flicker (Flimmer) (2012),Comedy|Drama +103418,Hong Kong Confidential (Amaya) (2010),Drama +103420,Life Without Dick (2002),Comedy|Crime|Romance +103422,"Beach Boys: An American Family, The (2000)",Documentary|Drama +103424,Hypocrites (1915),Drama|Fantasy +103433,"Grandpa for Christmas, A (Bert & Becca) (2007)",Comedy|Drama +103435,"Ah, Wilderness! (1935)",Comedy|Drama +103437,Crossfire Trail (Louis L'Amour's 'Crossfire Trail') (2001),Action|Western +103439,"Thieves, The (Dodookdeul) (2012)",Action|Crime +103444,Woody Allen: A Documentary (2012),Documentary +103446,Epitaph (2007),Horror +103449,Passion (2012),Crime|Drama|Mystery|Thriller +103452,Pussy Riot: A Punk Prayer (2013),Documentary +103454,Batman Unmasked: The Psychology of the Dark Knight (2008),Documentary +103460,Ghoulies III: Ghoulies Go to College (1991),Comedy|Horror +103462,Ghoulies IV (1994),Comedy|Horror +103465,Call Girl (2012),Drama|Thriller +103472,Alive Day Memories: Home from Iraq (Occupation Iraq) (2007),Documentary +103474,How to Make Money Selling Drugs (2013),Documentary +103476,"Stig-Helmer Story, The (2011)",Comedy|Drama +103478,"Ice House, The (1997)",Drama|Mystery|Thriller +103481,Return of the Living Dead: Necropolis (2005),Comedy|Horror +103483,V/H/S/2 (2013),Horror|Thriller +103487,Return of the Living Dead: Rave to the Grave (2005),Comedy|Horror +103489,Arctic Blast (2010),Sci-Fi|Thriller +103493,Gideon's Army (2013),Documentary +103498,Double Solitaire (1974),Drama +103500,Macbeth (1983),Drama +103502,"Knot, The (2012)",Comedy|Romance +103506,Cottage Country (2013),Action|Comedy|Crime +103515,"Along the Great Divide (Travelers, The) (1951)",Adventure|Romance|Western +103517,Ambush Trail (1946),Action|Western +103519,American Samurai (Ninja: American Samurai) (1992),Action +103521,Food Matters (2008),Documentary +103523,Charm School (Niñas mal) (2007),Comedy +103525,Ichi (2008),Action +103528,"Shadow Riders, The (1982)",Romance|Western +103534,Inadequate People (Neadekvatnye lyudi) (2010),Comedy|Romance +103536,Kid Millions (1934),Comedy|Musical +103539,The Spectacular Now (2013),Comedy|Drama|Romance +103541,Thanks for Sharing (2012),Comedy|Drama +103543,"Lifeguard, The (2013)",Comedy|Drama +103545,Ed Hardy: Tattoo the World (2010) ,Documentary +103547,Vile (2011) ,Horror +103549,"What's in a Name (Prénom, Le) (2012)",Comedy +103551,Partners: The Movie II (Aibô: Gekijô-ban II) (2010),Drama +103554,"Hijacking, A (Kapringen) (2012)",Drama|Thriller +103557,Tell Me and I Will Forget (2010),Documentary +103559,Trilogy of Terror II (1996),Horror +103561,Big Star: Nothing Can Hurt Me (2012),Documentary +103563,Which Way Is the Front Line From Here? The Life and Time of Tim Hetherington (2013),Documentary +103567,It's a Bikini World (1967),Comedy +103570,Dead Man's Burden (2012),Western +103572,Downloaded (2013),Documentary +103574,Jug Face (2013),Horror +103576,Chu Chin Chow (1934),Comedy|Fantasy|Musical +103590,Gagarin: First in Space (2013),Drama|Sci-Fi +103593,Taming the Fire (Ukroshcheniye ognya) (1972),Documentary|Drama|Sci-Fi +103596,Sharknado (2013),Sci-Fi +103598,"Hamlet, Prince of Denmark (1980)",Drama +103600,Please Remove Your Shoes (2010) ,Documentary +103602,Craig Ferguson: I'm Here To Help (2013),Comedy|Documentary +103604,Cold Moon (Lune froide) (1991),Comedy|Drama +103606,Stuck in Love (2012),Comedy|Drama|Romance +103609,Class Act (1992),Comedy +103611,How to Live Forever (2009),Documentary +103614,Topralli (1966),Comedy +103617,ATF (1999) ,Drama|Thriller +103619,"Accidental Golfer, The (Den ofrivillige golfaren) (1991)",Comedy +103621,Brain Dead (1990),Horror|Sci-Fi +103624,Fruitvale Station (2013),Drama +103626,Senotaji (2013),Comedy +103629,Limuzins Janu nakts krasa (1981),Comedy|Drama +103631,Abols Upe (1974),Drama +103633,Making a Killing: The Untold Story of Psychotropic Drugging (2008),Documentary +103635,Pax Americana and the Weaponization of Space (2009),Documentary +103637,Arizona Raiders (1965),Western +103639,Bhaag Milka Bhaag (2013),Drama +103641,D-Day (2013),Action|Thriller +103645,"Terror Within, The (1989)",Horror|Sci-Fi +103647,"Surgeon, The (1995)",Horror|Thriller +103651,Tai Chi Hero (2012),Action|Comedy|Drama|Fantasy|Sci-Fi|IMAX +103653,Zombies on Broadway (1945),Comedy|Fantasy|Horror +103655,R.I.P.D. (2013),Action|Comedy|Fantasy +103657,"Client List, The (2010)",Drama +103659,Justice League: The Flashpoint Paradox (2013),Action|Adventure|Animation|Fantasy|Sci-Fi +103661,United (2011),Drama +103663,Love Is a Woman (Death Is a Woman) (1966),Crime|Drama|Mystery +103665,Ip Man: The Final Fight (2013),Action|Drama +103667,Pawn Shop Chronicles (2013),Action|Comedy +103669,Killing Season (2013),Action|Thriller +103671,Joker (2012),Comedy +103673,Gitmo (2005),Documentary +103676,My Avatar and Me (Min Avatar og mig) (2010),Documentary +103681,"Blood Beast Terror, The (1968)",Crime|Horror|Mystery +103683,Othello (1981),Drama +103685,"Field in England, A (2013)",Drama|Fantasy|Thriller|War +103688,"Conjuring, The (2013)",Horror|Thriller +103690,Everything (2004),Drama|Mystery +103695,"Starfighters, The (1964)",Drama +103721,Love (2011),Drama|Sci-Fi +103723,Mean Girls 2 (2011),Comedy +103727,"Colony, The (2013)",Action|Horror|Sci-Fi|Thriller +103729,"Warrior's Heart, A (2011)",Action|Drama +103731,"Angel Named Billy, An (2007)",Drama +103736,Scenic Route (2013),Drama|Thriller +103739,Slave Girls (Prehistoric Women) (1967),Adventure|Fantasy +103741,"Bashu, the Little Stranger (Bashu, gharibeye koochak) (1990)",Drama +103743,Wild Gals Of The Naked West (1962),Comedy|Western +103745,"Cheshire Murders, The (2013)",Documentary +103747,Dragon Age: Blood mage no seisen (a.k.a. Dragon Age: Dawn of the Seeker) (2012),Animation|Fantasy +103749,"Damned, The (Les Maudits) (1947)",Drama +103751,Gasland Part II (2013),Documentary +103753,"Human Behavior Experiments, The (2006)",Documentary +103755,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy +103759,Gunman's Walk (1958) ,Western +103769,"Devil's in the Details, The (2013)",Thriller +103772,"Wolverine, The (2013)",Action|Adventure|Fantasy|Sci-Fi +103774,Sol (2012) ,Sci-Fi +103776,"Devil Dared Me To, The (2007)",Action|Comedy +103779,Sky West and Crooked (Gypsy Girl) (1965),Drama|Romance +103784,Make Believe (2010),Documentary +103787,Gold (2013),Western +103790,Sacrificio: Who Betrayed Che Guevara (2001),Documentary +103792,Let's Make Money (2008),Documentary +103794,"Middle of the World, The (O Caminho das Nuvens) (2003)",Drama +103798,"Crash Reel, The (2013)",Documentary +103801,Drinking Buddies (2013),Comedy|Drama|Romance +103806,90 Minutes (90 minutter) (2012),Drama +103808,Hell Baby (2013),Comedy|Horror +103810,Red 2 (2013),Action|Comedy|Crime|Thriller +103813,Miami Connection (1987),Action|Crime +103816,"Battery, The (2012)",Drama|Horror +103819,Coffee Town (2013),Comedy +103821,"Death of the Incredible Hulk, The (1990)",Action +103823,"Nick Carter, Master Detective (1939)",Crime|Drama|Mystery +103825,Vehicle 19 (2013),Thriller +103827,To Get to Heaven First You Have to Die (Bihisht faqat baroi murdagon) (2006),Drama +103829,Tinpis Run (1991),Comedy|Drama +103831,Out of Life (Hors la vie) (1991),Drama +103834,Fetching Cody (2005),Drama +103836,Black & White & Sex (2012),Drama +103838,Witches' Hammer (Kladivo na carodejnice) (1970) ,Drama|Horror +103840,Whisper of Sin (Nuodemes uzkalbejimas) (2007),Drama +103842,Forest of the Gods (Dievu miskas) (2005),Drama +103846,RFK Must Die: The Assassination of Bobby Kennedy (2007),Documentary +103849,New World (Shin-sae-gye) (2013),Thriller +103851,Page Miss Glory (1935),Comedy +103861,"Battle for Marjah, The (2010)",Documentary|War +103863,Holidays by the Sea (Ni à vendre ni à louer) (2011),Comedy +103865,Revenge for Jolly! (2012),Comedy|Drama +103867,Night Train To Lisbon (2013),Mystery|Romance|Thriller +103869,Bigfoot (2012),Adventure|Horror|Sci-Fi +103871,Consuming Kids: The Commercialization of Childhood (2008),Documentary +103873,"Breath, The (Nefes: Vatan sagolsun) (2009)",Action|Drama|Thriller +103875,Iran Is Not the Problem (2008),Documentary +103877,Mighty Uke (2010),Documentary +103881,"Hard Man, The (1957)",Western +103883,2 Guns (2013),Action|Comedy|Crime +103908,First Comes Love (2013),Documentary +103910,Rafa (2012),Drama +103912,Giorgino (1994),Adventure|Drama|Horror +103920,"All Together, The (2007)",Comedy|Drama|Romance +103923,Aloha Summer (1988),Comedy|Drama +103935,Hell and Back Again (2011),Documentary|Drama|War +103966,Lost in Thailand (Ren zai jiong tu zhi tai jiong) (2012),Adventure|Comedy|Drama +103972,"Last Days, The (Últimos días, Los) (2013)",Adventure|Sci-Fi|Thriller +103974,Our Nixon (2013),Documentary +103976,Off the Menu: The Last Days of Chasen's (1997),Documentary +103978,Darling Companion (2012),Drama +103980,Blue Jasmine (2013),Drama +103982,Frankenstein's Army (2013),Action|Horror|Sci-Fi +103984,"Great Beauty, The (Grande Bellezza, La) (2013)",Comedy|Drama +103988,"Whatever You Say (Bad, Bad Things) (Mon idole) (2002)",Comedy|Crime|Drama +103990,Troma's War (1988) ,Action|Adventure|Comedy +103994,Only the Young (2012),Documentary +103996,"Canyons, The (2013)",Drama|Thriller +103998,Always Outnumbered (1998),Drama +104000,And You Thought Your Parents Were Weird (1991),Children|Comedy|Sci-Fi +104002,Another Chance (1989),Comedy +104011,Andy Hardy's Double Life (1942),Comedy|Romance +104013,They Call Him Bulldozer (Lo chiamavano Bulldozer) (1978),Action|Comedy +104015,Bomber (1982),Action|Comedy +104017,3 dev adam (Three Giant Men) (1973) ,Action|Adventure|Sci-Fi +104019,Blood Shot (2013),Action|Comedy|Horror +104026,Another Face (Two Faces) (1935),Comedy|Drama +104028,Armored Car Robbery (1950),Crime|Film-Noir|Thriller +104031,Fred & Vinnie (2011),Comedy|Drama +104033,"Love, Marilyn (2012)",Documentary +104035,Beneath (2013),Horror +104039,Arena (1989),Sci-Fi +104041,Arrival II (1998),Action|Adventure|Sci-Fi +104043,Two Guys Talkin' About Girls (1995),Comedy|Drama|Romance +104050,Phantom of the Megaplex (2000),Action|Children|Comedy|Mystery +104054,"Redhead from Wyoming, The (1953)",Western +104059,Baby On Board (1992),Comedy +104061,Battle for Brooklyn (2011),Documentary +104064,Vares: The Path of the Righteous Men (Vares - Kaidan tien kulkijat) (2012),Crime|Drama +104066,Alcan Highway (Alaska Highway) (2013),Documentary +104069,Louis C.K.: Oh My God (2013),Comedy +104072,The Count of Monte Cristo (1998),Adventure|Drama|Romance +104074,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy +104076,"Smurfs 2, The (2013)",Animation|Children|Comedy +104078,Alan Partridge: Alpha Papa (2013),Comedy +104085,Class of 1999 (1990),Action|Horror|Sci-Fi +104089,Computer Chess (2013),Comedy +104091,"Devil's Nightmare, The (Plus longue nuit du diable, La) (1971)",Fantasy|Horror +104093,"Attack, The (2012)",Drama +104095,"Attack, The (1996)",Romance|Thriller +104097,My Little Pony: Equestria Girls (2013),Animation|Children|Fantasy +104099,Lupin the Third: The Secret of Mamo (1978),Action|Animation|Crime +104101,Bloody Murder (2000),Drama|Horror|Thriller +104103,Miss You Can Do It (2013),Documentary +104116,"Road to Brown, The (1989)",Documentary +104119,"Forsyte Saga, The (1967)",Drama +104123,Jay and Silent Bob Go Down Under (2012),Comedy +104126,"Brute, The (Bruto, El) (1953)",Drama +104129,Man of Tai Chi (2013),Action|IMAX +104132,Zombies of Mora Tau (1957),Horror +104135,"Giant Claw, The (1957)",Horror|Sci-Fi +104137,Prince Avalanche (2013),Comedy|Drama +104139,"Werewolf, The (1956)",Horror|Sci-Fi +104141,Batman: Mystery of the Batwoman (2003),Action|Animation|Children|Crime +104144,Green Lantern: Emerald Knights (2011),Action|Adventure|Animation|Children +104153,Creature with the Atom Brain (1955),Crime|Horror|Sci-Fi +104155,Clear History (2013),Comedy +104175,Kickboxer 3: The Art of War (Kickboxer III: The Art of War) (1992),Action|Thriller +104177,From One Second to the Next (2013),Documentary +104179,Kickboxer 4: The Aggressor (1994),Action|Thriller +104181,Class of 1999 II: The Substitute (1994),Action|Horror|Sci-Fi|Thriller +104211,We're the Millers (2013),Comedy|Crime +104213,Growing Pains (1984),Comedy +104215,Burning Bright (2010),Drama|Horror|Thriller +104218,Grown Ups 2 (2013),Comedy +104224,DEFCON: The Documentary (2013),Documentary +104226,Jamie and Jessie Are Not Together (2011),Comedy|Musical|Romance +104231,Drug War (Du zhan) (2012),Crime +104233,"Cat and the Canary, The (1939)",Comedy|Horror|Mystery +104236,Criminal Justice (1990),Drama +104239,Farmageddon (2011),Documentary +104241,Kick-Ass 2 (2013),Action|Comedy|Crime +104243,Riddick (2013),Action|Sci-Fi|Thriller|IMAX +104245,Planes (2013),Adventure|Animation|Comedy +104247,"Fight, Zatoichi, Fight (Zatôichi kesshô-tabi) (Zatôichi 8) (1964)",Action|Adventure|Comedy|Drama +104249,Mr. Moto in Danger Island (1939),Crime|Drama|Mystery|Thriller +104266,Killer at Large (2008),Documentary +104270,Cameron's Closet (1988),Horror +104272,Blackfish (2013),Documentary +104274,Paranoia (2013),Drama|Thriller +104276,"Legend of Kaspar Hauser, The (Leggenda di Kaspar Hauser, La) (2012)",Comedy|Drama|Mystery +104280,"Black Room, The (1935)",Crime|Horror|Thriller +104283,"Wind Rises, The (Kaze tachinu) (2013)",Animation|Drama|Romance +104285,"Maria, ihm schmeckt's nicht! (Maria, He Doesn't Like It) (2009)",Comedy +104294,Around the World Under the Sea (1966),Action|Adventure +104298,Evidence (2013) ,Horror|Thriller +104301,Amorosa (1986),Drama +104303,Jobs (2013),Drama +104307,"Souper, Le (Supper, The) (1992)",Drama +104309,Moving the Mountain (1994),Documentary +104312,"Mortal Instruments: City of Bones, The (2013)",Action|Adventure|Drama|IMAX +104314,Hitler's Children (2011),Documentary +104317,Flight of the Conchords: A Texan Odyssey (2006),Comedy +104319,"First Grader, The (2010)",Drama +104321,Touchy Feely (2013),Drama +104323,Four Horsemen (2012),Documentary +104331,Des gens qui s'embrassent (2013),Comedy|Romance +104335,Vassilisa the Beautiful (Vasilisa prekrasnaya) (1939),Adventure|Fantasy +104337,Lee Daniels' The Butler (2013),Drama +104339,In a World... (2013),Comedy +104341,Askari (2001),Drama +104345,Back Door to Hell (1964),Drama|War +104350,Terms and Conditions May Apply (2013),Documentary +104352,Alias Ruby Blade (2012),Documentary +104354,Between the Sheets (Entre Lençóis) (2008),Drama|Romance +104356,Museum Hours (2013),Drama +104361,Ain't Them Bodies Saints (2013),Drama +104363,Money Matters (2011) ,Drama +104368,Sunset Strip (2012),Documentary +104370,Wartorn: 1861-2010 (2010),Documentary|War +104372,"Cry in the Night, A (1956)",Crime|Drama|Film-Noir +104374,About Time (2013),Drama|Fantasy|Romance +104376,Tatsumi (2011),Documentary|Drama|Thriller +104379,Chennai Express (2013),Action|Adventure|Comedy +104384,"Source Family, The (2012)",Documentary|Musical +104386,Cold Prey II (Fritt Vilt II) (2008),Horror +104388,Cold Prey III (Fritt Vilt III) (2010),Horror +104390,When Nietzsche Wept (2007),Drama +104392,Four Flies on Grey Velvet (1971),Horror|Mystery|Thriller +104406,Fill the Void (Lemale et ha'halal) (2012),Drama +104408,Truth or Die (2012) ,Horror|Thriller +104412,Shadows of Liberty (2012) ,Documentary +104414,Looking for Hortense (Cherchez Hortense) (2012) ,Drama +104419,Justice League: Crisis on Two Earths (2010),Action|Animation|Sci-Fi +104421,Somewhere Between (2011),Documentary +104423,"Snows of Kilimanjaro, The (Neiges du Kilimandjaro, Les) (2011)",Drama +104431,Enter Nowhere (2011),Mystery|Thriller +104436,Viagem a Portugal (2011),Drama|Romance +104438,Belarmino (1964),Documentary|Drama +104441,"Frozen Ground, The (2013)",Crime|Drama|Thriller +104449,Blubberella (2011),Action|Comedy +104451,Dealing: Or the Berkeley-to-Boston Forty-Brick Lost-Bag Blues (1972),Comedy|Drama|Thriller +104453,"Marva Collins Story, The (1981)",Documentary|Drama +104457,You're Next (2011),Horror|Thriller +104459,"Parisienne, La (Une parisienne) (1957)",Comedy +104462,"Brothers O'Toole, The (1973)",Comedy|Western +104464,Taipei Exchanges (Di 36 ge gu shi) (2010),Comedy|Drama +104472,Find Love (2006),Romance +104480,"Late Mathias Pascal, The (a.k.a. The Living Dead Man) (Feu Mathias Pascal) (1926)",Drama|Fantasy +104489,"Date with Judy, A (1948)",Comedy|Musical|Romance +104491,"Royal Scandal, A (1945)",Comedy|Drama +104493,"Ticklish Affair, A (1963)",Comedy|Romance +104495,"Woman in The Septic Tank, The (Ang Babae sa septic tank) (2011)",Comedy|Musical +104498,"Glass House, The (1972)",Drama +104504,Confine (2013),Thriller +104506,Sparrows Dance (2012),Drama|Romance +104508,Dieta mediterránea (2009),Comedy|Drama|Romance +104513,Clownhouse (1989),Horror +104518,Empire State (2013),Action|Drama +104520,"Crimson Permanent Assurance, The (1983)",Adventure|Comedy +104524,Dolly and Her Lover (Räpsy ja Dolly eli Pariisi odottaa) (1990),Comedy|Crime|Romance +104526,So It Goes (Korsoteoria) (2012),Drama +104540,"Immortals, The (1995)",Action|Crime|Drama +104542,Joyride (1997),Drama +104544,My Wife Is a Gangster 2 (Jopog manura 2: Dolaon jeonseol) (2003),Action|Comedy|Crime +104546,Queen of Montreuil (2013),Comedy +104552,Crawlspace (2012),Horror|Mystery|Sci-Fi|Thriller +104556,"Ghostmaker, The (Box of Shadows) (2011)",Horror|Sci-Fi|Thriller +104561,Mutants (2009),Horror|Sci-Fi +104563,Too Hot to Handle (1938),Adventure|Comedy|Romance +104569,"Act of Love (Acte d'amour, Un) (1953)",Drama|Romance|War +104571,Act of Love (1980),Drama +104576,"Seasoning House, The (2012)",Horror|Thriller +104581,Polite People (Kurteist fólk) (2011),Comedy|Drama +104583,Logorama (2009),Action|Animation|Crime +104588,"Little Traitor, The (2007)",Drama +104590,Tidal Wave (2009),Drama +104595,Family Band: The Cowsills Story (2011) ,Documentary +104597,"Chicago 8, The (2011)",Drama +104599,"World According to Dick Cheney, The (2013) ",Documentary +104601,"Stranger Within, The (2013)",Thriller +104604,Something Real and Good (2013),Drama +104606,The Last Drop (2006),Action|Adventure|Crime|War +104608,Autopsy (2008),Horror +104610,Komodo (1999),Horror|Sci-Fi|Thriller +104612,"Trust Us, This Is All Made Up (2009)",Comedy|Documentary +104625,Apartment for Peggy (1948),Drama +104627,Back from Eternity (1956),Drama +104629,Back in Business (1997),Action|Adventure +104631,Adore (2013),Drama|Romance +104633,French Roast (2008),Animation|Comedy +104636,TT3D: Closer to the Edge (2011),Documentary +104638,"Planet of the Future, The (2010)",Action|Adventure|Sci-Fi +104640,"Long Dark Hall, The (1951)",Crime|Drama +104642,Sealed Cargo (1951),Thriller|War +104644,Maria Bamford: The Special Special Special! (2012),Comedy +104662,"First Nudie Musical, The (1976)",Comedy|Musical +104664,Freeway (1988),Thriller +104667,Naked Souls (1996),Sci-Fi|Thriller +104669,Simon Killer (2012) ,Drama +104671,Dracula (Dracula 3D) (2012),Horror|Romance|Thriller +104673,"Kidnapping of the President, The (1980)",Action|Drama|Thriller +104675,Kitchen Party (1997),Drama +104677,King Cobra (1999),Horror|Sci-Fi +104680,"Last of Robin Hood, The (2013)",Drama +104685,"Suicide Shop, The (Le magasin des suicides) (2012) ",Animation|Comedy|Musical +104689,Subspecies (1991),Horror +104691,Bloodstone: Subspecies II (1993),Horror +104693,Bloodlust: Subspecies III (1994),Horror +104698,From Hell It Came (1957),Horror +104701,Zapped Again! (1990),Comedy|Sci-Fi +104712,Instructions Not Included (No se Aceptan Devoluciones) (2013),Comedy|Drama +104719,Subspecies IV: Bloodstorm (1998),Horror +104721,"Motivation, The (2013)",Documentary +104723,Conman (Du Xia 1999) (1998),Comedy +104726,Koch (2012),Documentary +104728,One Direction: This Is Us (2013),Documentary +104731,Murder à la Mod (1968),Comedy|Crime|Mystery +104733,"Fireman, The (1916)",Comedy +104736,Closed Circuit (2013),Crime|Drama|Mystery +104741,Doctors' Wives (1971),Drama +104743,AmeriQua (2013),Comedy +104746,Killjoy (2000),Horror +104748,Killjoy 2: Deliverance from Evil (2002),Horror +104750,Killjoy 3 (2010),Horror +104757,Evocateur: The Morton Downey Jr. Movie (2012),Documentary +104760,Getaway (2013),Action|Crime +104762,"Teacher, A (2013)",Drama +104764,"Leafie, a Hen Into the Wild (2011)",Adventure|Animation|Drama +104767,"High Tech, Low Life (2012)",Documentary +104769,Killjoy Goes to Hell (2012),Comedy|Horror +104772,Puppet Master: Axis of Evil (Puppet Master 10) (2010),Horror +104774,Three Worlds (Trois mondes) (2012),Drama +104776,"Cockleshell Heroes, The (1955)",Action|Drama|War +104778,King of Texas (2002),Drama|Western +104780,"Mystery of the Third Planet, The (Tayna tretey planety) (1981)",Adventure|Animation|Sci-Fi +104784,Hack! (2007),Comedy|Horror +104795,Backlash (1956),Mystery|Romance|Western +104798,6954 Kilometriä Kotiin (2012),Documentary +104800,Schwarze Sonne (1998),Documentary +104803,Holocaust (1978),Drama|Romance|War +104805,"Item, The (1999)",Action|Horror +104807,I Am (2010),Documentary +104809,Phantom of the Rue Morgue (1954),Crime|Horror|Mystery +104813,Bad Girl Island (Sirens of Eleuthera) (Sirens of the Caribbean) (2007),Mystery|Sci-Fi +104815,Bad Men of Missouri (1941),Action|Romance|Western +104817,Badman's Country (1958),Western +104823,Hunky Dory (2011),Drama|Musical +104827,American Vagabond (2013),Documentary +104829,"Story of Luke, The (2012)",Comedy|Drama +104832,"Glass Web, The (1953)",Crime|Drama|Film-Noir +104835,"Incredible Melting Man, The (1977)",Horror|Sci-Fi +104837,Rage of Honor (1987),Action|Crime +104839,Moonlight Serenade (1997),Drama +104841,Gravity (2013),Action|Sci-Fi|IMAX +104843,And Now a Word from Our Sponsor (2013),Comedy|Drama +104847,Spin (You Are Here) (2007),Comedy|Romance +104849,Lisa (1990),Drama|Thriller +104854,"Coward, The (Kapurush) (1965)",Drama +104861,I Spit on Your Grave 2 (2013) ,Crime|Horror|Thriller +104863,What If (2013),Comedy|Drama|Romance +104865,Ping Pong (2012),Documentary +104867,"Sex of Angels, The (El sexo de los ángeles) (2012)",Drama|Romance +104870,Deathsport (1978),Action|Sci-Fi +104872,Unfinished Sky (2007),Drama|Romance +104875,"History of Future Folk, The (2012)",Adventure|Comedy|Musical|Sci-Fi +104879,Prisoners (2013),Drama|Mystery|Thriller +104881,"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)",Drama|Thriller +104883,"Conspiracy, The (2012)",Horror|Thriller +104903,Good Vibrations (2012),Drama|Musical +104906,Austenland (2013),Comedy|Romance +104908,Insidious: Chapter 2 (2013),Horror|Thriller +104910,"Ultimate Life, The (2013)",Drama +104913,Rush (2013),Action|Drama +104920,Vizontele (2001),Comedy|Drama +104923,This is Martin Bonner (2013),Drama +104925,"Family, The (2013)",Action|Comedy|Crime +104932,"Crimson Petal and the White, The (2011)",Drama|Romance +104936,High on Crack Street: Lost Lives in Lowell (1995),Documentary +104938,King Lines (2007),Adventure +104944,Short Term 12 (2013),Drama +104947,At Any Price (2012),Drama|Thriller +104952,I Was a Teenage Zombie (1987),Comedy|Horror +104954,Joy of Sex (1984),Comedy|Romance +104956,Just One of the Girls (1993),Comedy +104959,Aurora Borealis (2005),Drama|Romance +104961,Badman's Territory (1946),Action|Drama|Western +104969,"Milky Way, The (1936)",Comedy +104971,Imaginary Witness: Hollywood and the Holocaust (2004) ,Documentary +104973,Eminem AKA (2004) ,Documentary +104975,Salinger (2013),Documentary +104984,Tears of Steel (2012),Sci-Fi +104990,"Jerk Theory, The (2009)",Comedy +104993,Jungleground (1995),Action|Sci-Fi|Thriller +104996,Table No.21 (2013),Drama|Thriller +104998,Paradise: Faith (Paradies: Glaube) (2012),Drama +105001,"Human Family Tree, The (2009)",Documentary +105011,"Story of Maths, The (2008)",Documentary +105013,End of the Line (2007),Horror|Thriller +105015,"Last Run, The (2004)",Comedy|Drama +105017,"Wet Parade, The (1932)",Drama|Romance +105020,Collision Course (1989),Action|Comedy|Thriller +105028,Post Tenebras Lux (2012),Drama +105030,Ice Age Columbus: Who Were the First Americans? (2005),Documentary +105032,Farah Goes Bang (2013),Comedy +105034,Shadowlands (1985),Drama|Romance +105037,"To Do List, The (2013)",Comedy +105040,Dragon Day (2013),Drama|Sci-Fi|Thriller +105042,"Wedding Party, The (1969)",Comedy +105044,"Unspeakable Act, The (2012)",Drama +105047,Shakma (1990),Horror +105049,"Champion, The (1915)",Comedy +105051,"Jitney Elopement, A (1915)",Comedy +105053,"Factory, The (2012)",Mystery|Thriller +105055,Time of Peace (Tempos de Paz) (2009),Drama +105057,Saint Joan (1957),Drama +105068,Hawking (2013),Documentary +105071,Pig Hunt (2008) ,Action|Horror|Thriller +105073,Officer Down (2013),Crime|Drama +105075,Princess Protection Program (2009),Children|Drama +105077,"Cat's-Paw, The (1934)",Comedy +105079,His Regeneration (1915),Western +105081,Mabel at the Wheel (1914),Comedy +105084,Grand Masti (2013),Comedy|Drama|Romance +105086,Battle of the Year (2013),Musical +105089,Louis Theroux: Twilight of the Porn Stars (2012),Documentary +105091,Nightmares in Red White & Blue: The Evolution of the American Horror Film (2009),Documentary|Horror +105096,"Naked Civil Servant, The (1975)",Comedy|Drama +105098,"Englishman in New York, An (2009)",Drama +105101,"Dragonphoenix Chronicles: Indomitable, The (2013)",Action|Adventure|Fantasy +105104,"Big Day, The (We Met on the Vineyard) (2001)",Comedy +105111,Bandit: Bandit's Silver Angel (Smokey and the Bandit 7) (Bandit: Bandit and the Silver Angel) (1994),Comedy +105115,Hitting Home (1987),Drama|Romance|Thriller +105117,Off Beat (1986),Comedy|Romance +105119,Out On A Limb (1992),Comedy +105121,Inescapable (2012),Action|Drama|War +105126,Afternoon Delight (2013),Comedy|Drama +105128,Casting By (2012),Documentary +105130,"Notebook, The (A nagy füzet) (2013)",Drama|War +105133,Repeaters (2010) ,Action|Drama +105135,"Pit, The (1981)",Horror +105142,Barbed Wire (1952),Action|Comedy|Western +105147,Karate-Robo Zaborgar (Denjin Zabôgâ) (2011),Action|Adventure|Comedy|Fantasy +105150,"Other Side of Bollywood, The (2006)",Documentary +105155,America the Beautiful (2007) ,Documentary +105157,Supporting Characters (2012),Comedy|Romance +105159,Alps (Alpeis) (2011),Drama +105161,Synth Britannia (2009),Documentary +105163,Ruins (2013),Documentary +105165,World Without End (1956),Sci-Fi +105176,Barricade (2012),Horror|Thriller +105178,Killers from Space (1954),Sci-Fi +105181,"Monster That Challenged the World, The (1957)",Horror|Sci-Fi +105184,"Quest, The (1986)",Adventure|Children|Drama +105187,Linotype: The Film (2012),Documentary +105189,Emo Philips Live (1987),Comedy +105191,Rocaterrania (2009),Documentary|Fantasy +105193,Bastards (Les salauds) (2013),Drama +105195,Talking Funny (2011),Comedy +105197,Nebraska (2013),Adventure|Drama +105204,Saint (Sint) (2010),Horror +105206,Amsterdamned (1988),Action|Horror|Thriller +105211,Enough Said (2013),Comedy|Drama|Romance +105213,Don Jon (2013),Comedy|Drama|Romance +105215,Scatter My Ashes at Bergdorf's (2013),Documentary +105217,Adventures in Zambezia (2012),Adventure|Animation|Children|Comedy +105223,Colorado Territory (1949),Western +105227,102 Minutes That Changed America (2008),Documentary +105234,Wanda Sykes: Sick and Tired (2006),Comedy|Documentary +105236,Sorceress (1982),Action|Adventure|Fantasy +105238,New Town Killers (2008),Drama +105240,"Tender Hook, The (Boxer and the Bombshell, The) (2008)",Crime|Drama|Mystery +105242,Mushrooming (Seenelkäik) (2012),Adventure|Comedy|Thriller +105244,Dance of Outlaws (Häätanssi) (2012),Documentary +105246,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy +105248,Metallica: Through the Never (2013),Action|Musical|IMAX +105250,"Century of the Self, The (2002)",Documentary +105252,Conquest (1983),Action|Adventure|Fantasy +105254,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy +105257,De nieuwe Wildernis (2013),Documentary +105266,First Cousin Once Removed (2012),Documentary +105269,Machete Maidens Unleashed! (2010),Documentary +105271,"Gathering of Old Men, A (Murder on the Bayou) (1987)",Drama +105275,I Will Follow You Into the Dark (2012),Drama|Horror|Romance +105279,Adventures of Kitty O'Day (Kitty O'Day Comes Through) (1945),Comedy|Crime|Mystery|Romance +105282,"Innocent Affair, An (Don't Trust Your Husband) (Under Suspicion) (1948)",Comedy +105288,Ferocious (2012),Crime|Thriller +105290,Shanghai (2012),Crime|Thriller +105292,Paintball (2009),Action|Thriller +105296,Lincz (2010),Drama|Thriller +105299,Tsunami: Caught on Camera (2009),Documentary +105302,The Rise (2012),Crime|Drama|Thriller +105304,Thampu (1978),Drama +105306,Men Seeking Women (1997),Comedy +105308,Scanners II: The New Order (1991),Action|Horror|Sci-Fi +105310,Scanners III: The Takeover (Scanner Force) (1991),Action|Horror|Sci-Fi +105314,Once Upon a Warrior (Anaganaga O Dheerudu) (2011),Action|Adventure|Fantasy|Musical|Romance +105320,Apache Country (1952),Action|Western +105323,Every Other Week (Varannan vecka) (2006),Comedy|Drama|Romance +105325,Bad Milo (Bad Milo!) (2013),Comedy|Horror +105328,America the Beautiful 2: The Thin Commandments (2011) ,Documentary +105330,"Public Eye, The (Follow Me!) (1972)",Comedy +105335,Orderly or Disorderly (Be Tartib ya Bedoun-e Tartib) (1981),Documentary +105338,Kabul Express (2006),Action|Comedy|Drama|Thriller +105340,Miracle in Cell No. 7 (2013),Comedy|Drama +105343,Special 26 (2013),Crime|Drama|Thriller +105345,Jolene (2008),Drama +105347,Quand je serai petit (2012),Drama +105351,Runner Runner (2013),Crime|Drama|Thriller +105353,"Dilettante, La (1999)",Comedy +105355,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance +105357,Tyler Perry's Temptation: Confessions of a Marriage Counselor (2013),Drama +105359,Future Weather (2012),Drama +105364,Something in the Air (Après Mai) (2012),Action|Drama +105366,Shake Hands with the Devil (1959),Action|Drama +105368,I Declare War (2012),Action|Comedy|Drama +105375,"German Doctor, The (Wakolda) (2013)",Drama|Thriller +105377,"Puerta de Hierro, el exilio de Perón (2012)",Drama +105379,"Monitors, The (1969)",Comedy|Sci-Fi +105382,This is Our Time (2013),Drama +105386,Curse of Chucky (Child's Play 6) (2013),Horror|Thriller +105388,Prison of the Dead (2000),Horror +105390,"Rabid Grannies (Mémés cannibales, Les) (1988)",Comedy|Horror +105404,Muhammad Ali's Greatest Fight (2013),Drama +105406,711 Ocean Drive (1950),Crime|Drama|Film-Noir|Thriller +105408,"Cadaver Christmas, A (2011)",Comedy|Horror +105410,Angel (1984),Action|Crime|Thriller +105412,Favela Rising (2005),Documentary +105414,Mariage à Mendoza (2012),Comedy|Drama +105416,Germany Pale Mother (1980),Drama|War +105420,Parkland (2013),Drama +105423,Imagine (2012),Drama +105429,Inequality for All (2013),Documentary +105435,Narrien illat (1970) ,Comedy|Drama|Musical +105439,Sword of Desperation (Hisshiken torisashi) (2010),Action|Drama +105442,"Mooring, The (2012)",Horror|Thriller +105444,Seyyit Khan: Bride of the Earth (Seyyit Han) (1968),Drama|Western +105446,"Tale from the Past, A (Përralle Nga e Kaluara) (1987)",Comedy +105448,Eros (Men and Women) (Noite Vazia) (1964),Drama +105450,Jessie James Meets Frankenstein's Daughter (1966),Sci-Fi|Western +105453,On the Job (2013),Action|Drama +105455,Resurrecting the Street Walker (2009),Horror +105461,Adventures of a Teenage Dragonslayer (I Was a 7th Grade Dragon Slayer) (2010),Adventure|Children|Comedy|Fantasy +105463,Alice Upside Down (Alice) (2007),Adventure|Children|Comedy|Drama +105465,Alice's Adventures in Wonderland (1972),Adventure|Children|Fantasy|Musical +105468,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy +105470,Extraction (2013),Action +105474,Microphone (2010),Comedy|Drama|Musical +105477,Talaash (2012),Crime|Drama|Mystery +105481,Blood Shack (1971),Horror +105484,Nobody Else But You (Poupoupidou) (2011),Comedy|Crime|Mystery +105490,Almost You (1985),Comedy|Drama +105492,Dirty (2005),Crime|Drama|Thriller +105495,"Dish & the Spoon, The (2011)",Comedy|Drama|Romance +105497,Kumail Nanjiani: Beta Male (2013) ,Comedy|Documentary +105499,"Shiro Amakusa, the Christian Rebel (Amakusa Shiro tokisada) (1962)",Drama|War +105502,"Devil's Ground, The (2009)",Horror|Thriller +105504,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX +105506,Television Under the Swastika (Das Fernsehen unter dem Hakenkreuz) (1999),Documentary +105509,"Misérables, Les (1978)",Drama +105519,"Philosophers, The (After The Dark) (2013)",Drama|Fantasy|Sci-Fi +105521,"It's Me, It's Me (Ore Ore) (2013)",Comedy|Drama|Sci-Fi +105526,Year Zero: The Silent Death of Cambodia (1979),Documentary +105529,Stealing a Nation (2004),Documentary +105531,"Wall, The (Die Wand) (2012)",Drama|Fantasy +105533,They Only Kill Their Masters (1972),Mystery|Romance|Thriller +105538,Valentine Road (2013),Documentary +105540,"All Dogs Christmas Carol, An (1998)",Animation|Children|Comedy|Musical +105542,Another Harvest Moon (2010),Drama +105554,Fanatics (Kulman pojat) (2012),Comedy +105560,Beneath the Dark (2010),Drama|Mystery|Thriller +105563,McKenna Shoots for the Stars (2012),Children|Drama +105565,Sincerely Yours (1955),Drama|Musical +105569,Are You Scared 2 (2009),Action|Horror|Thriller +105571,Attila (Attila the Hun) (1954),Drama +105575,Look (2007),Drama +105577,Avenger (2006) ,Thriller +105579,Zombie Apocalypse (2011),Action|Horror|Sci-Fi +105581,Zombie High (1987),Comedy|Horror +105583,Voodoo Dawn (1991),Horror +105585,Machete Kills (Machete 2) (2013),Action|Crime|Thriller +105591,I Am Fishead (2011),Documentary +105593,Filth (2013),Comedy|Crime|Drama +105595,Game of Chance (Onnenpeli) (1965),Comedy|Drama +105597,Romeo and Juliet (2013),Drama|Romance +105599,Drona (2008),Action|Adventure|Fantasy|Musical +105601,Calling Dr. Death (1943),Mystery +105606,Woman in the Meadow (Nainen kedolla) (2003),Drama|Romance|Thriller +105608,Sunshine on Leith (2013) ,Musical +105612,Wild Seven (2006),Crime|Drama +105616,"Frozen Ghost, The (1945)",Mystery +105618,Four Eyes and Six-Guns (1992),Comedy|Western +105620,Baggage Claim (2013),Comedy +105622,Zero Charisma (2013),Comedy|Drama +105628,Parking (Ting che) (2008),Crime|Drama +105630,Stitches (2012),Comedy|Horror +105653,Escape Plan (2013),Action|Mystery|Thriller +105659,Weird Woman (1944),Drama +105663,Family Affair (2010) ,Documentary +105665,Dances With the Dragons ( Yu long gong wu) (1991),Comedy|Drama|Romance +105700,Unrest (2006),Horror|Thriller +105703,Haute Cuisine (2012),Drama +105709,Brazilian Western (Faroeste Caboclo) (2013),Crime|Drama|Romance +105713,How to Meet Girls from a Distance (2012),Comedy +105715,Just Wright (2010),Comedy|Romance +105717,My Grandfather's People (Dedemin insanlari) (2011),Comedy|Drama +105720,"Thief of Paris, The (Le voleur) (1967)",Comedy|Crime|Drama +105728,Family Secrets (Familjehemligheter) (2001),Drama +105731,Carrie (2013),Drama|Horror +105733,"Legend of Lylah Clare, The (1968)",Drama +105742,"Fifth Estate, The (2013)",Drama|Thriller +105744,Life According to Sam (2013),Documentary|Drama +105746,UnHung Hero (2013),Documentary +105748,"Place of One's Own, A (1945)",Drama|Mystery|Thriller +105753,Superclásico (2011),Comedy|Drama +105755,"Counselor, The (2013)",Crime|Drama|Thriller +105759,"Bikini Carwash Company, The (1992)",Comedy +105761,Blood Suckers from Outer Space (1984),Comedy|Horror|Sci-Fi +105763,Bloodsucking Freaks (1976),Horror +105765,Cinema Komunisto (2010),Documentary +105767,One Nation Under God (1993) ,Documentary +105769,"Congress, The (2013)",Animation|Sci-Fi +105772,Earth vs. The Spider (1958),Horror +105776,"Trip to Mars, A (1910)",Sci-Fi +105778,One Small Hitch (2013),Comedy|Romance +105792,"Stranger in Town, A (1943)",Drama|Romance +105794,Another Nine & a Half Weeks (Love in Paris) (9 1/2 Weeks II) (Another 9 1/2 Weeks) (1997),Drama|Romance +105796,Back in the Saddle (Back in the Saddle Again) (1941),Action|Drama|Western +105799,"Unbelievers, The (2013)",Documentary +105801,Escape From Tomorrow (2013),Drama|Fantasy|Horror +105803,Frankenstein Conquers the World (1965),Action|Drama|Sci-Fi +105805,Episode 3: Enjoy Poverty (2009),Documentary|War +105811,Godzilla vs. Megaguirus (Gojira tai Megagirasu: Jî shômetsu sakusen) (2000),Action|Sci-Fi +105813,Godzilla vs. Megalon (Gojira tai Megaro) (1973),Action|Sci-Fi +105815,Undocumented (2010),Horror|Thriller +105819,Back to the Secret Garden (2001),Adventure|Children|Fantasy +105821,Cult of the Cobra (1955),Horror +105825,Mustasukkaisuus (1953),Drama|Romance +105827,Rebirth of Mothra (1996),Action|Fantasy|Sci-Fi +105829,Bloodsucking Pharaohs in Pittsburgh (1991),Comedy|Horror +105831,Bloody Bloody Bible Camp (2012),Comedy|Horror +105833,Bloody New Year (1987),Horror|Mystery +105835,"Double, The (2013)",Comedy|Drama|Thriller +105837,Godzilla vs. SpaceGodzilla (Gojira VS Supesugojira) (1994),Action|Sci-Fi +105841,B-Side (2013),Comedy|Romance +105844,12 Years a Slave (2013),Drama +105846,Only Daughter (2013),Drama +105849,"Trouble with the Truth, The (2011)",Drama|Romance +105855,"Right Kind of Wrong, The (2013)",Comedy|Romance +105863,Child's Pose (2013),Drama +105865,"Enemy Within, The (O ehthros mou) (2013)",Drama +105869,Kill Your Darlings (2013),Crime|Drama|Romance|Thriller +105873,"Killing of America, The (1982)",Documentary +105884,Being Cyrus (2005),Comedy|Drama|Thriller +105886,Buddha Collapsed Out of Shame (2007),Drama|War +105888,Debtocracy (2011),Documentary +105890,"White Dwarf, The (Valkoinen kääpiö) (1986)",Drama +105892,August (Elokuu) (2011) ,Drama +105899,Mía (2011),Drama +105901,Silja - nuorena nukkunut (1956),Drama|Romance +105906,Watermarks (2004),Documentary +105911,Heart of a Lion (Leijonasydän) (2013),Drama|Romance +105915,History of Hell (Rosas Höllenfahrt) (2009),Documentary +105918,Kimjongilia (2009),Documentary +105924,Bait Shop (2008),Comedy +105926,Barrio Tales (2012),Horror +105928,"Day of the Crows, The (Le jour des corneilles) (2012)",Animation|Children|Comedy|Fantasy +105936,Space Amoeba (Yog: Monster from Space) (1970),Action|Sci-Fi +105938,Varan the Unbelievable (1958),Action|Drama|Sci-Fi +105943,Bridegroom (2013),Documentary +105945,29 Palms (2002),Comedy|Drama|Thriller +105948,Alien Space Avenger (1989),Comedy|Horror|Sci-Fi +105950,Miracle Run (2004),Drama +105952,Spinning Plates (2012),Documentary +105954,All Is Lost (2013),Action|Adventure|Drama +105959,Pillow of Death (1945),Mystery|Thriller +105961,Rebirth of Mothra II (1997),Action|Fantasy +105963,Rebirth of Mothra III (1998),Action|Fantasy|Sci-Fi +105965,Arthur Newman (2012),Comedy|Drama +105968,Inherit the Wind (1999),Drama +105972,"Little Help, A (2010)",Comedy|Drama +105974,Assault on a Queen (1966),Action|Adventure|Crime|Drama|Thriller +105976,Bad Medicine (1985),Comedy +105978,Born Wild (1995),Drama +105980,"Borrower, The (1991)",Comedy|Horror|Sci-Fi +105982,Boulevard (1994),Crime|Drama +105985,Man on a Mission: Richard Garriott's Road to the Stars (2010),Documentary +105987,"Substance: Albert Hofmann's LSD, The (2011)",Documentary +105999,Bartok the Magnificent (1999),Animation|Children +106002,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX +106004,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller +106006,Breaking Point (1994),Thriller +106011,"Blue Umbrella, The (2013)",Animation +106017,Hello! How Are You? (Buna! Ce faci?) (2010),Comedy|Romance +106019,TWA Flight 800 (2013) ,Documentary +106022,Toy Story of Terror (2013),Animation|Children|Comedy +106024,"Return of Mod Squad, The (1979)",Crime|Drama +106026,Folies Bergere de Paris (1935),Comedy|Musical +106028,"Thrill of Brazil, The (1946)",Musical +106030,"Last Days on Mars, The (2013)",Horror|Sci-Fi +106032,Chastity Bites (2013),Comedy|Horror +106046,The Escape Artist (1982),Crime|Drama +106048,Four Days in July (1985),Comedy|Drama +106052,Death by China (2012) ,Documentary +106054,Het Vonnis (2013),Crime|Drama +106057,Wind with the Gone (El viento se llevó lo qué) (1998),Comedy|Drama +106059,Conversations with My Gardener (Dialogue avec mon jardinier) (2007),Comedy|Drama +106062,Jackass Presents: Bad Grandpa (2013),Comedy +106064,Race (2008),Action|Comedy +106066,Freaky Deaky (2012),Comedy|Crime +106068,"Hand of Peace: Pope Pius XII and the Holocaust, A (2008)",Documentary +106072,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX +106074,"Code, The (2011)",Documentary +106076,Precision: The Measure of All Things (2013),Documentary +106078,"Great Texas Dynamite Chase, The (1976)",Action|Comedy|Crime|Drama|Romance +106080,Fragment of Fear (1970),Crime|Drama|Mystery +106082,Shock and Awe: The Story of Electricity (2011),Documentary +106090,Tortured (2008),Crime|Thriller +106092,Disfigured (2008),Drama +106094,Godzilla: Tokyo S.O.S. (Gojira tai Mosura tai Mekagojira: Tôkyô S.O.S.) (2003),Action|Fantasy|Sci-Fi +106098,Science and Islam (2009),Documentary +106100,Dallas Buyers Club (2013),Drama +106102,Gambit (2012),Comedy|Crime +106107,Order and Disorder (2009),Documentary +106109,"Masquerade (Gwanghai, Wangyidoen namja) (2012)",Drama +106111,Marc Maron: Thinky Pain (2013),Comedy +106113,Such Hawks Such Hounds (2008),Documentary +106115,"Story of Science, The (2010)",Documentary +106130,Lessons of a Dream (Der ganz große Traum) (2011),Drama +106136,Beatdown (2010),Action|Crime|Thriller +106138,You May Not Kiss the Bride (2011),Action|Comedy|Crime|Romance +106141,Bad Chicken (2013),Comedy +106144,"Selfish Giant, The (2013)",Drama +106147,Changing Sides (De l'autre côté du lit) (2008),Comedy +106156,London - The Modern Babylon (2012) ,Documentary +106158,La discrète (1990),Drama|Romance +106160,Bekas (2012),Drama +106163,"Touch of Sin, A (Tian zhu ding) (2013)",Drama +106165,More Than Honey (2012),Documentary +106168,"Man Who Captured Eichmann, The (1996)",Drama|War +106170,"Patriots, The (Patriotes, Les) (1994)",Thriller +106173,Looking for Lenny (2011) ,Documentary +106188,Beau Brummel (1924),Drama|Romance +106190,Red Garters (1954),Comedy|Musical|Western +106193,Les Formidables (Gang-jeok) (2006),Action|Adventure|Crime +106195,How I Live Now (2013),Action|Drama|Thriller +106197,Girl Most Likely (2012),Comedy +106200,Hours (2013),Drama|Thriller +106202,Free The Mind (2012),Documentary +106204,Pieta (2013),Drama +106208,Stuck (2013) ,Documentary +106210,Errors of the Human Body (2012) ,Drama|Sci-Fi|Thriller +106212,Root of All Evil? (2006),Documentary +106214,What If ... (2010),Drama +106220,Aziz Ansari: Buried Alive (2013),Comedy +106222,Aziz Ansari: Dangerously Delicious (2012),Comedy +106224,24 Hours on Craigslist (2005),Documentary +106226,Clandestine Childhood (2011),Drama +106228,Libre échange (2010),Comedy +106230,Free Radicals: A History of Experimental Film (2012),Documentary +106232,"Reformer and the Redhead, The (1950)",Comedy|Romance +106234,Great Expectations (2012),Drama +106236,Somm (2012),Documentary +106238,Amber Alert (2012) ,Thriller +106240,Free Birds (2013),Action|Adventure|Animation|Children|Comedy|Sci-Fi +106243,Godzilla Against MechaGodzilla (Gojira tai Mekagojira) (2002),Action|Sci-Fi|Thriller +106245,Latitude Zero (Ido zero daisakusen) (1969),Action|Adventure|Sci-Fi +106250,3 Little Ninjas and the Lost Treasure (1990),Action +106254,Boy Wonder (2010),Action|Crime|Drama +106256,"Day Lincoln Was Shot, The (1998)",Drama +106268,Beautiful Dreamer: Brian Wilson and the Story of 'Smile' (2004),Documentary +106270,Because You're Mine (1952),Comedy|Musical +106272,Bed & Breakfast: Love is a Happy Accident (Bed & Breakfast) (2010),Comedy|Romance +106275,"Crew, The (1994)",Drama|Thriller +106277,Breathing Fire (1991),Action +106286,Bailey's Billion$ (Bailey's Billions) (Bailey) (2005),Children|Comedy +106295,"Castle of the Living Dead (Castello Dei Morti Vivi, Il) (1964)",Horror|Sci-Fi|Thriller +106297,"Sword and the Dragon, The (Ilya Muromets) (1956)",Adventure|Fantasy +106300,"Day The Earth Froze, The (Sampo) (1959)",Adventure|Fantasy +106302,Silmido (2003),Action|Drama|War +106306,Snowball Effect: The Story of 'Clerks' (2004),Documentary +106310,In Tranzit (2008),Drama|War +106320,"Breed, The (2001)",Action|Adventure|Horror +106324,Beautiful Wave (2011),Adventure|Drama +106326,Things We Do For Love (Kaikella rakkaudella) (2013),Drama +106330,Last Vegas (2013),Comedy|Drama|Romance +106332,Muscle Shoals (2013),Documentary +106334,"Hollow Crown, The (2012)",Drama +106336,So Young (Zhi wo men zhong jiang shi qu de qing chun) (2013),Drama +106342,Different from You and Me (Anders als du und ich) (1957) ,Drama +106344,"Starving Games, The (2013)",Comedy +106346,W.C. Fields and Me (1976),Drama +106348,Outside the Law (2002),Action +106351,Apache Territory (1958) ,Action|Western +106353,Holes in My Shoes (2006),Documentary +106355,Apartment 4E (2012) ,Drama|Mystery +106363,Lumihiutalemuodostelma (2012),Comedy|Drama +106365,"Super Cops, The (1974)",Action|Comedy|Crime|Drama|Thriller +106369,Panic Button (2011),Horror|Thriller +106374,Painless (Insensibles) (2012) ,Fantasy|Horror|Mystery|War +106376,"Lords of Discipline, The (1983)",Thriller +106378,Won Ton Ton: The Dog Who Saved Hollywood (1976),Comedy +106384,"Beings (Fairy King of Ar, The) (2002)",Adventure|Children|Fantasy +106387,A Bucket of Blood (1995),Comedy|Horror|Thriller +106389,Buttcrack (1998),Comedy|Horror +106391,Card Subject To Change (2010),Documentary +106397,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama +106399,"Wonderful Crook, The (Pas si méchant que ça) (1975)",Crime|Drama|Romance +106401,Le convoyeur (2004),Crime|Drama|Thriller +106403,"Conclave, The (2006)",Drama +106405,Making the Boys (2011) ,Documentary +106407,Seduced and Abandoned (2013),Comedy|Documentary +106417,Absent (Ausente) (2011),Drama|Thriller +106421,"Institute, The (2013)",Documentary +106423,Dreamworld (2012),Comedy|Drama|Romance +106431,Chasing Ghosts: Beyond the Arcade (2007) ,Documentary +106434,Chillers (1987),Horror +106436,For Those in Peril (2013),Drama +106438,Philomena (2013),Comedy|Drama +106441,"Book Thief, The (2013)",Children|Drama|War +106443,"Best Man Holiday, The (2013)",Comedy|Drama +106450,Chicago Overcoat (2009),Action|Drama +106452,Ida (2013),Drama +106455,Metal Brothers (Mammas pojkar) (2012),Comedy +106458,"Tiger from Tjampa, The (Harimau Tjampa) (1953)",Drama +106460,Curse of the Oily Man (Sumpah orang minyak) (1956) ,Drama|Fantasy|Thriller +106462,"Fiancee, The (Parineeta) (1953)",Drama +106464,Aningaaq (2013),Drama +106466,"White Shadow, The (1924)",Drama +106471,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy +106473,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy +106475,Caught Inside (2010),Action|Adventure|Horror|Thriller +106483,All Mine to Give (1957),Drama|Romance +106485,China O'Brien (1990),Action +106487,"Hunger Games: Catching Fire, The (2013)",Action|Adventure|Sci-Fi|IMAX +106489,"Hobbit: The Desolation of Smaug, The (2013)",Adventure|Fantasy|IMAX +106491,47 Ronin (2013),Action|Adventure|Fantasy +106493,"Scarlet Letter, The (Der scharlachrote Buchstabe) (1973)",Drama +106495,"Girl From Nowhere, The (2012)",Drama|Romance +106498,"Magic Voyage of Sindbad, The (Sadko) (1953)",Adventure|Fantasy +106501,"Chameleon, The (2010) ",Drama +106503,"Enemies of Reason, The (2007)",Documentary +106506,World War II: When Lions Roared (1994),Drama|War +106508,"Dyatlov Pass Incident, The (Devil's Pass) (2013)",Mystery|Thriller +106510,"It's the Easter Beagle, Charlie Brown! (1974)",Animation|Children|Comedy +106515,Vali (2009),Action|Drama +106517,De la servitude moderne (2009),Documentary +106519,WikiRebels: The Documentary (2010),Documentary +106521,Beyond the Time Barrier (1960),Sci-Fi +106523,"Flight That Disappeared, The (1961)",Adventure|Fantasy|Sci-Fi +106525,"Crystal Ball, The (1943)",Comedy +106527,Chocchan's Story (Chocchan monogatari) (1996),Animation|Drama|War +106529,Dominion Tank Police (Dominion) (1988),Action|Animation|Comedy|Sci-Fi +106538,Flesh (1968),Drama +106540,Delivery Man (2013),Comedy +106542,Charlie Countryman (2013),Action|Comedy|Romance +106549,Back to the USSR - takaisin Ryssiin (1992),Comedy|Drama +106559,Bad Biology (2008),Comedy|Fantasy|Thriller +106561,Krrish 3 (2013),Action|Adventure|Fantasy|Sci-Fi +106563,Once Upon a Scoundrel (1974),Comedy +106565,Emotion (1966),Comedy|Horror +106579,Tales from the Organ Trade (2013),Crime|Documentary +106581,Bells of Capistrano (1942),Western +106583,Berlin Express (1948),Crime|Drama|Film-Noir|Thriller +106590,Hansel & Gretel (2013),Horror +106592,"Happy Poet, The (2010)",Comedy|Drama|Romance +106594,Red Flag (2012),Comedy|Drama|Romance +106599,Breakout (2013),Action +106607,Plankton (1994),Horror +106609,Shatter Dead (1994),Horror +106611,The Club (1994),Horror +106614,"Christmas Party, The (Joulubileet) (1996)",Comedy +106616,End of the World (1977),Mystery|Sci-Fi|Thriller +106618,My Louisiana Sky (2001),Drama +106620,Z.P.G. (1972),Sci-Fi|Thriller +106624,Twice Born (Venuto al mondo) (2012),Drama|Romance|War +106634,"Raisin in the Sun, A (2008)",Drama +106642,"Day of the Doctor, The (2013)",Adventure|Drama|Sci-Fi +106644,"Story of Esther Costello, The (1957)",Drama +106646,"Somewhat Gentle Man, A (En ganske snill mann) (2010)",Comedy|Crime|Drama +106648,Guilty of Romance (Koi no tsumi) (2011) ,Crime|Drama|Horror +106672,Club Fed (1990),Comedy +106674,Crackerjack (1994),Action +106676,Crime Wave (1985),Adventure|Comedy +106680,"Wankers, The (Les branleuses) (2011)",Documentary +106682,Apollo Zero (2009),Documentary +106684,Zero 2 (2010),Comedy|Thriller +106686,José and Pilar (José e Pilar) (2010),Documentary +106688,Crocodile (2000),Horror|Thriller +106690,"Mating of Millie, The (1948)",Comedy|Romance +106696,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance +106698,"Ninja, A Band of Assassins (Shinobi No Mono) (1962)",Action|Drama +106700,"Ferryman, The (2007)",Fantasy|Horror|Thriller +106702,"Strange Case of Dr. Jekyll and Miss Osbourne, The (Dr. Jekyll and His Women) (Docteur Jekyll et les femmes) (1981)",Horror +106704,Disco Godfather (1979),Action|Crime|Drama +106722,Crisis: Behind a Presidential Commitment (1963),Documentary +106725,"China Lake Murders, The (1990)",Drama|Thriller +106727,9 Month Stretch (9 mois ferme) (2013),Comedy +106729,"Galaxy Invader, The (1985)",Sci-Fi +106734,Marfa Girl (2012),Drama +106736,Bad Girls Go To Hell (1965),Drama +106739,Thankskilling (2009),Comedy|Horror +106741,ThanksKilling 3 (2012) ,Comedy|Horror +106745,"Stranger, The (Straniero, Lo) (1967)",Drama +106747,Circles (Krugovi) (2013),Drama +106749,Mr. Morgan's Last Love (2013),Comedy|Drama +106751,"Misérables in Concert, Les (1996)",Drama|Musical +106753,Shed No Tears (Känn ingen sorg) (2013),Drama|Musical|Romance +106762,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western +106766,Inside Llewyn Davis (2013),Drama +106768,"Wind Journeys, The (Viajes del viento, Los) (2009)",Drama +106782,"Wolf of Wall Street, The (2013)",Comedy|Crime|Drama +106785,Homefront (2013),Action|Crime|Thriller +106791,Cut and Run (Inferno in diretta) (1985),Adventure|Horror|Thriller +106794,Cyberjack (Virtual Assassin) (1995),Action|Sci-Fi +106820,Marriage Material (2012),Drama +106822,Shadows of a Hot Summer (Stíny horkého léta) (1978),Drama|Thriller +106824,Scissere (1982),Drama +106832,7th Cavalry (Seventh Cavalry) (1956),Western +106834,"Deeper Shade of Blue, A (2011)",Documentary +106839,Mandela: Long Walk to Freedom (2013),Drama +106841,August: Osage County (2013),Comedy|Drama +106848,Gamera: The Giant Monster (Daikaijû Gamera) (1965),Sci-Fi +106850,"Tale of Zatoichi, The (Zatôichi monogatari) (Zatôichi 1) (1962)",Drama +106852,"Tale of Zatoichi Continues, The (Zoku Zatôichi monogatari) (Zatôichi 2) (1962)",Action|Drama +106854,Angels Sing (2013),Comedy|Drama +106859,Amen (2013),Drama|Musical +106861,Violette (2013),Drama +106863,Concrete Night (Betoniyö) (2013),Drama +106866,Days Of Darkness (2007),Horror +106868,Breaking the Girls (2013) ,Crime|Thriller +106870,Grave Encounters 2 (2012),Horror +106873,Evangelion: 3.0 You Can (Not) Redo (2012),Action|Animation|Drama +106877,My Piece of the Pie (Ma part du gâteau) (2011),Comedy|Drama +106879,Fright Night 2: New Blood (2013),Horror +106881,Sweetwater (2013),Thriller|Western +106883,All is Bright (2013),Comedy|Drama +106887,True Heart (1997),Adventure|Children|Drama +106889,Tim's Vermeer (2013),Documentary +106892,After Tiller (2013),Documentary +106895,Lovecraft: Fear of the Unknown (2008),Documentary +106897,Stuck Between Stations (2011),Comedy|Drama|Romance +106906,Gamera vs. Barugon (1966),Action|Fantasy|Sci-Fi +106910,Legally Blondes (2009),Children|Comedy +106914,Rouva presidentti (2012),Documentary +106916,American Hustle (2013),Crime|Drama +106918,"Secret Life of Walter Mitty, The (2013)",Adventure|Comedy|Drama +106920,Her (2013),Drama|Romance|Sci-Fi +106922,New Tale of Zatoichi (Shin Zatôichi monogatari) (Zatôichi 3) (1963),Action|Drama +106924,Zatoichi the Fugitive (Zatôichi kyôjô-tabi) (Zatôichi 4) (1963),Action|Drama +106927,RoboGeisha (Robo-geisha) (2009),Action|Comedy|Sci-Fi +106963,"War Between Men and Women, The (1972)",Comedy +106967,"April Fools, The (1969)",Comedy|Drama|Romance +106970,Captain Abu Raed (2007),Drama +106972,"Man You Had in Mind, The (2006)",Documentary +106981,"Cosmonaut, The (2013)",Drama|Sci-Fi +106983,Young & Beautiful (2013),Drama +106986,"Life and Adventures of Santa Claus, The (1985)",Animation|Children +106988,Carmina or Blow Up (Carmina o revienta) (2012),Comedy|Drama +106990,Malta G.C. (1942),Documentary|War +106992,Cousin Angelica (La prima Angélica) (1974),Drama +106994,Baboona (1935),Adventure|Documentary +106996,Stakeout on Dope Street (1958),Crime|Drama +106998,Zatoichi Goes to the Fire Festival (Zatôichi abare-himatsuri) (Zatôichi 21) (1970),Action|Drama +107000,"Challenger Disaster, The (2013)",Drama +107002,Linsanity (2013),Documentary +107004,Some Girl(s) (2013),Comedy|Drama +107011,Música Campesina (Country Music) (2011),Comedy|Drama +107013,"Christmas Carol, A (1977)",Drama|Fantasy +107017,Open Grave (2013),Horror|Mystery|Thriller +107020,"Dead Next Door, The (1989)",Horror +107022,Ski Patrol (1940),Action|War +107024,Sel8nne (2013),Documentary +107028,"Fourth Angel, The (2001)",Action|Drama|Thriller +107032,Route 666 (2001),Action|Horror|Thriller +107039,The Rat Race (1960),Comedy|Drama|Romance +107042,Six by Sondheim (2013),Documentary +107050,Straight from the Heart (2003),Action|Adventure|Drama|Romance|Western +107052,"Punk Singer, The (2013)",Documentary +107055,"Dead Pit, The (1989)",Horror +107057,Dead Set (2008),Comedy|Drama|Horror +107059,Dead Silence (1997),Action|Drama|Thriller +107061,Urusei Yatsura Movie 2: Beautiful Dreamer (Urusei Yatsura 2: Byûtifuru dorîmâ) (1984),Animation|Comedy|Fantasy +107065,I-See-You.Com (2006),Comedy +107067,Pianomania (2009),Documentary +107069,Lone Survivor (2013),Action|Drama|Thriller|War +107075,"Christmas Carol, A (1997)",Animation|Drama|Fantasy +107077,"Christmas Carol: The Musical, A (Christmas Carol, A) (2004)",Drama|Fantasy|Musical +107079,"Fairly Odd Christmas, A (2012)",Children|Fantasy +107081,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama +107083,Geography Club (2013),Comedy|Drama|Romance +107085,Measuring the World (Die Vermessung der Welt) (2012),Adventure|Drama +107096,Three Stars (2010),Documentary +107098,"Noose, The (Petla) (1958)",Drama +107100,Sambizanga (1973),Drama +107102,My Amityville Horror (2012),Documentary +107106,Dead Weekend (1995),Comedy|Sci-Fi +107115,"Fairly Odd Movie: Grow Up, Timmy Turner!, A (2011)",Children|Fantasy +107117,"Armstrong Lie, The (2013)",Documentary +107128,"Blood Relatives (Liens de sang, Les) (1978)",Crime|Drama|Mystery|Thriller +107130,"Adventure in Space and Time, An (2013)",Drama +107132,Mountaintop Motel Massacre (1986) ,Horror|Thriller +107137,Star Trek: Of Gods and Men (2007),Action|Adventure|Sci-Fi +107141,Saving Mr. Banks (2013),Comedy|Drama +107143,Kinbaku (2010),Documentary +107145,Cockpit (2012),Comedy +107147,Last Winter (L'hiver dernier) (2011),Drama +107153,"Frozen Dead, The (1966)",Horror|Sci-Fi +107155,Captive Women (1000 Years from Now) (3000 A.D.) (1952),Sci-Fi +107157,"Boy and the Pirates, The (1960)",Adventure|Fantasy +107159,Zatoichi and the Chest of Gold (Zatôichi senryô-kubi) (Zatôichi 6) (1964),Action|Drama +107161,Zatoichi's Flashing Sword (Zatôichi abare tako) (Zatôichi 7) (1964),Action|Drama +107172,Ways to Live Forever (2010),Children|Drama +107174,La Rabbia (1963),Documentary +107176,Visions of Europe (2004),Comedy|Drama +107178,Ghetto (Vilniaus Getas) (2006),War +107183,"Battle of amfAR, The (2013)",Documentary +107185,Blue Sunshine (1978),Horror|Thriller +107188,Adventures of Zatoichi (Zatôichi sekisho yaburi) (Zatôichi 9) (1964),Action|Drama +107194,Edmund Kean: Prince Among Lovers (Kean) (1924),Drama +107196,Is the Man Who Is Tall Happy? (2013),Animation|Documentary +107199,Reel Rock 8 (2013) ,Documentary +107202,Reel Rock 7 (2012) ,Documentary +107204,Outbound (Periferic) (2010),Action|Drama +107207,All Things to All Men (2013),Crime|Thriller +107209,"Outsider, The (2014)",Action|Crime|Drama +107213,"Truth About Emanuel, The (2013)",Drama|Thriller +107215,Midnight Clear (2006),Drama +107217,The Nutcracker in 3D (2009),Action|Children|Fantasy|Musical +107224,"Wipers Times, The (2013)",War +107226,"Storm in Summer, A (2000)",Drama +107230,Deadbolt (1992),Thriller +107232,"Deadly Spawn, The (1983)",Horror|Sci-Fi +107234,Deadly Surveillance (1991),Action|Drama|Thriller +107236,Those Daring Young Men in Their Jaunty Jalopies (1969),Adventure|Comedy|Crime|Romance +107238,Rhythm of a Crime (Ritam zlocina) (1981),Crime|Drama +107241,Cowboy del Amor (2005),Documentary +107243,Gregoire Moulin vs. Humanity (Grégoire Moulin contre l'humanité) (2001),Comedy|Romance +107248,"Night of the Hunted, The (Nuit des traquées, La) (1980)",Horror|Sci-Fi +107252,Island at War (2004),Drama|War +107262,Zatoichi and the Doomed Man (Zatôichi sakate giri) (Zatôichi 11) (1965),Action|Drama +107264,Zatoichi's Revenge (Zatôichi nidan-kiri) (Zatôichi 10) (1965),Action|Drama +107266,I Heart Monster Movies (2012),Documentary|Horror +107268,Deadly Voyage (1996),Drama|Thriller +107270,Decampitated (1998),Comedy|Horror +107274,"Deep, The (Djúpið) (2012)",Drama +107278,Lips of Blood (Lèvres de sang) (1975),Horror +107281,"Gentlemen Don't Eat Poets (Grotesque, The) (1995)",Comedy|Drama|Horror +107289,American Raspberry (Prime Time) (Funny America) (1977),Comedy +107295,"Last Ride, The (2012)",Drama +107297,Hava Nagila: The Movie (2012),Comedy|Documentary|Musical +107299,"Bling Ring, The (2011)",Drama +107302,"Perfect Man, A (2013)",Drama +107304,Gurren Lagann: Childhood's End (Gekijô ban Tengen toppa guren ragan: Guren hen) (2008),Adventure|Animation|Drama|Sci-Fi|War +107306,Gurren Lagann: The Lights in the Sky are Stars (Gekijô ban Tengen toppa guren ragan: Ragan hen) (2009),Adventure|Animation|Drama|Sci-Fi|War +107309,Una Noche (2012),Drama +107312,Lady and the Tramp II: Scamp's Adventure (2001),Adventure|Animation|Children +107314,Oldboy (2013),Action|Drama|Mystery +107316,WW III: World War III (Der 3. Weltkrieg) (1998),Documentary|War +107326,Aquí Entre Nos (Between Us) (2012),Comedy|Romance +107328,"Shiver of the Vampires, The (Frisson des vampires, Le) (1971)",Horror +107334,"Sucker, The (Corniaud, Le) (1965)",Comedy +107338,Dampfnudelblues (2013),Comedy|Crime +107342,Zatoichi and the Chess Expert (Zatôichi Jigoku tabi) (Zatôichi 12) (1965),Action|Drama +107344,Zatoichi's Vengeance (Zatôichi no uta ga kikoeru) (Zatôichi 13) (1966),Action|Drama +107346,Zatoichi's Pilgrimage (Zatôichi umi o wataru) (Zatôichi 14) (1966),Action|Drama +107348,Anchorman 2: The Legend Continues (2013),Comedy +107350,Escape Fire: The Fight to Rescue American Healthcare (2012),Documentary +107352,Killing Lincoln (2013),Drama|War +107354,Good Ol' Freda (2013),Documentary +107357,Call Me Crazy: A Five Film (2013),Drama +107359,What If... (An...) (2012),Drama|Romance +107361,Unbeatable (Ji zhan) (2013),Action|Drama +107368,Sarah Silverman: We Are Miracles (2013),Comedy +107370,Footprints on the Moon (Le orme) (Primal Impulse) (1975),Mystery|Thriller +107372,Happy Family (2010),Comedy +107380,Mike Tyson: Undisputed Truth (2013),Comedy +107382,Whoopi Goldberg Presents Moms Mabley (2013),Documentary +107397,"Take Her, She's Mine (1963)",Comedy +107400,Bonnie and Clyde (2013),Crime|Documentary|Drama +107402,Christmas Eve (1947),Comedy|Drama +107404,"Executioner, The (Massacre Mafia Style) (1978)",Crime|Drama|Thriller +107406,Snowpiercer (2013),Action|Drama|Sci-Fi +107408,Only Old Men Are Going to Battle (V boy idut odni stariki) (1973),Comedy|Drama|War +107410,Guest from the Future (Gostya iz buduschego) (1985),Adventure|Drama|Sci-Fi +107412,"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)",Comedy|Romance +107418,Phase 7 (2011),Comedy|Sci-Fi|Thriller +107422,Hellbound? (2012),Documentary +107424,Demon Wind (1990),Horror +107426,Demons 2 (Dèmoni 2... l'incubo ritorna) (1986),Horror +107434,Diplomatic Immunity (2009– ),Comedy +107436,Haunter (2013),Horror|Mystery|Thriller +107445,"Big Fix, The (1978)",Comedy|Mystery|Thriller +107447,Wrong Cops (2013),Comedy|Crime +107449,"Muppet Christmas: Letters to Santa, A (2008)",Children|Comedy +107456,"Great Diamond Robbery, The (1992)",Comedy|Crime +107458,Diving In (1990),Comedy|Drama +107460,La guerre des tuques (1984),Adventure|Children|Comedy|Drama +107462,Ninja: Shadow of a Tear (2013),Action|Crime|Thriller +107466,Always (1985),Comedy|Drama +107469,"Sandlot 3, The (Sandlot: Heading Home, The) (2007)",Children|Fantasy +107477,Trinity: Gambling for High Stakes (Odds and Evens) (Pari e dispari) (1978),Comedy|Crime +107481,Free Style (2008),Drama +107484,James Gandolfini: Tribute to a Friend (2013),Documentary +107499,"Vida precoz y breve de Sabina Rivas, La (Precocious and Brief Life of Sabina Rivas, The) (2012)",Adventure|Drama|Romance +107501,$ellebrity (Sellebrity) (2012),Documentary +107503,Annie Get Your Gun (1957),Musical|Western +107505,Macabre (Macabro) (1980),Horror|Thriller +107516,Punk's Dead: SLC Punk! 2 (2014),Comedy +107537,Q (2011),Drama +107539,In the Fog (V tumane) (2012),Drama|War +107541,As Cool As I Am (2013),Comedy|Drama +107543,False Trail (Jägarna 2) (2011),Crime|Mystery|Thriller +107546,Everything Happens to Me (a.k.a. Why Did You Pick on Me?) (Chissà perché... capitano tutte a me) (1980),Children|Comedy|Sci-Fi +107548,Ice Quake (2010) ,Action|Sci-Fi|Thriller +107551,Snow Beast (2011) ,Drama|Sci-Fi|Thriller +107555,Fireworks Wednesday (Chaharshanbe-soori) (2006),Drama|Mystery|Romance +107557,Fun Size (2012),Comedy +107559,Am Ende eiens viel zu kurzen Tages (Death of a superhero) (2011),Animation|Drama +107561,Someone Like Him (Einer wie Bruno) (2011),Comedy|Drama +107563,"Princess for Christmas, A (2011)",Children|Comedy +107565,"Fuck You, Goethe (Fack Ju Göhte) (2013)",Comedy +107567,Kaksi kotia (Dagmamman) (2013),Drama +107569,Tenderness (Hellyys) (1972),Comedy +107573,Apnea (Apnoia) (2010),Drama +107575,Jo Pour Jonathan (2010),Drama +107577,Sweet Evil (L'enfance du mal) (2010),Drama +107579,Gasht-e ershad (2012),Comedy|Crime|Drama|Romance +107581,No Where No One (Hich Koja Hich Kas) (2013),Drama|Romance +107584,Miffo (2003),Comedy|Drama|Romance +107589,Bad Fucking (2013),Comedy +107591,Open Up to Me (Kerron sinulle kaiken) (2013),Drama +107595,"Fly Away (Bis zum Horizont, dann links!) (2012)",Comedy +107601,Das Leben ist nichts für Feiglinge (2012),Drama +107603,Heiter bis wolkig (2012),Comedy|Drama|Romance +107610,Alien Cargo (1999),Sci-Fi +107612,WNUF Halloween Special (2013),Comedy|Horror +107614,White Reindeer (2013),Comedy|Drama +107617,Red Obession (2013),Documentary +107619,"Snow on the Pines, The (2013)",Drama|Romance +107621,"Wooden Bridge, The (2012)",Drama|Romance +107623,"2013 Rock and Roll Hall of Fame Induction Ceremony, The (2013)",Documentary|Musical +107625,Gorko! (2013),Comedy +107627,"Physician, The (2013)",Adventure|Drama +107630,High School (2010),Comedy +107632,Carmen (1918),Drama +107634,Grand Tour: Disaster in Time (Timescape) (1992),Children|Sci-Fi +107636,Springsteen & I (2013),Documentary +107638,I Will Fight No More Forever (1975),Action|Drama|War|Western +107640,"Glass Agency, The (Ajans-E Shisheh-I) (1999)",Crime|Drama|Film-Noir|Thriller +107643,Here Without Me (Inja bedoone man) (2011),Drama|Film-Noir|Mystery|Romance +107645,"Dinner, The (Diner, Het) (2013)",Drama|Thriller +107647,Wonderful and Loved by All (Underbar och älskad av alla) (2007),Comedy +107649,Borgman (2013),Thriller +107651,Solo (2013) ,Mystery|Thriller +107653,"Lost Thing, The (2010)",Animation|Drama|Fantasy +107656,Buddy Goes West (Occhio alla penna) (1981),Comedy|Western +107658,Mio in the Land of Faraway (Mio min Mio) (1987),Adventure|Children|Drama|Fantasy|Mystery +107662,Zatoichi's Cane Sword (Zatôichi tekka tabi) (Zatôichi 15) (1967),Action|Adventure|Drama +107664,Wild Women (1970),Action|Western +107667,"Guide, The (O Xenagos) (2011)",Drama +107669,Our Little Differences (Die feinen Unterschiede) (2012),Drama +107671,Boy Eating the Bird's Food (To agori troei to fagito tou pouliou) (2012),Drama +107673,"Laughing Woman, The (Frightened Woman, The) (Femina ridens) (1969)",Thriller +107675,Vendetta (2013),Action|Crime +107677,"Human Race, The (2013)",Action|Horror|Sci-Fi +107682,Escape to Athena (1979),Action|Adventure|Comedy|War +107684,Smiley (2012),Horror +107686,Sometime in August (Mitte Ende August) (2009),Drama +107688,Dot.Kill (2005),Crime|Thriller +107690,Pretty Good for a Human (People Not as Bad as They Seem) (Aika hyvä ihmiseksi) (1977),Comedy|Drama +107692,"Hijack That Went South, The (Kaappari) (2013)",Action|Comedy|Crime +107696,I Am Not a Hipster (2012),Drama +107698,Rio Sex Comedy (2010),Comedy|Drama +107700,I Am Divine (2013),Documentary +107702,Grudge Match (2013),Comedy +107704,Justin Bieber's Believe (2013),Documentary +107707,Dhoom (2004),Action|Crime|Musical|Romance +107710,Marvin Hamlisch: What He Did for Love (2013),Documentary|Musical +107713,Meat the Truth (2008),Documentary +107716,"Citizen, The (2012)",Drama +107718,State of Play (2003),Crime|Drama|Mystery +107723,Highlander: The Search for Vengeance (2007),Action|Adventure|Fantasy +107725,"Botany of Desire, The (2009)",Documentary +107730,By the People: The Election of Barack Obama (2009),Documentary +107732,"Pirates of Penzance, The (2006)",Adventure|Comedy|Musical +107735,American Addict (2012),Documentary +107737,Bounty Killer (2013),Action|Sci-Fi|Thriller +107740,"South, The (Lomalla) (2000)",Drama|Thriller +107743,"Class of 92, The (2013)",Documentary +107745,12 Rounds 2: Reloaded (2013),Action|Adventure|Thriller +107747,Nude for Satan (Nuda per Satana) (1974),Horror +107752,White Fang (Zanna Bianca) (1973),Adventure +107754,Soundbreaker (2012) ,Documentary +107756,A.C.O.D. (2013),Comedy +107758,Ass Backwards (2013),Comedy +107762,Dollman vs. Demonic Toys (1993),Action|Fantasy|Horror +107765,Dream Machine (1991),Action|Comedy|Crime +107767,"Dungeon Masters, The (2008)",Documentary +107769,Paranormal Activity: The Marked Ones (2014),Horror|Thriller +107771,Only Lovers Left Alive (2013),Drama|Horror|Romance +107778,Inn of Evil (Inochi bô ni furô) (1971),Crime|Drama +107780,Cats (1998),Musical +107782,Gold (1934),Crime|Sci-Fi +107827,Swing (2002),Comedy|Drama|Musical +107836,Annie Get Your Gun (1967),Comedy|Musical +107840,B.T.K. (2008),Crime|Drama|Horror|Mystery|Thriller +107842,Short Eyes (1977),Drama +107846,MacGyver: Trail to Doomsday (1994),Action|Adventure +107848,Vegucated (2010),Comedy|Documentary +107851,Serrallonga (2008),Adventure|Drama +107853,Scorching Winds (Garm Hava) (Garam Hawa) (1974),Drama +107855,Ditirambo (1969),Comedy|Drama|Mystery|Thriller +107858,Earth vs. the Spider (2001),Horror|Sci-Fi|Thriller +107860,Easy Wheels (1989),Action|Comedy +107863,Cold Trail (Köld slóð) (2006),Drama|Mystery|Thriller +107865,"Glass-blower's Children, The (Glasblåsarns barn) (1998)",Children|Drama +107867,Restless Souls (Bag det stille ydre) (2005),Drama|Horror|Mystery +107869,Goliath Awaits (1981),Drama|Sci-Fi|War +107875,Hit Man (1972),Crime|Drama +107877,The Valley of Gwangi (1969),Sci-Fi|Thriller|Western +107879,Voyage to the Prehistoric Planet (1965),Adventure|Sci-Fi +107881,Greenwich Village: Music That Defined a Generation (2012) ,Documentary +107883,The Lunchbox (2013),Drama|Romance +107885,Kauwboy (2012),Drama +107890,Liberty (1929),Comedy +107894,"Killings at Outpost Zeta, The (1980)",Drama|Sci-Fi +107897,Expect No Mercy (1995),Action|Sci-Fi +107899,"Expert, The (1995)",Action +107901,"Secret, The (2007)",Drama|Romance +107903,Stars (1959),Drama|War +107906,Lost in Siberia (Ausgerechnet Sibirien) (2012),Comedy|Drama +107910,I Know That Voice (2013),Documentary +107912,"Fallen, The (2004)",Action|Drama|War +107914,Fade To Black (1980),Comedy|Horror|Thriller +107916,Yves Saint Laurent (2014),Drama|Romance +107919,Trader Games (Krach) (2010),Action|Drama|Thriller +107928,Summer Things (Embrassez qui vous voudrez) (2002),Comedy|Drama|Romance +107943,Bad Karma (Hell's Gate) (2002),Horror|Thriller +107945,Bad Karma (2012),Thriller +107947,Bandits (Bandidos) (1991),Action|Adventure|War +107949,"Invisible Woman, The (2013)",Drama|Romance +107951,Hunting Elephants (2013),Comedy|Crime +107953,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX +107955,"Snitch Cartel, The (El cartel de los sapos) (2011)",Crime|Drama +107958,Foosball (Metegol) (2013),Adventure|Animation|Romance +107960,Dirty Movie (2011),Comedy +107962,Freezer (2014),Action|Thriller +107964,Modern Boy (Modeon boi) (2008),Drama +107966,Caught (1987),Drama +107968,"Texican, The (1966)",Adventure|Western +107970,Love and Sex under Nazi Occupation (Amour et sexe sous l'occupation) (2011) ,Documentary +107972,"Gilded Lily, The (1935)",Comedy|Romance +107974,"Bride Comes Home, The (1935)",Comedy|Romance +107976,Family Honeymoon (1949),Comedy|Romance +107978,"Like Father, Like Son (Soshite chichi ni naru) (2013)",Drama +107980,"Railway Man, The (2013)",Drama +107982,Sand Sharks (2011),Comedy|Horror|Sci-Fi|Thriller +107984,Massacre Canyon (1954),Western +107987,Diana (2013),Drama|Romance +107990,"We and the I, The (2012)",Drama +107997,We Are What We Are (2013),Drama|Horror|Mystery|Thriller +107999,Dragon ball Z 04: Lord Slug (1991),Animation|Children +108001,To Tulsa and Back: On Tour with J.J. Cale (2005),Documentary +108003,Forsaking All Others (1934),Comedy|Drama|Romance +108005,"Flesh Merchant, The (Wild and Wicked, The) (1956)",Drama +108007,Child Bride (1938),Drama +108010,Magic Town (1947),Comedy|Romance +108012,Grand Isle (1991),Drama +108014,River Queen (2005),Action|Adventure|Drama|Romance|War +108016,Resistance (2011),Drama|Thriller|War +108041,"Me, Myself and Mum (Les garçons et Guillaume, à table!) (2013)",Comedy +108043,Milius (2013),Documentary +108046,"Soldier's Plaything, A (1930)",Comedy|Drama|Romance|War +108048,"Time for Killing, A (1967)",Western +108050,Summer of '62 (Cartouches gauloises) (2007),Drama|War +108052,Close to Leo (Tout contre Léo) (2002),Drama +108054,"Geographer Drank His Globe Away, The (Geograf globus propil) (2013)",Drama +108056,Pokémon Origins (2013),Adventure|Animation +108063,Screwed in Tallinn (Torsk på Tallinn - En liten film om ensamhet) (1999),Comedy|Drama +108065,Comrade Pedersen (Gymnaslærer Pedersen) (2006),Drama +108070,Fantastic Flesh: The Art of Make-Up EFX (2008),Documentary +108072,Fast Food (1989),Comedy +108074,Favorite Deadly Sins (1995),Comedy +108076,"Other Shore, The (2013)",Adventure|Documentary +108078,Chinese Puzzle (Casse-tête chinois) (2013),Comedy|Romance +108085,+1 (2013),Sci-Fi|Thriller +108088,Monica Z (2013),Drama +108090,Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996),Action|Adventure|Animation|Children +108092,"Raven, The (2006)",Crime|Horror|Thriller +108095,"The Hire: Follow, The (2001)",Drama +108097,There's Only One Sun (2007),Drama +108100,Honest Man: The Life of R. Budd Dwyer (2010),Documentary +108120,"Turtle's Tale 2: Sammy's Escape from Paradise, A (Sammy's avonturen 2) (Sammy's Adventures 2) (2012)",Adventure|Animation|Children +108125,Allotment Wives (1945),Crime|Drama|Film-Noir +108127,Dragon Crusaders (2011),Action|Adventure|Fantasy +108130,M for Mother (Mim mesle madar) (2006),Drama +108132,Rhino Season (Fasle kargadan) (2012) ,Drama|Fantasy|Film-Noir|Mystery|Romance|War +108134,"Lizard, The (Marmoulak) (2004)",Adventure|Comedy|Crime +108136,Lovers and Lollipops (1956),Drama|Romance +108138,Prata Palomares (1972),Horror|Thriller +108141,Creep Van (2012),Horror +108143,Cutie and the Boxer (2013),Documentary +108146,Rise of the Zombies (2012),Action|Horror|Thriller +108149,At Berkeley (2013),Documentary +108151,Harvey (1996),Fantasy +108153,Travelling Salesman (2012),Drama|Mystery|Sci-Fi|Thriller +108156,Ride Along (2014),Action|Comedy +108158,Penguin Pool Murder (1932),Comedy|Drama|Mystery|Romance +108160,Breakaway (Speedy Singhs) (2011),Comedy|Drama +108186,Nukes in Space (1999),Documentary +108188,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX +108190,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX +108192,Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007),Drama +108194,47 Ronin (Shijûshichinin no shikaku) (1994),Action|Drama +108196,Starflight: The Plane That Couldn't Land (1983),Drama|Sci-Fi +108200,Reasonable Doubt (2014),Crime|Thriller +108202,Heavy Metal Parking Lot (1986),Documentary|Musical +108209,18 Years Old and Rising (J'aime regarder les filles) (2011),Comedy +108212,Saint Laurent (2014),Drama|Romance +108214,"Prize of Peril, The (Prix du danger, Le) (1983)",Action|Drama +108216,Cargo (2013),Action|Drama|Fantasy|Horror +108218,"Road to Ruin, The (1934)",Drama +108220,"Square, The (Al Midan) (2013)",Documentary +108237,HOUBA! On the Trail of the Marsupilami (Sur la piste du Marsupilami) (2012),Adventure|Children|Comedy|IMAX +108239,Fear (1990),Horror|Thriller +108241,Fear No Evil (1981),Horror +108243,Devil's Due (2014),Horror +108246,Nicht mein Tag (2014),Action|Comedy|Crime +108248,Into the Mind (2013),Documentary +108250,Stille nacht (2004),Crime|Mystery|Thriller +108253,Shadow Puppets (2007),Horror|Mystery|Thriller +108255,Venus Wars (Venus Senki) (1989),Action|Animation|Sci-Fi|War +108257,"Adventures of Arsène Lupin, The (Aventures d'Arsène Lupin, Les) (1957)",Crime|Mystery +108261,"Final Cut, The (1996)",Action|Drama|Thriller +108265,"Night Walker, The (1964)",Horror|Mystery|Thriller +108267,L'antisémite (2012),Comedy +108271,Whitecoats (2004),Comedy +108280,Black Rock (2012),Horror|Thriller +108282,"First Power, The (1990)",Crime|Horror|Thriller +108285,"Assault, The (L'assaut) (2010)",Action|Thriller +108287,Holiday Spin (2012),Drama|Romance +108289,Flight 93 (2006),Drama +108306,Another Dawn (Distinto amanecer) (1943),Drama|Romance|Thriller +108311,Nobody Lives Forever (1946),Crime|Drama|Film-Noir +108313,Dirty Pictures (2000),Drama +108316,American Scary (2006),Comedy|Documentary|Horror +108318,"Single Shot, A (2013)",Crime|Drama|Film-Noir|Thriller +108328,When Darkness Falls (När mörkret faller) (2006),Drama +108330,Zero Tolerance (Noll tolerans) (1999),Action|Crime|Thriller +108332,"Mystery of the Yellow Room, The (Mystère de la chambre jaune, Le) (2003)",Comedy|Crime|Mystery +108342,"Monkey in Winter, A (Un singe en hiver) (1962)",Comedy|Drama +108360,Murders in the Zoo (1933),Crime|Horror|Mystery +108370,Are You Listening? (1932),Drama +108389,We Need a Vacation (Fais-moi des vacances) (2002),Comedy|Drama +108395,Why Not Me? (Pourquoi pas moi ?) (1999),Comedy +108401,Husk (2011),Horror|Thriller +108403,"Rock-afire Explosion, The (2008)",Documentary +108405,Weddings and Babies (1958) ,Drama|Romance +108407,Yanco (1961) ,Drama +108410,Maiden's Cheek (To xylo vgike apo ton Paradeiso) (1959),Comedy|Romance +108413,"My Daughter, the Socialist (I kori mou, i sosialistria) (1966)",Comedy|Romance +108422,2 + 2 (Dos más dos) (2012),Comedy +108425,Hello Herman (2012),Drama +108427,Blume in Love (1973),Comedy|Drama|Romance +108445,Concussion (2013),Drama +108447,Atrocious (2010),Horror|Thriller +108466,Curse of the Ring (Ring of the Nibelungs) (2004),Action|Adventure|Drama|Fantasy +108468,Decoding Annie Parker (2013),Drama +108473,"Laterna, ftoheia kai garyfallo (1958)",Comedy|Drama|Romance +108476,"Auntie from Chicago, The (I theia apo to Chicago) (1957)",Comedy|Romance +108479,Forced to Kill (1994),Action|Thriller +108481,Forever Hardcore: The Documentary (2005),Documentary +108488,Whitewash (2013),Drama +108491,Friends of God: A Road Trip with Alexandra Pelosi (2007),Documentary +108493,"Fourth World War, The (2003)",Documentary +108495,Zincirbozan (2007),Crime|Drama +108497,Blood Runs Cold (2011),Horror +108499,True Confession (1937),Comedy +108501,Justice League: War (2014),Action|Adventure|Animation|Fantasy|Sci-Fi +108503,Gamera vs. Viras (1968) ,Action|Sci-Fi +108506,Dark Touch (2013),Horror +108508,Mother of George (2013),Drama +108510,Of Snails and Men (Despre oameni si melci) (2012),Comedy +108512,Cousinhood (Primos) (2011),Comedy +108514,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance +108516,Visitors (2013),Documentary +108518,Coco Chanel (2008),Romance +108520,"Louise Bourgeois: The Spider, the Mistress and the Tangerine (2008)",Documentary +108522,"Goebbels Experiment, The (Das Goebbels Experiment) (2005)",Documentary +108524,"Riddle of the Sands, The (1979)",Adventure|Drama|Thriller +108527,Catastroika (2012),Documentary +108529,Vizontele Tuuba (2004),Comedy|Drama +108531,"Spanish Earth, The (1937)",Documentary +108534,Easy Money 2 (Snabba cash II) (2012),Action|Crime|Drama +108536,Medora (2013),Documentary +108538,Rampage at Apache Wells (1965),Adventure|Western +108540,Ernest & Célestine (Ernest et Célestine) (2012),Adventure|Animation|Children|Comedy|Drama|Romance +108542,Wyoming Renegades (1954),Romance|Western +108544,"Simple Life of Noah Dearborn, The (1999)",Drama +108546,Private Lessons (Élève libre) (2008),Drama +108548,"Big Bang Theory, The (2007-)",Comedy +108551,"String, The (Le fil) (2009)",Drama +108564,Love Before Breakfast (1936),Comedy|Romance +108566,"Man Who Sleeps, The (Un homme qui dort) (1974)",Drama +108569,"Monkey's Paw, The (2013)",Horror|Thriller +108571,Mitt (2014),Documentary +108575,Dear Mr. Watterson (2013),Documentary +108577,Oxy-Morons (2010),Crime|Drama +108579,Samurai Cop (1989),Action|Thriller +108581,Naked Blood: Megyaku (Nekeddo burâddo: Megyaku) (1996),Horror +108583,Fawlty Towers (1975-1979),Comedy +108588,Frozen Assets (1992),Comedy +108590,Full Eclipse (1993),Crime|Horror|Sci-Fi +108592,My Son (Mon fils à moi) (2006),Drama +108595,Over Your Cities Grass Will Grow (2010),Documentary +108597,Space Raiders (1983),Action|Adventure|Sci-Fi|Western +108599,"Banshee Chapter, The (2013)",Horror|Thriller +108601,Drift (2013),Drama +108639,America (1924),Drama|War +108647,It Boy (20 ans d'écart) (2013),Comedy|Romance +108649,"Redemption of General Butt Naked, The (2011)",Documentary|Drama +108653,"Law of Enclosures, The (2000)",Drama +108656,Report to the Commissioner (1975),Crime|Drama +108660,Deceptive Practice: The Mysteries and Mentors of Ricky Jay (2012),Documentary +108663,"House of Branching Love, The (Haarautuvan rakkauden talo) (2009)",Comedy|Drama +108667,Les Feux Arctiques (Arktiset tulet) (2011),Documentary|Drama +108674,Bachelor Apartment (1931),Comedy|Drama|Romance +108676,Backstreet Dreams (Backstreet Strays) (1990),Drama +108685,Full Moon High (1981),Comedy|Fantasy|Horror +108687,Gas (1981),Comedy +108689,"I, Frankenstein (2014)",Action|Fantasy|Sci-Fi|IMAX +108692,Yu-Gi-Oh! (1999),Animation +108694,Yu-Gi-Oh!: Bonds Beyond Time (Gekijouban Yuugiou: Chouyuugou! Jikuu o koeta kizuna) (2010),Animation|Fantasy +108696,From the Earth to the Moon (1958),Adventure|Fantasy|Sci-Fi +108704,Last Run (2001),Action|Crime|Thriller +108709,Generation Kill (2008),Drama|War +108711,Getting In (1994),Comedy|Romance|Thriller +108713,Tomorrow Night (1998),Comedy|Drama +108715,Better Living Through Chemistry (2014),Comedy|Drama +108719,Snakehead Terror (2004),Action|Horror|Sci-Fi|Thriller +108727,Nymphomaniac: Volume I (2013),Drama +108729,Enemy (2013),Mystery|Thriller +108745,Battleground (Skeleton Lake) (2012),Action|Horror|Thriller +108748,Tapestries of Hope (2009),Documentary +108752,Headquarters (Päämaja) (1970) ,Drama|War +108754,Xingu (2012) ,Adventure|Drama +108756,Adam and Eve (Adão e Eva) (1995),Drama +108758,Temptation (Tentação) (1997),Drama|Romance +108760,Big Bad Wolves (2013),Crime|Thriller +108764,"Strange Little Cat, The (Das merkwürdige Kätzchen) (2013)",Comedy|Drama +108766,William Kunstler: Disturbing the Universe (2009),Documentary +108768,Kawasaki's Rose (2009) ,Drama +108770,I Saw the Sun (Günesi gördüm) (2009),Drama +108773,Come Live with Me (1941),Comedy|Romance +108775,Striking Range (2006),Action|Thriller +108778,Stranger by the Lake (L'inconnu du lac) (2013),Drama|Romance +108780,Labor Day (2013),Drama|Romance +108787,Tom at the Farm (Tom à la ferme) (2013),Drama +108789,Beyond the Walls (Hors les murs) (2012),Drama +108791,"Noordzee, Texas (North Sea Texas) (2011)",Drama +108795,Wonder Woman (2009),Action|Adventure|Animation|Fantasy +108797,Flowers in the Attic (2014),Drama|Mystery|Thriller +108799,Speedway (1929),Drama|Romance +108804,Android Apocalypse (2006),Sci-Fi|Thriller +108806,Heartbreak Hotel (2006),Comedy +108808,Blackout (1978),Action|Thriller +108811,French Fried Vacation 3 (Les bronzés 3: amis pour la vie) (2006),Comedy +108816,"Sleep Room, The (1998)",Drama|Thriller +108819,"Grave, The (1996)",Comedy|Horror|Thriller +108821,Grotesque (1988),Horror +108823,"Hacks (Sink or Swim) (Big Twist, The) (1997)",Comedy|Mystery +108825,"Young and Prodigious T.S. Spivet, The (L'extravagant voyage du jeune et prodigieux T.S. Spivet) (2013)",Adventure|Children|Drama +108844,BBOY for LIFE (2012),Adventure|Crime|Documentary|Drama +108846,Before and After (1979),Drama +108852,Behind Enemy Lines (1997),Action|Thriller +108857,Manhunt (2008),Horror|Thriller +108860,"Perils of Gwendoline in the Land of the Yik Yak, The (1984)",Adventure|Romance +108862,New Gladiators (I guerrieri dell'anno 2072) (1984),Action|Drama|Mystery +108864,"Prey, The (La proie) (2011)",Action|Crime|Thriller +108866,"Blank Generation, The (1976)",Musical +108869,Scorned (2013),Thriller +108871,À propos de Nice (1930),Documentary +108873,"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)",Comedy|Drama|Romance +108875,Harvest (Stadt Land Fluss) (2011),Drama|Romance +108877,"Soul of Bread, The (Ai de mian bao hun) (2012)",Comedy|Romance +108879,Teen Beach Movie (2013),Children|Musical +108882,Tale of the Mummy (1998),Adventure|Fantasy|Horror +108885,Asier ETA biok (2013),Documentary +108888,Faithless (1932),Drama +108891,Zatoichi the Outlaw (Zatôichi rôyaburi) (Zatôichi 16) (1967),Action|Drama +108893,Zatoichi Challenged (Zatôichi chikemuri kaidô) (Zatôichi 17) (1967),Action|Drama +108895,Gamera vs. Guiron (1969),Action|Adventure +108899,Gloria (2013),Comedy|Drama +108901,"I, Cesar (Moi César, 10 ans 1/2, 1m39) (2003)",Children|Comedy +108914,Behind Enemy Lines: Colombia (Behind Enemy Lines 3: Ghost Watch) (2009),Action|Thriller|War +108916,"Bekännelsen (Confession, The) (2001)",Thriller +108924,Best of the Badmen (1951),Western +108928,"Monuments Men, The (2014)",Action|Drama|War +108930,Just Like a Woman (2012),Drama +108932,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy +108934,We're Not Dressing (1934),Comedy|Musical +108936,Man of the World (1931),Drama|Romance +108938,Aliyah (Alyah) (2012) ,Drama +108940,"Road, The (2011)",Crime|Drama|Horror|Thriller +108942,Dirty Story (1984),Drama +108945,RoboCop (2014),Action|Crime|Sci-Fi|IMAX +108947,Samson and Delilah (1996),Adventure|Drama +108949,"Art of the Steal, The (2013)",Crime +108951,Rain or Shine (1930),Comedy|Drama|Romance +108953,Crave (2012),Drama|Thriller +108968,"Betrayed (True and the Brave, The) (1954)",Drama|Romance|Thriller|War +108977,Paranoia Agent (2004),Animation|Crime|Drama|Horror|Mystery +108979,Cowboy Bebop (1998),Action|Adventure|Animation|Crime|Sci-Fi +108981,Nymphomaniac: Volume II (2013),Drama|Mystery +108983,La Luna (2011),Animation +108987,"Place in the Sun, A (En plats i solen) (2012)",Crime|Drama|Thriller +108989,"Streetcar Named Desire, A (1984)",Drama +108991,"Streetcar Named Desire, A (1995)",Drama +108997,Between Us (2012),Drama +109000,Monsieur Batignole (2002),Comedy|Drama +109002,Song of the Bloodred Flower (Laulu tulipunaisesta kukasta) (1971),Drama +109004,Loputon Gehennan liekki (2011),Documentary +109006,Tukkijoella (1928),Drama +109008,Viper in the Fist (2004),Drama +109010,"Courage of the Eagles, The (Les aiguilles rouges) (2006)",Drama +109015,"Beware the Gonzo (Gonzo Files, The) (2010)",Comedy|Drama|Romance +109017,"Beware, My Lovely (1952)",Crime|Drama|Film-Noir +109019,Bewitched (Alter Ego) (1945),Crime|Drama|Film-Noir|Thriller +109021,Beyoncé: Life Is But a Dream (2013),Documentary +109023,Beyond (2012),Thriller +109027,Eyjafjallajökull (2013),Comedy +109030,Métastases (2012),Comedy +109032,Hornets' Nest (1970),Action|Drama|War +109034,Evidence (1995),Documentary +109038,Schooled: The Price of College Sports (2013) ,Documentary +109042,Knights of Badassdom (2013),Adventure|Comedy|Fantasy +109045,"Secret of NIMH 2: Timmy to the Rescue, The (1998)",Adventure|Animation|Children|Musical +109055,Ten Little Indians (Ein Unbekannter rechnet ab) (And Then There Were None) (1974),Crime|Drama|Mystery +109057,Alone (Issiz adam) (2008),Drama|Romance +109060,"Messenger, The (Ulak) (2008)",Fantasy|Mystery +109062,Mustalaishurmaaja (1929),Drama|Romance +109064,"Trials of Muhammad Ali, The (2013)",Documentary +109066,You Ain't Seen Nothin' Yet (Vous n'avez encore rien vu) (2012),Drama +109069,"Lost Reels of Pancho Villa, The (Los rollos perdidos de Pancho Villa) (2003)",Documentary +109072,Sabotage (2014),Action|Crime|Drama +109074,"Four, The (Si da ming bu) (2012)",Action|Crime|Fantasy +109076,Hallåhallå (2014),Comedy +109093,Don 2 (2011),Action|Crime|Mystery|Romance|Thriller +109096,Pardes (1997),Action|Comedy|Musical|Romance +109098,"Father, The (Pedar) (1996)",Drama +109102,"Little Brother, Big Trouble: A Christmas Adventure (Niko 2: Lentäjäveljekset) (2012)",Adventure|Animation|Children|Comedy +109104,Quest for a Heart (Röllin sydän) (2007),Adventure|Animation|Children|Fantasy|Musical +109106,"Wizard of Baghdad, The (1960)",Comedy|Fantasy|Musical +109108,"Certain Kind Of Death, A (2003)",Documentary +109151,"Elephant in the Living Room, The (2010)",Documentary +109153,Ray Harryhausen: Special Effects Titan (2011),Documentary +109155,That Guy... Who Was in That Thing (2012),Documentary +109157,"Long Way Down, A (2014)",Comedy|Drama +109159,"Three Brothers 2, The (Les trois frères, le retour) (2014)",Comedy +109161,Venus in Fur (La Vénus à la fourrure) (2013),Drama +109168,Devil Hunter (El caníbal) (1980),Horror +109173,Storm Rider (2013),Drama +109177,Don't Go Breaking My Heart (Daan gyun naam yu) (2011),Romance +109179,S.O.S. Eisberg (1933),Adventure|Drama +109181,Adult World (2013),Comedy +109183,Date and Switch (2014),Comedy +109185,Night on the Galactic Railroad (Ginga-tetsudo no yoru) (1985),Animation|Drama +109187,"Zero Theorem, The (2013)",Drama|Fantasy|Sci-Fi +109189,Endless Love (2014),Drama|Romance +109191,Winter's Tale (2014),Drama|Fantasy|Mystery +109193,Me tulemme taas (1953),Comedy|Musical +109195,Cavemen (2013),Comedy|Romance +109197,"Station, The (Blutgletscher) (2013)",Horror +109199,"Theatre Bizarre, The (2011)",Horror +109201,Agenda: Grinding America Down (2010),Documentary +109203,"Story of Ruth, The (1960)",Drama +109205,No Nukes (1980),Documentary|Musical +109207,"Super Inframan, The (Zhong guo chao ren) (1975)",Action|Fantasy|Sci-Fi +109209,Fagbug (2009),Documentary +109226,Attila (2013),Action|Horror|Thriller +109229,Beyond the Law (Beyond the Law - Blue) (1968),Comedy|Crime|Drama +109231,Beyond the Law (Lain ulkopuolella) (1987),Crime|Drama|Thriller +109235,Beyond Tomorrow (Beyond Christmas) (1940),Drama|Fantasy|Romance +109237,Bhowani Junction (1956),Adventure|Drama|Romance +109239,Women in Love (2011),Drama +109241,On the Other Side of the Tracks (De l'autre côté du périph) (2012),Action|Comedy|Crime +109243,Joe (2013),Drama +109245,"Inside Man, The (Slagskämpen) (1984)",Action|Mystery|Thriller +109249,"Journey, The (El viaje) (1992)",Drama +109251,Social Genocide (Memoria del saqueo) (2004),Documentary +109253,Argentina latente (2007),Documentary +109256,Jaguar (1967),Documentary +109265,Bickford Shmeckler's Cool Ideas (2006),Comedy|Romance +109267,Big Bad Wolf (2006),Comedy|Horror +109269,Big Easy Express (2012),Documentary|Musical +109273,Big Money Rustlas (Big Money Ru$tla$) (2010),Comedy|Western +109277,Love Story 2050 (2008),Adventure|Comedy|Musical|Romance|Sci-Fi +109280,"Summit, The (2012)",Documentary +109282,GLOW: The Story of the Gorgeous Ladies of Wrestling (2012),Documentary +109284,This American Journey (2013),Documentary +109287,Ultraman (Chôhen kaijû eiga: Urutoraman) (1967),Action|Fantasy|Sci-Fi +109290,The African (1983),Adventure|Comedy +109295,Cold Comes the Night (2013),Crime|Drama|Thriller +109313,Chouchou (2003),Comedy +109315,A Mulher Invisível (2009),Comedy +109317,Someone Marry Barry (2014),Comedy +109319,Gamera the Brave (2006),Action|Sci-Fi +109321,"Painting, The (Tableau, Le) (2011)",Animation +109323,Are All Men Pedophiles (2013),Documentary +109325,Climate of Change (2010),Documentary +109330,Bury My Heart at Wounded Knee (2007),Drama|Western +109347,Bigfoot: The Unforgettable Encounter (1994),Adventure|Children +109351,"Cutting Edge: Going for the Gold, The (2006)",Comedy|Drama|Romance +109353,Meet Me at the Fair (1953),Musical +109355,13 Fighting Men (1960),Western +109357,Pretty/Handsome (2008),Drama +109359,Gerontophilia (2013),Comedy|Romance +109362,Mystery (Fu cheng mi shi) (2012),Crime|Mystery|Thriller +109364,"King and the Mockingbird, The (Le roi et l'oiseau) (1980)",Animation|Children|Fantasy +109366,11.6 (2013),Crime|Drama +109368,Nightmare Factory (2011),Documentary +109370,Magic & Bird: A Courtship of Rivals (2010),Documentary +109372,About Last Night (2014),Comedy|Romance +109374,"Grand Budapest Hotel, The (2014)",Comedy|Drama +109376,Cuban Fury (2014),Comedy +109379,Life of a King (2013),Drama +109381,"Paimen, piika ja emäntä (1938)",Drama +109383,"Oversimplification of Her Beauty, An (2012)",Animation|Comedy|Drama|Romance +109385,Informant (2012),Documentary +109388,All the Light in the Sky (2012),Drama +109390,"Black Coal, Thin Ice (Bai ri yan huo) (2014)",Crime|Drama|Mystery|Thriller +109392,Blind Massage (Tui na) (2014),Drama +109397,Jamesy Boy (2014),Crime|Drama +109399,Jailbait (2014),Crime|Drama|Thriller +109416,Bring It On: Fight to the Finish (2009),Comedy +109418,Scott Joplin (1977),Drama +109420,Mater and the Ghostlight (2006),Animation|Children|Comedy +109423,Your Friend the Rat (2007),Animation +109425,Dug's Special Mission (2009),Animation|Children|Comedy +109430,Happy End (2011),Drama +109434,Psychosis (2010),Crime|Horror|Mystery +109436,"Almost Man, The (Mer eller mindre mann) (2012)",Comedy|Drama +109441,Satanas (2007),Crime|Drama +109444,"Education of Mohammad Hussein, The (2013)",Documentary +109446,Shinobi No Mono 2: Vengeance (Zoku shinobi no mono) (1963),Action|Drama +109448,Rapture (Arrebato) (1980),Drama|Horror +109450,News from Home (1977),Drama +109452,Omar (2013),Drama|Romance +109455,Highway (2014) ,Crime|Drama|Romance +109457,When Pigs Have Wings (2011),Comedy +109459,"Ditchdigger's Daughters, The (1997)",Drama +109461,Supercondriaque (2014),Comedy +109463,7 Boxes (2012),Thriller +109468,Prêt à tout (2014),Comedy +109470,"Brats, The (Les gamins) (2013)",Comedy +109472,Grand Piano (2013),Mystery|Thriller +109474,Satan's Sword (Daibosatsu tôge) (1960),Action|Drama +109476,Satan's Sword II (Daibosatsu toge: Ryujin no maki) (1960),Action|Drama +109479,Satan's Sword 3: The Final Chapter (Daibosatsu toge: Kanketsu-hen) (1961),Action|Drama +109481,"Boob, The (1926)",Comedy|Romance +109483,That Awkward Moment (2014),Comedy|Romance +109485,"Inevitable Defeat of Mister & Pete, The (2013)",Drama +109487,Interstellar (2014),Sci-Fi|IMAX +109489,"Amish Murder, An (2013)",Action|Crime|Drama +109492,"Last of the Unjust, The (Dernier des injustes, Le) (2013)",Documentary +109514,Apartment 1303 (2007),Horror +109516,Apartment 1303 3D (2012),Horror +109518,Armageddon (Tin dei hung sam) (Heaven Earth Great Ambition) (1997),Action|Comedy|Fantasy|Horror +109520,Armageddon (Armaguedon) (1977),Crime|Thriller +109522,B.U.S.T.E.D (Everybody Loves Sunshine) (Busted) (1999),Crime|Drama +109524,"Woman Always Pays, The (Afgrunden) (Abyss, The) (1910)",Drama +109526,"Gabby Douglas Story, The (2014)",Drama +109529,Everybody Street (2013),Documentary +109533,"Mark, The (1961)",Drama +109542,Bill Maher: Victory Begins at Home (2003),Comedy +109556,Bill Maher... But I'm Not Wrong (2010),Comedy +109563,Bionicle: Mask of Light (Bionicle: Mask of Light - The Movie) (2003),Action|Adventure|Animation|Children|Fantasy +109565,Väreitä (1965),Drama +109567,All the Young Men (1960),Drama|War +109569,3 Days to Kill (2014),Action|Crime|Drama +109571,Into the Middle of Nowhere (2010),Adventure|Children|Comedy|Documentary|Drama +109573,Family Tree (L'arbre et la forêt) (2010),Drama +109576,Welcome to the Jungle (2013),Comedy +109578,Non-Stop (2014),Action|Mystery|Thriller +109580,"Look of Love, The (2013)",Comedy|Drama +109592,Bionicle 2: Legends of Metru Nui (2004),Action|Adventure|Animation|Children|Fantasy +109594,Bionicle 3: Web of Shadows (2005),Action|Adventure|Animation|Children +109596,Wrinkles (Arrugas) (2011),Animation|Drama +109598,Vertical Features Remake (1978),Documentary +109600,"Art of War III: Retribution, The (2009)",Action|Thriller +109602,"Monster X Strikes Back: Attack the G8 Summit, The (Girara no gyakushû: Tôya-ko Samitto kikiippatsu) (2008)",Comedy|Sci-Fi +109607,In Fear (2013),Thriller +109613,One Mile Away (2012),Documentary +109616,Fire in the Blood (2013),Documentary +109621,Tell Them Anything You Want: A Portrait of Maurice Sendak (2009),Documentary +109623,Love Games (2012),Animation|Drama|Romance +109627,Mystery Road (2013),Mystery|Thriller +109629,Breathe In (2013),Drama|Romance +109633,"Garden of Words, The (Koto no ha no niwa) (2013)",Animation|Romance +109635,Pandora's Promise (2013),Documentary +109638,"Gentle Breeze in the Village, A (Tennen kokekkô) (2007) ",Drama +109640,I Don't Want to Be a Man (Ich möchte kein Mann sein) (1918),Comedy|Romance +109643,Always Leave Them Laughing (1949),Comedy|Drama +109647,Bengazi (1955),Adventure|Crime|Drama +109649,Bionicle: The Legend Reborn (2009),Action|Adventure|Animation|Sci-Fi +109653,Bitter Feast (2010),Comedy|Horror|Thriller +109665,Messages Deleted (2010),Mystery|Thriller +109667,Great Freedom No. 7 (Port of Freedom) (Große Freiheit Nr. 7) (1944),Drama|Musical|Romance +109671,Shinobi No Mono 3: Resurrection (Shin shinobi no mono) (1963),Action|Drama +109673,300: Rise of an Empire (2014),Action|Drama|War|IMAX +109675,"Pill, The (2011)",Comedy|Drama|Romance +109677,"Adventures of Hajji Baba, The (1954)",Action|Adventure|Romance +109680,The Pursuit of Happiness (1971),Drama +109682,"Sumo Do, Sumo Don't (Shiko funjatta) (1992)",Comedy +109684,First Squad: The Moment of Truth (2009),Action|Animation|Drama|War +109687,Particle Fever (2013),Documentary +109697,Inspector Palmu's Error (Komisario Palmun erehdys) (1960),Comedy|Crime|Mystery|Thriller +109701,Any Number Can Play (1949),Drama +109704,Bitter Sweet (1940),Drama|Musical|Romance +109708,Black Hand (1950),Crime|Film-Noir|Thriller +109710,"Black Heaven (L'autre monde) (Other World, The) (2010)",Drama +109713,Star Wars: Threads of Destiny (2014),Action|Adventure|Sci-Fi +109715,Inquire Within (2012),Comedy +109718,"Leo's Room (Cuarto de Leo, El) (2009)",Drama +109720,Contracted (2013),Drama|Horror|Thriller +109723,"Bag Man, The (2014)",Crime|Drama|Thriller +109726,Dorian Gray (1970),Drama|Horror +109728,Kai Po Che! (2013),Drama +109731,Legend of the Boneknapper Dragon (2010),Animation|Fantasy +109733,Captain EO (1986),Adventure|Children|Comedy|Musical|Sci-Fi +109736,"Concepción Arenal, la visitadora de cárceles (2012)",Drama +109738,"Bullet for the General, A (Quién Sabe?) (1966)",Western +109740,Obvious Child (2014),Comedy|Romance +109742,Cheap Thrills (2013),Comedy|Thriller +109764,Steel (1979),Action|Adventure|Crime|Drama +109767,Toomorrow (1970),Comedy|Musical|Sci-Fi +109769,"Keeper of Lost Causes, The (Kvinden i buret) (2013)",Crime|Mystery|Thriller +109771,Dead Genesis (2010),Horror +109773,Crazy Kind of Love (2013),Comedy|Drama|Romance +109776,Dick Figures: The Movie (2013),Action|Adventure|Animation +109779,Choppertown: The Sinners (2005),Action|Adventure|Documentary +109781,"Werewolf Boy, A (Neuk-dae-so-nyeon) (2012)",Drama|Fantasy|Romance +109783,"Trouble at Timpetill (Enfants de Timpelbach, Les) (2008)",Adventure|Children|Fantasy +109786,Carmina and Amen (Carmina y amén) (2014),Comedy|Drama +109788,Bad Country (2014),Action|Crime|Drama|Thriller +109790,Ashura (2005),Action|Fantasy +109793,Queen of Outer Space (1958),Adventure|Fantasy|Sci-Fi +109796,Special Correspondents (Envoyés très spéciaux) (2009),Comedy +109798,Buddies (Colegas) (2012),Adventure|Comedy +109800,Quebrando o Tabu (2011),Documentary +109802,"Man from the Future, The (O Homem do Futuro) (2011)",Comedy|Fantasy|Sci-Fi +109804,God's Gun (1976),Western +109806,"Story of Yonosuke, A (Yokomichi Yonosuke) (2013)",Comedy|Drama +109808,"Dove, The (1974)",Drama|Romance +109810,Elena Undone (2010),Drama|Romance +109812,Romance in a Minor Key (Romanze in Moll) (1943),Drama|Romance +109833,"Blackbeard, the Pirate (1952)",Adventure +109839,Blast (2004),Action|Comedy|Thriller +109841,Blessed (2004),Drama|Horror|Thriller +109846,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy +109848,Under the Skin (2013),Horror|Sci-Fi|Thriller +109850,Need for Speed (2014),Action|Crime|Drama|IMAX +109853,Barefoot (2014),Comedy|Drama|Romance +109858,Entre ses mains (2005),Drama|Romance|Thriller +109862,You've Been Trumped (2011),Documentary +109864,Veronica Mars (2014),Comedy|Crime|Drama +109869,All for the Winner (Dou sing) (1990),Action|Comedy +109874,8 (2008),Drama +109877,"8 (8, the Play) (2012)",Drama +109881,"She Does Not Drink, Smoke or Flirt But... She Talks (1970)",Comedy +109887,"Great Passage, The (Fune wo amu) (2013)",Drama +109889,Cranford (2007),Drama +109891,Sonny Boy (1989),Action|Drama|Thriller +109893,Chiko (2008),Crime|Drama +109895,Bad Words (2013),Comedy +109897,Son of God (2014),Drama +109902,Fightville (2011),Documentary +109904,Choke (1999),Documentary +109910,Blind Date (2007),Comedy|Drama|Romance +109912,Blind Faith (1998),Drama +109914,Blind Terror (2001),Drama|Mystery|Thriller +109921,Meth (2006),Documentary +109923,You Will Be My Son (Tu seras mon fils) (2011),Drama +109925,"It Is Written in the Stars, Inspector Palmu (Tähdet kertovat, komisario Palmu) (1962)",Crime|Mystery +109927,"Vodka, Mr. Palmu (Vodkaa, komisario Palmu) (1969)",Crime|Mystery +109929,Superpower (2008),Documentary +109931,Repentance (Monanieba) (1984),Drama +109935,The Artist and the Model (2012),Drama +109939,Sniper: Reloaded (2011) ,Action|Drama|Thriller|War +109941,Puss in Boots: The Three Diablos (2012),Animation|Comedy +109943,Head Over Heels (De Pernas pro Ar) (2010),Comedy +109945,Meu Passado Me Condena: O Filme (2013),Comedy|Romance +109947,My Mom Is a Character (Minha Mãe é uma Peça: O Filme) (2013),Comedy +109949,Blood Out (2011),Action +109951,Daylight (Daglicht) (2013),Action|Thriller +109953,"Cat Concerto, The (1947)",Animation|Children|Comedy +109963,"French Minister, The (Quai d'Orsay) (2013)",Comedy +109965,Shrek the Musical (2013),Children|Comedy|Fantasy|Musical +109968,Why Don't You Play In Hell? (Jigoku de naze warui) (2013),Action|Drama +109971,Ocho apellidos vascos (2014),Comedy +109981,Such Good Friends (1971),Comedy|Drama +109983,Sextette (1978),Comedy|Musical|Romance +109985,"Human Factor, The (1979)",Drama|Thriller +109987,Love Simple (2009),Comedy|Romance +109989,On My Way (Elle s'en va) (2013),Comedy|Drama +109991,Spider (2007),Action|Drama +109993,George & A.J. (2009),Animation|Children|Comedy +109995,Age of Uprising: The Legend of Michael Kohlhaas (Michael Kohlhaas) (2013),Drama +109997,Nobody Owns Me (Mig äger ingen) (2013),Drama +110001,Cosmic Psychos: Blokes You Can Trust (2013),Documentary|Musical +110004,"Next Man, The (1976)",Action|Thriller +110006,Wanda Nevada (1979),Comedy|Mystery|Romance|Western +110008,"'Human' Factor, The (Human Factor, The) (1975)",Drama|Thriller +110026,Prison Terminal: The Last Days of Private Jack Hall (2013),Crime|Documentary +110030,"Bless Me, Ultima (2013)",Drama|War +110032,Blondes at Work (1938),Crime|Drama|Mystery|Romance +110034,Blondie of the Follies (1932),Comedy +110036,Blood and Roses (Et mourir de plaisir) (To Die with Pleasure) (1960),Horror +110039,Space Pirate Captain Harlock (2013),Animation|Sci-Fi +110042,Schwestern (2013),Comedy +110044,Dragonwyck (1946),Drama|Mystery|Thriller +110046,"Hunting Party, The (1971)",Action|Drama|Western +110048,Grandma's Boy (1922),Action|Comedy|Romance +110052,Stay as You Are (1978),Drama|Romance +110056,Our Modern Maidens (1929),Comedy|Drama +110058,Broderskab (Brotherhood) (2009),Drama +110061,Two Queens and One Consort (Twee vorstinnen en een vorst) (1981),Drama +110063,Le crocodile du Botswanga (2014),Comedy +110067,W.W. and the Dixie Dancekings (1975),Comedy +110070,From Within (2008),Horror|Thriller +110084,Blood Crime (2002),Drama|Thriller +110086,Blood Night: The Legend of Mary Hatchet (Blood Night) (2009),Horror +110090,Bloodfist (1989),Action +110097,From Dad to Son (2012),Animation|Drama +110102,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX +110104,Pioneer (Pionér) (2013),Thriller +110106,Naked Harbour (Vuosaari) (2012),Drama +110108,Asphalt Playground (La cité rose) (2012),Comedy +110110,Starred Up (2013),Drama +110114,Kill Me Now (2012),Comedy|Horror +110116,Key of Life (Kagi-dorobô no mesoddo) (2012),Comedy|Crime|Romance +110119,Mass Effect: Paragon Lost (2012),Action|Animation|Sci-Fi +110123,Beautiful Darling (2010),Documentary +110127,Noah (2014),Adventure|Drama|IMAX +110130,"Nut Job, The (2014)",Adventure|Animation|Children|Comedy +110132,Avengers Confidential: Black Widow & Punisher (2014),Action|Animation|Sci-Fi +110134,Belle and Sebastien (Belle et Sébastien) (2013),Adventure +110136,Amazonia (2013),Adventure|Documentary +110138,Aya of Yop City (2013),Animation|Comedy +110140,Takedown: The DNA of GSP (2014),Documentary +110155,"Man Called Adam, A (1966)",Drama +110159,April Showers (2009),Drama +110163,Aujourd'hui (2012),Drama +110167,"Judge and the Assassin, The (Juge et l'assassin, Le) (1976)",Crime|Drama +110169,Les Lyonnais (2011),Drama|Thriller +110171,Gabrielle (2013),Drama|Romance +110173,Wolf (2013),Crime|Drama|Thriller +110177,Who Is Killing the Great Chefs of Europe? (1978),Comedy|Crime|Mystery +110179,Stardust (1974),Drama +110181,"Green Slime, The (1968)",Drama|Horror|Sci-Fi +110194,Mistaken for Strangers (2013),Comedy|Documentary +110196,i hate myself :) (2013),Comedy|Documentary|Drama +110198,Don't Stop Believin': Everyman's Journey (2012),Documentary +110200,Blank City (2010),Documentary +110214,Bloodknot (1995),Drama|Thriller +110216,BloodRayne: The Third Reich (2011),Action|Adventure|Fantasy|Horror +110219,Outlaw Blues (1977),Drama +110223,"Prisoner of Zenda, The (1979)",Adventure|Comedy +110225,"Haunted, The (1991)",Horror +110227,Across to Singapore (1928),Drama|Romance +110229,George and the Dragon (2004),Action|Adventure|Children|Comedy|Fantasy +110233,Man at Bath (Homme au bain) (2010),Drama +110235,Our Paradise (Notre paradis) (2011),Crime|Drama +110240,BloodRayne: Deliverance (BloodRayne II: Deliverance) (2007),Action|Fantasy|Western +110242,Bloody Murder 2: Closing Camp (2003),Drama|Horror|Mystery|Thriller +110253,Boarding School (Leidenschaftliche Blümchen) (Preppy School Girls) (1978),Comedy +110255,Kalevala - Uusi aika (2013),Drama|Fantasy +110259,"Town Called Hell, A (1971)",Action|Comedy|Drama|Western +110265,"Little Stiff, A (1991)",Comedy +110267,Season of Monsters (Szörnyek évadja) (1987) ,Drama +110269,My Way Home (Így jöttem) (1965) ,Drama +110273,Diplomacy (Diplomatie) (2014),Drama|War +110276,By the Pricking of My Thumbs (Mon petit doigt m'a dit...) (2005),Comedy|Mystery +110278,Partners in Crime (Associés contre le crime...) (2012),Comedy|Crime +110281,King of Comedy (Hei kek ji wong) (1999),Comedy|Drama|Romance +110284,alaskaLand (2013),Drama +110286,13 Sins (2014),Horror|Thriller +110288,Slacker 2011 (2011),Comedy|Drama +110293,Table 7 (2010),Comedy|Drama +110295,"Legend of Hercules, The (2014)",Action|Adventure +110297,Muppets Most Wanted (2014),Adventure|Comedy|Crime +110310,Bob Saget: That Ain't Right (2007),Comedy +110312,Bobcat Goldthwait: You Don't Look the Same Either (2012),Comedy +110314,"Me Two (Personne aux deux personnes, La) (2008)",Comedy|Fantasy +110316,"Dinner Guest, The (L'invité) (2007)",Comedy +110318,Do You Wanna Know a Secret? (2001),Horror|Mystery|Thriller +110320,"Man, Woman and the Wall (Kikareta onna no mirareta yoru) (2006)",Drama|Romance|Thriller +110322,Dom Hemingway (2014),Comedy|Crime|Drama +110324,"Missing Picture, The (L'image manquante) (2013)",Documentary +110326,Gleason (2002),Drama +110328,Electrick Children (2012),Drama +110330,Me and you (io e te) (2012),Drama +110337,Moebius (2013),Drama +110339,Night Gallery (1969),Horror|Mystery +110342,"Pool Without Water, A (Mizu no nai puuru) (1982)",Crime|Drama +110346,Blood Ties (2013),Crime|Drama|Thriller +110348,Wetlands (Feuchtgebiete) (2013),Comedy|Drama +110350,Free to Play (2014),Documentary +110352,Survival Island (Three) (2005),Adventure|Drama|Horror +110354,Trailer Park Jesus (2012),Comedy|Romance +110366,Jean-Michel Basquiat: The Radiant Child (2010),Documentary +110368,Barabbas (1953),Drama +110370,Barabbas (2012),Drama +110372,"Boeing, Boeing (1965)",Comedy +110375,Bond Girls Are Forever (2002),Documentary +110377,Fiston (2014),Comedy +110380,Nitro Circus: The Movie (2012),Action|Comedy|Documentary +110387,"Unknown Known, The (2013)",Documentary +110390,Best Man Down (2012),Drama +110399,Boots and Saddles (1937),Action|Western +110403,Border Feud (1947),Action|Comedy|Western +110405,"Border Run (Mule, The) (2012)",Crime|Thriller +110407,"Machine, The (2013)",Sci-Fi|Thriller +110409,"Loves of Pharaoh, The (Das Weib des Pharao) (1922)",Drama|Romance|War +110412,NATO's Secret Armies (Gladio: L'esercito segreto della Nato) (2010),Documentary +110415,Breaking the Silence: Truth and Lies in the War on Terror (2003),Documentary +110417,Seizure (1974),Horror +110419,Palestine Is Still the Issue (2003),Documentary +110426,In the Blood (2014),Action|Crime|Thriller +110431,"Girl from the Naked Eye, The (2012)",Action|Romance|Thriller +110433,Möbius (2013),Drama|Thriller +110435,"Sheba, Baby (1975)",Action|Crime|Drama|Thriller +110437,Forgetting the Girl (2012),Drama +110439,Celestial Wives of the Meadow Mari (Nebesnye zheny lugovykh mari) (2012),Drama +110441,Viva Knievel! (1977),Action +110445,Going Postal (2010),Comedy|Fantasy +110447,Her Master's Voice (2012),Comedy|Documentary +110449,Sun Don't Shine (2012),Crime|Drama|Mystery +110451,"Quiet Ones, The (2014)",Horror +110453,Draft Day (2014),Drama +110455,"Mysterious Geographic Explorations of Jasper Morello, The (2005)",Adventure|Animation +110457,Detour (2013) ,Thriller +110459,Girls Against Boys (2012) ,Crime|Thriller +110461,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama +110478,Borderline (2002),Crime|Thriller +110482,Scary or Die (2012),Horror +110484,When Jews Were Funny (2013),Documentary +110486,Big Jim McLain (1952),Action|Crime|Drama|Romance|Thriller +110491,Borrowed Hearts (Borrowed Hearts: A Holiday Romance) (1997),Drama|Fantasy|Romance +110493,Boston's Finest (2010),Crime|Drama +110497,"Thirteen, The (Trinadtsat) (1937)",Adventure|War +110501,The Raid 2: Berandal (2014),Action|Crime|Thriller +110503,Metro Manila (2013),Action|Crime|Drama +110505,Sparks (2013),Action|Fantasy|Mystery|Sci-Fi|Thriller +110508,Trancers II (1991),Action|Sci-Fi +110510,Série noire (1979),Film-Noir +110512,"My Lady Margarine (Die Austernprinzessin) (Oyster Princess, The) (1919)",Comedy +110515,Superdad (1973),Comedy +110531,Bounty Hunters (Bail Enforcers) (2011),Action +110533,Boy (2009),Drama|Romance +110535,"Boy, Did I Get a Wrong Number! (1966)",Comedy +110537,Boys' Night Out (1962),Comedy +110539,Maternal Halfbrothers (Braca po materi) (1988),Drama +110541,"Brain Smasher... A Love Story (Bouncer and the Lady, The) (1993)",Action|Comedy +110546,MC5: Kick Out the Jams (1999),Documentary +110548,"Loving Story, The (2011)",Documentary +110551,Boca (2010),Action|Crime|Drama +110553,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX +110555,Love Meetings (Comizi d'amore) (1964),Documentary +110557,Graceland (2012),Crime|Drama|Thriller +110560,That'll Be the Day (1973),Drama +110562,Dragonfly (1976),Drama +110564,"Slams, The (1973)",Action|Drama +110566,Son of Batman (2014),Action|Adventure|Animation|Crime|Fantasy +110568,"Terror Beneath the Sea, The (Kaitei daisensô) (1966)",Action|Sci-Fi +110580,Trancers III (1992),Action|Horror|Sci-Fi +110582,16 Acres (2012),Documentary +110584,Shenandoah (2012),Documentary +110586,Calvary (2014),Comedy|Drama +110588,"Iran Job, The (2012)",Documentary +110591,Oculus (2013),Horror +110593,Full House (O. Henry's Full House) (1952),Drama +110597,Angels in the Outfield (1951),Comedy|Fantasy +110599,"Sweet Jesus, Preacherman (1973)",Action|Drama +110601,"Cosmic Monster, The (1958)",Drama|Horror|Sci-Fi +110603,God's Not Dead (2014),Drama +110607,Dinoshark (2010),Horror|Sci-Fi +110609,Our Blushing Brides (1930),Drama +110611,Cold in July (2014),Drama|Thriller +110613,"Second Woman, The (1950)",Drama|Film-Noir|Mystery +110627,Hit Lady (1974),Crime|Drama|Thriller +110629,All American Chump (1936),Comedy +110631,American Cyborg: Steel Warrior (1993),Action|Sci-Fi +110633,Arsène Lupin (1932),Mystery|Romance +110635,Beauty and the Beast (1962),Children|Fantasy|Horror|Romance +110637,Beauty and the Beast (Beauty and the Beasts: A Dark Tale) (2009),Fantasy +110639,"Beauty and the Beast (Belle et la bête, La) (2014)",Fantasy|Romance +110641,G@me (2003),Thriller +110643,Claustrofobia (2011),Thriller +110645,"Witching and Bitching (Brujas de Zugarramurdi, Las) (2014)",Comedy|Fantasy +110647,Lovin' Molly (1974),Drama|Romance +110649,March or Die (1977),Adventure|Drama|Romance|War +110651,"Norseman, The (1978)",Action|Adventure +110653,"Signal, The (Señal, La) (2007)",Drama|Film-Noir|Mystery|Romance +110655,Rio 2 (2014),Adventure|Animation|Children|Comedy +110657,Hiding Cot (Piilopirtti) (1978),Comedy +110669,"Honest Liar, An (2014)",Comedy|Documentary +110671,Cutlet for Three (Ein Schnitzel für drei) (2009),Comedy +110673,Echoes from the Dead (Skumtimmen) (2013),Drama|Mystery +110675,In Your Eyes (2014),Drama|Fantasy|Romance +110678,Bears (2014),Documentary +110686,Breaking Point (2009),Action|Crime|Drama|Thriller +110696,Bridge to the Sun (1961),Drama|Romance|War +110718,Fading Gigolo (2013),Comedy +110730,Transcendence (2014),Drama|Sci-Fi|IMAX +110739,"Reckoning, The (1969)",Drama +110744,Leo the Last (1970),Comedy|Drama +110746,Hatchet III (2013),Comedy|Horror +110748,Wake Wood (2010) ,Drama|Horror|Mystery +110750,Heaven Is for Real (2014),Drama +110752,Mondo Hollywood (1967),Documentary +110761,Bright Lights (Adventures in Africa) (1930),Drama|Musical +110763,Made for Each Other (1971),Comedy +110765,Pulling Strings (2013),Comedy|Romance +110769,Bullet Ballet (1998),Crime|Drama|Sci-Fi|Thriller +110771,"Other Woman, The (2014)",Comedy|Romance +110773,"Haunted House 2, A (2014)",Comedy|Horror +110779,What Matters Most (2001),Drama +110781,Mulan II (2004),Action|Animation|Children|Comedy|Musical +110788,Jupiter's Darling (1955),Comedy|Musical|Romance +110790,Along the Sungari River (Song hua jiang shang) (1947),Drama +110792,Ghost Adventures (2004),Documentary +110794,Out of the Blue (2002),Documentary +110796,Le Week-End (2013),Comedy|Drama +110798,Ikigami (2008),Action|Drama|Mystery|Thriller +110800,"Second Man, The (O Defteros Andras) (2013)",Drama +110802,Family Tree (2012),Drama +110805,"Glass Slipper, The (1955)",Musical|Romance +110807,All About the Feathers (Por Las Plumas) (2013),Comedy +110809,Vampire Academy (2014),Action|Comedy|Fantasy +110811,Dead in the Water (2002),Crime|Thriller +110813,Girl on a Bicycle (2013),Comedy|Romance +110818,Which Way to the Front? (1970),Comedy|War +110820,"Liberation of L.B. Jones, The (1970)",Crime|Drama +110824,Robocroc (2013),Action|Horror +110826,Brick Mansions (2014),Action|Crime|Drama +110828,Devil's Knot (2013),Crime|Drama|Thriller +110845,Bright Lights (1935),Comedy +110848,Bright Road (1953),Drama +110850,Broadway Melody of 1938 (1937),Musical|Romance +110852,Broadway Rhythm (1944),Musical +110854,Broadway Serenade (1939),Drama|Musical|Romance +110858,Firstborn (1984),Drama|Thriller +110860,"Nature of the Beast, The (1995)",Crime|Horror|Mystery|Thriller +110867,Conquest 1453 (Fetih 1453) (2012),Action|Adventure|Drama|War +110871,"Rocket, The (2013)",Drama +110873,"Centenarian Who Climbed Out the Window and Vanished, The (Hundraåringen som klev ut genom fönstret och försvann) (2013)",Adventure|Comedy|Drama +110880,New Orleans Uncensored (1955),Crime|Drama|Film-Noir|Thriller +110882,Locke (2013),Drama +110884,Shinobi No Mono 4: Siege (1964),Drama|War +110889,"Point Men, The (2001)",Action|Drama +110892,Mortified Nation (2013),Comedy|Documentary +110895,Goya: Crazy Like a Genius (2002),Documentary +110897,Alter Egos (2012),Comedy +110899,Rage (2014),Action|Crime|Thriller +110916,"Study in Scarlet, A (1933)",Mystery|Thriller +110921,Anne of Green Gables (1934),Children|Comedy|Drama +110948,September (2013),Drama +110951,Tungsten (2011),Drama +110966,Garden Lovers (Eedenistä pohjoiseen) (2014),Documentary +110968,Pompeii (2014),Action|Adventure|Drama +110970,Tout ce qui brille (2010),Comedy|Drama +110973,"Ultimate Accessory,The (100% cachemire) (2013)",Comedy +110975,Donovan's Echo (2011),Drama|Sci-Fi|Thriller +110982,13/13/13 (2013),Horror +110984,Age of Dinosaurs (2013),Action|Sci-Fi +111031,Manufacturing Reality: Slavoj Zizek and the Reality of the Virtual (Slavoj Zizek: The Reality of the Virtual) (2004),Documentary +111036,Attack from Space (1965),Action|Sci-Fi +111038,Ten Violent Women (1982),Action|Drama +111040,"3 Holiday Tails (Golden Christmas 2: The Second Tail, A) (2011)",Children|Comedy|Romance +111042,"Fever in the Blood, A (1961)",Drama +111044,"Golden Christmas, A (2009)",Children|Comedy|Romance +111046,"Golden Christmas 3, A (2012)",Children|Comedy|Romance +111050,"Haunting at Silver Falls, A (2013)",Horror|Thriller +111100,Three Faces East (1930),Drama|Mystery|War +111103,Mumblecore (2011),Drama|Romance +111105,Little Fauss and Big Halsy (1970),Drama +111107,Silver Bears (1978),Comedy|Crime +111109,"Man Who Loved Cat Dancing, The (1973)",Western +111111,Il Capitano (1991),Drama +111113,Neighbors (2014),Comedy +111115,"Girl, The (Flickan) (2009)",Drama +111119,Man in the Wilderness (1971),Adventure|Western +111124,Trick (2010),Action|Crime +111126,"Gladiators, The (Gladiatorerna) (1969)",Drama|Sci-Fi +111128,"Oh, Sun (Soleil O) (1967)",Drama +111130,Powers of Ten (1977),Documentary +111142,"Resurrection, A (2013)",Horror|Thriller +111144,Alpha and Omega 2: A Howl-iday Adventure (Alpha & Omega 2) (2013),Action|Adventure|Animation|Children|Comedy +111146,Alpha and Omega 3: The Great Wolf Games (2014),Action|Adventure|Animation|Children|Comedy +111170,Axed (2012),Drama|Horror|Thriller +111226,All of Me (2013),Documentary +111228,"Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A (2013)",Documentary +111230,Henry Kissinger: Secrets of a Superpower (Henry Kissinger - Geheimnisse einer Supermacht) (2008),Documentary +111233,Tentacles (Tentacoli) (1977),Horror|Sci-Fi|Thriller +111235,Jodorowsky's Dune (2013),Documentary|Sci-Fi +111237,Unlawful Killing (2011),Documentary +111245,"Case of You, A (2013)",Comedy|Romance +111247,"Blind Menace, The (Shiranui kengyô) (1960)",Crime|Drama +111249,Belle (2013),Drama +111251,"Immigrant, The (2013)",Drama|Romance +111253,Pulling John (2009),Documentary +111255,"Wednesday!, A (2008)",Action|Drama|Thriller +111257,Blindman (1971),Western +111259,Good People (2014),Drama|Thriller +111261,Heldorado (1946),Musical|Western +111264,"Wild Life, The (1984)",Comedy|Drama +111266,Combat Girls (Kriegerin) (2011),Drama +111283,Tonight You're Mine (2011),Comedy|Drama +111285,Crack-Up (1946),Crime|Film-Noir|Mystery +111287,Magic Magic (2013),Thriller +111290,Heli (2013),Crime|Drama +111303,I Think We're Alone Now (2008),Documentary +111310,Hide in Plain Sight (1980),Drama +111312,Into the Blue 2: The Reef (2009),Action|Adventure|Thriller +111314,Into the Storm (2009),Drama|War +111316,Atomic Rulers of the World (1965),Action|Sci-Fi +111318,City Under Siege (Chun sing gai bei) (2010),Action|Sci-Fi +111320,Mom's Night Out (2014),Comedy +111329,Memorial Day (2011),Action|Drama|War +111332,Viola (2012),Drama +111343,An Enemy of the People (1989),Drama +111345,Gods of the Plague (Götter der Pest) (1970),Crime|Drama +111347,Master of the House (Du skal ære din hustru) (Thou Shalt Honour Thy Wife) (1925),Drama +111349,"Redes (Fishermen's Nets) (Wave, The) (1936)",Drama +111351,Samaritan Zatoichi (Zatôichi kenka-daiko) (Zatôichi 19) (1968),Action|Adventure|Drama +111358,"Small Town in Texas, A (1976)",Action|Adventure|Crime|Drama|Romance +111360,Lucy (2014),Action|Sci-Fi +111362,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi +111364,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX +111368,Paid (1930),Crime|Drama|Film-Noir +111370,Walter Defends Sarajevo (Valter brani Sarajevo) (1972),War +111373,Lovely Molly (2011),Horror +111375,Walk of Shame (2014),Comedy +111377,Crystal Lake Memories: The Complete History of Friday the 13th (2013),Documentary|Horror +111380,Hunt vs Lauda: F1's Greatest Racing Rivals (2013),Documentary +111384,Blue Ruin (2013),Thriller +111387,Palo Alto (2013),Drama +111389,Kid Cannabis (2014),Drama +111401,"Home and the World, The (Ghare-Baire) (1984)",Drama +111403,"Stranger, The (Agantuk) (Visitor, The) (1991)",Drama +111405,Trances (1981),Documentary|Musical +111407,"Chambre en ville, Une (Room in Town, A) (1982)",Drama|Musical +111409,Zatoichi and the Fugitives (Zatôichi hatashi-jô) (Zatôichi 18) (1968),Action|Adventure|Drama +111411,Zatoichi at Large (Zatôichi goyô-tabi) (Zatôichi 23) (1972),Action|Adventure|Drama +111436,Jim Gaffigan: Obsessed (2014),Comedy +111439,Legends of Oz: Dorothy's Return (2014),Animation|Children|Musical +111441,"Lady in Number 6: Music Saved My Life, The (2014)",Documentary|Drama +111443,Chef (2014),Comedy +111445,"Doll Squad, The (1973)",Action|Thriller +111447,"Treasure Hunter, The (Ci ling) (2009)",Action|Adventure|Fantasy|Romance|Sci-Fi +111449,Burton and Taylor (2013),Drama +111451,In a Town This Size (2011),Documentary +111453,Strip Search (2004),Drama +111456,"Brasher Doubloon, The (1947)",Crime|Drama|Film-Noir|Mystery +111458,Blaise Pascal (1972),Drama +111460,Rosemary's Baby (2014),Horror|Thriller +111462,"Beach Girls and the Monster, The (1965)",Horror +111464,Top Banana (1954),Comedy|Musical|Romance +111468,Body of Water (Syvälle salattu) (2011),Drama|Mystery|Thriller +111486,Lesson of the Evil (Aku no kyôten) (2012),Thriller +111499,Zatoichi in Desperation (Shin Zatôichi monogatari: Oreta tsue) (Zatôichi 24) (1972),Action|Adventure|Drama +111505,"Love God?, The (1969)",Comedy +111507,"Last Time I Saw Archie, The (1961)",Comedy|Romance|War +111509,24 Exposures (2013),Crime|Drama|Thriller +111515,Zatoichi's Conspiracy (Shin Zatôichi monogatari: Kasama no chimatsuri) (Zatôichi 25) (1973),Action|Drama +111517,10.000 Km (Long Distance) (2014),Drama|Romance +111519,Johnny Express (2014),Animation|Comedy|Sci-Fi +111529,"Normal Heart, The (2014)",Drama +111542,Invaders from Space (1965),Action|Sci-Fi +111544,Utopia (2013),Documentary +111546,Paying the Price: Killing the Children of Iraq (2000),Documentary +111548,Welcome to Australia (1999),Documentary +111551,Afflicted (2013),Horror|Sci-Fi|Thriller +111553,Interior. Leather Bar. (2013),Drama +111566,American Horror House (Sorority Horror House) (2012),Horror +111568,American Milkshake (2013),Comedy +111570,"American Ghost Story, An (Revenant) (2012) ",Horror +111578,"Mansion of Madness, The (1973)",Horror +111583,An Enemy of the People (1978),Drama +111587,Turks & Caicos (2014),Drama|Mystery|Thriller +111589,Salting the Battlefield (2014),Drama|Mystery|Thriller +111592,Birth of the Living Dead (2013),Documentary +111595,Gen-Y Cops (Te jing xin ren lei 2) (Gen-X Cops 2: Metal Mayhem) (Metal Mayhem) (2000),Action|Sci-Fi +111601,Die Fischerin (2014),Drama +111603,Dark Girls (2011),Documentary +111614,El chocolate del loro (2004),Comedy +111617,Blended (2014),Comedy +111622,Begin Again (2013),Comedy|Romance +111624,Kelly & Cal (2014),Comedy|Drama +111626,"Brony Tale, A (2014)",Documentary +111628,Mega Python vs. Gatoroid (2011),Action|Horror|Sci-Fi +111630,Big Ass Spider! (2013),Comedy|Sci-Fi +111632,"Heat's On, The (1943)",Comedy|Musical +111638,An Enemy of the People (1966),Drama +111640,"Anna Nicole (Anna Nicole Smith Story, The) (2007)",Drama +111642,Anna Nicole (2013),Drama +111644,"Short Game, The (2013)",Documentary +111647,12 O'Clock Boys (2013),Documentary +111649,"Message to Garcia, A (1936)",Drama|Romance +111653,Nightwing (1979),Horror +111655,Satan's School for Girls (1973),Crime|Horror|Mystery +111657,"One and Only, The (1978)",Comedy|Romance +111659,Maleficent (2014),Action|Adventure|Children|IMAX +111661,"Two Faces of January, The (2014)",Thriller +111663,Zombeavers (2014),Action|Comedy|Horror +111667,Toward the Unknown (1956),Drama|Romance|War +111680,At Middleton (2013),Comedy|Romance +111689,Loving (1970),Comedy|Drama +111694,Lola (Twinky) (London Affair) (1970),Comedy|Drama|Romance +111696,Beneath the Valley of the Ultra-Vixens (1979),Comedy +111700,"Girl He Left Behind, The (1956)",Comedy|Drama +111702,Shoot-Out at Medicine Bend (1957),Western +111704,Darby's Rangers (1958),Action|Drama|War +111706,Having You (2013),Comedy|Drama +111716,Backfire (1950),Crime|Film-Noir|Mystery|Romance|Thriller +111722,Revolt in the Fifth Dimension (1970),Adventure|Animation|Children +111726,Scooby-Doo! WrestleMania Mystery (2014),Animation|Children +111732,"Dance of Reality, The (Danza de la realidad, La) (2013)",Drama|Fantasy +111734,"Love Punch, The (2013)",Comedy +111740,Ordinary Miracles (2005),Drama +111743,A Million Ways to Die in the West (2014),Comedy|Western +111745,"Cabinet of Caligari, The (1962)",Thriller +111749,Bye Bye Monkey (Ciao maschio) (1978),Comedy|Drama|Fantasy +111752,Empire of Silver (Bai yin di guo) (2009),Drama|Romance +111755,Mile... Mile & a Half (2013),Documentary +111757,I Like Killing Flies (2004),Documentary +111759,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX +111762,Mikra Anglia (2013),Drama|Romance +111764,Serial (Bad) Weddings (Qu'est-ce Qu'on An Fit Au Bon Dieu?) (2014),Comedy|Romance +111766,"Pied Piper, The (Pied Piper of Hamelin, The) (1972)",Children|Drama|Fantasy|Musical +111774,"Unreal Dream: The Michael Morton Story, An (2013)",Documentary +111776,"Violent Men, The (1955)",Western +111778,Tracks (2013),Adventure|Drama +111781,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller +111783,Neverland (2011),Adventure|Fantasy +111785,Midnight Chronicles (2009),Action|Adventure|Fantasy +111787,Phantom of the Woods (2013),Drama|Horror|Thriller +111789,Gulliver's Travels (1977),Adventure|Animation +111793,Catlow (1971),Comedy|Western +111795,Million Dollar Arm (2014),Comedy|Drama +111797,This Thing With Sarah (2013),Comedy|Drama|Romance +111800,G.B.F. (2013),Comedy +111809,Train on the Brain (2000),Documentary +111811,Sunlight Jr. (2013),Drama +111813,Narco Cultura (2013),Documentary +111815,Once Upon a Time in Shanghai (2014),Crime +111817,Jimi: All Is by My Side (2013),Drama +111838,"Man Named Rocca, A (Nommé La Rocca, Un) (Man Called Rocca) (1961)",Drama +111840,"Crime in Paradise, A (Crime au paradis, Un) (2001)",Comedy +111842,Backfire (1988),Drama|Mystery|Thriller +111844,Bad Asses (Bad Ass 2) (2014),Action|Drama +111846,"Bad Boy (Story of Danny Lester, The) (1949)",Drama +111848,Battle Circus (1953),Drama|Romance|War +111850,"Odds, The (2011)",Crime|Mystery +111852,Generation Iron (2013),Documentary +111854,"X, Y and Zee (Zee and Co.) (1972)",Drama +111856,7500 (2014),Action|Horror|Mystery|Thriller +111861,Battle of the Damned (2013),Action|Adventure|Horror|Sci-Fi|Thriller +111868,Best Foot Forward (1943),Comedy|Musical +111872,Black Coffee (2014),Comedy|Romance +111874,Love and Pain and the Whole Damn Thing (1973),Comedy|Drama +111878,#chicagoGirl: The Social Network Takes on a Dictator (2013),Documentary +111880,Liv & Ingmar (2012),Documentary +111882,Mar Baum (1997),Drama +111885,Mad Love (Sappho) (1921),Drama|Romance +111887,Bettie Page Reveals All (2012),Documentary +111899,Luv (1967),Comedy +111901,Cinderella (1914),Fantasy|Romance +111913,Lilting (2014),Drama +111915,"Night in Old Mexico, A (2013)",Drama|Western +111921,The Fault in Our Stars (2014),Drama|Romance +111924,"Grand Seduction, The (2013)",Comedy +111929,Welcome to the Jungle (2007),Horror +111931,Raze (2013),Action|Horror +111944,Black Nativity (2013),Drama|Musical +111946,Blood of Redemption (2013),Action|Crime|Drama|Thriller +111961,Cinderella (1994),Animation|Children|Fantasy|Romance +111990,Occupant (2011),Thriller +111993,Minuscule: Valley of the Lost Ants (Minuscule - La vallée des fourmis perdues) (2013),Adventure|Animation|Children +111995,Jayne Mansfield's Car (2012),Drama +111997,Hot Rods to Hell (1967),Action|Drama|Thriller +111999,Princess Tam-Tam (Princesse Tam-Tam) (1935),Comedy|Drama +112001,Rumble on the Docks (1956),Crime|Drama +112003,"Thompsons, The (2012)",Drama|Horror|Thriller +112006,Tangled Ever After (2012),Action|Animation|Children +112013,"Last Call, The (Tercera Llamada) (2013)",Comedy|Drama +112015,"13 Frightened Girls! (Candy Web, The) (1963)",Adventure|Comedy|Thriller +112019,Against All Flags (1952),Action|Adventure|Drama|Romance +112021,Andy Hardy Meets Debutante (1940),Comedy|Romance +112023,Annabel Takes a Tour (Annabel Takes a Trip) (1938),Comedy +112056,Backstairs (Hintertreppe) (1921),Drama +112060,One on One (1977),Drama +112062,Camille Claudel 1915 (2013),Drama +112064,"Plot Against Harry, The (1989)",Comedy +112066,"Letter to Momo, A (Momo e no tegami) (2011)",Animation|Drama +112070,Maps to the Stars (2014),Drama +112072,Helen (2009),Drama +112076,My Best Enemy (Mein bester Feind) (2011),Comedy|Drama|War +112078,"Wrath of God, The (1972)",Western +112081,"Shape of Things to Come, The (1979)",Sci-Fi +112083,"Case Against 8, The (2014)",Documentary +112085,Goodbye World (2013),Comedy|Drama +112087,Frequencies (2013),Mystery|Romance|Sci-Fi +112089,So Undercover (2012),Action|Comedy +112091,Anna (2013),Drama|Thriller +112093,Northeast (2011),Drama +112108,Asylum (1997),Drama|Horror|Thriller +112112,Back in the Day (2014),Comedy +112116,Beneath the Rooftops of Paris (Sous les toits de Paris) (2007),Drama +112118,Bikini Spring Break (Revenge of the Nerds' Bikini Spring Break) (2012),Comedy +112138,22 Jump Street (2014),Action|Comedy|Crime +112163,I Feel Sleepy (2012),Comedy +112165,Human Capital (Il capitale umano) (2013),Drama +112171,"Equalizer, The (2014)",Action|Crime|Thriller +112173,For Ellen (2012),Drama +112175,How to Train Your Dragon 2 (2014),Action|Adventure|Animation +112177,Lord of Tears (2013),Drama|Horror +112179,"Sudden Wealth of the Poor People of Kombach, The (Der plötzliche Reichtum der armen Leute von Kombach) (1971)",Drama +112181,Bambou (2009),Comedy +112183,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama +112185,"Outlaw, The (Lope) (2010)",Drama +112187,Saving Grace B. Jones (2009),Drama|Thriller +112193,Sexual Chronicles of a French Family (Chroniques sexuelles d'une famille d'aujourd'hui) (2012),Comedy|Drama +112204,Bitter Creek (1954),Western +112206,Blackout (Murder by Proxy) (1954),Crime|Drama|Thriller +112210,Blackout (1985),Crime|Drama|Horror|Mystery|Thriller +112214,Born Reckless (1937),Action|Adventure|Crime|Drama|Romance +112226,17 Girls (17 filles) (2011),Drama +112229,Crawlspace (2013),Horror|Thriller +112236,Broadway Idiot (2013),Documentary|Musical +112240,Broken Kingdom (2012),Drama +112245,"Dirties, The (2013)",Drama +112247,"Mind of Mr. Soames, The (1970)",Drama|Sci-Fi +112249,Mrs. Pollifax-Spy (1971),Adventure|Comedy +112251,Snapshot (1979),Drama|Horror|Thriller +112253,Brainstorm (1965),Drama|Film-Noir|Thriller +112255,Money as Debt (2006),Animation|Documentary +112257,Beginning of an Unknown Era (Nachalo nevedomogo veka) (1967),Drama +112261,I See a Dark Stranger (1946),Romance|Thriller +112271,Brooklyn Dodgers: The Ghosts of Flatbush (2007),Documentary +112273,Brother (Hermano) (2010),Drama +112275,For No Good Reason (2012),Documentary +112277,Haunt (2013),Horror|Mystery +112279,Doc of the Dead (2014),Documentary +112281,I Do (2012),Drama +112283,"Legend of the 7 Golden Vampires, The (1974)",Action|Horror +112288,Coming Home (Gui lai) (2014),Drama +112290,Boyhood (2014),Drama +112293,"Trials of Cate McCall, The (2013)",Crime|Drama +112297,Tillbaka till Bromma (2014),Comedy +112299,Saints and Soldiers: Airborne Creed (2012),Action|Drama|War +112301,Tall Story (1960),Comedy +112303,Think Like a Man Too (2014),Comedy|Romance +112307,Thin Ice (1937),Comedy|Musical|Romance +112309,"Pool Boys, The (2011)",Comedy +112316,Jersey Boys (2014),Drama|Musical +112320,"Corridor, The (2010)",Horror|Thriller +112326,Nick Fury: Agent of S.H.I.E.L.D. (1998),Action|Sci-Fi +112328,The Pirates of Blood River (1962),Action|Adventure|Comedy +112330,Bitch Hug (Bitchkram) (2012),Drama +112332,Caprice (1967),Comedy|Crime|Thriller +112334,"Internet's Own Boy: The Story of Aaron Swartz, The (2014)",Documentary +112338,Anita (2013),Documentary +112340,8 Days to Premiere (8 päivää ensi-iltaan) (2008),Comedy|Fantasy|Romance +112342,"Mother's Courage: Talking Back to Autism, A (2009)",Documentary +112351,112 Weddings (2013),Documentary|Romance +112353,"Fine Pair, A (Ruba al prossimo tuo) (1968)",Adventure|Comedy|Crime|Romance +112355,"Kid for Two Farthings, A (1955)",Children|Comedy|Drama|Fantasy +112359,"Woman's Secret, A (1949)",Drama|Film-Noir|Mystery +112365,"Deadly Trap, The (La maison sous les arbres) (1970)",Drama|Mystery +112367,"Fighting Spirit, The (2007)",Documentary +112370,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi +112381,Metalhead (Málmhaus) (2013),Drama +112383,Russian Roulette (1975),Drama|Thriller +112389,Attack of the 50 Ft. Woman (1993),Comedy|Sci-Fi +112395,Belle Starr (1941),Western +112399,Finding Vivian Maier (2013),Documentary +112404,Jack Strong (2014),Action|Crime|Thriller +112406,Brazil: In the Shadow of the Stadiums,Documentary +112412,Perfect Sisters (2014),Drama|Mystery +112416,Belly 2: Millionaire Boyz Club (2008),Drama +112419,Beware of Pity (1946),Drama|Romance +112421,Frank (2014),Comedy|Drama|Mystery +112423,I Belong (Som du ser meg) (2012),Drama +112425,Mama's Boy (2007),Comedy|Drama +112432,Sound of Redemption: The Frank Morgan Story (2014),Documentary|Drama|Musical +112434,In Bloom (Grzeli nateli dgeebi) (2013),Drama +112436,Very Good Girls (2014),Drama +112439,Joe's Palace (2009),Drama +112442,Day of the Animals (1977),Horror|Thriller +112444,Wild Beasts (Wild beasts - Belve feroci) (1984),Horror +112446,The Escape Artist (2013),Drama|Thriller +112448,Happy Birthday to a Beautiful Woman (2012),Documentary +112450,They Came Together (2014),Comedy|Romance +112452,Questioning Darwin (2014),Documentary +112454,Honey (Miele) (2013),Drama +112458,"Son-Daughter, The (1932)",Drama +112460,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy +112463,Black Gunn (1972),Action|Crime|Thriller +112465,"Shoot First, Die Later (1974)",Action|Crime +112467,"So Evil, So Young (1961)",Drama +112469,Elaine Stritch: Shoot Me (2013),Documentary|Musical +112471,Wild Oranges (1924),Drama|Romance +112473,Stuart: A Life Backward (2007),Drama +112477,"Mortician, The (2011)",Thriller +112479,Not Another Not Another Movie (2011),Comedy +112481,Mrs. Brown's Boys D'Movie (2014),Comedy +112483,Sunburn (1979),Action|Comedy|Crime +112485,Francis (1950),Comedy +112488,"Gunfighter, The (2014)",Action|Comedy|Western +112493,Seven Brothers (Seitsemän veljestä) (1979),Animation|Comedy +112495,Let the Fire Burn (2013),Documentary +112497,Tammy (2014),Comedy +112501,Kabhi Haan Kabhi Naa (1994),Comedy|Drama|Musical|Romance +112506,Radio Free Albemuth (2010),Drama|Sci-Fi +112508,"Friends, The (Les Amis) (1971)",Drama +112510,"Pelican, The (Le Pelican) (1974)",Drama +112512,Colourful (Karafuru) (2010),Animation|Drama|Fantasy|Mystery +112515,"Babadook, The (2014)",Drama|Horror|Thriller +112517,Mystery on Monster Island (1981),Adventure|Comedy +112519,Killer Legends (2014),Crime|Documentary +112538,Black Moon (1934),Horror +112544,Blue (2003),Action|Drama|War +112546,Blue (2009),Drama +112548,Brother Rat (1938),Comedy +112550,White God (Fehér isten) (2014),Drama +112552,Whiplash (2014),Drama +112554,Luther (1974),Drama +112556,Gone Girl (2014),Drama|Thriller +112565,Brother's Justice (2010),Comedy +112577,Willie & Phil (1980),Comedy|Drama|Romance +112580,"Angriest Man in Brooklyn, The (2014)",Comedy|Drama +112582,Life Itself (2014),Documentary +112586,Brothers (Veljekset) (2011),Drama +112589,Ride the Divide (2010),Adventure|Documentary +112591,Finding Fela! (2014),Documentary +112594,Duplicate (1998),Comedy|Crime|Musical +112596,Missing William (2014),Drama +112599,Favor (2013),Thriller +112601,Dogs (1976),Horror|Thriller +112603,A mí las mujeres ni fu ni fa (1971),Comedy|Musical +112606,Todos eran culpables (1962),Drama +112610,"Sunfish, The (Klumpfisken) (2014)",Drama +112614,Eye of the Cat (1969),Horror +112621,Chronicle of a Disappearance (1996),Drama +112623,Dawn of the Planet of the Apes (2014),Sci-Fi +112625,The Great Magician (2011),Comedy|Drama|Romance +112637,"Ultimate Warrior, The (1975)",Action|Sci-Fi|Thriller +112640,Ra.One (2011),Action|Musical|Sci-Fi +112642,Gun Woman (2014),Action|Thriller +112648,"Rebel, The (Le Rebelle) (1980)",Drama +112650,Watercolors (2008),Drama|Romance +112653,"Battered Bastards of Baseball, The (2014)",Documentary +112655,No One Lives (2012),Horror|Thriller +112657,Unraveled (2011),Documentary +112663,Buckskin Frontier (1943),Action|Western +112665,Budz House (2011),Comedy +112667,Bullet (2014),Action|Crime|Thriller +112672,Bullet for a Badman (Renegade Posse) (1964),Western +112674,Bulletproof Salesman (2008),Documentary +112689,Miss Violence (2013),Drama|Mystery +112693,"Dispatch from Reuter's, A (1940)",Drama +112705,"Beast with a Million Eyes, The (1955)",Sci-Fi +112710,"Strange One, The (1957)",Drama +112723,"Billy Two Hats (Lady and the Outlaw, The) (1974)",Romance|Western +112725,Buffalo Bill (1944),Western +112727,Deliver Us from Evil (2014),Crime|Horror|Thriller +112729,If I Were You (2012),Comedy|Drama +112731,"Saratov Approach, The (2013)",Action|Drama +112733,Jonestown: Paradise Lost (2007),Documentary +112735,Charlie's Country (2013),Drama +112741,Finding Normal (2013),Comedy|Romance +112743,Margaret Thatcher: The Long Walk to Finchley (2008),Drama +112749,And So It Goes (2014),Comedy|Drama|Romance +112751,Ju-on: The Beginning of the End (Ju-on: Owari no hajimari) (2014),Horror +112753,Torment (2013),Horror|Thriller +112759,Healing (2014),Drama +112762,Hellphone (2007),Comedy|Fantasy +112764,"Last Taboo, The (2013)",Documentary +112767,Premature (2014),Comedy +112770,Dr Money and the Boy with No Penis (2004),Documentary +112772,"Brain, The (1988)",Horror|Sci-Fi +112774,"Severed Arm, The (1973)",Crime|Horror +112776,Bloodline (2011),Horror +112778,Unrated II: Scary as Hell (2011),Horror +112780,Panic (2001),Action|Thriller +112782,Darkest Night (2012),Drama|Horror +112784,Bluebeard (Barbe-Bleue) (1936),Fantasy +112788,Sex Tape (2014),Comedy +112790,Going Down in LA-LA Land (2011),Comedy|Drama|Romance +112792,Operation Ganymed (1977),Sci-Fi +112798,Pick-up Summer (Pinball Summer) (1980),Comedy +112800,Ride Beyond Vengeance (1966),Western +112802,EMR (2004),Thriller +112804,I Origins (2014),Drama|Sci-Fi +112807,Gunbuster (Top wo Narae) (1988),Action|Animation|Drama|Sci-Fi +112809,"Diebuster ""Top wo Narae 2"" (2004)",Action|Animation|Drama|Sci-Fi +112811,"Front Line, The (Go-ji-jeon) (2011)",Drama|War +112814,Wrestling for Jesus: The Tale of T-Money (2011),Documentary +112816,One Man Up (L'uomo in più) (2001),Comedy|Drama +112818,"Purge: Anarchy, The (2014)",Action|Horror|Thriller +112840,Bullets for O'Hara (1941),Crime|Drama|Romance +112842,Bundle of Joy (1956),Comedy|Musical +112844,Bus Stop (1982),Comedy +112846,Bush Christmas (1947),Action|Adventure|Comedy +112850,Words and Pictures (2013),Comedy|Drama|Romance +112852,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi +112854,"Ghost Goes West, The (1935)",Comedy|Fantasy|Horror|Romance +112856,"Nazi Officer's Wife, The (2003)",Documentary|Drama|War +112864,10.5 (2004),Action|Drama +112866,"Strange Color Of Your Body's Tears, The (L'étrange couleur des larmes de ton corps) (2013)",Mystery|Thriller +112868,"Signal, The (2014)",Sci-Fi|Thriller +112871,"Ballroom, The (Chega de Saudade) (2007)",Drama|Musical|Romance +112877,Busses Roar (Buses Roar) (1942),Drama|Romance|War +112880,But Not for Me (1959),Comedy|Romance +112882,Butcher Boys (Bone Boys) (2012),Action|Comedy|Horror|Thriller +112888,By Dawn's Early Light (2000),Drama +112890,Jimmy's Hall (2014),Drama +112893,Super Hero Party Clown (2010),Comedy|Romance +112895,Willow Creek (2013),Horror|Mystery +112897,The Expendables 3 (2014),Action|Adventure +112903,Gunday (2014),Action|Crime|Drama +112905,Goliyon Ki Raasleela Ram-Leela (2013),Drama|Romance +112907,"Villain, The (Ek Villain) (2014)",Action|Romance|Thriller +112909,Kites (2010),Action|Drama|Romance +112911,Hercules (2014),Action|Adventure +112913,Monty Python Live (Mostly) (2014),Animation|Comedy|Musical +112921,Once My Mother (2014),Documentary +112923,Blood in the Mobile (2011),Documentary +112925,Hide Your Smiling Faces (2013),Drama +112929,Paradise: Hope (Paradies: Hoffnung) (2013),Drama +112931,Villa Amalia (2009),Drama|Romance +112938,"Detective, The (C+ jing taam) (2007)",Drama|Mystery|Thriller +112940,A Most Wanted Man (2014),Thriller +112942,Sky Murder (1940),Action|Adventure|Crime|Mystery|Thriller +112944,Molly Maxwell (2013),Drama|Romance +112946,Wish I Was Here (2014),Comedy|Drama +112948,Sandakan 8 (Sandakan hachibanshokan bohkyo) (1974),Drama|War +112950,Sex in Chains (Geschlecht in Fesseln) (1928),Drama +112953,Valley of the Dragons (1961),Sci-Fi +112955,Coney Island (1917),Comedy +112957,Never Weaken (1921),Comedy|Thriller +112959,Go for Sisters (2013),Crime|Drama +112961,Playing with Love (Puppy Love) (Maladolescenza) (1977),Drama +112974,C.O.G. (2013),Comedy|Drama +112976,C'mon Man (2012),Comedy +112978,Caesar (Julius Caesar) (2002),Drama|War +112980,Café (2011),Drama +112982,Café Metropole (1937),Comedy|Drama|Romance +112988,Lust for Love (2014),Comedy|Romance +112990,"Pursuit of Unhappiness, The (Anleitung zum Unglücklichsein) (2012)",Romance +112992,Edge of Fear (Ella y el miedo) (1962),Horror +112995,Sorrow and Joy (Sorg og glæde) (2013),Drama +112999,Fugitives (Fugitivas) (2000),Drama|Thriller +113001,Family United (La gran familia española) (2013),Comedy +113014,California Conquest (1952),Adventure|Romance|Western +113016,Call Me Bwana (1963),Comedy +113020,Two Tars (1928),Comedy +113022,The Visitor (1979),Horror|Sci-Fi +113024,"Unholy Wife, The (1957)",Crime|Drama +113029,"Keeper, The (2004)",Crime|Drama|Thriller +113033,Rasmus på luffen (1981),Children +113035,"Bachelor Weekend, The (2013)",Comedy|Drama +113037,Finding Bliss (2009),Comedy|Romance +113039,Gracie's Choice (2004),Drama +113041,Father and Guns (De père en flic) (2009),Comedy|Crime +113043,Loser Takes All! (Qui perd gagne !) (2003),Comedy|Mystery +113045,"Boogie (Boogie, el aceitoso) (2009)",Action|Animation|Crime +113048,Tables Turned on the Gardener (1895),Comedy +113062,Hellion (2014),Drama|Thriller +113064,"Trip to Italy, The (2014)",Comedy|Drama +113066,Food (Jídlo) (1993),Animation|Comedy|Fantasy +113068,For a Woman (Pour une femme) (2013),Drama|Romance|War +113071,Earth to Echo (2014),Adventure|Children|Sci-Fi +113073,Two Lives (Zwei Leben) (2012),Drama|Thriller +113080,"Burma Conspiracy, The (Largo Winch II) (2011)",Action|Adventure|Thriller +113083,Westfront 1918 (1930),Drama|War +113089,Maidentrip (2014),Documentary +113092,Kidnapped For Christ (2014),Documentary +113099,8-Ball (8-pallo) (2013),Crime|Drama +113103,Step Up All In (2014),Drama|Musical|Romance +113105,Mystery of the 13th Guest (1943),Crime|Mystery +113107,Invasion of the Star Creatures (1962),Comedy|Sci-Fi +113112,Video Games: The Movie (2014),Documentary +113122,"Girl Who Talked to Dolphins, The (2014)",Documentary +113126,Val Lewton: The Man in the Shadows (2007),Documentary +113128,Return to Life (1938),Documentary +113130,Sharktopus vs. Pteracuda (2014),Sci-Fi +113132,"Key, The (1934)",Drama +113139,"Day's Pleasure, A (Ford Story, A) (1919)",Comedy +113143,America 3000 (1986),Action|Adventure|Sci-Fi +113145,"Eye for an Eye, An (Oeil pour oeil) (Eyes of the Sahara) (1957)",Drama +113149,Andy Hardy's Blonde Trouble (1944),Comedy|Romance +113152,Sexual Life (2005),Romance +113159,Life After Beth (2014),Comedy|Horror|Romance +113162,Lowlands (Tiefland) (1954),Drama +113170,Around June (2008),Animation|Drama|Fantasy|Romance +113186,Felony (2013),Thriller +113188,"Rover, The (2014)",Crime|Drama +113190,Slaying the Badger,Documentary +113203,Caine (Shark!) (1969),Action|Adventure|Thriller +113205,L'Italien (2010),Comedy|Drama +113207,Get on Up (2014),Drama|Musical +113209,"Last Mogul, The (2005)",Documentary +113214,1 (2013),Documentary +113216,"Suspect, The (Yong-eui-ja) (2013)",Action|Thriller +113218,Space Milkshake (2012),Comedy|Sci-Fi +113220,"Dog, The (2013)",Documentary +113223,"Fool There Was, A (1915)",Drama +113225,Magic in the Moonlight (2014),Comedy|Drama|Romance +113227,Impudent Girl (L'effrontée) (1985),Comedy|Drama|Romance +113230,Our Fathers (2005),Drama +113232,National Lampoon's Pucked (2006),Comedy +113234,"Thirty-Nine Steps, The (1978)",Crime|Mystery|Thriller +113236,Abby (1974),Horror +113238,And While We Were Here (2012),Drama +113240,Winter Sleep (Kis Uykusu) (2014),Drama +113244,When I Walk (2013),Documentary +113246,What! No Beer? (1933),Comedy +113250,In Order of Disappearance (Kraftidioten) (2014),Action|Comedy|Crime|Thriller +113252,Housebound (2014),Comedy|Horror|Thriller +113254,Zarafa (2012),Animation +113256,"New Jean-Claude, The (Le nouveau Jean-Claude) (2002)",Comedy|Romance +113261,Screamtime (1986),Fantasy|Horror +113263,Very Happy Alexander (Alexandre le bienheureux) (1968),Comedy|Romance +113275,The Hundred-Foot Journey (2014),Comedy|Drama +113278,Batman: Assault on Arkham (2014),Action|Animation|Crime|Thriller +113280,White Frog (2012),Drama +113282,Where the Trail Ends (2013),Adventure|Documentary|Drama +113284,"Bell for Adano, A (John Hersey's A Bell for Adano) (1945)",Drama|War +113286,"Lady Without Passport, A (1950)",Crime|Drama|Film-Noir +113290,Ambush (Mai fu) (1973),Action|Adventure +113300,R100 (2013),Comedy|Drama +113302,"Creeper, The (Rituals) (1977)",Adventure|Horror|Thriller +113304,American Revolutionary: The Evolution of Grace Lee Boggs (2013),Documentary +113306,"Dragon Missile, The (Fei long zhan) (1976)",Action +113309,The Fifth Cord (1971),Mystery|Thriller +113313,"Den, The (2013)",Horror|Thriller +113315,Zero Motivation (Efes beyahasei enosh) (2014),Comedy|Drama +113323,Blade on the Feather (Deep Cover) (1980),Mystery +113325,Calling Bulldog Drummond (1951),Crime|Mystery +113337,Free Samples (2012),Comedy|Drama +113343,Quicksand (2003),Crime|Drama|Thriller +113345,Jupiter Ascending (2015),Action|Adventure|Sci-Fi +113348,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy +113350,I'll Follow You Down (2013),Drama|Mystery|Sci-Fi +113352,Death in Buenos Aires (Muerte en Buenos Aires) (2014),Crime|Drama|Romance +113354,Who the F**K Is Arthur Fogel (2013),Documentary +113358,Camouflage (2001),Action|Comedy +113364,Rob the Mob (2014),Crime|Drama +113370,Nayak: The Hero (1966),Drama +113374,"Old Lady and the Pigeons, The (La vieille dame et les pigeons) (1997)",Animation|Comedy +113376,"Reckoning, The (2014)",Crime|Mystery|Thriller +113378,"Giver, The (2014)",Drama|Sci-Fi +113380,Only God Knows (Sólo Dios Sabe) (2006),Drama|Mystery|Romance +113394,"Pretty One, The (2013)",Comedy|Drama +113416,Revenge of the Green Dragons (2014),Action|Crime|Drama +113420,Unborn in the USA: Inside the War on Abortion (2007),Documentary +113428,Maniacts (2001),Action|Comedy|Drama|Horror|Romance +113430,Cane Toads: The Conquest (2010),Documentary +113432,So Much So Fast (2006),Documentary +113434,What About Dick? (2012),Comedy +113449,Crossroads (1942),Crime|Drama|Film-Noir +113451,Rendezvous (1935),Comedy|War +113453,Let's Be Cops (2014),Comedy|Crime +113457,Can I Do It 'Till I Need Glasses? (1977),Comedy +113459,Paradise (2013),Comedy|Drama +113464,My Way to Olympia (Mein Weg nach Olympia) (2013),Documentary +113466,Far Out Isn't Far Enough: The Tomi Ungerer Story (2012),Documentary +113468,D-Day the Sixth of June (1956),Drama|Romance|War +113470,"Necessary War, The (2014)",Documentary +113472,Direct from Brooklyn (1999),(no genres listed) +113474,"Autobiography of Miss Jane Pittman, The (1974)",Drama +113476,"Strangler, The (1964)",Horror +113478,You and Me (Ty i ya) (1971),Drama +113497,Antboy (2013),Adventure|Children|Comedy +113499,Antboy II: Revenge of the Red Fury (Antboy: Den Røde Furies Hævn) (2014),Adventure|Children|Comedy|Fantasy +113501,Appleseed Alpha (2014),Action|Animation|Sci-Fi +113503,Generation Um... (2012),Drama +113505,Carry On... Up the Khyber (1968),Adventure|Comedy +113507,"Wise Guys, The (Les grandes gueules) (1965)",Comedy|Drama +113510,Switch (2011),Action|Crime|Thriller +113513,Six Days (2007),Documentary +113515,Snake River Desperadoes (1951),Western +113521,Bad Johnson (2014),Comedy|Fantasy +113532,"Inbetweeners 2, The (2014)",Comedy +113534,Jesse Stone: Thin Ice (2009),Crime|Drama|Mystery +113536,State Affairs (Une affaire d'état) (2009),Thriller +113539,"First Man, The (Le Premier Homme) (2011)",Drama +113541,Sarraounia (1986),Drama|War +113543,Buud Yam (1997),Drama +113545,Primus Hallucino-Genetics Live 2004 (2004),(no genres listed) +113549,Captain Nemo and the Underwater City (1969),Adventure|Children|Fantasy|Sci-Fi +113555,It Runs in the Family (My Summer Story) (1994),Comedy +113557,Age of Tomorrow (2014),Action|Sci-Fi|Thriller +113559,Osaka Elegy (Naniwa erejî) (1936),Drama +113561,"Wild Party, The (1975)",Comedy|Drama +113563,"Phantom Stagecoach, The (1957)",Western +113565,"Sacrament, The (2013)",Horror|Thriller +113567,Make Your Move (2013),Musical +113573,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller +113575,Authors Anonymous (2014),Comedy|Drama|Romance +113577,"Last Blitzkrieg, The (1959)",Drama|War +113582,How to Be a Man (2013),Comedy +113585,Fingers at the Window (1942),Drama|Film-Noir|Mystery +113604,If I Stay (2014),Drama +113606,"Rise & Fall of ECW, The (2004)",Documentary +113608,"Circle of Deception, A (1960)",Drama|War +113612,Al-risâlah (1976),Adventure|Drama|War +113614,All the Way Home (1963),Drama +113618,All the Way Home (1981),Drama +113630,"Man Who Couldn't Say No, The (Mies joka ei osannut sanoa EI) (1975)",Comedy|Drama|Romance +113632,"Other F Word, The (2011)",Comedy|Documentary|Drama +113634,"Message from Akira Kurosawa: For Beautiful Movies, A (Kurosawa Akira kara no messêji: Utsukushii eiga o) (2000)",Documentary +113636,Out of Balance: ExxonMobil's Impact on Climate Change (2006),Documentary +113638,"Myriad of Lights (Lights of Ten Thousand Homes, The) (Wanjia denghuo) (1948)",Drama +113640,"Canal, The (2014)",Horror|Thriller +113642,Night Moves (2013),Drama|Thriller +113644,"Split, The (1968)",Crime|Drama +113646,Foreign Letters (2012),Comedy|Drama +113648,Boom! (1968),Drama +113661,Avalon (2011),Drama|Thriller +113663,Bandido (1956),Action|Adventure|War|Western +113670,Beslan: Three Days in September (2006),Documentary +113674,Proxy (2013),Drama|Horror|Thriller +113686,Boris Godunov (1986),Drama +113692,Happy New Year (La Bonne Année) (1973),Comedy|Crime|Drama +113696,Are You Here (2014),Comedy +113698,Alligator Eyes (1990),Drama|Film-Noir|Mystery +113701,"Clown and the Kid, The (1961)",Drama +113703,Welcome to New York (2014),Drama +113705,"Two Days, One Night (Deux jours, une nuit) (2014)",Drama +113707,Kummeli V (2014),Comedy +113709,"Trans-Atlantic Tunnel (Tunnel, The) (1935)",Drama|Sci-Fi +113711,Losers' Club (Kaybedenler kulübü) (2011),Comedy|Drama +113715,Lights Out (2013),Horror|Thriller +113717,"Undertaker and His Pals, The (1966)",Comedy|Horror +113719,2AM: The Smiling Man (2013),Horror +113721,How the Myth Was Made: A Study of Robert Flaherty's Man of Aran (1978),Documentary +113723,"I Love, You Love (Ja milujem, ty milujes) (1989)",Comedy|Drama|Romance +113725,If Footmen Tire You What Will Horses Do? (1971),Drama +113739,"Space Movie, The (1980)",Documentary +113741,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller +113743,Just a Gigolo (1931),Comedy|Romance +113746,Redwood Highway (2013),Drama +113749,"Scarlet Clue, The (Charlie Chan in the Scarlet Clue) (1945)",Comedy|Crime|Mystery +113751,"Birder's Guide to Everything, A (2013)",Comedy +113755,"Woman's Tale, A (1991)",Drama +113757,Arsène Lupin Returns (1938),Mystery +113760,Beautiful (A-leum-dab-da (2008),Drama +113765,King's Faith (2013),Drama +113767,Cantinflas (2014),Drama +113769,"Pyramid, The (2014)",Horror +113771,Exists (2014),Horror +113773,Waiting For Armageddon (2009),Documentary +113775,Life of Crime (2013),Comedy|Crime +113778,Cat Run 2 (2014),Action +113780,"As Above, So Below (2014)",Horror|Thriller +113783,Hostile Witness (1968),Drama +113790,"Peace, Propaganda & the Promised Land (2004)",Documentary +113793,Reel Bad Arabs: How Hollywood Vilifies a People (2006),Documentary +113795,"Blast, A (2014)",Drama|Thriller +113798,Charlie Chan in the Secret Service (1944),Comedy|Crime|Mystery +113800,"Living Ghost, The (1942)",Comedy|Horror|Mystery|Thriller +113803,Behind That Curtain (1929),Mystery +113816,Never Make It Home (2011),Documentary|Musical +113829,"One I Love, The (2014)",Comedy|Drama|Romance +113831,Passenger Side (2009),Comedy|Drama +113834,Piripäiväkirja (2014),Documentary +113836,Among Us (Onder Ons) (2011),Drama +113840,See You Next Tuesday (2013),Comedy|Drama +113843,Killing Us Softly 4: Advertising's Image of Women (2010),Documentary +113845,No Logo (2003),Documentary +113847,Killing Us Softly 3 (1999),Documentary +113849,Headshot (2011),Crime|Drama|Thriller +113851,El Niño (2014),Drama|Thriller +113853,Antisocial (2013),Horror|Sci-Fi|Thriller +113855,Faith School Menace? (2010),Documentary +113857,"Red Elvis, The (Der rote Elvis) (2007)",Documentary +113860,"Codes of Gender, The (2010)",Documentary +113862,"Guest, The (2014)",Thriller +113864,Woodstock Diary (1994),Documentary +113866,Leprechaun: Origins (2014),Horror +113868,To Be Takei (2014),Documentary +113872,Captive Heart: The James Mink Story (1996),Drama +113889,Angry Video Game Nerd: The Movie (2014),Adventure|Comedy|Sci-Fi +113891,"Guy and a Gal, A (En kille och en tjej) (1975)",Comedy|Drama +113895,Zaza (1938),Drama +113898,"Long Ride Home, The (2003)",Romance|Western +113902,"Holy Man, The (Mahapurush) (1965)",Comedy +113904,Bottled Up (2013),Comedy|Drama +113906,"Beast Must Die, The (1974)",Horror|Mystery +113908,Getting Back to Abnormal (2013),Documentary +113911,Vinyl (2000),Documentary +113924,Oklahoma Crude (1973),Comedy|Drama|Western +113933,"Pyx, The (1973)",Crime|Horror|Thriller +113938,Nixon by Nixon: In His Own Words (2014),Documentary +113943,House of Women (1962),Crime|Drama +113945,"Dangerous Profession, A (1949)",Crime|Drama|Film-Noir +113947,"Lady of Chance, A (1928)",Comedy|Drama|Romance +113949,Aaron Loves Angela (1975),Comedy|Drama|Romance|Thriller +113951,Alamo Bay (1985),Action|Drama|Romance +113953,Ann Carver's Profession (1933),Drama +113955,Beauty and the Boss (1932),Comedy|Romance +113968,2081 (2009),Action|Sci-Fi +113970,Mi Amigo Hugo (2014),Documentary +113972,"Dreamworlds II: Desire, Sex, Power in Music Video (1997)",Documentary +113974,Happy We (Två killar och en tjej) (1983),Comedy|Drama +113976,Slow Southern Steel (2011),Documentary +113981,Blazing Guns (1943),Adventure|Western +113983,Boy of the Streets (1937),Drama +113989,Cardinal Richelieu (1935),Drama|Romance +113991,Care Bears to the Rescue (Care Bears: To the Rescue Movie) (2010),Adventure|Animation|Children|Fantasy +113997,Prince of the Sun: The Great Adventure of Horus (Taiyou no ouji Horusu no daibouken) (1968),Animation|Fantasy +113999,Anna: 6-18 (Anna: Ot shesti do vosemnadtsati) (1994),Documentary +114001,"Things I Like, Things I Don't Like (Foutaises) (1989)",Comedy +114003,"Return to Homs, The (2013)",Documentary +114007,Before I Go to Sleep (2014),Mystery|Thriller +114009,PAY 2 PLAY: Democracy's High Stakes (2014),Comedy|Documentary +114011,"New Rulers of the World, The (2001)",Documentary +114013,Atlas Shrugged: Who Is John Galt? (Atlas Shrugged: Part III) (2014),Drama|Mystery|Sci-Fi +114015,"Great King, The (Der große König) (1942)",Drama|War +114017,Career (1959),Drama +114028,Pride (2014),Comedy|Drama +114033,Into the Storm (2014),Action|Thriller +114035,"Calling, The (2014)",Thriller +114040,Aftermath (2012),Action|Thriller +114042,Third Person (2013),Drama|Romance +114044,Honeymoon (2014),Horror +114046,God's Pocket (2014),Drama +114048,Tennessee Johnson (1942),Drama +114060,The Drop (2014),Crime|Drama|Thriller +114062,"Motel Life, The (2012)",Drama|Mystery|Thriller +114064,Pharaoh's Curse (1957),Horror +114066,"20,000 Days on Earth (2014)",Documentary|Drama|Musical +114068,Captivated (2014),Documentary +114070,"Good Job: Stories of the FDNY, A (2014)",Documentary +114072,Cheech and Chong's Animated Movie (2013),Animation|Comedy +114074,The Skeleton Twins (2014),Drama +114078,Seinto Seiya: Legend of Sanctuary (Seinto Seiya: Legend of Sanctuary) (2014),Animation +114080,Where the Dead Go to Die (2012),Animation|Crime|Drama|Fantasy|Horror +114082,Bambi Meets Godzilla (1969),Animation|Comedy +114085,"Return to Salem's Lot, A (1987)",Horror +114087,Advance to the Rear (1964),Comedy|War|Western +114093,Camel Spiders (2011),Horror|Sci-Fi +114095,Carnegie Hall (1947),Drama +114119,Very Ordinary Couple (Yeonaeui Wondo) (2013),Comedy|Drama|Romance +114122,Dim Sum: A Little Bit of Heart (1985),Comedy +114124,Newsfront (1978),Drama +114126,Beautiful Losers (2008),Documentary +114128,Bullies (1986),Action|Drama|Thriller +114130,"20,000 Leagues Under the Sea (1997)",Romance|Sci-Fi +114138,Carry on Spying (Agent Oooh!) (1964),Comedy +114140,Carson City (1952),Action|Romance|Western +114142,Cast a Dark Shadow (Angel) (1955),Thriller +114146,Castle in the Desert (Charlie Chan in Castle in the Desert) (1942),Comedy|Crime|Mystery|Thriller +114161,Aftermath: Population Zero (2008),Documentary|Sci-Fi +114164,Grassroots (2012),Comedy|Drama +114166,"Groundstar Conspiracy, The (1972)",Action|Crime|Mystery|Romance|Sci-Fi|Thriller +114170,Tattoo Nation (2013),Documentary +114172,"Shamrock Handicap, The (1926)",Drama|Romance +114174,American Dreams in China (2013),Comedy|Drama +114177,"Naked Face, The (1984)",Action|Mystery|Thriller +114180,"Maze Runner, The (2014)",Action|Mystery|Sci-Fi +114182,No Good Deed (2014),Thriller +114184,Camp X-Ray (2014),Drama +114186,Hori Smoku Sailor Jerry: The Life of Norman K. Collins (2008) ,Documentary +114188,Men Without Women (1930),Action|Drama +114191,Below Sea Level (2008),Documentary +114193,Hollywood and The Pentagon: A Dangerous Liaison (2003),Documentary +114195,Power and Terror: Noam Chomsky in Our Times (2002),Documentary +114197,Noam Chomsky: Distorted Morality (2003),Documentary +114199,"Beast at Bay, A (1912)",Drama +114214,Mishen (Target) (2011),Drama|Sci-Fi +114217,Castle on the Hudson (1940),Crime|Drama +114219,Catacombs (Curse IV: The Ultimate Sacrifice) (1988),Horror +114232,Marilena de la P7 (2006),Drama|Fantasy +114234,"Uncle Marin, the Billionaire (Nea Marin miliardar) (Uncle Martin, the Multimillionaire) (1979)",Comedy +114236,"Obama Deception: The Mask Comes Off, The (2009)",Documentary +114238,Homevideo (2011),Drama +114240,Aladdin (1992),Adventure|Animation|Children|Comedy|Fantasy +114242,Sharknado 2: The Second One (2014),Horror|Sci-Fi|Thriller +114244,"Riot Club, The (2014)",Drama|Thriller +114246,"Walk Among the Tombstones, A (2014)",Action|Crime|Mystery|Thriller +114248,"Galapagos Affair: Satan Came to Eden, The (2013)",Crime|Documentary|Mystery +114250,My Old Lady (2014),Comedy|Drama +114252,Thomasine & Bushrod (1974),Action|Crime|Western +114254,1971 (2014),Documentary +114256,"Other One, The (2014)",Drama|Mystery +114261,Affluenza (2014),Drama +114263,700 Sundays (2014),Comedy +114265,Laggies (2014),Comedy|Romance +114267,"Confession, The (L'aveu) (1970)",Drama|Thriller +114269,"Well Spent Life, A (1972)",Documentary|Musical +114271,Hot Pepper (1973),Documentary|Musical +114273,Bethlehem (2013),Drama|Thriller|War +114277,God Help the Girl (2014),Drama|Musical|Romance +114280,Misconception (2014),Documentary +114282,"Last Season, The (2014)",Documentary +114292,Cause for Alarm! (1951),Crime|Drama|Film-Noir|Thriller +114327,External Affairs (1999),Drama +114329,What We Did on Our Holiday (2014),Comedy +114331,Fall of the Republic: The Presidency of Barack H. Obama (2009),Documentary +114333,Kivski Freski (1966),Drama +114335,La cravate (1957),(no genres listed) +114337,Dead Within (2014),Drama|Horror|Thriller +114340,Free Range (Ballaad maailma heakskiitmisest) (2013),Drama +114342,Force Majeure (Turist) (2014),Drama +114353,Heavyweights (Schwere Jungs) (2006),Comedy +114355,Good Times (Beste Zeit) (2007),Action|Drama|Thriller +114359,Räuber Kneißl (2008),Drama +114361,Die Perlmutterfarbe (2009),Drama +114363,My Life in Orange (Sommer in Orange) (2011),Comedy +114365,Wer's glaubt wird selig (2012),Comedy +114367,Brother's War (2009),War +114369,"Soldier's Tale, A (1989)",Drama|Romance|War +114371,"Lonely Villa, The (1909)",Crime|Drama +114373,Spasmo (1974),Mystery|Thriller +114376,"Musketeers of Pig Alley, The (1912)",Crime|Drama +114378,CBGB (2013),Drama +114380,Cement (2000),Crime|Drama +114382,Centennial (1978),Action|Adventure|Drama|Romance|Western +114392,"Homesman, The (2014)",Drama|Western +114394,"Center Stage (Ruan Lingyu) (Actress, The) (New China Woman, The) (1991)",Drama|Romance +114396,Cesar Chavez (2014),Drama +114398,Chad Hanna (1940),Drama|Romance +114400,Chain Lightning (1950),Action|Drama +114417,"Average Little Man, An (Un borghese piccolo piccolo) (1977)",Drama +114420,When Eight Bells Toll (1971),Action|Adventure|Crime|Mystery +114426,Trailer Park Boys: Don't Legalize It (2014),Comedy|Crime|Drama +114431,"Monkey's Teeth (Dents du singe, Les) (1960)",Animation +114433,"Dead Times (Temps morts, Les) (1965)",Animation +114436,"World of Kanako, The (Kawaki.) (2014)",Crime|Drama|Mystery +114439,"November Man, The (2014)",Action|Crime|Thriller +114453,My Girlfriend Is an Agent (Chilgeup gongmuwon) (2009),Action|Comedy|Romance +114455,"Night They Raided Minsky's, The (Night They Invented Striptease, The) (1968)",Comedy +114457,Cold Turkey (1971),Comedy +114459,White Bird in a Blizzard (2014),Drama|Romance|Thriller +114461,"Snails, The (Escargots, Les) (1966)",Animation|Fantasy +114464,Helter Skelter (1976),Crime|Drama|Thriller +114486,"Electric Boogaloo: The Wild, Untold Story of Cannon Films (2014)",Comedy|Documentary +114489,"Occupants, The (2014)",Thriller +114492,Not Cool (2014),Comedy +114494,Who Am I (Kein System Ist Sicher) (2014),Thriller +114497,Wer (2013),Horror|Mystery|Thriller +114503,"First Case, Second Case (Ghazieh-e Shekl-e Aval, Ghazieh-e Shekl-e Dou Wom) (1979)",Documentary +114510,Gang Tapes (2001),Drama +114514,Corpo Celeste (2011),Drama +114535,Rovaniemen markkinoilla (1951),Comedy|Musical +114550,When Animals Dream (Når dyrene drømmer) (2014),Drama|Horror|Mystery +114552,"Boxtrolls, The (2014)",Adventure|Animation|Children|Comedy|Fantasy +114554,"Tale of Princess Kaguya, The (Kaguyahime no monogatari) (2013)",Animation|Drama|Fantasy +114556,Forbidden City Cop (Dai lap mat tam 008) (1996),Action|Comedy +114561,"Girl on the Train, The (2013)",Thriller +114563,Gore Vidal: The United States of Amnesia (2013),Documentary +114565,Double Play: James Benning and Richard Linklater (2013),Documentary +114567,Looking for Maria Sanchez (2013),Comedy|Romance +114569,"Bullet for Joey, A (1955)",Crime|Drama|Film-Noir|Thriller +114571,"Girl in Every Port, A (1928)",Comedy +114573,"Girl in Every Port, A (1952)",Comedy +114577,Africa: Texas Style (1967),Adventure|Western +114583,How Wang-Fo Was Saved (Comment Wang-Fo fut sauvé) (1987),Animation|Fantasy +114585,"Captive, The (Prisonnière, La) (1988)",Animation|Fantasy +114587,Glumov's Diary (Dnevnik Glumova) (1923),(no genres listed) +114591,Nine Lives (Ni liv) (1957),Action|Adventure|War +114593,"Chasers, The (Jakten) (1959)",Drama|Romance|Thriller +114595,"Bridal Party in Hardanger, The (Brudeferden i Hardanger) (1926)",Drama|Romance +114599,The Empty Hours (2013),Drama|Romance +114601,This Is Where I Leave You (2014),Comedy|Drama +114604,"50 Worst Movies Ever Made, The (2004)",Documentary +114617,Murph: The Protector (2013),Documentary|War +114620,Alice (2005),Drama +114624,"Barbary Coast Gent (Gold Town) (Honest Thief, The) (1944)",Comedy|Western +114627,Angel's Egg (Tenshi no tamago) (1985),Animation|Drama|Fantasy +114629,"Park Avenue: Money, Power and the American Dream (2012)",Documentary +114631,"Koumiko Mystery, The (Mystère Koumiko, Le) (1967)",Documentary +114633,Junkopia (1981),Documentary +114635,"Look of Silence, The (2014)",Documentary +114640,51 (2011),Horror|Sci-Fi +114652,"Case of the Grinning Cat, The (Chats perchés) (2004)",Documentary +114659,Cabin Fever: Patient Zero (2014),Horror|Sci-Fi|Thriller +114662,American Sniper (2014),Action|War +114667,Fort Bliss (2014),Drama|War +114670,Tusk (2014),Comedy|Drama|Horror +114673,Arrapaho (1984),Comedy|Western +114676,Protector (Protektor) (2009),Drama +114678,Hector and the Search for Happiness (2014),Adventure|Comedy|Drama +114680,Rigor Mortis (Geung si) (2013),Action|Drama|Horror +114685,"Dinner, The (Cena, La) (1998)",Comedy|Drama +114687,Unfair Competition (Concorrenza sleale) (2001),Drama|War +114692,"Overnighters, The (2014)",Documentary|Drama +114694,Rock-a-Bye Baby (1958),Comedy +114696,Hollywood or Bust (1956),Comedy|Musical +114698,"Bakeneko: A Vengeful Spirit (Kaibyô nori no numa) (Ghost-Cat Cursed Pond, The) (1968)",Horror +114700,"Tribe, The (Plemya) (2014)",Crime|Drama +114702,Around the Block (2013),Drama +114704,Space Station 76 (2014),Comedy|Drama|Sci-Fi +114707,Horns (2014),Horror|Mystery +114713,Annabelle (2014),Horror +114715,American Promise (2013),Documentary +114721,Bugs Bunny's 3rd Movie: 1001 Rabbit Tales (1982),Adventure|Animation|Children|Comedy +114723,At Land (1944),(no genres listed) +114725,"Study in Choreography for Camera, A (1945)",(no genres listed) +114752,Bloody Pit of Horror (Il boia scarlatto) (Virgins for the Hangman) (1965),Horror +114754,Fangs of the Living Dead (Malenka) (1969),Horror +114756,Blood Moon (2001),Drama|Horror +114758,Open Windows (2014),Crime|Thriller +114760,Happy Christmas (2014),Comedy|Drama +114762,Two Night Stand (2014),Comedy|Romance +114764,SS Camp 5: Women's Hell (SS Lager 5: L'inferno delle donne) (1977),Drama|Thriller|War +114766,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War +114775,Chained Heat II (Chained Heat 2) (1993),Crime|Drama|Thriller +114777,Challenge of the Masters (Liu A-Cai yu Huang Fei-Hong) (1976),Action|Drama +114791,Darktown Strutters (Get Down and Boogie) (1975),Action|Comedy|Musical +114793,Time of Eve (Eve no jikan) (2010),Animation|Romance|Sci-Fi +114795,Dracula Untold (2014),Action|Drama|Fantasy +114799,Chandler (1971),Crime|Drama +114805,Charles Bradley: Soul of America (2012),Documentary +114807,Charlie Chan at Monte Carlo (1937),Comedy|Crime|Mystery|Thriller +114809,Charlie Chan at the Circus (1936),Comedy|Crime|Mystery|Thriller +114814,Torrente 3: El protector (2005),Comedy|Crime +114818,Stretch (2014),Action|Comedy|Crime +114832,San Babila-8 P.M. (San Babila ore 20: un delitto inutile) (1976),Drama +114834,Hellgate (1989),Comedy|Horror +114836,"Sleeping Car, The (1990)",Comedy|Horror +114838,"Initiation, The (1984)",Horror|Mystery|Thriller +114842,Room 666 (Chambre 666) (1982),Documentary +114845,"Rat Savior, The (Izbavitelj) (1976)",Horror|Sci-Fi +114847,Autómata (Automata) (2014),Sci-Fi|Thriller +114849,The Prince (2014),Action|Thriller +114852,As I Lay Dying (2013),Drama +114854,Nicky's Family (2011),Documentary +114856,"Adventurer: The Curse of the Midas Box, The (2013)",Adventure|Fantasy +114859,Charlie Chan at the Olympics (1937),Comedy|Crime|Mystery|Thriller +114861,Charlie Chan at the Opera (1936),Comedy|Musical|Mystery|Thriller +114873,Stereo (1969),Sci-Fi +114875,Crimes of the Future (1970),Comedy|Sci-Fi +114877,Guernica (1950),(no genres listed) +114883,Gold of Rome (L'oro di Roma) (1961),Drama +114886,Entity (2012),Drama|Horror|Thriller +114888,House III: The Horror Show (1989),Horror +114891,Legendary (2010),Drama +114893,Sins (1986),Drama|Romance +114895,London Conspiracy (1974),Action|Mystery +114898,Millie (1931),Drama|Romance +114900,Stranger on the Prowl (Imbarco a mezzanotte) (1952),Drama +114902,"War Boys, The (2009)",Crime|Drama|Romance +114904,"Entitled, The (2011)",Thriller +114906,"Magic of Ordinary Days, The (2005)",Drama +114909,Coelacanth: The Fish That Time Forgot (2001),Documentary +114922,Ratko: The Dictator's Son (National Lampoon's Ratko: The Dictator's Son) (2009),Comedy +114925,"Captive, The (2014)",Crime|Drama|Thriller +114928,"Scribbler, The (2014)",Sci-Fi|Thriller +114931,Benigni (2009),Animation|Comedy|Drama +114933,Ilo Ilo (2013),Drama +114935,Predestination (2014),Action|Mystery|Sci-Fi|Thriller +114945,Jack and the Cuckoo-Clock Heart (Jack et la mécanique du coeur) (2013),Adventure|Animation|Drama|Fantasy|Musical|Romance +114947,"Red Tent, The (Krasnaya palatka) (1969)",Adventure|Drama|Fantasy +114958,Moomins on the Riviera (Muumit Rivieralla) (2014),Animation|Children|Comedy +114963,Fara (1999),Drama +114980,Grace Unplugged (2013),Drama|Musical +114984,"Return of Dracula, The (1958)",Horror +114995,Podwórka (2009),Documentary +115004,It's My Mother's Birthday Today (2008),(no genres listed) +115006,Spare Bed-Room (1969),(no genres listed) +115008,Skhizein (2008),Animation|Drama +115011,No Time for Nuts (2006),Adventure|Animation|Comedy +115017,"Christmas Memory, A (Truman Capote's 'A Christmas Memory') (1997)",Children|Drama +115021,Alien Nation: The Udara Legacy (1997),Sci-Fi +115023,"Alien Predator (Mutant II) (Falling, The) (1985)",Drama|Horror|Sci-Fi +115027,Appointment in Tokyo (1945),Documentary|War +115038,"Silent One, The (1985)",Adventure|Children|Drama +115040,"Children of Noisy Village, The (a.k.a Children of Bullerby Village, The) (Alla vi barn i Bullerbyn) (1986)",Children +115042,More About the Children of Noisy Village (a.k.a. More About the Children of Bullerby Village) (Mer om oss barn i Bullerbyn) (1987),Children +115060,"Haunted Castle, The (Hiroku kaibyô-den) (1969)",Horror +115065,Justin and the Knights of Valour (2013),Adventure|Animation +115068,"Bride from Hades, The (Botan-dôrô) (Peony Lantern) (Tale of Peonies and Lanterns, A) (1968)",Horror +115071,Jackass Presents: Bad Grandpa .5 (2014),Comedy|Documentary +115075,"Swan Princess: Escape from Castle Mountain, The (1997)",Animation|Children|Fantasy|Romance +115078,Barnacle Bill (1941),Comedy|Drama +115080,Odd Couple (Bo ming chan dao duo ming qiang) (Eternal Conflict) (1979),Action|Adventure +115109,"Lady and the Reaper, The (La Dama y la muerte) (2009)",Action|Animation|Comedy|Drama|Fantasy +115111,Ward 13 (2003),Action|Animation|Comedy|Horror +115119,Rabbit (2005),Animation|Horror +115122,What We Do in the Shadows (2014),Comedy|Horror +115130,The Dark Horse (2014),Drama +115133,Tatort: Im Schmerz geboren,Crime +115135,Corn Island (Simindis kundzuli) (2014),Drama +115137,Celine: Through the Eyes of the World (2010),Documentary +115139,Challenge to Lassie (1949),Children|Drama +115143,"Newburgh Sting, The (2014)",Documentary +115145,RiP: A Remix Manifesto (2009),Documentary +115147,The Best of Me (2014),Drama|Romance +115149,John Wick (2014),Action|Thriller +115151,Plastic (2014),Action|Crime +115160,Two Weeks in Another Town (1962),Drama +115162,Reclaim (2014),Drama|Thriller +115164,Good For Nothing (2011),Comedy|Western +115166,Snakes and Earrings (Hebi ni piasu) (2008),Drama|Thriller +115170,"Judge, The (2014)",Drama +115172,"Disappearance of Eleanor Rigby: Them, The (2014)",Drama +115174,Love Is Strange (2014),Drama +115176,Toute la mémoire du monde (1956),Documentary +115178,"Kids, The (Mistons, Les) (Mischief Makers, The) (1957)",Comedy +115180,Antoine and Colette (Antoine et Colette) (1962),Comedy|Drama +115203,"Culture High, The (2014)",Documentary +115205,Recipe for Love (2014),Romance +115207,Mount Head (Atama yama) (2002),Animation|Comedy|Drama|Fantasy +115210,Fury (2014),Action|Drama|War +115212,My Boyfriends' Dogs (2014),Comedy +115216,"Salvation, The (2014)",Drama|Western +115218,SIS (2008),Action|Crime|Drama|Thriller +115220,Grace of Monaco (2014),Drama|Romance +115229,Torn (2013),Drama +115231,St. Vincent (2014),Comedy +115233,Berlin Babylon (2001),Documentary +115235,Young Ones (2014),Drama|Sci-Fi|Western +115238,"Jungo Goes Bananas: Jungo III (Jungledyret Hugo: Fræk, flabet og fri) (2007)",Adventure|Animation|Children +115240,Land Ho! (2014),Adventure|Comedy|Drama +115242,"Mine, The (2012)",Adventure|Horror|Mystery +115244,Mine Games (2012),Mystery|Thriller +115247,Charlie Chan at the Race Track (1936),Comedy|Crime|Mystery|Thriller +115249,Charlie Chan at the Wax Museum (1940),Comedy|Crime|Mystery|Thriller +115251,Charlie Chan at Treasure Island (1939),Comedy|Crime|Horror|Mystery|Thriller +115254,Charlie Chan Carries On (1931),Mystery +115256,Charlie Chan in City in Darkness (1939),Drama|Mystery|Thriller +115258,Charlie Chan in Honolulu (1938),Comedy|Crime|Horror|Mystery|Thriller +115263,(A)sexual (2011),Documentary +115277,Donkey Hide (Oslinaya shkura) (1982),Children|Comedy|Fantasy|Romance +115279,That Kiljunen Family (Kiljusen herrasväki) (1981),Children|Comedy|Musical +115283,"Purple Ball, The (Lilovyy shar) (1987)",Fantasy|Sci-Fi +115285,Sleeping Beauty (2014),Adventure|Fantasy +115287,Stage Fright (2014),Horror|Musical +115291,"Chaperone, The (2011)",Action|Comedy +115309,"Swan Princess: The Mystery of the Enchanted Treasure, The (1998)",Animation|Children|Fantasy|Mystery +115333,Charlie Chan in Panama (1940),Adventure|Comedy|Crime|Drama|Mystery|Thriller +115335,Charlie Chan in Paris (1935),Comedy|Crime|Drama|Mystery|Thriller +115337,Charlie Chan in Reno (1939),Comedy|Crime|Drama|Mystery|Thriller +115339,Charlie Chan in Rio (1941),Comedy|Crime|Mystery|Thriller +115341,Charlie Chan in The Chinese Cat (1944),Comedy|Crime|Mystery|Thriller +115343,Charlie Chan on Broadway (1937),Comedy|Crime|Mystery|Thriller +115348,"Wise Kids, The (2011)",Drama +115351,Une étudiante d'aujourd'hui (1966),Documentary +115353,Advertising and the End of the World (1998),Documentary +115355,"Tough Guise: Violence, Media & the Crisis in Masculinity (1999)",Documentary +115357,"Chair, The (2007)",Drama|Horror|Thriller +115364,"Jungle Creature: Hugo, The (Jungledyret) (Go Hugo Go) (1993)",Animation|Children|Musical|Romance +115373,"Miss and the Doctors (Tirez la langue, mademoiselle) (2013)",Drama|Romance +115376,"Black Sleep, The (1956)",Horror|Sci-Fi +115379,Grave Secrets (Silent Screams) (1989),Horror +115381,"Alexander and the Terrible, Horrible, No Good, Very Bad Day (2014)",Comedy +115386,Charlie Chan's Chance (1932),Mystery +115388,Charlie Chan's Courage (1934),Mystery +115403,My Brother the Terrorist (2014),Documentary +115409,"Brothers Rico, The (1957)",Crime|Drama|Film-Noir|Thriller +115412,El malvado Carabel (1956),Comedy +115414,Left Behind (2014),Action|Sci-Fi|Thriller +115417,"Presentation, or Charlotte and Her Steak (Présentation ou Charlotte et son steak) (1960)",Comedy|Romance +115419,Maria (Mariya) (1989),(no genres listed) +115421,"Pleasure Party (Partie de plaisir, Une) (Piece of Pleasure, A) (1975)",Drama +115423,My Father and the Man in Black (2012),Documentary +115437,Blind (2014),Drama +115439,10 minutes (10 minuta) (2002),Drama|War +115441,(Absolutions) Pipilotti's Mistakes ((Entlastungen) Pipilottis Fehler) (1988),(no genres listed) +115460,Motivational Growth (2013),Comedy|Horror +115463,"Dance Party, USA (2006)",Drama +115465,Tour De Force (Hin und weg) (2014),Drama +115467,Harmontown (2014),Documentary +115469,You Killed Me First (1985),Drama +115471,Extraterrestrial (2014),Horror|Sci-Fi +115473,Loner (Woetoli) (2008),Horror|Thriller +115475,Blackbird (2012),Drama +115479,"Whip Hand, The (1951)",Action|Adventure|Crime|Drama|Sci-Fi|Thriller|War +115502,"Rewrite, The (2014)",Comedy|Romance +115504,Alien Abduction (2014),Horror|Mystery|Sci-Fi +115518,The Mummy's Shroud (1967),Horror +115522,"Creeping Terror, The (Crawling Monster, The) (1964)",Horror|Sci-Fi +115524,Why Me? (1990),Action|Adventure|Comedy|Crime +115526,Blood from the Mummy's Tomb (1971),Horror +115529,Judgement Day (1983),(no genres listed) +115531,Violette (Violette Nozière) (1978),Crime|Drama|Thriller +115534,Ouija (2014),Horror +115538,Stop at Nothing: The Lance Armstrong Story (2014),Documentary|Thriller +115540,Leave The World Behind (2014),Documentary +115545,"Star for Two, A (1991)",Drama|Romance +115556,Films to Keep You Awake: The Baby's Room (Películas para no dormir: La habitación del niño) (2006),Horror +115558,Amazon Jack 2: The Movie Star (a.k.a. Hugo the Movie Star) (Jungledyret 2 - den store filmhelt) (1996),Animation|Children|Musical|Romance +115565,S.W.A.T.: Firefight (2011),Action|Crime|Thriller +115569,Nightcrawler (2014),Crime|Drama|Thriller +115571,"Condemned, The (2014)",Crime|Documentary +115574,Child of God (2013),Crime|Drama|Thriller +115598,Blondie on a Budget (1940),Comedy +115600,"Breaktime, The (Zang-e Tafrih) (Recess) (1972)",Drama +115602,Two Solutions for One Problem (Dow Rahehal Baraye yek Massaleh) (1975),(no genres listed) +115604,"Chorus, The (Hamsarayan) (1982)",Drama +115607,"Seventh Brother, The (A hetedik testvér) (1995)",Animation|Children +115609,Darkside Blues (Dâkusaido burûsu) (1994),Animation|Sci-Fi +115611,Felix the Cat: The Movie (1988),Adventure|Animation|Children|Fantasy|Musical|Sci-Fi +115617,Big Hero 6 (2014),Action|Animation|Comedy +115620,"Bat, The (1926)",Mystery|Thriller +115622,Disaster L.A. (2014),Action|Horror|Sci-Fi +115624,Dream Home (Wai dor lei ah yut ho) (2010),Horror +115629,"Marshland (Isla mínima, La) (2014)",Action|Crime +115631,Alone for Christmas (2013),Action|Children|Comedy|Fantasy +115633,Archangel (2005),Crime|Drama|Mystery|Thriller +115635,"Bad Blonde (Flanagan Boy, The) (Woman Is Trouble, The) (1953)",Drama +115653,Blue Denim (1959),Drama +115664,The Book of Life (2014),Adventure|Animation|Romance +115667,"Love, Rosie (2014)",Comedy|Romance +115669,Young Detective Dee: Rise of the Sea Dragon (Di Renjie: Shen du long wang) (2013),Action|Adventure|Drama|Fantasy|Mystery|IMAX +115671,"Dancing Masters, The (1943)",Comedy|Romance +115676,Hard Sun (2014),Drama|Romance +115678,"Like Sunday, Like Rain (2014)",Drama|Romance +115680,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller +115682,Winterhawk (1975),Western +115685,National Theatre Live: Frankenstein,Drama|Fantasy +115687,Mad Monster Party? (1967),Children|Comedy|Horror +115690,"Very Social Secretary, A (2005)",Comedy|Drama +115692,Blindfold (1965),Comedy|Romance|Thriller +115699,Turning Tide (En solitaire) (2013),Adventure|Drama +115701,Cry Baby Lane (2000),Drama|Horror +115703,"The Hire: Star, The (2001)",Action|Comedy +115705,"Cat Came Back, The (1988)",Action|Animation|Comedy +115708,"Big Snit, The (1985)",Animation|Comedy +115711,TINY: A Story About Living Small (2013),Documentary +115713,Ex Machina (2015),Drama|Sci-Fi|Thriller +115715,Learning to Ride (2014),Drama|Romance +115721,They Have Escaped (He ovat paenneet) (2014),Drama +115724,Separation City (2009),Comedy|Drama|Romance +115727,Crippled Avengers (Can que) (Return of the 5 Deadly Venoms) (1981),Action|Adventure +115746,Runaway (2009),Action|Animation|Comedy +115748,Strange Invaders (2002),Animation|Comedy +115752,Thief of Damascus (1952),Adventure|Fantasy|Romance +115754,Stunt Rock (1980),Action|Drama|Romance +115756,"Cube of Sugar, A (Ye Habe Ghand) (2011)",Comedy|Drama +115759,Dead Men Walk (1943),Drama|Horror|Mystery +115761,Inserts (1974),Comedy|Drama +115766,"Bridge, The (Die Brücke) (2008)",War +115768,"Fistful of Fingers, A (1995)",Comedy|Western +115770,Before I Disappear (2014),Drama +115772,Crimes Against Humanity (2014),Comedy +115775,Mission Congo (2013),Documentary +115777,Beneath (2013),Horror +115779,Great Guns (1941),Comedy|Romance|War +115781,"White Reindeer, The (Valkoinen peura) (1952)",Drama|Fantasy|Horror +115789,"Proud Valley, The (1940)",Drama +115793,Breaking and Entering (2010),Comedy|Documentary +115795,Bronx Obama (2014),Documentary +115797,Calling Dr. Gillespie (1942),Crime|Drama|Thriller +115801,Charlie Chan's Greatest Case (1933),Mystery +115819,Mr Hublot (2013),Animation|Comedy +115821,Shakespeare's Globe: Henry V (2013),Drama +115824,Mr. Turner (2014),Drama +115826,Bound by Flesh (2012) ,Documentary +115828,Copenhagen (2014),Adventure|Drama|Romance +115831,Serial Killer Culture (2014),Crime|Documentary +115834,Charlie Chan's Murder Cruise (1940),Comedy|Crime|Mystery|Thriller +115836,Charlie Chan's Secret (1936),Comedy|Crime|Horror|Mystery|Thriller +115840,Charlotte's Web 2: Wilbur's Great Adventure (2003),Adventure|Animation|Children +115864,Hue and Cry (1947),Action|Comedy|Crime +115867,Vai~E~Vem (2003),Comedy|Drama +115869,O Último Mergulho (1992),Drama +115871,Mercy (2014) ,Horror|Thriller +115873,"Red Beret, The (1953)",Drama|War +115875,Toy Story Toons: Hawaiian Vacation (2011),Adventure|Animation|Children|Comedy|Fantasy +115877,"Simpsons: The Longest Daycare, The (2012)",Animation|Comedy +115879,Toy Story Toons: Small Fry (2011),Adventure|Animation|Children|Comedy|Fantasy +115881,9 (2005),Animation|Fantasy +115885,Wyatt Earp's Revenge (2012),Action|Adventure|Drama +115887,"Sniper, The (2009)",Action|Thriller +115893,Madame Bovary (2000),(no genres listed) +115895,Cambridge Spies (2003),Drama +115897,Calm at Sea (La Mer à l'aube) (2012),Drama|War +115899,Animal (2005),Drama +115903,Young Goethe in Love (2011),Drama|Romance +115907,"Crew, The (2008)",Action|Crime|Drama|Thriller +115909,"Hit List, The (2011)",Action|Thriller +115911,"Prodigy, The (2005)",Action|Children|Drama|Mystery|Thriller +115913,30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo (2013),Comedy +115915,"Better Tomorrow III: Love and Death in Saigon, A (1989)",Action|Thriller|War +115917,"Marine 2, The (2009)",Action|Adventure|Drama|Thriller +115919,"Delivery, The (1999)",Action|Adventure|Horror|Thriller +115921,Dead in Tombstone (2013),Action|Fantasy|Horror +115923,Seal Team Eight: Behind Enemy Lines (2014),Action|Drama|War +115925,Solan og Ludvig: Jul i Flåklypa (2013),Animation|Children +115927,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi +115929,Barbie: A Perfect Christmas (2011),Animation|Children +115931,LEGO Hero Factory: Savage Planet (2011),Action|Adventure|Animation|Children|Sci-Fi +115933,LEGO Hero Factory: Rise of the Rookies (2010),Action|Children +115935,Tom Sawyer (2000),Adventure|Animation|Children +115937,King Solomon's Mines (2004),Action|Adventure +115939,Joulupukki ja noitarumpu (1996),Animation|Children +115941,The Land Before Time IV: Journey Through the Mists (1996),Adventure|Animation|Children +115943,The Land Before Time V: The Mysterious Island (1997),Adventure|Animation|Children +115945,The Land Before Time VI: The Secret of Saurus Rock (1998),Animation|Children +115947,An American Tail: The Treasure of Manhattan Island (1998),Adventure|Animation +115949,An American Tail: The Mystery of the Night Monster (1999),Adventure|Animation|Children|Fantasy|Mystery|Sci-Fi +115951,Stranded (2013),Horror|Sci-Fi +115953,Special Forces (2003),Action|Thriller|War +115955,Category 7: The End of the World (2005),Action|Drama|Thriller +115957,The Jayne Mansfield Story (1980),Drama +115961,The Marine 3: Homefront (2013),Action +115963,The Stoker (2010),Crime|Drama +115965,Dead Man's Bluff (2005),Action|Comedy|Crime +115967,These Final Hours (2014),Drama|Thriller +115969,Generation War (2013),Drama|War +115971,Kung Fu Dunk (2008),Action|Adventure|Comedy +115973,Haider (2014),Crime|Drama|Romance +115975,The Fifth Season (2012),Drama +115977,Auschwitz: The Nazis and the 'Final Solution' (2005),Documentary +115979,Puerto Vallarta Squeeze (2004),Action|Adventure|Thriller +115985,Going Back (2001),Action|Drama|War +115987,The Circle (2002),Thriller +115989,American Soldiers (2005),Action|Drama|Thriller|War +115991,"Kumiko, the Treasure Hunter (2014)",Comedy|Drama +115994,The great match (2007),Comedy +115996,Stereo (2014),Thriller +115998,The Guardians (2012),Action|Thriller +116000,Starship Invasions (1977),Sci-Fi +116002,History of the Eagles (2013),Documentary +116004,Paradise: Love (2012),Drama +116006,Beyond the Border (2011),Action|Drama|War +116008,Everything Will Be Fine (2010),Drama|Thriller +116010,The Hour of the Lynx (2013),Drama|Thriller +116012,The Young Savages (1961),Crime|Drama +116014,Rage (1972),Drama +116016,Good Luck. And Take Care of Each Other (2012),Comedy|Drama +116024,Northern Soul (2014),Drama +116026,Checking Out (2006),Comedy +116028,Children of the Corn (2009),Drama|Horror|Thriller +116030,Children of the Corn 666: Isaac's Return (1999),Horror|Mystery +116032,Children of the Corn V: Fields of Terror (1998),Horror|Thriller +116034,Children of the Corn: Genesis (2011),Horror|Thriller +116036,Children of the Corn: Revelation (2001),Horror|Thriller +116042,Christine (1958),Drama +116044,Christmas in Connecticut (1992),Comedy|Romance +116048,Cleopatra (2003),Comedy|Drama +116050,Cleopatra (1999),Drama|Romance +116052,Cliente (2008),Drama|Romance +116056,Coach (2010),Comedy|Romance +116062,Cohen and Tate (1988),Crime|Thriller +116064,Cold Around the Heart (1997),Crime|Drama|Thriller +116066,Cold Blooded (2012),Crime|Thriller +116068,Cold Heart (2001),Romance|Thriller +116076,Intersections (2013),Romance|Thriller +116080,Torture Garden (1967),Horror +116082,British Sounds (1970),Documentary +116084,Here and Elsewhere (1976),Documentary +116086,Meetin' WA (1986),Documentary +116088,Keep Your Right Up (1987),Comedy|Drama +116090,A Night in the Show (1915),Comedy +116092,By the Sea (1915),Comedy +116094,Mabel's Married Life (1914),Comedy +116096,Lettera Amorosa (1995),(no genres listed) +116098,Passeio com Johnny Guitar (1996),(no genres listed) +116100,Conserva Acabada (1990),(no genres listed) +116102,O Amor das Três Romãs (1979),Drama +116104,Sophia de Mello Breyner Andresen (1969),Documentary +116106,Death of a Nation - The Timor Conspiracy (1994),Documentary +116108,The Secret Country: The First Australians Fight Back (1986),Documentary +116118,Colt Comrades (1943),Western +116124,Coming Soon (1999),Comedy|Romance +116126,Complicit (2013),(no genres listed) +116128,Compulsion (2013),Drama|Thriller +116132,Concrete Blondes (2013),Action|Comedy|Crime +116136,Olive Kitteridge (2014),Drama +116138,Leviathan (2014),Drama +116141,The Russian Novel (2013),Drama +116155,Still Life (2013),Drama +116157,Electronic Labyrinth THX 1138 4EB (1967),Sci-Fi +116159,Level Five (1997),Documentary|Romance|War +116161,Foxcatcher (2014),Drama +116163,Jive Turkey (1974),Action +116165,Illusion Of Blood (1965),Fantasy|Horror +116167,Ladies of Leisure (1930),Romance +116169,Reign of Assassins (2010),Action +116171,Everybody Dies But Me (2008),Drama +116173,Three on a Weekend (1938),Drama +116175,The Emperor's Candlesticks (1937),Drama|Romance +116177,Romance in Manhattan (1935),Comedy|Romance +116179,Sazen Tange and the Pot Worth a Million Ryo (1935),Comedy|Drama +116181,The Princess Comes Across (1936),Comedy|Mystery|Romance|Thriller +116183,It's Love I'm After (1937),Comedy +116185,Thirty Day Princess (1934),Comedy|Romance +116187,You Belong to Me (1941),Comedy|Romance +116189,Personal Property (1937),Comedy|Romance +116191,Wolf Creek 2 (2013),Horror|Thriller +116193,Two-Faced Woman (1941),Comedy|Romance +116195,Love Is News (1937),Comedy|Romance +116197,Dark Journey (1937),Adventure|Romance|Thriller +116199,Storm Warning (2007),Horror +116201,Blind Alley (1939),Crime +116203,The Last Journey (1936),Crime|Drama +116205,The Clinic (2010),Horror|Thriller +116207,Zulu (2013),Crime|Drama|Thriller +116209,The Road to Glory (1936),Drama|War +116211,The Sign of Four: Sherlock Holmes' Greatest Case (1932),Mystery +116213,Walking With Dinosaurs (2013),Adventure|Animation|Children +116215,"Ultramarines: A Warhammer 40,000 Movie (2010)",Animation|Sci-Fi +116217,Secret of the Wings (2012),Adventure|Animation|Children|Fantasy +116219,Tinker Bell and the Lost Treasure (2009),Adventure|Animation|Children|Fantasy +116221,Tyson (1995),Drama +116223,The Conductor (2012),Drama +116225,Tsar (2009),Drama +116227,Taxi Blues (1990),Drama +116231,Confessions of an Opium Eater (1962),Drama +116233,Confidence Girl (1952),Crime|Drama|Thriller +116235,Confidentially Connie (1953),Children|Comedy +116245,Convicts (1991),Drama +116251,Cool Dog (2011),Children +116253,IMAX: Coral Reef Adventure (2003),Children|Documentary|IMAX +116257,Cougar Club (2007),Comedy +116259,Courage of Lassie (1946),Adventure|Children|Drama +116261,Wuthering Heights (2009),Drama +116265,Cowgirls n' Angels (2012),Children|Drama +116267,Craig Ferguson: Does This Need to Be Said? (2011),Comedy +116271,D.L. Hughley: Reset (2014),Comedy +116275,Dane Cook: Vicious Circle (2006),Comedy +116279,Crazy (2007),Drama|Romance +116281,Crazy Eights (2006),Horror +116283,And So It Is (1966),Drama +116285,Crazy Mama (1975),Action|Comedy +116289,Crime and Punishment (1983),Crime|Drama +116291,Light Years Away (1981),Drama +116293,Crime and Punishment (2002),Drama +116295,Critic's Choice (1963),Comedy|Romance +116297,Cutaway (2000),Action|Thriller +116299,Sniper: Legacy (2014),Action|Thriller +116301,Catch Hell (2014),Drama|Thriller +116305,Pentimento (1979),Drama +116307,You're Not You (2014),Drama +116311,Crisis (1950),Drama|Thriller +116313,Cross My Heart (1987),Comedy|Romance +116315,Crush (2009),Drama|Horror|Thriller +116317,Crush (2013),Thriller +116321,Cry 'Havoc' (1943),Drama|War +116323,Cry of the City (1948),Crime|Drama +116331,Cyborg 3: The Recycler (1995),Action|Sci-Fi +116341,Dana Carvey: Squatting Monkeys Tell No Lies (2008),Comedy +116343,Dave Attell: Captain Miserable (2007),Comedy +116345,Dakota's Summer (2014),Children +116351,Charlie Chan in Dangerous Money (1946),Crime|Mystery +116387,Muddy River (1981),Drama +116397,Stonehearst Asylum (2014),Thriller +116399,Russia 88 (2009),Drama +116401,Strawberry Wine (2009),Drama +116403,The Third Half (2012),Drama|Romance +116405,A Star Athlete (1937),Comedy|Drama +116407,Snake Woman's Curse (1968),Horror +116409,Aglaya (2012),Drama +116411,Tangerines (2013),Drama +116413,Life Partners (2014),Comedy|Romance +116415,Anatomy of a Love Seen (2014),Drama|Romance +116417,The Snow Woman (1968),Fantasy|Horror +116419,Drive Hard (2014),Action|Comedy|Crime +116421,The Ghost Story of Oiwa's Spirit (1961),Horror +116423,An Apology to Elephants (2013),Documentary +116425,Ecstasy in Entropy (1999),(no genres listed) +116427,Air Raid Wardens (1943),Children|Comedy +116429,Alias the Doctor (1932),Drama +116431,Now! (1967),Documentary +116433,America's Most Haunted Inns (2004),Documentary +116435,Building the Inferno: Nobuo Nakagawa and the Making of 'Jigoku' (2006),Documentary +116439,Captain January (1924),Drama +116441,Heart of a Lion (2013),Comedy|Drama|Romance +116447,Dark of the Sun (1968),Action|Adventure|Drama|War +116449,Endless Love (1993),Drama|Romance +116453,Hateship Loveship (2013),Drama +116457,Hearts Divided (1936),Drama|Romance +116461,How the Toys Saved Christmas (1996),Animation|Children +116463,Ice Castles (2010),Drama|Romance +116465,In Secret (2013),Crime|Drama|Romance|Thriller +116467,It's a Small World (1950),Comedy +116469,Kickboxer 5 (1995),Action|Thriller +116471,Kiki (1926),Comedy +116473,Kiki (1931),Musical +116477,My Prairie Home (2014),Documentary +116479,Let's Spend the Night Together (1982),(no genres listed) +116481,Man for a Day (2012),Documentary +116483,Hawaii (2013),Romance +116485,The Skinny (2012),Comedy|Drama|Romance +116487,Remington and the Curse of the Zombadings (2011),Comedy|Drama|Horror +116489,Out in the Dark (2012),Drama|Romance +116491,The Noble Family (2013),Comedy +116493,The Returned (2013),Drama|Horror|Thriller +116495,52 Tuesdays (2014),Children|Drama +116497,Everybody's Got Somebody... Not Me (2012),Drama +116499,The True Story of Puss 'n Boots (2009),Adventure|Animation|Children +116501,Die Fighting (2014),Action|Thriller +116503,The Possession of Michael King (2014),Horror +116505,New Kids Nitro (2011),Action|Comedy +116507,Mission London (2010),Comedy +116511,The Broken Jug (1937),Comedy +116515,Mohawk (1956),Action|Adventure|Romance|Western +116517,Navy Blues (1929),Comedy|Drama +116519,Our Mother's House (1967),Drama|Thriller +116521,Over the Brooklyn Bridge (1984),Comedy +116525,Circus (1936),Comedy|Musical +116529,Stalingrad (2013),Action|Drama|War|IMAX +116533,Scarecrow (2013),Horror +116539,Small Time (2014),Comedy|Drama +116543,So Long Letty (1929),Comedy|Musical +116545,Laser Mission (1990),Action|Adventure|Thriller +116547,Soldier of Fortune (1955),Adventure|Crime|Drama|Romance|Thriller +116549,Soldier of Fortune (1976),Adventure|Comedy|Drama +116555,The Disembodied (1957),Horror +116557,The Rag Man (1925),Comedy|Drama +116562,The Sweet Ride (1968),Drama +116564,The Whistler (1944),Mystery|Thriller +116568,Young Tom Edison (1940),Drama +116570,The Youngest Profession (1943),Comedy|Romance +116578,Dante's Inferno (1911),Adventure|Drama|Fantasy|Horror +116580,Dante's Inferno (2007),Animation|Comedy +116584,Dark Alibi (1946),Crime|Drama|Mystery|Thriller +116590,Death In Love (2008),Drama|Romance|War +116600,Do Not Disturb (1965),Comedy +116602,"Double, Double, Toil and Trouble (1993)",Adventure|Children|Comedy|Fantasy|Horror +116604,Dark Fields (2009),Horror +116608,Dark House (2014),Horror|Thriller +116647,The Emperor of California (1936),Western +116660,Free Fall (2013),Drama +116664,Advanced Style (2014),Comedy|Documentary|Drama +116666,Dr Jekyll & Sister Hyde (1971),Horror|Sci-Fi +116668,Dead Snow 2: Red vs. Dead (2014) ,Action|Comedy|Horror +116672,David Cross: The Pride Is Back (1999),Comedy +116678,Dead Heat (2002),Action|Comedy|Drama|Thriller +116680,Twice-Told Tales (1963),Horror|Mystery|Romance|Sci-Fi +116682,Decoder (1984),Horror|Mystery|Sci-Fi +116694,Dead Hooker in a Trunk (2009),Action|Horror|Mystery +116696,Dead Man's Eyes (1944),Horror|Mystery +116698,Dead Men Tell (1941),Comedy|Crime|Drama|Mystery|Thriller +116700,Elle: A Modern Cinderella Tale (2011),Children|Drama|Fantasy|Sci-Fi +116702,Zatoichi (1989),Action|Drama +116704,Zanjeer (1973),(no genres listed) +116710,Young Man with a Horn (1950),Drama|Musical|Romance +116716,Young Cassidy (1965),Drama +116718,Volga - Volga (1938),Comedy|Musical +116720,The Inhabited Island 2: Rebellion (2009),Action|Adventure|Sci-Fi +116722,Stromberg - Der Film (2014),Comedy +116724,You Are the Apple of My Eye (2011),Comedy|Drama|Romance +116726,Hamilton - In the Interest of the Nation (Hamilton: I nationens intresse) (2012),Action|Drama|Thriller +116728,Out of Bounds (2011),Drama +116730,Dead of the Nite (2013),Horror +116732,Moscow Laughs (1934),Comedy|Musical +116738,DeadHeads (2011),Adventure|Comedy|Horror +116740,Deadline (2004),Documentary +116742,Secret (2007),Drama|Fantasy|Romance +116744,Warriors of the Rainbow: Seediq Bale (2011),Action|Drama +116746,Deadline (2011),Mystery|Thriller +116748,Deadline (2012),Drama|Mystery|Thriller +116750,Deadline at Dawn (1946),Film-Noir|Mystery|Romance|Thriller +116754,Dear Brigitte (1965),Comedy +116756,Death of a Scoundrel (1956),Crime|Drama +116758,Death Racers (2008),Action|Adventure|Comedy|Sci-Fi|Thriller +116766,Deja Vu (1985),Drama +116768,Deliver Us from Evil (2009),Thriller +116770,Last Passenger (2013),Action|Mystery|Thriller +116772,The Hanoi Hilton (1987),Drama|War +116779,"Fat, Sick & Nearly Dead 2 (2014)",Documentary +116781,Serena (2014),Drama +116783,Queens Of Evil (1970),Fantasy|Horror +116787,The Four Feathers (1978),Adventure|Drama|Romance|War +116791,Callan (1974),Thriller +116793,The Violent Enemy (1967),Crime|Drama +116797,The Imitation Game (2014),Drama|Thriller|War +116799,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance +116801,Labyrinth of Lies (2014),Drama +116803,Battle of the Warriors (2006),Action|Drama|War +116805,Confucius (2010),Drama +116807,Babysitting (2014),Comedy +116809,Curse of the Fly (1965),Horror|Sci-Fi +116813,The Brides of Fu Manchu (1966),Action|Crime|Horror|Sci-Fi +116817,Rudderless (2014),Comedy|Drama +116819,Jackboots on Whitehall (2011),Animation|Comedy|Sci-Fi|War +116821,Dirty Bomb (2011),Comedy +116823,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller +116825,Those Fantastic Flying Fools (1967),Adventure|Comedy|Fantasy|Sci-Fi +116831,"Give 'em Hell, Malone (2009)",Action|Crime|Thriller +116833,Son of the White Mare (1981),Adventure|Animation|Fantasy +116835,Samson & Sally (1984),Animation|Children|Romance +116837,The Little Fox (1981),Adventure|Animation|Children +116839,Gett: The Trial of Viviane Amsalem (2014),Drama +116841,Rosewater (2014),Drama +116845,Valley Uprising (2014),Documentary +116847,United States of Secrets (Part One): The Program (2014),Documentary +116849,Sex Ed (2014),Comedy|Romance +116851,The Apocalypse (2002),Action|Drama +116853,A Good Marriage (2014),Thriller +116855,The Way He Looks (2014),Drama|Romance +116857,Love and Honor (2012),Drama|Romance|War +116859,Remember Sunday (2013),Drama|Romance +116861,The Gilded Cage (2013),Comedy +116863,Beauty Prize (1930),Drama +116867,Romance (1930),Drama|Romance +116879,The Beast of the City (1932),Crime|Drama|Film-Noir|Romance +116881,The Cabin in the Cotton (1932),Drama +116885,The Man Who Played God (1932),Drama|Romance +116887,Exodus: Gods and Kings (2014),Action|Adventure|Drama +116889,Attack on Darfur (2009),Action|Drama|War +116891,Max Schmeling (2010),Action|Drama|War +116893,Trash (2014),Adventure|Crime|Drama|Thriller +116895,Frozen Days (2005),Drama|Mystery|Thriller +116897,Wild Tales (2014),Comedy|Drama|Thriller +116899,Summer Days With Coo (2007),Animation +116901,Ambition (2014),Sci-Fi +116903,Head Over Heels (2012),Animation|Children|Comedy|Romance +116905,Patema Inverted (2013),Adventure|Animation|Drama|Fantasy|Sci-Fi +116907,Fed Up (2014),Documentary +116909,The Oblong Box (1969),Horror +116911,"Yobi, The Five-Tailed Fox (2007)",Animation|Fantasy +116913,The Savior (1971),Drama +116915,Arcana (1972),Drama|Horror|Mystery +116917,Whoregasm (1988),(no genres listed) +116921,Police State (1987),Drama +116923,Kiss Me Goodbye (1986),(no genres listed) +116925,The Male Animal (1942),Comedy|Romance +116927,Rio Rita (1942),Comedy|Musical|Romance +116933,The Fighting 69th (1940),Action|Adventure|Drama|War +116935,Riley Rewind (2013),Drama|Sci-Fi +116937,My Gun is Quick (1957),Mystery +116939,Werner - Beinhart! (1990),Action|Animation|Comedy +116941,Jetsons: The Movie (1990),Animation|Children|Comedy|Musical|Sci-Fi +116943,Thesis on a Homicide (2013),Crime|Mystery|Thriller +116945,Freedom (2009),Drama +116947,Stand Off (2012),Comedy|Drama +116949,Thrust in Me (1985),(no genres listed) +116951,Bo Burnham: what. (2013),Comedy +116953,Magic Camp (2012),Children|Documentary +116955,The Wild World of Lydia Lunch (1983),(no genres listed) +116957,The Reunion (2013),Drama +116959,Embracing (1992),Documentary +116961,Katatsumori (1994),Documentary +116963,Ski School (1991),Comedy +116965,See Heaven (1995),Documentary +116967,Sun on the Horizon (1996),Documentary +116969,Paths of Hate (2011),Action|Animation|Drama|War +116971,Bloody Birthday (1981),Horror|Thriller +116973,Ski Patrol (1990),Action|Comedy +116975,Long Way Round (2004),Adventure|Documentary +116977,Dumb and Dumber To (2014),Comedy +116979,The Legend of Sarila (2013),Adventure|Animation|Children +116981,Imago mortis (2009),Horror +116983,The Gun That Won the West (1955),Action|Adventure|Western +116985,The Longest Week (2014),Comedy|Drama +116987,Gunfighters (1947),Action|Drama|Romance|Western +116989,Tales of the Grim Sleeper (2014),Crime|Documentary +116991,"Yes Men Are Revolting, The (2014)",Documentary +117003,God Is the Bigger Elvis (2012),Documentary +117017,The Wicker Tree (2011),Drama|Horror|Mystery|Thriller +117061,The Green (2011),Drama +117065,The Damned (2014),Horror|Mystery|Thriller +117103,Deliver Us From Evil (1973),Crime|Drama +117107,Miss Meadows (2014),Drama +117109,Too Many Cooks (2014),Comedy +117111,Pardon Us (1931),Comedy|Crime|Drama|Musical +117113,Murder Over New York (1940),Comedy|Crime|Mystery|Thriller +117115,Repentance (2013),Drama|Horror|Thriller +117119,Cass (2008),Crime|Drama +117121,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller +117123,Dear White People (2014),Comedy|Drama +117125,The Man Who Loved Yngve (2008),Comedy|Drama|Romance +117127,Camino (2008),Drama +117129,Alucarda (1977),Horror|Thriller +117133,Painted Skin (2008),Action|Drama|Thriller +117136,One Chance (2013),Comedy|Drama +117138,Rent: Filmed Live on Broadway (2008),Drama|Musical +117142,An Empress and the Warriors (2008),Action|Drama|Romance|War +117146,Lucky Them (2013),Drama +117148,Dil Bole Hadippa! (2009),Comedy|Drama|Romance +117152,Border Café (2005),Drama +117154,Last Weekend (2014),Comedy|Drama +117156,May in the Summer (2013),Comedy|Drama +117158,"Nono, the Zigzag Kid (2012)",Adventure|Children|Drama +117160,Tip Top (2013),Comedy|Thriller +117162,October Gale (2014),Drama|Romance|Thriller +117164,Musicwood (2012),Adventure|Documentary|Drama +117166,Liar's Dice (2014),Adventure|Children|Drama +117168,How Do You Write a Joe Schermann Song (2012),Comedy|Drama|Musical +117170,Calloused Hands (2013),Drama +117172,BFFs (2014),Comedy +117176,The Theory of Everything (2014),Drama|Romance +117178,Amira & Sam (2014),Comedy|Drama|Romance +117180,Love Sick Love (2013),Thriller +117182,Double Tide (2010),Documentary +117184,"Moscow, Belgium (2008)",Comedy|Drama|Romance +117186,Brigham Young (1940),Romance|Western +117188,Johnny Apollo (1940),Crime|Drama|Film-Noir|Romance +117192,Doctor Who: The Time of the Doctor (2013),(no genres listed) +117194,Dolphin Tale 2 (2014),Children|Drama +117198,You're Missing the Point (1940),Comedy +117300,Demoted (2011),Comedy +117308,When the Game Stands Tall (2014),Drama +117310,Aashiqui 2 (2013),Drama|Musical|Romance +117312,The ABCs of Death 2 (2014),Comedy|Horror +117314,Neurons to Nirvana (2013),Documentary +117316,Fillmore (1972),(no genres listed) +117318,The Flyboys (2008),Action|Adventure +117320,The Last Word (2008),Drama|Romance +117322,Dream Boy (2008),Drama|Romance +117324,Nothing to Lose (2008),Crime|Thriller +117326,Take the Trash (2008),Comedy +117328,Les invincibles (2013),Comedy +117330,The Mark of the Angels - Miserere (2013),Thriller +117332,Wrestling Queens (2013),Comedy +117334,The New Girlfriend (2014),Drama +117336,The Missionaries (2014),Comedy|Romance +117338,Red Mist (2008),Horror|Thriller +117340,On a marché sur Bangkok (2014),Comedy +117342,Real Time (2008),Comedy|Drama +117344,Ragnarok (2013),Action|Adventure +117346,Secrets Of State (2008),Thriller +117348,Farm House (2008),Horror|Mystery|Thriller +117350,A Matador's Mistress (2008),Drama|Romance +117352,A Kind of America 2 (2008),Comedy +117354,Parasomnia (2008),Horror|Romance|Thriller +117356,Fast Track: No Limits (2008),Action|Thriller +117358,20th Century Boys - Chapter 1: Beginning of the End (2008),Adventure|Mystery|Sci-Fi +117360,Stiletto (2008),Action|Crime|Drama|Thriller +117362,If You Are the One (2008),Comedy|Romance +117364,Virunga (2014),Documentary|War +117366,Sick Girl (2007),Crime|Horror|Thriller +117368,The Madagascar Penguins in a Christmas Caper (2005),Animation|Comedy +117370,The Seven-Ups (1973),Action|Crime|Drama|Thriller +117372,V/H/S: Viral (2014),Horror|Thriller +117374,Running from Crazy (2013),Documentary +117376,April Story (1998),Romance +117415,Happiness (2014),Documentary +117418,Victor and the Secret of Crocodile Mansion (2012),Adventure|Children|Mystery +117420,The Boy Who Cried Werewolf (2010),Children|Horror +117424,Nothing But the Night (1973),Crime|Horror|Mystery|Thriller +117426,Destroyer (1943),Adventure|Drama|War +117428,Mr Hockey The Gordie Howe Story (2013),Drama +117430,Gone Nutty (2002),Animation|Comedy +117432,The Heart Machine (2014),Drama|Thriller +117434,Starry Eyes (2014),Horror +117436,End of the Road (1970),Comedy|Drama +117438,When Marnie Was There (2014),Animation|Drama +117440,Lupin the 3rd (2014),Action|Adventure|Comedy +117442,The Monkey King (2014),Action|Adventure|Children|IMAX +117444,Song of the Sea (2014),Animation|Children|Fantasy +117446,Expelled from Paradise (2014),Animation|Sci-Fi +117448,Kiki's Delivery Service (2014),Fantasy +117450,Exit (2011),Drama +117452,Tied (2013),Drama +117454,The Magic Crystal (2011),Adventure|Animation|Children|Comedy|Fantasy +117456,Beyond the Lights (2014),Drama +117458,Misunderstood (1984),Drama +117460,Treasure of the Four Crowns (1983),Adventure +117462,The Last Shark (1981),Adventure|Horror|Thriller +117464,Paulette (2012),Comedy|Crime +117466,In the Heart of the Sea (2015),Action|Adventure|Drama +117468,Leontine (1968),Comedy|Crime +117470,Les Tuche (2011),Comedy +117472,Comme les 5 doigts de la main (2010),Action|Drama|Thriller +117474,Iceman (2014),Action|Comedy|Sci-Fi +117476,Stockholm Stories (2014),Drama +117478,Pressed (2011),Action|Crime|Drama|Thriller +117480,The Care Bears Adventure in Wonderland (1987),Animation|Children|Comedy +117482,Merry-Go-Round (1923),Drama +117484,Fatty and Mabel Adrift (1916),Comedy +117486,A Connecticut Yankee in King Arthur's Court (1989),Adventure|Children|Comedy|Fantasy +117488,A Promise (2013),Drama|Romance +117490,Alien Nation: Dark Horizon (1994),Drama|Sci-Fi +117492,Alien Nation: Body and Soul (1995),Sci-Fi +117494,Alien Nation: The Enemy Within (1996),Sci-Fi +117496,Alien Nation: Millennium (1996),Sci-Fi +117498,Fandry (2013),Children|Drama +117504,Crackers (1984),Action|Comedy|Crime|Thriller +117506,Deewaar (1975),Action|Crime|Drama|Thriller +117509,City Slacker (2012),Romance +117511,Hello Ladies: The Movie (2014),Comedy +117513,Jamilya (1969),Drama|Romance|War +117515,Codebreaker (2011),Documentary|Drama +117517,Listen Up Philip (2014),Drama +117521,Squeeze Play (1979),Comedy +117523,Love You You (2011),Romance +117525,Ain't in It for My Health: A Film About Levon Helm (2013),Documentary +117527,Seducing Mr. Perfect (2006),Romance +117529,Jurassic World (2015),Action|Adventure|Sci-Fi|Thriller +117531,Watermark (2014),Documentary +117533,Citizenfour (2014),Documentary +117535,Dans la peau d'une grande (2011),Comedy +117537,David et Madame Hansen (2012),Comedy|Drama +117539,Pop Redemption (2013),Comedy +117541,Home Sweet Home (2008),Comedy +117543,LOL (Laughing Out Loud) (2008),Comedy +117545,Asterix: The Land of the Gods (Astérix: Le domaine des dieux) (2014),Animation +117547,She Monkeys (2011),Drama +117549,The Taking of Deborah Logan (2014),Horror|Thriller +117551,Admissions (2004),Drama +117553,House Hunting (2013),Mystery|Thriller +117555,Alive Inside (2014),Documentary +117561,Once Upon a Time in Queens (2013),Comedy|Drama +117565,God Forgives... I Don't! (1967),Action|Western +117570,Santa Who? (2000),Comedy|Fantasy +117572,Hit by Lightning (2014),Comedy|Crime|Romance +117574,The Incite Mill - 7 Day Death Game (2010),Horror|Mystery|Thriller +117576,Pumzi (2009),Sci-Fi +117578,1½ Knights - In Search of the Ravishing Princess Herzelinde (2008),Comedy +117580,Christmas Cottage (2008),Drama +117582,I Travel Alone (2013),Drama +117584,The Boy in the Mirror (2014),Adventure|Children|Drama|Fantasy +117586,My Dear Desperado (2010),Comedy +117588,The 39 Steps (2008),Crime|Mystery|Thriller +117590,Horrible Bosses 2 (2014),Comedy|Crime +117592,Poto and Cabengo (1980),Documentary +117594,Detention of the Dead (2012),Comedy|Horror +117596,Devil's Doorway (1950),Western +117598,Diary of a Madman (1963),Horror +117600,Disciples of the 36th Chamber (1985),Action +117604,The Beaver Trilogy (2000),Comedy|Documentary|Drama +117606,Divorce (1945),Drama +117610,Doctor at Large (1957),Comedy|Romance +117618,Don Juan (1926),Adventure|Drama|Romance +117620,Don Juan (1998),Comedy|Romance +117622,Don't Answer the Phone! (1980),Horror|Mystery|Thriller +117624,Don't Give Up the Ship (1959),Comedy +117626,Don't Go Near the Water (1957),Adventure|Comedy|Romance +117628,Donner Pass (2012),Horror +117630,Double Trouble (1992),Action|Comedy|Crime|Romance +117632,Down the Shore (2011),Drama|Romance|Thriller +117634,Down to the Sea in Ships (1949),Drama +117638,Dr. Dolittle: Tail to the Chief (2008),Children|Comedy|Fantasy +117640,Dr. Gillespie's New Assistant (1942),Comedy|Drama|Mystery +117642,Dr. Jekyll and Mr. Hyde (2008),Drama|Horror|Sci-Fi|Thriller +117646,Dragonheart 2: A New Beginning (2000),Action|Adventure|Comedy|Drama|Fantasy|Thriller +117648,Drive a Crooked Road (1954),Crime|Drama|Film-Noir|Thriller +117650,Drive Thru (2007),Comedy|Horror +117652,Drop Dead Sexy (2005),Comedy|Crime +117662,Easy Living (1949),Drama +117666,Easy to Love (1953),Comedy|Musical|Romance +117672,Air Crew (1979),Action|Drama|Thriller +117676,El Gringo (2012),Action|Drama +117678,Elisa (1995),Drama +117680,Elliot Loves (2012),Comedy +117682,Elvis and Anabelle (2007),Drama|Romance +117684,Elvis Has Left the Building (2004),Comedy +117686,Elvis Meets Nixon (1997),Comedy|Drama +117690,Enchantment (1948),Drama|Romance +117692,Endangered Species (2003),Horror|Sci-Fi|Thriller +117694,Endure (2010),Mystery|Thriller +117696,Executioners from Shaolin (1977),Action|Drama +117698,The Orkly Kid (1985),Comedy +117702,Home Before Dark (1958),Drama +117704,Let No Man Write My Epitaph (1960),Drama +117706,Lost Christmas (2011),Drama +117708,Michael Shayne: Private Detective (1940),Comedy|Drama|Mystery +117710,Murder on the Orient Express (2001),Crime|Drama|Mystery +117712,My Friend Irma Goes West (1950),Comedy|Crime|Musical +117714,Enemies Closer (2013),Action|Thriller +117716,Enter Arsene Lupin (1944),Crime|Drama +117718,Barely Legal (2011),Comedy +117722,The Forgotten Faces (1961),(no genres listed) +117726,Russell Brand: Messiah Complex (2013),Comedy +117728,Moving Violations (1985),Comedy +117732,So Much Water (2013),Comedy|Drama +117736,The Dark Horse (1932),Comedy +117738,The Eagle and the Hawk (1933),Action|Drama|War +117740,The Fake (2013),Animation|Drama|Thriller +117746,The Fearmakers (1958),Thriller +117748,The Happy Road (1957),Comedy +117750,The Real Glory (1939),War +117752,This Is the Night (1932),Comedy +117756,Yellow Rock (2011),Western +117838,Lucia (2013),Drama|Romance|Sci-Fi|Thriller +117840,Dancing Outlaw II: Jesco Goes to Hollywood (1999),Documentary +117843,Oppressed Majority (2010),Drama +117845,"T,O,U,C,H,I,N,G (1969)",(no genres listed) +117847,Little Hamlet (1960),(no genres listed) +117849,La Belle Verte (1996),Comedy +117851,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy +117853,Bill Bailey: Qualmpeddler (2013),Comedy +117855,Ivul (2010),Drama +117857,Hotline (2014),Documentary +117859,Fugly! (2013),Comedy +117861,Black or White (2014),Drama +117863,Ragamuffin (2014),Drama +117865,The Menacing Eye (1960),(no genres listed) +117867,'71 (2014),Action|Drama|Thriller|War +117869,Bastards (2014),Documentary +117871,"Water Diviner, The (2014)",Action|Drama|War +117873,Enlighten Up! (2008),Documentary +117875,Just a Sigh (2013),Drama|Romance +117877,The Rabbi's Cat (Le chat du rabbin) (2011),Adventure|Animation +117879,Altman (2014),Documentary +117881,Still Alice (2014),Drama +117883,Je préfère qu'on reste amis (2005),Comedy|Drama|Romance +117885,Grumpy Cat's Worst Christmas Ever (2014),Adventure|Children|Comedy +117887,Paddington (2014),Children|Comedy +117889,Drei Stunden (2013),Comedy|Romance +117891,Redemption: For Robbing the Dead (2011),Western +117893,Jessabelle (2014),Horror|Thriller +117895,Maze Runner: Scorch Trials (2015),Action|Thriller +117897,Kink (2013),Documentary +117899,Beautiful Girl (2014),Drama +117901,Showrunners: The Art of Running a TV Show (2014),Documentary +117903,Dirigible (1931),Adventure +117905,Sir Arne's Treasure (1919),Drama +117907,My Brother Tom (2001),Drama +117909,The Kiss (1900),Romance +117911,Quest (1996),Animation +117913,Scooby-Doo! Frankencreepy (2014),Adventure|Animation|Children|Mystery +117918,Pendulum (1969),Drama +117920,Burt's Buzz (2014),Documentary +117922,Ice Age: A Mammoth Christmas (2011),Adventure|Animation|Children +117924,The Bloody Olive (1997),Comedy|Crime|Film-Noir +117926,Hey Bartender (2013),Documentary +117928,Kajaki (2014),Adventure|Drama|War +117930,A Matter of Size (2009),Comedy|Drama|Romance +117932,Summer of Blood (2014),Comedy|Horror +117956,Hungry Hill (1947),Drama +117962,Quartet (1948),Drama +117964,Scott of the Antarctic (1948),Action|Adventure|Drama +117966,Christopher Columbus (1949),Action|Adventure|Drama +117977,The Magnet (1950),Comedy +117979,Blackmailed (1951),Crime|Drama|Thriller +117981,Pool of London (1951),Crime|Drama +117985,Anne of the Indies (1951),Action|Adventure|Drama|Romance +117987,The Lady Says No (1952),Comedy +117989,The Story of Robin Hood and His Merrie Men (1952),Action|Adventure|Children +117997,The Sword and the Rose (1953),Adventure|Children|Drama +118003,Above Us The Waves (1955),Drama|War +118006,Doctor at Sea (1955),Comedy +118008,An Alligator Named Daisy (1955),Comedy|Musical|Romance +118017,The Living Idol (1957),Adventure|Drama +118023,Orders to Kill (1958),Drama|War +118025,Upstairs and Downstairs (1959),Comedy +118036,Crooks Anonymous (1962),Comedy|Crime +118054,Two Weeks in September (1967),Drama|Romance +118057,The Love Factor (1969),Comedy|Fantasy|Sci-Fi +118082,The Voices (2014),Comedy|Crime|Thriller +118085,"Welcome, or No Trespassing (1964)",Children|Comedy +118087,Adventures of a Dentist (1965),Comedy +118089,"Sport, Sport, Sport (1970)",Comedy|Documentary +118091,Farewell to Matyora (1983),Drama +118093,Eagle's Wing (1979),Western +118095,Levitated Mass (2013),Documentary +118097,Nativity 2: Danger in the Manger! (2012),Children|Comedy +118099,The Puzzle (2009),Drama +118101,Donald Glover: Weirdo (2011),Comedy +118103,Come Back to Me (2014),Horror +118105,Trailer Park Boys: Live at the North Pole (2014),Comedy +118107,The Righteous Thief (2009),Adventure +118109,State of Emergency (2011),Sci-Fi|Thriller +118111,Almost Married (2014),Comedy +118113,"Swinger, The (1966)",Comedy +118115,Christmas in Conway (2013),Drama|Romance +118117,Grace (2014),Horror|Thriller +118133,Winter Nomads (2012),Documentary +118166,Courier (1987),Comedy|Drama|Romance +118173,The Batman vs. Dracula (2005),Action|Animation|Horror|Thriller +118177,Baffled! (1973),Mystery|Sci-Fi|Thriller +118183,Dying Room Only (1973),Horror|Mystery|Thriller +118189,Go for It (1983),Action|Adventure|Comedy +118193,Hand in Hand (1961),Children|Drama +118195,Tenchi: The Samurai Astronomer (2012),Drama +118198,The Green Prince (2014),Documentary|Drama|Thriller +118200,Castles in the Sky (2014),Drama +118202,Cowspiracy: The Sustainability Secret (2014),Adventure|Comedy|Documentary|Mystery +118204,McConkey (2013),Adventure|Documentary +118206,Manny (2014),Documentary|Drama +118214,Chocolate Strawberry Vanilla (2013),Comedy|Drama +118220,"Mayday at 40,000 Feet! (1976)",Adventure +118230,Mahoney's Last Stand (1972),Drama +118236,Bleak Night (2010),Drama +118242,To Encourage the Others (1972),Drama +118244,Wanderers (2014),Animation|Sci-Fi +118246,Clouds of Sils Maria (2014),Drama +118248,Dying of the Light (2014),Drama|Thriller +118250,Survival Quest (1988),Adventure|Thriller +118252,All Cheerleaders Die (2013),Comedy|Horror|Thriller +118254,Cherry Tree Lane (2010),Horror|Thriller +118256,WolfCop (2014),Comedy|Horror +118258,It's a Wonderful Afterlife (2010),Comedy|Drama|Horror|Romance +118260,The Borderlands (2013),Horror|Mystery +118262,Slasher House (2012),Horror +118264,The Kick (2011),Action +118266,Norwegian Ninja (2010),Action|Comedy +118268,Borrowed Time (2012),Drama +118270,Hellbenders (2012),Comedy|Horror|Thriller +118272,Saving General Yang (2013),Adventure +118274,Legacy of Rage (1986),Action +118276,Shadowzone (1990),Horror|Sci-Fi +118278,In Your Hands (2011),Drama +118284,Cleopatra Jones and the Casino of Gold (1975),Action +118286,Eat (1963),Documentary +118288,"Jonathan Rosenbaum, Present (2013)",Documentary +118290,Omega Doom (1996),Sci-Fi +118292,Blow Job (1963),(no genres listed) +118294,A Justified Life: Sam Peckinpah and the High Country (2006),Documentary +118296,The Diary of an Unknown Soldier (1959),War +118298,Float (2007),Drama|Romance +118300,Home Alone: The Holiday Heist (2012),Children|Comedy|Crime +118302,The Pokrovsky Gates (1983),Comedy|Drama|Musical|Romance +118324,Game of Werewolves (2011),Comedy|Horror +118326,By the Gun (2014),Crime|Drama|Thriller +118328,The Protector 2 (2013),Action +118330,Blood (2012),Crime|Drama|Thriller +118332,Exit Humanity (2011),Drama|Horror +118334,Omen IV: The Awakening (1991),Horror|Mystery|Thriller +118336,Ninjas vs. Zombies (2008),Action|Comedy|Fantasy|Horror +118338,Hard to Be a God (2013),Sci-Fi +118340,In Order Not to Be Here (2002),(no genres listed) +118342,Mortuary (2005),Horror|Mystery|Thriller +118344,Spontaneous Combustion (1990),Horror|Sci-Fi|Thriller +118346,Night Terrors (1993),Horror +118348,Trance (2001),Mystery|Thriller +118350,Tell (2014),Action|Crime|Drama +118352,In the Shadow of the Machine (1928),Documentary +118354,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller +118380,Dead Souls (2012),Horror +118388,Village People (2013),Comedy +118390,A Gorgeous Girl Like Me (1972),Comedy|Crime|Drama +118392,Street Fighter: Assassin's Fist (2014),Action|Adventure|Drama|Thriller +118426,Touch the Top of the World (2006),Drama +118446,Journey Beyond Three Seas (1957),Adventure +118448,The Hearts of Age (1934),(no genres listed) +118458,H6: Diario de un asesino (2005),Horror|Thriller +118460,Sallah (1964),Comedy +118462,Grant Morrison: Talking with Gods (2010),Documentary +118464,The Universe of Keith Haring (2008),Documentary +118466,"Kingdom of Dreams and Madness, The (2013)",Animation|Documentary +118468,Mei and the Kittenbus (2002),Animation|Fantasy +118472,"Texas, Adios (1966)",Action|Western +118476,"Today We Kill, Tomorrow We Die! (1968)",Thriller|Western +118478,The Soldier On Great Maneuvers (1978),Comedy +118482,The Devil and the Holy Water (1983),Comedy +118484,Colt 38 Special Squad (1976),Action|Crime|Drama|Thriller +118486,Ricky & Barabba (1992),Comedy +118492,High Test Girls (1980),Comedy|Fantasy +118494,The Police Can't Move (1975),Crime +118496,A Cinderella Story: Once Upon a Song (2011),Children|Comedy|Romance +118500,Play Motel (1979),Crime|Horror|Thriller +118510,The Great Kidnapping (1973),Action|Crime|Thriller +118512,Bring It On: In It To Win It (2007),Comedy +118514,Independents (2007),Documentary +118520,Between Miracles (1972),Comedy +118522,The Rebel (1980),Action|Crime|Drama|Thriller +118524,The Night Evelyn Came Out of the Grave (1971),Horror|Mystery +118528,Stunt Squad (1977),Action|Crime|Thriller +118530,Fans (1999),Comedy +118532,The Cyclone (1996),Comedy|Romance +118536,"The Fan, the Referee and the Player (1984)",Comedy +118542,Emanuelle in Egypt (Velluto nero) (1976),Drama +118544,The... Beautiful Country (1977),Comedy|Drama +118546,Savage Three (1975),Drama +118558,A Man Called Magnum (1977),Action|Crime +118560,The Seventh Floor (1967),Comedy +118564,Viuuulentemente Mia (1982),Comedy +118566,Gangsters (1977),Action|Crime +118568,The Flower in His Mouth (1975),Drama|Mystery +118570,Jarhead 2: Field of Fire (2014),Action|Drama|War +118572,The Mule (2014),Comedy|Crime|Drama +118574,Chantilly Lace (1993),Drama +118576,Shy People (1987),Drama +118584,Shadows in an Empty Room (1976),Crime|Drama|Mystery|Thriller +118606,Dots (1940),Animation +118608,Hen Hop (1942),Animation +118610,Rock the Boat (1944),Animation +118684,Jingle All the Way 2 (2014),Children|Comedy +118686,The Face of Love (2013),Drama|Romance +118688,Every Girl Should Be Married (1948),Comedy|Romance +118690,Eight Iron Men (1952),Drama|War +118692,A True Mob Story (1998),(no genres listed) +118694,In the Folds of the Flesh (1970),Drama|Horror|Thriller +118696,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy +118700,Selma (2014),Drama +118702,Unbroken (2014),Drama|War +118704,Jimi Hendrix (1973),Documentary +118706,Black Sea (2015),Adventure|Mystery|Thriller +118708,Three Wise Fools (1946),Comedy|Drama +118710,The Frame (2014),Crime|Drama|Fantasy|Romance|Thriller +118718,White Mischief (1987),Crime|Drama|Romance|Thriller +118722,Beyond Justice (1992),Action|Adventure|Drama +118734,Zorro (1975),Action|Adventure|Comedy|Western +118736,Puzzle (1974),Mystery|Thriller +118742,The Bloodstained Butterfly (1971),Mystery|Thriller +118746,Death Occurred Last Night (1970),Crime|Drama +118748,The Bastard (1968),Crime|Drama +118752,The Return of Ringo (1965),Action|Drama|Romance|Western +118754,A Pistol For Ringo (1965),Action|Drama|Western +118756,The Scapegoat (1963),Drama +118758,Kiss Kiss - Bang Bang (1966),Adventure|Comedy +118760,The Good Lie (2014),Drama +118762,Action Jackson (2014),Action|Drama|Romance +118764,The Improv: 50 Years Behind the Brick Wall (2013),Comedy|Documentary +118766,I Am Santa Claus (2014),Comedy|Documentary|Drama +118768,"The Missing Piece: Mona Lisa, Her Thief, the True Story (2012)",Crime|Documentary|Mystery +118770,Wild Heritage (1958),Western +118774,The Widow From Chicago (1930),Crime|Drama|Romance +118776,Lap Dance (2014),Drama +118778,The Baby Maker (1970),Drama +118782,Fat Pizza (2003),Action|Adventure|Comedy|Crime|Thriller +118784,Good Copy Bad Copy (2007),Documentary +118786,Comin' at Ya! (1981),Western +118788,When the Road Bends: Tales of a Gypsy Caravan (2006),Documentary +118790,Holy Flying Circus (2011),Comedy|Drama +118792,House of the Dead 2 (2005),Action|Horror|Sci-Fi|Thriller +118806,Wodehouse In Exile (2013),Drama +118808,Zombie Reanimation (2009),Action|Comedy|Horror +118812,Made in Jamaica (2006),Documentary +118814,Playing It Cool (2014),Comedy|Romance +118816,Public Sex (2009),Comedy|Drama +118824,Blood Dolls (1999),Comedy|Horror +118826,Cheerleader Massacre (2003),Horror|Thriller +118832,McLibel (2005),Documentary +118834,National Lampoon's Bag Boy (2007),Comedy +118842,The Appointments of Dennis Jennings (1988),Comedy +118844,The Atrocity Exhibition (2000),Drama|Horror +118846,The Beales of Grey Gardens (2006),Documentary +118850,Virgin Witch (1972),Horror +118852,The Zombie Chronicles (2001),Horror +118854,The Dust Bowl (2012),Documentary +118856,Paris by Night (2012),Crime|Drama +118858,Honor Among Lovers (1931),Drama +118860,A Smoky Mountain Christmas (1986),Fantasy +118862,Closer to the Moon (2013),Comedy|Drama +118864,A Husband of Round Trip (1957),Comedy|Fantasy +118866,Marvellous (2014),Drama +118868,Somewhere in the Night (1946),Crime|Drama|Film-Noir +118872,Free the Nipple (2014),Comedy|Drama +118874,Bachelor Night (2014),Comedy +118876,Khumba (2013),Adventure|Animation|Children +118878,Sekirei (2008),(no genres listed) +118880,"Girl Walks Home Alone at Night, A (2014)",Horror|Romance|Thriller +118882,1981 (2009),Comedy|Drama|Romance +118884,1987 (2014),Comedy|Drama|Romance +118886,Crimi Clowns: De Movie (2013),Comedy|Crime|Drama +118888,Dave Chappelle: For What it's Worth (2004),Comedy +118890,Bill Hicks: Relentless (1992),Comedy +118892,Ellen DeGeneres: The Beginning (2000),Comedy +118894,Scooby-Doo! Abracadabra-Doo (2010),Animation|Children|Mystery +118896,Mommy (2014),Drama +118898,A Most Violent Year (2014),Action|Crime|Drama|Thriller +118900,Wild (2014),Drama +118902,Zebra Lounge (2001),Thriller +118904,Rapid Fire (2006),Action|Crime|Thriller +118908,Jack the Ripper (1988),Crime|Drama|Mystery|Thriller +118910,Brutal (2007),Crime|Horror|Mystery|Thriller +118914,The Curse of King Tut's Tomb (2006),Adventure|Fantasy|Horror +118916,Titanic (1996),Action|Drama|Romance +118920,Butterfly Girl (2014),Documentary +118922,Mr. Jones (2013),Drama|Horror|Thriller +118924,Top Five (2014),Comedy +118930,Bill Burr: I'm Sorry You Feel That Way (2014),Comedy +118932,The Uncommon Making of Petulia (2006),Documentary +118934,Fiddle-de-dee (1947),Animation|Musical +118936,Blinkity Blank (1955),Animation +118938,Mail Early for Xmas (1959),Animation +118940,Canon (1964),Animation +118942,Boogie-Doodle (1948),Animation +118944,A Chairy Tale (1957),Animation|Comedy|Fantasy +118946,The Aggression Scale (2012),Action|Crime|Thriller +118948,Blackbird (1959),Animation +118950,A Phantasy (1952),Animation +118952,Neighbours (1952),Animation|Comedy +118954,New York Lightboard Record (1961),Animation|Documentary +118956,Lines: Horizontal (1962),Animation +118958,Mosaic (1966),Animation +118960,Begone Dull Care (1949),Animation +118962,Synchromy (1971),Animation +118964,And Then There Was You (2013),Drama +118966,Straight on Till Morning (1972),Mystery|Thriller +118968,Wild Love (2014),Drama +118970,Redirected (2014),Action|Comedy|Crime +118972,Don't Blink (2014),Horror|Mystery|Sci-Fi +118974,Raiders From Beneath the Sea (1964),Crime|Drama +118983,The Wild Bunch: An Album in Montage (1996),Documentary +118985,Big Eyes (2014),Drama +118995,The Two Firefighters (1968),Comedy +118997,Into the Woods (2014),Children|Comedy|Fantasy|Musical +119013,Roaring Wheels (1970),Action|Drama +119027,The Cop in Blue Jeans (1976),Action|Crime|Drama +119029,Hit Squad (1976),Action|Comedy +119031,The Son of the Sheik (1977),Action|Comedy +119035,Swindle (1977),Action|Comedy +119037,Little Italy (1978),Action|Comedy +119039,The Gang That Sold America (1979),Action|Comedy +119041,The Finzi Detective Agency (1979),Comedy|Crime +119043,Assassination on the Tiber (1979),Action|Comedy +119045,"Against One Another, Virtually Friends (1981)",Comedy +119049,Crime at Porta Romana (1980),Comedy|Crime +119051,Crime at the Chinese Restaurant (1981),Comedy|Mystery|Thriller +119053,The Haunted House (1982),Comedy +119055,Crime on the Highway (1982),Comedy|Crime +119057,Cat and Dog (1983),Comedy|Crime +119059,Cop in Drag (1984),Comedy|Crime|Drama +119061,Aladdin (1986),Adventure|Fantasy +119063,"Rimini, Rimini: A Year Later (1988)",Comedy +119065,Scooby-Doo! and the Witch's Ghost (1999),Animation|Comedy|Mystery +119068,"Men, Women & Children (2014)",Comedy|Drama +119080,Loins of Punjab Presents (2007),Comedy +119082,Animated Motion: Part 5 (1978),Animation|Documentary +119084,Narcissus (1983),Musical +119086,A Follower for Emily (1974),Drama +119126,Killers (2014),Action|Crime|Drama|Thriller +119129,Galician Caress (Of Clay) (1961),Documentary +119131,Water-mirror of Granada (1955),Documentary +119133,Penda's Fen (1974),Fantasy +119135,Momo (2001),Animation|Children|Fantasy +119137,The Last Train through Harecastle Tunnel (1969),Drama +119139,Ascension (2014),Drama|Sci-Fi +119141,The Interview (2014),Action|Comedy +119143,Flap (1970),Comedy|Drama +119145,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime +119147,Holidaze (2013),Children|Drama|Romance +119149,Madonna's Pig (2011),Fantasy|Romance|Sci-Fi +119151,Night Watch (1973),Horror|Mystery|Thriller +119153,Bill Burr: You People Are All the Same (2012),Comedy +119155,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy +119157,The Nativity (1978),Children|Drama +119159,Teenage (2013),Documentary +119161,Beyond the Mind's Eye (1992),Animation|Comedy +119163,Fire in Castilla (Tactilvision from the Moor of the Fright) (1961),Documentary +119165,Lunch Break (2008),Documentary +119167,Paradox (2010),Sci-Fi|Thriller +119169,Special ID (2013),Action|Crime|Drama +119171,Katt Williams: The Pimp Chronicles Pt. 1 (2006),Comedy|Documentary +119174,Under the Age (1972),Drama +119176,The Hallelujah Handshake (1970),Drama +119178,Sovereign's Company (1970),Drama +119180,Summer in February (2013),Drama|Romance +119182,Sorority Wars (2009),Comedy|Drama +119184,Bad Karma (1991),Horror +119186,Fear Island (2009),Horror|Mystery|Thriller +119188,The Big Flame (1969),Drama +119190,Walking on Sunshine (2014),Musical|Romance +119192,In Two Minds (1967),(no genres listed) +119194,Cathy Come Home (1966),Drama +119196,Heartbeat (1938),Comedy +119198,Saving Otter 501 (2013),Documentary +119200,Wheelmen (2005),Comedy +119202,The Private Life of Deer (2013),Documentary +119204,Pericles on 31st Street (1962),Comedy|Drama +119206,The Losers (1963),Comedy|Drama +119208,Big Brown Eyes (1936),Comedy|Mystery +119210,How Hitler Lost the War (1989),Documentary +119212,King of Germany (2013),Comedy +119214,Food Stamped (2010),Documentary +119216,Goodbye to All That (2014),Comedy|Drama +119218,The Punisher: Dirty Laundry (2012),Action|Crime|Drama +119220,Presidentintekijät (2014),Documentary +119222,Behaving Badly (2014),Comedy +119224,Tyler Perry's A Madea Christmas (2013),Comedy|Drama +119226,Nicholas on Holiday (2014),Comedy +119303,The Walking Stick (1970),Crime|Drama|Romance +119305,The Nutcracker Prince (1990),Adventure|Animation|Children|Fantasy +119308,Bullets Don't Argue (1964),Western +119310,Days and Nights (2014),Comedy|Drama +119312,Don't Go In the Woods (1981),Horror +119314,Pigs (2007),Comedy +119316,Professor Beware (1938),Comedy +119332,21-87 (1963),Documentary +119424,A Viking Saga: The Darkest Day (2013),Action|Adventure|Thriller +119426,Thérèse (2012),Drama +119428,With Love... from the Age of Reason (2010),Comedy|Romance +119430,Yonkers Joe (2008),Drama +119432,A Thousand Times Goodnight (2014),Drama +119436,Second Skin (2000),Thriller +119438,The Love Machine (1971),Drama +119440,The Lost Prince (2003),Drama +119450,Total Western (2000),Action|Crime|Drama|Thriller +119454,Tyler Perry's Madea's Big Happy Family (2011),Comedy|Drama +119456,Bugs Bunny's Looney Christmas Tales (1979),Animation|Children +119563,12 Dates of Christmas (2011),Children|Comedy|Fantasy|Romance +119565,The Missing (2014),Crime|Drama|Mystery +119567,"Kennedys, The (2011)",Drama +119569,Quatsch und die Nasenbärbande (2014),Children +119571,Teenage Dirtbag (2009),Drama +119573,12 Wishes of Christmas (2011),Comedy|Fantasy +119575,An American Hippie in Israel (1972),Action|Comedy|Sci-Fi +119579,Blast (1997),Action +119583,Carry On Teacher (1959),Comedy +119585,"Carry On, Constable (1960)",Comedy +119589,The Arrival of Joachim Stiller (1976),Drama|Fantasy +119595,Deceit (1992),Sci-Fi +119601,Destination Gobi (1953),Adventure|Drama|War +119603,Down Twisted (1987),Action|Adventure|Crime|Drama|Thriller +119605,Encore (1951),Comedy|Drama +119607,Escape from Crime (1942),Crime|Drama +119609,Escape in the Fog (1945),Crime|Drama|Film-Noir +119611,Esther and the King (1960),Drama|Romance +119615,Even Angels Eat Beans (1973),Action|Comedy|Crime +119621,Everyday Sunshine: The Story of Fishbone (2010),Documentary +119625,Ex-Lady (1933),Comedy|Drama +119627,Exit to Hell (2013),Action|Horror|Thriller +119629,Exorcismus (2010),Horror +119635,Eye of the Hurricane (2012),Drama +119637,Eyeball (1975),Crime|Horror|Mystery|Thriller +119643,Face the Music (1993),Comedy|Drama +119645,Falling Awake (2009),Romance|Thriller +119649,Nick Offerman: American Ham (2014),Comedy +119651,Lemon Tree Passage (2013),Horror|Mystery|Thriller +119653,Stormheart (2008),Children|Drama +119655,Seventh Son (2014),Adventure|Children|Fantasy +119661,The Story of Asya Klyachina (1966),Drama|Romance +119663,Out of the Ashes (2003),Drama +119667,The Prophecy: Forsaken (2005),Fantasy|Horror|Thriller +119670,National Gallery (2014),Documentary +119672,7th Floor (2013),Mystery|Thriller +119675,Kiss Me in the Rain (1999),Drama|Thriller +119677,Heatstroke (2013),Thriller +119679,The Wait (2013),Drama|Thriller +119681,Munger Road (2011),Horror|Mystery|Thriller +119683,Myn Bala: Warriors of the Steppe (2012),Action|Adventure|Drama +119685,Alyce Kills (2011),Horror|Thriller +119687,Little Witches (1996),Horror|Thriller +119689,The Haunting of Helena (2012),Horror|Thriller +119691,Alice in Murderland (2010),Horror|Thriller +119693,Elfie Hopkins: Cannibal Hunter (2012),Horror|Thriller +119695,The Evictors (1979),Crime|Drama|Horror|Mystery|Thriller +119697,On the Ice (2011),Drama|Thriller +119699,The Case of the Scorpion's Tail (1971),Mystery|Thriller +119701,Let It Snow (2013),Children|Drama|Romance +119703,Chasing Christmas (2005),Comedy|Fantasy +119705,Piranhaconda (2012),Horror|Sci-Fi +119714,Corner Gas: The Movie (2014),Comedy +119752,Charleston (1974),Comedy|Crime +119754,Common (2014),Crime|Drama +119758,Woman of Antwerp (1948),Drama +119760,Love Without Pity (1989),Comedy|Romance +119762,Ethel (2012),Documentary +119766,Exit Smiling (1926),Comedy|Romance +119770,Fanny (2013),Drama +119782,FernGully 2: The Magical Rescue (1998),Adventure|Animation|Children|Fantasy +119796,Filthy Gorgeous: The Bob Guccione Story (2013),Documentary +119798,Final (2001),Drama|Sci-Fi|Thriller +119800,Family Way (2012),Comedy|Romance +119802,Miss Minoes (2001),Children|Comedy|Fantasy +119804,Crazy for Christmas (2005),Children +119810,Giovannona Long-Thigh (1973),Comedy +119812,The Violent Professionals (1973),Crime|Drama +119818,Gambling City (1975),Crime|Drama +119820,Silent Action (1975),Action|Crime|Drama +119822,The Suspicious Death of a Minor (1975),Comedy|Crime|Thriller +119830,The Mountain of the Cannibal God (1978),Adventure|Horror +119832,Screamers (1979),Action|Horror +119836,The Great Alligator (1979),Horror +119844,Don't Play with Tigers (1982),Comedy +119846,The Scorpion with Two Tails (1982),Horror +119848,If All Goes Well We Are Ruined (1983),Comedy +119850,"Acapulco, First Beach... To the Left (1983)",Comedy +119856,Hands of Steel (1986),Action|Sci-Fi +119858,Casablanca Express (1989),Action|War +119870,The Fishmen and Their Queen (1995),Adventure|Horror|Sci-Fi +119874,Trainer on the Beach 2 (2008),Comedy +119878,Solomon Northup's Odyssey (1984),(no genres listed) +119901,Sharpe's Gold (1995),Action|Adventure|War +119904,Sharpe's Battle (1995),Action|Adventure|War +119907,Sharpe's Sword (1995),Action|Adventure|War +119909,Sharpe's Eagle (1993),Action|Adventure|War +119929,Back to School with Franklin (2003),Animation|Children +119946,The New Babylon (1929),Drama +119948,Let's Kill Ward's Wife (2014),Comedy +119950,The Magnificent Trio (1966),Action|Drama|Romance +119954,Force of Execution (2013),Action|Crime +119960,Kaksparsh (2012),Drama +119964,A Merry Friggin' Christmas (2014),Comedy +119966,Ask Me Anything (2014),Drama|Mystery|Thriller +119973,Three the Hard Way (1974),Action|Thriller +119975,"Silent Night, Deadly Night 5: The Toy Maker (1991)",Horror|Sci-Fi +119977,Santa Claus (1959),Children|Fantasy +120074,Autobus (1991),Drama|Thriller +120076,Fame High (2012),Documentary +120096,First a Girl (1935),Comedy|Musical +120102,Fishtales (2008),Children|Fantasy +120104,Fitzwilly (1967),Comedy|Romance +120110,Jauja (2014),Drama|Western +120112,The Grump (2014),Comedy +120114,Summertime (2014),Comedy +120116,Boy Upside Down (2014),Drama +120118,The Forest (2012),Drama|Fantasy +120120,The Swedish Moment (2014),Comedy +120122,Raspberry Boat Refugee (2014),Comedy +120124,"Girl, Positive (2007)",Drama +120126,Beauty Day (2011),Documentary +120128,Everything I Can See From Here (2013),Adventure|Animation|Drama|Sci-Fi +120130,Into the Forest of Fireflies' Light (2011),Animation|Drama|Fantasy +120132,Annie (2014),Children|Comedy|Drama|Musical +120134,Doggiewoggiez! Poochiewoochiez! (2012),Comedy +120136,Castle of Blood (1964),Horror +120138,PK (2014),Comedy|Drama|Fantasy|Mystery|Romance +120142,Mirage Men (2013),Documentary +120146,Boats (2013),Comedy +120200,Final: The Rapture (2013),Thriller +120202,Finders Keepers (2014),Horror|Thriller +120206,Five Weeks in a Balloon (1962),Action|Adventure|Comedy|Romance +120208,Flesh and Blood (1922),Drama +120214,Flirtation Walk (1934),Musical|Romance +120216,Sansa (2003),Drama +120222,Foodfight! (2012),Action|Animation|Children|Comedy +120234,Forbidden (1949),Drama|Thriller +120240,Forever Lulu (2000),Comedy|Romance +120246,Forget Me Not (2010),Romance +120250,Fort Massacre (1958),Western +120258,Shaka Zulu: The Citadel (2001),Drama +120260,Four Jills in a Jeep (1944),Romance|War +120266,Framed (1947),Crime|Drama|Film-Noir +120268,Francis of Assisi (1961),Drama +120270,Frank & Jesse (1995),Western +120272,Get Crazy (1983),Comedy +120274,America: Imagine the World Without Her (2014),Documentary +120276,Symphony of the Soil (2012),Adventure|Documentary +120278,Another Me (2013),Mystery|Thriller +120280,Bang Bang (1971),Comedy +120282,Now You Know (2002),Comedy|Romance +120284,Rocks in my Pockets (2014),Animation|Comedy|Drama +120286,Daughters of Dolma (2013),Documentary +120290,My Rainy Days (2009),Drama|Romance +120292,Bird People (2014),Drama|Fantasy|Romance +120294,It Felt Like Love (2013),Drama +120299,Eye for an Eye (1966),(no genres listed) +120301,Miss Granny (2014),Comedy|Fantasy +120307,Intermezzo (1936),Drama|Romance +120311,Drishyam (2013),Children|Drama|Thriller +120313,Otakus in Love (2004),Comedy|Drama|Romance +120315,Gloriously Wasted (2012),Comedy +120317,Thunderpants (2002),Children|Comedy|Sci-Fi +120319,That Man Bolt (1973),Action|Drama +120321,Island of Terror (1966),Horror|Sci-Fi +120323,Moon Man (2012),Animation|Sci-Fi +120380,The Fountain (1989),Comedy +120382,Foreign Exchange (2008),Comedy +120384,FrackNation (2013),Documentary +120388,Louis Cyr: The Strongest Man in the World (2013),Drama +120390,Natural Selection (2011),Comedy|Drama +120392,Comet (2014),Comedy|Drama|Romance|Sci-Fi +120400,Free Ride (2013),Action|Drama|Thriller +120408,Friday Foster (1975),Action|Crime|Drama|Romance|Thriller +120410,From Above (2013),Drama|Romance +120412,From Time to Time (2009),Adventure|Drama|Fantasy +120414,Front Page Woman (1935),Comedy|Romance +120420,Futuresport (1998),Action|Sci-Fi|Thriller +120432,A Summer in St. Tropez (1983),Drama|Romance +120436,Garbo Talks (1984),Comedy|Drama +120438,Garfield Gets Real (2007),Animation|Children|Comedy +120440,Garfield's Fun Fest (2008),Animation|Children|Comedy|Fantasy +120442,George Lopez: America's Mexican (2007),Comedy +120444,"George Lopez: It's Not Me, It's You (2012)",Comedy +120446,"George Lopez: Tall, Dark & Chicano (2009)",Comedy +120448,Geronimo (1962),Action|Western +120450,Get Out of My Room (1985),Comedy +120452,Get Yourself a College Girl (1964),Comedy +120454,Ghost Son (2007),Drama|Horror|Mystery|Thriller +120458,Ghost Team One (2013),Comedy|Horror +120462,The Invisible Boy (2014),Fantasy|Sci-Fi +120464,The 11 Commandments (2004),Comedy +120466,Chappie (2015),Action|Thriller +120468,Toy Story Toons: Partysaurus Rex (2012),Animation|Children|Comedy +120470,The Legend of Mor'du (2012),Animation|Children +120474,Toy Story That Time Forgot (2014),Animation|Children +120476,Implanted (2013),Drama|Mystery|Sci-Fi|Thriller +120478,The Salt of the Earth (2014),Documentary +120480,"No Retreat, No Surrender 2: Raging Thunder (1987)",Action|Adventure +120482,Vincent: A Life in Color (2008),Documentary +120484,Lille Fridolf and I (1956),Comedy +120486,Daar (1993),Drama|Horror|Mystery|Romance|Thriller +120488,The Call of the Wild (1972),Adventure|Children +120490,Hotel Sahara (1951),Comedy|Romance|War +120492,Double Confession (1950),Crime|Drama +120516,Across the Bridge (1957),Crime|Drama|Thriller +120518,The Hellions (1961),Adventure|Drama|Western +120524,The Biggest Bundle of Them All (1968),Comedy|Crime +120534,A Master Builder (2013),Drama +120536,The Snow White Murder Case (2014),Drama|Mystery +120574,Gimme Shelter (2013),Drama +120578,Big Shot: Confessions of a Campus Bookie (2002),Drama +120580,Girls Gone Dead (2012),Comedy|Horror +120586,Go for It! (2011),Drama|Musical +120588,Going Hollywood (1933),Musical|Romance +120610,Jim Breuer: And Laughter for All (2013),Comedy +120614,How to Eat Your Watermelon in White Company (and Enjoy It) (2005),Documentary +120618,In Vogue: The Editor?s Eye (2012),Documentary +120621,Savannah (2013),Drama|Romance +120623,3 Simoa (2012),Comedy +120625,The Fool (2014),Drama +120627,The Disappeared (2008),Documentary +120629,The Dark Matter of Love (2012),Documentary +120631,Out of the Clear Blue Sky (2012),Documentary +120633,The Call of the Wild (1976),Adventure +120635,Taken 3 (2015),Action|Crime|Thriller +120637,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller +120639,Tiger Eyes (2012),Drama +120641,Santa Fe (1951),Action|Romance|Western +120751,Home of the Brave (2004),Documentary +120757,Beck - Rum 302 (2015),Crime|Mystery|Thriller +120759,Odd Girl Out (2005),Drama +120761,By the Law (1926),Drama +120763,Queen Sized (2008),Comedy|Drama +120765,Tru Confessions (2002),Children|Comedy|Drama +120767,All the Fine Young Cannibals (1960),Drama|Romance +120769,Headfirst (2014),Drama +120771,"Eila, Rampe and Likka (2014)",Comedy +120773,Lady Liberty (1971),Comedy +120775,Night Train (1959),Drama|Mystery|Thriller +120777,Somersault (1965),Drama +120779,Korso (2014),Drama +120781,Nocturna (2007),Adventure|Animation|Children|Fantasy|Mystery +120783,Son of a Gun (2014),Action|Crime|Drama +120785,The Land (1942),Documentary +120787,Grass: A Nation's Battle for Life (1925),Documentary +120789,City in the Sea (1965),Adventure|Fantasy|Sci-Fi +120791,Naughty Girl (1956),Comedy|Musical|Romance +120793,The Vixen (1969),Comedy +120795,The Big Shave (1968),Drama|Horror +120799,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller +120801,Bad Day on the Block (1997),Drama|Thriller +120803,Those Awful Hats (1909),Comedy +120805,Robin Williams: Weapons of Self Destruction (2009),Comedy +120807,John Mulaney: New In Town (2012),Comedy +120809,Come Dance with Me! (1959),Crime|Drama|Mystery +120811,Patton Oswalt: Finest Hour (2011),Comedy +120813,Patton Oswalt: My Weakness Is Strong (2009),Comedy +120815,Patton Oswalt: Werewolves and Lollipops (2007),Comedy +120817,Kevin Nealon: Now Hear Me Out! (2009),Comedy +120819,"Kevin Nealon: Whelmed, But Not Overly (2012)",Comedy +120821,The War at Home (1979),Documentary|War +120823,One Bright Shining Moment (2005),Documentary +120825,The Woman in Black 2: Angel of Death (2015),Drama|Horror|Thriller +120827,The Hound of the Baskervilles (1988),Crime|Drama|Horror|Mystery +120829,Scattered Clouds (Midaregumo) (1967),Drama +120831,Dealin' with Idiots (2013),Comedy +120833,Super Capers (2009),Action|Adventure|Comedy|Fantasy|Sci-Fi +120835,Fight for Your Right Revisited (2011),Comedy +120837,Busting (1974),Crime|Drama +120839,Comes a Bright Day (2012),Romance +120841,Frankenstein (2004),Drama|Horror|Sci-Fi|Thriller +120843,"North and South, Book II (1986)",Drama|Romance|War +120845,Penthouse North (2013),Drama|Mystery|Thriller +120851,Cheeky Girls (2008),Comedy +120853,Fresh Guacamole (2012),Animation +120855,Adam and Dog (2012),Animation +120857,Bloodsuckers (2005),Action|Horror|Sci-Fi +120859,Poolsite (2012),Crime|Drama +120861,Animal (1977),Action|Comedy|Romance +120863,Doodlebug (1997),Fantasy|Mystery +120865,Jean-Luc Cinema Godard (2009),Documentary +120867,Tropico (2013),Drama|Fantasy|Romance +120869,Employees Leaving the Lumière Factory (1895),Documentary +120871,A Night at the Movies: The Horrors of Stephen King (2011),Documentary|Horror +120873,A Night at the Movies: The Suspenseful World of Thrillers (2009),Documentary +120875,"White, Red and Verdone (1981)",Comedy +120877,Talcum Powder (1982),Comedy +120879,Soap and Water (1983),Comedy +120881,The Two Policemen (1984),Comedy +120883,Great! (1986),Comedy +120885,Me and My Sister (1987),Comedy +120887,Classmates (1988),Comedy|Drama +120889,The Child and the Policeman (1989),Comedy +120891,Damned the Day I Met You (1992),Comedy +120895,Let's Not Keep in Touch! (1994),Comedy +120897,Honeymoons (1995),Comedy +120901,I'm Crazy About Iris Blond (1996),Comedy|Romance +120903,Grouse (1998),Comedy +120905,A Chinese in a Coma (2000),Comedy +120907,Love is Eternal While It Lasts (2004),Comedy|Romance +120909,What Fault Is It of Ours? (2003),Comedy +120911,My Best Enemy (2006),Comedy +120913,"Big, Large and Verdone (2008)",Comedy +120919,Man on High Heels (2014),Action|Comedy +120921,Miss Zombie (2013),Horror +120923,Under a Lucky Star (2014),Comedy +120925,Shinbone Alley (1970),Animation|Comedy|Fantasy|Musical|Romance +120928,Lullaby (2014),Drama +120930,Over Your Dead Body (2014),Horror +120932,A Walk in the Old City of Warsaw (1958),Documentary +120934,Korengal (2014),Documentary|War +120936,The Hire: Powder Keg (2001),Action +120938,The Hire: Chosen (2001),Action +120940,The Hire: Ambush (2001),Action +120942,The Hire: Ticker (2002),Action|Adventure +120944,The Hire: Beat the Devil (2002),Action|Adventure|Comedy +120946,The Hire: Hostage (2002),Action|Adventure|Crime|Thriller +120948,"Pancho, the Millionaire Dog (2014)",Children|Comedy +120950,The Reef 2: High Tide (2012),Animation|Children|Musical +120952,Filly Brown (2012),Drama +121003,Winter of Discontent (2012),Drama +121005,The Nautical Chart (2007),Adventure +121009,All Relative (2014),Comedy|Drama|Romance +121011,Imagine I'm Beautiful (2014),Drama +121013,The Body of My Enemy (1976),Crime|Drama|Mystery|Thriller +121015,Pasha (1968),Crime|Drama +121017,The Gentleman from Epsom (1962),Comedy|Crime +121019,The Great Spy Chase (1964),Action|Comedy|Thriller +121021,Taxi for Tobruk (1961),Drama|War +121023,Viy (2014),Adventure|Fantasy|Mystery|Thriller +121025,"Excuse Me Darling, But Lucas Loved Me (1997)",Comedy +121027,Stay (2013),Drama +121029,No Distance Left to Run (2010),Documentary +121031,Santos (2008),Adventure|Comedy|Fantasy|Romance +121033,A Patriotic Man (2013),Comedy|Drama +121035,Houdini (2014),Drama +121039,A Night for Dying Tigers (2010),Drama +121045,Fear (1954),Drama +121047,Hedda Gabler (1963),Drama +121053,Angele (1934),Drama +121055,Harvest (1937),Drama +121057,The Well-Digger's Daughter (1940),Comedy|Drama|Romance +121059,Topaze (1951),Comedy +121061,Manon of the Spring (1952),Drama +121063,The House on 56th Street (1933),Drama +121073,Daughter of Shanghai (1937),Crime|Drama|Romance +121081,Lady Gangster (1942),Crime|Drama +121097,To Grandmother's House We Go (1992),Adventure|Children|Comedy +121099,101 Dalmatians II: Patch's London Adventure (2003),Animation|Children +121101,Riptide (1949),Drama +121103,Justin Bieber: Never Say Never (2011),Documentary +121109,Van Wilder: Freshman Year (2009),Comedy +121111,V (1983),Drama|Sci-Fi +121113,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror +121115,Tarzan (2013),Adventure|Animation|Children|Drama +121117,Highlander: The Source (2007),Action|Adventure|Fantasy|Sci-Fi +121119,"North and South, Book I (1985)",Drama|Romance|War +121122,Seed (2006),Horror +121124,StreetDance 2 (2012),Drama|Romance +121126,The Car (1977),Horror|Mystery|Thriller +121129,The Hungover Games (2014),Comedy +121133,Ishq (1997),Action|Comedy|Drama|Musical|Romance +121135,Nurse 3D (2013),Horror|Thriller +121137,Wrong Turn 5: Bloodlines (2012),Horror|Thriller +121139,How the West Was Fun (1994),Children|Western +121141,A Cry in the Wild (1990),Action|Adventure|Thriller +121143,Flu (2013),Action|Drama|Sci-Fi +121145,McCullin (2012),Documentary +121148,The Fox & the Child (2007),Adventure|Children|Drama +121150,Lili's Apron (2004),Comedy +121152,The White Haired Witch of Lunar Kingdom (2014),Action|Fantasy +121155,Kevin Hart: Let Me Explain (2013),Comedy|Documentary +121157,"Tad, the Lost Explorer (2012)",Adventure|Animation|Children|Comedy +121159,V: The Final Battle (1984),Action|Sci-Fi +121161,Tactical Force (2011),Action|Comedy|Crime|Thriller +121165,Shark Attack 3: Megalodon (2002),Horror +121167,Prowl (2010),Horror +121169,The Duke of Burgundy (2014),Drama +121171,Red Army (2014),Documentary +121173,Must Have Been Love (2012),Drama|Romance +121176,Shortcut to Happiness (2003),Comedy|Drama|Fantasy +121178,Java Heat (2013),Action|Crime|Drama|Thriller +121180,The Sasquatch Gang (2006),Comedy +121182,Peeples (2013),Comedy|Romance +121184,Save the Last Dance 2 (2006),Drama|Romance +121186,The Skeptic (2009),Horror|Thriller +121188,Room 6 (2006),Horror|Mystery|Thriller +121190,When in Rome (2002),Children|Comedy +121192,The Expelled (2010),Horror|Thriller +121194,Tyler Perry's The Single Moms Club (2014),Comedy|Drama +121196,Nothing Left to Fear (2013),Horror +121198,Lake Dead (2007),Horror|Thriller +121202,Hansel & Gretel (2007),Drama|Fantasy|Horror|Mystery|Thriller +121205,Nine Lives (2002),Horror|Thriller +121207,The Power of Few (2013),Action|Crime|Drama|Mystery|Thriller +121209,Unearthed (2007),Horror|Mystery|Sci-Fi|Thriller +121211,Major Movie Star (2008),Adventure|Comedy|Drama|War +121217,Gun (2010),Action|Crime|Thriller +121219,Rest Stop: Don't Look Back (2008),Horror|Thriller +121221,Sabata (1969),Action|Western +121223,The Reunion (2011),Action|Drama +121225,I Am Ali (2014),Documentary +121227,Supermensch: The Legend of Shep Gordon (2013),Documentary +121231,It Follows (2014),Horror +121233,Take a Girl Like You (1970),Comedy|Drama|Romance +121235,The Anomaly (2014),Action|Sci-Fi|Thriller +121237,Sinbad: The Fifth Voyage (2014),Action|Adventure|Fantasy +121239,A Life in Dirty Movies (2013),Documentary +121241,Sweeney Todd: The Demon Barber of Fleet Street (1982),Drama|Horror|Musical|Thriller +121243,Touchback (2011),Children|Drama|Fantasy +121245,Unit 7 (2012),Action|Drama|Thriller +121247,Wishmaster 3: Beyond the Gates of Hell (2001),Fantasy|Horror +121249,The Magical Legend of the Leprechauns (1999),Adventure|Children|Comedy|Fantasy|Romance +121251,Thunderstruck (2012),Children|Comedy +121253,The Town that Dreaded Sundown (2014),Horror|Thriller +121255,White Elephant (2012),Drama +121259,The Tattooist (2007),Horror|Thriller +121261,Leprechaun: Back 2 Tha Hood (2003),Comedy|Fantasy|Horror +121263,Summer's Moon (2009),Horror|Thriller +121265,The Stranger (2010),Action|Thriller +121269,The Shortcut (2009),Horror|Mystery|Thriller +121271,Sometimes They Come Back... Again (1996),Horror +121273,The Dentist 2 (1998),Crime|Horror|Mystery|Thriller +121275,Highway to Hell (1991),Action|Comedy|Fantasy|Horror +121277,U.F.O. (2012),Action|Sci-Fi +121279,Little Lord Fauntleroy (1980),Children|Drama|Romance +121282,Horror on Snape Island (1972),Horror +121284,The Six Wives of Henry Lefay (2009),Comedy +121286,Swinging with the Finkels (2011),Comedy|Romance +121288,The Power and the Glory (1961),Drama +121290,The Girl from Nagasaki (2013),Drama|Romance +121294,Man Exposed (2006),Comedy|Drama +121296,All Fall Down (1962),Drama +121298,Over My Dead Body (1995),Comedy|Fantasy|Romance +121300,Run If You Can (2010),Drama +121302,Someone's Gaze (2013),Animation +121304,Time Freak (2011),Comedy|Sci-Fi +121306,Above Us Only Sky (2011),Drama +121308,Goodbye to Language 3D (2014),Drama +121310,The Perfect World of Kai (2007),Animation|Drama +121312,Planet of Dinosaurs (1977),Drama|Sci-Fi +121314,The Berlin File (2013),Action|Drama|Thriller +121316,The Attorney (2013),Drama +121318,The Hatchet Man (1932),Crime|Drama +121320,Twelve Angry Men (1963),Drama +121322,The Final Girl (2010),Drama +121324,Dot and the Whale (1986),Animation|Children +121326,The Blood of Fu Manchu (1968),Adventure|Crime|Horror +121328,All Things Fall Apart (2011),Drama +121330,Altitude (2010),Horror|Mystery|Thriller +121338,Carry on Cabby (1963),Adventure|Comedy|Romance +121340,Carry on Behind (1975),Comedy +121342,Carry on Cruising (1962),Comedy|Romance +121346,China Girl (1987),Crime|Drama|Romance +121350,Cops and Robbers (1973),Comedy|Crime +121352,Never a Dull Moment (1968),Children|Comedy|Crime +121354,Cyrus: Mind of a Serial Killer (2010),Crime|Horror|Mystery|Thriller +121364,Memories of My Melancholy Whores (2011),Comedy|Drama|Romance +121366,Get a Horse! (2013),Animation|Children|Comedy +121370,Happy New Year (2014),Action|Comedy|Crime|Drama|Musical|Romance +121372,Bill Burr: Let It Go (2010),Comedy +121374,Bill Burr: Why Do I Do This? (2008),Comedy +121376,Pride of the Bowery (1940),Comedy|Drama +121378,His Way (2011),Documentary +121382,Jack the Giant Killer (2013),Action|Fantasy +121390,Lost Boundaries (1949),Drama +121403,Elvis and Me (1988),Drama|Romance +121407,Child of Rage (1992),Drama|Mystery +121409,Christmas Every Day (1996),Children|Comedy|Fantasy +121413,Picture This (2008),Comedy|Drama|Romance +121415,Going Straight (1916),Crime|Drama +121417,Scorned (1994),Drama|Thriller +121419,Mardi Gras: Spring Break (2011),Comedy +121426,The Face of Marble (1946),Horror +121430,The Horsemen (1971),Action|Adventure|Drama +121432,The Man Who Shook the Hand of Vicente Fernandez (2012),Comedy|Drama|Western +121436,The Squeeze (1987),Action|Comedy|Crime|Romance|Thriller +121438,The Squeeze (1978),Comedy|Crime|Drama +121444,Journey to the End of the Night (2006),Drama|Thriller +121447,The Bride (1985),Horror|Romance|Sci-Fi|Thriller +121449,Wishmaster 4: The Prophecy Fulfilled (2002),Fantasy|Horror|Romance +121451,Will (2012),Children|Drama +121453,Lizzie Borden Took an Ax (2014),Crime|Drama|Mystery|Thriller +121455,Tim (1979),Drama|Romance +121457,Switching Goals (1999),Children|Comedy +121461,Snowboard Academy (1996),Comedy +121463,The End (2012),Drama|Sci-Fi|Thriller +121467,Shark Attack (1999),Action|Horror +121469,Killer Movie (2008),Comedy|Horror|Mystery|Thriller +121473,Sex and the Single Girl (1964),Comedy|Romance +121475,The Wizard of Gore (2007),Horror|Mystery +121477,Python (2000),Comedy|Horror|Sci-Fi|Thriller +121481,Grave Halloween (2013),Horror +121483,At the Devil's Door (2014),Horror +121485,Reaching for the Moon (2013),Drama|Romance +121487,Beneath the Harvest Sky (2013),Drama +121489,Hotel Very Welcome (2007),Comedy|Drama +121491,Off Beat (2004),Drama|Romance +121493,"Love, Money, Love (2000)",Drama|Romance +121495,Garbage Prince (2011),Comedy|Drama|Romance +121527,Battle of the Stars (1978),Action|Sci-Fi +121543,White Fang and the Hunter (1975),Adventure|Children|Drama|Western +121545,Lisztomania (1975),Comedy|Fantasy|Musical +121575,The Magnificent Gladiator (1964),Action|Adventure|Drama +121579,Rattlers (1976),Horror +121581,Blablablá (1975),(no genres listed) +121583,The Uninvited Guest (2004),Drama|Horror|Mystery|Thriller +121586,Paradise (2013),Romance +121588,The (Dead Mothers) Club (2014),Documentary +121590,Confessor Caressor (1989),(no genres listed) +121592,The Studio Murder Mystery (1932),Mystery +121594,Midnight Mary (1933),Crime|Drama|Romance +121596,Born to Fight (2011),Action|Children|Drama +121598,Goofy Movies Number One (1933),Comedy +121600,Bosko's Parlor Pranks (1934),Animation +121604,Tapia (2013),Documentary +121612,Trapped in the Closet: Chapters 23-33 (2012),Comedy|Crime|Drama|Musical +121614,Three Brave Men (1956),Drama +121618,The Great Gatsby (1926),Drama +121620,Thieves Fall Out (1941),Comedy +121632,Merlusse (1938),Comedy|Drama +121634,Open Heart (2013),Documentary +121644,The Gift of Love (1978),Drama|Romance +121650,The Loyal 47 Ronin (1958),Drama +121677,The Spiritual Boxer (1975),Action|Comedy|Drama +121693,The Lone Ranger (1938),Western +121699,Katt Williams: Priceless: Afterlife (2014),Comedy +121703,Take a Giant Step (1959),Drama +121713,Swedenhielms Family (1935),Comedy|Drama +121715,Sebastian Maniscalco: What's Wrong with People? (2012),Comedy +121727,Samurai Vendetta (1959),Action|Drama +121729,The Challenge (1970),Drama|War +121733,Newcastle (2008),Drama +121735,Mr. Denning Drives North (1952),Crime|Drama|Mystery +121741,The Cheat (1950),Drama +121763,Without Lying Down: Frances Marion and the Power of Women in Hollywood (2000),Documentary +121767,"See You Tomorrow, Everyone (2013)",Drama +121777,Rebirth (2011),Documentary +121779,Skateland (2010),Drama +121781,Stuart Little 3: Call of the Wild (2005),Animation|Children|Comedy|Fantasy +121783,The Depraved (2011),Horror|Thriller +121785,The Substitute 2: School's Out (1998),Action|Thriller +121787,Shadow People (2013),Horror|Thriller +121790,Seventh Moon (2008),Horror|Thriller +121792,Snow Queen (2002),Adventure|Children|Fantasy +121794,Sacrifice (2011),Action|Crime|Thriller +121797,The Old Maid (1939),Drama +121799,Maniac Cop 3: Badge of Silence (1993),Action|Horror +121811,Pimp Bullies (2011),Action|Crime|Thriller +121815,Pink Saris (2010),Documentary|Drama +121821,The Dancer (2011),Drama|Romance +121825,Witch's Night Out (1978),Animation|Children +121829,Kings Point (2012),Comedy|Documentary|Drama +121831,The Seventh Sin (1957),Drama +121835,The Green Hornet (1974),Action|Crime|Sci-Fi +121841,Mantle (2005),Documentary +121845,Onibi: The Fire Within (1997),Drama|Thriller +121849,Long Day's Journey Into Night (1987),Drama +121851,The Golden Hawk (1952),Action|Adventure|Romance|War +121857,Too Tough to Die: A Tribute to Johnny Ramone (2006),Documentary +121859,The Formula (2014),Comedy|Romance +121863,Without Pity (1948),Crime|Drama +121873,The Man in Possession (1931),Comedy +121875,Submarine (1928),Action|Drama +121877,Two Loves (1961),Drama +121879,Method to the Madness of Jerry Lewis (2011),Documentary +121889,The Four Feathers (1929),Adventure|Drama|Romance|War +121907,Lady Scarface (1941),Comedy|Crime|Drama|Romance +121917,The Green Years (1963),Drama +121929,Looking Forward (1933),Drama +121931,Passion Flower (1930),Drama +121933,The Beat Generation (1959),Crime|Drama|Thriller +121965,The Boys (1962),Crime|Drama +121967,Tender Scoundrel (1966),Comedy|Crime +121973,Jungle Man-Eaters (1954),Adventure +121981,The Kill Hole (2012),Action|Thriller|War +121985,Princess and the Pony (2011),Children|Drama +121993,Night Court (1932),Crime|Film-Noir|Thriller +121999,Valley of Head Hunters (1953),Adventure +122009,Loose Ankles (1930),Comedy|Romance +122011,Voodoo Tiger (1952),Adventure +122015,Sergio (2009),Documentary +122025,Somewhere Tonight (2011),Comedy|Drama|Romance +122027,Roman Polanski: Odd Man Out (2012),Documentary +122029,The Hound of the Baskervilles (2002),Adventure|Drama|Horror|Mystery +122031,Psych:9 (2010),Horror|Mystery|Thriller +122033,Her Best Move (2007),Children|Comedy|Romance +122035,Tarzan and the Amazons (1945),Action|Adventure|Romance +122037,The Bone Snatcher (2003),Horror|Sci-Fi +122039,Snow Buddies (2008),Adventure|Children +122041,Trust Me (2013),Comedy|Drama +122043,The Haunting Hour: Don't Think About It (2007),Children|Fantasy|Horror|Thriller +122045,The Time of Their Lives (1946),Comedy|Fantasy|Romance|Thriller +122048,The Message (2009),Crime|Drama|Thriller|War +122050,The Gene Generation (2007),Action|Sci-Fi +122058,Spring is Here (1930),Comedy|Musical|Romance +122060,School for All (2006),Comedy +122062,The Elephant Man (1982),Drama +122064,No Questions Asked (1951),Drama|Film-Noir +122082,On the Inside (2011),Drama|Thriller +122084,Solomon and Sheba (1959),Drama|Romance|War +122086,The Heavy (2010),Action|Thriller +122088,Water (1985),Adventure|Comedy|Drama +122090,Ground Control (1998),Action|Adventure|Drama|Thriller +122092,Guy X (2005),Comedy|War +122094,Perkins' 14 (2009),Horror|Thriller +122096,Tell Them Willie Boy is Here (1969),Drama|Western +122098,The Hunters (2011),Crime|Horror|Thriller +122100,The Sea Chase (1955),Action|Drama|War +122102,Incubus (2006),Horror|Mystery|Thriller +122104,Kevin Hart: Seriously Funny (2010),Comedy +122108,The Reptile (1966),Horror +122110,Winnetou: The Red Gentleman (1964),Adventure|Western +122127,One Husband Too Many (2010),Comedy|Romance +122129,Scooby-Doo! Camp Scare (2010),Adventure|Animation|Children|Comedy|Mystery +122131,Half of a Yellow Sun (2013),Drama|Romance +122133,"Hey There, It's Yogi Bear (1964)",Adventure|Animation|Children|Comedy|Romance +122143,Men to Kiss (2012),Comedy|Romance +122145,Little Fridolf Becomes a Grandfather (1957),Comedy +122147,Beck - Familjen (2015),Crime|Mystery|Thriller +122151,The Stranger's Return (1933),Comedy|Drama +122155,Weary River (1929),Drama|Romance +122157,Koran by Heart (2011),Documentary +122159,The Affairs of Martha (1942),Comedy|Romance +122163,Three Night Stand (2013),Comedy|Drama +122197,Paradise for Three (1938),Comedy|Romance +122199,The Feathered Serpent (1948),Comedy|Crime|Horror|Mystery|Thriller +122205,In His Father's Shoes (1997),Children|Drama +122210,Jim Norton: Please Be Offended (2012),Comedy +122216,The Secret of Dr. Kildare (1939),Drama +122218,The Sky Dragon (1949),Adventure|Comedy|Crime|Mystery|Thriller +122220,The Man Without a Map (1968),Mystery +122228,PT 109 (1963),Drama|War +122230,Noah's Ark (1999),Adventure|Drama|Romance +122234,The Lookout (2012),Action|Crime|Thriller +122238,When a Stranger Calls Back (1993),Horror|Thriller +122240,Mister Magoo's Christmas Carol (1962),Animation|Children|Comedy|Drama|Fantasy|Musical +122242,Ritual (2012),Horror|Thriller +122244,Master of the World (1961),Adventure|Fantasy|Sci-Fi +122246,Tooth Fairy 2 (2012),Children|Comedy +122250,In Name Only (1939),Drama|Romance +122254,Love's Kitchen (2011),Comedy|Drama|Romance +122258,They Call Me Renegade (1987),Action|Adventure|Comedy|Western +122260,The Diary of Anne Frank (2009),Drama|War +122262,Wishcraft (2002),Horror +122264,Knights (1993),Action|Adventure|Sci-Fi +122266,The Chatterley Affair (2006),Drama|Romance +122268,Fanny Hill (2007),Drama +122270,The Suspicions of Mr. Whicher: The Murder at Road Hill House (2011),Drama|Mystery +122272,The Last Wagon (1956),Action|Adventure|Drama|Western +122276,The Philly Kid (2012),Action|Drama +122278,Ping Pong Summer (2014),Comedy +122280,Sabretooth (2002),Action|Adventure|Horror|Sci-Fi|Thriller +122282,Pride and Prejudice (1980),Comedy|Drama|Romance +122284,Sometimes They Come Back... for More (1998),Horror +122286,Kid Galahad (1962),Drama|Musical +122288,The Captains (2011),Documentary|Sci-Fi +122290,Homeboy (1988),Drama|Romance +122292,Merlin's Apprentice (2006),Adventure|Fantasy +122294,The Siege of Firebase Gloria (1989),Action|Drama|War +122296,The Bumblebee Flies Anyway (1999),Drama|Romance +122298,The Treasure of the Living Dead (1982),Horror +122300,The Land Before Time VII: The Stone of Cold Fire (2000),Adventure|Animation|Children|Fantasy +122302,The Amazing Dr. Clitterhouse (1938),Crime|Drama|Film-Noir +122304,The Freebie (2010),Comedy|Drama +122306,The Violent Kind (2010),Horror +122308,Ricky Gervais: Out of England - The Stand-Up Special (2008),Comedy +122310,Man of the East (1972),Action|Comedy|Western +122315,Winnetou: The Last Shot (1965),Action|Adventure|Western +122317,Soccer Dog: The Movie (1999),Children|Comedy +122319,Ice Soldiers (2013),Action|Sci-Fi +122321,Maniac (1934),Horror +122323,Wild Cherry (2009),Comedy +122325,The Key (1983),Drama +122327,The Roost (2005),Horror|Thriller +122333,Siren (2010),Action|Horror|Thriller +122335,The Land Before Time IX: Journey to the Big Water (2002),Adventure|Animation|Children +122337,Love N' Dancing (2009),Drama|Romance +122339,Walking Tall: The Payback (2007),Action|Adventure|Crime|Drama|Thriller +122341,The Way West (1967),Action|Adventure|Western +122343,Shock (1946),Film-Noir|Thriller +122345,Mask Maker (2010),Horror|Thriller +122347,Thorne: Sleepyhead (2010),Crime|Drama|Mystery|Thriller +122349,La Mission (2009),Drama +122355,The Outrage (1964),Action|Crime|Drama|Western +122357,The Canterville Ghost (1996),Children|Drama|Fantasy +122359,Lost in the Desert (1969),Adventure|Drama|Thriller +122371,Let the Good Times Roll (1973),Documentary +122373,The Vanishing American (1925),Western +122381,TekWar: TekJustice (1994),Sci-Fi +122385,Thunder Birds (1942),Drama|Romance|War +122393,Sam Peckinpah's West: Legacy of a Hollywood Renegade (2004),Documentary +122397,The White Sister (1923),Drama|Romance +122399,The Naughty Flirt (1931),Comedy|Drama|Romance +122409,Two Times Lotte (1950),Children|Comedy +122413,The Land Before Time VIII: The Big Freeze (2001),Adventure|Animation|Children +122417,Who's Minding the Store? (1963),Comedy +122421,The Six Million Dollar Man (1973),Adventure|Sci-Fi +122423,The Love Letter (1998),Fantasy|Romance +122425,The Land Before Time X: The Great Longneck Migration (2003),Adventure|Animation|Children +122433,The Deadly Bees (1967),Horror|Mystery|Thriller +122435,They Came from Beyond Space (1967),Sci-Fi +122437,"Mumsy, Nanny, Sonny & Girly (1970)",Comedy|Horror +122441,Tales That Witness Madness (1973),Comedy|Horror|Mystery|Sci-Fi +122443,Son of Dracula (1974),Comedy|Horror +122451,Dark Tower (1989),Horror|Thriller +122455,Holy Water (2009),Comedy +122458,Supernova (2005),Action|Drama|Sci-Fi +122462,Kissin' Cousins (1964),Comedy|Romance +122464,Student Services (2010),Drama|Romance +122466,JLA Adventures: Trapped in Time (2014),Action|Animation|Sci-Fi +122468,Joy Ride 3 (2014),Thriller +122470,Inside Out (2011),Crime|Drama +122472,The Karate Dog (2004),Action|Adventure|Children|Comedy|Crime +122474,Since You've Been Gone (1998),Comedy|Romance +122478,Peter and Vandy (2009),Comedy|Drama|Romance +122480,Hercules and the Amazon Women (1994),Action|Adventure|Fantasy|Sci-Fi +122482,Howling VI: The Freaks (1991),(no genres listed) +122488,Tomorrow You're Gone (2013),Thriller +122490,Wicked Blood (2014),Action|Drama|Thriller +122495,Killer Pad (2008),Comedy|Horror +122497,"What Did You Do in the War, Daddy? (1966)",Comedy|War +122499,Rachel and the Stranger (1948),Western +122501,The Indian Fighter (1955),Action|Adventure|Drama|Western +122503,"Little Fish, Strange Pond (2009)",Comedy|Crime|Drama +122505,Trading Mom (1994),Children|Comedy +122509,MVP: Most Vertical Primate (2001),Comedy|Drama +122511,Air Bud: Seventh Inning Fetch (2002),Children|Comedy|Drama +122513,Chestnut: Hero of Central Park (2004),Children +122515,Spymate (2006),Adventure|Comedy +122517,Air Buddies (2006),Children|Comedy|Sci-Fi +122519,The Search for Santa Paws (2010),Adventure|Children +122523,Treasure Buddies (2012),Children|Comedy +122525,Santa Paws 2: The Santa Pups (2012),Children +122527,Super Buddies (2013),Children +122531,Malicious (1995),Drama|Thriller +122545,The Lost Tribe (2009),Adventure|Horror|Thriller +122547,Jim Thorpe -- All-American (1951),Drama +122550,Guns for San Sebastian (1968),Action|Adventure|Drama|Western +122559,Popstar (2005),Children|Comedy|Romance +122561,Miracle Dogs Too (2006),Children|Drama +122563,InSight (2011),Mystery|Thriller +122567,In The Dark (2013),Horror +122569,Non-Stop (2013),Drama|Mystery|Thriller +122573,Expecting Amish (2014),(no genres listed) +122575,Rough Riders (1997),Drama +122577,The Devil's Brother (1933),Comedy +122579,TekWar: TekLab (1994),Sci-Fi +122583,TekWar: TekLords (1994),Sci-Fi +122591,John Loves Mary (1949),Comedy +122593,The Underneath (2013),Horror|Sci-Fi|Thriller +122595,The Deep Six (1958),Drama|War +122619,Nervous Ticks (1992),Comedy|Romance +122621,Man of the Moment (1955),Comedy +122623,Oliver Twist (1982),Crime|Drama +122625,Pretty Devils (2000),Comedy|Drama +122635,Music for Millions (1944),Comedy|Drama +122643,Wild Orchids (1929),Drama|Romance +122647,Movers & Shakers (1985),Comedy +122653,Nancy Drew... Trouble Shooter (1939),Comedy|Mystery +122657,Mosquita y Mari (2012),Drama +122659,The Defector (1966),Action +122665,Jabberwock Dragon Siege (2011),Action|Adventure|Fantasy +122667,Sunday Too Far Away (1975),Drama +122683,Nancy Drew and the Hidden Staircase (1939),Comedy|Crime|Mystery +122693,Nancy Drew: Detective (1938),Comedy|Mystery +122699,The Little Rascals Save the Day (2014),Children|Comedy +122703,Ticket out (2012),Thriller +122711,Oliver Twist (1999),(no genres listed) +122713,S*P*Y*S (1974),Action|Comedy +122715,Older Than America (2008),Drama|Thriller +122719,The Piano Player (2003),Action|Crime|Thriller +122727,Waterborne (2005),Action|Drama|Thriller +122729,Oblivion (1994),Action|Documentary|Sci-Fi +122733,Mosquito Squadron (1969),Action +122735,Night of Dark Shadows (1971),Drama|Horror|Mystery|Romance|Thriller +122739,Mostly Ghostly (2008),Children +122743,The Old Dark House (1963),Comedy|Horror|Mystery +122747,Hot Water (1924),Comedy +122749,The Thirteen Assassins (1963),Action|Adventure +122754,Nemesis 3: Time Lapse (1996),Action|Sci-Fi|Thriller +122756,None But the Brave (1965),Drama|War +122758,The 7 Adventures of Sinbad (2010),Action|Adventure +122760,My 5 Wives (2000),Comedy +122762,My Brother the Pig (1999),Children|Comedy|Fantasy|Sci-Fi +122764,Napoleon (1995),Adventure|Children +122770,Jack Frost (1979),Children +122772,Love Birds (2011),Comedy|Romance +122774,Monster (2008),Action|Horror|Sci-Fi +122779,The Road Killers (1994),Action|Crime|Drama|Thriller +122781,The Curse of the Mummy's Tomb (1964),Horror +122783,Stick (1985),Action|Adventure|Crime|Drama +122785,Tic Tac (1997),Drama|Thriller +122787,The 39 Steps (1959),Action|Adventure|Comedy|Crime|Drama|Thriller +122791,Duchess and the Dirtwater Fox (1976),Comedy|Western +122793,Skyjacked (1972),Action|Thriller +122795,The Millionairess (1960),Comedy|Romance +122797,Legacy (2010),Drama|Thriller +122799,The New Centurions (1972),Action|Crime|Drama +122801,Sands Of Oblivion (2007),Action|Adventure|Drama|Horror|Sci-Fi +122803,Tempted (2001),Mystery|Romance|Thriller +122807,Just 4 Kicks (2003),Children +122809,Intermedio (2005),Horror|Thriller +122811,The Last Flight (1931),(no genres listed) +122813,Space Chimps 2: Zartog Strikes Back (2010),Animation|Children +122815,Pack Up Your Troubles (1932),Comedy|War +122817,The Tooth Fairy (2006),Horror +122819,"If It's Tuesday, This Must Be Belgium (1969)",Comedy|Drama +122825,Starlift (1951),(no genres listed) +122841,The Firefly (1937),Drama +122849,Naked Violence (1969),Crime|Drama +122851,The Italian Connection (1972),Crime|Drama +122855,Colpo in canna (1975),Action +122857,Kidnap Syndicate (1975),Crime +122859,Rulers of the City (1976),Action|Comedy|Crime +122861,To Be Twenty (1978),Comedy|Drama|Horror +122876,Torrente 4: Lethal Crisis (2011),Action|Comedy|Crime +122878,Torrente 5: Operación Eurovegas (2014),Action|Comedy +122880,I Want You (2012),Drama|Romance +122882,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller +122884,Insidious Chapter 3 (2015),Thriller +122886,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi +122892,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi +122894,Avatar 2 (2016),Action|Adventure|Fantasy +122900,Ant-Man (2015),Action|Adventure|Sci-Fi +122902,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi +122928,Manolito Four Eyes (1999),Comedy +122930,El Robobo De La Jojoya (1991),Comedy +122932,Elsa & Fred (2014),Children|Comedy|Romance +122934,Soccer Days (2003),Comedy +122936,Too Late Blues (1961),Drama +122938,Melbourne (2014),Drama +122940,Clear History (2013),Comedy +122942,The Identical (2014),Drama +122944,The Trans-Atlantic Mystery (1932),(no genres listed) +122946,The Gamers: Hands of Fate (2013),Comedy|Fantasy|Romance +122948,Love at First Fight (2014),Comedy|Romance +122950,Mare Nostrum (1926),War +122954,Skylark (1941),Comedy|Romance +122968,The Affairs of Annabel (1938),Comedy +122970,Montana Belle (1952),Western +122972,The Clown (1953),Drama +122982,Magic Boy (1961),Adventure|Animation|Children +123004,I Don't Buy Kisses Anymore (1992),Comedy|Romance +123008,Heidi (1952),Children|Drama +123016,Mary Stevens M.D. (1933),Drama +123024,Man Made Monster (1941),Drama|Horror|Sci-Fi|Thriller +123026,Horror Island (1941),Horror +123036,Pagan Love Song (1950),Drama|Romance +123044,Stalingrad (1989),(no genres listed) +123046,The Tsunami and the Cherry Blossom (2011),Documentary +123061,"Goodbye, Mr. President (1987)",(no genres listed) +123077,Talk About a Stranger (1952),Drama|Mystery +123085,The Miracle Worker (2000),Drama +123087,The Return of Sabata (1971),Action|Western +123089,The McKenzie Break (1970),Action|War +123091,Mercy (2010),Drama|Romance +123093,Happily N'Ever After 2 (2009),Animation|Children +123095,Left for Dead (2007),(no genres listed) +123097,Hotel (2004),Drama|Thriller +123099,The Hearse (1980),Drama|Horror|Mystery +123101,Infection (2005),Horror +123103,Voyage of the Unicorn (2001),Adventure|Fantasy +123107,The Phantom of the Opera (1990),Drama|Mystery|Romance|Thriller +123109,P.U.N.K.S (1999),Children|Comedy|Sci-Fi +123111,When a Man Falls (2007),Drama|Thriller +123113,Springfield Rifle (1952),Action|War|Western +123115,Why Be Good? (1929),Comedy|Drama|Romance +123119,The Expedition to the End of the World (2014),Documentary +123121,Jealousy (2013),Drama +123125,The Radio Burglary (1951),Comedy|Crime|Thriller +123129,Magic Kid (1993),Action|Children|Comedy +123133,Hoodlum Priest (1961),Drama +123139,The Divine Woman (1928),(no genres listed) +123155,Russkies (1987),Children|Drama +123159,Hercules and the Lost Kingdom (1994),Action|Adventure|Fantasy|Sci-Fi +123161,Rites of Passage (2012),Thriller +123163,The Suspect (2013),Thriller +123165,Mongolian Death Worm (2010),Horror|Sci-Fi +123172,Winter Break (2003),Comedy|Drama +123174,The Facility (2012),Horror|Sci-Fi +123176,Shredderman Rules (2007),Action|Adventure|Children|Comedy +123178,Man on Fire (1987),Action|Drama|Thriller +123180,Piranha Hunt (2006),Action|Crime|Thriller +123188,Ironclad 2: Battle for Blood (2014),Action|Adventure +123190,Voices (2007),Horror|Thriller +123192,The Land Before Time XI: Invasion of the Tinysauruses (2005),Animation|Children|Fantasy|Sci-Fi +123194,See Girl Run (2013),Romance +123196,Ritual (2002),Horror +123198,Head Office (1985),Comedy +123200,Jim Jefferies: I Swear to God (2009),Comedy +123202,Social Nightmare (2013),Drama|Mystery +123210,Once Fallen (2010),Action|Crime|Drama +123215,The Magic Box (1951),Drama +123219,The Adventures of Tartu (1943),Drama|Romance|Thriller|War +123221,Knight Without Armor (1937),Adventure|Drama|Romance|Thriller +123225,Winning Streak (2012),Drama +123229,The Flesh and the Fiends (1961),Horror +123233,The Lion Has Wings (1939),War +123235,Sanders of the River (1935),Adventure|Drama +123240,The Macomber Affair (1947),Adventure +123244,"Cry, the Beloved Country (1952)",Drama +123252,I Accuse! (1958),Drama +123256,Kill Katie Malone (2010),Horror|Thriller +123262,Rio Conchos (1964),Action|Western +123264,Hercules and the Circle of Fire (1994),Action|Adventure|Fantasy +123268,June Bride (1948),Comedy +123274,Katherine (1975),(no genres listed) +123282,Roswell (1994),Drama|Mystery +123284,The Ballad of Lucy Whipple (2001),(no genres listed) +123288,Taken (2002),Sci-Fi +123294,They Fought for Their Motherland (1975),Drama|War +123296,Welcome to Hard Times (1967),Western +123298,The Lost Continent (1968),Adventure|Fantasy +123304,Scrooge (1935),Action|Children|Comedy|Drama|Fantasy +123306,Knife Fight (2013),Drama +123308,Suddenly (2013),Thriller +123310,Tornado! (1996),Action +123312,The Opposite Sex (1956),Comedy|Drama|Romance +123314,Mischief Night (2013),Drama|Horror|Thriller +123316,Saratoga (1937),Comedy|Drama|Romance +123318,Legendary: Tomb of the Dragon (2013),Action|Adventure +123320,Red Riding Hood (2006),Children|Horror +123326,The Man From The Alamo (1953),Western +123333,Lucrèce Borgia (1935),(no genres listed) +123337,I Accuse (1938),Drama|Horror|Sci-Fi|War +123347,Call Me Savage (1975),Adventure|Comedy|Drama|Romance +123349,The Unholy (1988),Horror +123351,Invitation to a Gunfighter (1964),Action|Western +123353,The Hornet's Nest (2014),Documentary|War +123357,Rain Fall (2009),Action|Adventure|Thriller +123359,My Way (2012),Drama +123361,Sisters (2006),Horror|Mystery|Thriller +123381,The Command (1954),Western +123383,Mockery (1927),Drama|Romance|War +123385,The Inspector (1962),Drama|Romance +123391,Hotel California (2008),Action|Thriller +123395,Nine Hours to Rama (1963),Drama +123401,Man-Proof (1938),Comedy|Drama|Romance +123405,Tales from Muppetland: The Frog Prince (1971),Children|Fantasy +123407,Man Of The Moment (1935),Comedy +123419,Private Detective 62 (1933),Comedy|Crime|Drama +123421,Newlyweeds (2013),(no genres listed) +123423,Return to Nim's Island (2013),Adventure|Children +123427,Meskada (2010),Crime|Drama|Mystery|Thriller +123429,Curtain Call (1998),Romance|Sci-Fi +123431,Three Guys Named Mike (1951),Comedy|Romance +123435,Wreckage (2010),Horror|Thriller +123437,Monster Island (2004),Adventure|Comedy|Horror +123439,Wuthering Heights (2003),(no genres listed) +123441,Certain Fury (1985),(no genres listed) +123449,Talking to Heaven (2002),Crime|Drama|Mystery|Sci-Fi|Thriller +123453,Girl Fight (2011),Drama +123463,Out of Bounds (1986),Action|Crime|Thriller +123465,The Derby Stallion (2005),Children|Drama +123467,Jewtopia (2012),Comedy|Romance +123471,His and Hers (2001),Comedy +123473,Light in the Piazza (1962),Drama|Romance +123475,Malta Story (1953),Drama|War +123477,The Land Before Time XII: The Great Day of the Flyers (2006),Animation|Children|Sci-Fi +123479,Payment on Demand (1951),Drama +123481,Storm Warning (1951),Crime|Drama +123487,The Substitute 4: Failure Is Not an Option (2001),Action|Drama +123493,Nas: Time Is Illmatic (2014),Documentary +123495,Small Town Saturday Night (2010),Drama +123497,Ricky Gervais: Out of England 2 - The Stand-Up Special (2010),Comedy +123499,The Hunters (2013),Adventure +123516,The Girl From Missouri (1934),Comedy|Romance +123530,The Christmas Party (2009),Comedy +123532,"Poor Little Rich Girl, The (1917)",Comedy|Drama|Fantasy|Romance +123534,Hercules in the Maze of the Minotaur (1994),Action|Adventure|Fantasy +123545,The Blue Lagoon (1949),Drama|Romance +123553,In the Name of the King III (2014),Action|Adventure|Drama|Fantasy +123565,Hercules in the Underworld (1994),Action|Adventure|Fantasy|Sci-Fi +123571,Jim Jefferies: Alcoholocaust (2010),Comedy +123573,Thorne: Scaredy Cat (2010),Crime|Drama|Mystery|Thriller +123575,Shoot Out (1971),Western +123577,Terror Trap (2010),Horror|Thriller +123579,That Certain Woman (1937),Drama|Romance +123585,Love (2012),Drama|Romance +123587,"Twilight of the Golds, The (1997)",Drama +123589,The Major (2013),Action|Crime|Drama +123591,The Ghost Train (1941),Comedy|Horror|Thriller +123596,One Spy Too Many (1966),Adventure|Crime +123600,Tribes (1970),Drama +123602,Maybe I'll Come Home in the Spring (1971),(no genres listed) +123605,Hustling (1975),Drama +123607,The Night That Panicked America (1975),(no genres listed) +123609,Goldengirl (1979),(no genres listed) +123613,Playing for Time (1980),Drama +123621,Space (1985),Drama +123625,The Karen Carpenter Story (1989),(no genres listed) +123627,The Incident (1990),Drama +123629,Caroline? (1990),(no genres listed) +123639,Skylark (1993),Children|Drama +123645,A Lesson Before Dying (1999),Drama +123653,Salem Witch Trials (2002),Drama +123655,Sybil (2008),Drama +123669,"See Here, Private Hargrove (1944)",Comedy|Romance|War +123677,Shock Treatment (1964),Comedy +123681,Wanda Sykes: I'ma Be Me (2009),Comedy +123699,The Affairs of Dobie Gillis (1953),Comedy +123715,The Munsters' Revenge (1981),(no genres listed) +123717,Strange Bargain (1949),Mystery|Thriller +123719,Stingaree (1934),Comedy|Drama|Romance +123735,Vito (2011),Documentary +123737,The Big Land (1957),Western +123747,My Own Country (1998),Drama +123761,The Golden Eye (1948),Crime|Mystery|Thriller +123773,Sh! The Octopus (1937),Comedy|Mystery +123785,Riverworld (2003),Fantasy|Sci-Fi|Thriller +123816,Highly Dangerous (1950),Action|Thriller +123824,The Casino Murder Case (1935),Action|Drama|Mystery +123834,The Hands of Orlac (1960),Crime|Horror|Thriller +123840,Girl in Gold Boots (1968),Crime|Drama|Romance +123848,Mark of the Astro-Zombies (2002),Horror|Sci-Fi +123850,Astro-Zombies M3: Cloned (2010),(no genres listed) +123854,Mystery of Edwin Drood (1935),Drama|Horror|Mystery|Romance +123876,The Happy Elf (2005),Animation|Children|Comedy +123882,Snow in August (2001),Children|Drama +123911,Zouzou (1934),Comedy +123935,St. Giuseppe Moscati: Doctor to the Poor (2007),(no genres listed) +123939,Women Aren't Funny (2014),(no genres listed) +123941,The Last Outpost (1951),Western +123943,Shun Li and the Poet (2011),Drama +123945,Basara: Princess Goh (1992),Drama +123947,Cake (2014),Drama +123949,The Escape (2013),Drama +123951,Power Play (1978),Drama|Thriller +123959,Groupie (2010),Horror|Thriller +123967,LiebesLuder (2000),Comedy +123973,Number One with a Bullet (1987),Action|Comedy +123981,The Admirable Crichton (1957),Comedy +123985,HazMat (2013),Horror +123997,Speak Easily (1932),Comedy +124007,I Love Lucy: The Movie (1953),(no genres listed) +124013,Thoroughbreds Don't Cry (1937),Comedy|Drama +124025,The Sins of Rachel Cade (1961),Drama +124031,Rosalie (1937),Drama +124043,Martial Club (1981),Action +124048,Alice in Wonderland (1966),Children|Fantasy|Sci-Fi +124050,Pleasure at Her Majesty's (1976),Comedy|Documentary +124052,King Lear (1982),Drama +124059,Octopus 2: River of Fear (2001),Horror +124063,Lone Rider (2008),Action|Western +124077,The Trip to Bountiful (2014),Drama +124083,Honolulu (1939),Comedy|Romance +124125,Way Back Home (2013),Drama +124131,Lewis Black: Stark Raving Black (2009),Comedy +124137,Man Bait (1952),Crime|Drama +124139,Mayor Cupcake (2011),Children|Comedy|Drama +124149,Switch (2007),(no genres listed) +124151,Vampire Dog (2012),Children +124164,You're Never Too Young (1955),Comedy +124166,No Man's Land (2013),Crime|Drama|Western +124168,Paper Soldiers (2002),Action|Comedy +124170,Southie (1999),Action|Drama|Thriller +124172,Vicious Lips (1986),Comedy|Horror|Sci-Fi +124174,Until They Sail (1957),Drama|Romance|War +124178,The King and Four Queens (1956),Adventure|Comedy|Mystery|Western +124180,High Wall (1947),Crime|Drama +124182,The Gallant Hours (1960),(no genres listed) +124194,The Risk (1960),Drama|Thriller +124213,Whistling in the Dark (1941),Comedy|Mystery +124220,Whistling in Dixie (1942),Comedy|Crime|Mystery +124224,Whistling in Brooklyn (1943),Comedy|Crime|Mystery|Romance +124230,I Love Trouble (1948),Crime|Drama +124232,The Fuller Brush Man (1948),Adventure|Comedy +124235,Precious Find (1996),Action|Sci-Fi +124243,Burning Down the House (2001),(no genres listed) +124247,Desert Victory (1943),Documentary +124253,Sailor of the King (1953),Action|Drama +124265,The Family Way (1966),Comedy +124269,The Moving Finger (1985),(no genres listed) +124273,Kevin Smith: Too Fat For 40 (2010),Comedy +124279,SeaFood (2012),Adventure|Animation|Children|Comedy +124290,Reign of Terror (1949),Drama +124292,The Jackie Robinson Story (1950),Children|Drama +124296,"Invasion, U.S.A. (1952)",Sci-Fi +124298,Hider in the House (1989),Horror|Thriller +124300,White: The Melody of the Curse (2011),Horror +124302,Kermit's Swamp Years (2002),Children|Comedy|Fantasy +124304,Harry in Your Pocket (1973),Comedy|Crime|Drama +124320,Once a Thief (1965),Crime|Drama|Thriller +124322,House Party 4: Down to the Last Minute (2001),Comedy +124324,Race to Space (2002),Children|Drama +124326,White Line Fever (1975),Action +124332,Snow Queen (2012),Animation|Fantasy +124336,In the Shadows (2001),Drama|Thriller +124342,Trapped in the Closet: Chapters 13-22 (2007),Comedy|Crime +124344,Safari (2009),Adventure|Comedy +124348,The Land Before Time XIII: The Wisdom of Friends (2007),Animation|Children +124350,Solar Attack (2006),Action|Thriller +124352,I Was Monty's Double (1958),Drama|War +124356,The Missing Lynx (2008),Animation|Children +124358,The Lone Wolf Spy Hunt (1939),(no genres listed) +124364,Hotel Berlin (1945),(no genres listed) +124368,Escape Me Never (1947),Drama +124380,Please Murder Me (1956),Crime|Drama +124394,If Winter Comes (1947),Drama +124404,"Snowflake, the White Gorilla (2011)",Adventure|Animation|Children|Comedy +124406,Man Wanted (1932),Comedy|Drama|Romance +124408,Last of the Comanches (1953),(no genres listed) +124412,Ski Party (1965),Comedy +124414,The Secret of Convict Lake (1951),Western +124430,Viva Max! (1969),(no genres listed) +124442,"No God, No Master (2014)",Crime|Drama|Thriller +124446,The Very Thought of You (1944),Drama|Romance +124450,Lady Killer (1937),Drama|Romance|War +124452,Tension at Table Rock (1956),Western +124458,Hansel and Gretel (1982),Children +124462,Sitting Bull (1954),Western +124470,One Sunday Afternoon (1933),Comedy|Romance +124472,Red Light (1949),Mystery|Thriller +124476,The Mask (1961),Horror|Thriller +124488,Santiago (2007),Documentary +124490,"Sea Hawk, The (1924)",Adventure|Drama|Romance +124492,This is My Affair (1937),Crime|Drama +124496,Our Town (2007),(no genres listed) +124502,Have I the Right To Kill (1964),Crime|Drama +124507,Journey to the Center of the Earth (1989),Action|Children|Fantasy|Sci-Fi +124519,Snow White and the Three Stooges (1961),Adventure|Children|Comedy|Drama|Fantasy +124521,Squatters (2014),Drama +124525,The Hoodlum (1919),(no genres listed) +124531,The Last of the Finest (1990),(no genres listed) +124533,Tarzan's Greatest Adventure (1959),Adventure +124535,The Last Flight (2009),Adventure|Drama|Romance +124537,Lifeguard (1976),Comedy|Drama +124539,Gunshy (1998),Action|Crime|Thriller +124544,Perfume (2001),Comedy|Drama +124546,Cops and Robbers (1951),Comedy|Drama +124550,Monday Night Mayhem (2002),Drama +124552,The New Protocol (2008),Drama|Mystery +124554,Holocaust 2000 (1977),Drama|Horror|Sci-Fi +124556,The Virgin of Nuremberg (1963),Horror|War +124560,The Crying Dead (2013),Adventure|Horror|Thriller +124562,Illegal (2011),Drama +124571,Scarred City (1999),Action|Thriller +124575,The Wind in the Willows (1983),Adventure|Animation|Children|Fantasy +124577,A Boy and His Samurai (2010),Comedy|Drama|Romance +124581,Slow Burn (2000),Action|Drama|Mystery|Thriller +124595,Their Own Desire (1929),Drama|Romance +124607,One Night of Love (1934),Romance +124611,Great Day in the Morning (1956),Western +124621,Shaolin Mantis (1978),Action +124623,Evel Knievel (2004),Drama +124627,The Smiling Ghost (1941),Comedy|Mystery +124629,Sånt är livet (1996),(no genres listed) +124631,Le joli mai (1966),(no genres listed) +124639,Onionhead (1958),(no genres listed) +124643,The Hunters (1977),Drama|Romance +124645,The Midnight Game (2013),(no genres listed) +124647,Spark: A Burning Man Story (2013),Action|Documentary|Drama +124651,Stalker (2010),Horror +124655,The Scarlet Coat (1955),Adventure|Drama +124657,There's Always A Woman (1938),Comedy|Mystery +124659,The Law (1990),(no genres listed) +124681,Raffles (1939),Adventure|Comedy|Crime|Drama|Romance|Thriller +124687,The Case of the Howling Dog (1934),Crime|Drama|Mystery +124691,Hollidaysburg (2014),Comedy +124693,Hell's Highway (1932),Crime|Drama +124713,Sea Wife (1957),Drama|Romance +124721,The Front (2010),Crime|Drama|Mystery +124725,The Big Cube (1969),Mystery|Thriller +124727,Just for Kicks (2005),Documentary +124731,Just My Luck (1957),Comedy +124735,Love Bites (1993),Comedy|Romance +124745,The Girl in Black Stockings (1957),Crime|Drama +124751,The Mysterious Island (1973),Adventure|Sci-Fi +124763,Hills of Home (1948),Action|Adventure|Children|Drama +124765,"Mysterious Island, The (1929)",(no genres listed) +124767,The Threat (1949),Crime|Thriller +124769,Stolen Face (1952),Thriller +124771,I Will Follow (2011),Drama|Romance +124773,Bienvenido a casa (2006),Comedy|Romance +124775,The Lost Squadron (1932),(no genres listed) +124779,Home of the Brave (1949),Drama +124781,Marianne (2011),Drama|Fantasy|Horror|Mystery|Thriller +124783,Uncle Kent (2011),Comedy|Drama|Romance +124793,The Crowded Sky (1960),Action|Adventure|Drama +124797,Voodoo Possession (2014),Drama|Horror|Mystery +124801,Lydia (1941),Drama|Romance +124803,Hard to Handle (1933),Comedy|Romance +124805,Venus & Vegas (2010),Action|Comedy +124807,Jay-Z: Made in America (2013),Documentary +124811,The Power and the Glory (1933),Drama +124813,House of Usher (2008),Horror|Thriller +124817,It Started With A Kiss (1959),Comedy|Romance +124819,Midnight Crossing (1988),Mystery|Thriller +124825,Snake and Mongoose (2013),Drama +124827,Ruby (1977),Action|Drama|Horror +124831,They All Kissed the Bride (1942),Comedy|Romance +124833,Men of the Fighting Lady (1954),(no genres listed) +124839,The Lightkeepers (2009),Comedy|Drama|Romance +124841,Special Mission Lady Chaplin (1966),Action|Adventure +124843,From the Orient with Fury (1965),Action|Adventure|Comedy +124851,Delirium (2014),Adventure|Romance|Sci-Fi +124853,Why Man Creates (1968),Animation|Documentary +124855,Moon Zero Two (1969),Sci-Fi +124857,Deception (2013),Action +124859,The Gambler (2014),Crime|Drama|Thriller +124861,Dinosaur 13 (2014),Adventure|Documentary|Drama|Thriller +124863,Chosen Survivors (1974),Horror|Sci-Fi +124867,Justice League: Throne of Atlantis (2015),Action|Animation +124869,Jay And Silent Bob's Super Groovy Cartoon Movie (2013),(no genres listed) +124871,Love and Other Troubles (2012),Comedy|Romance +124887,The Invisible Eye (2011),Drama +124889,The Adventures of Tom Thumb & Thumbelina (2002),Animation +124901,The Ouija Experiment (2011),Horror +124905,"Goodbye, My Fancy (1951)",Comedy|Romance +124913,Union Depot (1932),Comedy|Drama|Romance +124919,The Wind in the Willows (1995),Adventure|Animation|Children|Comedy +124923,The Dolphin: Story of a Dreamer (2009),Animation +124927,Toys in the Attic (2009),Animation|Children|Fantasy|Thriller +124935,Redemption Road (2011),Drama +124943,Murder on a Honeymoon (1935),Comedy|Mystery +124957,"The Foreign Duck, the Native Duck and God in a Coin Locker (2007)",Drama +124963,House Party: Tonight's the Night (2013),(no genres listed) +124965,Miracles (1986),Comedy +124971,This Woman Is Dangerous (1952),Crime|Drama +124973,Special Agent (1935),Crime|Drama +124977,Spanish Judges (2000),Crime|Drama +124983,Impy's Island (2006),Animation|Children|Fantasy +124991,Romance (2008),Romance +124997,King Richard And The Crusaders (1954),Adventure|Drama +125005,This Could Be The Night (1957),Comedy +125019,The Dry Land (2010),Drama +125021,Kidco (1984),Comedy +125029,Splendor (1989),(no genres listed) +125043,The Ice Follies of 1939 (1939),Drama +125045,The Matchmaker (2010),Drama +125049,Virtue (1932),Drama +125051,The Cup (2012),Drama +125059,The Web (1947),Drama|Thriller +125065,The Fuller Brush Girl (1950),Comedy +125067,Waltz of the Toreadors (1962),Comedy +125073,White Cargo (1942),Adventure|Drama +125077,Eddie Izzard: Force Majeure Live (2013),Comedy +125079,Sittin' on a Backyard Fence (1933),(no genres listed) +125081,Mars (1968),Documentary|Sci-Fi +125085,Killer Holiday (2013),Horror|Thriller +125091,The Feminine Touch (1941),(no genres listed) +125095,Topaze (1933),Comedy|Drama +125107,The Hessen Affair (2009),Action|Drama|Thriller +125113,Scene of the Crime (1949),Crime +125125,Pure Country 2: The Gift (2010),Drama|Romance +125133,Prairie Fever (2008),Action|Western +125135,Unstable Fables: Tortoise vs. Hare (2008),Animation|Children|Drama +125141,"Y/N: You Lie, You Die (2012)",Thriller +125143,"Cossacks, The (1928)",Action|Drama|Romance|War +125155,The Pee-Wee Herman Show on Broadway (2011),Comedy +125157,The Spanish Gardener (1956),Drama +125159,Safety Patrol (1998),(no genres listed) +125169,Shadows Over Chinatown (1946),Comedy|Crime|Mystery|Thriller +125173,Tom Sawyer (2011),Adventure +125181,Me and My Gal (1932),Comedy|Drama|Romance +125183,Venus and Serena (2012),Documentary +125185,Nine Days of One Year (1961),Drama|Romance +125189,I Died a Thousand Times (1955),Crime|Drama|Thriller +125193,Yellowstone Kelly (1950),Action|Western +125195,The Last Challenge (1967),Western +125205,TekWar (1994),Sci-Fi +125207,The Prisoner (1955),Drama +125209,Son of Morning (2011),Comedy|Drama +125211,War and Peace (1965),(no genres listed) +125213,Red Heat (1985),Thriller +125221,The Beast of Hollow Mountain (1956),Horror|Sci-Fi|Western +125223,The Woman on Pier 13 (1949),Drama|Thriller +125231,Real (2013),Drama|Sci-Fi +125233,Playdate (2012),(no genres listed) +125237,The Learning Tree (1969),Drama +125241,The Next Voice You Hear.... (1950),Drama +125245,The Great Rupert (1950),Children|Comedy +125249,The Legend of Hell's Gate: An American Conspiracy (2011),Action|Adventure|Western +125255,Multiple Sarcasms (2010),Drama|Romance +125257,A Woman Called Golda (1982),Drama +125263,The Burglar (1957),Crime|Drama +125267,The Bride Wore Red (1937),Comedy|Drama|Romance +125269,Touching Home (2008),Drama +125271,The Roots of Heaven (1958),Adventure|Drama +125273,Tenchu! (1969),(no genres listed) +125275,Richard Pryor: Omit the Logic (2013),(no genres listed) +125277,Station West (1948),Action|Mystery|Romance|Western +125279,The Student Prince (1954),(no genres listed) +125287,Heidi (2005),Children|Drama +125289,Unstable Fables: 3 Pigs & a Baby (2008),Animation|Children +125291,Richard: The Lionheart (2013),Action|Adventure +125305,Opposing Force (1986),(no genres listed) +125307,Kettle of Fish (2006),Comedy|Romance +125309,Winnie Mandela (2013),Drama +125311,My Mom's a Werewolf (1989),Comedy|Horror +125313,Superstar (2012),Comedy +125321,The Lickerish Quartet (1970),Drama|Romance +125323,Shock Treatment (1973),Crime|Drama|Horror +125329,Midnight (1982),Comedy|Horror|Romance +125337,The Lovers (1994),Children|Drama|Fantasy|Romance +125345,Un Piede in paradiso (1991),Comedy +125347,Mandrake (2010),Horror|Sci-Fi|Thriller +125351,Greetings to the Devil (2011),Thriller +125353,In the Line of Duty: The F.B.I. Murders (1988),Action|Crime|Drama +125357,It's My Turn (1980),Comedy|Romance +125359,Lovesick (1983),Comedy|Fantasy|Romance +125365,The Paranoids (2010),Comedy|Drama|Romance +125367,Mission Park (2013),Crime +125377,The Sheriff of Fractured Jaw (1959),(no genres listed) +125381,Silent Partner (2005),Action|Mystery|Thriller +125385,Trust Me (2010),(no genres listed) +125387,Hail Caesar (1994),Comedy +125389,The Gong Show Movie (1980),Comedy +125393,"Ride, Vaquero! (1953)",Western +125397,The Virginian (1946),Romance|Western +125399,The Story of Alexander Graham Bell (1939),Drama +125401,Hansel and Gretel (1987),Children|Fantasy +125403,Phantom Punch (2009),Drama +125405,Hot Saturday (1932),Drama +125409,Robin of Locksley (1996),Adventure|Drama +125411,The Men's Club (1986),Drama +125413,Soul Power (2008),Documentary +125417,Stars and Stripes Forever (1952),Drama +125421,The Gundown (2011),Action|Western +125429,Johnny Skidmarks (1998),Crime|Drama|Mystery|Thriller +125435,The Mark (2012),Action|Thriller +125439,The Last Rites of Ransom Pride (2010),Action|Drama|Western +125441,The Big Mouth (1967),Action|Comedy|Crime +125453,Space Warriors (2013),Adventure|Children|Sci-Fi +125455,Something of Value (1957),Drama +125467,The Ghost of Yotsuya (1959),(no genres listed) +125471,Way... Way Out (1966),Comedy|Sci-Fi +125479,The Unknown (1965),Drama|Thriller +125481,In Cold Blood (1996),Crime +125483,Week-End at the Waldorf (1945),Comedy|Drama|Romance +125489,The River Rat (1984),Adventure|Children|Crime|Drama +125495,The Hound of the Baskervilles (1983),Crime|Horror|Mystery +125497,The Inheritance (2011),Drama|Horror|Thriller +125499,The Trap (1946),Crime|Mystery|Thriller +125501,Voodoo Moon (2006),Drama|Fantasy|Horror +125503,Today We Live (1933),Action|Drama|Romance|War +125505,Restitution (2011),Action|Crime|Mystery|Romance|Thriller +125507,The Tunnel of Love (1958),Comedy|Romance +125509,Razortooth (2007),Action|Horror|Sci-Fi|Thriller +125511,The Legend of Bloody Mary (2008),Horror|Mystery|Thriller +125517,The D.I. (1957),Drama +125521,Walking Tall Part II (1975),Action|Crime|Drama|Thriller +125523,Time Limit (1957),Drama|Mystery|War +125527,Slap Shot 3: The Junior League (2008),Action|Adventure|Comedy +125531,Fun on a Weekend (1947),(no genres listed) +125533,Almost 18 (2012),Comedy|Drama +125535,Fist of Jesus (2012),(no genres listed) +125537,Print the Legend (2014),Documentary +125539,He Who Dares (2014),Action +125541,Anina (2013),Adventure|Animation|Children +125543,Against The Sun (2015),Adventure +125545,The Divine Move (2014),Action|Crime|Drama +125555,Bowery at Midnight (1942),Action|Comedy|Horror +125557,"Devils Hand, The (La main du diable) (1943)",Fantasy|Horror +125563,Tasting Menu (2014),Comedy +125565,Night Will Fall (2014),Documentary +125569,The Amazing Catfish (2013),Comedy|Drama +125571,The Court-Martial of Jackie Robinson,(no genres listed) +125574,The Perils of Pauline (1967),(no genres listed) +125583,Black Magic (1949),Drama|Mystery|Romance +125585,Three Cases of Murder (1955),Mystery +125587,The Fountain of Youth (1958),(no genres listed) +125596,Parade (1974),Children|Comedy +125599,Always for Pleasure (1978),Documentary +125601,Port of Flowers (1943),(no genres listed) +125603,The Living Magoroku (1943),(no genres listed) +125605,Jubilation Street (1943),(no genres listed) +125607,The Army (1944),Drama +125609,Morning for the Osone Family (1946),(no genres listed) +125613,She Was Like a Wild Chrysanthemum (1955),Drama|Romance +125617,Immortal Love (1961),(no genres listed) +125623,That Night's Wife (1930),Drama +125628,Citizen Koch (2013),Documentary +125630,We Still Kill the Old Way (2014),Crime +125632,In Our Garden,(no genres listed) +125634,Giuseppe Makes a Movie (2014),Documentary +125636,Youth of the Son (1952),Drama +125638,The Arrival of Wang (2012),Mystery|Sci-Fi|Thriller +125640,Walker (2012),(no genres listed) +125642,One Step Ahead of My Shadow (1933),(no genres listed) +125644,Amuck! (1972),Drama|Horror|Mystery +125646,Lad: A Dog (1962),(no genres listed) +125652,Season For Assassins (1975),(no genres listed) +125654,Low Down (2014),Drama +125656,"Another Day, Another Time: Celebrating the Music of Inside Llewyn Davis (2013)",Documentary +125658,Margaret (2009),Comedy|Drama|Romance +125661,Paper Planes (2014),Children +125698,Drive (2002),(no genres listed) +125700,Hard Luck Hero (2003),(no genres listed) +125704,Bunny Drop (2011),Comedy +125770,Awaydays (2009),Drama +125774,Double Game (1977),Action|Thriller +125782,Body Fat Index of Love (2012),Comedy +125786,Burning Blue (2013),Drama|Romance|War +125795,Björk: Biophilia Live (2014),Documentary +125836,Those Calloways (1965),Children|Drama +125854,The Diary of Anne Frank (1980),Drama +125856,El Compadre Mendoza (1934),Drama|War +125864,Red Ensign (1934),(no genres listed) +125866,Love and Distrust (2010),Drama|Romance +125868,"Aquí llega Condemor, el pecador de la pradera (1996)",Comedy|Western +125872,El asombroso mundo de Borjamari y Pocholo (2004),(no genres listed) +125874,2012: Ice Age (2011),Action|Adventure|Sci-Fi +125876,FBI: Frikis buscan incordiar (2004),(no genres listed) +125878,Isi & Disi: Amor a lo bestia (2004),(no genres listed) +125882,Red Salute (1935),Comedy|Romance +125884,The Case of the Curious Bride (1935),Comedy|Crime|Drama|Mystery +125886,The Case of the Lucky Legs (1935),Comedy|Crime|Mystery +125888,La bandera (1935),Drama|Romance +125894,Doubting Thomas (1935),Comedy +125896,A Blade in the Dark (1983),Horror|Thriller +125898,The Phantom Light (1935),Mystery|Thriller +125902,Seven Alone (1974),Children|Drama +125904,Pretty Cool (2001),Action|Comedy|Thriller +125906,Ned Rifle (2014),Drama +125908,Time in the Minors (2010),(no genres listed) +125910,Stars Above (2012),(no genres listed) +125912,Not Another Happy Ending (2013),Comedy|Drama|Romance +125914,Mortdecai (2015),Adventure|Comedy|Mystery|Romance +125916,Fifty Shades of Grey (2015),Drama|Romance +125918,Expelled (2014),Comedy +125920,Buffalo Girls (2012),Action +125922,Gregory Go Boom (2013),Comedy +125924,The Periwig-Maker (1999),Animation +125926,Kiwi! (2006),Action|Animation +125928,Santa's Pocket Watch (1980),(no genres listed) +125930,Björk at the Royal Opera House (2002),(no genres listed) +125932,The Fox and the Hare (1973),Animation|Children +125934,Christmas Comes but Once a Year (1936),(no genres listed) +125936,Crac (1981),Animation +125938,Reggie Watts: Why Shit So Crazy? (2010),Comedy +125940,Syrinx (1966),Animation +125942,Curb Dance (2010),(no genres listed) +125944,Desire: The Vampire (1982),Crime|Horror|Thriller +125946,Manson (1973),Documentary +125948,Fright to the Finish (1954),(no genres listed) +125950,Guyana Tragedy: The Story of Jim Jones (1980),Drama +125952,"I Want a Dog for Christmas, Charlie Brown (2003)",Animation|Children|Comedy +125954,Impure Thoughts (1986),Comedy +125956,It's a Bird (1930),(no genres listed) +125958,Stephen Fry In America - New World,(no genres listed) +125960,The Trip to Squash Land (1967),Animation +125962,Charlie Brown's Christmas Tales (2002),Animation|Children|Comedy +125964,Eat (2011),Drama +125966,Garfield's Halloween Adventure (1985),Animation|Children +125968,"It's Christmastime Again, Charlie Brown (1992)",Animation +125970,Halloweentown (1998),Adventure|Children|Comedy|Fantasy +125972,Halloweentown II: Kalabar's Revenge (2001),Adventure|Children|Comedy|Drama|Fantasy +125974,Halloweentown High (2004),Adventure|Children|Comedy|Fantasy +125976,Nocturna Artificialia (1979),Animation +125978,Santa Claus (1898),Sci-Fi +125980,Surprise (1996),(no genres listed) +125982,Trick or Treat (1952),Animation +125984,Vengeance: The Story of Tony Cimo (1986),(no genres listed) +125986,Within the Woods (1978),Horror +125988,100 Years at the Movies (1994),Documentary +125990,Apple Jack (2003),Comedy|Drama +125992,The Butter Battle Book (1989),Animation|Children +125994,Corn on the Cop (1965),(no genres listed) +125996,The Black Devil (1905),Comedy|Fantasy +125998,Halloween is Grinch Night (1977),Animation|Children +126000,Marilyn in Manhattan (1998),(no genres listed) +126002,Rage of Angels (1983),Action|Adventure|Drama|Romance +126004,Rage of Angels: The Story Continues (1986),Drama +126006,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy +126008,Signs (2008),Romance +126010,Queen - Rock Montreal (2007),(no genres listed) +126012,The Fat Albert Halloween Special (1977),Animation +126014,Season's Greetings (1996),Comedy +126016,The Dot and the Line : A Romance in Lower Mathematics (1965),Animation|Children|Comedy +126018,Nantucket Film Festival's Comedy Roundtable (2012),Comedy|Documentary +126020,Rubber Johnny (2005),Animation|Horror +126022,Act Da Fool (2010),(no genres listed) +126024,En rachâchant (1982),(no genres listed) +126026,The Flower (1971),(no genres listed) +126028,Boo to You Too! Winnie the Pooh (1996),(no genres listed) +126030,Isabelle au bois dormant (2007),Animation|Comedy +126032,Betty Boop's Hallowe'en Party (1933),Animation|Comedy|Horror +126034,Halloween (1931),(no genres listed) +126036,Barbie: A Fashion Fairytale (2010),Animation|Children +126038,The Halloween That Almost Wasn't (1979),Children|Comedy +126040,The Mystery of the Leaping Fish (1916),Comedy +126042,The 3 Rs (2011),(no genres listed) +126044,Brutal Relax (2010),Action|Comedy +126046,Franz Kafka's a Country Doctor (2007),Animation|Drama +126048,Pluto's Christmas Tree (1952),Animation|Comedy +126050,Stille Nacht I: Dramolet (1988),Animation +126052,Holiday for Drumsticks (1949),(no genres listed) +126054,The Horseplayer (1990),Drama +126056,Coven (2000),Horror +126058,Rehearsals for Extinct Anatomies (1987),Animation +126060,Suur Tõll (1980),(no genres listed) +126062,We Can Be Heroes (2005),(no genres listed) +126064,Bob's Birthday (1994),(no genres listed) +126066,Broom-Stick Bunny (1956),Animation|Children|Comedy +126068,Summer Heights High (2007),(no genres listed) +126070,Chainsaw Maid (2007),Animation +126072,The Little Matchgirl (2006),Animation +126074,Haunted House (1929),(no genres listed) +126076,How They Get There (1997),(no genres listed) +126078,Istanbul (1985),(no genres listed) +126080,"Hen, his wife (1990)",(no genres listed) +126082,Inside The X-files (1998),Documentary +126084,The Horribly Slow Murderer with the Extremely Inefficient Weapon (2008),Comedy|Horror +126086,Norm MacDonald: Me Doing Standup (2011),Comedy +126088,A Flintstones Christmas Carol (1994),Animation|Children|Comedy +126090,Hedgehog in the Fog (1975),Animation +126092,The Cat's Out (1931),Animation +126094,Claymation Comedy of Horrors (1991),Animation +126096,The Last Farm (2004),Drama +126098,Snowballs (2011),(no genres listed) +126100,"Danger! 50,000 Zombies (2004)",Comedy|Horror +126102,Bouncing Babies (1929),Comedy +126104,Stella: Live in Boston (2009),Comedy +126106,Beastie Boys: Sabotage (1994),(no genres listed) +126108,Diario de un skin (2005),Documentary +126110,The Black Cat (1941),Mystery|Thriller +126120,All About Anna (2005),Comedy|Drama|Romance +126122,Let's Get Those English Girls (1976),Comedy +126124,Archie To Riverdale and Back Again (1990),Comedy +126126,Babette Goes to War (1959),Comedy|War +126128,Belle comme la femme d'un autre (2014),Comedy +126130,Special Delivery (2002),(no genres listed) +126132,Mr. Average (2007),Comedy|Romance +126134,Cutie Honey (2004),Action +126136,"Delphine 1, Yvan 0 (1996)",Comedy +126138,Doomsday Prophecy (2011),Action|Sci-Fi|Thriller +126140,Love Can Seriously Damage Your Health (1997),Comedy|Romance +126142,The Cave of the Golden Rose (1991),Adventure|Children|Fantasy +126144,Human Touch (2005),Drama +126146,King Kelly (2012),Drama +126148,La Bande du drugstore (2002),Drama|Romance +126150,The Slap (1974),Comedy|Drama|Romance +126152,Lahore (2010),Action +126154,La Putain du roi (1990),Drama|Romance +126156,Latitudes (2014),Drama|Romance +126158,Frenchmen 2 (2007),Comedy|Romance +126160,The Last Diamond (2014),Drama +126162,"Le printemps, l'automne et l'amour (1955)",Comedy|Drama +126164,1001 Nights (1990),Adventure|Comedy|Fantasy +126166,Lightspeed (2006),Action|Fantasy|Sci-Fi +126168,Meilleur espoir féminin (2000),(no genres listed) +126170,"Mercredi, folle journée! (2001)",Comedy|Drama +126172,Mr Reliable (1997),(no genres listed) +126174,Ninette (2005),Comedy +126176,Nom de code : Rose (2012),(no genres listed) +126178,Opposite Day (2009),Children|Comedy +126180,Powder Room (2013),Comedy +126182,Shirin in Love (2014),Comedy|Romance +126184,The Christmas Wish (1998),Children|Drama|Romance +126186,The Sex and Violence Family Hour (1983),(no genres listed) +126188,All That... for This?! (1993),Comedy +126190,Who Do I Gotta Kill? (1994),Comedy +126219,Marihuana (1936),Documentary|Drama +126227,Imputazione di omicidio per uno studente (1972),Drama +126233,Seventh Heaven (1993),Comedy|Romance +126235,They Were Five (1936),Drama +126237,Stop Train 349 (1963),Drama +126239,Fährmann Maria (1936),(no genres listed) +126243,"Thank You, Jeeves! (1936)",(no genres listed) +126245,Homework (1989),(no genres listed) +126247,Internes Can't Take Money (1937),Crime|Drama|Romance +126249,Green Light (1937),Drama|Romance +126251,Black Belly of the Tarantula (1971),Horror|Mystery|Thriller +126283,Maid of Salem (1937),Drama +126286,Double Or Nothing (1937),(no genres listed) +126290,Second Honeymoon (1937),Comedy|Romance +126296,I Met Him in Paris (1937),Comedy|Romance +126300,Dance Program (1937),Drama +126305,Les disparus de Saint-Agil (1938),Drama|Mystery +126309,Vessel of Wrath (1938),Drama +126322,Idiot's Delight (1939),Comedy|Drama|Musical|Romance +126325,Invitation to Happiness (1939),Drama|Romance +126335,The Skateboard Kid II (1995),Children|Fantasy +126385,Beyond the Fear (2014),Documentary +126387,Modris (2014),Drama +126389,Deliverance Creek (2014),Drama +126393,Wolves (2014),Action|Horror +126395,The Woodcarver (2012),Drama +126397,The Encounter (2010),Children|Drama +126399,Big Sur (2013),Drama +126401,The Unexpected Love (2014),Comedy +126403,Apostle Peter and The Last Supper (2012),Drama +126405,The Adventures of André and Wally B. (1984),Animation +126407,Face of Terror (2005),Action|Drama|Thriller +126409,The Harmony Game (2011),Documentary +126412,Kamikaze (2014),Drama +126414,Planet Ocean (2012),Documentary +126416,Stalag Luft (1993),Comedy|Drama|War +126418,We'll Never Have Paris (2014),Comedy|Romance +126420,American Heist (2015),Action +126422,The Good Son (2011),Thriller +126424,Miraculum (2014),Drama +126426,Solyaris (1968),Drama|Sci-Fi +126428,Ama lur (Tierra Madre) (1968),Documentary +126430,The Pacific (2010),Action|Adventure|Drama|War +126432,Visitor to a Museum (Posetitel muzeya) (1989),Sci-Fi +126434,The Hyperboloid of Engineer Garin (Giperboloid inzhenera Garina) (1965),Sci-Fi +126436,Cosmic Journey (1935),Sci-Fi +126438,Two: The Story of Roman & Nyro,Documentary|Drama +126482,Strange Magic (2015),Animation|Children|Fantasy|Musical +126510,Paris-Manhattan (2012),Comedy|Romance +126544,The Flying Machine (2011),Adventure|Animation|Children +126546,7 Days in Havana (2012),Drama +126548,"DUFF, The (2015)",Comedy +126550,Tower Block (2012),Thriller +126552,Fort McCoy (2011),Drama|War +126554,Age of Ice (2014),Adventure|Sci-Fi +126558,The Girl with a Pistol (1968),Comedy +126560,Love Steaks (2013),(no genres listed) +126562,The Remaining (2014),Horror|Thriller +126571,Prairie Love (2011),Comedy|Drama +126573,Heathcliff: The Movie (1986),Animation|Comedy +126575,Everly (2014),Action|Thriller +126577,"Daddy, I'm A Zombie (2012)",Animation|Comedy|Fantasy +126579,Zodiac (2014),Sci-Fi +126582,Camarón: When Flamenco Became Legend (2005),Drama +126584,Beyond Outrage (2012),Action +126586,The Mark of Cain (2000),Documentary|Drama +126588,From Zero to Hero (2014),Comedy|Drama|Romance +126591,The Humanoid (1979),Fantasy|Sci-Fi +126593,Kocken (2005),(no genres listed) +126595,Aurora (2012),Romance|Sci-Fi +126597,The Little Drummer Girl (1984),Thriller +126599,The Little Death (2014),Comedy +126693,Pinocchio (2012),Animation|Children +126713,Exterminator 2 (1984),Action +126723,Kenny Begins (2009),Action|Comedy|Sci-Fi +126725,Bitter Sweetheart (2007),Comedy|Drama +126727,Sandor slash Ida (2005),Drama|Romance +126731,Bit by Bit (2002),(no genres listed) +126733,Help! I'm A Fish (2001),Adventure|Animation|Comedy +126735,"Tsatsiki, Morsan och Polisen (1999)",Drama +126737,Dark Dungeons (2014),Drama|Fantasy +126739,Bert - Den siste oskulden (1995),(no genres listed) +126741,En på miljonen (1995),(no genres listed) +126743,Sunes sommar (1993),Comedy +126745,Lotta 2: Lotta flyttar hemifrån (1993),Children +126747,Lotta på Bråkmakargatan (1992),Children +126749,Babar The Movie (1989),Adventure|Animation|Children|Fantasy +126751,Karlsson on the Roof (1974),Children +126753,The Girls (1968),Comedy +126767,The Case of the Bloody Iris (1972),Thriller +126769,Darker Than Night (2014),Horror|Thriller +126771,Uprise (2008),Drama +126773,Story of My Death (2013),Drama +126775,The Blue Room (2014),Crime +126777,Vic+Flo Saw a Bear (2013),Crime|Drama|Thriller +126779,Grandmother (2010),Drama +126781,Our Sunhi (2013),Drama +126783,Two Years at Sea (2011),Documentary +126785,A Spell to Ward Off the Darkness (2013),Documentary +126787,The Last Time I Saw Macao (2012),Documentary|Thriller +126789,When Evening Falls on Bucharest or Metabolism (2013),(no genres listed) +126791,Septien (2011),Comedy|Drama|Mystery +126793,Two Shots Fired (2014),(no genres listed) +126795,Finisterrae (2010),(no genres listed) +126797,The Distance (2014),(no genres listed) +126799,A Gun in Each Hand (2012),Comedy|Romance +126801,Borsalino (1970),Crime|Drama +126803,Finsterworld (2013),Drama +126807,Weekender (2011),Drama +126809,Plot of Fear (1976),Crime|Mystery|Thriller +126811,Bank Shot (1974),Comedy|Crime +126815,Anotherworld (2008),Drama|Romance +126917,Ten Minutes Older (1978),(no genres listed) +126919,Of Horses and Men (2013),Comedy|Drama|Romance +126921,The Fox and the Hound 2 (2006),Adventure|Animation|Children|Comedy +126923,Monsterman (Monsterimies) (2014),Documentary|Drama +126925,Long Hello and Short Goodbye (1999),Comedy|Thriller +126927,The Heart of the World (2000),Drama|Fantasy +126929,Li'l Quinquin,(no genres listed) +126931,Girl with Hyacinths (1950),Drama|Mystery +126933,These Amazing Shadows (2011),Documentary +126935,Garlic Is As Good As Ten Mothers (1980),Documentary +126937,Journey to the Beginning of Time (1955),Adventure|Children|Fantasy +126939,Spend It All (1972),Documentary +126941,Joni's Promise (2005),Comedy +126943,The Man Who Could Cheat Death (1959),Horror|Sci-Fi +126945,Small Roads (2011),(no genres listed) +126947,Carriage to Vienna (1966),Drama|War +126949,Strange Voyage (1964),(no genres listed) +126951,Ivory Tower (2014),Documentary +126953,The Fabulous Baron Munchausen (1962),Adventure|Animation|Fantasy +126955,Light Is Calling (2004),(no genres listed) +126957,The Open Road (1926),Documentary +126959,The Epic of Everest (1924),Documentary +126961,All In This Tea (2007),Documentary +126963,The Private Life of a Cat (1944),(no genres listed) +126965,Land (2010),Documentary +126967,Letter from Siberia (1957),(no genres listed) +126969,Babylon XX (1979),Drama +126971,Carts of Darkness (2008),Documentary +126973,Soundtracker (2010),(no genres listed) +126975,Kamome Diner (2006),(no genres listed) +126977,Gerhard Richter Painting (2012),Documentary +126979,Dream Land (2004),(no genres listed) +126981,The Wayward Girl (1959),Drama +126983,City Zero (1989),Comedy|Drama|Sci-Fi +126985,Remonstrance (1972),(no genres listed) +126987,Bells from the Deep (1993),Documentary +126989,The Gardener (1912),(no genres listed) +126991,The Sea Vultures (1915),Drama +126993,The Girl from the Marsh Croft (1917),(no genres listed) +126997,The Monastery of Sendomir (1920),Drama +126999,1000 Journals (2007),(no genres listed) +127001,Pan (1995),Action|Adventure|Drama|Fantasy|Romance +127003,Documentarian (2013),(no genres listed) +127005,A Year Along the Abandoned Road,(no genres listed) +127007,The Shoe (1998),(no genres listed) +127009,Night Editor (1946),Drama +127011,Under the Flag of the Rising Sun (1972),Drama|Mystery|War +127013,The Devil Thumbs a Ride (1947),Drama|Film-Noir +127015,The Man Who Lived Again (1936),Horror|Sci-Fi +127017,The Man They Could Not Hang (1939),Crime|Horror|Sci-Fi +127019,Line of Sight (2012),Documentary +127021,Rewind This! (2013),Documentary +127023,Ten Little Indians (1987),Crime|Mystery +127025,Josephine (2013),Comedy|Romance +127027,The Land Unknown (1957),Adventure|Fantasy|Sci-Fi +127029,Crazy Thunder Road (1980),Action|Sci-Fi +127031,Pizzas (2012),Drama +127033,"Mother, I Love You (2013)",Drama +127035,Dream Team 1935 (2012),Comedy|Drama +127038,Matthew's Days (1968),Drama +127040,Fantomas (Fantômas) (1964),Adventure|Comedy|Crime|Fantasy +127042,Fantomas Unleashed (Fantômas se déchaîne) (1965),Adventure|Comedy|Crime|Fantasy +127044,Fantomas vs. Scotland Yard (Fantômas contre Scotland Yard) (1967),Adventure|Comedy|Crime|Fantasy +127046,Pursuit to Algiers (1945),Adventure|Crime|Mystery|Romance +127048,The Radio Pirates (2007),Children|Comedy +127050,Megacities (1998),Documentary +127052,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance +127054,Gertie the Dinosaur (1914),Animation|Children|Comedy +127056,Intimidation (1960),Crime|Drama|Mystery +127058,Godspeed You! Black Emperor (1976),Documentary +127060,"Blood, Sweat + Vinyl: DIY in the 21st Century (2011)",Documentary +127062,The Lumière Brothers' First Films (1996),Documentary +127064,Amador (2010),Drama +127066,Art and Craft (2014),Documentary +127068,The Castle of Fu Manchu (1969),Action|Crime|Horror +127070,The Vengeance of Fu Manchu (1967),Action|Crime|Drama|Horror +127072,Lightning Bolt: The Power of Salad (2002),Documentary +127074,Fuck Up (2012),Comedy|Crime|Drama +127076,Defenders of Riga (2007),Action|Drama|War +127080,The Diary of Preston Plummer (2012),Drama|Romance +127082,Oxygen (2009),Drama|Musical +127084,Suicide Room (2011),Drama|Thriller +127086,Is It Easy to be Young? (1986),Documentary|Drama +127088,Suburban Gothic (2014),Comedy|Horror +127090,The Killing Jar (2010),Drama|Thriller +127092,The Kiss of Her Flesh (1968),Horror|Thriller +127094,Kolka Cool (2011),Comedy|Drama +127096,Project Almanac (2015),Sci-Fi|Thriller +127098,Louis C.K.: Live at The Comedy Store (2015),Comedy +127100,Heavy Weather (1995),Comedy +127102,The First Men in the Moon (2010),Sci-Fi +127108,Brooklyn (2015),Comedy|Drama|Romance +127110,Digging for Fire (2015),Drama +127112,Don Verdean (2015),Comedy +127114,The End of the Tour (2015),Drama +127116,Experimenter (2015),Drama +127118,I Am Michael (2015),Drama +127120,Lila & Eve (2015),Drama|Thriller +127122,Last Days in the Desert (2015),Adventure|Drama +127124,I'll See You in My Dreams (2015),Comedy|Drama +127126,Seoul Searching (2015),Comedy|Drama +127128,Mississippi Grind (2015),Drama +127130,Mistress America (2015),Comedy +127132,Zipper (2015),Drama|Thriller +127134,A Walk in the Woods (2015),Adventure|Comedy|Drama +127136,True Story (2015),Drama|Mystery|Thriller +127138,Ten Thousand Saints (2015),Comedy|Drama +127140,Sleeping with Other People (2015),Comedy +127142,Beaver Trilogy Part IV (2015),Documentary +127144,Drunk Stoned Brilliant Dead: The Story of the National Lampoon (2015),Comedy|Documentary +127146,Kurt Cobain: Montage of Heck (2015),Documentary +127148,The Hunting Ground (2015),Documentary +127150,Fresh Dressed (2015),Documentary +127152,Going Clear: Scientology and the Prison of Belief (2015),Documentary +127154,The Mask You Live In (2015),Documentary +127156,Prophet's Prey (2015),Crime|Documentary +127158,Tig (2015),Documentary +127160,In Football We Trust (2015),Documentary +127162,Most Likely to Succeed (2015),Documentary|Drama +127164,"What Happened, Miss Simone? (2015)",Documentary +127166,6 Desires: DH Lawrence and Sardinia (2014),Documentary +127168,Life May Be (2014),Documentary +127170,Here be Dragons (2013),Documentary +127172,A Story of Children and Film (2013),Documentary +127176,The First Movie (2009),Documentary +127178,99 Homes (2014),Drama +127180,"Story of Film: An Odyssey, The (2011)",Documentary +127182,Aloft (2014),Drama +127184,Eden (2014),Drama +127186,Girlhood (2014),Drama +127188,Advantageous (2015),Children|Drama|Sci-Fi +127190,Sidestreet (1988),Documentary +127192,The Bronze (2015),Comedy|Drama +127194,The D Train (2015),Comedy +127196,The Diary of a Teenage Girl (2015),Drama +127198,Dope (2015),Comedy|Drama +127200,I Smile Back (2015),Drama +127202,Me and Earl and the Dying Girl (2015),Drama +127204,The Overnight (2015),Comedy +127206,"People, Places, Things (2015)",Comedy +127208,Results (2015),Comedy|Romance +127210,Songs My Brothers Taught Me (2015),Drama +127212,The Stanford Prison Experiment (2015),Drama|Thriller +127214,"Stockholm, Pennsylvania (2015)",Drama|Thriller +127216,Unexpected (2015),Comedy|Drama +127218,Z for Zachariah (2015),Sci-Fi +127220,The Student (1988),Comedy|Romance +127222,Nothing's All Bad (2010),Drama +127224,Northwest (2013),Action|Crime|Drama +127226,Stations of the Cross (2014),Drama +127228,The Referees (2009),Documentary +127230,The World Forgotten (2011),Adventure|Documentary +127232,The Referee (2013),Comedy +127234,Reality (2012),Comedy|Drama +127236,Amnèsia (2002),Comedy|Crime|Drama +127238,Three-Step Dance (2003),Drama +127240,Pretty Butterflies (2012),Drama +127242,Dangerous Liaisons (2003),Drama|Romance +127244,My Sweet Pepper Land (2013),Drama +127246,Act of Aggression (1975),Crime|Drama +127248,The Auction (2013),Drama +127250,Last Chance (2014),Comedy +127252,The Veil of Twilight (2014),Crime|Fantasy|Mystery +127254,Inbetween Worlds (2014),Drama +127256,The Old Gun (1975),Drama|Thriller|War +127258,The Passerby (1982),Drama +127260,The Things of Life (1970),Drama|Romance +127262,The Count of Monte Cristo (1954),Adventure|Drama|Romance +127264,The Hunchback of Paris (1959),Action|Adventure +127266,In the Basement (2014),Documentary +127268,Project Wild Thing (2013),Adventure|Children|Documentary|Drama +127270,Trojan Eddie (1996),Crime|Drama|Romance +127272,Nobody Knows Anything! (2003),Comedy +127274,Ice Men (2004),Drama +127276,The Invitation (2003),Drama|Horror|Thriller +127278,When the Bough Breaks (1994),Drama|Thriller +127280,Innocent Lies (1995),Drama|Mystery|Thriller +127282,Suppose They Gave a War and Nobody Came? (1970),Comedy|Drama +127284,Niagara Motel (2005),Comedy +127286,Mentor (2006),Drama +127288,Neverwhere (1996),Drama|Fantasy +127290,Animal Room (1995),Drama|Thriller +127292,Zenith (2010),Sci-Fi|Thriller +127294,Estomago: A Gastronomic Story (2007),Drama +127296,Suing the Devil (2011),Comedy|Drama|Thriller +127298,A Pigeon Sat on a Branch Reflecting on Existence (2014),Comedy|Drama +127300,Panda! Go Panda! Rainy Day Circus (1973),Animation|Children +127302,Nine Miles Down (2009),Horror|Mystery|Thriller +127305,Miss Julie (2014),Drama +127307,All Together (2011),Comedy|Drama +127309,Teen Spirit (2011),Comedy|Drama|Fantasy +127311,The Forbidden Room (2015),Comedy|Drama|Mystery|Romance +127313,Evilenko (2004),Crime|Horror|Thriller +127315,Alien Outpost (2014),Action|Sci-Fi|Thriller +127319,The Loft (2014),Thriller +127321,[REC] 4: Apocalypse (2014),Horror|Thriller +127323,Vice (2015),Action|Adventure|Sci-Fi|Thriller +127327,Khan Kluay (2006),Adventure|Animation|Children +127331,The Well (1951),Drama|Film-Noir|Thriller +127341,Longshot (2001),Action|Comedy|Crime|Drama|Romance|Thriller +127371,Masai: The Rain Warriors (2004),Adventure|Drama +127390,Family Guy Presents: Blue Harvest (2007),Animation|Comedy +127419,Sanatorium (2013),Thriller +127433,High School Hellcats (1958),Crime|Drama +127441,Last Days in Vietnam (2014),Documentary|War +127443,Manakamana (2013),Documentary +127445,Saturday Night (2010),Documentary +127449,Hippie Masala - Forever in India (2006),Documentary +127451,A Grain of Truth (2015),Thriller +127453,The Photographer (2014),Drama +127455,Down to Earth (1994),Drama +127484,Karen Cries on the Bus (2011),Drama +127496,Kristin Lavransdatter (1995),Drama|Romance +127498,Private Confessions (1996),Drama +127565,Lost River (2014),Fantasy|Thriller +127567,Landscape Suicide (1987),Crime|Drama +127569,One Way Boogie Woogie (1977),Documentary +127571,Deseret (1995),Documentary +127573,13 Lakes (2004),Documentary +127575,Ruhr (2009),Documentary +127579,Black Venus (2010),Drama +127581,Poetical Refugee (2000),Drama +127583,Chuck Norris vs Communism (2015),Documentary +127585,Fear Clinic (2014),Horror +127587,The Seven Males (1951),Comedy|Western +127590,The Devil with Seven Faces (1971),Mystery|Thriller +127600,Battletruck (1982),Action|Adventure|Sci-Fi +127604,The Glitterball (1977),Children|Sci-Fi +127606,The Questor Tapes (1974),Sci-Fi +127608,The UFO Incident (1975),Drama|Romance|Sci-Fi +127610,Average Italian (2015),Comedy +127614,Lure of the Sila (1949),Drama +127622,The House of Intrigue (1956),Drama|War +127626,Under Ten Flags (1960),Drama|War +127628,Chino (1973),Action|Drama|Western +127630,The Legend of Awesomest Maximus (2011),Action|Comedy +127632,The Shuttered Room (1967),Horror +127634,Sebastian (1968),Drama|Romance +127636,The Strange Affair (1968),Crime|Drama +127640,I Start Counting (1970),Thriller +127642,Madame Sin (1972),Thriller +127644,The Trial of Lee Harvey Oswald (1977),Drama +127650,Party Girl (2014),Drama +127652,We Are Young. We Are Strong. (2014),Drama +127654,Relationship Status: It's Complicated (2014),Comedy|Romance +127656,Mr. Kinky (1968),Comedy +127658,Calculator (2014),Sci-Fi +127665,Love in the City (1953),Drama|Romance +127667,Riviera (1954),Comedy|Drama +127669,Guendalina (1957),Comedy +127681,Come Have Coffee with Us (1970),Comedy +127690,The Bronte Sisters (1979),Drama +127701,In the Name of My Daughter (2014),Drama +127721,Yeti: The Giant of the 20th Century (1977),Adventure|Fantasy +127724,The Retrieval (2013),Drama|Western +127726,Daughters of Satan (1972),Horror +127728,Back Soon (2007),Drama|Romance +127831,Tintin and I (2003),Documentary +127833,Reach Me (2014),Drama +127837,Paz! (2002),Comedy +127843,Antarctica (1983),Adventure|Drama +127845,"Back to the Garden, Flower Power Comes Full Circle (2009)",Documentary +127851,Incredible Rocky Mountain Race (1977),Drama +127857,What the Day Owes the Night (2012),Drama|Romance +127859,Scourge (2008),Horror|Mystery|Sci-Fi +127861,The Last Gladiators (2011),Documentary +127863,Project Viper (2002),Action|Horror|Sci-Fi|Thriller +127867,Hardwired (2009),Action|Sci-Fi +127873,Jay Mohr: Funny for a Girl (2012),Comedy +127875,The Gold Spinners (2013),Documentary +127877,Kawa (2010),Drama +127879,Adjust Your Tracking (2013),Documentary +127881,Addicted to Plastic (2008),Documentary +127957,Min så kallade pappa (2014),(no genres listed) +127974,100 Bloody Acres (2012),Comedy|Horror +127987,The Father of a Soldier (1964),Drama|War +127991,"Blue Mountains, or Unbelievable Story (1984)",(no genres listed) +127993,Evenings on a Farm near Dikanka (1961),Comedy|Fantasy|Romance +127995,The Dead Season (1968),Thriller|War +127997,Dauria (1972),Drama +128001,The Green Van (1983),Adventure|Comedy|Drama +128025,Naked Gun (1956),Western +128029,Screwballs (1983),Comedy +128031,Loose Screws (1985),Comedy +128071,Sartana the Gravedigger (1969),Mystery|Western +128085,Light the Fuse... Sartana Is Coming (1970),Western +128089,Kevin Hart: I'm a Grown Little Man (2009),Comedy +128091,Craig Ferguson: A Wee Bit o' Revolution (2009),Comedy +128093,"Bo Burnham: Words, Words, Words (2010)",Comedy +128095,Kathleen Madigan: Gone Madigan (2010),Comedy +128097,Jim Norton: American Degenerate (2013),Comedy +128099,Jim Jefferies: BARE (2014),Comedy +128143,When Good Ghouls Go Bad (2001),Children|Comedy|Fantasy +128149,Not Safe for Work (2014),Thriller +128151,Il piccolo diavolo (1988),Comedy|Fantasy|Romance +128153,Killing Kennedy (2013),Drama +128157,People in Places (2013),Comedy|Drama +128165,Scooby-Doo in Arabian Nights (1994),Animation|Children +128167,Beer for My Horses (2008),Action|Comedy +128169,Beethoven's 3rd (2000),Children|Comedy +128171,Beethoven's 5th (2003),Adventure|Children|Comedy +128173,Beethoven's Big Break (2008),Children|Comedy +128175,Beethoven's Treasure Tail (2014),Action|Adventure|Children +128177,Beethoven's Christmas Adventure (2011),Children|Comedy +128181,Cody the Robosapien (2013),Adventure|Children|Drama|Sci-Fi +128183,Contest (2013),Children|Drama +128187,Freedom Song (2000),Drama +128189,Ricco (1973),Action|Crime|Drama|Thriller +128195,Griffin and Phoenix (1976),Drama +128197,Hard Promises (1991),Comedy|Romance +128199,Harry & Son (1984),Drama +128201,Hercules (2005),Action|Adventure|Fantasy +128203,"Lightning, the White Stallion (1986)",Adventure|Children +128209,Madison Avenue (1962),Drama +128215,Pulse (1988),Horror|Sci-Fi|Thriller +128227,Shadow (2010),Horror|Thriller +128231,Shadow (1971),Comedy|Drama|Fantasy|Romance +128233,St. Louis Blues (1958),Drama +128235,Stormy Weather (1943),Comedy|Documentary|Drama +128237,Stormy Weather (2003),(no genres listed) +128239,The Adventures of Hercules (1985),Comedy|Fantasy +128245,Murder by Phone (1982),Horror|Mystery|Thriller +128247,The Corsican Brothers (1941),Adventure +128249,The Great Scout & Cathouse Thursday (1976),Action|Comedy|Western +128251,The Heavenly Kid (1985),Comedy|Fantasy|Romance +128255,The Plague (2006),Documentary|Horror|Thriller +128269,Tyler Perry's A Madea Christmas (2011),Comedy +128273,Inseparable (2011),Comedy|Drama|Mystery|Thriller +128277,Break-in (1939),Comedy +128279,Sylvia and the Ghost (1946),Comedy|Fantasy|Romance +128283,The Red Inn (1951),Comedy|Crime +128287,The Red and the Black (1954),Drama +128297,The Oldest Profession (1967),Comedy|Drama +128301,Jungle Fighters (1961),Drama|War +128303,Austin High (2011),Comedy +128305,They All Lie (2009),Drama +128308,The Princess of Egypt (2013),Drama +128316,"The Tree, the Mayor and the Mediatheque (1993)",Comedy +128318,Charlie Victor Romeo (2013),Documentary|Drama|Thriller +128320,Monty Python: Almost the Truth - Lawyers Cut (2009),Comedy|Documentary +128322,Super Duper Alice Cooper (2014),Documentary +128324,Lunopolis (2009),Sci-Fi +128327,The Mayor of Casterbridge (2003),Drama +128356,Beck - Öga för öga (1998),(no genres listed) +128358,Uuno in Spain (1985),Comedy +128360,The Hateful Eight (2015),Western +128362,Burn Paris Burn (2009),Animation|Fantasy|Mystery +128366,Patton Oswalt: Tragedy Plus Comedy Equals Time (2014),Comedy +128369,The Anderssons in Greece: All Inclusive (2012),Children|Comedy +128371,Pororo: The Racing Adventure (2013),Animation +128379,Emergency Squad (1974),Action|Thriller +128381,Mark of the Cop (1975),Crime|Drama|Romance +128383,Mark Shoots First (1975),(no genres listed) +128385,La Legge Violenta Della Squadra Anticrimine (1976),Crime +128387,The Last Round (1976),Action|Thriller +128389,The .44 Specialist (1976),Action +128391,Destruction Force (1977),Crime +128393,Highway Racer (1977),(no genres listed) +128395,The Iron Commissioner (1978),(no genres listed) +128397,Magnum Cop (1978),Thriller +128399,Un Poliziotto Scomodo (1978),Action|Crime|Thriller +128401,Hunted City (1979),(no genres listed) +128425,Stray Dogs (2014),Drama +128427,Super Bitch (1973),Action +128429,What Have You Done to Solange? (1972),Crime +128433,Goodbye and Amen (1978),(no genres listed) +128435,A Man on His Knees (1979),Thriller +128437,L'avvertimento (1980),Crime +128439,Point and Shoot (2014),Documentary +128441,Sea Fog (2014),Drama +128443,La petite reine (2014),Drama +128445,"Legend of Lizzie Borden, The (1975)",Drama +128447,Little Accidents (2014),Drama +128476,Counselor at Crime (1973),Crime +128478,A Christmas Kiss (2011),Romance +128488,Wild Card (2015),Action|Crime|Drama|Thriller +128490,Flow (2014),Drama +128504,Lasa y Zabala (2014),(no genres listed) +128506,Rent-a-Cat (2012),Comedy|Drama +128508,Valley Of Flowers (2006),Adventure|Drama|Romance +128510,Attila Marcel (2013),Comedy|Drama +128512,Paper Towns (2015),Adventure|Mystery|Romance +128514,We Cause Scenes (2014),(no genres listed) +128516,Sacred Heart (2005),(no genres listed) +128518,The Wonders (2014),Drama +128520,The Wedding Ringer (2015),Comedy +128530,Marilyn: The Untold Story (1980),Documentary +128534,Naan Kadavul (2009),Action|Drama|Mystery +128536,Üvegtigris (2001),Comedy +128538,My Mistress (2014),Drama|Romance +128540,The Gruffalo's Child (2011),Adventure|Animation|Children|Fantasy +128542,Wyrmwood (2015),Action|Horror|Sci-Fi +128544,Hits (2014),(no genres listed) +128546,Brothers: The Return (2006),Crime|Drama|Thriller +128548,Sällskapsresan II - Snowroller (1985),Comedy +128550,SOS - en segelsällskapsresa (1988),Comedy +128552,Jönssonligan - Den perfekta stöten (2015),Action|Adventure|Comedy +128554,Ego (2013),Drama +128556,Jönssonligan får guldfeber (1984),Comedy +128558,Jönssonligan dyker upp igen (1986),Comedy +128560,Jönssonligan på Mallorca (1989),Comedy +128562,Jönssonligan & den svarta diamanten (1992),Comedy +128564,Jönssonligans största kupp (1995),Comedy|Crime +128566,Jönssonligan spelar högt (2000),Comedy +128568,Summer House (2013),Drama +128570,Alla älskar Alice (2002),(no genres listed) +128572,Nils Karlsson Pyssling (1990),Children +128574,Studentfesten (2013),Comedy +128576,Kvarteret Skatan reser till Laholm (2012),Comedy +128578,Once in a Lifetime (2000),Comedy +128580,Rånarna (2003),Action|Crime|Thriller +128582,Kommissarie Späck (2010),Comedy +128584,"Svensson, Svensson - I nöd och lust (2011)",Comedy +128586,10 000 timmar (2014),Comedy +128588,Lilla Jönssonligan och Cornflakeskuppen (1996),Children|Comedy +128590,Lilla Jönssonligan på styva linan (1997),(no genres listed) +128592,The Boy Next Door (2015),Mystery|Thriller +128594,Boy Meets Girl (2015),Comedy|Drama|Romance +128596,Let My Puppets Come (1976),Comedy +128598,The Adventure of Faustus Bidgood (1986),Comedy +128600,John Doe: Vigilante (2014),Crime|Thriller +128601,Hearty Paws (2006),Adventure|Drama +128604,Knight of Cups (2015),Drama +128606,45 Years (2015),Drama +128608,Diary of a Chambermaid (2015),Drama +128610,Ixcanul Volcano (2015),(no genres listed) +128612,Body/Cialo,Comedy|Drama|Mystery +128614,Nobody Wants the Night (2015),Drama +128616,As We Were Dreaming (2015),(no genres listed) +128618,Cloud 9 (2008),Drama|Romance +128620,Victoria (2015),(no genres listed) +128622,Heavenly Forest (2006),Drama|Romance +128624,Petting Zoo (2015),(no genres listed) +128626,The Golden Dream (2013),Drama +128628,Ainoat Oikeat (2013),Comedy +128632,Home Sweet Hell (2015),Comedy|Drama +128634,Invisible Ghost (1941),Action|Horror|Mystery|Thriller +128642,Everybody Wins (1990),Drama|Mystery|Thriller +128648,Jamie Marks Is Dead (2014),Drama|Thriller +128656,Slam Dance (1987),Thriller +128661,The Man Who Wouldn't Die (1994),Crime|Drama|Thriller +128665,Shepherd (1999),Sci-Fi +128669,Wild Geese II (1985),Action +128671,Timbuktu (2014),Drama +128673,Casting Couch (2013),(no genres listed) +128675,Hollow Point (1996),Action|Comedy|Thriller +128677,Zeder (1983),Horror +128679,The Year Without a Santa Claus (1974),Animation|Children +128681,From Morn to Midnight (Von morgens bis Mitternacht) (1922),Crime|Drama +128684,Artifact (2012),Documentary +128686,Sputnik (2013),(no genres listed) +128688,Kolmistaan (2008),Drama|Romance +128690,Adult Camp (2015),Comedy +128693,Expecting a Miracle (2009),Drama +128695,The Dark Valley (2014),Western +128703,Standing Ovation (2010),Children|Comedy +128711,Green Ice (1981),Adventure|Romance +128715,Eloise at the Plaza (2003),Children|Comedy|Mystery +128717,One Last Hug (2014),Documentary +128721,Vesna va veloce (1996),Drama +128723,James Dean (2001),Drama +128725,Eloise at Christmastime (2003),Children|Comedy|Drama +128727,Bizarre (2015),(no genres listed) +128734,Polskie gówno,Comedy|Musical +128736,I'm Here (2010),Drama +128738,Rigoletto (1993),Drama +128740,Closure (2013),Documentary +128758,Judge Fayard Called the Sheriff (1977),Crime|Drama +128766,The Assassination (1972),(no genres listed) +128768,Angel's Leap (1971),Crime +128770,Cran d'arrêt (1970),Crime|Mystery|Thriller +128792,The Joy of Living (1961),Comedy +128810,Scandali nudi (1968),(no genres listed) +128812,Drew: The Man Behind the Poster (2013),Documentary +128826,Nick the Sting (1976),Action|Crime|Thriller +128830,Plastic Bag (2009),Drama +128832,The Last Five Years (2014),Comedy|Drama|Musical|Romance +128834,Naked (2000),Comedy +128836,The Ghosts in Our Machine (2013),Documentary +128838,Crimson Peak (2015),Horror +128842,Dragonheart 3: The Sorcerer's Curse (2015),Action|Adventure|Fantasy +128844,12:01 PM (1990),Sci-Fi +128846,An Evening with Robin Williams (1982),Comedy +128848,The Big One: The Great Los Angeles Earthquake (1990),Drama +128850,Bride of Boogedy (1987),Adventure|Children|Drama|Western +128852,Chris Rock: Bigger & Blacker (1999),Comedy +128854,Chris Rock: Bring the Pain (1996),Comedy +128856,Crockdale (2011),Drama +128858,Wasteland (1960),Drama +128860,Beau Brummell: This Charming Man (2006),Drama +128862,Casanova (2005),Comedy|Drama|Romance +128864,Four Sahibjade (2014),Animation +128866,Queen of the Mountains (2014),Action|Drama +128868,The Chaos Class Failed the Class (1976),Comedy +128870,Yesterday (1988),Drama +128872,Love is God (2003),Adventure|Comedy|Drama +128874,The Moromete Family (1987),Drama +128876,"Saban, Son of Saban (1977)",Comedy|Crime|Mystery +128878,1 (2014),Action|Mystery|Romance +128880,Bey Yaar (2014),Children|Comedy|Drama +128886,Love at the Top (1974),Comedy|Drama +128898,Life's a Breeze (2013),Comedy|Drama +128900,The Natural Love (1996),Documentary +128902,The Forgotten Space (2010),Documentary +128904,"Runner from Ravenshead, The (2010)",Children +128906,Plato's Academy (2009),Comedy|Drama +128908,Cloudburst (2011),Adventure|Comedy|Drama +128910,"One-Way Trip to Antibes, A (2011)",Drama +128912,Mike Birbiglia: My Girlfriend's Boyfriend (2013),Comedy +128914,Tom Segura: Completely Normal (2014),Comedy +128916,The Indifferent Beauty (1957),(no genres listed) +128918,Mike Birbiglia: What I Should Have Said Was Nothing (2008),Comedy +128920,Heads (1994),Comedy|Crime +128922,Heckler (2007),Comedy|Documentary +128924,The 'High Sign' (1921),Comedy +128928,Wild Honey (1972),Drama +128930,"Ilsa, Harem Keeper of the Oil Sheiks (1976)",Action|Thriller +128942,Hollywood Between Paranoia and Sci-Fi. The Power of Myth (2011),Documentary +128944,"Honey, We Shrunk Ourselves (1997)",Action|Adventure|Children|Comedy|Sci-Fi +128946,Hotel Hell Vacation (2010),Comedy +128948,"Standing Aside, Watching (2013)",Drama +128950,Kinetta (2005),Drama +128952,House IV (1992),Fantasy|Horror|Thriller +128954,I Love Sarah Jane (2008),Horror|Romance +128960,Sugarbaby (1985),Comedy +128964,Mahler on the Couch (2010),Drama +128966,Gamera vs. Zigra (1971),Action|Adventure|Sci-Fi +128968,Stitch! The Movie (2003),Animation|Children|Comedy +128971,Phantom Pain (2009),Drama +128973,The Invisible Frame (2009),Documentary +128975,Hot Tub Time Machine 2 (2015),Comedy|Sci-Fi +128977,"She No Longer Talks, She Shoots (1972)",Comedy +128981,Music for One Apartment and Six Drummers (2001),Comedy +128985,The Stone Council (2006),Adventure|Crime|Drama|Fantasy|Mystery|Thriller +128987,Lascars (2009),Animation|Comedy +128989,The French Kissers (2009),Comedy +128991,Johnny Express (2014),Animation|Comedy|Sci-Fi +129003,Up in the Wind (2013),Comedy +129005,Lovestruck: The Musical (2013),Comedy|Fantasy|Musical|Romance +129009,"Getting Go, the Go Doc Project (2013)",Drama +129011,Eddie Izzard: Glorious (1997),Comedy +129013,Eddie Izzard: Circle (2002),Comedy +129015,Secrets of Eden (2012),Drama|Mystery|Thriller +129017,The Man in the Orange Jacket (2014),Horror|Mystery|Thriller +129021,Perez. (2014),Crime|Drama|Thriller +129030,The Coven (2015),Fantasy|Horror +129032,Sense & Sensibility (2008),Drama|Romance +129034,Serving Life (2011),Documentary +129036,People of the Wind (1976),Documentary +129042,A Reflection of Fear (1973),Horror +129044,"Ilsa, the Wicked Warden (1977)",Drama|Horror +129046,Love Letters of a Portuguese Nun (1977),Adventure|Drama|Horror +129052,Women in Cellblock 9 (1978),(no genres listed) +129056,Lost and Found (1979),(no genres listed) +129060,The Iguana With The Tongue of Fire (1971),Drama|Horror|Mystery +129064,Joanna (2013),Documentary +129066,Our Curse (2014),Documentary +129068,Banklady (2013),Action|Crime|Drama|Romance +129078,Tokyo Fiancée (2015),(no genres listed) +129080,La montaña rusa (2012),Comedy|Romance +129183,The Song (2014),Drama|Romance +129185,The Testimony (1946),(no genres listed) +129187,Lost Youth (1948),(no genres listed) +129189,The Sea That Thinks (2000),(no genres listed) +129191,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi +129193,Memphis (2013),(no genres listed) +129195,Cinderella (2011),Drama|Romance +129197,Thicker than Water (2005),Drama +129199,How to Fall in Love (2012),Comedy|Romance +129201,The Time Being (2012),Mystery +129227,Out of Nature (2014),(no genres listed) +129229,Northmen - A Viking Saga (2014),Action|Adventure +129231,Reflections (2008),Crime|Thriller +129233,Believe Me (2014),Comedy|Drama +129235,Les Invisibles (2012),Documentary +129237,J.D.'s Revenge (1976),Action|Thriller +129239,The Monkey Hustle (1976),Action +129241,Tis kakomoiras (1963),Comedy +129243,Afstiros katallilo (2008),Comedy +129245,Loaf and Camouflage (1984),Comedy +129248,Exhibition (2013),Drama +129250,Superfast! (2015),(no genres listed) +129264,Nocturne Indien (1989),Drama +129268,Fort Saganne (1984),Drama|War +129274,Police Python 357 (1976),Thriller +129285,"Do-Deca-Pentathlon, The (2012)",Comedy +129289,Adios Carmen (2013),Drama +129291,Zero (2012),Drama +129293,Bandaged (2009),Thriller +129295,A Gun for Jennifer (1997),Crime|Drama|Thriller +129299,Effie Gray (2014),Drama +129303,Camp (2013),Drama +129305,Pretty Things (2001),Drama +129307,Wu yen (2001),Comedy|Fantasy +129309,Sexual Predator (2001),Thriller +129311,Broken Bridges (2006),Drama +129313,Reality (2014),Comedy +129317,One on Top of the Other (1969),Mystery|Thriller +129329,Rudeness (1975),Crime|Drama +129333,Julia (2014),Horror|Thriller +129335,A Summer in La Goulette (1996),Comedy|Drama +129337,Schtonk! (1992),Comedy +129340,"Norte, the End of History (2013)",Drama +129342,Han Gong-ju (2013),Drama +129344,Hysteria: The Def Leppard Story (2001),Drama +129346,"Package, The (2012)",Action +129348,A Short History of Decay (2014),Comedy +129350,Hansel & Gretel Get Baked (2013),Comedy|Horror +129352,Freeheld (2007),Documentary +129354,Focus (2015),Comedy|Crime|Drama|Romance +129358,The Gamers (2002),Adventure|Comedy|Fantasy +129360,Garage Sale Mystery (2013),Drama +129362,Merchants of Doubt (2014),Documentary +129364,Every Thing Will Be Fine (2015),Drama +129366,The Adopted (2011),Drama +129370,"SpongeBob Movie: Sponge Out of Water, The (2015)",Adventure|Animation|Children|Comedy +129372,Demonic (2015),Horror|Thriller +129378,What Have They Done to Your Daughters? (1974),Mystery|Romance|Thriller +129386,You Die... But I Live (1967),Action|Western +129389,Heavy Petting (1989),Documentary +129391,If You Don't Stop It... You'll Go Blind!!! (1975),Comedy +129393,In God We Teach (2011),Documentary +129395,Into the Deep (1994),Documentary|IMAX +129397,Marvel One-Shot: Item 47 (2012),Action|Fantasy|Sci-Fi +129399,Jim Carrey: Unnatural Act (1991),Comedy|Documentary +129401,Kevin Smith: Sold Out - A Threevening with Kevin Smith (2008),Comedy|Documentary +129403,Lady Dragon (1992),Action|Drama +129405,Tomie: Unlimited (2011),Horror +129407,Male Domination (2009),Documentary +129409,Foon (2005),Comedy +129411,The Confessions of Bernhard Goetz (1987),Crime|Documentary +129413,In the Name of the Law (1949),Drama +129415,The Magic Flute (2006),Drama|Musical|Romance +129417,Four Ways Out (1951),Crime|Drama +129419,The Facts of Murder (1959),Crime|Drama +129421,Jealousy (1953),Drama +129425,"Throw Away Your Books, Rally in the Streets (1971)",Drama +129428,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama +129430,Murder on Monday (1952),Crime|Drama|Mystery +129432,Love and Bullets (1979),Crime|Drama +129435,Piggy (2012),Thriller +129437,Ugly (2013),Mystery|Thriller +129439,Personal Tailor (2013),Comedy|Drama +129443,Thank You a Lot (2014),Drama +129445,The Party (1990),Drama +129447,Legalese (1998),Crime|Drama|Romance +129449,Little Sister (1992),Comedy +129451,Ingenious (2009),Comedy|Drama|Romance +129454,JFK: The Smoking Gun (2013),Documentary +129456,The Legend of Bloody Jack (2007),Horror +129460,Charleston (1977),Comedy +129466,The Immortal Bachelor (1975),Comedy|Drama|Mystery +129472,The Protagonists (1968),Drama +129474,Bachelor Party Vegas (2006),Adventure|Comedy +129476,A Fugitive from the Past (1965),Crime|Drama|Mystery +129478,A Blank on the Map (1971),Documentary +129490,Twins of Evil (1971),Horror +129506,Sherlock Holmes and the Masks of Death (1984),Mystery +129510,Vuonna 85 (2013),Comedy +129512,Teen Spirit (2007),Comedy +129514,George Carlin: It's Bad for Ya! (2008),Comedy +129516,Poison (1951),Comedy +129518,Forgive Me (2006),Comedy +129520,Papa (2005),Comedy|Drama +129522,Letters from a Killer (1998),Crime|Drama|Mystery|Thriller +129524,Je m'appelle Elisabeth (2006),(no genres listed) +129526,The Color of Milk (2004),Comedy|Drama +129528,Repatriation (2006),Documentary +129530,Slingshot Hip Hop (2008),(no genres listed) +129532,Island (2011),Drama|Mystery|Thriller +129534,Parked (2010),Drama +129536,Code Name Coq Rouge (1989),(no genres listed) +129555,So Ends Our Night (1941),Drama|War +129640,66 Scenes From America (1982),Documentary +129644,Jimi Hendrix: Hear My Train A Comin' (2013),Documentary +129646,Kill a Rat (1977),Crime|Drama|Mystery +129651,The Third Reich: The Rise & Fall,(no genres listed) +129653,Ismael (2013),Drama +129657,Tracers (2015),Action +129659,"McFarland, USA (2015)",Drama +129661,A Black Ribbon for Deborah (1974),(no genres listed) +129667,We Always Lie to Strangers (2013),(no genres listed) +129669,Kids for Cash (2014),Documentary|Thriller +129671,Bomber (2009),Comedy|Drama +129673,Missionary (2013),Drama|Thriller +129675,The Last Wolf (2015),Adventure +129677,Urban Warriors (1987),(no genres listed) +129699,Arnold (1973),Comedy|Horror +129701,The Aztec Mummy Against the Humanoid Robot (1958),Adventure|Horror|Sci-Fi +129703,The Forgotten Woman (2008),Documentary +129705,My Own Man,(no genres listed) +129707,The Lazarus Effect (2015),Horror|Thriller +129709,The Walking Hills (1949),Western +129713,Assa (1987),Crime|Drama +129715,Los Flamencos (2013),Comedy +129717,My Best Friend's Wife (1998),Comedy +129719,That's Life (1998),Comedy +129721,Chiedimi se sono felice (2000),Comedy|Drama +129723,Cose da pazzi (2005),(no genres listed) +129737,Unfinished Business (2015),Comedy +129739,Bogowie (2014),Drama +129741,Mutantes (2009),Documentary +129749,The Connection (2014),Action|Crime|Thriller +129751,The Beehive (1982),Drama +129763,Street People (1976),Action|Thriller +129767,The Police Serve the Citizens? (1973),Action|Crime +129769,Covert Action (1978),(no genres listed) +129771,Jacky in the Kingdom of Women (Jacky au royaume des filles) (2014),Comedy +129773,Soulless (2012),Comedy|Drama +129775,Arc (2006),Drama|Mystery|Thriller +129777,Chronic Town (2010),Action|Drama|Thriller +129779,Ghost in the Shell Arise - Border 1: Ghost Pain (2013),Action|Animation|Sci-Fi +129781,About Alex (2014),Drama +129784,Xuxa in Crystal Moon (1990),Children|Comedy|Romance +129786,Dhobi Ghat (2011),Drama +129788,Raanjhanaa (2013),Drama|Romance +129812,New Scenes from America (2002),Documentary +129814,The Adventurers (1970),Action|Adventure|Drama +129816,The Voice of the Moon (1990),Adventure|Comedy|Drama +129818,Whitey: United States of America v. James J. Bulger (2014),Crime|Documentary +129820,Spare Parts (2015),Drama +129822,Bikes vs Cars (2015),Documentary +129826,LEGO DC Comics Super Heroes: Justice League vs. Bizarro League (2015),Action|Adventure|Animation|Children +129830,Animals United (2011),Animation|Children|Comedy +129832,Impy's Wonderland (2008),Adventure|Animation|Children|Fantasy +129834,Tom and Jerry: The Lost Dragon (2014),Animation|Children|Comedy +129836,The Voyage Across the Impossible (1904),Adventure|Fantasy|Sci-Fi +129838,Capturing Mary (2007),(no genres listed) +129841,Floating Skyscrapers (2014),Drama|Romance +129843,Plastic Paradise: The Great Pacific Garbage Patch (2013),Documentary +129845,Falcon Rising (2014),Action|Adventure +129847,Somewhere Under the Broad Sky (1954),(no genres listed) +129849,Old Man Drinking a Glass of Beer (1898),(no genres listed) +129851,Dickson Greeting (1891),(no genres listed) +129853,To Write Love on Her Arms (2015),Drama +129855,Lights Out (2010),Drama|Mystery|Thriller +129857,Bright Days Ahead (2013),Drama|Romance +129859,Mardock Scramble: The Second Combustion (2011),Animation|Sci-Fi +129871,"My Wife, A Body to Love (1973)",(no genres listed) +129873,Gardenia (1979),Crime +129875,Pigs with a P.38 (1978),(no genres listed) +129877,"Clap, You're Dead (1974)",(no genres listed) +129879,Orders Signed in White (1974),(no genres listed) +129881,Il cappotto di legno (1981),(no genres listed) +129883,Il fiore dai petali d'acciaio (1973),Thriller +129885,Le ultime ore di una vergine (1972),(no genres listed) +129887,Moving Alan,(no genres listed) +129889,Papusza (2013),Drama +129905,The Floating Castle (2012),Comedy|Drama +129907,Familiar Ground (2011),Comedy +129909,Club Sandwich (2013),Comedy +129911,Playing (2007),Documentary +129913,Rings (2005),Horror|Thriller +129915,Butterflies Have No Memories (2009),(no genres listed) +129917,The Dependent (1969),(no genres listed) +129919,Nazareno Cruz and the Wolf (1975),(no genres listed) +129921,Bestiaire (2012),Documentary +129923,Carcasses (2009),Documentary +129925,El Escarabajo de Oro (2014),(no genres listed) +129927,Independencia (2009),Drama +129929,Autohystoria (2007),(no genres listed) +129931,La Morte Rouge (2006),(no genres listed) +129933,Sacro GRA (2013),Documentary +129935,Gimme the Loot (2013),Drama +129937,Run All Night (2015),Action|Crime|Drama|Thriller +129939,Event 15 (2013),Mystery|Thriller +129941,The Killers (1956),Crime +129945,Refuge (2012),Comedy|Drama|Romance +129947,Melody (1971),Drama|Romance +129949,Assassin (2015),Crime|Thriller +129951,Rich Hill (2014),Documentary +129958,Our Vinyl Weighs a Ton: This Is Stones Throw Records (2013),Documentary +129978,Mission Bloody Mary (1965),Adventure +129980,Password: Uccidete agente Gordon (1966),(no genres listed) +129994,The Sinful Nuns of Saint Valentine (1974),Horror +129996,One Man Against the Organization (1975),(no genres listed) +130016,"Lodger, The (1944)",Crime|Horror|Mystery|Thriller +130034,Stand by Me Doraemon (2014),Animation|Children|Drama|Fantasy +130036,Saints and Soldiers: The Void (2014),Action|Drama|War +130038,Little Deaths (2011),Horror +130040,Mo (1983),Horror +130042,Found (2012),Drama|Horror|Thriller +130044,Late Phases (2014),Drama|Horror +130046,Thanatomorphose (2012),Horror +130050,Digging Up the Marrow (2014),Drama|Fantasy|Horror|Mystery|Thriller +130052,Clown (2014),Drama|Horror +130054,Pauline détective (2012),Comedy +130056,Kingdom of Shadows (2015),Documentary +130058,Des roses en hiver (2014),Drama +130060,Des fleurs pour Algernon (2006),(no genres listed) +130062,Darling (2007),Drama +130064,Memory Lane (2010),Drama +130066,Camille Rewinds (2012),Comedy|Romance +130069,Road Hard (2015),Comedy +130071,Nymph (2014),Fantasy|Horror +130073,Cinderella (2015),Children|Drama|Fantasy|Romance +130075,Frozen Fever (2015),Adventure|Animation +130077,Lost for Life (2013),Crime|Documentary +130079,Enquiring Minds: The Untold Story of the Man Behind the National Enquirer (2014),Documentary +130081,Our Summer in Provence (2014),Comedy|Drama +130083,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller +130085,The Drop Box (2014),Documentary +130087,The Cobbler (2015),Comedy|Drama|Fantasy +130089,Crazy Beautiful You (2015),(no genres listed) +130097,The Angels Wash Their Faces (1939),Drama|Romance +130101,Beloved Enemy (1936),Drama|Romance +130103,Blue Collar Comedy Tour: One for the Road (2006),Comedy +130107,Carry On Cowboy (1966),Comedy|Western +130116,Dead End (2012),Thriller +130128,Dead on Course (1952),Crime|Drama|Thriller +130146,Heat Wave (2011),Drama +130152,The House Across the Lake (1954),Drama|Thriller +130156,Heaven Is a Playground (1991),Drama +130170,Illegally Yours (1988),Comedy|Romance +130173,Jailbait! (2000),Comedy|Drama +130185,Lady from Louisiana (1941),Drama +130196,The Neighbors (2012),Thriller +130198,Oliver's Story (1978),Drama +130204,Patty Hearst (1988),(no genres listed) +130208,Platoon Leader (1988),Drama|War +130217,Shadow on the Wall (1950),Crime|Drama|Thriller +130219,The Dark Knight (2011),Action|Crime|Drama|Thriller +130231,Standoff (1998),(no genres listed) +130233,Take Care (2014),Comedy|Drama|Romance +130247,That Gal... Who Was in That Thing: That Guy 2 (2015),Documentary +130259,The Discoverers (2014),(no genres listed) +130261,The Gambler and the Lady (1952),Thriller +130267,"Half-Breed, The (1916)",Drama|Western +130269,The Hollow (2004),Horror +130275,The Life and Mind of Mark DeFriest (2014),Animation|Crime|Documentary|Drama +130284,Big and Little Wong Tin Bar (1962),Action +130290,Hotel (2013),Drama +130292,Alphabet (2013),Documentary +130294,Drevo (2014),Drama +130296,A Fight For (2014),(no genres listed) +130298,Pot v raj (2014),(no genres listed) +130320,Dyke Hard (2014),Comedy +130324,The Strength of Water (2009),(no genres listed) +130326,Other Girls (2015),Drama +130328,A Bright Shining Lie (1998),Drama|War +130332,Grizzly (1976),Horror +130338,Silent Sonata (2011),Drama|Fantasy|War +130340,Wolfsburg (2003),Drama +130342,Ice Poison (2014),(no genres listed) +130344,Coast of Death (2013),Children|Documentary|Drama +130347,Bill Hicks: Sane Man (1989),Comedy +130349,The Harry Hill Movie (2013),Comedy +130351,The Wrecking Crew (2008),Documentary +130356,Tribulation (2000),Drama|Sci-Fi|Thriller +130372,Who Saw Her Die? (1972),Horror|Mystery|Thriller +130374,India's Daughter (2015),Documentary +130376,Kill Speed (2010),Action|Crime|Thriller +130378,8 Minutes Idle (2014),Comedy +130380,Absolute Aggression (2004),Action|Sci-Fi|Thriller +130382,Mr. Pip (2012),Drama|War +130384,Mega Piranha (2010),Action|Adventure|Horror|Sci-Fi +130386,Men in White (1998),(no genres listed) +130388,Black Field (2009),Drama|Romance +130390,Contract Killers (2009),Action|Adventure|Thriller +130392,A Magnificent Haunting (2012),Drama +130394,The Mascot (1934),Animation +130396,The Suspended Step of the Stork (1991),Drama|Romance +130398,Transmorphers (2007),Action|Adventure|Sci-Fi +130400,Through the Forest (2005),Drama +130402,Cardcaptor Sakura: The Sealed Card (2000),Adventure|Animation|Comedy|Fantasy|Romance +130404,The Linguists (2008),Documentary +130406,Watch Me When I Kill (1977),Horror|Mystery|Thriller +130408,A Rumor of War (1980),Drama|War +130420,Outrage (1973),Crime|Drama|Thriller +130422,Hell Is a City (1960),Crime|Thriller +130424,The Crown Jewels (2011),Drama|Fantasy|Romance +130436,Devil's Angels (1967),Action +130442,Patrick (2013),Horror|Sci-Fi|Thriller +130444,Ruby Red (2013),Adventure|Children|Fantasy|Sci-Fi +130446,The Coconut Revolution (2000),(no genres listed) +130448,Poltergeist (2015),Horror|Thriller +130450,Pan (2015),Adventure|Fantasy +130452,While We're Young (2014),Comedy|Drama +130454,Michael Laudrup - en Fodboldspiller,(no genres listed) +130458,The Pentagon Papers (2003),Drama|Thriller +130462,The Boy (2015),Drama|Horror|Thriller +130466,I Hate Christian Laettner (2015),Documentary +130468,The Circle (2015),Fantasy|Horror|Mystery +130472,Baby Snakes (1979),(no genres listed) +130474,Suite Française (2015),Drama|Romance|War +130476,The Concert for Bangladesh (1972),Documentary +130478,Kitchen in Paris (2014),Comedy +130480,I Walk Alone (1948),Action|Drama|Thriller +130482,Too Late for Tears (1949),Crime|Drama|Film-Noir|Mystery|Thriller +130488,The Infinite Man (2014),Comedy +130490,Insurgent (2015),Action|Sci-Fi|Thriller +130492,Dum Laga Ke Haisha (2015),Children|Comedy|Romance +130494,Simon & the Oaks (2011),Drama +130496,Big Game (2014),Action|Adventure +130498,La vérité si je mens ! (1997),Comedy +130500,Laissons Lucie faire ! (2000),(no genres listed) +130502,Venus & Fleur (2004),(no genres listed) +130504,Fear Over the City (1975),Action|Crime|Drama +130506,Berserk: The Golden Age Arc 2 - The Battle for Doldrey (2012),Action|Animation|Fantasy +130508,Berserk: The Golden Age Arc - The Egg of the King (2012),Action|Adventure|Animation|Fantasy|Horror +130510,Berserk: The Golden Age Arc 3 - Descent (2013),Action|Animation|Fantasy +130512,Hippocrates (2014),Comedy|Drama +130514,The Tenant of Wildfell Hall (1997),Drama +130516,Glowing Stars (2009),Drama +130518,The Amazing Screw-On Head (2006),Action|Adventure|Animation|Comedy|Sci-Fi +130520,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +130522,The Brave Little Toaster Goes to Mars (1998),Animation|Children +130524,Flying Home (2014),Romance +130526,The Detective 2 (2011),Action +130532,I giorni contati (1963),(no genres listed) +130538,"Congratulations, It's a Boy! (1971)",Comedy +130540,Thief (1971),Crime|Drama +130544,The Hunt for the Unicorn Killer (1999),Drama|Thriller +130552,Get Christie Love! (1974),(no genres listed) +130554,Where the Lilies Bloom (1974),Children|Drama|Romance +130560,21 Hours at Munich (1976),Drama +130562,One in a Million: The Ron LeFlore Story (1978),Drama +130572,Secrets of a Married Man (1984),Drama +130574,Something Wicked (2014),Mystery|Thriller +130576,Midnight Special (2015),Drama|Sci-Fi +130578,"Gunman, The (2015)",Action|Thriller +130580,The Disappearance of Eleanor Rigby: Her (2013),Drama +130582,The Disappearance of Eleanor Rigby: Him (2013),Drama|Romance +130584,The Color of Time (2012),Drama|Romance +130586,Itinerary of a Spoiled Child (1988),Adventure|Drama +130588,Escobar: Paradise Lost (2014),Romance|Thriller +130596,Joe Hill (1971),Drama +130604,Maid in Sweden (1971),Drama +130608,The Corpse (1970),Horror|Thriller +130614,Goodbye Uncle Tom (1971),Drama +130618,Baby (2015),Action|Crime|Mystery|Thriller +130622,The Circle (2014),Documentary|Drama +130626,Vengeance Can Wait (2010),Comedy|Drama|Romance +130628,Boys (2014),Drama +130630,Futuro Beach (2014),Drama +130634,Furious 7 (2015),Action|Crime|Thriller +130636,Unfriended (2014),Horror|Mystery|Thriller +130638,Master of the Universe (2013),Documentary +130640,貞子3D (2012),Horror +130642,Backcountry (2014),Drama|Horror|Thriller +130644,The Garden of Sinners - Chapter 5: Paradox Paradigm (2008),Animation +130648,Au Pair Girls (1972),Comedy +130656,The 21 Carat Snatch (1971),Crime +130672,Slumber Party '57 (1976),(no genres listed) +130674,Schizoid (1980),Horror|Mystery +130680,Operation Thunderbolt (1977),Action|Drama|Thriller +130682,Muck (2015),Horror +130684,We Are Still Here (2015),Horror +130686,The Final Girls (2015),Comedy|Horror +130692,Sam's Song (1969),Drama +130730,Lemon Popsicle (1978),Comedy|Drama|Romance +130734,New Year's Evil (1980),Horror +130738,A Man Called Sarge (1990),Comedy +130746,Bolero (1984),Drama|Romance +130748,Ghosts Can't Do It (1989),Action|Comedy|Fantasy|Romance|Sci-Fi +130762,Robotech: The Untold Story (1986),Animation +130768,Chain of Command (2000),Action|Thriller +130784,The Whisperer in Darkness (2011),Horror|Mystery|Sci-Fi|Thriller +130788,Mata Hari (1985),Action|Drama|Romance|Thriller +130794,Beauty and the Beast (1987),Children|Romance +130800,Sleeping Beauty (1987),Children|Fantasy +130804,The Fourth War (1990),Drama|Thriller +130808,River of Death (1989),Adventure +130812,Maidstone (1970),(no genres listed) +130822,The Stud (1979),Drama +130824,The Naked Cage (1986),Action|Drama +130828,No Place to Hide (1970),Thriller +130834,Dancers (1987),(no genres listed) +130836,Fifty/Fifty (1992),Action|Comedy|Thriller +130838,When the Whales Came (1989),Drama +130840,Spring (2015),Horror|Romance|Sci-Fi +130842,Power/Rangers (2015),Action|Adventure|Sci-Fi +130844,Julie Darling (1983),(no genres listed) +130846,The Birthday Party (1968),(no genres listed) +130848,Not My Type (2014),Comedy|Romance +130850,Mall (2014),Drama +130852,Brothers on the Line (2012),(no genres listed) +130854,Beat the Drum (2003),Drama +130856,Severe Clear (2010),Comedy|Documentary +130862,Cymbeline (2014),Drama +130866,Gorilla Bathes at Noon (1993),(no genres listed) +130878,Doppelgänger Paul (2012),(no genres listed) +130882,McCinsey's Island (1998),(no genres listed) +130894,Petals on the Wind (2014),Drama|Romance|Thriller +130900,Mr. Troop Mom (2009),Children|Comedy +130912,In the Shadow (2012),Crime|Drama +130914,Savage Weekend (1979),Horror +130922,The Comeback (1978),Horror|Mystery|Thriller +130954,Guter Junge (2008),Drama +130956,Child 44 (2015),Crime|Thriller +130958,Killer Crocodile (1989),Horror +130960,The Conrad Boys (2006),Drama +130962,Musikanten (2006),(no genres listed) +130964,The Day I Saw Your Heart (2011),Comedy|Drama +130966,Promises in the Dark (1979),Drama +130968,Champions (1984),(no genres listed) +130970,George Carlin: Life Is Worth Losing (2005),Comedy +130972,Sune på bilsemester (2013),Children|Comedy +130976,Legend No. 17 (2013),Drama +130978,Love and Pigeons (1985),Comedy|Romance +130980,The Day That Lasted 21 Years (2012),Documentary +130982,Widows (2011),Drama +130984,Santo vs. las lobas (1976),Action|Fantasy|Horror +130986,Light Gradient (2009),Drama|Mystery|Romance +130988,A Little Chaos (2014),Drama|Romance +130992,Innocence (1997),Drama +130994,Bill W. (2012),Documentary +130996,The Beautiful Story (1992),Adventure|Drama|Fantasy +130998,"The Yakuza Papers, Vol. 2: Deadly Fight in Hiroshima (1973)",Action|Crime|Drama +131000,"The Yakuza Papers, Vol. 3: Proxy War (1973)",Action|Crime|Drama +131002,"The Yakuza Papers, Vol. 5: Final Episode (1974)",Action|Crime|Drama +131004,"The Yakuza Papers, Vol. 4: Police Tactics (1974)",Crime|Drama +131009,Ballermann 6 (1997),Comedy +131011,Execution Squad (1972),Crime|Drama +131013,Get Hard (2015),Comedy|Crime +131015,Hellgate (2011),Horror|Thriller +131017,Aziz Ansari: Live at Madison Square Garden (2015),Comedy +131019,The Intruders (2015),Thriller +131021,Filmistaan (2014),(no genres listed) +131023,That Sugar Film (2014),Documentary +131025,The Brass Legend (1956),Action +131027,But Forever in My Mind (1999),Comedy|Drama +131029,Mara und der Feuerbringer (2015),(no genres listed) +131031,La liga no es cosa de hombres (1972),(no genres listed) +131050,Stargate SG-1 Children of the Gods - Final Cut (2009),Adventure|Sci-Fi|Thriller +131052,Die Weihnachtsklempner (1986),Comedy +131054,Dinotopia: Quest for the Ruby Sunstone (2005),Children|Fantasy|Sci-Fi +131056,The Vexxer (2007),Comedy|Crime +131058,Santa's Apprentice (2010),Animation|Children +131060,Vollidiot (2007),Comedy|Drama +131062,20 Years After (2008),Drama|Fantasy|Sci-Fi +131066,Ronal the Barbarian (2011),Adventure|Animation|Fantasy +131068,Sex Up Your Life! (2005),Comedy +131070,Forgotten (2012),Drama|Mystery|Thriller +131072,Jesus liebt mich (2012),Comedy +131074,Mount St. Elias (2009),Documentary +131076,Süperseks (2004),Comedy +131078,Benjamin Blümchen - Seine schönsten Abenteuer (2006),(no genres listed) +131080,Cinderella III: A Twist in Time (2007),Animation|Children|Fantasy|Musical|Romance +131082,Playground (2009),Documentary +131084,Hui Buh: The Castle Ghost (2006),Adventure|Comedy|Fantasy +131086,The Little Polar Bear: Lars and the Little Tiger (2002),Animation|Children +131088,Girls on Top 2 (2004),Comedy +131090,Jonas (2012),Comedy +131092,"Mickey, Donald, Goofy: The Three Musketeers (2004)",Adventure|Animation|Children|Comedy +131094,Rudolph the Red-Nosed Reindeer: The Movie (1998),Animation|Children +131096,Russendisko (2012),Comedy +131098,Saving Santa (2013),Animation|Children|Comedy +131100,Forget me not (2013),Documentary +131102,Lucky Luke: The Ballad of the Daltons (1978),Animation|Children|Comedy|Western +131104,The Brain (1969),Comedy|Crime +131106,Casper's Haunted Christmas (2000),Animation|Children +131108,The Fearless Four (1997),(no genres listed) +131110,A House of Secrets: Exploring 'Dragonwyck' (2008),Documentary +131112,Night of the Living Dorks (2004),Comedy|Horror +131114,La Planque (2011),Comedy +131116,La Première étoile (2009),Comedy +131118,Siegfried (2005),Comedy +131120,Superstar Goofy (1991),Animation|Children|Comedy +131122,Love Exposure (2007),Action|Comedy|Drama|Romance +131124,Erkan & Stefan 2 (2002),Comedy +131126,Erkan & Stefan 3 (2005),Comedy +131128,Flodder 3 (1995),Comedy +131130,Tom and Jerry: A Nutcracker Tale (2007),Animation|Comedy +131132,Kleines Arschloch - Der Film (1997),Animation|Comedy +131134,Manta - Der Film (1991),Comedy +131136,Girls on Top (2001),Comedy +131138,My Führer (2007),Comedy|Drama|War +131140,Stopped on Track (2011),Drama +131142,Voll Normaaal (1994),Comedy +131144,Werner - Das muss kesseln!!! (1996),Animation|Comedy +131146,Werner - Volles Rooäää (1999),Animation|Comedy +131148,What A Man (2011),Comedy|Romance +131150,7 Dwarves: The Forest Is Not Enough (2006),Comedy +131152,The Fat Spy (1966),Comedy +131154,"Die Bademeister – Weiber, saufen, Leben retten (1999)",Comedy +131156,Ants in the Pants 2 (2002),Comedy +131158,"Manta, Manta (1991)",Comedy +131160,Oscar and the Lady in Pink (2009),Drama +131162,Por un puñado de besos (2014),Drama|Romance +131164,Vietnam in HD (2011),War +131166,WWII IN HD (2009),Documentary|War +131168,Phoenix (2014),Drama +131170,Parallels (2015),Sci-Fi|Thriller +131172,Closed Curtain (2013),(no genres listed) +131174,Gentlemen (2014),Drama|Romance|Thriller +131176,A Second Chance (2014),Drama +131178,The Mystery of Happiness (2014),Comedy|Drama|Romance +131180,Dead Rising: Watchtower (2015),Action|Horror|Thriller +131186,A Dream of Kings (1969),(no genres listed) +131192,App (2013),Thriller +131196,Arrow In The Dust (1954),Western +131202,Born Killers (2005),Action|Thriller +131206,Calling Dr. Kildare (1939),Drama +131231,Standby (2014),Comedy|Romance +131233,New Year's Day (1990),Comedy +131237,What Men Talk About (2010),Comedy +131239,Three Quarter Moon (2011),Comedy|Drama +131241,Ants in the Pants (2000),Comedy|Romance +131243,Werner - Gekotzt wird später (2003),Animation|Comedy +131248,Brother Bear 2 (2006),Adventure|Animation|Children|Comedy|Fantasy +131250,No More School (2000),Comedy +131252,Forklift Driver Klaus: The First Day on the Job (2001),Comedy|Horror +131254,Kein Bund für's Leben (2007),Comedy +131256,"Feuer, Eis & Dosenbier (2002)",Comedy +131258,The Pirates (2014),Adventure +131260,Rentun Ruusu (2001),(no genres listed) +131262,Innocence (2014),Adventure|Fantasy|Horror +131270,Kung Fu Jungle (2014),Action|Crime|Thriller +131272,Last Flight Out (2004),Action +131274,Heat (1986),Action|Drama|Thriller +131282,Hurricane (1974),Drama +131294,The Odd Angry Shot (1979),(no genres listed) +131305,Deep Space (1988),Horror|Sci-Fi +131316,Five Miles to Midnight (1962),Crime|Drama|Thriller +131341,In God We Tru$t (1980),Comedy +131347,Law and Order (1969),Documentary +131353,Cattle Annie and Little Britches (1981),Western +131357,Off the Minnesota Strip (1980),Drama +131361,Somebody Killed Her Husband (1978),(no genres listed) +131369,My Sweet Charlie (1970),Drama +131378,Patrick (1978),Horror|Sci-Fi|Thriller +131382,Apache Blood (1975),Western +131386,Rhubarb (1951),Comedy +131389,Sabrina the Teenage Witch (1996),Children|Comedy|Fantasy|Sci-Fi +131391,Safe at Home! (1962),(no genres listed) +131393,Shadowheart (2009),Action|Adventure|Drama|Romance|Western +131419,The Rig (2010),Action|Horror|Sci-Fi|Thriller +131427,The young Rajah (1922),(no genres listed) +131429,Thunderhead - Son of Flicka (1945),Children|Drama +131431,Dear Murderer (1948),Thriller +131433,Confession of Murder (2012),Action|Thriller +131437,Moby Dick (2011),Action|Horror|Thriller +131439,Kill Me Three Times (2014),Thriller +131442,Underwater Dreams (2014),Documentary +131444,Rurouni Kenshin: The Legend Ends (2014),Action|Adventure|Drama +131446,Rurouni Kenshin: Kyoto Inferno (2014),Action|Adventure|Animation|Drama +131448,Walter (2015),Comedy|Drama +131451,The Atticus Institute (2015),Horror +131453,The Last Will and Testament of Rosalind Leigh (2012),Horror|Thriller +131457,Rise of the Legend (2014),Action|Drama +131464,Kristy (2014),Horror|Thriller +131466,Gangster Payday (2014),Crime|Drama|Romance|Thriller +131470,The Houses October Built (2014),Horror +131472,In Darkness We Fall (2014),Horror +131474,Preservation (2014),Horror|Thriller +131476,Christmas at Cartwright's (2014),Children|Romance +131478,Altar (2014),Horror|Mystery +131480,Poker Night (2014),Action|Crime|Thriller +131482,Marine Boy (2009),Action|Thriller +131484,House of Bones (2010),Horror +131486,That Burning Feeling (2014),Comedy|Drama +131496,Uzumasa Limelight (2014),Action|Drama +131498,Lawrence & Holloman (2014),Comedy +131500,The Hagstone Demon (2011),Horror +131502,A Wolf at the Door (2013),Drama|Thriller +131504,Jellyfish Eyes (2013),Comedy|Fantasy +131506,The Ugly Swans (2006),Drama|Mystery|Sci-Fi +131508,Moscow (2000),Drama +131516,"A Man, a Woman and a Bank (1979)",Action|Comedy|Romance +131522,Atlántida (2014),Drama +131524,Natural Sciences (2014),(no genres listed) +131530,Lions (2012),Drama +131532,The Wild Ones (2013),Crime|Drama +131534,Profit Motive and the Whispering Wind (2007),Documentary +131536,The Face (2013),(no genres listed) +131538,Balnearios (2002),(no genres listed) +131540,Paganini Horror (1989),Horror +131546,Hardbodies 2 (1986),Comedy +131548,Hardbodies (1984),Comedy +131550,My Only Sunshine (2009),Drama +131554,Somersault in a Coffin (1996),Children|Drama +131556,Inside (2012),(no genres listed) +131558,Majority (2010),Drama +131560,Vavien (2009),(no genres listed) +131562,Time to Love (1965),Drama|Romance +131564,The Angel of Vengeance - The Female Hamlet (1977),Drama +131566,Suçlular aramizda (1964),Crime|Drama +131568,Room 514 (2012),(no genres listed) +131570,The Humbling (2015),Comedy|Drama +131578,Reckless Kelly (1994),Comedy +131582,It Takes Two (1988),Comedy|Romance +131584,Regarding Susan Sontag (2014),Documentary +131586,Terror at the Mall (2014),Documentary +131588,Malibu Beach (1978),Comedy +131590,Hamburger: The Motion Picture (1986),Comedy +131594,Last Resort (1986),Comedy +131596,The Maker (1997),Crime|Drama|Thriller +131602,14 Going on 30 (1988),(no genres listed) +131604,Can of Worms (1999),Children|Comedy|Sci-Fi +131620,Little White Lie (2014),Documentary +131622,Beauty and the Beast (1979),Drama|Fantasy|Horror|Romance +131626,Lily & Kat (2015),Comedy|Drama +131628,Loaded (2014),Comedy|Drama +131630,Running Hot (1984),Crime|Drama +131634,Camp Cucamonga (1990),Children|Comedy|Drama +131638,My American Cousin (1985),(no genres listed) +131640,Quarterback Princess (1983),Drama +131644,The Great American Girl Robbery (1979),Comedy|Crime +131646,Casomai (2002),Comedy|Romance +131648,Stud Life (2012),(no genres listed) +131650,Sherlock Holmes in New York (1976),Thriller +131652,Garden of Love (2003),Horror +131654,The Village (2010),(no genres listed) +131656,Shaun the Sheep Movie (2015),Adventure|Animation|Children +131658,Infinitely Polar Bear (2014),Comedy|Drama +131660,Bastards (2006),Action|Drama|War +131670,Puberty Blues (1981),Comedy|Drama +131674,The Check Is in the Mail... (1986),Comedy +131682,P.R.O.F.S (1985),Comedy +131684,Poison Ivy (1985),Comedy|Romance +131686,An Insignificant Harvey (2011),Drama +131688,Girlfriend From Hell (1989),Comedy|Horror +131690,The Big Steal (1990),Comedy +131706,Tell Me a Riddle (1980),Drama +131710,The Bermuda Triangle (1996),Thriller +131712,Ages of Love (2011),Comedy|Romance +131714,Last Knights (2015),Action|Adventure +131716,The Viral Factor (2012),Action|Drama +131718,Baciami Ancora (2010),Comedy +131722,Boobs: An American Obsession (2010),Documentary +131724,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary +131726,Matt Shepard Is a Friend of Mine (2015),Documentary +131730,Streetwalkin' (1985),Drama|Thriller +131739,Batman vs. Robin (2015),Action|Adventure|Animation +131749,Libre et assoupi (2014),Comedy +131751,Cheatin' (2013),Animation +131769,Seven Minutes in Heaven (1985),Comedy|Drama|Romance +131775,Mr. Civil Rights: Thurgood Marshall and the NAACP (2014),(no genres listed) +131777,Malibu Hot Summer (1981),(no genres listed) +131786,The Invisible Kid (1988),Comedy|Sci-Fi +131788,Stewardess School (1986),Action|Comedy +131794,Monster High (1989),Comedy|Horror|Sci-Fi +131796,Woman in Gold (2015),Drama +131798,Sole Survivor (1983),Horror +131808,The Postman's White Nights (2014),(no genres listed) +131812,The Seat Filler (2004),Comedy|Romance +131816,Crisis Hotline: Veterans Press 1 (2013),Documentary +131818,Done The Impossible (2006),Documentary +131820,Echoes (2015),Horror +131822,Stadtgespräch (1995),Comedy +131824,Men... (1985),Comedy +131826,Iliza Shlesinger: Freezing Hot (2015),Comedy +131828,Doug Benson: Doug Dynasty (2014),Comedy +131830,Samba (2014),Comedy|Drama +131832,Once Upon A Mattress (2005),Comedy +131834,The Sound of Music Live (2013),Children|Drama +131836,Bill Bailey: Part Troll (2004),Comedy +131838,An Afghan Love Story (2013),(no genres listed) +131840,Rafferty and the Gold Dust Twins (1975),Comedy +131842,Cut Bank (2014),Thriller +131844,Les mauvaises têtes (2013),(no genres listed) +131846,Toutes les Filles sont Folles (2003),(no genres listed) +131848,Seven Dwarfs (2004),Comedy +131850,Killing Jesus (2015),Drama +131852,The Mad Genius (1931),Drama|Horror|Romance +131854,Water's Edge (2004),Thriller +131856,Outing Riley (2004),Comedy +131870,Nightmare Weekend (1986),Horror|Sci-Fi +131872,Dance 'Til Dawn (1988),Children|Comedy +131880,Slaughter High (1986),Horror +131884,Old Enough (1984),Drama +131886,The Revenge of the Teenage Vixens from Outer Space (1985),Comedy|Sci-Fi +131888,They're Playing with Fire (1984),Crime|Thriller +131914,Dangerous Curves (1989),Comedy +131920,The Road Within (2014),Comedy|Drama +131932,Modern Girls (1986),Comedy|Romance +131934,The Malibu Bikini Shop (1986),Comedy +131936,Space Dogs (2010),Animation|Children +131950,Beach House (1977),Comedy +131960,Body Rock (1984),Drama +131962,De feu et de glace (2008),(no genres listed) +131964,Cash McCall (1960),Drama|Romance +131966,La 317ème section (1965),War +131980,"Guten Tag, Ramón (2013)",Drama +131994,Teen Vamp (1988),Comedy|Horror +131996,Princess Academy (1987),(no genres listed) +131998,Night School (1981),Horror|Mystery|Thriller +132008,"Sarah, Plain and Tall - Winter's End (1999)",Children|Drama +132010,Anna and the Wolves (1973),Drama +132012,Lemonade Mouth (2011),Children +132014,Sex Appeal (1986),Comedy +132018,School Spirit (1985),Comedy +132024,Ghost Chase (1987),Children|Fantasy|Sci-Fi +132036,Copperhead (2013),Drama +132040,Borderline (1980),Action|Crime|Drama +132044,The Clown at Midnight (1999),Horror|Thriller +132046,Tomorrowland (2015),Adventure|Sci-Fi +132048,Dead Girls (2014),Horror +132050,Sleeping Dogs (1977),Action|Thriller +132052,Crooks and Coronets (1969),Comedy +132054,Soap (2006),Comedy|Romance +132056,The Forger (2014),Crime|Drama|Thriller +132058,Viva la libertà (2013),Drama +132060,Electricity (2014),Drama +132062,Ballerina (2006),(no genres listed) +132064,Monsoon Baby (2014),Drama +132066,Luton (2013),Drama +132068,Far from Men (2014),Drama +132070,And the Oscar Goes To... (2014),(no genres listed) +132072,Armi Alive! (Armi elää) (2015),Drama +132074,No No: A Dockumentary (2014),Documentary +132078,Hiver rouge (2011),Thriller +132080,Bleu catacombes (2014),Thriller +132082,Bob le magnifique (1998),(no genres listed) +132084,Let It Be Me (1995),(no genres listed) +132086,Pas d'inquiétude (2014),Drama +132094,Death Carries a Cane (1973),Horror|Mystery|Thriller +132100,Graffiti Wars (2011),Documentary +132106,Weather Girl (2009),Action|Comedy|Mystery|Romance|Thriller +132110,Dudes (1987),Comedy +132112,Good Kill (2014),Thriller +132114,Premutos - Der gefallene Engel (1997),Horror +132116,Kamikaze Taxi (1995),(no genres listed) +132118,Alex of Venice (2014),Drama +132120,A House In The Hills (1993),Romance|Thriller +132122,Hungry Hearts (2014),Drama +132128,Faults (2015),Drama|Thriller +132130,Cub (2014),Adventure|Horror +132132,Swearnet: The Movie (2014),Comedy +132134,15 Years and One Day (2013),Drama +132136,The Barber (2015),Thriller +132138,The Woman with the 5 Elephants (2010),Documentary +132140,Good Deeds (2012),Comedy|Drama|Romance +132142,In Search of Memory (2008),Documentary +132144,Black Souls (2014),Crime|Drama +132146,The Harvest (2013),Drama|Thriller +132148,PMMP – Life is Right Here (2015),Documentary +132150,The 7 Grandmasters (1977),Action +132153,Buzzard (2015),Comedy|Drama|Horror +132155,Ape (2012),(no genres listed) +132157,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime +132159,The Reconstruction of William Zero (2015),Drama|Sci-Fi|Thriller +132161,Mine (2009),Documentary +132163,Toxin (2014),Action|Horror|Sci-Fi +132165,The Elevator: Three Minutes Can Change Your Life (2013),Drama|Thriller +132167,El Infierno (2010),Comedy|Crime|Drama +132169,Time Traveller: The Girl Who Leapt Through Time (2010),Adventure +132171,The Bitter Buddha (2013),(no genres listed) +132173,Adult Beginners (2015),Comedy +132175,The Invisible Men (2012),Documentary|Drama +132178,At World's End (2009),Action|Adventure|Comedy|Thriller +132180,Parts Per Billion (2014),Sci-Fi +132182,Alléluia (2014),Drama|Thriller +132184,Tizoc (1956),Drama|Romance +132186,"It's Me, Hilary: The Man Who Drew Eloise (2015)",Documentary +132190,The Surrealist and His Naughty Hand (2013),Comedy|Drama +132192,Anna Karénina (2013),Drama|Romance +132194,Sylvia (1965),Drama|Romance|Thriller +132196,Voices of the Andes (2009),Documentary +132198,"Exhausted: John C. Holmes, the Real Story (1981)",Documentary +132206,Troppo rischio per un uomo solo (1973),(no genres listed) +132208,Forbidden Photos of a Lady Above Suspicion (1970),Mystery +132210,Death Walks on High Heels (1971),Horror|Mystery|Thriller +132212,Death Walks at Midnight (1972),Horror|Mystery +132214,Badge 373 (1973),Crime|Drama|Thriller +132222,Frankenstein 1970 (1958),Horror|Sci-Fi +132234,"September 30, 1955 (1978)",Drama +132238,Amelia Earhart: The Final Flight (1994),Drama +132249,First to Fight (1967),Drama|War +132261,King Lear (1971),Drama +132264,Man from Del Rio (1956),(no genres listed) +132268,Miranda (1985),Comedy|Romance +132270,Muffin Top: A Love Story (2014),Comedy|Romance +132272,Mutant Hunt (1987),Action|Horror|Sci-Fi|Thriller +132275,Born in Absurdistan (1999),Comedy +132280,"Rico, Oskar und die Tieferschatten (2014)",Adventure|Children|Comedy +132282,The Brave Bulls (1951),(no genres listed) +132286,About a Girl (2014),Comedy +132288,The Maltese Bippy (1969),(no genres listed) +132296,The Outsider (1981),Drama +132309,Without a Trace (1983),Drama|Mystery +132315,The Prince & Me 3: A Royal Honeymoon (2008),Comedy|Romance +132317,Way Beyond Weight (2012),Documentary +132325,The Return of Count Yorga (1971),Horror +132327,"Like Father, Like Son (1965)",Drama +132331,Edge of Sanity (1989),Horror|Thriller +132333,Seve (2014),Documentary|Drama +132335,Breathe (2014),Drama +132338,I Am Soldier (2014),Action|Thriller|War +132340,The Dead 2: India (2013),Horror +132342,Lorelei: The Witch of the Pacific Ocean (2005),Drama|War +132344,Holiday in the Sun (2001),Action|Adventure|Children|Comedy +132346,Postmortem (1998),Thriller +132348,The Last Templar (2009),Adventure|Drama|Fantasy|Thriller +132352,Spiders (2013),Horror|Sci-Fi|Thriller +132354,Syncopation (1942),Comedy|Musical|Romance +132356,Survivor (2014),Action|Fantasy|Sci-Fi +132358,N.H 10 (2015),Crime|Drama|Mystery +132360,Book of Blood (2009),Drama|Horror|Mystery|Thriller +132362,Patlabor 2: The Movie (1993),Action|Animation|Sci-Fi +132364,Belka and Strelka: Moon Adventures (2013),Adventure|Animation|Comedy +132366,The Eternal Zero (2013),Drama|War +132368,Exaella (2011),Action|Animation|Drama|Sci-Fi +132372,Rommel (2012),Action|Drama|War +132374,Le Président (1961),Drama|Mystery|Thriller +132377,Outcast (2014),Action +132379,Aging Out (2004),(no genres listed) +132381,The Admiral: Roaring Currents (2014),Action|Drama|War +132384,The Domino Principle (1977),Crime|Drama +132386,Zandy's Bride (1974),Western +132388,Cisco Pike (1972),Drama +132390,Riot (1969),Action +132394,To Find a Man (1972),(no genres listed) +132402,Tazza: The Hidden Card (2014),Crime|Drama +132404,Vita frun (1962),Mystery|Thriller +132408,The Lightship (1986),Thriller +132410,The Stone Boy (1984),Drama +132412,Threshold (1981),Drama|Sci-Fi +132414,Géraldine (2000),Animation +132416,Laura's Star (2004),Animation|Children +132418,The Marine 4: Moving Target (2015),Action|Thriller +132420,Babar: King of the Elephants (1999),Animation|Children +132422,Da Sweet Blood of Jesus (2014),Comedy|Romance|Thriller +132424,The Longest Ride (2015),Drama|Romance +132430,Man from Reno (2014),Crime|Mystery|Thriller +132432,Five Dances (2013),Drama|Romance +132434,Astral City: A Spiritual Journey (2010),Drama +132438,Table For Five (1983),(no genres listed) +132442,Beyond the Reach (2014),Thriller +132444,Nuntius (2014),Sci-Fi +132446,Atari: Game Over (2014),Documentary +132448,Einstein (2015),(no genres listed) +132450,Broken Glass Park (2013),Drama +132452,Mörderische Erpressung (2006),Crime +132454,Girltrash: All Night Long (2014),Comedy|Crime|Drama +132456,Lage Raho Munna Bhai (2006),Comedy|Drama|Romance +132458,Monkey Kingdom (2015),Documentary +132460,Beck - Sjukhusmorden (2015),Crime|Mystery|Thriller +132462,Sword of Vengeance (2014),Action|Adventure|Drama +132464,Jersey Shore Shark Attack (2012),Action|Sci-Fi +132468,Ship of Theseus (2013),Drama +132470,Obsession (1949),Crime +132472,Antarctica: A Year On Ice (2013),Adventure|Documentary +132474,The Dog Who Saved Christmas (2009),Children|Comedy +132476,Indebted (2013),Drama|Thriller +132478,Darkness in Tallinn (1993),Action|Comedy|Thriller +132480,The Age of Adaline (2015),Drama|Romance +132482,Gutshot Straight (2014),Thriller +132484,Lambert & Stamp (2014),Documentary +132486,The Liberator (2013),Drama +132488,Lovesick (2014),Comedy|Romance +132490,Return to Source: The Philosophy of The Matrix (2004),Documentary +132492,Sinatra: All or Nothing at All (2015),Documentary +132494,The Sheik (2014),Documentary +132496,Danny Collins (2015),Comedy|Drama +132516,I'm Afraid (1982),(no genres listed) +132518,Confessions of a Sociopathic Social Climber (2005),Comedy|Romance +132520,Bad Hurt (2015),Drama +132522,"Hey, Boo: Harper Lee and 'To Kill a Mockingbird' (2011)",Documentary +132524,Halo: Nightfall (2014),Action|Adventure|Sci-Fi|Thriller +132526,I'm Not Jesus Mommy (2011),Drama|Sci-Fi|Thriller +132528,Downstream (2010),Action|Sci-Fi +132530,Eugenie (1970),Drama|Horror +132534,Finding Gaston (2014),Documentary +132539,The Black Cat (1981),Horror +132545,Flicka 2 (2010),Children|Drama +132547,A Girl Like Her (2015),Drama +132549,Grandma (2015),(no genres listed) +132551,Mea Culpa (2014),Action|Thriller +132553,"Struggle, The (1931)",Drama +132555,Winning Time: Reggie Miller vs. The New York Knicks (2010),Documentary +132557,Straight Outta LA (2010),Documentary +132559,Silly Little Game (2010),Documentary +132561,Bad Boys (2014),Documentary +132563,October November (2013),Drama +132565,The Unseeable (2006),Drama|Horror|Mystery +132567,Scarfies (1999),Comedy|Thriller +132569,Comedy Central Roast of Justin Bieber (2015),Comedy +132571,The Butterfly Tattoo (2009),Drama|Thriller +132575,50 to 1 (2014),Drama +132577,Mardock Scramble: The First Compression (2010),Action|Animation|Drama|Thriller +132579,Mardock Scramble: The Third Exhaust (2012),Animation|Sci-Fi +132584,The Even Stevens Movie (2003),Children|Comedy +132586,The Four Year Plan (2011),Documentary +132588,In the Crosswind (2014),War +132590,Happy Valley (2014),Documentary +132592,GMO OMG (2013),Children|Documentary +132594,A Royal Night Out (2015),Drama|Romance|Thriller +132596,The Chain Reaction (1980),Action|Sci-Fi|Thriller +132600,Absolution (1978),Drama|Mystery|Thriller +132604,キサラギ (2007),Comedy|Mystery +132606,I prosseneti (1976),(no genres listed) +132608,Barbecue (2014),Comedy +132610,Malice@Doll (2004),Animation +132612,Portraits in a Sea of Lies (2010),Drama +132614,Dior and I (2014),Documentary +132616,The Walking Deceased (2015),Comedy|Sci-Fi +132618,Kite (2014),Action|Crime|Drama|Mystery|Thriller +132622,Magic Beyond Words: The JK Rowling Story (2011),(no genres listed) +132624,The Hacker Wars (2014),Documentary +132626,Peter Pan Live (2014),Adventure|Children +132628,Pilot Error (2014),Drama|Mystery +132630,Tinker Bell and the Legend of the NeverBeast (2014),Adventure|Animation|Children +132632,The Pirate Fairy (2014),Animation|Children|Fantasy +132634,Radiostars (2012),Comedy +132636,Our Brief Eternity (2009),Drama|Fantasy|Romance +132638,Le Pari (1997),Comedy +132644,An Act of War (2015),Drama|Mystery +132646,The Velveteen Rabbit (2009),Animation|Children|Drama|Sci-Fi +132648,Honig im Kopf (2014),Comedy|Drama +132650,Pokémon: Mewtwo Returns (2000),Animation|Children +132652,Mother's Day (2010),Crime|Drama|Horror|Thriller +132654,Su Excelencia (1967),Comedy|Drama +132656,Batman Unlimited: Animal Instincts (2015),Animation +132658,When I Live My Life Over Again (2015),Drama +132660,Man Up (2015),Comedy|Romance +132662,Devil's Bible (2008),Documentary|Mystery +132664,Weirdo (1983),Children|Drama +132666,21 Years: Richard Linklater (2014),(no genres listed) +132668,All I Want for Christmas (2007),Children|Drama +132678,Crossplot (1969),Action|Thriller +132686,Ever Since Eve (1937),Comedy|Romance +132690,5 Steps to Danger (1957),Action|Thriller +132711,Life Support (2007),Drama +132723,Ten Thousand Bedrooms (1957),Comedy|Romance +132725,The Castilian (1963),Adventure|Drama +132727,The Ceremony (1963),Crime|Drama +132735,The Culling (2015),Horror|Thriller +132739,The Hunt for Eagle One (2006),Action|Adventure|Drama|Thriller +132741,The Hunt for Eagle One: Crash Point (2006),Action|Adventure|Thriller +132751,The Wild Party (1956),Crime|Drama +132753,Two on a Guillotine (1965),Horror|Mystery +132758,"Seduction of Mimi, The (Mimì metallurgico ferito nell'onore) (1972)",Comedy +132760,All Screwed Up (1974),(no genres listed) +132766,"Summer Night, with Greek Profile, Almond Eyes and Scent of Basil (1986)",(no genres listed) +132780,Vanishing Pearls: The Oystermen of Pointe à la Hache (2014),Documentary +132784,The Daring Dobermans (1973),(no genres listed) +132788,Funeral Kings (2012),Comedy +132790,The Least of These (2011),Documentary|Drama|Thriller +132792,The Great Invisible (2014),Documentary +132794,Sweet Home (2015),Horror +132796,San Andreas (2015),Action|Drama|Thriller +132798,Regression (2015),Thriller +132800,Welcome to Me (2014),Comedy|Drama +132806,Escape by Night (1937),(no genres listed) +132808,Gang Bullets (1938),Action|Thriller +132816,The Sinner (1972),(no genres listed) +132826,Sweden: Heaven and Hell (1968),Documentary +132836,The Body (1974),(no genres listed) +132844,Mr. Robinson (1976),Comedy +132846,Woman on the Run (1950),Crime|Drama|Film-Noir +132860,Amore libero - Free Love (1974),(no genres listed) +132870,Hearts and Armour (1983),Action|Adventure|Fantasy +132874,Rose (2011),Drama|War +132877,The Impossible Hour (1974),Documentary +132879,The Stars and the Water Carriers (1974),(no genres listed) +132883,Testament of Youth (2014),Drama|War +132888,Comedy Central Roast of James Franco (2013),Comedy +132894,Cenizas del Paraiso (1997),Crime|Drama|Mystery|Thriller +132896,Pelota (1983),(no genres listed) +132898,Terror Express (1979),Drama +132902,Girl Rising (2013),Documentary +132904,"OC87: The Obsessive Compulsive, Major Depression, Bipolar, Asperger's Movie (2012)",Documentary +132906,The Man with the Iron Fists 2 (2015),Action +132908,Emmanuelle 3 (1977),Drama +132910,Emmanuelle 4 (1984),Drama +132912,Emmanuelle 5 (1987),(no genres listed) +132914,Emmanuelle 6 (1992),Drama|Romance +132916,Black Emanuelle (1975),Drama +132918,Emanuelle in Bangkok (1976),Drama|Romance +132922,Emanuelle in America (1977),Adventure|Drama|Romance +132926,Confessions of Emanuelle (1977),Drama|Horror|Romance +132936,Caged Women (1982),Thriller +132938,Provincia violenta (1978),Action|Crime|Drama +132940,Crimebusters (1976),Action|Crime|Thriller +132942,Captive Wild Woman (1943),Horror|Sci-Fi +132944,Night Monster (1942),Children|Drama|Horror +132946,Valerie Inside Outside (1972),Drama +132948,Doli Saja Ke Rakhna,(no genres listed) +132950,Vaastav: The Reality (1999),(no genres listed) +132952,Sarfarosh (1999),(no genres listed) +132954,Awake: The Life of Yogananda (2014),Documentary +132958,The Kill Team (2013),Documentary|War +132961,Far from the Madding Crowd (2015),Drama +132965,Appropriate Behaviour (2014),Comedy|Drama|Romance +132967,Thursday Till Sunday (2012),Drama +132969,L (2012),Drama|Thriller +132971,Magical Girl (2014),Drama +132975,Garrison Keillor: The Man on the Radio in the Red Shoes (2009),Documentary +132977,The House of Magic (2014),Adventure|Animation|Children|Fantasy +132979,A Company Man (2012),Action|Drama +132981,Crowsnest (2012),(no genres listed) +132987,Kill 'em All (2012),Action|Crime|Thriller +132989,Frontera (2014),Drama|Western +132991,No Tears for the Dead (2014),Action|Thriller +132993,Love Is the Perfect Crime (2013),Drama|Thriller +132995,Dear Lemon Lima (2009),Drama +132997,Wrong Turn 6: Last Resort (2014),Horror +132999,Kriminal (1966),Action|Crime|Mystery +133001,The Spy Who Loved Flowers (1966),Adventure +133047,Ghosthouse (1988),Horror +133055,Ironmaster (1983),(no genres listed) +133067,Brothers Till We Die (1977),(no genres listed) +133071,"The Cynic, the Rat & the Fist (1977)",Action|Crime|Thriller +133073,Free Hand for a Tough Cop (1976),(no genres listed) +133075,Violent Naples (1976),(no genres listed) +133077,"Rome, Armed to the Teeth (1976)",Action +133079,Syndicate Sadists (1975),Action|Crime|Thriller +133081,Manhunt in the City (1975),(no genres listed) +133083,Gang War in Milan (1973),Action|Crime|Thriller +133089,Seven Blood-Stained Orchids (1972),Crime|Horror|Thriller +133109,Due Magnum .38 per una città di carogne (1975),Action|Crime +133115,We Could Be King (2014),Documentary +133117,Canopy (2013),Adventure|Drama|War +133119,Raised by Wolves (2014),Horror +133121,Rites of Spring (2011),Horror|Thriller +133123,Barbie as The Princess & the Pauper (2004),Animation|Children|Comedy +133125,Barbie: Fairytopia (2005),Animation|Children +133127,Barbie of Swan Lake (2003),Animation|Children +133129,Barbie in Princess Power (2015),Animation|Children +133131,Barbie Diaries (2005),Animation|Children +133133,Barbie: Princess Charm School (2011),Animation|Children|Fantasy +133135,Barbie and the Secret Door (2014),Adventure|Animation|Children|Fantasy +133137,Barbie: A Fairy Secret (2011),Animation|Children|Fantasy +133139,Barbie in the 12 Dancing Princesses (2006),Animation|Children +133141,Barbie: The Princess & The Popstar (2012),Animation|Children +133143,Barbie and the Diamond Castle (2008),Animation|Children +133145,Barbie in A Mermaid Tale (2010),Animation|Children|Fantasy +133147,Barbie as the Island Princess (2007),Animation|Children +133149,Barbie in A Mermaid Tale 2 (2012),Animation|Children +133151,Barbie and the Three Musketeers (2009),Animation|Children +133153,Barbie in the Pink Shoes (2013),Animation|Children +133155,Barbie in 'A Christmas Carol' (2008),Animation|Children +133157,Barbie: The Pearl Princess (2014),Animation|Children +133159,Barbie: Mariposa and The Fairy Princess (2013),Animation|Children|Fantasy +133161,Barbie Presents: Thumbelina (2009),Animation|Children +133163,Barbie Fairytopia: Magic of the Rainbow (2007),Animation|Children|Fantasy|Romance +133165,Barbie Fairytopia: Mermaidia (2006),Adventure|Animation|Children|Fantasy +133167,Barbie as Rapunzel (2002),Animation|Children +133169,Barbie and the Magic of Pegasus 3-D (2005),Animation|Children|Romance +133171,Barbie & Her Sisters in A Pony Tale (2013),Animation|Children +133173,Barbie Mariposa and Her Butterfly Fairy Friends (2008),Animation|Children|Fantasy +133175,Barbie and the Rockers: Out Of This World (1987),Animation +133177,Der var engang (1966),Children|Comedy +133179,Nøglen til Paradis (1970),Comedy +133181,Sommer i Tyrol (1964),Children|Comedy +133183,The Casual Vacancy (2015),(no genres listed) +133185,The Bélier Family (2014),Comedy +133187,Green Sails (2000),Action|Thriller +133195,Hitman: Agent 47 (2015),Action|Crime|Thriller +133197,How Sherlock Changed the World (2013),(no genres listed) +133199,Working Girls (1986),Drama +133201,Doug Stanhope: Before Turning the Gun on Himself (2012),(no genres listed) +133203,Doug Stanhope: Oslo - Burning the Bridge to Nowhere (2011),Comedy +133205,Doug Stanhope: Beer Hall Putsch (2013),Comedy +133207,Chelsea Peretti: One of the Greats (2014),Comedy +133209,Listening to You: The Who Live at the Isle of Wight (1998),Documentary +133215,The Comedians of Comedy: Live at The Troubadour (2007),Comedy|Documentary +133217,B/W (2015),Comedy|Crime|Sci-Fi +133219,Tinker Bell and the Great Fairy Rescue (2010),Adventure|Animation|Children|Fantasy +133221,The Man Who Skied Down Everest (1975),Documentary +133223,One Eyed Girl (2015),Drama|Thriller +133225,Island of Lemurs: Madagascar (2014),Documentary +133227,Billy the Kid (1930),Drama|Romance|Western +133229,Court (2014),(no genres listed) +133231,The Secret Lives of Dorks (2013),Comedy +133233,Run & Jump (2014),Drama +133235,A Fighting Man (2014),Drama +133237,The Last Sentence (2012),Drama +133239,When Comedy Went to School (2013),Comedy|Documentary|Drama +133241,Jimmy P.: Psychotherapy of a Plains Indian (2013),Drama +133243,Call + Response (2008),(no genres listed) +133255,Regret (2013),Drama +133259,Yasmin (2004),Drama +133262,Bluebird (2014),Drama +133264,Charlie Bubbles (1967),(no genres listed) +133270,One Little Pill (2014),Documentary|Drama +133274,Bukowski: The Last Straw (1980),Documentary +133276,The Dead Lands,Action +133279,Two Raging Grannies (2013),Documentary +133281,Ricki and the Flash (2015),Drama +133283,Lignes de Front (2010),Drama +133285,Back Issues: The Hustler Magazine Story (2014),Documentary|Drama +133287,Kissinger (2011),Documentary +133289,100 Degrees Below Zero (2013),Action|Sci-Fi +133291,Pump (2014),Documentary +133293,Variety (1983),Drama +133295,Cocaine Cowboys: Reloaded (2014),Documentary +133297,Genius on Hold (2013),(no genres listed) +133299,Tar Creek (2009),(no genres listed) +133301,The Water Front (2007),Documentary +133303,Jedi Junkies (2010),Documentary +133305,Breeders (1997),Horror|Sci-Fi +133307,Time Zero: The Last Year of Polaroid Film (2012),Documentary +133309,Warriors Two (1978),Action|Drama +133311,The 'Socalled' Movie (2010),Documentary +133313,Hank: 5 Years from the Brink (2013),Documentary +133315,We’re Not Broke (2012),Documentary +133317,Sushi: The Global Catch (2012),Documentary +133319,Resistance (2015),Documentary +133321,Exile Nation: The Plastic People (2014),(no genres listed) +133323,The Fruit Hunters (2012),Documentary +133325,Ethos (2011),Documentary +133327,Linda and Abilene (1969),Drama|Western +133329,Radio Unnameable (2012),Documentary +133331,Germ (2013),Horror +133333,DamNation (2014),Documentary +133335,Lifted (2010),Children|Drama +133337,Backdoor (2000),Drama +133339,1915 (2015),Drama +133343,The Workshop (2007),Documentary +133345,The Mad Monster (1942),Drama|Horror|Romance +133347,Ride (2015),Comedy +133349,The Eichmann Show (2015),Drama +133353,Lightning Over Water (1980),Documentary +133355,Notebooks on Cities and Clothes (1989),Documentary +133357,The Seven Five (2014),Documentary +133361,The Golden Calf (1968),Comedy|Drama +133365,Partisan (2015),Drama|Thriller +133367,LFO (2013),Drama|Sci-Fi +133369,Sincere Heart (1953),Drama|Romance +133371,Christopher and His Kind (2011),Drama|Romance +133373,The Sicilian Connection (1972),Crime|Thriller +133375,Hush (2012),Thriller +133377,Infini (2015),Horror|Sci-Fi|Thriller +133379,Off World (2013),Sci-Fi +133381,Harry Dean Stanton: Partly Fiction (2012),Documentary +133383,Shrew's Nest (2014),Drama|Horror|Thriller +133385,Shuffle (2012),Mystery|Romance|Thriller +133387,August Winds (2014),Documentary|Mystery +133389,Piku (2015),Comedy|Drama +133391,Babysitter's Black Book (2015),Drama|Thriller +133393,"Tommy Cooper: Not Like That, Like This (2014)",Comedy +133397,Down and Dangerous (2014),Crime|Thriller +133399,German Angst (2015),Action|Fantasy|Horror|Mystery +133401,Sune i fjällen (2014),Comedy +133404,Black Angel (1980),Drama|Fantasy +133407,Dirty Business (2009),Documentary +133409,Barnum! (1986),(no genres listed) +133413,High Road (2012),Comedy +133415,Alexia (2013),Horror|Thriller +133417,Luokkakokous (2015),Comedy +133419,Pitch Perfect 2 (2015),Comedy +133421,The Gospel According to Philip K. Dick (2001),Documentary +133423,Le viager (1972),Thriller +133429,Get Mean (1976),Western +133437,Class Enemy (2013),Drama +133439,Farmland (2014),Documentary +133441,Tricked: The Documentary (2013),Documentary +133455,Crazy Westerners (1967),Western +133457,"Django, Prepare a Coffin (1968)",Action|Western +133463,Forgotten Pistolero (1969),Western +133473,The Prince and the Pauper (2000),(no genres listed) +133489,Human Cobras (1971),Crime|Thriller +133493,Three Supermen in the Jungle (1970),(no genres listed) +133501,I guappi non si toccano (1979),(no genres listed) +133505,Everything for Sale (1969),Drama +133507,Echo Planet (2012),Animation +133509,Love Hotel (2014),(no genres listed) +133531,Innocent Bystanders (1973),Action|Thriller +133533,The Long Day's Dying (1968),Drama +133539,A Buddha (2005),Drama +133541,Two Hundred Thousand Dirty (2014),Comedy +133543,Manos sucias (2014),Drama|Thriller +133545,Just Before I Go (2014),Comedy|Drama +133547,El bosque de Karadima (2015),Drama +133555,Winter People (1989),Drama|Romance +133557,Joshua Then and Now (1985),(no genres listed) +133561,Two Gentlemen Sharing (1969),Drama|Romance +133569,Metal Skin (1994),Action|Drama +133571,Specters (1987),Horror +133573,Der Schatz (1923),Drama|Romance +133575,Do Detectives Think? (1927),Comedy +133577,You're Darn Tootin' (1928),Comedy +133579,Addicted (2002),Drama|Mystery|Romance|Thriller +133581,Bad Hair (2013),Drama +133583,Bessie (2015),Drama +133585,The Little Chaos (1966),(no genres listed) +133591,Here Is Your Life (1966),Drama +133593,Iverson (2014),Documentary +133600,The Murder Man (1935),Crime|Drama|Romance|Thriller +133602,Nightingale (2015),Drama|Mystery|Thriller +133610,The City Tramp (1966),Drama +133624,"Coward, The (1915)",Drama|War +133626,The Good Lie (2013),Thriller +133628,The Iron Sheriff (1957),(no genres listed) +133630,The Life of Vergie Winters (1934),(no genres listed) +133638,Tunisian Victory (1944),Documentary|War +133643,The Stone Roses: Made of Stone (2013),Documentary +133645,Carol (2015),Drama|Romance +133647,Thought Crimes (2015),Documentary +133649,Three Inches (2011),Action|Drama|Sci-Fi +133651,El Medico: The Cubaton Story (2012),Documentary +133653,Roald Dahl's Esio Trot (2015),Comedy +133655,"Montevideo, God Bless You! (2010)",Adventure|Drama|Romance +133657,Pédale douce (1996),Comedy +133667,Dear America: Letters Home from Vietnam (1987),Documentary|War +133671,Code Black (2014),Documentary +133673,The King of Arcades (2014),Documentary +133675,Anonymous Rex (2004),Action|Fantasy|Sci-Fi +133677,"Usain Bolt, La Légende (2012)",(no genres listed) +133679,The American Scream (2012),Documentary +133689,Pound of Flesh (2015),Action +133691,Stripped (2014),Documentary +133693,Accused (2014),Drama|Thriller +133695,Ankhon Dekhi (2014),Comedy|Drama +133697,Gulaal (2009),Crime|Drama +133699,Black Friday (2004),Crime|Drama|Thriller +133701,Anthrax (2001),(no genres listed) +133703,Rough Cut (2008),Action|Drama +133706,The Buttercream Gang (1992),Children|Drama +133708,For Love or Money (2014),Romance +133710,Strangerland (2015),Drama|Thriller +133712,Office Romance (1977),Comedy|Romance +133714,The Backwater Gospel (2011),(no genres listed) +133716,Bootleggers (1961),Comedy|Crime +133718,Garpastum (2005),(no genres listed) +133720,You Don't Choose Your Family (2011),Adventure|Comedy +133722,Persecuted (2014),Action|Adventure|Drama|Thriller +133724,The Dorm (2014),Horror|Thriller +133727,Susie's Hope (2013),(no genres listed) +133729,Sleepaway Camp III: Teenage Wasteland (1989),Comedy|Horror +133731,After (2012),Mystery|Thriller +133733,The hands (2006),Drama +133735,Betty Blowtorch: And Her Amazing True Life Adventures (2003),Documentary +133737,Design Is One (2012),Documentary +133739,Lenin's Guard (1965),Drama +133741,The Cold Summer of 1953 (1988),Action|Crime|Drama +133743,Kokoko (2012),(no genres listed) +133745,The Ransom of Red Chief (1998),Action|Children|Comedy|Drama +133747,Monsters: Dark Continent (2014),Drama|Sci-Fi|Thriller +133749,Reminiscence (2014),Horror|Thriller +133753,Teacher of the Year (2015),Comedy +133757,The Happening (1967),Comedy +133759,Eyeborgs (2009),Action|Adventure|Sci-Fi|Thriller +133761,The Mountain Road (1960),Drama|War +133767,Andaz Apna Apna (1994),Comedy|Drama|Romance +133769,Hera Pheri (2000),Comedy +133771,The Lobster (2015),Comedy|Romance|Sci-Fi +133773,Beautiful and Twisted (2015),Crime|Drama|Thriller +133775,"Abar, the First Black Superman (1977)",Action|Drama|Sci-Fi +133778,The Farewell Party (2014),Drama +133780,Güeros (2014),Comedy|Drama +133782,Maggie (2015),Drama|Horror|Thriller +133784,"Ilsa, the Tigress of Siberia (1977)",Horror|Thriller +133792,The Designated Victim (1971),Thriller +133796,Thunderstruck (2004),Comedy +133798,Hot Pursuit (2015),Action|Comedy +133800,Permissive (1970),Drama +133802,Slow West (2015),Action|Thriller|Western +133804,Offline (2012),Drama +133806,The Hybrid (2014),Action|Sci-Fi +133808,Meet the Mormons (2014),Documentary +133810,The Mad (2007),Comedy|Horror|Thriller +133812,Malarek (1988),Action +133814,The Mars Underground (2007),Documentary +133816,Martial Law (1991),Action +133818,Me and the Kid (1993),Children|Comedy|Crime|Drama +133820,Midgets Vs. Mascots (2009),Comedy|Documentary +133822,The Midnight Hour (1985),Comedy|Horror|Romance +133824,The Human Centipede III (Final Sequence) (2015),Horror +133826,Mikey (1992),Horror +133828,Mistrial (1996),(no genres listed) +133830,Model by Day (1994),Action|Adventure +133832,The Green Inferno (2014),Horror|Thriller +133835,Just About Famous (2015),(no genres listed) +133837,Alien Origin (2012),Fantasy|Sci-Fi|Thriller +133849,Rita da Cascia (2004),(no genres listed) +133851,In the Shadow of the Sun (2012),Documentary +133853,Chappaqua (1967),Drama +133859,Deli Man (2015),Documentary +133861,Sparkle (1976),Drama +133863,Rags and Tatters (2013),Drama +133865,Southern Rites (2015),Documentary +133867,Barely Lethal (2015),Action|Adventure|Comedy +133869,Spooks: The Greater Good (2015),Action|Thriller +133871,Woman Times Seven (1967),Comedy|Drama|Romance +133873,The Fencer (2015),Drama +133875,The Salt of Life (2011),Comedy +133877,Hurricane (1979),Action|Drama|Romance +133879,Carry On Don't Lose Your Head (1966),Comedy +133881,The Stationmaster Meets His Match (1980),Comedy +133883,Suzanne (2013),Drama +133885,"The Other One: The Long, Strange Trip of Bob Weir (2014)",Documentary +133887,Ballet 422 (2014),Documentary +133891,J.A.C.E. (2011),Drama +133893,Brave Story (2008),Animation|Fantasy|Sci-Fi +133895,Restless Virgins (2013),Drama +133897,Leopardi (2014),Drama +133900,A Fish in the Bathtub (1999),(no genres listed) +133909,Bulldog Drummond's Peril (1938),Adventure|Crime|Mystery|Romance|Thriller +133911,Bulldog Drummond's Bride (1939),Action|Thriller +133915,Bulldog Drummond at Bay (1937),Action|Thriller +133919,Bulldog Drummond's Secret Police (1939),Mystery|Thriller +133921,Bulldog Drummond in Africa (1938),Action +133923,Bulldog Drummond Comes Back (1937),Action|Crime|Mystery|Thriller +133925,Bulldog Drummond's Revenge (1937),Adventure|Mystery +133945,Deep Web (2015),Documentary +133951,Ginza Cosmetics (1951),Drama +133964,"On Any Sunday, The Next Chapter (2014)",Documentary +133966,Piccadilly Jim (2004),(no genres listed) +133982,Shakedown (2002),Action|Drama|Thriller +133986,Success At Any Price (1934),Drama +133988,Seventeen Again (2000),Children|Comedy|Drama|Fantasy +134004,What Love Is (2007),Comedy|Romance +134006,Wife (1953),Drama +134009,You Can't Run Away from It (1956),(no genres listed) +134011,The Girl with the Hat Box (1927),(no genres listed) +134013,Static (2012),Drama|Horror|Mystery|Thriller +134015,"Flapper, The (1920)",Comedy +134017,You Are My Sunshine (2015),Drama|Romance +134019,The Monkey King (1964),Animation +134021,5 to 7 (2014),Comedy|Drama|Romance +134023,Seymour: An Introduction (2014),Documentary +134025,Open Secret (2013),(no genres listed) +134029,Into Thin Air: Death on Everest (1997),Action|Adventure|Drama +134033,Parole de flic (1985),Thriller +134035,Fear in the Night (1947),Drama|Thriller +134041,Afonya (1975),Comedy|Drama|Romance +134043,The Flight (1970),Drama|War +134045,Byelorussian Station (1971),Drama +134049,Il lupo di mare (1987),Comedy +134057,"Due cuori, una cappella (1975)",(no genres listed) +134059,"It Can Be Done, Amigo (1972)",Comedy|Western +134069,Starship Rising (2014),Action|Sci-Fi +134071,No Path Through Fire (1968),Drama|War +134073,We'll Live Till Monday (1968),Drama|Romance +134077,The Red Snowball Tree (1974),Drama +134079,The Beginning (1970),Comedy|Romance +134083,Walking the Streets of Moscow (1963),Comedy|Romance +134085,Don't Grieve! (1969),Comedy|Drama|Romance +134087,Oblomov (1980),Comedy|Drama|Romance +134089,Triumph Over Violence (1965),Documentary|War +134093,Short Stories (2012),Comedy|Drama|Mystery +134095,My Love (2006),Animation|Drama +134097,Gardens in Autumn (2006),(no genres listed) +134099,The Cow (1990),Animation|Drama +134101,A Driver for Vera (2004),Drama +134103,Blackbird (2007),Drama +134105,Plus one (2008),Comedy|Drama +134107,The Stroll (2003),(no genres listed) +134109,Radio Day (2008),Comedy +134111,Dura (2005),Drama +134113,Kung Fu Rascals (1992),(no genres listed) +134115,Waiting for Godot (2001),Drama +134117,San Andreas Quake (2015),Action|Sci-Fi +134120,"Unman, Wittering and Zigo (1971)",Mystery|Thriller +134122,Voyage to the Planet of Prehistoric Women (1968),Sci-Fi +134124,Lady Frankenstein (1973),Horror|Sci-Fi +134126,The Lookalike (2014),Crime|Drama|Thriller +134128,The Anonymous People (2013),Documentary +134130,"Martian, The (2015)",Action|Adventure|Sci-Fi +134152,Treasure Island (1972),Adventure|Children +134154,What the Peeper Saw (1971),Drama|Horror|Thriller +134156,Road (2014),Documentary +134158,Return to Sender (2015),Thriller +134160,Vazhakku Enn 18/9 (2012),Drama +134162,I Am Omega (2007),Action|Horror|Sci-Fi|Thriller +134164,The Alien Factor (1978),Horror|Sci-Fi +134166,Magical Universe (2014),Documentary +134168,Concerning Violence (2014),Documentary +134170,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi +134172,Morgan (2012),Drama +134174,Follow Me: The Yoni Netanyahu Story (2012),Documentary|War +134176,The Light Thief (2011),Drama +134178,Detective Byomkesh Bakshy (2015),Crime|Thriller +134180,Badlapur (2015),Action|Drama +134182,Holiday (2014),Action|Romance|Thriller +134184,Elections Day (2007),Comedy +134194,The Last Desperate Hours (1974),Action|Crime|Thriller +134202,Nobody's Perfect (2008),Documentary +134204,A Hard Day (2014),Action|Crime|Thriller +134206,Child's Play (1972),Thriller +134208,Woman in a Dressing Gown (1957),Drama|Romance +134210,Shinsengumi: Assassins of Honor (1970),Action|Drama +134212,Tiger Bay (1959),Drama|Thriller +134214,Youth (2015),Drama +134222,Yield to the Night (1956),Drama +134224,The Yellow Balloon (1953),(no genres listed) +134226,No Trees in the Street (1959),Drama +134228,A Man Could Get Killed (1966),Comedy +134230,Wake Up Sid (2009),Comedy|Drama|Romance +134232,Mission Kashmir (2000),Action|Drama +134234,Lakshya (2004),Action|Drama +134236,Iqbal (2005),Drama +134238,Ghulam (1998),Crime|Drama|Romance +134240,Rangeela (1995),(no genres listed) +134244,Streetwise (1984),Documentary +134246,Survivor (2015),Action|Thriller +134248,Hot Girls Wanted (2015),Documentary +134250,Striped Trip (1961),Comedy +134252,That Munchhausen (1979),Comedy|Drama|Fantasy +134254,"C'mon, Let's Live a Little",(no genres listed) +134256,Poliisin Poika (1998),(no genres listed) +134262,The Commander (1988),Action|War +134266,To Kill a Stranger (1987),(no genres listed) +134268,Ground Zero (1987),Thriller +134276,Nothing Underneath (1985),Thriller +134278,The Treasure of the Amazon (1985),Action|Thriller +134282,Jaguar Lives! (1979),Action|Comedy +134290,The Uncanny (1977),Horror +134294,Journey Into Fear (1975),(no genres listed) +134322,The Man in the Sky (1957),Drama +134326,The Taming of the Scoundrel (1980),Comedy +134328,La maquina de bailar (2006),(no genres listed) +134330,Bombay Talkies (2013),(no genres listed) +134332,Bhool Bhulaiyaa (2007),Comedy|Horror|Thriller +134334,Phir Hera Pheri (2006),Comedy +134336,Mohra (1994),Action|Drama|Thriller +134338,Sarkar Raj (2008),Action|Adventure|Drama +134340,Ek Ajnabee (2005),(no genres listed) +134342,Sarkar (2005),Action|Drama +134344,Hulchul (2004),Comedy|Drama|Romance +134346,Samay: When Time Strikes (2003),(no genres listed) +134348,Border (1997),Action +134350,The Red House (1947),Mystery|Thriller +134352,1942: A Love Story (1994),Action|Drama|Romance +134354,Nayak: The Real Hero (2001),Action|Drama +134356,Virasat (1997),(no genres listed) +134358,The Redwood Massacre (2014),Fantasy|Horror +134360,A Gift of Miracles (2015),Drama +134362,Curse of the Witching Tree (2015),Horror +134366,The Last Days of the World (Sekai saigo no hibi) (2011),Comedy|Drama|Fantasy +134368,Spy (2015),Action|Comedy +134370,Still the Water (2014),Romance +134372,"Strange Affair of Uncle Harry, The (1945)",Drama|Thriller +134374,Tinker Bell (2008),Adventure|Animation|Children|Fantasy +134376,Dazzle (1999),Children|Fantasy +134378,Living Is Easy With Eyes Closed (2013),Comedy|Drama +134381,Melody (2014),Drama +134383,Power Trip (2003),Documentary +134385,Pingpong (2006),Drama +134389,Dögkeselyű (1982),Crime|Drama|Thriller +134391,Domino Kid (1957),Western +134393,Trainwreck (2015),Comedy +134395,The Busy Body (1967),Comedy|Drama +134398,The Ministers (2009),Crime|Thriller +134402,Zephyr Springs (2013),Thriller +134405,È arrivato mio fratello (1985),(no genres listed) +134407,7 Kilos in 7 Days (1986),(no genres listed) +134409,Department Store (1986),Comedy +134411,Noi uomini duri (1987),(no genres listed) +134413,Roba da ricchi (1987),(no genres listed) +134415,Da grande (1987),(no genres listed) +134423,Le comiche (1990),Comedy +134425,Piedipiatti (1990),(no genres listed) +134427,The Comics 2 (1991),Comedy +134429,Infelici e contenti (1992),(no genres listed) +134433,Le nuove comiche (1994),(no genres listed) +134437,Mollo Tutto (1995),Comedy +134449,Il Ragazzo di Campagna (1984),Comedy +134453,Rich and Poor (1983),Comedy|Romance +134459,"Heads I Win, Tails You Lose (1982)",Comedy +134469,I'm Photogenic (1980),Comedy +134487,"Oh, Serafina! (1976)",Comedy|Drama +134493,Di che segno sei? (1975),(no genres listed) +134495,"Paolo Barca, maestro elementare, praticamente nudista (1975)",(no genres listed) +134497,La poliziotta (1974),(no genres listed) +134499,Night Train to Terror (1985),Horror +134501,The Bonesetter (2004),(no genres listed) +134503,The Offspring (1987),(no genres listed) +134505,Si le vent soulève les sables (2007),Drama|War +134507,The Alley Tramp (1968),(no genres listed) +134509,A Virgin Among the Living Dead (1973),Horror +134511,Flesh Eating Mothers (1988),Comedy|Horror +134513,Matilda (1978),Children|Comedy|Crime +134515,BMX Bandits (1983),Adventure|Crime|Drama +134517,Forbidden World (1982),Horror|Sci-Fi +134519,Suspicious Truth (2015),Comedy +134521,Casa Grande (2014),Drama +134524,Turtle Power: The Definitive History of the Teenage Mutant Ninja Turtles (2014),Documentary +134526,Zodiac: The Race Begins... (2012),Adventure|Animation +134528,Aloha (2015),Comedy|Drama|Romance +134530,Mars (2010),Animation|Comedy|Romance|Sci-Fi +134532,Wonderwall (1968),Drama|Romance +134536,Cannibal Vegetarian (2012),Drama|Thriller +134538,The Battle of Neretva (1969),Drama|War +134540,Tempest (1928),Drama|Romance +134549,Piazza Fontana: The Italian Conspiracy (2012),Drama +134551,Steel (2012),Drama +134553,Tutto tutto niente niente (2012),Comedy +134555,Tutta colpa di Freud (2014),Comedy +134557,Amiche da morire (2013),Comedy|Crime|Romance +134559,See You Tomorrow (2013),Comedy +134561,Mi rifaccio vivo (2013),Comedy +134563,Sole a catinelle (2013),Comedy +134565,What a Beautiful Day (2011),Comedy +134569,She's Funny That Way (2015),Comedy +134571,Pudhupettai (2006),(no genres listed) +134575,The Mafia Only Kills in Summer (2013),Comedy|Crime|Romance +134579,After Lucia (2012),Drama +134581,A Fierce Green Fire (2013),Documentary +134583,Misery Loves Comedy (2015),Comedy|Documentary +134585,Six Acts (2012),Drama +134587,Song One (2014),Drama +134589,Vessel (2014),Documentary +134591,The Lion’s Mouth Opens (2014),(no genres listed) +134593,Maqbool (2003),Action +134595,Man of the Story (1996),(no genres listed) +134597,Convict (2014),Action|Crime|Drama +134599,"The Rolling Stones: Ladies & Gentlemen, the Rolling Stones (1973)",Documentary +134601,Lost Soul: The Doomed Journey of Richard Stanley's Island of Dr. Moreau (2014),Documentary +134603,The Nun (2013),Drama +134605,Men Don't Cry (1968),Comedy +134607,Autumn (1990),Comedy +134609,Kilplased (1974),Animation +134611,Spring (1969),Comedy|Drama +134613,Summer (1976),Comedy|Drama +134615,The Last Relic (1969),Adventure|Romance +134617,Tommy Tucker's Tooth (1922),Animation|Comedy|Documentary +134619,Alice's Wonderland (1923),Animation|Comedy +134621,A Flying Ship (1979),Animation|Children +134623,Dragon Hill (2002),Animation +134625,The Last Outlaw (1993),Action|Western +134627,"Arabella, the pirate's daughter (1983)",(no genres listed) +134629,Flight World War II (2015),Action|Sci-Fi|War +134631,Living Images (2013),(no genres listed) +134633,Tony 10 (2012),Children +134635,Magnus (2007),Drama +134637,Orps: The Movie (2009),Children|Comedy +134639,My Sister's Kids in Africa (2013),Adventure|Children|Comedy +134641,Cherry Tobacco (2014),Drama|Romance +134643,Dungeons & Dragons: Wrath of the Dragon God (2005),Action|Adventure|Fantasy +134645,Ruudi (2006),Children|Comedy|Fantasy +134647,The Rain Fairy (2010),Children|Fantasy +134649,Bad Hair Friday (2012),Thriller +134651,Freerunner (2011),Action +134653,Hier kommt Lola (2010),Children|Comedy|Drama +134657,Cupcakes (2013),Comedy +134659,Hibernatus (1969),Comedy|Sci-Fi +134661,The Cry of the Owl (1987),Drama|Romance +134664,Enter the Dangerous Mind (2013),Thriller +134666,The Amazing Mr Blunden (1972),Children|Fantasy +134678,The Games Maker (2014),Adventure|Children +134680,Taxi (2015),(no genres listed) +134684,Conagher (1991),Action|Romance|Western +134687,Don't Tell the Wife (1937),Comedy +134689,Getting Gertie's Garter (1945),Comedy +134695,It's a Dog's Life (1955),Comedy|Drama +134697,Lucky 13 (2005),Comedy|Romance +134700,Sadilishteto (2014),Drama +134702,Wir waren Könige (2014),Crime|Thriller +134704,Comedy Central Roast of Charlie Sheen (2011),Comedy +134706,Comedy Central Roast of William Shatner (2006),Comedy +134708,Comedy Central Roast of Donald Trump (2011),Comedy +134710,I Am Road Comic (2014),Documentary +134712,Magician: The Astonishing Life and Work of Orson Welles (2014),Documentary +134732,Souls at Sea (1937),Adventure +134740,The Bride Walks Out (1936),Comedy|Romance +134745,Zero Focus (1961),Crime|Drama|Mystery|Thriller +134747,The Deadly Affair (1966),Crime|Drama|Mystery|Romance|Thriller +134749,The Double Man (1967),Mystery|Thriller +134751,The Fantastic Flying Books of Mr. Morris Lessmore (2011),Adventure|Animation|Children|Drama +134757,The Last Hunt (1956),Western +134763,To Trap A Spy (1964),Adventure +134775,Dragon Blade (2015),Action|Adventure|Drama +134777,Jab Tak Hai Jaan (2012),Drama|Romance +134779,Mere Brother Ki Dulhan (2011),Comedy|Drama|Romance +134781,I Hate Luv Storys (2010),Comedy|Drama|Romance +134783,Entourage (2015),Comedy +134785,London Road (2015),Adventure|Mystery|Thriller +134789,If You Were Young: Rage (1970),Drama +134791,Erotikon (1920),Comedy|Drama|Romance +134794,Backyard Dogs (2001),Action|Comedy +134796,Bitter Lake (2015),Documentary +134800,Ventoux (2015),Drama +134802,Murder of a Cat (2014),Comedy|Thriller +134804,Das Ende der Geduld (2014),Drama +134806,Demons of the Mind (1972),Horror|Thriller +134808,No Way Jose (2015),Comedy +134810,Time Of My Life (2012),(no genres listed) +134812,Der Samurai (2014),Fantasy|Horror|Thriller +134815,Happy Ending (2014),Comedy +134817,Heaven and Earth Magic (1962),(no genres listed) +134819,Comedy Central Roast of Flavor Flav (2007),Comedy +134821,Tu dors Nicole (2014),Comedy|Drama +134823,Freedom (2014),Children|Drama +134827,Our Grand Despair (2011),Drama +134829,Ashens and the Quest for the Gamechild (2013),Adventure|Comedy +134831,Paranormal Whacktivity (2013),Comedy|Horror +134833,Comedy Central Roast of Pamela Anderson (2005),Comedy +134835,The Golden Bat (1966),(no genres listed) +134838,Festival (1967),Documentary +134840,The Prospects (2011),(no genres listed) +134843,Die Farbe (2010),Horror|Sci-Fi +134847,Ghost Graduation (2012),Comedy +134849,Duck Amuck (1953),Animation|Children|Comedy +134851,5 Flights Up (2014),Drama +134853,Inside Out (2015),Animation|Children|Comedy +134855,The World Made Straight (2015),Drama +134857,Love in the Time of Civil War (2014),(no genres listed) +134859,The Wolfpack (2015),Documentary +134861,Trevor Noah: African American (2013),(no genres listed) +134863,A BIG Love Story (2012),(no genres listed) +134865,Blackie the Pirate (1971),Action|Adventure|Comedy +134867,Tanu Weds Manu (2011),Comedy|Drama|Romance +134869,Documented (2014),Documentary +134871,The Sisterhood of Night (2015),Drama +134879,Soaked in Bleach (2014),Crime|Documentary|Drama +134881,Love & Mercy (2015),Drama +134883,Technotise: Edit & I (2009),Animation|Sci-Fi|Thriller +134896,Fair of the Dove (1935),(no genres listed) +134900,Snow White and 7 Wise Men (1982),Comedy +134904,La banda Vallanzasca (1977),Crime +134908,For a Book of Dollars,(no genres listed) +134912,The Masked Thief (1975),Western +134915,Amusement (2008),Horror|Thriller +134917,The Better Angels (2014),Drama +134919,Leonie (2010),Drama +134921,A Year in Burgundy (2013),Documentary +134931,Tulips of Haarlem (1970),(no genres listed) +134935,Paul Goodman Changed My Life (2011),Documentary|Drama +134937,Throw Down Your Heart (2009),Documentary +134939,The Garden (2008),Documentary +134941,All My Friends Are Funeral Singers (2010),Comedy|Drama +134943,Spork (2011),Comedy +134945,Police Story 2013 (2013),Action|Crime|Drama|Thriller +134947,Dirt! The Movie (2009),Documentary +134949,Just Like Home (2007),Comedy|Drama +134951,Remote Area Medical (2013),Documentary +134953,The Listening Project (2008),Documentary +134955,New Muslim Cool (2009),Documentary +134957,Ada Apa Dengan Cinta? (2002),Drama +134959,Without You I'm Nothing (1990),Comedy +134963,Café Express (1981),Comedy +134967,Il giocattolo (1979),(no genres listed) +134971,In nome del papa re (1977),Drama +134973,Quelle strane occasioni (1976),(no genres listed) +134979,"Goodnight, Ladies and Gentlemen (1976)",Comedy +134985,"Girolimoni, il mostro di Roma (1972)",Comedy|Drama +134991,Roma bene (1971),Comedy +135003,The American Ruling Class (2005),Documentary +135007,Will Our Heroes Be Able to Find Their Friend Who Has Mysteriously Disappeared in Africa? (1968),Adventure|Comedy|Fantasy +135015,The Treasure of San Gennaro (1966),Comedy +135023,I Knew Her Well (1965),Drama +135027,Susanna tutta panna (1957),Comedy +135031,"Toto, Peppino, and the Hussy (1956)",Comedy +135033,Strigoi (2009),Comedy|Drama|Fantasy|Horror +135041,Eames: The Architect & The Painter (2011),Documentary +135061,In nome del popolo sovrano (1990),(no genres listed) +135067,Il Gaucho (1964),Comedy +135079,I Motorizzati (1962),(no genres listed) +135081,Circo (2011),Documentary +135097,L'Impiegato (1960),Comedy +135117,Before Stonewall (1984),Documentary +135127,Metro (2013),Action|Thriller +135129,The Drunk (2014),(no genres listed) +135131,Mercenaries (2014),Action|Adventure +135133,The Hunger Games: Mockingjay - Part 2 (2015),Adventure +135135,Max (2015),Adventure|Children|Drama +135137,Pixels (2015),Comedy|Sci-Fi +135145,Bad Boys 3,Action|Crime|Thriller +135147,Elle l'adore (2014),Comedy +135151,Forever (2014),Drama +135153,Slightly Scarlet (1956),Action|Crime|Documentary|Thriller +135155,Letter to Brezhnev (1985),Comedy|Romance +135157,Entertaining Mr. Sloane (1970),Comedy +135166,Curfew (2012),Drama +135168,Smithereens (1982),Drama +135170,Pink Narcissus (1971),Drama|Romance +135172,The Brain from Planet Arous (1957),Sci-Fi +135178,Dawg Fight (2015),Documentary +135180,K2: Siren of the Himalayas (2012),Adventure|Documentary +135182,The Men Who Built America (2012),Documentary +135184,Gunnm (1993),Action|Animation|Crime +135186,Daddy and the Muscle Academy (1991),Documentary +135188,Sebbe (2010),Drama +135190,Mission Blue (2014),Documentary +135192,E-Team (2014),Documentary +135194,"The Man Nobody Knew: In Search of My Father, CIA Spymaster William Colby (2011)",Documentary|Drama +135198,The Hairdresser (2010),Comedy|Drama +135200,Chocolate City (2015),Drama +135202,Prime Suspect: Scent of Darkness (1995),(no genres listed) +135204,Madras Cafe (2013),Thriller +135206,Millionaires Express (1986),Action|Comedy +135210,Binta and the Great Idea (2004),Children|Drama +135212,West Bank Story (2005),Comedy +135214,Skills Like This (2007),Comedy +135216,The Star Wars Holiday Special (1978),Adventure|Children|Comedy|Sci-Fi +135218,Chanthaly (2013),Drama|Horror +135220,Camp Takota (2014),Comedy +135222,Blue Summer (1973),Comedy|Drama +135224,Hamari Adhuri Kahaani (2015),(no genres listed) +135226,Such Good People (2014),Comedy|Mystery +135228,The Possibilities Are Endless (2014),Documentary +135230,Mostly Ghostly: Have You Met My Ghoulfriend? (2014),Children|Fantasy +135232,Jailbait Babysitter (1977),Comedy +135234,Pocket Ninjas (1997),Action|Children +135236,Occupy Love (2013),Documentary|Drama +135238,The Sky Above Us (2015),Drama|War +135240,Prime Suspect 5: Errors of Judgement (1996),Crime|Drama +135242,On the Way to School (2013),Documentary +135244,Frankenstein (2005),Drama|Horror|Mystery|Sci-Fi +135246,3: The Dale Earnhardt Story (2004),Drama +135248,Johnny Tsunami (1999),Children|Drama +135250,Johnny Kapahala - Back on Board (2007),Children|Comedy|Drama +135252,'Twas the Night (2001),Children +135256,The Ultimate Christmas Present (2000),Children|Comedy +135258,"Merry Christmas, Drake and Josh (2008)",Comedy +135260,Problem Child 3 (1995),Comedy|Fantasy +135262,The Paper Brigade (1997),Adventure|Children|Comedy +135264,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy +135266,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi +135268,Zenon: Z3 (2004),Adventure|Children|Comedy +135270,"Up, Up, and Away (2000)",Action|Children +135272,Don't Look Under the Bed (1999),Children|Drama +135274,The Luck of the Irish (2001),Adventure|Children|Comedy +135276,Eddie's Million Dollar Cook Off (2003),(no genres listed) +135278,Wendy Wu: Homecoming Warrior (2006),Action|Adventure|Children +135280,18 Year Old Virgin (2009),Comedy +135282,Web Junkie (2014),Documentary +135286,The Curse of Inferno (1997),Comedy|Crime|Drama +135288,Mr. Holmes (2015),Crime|Drama|Mystery +135290,Aachi and Ssipak (2006),Action|Animation|Horror +135292,Bite Size (2014),Documentary +135294,Sniper: Weapons of Retaliation (2009),Action|Drama|War +135296,The Twin (1984),Comedy +135298,Les Coquillettes (2013),Comedy|Drama +135300,Chicks (2010),(no genres listed) +135316,An American in Rome (1954),Comedy +135378,The Knock Out Cop (1973),Action|Comedy|Crime|Drama +135380,Flatfoot in Hong Kong (1975),Action|Comedy|Drama|Thriller +135388,Flatfoot in Africa (1978),Action|Comedy|Crime|Drama +135406,The Antics Roadshow (2011),Documentary +135410,Jig (2011),Documentary +135414,The Last White Knight (2012),(no genres listed) +135420,"The Farm: Angola, USA (1998)",(no genres listed) +135422,The Jewish Cardinal (2013),Drama +135424,Bitter Dream (2004),Comedy|Drama +135430,Impact (2009),Action|Adventure|Drama +135432,Mercenaries (2011),Action|Drama +135434,Nanny Cam (2014),Drama|Mystery|Thriller +135438,Underground (1976),Documentary +135440,Edifício Master (2002),Documentary +135442,The Skeleton Dance (1929),Animation +135444,A.C.A.B.: All Cops Are Bastards (2012),Action|Crime|Drama +135452,Frankenstein vs. The Mummy (2015),Horror +135454,Alien vs. Ninja (2010),Action|Horror|Sci-Fi|Thriller +135456,Ghost in the Shell: Stand Alone Complex - The Laughing Man (2005),Action|Animation|Crime|Sci-Fi +135460,Pablo (2012),(no genres listed) +135462,All the Wilderness (2014),Drama +135464,Walking the Camino: Six Ways to Santiago (2013),Documentary +135466,Evil Behind You (2006),Action|Thriller +135468,Senior Project (2015),Comedy|Drama +135470,Without Fail (2014),Comedy +135472,Les gazelles (2014),Comedy +135474,Mariage chez les Bodin's (2008),Comedy +135476,Amélie au pays des Bodin's (2010),Comedy +135478,Obsessed (2002),Drama|Thriller +135480,The Emperor's New Clothes (2015),Documentary +135484,White Tiger (2012),Action|Adventure|Fantasy|War +135486,Guardian (2001),Action|Drama|Horror|Sci-Fi +135488,Mom's Got a Date With a Vampire (2000),(no genres listed) +135490,Love Lies Bleeding (2008),Action|Crime|Thriller +135492,Kaaka Muttai (2015),(no genres listed) +135494,B.A. Pass (2013),Drama +135498,Once Upon a Time in High School (2004),Action|Drama|Romance +135500,Gabbar Is Back (2015),Action|Drama +135502,The Boy and the World (2013),Animation +135504,Little Boy (2015),Comedy|Drama|War +135506,Do You Believe? (2015),Drama +135508,A Deadly Adoption (2015),Comedy|Thriller +135510,Buster and Billie (1974),Crime|Drama +135512,Three Wishes for Cinderella (1973),Adventure|Children|Drama|Fantasy|Romance +135514,Rhythm is it! (2004),Documentary +135516,Video Violence (1987),Horror +135518,Self/less (2015),Sci-Fi|Thriller +135520,Mythica: A Quest for Heroes (2015),Fantasy +135524,Alex Is Lovesick (1986),Comedy|Drama|Romance +135526,Behind the Camera: The Unauthorized Story of 'Mork & Mindy' (2005),Comedy|Drama +135528,Escape from Sobibor (1987),Drama|Thriller|War +135532,The Last Witch Hunter (2015),Action|Adventure|Fantasy +135534,Krampus (2015),Comedy|Fantasy|Horror +135539,Aurora (2015),(no genres listed) +135541,Noodle (2007),Drama +135545,Ardennes Fury (2014),Action|War +135547,The Misfit Brigade (1987),Action|Adventure|Drama +135549,Battle of Westerplatte (2013),Drama|War +135551,Childish Games (2012),Drama|Horror|Thriller +135553,The Crazy Life (La vida loca) (2008),Documentary +135555,Bluffmaster! (2005),Comedy|Drama|Romance +135557,The Treatment (2014),Thriller +135559,Civilization (1916),Drama|War +135561,The Loretta Claiborne Story (2000),(no genres listed) +135571,The American Film Institute Salute to Frank Capra (1982),Documentary +135573,Frank Capra's American Dream (1997),(no genres listed) +135575,Fultah Fisher's Boarding House (1922),(no genres listed) +135577,Tunnel Vision (1976),Comedy +135579,Dreadnaught (1981),Action +135581,Cabin by the Lake (2000),(no genres listed) +135583,Bhoot (2003),(no genres listed) +135585,Pizza (2012),Comedy|Horror|Romance|Thriller +135587,Raat (1992),Crime|Horror|Thriller +135589,1920 (2008),Drama|Horror|Thriller +135591,You Must Be Scared (2006),Thriller +135593,Darna Mana Hai (2003),Horror +135595,Encounters of the Spooky Kind (1980),Action|Comedy|Fantasy|Horror +135597,High Lane (2009),Action|Horror|Thriller +135599,The Echo (2008),Drama|Horror|Mystery|Thriller +135601,Rockstar (2011),Drama|Romance +135603,Rock On!! (2008),Drama +135605,Time Share (2000),Comedy|Romance +135607,The Policeman (1971),Comedy|Drama +135609,Sidekick (2005),Action|Comedy|Fantasy +135611,Raising Waylon (2004),(no genres listed) +135613,Rabies (2010),Horror +135615,All in (2006),Comedy|Drama +135617,Vig (1998),Drama +135619,Easy Money 3 (2013),Crime|Drama|Thriller +135621,Deepsea Challenge 3D (2014),Documentary +135623,The Fluffy Movie (2014),Comedy +135625,Final Girl (2015),Action|Drama|Thriller +135627,Debug (2014),Horror|Sci-Fi +135629,This is Sodom (2010),Comedy +135631,Three Wise Guys (2005),Comedy +135633,Run (2013),Action|Drama +135635,Le Cactus (2005),Comedy +135637,The Widows of Thursdays (2009),Crime|Drama +135639,Come Dance at My Wedding (2009),Drama +135641,Peeping Toms (1973),(no genres listed) +135643,The Disappointments Room (2015),(no genres listed) +135645,Tipping Point (2007),(no genres listed) +135647,Tommy Tricker and the Stamp Traveller (1988),Children|Fantasy +135649,American Translation (2011),Drama +135651,Actress (2014),Documentary +135655,Lick the Star (1998),(no genres listed) +135657,Iberia (2005),Musical +135659,Nirvana: Live! Tonight! Sold Out!! (1994),Documentary +135667,People of Rome (2003),(no genres listed) +135669,How Strange to be Named Federico: Scola Narrates Fellini (2013),Documentary +135673,Macaroni (1985),Comedy|Drama +135677,The New Monsters (1977),Comedy +135679,The Most Wonderful Evening of My Life (1972),Comedy|Drama|Mystery +135681,Drama of Jealousy (1970),Comedy|Drama +135691,Señorita Justice,(no genres listed) +135693,Iliza Shlesinger: War Paint (2013),Comedy +135695,Jen Kirkman: I'm Gonna Die Alone (And I Feel Fine) (2015),Comedy +135697,Morgan Murphy: Irish Goodbye (2014),Comedy +135699,Grace Stirs Up Success (2015),Children +135701,The Mirror (2014),Horror +135703,Meet the Fokkens (2011),Documentary +135706,Traffic in Souls (1913),Drama +135709,Hells Angels Forever (1983),Documentary +135713,Letters To Sofija (2013),Drama +135715,Archie's Final Project (2011),Comedy|Drama +135717,Dancing Arabs (2014),(no genres listed) +135725,Shiva (1989),Action|Drama +135727,Aarya (2004),Comedy|Drama|Romance +135729,Main Khiladi Tu Anari (1994),Action|Thriller +135731,Jungle (2000),(no genres listed) +135733,Prahaar: The Final Attack (1991),(no genres listed) +135735,Sehar (2005),Action|Thriller +135737,Zakhm (1998),(no genres listed) +135739,The Master (1980),Action|Comedy +135741,Pedicab Driver (1989),Action|Comedy|Drama +135743,Not the Messiah (He's a Very Naughty Boy) (2010),Comedy +135745,Labyrinth (2012),Adventure|Fantasy +135747,The Sinking of the Laconia (2011),Drama|War +135749,The Shadow in the North (2008),Adventure|Mystery|Thriller +135751,Carry On Doctor (1967),Comedy +135753,The Dawns Here are Quiet (1972),Drama|War +135755,Shaolin Intruders (1983),Action|Drama +135757,Don't Give a Damn (1995),Action|Comedy +135759,A Frozen Flower (2008),Drama +135761,Kaminey (2009),Action|Crime|Drama +135763,Company (2002),Action|Drama +135765,Vishwaroopam (2013),Action|Crime|Thriller +135767,Omkara (2006),Crime|Drama +135769,Baadshah (1999),Action|Comedy +135771,Koyla (1997),(no genres listed) +135773,Shool (1999),(no genres listed) +135775,Ghayal (1990),(no genres listed) +135777,Golmaal (2006),Children|Comedy +135779,Royal Tramp (1992),Action|Comedy +135781,Saheb Biwi Aur Gangster (2011),Action|Crime|Drama|Romance|Thriller +135783,Gadar: Ek Prem Katha (2001),(no genres listed) +135785,Knockabout (1979),Action|Adventure|Comedy +135787,Bruce Lee: A Warrior's Journey (2000),Documentary +135789,Shaitan (2011),Action|Crime|Drama|Thriller +135791,Awara Paagal Deewana (2002),Action|Comedy|Crime +135793,The Incredible Kung Fu Master (1979),Action +135795,Mardaani (2014),Action|Drama|Thriller +135797,Shootout at Lokhandwala (2007),Action|Crime|Drama +135799,Josh (2000),(no genres listed) +135801,Righting Wrongs (1986),Action +135803,Five Element Ninjas (1982),Action +135805,Virumandi (2004),Drama +135807,The Invincible Armour (1977),Action|Thriller +135809,Born Invincible (1978),Action +135811,Drunken Master Part II: Dance of the Drunk Mantis (1979),Action|Comedy +135813,The Victim (1980),Action|Drama +135815,The Magnificent Ruffians (1979),Action|Drama +135817,Clan of the White Lotus (1980),Action|Drama +135819,Raakh (1989),(no genres listed) +135821,Shaolin Vs Lama (1983),(no genres listed) +135823,Dhoom 3 (2013),Action|Crime|Thriller +135825,Dragon Ball: Yo! Son Goku and Friends Return!! (2008),Action|Adventure|Animation +135827,The Mystery of Chess Boxing (1979),Action +135829,Dhoom 2 (2006),Action|Crime|Drama|Thriller +135831,Never Back Down 2: The Beatdown (2011),Action|Drama +135833,One-Armed Boxer (1972),Action|Adventure +135835,Summer Killer (2002),Action|Comedy +135837,Ram Gopal Varma Ki Aag (2007),Action|Comedy +135839,Shahid (2013),Drama +135841,Siddharth (2013),Drama +135844,Blank: A Vinylmation Love Story (2014),Animation +135846,Trava: Fist Planet (2003),Animation|Sci-Fi +135848,Kite (1998),Action|Animation|Crime|Thriller +135850,Like a Dragon (2007),Action|Crime|Drama +135852,Boychoir (2014),Drama +135854,Eddie Izzard: Sexie (2003),Comedy +135856,Beyond Gay: The Politics of Pride (2010),Documentary +135859,Rewind (2013),Sci-Fi +135861,Ted 2 (2015),Comedy +135863,Fortress (2012),Action|War +135865,Mothman (2010),Horror|Sci-Fi +135867,Rabbit Fire (1951),Animation|Children|Comedy +135871,The Invisible Front (2014),Documentary|Drama +135873,Elizabeth Ekadashi (2014),Comedy|Drama +135875,Queen (2014),Comedy +135877,Indigenous (2014),Horror +135881,Sex Is Zero (2002),Comedy|Drama +135885,Absolutely Anything (2015),Comedy|Sci-Fi +135887,Minions (2015),Adventure|Animation|Children|Comedy +135889,The House at the End of Time (2013),Horror +135909,The Stalking Moon (1968),Action|Western +135913,The Great Impostor (1961),Comedy +135915,Afterparty (2013),Horror +135917,"A la legión le gustan las mujeres... y a las mujeres, les gusta la legión (1976)",(no genres listed) +135919,Bhoothnath Returns (2014),Comedy|Drama|Fantasy|Horror +135923,Horst Schlämmer - Isch kandidiere! (2009),Comedy +135925,The Royal Tailor (2014),Drama +135927,Posthumous (2014),Comedy|Drama|Romance +135929,Pardners (1956),Comedy|Western +135931,It Waits (2005),Horror +135933,Milf (2010),Comedy|Drama|Romance +135935,Herman U.S.A. (2001),(no genres listed) +135937,The Silence of the Hams (1994),Comedy|Thriller +135939,Firestarter 2: Rekindled (2002),Horror|Sci-Fi|Thriller +135941,The Secret of the Sword (1985),Animation|Children +135943,Stripper Academy (2007),Comedy +135945,Bottoms Up (2006),Comedy +135947,Killer Tomatoes Eat France! (1992),Comedy|Horror|Sci-Fi +135949,Hallettsville (2009),Thriller +135951,Rumpelstiltskin (1995),Horror +135953,Leroy & Stitch (2006),Animation|Children|Comedy +135955,Ramrod (1947),Western +135957,Dracula II: Ascension (2003),Horror +135959,Universal Soldier III: Unfinished Business (1999),Action|Sci-Fi +135961,Bachelor Party 2: The Last Temptation (2008),Comedy +135963,Double Wedding (2010),Comedy|Drama|Romance +135965,Alice Through the Looking Glass (1998),Children|Fantasy +135967,Pulse 2: Afterlife (2008),Horror|Sci-Fi|Thriller +135969,Lower Learning (2008),Comedy +135971,Return to Sleepaway Camp (2008),Horror +135974,Alpha House (2014),Comedy +135977,Ace Ventura Jr: Pet Detective (2009),Children|Comedy +135979,Next Avengers: Heroes of Tomorrow (2008),Animation|Children +135981,Universal Soldier II: Brothers in Arms (1998),Action|Sci-Fi +135983,Boogeyman 3 (2008),Horror +135985,A Simple Promise (2008),Drama|Romance +135987,Ryan and Sean's Not So Excellent Adventure (2008),Comedy +135989,The Complex (2013),Horror +135991,Premonition (2004),Horror +135993,The Craving (2008),Horror +135995,American High School (2009),Comedy|Romance +135997,Every Jack has a Jill (2009),Children|Comedy|Romance +136000,Journey to the Center of the Earth (1999),Action|Adventure|Children|Fantasy|Sci-Fi +136002,My Big Fat Independent Movie (2005),Comedy +136004,The Bogus Witch Project (2000),Comedy +136006,The Cook (2008),Comedy|Horror +136008,Irish Jam (2006),Comedy +136010,12 Days of Christmas Eve (2004),Children|Comedy|Drama|Fantasy +136012,Bloodsport III (1996),Action|Thriller +136014,The Startup Kids (2012),Documentary +136016,The Good Dinosaur (2015),Animation|Children|Comedy +136018,Black Mass (2015),Crime|Drama +136020,Spectre (2015),Action|Adventure|Crime +136022,Killer Tomatoes Strike Back! (1991),Action|Comedy|Horror|Sci-Fi +136024,The Professional: Golgo 13 (1983),Action|Animation|Crime +136026,The Grand Duel (1972),Western +136030,The Hottie & The Nottie (2008),Comedy|Romance +136032,Senior Skip Day (2008),Comedy +136038,Christmas Vacation '91 (1991),Comedy +136040,Taste of Life (1988),Comedy +136048,L'Ingorgo : Una storia impossibile (1979),Drama +136054,The Scientific Cardplayer (1972),Comedy +136058,Why (1971),Comedy|Drama +136060,Il medico della mutua (1968),Comedy +136080,To Bed or Not to Bed (1963),Comedy +136082,Il maestro di Vigevano (1963),(no genres listed) +136088,The Best of Enemies (1961),Adventure|Comedy|War +136090,Il vigile (1960),(no genres listed) +136098,The Magliari (1959),Drama +136188,Hooking Up (2009),Comedy|Drama +136190,Rover Dangerfield (1991),Animation|Children|Comedy +136192,Night of the Demon (1980),Horror +136194,Dracula III: Legacy (2005),Horror +136196,Chanbara Striptease (2008),Action|Comedy|Fantasy +136198,Cross (2011),Action|Adventure|Fantasy|Sci-Fi +136200,The Terminators (2009),Action|Horror|Sci-Fi +136202,Pinocchio's Revenge (1996),Horror +136204,The Second Mother (2015),Drama +136206,Ninja Academy (1988),(no genres listed) +136208,Noobz (2013),Adventure|Comedy +136210,American Animal (2012),Comedy|Drama +136212,The Howling: Reborn (2011),Horror +136214,Storm (1999),Thriller +136217,Boogeyman 2 (2007),Horror|Thriller +136219,Bad Kids Go to Hell (2012),Comedy|Mystery|Thriller +136221,Hansel & Gretel: Warriors of Witchcraft (2013),Horror|Thriller +136223,18 Meals (2011),Comedy|Drama +136225,Last Train to Freo (2006),Drama|Thriller +136227,The Wicked (2013),Fantasy|Horror|Thriller +136229,Sanitarium (2013),Horror|Thriller +136231,Achmed Saves America (2014),Animation|Comedy +136233,Android Cop (2014),Action|Sci-Fi +136235,Hercules Reborn (2014),Action|Adventure +136237,Freshman Orientation (2004),Comedy +136239,Smart House (1999),Children|Drama|Fantasy|Sci-Fi +136241,The Brass Bottle (1964),(no genres listed) +136243,Four Assassins (2013),Thriller +136245,Scooby-Doo! and the Reluctant Werewolf (1988),Animation|Children|Comedy|Mystery +136247,Scooby-Doo on Zombie Island (1998),Animation|Children|Comedy|Mystery +136249,Scooby-Doo! and the Monster of Mexico (2003),Animation|Children|Comedy|Mystery +136251,Scooby-Doo! Stage Fright (2013),Adventure|Animation|Children +136253,Superman: Brainiac Attacks (2006),Action|Animation|Children +136255,Sex and the Teenage Mind (2002),Comedy +136257,Avengers Grimm (2015),Action|Adventure|Fantasy +136259,Glass House: The Good Mother (2006),Drama|Thriller +136261,Sottozero (1987),Comedy +136265,Satyricon (1969),Comedy +136275,Il tassinaro (1983),(no genres listed) +136279,Journey with Papa (1982),Comedy +136297,Mortal Kombat: The Journey Begins (1995),Action|Animation +136299,Red Victoria,Comedy|Horror +136301,Mega Man (2010),Action|Drama|Sci-Fi +136305,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi +136307,The Scorpion King 4: Quest for Power (2015),Action|Adventure +136309,Scooby-Doo! Moon Monster Madness (2015),Adventure|Animation|Children +136311,My Date with the President's Daughter (1998),(no genres listed) +136315,Bersaglio altezza uomo (1979),Action +136331,"Chill Out, Scooby-Doo! (2007)",Action|Adventure|Animation|Children|Mystery +136333,Scooby-Doo and the Ghoul School (1988),Animation|Children +136335,Scooby-Doo and the Alien Invaders (2000),Animation|Children +136337,Scooby-Doo and the Cyber Chase (2001),Animation|Children +136339,Scooby-Doo! in Where's My Mummy? (2005),Animation|Children|Thriller +136341,Scooby-Doo! and the Samurai Sword (2009),Animation|Children|Comedy +136343,Scooby-Doo! And the Legend of the Vampire (2003),Animation|Children|Comedy +136345,Aloha Scooby-Doo! (2005),Animation|Children +136347,Scooby-Doo Meets the Boo Brothers (1987),Adventure|Animation|Children|Comedy +136349,Scooby-Doo! Pirates Ahoy! (2006),Animation|Children|Comedy|Mystery +136351,Scooby-Doo! and the Goblin King (2008),Animation|Children|Comedy|Thriller +136353,Scooby-Doo! and the Loch Ness Monster (2004),Animation|Children|Comedy +136355,Big Top Scooby-Doo! (2012),Animation|Children|Comedy +136357,Scooby-Doo! Legend of the Phantosaur (2011),Animation|Children|Mystery +136359,Scooby-Doo Goes Hollywood (1979),Animation|Children|Comedy +136361,Scooby-Doo! Mask of the Blue Falcon (2012),Adventure|Animation|Children|Comedy|Fantasy +136363,Scooby-Doo! Music of the Vampire (2011),Animation|Children|Mystery +136365,Scooby-Doo! Adventures: The Mystery Map (2013),Children +136367,The Flintstones & WWE: Stone Age Smackdown (2015),Animation|Children|Comedy +136369,The Jetsons Meet the Flintstones (1987),Animation|Children +136371,Quints (2000),(no genres listed) +136373,Drake And Josh Go Hollywood (2006),Adventure|Children|Comedy|Crime +136375,Slap the Monster on Page One (1972),(no genres listed) +136381,"Bisturi, la mafia bianca (1973)",(no genres listed) +136419,The Executioner's Song (1982),Crime|Drama +136421,I Am Afraid (1977),(no genres listed) +136423,Confessions of a Police Captain (1971),Crime|Drama +136425,"The Case Is Closed, Forget It (1971)",Crime|Thriller +136427,High Crime (1973),Crime|Drama|Thriller +136429,Samurai Wolf (1966),Action|Adventure|Drama +136431,Pappa ante Portas (1991),Comedy +136433,Bill Maher: I'm Swiss (2005),Comedy +136435,Bill Maher: Live From DC (2014),Comedy +136437,Clash of Egos (2006),Comedy +136439,Dinotasia (2012),Animation|Documentary +136441,Ferdinand the Bull (1938),Animation|Children|Comedy +136443,Gabriel Iglesias: Hot and Fluffy (2007),Comedy +136445,George Carlin: Back in Town (1996),Comedy +136447,George Carlin: You Are All Diseased (1999),Comedy +136449,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi +136451,Hellboy Animated: Sword of Storms (2006),Action|Animation|Fantasy|Sci-Fi|Thriller +136453,How to Play Football (1944),(no genres listed) +136455,Iron Man & Captain America: Heroes United (2014),Action|Adventure|Animation +136457,Jeff Dunham: Arguing with Myself (2006),Comedy +136459,Jeff Dunham: Spark of Insanity (2007),Comedy +136461,Jeff Ross Roasts America (2012),Comedy +136463,Jim Gaffigan: Beyond the Pale (2006),Comedy +136465,John Oliver: Terrifying Times (2008),Comedy +136467,Kim Possible: A Sitch in Time (2003),Action|Adventure|Animation|Children +136469,Larry David: Curb Your Enthusiasm (1999),(no genres listed) +136471,Kevin Hart: Laugh at My Pain (2011),Comedy|Documentary +136473,Love at First Hiccough (1999),Comedy +136475,Oktapodi (2007),Animation +136477,One Froggy Evening (1955),Animation|Children|Comedy +136479,Pablo Francisco: Bits and Pieces (2004),Comedy +136481,Pluto's Blue Note (1947),(no genres listed) +136483,Prep & Landing (2009),Animation|Children|Fantasy +136485,Robot Chicken: Star Wars (2007),Animation|Comedy|Sci-Fi +136487,Sexaholix... A Love Story (2002),Comedy +136489,Terror on the Midway (1942),Animation|Fantasy +136491,Ishqiya (2010),Thriller +136493,Chandni Bar (2001),Drama +136495,Dev.D (2009),Drama|Romance +136497,Khosla Ka Ghosla! (2006),Comedy +136499,Pablo Francisco: They Put it Out There (2011),Comedy +136501,Three Little Pigs (1933),Animation|Children|Comedy|Musical +136503,Tom and Jerry: Shiver Me Whiskers (2006),Animation|Children|Comedy +136505,True North (2006),Drama +136507,One Kine Day (2011),Drama +136509,Little Big Master (2015),Drama +136511,Jeff Dunham: All Over the Map (2014),Comedy +136513,Jeff Dunham: Minding the Monsters (2012),Comedy +136515,Jeff Dunham: Controlled Chaos (2011),Comedy +136517,Jeff Dunham: Jeff Dunham's Very Special Christmas Special (2008),Comedy +136519,Protégé (2007),Drama|Thriller +136521,Stop the Pounding Heart (2013),Documentary|Drama +136524,The Amityville Playhouse (2015),(no genres listed) +136526,Thunder In Paradise (1993),(no genres listed) +136528,Miracle In Lane 2 (2000),Children|Drama +136530,Pokémon: Jirachi Wish Maker (2003),Action|Adventure|Animation|Children +136532,Ator IV: The Hobgoblin (1990),Adventure|Fantasy +136534,Grandma Got Run Over by a Reindeer (2000),Animation|Children +136536,Cassadaga (2011),Horror|Thriller +136538,Teen Titans: Trouble in Tokyo (2007),Action|Adventure|Animation|Children|Sci-Fi +136540,The FP (2012),Comedy +136542,Mickey's Christmas Carol (1983),Animation|Children +136544,My Pet Monster (1986),Comedy +136546,Puppet Master X: Axis Rising (2012),Fantasy|Horror|Sci-Fi +136548,Gingerdead Man 2: Passion of the Crust (2008),Comedy|Horror +136550,Gingerdead Man 3: Saturday Night Cleaver (2011),Comedy|Horror|Sci-Fi +136552,Gingerdead Man vs. Evil Bong (2013),Comedy|Horror +136554,Sirius (2013),Documentary +136556,Kung Fu Panda: Secrets of the Masters (2011),Animation|Children +136560,Shelter Island (2011),(no genres listed) +136562,Steve Jobs (2015),Drama +136564,Macbeth (2015),Drama +136572,Cyanide (2013),Drama +136574,Fracture (2010),Drama +136576,Green Street Hooligans: Underground (2013),Action|Drama +136578,Les Petits princes (2013),Comedy|Drama +136580,The Prodigies (2011),Animation|Sci-Fi +136582,Je vous aime tres beaucoup (2010),Children|Comedy +136584,Nos Amis Les Terriens (2007),Comedy|Drama|Fantasy +136586,Buttoners (1997),Comedy +136588,Santa Claus is Comin' to Town (1970),Animation|Children|Fantasy +136590,The Thirteenth Year (1999),(no genres listed) +136592,Freaky Friday (1995),(no genres listed) +136594,Dear Dumb Diary (2013),Children +136596,Mickey's Trailer (1938),Animation +136598,Vacation (2015),Adventure|Comedy +136602,Creep (2014),Horror|Thriller +136604,#1 Cheerleader Camp (2010),Comedy|Drama +136606,Le chant du Styrène (1958),(no genres listed) +136608,L'amour existe (1960),Documentary +136610,Charlotte and Her Boyfriend (1960),(no genres listed) +136612,The Great Madcap (1949),Comedy +136614,The Office (1966),Documentary +136616,Tramway (1966),Drama +136618,Pokémon the Movie: Genesect and the Legend Awakened (2013),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +136620,Pokémon: Arceus and the Jewel of Life (2009),Animation|Children +136622,Pokémon: The Rise of Darkrai (2007),Adventure|Animation|Children|Fantasy +136624,Pokémon: Lucario and the Mystery of Mew (2005),Adventure|Animation|Fantasy +136626,See No Evil 2 (2014),Horror +136628,Clerks - The Flying Car (2002),Comedy +136630,Clerks: The Lost Scene (2004),(no genres listed) +136632,Jurassic City (2015),Action|Sci-Fi +136634,Dinosaur Island (2014),Children|Fantasy|Sci-Fi +136636,The Pact II (2014),Horror|Mystery|Thriller +136638,The Ouija Experiment 2: Theatre of Death (2015),Horror +136640,Back to the Jurassic (2015),Adventure|Animation|Children +136642,Madame Bovary (2014),Drama +136646,Turkey Shoot (2014),Action +136652,Phantom Halo (2015),Crime|Drama|Thriller +136654,The Face of an Angel (2015),Drama +136656,Manglehorn (2014),Drama +136658,Old Fashioned (2014),Drama|Romance +136660,Larry Gaye: Renegade Male Flight Attendant (2015),Comedy +136664,Wild Horses (2015),Crime|Drama +136666,Search Party (2014),Comedy +136672,The Living (2014),Thriller +136674,Maya the Bee Movie (2014),Animation|Children +136676,Extinction (2014),Adventure|Thriller +136678,Tooken (2015),Action|Comedy +136680,Battle For SkyArk (2015),Action|Adventure|Children|Sci-Fi +136684,Party 7 (2000),Action|Comedy +136686,After the Ball (2015),Comedy +136688,Private Number (2015),Horror|Mystery|Thriller +136692,Helicopter Mom (2014),Comedy +136694,See You In Valhalla (2015),Comedy|Drama +136696,Absolution (2015),Action|Adventure|Crime|Thriller +136698,Skin Trade (2014),Action|Drama|Thriller +136702,The Four Warriors (2015),Adventure +136704,Prova a volare (2007),Comedy|Drama +136706,Cinema of Vengeance (1994),(no genres listed) +136708,La Notte del mio primo amore (2006),Horror|Thriller +136710,Parole sante (2007),(no genres listed) +136712,Moebius (1996),Sci-Fi +136718,The Devil's Hand (2014),Horror|Thriller +136722,The Mummy Resurrected (2014),Horror +136724,Dial a Prayer (2015),Comedy|Drama +136726,The Last Time You Had Fun (2015),Comedy|Drama +136730,Armed Response (2013),Action|Comedy +136732,Axe Giant - The Wrath of Paul Bunyan (2013),Fantasy|Horror|Sci-Fi +136736,Faith of Our Fathers (2015),(no genres listed) +136738,The Towrope (2012),Drama +136740,Bedtime for Bonzo (1951),Comedy +136742,Un'estate al mare (2008),(no genres listed) +136744,Uncut - Member only (2003),Comedy|Mystery +136746,Sweet Dreams (1981),(no genres listed) +136748,The Brooke Ellison Story (2004),Drama +136750,The Dive from Clausen's Pier (2005),Drama|Romance +136752,A Ticket to Space (Un ticket pour l'espace) (2006),Comedy|Sci-Fi +136754,Champs (2015),Documentary +136756,The Listening (2006),Thriller +136758,Pasolini prossimo nostro (2006),Documentary +136762,Animals in Love (2007),Documentary +136764,Postman Pat: The Movie (2014),Adventure|Animation|Children +136774,Christian Mingle (2014),(no genres listed) +136776,Fishing Naked (2015),Comedy +136778,The Squeeze (2015),Comedy|Drama +136784,From the Dark (2015),Horror +136786,Careful What You Wish For (2015),Thriller +136788,Any Day (2015),Drama|Romance|Thriller +136792,Nailbiter (2013),Horror +136794,Eat (2014),Drama|Horror|Thriller +136796,Zombie Resurrection (2014),Horror +136798,Let Us Prey (2014),Horror +136800,Robot Overlords (2014),Action|Adventure|Sci-Fi +136804,Russell Madness (2015),Comedy +136806,Along the Roadside (2013),Comedy|Romance +136810,Attack of the Sabretooth (2005),Horror +136812,The Millennials (2015),Comedy|Drama|Romance +136814,X/Y (2014),Drama +136816,Bad Asses on the Bayou (2015),Action|Comedy +136818,Silent Retreat (2015),Horror|Thriller +136822,The Man in the Iron Mask (1977),Adventure +136824,L'erba proibita (2002),(no genres listed) +136826,The Defiant Ones (1986),Drama +136828,Invitation to Hell (1984),Horror|Mystery|Sci-Fi|Thriller +136832,Punishment Room (1956),(no genres listed) +136834,The Eye: Infinity (2005),Horror +136836,Ray of Sunshine (1933),(no genres listed) +136838,Kiss me Kismet (2006),Comedy|Romance +136840,Da geht noch was! (2013),Comedy|Drama|Romance +136842,The Price of Life (1987),(no genres listed) +136844,Who Killed Captain Alex? (2010),(no genres listed) +136846,The Phantom Planet (1961),Sci-Fi +136848,Shabd (2005),Drama|Romance +136850,Villain (1971),Crime|Drama|Thriller +136857,GirlHouse (2014),Horror|Thriller +136859,The Lovers (2015),Action|Adventure|Romance|Sci-Fi +136866,The Temple (2011),(no genres listed) +136868,Mumbai Pune Mumbai (2010),Romance +136870,Pune 52 (2013),Crime|Drama|Thriller +136872,Zapatlela (1993),(no genres listed) +136874,Natarang (2010),(no genres listed) +136876,The Village Had No Walls (1995),(no genres listed) +136878,Paradh (2010),(no genres listed) +136880,Vaastupurush,(no genres listed) +136882,Me Shivajiraje Bhosale Boltoy (2009),Drama +136884,Time Pass (2014),Comedy|Romance +136886,Taryanche Bait (2011),(no genres listed) +136888,Dragonslayer (2011),Documentary +136890,Eastern Boys (2014),Drama +136892,Dreams with Sharp Teeth (2008),Documentary +136894,All This Mayhem (2014),Documentary +136898,The Elusive Corporal (1962),Comedy|Drama|War +136900,Experiment in Evil (1959),Drama|Horror +136904,The Railrodder (1965),Comedy +136906,Les Héritiers (2014),Comedy|Drama +136908,The Last Match (2013),Drama|Romance +136910,Quarter to Two Before Jesus Christ (Deux heures moins le quart avant Jésus-Christ) (1982),Comedy +136912,God Loves Caviar (2012),Adventure +136916,Vendetta (2015),Action +136918,Age Of Kill (2015),Action +136920,Horsehead (2014),Fantasy|Horror +136922,Bordering on Bad Behavior (2015),Action|Comedy +136924,Tekken: Kazuya's Revenge (2014),Action +136926,Gemma Bovery (2014),Comedy|Drama|Romance +136930,95ers: Time Runners (2013),Sci-Fi|Thriller +136932,Out of the Dark (2014),Horror|Thriller +136936,88 (2015),Action|Thriller +136938,Repli-Kate (2002),Comedy|Sci-Fi +136940,Goddess (2013),Comedy +136942,The Art of Love (2011),Comedy|Romance +136946,Modern Vampires (1998),Action|Comedy|Horror|Romance|Thriller +136948,Soof (2013),Comedy|Romance +136950,Mom (1991),Comedy|Horror +136952,Monster Brawl (2011),Comedy|Horror +136954,More Brains! A Return to the Living Dead (2011),Documentary +136956,R.O.D - Read or Die (2001),Animation +136958,Mortuary (1983),Horror +136960,Mosquito (1995),Horror|Sci-Fi +136962,Mother's Boys (1994),Drama|Thriller +136964,Murder in New Hampshire: The Pamela Wojas Smart Story (1999),Crime|Drama +136966,Murder Without Motive: The Edmund Perry Story (1992),(no genres listed) +136968,Mutator (1989),Sci-Fi +136970,My Life's in Turnaround (1994),(no genres listed) +136972,Ödipussi (1988),Comedy +136974,Jinn (2014),Thriller +136976,Cam2Cam (2014),Horror|Thriller +136978,Yes Nurse! No Nurse! (2002),Comedy +136980,Ed Gein: The Butcher of Plainfield (2007),Crime|Drama|Horror|Mystery +136986,Dil (1990),Comedy|Drama|Romance +136988,The Good Mistress (2014),Drama +136990,The Perfect Student (2011),Crime|Mystery|Thriller +136992,When He Didn't Come Home (1998),(no genres listed) +136994,Best Friends (2005),(no genres listed) +136996,The Wrong Girl (1999),Drama|Thriller +136998,The Wrong Girl (2015),Drama +137000,The Perfect Teacher (2010),Drama|Thriller +137002,The Sitter (2007),Horror|Thriller +137004,Rain Without Thunder (1993),(no genres listed) +137006,Poison (2000),Mystery|Thriller +137008,A Mother's Nightmare (2012),Crime|Mystery|Thriller +137010,The Nightmare Nanny (2013),Drama|Thriller +137012,Deadly Daycare (2014),Action|Drama +137014,A Sister's Nightmare (2013),Thriller +137016,A Daughter's Nightmare (2014),Drama|Mystery|Thriller +137018,A Sister's Revenge (2013),Drama|Mystery|Thriller +137020,A Sister's Secret (2009),Drama|Mystery|Thriller +137022,A Nanny's Revenge (2012),Drama|Thriller +137024,The Perfect Nanny (2000),Thriller +137026,Tainted Blood (1993),Mystery|Thriller +137028,"Augusta, Gone (2006)",(no genres listed) +137030,Dangerous Child (2001),(no genres listed) +137032,The Perfect Neighbor (2005),Drama|Thriller +137034,Perfect High (2015),(no genres listed) +137036,The Surrogate (2013),Drama|Mystery|Thriller +137038,The Perfect Wife (2001),Drama|Thriller +137040,Hunger Point (2003),Drama +137042,When Friendship Kills (1996),Drama +137044,A Killer Among Friends (1992),Drama|Mystery +137046,The Perfect Assistant (2008),Crime|Mystery|Thriller +137048,Perfect Child (2007),Drama +137050,The Rival (2006),Thriller +137052,A Job to Kill For (2006),Drama|Thriller +137056,The Secretary (1995),(no genres listed) +137060,The Tenth Circle (2008),Drama|Mystery|Thriller +137062,Naruto Shippuden the Movie: Road to Ninja (2012),Action|Adventure|Animation|Fantasy +137064,Twisted Desire (1996),Crime|Drama +137066,Accused at 17 (2009),Drama|Thriller +137068,The Preacher's Daughter (2012),Drama +137070,The Killing Game (2011),Mystery|Thriller +137072,Born Bad (2011),Drama|Thriller +137074,The Guy From Harlem (1977),Action +137078,Stranger in My House (1999),Thriller +137088,Treasure Island (1999),Adventure|Children +137090,The Initiation of Sarah (1978),Horror +137108,Seal Team Six: The Raid on Osama Bin Laden (2012),Action|Crime|Drama|Thriller +137112,Once Upon a Time in Mumbaai (2010),Crime|Drama|Thriller +137114,Love in a Puff (2010),Comedy|Drama|Romance +137126,Lucky Miles (2007),Action|Comedy +137128,Kept and Dreamless (2005),Drama +137142,The Lost Moment (1947),Drama|Romance|Thriller +137144,1000 To 1 (2014),Drama +137150,Caterpillar (2010),Drama|War +137154,Let the Women Wait! (1998),Comedy +137172,Down Three Dark Streets (1954),Thriller +137174,The Deserted Station (2002),Drama +137196,Rhymes for Young Ghouls (2013),Drama +137210,Salt of This Sea (2008),Drama|Romance +137228,Stand Clear of the Closing Doors (2014),Drama +137232,Flat Top (1952),Action|Drama|War +137238,Submarine Command (1952),Drama|War +137242,Spilt Milk (2010),(no genres listed) +137250,It’s Only Make Believe (2013),Drama +137262,U Want Me 2 Kill Him? (2014),Drama|Thriller +137268,Druid Peak (2014),Adventure|Drama +137276,The Lawyer (1970),(no genres listed) +137278,Cyberbully (2015),Drama +137280,Los Enchiladas! (1999),Comedy +137282,The Genius of Marian (2013),Documentary +137284,Sierra Leone's Refugee All Stars,(no genres listed) +137286,Speciesism: The Movie (2013),Documentary +137288,Gräfin Mariza (1958),Comedy +137290,Rock Slyde (2010),Comedy|Mystery|Thriller +137292,L'uomo della carità,(no genres listed) +137294,The Life Coach (2005),Comedy +137296,Heaven Knows What (2014),(no genres listed) +137299,The Fort (2014),(no genres listed) +137303,An Optical Poem (1937),(no genres listed) +137307,Antarctic Journal (2005),Horror|Mystery|Thriller +137311,Love and the City (2009),Comedy|Romance +137315,Hyena (2014),Crime|Drama +137317,"Don't Cry, Mommy (2012)",Action|Drama +137319,The Rainbow (1989),Action|Drama|Romance +137325,Chloé (1996),Drama|Romance +137335,Clutter (2013),(no genres listed) +137337,Amy (2015),Documentary +137339,Basil (1998),Drama|Romance +137345,That Demon Within (2014),Crime|Thriller +137347,Dasepo Naughty Girls (2006),Comedy +137353,In Lieu of Flowers (2013),Comedy|Drama|Romance +137365,Fascination (1979),Drama|Horror +137367,Supremacy (2014),Crime|Drama +137377,Dear Prudence (2010),Drama +137381,The George McKenna Story (1986),Drama +137383,Tom and Jerry: Spy Quest (2015),Animation +137385,Tom and Jerry & The Wizard of Oz (2011),Animation|Children +137387,Tom and Jerry: The Magic Ring (2002),Animation|Children|Comedy +137389,Tom and Jerry: The Fast and the Furry (2005),Animation|Children|Comedy +137391,Tom and Jerry Meet Sherlock Holmes (2010),Animation|Children +137393,Tom and Jerry's Giant Adventure (2013),Animation|Children +137395,FBI Frog Butthead Investigators (Mais qui a re-tué Pamela Rose ?) (2012),Comedy +137399,Heart Street (2014),Comedy|Romance +137403,Swimming Upstream (2002),Drama +137409,Phantom of the Mall: Eric's Revenge (1989),Horror +137421,"Inara, the Jungle Girl (2012)",Adventure +137423,La stratégie de l'échec (2000),Comedy +137425,TalhotBlond (2012),Drama +137427,EM (2008),Drama|Romance +137431,Leaving Barstow (2008),Drama|Romance +137437,Son of a Lion (2007),(no genres listed) +137441,The Wee Man (2013),Drama +137445,The Riverman (2004),Crime|Drama|Thriller +137455,The Last Push (2012),Sci-Fi +137457,Blue Lagoon: The Awakening (2012),Romance +137463,16-love (2012),Children|Comedy|Drama|Romance +137469,Some Velvet Morning (2013),Drama +137471,Tracks (1977),Drama +137473,The Hunt for the Hidden Relic (2002),Adventure +137475,Sonic The Hedgehog: The Movie (1996),Action|Adventure|Animation +137478,Hyenas (2010),Drama|Horror +137482,Le coup du berger (1956),(no genres listed) +137484,A Story of Water (1961),Romance +137486,El truco del manco (2008),Drama +137488,Le laboratoire de l'angoisse (1971),(no genres listed) +137490,Three Daughters (Teen Kanya) (1961),Comedy|Drama|Fantasy +137494,Who Killed Pasolini? (1995),Drama +137496,Vingt-quatre heures de la vie d'un clown (1945),(no genres listed) +137505,Black Heat (1976),Action|Crime|Drama +137507,Cinderella 2000 (1977),Fantasy|Sci-Fi +137557,The Immoral Mr. Teas (1959),Comedy +137561,Saturn in Opposition (2007),Drama +137563,Stung (2015),Comedy|Horror +137565,The Last Survivors (2014),Action|Thriller +137570,Beloved Sisters (2014),Drama|Romance +137572,Syksyllä kaikki on toisin (1978),(no genres listed) +137574,"Helsinki, Forever (2008)",(no genres listed) +137579,Dog Star Man: Prelude (1961),(no genres listed) +137581,Dog Star Man: Part I (1962),Documentary +137583,Dog Star Man: Part II (1963),(no genres listed) +137585,Dog Star Man: Part III (1964),(no genres listed) +137587,Dog Star Man: Part IV (1964),(no genres listed) +137593,Hooligan (1998),(no genres listed) +137595,Magic Mike XXL (2015),Comedy|Drama +137610,Casa dell'amore... la polizia interviene (1978),Thriller +137612,Babai (2015),Drama +137614,Jackie & Ryan (2015),Drama +137616,7 Minutes (2014),Crime|Drama|Thriller +137638,Liza (1972),Drama|Romance +137640,The Audience (1972),Comedy|Drama +137642,The Seed of Man (1969),Drama|Fantasy|Romance|Sci-Fi +137646,"Oggi, domani, dopodomani (1965)",Comedy +137654,The Conjugal Bed (1963),Comedy|Drama +137660,El Pisito (1959),(no genres listed) +137662,Los Chicos (1959),(no genres listed) +137666,The Black Kung Fu Experience (2012),(no genres listed) +137670,Loves Her Gun (2014),Drama +137672,Vacation! (2010),Comedy|Crime +137682,Good Night (2013),Comedy|Drama +137696,Grave Secrets: The Legacy of Hilltop Drive (1992),Horror|Thriller +137705,Fifteen and Pregnant (1998),Drama +137707,Fading of the Cries (2011),Action|Fantasy|Horror|Mystery +137715,Rey Gitano (2015),Comedy +137723,Babysitter Massacre (2013),Horror +137737,Darkness Falls (1999),Drama|Horror|Romance|Thriller +137749,The Butterfly Room (2012),Horror|Thriller +137751,Mrs. Ashboro's Cat (2003),Children|Thriller +137757,Model Behavior (2000),Children|Comedy|Drama +137759,Susie Q (1996),Children|Comedy|Drama|Mystery +137761,The Search for General Tso (2014),Documentary +137763,The Immortalists (2014),Documentary +137765,Love Comes Lately (2008),Comedy|Drama|Romance +137767,Dimensions (2011),Drama|Sci-Fi +137781,Screwed (2011),Action|Crime +137797,The Lady and the Highwayman (1989),Action|Drama|Romance +137815,Ultimate Heist (2009),Action|Adventure|Thriller +137817,Battle of the Brave (2004),Drama|Romance|War +137819,Gross Misconduct (1993),Drama|Thriller +137823,Devoured (2012),Drama|Horror|Thriller +137825,Neverlake (2013),Drama|Horror|Mystery +137835,Callie & Son (1981),Drama +137853,El camino (2008),Drama +137859,Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans (1993),Action|Adventure|Animation +137861,ドラゴンボール Z あつまれ! 悟空ワールド (1992),Action|Adventure|Animation +137863,Dragon Ball Z: Resurrection of F (2015),Action|Adventure|Animation|Fantasy +137867,Embryo (1976),Action|Horror|Sci-Fi|Thriller +137871,Counterpoint (1967),Action|Adventure|War +137873,Stonemouth (2015),(no genres listed) +137875,"Rag. Arturo De Fanti, Bancario Precario (1980)",(no genres listed) +137879,Vieni avanti cretino (1982),Comedy +137887,Alla mia cara mamma nel giorno del suo compleanno (1974),(no genres listed) +137898,Señor Droopy (1949),Animation +137900,Accidental Love (2015),Comedy|Romance +137904,"I, Claudius (1976)",Drama +137906,The Apocalypse Code (2007),Action|Adventure +137908,Mammoth (2006),Action|Comedy|Horror|Sci-Fi +137910,The Restless (2006),Action|Drama|Romance +137914,Love Thy Neighbor (2006),Drama|Thriller +137920,Bombay Velvet (2015),(no genres listed) +137926,Sugar (2013),Drama +137930,Cave of the Sharks (1978),Action|Adventure|Horror +137932,"Colpo grosso, grossissimo...anzi probabile (1972)",Comedy +137934,Cross Current (1971),(no genres listed) +137940,Sistemo l'America e torno (1974),(no genres listed) +137944,Barking Water (2010),Drama +137952,Monk Dawson (1998),Drama +137958,Love & Air Sex (2013),Comedy +137992,I Am I (2013),Drama +138008,New Year (2011),(no genres listed) +138010,The Other Me (2000),Children|Comedy|Fantasy +138012,Turn the Beat Around (2010),Drama +138014,The Two Mr. Kissels (2008),Drama +138016,Silent Witness (2011),Crime|Drama +138018,Victoria Day (2009),Drama +138020,Big Muddy (2014),Crime|Western +138022,Man in the Mirror: The Michael Jackson Story (2004),Documentary|Drama +138024,"Michael Jackson: Dangerous Tour (Bucharest, 1992) (1992)",(no genres listed) +138026,Michael Jackson: Number Ones (2003),(no genres listed) +138028,Tsumugi (2004),Drama|Romance +138030,The Chinese Mayor (2015),Documentary|Drama +138032,Hunger (1974),Animation +138034,The Border (2007),Drama +138036,"Man from U.N.C.L.E., The (2015)",Action|Adventure|Comedy +138038,The Widowmaker (2015),Documentary +138056,Expecting (2013),Comedy|Drama +138066,Last Day of Summer (2009),Comedy|Drama +138070,Deserter (2002),Drama|War +138074,Pulsar (2011),Drama|Mystery|Romance|Thriller +138086,The Kitchen (2012),Comedy|Drama +138104,Justice League: Gods and Monsters (2015),Action|Animation +138108,Her Fatal Flaw (2006),Crime|Drama|Mystery|Thriller +138118,Call Me (1988),Drama|Thriller +138122,Cinemanovels (2013),Comedy|Drama|Romance +138128,Enigma (2009),Sci-Fi +138132,Kill Cruise (1990),Adventure|Drama|Thriller +138146,Wicked Ways (1999),Drama|Thriller +138154,Stalled (2013),Comedy|Horror +138166,Invader (1997),Romance|Sci-Fi +138168,The Chateau Meroux (2011),Comedy|Drama|Romance +138180,All Eyes And Ears (2015),(no genres listed) +138184,Treehouse (2014),Horror|Mystery|Thriller +138186,Sorrow (2015),Crime|Drama|Horror +138198,Greg Fitzsimmons: Life on Stage (2013),(no genres listed) +138200,Nothing Bad Can Happen (2013),Drama +138202,Burying the Ex (2015),Comedy|Horror +138204,7 Days in Hell (2015),Comedy +138206,Echoes of War (2015),Drama|Thriller|Western +138208,"Walk, The (2015)",Drama +138210,13 Hours (2016),Drama +138214,French Women (2014),Comedy +138216,Mondo Candido (1975),Adventure|Comedy +138218,Meet Him And Die (1976),(no genres listed) +138222,Station to Station (2014),Drama +138224,East Wind (Vent d'Est) (1993),Drama +138226,Monk With a Camera (2014),Documentary +138228,The Town That Was (2007),(no genres listed) +138230,Staten Island Summer (2015),Comedy +138232,Aalavandhan (2001),Thriller +138234,Augustine (2012),Drama +138236,Battle of the Coral Sea (1959),War +138248,Calendar Girl Murders (1984),Crime +138258,Nasty Baby (2015),Drama +138260,Bad Night (2015),Adventure +138268,Breaking the Silence (1992),Drama +138286,This Is Not an Exit: The Fictional World of Bret Easton Ellis (1998),Documentary +138294,"Thelma, Louise et Chantal (2010)",(no genres listed) +138296,Azzurro (2000),(no genres listed) +138298,Bar Sport (2011),Children|Comedy +138300,Welcome to the North (2012),Comedy +138302,Some Say No (2011),Comedy +138304,Come Dio comanda (2008),(no genres listed) +138306,Women Vs Men (2011),Comedy +138308,Giulia Doesn't Date at Night (2009),Drama|Thriller +138310,Unlikely Revolutionaries (2010),(no genres listed) +138314,The Commander and the Stork (2012),(no genres listed) +138316,The Father and the Foreigner (2010),(no genres listed) +138318,The Worst Christmas of My Life (2012),Comedy +138320,Il primo incarico (2011),Drama +138322,Il rosso e il blu (2012),(no genres listed) +138324,Isole (2011),(no genres listed) +138326,Italians (2009),Comedy +138328,The Last Man on Earth (2011),Drama|Sci-Fi +138330,La bella società (2009),Drama +138332,La scuola è finita (2010),(no genres listed) +138334,La peggior settimana della mia vita (2011),Comedy +138336,La vita facile (2011),Comedy|Drama +138338,Lezioni di cioccolato (2007),Comedy +138340,The White Space (2009),(no genres listed) +138344,Men Vs Women (2010),Comedy +138346,Escort in love (2011),Comedy|Drama +138348,Niente paura (2010),(no genres listed) +138350,Tous les soleils (2011),Comedy +138354,Scattered Cloud (2011),(no genres listed) +138356,A Matter of Heart (2009),Comedy|Drama +138358,Saimir's decision (2004),(no genres listed) +138360,Sorelle Mai (2011),Drama +138362,A Special Day (2012),Drama +138364,Una donna per la vita (2012),Comedy +138366,A Quiet Life (2010),Drama +138368,The Landlords (2012),Drama +138370,Every Blessed Day (2012),Comedy +138372,Venti anni (2012),Documentary +138374,All'ultima spiaggia (2012),Comedy +138376,Gli equilibristi (2012),Drama +138378,Una famiglia perfetta (2012),Comedy +138380,The Santa Claus Gang (2010),Comedy +138382,Cosimo and Nicole (2012),(no genres listed) +138386,Il bambino cattivo (2013),(no genres listed) +138388,Crazy Me (2013),Comedy +138390,Tutti contro tutti (2013),Comedy +138392,Buongiorno Papà (2013),Comedy +138394,Mai Stati Uniti (2012),Comedy +138396,There Will Come a Day (2013),Comedy|Drama +138398,Tutto parla di te (2012),(no genres listed) +138400,Ammutta muddica al cinema (2013),Comedy +138402,Welcome Mr. President! (2013),Comedy +138406,Passione sinistra (2013),Comedy +138408,"Bianca come il latte, rossa come il sangue (2013)",Comedy|Drama +138410,Studio illegale (2013),Comedy +138412,Cha cha cha (2013),Crime|Drama +138414,Love & Slaps (2010),Comedy +138416,I Can Quit Whenever I Want (2014),Comedy +138420,La gente che sta bene (2014),Comedy +138422,The Devil's Violinist (2013),Drama +138424,The Future (2013),Drama +138426,Ti ricordi di me? (2014),Comedy +138428,As Melhores Coisas do Mundo (2010),Comedy +138430,Un boss in salotto (2014),Comedy +138432,"Zoran, il mio nipote scemo (2013)",Comedy +138434,A Castle in Italy (2013),Comedy|Drama +138436,The Human Factor (2013),Comedy|Thriller +138438,Aspirante vedovo (2013),Comedy +138440,L'ultima ruota del carro (2013),Comedy|Drama +138442,Noi credevamo (2010),(no genres listed) +138444,Una piccola impresa meridionale (2013),Comedy +138446,Come il vento (2013),Drama +138448,Midnight Sun (2014),Adventure +138450,Andiamo a quel paese (2014),Comedy +138452,I corpi estranei (2013),(no genres listed) +138454,Roanoke: The Lost Colony (2007),Drama +138456,Che ne sarà di noi (2004),(no genres listed) +138458,Tu la conosci Claudia? (2004),Comedy +138460,The Man Who Will Come (2010),Drama +138462,La scuola (1995),Comedy|Drama +138464,Il portaborse (1991),(no genres listed) +138466,Due partite (2009),Drama +138468,Alza la testa (2009),Drama +138470,Break Free (2003),(no genres listed) +138472,Genitori & figli:) - Agitare bene prima dell'uso (2010),Comedy +138474,La seconda notte di nozze (2005),(no genres listed) +138476,A Whole Life Ahead (2008),Comedy +138478,Bianco e nero (2008),Comedy +138480,We Can Do That (2008),Comedy +138482,Let's Hope It's a Girl (1986),Comedy +138484,Just a Father (2008),(no genres listed) +138486,Ex (2009),Comedy +138488,La Matassa (2009),Comedy +138492,Qualunquemente (2011),Comedy +138494,Cado dalle Nubi (2009),Comedy +138496,The Jewel (2011),Drama +138498,Scialla! (2011),Comedy +138500,Bingo Bongo (1982),Comedy +138502,Ale e Franz - È tanto che aspetti? (2002),(no genres listed) +138504,Provocateur (1998),Action|Drama|Thriller +138524,Too Scared to Scream (1985),Horror|Thriller +138526,Death of a Ghost Hunter (2007),Horror|Thriller +138528,Dark Mountain (2013),Horror|Sci-Fi|Thriller +138532,Ghost of Goodnight Lane (2014),Comedy|Horror +138540,Black Day Blue Night (1996),Crime|Drama|Romance|Thriller +138546,The Opposite Sex (2014),Comedy +138558,Skew (2011),Horror|Mystery|Thriller +138564,Rudyland (2001),Documentary +138568,Top of the World (1998),Action|Drama|Thriller +138576,Brutal (2012),Crime +138580,I Can See You (2008),Horror|Thriller +138582,Criminal Passion (1994),Crime|Mystery|Thriller +138586,Shark Week (2012),Horror +138600,Annie's Garden (1997),Drama|Thriller +138602,Lake Placid vs. Anaconda (2015),Action|Horror|Sci-Fi +138606,The Rise and Rise of Bitcoin (2014),Documentary +138608,President (2006),Thriller +138610,"Gallows, The (2015)",Horror +138612,Memory Lane (2011),Crime|Sci-Fi|Thriller +138616,Tangled (2001),Drama|Mystery|Thriller +138618,The Wedding Chest (2005),Comedy|Drama +138620,Christian Finnegan: The Fun Part (2014),Comedy +138624,Elon Gold: Chosen and Taken (2014),Comedy +138626,Giordano Bruno (1973),Drama +138630,In My Dreams (2014),Drama|Fantasy|Romance +138632,Tokyo Tribe (2014),Action|Crime|Drama|Sci-Fi +138634,The Baroness and the Butler (1938),Comedy|Drama|Romance +138636,Young Dragons: Kung Fu Kids (1986),Comedy +138638,Embrace of the Vampire (2013),Horror +138640,Treasure of Matecumbe (1976),Action|Adventure +138642,"Back to Back, Face to Face (1994)",Drama +138650,The Midnight Swim (2014),Drama|Mystery +138652,Dormant Beauty (2012),Drama +138672,Brooklyn Boheme (2012),Documentary +138680,Basilicata Coast to Coast (2010),Comedy|Drama +138682,Smash Cut (2009),Comedy|Horror +138684,Waar (2013),Action|Drama|Thriller +138686,In the Name of God (2008),Drama +138690,Almost Blue (2000),Thriller +138692,Neshoba (2010),Documentary +138694,Gettin' It (2006),Comedy +138696,Hands in the Air (2010),Comedy|Drama|Romance +138698,El vals de los inútiles (2014),Documentary +138702,Feast (2014),Animation|Children|Comedy|Drama|Romance +138706,Adventure (1945),Comedy|Drama|Romance +138713,Bombers B-52 (1957),Drama|Romance +138726,Greased Lightning (1977),Action|Comedy|Drama +138730,Heart of the North (1938),(no genres listed) +138746,Creature (1985),Horror|Sci-Fi|Thriller +138750,Crawl or Die (2014),Horror|Sci-Fi|Thriller +138752,Cloned: The Recreator Chronicles (2012),Drama|Sci-Fi|Thriller +138754,The Rift (1990),Action|Horror|Sci-Fi +138758,Jacob (2011),Horror +138760,Get Lucky (2013),Action +138774,Raising Jeffrey Dahmer (2006),Drama|Horror +138784,This Is Not a Movie (2011),Comedy|Drama|Sci-Fi +138788,Fear Lives Here (2013),Horror|Thriller +138794,Shank (2010),Action|Drama|Thriller +138796,Tom Sawyer & Huckleberry Finn (2014),Action|Adventure|Children|Drama +138798,Joe Dirt 2: Beautiful Loser (2015),Comedy +138800,Loophole (1954),Crime +138802,The Ninja Immovable Heart (2014),(no genres listed) +138804,Finding Fanny (2014),Comedy|Drama|Romance +138806,The Blue Lamp (1950),Action|Comedy|Crime|Romance|Thriller +138808,"The Death of ""Superman Lives"": What Happened? (2015)",Documentary +138816,In Heaven There Is No Beer? (1984),Documentary +138822,Made In Paris (1966),Comedy|Romance +138835,Return to Treasure Island (1988),Adventure|Animation|Comedy +138837,Roadblock (1951),Crime +138863,The Big Broadcast of 1936 (1935),(no genres listed) +138868,The Dream Team (2012),Comedy|Drama|Romance +138870,The Dream Team (2012),Documentary +138878,La Fuga (2001),(no genres listed) +138890,The Magician (1926),Drama|Romance +138892,The Magician (2005),Comedy|Drama +138894,El Mago (1949),(no genres listed) +138898,Hokkabaz (2006),Comedy|Drama +138904,The Phantom of Paris (1931),Drama|Mystery +138914,The Sorcerers (1967),Horror +138916,Ticks (1993),Horror|Sci-Fi +138935,Two O'Clock Courage (1945),Crime|Drama|Mystery +138940,Duska (2007),Drama +138942,Little Hope Was Arson (2013),Documentary +138944,Dragon Ball: Episode of Bardock (2011),Action|Adventure|Animation +138950,The Sci-Fi Boys (2006),Documentary +138952,Scooby-Doo! And Kiss: Rock and Roll Mystery (2015),Animation|Children +138958,Wuthering High (2015),Drama|Thriller +138960,Punk Vacation (1987),Action|Crime|Thriller +138962,Electra (1962),Action +138964,Pale Blood (1991),Action|Horror|Thriller +138966,Nasu: Summer in Andalusia (2003),Animation +138968,The Kreutzer Sonata (2008),Drama|Romance +138994,Drifter: Henry Lee Lucas (2009),Drama|Horror|Thriller +139010,"One, Two, Many (2008)",Comedy +139012,Empty (2011),Action|Drama|Horror|Sci-Fi|Thriller +139020,Werewolf: The Beast Among Us (2012),Drama|Horror +139022,Inside Out (2006),Drama|Mystery|Thriller +139026,Mirror Mirror (1990),Horror +139028,Saviour Square (2006),Drama +139030,Wyjazd Integracyjny (2011),Comedy|Drama|Romance +139032,"Och, Karol 2 (2011)",Comedy|Romance +139034,The Closed Circuit (2013),Crime|Drama +139040,Fantasma d'amore (1981),Drama|Horror|Mystery|Romance +139042,That Night (1993),Drama|Romance +139044,Triptych (1979),(no genres listed) +139046,My Golden Days (2015),Drama +139048,Germany in Autumn (1978),Documentary|Drama +139050,In No Great Hurry: 13 Lessons in Life with Saul Leiter (2014),(no genres listed) +139052,Dark Places (2015),Drama|Mystery|Thriller +139054,Deep Gold (2011),Action|Thriller +139056,I'll Always Know What You Did Last Summer (2006),Horror +139058,Mademoiselle (2001),Drama|Romance +139060,Don Giovanni (1979),Drama +139062,The False Servant (2000),Comedy|Drama +139064,Gang of Four (1989),Adventure|Drama|Mystery +139066,Spin the Bottle (2000),Comedy|Drama|Romance +139068,In Another Country (2012),Drama +139074,The Marriage of Figaro (1975),Comedy +139076,Jeanne la Pucelle I - Les batailles (1994),(no genres listed) +139078,Jeanne la Pucelle II - Les prisons (1994),(no genres listed) +139080,"Up, Down, Fragile (1995)",Comedy|Mystery|Romance +139082,The Vengeance of the Winged Serpent (1984),Adventure|Comedy +139084,Boulevard (2014),Drama +139086,Small Potatoes - Who Killed the USFL? (2009),Documentary +139088,The Legend of Jimmy the Greek (2009),Documentary +139090,The U (2009),Documentary +139092,"Run, Ricky Run (2010)",Documentary +139094,Little Big Men (2010),Documentary +139096,Unmatched (2010),Documentary +139098,Four Days in October (2010),Documentary +139100,Once Brothers (2010),Documentary +139102,Pony Excess (2010),Documentary +139104,9.79* (2012),(no genres listed) +139106,You Don't Know Bo (2012),Documentary +139108,Elway To Marino (2013),Documentary +139110,Hawaiian: The Legend of Eddie Aikau (2013),Documentary +139112,This Is What They Want (2013),(no genres listed) +139114,The Price of Gold (2014),Documentary +139116,Requiem For The Big East (2014),Documentary +139118,Nearlyweds (2013),Romance +139120,Mustang (2015),Drama +139122,The Tender Game (1958),(no genres listed) +139124,Microbe et Gasoil (2015),Comedy +139128,Genius Party Beyond (2008),Animation +139130,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy +139132,Plastic Little: The Adventures of Captain Tita (1994),Animation|Sci-Fi +139134,Soodhu Kavvum (2013),Comedy|Thriller +139136,Veyyil (2006),Drama +139138,Paruthiveeran (2007),Action|Drama +139140,ONEDREAMRUSH (2010),Fantasy +139142,Cowboy in Sweden (1970),(no genres listed) +139144,Hardflip (2012),Action|Drama +139148,Bajrangi Bhaijaan (2015),(no genres listed) +139150,Subramaniapuram (2008),Action|Comedy|Drama|Romance +139153,Eli (2015),Comedy +139155,Un fidanzato per mia moglie (2014),Comedy +139157,Massu Engira Maasilamani (2015),Comedy|Horror|Thriller +139159,Aadhavan (2009),Action|Children|Comedy|Drama|Thriller +139183,The Price of Power (1969),Western +139187,My Dear Killer (1972),Drama|Thriller +139189,The Hired Gun (1975),(no genres listed) +139195,Jim Henson's The Storyteller (1989),Fantasy +139197,I Remember You (1985),(no genres listed) +139199,The Seventh Bullet (1974),(no genres listed) +139201,The Bodyguard (1979),Action|Western +139203,"White, White Storks (1966)",(no genres listed) +139205,Tanu Weds Manu Returns (2015),Comedy|Romance +139207,Intruder (1989),Horror|Thriller +139209,Bo Ba Bu (1998),Comedy|Drama +139211,The Universal Clock: The Resistance of Peter Watkins (2001),Documentary +139213,If I Had Wings (2013),Drama +139215,Fountainhead (1956),Drama +139219,Trucks (1997),Drama|Horror|Sci-Fi|Thriller +139223,Walkout (2006),Drama +139229,Summer City (1977),Drama|Thriller +139233,Sons of Liberty (2013),Action|Sci-Fi +139237,Canal Zone (1977),Documentary +139239,The Guest House (2012),Romance +139241,Stripperland (2011),Comedy|Horror +139243,Strike Force (1975),Crime|Drama|Thriller +139251,Sweet Lorraine (2015),(no genres listed) +139259,A Crack in the Floor (2000),Horror +139263,Toy Soldiers (1984),Action|Drama|Thriller +139267,Dead On (1994),(no genres listed) +139285,Dracula's Widow (1988),Horror|Thriller +139307,Felipe Esparza: They're Not Gonna Laugh At You (2012),Comedy +139311,Road Wars (2015),Action|Sci-Fi +139313,Awaken (2015),Action|Horror|Thriller +139315,LA Apocalypse (2014),Action|Sci-Fi|Thriller +139317,Pressure (2015),Thriller +139319,American Justice (2015),Action +139321,Unknown Caller (2015),Thriller +139325,Eat with Me (2014),Comedy|Romance +139327,Heaven Adores You (2014),Documentary +139329,Can't Stand Losing You: Surviving The Police (2015),Documentary +139331,Leviathan: The Story of Hellraiser and Hellbound: Hellraiser II (2015),Documentary|Horror +139335,Merry Ex-Mas (2014),(no genres listed) +139341,Devil in the Flesh (1998),Horror|Thriller +139343,Noi 4 (2014),Comedy +139371,The Dead and the Damned (2011),Horror|Western +139375,Après la bataille (2014),(no genres listed) +139377,Palimpsest (2006),Thriller +139379,A Woman Alone (1981),Drama +139383,Legacy (2015),Comedy|Drama +139385,The Revenant (2015),Adventure|Drama +139387,Salome (1953),Drama +139397,Peace After Marriage (2013),Comedy|Drama|Romance +139399,The Show (1927),Drama +139401,Giovanna's Father (2008),(no genres listed) +139403,The Right Distance (2007),Drama +139405,The Wind Blows Round (2006),Drama +139407,Draquila - L'Italia che trema (2010),(no genres listed) +139409,Il cosmo sul comò (2008),Comedy +139411,It Begins with the End (2010),Drama|Romance +139413,Rebound: The Legend of Earl 'The Goat' Manigault (1996),Drama +139415,Irrational Man (2015),Drama +139417,Tale of Tales (2015),Fantasy +139419,One Minute Time Machine (2014),Comedy|Mystery|Romance +139421,Looney Tunes: Rabbits Run (2015),Animation|Comedy +139423,Cleveland Abduction (2015),(no genres listed) +139425,The Man Who Wasn't There (1983),Action|Comedy|Fantasy|Sci-Fi +139447,The Lazarus Papers (2010),Action|Drama|Sci-Fi|Thriller +139455,The Cloth (2013),Action|Fantasy|Horror +139467,Mutants (2008),Action|Horror|Sci-Fi +139469,Mr. Hush (2010),Horror +139489,Jinnah (1998),Drama|War +139493,L'arte della felicità (2013),Animation|Drama|Fantasy +139495,Going By The Book (2007),Action|Comedy|Crime +139497,Art Of The Devil (2004),Horror|Mystery +139499,Camp Belvidere (2014),(no genres listed) +139501,Carte Blanche (2015),Drama +139503,Women's Day (2012),Drama +139505,Love My Life (2006),Drama|Romance +139507,Lissi and the Wild Emperor (2007),Animation|Comedy +139509,3faltig (2010),Comedy +139511,Exte: Hair Extensions (2007),Horror +139513,"I Love You, I Don't (1976)",Drama +139515,Slogan (1969),Comedy|Drama|Romance +139517,One Missed Call 2 (2005),Horror|Thriller +139519,One Missed Call 3: Final (2006),Horror +139521,The Boy in the Plastic Bubble (1976),Drama +139523,Allies (2014),Action|War +139525,Cartel Land (2015),Action|Documentary|Drama +139529,The Attic (2008),Horror|Thriller +139533,The Secret Village (2013),Mystery|Thriller +139539,Brightest Star (2014),Comedy|Drama|Romance +139547,Placebo: Soulmates Never Die: Live in Paris 2003 (2004),(no genres listed) +139549,Helena from the Wedding (2010),Comedy|Drama|Romance +139553,Always (2011),Drama +139555,Kiss the Abyss (2010),Horror +139557,Long Arm of the Law (1984),Action|Crime +139559,Mantervention (2014),Comedy|Romance +139567,Sensation (2011),Comedy|Drama|Romance +139575,Baahubali: The Beginning (2015),Action|Drama +139578,La Fleur de l'âge (2013),Comedy +139584,Pokémon Ranger and the Temple of the Sea (2006),Animation|Children +139586,Heart of the Country (2013),Drama|Romance +139588,Neon Maniacs (1986),Horror +139598,Yellowbird (2014),Animation|Children|Comedy +139600,Snow in Paradise (2015),Thriller +139604,Electrical Girl (2001),Comedy +139606,Pantani: The Accidental Death of a Cyclist (2014),Documentary +139608,Learning to Drive (2014),Comedy|Drama|Romance +139610,Spaghetti Story (2013),Comedy +139612,Kattradhu Thamizh (2007),Drama +139614,Julio Begins in July (1979),Drama +139616,The 27th Day (1957),Sci-Fi +139618,The Star Making Machine (2012),(no genres listed) +139620,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama +139622,Gothic & Lolita Psycho (2010),Action|Horror +139624,Law of the Border (1966),Crime|Drama +139626,The Human Experiment (2015),Documentary +139628,"Return to the Philippines, the Leon Cooper Story (2015)",Documentary +139630,Autumn Tale (2000),(no genres listed) +139632,The Sleepwalker (2014),Drama +139634,The True Cost (2015),Documentary +139636,The Blue Elephant (2014),Drama|Horror|Mystery|Thriller +139638,Cut! (2014),Horror|Mystery|Thriller +139640,Ooops! Noah is Gone... (2015),Animation +139642,Southpaw (2015),Action|Drama +139644,Sicario (2015),Crime|Drama|Mystery +139647,Lee Rock (1991),Action|Crime|Drama +139649,UMMAH - Unter Freunden (2013),Comedy +139651,The Bride He Bought Online (2015),(no genres listed) +139653,Winston Churchill: Walking with Destiny (2010),Documentary +139655,Goodnight Mommy (2014),Drama|Fantasy|Horror|Thriller +139657,Crimes of the Past (2009),Action|Drama|Mystery|Thriller +139663,Aftermath (2013),Crime|Thriller +139665,Out of Reach (2013),(no genres listed) +139667,Nowhere to Hide (2009),Thriller +139669,Low Fidelity (2011),(no genres listed) +139675,The Year That Trembled (2002),Drama +139683,Bad Behavior (2013),(no genres listed) +139687,What the Deaf Man Heard (1997),Drama +139701,Spirit Stalkers (2012),Horror +139711,Honor Thy Father (1973),Crime|Drama +139713,Un moment d'égarement (2015),Comedy|Drama +139715,War Pigs (2015),Action|War +139717,10 Cent Pistol (2015),Crime|Thriller +139719,Todd Barry: The Crowd Work Tour (2014),Comedy +139721,X+Y (2014),Comedy|Drama +139723,Dark Was the Night (2014),Horror|Thriller +139727,The Substitute (1961),Animation|Comedy +139731,Djinn (2013),Horror +139733,The Crisis of Civilization (2012),Animation|Documentary +139735,White Cop (2014),(no genres listed) +139737,Resurrected (1989),(no genres listed) +139741,Fatal Contact: Bird Flu in America (2006),Action|Drama|Thriller +139747,Before We Go (2014),Romance +139751,Jitters (2010),Drama +139755,Venetian Bird (1953),Mystery|Thriller +139757,Best of Enemies (2015),Documentary +139759,Lavalantula (2015),Horror|Sci-Fi +139761,Sharktopus vs. Whalewolf (2015),Adventure|Sci-Fi +139763,The Deceased (1965),(no genres listed) +139765,For Here or to Go? (2015),(no genres listed) +139769,Erotic Ghost Story (1987),Drama +139771,Chloe and Theo (2015),Drama +139775,I Am Big Bird: The Caroll Spinney Story (2014),Documentary +139777,Forks Over Knives Presents: The Engine 2 Kitchen Rescue (2011),Documentary +139779,The Phoenix Project (2015),Drama|Sci-Fi +139781,Cocaine Unwrapped (2012),Documentary +139783,Eugene Mirman: Vegan on His Way to the Complain Store (2015),Comedy +139785,The Last Lullaby (2008),Mystery|Thriller +139789,Filomena Marturano (1951),Comedy +139793,Walk Cheerfully (1930),(no genres listed) +139795,Hard Luck (1921),Comedy +139797,Smosh: The Movie (2015),Action|Adventure|Comedy +139799,The Skulls II (2002),Action|Comedy|Romance|Thriller +139803,Marina (2013),Drama|Romance +139805,Bad Turn Worse (2014),Crime|Drama|Thriller +139807,Firequake (2014),Action|Sci-Fi|Thriller +139811,Dog Eat Dog (2009),Action|Drama|Romance|Thriller +139817,Doors Open (2012),Crime|Drama +139819,Hollywoo (2011),Comedy +139821,Vanaprastham (1999),Drama +139823,Honeymoon in Bali (1939),Comedy|Romance +139825,Chrysalis (2007),Action|Crime|Sci-Fi|Thriller +139827,The Challenge (2005),Action|Drama +139829,The Scapegoat (2013),Drama +139831,Messi (2014),Documentary +139835,Charlie's Farm (2014),Horror +139837,Robotrix (1991),Action|Comedy|Sci-Fi +139839,The Fruit is Swelling (1997),Romance +139841,Viva Erotica (1996),Comedy|Drama +139843,R20 (2004),Comedy +139845,Fit (1994),(no genres listed) +139847,Chevalier (2015),(no genres listed) +139849,The Capsule (2012),(no genres listed) +139853,Wasted Youth (2011),(no genres listed) +139855,Anomalisa (2015),Animation|Comedy|Fantasy +139857,Colonia (2016),Thriller +139859,Ghost in the Shell Arise - Border 2: Ghost Whispers (2013),Action|Animation|Sci-Fi|Thriller +139861,Ghost in the Shell Arise - Border 3: Ghost Tears (2014),Action|Animation|Sci-Fi +139863,Ghost in the Shell Arise - Border 4: Ghost Stands Alone (2014),Action|Animation|Sci-Fi +139865,Qissa: The Tale of a Lonely Ghost (2013),Drama +139869,Up to His Ears (1965),Adventure|Comedy +139871,A Year in Champagne (2014),Documentary +139873,Sherlock Holmes (1922),Drama|Mystery|Thriller +139875,The Trail Of Tears: Cherokee Legacy (2006),Documentary +139877,Fire! (1968),(no genres listed) +139879,Stephen Fry: The Secret Life of the Manic Depressive (2006),Documentary +139881,Dr. Ketel (2011),Thriller +139883,FTA (1972),Comedy|Documentary +139885,2 Young (2005),Drama|Romance +139887,But Always (2014),Drama|Romance +139889,Tiny Times (2013),Comedy|Drama|Romance +139891,Tiny Times 2 (2013),Comedy|Drama|Romance +139893,Tiny Times 3 (2014),Drama|Romance +139895,"English, August (1994)",Comedy|Drama +139897,Somewhere Only We Know (2015),Drama|Romance +139899,The Continent (2014),Drama +139901,Triumph in the Skies (2015),Comedy|Drama|Romance +139903,The Eleventh Victim (2012),Thriller +139909,Russian Terminator (1989),Action +139911,Black Indians: An American Story (2004),Documentary +139913,Une heure de tranquillité (2014),Comedy +139915,How to Make Love Like an Englishman (2014),Comedy|Romance +139918,The Ghost Army (2013),Documentary|War +139920,Women of the Prehistoric Planet (1966),Action|Adventure|Sci-Fi +139922,Something good (2013),Drama|Thriller +139936,"Senza famiglia, nullatenenti cercano affetto (1972)",Comedy|Drama +139952,Torno a vivere da solo (2008),Comedy +139960,Fantozzi 2000 - La clonazione (1999),Comedy +139966,Fantozzi Il Ritorno (1996),Drama|Romance +139974,Cari fottutissimi amici (1994),Comedy +139976,Fantozzi in Heaven (1993),Comedy +139978,Fantozzi alla riscossa (1990),(no genres listed) +139980,I Won the New Year's Lottery (1989),Comedy +139982,Fantozzi va in pensione (1988),Comedy +139986,Scuola di ladri 2 (1987),(no genres listed) +139988,"Rimini, Rimini (1987)",Comedy +139992,School of Thieves (1986),(no genres listed) +139994,Fracchia contro Dracula (1985),Comedy|Horror +139996,Firefighters (1985),Comedy +140000,Fantozzi subisce ancora (1983),Comedy +140004,Sogni mostruosamente proibiti (1982),(no genres listed) +140006,Fracchia la belva umana (1981),(no genres listed) +140012,I-Lived (2015),Horror|Mystery|Thriller +140016,Always Watching: A Marble Hornets Story (2015),Horror +140034,Velvet Hands (1979),Comedy|Romance +140036,Ace (1981),Comedy +140038,Madly in Love (1981),Comedy +140040,Grand Hotel Excelsior (1982),Comedy +140042,Special Features: Handsome (1983),Comedy +140046,Saint Tropez - Saint Tropez (1992),(no genres listed) +140054,The Grumpy (1986),Comedy +140070,The Party at Kitty and Stud's (1970),(no genres listed) +140074,The Vatican Tapes (2015),Horror|Thriller +140076,Les barons (2009),Comedy +140078,"Video Nasties: Moral Panic, Censorship & Videotape (2010)",Documentary +140080,Hour of the Star (1985),Drama +140082,Best Kept Secret (2013),Documentary +140084,Kaiji: The Ultimate Gambler (2009),Drama|Thriller +140086,Kaiji 2: The Ultimate Gambler (2011),Drama|Thriller +140088,Remembrance (2011),Drama +140090,Ultrà (1992),Documentary +140096,3 Hearts (2014),Drama +140098,Runoff (2015),Drama +140102,Diet of Sex (2014),Comedy|Drama|Romance +140104,"If You Don't, I Will (2014)",Comedy +140106,Our Little Sister (2015),Comedy +140108,Yakuza Apocalypse (2015),Action|Horror +140110,"Intern, The (2015)",Comedy +140112,"Blue Water, White Death (1971)",Documentary +140115,Batman Unlimited: Monster Mayhem (2015),Action|Animation +140121,Sam Steele and the Junior Detective Agency (2011),(no genres listed) +140123,One's Own Choice (1972),Drama +140131,Extinction (2015),Drama|Horror|Sci-Fi +140133,Hollywood Chainsaw Hookers (1988),Comedy|Horror +140135,Intrepido: A Lonely Hero (2013),Comedy +140142,Bhuvan Shome (1969),(no genres listed) +140144,The Story of O Part 2 (1984),(no genres listed) +140146,The Suicide Theory (2015),Drama|Thriller +140148,A Bottle in the Gaza Sea (2012),Drama +140150,Chelsea Handler Uganda Be Kidding Me Live (2014),Comedy +140152,Dreamcatcher (2015),Children|Crime|Documentary +140154,The Paw Project (2013),Documentary +140156,The Truth About Webcam Girls (2014),Documentary +140158,American Courtesans (2013),Documentary +140160,Descendants (2015),Action|Adventure|Comedy +140162,Love (2015),Drama|Romance +140164,Questions for Crazy Horse (2010),(no genres listed) +140166,Lambchops (1929),(no genres listed) +140168,The Invoking (2013),Horror|Thriller +140170,Midway to Heaven (2011),Comedy|Romance +140174,Room (2015),Drama +140176,Le Monde doit m'arriver (2013),(no genres listed) +140178,K.O. Miguel (1957),Comedy +140182,Gone with the Pope (2010),Drama|Romance +140186,The Traffickers (2012),Action|Drama +140188,To Kill a Man (2014),Drama +140190,Dear Santa (2011),Comedy|Drama|Romance +140194,Inside Hana's Suitcase (2012),Documentary +140196,Monster High: Scaris City of Frights (2013),Animation|Fantasy +140198,Chameleon Street (1989),Comedy +140200,Il terzo tempo (2013),(no genres listed) +140204,Backmask (2015),Horror|Thriller +140206,"Jack, Jules, Esther, & Me (2013)",(no genres listed) +140210,In the Courtyard (2014),Comedy|Drama +140212,Tarzan II (2005),Adventure|Animation|Children +140214,Triple Dog (2010),Drama|Thriller +140218,P-51 Dragon Fighter (2014),Action|Fantasy|Sci-Fi +140220,Guest Wife (1945),Comedy|Romance +140222,A Killer Among Us (2012),Crime|Thriller +140224,Filmage: The Story of Descendents/All,Documentary +140228,Giratina and the Sky Warrior (2008),Adventure|Animation|Children +140235,The Redeemer: Son of Satan! (1978),Horror +140237,The Runner (2015),Drama +140239,Helter Skelter (2012),Drama|Fantasy|Horror +140241,Bandage (2010),Drama|Romance +140243,Tokyo Tower (2005),Drama|Romance +140245,Twenty (2015),Comedy|Drama +140247,The Gift (2015),Drama|Horror +140249,Babine (2008),Drama|Fantasy +140255,Journey to Planet X (2012),Documentary +140261,Set Fire to the Stars (2015),Drama +140263,Milk? (2012),Documentary +140265,George Carlin: Jammin' in New York (1992),Comedy +140267,The Witch (2015),Horror +140269,Homeless to Harvard: The Liz Murray Story (2003),Drama +140271,"Mary Is Happy, Mary Is Happy (2013)",Drama +140275,Tales of the Night (2011),Animation|Fantasy +140279,Eldorado (2008),Comedy|Drama +140283,13 Eerie (2013),Horror|Sci-Fi +140289,Men & Chicken (2015),Comedy|Drama +140291,About Ray (2015),Comedy|Drama +140293,Mobile Suit Gundam II: Soldiers of Sorrow (1981),Action|Adventure|Animation|Drama|Sci-Fi|War +140295,Mobile Suit Gundam III: Encounters in Space (1982),Action|Adventure|Animation|Drama|Sci-Fi|War +140297,The Man Who Saved the World (2013),Documentary +140299,B-Movie: Lust & Sound in West-Berlin (2015),(no genres listed) +140301,The Escort (2015),Comedy|Romance +140303,Zaytoun (2012),Adventure|Drama|Thriller|War +140305,Crossfire: Hate Is Like a Gun (2005),Documentary +140307,A Town Has Turned to Dust (1958),Drama +140309,Uncle John (2015),Crime|Drama|Mystery +140311,Pervert Park (2014),Crime|Documentary +140313,No One's Child (2014),Drama +140315,Last Cab to Darwin (2015),Drama +140317,A Tiger Walks (1964),Children|Drama +140319,Kung Fu Killer (2008),Action|Drama|Thriller +140321,Chris Tucker: Live (2015),Comedy +140323,Memories (2013),Crime|Thriller +140325,Mumbai Police (2013),Crime|Mystery|Thriller +140327,The Orator (2011),(no genres listed) +140329,Hairbrained (2013),Comedy +140331,Romantic Prelude (2009),Romance +140333,Maundy Thursday (2006),Drama +140335,Yuma (2012),(no genres listed) +140339,Admiral (2015),Action|Adventure +140341,Lava (2015),Animation|Children +140343,Assault at West Point: The Court-Martial of Johnson Whittaker (1994),Drama|Thriller +140345,The Man Called Flintstone (1966),Adventure|Animation|Children|Mystery|Romance +140347,The Hunley (1999),Action|Drama|War +140349,Gabriel Iglesias: I'm Not Fat... I'm Fluffy (2009),Comedy +140351,Richard Jeni: A Big Steaming Pile of Me (2005),Comedy +140353,Mind Meld: Secrets Behind the Voyage of a Lifetime (2001),Documentary +140355,Bill Cosby: Far From Finished (2013),Comedy +140357,Au Pair II (2001),Comedy +140359,Doctor Who: The Waters of Mars (2009),Adventure|Children|Sci-Fi +140361,Scabbard Samurai (2011),Action|Comedy +140363,"The Good, the Bad, and Huckleberry Hound (1988)",(no genres listed) +140365,Short Peace (2013),Animation +140367,Rikki-Tikki-Tavi (1975),Animation +140369,War Arrow (1954),Adventure|Drama|Romance|War|Western +140371,The Crucifer of Blood (1991),Comedy|Crime|Drama|Mystery|Thriller +140373,The Chosen One: Legend of the Raven (1998),Action|Thriller +140375,A Volar Joven (1947),(no genres listed) +140377,About Sarah,(no genres listed) +140379,The Face on the Milk Carton (1995),(no genres listed) +140381,The Three Stooges (2000),Comedy|Documentary|Drama +140383,Van Helsing: The London Assignment (2004),Action|Animation|Fantasy|Horror +140385,A Horse for Danny (1995),Children|Drama +140387,Missing Pieces (2000),(no genres listed) +140389,Rose Hill (1997),(no genres listed) +140391,Pistol: The Birth of a Legend (1991),Children|Drama +140393,The Christmas Box (1995),Drama|Fantasy +140395,Where The Red Fern Grows II: The Classic Continues (1992),Children +140397,Animal Farm (1999),Animation|Drama +140399,Hellboy Animated: Iron Shoes (2007),(no genres listed) +140401,The Black Shield Of Falworth (1954),Adventure +140403,Jonny Quest Vs. The Cyber Insects (1995),Action|Adventure|Animation +140405,Scared Stiff (1953),Comedy +140407,Cas & Dylan (2013),Comedy|Drama +140411,Gladiators 7 (1962),Action +140413,Charley and the Angel (1973),Children|Comedy|Fantasy +140415,Atom Man vs Superman (1950),Action|Sci-Fi +140417,Superman (1948),Action|Crime|Sci-Fi +140419,The Invisible Boy (1957),Adventure|Children|Comedy|Sci-Fi +140421,Tired of Kissing Frogs (2006),Comedy|Drama|Romance +140423,Night Of The Twisters (1996),Action|Drama +140425,The 4th Tenor (2002),Comedy|Romance +140427,The Collection (1976),(no genres listed) +140429,One Wild Oat (1951),Comedy +140431,The Biscuit Eater (1940),(no genres listed) +140433,The Deerslayer (1957),Western +140435,Captain America (1944),Action|Adventure|Sci-Fi +140437,Joni (1979),Drama +140439,"It's A Bird, It's A Plane, It's Superman! (1975)",Comedy +140441,Anne Of Green Gables: The Continuing Story (2000),Children|Drama +140443,Return to Mayberry (1986),(no genres listed) +140445,CHiPs 99 (1998),Action|Crime +140447,Au Pair (1994),Comedy|Romance +140449,Sting of the Black Scorpion (2002),Action|Sci-Fi +140451,Black Scorpion (1995),Action|Sci-Fi +140453,Black Scorpion II: Aftershock (1997),Action|Adventure|Sci-Fi +140455,Grace Kelly (1983),(no genres listed) +140457,The Audrey Hepburn Story (2000),Drama +140459,The Dukes of Hazzard: Reunion! (1997),Action|Adventure +140461,Right on Track (2003),(no genres listed) +140463,I Spy Returns (1994),(no genres listed) +140465,The Pretender 2001 (2001),(no genres listed) +140467,The Facts of Life Reunion (2001),(no genres listed) +140469,The Harlem Globetrotters on Gilligan's Island (1981),Adventure|Comedy +140471,The Pretender: Island of the Haunted (2001),(no genres listed) +140473,Rescue From Gilligan's Island (1978),Comedy +140475,Death Train (1993),Action|Thriller +140477,The Parent Trap II (1986),Children +140479,A Season on the Brink (2002),(no genres listed) +140481,"Family Guy Presents: Something, Something, Something, Dark Side (2009)",Animation|Comedy|Sci-Fi +140483,Mary and Rhoda (2000),Comedy|Drama|Romance +140485,Michael Jordan: An American Hero (1999),Drama +140487,"Come On, Get Happy: The Partridge Family Story (1999)",(no genres listed) +140489,Daydream Believers: The Monkees Story (2000),Documentary|Drama +140491,"Puff, the Magic Dragon (1978)",Animation|Children|Fantasy +140493,Planet Outlaws (1953),Sci-Fi +140495,The Shadow Strikes (1937),Mystery +140497,Walk the Proud Land (1956),Western +140499,Sailor Beware (1952),Comedy +140501,Island of the Blue Dolphins (1964),Children|Drama +140503,The Biscuit Eater (1972),Children|Drama +140505,Fatal Bond (1991),Drama|Thriller +140507,Dan Aykroyd - Unplugged On UFO's (2006),Documentary +140509,Operation Dalmatian: The Big Adventure (1997),(no genres listed) +140511,Hellboy Animated: Blood and Iron (2007),Action|Animation|Fantasy|Horror|Sci-Fi|Thriller +140513,Divina Confusión (2008),Comedy|Drama|Romance +140515,Nancy Drew... Reporter (1939),Comedy|Crime|Mystery +140517,Charro! (1969),Action|Drama|Western +140519,Hidden Secrets (2006),Comedy|Drama +140521,The First Snow of Winter (1998),Children +140523,"Visit, The (2015)",Comedy|Horror +140525,Secret in Their Eyes (2015),Crime|Drama|Mystery +140527,Princess Iron Fan (1941),Animation|Drama +140529,Sinister 2 (2015),Horror +140531,Coo of The Far Seas (1993),(no genres listed) +140535,Nesting (2012),Comedy|Horror|Romance +140537,Redeemer (2014),Action|Crime +140539,Pauvre Pierrot (1892),Animation +140541,The Electric Hotel (1908),Animation|Comedy|Sci-Fi +140543,Birth of a Flower (1910),Documentary +140545,Fantasmagorie (1908),(no genres listed) +140547,The Merry Skeleton (1898),Comedy +140549,Serpentine Dance: Loïe Fuller (1897),(no genres listed) +140551,The Melomaniac (1903),Comedy +140553,"Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics (1911)",Animation|Comedy +140555,The Dinosaur and the Missing Link: A Prehistoric Tragedy (1915),Animation|Comedy +140557,A Is for Autism (1992),Animation|Documentary +140559,7G Rainbow Colony (2004),Drama|Romance +140561,Jeff Ross Roasts Criminals: Live at Brazos County Jail (2015),Comedy|Documentary +140565,Let It Shine (2012),Children +140567,Sinful Davey (1969),Adventure|Comedy|Crime +140569,Further Adventures of the Wilderness Family (1978),Adventure|Children +140571,Spud 2: The Madness Continues (2013),Comedy|Drama +140573,How to Sell a Banksy (2012),Documentary +140577,The Battle of Gettysburg (1955),(no genres listed) +140579,My Sweet Little Village (1985),Comedy +140581,I Am Chris Farley (2015),Documentary +140583,The Secret Ways (1961),Adventure +140585,The Wild and the Innocent (1959),Western +140587,Apache Rifles (1964),(no genres listed) +140589,Drums Across the River (1954),Western +140593,Dog's Heart (1976),(no genres listed) +140617,Get Smart's Bruce and Lloyd Out of Control (2008),Action|Comedy +140619,"Chronic-Con, Episode 420: A New Dope (2015)",Comedy|Documentary +140621,Russell Brand - From Addiction to Recovery (2012),Documentary +140623,Russell Brand: End the Drugs War (2014),(no genres listed) +140627,Battle For Sevastopol (2015),Drama|Romance|War +140629,Snails in the Rain (2013),Drama +140631,Under the Bed (2012),Horror +140633,Another World (2014),Documentary +140635,Almost Mercy (2015),Horror +140647,"Csocsó, avagy éljen május elseje! (2001)",Comedy +140649,Csinibaba (1997),Comedy +140651,Made in Hungaria (2009),Comedy|Romance +140653,Spirit of the Marathon (2008),Documentary +140655,Painted Skin: The Resurrection (2012),Drama|Fantasy +140657,Sakura Killers (1987),Action +140659,The Rise and Rise of Michael Rimmer (1970),Comedy|Drama +140667,Deadly Chase (1978),(no genres listed) +140681,Ghadi (2013),Children|Comedy|Drama +140699,Dragon Nest: Warriors' Dawn (2014),Adventure|Animation|Children|Fantasy +140701,Harbinger Down (2015),Horror|Sci-Fi +140703,The Bunker of the Last Gunshots (1981),(no genres listed) +140707,Curious George 2: Follow That Monkey! (2009),Animation|Children +140709,Death Comes to Pemberley (2013),Drama|Mystery|Romance +140711,American Ultra (2015),Action|Comedy +140713,No Escape (2015),Thriller +140715,Straight Outta Compton (2015),Drama +140719,Ruined Heart: Another Love Story Between A Criminal & A Whore (2014),Action|Adventure|Drama +140721,Dungeons & Dragons: The Book of Vile Darkness (2012),Fantasy +140723,Twelve in a Box (2007),Thriller +140725,Cop Car (2015),Thriller +140729,The Keeper - The Legend of Omar Khayyam (2005),Children|Drama +140731,Company Limited (1971),(no genres listed) +140733,Lassiter (1984),Crime|Drama|Mystery|Thriller +140737,The Lost Room (2006),Action|Fantasy|Mystery +140739,Eighteen (2005),Drama +140741,Get Your Stuff (2000),Drama|Romance +140743,The Man I Love (1997),Drama +140745,10 Attitudes (2001),Comedy|Drama|Romance +140747,16 Wishes (2010),Children|Drama|Fantasy +140749,29th and Gay (2005),Comedy +140751,Almost Normal (2005),Comedy|Drama|Sci-Fi +140753,The Men Next Door (2012),(no genres listed) +140755,Long-Term Relationship (2006),Comedy|Romance +140757,3-Day Weekend (2008),Drama +140759,The Big Gay Musical (2009),Comedy|Drama|Romance +140761,The Biggest Fan (2002),Comedy|Romance +140763,Boy Crazy (2009),(no genres listed) +140765,Carl Panzram: The Spirit of Hatred and Revenge (2012),(no genres listed) +140767,Conversations with Mother (2004),Comedy|Drama +140769,Puella Magi Madoka Magica the Movie Part I: Beginnings (2012),Action|Animation|Horror|Mystery +140771,Pardon My Past (1945),Comedy +140773,A LEGO Brickumentary (2015),Documentary +140775,Houston (2013),(no genres listed) +140777,Pasolini (2015),Drama +140783,"Helga, She Wolf of Spilberg (1977)",Drama|Thriller +140787,Smart Ass (2014),Comedy|Drama +140789,Telets (2001),Drama +140791,Bermuda Tentacles (2014),Sci-Fi +140793,Sir Henry at Rawlinson End (1980),Comedy +140795,Midori (1992),Animation|Drama|Horror +140797,Always - Sunset on Third Street (2005),Comedy|Drama +140799,Truck Turner (1974),Action|Crime|Drama +140801,Kano (2014),Drama +140803,Beyond Beauty: Taiwan from Above (2013),Documentary +140805,Attack on Titan (2015),Drama|Horror +140807,Sailor Moon S the Movie: Hearts in Ice (1994),Action|Animation|Comedy +140809,Sailor Moon R: The Movie (1993),Animation|Comedy|Drama|Romance +140811,Sailor Moon Super S: The Movie (1995),Action|Animation|Comedy +140814,Marco Polo (2007),Adventure|Drama +140816,Tangerine (2015),Comedy|Drama +140818,Merlin and the War of the Dragons (2008),Fantasy +140820,Air (2015),Sci-Fi|Thriller +140822,Just Peck (2009),Children|Comedy +140830,The Legend Of Secret Pass (2010),Animation|Children|Fantasy +140832,Witchville (2010),Action|Fantasy|Sci-Fi|Thriller +140838,Dead Before Dawn 3D (2012),Adventure|Comedy|Horror +140842,Modern Life (2008),Documentary +140844,13 Minutes (2015),Drama +140846,Toute première fois (2015),Comedy +140848,Dead Europe (2012),Drama +140850,Every Secret Thing (2014),Crime|Drama|Mystery|Thriller +140852,964 Pinocchio (1991),Horror|Sci-Fi +140854,"Dagmar's Hot Pants, Inc. (1971)",Comedy|Drama|Romance +140856,Inner Demons (2014),Horror|Thriller +140858,Women Who Flirt (2014),Comedy|Romance +140860,Hacker (2002),Comedy +140862,Khottabych (2006),Comedy|Fantasy +140864,Butterfly (2015),(no genres listed) +140866,Scusate se esisto! (2014),Comedy|Romance +140868,Match (2014),Comedy|Drama +140870,Clandestinos (2008),Drama +140872,The Past is a Grotesque Animal (2014),Documentary +140874,Swallows and Amazons,(no genres listed) +140878,4 Moons (2014),Drama +140880,Fashion Victims (2007),Comedy +140882,I Am Happiness on Earth (2014),Drama +140884,The Road To Love (2001),Drama +140916,Malicious (1973),Comedy|Fantasy +140926,Treasure Guards (2011),Adventure +140928,Joy (2015),Comedy|Drama +140932,Shut Up Little Man! An Audio Misadventure (2011),Comedy|Documentary +140934,Tracks (2005),Drama +140936,Blindside (1986),Action|Romance|Thriller +140938,Vettaiyaadu Vilaiyaadu (2006),Action|Thriller +140940,Azazel (2002),Action|Adventure|Drama|Mystery +140942,The Turkish Gambit (2005),Action|Adventure|Drama|Mystery +140944,Iron & Blood: The Legend of Taras Bulba (2009),Drama +140946,The PyraMMMid (2011),Crime|Drama +140948,Google Me (2008),Documentary +140954,Daisy Town (1971),Animation|Comedy|Western +140956,Ready Player One,(no genres listed) +140958,Next Goal Wins (2014),Documentary +140960,Bad Faith (2007),Comedy +140962,Amnesiac (2015),Drama|Horror|Mystery +140974,Star Spangled Girl (1971),Comedy +140984,Final Accord (1936),Drama +140986,Pillars of Society (1935),Drama +140988,The Girl from the Marsh Croft (1935),(no genres listed) +140990,La Habanera (1937),Drama +140992,Deck the Halls (2011),Drama|Mystery +140994,One. Two. One (2011),(no genres listed) +140996,Cure: The Life of Another (2014),Mystery|Thriller|War +141000,Library Wars (2013),Action|Drama|Fantasy +141002,Ditto (2000),Drama|Fantasy|Romance|Sci-Fi +141004,Victor Frankenstein (2015),Drama|Horror|Sci-Fi +141006,Rembetiko (1982),Drama +141008,Sholem Aleichem: Laughing In The Darkness (2012),Documentary +141010,Broadway Musicals: A Jewish Legacy (2013),Documentary +141012,The Fall of the Essex Boys (2012),Crime +141014,Every Little Thing (1997),(no genres listed) +141016,Three Miles North of Molkom (2008),Documentary +141018,Animalympics (1980),Animation|Comedy +141036,4 Minute Mile (2014),Drama +141038,Get a Clue (2002),Children|Comedy|Mystery +141040,Questi fantasmi (1962),Comedy +141042,Sogno di una notte di mezza sbornia (1959),(no genres listed) +141046,The Last House on the Beach (1978),Crime|Drama|Horror|Thriller +141050,Theeb (2014),Adventure|Drama|Thriller +141054,Journey To Space (2015),Documentary +141058,Manjhi The Mountain Man (2015),Drama +141060,Fly Away Solo (2015),Drama +141062,Homies (2015),Comedy +141064,Uomo e galantuomo (1975),Comedy +141072,The Divine Weapon (2008),Action|Adventure|Drama +141088,La pecora nera (1968),Comedy +141090,Ti ho sposato per allegria (1967),(no genres listed) +141092,Come imparai ad amare le donne (1966),Comedy +141094,El Greco (1966),Drama +141096,Carmen & Geoffrey (2005),(no genres listed) +141098,Being Evel (2015),Documentary +141100,Sujata (1960),Drama|Romance +141102,Devdas (1955),Drama|Romance +141104,The Courageous Heart of Irena Sendler (2009),Drama|War +141106,Losers Take All (2013),Comedy +141110,The One That Got Away (1957),Drama|War +141112,Salem Falls (2011),Crime|Drama +141114,Sharpe's Challenge (2006),Action|Adventure|War +141116,Ferat Vampire (1982),Horror|Mystery|Sci-Fi +141118,Go Away Mr. Tumor (2015),(no genres listed) +141120,Brothers (2015),Action|Children|Drama +141124,FAQs (2005),Drama +141126,The Iceman Interviews (2004),Documentary +141129,Dave Attell: Road Work (2014),Comedy +141133,Green Snake (1993),Action|Fantasy|Romance|Sci-Fi +141135,Nuts in May (1976),Comedy +141137,The Short & Curlies (1987),Comedy +141139,The Terror Live (2013),Action|Crime|Thriller +141149,The Angrez (2006),Comedy +141158,"So Far, Fifty-Six (2004)",Crime|Drama +141162,Taxi No. 9 2 11: Nau Do Gyarah (2006),(no genres listed) +141166,Arthur 3: The War of the Two Worlds (2010),Adventure|Animation|Children|Fantasy +141177,Body Slam (1987),Comedy +141179,Captive (2012),Drama|Thriller +141181,Cheyenne (1947),Western +141185,Close to My Heart (1951),Drama +141189,"Get Smart, Again! (1989)",Action|Children|Comedy +141191,OPA! (2005),Comedy|Romance +141193,Thumb Tripping (1972),Drama +141195,The Harrad Experiment (1973),Drama|Romance +141197,Corleone (1978),Crime|Thriller +141201,Death of a Doctor (1991),Drama +141203,Aakrosh (1980),Drama +141207,The Greatest Ears in Town: The Arif Mardin Story (2010),(no genres listed) +141214,Petunia (2013),Comedy|Drama +141216,Pregnancy Pact (2010),Drama +141242,Animals (2008),Horror|Thriller +141251,Demetri Martin: Live (At The Time) (2015),(no genres listed) +141264,Flight Angels (1940),Drama +141269,Government Girl (1943),Comedy +141271,Having Wonderful Time (1938),Comedy|Romance +141273,A Hill in Korea (1956),Drama|War +141281,Hero's Island (1962),Action|Adventure|Drama +141288,In the Arms of a Killer (1992),Thriller +141290,It's Tough to Be Famous (1932),Comedy|Drama +141292,Moving Target (1996),(no genres listed) +141299,Peter Pan (2000),Children|Fantasy +141301,Peter Pan (1924),(no genres listed) +141303,"Rock, Paper, Scissors (2012)",Drama +141305,Round Trip to Heaven (1992),(no genres listed) +141309,Street Kings 2: Motor City (2011),Crime|Drama|Thriller +141311,Tapped Out (2014),Action|Drama +141315,The 25th Hour (1967),Drama|War +141317,The Cabining (2013),Horror|Thriller +141323,The Great Garrick (1937),(no genres listed) +141329,The Narrow Corner (1933),Drama +141355,The Spiderwebhouse (2015),(no genres listed) +141357,Cyber Wars (2004),Action|Drama|Sci-Fi|Thriller +141359,Spoiler (1998),Horror|Sci-Fi|Thriller +141361,Meatball Machine (2005),Horror|Sci-Fi +141363,Chop (2011),Comedy|Horror|Thriller +141365,Deathline (1997),Action|Drama|Sci-Fi|Thriller +141367,Cyber City Oedo 808 (1990),Action|Animation|Crime|Horror|Sci-Fi +141369,"Hard Revenge, Milly: Bloody Battle (2009)",Action|Drama|Sci-Fi +141371,"Hard Revenge, Milly (2008)",Action|Horror|Thriller +141373,The Battle of Chernobyl (2006),Documentary +141375,Sugarhouse (2007),Drama|Thriller +141377,Water Damage (1999),(no genres listed) +141379,True Skin (2012),(no genres listed) +141381,One Man Force (1989),(no genres listed) +141383,Terminal Justice (1996),Action|Sci-Fi|Thriller +141385,Humanity's End (2009),Action|Adventure|Drama|Sci-Fi|Thriller +141387,Everything Goes Wrong (1960),(no genres listed) +141389,My 20th Century (1989),(no genres listed) +141391,Time Stands Still (1982),Drama +141393,Kill Your Friends (2015),Comedy|Crime|Thriller +141395,Nina Forever (2015),Comedy|Horror|Romance +141397,Equals (2015),Drama|Sci-Fi +141400,Invincible Shaolin (1978),Action +141402,Star Trek: Renegades (2015),Action|Adventure|Sci-Fi +141404,Savage Island (1985),Action|Drama +141406,Dead Sleep (1992),(no genres listed) +141408,Scout's Guide to the Zombie Apocalypse (2015),Comedy|Horror +141410,Racquet (1979),Comedy +141412,We Come as Friends (2014),Documentary +141414,Portrait of Jason (1967),Documentary +141418,Sexy Evil Genius (2013),Comedy|Drama|Mystery|Thriller +141420,Paranormal Activity 2: Tokyo Night (2010),Horror|Thriller +141422,Suffragette (2015),Drama +141424,Eskimo (1933),Drama +141426,Joker Game (2015),Thriller +141428,Guidance (2014),Comedy +141430,The 7th Day (2004),Drama +141432,Sweet Red Bean Paste (2015),Drama +141434,My Friend Victoria (2014),Drama +141436,Dégradé (2015),(no genres listed) +141438,War (2014),Drama +141440,Flowers (2014),Drama +141442,Los tontos y los estúpidos,(no genres listed) +141444,Stand (2014),(no genres listed) +141446,The Marquis (2011),Comedy +141448,Hate Crime (2006),Drama|Thriller +141450,Thief (2006),Crime|Drama|Thriller +141452,Clannad: The Motion Picture (2007),Animation|Drama +141454,Interviews with My Lai Veterans (1971),Documentary|War +141456,Vanishing of the Bees (2009),Documentary +141458,Rising from Ashes (2013),(no genres listed) +141462,Extinction: The G.M.O. Chronicles (2011),Drama|Horror +141464,The New Black (2014),Documentary +141466,Oscenità (1980),(no genres listed) +141468,Keep On Keepin’ On (2014),Documentary +141470,"Andrew Jenks, Room 335 (2008)",(no genres listed) +141472,The 50 Year Argument (2014),(no genres listed) +141474,Peppermint Frappé (1967),Drama +141480,In the Dust of the Stars (1976),Sci-Fi +141483,Lost Rivers (2013),Documentary +141485,The High Sun (2015),Drama +141487,Blades of Blood (2010),Action|Drama +141489,Memory Vague (2009),(no genres listed) +141493,The Hunchback of Notre Dame II (2002),Adventure|Animation|Children|Romance +141495,HK: Forbidden Super Hero (2013),Action|Comedy +141497,Lollipop Monster (2011),Drama +141501,Starve (2014),Horror|Thriller +141505,Moscow-Cassiopeia (1973),Adventure|Children|Comedy|Sci-Fi +141509,Mythica: The Darkspore (2015),Fantasy +141511,Assassins Tale (2013),Action|Crime|Thriller +141513,Fort Tilden (2014),Comedy +141517,Slimtime (2010),Animation|Comedy +141520,Moss (2010),Crime|Drama|Mystery|Thriller +141522,Wanderlust (2006),Comedy|Documentary|Drama|Romance +141524,The Price of Sex (2011),Documentary +141526,Lúdas Matyi (1977),Animation +141530,As One (2012),Drama +141534,Gun-shy (2003),Drama|Thriller +141536,Veteran (2015),Crime|Thriller +141538,Assassination (2015),Action|Drama|Thriller +141542,Race to Nowhere (2009),Documentary +141544,Turbo Kid (2015),Action|Adventure|Sci-Fi +141546,Oh How It Hurts 66 (1966),Children|Comedy +141550,Wasted on the Young (2010),Drama|Romance|Thriller +141552,Dadnapped (2009),Action|Adventure|Children|Comedy +141554,Disappearing Acts (2000),Drama|Romance +141558,Bergman Island (2006),(no genres listed) +141564,Body and Soul (1925),Drama|Romance +141573,Evergreen (1934),Comedy|Romance +141583,One Love (2011),Drama|Romance +141588,Let There Be Light (1946),Documentary +141590,Paulina (2015),Thriller +141592,Report from the Aleutians (1943),Documentary +141594,The Princess of Nebraska (2008),Drama +141598,The Absent (2014),(no genres listed) +141602,Mademoiselle Fifi (1944),Drama|War +141606,Miracle on Ice (1981),Children|Drama +141610,Rocky Marciano (1999),Drama +141612,So This Is College (1929),(no genres listed) +141618,The Glory Stompers (1967),Action|Drama +141628,The Naked Truth (1957) (Your Past Is Showing),Comedy +141630,Bridgend (2015),Drama|Mystery +141632,Zurich (2015),Drama +141634,You and the Night (2013),Comedy|Drama|Romance +141636,Papanasam (2015),Children|Crime|Drama|Thriller +141638,Napoletani a Milano (1953),(no genres listed) +141642,The Bad Education Movie (2015),Comedy +141644,Santa Baby (2006),Children|Comedy +141646,The Unauthorized Saved by the Bell Story (2014),Comedy|Drama +141648,We Are Your Friends (2015),Drama +141650,Soul Boys of the Western World (2014),Documentary +141652,2033 (2010),Adventure|Sci-Fi +141656,Wild Combination: A Portrait of Arthur Russell (2008),Documentary +141658,For the Love of Money (2012),Action|Crime|Drama|Thriller +141662,Hawks (1988),Comedy|Drama +141664,Marine Battleground (1963),(no genres listed) +141668,War Room (2015),Children|Drama +141670,Shield of Straw (2013),Thriller +141672,Return to Ithaca (2014),Comedy|Drama +141674,Summertime (2015),(no genres listed) +141676,Joseph: King of Dreams (2000),Animation +141678,Screen Directors Playhouse: Meet the Governor (1955),Comedy +141680,Tom and Jerry (1955),Comedy|Drama|Romance +141682,The Seine Meets Paris (1957),(no genres listed) +141684,Hurricane of Fun: The Making of Wet Hot (2015),Documentary +141686,Knife in the Dark (1954),Drama +141688,Legend (2015),Crime|Thriller +141690,Anesthesia (2015),Drama|Thriller +141698,Elephant Song (2014),Drama +141700,Side Street Story (1950),Comedy +141702,Drishyam (2015),Drama|Mystery|Thriller +141704,Phantom (2015),Action|Thriller +141706,Assassin (1969),Drama|Thriller +141708,Disaster Playground,Documentary +141710,Animals (2014),Drama +141712,Addicted to Fresno (2015),Comedy +141714,Queen of Earth (2015),Drama +141718,Deathgasm (2015),Comedy|Horror +141722,I Am Evel Knievel (2014),Documentary +141725,All the Boys Are Called Patrick (Charlotte et Veronique ou tous les garcons s'appellent Patrick) (1959),Comedy +141727,Therapy for a Vampire (2015),Comedy +141729,Silent Heart (2014),Drama +141731,Mr. & Mrs. Incredible (2011),Action|Comedy|Romance +141733,Daughter of the Lake (2015),(no genres listed) +141735,Dresden (2006),Drama +141737,Grantham and Rose (2014),Comedy|Drama +141739,Days of Hope (1975),Drama +141741,Shoot First And Pray You Live (2010),Action|Western +141743,"Italian, The (1915)",Drama +141745,Nice Guy,(no genres listed) +141747,Childless (2015),(no genres listed) +141749,The Danish Girl (2015),Drama +141751,The Man Whose Mind Exploded (2014),Documentary +141755,Underdog (2015),Drama +141757,Stag Night of the Dead (2010),Comedy|Horror +141761,Area 51 (2015),Horror|Sci-Fi|Thriller +141763,Forbidden Area (1956),Drama +141765,The Comedian (1957),(no genres listed) +141767,Hit & Miss (2012),Drama +141769,Prototype (1992),Drama|Fantasy|Sci-Fi +141771,Latin Lover (2015),Comedy +141795,L♡DK (2014),Drama|Romance +141797,Street Fighter Alpha - The Movie (1999),Action|Animation +141799,Cooties (2015),Comedy|Horror +141801,The Kung Fu Instructor (1979),Action +141804,Forgotten Tune for the Flute (1987),Comedy|Drama|Romance +141806,Station for Two (1982),Comedy|Drama|Romance +141810,Autumn Marathon (1979),Comedy|Drama +141812,The Most Charming and Attractive (1985),Comedy|Romance +141816,12 Chairs (1976),Adventure|Comedy +141818,Ordinary Miracle (1978),Comedy|Drama|Fantasy|Romance +141820,Old Men: Robbers (1971),Comedy +141822,Carnival Night (1956),Comedy +141824,Old Hags (2000),Comedy|Drama +141826,The Garage (1979),Comedy|Drama +141830,Unbelievable Adventures of Italians in Russia (1974),Adventure|Comedy +141832,Girl without an Address (1957),Comedy|Romance +141834,For the Matches (1980),Comedy +141836,It Can't Be! (1975),Comedy +141840,Sportloto-82 (1982),Comedy +141842,Running the Sahara (2009),Documentary +141844,12 Chairs (1971),Adventure|Comedy +141846,Steve Jobs: The Man in the Machine (2015),Documentary +141850,Inkubus (2011),Horror +141852,Wasting Away (2007),Comedy|Horror +141854,Among Friends (2012),Comedy|Horror +141858,"OMG, I'm a Robot!",(no genres listed) +141860,Broken Horses (2015),Action|Crime|Drama|Mystery|Thriller +141866,Green Room (2015),(no genres listed) +141868,Last Embrace (1979),Mystery|Romance|Thriller +141870,"One-Two, Soldiers Were Going... (1976)",Drama|War +141874,The Adventures of Buratino (1975),Adventure|Children|Fantasy +141880,Freeway: Crack in the System (2014),Documentary +141882,A Bunny's Tale (1985),(no genres listed) +141884,A Diva's Christmas Carol (2000),Children|Comedy +141886,The Dress (1996),Comedy|Drama +141888,Man Follows Birds (1975),Drama +141890,Beasts of No Nation (2015),Drama|War +141892,Earth's Golden Playground (2015),Documentary +141894,The Magic of Heineken (2014),(no genres listed) +141896,Psychopathia Sexualis (2006),Drama|Romance +141898,Limited Partnership (2014),Documentary +141900,Hell and Mr Fudge (2012),(no genres listed) +141902,Gabriel (2014),Drama +141904,The Reader (1988),Comedy|Drama +141908,Pernicious (2015),Horror +141910,Red Knot (2014),Drama +141912,Dirty Weekend (2015),Comedy|Drama +141914,The Activist (2014),Thriller +141916,The Rise of the Krays (2015),Crime +141920,Underdog Kids (2015),Action|Children +141922,Glass Chin (2015),Drama|Thriller +141924,The Lady in the Van (2015),Drama +141926,He Named Me Malala (2015),Documentary +141928,Bloodsucking Bastards (2015),Comedy|Horror +141930,KillerSaurus,Horror|Sci-Fi +141934,Hamtaro: The Captive Princess (2002),Adventure|Animation|Children|Fantasy +141940,Pokémon the Movie: Kyurem vs. the Sword of Justice (2012),(no genres listed) +141942,Pokémon: Zoroark: Master of Illusions (2010),Adventure|Animation|Children +141944,...ing (2003),Drama|Romance +141946,Meru (2015),Documentary +141950,6 Years (2015),Drama|Romance +141952,To Save A Life (2010),Drama +141954,Pod (2015),Horror|Mystery|Thriller +141956,Contracted: Phase II (2015),Drama|Horror|Thriller +141958,A Little Thing Called Love (2010),Comedy|Romance +141960,Lost After Dark (2014),Horror +141962,For Elise (2013),Horror|Mystery +141964,White Settlers (2014),Horror|Mystery|Thriller +141968,Xenia (2014),Drama +141970,Pokémon the Movie: Diancie and the Cocoon of Destruction (2014),Animation +141972,Pokémon the Movie: Hoopa and the Clash of Ages (2015),Action|Adventure|Animation +141974,Felicidades (2000),Comedy +141976,Snowglobe (2007),Children|Fantasy|Sci-Fi +141978,Varsity Blood (2014),Horror +141980,Doomed (2007),Horror +141982,Mrs Miracle (2009),Children|Comedy|Drama|Fantasy|Romance|Sci-Fi +141984,A Little Bit Zombie (2012),Comedy|Horror|Sci-Fi +141986,Santa Baby 2 (2009),Children|Comedy +141988,The Coed and the Zombie Stoner (2014),Comedy +141990,Wildeye (2015),(no genres listed) +141992,Lasting (2013),Drama|Romance +141994,Saving Christmas (2014),Children|Comedy +141996,The Possessed (1965),Crime|Drama|Mystery +142002,"Young, Violent, Dangerous (1976)",(no genres listed) +142004,City Under Seige (1974),Crime|Thriller +142012,The Double (1971),Mystery|Thriller +142020,Oscar (1967),Comedy +142028,La sedia della felicità (2013),Comedy +142030,Zid (2014),Romance|Thriller +142032,The Transporter Refuelled (2015),Action|Crime|Thriller +142034,Stan (2006),(no genres listed) +142038,Redemption (2013),(no genres listed) +142040,Artists Under the Big Top: Perplexed (1968),Drama +142042,The Inextinguishable Fire (1969),(no genres listed) +142044,Adrienn Pál (2011),Drama +142048,The Left Hand of the Law (1975),Crime +142050,Too Much Johnson (1938),Comedy +142052,The Key to Reserva (2007),Crime|Thriller +142054,Picasso and Braque Go to the Movies (2010),Documentary +142056,Iron Man & Hulk: Heroes United (2013),Action|Adventure|Animation +142058,The Lorax (1972),Animation|Children +142060,The Grinch Grinches the Cat in the Hat (1982),Animation|Children +142062,The Infernal Cakewalk (1903),Comedy|Fantasy +142064,La Vérité si je Mens ! 3 (2012),Comedy +142066,La Vérité si je Mens ! 2 (2001),Comedy +142068,Tiger Orange (2014),Drama +142070,Jenny's Wedding (2015),Comedy|Drama +142072,Bound to Vengeance (2015),Horror|Thriller +142074,Knock Knock (2015),Horror|Thriller +142076,Perfect Proposal (2015),Crime|Romance|Thriller +142078,The Surface (2014),Drama|Thriller +142080,The Conquest of Everest (1953),Documentary|Drama +142082,The Nightmare (2015),Documentary +142084,Welcome to Leith (2015),Crime|Documentary|Horror|Western +142086,Fallen: The Beginning (2006),Action|Adventure|Children|Drama|Fantasy +142088,The Crossing (2014),Drama +142090,Noite Escura (2004),Crime|Drama +142092,Blood Thirst (1971),Horror +142094,Alice in Wonderland (1915),Children|Fantasy +142098,Unabomber: The True Story (1996),(no genres listed) +142100,Parasite Dolls (2003),Action|Animation|Sci-Fi|Thriller +142106,Age of Cannibals (2014),Drama +142108,"Aballay, the Man without Fear (2010)",Drama|Western +142110,Man Down (2015),Thriller +142113,Kahlil Gibran's The Prophet (2015),Animation +142115,The Blue Planet (2001),(no genres listed) +142117,Banksy Does New York (2014),Documentary +142119,Convict's Code (1939),Crime|Drama +142126,"Something, Anything (2015)",Drama|Romance +142128,The Missing Corpse (1945),(no genres listed) +142142,The Negro Soldier (1944),(no genres listed) +142148,Christmas Cupid (2010),Children|Comedy|Fantasy|Romance +142150,Vamp U (2013),Action|Comedy|Horror +142152,Mischief Night (2014),Horror +142154,Unlucky Charms (2013),Fantasy|Horror +142156,The Lottery (1996),Drama +142158,Return to Halloweentown (2006),Adventure|Children|Comedy|Fantasy +142162,The Payoff (1942),Action|Crime|Mystery|Thriller +142164,Wish You Well (2013),Children|Drama +142170,Sukeban Deka (1987),Action +142172,"Knock Knock, It's Tig Notaro (2015)",Comedy|Documentary +142174,Not My Life (2006),Thriller +142176,The Bridge (1999),Drama|Romance +142178,Flash (1997),Children|Drama +142180,"What Next, Corporal Hargrove? (1945)",Comedy|War +142182,Wolfy (2009),Drama +142184,Silenced (2011),Drama +142186,Small Town Folk (2007),Horror +142188,Snow 2: Brain Freeze (2008),Children|Comedy +142190,Devil's Den (2006),Action|Horror|Thriller +142192,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller +142194,The Pumpkin Karver (2006),Comedy|Horror +142196,Cornered! (2009),Comedy|Horror +142198,Killer Party (1986),Comedy|Horror +142200,Jersey Shore Massacre (2014),Comedy|Horror +142202,Rise of the Animals (2012),Adventure|Comedy|Horror +142204,Twitches Too (2007),Children|Drama|Fantasy +142206,The House of Usher (2007),Drama|Horror|Thriller +142210,The Beauty Inside (2015),Fantasy|Romance +142212,Life (2015),Drama +142214,Children of God: Lost and Found (2007),(no genres listed) +142218,Daddy or Mommy (2015),Comedy +142226,Listening (2015),Sci-Fi +142228,12 Rounds 3: Lockdown (2015),Action +142232,Eden Lodge (2015),Horror|Thriller +142234,Our Man in Tehran (2015),Documentary +142236,Robert the Doll (2015),Horror +142238,Frau Müller muss weg (2015),Comedy +142240,Romeos (2011),Drama +142242,Gun Hill Road (2011),Drama +142244,Middle Sexes: Redefining He and She (2005),Documentary +142250,Asylum of Satan (1972),Horror +142258,Listen to Me Marlon (2015),Documentary +142260,Crab Trap (2010),Drama +142264,Proteus (1995),Horror|Sci-Fi +142266,Maléfique (2003),Fantasy|Horror|Mystery +142268,Stars 80 (2012),Comedy +142270,Act of Violence (2008),Drama|Thriller +142272,"Beaumarchais, l'insolent (1996)",Adventure|Romance +142280,Lightning Bolt (1967),Action|Thriller +142284,Killers Are Challenged (1966),Adventure +142286,The Long Hair of Death (1964),Horror +142300,Battle of the Worlds (1961),Sci-Fi|Thriller +142302,Assignment: Outer Space (1960),Sci-Fi +142314,Alien from the Deep (1989),Horror|Sci-Fi +142330,Hunters of the Golden Cobra (1982),Action|Adventure|War +142336,Invasion of the Flesh Hunters (1980),Horror|Thriller +142338,Killer Fish (1979),Adventure +142348,And God Said to Cain (1970),Horror|Mystery|Western +142352,Vengeance (1968),Western +142354,Pelican Dreams (2014),Documentary +142356,Haru (2013),Animation|Romance|Sci-Fi +142358,Snowden’s Great Escape (2015),Documentary +142360,Fool Circle (2014),Comedy|Drama +142362,Magallanes (2014),Drama +142364,The Keeping Room (2015),Drama +142366,Cigarette Burns (2005),Horror|Thriller +142370,We Are the Freaks (2014),Comedy +142372,Our Brand Is Crisis (2015),Comedy|Drama +142374,Attack on Titan: End of the World (2015),Action|Fantasy +142378,L'odore della notte (1998),(no genres listed) +142382,Agneepath (2012),Action|Crime|Drama +142384,Cocktail (2012),Comedy|Drama|Romance +142386,The Assassin (2015),Drama +142388,The Gamechangers (2015),Drama +142408,Hercules in the Haunted World (1961),Action|Fantasy|Horror +142420,High Rise (2015),Action|Drama|Sci-Fi +142422,The Night Before (2015),Comedy +142426,Time Out of Mind (2015),Drama +142432,The Princess of France (2014),(no genres listed) +142434,Villegas (2012),(no genres listed) +142436,First Spaceship on Venus (1960),Drama|Mystery|Sci-Fi +142440,Chain of Command (2015),Adventure +142442,An Ideal Man (2015),Thriller +142444,The Editor (2015),Comedy|Horror|Mystery +142446,On Broadway (2007),Drama +142448,Everest (2015),Adventure|Drama|Thriller +142450,Puella Magi Madoka Magica the Movie Part III: Rebellion (2013),Animation|Fantasy|Mystery|Thriller +142452,Puella Magi Madoka Magica the Movie Part II: Eternal (2012),Action|Animation|Horror|Mystery +142454,Sukeban Deka: Counter Attack from the Kazama Sisters (1988),Action +142456,The Brand New Testament (2015),(no genres listed) +142458,You Carry Me (2015),Drama +142460,Cut Snake (2015),(no genres listed) +142462,The First Olympics: Athens 1896 (1984),Drama +142468,Red Amnesia (2014),Thriller +142470,City Beneath the Sea (1971),Action|Sci-Fi +142472,Kebab Connection (2004),Action|Comedy|Romance +142474,Buddenbrooks: The Decline of a Family (2008),Drama +142476,Keine Lieder über Liebe (2005),Drama|Romance +142478,Hilde (2009),Drama +142484,Wild City (2015),Action|Crime|Thriller +142486,Cocksucker Blues (1972),Documentary +142488,Spotlight (2015),Thriller +142490,Viva,(no genres listed) +142492,Son of Saul (2015),Drama +142494,Diane (1975),(no genres listed) +142496,Funny Farm (1975),(no genres listed) +142498,Burden of Evil (2012),Thriller +142503,Shut In (2015),Drama|Horror|Thriller +142505,Rabid Dogs (2015),Action|Thriller +142507,Pawn Sacrifice (2015),Drama +142509,Hardcore (2015),Action|Adventure|Sci-Fi +142511,Mega Snake (2007),Horror +142513,Hunter × Hunter: Phantom Rouge (2013),Adventure|Animation +142515,"Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema (2014)",Documentary +142517,Il castello (2011),(no genres listed) +142519,Hunter × Hunter: The Last Mission (2013),Action|Animation +142521,08/15 (1954),Drama|War +142523,Carmen (1915),Drama +142525,Hannas Reise (2014),Comedy|Romance +142527,Bon appétit (2010),Romance +142529,"Killing Is My Business, Honey (2009)",Comedy|Crime +142532,Call Girl of Cthulhu (2014),Comedy|Horror +142534,Roger Waters the Wall (2015),Documentary +142536,Burnt (2015),Drama +142538,Queen of the Desert (2015),Drama +142540,Visions (2015),Horror|Thriller +142542,Nobody from Nowhere (2014),Drama|Thriller +142546,General Luna (2015),Drama|War +142548,Vem älskar Yngve Frej? (1973),(no genres listed) +142550,Ryuzo and the Seven Henchmen (2015),Action|Comedy +142552,The Saint of Gamblers (1995),Action|Comedy +142554,Der Clown - Tag der Vergeltung (2005),Action +142556,Mary of Nazareth (1995),(no genres listed) +142558,If I Were a Rich Man (2002),Comedy +142560,Fair Play (2006),Thriller +142562,The Ceremony (2014),Documentary +142564,A Stranger of Mine (2005),Comedy|Crime|Drama|Horror +142566,Sarusuberi: Miss Hokusai (2015),Animation +142568,Being Canadian (2015),Comedy|Documentary +142570,Dor (2006),Drama +142572,Life Is Ruff (2005),(no genres listed) +142574,Cow Belles (2006),Children|Comedy|Romance +142576,Genius (1999),Children|Comedy|Drama +142578,Teen Lust (2014),Comedy +142586,The Timber (2015),Adventure|Drama|Western +142588,Sriracha (2013),Documentary +142590,The Willies (1990),Comedy|Horror +142598,Last Shift (2014),Horror +142600,The Immortal Voyage of Captain Drake (2009),Adventure|Fantasy +142602,"F*ck You, Goethe 2 (2015)",Comedy +142604,Pay the Ghost (2015),Horror|Thriller +142606,A Million (2009),Thriller +142608,A Song of Lisbon (1933),Comedy +142610,Un mundo cuadrado (2012),(no genres listed) +142618,Flying Colors (2015),Comedy|Drama +142624,"Davy Crockett, Indian Scout (1950)",Action +142626,Infinite (2012),Drama|Sci-Fi +142628,The Brave Little Toaster to the Rescue (1997),Animation|Children|Comedy +142630,Macropolis (2012),Animation +142634,The Legend of Seven Cutter (2006),Action|Comedy +142638,Naked Under the Moon (1999),Drama|Romance +142644,Thunderbolt (1929),Drama +142652,Acolytes (2008),Horror|Mystery|Thriller +142663,Babes in Toyland (1997),Animation|Children +142667,Black River (2001),Sci-Fi|Thriller +142669,Varg Veum - Black Sheep (2011),Action|Crime|Thriller +142675,Seashore (2015),Drama +142677,Lootera (2013),Drama|Romance +142679,Fire in Babylon (2011),Documentary +142689,Drunk Wedding (2015),Comedy +142691,Evidence (2011),Horror +142695,Ghoul (2015),Horror|Thriller +142697,Ghoul (2012),Thriller +142707,Let Go (2011),Comedy +142717,Resurrection County (2008),Horror|Thriller +142721,The Rite (1969),Drama +142727,Remains (2011),Action|Drama|Horror|Thriller +142751,The Fighting Lady (1944),Documentary|War +142754,The Lost (2006),Crime|Drama|Thriller +142763,The Phantom of Crestwood (1932),Crime|Mystery +142765,The Program (2015),Drama +142775,The Warrior Empress (1960),Adventure +142778,Trade Winds (1938),Drama +142780,True Women (1997),Drama|Romance|War|Western +142782,Vanessa: Her Love Story (1935),Drama +142788,Witchboard 2: The Devil's Doorway (1993),Horror|Mystery +142791,My Little Bride (2004),Comedy|Drama|Romance +142793,Young Bride (1932),Drama +142795,Love Is in the Air (2011),(no genres listed) +142797,White Rabbit (2013),Drama +142799,The Silenced (2015),Drama|Mystery|Thriller +142801,Alice in Earnestland (2015),(no genres listed) +142803,The Classified File (2015),Crime|Drama +142805,Helios (2015),Action|Crime +142807,Hollywood Adventures (2015),Action|Comedy +142809,Hush Little Baby (2007),Drama|Mystery|Thriller +142811,Carnival of Souls (1998),Horror|Thriller +142813,Full Out (2015),Children|Drama +142815,The Boys Club (1997),Drama +142817,Apaharan (2005),Action|Crime|Drama +142819,Bangalore Days (2014),Comedy|Drama|Romance +142821,Ohm Shanthi Oshaana (2014),Comedy|Romance +142823,Baazigar (1993),Crime|Thriller +142825,Sparsh (1980),(no genres listed) +142827,Waves (2000),Drama|Romance +142829,The Dirty Picture (2011),Comedy|Drama +142831,Garam Masala (2005),Comedy +142833,Chup Chup Ke (2006),Comedy +142835,Dulhe Raja (1998),Comedy|Drama|Romance +142837,Mr. & Mrs. Khiladi (1997),(no genres listed) +142839,Vaaranam Aayiram (2008),Comedy|Drama|Romance|Thriller +142841,Vedam (2010),Drama|Romance +142843,Little Witch Academia (2013),Action|Animation|Comedy|Fantasy +142845,A Small Act (2010),Documentary +142847,Cat Shit One (2010),Animation|War +142849,Rabbit and Deer (2013),Animation|Comedy +142851,"Arab Cortege, Geneva (1896)",Documentary +142853,The Mole at the Sea (2012),Adventure|Animation|Comedy +142855,Paul Taylor Creative Domain (2014),Documentary +142857,1001 Grams (2014),Drama +142859,Factory Girl (2013),Drama|Romance +142861,Cemetery of Splendour (2015),Drama|Fantasy +142863,Crumbs (2015),Adventure|Drama|Sci-Fi +142865,Much Loved (2015),Drama +142867,Tiger House (2015),Action|Crime|Drama +142869,The Tyrannical Father (1941),Comedy +142871,O Pátio das Cantigas (1942),Comedy +142873,O Costa d'África (1954),Comedy +142875,Star (2014),Comedy|Drama|Romance +142877,The Quiet Hour (2015),Drama|Sci-Fi|Thriller +142885,"You're a Good Sport, Charlie Brown (1975)",Children|Drama|Romance +142887,I Am Here (2014),Drama|Thriller +142891,The Legend of Paul and Paula (1973),Drama|Romance +142893,Desolation Canyon (2006),Western +142895,Nana (1934),Drama +142897,Cemetery Without Crosses (1969),Western +142899,L'Oranais (2014),Drama +142901,Un Français (2015),(no genres listed) +142905,Arthur & Merlin (2015),Fantasy +142907,Breaking Dawn (2004),Horror|Mystery|Thriller +142909,La Dame dans l'auto avec des lunettes et un fusil (2015),Thriller +142911,The 10 Year Plan (2014),(no genres listed) +142913,Ollaan vapaita,(no genres listed) +142915,The Slurb (2001),Comedy +142917,Distractions (2015),Comedy +142919,Snow-White and Rose-Red (1979),Children|Fantasy +142921,Essex Boys: Law of Survival (2015),Action|Adventure|Crime|Drama +142923,Blastfighter (1984),Action|Crime|Drama +142925,A Christmas Horror Story (2015),Horror +142927,Sissi: The Fateful Years of an Empress (1957),Drama|Romance +142929,Sissi (1955),Comedy|Drama|Romance +142935,Evil Ed (1997),Horror +142937,RangiTaranga (2015),(no genres listed) +142943,Laserblast (1978),Action|Sci-Fi|Thriller +142947,Spookies (1986),Horror +142951,Vaya con Dios (2002),Comedy +142953,The Thread (2015),Documentary +142955,Certain Prey (2011),Action|Crime|Drama|Mystery|Thriller +142959,Spicy Love Soup (1997),(no genres listed) +142961,Life Eternal (2015),Comedy|Crime|Thriller +142963,7 Chinese Brothers (2015),Comedy +142965,Beautiful Days (1955),Drama +142967,To New Shores (1937),Drama +142969,Virgin Mountain (2015),Comedy|Drama +142971,From The Depths of My Heart (2015),Drama|Horror +142973,Ice and the Sky (2015),Documentary +142975,Navy Seals vs. Zombies (2015),Action|Horror +142977,The Rosenwald Schools (2015),(no genres listed) +142979,The Laundryman (2015),(no genres listed) +142981,A Bell for Ursli (2015),Children +142983,Delirium (1972),Mystery|Thriller +142985,Bringing Ashley Home (2011),Drama +142987,Stavitel chrámu (1920),(no genres listed) +142989,Sleepless In New York (2014),Documentary|Drama|Romance +142991,Mediterranea (2015),Drama +142993,The Club (2015),Drama +142995,Alias Maria (2015),(no genres listed) +142997,Hotel Transylvania 2 (2015),Animation|Comedy +142999,Hidden (2015),Horror|Thriller +143001,Anti-Social (2015),Crime +143003,The Goob (2015),Drama|Romance +143005,The Beat Beneath My Feet (2014),Comedy|Drama +143007,A Horse for Summer (2015),(no genres listed) +143009,Pure (2009),Drama +143011,I nostri ragazzi (2014),Drama +143013,The Seven Deadly Sins (1962),(no genres listed) +143017,Solitary (2009),Mystery|Thriller +143019,Triple Dare (2006),Drama +143023,Don't Think I've Forgotten: Cambodia's Lost Rock and Roll (2014),Documentary +143025,Tim Maia (2014),Drama +143027,Now You See It... (2005),Comedy|Mystery +143029,Stuck in the Suburbs (2004),Children|Comedy +143031,Jump In! (2007),Comedy|Drama|Romance +143033,Winning London (2001),Children|Comedy +143035,Minutemen (2008),Adventure|Children|Comedy|Sci-Fi +143037,30 Days Until I'm Famous (2004),Comedy|Drama|Romance +143039,2gether (2000),Comedy|Drama +143041,Too Young to Marry (2007),Comedy|Drama|Romance +143043,Fish & Cat (2013),(no genres listed) +143045,When Day Breaks (2012),Drama +143047,Dark Blood (2012),Thriller +143053,Oddball (2015),Children +143055,Jett Jackson: The Movie (2001),Action|Adventure|Children|Comedy|Sci-Fi +143061,Don't Look Down (2008),Drama|Romance +143063,Sheila Levine is Dead and Living in New York (1975),Comedy +143065,Orson Welles: The One-Man Band (1995),Documentary +143067,Dream Deceivers: The Story Behind James Vance vs. Judas Priest (1992),(no genres listed) +143069,Daft Punk Unchained (2015),Documentary +143071,Chilling Visions: 5 Senses of Fear (2013),Horror +143076,Aftermath (2004),Drama +143086,An American Girl: Saige Paints the Sky (2013),Children +143091,The Gauntlet (2013),Action|Adventure|Horror +143098,Crawl (2011),Crime|Thriller +143103,First Love (1974),(no genres listed) +143133,Poker Alice (1987),(no genres listed) +143158,The Affair (1967),(no genres listed) +143160,Sunrise (2014),Drama +143168,Wild Life (2014),Drama +143178,"To Sir, with Love II (1996)",Drama +143192,Blow for Blow (1972),Drama +143197,The Horror of Frankenstein (1970),Horror|Sci-Fi +143199,Immoral Tales (1974),Drama|Romance +143201,One of Us (1989),(no genres listed) +143203,Inside (2002),Drama +143205,I Didn't Come Here to Die (2010),(no genres listed) +143207,Jack and the Beanstalk (2010),Adventure|Children|Comedy|Fantasy +143209,Tremors 5: Bloodline (2015),Action|Horror|Sci-Fi +143231,Double Teamed (2002),Children|Drama +143237,Freeheld (2015),Drama|Romance +143239,By the Sea (2015),Drama|Romance +143243,An Open Heart (2012),Drama +143245,The Little Prince (2015),Animation|Fantasy +143247,If You Build It (2014),Documentary +143249,Dark Star: HR Giger’s World (2014),Documentary +143251,Red Passport (2003),Crime|Drama +143253,Food Chains (2014),Documentary +143255,Narcopolis (2014),Mystery|Sci-Fi|Thriller +143257,Ashby (2015),Comedy|Drama +143259,4Got10 (2015),(no genres listed) +143271,Dheepan (2015),Drama +143273,"Forecaster, The (2014)",Documentary +143275,Ronaldo (2015),Documentary +143277,Svend (2011),Documentary +143283,The Flight of the Eagle (1982),(no genres listed) +143305,Between the Lines (1977),(no genres listed) +143309,"Liza, the Fox-Fairy (2015)",Comedy|Fantasy|Romance +143315,Il nome del figlio (2015),Comedy +143317,The Cut (2014),Drama +143319,The Jackpot (1950),Comedy +143333,The Work of Director Jonathan Glazer (2005),(no genres listed) +143335,"Deprisa, Deprisa (1981)",Crime|Drama +143341,Beyond the Mask (2015),Action|Drama +143369,The Clan (2015),Crime|Drama +143373,Bikini Girls on Ice (2009),Horror +143377,Glen Campbell: I'll Be Me (2014),Documentary|Drama +143379,The Victim (2006),Horror|Mystery|Thriller +143381,Killer Darts (1968),Action|Adventure +143383,Nanga Parbat (2010),Adventure|Drama +143385,Bridge of Spies (2015),Drama|Thriller +143389,Les Misérables in Concert - The 25th Anniversary (2010),(no genres listed) +143391,The Lost Medallion: The Adventures of Billy Stone (2013),Adventure|Children +143404,A Tale of Love and Darkness (2015),Drama +143406,Blood of My Blood (2011),Drama +143408,Return to Reason (1923),(no genres listed) +143412,My Internship in Canada (2015),Comedy +143414,"Gone, But Not Forgotten (2003)",Drama|Romance|Thriller +143416,Honey and the Pig (2005),Comedy +143418,Amnesia: The James Brighton Enigma (2005),Drama|Mystery|Thriller +143420,Tsiou (2005),(no genres listed) +143422,2 (2007),Drama +143424,Radical Grace (2015),Documentary +143426,A Ring of Endless Light (2002),(no genres listed) +143430,Jodi Arias: Dirty Little Secret (2013),Drama|Romance +143432,Moscow Heat (2004),Action|Drama|Thriller +143436,Manam (2014),Children|Comedy|Drama|Fantasy +143438,Coming Home (2003),Drama|Romance +143440,"Mune, le gardien de la lune (2015)",Animation|Children|Fantasy +143442,Directed by Sidney Lumet: How the Devil Was Made (2008),Documentary +143444,A Bigger Splash (2015),Crime|Drama|Mystery +143446,The Sun's Burial (1960),Drama +143448,Good-for-Nothing (1960),Action +143450,Morlang (2001),Drama|Romance|Thriller +143452,El pico 2 (1984),Drama +143454,Youth in Fury (1960),(no genres listed) +143456,Argo 2 (2015),Action|Comedy|Crime +143458,The Great Hypnotist (2014),Drama|Mystery|Thriller +143460,I Just Want to Kiss You (1998),(no genres listed) +143462,Iris (2014),Documentary +143464,Where Hope Grows (2014),Drama +143466,Ghost Writer (2007),Comedy|Horror +143468,Numbered (2012),Documentary +143470,6 Ways to Die (2015),Action|Crime|Thriller +143472,Into the Grizzly Maze (2015),Action|Horror|Thriller +143474,Secrets of War (2014),Children|Drama|War +143476,Where To Invade Next (2015),Documentary +143492,Runt Page (1932),(no genres listed) +143494,The Pie-Covered Wagon (1932),(no genres listed) +143500,The Hunt for the BTK Killer (2005),Crime|Drama|Thriller +143504,Karachi se Lahore (2015),Children|Comedy +143506,Sword Art Online Extra Edition (2013),Action|Adventure|Animation|Drama|Fantasy +143508,The Pleasure Is All Mine (2004),Comedy|Drama|Romance +143511,Human (2015),Documentary +143515,Eisenstein in Guanajuato (2015),Comedy|Romance +143517,The Summer of Sangaile (2015),Drama|Romance +143519,The Pearl Button (2015),Documentary +143521,Pennies from Heaven (1978),(no genres listed) +143523,Sleeping Giant (2015),Adventure|Drama +143525,Chasuke's Journey (2015),Comedy|Drama +143529,Roukli (2015),Drama +143531,Mountains May Depart (2015),Drama +143535,"Tent City, U.S.A (2012)",Documentary +143539,Titanic at 100: Mystery Solved (2012),(no genres listed) +143541,Sleeping on Dark Waters (2008),(no genres listed) +143543,Rainbow Bridge (1972),Documentary +143545,A Tale of Two Cities (1980),Animation|Drama|Romance +143547,The Phantom of the Opera at the Royal Albert Hall (2011),Drama|Romance +143549,The Indian (2007),Drama +143551,Nina (1978),(no genres listed) +143553,The Hoarder (2015),Horror|Thriller +143561,Swat: Unit 887 (2015),Action|Thriller +143563,Zombie Killers: Elephant's Graveyard (2015),Horror +143571,Private Practices: The Story of a Sex Surrogate (1986),Documentary +143575,Fuga de cerebros 2 (2011),Action|Sci-Fi|Thriller +143583,Nous York (2012),Comedy +143587,Carny (2009),Horror|Sci-Fi|Thriller +143595,Born Innocent (1974),Drama +143599,Coin Locker Girl (2015),Drama +143621,How to Kill a Judge (1975),Action|Thriller +143631,The Most Beautiful Wife (1970),Crime|Drama +143635,Playing Dead (2013),Comedy +143637,Road to Paloma (2014),Drama|Thriller +143639,The True Meaning of Pictures: Shelby Lee Adams' Appalachia (2002),Documentary +143641,South (1919),Documentary +143643,Porridge (1979),Comedy|Crime +143645,Carry On Jack (1963),Comedy +143647,An Inspector Calls (2015),Drama|Thriller +143649,Freedom (2001),Drama +143651,Rossini (1997),Comedy +143653,Kokowaah 2 (2013),Comedy +143655,Simshar (2014),Drama +143657,The Invitation (2015),Horror|Thriller +143659,Total Reality (1997),Action|Sci-Fi +143661,Rage (2010),Drama|Horror|Sci-Fi +143666,The Adventures of Mickey Matson and the Copperhead Conspiracy (2012),Children +143668,The Taste of Money (2012),Drama +143679,"Ocean Waif, The (1916)",Drama +143681,'49-'17 (1917),Comedy|Western +143683,Laura Lansing Slept Here (1988),Comedy +143685,Mark of the Witch (1970),Horror +143687,Schoolgirls in Chains (1973),Horror +143689,Criminally Insane (1975),Horror +143693,The Student Body (1976),Comedy|Drama +143695,The Falls (2012),Drama +143697,Winnie the Pooh Discovers the Seasons (1981),(no genres listed) +143701,Under the Radar (2004),(no genres listed) +143703,Eden (2014),Drama|Thriller +143705,The Secret Lives of Second Wives (2008),Drama|Romance +143707,Cruel World (2005),Comedy|Horror|Thriller +143709,The Take (2009),(no genres listed) +143713,My Mother (2015),Drama +143715,The Parole Officer (2001),Action|Comedy +143787,Good King Dagobert (1984),Comedy +143789,Madman at War (1985),Comedy +143791,Il commissario Lo Gatto (1987),(no genres listed) +143803,In nome del popolo italiano (1971),(no genres listed) +143831,The Monsters (1963),Comedy +143835,A Daughter Of Destiny (1928),Drama|Fantasy|Horror|Sci-Fi +143853,Two Heads Are Better Than None (2000),Children|Comedy +143855,I bambini sanno (2015),(no genres listed) +143857,The Good Father (1985),Drama +143861,2103: The Deadly Wake (1997),Sci-Fi +143863,Spartacus (2004),Action|Drama +143866,Miss Conception (2008),Comedy|Romance +143868,Beauty & the Briefcase (2010),Comedy|Drama|Romance +143870,The Perfect Date (2010),Comedy|Romance +143872,Cayman Went (2009),Drama|Romance +143874,Nightmare Detective (2006),Crime|Fantasy|Horror|Thriller +143876,Treading Water (2001),Drama +143878,The Victim (2011),Action|Horror|Thriller +143880,Hunt to Kill (2010),Action|Adventure|Thriller +143882,Operator (2015),Action|Drama|Thriller +143886,Break Point (2014),Comedy +143890,LEGO DC Super Heroes: Justice League - Attack of the Legion of Doom! (2015),Animation|Children +143892,Salad Days (2015),Documentary +143896,How To Change The World (2015),Documentary +143898,Saint Young Men (2013),Animation|Comedy +143914,Kiss (1963),Documentary +143935,Dead Before Dawn (1993),Drama|Thriller +143942,"Namu, the Killer Whale (1966)",Adventure|Children|Drama +143959,Don't Look Up (2009),Horror|Thriller +143969,Er ist wieder da (2015),Comedy +143972,Home (2013),(no genres listed) +143974,Home (2011),Drama +143980,Home for the Holidays (1972),Horror|Thriller +143986,Just Another Girl on the I.R.T. (1992),Drama +143990,Little Dorrit (2008),Drama +143998,Gone (2006),Crime|Drama|Horror|Mystery|Thriller +144005,Sleepaway Camp IV: The Survivor (1992),Horror +144013,Storm in a Teacup (1937),Comedy|Romance +144020,The Boy Next Door (2008),Crime|Mystery|Thriller +144027,The Grim Game (1919),(no genres listed) +144031,The Life and Times of Rosie the Riveter (1980),Documentary|War +144033,The Marriage Chronicles (2012),Comedy|Romance +144037,The Other (2007),Drama +144048,Something About Amelia (1984),Drama +144050,Attack on Titan: Crimson Bow and Arrow (2014),Action|Animation +144052,Secrets of a Psychopath (2014),Horror|Thriller +144056,"Connasse, Princesse des cœurs (2015)",Comedy +144058,Territory (2015),Adventure|Drama +144060,Live From New York! (2015),Comedy|Documentary +144062,Junun (2015),Documentary +144064,Call Me Lucky (2015),Documentary +144066,Blood Punch (2013),Horror|Thriller +144068,Eaters (2015),Horror|Thriller +144070,June (2015),Horror|Sci-Fi +144072,The Stranger (2015),Drama|Horror|Mystery|Thriller +144074,Code Rush (2000),Documentary +144102,La vita agra (1964),(no genres listed) +144134,The Hive (2015),Sci-Fi|Thriller +144136,Framed (1975),Action|Adventure|Crime|Thriller +144138,Billy Elliot: The Musical (2014),Comedy|Drama +144140,Ready? OK! (2008),Children|Comedy +144142,The Eternal Rainbow (1958),(no genres listed) +144144,Times of Joy and Sorrow (1957),(no genres listed) +144148,TimeScapes (2012),Documentary +144152,All About Them (2015),Comedy|Romance +144154,Difret (2014),Drama +144158,Deep Dark (2015),(no genres listed) +144160,"Honeybaby, Honeybaby (1974)",Action +144162,Dirty O'Neil (1974),Comedy|Drama|Thriller +144164,Fighting Back (1982),Action|Crime|Thriller +144166,No Man's Land (1978),(no genres listed) +144168,The Party Never Stops: Diary of a Binge Drinker (2007),Drama +144170,Teenage Bank Heist (2012),Thriller +144172,February (2015),Horror +144174,"Just, Melvin: Just Evil (2000)",(no genres listed) +144176,Hacker's game (2015),Drama|Romance|Thriller +144178,Reboot (2012),(no genres listed) +144180,Mad As Hell (2014),(no genres listed) +144182,SPL 2: A Time for Consequences (2015),Action|Crime|Drama +144186,The Inhabitants (2015),Horror +144190,2084 (1984),Documentary +144192,¡Cuba Sí! (1961),(no genres listed) +144194,The Narrows (2008),Crime|Drama|Thriller +144196,Re-Kill (2015),Horror|Sci-Fi +144198,Keith Richards: Under the Influence (2015),Documentary +144202,Catch That Girl (2002),Action|Children +144204,L'étudiante et Monsieur Henri (2015),(no genres listed) +144206,Standing Tall (2015),Comedy|Drama +144208,Bicycle Dreams (2009),(no genres listed) +144210,Just Eat It: A Food Waste Story (2014),Documentary +144212,Running Wild (2006),Action|Crime|Thriller +144216,Invisible Sister (2015),Adventure|Comedy|Fantasy +144218,Chez Nous (2013),Comedy|Drama +144222,Bros Before Hos (2013),Comedy +144224,Baskin (2015),Horror +144226,Patch Town (2014),Adventure|Comedy|Fantasy|Sci-Fi +144228,ABE (2013),Sci-Fi|Thriller +144230,Abiogenesis (2011),Sci-Fi +144248,Girl with a Suitcase (1961),Drama|Romance +144250,Mediastan (2013),Documentary +144254,Bad Day to Go Fishing (2009),Comedy|Drama|Thriller +144256,Running Turtle (2009),(no genres listed) +144258,Tazza: The High Rollers (2006),(no genres listed) +144260,Big Match (2014),Action|Comedy|Thriller +144262,Slow Learners (2015),Comedy|Romance +144264,The Con Artists (2014),Action|Crime|Thriller +144266,Nightlight (2015),Horror|Thriller +144268,Mockingbird (2014),Horror +144270,Preggoland (2015),Comedy|Drama +144272,Blackwood (2014),Thriller +144274,The Target (2014),Action|Thriller +144276,Brotherhood of Blades (2014),Action|Drama|Romance +144278,2000 AD (2000),Action|Thriller +144280,4bia (2008),Drama|Horror +144282,A Better Tomorrow (2010),Action|Drama|Thriller +144284,5150 Elm's Way (2009),(no genres listed) +144286,A Good Man (2014),Action +144288,Carved: The Slit-Mouthed Woman (2007),Horror +144290,Another Public Enemy (2005),Action|Drama|Thriller +144292,APT. (2006),Horror +144294,Alone (2007),Drama|Horror|Thriller +144296,Animal (2014),Horror|Thriller +144298,Avalon High (2010),Children|Drama|Fantasy +144300,As the Light Goes Out (2014),Action|Drama +144302,Commitment (2013),Action|Drama|Thriller +144304,Lethal Hostage (2012),Crime|Drama +144306,Battlefield Heroes (2011),Comedy|Drama +144308,Black House (2007),Horror|Thriller +144310,The Beast Stalker (2008),Action +144312,Fallen City (2011),Action|Drama +144314,Never to Lose (2005),(no genres listed) +144316,Explosive City (2004),Action +144318,Colour of the Loyalty (2005),Crime|Drama +144320,The Apprehenders (2011),Action|Comedy +144322,Mr. Socrates (2005),Action|Crime +144324,Once Upon a Time (2008),Action|Adventure|Comedy +144326,Hanbando (2006),Drama|Mystery|Thriller +144328,MW (2009),Drama|Sci-Fi|Thriller +144330,Poker King (2009),Comedy +144332,Fate (2008),Mystery|Thriller +144334,Once a Gangster (2010),Action|Comedy|Crime +144336,Kotsutsubo (2012),Horror +144338,Holiday (2006),Action|Children|Comedy|Crime|Drama|Romance +144340,Countdown (2011),Action|Thriller +144342,Troubleshooter (2010),Action|Thriller +144344,Righteous Ties (2006),Action|Adventure|Crime|Drama +144346,Wu Dang (2012),Action +144348,The Tower (2012),Action|Drama +144350,Under the Mountain (2009),Action|Adventure|Children|Drama|Fantasy|Sci-Fi +144352,Unforgiven (2013),Action|Crime|Drama +144354,The Wrath Of Vajra (2013),Action|Fantasy|Horror +144356,The Lost Bladesman (2011),Action|Drama|War +144358,The Millionaire Tour (2012),Drama|Romance +144360,The Midnight After (2014),Comedy|Sci-Fi|Thriller +144362,The Unjust (2010),Crime|Thriller +144364,Triad Wars (2008),Action|Crime +144366,The Twins Effect II (2004),Action|Adventure|Comedy|Sci-Fi +144368,Triple Tap (2010),Action|Mystery|Thriller +144370,The White Storm (2013),Action|Crime|Drama|Mystery +144372,The Sword with No Name (2009),Action|Drama +144374,Psychometry (2013),Mystery +144376,11:00 AM (2013),Fantasy|Sci-Fi +144378,Voice of a Murderer (2007),Drama|Thriller +144380,The Fatal Encounter (2014),Action|Drama +144382,Jim Jefferies: Contraband (2008),Comedy +144384,The Robbers (2009),Action|Drama|Thriller +144386,The Underdog Knight (2008),Action|Comedy +144388,When Night Falls (2007),Horror|Thriller +144390,Turning Point (2009),Action|Children|Crime|Drama|Thriller +144392,Underdog Knight 2 (2011),Action +144394,Rebellion (2009),Action|Crime|Thriller +144396,Undercover (2007),Action|Crime|Thriller +144398,Hwayi: A Monster Boy (2013),Action|Thriller +144400,Dragon Squad (2005),Action|Crime +144402,For the Emperor (2014),Action|Crime|Thriller +144404,Fists of Legend (2013),Action|Drama +144406,The Daisy Chain (2008),Thriller +144408,Firestorm (2013),Action|Crime +144410,Lucky Luke (1991),Comedy|Western +144412,Hidden (2009),Horror|Thriller +144414,Seven Days (2007),Crime +144416,Solstice (2008),Drama|Horror|Thriller +144418,Table for Three (2009),Comedy|Romance +144420,Headhunter (2009),Thriller +144422,Kundo: Age of the Rampant (2014),Action|Drama +144424,Straight A's (2013),Comedy|Drama +144426,Clockstoppers (2002),Adventure|Children|Sci-Fi|Thriller +144428,Secret (2009),Crime|Thriller +144430,Crying Fist (2005),Drama +144432,Hindsight (2011),Action|Crime|Romance +144434,Bunshinsaba: Ouija Board (2004),Horror +144436,House of Fury (2005),Action|Comedy +144438,The Bullet Vanishes (2012),Action|Mystery +144440,Deranged (2012),Thriller +144442,Private Eye (2009),(no genres listed) +144444,Midnight FM (2010),Crime|Mystery|Thriller +144448,The Master (2015),(no genres listed) +144460,The Founding of a Republic (2009),Drama +144464,Paradise Found (2003),Drama +144466,Deadly Virtues: Love.Honour.Obey. (2014),Drama|Horror|Thriller +144468,Faith of My Fathers (2005),Documentary|Drama +144470,The Devil's Path (2013),Thriller +144472,Crows Explode (2014),Action|Drama +144474,Control (2013),Thriller +144476,Amarilly of Clothes-Line Alley (1918),Drama|Romance +144478,"Sex, Drugs & Taxation (2013)",Comedy|Drama +144480,Santa Claws (2014),Children|Fantasy +144482,Circle (2015),Drama|Horror|Sci-Fi +144486,Operation 'Happy New Year'! (1996),Comedy +144488,Yoga (2009),Horror +144490,The Cat (2011),Mystery +144492,R2B: Return to Base (2012),Action|Drama|Romance +144494,Mourning Grave (2014),Comedy|Horror|Romance|Thriller +144496,Cruel Winter Blues (2006),Crime|Drama +144498,Coming Soon (2008),Horror|Thriller +144500,Haunters (2010),Sci-Fi|Thriller +144502,Death Bell (2008),Horror|Thriller +144504,The Client (2011),Drama|Thriller +144506,Kamui (2009),Action|Drama +144508,Legendary Assassin (2008),Action|Adventure +144510,Broken (2014),Drama|Mystery|Thriller +144512,The Ghost (2004),Horror|Thriller +144514,Quick (2011),Action|Comedy|Thriller +144516,The Brain Man (2013),Mystery +144518,Runaway (2005),Drama|Thriller +144520,Nightfall (2012),Action|Crime|Thriller +144522,Sky High (2003),Action|Horror|Thriller +144524,Montage (2013),Crime|Mystery|Thriller +144526,The Doll Master (2004),Horror +144528,Fakta Ladh Mhana,(no genres listed) +144530,Overheard (2009),Drama|Thriller +144532,Cold Eyes (2013),Action|Crime +144534,Blood Rain (2005),Thriller +144536,Guns & Talks (2001),Action|Comedy +144538,Cold War (2012),Action|Thriller +144540,The Dead Zone (2002),Drama|Sci-Fi|Thriller +144542,Life Without Principle (2011),Action|Crime|Thriller +144544,Platinum Data (2013),Drama|Mystery +144546,Run-ning-maen (2013),Action|Comedy|Thriller +144548,Comeback Season (2006),Children|Comedy|Romance +144550,Howling (2012),Mystery|Thriller +144552,Punished (2011),Action|Crime|Thriller +144554,Bloody Tie (2006),Action|Crime|Drama|Thriller +144556,Helpless (2012),Horror|Mystery +144558,"The Butcher, the Chef, and the Swordsman (2010)",Action|Comedy +144560,Familiar Strangers (2008),Comedy|Drama +144562,Open City (2008),Action|Drama|Thriller +144564,King of Triads (2010),Action|Thriller +144566,Man Of Vendetta (2010),Crime|Drama|Thriller +144568,Killer Toon (2013),Horror|Thriller +144570,Kung Fu Chefs (2009),Action|Comedy +144572,Don't Click (2012),Crime|Horror|Mystery +144574,Gallants (2010),Action|Comedy +144576,Seoul Raiders (2005),Action|Comedy|Drama|Thriller +144578,Motorway (2012),Action|Crime +144580,"Secretly, Greatly (2013)",Action|Comedy|Drama +144582,Divergence (2005),Action|Thriller +144584,Murderer (2009),Crime|Drama|Mystery|Thriller +144586,Parallel Life (2010),Action|Drama|Mystery|Thriller +144588,Days of Wrath (2013),Drama|Thriller +144590,Overheard 2 (2011),Action|Drama|Thriller +144592,Overheard 3 (2014),Action|Crime|Mystery|Thriller +144594,Silver Medalist (2009),Action|Adventure|Comedy|Drama +144596,Eye For An Eye (2008),Action|Drama|Thriller +144598,Black Ransom (2010),Action|Thriller +144600,Brave Hearts: Umizaru (2012),Action|Drama +144602,Heaven's Soldiers (2005),(no genres listed) +144604,Running Out of Time 2 (2001),Action|Crime|Thriller +144606,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Romance|Thriller +144608,Double Tap (2000),Action|Crime|Thriller +144610,Spy girl (2004),Action|Comedy|Romance +144612,Blind Detective (2013),Comedy|Crime|Drama +144614,Meadowland (2015),Drama +144616,Watchers of the Sky (2014),Documentary +144618,All Things Must Pass (2015),Documentary +144620,Goosebumps (2015),Adventure|Comedy|Horror +144632,Back In Time (2015),Documentary +144634,"Girl King, The (2015)",Drama +144638,Sweet Alibis (2014),Action|Comedy|Crime|Thriller +144640,Genome Hazard (2014),Drama|Thriller +144642,Gangster High (2006),Action|Crime +144646,Zombie Ninjas vs Black Ops (2015),Action|Horror +144650,The Wicked Within (2015),Horror +144652,Hi-De-Ho (1947),(no genres listed) +144654,The Christmas Candle (2013),Drama +144656,The Measure of a Man (2015),Drama +144660,Gloria (2014),Drama +144662,Marius (2013),Drama +144664,Ostwind (2013),Adventure|Children +144668,Algorithm (2014),Crime|Drama|Thriller +144670,Freedom Riders (2010),Documentary +144672,Lifepod (1993),Mystery|Sci-Fi|Thriller +144674,My Grandpa the Bankrobber (2011),(no genres listed) +144676,Wither (2013),Horror +144678,No Place on Earth (2012),Documentary|War +144680,Rita's Last Fairy Tale (2012),(no genres listed) +144682,The Floorwalker (1916),Comedy +144684,Dharam Sankat Mein (2015),(no genres listed) +144686,Chupke Chupke (1975),Comedy +144688,I (2015),Action|Fantasy|Romance|Thriller +144690,The Vagabond (1916),Comedy +144692,Gunhed (1989),Action|Sci-Fi +144694,The Count (1916),Comedy +144696,The Pawnshop (1916),Comedy +144698,Miss You Already (2015),Comedy|Drama|Romance +144700,The Cokeville Miracle (2015),Children|Drama +144702,Tales From the Dark 2 (2013),Horror +144704,Now & Later (2009),Drama +144706,The Witches of Oz (2011),Action|Drama|Fantasy +144708,Dark Summer (2015),Horror|Thriller +144710,The Shift (2009),Documentary|Drama +144712,Unity (2015),Documentary +144714,The Perfect Guy (2015),Thriller +144716,Rock the Kasbah (2015),Comedy +144720,Whiskey School (2005),(no genres listed) +144722,Lost Junction (2003),Drama|Romance|Thriller +144724,Night Game (1989),Crime|Drama|Thriller +144734,Freaks of Nature (2015),Comedy|Horror|Sci-Fi +144736,unINDIAN (2015),Comedy|Romance +144738,The Treasure (2015),Comedy +144740,Sighs of Spain (1939),(no genres listed) +144742,Milton Glaser: To Inform & Delight (2008),(no genres listed) +144744,Housekeeping (2015),Thriller +144746,Gravy (2015),(no genres listed) +144752,Bikini Model Academy (2015),Comedy +144760,Momentum (2015),Action|Thriller +144762,Tales of Halloween (2015),Horror +144764,Death Valley (2015),Crime|Drama|Mystery +144770,Summer Time Machine Blues (2005),Comedy +144774,The Day the '60s Died (2015),Documentary +144776,"Alfie, the Little Werewolf (2011)",Children +144782,The Diabolical (2015),Horror|Sci-Fi|Thriller +144784,Aferim! (2015),Drama +144786,House of Boys (2009),Drama|Romance +144788,The Soldier and the Lady (1937),Adventure|Romance|War +144804,Red Ball Express (1952),(no genres listed) +144828,The Tunnel (1933),Sci-Fi +144848,War Story (2014),Drama +144852,Could It Happen Here? (1977),Crime +144858,God's Angry Man (1980),Documentary +144862,Behind The Rising Sun (1943),Drama|War +144882,I 7 di Marsa Matruh (1970),(no genres listed) +144884,Alleluja & Sartana Are Sons... Sons of God (1972),(no genres listed) +144886,A Virgin in the Family (1975),Drama +144888,Skin 'em Alive (1978),(no genres listed) +144890,Rolf (1984),Action +144894,They Found Hell (2015),Horror +144896,"Anna: the Pleasure, the Torment (1973)",Drama +144910,1944 (2015),Drama|War +144916,Taking Chances (2011),(no genres listed) +144926,Sex Pot (2009),Comedy +144928,El Analfabeto (1961),Comedy +144930,El Bolero de Raquel (1957),Comedy +144932,Official Rejection (2009),Comedy|Documentary +144934,Go Goa Gone (2013),Comedy|Horror +144936,The Wannabes (2003),Comedy +144938,Money for Nothing: Inside the Federal Reserve (2013),Documentary +144940,The Vultures (1984),Action|Comedy|Drama|Thriller +144950,Aanmodderfakker (2014),Comedy +144956,9/11: The Falling Man (2006),Documentary +144958,Škola princů (2010),Children +144960,Pünktchen und Anton (1953),Drama +144962,Phantom Boy (2015),Adventure|Animation|Children +144968,Master and Tatyana (2015),Documentary|Drama +144970,The Best of Men (2012),Drama +144972,The Sixth Side of the Pentagon (1968),Documentary +144974,Eclipse (1999),Documentary +144976,Bone Tomahawk (2015),Horror|Western +144982,Paranormal Activity: The Ghost Dimension (2015),Horror|Thriller +144984,Pyaar Ka Punchnama 2 (2015),Comedy|Drama|Romance +144986,A Chinese Ghost Story (2011),Fantasy|Sci-Fi +144988,Imagination (2008),Drama|Fantasy|Sci-Fi +144990,The Edge of Dreaming (2010),(no genres listed) +144992,The Chinese Botanist's Daughters (2006),Drama +144994,The Secret Life of Plants (1979),Documentary +145006,Demon Witch Child (1975),(no genres listed) +145012,The Sea Serpent (1984),Horror|Sci-Fi +145022,Blinky Bill the Movie (2015),Animation +145024,N: The Madness Of Reason (2014),Documentary +145026,A Nightingale Falling (2014),Drama|War +145028,Jem and the Holograms (2015),Adventure|Comedy|Drama|Fantasy +145030,The 33 (2015),Drama +145034,Journey to the Shore (2015),Drama|Fantasy|Romance +145038,Devotion (2003),Drama +145042,The Genius Club (2006),Thriller +145044,Peak: The Rescuers (2011),Drama +145046,Railways (2010),Drama +145048,The Watermen (2011),Horror|Thriller +145050,SuckSeed (2011),Comedy +145052,"Ao, The Last Neanderthal (2010)",Adventure +145054,Homeland (2014),Drama +145056,Ghost Shark (2013),Horror|Sci-Fi +145058,Pee Mak Phrakanong (2013),Comedy|Romance +145062,Le Rossignol (2005),Fantasy +145064,Suburra (2015),Crime|Drama +145066,Amy Schumer: Live at the Apollo (2015),Comedy +145070,They Look Like People (2015),Horror|Mystery|Thriller +145072,The Christmas Card (2006),Drama|Romance +145074,Big Bird in China (1983),(no genres listed) +145080,Extraordinary Tales (2015),Animation|Horror|Mystery +145088,SuperBob (2015),Action|Comedy|Romance +145090,David (1997),Children +145092,Word of Honor (2003),Drama|Thriller +145094,Howl (2015),Horror +145096,Barbie & Her Sisters in the Great Puppy Adventure (2015),Animation +145100,If Tomorrow Comes (1986),Crime|Drama|Mystery +145102,From Mexico With Love (2009),Action|Adventure|Drama +145108,Losing Ground (1982),(no genres listed) +145110,Looking for Langston (1989),Drama +145112,Fireworks (1947),Drama +145114,Pedro (2008),Drama +145116,Hard (1998),Thriller +145118,Sugar Coated (2015),(no genres listed) +145120,Monopol (1996),Comedy +145122,Silsile (2014),(no genres listed) +145124,Bir Avuç Deniz (2011),(no genres listed) +145126,Gecenin Kanatları (2009),Crime|Drama|Romance +145128,Beni Unutma (2011),Romance +145130,Benim Dünyam (2013),Drama +145132,The Butterfly's Dream (2013),(no genres listed) +145142,Curve (2015),Horror|Thriller +145144,Night At The Golden Eagle (2002),Action|Adventure|Crime|Drama +145146,K-9: P.I. (2002),Action|Adventure|Comedy|Crime +145150,The Dressmaker (2015),Comedy|Drama|Thriller +145156,The Perfect Husband (2004),(no genres listed) +145162,Ripper: Letter from Hell (2001),Horror +145168,Lonesome Ghosts (1937),Animation|Comedy +145172,Gulliver Mickey (1934),Animation|Children|Fantasy +145174,Ye Olden Days (1933),Animation +145176,Mickey's Good Deed (1932),Animation|Children +145186,Little Hiawatha (1937),Animation +145188,Magician Mickey (1937),Animation +145192,Alpine Climbers (1936),Animation +145194,Thru the Mirror (1936),Animation +145196,Mickey's Polo Team (1936),Animation +145198,Three Orphan Kittens (1935),Animation +145200,Pluto's Judgement Day (1935),Animation +145208,Building a Building (1933),Animation +145218,Balto III: Wings of Change (2004),Adventure|Animation|Children +145220,Bear (2010),Action|Horror|Thriller +145235,Deep in the Darkness (2014),Horror|Thriller +145240,Dysfunctional Friends (2012),Comedy|Romance +145279,Monster Dog (1984),Horror +145283,Nowitzki: The Perfect Shot (2014),Documentary +145307,Strictly Business (1991),Comedy|Romance +145312,The Chinese Boxer (1970),Action +145324,Twice Upon a Time (2006),Comedy +145340,Now Add Honey (2014),Comedy +145342,Yearning (1964),Drama +145344,Balibo (2009),Drama|Mystery|Thriller +145364,The Concorde Affair (1979),Action|Crime|Thriller +145370,The Crow's Nest (2014),(no genres listed) +145372,Berkshire County (2014),Horror|Thriller +145382,The Triangle (2001),Thriller +145384,The Absent One (2014),Crime|Thriller +145388,Forever (2015),Drama|Romance|Thriller +145390,Artificial Paradises (2012),Drama +145394,I vampiri (1957),Horror +145400,The House of Exorcism (1975),Horror +145418,Trumbo (2015),Drama +145468,All Hallows' Eve (2013),Horror +145474,City on Fire (1979),Action|Drama +145487,Haze (2005),Horror +145489,Billboard Dad (1998),Children|Comedy|Romance +145491,Our Lips Are Sealed (2000),Children|Comedy|Drama +145493,The Challenge (2003),Action|Adventure|Children|Comedy|Sci-Fi +145496,Delhi Safari (2012),Animation|Children|Comedy +145500,Yolngu Boy (2001),Drama +145502,The Land of Smiles (2015),Documentary +145504,Foodies (2014),Documentary +145506,24 Days (2014),Drama|Thriller +145508,Ghosts of Ole Miss (2012),Documentary +145510,Nature's Grave (2009),Drama|Horror|Thriller +145514,Marguerite (2015),Drama +145520,Lake Placid 2 (2007),Horror|Sci-Fi +145522,Lake Placid 3 (2010),Action|Horror|Sci-Fi|Thriller +145524,Lake Placid: The Final Chapter (2012),Action|Horror|Sci-Fi|Thriller +145532,Getting Away with It the Italian Way (1962),Comedy +145538,The Strange Type (1963),Comedy +145572,Aenigma (1987),Horror +145576,Murder-Rock: Dancing Death (1984),Thriller +145584,The Psychic (1977),Horror|Thriller +145596,Kabukicho Love Hotel (2015),Comedy|Drama +145598,My Man (2014),Crime|Drama|Romance +145602,La buca (2014),Comedy +145604,Soldier of God (2005),Drama +145606,Lovemilla (2015),Comedy|Romance|Sci-Fi +145610,"Teodora, Slave Empress (1954)",Adventure|Drama|Romance +145700,The Day the Sky Exploded (1958),Action|Sci-Fi +145724,Idaho Transfer (1973),Sci-Fi +145733,(The New) War of the Buttons (2011),Adventure|Children +145735,Killer Crush (2015),(no genres listed) +145737,Reluctant Witness (2015),Drama +145743,Paul McCartney Really Is Dead: The Last Testament of George Harrison (2010),Documentary +145745,Witch Hunt (1999),Crime|Drama +145747,Five Thirteen (2013),Crime|Drama +145751,Huie's Sermon (1983),Documentary +145753,Wodaabe: Herdsmen of the Sun (1989),Documentary +145755,The Dark Glow of the Mountain (1985),Documentary +145759,American Warships (2012),Action|Sci-Fi|Thriller +145761,Cruel & Unusual (2014),Sci-Fi|Thriller +145763,"Il ricco, il povero e il maggiordomo (2014)",Comedy +145765,Elephant (1989),Crime +145769,Halloween with the New Addams Family (1977),Comedy|Horror +145771,Treevenge (2008),Comedy|Horror +145773,Wolf Warrior (2015),Action|Adventure|War +145775,Rubble Kings (2015),Documentary +145783,The Seven Magnificent Gladiators (1983),Adventure|Drama|Fantasy +145787,Rats: Night of Terror (1984),Horror|Sci-Fi +145817,Zombies: The Beginning (2007),(no genres listed) +145837,Caligula and Messalina (1981),Romance +145839,Concussion (2015),Drama +145857,The Phoenix Incident (2015),Horror|Sci-Fi|Thriller +145861,Committed (1991),(no genres listed) +145893,Special Section (1975),Drama|War +145903,To Catch a Spy (1971),(no genres listed) +145905,To Russia... With Elton (1979),Documentary +145915,The Exorcism of Molly Hartley (2015),Horror +145919,Camarades (1970),Drama +145921,United Passions (2015),Drama +145923,Terror (1981),Horror +145925,Detective K: Secret of the Virtuous Widow (2011),Action|Comedy|Crime|Mystery +145929,Killer Tattoo (2001),Action|Comedy +145931,Yaji and Kita: The Midnight Pilgrims (2005),Action|Comedy +145933,Young Policemen in Love (1995),(no genres listed) +145935,"Peanuts Movie, The (2015)",Adventure|Animation|Children|Comedy +145937,Varsham (2014),Drama +145939,Sandesham (1991),Children|Comedy +145941,Making a Living (1914),Comedy +145943,The Lies of the Victors (2015),Thriller +145947,An Autumn's Tale (1987),Drama|Romance +145949,Just Once More (1962),Drama +145951,Bloodsport: The Dark Kumite (1999),Action|Thriller +145955,The Haunting of Whaley House (2012),Horror +145958,Am I Beautiful? (1998),Comedy +145960,Skinwalker Ranch (2013),Horror|Sci-Fi|Thriller +145962,"Devil's Needle, The (1916)",Drama +145964,Children of Eve (1915),Drama +145966,Jack Frusciante è uscito dal gruppo (1996),(no genres listed) +145968,Song 'e napule (2013),(no genres listed) +145972,Everything You Want (2005),Comedy|Drama|Romance +145976,Living It Up (1954),Comedy +145978,Batkid Begins (2015),Children|Documentary +145992,The House That Swift Built (1982),Comedy|Drama|Fantasy +145994,Formula of Love (1984),Comedy +145996,Homebodies (1974),Comedy|Horror +145998,"Poor, Poor Pavel (2003)",Drama +146000,The Last Inch (1958),Adventure|Drama +146002,D'Artagnan and Three Musketeers (1979),Adventure|Comedy +146004,Antikiller (2002),Action|Crime +146006,High Rollers (1976),Comedy|Crime +146008,Cabbages and Kings (1978),Comedy +146010,Sentimentalnyy roman,(no genres listed) +146012,Little Tragedies (1980),Children|Drama +146014,Looking For Lola (1997),Comedy|Romance +146016,Elder Sister (1966),Drama|Romance +146018,The Elder Son (1975),Drama +146020,OceanWorld 3D (2009),Documentary +146022,Once Upon a Time Twenty Years Later (1981),Comedy|Drama|Romance +146024,A Man from Boulevard des Capucines (1987),Comedy|Romance|Western +146026,Beyond Innocence (1989),(no genres listed) +146028,The Adventures of Sherlock Holmes and Dr. Watson: The Hound of the Baskervilles (1981),Crime|Mystery +146030,Cinderella (1947),Children|Comedy|Fantasy|Musical|Romance +146032,The First Teacher (1965),Drama +146034,Four Winds of Heaven (1963),Drama|War +146036,31st of June (1978),Comedy|Romance +146038,Tears Were Falling (1982),Comedy|Drama|Fantasy +146040,Three Men in a Boat (1979),Comedy +146042,Closed Circuit (1978),(no genres listed) +146044,The Forty-First (1927),(no genres listed) +146046,Quartier Lointain (2010),Drama +146048,"Naval Cadets, Charge! (1987)",Adventure +146050,The Elusive Revengers (1966),Action|Adventure|Children +146052,A Nymphoid Barbarian in Dinosaur Hell (1990),Fantasy|Horror|Sci-Fi +146056,Children... (2011),Crime|Drama|Thriller +146058,Classmates (2015),(no genres listed) +146060,Lokmanya: Ek Yug Purush (2015),Drama +146062,Sandook (2015),(no genres listed) +146064,Baji (2015),Action +146066,Lai Bhaari (2014),(no genres listed) +146068,Rege (2014),Crime|Drama|Thriller +146070,Poshter Boyz (2014),(no genres listed) +146072,Duniyadari (2014),(no genres listed) +146074,Premachi Goshta (2013),Drama|Romance +146076,Time Please (2013),Drama|Romance +146078,Zapatlela 2 (2013),Comedy|Horror +146080,Prem Mhanje Prem Mhanje Prem Asta (2013),(no genres listed) +146082,Yedyanchi Jatra,Children|Comedy|Drama +146084,Shikshanachya Aaicha Gho (2010),Comedy +146086,Kshanbhar Vishranti (2010),(no genres listed) +146088,Agadbam (2010),Comedy +146090,Zenda (2009),(no genres listed) +146092,Be Dune Saade Char (2009),(no genres listed) +146094,Gaiir (2009),(no genres listed) +146096,The Wild Bull (2008),Comedy +146098,Zabardast (2007),(no genres listed) +146100,Jatra: Hyalagaad Re Tyalagaad (2006),(no genres listed) +146102,Hee Porgi Kunachi (2006),(no genres listed) +146104,Dombivali Fast (2006),(no genres listed) +146106,Dhadakebaaz,(no genres listed) +146108,Ashi Hi Banwa Banwi (1988),(no genres listed) +146110,Padosan (1968),Drama|Romance +146112,Ittefaq,(no genres listed) +146114,Mera Naam Joker (1972),Drama|Romance +146116,Haathi Mere Saathi (1971),(no genres listed) +146118,Benaam (1974),(no genres listed) +146120,Black Magic (1977),Horror +146122,Baton Baton Mein (1979),Comedy|Drama|Romance +146124,Beloved Enemy (1979),Action|Horror|Mystery|Romance +146126,Khubsoorat (1980),Comedy|Romance +146128,Red Rose (1980),Drama|Horror|Thriller +146130,Saboot (1980),(no genres listed) +146132,Naram Garam (1981),Comedy +146134,Jaane Bhi Do Yaaro (1983),Comedy +146136,Masoom (1983),Children|Drama +146138,Hero (1983),Romance +146140,Rang Birangi (1983),Comedy|Drama|Romance +146142,The Old Temple (1984),Horror +146144,Khamosh (1985),Mystery|Thriller +146146,Arjun (1985),Action|Drama|Romance +146148,Chameli Ki Shaadi (1986),Comedy|Drama|Romance +146150,Anubhav (1986),(no genres listed) +146152,Karma (1986),Action|Romance +146154,Tahkhana (1986),Action|Drama|Horror +146156,Mr India (1987),Action|Adventure|Sci-Fi +146158,Tezaab (1989),Drama +146160,Maalamaal (1988),(no genres listed) +146162,Veerana (1988),Action|Drama|Horror +146164,Maine Pyar Kiya (1989),Drama|Romance +146166,Bandh Darwaza (1990),(no genres listed) +146168,Shaitani Ilaaka (1990),(no genres listed) +146170,Saajan (1991),Drama|Romance +146172,100 Days (1991),Horror|Romance|Thriller +146174,Phool Aur Kaante (1991),(no genres listed) +146176,Heart (1992),(no genres listed) +146178,Jo Jeeta Wohi Sikandar (1992),Drama +146180,Suryavanshi (1992),(no genres listed) +146182,Chamatkar (1992),Comedy|Romance +146184,Aankhen (1993),Comedy +146186,Hum Hain Rahi Pyar Ke (1993),(no genres listed) +146188,King Uncle (1993),(no genres listed) +146190,Khal Nayak (1993),Action +146192,Waqt Hamara Hai (1993),(no genres listed) +146194,The Lady in Question (1940),Action|Thriller +146196,Meet the Patels (2014),Documentary +146198,Noi e la Giulia (2015),Comedy +146200,Natale in crociera (2007),(no genres listed) +146202,"Inside of the White Slave Traffic, The (1913)",Drama +146204,A Brief Season (1969),(no genres listed) +146206,Three Men in a Boat (1975),Comedy|Drama +146208,The Ghost of Flight 401 (1978),Drama|Mystery|Thriller +146210,Blue Mountain State: The Rise of Thadland (2015),Comedy +146212,Bare (2015),Drama +146214,Septic Man (2013),Horror +146216,Suhaag (1994),(no genres listed) +146218,Krantiveer (1994),(no genres listed) +146220,Gopi Kishan (1994),(no genres listed) +146222,Baazi (1995),(no genres listed) +146224,Barsaat (1995),Drama|Romance +146226,Takkar (1995),(no genres listed) +146228,Sapoot (1996),(no genres listed) +146230,Khamoshi: The Musical (1996),Drama|Romance +146232,Loafer (1996),Action|Comedy|Drama|Romance +146234,Raja Hindustani (1996),Drama|Romance +146236,Jeet (1996),(no genres listed) +146238,Agni Sakshi (1996),Drama +146240,Ghatak: Lethal (1996),(no genres listed) +146242,Chachi 420 (1997),Comedy +146244,Dil To Pagal Hai (1997),Comedy|Drama|Romance +146246,Bhai (1997),(no genres listed) +146248,Judwaa (1997),(no genres listed) +146250,Gupt: The Hidden Truth (1997),(no genres listed) +146252,Daud (1997),Action +146254,Aflatoon (1997),Action|Crime|Drama +146256,Bade Miyan Chote Miyan (1998),(no genres listed) +146258,China Gate (1998),(no genres listed) +146260,Pyaar Kiya To Darna Kya (1998),Comedy|Romance +146262,Soldier (1999),Action|Sci-Fi +146264,Sharpe's Company (1994),Action|Adventure|War +146266,O futebol (2015),Documentary|Drama +146268,The Last House on Cemetery Lane (2015),Horror +146270,Krampus: The Reckoning (2015),(no genres listed) +146272,The Ice Dragon (2012),(no genres listed) +146275,11 Minutes (2015),(no genres listed) +146277,When the Iron Bird Flies (2012),(no genres listed) +146279,Do I Sound Gay? (2015),Documentary +146291,Rocktober Blood (1984),Horror +146301,Apenas o Fim (2008),Comedy|Romance +146303,"Jinxy Jenkins, Lucky Lou (2014)",(no genres listed) +146305,Princes and Princesses (2000),Animation|Children|Comedy|Drama|Fantasy|Romance|Sci-Fi +146307,The Hallow (2015),Horror +146309,The Boy and the Beast (2015),Action|Adventure|Animation +146311,Toilet (2010),Drama +146313,This Changes Everything (2015),Documentary +146317,Strella (2009),Drama +146323,Sharpe's Enemy (1994),Action|Adventure|War +146325,Traceless (2010),Crime|Drama|Thriller +146327,Can't Change the Meeting Place (1979),Action|Crime +146329,The Master and Margarita (2005),Drama|Mystery|Romance +146331,På palmblad och rosor (1976),Drama +146333,Eu Não Faço a Menor Ideia do que eu Tô Fazendo Com a Minha Vida (2013),(no genres listed) +146335,Sem Pena (2014),(no genres listed) +146337,Seasick (1996),Drama|Thriller +146342,Stray Dog (2014),Documentary|War +146344,Elämältä kaiken sain,Comedy|Drama +146346,Dream Driven (2014),Documentary +146348,Cheap Smokes (2000),Comedy|Romance +146350,Containment (2015),(no genres listed) +146352,Lotus Eaters (2013),Drama +146354,Southwest (2012),(no genres listed) +146356,Henrietta (1983),Comedy +146358,Taal (1999),Drama|Romance +146360,Hum Saath Saath Hain (1999),Children|Romance +146362,Jaanam Samjha Karo (1999),(no genres listed) +146364,Dil Kya Kare,(no genres listed) +146366,Kaun (1999),(no genres listed) +146368,Pyaar Koi Khel Nahin (1999),(no genres listed) +146370,Hogi Pyar Ki Jeet,(no genres listed) +146372,Biwi No. 1 (1999),(no genres listed) +146374,Hello Brother (1999),Comedy|Romance +146376,Kartoos (1999),(no genres listed) +146378,Mast (1999),Drama|Fantasy|Romance +146380,Kachche Dhaage (1999),(no genres listed) +146382,Deewane (2000),(no genres listed) +146384,Dhadkan (2000),Drama|Romance +146386,Khiladi 420 (2000),(no genres listed) +146388,Kurukshetra (2000),(no genres listed) +146390,Mela (2000),(no genres listed) +146392,Refugee (2000),Drama|Romance +146394,Kya Kehna (2000),(no genres listed) +146396,Fiza (2000),Drama|Romance +146398,Bicchoo (2000),(no genres listed) +146400,Har Dil Jo Pyar Karega... (2000),(no genres listed) +146402,Pukar (2000),Action|Drama|Thriller +146404,Beti No. 1 (2000),(no genres listed) +146406,Khauff (2000),(no genres listed) +146408,Jis Desh Mein Ganga Rehta Hai (2000),(no genres listed) +146410,Hum To Mohabbat Karega (2000),(no genres listed) +146412,Badal (2000),Action +146414,Sharpe's Honour (1994),Action|Adventure +146419,Aim High In Creation (2013),Documentary +146421,Mr. Dynamite: The Rise of James Brown (2014),Documentary +146423,The Falling (2015),Drama|Thriller +146427,Hundhotellet (2000),Animation|Comedy|Mystery +146429,Monk by Blood,(no genres listed) +146431,Romanovin kivet (1993),(no genres listed) +146433,Big Love (2012),Drama|Romance|Thriller +146435,The Hellstrom Chronicle (1971),Documentary|Drama +146437,San Francisco 2.0 (2015),Documentary +146439,Walnut Bread (1977),(no genres listed) +146441,Cinema: A Public Affair (2015),Documentary +146443,Plan B (2009),Comedy|Drama|Romance +146455,Hallway (2015),Drama|Fantasy +146463,I Am Syd Stone,(no genres listed) +146475,Alone With People,Comedy|Drama +146477,An Afternoon (2014),Drama|Romance +146481,Half Shot at Sunrise (1930),Comedy +146491,Hercules Against the Moon Men (1964),Action|Adventure|Fantasy +146499,Break Free (2014),(no genres listed) +146501,Land of Storms (2014),Drama +146511,You're Killing Me (2015),Comedy|Horror|Romance +146520,Tru Love (2013),Drama|Romance +146523,Santa Claws (1996),Horror +146540,Boy (2014),Drama +146554,Hole (2014),(no genres listed) +146562,The Victors (1963),Drama|War +146582,Isla bonita (2015),(no genres listed) +146586,Positive I.D. (1986),Crime|Drama|Thriller +146588,"Douro, Faina Fluvial (1931)",Documentary +146590,Falling For You (1995),Thriller +146592,Tobruk (2008),(no genres listed) +146595,Last Images of the Shipwreck (1989),Drama +146600,Gardener of Eden (2007),Comedy|Drama +146604,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance +146606,The Subjects (2015),Sci-Fi|Thriller +146608,Geppo il folle (1978),(no genres listed) +146630,H2S (1969),(no genres listed) +146632,Aayitha Ezhuthu (2004),Action|Drama|Romance +146634,Maktub (2011),Children|Comedy +146636,Committed (2014),Comedy|Drama|Romance +146638,The forbidden education (2012),Comedy|Drama +146640,Drops of Joy (2014),Documentary +146642,Wildlike (2015),Adventure|Drama|Thriller +146644,"Pizza, Beer, and Cigarettes (1998)",(no genres listed) +146648,Fighter Pilot: Operation Red Flag (2004),Documentary +146650,The C-Word (2015),Drama +146654,Nous trois ou rien (2015),Comedy|Drama +146656,Creed (2015),Drama +146660,William & Kate (2011),Drama|Romance +146662,Dragons: Gift of the Night Fury (2011),Adventure|Animation|Comedy +146668,The Gendarme in New York (1965),Comedy +146670,The Gendarme Takes Off (1970),Comedy +146672,The Gendarme of St. Tropez (1964),Comedy +146674,The Gendarme and the Creatures from Outer Space (1978),Comedy|Sci-Fi +146676,The Scouting Book for Boys (2009),Drama|Thriller +146678,The Girls in the Band (2013),Documentary +146680,Deadbeat at Dawn (1988),Action|Crime|Thriller +146682,Twinsters (2015),Documentary +146684,Cosmic Scrat-tastrophe (2015),Animation|Children|Comedy +146688,Solace (2015),Fantasy|Mystery|Thriller +146690,Enter Laughing (1967),(no genres listed) +146692,For Singles Only (1968),(no genres listed) +146696,Breathing (2011),Drama +146698,"Bruce Lee, My Brother (2010)",Drama +146700,The Little Ghost (2013),Children|Fantasy +146702,The Ugly Duckling (1939),Animation +146704,True Confessions of a Go-Go Girl (2008),Drama +146706,Lejdis (2008),(no genres listed) +146708,Money Is Not Everything (2001),(no genres listed) +146710,Zróbmy sobie wnuka (2003),(no genres listed) +146712,The Mighty Angel (2014),Drama +146714,The Dead and the Living (2012),Drama +146716,Shameless (2012),Drama +146718,Baby Blues (2012),Thriller +146720,Hardkor Disko (2014),Drama +146724,The Challengers (1990),Children|Drama +146728,The Hot Flashes (2013),Comedy +146730,Lost in the Sun (2015),Action|Drama|Thriller +146732,Jigarthanda (2014),Action|Drama|Thriller +146734,Sharpe's Regiment (1996),(no genres listed) +146736,David and Goliath (2015),Drama +146768,Without Knowing Anything About Her (1969),Sci-Fi|Thriller +146776,La donna della domenica (1975),(no genres listed) +146820,L'arcano incantatore (1996),Horror +146830,La nave bianca (1942),(no genres listed) +146852,I cavalieri che fecero l'impresa (2001),(no genres listed) +146854,Dov'è la Libertà...? (1954),Comedy +146856,Giovanna d'Arco al rogo (1954),Drama +146858,Il figlio più piccolo (2010),(no genres listed) +146860,A Second Childhood (2010),(no genres listed) +146866,Louder Than Bombs (2015),Drama +146870,Entre Abelhas (2015),Comedy|Drama +146872,My Wife's Husband (1963),Comedy +146874,Pouic-Pouic (1963),Comedy +146876,Algorithms (2013),Documentary +146878,Le Grand Restaurant (1966),Comedy +146880,More of Me (2007),(no genres listed) +146900,Heist (2015),Action|Thriller +146902,Condemned (2015),Horror +146904,Entertainment (2015),Comedy|Drama +146906,"Rio, I Love You (2014)",Drama|Romance +146908,The Murder Pact (2015),Thriller +146912,Sharpe's Siege (1996),(no genres listed) +146914,The Price We Pay (2014),Documentary +146918,Fonzy (2013),Comedy +146920,Felices 140 (2015),Comedy|Drama +146922,Shelter (2015),Drama +146924,White Skin (2005),Drama|Horror|Mystery|Thriller +146926,400 Days (2015),Mystery|Sci-Fi|Thriller +146928,A Girl at My Door (2014),Drama +146930,Just Desserts (2004),Comedy|Romance +146932,Wer wenn nicht wir (2011),Drama +146934,The Boy Who Walked Backwards (1995),(no genres listed) +146936,Lost and Love (2015),Drama +146938,Absence (1992),(no genres listed) +146942,You Won't Have Alsace-Lorraine (1977),Comedy +146944,The Spat (1978),Comedy +146946,The Hardy Bucks Movie (2013),Comedy +146966,Facciamo paradiso (1995),(no genres listed) +146968,Dirty Linen (1999),(no genres listed) +146970,The Passionate Thief (1960),Comedy +146972,Forbidden (1954),(no genres listed) +146974,Totò e Carolina (1955),(no genres listed) +146976,Donatella (1956),(no genres listed) +146978,Padri e figli (1957),Comedy +146980,Le rose del deserto (2006),(no genres listed) +146982,The Under-Gifted (1980),Comedy +146984,Inspector Blunder (1980),Comedy +146986,Le Maître d'école (1981),Comedy +146988,"So Long, Stooge (1983)",Drama +146990,Banzai (1983),Comedy +146992,Velociraptor (2014),Comedy|Drama|Fantasy +146994,The Mysterious House of Dr. C. (1976),Drama +146998,Chung Kuo - Cina (1972),Documentary +147002,Eros (2004),Drama|Romance +147004,The Extreme Tragic Story of Celal Tan and His Family (2011),Children|Comedy|Crime +147006,Bana Masal Anlatma (2015),Comedy|Drama +147008,In Bar (2007),Drama +147010,Thou Gild'st the Even (2013),Drama|Fantasy|Romance +147012,1989 (2014),(no genres listed) +147014,Hello Lonesome (2010),Comedy|Drama|Romance +147016,The Surprise (2015),Comedy|Romance +147018,Double zéro (2004),Adventure|Comedy +147022,Love the Coopers (2015),Comedy +147024,Prem Ratan Dhan Payo (2015),Drama|Romance +147026,A Colbert Christmas: The Greatest Gift of All! (2008),Comedy +147028,Outrage (1950),Crime|Drama +147030,A Dandy in Aspic (1968),Drama|Thriller +147033,(T)ERROR (2015),Documentary|Thriller +147035,Baile Perfumado (1997),Drama +147037,Straight-Jacket (2004),Comedy +147039,A Reunion (2014),(no genres listed) +147041,In the Grayscale (2015),Drama|Romance +147043,King Lear (1916),Drama +147045,Captains of the Sands (2011),Adventure|Drama +147047,Caramuru - A Invenção do Brasil (2001),Comedy|Romance +147049,No Night Is Too Long (2002),Crime|Drama|Thriller +147051,Manichitrathazhu (1993),Children|Drama|Fantasy|Horror|Mystery|Thriller +147053,Devasuram (1993),Action|Drama +147055,Chashme Buddoor (1981),Comedy|Romance +147057,Sharpe's Mission (1996),Action|Adventure|War +147060,The Conquerors (2013),Comedy +147062,Rock the Casbah (2013),Comedy|Drama +147102,Journey to the Safest Place on Earth (2013),Documentary +147104,All American High: Revisited (2014),Documentary +147106,"Doin' It in the Park: Pick-Up Basketball, NYC (2012)",Documentary +147108,SlingShot (2014),Documentary +147110,Famous Nathan (2015),(no genres listed) +147112,Bigfoot's Reflection (2007),Documentary +147114,BMF: The Rise and Fall of a Hip-Hop Drug Empire (2012),(no genres listed) +147116,The Happy House (2013),(no genres listed) +147118,Ralphie May: Imperfectly Yours (2013),(no genres listed) +147120,Reilly: Ace of Spies (1983),(no genres listed) +147122,The Secret Life of Marilyn Monroe (2015),Drama +147124,The Roosevelts: An Intimate History (2014),(no genres listed) +147126,Silenced (2014),Documentary +147128,En équilibre (2015),Drama +147130,The French Revolution (1989),(no genres listed) +147132,Après la guerre (1989),Comedy|Drama|War +147134,Le bal des casse-pieds (1992),Comedy +147136,Une Époque Formidable... (1991),Comedy +147138,Robbery at 3 O'clock (1962),Comedy +147140,To gala (2012),Drama +147142,Those Happy Days (2006),Children|Comedy +147144,Hachi-ko (1987),(no genres listed) +147176,Atolladero (1997),(no genres listed) +147178,The Story of Sin (1975),Drama +147182,Metamorphosis: The Alien Factor (1990),Horror|Sci-Fi +147184,Felix and Meira (2015),Children|Drama|Romance +147186,How the Lion Cub and the Turtle Sang a Song (1974),(no genres listed) +147188,38 Parrots,Animation|Children +147190,Treasure Island (1982),Adventure|Children +147192,The Seventh Companion (1968),Drama +147194,Wedding in Malinovka (1967),Adventure|Comedy|Romance +147196,The Girls (1961),Comedy|Romance +147198,The Return of the Tall Blond Man with One Black Shoe (1974),Comedy +147200,Come Tomorrow (1963),Comedy|Romance +147202,Beauties of the Night (1952),Comedy|Fantasy|Romance +147204,Winter Evening in Gagry (1985),Comedy|Drama +147206,72 Meters (2004),Action|Drama|Thriller +147208,The Secret of Queen Anna or Musketeers 30 Years Later (1993),Adventure +147210,Musketeers 20 Years Later (1992),Adventure +147212,Alisa v strane chudes (1981),Animation +147214,Marta the Pious Woman (1980),Comedy +147216,Pirates of the 20th Century (1980),Action|Adventure +147218,Arlette (1997),(no genres listed) +147220,The Age of Love (1954),Comedy|Romance +147222,Takhir and Zukhra (1946),(no genres listed) +147224,Lookin' Italian (1994),Crime|Drama|Romance +147226,713-й просит посадку (1961),(no genres listed) +147228,"Vivat, Naval Cadets! (1991)",Adventure +147230,Truffaldino from Bergamo (1977),Comedy|Romance +147232,Hussar Ballad (1962),Comedy +147234,Naval Cadets III (1992),Adventure +147236,Look for a Woman (1983),Comedy|Crime +147238,The New Adventures of the Elusive Avengers (1968),Action|Adventure|Children +147240,Koroleva Benzokolonki (1963),Comedy +147242,"Crown of Russian Empire, or the Elusives Again (1971)",Action|Adventure|Children +147244,Magicians (1982),Comedy|Fantasy|Romance +147246,Adventures of Mowgli (1973),Animation|Children +147248,The Isle of Lost Ships (1987),Adventure|Drama|Romance|Sci-Fi +147250,The Adventures of Sherlock Holmes and Doctor Watson,(no genres listed) +147252,The Untold History of the United States (2013),Documentary +147254,"Petrovka Street, Number 38 (1980)",Crime|Mystery +147256,"Ogaryova Street, Number 6 (1980)",Crime|Mystery +147258,Start Liquidation (1983),Action|Crime|Drama +147260,Ku! Kin-dza-dza (2013),Animation|Comedy|Sci-Fi +147262,Faster than Rabbits (2014),Comedy +147264,Vive la France (2013),Comedy +147266,The Brides Are Coming (1978),Drama +147268,Hornblower: The Even Chance (1998),Action|Adventure|Drama|War +147270,Ne Pokiday (1989),Children|Comedy|Romance +147272,Serafino (1968),Comedy +147274,Baryshnya i khuligan (1918),(no genres listed) +147276,Turf (2013),Comedy +147278,Fine Things (1990),Drama|Romance +147280,The Sunshine Boys (1996),Comedy +147282,What Men Still Talk About (2011),Comedy +147284,The Return of Bruno (1987),(no genres listed) +147286,The Adventures of Sherlock Holmes and Doctor Watson: The Treasures of Agra,(no genres listed) +147288,"Tsirk Sgorel, i Klouny Razbezhalis (1998)",Drama +147290,Seventeen Moments in Spring (1973),Adventure|Drama|War +147292,Retribution (1967),Drama|War +147294,With Clean Hands (1972),Action|Crime|Thriller +147296,Dream (1941),Drama +147298,Uno bianca (2001),Action|Crime|Thriller +147300,Adventures Of Sherlock Holmes And Dr. Watson: The Twentieth Century Approaches (1986),(no genres listed) +147302,Le Grand pardon (1982),Comedy|Crime|Drama +147304,Iblard Jikan (2007),Animation|Fantasy +147306,Come Look at Me (2000),Comedy|Drama|Romance +147308,Vanished Empire (2008),Drama|Romance +147310,Under the Gun (1995),Thriller +147312,CounterForce (1998),Action|Thriller +147314,Pour 100 briques t'as plus rien ! (1982),Comedy +147316,The Undertaker's Wedding (1997),Comedy +147318,Queen Made In Heaven (1997),(no genres listed) +147320,100 grams for Bravery (1976),Comedy +147322,You Are My Only Love (1993),Drama|Romance +147324,Vertical (1966),Action|Adventure +147326,The Adventures of Sherlock Holmes and Doctor Watson: King of Blackmailers (1980),(no genres listed) +147328,The Adventures of Sherlock Holmes and Dr. Watson: Bloody Signature (1979),(no genres listed) +147330,Sherlock Holmes and Dr. Watson: Acquaintance (1979),(no genres listed) +147332,Hotel Room (1993),Comedy|Drama +147334,Helen the Baby Fox (2006),(no genres listed) +147336,Tomorrow Was the War (1987),Children|Drama|War +147338,Night of the Living Dead: Darkest Dawn (2015),(no genres listed) +147340,Gutterballs (2008),Horror +147342,Camp Dread (2014),Horror|Mystery|Thriller +147344,Hallowed Ground (2007),Horror +147346,Final Exam (1981),Horror +147348,Anacondas: Trail of Blood (2009),Action|Horror|Sci-Fi|Thriller +147350,Don't Go to the Reunion (2013),Horror +147352,Hammerhead (2005),Action|Horror|Sci-Fi +147354,Father's Day (2011),Action|Comedy|Horror +147356,Trophy Heads (2014),Comedy|Horror +147358,Fat Chance (2014),Comedy|Horror +147360,Don't Open Till Christmas (1984),Horror|Mystery +147362,Curtains (1983),Crime|Horror|Thriller +147364,Area 407 (2012),Horror|Sci-Fi|Thriller +147366,Reality Terror Night (2013),Horror +147368,Doll Graveyard (2005),Horror +147370,Tut (2015),(no genres listed) +147372,Doctor Who: Last Christmas (2014),Adventure|Drama|Fantasy|Sci-Fi +147374,"Doctor Who: The Doctor, the Widow and the Wardrobe (2011)",(no genres listed) +147376,Doctor Who: A Christmas Carol (2010),(no genres listed) +147378,Doctor Who: Planet of the Dead (2009),Adventure|Children|Drama|Sci-Fi +147380,Doctor Who: The Next Doctor (2008),Adventure|Children|Drama|Sci-Fi +147382,Doctor Who: Voyage Of The Damned (2007),(no genres listed) +147384,Doctor Who: The Runaway Bride (2007),Sci-Fi +147386,Transylvania Twist (1990),Comedy +147388,The Halfway House (2004),(no genres listed) +147390,Chainsaw Sally (2004),Horror +147392,Last of the Living (2009),Comedy|Horror +147394,Ninjas vs. Monsters (2012),Action|Comedy|Horror +147396,Secrets in the Walls (2010),Horror|Thriller +147398,Made in France (2015),Thriller +147400,Meu Pé de Laranja Lima (2013),Drama +147402,The King and Queen of Moonlight Bay (2003),Children|Drama +147404,The Phone (2015),(no genres listed) +147408,Frau Ella (2013),Comedy +147410,A Perfect Day (2015),Comedy|Drama +147414,A-1 Headline (2004),Action|Drama|Romance|Thriller +147418,Sergeants 3 (1962),Comedy|Western +147426,İtirazım Var (2014),Action|Crime|Drama +147428,Lemonade (2015),Comedy|Drama +147430,Antidote (2014),Action|Crime|Drama +147432,Pardon (2005),Comedy|Drama +147434,Organize isler (2005),Comedy +147436,Police (2007),(no genres listed) +147441,"3½ Minutes, 10 Bullets (2015)",Documentary +147452,Coldwater (2013),Drama|Thriller +147454,Aleksandr's Price (2013),Drama|Mystery|Thriller +147456,The Legend of Longwood (2014),Adventure|Children|Drama +147458,The Blancheville Monster (1963),(no genres listed) +147460,The Witch Returns to Life (1952),Comedy|Fantasy|Horror +147462,Dead Creatures (2001),Horror +147464,Ninja Death (1987),Action +147466,Emperor of Shaolin Kung Fu (1980),(no genres listed) +147471,Bravetown (2015),Drama +147495,Surfacing (1981),Drama +147597,Transformers Prime Beast Hunters: Predacons Rising (2013),Action|Animation|Sci-Fi +147603,The Red Inn (2007),Comedy +147605,The Salvation Hunters (1925),(no genres listed) +147607,The Here After (2015),Drama +147609,11:59 (2005),Mystery|Thriller +147611,This Isn't Funny (2015),Comedy|Drama|Romance +147613,Bibliothèque Pascal (2010),Drama +147617,Loro chi? (2015),Comedy +147619,La mossa del pinguino (2014),Comedy +147624,The Blue Sky Maiden (1957),(no genres listed) +147631,Afraid to Die (1960),Action|Drama +147640,A Wife Confesses (1961),Drama|Mystery +147662,Return of the One-Armed Swordsman (1969),Action|Adventure +147692,Federal Bank Heist (2011),Crime|Drama|Thriller +147698,Flying Guillotine II (1978),Action +147726,Criminal Activities (2015),Crime|Drama|Thriller +147728,Wild Times (1980),Action|Adventure|Drama|Western +147730,Wonder Woman (1974),Action|Adventure|Fantasy +147732,Wonder Woman (2011),(no genres listed) +147734,Pápa Piquillo (1998),Comedy +147736,Hong Kong Trilogy: Preschooled Preoccupied Preposterous (2015),Drama +147738,Warsaw 44 (2014),Drama|Romance +147740,The Red Spider (2015),(no genres listed) +147742,A Son's First Step. A Mother's Second Chance. (2014),Drama +147744,A Murder in the Park (2015),Documentary +147746,Sharpe's Revenge (1997),Action|Adventure|War +147748,The Taint (2010),Comedy|Horror +147750,Rams (2015),(no genres listed) +147752,Those Who Feel the Fire Burning (2014),Documentary +147766,Becoming Me (2014),Documentary +147768,Deep Blues (1992),Documentary +147770,His Picture in the Papers (1916),Comedy +147775,Dancing on the Edge (2013),Drama +147779,Richard Pryor: Icon (2014),Documentary +147781,Plush (2013),Thriller +147783,At Risk (2010),Crime|Drama|Mystery +147789,Rust Never Sleeps (1979),(no genres listed) +147819,The Sea Shall Not Have Them (1954),War +147825,For Some Inexplicable Reason (2014),Drama +147829,Love is All: 100 Years of Love & Courtship (2014),Documentary +147831,Anthony Jeselnik: Thoughts and Prayers (2015),Comedy +147833,Anthony Jeselnik: Caligula (2013),Comedy +147835,The Leisure Class (2015),Comedy +147839,"Bi, Don't Be Afraid (2010)",Drama +147841,Taikon (2015),(no genres listed) +147843,Starring Adam West (2013),Documentary +147845,Manson Family Vacation (2015),Comedy|Drama|Thriller +147847,Point Break (2015),Action|Crime|Thriller +147855,Poppies Are Also Flowers (1966),Crime|Drama|Mystery +147859,The Amazons (1973),Action|Adventure +147865,Bloodline (1979),Crime|Thriller +147889,The Jigsaw Man (1984),Thriller +147895,Recep İvedik (2008),(no genres listed) +147897,Recep İvedik 2 (2009),Action|Sci-Fi|Thriller +147899,Recep İvedik 3 (2010),(no genres listed) +147901,Recep İvedik 4 (2014),Comedy +147903,Tangerine (2008),Drama +147905,The Kidnapping of Michel Houellebecq (2014),Comedy|Drama +147907,Midnight Manhunt (1945),Mystery|Thriller +147909,Antigang (2015),Action +147911,The Smile Man (2013),Comedy|Drama +147913,Glassland (2015),Drama +147915,The Ventriloquist (2012),(no genres listed) +147917,Envelope (2012),(no genres listed) +147921,Submerged (2015),Drama|Thriller +147923,Family Guy Presents: Seth and Alex's almost live comedy show (2009),Animation|Comedy +147927,Heart of a Dog (2015),Documentary|Drama +147932,Bedfellows (2008),Horror +147934,Adieu Philippine (1962),Drama +147936,The Lord's Lantern in Budapest (1999),Comedy|Drama +147940,Tamasha (2015),(no genres listed) +147942,Room 8 (2013),(no genres listed) +147986,Dressed to Kill (1941),Drama|Mystery|Thriller +147992,Paternity Leave (2015),Comedy|Romance +147994,A dagger through the heart (2015),(no genres listed) +147998,Away All Boats (1956),War +148030,Naked Among Wolves (2015),Drama|War +148032,The Execution of Private Slovik (1974),Drama|War +148034,The Bunny Game (2010),Horror +148036,Winter on Fire: Ukraine's Fight for Freedom (2015),Documentary +148038,The List (2013),Thriller +148040,Man Walking Around a Corner (1887),(no genres listed) +148042,Accordion Player (1888),Documentary +148044,"Monkeyshines, No. 1 (1890)",Comedy +148046,"Monkeyshines, No. 2 (1890)",(no genres listed) +148048,Sallie Gardner at a Gallop (1878),(no genres listed) +148050,Traffic Crossing Leeds Bridge (1888),Documentary +148052,London's Trafalgar Square (1890),(no genres listed) +148054,Passage de Venus (1874),Documentary +148056,eCupid (2011),Romance +148058,Talvar (2015),Drama|Mystery|Thriller +148064,Newark Athlete (1891),Documentary +148066,Pestonjee (1988),Comedy|Drama +148070,Mary Kom (2014),Drama +148074,Likaiset kädet (1989),(no genres listed) +148076,A Summer Story (1988),Drama|Romance +148078,Wolf (2008),Action|Adventure|Drama +148080,Hard to Be a God (1989),Adventure|Drama|Sci-Fi +148082,They Have Changed Their Face (1971),Horror|Mystery +148084,Emmanuelle in Soho (1981),Drama +148089,"Continental, a Film Without Guns (2007)",Comedy|Drama +148091,Kanto Wanderer (1963),(no genres listed) +148093,The Republic ,Action|Crime|Thriller +148095,Premam (2015),Comedy|Romance +148104,3x3 (2009),Comedy +148106,Falling Overnight (2011),Drama|Romance +148108,My Little Pony: Equestria Girls - Rainbow Rocks (2014),Animation|Children +148110,My Little Pony: Equestria Girls - Friendship Games (2015),Animation +148112,The House Across the Street (2015),Horror|Thriller +148114,The Ties That Bind (2015),(no genres listed) +148116,The Man with Icy Eyes (1971),Drama|Horror|Mystery +148146,Crime Boss (1972),(no genres listed) +148154,The Antichrist (1974),Horror +148160,Souls of Zen (2012),(no genres listed) +148162,Dark Woods II (2015),Horror +148166,Hitchcock/Truffaut (2015),Documentary +148168,Pek Yakında (2014),Action|Comedy|Drama +148170,The Swissmakers (1979),Comedy|Drama|Romance +148172,The 5th Wave (2016),Adventure|Sci-Fi|Thriller +148176,Go With Peace Jamil (2008),(no genres listed) +148178,Prancer Returns (2001),Children|Comedy +148180,Some dollars for Django (1966),(no genres listed) +148186,Street Law (1974),Action|Thriller +148188,"Cry, Onion! (1975)",Western +148192,The Big Racket (1976),Action|Thriller +148194,The Heroin Busters (1977),Action|Thriller +148196,Kill Them All and Come Back Alone (1968),Western +148204,Day Of The Cobra (1980),Action|Crime|Drama +148206,Escape from the Bronx (1983),Action|Sci-Fi +148222,Jonathan of the Bears (1994),(no genres listed) +148224,Johnny Hamlet (1968),Western +148228,Any Gun Can Play (1967),Action|Adventure|Western +148232,Payment in Blood (1967),Western +148238,A Very Murray Christmas (2015),Comedy +148240,Elf: Buddy's Musical Christmas (2014),Animation|Children|Fantasy +148242,Wakko's Wish (1999),Animation|Comedy +148244,600 Miles (2015),Drama|Thriller +148248,L'Affaire SK1 (2015),Crime|Drama|Thriller +148266,Pleased to Meet Me (2013),Drama +148272,Executive Koala (2005),Comedy|Crime|Drama|Thriller +148274,Orania (2013),(no genres listed) +148276,The Power of Fear (2006),Horror +148278,"10,000 Days (2014)",Sci-Fi +148280,Truman (2015),Comedy|Drama +148282,Call Me Claus (2001),Children +148284,Downtown 81 (2001),Drama +148286,The Wiz Live (2015),(no genres listed) +148288,Who Am I This Time? (1982),Drama|Romance +148290,Spud 3: Learning to Fly (2014),Comedy +148294,House Calls (1978),Comedy|Romance +148316,"Hook, Line and Sinker (1930)",Comedy|Romance +148333,"Sexo fácil, películas tristes (2015)",Comedy +148344,The Caller (2009),Drama|Thriller +148357,Le dernier souffle (1999),Crime|Drama +148359,Louder Than Words (2013),Drama +148361,Apocalipsis sobre el río amarillo (1960),Drama +148365,Eddie Izzard: Unrepeatable (1994),Comedy +148367,Sanjay's Super Team (2015),Animation +148369,The Wave (2015),Action|Drama|Thriller +148372,Schneider vs. Bax (2015),Comedy|Thriller +148376,A Small September Affair (2014),Drama|Mystery|Romance +148378,Cold Eyes of Fear (1971),Thriller +148380,Wir tun es für Geld (2014),Comedy|Romance +148382,If the Shoe Fits (1990),Comedy|Romance +148384,If I Had Four Dromedaries (1966),Documentary +148386,The Wind of the Night (1999),Drama +148388,Some Kind Of Hate (2015),Horror +148390,L'Allée du Roi (1995),(no genres listed) +148392,Drowning Ghost (2004),Horror|Thriller +148394,Svart Lucia (1992),Drama|Mystery +148396,Lady of Csejte (2015),Drama|Horror|Thriller +148398,Besökarna (1988),Horror +148400,Highway of Tears (2014),Documentary +148402,Drone (2014),Documentary|War +148406,Home from Home – Chronicle of a Vision (2013),Drama +148408,Mars Needs Women (1967),Horror|Sci-Fi +148410,The Hollow (2015),Horror +148412,Quantum Apocalypse (2010),Sci-Fi +148414,End of the World (2013),Action|Adventure|Comedy|Sci-Fi +148418,Earthfall (2015),Action|Sci-Fi +148422,Mega Shark vs. Mecha Shark (2014),Action|Sci-Fi|Thriller +148424,Chi-Raq (2015),Comedy|Drama +148426,Fateful Findings (2013),Drama|Fantasy|Thriller +148428,Heartstopper (2006),Horror +148430,Naked as We Came (2013),(no genres listed) +148432,Jim Henson’s Turkey Hollow (2015),Comedy +148438,Madeline: Lost in Paris (1999),Animation +148440,Babysitting 2 (2015),Comedy +148442,My Life Directed by Nicolas Winding Refn (2014),Documentary +148444,Emil and the Detectives (1931),Comedy|Crime +148446,The Knockout (1914),Comedy +148448,The Tramp (1915),Comedy +148450,Rageh Inside Iran (2007),Documentary +148452,The Irrefutable Truth About Demons (2000),Horror +148454,Tokyo Raiders (2000),Action|Comedy|Thriller +148456,The Queen (1968),Documentary +148458,Weekend of a Champion (1972),(no genres listed) +148460,Weekend of a Champion (2013),Documentary +148462,Men Boxing (1891),Action|Documentary +148464,No Tomorrow (2010),(no genres listed) +148466,The Garden of Sinners - Chapter 1: Thanatos. (Overlooking View) (2007),Animation +148468,The Garden of Sinners - Chapter 2: …and nothing heart. (Murder Speculation Part A) (2007),Animation +148470,"The Garden of Sinners - Chapter 3: ever cry, never life. (Remaining Sense of Pain) (2008)",Animation +148472,The Garden of Sinners - Chapter 6: Fairy Tale. (Oblivion Recording) (2008),Animation +148474,The Garden of Sinners - Chapter 7: ……not nothing heart. (Murder Speculation Part B) (2009),Animation +148476,Les dissociés (2015),Comedy +148478,Monkey King: Hero Is Back (2015),Animation|Comedy|Fantasy +148480,Double Down (2005),Action|Drama +148482,Truth (2015),Drama +148484,The Letters (2015),Drama +148486,Another Gay Sequel: Gays Gone Wild! (2008),Comedy +148488,Christmas Icetastrophe (2014),Sci-Fi +148512,Seattle Superstorm (2012),Action|Sci-Fi +148548,"Rome, the other face of violence (1976)",Action|Crime +148550,A Special Cop in Action (1976),Action|Crime|Thriller +148560,Violent City (1975),(no genres listed) +148578,7 monaci d'oro (1966),(no genres listed) +148584,Decameron proibitissimo (Boccaccio mio statte zitto) (1972),Comedy +148586,Desirable Teacher (1981),Comedy +148592,Just Jim (2015),Comedy +148614,So Evil My Love (1948),Drama +148616,Sealed Verdict (1948),Drama +148618,Dino Time (2012),Adventure|Animation|Children|Comedy +148620,Our Times (2015),Drama|Romance +148622,To the Fore (2015),Action|Drama|Romance +148624,Top Cat The Movie (2011),Animation +148626,The Big Short (2015),Drama +148628,The Throwaways (2015),Thriller +148630,A Chinese Ghost Story III (1991),Action|Comedy|Fantasy|Horror +148632,Applesauce (2015),Comedy +148634,Christmas Eve (2015),Comedy +148636,John Lennon - Plastic Ono Band (2008),Documentary +148638,Sherlock Holmes (1916),Drama|Mystery +148640,The American Mall (2008),Comedy|Drama|Romance +148646,"Sex, Lies and Death (2011)",Crime|Drama|Romance|Thriller +148648,Pitza e datteri (2015),Comedy +148652,The Ridiculous 6 (2015),Comedy|Western +148654,Fighting Fish (2012),Action +148657,Loham (2015),Drama|Thriller +148659,Ennum Eppozhum (2015),Children|Drama +148661,Spirit (2012),Action|Thriller +148665,William Shatner Presents: Chaos on the Bridge (2015),Documentary|Sci-Fi +148667,John Mulaney: The Comeback Kid (2015),Comedy +148669,L for Leisure (2014),Comedy +148671,Saw (2003),Crime|Horror +148673,Northpole (2014),Children|Fantasy +148675,North Pole: Open For Christmas (2015),Children|Fantasy +148679,Amy Schumer: Mostly Sex Stuff (2012),Comedy +148681,Loup (2009),Adventure +148683,American Hero (2015),Action|Comedy|Sci-Fi +148685,Night Owls (2015),Comedy|Drama +148687,Led Zeppelin: Celebration Day (2012),Documentary +148691,The Chiefs (2004),(no genres listed) +148693,Architecture 101 (2012),Comedy|Romance +148695,Under the Rainbow (2013),Comedy +148697,April 9th (2015),Drama|War +148699,I Believe in Miracles (2015),Documentary +148701,The Girl in the Book (2015),Drama +148703,The Wave (1891),Documentary +148705,A Hand Shake (1892),(no genres listed) +148707,Angels of Revolution (2014),(no genres listed) +148709,Mojave (2015),Thriller +148711,Steak (R)évolution (2014),Adventure|Children|Documentary +148713,Visitors of the Night (1995),Sci-Fi +148715,Motorcycle Gang (1994),(no genres listed) +148717,Red Wine (2013),Crime|Drama +148719,China Heavyweight (2012),Documentary +148721,Yalom's Cure (2014),Documentary +148725,Psalm 21 (2009),Horror|Sci-Fi|Thriller +148729,9-Man (2014),Documentary +148735,Many Wars Ago (1971),Drama|War +148739,The Palermo Connection (1990),Thriller +148749,Mortacci (1989),(no genres listed) +148751,Il minestrone (1981),Comedy +148753,Bawdy Tales (1973),Drama +148755,Ostia (1970),(no genres listed) +148757,Beneath Loch Ness (2002),Action|Horror|Mystery|Sci-Fi|Thriller +148761,Atomic Train (1999),Action|Thriller +148763,IMAX - The Dream Is Alive (1985),Documentary +148765,Evil Alien Conquerors (2003),Comedy|Sci-Fi +148767,A Kid in Aladdin's Palace (1998),Adventure|Children +148769,The Education Of Shelby Knox (2005),Documentary +148771,The Girl on the Stone (2007),Drama +148773,Spy School (2008),Action|Adventure|Children|Comedy +148775,Wizards of Waverly Place: The Movie (2009),Adventure|Children|Comedy|Drama|Fantasy|Sci-Fi +148777,China Dolls (1992),(no genres listed) +148779,Second Skin (2009),Documentary +148781,Under the Electric Sky (2014),Documentary +148783,The Pit (2009),Documentary +148789,The Hunchedback Horse (1947),(no genres listed) +148793,Friends from France (2013),Drama +148797,Ginger & Cinnamon (2003),Comedy|Drama|Romance +148803,100 Ghost Street: The Return of Richard Speck (2012),Horror +148805,The Unwanted (2014),Drama|Horror|Mystery +148811,The Legend of Bhagat Singh (2002),Drama +148814,Stranded (2015),Drama +148816,Gone Too Far! (2014),Comedy +148818,Sawney: Flesh of Man (2012),Horror +148820,Inbred (2012),Horror|Thriller +148824,Chemerical (2009),Documentary +148848,The Pink Floyd and Syd Barrett Story (2003),Documentary +148850,Rudolph's Shiny New Year (1976),Animation|Fantasy +148853,Beltracchi - The Art of the Forgery (2014),Crime|Documentary +148855,Ghost in the Shell: The New Movie (2015),Animation|Sci-Fi +148857,"Christmas, Again (2015)",(no genres listed) +148859,Archipelago (2010),Drama +148861,Sarancha (2014),(no genres listed) +148863,Little Thirteen (2012),Drama +148867,Extraction (2015),Thriller +148877,Fencing (1892),(no genres listed) +148879,Nunca en horas de clase (1978),Comedy +148881,World of Tomorrow (2015),Animation|Comedy +148884,Night #1 (2011),Drama +148904,Anuvahood (2011),Comedy +148906,Shadey (1985),(no genres listed) +148909,Tarzan in Manhattan (1989),Action|Adventure +148911,Young Love (2001),Drama|Romance +148913,Die Akte Golgatha (2010),Adventure +148915,Love at the Thanksgiving Day Parade (2012),(no genres listed) +148917,Gangsta Granny (2013),(no genres listed) +148919,Innocent Killers (2015),Comedy|Crime +148921,The Legend of Barney Thomson (2015),Comedy|Drama|Thriller +148923,Mississippi Damned (2009),(no genres listed) +148926,Ice Spiders (2007),Horror|Sci-Fi|Thriller +148932,The Lion Guard: Return of the Roar (2015),Animation +148934,The Samurai That Night (2012),Drama +148936,After School (2008),(no genres listed) +148938,"Justice, My Foot! (1992)",Comedy|Drama +148940,Fight Back to School (1991),Action|Comedy +148942,His Name was King (1971),Western +148946,The Kindergarten Teacher (2014),Drama +148948,A Fighter's Blues (2000),Drama|Romance +148950,72 Tenants of Prosperity (2010),Comedy +148952,Vampire Circus (1972),Horror +148954,Hitting the Apex (2015),Documentary +148960,Winning Dad (2015),(no genres listed) +148962,Wir sind die Neuen (2014),Comedy +148964,Memories of the Sword (2015),Action|Adventure|Drama +148966,The Nesting (2015),Thriller +148968,Encounters (2014),Horror|Mystery|Sci-Fi +148970,Anguish (2015),Horror +148972,Doctor Mordrid (1992),Action|Fantasy|Sci-Fi|Thriller +148974,Winning: The Racing Life of Paul Newman (2015),Documentary +148976,Marvel Super Hero Adventures: Frost Fight! (2015),Animation|Fantasy +148978,Blue Exorcist: The Movie (2012),Animation|Fantasy|Horror|Mystery +148980,Finders Keepers (2015),Documentary +148982,Devil Dog: The Hound of Hell (1978),Horror +148984,The Propaganda Game (2015),Documentary +148986,Darkness on the Edge of Town (2015),Thriller +148988,Two Step (2015),Crime|Drama|Thriller +149004,Bolshoi Babylon (2015),Documentary +149011,He Never Died (2015),Comedy|Drama|Horror +149072,The Last Fall (2012),Drama +149080,A Fare to Remember,(no genres listed) +149082,OzLand (2015),Drama|Fantasy|Sci-Fi +149084,Another World (2015),Action|Horror|Sci-Fi +149088,Raggedy Ann & Andy: A Musical Adventure (1977),Animation +149090,The Code,(no genres listed) +149092,The Christmas Carol (1949),Drama|Fantasy +149094,The Testaments (2000),Drama +149096,Samurai Cop 2: Deadly Vengeance (2015),Action|Comedy|Crime +149100,Eskil & Trinidad (2013),Children|Drama +149102,Fraternity Row (1977),Drama +149104,Sunshine Follows Rain (1946),Drama|Romance +149106,Elves (1989),(no genres listed) +149108,Murder in the Dark (2013),Horror|Mystery|Thriller +149114,The Cat Vanishes (2011),Drama|Thriller +149116,The Thin Yellow Line (2015),(no genres listed) +149118,Les Maitres Du Suspense (2014),Comedy +149120,Hands off Mississippi (2007),Adventure|Children|Comedy +149122,The Runway (2010),Comedy|Drama +149124,A Town Without Christmas (2001),(no genres listed) +149128,The Gnome (2005),(no genres listed) +149130,The Zohar Secret (2015),Comedy|Drama|Sci-Fi +149144,Parasyte: Part 1 (2014),Horror|Sci-Fi +149146,Parasyte: Part 2 (2015),Horror|Sci-Fi +149150,Halfweg (2014),Comedy|Drama +149154,Uuno Turhapuro – This Is My Life (2004),Comedy +149156,Uuno Turhapuro - pisnismies (1998),(no genres listed) +149158,Double-Uuno (1988),(no genres listed) +149160,Uuno Turhapuro - kaksoisagentti (1987),Comedy +149162,Uuno Turhapuro muuttaa maalle (1986),Comedy +149164,Uuno Turhapuron muisti palailee pätkittäin (1983),Comedy +149166,Uuno Turhapuro menettää muistinsa (1982),Comedy +149168,Uuno Turhapuron Aviokriisi (1981),Comedy +149170,Tup-akka-lakko (1980),(no genres listed) +149172,The Test-tube Adult and Simo's Angels (1979),(no genres listed) +149174,"Rautakauppias Uuno Turhapuro, presidentin vävy (1978)",(no genres listed) +149176,Häpy Endkö? Eli kuinka Uuno Turhapuro sai niin kauniin ja rikkaan vaimon (1977),(no genres listed) +149178,Lottovoittaja UKK Turhapuro (1976),(no genres listed) +149180,Professori Uuno D.G. Turhapuro (1975),Comedy +149182,Talvivaaran miehet (2015),(no genres listed) +149184,Stealing Christmas (2003),Children|Comedy +149234,Pensavo fosse amore invece era un calesse (1991),Comedy +149248,O.S.S. (1946),Drama|War +149268,The Pied Piper (1942),(no genres listed) +149318,David Bowie - Best Of Bowie (2002),(no genres listed) +149320,Assume the Position with Mr. Wuhl (2007),Comedy +149322,Successful Alcoholics (2010),Comedy +149324,The Pee-wee Herman Show (1981),Comedy +149326,The Broken Tower (2011),Drama +149328,Dreamkeeper (2003),Children|Drama +149330,A Cosmic Christmas (1977),(no genres listed) +149336,A Tale of Two Thieves (2014),Documentary +149338,Tyke Elephant Outlaw (2015),Documentary +149340,A Syrian Love Story (2015),Documentary +149342,The Pardon (2013),Crime|Drama +149348,Unnatural (2015),Action|Horror|Thriller +149352,Daddy's Home (2015),Comedy +149354,Sisters (2015),Children|Comedy +149358,Homemade Hillbilly Jam (2005),(no genres listed) +149360,Pleasure Factory (2007),Action|Adventure|Drama|Romance +149364,The Christmas Secret (2014),(no genres listed) +149366,Just in Time for Christmas (2015),Children|Drama|Fantasy|Romance +149368,A Christmas Detour (2015),Romance +149370,Angel of Christmas (2015),Children +149372,Once Upon A Holiday (2015),Children|Romance +149376,Night Of The Living Deb (2015),Comedy|Horror +149380,'Tis the Season for Love (2015),Romance +149382,Ice Sculpture Christmas (2015),Romance +149384,Charming Christmas (2015),(no genres listed) +149386,I'm Not Ready for Christmas (2015),Children +149390,Christmas Incorporated (2015),Children|Drama +149392,12 Gifts of Christmas (2015),Children +149394,Crown for Christmas (2015),(no genres listed) +149398,On the Twelfth Day of Christmas (2015),Children +149400,A Christmas Melody (2015),Comedy|Romance +149402,Santa and the Ice Cream Bunny (1972),Children|Fantasy +149404,Morrer por Amor (2015),Drama +149406,Kung Fu Panda 3 (2016),Action|Adventure|Animation +149408,Mobile Suit Gundam F91 (1991),Animation|Sci-Fi +149410,Mobile Suit Gundam: Char's Counterattack (1988),Action|Animation|Sci-Fi +149412,Legend of the Galactic Heroes: My Conquest Is the Sea of Stars (1988),Animation|Sci-Fi +149414,Naoko (2008),Drama|Romance +149416,Everybody Has a Little Secret (2004),Comedy|Romance +149418,The Black Panthers: Vanguard of the Revolution (2015),Documentary +149424,Sweet Lies (Korean) (2008),Comedy|Romance +149426,The Hooligan Factory (2014),Comedy +149428,"Josee, the Tiger and the Fish (2003)",(no genres listed) +149430,Memoirs of a Teenage Amnesiac (2010),Drama|Romance +149432,About Love (2005),Romance +149434,The Slanted Screen (2006),Documentary +149436,Tokyo Girl (2008),(no genres listed) +149438,Honey and Clover (2006),Drama|Romance +149440,Finding Mr. Destiny (2010),Children|Comedy|Drama|Romance +149442,Villain (2010),Drama +149444,The Harmonium in My Memory (1999),Drama|Romance +149446,Petty Romance (2010),Comedy|Drama +149448,Young Black Jack (2011),(no genres listed) +149450,Very Young Girls (2007),Documentary +149454,Ghost (2010),Drama|Fantasy|Mystery +149456,Rainbow Eyes (2007),Romance|Thriller +149458,4th Period Mystery (2009),Horror +149460,Tomorrow's Joe (2011),Action +149462,LoveHotels (2006),(no genres listed) +149464,The Seaside Motel (2010),Comedy|Romance +149466,Yuriko's Aroma (2010),(no genres listed) +149468,Blowfish (2011),Drama|Romance +149470,"Love, Pain and Vice Versa (2008)",Romance|Thriller +149472,"Turn Left, Turn Right (2003)",Romance +149474,He's Mine Not Yours (2011),Comedy|Romance +149476,Rules of Dating (2005),(no genres listed) +149478,Just Walking (2008),Crime|Drama|Thriller +149480,Waiting for Good News (2009),Drama +149482,Diary of June (2005),Crime|Drama|Mystery|Thriller +149484,All About My Wife (2012),Comedy|Romance +149486,A Perfect Christmas List (2014),Children|Comedy|Drama +149488,Christmas Town (2008),Action|Children|Comedy|Drama|Fantasy|Thriller +149490,Waiting in the Dark (2006),Drama|Romance +149492,Love in Disguise (2010),Comedy|Romance +149494,Black Kiss (2004),Crime|Drama|Horror|Mystery|Romance +149496,Code Name: Jackal (2012),Action|Comedy +149498,Perfect Number (2012),Drama +149500,My P.S. Partner (2012),Comedy|Drama|Romance +149502,101次求婚,(no genres listed) +149504,Akko's Secret (2012),Comedy|Fantasy|Romance +149506,Dorfman (2011),Comedy|Romance +149508,Spellbound (2011),Comedy|Romance +149510,Twinkle (1992),Comedy|Drama|Romance +149512,One Night Surprise (2013),Comedy|Romance +149514,A Christmas Kiss II (2014),Romance +149516,Quatre étoiles (2005),Comedy +149518,The Substitute Husband (1936),Comedy +149520,The Sweet Escape (2015),Comedy +149522,R.O.T.O.R. (1988),Action|Sci-Fi +149524,Alligator 2 - The Mutation (1991),Horror +149526,Flying (1986),Drama|Romance +149530,Dick Tracy Meets Gruesome (1947),Action|Crime|Mystery|Thriller +149532,Marco Polo: One Hundred Eyes (2015),(no genres listed) +149534,A Brave Heart: The Lizzie Velasquez Story (2015),Documentary +149536,Pizza (2005),Comedy|Romance +149546,"Nestor, the Long-Eared Christmas Donkey (1977)",Animation|Children +149548,Act Like You Love Me (2013),(no genres listed) +149550,Gone Fishing (2012),Children|Drama +149554,All My Sons (1948),Crime|Drama +149556,Ask a Policeman (1939),Comedy +149558,The Bachelor Father (1931),Comedy|Drama|Romance +149560,The Bohemian Girl (1936),Comedy +149562,'Pimpernel' Smith (1941),Action +149564,Tom Brown's School Days (1940),Children|Drama +149566,Unicorn City (2012),Comedy|Romance +149568,The End of a Great Era (2015),Comedy|Drama +149570,Under the Hawthorn Tree (2010),Drama|Romance +149572,A.R.O.G. (2008),Comedy|Fantasy +149574,Rudolph and Frosty's Christmas in July (1979),Animation|Children|Fantasy +149576,Mistletoe Over Manhattan (2011),(no genres listed) +149578,A Cookie Cutter Christmas (2014),Comedy +149580,Window Wonderland (2013),Comedy|Romance +149582,The Unauthorized Full House Story (2015),Drama +149584,La novia (2015),Drama|Romance +149586,When Santa Fell to Earth (2011),Children|Fantasy +149588,The PHD Movie 2 (2015),Comedy +149592,My Lucky Star (2013),Comedy|Romance +149594,A Matter of Faith (2014),(no genres listed) +149596,Sorry I Love You (2013),Action|Drama|Romance +149598,Video Girl (2011),Drama +149600,Love for Sale (2008),Comedy|Drama|Romance +149602,Te presento a Laura (2010),Comedy|Drama|Romance +149604,The Coalition (2013),Drama|Romance +149606,Bajirao Mastani (2015),Romance|War +149610,Hot Summer in Barefoot County (1974),Action|Comedy +149614,Worlds Apart (2015),Drama +149616,Manuscripts Don't Burn (2013),Crime|Drama +149618,The Colossus of Rhodes (1961),Action|Adventure|Drama|Fantasy +149620,Feng Shui (2004),Drama|Horror|Thriller +149622,Si accettano miracoli (2015),Comedy +149624,Soap Opera (2014),Comedy +149626,Cold Deck (2015),Crime|Drama +149632,Teresa Venerdì (1941),Comedy +149634,A Garibaldian in the Convent (1942),(no genres listed) +149636,La porta del cielo (1945),Drama +149638,The Roof (1956),Drama +149640,The Condemned of Altona (1962),Drama +149642,Steve McQueen: The Man & Le Mans (2015),Documentary +149644,Beyond the Blackboard (2011),Children|Drama +149646,Tired Moonlight (2015),(no genres listed) +149648,Magnificent Doll (1946),Drama +149650,Childhood's End (2015),Drama|Sci-Fi|Thriller +149652,"Arabian Nights: Volume 1, The Restless One (2015)",Drama +149656,Three Sisters (2012),Documentary +149658,Boruto: Naruto the Movie (2015),Action|Animation|Fantasy +149660,Cold Blood (1975),Thriller +149662,The Mend (2014),Comedy +149664,Headless (2015),Horror +149666,The Beatniks (1960),Crime|Drama +149668,Little Lips (1978),Drama +149670,Namastey London (2007),Drama|Romance +149674,Conspiracy of Silence (1991),(no genres listed) +149676,3-Headed Shark Attack (2015),Action|Sci-Fi +149683,H3 - Halloween Horror Hostel (2008),Comedy +149686,Mr. Six (2015),Action +149688,The Stone Tape (1972),Horror|Sci-Fi +149692,Whistle and I'll Come to You (1968),(no genres listed) +149694,Jean Charles (2009),Documentary|Drama +149696,So Hard to Forget (2010),Drama +149698,"Ó Paí, Ó (2007)",(no genres listed) +149700,Estamos Juntos (2011),(no genres listed) +149702,Natimorto (2011),Drama +149704,The Famous and the Dead (2009),Drama +149706,Manhunt (1976),Action|Crime|Drama +149709,Barking at the Stars (1998),Action|Comedy|Romance|Sci-Fi|Thriller +149711,Ahora o nunca (2015),Comedy +149715,S: Saigo no Keikan - Dakkan: Recovery of Our Future,(no genres listed) +149717,Naughty or Nice (2012),(no genres listed) +149719,A Perfect Ending (2012),Drama +149723,The Last: Naruto the Movie (2014),Action|Animation|Romance +149725,Thou Shalt Laugh 3 (2008),Comedy +149727,Thou Shalt Laugh (2006),Comedy +149729,Thou Shalt Laugh 2 - The Deuce (2007),Comedy +149735,The Daughter of Dawn (1920),Western +149739,Nintendo Quest (2015),Documentary +149753,Shadows on the Wall (2014),Horror|Sci-Fi +149755,Bethune: The Making of a Hero (1993),Drama|Romance +149759,Saving Mr. Wu (2015),Crime|Thriller +149761,100 Days With Mr. Arrogant (2004),Comedy|Romance +149764,The Art of Seduction (2005),Comedy|Drama|Romance +149766,Aurore (2005),Action|Drama +149768,Bakit Hindi Ka Crush Ng Crush Mo? (2013),Comedy|Drama|Romance +149770,We Were Here: Part 1 (2012),(no genres listed) +149772,We Were Here: Part 2 (2012),(no genres listed) +149774,Bride for Rent (2014),Comedy|Romance +149776,Buddha Mountain (2010),Drama +149778,Cannonball Wedlock (2011),Comedy +149780,Love Now (2007),Romance +149782,Altergeist (2014),Horror|Sci-Fi|Thriller +149784,Closed Note (2007),Romance +149786,Crazy (2000),Comedy|Drama +149788,Crazy Waiting (2008),Comedy|Romance +149790,Cyrano Agency (2010),Comedy|Romance +149792,Drop (2009),Action|Comedy +149794,I Just Wanna Hug You (2014),Drama|Romance +149796,Eungyo (2012),Drama|Romance +149798,Five Senses of Eros (2009),Drama|Romance +149800,Cheer Cheer Cheer! (2008),Comedy +149802,Girlfriend Boyfriend (2012),Comedy|Drama|Romance +149804,Goth (2008),Drama|Horror|Mystery|Thriller +149806,Gravity's Clowns (2009),Drama +149808,Hot Young Bloods (2014),Comedy|Drama|Romance +149810,Parade (2010),Drama +149814,F.C. De Kampioenen: Kampioen zijn blijft plezant (2013),Comedy +149816,Max (1994),(no genres listed) +149818,Seven Songs from the Tundra (2000),(no genres listed) +149826,Secret Society of Souptown (2015),Adventure|Children +149832,Twelve Mile Road (2003),Drama +149856,Blockade (1938),Drama|War +149858,Blockade (2005),Documentary +149864,Central Airport (1933),Drama +149888,Cowboys vs. Dinosaurs (2015),Action|Sci-Fi +149938,Public Enemies (1996),Crime +149946,Super Shark (2011),Action|Comedy|Sci-Fi +149978,S&M Judge (2009),Drama +149980,Girl (2002),Drama|Romance +149982,The Invader (2011),Drama +149984,Dennis van Rita (2006),(no genres listed) +149986,Mixed Kebab (2012),Drama +149988,Dossier K. (2009),Action|Crime|Drama|Thriller +149990,Unspoken (2008),Drama +149992,Blind (2007),Drama|Romance +149994,Suspect (2005),Drama +149996,Left Bank (2008),Drama|Horror|Thriller +149998,Wait until spring Bandini (1989),Drama +150000,Zot van A (2010),Comedy|Romance +150002,Sister Smile (2009),Drama +150004,Smoorverliefd (2010),(no genres listed) +150006,"Allez, Eddy! (2012)",(no genres listed) +150008,Suite 16 (1994),Romance|Thriller +150010,Bo (2010),Drama +150012,Oxygen (2010),Drama +150014,De Hel Van Tanger (2006),Drama +150016,Brasserie Romance (2012),Comedy|Drama +150018,Verlengd Weekend (2005),Comedy|Drama +150020,Vrijdag,(no genres listed) +150022,Groenten uit Balen (2011),Drama +150024,Frits and Freddy (2010),Comedy +150026,The Ball (1999),Children +150028,De Indringer (2005),Horror|Mystery|Thriller +150030,Ad Fundum (1993),Drama +150032,Stormforce (2006),Action|Drama|Thriller +150034,My Queen Karo (2009),Drama +150036,Code 37 (2011),Drama +150038,Science Fiction (2002),Adventure|Children|Sci-Fi|Thriller +150040,The Kiss (2004),Drama +150042,Little Black Spiders (2012),Drama +150044,Buitenspel (2005),Drama +150046,A perfect match (2007),Comedy|Drama|Romance +150048,Dirty Mind (2009),Comedy|Drama +150050,Kid (2012),Drama +150052,Turquaze (2010),Children|Drama|Romance +150054,The Man Who Had His Hair Cut Short (1966),Drama +150056,Frits and Franky (2013),Comedy +150058,Doctor Vlimmen (1977),Drama +150060,Eline Vere (1991),Drama +150062,Gaston's War (1997),Drama|Romance|War +150064,Vallen (2001),(no genres listed) +150066,Blinker (1999),Children|Mystery +150068,Swooni (2011),(no genres listed) +150070,Lost Persons Area (2009),Drama +150072,Mariken (2001),Children|Drama|Fantasy +150074,De Leeuw van Vlaanderen (1985),Drama +150076,Cut Loose (2008),(no genres listed) +150078,Everything Must Go (1996),(no genres listed) +150080,Bingo (2013),Comedy +150082,K3 en het IJsprinsesje (2006),Children +150084,De Vlaschaard (1983),Drama +150092,See You in Montevideo (2014),Adventure|Comedy +150140,Noah (2013),Drama +150146,La Rabbia Di Pasolini (2008),(no genres listed) +150148,12 Dicembre (1972),Documentary +150156,The Pig Farm (2011),Documentary +150190,Proof of the Devil (2015),Horror +150194,Quo vado? (2016),Comedy +150196,The October Man (1947),Drama|Mystery|Thriller +150202,Morning Departure (1950),Drama +150228,"Inner Worlds, Outer Worlds (2012)",Documentary +150230,Cool Cat Saves the Kids (2015),Adventure|Children +150232,Bad Hair Day (2015),Adventure|Comedy +150234,Frenemies (2012),Children|Drama +150236,How to Build a Better Boy (2014),Children|Sci-Fi +150238,Water and Fire (2013),Drama|Romance +150240,Baby and Me (2008),(no genres listed) +150242,Araf/Somewhere in Between (2012),Drama +150244,Kept Woman (2015),Drama +150246,Halam Geldi (2014),Drama +150250,Cute and Dangerous (2015),Comedy|Romance +150254,The Devil's Candy (2015),Horror +150256,The Son of an Afghan Farmer (2012),Drama|Romance +150260,More Than Blue (2009),Drama|Romance +150262,Megamind: The Button Of Doom (2011),Action|Animation|Children|Comedy +150264,Die Mondverschwörung (2011),Comedy|Documentary +150268,Dilwale (2015),Action|Children|Comedy|Crime|Drama|Romance +150270,Woodlawn (2015),Drama +150272,Captive (2015),Crime|Drama|Thriller +150278,Hell & Back (2015),Animation|Comedy +150282,"White Out, Black In (2014)",Documentary|Drama +150284,Everyday (2012),Drama +150294,The Forest (2016),Horror|Thriller +150296,Guzaarish (2010),Drama|Romance +150300,Evim Sensin (2012),Fantasy|Romance +150308,I Passed for White (1960),Drama +150316,Ich und Kaminski (2015),Drama +150320,Raavan (2010),Drama|Sci-Fi +150322,Paa (2009),Children|Drama +150324,The Cheetah Girls: One World (2008),Children|Comedy|Drama +150334,Rowdy Rathore (2012),Action +150336,Nowhere Safe (2014),Drama +150338,Aşk Kırmızı (2013),Drama|Romance +150340,Khoobsurat (2014),Comedy|Romance +150342,Wazir (2015),(no genres listed) +150344,Bang Bang (2014),Action|Adventure|Romance|Thriller +150346,Approaching the Elephant (2015),(no genres listed) +150348,Warlords of Atlantis (1978),Adventure|Fantasy|Sci-Fi +150352,Love Forecast (2015),Comedy|Romance +150354,Girl vs. Monster (2012),Children|Comedy|Sci-Fi +150358,Coicent (2011),(no genres listed) +150360,Mr. Kaplan (2014),Comedy|Drama +150362,La Rizière (2012),(no genres listed) +150364,The Lesson (2014),Drama +150367,Love Me (2014),Documentary +150369,The Boy Who Saw the Wind (2000),(no genres listed) +150371,Of Love and Other Demons (2009),Drama +150373,The Dog of Flanders (1997),Animation|Drama|Romance +150375,"Fuse, Memoirs of the Hunter Girl (2012)",Action|Animation|Drama +150377,Great Expectations (1999),Drama|Romance +150379,Legend of the Millennium Dragon (2011),Adventure|Animation|Fantasy|Sci-Fi +150381,Lines of Wellington (2012),Drama|War +150383,The Mystery of Sintra (2007),Mystery +150385,Miyori's Forest (2007),Animation +150387,Princess Arete (2001),Adventure|Animation|Fantasy +150389,Yona Yona Penguin (2009),(no genres listed) +150391,Pixadores (2014),Documentary +150393,Chronicle of a Blood Merchant (2015),Drama|Romance +150395,Assassination Classroom (2015),Action|Adventure|Sci-Fi +150397,The Partisans (1963),War +150399,Cha Cha Cha (1989),(no genres listed) +150401,Close Range (2015),Action|Crime +150407,The Great Manhunt (1950),Drama|Thriller +150413,Little Mother (1973),(no genres listed) +150417,Zeppelin (1971),Adventure|War +150433,Lady of Vengeance (1957),Drama +150443,The Colditz Story (1955),War +150523,Unrelated (2007),Drama +150534,Prescription: Murder (1968),(no genres listed) +150536,The Aviators (2009),Animation +150538,Diablo (2015),Action|Adventure|Thriller|Western +150540,Felt (2014),Horror|Romance|Thriller +150542,Lava Kusa-The Warrior Twins (2010),Animation +150544,The Entity (aka La Entidad) (2015),Horror +150546,Africa United (2010),Action|Comedy|Drama +150548,Sherlock: The Abominable Bride (2016),Action|Crime|Drama|Mystery|Thriller +150550,Kung Fu Zombie (1981),Action|Comedy|Horror +150552,Hannah Montana & Miley Cyrus: Best of Both Worlds Concert (2008),Documentary +150554,The Love Bug (1997),Adventure|Children|Comedy|Fantasy +150556,Morning Light (2008),Documentary +150558,AWOL-72 (2015),Thriller +150560,Vampirella (1996),Horror|Sci-Fi +150562,The Deathhead Virgin (1974),Horror +150564,I Like to Hurt People (1985),Comedy|Documentary +150566,Un fantastico via vai (2013),Comedy +150568,2 Autumns 3 Winters (2013),Comedy|Drama +150570,"Decent One, The (Der Anständige) (2014)",Documentary +150580,The Lady in the Car with Glasses and a Gun (1970),Drama +150582,Das Lied einer Nacht (1932),Comedy +150584,The Old Devil (1933),(no genres listed) +150586,L'équipage (1935),Drama +150588,The Woman I Love (1937),Drama +150590,Tovarich (1937),Comedy|Drama|Romance +150592,Why We Fight: Divide and Conquer (1943),Documentary +150594,The Deep Blue Sea (1955),Drama|Romance +150596,Doctor Who: The Husbands of River Song (2015),Comedy|Drama|Sci-Fi +150598,The Guvnors (2014),Crime|Thriller +150600,The Rise & Fall of a White Collar Hooligan (2012),Crime|Thriller +150602,Band of Robbers (2016),Adventure|Comedy|Crime|Thriller +150604,Moonwalkers (2015),Comedy +150606,The Girl and Death (2012),Drama|Romance +150608,Ellis (2015),Drama +150610,Der böse Onkel (2013),Comedy|Drama +150612,Rumors of Wars (2014),Thriller +150615,In girum imus nocte et consumimur igni (1978),(no genres listed) +150617,Can Dialectics Break Bricks? (1973),(no genres listed) +150619,The New Watchdogs (2012),Documentary +150621,Jean-Philippe (2006),Comedy +150629,Las aventuras de Oliver Twist (1987),(no genres listed) +150631,Protéger et servir (2010),Comedy +150633,Christ lives in Siberia (2015),Documentary +150635,The Battle Of The Villa Fiorita (1965),Drama +150647,Birch Interval (1976),Drama +150649,Kansas: Miracles Out Of Nowhere (2015),Documentary +150651,Derrick contre Superman (1992),Comedy +150655,Aimy in a Cage,Drama|Fantasy|Sci-Fi +150657,Trophy Kids,Documentary +150661,Cat and Mouse (1974),Action|Drama +150663,"American Tragedy, An (1931)",Drama|Romance +150667,Low & Clear (2012),Documentary +150669,أهواك (2015),(no genres listed) +150671,Light of My Eyes (2010),(no genres listed) +150674,Janis: Little Girl Blue (2015),Documentary +150688,Plastic Galaxy: The Story of Star Wars Toys (2014),Documentary +150694,Uncanny (2015),Drama|Sci-Fi|Thriller +150696,Tomorrow (2015),Documentary +150700,Kartoffelsalat - Nicht Fragen! (2015),Comedy|Horror +150722,Aliens on the Moon: The Truth Exposed (2014),Documentary +150724,Army Dog (2016),(no genres listed) +150726,The 7:39 (2014),Drama|Romance +150728,All for One (2011),Comedy +150730,Jackpot (2011),Action|Comedy|Crime +150732,The Reunion (2011),Comedy +150734,The Breakup Guru (2014),Comedy|Romance +150736,Love Lesson (2013),Drama|Romance +150742,Who? (1973),Drama|Sci-Fi +150748,Charlie Muffin (1979),(no genres listed) +150762,Jigsaw (1968),Mystery|Thriller +150766,One Track Heart: The Story of Krishna Das (2013),Documentary +150768,Wire Cutters (2014),Animation +150772,Madalena (1960),Comedy|Drama +150774,The Correspondence (2016),Drama|Romance +150776,Tag (2015),Horror|Thriller +150778,The Dark Side of the Moon (2015),Crime|Drama|Thriller +150780,100 Yen: The Japanese Arcade Experience (2012),Documentary +150786,Dark Country (2009),Horror|Thriller +150788,Songs From the North (2014),(no genres listed) +150792,The Mark of the Hawk (1957),(no genres listed) +150798,Why Change Your Wife? (1920),Comedy|Drama|Romance +150800,Miss Lulu Bett (1921),Comedy|Drama +150838,Fuck for Forest (2012),(no genres listed) +150844,A Journey into Bliss (2004),Comedy|Fantasy +150846,Asu Mare (2013),(no genres listed) +150850,I Survived a Zombie Holocaust (2014),Comedy|Horror +150852,Kotoko (2011),Drama|Horror +150854,The West (1996),(no genres listed) +150856,Making a Murderer (2015),Documentary +150858,Cougar Hunting (2011),Comedy|Romance +150864,80 Milionów (2011),Action +150866,Beats of Freedom (2009),Documentary +150868,Jasne Błękitne Okna,(no genres listed) +150870,Tekken: Blood Vengeance (2011),Action|Animation +150872,Columbo-Ransom for a Dead Man (1971),(no genres listed) +150874,Splinters (2009),Documentary|Horror|Thriller +150876,"Job, czyli ostatnia szara komórka (2006)",Comedy +150878,Wszystko będzie dobrze (2007),(no genres listed) +150880,Ajlawju (1999),(no genres listed) +150882,Happy New York (1997),Comedy +150884,Black Thursday (2011),Thriller +150886,Porno (1990),Comedy|Romance +150888,Mr. Kuka's Advice,(no genres listed) +150890,Destined for Blues (2005),Drama +150892,Last Order: Final Fantasy VII (2005),Action|Adventure|Animation +150894,Naruto the Movie: Ninja Clash in the Land of Snow (2004),Action|Adventure|Animation|Comedy +150896,Walesa: Man of Hope (2013),Drama +150898,General Nil (2009),(no genres listed) +150900,Top Gear: The Worst Car In the History of the World (2012),(no genres listed) +150902,Supermarket (2012),Thriller +150904,"Dzień dobry, kocham cię! (2014)",Comedy +150906,How Much Does the Trojan Horse Weigh? (2008),(no genres listed) +150908,Maicol Jecson (2014),Comedy +150910,Sisyphus (1974),Animation +150916,Vendetta for the Saint (1979),(no genres listed) +150922,Frozen Silence (2012),Drama|Mystery|War +150931,Bridge To Terabithia (1985),Children|Drama|Fantasy +150993,Anacleto: Agente secreto (2015),Action|Comedy +150995,Retribution (2015),Action|Mystery|Thriller +151027,Burroughs: The Movie (1983),Documentary +151030,A Poem is a Naked Person (1974),Documentary +151036,David Golder (1931),Drama +151038,Poil de Carotte (1925),Drama +151040,La tête d'un homme (1933),Crime|Mystery|Thriller +151046,Chair de poule (1963),Crime|Drama +151054,Marie-Octobre (1959),Drama +151058,Lovers of Paris (1957),Drama +151062,Deadlier Than the Male (1956),Drama|Thriller +151064,Marianne of My Youth (1955),Drama|Fantasy|Romance +151070,Holiday for Henrietta (1952),Comedy +151072,Under the Paris Sky (1951),Drama +151078,Panic (1946),Drama +151084,Flesh and Fantasy (1943),Drama|Fantasy|Romance +151089,The Phantom Wagon (1939),Drama|Fantasy +151091,La fin du jour (1939),Drama +151099,Maria Chapdelaine (1934),Drama +151105,Au bonheur des dames (1930),Drama|Romance +151107,The Red Head (1932),Drama +151111,Le mystère de la tour Eiffel (1927),Drama +151113,A Man Called Ove (2015),Comedy|Drama +151189,The Forest (2009),(no genres listed) +151191,A Gentle Spirit (1987),Animation +151193,The Image (1975),Drama +151197,Decoding Deepak (2012),Documentary +151199,"Un peu, beaucoup, aveuglément (2015)",Comedy +151230,Dream a Little Dream 2 (1995),Comedy|Sci-Fi +151277,Chico - Artista Brasileiro (2015),Documentary +151279,The Seventh Company Has Been Found (1975),Comedy +151281,The Seventh Company Outdoors (1977),Comedy +151311,Wiener-Dog (2016),Comedy +151313,Norm of the North (2016),Adventure|Animation|Children|Comedy +151315,Ride Along 2 (2016),Action|Comedy +151319,Notias (2016),Comedy|Drama +151321,Toss-Up (2004),Drama +151343,The Raspberry Reich (2004),Action|Comedy|Drama|Thriller +151349,15 (2003),Comedy|Crime|Drama +151353,Cleopatra Wong (1978),Action|Drama +151357,The Bible (2013),Drama +151359,Hollywood on Trial (1976),(no genres listed) +151365,Weasels Rip My Flesh (1979),Horror|Sci-Fi +151367,Twisted Seduction (2010),Comedy|Romance|Thriller +151371,Being Ginger (2013),Documentary +151384,Plastic Planet (2009),Documentary +151414,Wood Job! (2014),Comedy|Drama +151431,Melhores do Mundo - Hermanoteu na Terra de Godah (2009),Comedy +151433,Mill of the Stone Women (1960),Horror|Sci-Fi +151441,BaadAsssss Cinema (2002),Action|Documentary +151443,Sisters in Law (2005),(no genres listed) +151451,My Boyfriend an Angel (2011),Comedy|Fantasy|Romance +151453,Yardbird (2012),(no genres listed) +151459,Airlift (2016),Drama|Thriller +151483,Nebesnyy sud (2012),(no genres listed) +151485,The Lighthouse (1998),Drama +151487,Sammy and Me (2002),Comedy|Drama|Romance +151489,The Education of Fairies (2006),Drama +151491,Lovely Loneliness (2009),(no genres listed) +151493,The Dancer and the Thief (2009),Drama +151495,En fuera de juego (2012),(no genres listed) +151497,Violet (2014),(no genres listed) +151499,Chicken Ranch (1983),Documentary +151501,Exposed (2016),Drama +151503,Bloody Reunion (2006),Horror|Mystery|Thriller +151505,Carpet Racers (2009),Documentary +151507,Terminus (2015),Sci-Fi|Thriller +151509,Red Wing (2013),Drama +151513,Kick-Heart (2013),Animation|Comedy|Romance +151515,My King (2015),Drama|Romance +151521,The Homestretch (2014),Documentary +151543,Parviz (2012),(no genres listed) +151545,The Amateur (1999),(no genres listed) +151547,Daawat-e-Ishq (2014),Comedy|Drama|Romance +151557,Stonewall (2015),Drama +151561,Monk Comes Down The Mountain (2015),Action|Comedy +151563,Fatima (2015),Drama +151565,Blind Woman's Curse (1970),Action|Crime|Drama|Horror +151567,The War in Space (1977),Action|Adventure|Sci-Fi +151569,The Old Fairy Tale: When the Sun Was God (2003),Drama|Fantasy +151571,Bloodsuckers (1991),Horror|Thriller +151573,What a Mess! (1995),Comedy +151583,The Face Reader (2013),(no genres listed) +151587,The Staircase II: The Last Chance (2013),Documentary +151591,The Wannabe (2015),Crime|Drama|Mystery|Thriller +151593,Martyrs (2016),(no genres listed) +151599,Capital C (2015),Documentary +151601,I Give My First Love to You (2009),Comedy|Drama|Romance +151605,Lo and Behold: Reveries of the Connected World (2016),Documentary +151611,Addicted to Sexting (2015),Documentary +151613,Field of Lost Shoes (2014),Action|Drama|War +151615,Hello Stranger (2010),Drama +151619,Strangers (2007),Drama|Romance|Thriller +151621,Looking for Grace (2015),Drama +151623,Adhurs (2010),Action|Comedy|Drama +151625,Methadonia (2005),Documentary +151627,All Mistakes Buried (2015),Thriller +151629,World Without End (2012),Drama|Romance +151631,Jättiläinen (2016),Drama +151641,90 Minutes in Heaven (2015),Drama +151645,JeruZalem (2016),Horror +151647,Horse Money (2014),Drama +151649,Blood in the Face (1991),Documentary +151655,Hundra,Adventure|Fantasy +151657,iMurders (2008),Drama|Horror|Mystery|Thriller +151661,Autoerotic (2011),Drama|Romance +151663,"Semen, a Love Sample (2005)",Comedy|Romance +151667,Romance on the Run (1938),(no genres listed) +151669,Genetic Me (2014),(no genres listed) +151671,The Chosen (2015),Thriller +151673,Hustle & Heat (2003),Action|Comedy|Crime|Romance|Thriller +151675,Lazer Team (2016),Comedy|Sci-Fi +151677,Last Hippie Standing (2002),(no genres listed) +151679,The 30 Foot Bride of Candy Rock (1959),Comedy +151683,China Cry: A True Story (1990),Drama +151685,Alone Yet Not Alone (2013),(no genres listed) +151687,Risen (2016),Children|Drama +151689,Obsession: Radical Islam's War Against the West (2005),Documentary +151691,Hollywood High (1976),Comedy +151695,The Survivalist (2015),Drama|Sci-Fi|Thriller +151697,Grand Slam (1967),Thriller +151701,Bloodmoney (2010),(no genres listed) +151703,The Butterfly Circus (2009),Drama +151709,Zero (2015),Drama|Sci-Fi +151711,The 2000 Year Old Man (1975),(no genres listed) diff --git a/go-lang/read-big-file/ml-latest/ratings.csv b/go-lang/read-big-file/ml-latest/ratings.csv new file mode 100644 index 00000000..d64a3d96 --- /dev/null +++ b/go-lang/read-big-file/ml-latest/ratings.csv @@ -0,0 +1 @@ +sample diff --git a/go-lang/read-big-file/ml-latest/tags.csv b/go-lang/read-big-file/ml-latest/tags.csv new file mode 100644 index 00000000..d4f32ef7 --- /dev/null +++ b/go-lang/read-big-file/ml-latest/tags.csv @@ -0,0 +1,586995 @@ +userId,movieId,tag,timestamp +19,2324,bittersweet,1428651158 +19,2324,holocaust,1428651112 +19,2324,World War II,1428651118 +23,7075,hilarious,1378675786 +23,7075,Underrated,1378675786 +54,357,Garath,1354417040 +57,260,Science Fiction,1433167996 +120,109374,cinematography,1445114894 +157,7142,bad script,1362371627 +157,7142,no plot,1362371612 +157,52975,feel good,1362371683 +157,52975,great music,1362371698 +157,52975,musical,1362371718 +157,55267,large family,1362371415 +157,55267,realistic,1362371439 +157,55267,romantic,1362371491 +157,55267,Steve Carell,1362371472 +157,55267,the music,1362371394 +157,55872,builds up,1362371915 +157,55872,different but very good,1362371939 +157,55872,love of music,1362371851 +157,55872,power of music,1362371770 +157,55872,thought-provoking,1362371764 +157,55872,unique,1362371792 +157,55872,uplifting and compelling,1362371824 +159,96481,documentary,1421441786 +159,96481,lifestyle,1421441786 +159,96481,white trash,1421441786 +159,114935,mindfuck,1426364431 +159,114935,time travel,1426364435 +160,69714,weak story,1378237064 +160,71688,Imtiaz Ali,1378237091 +160,71688,kareena kapoor,1378237086 +176,108729,best ending ever,1434474951 +176,108729,confusing,1434474852 +176,108729,good acting,1434474875 +176,108729,Jake Gyllenhaal,1434474872 +176,108729,mindfuck,1434474896 +176,108729,nudity (topless),1434474874 +176,108729,pregnancy,1434474894 +176,108729,professor,1434474920 +176,108729,spiders,1434474908 +176,108729,tense,1434474870 +176,108729,worst ending ever,1434474895 +176,114277,musical,1447508154 +176,114795,Dram,1434396751 +176,114795,Fantasy,1434396757 +176,126420,Drama,1433576863 +176,134597,Prison,1433590012 +178,70,Diablo,1140214685 +178,208,Tetris,1140214718 +178,2124,burb,1140216358 +178,2384,steak,1140216367 +178,6281,yay! Jack B. :),1139404874 +178,39292,borring?,1139319211 +178,49286,Jack Black ^_^,1169680591 +178,77866,Deserves better reviews!,1274391625 +178,77866,lovely characters.,1274391625 +178,77866,Rewrite history,1274391625 +183,260,Science Fiction,1431843076 +183,260,space,1431843088 +202,260,classic,1430733300 +202,260,Science Fiction,1430733308 +202,260,space,1430733294 +206,1260,Fritz Lang,1287251651 +206,2010,classic,1287251696 +206,2010,Fritz Lang,1287251692 +206,2318,dark comedy,1287247554 +206,2318,dark humor,1287247575 +206,2318,dysfunctional family,1287247559 +206,4210,based on a book,1287255874 +206,4210,MURDER INVESTIGATIONS,1287255885 +206,4210,SERIAL KILLERS,1287255870 +206,5105,DEATH OF A CHILD,1287250600 +206,5105,Donald Sutherland,1287250616 +206,6985,Carl Theodor Dreyer,1287310292 +206,6985,mental illness,1287310301 +206,6985,silent film,1287310298 +211,1240,Sci-Fi,1425833378 +211,7502,World War II,1425833344 +261,1,animation,1313154708 +261,1,fun,1313154717 +261,34,funny,1313155039 +261,34,original,1313155039 +261,47,serial killer,1313154818 +261,110,scotland,1313154582 +261,150,drama,1313154657 +261,150,ed harris,1313154657 +261,290,disturbing,1313150985 +261,290,drama,1313150985 +261,293,gary oldman,1313150907 +261,293,jean reno,1313150907 +261,293,luc besson,1313150907 +261,356,drama,1313154522 +261,457,edge of the seat,1313154616 +261,457,suspense,1313154616 +261,457,thriller,1313154616 +261,475,politics,1313150800 +261,527,Oscar (Best Picture),1313150069 +261,527,war,1313150090 +261,589,action,1313154685 +261,593,horror,1313154543 +261,597,Comedy,1313154984 +261,597,julia roberts,1313154994 +261,648,action,1313154800 +261,648,predictable,1313154786 +261,648,tom cruise,1313154786 +261,736,action,1313154908 +261,736,predictable,1313154908 +261,778,danny boyle,1313153848 +261,778,ewan mcgregor,1313153848 +261,1090,oliver stone,1313151277 +261,1090,Vietnam War,1313151238 +261,1090,willem dafoe,1313151277 +261,1193,jack nicholson,1313150035 +261,1193,Oscar (Best Picture),1313150027 +261,1208,war drama,1313075225 +261,1222,Vietnam War,1313150750 +261,1222,war,1313150758 +261,1240,Action,1313155916 +261,1280,film noir,1313151025 +261,1299,true story,1313149958 +261,1299,Vietnam War,1313149953 +261,1304,Oscar (Best Cinematography),1313151091 +261,1680,fun,1313073452 +261,2028,war,1313073477 +261,2459,horror,1313073427 +261,2762,twist ending,1313154929 +261,2858,dark comedy,1313074878 +261,2858,thought-provoking,1313074872 +261,3481,based on a book,1313076370 +261,3481,quirky,1313076367 +261,3967,british,1313075985 +261,3967,drama,1313075993 +261,4326,drama,1313150601 +261,4326,gene hackman,1313150601 +261,4973,cult film,1313150657 +261,4995,drama,1313075969 +261,5377,comedy,1313076447 +261,6380,disturbing,1313152210 +261,7256,mountain climbing,1313150175 +261,7256,true story,1313150108 +261,8873,drama,1313075905 +261,43396,anthony hopkins,1313076152 +261,43396,drama,1313076152 +261,44204,drama,1313075788 +261,44204,south africa,1313075781 +261,45210,gripping emotive,1313076317 +261,47894,drama,1313076107 +261,48738,drama,1313075434 +261,49530,action,1313075864 +261,55247,based on a book,1313076022 +261,55247,drama,1313076040 +261,55247,sean penn,1313076040 +261,55820,drama,1313075751 +261,56367,comedy,1313075595 +261,63082,danny boyle,1313075655 +261,63082,drama,1313075633 +261,63082,Oscar (Best Picture),1313075619 +261,63876,drama,1313076078 +261,63876,sean penn,1313076078 +261,64614,Clint Eastwood,1313075566 +261,64614,drama,1313075580 +261,64620,politics,1313075678 +261,64839,excellent,1313075816 +261,65188,documentary,1313149675 +261,66385,excellent,1313075528 +261,67665,documentary,1313150466 +261,67665,feel good,1313150490 +261,67665,moving,1313150490 +261,69481,action,1313075693 +261,72011,drama,1313075946 +261,80906,business,1313149847 +261,80906,politics,1313149840 +261,81845,drama,1313149781 +261,81845,Oscar (Best Picture),1313149784 +261,81910,documentary,1313149702 +266,71550,high school,1255918213 +302,260,action,1439699445 +302,260,classic,1439699436 +302,106195,Indie,1439699547 +320,260,schematic adventure,1437940076 +320,260,stereotyped heroes,1437940086 +322,45186,Good,1148328055 +328,260,classic,1437542278 +328,260,sci-fi,1437542272 +336,589,dystopia,1374929630 +336,589,sci-fi,1374929620 +336,589,time travel,1374929626 +336,3578,actors,1374929602 +336,3578,actresses,1374929602 +337,1884,drugs,1440766973 +337,1884,hunter s. thompson,1440766979 +337,1884,psychedelic,1440766991 +337,1884,social commentary,1440766994 +337,1884,surreal,1440766976 +337,5618,alternate reality,1440767152 +337,5618,anime,1440767143 +337,5618,atmospheric,1440767161 +337,5618,dreamlike,1440767159 +337,5618,fantasy,1440767159 +337,5618,Hayao Miyazaki,1440767147 +337,5618,Studio Ghibli,1440767146 +337,5618,surreal,1440767164 +337,5618,whimsical,1440767163 +337,5971,anime,1440767198 +337,5971,Cute,1440767201 +337,5971,Hayao Miyazaki,1440767196 +337,5971,Studio Ghibli,1440767195 +337,36529,arms dealer,1440768058 +337,36529,based on a true story,1440768048 +337,36529,guns,1440768045 +337,36529,political,1440768046 +383,260,sci-fi,1433187427 +400,296,dialogue,1420881391 +400,296,funny,1420881391 +400,296,non-linear,1420881391 +400,318,drama,1419532242 +400,318,innocent,1423571313 +400,318,prison,1419532254 +400,318,prison escape,1419532232 +400,318,psychology,1419532248 +400,356,historical,1422206895 +400,356,humor,1422206895 +400,356,stupid,1422206895 +400,471,cheesy,1419542093 +400,471,stupid,1419542064 +400,1197,cheesy,1419532672 +400,1197,fairy tale,1419532703 +400,1197,funny,1419532647 +400,1197,romance,1419532687 +400,1197,witty,1419532678 +400,2395,Bill Murray,1419532751 +400,2395,coming of age,1419532754 +400,2395,Quirky,1419532749 +400,2395,Wes Anderson,1419532747 +400,2692,alternate endings,1419533537 +400,2692,funny,1419533563 +400,2692,nonlinear,1419533540 +400,2692,surreal,1419533541 +400,2692,time loop,1419533548 +400,2959,dark comedy,1419532838 +400,2959,psychology,1419532835 +400,2959,social commentary,1419532839 +400,2959,soundtrack,1419532879 +400,2959,thought-provoking,1419532861 +400,2959,violence,1419532842 +400,4011,british,1419533046 +400,4011,Crime,1419533026 +400,4011,dark comedy,1419533003 +400,4011,dialogue,1419533011 +400,4011,funny,1419533032 +400,4979,Bill Murray,1419532633 +400,4979,Quirky,1419532623 +400,4979,Wes Anderson,1419532626 +400,5617,boring,1419533155 +400,6874,action,1419532948 +400,6874,funny,1419532966 +400,6874,nonlinear,1419532946 +400,6874,soundtrack,1419532958 +400,6874,violence,1419532978 +400,42718,bad acting,1419533281 +400,48516,Crime,1419533311 +400,48516,organized crime,1419533299 +400,48516,psychology,1419533316 +400,48516,suspense,1419533321 +400,48516,undercover cop,1419533307 +400,52885,dreams,1419532201 +400,52885,soundtrack,1419532220 +400,52885,surreal,1419532208 +400,53125,anti-hero,1419539970 +400,53125,funny,1419539978 +400,53125,pirates,1419539975 +400,60069,artificial intelligence,1419532301 +400,60069,cute,1419532326 +400,60069,funny,1419532310 +400,60069,quirky,1419532306 +400,60069,romance,1419532319 +400,60069,social commentary,1419532312 +400,69757,attachment disorder,1419532587 +400,69757,bittersweet,1419532558 +400,69757,Funny,1419532509 +400,69757,inspiring,1419532580 +400,69757,intelligent,1419532483 +400,69757,love,1419532551 +400,69757,manic pixie dream girl,1419532610 +400,69757,nonlinear,1419532512 +400,69757,quirky,1419532481 +400,69757,relationships,1419532487 +400,69757,soundtrack,1419532535 +400,69757,Zooey Deschanel,1419532475 +400,74668,bad acting,1419533293 +400,76093,cat,1419533584 +400,76093,cute,1419533573 +400,76093,dragons,1419533571 +400,76093,funny,1419533579 +400,79702,cute,1419532786 +400,79702,fight scenes,1419532777 +400,79702,funny,1419532780 +400,79702,quirky,1419532771 +400,79702,soundtrack,1419532801 +400,79702,surreal,1419532825 +400,81562,cinematography,1419533236 +400,81562,drama,1419533245 +400,81562,nature,1419533234 +400,81562,psychology,1419533231 +400,81562,slow,1419533267 +400,81562,soundtrack,1419533239 +400,81562,survival,1419533228 +400,81562,suspense,1419533255 +400,81804,comedy,1419532169 +400,81804,romance,1419532172 +400,81845,drama,1419533170 +400,81845,friendship,1419533174 +400,91658,dark,1419532279 +400,91658,detective thriller,1419532123 +400,91658,nudity,1419532283 +400,91658,rape,1419532265 +400,94959,cute,1419532916 +400,94959,funny,1419532904 +400,94959,quirky,1419532891 +400,94959,surreal,1419532901 +400,94959,Wes Anderson,1419532889 +400,96751,finance,1419533714 +400,97752,complicated,1419533933 +400,97752,dystopia,1419533846 +400,97752,gay,1419533868 +400,97752,human nature,1419533877 +400,97752,multiple storylines,1419533827 +400,97752,Nudity (Topless),1419533917 +400,97752,philosophy,1419533836 +400,97752,rebellion,1419533840 +400,97752,slavery,1419533881 +400,97752,social commentary,1419533837 +400,97752,soundtrack,1419533825 +400,97752,thought-provoking,1419533931 +400,97752,visually appealing,1419533830 +400,106782,drugs,1419533735 +400,106782,finance,1419533728 +400,106782,Funny,1419533743 +400,106782,Nudity (Full Frontal),1419533732 +400,106782,villain protagonist,1419533783 +400,106920,artificial intelligence,1419533621 +400,106920,boring,1419533604 +400,106920,Scarlett Johansson,1419533610 +400,108932,breaking the fourth wall,1419548647 +400,108932,cat,1419596325 +400,108932,funny,1419548656 +400,108932,Morgan Freeman,1419548675 +400,108932,quirky,1419596345 +400,108932,rebellion,1419548643 +400,108932,unicorn,1419596295 +400,109848,boring,1419533196 +400,109848,male nudity,1419533219 +400,109848,nudity,1419533212 +400,109848,slow,1419533201 +400,112175,cat,1419533520 +400,112175,cute,1419533501 +400,112175,dragons,1419533502 +400,112556,Psychopathy,1420893617 +400,112788,stupid,1420881592 +400,114028,gay,1419532099 +410,97779,apple,1446979193 +410,97779,NeXT,1446979207 +410,97779,stevejobs,1446979196 +410,136562,apple,1446979063 +410,136562,IT,1446979094 +410,136562,stevejobs,1446979071 +410,141846,apple,1446979147 +410,141846,IT,1446979150 +410,141846,stevejobs,1446979144 +474,198,corruption,1450261049 +474,198,mindfuck,1450261037 +474,78836,drugs,1450261162 +474,78836,psychedelic,1450261160 +474,115122,dark comedy,1450261129 +478,539,Meg Ryan,1197253969 +478,539,Tom Hanks,1197253973 +479,107,Billy Connolly,1289362138 +479,107,pirates,1289362132 +479,107,Tim Curry,1289362130 +479,3977,Sam Rockwell,1289363180 +479,3977,sexy,1289363182 +479,5444,heartbreaking,1292179225 +479,6218,lesbian,1289363947 +479,53519,car chase,1289361598 +479,53519,Direction,1289361595 +479,53519,grainy,1289361590 +479,53519,great soundtrack,1289361586 +479,53519,Kick-Butt Women,1289361576 +479,53519,Kurt Russell,1289361581 +479,53519,slow paced,1289361562 +479,53519,too long,1289361569 +479,59315,funny,1290407944 +479,59315,Robert Downey Jr.,1290407938 +479,68237,interesting,1289362777 +479,68237,psychology,1289362766 +479,68237,Sam Rockwell,1289362758 +479,68237,solitude,1289362772 +479,77561,Mickey Rourke,1290407881 +479,77561,Sam Rockwell,1290407896 +479,77561,sci-fi,1290407907 +479,77561,superhero,1290407901 +479,79695,acting,1291423924 +479,79695,bad direction,1291423917 +479,79695,Mickey Rourke,1291423910 +479,79695,too unrealistic,1291423915 +479,80219,Cheech Marin,1289367569 +479,80219,Jessica Alba,1289367563 +479,80219,Michelle Rodriguez,1289367560 +479,80219,Nudity,1289367550 +479,80219,over the top violence,1289367543 +479,81591,Mila Kunis,1292820939 +479,81591,Natalie Portman,1292820949 +479,81641,based on a true story,1290406398 +479,81641,naomi watts,1290406385 +479,81641,sean penn,1290406390 +479,81847,subgenre:fairy tale,1291923130 +506,260,fantasy action,1439251099 +506,260,George Lucas,1439251107 +508,22,detective,1367817971 +508,549,musicians,1367817843 +508,858,masterpiece,1367817401 +508,1088,dancing,1367817921 +508,1188,dancing,1367817921 +508,1206,masterpiece,1367817401 +508,1252,masterpiece,1367817401 +508,1295,based on a book,1295872083 +508,2019,masterpiece,1367817401 +508,2550,supernatural,1367817425 +508,2716,supernatural,1367817425 +508,2762,excellent script,1367817448 +508,2866,musicians,1367817843 +508,3005,detective,1367817971 +508,3418,women,1367817643 +508,3798,supernatural,1367817425 +508,3918,splatter,1367817483 +508,4018,women,1367817643 +508,4226,great ending,1367817935 +508,4291,women,1367817643 +508,4720,supernatural,1367817425 +508,4802,screwball comedy,1367817985 +508,4902,supernatural,1367817425 +508,5163,original,1367817154 +508,5385,musicians,1367817843 +508,5693,dancing,1367817921 +508,5893,neo-noir,1367817905 +508,6301,brutality,1367817890 +508,6910,original,1367817155 +508,7759,melancholic,1367817336 +508,7981,excellent script,1367817448 +508,8862,original,1367817154 +508,25927,noir thriller,1367817352 +508,44555,excellent script,1367817448 +508,47610,great ending,1367817934 +508,55908,excellent script,1367817448 +508,56339,supernatural,1367817425 +508,64116,original,1367817154 +508,64993,melancholic,1367817336 +508,66371,mentor,1367817375 +508,81845,excellent script,1367817448 +508,82242,original,1367817155 +508,91571,original,1367817154 +512,3214,cycling,1159826410 +512,3359,cycling,1159826382 +551,296,amazing!,1420924621 +551,296,wow!,1420924621 +551,296,you will love it.,1420924621 +551,356,good writing,1422449569 +551,356,refreshing,1422449569 +551,356,very moving,1422449569 +569,72998,beautiful scenery,1442687718 +583,260,space,1433027784 +583,260,star wars,1433027790 +593,260,classic sci-fi,1432857198 +593,260,good vs evil,1432857205 +593,296,dark comedy,1432857302 +593,296,highly quotable,1432857302 +593,296,nonlinear,1432857302 +593,115713,gender roles,1432857350 +593,115713,modern classic,1432857331 +593,115713,nudity (full frontal),1432857345 +593,115713,sci-fi,1432857341 +593,115713,thought provoking,1432857338 +605,45106,Bush bashing,1147141827 +605,45106,comedy,1147141827 +605,45210,9/11,1147141733 +605,45210,aviation,1147141733 +605,45210,heroism,1147141733 +605,45210,terrorism,1147141733 +614,41566,based on book,1284728227 +614,41566,Biblical,1284728241 +614,41566,C S Lewis,1284728227 +614,41566,Christianity,1284728226 +614,41566,fantasy,1284728226 +614,41566,good versus evil,1284728227 +614,41566,religion,1284728226 +614,54259,fairy tale,1284728602 +614,54259,humour,1284728602 +614,54259,Neil Gaiman,1284728602 +614,54259,romance,1284728602 +614,56171,book was better,1284728406 +614,56171,fairy tale,1284728403 +614,56171,parallel universe,1284728403 +614,56171,Phillip Pullman,1284728403 +614,56171,religion,1284728403 +614,56171,steampunk,1284728403 +614,56171,watered down,1284728421 +623,356,Oscar Winner,1182913553 +632,260,adventure,1430669358 +632,260,EPIC,1430669368 +632,260,far future,1430669383 +632,260,sci-fi,1430669352 +637,74458,Psychological Thriller,1434169401 +637,79132,Intrigued,1434169472 +639,260,Decent,1443239598 +639,260,Good,1443239600 +679,741,based on manga,1327035372 +679,741,Bechdel Test:Fail,1327035359 +679,741,complex,1327035377 +679,741,great anime,1326640044 +679,741,philosophical,1326640047 +679,1274,cyberpunk,1326640536 +679,1274,dystopia,1326640540 +679,1274,Japan,1326640558 +679,1274,post-apocalyptic,1326640550 +679,1274,stylized,1326640530 +679,1274,violent,1326640554 +679,2810,cult of persona,1328978940 +679,2810,distorted reality,1328978930 +679,3503,atmospheric,1333204200 +679,3503,dreamlike,1333204199 +679,3503,Russian,1333204181 +679,3503,space,1333204177 +679,7099,comic book,1326640759 +679,7099,coming of age,1326640814 +679,7099,dystopic future,1326640754 +679,7099,post-apocalyptic,1326640762 +679,7118,ambitious,1329669086 +679,7118,anime,1329669092 +679,7118,To See,1329669067 +679,27156,apocalypse,1327991627 +679,27156,end of the world,1327991600 +679,27156,mental illness,1327991640 +679,27156,psychology,1327991603 +679,64034,Holocaust,1328624293 +679,64034,World War II,1328624291 +702,1199,dystopia,1442265927 +702,1199,satirical,1442265941 +702,1199,sci-fi,1442265937 +702,1199,surreal,1442265925 +702,1199,visually appealing,1442265917 +710,908,Clever,1148180977 +712,6818,Russian,1444891828 +712,8684,French,1444891884 +712,33270,japanese,1444891995 +712,37495,japanese,1444891930 +712,41912,swedish,1444892585 +712,92259,French,1444892189 +712,106920,american,1444892267 +716,1,animation,1428239638 +716,1,children,1428239638 +716,1,toys,1428239638 +716,260,future,1427622621 +716,260,space,1427622621 +716,260,supernatural powers,1427622621 +716,2571,prophecy,1431947375 +716,2571,sci-fi,1431947375 +716,2571,superpowers,1431947375 +736,32587,film noir comic book,1336716604 +747,64997,aliens,1407453722 +757,260,Cutting edge,1439505991 +757,260,futuristic,1439505916 +757,260,imaginative,1439505934 +780,260,1970s,1440465807 +780,260,classic sci-fi,1440465788 +784,1653,dystopia,1340235630 +784,1653,future,1340235632 +784,1653,sci-fi,1340235637 +784,1653,thought-provoking,1340235642 +784,1653,visually appealing,1340235628 +784,61132,irreverent,1224884457 +799,260,Future,1440059838 +799,260,Scifi,1440059814 +807,356,coming of age,1437770799 +807,356,mental retardation,1437770799 +807,356,war,1437770799 +807,2495,Dreamlike,1437771732 +807,2495,psychedelic,1437771719 +807,2495,Surreal,1437771734 +807,116833,Animation,1441928862 +807,116833,hungry,1441928866 +807,116833,Marcell Jankovics,1441928798 +807,116833,Psychedelic,1441928813 +815,103819,laugh out loud any time movie,1375260137 +815,121275,car chase,1424528294 +815,121275,road movie,1424528280 +815,121275,satan,1424528266 +815,128942,sci-fi,1424529958 +832,1136,MontyPython,1139963005 +832,39381,Australian,1152314023 +852,260,science fantasy,1440115411 +852,260,"sf,science fiction",1440115403 +874,90600,conspiracy,1426543725 +907,6711,Bill Murray,1224185253 +916,260,Science Fiction,1431487522 +916,260,Star Wars,1431487515 +952,260,adventure,1443128390 +952,260,science fiction,1443128385 +952,260,space opera,1443128378 +967,47394,Action thriller,1286304314 +967,47394,situation comedy,1286304314 +967,47394,too serious,1286304314 +967,58162,british,1288125697 +995,480,dinosaur,1434829010 +995,480,low sf,1434829010 +995,480,simple plot,1434829010 +995,4973,beautifully filmed,1433020987 +995,4973,feel-good,1433020991 +995,4973,imagination,1433021032 +995,4973,quirky,1433020997 +995,4973,whimsical,1433020994 +995,57669,violent,1436648695 +995,79895,french,1434834888 +995,79895,Poor dialog,1434835002 +995,79895,Silly,1434834840 +995,79895,Whismical,1434834774 +995,114945,animation,1433020928 +995,114945,Bittersweet,1433020920 +995,114945,fantasy,1433020940 +995,114945,Musical,1433020611 +995,114945,Quirky,1433020606 +995,114945,romance,1433020950 +995,114945,Whimsical,1433020608 +1023,541,Cinematography,1170644577 +1028,296,gangsters,1435692473 +1028,296,gore,1435692473 +1028,296,quentin tarantino,1435692473 +1028,104841,cgi,1435692322 +1028,104841,sandra bullock,1435692338 +1028,104841,space,1435692328 +1029,1900,In Netflix queue,1159591867 +1040,1,itaege,1438050735 +1040,2,itaege,1438050732 +1040,6,btaege,1374027994 +1040,10,btaege,1373920437 +1040,13,itaege,1438997933 +1040,16,etaege,1362963282 +1040,28,etaege,1379299060 +1040,29,btaege,1362969740 +1040,48,itaege,1438050742 +1040,50,btaege,1383101292 +1040,70,btaege,1373920133 +1040,150,itaege,1438050738 +1040,154,etaegeshelf,1374110742 +1040,158,itaege,1438050746 +1040,163,btaege,1373899621 +1040,165,btaege,1373899728 +1040,222,etaege,1362969381 +1040,225,etaege,1373903657 +1040,230,etaege,1373899858 +1040,235,etaege,1373900025 +1040,260,itaege,1438051247 +1040,262,itaege,1438050823 +1040,313,itaege,1438994614 +1040,317,itaege,1438050830 +1040,364,itaege,1438050845 +1040,368,itaege,1438050854 +1040,374,itaege,1438050826 +1040,431,btaege,1362963263 +1040,435,itaege,1438050870 +1040,454,btaege,1373903504 +1040,455,itaege,1438050873 +1040,468,etaege,1373903090 +1040,471,btaege,1374032395 +1040,475,btaege,1374034183 +1040,497,btaege,1379299227 +1040,524,itaege,1438050857 +1040,531,itaege,1438050866 +1040,539,itaege,1438050876 +1040,551,itaege,1438050860 +1040,575,itaege,1438050842 +1040,580,itaege,1438050836 +1040,586,itaege,1438050990 +1040,588,itaege,1438050891 +1040,590,btaege,1373899350 +1040,593,btaege,1379298863 +1040,594,itaege,1438051356 +1040,595,itaege,1438050983 +1040,596,itaege,1438051345 +1040,610,etaege,1432520718 +1040,616,btaege,1362961367 +1040,616,itaege,1438994582 +1040,628,btaege,1379299198 +1040,653,itaege,1438075436 +1040,661,itaege,1438997984 +1040,709,itaege,1438994618 +1040,712,btaege,1390690194 +1040,741,btaege,1373920336 +1040,750,btaegepriority,1386740296 +1040,783,itaege,1438050729 +1040,837,itaege,1438050726 +1040,838,btaege,1373902961 +1040,912,itaege,1438051339 +1040,919,itaege,1438051353 +1040,920,itaege,1438051349 +1040,923,etaege,1362969488 +1040,1020,itaege,1438050863 +1040,1022,itaege,1438051336 +1040,1023,itaege,1438994573 +1040,1025,itaege,1438994577 +1040,1028,itaege,1438051317 +1040,1029,itaege,1438994565 +1040,1030,itaege,1438994630 +1040,1031,itaege,1438997926 +1040,1032,itaege,1438051333 +1040,1033,itaege,1438994594 +1040,1073,itaege,1438051261 +1040,1090,btaege,1386223058 +1040,1097,itaege,1438051229 +1040,1101,itaege,1438051123 +1040,1120,etaege,1432571288 +1040,1129,btaege,1373903149 +1040,1136,itaege,1438051250 +1040,1172,btaege,1362969283 +1040,1183,etaege,1373903040 +1040,1185,etaege,1382576299 +1040,1196,itaege,1438051239 +1040,1197,itaege,1438051102 +1040,1198,itaege,1438051232 +1040,1210,itaege,1438051225 +1040,1213,btaege,1373920507 +1040,1214,etaege,1362893290 +1040,1225,btaegeshelf,1383186441 +1040,1225,itaege,1438051150 +1040,1230,etaege,1362961088 +1040,1235,itaege,1438051258 +1040,1242,btaege,1373920390 +1040,1243,btaege,1379299160 +1040,1246,itaege,1438051028 +1040,1262,btaege,1373920575 +1040,1263,btaege,1373899586 +1040,1265,itaege,1438050887 +1040,1270,itaege,1438051139 +1040,1271,etaege,1373920117 +1040,1277,etaegeshelf,1373899136 +1040,1281,etaege,1373920556 +1040,1282,etaege,1373903356 +1040,1282,itaege,1438994626 +1040,1283,etaege,1374029544 +1040,1285,btaege,1374028738 +1040,1288,btaege,1386223148 +1040,1293,btaege,1373920219 +1040,1302,etaege,1374967776 +1040,1367,itaege,1438050723 +1040,1370,btaege,1373899720 +1040,1380,itaege,1438051242 +1040,1396,btaege,1383010398 +1040,1441,itaege,1438050880 +1040,1464,btaege,1379299313 +1040,1466,btaege,1373899887 +1040,1566,itaege,1438050719 +1040,1584,itaege,1438050716 +1040,1588,itaege,1438050712 +1040,1590,btaege,1373903171 +1040,1610,itaege,1438051007 +1040,1641,etaege,1382501515 +1040,1645,btaege,1373899656 +1040,1688,itaege,1438050709 +1040,1702,itaege,1438050705 +1040,1881,itaege,1438997944 +1040,1907,itaege,1438050701 +1040,1967,itaege,1438051116 +1040,1974,btaege,1373920107 +1040,1982,btaege,1373920767 +1040,2003,itaege,1438051208 +1040,2005,itaege,1438051146 +1040,2009,btaegepriority,1386740242 +1040,2010,btaegepriority,1386740162 +1040,2011,itaege,1438051010 +1040,2012,itaege,1438050998 +1040,2018,itaege,1438051342 +1040,2024,btaege,1363709989 +1040,2043,itaege,1438075978 +1040,2045,etaege,1375574501 +1040,2046,itaege,1438051112 +1040,2053,itaege,1438050902 +1040,2054,itaege,1438051021 +1040,2059,itaege,1438050698 +1040,2077,itaege,1438997953 +1040,2078,itaege,1438051306 +1040,2080,itaege,1438051326 +1040,2081,itaege,1438051017 +1040,2082,itaege,1438050898 +1040,2085,itaege,1438051320 +1040,2087,itaege,1438051330 +1040,2093,itaege,1438051143 +1040,2096,itaege,1438051323 +1040,2099,itaege,1438995741 +1040,2105,btaege,1386223195 +1040,2115,Itaege,1436989457 +1040,2123,itaege,1438051014 +1040,2139,itaege,1438994622 +1040,2140,btaege,1373899414 +1040,2141,itaege,1438994600 +1040,2143,itaege,1438051136 +1040,2150,btaege,1373920407 +1040,2161,itaege,1438051212 +1040,2162,itaege,1438050995 +1040,2174,itaege,1438051098 +1040,2193,itaege,1438051091 +1040,2313,etaege,1373900046 +1040,2353,etaege,1374967349 +1040,2355,itaege,1438995771 +1040,2394,itaege,1438050694 +1040,2403,etaege,1386222643 +1040,2405,itaege,1438051132 +1040,2406,itaege,1438051216 +1040,2413,itaege,1438051128 +1040,2420,itaege,1438051153 +1040,2421,itaege,1438051120 +1040,2428,btaege,1373903327 +1040,2455,etaege,1373903600 +1040,2478,itaege,1438051109 +1040,2528,etaege,1386741379 +1040,2529,itaege,1438051269 +1040,2559,itaege,1438997965 +1040,2580,btaege,1373920397 +1040,2594,etaege,1390690371 +1040,2616,etaege,1374967289 +1040,2628,itaege,1438050690 +1040,2640,btaegeshelf,1388290072 +1040,2640,etaege,1386740804 +1040,2644,etaege,1373899992 +1040,2648,etaege,1373920067 +1040,2687,itaege,1438050508 +1040,2716,itaege,1438051156 +1040,2717,itaege,1438051024 +1040,2724,itaege,1438050503 +1040,2761,itaege,1438997968 +1040,2791,itaege,1438051236 +1040,2804,itaege,1438051221 +1040,2846,itaege,1438997961 +1040,2861,etaege,1374967889 +1040,2862,etaegeshelf,1373571938 +1040,2872,etaege,1386741287 +1040,2876,itaege,1438076468 +1040,2942,etaege,1373903585 +1040,2944,etaege,1373903673 +1040,2947,btaege,1373920446 +1040,2948,btaegeshelf,1382501452 +1040,2949,btaegeshelf,1382501459 +1040,2953,itaege,1438050894 +1040,2971,etaege,1362960880 +1040,2985,etaege,1386740851 +1040,2987,itaege,1438051083 +1040,2989,btaege,1373919825 +1040,3000,btaege,1379299270 +1040,3005,etaegepriority,1388964215 +1040,3006,etaege,1374034326 +1040,3033,itaege,1438051105 +1040,3034,itaege,1438051254 +1040,3095,btaege,1373920536 +1040,3101,etaege,1373903416 +1040,3153,etaege,1362290131 +1040,3156,itaege,1438050499 +1040,3159,etaege,1373903345 +1040,3159,itaege,1438994605 +1040,3201,btaege,1373903578 +1040,3243,itaege,1438050966 +1040,3247,itaege,1438050962 +1040,3255,itaege,1438050956 +1040,3270,itaege,1438050969 +1040,3307,etaegeshelf,1374812574 +1040,3328,btaege,1373920319 +1040,3361,etaege,1373855122 +1040,3438,itaege,1438051001 +1040,3451,etaege,1373920673 +1040,3468,etaege,1374032403 +1040,3483,itaege,1438997957 +1040,3489,itaege,1438050977 +1040,3527,etaege,1386740753 +1040,3615,itaege,1438076486 +1040,3629,etaegeshelf,1384918023 +1040,3668,itaege,1438051265 +1040,3681,btaege,1373903637 +1040,3751,itaege,1438050495 +1040,3775,itaege,1438994587 +1040,3776,itaege,1438994610 +1040,3791,etaege,1373903624 +1040,3809,itaege,1438050987 +1040,3847,etaege,1365448562 +1040,3916,itaege,1438050490 +1040,3984,btaege,1373899668 +1040,3988,itaege,1438050486 +1040,3994,etaege,1382501012 +1040,4016,itaege,1438050482 +1040,4085,btaege,1362962569 +1040,4103,btaege,1373902999 +1040,4148,btaege,1373920825 +1040,4225,btaege,1373899791 +1040,4232,itaege,1438050477 +1040,4306,itaege,1438050473 +1040,4366,itaege,1438050469 +1040,4499,btaege,1373899772 +1040,4571,btaege,1362962561 +1040,4700,itaege,1438050466 +1040,4855,btaege,1373899756 +1040,4881,btaege,1379299243 +1040,4886,itaege,1438050462 +1040,4896,itaege,1438050457 +1040,4941,etaege,1386222942 +1040,4994,itaege,1438050453 +1040,5013,etaege,1373920520 +1040,5026,btaege,1362963064 +1040,5039,itaege,1438075899 +1040,5103,itaege,1438050884 +1040,5159,itaege,1438076496 +1040,5218,itaege,1438050448 +1040,5267,btaege,1390701284 +1040,5303,itaege,1438051004 +1040,5378,itaege,1438050444 +1040,5422,btaege,1373902991 +1040,5444,itaege,1438050440 +1040,5618,etaegeshelf,1363232982 +1040,5667,itaege,1438050435 +1040,5690,btaege,1373920546 +1040,5765,itaege,1438997949 +1040,5791,etaege,1373920093 +1040,5816,itaege,1438050430 +1040,5954,etaege,1364174831 +1040,5970,itaege,1438050980 +1040,5971,itaege,1438051094 +1040,6093,itaege,1438997878 +1040,6350,btaege,1390690538 +1040,6440,btaege,1362961666 +1040,6593,itaege,1438050366 +1040,6664,btaege,1386222603 +1040,6773,btaege,1383101196 +1040,6777,btaege,1383101214 +1040,6791,etaegeshelf,1363232162 +1040,6807,btaege,1379299449 +1040,6889,itaege,1438995703 +1040,6936,itaege,1438050362 +1040,6944,itaege,1438050973 +1040,6953,etaege,1364174825 +1040,6970,etaege,1373899613 +1040,6979,btaege,1386741220 +1040,6979,etaege,1386741213 +1040,6986,etaegeshelf,1363233029 +1040,6988,etaege,1390761843 +1040,7022,etaegeshelf,1363233278 +1040,7090,btaege,1374029522 +1040,7114,etaege,1373864868 +1040,7123,etaege,1403473348 +1040,7139,etaege,1383010957 +1040,7164,itaege,1438050359 +1040,7263,etaege,1390701328 +1040,7263,itaege,1438050351 +1040,7360,btaege,1373899433 +1040,7371,etaege,1373899824 +1040,7380,itaege,1438050347 +1040,7387,btaege,1373899455 +1040,7581,etaege,1373919851 +1040,7669,etaege,1382501547 +1040,7981,btaege,1379298339 +1040,8154,etaegeshelf,1373899843 +1040,8167,etaege,1390689753 +1040,8197,btaege,1374029600 +1040,8302,etaege,1373920175 +1040,8360,itaege,1438050343 +1040,8368,itaege,1438050340 +1040,8376,itaege,1438050336 +1040,8620,etaegeshelf,1373903276 +1040,8622,etaege,1373903337 +1040,8638,btaege,1383010392 +1040,8645,etaegeshelf,1363232187 +1040,8784,btaege,1373920260 +1040,8798,btaege,1373864823 +1040,8836,btaege,1381896783 +1040,8914,etaege,1388964437 +1040,8947,btaege,1373920663 +1040,8961,itaege,1438050332 +1040,8965,itaege,1438050324 +1040,8970,btaege,1373903464 +1040,8972,itaege,1438050327 +1040,25744,etaege,1374032517 +1040,25834,etaege,1390690112 +1040,26133,itaege,1438997972 +1040,26282,etaege,1364172741 +1040,26539,btaege,1373899570 +1040,26759,etaegeshelf,1363315982 +1040,27251,etaege,1357578400 +1040,27706,itaege,1438050316 +1040,27728,btaege,1373920346 +1040,27731,etaegeshelf,1363233004 +1040,30793,itaege,1438050296 +1040,30803,btaege,1384918114 +1040,30810,btaege,1383101242 +1040,31042,etaege,1374029464 +1040,31410,btaege,1373899917 +1040,31410,btaegepriority,1386737637 +1040,31658,itaege,1438050320 +1040,31696,btaege,1373898999 +1040,32928,btaege,1362893197 +1040,33004,itaege,1438050311 +1040,33166,etaege,1375586994 +1040,33615,itaege,1438050302 +1040,33790,etaege,1390690089 +1040,34072,itaege,1438050307 +1040,34319,btaege,1379299212 +1040,34437,btaegepriority,1390761876 +1040,37720,btaege,1373903253 +1040,37733,etaege,1374968929 +1040,39292,btaege,1373920498 +1040,40275,etaege,1373903212 +1040,41566,itaege,1438050288 +1040,42730,btaege,1390701351 +1040,44555,btaege,1379298888 +1040,45517,itaege,1438050226 +1040,46723,etaege,1362961645 +1040,46948,itaege,1438997980 +1040,47200,btaege,1373899056 +1040,49647,itaege,1438997940 +1040,49649,itaege,1438075777 +1040,50068,btaege,1383101144 +1040,50601,itaege,1438050214 +1040,50872,itaege,1438050210 +1040,52281,btaege,1373920636 +1040,52287,itaege,1438997988 +1040,52435,itaege,1438995787 +1040,52950,btaege,1373899478 +1040,55247,etaege,1383101228 +1040,55269,btaege,1383101315 +1040,55290,btaege,1382576271 +1040,55814,etaegeshelf,1373899810 +1040,55820,btaege,1379299183 +1040,56171,btaege,1373920428 +1040,56775,itaege,1438050198 +1040,56915,itaege,1438076357 +1040,57669,btaege,1379298606 +1040,58105,btaege,1390783345 +1040,58299,btaege,1374031534 +1040,58347,itaege,1438050230 +1040,59387,itaege,1438050221 +1040,59501,itaege,1438050194 +1040,59988,btaege,1362962982 +1040,60069,itaege,1438050190 +1040,60487,itaege,1438997902 +1040,60684,btaege,1379298930 +1040,60816,etaege,1374027854 +1040,60818,btaege,1374031236 +1040,61024,etaege,1364081750 +1040,62376,btaege,1362969655 +1040,63239,itaege,1438051470 +1040,63859,btaegepriority,1386221780 +1040,65088,btaege,1362961950 +1040,65088,itaege,1438076034 +1040,65230,itaege,1438050176 +1040,65261,itaege,1438050185 +1040,65577,itaege,1438076448 +1040,65685,itaege,1438050181 +1040,66934,etaege,1426979130 +1040,67255,etaegeshelf,1373920381 +1040,68237,etaege,1416694103 +1040,68954,itaege,1438050170 +1040,69844,itaege,1438050166 +1040,70206,btaege,1373864913 +1040,72226,itaege,1438050161 +1040,72737,itaege,1438050157 +1040,73023,btaege,1383101353 +1040,73323,etaegeshelf,1373920365 +1040,74342,etaege,1390690025 +1040,74530,itaege,1438076366 +1040,76093,itaege,1438050152 +1040,77658,etaege,1382576244 +1040,78499,itaege,1438050147 +1040,78737,etaege,1390690064 +1040,78836,btaege,1373903112 +1040,79091,itaege,1438050142 +1040,80615,itaege,1438050063 +1040,80846,btaege,1373899650 +1040,81018,btaege,1374033018 +1040,81786,etaege,1362963358 +1040,81847,itaege,1438050053 +1040,82169,itaege,1438050058 +1040,84637,itaege,1438076007 +1040,84663,etaege,1373902750 +1040,84954,etaege,1362290215 +1040,85788,btaege,1379295303 +1040,86000,btaege,1374094404 +1040,86852,btaege,1362961926 +1040,86911,etaege,1374968122 +1040,87296,etaege,1390690152 +1040,87430,btaege,1373920608 +1040,88129,etaege,1373900020 +1040,89470,btaege,1373899016 +1040,89492,etaege,1361764853 +1040,89898,etaege,1373920280 +1040,89904,etaegeshelf,1374110828 +1040,90341,btaege,1385228159 +1040,90600,btaege,1374027987 +1040,90746,itaege,1438050047 +1040,91077,btaege,1373899601 +1040,91485,btaege,1373903260 +1040,92819,etaegeshelf,1373903614 +1040,93272,itaege,1438075846 +1040,93498,etaege,1373920206 +1040,93522,etaege,1390689975 +1040,94813,etaege,1362968776 +1040,94978,etaegeshelf,1374032653 +1040,94985,btaege,1373920309 +1040,95167,itaege,1438049967 +1040,95218,etaege,1373903541 +1040,95939,btaege,1379297714 +1040,96281,btaegepriority,1390690490 +1040,96304,btaege,1373920866 +1040,96347,etaege,1374967392 +1040,96606,btaege,1379299258 +1040,96612,btaege,1373898912 +1040,96634,btaege,1373902736 +1040,96667,etaege,1362290372 +1040,96762,etaege,1373899638 +1040,96917,btaege,1374031982 +1040,97172,btaegepriority,1386222182 +1040,97225,btaege,1374031557 +1040,97393,etaege,1374032061 +1040,97639,etaege,1374032201 +1040,97673,etaege,1362290119 +1040,97744,etaegeshelf,1373864735 +1040,97834,etaege,1373899047 +1040,97913,etaegepriority,1386222117 +1040,97913,itaege,1438997976 +1040,97933,etaege,1390761935 +1040,97938,Itaege,1436989556 +1040,97957,btaege,1373903243 +1040,98111,etaegeshelf,1373899373 +1040,98154,btaege,1379299295 +1040,98243,itaege,1438075668 +1040,98398,etaegeshelf,1374638044 +1040,98585,btaege,1374029662 +1040,98956,etaegeshelf,1363406740 +1040,98961,btaege,1383101305 +1040,99014,etaegeshelf,1373899900 +1040,99045,etaegeshelf,1374812528 +1040,99047,btaege,1362968702 +1040,99056,etaege,1373899029 +1040,99061,etaegeshelf,1363406769 +1040,99143,btaege,1362969417 +1040,99325,etaege,1373903312 +1040,99343,history,1356732676 +1040,99345,etaege,1373900034 +1040,99470,btaege,1373864840 +1040,99537,btaege,1373903294 +1040,99564,etaege,1362962499 +1040,99602,etaege,1373899376 +1040,99607,btaege,1374033142 +1040,99631,etaege,1374032582 +1040,99636,etaege,1373903073 +1040,99638,etaegeshelf,1373903556 +1040,99669,btaege,1362893210 +1040,99677,etaege,1373899929 +1040,99706,etaege,1374031430 +1040,99750,btaege,1374094102 +1040,99832,etaege,1373920804 +1040,99891,etaege,1373903485 +1040,99962,etaegeshelf,1373899041 +1040,100159,btaege,1374093672 +1040,100185,etaege,1374094641 +1040,100287,etaege,1374027975 +1040,100298,etaegeshelf,1373903143 +1040,100359,btaege,1374027939 +1040,100397,etaegeshelf,1363233329 +1040,100450,btaege,1362961557 +1040,100487,btaege,1362961904 +1040,100511,etaege,1374032171 +1040,100529,etaege,1373902762 +1040,100714,etaege,1374093227 +1040,100745,etaege,1363133855 +1040,100799,etaege,1363133435 +1040,100840,etaegeshelf,1363406698 +1040,100884,btaege,1374031447 +1040,100948,etaegeshelf,1374812519 +1040,101025,btaege,1362892532 +1040,101076,btaege,1362892282 +1040,101088,btaege,1362891778 +1040,101097,btaege,1362891553 +1040,101137,btaege,1373899540 +1040,101142,Itaege,1436990211 +1040,101186,etaegeshelf,1363233262 +1040,101220,etaege,1364081684 +1040,101352,etaege,1364174567 +1040,101360,btaege,1364174415 +1040,101362,btaege,1364174369 +1040,101375,etaege,1364174123 +1040,101381,etaege,1364173954 +1040,101402,etaege,1364173510 +1040,101407,etaege,1364173079 +1040,101413,etaege,1364172917 +1040,101529,btaege,1374093940 +1040,102088,btaege,1379296551 +1040,102123,btaege,1374093353 +1040,102194,btaege,1374093256 +1040,102588,etaege,1374093696 +1040,102716,btaege,1374094081 +1040,102720,btaege,1374094052 +1040,102800,etaege,1374093329 +1040,102819,etaege,1374093811 +1040,102903,btaege,1374093589 +1040,103027,btaege,1374093601 +1040,103048,btaege,1374093421 +1040,103107,etaege,1374093387 +1040,103219,btaege,1374093883 +1040,103228,btaege,1374093288 +1040,103253,btaege,1379296061 +1040,103279,btaege,1374093368 +1040,103335,btaege,1379296531 +1040,103372,btaege,1374093405 +1040,103474,etaege,1374093632 +1040,103483,btaege,1374094012 +1040,103543,etaege,1379295721 +1040,103639,btaege,1384918251 +1040,103659,btaege,1379297694 +1040,103688,btaege,1375575465 +1040,103772,btaege,1379296444 +1040,103801,btaege,1379296460 +1040,103883,btaege,1375575390 +1040,103980,etaege,1384918308 +1040,104137,etaege,1379296178 +1040,104241,btaege,1379295550 +1040,104243,btaege,1379296118 +1040,104361,etaege,1379296230 +1040,104374,btaege,1384918156 +1040,104457,btaege,1379296752 +1040,104881,btaegepriority,1390764221 +1040,104908,btaege,1379295310 +1040,105799,etaege,1390763711 +1040,105844,btaege,1384918093 +1040,105954,btaege,1384918202 +1040,106002,btaege,1383976162 +1040,106240,btaegekids,1390764775 +1040,106696,Itaege,1436990127 +1040,106889,etaege,1390764068 +1040,107910,etaege,1390763720 +1040,108516,etaege,1390763923 +1040,108932,btaegekids,1391973804 +1040,108932,Itaege,1436989395 +1040,109487,btaege,1417743391 +1040,110297,btaegekids,1427109688 +1040,111659,Itaege,1436989833 +1040,112087,btaege,1417743802 +1040,112175,btaegekids,1426986264 +1040,112175,btaegepriority,1426986259 +1040,112183,btaegepriority,1426986174 +1040,112399,etaege,1427073267 +1040,112460,btaegekids,1426978982 +1040,112519,etaege,1426980631 +1040,112890,etaege,1426980034 +1040,113092,etaege,1427072665 +1040,113573,btaege,1427109626 +1040,113829,etaege,1427074343 +1040,114180,btaegepriority,1427074240 +1040,114392,etaege,1426978949 +1040,114552,btaegekids,1427073363 +1040,114662,btaege,1422072007 +1040,114700,btaegepriority,1426985675 +1040,114935,btaege,1424553983 +1040,115381,btaegekids,1426986312 +1040,115617,btaegekids,1426979938 +1040,115617,Itaege,1436989429 +1040,115664,btaegepriority,1426986519 +1040,116503,btaege,1426986703 +1040,117176,etaege,1426980407 +1040,117444,btaegepriority,1427109799 +1040,117851,btaegekids,1426985454 +1040,117881,etaege,1427073030 +1040,118900,btaegepriority,1426980067 +1040,120474,etaege,1426986477 +1046,76,Philip K. Dick,1299302592 +1046,260,fantasy,1299302184 +1046,260,sci-fi,1299302179 +1046,480,Dinosaurs,1299165772 +1046,480,Sci-Fi,1299165772 +1046,532,John Waters,1299003217 +1046,541,futuristic,1299302460 +1046,541,Philip K. Dick,1299302455 +1046,541,sci-fi,1299302465 +1046,580,Jim Broadbent,1299266710 +1046,901,musical,1299265489 +1046,914,Audrey Hepburn,1299265413 +1046,914,Musical,1299265419 +1046,916,Audrey Hepburn,1299007942 +1046,916,Gregory Peck,1299007942 +1046,923,Joseph Cotten,1299004221 +1046,923,Orson Welles,1299004221 +1046,923,RKO,1299004221 +1046,949,James Dean,1299020789 +1046,950,Dashiell hammett,1299018612 +1046,950,Myrna Loy,1299018612 +1046,950,William Powell,1299018612 +1046,951,Cary Grant,1299018490 +1046,951,Rosalind Russell,1299018490 +1046,1095,Alec Baldwin,1299007816 +1046,1095,David Mamet. Jack Lemmon,1299007816 +1046,1130,Joe Dante,1299266767 +1046,1130,werewolf,1299266764 +1046,1196,1980s,1299167751 +1046,1196,Robots,1299167752 +1046,1196,sci-fi,1299302174 +1046,1196,Space Opera,1299167751 +1046,1202,cult film,1299301735 +1046,1210,sci-fi,1299302168 +1046,1212,Graham Greene,1299264448 +1046,1212,Orson Welles,1299264448 +1046,1217,Kurosawa,1299034636 +1046,1224,Kenneth Branagh,1299021294 +1046,1253,Michael Rennie,1299004371 +1046,1254,Humphrey Bogart,1299008495 +1046,1278,comedy,1299301720 +1046,1278,Gene Wilder,1299004455 +1046,1278,Marty Feldman,1299004455 +1046,1372,sci-fi,1299302241 +1046,1374,sci-fi,1299302253 +1046,1949,Fred Zinnemann,1299018944 +1046,1949,Oscar (Best Actor),1299089989 +1046,1949,Paul Scofield,1299018944 +1046,1949,Robert Bolt,1299018944 +1046,1965,Alex Cox,1299004244 +1046,1965,cult film,1299301675 +1046,1965,wired 50 greatest soundtracks,1299301679 +1046,2003,Joe Dante,1299002421 +1046,2009,sci-fi,1299302275 +1046,2116,Ralph Bakshi,1299008078 +1046,2285,Lindsay Anderson,1299021399 +1046,2291,Vincent Price,1299268215 +1046,2328,John Carpenter,1299003986 +1046,2346,sci-fi,1299302143 +1046,2467,Sean Connery,1299008279 +1046,2467,Umberto Eco,1299008279 +1046,2527,sci-fi,1299301786 +1046,2646,Universal,1299002655 +1046,2647,Universal,1299002679 +1046,2652,Peter Cushing,1299000745 +1046,2657,cult classic,1299267222 +1046,2657,Quirky,1299267219 +1046,2780,Boris Karloff,1299003166 +1046,2780,Peter Lorre,1299003166 +1046,2780,Roger Corman,1299003131 +1046,2782,Edgar Allan Poe,1299268163 +1046,2782,Vincent Price,1299268164 +1046,2784,Edgar Allan Poe,1299268191 +1046,2784,Vincent Price,1299268188 +1046,2916,Philip K. Dick,1299302523 +1046,2916,sci-fi,1299302526 +1046,2983,cold war,1299089250 +1046,2983,Michael Caine,1299089247 +1046,2983,spies,1299089241 +1046,2993,007,1299302032 +1046,3018,H.P. Lovecraft,1299266584 +1046,3018,mad scientist,1299266586 +1046,3088,Jimmy Stewart,1299036410 +1046,3163,Jim Broadbent,1299036706 +1046,3384,Robert Shaw,1299036678 +1046,3814,Woody Allen,1299021581 +1046,3925,Jim Jarmusch,1299037008 +1046,3925,quirky,1299302107 +1046,3932,H.G. Wells,1299267067 +1046,3959,time travel,1299302019 +1046,4195,Vincent Price,1299268131 +1046,4196,Boris Karloff,1299265563 +1046,4196,H.P. Lovecraft,1299265559 +1046,4361,unfunny comedy,1299265041 +1046,4403,Edgar Allan Poe,1299268145 +1046,4403,horror,1299268148 +1046,4403,Vincent Price,1299268151 +1046,4501,Camp,1299003582 +1046,4518,Bram Stoker,1299002810 +1046,4518,ken Russell,1299002810 +1046,4754,Christopher Lee,1299004508 +1046,4754,cult film,1299301751 +1046,4754,Edward Woodward,1299004508 +1046,4976,Jim Broadbent,1299266682 +1046,4984,Karel Reisz,1299037314 +1046,5046,Philip K. Dick,1299302561 +1046,5062,sci-fi,1299302365 +1046,5445,Philip K. Dick,1299302479 +1046,5603,Ealing Studios,1299018679 +1046,5604,Alec Guinness,1299266026 +1046,5604,Ealing Studios,1299266023 +1046,5649,Christopher Lee,1299265891 +1046,5649,Hammer Film Productions,1299265904 +1046,5649,Peter Cushing,1299265895 +1046,5649,Terence Fisher,1299265898 +1046,5695,Richard Widmark,1299003321 +1046,5899,Michael Caine,1299004396 +1046,6500,Christopher Lee,1299023102 +1046,6500,Peter Cushing,1299023101 +1046,6581,Billy Wilder,1299036546 +1046,6650,Alec Guinness,1299266052 +1046,6650,Ealing Studios,1299018265 +1046,6913,Peter Cushing,1299003628 +1046,7005,really bad,1299268106 +1046,7029,David Cronenberg,1299003114 +1046,7101,Michael J. Fox,1299041205 +1046,7128,Alexander Korda,1299005934 +1046,7128,H.G. Wells,1299302054 +1046,7163,author:Philip K. Dick,1299302541 +1046,7163,sci-fi,1299302547 +1046,7302,fantasy,1299303447 +1046,7454,Frankenstein,1299004013 +1046,7650,Vincent Price,1298999964 +1046,7719,Boris Karloff,1299000656 +1046,7762,spy,1299302013 +1046,7771,Alan Bates,1299004429 +1046,7771,Anthony Quinn,1299004429 +1046,7886,Ingrid Pitt,1299000685 +1046,7891,Vincent Price,1299268230 +1046,7901,H.P. Lovecraft,1299266606 +1046,7934,parody,1299301711 +1046,8003,Val Lewton,1299000485 +1046,8491,Jimmy Cagney,1299004523 +1046,8772,spies,1299302258 +1046,8874,comedy,1299302317 +1046,8928,quirky,1299267736 +1046,25842,comedy,1299301991 +1046,25856,Laurence Olivier,1299018830 +1046,25856,Merle Oberon,1299018830 +1046,25900,Val Lewton,1298999253 +1046,26163,Bob Dylan,1299018406 +1046,26265,Vincent Price,1299268176 +1046,26306,Vincent Price,1299268203 +1046,27904,Philip K. Dick,1299302413 +1046,27904,sci-fi,1299302375 +1046,46976,surreal,1299303552 +1046,48301,Charles laughton,1299005880 +1046,51321,Jacques Tourneur,1299002870 +1046,51321,Val Lewton,1299002871 +1046,51412,Philip K. Dick,1299302627 +1046,53887,Lindsay Anderson,1299019103 +1046,54272,comedy,1299302292 +1046,60684,sci-fi,1299301807 +1052,2571,sci-fi,1449110986 +1052,2687,animals,1449119960 +1052,44949,animals,1447132776 +1052,58972,animals,1447132478 +1052,72998,animals,1449119971 +1052,76093,animals,1449119291 +1052,76093,emotions,1449119298 +1052,79132,sci-fi,1449110960 +1052,91886,animals,1447132864 +1052,98243,emotions,1449119354 +1052,115617,emotions,1449119277 +1052,130520,emotions,1449119317 +1052,134130,smart,1449119254 +1055,260,cult classic,1433326405 +1055,260,must see,1433326423 +1055,1197,1980s,1433326770 +1055,1197,Must see,1433326761 +1055,115617,friendship,1433326875 +1055,115617,inspiring,1433326871 +1055,115617,superhero,1433326867 +1074,50,crime,1189983345 +1074,50,filim noir,1189983336 +1074,296,comedy,1189983478 +1074,296,dialogue driven,1189983469 +1074,296,nonlinear,1189983447 +1074,2858,Black Humour,1189983526 +1074,2858,social commentary,1189983513 +1074,2959,dialogue,1189983762 +1074,2959,social commentary,1189983773 +1074,3949,dark,1189983956 +1074,3949,social commentary,1189983918 +1074,4878,black humour,1189983901 +1074,4878,eighties,1189983867 +1074,4878,mystery,1189983850 +1074,4878,social commentary,1189983860 +1074,4878,time travel,1189983870 +1074,4973,comedy,1189983570 +1074,4973,feel good,1189983565 +1074,4973,love,1189983573 +1074,7361,dialogue driven,1189983663 +1074,7361,love,1189983653 +1074,7361,nonlinear,1189983673 +1074,7361,surreal,1189983745 +1074,8014,character driven,1189984058 +1074,8014,scenic,1189984028 +1074,46578,comedy,1189983601 +1090,4995,genius,1437093589 +1090,4995,math,1437093583 +1090,4995,mathematics,1437093586 +1116,2571,sci-fi,1421657907 +1130,296,pop culture,1429823727 +1130,296,tarantino,1429823727 +1130,296,violence,1429823727 +1130,51207,body horror,1429824505 +1130,51207,Colour Horror,1429824490 +1130,79132,Boring after 2/3,1288557630 +1130,141544,80's,1451941242 +1130,141544,gore,1451941265 +1130,148080,alternative history,1448919530 +1130,148080,Based on a book,1448919572 +1130,148080,science fiction,1448919520 +1130,148080,USSR,1448919538 +1131,3481,music,1280352161 +1131,3481,record store,1280352155 +1131,27879,music documentary,1280352203 +1140,260,saga,1439776268 +1140,260,space opera,1439776247 +1140,260,Star Wars,1439776256 +1143,260,epic,1436730810 +1143,260,groundbreaking,1436730824 +1152,307,To See,1266821977 +1152,471,To See,1266821026 +1152,7396,to see,1266821831 +1152,27033,To See,1266821044 +1152,71579,bad ending,1266821138 +1158,260,cool,1444597160 +1158,260,sci-fi,1444597157 +1161,316,Great Sci fi,1159313283 +1161,38061,super funney,1159313440 +1207,1,animation,1400002011 +1207,1,comedy,1400002031 +1207,1,Disney,1400002025 +1207,1,Pixar,1400002008 +1207,45720,based on a book,1400002257 +1207,88405,happy ending,1400002301 +1207,88405,love story,1400002298 +1207,91653,Adventure,1400001843 +1207,91653,Family,1400001835 +1209,260,jedi,1443845075 +1209,260,lightsabers,1443845079 +1209,27831,British gangster,1444621634 +1209,46723,multiple storylines,1444111493 +1209,48774,apocalypse,1444111283 +1209,48774,dystopia,1444111279 +1209,48774,end of the world,1444111281 +1209,48774,future,1444111288 +1209,48774,futuristic,1444111290 +1209,48774,survival,1444111285 +1209,55247,inspirational,1444110635 +1209,55247,road trip,1444110645 +1209,55247,self discovery,1444110641 +1209,57669,black comedy,1444621527 +1209,57669,british comedy,1444621530 +1209,57669,dark comedy,1444621525 +1209,57669,depression,1444621541 +1209,57669,twist ending,1444621537 +1209,71033,revenge,1444544978 +1209,79357,cinematography,1444110845 +1209,79357,immortality,1444110854 +1209,79357,nonlinear,1444110842 +1209,79357,philosophy,1444110848 +1209,79357,time travel,1444110850 +1209,83369,prison escape,1444621707 +1209,83369,siberia,1444621702 +1209,100068,cooking,1444618927 +1209,109487,artificial intelligence,1444619108 +1209,109487,philosophical issues,1444619122 +1209,109487,sci-fi,1444619106 +1209,109487,space travel,1444619112 +1209,111778,adventure,1444544927 +1209,111778,wilderness,1444544924 +1209,116897,dark humor,1443913473 +1250,40278,hard plot to follow,1137987242 +1250,40278,no real rap up at the end,1137987242 +1250,40278,too artsy,1137987242 +1250,45208,Movies 8,1155619073 +1250,45208,Nails On ChalkBoard Bad,1155619053 +1250,48780,Amazing!,1170638635 +1250,52375,Drags On Endlessly,1189747997 +1250,53322,Al Pacino,1186724575 +1250,54503,Beyond Stupid,1297670698 +1250,90405,It's a flavor of todays corruption,1324173529 +1252,1206,atmospheric,1295117504 +1252,1206,Surrealism,1295117513 +1252,2858,dark comedy,1295117220 +1252,2858,Kevin Spacey,1295117248 +1252,2858,Oscar (Best Picture),1295117243 +1252,2858,sexuality,1295117237 +1252,2858,thought-provoking,1295117227 +1252,3949,atmospheric,1295117299 +1252,3949,dark,1295117295 +1252,3949,depressing,1295117294 +1252,3949,emotional,1295117290 +1252,3949,loneliness,1295117287 +1252,3949,Nudity (Full Frontal - Notable),1295117310 +1252,3949,Nudity (Full Frontal),1295117306 +1252,3949,psychology,1295117282 +1268,2692,alternate reality,1429997082 +1268,2692,existentialism,1429997094 +1268,2692,intense,1429997076 +1268,2692,surreal,1429997068 +1268,2692,visually appealing,1429997098 +1300,116839,breakups and divorces,1428273889 +1300,116839,judaism,1428273889 +1300,116839,women,1428273889 +1300,116841,iran,1424436427 +1300,116841,jon stewart,1424436427 +1300,116841,maziar bahari,1424436427 +1320,3996,abcence of physics,1276580531 +1320,3996,nothing,1276580526 +1334,2959,philosophy,1149402560 +1335,79091,heartwarming,1441813422 +1335,79091,minions,1441813425 +1370,318,atmospheric,1286830537 +1370,318,inspirational,1286830531 +1370,318,prison,1286830529 +1370,318,Stephen King,1286830526 +1370,318,twist ending,1286830508 +1370,4973,beautifully filmed,1286528066 +1370,4973,notable soundtrack,1286528071 +1370,4973,Paris,1286528068 +1370,6502,horror,1298161782 +1370,6502,post-apocalyptic,1298161771 +1370,6502,Zombie,1298161764 +1370,8874,Funniest Movies,1298162449 +1370,8874,parody,1298162422 +1370,8874,Simon Pegg,1298162424 +1370,8874,zombie,1298162429 +1370,56145,apocalypse,1286527972 +1370,56145,predictable,1286527984 +1370,56145,Survival,1286527978 +1370,56171,anti-religion,1302283244 +1370,56171,fantasy world,1302283247 +1370,56171,Nicole Kidman,1302283250 +1370,60753,wrongful imprisonment,1315150657 +1370,62733,zombies,1312058200 +1370,74685,contamination,1286528027 +1370,74685,virus,1286528032 +1370,74685,zombies,1286528034 +1370,74750,Unsteady-cam,1312058712 +1370,74750,zombies,1312058721 +1370,79132,alternate reality,1286528128 +1370,79132,complicated,1286528130 +1370,79132,mindfuck,1286528135 +1370,79132,visually appealing,1286528138 +1370,80398,Jean Reno,1302890352 +1370,80398,left for dead,1302890363 +1370,80398,revenge,1302890361 +1370,80398,shooting,1302890359 +1370,80398,twist,1302890369 +1417,81591,Acting,1351489205 +1417,81591,Characters,1351489215 +1417,81591,Psychological,1351489228 +1417,81591,Twist ending,1351489192 +1456,1197,classic,1429357675 +1456,1197,fantasy,1429357655 +1456,1197,funny,1429357659 +1456,1197,modern fantasy,1429357663 +1456,1197,Quirky,1429357653 +1456,1197,whimsical,1429357671 +1456,1527,aliens,1429360777 +1456,1527,dystopia,1429360767 +1456,1527,stylized,1429360770 +1456,1527,surreal,1429360775 +1456,1527,visually appealing,1429360785 +1456,2843,gypsy,1429357448 +1456,2843,humorous,1429357451 +1456,2843,quirky,1429357437 +1456,2843,witty,1429357445 +1456,4643,sci fi,1429357875 +1456,27251,adventure,1429357744 +1456,27251,alternate reality,1429357743 +1456,27251,fantasy,1429357740 +1456,54259,adventure,1429357720 +1456,54259,comedy,1429357713 +1456,54259,fairy tale,1429357692 +1456,54259,fantasy,1429357695 +1456,54259,fantasy world,1429357688 +1456,54259,magic,1429357699 +1456,54259,romance,1429357717 +1456,54259,visually appealing,1429357705 +1456,58432,boring,1429360967 +1456,58432,plot without a clear problem to solve,1429360971 +1456,58432,unclear plot,1429360957 +1456,63433,space,1429357526 +1456,72998,futuristic,1429357902 +1456,72998,sci-fi,1429357904 +1456,77800,dark comedy,1429357491 +1456,77800,political satire,1450013966 +1456,79702,fantasy,1429396737 +1456,79702,visually appealing,1429396731 +1456,97938,cinematography,1429357818 +1456,97938,emotional,1429357803 +1456,97938,surreal,1429357808 +1456,97938,visual effects,1429357799 +1456,97938,visually appealing,1429357816 +1456,98809,adventure,1429361064 +1456,98809,beautiful scenery,1429361024 +1456,98809,fantasy,1429361030 +1456,98809,fantasy world,1429361028 +1456,98809,magic,1429361037 +1456,98809,too long,1429361050 +1456,106696,animation,1429360624 +1456,106696,beautiful,1429360619 +1456,111362,mutants,1429357939 +1456,116823,dystopia,1450014036 +1462,471,Coen Brothers,1217972654 +1462,608,quirky,1217972643 +1462,782,Baseball,1264592949 +1462,782,Stalking,1264592895 +1462,1480,Bille August,1346260460 +1462,1480,book is better than movie,1346260526 +1462,1480,McGuffin-driven plot,1346260548 +1462,2858,black comedy,1262470373 +1462,2858,Music,1262470312 +1462,2858,Poetic,1262470292 +1462,2858,Sam Mendes,1262470337 +1462,3386,politics,1220859543 +1462,3983,realistic,1417293245 +1462,5009,Muhammed Ali,1218318117 +1462,5059,Incredible life story,1262463022 +1462,5059,Survival,1262462976 +1462,5059,Werner Herzog,1262462985 +1462,5802,Peter Sellers,1228552274 +1462,6985,Dreyer,1217971577 +1462,7367,cinematography,1266178018 +1462,7367,overacting,1266178002 +1462,8922,hypnosis,1437939262 +1462,8922,lars von trier,1437939262 +1462,8922,metafiction,1437939262 +1462,31956,Ozon,1219490612 +1462,32419,eccentricity,1262462745 +1462,32419,James Spader,1262462729 +1462,32419,Paul Auster,1262462716 +1462,32419,Poker,1262462761 +1462,32943,Mike Leigh,1281900505 +1462,37733,complex characters,1266178409 +1462,37733,David Cronenberg,1266178328 +1462,37733,unpredictable,1266178432 +1462,55444,joy division,1218047225 +1462,56367,anti-abortion,1294684275 +1462,56367,comedy,1294684318 +1462,56367,excellent script,1294684298 +1462,56367,one-liners,1294684288 +1462,56367,Witty,1294684328 +1462,60766,Documentary,1281900254 +1462,60766,Obsessed protagonist,1281900232 +1462,60766,tightrope,1281900182 +1462,69134,cinematography,1262462538 +1462,69134,Lars von Trier,1262462476 +1462,69134,Loss of child,1262462476 +1462,69134,special,1262462505 +1462,69134,Strange,1262462483 +1462,69134,therapist,1262462476 +1462,69134,weird,1262462495 +1462,74510,Crime,1294684605 +1462,74510,exciting,1294684659 +1462,74510,Stieg Larsson,1294684705 +1462,78574,cinematography,1295694407 +1462,78574,realism,1295694466 +1462,78574,sound effects,1295694426 +1462,79132,Sound design,1281900023 +1462,84775,Danish,1357587049 +1462,84775,Moving,1357587070 +1480,260,classic,1428388580 +1480,260,georege lucas,1428388580 +1480,260,space opera,1428388580 +1502,4941,great soundtrack,1449595144 +1502,8914,mindfuck,1449404813 +1502,8914,time travel,1449404810 +1502,148170,foreign,1449258556 +1502,148170,humor,1449258564 +1502,148170,swiss,1449256141 +1550,110,action,1440145122 +1550,110,war,1440145132 +1550,44555,Cold War,1440352685 +1550,44555,Foreign,1440352694 +1572,260,futuristic,1435183353 +1572,260,Groundbreaking,1435183375 +1585,260,Aliens,1441731401 +1585,260,"fantasy, space battles",1441731384 +1591,260,i have bad feeling about this,1436782511 +1591,260,old,1436782503 +1592,260,scifi,1441032081 +1592,260,space,1441032093 +1608,260,classic sci-fi,1439394751 +1608,260,cult classic,1439394745 +1629,11,Aaron Sorkin,1159898993 +1629,153,franchise,1159463541 +1629,260,franchise,1159463693 +1629,329,franchise,1159462413 +1629,367,comic book,1161030088 +1629,480,franchise,1159463890 +1629,490,Aaron Sorkin,1159899030 +1629,513,George Lucas,1159208515 +1629,535,Altman,1164132639 +1629,592,franchise,1159463523 +1629,750,classic,1160596203 +1629,750,Stanley Kubrick,1160596206 +1629,888,franchise,1159462789 +1629,891,franchise,1159463321 +1629,1060,vegas,1161609884 +1629,1196,franchise,1159463705 +1629,1198,franchise,1159463841 +1629,1200,franchise,1159462726 +1629,1210,franchise,1159463707 +1629,1214,franchise,1159462716 +1629,1291,franchise,1159463822 +1629,1320,franchise,1159462729 +1629,1347,franchise,1159462561 +1629,1356,franchise,1159462409 +1629,1371,franchise,1159462425 +1629,1372,franchise,1159462404 +1629,1373,franchise,1159462398 +1629,1374,franchise,1159462429 +1629,1375,franchise,1159462388 +1629,1376,franchise,1159462393 +1629,1377,franchise,1159463547 +1629,1387,franchise,1159462505 +1629,1388,franchise,1159462508 +1629,1389,franchise,1159462512 +1629,1517,satire,1161029711 +1629,1517,Underrated,1161029706 +1629,1544,franchise,1159463896 +1629,1562,franchise,1159463528 +1629,1690,franchise,1159462722 +1629,1704,boston,1159799684 +1629,1954,franchise,1159463788 +1629,1969,franchise,1159462554 +1629,1970,franchise,1159462545 +1629,1971,franchise,1159462547 +1629,1972,franchise,1159462551 +1629,1973,franchise,1159462571 +1629,1974,franchise,1159462449 +1629,1975,franchise,1159462453 +1629,1976,franchise,1159462457 +1629,1977,franchise,1159462481 +1629,1978,franchise,1159462477 +1629,1979,franchise,1159462460 +1629,1980,franchise,1159462467 +1629,1981,franchise,1159462472 +1629,1982,franchise,1159463393 +1629,1983,franchise,1159463412 +1629,1984,franchise,1159463421 +1629,1985,franchise,1159463389 +1629,1986,franchise,1159463404 +1629,1997,franchise,1159463615 +1629,1998,franchise,1159463604 +1629,1999,franchise,1159463609 +1629,2088,Altman,1164132554 +1629,2107,franchise,1159463428 +1629,2115,franchise,1159463824 +1629,2268,Aaron Sorkin,1159899060 +1629,2289,Altman,1164132628 +1629,2294,dreamworks,1159206390 +1629,2376,franchise,1159462662 +1629,2378,franchise,1159462682 +1629,2379,franchise,1159462686 +1629,2380,franchise,1159462688 +1629,2381,franchise,1159462692 +1629,2382,franchise,1159462697 +1629,2383,franchise,1159462700 +1629,2393,franchise,1159462417 +1629,2409,franchise,1159463790 +1629,2410,franchise,1159463793 +1629,2411,franchise,1159463794 +1629,2412,franchise,1159463798 +1629,2583,Altman,1164132708 +1629,2628,franchise,1159463699 +1629,2628,Natalie Portman,1159208731 +1629,2640,franchise,1164133165 +1629,2641,franchise,1164133173 +1629,2642,franchise,1164133177 +1629,2643,franchise,1164133182 +1629,2700,satire,1161029728 +1629,2717,comedy,1161029544 +1629,2717,Ghosts,1161029549 +1629,2717,underrated,1161029574 +1629,2948,franchise,1159462610 +1629,2949,franchise,1159462612 +1629,2989,franchise,1159462624 +1629,2990,franchise,1159462645 +1629,2991,franchise,1159462633 +1629,2993,franchise,1159462615 +1629,3174,Andy Kaufman,1161029748 +1629,3174,underrated,1161029763 +1629,3181,updated classics,1159372931 +1629,3213,franchise,1159463556 +1629,3565,Natalie Portman,1159208770 +1629,3633,franchise,1159462635 +1629,3635,franchise,1159462620 +1629,3638,franchise,1159462651 +1629,3639,franchise,1159462626 +1629,3984,franchise,1159462630 +1629,4005,franchise,1159462647 +1629,4124,franchise,1159462517 +1629,4519,franchise,1159462747 +1629,4638,franchise,1159463892 +1629,4642,classic,1160498447 +1629,4642,glbt,1160498447 +1629,4642,musical,1160498447 +1629,4642,Very interesting,1160498425 +1629,4993,franchise,1159463751 +1629,5060,Altman,1164132700 +1629,5323,franchise,1159799319 +1629,5378,franchise,1159463702 +1629,5378,Natalie Portman,1159208739 +1629,5476,franchise,1159463436 +1629,5602,not coen brothers,1160059701 +1629,5602,Peter Sellers,1160059690 +1629,5673,Paul Thomas Anderson,1161029775 +1629,5673,underrated,1161029781 +1629,5691,franchise,1159894495 +1629,5782,Not Luc Besson,1160495964 +1629,5796,franchise,1159462639 +1629,5872,franchise,1159462642 +1629,5944,franchise,1159462421 +1629,5952,franchise,1159463757 +1629,6615,franchise,1159462584 +1629,6966,dark comedy,1161442676 +1629,6966,horror,1161442676 +1629,6966,superheros,1161442676 +1629,7153,franchise,1159463754 +1629,7265,eva green,1159208062 +1629,7569,franchise,1159462617 +1629,7570,franchise,1159462659 +1629,8366,pregnancy,1163435509 +1629,8387,franchise,1159462703 +1629,8725,like The Graduate only not,1170346242 +1629,8725,Phlip Roth,1170346241 +1629,8784,Natalie Portman,1159209386 +1629,8810,franchise,1159462719 +1629,8813,relationships,1161029652 +1629,8813,sad,1161029652 +1629,8813,Underrated,1161029631 +1629,8815,franchise,1159463622 +1629,8938,homosexuality,1170346190 +1629,26313,Altman,1164132716 +1629,33493,franchise,1159463697 +1629,33493,Natalie Portman,1159208748 +1629,33644,franchise,1159463629 +1629,33794,franchise,1159463534 +1629,41569,overrated,1159207590 +1629,44974,revenge,1170345726 +1629,44974,sexual abuse,1170345740 +1629,45028,Altman,1164132595 +1629,45880,biopic,1161609718 +1629,45880,Sofia Coppola,1161609772 +1629,46530,franchise,1164133221 +1629,48516,Boston,1161005562 +1629,48516,remake,1161005576 +1629,48780,magic,1162226304 +1629,49272,franchise,1164133271 +1629,49286,England,1170346170 +1629,49286,Hollywood,1170346170 +1629,49286,romantic comedy,1170346170 +1629,50274,lolita,1172546767 +1656,54286,assassins,1444636375 +1656,54286,Matt Damon,1444636369 +1660,296,action,1426361108 +1660,296,classic,1426361108 +1660,296,comedy,1426361108 +1660,318,jail,1428703922 +1660,318,philosophical,1428703922 +1660,318,purpose in life,1428703922 +1667,94466,tv series,1437669612 +1669,208,Extended edition,1264096738 +1669,293,uncut version,1317599061 +1669,541,The Final Cut,1317598021 +1669,590,extended version,1317597981 +1669,1200,special edition,1317599132 +1669,1208,Redux,1344023674 +1669,1320,special edition,1317599172 +1669,4993,extended edition,1317597740 +1669,5952,extended edition,1317597825 +1669,6157,director's cut,1317598784 +1669,7153,extended edition,1317597804 +1669,7373,director's cut,1317598453 +1669,33162,director's cut,1317597883 +1669,51540,director's cut,1317598077 +1669,60684,Ultimate Cut,1317598141 +1669,80489,extended cut,1317598243 +1669,95510,Andrew Garfield,1341692200 +1669,95510,Emma Stone,1341692206 +1675,122290,boxing,1425245832 +1675,122290,drama,1425245832 +1675,122290,mickey rourke,1425245832 +1675,123655,multiple personalities,1426171218 +1675,123655,personality disorder,1426171218 +1675,123655,psychology,1426171218 +1675,128721,drama,1424181410 +1675,128721,italian,1424181376 +1675,128721,prostitution,1424181382 +1680,4896,fairy tale,1440292092 +1680,51357,crime,1440199442 +1680,117710,murder mystery,1440292245 +1682,260,adventure,1439793224 +1682,260,sci-fi,1439793214 +1685,105,affair,1355052845 +1685,1496,tragedy,1353757963 +1685,3481,relationships,1354446232 +1685,4641,coming of age,1353707212 +1685,4641,quirky,1353707216 +1685,4641,sarcasm,1353707458 +1685,5377,based on a book,1353424907 +1685,5377,british,1353424880 +1685,5377,coming of age,1353424887 +1685,5377,romantic,1353424890 +1685,5380,based on play,1353360160 +1685,5380,british,1353360148 +1685,5380,Colin Firth,1353360143 +1685,5380,Oscar Wilde,1353360162 +1685,5380,tattoo,1353360153 +1685,6942,british,1353340555 +1685,6942,England,1353340558 +1685,6942,multiple storylines,1353340568 +1685,6942,pop music,1353340606 +1685,8533,life choices,1355052777 +1685,8533,Romance,1355052788 +1685,8644,artificial intelligence,1296431437 +1685,27815,boarding school,1297932664 +1685,27815,choir,1297932649 +1685,27815,inspiring teacher,1297932670 +1685,27815,singing,1297932678 +1685,46976,romance,1353803761 +1685,46976,surreal,1353803752 +1685,56367,Ellen Page,1354461228 +1685,56367,high school,1354461230 +1685,56367,pregnancy,1354461236 +1685,60397,Colin Firth,1353325113 +1685,60397,Meryl Streep,1353325124 +1685,60397,music:ABBA,1353325097 +1685,64622,cinematography,1353439964 +1685,64622,great acting,1353439967 +1685,64622,Holocaust,1353439983 +1685,64622,World War II,1353439999 +1685,72720,beautiful cinematography,1302368435 +1685,72720,gay,1302368440 +1685,81562,loneliness,1296431137 +1685,81562,music,1296431131 +1685,81562,true story,1296431123 +1685,82169,alternate reality,1296316143 +1685,82169,kaleidoscope,1296316187 +1685,82169,Narnia,1296316139 +1685,82767,Nicole Kidman,1296681906 +1685,94959,fantasy,1357124540 +1685,94959,grotesque,1357124548 +1685,94959,love story,1357124536 +1685,94959,quirky,1357124531 +1692,3439,"Only 2.5 stars for Vanilla Ice's ""Go Ninja"" song",1170734757 +1692,27846,Hippie Bullshit,1170820008 +1692,40629,Boring,1170820512 +1698,150,astronauts,1432846205 +1698,150,moon,1432846245 +1698,150,NASA,1432846210 +1698,150,space,1432846214 +1698,48516,corruption,1432762934 +1698,48516,Leonardo DiCaprio,1432762922 +1698,48516,organized crime,1432762927 +1698,48516,police corruption,1432762940 +1698,48516,undercover cop,1432762963 +1698,71033,excellent script,1432762079 +1698,115569,dark,1432846037 +1698,115569,gripping,1432846056 +1698,115569,Jake Gyllenhaal,1432846025 +1698,115569,journalism,1432846050 +1698,115569,satire,1432846028 +1698,115569,transformative performance,1432846066 +1698,116897,dark humor,1432760947 +1698,116897,violence,1432760952 +1715,48516,psychology,1446587348 +1715,48516,twist ending,1446587362 +1715,88129,Ryan Gosling,1446587523 +1750,260,coming of age,1441046358 +1750,260,good vs evil,1441046389 +1750,260,Science Fiction,1441046399 +1750,260,space action,1441046326 +1765,480,dinosaurs,1315806603 +1775,260,defines genre,1433894064 +1775,260,Jesus complex,1433894086 +1783,6502,zombies,1446383326 +1797,1396,computers,1391179348 +1839,260,classic sci-fi,1439756279 +1839,260,sci-fi,1439756299 +1847,260,book-based,1442854937 +1847,260,classic sci-fi,1442854948 +1847,260,fantastic,1442854926 +1848,260,dreamy,1437174985 +1848,260,epic,1437174985 +1848,260,scifi cult,1437174985 +1848,356,chocolate,1437793282 +1848,356,iconic,1437793282 +1848,356,tom hanks,1437793282 +1870,72998,123,1399947763 +1877,260,space adventure,1440272100 +1877,260,the classic sci fi movie. must see.,1440272090 +1907,7361,comedy,1330283911 +1907,7361,Jim Carrey,1330283671 +1907,7361,quirky,1330283876 +1907,7361,romance,1330283918 +1907,7361,sci-fi,1330283923 +1907,7361,surreal,1330283787 +1907,7361,thought-provoking,1330283932 +1907,26702,Direction,1330284371 +1907,26702,slow,1330284425 +1907,26702,small town,1330284386 +1907,26702,weird,1330284343 +1907,69526,absurd,1330285319 +1907,69526,action,1330285154 +1907,69526,ambition,1330286511 +1907,69526,cinematography,1330285319 +1907,69526,comedy,1330285173 +1907,69526,direction,1330285319 +1907,69526,epic,1330285319 +1907,69526,explosions,1330285319 +1907,69526,long,1330285161 +1907,69526,loud,1330285319 +1907,69526,michael bay,1330285319 +1907,69526,plot holes,1330285159 +1907,69526,ridiculous,1330285163 +1907,69526,robots,1330285150 +1907,69526,screenplay,1330285319 +1907,69526,shiny,1330285319 +1907,69526,silly,1330285156 +1907,69526,soundscape,1330285319 +1907,69526,surreal,1330285319 +1907,72129,action,1330285070 +1907,72129,ambition,1330285006 +1907,72129,comedy,1330285006 +1907,72129,complex,1330286161 +1907,72129,direction,1330285006 +1907,72129,drama,1330285006 +1907,72129,gore,1330285006 +1907,72129,score,1330285039 +1907,72129,screenplay,1330285005 +1907,74754,absurd,1330286460 +1907,74754,acting,1330284444 +1907,74754,ambition,1330284480 +1907,74754,broken english,1330285701 +1907,74754,characters,1330284739 +1907,74754,cinematography,1330284448 +1907,74754,comedy,1330284766 +1907,74754,Deep,1330284529 +1907,74754,dialogue,1330284498 +1907,74754,flabby ass,1330284453 +1907,74754,Greg Sestero,1330284458 +1907,74754,melodramatic,1330284461 +1907,74754,nonsensical,1330284577 +1907,74754,profound,1330284529 +1907,74754,psychological,1330284726 +1907,74754,quotable,1330284573 +1907,74754,score,1330285599 +1907,74754,screenplay,1330285691 +1907,74754,Tommy Wiseau,1330284543 +1907,76093,cute,1330284220 +1907,76093,dragons,1330284186 +1907,76093,flying,1330284189 +1907,76093,predictable,1330284182 +1907,79132,ambition,1330285456 +1907,79132,complex,1330285527 +1907,79132,deep,1330285455 +1907,79132,epic,1330285555 +1907,79132,heist,1330285423 +1907,79132,Leonardo DiCaprio,1330285424 +1907,79132,original,1330285466 +1907,79132,score,1330285565 +1907,79132,screenplay,1330285455 +1907,79132,surreal,1330285427 +1907,80615,battles,1330284019 +1907,80615,cinematography,1330286247 +1907,80615,cute,1330284055 +1907,80615,direction,1330286323 +1907,80615,flying,1330284013 +1907,80615,weak story,1330286288 +1907,80615,Zack Snyder,1330284007 +1907,81229,action,1330284898 +1907,81229,aging,1330284899 +1907,81229,comedy,1330284901 +1907,85414,acting,1330205994 +1907,85414,cheerful,1330206359 +1907,85414,cinematography,1330286090 +1907,85414,colorful,1330205994 +1907,85414,colourful,1330205994 +1907,85414,direction,1330286090 +1907,85414,exceptional acting,1330206241 +1907,85414,happy,1330205994 +1907,85414,happy ending,1330206241 +1907,85414,joyful,1330206359 +1907,85414,romance,1330206241 +1907,85414,stylized,1330206241 +1907,88129,acting,1330285931 +1907,88129,atmospheric,1330285853 +1907,88129,car chase,1330285850 +1907,88129,cars,1330285852 +1907,88129,cinematography,1330285848 +1907,88129,direction,1330285937 +1907,88129,feel-good,1330285981 +1907,88129,heist,1330285860 +1907,88129,ryan gosling,1330285865 +1907,88129,score,1330285880 +1907,88129,violence,1330285867 +1930,260,Boring,1436384478 +1930,260,too long,1436384490 +1937,260,jedi,1435885371 +1937,260,space,1435885353 +1950,153,super-hero,1137179135 +1950,592,super-hero,1137179132 +1950,1377,super-hero,1137179137 +1950,1562,super-hero,1137179133 +1950,2302,courtroom,1137179309 +1950,2640,super-hero,1137179199 +1950,2641,super-hero,1137179201 +1950,2642,super-hero,1137179202 +1950,2643,super-hero,1137179205 +1950,3213,super-hero,1137179138 +1950,5008,courtroom,1137179404 +1950,6534,super-hero,1137179284 +1950,6932,journalism,1139797393 +1950,26152,super-hero,1137179130 +1950,32582,bird,1139636140 +1950,32582,san francisco,1139636140 +1950,33794,super-hero,1137179135 +1950,39292,historical,1139797007 +1950,39292,journalism,1139797007 +1950,39292,television,1139797007 +1950,42718,martial-arts,1152069046 +1950,44191,based-comic-book,1143095817 +1950,53464,based on comic book,1181964285 +1950,53464,superheroes,1181964285 +1950,57640,comic book,1215863584 +1950,57640,superhero,1215863584 +1975,36529,lots of guns,1182951446 +1979,161,discipline,1441555885 +1979,161,history,1441555904 +1979,161,nuclear,1441555913 +1979,161,war,1441555910 +1979,260,entertaining,1441552853 +1979,260,sci-fi,1441552828 +1979,4995,based on a true story,1441554234 +1979,4995,inspirational,1441554225 +1979,4995,intelligent,1441554231 +1979,4995,Jennifer Connelly,1441554267 +1979,4995,mathematics,1441554229 +1979,4995,Oscar (Best Supporting Actress),1441554265 +1979,4995,Oscar Winner,1441554262 +1979,4995,romance,1441554243 +1979,4995,Russell Crowe,1441554240 +1979,4995,true story,1441554227 +1979,4995,twist ending,1441554256 +1979,7143,Honor,1441552982 +1979,7143,Ken Watanabe,1441553009 +1979,7143,martial arts,1441553019 +1979,7143,New Zealand,1441553012 +1979,7143,rebellion,1441552972 +1979,33660,boxing,1441556010 +1979,33660,boxing drama,1441556008 +1979,33660,childhood,1441556002 +1979,33660,great depression,1441556013 +1979,33660,inspirational,1441555996 +1979,33660,radio,1441556025 +1979,33660,true story,1441555998 +1979,55765,corruption,1441555966 +1979,55765,Denzel Washington,1441555957 +1979,55765,justice,1441555977 +1979,55765,Ridley Scott,1441555970 +1979,55765,Russell Crowe,1441555961 +1983,4226,reverse timeline,1443374547 +1983,27904,drawing,1443374629 +1999,4993,epic,1436311529 +1999,4993,fantasy,1436311501 +1999,4993,mythology,1436311518 +2001,597,seen more than once,1168113936 +2001,1101,seen more than once,1168369217 +2001,1610,seen more than once,1168504836 +2001,3717,seen more than once,1168368996 +2001,27020,models,1168112942 +2003,4963,con men,1453094250 +2003,4963,feel good movie,1453094246 +2003,4963,heist,1453094244 +2003,4963,witty,1453094253 +2003,44199,great ending,1453094145 +2003,44199,intelligent thriller,1453094132 +2003,44199,twist ending,1453094131 +2003,68954,adventure,1453093555 +2003,68954,animation,1453093561 +2003,68954,Pixar,1453093554 +2003,72011,Anna Kendrick,1453093976 +2003,72011,cynicism,1453093979 +2003,72011,thoughtful,1453093984 +2003,105504,suspense,1453094055 +2003,105504,tense,1453094066 +2003,105504,true story,1453094063 +2003,134853,Animation,1453093524 +2003,134853,coming of age,1453093530 +2003,134853,Pixar,1453093513 +2003,134853,psychology,1453093519 +2070,953,AFI 100,1289441107 +2070,953,imdb top 250,1289441101 +2070,953,sentimental,1289441090 +2070,4880,touching,1289441705 +2070,8638,emotional,1289441368 +2070,8638,great dialogue,1289441352 +2070,8638,minimalist,1289441372 +2070,53123,beautiful,1289441664 +2070,53123,bittersweet,1289441652 +2070,53123,wired 50 greatest soundtracks,1289441659 +2078,296,non-aristotelian,1437858767 +2078,296,non-linear,1437858767 +2078,296,ontology,1437858767 +2078,3000,adventure,1307700458 +2078,3000,anime,1307700435 +2078,3000,anti-war,1307700438 +2078,3000,atmospheric,1307700440 +2078,3000,dystopia,1307700426 +2078,3000,fantasy,1307700412 +2078,3000,fantasy world,1307700452 +2078,3000,Studio Ghibli,1307700452 +2078,5618,alternate reality,1307876927 +2078,5618,beautiful,1307876932 +2078,5618,environmental,1307876935 +2078,80969,atmosphere,1307701308 +2078,80969,atmospheric,1307701311 +2078,80969,emotional,1307701302 +2078,80969,great concept,1307701375 +2078,80969,love story,1307701335 +2078,80969,sad,1307701332 +2078,80969,thought-provoking,1307701320 +2078,92420,Beautifully Clever use of Camera,1392601657 +2078,92420,Brilliant,1392601637 +2078,109187,meaning of life,1437858824 +2078,109187,surreal,1437858830 +2078,109187,visually appealing,1437858857 +2078,115713,artificial intelligence,1440269897 +2078,115713,robots,1440269915 +2078,115713,sci-fi,1440269889 +2078,115713,technology,1440269908 +2086,52604,action,1292529164 +2086,52604,Generation X,1292529152 +2086,52604,godfather,1292529226 +2086,52604,guy ritchie style,1292529152 +2086,52604,Latin films,1292529167 +2086,52604,Musicals,1292529167 +2086,52604,Sci fi,1292529152 +2086,52604,sexuality,1292529164 +2086,52604,Violence,1292529164 +2111,19,crazy,1152630197 +2153,47610,19th century,1368163072 +2153,47610,predictable,1368163085 +2153,47610,surprise ending,1368163111 +2153,47610,twist ending,1368163106 +2153,72249,Period piece,1281319489 +2158,138610,found footage,1436827601 +2158,138610,survival horror,1436827612 +2160,260,loved it,1442947599 +2161,260,Star Wars,1437052937 +2164,49037,coming of age,1288639209 +2169,293,assassin,1415054597 +2169,293,hitman,1415054603 +2169,293,Jean Reno,1415054593 +2169,293,Natalie Portman,1415054596 +2169,1203,good dialogue,1414570875 +2169,1203,low budget,1414570888 +2169,1203,thought-provoking,1414570884 +2169,1204,atmospheric,1423126284 +2169,1204,desert,1423126293 +2169,1204,epic,1423126298 +2169,80693,coming of age,1436700754 +2169,80693,mental illness,1436700743 +2169,80693,Zach Galifianakis,1436700743 +2169,102903,plot,1436891058 +2169,102903,stupid ending,1436891068 +2169,102903,surprise ending,1436891065 +2169,105355,slow,1416873080 +2169,105355,too long,1416873073 +2169,112556,David Fincher,1420894689 +2169,112556,Predictable Twist,1420894669 +2169,115210,David Ayer,1436712329 +2169,115210,good first half,1436712344 +2169,115210,realistic,1436712297 +2169,115210,tanks,1436712308 +2169,115210,war hero,1436712312 +2169,115569,dark,1426183714 +2169,115569,Jake Gyllenhaal,1426183709 +2169,115569,satire,1426183712 +2169,115569,sociopath,1426183706 +2171,260,"sci-fi, future , fantasy",1443578609 +2171,260,space adventure,1443578616 +2173,1120,how world works,1188452183 +2173,1729,contemplative,1188452174 +2173,1729,crimial,1188452174 +2173,1729,good sound,1188452174 +2173,1729,plan,1188452174 +2173,1747,good idea,1188452210 +2173,1747,how world works,1188452210 +2173,3911,bad idea,1188452189 +2173,4011,criminal,1188452279 +2173,4011,ohuevanie,1188452289 +2173,4011,plan,1188452266 +2173,5377,inrtavert,1188451947 +2173,5388,detective,1188452103 +2173,5388,plan,1188452111 +2173,52717,bad realisation,1188452349 +2173,52717,good idea,1188452349 +2178,260,sci-fi,1442047220 +2184,61646,movie to see,1221656132 +2184,61646,Nudity (Topless),1221903498 +2184,61646,pregnancy,1221903571 +2191,59369,action,1318134264 +2191,59369,fight scenes,1318134271 +2191,59369,Liam Neeson,1318134266 +2191,59369,thriller,1318134268 +2191,81270,horror,1434684831 +2191,81270,supernatural,1434684831 +2191,81270,teen,1434684831 +2206,2182,but not seen,1196957895 +2206,2182,Have,1196957895 +2206,5333,Have but not seen,1196958832 +2206,5560,Have but not seen,1196958843 +2206,7919,Have but not seen,1196958934 +2206,25995,Have but not seen,1196958795 +2225,4995,genius,1263406556 +2253,296,drugs,1438083220 +2253,296,quentin tarantino,1438083220 +2253,296,splatter,1438083220 +2270,56367,notable soundtrack,1203395412 +2270,68358,alternate reality,1242340038 +2270,127112,flight of the condords,1433884099 +2270,127112,napoleon dynamite,1433884099 +2270,127112,sundance,1433884099 +2272,954,James Stewart,1322798151 +2272,964,John Wayne,1322797913 +2272,3487,John Wayne,1322797519 +2272,4323,John Wayne,1322797818 +2272,7617,John Wayne,1322797894 +2272,55926,John Wayne,1322798007 +2272,72982,New World,1322798751 +2272,72998,New World,1322798996 +2295,2001,action,1162687374 +2295,2001,Mel Gibson,1162687369 +2295,48385,Male nudity,1169408263 +2313,260,"action, scifi",1431941770 +2333,1199,Encrypted Views,1390314292 +2340,6,ClearPlay,1194268575 +2340,6,R,1194268575 +2340,32,ClearPlay,1193851007 +2340,32,R,1193851007 +2340,45,ClearPlay,1191844461 +2340,45,R,1191844461 +2340,47,ClearPlay,1179748199 +2340,47,R,1179748199 +2340,50,ClearPlay,1179748609 +2340,50,R,1179748609 +2340,161,ClearPlay,1179748856 +2340,161,R,1179748856 +2340,164,R,1183640776 +2340,180,ClearPlay,1179748105 +2340,180,R,1179748105 +2340,188,ClearPlay,1249647179 +2340,188,R,1249647179 +2340,215,ClearPlay,1179745946 +2340,215,R,1179745946 +2340,249,R,1194268587 +2340,380,ClearPlay,1179748522 +2340,380,James Cameron,1179748524 +2340,380,R,1179748522 +2340,431,R,1183640728 +2340,509,ClearPlay,1185288867 +2340,509,R,1185288867 +2340,553,ClearPlay,1179748463 +2340,553,R,1179748463 +2340,608,ClearPlay,1204645689 +2340,608,R,1204641752 +2340,733,ClearPlay,1185566282 +2340,733,R,1185566282 +2340,784,Comedy,1173214107 +2340,832,ClearPlay,1179749104 +2340,832,R,1179749104 +2340,1061,ClearPlay,1179748274 +2340,1061,R,1179748274 +2340,1183,Nudity (Full Frontal - Notable),1173213708 +2340,1183,Ralph Fiennes,1173213706 +2340,1249,ClearPlay,1188403230 +2340,1249,R,1188403230 +2340,1358,billy bob thorton,1173213814 +2340,1358,ClearPlay,1179748294 +2340,1358,R,1179748294 +2340,1587,ClearPlay,1208863246 +2340,1587,R,1208863246 +2340,1597,ClearPlay,1179746094 +2340,1597,R,1179746094 +2340,1617,ClearPlay,1179748014 +2340,1617,R,1179748014 +2340,1704,ClearPlay,1179747794 +2340,1704,R,1179747794 +2340,1791,ClearPlay,1249647198 +2340,1791,R,1249647198 +2340,1876,catastrophe,1213728333 +2340,1876,disaster,1213728332 +2340,1876,space,1213728335 +2340,1921,ClearPlay,1179746587 +2340,1921,R,1179746587 +2340,2128,ClearPlay,1230087756 +2340,2128,R,1230087756 +2340,2194,ClearPlay,1179748603 +2340,2194,R,1179748603 +2340,2300,Below R,1204641909 +2340,2300,Gene Wilder,1173213782 +2340,2300,Mel Brooks,1173213783 +2340,2312,ClearPlay,1200686689 +2340,2312,R,1200686689 +2340,2333,ClearPlay,1230087348 +2340,2333,R,1230087348 +2340,2334,ClearPlay,1179748254 +2340,2334,R,1179748254 +2340,2353,ClearPlay,1179747634 +2340,2353,R,1179747634 +2340,2396,ClearPlay,1179748216 +2340,2396,R,1179748216 +2340,2490,ClearPlay,1179749114 +2340,2490,R,1179749114 +2340,2541,ClearPlay,1179747414 +2340,2541,R,1179747414 +2340,2541,Ryan Philippe,1179747417 +2340,2707,ClearPlay,1179747089 +2340,2707,R,1179747089 +2340,2763,ClearPlay,1179748442 +2340,2763,R,1179748442 +2340,2881,ClearPlay,1179748912 +2340,2881,R,1179748912 +2340,2890,ClearPlay,1179748453 +2340,2890,R,1179748453 +2340,2959,ClearPlay,1194268536 +2340,2959,R,1194268536 +2340,3176,disturbing,1173213961 +2340,3176,psychology,1173213959 +2340,3246,Below R,1211476305 +2340,3316,ClearPlay,1212700894 +2340,3316,R,1212700894 +2340,3408,inspired by a real-life person,1173214177 +2340,3408,Julia Roberts,1173214189 +2340,3408,Oscar (Best Actress),1173214198 +2340,3408,true story,1173214201 +2340,3556,ClearPlay,1230087363 +2340,3556,R,1230087363 +2340,3691,Nudity (Full Frontal - Notable),1173213188 +2340,3751,Below R,1204641696 +2340,3751,Nick Park,1179746055 +2340,3979,Adam Sandler,1173214100 +2340,3979,DVD,1173214097 +2340,3979,snl alums,1173214099 +2340,3989,R,1207655063 +2340,3996,Below R,1204641705 +2340,3996,Chow Yun Fat,1173213695 +2340,3998,ClearPlay,1179749096 +2340,3998,R,1179749096 +2340,4029,ClearPlay,1249646618 +2340,4029,R,1249646618 +2340,4034,ClearPlay,1179748476 +2340,4034,R,1179748476 +2340,4086,ClearPlay,1191844385 +2340,4086,R,1191844385 +2340,4103,Below R,1204641723 +2340,4148,CANNIBALS,1173213891 +2340,4148,ClearPlay,1179746363 +2340,4148,R,1179746363 +2340,4161,ClearPlay,1179748143 +2340,4161,R,1179748143 +2340,4223,ClearPlay,1179747631 +2340,4223,R,1179747631 +2340,4225,australian,1173213701 +2340,4225,Below R,1204641712 +2340,4225,comedy,1173213702 +2340,4225,PG-13,1204641714 +2340,4226,ClearPlay,1179749038 +2340,4226,R,1179749038 +2340,4231,Below R,1204643443 +2340,4234,ClearPlay,1179748400 +2340,4234,R,1179748400 +2340,4304,R,1204641991 +2340,4310,Below R,1204642928 +2340,4310,History,1173214012 +2340,4344,ClearPlay,1179748379 +2340,4344,R,1179748379 +2340,4468,Argentina,1173213179 +2340,4468,Buenos Aires,1173213181 +2340,4479,ClearPlay,1188217649 +2340,4479,R,1188217649 +2340,4639,Below R,1204643453 +2340,4641,ClearPlay,1204645703 +2340,4641,R,1204641780 +2340,4641,thora birch,1173213732 +2340,4701,action,1173213898 +2340,4701,Below R,1204642722 +2340,4701,Brett Ratner,1173213897 +2340,4701,Jackie Chan,1173213896 +2340,4776,bad guy good,1173213839 +2340,4776,ClearPlay,1179748493 +2340,4776,denzel washington,1174391810 +2340,4776,Notable Nudity,1174391821 +2340,4776,Nudity (Topless - Brief),1173213840 +2340,4776,Oscar (Best Actor),1173213836 +2340,4776,R,1179748493 +2340,4814,ClearPlay,1179746127 +2340,4814,R,1179746127 +2340,4880,ClearPlay,1179746479 +2340,4880,Nudity (Topless - Brief),1173213750 +2340,4880,R,1179746479 +2340,4901,ClearPlay,1179748334 +2340,4901,R,1179748334 +2340,4973,ClearPlay,1193672040 +2340,4973,fanciful,1173213550 +2340,4973,R,1193672044 +2340,4975,ClearPlay,1179748633 +2340,4975,R,1179748633 +2340,5009,ClearPlay,1179747030 +2340,5009,R,1179747030 +2340,5009,Will Smith,1179747032 +2340,5014,Beatles soundtrack,1173213904 +2340,5014,Below R,1204642728 +2340,5014,psychology,1173213902 +2340,5107,ClearPlay,1179747817 +2340,5107,R,1179747817 +2340,5184,ClearPlay,1230087275 +2340,5184,R,1230087275 +2340,5219,ClearPlay,1200686805 +2340,5219,R,1200686805 +2340,5316,ClearPlay,1179747681 +2340,5316,R,1179747681 +2340,5380,Below R,1204641818 +2340,5437,Below R,1204642759 +2340,5449,Below R,1204643517 +2340,5460,Below R,1204643497 +2340,5630,ClearPlay,1179746609 +2340,5630,Nudity (Topless - Brief),1173213792 +2340,5630,R,1179746608 +2340,5630,Ralph Fiennes,1173213793 +2340,5873,Below R,1204642708 +2340,5903,Christian Bale,1185567374 +2340,5903,ClearPlay,1185567359 +2340,5903,R,1185567359 +2340,5956,ClearPlay,1179746309 +2340,5956,Martin Scorsese,1173213930 +2340,5956,Nudity (Topless - Brief),1173213928 +2340,5956,R,1179746309 +2340,6062,R,1204641871 +2340,6315,ClearPlay,1249646857 +2340,6315,R,1249646857 +2340,6330,R,1204643495 +2340,6374,Below R,1206460010 +2340,6374,remake,1173213974 +2340,6764,Below R,1204642800 +2340,6764,Russia,1173213908 +2340,6764,The Rock,1173213910 +2340,6768,Below R,1204641884 +2340,6768,Lutheran,1173213582 +2340,6768,reformation,1173213581 +2340,6787,ClearPlay,1179745619 +2340,6787,History,1179745619 +2340,6787,PG,1179745619 +2340,6787,politics,1179745619 +2340,6936,Christmas,1173213612 +2340,6936,New York,1173213610 +2340,6942,ClearPlay,1179747985 +2340,6942,R,1179747985 +2340,7147,Below R,1204641665 +2340,7324,Below R,1204642739 +2340,7324,horses,1173213593 +2340,7324,Viggo Mortensen,1173213595 +2340,7348,ClearPlay,1179748319 +2340,7348,R,1179748319 +2340,7360,ClearPlay,1216661238 +2340,7360,R,1216661238 +2340,7361,ClearPlay,1179747702 +2340,7361,R,1179747701 +2340,7377,ClearPlay,1179746780 +2340,7377,Kevin Spacey,1173213883 +2340,7377,R,1179746780 +2340,7445,ClearPlay,1179748117 +2340,7445,R,1179748117 +2340,7458,ClearPlay,1179748507 +2340,7458,R,1179748507 +2340,7775,R,1206463528 +2340,7827,ClearPlay,1179747464 +2340,7827,R,1179747464 +2340,8132,dvd,1173214292 +2340,8369,ClearPlay,1179746539 +2340,8369,R,1179746539 +2340,8373,Below R,1204643505 +2340,8528,Below R,1204642803 +2340,8528,Las Vegas,1173213916 +2340,8638,ClearPlay,1179745950 +2340,8638,R,1179745950 +2340,8831,ClearPlay,1179746732 +2340,8831,R,1179746732 +2340,8836,Below R,1204642960 +2340,8862,ClearPlay,1182257008 +2340,8862,R,1179768517 +2340,8865,Below R,1212407358 +2340,8915,ClearPlay,1179748345 +2340,8915,R,1179748345 +2340,8917,politics,1173213826 +2340,8917,Trey Parker,1173213828 +2340,8943,R,1206462007 +2340,8948,ClearPlay,1179747014 +2340,8948,R,1179747014 +2340,8950,ClearPlay,1179748087 +2340,8950,R,1179748086 +2340,8969,ClearPlay,1179746006 +2340,8969,Colin Firth,1173213994 +2340,8969,Hugh Grant,1173213996 +2340,8969,R,1179746006 +2340,8977,ClearPlay,1179745535 +2340,8977,Colin Farrell,1173213966 +2340,8977,History,1179745597 +2340,8977,R,1179745597 +2340,8982,Below R,1204641497 +2340,27721,ClearPlay,1179746801 +2340,27721,R,1179746801 +2340,27788,ClearPlay,1179747940 +2340,27788,R,1179747940 +2340,27904,based on a book,1173213797 +2340,27904,ClearPlay,1179746660 +2340,27904,Keanu Reeves,1173213796 +2340,27904,R,1179746660 +2340,30707,Below R,1204641904 +2340,30707,female athletes,1173213775 +2340,30707,Oscar (Best Supporting Actor),1173213774 +2340,30749,factual,1173213560 +2340,30749,history,1173213558 +2340,30793,Below R,1204642818 +2340,30793,Children,1173213675 +2340,30846,naomi watts,1173213621 +2340,30846,sean penn,1173213623 +2340,30850,based on a book,1173213770 +2340,30850,ClearPlay,1179746525 +2340,30850,cross-dressing women,1173213768 +2340,30850,R,1179746525 +2340,30850,Shakespeare,1173213761 +2340,32587,Benicio Del Toro,1173213807 +2340,32587,R,1179746697 +2340,32587,super-hero,1173213809 +2340,33004,based on a book,1173213919 +2340,33004,Below R,1204642809 +2340,33154,ClearPlay,1179746184 +2340,33154,Houston,1173213713 +2340,33154,R,1179746184 +2340,33154,scandal,1173213715 +2340,33162,ClearPlay,1179746453 +2340,33162,crusades,1173213606 +2340,33162,History,1179746453 +2340,33162,Jerusalem,1173213607 +2340,33162,R,1179746453 +2340,33166,ClearPlay,1179747383 +2340,33166,R,1179747383 +2340,33660,true story,1173213690 +2340,33819,R,1179768766 +2340,34162,ClearPlay,1179748666 +2340,34162,R,1179748666 +2340,36517,ClearPlay,1179747357 +2340,36517,R,1179747357 +2340,36527,Below R,1204641919 +2340,36527,PG-13,1173213786 +2340,37382,inspired by a real-life person,1173214015 +2340,37382,Keira Knightley,1173214017 +2340,37386,Below R,1204642950 +2340,37386,ClearPlay,1179745589 +2340,37386,lone hero,1173214006 +2340,37386,PG-13,1179745589 +2340,38038,Below R,1204642508 +2340,38038,Oscar (Best Animated Feature),1173213855 +2340,38061,R,1179768022 +2340,38798,Below R,1204641834 +2340,38798,PG13,1204641835 +2340,38992,ClearPlay,1179748551 +2340,38992,R,1179748551 +2340,39231,Below R,1204643472 +2340,39427,ClearPlay,1179749157 +2340,39427,R,1179749157 +2340,39435,Antonio Banderas,1173213980 +2340,39435,Below R,1204642969 +2340,39444,ClearPlay,1179746845 +2340,39444,dystunctional family,1173213963 +2340,39444,R,1179746845 +2340,40955,R,1179768594 +2340,40959,ClearPlay,1179746421 +2340,40959,R,1179746421 +2340,41025,Below R,1204642841 +2340,41285,London,1173213757 +2340,41285,love affair,1173213755 +2340,41769,Below R,1206462866 +2340,41997,ClearPlay,1179748164 +2340,41997,R,1179748164 +2340,41997,Steven Spielberg,1172582251 +2340,42015,ClearPlay,1179747316 +2340,42015,R,1179747316 +2340,43914,R,1179767461 +2340,43928,Below R,1204642904 +2340,44189,ClearPlay,1179747108 +2340,44189,R,1179747108 +2340,44191,ClearPlay,1179746797 +2340,44191,R,1179746797 +2340,44191,super-hero,1173213844 +2340,44195,cigarettes,1173213830 +2340,44195,ClearPlay,1179748421 +2340,44195,R,1179748421 +2340,44197,ClearPlay,1182256958 +2340,44197,R,1179767455 +2340,44555,ClearPlay,1188403259 +2340,44555,R,1188403259 +2340,44665,ClearPlay,1179748068 +2340,44665,R,1179748068 +2340,44761,drugs,1166200319 +2340,44761,film noir,1166200314 +2340,44761,high school,1166200316 +2340,44849,ClearPlay,1212700881 +2340,44849,R,1212700881 +2340,44929,Nudity (Topless),1173214308 +2340,44929,R,1204641671 +2340,45106,Below R,1204643513 +2340,45106,comedy,1173213991 +2340,45106,Hugh Grant,1173213990 +2340,45210,ClearPlay,1179748587 +2340,45210,R,1179748587 +2340,45431,Below R,1204641553 +2340,45431,Ben Folds,1173213888 +2340,45431,Bruce Willis,1173213886 +2340,45440,R,1204643482 +2340,45442,Below R,1204642907 +2340,45447,ClearPlay,1249646478 +2340,45447,R,1249646478 +2340,45501,Below R,1204643465 +2340,45517,Pixar,1173213660 +2340,45720,Below R,1204642807 +2340,45720,Meryl Streep,1173213925 +2340,45720,New York,1173213923 +2340,45928,Below R,1207655100 +2340,46723,ClearPlay,1179745915 +2340,46723,Nudity (Full Frontal),1173213245 +2340,46723,R,1179745915 +2340,46850,Below R,1204642543 +2340,46850,PG,1204642518 +2340,46965,Snakes,1173213250 +2340,46970,Below R,1204642768 +2340,46976,writing,1173213821 +2340,47044,ClearPlay,1179746531 +2340,47044,R,1179746531 +2340,47099,Below R,1204641931 +2340,47200,adrenaline junkie,1173213869 +2340,47200,Los Angeles,1173213872 +2340,47200,R,1204642695 +2340,47200,videogame like,1173213871 +2340,47261,ClearPlay,1179746559 +2340,47261,R,1179746559 +2340,47261,radio,1173213863 +2340,47423,Addiction,1173213742 +2340,47423,R,1204641805 +2340,47518,Below R,1204642684 +2340,47629,Below R,1204641940 +2340,47644,Below R,1204641535 +2340,47644,PG,1173213564 +2340,47644,Philadelphia,1173213566 +2340,47644,true story,1173213257 +2340,47644,underdog,1173213256 +2340,47950,Ben Affleck,1173213938 +2340,47950,ClearPlay,1179746384 +2340,47950,R,1179746384 +2340,47978,ClearPlay,1200687225 +2340,47978,R,1200687225 +2340,48082,ClearPlay,1179746678 +2340,48082,R,1179746678 +2340,48142,1940's,1173213193 +2340,48142,Brian DePalma,1173213191 +2340,48142,ClearPlay,1179745960 +2340,48142,R,1179745960 +2340,48304,ClearPlay,1180448425 +2340,48304,R,1180448425 +2340,48385,ClearPlay,1179745984 +2340,48385,R,1179745984 +2340,48516,gangsters,1173213548 +2340,48516,R,1182257040 +2340,48516,remake,1173214345 +2340,48516,violence,1173214347 +2340,48560,ClearPlay,1179746643 +2340,48560,R,1179746643 +2340,48593,election,1173213266 +2340,48593,politics,1173213531 +2340,48593,president,1173213529 +2340,48593,Robin Williams,1173213267 +2340,48598,Sigourney Weaver,1171388382 +2340,48598,Truman Capote,1171388382 +2340,48696,ClearPlay,1179746484 +2340,48696,R,1179746484 +2340,48738,ClearPlay,1204645769 +2340,48738,R,1204645769 +2340,48774,ClearPlay,1179746043 +2340,48774,R,1179746043 +2340,48780,Scarlet Johannson,1173189399 +2340,48783,ClearPlay,1179746294 +2340,48783,Clint Eastwood,1173213587 +2340,48783,R,1179746294 +2340,48783,Ryan Phillippe,1173213589 +2340,48883,ClearPlay,1179747542 +2340,48883,R,1179747542 +2340,48982,Below R,1204641762 +2340,48982,Dreamworks,1173213170 +2340,48997,ClearPlay,1185566163 +2340,48997,R,1185566163 +2340,49130,Below R,1204642658 +2340,49205,Sarah Michelle Gellar,1173213152 +2340,49220,mockumentary,1173213166 +2340,49272,England,1173213666 +2340,49272,London,1173213669 +2340,49272,spies,1173213667 +2340,49278,Denzel Washington,1173213575 +2340,49278,PG13,1180448477 +2340,49278,sci-fi,1180448480 +2340,49278,time,1180448482 +2340,49280,ClearPlay,1179745974 +2340,49280,R,1179745974 +2340,49284,ClearPlay,1182256936 +2340,49284,R,1180448543 +2340,49286,Below R,1204642667 +2340,49314,Christian Bale,1173213935 +2340,49314,R,1204642933 +2340,49347,ClearPlay,1179746287 +2340,49347,R,1179746287 +2340,49396,Jack Black,1173213155 +2340,49396,R,1179746762 +2340,49396,rock and roll,1173213880 +2340,49530,ClearPlay,1179745964 +2340,49530,London,1173213653 +2340,49530,R,1179745964 +2340,49793,Below R,1207654975 +2340,49822,Bay of Pigs,1173213737 +2340,49822,ClearPlay,1179746334 +2340,49822,History,1179746334 +2340,49822,R,1179746334 +2340,49910,Below R,1204641765 +2340,49910,PG-13,1179767475 +2340,50064,ClearPlay,1180448401 +2340,50064,R,1179768757 +2340,50147,ClearPlay,1249646742 +2340,50147,R,1249646742 +2340,50151,ClearPlay,1193242000 +2340,50274,ClearPlay,1180448360 +2340,50274,R,1180448350 +2340,50442,R,1179745636 +2340,50685,PG-13,1197384500 +2340,50794,ClearPlay,1179746703 +2340,50794,R,1179746703 +2340,51080,PG13,1180448832 +2340,51086,ClearPlay,1185566187 +2340,51086,R,1185566187 +2340,51255,ClearPlay,1188217460 +2340,51255,R,1188217460 +2340,51412,Below R,1204642608 +2340,51418,ClearPlay,1179747252 +2340,51418,R,1179747252 +2340,51540,ClearPlay,1185566256 +2340,51540,R,1185566256 +2340,51662,ClearPlay,1188217386 +2340,51662,R,1188217386 +2340,51709,ClearPlay,1185566311 +2340,51709,R,1185566311 +2340,51903,ClearPlay,1188217513 +2340,51903,R,1188217513 +2340,51931,ClearPlay,1192447223 +2340,51931,R,1179746624 +2340,51935,ClearPlay,1183655496 +2340,51935,R,1182889042 +2340,51939,Below R,1204643457 +2340,52241,ClearPlay,1188217573 +2340,52241,R,1188217574 +2340,52328,ClearPlay,1200686899 +2340,52328,R,1200686899 +2340,52375,ClearPlay,1193241851 +2340,52375,R,1197384515 +2340,52456,ClearPlay,1188217677 +2340,52456,R,1188217677 +2340,52460,ClearPlay,1188217437 +2340,52460,R,1188217437 +2340,52591,ClearPlay,1217934030 +2340,52591,R,1217933994 +2340,52604,ClearPlay,1188217602 +2340,52604,R,1188217602 +2340,52644,ClearPlay,1191844350 +2340,52644,R,1191844351 +2340,52722,Below R,1204642585 +2340,52722,PG-13,1204642586 +2340,52973,ClearPlay,1204645750 +2340,52973,R,1197384457 +2340,53000,ClearPlay,1193241722 +2340,53002,ClearPlay,1191844514 +2340,53002,R,1191844514 +2340,53121,Below R,1204642675 +2340,53123,ClearPlay,1198243839 +2340,53123,R,1198243839 +2340,53127,ClearPlay,1191844687 +2340,53127,R,1191844687 +2340,53129,ClearPlay,1193241925 +2340,53129,R,1193241925 +2340,53189,ClearPlay,1203087007 +2340,53189,R,1203087007 +2340,53207,ClearPlay,1230086923 +2340,53207,R,1204641229 +2340,53322,Below R,1204642890 +2340,53460,Below R,1204641530 +2340,53468,ClearPlay,1193849233 +2340,53468,R,1193849233 +2340,53550,Below R,1204641949 +2340,53894,Below R,1204641978 +2340,53921,ClearPlay,1193241737 +2340,53921,R,1206459995 +2340,53956,ClearPlay,1207654732 +2340,53956,R,1207654732 +2340,54190,Below R,1204641630 +2340,54281,ClearPlay,1215618392 +2340,54281,R,1215618392 +2340,54513,ClearPlay,1193849210 +2340,54513,R,1193849210 +2340,54686,Below R,1206460079 +2340,54736,ClearPlay,1199291005 +2340,54736,R,1196170826 +2340,54745,ClearPlay,1210784649 +2340,54745,R,1210784649 +2340,54771,Below R,1204642618 +2340,54783,ClearPlay,1200686781 +2340,54783,R,1200686781 +2340,54962,R,1206460332 +2340,54997,ClearPlay,1200686822 +2340,54997,R,1196170836 +2340,54999,ClearPlay,1206459329 +2340,54999,R,1196170758 +2340,55020,ClearPlay,1203086925 +2340,55020,R,1203086925 +2340,55052,ClearPlay,1206459873 +2340,55052,R,1204641643 +2340,55080,ClearPlay,1203087098 +2340,55080,R,1203087098 +2340,55094,ClearPlay,1203942882 +2340,55094,R,1203942882 +2340,55118,ClearPlay,1199291049 +2340,55118,R,1199291049 +2340,55232,ClearPlay,1203086986 +2340,55232,R,1203086986 +2340,55247,ClearPlay,1204811794 +2340,55247,R,1204811794 +2340,55261,ClearPlay,1199291028 +2340,55261,R,1199291028 +2340,55269,ClearPlay,1204550419 +2340,55269,R,1196170769 +2340,55272,ClearPlay,1203087039 +2340,55272,R,1203087039 +2340,55274,Below R,1204642647 +2340,55276,ClearPlay,1203942932 +2340,55276,R,1196170781 +2340,55282,ClearPlay,1204645380 +2340,55282,R,1204645380 +2340,55284,ClearPlay,1212700868 +2340,55284,R,1212700868 +2340,55286,ClearPlay,1204645477 +2340,55286,R,1204645477 +2340,55288,ClearPlay,1230261180 +2340,55288,R,1230261100 +2340,55290,ClearPlay,1203087364 +2340,55290,R,1196170800 +2340,55363,ClearPlay,1203087025 +2340,55363,R,1203087025 +2340,55442,Below R,1214410965 +2340,55451,Below R,1207654955 +2340,55765,ClearPlay,1203942814 +2340,55765,R,1196170855 +2340,55805,ClearPlay,1210183495 +2340,55805,R,1210183495 +2340,55820,ClearPlay,1206460211 +2340,55820,R,1206460211 +2340,55830,Below R,1204641540 +2340,55946,ClearPlay,1208196327 +2340,55946,R,1208196327 +2340,56001,ClearPlay,1206530761 +2340,56001,R,1206530761 +2340,56060,ClearPlay,1249647750 +2340,56060,R,1249647750 +2340,56145,ClearPlay,1206530720 +2340,56145,R,1206530720 +2340,56152,Below R,1204641735 +2340,56165,ClearPlay,1211200926 +2340,56165,R,1211200926 +2340,56169,ClearPlay,1204645396 +2340,56169,R,1204645396 +2340,56174,Below R,1204641581 +2340,56274,ClearPlay,1203942829 +2340,56274,R,1203942829 +2340,56286,ClearPlay,1210784918 +2340,56286,R,1210784918 +2340,56333,ClearPlay,1210183454 +2340,56333,R,1210183454 +2340,56339,ClearPlay,1208863259 +2340,56339,R,1208863259 +2340,56587,Below R,1204642638 +2340,56757,ClearPlay,1207654683 +2340,56757,R,1207654683 +2340,56775,Below R,1204642957 +2340,56782,ClearPlay,1207654748 +2340,56782,R,1204641477 +2340,56788,ClearPlay,1208863275 +2340,56788,R,1204641685 +2340,56801,ClearPlay,1208863298 +2340,56801,R,1208863298 +2340,56805,ClearPlay,1208196290 +2340,56805,R,1208196290 +2340,56885,Below R,1204641794 +2340,56941,Below R,1204642870 +2340,57368,Below R,1204641544 +2340,57401,ClearPlay,1212700468 +2340,57401,R,1212700468 +2340,57464,ClearPlay,1203086891 +2340,57464,R,1203086891 +2340,57522,Below R,1211200987 +2340,57526,ClearPlay,1211475210 +2340,57526,R,1211475239 +2340,57528,ClearPlay,1212700493 +2340,57528,R,1212700493 +2340,57536,ClearPlay,1212407250 +2340,57536,R,1212407250 +2340,57669,ClearPlay,1215618377 +2340,57669,R,1214410841 +2340,58025,Below R,1204642598 +2340,58047,Below R,1214410863 +2340,58078,ClearPlay,1212700510 +2340,58078,R,1212700510 +2340,58103,Below R,1204642883 +2340,58154,Below R,1206459787 +2340,58293,Below R,1206460115 +2340,58295,ClearPlay,1216661204 +2340,58295,R,1207655014 +2340,58299,Below R,1206459765 +2340,58301,ClearPlay,1214411054 +2340,58301,R,1214411054 +2340,58303,ClearPlay,1230087187 +2340,58303,R,1214411722 +2340,58306,ClearPlay,1230087219 +2340,58306,R,1230087219 +2340,58315,Below R,1214411480 +2340,58418,ClearPlay,1230087025 +2340,58418,R,1230087025 +2340,58432,ClearPlay,1238113778 +2340,58432,R,1238113777 +2340,58622,R,1214410944 +2340,58783,ClearPlay,1212700542 +2340,58783,R,1212700542 +2340,58803,Below R,1214411695 +2340,58806,ClearPlay,1218730746 +2340,58806,R,1218730745 +2340,58839,Below R,1214411678 +2340,58876,ClearPlay,1216661221 +2340,58876,R,1216661221 +2340,59014,Below R,1214411531 +2340,59018,Below R,1214411396 +2340,59022,R,1214411414 +2340,59118,ClearPlay,1238114085 +2340,59118,R,1230086032 +2340,59126,ClearPlay,1238113584 +2340,59126,R,1238113584 +2340,59336,ClearPlay,1219858453 +2340,59336,R,1219858473 +2340,59369,Below R,1230085788 +2340,59387,ClearPlay,1230087058 +2340,59387,R,1230087058 +2340,59594,ClearPlay,1230087255 +2340,59594,R,1230087255 +2340,59615,Below R,1212407170 +2340,59727,ClearPlay,1230087308 +2340,59727,R,1230087308 +2340,59900,Below R,1214411470 +2340,59908,ClearPlay,1230087120 +2340,59908,R,1230087120 +2340,60037,ClearPlay,1230087204 +2340,60037,R,1214411487 +2340,60040,Below R,1214411494 +2340,60046,ClearPlay,1238113611 +2340,60046,R,1238113611 +2340,60069,Below R,1217934167 +2340,60072,ClearPlay,1230087805 +2340,60072,R,1217934161 +2340,60074,Below R,1217934147 +2340,60333,Below R,1217934335 +2340,60397,Below R,1217934073 +2340,60647,ClearPlay,1230087391 +2340,60647,R,1230087391 +2340,60684,ClearPlay,1249646517 +2340,60684,R,1249646517 +2340,60756,ClearPlay,1230087794 +2340,60756,R,1217933976 +2340,60894,ClearPlay,1249646547 +2340,60894,R,1249646547 +2340,60943,ClearPlay,1238113694 +2340,60943,R,1238113694 +2340,61011,ClearPlay,1230087773 +2340,61011,R,1230087773 +2340,61075,ClearPlay,1238114401 +2340,61075,R,1238114401 +2340,61132,R,1230086199 +2340,61210,ClearPlay,1249646504 +2340,61210,R,1249646504 +2340,61236,ClearPlay,1249646722 +2340,61236,R,1249646722 +2340,61240,ClearPlay,1249647022 +2340,61240,R,1249647022 +2340,61248,ClearPlay,1238114537 +2340,61248,R,1238114537 +2340,61323,ClearPlay,1230087825 +2340,61323,R,1230086000 +2340,61465,ClearPlay,1238113430 +2340,61465,R,1230086544 +2340,61467,R. ClearPlay,1238113853 +2340,61697,ClearPlay,1238113468 +2340,61697,R,1230086616 +2340,61986,ClearPlay,1238113457 +2340,61986,R,1238113457 +2340,62081,Below R,1230085843 +2340,62113,ClearPlay,1238113978 +2340,62113,R,1238113978 +2340,62155,Below R,1230085866 +2340,62344,ClearPlay,1238114005 +2340,62344,R,1230086071 +2340,62374,ClearPlay,1238113594 +2340,62374,R,1230085758 +2340,62439,R,1230086577 +2340,62511,ClearPlay,1249647615 +2340,62511,R,1249647615 +2340,62733,ClearPlay,1238113794 +2340,62733,R,1238113794 +2340,62792,R,1230085931 +2340,62836,Below R,1230085912 +2340,62849,ClearPlay,1238113514 +2340,62849,R,1230085885 +2340,62999,Below R,1230085851 +2340,63033,ClearPlay,1238113526 +2340,63033,R,1230086153 +2340,63062,ClearPlay,1238113569 +2340,63062,R,1230085806 +2340,63082,ClearPlay,1249647788 +2340,63082,R,1249647788 +2340,63113,Below R,1230085902 +2340,63222,ClearPlay,1249647008 +2340,63222,R,1249647008 +2340,63859,Below R,1230085826 +2340,63876,ClearPlay,1238114020 +2340,63876,R,1238114020 +2340,64229,ClearPlay,1238113991 +2340,64229,R,1238113991 +2340,64231,ClearPlay,1238114040 +2340,64231,R,1238114040 +2340,64236,R,1230085352 +2340,64497,Below R,1230086561 +2340,64614,ClearPlay,1249646756 +2340,64614,R,1249646756 +2340,64620,ClearPlay,1249647145 +2340,64620,R,1249647145 +2340,64622,ClearPlay,1249647591 +2340,64622,R,1249647591 +2340,64839,ClearPlay,1249647158 +2340,64839,R,1249647158 +2340,65130,ClearPlay,1249646822 +2340,65130,R,1249646822 +2340,65155,ClearPlay,1238113445 +2340,65155,R,1238113445 +2340,65216,ClearPlay,1249646795 +2340,65216,R,1249646795 +2340,65631,ClearPlay,1249646967 +2340,65631,R,1249646967 +2340,65682,ClearPlay,1249646891 +2340,65682,R,1249646891 +2340,65982,ClearPlay,1249646878 +2340,65982,R,1249646878 +2340,66198,ClearPlay,1249646769 +2340,66198,R,1249646769 +2340,66427,ClearPlay,1238113539 +2340,66427,R,1238113539 +2340,66691,ClearPlay,1249646703 +2340,66691,R,1249646703 +2340,67620,ClearPlay,1249646993 +2340,67620,R,1249646993 +2340,68519,ClearPlay,1249646783 +2340,68519,R,1249646783 +2340,68552,ClearPlay,1249614430 +2340,68552,R,1249614430 +2340,69131,ClearPlay,1249646806 +2340,69131,R,1249646806 +2340,79293,Below R,1303329430 +2340,80126,ClearPlay,1303329379 +2340,80126,R,1303329379 +2340,80489,ClearPlay,1303329454 +2340,80489,R,1303329454 +2340,80549,Below R,1303329412 +2340,80839,Below R,1303329293 +2340,80906,Below R,1303329222 +2340,81591,ClearPlay,1303329149 +2340,81591,R,1303329149 +2340,81641,Below R,1303329122 +2340,81845,ClearPlay,1303329070 +2340,81845,R,1303329069 +2340,81847,Below R,1303329132 +2340,81932,ClearPlay,1303329197 +2340,81932,R,1303329197 +2340,82053,ClearPlay,1303329100 +2340,82053,R,1303329100 +2340,82167,ClearPlay,1303329242 +2340,82167,R,1303329242 +2340,82202,Below R,1303329170 +2385,51925,emotion,1431638888 +2385,107348,70s,1431638854 +2385,107348,dry,1431638850 +2385,116797,cryptography,1431638951 +2391,260,Science Fiction,1444491779 +2391,260,space adventure,1444491818 +2404,541,mindblowing,1137239751 +2404,541,outstanding,1137239751 +2404,923,allmost perfect,1137239771 +2404,924,breathtaking,1137239711 +2404,924,genius,1137239711 +2404,1206,mindblowing,1137239863 +2404,1206,shocking,1137239863 +2404,1225,brilliant,1137239640 +2404,1225,hilarious,1137239640 +2404,2145,naive,1137239582 +2404,2145,pretending,1137239582 +2404,6197,interesting,1137766161 +2404,6197,kumma,1137766161 +2404,8576,hauska ku mika,1137765972 +2404,8576,Hyvät henkilöhahmot,1137765972 +2404,8847,Hmmm,1138224545 +2404,37382,did get lost somewhere,1162151572 +2404,37382,foggy,1162151572 +2404,37382,rourke great,1162151572 +2404,54999,How much killing there must be? And Giamatti as a bad guy!!! Those funny remarks??? Sideways? I hope he got the money for nothing aand the wine for nothing,1212260810 +2404,92169,almost joyfull,1430466567 +2404,92169,descriptive,1430466567 +2404,92169,surprising,1430466567 +2423,7745,Vietnam,1443665100 +2423,83525,Yakuza,1443663780 +2451,356,excellent acting,1438739467 +2451,356,great writing,1438739467 +2451,356,tom hanks,1438739467 +2451,1276,classic,1438740473 +2451,1276,FIGHTING THE SYSTEM,1438740477 +2451,1276,Paul Newman,1438740470 +2451,1810,based on a book,1438740448 +2451,1810,politics,1438740437 +2451,7347,John Turturro,1438833763 +2451,7347,Johnny Depp,1438833760 +2451,7347,psychological,1438833768 +2451,8666,awful,1438741412 +2451,8666,bad acting,1438741420 +2451,8666,Halle Berry,1438741427 +2451,33646,adam sandler,1438740513 +2451,33646,remake,1438740510 +2451,74458,Leonardo DiCaprio,1438740737 +2451,74458,Mark Ruffalo,1438740739 +2451,74458,plot twist,1438740735 +2451,74458,Psychological Thriller,1438740744 +2451,96567,Bradley Cooper,1438833799 +2451,109072,bad acting,1438750255 +2451,109072,bad writing,1438750248 +2468,555,Top 5 best movies ever!,1350824251 +2476,74228,atmospheric,1439932642 +2476,74228,mystery,1439932648 +2476,74228,puzzle,1439932652 +2476,74228,strong female lead,1439932630 +2476,74228,Surreal,1439932621 +2476,74228,twist ending,1439932656 +2478,4896,Fantasy,1424531091 +2478,4896,mystery,1424531097 +2478,5608,based on a true story,1424531662 +2478,5608,psychology,1424531659 +2478,5608,thought-provoking,1424531667 +2478,58105,fantasy,1424531046 +2478,62644,psychology,1424531611 +2478,62644,social experiment,1424531609 +2478,68237,artificial intelligence,1424531385 +2478,68237,plot twist,1424531368 +2478,68237,Sci-fi,1424531362 +2478,68237,twist ending,1424531389 +2478,70286,South Africa,1424531318 +2478,72998,sci-fi,1424531223 +2478,72998,visually stunning,1424531230 +2478,94864,intelligent,1424531286 +2478,94864,sci-fi,1424531273 +2478,94864,scifi,1424531268 +2478,94864,technology,1424531274 +2478,111759,original plot,1424531468 +2478,111759,sci-fi,1424531473 +2478,111759,time loop,1424531479 +2478,111759,time travel,1424531471 +2478,114935,mindfuck,1438076886 +2478,114935,science fiction,1438076883 +2478,114935,time travel,1438076875 +2478,114935,twist ending,1438076876 +2478,115149,Keanu Reeves,1424531186 +2478,115149,Willem Dafoe,1424531192 +2496,54286,espionage,1436205543 +2496,54286,Matt Damon,1436205549 +2596,107,treasure,1368775943 +2596,296,entirely dialogue,1368776296 +2596,353,dark hero,1368776041 +2596,380,arnold,1368776091 +2596,485,arnold,1368776091 +2596,589,arnold,1368776090 +2596,898,screwball comedy,1368776176 +2596,910,screwball comedy,1368776176 +2596,1179,neo-noir,1368776245 +2596,1240,arnold,1368776091 +2596,1270,spielberg,1368776520 +2596,1291,spielberg,1368776520 +2596,1291,treasure,1368775943 +2596,1387,spielberg,1368776520 +2596,1617,neo-noir,1368776245 +2596,1894,stranded,1368775988 +2596,1895,cheerleading,1368776068 +2596,2022,christian,1368776195 +2596,2022,jesus,1368775903 +2596,2028,spielberg,1368776520 +2596,2115,spielberg,1368776520 +2596,2115,treasure,1368775943 +2596,2143,dragon,1368776402 +2596,2193,dragon,1368776402 +2596,2353,conspiracy theory,1368776327 +2596,2405,treasure,1368775943 +2596,2916,arnold,1368776090 +2596,3067,screwball comedy,1368776176 +2596,3566,entirely dialogue,1368776296 +2596,6539,treasure,1368775943 +2596,6873,screwball comedy,1368776176 +2596,6874,dark hero,1368776041 +2596,7318,jesus,1368775903 +2596,7361,short-term memory loss,1368776501 +2596,7386,christian,1368776195 +2596,8366,christian,1368776195 +2596,8622,conspiracy theory,1368776326 +2596,48342,kamera,1365369793 +2605,350,123,1159514658 +2605,508,1223,1159514667 +2613,93265,christian,1453588517 +2620,593,psychopathy,1422568119 +2620,593,serial killer,1422568119 +2620,593,suspence,1422568119 +2620,115569,gripping,1423005090 +2620,115569,sociopath,1423005085 +2629,2826,vikings,1264370863 +2629,3243,sean astin,1313522784 +2629,33903,idealism,1274520772 +2629,33903,it's all true,1274520777 +2629,33903,revolution,1274520768 +2629,44191,anarchist,1255304058 +2629,48394,Spanish Civil War,1274125197 +2629,65982,vikings,1271706531 +2629,68157,Quentin Tarantino,1265111641 +2629,68157,random unnecessary close-ups of cream,1265111619 +2629,83349,funny,1314557422 +2629,83349,seth rogen,1314557418 +2631,296,Quentin Tarantino,1146162279 +2631,1089,Quentin Tarantino,1146162298 +2631,1320,alien series,1146161445 +2631,1729,Quentin Tarantino,1146162340 +2631,2617,mummy,1146161455 +2631,6874,Quentin Tarantino,1146162317 +2631,6874,Uma Thruman,1146162293 +2631,7438,Quentin Tarantino,1146162331 +2631,7438,Uma Thruman,1146162333 +2661,1687,hitman,1295491144 +2661,1721,based on a true story,1295491168 +2661,1721,romance,1295491177 +2661,3996,Chow Yun Fat,1295490641 +2661,27032,amnesia,1295490896 +2672,670,india,1191270023 +2672,670,satyajit ray,1191270023 +2676,1208,based on a book,1230554034 +2676,58559,good sequel,1232777361 +2692,1198,indiana jones,1316409754 +2692,79702,comic book,1316409673 +2692,79702,funny,1316409678 +2692,79702,geeky,1316409686 +2692,79702,quirky,1316409681 +2692,79702,whimsical,1316409691 +2692,86332,action,1316409632 +2692,86332,comic book,1316409626 +2692,86332,superhero,1316409629 +2692,87232,comic book,1316409594 +2692,87232,fantasy,1316409591 +2692,87232,superhero,1316409596 +2694,296,dramatic,1426772785 +2694,296,fast paced,1426772785 +2694,296,thought-provoking,1426772785 +2726,45,dark humor,1368521791 +2726,57,dysfunctional family,1368521866 +2726,222,friendship,1368521771 +2726,316,science fiction,1368521411 +2726,333,funny,1368521956 +2726,353,dark hero,1368521375 +2726,477,biographical,1368521636 +2726,527,amazing photography,1368521916 +2726,592,dark hero,1368521375 +2726,919,wizards,1368521813 +2726,1080,absurd,1368521725 +2726,1089,dark humor,1368521791 +2726,1120,biopic,1368521757 +2726,1127,amazing photography,1368521916 +2726,1185,biopic,1368521757 +2726,1196,modern fantasy,1368521709 +2726,1197,modern fantasy,1368521708 +2726,1199,visually appealing,1368521667 +2726,1271,friendship,1368521771 +2726,1356,science fiction,1368521411 +2726,1357,biopic,1368521757 +2726,1485,hilarious,1368521943 +2726,1527,visually appealing,1368521667 +2726,1584,science fiction,1368521411 +2726,1635,1970s,1292197674 +2726,1635,atmospheric,1292197678 +2726,1635,dysfunctional family,1292197669 +2726,1653,science fiction,1368521412 +2726,1682,modern fantasy,1368521709 +2726,1831,science fiction,1368521411 +2726,1956,dysfunctional family,1368521866 +2726,1965,dark humor,1368521791 +2726,2021,lynch,1368521930 +2726,2076,lynch,1368521930 +2726,2163,cult film,1368521883 +2726,2193,wizards,1368521813 +2726,2313,lynch,1368521930 +2726,2352,friendship,1368521771 +2726,2360,dysfunctional family,1368521866 +2726,2361,cult film,1368521883 +2726,2502,comedy,1296163074 +2726,2502,crime gone awry,1296163083 +2726,2502,cult film,1296163066 +2726,2502,funny,1296163091 +2726,2502,hilarious,1296163099 +2726,2502,Jennifer Aniston,1296163085 +2726,2502,quirky,1296163069 +2726,2502,satire,1296163087 +2726,2502,workplace,1296163105 +2726,2539,funny,1368521956 +2726,2599,dark humor,1368521791 +2726,2694,funny,1368521956 +2726,2700,hilarious,1368521942 +2726,2706,hilarious,1368521942 +2726,2791,hilarious,1368521943 +2726,2916,science fiction,1368521411 +2726,2966,lynch,1368521929 +2726,2997,absurd,1368521725 +2726,2997,modern fantasy,1368521708 +2726,3174,biopic,1368521758 +2726,3246,biographical,1368521636 +2726,3246,biopic,1368521758 +2726,3421,comedy,1368521692 +2726,4011,dark humor,1368521791 +2726,4085,comedy,1368521692 +2726,4235,amazing photography,1368521917 +2726,4816,funny,1368521956 +2726,4848,visually appealing,1368521667 +2726,4979,Ben Stiller,1301774174 +2726,4979,black comedy,1301774172 +2726,4979,dark comedy,1301774151 +2726,4979,dark humor,1301774170 +2726,4979,ensemble cast,1301774190 +2726,4979,Gene Hackman,1301774186 +2726,4979,great soundtrack,1301774168 +2726,4979,narrated,1301774166 +2726,4979,Owen Wilson,1301774161 +2726,4979,quirky,1301774147 +2726,4979,stylized,1301774158 +2726,4979,Wes Anderson,1301774153 +2726,4979,witty,1301774155 +2726,5515,absurd,1300669917 +2726,5515,cynical,1300669927 +2726,5515,dark,1300669944 +2726,5515,satirical,1300669939 +2726,5515,stylized,1300669931 +2726,5515,surreal,1300669935 +2726,5577,dysfunctional family,1368521866 +2726,5952,wizards,1368521812 +2726,6016,amazing photography,1368521916 +2726,6188,comedy,1368521693 +2726,6874,dark hero,1368521375 +2726,6993,dysfunctional family,1368521866 +2726,7153,wizards,1368521812 +2726,8641,comedy,1368521693 +2726,8958,biographical,1368521636 +2726,30810,adventure,1328141391 +2726,30810,Bill Murray,1328141377 +2726,30810,Criterion,1328141396 +2726,30810,friendship,1328141393 +2726,30810,great soundtrack,1328141381 +2726,30810,Owen Wilson,1328141401 +2726,30810,quirky,1328141390 +2726,30810,stylized,1328141388 +2726,30810,visually appealing,1328141406 +2726,30810,Wes Anderson,1328141370 +2726,30812,biographical,1368521637 +2726,33171,based on a book,1301526637 +2726,33171,disturbing,1301526609 +2726,33171,dramatic,1301526608 +2726,33171,Elisabeth Shue,1301526606 +2726,33171,Joseph Gordon-Levitt,1301526604 +2726,33171,repression,1301526621 +2726,37729,visually appealing,1368521667 +2726,60684,visually appealing,1368521667 +2726,63876,biographical,1368521636 +2726,74324,autism,1296337193 +2726,74324,biography,1296337226 +2726,74324,Claire Danes,1296337209 +2726,74324,genius,1296337198 +2726,74324,mental illness,1296337201 +2726,74324,science,1296337215 +2726,77307,disturbing,1295955011 +2726,77307,freedom,1295955018 +2726,77307,incest,1295955025 +2726,80831,identical remake,1316380667 +2726,80831,remake,1316380670 +2726,80831,shot by shot remake,1316380671 +2726,85414,Jake Gyllenhaal,1315085024 +2726,85414,plot holes,1315085062 +2726,85414,plot makes no sense,1315085059 +2726,85414,predictable ending,1315085032 +2726,85414,pseudo-intelligent,1315085035 +2726,85414,science fiction,1315085056 +2726,85414,thin mysteries,1315085041 +2726,85414,Vera Farmiga,1315085047 +2726,85414,Weak third act,1315085050 +2752,6874,seen more than once,1169606229 +2752,7438,movie to see,1169606139 +2752,44199,Interesting,1169606265 +2752,46578,messed up in a good way,1164416359 +2762,260,exciting,1435805874 +2762,260,modern myth,1435805882 +2762,136560,art,1435807715 +2762,136560,artist,1435807725 +2762,136560,artistic,1435806656 +2762,136560,aspergers,1435807745 +2762,136560,creative,1435806662 +2762,136560,documentary,1435806687 +2762,136560,heart warming,1435806651 +2762,136560,heartwarming,1435807737 +2762,136560,human,1435806665 +2762,136560,thought-provoking,1435806645 +2783,260,action,1441240390 +2783,260,Science Fiction,1441240382 +2791,558,visuals,1372756242 +2791,628,Edward Norton,1372757793 +2791,1101,homoerotic subtext,1372740700 +2791,1562,bad puns,1372741273 +2791,1625,mindfuck,1372832386 +2791,1625,unrealistic,1372832469 +2791,1748,atmospheric,1372870345 +2791,1748,visually appealing,1372870334 +2791,1924,so bad it's good,1372758238 +2791,2048,Ratigan,1372756963 +2791,2081,poor unfortunate souls,1372756377 +2791,2096,animation,1372756454 +2791,2278,car chase,1372758274 +2791,2450,topless ducks,1372758213 +2791,2761,emotional,1372756496 +2791,3441,corny,1372756040 +2791,3703,Nudity (Topless),1434988785 +2791,4270,the rock,1372758053 +2791,5159,Tim Curry,1372758602 +2791,5378,awkward dialogue,1372754663 +2791,6013,stupid,1372754792 +2791,6016,crime,1372757885 +2791,6152,so bad it's almost good,1372758152 +2791,6536,Eris,1372756307 +2791,6787,Dustin Hoffman,1372758332 +2791,6787,Robert Redford,1372758338 +2791,7004,It's not a tumor,1372756743 +2791,8950,tense,1434989548 +2791,27618,stupid,1372758119 +2791,27706,book was better,1372757041 +2791,27773,disturbing,1372757907 +2791,27773,twist ending,1372757902 +2791,31364,disturbing,1372757839 +2791,31364,korean,1372757851 +2791,31889,afterlife,1372757611 +2791,31889,religion,1372757590 +2791,31889,sad,1372757663 +2791,47810,The bees,1372754859 +2791,50798,pop culture references,1372786810 +2791,50798,stupid,1434989214 +2791,50798,unfunny,1372786796 +2791,53125,boring,1372755325 +2791,57532,stupid,1434989190 +2791,61348,Friedberg and Seltzer,1372754573 +2791,68319,Storytelling,1372755114 +2791,69526,boring,1372755060 +2791,70946,Oh My Goood!,1372740867 +2791,72378,bad science,1372756619 +2791,73829,hilarious,1372758171 +2791,77307,disturbing,1440893016 +2791,77307,sex,1440893006 +2791,79134,unfunny,1372754399 +2791,90890,product placement,1372754472 +2791,95588,unnecessary sequel,1372755963 +2791,97938,visually appealing,1372757101 +2791,103695,MST3k,1374450340 +2791,103695,One of the worst movies of all time,1374433721 +2791,113188,bleak,1434988979 +2791,113188,post-apocalyptic,1434988958 +2791,113188,where's my car,1434988903 +2791,135498,High School,1434987946 +2791,135498,Korean,1434921118 +2791,135498,Martial arts,1434987992 +2794,40629,unnecessary,1166313647 +2807,4226,circular,1140227808 +2807,32587,noir,1140228204 +2816,27899,total bollocks,1206239061 +2827,519,franchise,1368930983 +2827,861,police,1368931134 +2827,1089,violent,1368931202 +2827,1206,violent,1368931202 +2827,1287,christianity,1368930915 +2827,2383,police,1368931134 +2827,2500,high school,1368931005 +2827,2888,high school,1368931005 +2827,2959,violent,1368931202 +2827,3146,stupid,1368931165 +2827,3273,franchise,1368930983 +2827,3440,franchise,1368930983 +2827,3980,inspirational,1368931017 +2827,5363,high school,1368931004 +2827,5785,stupid,1368931165 +2827,6537,franchise,1368930983 +2827,51540,police,1368931134 +2827,53121,franchise,1368930983 +2827,63113,franchise,1368930983 +2827,79702,based on a comic,1365540203 +2827,79702,cult,1365540281 +2827,88578,Down's Syndrome,1365564228 +2827,88578,erotic,1365540000 +2827,88578,love,1365539970 +2827,88578,romance,1422227136 +2827,88578,Spain,1365564138 +2827,88578,Spanish,1365564138 +2827,103980,acting,1428892663 +2828,260,adventure,1420841398 +2828,260,epic,1420841398 +2828,260,science fiction,1420841398 +2854,260,George Lucas,1439752376 +2854,260,Science Fiction,1439752362 +2854,60408,bienvenue chez les ch'tis,1439753216 +2854,60408,France,1439753233 +2854,60408,French Film,1439753224 +2860,955,Can't remember,1188170431 +2860,955,comedy,1188170431 +2860,1064,comedy,1188172249 +2860,1064,family,1188172249 +2860,2953,kids and family,1188170162 +2860,4623,funny,1188172012 +2860,5444,family,1188171871 +2860,5444,fun,1188171871 +2860,7369,Children,1188226603 +2860,7369,funny,1188226603 +2860,8644,action,1188170220 +2860,8644,Will Smith,1188170220 +2860,8965,animation,1188226238 +2860,8965,Christmas,1188226238 +2860,8965,family,1188226238 +2860,34338,animation,1188226178 +2860,34338,children,1188226178 +2860,34338,comedy,1188226178 +2860,45722,action,1188171931 +2860,45722,Adventure,1188171931 +2860,45722,funny,1188171931 +2860,46972,family,1188226371 +2860,46972,funny,1188226371 +2860,46972,My movies,1188226371 +2860,54272,comedy,1188226489 +2860,54272,funny,1188226489 +2864,260,sci-fi,1444337535 +2929,163,a little cheesy,1254179886 +2929,163,handsome star,1254179886 +2929,196,lame plot,1254179942 +2929,494,harrison ford,1254179969 +2929,494,steven segal,1254179969 +2929,1234,paul newman,1254179898 +2929,1278,gene wilder,1254179917 +2929,1278,Too old. showing its age,1254179917 +2929,1625,the twists in the plot,1254179790 +2929,2406,michael douglas & kathleen turner & danny devito,1254179848 +2929,2959,action,1254180525 +2929,2959,brad pitt,1254180525 +2929,2959,edward norton,1254180525 +2929,4011,guy ritchie film english humor,1254179865 +2929,8961,graphics,1254179815 +2929,8961,storyline pixar,1254179815 +2966,67867,everything,1352296687 +2987,260,classic sci-fi,1440693825 +2987,260,future fantasy,1440693836 +2987,260,"sci-fi, space",1440693812 +3036,60937,action,1427307335 +3036,60937,fantasy,1427307335 +3036,60937,special effects,1427307335 +3039,260,classic,1433095662 +3039,356,comedy,1433096327 +3039,356,drama,1433096327 +3039,356,feel good,1433096327 +3039,1722,james bond,1433278827 +3039,5013,aristocracy,1433104076 +3055,56174,dystopia,1335050070 +3055,56174,post-apocalyptic,1335049832 +3055,56174,sci-fi. dark,1335049832 +3055,56174,survival,1335050100 +3055,56174,zombies,1335050091 +3056,106072,comic book,1438450304 +3056,106072,fantasy,1438450304 +3056,106072,sci-fi,1438450304 +3062,260,classic,1439943530 +3062,260,sci-fi,1439943524 +3108,1036,action,1431722899 +3108,1036,Bruce Willis,1431722897 +3108,1036,good action,1431722908 +3108,1240,Action,1431722527 +3108,1240,arnold,1431722542 +3108,1240,artificial intelligence,1431722533 +3108,1240,robots,1431722529 +3108,1240,Sci-Fi,1431722524 +3108,1240,time travel,1431722521 +3108,2571,action,1431722381 +3108,2571,computers,1431722394 +3108,2571,hackers,1431722391 +3108,2571,sci-fi,1431722369 +3108,3578,action,1431722704 +3108,3578,history,1431722708 +3108,3578,Rome,1431722700 +3108,3578,Russell Crowe,1431722711 +3108,3578,sword fight,1431722706 +3108,4993,Action,1431722453 +3108,4993,Adventure,1431722473 +3108,4993,fantasy,1431722448 +3108,4993,Magic,1431722445 +3108,4995,genius,1431723564 +3108,4995,math,1431723571 +3108,4995,mathematics,1431723567 +3108,6539,action,1431722988 +3108,6539,fantasy,1431722993 +3108,6539,pirates,1431722976 +3108,6539,sword fight,1431722981 +3108,7143,historical,1431722671 +3108,7143,Japan,1431722684 +3108,7143,samurai,1431722667 +3108,7143,sword fight,1431722681 +3108,51662,action,1431722746 +3108,51662,military,1431722761 +3108,51662,sword fight,1431722749 +3108,51662,war,1431722750 +3108,56174,last man on earth,1431723318 +3108,56174,sci-fi,1431723302 +3108,56174,survival,1431723295 +3108,56174,virus,1431723315 +3108,56174,Will Smith,1431723298 +3108,56174,zombies,1431723289 +3108,59315,action,1431723389 +3108,59315,Marvel,1431723406 +3108,59315,superhero,1431723382 +3108,59315,technology,1431723388 +3116,140852,Cyberpunk,1449958261 +3119,714,beautiful,1443696396 +3119,714,dreamlike,1443696399 +3119,714,great soundtrack,1443696401 +3119,714,visually appealing,1443696286 +3119,48774,thought-provoking,1443646323 +3119,63072,intense,1443646389 +3163,260,adventure,1429709874 +3163,260,aliens,1429709890 +3163,260,fantasy,1429709871 +3163,260,great soundtrack,1429709887 +3163,260,Harrison Ford,1429709868 +3163,260,jedi,1429709882 +3163,260,sci-fi,1429709865 +3163,260,space,1429709884 +3163,2628,Jar Jar Binks,1429709922 +3163,2628,Natalie Portman,1429709924 +3163,2628,Samuel L. Jackson,1429709911 +3163,2628,sci-fi,1429709913 +3163,2628,space,1429709916 +3163,2628,Star Wars,1429709908 +3163,59315,adventure,1429709996 +3163,59315,superhero,1429709985 +3163,59315,technology,1429709989 +3225,858,Action,1426774689 +3238,1554,artistic,1293392226 +3238,1554,beautifully filmed,1293392205 +3238,1554,Ewan McGregor,1293392183 +3238,1554,murder,1293392212 +3238,1554,Nudity (Full Frontal - Notable),1293392194 +3238,1554,romance,1293392199 +3238,2858,black comedy,1293392698 +3238,2858,midlife crisis,1293392709 +3238,2858,thought-provoking,1293392692 +3238,2987,adventure,1293393044 +3238,2987,Cheesy,1293393028 +3238,2997,black comedy,1293392434 +3238,2997,Cameron Diaz,1293392418 +3238,2997,Charlie Kaufman,1293392416 +3238,2997,sci-fi,1293392426 +3238,4979,black comedy,1293392492 +3238,4979,dark humor,1293392513 +3238,4979,family dynamics,1293392495 +3238,4979,love,1293392507 +3238,4979,narrated,1293392504 +3238,4979,Wes Anderson,1293392498 +3238,5298,Charlie Kaufman,1293392396 +3238,5528,boring,1293393001 +3238,5902,Charlie Kaufman,1293392447 +3238,5902,dark comedy,1293392450 +3238,5902,drugs,1293392454 +3238,5902,Meryl Streep,1293392466 +3238,5902,narrated,1293392475 +3238,5902,Nicolas Cage,1293392458 +3238,6291,disturbing,1293392898 +3238,6291,Lukas Moodysson,1293392883 +3238,6291,melancholy,1293392855 +3238,6291,prostitution,1293392894 +3238,6291,suicide,1293392889 +3238,6291,Swedish,1293392849 +3238,6953,Complex,1293392733 +3238,6953,drama,1293392760 +3238,6953,life & death,1293392764 +3238,6953,Nonlinear,1293392770 +3238,7371,experimental,1294085858 +3238,7371,Lars von Trier,1294085841 +3238,7371,Nicole Kidman,1294085845 +3238,7371,social commentary,1294085866 +3238,8645,drugs,1293392926 +3238,8645,smuggling,1293392930 +3238,8645,teen pregnancy,1293392920 +3238,8910,funny,1293392326 +3238,8910,intelligent,1293392356 +3238,8910,nihilism,1293392346 +3238,8910,philosophy,1293392360 +3238,8959,Nicole Kidman,1293392280 +3238,39869,Lars von Trier,1294085879 +3238,39869,male nudity,1294085886 +3238,39869,racism,1294085892 +3238,39869,thought-provoking,1294085908 +3238,41285,boring,1294086017 +3238,41285,Jonathan Rhys Meyers,1294086012 +3238,41285,murder,1294086005 +3238,41285,Woody Allen,1294085996 +3238,46578,drugs,1293392588 +3238,46578,funny,1293392595 +3238,46578,road movie,1293392583 +3238,46578,social commentary,1293392601 +3238,46723,Brad Pitt,1293392793 +3238,46723,social commentary,1293392799 +3238,55269,brothers,1293392549 +3238,55269,dark comedy,1293392542 +3238,55269,road trip,1293392538 +3238,55269,SIBLING RELATIONSHIPS,1293392529 +3238,55269,Train,1293392557 +3238,55269,Wes Anderson,1293392525 +3238,76079,Julianne Moore,1294321875 +3238,76079,not believable,1294321921 +3238,76079,visual style,1294321869 +3238,76251,action,1294321977 +3238,76251,humorous,1294321984 +3238,76251,superhero,1294321949 +3238,76251,violence,1294321990 +3238,81591,dance,1294321827 +3238,81591,lesbians,1294321805 +3238,81591,madness,1294321809 +3238,81591,Natalie Portman,1294321801 +3240,2,fantasy,1440807770 +3240,2,time travel,1440807772 +3240,10,james bond,1440807980 +3240,18,dark comedy,1441227758 +3240,18,hotel,1441227762 +3240,18,multiple storylines,1441227755 +3240,29,atmospheric,1440810046 +3240,29,dark,1440810040 +3240,29,Dark fantasy,1440810050 +3240,29,dystopia,1440810044 +3240,29,Jean-Pierre Jeunet,1440810071 +3240,29,steampunk,1440810048 +3240,29,surreal,1440810042 +3240,29,visually appealing,1440810052 +3240,32,atmospheric,1440809801 +3240,32,mindfuck,1440809811 +3240,32,original,1440809826 +3240,32,post-apocalyptic,1440809788 +3240,32,sci-fi,1440809798 +3240,32,Terry Gilliam,1440809806 +3240,32,time travel,1440809786 +3240,32,twist ending,1440809791 +3240,47,atmospheric,1440806551 +3240,47,dark,1440806553 +3240,47,morgan freeman,1440806542 +3240,47,twist ending,1440806539 +3240,70,cult film,1441227849 +3240,70,Quentin Tarantino,1441227847 +3240,70,twist ending,1441227852 +3240,76,artificial intelligence,1441835210 +3240,76,post apocalyptic,1441835212 +3240,76,sci-fi,1441835216 +3240,165,lone hero,1440807760 +3240,173,comic book,1440810833 +3240,173,dystopia,1440810835 +3240,173,future,1440810849 +3240,208,dystopia,1440967231 +3240,208,ocean,1440967225 +3240,208,post-apocalyptic,1440967222 +3240,208,survival,1440967227 +3240,231,jim carrey,1440808114 +3240,231,toilet humor,1440808124 +3240,253,atmospheric,1441225919 +3240,253,cult classic,1441225915 +3240,253,fantasy,1441225913 +3240,253,horror,1441225917 +3240,253,vampires,1441225908 +3240,260,jedi,1440813739 +3240,260,sci-fi,1440813727 +3240,260,space,1440813729 +3240,288,brutality,1441488779 +3240,288,dark comedy,1441488765 +3240,288,psychedelic,1441488763 +3240,288,stylized,1441488767 +3240,293,Luc Besson,1440813477 +3240,293,touching,1440813483 +3240,296,atmospheric,1440807146 +3240,296,dark comedy,1440807131 +3240,296,drugs,1440807138 +3240,296,nonlinear,1440807133 +3240,296,quirky,1440807142 +3240,296,stylized,1440807144 +3240,316,space,1440808715 +3240,316,Stargate,1440808724 +3240,318,atmospheric,1440806743 +3240,318,prison,1440806730 +3240,318,prison escape,1440806731 +3240,318,Stephen King,1440806737 +3240,318,twist ending,1440806733 +3240,344,Jim Carrey,1440808150 +3240,344,silly fun,1440808156 +3240,527,atmospheric,1440806683 +3240,527,based on a book,1440806698 +3240,527,historical,1440806690 +3240,527,history,1440806679 +3240,541,artificial intelligence,1440806967 +3240,541,atmospheric,1440806963 +3240,541,based on a book,1440806981 +3240,541,cyberpunk,1440806956 +3240,541,dystopia,1440806960 +3240,541,future,1440806975 +3240,541,robots,1440806977 +3240,541,sci-fi,1440806957 +3240,541,stylized,1440806971 +3240,586,childhood classics,1441225927 +3240,586,nostalgia,1441225930 +3240,589,apocalypse,1440807261 +3240,589,artificial intelligence,1440807256 +3240,589,future,1440807265 +3240,589,robots,1440807258 +3240,589,sci-fi,1440807253 +3240,593,classic,1441225540 +3240,593,Hannibal Lecter,1441225532 +3240,608,black comedy,1440808466 +3240,608,dark comedy,1440808464 +3240,610,Adult Animation,1440810767 +3240,610,good versus evil,1440810781 +3240,610,sci-fi,1440810769 +3240,674,comic book,1440810826 +3240,674,cult film,1440810811 +3240,674,sci-fi,1440810814 +3240,741,anime,1440813566 +3240,741,artificial intelligence,1440813568 +3240,741,cyberpunk,1440813564 +3240,741,sci-fi,1440813570 +3240,741,techno-evolution,1440813573 +3240,750,based on a book,1440813509 +3240,750,black comedy,1440813497 +3240,750,dark comedy,1440813495 +3240,750,nuclear war,1440813500 +3240,750,satire,1440813494 +3240,750,satirical,1440813506 +3240,778,black comedy,1440807096 +3240,778,dark comedy,1440807091 +3240,778,drugs,1440807093 +3240,923,Biography,1440807532 +3240,923,melancholy,1440807505 +3240,923,newspaper theme,1440807520 +3240,924,artificial intelligence,1440807006 +3240,924,atmospheric,1440807010 +3240,924,future,1440807021 +3240,924,robots,1440807020 +3240,924,sci-fi,1440807004 +3240,924,space,1440807008 +3240,1037,cyberpunk,1440813028 +3240,1037,science,1440813036 +3240,1097,sci-fi,1440808998 +3240,1127,aliens,1440807698 +3240,1127,Deep Ocean,1440807720 +3240,1127,ocean,1440807718 +3240,1127,sci-fi,1440807696 +3240,1127,submarine,1440807724 +3240,1127,too long,1440807711 +3240,1127,Underwater,1440807701 +3240,1129,dystopia,1440812492 +3240,1129,future,1440812500 +3240,1129,snake plissken,1440812495 +3240,1175,atmospheric,1440808519 +3240,1175,Black comedy,1440808517 +3240,1175,Post apocalyptic,1440808523 +3240,1193,based on a book,1440813343 +3240,1193,drama,1440813351 +3240,1193,social satire,1440813346 +3240,1196,jedi,1440813718 +3240,1196,sci-fi,1440813701 +3240,1196,space,1440813703 +3240,1199,atmospheric,1440813075 +3240,1199,black comedy,1440813059 +3240,1199,dark comedy,1440813060 +3240,1199,dreamlike,1440813071 +3240,1199,dystopia,1440813052 +3240,1199,satire,1440813073 +3240,1199,satirical,1440813082 +3240,1199,sci-fi,1440813078 +3240,1199,stylized,1440813086 +3240,1199,surreal,1440813053 +3240,1199,twist ending,1440813094 +3240,1200,atmospheric,1440813689 +3240,1200,sci-fi,1440813679 +3240,1200,space,1440813681 +3240,1201,atmospheric,1440807284 +3240,1201,Clint Eastwood,1440807275 +3240,1201,complex characters,1440807281 +3240,1201,epic,1440807295 +3240,1201,satirical,1440807292 +3240,1201,spaghetti western,1440807278 +3240,1206,atmospheric,1441392896 +3240,1206,cult film,1441392888 +3240,1206,dystopia,1441392882 +3240,1206,future,1441392918 +3240,1206,satire,1441392899 +3240,1206,stanley kubrick,1441392880 +3240,1206,stylized,1441392895 +3240,1206,surreal,1441392901 +3240,1206,violent,1441392885 +3240,1210,sci-fi,1441225720 +3240,1210,space opera,1441225728 +3240,1214,alien,1441225860 +3240,1214,aliens,1441225841 +3240,1214,atmospheric,1441225847 +3240,1214,dark,1441225851 +3240,1214,futuristic,1441225855 +3240,1214,H. R. Giger,1441225862 +3240,1214,sci-fi,1441225839 +3240,1214,science fiction,1441225865 +3240,1214,space,1441225843 +3240,1214,space travel,1441225849 +3240,1232,dreamlike,1440812581 +3240,1232,dystopia,1440812577 +3240,1232,existentialism,1440812574 +3240,1233,realistic,1440810348 +3240,1233,submarine,1440810337 +3240,1233,too long,1440810358 +3240,1233,U-boat,1440810344 +3240,1233,underwater,1440810352 +3240,1253,sci-fi,1440810799 +3240,1258,atmospheric,1441227565 +3240,1258,classic,1441227579 +3240,1258,dreamlike,1441227572 +3240,1258,jack nicholson,1441227562 +3240,1258,Stanley Kubrick,1441227561 +3240,1258,visually appealing,1441227576 +3240,1260,atmospheric,1440807245 +3240,1260,Fritz Lang,1440807244 +3240,1265,alternate reality,1441225824 +3240,1265,existentialism,1441225820 +3240,1265,original plot,1441225827 +3240,1265,surreal,1441225815 +3240,1265,time loop,1441225813 +3240,1265,time travel,1441225817 +3240,1270,1980s,1440807394 +3240,1270,adventure,1440807390 +3240,1270,future,1440807396 +3240,1270,sci-fi,1440807387 +3240,1270,time travel,1440807384 +3240,1301,sci-fi,1440812564 +3240,1301,space,1440812557 +3240,1320,franchise,1440810941 +3240,1320,sci-fi,1440810929 +3240,1345,based on a book,1440813416 +3240,1345,dark,1440813418 +3240,1345,horror,1440813412 +3240,1345,stephen king,1440813405 +3240,1348,atmospheric,1440808454 +3240,1348,german expressionism,1440808451 +3240,1517,Mike Myers,1440808508 +3240,1527,futuristic,1440808341 +3240,1527,Milla Jovovich,1440808338 +3240,1527,sci-fi,1440808337 +3240,1580,conspiracy theory,1440811509 +3240,1580,sci-fi,1440811511 +3240,1590,boring,1440808948 +3240,1590,distorted reality,1440808936 +3240,1653,dystopia,1440811201 +3240,1653,future,1440811218 +3240,1653,genetics,1440811205 +3240,1653,powerful ending,1440811209 +3240,1653,sci-fi,1440811203 +3240,1676,aliens,1440811813 +3240,1676,satire,1440811809 +3240,1676,sci-fi,1440811815 +3240,1676,space,1440811810 +3240,1682,dark comedy,1440809399 +3240,1682,dystopia,1440809402 +3240,1682,island,1440809415 +3240,1682,Jim Carrey,1440809394 +3240,1682,mindfuck,1440809422 +3240,1682,social commentary,1440809397 +3240,1721,atmospheric,1441225784 +3240,1721,catastrophe,1441225790 +3240,1721,historical,1441225792 +3240,1721,survival,1441225796 +3240,1726,future,1440967352 +3240,1726,post-apocalyptic,1440967354 +3240,1732,black comedy,1440812956 +3240,1732,comedy,1440812961 +3240,1732,cult film,1440812954 +3240,1732,dark comedy,1440812951 +3240,1732,satirical,1440812958 +3240,1747,black comedy,1443202351 +3240,1747,comedy,1443202356 +3240,1747,satire,1443202348 +3240,1748,atmospheric,1440812462 +3240,1748,dark,1440812474 +3240,1748,dark fantasy,1440812465 +3240,1748,dreamlike,1440812469 +3240,1748,mindfuck,1440812478 +3240,1748,sci-fi,1440812460 +3240,1748,steampunk,1440812471 +3240,1748,stylized,1440812467 +3240,1748,surreal,1440812458 +3240,1779,based on a book,1440811006 +3240,1779,based on book,1440811021 +3240,1779,mind,1440811019 +3240,1779,sci-fi,1440811001 +3240,1779,sea bottom,1440811009 +3240,1779,time travel,1440811004 +3240,1779,underwater,1440811011 +3240,1882,boring,1440809074 +3240,1884,based on a book,1440812858 +3240,1884,great soundtrack,1440812861 +3240,1884,hallucinatory,1440812848 +3240,1884,hunter s. thompson,1440812847 +3240,1884,road movie,1440812864 +3240,1884,surreal,1440812855 +3240,1917,apocalypse,1440809108 +3240,1917,sci-fi,1440809112 +3240,1917,space,1440809105 +3240,2003,horror,1446591203 +3240,2003,small town,1446591193 +3240,2010,classic,1440807227 +3240,2010,Fritz Lang,1440807225 +3240,2010,robot,1440807234 +3240,2011,1980s,1440807342 +3240,2011,future,1440807346 +3240,2011,sci-fi,1440807338 +3240,2011,time travel,1440807337 +3240,2012,sci-fi,1440807319 +3240,2012,science fiction,1440807324 +3240,2012,time travel,1440807321 +3240,2012,trains,1440807329 +3240,2021,sci-fi,1440808733 +3240,2028,historical,1441225760 +3240,2028,history,1441225771 +3240,2028,stylized,1441225766 +3240,2105,cyberpunk,1440811846 +3240,2105,original plot,1440811852 +3240,2105,sci-fi,1440811848 +3240,2117,based on a book,1440813367 +3240,2117,dystopia,1440813362 +3240,2117,George Orwell,1440813364 +3240,2232,existentialism,1440812637 +3240,2232,mindfuck,1440812633 +3240,2232,original,1440812651 +3240,2232,survival horror,1440812641 +3240,2232,twist,1440812644 +3240,2275,desert,1440810447 +3240,2275,post-apocalyptic,1440810440 +3240,2288,aliens,1440807543 +3240,2288,claustrophobic,1440807617 +3240,2288,horror,1440807545 +3240,2288,lovecraft,1440807605 +3240,2288,lovecraftian,1440807563 +3240,2288,Lovecraftian mythology,1440807556 +3240,2288,sci-fi,1440807565 +3240,2288,snow,1440807603 +3240,2288,survival,1440807591 +3240,2291,dark comedy,1441227599 +3240,2291,original,1441227593 +3240,2291,surreal,1441227597 +3240,2291,Tim Burton,1441227595 +3240,2459,atmospheric,1443201569 +3240,2459,disturbing,1443201567 +3240,2513,author:Stephen King,1440803750 +3240,2513,dead raising,1441742795 +3240,2513,stephen king,1440803752 +3240,2513,tense,1441742799 +3240,2527,70s sci-fi,1440810749 +3240,2527,robots,1440810754 +3240,2527,sci-fi,1440810742 +3240,2528,dystopia,1440811883 +3240,2528,sci-fi,1440811885 +3240,2532,1970s,1440809440 +3240,2542,black comedy,1441741858 +3240,2542,dark comedy,1441741855 +3240,2542,funny,1441741865 +3240,2542,stylish,1441741861 +3240,2571,cyberpunk,1440806711 +3240,2571,dystopia,1440806709 +3240,2571,sci-fi,1440806705 +3240,2571,virtual reality,1440806707 +3240,2600,Alternate Reality,1440811481 +3240,2600,dreamlike,1440811497 +3240,2600,mindfuck,1440811488 +3240,2600,multiple realities,1441399893 +3240,2600,Sci-Fi,1440811486 +3240,2600,surreal,1440811483 +3240,2600,virtual reality,1441399891 +3240,2641,based on a comic,1440809432 +3240,2641,superhero,1440809430 +3240,2660,aliens,1440812102 +3240,2660,horror,1440812109 +3240,2660,sci-fi,1440812105 +3240,2672,alternate reality,1452334314 +3240,2672,great plot,1452334321 +3240,2672,virtual reality,1452334311 +3240,2683,Mike Myers,1440808500 +3240,2691,genius,1443391588 +3240,2691,great soundtrack,1443391601 +3240,2691,music,1443391594 +3240,2691,ocean,1443391638 +3240,2691,ship,1443391645 +3240,2710,atmospheric,1443201436 +3240,2710,creepy,1443201415 +3240,2710,forest,1443201432 +3240,2710,original,1443201423 +3240,2716,classic,1441225886 +3240,2716,comedy,1441225888 +3240,2716,horror comedy,1441225892 +3240,2762,Atmospheric,1441225745 +3240,2762,mindfuck,1441225749 +3240,2762,twist ending,1441225741 +3240,2858,black comedy,1452253899 +3240,2858,dark comedy,1452253894 +3240,2916,cyberpunk,1440812411 +3240,2916,dystopia,1440812405 +3240,2916,mars,1440812433 +3240,2916,memory,1440812409 +3240,2916,original plot,1440812414 +3240,2916,sci-fi,1440812407 +3240,2985,dystopia,1440811860 +3240,2985,robots,1440811861 +3240,2985,sci-fi,1440811863 +3240,3018,H.P. Lovecraft,1446591231 +3240,3018,humorous,1446591236 +3240,3020,dark comedy,1443201607 +3240,3095,adapted from:book,1440807488 +3240,3095,based on a book,1440807485 +3240,3108,homeless,1440808492 +3240,3108,Terry Gilliam,1440808489 +3240,3147,compassionate,1443564428 +3240,3147,emotional,1443564421 +3240,3147,great acting,1443564423 +3240,3147,prison,1443564426 +3240,3147,social commentary,1443564432 +3240,3147,Stephen King,1443564420 +3240,3156,sci-fi,1440808748 +3240,3354,mars,1440805803 +3240,3354,science fiction,1440805807 +3240,3409,cool concept,1440805506 +3240,3409,premonition,1440805507 +3240,3461,adapted from:book,1446303202 +3240,3461,allegory,1446303214 +3240,3461,island,1446303199 +3240,3461,teenagers,1446303208 +3240,3503,Andrei Tarkovsky,1440809456 +3240,3503,Russian,1440809463 +3240,3527,sci-fi,1440812613 +3240,3527,survival,1440812618 +3240,3535,based on a book,1441392558 +3240,3535,Christian Bale,1441495774 +3240,3535,dark comedy,1441392550 +3240,3535,funny,1441495778 +3240,3535,humorous,1441392552 +3240,3578,action,1440806476 +3240,3578,Epic,1440806487 +3240,3578,historical,1440806483 +3240,3578,history,1440806478 +3240,3578,Rome,1440806474 +3240,3593,aliens,1440805436 +3240,3638,james bond,1440812447 +3240,3677,non-verbal,1440810462 +3240,3677,photography,1440810460 +3240,3677,time-lapse,1440810465 +3240,3703,dystopia,1440812600 +3240,3703,Post apocalyptic,1440812603 +3240,3703,post-apocalyptic,1440812599 +3240,3741,1950s,1440813458 +3240,3741,atmospheric,1440813451 +3240,3753,historical,1440806160 +3240,3753,history,1440806159 +3240,3785,stupid,1440806013 +3240,3793,based on a comic,1440806309 +3240,3793,comic book,1440806294 +3240,3793,marvel,1440806301 +3240,3793,sci-fi,1440806299 +3240,3793,super-hero,1440806297 +3240,3793,superhero,1440806292 +3240,3793,superheroes,1440806305 +3240,3863,alternate reality,1444173314 +3240,3863,atmospheric,1444173315 +3240,3863,beautiful cinematography,1444173324 +3240,3863,dark,1444173326 +3240,3863,dreamlike,1444173318 +3240,3863,stylized,1444173309 +3240,3863,surreal,1444173307 +3240,3863,virtual reality,1444173312 +3240,3949,atmospheric,1443564289 +3240,3949,dark,1443564284 +3240,3949,depressing,1443564279 +3240,3949,drugs,1443564276 +3240,3949,social commentary,1443564287 +3240,3949,visually appealing,1443564293 +3240,3984,james bond,1440807953 +3240,3984,Sean Connery,1440807955 +3240,3993,asylum,1440804996 +3240,3993,BDSM,1440805003 +3240,3993,censorship,1440804991 +3240,3993,freedom of expression,1440804993 +3240,3993,Marquis de Sade,1440805000 +3240,3993,morality,1440804997 +3240,3994,atmospheric,1440806220 +3240,3994,mindfuck,1440806217 +3240,3994,twist ending,1440806211 +3240,4018,stereotypes,1440806005 +3240,4022,adventure,1443564354 +3240,4022,airplane crash,1443564377 +3240,4022,island,1443564356 +3240,4022,isolation,1443564389 +3240,4022,man vs. nature,1443564359 +3240,4022,philosophy,1443564362 +3240,4022,SURVIVAL,1443564351 +3240,4148,atmospheric,1440805912 +3240,4148,Hannibal Lecter,1440805910 +3240,4302,desert,1440812825 +3240,4302,dogme95,1440812834 +3240,4302,ghost town,1440812829 +3240,4302,tourists,1440812832 +3240,4306,fairy tale,1440806464 +3240,4310,historical,1440805846 +3240,4310,History,1440805840 +3240,4310,Romance,1440805842 +3240,4310,World War II,1440805837 +3240,4545,artificial intelligence,1440810173 +3240,4545,robots,1440810176 +3240,4595,nuke,1440810322 +3240,4701,Jackie Chan,1440805704 +3240,4734,cult film,1440810004 +3240,4734,dark comedy,1440809986 +3240,4734,jay and silent bob,1440810002 +3240,4788,Russian,1441226388 +3240,4874,sci-fi,1440813378 +3240,4878,dreamlike,1440811344 +3240,4878,sci-fi,1440811346 +3240,4878,surreal,1440811341 +3240,4878,time travel,1440811339 +3240,4878,twist ending,1440811349 +3240,4896,school drama,1440806382 +3240,4896,teen,1440806389 +3240,4963,plot twist,1440885361 +3240,4975,existentialism,1440810381 +3240,4975,future,1440810393 +3240,4975,mindfuck,1440810379 +3240,4975,nonlinear,1440810391 +3240,4975,sci-fi,1440810384 +3240,4975,surreal,1440810376 +3240,4975,virtual reality,1440810401 +3240,4993,atmospheric,1440806325 +3240,4993,beautifully filmed,1440806317 +3240,4993,epic,1440806319 +3240,5026,18th century,1440805081 +3240,5026,atmospheric,1440805083 +3240,5046,androids,1441835185 +3240,5046,nothing special,1441835171 +3240,5046,sci-fi,1441835187 +3240,5219,Milla Jovovich,1440805573 +3240,5235,cyberpunk,1440810282 +3240,5235,horror,1440810284 +3240,5235,sci-fi,1440810290 +3240,5254,comic book,1440805516 +3240,5254,Marvel,1440805520 +3240,5349,Action,1443564506 +3240,5349,franchise,1443564510 +3240,5349,super-hero,1443564503 +3240,5349,superhero,1443564499 +3240,5410,boring,1440808812 +3240,5410,environment,1440808655 +3240,5410,environmental,1440808663 +3240,5410,isolation,1440808659 +3240,5445,artificial intelligence,1440812301 +3240,5445,futuristic,1440812298 +3240,5445,sci-fi,1440812290 +3240,5463,bad plot,1440805071 +3240,5481,mike myers,1440805816 +3240,5481,satire,1440805830 +3240,5507,Vin Diesel,1440805444 +3240,5630,Hannibal Lecter,1440813323 +3240,5679,scary,1440808211 +3240,5785,crazy,1440805133 +3240,5872,james bond,1440805494 +3240,5903,dystopia,1440810856 +3240,5903,post-apocalyptic,1440810862 +3240,5903,revolution,1440810864 +3240,5903,sci-fi,1440810877 +3240,5903,totalitarianism,1440810860 +3240,5952,atmospheric,1440809562 +3240,5952,based on a book,1440809559 +3240,5952,Epic,1440809567 +3240,6242,atmospheric,1440812661 +3240,6242,curse,1440812670 +3240,6243,curse,1446590922 +3240,6243,Horror,1446590926 +3240,6243,japanese horror,1446590918 +3240,6250,Morgan Freeman,1440804359 +3240,6250,Stephen King,1440804353 +3240,6305,boring,1440812281 +3240,6323,dark,1440807745 +3240,6323,surreal,1440807744 +3240,6323,twist ending,1440807733 +3240,6333,comic book,1440806432 +3240,6333,marvel,1440806430 +3240,6333,sci-fi,1440806434 +3240,6333,super-hero,1440806437 +3240,6333,superhero,1440806428 +3240,6365,cyberpunk,1440811048 +3240,6365,existentialism,1440811087 +3240,6365,Post apocalyptic,1440811083 +3240,6365,post-apocalyptic,1440811065 +3240,6365,sci-fi,1440811079 +3240,6365,virtual reality,1440811046 +3240,6502,atmospheric,1440808424 +3240,6502,post-apocalyptic,1440808409 +3240,6502,sci-fi,1440808419 +3240,6502,stylized,1440808422 +3240,6502,survival,1440808415 +3240,6502,zombies,1440808412 +3240,6534,comic book,1440805540 +3240,6534,marvel,1440805530 +3240,6534,super hero,1440805543 +3240,6534,super-hero,1440805547 +3240,6534,superhero,1440805535 +3240,6537,apocalypse,1440805994 +3240,6537,artificial intelligence,1440805991 +3240,6537,franchise,1440805978 +3240,6645,classic,1440809365 +3240,6645,dystopia,1440809362 +3240,6645,robots,1440809368 +3240,6659,black comedy,1446591073 +3240,6659,dark comedy,1446591083 +3240,6659,monster,1446591071 +3240,6707,forest,1440813434 +3240,6874,nonlinear,1440806345 +3240,6874,stylized,1440806348 +3240,6934,artificial intelligence,1440811466 +3240,6934,cyberpunk,1440811454 +3240,6934,Post apocalyptic,1440811458 +3240,6934,post-apocalyptic,1440811456 +3240,6934,robots,1440811461 +3240,6934,sci-fi,1440811449 +3240,6934,virtual reality,1440811452 +3240,6952,asylum,1440804590 +3240,6987,german expressionism,1440808436 +3240,6987,surreal,1440808437 +3240,6987,twist ending,1440808442 +3240,7128,future,1440809252 +3240,7128,H.G. Wells,1440809244 +3240,7153,atmospheric,1440806612 +3240,7153,epic,1440806605 +3240,7153,epic adventure,1440806602 +3240,7153,stylized,1440806600 +3240,7236,dystopia,1441393271 +3240,7236,dystopic future,1441393283 +3240,7236,post-apocalyptic,1441393270 +3240,7254,alternate reality,1440807467 +3240,7254,sci-fi,1440807470 +3240,7254,time travel,1440807466 +3240,7254,twist ending,1440807472 +3240,7347,based on a book,1440804982 +3240,7347,Stephen King,1440804975 +3240,7361,nonlinear,1440806863 +3240,7361,sci-fi,1440806884 +3240,7361,surreal,1440806860 +3240,7438,atmospheric,1440806410 +3240,7438,stylized,1440806413 +3240,7438,twist ending,1440806419 +3240,7454,steampunk,1440805423 +3240,7458,Epic,1440805784 +3240,7458,historical epic,1440805793 +3240,7481,adapted from:book,1440809593 +3240,7481,aliens,1440809581 +3240,7481,based on a book,1440809602 +3240,7481,future,1440809587 +3240,7569,james bond,1440809212 +3240,7817,esoteric plotlines,1443565760 +3240,7817,style,1443565775 +3240,7991,dystopia,1440809377 +3240,8361,apocalypse,1440807855 +3240,8361,catastrophe,1440807852 +3240,8361,natural disaster,1440807853 +3240,8361,Post apocalyptic,1440807858 +3240,8361,survival,1440807876 +3240,8371,Riddick,1440805273 +3240,8371,sci-fi,1440805269 +3240,8371,space,1440805264 +3240,8622,conspiracy theory,1440805877 +3240,8622,Michael Moore,1440805874 +3240,8636,comic book,1440806449 +3240,8636,marvel,1440806452 +3240,8636,superhero,1440806447 +3240,8644,artificial intelligence,1440806038 +3240,8644,dystopia,1440806051 +3240,8644,future,1440806047 +3240,8644,Isaac Asimov,1440806045 +3240,8644,robots,1440806039 +3240,8644,sci-fi,1440806041 +3240,8665,realistic action,1440806238 +3240,8810,franchise,1440805407 +3240,8810,sci-fi,1440805410 +3240,8861,Milla Jovovich,1440804960 +3240,8861,Post apocalyptic,1440804958 +3240,8861,zombies,1440804957 +3240,8865,aviation,1440805147 +3240,8865,dieselpunk,1440805143 +3240,8865,steampunk,1440805141 +3240,8950,dark,1440805676 +3240,8950,twist ending,1440805673 +3240,8984,boring,1440893035 +3240,8984,not as good as the first,1440892997 +3240,8985,Marvel,1440804781 +3240,26242,Steven Spielberg,1440813394 +3240,26242,truck,1440813388 +3240,26444,based on a book,1440812228 +3240,26444,douglas adams,1440812230 +3240,26444,sci-fi,1440812233 +3240,27338,despair,1444167187 +3240,27338,dungeon,1444167210 +3240,27338,twist,1444167212 +3240,27482,sci-fi,1440810579 +3240,27611,based on a TV show,1440807672 +3240,27611,made for TV,1440807666 +3240,27611,sci-fi,1440807643 +3240,27611,space,1440807646 +3240,27660,cyberpunk,1440811098 +3240,27660,sci-fi,1440811101 +3240,27793,B-movie,1440809349 +3240,27793,low budget,1440809354 +3240,27793,sci-fi,1440809345 +3240,27904,sci-fi,1440813602 +3240,27904,stylized,1440813606 +3240,30707,boxing,1440808106 +3240,30793,based on a book,1440805893 +3240,30793,dark,1440805897 +3240,30793,Johnny Depp,1440805889 +3240,30793,Tim Burton,1440805887 +3240,30803,magic realism,1440807987 +3240,30803,silent,1440807999 +3240,30812,aviation,1440805774 +3240,30812,biography,1440805771 +3240,30816,Musical,1440804519 +3240,30816,Romance,1440804521 +3240,31696,comic book,1440807901 +3240,31696,good versus evil,1440807912 +3240,32460,existential,1441226680 +3240,32460,road trip,1441226644 +3240,32554,anime,1440808372 +3240,32554,Cyberpunk,1440808374 +3240,32554,space travel,1440808377 +3240,32554,Steampunk,1440808370 +3240,32587,atmospheric,1440806260 +3240,32587,black comedy,1440806263 +3240,32587,corruption,1440806280 +3240,32587,dark,1440806270 +3240,32587,multiple storylines,1440806245 +3240,32587,stylized,1440806247 +3240,32825,cryonics,1440812359 +3240,32825,Post apocalyptic,1440812354 +3240,32825,time travel,1440812356 +3240,32898,space,1440812368 +3240,33004,based on a book,1440811372 +3240,33004,douglas adams,1440811389 +3240,33004,end of the world,1440811382 +3240,33004,humor,1440811379 +3240,33004,post-apocalyptic,1440811384 +3240,33004,sarcasm,1440811376 +3240,33004,sci-fi,1440811370 +3240,33004,space,1440811374 +3240,33004,space travel,1440811394 +3240,33493,dark,1440806117 +3240,33493,franchise,1440806126 +3240,33493,great soundtrack,1440806136 +3240,33493,sci-fi,1440806114 +3240,33493,space,1440806111 +3240,33493,space opera,1440806123 +3240,33794,atmospheric,1440806827 +3240,33794,based on comic,1440806853 +3240,33794,comic,1440806847 +3240,33794,comic book,1440806834 +3240,33794,dark,1440806825 +3240,33794,super hero,1440806843 +3240,33794,super-hero,1440806830 +3240,33794,superhero,1440806816 +3240,34048,adapted from:book,1440807944 +3240,34048,aliens,1440807924 +3240,34048,H.G. Wells,1440807929 +3240,34048,sci-fi,1440807927 +3240,34292,cyberpunk,1440810549 +3240,34292,industrial music,1440810552 +3240,34292,post-apocalyptic,1440810538 +3240,34292,robot,1440810544 +3240,34292,sci-fi,1440810555 +3240,34319,dystopia,1440813105 +3240,34319,immortality,1440813112 +3240,34319,sci-fi,1440813108 +3240,34405,comedy,1440809488 +3240,34405,Firefly,1440809476 +3240,34405,sci-fi,1440809471 +3240,34405,space,1440809472 +3240,34405,SPACE TRAVEL,1440809484 +3240,34405,space western,1440809502 +3240,37380,monsters,1440809660 +3240,37729,19th century,1440805466 +3240,37729,black comedy,1440805458 +3240,37729,dark,1440805461 +3240,37729,gothic,1440805455 +3240,37729,Tim Burton,1440805454 +3240,40617,dark,1440945746 +3240,40617,subterranean,1440945767 +3240,40617,subway,1440945764 +3240,40617,underground trains,1440945756 +3240,40732,cave,1452334072 +3240,40732,twist ending,1440803422 +3240,40815,dark,1440806062 +3240,40815,Good versus evil,1440806065 +3240,42351,nuclear war,1440813002 +3240,42351,post-apocalyptic,1440813010 +3240,42351,realism,1440813017 +3240,43832,H.P. Lovecraft,1440812983 +3240,43928,comic book,1440810990 +3240,43928,Milla Jovovich,1440810986 +3240,43928,sci-fi,1440810984 +3240,44191,comic book,1440806935 +3240,44191,dystopia,1440806932 +3240,44191,sci-fi,1440806939 +3240,44195,dark comedy,1440808390 +3240,44195,dark humor,1440808395 +3240,44195,satire,1440808392 +3240,44974,paedophilia,1451839928 +3240,44974,torture,1451839925 +3240,45081,atmospheric,1440804251 +3240,45081,post-apocalyptic,1440804254 +3240,45442,natural disaster,1440810207 +3240,45442,ocean,1440810206 +3240,45442,survival,1440810223 +3240,45499,comic book,1440809645 +3240,45499,marvel,1440809647 +3240,45499,superhero,1440809643 +3240,46723,multiple storylines,1440813630 +3240,46723,visually stunning,1440813635 +3240,47465,drugs,1440812907 +3240,47465,Terry Gilliam,1440812895 +3240,47610,19th century,1440805935 +3240,47610,twist ending,1440805932 +3240,48043,atmospheric,1440812165 +3240,48043,dreamlike,1440812163 +3240,48043,immortality,1440812167 +3240,48043,multiple storylines,1440812174 +3240,48043,nonlinear,1440812182 +3240,48043,sci-fi,1440812179 +3240,48043,visually appealing,1440812161 +3240,48304,adventure,1440805021 +3240,48304,history,1440805017 +3240,48304,survival,1440805017 +3240,48385,satire,1440805856 +3240,48394,alternate reality,1440806907 +3240,48394,atmospheric,1440806897 +3240,48394,dark fantasy,1440806917 +3240,48394,fairy tale,1440806900 +3240,48394,history,1440806921 +3240,48394,stylized,1440806903 +3240,48394,surreal,1440806896 +3240,48394,world war II,1440806910 +3240,48774,apocalypse,1440812063 +3240,48774,atmospheric,1440812065 +3240,48774,dystopia,1440812061 +3240,48774,end of the world,1440812074 +3240,48774,futuristic,1440812071 +3240,48774,sci-fi,1440812069 +3240,48774,survival,1440812066 +3240,48997,18th century,1440804478 +3240,48997,based on a book,1440804474 +3240,48997,creativity,1440804491 +3240,48997,obsession,1440804494 +3240,48997,serial killer,1440804488 +3240,49272,James Bond,1440807967 +3240,50804,Hannibal Lecter,1440807630 +3240,50804,romantic,1440807633 +3240,52328,dark,1440812205 +3240,52328,physics,1440812216 +3240,52328,sci-fi,1440812202 +3240,52328,space,1440812201 +3240,52722,based on a comic,1440805598 +3240,52722,comic book,1440805590 +3240,52722,Comic Book adaption,1440805600 +3240,52722,Marvel,1440805586 +3240,52722,superhero,1440805588 +3240,53000,post-apocalyptic,1440803981 +3240,53000,survival,1440805392 +3240,53000,zombies,1440803983 +3240,53161,Cute story,1443565918 +3240,53322,boring,1440938988 +3240,54995,crude humor,1440809229 +3240,54995,zombies,1440809227 +3240,55232,Milla Jovovich,1440804338 +3240,55247,atmospheric,1440809844 +3240,55247,based on a true story,1440809835 +3240,55247,coming of age,1440809852 +3240,55247,road trip,1440809838 +3240,55247,snow,1440809887 +3240,55282,remote location,1440803397 +3240,55282,survival,1440803392 +3240,55282,vampire,1440803388 +3240,55820,1980s,1440807044 +3240,55820,atmospheric,1440807054 +3240,55820,dark,1440807034 +3240,55820,thriller,1440807037 +3240,55820,twist ending,1440807046 +3240,55908,dialogue driven,1440813583 +3240,55908,immortality,1440813585 +3240,55908,science fiction,1440813589 +3240,56145,apocalypse,1440809611 +3240,56145,atmospheric,1440809615 +3240,56145,based on a book,1440809634 +3240,56145,disaster,1440809629 +3240,56145,giant monster,1440809617 +3240,56145,stephen king,1440809609 +3240,56145,surprise ending,1440809625 +3240,56145,Survival,1440809613 +3240,56145,twist ending,1440809627 +3240,56174,alone in the world,1440811830 +3240,56174,based on a book,1440804003 +3240,56174,post-apocalyptic,1440803991 +3240,56174,sci-fi,1440811833 +3240,56174,survival,1440803996 +3240,56174,zombies,1440803994 +3240,56757,19th century,1440805364 +3240,56757,dark,1440805366 +3240,56757,dark comedy,1440805351 +3240,56757,gothic,1440805356 +3240,56757,Musical,1440805349 +3240,56757,Tim Burton,1440805347 +3240,56801,franchise,1440809013 +3240,56921,based on a tv show,1440808836 +3240,56921,sci-fi,1440808834 +3240,56921,space,1440808823 +3240,57274,atmospheric,1440803457 +3240,57274,infection,1440803461 +3240,57274,zombies,1440803451 +3240,57368,city under attack,1440810254 +3240,57368,giant monster,1440810258 +3240,57368,mockumentary,1440810266 +3240,57640,based on a comic,1440804918 +3240,58025,teen,1440804769 +3240,58025,teleportation,1440804763 +3240,58025,terrible plot,1440804766 +3240,58293,ancient civilization,1440804599 +3240,58293,historically inaccurate,1440804601 +3240,58554,bullying,1448653748 +3240,58559,Atmospheric,1440807163 +3240,58559,comic book,1440807180 +3240,58559,dark,1440807162 +3240,58559,stylized,1440807175 +3240,58559,superhero,1440807159 +3240,59315,adventure,1440806191 +3240,59315,based on a comic,1440806197 +3240,59315,comic book,1440806182 +3240,59315,Marvel,1440806180 +3240,59315,Marvel Cinematic Universe,1440806200 +3240,59315,sci-fi,1440806184 +3240,59315,superhero,1440806177 +3240,59315,technology,1440806188 +3240,59501,narnia,1440804459 +3240,59615,adventure,1440805483 +3240,59615,archaeology,1440805479 +3240,59615,stupid,1440805486 +3240,60040,comic book,1440809527 +3240,60040,Marvel,1440809535 +3240,60040,superhero,1440809530 +3240,60040,The Avengers,1440809532 +3240,60069,artificial intelligence,1440810192 +3240,60069,robots,1440810183 +3240,60069,Sci-Fi,1440810187 +3240,60684,dark hero,1440812787 +3240,60684,misanthropic,1440812814 +3240,60684,stylized,1440812739 +3240,60684,too long,1440812790 +3240,60904,based on book,1440810020 +3240,60904,Bulgakov,1440810030 +3240,60904,social commentary,1440810023 +3240,61323,Comedy,1443201850 +3240,61323,dark comedy,1443201840 +3240,61323,dark humor,1443201856 +3240,61323,funny,1443201852 +3240,61323,satire,1443201844 +3240,61323,stupidity,1443201847 +3240,61323,twists & turns,1443201858 +3240,62203,torture,1441140074 +3240,62376,adventure,1440967436 +3240,62376,atmosphere,1440804076 +3240,62376,post-apocalyptic,1440967441 +3240,62376,steampunk,1440804069 +3240,62376,stylistic,1440967433 +3240,62644,dictatorship,1440813231 +3240,63072,based on a book,1440804386 +3240,63072,dystopia,1440804375 +3240,63072,post-apocalyptic,1440804374 +3240,63072,survival,1440804388 +3240,63113,James Bond,1440810099 +3240,63992,teen,1440804943 +3240,63992,Teen movie,1440804936 +3240,63992,teenagers,1440804946 +3240,64508,aliens,1440809517 +3240,64508,satire,1440809515 +3240,64508,sci-fi,1440809513 +3240,65868,gothic,1440810728 +3240,65868,musical,1440810729 +3240,65868,rock opera,1440810731 +3240,65868,sci-fi,1440810734 +3240,65982,action,1448665363 +3240,65982,fantasy,1448665365 +3240,65982,sci-fi,1448665361 +3240,65982,space,1448665367 +3240,65982,vikings,1448665359 +3240,66097,dark,1440805241 +3240,66097,stop motion,1440805238 +3240,66097,Surreal,1440805235 +3240,66097,Tim Burton,1440805253 +3240,68237,artificial intelligence,1440807065 +3240,68237,isolation,1440807074 +3240,68237,Sci-fi,1440807061 +3240,68237,space,1440807062 +3240,68237,twist ending,1440807067 +3240,68358,franchise,1440805966 +3240,68358,future,1440805958 +3240,68358,sci-fi,1440805956 +3240,68358,space,1440805954 +3240,68791,artificial intelligence,1440811433 +3240,68791,franchise,1440811428 +3240,68791,post-apocalyptic,1440811425 +3240,68791,robots,1440811435 +3240,68791,sci-fi,1440811431 +3240,69526,plot holes,1440804803 +3240,69526,robots,1440804793 +3240,70286,atmospheric,1440807835 +3240,70286,sci-fi,1440807828 +3240,70286,South Africa,1440807832 +3240,71057,giant robots,1440811530 +3240,71057,post-apocalyptic,1440811521 +3240,71057,sci-fi,1440811524 +3240,71057,surreal,1440811534 +3240,71057,survival,1440811540 +3240,71135,amnesia,1440811673 +3240,71135,atmospheric,1440811683 +3240,71135,future,1440811676 +3240,71135,horror,1440811674 +3240,71135,post-apocalyptic,1440811664 +3240,71135,sci-fi,1440811669 +3240,71135,space,1440811666 +3240,71135,space travel,1440811671 +3240,71135,twist ending,1440811678 +3240,71530,alternate reality,1440811554 +3240,71530,future,1440811560 +3240,71530,robots,1440811562 +3240,71530,sci-fi,1440811552 +3240,71530,surreal,1440811567 +3240,71530,technology,1440811558 +3240,71535,dark comedy,1440805748 +3240,71535,post-apocalyptic,1440805750 +3240,71535,zombies,1440805752 +3240,71573,Antarctica,1442707647 +3240,71573,cold,1442707663 +3240,71573,ice world,1442707657 +3240,71573,polar,1442707661 +3240,71899,asperger syndrome,1440810088 +3240,71899,dark comedy,1440810086 +3240,71899,touching,1440810082 +3240,72308,sci-fi,1440808988 +3240,72407,bad acting,1440804182 +3240,72407,bad cgi,1440804188 +3240,72407,formulaic,1440804192 +3240,72407,teen,1440808565 +3240,72554,prison,1440808360 +3240,72554,Spain,1440808362 +3240,72998,ecology,1440811187 +3240,72998,futuristic,1440811174 +3240,72998,predictable,1440811178 +3240,72998,sci-fi,1440811170 +3240,72998,too long,1440811184 +3240,73321,dystopia,1440804730 +3240,73321,future,1440804740 +3240,73321,post-apocalyptic,1440804728 +3240,73321,survival,1440804737 +3240,73321,twist ending,1440804741 +3240,74228,atmospheric,1440946035 +3240,74228,puzzle,1440946089 +3240,74228,sci fi,1440946056 +3240,74228,scifi,1440946058 +3240,74228,ship,1440946075 +3240,74228,Surreal,1440946032 +3240,74228,time loop,1440946038 +3240,74228,time travel,1440946040 +3240,74228,twist ending,1440946046 +3240,74727,Soviet Union,1440809219 +3240,74868,adapted from:book,1443821614 +3240,74868,England,1443821616 +3240,75395,survival horror,1440810299 +3240,77795,open ending,1440811728 +3240,77795,space travel,1440811725 +3240,80463,computers,1440805725 +3240,80831,atmospheric,1442707558 +3240,80831,dark,1442707556 +3240,81516,Dark Ages,1446590901 +3240,81516,disease,1446590854 +3240,81516,England,1446590851 +3240,81516,inquisition,1446590896 +3240,81516,knight,1446590903 +3240,81516,medieval,1446590898 +3240,81516,plague,1446590856 +3240,81591,atmospheric,1440807305 +3240,81834,dark,1440805613 +3240,82095,Alien Invasion,1440809281 +3240,82095,evil ending,1440809289 +3240,82461,bad plot,1440811653 +3240,82461,futuristic,1440811649 +3240,82461,sci-fi,1440811648 +3240,83134,black comedy,1440804711 +3240,83134,parody,1440804715 +3240,83613,aliens,1448665381 +3240,84152,human potential,1440810633 +3240,84152,transhumanism,1440810638 +3240,84152,visually appealing,1440810627 +3240,84716,island,1440808294 +3240,84716,isolation,1440808188 +3240,84716,Korean,1440808176 +3240,84716,surreal,1440808171 +3240,84716,survival,1440808180 +3240,84954,fate,1440808848 +3240,84954,free will,1440808857 +3240,84954,Romance,1440808850 +3240,85056,superhero,1440810951 +3240,85056,teen movie,1440810960 +3240,85414,parallel universe,1440810900 +3240,85414,sci-fi,1440810910 +3240,85414,science fiction,1440810904 +3240,85414,stylized,1440810916 +3240,85414,time loop,1440810902 +3240,85414,twist ending,1440810906 +3240,85438,adapted from:book,1443563375 +3240,85438,beautiful scenery,1443563367 +3240,85438,beautifully filmed,1443563378 +3240,85438,gothic,1443563370 +3240,85438,historical,1443563392 +3240,85438,historical romance,1443563384 +3240,85438,Romanticism,1443563407 +3240,86332,Marvel,1440805283 +3240,86332,Marvel Cinematic Universe,1440805309 +3240,86835,based on a comic,1440809023 +3240,86880,franchise,1440804404 +3240,87306,aliens,1440811793 +3240,87306,predictable,1440811796 +3240,87306,sci-fi,1440811790 +3240,87520,audience intelligence underestimated,1440809543 +3240,87520,franchise,1440809550 +3240,87520,robots,1440809546 +3240,88125,atmospheric,1440805562 +3240,88125,epic,1440805557 +3240,88125,franchise,1440805565 +3240,88129,atmospheric,1451847108 +3240,88129,minimalistic,1451847114 +3240,88129,stylized,1451847117 +3240,88140,comic book,1440810165 +3240,88140,Marvel,1440810161 +3240,88140,superhero,1440810162 +3240,88744,genetics,1440805032 +3240,89039,melancholic,1443642236 +3240,89039,Parallel worlds,1443642230 +3240,89039,Parallels worlds,1443642232 +3240,89039,visually appealing,1443642227 +3240,89047,Childish,1441226514 +3240,89047,metal soundtrack,1441226520 +3240,89745,comic book,1440810143 +3240,89745,Marvel,1440810141 +3240,89745,superhero,1440810139 +3240,90345,aliens,1440808870 +3240,90345,Antarctica,1440808913 +3240,90345,polar,1440808885 +3240,90345,snow,1440808893 +3240,90405,dystopia,1440811408 +3240,90405,immortality,1440811411 +3240,90405,sci-fi,1440811407 +3240,91500,dystopia,1440804018 +3240,91500,rich and poor,1440804038 +3240,91500,survival,1440804029 +3240,91500,teen,1440809047 +3240,91542,sherlock holmes,1440805092 +3240,91972,apocalypse,1440812686 +3240,91972,nuclear war,1440812775 +3240,91972,nuke,1440812701 +3240,93840,clever,1440804654 +3240,93840,dark comedy,1440804656 +3240,93840,funny,1440804693 +3240,93840,original,1440804659 +3240,93840,original plot,1440804690 +3240,93840,plot twist,1440804663 +3240,93840,weird,1440804683 +3240,93840,zombies,1440804678 +3240,94018,alien invasion,1440810969 +3240,94018,sci-fi,1440810975 +3240,94314,atmospheric,1441226132 +3240,94314,historical,1441226130 +3240,94314,WW2,1441226128 +3240,94314,zombies,1441226107 +3240,94810,artificial intelligence,1443202383 +3240,94810,robots,1443202385 +3240,94864,plot hole,1440811633 +3240,94864,plot holes,1440811638 +3240,94864,religion,1440811629 +3240,94864,sci-fi,1440811619 +3240,94864,space travel,1440811622 +3240,94864,technology,1440811624 +3240,95309,apocalyptic,1446315024 +3240,95309,dark humor,1446315032 +3240,95309,end of the world,1446315030 +3240,95309,road trip,1446315027 +3240,96079,action,1440805208 +3240,96079,James Bond,1440805206 +3240,96610,dystopia,1440811302 +3240,96610,original,1440811309 +3240,96610,sci-fi,1440811300 +3240,96610,science fiction,1440811311 +3240,96610,time travel,1440811298 +3240,96737,based on a comic,1440808702 +3240,96737,Dystopia,1440808695 +3240,96737,post-apocalyptic,1440808696 +3240,96737,sci-fi,1440808699 +3240,97752,atmospheric,1440812125 +3240,97752,dystopia,1440812123 +3240,97752,future,1440812137 +3240,97752,multiple storylines,1440812120 +3240,97752,sci-fi,1440812128 +3240,97752,too long,1440812145 +3240,97752,visually appealing,1440812121 +3240,97936,author:Leo Tolstoy,1443202416 +3240,97936,book,1443202428 +3240,97936,drama,1443202432 +3240,97938,religion,1440809088 +3240,97938,Survival,1440809096 +3240,97988,desease,1441226210 +3240,97988,pandemia,1441226219 +3240,97988,survival,1441226208 +3240,98809,adventure,1440805178 +3240,98809,epic,1440805186 +3240,99114,too long,1440807125 +3240,99149,19th century,1440809734 +3240,99149,musical,1440809717 +3240,99149,revolution,1440809726 +3240,99149,Victor Hugo,1440809721 +3240,99917,strong female lead,1440812248 +3240,100553,documentary,1442067976 +3240,100553,nature,1442067978 +3240,100553,snow,1442067992 +3240,100553,wildlife,1442067980 +3240,101864,atmospheric,1440811745 +3240,101864,future,1440811749 +3240,101864,sci-fi,1440811741 +3240,101864,space,1440811747 +3240,101864,technology,1440811751 +3240,102125,comic book,1440810890 +3240,102125,Marvel,1440810886 +3240,102125,superhero,1440810884 +3240,102445,franchise,1440810112 +3240,102445,space,1440810109 +3240,102666,time travel,1440813243 +3240,102880,boring,1440808774 +3240,102903,illusions,1440807446 +3240,102903,Morgan Freeman,1440807450 +3240,103228,giant robots,1440811597 +3240,103228,robots,1440811603 +3240,103228,sci-fi,1440811600 +3240,103228,silly,1440811611 +3240,103249,Brad Pitt,1440803931 +3240,103249,pandemic,1440803920 +3240,103249,zombies,1440803917 +3240,103253,dystopia,1440811896 +3240,103253,future,1440811903 +3240,103253,poverty,1440811905 +3240,103253,science fiction,1440811898 +3240,103253,social commentary,1440811901 +3240,103306,aliens,1440806570 +3240,103306,great ending,1440806573 +3240,103306,space,1440806565 +3240,103341,aging,1440809310 +3240,103341,aliens,1440809306 +3240,103341,sci-fi,1440809320 +3240,103341,touching,1440809333 +3240,103483,crazy,1446590978 +3240,103483,found footage,1446590960 +3240,103483,gore,1446590970 +3240,103483,horror,1446590961 +3240,103483,shorts,1446590975 +3240,103483,weird,1446590981 +3240,104243,franchise,1440812045 +3240,104243,sci-fi,1440812027 +3240,104243,space western,1440812022 +3240,104243,survival,1440812032 +3240,104841,3D effects,1440807426 +3240,104841,atmospheric,1440807431 +3240,104841,physics,1440807416 +3240,104841,science,1440807423 +3240,104841,space,1440807409 +3240,104841,visually appealing,1440807411 +3240,105519,apocalypse,1441226244 +3240,105519,Childish,1441226248 +3240,105519,Nuclear War,1441226250 +3240,105519,school,1441226254 +3240,105519,teen,1441226270 +3240,105519,weak ending,1441226241 +3240,105844,history,1440808082 +3240,106002,aliens,1440813254 +3240,106002,based on a book,1440813256 +3240,106002,space,1440813252 +3240,106002,twist ending,1440813258 +3240,106072,comic book,1440810715 +3240,106072,Marvel Cinematic Universe,1440810717 +3240,106072,superhero,1440810720 +3240,106100,realism,1440807790 +3240,106100,social commentary,1440807788 +3240,106487,dystopia,1440810692 +3240,106487,teen movie,1440810700 +3240,106489,adventure,1440804816 +3240,106489,based on a book,1440804829 +3240,106489,epic,1440804837 +3240,106489,hobbit,1440804835 +3240,106489,too long,1440804820 +3240,106696,Disney,1440804426 +3240,106920,artificial intelligence,1440812375 +3240,106920,original plot,1440812390 +3240,106920,sci-fi,1440812387 +3240,106920,transhumanism,1440812383 +3240,107017,survival,1440806511 +3240,107017,twist ending,1440806533 +3240,107017,zombies,1440806513 +3240,107406,dark,1440811271 +3240,107406,dystopia,1440811251 +3240,107406,Plot twist,1440811266 +3240,107406,post-apocalyptic,1440811249 +3240,107406,snow,1440811288 +3240,107406,social commentary,1440811253 +3240,107406,surreal,1440811267 +3240,107406,train,1440811259 +3240,107406,trains,1440811257 +3240,108190,teen,1440808966 +3240,109187,meaning of life,1440812915 +3240,109187,Terry Gilliam,1440812917 +3240,109374,great dialogue,1440813526 +3240,109374,stylized,1440813523 +3240,109374,visually appealing,1440813520 +3240,109487,physics,1440813652 +3240,109487,sci-fi,1440813646 +3240,109487,sentimental,1440813662 +3240,109487,space,1440813644 +3240,109487,time travel,1440813657 +3240,109487,time-travel,1440813648 +3240,110387,politics,1443202470 +3240,110407,artificial intelligence,1440810657 +3240,110407,low budget,1440810680 +3240,110407,robot,1440810676 +3240,110407,sci-fi,1440810663 +3240,110730,artificial intelligence,1452334338 +3240,110730,computers,1452334344 +3240,110730,cyborgs,1452334346 +3240,110730,nano-technology,1452334342 +3240,111360,Luc Besson,1440876117 +3240,111360,sci-fi,1440876134 +3240,111360,scifi,1440876135 +3240,111360,transhumanist,1440876123 +3240,111362,based on a comic,1440804903 +3240,111362,Marvel,1440804893 +3240,111362,X-men,1440804898 +3240,111551,horror,1440967301 +3240,111551,thriller,1440967298 +3240,111551,vampire,1440967294 +3240,111759,future,1440810241 +3240,111759,original plot,1440810238 +3240,111759,sci-fi,1440810232 +3240,111759,time loop,1440810230 +3240,111759,time travel,1440810235 +3240,112183,Broadway,1446315861 +3240,112183,dark,1446315856 +3240,112183,magical realism,1446315854 +3240,112623,apocalyptic,1440811769 +3240,112623,sci-fi,1440811767 +3240,112852,Marvel,1440808676 +3240,112852,Marvel Cinematic Universe,1440808682 +3240,112852,space,1440808679 +3240,113741,intelligent,1441139362 +3240,113741,mind bending,1441139359 +3240,113741,parallel universe,1441139357 +3240,113741,sci-fi,1441139373 +3240,114180,dystopia,1440803957 +3240,114180,plot holes,1440803960 +3240,114180,post-apocalyptic,1440803967 +3240,114180,survival,1440803963 +3240,114180,teen,1440808137 +3240,114847,artificial intelligence,1441742730 +3240,114847,atmospheric,1441742751 +3240,114847,Futuristic,1441742748 +3240,114847,post-apocalyptic,1441742732 +3240,115122,dark comedy,1446303366 +3240,115122,humor,1446303368 +3240,115122,stylish,1446303375 +3240,115235,desert,1440967169 +3240,115235,dystopia,1440967182 +3240,115235,future,1440967133 +3240,115235,sci-fi,1440967136 +3240,115235,western,1440967158 +3240,115680,future,1441315718 +3240,115680,sci-fi,1441315731 +3240,115680,surprising,1441315736 +3240,115680,time travel,1441315714 +3240,115680,twist ending,1441315716 +3240,115680,twists,1441315729 +3240,115680,unexpected ending,1441315721 +3240,115713,AI,1440806776 +3240,115713,artificial intelligence,1440806759 +3240,115713,Future,1440806781 +3240,115713,futuristic,1440806772 +3240,115713,isolation,1440806785 +3240,115713,philosophical,1440806764 +3240,115713,plot twist,1440806779 +3240,115713,robots,1440806766 +3240,115713,sci-fi,1440806761 +3240,115713,technology,1440806768 +3240,115713,turing test,1440806791 +3240,115967,apocalypse,1440809140 +3240,115967,drama,1440809122 +3240,115967,end of the world,1440809124 +3240,116215,space marines,1440810621 +3240,116797,Alan Turing,1446303297 +3240,116797,code breaking,1446303303 +3240,116797,computer science,1446303323 +3240,116797,Computers,1446303299 +3240,116797,cryptography,1446303295 +3240,116797,genius,1446303308 +3240,116797,historical,1446303319 +3240,116797,history,1446303306 +3240,116797,informatics,1446303312 +3240,116797,intelligent,1446303317 +3240,116823,teen,1440808577 +3240,117529,dinosaurs,1440808242 +3240,117529,island,1440808248 +3240,117529,sci-fi,1440808245 +3240,120466,AI,1440807807 +3240,120466,artificial intelligence,1440807801 +3240,120466,cyberpunk,1440807804 +3240,120466,die antwoord,1440807809 +3240,120466,robots,1440807802 +3240,120466,sci-fi,1440807816 +3240,120466,South Africa,1440807811 +3240,120799,action,1446303260 +3240,120799,cyborgs,1446303262 +3240,120799,robots,1446303254 +3240,120799,time-travel,1446303256 +3240,121235,mind,1440812338 +3240,121235,sci-fi,1440812331 +3240,122882,dystopian,1440807195 +3240,122882,feminism,1440807202 +3240,122882,feminist,1440807210 +3240,122882,post apocalypse,1440807191 +3240,122882,post apocalyptic,1440807208 +3240,122882,post-apocalyptic,1440807214 +3240,122882,visually appealing,1440807193 +3240,122886,action,1451474157 +3240,122886,franchise,1451474147 +3240,122886,Harrison Ford,1451474138 +3240,122886,space,1451474160 +3240,122902,comic book,1440808927 +3240,122902,Marvel,1440808921 +3240,130636,original plot,1440810426 +3240,130636,social media,1440810414 +3240,132046,For children,1440808979 +3240,133731,Supernatural,1440813619 +3240,134130,mars,1444926872 +3240,134130,Near Future,1444926874 +3240,134130,sci-fi,1444926869 +3240,134130,Space,1444926864 +3240,134130,Survival Instinct,1444926867 +3240,134162,Asylum,1440809270 +3240,139317,catastrophe,1441564787 +3240,139317,ocean,1441564721 +3240,139317,sea bottom,1441564858 +3240,139317,submarine,1441564820 +3240,139317,survival,1441564893 +3240,139317,underwater,1441564901 +3250,8529,heartfelt,1449904913 +3250,8529,humorous,1449904909 +3250,8529,Steven Spielberg,1449904906 +3250,8529,tom hanks,1449904901 +3257,1028,martial arts,1182655913 +3266,260,epoch making,1424373787 +3266,260,force,1424373787 +3266,260,visionary,1424373787 +3266,318,blackmail,1430059016 +3266,318,justice,1430059016 +3266,318,outsmarted,1430059016 +3267,106696,Disney,1442009501 +3267,106696,happy,1442009566 +3267,106696,romance,1442009553 +3280,47,graphic violence,1147722197 +3301,260,George Lucas,1434475357 +3301,260,sci-fi,1434475346 +3301,260,space opera,1434475373 +3304,260,cult classic,1431649859 +3304,260,sci-fi,1431649864 +3309,260,classic,1439472355 +3309,260,sci-fi,1439472256 +3311,58078,inspirational,1221731047 +3311,58078,thought-provoking,1221731050 +3334,94466,action,1425817135 +3334,94466,christopher nolan,1425817135 +3334,94466,new,1425817135 +3355,38304,Catchy Score,1174970366 +3358,1431,Chris Farley,1231030286 +3358,1968,John Hughes,1230906299 +3366,260,epic adventure,1444120261 +3366,260,science fantasy,1444120256 +3371,1197,cult classic,1353800855 +3388,1047,Shane Black,1407255674 +3388,101947,Achtung Baby,1366072272 +3388,106011,cute,1383326843 +3388,106011,no spoken words,1383326881 +3388,106011,short,1383326840 +3388,140341,pixar,1448474604 +3388,140341,short,1448474609 +3396,2571,alternate reality,1433323135 +3396,2571,dark hero,1433323154 +3396,2571,dystopia,1433323110 +3396,2571,fantasy,1433323151 +3396,2571,post apocalyptic,1433323140 +3396,2571,post-apocalyptic,1433323119 +3396,2571,surreal,1433323126 +3396,2571,thought-provoking,1433323131 +3396,2571,virtual reality,1433323115 +3403,10,Best Of the Brosnon Bonds,1139877252 +3403,231,Shit!!,1139877219 +3403,500,Shit!!,1139877211 +3403,858,greatest movie of all time,1139877179 +3403,1101,not terrible,1137378161 +3403,1265,Classic,1139877311 +3403,6873,piss funny,1137378160 +3403,8950,fight club meets memento with great results,1137378971 +3403,33138,brilliant,1154950598 +3403,36525,didn't want to kill myself,1146571683 +3403,43919,stinking heap of shit,1144227859 +3413,2410,Rocky,1330748312 +3413,2642,Superman,1330748285 +3413,3405,Criterion,1330757294 +3434,260,space,1430598821 +3434,260,Star Wars,1430598844 +3442,260,action,1436324546 +3442,260,adventure,1436324524 +3442,260,space,1436324532 +3504,4007,finance,1307828109 +3509,260,Adventure,1438052127 +3509,260,Almost Shakespearean in a way,1438052119 +3533,2427,Adrien Brody,1243503505 +3533,2427,atmospheric,1243503486 +3533,2427,ensemble cast,1243503498 +3533,2427,John Travolta,1243503469 +3533,2427,meditative,1243503522 +3533,2427,philosophical,1243503489 +3533,68358,action,1243503379 +3533,68358,adventure,1243503377 +3533,68358,beginning,1243503413 +3533,68358,future,1243503395 +3533,68358,Leonard Nimoy,1243503381 +3533,68358,sci-fi,1243503383 +3533,68358,time travel,1243503388 +3534,260,classic,1435422661 +3534,260,exciting,1435422668 +3549,380,buddy,1137823144 +3567,4896,Sri-fi,1244735923 +3596,31930,Godard,1221681679 +3596,55946,Iraq War,1215577830 +3596,56511,Iraq War,1226260691 +3596,58876,Iraq War,1215577807 +3657,260,beautiful,1441366128 +3657,260,science fantasy,1441366140 +3658,1215,Sam Raimi,1137596794 +3710,3752,romance,1169290944 +3710,8622,thruth revelation,1245347639 +3710,51084,Date movie,1175774288 +3719,89745,everything,1343088014 +3719,89745,nothing,1343088004 +3734,111,BORING!,1180537862 +3734,57526,Tedious,1212251911 +3734,60514,3D,1216310982 +3734,86882,Oscar 2012,1331210994 +3734,86898,Oscar 2012,1331211175 +3734,90866,Oscar 2012,1331211094 +3734,91126,Oscar 2012,1331211011 +3745,27871,boring,1296410493 +3752,48061,4.5,1171047330 +3773,7153,based on a book,1439965089 +3773,7153,Elijah Wood,1439965110 +3773,7153,Ian McKellen,1439965114 +3773,7153,Peter Jackson,1439965098 +3773,7153,Viggo Mortensen,1439965121 +3773,69844,based on a book,1439965013 +3773,69844,Daniel Radcliffe,1439964999 +3789,111389,marijuana,1429071368 +3789,111389,pot,1429071368 +3789,111389,weed,1429071368 +3817,42721,gratuitous sex,1147731572 +3825,7,remake,1296398939 +3825,54,soccer,1227397380 +3825,1073,Oompa Loompas,1283336479 +3825,1084,gangsters,1259243138 +3825,1203,good dialogue,1277738805 +3825,1246,poetry,1260728258 +3825,1246,Robin Williams,1260728265 +3825,1246,suicide,1260728274 +3825,1625,twist ending,1282682264 +3825,1785,Crime,1231106463 +3825,1916,Mickey Rourke,1260178668 +3825,2024,christianity,1367618032 +3825,4612,christianity,1367618033 +3825,5682,Holocaust,1227206832 +3825,6773,bicycling,1260959559 +3825,6773,Latvian animators,1260959544 +3825,7300,America,1231975365 +3825,8784,Great Soundtrack,1280132986 +3825,8873,Che Guevara,1260178551 +3825,8873,road trip,1290285142 +3825,30793,candy,1283336353 +3825,30793,chocolate,1283336321 +3825,30793,grandparents,1283336402 +3825,30793,mother daughter relationship,1283336377 +3825,30793,MOTHERS AND DAUGHTERS,1283336391 +3825,30793,Oompa Loompas,1283336474 +3825,32444,twist ending,1357571090 +3825,33004,humor,1243287470 +3825,33004,sarcasm,1243287475 +3825,37731,football,1252850827 +3825,46156,murder,1283336666 +3825,46976,Will Ferrell,1333316551 +3825,48394,Civil War,1276430253 +3825,51705,Audrey Tautou,1245666607 +3825,51705,French,1245666601 +3825,53972,bruce willis,1253110872 +3825,53972,IT fail,1253110880 +3825,54967,Alain Sachs,1268167484 +3825,54967,Audrey Tautou,1268167498 +3825,54967,Françoise Bertin,1268167484 +3825,54967,Guillaume Canet,1268167484 +3825,54967,Laurent Stocker,1268167484 +3825,54967,love triangle,1268166780 +3825,54967,stuttering,1268166798 +3825,59026,copywriting,1246224045 +3825,59026,French,1246223661 +3825,59026,Not available from Netflix,1246223666 +3825,59026,Sauerkraut,1246223687 +3825,59369,action,1230588724 +3825,59369,Albanians,1230588712 +3825,59369,crime,1230588697 +3825,59369,Paris,1230588701 +3825,59369,thriller,1230588730 +3825,59709,Elijah Wood,1248441333 +3825,61075,Penélope Cruz,1262277971 +3825,61465,Bangkok,1230558344 +3825,61465,crime,1230558353 +3825,61742,Argentina,1230926971 +3825,61742,Maradona,1230935627 +3825,62250,gang brawls,1232053669 +3825,62250,italy,1232053658 +3825,62250,mafia,1232053653 +3825,62849,Crime,1241648005 +3825,62849,Guy Ritchie,1241648002 +3825,63062,John Malkovich,1256910428 +3825,63082,India,1245881071 +3825,63113,secret service,1241908059 +3825,64499,slow start,1315737962 +3825,66691,heist,1256688187 +3825,66691,Morgan Freeman,1256688179 +3825,66691,Radha Mitchell,1256688214 +3825,66691,unrealistic,1256688175 +3825,68157,Adolf Hitler,1258971619 +3825,68157,Quentin Tarantino,1258970969 +3825,68157,satire,1258971110 +3825,68194,Derby County,1263861906 +3825,68194,English football,1263861897 +3825,68194,Leeds United,1263861905 +3825,68194,soccer,1256910659 +3825,68932,Beethoven,1248097948 +3825,68932,cello,1248097981 +3825,68932,homeless,1248098285 +3825,68932,Jamie Foxx,1248098117 +3825,68932,Journalist,1248098028 +3825,68932,Los Angeles,1248098012 +3825,68932,schizophrenia,1248097920 +3825,68932,violin,1248097976 +3825,69131,Mickey Rourke,1246487070 +3825,69306,New York City,1255692708 +3825,69306,subway,1255692710 +3825,69757,Zooey Deschanel,1262873231 +3825,71619,France,1275170060 +3825,71748,biography,1262455852 +3825,71748,Estonia,1388778867 +3825,71748,Estonian,1262455852 +3825,71748,opera,1262455875 +3825,71748,operetta,1262455875 +3825,72011,airport,1296399085 +3825,72720,gay,1282815080 +3825,72980,mental hospital,1282682189 +3825,72980,psychiatry,1282682156 +3825,74458,ending twist,1278324148 +3825,74458,Martin Scorsese,1278324186 +3825,74789,Johnny Depp,1282815706 +3825,74789,Tim Burton,1282815696 +3825,77800,Pakistan,1295087900 +3825,78039,slow moving plot,1310463208 +3825,78218,twist ending,1353191183 +3825,78218,USA,1353191215 +3825,79185,Tom Cruise,1290205131 +3825,79185,unrealistic,1290205151 +3825,79242,lesbians,1282815847 +3825,79293,unrealistic,1355177263 +3825,79505,snow,1322866523 +3825,79695,Mickey Rourke,1284200026 +3825,79946,advertising,1282925437 +3825,79946,Amber Heard,1283084954 +3825,79946,american dream,1282925615 +3825,79946,Audi,1282925592 +3825,79946,bad ending,1283336790 +3825,79946,Ben Hollingsworth,1283084943 +3825,79946,consumerism,1283085063 +3825,79946,David Duchovny,1282925351 +3825,79946,Demi Moore,1282925360 +3825,79946,Gary Cole,1282925345 +3825,79946,marketing,1282925401 +3825,79946,money,1282925391 +3825,80489,slow,1353353837 +3825,80586,children,1292874924 +3825,80586,classmates,1292874924 +3825,80586,grandfather,1292874991 +3825,80586,love,1292874879 +3825,80586,school,1292874898 +3825,80590,stock market,1292883155 +3825,81018,1950s,1297864326 +3825,81018,animation,1297864311 +3825,81819,gay,1308951532 +3825,81845,based on a true story,1306343511 +3825,81845,stammering,1306343535 +3825,82202,Angelina Jolie,1300094775 +3825,82202,Johnny Depp,1300094777 +3825,82202,Venice,1300094782 +3825,85401,violent,1314209699 +3825,86833,poop humor,1325546513 +3825,86882,Owen Wilson,1320140141 +3825,86898,cinematography,1316554365 +3825,87485,Nudity (Topless - Notable),1311698520 +3825,89904,4:3,1360881475 +3825,90405,word game,1327356463 +3825,90522,gadget car,1327313951 +3825,90522,gadgets,1327313960 +3825,90522,unrealistic,1327313921 +3825,91500,cheesy,1352058332 +3825,91500,intense,1352058338 +3825,91542,Gipsy,1325256943 +3825,91542,unrealistic,1325256966 +3825,94959,boy scouts,1358028269 +3825,94985,Mexico,1352672851 +3825,94985,prison,1352672841 +3825,96417,bicycling,1356904345 +3825,96417,bike messengers,1356904379 +3825,96417,silly,1356904357 +3825,96606,plotless,1422979940 +3825,97304,cia,1359920423 +3825,97860,James Gandolfini,1359920372 +3825,97923,plane crash,1359317336 +3825,99149,musical,1362948565 +3825,100745,Piracy,1425826474 +3825,102686,Las Vegas,1390604397 +3825,104925,dog,1386588619 +3825,104925,Fance,1386588634 +3825,104925,shallow characters,1386588601 +3825,109374,hotel,1403728957 +3825,111661,Greece,1410261939 +3825,113275,cooking,1420720401 +3825,115617,robotics,1424105327 +3825,128360,Western,1452512974 +3837,32,atmospheric,1430919353 +3837,32,great ending,1430919348 +3837,32,post-apocalyptic,1430919342 +3837,32,time travel,1430919344 +3837,223,black and white,1430921900 +3837,223,cynical,1430921904 +3837,223,dialogue driven,1430921906 +3837,223,good dialogue,1430921898 +3837,223,Kevin Smith,1430921896 +3837,260,Flash Gordon space adventure,1430917957 +3837,260,modern myth,1430917943 +3837,344,Jim Carrey,1430920221 +3837,353,dreamlike,1430918800 +3837,353,halloween,1430918813 +3837,353,tedious child character,1430918797 +3837,353,vengeance,1430918807 +3837,968,black and white,1430923961 +3837,968,brilliant ending,1430923958 +3837,968,ominous,1430923973 +3837,968,Race issues,1430923969 +3837,1094,IRA,1430924428 +3837,1175,alternate reality,1431314249 +3837,1175,atmospheric,1431314256 +3837,1175,Black comedy,1431314241 +3837,1175,dark,1431314234 +3837,1175,dark humor,1431314233 +3837,1175,dystopia,1431314252 +3837,1175,music,1431314259 +3837,1175,post-apocalyptic,1431314242 +3837,1175,stylized,1431314254 +3837,1175,surreal,1431314251 +3837,1339,visually rich,1430926957 +3837,1527,Gary Oldman,1430921821 +3837,1527,humorous,1430921829 +3837,1527,multipass,1430921844 +3837,1527,sci-fi,1430921824 +3837,1566,disney,1430919123 +3837,1748,atmospheric,1430919391 +3837,1748,dark fantasy,1430919375 +3837,1748,dreamlike,1430919380 +3837,1748,film noir,1430919405 +3837,1748,Post apocalyptic,1430919372 +3837,1748,steampunk,1430919386 +3837,1748,stylized,1430919393 +3837,1748,surreal,1430919383 +3837,1748,visually appealing,1430919378 +3837,1923,Ben Stiller,1430920247 +3837,1923,Cameron Diaz,1430920251 +3837,1967,David Bowie,1430919478 +3837,1967,Jim Henson,1430919488 +3837,1967,maze,1430919485 +3837,1967,muppets,1430919481 +3837,1967,surreal,1430919483 +3837,2028,AFI 100 (Cheers),1430920910 +3837,2028,emotional speech every half hour,1430920882 +3837,2028,fighting nazis,1430920833 +3837,2028,propaganda,1430920846 +3837,2028,Steven Spielberg,1430920889 +3837,2028,stylized,1430920849 +3837,2028,us glorification,1430920854 +3837,2076,David Lynch,1449495059 +3837,2076,mystery,1449495053 +3837,2076,suburbia,1449495073 +3837,2275,post-apocalyptic,1430920517 +3837,2366,stop motion,1430921265 +3837,2413,quirky,1430920197 +3837,2413,Tim Curry,1430920192 +3837,2542,black comedy,1430918541 +3837,2542,Guy Ritchie,1430918538 +3837,2542,Unique,1430918550 +3837,2657,campy,1430920168 +3837,2657,cult film,1430920162 +3837,2657,music,1430920164 +3837,2657,Quirky,1430920156 +3837,2657,Tim Curry,1430920171 +3837,2959,pseudo-profound,1430920079 +3837,2968,Criterion,1430919465 +3837,2968,history,1430919462 +3837,2968,time travel,1430919461 +3837,3702,dystopia,1431314272 +3837,3702,post-apocalyptic,1431314270 +3837,3793,comic book,1430918914 +3837,3793,sci-fi,1430918903 +3837,3793,super-hero,1430918897 +3837,3793,superhero,1430918911 +3837,3948,Ben Stiller,1430920265 +3837,3948,Robert De Niro,1430920262 +3837,4011,Benicio Del Toro,1430918593 +3837,4011,cynical,1430918581 +3837,4011,ensemble cast,1430918574 +3837,4011,Great dialogue,1430918568 +3837,4011,multiple storylines,1430918572 +3837,4011,stylized,1430918577 +3837,4105,bruce campbell,1430923981 +3837,4105,dark humor,1430923983 +3837,4223,exagerated communists,1430920805 +3837,4223,Nazis,1430920813 +3837,4467,Terry Gilliam,1430919445 +3837,5449,Adam Sandler,1430920302 +3837,5449,Rob Schneider,1430920309 +3837,6987,Conrad Veidt,1430921193 +3837,6987,criterion,1430921213 +3837,6987,german expressionism,1430921188 +3837,6987,kino classic,1430921208 +3837,6987,surreal,1430921189 +3837,6987,tinted black & white,1430921230 +3837,7022,Japan,1430928325 +3837,7022,Takeshi Kitano,1430928328 +3837,8235,Harold Lloyd,1430923284 +3837,8235,silent movie,1430923273 +3837,8528,Vince Vaughn,1431117154 +3837,8641,Steve Carell,1430920235 +3837,8641,Will Ferrell,1430920232 +3837,8674,Cillian Murphy,1430928259 +3837,8674,Ireland,1430928264 +3837,8914,complicated plot,1430919286 +3837,8914,dialogue driven,1430919293 +3837,8914,Sci-Fi,1430919295 +3837,8914,thought-provoking,1430919289 +3837,8914,time travel,1430919284 +3837,30825,Ben Stiller,1430920287 +3837,30825,Robert De Niro,1430920284 +3837,44761,detective movie,1430921955 +3837,44761,film noir,1430921950 +3837,44761,neo-noir,1430921959 +3837,44761,stylized,1430921953 +3837,55820,Coen Brothers,1430919212 +3837,56003,surreal,1430924111 +3837,56003,time travel,1430924112 +3837,57669,atmospheric,1430918628 +3837,57669,beautiful scenery,1430918625 +3837,57669,british comedy,1430918618 +3837,57669,Colin Farrell,1430918621 +3837,57669,dark comedy,1430918609 +3837,59315,Robert Downey Jr.,1430918968 +3837,59315,superhero,1430918966 +3837,59315,vigilante,1430918983 +3837,65642,paradox,1430919322 +3837,65642,plot wending,1430919318 +3837,65642,time travel,1430919314 +3837,66785,Korean,1430921565 +3837,66785,one of a kind,1430921570 +3837,66785,stylized,1430921562 +3837,69809,cg aesthetic,1431913014 +3837,69809,terry gilliam visuals,1431913014 +3837,69809,unexpected sci-fi,1431913014 +3837,74870,Absurdist Humor,1432092878 +3837,74870,Bill Forsyth,1432092854 +3837,74870,dark comedy,1432775985 +3837,74870,Glasgow,1432092859 +3837,74870,offbeat,1432775985 +3837,74870,Robbery Plot,1432092888 +3837,87430,superpowers,1430922053 +3837,97306,Dark Comedy,1430918653 +3837,97306,meta,1430918672 +3837,97306,metafiction,1430918658 +3837,97306,Sam Rockwell,1430918661 +3837,103042,superhero,1430922037 +3837,109848,beautiful photography,1430922368 +3837,112556,more than meets the eye,1430918237 +3837,112556,slow burn,1430918237 +3837,112556,wonderful surprise movie,1430918237 +3837,115713,different experience for computer scientists,1430918418 +3837,122882,Colourful apocalypse,1431913070 +3837,122882,post apocalypse,1431913055 +3837,132480,bland characters,1432776098 +3837,132480,drama,1432776109 +3837,132480,romance,1432776105 +3837,132480,silly voiceovers,1432776132 +3837,132480,unoffensive,1432776059 +3850,1,Disney,1213366554 +3850,1907,Disney,1210859081 +3850,2081,Disney,1210857993 +3874,26674,aaaa,1422178567 +3874,26674,vdfbdf,1422178575 +3874,26674,yjuyjut,1422178578 +3878,30707,fight,1429653270 +3878,63082,competition,1429653242 +3880,2959,philosophy,1453508907 +3880,2959,satirical,1453508924 +3880,2959,surreal,1453508912 +3880,2959,violence,1453508905 +3880,44191,philosophy,1453508602 +3880,44191,thought-provoking,1453508612 +3880,44191,torture,1453508631 +3889,89745,avengers,1450642892 +3889,89745,comic book,1450642922 +3889,89745,great humor,1450642910 +3889,89745,Marvel,1450642888 +3889,89745,Scarlett Johansson,1450642905 +3889,89745,superhero,1450642920 +3889,110102,avengers,1450642826 +3891,608,crazy,1247323506 +3891,5418,book is so much better,1247323344 +3891,8665,book is so much better,1247323357 +3891,26614,book is so much better,1247323324 +3911,6953,Clea DuVall,1173810827 +3911,32587,based on a comic,1255181820 +3911,32587,black comedy,1255181871 +3911,32587,Bruce Willis,1255181810 +3911,32587,Jessica Alba,1255181800 +3911,32587,Quentin Tarantino,1255181785 +3911,32587,Robert Rodriguez,1255181945 +3911,32587,superhero,1255181856 +3911,32587,violence,1255181875 +3911,52281,Quentin Tarantino,1255182022 +3911,52281,Robert Rodriguez,1255182018 +3911,53519,great soundtrack,1255182091 +3911,53519,grindhouse,1255182065 +3911,53519,Kurt Russell,1255182076 +3911,53519,Quentin Tarantino,1255182068 +3911,54995,Bruce Willis,1255182136 +3911,54995,grindhouse,1255182170 +3911,54995,machine gun leg,1255182160 +3911,54995,Robert Rodriguez,1255182127 +3911,54995,zombies,1255182131 +3911,61401,Frank Miller,1255181133 +3911,61401,Samuel L. Jackson,1255181107 +3911,61401,Scarlett Johansson,1255181120 +3930,318,great acting,1437493034 +3930,356,20th century,1438167546 +3930,356,bittersweet,1438167546 +3930,356,drama,1438167546 +3930,608,crime,1437492719 +3930,608,dark comedy,1437492731 +3930,608,witty,1437492729 +3930,858,Al Pacino,1437493327 +3930,858,atmospheric,1437493316 +3930,858,great acting,1437493321 +3930,858,Mafia,1437493337 +3930,858,Marlon Brando,1437493300 +3930,858,melancholy,1437493313 +3930,858,organized crime,1437493311 +3930,858,violence,1437493341 +3930,1237,death,1452358079 +3930,1237,existentialism,1452358072 +3930,1617,anti-hero,1437492824 +3930,1617,complex,1437492812 +3930,1617,conspiracy,1437492788 +3930,1617,corruption,1437492819 +3930,1617,dark,1437492798 +3930,1617,detective thriller,1437492796 +3930,1617,film noir,1437492801 +3930,1617,Kevin Spacey,1437493397 +3930,1617,neo-noir,1437492781 +3930,1617,noir thriller,1437492809 +3930,1617,Police,1437493403 +3930,1617,suspense,1437492790 +3930,1617,twist ending,1437492810 +3930,1617,visually appealing,1437492815 +3930,2959,quirky,1437493070 +3930,2959,social commentary,1437493078 +3930,2959,surreal,1437493059 +3930,2959,violent,1437493063 +3930,3160,cynical,1437493160 +3930,3160,melancholy,1437493166 +3930,3160,multiple storylines,1437493173 +3930,4226,black and white,1437493020 +3930,4226,cult film,1437493010 +3930,4226,mystery,1437493004 +3930,4226,narrated,1437492993 +3930,4226,nonlinear,1437492979 +3930,4226,stylized,1437493001 +3930,4308,colourful,1437493526 +3930,4308,stylized,1437493514 +3930,4308,visually stunning,1437493516 +3930,5952,Adventure,1437493366 +3930,5952,atmospheric,1437493382 +3930,5952,Epic,1437493371 +3930,5952,fantasy,1437493355 +3930,5952,great soundtrack,1437493363 +3930,5952,multiple storylines,1437493369 +3930,5952,scenic,1437493360 +3930,5995,true story,1437493120 +3930,48774,adapted from:book,1437492875 +3930,48774,apocalypse,1437492850 +3930,48774,atmospheric,1437492867 +3930,48774,bleak,1437492883 +3930,48774,depressing,1437493442 +3930,48774,disturbing,1437492881 +3930,48774,dystopia,1437492897 +3930,48774,environmental,1437493440 +3930,48774,grim,1437492886 +3930,48774,gritty,1437492879 +3930,48774,sci-fi,1437492900 +3930,48774,social commentary,1437493445 +3930,48774,survival,1437492893 +3930,48774,thought-provoking,1437492868 +3930,48774,thriller,1437492889 +3930,48774,visually appealing,1437493431 +3930,55052,great cinematography,1437493190 +3930,55052,great soundtrack,1437493207 +3930,55118,Viggo Mortensen,1449936707 +3930,55118,violent,1449936719 +3930,56286,cate blanchett,1449937022 +3930,56286,surreal,1449937019 +3930,57669,black comedy,1438167675 +3930,57669,Brendan Gleeson,1438167714 +3930,57669,british comedy,1438167704 +3930,57669,Colin Farrell,1438167678 +3930,57669,dark comedy,1438167661 +3930,57669,depression,1438167701 +3930,57669,irish accent,1438167696 +3930,57669,irreverent,1438167684 +3930,57669,Ralph Fiennes,1438167698 +3930,57669,stylized,1438167691 +3930,70728,alter ego,1438167425 +3930,70728,Tom Hardy,1438167433 +3930,79132,dreamlike,1437493469 +3930,79132,great soundtrack,1437493475 +3930,79132,intellectual,1437493473 +3930,79132,Intense,1437493483 +3930,79132,multiple interpretations,1437493496 +3930,79132,surreal,1437493467 +3930,79132,visually appealing,1437493471 +3930,88129,cinematography,1437493226 +3930,88129,heist,1437493240 +3930,88129,little dialogue,1437493237 +3930,88129,minimalistic,1437493246 +3930,88129,soundtrack,1437493231 +3930,88129,tense,1437493253 +3930,89753,acting,1437492953 +3930,89753,Beautifully shot,1437492940 +3930,89753,Cold War,1437492958 +3930,89753,espionage,1437492944 +3930,89753,slow paced,1437492951 +3930,89753,Spies,1437492961 +3930,91658,dark,1437827392 +3930,91658,journalism,1437827418 +3930,91658,mystery,1437827390 +3930,91658,rape,1437827430 +3930,91658,strong female lead,1437827399 +3930,91658,suspense,1437827385 +3930,91658,thriller,1437827407 +3930,107406,dystopia,1449937416 +3930,107406,social commentary,1449937433 +3930,107406,surreal,1449937430 +3930,107406,tilda swinton,1449937419 +3930,109374,odd sense of humor,1437493090 +3930,109374,visually appealing,1437493096 +3930,112183,cinematography,1437493548 +3930,112183,dark,1437493569 +3930,112183,Edward Norton,1437493542 +3930,112183,movie business,1437493592 +3930,112183,pretentious,1437493572 +3930,112183,satire,1437493580 +3930,112183,single shot,1437493538 +3930,112183,superhero,1437493588 +3930,112183,surreal,1437493558 +3930,122882,beautiful,1450993998 +3930,122882,Colourful apocalypse,1450993995 +3930,122882,desert,1450993986 +3930,122882,dystopian,1450993992 +3930,122882,feminism,1450993988 +3930,122882,feminist,1450993981 +3930,122882,practical effects,1450994005 +3930,122882,visually appealing,1450993978 +3959,4903,riveting,1305961582 +3959,6299,gorgeous,1305960524 +3959,6852,suspense,1305960326 +3962,260,adventure,1437923059 +3962,260,classic,1437923066 +3962,260,Science Fiction,1437923038 +3962,260,space epic,1437923049 +3976,260,classic sci-fi,1436279642 +3976,260,sci-fi,1436279617 +3976,260,space adventure,1436279624 +3986,5349,New York City,1245254411 +3986,5349,no totally happy ending,1245254417 +3986,5349,super-hero,1245254398 +3986,5349,superhero,1245254430 +3986,5349,Tobey Maguire,1245254425 +3986,6333,sci-fi,1245297381 +3986,8636,action,1245297273 +3986,8636,based on comic,1245297259 +3986,8636,New York City,1245297278 +3986,8636,Saturn Award (Best Actor),1245297286 +3986,8636,violence,1245297247 +3999,86548,old setting,1418809954 +3999,89761,old setting,1418810109 +4011,6,Al Pacino,1385198102 +4011,6,Robert De Niro,1385198099 +4011,296,dark comedy,1385198334 +4011,296,multiple storylines,1385198337 +4011,903,Atmospheric,1388333607 +4011,924,atmospheric,1385194815 +4011,924,space,1385194805 +4011,924,Stanley Kubrick,1385194828 +4011,1206,Stanley Kubrick,1385194970 +4011,1247,cynical,1386446775 +4011,1247,notable soundtrack,1386446770 +4011,2268,courtroom drama,1385195003 +4011,2268,Jack Nicholson,1385194999 +4011,2987,animation,1388333164 +4011,2987,comedy,1388333166 +4011,3681,spaghetti western,1385195048 +4011,3736,Billy Wilder,1385197781 +4011,3736,cynical,1385197761 +4011,3736,journalism,1385197763 +4011,3736,satirical,1385197766 +4011,3994,superhero,1388333760 +4011,4370,Steven Spielberg,1385197739 +4011,5008,courtroom drama,1388333091 +4011,5008,imdb top 250,1388333096 +4011,5008,twist ending,1388333093 +4011,6333,comic book,1388333039 +4011,6333,superhero,1388333041 +4011,7063,dreamlike,1385197804 +4011,7894,Sergio Leone,1385195122 +4011,7894,western,1385195125 +4011,7980,World War II,1385194925 +4011,26903,anime,1388333247 +4011,26903,Studio Ghibli,1388333243 +4011,34048,Steven Spielberg,1388333388 +4011,44694,visually appealing,1388333539 +4011,45210,9/11,1388333704 +4011,45210,terrorism,1388333710 +4011,51540,serial killer,1388333004 +4011,51540,stylized,1388333008 +4011,60684,alternate reality,1388333292 +4011,60684,social commentary,1388333290 +4011,60684,superhero,1388333294 +4011,72720,reflective,1385197717 +4011,81562,loneliness,1385194664 +4011,82459,atmospheric,1388333831 +4011,86142,sword fight,1385194696 +4011,88125,epic,1416686633 +4011,88125,fantasy,1416686624 +4011,88125,magic,1416686612 +4011,88125,Ralph Fiennes,1416686619 +4011,91126,Steven Spielberg,1388333413 +4011,91500,Jennifer Lawrence,1385194250 +4011,91500,social commentary,1385194235 +4011,94864,atmospheric,1424176418 +4011,94864,Charlize Theron,1424176419 +4011,94864,exploration,1424176429 +4011,94864,Idris Elba,1424176439 +4011,94864,intense,1424176416 +4011,94864,Michael Fassbender,1424176422 +4011,94864,technology,1424176388 +4011,98809,adventure,1388332921 +4011,98809,fantasy,1388332910 +4011,106489,adventure,1388332926 +4011,106489,fantasy,1388332914 +4011,112290,realism,1421997650 +4011,122882,charlize theron,1433578236 +4011,122882,Tom Hardy,1433578231 +4011,122882,visually appealing,1433578211 +4011,122886,Fantasy,1451831770 +4011,122886,feminist,1451831796 +4011,122886,John Williams,1451831787 +4011,122886,Plot Recycling,1451831777 +4011,122886,Visually appealing,1451831824 +4015,260,scifi,1440034968 +4015,260,space opera,1440034975 +4015,138036,spy,1440035040 +4030,1,fun,1425228504 +4030,1,good animation,1425228504 +4030,1,lovable characters,1425228504 +4036,1587,kuningas,1137531892 +4036,54503,McLovin,1194133169 +4037,51084,Definite chick flick,1174149117 +4046,260,fantasy,1431821418 +4046,260,sci-fi,1431821427 +4048,924,artificial intelligence,1348810261 +4048,924,Oscar (Best Effects - Visual Effects),1348810279 +4048,924,robots,1348810287 +4048,924,sci-fi,1348810283 +4048,924,surreal,1348810290 +4076,4055,Donald Sutherland,1242736481 +4076,4055,Neve Campbell,1242736478 +4076,4055,William H. Macy,1242736474 +4079,1209,spaghetti western,1307492725 +4079,1209,stylized,1307492745 +4079,2922,cynical,1307492767 +4099,553,Val Kilmer is great!!!!!,1137526849 +4099,880,boing & dumb & silly and much more crap,1138654557 +4099,923,beautifully done,1139686493 +4099,954,Jimmy Stewart puts forth a great performance,1140466752 +4099,2288,decent thiller,1138993847 +4099,2427,best looking war film i have ever seen,1139931264 +4099,4038,plot points that don't make sense.,1138135991 +4099,6713,all the films were boring!!!!,1138038642 +4099,6713,no wonder this studio was going bankrupt,1138038642 +4099,7266,bad movies are their own spoof,1140838456 +4099,7324,needs editing,1140553027 +4099,25952,excellent old movie,1137814957 +4099,33166,a movie about something,1140498267 +4099,37720,strong performances carry this flick,1138567769 +4099,37727,falls apart in the last third,1138418598 +4099,37729,decent fun starts slow,1138764971 +4099,38038,oscar worthy,1139633127 +4099,39183,ye haw! Ride em cowboy!!!!,1139719010 +4099,39446,they should have taken a SAW II the final print!!,1140304054 +4124,113225,romance,1420482418 +4124,113225,spiritual,1420482418 +4124,113225,woody allen,1420482418 +4124,115170,family,1424201409 +4124,115170,lawyer,1424201409 +4124,115170,melodrama,1424201409 +4139,260,luke skywalker,1440429648 +4139,260,Princess Leya,1440429698 +4143,260,adventure,1440832903 +4143,260,hero's journey,1440832891 +4172,98122,computer game,1448299073 +4172,98122,documentary,1448299079 +4172,98122,video games,1448299060 +4174,260,EPIC,1442021170 +4174,260,sci-fi,1442021163 +4193,260,epic adventure,1431839681 +4193,260,good vs evil,1431839768 +4193,260,great story,1431839717 +4193,356,adventure,1431841111 +4193,356,comedy,1431841111 +4193,356,spans time,1431841111 +4193,480,dynamic cgi action,1433669055 +4193,480,intense action,1433669055 +4193,480,prehistoric fantasy,1433669055 +4193,593,classic,1432447512 +4193,593,great performances,1432447512 +4193,593,psychothriller,1432447512 +4193,108282,occult,1432527089 +4193,108282,psychological,1432527030 +4193,115149,predictable,1434269708 +4211,260,classic,1444117807 +4211,260,oldie but goodie,1444117831 +4226,1682,dark comedy,1370061651 +4226,1682,Jim Carrey,1370061653 +4226,1682,social commentary,1370061657 +4226,1682,stylized,1370061666 +4226,2321,heartwarming,1370061685 +4226,2321,stylized,1370061681 +4226,2321,surreal,1370061687 +4226,2321,whimsical,1370061692 +4226,2672,alternate reality,1370063042 +4226,2672,simulated reality,1370063044 +4226,8914,clever,1370061541 +4226,8914,Complicated,1370061544 +4226,8914,mindfuck,1370061533 +4226,8914,sci-fi,1370061539 +4226,8914,time travel,1370061536 +4226,48043,atmospheric,1370061315 +4226,48043,multiple storylines,1370061334 +4226,48043,surreal,1370061346 +4226,48043,thought-provoking,1370061327 +4226,48043,visually appealing,1370061317 +4226,55908,Excellent use of dialogue,1370061271 +4226,55908,thought-provoking,1370061271 +4226,79132,great soundtrack,1370061378 +4226,79132,sci-fi,1370061373 +4226,79132,thought-provoking,1370061384 +4226,79132,visually appealing,1370061383 +4226,79357,cinematography,1370061445 +4226,79357,nonlinear,1370061459 +4226,79357,sci-fi,1370061463 +4226,79357,soundtrack,1370061467 +4226,79357,surreal,1370061450 +4226,79357,thought provoking,1370061474 +4226,94864,unresolved,1370060771 +4231,43556,college,1431058714 +4231,43556,military,1431058714 +4231,43556,us navy,1431058714 +4241,1220,Dan Aykroyd,1259523921 +4241,1220,John Belushi,1259523929 +4241,1220,notable soundtrack,1259523914 +4241,1220,rhythm & blues,1259523955 +4241,2716,Bill Murray,1259523850 +4241,2716,Dan Aykroyd,1259523848 +4241,2716,ghosts,1259523862 +4241,60397,Colin Firth,1259523795 +4241,60397,Greece,1259523798 +4241,60397,Meryl Streep,1259523799 +4241,60397,music:ABBA,1259523809 +4241,60397,Musical,1259523824 +4241,60397,Pierce Brosnan,1259523801 +4241,60397,Stellan SkarsgÃ¥rd,1259523789 +4241,71535,Bill Murray,1259523526 +4241,71535,gore,1259523549 +4241,71535,zombies,1259523545 +4257,296,crime,1445204295 +4257,6874,action,1445204352 +4257,32460,drama,1445204342 +4280,91189,apocalypse,1437763266 +4280,91189,drama,1437763266 +4280,91189,natural disas,1437763266 +4280,91189,thought-provoking,1437763266 +4280,91189,violence,1437763266 +4280,92325,bittersweet,1434653118 +4280,92325,gay soldiers,1434653118 +4280,92325,romance,1434653118 +4280,92613,drama,1427568723 +4280,92613,gay relationship,1427568723 +4280,92613,love triangle,1427568723 +4280,104827,documentary,1420156039 +4280,104827,gay relationship,1420156039 +4280,104827,mother-son relationship,1420156039 +4292,4640,Takeshi Kitano,1144324871 +4292,27773,revenge,1138453970 +4296,40583,desert left-wing,1138480973 +4296,58047,child actor,1250140839 +4296,58047,new york city,1250140839 +4296,58047,sexy leading actresses,1250140839 +4296,81537,Robert Downey Jr.,1425789313 +4296,81537,Zach Galifianakis,1425789310 +4296,88131,bleak,1427679730 +4296,88131,corporate culture,1427679730 +4296,88131,lesbian undertones,1427679730 +4296,88131,Match Point has the characters make the decisions but this has the director make the decisions).,1340176827 +4296,88131,Parisian setting,1340176618 +4296,88131,professionals,1340176562 +4296,88131,quiet,1340176598 +4296,88131,"reminds me of Match Point weren't so much more dramatic and SO much less ""plot driven"" (i.e.",1340176827 +4296,88131,unresolved ending,1340176570 +4296,99917,Shane Carruth,1425789369 +4321,260,good scifi,1442311010 +4321,260,nice effects,1442311032 +4345,1722,007 rocks,1150867368 +4345,3948,Robert De Niro,1150867356 +4377,1265,Bill Murray,1383911280 +4377,5502,stupid,1383911396 +4377,6711,Bill Murray,1383910809 +4377,95939,Scotland,1383910753 +4377,95939,whiskey,1383910746 +4379,198,Ralph Fiennes,1188264255 +4379,261,Winona Ryder,1188264178 +4379,1597,Julia Roberts,1188264095 +4379,1597,Mel Gibson,1188264095 +4379,1729,Quinten Tarantino,1188264152 +4379,1747,Robert De Niro,1188264256 +4379,2023,Al Pacino,1188264110 +4379,2424,Meg Ryan,1188264273 +4379,2424,Tom Hanks,1188264273 +4379,2947,Bond James Bond,1188264124 +4379,3033,comedy,1188264228 +4379,3033,John Candy,1188264226 +4379,3033,Rick Moranis,1188264228 +4379,7438,Quinten Tarantino,1188264166 +4379,7438,Uma Thurman,1188264167 +4395,260,futuristic,1437075849 +4395,260,Science Fiction,1437075841 +4415,19,Jim Carrey,1268550220 +4415,32,time travel,1268549364 +4415,48,sidekicks for the sidekicks,1268552657 +4415,48,Skinny Pocahontas,1268552618 +4415,196,Aliens,1268622927 +4415,196,Nudity (Topless - Notable),1268622908 +4415,196,Nudity (Topless),1268622910 +4415,196,Pregnancy,1268622922 +4415,296,comedy,1268551120 +4415,296,multiple storylines,1268551117 +4415,296,Quentin Tarantino,1268551123 +4415,344,Jim Carrey,1268550209 +4415,357,Comedy,1268551788 +4415,357,Smoking,1268551770 +4415,589,dystopia,1268551459 +4415,589,sci-fi,1268551456 +4415,589,time travel,1268551452 +4415,780,alien invasion,1268550520 +4415,780,aliens,1268550528 +4415,780,Bill Pullman,1268550653 +4415,780,Brent Spiner,1268550692 +4415,780,Jeff Goldblum,1268550644 +4415,780,Mary McDonnell,1268550677 +4415,780,Randy Quaid,1268550677 +4415,780,sci-fi,1268550524 +4415,780,The dog lives,1268550715 +4415,780,Will Smith,1268550644 +4415,924,sci-fi,1268549562 +4415,924,space,1268549566 +4415,1127,aliens,1268550133 +4415,1127,sci-fi,1268550128 +4415,1197,comedy,1268551107 +4415,1197,fantasy,1268551103 +4415,1265,comedy,1268551615 +4415,1265,Fantasy,1268551618 +4415,1265,time travel,1268551608 +4415,1356,aliens,1268552113 +4415,1356,great makeup,1268552239 +4415,1356,sci-fi,1268552110 +4415,1356,time travel,1268552107 +4415,1527,aliens,1268550504 +4415,1527,Bruce Willis,1268550613 +4415,1527,fantastic editing,1268550613 +4415,1527,Gary Oldman,1268550613 +4415,1527,Milla Jovovich,1268550613 +4415,1527,parody,1268550497 +4415,1527,sci-fi,1268550501 +4415,1584,aliens,1268552081 +4415,1584,sci-fi,1268552074 +4415,1584,space,1268552077 +4415,1673,Julianne Moore,1268552741 +4415,1673,Pornography Industry,1268552784 +4415,1748,aliens,1268623710 +4415,1748,fantasy,1268623706 +4415,1748,sci-fi,1268623708 +4415,1862,Aliens,1268622733 +4415,1862,Conception,1268622797 +4415,1862,Giving Birth,1268622755 +4415,1862,Justin Lazard,1268622775 +4415,1862,Nudity (Full Frontal),1268622781 +4415,1862,Nudity (Rear),1268622786 +4415,1862,Pregnancy,1268622814 +4415,2015,Fred MacMurray,1268550110 +4415,2133,adventure,1268550329 +4415,2467,Christian Slater,1268623209 +4415,2467,monastery,1268623230 +4415,2467,Nudity (Full Frontal - Notable),1268623218 +4415,2467,Nudity (Topless),1268623212 +4415,2467,religion,1268623224 +4415,2467,Ron Perlman,1268623229 +4415,2467,Sean Connery,1268623221 +4415,2467,Self-Mutilation,1268623239 +4415,2571,fantasy,1268551041 +4415,2571,post-apocalyptic,1268551035 +4415,2571,sci-fi,1268551048 +4415,2762,twist ending,1268551540 +4415,2858,comedy,1268550842 +4415,2858,surrealism,1268550837 +4415,2959,surreal,1268550931 +4415,3175,parody,1268552716 +4415,3668,nudity shown in schools,1268772658 +4415,3986,Arnold Schwarzenegger,1268549816 +4415,3986,futuristic,1268549820 +4415,3986,genetics,1268549823 +4415,4226,nonlinear,1268551060 +4415,4226,twist ending,1268551056 +4415,4370,robots,1268549991 +4415,4370,sci-fi,1268549997 +4415,4467,fantasy,1268550315 +4415,4467,imagination,1268550323 +4415,4467,Terry Gilliam,1268550319 +4415,4878,sci-fi,1268552685 +4415,4878,surreal,1268552683 +4415,4878,time travel,1268552679 +4415,4993,fantasy,1268551001 +4415,5049,action,1268549736 +4415,5049,comedy,1268549733 +4415,5128,QOTD is the 3rd book - they squeezed The Vampire Lestat into 20 minutes of film,1299537967 +4415,5618,anime,1268551178 +4415,5618,Studio Ghibli,1268551183 +4415,5810,Eminem,1268549866 +4415,5945,dark comedy,1268550081 +4415,5952,fantasy,1268551016 +4415,5952,multiple storylines,1268551021 +4415,7153,multiple storylines,1268551009 +4415,7254,alternate endings,1268624162 +4415,7254,alternate reality,1268624160 +4415,7254,child abuse,1268624165 +4415,7254,I wish I could do that,1268624230 +4415,7254,intense,1268624169 +4415,7254,psychology,1268624185 +4415,7254,quantum leaping,1268624210 +4415,7254,sci-fi,1268624181 +4415,7254,suspense,1268624173 +4415,7254,Time Travel,1268624157 +4415,7293,Comedy,1268549796 +4415,7361,sci-fi,1268550919 +4415,7361,surreal,1268550917 +4415,8092,Bridget Fonda,1268785364 +4415,8092,does not age well,1268785378 +4415,8092,John Hurt,1268785323 +4415,8092,last 20 minutes have bad special effects,1268785397 +4415,8092,time travel,1268785315 +4415,8368,time travel,1268623508 +4415,8977,Arabs who are caucasian,1269204823 +4415,8977,bad casting,1269204835 +4415,8977,Greeks with Cockney accents,1269204540 +4415,8977,Greeks with irish accents,1269204549 +4415,8977,Romans with British accents,1269204567 +4415,8977,They based all actor's accents on Colin Farrel's accent,1269204621 +4415,26547,every few minutes things stop,1268771738 +4415,26547,silly,1268771707 +4415,26547,stupid,1268771715 +4415,27251,alternate reality,1268624272 +4415,27251,Nice Long MiniSeries,1268624258 +4415,33004,Americanized,1268553143 +4415,33004,Bad Acting,1268553018 +4415,33004,Bad Voice Acting for the book,1268553131 +4415,33004,Mos Def,1268553032 +4415,33004,new material that does not belong,1268553100 +4415,33004,Shape of Heart of Gold,1268553055 +4415,33004,Shape of Marvin,1268553043 +4415,33004,Zaphod's missing head,1268553079 +4415,37386,dystopia,1268550413 +4415,37386,post-apocalyptic,1268550407 +4415,37386,sci-fi,1268550416 +4415,43936,Bruce Willis,1268549442 +4415,44974,Ellen Page,1269211643 +4415,44974,Sandra Oh,1269211647 +4415,44974,suspenseful,1269211652 +4415,51412,bad ending,1268930055 +4415,51412,Incomplete story,1268930047 +4415,51412,Julianne Moore,1268930073 +4415,51412,plot holes,1268930060 +4415,51412,time travel,1268930068 +4415,51412,time-lapse,1268930066 +4415,51412,unfinished,1268930086 +4415,51666,Nudity (Full Frontal),1280600101 +4415,55768,Jerry Seinfeld,1268930485 +4415,56801,aliens,1268550008 +4415,65899,time loop,1268549389 +4415,65899,time travel,1268549384 +4415,71057,dystopia,1268549895 +4415,71057,post-apocalyptic,1268549889 +4415,71057,sci-fi,1268549897 +4415,76077,Crispin Glover,1270497588 +4415,76077,quantum leaping,1270497552 +4415,76077,The villain from Karate Kid at the bar,1270497576 +4415,76077,time travel,1270497535 +4415,76093,depth of emotion,1270497474 +4415,76093,Excellent Animation,1270497401 +4415,76093,facial expressions on the characters,1270497426 +4415,76093,toothless is just like my cat,1270497518 +4415,76175,Liam Neeson,1270751507 +4431,58,beautiful scenery,1416759704 +4431,58,beautifully filmed,1416759685 +4431,58,Pablo Neruda,1416759687 +4431,58,poetry,1416759692 +4431,58,poets,1416759683 +4431,58,writers,1416759690 +4431,364,animals,1416756134 +4431,364,Disney,1416756117 +4431,364,father-son relationship,1416756140 +4431,364,fun,1416756159 +4431,364,inspirational,1416756138 +4431,364,lions,1416756126 +4431,364,seen more than once,1416756171 +4431,364,soundtrack,1416756132 +4431,364,talking animals,1416756121 +4431,1704,college,1416756013 +4431,1704,excellent script,1416756010 +4431,1704,Great Screenplays,1416756031 +4431,1704,inspirational,1416756024 +4431,1704,intellectual,1416756029 +4431,1704,intelligent,1416756020 +4431,1704,mathematics,1416756019 +4431,1704,psychology,1416756023 +4431,1704,Robin Williams,1416756014 +4431,1704,thoughtful,1416756017 +4431,1704,university,1416756027 +4431,2115,Steven Spielberg,1446764502 +4431,2324,emotional,1416754302 +4431,2324,father-son relationship,1416754358 +4431,2324,imdb top 250,1416754345 +4431,2324,Oscar (Best Foreign Language Film),1416754321 +4431,2324,Roberto Benigni,1416754304 +4431,2324,sentimental,1416754301 +4431,3285,great soundtrack,1416755066 +4431,3285,island,1416755064 +4431,3285,Leonardo DiCaprio,1416755067 +4431,3285,romance,1416755062 +4431,3285,travel,1416755070 +4431,3285,utopia,1416755060 +4431,3755,Diane Lane,1416754729 +4431,3755,disaster,1416754733 +4431,3755,ocean,1416754729 +4431,4270,Rachel Weisz,1448752019 +4431,6287,Adam SAndler,1416755172 +4431,6287,comedy,1416755174 +4431,6287,funny,1416755184 +4431,6287,Jack Nicholson,1416755170 +4431,6709,Salma Hayek,1416755425 +4431,8638,emotional,1416755300 +4431,8638,great dialogue,1416755285 +4431,8638,Julie Delpy,1416755301 +4431,8638,Paris,1416755268 +4431,8638,philosophical,1416755271 +4431,8638,romance,1416755300 +4431,37736,child,1431282585 +4431,37736,england 1900s,1431282585 +4431,37736,working class,1431282585 +4431,47894,cruel,1437648930 +4431,47894,shaking,1437648930 +4431,47894,teaching,1437648930 +4431,77658,evolution,1416755825 +4431,77658,physics,1416755820 +4431,77658,science,1416755817 +4431,86882,Adrien Brody,1416755390 +4431,86882,dialogue,1416755377 +4431,86882,fantasy,1416755387 +4431,86882,Paris,1416755403 +4431,86882,thought-provoking,1416755374 +4431,86882,whimsical,1416755381 +4431,86882,Woody Allen,1416755371 +4431,109487,ambitious,1416755924 +4431,109487,good science,1416755903 +4431,109487,interesting ideea,1416755911 +4431,109487,Masterpiece,1416755901 +4431,109487,philosophical issues,1416755882 +4431,109487,relativity,1416755873 +4431,109487,sounds,1416755870 +4431,109487,space,1416755880 +4431,109487,thought-provoking,1416755876 +4434,8371,Vin Diesel,1219309894 +4441,260,fantastic,1432317348 +4441,260,old school,1432317338 +4441,117533,computer hacker,1432317805 +4441,117533,computer science,1432317805 +4441,117533,social engineering,1432317805 +4448,86882,Marion Cotillard,1309034131 +4448,86882,Owen Wilson,1309034136 +4448,86882,Paris,1309034118 +4448,103048,coming of age,1371869765 +4463,7454,vampires,1223804406 +4473,7325,80s music,1250440668 +4473,7325,charity,1250440670 +4473,7325,cocaine,1250440490 +4473,7325,crime,1250440490 +4473,7325,drugs,1250440490 +4473,7325,gangster,1250440677 +4473,7325,gangsters,1250440679 +4473,7325,good acting,1250440555 +4473,7325,good storyline,1250440519 +4473,7325,guns,1250440605 +4473,7325,money,1250440490 +4473,7325,police,1250440490 +4473,7325,violence,1250440615 +4502,168,King Arthur,1431271117 +4502,168,Period,1431271134 +4502,858,classic,1431270904 +4502,858,evergreen,1431270895 +4502,3654,World War II,1431271265 +4502,72998,animation,1431271077 +4502,72998,sci-fi,1431271077 +4502,72998,virtual world,1431271077 +4516,47,great ending,1436785345 +4516,47,morgan freeman,1436785349 +4516,47,twist ending,1436785356 +4516,296,dark comedy,1436785464 +4516,296,multiple storylines,1436785468 +4516,296,nonlinear,1436785462 +4516,296,Quentin Tarantino,1436785459 +4516,296,Samuel L. Jackson,1436785466 +4516,593,Anthony Hopkins,1436785414 +4516,593,great acting,1436785408 +4516,1089,dark humor,1436785443 +4516,1089,nonlinear,1436785439 +4516,1089,Quentin Tarantino,1436785435 +4516,135887,Funny,1436785255 +4540,5294,"""A Mão-de-Deus""",1138725522 +4556,296,dark comedy,1432802980 +4556,296,great acting,1432802980 +4556,296,r:graphic sexuality,1432802980 +4557,89745,everything,1337178885 +4557,93297,authentic action,1337178840 +4571,1193,first movie to win the main 5 categories,1349746573 +4571,1193,Oscar Best Actor,1349746596 +4571,1193,Oscar Best Director,1349746645 +4571,1193,Oscar Best Picture,1349746656 +4571,2020,cast is an all-star cast,1349746392 +4571,2020,costumes are impecable,1349746352 +4571,2020,flawless art direction,1349746321 +4571,2020,There were several remakes,1349746458 +4571,8459,amazing cinematography,1349746178 +4571,8459,film adaptation,1349746139 +4571,8459,Great b&w movie,1349746202 +4571,8459,great performances,1349746158 +4577,79132,alternate reality,1427392892 +4577,79132,Leonardo DiCaprio,1427392910 +4577,79132,sci-fi,1427392887 +4577,79132,thought-provoking,1427392887 +4586,114392,bleak,1420743077 +4586,114392,depressing,1420743077 +4586,114392,lunatics,1420743077 +4629,4306,satire,1139693203 +4629,40815,best of the series so far,1139692892 +4631,47,atmospheric,1307642276 +4631,47,confusing,1307642280 +4631,47,overrated,1307642316 +4631,47,psychology,1307642300 +4631,47,serial killer,1307642303 +4631,110,brutal,1287848937 +4631,110,flashy,1287848879 +4631,110,too heroic,1287848926 +4631,260,adventure,1287910449 +4631,260,classic,1287910462 +4631,260,Harrison Ford,1287910452 +4631,260,lightsabers,1287910471 +4631,260,outdated,1287910481 +4631,260,Star Wars,1287910464 +4631,316,classic,1287849957 +4631,316,tv series is much better,1287849951 +4631,318,inspirational,1307206934 +4631,318,Morgan Freeman,1307206937 +4631,318,thought-provoking,1307206926 +4631,454,lawyers,1287838985 +4631,527,american ending,1287850538 +4631,527,historical,1287850542 +4631,527,interesting,1287850546 +4631,527,slow paced,1287850549 +4631,527,WWII,1287850557 +4631,593,Anthony Hopkins,1415354956 +4631,593,investigation,1415354966 +4631,593,Jodie Foster,1415354954 +4631,593,psychological,1415354961 +4631,593,serial killer,1415354950 +4631,608,black comedy,1420796691 +4631,608,quirky,1420796695 +4631,628,atmospheric,1307232576 +4631,628,courtroom drama,1307232573 +4631,628,politics,1307232568 +4631,628,psychology,1307232550 +4631,628,suspense,1307232561 +4631,628,thought-provoking,1307232558 +4631,628,twist ending,1307232554 +4631,750,cult film,1415301277 +4631,750,dark comedy,1415301267 +4631,750,satire,1415301261 +4631,858,Al Pacino,1287839955 +4631,858,mafia,1287839957 +4631,858,slow,1287839961 +4631,904,classic,1415353934 +4631,904,tense,1415353926 +4631,904,voyeurism,1415353929 +4631,924,atmospheric,1348507122 +4631,924,classic,1348507115 +4631,924,cult film,1348507119 +4631,1090,acting,1287839739 +4631,1090,psychological,1287839726 +4631,1090,Vietnam War,1287839731 +4631,1196,classic,1287910493 +4631,1196,Harrison Ford,1287910499 +4631,1196,lightsabers,1287910509 +4631,1196,star wars,1287910495 +4631,1203,classic,1287850330 +4631,1203,courtroom,1287850355 +4631,1203,dramatic,1287850340 +4631,1203,interesting,1287850334 +4631,1207,atmospheric,1417999593 +4631,1207,bittersweet,1417999612 +4631,1207,classic,1417999607 +4631,1207,courtroom drama,1417999604 +4631,1207,social commentary,1417999599 +4631,1210,adventure,1287910540 +4631,1210,drama,1287910526 +4631,1210,Harrison Ford,1287910538 +4631,1210,Star Wars,1287910529 +4631,1214,classic,1287849860 +4631,1214,dark,1287849873 +4631,1214,funny alien,1287849913 +4631,1233,realistic,1287848453 +4631,1233,submarines,1287839536 +4631,1233,WWII,1287839543 +4631,1252,atmospheric,1420836296 +4631,1252,dark,1420836306 +4631,1252,Film Noir,1420836294 +4631,1258,atmospheric,1415354871 +4631,1258,cult film,1415354875 +4631,1258,Horror,1415354888 +4631,1258,jack nicholson,1415354877 +4631,1320,boring,1287909479 +4631,1320,crappy,1287909422 +4631,1320,not scary,1287909488 +4631,1584,ambiguous,1287849734 +4631,1584,better than the book,1449391960 +4631,1584,interesting,1287849704 +4631,1584,jodie foster,1287849685 +4631,1610,cold war,1351632215 +4631,1610,Sean Connery,1351632212 +4631,1610,seen more than once,1351632217 +4631,1610,submarine,1351632223 +4631,1617,a bit far-fetched,1416950682 +4631,1617,anti-hero,1416950419 +4631,1617,conspiracy,1416950405 +4631,1617,dark,1416950426 +4631,1617,detective,1416950407 +4631,1617,suspense,1416950411 +4631,1617,twist ending,1416950403 +4631,1625,atmospheric,1417905912 +4631,1625,Mystery,1417905905 +4631,1625,psychological,1417905913 +4631,1625,suspense,1417905923 +4631,1625,unrealistic,1417905921 +4631,1645,Al Pacino,1287909878 +4631,1645,Charlize Theron,1287909907 +4631,1645,cheating husband,1287909937 +4631,1645,Keanu Reeves,1287909875 +4631,1645,lawyers,1287909901 +4631,1645,religion,1287909925 +4631,1653,dystopia,1294780946 +4631,1653,genetics,1294780951 +4631,1653,interesting,1294780963 +4631,1653,powerful ending,1294780954 +4631,1653,predictable,1307207106 +4631,1682,dark comedy,1418066802 +4631,1682,interesting,1418066813 +4631,1690,boring,1287909469 +4631,1690,crappy,1287909465 +4631,1748,dystopia,1287849800 +4631,1748,slow paced,1287849816 +4631,1748,surreal,1287849828 +4631,1784,comedy,1428617099 +4631,1784,Jack Nicholson,1428617112 +4631,1784,quirky,1428617123 +4631,2028,disturbing,1287924078 +4631,2028,gritty,1287924052 +4631,2028,Steven Spielberg,1287924047 +4631,2028,Tom Hanks,1287924042 +4631,2028,violent,1287924076 +4631,2028,World War II,1287924039 +4631,2232,cult film,1287839326 +4631,2232,innovative,1287839316 +4631,2232,original,1287839322 +4631,2232,psychologial,1287839306 +4631,2232,scifi,1287839300 +4631,2571,Action,1287910119 +4631,2571,atmospheric,1287910123 +4631,2571,cult film,1287910090 +4631,2571,Keanu Reeves,1287910110 +4631,2571,martial arts,1287910095 +4631,2571,sci-fi,1287910097 +4631,2571,surreal,1287910107 +4631,2579,black and white,1287909840 +4631,2579,interesting,1287909829 +4631,2579,unique,1287909834 +4631,2628,Ewan McGregor,1287910243 +4631,2628,fantasy,1287910240 +4631,2628,lightsabers,1287910302 +4631,2628,Natalie Portman,1287910282 +4631,2628,not as good as original,1287910344 +4631,2628,Star Wars,1287910288 +4631,2672,average plot,1291402602 +4631,2672,identity,1291402555 +4631,2672,simulated reality,1291402552 +4631,2672,virtual reality,1291402558 +4631,2728,historical,1287848983 +4631,2762,Atmospheric,1310046658 +4631,2762,enigmatic,1310046660 +4631,2762,twist ending,1310046655 +4631,2916,Arnold Schwarzenegger,1412637672 +4631,2916,cyberpunk,1412637665 +4631,2916,silly action sequences,1412637653 +4631,2916,suspense,1412637662 +4631,3068,courtroom,1315267279 +4631,3068,lawyers,1315267156 +4631,3068,realistic,1315267275 +4631,3105,based on a true story,1419026269 +4631,3105,Robert De Niro,1419026272 +4631,3105,Robin Williams,1419026278 +4631,3105,sad,1419026283 +4631,3105,sentimental,1419027617 +4631,3252,Al Pacino,1287850665 +4631,3252,atmospheric,1287850684 +4631,3252,good acting,1287850668 +4631,3252,sad,1287850686 +4631,3339,boring,1287839574 +4631,3339,slow,1287839576 +4631,3578,good acting,1287849031 +4631,3578,good pace,1287849057 +4631,3578,interesting characters,1287849071 +4631,3578,unhistorical,1287849025 +4631,3801,courtroom drama,1317512473 +4631,4037,bad acting,1420497115 +4631,4037,con men,1420497113 +4631,4223,brutal,1287923898 +4631,4223,heroic,1287923885 +4631,4223,war,1287923853 +4631,4223,World War II,1287923861 +4631,4223,WWII,1287923859 +4631,4226,amnesia,1287909750 +4631,4226,mystery,1287849456 +4631,4226,nonlinear,1287909740 +4631,4226,paranoid,1287909758 +4631,4226,psychological,1287849450 +4631,4226,twist ending,1287849445 +4631,4306,animation,1415355289 +4631,4306,comedy,1415355292 +4631,4306,witty,1415355296 +4631,4725,creepy,1287910021 +4631,4725,dark,1287910013 +4631,4725,multiple personalities,1287910033 +4631,4725,scary,1287910041 +4631,4725,suspense,1287910029 +4631,4901,espionage,1287911101 +4631,4901,multinational settings,1287911105 +4631,4993,atmospheric,1287910693 +4631,4993,fantasy,1287910682 +4631,4993,magic,1287910685 +4631,4995,insanity,1291500294 +4631,4995,inspirational,1291500292 +4631,4995,psychology,1291500279 +4631,4995,romance,1291500305 +4631,4995,Russell Crowe,1291500287 +4631,4995,schizophrenia,1291500283 +4631,5008,Agatha Christie,1419860368 +4631,5008,courtroom drama,1419860360 +4631,5008,twist ending,1419860364 +4631,5010,brutal,1287839698 +4631,5010,flashy,1287839700 +4631,5010,predictable,1287839707 +4631,5010,war,1287839695 +4631,5266,Forest Whitaker,1287911621 +4631,5266,Jodie Foster,1287911616 +4631,5266,strange,1287911612 +4631,5294,insanity,1287909965 +4631,5294,mission from God,1287909960 +4631,5294,serial killer,1287909975 +4631,5294,twist ending,1287909952 +4631,5378,silly,1287910360 +4631,5378,Star Wars,1287910373 +4631,5400,predictable,1287910948 +4631,5400,spy thriller,1287910915 +4631,5400,tense,1287910944 +4631,5400,Tom Clancy,1287910911 +4631,5418,conspiracy,1287911010 +4631,5418,espionage,1287910988 +4631,5418,fast paced,1287911040 +4631,5418,Matt Damon,1287910993 +4631,5418,spy,1287910999 +4631,5445,interesting,1287849330 +4631,5445,sci-fi,1287849320 +4631,5445,Steven Spielberg,1287849325 +4631,5445,storyline,1287849333 +4631,5608,brutal,1287839448 +4631,5608,psychological,1287839444 +4631,5903,choreographic violence,1287911225 +4631,5903,dystopia,1287911257 +4631,5903,gunfight,1287911248 +4631,5903,plot,1287911266 +4631,5903,predictable,1287911271 +4631,5903,revolution,1287911254 +4631,5903,totalitarianism,1287911228 +4631,5952,fantasy,1287910727 +4631,5952,magic,1287910723 +4631,5952,worse than expected,1287910720 +4631,6016,disturbing,1311071415 +4631,6016,drugs,1311071411 +4631,6016,multiple storylines,1311071403 +4631,6016,stylized,1311071440 +4631,6016,true story,1311071409 +4631,6213,war,1287910850 +4631,6213,we've seen this before,1287910874 +4631,6281,interesting,1287911811 +4631,6281,original,1287911817 +4631,6281,thrilling,1287911799 +4631,6323,crappy,1288001852 +4631,6323,silly,1288001873 +4631,6323,stupid plot twist,1288001860 +4631,6365,action,1287910145 +4631,6365,bad sequel,1287910140 +4631,6539,comedy,1415355119 +4631,6539,johnny depp,1415355114 +4631,6934,Keanu Reeves,1287910188 +4631,6934,robots,1287910205 +4631,6934,sequel,1287910201 +4631,6953,Benicio Del Toro,1348445101 +4631,6953,multiple storylines,1348445074 +4631,6953,Naomi Watts,1348445096 +4631,6953,Nonlinear,1348445076 +4631,6953,psychological,1348445078 +4631,6953,Sean Penn,1348445094 +4631,7143,fictional,1415355611 +4631,7143,Japanese culture,1415355629 +4631,7143,samurai,1415355624 +4631,7143,unrealistic,1415355622 +4631,7153,adventure,1287910738 +4631,7153,fantasy,1287910746 +4631,7153,magic,1287910757 +4631,7256,boring,1419860340 +4631,7256,survival,1419860334 +4631,7256,true story,1419860330 +4631,7458,crappy mythology,1287849142 +4631,7458,unhistorical,1287849121 +4631,7502,military,1308083272 +4631,7502,realistic,1308083278 +4631,7502,true story,1308083288 +4631,7502,war,1308083292 +4631,7502,World War II,1308083285 +4631,7827,bad acting,1420741524 +4631,7827,corporate espionage,1420741511 +4631,7827,naive,1420741515 +4631,7827,twists,1420741540 +4631,7842,book was better,1287910604 +4631,7980,classic,1287923995 +4631,7980,History,1287924001 +4631,7980,war,1287924010 +4631,7980,World War II,1287923999 +4631,8207,assassin,1287924325 +4631,8207,assassination,1287924330 +4631,8207,interesting,1287924413 +4631,8360,animation,1415355313 +4631,8360,Funny,1415355324 +4631,8640,boring,1287849182 +4631,8640,crap,1287849174 +4631,8640,unhistorical,1287849178 +4631,8644,artifical intelligence,1287850006 +4631,8644,interesting,1287850024 +4631,8644,sci-fi,1287850020 +4631,8665,conspiracy,1287911127 +4631,8665,espionage,1287911115 +4631,8665,fast paced,1287911112 +4631,8665,Matt Damon,1287911117 +4631,8665,spy,1287911123 +4631,8798,action,1419264118 +4631,8798,atmospheric,1419264111 +4631,8798,dark,1419264113 +4631,8977,battle scenes,1287849206 +4631,8977,boring,1287849226 +4631,8977,historical,1287849210 +4631,8977,slow paced,1287849229 +4631,26203,artificial intelligence,1308578353 +4631,26203,Cold War,1308578336 +4631,26203,exaggerated,1308578393 +4631,26203,outdated,1308578330 +4631,27482,bad sequel,1287909526 +4631,27788,complex,1316380082 +4631,27788,confusing,1316380086 +4631,31410,historical,1287839483 +4631,31410,slow paced,1287839506 +4631,31410,WWII,1287839486 +4631,32213,big bad government,1287909563 +4631,32213,interesting,1287909538 +4631,32213,not as good as the original,1287909552 +4631,33162,battle scenes,1287849092 +4631,33493,dark,1287910437 +4631,33493,lightsabers,1287910423 +4631,33493,romance,1287910429 +4631,33493,Star Wars,1287910401 +4631,34405,crappy,1287993537 +4631,34405,silly,1287993547 +4631,34405,unrealistic,1287993550 +4631,36517,Africa,1415752129 +4631,36517,atmospheric,1415752125 +4631,36517,social commentary,1415752118 +4631,40583,CIA,1415553151 +4631,40583,complicated,1415553139 +4631,40583,middle east,1415553148 +4631,40819,boring,1412731020 +4631,41997,based on a true story,1287850438 +4631,41997,espionage,1287850449 +4631,41997,nudity,1287850489 +4631,41997,realistic,1287850441 +4631,41997,terrorism,1287850428 +4631,41997,violence,1287850458 +4631,44191,comic book,1287911304 +4631,44191,political,1287850118 +4631,44191,revolution,1287850114 +4631,44191,ridiculous ending,1287850169 +4631,44191,teen,1327265374 +4631,44191,terrorism,1287850123 +4631,44199,Clive Owen,1287838929 +4631,44199,Jodie Foster,1287838924 +4631,44199,twist ending,1287838921 +4631,45722,Adventure,1415355174 +4631,45722,Davey Jones,1415355186 +4631,45722,Johnny Depp,1415355170 +4631,47610,magic,1415551901 +4631,47610,twist ending,1415551906 +4631,48516,atmospheric,1420240709 +4631,48516,Jack Nicholson,1420240705 +4631,48516,Leonardo DiCaprio,1420240704 +4631,48516,Matt Damon,1420240713 +4631,48516,tense,1420240719 +4631,48516,twist ending,1420240715 +4631,48516,undercover cop,1420240711 +4631,48780,complicated,1287849425 +4631,48780,interesting,1287849375 +4631,48780,sci-fi elements,1287849411 +4631,48780,twist ending,1287849366 +4631,48783,american,1287839653 +4631,48783,patriotic,1287839653 +4631,48783,WWII,1287839663 +4631,48997,awkward,1287850260 +4631,48997,good setting,1287850242 +4631,48997,ridiculous ending,1287850247 +4631,48997,serial killer,1287850212 +4631,49278,Denzel Washington,1287838279 +4631,49278,implausible plot elements,1287838265 +4631,49278,time travel,1287838256 +4631,49530,Africa,1287911768 +4631,49530,Leonardo DiCaprio,1287911773 +4631,49530,smuggling,1287911764 +4631,49530,the story,1287911778 +4631,49530,war,1287911761 +4631,49822,CIA,1287839124 +4631,49822,cold war,1287839141 +4631,49822,WWII,1287839133 +4631,51540,based on a true story,1413933776 +4631,51540,mind games,1413933783 +4631,51540,serial killer,1413933780 +4631,51540,slow,1413933817 +4631,51540,Too long,1413933796 +4631,53000,downer ending,1408631131 +4631,53000,post-apocalyptic,1408631090 +4631,53121,bad sequel,1415355360 +4631,53121,comedy,1415355354 +4631,53125,comedy,1415355205 +4631,53125,Johnny Depp,1415355209 +4631,53125,too long,1415355247 +4631,53125,worse than previous films,1415355239 +4631,54286,conspiracy,1287911148 +4631,54286,espionage,1287911172 +4631,54286,fast paced,1287911150 +4631,54286,Matt Damon,1287911141 +4631,54286,twist ending,1287911145 +4631,54962,alternate reality,1307206957 +4631,54962,multiple storylines,1307206962 +4631,54962,thought-provoking,1307207033 +4631,54962,twist ending,1307207005 +4631,55094,different,1287839883 +4631,55094,Iraq,1287839789 +4631,55094,Tommy Lee Jones,1287839778 +4631,55247,based on a true story,1420678456 +4631,55247,bittersweet,1420678462 +4631,55247,Music,1420795960 +4631,55247,psychology,1420678465 +4631,55247,self discovery,1420678453 +4631,55247,travel,1420678467 +4631,55247,wilderness,1420678475 +4631,56782,atmospheric,1426974861 +4631,56782,greed,1426974844 +4631,56782,strange,1426974850 +4631,58295,acting,1420372184 +4631,58295,heist,1420372171 +4631,59315,funny,1431244255 +4631,59315,Robert Downey Jr.,1431244258 +4631,59315,superhero,1431244280 +4631,62374,cia,1287911465 +4631,62374,Ridley Scott,1287911552 +4631,62374,spy,1287911470 +4631,63082,love story,1415355700 +4631,63082,social commentary,1415355691 +4631,64622,great acting,1307796138 +4631,68159,journalism,1416867130 +4631,68159,political corruption,1416867124 +4631,68159,red herring,1416867123 +4631,68159,Russell Crowe,1416867128 +4631,68159,tense,1416867138 +4631,70286,boring,1287909644 +4631,70286,evil corporations,1287909632 +4631,70286,social commentary,1287909596 +4631,70286,xenophobia,1287909612 +4631,74458,asylum,1287849600 +4631,74458,atmospheric,1287849593 +4631,74458,insanity,1287909790 +4631,74458,nazis,1287849575 +4631,74458,twist ending,1287849589 +4631,74545,mystery,1287839067 +4631,74545,plot,1287839055 +4631,78349,dialogue driven,1415474782 +4631,78349,experiment,1415474769 +4631,78349,psychological,1415474780 +4631,78349,weak ending,1415474793 +4631,79132,ambiguous ending,1287909679 +4631,79132,dreams,1287909673 +4631,79132,fast paced,1287849507 +4631,79132,intellectual,1287909670 +4631,79132,interesting,1287849504 +4631,79132,mindfuck,1287909666 +4631,79132,visually appealing,1287909663 +4631,79293,boring,1287911084 +4631,79293,cliche,1287911088 +4631,79293,double agents,1287911075 +4631,81562,intense,1360932497 +4631,81562,loneliness,1360932485 +4631,81562,survival,1360932481 +4631,81562,true story,1360932480 +4631,81788,naive,1427063425 +4631,81788,Russell Crowe,1427063433 +4631,81788,tense,1427063421 +4631,81845,based on a true story,1298848065 +4631,81845,drama,1298848079 +4631,81845,therapy,1298848088 +4631,84392,interesting,1307178740 +4631,84392,lawyers,1307178730 +4631,84392,legal,1307178732 +4631,84392,stereotypical,1307178749 +4631,84392,villain,1307178736 +4631,85414,interesting,1308036907 +4631,85414,parallel universe,1308036860 +4631,85414,predictable ending,1308036919 +4631,85414,science fiction,1308036897 +4631,86781,slow,1310046235 +4631,94864,aliens,1417020839 +4631,94864,boring,1417020848 +4631,94864,dialogue,1417020814 +4631,94864,predictable,1417020810 +4631,94864,sequel bait,1417020819 +4631,96610,tense,1414100081 +4631,96610,time travel,1414100078 +4631,96610,unrealistic action,1414100111 +4631,97304,cheesy ending scene,1412731167 +4631,97304,Iran,1412731138 +4631,97304,Middle East,1412731142 +4631,97304,true story,1412731176 +4631,98809,beautiful scenery,1360502357 +4631,98809,boring,1360502077 +4631,98809,crude humor,1360502067 +4631,98809,music,1360502086 +4631,98809,stupid fight scenes,1360502154 +4631,98809,too long,1360502098 +4631,104841,overrated,1393852110 +4631,104841,predictable,1393852115 +4631,104841,sandra bullock,1393852124 +4631,104841,space,1393852119 +4631,104841,visually appealing,1393852122 +4631,104841,zero gravity,1393852139 +4631,106002,a bit rushed ending,1408630968 +4631,106002,deception,1408630750 +4631,106002,Harrison Ford,1408630798 +4631,106002,tension,1408630924 +4631,106002,worse than the book,1408630730 +4631,109487,ambitious,1415394009 +4631,109487,bad dialogue,1415394088 +4631,109487,good science bad science,1415394028 +4631,109487,relativity,1415394022 +4631,109487,sentimental,1415394082 +4631,109487,thought-provoking,1415394047 +4631,109487,wormhole,1415393998 +4631,111759,Emily Blunt,1413624237 +4631,111759,humorous,1413624246 +4631,111759,predictable,1413624225 +4631,111759,Tom Cruise,1413624240 +4631,111759,uninspiring,1413624276 +4631,112623,action,1415313195 +4631,112623,CGI,1415313160 +4631,112623,post-apocalyptic,1415313182 +4631,112623,predictable,1415313151 +4631,114935,quirky,1418560521 +4631,114935,stylized,1418560494 +4631,114935,twist ending,1418560498 +4631,116797,Alan Turing,1432371619 +4631,116797,Benedict Cumberbatch,1432371621 +4631,116797,code breaking,1432371625 +4631,116797,Keira Knightley,1432371629 +4635,260,i have a bad feeling about this,1444691468 +4635,260,not interesting,1444691479 +4647,4901,cia,1419367217 +4648,1687,assassination,1310514232 +4648,5690,downbeat,1310512461 +4648,8253,anime,1310513816 +4648,31878,Jackie Chan,1310513137 +4669,133419,college,1434772086 +4669,133419,funny,1434772086 +4669,133419,singing,1434772086 +4695,1704,Great Screenplays,1173537430 +4707,87234,acting,1383366606 +4707,87234,ending,1383366605 +4707,87234,music,1383366606 +4750,1202,drugs,1273164391 +4750,3693,Trash,1266161630 +4750,77353,art,1333456977 +4750,98151,black humor,1352880834 +4750,98151,death,1352880834 +4783,8340,perseverance,1433171793 +4783,8340,persistence,1433171793 +4783,8340,prison escape,1433171793 +4804,260,A classic scifi movie,1440684040 +4804,5816,adventure,1440684288 +4804,5816,harry potter,1440684264 +4804,5816,Pretty ok,1440684233 +4811,593,best performance: anthony hopkins as hannibal lecter,1428957077 +4811,593,horror,1428957077 +4811,593,psychothriller,1428957077 +4815,163,Action,1139644263 +4815,648,Action,1139644289 +4815,2502,stupidity,1139644267 +4815,8873,Spanish,1139644502 +4817,109374,cinematography,1423404029 +4817,109374,visually appealing,1423404012 +4885,29,weird,1368479516 +4885,32,great ending,1368479618 +4885,32,original,1368479047 +4885,47,great ending,1368479618 +4885,50,great acting,1368479548 +4885,50,storytelling,1368479128 +4885,70,cult classic,1368479572 +4885,111,loneliness,1368479425 +4885,150,dramatic,1368479460 +4885,169,family,1368479593 +4885,204,action,1368479472 +4885,232,relationships,1368479497 +4885,318,great acting,1368479548 +4885,318,great ending,1368479618 +4885,455,family,1368479593 +4885,508,dramatic,1368479460 +4885,593,great acting,1368479548 +4885,804,relationships,1368479497 +4885,858,great acting,1368479548 +4885,858,oscar (best directing),1368479442 +4885,922,talky,1368479647 +4885,1015,family,1368479593 +4885,1016,family,1368479594 +4885,1089,original,1368479047 +4885,1175,weird,1368479516 +4885,1185,cerebral,1368479711 +4885,1199,cerebral,1368479711 +4885,1199,visually appealing,1368479534 +4885,1199,weird,1368479516 +4885,1210,great ending,1368479618 +4885,1213,oscar (best directing),1368479442 +4885,1241,cult classic,1368479572 +4885,1281,talky,1368479647 +4885,1307,relationships,1368479497 +4885,1358,oscar (best directing),1368479442 +4885,1466,mentor,1368479085 +4885,1527,visually appealing,1368479534 +4885,1552,action,1368479472 +4885,1608,action,1368479472 +4885,1617,great acting,1368479548 +4885,1623,horror,1368479583 +4885,1639,relationships,1368479497 +4885,1704,mentor,1368479085 +4885,1722,action,1368479472 +4885,1748,cerebral,1368479712 +4885,1991,horror,1368479583 +4885,2076,weird,1368479516 +4885,2167,action,1368479472 +4885,2194,oscar (best directing),1368479442 +4885,2262,relationships,1368479497 +4885,2291,original,1368479047 +4885,2315,horror,1368479584 +4885,2335,comedy,1368479100 +4885,2371,comedy,1368479100 +4885,2394,story,1368479689 +4885,2420,mentor,1368479085 +4885,2460,horror,1368479583 +4885,2762,great ending,1368479618 +4885,2858,great acting,1368479548 +4885,3006,dramatic,1368479460 +4885,3018,horror,1368479583 +4885,3147,oscar (best directing),1368479443 +4885,3157,family,1368479593 +4885,3421,comedy,1368479100 +4885,3462,talky,1368479647 +4885,3470,criterion,1368479406 +4885,3740,cult classic,1368479572 +4885,3949,oscar (best directing),1368479442 +4885,3986,action,1368479472 +4885,4085,comedy,1368479100 +4885,4128,cult classic,1368479572 +4885,4226,storytelling,1368479128 +4885,4725,horror,1368479583 +4885,4878,cerebral,1368479711 +4885,4878,original,1368479047 +4885,4878,weird,1368479516 +4885,5452,family,1368479593 +4885,5673,weird,1368479516 +4885,5878,loneliness,1368479425 +4885,5945,loneliness,1368479425 +4885,5995,dramatic,1368479460 +4885,6188,comedy,1368479100 +4885,6787,story,1368479689 +4885,7147,story,1368479689 +4885,8641,comedy,1368479100 +4885,8981,relationships,1368479497 +4885,32587,storytelling,1368479128 +4885,37729,visually appealing,1368479534 +4885,50872,story,1368479689 +4885,56782,cerebral,1368479711 +4885,60684,visually appealing,1368479534 +4885,64839,loneliness,1368479425 +4885,70286,action,1290975735 +4885,70286,aliens,1290975748 +4885,70286,cgi,1290975768 +4885,70286,directorial debut,1290975766 +4885,70286,intelligent sci-fi,1290975738 +4885,70286,thriller,1290975756 +4885,70286,unique,1290975779 +4885,79132,cerebral,1368479712 +4934,69134,atmospheric,1264715197 +4934,69134,based on a book,1264715224 +4934,69134,beautiful scenery,1264715222 +4934,69134,Biblical,1264715228 +4934,69134,Charlotte Gainsbourg,1264715199 +4934,69134,Christianity,1264715229 +4934,69134,cinematography,1264715207 +4934,69134,genitalia,1264715210 +4934,69134,Lars von Trier,1264715213 +4934,69134,Nudity (Full Frontal),1264715217 +4934,69134,religion,1264715233 +4934,69134,weird,1264715204 +4934,69134,Willem Dafoe,1264715201 +4947,8157,anime,1177631811 +4950,2662,Christianity,1303174339 +4950,2662,religion,1303174342 +4950,56174,alone in the world,1303174192 +4950,56174,post-apocalyptic,1303174198 +4950,56174,religion,1303174174 +4950,56174,vampire,1303174186 +4950,56174,Will Smith,1303174190 +4955,35,entirely dialogue,1368806188 +4955,107,treasure,1368804846 +4955,150,stranded,1368804969 +4955,208,dark hero,1368805051 +4955,353,dark hero,1368805051 +4955,380,arnold,1368805182 +4955,440,conspiracy theory,1368806294 +4955,442,dumb dystopia,1299320006 +4955,442,On TV all the time,1299319996 +4955,442,Sylvester Stallone,1299319987 +4955,442,time travel,1299319990 +4955,485,arnold,1368805182 +4955,521,noir thriller,1368804915 +4955,589,arnold,1368805182 +4955,592,dark hero,1368805051 +4955,866,neo-noir,1368805348 +4955,898,screwball comedy,1368805250 +4955,905,screwball comedy,1368805250 +4955,913,noir thriller,1368804915 +4955,927,entirely dialogue,1368806188 +4955,950,screwball comedy,1368805250 +4955,951,entirely dialogue,1368806188 +4955,1097,stranded,1368804969 +4955,1179,neo-noir,1368805348 +4955,1240,arnold,1368805182 +4955,1245,neo-noir,1368805348 +4955,1248,noir thriller,1368804915 +4955,1285,cheerleading,1368805152 +4955,1291,spielberg,1368806536 +4955,1291,treasure,1368804846 +4955,1387,spielberg,1368806536 +4955,1391,mars,1368805016 +4955,1396,conspiracy theory,1368806294 +4955,1580,conspiracy theory,1368806294 +4955,1617,neo-noir,1368805348 +4955,1894,stranded,1368804969 +4955,1895,cheerleading,1368805152 +4955,2022,christian,1368805309 +4955,2022,jesus,1368804802 +4955,2028,spielberg,1368806536 +4955,2115,spielberg,1368806536 +4955,2115,treasure,1368804846 +4955,2139,Don Bluth,1299149383 +4955,2139,Saturn Award (Best Animated Film),1299149391 +4955,2143,dragon,1368806341 +4955,2193,dragon,1368806341 +4955,2353,conspiracy theory,1368806294 +4955,2405,treasure,1368804846 +4955,2529,social commentary,1299145608 +4955,2571,artificial intelligence,1299145431 +4955,2571,atmospheric,1299145440 +4955,2571,cult film,1299145438 +4955,2571,dark hero,1368805051 +4955,2571,Keanu Reeves,1299145447 +4955,2571,philosophy,1299145412 +4955,2571,sci-fi,1299145423 +4955,2571,thought-provoking,1299145454 +4955,2571,virtual reality,1299145421 +4955,2600,techno-evolution,1299145917 +4955,2600,virtual reality,1299145896 +4955,2617,treasure,1368804846 +4955,2662,mars,1368805016 +4955,2726,noir thriller,1368804915 +4955,2804,classic christmas tale,1299320290 +4955,2916,arnold,1368805182 +4955,2989,International,1299320404 +4955,2989,James Bond,1299320398 +4955,3067,screwball comedy,1368805250 +4955,3264,cheerleading,1368805152 +4955,3300,stranded,1368804969 +4955,3556,great soundtrack,1299053480 +4955,3745,Don Bluth,1299146124 +4955,3986,mars,1368805016 +4955,3996,dragon,1368806341 +4955,4370,artificial intelligence,1299145676 +4955,4370,Bittersweet,1299145664 +4955,4370,fairy tale,1299145691 +4955,4370,Saturn Award (Best Science Fiction Film),1299145700 +4955,4370,Saturn Award (Best Writing),1299145710 +4955,4638,stranded,1368804969 +4955,4878,short-term memory loss,1368806502 +4955,5135,bollywood,1368804684 +4955,5445,spielberg,1368806536 +4955,6377,short-term memory loss,1368806502 +4955,6539,treasure,1368804846 +4955,6711,complex characters,1299052701 +4955,6711,cultural differences,1299052698 +4955,6711,Japan,1299052687 +4955,6874,dark hero,1368805051 +4955,7013,noir thriller,1368804915 +4955,7163,sci-fi,1299163116 +4955,7163,Uma Thurman,1299163107 +4955,7254,intense,1299149539 +4955,7254,psychology,1299149526 +4955,7254,time travel,1299149521 +4955,7318,jesus,1368804802 +4955,7361,comedy,1299145280 +4955,7361,philosophy,1299145264 +4955,7361,sci-fi,1299145262 +4955,7361,short-term memory loss,1368806502 +4955,7361,surreal,1299145261 +4955,7361,thought-provoking,1299145258 +4955,7386,christian,1368805309 +4955,7570,James Bond,1299320429 +4955,7570,Roger Moore,1299320426 +4955,7570,setting:circus performance,1299320435 +4955,8366,christian,1368805309 +4955,8529,stranded,1368804969 +4955,8622,conspiracy theory,1368806294 +4955,8784,coming of age,1299052592 +4955,8784,directorial debut,1299052603 +4955,8784,Natalie Portman,1299052572 +4955,8784,psychology,1299052587 +4955,27660,cyberpunk,1299149137 +4955,33162,christian,1368805309 +4955,34048,overrated,1299162461 +4955,34150,Jessica Alba,1299161880 +4955,34150,superhero,1299161914 +4955,37830,final fantasy,1299149112 +4955,41569,big budget,1299162524 +4955,41569,Jack Black,1299162539 +4955,41569,Saturn Award (Best Special Effects),1299162528 +4955,46976,Will Ferrell,1299053304 +4955,48043,atmospheric,1299160952 +4955,48043,hallucinatory,1299160990 +4955,48043,Hugh Jackman,1299160973 +4955,48043,philosophical,1299160963 +4955,48043,thought-provoking,1299160979 +4955,48043,visually appealing,1299160955 +4955,48780,atmospheric,1299145995 +4955,48780,Hugh Jackman,1299146006 +4955,48780,steampunk,1299146002 +4955,49272,espionage,1299320559 +4955,49272,James Bond,1299320560 +4955,49272,poker,1299320555 +4955,49272,realistic action,1299320563 +4955,51077,based on a comic,1299161835 +4955,51077,Nicolas Cage,1299161842 +4955,51884,bollywood,1368804684 +4955,53464,Jessica Alba,1299161948 +4955,53996,enormously long battle scene,1299163648 +4955,55269,dark comedy,1299141551 +4955,55269,India,1299141599 +4955,55269,SIBLING RELATIONSHIPS,1299141557 +4955,55269,spiritual journey,1299141560 +4955,55269,Train,1299141571 +4955,55908,philosophical,1299003053 +4955,55908,sci-fi,1299003063 +4955,56174,alone in the world,1299162407 +4955,56174,great acting,1299162402 +4955,56174,remake,1299162412 +4955,56174,virus,1299162394 +4955,56174,Will Smith,1299162388 +4955,56174,zombies,1299162418 +4955,56715,cult film,1299053209 +4955,56715,dark comedy,1299053198 +4955,56715,russian,1299053216 +4955,58025,concept,1299161792 +4955,58025,RELIGIOUS ZEALOTRY,1299161768 +4955,58025,teen,1299161775 +4955,58025,teleportation,1299161755 +4955,58025,terrible plot,1299161783 +4955,60069,Animation,1299145811 +4955,60069,quirky,1299145830 +4955,60069,Sci-Fi,1299145819 +4955,60069,social commentary,1299145807 +4955,62336,anime,1299003633 +4955,62336,baseball,1299003642 +4955,62336,robots,1299003638 +4955,72308,bsg rough summary,1299161557 +4955,72308,clip show,1299161540 +4955,72308,Galactica,1299161537 +4955,72308,lack of story,1299161549 +4955,72308,sci-fi,1299161567 +4955,72378,bad science,1299162281 +4955,72378,coincidences,1299162290 +4955,72378,predictable,1299162286 +4955,72378,unrealistic plot,1299162295 +4955,72998,FIGHTING THE SYSTEM,1299162580 +4955,72998,sci-fi,1299162590 +4955,74545,weak plot,1299144343 +4955,82461,Horrid characterisation,1299140954 +4955,82461,sci-fi,1299140931 +4955,82461,techno,1299140926 +4955,82461,technology,1299140923 +4966,260,darth vader,1432149875 +4966,260,han solo,1432149850 +4966,260,Oscar (Best Effects - Visual Effects),1432149842 +4968,5291,Akira Kurosawa,1378898697 +4968,5291,enigmatic,1378898701 +4968,5291,multiple storylines,1378898703 +4968,5498,Akira Kurosawa,1378898752 +4968,5498,Japan,1378898758 +4968,5498,meaning of life,1378898765 +4968,6669,Akira Kurosawa,1378898449 +4968,6669,disease,1378898721 +4968,6669,Japan,1378898452 +4968,6669,Kurosawa,1378898733 +4968,6669,meaning of life,1378898471 +4968,6669,meditative,1378898464 +4968,6669,philosophical,1378898468 +4975,3067,Pedro Almodovar,1165962404 +4975,44694,Pedro Almodovar,1165962422 +4986,6460,Orson Welles,1164725841 +4986,49528,Nudity (Topless),1165926931 +4992,1542,Ewan McGregor,1240002907 +4992,34469,Barbara Stanwyck,1240001056 +4992,34469,pre-code Hollywood,1240001077 +4997,16,Robert Deniro,1240938732 +4997,29,dystopia,1240937696 +4997,150,Gary Sinese,1240938042 +4997,150,Kevin Bacon,1240938025 +4997,170,Robert Redford,1240937988 +4997,247,surrealism,1240937766 +4997,260,Hayden Christensen,1240938063 +4997,296,dark comedy,1240937702 +4997,296,Quentin Tarantino,1240937705 +4997,303,Gene Hackman,1240937750 +4997,303,Leonardo DiCaprio,1240937745 +4997,303,Russell Crowe,1240937740 +4997,318,Tim Robbins,1240937968 +4997,457,Harrison Ford,1240938114 +4997,480,Jeff Goldblum,1240938105 +4997,480,Michael Crichton,1240938097 +4997,541,Harrison Ford,1240939032 +4997,541,Rutger Hauer,1240939032 +4997,593,Anthony Hopkins,1240938079 +4997,608,William H. Macy,1240939155 +4997,750,Stanley Kubrick,1240939113 +4997,849,dystopia,1240937903 +4997,858,Al Pacino,1240938645 +4997,858,James Caan,1240938645 +4997,858,Marlon Brando,1240938645 +4997,858,Robert Duvall,1240938645 +4997,924,Stanley Kubrick,1240938974 +4997,1093,Oliver Stone,1240937939 +4997,1093,Val Kilmer,1240937927 +4997,1210,sci-fi,1240937731 +4997,1213,Ray Liotta,1240938795 +4997,1663,Bill Murray,1240937722 +4997,2076,David Lynch,1240937998 +4997,2395,Wes Anderson,1240938892 +4997,2502,Mike Judge,1240938845 +4997,2951,Clint Eastwood,1240938767 +4997,4027,George Clooney,1240939254 +4997,8874,Nick Frost,1240938939 +4997,8874,Simon Pegg,1240938939 +4997,27611,sci-fi,1240939013 +4997,27831,caper movie,1240939203 +4997,48774,Clive Owen,1240939064 +4997,48774,Michael Caine,1240939064 +4997,58559,Christian Bale,1240938609 +4997,59126,Bill Maher,1240939289 +4997,59126,Documentary,1240939289 +4997,60684,dystopia,1240939350 +5031,474,assassin,1452656321 +5031,474,John Malkovich,1452656327 +5031,474,tense,1452656330 +5031,33493,great soundtrack,1452656381 +5031,33493,Natalie Portman,1452656389 +5031,33493,space,1452656370 +5031,33493,space opera,1452656375 +5031,33493,Star Wars,1452656368 +5035,260,action,1440620487 +5035,260,sci-fi,1440620473 +5035,260,space adventure,1440620496 +5036,7502,World War II,1432181240 +5036,115617,Cartoon,1432181306 +5036,130492,Comedy,1432181499 +5036,130492,Indian,1432181483 +5036,130492,romance,1432181490 +5036,132358,Action,1432181356 +5036,132358,Drama,1432181351 +5036,132358,Hindi,1432181348 +5036,133389,comedy,1432181417 +5036,133389,drama,1432181417 +5036,133389,hindi,1432181417 +5040,260,Science Fiction,1434961240 +5040,260,scifi cult,1434961272 +5040,2722,sharks,1434973716 +5040,4876,horror,1438009995 +5040,135512,cinderella,1434974153 +5040,135512,Drei Nüsse für Aschenbrödel,1434974160 +5040,135512,fairytale,1434974151 +5058,49272,product placement,1164927822 +5068,260,classic sci-fi,1432741253 +5068,260,George Lucas,1432741268 +5074,316,everything is good,1154287908 +5074,2006,they made it fun,1154287855 +5074,2302,pesci is great,1154287876 +5087,1721,romance,1432258347 +5087,40629,romance,1432258733 +5087,69361,detective,1432258220 +5087,94864,SF,1432258198 +5106,7,sexuality,1154609885 +5106,337,kids movie,1154609861 +5133,24,inane,1195697615 +5133,24,pretentious,1195697422 +5133,493,Insightful,1187536159 +5133,493,Interesting,1187536159 +5133,539,cringeworthy,1438548953 +5133,1091,One of the worst movies of all time,1187536042 +5133,1208,Long,1187537422 +5133,1245,Not bad,1187535960 +5133,1288,boring,1353987903 +5133,1343,De Niro delivers,1187539824 +5133,1464,One watch only,1187536271 +5133,1464,Surreal,1187536271 +5133,1587,Boring,1187535875 +5133,1676,not like the book,1440038800 +5133,1779,Meh,1187535926 +5133,2118,predictable,1347749184 +5133,2133,Classic,1187536065 +5133,2423,Classic,1187535947 +5133,2423,Worth seeing,1187535947 +5133,2478,Overrated,1187535873 +5133,2598,Worth watching,1187536096 +5133,2600,Different,1187536005 +5133,2606,stupid,1388538857 +5133,2710,not scary,1195696525 +5133,2827,One of the worst movies of all time,1187537567 +5133,2872,Old school,1187535884 +5133,2898,cheesy,1347850831 +5133,2908,white trash,1355176740 +5133,3098,caricatures,1438959806 +5133,3098,formulaic,1438959781 +5133,3113,Unremarkable,1187535993 +5133,3198,Slaughtered the book,1187562203 +5133,3263,Guilty pleasure,1187535977 +5133,3430,funny ending,1423625180 +5133,3676,boring,1353988101 +5133,3882,Eyecandy,1187539527 +5133,3961,Can't remember,1187543910 +5133,4015,Silly,1187536139 +5133,4052,Suspension of disbelief required,1187537396 +5133,4239,Interesting,1187539044 +5133,4388,David Cross,1187563981 +5133,4845,Worst movie ever,1187540613 +5133,4873,pretentious,1356443342 +5133,5054,mysticism,1337969544 +5133,5669,Deceptive,1187539312 +5133,5810,I hate Eminem-- but this movie is good,1187536591 +5133,6157,Could've been worse,1187536228 +5133,6373,Watchable,1187535903 +5133,6377,boring,1366566230 +5133,6502,British,1187536505 +5133,6708,Predictable ending,1340510822 +5133,6942,vapid,1437175260 +5133,6953,Forgotten,1187536192 +5133,7158,spoiled bitch,1437443003 +5133,7445,Stupid editing effects,1238802399 +5133,8641,One of the worst movies of all time,1187537291 +5133,8641,stupid,1353988162 +5133,8805,stupid,1409443631 +5133,26578,pretentious,1438528335 +5133,26991,silly,1413770865 +5133,27773,boring,1426128942 +5133,27846,Ridiculous,1187540639 +5133,27899,bullshit,1438561746 +5133,27899,misinformative,1438562070 +5133,27899,moronic,1438561877 +5133,27899,mysticism,1438561872 +5133,27899,nonsense,1438561732 +5133,27899,pseudoscience,1438561729 +5133,33154,Intriguing,1187542550 +5133,37731,senseless violence,1238802445 +5133,48394,Boring,1355256937 +5133,48516,Good,1187536256 +5133,48516,Worth watching,1187536256 +5133,48560,mental illness,1444579450 +5133,49314,idiots,1416756997 +5133,49932,boring,1353988040 +5133,52328,bad editing,1322759248 +5133,52328,bad science,1322759191 +5133,53956,idiots,1399741149 +5133,54736,shaky camera,1450786832 +5133,55620,repetitive,1236045756 +5133,58376,bullshit,1347721356 +5133,59295,bullshit,1400942445 +5133,60753,shaky camera,1401165612 +5133,71530,bad science,1383462086 +5133,74228,predictable,1413693370 +5133,79251,Overhyped,1316828741 +5133,80126,ridiculous gun stuff,1316395814 +5133,84273,bullshit,1438530200 +5133,85131,shaky camera,1309383361 +5133,89137,cheesy,1438867692 +5133,89137,overacted,1438867854 +5133,89137,tv show feel,1438867882 +5133,91126,sappy,1437567346 +5133,91535,Shaky cam,1361926962 +5133,93484,The Asylum,1358825126 +5133,95054,inaccurate,1401462585 +5133,97752,pretentious,1365186961 +5133,100010,The Asylum,1358825047 +5133,102176,Fearmongering,1367783920 +5133,102176,Ludditism,1367783647 +5133,108548,excessive laughing,1438528550 +5133,111360,bad science,1423628317 +5133,113741,idiots,1428271380 +5133,120637,action hero hacker,1450784794 +5133,120637,PLC hacks,1450784906 +5133,120637,rhgb quiet single,1450785419 +5133,120637,ridiculous NSANet hack,1450784827 +5133,120637,shaky camera,1450784845 +5141,32587,Alexis Bledel,1256959781 +5141,33669,Alexis Bledel,1228325643 +5141,49824,musical,1173393542 +5141,55419,Alexis Bledel,1256959624 +5141,61071,Alexis Bledel,1228325653 +5141,70898,Alexis Bledel,1269734191 +5141,89470,slow,1348415978 +5159,4914,French New Wave,1449151873 +5215,260,comedy,1443758472 +5215,260,space adventure,1443758463 +5225,296,Stupid as Hell,1369192271 +5233,113604,drama,1437776067 +5233,113604,loss,1437776067 +5233,113604,love,1437776067 +5269,590,western,1358848134 +5269,5225,spanish lanuage,1350737063 +5269,54997,western,1350737323 +5269,56775,sequel,1358785540 +5269,56782,western,1350737487 +5269,71033,Spanish,1358847852 +5276,260,Science Fiction,1440856486 +5276,260,space,1440856496 +5276,527,based on a true story,1440883821 +5276,527,history,1440883824 +5276,527,Steven Spielberg,1440883819 +5276,527,true story,1440883818 +5276,527,World War II,1440883816 +5276,1246,heartbreaking,1440884033 +5276,1246,High School,1440884027 +5276,1246,inspirational,1440884021 +5276,1246,philosophy,1440884019 +5276,1246,Robin Williams,1440884022 +5276,1704,genius,1440884048 +5276,1704,mathematics,1440884051 +5276,1704,Matt Damon,1440884046 +5276,1704,Robin Williams,1440884045 +5276,2028,action,1440883799 +5276,2028,Steven Spielberg,1440883792 +5276,2028,Tom Hanks,1440883791 +5276,2028,war,1440883795 +5276,2028,World War II,1440883789 +5276,4223,heroic,1440883462 +5276,4223,sniper,1440883459 +5276,4223,suspense,1440883464 +5276,4223,War,1440883467 +5276,4223,World War II,1440883453 +5276,58803,based on a true story,1440864945 +5276,58803,blackjack,1440864941 +5276,58803,casino,1440864953 +5276,58803,con artists,1440864948 +5276,58803,genius,1440864962 +5276,58803,Kevin Spacey,1440864944 +5276,58803,mathematics,1440864936 +5276,58803,Matt Damon,1440864978 +5276,58803,nonfiction,1440864971 +5276,58803,true story,1440864963 +5276,62374,Mark Strong,1440883700 +5276,62374,Ridley Scott,1440883698 +5276,64983,based on a true story,1440883343 +5276,64983,exciting,1440883347 +5276,64983,history,1440883351 +5276,64983,World War II,1440883349 +5276,72641,based on a true story,1440884161 +5276,72641,Sandra Bullock,1440884156 +5276,72641,sports,1440884160 +5276,72641,touching,1440884166 +5276,72641,true story,1440884157 +5276,74458,plot twist,1440883631 +5276,74458,thought-provoking,1440883641 +5276,74458,twist ending,1440883625 +5311,276,comedy,1186759936 +5311,628,crime,1186759814 +5311,852,golfing,1186759807 +5311,1091,comedy,1186760048 +5311,1242,Civil War,1186759812 +5311,1302,baseball,1186759811 +5311,1377,action,1186759809 +5311,1693,drama,1186760064 +5311,1953,action,1186759877 +5311,2005,adventure,1186759849 +5311,2116,adventure,1186760039 +5311,2423,comedy,1186759995 +5311,2478,comedy,1186759975 +5311,3100,drama,1186760007 +5311,3263,basketball,1186760014 +5311,3752,comedy,1186759913 +5311,3911,comedy,1186759838 +5311,3916,football,1186759952 +5311,3988,comedy,1186760029 +5311,4447,comedy,1186759912 +5311,4896,fantasy,1186759813 +5311,5377,comedy,1186759889 +5311,5378,action,1186759815 +5311,5502,sci-fi,1186759878 +5311,6870,mystery,1186759974 +5324,19,detective,1368055328 +5324,22,detective,1368055328 +5324,39,teen movie,1368055224 +5324,46,women,1368055195 +5324,218,women,1368055195 +5324,346,musicians,1368055212 +5324,522,brutality,1368055257 +5324,549,musicians,1368055212 +5324,858,masterpiece,1368055111 +5324,950,detective,1368055328 +5324,956,screwball comedy,1368055341 +5324,1068,noir thriller,1368055068 +5324,1088,dancing,1368055287 +5324,1089,stylish,1368055164 +5324,1188,dancing,1368055287 +5324,1206,masterpiece,1368055111 +5324,1228,masterpiece,1368055111 +5324,1252,masterpiece,1368055111 +5324,1271,unlikely friendships,1368055316 +5324,1344,suspenseful,1368055237 +5324,1387,suspenseful,1368055237 +5324,1442,mentor,1368055093 +5324,1617,great ending,1368055302 +5324,1620,detective,1368055328 +5324,1678,women,1368055195 +5324,1785,stylish,1368055164 +5324,1950,detective,1368055328 +5324,1968,teen movie,1368055224 +5324,2144,teen movie,1368055224 +5324,2145,teen movie,1368055224 +5324,2442,musicians,1368055212 +5324,2485,teen movie,1368055224 +5324,2550,supernatural,1368055129 +5324,2716,supernatural,1368055129 +5324,2762,excellent script,1368055145 +5324,2866,musicians,1368055212 +5324,2933,melancholic,1368055027 +5324,3005,detective,1368055328 +5324,3210,teen movie,1368055224 +5324,3418,women,1368055195 +5324,3499,suspenseful,1368055237 +5324,3551,suspenseful,1368055237 +5324,3594,dancing,1368055287 +5324,3791,dancing,1368055287 +5324,3798,supernatural,1368055129 +5324,3798,suspenseful,1368055237 +5324,4011,stylish,1368055164 +5324,4018,women,1368055195 +5324,4226,great ending,1368055302 +5324,4291,women,1368055195 +5324,4720,supernatural,1368055129 +5324,4802,screwball comedy,1368055341 +5324,4902,supernatural,1368055129 +5324,5266,suspenseful,1368055237 +5324,5385,musicians,1368055212 +5324,5693,dancing,1368055287 +5324,5820,musicians,1368055212 +5324,6193,mentor,1368055093 +5324,6214,brutality,1368055257 +5324,6254,screwball comedy,1368055341 +5324,6301,brutality,1368055257 +5324,6785,dancing,1368055287 +5324,6874,masterpiece,1368055111 +5324,7217,noir thriller,1368055068 +5324,7223,noir thriller,1368055068 +5324,7235,brutality,1368055257 +5324,7335,noir thriller,1368055068 +5324,7584,screwball comedy,1368055341 +5324,7943,noir thriller,1368055068 +5324,8711,screwball comedy,1368055341 +5324,8784,zero 7,1137132222 +5324,8809,stupid but funny,1137132220 +5324,8809,Sydney,1137132220 +5324,25850,screwball comedy,1368055341 +5324,27592,brutality,1368055256 +5324,27815,mentor,1368055093 +5324,27831,stylish,1368055165 +5324,31785,melancholic,1368055027 +5324,39381,brutality,1368055257 +5324,44709,mentor,1368055093 +5324,56339,supernatural,1368055129 +5324,64993,melancholic,1368055027 +5324,66371,mentor,1368055093 +5324,87304,melancholic,1368055027 +5339,27721,World War I,1214373539 +5348,260,sci-fi,1432336443 +5348,260,space,1432336433 +5361,231,comedy,1242385885 +5361,231,hilarious,1242385889 +5361,231,Jim Carrey,1242385892 +5361,27002,rubbish,1242385868 +5361,35836,reject,1234277426 +5368,589,androids,1429644469 +5368,589,Arnold Schwarzenegger,1429644465 +5368,589,artificial intelligence,1429644452 +5368,589,sci-fi,1429644449 +5368,589,time travel,1429644459 +5368,1200,aliens,1429644485 +5368,1200,sci-fi,1429644482 +5368,1200,space,1429644488 +5368,6537,androids,1429644428 +5368,6537,artificial intelligence,1429644432 +5405,260,adventure,1442909194 +5405,260,drama,1442909246 +5425,260,movie business,1424309462 +5425,260,scifi cult,1424309462 +5425,260,spielberg,1424309462 +5436,7153,Oscar (Best Picture),1159874468 +5445,29,Ron Perlman,1289801224 +5445,1361,disturbing,1275201090 +5445,3896,Juliette Lewis,1292998325 +5445,5662,Dave Foley,1257001657 +5445,7346,Nudity (Topless),1275201730 +5445,7346,Timothy Olyphant,1252899278 +5445,50794,Nudity (Topless),1252288900 +5445,55805,Marisa Tomei,1283810175 +5445,55805,Nudity (Topless),1283810170 +5445,64614,Clint Eastwood,1281416050 +5445,64839,Nudity (Topless),1254460455 +5445,64839,sad,1254460481 +5445,72998,blue indians in space,1261928699 +5445,72998,too long,1261928679 +5445,73321,Denzel Washington,1263688456 +5445,73321,post-apocalyptic,1263688465 +5445,80219,Nudity,1301852046 +5445,81591,bitches be crazy,1297013674 +5462,260,Awesome,1438194157 +5462,260,Fun,1438194163 +5468,31,teacher changing lives,1326923564 +5468,1246,teacher changing lives,1326923582 +5468,1621,Mekhi Phifer,1285876594 +5468,2485,Dule Hill,1285878176 +5468,2507,Omar Epps,1285875819 +5468,2714,Taye Diggs,1285873130 +5468,3071,teacher changing lives,1326923546 +5468,3296,teacher changing lives,1326923502 +5468,4030,Omar Epps,1285875987 +5468,4616,teacher changing lives,1326923474 +5468,4745,Mekhi Phifer,1285877138 +5468,5295,Taye Diggs,1285873417 +5468,5572,Jason George,1285874769 +5468,6263,Taye Diggs,1285873573 +5468,7360,Mekhi Phifer,1285877534 +5468,8593,Omar Epps,1285875327 +5468,8948,Omar Epps,1285876194 +5468,26870,Omar Epps,1285875568 +5468,46572,Dule Hill,1285878381 +5468,48412,Dule Hill,1285878506 +5468,49910,teacher changing lives,1326923461 +5468,56158,Mekhi Phifer,1285877736 +5468,56158,Sharon Leal,1285877757 +5468,59547,teacher changing lives,1326923447 +5468,80787,Christine Lakin,1285872647 +5484,57910,rape,1303452398 +5492,260,Boring,1438132769 +5492,260,i have bad feeling about this,1438132761 +5500,260,classic,1430791830 +5500,260,Cool,1430791853 +5547,4886,sweet movie!,1137630016 +5547,41569,resorts to unnecessary graphical violence,1137629993 +5547,41569,senseless violence,1137629993 +5547,44195,satire,1145937507 +5549,260,action,1436000532 +5549,260,Science Fiction,1436000527 +5566,1676,so bad it's good,1227622443 +5566,47810,so bad it's good,1227622425 +5568,96079,action,1353837504 +5568,96079,James Bond,1353837511 +5568,96079,sad ending,1353837521 +5588,260,classic sci-fi,1444616148 +5588,260,space,1444616151 +5622,628,acting debut,1227331608 +5622,2329,amazing death,1227331683 +5622,2329,Edward Norton,1227331702 +5622,3266,Criterion,1227334124 +5622,4658,Jodorowsky,1227377158 +5622,6016,Brazil,1142618841 +5622,6016,Poverty,1156563200 +5622,6540,Malandragem,1226719187 +5622,6540,Rio de Janeiro,1226719181 +5622,6784,Led Zepellin,1226719332 +5622,7361,philosophy,1156563019 +5622,26258,cult film,1157768303 +5622,26258,existencialism,1156565962 +5622,26258,Jodorowsky,1156565949 +5622,26326,Jodorowsky,1227377183 +5622,59985,I expected More,1226719238 +5622,71433,brazilian,1287150896 +5622,71433,glauber rocha,1287150896 +5622,71433,realism,1287150869 +5630,1,action,1426445294 +5630,1,disney,1426445294 +5630,1,kids,1426445294 +5630,110,medieval,1423764932 +5630,110,mel gibson,1423764932 +5630,110,scotland,1423764932 +5630,593,horror,1423089363 +5630,593,jodie foster,1423089363 +5630,593,psychological,1423089363 +5675,47,brad pitt,1451927596 +5675,47,psychology,1451927582 +5675,47,religion,1451927588 +5675,47,twist ending,1451927575 +5675,356,classic,1429720770 +5675,356,funny,1429720770 +5675,356,touching story,1429720770 +5675,508,AIDs,1437817638 +5675,508,gay,1437817642 +5675,508,gay lead character,1437817636 +5675,5991,musical,1440016567 +5675,62644,classroom,1429794036 +5675,62644,psychology,1429794039 +5675,62644,social experiment,1429794031 +5675,80549,Emma Stone,1429720719 +5675,80549,witty,1429720718 +5675,81845,Colin Firth,1429630344 +5675,81845,complex characters,1429630361 +5675,81845,friendship,1429630351 +5675,81845,Helena Bonham Carter,1429630336 +5675,81845,historical,1429630347 +5675,116797,Benedict Cumberbatch,1429629917 +5675,116797,genius,1429629832 +5675,116797,homosexuality,1429629895 +5675,116797,informatics,1429629903 +5675,141749,eddie redmayne,1450497334 +5675,141749,lgbt,1450497350 +5675,141749,mtf,1450497323 +5675,141749,transgender,1450497329 +5692,356,drama,1431279941 +5692,356,male-female relationship,1431279941 +5692,356,meaning of life,1431279941 +5701,593,smart,1438195703 +5727,36537,Indie,1155834443 +5727,49524,surprisingly good,1172141112 +5735,2729,literature,1162140613 +5735,7143,A Good Tom Cruise Movie,1137160364 +5735,8798,A Good Tom Cruise Movie,1137160877 +5735,36529,political,1137767553 +5735,37720,Exorcism,1137161154 +5751,91529,finale,1427167632 +5758,32,dystopia,1250190770 +5758,32,future,1250190858 +5758,32,post-apocalyptic,1250190849 +5758,32,psychology,1250190852 +5758,32,sci-fi,1250190834 +5758,32,time travel,1250190828 +5758,32,twist ending,1250190831 +5758,442,dystopia,1250191360 +5758,442,Wesley Snipes,1250191376 +5758,1077,dystopia,1250190643 +5758,1077,futuristic,1250190650 +5758,1077,time travel,1250190686 +5758,1265,alternate reality,1250191111 +5758,1265,alternate universe,1250191113 +5758,1265,time loop,1250191100 +5758,1265,time travel,1250191103 +5758,1270,alternate reality,1250191025 +5758,1270,future,1250191016 +5758,1270,time travel,1250191009 +5758,1289,Philip Glass,1250192739 +5758,1289,phillip glass score,1250192743 +5758,1371,sci-fi,1250190596 +5758,1371,Star Trek,1250190624 +5758,1653,dystopic future,1250191342 +5758,2528,futuristic,1250191407 +5758,2528,post-apocalyptic,1250191410 +5758,2571,alternate reality,1250192156 +5758,2571,artificial intelligence,1250192159 +5758,2571,cyberpunk,1250192166 +5758,2571,dystopia,1250192169 +5758,2571,fight scenes,1250192175 +5758,2571,martial arts,1250192180 +5758,2571,philosophy,1250192183 +5758,2571,post apocalyptic,1250192187 +5758,2571,virtual reality,1250192769 +5758,4571,time travel,1250190979 +5758,4873,cerebral,1250190541 +5758,4873,dreams,1250190544 +5758,4873,existentialism,1250190547 +5758,4873,thought-provoking,1250190568 +5758,4878,sci-fi,1250190886 +5758,4878,time travel,1250190891 +5758,5502,Alien Invasion,1250192133 +5758,7254,time travel,1250191066 +5758,7817,cerebral,1250190454 +5758,7817,esoteric plotlines,1250190498 +5758,8914,Complicated,1250190923 +5758,8914,complicated plot,1250190927 +5758,8914,intellectual,1250190935 +5758,8914,sci-fi,1250190941 +5758,8914,time travel,1250190944 +5758,36363,sci-fi,1250192755 +5758,44191,dystopia,1250191228 +5758,44191,sci-fi,1250191241 +5758,44191,thought-provoking,1250191245 +5758,48774,dystopia,1250191257 +5758,48774,end of the world,1250191262 +5758,48774,sci-fi,1250191267 +5758,55908,entirely dialogue,1250190751 +5758,55908,intellectual,1250190726 +5758,55908,one set,1250190758 +5758,55908,philosophical,1250190729 +5758,55908,sci-fi,1250190732 +5758,55908,thought-provoking,1250190739 +5758,60069,dystopia,1250191294 +5758,60069,Post apocalyptic,1250191301 +5758,60069,post-apocalyptic,1250191304 +5758,60069,romance,1250191317 +5763,110,scotland,1247352522 +5763,1250,classic,1241339719 +5763,1250,war,1241339711 +5763,1250,World War II,1241339707 +5763,1287,historical epic,1241339677 +5763,1287,jesus,1241339673 +5763,1287,rome,1241339670 +5763,2728,Biography,1241339614 +5763,2728,History,1241339635 +5763,2728,Rome,1241339620 +5763,2728,slavery,1241339621 +5763,3409,horrors,1247351831 +5763,5559,history,1247352592 +5763,7444,romance,1247351773 +5763,65685,fantasy world,1247351714 +5774,3105,hfjkhjkg,1319063026 +5774,3105,lfgklfg,1319063024 +5774,3105,you,1319063029 +5774,3408,jghjf,1319062844 +5774,3408,jjjjjj,1319062838 +5774,3408,you,1319062848 +5788,480,adventure,1427471145 +5788,480,dinosaurs,1427471145 +5788,480,family,1427471145 +5809,2722,shark,1202505428 +5809,30793,remake,1202505458 +5831,4218,In Netflix queue,1152829382 +5836,474,Secret Service,1439800472 +5836,474,tense,1439800470 +5836,4351,action-packed,1450188488 +5836,4351,bank robbery,1450188485 +5836,4351,keanu reeves,1450188495 +5836,5957,Hugh Grant,1450188370 +5836,5957,Sandra Bullock,1450188332 +5836,6942,Alan Rickman,1439800151 +5836,6942,british,1439800135 +5836,6942,happy ending,1439800155 +5836,6942,Hugh Grant,1439800147 +5836,6942,Liam Neeson,1439800139 +5836,6942,Romance,1439800144 +5836,7007,Bruce Willis,1450188517 +5836,7007,cool dialogues,1450188524 +5836,31685,Eva Mendes,1450188315 +5836,31685,New York City,1450188309 +5836,31685,romantic comedy,1450188313 +5836,31685,Will Smith,1450188311 +5836,49286,Kate Winslet,1439800188 +5836,49286,romantic comedy,1439800191 +5836,72011,business,1443587235 +5836,72011,capitalism,1443587247 +5836,72011,George Clooney,1443587224 +5836,72011,Jason Bateman,1443587263 +5836,72011,love story,1443587238 +5836,72011,travel,1443587241 +5836,74450,Anne Hathaway,1450188197 +5836,74450,Bradley Cooper,1450188207 +5836,74450,Jessica Biel,1450188194 +5836,74450,love,1450188199 +5836,74450,multiple storylines,1450188187 +5836,84152,human potential,1445230420 +5836,84152,visually appealing,1445230417 +5836,86882,comedy,1445229922 +5836,86882,Paris,1445229907 +5836,86882,romance,1445229916 +5836,86882,thought-provoking,1445229895 +5836,86882,witty,1445229928 +5836,86882,Woody Allen,1445229906 +5836,91628,feel-good,1450188147 +5836,91628,New Year's Eve,1450188155 +5836,91628,New York City,1450188149 +5836,93510,Channing Tatum,1450188646 +5836,93510,comedy,1450188652 +5836,93510,funny,1450188644 +5836,93510,Jonah Hill,1450188649 +5836,93510,undercover cops,1450188653 +5836,112556,annoying,1445230142 +5836,112556,bitch,1445230165 +5836,112556,femme fatale,1445230176 +5836,112556,Rosamund Pike,1445230193 +5836,134021,dialogue,1445230315 +5836,134021,french,1445230320 +5836,134021,love story,1445230313 +5836,140110,Anne Hathaway,1450188279 +5836,140110,Entrepreneurship,1450188271 +5836,140110,newyork,1450188284 +5836,140110,Robert De Niro,1450188276 +5836,140110,wonderful,1450188288 +5837,70286,atmospheric,1446924060 +5837,70286,intelligent sci-fi,1446924062 +5837,70286,mockumentary,1446924043 +5837,70286,sci-fi,1446924037 +5837,70286,thriller,1446924055 +5837,112623,apocalyptic,1446923982 +5837,112623,post-apocalyptic,1446924003 +5837,112623,sci-fi,1446923986 +5837,112623,talking animals,1446923999 +5837,116897,argentina,1452115973 +5837,116897,dark humor,1452115966 +5856,188,Slashy,1180567990 +5856,899,Slashy,1173233087 +5856,910,Slashy,1173229390 +5856,1204,Slashy,1173232755 +5856,1234,Slashy,1173229222 +5856,1304,Slashy,1173230279 +5856,1396,Caper,1173230597 +5856,2006,Slashy,1173230655 +5856,2763,Caper,1180569173 +5856,4369,Slashy,1173229562 +5856,4954,Caper,1173229521 +5856,4954,Heist,1173229521 +5856,4954,Slashy,1173229521 +5856,4993,Slashy,1173229668 +5856,5952,Slashy,1173229676 +5856,6539,Slashy,1173230387 +5856,7153,Slashy,1173229673 +5856,8807,Slashy,1173233895 +5856,38061,Slashy,1173234041 +5876,1466,mafia,1239646547 +5876,4387,Paris,1292020177 +5876,5283,College Humor,1240774008 +5876,45447,Paris,1292020145 +5896,786,Arnold,1142770120 +5896,1208,Brando,1142770139 +5896,1721,Melodrama at sea,1142770181 +5898,44199,bank robbery,1146434890 +5898,59519,writers,1234895119 +5902,55820,twist ending,1208985784 +5912,5477,Nudity (Full Frontal - Notable),1165437315 +5936,260,sci-fi,1442714111 +5936,260,space opera,1442714124 +5938,235,Kurosawa,1140320066 +5938,858,Hollywood,1140320118 +5938,2797,classic,1140320081 +5943,1333,Alfred Hitchcock,1236701662 +5943,1333,classic,1236701703 +5961,593,Anthony Hopkins,1443991629 +5961,2329,prison,1443991614 +5962,52604,Engineering,1367421358 +5962,64614,ideology,1406303687 +5962,64614,morality tale,1406303687 +5962,64614,politics,1406303687 +5962,66371,enlightening,1434745244 +5962,66371,inspiring,1434745244 +5962,66371,relaxing,1434745244 +5976,2068,drama,1448771258 +5976,2068,epic,1448771312 +5976,85412,mockumentary,1449375560 +5986,41566,overrated,1139320360 +6044,80969,based on a book,1446919102 +6044,80969,disturbing,1446919110 +6044,80969,thought-provoking,1446919118 +6044,112552,Academy Award Nominee,1446919967 +6055,1262,prison break,1182514325 +6055,1262,prison escape,1182514325 +6055,3196,prison break,1182444429 +6055,4022,SURVIVAL,1182502362 +6055,48394,good but not great,1182445400 +6065,260,sci-fi,1437720085 +6065,260,space epic,1437720098 +6082,2308,action,1245749973 +6082,2308,blaxploitation,1245749976 +6082,2308,chase,1245749973 +6082,2308,crime,1245749973 +6082,2308,guns,1245749973 +6082,2308,police corruption,1245749973 +6082,2450,action,1245750211 +6082,2450,fun,1245750211 +6082,2450,funny,1245750211 +6082,2450,Lea Thompson,1245750127 +6082,2450,puppets,1245750211 +6082,2450,sci-fi,1245750211 +6082,5540,Ray Harryhausen,1245739905 +6082,7757,Ray Harryhausen,1245739858 +6082,8015,children,1245750326 +6082,8015,nostalgic,1245750326 +6082,8015,surreal,1245750326 +6082,69451,Bruce Campbell,1245739002 +6082,69451,horror,1245739002 +6082,69451,mutants,1245739003 +6082,69451,sci-fi,1245739002 +6082,69453,adapted from:book,1245739815 +6082,69453,adventure,1245739815 +6082,69453,dinosaurs,1245739815 +6082,69453,Ray Harryhausen,1245739815 +6082,69453,sci-fi,1245739815 +6082,69453,submarine,1245739815 +6082,69503,comedy,1245965559 +6082,69503,Ernie Hudson,1245965560 +6082,69503,Eugene Levy,1245965560 +6082,69503,hypnosis,1245965559 +6082,69503,John Candy,1245965563 +6082,69503,ridiculous,1245965559 +6082,69506,chicken,1245965971 +6082,69506,funny,1245965949 +6082,69506,horror,1245965949 +6082,69506,Troma,1245965951 +6082,69720,anthology,1247048712 +6082,69720,comedy,1247048712 +6082,69720,Danny Trejo,1247048712 +6082,69720,horror,1247048712 +6082,69720,Snoop Dogg,1247048712 +6082,69722,80s,1247049164 +6082,69722,children,1247049164 +6082,69722,comedy,1247049164 +6082,69722,family,1247049164 +6082,69722,fantasy,1247049164 +6082,69722,motorcycle,1247049164 +6088,115569,https://movielens.https://movielens.org/explore?tag=dark&sortBy=tagScoreorg/explore?tag=gripping&sortBy=tagScore,1443965239 +6088,115569,https://movielens.org/explore?tag=dark&sortBy=tagScore,1443965245 +6088,115569,https://movielens.org/explore?tag=thriller&sortBy=tagScore,1443965248 +6089,6711,Japan,1154942091 +6089,7153,rings,1154884194 +6096,260,classic sci-fi,1438025229 +6096,260,hero's journey,1438025246 +6099,80489,action,1294030150 +6099,80489,Ben Affleck,1294030154 +6099,80489,character driven,1294030169 +6102,858,Al Pacino,1172088724 +6102,1221,Al Pacino,1172088689 +6134,56587,fgh,1205873103 +6134,58025,Below R,1205872777 +6137,3386,Kevin Costner,1164876961 +6155,260,action,1436446034 +6155,260,hero's journey,1436446038 +6155,260,space adventure,1436446022 +6155,116797,computers,1436449336 +6155,116797,good science,1436449336 +6155,116797,history,1436449336 +6155,116797,love,1436449336 +6155,116797,war,1436449336 +6157,32,atmospheric,1446572305 +6157,32,brad pitt,1446572280 +6157,32,bruce willis,1446572278 +6157,32,complicated,1446572303 +6157,32,dark,1446572345 +6157,32,dystopia,1446572290 +6157,32,end of the world,1446572325 +6157,32,future,1446572308 +6157,32,genetics,1446572318 +6157,32,great ending,1446572297 +6157,32,imagination,1446572329 +6157,32,imdb top 250,1446572320 +6157,32,mindfuck,1446572315 +6157,32,original,1446572292 +6157,32,Post apocalyptic,1446572306 +6157,32,post-apocalyptic,1446572272 +6157,32,psychology,1446572301 +6157,32,remake,1446572333 +6157,32,sci-fi,1446572282 +6157,32,Terry Gilliam,1446572311 +6157,32,time loop,1446572336 +6157,32,time travel,1446572274 +6157,32,twist ending,1446572276 +6157,32,violence,1446572314 +6157,47,atmospheric,1446572436 +6157,47,biblical,1446572461 +6157,47,brad pitt,1446572370 +6157,47,crime,1446572439 +6157,47,dark,1446572433 +6157,47,David Fincher,1446572464 +6157,47,disturbing,1446572372 +6157,47,great ending,1446572430 +6157,47,grim,1446572467 +6157,47,Gwyneth Paltrow,1446572470 +6157,47,imdb top 250,1446572472 +6157,47,investigation,1446572441 +6157,47,Kevin Spacey,1446572429 +6157,47,morgan freeman,1446572366 +6157,47,mystery,1446572443 +6157,47,philosophical,1446572449 +6157,47,police,1446572460 +6157,47,powerful ending,1446572435 +6157,47,psychological,1446572453 +6157,47,psychology,1446572368 +6157,47,religion,1446572444 +6157,47,serial killer,1446572363 +6157,47,thriller,1446572483 +6157,47,twist ending,1446572364 +6157,47,twists & turns,1446572457 +6157,47,violent,1446572455 +6157,50,Benicio Del Toro,1446572530 +6157,50,clever,1446572539 +6157,50,complicated,1446572502 +6157,50,conspiracy,1446572504 +6157,50,Crime,1446572525 +6157,50,Dark,1446572535 +6157,50,ensemble cast,1446572521 +6157,50,excellent script,1446572510 +6157,50,funny,1446572532 +6157,50,great acting,1446572527 +6157,50,great ending,1446572519 +6157,50,heist,1446572514 +6157,50,imdb top 250,1446572537 +6157,50,Kevin Spacey,1446572496 +6157,50,mindfuck,1446572517 +6157,50,mystery,1446572548 +6157,50,organized crime,1446572508 +6157,50,Oscar (Best Supporting Actor),1446572544 +6157,50,storytelling,1446572506 +6157,50,suspense,1446572498 +6157,50,thriller,1446572523 +6157,50,tricky,1446572547 +6157,50,twist ending,1446572495 +6157,110,action,1446572571 +6157,110,beautiful scenery,1446572602 +6157,110,Biography,1446572598 +6157,110,british,1446572595 +6157,110,classic,1446572575 +6157,110,drama,1446572585 +6157,110,england,1446572616 +6157,110,epic,1446572591 +6157,110,historical,1446572563 +6157,110,History,1446572613 +6157,110,imdb top 250,1446572620 +6157,110,inspirational,1446572582 +6157,110,long,1446572600 +6157,110,Medieval,1446572565 +6157,110,Oscar (Best Cinematography),1446572589 +6157,110,Oscar (Best Directing),1446572606 +6157,110,Oscar (Best Picture),1446572579 +6157,110,revenge,1446572587 +6157,110,Scotland,1446572569 +6157,110,sword fight,1446572593 +6157,110,violent,1446572604 +6157,110,war,1446572567 +6157,123,dreamlike,1447241393 +6157,123,good music,1447241394 +6157,123,Hong Kong,1447241397 +6157,123,loneliness,1447241399 +6157,123,lyrical,1447241405 +6157,123,melancholy,1447241420 +6157,123,reflective,1447241391 +6157,123,scenic,1447241421 +6157,123,stylized,1447241388 +6157,152,atmospheric,1447516811 +6157,152,Christopher Walken,1447516791 +6157,152,dark,1447516804 +6157,152,drug abuse,1447516794 +6157,152,intense,1447516825 +6157,152,Lili Taylor,1447516796 +6157,152,music,1447516816 +6157,152,philosophical,1447516799 +6157,152,psychological,1447516836 +6157,152,stylized,1447516797 +6157,152,vampires,1447516792 +6157,165,action,1447355128 +6157,165,action packed,1447355156 +6157,165,always watch it when it's on tv,1447355146 +6157,165,bruce willis,1447355125 +6157,165,crime,1447355158 +6157,165,Efficient,1447355171 +6157,165,Entertaining,1447355178 +6157,165,heist,1447355148 +6157,165,Jeremy Irons,1447355150 +6157,165,John McClane,1447355160 +6157,165,John McTiernan,1447355161 +6157,165,lone hero,1447355131 +6157,165,New York City,1447355135 +6157,165,predictable,1447355152 +6157,165,Samuel L. Jackson,1447355127 +6157,165,terrorism,1447355133 +6157,165,thriller,1447355154 +6157,165,vengeance,1447355164 +6157,165,violent,1447355130 +6157,215,bittersweet,1446412637 +6157,215,conversation,1446412579 +6157,215,dialogue,1446412585 +6157,215,dialogue driven,1446412646 +6157,215,ethan hawke,1446412631 +6157,215,intelligent,1446412582 +6157,215,Julie Delpy,1446412633 +6157,215,love story,1446412600 +6157,215,minimalist,1446412590 +6157,215,quirky,1446412595 +6157,215,reflective,1446412581 +6157,215,Richard Linklater,1446412597 +6157,215,romantic,1446412587 +6157,215,witty,1446412592 +6157,253,adapted from:book,1446572687 +6157,253,Antonio Banderas,1446572681 +6157,253,atmospheric,1446572678 +6157,253,based on a book,1446572676 +6157,253,brad pitt,1446572668 +6157,253,cult classic,1446572684 +6157,253,fantasy,1446572674 +6157,253,gothic,1446572689 +6157,253,horror,1446572679 +6157,253,Kirsten Dunst,1446572673 +6157,253,New Orleans,1446572692 +6157,253,Nudity (Full Frontal),1446572683 +6157,253,Paris,1446572693 +6157,253,tom cruise,1446572671 +6157,253,vampire,1446572669 +6157,253,vampires,1446572666 +6157,260,action,1447243361 +6157,260,adventure,1447243365 +6157,260,classic,1447243339 +6157,260,classic sci-fi,1447243356 +6157,260,cult classic,1447243397 +6157,260,EPIC,1447243389 +6157,260,epic adventure,1447243415 +6157,260,fantasy,1447243377 +6157,260,futuristic,1447243429 +6157,260,George Lucas,1447243411 +6157,260,good vs evil,1447243385 +6157,260,great soundtrack,1447243447 +6157,260,Harrison Ford,1447243403 +6157,260,jedi,1447243423 +6157,260,sci-fi,1447243331 +6157,260,science fantasy,1447243443 +6157,260,Science Fiction,1447243335 +6157,260,space,1447243344 +6157,260,space adventure,1447243348 +6157,260,space epic,1447243392 +6157,260,space opera,1447243380 +6157,260,special effects,1447243439 +6157,260,Star Wars,1447243370 +6157,260,sword fight,1447243435 +6157,296,action,1447243130 +6157,296,assassin,1447243154 +6157,296,atmospheric,1447243166 +6157,296,Black comedy,1447243121 +6157,296,bloody,1447243238 +6157,296,bruce willis,1447243125 +6157,296,Christopher Walken,1447243249 +6157,296,classic,1447243143 +6157,296,comedy,1447243169 +6157,296,crime,1447243127 +6157,296,cult,1447243208 +6157,296,cult film,1447243115 +6157,296,dark,1447243228 +6157,296,dark comedy,1447243088 +6157,296,dark humor,1447243188 +6157,296,dialogue,1447243202 +6157,296,drugs,1447243119 +6157,296,ensemble cast,1447243242 +6157,296,funny,1447243179 +6157,296,gangster,1447243205 +6157,296,gangsters,1447243224 +6157,296,good dialogue,1447243181 +6157,296,good music,1447243217 +6157,296,great dialogue,1447243252 +6157,296,great soundtrack,1447243185 +6157,296,Highly quotable,1447243214 +6157,296,hit men,1447243221 +6157,296,imdb top 250,1447243197 +6157,296,intense,1447243259 +6157,296,John Travolta,1447243163 +6157,296,multiple storylines,1447243104 +6157,296,noir,1447243245 +6157,296,non-linear,1447243150 +6157,296,nonlinear,1447243090 +6157,296,notable soundtrack,1447243199 +6157,296,organized crime,1447243139 +6157,296,Oscar (Best Writing - Screenplay Written Directly for the Screen),1447243268 +6157,296,Quentin Tarantino,1447243087 +6157,296,quirky,1447243145 +6157,296,Samuel L. Jackson,1447243107 +6157,296,storytelling,1447243160 +6157,296,stylish,1447243211 +6157,296,stylized,1447243136 +6157,296,Tarantino,1447243133 +6157,296,Uma Thurman,1447243157 +6157,296,violence,1447243113 +6157,296,violent,1447243148 +6157,316,action,1447355207 +6157,316,aliens,1447355192 +6157,316,archaeology,1447355198 +6157,316,Egypt,1447355200 +6157,316,Egyptian Mythology,1447355205 +6157,316,James Spader,1447355209 +6157,316,Kurt Russell,1447355202 +6157,316,military,1447355204 +6157,316,mythology,1447355196 +6157,316,pyramids,1447355211 +6157,316,sci-fi,1447355193 +6157,316,science fiction,1447355195 +6157,316,space,1447355190 +6157,316,Stargate,1447355189 +6157,318,atmospheric,1446572753 +6157,318,based on a book,1446572758 +6157,318,classic,1446572737 +6157,318,crime,1446572781 +6157,318,drama,1446572742 +6157,318,feel-good,1446572833 +6157,318,friendship,1446572728 +6157,318,good story,1446572836 +6157,318,great acting,1446572751 +6157,318,great ending,1446572739 +6157,318,heartwarming,1446572772 +6157,318,hope,1446572756 +6157,318,imdb top 250,1446572765 +6157,318,inspirational,1446572726 +6157,318,justice,1446572748 +6157,318,Morgan Freeman,1446572717 +6157,318,narrated,1446572762 +6157,318,oscar (best picture),1446572787 +6157,318,powerful ending,1446572773 +6157,318,prison,1446572720 +6157,318,prison escape,1446572722 +6157,318,reflective,1446572746 +6157,318,sentimental,1446572778 +6157,318,Stephen King,1446572734 +6157,318,thought-provoking,1446572732 +6157,318,Tim Robbins,1446572768 +6157,318,twist ending,1446572724 +6157,356,based on a book,1447355302 +6157,356,bittersweet,1447355240 +6157,356,classic,1447355237 +6157,356,comedy,1447355262 +6157,356,drama,1447355255 +6157,356,emotional,1447355286 +6157,356,feel-good,1447355288 +6157,356,Funny,1447355277 +6157,356,great acting,1447355318 +6157,356,heartwarming,1447355283 +6157,356,historical,1447355265 +6157,356,history,1447355268 +6157,356,inspirational,1447355259 +6157,356,Oscar (Best Actor),1447355305 +6157,356,Oscar (Best Directing),1447355325 +6157,356,Oscar (Best Picture),1447355280 +6157,356,Oscar Winner,1447355309 +6157,356,quirky,1447355311 +6157,356,Robert Zemeckis,1447355315 +6157,356,romance,1447355274 +6157,356,tom hanks,1447355232 +6157,356,touching,1447355271 +6157,356,Vietnam,1447355291 +6157,356,vietnam war,1447355252 +6157,364,africa,1447355363 +6157,364,animals,1447355353 +6157,364,animation,1447355347 +6157,364,Childhood,1447355376 +6157,364,classic,1447355367 +6157,364,coming of age,1447355349 +6157,364,Disney,1447355345 +6157,364,Disney animated feature,1447355371 +6157,364,father-son relationship,1447355356 +6157,364,Hans Zimmer,1447355373 +6157,364,lions,1447355351 +6157,364,Matthew Broderick,1447355379 +6157,364,musical,1447355360 +6157,364,Oscar (Best Music - Original Score),1447355391 +6157,364,Oscar (Best Music - Original Song),1447355365 +6157,364,Rowan Atkinson,1447355389 +6157,364,soundtrack,1447355369 +6157,364,talking animals,1447355358 +6157,474,assassin,1447355420 +6157,474,assassination,1447355417 +6157,474,Clint Eastwood,1447355408 +6157,474,John Malkovich,1447355410 +6157,474,Rene Russo,1447355422 +6157,474,Secret Service,1447355412 +6157,474,tense,1447355407 +6157,474,Thriller,1447355418 +6157,474,Wolfgang Petersen,1447355424 +6157,480,action,1446572870 +6157,480,adventure,1446572863 +6157,480,based on a book,1446572884 +6157,480,cloning,1446572886 +6157,480,Cult,1446572906 +6157,480,Dinosaurs,1446572858 +6157,480,genetics,1446572868 +6157,480,Jeff Goldblum,1446572872 +6157,480,Michael Crichton,1446572882 +6157,480,Oscar (Best Effects - Visual Effects),1446572879 +6157,480,Sam Neill,1446572894 +6157,480,scenic,1446572892 +6157,480,sci-fi,1446572865 +6157,480,science,1446572890 +6157,480,Steven Spielberg,1446572860 +6157,480,Suspense,1446572888 +6157,508,AIDs,1447355484 +6157,508,courtroom,1447355493 +6157,508,death,1447355500 +6157,508,Denzel Washington,1447355491 +6157,508,dramatic,1447355437 +6157,508,Emotional,1447355534 +6157,508,gay,1447355489 +6157,508,great acting,1447355509 +6157,508,homophobia,1447355498 +6157,508,homosexual theme,1447355511 +6157,508,homosexuality,1447355495 +6157,508,injustice,1447355515 +6157,508,love,1447355519 +6157,508,Oscar (Best Actor),1447355485 +6157,508,sad,1447355501 +6157,508,tom hanks,1447355487 +6157,509,19th century,1447431965 +6157,509,adultery,1447431970 +6157,509,Anna Paquin,1447432024 +6157,509,atmospheric,1447431962 +6157,509,beautiful,1447431967 +6157,509,disability,1447432006 +6157,509,erotic,1447431968 +6157,509,Golden Palm,1447431996 +6157,509,good soundtrack,1447431993 +6157,509,great acting,1447431987 +6157,509,great soundtrack,1447431982 +6157,509,Harvey Keitel,1447432015 +6157,509,Holly Hunter,1447432013 +6157,509,intense,1447431972 +6157,509,Jane Campion,1447432016 +6157,509,lyrical,1447431979 +6157,509,melancholy,1447431978 +6157,509,New Zealand,1447431964 +6157,509,Nudity (Full Frontal - Notable),1447432019 +6157,509,Nudity (Rear),1447432021 +6157,509,Nudity (Topless),1447431985 +6157,509,Oscar (Best Actress),1447431976 +6157,509,Oscar (Best Supporting Actress),1447432002 +6157,509,Palme d'Or,1447431988 +6157,509,passionate,1447431994 +6157,509,romantic,1447432007 +6157,509,sexuality,1447431974 +6157,509,soundtrack,1447432000 +6157,509,stylized,1447432004 +6157,509,unusual,1447431998 +6157,588,2D animation,1447432086 +6157,588,adventure,1447432048 +6157,588,animation,1447432039 +6157,588,artistic,1447432052 +6157,588,children,1447432072 +6157,588,Classic,1447432110 +6157,588,comedy,1447432059 +6157,588,Disney,1447432037 +6157,588,fairy tale,1447432043 +6157,588,Fantasy,1447432051 +6157,588,funny,1447432044 +6157,588,good versus evil,1447432057 +6157,588,kids and family,1447432055 +6157,588,middle east,1447432046 +6157,588,music,1447432104 +6157,588,musical,1447432038 +6157,588,Oscar (Best Music - Original Score),1447432049 +6157,588,Oscar (Best Music - Original Song),1447432079 +6157,588,rags to riches,1447432063 +6157,588,Robin Williams,1447432041 +6157,589,action,1447432182 +6157,589,androids,1447432223 +6157,589,apocalypse,1447432202 +6157,589,Arnold Schwarzenegger,1447432176 +6157,589,artificial intelligence,1447432199 +6157,589,assassin,1447432220 +6157,589,classic,1447432225 +6157,589,computers,1447432207 +6157,589,cyborgs,1447432221 +6157,589,dystopia,1447432197 +6157,589,dystopic future,1447432244 +6157,589,future,1447432205 +6157,589,imdb top 250,1447432238 +6157,589,James Cameron,1447432217 +6157,589,Linda Hamilton,1447432230 +6157,589,music,1447432233 +6157,589,nuclear war,1447432211 +6157,589,original plot,1447432236 +6157,589,Oscar (Best Effects - Sound Effects Editing),1447432251 +6157,589,Oscar (Best Effects - Visual Effects),1447432228 +6157,589,Oscar (Best Makeup),1447432253 +6157,589,Oscar (Best Sound),1447432255 +6157,589,robots,1447432185 +6157,589,sci-fi,1447432178 +6157,589,stylized,1447432215 +6157,589,Suspense,1447432213 +6157,589,terminator,1447432250 +6157,589,time travel,1447432180 +6157,589,violence,1447432209 +6157,590,adventure,1447432336 +6157,590,American Civil War,1447432317 +6157,590,based on a book,1447432305 +6157,590,Based on book,1447432302 +6157,590,biopic,1447432328 +6157,590,bittersweet,1447432297 +6157,590,civil war,1447432313 +6157,590,culture clash,1447432290 +6157,590,Drama,1447432309 +6157,590,historical,1447432293 +6157,590,indians,1447432299 +6157,590,Kevin Costner,1447432287 +6157,590,Native Americans,1447432304 +6157,590,Oscar (Best Cinematography),1447432307 +6157,590,Oscar (Best Directing),1447432314 +6157,590,Oscar (Best Editing),1447432325 +6157,590,Oscar (Best Music - Original Score),1447432318 +6157,590,Oscar (Best Picture),1447432288 +6157,590,Oscar (Best Sound),1447432320 +6157,590,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1447432338 +6157,590,US history,1447432311 +6157,590,Visually stunning,1447432340 +6157,590,war,1447432295 +6157,590,western,1447432300 +6157,593,acting,1447432469 +6157,593,Anthony Hopkins,1447432361 +6157,593,atmospheric,1447432497 +6157,593,based on a book,1447432398 +6157,593,cannibalism,1447432366 +6157,593,classic,1447432389 +6157,593,clever,1447432473 +6157,593,creepy,1447432437 +6157,593,crime,1447432372 +6157,593,cult film,1447432471 +6157,593,dark,1447432407 +6157,593,disturbing,1447432374 +6157,593,drama,1447432403 +6157,593,excellent script,1447432387 +6157,593,fbi,1447432394 +6157,593,good acting,1447432432 +6157,593,gothic,1447432424 +6157,593,great acting,1447432385 +6157,593,Hannibal Lecter,1447432376 +6157,593,imdb top 250,1447432435 +6157,593,intense,1447432455 +6157,593,investigation,1447432396 +6157,593,Jodie Foster,1447432370 +6157,593,mental illness,1447432392 +6157,593,murder,1447432439 +6157,593,mystery,1447432426 +6157,593,Oscar (Best Actor),1447432428 +6157,593,Oscar (Best Actress),1447432423 +6157,593,Oscar (Best Directing),1447432444 +6157,593,Oscar (Best Picture),1447432411 +6157,593,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1447432482 +6157,593,psychological,1447432378 +6157,593,psychological thriller,1447432442 +6157,593,psychology,1447432363 +6157,593,psychopath,1447432446 +6157,593,psychothriller,1447432382 +6157,593,serial killer,1447432359 +6157,593,strong female lead,1447432415 +6157,593,suspense,1447432368 +6157,593,suspenseful,1447432405 +6157,593,tense,1447432409 +6157,593,thriller,1447432380 +6157,593,violent,1447432401 +6157,608,based on a true story,1446572938 +6157,608,black comedy,1446572918 +6157,608,Coen Brothers,1446572913 +6157,608,crime,1446572923 +6157,608,dark comedy,1446572917 +6157,608,dark humor,1446572946 +6157,608,Frances McDormand,1446572943 +6157,608,funny,1446572948 +6157,608,imdb top 250,1446572955 +6157,608,KIDNAPPING,1446572941 +6157,608,murder,1446572926 +6157,608,Oscar (Best Actress),1446572957 +6157,608,quirky,1446572920 +6157,608,Steve Buscemi,1446572936 +6157,608,strong female,1446572934 +6157,608,violence,1446572951 +6157,608,violent,1446572931 +6157,608,witty,1446572924 +6157,741,anime,1447432516 +6157,741,artificial intelligence,1447432518 +6157,741,complex,1447432524 +6157,741,cyberpunk,1447432515 +6157,741,cyborgs,1447432529 +6157,741,great anime,1447432542 +6157,741,hackers,1447432527 +6157,741,Japan,1447432522 +6157,741,philosophical,1447432519 +6157,741,philosophy,1447432533 +6157,741,sci-fi,1447432521 +6157,741,techno-evolution,1447432526 +6157,741,visually appealing,1447432531 +6157,778,addiction,1447432563 +6157,778,AIDS,1447432604 +6157,778,based on a book,1447432575 +6157,778,black comedy,1447432558 +6157,778,British,1447432564 +6157,778,classic,1447432619 +6157,778,crime,1447432580 +6157,778,cult film,1447432626 +6157,778,Danny Boyle,1447432606 +6157,778,dark comedy,1447432555 +6157,778,drug abuse,1447432578 +6157,778,drugs,1447432556 +6157,778,Ewan McGregor,1447432560 +6157,778,great soundtrack,1447432566 +6157,778,heroin,1447432577 +6157,778,imdb top 250,1447432592 +6157,778,Irvine Welsh,1447432610 +6157,778,narrated,1447432602 +6157,778,notable soundtrack,1447432620 +6157,778,Nudity (Full Frontal - Notable),1447432600 +6157,778,Nudity (Full Frontal),1447432595 +6157,778,Oscar Nominee: Adapted Screenplay,1447432647 +6157,778,Robert Carlyle,1447432637 +6157,778,scotland,1447432597 +6157,778,Scottish,1447432598 +6157,778,social commentary,1447432561 +6157,778,soundtrack,1447432639 +6157,778,surreal,1447432591 +6157,778,United Kingdom,1447432613 +6157,778,violence,1447432589 +6157,778,violent,1447432588 +6157,858,100 Greatest Movies,1446573051 +6157,858,acting,1446573040 +6157,858,Al Pacino,1446572973 +6157,858,atmospheric,1446572984 +6157,858,based on a book,1446573009 +6157,858,catchy theme,1446573044 +6157,858,classic,1446572971 +6157,858,complex relationships,1446573055 +6157,858,crime,1446572988 +6157,858,family,1446573011 +6157,858,Francis Ford Coppola,1446573017 +6157,858,great acting,1446572977 +6157,858,Mafia,1446572969 +6157,858,Marlon Brando,1446572979 +6157,858,masterpiece,1446572983 +6157,858,melancholy,1446572990 +6157,858,music,1446573048 +6157,858,New York City,1446573014 +6157,858,Nudity (Topless),1446572992 +6157,858,organized crime,1446572975 +6157,858,Oscar (Best Actor),1446573036 +6157,858,oscar (best directing),1446572980 +6157,858,Oscar (Best Picture),1446572986 +6157,858,robert de niro,1446572996 +6157,858,violence,1446572994 +6157,1059,action,1446573116 +6157,1059,Amazing Cinematography,1446573083 +6157,1059,based on a play,1446573091 +6157,1059,Baz Luhrmann,1446573093 +6157,1059,beautiful,1446573075 +6157,1059,cinematography,1446573097 +6157,1059,Claire Danes,1446573081 +6157,1059,clever,1446573113 +6157,1059,colourful,1446573089 +6157,1059,great soundtrack,1446573088 +6157,1059,Leonardo DiCaprio,1446573079 +6157,1059,music,1446573099 +6157,1059,Quirky,1446573118 +6157,1059,Red Curtain trilogy,1446573125 +6157,1059,romance,1446573111 +6157,1059,romantic,1446573120 +6157,1059,shakespeare,1446573078 +6157,1059,Spectacular,1446573163 +6157,1059,updated classics,1446573086 +6157,1080,Biblical,1447432699 +6157,1080,black comedy,1447432701 +6157,1080,British,1447432675 +6157,1080,british comedy,1447432694 +6157,1080,Christianity,1447432706 +6157,1080,comedy,1447432692 +6157,1080,controversial,1447432687 +6157,1080,funny,1447432734 +6157,1080,hilarious,1447432689 +6157,1080,humorous,1447432711 +6157,1080,imdb top 250,1447432741 +6157,1080,irreverent,1447432743 +6157,1080,John Cleese,1447432732 +6157,1080,mockumentary,1447432708 +6157,1080,Monty Python,1447432672 +6157,1080,Nudity (Full Frontal),1447432704 +6157,1080,parody,1447432676 +6157,1080,quotable,1447432703 +6157,1080,religion,1447432687 +6157,1080,satire,1447432673 +6157,1080,satirical,1447432691 +6157,1080,Terry Gilliam,1447432696 +6157,1080,Terry Jones,1447432736 +6157,1080,whimsical,1447432698 +6157,1131,Classic,1447517509 +6157,1131,Claude Berri,1447517494 +6157,1131,emotional,1447517495 +6157,1131,French,1447517498 +6157,1131,Gerard Depardieu,1447517502 +6157,1131,hunchback,1447517501 +6157,1131,sad,1447517523 +6157,1131,tragedy,1447517496 +6157,1132,book,1447517542 +6157,1132,Claude Berri,1447517535 +6157,1132,Drama,1447517545 +6157,1132,Dramatic,1447517546 +6157,1132,emmanuelle beart,1447517537 +6157,1132,French,1447517544 +6157,1132,Nudity (Full Frontal),1447517539 +6157,1132,sad,1447517557 +6157,1196,action,1446573199 +6157,1196,adventure,1446573194 +6157,1196,classic,1446573196 +6157,1196,fantasy,1446573191 +6157,1196,George Lucas,1446573192 +6157,1196,great soundtrack,1446573201 +6157,1196,Harrison Ford,1446573186 +6157,1196,music,1446573205 +6157,1196,robots,1446573198 +6157,1196,sci-fi,1446573181 +6157,1196,space,1446573185 +6157,1196,Star Wars,1446573188 +6157,1196,sword fight,1446573224 +6157,1198,action,1447517584 +6157,1198,adventure,1447517577 +6157,1198,archaeology,1447517582 +6157,1198,atmospheric,1447517603 +6157,1198,biblical,1447517611 +6157,1198,classic,1447517590 +6157,1198,comedy,1447517591 +6157,1198,epic,1447517619 +6157,1198,fun,1447517632 +6157,1198,good versus evil,1447517601 +6157,1198,great soundtrack,1447517608 +6157,1198,Harrison Ford,1447517579 +6157,1198,humorous,1447517612 +6157,1198,imdb top 250,1447517607 +6157,1198,indiana jones,1447517580 +6157,1198,Karen Allen,1447517615 +6157,1198,Nazis,1447517585 +6157,1198,Oscar (Best Art Direction - Set Decoration),1447517635 +6157,1198,Oscar (Best Effects - Visual Effects),1447517627 +6157,1198,Oscar (Best Sound),1447517629 +6157,1198,Steven Spielberg,1447517587 +6157,1198,treasure hunt,1447517600 +6157,1198,World War II,1447517605 +6157,1200,action,1447517651 +6157,1200,Alien,1447517676 +6157,1200,aliens,1447517648 +6157,1200,androids,1447517659 +6157,1200,atmospheric,1447517663 +6157,1200,classic,1447517672 +6157,1200,franchise,1447517690 +6157,1200,horror,1447517660 +6157,1200,imdb top 250,1447517687 +6157,1200,James Cameron,1447517667 +6157,1200,Lance Henriksen,1447517696 +6157,1200,military,1447517664 +6157,1200,monster,1447517675 +6157,1200,Oscar (Best Effects - Visual Effects),1447517680 +6157,1200,sci-fi,1447517647 +6157,1200,scifi,1447517688 +6157,1200,sequel,1447517693 +6157,1200,Sigourney Weaver,1447517654 +6157,1200,space,1447517649 +6157,1200,SPACE TRAVEL,1447517669 +6157,1200,strong femal lead,1447517679 +6157,1200,suspense,1447517653 +6157,1200,tense,1447517657 +6157,1200,violent,1447517671 +6157,1201,atmospheric,1446573249 +6157,1201,classic,1446573251 +6157,1201,Clint Eastwood,1446573235 +6157,1201,complex characters,1446573247 +6157,1201,Ennio Morricone,1446573236 +6157,1201,epic,1446573260 +6157,1201,humorous,1446573262 +6157,1201,music,1446573253 +6157,1201,quirky,1446573254 +6157,1201,Sergio Leone,1446573242 +6157,1201,spaghetti western,1446573238 +6157,1201,western,1446573245 +6157,1203,all-male cast,1446573338 +6157,1203,cinematography,1446573331 +6157,1203,classic,1446573290 +6157,1203,confrontational,1446573304 +6157,1203,courtroom,1446573292 +6157,1203,courtroom drama,1446573287 +6157,1203,crime,1446573302 +6157,1203,ensemble cast,1446573300 +6157,1203,good dialogue,1446573283 +6157,1203,great acting,1446573333 +6157,1203,great screenplay,1446573335 +6157,1203,gritty,1446573329 +6157,1203,group psychology,1446573294 +6157,1203,Henry Fonda,1446573315 +6157,1203,imdb top 250,1446573306 +6157,1203,justice,1446573328 +6157,1203,low budget,1446573298 +6157,1203,racism,1446573296 +6157,1203,smart,1446573395 +6157,1203,social commentary,1446573285 +6157,1203,thought-provoking,1446573288 +6157,1209,atmospheric,1446575686 +6157,1209,beautiful shots,1446575753 +6157,1209,cinematography,1446575729 +6157,1209,classic,1446575692 +6157,1209,Clint Eastwood,1446575703 +6157,1209,epic,1446575694 +6157,1209,genre-defining,1446575715 +6157,1209,great soundtrack,1446575690 +6157,1209,imdb top 250,1446575698 +6157,1209,Sergio Leone,1446575683 +6157,1209,stylized,1446575689 +6157,1209,tense,1446575699 +6157,1209,visually appealing,1446575696 +6157,1209,western,1446575687 +6157,1210,action,1446575778 +6157,1210,adventure,1446575775 +6157,1210,aliens,1446575777 +6157,1210,Carrie Fisher,1446575795 +6157,1210,classic,1446575786 +6157,1210,fantasy,1446575767 +6157,1210,fighting,1446575817 +6157,1210,George Lucas,1446575766 +6157,1210,great ending,1446575780 +6157,1210,great soundtrack,1446575785 +6157,1210,Harrison Ford,1446575764 +6157,1210,Oscar (Best Music - Original Score),1446575801 +6157,1210,robots,1446575788 +6157,1210,sci-fi,1446575760 +6157,1210,space,1446575763 +6157,1210,space opera,1446575790 +6157,1210,Star Wars,1446575761 +6157,1213,anti-hero,1447517760 +6157,1213,based on a book,1447517741 +6157,1213,biography,1447517746 +6157,1213,bloody,1447517777 +6157,1213,confrontational,1447517765 +6157,1213,crime,1447517730 +6157,1213,dark comedy,1447517724 +6157,1213,disturbing,1447517747 +6157,1213,drama,1447517773 +6157,1213,gangs,1447517761 +6157,1213,gangster,1447517755 +6157,1213,gangsters,1447517743 +6157,1213,good dialogue,1447517735 +6157,1213,gritty,1447517731 +6157,1213,imdb top 250,1447517753 +6157,1213,Joe Pesci,1447517737 +6157,1213,mafia,1447517718 +6157,1213,Martin Scorsese,1447517719 +6157,1213,narrated,1447517733 +6157,1213,organized crime,1447517723 +6157,1213,oscar (best directing),1447517749 +6157,1213,Oscar (Best Supporting Actor),1447517758 +6157,1213,Ray Liotta,1447517744 +6157,1213,robert de niro,1447517721 +6157,1213,Samuel L. Jackson,1447517739 +6157,1213,stylish,1447517728 +6157,1213,stylized,1447517768 +6157,1213,violence,1447517727 +6157,1213,violent,1447517751 +6157,1213,visceral,1447517763 +6157,1214,action,1447517867 +6157,1214,alien,1447517830 +6157,1214,aliens,1447517789 +6157,1214,androids,1447517818 +6157,1214,atmospheric,1447517797 +6157,1214,classic,1447517814 +6157,1214,claustrophobic,1447517859 +6157,1214,dark,1447517808 +6157,1214,franchise,1447517843 +6157,1214,futuristic,1447517810 +6157,1214,gruesome,1447517864 +6157,1214,H. R. Giger,1447517832 +6157,1214,horror,1447517795 +6157,1214,imdb top 250,1447517858 +6157,1214,monster,1447517828 +6157,1214,Oscar (Best Effects - Visual Effects),1447517836 +6157,1214,paranoid,1447517862 +6157,1214,Ridley Scott,1447517805 +6157,1214,sci-fi,1447517788 +6157,1214,science fiction,1447517834 +6157,1214,Sigourney Weaver,1447517812 +6157,1214,space,1447517792 +6157,1214,space travel,1447517804 +6157,1214,suspense,1447517793 +6157,1214,suspenseful,1447517837 +6157,1214,tense,1447517799 +6157,1214,thriller,1447517816 +6157,1214,violence,1447517841 +6157,1214,visceral,1447517839 +6157,1219,Alfred Hitchcock,1447517878 +6157,1219,amazing photography,1447517916 +6157,1219,black and white,1447517887 +6157,1219,cinematography,1447517903 +6157,1219,classic,1447517881 +6157,1219,creepy,1447517891 +6157,1219,disturbing,1447517923 +6157,1219,great cinematography,1447517905 +6157,1219,Hitchcock,1447517896 +6157,1219,horror,1447517898 +6157,1219,imdb top 250,1447517921 +6157,1219,macabre,1447517909 +6157,1219,mental illness,1447517893 +6157,1219,murder,1447517899 +6157,1219,mystery,1447517910 +6157,1219,psychology,1447517883 +6157,1219,serial killer,1447517889 +6157,1219,suspense,1447517901 +6157,1219,suspenseful,1447517879 +6157,1219,tense,1447517885 +6157,1219,thriller,1447517895 +6157,1222,1960s,1447674929 +6157,1222,anti-war,1447674916 +6157,1222,boot camp,1447674920 +6157,1222,cinematography,1447675088 +6157,1222,dark,1447675090 +6157,1222,dialogue,1447674927 +6157,1222,imdb top 250,1447674967 +6157,1222,Kubrick,1447674964 +6157,1222,military,1447674921 +6157,1222,political,1447674925 +6157,1222,soundtrack,1447675097 +6157,1222,Stanley Kubrick,1447674912 +6157,1222,suicide,1447674935 +6157,1222,Vietnam,1447674918 +6157,1222,Vietnam war,1447674915 +6157,1222,Vincent D'Onofrio,1447674957 +6157,1222,violence,1447674950 +6157,1222,war,1447674924 +6157,1240,Action,1448367884 +6157,1240,androids,1448367898 +6157,1240,arnold,1448367880 +6157,1240,Arnold Schwarzenegger,1448367877 +6157,1240,artificial intelligence,1448367882 +6157,1240,assassin,1448367911 +6157,1240,classic,1448367912 +6157,1240,cyborgs,1448367909 +6157,1240,dystopic future,1448367930 +6157,1240,future,1448367888 +6157,1240,great soundtrack,1448367893 +6157,1240,highly quotable,1448367917 +6157,1240,imdb top 250,1448367932 +6157,1240,James Cameron,1448367892 +6157,1240,Linda Hamilton,1448367941 +6157,1240,Nudity (Topless),1448367914 +6157,1240,robots,1448367886 +6157,1240,Sci-Fi,1448367879 +6157,1240,special effects,1448367945 +6157,1240,tense,1448367921 +6157,1240,Thriller,1448367928 +6157,1240,time travel,1448367903 +6157,1240,violent,1448367890 +6157,1246,bittersweet,1448367959 +6157,1246,cheesy,1448368019 +6157,1246,Coming of age,1448367978 +6157,1246,Drama,1448367980 +6157,1246,education,1448367989 +6157,1246,Ethan Hawke,1448367999 +6157,1246,feel-good,1448368036 +6157,1246,friendship,1448367972 +6157,1246,heartbreaking,1448367991 +6157,1246,High School,1448367974 +6157,1246,inspirational,1448367962 +6157,1246,philosophy,1448367954 +6157,1246,Robert Sean Leonard,1448368001 +6157,1246,Robin Williams,1448367957 +6157,1246,school,1448367976 +6157,1246,suicide,1448367969 +6157,1258,atmospheric,1448368059 +6157,1258,based on a book,1448368082 +6157,1258,classic,1448368089 +6157,1258,cult film,1448368063 +6157,1258,disturbing,1448368064 +6157,1258,dreamlike,1448368079 +6157,1258,hallucinatory,1448368115 +6157,1258,Horror,1448368072 +6157,1258,imdb top 250,1448368093 +6157,1258,insanity,1448368109 +6157,1258,jack nicholson,1448368056 +6157,1258,mental illness,1448368084 +6157,1258,Nudity (Full Frontal - Notable),1448368091 +6157,1258,Nudity (Full Frontal),1448368086 +6157,1258,paranormal,1448368105 +6157,1258,psychological,1448368058 +6157,1258,psychology,1448368075 +6157,1258,Shelley Duvall,1448368098 +6157,1258,Stanley Kubrick,1448368055 +6157,1258,Stephen King,1448368061 +6157,1258,suspense,1448368073 +6157,1258,thriller,1448368102 +6157,1258,violent,1448368095 +6157,1258,visually appealing,1448368078 +6157,1274,action,1448368164 +6157,1274,Akira Kurosawa,1448368166 +6157,1274,animation,1448368148 +6157,1274,anime,1448368129 +6157,1274,atmospheric,1448368153 +6157,1274,comic book,1448368161 +6157,1274,cyberpunk,1448368127 +6157,1274,dystopia,1448368130 +6157,1274,dystopic future,1448368143 +6157,1274,fighting,1448368173 +6157,1274,future,1448368134 +6157,1274,gore,1448368175 +6157,1274,Japan,1448368133 +6157,1274,post-apocalyptic,1448368140 +6157,1274,PSYCHIC ABILITIES,1448368146 +6157,1274,psychic powers,1448368151 +6157,1274,science fiction,1448368137 +6157,1274,scifi,1448368163 +6157,1274,stylized,1448368135 +6157,1274,tokyo,1448368155 +6157,1274,violent,1448368142 +6157,1274,visually stunning,1448368131 +6157,1291,action,1448368210 +6157,1291,Adventure,1448368201 +6157,1291,archaeology,1448368203 +6157,1291,classic,1448368237 +6157,1291,Comedy,1448368227 +6157,1291,franchise,1448368225 +6157,1291,Harrison Ford,1448368194 +6157,1291,imdb top 250,1448368241 +6157,1291,indiana jones,1448368199 +6157,1291,mystery,1448368243 +6157,1291,Nazis,1448368205 +6157,1291,Oscar (Best Effects - Sound Effects Editing),1448368246 +6157,1291,pure entertainment,1448368247 +6157,1291,Sean Connery,1448368198 +6157,1291,Steven Spielberg,1448368207 +6157,1291,treasure,1448368192 +6157,1291,treasure hunt,1448368214 +6157,1291,witty,1448368218 +6157,1320,Action,1448368339 +6157,1320,Alien,1448368297 +6157,1320,alien series,1448368291 +6157,1320,aliens,1448368284 +6157,1320,David Fincher,1448368294 +6157,1320,franchise,1448368288 +6157,1320,Horror,1448368296 +6157,1320,prison,1448368299 +6157,1320,sci-fi,1448368289 +6157,1320,sequel,1448368293 +6157,1320,Sigourney Weaver,1448368286 +6157,1320,spooky,1448368316 +6157,1320,survival,1448368300 +6157,1320,suspense,1448368344 +6157,1320,Thriller,1448368330 +6157,1333,Alfred Hitchcock,1446413643 +6157,1333,Amazing exposition,1445796074 +6157,1333,classic,1446413651 +6157,1333,eerie,1446413649 +6157,1333,long build-up,1446413661 +6157,1333,simple,1446413682 +6157,1333,strange,1445796035 +6157,1333,suspense,1445796038 +6157,1333,unusual,1445796032 +6157,1339,adapted from:book,1448368391 +6157,1339,Anthony Hopkins,1448368389 +6157,1339,based on a book,1448368380 +6157,1339,based on book,1448368414 +6157,1339,Bruce Willis,1448368411 +6157,1339,dracula,1448368418 +6157,1339,erotic,1448368387 +6157,1339,Francis Ford Coppola,1448368407 +6157,1339,gary oldman,1448368382 +6157,1339,gothic,1448368378 +6157,1339,Keanu Reeves,1448368385 +6157,1339,Nudity (Topless),1448368412 +6157,1339,Oscar (Best Costume Design),1448368422 +6157,1339,Oscar (Best Effects - Visual Effects),1448368424 +6157,1339,Oscar (Best Makeup),1448368394 +6157,1339,Saturn Award (Best Writing),1448368397 +6157,1339,stylized,1448368437 +6157,1339,vampire,1448368377 +6157,1339,vampires,1448368376 +6157,1339,visually rich,1448368392 +6157,1339,Winona Ryder,1448368384 +6157,1377,action,1448555344 +6157,1377,action packed,1448555369 +6157,1377,Batman,1448555331 +6157,1377,Catwoman,1448555353 +6157,1377,Christopher Walken,1448555357 +6157,1377,comic book,1448555336 +6157,1377,Crime,1448555362 +6157,1377,Danny DeVito,1448555346 +6157,1377,dark,1448555340 +6157,1377,dark hero,1448555337 +6157,1377,franchise,1448555363 +6157,1377,Gothic,1448555347 +6157,1377,Great Villain,1448555394 +6157,1377,Michael Keaton,1448555342 +6157,1377,Michelle Pfeiffer,1448555339 +6157,1377,super-hero,1448555349 +6157,1377,superhero,1448555333 +6157,1377,Thriller,1448555365 +6157,1377,Tim Burton,1448555334 +6157,1393,Cameron Crowe,1448555425 +6157,1393,comedy,1448555426 +6157,1393,Cuba Gooding Jr.,1448555420 +6157,1393,famous line,1448555412 +6157,1393,football,1448555409 +6157,1393,happy ending,1448555418 +6157,1393,Interesting,1448555434 +6157,1393,Oscar (Best Supporting Actor),1448555407 +6157,1393,Oscar Winner,1448555422 +6157,1393,quotable,1448555410 +6157,1393,Renee Zellweger,1448555414 +6157,1393,sports,1448555405 +6157,1393,Tom Cruise,1448555404 +6157,1527,action,1449577392 +6157,1527,aliens,1449577381 +6157,1527,always watch it when it's on tv,1449577459 +6157,1527,Bruce Willis,1449577375 +6157,1527,Chris Tucker,1449577403 +6157,1527,cinematography,1449577397 +6157,1527,colorful,1449577432 +6157,1527,cult,1449577485 +6157,1527,dystopia,1449577396 +6157,1527,dystopic future,1449577387 +6157,1527,futuristic,1449577378 +6157,1527,Gary Oldman,1449577389 +6157,1527,great cinematography,1449577404 +6157,1527,great soundtrack,1449577449 +6157,1527,great visuals,1449577421 +6157,1527,humorous,1449577382 +6157,1527,Luc Besson,1449577384 +6157,1527,Milla Jovovich,1449577376 +6157,1527,music,1449577440 +6157,1527,Nudity (Topless - Notable),1449577401 +6157,1527,quotable,1449577428 +6157,1527,race against time,1449577410 +6157,1527,satirical,1449577391 +6157,1527,sci-fi,1449577373 +6157,1527,stylized,1449577385 +6157,1527,surreal,1449577394 +6157,1527,visual,1449577406 +6157,1527,visually appealing,1449577379 +6157,1527,visually stunning,1449577408 +6157,1544,Action,1449577561 +6157,1544,Adventure,1449577570 +6157,1544,based on a book,1449577528 +6157,1544,dinosaurs,1449577523 +6157,1544,Entertaining,1449577599 +6157,1544,franchise,1449577537 +6157,1544,Jeff Goldblum,1449577527 +6157,1544,Julianne Moore,1449577532 +6157,1544,Jurassic Park,1449577551 +6157,1544,Michael Crichton,1449577534 +6157,1544,Scenic,1449577578 +6157,1544,spielberg,1449577524 +6157,1544,Steven Spielberg,1449577526 +6157,1544,Vince Vaughn,1449577535 +6157,1584,aliens,1449852652 +6157,1584,astronomy,1449852675 +6157,1584,based on a book,1449852693 +6157,1584,beautiful,1449852666 +6157,1584,Carl Sagan,1449852664 +6157,1584,existentialism,1449852662 +6157,1584,first contact,1449852687 +6157,1584,future,1449852660 +6157,1584,idealism,1449852673 +6157,1584,inspirational,1449852656 +6157,1584,Jodie Foster,1449852648 +6157,1584,mathematics,1449852680 +6157,1584,Matthew McConaughey,1449852678 +6157,1584,open ending,1449852699 +6157,1584,outer space,1449852671 +6157,1584,religion,1449852658 +6157,1584,Robert Zemeckis,1449852703 +6157,1584,S.E.T.I.,1449852682 +6157,1584,sci-fi,1449852647 +6157,1584,science,1449852653 +6157,1584,science fiction,1449852667 +6157,1584,slow,1449852709 +6157,1584,space,1449852654 +6157,1584,space travel,1449852650 +6157,1625,action,1449852755 +6157,1625,atmospheric,1449852740 +6157,1625,complicated,1449852749 +6157,1625,dark,1449852762 +6157,1625,David Fincher,1449852735 +6157,1625,michael douglas,1449852732 +6157,1625,mindfuck,1449852734 +6157,1625,Mystery,1449852730 +6157,1625,neo-noir,1449852751 +6157,1625,paranoia,1449852748 +6157,1625,plot,1449852757 +6157,1625,plot twist,1449852737 +6157,1625,plot twists,1449852764 +6157,1625,psychological,1449852729 +6157,1625,Sean Penn,1449852746 +6157,1625,surprise ending,1449852744 +6157,1625,suspense,1449852743 +6157,1625,thriller,1449852738 +6157,1625,twist ending,1449852727 +6157,1625,unrealistic,1449852741 +6157,1641,actually funny,1450103287 +6157,1641,British,1450103277 +6157,1641,british comedy,1450103293 +6157,1641,England,1450103279 +6157,1641,funny,1450103280 +6157,1641,heartwarming,1450103321 +6157,1641,Peter Cattaneo,1450103300 +6157,1641,Robert Carlyle,1450103312 +6157,1641,strippers,1450103274 +6157,1641,stripping,1450103282 +6157,1641,striptease,1450103283 +6157,1641,touching,1450103285 +6157,1641,unemployment,1450103305 +6157,1641,working class,1450103273 +6157,1641,yorkshire,1450103303 +6157,1645,Al Pacino,1450103339 +6157,1645,Atmospheric,1450103433 +6157,1645,blaspheme,1450103408 +6157,1645,Charlize Theron,1450103352 +6157,1645,cheating husband,1450103378 +6157,1645,Christianity,1450103392 +6157,1645,courtroom,1450103380 +6157,1645,deal with the devil,1450103382 +6157,1645,demons,1450103361 +6157,1645,devil,1450103344 +6157,1645,Keanu Reeves,1450103340 +6157,1645,lawyers,1450103360 +6157,1645,Mystery,1450103449 +6157,1645,Nudity (Full Frontal - Notable),1450103397 +6157,1645,Nudity (Full Frontal),1450103342 +6157,1645,occult,1450103405 +6157,1645,psychological,1450103351 +6157,1645,psychology,1450103368 +6157,1645,Religion,1450103345 +6157,1645,satan,1450103366 +6157,1645,supernatural,1450103370 +6157,1645,surreal,1450103354 +6157,1645,temptation,1450103375 +6157,1645,thought-provoking,1450103363 +6157,1645,Thriller,1450103461 +6157,1645,twist ending,1450103384 +6157,1653,atmospheric,1451916533 +6157,1653,beautiful,1451916539 +6157,1653,drama,1451916548 +6157,1653,dystopia,1451916501 +6157,1653,dystopic future,1451916523 +6157,1653,Ethan Hawke,1451916530 +6157,1653,eugenics,1451916543 +6157,1653,future,1451916520 +6157,1653,futuristic,1451916544 +6157,1653,genetic engineering,1451916516 +6157,1653,genetic selection,1451916527 +6157,1653,genetics,1451916510 +6157,1653,intelligent,1451916528 +6157,1653,Jude Law,1451916525 +6157,1653,neo-noir,1451916550 +6157,1653,powerful ending,1451916514 +6157,1653,realistic sci/fi,1451916536 +6157,1653,rebellion,1451916538 +6157,1653,sci-fi,1451916503 +6157,1653,science fiction,1451916532 +6157,1653,social commentary,1451916546 +6157,1653,space travel,1451916522 +6157,1653,suicide,1451916541 +6157,1653,thought-provoking,1451916511 +6157,1653,Uma Thurman,1451916513 +6157,1653,visually appealing,1451916518 +6157,1676,Alien Invasion,1451916581 +6157,1676,aliens,1451916578 +6157,1676,based on a book,1451916613 +6157,1676,campy,1451916592 +6157,1676,cult film,1451916604 +6157,1676,Denise Richards,1451916637 +6157,1676,epic battles,1451916642 +6157,1676,fascism,1451916594 +6157,1676,funny,1451916600 +6157,1676,future,1451916590 +6157,1676,futuristic,1451916621 +6157,1676,gore,1451916625 +6157,1676,hilarious,1451916615 +6157,1676,irreverent,1451916646 +6157,1676,military,1451916597 +6157,1676,Neil Patrick Harris,1451916623 +6157,1676,Nudity (Rear),1451916632 +6157,1676,Nudity (Topless),1451916583 +6157,1676,Robert Heinlein,1451916588 +6157,1676,satire,1451916575 +6157,1676,sci-fi,1451916580 +6157,1676,social commentary,1451916587 +6157,1676,space,1451916577 +6157,1676,violent,1451916628 +6157,1676,war,1451916601 +6157,1676,witty,1451916585 +6157,1682,alone in the world,1451917497 +6157,1682,alternate reality,1451917462 +6157,1682,atmospheric,1451917504 +6157,1682,cerebral,1451917476 +6157,1682,dark comedy,1451917458 +6157,1682,drama,1451917489 +6157,1682,dreamlike,1451917465 +6157,1682,dystopia,1451917460 +6157,1682,Jim Carrey,1451917455 +6157,1682,melancholy,1451917491 +6157,1682,original plot,1451917470 +6157,1682,paranoia,1451917472 +6157,1682,philosophy,1451917463 +6157,1682,poignant,1451917501 +6157,1682,small town,1451917468 +6157,1682,social commentary,1451917457 +6157,1682,stylized,1451917466 +6157,1682,surreal,1451917488 +6157,1682,voyeurism,1451917473 +6157,1682,witty,1451917475 +6157,1704,Ben Affleck,1451920121 +6157,1704,boston,1451920125 +6157,1704,college,1451920132 +6157,1704,excellent script,1451920110 +6157,1704,feel-good,1451920114 +6157,1704,genius,1451920107 +6157,1704,great acting,1451920134 +6157,1704,Great Screenplays,1451920118 +6157,1704,Gus Van Sant,1451920137 +6157,1704,heartwarming,1451920135 +6157,1704,inspirational,1451920113 +6157,1704,intellectual,1451920119 +6157,1704,intelligent,1451920116 +6157,1704,math,1451920130 +6157,1704,mathematics,1451920104 +6157,1704,Matt Damon,1451920105 +6157,1704,mentor,1451920103 +6157,1704,Oscar (Best Supporting Actor),1451920139 +6157,1704,psychology,1451920109 +6157,1704,Robin Williams,1451920101 +6157,1704,thoughtful,1451920122 +6157,1704,university,1451920124 +6157,1732,black comedy,1446575832 +6157,1732,bowling,1446575830 +6157,1732,classic,1446575885 +6157,1732,coen brothers,1446575825 +6157,1732,comedy,1446575839 +6157,1732,crime,1446575865 +6157,1732,Cult classic,1446575861 +6157,1732,cult film,1446575829 +6157,1732,dark comedy,1446575827 +6157,1732,drugs,1446575847 +6157,1732,funny,1446575867 +6157,1732,great dialogue,1446575843 +6157,1732,great soundtrack,1446575853 +6157,1732,Highly quotable,1446575886 +6157,1732,imdb top 250,1446575877 +6157,1732,Jeff Bridges,1446575841 +6157,1732,John Goodman,1446575859 +6157,1732,John Turturro,1446575889 +6157,1732,Julianne Moore,1446575869 +6157,1732,marijuana,1446575849 +6157,1732,Nudity (Full Frontal),1446575857 +6157,1732,off-beat comedy,1446575851 +6157,1732,Philip Seymour Hoffman,1446575845 +6157,1732,quirky,1446575835 +6157,1732,sarcasm,1446575872 +6157,1732,satirical,1446575834 +6157,1732,Steve Buscemi,1446575855 +6157,1732,violence,1446575863 +6157,1748,aliens,1451920231 +6157,1748,alternate reality,1451920254 +6157,1748,amnesia,1451920252 +6157,1748,atmospheric,1451920217 +6157,1748,cerebral,1451920247 +6157,1748,creepy,1451920258 +6157,1748,cult film,1451920268 +6157,1748,dark,1451920239 +6157,1748,dark fantasy,1451920233 +6157,1748,dreamlike,1451920236 +6157,1748,dystopia,1451920212 +6157,1748,existentialism,1451920270 +6157,1748,fantasy,1451920250 +6157,1748,film noir,1451920263 +6157,1748,hallucinatory,1451920265 +6157,1748,Jennifer Connelly,1451920260 +6157,1748,Kiefer Sutherland,1451920262 +6157,1748,memory,1451920248 +6157,1748,mindfuck,1451920241 +6157,1748,Neo-noir,1451920277 +6157,1748,Nudity (Topless),1451920256 +6157,1748,original,1451920272 +6157,1748,philosophy,1451920274 +6157,1748,Post apocalyptic,1451920229 +6157,1748,post-apocalyptic,1451920275 +6157,1748,sci-fi,1451920215 +6157,1748,steampunk,1451920237 +6157,1748,stylized,1451920234 +6157,1748,surreal,1451920214 +6157,1748,thought-provoking,1451920228 +6157,1748,visually appealing,1451920245 +6157,1748,visually stunning,1451920267 +6157,1754,Demon,1451920342 +6157,1754,Denzel Washington,1451920321 +6157,1754,John Goodman,1451920328 +6157,1754,religion,1451920326 +6157,1754,supernatural,1451920320 +6157,1921,atmospheric,1446575939 +6157,1921,black and white,1446575927 +6157,1921,cerebral,1446575968 +6157,1921,Darren Aronofsky,1446575980 +6157,1921,disturbing,1446575971 +6157,1921,enigmatic,1446575966 +6157,1921,existentialism,1446575945 +6157,1921,great soundtrack,1446575933 +6157,1921,hallucinatory,1446575931 +6157,1921,low budget,1446575963 +6157,1921,mathematics,1446575947 +6157,1921,mental illness,1446575952 +6157,1921,mindfuck,1446575960 +6157,1921,music,1446575973 +6157,1921,notable soundtrack,1446575965 +6157,1921,paranoid,1446575962 +6157,1921,psychological,1446575988 +6157,1921,psychology,1446575929 +6157,1921,stylized,1446575935 +6157,1921,surreal,1446575969 +6157,1921,tense,1446575942 +6157,1921,underrated,1446575983 +6157,1921,visually appealing,1446575958 +6157,1921,weird,1446576000 +6157,1923,Ben Stiller,1451920452 +6157,1923,Cameron Diaz,1451920453 +6157,1923,comedy,1451920454 +6157,1923,crude humor,1451920456 +6157,1923,Farrelly Brothers,1451920473 +6157,1923,fun,1451920459 +6157,1923,goofy,1451920463 +6157,1923,hilarious,1451920458 +6157,1923,Matt Dillon,1451920477 +6157,1923,raunchy,1451920465 +6157,1923,sexual,1451920461 +6157,1954,bittersweet,1451920529 +6157,1954,boxing,1451920513 +6157,1954,classic,1451920522 +6157,1954,drama,1451920526 +6157,1954,fighting,1451920528 +6157,1954,inspirational,1451920517 +6157,1954,oscar (best cinematography),1451920519 +6157,1954,Oscar (Best Picture),1451920524 +6157,1954,romance,1451920534 +6157,1954,sports,1451920521 +6157,1954,Sylvester Stallone,1451920516 +6157,1954,underdog,1451920536 +6157,1954,working class,1451920532 +6157,1997,based on a book,1451920581 +6157,1997,biblical,1451920590 +6157,1997,Catholicism,1451920583 +6157,1997,Christianity,1451920576 +6157,1997,Classic,1451920573 +6157,1997,controversial,1451920578 +6157,1997,creepy,1451920584 +6157,1997,cult,1451920587 +6157,1997,demons,1451920579 +6157,1997,effective,1451920596 +6157,1997,exorcism,1451920575 +6157,1997,horror,1451920567 +6157,1997,Max von Sydow,1451920594 +6157,1997,possession,1451920571 +6157,1997,religion,1451920572 +6157,1997,satanism,1451920588 +6157,1997,scary,1451920569 +6157,1997,William Friedkin,1451920592 +6157,2313,Anthony Hopkins,1448555241 +6157,2313,Atmospheric,1448555230 +6157,2313,based on a book,1448555255 +6157,2313,based on a true story,1448555238 +6157,2313,black and white,1448555229 +6157,2313,David Lynch,1448555227 +6157,2313,depressing,1448555235 +6157,2313,drama,1448555260 +6157,2313,England,1448555246 +6157,2313,historical,1448555240 +6157,2313,imdb top 250,1448555258 +6157,2313,melancholic,1448555249 +6157,2313,melancholy,1448555252 +6157,2313,poignant,1448555281 +6157,2313,sad,1448555278 +6157,2313,somber,1448555284 +6157,2313,stylized,1448555243 +6157,2313,true story,1448555253 +6157,2571,action,1446576020 +6157,2571,alternate reality,1446576026 +6157,2571,artificial intelligence,1446576022 +6157,2571,atmospheric,1446576042 +6157,2571,Carrie-Anne Moss,1446578392 +6157,2571,computers,1446576039 +6157,2571,cult film,1446576041 +6157,2571,cyberpunk,1446576015 +6157,2571,dark hero,1446576048 +6157,2571,dystopia,1446576013 +6157,2571,epic,1446578413 +6157,2571,fantasy,1446576046 +6157,2571,fight scenes,1446576047 +6157,2571,Futuristic,1446578410 +6157,2571,hackers,1446576044 +6157,2571,Hugo Weaving,1446578395 +6157,2571,Keanu Reeves,1446576033 +6157,2571,Laurence Fishburne,1446578401 +6157,2571,man versus machine,1446578398 +6157,2571,martial arts,1446576019 +6157,2571,philosophical,1446576035 +6157,2571,philosophy,1446576017 +6157,2571,post apocalyptic,1446576036 +6157,2571,post-apocalyptic,1446576028 +6157,2571,sci-fi,1446576009 +6157,2571,science fiction,1446578388 +6157,2571,Special Effects,1446578386 +6157,2571,stylized,1446576038 +6157,2571,superpowers,1446578404 +6157,2571,surreal,1446576031 +6157,2571,thought-provoking,1446576029 +6157,2571,virtual reality,1446576011 +6157,2571,visually stunning,1446578393 +6157,2571,Wachowski Brothers,1446578390 +6157,2706,comedy,1445184996 +6157,2706,Nudity (Topless),1445184993 +6157,2706,sexuality,1445184998 +6157,2706,silly,1445185009 +6157,2706,stereotypes,1445184990 +6157,2706,stupid,1445185016 +6157,2706,teen comedy,1445185003 +6157,2710,atmospheric,1444582928 +6157,2710,creepy,1444582917 +6157,2710,original,1444582919 +6157,2710,scary,1444582921 +6157,2762,acting,1446578463 +6157,2762,Atmospheric,1446578438 +6157,2762,Bruce Willis,1446578435 +6157,2762,death,1446578465 +6157,2762,eerie,1446578467 +6157,2762,enigmatic,1446578451 +6157,2762,excellent script,1446578447 +6157,2762,ghosts,1446578433 +6157,2762,ghosts/afterlife,1446578453 +6157,2762,great ending,1446578431 +6157,2762,Haley Joel Osment,1446578482 +6157,2762,horror,1446578449 +6157,2762,m. night shyamalan,1446578445 +6157,2762,mindfuck,1446578441 +6157,2762,plot twist,1446578469 +6157,2762,psychological,1446578439 +6157,2762,psychology,1446578436 +6157,2762,stylized,1446578471 +6157,2762,surprise ending,1446578477 +6157,2762,suspense,1446578443 +6157,2762,thriller,1446578461 +6157,2762,touching,1446578455 +6157,2762,twist ending,1446578429 +6157,2762,unique,1446578459 +6157,2762,unpredictable,1446578457 +6157,2858,bittersweet,1446578528 +6157,2858,black comedy,1446578513 +6157,2858,coming of age,1446578511 +6157,2858,dark comedy,1446578495 +6157,2858,drugs,1446578535 +6157,2858,excellent script,1446578517 +6157,2858,great acting,1446578516 +6157,2858,imdb top 250,1446578543 +6157,2858,kevin spacey,1446578504 +6157,2858,loneliness,1446578537 +6157,2858,midlife crisis,1446578510 +6157,2858,multiple storylines,1446578546 +6157,2858,narrated,1446578552 +6157,2858,Nudity (Topless),1446578533 +6157,2858,Oscar (Best Actor),1446578548 +6157,2858,Oscar (Best Picture),1446578524 +6157,2858,powerful ending,1446578531 +6157,2858,reflective,1446578520 +6157,2858,satirical,1446578519 +6157,2858,sexuality,1446578514 +6157,2858,social commentary,1446578506 +6157,2858,surrealism,1446578507 +6157,2858,thought-provoking,1446578503 +6157,2858,violence,1446578530 +6157,2959,action,1446578613 +6157,2959,atmospheric,1446578595 +6157,2959,based on a book,1446578604 +6157,2959,Brad Pitt,1446578566 +6157,2959,Chuck Palahniuk,1446578651 +6157,2959,classic,1446578615 +6157,2959,complicated,1446578620 +6157,2959,crime,1446578622 +6157,2959,dark,1446578624 +6157,2959,dark comedy,1446578574 +6157,2959,David Fincher,1446578617 +6157,2959,disturbing,1446578590 +6157,2959,Edward Norton,1446578568 +6157,2959,fighting,1446578635 +6157,2959,helena bonham carter,1446578637 +6157,2959,imdb top 250,1446578627 +6157,2959,mental illness,1446578588 +6157,2959,mindfuck,1446578608 +6157,2959,narrated,1446578631 +6157,2959,philosophical,1446578602 +6157,2959,philosophy,1446578582 +6157,2959,powerful ending,1446578629 +6157,2959,psychological,1446578599 +6157,2959,psychology,1446578572 +6157,2959,quirky,1446578606 +6157,2959,satirical,1446578610 +6157,2959,social commentary,1446578577 +6157,2959,stylized,1446578640 +6157,2959,surreal,1446578580 +6157,2959,thought-provoking,1446578593 +6157,2959,twist,1446578648 +6157,2959,twist ending,1446578564 +6157,2959,violence,1446578584 +6157,2959,violent,1446578597 +6157,3000,action,1446578744 +6157,3000,adventure,1446058615 +6157,3000,ambiguous character alignments,1446058624 +6157,3000,anime,1446578717 +6157,3000,anti-war,1446578722 +6157,3000,atmospheric,1446058609 +6157,3000,dark,1446578729 +6157,3000,demons,1446578746 +6157,3000,dreamlike,1446578750 +6157,3000,dystopia,1446578726 +6157,3000,environmental,1446058613 +6157,3000,fantasy,1446058617 +6157,3000,fantasy world,1446578718 +6157,3000,gods,1446578736 +6157,3000,great soundtrack,1446578748 +6157,3000,Hayao Miyazaki,1446058605 +6157,3000,history,1446578737 +6157,3000,imdb top 250,1446578742 +6157,3000,Japan,1446578720 +6157,3000,Miyazaki,1446578739 +6157,3000,nature,1446578724 +6157,3000,philosophical,1446058638 +6157,3000,Studio Ghibli,1446058607 +6157,3000,surreal,1446058611 +6157,3000,talking animals,1446578727 +6157,3000,visualy apealing,1446578753 +6157,3000,wilderness,1446578741 +6157,3079,adapted from:book,1448390052 +6157,3079,Cliche,1448390046 +6157,3079,Cute,1448390016 +6157,3079,England,1448390054 +6157,3079,English,1448390057 +6157,3079,Jane Austen,1448390060 +6157,3079,Obsolete moral,1448390079 +6157,3079,Romance,1448390027 +6157,3355,ancient books,1446578780 +6157,3355,atmospheric,1446578806 +6157,3355,devil,1446578783 +6157,3355,dialogue,1446578800 +6157,3355,Emmanuelle Seigner,1446578798 +6157,3355,Johnny Depp,1446578775 +6157,3355,Mystery,1446578776 +6157,3355,Nudity (Rear),1446578802 +6157,3355,Nudity (Topless),1446578803 +6157,3355,rare books,1446578782 +6157,3355,Roman Polanski,1446578779 +6157,3355,satanism,1446578777 +6157,3355,story,1446578785 +6157,3355,style,1446578808 +6157,3556,Adaptation,1446578889 +6157,3556,adolescence,1446578880 +6157,3556,atmospheric,1446578887 +6157,3556,based on a book,1446578883 +6157,3556,Beautiful,1446578908 +6157,3556,coming of age,1446578870 +6157,3556,dreamlike,1446578867 +6157,3556,enigmatic,1446578879 +6157,3556,great ending,1446578877 +6157,3556,great soundtrack,1446578876 +6157,3556,high school,1446578865 +6157,3556,Kirsten Dunst,1446578868 +6157,3556,lyrical,1446578885 +6157,3556,melancholy,1445103793 +6157,3556,narrated,1446578873 +6157,3556,psychology,1445103783 +6157,3556,reflective,1445103786 +6157,3556,stylized,1446578874 +6157,3556,suburbia,1446578871 +6157,3556,suicide,1446578864 +6157,3556,visually appealing,1445103791 +6157,3578,action,1446578921 +6157,3578,drama,1446578932 +6157,3578,Epic,1446578937 +6157,3578,Hans Zimmer,1446578947 +6157,3578,heroism,1446578941 +6157,3578,historical,1446578944 +6157,3578,history,1446578924 +6157,3578,imdb top 250,1446578954 +6157,3578,Joaquin Phoenix,1446578961 +6157,3578,Oscar (Best Actor),1446578967 +6157,3578,Oscar (Best Costume Design),1446578974 +6157,3578,Oscar (Best Effects - Visual Effects),1446578971 +6157,3578,Oscar (Best Picture),1446578964 +6157,3578,Ridley Scott,1446578926 +6157,3578,Roman empire,1446578951 +6157,3578,Rome,1446578920 +6157,3578,Russell Crowe,1446578918 +6157,3578,strong score,1446578956 +6157,3578,stylized,1446578949 +6157,3578,sword fight,1446578928 +6157,3578,violence,1446578933 +6157,3578,violent,1446578930 +6157,3578,visual,1446578981 +6157,3796,atmospheric,1447517289 +6157,3796,original,1447517259 +6157,3796,psychological,1447517296 +6157,3796,subtil,1447517305 +6157,3796,underrated,1447517282 +6157,3796,unusual,1447517273 +6157,3796,vampire,1447517165 +6157,3796,vampires,1447517160 +6157,3796,weird,1447517264 +6157,3863,acting,1447580667 +6157,3863,atmospheric,1447580367 +6157,3863,beautiful cinematography,1447580347 +6157,3863,dreamlike,1447580366 +6157,3863,serial killer,1447580341 +6157,3863,stylized,1447580342 +6157,3863,surreal,1447580337 +6157,3863,virtual reality,1447580339 +6157,3863,weak plot,1447580659 +6157,3897,1970s,1446579008 +6157,3897,affectionate,1446579065 +6157,3897,bittersweet,1445359271 +6157,3897,Cameron Crowe,1446579020 +6157,3897,coming of age,1446579005 +6157,3897,earnest,1446579037 +6157,3897,Feel Good,1446579083 +6157,3897,feelgood,1446579075 +6157,3897,great soundtrack,1446579012 +6157,3897,humorous,1446579026 +6157,3897,INNOCENCE LOST,1446579032 +6157,3897,journalism,1446579006 +6157,3897,Kate Hudson,1446579062 +6157,3897,music,1445359267 +6157,3897,nostalgic,1446579010 +6157,3897,Nudity (Topless - Notable),1446579024 +6157,3897,Nudity (Topless),1446579018 +6157,3897,philip seymour hoffman,1446579014 +6157,3897,rock and roll,1445359265 +6157,3897,teen,1446579016 +6157,3897,understated,1446579035 +6157,3897,warm,1445359288 +6157,3897,writers,1446579030 +6157,3897,zooey deschanel,1446579022 +6157,3949,addiction,1446579133 +6157,3949,atmospheric,1446579109 +6157,3949,based on a book,1446579155 +6157,3949,cinematography,1446579122 +6157,3949,dark,1446579101 +6157,3949,Darren Aronofsky,1446579165 +6157,3949,depressing,1446579135 +6157,3949,disturbing,1446579099 +6157,3949,drug abuse,1446579157 +6157,3949,drugs,1446579092 +6157,3949,emotional,1446579111 +6157,3949,great acting,1446579127 +6157,3949,hard to watch,1446579201 +6157,3949,heroin,1446579143 +6157,3949,imdb top 250,1446579167 +6157,3949,independent film,1446579124 +6157,3949,intense,1446579163 +6157,3949,Jared Leto,1446579169 +6157,3949,Jennifer Connelly,1446579190 +6157,3949,loneliness,1446579141 +6157,3949,music,1446579177 +6157,3949,Nudity (Full Frontal - Notable),1446579174 +6157,3949,Nudity (Full Frontal),1446579153 +6157,3949,oscar (best directing),1446579161 +6157,3949,powerful ending,1446579171 +6157,3949,prostitution,1446579146 +6157,3949,psychological,1446579159 +6157,3949,psychology,1446579106 +6157,3949,social commentary,1446579139 +6157,3949,visually appealing,1446579104 +6157,3994,atmospheric,1446579226 +6157,3994,Bruce Willis,1446579218 +6157,3994,comics,1446579228 +6157,3994,eerie,1446579254 +6157,3994,father-son relationship,1446579233 +6157,3994,m. night shyamalan,1446579222 +6157,3994,mindfuck,1446579234 +6157,3994,original,1446579247 +6157,3994,Samuel L. Jackson,1446579220 +6157,3994,somber,1446579236 +6157,3994,storytelling,1446579231 +6157,3994,superhero,1446579217 +6157,3994,twist ending,1446579224 +6157,3994,understated,1446579251 +6157,3994,unique,1446579229 +6157,3994,well-written,1446579239 +6157,4011,All male cast,1446579355 +6157,4011,Benicio Del Toro,1446579351 +6157,4011,boxing,1446579320 +6157,4011,brad pitt,1446579296 +6157,4011,british,1446579303 +6157,4011,comedy,1446579301 +6157,4011,Crime,1446579322 +6157,4011,cynical,1446579316 +6157,4011,dark comedy,1446579314 +6157,4011,dark humor,1446579337 +6157,4011,dialogue,1446579335 +6157,4011,England,1446579352 +6157,4011,ensemble cast,1446579330 +6157,4011,fighting,1446579349 +6157,4011,frantic,1446579354 +6157,4011,funny,1446579345 +6157,4011,Great dialogue,1446579319 +6157,4011,guy ritchie,1446579300 +6157,4011,gypsy accent,1446579323 +6157,4011,heist,1446579343 +6157,4011,Hilarious,1446579326 +6157,4011,imdb top 250,1446579346 +6157,4011,Jason Statham,1446579317 +6157,4011,multiple storylines,1446579312 +6157,4011,narrated,1446579340 +6157,4011,organized crime,1446579342 +6157,4011,quirky,1446579325 +6157,4011,stylish,1446579348 +6157,4011,stylized,1446579328 +6157,4011,twist ending,1446579298 +6157,4025,chick flick,1446310421 +6157,4025,ridiculous,1446310424 +6157,4144,1960s,1447104194 +6157,4144,adultery,1447104142 +6157,4144,affair,1447104202 +6157,4144,Art Direction,1447104205 +6157,4144,atmospheric,1447104124 +6157,4144,authentic,1447104180 +6157,4144,Beautiful,1447104232 +6157,4144,Christopher Doyle,1447104177 +6157,4144,costumes,1447104210 +6157,4144,Cute,1447104281 +6157,4144,desire,1447104212 +6157,4144,elegant,1447104138 +6157,4144,Hong Kong,1447104140 +6157,4144,intimate,1447104154 +6157,4144,loneliness,1447104130 +6157,4144,longing,1447104217 +6157,4144,love,1447104215 +6157,4144,love affair,1447104197 +6157,4144,love triangles,1447104199 +6157,4144,Maggie Cheung,1447104185 +6157,4144,masterpiece,1447104182 +6157,4144,melancholic,1447104125 +6157,4144,melancholy,1447104135 +6157,4144,moody,1447104132 +6157,4144,music,1447104137 +6157,4144,nocturnal,1447104147 +6157,4144,Psychological,1447104293 +6157,4144,retro,1447104168 +6157,4144,soundtrack,1447104156 +6157,4144,Strange,1447104302 +6157,4144,stylized,1447104126 +6157,4144,Tony Leung,1447104158 +6157,4144,understated,1447104150 +6157,4144,Unique,1447104309 +6157,4144,visually appealing,1447104171 +6157,4144,visually stunning,1447104161 +6157,4144,Wong Kar Wai,1447104134 +6157,4144,Wong Kar-wai,1447104144 +6157,4226,AMNESIA,1446579399 +6157,4226,black and white,1446579405 +6157,4226,Carrie-Anne Moss,1446579438 +6157,4226,cerebral,1446322182 +6157,4226,Christopher Nolan,1446579407 +6157,4226,complicated,1446322168 +6157,4226,complicated plot,1446579422 +6157,4226,cult film,1446322177 +6157,4226,dark,1446322179 +6157,4226,death,1446579430 +6157,4226,dreamlike,1446579392 +6157,4226,genius,1446579442 +6157,4226,great ending,1446322184 +6157,4226,gritty,1446579434 +6157,4226,Guy Pearce,1446579428 +6157,4226,identity,1446579426 +6157,4226,investigation,1446579395 +6157,4226,memory,1446579389 +6157,4226,memory loss,1446579420 +6157,4226,mind-bending,1446579440 +6157,4226,Mindfuck,1446579390 +6157,4226,mystery,1446322170 +6157,4226,narrated,1446579412 +6157,4226,non-linear,1446579432 +6157,4226,nonlinear,1446322160 +6157,4226,paranoia,1446579418 +6157,4226,paranoid,1446579403 +6157,4226,plot twist,1446579414 +6157,4226,psychological,1446322166 +6157,4226,psychology,1446322164 +6157,4226,revenge,1446579397 +6157,4226,short-term memory loss,1446579410 +6157,4226,storytelling,1446579393 +6157,4226,stylized,1446322172 +6157,4226,tense,1446322175 +6157,4226,time loop,1446579436 +6157,4226,twist ending,1446322162 +6157,4226,twists & turns,1446579401 +6157,4226,violence,1446579415 +6157,4308,Baz Luhrmann,1446413730 +6157,4308,beautifully filmed,1446413745 +6157,4308,cinematography,1446413734 +6157,4308,colourful,1444219919 +6157,4308,dramatic,1446413716 +6157,4308,Ewan McGregor,1446413700 +6157,4308,great soundtrack,1444219917 +6157,4308,lyrical,1446413742 +6157,4308,musical,1444219900 +6157,4308,Nicole Kidman,1446413698 +6157,4308,Oscar (Best Art Direction - Set Decoration),1446413720 +6157,4308,Oscar (Best Costume Design),1446413722 +6157,4308,passionate,1444219915 +6157,4308,quirky,1446413702 +6157,4308,romance,1446413741 +6157,4308,sentimental,1446413713 +6157,4308,Sexualized violence,1446413711 +6157,4308,stylized,1446413696 +6157,4308,visually stunning,1446413714 +6157,4720,afterlife,1446579457 +6157,4720,Alejandro Amenábar,1446579484 +6157,4720,alternate reality,1446579469 +6157,4720,atmospheric,1446579452 +6157,4720,beautiful,1446579478 +6157,4720,Beautiful Woman,1446579485 +6157,4720,Bible,1446579482 +6157,4720,claustrophobic,1446579476 +6157,4720,clever,1446579472 +6157,4720,dark,1446579471 +6157,4720,death,1446579474 +6157,4720,Drama,1446579477 +6157,4720,ghosts,1446579450 +6157,4720,gothic,1446579461 +6157,4720,haunted house,1446579456 +6157,4720,Horror,1446579462 +6157,4720,Isolation,1446579466 +6157,4720,mother-daughter relationships,1446579487 +6157,4720,Nicole Kidman,1446579453 +6157,4720,religion,1446579480 +6157,4720,scary,1446579464 +6157,4720,supernatural,1446579455 +6157,4720,surprise ending,1446579459 +6157,4720,twist ending,1446579449 +6157,4890,moralistic,1446310361 +6157,4890,shallow plot,1446310377 +6157,4973,atmospheric,1446579521 +6157,4973,Audrey Tautou,1446579531 +6157,4973,beautiful,1446579581 +6157,4973,beautifully filmed,1446579493 +6157,4973,comedy,1446579515 +6157,4973,coming of age,1446579544 +6157,4973,cult film,1446579529 +6157,4973,Cute,1446579586 +6157,4973,fairy tale,1446579522 +6157,4973,feel good movie,1446579548 +6157,4973,feel-good,1446579499 +6157,4973,France,1446579541 +6157,4973,French,1446579525 +6157,4973,french movie,1446579551 +6157,4973,great cinematography,1446579590 +6157,4973,great soundtrack,1446579511 +6157,4973,idealism,1446579517 +6157,4973,imagination,1446579537 +6157,4973,imdb top 250,1446579539 +6157,4973,inspirational,1446579518 +6157,4973,Jean-Pierre Jeunet,1446579569 +6157,4973,love,1446579546 +6157,4973,love story,1446579567 +6157,4973,magic,1446579582 +6157,4973,modern fantasy,1446579592 +6157,4973,music,1446579533 +6157,4973,narrated,1446579578 +6157,4973,notable soundtrack,1446579512 +6157,4973,Paris,1446579501 +6157,4973,quirky,1446579497 +6157,4973,quirky romantic,1446579557 +6157,4973,romance,1446579507 +6157,4973,romantic,1446579535 +6157,4973,romantic but not cheesy,1446579556 +6157,4973,stylized,1446579509 +6157,4973,surreal,1446579505 +6157,4973,sweet,1446579560 +6157,4973,visually appealing,1446579527 +6157,4973,whimsical,1446579503 +6157,4979,anjelica huston,1446579635 +6157,4979,Ben Stiller,1446579625 +6157,4979,Bill Murray,1446579609 +6157,4979,black comedy,1446579618 +6157,4979,dark comedy,1446579605 +6157,4979,dark humor,1446579629 +6157,4979,dysfunctional family,1446579607 +6157,4979,ensemble cast,1446579614 +6157,4979,family dynamics,1446579619 +6157,4979,great soundtrack,1446579616 +6157,4979,Gwyneth Paltrow,1446579637 +6157,4979,Luke Wilson,1446579633 +6157,4979,narrated,1446579612 +6157,4979,new york,1446579623 +6157,4979,off-beat comedy,1446579631 +6157,4979,Owen Wilson,1446579621 +6157,4979,Quirky,1446579603 +6157,4979,stylized,1446579627 +6157,4979,Wes Anderson,1446579602 +6157,4979,witty,1446579611 +6157,4993,Action,1446579678 +6157,4993,adapted from:book,1446579699 +6157,4993,Adventure,1446579656 +6157,4993,atmospheric,1446579663 +6157,4993,AWESOME,1446579741 +6157,4993,based on a book,1446579661 +6157,4993,based on book,1446579701 +6157,4993,beautifully filmed,1446579668 +6157,4993,Elijah Wood,1446579725 +6157,4993,ensemble cast,1446579683 +6157,4993,epic,1446579671 +6157,4993,epic adventure,1446579692 +6157,4993,fantasy,1446579651 +6157,4993,fantasy world,1446579686 +6157,4993,Good versus evil,1446579731 +6157,4993,great soundtrack,1446579676 +6157,4993,high fantasy,1446579659 +6157,4993,Ian McKellen,1446579719 +6157,4993,imdb top 250,1446579696 +6157,4993,Liv Tyler,1446579738 +6157,4993,Lord of the Rings,1446579743 +6157,4993,Magic,1446579657 +6157,4993,music,1446579680 +6157,4993,mythology,1446579705 +6157,4993,Orlando Bloom,1446579714 +6157,4993,Oscar (Best Cinematography),1446579672 +6157,4993,Oscar (Best Effects - Visual Effects),1446579694 +6157,4993,Peter Jackson,1446579684 +6157,4993,scenic,1446579688 +6157,4993,stylized,1446579690 +6157,4993,tolkien,1446579666 +6157,4993,trilogy,1446579707 +6157,4993,Viggo Mortensen,1446579722 +6157,4993,wizards,1446579674 +6157,5378,adventure,1446579804 +6157,5378,alien,1446579787 +6157,5378,aliens,1446579785 +6157,5378,Ewan McGregor,1446579778 +6157,5378,fantasy,1446579801 +6157,5378,fighting,1446579824 +6157,5378,futuristic,1446579781 +6157,5378,George Lucas,1446579759 +6157,5378,Hayden Christensen,1446579776 +6157,5378,mystic warriors,1446579789 +6157,5378,Natalie Portman,1446579767 +6157,5378,robots,1446579770 +6157,5378,romance,1446579780 +6157,5378,Samuel L. Jackson,1446579769 +6157,5378,sci-fi,1446579754 +6157,5378,sequel,1446579772 +6157,5378,space,1446579757 +6157,5378,space opera,1446579783 +6157,5378,Star Wars,1446579756 +6157,5418,action,1446579837 +6157,5418,amnesia,1446579844 +6157,5418,assassin,1446579843 +6157,5418,based on a book,1446579854 +6157,5418,car chase,1446579847 +6157,5418,cia,1446579864 +6157,5418,cinematography,1446579876 +6157,5418,Clive Owen,1446579862 +6157,5418,conspiracy,1446579848 +6157,5418,efficient,1446579916 +6157,5418,entertaining,1446579925 +6157,5418,espionage,1446579835 +6157,5418,fast paced,1446579880 +6157,5418,fighting,1446579905 +6157,5418,Franka Potente,1446579860 +6157,5418,Matt Damon,1446579833 +6157,5418,memory,1446579869 +6157,5418,memory loss,1446579873 +6157,5418,mystery,1446579867 +6157,5418,realistic action,1446579858 +6157,5418,Robert Ludlum,1446579850 +6157,5418,Silence,1446579878 +6157,5418,spies,1446579871 +6157,5418,spy,1446579840 +6157,5418,spying,1446579856 +6157,5418,survival,1446579866 +6157,5418,thriller,1446579841 +6157,5618,Academy Award - Best Animated Feature,1446058589 +6157,5618,adventure,1446058562 +6157,5618,alternate reality,1446413771 +6157,5618,amazing artwork,1446413819 +6157,5618,animation,1446058595 +6157,5618,anime,1446413768 +6157,5618,atmospheric,1446058551 +6157,5618,beautiful,1446058560 +6157,5618,children,1446413799 +6157,5618,dreamlike,1446058550 +6157,5618,fairy tale,1446058575 +6157,5618,fantasy,1446058548 +6157,5618,fantasy world,1446413784 +6157,5618,good animation,1446413830 +6157,5618,great screenplay,1446413829 +6157,5618,Hayao Miyazaki,1446058546 +6157,5618,imagination,1446413782 +6157,5618,imaginative,1446413781 +6157,5618,Japan,1446413774 +6157,5618,Oscar (Best Animated Feature),1446058558 +6157,5618,Studio Ghibli,1446058544 +6157,5618,surreal,1446058555 +6157,5618,weird,1446413814 +6157,5618,whimsical,1446058553 +6157,5690,anime,1446579934 +6157,5690,anti-war,1446579938 +6157,5690,based on a true story,1446579949 +6157,5690,beautiful,1446579973 +6157,5690,bleak,1446579956 +6157,5690,childhood,1446579964 +6157,5690,death,1446579954 +6157,5690,downbeat,1446579942 +6157,5690,ghibli,1446580000 +6157,5690,grim,1444582528 +6157,5690,history,1446579951 +6157,5690,horrors of war,1446579947 +6157,5690,imdb top 250,1446579975 +6157,5690,innocence lost,1446579979 +6157,5690,Isao Takahata,1446580016 +6157,5690,Japan,1446579939 +6157,5690,maintaining illusion,1446579961 +6157,5690,orphans,1446579943 +6157,5690,poignant,1444582531 +6157,5690,SIBLING RELATIONSHIPS,1446579958 +6157,5690,somber,1446579963 +6157,5690,Studio Ghibli,1444582520 +6157,5690,tear jerker,1444582540 +6157,5690,tearjerker,1446579967 +6157,5690,tragedy,1444582522 +6157,5690,tragic,1446579970 +6157,5690,war,1446579945 +6157,5690,World War II,1446579936 +6157,5690,WWII,1446579952 +6157,5785,Based on a TV show,1444219077 +6157,5785,stupid,1444219070 +6157,5785,Useless,1444219087 +6157,5902,avante garde,1448729905 +6157,5902,black comedy,1448729816 +6157,5902,cerebral,1448729898 +6157,5902,Charlie Kaufman,1448729804 +6157,5902,clever,1448729900 +6157,5902,clever concept,1448729846 +6157,5902,comedy,1448729837 +6157,5902,crime,1448729902 +6157,5902,dark comedy,1448729800 +6157,5902,drama,1448729850 +6157,5902,drugs,1448729821 +6157,5902,evolution,1448729929 +6157,5902,Florida,1448729838 +6157,5902,intellectual,1448729854 +6157,5902,John Cusack,1448729876 +6157,5902,John Malkovich,1448729908 +6157,5902,literate,1448729848 +6157,5902,Maggie Gyllenhaal,1448729878 +6157,5902,melancholy,1448729824 +6157,5902,meryl streep,1448729812 +6157,5902,meta,1448729910 +6157,5902,mindfuck,1448729912 +6157,5902,narrated,1448729831 +6157,5902,New York City,1448729880 +6157,5902,Nicolas Cage,1448729809 +6157,5902,Nudity (Topless - Notable),1448729872 +6157,5902,Nudity (Topless),1448729915 +6157,5902,obsession,1448729844 +6157,5902,original plot,1448729917 +6157,5902,Oscar (Best Supporting Actor),1448729887 +6157,5902,Oscar 2002,1448729944 +6157,5902,profound,1448729857 +6157,5902,quirky,1448729810 +6157,5902,romance,1448729894 +6157,5902,Spike Jonze,1448729819 +6157,5902,surreal,1448729806 +6157,5902,very clever,1448729961 +6157,5902,weird,1448729852 +6157,5902,writers,1448729814 +6157,5902,writing process,1448729828 +6157,5952,Action,1446657120 +6157,5952,adapted from:book,1446657124 +6157,5952,Adventure,1446657099 +6157,5952,atmospheric,1446657101 +6157,5952,based on a book,1446657098 +6157,5952,Elijah Wood,1446657140 +6157,5952,ensemble cast,1446657122 +6157,5952,Epic,1446657106 +6157,5952,fantasy,1446657094 +6157,5952,fantasy world,1446657110 +6157,5952,great soundtrack,1446657114 +6157,5952,high fantasy,1446657096 +6157,5952,imdb top 250,1446657145 +6157,5952,magic,1446657104 +6157,5952,multiple storylines,1446657102 +6157,5952,mythology,1446657117 +6157,5952,New Zealand,1446657149 +6157,5952,Orlando Bloom,1446657151 +6157,5952,Oscar (Best Effects - Visual Effects),1446657153 +6157,5952,Peter Jackson,1446657107 +6157,5952,scenic,1446657112 +6157,5952,sequel,1446657143 +6157,5952,tolkien,1446657109 +6157,5952,trilogy,1446657134 +6157,5952,Viggo Mortensen,1446657130 +6157,5952,war,1446657116 +6157,5952,wizards,1446657119 +6157,5992,1950s housewives,1446657185 +6157,5992,AIDS,1446657189 +6157,5992,based on a book,1446657187 +6157,5992,depression,1446657179 +6157,5992,intellectual,1446657168 +6157,5992,Julianne Moore,1446657180 +6157,5992,lesbian,1446657192 +6157,5992,mental illness,1446657175 +6157,5992,Meryl Streep,1446657169 +6157,5992,multiple connecting storylines,1446657199 +6157,5992,Nicole Kidman,1446657166 +6157,5992,nonlinear,1446657177 +6157,5992,Oscar (Best Actress),1446657207 +6157,5992,queer,1446657182 +6157,5992,sad,1446657196 +6157,5992,suicide,1446657173 +6157,5992,Virginia Woolf,1446657171 +6157,6283,amazing artwork,1446657226 +6157,6283,Animation,1446657261 +6157,6283,anime,1446657219 +6157,6283,BOUNTY HUNTERS,1446657224 +6157,6283,cynical,1446657234 +6157,6283,genre mix,1446657261 +6157,6283,good score,1446657228 +6157,6283,humorous,1446657220 +6157,6283,sci-fi,1446657222 +6157,6283,Shinichirô Watanabe,1446657235 +6157,6283,space,1446657261 +6157,6283,UNLIKELY HEROES,1446657232 +6157,6365,action,1446657315 +6157,6365,alternate reality,1446657295 +6157,6365,artificial intelligence,1446657310 +6157,6365,big budget,1446657333 +6157,6365,car chase,1446657321 +6157,6365,Carrie-Anne Moss,1446657370 +6157,6365,cliffhanger,1446657392 +6157,6365,cyberpunk,1446657287 +6157,6365,Dynamic CGI Action,1446657361 +6157,6365,dystopia,1446657297 +6157,6365,existentialism,1446657327 +6157,6365,fight scenes,1446657319 +6157,6365,fighting,1446657389 +6157,6365,future,1446657323 +6157,6365,hacking,1446657355 +6157,6365,Hugo Weaving,1446657357 +6157,6365,human versus computer,1446657325 +6157,6365,Keanu Reeves,1446657317 +6157,6365,Laurence Fishburne,1446657376 +6157,6365,magic,1446657347 +6157,6365,man versus machine,1446657332 +6157,6365,martial arts,1446657312 +6157,6365,Matrix,1446657341 +6157,6365,Monica Bellucci,1446657335 +6157,6365,philosophy,1446657351 +6157,6365,Post apocalyptic,1446657309 +6157,6365,post-apocalyptic,1446657299 +6157,6365,sci-fi,1446657300 +6157,6365,sequel,1446657314 +6157,6365,super-hero,1446657349 +6157,6365,technology,1446657337 +6157,6365,thought-provoking,1446657306 +6157,6365,virtual reality,1446657294 +6157,6365,visually stunning,1446657377 +6157,6365,Wachowski Brothers,1446657329 +6157,6502,atmospheric,1444582852 +6157,6502,British,1446413846 +6157,6502,Cillian Murphy,1446413872 +6157,6502,cinematography,1446413895 +6157,6502,Danny Boyle,1446413931 +6157,6502,ending,1446413927 +6157,6502,England,1446413884 +6157,6502,epidemic,1446413852 +6157,6502,futuristic,1446413870 +6157,6502,great soundtrack,1444582858 +6157,6502,horror,1446413851 +6157,6502,infection,1446413877 +6157,6502,london,1446413874 +6157,6502,low budget,1446413868 +6157,6502,music,1446413921 +6157,6502,original,1446413915 +6157,6502,Post apocalyptic,1446413857 +6157,6502,post-apocalyptic,1444582839 +6157,6502,sci-fi,1446413855 +6157,6502,soundtrack,1446413907 +6157,6502,story,1446413899 +6157,6502,stylized,1444582849 +6157,6502,survival,1446413847 +6157,6502,suspense,1446413863 +6157,6502,tense,1446413905 +6157,6502,thought-provoking,1446413888 +6157,6502,thriller,1446413860 +6157,6502,unpredictable,1446413917 +6157,6502,violence,1446413882 +6157,6502,virus,1446413866 +6157,6502,visually appealing,1444582837 +6157,6502,Zombie,1444582843 +6157,6502,zombies,1444582841 +6157,6539,action,1446413348 +6157,6539,adventure,1446413346 +6157,6539,comedy,1446413352 +6157,6539,Disney,1446413369 +6157,6539,Entertaining,1446413404 +6157,6539,fantasy,1446413373 +6157,6539,funny,1446413353 +6157,6539,johnny depp,1446413343 +6157,6539,keira knightley,1446413365 +6157,6539,magic,1446413372 +6157,6539,Orlando Bloom,1446413367 +6157,6539,pirates,1446413345 +6157,6539,quirky,1446413393 +6157,6539,romance,1446413376 +6157,6539,silly,1446413416 +6157,6539,sword fight,1446413350 +6157,6711,Amazing Cinematography,1444219751 +6157,6711,atmospheric,1444219732 +6157,6711,Bill Murray,1444219727 +6157,6711,bittersweet,1444219758 +6157,6711,complex characters,1444219740 +6157,6711,cultural differences,1446412899 +6157,6711,friendship,1446412913 +6157,6711,great cinematograhy,1446412891 +6157,6711,intelligent,1444219746 +6157,6711,isolation,1446412917 +6157,6711,Japan,1446412879 +6157,6711,loneliness,1446412915 +6157,6711,lyrical,1446412923 +6157,6711,Melancholic,1445795873 +6157,6711,Mesmerizing,1444219776 +6157,6711,music,1446412889 +6157,6711,nocturnal,1446412907 +6157,6711,poignant,1446412894 +6157,6711,reflective,1446412884 +6157,6711,relationships,1446412886 +6157,6711,Scarlett Johansson,1444219731 +6157,6711,slow,1446412925 +6157,6711,Sofia Coppola,1446412877 +6157,6711,stylized,1446412932 +6157,6711,tokyo,1446412919 +6157,6711,urbane,1446412897 +6157,6711,visually appealing,1444219749 +6157,6711,wistful,1446412910 +6157,6870,based on a book,1446657442 +6157,6870,brutality,1446657454 +6157,6870,child abuse,1446657436 +6157,6870,Clint Eastwood,1446657413 +6157,6870,crime,1446657421 +6157,6870,Dark,1446657423 +6157,6870,Dark hero,1446657434 +6157,6870,drama,1446657419 +6157,6870,Dramatic,1446657456 +6157,6870,Exceptional Acting,1446657457 +6157,6870,family,1446657428 +6157,6870,great acting,1446657426 +6157,6870,imdb top 250,1446657450 +6157,6870,Kevin Bacon,1446657432 +6157,6870,kidnapping,1446657446 +6157,6870,murder,1446657448 +6157,6870,mystery,1446657416 +6157,6870,Nudity (Full Frontal - Brief),1446657460 +6157,6870,Oscar (Best Actor),1446657444 +6157,6870,Oscar (Best Supporting Actor),1446657485 +6157,6870,Police,1446657462 +6157,6870,powerful ending,1446657441 +6157,6870,revenge,1446657438 +6157,6870,Sean Penn,1446657414 +6157,6870,thriller,1446657424 +6157,6870,Tim Robbins,1446657452 +6157,6870,twist ending,1446657418 +6157,6870,working class,1446657430 +6157,6874,action,1446657514 +6157,6874,assassin,1446657517 +6157,6874,beautifully filmed,1446657564 +6157,6874,blood,1446657555 +6157,6874,bloody,1446657539 +6157,6874,cinematography,1446657565 +6157,6874,dark hero,1446657510 +6157,6874,David Carradine,1446657568 +6157,6874,funny,1446657537 +6157,6874,imdb top 250,1446657548 +6157,6874,Japan,1446657515 +6157,6874,katana,1446657541 +6157,6874,kung fu,1446657520 +6157,6874,Lucy Liu,1446657571 +6157,6874,martial arts,1446657497 +6157,6874,nonlinear,1446657502 +6157,6874,Quentin Tarantino,1446657495 +6157,6874,quirky,1446657522 +6157,6874,rape,1446657524 +6157,6874,revenge,1446657504 +6157,6874,stylized,1446657508 +6157,6874,Uma Thurman,1446657498 +6157,6874,violence,1446657506 +6157,6874,violent,1446657501 +6157,6874,visceral,1446657535 +6157,6874,visually appealing,1446657512 +6157,6934,action,1446657594 +6157,6934,alternate reality,1446657611 +6157,6934,apocalypse,1446657616 +6157,6934,artificial intelligence,1446657614 +6157,6934,cyberpunk,1446657589 +6157,6934,Dynamic CGI Action,1446657649 +6157,6934,dystopia,1446657605 +6157,6934,fantasy,1446657637 +6157,6934,future,1446657628 +6157,6934,Hugo Weaving,1446657642 +6157,6934,Keanu Reeves,1446657606 +6157,6934,man versus machine,1446657618 +6157,6934,martial arts,1446657621 +6157,6934,Matrix,1446657619 +6157,6934,monica bellucci,1446657629 +6157,6934,Philosophical,1446657608 +6157,6934,philosophy,1446657640 +6157,6934,Post apocalyptic,1446657592 +6157,6934,post-apocalyptic,1446657591 +6157,6934,robots,1446657597 +6157,6934,Romance,1446657622 +6157,6934,sci-fi,1446657583 +6157,6934,sequel,1446657587 +6157,6934,virtual reality,1446657585 +6157,6934,visually stunning,1446657630 +6157,6954,Culture,1446657669 +6157,6954,Death,1446657675 +6157,6954,intellectual,1446657672 +6157,6954,Oscar (Best Foreign Language Film),1446657667 +6157,6954,Oscar 2003,1446657662 +6157,6954,philosophy,1446657665 +6157,6954,Sad,1446657685 +6157,7099,adventure,1447095943 +6157,7099,anime,1447095931 +6157,7099,classic,1447095965 +6157,7099,comic book,1447095963 +6157,7099,dystopic future,1447095933 +6157,7099,ecology,1447095948 +6157,7099,environmental,1447095939 +6157,7099,fantasy,1447095941 +6157,7099,fantasy world,1447095936 +6157,7099,great soundtrack,1447095952 +6157,7099,Hayao Miyazaki,1447095928 +6157,7099,Japan,1447095946 +6157,7099,Miyazaki,1447095949 +6157,7099,post-apocalyptic,1447095929 +6157,7099,sci-fi,1447095938 +6157,7099,steampunk,1447095971 +6157,7099,strong female lead,1447095935 +6157,7099,Studio Ghibli,1447095926 +6157,7099,stylized,1447095961 +6157,7099,war,1447095945 +6157,7153,Action,1446657830 +6157,7153,action-packed,1446657824 +6157,7153,Adventure,1446657753 +6157,7153,atmospheric,1446657766 +6157,7153,based on a book,1446657763 +6157,7153,dialogue,1446657821 +6157,7153,Elijah Wood,1446657832 +6157,7153,ensemble cast,1446657788 +6157,7153,epic,1446657782 +6157,7153,epic adventure,1446657790 +6157,7153,fantasy,1446657751 +6157,7153,fantasy world,1446657768 +6157,7153,great ending,1446657764 +6157,7153,great soundtrack,1446657780 +6157,7153,high fantasy,1446657761 +6157,7153,imdb top 250,1446657794 +6157,7153,lord of the rings,1446657786 +6157,7153,magic,1446657755 +6157,7153,multiple storylines,1446657778 +6157,7153,mystic warriors,1446657806 +6157,7153,mythology,1446657784 +6157,7153,Orlando Bloom,1446657843 +6157,7153,oscar (best cinematography),1446657759 +6157,7153,Oscar (Best Directing),1446657808 +6157,7153,Oscar (Best Music - Original Song),1446657837 +6157,7153,Oscar (Best Picture),1446657757 +6157,7153,Peter Jackson,1446657774 +6157,7153,scenic,1446657804 +6157,7153,stylized,1446657792 +6157,7153,tense,1446657840 +6157,7153,Tolkien,1446657770 +6157,7153,Viggo Mortensen,1446657835 +6157,7153,war,1446657772 +6157,7153,wizards,1446657776 +6157,7438,action,1446657870 +6157,7438,adventure,1446657908 +6157,7438,atmospheric,1446657868 +6157,7438,Japan,1446657892 +6157,7438,kung fu,1446657872 +6157,7438,martial arts,1446657861 +6157,7438,Quentin Tarantino,1446657858 +6157,7438,quirky,1446657884 +6157,7438,revenge,1446657859 +6157,7438,Samuel L. Jackson,1446657906 +6157,7438,spaghetti western,1446657897 +6157,7438,storytelling,1446657873 +6157,7438,stylized,1446657863 +6157,7438,tarantino,1446657889 +6157,7438,twist ending,1446657895 +6157,7438,Uma Thurman,1446657875 +6157,7438,violence,1446657866 +6157,7438,violent,1446657893 +6157,7438,visually appealing,1446657890 +6157,7502,Anti-heroes,1446322045 +6157,7502,based on a book,1446657935 +6157,7502,emotional,1446657940 +6157,7502,friendship,1446657937 +6157,7502,historical,1446322055 +6157,7502,military,1446657920 +6157,7502,Naive ending,1446322077 +6157,7502,not a movie,1446657928 +6157,7502,realistic,1446322053 +6157,7502,though provoking,1446657934 +6157,7502,touching,1446657941 +6157,7502,true story,1446657924 +6157,7502,war,1446657922 +6157,7502,World War II,1446657918 +6157,7981,excellent script,1446657983 +6157,7981,foreign language film,1446657996 +6157,7981,gritty,1446657989 +6157,7981,Hong Kong,1446657986 +6157,7981,imdb top 250,1446658002 +6157,7981,police,1446657978 +6157,7981,slick,1446657991 +6157,7981,story,1446657982 +6157,7981,stylized,1446657993 +6157,7981,tense,1446658003 +6157,7981,undercover cop,1446657975 +6157,8464,american idiocy,1445271461 +6157,8464,dishonest,1445271427 +6157,8464,fabricated,1445271421 +6157,8464,Fake,1445271470 +6157,8464,flawed experiment,1445271435 +6157,8464,inaccurate,1445271417 +6157,8464,opaque,1445271433 +6157,8464,propaganda,1445271452 +6157,8638,bittersweet,1446658054 +6157,8638,dialogue,1446412660 +6157,8638,emotional,1446412667 +6157,8638,Ethan Hawke,1446412673 +6157,8638,great dialogue,1446412666 +6157,8638,intelligent,1446412686 +6157,8638,Julie Delpy,1446412671 +6157,8638,minimalist,1446412662 +6157,8638,Oscar Nominee: Adapted Screenplay,1446412695 +6157,8638,Paris,1446412680 +6157,8638,philosophical,1446412683 +6157,8638,quirky,1446412675 +6157,8638,Richard Linklater,1446412669 +6157,8638,romance,1446412663 +6157,8638,romantic,1446412656 +6157,8638,sequel,1446658053 +6157,8638,Verbose,1446658056 +6157,8638,writers,1446658057 +6157,8665,action,1446658082 +6157,8665,amnesia,1446658078 +6157,8665,assassin,1446658087 +6157,8665,based on a book,1446658107 +6157,8665,book adaptation,1446658109 +6157,8665,car chase,1446658077 +6157,8665,cia,1446658085 +6157,8665,conspiracy,1446658080 +6157,8665,espionage,1446658073 +6157,8665,fast paced,1446658098 +6157,8665,Franka Potente,1446658092 +6157,8665,International,1446658091 +6157,8665,kickass,1446658104 +6157,8665,Matt Damon,1446658074 +6157,8665,realistic action,1446658084 +6157,8665,Robert Ludlum,1446658088 +6157,8665,spy,1446658075 +6157,8783,Adrien Brody,1446658161 +6157,8783,Atmospheric,1446658229 +6157,8783,Bryce Dallas Howard,1446658179 +6157,8783,Colors,1446658215 +6157,8783,cult,1446658158 +6157,8783,fascinating,1446658132 +6157,8783,good soundtrack,1446658170 +6157,8783,great ending,1446658136 +6157,8783,great soundtrack,1446658134 +6157,8783,Interesting,1446658168 +6157,8783,Joaquin Phoenix,1444219987 +6157,8783,m. night shyamalan,1446658122 +6157,8783,Original Soundtrack,1446658142 +6157,8783,psychological,1446658131 +6157,8783,riveting,1446658138 +6157,8783,secrets,1446658127 +6157,8783,Sigourney Weaver,1446658140 +6157,8783,social commentary,1446658152 +6157,8783,surprise ending,1446658125 +6157,8783,suspense,1446658123 +6157,8783,thought-provoking,1446658129 +6157,8783,twist ending,1444219956 +6157,8783,underrated,1446658160 +6157,8874,anti-hero,1445167187 +6157,8874,black comedy,1445167178 +6157,8874,British,1445167196 +6157,8874,british comedy,1445167182 +6157,8874,comedy,1446658275 +6157,8874,dark comedy,1446658270 +6157,8874,dark humor,1445167201 +6157,8874,Edgar Wright,1446658278 +6157,8874,england,1446658276 +6157,8874,funny,1446658288 +6157,8874,gore,1446658273 +6157,8874,hilarious,1445167190 +6157,8874,horror,1446658282 +6157,8874,London,1446658290 +6157,8874,Nick Frost,1446658283 +6157,8874,parody,1446658267 +6157,8874,satire,1446658280 +6157,8874,Simon Pegg,1445167194 +6157,8874,spoof,1446658268 +6157,8874,violent,1446658287 +6157,8874,zombie,1446658271 +6157,8874,zombies,1445167175 +6157,8981,Dark,1446412487 +6157,8981,dialogue,1446412497 +6157,8981,disturbing,1446412504 +6157,8981,good acting,1446412478 +6157,8981,Natalie Portman,1446412471 +6157,8984,entertaining,1445171143 +6157,26662,Adventure,1450085898 +6157,26662,animation,1450085905 +6157,26662,anime,1450085880 +6157,26662,comedy,1450085907 +6157,26662,coming of age,1450085887 +6157,26662,cute,1450085945 +6157,26662,family,1450085903 +6157,26662,fantasy,1450085926 +6157,26662,feel good,1450085968 +6157,26662,feel-good,1450085884 +6157,26662,Hayao Miyazaki,1450085881 +6157,26662,innocent,1450085923 +6157,26662,Japan,1450085900 +6157,26662,magic,1450085883 +6157,26662,Miyazaki,1450085892 +6157,26662,strong female lead,1450085889 +6157,26662,Studio Ghibli,1450085878 +6157,26662,sweet,1450085950 +6157,26662,witch,1450085886 +6157,26713,Andy Lau,1452172850 +6157,26713,Asian culture,1452172847 +6157,26713,cinematography,1452172856 +6157,26713,dreamlike,1452172852 +6157,26713,loneliness,1452172854 +6157,26713,love story,1452172859 +6157,26713,love triangles,1452172841 +6157,26713,reflective,1452172864 +6157,26713,sentimental,1452172843 +6157,26713,Slice of life,1452172899 +6157,26713,stylized,1452172866 +6157,26713,Wong Kar-wai,1452172839 +6157,27266,1960s,1447240280 +6157,27266,atmospheric,1447240277 +6157,27266,Beautiful,1447240341 +6157,27266,chinese,1447240287 +6157,27266,cinematography,1447240313 +6157,27266,Colors,1447240347 +6157,27266,elegant,1447240303 +6157,27266,enigmatic,1447240304 +6157,27266,erotic,1447240283 +6157,27266,Great Music,1447240374 +6157,27266,Intelligent,1447240406 +6157,27266,loneliness,1447240329 +6157,27266,love,1447240296 +6157,27266,melancholy,1447240275 +6157,27266,memories,1447240309 +6157,27266,Music,1447240379 +6157,27266,romance,1447240332 +6157,27266,romantic,1447240279 +6157,27266,slow,1447240276 +6157,27266,Soundtrack,1447240387 +6157,27266,stylized,1447240276 +6157,27266,Tony Leung Chiu Wai,1447240286 +6157,27266,Wong Kar Wai,1447240294 +6157,27266,Wong Kar-wai,1447240276 +6157,27397,Chan-wook Park,1446658302 +6157,27397,flashbacks,1446658313 +6157,27397,friendship,1446658304 +6157,27397,investigation,1446658308 +6157,27397,korea,1446658346 +6157,27397,Moving,1446658321 +6157,27397,nonlinear,1446658309 +6157,27397,Original,1446658328 +6157,27397,Smart,1446658337 +6157,27397,soldiers,1446658311 +6157,27397,tension,1446658317 +6157,27397,tragedy,1446658314 +6157,27592,absurdism,1446658379 +6157,27592,amazing!,1446658407 +6157,27592,black humour,1446658394 +6157,27592,brutal,1446658366 +6157,27592,brutality,1446658367 +6157,27592,camerawork,1446658396 +6157,27592,Chan-wook Park,1446658358 +6157,27592,Complex characters,1446658459 +6157,27592,dark,1446658370 +6157,27592,Disturbing,1446658500 +6157,27592,kidnapping,1446658390 +6157,27592,Korean,1446658398 +6157,27592,menacing,1446658391 +6157,27592,nudity (topless),1446658405 +6157,27592,psychological,1446658400 +6157,27592,psychology,1446658401 +6157,27592,revenge,1446658361 +6157,27592,Revenge Trilogy,1446658373 +6157,27592,stylized,1446658364 +6157,27592,vengeance,1446658360 +6157,27592,violent,1446658363 +6157,27722,asia,1448554917 +6157,27722,Bangkok,1448554901 +6157,27722,beautiful,1448554891 +6157,27722,Boy+Girl,1448554974 +6157,27722,Contemplative,1448554943 +6157,27722,Cryptic,1448554954 +6157,27722,Cute,1448554934 +6157,27722,dreamlike,1448554912 +6157,27722,Japanese,1448554914 +6157,27722,meditative,1448554897 +6157,27722,mysterious,1448554929 +6157,27722,Pen-Ek Ratanaruang,1448554920 +6157,27722,relationships,1448554922 +6157,27722,Romance,1448554966 +6157,27722,Strange,1448554986 +6157,27722,suicide,1448554925 +6157,27722,Tadanobu Asano,1448554894 +6157,27722,thailand,1448554895 +6157,27722,Weird,1448554994 +6157,27773,bizarre,1446414008 +6157,27773,brutal,1446413990 +6157,27773,Chan-Wook Park,1446413971 +6157,27773,Cinematography,1446414000 +6157,27773,classic,1446414010 +6157,27773,disturbing,1446413950 +6157,27773,great soundtrack,1446413996 +6157,27773,incest,1446413984 +6157,27773,Korea,1446413975 +6157,27773,korean,1446413973 +6157,27773,music,1446413998 +6157,27773,Nudity (Full Frontal),1446413987 +6157,27773,pychological,1446414018 +6157,27773,revenge,1446413955 +6157,27773,stylized,1446413957 +6157,27773,surreal,1446413978 +6157,27773,tense,1446413994 +6157,27773,twist ending,1446413948 +6157,27773,twisted,1446414020 +6157,27773,vengeance,1446413964 +6157,27773,violent,1446413959 +6157,31658,dreamlike,1446058530 +6157,31658,Hayao Miyazaki,1446058526 +6157,31658,Studio Ghibli,1446058528 +6157,31658,stylized,1446058535 +6157,31658,whimsical,1446058538 +6157,33493,action,1446658533 +6157,33493,adventure,1446658547 +6157,33493,dark,1446658516 +6157,33493,Ewan McGregor,1446658523 +6157,33493,fantasy,1446658527 +6157,33493,franchise,1446658535 +6157,33493,George Lucas,1446658525 +6157,33493,good versus evil,1446658550 +6157,33493,great soundtrack,1446658522 +6157,33493,Hayden Christensen,1446658530 +6157,33493,mystic warriors,1446658537 +6157,33493,Natalie Portman,1446658518 +6157,33493,no happy ending,1446658557 +6157,33493,robots,1446658520 +6157,33493,Samuel L. Jackson,1446658539 +6157,33493,sci-fi,1446658514 +6157,33493,sequel,1446658532 +6157,33493,space,1446658513 +6157,33493,space opera,1446658528 +6157,33493,Star Wars,1446658512 +6157,33493,super-hero,1446658548 +6157,33493,war,1446658541 +6157,33880,artistic,1446401116 +6157,33880,bittersweet,1446413267 +6157,33880,Cute,1446658590 +6157,33880,humorous,1446401094 +6157,33880,independent film,1446401082 +6157,33880,Indie,1446401084 +6157,33880,irreverent,1446658570 +6157,33880,Miranda July,1446658577 +6157,33880,quirky,1446401072 +6157,33880,Romantic,1446658598 +6157,33880,simplistic,1446401108 +6157,33880,surreal,1446401113 +6157,33880,unique,1446401074 +6157,33880,weird,1446401079 +6157,37720,better than expected,1445697329 +6157,40629,18th century,1446848843 +6157,40629,based on a book,1446848857 +6157,40629,Carey Mulligan,1446848947 +6157,40629,cheesy but good,1446849157 +6157,40629,chick flick,1446848919 +6157,40629,cinematography,1446848870 +6157,40629,classic,1446848838 +6157,40629,cute,1446848883 +6157,40629,Dialogues,1446849073 +6157,40629,Donald Sutherland,1446848867 +6157,40629,England,1446848840 +6157,40629,Feel-good,1446848899 +6157,40629,great soundtrack,1446848854 +6157,40629,Happy ending,1446849020 +6157,40629,Jane Austen,1446848834 +6157,40629,Jena Malone,1446849042 +6157,40629,Keira Knightley,1446848836 +6157,40629,Light,1446848976 +6157,40629,love,1446848861 +6157,40629,Matthew MacFadyen,1446849037 +6157,40629,relationships,1446848845 +6157,40629,romance,1446848841 +6157,40629,Romantic and sweet,1446848888 +6157,40629,Rosamund Pike,1446849036 +6157,40629,Simon Woods,1446848950 +6157,40629,Sweet,1446848968 +6157,41285,acting,1446658682 +6157,41285,cerebral,1446658674 +6157,41285,CLASS DIFFERENCES,1446658649 +6157,41285,clever,1446658615 +6157,41285,dark,1446658675 +6157,41285,Disturbing,1446658634 +6157,41285,Emily Mortimer,1446658640 +6157,41285,England,1446658686 +6157,41285,Greek tragedy,1446658666 +6157,41285,immoral,1446658671 +6157,41285,interesting,1446658646 +6157,41285,Jonathan Rhys Meyers,1446658642 +6157,41285,London,1446658627 +6157,41285,love affair,1446658632 +6157,41285,murder,1446658652 +6157,41285,Music,1446658734 +6157,41285,non-hollywood ending,1446658618 +6157,41285,romance,1446658644 +6157,41285,Scarlett Johansson,1446658613 +6157,41285,slow,1446658626 +6157,41285,Smart,1446658710 +6157,41285,sports,1446658654 +6157,41285,tennis,1446658620 +6157,41285,thrilling,1446658639 +6157,41285,twist,1446658629 +6157,41285,twist ending,1446658631 +6157,41285,Woody Allen,1446658612 +6157,42632,beautiful cinematography,1446658777 +6157,42632,brutality,1446658783 +6157,42632,Chan-wook Park,1446658774 +6157,42632,child murder,1446658779 +6157,42632,disturbing,1446658776 +6157,42632,flashbacks,1446658793 +6157,42632,Korea,1446658784 +6157,42632,Masterpiece,1446658808 +6157,42632,Min-sik Choi,1446658815 +6157,42632,music,1446658798 +6157,42632,prison,1446658789 +6157,42632,quirky,1446658781 +6157,42632,revenge,1446658772 +6157,42632,Revenge Trilogy,1446658786 +6157,42632,soundtrack,1446658802 +6157,42632,stylized,1446658770 +6157,42632,surreal,1446658791 +6157,42632,vengeance,1446658806 +6157,42632,vigilante,1446658794 +6157,42632,violent,1446658788 +6157,44397,gore,1445693655 +6157,44397,rape,1445693658 +6157,44555,Berlin,1446658862 +6157,44555,breathtaking,1446658868 +6157,44555,character development,1446658917 +6157,44555,Cold War,1446658866 +6157,44555,communism,1446658903 +6157,44555,complex characters,1446658855 +6157,44555,corruption,1446658894 +6157,44555,dialogue,1446658933 +6157,44555,disturbing,1446658914 +6157,44555,drama,1446658860 +6157,44555,East Germany,1446658844 +6157,44555,excellent script,1446658853 +6157,44555,Florian Henckel von Donnersmarck,1446658875 +6157,44555,foreign,1446658883 +6157,44555,freedom of expression,1446658850 +6157,44555,german,1446658873 +6157,44555,Germany,1446658857 +6157,44555,great acting,1446658869 +6157,44555,historical,1446658864 +6157,44555,imdb top 250,1446658891 +6157,44555,Nudity (Topless - Brief),1446658896 +6157,44555,Nudity (Topless),1446658898 +6157,44555,Oscar (Best Foreign Language Film),1446658893 +6157,44555,Oscar Winner,1446658902 +6157,44555,psychology,1446658911 +6157,44555,realisitc acting,1446658926 +6157,44555,spies,1446658905 +6157,44555,spying,1446658846 +6157,44555,Stasi,1446658847 +6157,44555,subtle performances,1446658877 +6157,44555,suicide,1446658900 +6157,44555,surveillance,1446658851 +6157,44555,suspense,1446658859 +6157,44555,voyeurism,1446658907 +6157,46976,dustin hoffman,1446413039 +6157,46976,existentialism,1446750552 +6157,46976,fantasy,1446750548 +6157,46976,heartwarming,1446413044 +6157,46976,humorous,1446413052 +6157,46976,love,1446413049 +6157,46976,Maggie Gyllenhaal,1446413030 +6157,46976,metaphysics,1446750540 +6157,46976,modern fantasy,1446413034 +6157,46976,narrated,1444571880 +6157,46976,quirky,1444571866 +6157,46976,quirky romantic,1446413040 +6157,46976,romance,1446413046 +6157,46976,storytelling,1444571877 +6157,46976,surreal,1446413025 +6157,46976,touching,1446413035 +6157,46976,Will Ferrell,1446413027 +6157,46976,writing,1446413037 +6157,48394,adventure,1446750744 +6157,48394,alternate reality,1446750662 +6157,48394,atmospheric,1446309719 +6157,48394,bittersweet,1446309723 +6157,48394,brutality,1446750689 +6157,48394,dark,1446309737 +6157,48394,dark fantasy,1446750673 +6157,48394,disturbing,1446309730 +6157,48394,fairy tale,1446750656 +6157,48394,fantasy,1446309721 +6157,48394,fascism,1446750669 +6157,48394,gore,1446750682 +6157,48394,great soundtrack,1446750691 +6157,48394,Guillermo del Toro,1446750671 +6157,48394,history,1446750684 +6157,48394,imagination,1446309726 +6157,48394,imdb top 250,1446750680 +6157,48394,military,1446750686 +6157,48394,Oscar (Best Art Direction),1446750742 +6157,48394,Oscar (Best Cinematography),1446309746 +6157,48394,psychology,1446309733 +6157,48394,Spain,1446750675 +6157,48394,Spanish Civil War,1446750664 +6157,48394,stylized,1446309728 +6157,48394,surreal,1446309716 +6157,48394,twist ending,1446750660 +6157,48394,violence,1446750657 +6157,48394,visually appealing,1446309739 +6157,48394,world war II,1446750666 +6157,48516,action,1446750806 +6157,48516,atmospheric,1446750773 +6157,48516,Boston,1446750800 +6157,48516,complicated plot,1446750804 +6157,48516,corruption,1446750786 +6157,48516,Crime,1446750791 +6157,48516,ensemble cast,1446750793 +6157,48516,gangster,1446750808 +6157,48516,gangsters,1446750767 +6157,48516,great acting,1446750823 +6157,48516,gritty,1446750812 +6157,48516,imdb top 250,1446750810 +6157,48516,Jack Nicholson,1446750762 +6157,48516,Leonardo DiCaprio,1446750758 +6157,48516,Mafia,1446750776 +6157,48516,Mark Wahlberg,1446750795 +6157,48516,Martin Scorsese,1446750763 +6157,48516,Matt Damon,1446750765 +6157,48516,murder,1446750816 +6157,48516,organized crime,1446750759 +6157,48516,original,1446750802 +6157,48516,police corruption,1446750772 +6157,48516,psychology,1446750788 +6157,48516,remake,1446750782 +6157,48516,suspense,1446750780 +6157,48516,tense,1446750798 +6157,48516,thriller,1446750814 +6157,48516,twist ending,1446750778 +6157,48516,undercover cop,1446750770 +6157,48516,violence,1446750784 +6157,51255,Funny as hell,1445167223 +6157,53000,action,1446750878 +6157,53000,Amazing opening scene,1446750907 +6157,53000,Jeremy Renner,1446750853 +6157,53000,military,1446750855 +6157,53000,Music,1446750915 +6157,53000,not as good as the first,1446750867 +6157,53000,post-apocalyptic,1446750849 +6157,53000,Robert Carlyle,1446750877 +6157,53000,sequel,1446750868 +6157,53000,survival,1446750857 +6157,53000,zombies,1446750851 +6157,53123,beautiful,1446414050 +6157,53123,bittersweet,1446414043 +6157,53123,charming,1446414085 +6157,53123,complex characters,1446414068 +6157,53123,dublin,1446414062 +6157,53123,emotional,1446414054 +6157,53123,good music,1446414046 +6157,53123,great soundtrack,1446414056 +6157,53123,Honest,1446414118 +6157,53123,Ireland,1446414045 +6157,53123,John Carney,1446414091 +6157,53123,Music,1446414058 +6157,53123,Musical,1446414105 +6157,53123,musicians,1446414039 +6157,53123,Oscar (Best Music - Original Song),1446414048 +6157,53123,quirky,1446414127 +6157,53123,realistic,1446414060 +6157,53123,romance,1446414094 +6157,53123,simple,1446414073 +6157,53123,songwriting,1446414052 +6157,53123,soundtrack,1446414088 +6157,53123,sweet,1446414074 +6157,53125,adventure,1446413286 +6157,53125,anti-hero,1446413302 +6157,53125,comedy,1446413292 +6157,53125,franchise,1446413323 +6157,53125,Johnny Depp,1446413289 +6157,53125,Keira Knightley,1446413287 +6157,53125,Orlando Bloom,1446413294 +6157,53125,pirates,1446413291 +6157,53125,quirky,1446413306 +6157,53125,too many plot threads,1446413318 +6157,53318,lovely,1445182956 +6157,53318,quirky,1445183031 +6157,53318,Too many ideas,1445183026 +6157,53318,Too much narration,1445182975 +6157,54286,action,1446750929 +6157,54286,adventure,1446751011 +6157,54286,assassin,1446750938 +6157,54286,assassins,1446750957 +6157,54286,based on a book,1446750951 +6157,54286,car chase,1446750946 +6157,54286,cia,1446750943 +6157,54286,conspiracy,1446750936 +6157,54286,espionage,1446750926 +6157,54286,Great fighting,1446750991 +6157,54286,great plot,1446750953 +6157,54286,imdb top 250,1446750959 +6157,54286,Madrid,1446751013 +6157,54286,Matt Damon,1446750927 +6157,54286,murder,1446751000 +6157,54286,Oscar (Best Editing),1446751015 +6157,54286,Oscar (Best Sound Editing),1446750995 +6157,54286,Oscar (Best Sound),1446750968 +6157,54286,Robert Ludlum,1446750965 +6157,54286,spies,1446750942 +6157,54286,spy,1446750940 +6157,54286,spy thriller,1446750934 +6157,54286,suspense,1446750947 +6157,54286,thriller,1446750949 +6157,54286,torture,1446750955 +6157,54286,trilogy,1446750962 +6157,54286,twist ending,1446750933 +6157,55247,Overrated,1444220050 +6157,55247,Unlikable character,1444220067 +6157,55269,Adrien Brody,1446751056 +6157,55269,Bill Murray,1446751070 +6157,55269,brothers,1446751060 +6157,55269,cinematography,1446751043 +6157,55269,Colorful,1446751079 +6157,55269,dark comedy,1445104096 +6157,55269,dysfunctional family,1446751051 +6157,55269,family dynamics,1446751055 +6157,55269,Feel-good,1446751108 +6157,55269,Funny,1446751099 +6157,55269,Heartwarming,1446751121 +6157,55269,India,1446751042 +6157,55269,Owen Wilson,1446751062 +6157,55269,Quirky,1446751091 +6157,55269,road movie,1446751067 +6157,55269,road trip,1446751045 +6157,55269,SIBLING RELATIONSHIPS,1446751058 +6157,55269,spiritual journey,1446751047 +6157,55269,Train,1446751052 +6157,55269,trains,1446751049 +6157,55269,Wes Anderson,1445104093 +6157,56367,adoption,1446751145 +6157,56367,Allison Janney,1446751169 +6157,56367,bittersweet,1446751157 +6157,56367,comedy,1446751134 +6157,56367,cult film,1444583029 +6157,56367,Ellen Page,1446751131 +6157,56367,excellent dialogue,1446751200 +6157,56367,excellent script,1444583027 +6157,56367,feel good movie,1446751153 +6157,56367,feel-good,1444583035 +6157,56367,great soundtrack,1446751140 +6157,56367,high school,1446751136 +6157,56367,hilarious,1446751147 +6157,56367,humor,1446751160 +6157,56367,humorous,1446751167 +6157,56367,independent film,1444583061 +6157,56367,indie,1446751151 +6157,56367,inimitable,1446751193 +6157,56367,J.K. Simmons,1446751171 +6157,56367,Jason Bateman,1446751197 +6157,56367,Jason Reitman,1446751177 +6157,56367,Jennifer Garner,1446751155 +6157,56367,Michael Cera,1446751187 +6157,56367,notable soundtrack,1446751138 +6157,56367,pregnancy,1446751133 +6157,56367,quirky,1444583045 +6157,56367,quotable,1446751158 +6157,56367,soundtrack,1446751203 +6157,56367,teen,1446751149 +6157,56367,teen pregnancy,1446751143 +6157,56367,teenage pregnancy,1446751164 +6157,56367,teenager,1446751142 +6157,56367,teenagers,1446751162 +6157,56367,witty,1444583032 +6157,56389,boring,1445187917 +6157,56389,Natalie Portman,1445187927 +6157,57274,atmospheric,1445239037 +6157,57274,horror,1445239033 +6157,57274,zombies,1445239031 +6157,58154,Natalie Portman,1445187167 +6157,58154,Scarlett Johansson,1445187169 +6157,58559,action,1446751229 +6157,58559,Atmospheric,1446751227 +6157,58559,based on a comic,1446751256 +6157,58559,Batman,1446751218 +6157,58559,Christian Bale,1446751223 +6157,58559,Christopher Nolan,1446751235 +6157,58559,comic book,1446751246 +6157,58559,Comic Book adaption,1446751263 +6157,58559,dark,1446751225 +6157,58559,Dark hero,1446751297 +6157,58559,ensemble cast,1446751270 +6157,58559,fast,1446751274 +6157,58559,Gary Oldman,1446751267 +6157,58559,Great Characters,1446751308 +6157,58559,great villain,1446751315 +6157,58559,gritty,1446751258 +6157,58559,Heath Ledger,1446751216 +6157,58559,imdb top 250,1446751280 +6157,58559,Maggie Gyllenhaal,1446751282 +6157,58559,Michael Caine,1446751240 +6157,58559,Morgan Freeman,1446751231 +6157,58559,murder,1446751286 +6157,58559,music,1446751254 +6157,58559,Oscar (Best Supporting Actor),1446751250 +6157,58559,psychology,1446751233 +6157,58559,serial killer,1446751265 +6157,58559,stylized,1446751248 +6157,58559,superhero,1446751221 +6157,58559,thriller,1446751244 +6157,58559,vigilante,1446751238 +6157,58559,violence,1446751242 +6157,58559,violent,1446751252 +6157,60950,artists,1446751362 +6157,60950,Barcelona,1446751335 +6157,60950,bisexual,1446751338 +6157,60950,Characters,1446751422 +6157,60950,chick flick,1446751360 +6157,60950,friendship,1446751356 +6157,60950,Javier Bardem,1446751351 +6157,60950,love,1446751355 +6157,60950,love triangles,1446751353 +6157,60950,narrated,1446751349 +6157,60950,Oscar (Best Supporting Actress),1446751376 +6157,60950,Penelope Cruz,1446751367 +6157,60950,philosophical,1446751340 +6157,60950,relationships,1446751348 +6157,60950,romance,1446751342 +6157,60950,Scarlett Johansson,1446751330 +6157,60950,scenic,1446751346 +6157,60950,sexuality,1446751332 +6157,60950,Slice of life,1446751403 +6157,60950,Spain,1446751344 +6157,60950,threesome,1446751337 +6157,60950,visually appealing,1446751358 +6157,60950,Woody Allen,1446751333 +6157,61240,1980s,1446831433 +6157,61240,adapted from:book,1446831437 +6157,61240,adolescence,1446831430 +6157,61240,atmospheric,1446309794 +6157,61240,based on a book,1446831428 +6157,61240,Beautiful,1446309799 +6157,61240,bittersweet,1446309796 +6157,61240,black humour,1446831457 +6157,61240,bullying,1446831432 +6157,61240,coming of age,1446831424 +6157,61240,dark,1446309809 +6157,61240,friendship relations,1446831467 +6157,61240,horror,1446831435 +6157,61240,imdb top 250,1446831439 +6157,61240,love story,1446831426 +6157,61240,meditative,1446831461 +6157,61240,original,1446309834 +6157,61240,serial killer,1446831453 +6157,61240,slow,1446309805 +6157,61240,somber,1446831448 +6157,61240,strange,1446309802 +6157,61240,suburbia,1446831441 +6157,61240,Sweden,1446831446 +6157,61240,swedish,1446831422 +6157,61240,Tomas Alfredson,1446831444 +6157,61240,touching,1446309806 +6157,61240,vampire,1446309792 +6157,61240,vampires,1446309790 +6157,61240,violence,1446831455 +6157,64614,Clint Eastwood,1446831486 +6157,64614,culture clash,1446831487 +6157,64614,drama,1446831524 +6157,64614,ending,1446831518 +6157,64614,friendship,1446831492 +6157,64614,gangs,1446831513 +6157,64614,gangsters,1446831511 +6157,64614,heartwarming,1446831497 +6157,64614,life & death,1446831500 +6157,64614,mentor,1446831502 +6157,64614,morality,1446831532 +6157,64614,murder,1446831530 +6157,64614,patriotic,1446831523 +6157,64614,racism,1446831489 +6157,64614,racist humor,1446831515 +6157,64614,redemption,1446831509 +6157,64614,revenge,1446831494 +6157,64614,sacrifice,1446831507 +6157,64614,violence,1446831545 +6157,64695,anime,1446831555 +6157,64695,anti-hero,1446831561 +6157,64695,fighting,1446831567 +6157,64695,Great animation,1446831577 +6157,64695,japan,1446831562 +6157,64695,samurai,1446831557 +6157,64695,sword fights,1446831564 +6157,66371,Aesthetic,1446831770 +6157,66371,based on a book,1446831631 +6157,66371,beautiful,1446831623 +6157,66371,beautiful music,1446831610 +6157,66371,beautiful scenery,1446831595 +6157,66371,calm,1446831605 +6157,66371,cello,1446831603 +6157,66371,Cinematography,1446831726 +6157,66371,confronting death,1446831608 +6157,66371,death,1446831616 +6157,66371,earnest,1446831633 +6157,66371,emotional,1446831601 +6157,66371,father son relationship,1446831614 +6157,66371,friendship,1446831625 +6157,66371,Japan,1446831597 +6157,66371,life & death,1446831599 +6157,66371,relaxing,1446831618 +6157,66371,taboo,1446831621 +6157,66371,understated,1446831611 +6157,66371,unique,1446831628 +6157,66371,Yojiro Takita,1446831645 +6157,66665,Characters with great depth,1446757202 +6157,66665,cute,1446757184 +6157,66665,great soundtrack,1446757154 +6157,66665,humorous,1446757164 +6157,66665,Jeff Daniels,1446757208 +6157,66665,John Krasinski,1446757180 +6157,66665,Maggie Gyllenhaal,1446757186 +6157,66665,Maya Rudolph,1446757182 +6157,66665,philosophical,1446757157 +6157,66665,pregnancy,1446757176 +6157,66665,quirky,1446757147 +6157,66665,road trip,1446757162 +6157,66665,searching,1446757178 +6157,66665,slow,1446757192 +6157,66665,soundtrack,1446757175 +6157,66665,sweet,1446757188 +6157,66665,witty,1446757160 +6157,68237,artificial intelligence,1449736920 +6157,68237,atmospheric,1449736997 +6157,68237,claustrophobic,1449736983 +6157,68237,clones,1449736947 +6157,68237,cloning,1449736934 +6157,68237,dark,1449736987 +6157,68237,death,1449736954 +6157,68237,depressing,1449736966 +6157,68237,dialogue driven,1449736958 +6157,68237,drama,1449736969 +6157,68237,Duncan Jones,1449736981 +6157,68237,dystopia,1449736921 +6157,68237,future,1449736939 +6157,68237,great soundtrack,1449736943 +6157,68237,hallucination,1449736962 +6157,68237,interesting,1449736970 +6157,68237,isolation,1449736930 +6157,68237,Kevin Spacey,1449736928 +6157,68237,melancholy,1449736941 +6157,68237,moon,1449736932 +6157,68237,plot twist,1449736935 +6157,68237,psychological,1449736949 +6157,68237,psychology,1449736917 +6157,68237,robot,1449736977 +6157,68237,Sam Rockwell,1449736927 +6157,68237,Sci-fi,1449736913 +6157,68237,science,1449736956 +6157,68237,science fiction,1449736979 +6157,68237,slow paced,1449736960 +6157,68237,solitude,1449736925 +6157,68237,space,1449736916 +6157,68237,technology,1449736945 +6157,68237,thought-provoking,1449736938 +6157,68237,twist ending,1449736923 +6157,68952,tongue-in-cheek,1445103925 +6157,69757,artistic,1446412734 +6157,69757,bittersweet,1446412745 +6157,69757,cute,1446412753 +6157,69757,cynicism,1446412770 +6157,69757,Funny,1446412750 +6157,69757,great soundtrack,1446412761 +6157,69757,humor,1446412743 +6157,69757,humorous,1446412752 +6157,69757,intelligent,1446412767 +6157,69757,Joseph Gordon-Levitt,1446412727 +6157,69757,music,1446412747 +6157,69757,no happy ending,1446412758 +6157,69757,nonlinear,1446412741 +6157,69757,quirky,1446412732 +6157,69757,relationships,1446412766 +6157,69757,romance,1446412738 +6157,69757,stylized,1446412749 +6157,69757,Zooey Deschanel,1446412730 +6157,71205,Amanda Seyfried,1445187655 +6157,71205,funny,1445187662 +6157,71205,lesbian subtext,1445187633 +6157,71205,sexy,1445187641 +6157,71379,atmospheric,1444582951 +6157,71379,low budget,1444582945 +6157,71379,original,1444582989 +6157,71379,Realism,1444582971 +6157,71379,scary,1444582959 +6157,72489,Fun,1445187797 +6157,72489,poor plot,1445187786 +6157,72489,stylized violence,1445187773 +6157,72998,3d,1446831804 +6157,72998,aliens,1446831801 +6157,72998,beautiful,1446831870 +6157,72998,beautiful scenery,1446831809 +6157,72998,cgi,1446831826 +6157,72998,colonialism,1446831909 +6157,72998,ecology,1446831839 +6157,72998,effects,1446831891 +6157,72998,Entertaining,1446831948 +6157,72998,environmental,1446831819 +6157,72998,fantasy,1446831901 +6157,72998,futuristic,1446831799 +6157,72998,graphic design,1446831806 +6157,72998,imdb top 250,1446831886 +6157,72998,immersive,1446831920 +6157,72998,James Cameron,1446831817 +6157,72998,long,1446831864 +6157,72998,military,1446831815 +6157,72998,music,1446831866 +6157,72998,nature,1446831918 +6157,72998,predictable,1446831811 +6157,72998,race issues,1446831898 +6157,72998,racism,1446831832 +6157,72998,revolution,1446831868 +6157,72998,romance,1446831834 +6157,72998,scenic,1446831872 +6157,72998,sci-fi,1446831797 +6157,72998,science fiction,1446831859 +6157,72998,Sigourney Weaver,1446831821 +6157,72998,special effects,1446831857 +6157,72998,stunning,1446831905 +6157,72998,thought-provoking,1446831850 +6157,72998,visual,1446831828 +6157,72998,visually stunning,1446831813 +6157,72998,visuals,1446831879 +6157,72998,war,1446831824 +6157,74458,acting,1446832030 +6157,74458,asylum,1446831986 +6157,74458,atmospheric,1446831980 +6157,74458,Ben Kingsley,1446831992 +6157,74458,cinematography,1446832006 +6157,74458,ending twist,1446831982 +6157,74458,insanity,1446831973 +6157,74458,intense,1446831998 +6157,74458,Leonardo DiCaprio,1446831971 +6157,74458,Mark Ruffalo,1446832001 +6157,74458,Martin Scorsese,1446831978 +6157,74458,Max von Sydow,1446832032 +6157,74458,Mental Institution,1446832003 +6157,74458,Michelle Williams,1446832018 +6157,74458,mindfuck,1446831984 +6157,74458,mystery,1446831975 +6157,74458,plot twist,1446831977 +6157,74458,Predictable,1446832009 +6157,74458,psychological,1446831968 +6157,74458,Psychological Thriller,1446831994 +6157,74458,story,1446832014 +6157,74458,stylized,1446831996 +6157,74458,surreal,1446831999 +6157,74458,thought-provoking,1446831990 +6157,74458,twist ending,1446831969 +6157,74458,twisted ending,1446831988 +6157,74458,World War II,1446832019 +6157,75345,Cecilia Cheung,1450085734 +6157,75345,Character evolution,1450085707 +6157,75345,Choi Min-Sik,1450085724 +6157,75345,Drama,1450085777 +6157,75345,Emotional,1450085692 +6157,75345,korean,1450085684 +6157,75345,Melancholic,1450085748 +6157,78039,depressing,1446412278 +6157,78039,emotional,1446412432 +6157,78039,Graphic sex,1446412422 +6157,78039,great performances,1446412309 +6157,78039,Michelle Williams,1446412436 +6157,78039,open ending,1446412429 +6157,78039,painful,1446412274 +6157,78039,realism,1446412258 +6157,78039,Ryan Gosling,1446412434 +6157,78039,slow moving plot,1446412445 +6157,78039,true to life,1446412267 +6157,78039,unlikeable characters,1446412287 +6157,79357,confusing,1446310565 +6157,79357,style over substance,1446310578 +6157,79702,Anna Kendrick,1446832123 +6157,79702,artistic,1446832094 +6157,79702,awesome soundtrack,1446832083 +6157,79702,based on a comic,1446832057 +6157,79702,comedy,1446832091 +6157,79702,comic book,1446832113 +6157,79702,crude humor,1446832089 +6157,79702,cultural references,1446832055 +6157,79702,cute,1446832071 +6157,79702,Edgar Wright,1446832073 +6157,79702,fantasy,1446832066 +6157,79702,fast-paced,1446832069 +6157,79702,fight scenes,1446832051 +6157,79702,funny,1446832053 +6157,79702,Gay,1446832114 +6157,79702,geek,1446832093 +6157,79702,geeks,1446832075 +6157,79702,geeky,1446832061 +6157,79702,great sound,1446832106 +6157,79702,hilarious,1446832085 +6157,79702,hipsters,1446832087 +6157,79702,innovative,1446832102 +6157,79702,Jason Schwartzman,1446832097 +6157,79702,Kieran Culkin,1446832068 +6157,79702,Magical realism,1446832138 +6157,79702,Mary Elizabeth Winstead,1446832077 +6157,79702,Michael Cera,1446832080 +6157,79702,music,1446832062 +6157,79702,quirky,1446832049 +6157,79702,soundtrack,1446832103 +6157,79702,stylized,1446832043 +6157,79702,surreal,1446832059 +6157,79702,video games,1446832044 +6157,79702,videogame like,1446832116 +6157,79702,visually appealing,1446832046 +6157,79702,whimsical,1446832064 +6157,80917,aliens,1446831364 +6157,80917,atmospheric,1446831394 +6157,80917,creative,1444583481 +6157,80917,Excellent characterization,1446831403 +6157,80917,Gareth Edwards,1446831382 +6157,80917,Low Budget,1446831384 +6157,80917,mexico,1446831368 +6157,80917,no action,1446831378 +6157,80917,original,1444583499 +6157,80917,realism,1444583479 +6157,80917,romance,1446831367 +6157,80917,sci-fi,1446831380 +6157,80917,science fiction,1446831365 +6157,80917,social commentary,1444583483 +6157,80917,spanish dialogue,1446831386 +6157,81182,Dark,1448821750 +6157,81182,Disturbing,1448821779 +6157,81182,Great plot,1448821784 +6157,81182,Kim Hyeong-Joon,1448821742 +6157,81182,Korean,1448821769 +6157,81182,revenge,1448821762 +6157,81182,thriller,1448821754 +6157,81182,twist ending,1448821791 +6157,81591,atmospheric,1445795923 +6157,81591,ballet,1446413489 +6157,81591,Cinematography,1446413533 +6157,81591,creepy,1446413501 +6157,81591,dance,1445795927 +6157,81591,dark,1444219811 +6157,81591,Darren Aronofsky,1444219809 +6157,81591,disturbing,1445795902 +6157,81591,drama,1446413524 +6157,81591,emotional,1446413627 +6157,81591,erotic,1446413632 +6157,81591,lesbians,1446413609 +6157,81591,mental illness,1446413508 +6157,81591,Mila Kunis,1446413497 +6157,81591,music,1444219822 +6157,81591,Natalie Portman,1444219805 +6157,81591,obsession,1446413516 +6157,81591,Oscar (Best Actress),1445795919 +6157,81591,Oscar Nominee: Best Picture,1446413571 +6157,81591,Oscar Nominee: Cinematography,1446413568 +6157,81591,Oscar Nominee: Director,1446413540 +6157,81591,psychological,1446413488 +6157,81591,repressed sexuality,1445795899 +6157,81591,sex,1446413617 +6157,81591,Soundtrack,1446413549 +6157,81591,stylized,1445795913 +6157,81591,surreal,1446413495 +6157,81591,thriller,1446413509 +6157,81591,Vincent Cassel,1446413526 +6157,81591,visceral,1444219830 +6157,81591,Winona Ryder,1446413520 +6157,81845,based on a true story,1446572167 +6157,81845,Beautiful,1446572260 +6157,81845,cinematography,1444582390 +6157,81845,Colin Firth,1444582380 +6157,81845,complex characters,1446572169 +6157,81845,disability,1446572178 +6157,81845,drama,1446572175 +6157,81845,emotional,1446572191 +6157,81845,England,1446572177 +6157,81845,excellent script,1446572180 +6157,81845,feel-good,1444582383 +6157,81845,friendship,1446572182 +6157,81845,great performances,1444582385 +6157,81845,Helena Bonham Carter,1446572187 +6157,81845,historical,1446572171 +6157,81845,inspirational,1446572209 +6157,81845,Oscar (Best Picture),1444582378 +6157,81845,true story,1446572184 +6157,82667,Brilliant,1447004601 +6157,82667,byung-hun Lee,1447004566 +6157,82667,crazy,1447004557 +6157,82667,disturbing,1447004558 +6157,82667,gore,1447004570 +6157,82667,Great villain,1447004618 +6157,82667,Ji-woon Kim,1447004573 +6157,82667,Korea,1447004563 +6157,82667,Min-sik Choi,1447004577 +6157,82667,murder,1447004560 +6157,82667,Original plot,1447004625 +6157,82667,revenge,1447004550 +6157,82667,serial killer,1447004553 +6157,82667,suspense,1447004561 +6157,82667,torture,1447004552 +6157,82667,visually appealing,1447004555 +6157,84116,Dark,1444219300 +6157,84116,Korean,1444219292 +6157,84716,comedy,1447004646 +6157,84716,Cute,1447004659 +6157,84716,Great idea,1447004692 +6157,84716,isolation,1447004641 +6157,84716,Korea,1447004647 +6157,84716,Korean,1444583464 +6157,84716,Original,1447004685 +6157,84716,Philosophical,1447004666 +6157,84716,Quirky,1447004654 +6157,84716,surreal,1444583462 +6157,84716,survival,1447004642 +6157,84716,Weird,1447004670 +6157,85179,anime,1447004701 +6157,85179,Beautiful drawings,1447004743 +6157,85179,computers,1447004709 +6157,85179,Cute,1447004756 +6157,85179,family,1447004712 +6157,85179,Feel-good,1447004751 +6157,85179,Funny,1447004761 +6157,85179,geeky,1447004724 +6157,85179,Great animation,1447004735 +6157,85179,hacking,1447004707 +6157,85179,Japanese,1447004705 +6157,85179,Mamoru Hosoda,1447004714 +6157,85179,soundtrack,1447004717 +6157,85179,virtual reality,1447004703 +6157,86190,action,1446849212 +6157,86190,assassin,1446849201 +6157,86190,beautiful cinematography,1446849194 +6157,86190,Cate Blanchett,1446849196 +6157,86190,character development,1446849224 +6157,86190,Cinematography,1446849210 +6157,86190,Germany,1446849203 +6157,86190,great soundtrack,1446849205 +6157,86190,Saoirse Ronan,1446849207 +6157,86190,Surprising,1446849290 +6157,86190,thriller,1446849232 +6157,86190,Unlikely character,1446849282 +6157,86882,Adrien Brody,1446412818 +6157,86882,bittersweet,1446412792 +6157,86882,cinematography,1446412811 +6157,86882,dialogue,1446412801 +6157,86882,magical realism,1446412798 +6157,86882,nostalgic,1446412814 +6157,86882,Paris,1446412783 +6157,86882,philosophical,1446412794 +6157,86882,quirky,1446412785 +6157,86882,romance,1446412787 +6157,86882,whimsical,1446412789 +6157,86882,witty,1446412796 +6157,86882,Woody Allen,1446412780 +6157,89745,Another Marvel Movie,1444219165 +6157,89745,overrated,1444219150 +6157,89745,Scarlett Johansson,1444219140 +6157,89753,atmosphere,1446309912 +6157,89753,Beautifully shot,1446309908 +6157,89753,espionage,1446309903 +6157,89753,Spies,1446309906 +6157,90374,Disturbing,1444581826 +6157,93721,craftmanship,1444580509 +6157,93721,culinary,1447004807 +6157,93721,David Gelb,1447004808 +6157,93721,documentary,1447004788 +6157,93721,food,1444580511 +6157,93721,inspirational,1447004801 +6157,93721,Japan,1444580517 +6157,93721,minimalist,1444580514 +6157,93721,sushi,1447004789 +6157,93721,Tokyo,1447004791 +6157,94959,Bill Murray,1447004835 +6157,94959,bittersweet,1447004845 +6157,94959,boy scouts,1447004863 +6157,94959,Bruce Willis,1447004843 +6157,94959,cinematography,1447004840 +6157,94959,comedy,1447004952 +6157,94959,coming of age,1447004837 +6157,94959,cute,1447004949 +6157,94959,delightful,1447004947 +6157,94959,dialogue,1447004852 +6157,94959,diverse cast,1447004880 +6157,94959,dreamlike,1447004854 +6157,94959,Edward Norton,1447004842 +6157,94959,fantasy,1447004861 +6157,94959,feel-good,1447004941 +6157,94959,fun,1447004893 +6157,94959,funny,1447004855 +6157,94959,Harvey Keitel,1447004876 +6157,94959,island,1447004866 +6157,94959,Jason Schwartzman,1447004872 +6157,94959,Kara Hayward,1447004895 +6157,94959,love story,1447004848 +6157,94959,New England,1447004897 +6157,94959,original,1447004847 +6157,94959,orphans,1447004870 +6157,94959,quirky,1447004830 +6157,94959,retro,1447004933 +6157,94959,romance,1447004890 +6157,94959,romantic,1447004891 +6157,94959,scouting,1447004864 +6157,94959,small town,1447004869 +6157,94959,Smart,1447004929 +6157,94959,solid comedy,1447004928 +6157,94959,story,1447004924 +6157,94959,stylized,1447004833 +6157,94959,surreal,1447004838 +6157,94959,sympathetic characters,1447004874 +6157,94959,Tilda Swinton,1447004922 +6157,94959,Wes Anderson,1447004832 +6157,94959,wilderness,1447004857 +6157,95088,A little stupid but funny,1449868807 +6157,95088,aubrey plaza,1449868730 +6157,95088,charming,1449868768 +6157,95088,Colin Trevorrow,1449868811 +6157,95088,feel good,1449868736 +6157,95088,funny,1449868751 +6157,95088,heartwarming,1449868760 +6157,95088,Jake Johnson,1449868758 +6157,95088,journalism,1449868746 +6157,95088,loose ends,1449868764 +6157,95088,magical realism,1449868772 +6157,95088,misfits,1449868749 +6157,95088,odd sense of humor,1449868819 +6157,95088,quirky,1449868774 +6157,95088,soundtrack,1449868754 +6157,95088,Strange,1449868789 +6157,95088,time travel,1449868740 +6157,95088,touching,1449868744 +6157,95088,Understated charm,1449868734 +6157,95510,Emma Stone,1444219110 +6157,95510,Overrated,1444219127 +6157,96829,child abuse,1447005006 +6157,96829,cinematography,1447005023 +6157,96829,Danish,1447004985 +6157,96829,Disturbing,1444581366 +6157,96829,drama,1447005024 +6157,96829,excellent acting,1447005027 +6157,96829,falsely accused,1447004973 +6157,96829,hard to watch,1444581346 +6157,96829,imdb top 250,1447005031 +6157,96829,intelligent,1447005033 +6157,96829,intense,1447005035 +6157,96829,Mads Mikkelsen,1447004971 +6157,96829,mystery,1447004997 +6157,96829,oscar nominated,1447005040 +6157,96829,painful to watch,1444581344 +6157,96829,pedophilia,1447004981 +6157,96829,ruined lives,1447004990 +6157,96829,sexual abuse,1447005004 +6157,96829,social rejection,1447004980 +6157,96829,strong theme,1447005046 +6157,96829,suspense,1447005048 +6157,96829,Thomas Vinterberg,1447004983 +6157,98361,cinematography,1447580239 +6157,98361,dark,1447580246 +6157,98361,original,1447580269 +6157,98361,treatment,1447580275 +6157,98361,vampire,1447580251 +6157,98361,vampires,1447580238 +6157,98809,adapted from:book,1447005088 +6157,98809,adventure,1447005060 +6157,98809,author:J. R. R. Tolkein,1447005086 +6157,98809,based on a book,1447005073 +6157,98809,beautiful scenery,1447005062 +6157,98809,big budget,1447005075 +6157,98809,CGI,1447005082 +6157,98809,epic,1447005077 +6157,98809,fantasy,1447005066 +6157,98809,fantasy world,1447005064 +6157,98809,franchise,1447005096 +6157,98809,Ian McKellen,1447005103 +6157,98809,magic,1447005069 +6157,98809,Martin Freeman,1447005100 +6157,98809,middle earth,1447005090 +6157,98809,music,1447005115 +6157,98809,New Zealand,1447005080 +6157,98809,orcs,1447005094 +6157,98809,Peter Jackson,1447005071 +6157,98809,soundtrack,1447005106 +6157,98809,storytelling,1447005084 +6157,98809,Tolkien,1447005067 +6157,100714,atmospheric,1446412548 +6157,100714,beautiful,1446412530 +6157,100714,cinematography,1446412545 +6157,100714,honest,1446412526 +6157,100714,philosophical,1446412528 +6157,100714,Richard Linklater,1446412512 +6157,100714,romance,1446412541 +6157,100714,unique,1446412538 +6157,102792,emotional,1444219307 +6157,102792,Extreme emotion,1444219329 +6157,102792,music,1444219309 +6157,103235,artistic,1445811206 +6157,103235,beautifully tragic,1445811190 +6157,103235,cinematography,1447005136 +6157,103235,compelling,1445811183 +6157,103235,Geoffrey Rush,1447005135 +6157,103235,Predictible,1445811221 +6157,103235,Sad ending,1445811239 +6157,103235,story,1447005133 +6157,103235,twist ending,1447005132 +6157,103849,Action,1448804215 +6157,103849,Character evolution,1448804199 +6157,103849,dark,1448804267 +6157,103849,Hoon-jung Park,1448804123 +6157,103849,intense,1448804337 +6157,103849,Korean,1448804112 +6157,103849,Min-sik Choi,1448804137 +6157,103849,organized crime,1448804114 +6157,103849,original,1448804314 +6157,103849,power struggle,1448804118 +6157,103849,South Korea,1448804120 +6157,103849,stylized,1448804390 +6157,103849,Suspense,1448804143 +6157,103849,Tense,1448804189 +6157,103849,thriller,1448804286 +6157,103849,twist ending,1448804297 +6157,103849,violent,1448804121 +6157,103980,acting,1446412336 +6157,103980,Best actress academy award,1446412396 +6157,103980,depressing,1446412341 +6157,103980,writing,1446412343 +6157,104283,anime,1447068809 +6157,104283,Biopic,1447068868 +6157,104283,dreams,1447068814 +6157,104283,Great animation,1447068846 +6157,104283,Hayao Miyazaki,1447068817 +6157,104283,Japan,1447068828 +6157,104283,romance,1447068819 +6157,104283,Special,1447068852 +6157,104283,Studio Ghibli,1447068816 +6157,104841,acting,1447068944 +6157,104841,atmospheric,1447068921 +6157,104841,beautiful,1447068908 +6157,104841,cgi,1447068912 +6157,104841,cinematography,1447068888 +6157,104841,George Clooney,1447068910 +6157,104841,intense,1447068890 +6157,104841,isolation,1447068918 +6157,104841,long shots,1447068964 +6157,104841,physics,1447068897 +6157,104841,sandra bullock,1447068893 +6157,104841,sci-fi,1447068901 +6157,104841,score,1447068923 +6157,104841,Simple,1447068951 +6157,104841,slow action,1447068968 +6157,104841,space,1447068915 +6157,104841,suspense,1447068895 +6157,104841,visually appealing,1447068886 +6157,104841,visually stunning,1447068899 +6157,106487,Overrated,1444220128 +6157,106489,action,1447069049 +6157,106489,adapted from:book,1447069024 +6157,106489,adventure,1447069000 +6157,106489,author:J. R. R. Tolkein,1447069015 +6157,106489,based on a book,1447069007 +6157,106489,benedict cumberbatch,1447069042 +6157,106489,double frame rate,1447069022 +6157,106489,dragon,1447069005 +6157,106489,dragons,1447069028 +6157,106489,epic,1447069017 +6157,106489,Evangeline Lilly,1447069039 +6157,106489,fantasy,1447069002 +6157,106489,franchise,1447069047 +6157,106489,hobbit,1447069020 +6157,106489,Ian McKellen,1447069066 +6157,106489,Lord of the Rings,1447069079 +6157,106489,Martin Freeman,1447069026 +6157,106489,not true to the book,1447069011 +6157,106489,Orlando Bloom,1447069057 +6157,106489,Peter Jackson,1447069013 +6157,106489,Stephen Fry,1447069040 +6157,106489,Tolkien,1447069009 +6157,106782,Amoral,1447069121 +6157,106782,Anti-Hero,1447069108 +6157,106782,Astounding,1447069164 +6157,106782,based on a book,1447069125 +6157,106782,based on a true story,1447069103 +6157,106782,Dark,1447069175 +6157,106782,Darkly Funny,1447069169 +6157,106782,drugs,1447069091 +6157,106782,economics,1447069136 +6157,106782,Funny,1447069101 +6157,106782,Great acting,1447069214 +6157,106782,great soundtrack,1447069264 +6157,106782,greed,1447069119 +6157,106782,imdb top 250,1447069258 +6157,106782,inaccurate,1447069148 +6157,106782,intense,1447069138 +6157,106782,Jean Dujardin,1447069184 +6157,106782,Joanna Lumley,1447069229 +6157,106782,Jonah Hill,1447069134 +6157,106782,Kyle Chandler,1447069203 +6157,106782,Leonardo DiCaprio,1447069088 +6157,106782,long,1447069141 +6157,106782,Margot Robbie,1447069151 +6157,106782,Martin Scorsese,1447069089 +6157,106782,Matthew McConaughey,1447069144 +6157,106782,Nudity (Full Frontal),1447069094 +6157,106782,Nudity (Topless),1447069115 +6157,106782,Oscar,1447069206 +6157,106782,Oscar nominations,1447069224 +6157,106782,prostitution,1447069109 +6157,106782,provocative,1447069248 +6157,106782,sex scenes,1447069234 +6157,106782,shocking,1447069236 +6157,106782,Stock Market,1447069112 +6157,106782,thought-provoking,1447069192 +6157,106782,true story,1447069114 +6157,106782,unlikeable characters,1447069161 +6157,106782,visually appealing,1447069117 +6157,106782,Wall Street,1447069105 +6157,106889,Bragging,1447783651 +6157,106889,documentary,1447783593 +6157,106889,Ingenious,1447783670 +6157,106889,Interesting,1447783595 +6157,106889,Painting,1447783607 +6157,106889,Pretentious,1447783646 +6157,106889,technology,1447783665 +6157,106889,"Too much Tim, too little Vermeer",1447783687 +6157,106889,Vermeer,1447783603 +6157,106920,artificial intelligence,1444219854 +6157,106920,beautiful,1444219877 +6157,106920,bittersweet,1444219856 +6157,106920,Character evolution,1444219893 +6157,106920,intelligent,1445795984 +6157,106920,joaquin phoenix,1444219859 +6157,106920,loneliness,1446412971 +6157,106920,love,1445796009 +6157,106920,meaning of life,1444219874 +6157,106920,original,1444219879 +6157,106920,original plot,1444219872 +6157,106920,philosophical,1446412959 +6157,106920,psychology,1446412957 +6157,106920,quirky,1445795972 +6157,106920,romance,1446412977 +6157,106920,Scarlett Johansson,1445795963 +6157,106920,sci-fi,1445795967 +6157,106920,Spike Jonze,1445795978 +6157,106920,thought-provoking,1446412955 +6157,106920,touching,1445795986 +6157,106920,transhumanism,1446412973 +6157,107883,Cute,1444219355 +6157,107883,Feel good movie,1444219350 +6157,107978,Japanese,1444219283 +6157,107978,Slice of life,1444219265 +6157,108979,animation,1447069283 +6157,108979,anime,1447069272 +6157,108979,Beautiful,1447069326 +6157,108979,cinematography,1447069285 +6157,108979,Complex characters,1447069313 +6157,108979,cool style,1447069286 +6157,108979,Cult,1447069332 +6157,108979,Ending,1447069358 +6157,108979,future,1447069291 +6157,108979,good music,1447069288 +6157,108979,Great characters,1447069305 +6157,108979,Great music,1447069298 +6157,108979,Great plot,1447069321 +6157,108979,sci-fi,1447069290 +6157,108979,space western,1447069278 +6157,108979,Yoko Kanno,1447069275 +6157,109374,2015 Academy Award Nomination BEST PICTURE,1447069458 +6157,109374,Academy Award Nominee,1447069456 +6157,109374,Adrien Brody,1447069463 +6157,109374,Alexandre Desplat,1447069452 +6157,109374,amazing storytelling,1447069411 +6157,109374,Bill Murray,1447069419 +6157,109374,cast,1447069415 +6157,109374,cinematography,1447069381 +6157,109374,colourful sets,1447069420 +6157,109374,eastern europe,1447069394 +6157,109374,Edward Norton,1447069395 +6157,109374,ensemble cast,1447069449 +6157,109374,europe,1447069399 +6157,109374,F. Murray Abraham,1447069441 +6157,109374,fantasy,1447069443 +6157,109374,funny,1447069387 +6157,109374,great dialogue,1447069389 +6157,109374,Harvey Keitel,1447069445 +6157,109374,Hilarious,1447069413 +6157,109374,hotel,1447069397 +6157,109374,imdb top 250,1447069465 +6157,109374,Jeff Goldblum,1447069405 +6157,109374,murder,1447069435 +6157,109374,odd sense of humor,1447069401 +6157,109374,Owen Wilson,1447069460 +6157,109374,quirky,1447069383 +6157,109374,Ralph Fiennes,1447069392 +6157,109374,Saoirse Ronan,1447069424 +6157,109374,stylized,1447069386 +6157,109374,Tilda Swinton,1447069447 +6157,109374,visually appealing,1447069379 +6157,109374,war,1447069417 +6157,109374,Wes Anderson,1447069482 +6157,109374,whimsical,1447069390 +6157,109374,Willem Dafoe,1447069403 +6157,109487,ambitious,1447069628 +6157,109487,Anne Hathaway,1447069601 +6157,109487,artificial intelligence,1447069597 +6157,109487,atmosphere,1447069649 +6157,109487,black hole,1447069608 +6157,109487,Christopher Nolan,1447069575 +6157,109487,end of the world,1447069684 +6157,109487,epic,1447069633 +6157,109487,good science,1447069590 +6157,109487,good science bad science,1447069644 +6157,109487,Hans Zimmer,1447069617 +6157,109487,interesting ideea,1447069630 +6157,109487,Jessica Chastain,1447069686 +6157,109487,long,1447069651 +6157,109487,Mackenzie Foy,1447069676 +6157,109487,Matthew McConaughey,1447069587 +6157,109487,Michael Caine,1447069619 +6157,109487,Oscar (Best Effects - Visual Effects),1447069701 +6157,109487,Oscar Nominee: Music - Original Score,1447069706 +6157,109487,Oscar Nominee: Production Design,1447069704 +6157,109487,Oscar Nominee: Sound Editing,1447069708 +6157,109487,Oscar Nominee: Sound Mixing,1447069699 +6157,109487,philosophical issues,1447069603 +6157,109487,physics,1447069585 +6157,109487,plot holes,1447069613 +6157,109487,relativity,1447069580 +6157,109487,sci-fi,1447069572 +6157,109487,science fiction,1447069599 +6157,109487,sentimental,1447069605 +6157,109487,sounds,1447069614 +6157,109487,space,1447069571 +6157,109487,space travel,1447069610 +6157,109487,spectacle,1447069653 +6157,109487,spectacular CG,1447069721 +6157,109487,suspense,1447069663 +6157,109487,thought-provoking,1447069581 +6157,109487,time paradox,1447069669 +6157,109487,time travel,1447069583 +6157,109487,time-travel,1447069578 +6157,109487,twist ending,1447069637 +6157,109487,visually appealing,1447069631 +6157,109487,wormhole,1447069593 +6157,109848,dark,1444321328 +6157,109848,Scarlett Johansson,1444321319 +6157,112183,2015 Academy Award Nomination BEST ACTOR,1447069860 +6157,112183,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1447069859 +6157,112183,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1447069856 +6157,112183,2015 Academy Award Nomination BEST PICTURE,1447069857 +6157,112183,Academy Award Nominee,1447069815 +6157,112183,actors,1447069807 +6157,112183,Alejandro González Iñárritu,1447069803 +6157,112183,alter ego,1447069797 +6157,112183,Artsy,1447069888 +6157,112183,Broadway,1447069762 +6157,112183,cinematography,1447069772 +6157,112183,compelling,1447069843 +6157,112183,Crazy,1447069800 +6157,112183,dark,1447069753 +6157,112183,drama,1447069868 +6157,112183,drums,1447069872 +6157,112183,Edward Norton,1447069746 +6157,112183,emma stone,1447069799 +6157,112183,great performances,1447069743 +6157,112183,magical realism,1447069748 +6157,112183,Michael Keaton,1447069759 +6157,112183,movie business,1447069794 +6157,112183,music,1447069818 +6157,112183,non-closed ending,1447069833 +6157,112183,one shot,1447069805 +6157,112183,oscar (best picture),1447069876 +6157,112183,photography,1447069847 +6157,112183,psychological,1447069755 +6157,112183,satire,1447069752 +6157,112183,single shot,1447069744 +6157,112183,smart,1447069769 +6157,112183,surreal,1447069763 +6157,112183,theater,1447069757 +6157,112183,Zach Galifianakis,1447069820 +6157,112290,12 years in the making,1447096174 +6157,112290,Ambitious,1447096176 +6157,112290,cerebral,1447096198 +6157,112290,coming of age,1447096179 +6157,112290,Ethan Hawke,1447096173 +6157,112290,Genius,1447096232 +6157,112290,great dialogue,1447096209 +6157,112290,Great idea,1447096244 +6157,112290,growing up,1447096171 +6157,112290,life,1447096205 +6157,112290,Lorelei Linklater,1447096191 +6157,112290,Original,1447096227 +6157,112290,Partricia Arquette,1447096181 +6157,112290,quietly beautiful,1447096215 +6157,112290,realism,1447096170 +6157,112290,Richard Linklater,1447096178 +6157,112515,atmospheric,1445166915 +6157,112515,dark,1445166862 +6157,112515,Grief,1445166894 +6157,112515,Metaphorical,1445166867 +6157,112515,psychological,1445166855 +6157,112515,The Shining meets Home Alone,1445166909 +6157,112552,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1447240842 +6157,112552,2015 Academy Award Nomination BEST PICTURE,1447240843 +6157,112552,Academy Award Nominee,1447240807 +6157,112552,Beautiful shots,1447240953 +6157,112552,Cinematography,1447240944 +6157,112552,Damien Chazelle,1447240813 +6157,112552,dark,1447240865 +6157,112552,drama,1447240792 +6157,112552,drum,1447240830 +6157,112552,drummer,1447240814 +6157,112552,drums,1447240811 +6157,112552,education,1447240799 +6157,112552,good acting,1447240797 +6157,112552,good music,1447240816 +6157,112552,Great acting,1447240881 +6157,112552,Great music,1447240892 +6157,112552,great soundtrack,1447240932 +6157,112552,greatness,1447240822 +6157,112552,inspirational,1447240827 +6157,112552,inspiring,1447240832 +6157,112552,intense,1447240790 +6157,112552,J.K. Simmons,1447240796 +6157,112552,jazz,1447240784 +6157,112552,jazz music,1447240801 +6157,112552,Miles Teller,1447240809 +6157,112552,motivation,1447240803 +6157,112552,music,1447240905 +6157,112552,musicians,1447240788 +6157,112552,perfectionism,1447240824 +6157,112552,psychological,1447240794 +6157,112552,school drama,1447240825 +6157,112552,Soundtrack,1447240926 +6157,112552,teacher,1447240834 +6157,112552,Teacher Student,1447240805 +6157,112552,Tense,1447240787 +6157,114180,Disappointing ending,1444220164 +6157,114180,Entertaining,1444220171 +6157,114180,plot holes,1444220143 +6157,115122,dark comedy,1445795786 +6157,115122,humor,1445795788 +6157,115122,mockumentary,1445795782 +6157,115122,Silly,1445795798 +6157,115122,vampires,1445795784 +6157,115569,dark,1444247065 +6157,115569,Disturbing,1444247050 +6157,115713,AI,1447240973 +6157,115713,artificial intelligence,1444166867 +6157,115713,bitter,1447241045 +6157,115713,cerebral,1447241062 +6157,115713,claustrophobic,1447241091 +6157,115713,consciousness,1447240996 +6157,115713,Contemplative,1447241000 +6157,115713,cybernetics,1447241002 +6157,115713,Domhnall Gleeson,1447241058 +6157,115713,Drama,1447241010 +6157,115713,experiment,1447241036 +6157,115713,Future,1447240989 +6157,115713,futuristic,1447240977 +6157,115713,isolation,1447240998 +6157,115713,Manipulations,1447241008 +6157,115713,Nudity,1447241025 +6157,115713,Nudity (Full Frontal - Notable),1447241038 +6157,115713,nudity (full frontal),1447240985 +6157,115713,pessimistic,1447241022 +6157,115713,philosophical,1447240969 +6157,115713,plot twist,1447240983 +6157,115713,Psychological,1447240991 +6157,115713,Robot,1447241034 +6157,115713,robots,1447240971 +6157,115713,sad ending,1447241099 +6157,115713,sci-fi,1447240967 +6157,115713,Surreal,1447241005 +6157,115713,technology,1447240979 +6157,115713,Tense,1447241011 +6157,115713,thought provoking,1447240968 +6157,115713,thriller,1447240987 +6157,115713,turing test,1447240995 +6157,115713,visual effects,1447241019 +6157,116897,anger,1452008277 +6157,116897,anthology,1452008261 +6157,116897,argentina,1452008263 +6157,116897,black comedy,1452008264 +6157,116897,Damián Szifrón,1452008265 +6157,116897,dark comedy,1452008272 +6157,116897,dark humor,1452008256 +6157,116897,Excellent acting,1452008258 +6157,116897,ironic,1452008288 +6157,116897,murder,1452008300 +6157,116897,Ricardo Darín,1452008274 +6157,116897,violence,1452008260 +6157,117529,cliche,1446330137 +6157,117529,Commercial,1446330124 +6157,117529,franchise,1446330100 +6157,117529,jurassic park,1446330191 +6157,117529,Nonsense,1446330171 +6157,117529,stupid,1446330116 +6157,118880,Aesthetic,1446673513 +6157,118880,Ana Lily Amirpour,1446673403 +6157,118880,Antihero,1446673409 +6157,118880,Atmospheric,1446673442 +6157,118880,Beautiful,1446673453 +6157,118880,black and white,1446673399 +6157,118880,Emotions,1446673667 +6157,118880,Gorgeous,1446673646 +6157,118880,Iran,1446673405 +6157,118880,Mesmerising,1446673414 +6157,118880,Middle East,1446673407 +6157,118880,Music,1446673459 +6157,118880,Mystery,1446673469 +6157,118880,Original,1446673434 +6157,118880,quirky,1446673416 +6157,118880,Romance,1446673418 +6157,118880,spaghetti western,1446673410 +6157,118880,Unique,1446673484 +6157,118880,Vampire,1446673529 +6157,118880,vampires,1446673401 +6157,118880,Weird,1446673427 +6157,118896,Academy award,1447241290 +6157,118896,Academy award winner,1447241281 +6157,118896,Beautiful,1447241169 +6157,118896,Challenging,1447241334 +6157,118896,Dark,1444219256 +6157,118896,Depressing,1447241160 +6157,118896,Disturbing,1444219244 +6157,118896,Emotional,1447241316 +6157,118896,Great music,1447241149 +6157,118896,Oscar,1447241272 +6157,118896,Relationships,1447241198 +6157,118896,Sad,1447241153 +6157,118896,Soundtrack,1447241133 +6157,118896,Violence,1447241124 +6157,118896,Xavier Dolan,1447241116 +6157,122882,action,1447003772 +6157,122882,adventure,1447003787 +6157,122882,apocalyptic,1447003826 +6157,122882,beautiful,1447003834 +6157,122882,charlize theron,1447003783 +6157,122882,chase,1447003799 +6157,122882,Colourful apocalypse,1447003802 +6157,122882,desert,1447003781 +6157,122882,dystopian,1447003777 +6157,122882,feminism,1447003779 +6157,122882,feminist,1447003789 +6157,122882,great soundtrack,1447003807 +6157,122882,Intense,1447003850 +6157,122882,mad max,1447003817 +6157,122882,non-stop,1447003786 +6157,122882,post apocalypse,1447003774 +6157,122882,post apocalyptic,1447003791 +6157,122882,post-apocalyptic,1447003814 +6157,122882,scenic,1447003844 +6157,122882,sci-fi,1447003795 +6157,122882,special effects,1447003797 +6157,122882,Surprising,1447003866 +6157,122882,Tom Hardy,1447003811 +6157,122882,violence,1447003804 +6157,122882,visually appealing,1447003776 +6157,122886,Carrie Fisher,1450710238 +6157,122886,Daisy Ridley,1450710211 +6157,122886,Fan service,1450710274 +6157,122886,franchise,1450710218 +6157,122886,Harrison Ford,1450710210 +6157,122886,J.J. Abrams,1450710216 +6157,122886,Jedi Knight,1450710239 +6157,122886,John Boyega,1450710213 +6157,122886,Mark Hamill,1450710242 +6157,122886,Plagiarism,1450710266 +6157,122886,Plot Recycling,1450710227 +6157,122886,Star Wars,1450710208 +6157,122892,Action,1447674645 +6157,122892,artificial intelligence,1447674643 +6157,122892,Captain America,1447674673 +6157,122892,comic book,1447674646 +6157,122892,epic battle,1447674692 +6157,122892,franchise,1447674689 +6157,122892,good vs evil,1447674677 +6157,122892,Hulk,1447674648 +6157,122892,Joss Whedon,1447674651 +6157,122892,Marvel,1447674640 +6157,122892,marvel cinematic universe,1447674670 +6157,122892,non-stop action,1447674695 +6157,122892,sequel,1447674681 +6157,122892,silly,1447674666 +6157,122892,super hero,1447674679 +6157,122892,superhero,1447674642 +6157,122892,technology,1447674683 +6157,122892,The Avengers,1447674672 +6157,128620,Acting,1450003202 +6157,128620,Atmospheric,1450003700 +6157,128620,"believable, spontaneous acting",1450003147 +6157,128620,breathtaking,1450003146 +6157,128620,cinematography,1450003153 +6157,128620,Continuous shot,1450003149 +6157,128620,Emotional,1450003721 +6157,128620,German,1450003284 +6157,128620,Great acting,1450003365 +6157,128620,Great cinematography,1450003691 +6157,128620,Great music,1450003569 +6157,128620,Great soundtrack,1450003310 +6157,128620,Immersive,1450003222 +6157,128620,one shot,1450003282 +6157,128620,one take,1450003155 +6157,128620,Tension,1450003254 +6157,128620,Thriller,1450003217 +6157,128620,thrilling,1450003152 +6157,128620,visually appealing,1450003156 +6157,131433,Cheap action,1448874800 +6157,131433,"Good idea, not well exploited",1448874959 +6157,131433,Good ideas,1448874812 +6157,131433,Hotchpotch plot,1448874911 +6157,131433,Korean,1448874778 +6157,131433,Mix of genres,1448874847 +6157,131433,Plot twist,1448874826 +6157,131433,Shallow,1448874787 +6157,131433,Silly,1448874863 +6157,134204,action,1447362305 +6157,134204,Ambiguous character,1447362359 +6157,134204,Cops,1447362310 +6157,134204,Korean,1447362300 +6157,134204,murder,1447362319 +6157,134204,Thriller,1447362327 +6157,140769,Good surprise,1444219043 +6157,140769,Magical girl,1444218993 +6157,140769,Overrated,1444219050 +6157,144378,Basic,1449576810 +6157,144378,Drama,1449576830 +6157,144378,Flat,1449576946 +6157,144378,Korean,1449576788 +6157,144378,Linear,1449576956 +6157,144378,Mystery,1449576844 +6157,144378,Predictable,1449576898 +6157,144378,Sad ending,1449576953 +6157,144378,Thriller,1449576823 +6157,144378,True story,1449576799 +6157,146924,unusual,1447518740 +6157,146924,vampires,1447518734 +6173,5791,Biography,1449122458 +6173,5791,historical,1449122450 +6173,44191,strong female character,1448244297 +6173,60950,Javier Bardem,1449122489 +6173,60950,Penelope Cruz,1449122494 +6173,60950,sexy,1449122531 +6173,60950,Woody Allen,1449122498 +6173,79702,based on a comic,1449122641 +6173,79702,funny,1449122625 +6173,79702,Michael Cera,1449122627 +6173,79702,quirky,1449122622 +6173,79702,stylized,1449122620 +6173,79702,visually appealing,1449122631 +6173,103228,Guillermo del Toro,1448243962 +6173,103228,strong female lead,1448243836 +6173,117529,weak female character,1448244166 +6173,127202,self-obsessed teenage boy,1449122183 +6182,19,detective,1368555592 +6182,22,detective,1368555592 +6182,22,suspenseful,1368555102 +6182,25,melancholic,1368553864 +6182,39,teen movie,1368555061 +6182,46,women,1368554963 +6182,47,great ending,1368555377 +6182,50,excellent script,1368554783 +6182,111,masterpiece,1368554674 +6182,218,unlikely friendships,1368555549 +6182,218,women,1368554963 +6182,288,brutality,1368555199 +6182,296,classic,1420092411 +6182,296,masterpiece,1368554674 +6182,296,pulp,1420092411 +6182,296,tarantino,1420092411 +6182,318,great ending,1368555377 +6182,549,musicians,1368555025 +6182,587,supernatural,1368554733 +6182,593,excellent script,1368554783 +6182,724,teen movie,1368555061 +6182,735,splatter,1368554944 +6182,799,supernatural,1368554733 +6182,898,screwball comedy,1368555646 +6182,904,suspenseful,1368555102 +6182,905,screwball comedy,1368555646 +6182,910,screwball comedy,1368555646 +6182,913,noir thriller,1368554557 +6182,923,masterpiece,1368554674 +6182,924,masterpiece,1368554674 +6182,1033,unlikely friendships,1368555549 +6182,1088,dancing,1368555307 +6182,1172,mentor,1368554639 +6182,1188,dancing,1368555307 +6182,1210,great ending,1368555377 +6182,1213,masterpiece,1368554674 +6182,1213,stylish,1368554856 +6182,1219,suspenseful,1368555102 +6182,1241,splatter,1368554944 +6182,1243,confusing,1368685059 +6182,1245,neo-noir,1368555280 +6182,1248,noir thriller,1368554557 +6182,1249,stylish,1368554857 +6182,1258,masterpiece,1368554675 +6182,1264,stylish,1368554857 +6182,1271,unlikely friendships,1368555549 +6182,1285,teen movie,1368555061 +6182,1307,unlikely friendships,1368555549 +6182,1387,suspenseful,1368555102 +6182,1466,mentor,1368554640 +6182,1537,dancing,1368555307 +6182,1617,detective,1368555592 +6182,1617,neo-noir,1368555280 +6182,1620,detective,1368555592 +6182,1678,women,1368554963 +6182,1704,excellent script,1368554783 +6182,1704,mentor,1368554639 +6182,1754,supernatural,1368554733 +6182,1968,teen movie,1368555061 +6182,2076,neo-noir,1368555280 +6182,2144,teen movie,1368555061 +6182,2291,original,1368553383 +6182,2420,mentor,1368554639 +6182,2726,noir thriller,1368554557 +6182,2762,great ending,1368555377 +6182,2841,supernatural,1368554733 +6182,2859,musicians,1368555025 +6182,2863,musicians,1368555025 +6182,2866,musicians,1368555025 +6182,2915,teen movie,1368555061 +6182,3005,detective,1368555592 +6182,3067,screwball comedy,1368555646 +6182,3083,women,1368554963 +6182,3129,musicians,1368555025 +6182,3418,women,1368554963 +6182,3499,suspenseful,1368555102 +6182,3791,dancing,1368555307 +6182,4018,women,1368554963 +6182,4020,supernatural,1368554733 +6182,4054,dancing,1368555307 +6182,4085,detective,1368555592 +6182,4878,original,1368553383 +6182,5065,supernatural,1368554733 +6182,5266,suspenseful,1368555102 +6182,5693,dancing,1368555307 +6182,6707,splatter,1368554944 +6182,6731,splatter,1368554944 +6182,7013,noir thriller,1368554557 +6182,7153,great ending,1368555377 +6182,32587,brutality,1368555200 +6182,48304,brutality,1368555199 +6182,48394,brutality,1368555200 +6182,53123,musicians,1368555025 +6182,67734,idiotic characters,1350172455 +6182,72703,Zac Efron,1262225298 +6182,82173,self obsessed,1358134176 +6198,48516,Leonardo DiCaprio,1443299345 +6198,48516,Martin Scorsese,1443299357 +6198,48516,organized crime,1443299349 +6198,48516,undercover cop,1443299352 +6198,54286,conspiracy,1443299272 +6198,54286,espionage,1443299287 +6198,54286,Matt Damon,1443299261 +6198,109487,Christopher Nolan,1443299312 +6198,109487,relativity,1443299316 +6198,109487,space,1443299309 +6198,109487,thought-provoking,1443299319 +6199,3512,Romantic and sweet,1384713426 +6199,103372,bad script,1384713337 +6199,103372,Melissa McCarthy,1384713342 +6199,120240,Adoption,1433547760 +6199,120240,Mental illness,1433547787 +6215,4002,road movie,1428188230 +6215,4002,road trip,1428188158 +6215,65802,comedy,1428188246 +6249,62081,cyberterrorism,1235172001 +6249,66330,drama,1235090905 +6249,66330,julia roberts,1235090917 +6266,1260,old age,1389797189 +6266,7285,teenagers,1389800699 +6266,39427,psichological,1389795467 +6268,356,growing up,1432986363 +6268,356,history,1432986363 +6268,356,meaning of life,1432986363 +6268,3000,anime,1431544791 +6268,3000,atmospheric,1431544798 +6268,3000,environmental,1431544796 +6268,3000,fantasy world,1431544805 +6268,3000,Studio Ghibli,1431544793 +6268,5618,alternate reality,1431544722 +6268,5618,anime,1431544711 +6268,5618,atmospheric,1431544725 +6268,5618,beautiful,1431544729 +6268,5618,environmental,1431544734 +6268,5618,Studio Ghibli,1431544717 +6268,26662,anime,1431544754 +6268,26662,magic,1431544756 +6268,26662,strong female lead,1431544760 +6268,26662,Studio Ghibli,1431544753 +6268,31658,anime,1431544667 +6268,31658,fantasy,1431544681 +6268,31658,fantasy world,1431544680 +6268,31658,romance,1431544684 +6268,31658,Studio Ghibli,1431544676 +6268,31658,war,1431544672 +6268,89678,Jane Austen,1431544822 +6268,109374,cinematography,1431544857 +6268,109374,funny,1431544861 +6268,109374,great dialogue,1431544866 +6268,109374,Wes Anderson,1431544858 +6285,237,erlend's DVDs,1186659274 +6287,2571,action,1420811587 +6287,2571,drama,1420811587 +6287,2571,philosophy,1420811587 +6287,2571,romance,1420811587 +6287,2571,science fiction,1420811587 +6303,6754,vampire,1169859924 +6317,50,ensemble cast,1294614144 +6317,50,suspense,1294614120 +6317,50,thriller,1294614148 +6317,58,poetry,1448820909 +6317,555,romance,1294612776 +6317,1617,conspiracy,1294613574 +6317,1617,Danny DeVito,1294613556 +6317,1617,film noir,1294613561 +6317,1617,suspense,1294613580 +6317,1617,visually appealing,1294613584 +6317,2021,David Lynch,1419038292 +6317,2712,adapted from:book,1295341325 +6317,2712,atmospheric,1295341282 +6317,2712,based on a book,1295341327 +6317,2712,Christmas,1295341330 +6317,2712,dreamlike,1295341286 +6317,2712,enigmatic,1295341348 +6317,2712,marriage,1295341350 +6317,2712,New York City,1295341340 +6317,2712,notable soundtrack,1295341280 +6317,2712,Nudity (Full Frontal - Notable),1295341314 +6317,2712,Nudity (Full Frontal),1295341311 +6317,2712,paranoia,1295341355 +6317,2712,thriller,1295341302 +6317,2712,Tom Cruise,1295341320 +6317,2997,black comedy,1294614076 +6317,2997,Charlie Kaufman,1294614060 +6317,2997,mindfuck,1294614055 +6317,2997,psychology,1294614018 +6317,2997,satirical,1294614067 +6317,3262,atmospheric,1406388719 +6317,3262,David Lynch,1406388710 +6317,3556,adolescence,1447194606 +6317,3556,coming of age,1447194598 +6317,3556,melancholy,1447194591 +6317,3556,psychology,1447194592 +6317,3556,reflective,1447194603 +6317,3993,BDSM,1299419077 +6317,3993,censorship,1299419074 +6317,3993,freedom of expression,1299419071 +6317,5617,BDSM,1408477275 +6317,5617,erotic,1408477287 +6317,5617,love,1408477292 +6317,5617,Maggie Gyllenhaal,1408477279 +6317,5617,romance,1408477284 +6317,5617,sexuality,1408477281 +6317,5617,workplace,1408477298 +6317,6874,Tarantino,1294613608 +6317,6874,visually appealing,1294613624 +6317,7147,reflective,1294613982 +6317,7147,storytelling,1294613970 +6317,7147,Tim Burton,1294613961 +6317,7361,Charlie Kaufman,1294613848 +6317,7361,psychology,1294613867 +6317,7361,romance,1294613874 +6317,7361,thought-provoking,1294613857 +6317,7438,Quentin Tarantino,1294613670 +6317,7438,Tarantino,1294613668 +6317,7438,visually appealing,1294613680 +6317,27410,historical,1294613387 +6317,27410,World War II,1294613373 +6317,31696,gothic,1447194724 +6317,31696,Tilda Swinton,1447194719 +6317,44191,based on a book,1294613490 +6317,44191,comic book,1294613481 +6317,44191,dystopia,1294613477 +6317,44191,inspirational,1294613497 +6317,44191,social commentary,1294613475 +6317,44191,thought-provoking,1294613470 +6317,44191,visually appealing,1294613472 +6317,44974,disturbing,1447193844 +6317,44974,revenge,1447193850 +6317,44974,sexual abuse,1447193854 +6317,44974,torture,1447193863 +6317,49932,David Lynch,1418963809 +6317,49932,mindfuck,1418963822 +6317,55765,based on a true story,1295943564 +6317,55765,justice,1295943588 +6317,55765,Russell Crowe,1295943598 +6317,55765,smuggling,1295943604 +6317,60069,cute,1447194458 +6317,60069,Cute!,1447194453 +6317,60069,emotional,1447194441 +6317,68157,black comedy,1294613820 +6317,68157,Quentin Tarantino,1294613815 +6317,68157,satire,1294613827 +6317,68157,World War II,1294613813 +6317,69134,cinematography,1418963984 +6317,78679,bdsm,1406319351 +6317,78679,Graphic violence,1406319355 +6317,78679,thriller,1406319426 +6317,78679,Unsettling,1406319408 +6317,79132,Christopher Nolan,1304251517 +6317,79132,complicated,1304251550 +6317,79132,dead wife,1304251691 +6317,79132,heist,1304251553 +6317,79132,Hollywood,1304251666 +6317,79132,sentimental,1304251713 +6317,79132,surreal,1304251538 +6317,79132,thought-provoking,1304251530 +6317,79132,visually appealing,1304251520 +6317,79357,confusing,1447193917 +6317,82459,atmospheric,1312193191 +6317,82459,cinematography,1312193195 +6317,90531,addiction,1447194066 +6317,90531,Michael Fassbender,1447193986 +6317,90531,psychology,1447194161 +6317,90531,shame,1447194151 +6317,91529,Christopher Nolan,1453651946 +6317,91529,dark,1453651955 +6317,91529,Michael Caine,1453651951 +6317,99114,Christoph Waltz,1379200346 +6317,99220,classical music,1406319302 +6317,99220,musicians,1406319307 +6317,101088,erotic,1406331223 +6317,104867,polyamory,1379098492 +6317,105355,bittersweet,1447194819 +6317,105355,coming of age,1447194787 +6317,105355,homosexuality,1447194810 +6317,105355,loneliness,1447194867 +6317,105355,unsimulated sex,1447194813 +6317,106920,bittersweet,1425429889 +6317,106920,love,1425429866 +6317,106920,sad,1425429884 +6317,109487,Anne Hathaway,1418927552 +6317,109487,Christopher Nolan,1418927557 +6317,109487,father - child relationship,1418927657 +6317,109487,good science,1418927565 +6317,109487,Hans Zimmer,1418927648 +6317,109487,love,1418927279 +6317,109487,Michael Caine,1418927562 +6317,109487,sentimental,1418927294 +6317,113510,chase,1408504004 +6317,113510,identity theft,1408504004 +6317,113510,Nudity (Topless),1408504004 +6317,113510,psychopath,1408504029 +6317,117176,Christianity,1449406300 +6317,117176,emotional,1449406268 +6317,117176,love,1449406271 +6317,120466,die antwoord,1448820847 +6317,134853,childhood,1447194357 +6317,134853,coming of age,1447194386 +6317,134853,emotion,1447194368 +6317,134853,emotional,1447194348 +6317,134853,emotions,1447194342 +6317,134853,introspective,1447194346 +6317,134853,psychology,1447194355 +6317,134853,sadness,1447194377 +6344,1,Pixar,1162989834 +6344,47,psychology,1162989512 +6344,48,Disney,1162990153 +6344,356,psychology,1162989485 +6344,364,Disney,1162990069 +6344,588,Disney,1162989943 +6344,593,psychology,1162989533 +6344,594,Disney,1162990172 +6344,595,Disney,1162989967 +6344,596,Disney,1162990146 +6344,616,Disney,1162989956 +6344,709,Disney,1162990744 +6344,783,Disney,1162990668 +6344,1022,Disney,1162990010 +6344,1024,Disney,1162990876 +6344,1025,Disney,1162990260 +6344,1029,Disney,1162990029 +6344,1032,Disney,1162989948 +6344,1033,Disney,1162990533 +6344,1206,psychology,1162989474 +6344,1219,psychology,1162989498 +6344,1282,Disney,1162990033 +6344,1566,Disney,1162990048 +6344,1784,psychology,1162989564 +6344,1907,Disney,1162990123 +6344,1921,psychology,1162989573 +6344,1961,psychology,1162989502 +6344,2018,Disney,1162989965 +6344,2033,Disney,1162990423 +6344,2048,Disney,1162990563 +6344,2078,Disney,1162990058 +6344,2080,Disney,1162990077 +6344,2081,Disney,1162990085 +6344,2085,Disney,1162990134 +6344,2087,Disney,1162990312 +6344,2089,Disney,1162990761 +6344,2090,Disney,1162990813 +6344,2096,Disney,1162990168 +6344,2355,Pixar,1162989844 +6344,2687,Disney,1162990256 +6344,2762,psychology,1162989545 +6344,2959,psychology,1162989479 +6344,3034,Disney,1162990837 +6344,3114,Pixar,1162989838 +6344,3159,Disney,1162990498 +6344,3176,psychology,1162989585 +6344,3535,psychology,1162989549 +6344,3611,Disney,1162990857 +6344,3759,Disney,1162990605 +6344,3775,Disney,1162990708 +6344,3776,Disney,1162990725 +6344,3893,psychology,1162989569 +6344,3949,psychology,1162989508 +6344,3964,Disney,1162990365 +6344,4016,Disney,1162990481 +6344,4226,psychology,1162989493 +6344,4366,Disney,1162990393 +6344,4886,Pixar,1162989826 +6344,4975,psychology,1162989601 +6344,4995,psychology,1162989397 +6344,5444,Disney,1162990072 +6344,5630,psychology,1162989577 +6344,5882,Disney,1162990899 +6344,6377,Pixar,1162989819 +6344,6889,Disney,1162989986 +6344,6987,psychology,1162989440 +6344,7347,psychology,1162989607 +6344,7374,Disney,1162990639 +6344,8950,psychology,1162989373 +6344,8961,Pixar,1162989822 +6344,33437,psychology,1162989597 +6344,45517,Pixar,1162989848 +6349,260,sci-fi,1439800411 +6349,260,space adventure,1439800432 +6361,3578,ending,1290158982 +6361,3578,heroic journey,1290159002 +6361,7153,graphics,1290158942 +6361,7153,long,1290158953 +6368,1,Tom Hanks,1241435336 +6368,170,Angelina Jolie,1241434150 +6368,170,hacking,1241434154 +6368,337,coming of age,1241435141 +6368,337,Johnny Depp,1241435138 +6368,337,mental illness,1241435154 +6368,342,Australia,1241436038 +6368,342,Australian,1241436035 +6368,342,bittersweet,1241436051 +6368,342,comedy,1241436057 +6368,342,quirky,1241436047 +6368,342,Toni Collette,1241436043 +6368,357,British,1241436469 +6368,357,Hugh Grant,1241436472 +6368,364,coming of age,1241436197 +6368,364,Whoopi Goldberg,1241436194 +6368,377,Action,1241433437 +6368,377,Keanu Reeves,1241433432 +6368,377,Sandra Bullock,1241433434 +6368,532,Comedy,1241435560 +6368,532,dark comedy,1241435546 +6368,743,Leslie Nielsen,1241430458 +6368,743,parody,1241430452 +6368,743,spoof,1241430449 +6368,743,spy,1241430456 +6368,778,British,1241435304 +6368,778,dark comedy,1241435298 +6368,778,drugs,1241435313 +6368,778,Ewan McGregor,1241435295 +6368,778,scotland,1241435307 +6368,830,Goldie Hawn,1241436514 +6368,1188,Australia,1241435406 +6368,1188,Australian,1241435410 +6368,1188,Dance,1241435402 +6368,1188,romance,1241435386 +6368,1427,airplane,1241429845 +6368,1500,assassin,1241436386 +6368,1500,dark comedy,1241436375 +6368,1500,hit men,1241436390 +6368,1500,John Cusack,1241436378 +6368,1500,Minnie Driver,1241436380 +6368,1513,comedy,1241435624 +6368,1513,fashion,1241435620 +6368,1513,Janeane Garofalo,1241435625 +6368,1513,teen,1241435630 +6368,1527,sci-fi,1241434270 +6368,1556,boat,1241435463 +6368,1556,Sandra Bullock,1241435457 +6368,1556,speed,1241435466 +6368,1584,Jodie Foster,1241434616 +6368,1584,sci-fi,1241434617 +6368,1584,space travel,1241434623 +6368,1653,dystopia,1241431816 +6368,1653,Ethan Hawke,1241431798 +6368,1653,future,1241431813 +6368,1653,genetics,1241431809 +6368,1653,Jude Law,1241431807 +6368,1653,rebellion,1241431836 +6368,1653,sci-fi,1241431802 +6368,1653,space travel,1241431828 +6368,1653,Uma Thurman,1241431800 +6368,1680,British,1241435494 +6368,1680,Gwyneth Paltrow,1241435501 +6368,1680,nonlinear,1241435498 +6368,1682,dark comedy,1241435260 +6368,1682,dystopia,1241435270 +6368,1682,fantasy,1241435272 +6368,1682,Jim Carrey,1241435265 +6368,1682,social commentary,1241435262 +6368,1704,genius,1241436418 +6368,1704,mathematics,1241436412 +6368,1704,Matt Damon,1241436408 +6368,1704,psychology,1241436414 +6368,1721,atmospheric,1241430299 +6368,1721,bittersweet,1241430284 +6368,1721,disaster,1241430303 +6368,1721,drama,1241430294 +6368,1721,Oscar (Best Cinematography),1241430287 +6368,1721,time travel,1241430310 +6368,1831,future,1241433802 +6368,1831,Matt LeBlanc,1241433778 +6368,1831,sci-fi,1241433787 +6368,2170,Leslie Nielsen,1241430154 +6368,2170,spoof,1241429160 +6368,2291,dark comedy,1241432127 +6368,2291,gothic,1241432109 +6368,2291,Johnny Depp,1241432092 +6368,2291,quirky,1241432097 +6368,2291,suburbia,1241432111 +6368,2291,Tim Burton,1241432101 +6368,2321,1950s,1241435723 +6368,2321,coming of age,1241435719 +6368,2321,heartwarming,1241435709 +6368,2321,surreal,1241435705 +6368,2321,utopia,1241435716 +6368,2502,comedy,1241435898 +6368,2502,cult film,1241435887 +6368,2502,office,1241435891 +6368,2502,quirky,1241435910 +6368,2502,workplace,1241435893 +6368,2542,British,1241436138 +6368,2542,dark comedy,1241436175 +6368,2542,organized crime,1241436179 +6368,2571,artificial intelligence,1241436109 +6368,2571,dystopia,1241436111 +6368,2571,fantasy,1241436115 +6368,2571,Keanu Reeves,1241436091 +6368,2571,martial arts,1241436098 +6368,2571,sci-fi,1241436095 +6368,2571,surreal,1241436101 +6368,2571,virtual reality,1241436093 +6368,2692,alternate endings,1241435594 +6368,2692,surreal,1241435598 +6368,2692,time travel,1241435602 +6368,2959,Brad Pitt,1241434237 +6368,2959,Edward Norton,1241434240 +6368,2959,psychology,1241434242 +6368,2959,twist ending,1241434252 +6368,3247,Whoopi Goldberg,1241433492 +6368,3248,Whoopi Goldberg,1241433470 +6368,3418,Brad Pitt,1241430365 +6368,3418,Drama,1241430351 +6368,3418,rape,1241430356 +6368,3418,suicide attempt,1241429110 +6368,3477,Cult classic,1241432063 +6368,3477,damn the man,1241432053 +6368,3477,Liv Tyler,1241432078 +6368,3477,teen,1241432073 +6368,3578,action,1241431740 +6368,3578,Rome,1241431744 +6368,3948,Ben Stiller,1241433709 +6368,3948,comedy,1241433715 +6368,3969,alcoholism,1241431116 +6368,3969,helen hunt,1241431109 +6368,3969,las vegas,1241431111 +6368,3969,twist ending,1241431114 +6368,4310,Ben Affleck,1241435806 +6368,4310,Cuba Gooding Jr.,1241435830 +6368,4310,Jennifer Garner,1241435809 +6368,4310,Josh Hartnett,1241435815 +6368,4310,Romance,1241435800 +6368,4310,War,1241435804 +6368,4643,cryogenics,1241435765 +6368,4643,dystopia,1241435759 +6368,4643,post-apocalyptic,1241435750 +6368,4643,Tim Burton,1241435755 +6368,4728,Whoopi Goldberg,1241431081 +6368,4816,ben stiller,1241430070 +6368,4816,David Bowie,1241430104 +6368,4816,fashion,1241430073 +6368,4816,goofy,1241430099 +6368,4816,male models,1241430087 +6368,4816,Will Ferrell,1241430076 +6368,4963,Brad Pitt,1241433565 +6368,4963,ensemble cast,1241433581 +6368,4963,heist,1241433571 +6368,4963,Julia Roberts,1241433575 +6368,4963,Las Vegas,1241433569 +6368,4963,Matt Damon,1241433567 +6368,4979,Ben Stiller,1241429400 +6368,4979,dark comedy,1241430723 +6368,4979,ensemble cast,1241430737 +6368,4979,Gwenth Paltrow,1241429400 +6368,4979,Luke Wilson,1241429400 +6368,4979,narrated,1241430731 +6368,4979,quirky,1241430729 +6368,4979,suicide attempt,1241429443 +6368,5266,Jodie Foster,1241431214 +6368,5349,New York City,1241435425 +6368,5349,super-hero,1241435436 +6368,5349,superhero,1241435432 +6368,5418,espionage,1241432280 +6368,5418,Matt Damon,1241429821 +6368,5418,spy,1241432273 +6368,5502,aliens,1241435522 +6368,5502,Joaquin Phoenix,1241435517 +6368,5502,Mel Gibson,1241435519 +6368,5502,sci-fi,1241435527 +6368,5666,Ian Somerhalder,1241429282 +6368,5666,narrated,1241430692 +6368,5666,obsession,1241430695 +6368,5666,suicide attempt,1241429451 +6368,5881,cinematography,1241430481 +6368,5881,memory,1241430510 +6368,5881,sci-fi,1241430486 +6368,5881,soundtrack,1241429430 +6368,5902,dark comedy,1241434906 +6368,5902,Meryl Streep,1241434919 +6368,5902,quirky,1241434821 +6368,5902,surreal,1241434825 +6368,5989,comedy,1241434743 +6368,5989,crime,1241434741 +6368,5989,factual,1241434735 +6368,5989,Leonardo DiCaprio,1241434722 +6368,5989,Tom Hanks,1241434726 +6368,5989,true story,1241434738 +6368,5992,gay,1241431659 +6368,5992,Meryl Streep,1241431651 +6368,5992,Nicole Kidman,1241431648 +6368,5992,nonlinear,1241431653 +6368,5992,suicide,1241431645 +6368,6323,psychology,1241436338 +6368,6323,Ray Liotta,1241436344 +6368,6323,twist ending,1241436341 +6368,6378,action,1241436273 +6368,6378,car chase,1241436266 +6368,6378,Mark Wahlberg,1241436269 +6368,6550,espionage,1241436251 +6368,6550,John Malkovich,1241436244 +6368,6550,Natalie Imbruglia,1241436247 +6368,6550,parody,1241436242 +6368,6550,Rowan Atkinson,1241436249 +6368,6567,Joaquin Phoenix,1241432197 +6368,6567,The fall of the Berlin wall,1241432203 +6368,6754,gothic,1241435204 +6368,6754,vampire,1241435221 +6368,6754,vampires,1241435217 +6368,6874,action,1241433977 +6368,6874,quirky,1241433985 +6368,6874,Uma Thurman,1241433971 +6368,7254,Ashton Kutcher,1241432162 +6368,7254,suspense,1241432168 +6368,7254,time travel,1241432164 +6368,7323,East Germany,1241431685 +6368,7323,maintaining illusion,1241431703 +6368,7323,The fall of the Berlin wall,1241431697 +6368,7347,Johnny Depp,1241435579 +6368,7347,Stephen King,1241435576 +6368,7438,action,1241433920 +6368,7438,quirky,1241433930 +6368,7438,Uma Thurman,1241433917 +6368,8373,Nicole Kidman,1241433399 +6368,8373,robots,1241429881 +6368,8376,comedy,1241435938 +6368,8376,geek,1241435953 +6368,8376,independent film,1241435956 +6368,8376,quirky,1241435964 +6368,8376,teen,1241435942 +6368,8533,CLASS DIFFERENCES,1241430915 +6368,8533,memories,1241430934 +6368,8533,memory loss,1241430937 +6368,8533,Romance,1241430923 +6368,8533,Ryan Gosling,1241430920 +6368,8644,artificial intelligence,1241431554 +6368,8644,future,1241431559 +6368,8644,robots,1241431550 +6368,8644,sci-fi,1241431563 +6368,8665,espionage,1241432249 +6368,8665,Matt Damon,1241429808 +6368,8783,forest,1241435176 +6368,8783,Joaquin Phoenix,1241435170 +6368,8783,twist ending,1241435173 +6368,8784,coming of age,1241431865 +6368,8784,Peter Sarsgaard,1241431874 +6368,8784,psychology,1241431862 +6368,8784,quirky,1241431876 +6368,8784,soundtrack,1241431887 +6368,8784,Zach Braff,1241429701 +6368,8937,real life,1241434213 +6368,27706,Adventure,1241431367 +6368,27706,based on a book,1241431364 +6368,27706,eerie,1241431382 +6368,27706,Jude Law,1241431377 +6368,27706,meryl streep,1241431369 +6368,27706,quirky,1241431373 +6368,30707,Bittersweet,1241433686 +6368,30707,drama,1241433694 +6368,30793,dark,1241434700 +6368,30793,fantasy,1241434707 +6368,30793,Johnny Depp,1241434689 +6368,30793,quirky,1241434711 +6368,30793,roald dahl,1241434696 +6368,30793,Tim Burton,1241434693 +6368,30825,Ben Stiller,1241436071 +6368,33171,gay,1241435988 +6368,33171,Joseph Gordon-Levitt,1241435991 +6368,33171,prostitution,1241435981 +6368,33171,repression,1241436007 +6368,33679,Adam Brody,1241433637 +6368,33679,Angelina Jolie,1241433617 +6368,33679,Brad Pitt,1241433621 +6368,33679,Vince Vaughn,1241433627 +6368,34150,Chris Evans,1241434435 +6368,34150,superhero,1241434346 +6368,34319,action,1241431460 +6368,34319,biology,1241431470 +6368,34319,cloning,1241431468 +6368,34319,Ewan McGregor,1241431465 +6368,34319,future,1241431486 +6368,34319,genetics,1241431481 +6368,34319,immortality,1241431483 +6368,34319,sci-fi,1241431456 +6368,34319,thriller,1241431476 +6368,37727,Jodie Foster,1241431932 +6368,37853,bahamas,1241436288 +6368,37853,Paul Walker,1241436295 +6368,41566,fantasy,1241434671 +6368,41566,Fantasy World,1241434673 +6368,43396,Bonneville Salt Flats,1241435113 +6368,43396,dreams,1241435105 +6368,43396,new zealand,1241435087 +6368,43396,speed,1241435108 +6368,43396,true story,1241435096 +6368,44199,Denzel Washington,1245749677 +6368,44199,Jodie Foster,1245749674 +6368,44665,Film Noir,1241431268 +6368,44665,Revenge,1241431259 +6368,44665,twist ending,1241431263 +6368,45928,documentary,1241430173 +6368,45928,environmental,1241430174 +6368,45928,propaganda,1241430181 +6368,46335,cars,1241498421 +6368,46335,Vin Diesel,1241498418 +6368,46578,dark comedy,1241429592 +6368,46578,dysfunctional family,1241431324 +6368,46578,quirky,1241431314 +6368,46578,road trip,1241431311 +6368,46578,Toni Collette,1241429593 +6368,48560,black comedy,1241429338 +6368,48560,dark comedy,1241429327 +6368,48560,dysfunctional family,1241430659 +6368,48560,gay,1241430654 +6368,48560,gwyneth paltrow,1241430622 +6368,48560,quirky,1241429293 +6368,48560,soundtrack,1241429215 +6368,49276,Dylan Baker,1241433898 +6368,49276,prison,1241433906 +6368,49276,Will Arnett,1241433900 +6368,49278,sci-fi,1241434547 +6368,49278,time travel,1241434545 +6368,49528,harvesting body parts,1241435241 +6368,52328,sci-fi,1241430535 +6368,52328,spaceships,1241430398 +6368,52328,suicide attempt,1241429122 +6368,53000,post-apocalyptic,1241434999 +6368,53000,zombies,1241434997 +6368,53894,corruption,1241433508 +6368,53894,documentary,1241433506 +6368,53996,android(s)/cyborg(s),1241432337 +6368,53996,robots,1241432344 +6368,53996,Shia LaBeouf,1241432363 +6368,54286,action,1241432229 +6368,54286,espionage,1241432218 +6368,54286,Matt Damon,1241429796 +6368,54286,murder,1241432221 +6368,54286,twist ending,1241432233 +6368,56174,post-apocalyptic,1241431603 +6368,56174,vampire,1241431598 +6368,56174,Will Smith,1241431592 +6368,56174,zombies,1241431593 +6368,56367,comedy,1241436225 +6368,56367,cult film,1241436227 +6368,56367,pregnancy,1241436219 +6368,56607,setting:Afghanistan,1241952640 +6368,56715,cult,1241561793 +6368,56715,miracles,1241561798 +6368,56715,Shannyn Sossamon,1241561808 +6368,56715,suicide,1241561786 +6368,57368,city under attack,1241434644 +6368,57368,mockumentary,1241434647 +6368,57368,New York City,1241434641 +6368,57951,Matthew McConaughey,1241436488 +6368,58025,based on a book,1241431406 +6368,58025,escape,1241431418 +6368,58025,Hayden Christensen,1241431411 +6368,58025,teleportation,1241431415 +6368,58103,assassination,1241432296 +6368,58103,multiple storylines,1241432301 +6368,58103,secret service,1241432299 +6368,58803,Matt Damon,1241435034 +6368,58803,title sequence,1241435042 +6368,58803,true story,1241435051 +6368,59315,Gwyneth Paltrow,1241431528 +6368,59315,superhero,1241431530 +6368,59387,1920s,1241432009 +6368,59387,beautiful,1241431985 +6368,59387,broken hearts,1241432014 +6368,59387,fantasy,1241431991 +6368,59387,fantasy world,1241431997 +6368,59387,suicide attempt,1241432000 +6368,59900,Adam Sandler,1241435070 +6368,60074,superhero,1241434134 +6368,60126,spoof,1241436441 +6368,63992,based on a book,1241430226 +6368,63992,Teen movie,1241430221 +6368,63992,Vampire Human Love,1241430213 +6368,63992,vampires,1241430216 +6368,65817,ocean,1241436685 +6378,96592,coming-of-age,1436406416 +6378,96592,depression,1436406416 +6378,96592,romance,1436406416 +6378,101072,austria,1426535304 +6378,101072,dark comedy,1426535304 +6378,101072,dialect,1426535304 +6378,101072,friendship,1426535304 +6378,101072,original,1426535304 +6378,101072,realistic,1426535304 +6378,101072,twist ending,1426535304 +6378,101072,very funny,1426535304 +6392,103539,character driven,1451151063 +6392,103539,coming of age,1451151051 +6392,103539,high school,1451151066 +6392,103539,romance,1451151060 +6415,58,italian love story,1137557097 +6415,919,alagory,1137557165 +6415,919,ruby slippers,1137557165 +6415,1273,tom waits,1137557355 +6415,1732,cohen,1137557234 +6415,1921,docudrama,1137557265 +6415,2710,feels like home made super scary,1137557122 +6415,7360,bmovie,1137557377 +6416,260,must see,1439787264 +6416,260,Star Wars,1439787252 +6439,266,mountain man,1193108123 +6439,266,prohibition,1193108123 +6439,266,war,1193108123 +6439,266,western,1193108066 +6439,410,goth,1202618351 +6439,410,macabre,1202618351 +6439,507,absent fathers,1198988952 +6439,852,Texas,1202266133 +6439,1161,surreal,1261563083 +6439,1459,burglary,1308803911 +6439,1459,corruption,1308803911 +6439,1459,secret service,1308803911 +6439,1748,Jennifer Connoly:Topless,1202618526 +6439,1792,great chase scenes,1202599131 +6439,2074,dance,1273972682 +6439,2074,Nazis,1273972682 +6439,2074,sadomasochistic,1273972682 +6439,2076,visual glamour,1296800899 +6439,2210,anarchism,1295554853 +6439,2210,England,1295554853 +6439,2210,espionage,1295554853 +6439,2210,London,1295554854 +6439,2210,World War I,1295554854 +6439,2787,variations on a theme,1202265344 +6439,2966,obstinance,1202961559 +6439,3074,cowboy,1176106698 +6439,3074,loner,1176106680 +6439,3074,mountain man,1176106698 +6439,3074,native american,1176106698 +6439,3160,race riots,1205698334 +6439,3160,racism,1205698342 +6439,3365,Journey,1300550206 +6439,3365,Trek,1300550206 +6439,3516,witchcraft,1309746114 +6439,3565,single mothers,1257624167 +6439,3565,teenage pregnancy,1257624167 +6439,3644,Civil War,1198640448 +6439,3644,Kansas History,1198640448 +6439,3644,Quantrail's Raiders,1198640448 +6439,3706,DEAL WITH THE DEVIL,1216167796 +6439,3841,CIA,1308878485 +6439,3841,Covert,1308878485 +6439,3841,Laos,1308878485 +6439,3841,Vietnam War,1308878485 +6439,3946,rape,1222641272 +6439,3946,rohypnol,1222641272 +6439,3946,roofies,1222641272 +6439,3981,colonialism,1202951488 +6439,4122,1910s,1305036141 +6439,4122,1930s,1305036141 +6439,4122,alcoholism,1305036141 +6439,4122,depression era,1305036141 +6439,4122,homeless,1305036141 +6439,4218,1980s,1242665083 +6439,4218,high school,1242665083 +6439,4218,homicide,1242665083 +6439,4297,feudalism,1226971234 +6439,4297,immigrants,1226971234 +6439,4297,poverty,1226971234 +6439,4591,Dungeons & Dragons,1223251174 +6439,4591,Monty Python,1223251174 +6439,4591,Satire,1223251174 +6439,4778,abortion,1283644797 +6439,4778,child abuse,1283644769 +6439,4778,condoms,1283644797 +6439,4778,contraception,1283644797 +6439,4778,family planning,1283644797 +6439,4778,poverty,1283644769 +6439,4778,runaways,1283644769 +6439,4809,working class,1223931459 +6439,4928,cheating,1242782594 +6439,4928,manipulation,1242782594 +6439,4958,international peacekeeping,1304308200 +6439,4958,MIA,1304308220 +6439,5420,encryption,1203048448 +6439,5420,languages,1203048448 +6439,5420,linguistics,1203048448 +6439,5879,hanukkah,1200630031 +6439,5879,jewish,1200630031 +6439,5879,judaism,1200630031 +6439,5879,stoner movie,1200630402 +6439,6617,freegrazing,1222480944 +6439,6885,erotic,1205622979 +6439,6885,New York City,1205622979 +6439,6885,serial killer,1205622979 +6439,6885,tattoos,1205622979 +6439,6939,cheating,1223400830 +6439,6939,melodrama,1223400849 +6439,6939,polygamy,1223400830 +6439,6939,suicide,1223400830 +6439,6948,poverty,1242651563 +6439,6987,surreal,1222663886 +6439,7560,Mutually Assured Destruction,1223342603 +6439,7827,corporate espionage,1202954035 +6439,7923,revenge,1261280502 +6439,7923,veteran,1261280502 +6439,7923,Viet Nam,1261280502 +6439,8119,blues,1216167658 +6439,8119,DEAL WITH THE DEVIL,1216167646 +6439,8711,homebuilding,1223920172 +6439,8752,boxing,1258825726 +6439,8752,corruption,1258825725 +6439,8752,gambling,1258825726 +6439,8752,integrity,1258825726 +6439,8752,sportsmanship,1258825726 +6439,8766,drunkeness,1207877778 +6439,9002,vikings,1318205050 +6439,26131,torture (scene),1197504479 +6439,26131,waterboarding,1197504479 +6439,26398,corny to the max,1250699665 +6439,26398,outrageous,1250699665 +6439,26403,fantasy,1308744782 +6439,26554,Australian,1235092018 +6439,26554,jealousy,1235092027 +6439,27571,Anti-Corporation,1262470234 +6439,27721,persistence,1243121500 +6439,27721,Trench Warfare,1243121500 +6439,27721,true love,1243121500 +6439,31150,"""peace",1303634716 +6439,31150,corny,1303634716 +6439,31150,"dope""",1303634716 +6439,31150,love,1303634716 +6439,31374,alcoholism,1389004034 +6439,31374,Delerium Tremens,1389004034 +6439,31485,class struggle,1276409718 +6439,31485,mercenaries,1276409740 +6439,31485,strategy,1276409694 +6439,31547,art,1298844108 +6439,31547,Gulf War,1298844108 +6439,31547,Kuwait,1298844108 +6439,31878,kung fu,1245112433 +6439,32174,guerilla warfare,1216169326 +6439,32174,special forces,1216169326 +6439,32174,Vietnam,1216169326 +6439,32853,collaborators,1210215982 +6439,32853,france,1210216009 +6439,32853,guerilla warfare,1210215982 +6439,32853,occupation,1210215982 +6439,32853,partisanship,1210215982 +6439,32853,WWII,1210215982 +6439,33154,white collar crime,1297038005 +6439,33603,euthanasia,1232507524 +6439,33603,friendship,1232507532 +6439,33603,gay marriage,1232507523 +6439,33603,homosexuality,1232507524 +6439,33603,weed,1232507524 +6439,34811,car theft,1295288145 +6439,34811,cocaine,1295288145 +6439,34811,Denmark,1295288145 +6439,34811,gangsters,1295288145 +6439,37733,family,1308790174 +6439,39381,landscape,1334718118 +6439,44199,Nazis,1223599449 +6439,44199,political action,1223599449 +6439,44199,protest,1223599449 +6439,44199,war profiteering,1223599449 +6439,44633,Austin,1206297711 +6439,44633,Outcast Artist,1206297711 +6439,45635,glamour,1205441895 +6439,45635,glitz,1205441895 +6439,45635,pinup,1205441895 +6439,46848,racing,1262920962 +6439,46848,street race,1262920962 +6439,47117,Engrish,1219282719 +6439,47117,stylized,1219282733 +6439,48262,depression,1204724357 +6439,48262,Golden Gate Bridge,1204724343 +6439,48262,San Francisco,1204724343 +6439,48262,suicide,1204724343 +6439,48560,dysfunctional family,1235099681 +6439,48560,homosexuality,1235099681 +6439,48560,lesbian,1235099681 +6439,48560,Stoner Movie,1235099694 +6439,49793,tearjerker,1192107850 +6439,49926,non-linear,1278812567 +6439,51077,deal with the devil,1216167586 +6439,51698,buddhism,1204498502 +6439,51698,mandala,1204498502 +6439,51698,taoism,1204498502 +6439,52579,addiction,1230425969 +6439,52579,Paris,1230425969 +6439,52579,singers,1230425969 +6439,52973,growing up,1197760314 +6439,54281,alcoholism,1222492598 +6439,54281,antidepressants,1222492598 +6439,54281,depression,1222492598 +6439,54281,drug dealing,1222492598 +6439,54281,rebellion,1222492598 +6439,54281,redemption,1222492598 +6439,54281,suicide,1222492598 +6439,54745,debate,1205373961 +6439,54745,stuttering,1205373961 +6439,54881,competition,1207835490 +6439,54881,donkey kong,1207835490 +6439,54881,geek,1207835490 +6439,54881,video games,1215999837 +6439,54999,BORING!,1284787306 +6439,55069,police state,1218751166 +6439,55267,large family,1231706976 +6439,55267,single father,1231706976 +6439,55267,WRITER'S LIFE,1231706976 +6439,55286,addiction,1207761826 +6439,55286,loss,1207761826 +6439,55830,FILMMAKING,1224209398 +6439,55926,firefighters,1201749468 +6439,55999,magic,1216167130 +6439,56587,oreo,1202344576 +6439,57370,bank robbery,1261878361 +6439,57370,Kansas City,1261878361 +6439,57401,SINGLE PARENTS,1223257580 +6439,58306,plains warfare,1245112281 +6439,58306,steppe,1245112281 +6439,58418,adoption,1300550276 +6439,58418,love,1300550276 +6439,58418,pregnancy,1300550276 +6439,58492,dysfunctional families,1246113413 +6439,58492,sublime,1246113413 +6439,58492,young parents,1246113413 +6439,58622,boxing,1223602091 +6439,58622,California,1223602091 +6439,58622,Los Angeles,1223602091 +6439,58622,Olympics,1223602091 +6439,59018,9/11,1232407613 +6439,59037,Grand Prix,1224209473 +6439,59037,Japanimation,1224209473 +6439,59037,Racing,1224209473 +6439,59037,remake,1224209473 +6439,59141,religious oppression,1263219608 +6439,59216,cheating,1296696926 +6439,59216,complex relationships,1296696926 +6439,59216,immigrants,1296696926 +6439,59216,independent film,1296696926 +6439,59216,spouse abuse,1296696926 +6439,59810,elections,1242651615 +6439,59810,florida,1242651615 +6439,59810,politics,1242651615 +6439,59810,presidential elections,1242651615 +6439,59900,Israeli/Palestinian conflict,1223508610 +6439,60069,dystopia,1228223846 +6439,60074,anti-hero,1228223773 +6439,60295,industrial progress,1261563006 +6439,60295,rural poverty,1261563005 +6439,60756,brother-brother relationship,1230864092 +6439,60766,passion,1313381874 +6439,61024,Stoner Movie,1219171784 +6439,61269,blacklist,1313982499 +6439,61269,censorship,1313982454 +6439,61269,freedom,1313982553 +6439,61352,intelligence operations,1230690080 +6439,61352,muslim,1230690080 +6439,61729,dentists,1231420742 +6439,61729,grumpy,1231420753 +6439,61941,dropping out,1261319015 +6439,62250,environmental,1276137070 +6439,62250,globalisation,1276137070 +6439,62374,espionage,1249756989 +6439,62374,surveillance,1249756989 +6439,62374,torture,1249756989 +6439,62374,UAV,1249756989 +6439,62849,overly complex,1263834927 +6439,62849,unrealistic,1263834927 +6439,64614,sacrifice,1249909315 +6439,65188,murder,1339964436 +6439,65188,murder of a child,1339964435 +6439,65868,addiction,1258832430 +6439,65868,cosmetic surgery,1258832430 +6439,65868,gothic,1258832430 +6439,65868,rock opera,1258832430 +6439,66385,Graves Registration,1248234353 +6439,66385,Iraq War,1248234353 +6439,66385,Marine Corps,1248234353 +6439,67168,high school,1263769588 +6439,67168,shop teacher,1263769588 +6439,67168,zombies,1263769589 +6439,68194,coaching,1272418386 +6439,68194,fair play,1272418386 +6439,68194,friendship,1272418386 +6439,68319,body alteration,1253391598 +6439,68954,Kid Drama with Comedy,1246277366 +6439,68954,Mourning,1246277338 +6439,68954,Senior Citizens,1246277338 +6439,69481,Unexploded Ordnance Disposal,1264978563 +6439,69757,abuse,1276401474 +6439,69757,attachment disorder,1276401474 +6439,69757,ignores psychology,1276401443 +6439,69757,trauma,1276401475 +6439,69844,britain,1249827939 +6439,69844,high school,1249827939 +6439,69844,teenagers,1249827939 +6439,71418,poverty,1261111410 +6439,71418,working poor,1261111410 +6439,72479,casualties,1295095840 +6439,73860,Beatles,1301203699 +6439,73860,dysfunctional family,1301203699 +6439,77421,forgiveness,1298870313 +6439,77421,Oedipus Complex,1298870312 +6439,77421,open communication,1298870313 +6439,77455,betrayal,1302327837 +6439,77455,business,1302327837 +6439,77455,marketing,1302327837 +6439,78517,feminism,1314416157 +6439,78517,WORK ETHICS,1314416178 +6439,78574,ozarks,1293587586 +6439,78746,cult classic,1317782096 +6439,78746,mental illness,1317782096 +6439,78746,reality check,1317782096 +6439,79242,new age,1294713538 +6439,79318,anger,1316901941 +6439,79318,honesty,1316901941 +6439,80219,immigrants,1297664752 +6439,80219,Mexico,1297664751 +6439,80219,resistance movement,1297664751 +6439,80219,samurai,1297664752 +6439,80219,Texas,1297664752 +6439,80463,Bechdel Test:Neutral,1296186571 +6439,80831,bullying,1301369811 +6439,81158,afghanistan,1293514568 +6439,81641,Iraq War,1308741999 +6439,81845,stammering,1304755925 +6439,81932,athletes in a romance,1301629674 +6439,81932,high jumping,1301629674 +6439,82037,football,1302321705 +6439,82037,fratricide,1302321705 +6439,82037,rangers,1302321705 +6439,82143,cabin,1346599554 +6439,82459,cowboy,1301990002 +6439,82459,empowered women,1301990024 +6439,82459,sheriff,1301990014 +6439,83369,gulag,1311640499 +6439,83369,prison escape,1311640499 +6439,83369,siberia,1311640499 +6439,83374,highly narrated,1312079430 +6439,84954,angels,1309030532 +6439,84954,free will,1309030532 +6439,85367,boring,1308257764 +6439,85367,family comedy,1308257764 +6439,85367,lies,1308257764 +6439,86298,Carnivale,1312587706 +6439,86628,persistence,1318472332 +6439,86628,warriors,1318472332 +6439,87079,disinformation,1313462434 +6439,87079,not true to life,1313462401 +6439,89039,DUI,1418362088 +6439,89039,felon,1418362100 +6439,89039,redemption,1418362106 +6439,89090,New York City,1338785795 +6439,89302,ethics,1404075489 +6439,89302,intelligence,1404075489 +6439,89302,patriotic,1404075489 +6439,89302,terrorism,1404075489 +6439,89302,torture,1404075489 +6439,89343,ATF,1322099969 +6439,89774,alcoholism,1332024201 +6439,90266,child abuse,1393727904 +6439,90266,coaching,1393727904 +6439,90266,inspirational,1393727904 +6439,90421,noir thriller,1351739252 +6439,91535,genetic engineering,1354241827 +6439,91535,spies,1354241827 +6439,91869,inspirational,1338258884 +6439,91869,success,1338258884 +6439,92904,community,1338297258 +6439,94478,absurdism,1346897322 +6439,94677,ethics,1359705210 +6439,94677,Noam Chomsky,1359705210 +6439,94677,torture,1359705210 +6439,95508,dehumanization,1341698422 +6439,95567,absent fathers,1404608082 +6439,95804,family,1358289817 +6439,95804,father-son relationship,1358289817 +6439,95804,fatherhood,1358289817 +6439,95804,post-prison,1358289817 +6439,95804,rehabilitation,1358289817 +6439,96304,not action,1352601488 +6439,97172,boy and his dog,1356134267 +6439,97172,dogs,1356134267 +6439,97172,frankenstein,1356134267 +6439,97172,zombies,1356134267 +6439,97230,pretentious,1404595659 +6439,97304,espionage,1359781121 +6439,97895,homicide,1396145387 +6439,97895,honor bullshit,1396145387 +6439,97895,reputation,1396145387 +6439,97895,teammate,1396145387 +6439,98975,virus outbreak,1395618828 +6439,99468,abuse of power,1404523546 +6439,99468,racism,1404523546 +6439,99750,assassin,1395717524 +6439,99750,hitman,1395717524 +6439,99750,mafia,1395717524 +6439,99750,Polish,1395717524 +6439,100244,cliched,1372476632 +6439,100244,ecological,1372476632 +6439,100244,terrorism,1372476632 +6439,101413,alcohol,1364681928 +6439,101413,brothers,1364681928 +6439,101413,coming out,1364681928 +6439,101413,drugs,1364681928 +6439,101413,gangsters,1364681928 +6439,101413,immigrants,1364681928 +6439,101413,Islam,1364681928 +6439,101413,London,1364681928 +6439,103030,adoption,1370823026 +6439,103030,Equality,1370823026 +6439,103030,Gay Lead Character,1370823026 +6439,103030,gay rights,1370823026 +6439,103030,gay romance,1370823026 +6439,103982,monster,1391218250 +6439,104339,game day,1396233898 +6439,104339,stage fright,1396233898 +6439,104944,Foster Home,1395625363 +6439,104944,sexual abuse,1395625363 +6439,104944,sociology,1395625363 +6439,105254,dominatrix,1404517225 +6439,105254,hallucination,1404517225 +6439,105254,pubic hair,1404517225 +6439,105954,shipwreck,1396140068 +6439,107069,seals,1389404841 +6439,107980,waterboarding,1414899058 +6439,109452,Childhood Friends,1393710103 +6439,109452,espionage,1393710103 +6439,109452,informants,1393710103 +6439,109452,treachery,1393710103 +6439,109740,abortion,1404010121 +6439,109740,comedians,1404010121 +6439,109740,quirky humor,1404010121 +6439,109740,stand-up comedy,1404010121 +6439,109895,absent fathers,1396140117 +6439,109895,spelling bee,1396140117 +6439,109968,gory,1436758363 +6439,109968,gothic,1436758359 +6439,109968,japan,1436758380 +6439,109968,samurai,1436758376 +6439,109968,yakuza,1436758384 +6439,110328,fundamentalism,1403411662 +6439,110328,Immaculate Conception,1403411662 +6439,110328,Mormon,1403411662 +6439,110328,pregnancy,1403411662 +6439,110328,Utah,1403411662 +6439,111443,cooking,1403401645 +6439,111443,divorce,1403401644 +6439,111443,entrepreneurs,1403401644 +6439,111443,father-son relationship,1403401645 +6439,111443,Food Truck,1403401645 +6439,111443,Foodie,1403401644 +6439,111443,friendship,1403401644 +6439,112940,counter-intelligence,1408852624 +6439,112940,counterespionage,1408852604 +6439,114060,gambling,1412399514 +6439,114060,gangsters,1412399514 +6439,114060,subtlety,1412399514 +6439,114180,dystopia,1412399457 +6439,115210,armor,1414117263 +6439,115210,tanks,1414117263 +6439,132112,ethics,1441599229 +6439,132112,UAVs,1441599217 +6439,132112,unmanned aerial vehicles,1441599212 +6440,2587,Martin Lawrence,1225615571 +6440,4341,Martin Lawrence,1225615596 +6447,4226,AMNESIA,1427602240 +6447,5378,Samuel L. Jackson,1427604765 +6447,6323,John Cusack,1427603231 +6447,6323,twist ending,1427603222 +6447,55765,Denzel Washington,1427603626 +6447,111759,Tom Cruise,1427602104 +6447,116797,code breaking,1427605575 +6447,116797,mathematics,1427605575 +6447,116797,world war ii,1427605575 +6483,16,character development,1409382124 +6483,16,violent,1409382092 +6483,171,4th wall,1374326542 +6483,529,based on a true story,1394278245 +6483,529,child actors,1394278210 +6483,529,music,1394278216 +6483,529,true story,1394278224 +6483,947,classic,1405841284 +6483,947,screwball comedy,1405841272 +6483,1197,Billy Crystal,1377229831 +6483,1197,comedy,1377229805 +6483,1197,funny,1377229820 +6483,1197,original,1377229843 +6483,1197,quirky,1377229895 +6483,1197,seen more than once,1377229794 +6483,1197,witty,1377229884 +6483,1299,music,1391243885 +6483,1299,pace,1391243882 +6483,1299,political,1391243882 +6483,1299,true story,1391243882 +6483,1307,Character development,1377229649 +6483,1307,dialogue,1377229641 +6483,1307,seen more than once,1377229665 +6483,1952,bittersweet,1420250120 +6483,1952,homosexuality,1420250109 +6483,1952,loneliness,1420250113 +6483,1952,prostitution,1420250102 +6483,2020,American accents,1407568056 +6483,2020,bad acting,1407567947 +6483,2020,death scenes,1407569561 +6483,2330,rednecks,1394449175 +6483,2501,Jake Gyllenhaal,1377516143 +6483,2501,space,1377516078 +6483,2501,teacher,1377516090 +6483,2501,true story,1377516124 +6483,2863,Dated Humour,1413716337 +6483,2917,dated,1412332579 +6483,4008,over the top acting,1382088290 +6483,4157,bad acting,1379762461 +6483,4157,low budget,1379762482 +6483,4157,racial stereotypes,1379762737 +6483,4157,weak ending,1379762760 +6483,4157,weak plot,1379762750 +6483,4936,nolstalga,1420116734 +6483,4995,true story,1399793350 +6483,5992,AIDS,1420969651 +6483,5992,intellectual,1420969634 +6483,5992,Meryl Streep,1420969638 +6483,5992,Nicole Kidman,1420969625 +6483,6620,Artistic,1419457828 +6483,6620,comic books,1419457822 +6483,6620,nerdy,1419457825 +6483,7139,sterotype African character,1379678265 +6483,8711,Cary Grant,1382432975 +6483,8874,black comedy,1391919896 +6483,8874,english humor,1391919896 +6483,8874,gore,1391919880 +6483,30820,dark,1376566004 +6483,30820,demons,1376566046 +6483,30820,thought-provoking,1376565953 +6483,31705,sexuality,1421624669 +6483,31705,transgender,1421624665 +6483,33166,child actor,1405603371 +6483,33166,music,1405603342 +6483,33660,boxing,1413104035 +6483,33660,true story,1413104047 +6483,33660,violent,1413104035 +6483,39414,predictable,1414236137 +6483,42018,historical,1392543805 +6483,42018,Judi Dench,1392543777 +6483,42018,Period,1392543827 +6483,43677,bad acting,1393127626 +6483,43677,black civil rights,1393127688 +6483,43677,cliche,1393127666 +6483,43677,historical,1393127677 +6483,43677,too much uplifting music,1393127648 +6483,43677,true story,1393127701 +6483,45950,lecture style,1379755058 +6483,45950,overrated,1379755040 +6483,45950,slow paced,1379755071 +6483,47999,abortion,1394453567 +6483,47999,brainwashing,1394452087 +6483,47999,child abuse,1394453556 +6483,47999,crazy people,1394452144 +6483,47999,dogma,1394453936 +6483,47999,education,1394453576 +6483,47999,elections,1394453541 +6483,47999,global warming,1394453589 +6483,47999,home schooling,1394453906 +6483,47999,horrifying (but not Horror genre),1394453517 +6483,47999,radio DJ,1394453883 +6483,47999,religion,1394452101 +6483,47999,religious propaganda,1394452124 +6483,47999,science,1394453605 +6483,47999,social commentary,1394452591 +6483,49961,Cate Blanchett,1377229180 +6483,49961,Judi Dench,1377229183 +6483,50685,cheesy,1376241279 +6483,50685,Nathan Fillion,1376241225 +6483,50685,predictable,1376241243 +6483,50685,terrible script,1376241201 +6483,53024,documentary,1399798418 +6483,53024,histroy,1399798430 +6483,53318,independent film,1412768705 +6483,53318,quirky,1412768696 +6483,53956,immature,1379160173 +6483,53956,poo jokes,1379160252 +6483,53956,stupid,1379160233 +6483,53956,unrealistic,1379160188 +6483,59615,aliens,1382433513 +6483,59615,Cate Blanchett,1382433487 +6483,59729,incest,1421029438 +6483,64957,Cate Blanchett,1382433460 +6483,66240,quirky,1396690978 +6483,66240,sequel,1396690992 +6483,68269,historically inaccurate,1410693291 +6483,73023,country music,1394095763 +6483,73023,dark,1394095767 +6483,74324,autism,1417163397 +6483,74324,great acting,1417163414 +6483,74324,inspirational,1417163402 +6483,74324,true story,1417163409 +6483,78039,character development,1377403038 +6483,78039,Michelle Williams,1377403025 +6483,78039,Ryan Gosling,1377403016 +6483,79357,nonlinear,1419851093 +6483,79357,style over substance,1419851112 +6483,79357,time travel,1419851099 +6483,79357,too long,1419851117 +6483,81191,Accountability,1393144052 +6483,81191,american idiocy,1393143986 +6483,81191,Education,1393144002 +6483,81191,heartbreaking,1393144031 +6483,81191,literacy,1393143956 +6483,81191,social commentary,1393144008 +6483,81191,unions,1393143966 +6483,88837,Canadian,1391913317 +6483,88837,funny,1391913265 +6483,88837,Historical References,1391913293 +6483,88837,original,1391913257 +6483,88837,pace,1391913334 +6483,88837,quirky,1391914089 +6483,89074,quirky,1408706099 +6483,89761,adultery,1419470268 +6483,89761,biopic,1419470265 +6483,89761,history,1419470279 +6483,89904,silent genre,1377229543 +6483,89904,Silent movie references,1377229553 +6483,89904,Stylised,1377229590 +6483,89904,visually appealing,1377229605 +6483,90357,acting,1417171290 +6483,90357,character development,1417171270 +6483,90357,writing,1417171281 +6483,91505,atmospheric,1417488914 +6483,91505,ethics,1417488916 +6483,91505,silence,1417488927 +6483,91869,american dream,1407580895 +6483,91869,Elmo,1407580861 +6483,91869,muppets,1407580845 +6483,91869,Music,1407580869 +6483,93790,Dark,1392894361 +6483,93790,Suicide,1392894357 +6483,95088,Understated charm,1413707490 +6483,99007,funny,1378106467 +6483,99007,quirky,1378106376 +6483,99007,quirky romantic,1378106390 +6483,99007,unconventional,1378106457 +6483,100342,easily confused with other movie(s) (title),1393849386 +6483,100342,true story,1393849351 +6483,100714,dialogue heavy,1406716835 +6483,102819,BASED ON BOOK,1373009270 +6483,102819,Gay,1373009284 +6483,104314,documentary,1399545933 +6483,104314,history,1399545923 +6483,104319,Africa,1414750505 +6483,104319,based on a true story,1414750526 +6483,104319,Kenya,1414750505 +6483,104319,Swahili,1414750505 +6483,105197,black and white,1407499411 +6483,105197,dementia,1407493104 +6483,105197,slow,1407499429 +6483,106100,AIDS,1412935500 +6483,106920,ending,1392720477 +6483,106920,original,1392720447 +6483,106920,quirky,1392720447 +6483,109108,death,1406891756 +6483,109108,dosumentary,1406891747 +6483,109108,unusual,1406891739 +6483,109209,activism,1406440307 +6483,109209,lgbt,1406440307 +6483,109209,prejudice,1406440411 +6483,109374,quirky,1402671178 +6483,112764,disability,1405826358 +6483,112764,Documentary,1405826344 +6483,112764,interviews,1405826385 +6483,112764,lighting,1405826334 +6483,112764,sexuality,1405826367 +6483,112770,gender identity,1405833366 +6483,112770,Gender Issues,1405833377 +6483,112770,medical,1405833390 +6483,112770,psychiatry,1405833410 +6483,112856,documentary,1410089438 +6483,112856,Holocaust,1410089420 +6483,113122,Animals,1407067146 +6483,113122,BBC Films,1407067103 +6483,113122,documentary,1407067103 +6483,113122,language experiment,1407067114 +6483,113122,Science,1407067128 +6483,114909,Discovery,1413017697 +6483,114909,Diving,1413017687 +6483,114909,Fish,1413017691 +6483,114909,History,1413017709 +6483,115403,brothers,1414064627 +6483,115403,Islam,1414064612 +6483,115403,jihad,1414064659 +6483,132800,mental illness,1441550116 +6483,132800,quirky,1441550128 +6483,139084,Coming Out,1441247381 +6483,139084,Gay,1441247374 +6483,141737,roadtrip,1441239430 +6500,356,lord of the ring,1163412242 +6527,593,crime,1424288574 +6527,593,mental illness,1424288574 +6527,593,psychothriller,1424288574 +6527,103042,comic book,1408806911 +6527,103042,Superman,1408806897 +6527,103042,visually appealing,1408806691 +6530,59869,disease,1430946808 +6530,59869,epidemic,1430946806 +6530,70703,history,1423369668 +6530,70703,john glen,1423369668 +6530,70703,marlon brando,1423369668 +6530,109687,collider,1434429715 +6530,109687,higgs,1434429739 +6530,109687,physics,1434429683 +6530,109687,stem,1434429757 +6530,122575,Theodore Roosevelt,1424061342 +6530,122575,Tom Berenger,1424061359 +6530,122575,war,1424061329 +6532,3173,Pacino,1138913177 +6532,4848,overrated,1138912693 +6532,5152,Ganska tam krigsrulle,1137707695 +6532,7569,Bond,1137707724 +6542,260,classic sci-fi,1433258081 +6542,260,Science Fiction,1433258070 +6549,4027,George Clooney,1439133227 +6549,4027,Musical,1439133220 +6549,4027,updated classics,1439133225 +6549,112175,animated,1439133177 +6549,112175,sequel,1439133180 +6567,260,cult classic,1433162448 +6567,260,far future,1433162463 +6567,260,masterpiece,1433162428 +6567,260,space adventure,1433162434 +6567,260,space western,1433162473 +6567,260,the force,1433162441 +6567,4878,dreamlike,1433163134 +6567,4878,mystery,1433163114 +6567,4878,philosophy,1433163124 +6567,4878,psychological,1433163107 +6567,4878,sci-fi,1433163166 +6567,4878,surreal,1433163094 +6567,4878,teen,1433163150 +6567,4878,time travel,1433163092 +6567,122882,action,1433163348 +6567,122882,adventure,1433163348 +6567,122882,consistent,1433163348 +6567,122882,cult,1433163348 +6567,122882,dark comedy,1433163348 +6567,122882,desert,1433163348 +6567,122882,dynamic,1433163348 +6567,122882,post apocalyptic,1433163348 +6567,122882,road movie,1433163348 +6567,122882,sci-fi,1433163348 +6567,122882,surreal,1433163348 +6573,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1438710651 +6573,260,The battle begins - The love story begins. Enjoy an intergalactic ride with the eponymous heroes fighting an assortment of baddies who have a sinister master,1438710923 +6592,318,hope,1433198417 +6592,318,injustice,1433198417 +6592,318,prison escape,1433198417 +6592,2997,satirical,1433198509 +6592,2997,surrealism,1433198503 +6592,2997,twist ending,1433198518 +6592,4975,fatastic genre,1433198866 +6592,4975,nonlinear,1433198676 +6592,4975,schizophrenia,1433198911 +6592,4975,surreal,1433198656 +6592,5673,music,1433198477 +6592,5673,symbolism,1433198460 +6592,7361,bittersweet,1433198289 +6592,7361,nonlinear,1433198296 +6592,7361,surrealism,1433198271 +6592,7361,thought-provoking,1433198279 +6592,54962,bad ending,1433198590 +6592,54962,stupid twist,1433198567 +6592,103341,aging,1417914355 +6592,103341,aliens,1417914384 +6592,103341,drinking,1417914374 +6592,103341,funny,1417914367 +6592,103341,pub crawl,1417914357 +6592,103341,slow start,1417914348 +6592,106920,meaning of life,1433198214 +6592,106920,original plot,1433198220 +6592,106920,thought-provoking,1433198229 +6601,32,great ending,1439320028 +6601,32,mindfuck,1439320024 +6601,32,time travel,1439320013 +6601,32,twist ending,1439320016 +6601,4226,complicated,1439320046 +6601,4226,cult film,1439320049 +6601,4226,twist ending,1439320042 +6601,5418,amnesia,1439319673 +6601,6016,coming of age,1439319766 +6601,6016,multiple storylines,1439319754 +6601,6016,violence,1439319756 +6601,59315,funny,1439319781 +6601,68358,alternate reality,1439319714 +6601,68358,jj abrams,1439319721 +6601,68358,time travel,1439319710 +6601,69757,cynicism,1440528699 +6601,69757,intelligent,1440528685 +6601,69757,Joseph Gordon-Levitt,1440528683 +6601,69757,music,1440528687 +6601,69757,Zooey Deschanel,1440528681 +6601,79132,Joseph Gordon-Levitt,1440528736 +6601,79132,Leonardo DiCaprio,1440528738 +6601,79132,mindfuck,1440528739 +6601,96610,Bruce Willis,1440528751 +6601,96610,Joseph Gordon-Levitt,1440528749 +6601,96610,time travel,1440528753 +6601,111759,Emily Blunt,1439319536 +6601,111759,future,1439319545 +6601,111759,time loop,1439319539 +6601,115467,Alison Brie,1439319612 +6601,134130,sci-fi,1444669521 +6601,134130,Space,1444669518 +6612,64614,racism,1436911743 +6612,64957,Aging,1436911723 +6640,70,cult film,1423617012 +6640,70,gore,1423617002 +6640,70,so bad it's good,1423616997 +6640,70,splatter,1423616987 +6640,70,twist ending,1423617016 +6640,1211,dreamlike,1421276643 +6640,1211,low speed,1421276675 +6640,1211,poetic,1421276639 +6640,1625,atmospheric,1422223534 +6640,1625,Mystery,1422223524 +6640,1625,psychological,1422223521 +6640,1625,twist ending,1422223516 +6640,2712,disturbing,1420537750 +6640,2712,dreamlike,1420537736 +6640,2712,psychological,1420537744 +6640,3052,controversial,1423616848 +6640,3052,religion,1423616865 +6640,4973,drama,1423569331 +6640,4973,fairy tale,1423569320 +6640,4973,imagination,1423569329 +6640,4973,inspirational,1423569318 +6640,4973,stylized,1423569315 +6640,6214,disturbing,1417020110 +6640,6214,mindfuck,1417020117 +6640,6214,nonlinear,1417020114 +6640,6214,rape,1417020123 +6640,6880,escaping,1417020197 +6640,6975,disturbing,1417019020 +6640,6975,sadism,1417019030 +6640,8950,atmospheric,1417012040 +6640,8950,disturbing,1417012048 +6640,8950,great acting,1417012056 +6640,8950,psychology,1417012037 +6640,33880,bittersweet,1423325192 +6640,33880,quirky,1423325190 +6640,33880,weird,1423325194 +6640,41285,thrilling,1428497397 +6640,41285,twist ending,1428497399 +6640,42723,torture,1417020143 +6640,44397,predictable,1417020217 +6640,48043,death,1423569068 +6640,48043,dreamlike,1423569062 +6640,48043,multiple storylines,1423569074 +6640,48043,surreal,1423569071 +6640,48043,thought-provoking,1423569065 +6640,66665,philosophical,1422455556 +6640,66665,smart dialogues,1422455562 +6640,69134,cinematography,1417019682 +6640,69134,Lars von Trier,1417019696 +6640,69134,violence,1417019693 +6640,69134,weird,1417019686 +6640,74228,mystery,1417019588 +6640,74228,Surreal,1417019599 +6640,74458,intense,1417012203 +6640,74458,mindfuck,1417012183 +6640,74458,mystery,1417012155 +6640,74458,psychological,1417012151 +6640,74458,reality or imagination?,1417012214 +6640,74458,surreal,1417012200 +6640,74458,twist ending,1417012150 +6640,79132,mindfuck,1416827381 +6640,79132,multiple interpretations,1416827395 +6640,79132,philosophy,1416827385 +6640,79132,surreal,1416827374 +6640,90376,disturbing,1423624786 +6640,90376,insanity,1423624788 +6640,90376,psychological,1423616159 +6640,90430,psychological,1424037075 +6640,91485,explosions,1417011902 +6640,94815,surrealism,1425592018 +6640,98961,complex morality,1422612513 +6640,107406,dystopia,1421590445 +6640,107406,post-apocalyptic,1421590447 +6640,107406,revolution,1421590454 +6640,107406,social commentary,1421590450 +6640,109161,psychological,1424036980 +6640,109487,ambitious,1417011554 +6640,109487,Christopher Nolan,1417011541 +6640,109487,interesting ideea,1417011575 +6640,109487,philosophical issues,1417011583 +6640,109487,thought-provoking,1417011549 +6640,111622,friendship,1429206589 +6640,113225,atheism,1427545584 +6640,113225,philosophical,1427545612 +6640,113225,skepticism,1427545590 +6640,114601,bittersweet,1422491341 +6658,8974,excellent,1143002500 +6687,296,Black comedy,1295125294 +6687,296,cult film,1295125302 +6687,296,Quentin Tarantino,1295125298 +6687,296,stylized,1295125289 +6687,44191,dystopia,1295126326 +6689,47,worst ever,1180227635 +6689,1092,debased,1180226964 +6689,2439,agonizing,1180226815 +6689,2959,mindfuck,1180226230 +6689,3677,manipulative,1180226917 +6689,3747,awful,1180227333 +6689,34338,Vulgar,1180226879 +6709,1086,Alfred Hitchcock,1296431406 +6709,1086,classic,1296431423 +6709,1086,Exceptional Acting,1296431418 +6709,1086,Grace Kelly,1296431412 +6709,2871,Thriller,1296368858 +6709,40732,suspense,1296709218 +6757,110591,horror,1435677939 +6757,110591,mindfuck,1435677939 +6757,110591,suspenseful,1435677939 +6757,117434,cult,1434654004 +6757,117434,hollywood,1434654004 +6757,117434,horror,1434654004 +6791,49272,James Bond,1163817642 +6793,364,animation,1426691166 +6793,364,Childhood,1426691201 +6793,364,Disney,1426691149 +6793,364,father-son relationship,1426691205 +6793,364,inspirational,1426691183 +6793,745,comedy,1426691354 +6793,745,funny,1426691344 +6793,745,witty,1426691349 +6793,5971,love for children,1426691285 +6793,5971,love for family,1426691285 +6793,5971,love for nature,1426691285 +6798,50,Kevin Spacey,1440682402 +6798,912,classic romance,1440682302 +6802,74,Romance,1178096919 +6802,8533,Romance,1183713078 +6802,31427,idiotic,1154330626 +6802,52644,classic horror brought to life,1198689760 +6820,260,good vs evil,1441514454 +6820,260,Science Fiction,1441514476 +6822,93991,drama,1424638772 +6822,93991,finnish,1424638772 +6822,93991,mystery,1424638772 +6822,114838,horror,1429639899 +6822,114838,nudity (full frontal),1429639899 +6822,114838,sorority,1429639899 +6822,132444,experimental,1433190877 +6822,132444,psychedelic,1433190877 +6822,132444,sci-fi,1433190877 +6822,132444,silent movie,1433190877 +6859,1035,children,1318325134 +6859,1035,music,1318325144 +6859,1035,Oscar (Best Directing),1318325160 +6871,107,treasure,1368809508 +6871,231,dumb,1308604276 +6871,231,goofy,1308603862 +6871,231,irreverent,1308603881 +6871,231,Jeff Daniels,1308603857 +6871,231,Jim Carrey,1308603853 +6871,231,quirky,1308603865 +6871,231,road trip,1308603868 +6871,231,stupid,1308603870 +6871,231,toilet humor,1308603850 +6871,353,dark hero,1368809574 +6871,357,British,1308603137 +6871,357,chick flick,1308603140 +6871,357,Comedy,1308603139 +6871,357,english humor,1308603251 +6871,357,friendship,1308603233 +6871,357,funeral,1308603182 +6871,357,Hugh Grant,1308603133 +6871,357,London,1308603269 +6871,357,love,1308603176 +6871,357,relationships,1308603163 +6871,357,romance,1308603172 +6871,357,Rowan Atkinson,1308603148 +6871,357,wedding,1308603153 +6871,357,witty,1308603225 +6871,380,arnold,1368809620 +6871,440,chick flick,1308259041 +6871,440,fantasy,1308259029 +6871,440,light,1308259148 +6871,440,predictible,1308258977 +6871,440,unfunny,1308258989 +6871,440,unsubtle,1308259118 +6871,440,US President,1308259037 +6871,485,arnold,1368809620 +6871,494,mountain climbing,1368810332 +6871,521,noir thriller,1368809521 +6871,589,arnold,1368809620 +6871,592,dark hero,1368809574 +6871,910,screwball comedy,1368809634 +6871,913,noir thriller,1368809521 +6871,951,entirely dialogue,1368809762 +6871,1206,short-term memory loss,1368810353 +6871,1240,arnold,1368809620 +6871,1248,noir thriller,1368809521 +6871,1270,1950s,1308756662 +6871,1270,1980s,1308756438 +6871,1270,adventure,1308756436 +6871,1270,classic,1308756447 +6871,1270,comedy,1308756449 +6871,1270,delorean,1308756647 +6871,1270,fantasy,1308756684 +6871,1270,Funny,1308756450 +6871,1270,future,1308756452 +6871,1270,guitar,1308756581 +6871,1270,high school,1308756454 +6871,1270,HIGH SCHOOL LIFE,1308756559 +6871,1270,humorous,1308756456 +6871,1270,rock,1308756599 +6871,1270,rock and roll,1308756595 +6871,1270,romance,1308756695 +6871,1270,science fiction,1308756675 +6871,1270,spielberg,1368810375 +6871,1270,Steven Spielberg,1308756486 +6871,1270,teen,1308756522 +6871,1270,time machine,1308756495 +6871,1270,time travel,1308756488 +6871,1291,spielberg,1368810375 +6871,1291,treasure,1368809508 +6871,1387,spielberg,1368810375 +6871,1391,mars,1368809559 +6871,1580,conspiracy theory,1368809874 +6871,1783,noir thriller,1368809521 +6871,2011,adventure,1308756741 +6871,2011,Christopher Lloyd,1308756838 +6871,2011,classic,1308756741 +6871,2011,comedy,1308756740 +6871,2011,Complex,1308756800 +6871,2011,delorean,1308756810 +6871,2011,fantasy,1308756741 +6871,2011,Funny,1308756741 +6871,2011,future,1308756741 +6871,2011,humorous,1308756740 +6871,2011,sci-fi,1308756857 +6871,2011,science fiction,1308756740 +6871,2011,Steven Spielberg,1308756810 +6871,2011,time machine,1308756741 +6871,2011,time travel,1308756741 +6871,2012,adventure,1308756889 +6871,2012,Christopher Lloyd,1308756889 +6871,2012,classic,1308756889 +6871,2012,comedy,1308756888 +6871,2012,Complex,1308756889 +6871,2012,fantasy,1308756889 +6871,2012,Funny,1308756889 +6871,2012,future,1308756889 +6871,2012,humorous,1308756888 +6871,2012,sci-fi,1308756888 +6871,2012,science fiction,1308756888 +6871,2012,Steven Spielberg,1308756897 +6871,2012,time machine,1308756889 +6871,2012,time travel,1308756889 +6871,2012,trains,1308756907 +6871,2012,western,1308756904 +6871,2022,christian,1368809665 +6871,2022,jesus,1368809485 +6871,2028,spielberg,1368810375 +6871,2076,neo-noir,1368809731 +6871,2115,spielberg,1368810375 +6871,2115,treasure,1368809508 +6871,2125,chick flick,1308578442 +6871,2125,cliche,1308578437 +6871,2125,Drew Barrymore,1308578369 +6871,2125,fairy tale,1308578360 +6871,2125,fantasy,1308578463 +6871,2125,historically inaccurate,1308578413 +6871,2125,light,1308578380 +6871,2125,love,1308578454 +6871,2125,love story,1308578451 +6871,2125,previsible,1308578426 +6871,2125,prince,1308578404 +6871,2125,romance,1308578382 +6871,2125,royalty,1308578391 +6871,2143,dragon,1368809992 +6871,2405,treasure,1368809508 +6871,2617,treasure,1368809508 +6871,2662,mars,1368809558 +6871,2671,bookshop,1308504396 +6871,2671,British,1308504132 +6871,2671,England,1308504141 +6871,2671,girlie movie,1308504456 +6871,2671,Hugh Grant,1308504144 +6871,2671,Julia Roberts,1308504159 +6871,2671,London,1308504203 +6871,2671,nice guy,1308504305 +6871,2671,overrated,1308504385 +6871,2671,predictable,1308504178 +6871,2671,romance,1308504182 +6871,2671,unrealistic,1308504245 +6871,2671,unsubtle,1308504285 +6871,2718,cheerleading,1368809606 +6871,2726,noir thriller,1368809521 +6871,2840,jesus,1368809485 +6871,2916,arnold,1368809620 +6871,3052,jesus,1368809485 +6871,4014,chocolate,1308177165 +6871,4014,delicious,1308177436 +6871,4014,family,1308177383 +6871,4014,food,1308177316 +6871,4014,Johnny Depp,1308177110 +6871,4014,kindness,1308177242 +6871,4014,love,1308177126 +6871,4014,pleasure,1308177230 +6871,4014,puritan,1308177376 +6871,4014,small town,1308177310 +6871,4246,based on a book,1309211834 +6871,4246,British,1309215508 +6871,4246,comedy,1309215501 +6871,4246,drama,1309215536 +6871,4246,family,1309215544 +6871,4246,friendship,1309215554 +6871,4246,funny,1309215577 +6871,4246,girlie movie,1309215503 +6871,4246,Hugh Grant,1309211826 +6871,4246,love,1309215560 +6871,4246,love story,1309215601 +6871,4246,narrated,1309215596 +6871,4246,Renee Zellweger,1309211825 +6871,4246,romance,1309211828 +6871,5377,based on book,1308955472 +6871,5377,british,1308955423 +6871,5377,british comedy,1308955425 +6871,5377,comedy,1308955447 +6871,5377,coming of age,1308955429 +6871,5377,drama,1308955463 +6871,5377,feel-good,1308955461 +6871,5377,funny,1308955448 +6871,5377,Hugh Grant,1308955431 +6871,5377,nick hornby,1308955477 +6871,5377,romance,1308955439 +6871,5445,spielberg,1368810375 +6871,6539,treasure,1368809508 +6871,6863,elementary school,1309117540 +6871,6863,for kids,1309117597 +6871,6863,great soundtrack,1309118554 +6871,6863,guitar,1309117646 +6871,6863,guitarist,1309117652 +6871,6863,hard rock,1309117664 +6871,6863,heavy metal,1309117670 +6871,6863,Jack Black,1309117588 +6871,6863,music,1309117535 +6871,6863,passion,1309117679 +6871,6863,passionate,1309117553 +6871,6863,Rock,1309117643 +6871,6863,rock and roll,1309117514 +6871,6863,rock band,1309117657 +6871,6863,teacher,1309117562 +6871,6942,british,1309117849 +6871,6942,christmas,1309117851 +6871,6942,England,1309117853 +6871,6942,guilty pleasure,1309117862 +6871,6942,Hugh Grant,1309117826 +6871,6942,multiple storylines,1309117827 +6871,6942,predictable,1309117845 +6871,6942,Romance,1309117834 +6871,6942,Rowan Atkinson,1309117842 +6871,7013,noir thriller,1368809521 +6871,7318,jesus,1368809485 +6871,7361,short-term memory loss,1368810353 +6871,7386,christian,1368809665 +6871,8366,christian,1368809665 +6871,8622,conspiracy theory,1368809874 +6871,8969,absurd,1309302804 +6871,8969,bad sequel,1309302909 +6871,8969,chick flick,1309302803 +6871,8969,Colin Firth,1309302868 +6871,8969,Hugh Grant,1309302856 +6871,8969,previsible,1309302827 +6871,8969,Renee Zellweger,1309302854 +6871,8969,sequel,1309302848 +6871,8969,unfunny,1309302836 +6871,8969,unrealistic,1309302830 +6871,8969,weak,1309302822 +6871,26838,Dublin,1309389433 +6871,26838,family,1309390198 +6871,26838,family fun,1309390205 +6871,26838,father daughter relationship,1309389427 +6871,26838,gossip,1309389446 +6871,26838,Irish,1309389399 +6871,26838,pregnancy,1309389420 +6871,26838,pub,1309390338 +6871,26838,working class,1309389418 +6871,31685,boring,1308520616 +6871,31685,dating advice,1308520576 +6871,31685,pick up,1308520571 +6871,31685,predictable,1308520612 +6871,31685,seduction,1308520604 +6871,31685,Will Smith,1308520597 +6871,33162,christian,1368809665 +6871,46976,baking,1308510209 +6871,46976,captivating,1308510517 +6871,46976,cookies,1308510205 +6871,46976,cuddle,1308510260 +6871,46976,Dustin Hoffman,1308510201 +6871,46976,Emma Thompson,1308510539 +6871,46976,fantasy,1308510119 +6871,46976,guitar,1308510149 +6871,46976,love,1308510133 +6871,46976,Maggie Gyllenhaal,1308510547 +6871,46976,narrated,1308510068 +6871,46976,punk,1308510143 +6871,46976,romance,1308510129 +6871,46976,storytelling,1308510084 +6871,46976,surreal,1308510064 +6871,46976,taxes,1308510171 +6871,46976,Will Ferrell,1308510533 +6871,46976,wrist watch,1308510389 +6871,46976,writers,1308510062 +6871,46976,writing,1308510059 +6871,48385,anti-racism,1308177535 +6871,48385,anti-Semitism,1308177546 +6871,48385,controversial,1308177559 +6871,48385,crude humor,1308177543 +6871,48385,feminism,1308177607 +6871,48385,funny,1308177596 +6871,48385,irreverent,1308177656 +6871,48385,Male nudity,1308177498 +6871,48385,mockumentary,1308177587 +6871,48385,poverty,1308177634 +6871,48385,prostitution,1308177512 +6871,48385,racism,1308177518 +6871,48385,road trip,1308177564 +6871,48385,Sacha Baron Cohen,1308177503 +6871,48385,satire,1308177505 +6871,48385,social commentary,1308177506 +6871,50685,Adrienne Shelly,1308166681 +6871,50685,bad poetry,1308166592 +6871,50685,baking,1308166606 +6871,50685,bittersweet,1308166574 +6871,50685,doctors,1308166670 +6871,50685,infidelity,1308166586 +6871,50685,Keri Russell,1308166608 +6871,50685,life reflection,1308166580 +6871,50685,marriage,1308166624 +6871,50685,pie,1308166700 +6871,50685,pro-life,1308166645 +6871,50685,small town,1308166617 +6871,51084,british,1308519701 +6871,51084,chick flick,1308519668 +6871,51084,childish,1308520513 +6871,51084,comedy,1308519640 +6871,51084,composer,1308519754 +6871,51084,Drew Barrymore,1308519617 +6871,51084,english,1308519694 +6871,51084,Hugh Grant,1308519601 +6871,51084,light,1308519776 +6871,51084,love,1308519718 +6871,51084,lyricist,1308519761 +6871,51084,lyrics,1308519653 +6871,51084,new wave,1308519737 +6871,51084,parody,1308519609 +6871,51084,pop,1308519612 +6871,51084,previsible,1308519680 +6871,51084,romance,1308519713 +6871,51084,songs,1308519649 +6871,63082,bollywood,1368809460 +6871,71106,english,1308176234 +6871,71106,friendship,1308176067 +6871,71106,funny,1308176100 +6871,71106,future,1308176104 +6871,71106,nerds,1308176115 +6871,71106,off-beat,1308176177 +6871,71106,pub,1308176121 +6871,71106,sci-fi,1308176072 +6871,71106,surreal,1308176091 +6871,71106,time travel,1308176214 +6871,76763,girl band,1309125089 +6871,76763,glam rock,1309125079 +6871,76763,punk rock,1309125070 +6871,76763,rock,1309125098 +6871,76763,rock band,1309125093 +6871,78034,1970s,1308954979 +6871,78034,bar fight,1308955092 +6871,78034,british,1308955033 +6871,78034,comedy,1308955142 +6871,78034,english,1308955044 +6871,78034,factory,1308955059 +6871,78034,fart jokes,1308955072 +6871,78034,father-son relationship,1308955126 +6871,78034,friendship,1308955012 +6871,78034,glam rock,1308954987 +6871,78034,insurance,1308955054 +6871,78034,jokes,1308955147 +6871,78034,love,1308955004 +6871,78034,Ricky Gervais,1308954994 +6871,78034,romance,1308954999 +6871,78034,runaway,1308955190 +6871,80219,action,1308602723 +6871,80219,black comedy,1308602728 +6871,80219,dark comedy,1308602788 +6871,80219,drugs,1308602797 +6871,80219,gore,1308602760 +6871,80219,guns,1308602816 +6871,80219,immigrants,1308602747 +6871,80219,Jessica Alba,1308602699 +6871,80219,knives,1308602810 +6871,80219,Mexico,1308602763 +6871,80219,Nudity,1308602708 +6871,80219,revenge,1308602731 +6871,80219,Robert De Niro,1308602701 +6871,80219,satire,1308602735 +6871,80219,Steven Seagal,1308602713 +6871,80219,Texas,1308602770 +6871,80219,violent,1308602739 +6871,80693,based on a book,1308963450 +6871,80693,cliche,1308963426 +6871,80693,coming of age,1308963445 +6871,80693,depression,1308963447 +6871,80693,generic,1308963555 +6871,80693,mental illness,1308963531 +6871,80693,obvious,1308963493 +6871,80693,suicide,1308963457 +6871,80693,Zach Galifianakis,1308963438 +6880,2959,complicated,1439436838 +6880,2959,craziness,1439436915 +6880,2959,crazy,1439436881 +6880,2959,dark comedy,1439436659 +6880,2959,Edward Norton,1439436630 +6880,2959,mindfuck,1439436828 +6880,2959,philosophy,1439436653 +6880,2959,psychological,1439436651 +6880,2959,psychology,1439436632 +6880,2959,quirky,1439436825 +6880,2959,thought-provoking,1439436642 +6880,2959,twist ending,1439436635 +6880,8641,comedy,1439310570 +6880,8641,goofy,1439310602 +6880,8641,hilarious,1439310571 +6880,8641,Steve Carell,1439310558 +6880,8641,stupid,1439310568 +6880,8641,Will Ferrell,1439310559 +6880,54503,comedy,1439310716 +6880,54503,Michael Cera,1439310713 +6880,58559,Heath Ledger,1439309094 +6880,69122,comedy,1439310109 +6880,69122,Drinking,1439310112 +6880,69122,drugs,1439310113 +6880,69122,funny,1439310123 +6880,69122,Hilarious,1439310131 +6880,69122,Zach Galifianakis,1439310115 +6880,69122,Zach Galifinakis,1439310118 +6880,71535,Bill Murray,1439438050 +6880,71535,clever,1439438211 +6880,71535,clowns,1439438176 +6880,71535,comedy,1439438074 +6880,71535,dark comedy,1439438201 +6880,71535,Emma Stone,1439438056 +6880,71535,funny,1439438203 +6880,71535,Jesse Eisenberg,1439438069 +6880,71535,post-apocalyptic,1439438048 +6880,71535,predictable ending,1439438244 +6880,71535,too random,1439438298 +6880,71535,witty,1439438200 +6880,71535,zombies,1439438204 +6880,74458,Leonardo DiCaprio,1443850550 +6880,74458,mindfuck,1443850554 +6880,74458,nazis,1443850546 +6880,74458,plot twist,1443850559 +6880,74458,surreal,1443850605 +6880,74458,thought-provoking,1443850513 +6880,74458,too long,1443850531 +6880,74458,twist ending,1443850470 +6880,78499,animation,1439310636 +6880,78499,childhood,1439310638 +6880,78499,franchise,1439310647 +6880,78499,music,1439310670 +6880,78499,Pixar,1439310634 +6880,78499,sequel,1439310649 +6880,78499,story,1439310693 +6880,79132,alternate reality,1439309953 +6880,79132,clever,1439309960 +6880,79132,complicated,1439309970 +6880,79132,drama,1439309981 +6880,79132,Joseph Gordon-Levitt,1439309966 +6880,79132,Leonardo DiCaprio,1439309944 +6880,79132,mindfuck,1439309946 +6880,79132,thought-provoking,1439309942 +6880,79132,twist ending,1439309976 +6880,80463,computers,1443840686 +6880,80463,Jesse Eisenberg,1443840693 +6880,80463,Justin Timberlake,1443840704 +6880,80463,nerds,1443840697 +6880,80463,software developers,1443840706 +6880,80463,true story,1443840690 +6880,81537,boring,1439310182 +6880,81537,road trip,1439310173 +6880,81537,Robert Downey Jr.,1439310170 +6880,81537,unoriginal,1439310176 +6880,81537,Zach Galifianakis,1439310168 +6880,87869,black comedy,1439310199 +6880,87869,Funny,1439310212 +6880,87869,Jennifer Aniston,1439310200 +6880,87869,Kevin Spacey,1439310231 +6880,87869,weak ending,1439310204 +6880,88129,boring,1439438503 +6880,88129,Dark,1439438487 +6880,88129,great soundtrack,1439438518 +6880,88129,minimalistic,1439438485 +6880,88129,Ryan Gosling,1439438482 +6880,88129,slow,1439438493 +6880,88812,entertaining,1439310282 +6880,88812,funny,1439310342 +6880,88812,Jesse Eisenberg,1439310331 +6880,88812,story,1439310339 +6880,95441,crude humor,1439310377 +6880,95441,Funny,1439310383 +6880,95441,Mark Wahlberg,1439310376 +6880,95441,Mila Kunis,1439310374 +6880,95441,plot,1439310446 +6880,95441,pointless,1439310408 +6880,95441,predictable,1439310380 +6880,95441,storyline,1439310441 +6880,96610,bad science,1439310026 +6880,96610,clever,1439310045 +6880,96610,future,1439310049 +6880,96610,Joseph Gordon-Levitt,1439310031 +6880,96610,plot holes,1439310043 +6880,96610,time travel,1439310035 +6880,104211,all the best parts are in the trailer,1439310511 +6880,104211,Emma Roberts,1439310535 +6880,104211,Jennifer Aniston,1439310496 +6880,106100,inspirational,1439437089 +6880,106100,Jared Leto,1439437057 +6880,106100,Matthew McConaughey,1439437028 +6880,106100,realism,1439437078 +6880,106100,uplifting,1439437105 +6880,112552,drama,1439309272 +6880,112552,good acting,1439309262 +6880,112552,jazz,1439309237 +6880,112552,psychological,1439309265 +6880,112552,Tense,1439309234 +6880,112852,adventure,1439436426 +6880,112852,characters with individual goals,1439436466 +6880,112852,comic,1439436449 +6880,112852,fun,1439436407 +6880,112852,humorous,1439436479 +6880,112852,product placement,1439436488 +6880,112852,sci-fi,1439436459 +6880,112852,space,1439436455 +6880,115617,adventure,1439309386 +6880,115617,Animation,1439309331 +6880,115617,funny,1439309333 +6880,115617,robotics,1439309342 +6880,115617,robots,1439309348 +6880,115617,sci-fi,1439309352 +6880,116797,Alan Turing,1439436261 +6880,116797,Benedict Cumberbatch,1439436278 +6880,116797,code breaking,1439436276 +6880,116797,Computers,1439436270 +6880,116797,genius,1439436292 +6880,116797,hisorically inaccurate,1439436348 +6880,116797,historical inaccuracy,1439436288 +6880,116797,history,1439436280 +6880,116797,informatics,1439436267 +6880,116797,intelligent,1439436355 +6880,116797,interesting,1439436364 +6880,116797,Keira Knightley,1439436269 +6880,116797,war,1439436302 +6880,116797,World War II,1439436262 +6880,117529,Chris Pratt,1439309420 +6880,117529,dinosaurs,1439309416 +6880,117529,humor,1439309527 +6880,117529,sci-fi,1439309442 +6880,117529,unreal,1439309514 +6880,117590,funny,1439309580 +6880,117590,Jennifer Aniston,1439309597 +6880,119141,goofy,1439309789 +6880,119141,James Franco,1439309633 +6880,119141,mad,1439309790 +6880,120635,action,1439309835 +6880,120635,unnecessary sequel,1439309857 +6880,120635,unrealistic,1439309845 +6880,129737,Dave Franco,1443840609 +6887,260,classic sci-fi,1444767751 +6887,260,science fantasy,1444767769 +6911,260,jedi,1439886755 +6911,260,starwars,1439886745 +6918,73000,Daniel Day-Lewis,1266852869 +6926,260,classic sci-fi,1439862539 +6937,4998,Oscar (Best Cinematography),1223633232 +6979,2872,Myth,1448124869 +6979,106491,asian mysticism,1448124839 +6979,106491,Samurai,1448124836 +6987,60069,Cute!,1426110636 +6987,60069,emotional,1426110626 +6987,60069,pixar,1426110608 +6993,260,sci-fi,1437877500 +6993,260,Star Wars,1437877511 +7010,113348,blew it,1432976202 +7010,113348,disapointment,1432976177 +7010,113348,missed a chance to bring subversive integrity to the TMNT movie line,1432976308 +7010,113348,wish this movie didnt exist,1432976342 +7014,2731,reflective,1437942167 +7014,93805,alternate history,1435848609 +7014,93805,chaotic,1435848594 +7014,93805,parody,1435848590 +7014,108592,mother-son relationship,1435845796 +7014,108592,psychological abuse,1435845807 +7014,120799,boring,1439372173 +7055,45361,435,1152175667 +7067,60684,alternate history,1244661652 +7067,60684,Length,1244661660 +7067,60684,storytelling,1244661671 +7123,180,1990s,1353214859 +7123,180,comic books,1353214851 +7123,180,good dialogue,1353214845 +7123,180,jason lee,1353214853 +7123,180,Jay and Silent Bob,1353214840 +7123,180,Kevin Smith,1353214843 +7123,180,view askew,1353214847 +7123,1077,AFI 100 (Laughs),1353214326 +7123,1077,funny,1353214320 +7123,1077,futuristic,1353214311 +7123,1077,surreal,1353214318 +7123,1077,time travel,1353214314 +7123,1077,Woody Allen,1353214308 +7123,35836,comedy,1353214727 +7123,35836,funny,1353214728 +7123,35836,marijuana,1353214737 +7123,35836,Seth Rogen,1353214732 +7123,35836,sex,1353214742 +7123,35836,Steve Carell,1353214736 +7123,80864,Naomi Watts,1353214525 +7123,80864,Woody Allen,1353214529 +7133,3000,Hayao Miyazaki,1243005768 +7133,27800,anime,1243007039 +7133,27800,Daft Punk,1243007017 +7133,27800,music,1243007036 +7133,31658,Hayao Miyazaki,1243005796 +7143,47,brad pitt,1424825641 +7143,47,morgan freeman,1424825635 +7143,47,twist ending,1424825632 +7143,50,Kevin Spacey,1424825613 +7143,50,twist ending,1424825609 +7143,527,history,1424825584 +7156,7099,fantasy world,1445154901 +7156,7099,Studio Ghibli,1445154892 +7161,26,Shakespeare,1355296201 +7165,2329,Edward Norton,1343388978 +7165,2329,emotional,1343389018 +7168,260,fairy tale,1439916492 +7168,260,legendary,1439916507 +7189,1240,excellent,1425666369 +7189,1270,clasic,1425666232 +7195,32,sci-fi,1209510017 +7195,924,sci-fi,1209516302 +7195,1059,Leonardo DiCaprio,1209509565 +7195,1059,romance,1209509571 +7195,1127,sci-fi,1209509479 +7195,1199,sci-fi,1209509861 +7195,1584,sci-fi,1209508400 +7195,1653,sci-fi,1209508523 +7195,1721,Leonardo DiCaprio,1209137953 +7195,1721,romance,1209137953 +7195,1721,true story,1209137953 +7195,1779,sci-fi,1209508410 +7195,2424,romance,1209138429 +7195,2997,sci-fi,1209510218 +7195,3285,Leonardo DiCaprio,1209137677 +7195,3285,romance,1209137677 +7195,4975,sci-fi,1209509953 +7195,5445,Tom Cruise,1209138475 +7195,5989,Leonardo DiCaprio,1209137733 +7195,5989,true story,1209137777 +7195,8798,Tom Cruise,1209138511 +7195,34048,action,1209138408 +7195,34048,aliens,1209138399 +7195,34048,Tom Cruise,1209138393 +7195,47382,dance,1209505534 +7213,318,hope,1434447215 +7213,318,inspirational,1434447239 +7213,318,prison break,1434447126 +7213,7502,"army, world war 2",1434446976 +7213,7502,d day,1434446976 +7213,7502,world war ii,1434446976 +7220,125,Ben Stiller,1368375940 +7220,125,Nudity (Topless - Brief),1368375937 +7220,125,Screwball Comedy,1368375933 +7220,317,children,1420161687 +7220,317,Christmas,1420161670 +7220,317,David Krumholtz,1420161701 +7220,317,elves,1420161689 +7220,317,family movie,1420161691 +7220,317,fantasy,1420161692 +7220,317,funny,1420161694 +7220,317,holiday,1420161680 +7220,317,John Pasquin,1420161682 +7220,317,Judge Reinhold,1420161684 +7220,317,North Pole,1420161696 +7220,317,Santa Claus,1420161676 +7220,317,Tim Allen,1420161678 +7220,317,Wendy Crewson,1420161725 +7220,317,whiny kid,1420161698 +7220,648,Action,1352788567 +7220,648,espionage,1352788565 +7220,648,murder,1352788562 +7220,919,based on a book,1371507154 +7220,919,fantasy,1371507146 +7220,919,talking animals,1371507151 +7220,1274,AFTER THE APOCALYPSE,1182566288 +7220,1274,atmospheric,1182566315 +7220,1274,fighting,1182566299 +7220,1274,PSYCHIC ABILITIES,1182566294 +7220,1544,dinosaurs,1217295960 +7220,1544,Julianne Moore,1217295958 +7220,1544,Steven Spielberg,1217295962 +7220,1580,action,1338240536 +7220,1580,aliens,1338240542 +7220,1580,sci-fi,1338240539 +7220,1626,pollution,1230622035 +7220,1626,Steven Seagal,1230622013 +7220,1673,dark comedy,1353302191 +7220,1673,drugs,1353302198 +7220,1673,Nudity (Topless - Notable),1353302201 +7220,1801,adventure,1385746870 +7220,1801,Based on a book,1385746880 +7220,1801,remake,1385746875 +7220,1909,action,1293154006 +7220,1909,aliens,1293154009 +7220,1909,conspiracy,1293154004 +7220,2115,archaeology,1217376888 +7220,2115,Harrison Ford,1217376892 +7220,2115,Steven Spielberg,1217376891 +7220,2167,vampire,1218506326 +7220,2167,vampires,1218506325 +7220,2167,Wesley Snipes,1218506323 +7220,2294,animation,1222350086 +7220,2294,coming of age,1222350084 +7220,2294,Pixar,1222350083 +7220,2297,based on a book,1374432677 +7220,2297,surreal,1374432700 +7220,3300,futuristic,1187147195 +7220,3300,Vin Diesel,1187147206 +7220,3408,based on a true story,1184800430 +7220,3408,Inspiring,1184800425 +7220,3408,true story,1184800423 +7220,3409,gore,1213752767 +7220,3409,hilarious,1213752760 +7220,3409,premonition,1213752753 +7220,3439,Based on a cartoon,1222350126 +7220,3439,ninja,1222350129 +7220,3439,superhero,1222350127 +7220,3623,action,1352788556 +7220,3623,adventure,1352788552 +7220,3623,espionage,1352788554 +7220,3717,Angelina Jolie,1213752869 +7220,3717,car chase,1213752866 +7220,3717,cars,1213752863 +7220,3753,Best War Films,1186775934 +7220,3753,history,1186775944 +7220,3753,patrick bateman,1186775954 +7220,3793,action,1183574577 +7220,3793,Halle Berry,1183574579 +7220,3793,superhero,1183574580 +7220,3825,coming of age,1186692508 +7220,3825,Nudity (Topless - Brief),1186692504 +7220,3825,very girlish,1186692514 +7220,3863,serial killer,1213752567 +7220,3863,surreal,1213752572 +7220,3863,virtual reality,1213752580 +7220,3916,race issues,1187147026 +7220,3916,racism,1187147020 +7220,3916,social commentary,1187147029 +7220,3977,genre spoof,1186692414 +7220,3977,murder,1186692400 +7220,3977,privacy,1186692404 +7220,3979,Adam Sandler,1368375970 +7220,3979,comedy,1368375962 +7220,3979,Quentin Tarantino,1368375966 +7220,3988,comedy,1187034229 +7220,3988,Dr. Seuss,1187034226 +7220,3988,Xmas theme,1187034223 +7220,3994,comics,1184986761 +7220,3994,M. Night Shyamalan,1184986763 +7220,3994,superhero,1184986765 +7220,4014,family,1183574604 +7220,4014,Nudity (Topless - Brief),1183574598 +7220,4014,Quite Romantic,1183574603 +7220,4016,David Spade,1184440821 +7220,4016,Disney,1184440836 +7220,4016,Disney animated feature,1184440818 +7220,4016,funny,1184440828 +7220,4016,G,1184440826 +7220,4016,llama face!,1184440850 +7220,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1184440843 +7220,4016,Transformation,1184440834 +7220,4022,helen hunt,1213751485 +7220,4022,stranded,1213751480 +7220,4022,Tom Hanks,1213751476 +7220,4090,animated classic,1349587485 +7220,4090,commerce,1349587488 +7220,4090,technology,1349587482 +7220,4148,cannibalism,1187034134 +7220,4148,mmm... brains...,1187034137 +7220,4148,prequel to:Hannibal,1187034145 +7220,4299,Heath Ledger,1187147417 +7220,4299,Knoll,1187147420 +7220,4299,naked Chaucer,1187147436 +7220,4306,animation,1216349583 +7220,4306,fairy tale,1216349577 +7220,4306,parody,1216349600 +7220,4306,satire,1216349588 +7220,4343,aliens,1186776167 +7220,4343,sci-fi,1186776157 +7220,4343,Seann William Scott,1186776170 +7220,4370,Haley Joel Osment,1213752370 +7220,4370,robots,1213752373 +7220,4370,Steven Spielberg,1213752366 +7220,4446,adapted from:game,1186776252 +7220,4446,sci-fi,1186776250 +7220,4447,femininity,1185299759 +7220,4447,feminism,1185299762 +7220,4447,Leonard Nimoy,1185299751 +7220,4447,Reese Whitherspoon,1185299754 +7220,4447,stupid,1185299761 +7220,4638,dinosaurs,1217295979 +7220,4638,Michael Crichton,1217295980 +7220,4638,Sam Neill,1217295977 +7220,4643,Post apocalyptic,1289803126 +7220,4643,remake,1289803132 +7220,4643,Tim Burton,1289803143 +7220,4720,ghosts,1213750931 +7220,4720,Nicole Kidman,1213750941 +7220,4720,twist ending,1213750937 +7220,4896,based on book,1183691094 +7220,4896,family,1183691086 +7220,4896,Harper Lee,1183691087 +7220,4896,magic,1183691092 +7220,4896,Wizards,1183691096 +7220,4963,action,1183160517 +7220,4963,Brad Pitt,1183160488 +7220,4963,George Clooney,1183160500 +7220,4963,Las Vegas,1183160492 +7220,4963,PG-13,1183160515 +7220,4975,Nudity (Topless),1184986777 +7220,4975,Philip K. Dick (uncredited),1184986781 +7220,4975,tomcruise,1184986779 +7220,4992,Romance,1187147385 +7220,4992,sweet,1187147383 +7220,4992,time travel,1187147378 +7220,5010,factual,1213751107 +7220,5010,Ridley Scott,1213751093 +7220,5010,war,1213751101 +7220,5069,anime,1183512302 +7220,5069,espionage,1183512311 +7220,5069,Great movie,1183512321 +7220,5069,great visuals,1183512318 +7220,5069,Japan,1183512305 +7220,5107,Bruce Willis,1213752907 +7220,5107,prison,1213752914 +7220,5107,World War II,1213752910 +7220,5110,Nudity (Topless),1184799987 +7220,5110,police,1184799984 +7220,5110,suburbia,1184799993 +7220,5146,anime,1182566268 +7220,5146,future,1182566270 +7220,5146,vampire,1182566266 +7220,5218,animation,1184389318 +7220,5218,cartoon,1184389321 +7220,5218,Children,1184389311 +7220,5218,Maybe children like it,1184389308 +7220,5219,milla,1218335347 +7220,5219,video game adaptation,1218335344 +7220,5219,zombies,1218335348 +7220,5254,Action,1218506343 +7220,5254,comic book,1218506340 +7220,5254,vampires,1218506342 +7220,5265,Edward Norton,1186692601 +7220,5265,Robin Williams,1186692605 +7220,5349,comic book,1213750718 +7220,5349,super-hero,1213750721 +7220,5378,fantasy,1213750609 +7220,5378,sci-fi,1213750598 +7220,5378,space,1213750605 +7220,5410,atmospheric,1220725612 +7220,5410,Cult film,1220725610 +7220,5410,environment,1220725608 +7220,5418,espionage,1182725000 +7220,5418,fighting,1182725002 +7220,5418,spying,1182724998 +7220,5445,futuristic,1184116760 +7220,5445,Philip K. Dick,1184116758 +7220,5459,aliens,1338240560 +7220,5459,comedy,1338240555 +7220,5459,sci-fi,1338240557 +7220,5481,hilarious,1186518539 +7220,5481,parody,1186518537 +7220,5481,satire,1186518534 +7220,5502,Joaquin Phoenix,1186776047 +7220,5502,m. night shyamalan,1186776043 +7220,5502,meditative,1186776027 +7220,5679,crime,1213751772 +7220,5679,fantasy,1213751760 +7220,5679,remake,1213751756 +7220,5816,magic,1183691077 +7220,5816,sequel,1183691075 +7220,5816,Wizards,1183691078 +7220,5833,werewolves,1184639032 +7220,5872,Bond,1213752658 +7220,5872,james bond,1213752655 +7220,5872,Pierce Brosnan,1213752662 +7220,5944,aliens,1378064249 +7220,5944,sci-fi,1378064244 +7220,5944,space,1378064247 +7220,5956,Cameron Diaz,1184986746 +7220,5956,Daniel Day-Lewis,1184986744 +7220,5956,Nudity (Topless - Brief),1184986749 +7220,5989,biography,1182566335 +7220,5989,fun movie,1182566332 +7220,5989,Leonardo DiCaprio,1182566336 +7220,5991,classic,1184639007 +7220,5991,murder,1184639010 +7220,5991,Musical,1184639006 +7220,5991,remake,1184639013 +7220,5991,Renee Zellweger,1184639012 +7220,6005,Stand Up,1213752304 +7220,6058,gory,1213752780 +7220,6058,just a teen movie,1213752784 +7220,6058,violent,1213752773 +7220,6155,Good Romantic Comedies,1213752944 +7220,6188,Funniest Movies,1184638982 +7220,6188,Luke Wilson,1184638955 +7220,6188,mature,1184638960 +7220,6188,Nudity (Topless),1184638967 +7220,6188,quirky,1184638969 +7220,6188,R,1184638983 +7220,6188,very funny,1184638978 +7220,6188,Will Ferrell,1184638958 +7220,6250,alien invasion,1221054539 +7220,6250,Morgan Freeman,1221054540 +7220,6250,Stephen King,1221054541 +7220,6331,Documentary,1180621266 +7220,6331,Fun to watch,1180621275 +7220,6331,movie to see,1180621241 +7220,6331,spelling bee,1180621237 +7220,6333,based on comic,1182566280 +7220,6333,Patrick Stewart,1182566278 +7220,6333,Wolverine,1182566277 +7220,6365,future,1184800293 +7220,6365,human versus computer,1184800240 +7220,6365,Larry Wachkowski,1184800242 +7220,6373,Bruce Boxleitner,1186601134 +7220,6373,religion,1186601137 +7220,6373,Tom Shadyac,1186601143 +7220,6378,Edward Norton,1213750969 +7220,6378,heist,1213750973 +7220,6378,remake,1213750965 +7220,6502,post-apocalyptic,1213750636 +7220,6502,sci-fi,1213750619 +7220,6502,zombies,1213750622 +7220,6534,comic book,1217597809 +7220,6534,Eric Bana,1217597813 +7220,6534,super-hero,1217597811 +7220,6537,murder,1213751368 +7220,6537,sci-fi,1213751360 +7220,6537,time travel,1213751371 +7220,6539,adventure,1218259099 +7220,6539,Johnny Depp,1218259100 +7220,6539,pirates,1218259097 +7220,6565,Chris Cooper,1183574543 +7220,6565,sports,1183574538 +7220,6565,true story,1183574540 +7220,6618,Dynamic CGI Action,1184116611 +7220,6618,martial arts,1184116609 +7220,6618,the world cup meets dragonball z,1184116614 +7220,6708,Characters with great depth,1183574532 +7220,6708,father daughter relationship,1183574510 +7220,6708,Los Angeles,1183574515 +7220,6708,Nicolas Cage,1183574529 +7220,6708,twist ending,1183574527 +7220,6753,Animal movie,1183574558 +7220,6753,Haley Joel Osment,1183574553 +7220,6754,vampire,1185928128 +7220,6754,vampires,1185928132 +7220,6754,werewolves,1185928129 +7220,6765,pretty but pointless,1185928119 +7220,6765,romance,1185928121 +7220,6765,scenic,1185928104 +7220,6887,Cuba Gooding Jr.,1185849190 +7220,6890,disturbing,1213751901 +7220,6890,enigmatic,1213751906 +7220,6890,violence in america,1213751896 +7220,6934,action,1213750338 +7220,6934,sci-fi,1213750322 +7220,6934,virtual reality,1213750330 +7220,6936,Christmas,1230345155 +7220,6936,New York City,1230345154 +7220,6936,Will Ferrell,1230345152 +7220,6942,family,1183690948 +7220,6942,Liam Neeson,1183690944 +7220,6942,Rodrigo Santoro,1183690946 +7220,6948,music business,1183512274 +7220,6948,rap,1183512271 +7220,6952,DVD,1213752884 +7220,6952,psychology,1213752881 +7220,6957,absolutely hilarious dark comedy,1184440799 +7220,6957,hilarious,1184440807 +7220,6957,surprisingly funny,1184440803 +7220,7143,Japan,1183160670 +7220,7158,heartbreaking,1183512345 +7220,7158,Nudity (Topless - Brief),1183512342 +7220,7158,shades of gray,1183512339 +7220,7254,Amy Smart,1184389276 +7220,7254,suspense,1184389267 +7220,7254,time travel,1184389272 +7220,7293,adam sandler,1184800363 +7220,7293,Comedy,1184800371 +7220,7293,PG-13,1184800380 +7220,7293,Romance,1184800378 +7220,7293,Sandler,1184800376 +7220,7317,road trip,1186776134 +7220,7373,heroin,1184800540 +7220,7373,occult technology,1184800535 +7220,7373,super-hero,1184800538 +7220,7444,Child as Adult,1213752355 +7220,7444,Jennifer Garner,1213752342 +7220,7444,photographer,1213752347 +7220,7445,action,1183690983 +7220,7445,angry denzel,1183690979 +7220,7445,Christopher Walken,1183691005 +7220,7445,Denzel Washington,1183690989 +7220,7445,Marlon Brando,1183691007 +7220,7445,R,1183691003 +7220,7451,High School,1184800447 +7220,7451,Rachel McAdams,1184800452 +7220,7451,suprisingly clever,1184800449 +7220,7458,Action,1185849136 +7220,7458,Brad Pitt,1185849139 +7220,7458,Orlando Bloom,1185849138 +7220,8360,animation,1213750807 +7220,8360,Eddie Murphy,1213750826 +7220,8360,fairy tale,1213750817 +7220,8361,hollywood style,1186692582 +7220,8361,library,1186692572 +7220,8361,Post apocalyptic,1186692562 +7220,8366,evangelicalism,1183691141 +7220,8366,hilarious,1183691138 +7220,8366,satire,1183691140 +7220,8368,Fiona Shaw,1182725051 +7220,8368,Gary Oldman,1182725045 +7220,8368,time travel,1182725048 +7220,8371,David Twohy,1186692439 +7220,8371,shallow plot,1186692436 +7220,8371,Vin Diesel,1186692450 +7220,8376,off-beat comedy,1187147232 +7220,8376,steak in the face,1187147218 +7220,8376,Tina Majorino,1187147227 +7220,8464,about macdonalds,1181227506 +7220,8464,american idiocy,1181227497 +7220,8464,Educational,1181227487 +7220,8464,fast food truths,1181227504 +7220,8464,important,1181227437 +7220,8464,McDonalds,1181227444 +7220,8464,PG-13,1181227470 +7220,8528,cheerleading,1184800177 +7220,8528,obscure sports,1184800179 +7220,8528,See Zoolander,1184800181 +7220,8529,drama,1184639124 +7220,8529,emotion!,1184639126 +7220,8529,Kurosawa,1184639108 +7220,8529,spielberg,1184639102 +7220,8529,Steven Spielberg,1184639096 +7220,8529,tom hanks,1184639106 +7220,8622,George Bush,1182566374 +7220,8622,liberal,1182566369 +7220,8622,Michael Moore,1182566348 +7220,8622,terrorism,1182566351 +7220,8636,new york,1183160630 +7220,8636,newspaper theme,1183160635 +7220,8640,Christianity,1187147396 +7220,8640,pagan,1187147393 +7220,8640,pg-13,1187147398 +7220,8641,alone,1184718489 +7220,8641,animation,1387730413 +7220,8641,comedy,1387730408 +7220,8641,HAHAHAHAHAHAHHAHA. Will Farrell fucking rules :),1184718491 +7220,8641,Steve Carrell,1184718487 +7220,8641,Will Ferrell,1387730417 +7220,8644,action,1184638882 +7220,8644,Dynamic CGI Action,1184638877 +7220,8644,future,1184638879 +7220,8644,futuristic,1184638873 +7220,8665,kickass,1213750228 +7220,8665,Matt Damon,1213750219 +7220,8783,m. night shyamalan,1186692363 +7220,8783,violent,1186692359 +7220,8807,marijuana,1184800201 +7220,8807,Neil Patrick Harris,1184800191 +7220,8807,stoner comedy,1184800203 +7220,8861,Milla Jovovich,1218335364 +7220,8861,Nudity (Topless),1218335366 +7220,8861,zombies,1218335367 +7220,8870,Julianne Moore,1186776274 +7220,8965,Based on a book,1448462453 +7220,8965,big budget,1448462416 +7220,8965,Brendan King,1448462449 +7220,8965,children,1448462402 +7220,8965,Chris Van Allsburg,1448462395 +7220,8965,Christian,1448462388 +7220,8965,Christmas,1448462385 +7220,8965,computer animation,1448462412 +7220,8965,Eddie Deezen,1448462499 +7220,8965,elfs,1448462400 +7220,8965,family,1448462422 +7220,8965,Gregory Gast,1448462426 +7220,8965,Leslie Harter Zemeckis,1448462489 +7220,8965,Mark Mendonca,1448462469 +7220,8965,Nona Gaye,1448462487 +7220,8965,Peter Scolari,1448462461 +7220,8965,roller coaster,1448462459 +7220,8965,Tom Hanks,1448462465 +7220,8965,trains,1448462423 +7220,8984,George Clooney,1213750913 +7220,8984,heist,1213750917 +7220,8984,Matt Damon,1213750920 +7220,8985,RZA (composer),1218834530 +7220,8985,vampire,1218834529 +7220,8985,vampires,1218834527 +7220,27728,anime,1183574492 +7220,27808,Adam Sandler,1184639064 +7220,27808,family,1184639049 +7220,27808,interesting tale of immigrants in the US,1184639060 +7220,27808,mexico,1184639058 +7220,27808,romance,1184639073 +7220,27850,capitalism,1182724979 +7220,27899,documentary,1213752239 +7220,27899,existentialism,1213752212 +7220,27899,raw existentialism,1213752244 +7220,27912,liberal perspective,1180543696 +7220,27912,politics,1180543666 +7220,30749,genocide,1213749419 +7220,30749,journalism,1213749423 +7220,30749,true story,1213749412 +7220,30793,Johnny Depp,1213751684 +7220,30793,roald dahl,1213751700 +7220,30793,Tim Burton,1213751677 +7220,30810,deadpan,1184116600 +7220,30810,ocean,1184116598 +7220,30810,whimsical,1184116596 +7220,31696,adapted from:comic,1187147115 +7220,31696,Alan Moore,1187147112 +7220,31696,heaven and hell,1187147123 +7220,31804,Goofy,1223299020 +7220,31804,vampire,1223299025 +7220,31804,vampires,1223299022 +7220,32587,Action,1422655576 +7220,32587,adapted from:comic,1422655591 +7220,32587,artistic,1422655570 +7220,32587,atmospheric,1422655559 +7220,32587,based on a comic,1422655617 +7220,32587,based on comic,1422655599 +7220,32587,black comedy,1422655564 +7220,32587,Bruce Willis,1422655561 +7220,32587,brutal,1422655619 +7220,32587,brutality,1422655568 +7220,32587,comic book,1422655533 +7220,32587,corruption,1422655593 +7220,32587,crime,1422655606 +7220,32587,dark,1422655578 +7220,32587,disturbing,1422655602 +7220,32587,Frank Miller,1181778918 +7220,32587,gritty,1422655610 +7220,32587,Jessica Alba,1422655608 +7220,32587,multiple storylines,1422655527 +7220,32587,narrated,1422655597 +7220,32587,Nudity (Topless),1422655614 +7220,32587,police,1422655628 +7220,32587,Quentin Tarantino,1422655531 +7220,32587,revenge,1422655595 +7220,32587,Robert Rodriguez,1422655626 +7220,32587,Rosario Dawson,1422655631 +7220,32587,stylized,1422655529 +7220,32587,stylized violence,1422655621 +7220,32587,surreal,1422655580 +7220,32587,surrealism,1422655574 +7220,32587,violence,1422655562 +7220,32587,violent,1422655589 +7220,32587,visually appealing,1422655573 +7220,32587,visually stunning,1422655622 +7220,32979,Australian,1298864373 +7220,32979,Helen Buday,1298864369 +7220,32979,Rolf de Heer,1298864378 +7220,33154,corporate America,1182565611 +7220,33154,scandal,1182565933 +7220,33162,history,1213751603 +7220,33162,Jerusalem,1213751612 +7220,33162,Orlando Bloom,1213751616 +7220,33493,Lucas,1184116628 +7220,33493,Samuel L. Jackson,1184116630 +7220,33493,sequel,1184116621 +7220,33615,Ben Stiller,1213751313 +7220,33615,funny,1213751299 +7220,33615,zebra,1213751306 +7220,34048,alien invasion,1186776003 +7220,34048,aliens,1186775997 +7220,34048,sci-fi,1186776016 +7220,34072,antarctica,1182566170 +7220,34072,beautiful,1182566185 +7220,34072,ice music,1182566142 +7220,34072,nature,1182566156 +7220,34072,Penguins value their babies,1182566181 +7220,34150,adapted from:comic,1186776194 +7220,34150,good action,1186776185 +7220,34150,superhero,1186776189 +7220,34162,buddies,1184440773 +7220,34162,lying,1184440759 +7220,34162,Owen Wilson,1184440757 +7220,34162,stiller,1184440751 +7220,34162,vince vaughn,1184440772 +7220,34162,wedding,1184440748 +7220,34542,biopic,1186518270 +7220,34542,boundaries,1186518281 +7220,34542,foul language,1186518276 +7220,35836,sex,1213751077 +7220,35836,Steve Carell,1213751064 +7220,36401,Gilliam,1186601119 +7220,36401,Heath Ledger,1186601103 +7220,36401,Terry Gilliam,1186601115 +7220,36529,arms dealer,1213750273 +7220,36529,guns,1213750270 +7220,36529,political,1213750265 +7220,37380,military,1217377424 +7220,37380,murder,1217377426 +7220,37380,video game adaptation,1217377427 +7220,37386,cartoon,1186518388 +7220,37386,cloning,1186518378 +7220,37386,visceral,1186518382 +7220,38038,animation,1181439937 +7220,39444,divorce,1213751665 +7220,39444,dystunctional family,1213751669 +7220,39444,R,1213751659 +7220,40583,convoluted,1182566250 +7220,40583,George Clooney,1182566248 +7220,40583,Political,1182566245 +7220,40815,England,1183160397 +7220,40946,race issues,1213751015 +7220,40946,stand-up comedy,1213751020 +7220,41566,C.S. Lewis,1184116572 +7220,41566,fantasy,1184116574 +7220,41566,Fantasy World,1184116570 +7220,41569,Better than expected,1184638935 +7220,41569,Dynamic CGI Action,1184638895 +7220,41569,emotional,1184638901 +7220,41569,great remake,1184638922 +7220,41569,Jack Black,1184638897 +7220,41569,new version classical,1184638891 +7220,41569,no kids,1184638930 +7220,41569,Peter Jackson,1184638902 +7220,41569,remake,1184638938 +7220,41569,Saturn Award (Best Special Effects),1184638920 +7220,42738,vampire,1185928137 +7220,42738,vampires,1185928141 +7220,42738,werewolves,1185928139 +7220,43679,amusement park,1213752801 +7220,43679,gore,1213752809 +7220,43679,Horror,1213752791 +7220,44022,Animation,1185229014 +7220,44022,global warming,1185229012 +7220,44022,sequel,1185228997 +7220,44022,slapstick,1185229006 +7220,44709,Angela Bassett,1182618345 +7220,44709,gentle,1182618330 +7220,44709,MOTHERS AND DAUGHTERS,1182618339 +7220,44709,sentimental,1182618335 +7220,44709,spelling bee,1182618327 +7220,44788,murder,1299111205 +7220,44788,politics,1299111198 +7220,44788,social commentary,1299111195 +7220,45186,espionage,1184718474 +7220,45186,Miyazaki,1184718472 +7220,45186,murder,1184718475 +7220,45431,cartoon,1183691130 +7220,45431,like madagascar,1183691121 +7220,45431,suburbia,1183691116 +7220,45447,literature,1186692546 +7220,45447,Paris,1186692536 +7220,45447,PG-13,1186692543 +7220,45499,Marvel,1184638843 +7220,45499,mutants,1184638846 +7220,45499,preview was better,1184638829 +7220,45499,superhero,1184638844 +7220,45499,xenophobic,1184638839 +7220,45501,Below R,1213752536 +7220,45501,break-up,1213752527 +7220,45501,horrible finish,1213752504 +7220,45517,innovative,1183574442 +7220,45517,instills good moral values,1183574455 +7220,45517,kids fun,1183574471 +7220,45517,Owen Wilson,1183574465 +7220,45517,Pixar,1183574473 +7220,45517,small town,1183574474 +7220,45517,villain nonexistent or not needed for good story,1183574451 +7220,45672,Be satisfied with your life little man,1186692491 +7220,45672,family,1186692472 +7220,45672,second chance,1186692479 +7220,45720,alliances,1184800493 +7220,45720,fashion,1184800506 +7220,45720,Meryl Streep,1184800509 +7220,45720,New York,1184800473 +7220,45720,new york city,1184800511 +7220,45720,Paris,1184800491 +7220,45720,Streep strong & funny,1184800501 +7220,45722,action,1218259088 +7220,45722,Comedy,1184638989 +7220,45722,Johnny Depp,1218259089 +7220,45722,Orlando Bloom,1218259090 +7220,45722,pirates,1184638990 +7220,45722,thriller,1184638987 +7220,46530,based on comic book,1184639089 +7220,46530,PG-13,1184639087 +7220,46530,superhero,1184639090 +7220,46723,biblical,1213750549 +7220,46723,Brad Pitt,1213750544 +7220,46723,Nudity (Full Frontal),1213750553 +7220,46850,crossword puzzles,1181143304 +7220,46850,nerds,1181143364 +7220,46850,PG,1181143352 +7220,46970,competition,1213751459 +7220,46970,nascar,1213751454 +7220,46970,Will Ferrell,1213751448 +7220,46972,Ben Stiller,1251414316 +7220,46972,father-son relationship,1251414306 +7220,46972,Robin Williams,1251414311 +7220,47099,earnest,1183512232 +7220,47099,Oakland,1183512239 +7220,47099,San Francisco,1183512245 +7220,47099,Will Smith,1183512221 +7220,47610,19th century,1182618361 +7220,47610,good plot,1182618369 +7220,47610,magic,1182618359 +7220,47610,Vienna,1182618371 +7220,48043,fountain of youth,1220384754 +7220,48043,Hugh Jackman,1220384753 +7220,48043,immortality,1220384756 +7220,48385,mockumentary,1213751151 +7220,48385,R,1213751148 +7220,48385,satire,1213751133 +7220,48774,dystopia,1213749963 +7220,48774,Michael Caine,1213749969 +7220,48780,Christian Bale,1216948917 +7220,48780,Hugh Jackman,1216948916 +7220,48780,magic,1216948913 +7220,49263,free speech,1217545348 +7220,49263,Nudity (Topless - Brief),1217545344 +7220,49263,Nudity (Topless),1217545346 +7220,49274,dancing,1187034159 +7220,49274,Robin Williams,1187034161 +7220,49274,singing,1187034155 +7220,49347,Bruce Willis,1186776211 +7220,49347,Greg Kinnear,1186776221 +7220,49347,R,1186776213 +7220,49396,Jack Black,1184986587 +7220,49396,R,1184986595 +7220,49396,rock and roll,1184986589 +7220,49530,Africa,1213749650 +7220,49530,Civil War,1213749665 +7220,49530,violent,1213749661 +7220,49651,earnest,1184440737 +7220,49651,rousing,1184440738 +7220,49651,Sylvester Stallone,1184440735 +7220,49793,Sports,1183691151 +7220,50796,Hugh Dancy,1218410367 +7220,50872,animation,1213749791 +7220,50872,paris,1213749794 +7220,50872,pixar,1213749786 +7220,50923,good story,1217982337 +7220,50923,movie physics,1217982335 +7220,51077,Comic Book,1216856406 +7220,51077,deal with the devil,1216856408 +7220,51077,Nicholas Cage,1216856410 +7220,51091,Nudity (Topless),1221884520 +7220,51091,Samuel L. Jackson,1221884517 +7220,51091,sexual,1221884519 +7220,51412,Below R,1216956334 +7220,51412,Nicolas Cage,1216956328 +7220,51412,Philip K. Dick,1216956331 +7220,51925,adultery,1257920019 +7220,51925,Nonlinear,1257920015 +7220,51925,Sandra Bullock,1257920023 +7220,52245,figure skating,1218506356 +7220,52245,ice skating,1184116577 +7220,52245,Jon Heder,1184116560 +7220,52245,sport:ice skating,1184116541 +7220,52245,Will Ferrell,1184116544 +7220,52281,2 movies in 1,1181227578 +7220,52328,'Please Tell Me We Brought The Lighter...Please',1213751218 +7220,52328,space,1213751212 +7220,52460,Indians,1218410387 +7220,52460,R,1218410386 +7220,52460,Vikings,1218410385 +7220,52462,Based on a TV show,1222350252 +7220,52462,cult film,1222350254 +7220,52722,comic book,1213752268 +7220,52722,Marvel,1213752274 +7220,52950,Nudity (Rear),1223299063 +7220,52950,sequel,1223299061 +7220,52973,absolutely hilarious,1182789240 +7220,52973,Las Vegas,1182789231 +7220,52973,Los Angeles,1182789260 +7220,52973,marijuana,1182789229 +7220,52973,Nudity (Topless - Brief),1182789221 +7220,52973,pregnancy,1182789265 +7220,52973,unwed mother,1182789263 +7220,53000,post-apocalyptic,1220139603 +7220,53000,sequel,1220139605 +7220,53000,zombies,1220139606 +7220,53121,Dreamworks,1216349559 +7220,53121,talking animals,1216349551 +7220,53125,Johnny Depp,1218259071 +7220,53125,Orlando Bloom,1218259073 +7220,53125,pirates,1218259070 +7220,53322,Brad Pitt,1213751333 +7220,53322,Heist,1213751336 +7220,53322,Las Vegas,1213751329 +7220,53464,adapted from:comic,1213752723 +7220,53464,based on comic book,1213752712 +7220,53464,invisibility,1213752718 +7220,53519,Kick-Butt Women,1219713163 +7220,53519,Quentin Tarantino,1219713166 +7220,53519,Tarantino,1219713165 +7220,53972,bruce willis,1213750668 +7220,53972,hackers,1213750673 +7220,53972,murder,1213750665 +7220,53996,action,1324172342 +7220,53996,android(s)/cyborg(s),1213751052 +7220,53996,helicopters,1213751058 +7220,53996,robots,1213751036 +7220,54001,alan rickman,1213749884 +7220,54001,based on a book,1213749881 +7220,54259,fairy tale,1213749844 +7220,54259,magical aging/immortality,1213749855 +7220,54259,Neil Gaiman,1213749838 +7220,54272,animation,1213751192 +7220,54272,humorous,1213751200 +7220,54272,simpsons,1213751197 +7220,54286,espionage,1213749440 +7220,54286,Robert Ludlum,1213749433 +7220,54503,comedy,1217645333 +7220,54503,high school,1217645331 +7220,54503,police,1217645335 +7220,54732,Christopher Walken,1220146015 +7220,54732,Disappointing,1220146018 +7220,54732,obvious,1220146016 +7220,54736,middle east,1219702454 +7220,54736,R,1219702453 +7220,54736,terrorism,1219702451 +7220,54771,Below R,1213752993 +7220,54771,brain sucking aliens,1213752988 +7220,54881,competition,1219193189 +7220,54881,documentary,1219193190 +7220,54881,video games,1219193192 +7220,54995,military,1219295457 +7220,54995,Nudity (Topless),1219295458 +7220,54995,zombies,1219295455 +7220,55232,post-apocalyptic,1218335383 +7220,55232,video game adaptation,1218335380 +7220,55232,zombies,1218335385 +7220,55805,Nudity (Topless - Notable),1221625406 +7220,55805,Philip Seymour Hoffman,1221625409 +7220,55805,R,1221625408 +7220,55820,coen brothers,1213749459 +7220,55820,great acting,1213749468 +7220,55820,Tommy Lee Jones,1213749464 +7220,55995,Angelina Jolie,1220636818 +7220,55995,animation,1220636819 +7220,55995,fantasy,1220636816 +7220,56171,based on a book,1219881009 +7220,56171,coming of age,1219881011 +7220,56171,magic,1219881013 +7220,56174,post-apocalyptic,1220847650 +7220,56174,vampire,1220847647 +7220,56174,zombies,1220847649 +7220,56801,aliens,1257882402 +7220,56801,R,1257882395 +7220,56801,teens,1257882398 +7220,57368,Handycam,1219801725 +7220,57368,monster,1219801727 +7220,57368,New York City,1219801728 +7220,57640,comic book,1230621968 +7220,57640,murder,1230621970 +7220,57640,superhero,1230621972 +7220,58025,based on a book,1218852286 +7220,58025,Samuel L. Jackson,1218852284 +7220,58025,teleportation,1218852288 +7220,58103,multiple storylines,1257465721 +7220,58103,murder,1257465734 +7220,58103,secret service,1257465748 +7220,58297,apocalypse,1221504949 +7220,58297,futuristic,1221504946 +7220,58297,Post apocalyptic,1221504951 +7220,58559,Batman,1216508322 +7220,59315,comic book,1258408764 +7220,59315,murder,1258408760 +7220,59315,superhero,1258408767 +7220,59369,action,1236104477 +7220,59369,crime,1236104478 +7220,59369,Paris,1236104475 +7220,59392,based on a tv show,1298864427 +7220,59392,sci-fi,1298864430 +7220,59392,space,1298864432 +7220,59501,based on a book,1293227591 +7220,59501,fantasy,1293227587 +7220,59501,romance,1293227595 +7220,59615,aliens,1259149518 +7220,59615,murder,1259149509 +7220,59615,Steven Spielberg,1259149513 +7220,59784,panda,1214017143 +7220,60037,M. Night Shyamalan,1258697999 +7220,60037,R,1258698003 +7220,60037,Zooey Deschanel,1258698008 +7220,60040,Below R,1259367467 +7220,60040,comic book,1259367457 +7220,60040,Edward Norton,1259367461 +7220,60069,G,1216508393 +7220,60069,pixar,1216508399 +7220,60069,robots,1216508396 +7220,60074,mentor/trainer,1217201455 +7220,60074,plot twist,1217201480 +7220,60074,public relations,1217201478 +7220,60074,superhero,1217201451 +7220,60074,Will Smith,1217201488 +7220,60126,Based on a TV show,1215748502 +7220,60126,laser maze room (in a comedy),1215748516 +7220,60514,3D,1259367493 +7220,60514,based on a book,1259367489 +7220,60514,Brendan Fraser,1259367485 +7220,60674,based on a tv show,1298864404 +7220,60674,sci-fi,1298864409 +7220,60674,space,1298864412 +7220,60684,comic book,1258835079 +7220,60684,sci-fi,1258835083 +7220,60684,superhero,1258835086 +7220,60756,comedy,1378064190 +7220,60756,funny,1378064193 +7220,60756,will ferrell,1378064196 +7220,60760,disappointing,1293154027 +7220,60760,mystery,1293154018 +7220,60760,romance,1293154023 +7220,61132,Ben Stiller,1257211040 +7220,61132,parody,1257211037 +7220,61132,satire,1257211044 +7220,61210,John Malkovich,1258864404 +7220,61210,R,1258864396 +7220,61210,Ron Perlman,1258864401 +7220,62155,based on a book,1315797256 +7220,62155,great soundtrack,1315797246 +7220,62155,New York City,1315797235 +7220,63113,assassin,1231008675 +7220,63113,bond,1231008679 +7220,63113,murder,1231008677 +7220,64497,aliens,1258437488 +7220,64497,Keanu Reeves,1258437485 +7220,64497,remake,1258437480 +7220,64957,adapted from:book,1257644025 +7220,64957,Brad Pitt,1257643995 +7220,64957,romance,1257644020 +7220,66171,Dakota Fanning,1257040115 +7220,66171,psychic powers,1257040135 +7220,66171,twisted ending,1257040139 +7220,66798,Inspector Clouseau (series),1245273369 +7220,66798,Jean Reno,1245273375 +7220,66798,Steve Martin,1245273372 +7220,67197,aliens,1257072196 +7220,67197,Nicolas Cage,1257072186 +7220,67197,sci-fi,1257072191 +7220,67408,alien invasion,1286061837 +7220,67408,aliens,1286061846 +7220,67408,animation,1286061841 +7220,67867,Dragon Ball,1251414242 +7220,67867,inaccurate adaptation,1251414266 +7220,67867,martial arts,1251414276 +7220,68319,action,1316439804 +7220,68319,sci-fi,1316439811 +7220,68319,superhero,1316439815 +7220,68358,action,1302050525 +7220,68358,sci-fi,1302050530 +7220,68358,space,1302050533 +7220,68554,action,1302218101 +7220,68554,based on a book,1302218098 +7220,68554,Tom Hanks,1302218103 +7220,68791,action,1287945105 +7220,68791,post-apocalyptic,1287945101 +7220,68791,sci-fi,1287945110 +7220,68793,Ben Stiller,1251414344 +7220,68793,history,1251414336 +7220,68793,sequel,1251414340 +7220,69122,Drinking,1245697932 +7220,69122,Las Vegas,1245697926 +7220,69122,te kijken,1245697929 +7220,69306,Denzel Washington,1422367071 +7220,69306,few action scenes,1422367087 +7220,69306,foul language,1422367089 +7220,69306,John Travolta,1422367066 +7220,69306,New York City,1422367068 +7220,69306,remake,1422367080 +7220,69306,subway,1422367073 +7220,69306,terrorism,1422367070 +7220,69306,Tony Scott,1422367065 +7220,69306,trains,1422367085 +7220,69526,action,1247025350 +7220,69526,robots,1247025357 +7220,69526,sequel,1247025346 +7220,69844,fantasy,1261949246 +7220,69844,magic,1261949250 +7220,69844,murder,1261949263 +7220,70286,action,1261893703 +7220,70286,aliens,1261893712 +7220,70286,sci-fi,1261893708 +7220,70336,action,1365983595 +7220,70336,good versus evil,1365983597 +7220,70336,sci-fi,1365983600 +7220,71535,parody,1302111557 +7220,71535,post-apocalyptic,1302111560 +7220,71535,zombies,1302111562 +7220,71745,based on a book,1288939378 +7220,71745,Coming of age,1288939373 +7220,71745,stylized,1288939384 +7220,72378,action,1289049344 +7220,72378,John Cusack,1289049341 +7220,72378,sci-fi,1289049347 +7220,72998,action,1324172233 +7220,72998,aliens,1324172238 +7220,72998,sci-fi,1324172235 +7220,75805,Gerard Butler,1286515143 +7220,75805,Jennifer Aniston,1286515151 +7220,75805,predictable,1286515147 +7220,76175,action,1285440507 +7220,76175,fantasy,1285440499 +7220,76175,remake,1285440503 +7220,76210,mental illness,1371507394 +7220,76210,superhero,1371507397 +7220,76210,vigilante,1371507389 +7220,76251,action,1284932825 +7220,76251,comic book,1284932829 +7220,76251,superhero,1284932833 +7220,76293,Mark Ruffalo,1286022918 +7220,76293,Mark Wahlberg,1286022912 +7220,76293,Steve Carell,1286022921 +7220,77561,action,1286750811 +7220,77561,comic book,1286750815 +7220,77561,superhero,1286750825 +7220,77667,based on a TV show,1286664708 +7220,77667,parody,1286664700 +7220,77667,Val Kilmer,1286664703 +7220,78105,action,1285562293 +7220,78105,adventure,1285562290 +7220,78105,fantasy,1285562286 +7220,78266,coming of age,1289259458 +7220,78266,genetics,1289259451 +7220,78266,gore,1289259454 +7220,78319,Michael J. Reynolds,1290766089 +7220,78319,self-sacrifice,1290766093 +7220,78319,Shauna Macdonald,1290766085 +7220,78467,John Malkovich,1289692061 +7220,78467,Josh Brolin,1289692057 +7220,78467,redbox,1289692073 +7220,78637,action,1293643551 +7220,78637,animation,1293643546 +7220,78637,too short,1293643578 +7220,78893,effects,1290299400 +7220,78893,M. Night Shyamalan,1290299396 +7220,78893,redbox,1290299407 +7220,79057,action,1290272681 +7220,79057,Adrien Brody,1290272678 +7220,79057,redbox,1290272685 +7220,79091,animation,1293578053 +7220,79091,competition,1293578067 +7220,79091,Steve Carell,1293578065 +7220,79139,Jay Baruchel,1293662752 +7220,79139,Nicolas Cage,1293662742 +7220,79139,predictable,1293662746 +7220,79274,animation,1286243206 +7220,79274,Batman,1286243201 +7220,79274,jason todd,1286243210 +7220,79293,Angelina Jolie,1293471112 +7220,79293,espionage,1293471129 +7220,79293,murder,1293471118 +7220,79592,Mark Wahlberg,1293925984 +7220,79592,Michael Keaton,1293925987 +7220,79592,Will Ferrell,1293925990 +7220,79695,action,1301982658 +7220,79695,Bruce Willis,1301982662 +7220,79695,violent,1301982666 +7220,79702,quirky,1293578102 +7220,79702,stylized,1293578105 +7220,79702,video games,1293578107 +7220,80363,Airplane,1293836227 +7220,80363,Milla Jovovich,1293836223 +7220,80363,zombies,1293836231 +7220,80469,redbox,1288661769 +7220,80549,Emma Stone,1294535859 +7220,80549,high school,1294535855 +7220,80549,sexuality,1294535862 +7220,80615,Based on a book,1285562320 +7220,80615,Bats,1285562353 +7220,80615,Owls,1285562353 +7220,81512,cinematography,1357238052 +7220,81512,Clint Eastwood,1357238048 +7220,81512,death,1357238044 +7220,81834,based on a book,1304304279 +7220,81834,British,1304304283 +7220,81834,magic,1304304276 +7220,81845,based on a true story,1305424162 +7220,81845,friendship,1305424170 +7220,81845,Oscar (Best Picture),1305424174 +7220,82169,alternate reality,1304354925 +7220,82169,based on a book,1304354933 +7220,82169,magic,1304354928 +7220,82202,Angelina Jolie,1316607451 +7220,82202,Johnny Depp,1316607460 +7220,82202,predictable,1316607457 +7220,83349,action,1310103170 +7220,83349,comic book,1310103174 +7220,83349,murder,1310103166 +7220,83613,aliens,1313979650 +7220,83613,cowboys,1313979644 +7220,83613,Harrison Ford,1313979648 +7220,84944,animation,1316095975 +7220,84944,cowboys,1316095978 +7220,84944,Johnny Depp,1316095983 +7220,85056,action,1316760931 +7220,85056,sci-fi,1316760935 +7220,85056,superhero,1316760938 +7220,85131,action,1317127728 +7220,85131,aliens,1317127737 +7220,85131,sci-fi,1317127733 +7220,85510,murder,1315033932 +7220,85510,stylized,1315033939 +7220,85510,Surreal,1315033936 +7220,86332,action,1315459496 +7220,86332,comic book,1315459499 +7220,86332,superhero,1315459503 +7220,86833,comedy,1316445267 +7220,86833,Judd Apatow,1316445259 +7220,86880,magic,1315459527 +7220,86880,murder,1315459524 +7220,86880,revenge,1315459530 +7220,86911,Thailand,1324172402 +7220,86911,tries too hard,1324172395 +7220,86911,Zach Galifianakis,1324172399 +7220,87222,animation,1315459622 +7220,87222,Jennifer Yuh,1315459635 +7220,87222,talking animals,1315459619 +7220,87232,comic book,1315459377 +7220,87232,fantasy,1315459373 +7220,87232,superhero,1315459380 +7220,87306,cinematography,1315459663 +7220,87306,J.J. Abrams,1315459657 +7220,87306,Steven Spielberg,1315459660 +7220,87430,adapted from:comic,1310103122 +7220,87430,comic book,1310103128 +7220,87430,father-son relationship,1310103141 +7220,87485,drugs,1324172262 +7220,87485,high school,1324172259 +7220,87485,Nudity (Topless - Notable),1324172266 +7220,87520,action,1324172312 +7220,87520,cars,1324172309 +7220,87520,robots,1324172304 +7220,88140,action,1324172368 +7220,88140,comic book,1324172372 +7220,88140,superhero,1324172375 +7220,89745,action,1338220126 +7220,89745,comic book,1338220131 +7220,89745,superhero,1338220134 +7220,89753,based on a book,1333315805 +7220,89753,Cold War,1333315800 +7220,89753,espionage,1333315798 +7220,90403,Alexandre Dumas,1319614700 +7220,90403,based on a book,1319614695 +7220,91094,dancing,1350248407 +7220,91094,musical,1350248413 +7220,91094,talking animals,1350248410 +7220,91500,based on a book,1333837426 +7220,91500,dystopia,1333837430 +7220,91500,social commentary,1333837420 +7220,91529,comic book,1357238163 +7220,91529,fantasy,1357238160 +7220,91529,superhero,1357238166 +7220,91542,assassin,1349587409 +7220,91542,comedy,1349587406 +7220,91542,murder,1349587396 +7220,91630,action,1352788583 +7220,91630,espionage,1352788580 +7220,91630,murder,1352788577 +7220,91660,aliens,1352788624 +7220,91660,Moscow,1352788621 +7220,91660,stranded,1352788608 +7220,92420,clever,1329786770 +7220,92420,sci-fi,1329786767 +7220,92420,strange,1329786765 +7220,92938,3D,1331060390 +7220,92938,Action,1331060385 +7220,92938,Goofy,1331060380 +7220,93363,adapted from:book,1331505849 +7220,93363,author:Edgar Rice Burroughs,1331505818 +7220,93363,based on a book,1331505823 +7220,93510,drugs,1334442763 +7220,93510,high school,1334442758 +7220,93510,Johnny Depp,1334442769 +7220,93766,action,1333817464 +7220,93766,adventure,1333817461 +7220,93766,fantasy,1333817459 +7220,94478,johnny depp,1350248374 +7220,94478,Michelle Pfeiffer,1350248380 +7220,94478,Tim Burton,1350248377 +7220,94777,aliens,1338240570 +7220,94777,franchise,1338240565 +7220,94777,time travel,1338240567 +7220,95167,coming of age,1349587460 +7220,95167,Kick-Butt Women,1349587458 +7220,95167,predictable,1349587455 +7220,95510,action,1357238193 +7220,95510,comic book,1357238195 +7220,95510,superhero,1357238198 +7220,95558,emotional,1368375720 +7220,95558,great acting,1368375727 +7220,95558,surreal,1368375732 +7220,96079,action,1367246118 +7220,96079,murder,1367246115 +7220,96079,psychological,1367246120 +7220,96610,Bruce Willis,1357930679 +7220,96610,organized crime,1357930676 +7220,96610,sci-fi,1357930683 +7220,96861,kidnapping,1373406476 +7220,96861,predictable,1373406484 +7220,96861,Revenge,1373406488 +7220,97306,dark comedy,1368384521 +7220,97306,serial killer,1368384526 +7220,97306,violent,1368384531 +7220,97752,based on a book,1372430897 +7220,97752,sci-fi,1372430900 +7220,97752,social commentary,1372430891 +7220,97913,alien invasion,1380855847 +7220,97913,animation,1380855851 +7220,97913,video games,1380855854 +7220,98243,action,1367246101 +7220,98243,Adventure,1367246099 +7220,98243,animation,1367246096 +7220,99112,Action,1357238072 +7220,99112,Justice,1357238081 +7220,99112,Tom Cruise,1357238075 +7220,99114,action,1368375568 +7220,99114,murder,1368375563 +7220,99114,Samuel L. Jackson,1368375560 +7220,99728,Action,1368375681 +7220,99728,Emma Stone,1368375685 +7220,99728,gangsters,1368375690 +7220,99910,action,1368391549 +7220,99910,Arnold Schwarzenegger,1368391544 +7220,99910,small town,1368391540 +7220,100083,crude humor,1374432535 +7220,100083,embarassing scenes,1374432624 +7220,100083,multiple storylines,1374432551 +7220,100108,crime,1368375503 +7220,100108,disguise,1368375511 +7220,100108,Jason Statham,1368375498 +7220,100163,action,1371507475 +7220,100163,magic,1371507465 +7220,100163,Nudity (Topless),1371507471 +7220,100302,evil corporation,1372457147 +7220,100302,love story,1372457144 +7220,100302,scifi,1372457151 +7220,100383,drugs,1371506924 +7220,100383,psychology,1371506927 +7220,100383,twist ending,1371506930 +7220,100390,road trip,1373383287 +7220,100390,subgenre:screwball,1373383283 +7220,100487,Magic,1371506909 +7220,100487,romance,1371506912 +7220,100487,small town,1371506907 +7220,100498,Action,1371506956 +7220,100498,Bruce Willis,1371506958 +7220,100498,CIA,1371506961 +7220,100611,aliens,1371507072 +7220,101076,action,1365983574 +7220,101076,Bruce Willis,1365983578 +7220,101076,nuclear war,1365983581 +7220,101112,Fantasy,1371507121 +7220,101112,Funny,1371507106 +7220,101112,magic,1371507117 +7220,101864,action,1380855870 +7220,101864,aliens,1380855878 +7220,101864,sci-fi,1380855874 +7220,102125,action,1385746823 +7220,102125,comic book,1385746851 +7220,102125,superhero,1385746834 +7220,102407,1920s,1414970331 +7220,102407,adapted from:book,1414970334 +7220,102407,anachronistic music,1414970345 +7220,102407,based on a book,1414970338 +7220,102407,beautiful,1414970329 +7220,102407,cinematography,1414970348 +7220,102407,F. Scott Fitzgerald,1414970337 +7220,102407,Leonardo DiCaprio,1414970327 +7220,102407,Period piece,1414970360 +7220,102407,stylized,1414970341 +7220,102445,aliens,1378064221 +7220,102445,Romance,1378064215 +7220,102445,space,1378064219 +7220,102481,Google,1391877080 +7220,102481,product placement,1391877072 +7220,102481,Will Ferrell,1391877083 +7220,103042,action,1389217164 +7220,103042,fantasy,1389217161 +7220,103042,superhero,1389217169 +7220,103141,animation,1385904741 +7220,103141,comedy,1385904730 +7220,103141,Pixar,1385904745 +7220,103253,dystopia,1388068854 +7220,103253,robots,1388068850 +7220,103253,social commentary,1388068844 +7220,103306,aliens,1414970500 +7220,103306,Found footage,1414970503 +7220,103306,great ending,1414970507 +7220,103306,hard science fiction,1414970492 +7220,103306,jupiter,1414970504 +7220,103306,space,1414970489 +7220,103306,visually stunning,1414970494 +7220,103335,crude humor,1389396682 +7220,103335,family,1389396685 +7220,103335,Steve Carell,1389396695 +7220,103372,mad tv alumns,1388726035 +7220,103372,many comedy actors,1388726024 +7220,103372,snl alumns,1388726031 +7220,103384,Funny,1389004428 +7220,103384,Johnny Depp,1389004437 +7220,103384,social commentary,1389004433 +7220,103772,comic book,1388889344 +7220,103772,Hugh Jackman,1388889338 +7220,103772,superhero,1388889348 +7220,103810,espionage,1388689966 +7220,103810,funny,1388689978 +7220,103810,John Malkovich,1388689991 +7220,104211,crime,1388690079 +7220,104211,drugs,1388690063 +7220,104211,Jennifer Aniston,1388690085 +7220,104337,Lee Daniels,1390140745 +7220,104925,dog,1391350236 +7220,104925,goodfellas,1391350232 +7220,104925,Mafia,1391350228 +7220,106002,aliens,1394379941 +7220,106002,based on a book,1394379932 +7220,106002,space,1394379937 +7220,106240,Amy Poehler,1417828490 +7220,106240,talking animals,1417828487 +7220,106240,Thanksgiving,1417828481 +7220,106240,time travel,1417828479 +7220,106240,watch the credits,1417828484 +7220,106330,friendship,1394379903 +7220,106330,Las Vegas,1394379900 +7220,106330,nudity,1394379907 +7220,106487,based on a book,1388690122 +7220,106487,romance,1388690134 +7220,106487,social commentary,1388690114 +7220,106916,Christian Bale,1391350147 +7220,106916,R,1391350177 +7220,107348,Adam McKay,1387730396 +7220,107406,chris evans,1414074694 +7220,107406,dystopia,1414074705 +7220,107406,illogical,1414074733 +7220,107406,jamie bell,1414074721 +7220,107406,john hurt,1414074711 +7220,107406,Joon-ho Bong,1414074714 +7220,107406,Korean,1414074724 +7220,107406,poor plot,1414074738 +7220,107406,post-apocalyptic,1414074706 +7220,107406,social commentary,1414074719 +7220,107406,tilda swinton,1414074709 +7220,107406,train,1414074729 +7220,108156,buddy movie,1413671020 +7220,108156,Kevin Hart,1413671022 +7220,108156,police,1413671024 +7220,108190,based on a kids book,1409574550 +7220,108190,dystopia,1409574514 +7220,108190,female protagonist,1409574520 +7220,108190,The Chosen One,1409574547 +7220,108689,Aaron Eckhart,1410726457 +7220,108689,demons,1410726443 +7220,108689,Frankenstein's monster,1410726453 +7220,108689,Kevin Grevioux,1410726471 +7220,108689,Yvonne Strahovski,1410726475 +7220,109483,chick flick,1412421628 +7220,109483,relationships,1412421643 +7220,109483,unbelievable plot,1412421612 +7220,109487,Anne Hathaway,1430774741 +7220,109487,artificial intelligence,1430774816 +7220,109487,astronomy,1430774882 +7220,109487,atmosphere,1430774866 +7220,109487,bad dialogue,1430774828 +7220,109487,black hole,1430774842 +7220,109487,Christopher Nolan,1430774721 +7220,109487,corny,1430774845 +7220,109487,Deus Ex Machina Ending,1430774884 +7220,109487,epic,1430774886 +7220,109487,exploration,1430774899 +7220,109487,father - child relationship,1430774859 +7220,109487,good science,1430774760 +7220,109487,good science bad science,1430774856 +7220,109487,Hans Zimmer,1430774846 +7220,109487,interesting ideea,1430774841 +7220,109487,love,1430774861 +7220,109487,Mackenzie Foy,1430774868 +7220,109487,Matthew McConaughey,1430774729 +7220,109487,Michael Caine,1430774826 +7220,109487,philosophical issues,1430774822 +7220,109487,physics,1430774763 +7220,109487,plot holes,1430774839 +7220,109487,relativity,1430774731 +7220,109487,sci-fi,1430774740 +7220,109487,Self-Indulgent,1430774876 +7220,109487,sentimental,1430774824 +7220,109487,space,1430774724 +7220,109487,suspense,1430774895 +7220,109487,thought-provoking,1430774733 +7220,109487,time-travel,1430774726 +7220,109487,twist ending,1430774898 +7220,109487,visually appealing,1430774877 +7220,109487,wormhole,1430774738 +7220,109569,CIA Agent,1420161771 +7220,109569,father daughter relationship,1420161773 +7220,109569,France,1420161774 +7220,109569,Kevin Costner,1420161776 +7220,109740,abortion,1415820311 +7220,109740,comedians,1415820360 +7220,109740,pregnancy,1415820341 +7220,109740,quirky humor,1415820354 +7220,109740,short,1415820348 +7220,109740,stand-up comedy,1415820339 +7220,109740,sweet,1415820350 +7220,109895,absent fathers,1435783770 +7220,109895,competition,1435783771 +7220,109895,directorial debut,1435783773 +7220,109895,heartwarming,1435783775 +7220,109895,Jason Bateman,1435783776 +7220,109895,spelling bee,1435783768 +7220,110102,Captain America,1413726000 +7220,110102,Chris Evans,1413725991 +7220,110102,comic book,1413726005 +7220,110102,conspiracy,1413726012 +7220,110102,Marvel,1413726007 +7220,110102,Nazis,1413726009 +7220,110102,Scarlett Johansson,1413725998 +7220,110102,superhero,1413725988 +7220,110297,based on a TV show,1410789964 +7220,110297,franchise,1410789970 +7220,110297,muppets,1410789974 +7220,110322,Nothing,1415665663 +7220,110453,football,1410726394 +7220,110453,sports,1410726397 +7220,110730,artificial intelligence,1415146424 +7220,110730,Johnny Depp,1415146438 +7220,110730,poorly thought out ending,1415146446 +7220,110826,bomb,1423672801 +7220,110826,gentrification,1423672801 +7220,110826,police,1420161608 +7220,110826,satellite,1423672801 +7220,110826,undercover cop,1420161609 +7220,111113,college,1415146338 +7220,111113,crude,1415146391 +7220,111113,crude humor,1415146341 +7220,111113,funny,1415146384 +7220,111113,Nicholas Stoller,1415146368 +7220,111113,Zac Efron,1415146364 +7220,111360,drugs,1422366873 +7220,111360,dumb science,1422366879 +7220,111360,fast paced action,1422366900 +7220,111360,God,1422366902 +7220,111360,IMAX Digital only,1422366936 +7220,111360,IMAX DMR,1422366939 +7220,111360,intense,1422366885 +7220,111360,Luc Besson,1422366870 +7220,111360,Morgan Freeman,1422366872 +7220,111360,partially photographed in IMAX,1422366923 +7220,111360,Scarlett Johansson,1422366868 +7220,111360,scifi,1422366940 +7220,111360,strong female lead,1422366947 +7220,111360,transhumanist,1422366949 +7220,111360,woman lead,1422366960 +7220,111364,bland hero,1413581895 +7220,111364,Bryan Cranston,1413581948 +7220,111364,Creature Feature,1413581929 +7220,111364,franchise,1413581932 +7220,111364,Godzilla,1413581883 +7220,111364,gradual tension,1413581952 +7220,111364,Monster,1413581888 +7220,111364,not enough monster action,1413581938 +7220,111364,special effects,1413581886 +7220,111443,cooking,1416165944 +7220,111443,entrepreneurs,1416165946 +7220,111443,food,1416165940 +7220,111443,Miami,1416165947 +7220,111443,predictable,1416165952 +7220,111443,road trip,1416165942 +7220,111443,Twitter,1416165957 +7220,111743,funny,1415621908 +7220,111743,Seth MacFarlane,1415621916 +7220,111743,witty,1415621914 +7220,112138,based on a TV show,1416435264 +7220,112138,Christopher Miller,1416435266 +7220,112138,college,1416435217 +7220,112138,hilarious,1416435219 +7220,112138,Jonah Hill,1416435221 +7220,112138,meta,1416435224 +7220,112138,Phil Lord,1416435279 +7220,112138,police,1416435226 +7220,112138,ridiculous,1416435239 +7220,112138,Self-referential,1416435214 +7220,112138,sequel,1416435228 +7220,112138,undercover cop,1416435231 +7220,112183,2015,1435346140 +7220,112183,Academy Award Nominee,1435346125 +7220,112183,actors,1435346120 +7220,112183,Alejandro González Iñárritu,1435346111 +7220,112183,alter ego,1435346097 +7220,112183,annoying soundtrack,1435346144 +7220,112183,Broadway,1435346099 +7220,112183,cinematography,1435346114 +7220,112183,Crazy,1435346103 +7220,112183,dark,1435346094 +7220,112183,Edward Norton,1435346082 +7220,112183,emma stone,1435346130 +7220,112183,feel good,1435346152 +7220,112183,insider acting stuff,1435346116 +7220,112183,LENTA,1435346156 +7220,112183,magical realism,1435346087 +7220,112183,Michael Keaton,1435346101 +7220,112183,MOLT_AVORRIDA,1435346159 +7220,112183,MOLT_CRITICADA,1435346163 +7220,112183,movie business,1435346113 +7220,112183,music,1435346132 +7220,112183,one shot,1435346135 +7220,112183,photography,1435346169 +7220,112183,pretentious,1435346108 +7220,112183,psychological,1435346091 +7220,112183,REPETITIVA,1435346172 +7220,112183,sad story,1435346175 +7220,112183,satire,1435346089 +7220,112183,single shot,1435346084 +7220,112183,smart,1435346106 +7220,112183,superhero,1435346136 +7220,112183,surreal,1435346118 +7220,112183,theater,1435346093 +7220,112183,USA,1435346193 +7220,112183,whiny,1435346195 +7220,112183,Zach Galifianakis,1435346179 +7220,112316,Americana,1420330800 +7220,112316,biography,1420330791 +7220,112316,history,1420330803 +7220,112316,music,1420330792 +7220,112316,New Jersey,1420330806 +7220,112316,quartet,1420330808 +7220,112370,Mark Wahlberg,1413671080 +7220,112370,plot holes,1413671056 +7220,112370,transformers,1413671064 +7220,112450,David Wain,1410306180 +7220,112788,cameron diaz,1415621870 +7220,112788,comedy,1415621872 +7220,112788,Jason Segel,1415621874 +7220,112788,sex,1415621876 +7220,112897,action-packed,1423078052 +7220,112897,Antonio Banderas,1423078050 +7220,112897,Arnold Schwarzenegger,1423078054 +7220,112897,campy,1423078056 +7220,112897,Ensemble Cast,1423078057 +7220,112897,franchise,1423078083 +7220,112897,high body count,1423078059 +7220,112897,IMAX Digital only,1423078066 +7220,112897,IMAX DMR,1423078067 +7220,112897,Jason Statham,1423078068 +7220,112897,Kellan Lutz,1423078070 +7220,112897,Mel Gibson,1423078072 +7220,112897,nostalgic,1423078075 +7220,112897,Patrick Hughes,1423078084 +7220,112897,PG-13,1423078078 +7220,112897,Ronda Rousey,1423078079 +7220,112897,Sylvester Stallone,1423078051 +7220,112911,action,1429061985 +7220,112911,anachronistic dialogue,1429062000 +7220,112911,Dwayne Johnson,1429061996 +7220,112911,Greek mythology,1429062006 +7220,112911,violence,1429062032 +7220,113071,alien,1422366755 +7220,113071,assembly line,1422366755 +7220,113071,friendship,1422366755 +7220,113207,biography,1427992943 +7220,113207,great soundtrack,1427992941 +7220,113207,long,1427992940 +7220,113207,musicians,1427992945 +7220,113207,rhythm & blues,1427992946 +7220,113207,Tate Taylor,1427992948 +7220,113345,action,1437010716 +7220,113345,Andy Wachowski,1437010754 +7220,113345,Deus ex machina,1437010729 +7220,113345,dialogue,1437010733 +7220,113345,disappointing,1437010740 +7220,113345,Lana Wachowski,1437010755 +7220,113345,obvious,1437010726 +7220,113345,royalty,1437010745 +7220,113345,sci-fi,1437010714 +7220,113345,space,1437010746 +7220,113345,Space Opera,1437010749 +7220,113345,wachowskis,1437010752 +7220,113378,artistic,1418604169 +7220,113378,based on a book,1418604102 +7220,113378,cashing in,1418604224 +7220,113378,cerebral,1418604171 +7220,113378,dystopian future,1418604174 +7220,113378,emotions,1418604177 +7220,113378,Jeff Bridges,1418604140 +7220,113378,Meryl Streep,1418604142 +7220,113378,utopia,1418604161 +7220,113378,Utopian society,1418604201 +7220,113394,double life,1412611413 +7220,113394,fake identity,1420161500 +7220,113394,impostor,1412611417 +7220,113394,siblings,1412611422 +7220,113394,traffic accident,1420161500 +7220,113394,twins,1412611425 +7220,113573,comic book,1422655662 +7220,113573,Eva Green,1422655659 +7220,113573,Frank Miller,1422655657 +7220,113573,monologue,1422655666 +7220,113573,multiple storylines,1422655660 +7220,113573,stylized,1422655656 +7220,113573,violence,1422655663 +7220,114074,adultery,1422994435 +7220,114074,Bill Hader,1422994437 +7220,114074,Craig Johnson,1422994448 +7220,114074,depression,1422994441 +7220,114074,Kristen Wiig,1422994438 +7220,114074,relationships,1422994439 +7220,114074,scuba diving,1422994442 +7220,114074,siblings,1422994432 +7220,114074,suicide,1422994434 +7220,114074,twins,1422994444 +7220,114795,battles,1426516865 +7220,114795,dracula,1426516863 +7220,114795,historically inaccurate,1426516871 +7220,114795,Turkey,1426516875 +7220,114795,vampires,1426516867 +7220,114795,war,1426516868 +7220,115381,Australia,1422366996 +7220,115381,bubblegum,1422994349 +7220,115381,driving test,1422994349 +7220,115664,animated,1422367141 +7220,115664,Day of the dead,1422367142 +7220,115664,funny,1422367144 +7220,115664,Jorge R. Gutierrez,1422367148 +7220,115664,journey,1422367145 +7220,115664,love,1422367146 +7220,115713,artificial intelligence,1440763108 +7220,115713,claustrophobic,1440763158 +7220,115713,consciousness,1440763149 +7220,115713,Drama,1440763160 +7220,115713,futuristic,1440763125 +7220,115713,gender roles,1440763139 +7220,115713,isolation,1440763142 +7220,115713,Manipulations,1440763171 +7220,115713,nudity (full frontal),1440763129 +7220,115713,philosophical,1440763116 +7220,115713,robots,1440763118 +7220,115713,sci-fi,1440763111 +7220,115713,Surreal,1440763153 +7220,115713,technology,1440763120 +7220,115713,Tense,1440763155 +7220,115713,thought provoking,1440763113 +7220,115713,thriller,1440763122 +7220,115713,turing test,1440763147 +7220,115713,visual effects,1440763189 +7220,116887,ancient civilization,1430235778 +7220,116887,biblical,1430235773 +7220,116887,Christian Bale,1430235772 +7220,116887,egypt,1430235775 +7220,116887,exodus,1430235791 +7220,116887,inaccurate,1430235793 +7220,116887,moses,1430235776 +7220,116887,religion,1430235785 +7220,116887,Ridley Scott,1430235770 +7220,117529,action,1450540334 +7220,117529,adventure,1450540318 +7220,117529,Bryce Dallas Howard,1450540346 +7220,117529,CGI,1450540384 +7220,117529,Chris Pratt,1450540322 +7220,117529,cliche,1450540353 +7220,117529,Colin Trevorrow,1450540355 +7220,117529,Commercial,1450540392 +7220,117529,danger,1450540349 +7220,117529,destruction,1450540395 +7220,117529,dinosaurs,1450540316 +7220,117529,evil military guy,1450540410 +7220,117529,exciting,1450540323 +7220,117529,Experiment Gone Awry,1450540330 +7220,117529,franchise,1450540337 +7220,117529,fun,1450540412 +7220,117529,genetic engineering,1450540416 +7220,117529,hubris,1450540417 +7220,117529,humor,1450540422 +7220,117529,Irrfan Khan,1450540332 +7220,117529,island,1450540325 +7220,117529,predictable,1450540374 +7220,117529,sci-fi,1450540320 +7220,117529,theme park,1450540440 +7220,117529,tyrannosaurus rex,1450540344 +7220,117529,velociraptor,1450540376 +7220,117529,weak female character,1450540444 +7220,117590,kidnapping,1430235739 +7220,117590,Sean Anders,1430235742 +7220,117590,watch the credits,1430235744 +7220,117851,adventure,1430774926 +7220,117851,Animation,1430774954 +7220,117851,Christopher Knights,1430774960 +7220,117851,comedy,1430774934 +7220,117851,Eric Darnell,1430774961 +7220,117851,franchise,1430774964 +7220,117851,good versus evil,1430774936 +7220,117851,humorous,1430774938 +7220,117851,octopus gets bad rap,1430774942 +7220,117851,series:madagascar,1430774952 +7220,117851,Simon J. Smith,1430774968 +7220,117851,talking animals,1430774925 +7220,117851,the north wind,1430774950 +7220,117851,Tom McGrath,1430774969 +7220,117851,watch the credits,1430774971 +7220,118900,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1434408163 +7220,118900,based on a book,1434408197 +7220,118900,California,1434408170 +7220,118900,cinematography,1434408167 +7220,118900,closure,1434408157 +7220,118900,coping,1434408147 +7220,118900,discovery,1434408165 +7220,118900,drugs,1434408169 +7220,118900,female protagonist,1434408148 +7220,118900,grief,1434408150 +7220,118900,hiking,1434408145 +7220,118900,Jean-Marc Vallée,1434408207 +7220,118900,mother and daughter relationship,1434408205 +7220,118900,nudity (topless),1434408175 +7220,118900,quotes,1434408203 +7220,118900,self discovery,1434408193 +7220,118900,vistas,1434408199 +7220,119145,action scenes,1437491024 +7220,119145,british,1437491006 +7220,119145,british comedy,1437491002 +7220,119145,colin firth,1437491012 +7220,119145,gentlemanly,1437490997 +7220,119145,gratuitous violence,1437491025 +7220,119145,Matthew Vaughn,1437491021 +7220,119145,megalomaniac villain,1437491027 +7220,119145,Michael Caine,1437491008 +7220,119145,Parody,1437491010 +7220,119145,spy,1437491004 +7220,119145,spy gadgets,1437491022 +7220,119145,spy thriller,1437490999 +7220,119145,violent,1437491000 +7220,119155,history,1429061945 +7220,119155,museum,1429061947 +7220,119155,Shawn Levy,1429061951 +7220,119155,slapstick,1429061953 +7220,119155,whimsical,1429061955 +7220,120466,Africa,1435345977 +7220,120466,AI,1435345979 +7220,120466,artificial intelligence,1435345965 +7220,120466,cyberpunk,1435345985 +7220,120466,die antwoord,1435345987 +7220,120466,entertaining,1435345994 +7220,120466,Funny,1435346002 +7220,120466,future,1435346003 +7220,120466,Johannesburg,1435346007 +7220,120466,Neill Blomkamp,1435346013 +7220,120466,police,1435345968 +7220,120466,product placement,1435346021 +7220,120466,robots,1435345963 +7220,120466,Sad,1435346024 +7220,120466,sci-fi,1435346026 +7220,120466,Sharlto Copley,1435346028 +7220,120466,South Africa,1435345966 +7220,120466,subculture,1435346030 +7220,120466,Touching,1435346032 +7220,122882,action,1446243621 +7220,122882,adventure,1446243646 +7220,122882,cars,1446243676 +7220,122882,charlize theron,1446243631 +7220,122882,chase,1446243655 +7220,122882,desert,1446243629 +7220,122882,dystopian,1446243626 +7220,122882,feminism,1446243628 +7220,122882,great soundtrack,1446243666 +7220,122882,mad max,1446243673 +7220,122882,non-stop,1446243633 +7220,122882,post apocalypse,1446243623 +7220,122882,sci-fi,1446243652 +7220,122882,special effects,1446243654 +7220,122882,Tom Hardy,1446243668 +7220,122882,unnuanced,1446243699 +7220,122882,violence,1446243662 +7220,122882,visually appealing,1446243624 +7220,122882,warlord,1446243677 +7220,122892,Action,1447356564 +7220,122892,artificial intelligence,1447356562 +7220,122892,Captain America,1447356582 +7220,122892,comic book,1447356566 +7220,122892,good vs evil,1447356586 +7220,122892,Hulk,1447356574 +7220,122892,Joss Whedon,1447356575 +7220,122892,Marvel,1447356559 +7220,122892,superhero,1447356560 +7220,122892,technology,1447356588 +7220,122892,The Avengers,1447356581 +7220,122902,comic book,1450540517 +7220,122902,Marvel,1450540510 +7220,122902,medical abuse,1450540536 +7220,122902,sci-fi,1450540527 +7220,122902,series reboot,1450540530 +7220,122902,stupid plot,1450540543 +7220,122902,superhero,1450540526 +7220,122902,Superpower,1450540545 +7220,122902,terrible acting,1450540548 +7220,125914,action,1431866967 +7220,125914,based on a book,1431866970 +7220,125914,comedy,1431866972 +7220,127096,a good film could have been made with the same budget,1434408033 +7220,127096,AVORRIDA,1434408008 +7220,127096,bad,1434407995 +7220,127096,bad ending,1434407969 +7220,127096,bad science,1434407972 +7220,127096,camera,1434408013 +7220,127096,confusing,1434408018 +7220,127096,disappointing,1434407935 +7220,127096,found footage,1434407977 +7220,127096,High school,1434407953 +7220,127096,I need a time machine so I can stop myself from seeing this movie,1434408037 +7220,127096,low budget,1434407940 +7220,127096,MOLT_CRITICADA,1434408006 +7220,127096,NOT found footage,1434407990 +7220,127096,poor production...,1434408042 +7220,127096,science fiction,1434408024 +7220,127096,shakey,1434408001 +7220,127096,slightly comical,1434407947 +7220,127096,slow paced,1434408046 +7220,127096,stupid ending,1434407945 +7220,127096,time travel,1434407937 +7220,130490,Action,1441216355 +7220,130490,badass girl,1441216364 +7220,130490,based on a book,1441216358 +7220,130490,divergent,1441216366 +7220,130490,dystopia,1441216360 +7220,130490,Miles Teller,1441216362 +7220,130490,savior,1441216381 +7220,130490,sci-fi,1441216383 +7220,130490,shailene woodley,1441216389 +7220,130490,Special effects,1441216391 +7220,130490,strong female character,1441216393 +7220,130490,survival,1441216401 +7220,130490,teen,1441216403 +7220,130490,theo james,1441216405 +7220,130490,Veronica Roth,1441216407 +7220,130490,Young Adult,1441216408 +7220,131013,Crude,1441642930 +7220,131013,hilarious,1441642931 +7220,131013,prison,1441642933 +7220,131013,will ferrel,1441642935 +7220,132046,Adventure,1435686549 +7220,132046,bad ending,1435686568 +7220,132046,Britt Robertson,1435686573 +7220,132046,Cheesy,1435686551 +7220,132046,Disney,1435686575 +7220,132046,For children,1435686586 +7220,132046,Future,1435686588 +7220,132046,George Clooney,1435686552 +7220,132046,Hugh Laurie,1435686589 +7220,132046,ineffective,1435686591 +7220,132046,sci-fi,1435686596 +7220,132046,visually appealing,1435686598 +7220,132800,mental illness,1435591347 +7220,132800,nudity (full frontal),1435591531 +7220,132800,television,1435591400 +7220,133281,music,1450540290 +7220,133281,rock,1450540284 +7220,133281,song cover,1450540288 +7220,133419,choir,1432392461 +7220,133419,college,1432392463 +7220,133419,directorial debut,1432392477 +7220,133419,musicians,1432392473 +7220,133419,vocalists,1432392474 +7220,133798,police,1443049518 +7220,133798,Texas,1443049519 +7220,134393,bitter,1438777618 +7220,134393,career vs. relationship,1438777620 +7220,134393,Crude humor,1438777621 +7220,134393,cynical,1438777623 +7220,134393,feminism,1438777625 +7220,134393,feminist,1438777628 +7220,134393,Funny,1438777616 +7220,134393,John cena,1438777633 +7220,134393,not subtle,1438777639 +7220,134393,Romantic comedy,1438777645 +7220,134853,Amy Poehler,1435686460 +7220,134853,childhood,1435686457 +7220,134853,creative,1435686462 +7220,134853,happiness,1435686458 +7220,134853,imaginative,1435686463 +7220,134853,Pixar,1435686454 +7220,134853,psychology,1435686464 +7220,134853,sadness,1435686468 +7220,134853,San Francisco,1435686470 +7220,135133,2015,1451770454 +7220,135133,love story,1451770456 +7220,135133,politics,1451770457 +7220,135133,violence,1451770458 +7220,135137,80s,1448281691 +7220,135137,adam sandler,1448281689 +7220,135137,Peter Dinklage,1448281698 +7220,135137,predictable,1448281700 +7220,135137,video games,1448281704 +7220,135861,comedy,1450540576 +7220,135861,crude humor,1450540591 +7220,135861,fantasy,1450540596 +7220,135861,funny,1450540578 +7220,135861,jokes,1450540600 +7220,135861,sequel,1450540624 +7220,135861,ted,1450540627 +7220,138104,disappointing ending,1441642861 +7222,260,hope,1439917015 +7222,260,rebel,1439917010 +7222,260,space epic,1439916998 +7225,2762,eerie,1199976581 +7243,317,Tim Allen,1233635109 +7243,353,Fantasy,1233635503 +7243,370,Leslie Neilsen,1233636563 +7243,432,Billy Crystal,1233637118 +7243,435,Dan Aykroyd,1233636487 +7243,553,Western,1233635388 +7243,3033,John Candy,1233635859 +7243,3717,Nicolas Cage,1233636589 +7243,4643,Mark Wahlberg,1233635278 +7243,7458,epic,1233636026 +7243,36529,Nicolas Cage,1233637298 +7243,55440,baseball,1233635969 +7243,57368,alien monster,1233635561 +7250,6291,social commentary,1295537966 +7254,3275,vigilante,1225417963 +7291,866,erotic,1443331386 +7291,866,lesbian,1443331339 +7291,866,mafia,1443331437 +7291,3186,60s,1446322106 +7291,3186,Angelina Jolie,1446322097 +7291,3186,asylum,1446322118 +7291,3186,based on a true story,1446326914 +7291,3186,Brittany Murphy,1446326905 +7291,3186,Clea DuVall,1446326935 +7291,3186,suicide,1446326926 +7291,3186,true story,1446326948 +7291,3186,winona ryder,1446322126 +7291,4022,stranded,1443228837 +7291,4022,SURVIVAL,1443228832 +7291,6810,domestic violence,1443227560 +7291,85510,Rape Culture,1448657909 +7291,85510,reality or imagination?,1448658590 +7291,85510,Special Effects,1448658597 +7291,85510,Zack Snyder,1448658637 +7293,27904,cyberpunk,1418581806 +7293,27904,drug abuse,1418581780 +7293,27904,drugs,1418581770 +7293,27904,philosophical,1418581792 +7293,27904,psychology,1418581790 +7293,27904,rotoscope,1418581777 +7293,27904,rotoscoping,1418581759 +7293,27904,social commentary,1418581784 +7293,27904,surrealism,1418581797 +7293,27904,weird,1418581795 +7293,44317,anthology,1438004870 +7293,44317,finnish,1438004870 +7293,44317,screwball comedy,1438004870 +7293,48043,artistic,1418581297 +7293,48043,cerebral,1418581314 +7293,48043,inspirational,1418581324 +7293,48043,mythology,1418581320 +7293,48043,sci-fi,1418581322 +7293,48043,thought-provoking,1418581292 +7293,48043,time travel,1418581308 +7293,48043,visually appealing,1418581306 +7293,53972,not as good as the first,1418581681 +7293,61567,comedy,1421179059 +7293,61567,disappointing,1421179059 +7293,61567,kummeli,1421179059 +7293,64993,Art Direction,1418582762 +7293,64993,bittersweet,1418582745 +7293,64993,melancholic,1418582748 +7293,64993,visually appealing,1418582760 +7293,64993,visually stunning,1418582757 +7293,112183,great performances,1427026808 +7293,112183,single shot,1427026813 +7315,112552,drummer,1424518338 +7315,112552,jazz music,1424518338 +7315,112552,perfectionism,1424518338 +7330,2572,ad,1139378229 +7342,34405,movie mets projections: browncoats will fall in love,1141419213 +7342,34405,non-sci-fi types will flame it. What else is new.,1141419213 +7345,6301,Dustin Hoffman,1137780826 +7373,8263,Betty Garrett,1292861196 +7373,8263,Esther Williams,1292861186 +7377,7706,AFI 100 (Movie Quotes),1201531112 +7388,318,prison,1173044737 +7388,7360,action,1173047968 +7395,32,Brad Pitt,1159947602 +7395,45,dark comedy,1226969757 +7395,1747,comedy,1226969698 +7395,1747,politics,1226969686 +7395,4878,time travel,1159947670 +7403,1719,Incest,1217046865 +7403,8578,alien,1179881040 +7403,8578,aliens,1179881040 +7403,8578,zombies,1179881013 +7451,5418,action,1429073792 +7451,5418,conspiracy,1429073854 +7451,5418,Matt Damon,1429073657 +7451,5418,realistic action,1429073759 +7451,5418,thriller,1429073766 +7451,109487,philosophical issues,1432712226 +7451,109487,sci-fi,1432712263 +7451,109487,science fiction,1432712801 +7467,91597,censorship,1429112228 +7467,91597,documentary,1429112228 +7467,91597,iran,1429112228 +7483,1639,Kevin Smith,1453035248 +7483,4878,time travel,1453034518 +7483,4979,dark comedy,1453034404 +7483,4979,Wes Anderson,1453034399 +7483,7361,surreal,1453034477 +7483,48082,dreams,1453034455 +7483,48082,Michel Gondry,1453034451 +7483,48082,surreal,1453034447 +7512,410,black comedy,1433696465 +7512,410,gothic,1433696460 +7512,410,quirky,1433696463 +7512,454,lawyers,1433696473 +7512,1035,Nazis,1433695368 +7512,1035,war,1433695379 +7512,2174,Bechdel Test:Pass,1433696347 +7512,2174,ghosts,1433696342 +7512,2174,ghosts/afterlife,1433696354 +7512,2174,haunted house,1433696351 +7512,2541,manipulation,1433696565 +7512,2541,Mind Games,1433696568 +7512,2706,Gross-out,1433694749 +7512,2706,stupid,1433694752 +7512,3081,gothic,1433693630 +7512,3081,quirky,1433693636 +7512,3081,visually appealing,1433693632 +7512,4306,talking animals,1433693686 +7512,4306,witty,1433693679 +7512,4447,lawyers,1433696429 +7512,6222,depression,1433694117 +7512,7361,bittersweet,1433693954 +7512,7361,complicated,1433693964 +7512,7361,imagination,1433693967 +7512,7361,melancholy,1433693962 +7512,7361,nonlinear,1433693951 +7512,7361,quirky,1433693958 +7512,7361,romance,1433693973 +7512,7361,surreal,1433693970 +7512,7361,thought-provoking,1433693949 +7512,7451,manipulation,1433696540 +7512,34319,dystopia,1433693523 +7512,34405,black comedy,1433695858 +7512,34405,great dialogue,1433695868 +7512,34405,Joss Whedon,1433695866 +7512,34405,quirky,1433695863 +7512,34405,witty,1433695855 +7512,44191,dark,1433693382 +7512,44191,dystopia,1433693369 +7512,44191,politics,1433693378 +7512,44191,social commentary,1433693376 +7512,44191,thought-provoking,1433693373 +7512,46972,slapstick,1433694904 +7512,47610,costume drama,1433695955 +7512,47610,romance,1433695957 +7512,47610,surprise ending,1433695963 +7512,47610,twist ending,1433695951 +7512,50872,clever,1433693741 +7512,50872,imagination,1433693738 +7512,50872,paris,1433693733 +7512,54259,british,1433694643 +7512,54259,fantasy,1433694639 +7512,54259,Neil Gaiman,1433694641 +7512,56757,Bechdel Test:Fail,1433693599 +7512,56757,Broadway,1433693604 +7512,56757,dark,1433693594 +7512,56757,dark comedy,1433693585 +7512,56757,gothic,1433693591 +7512,56757,Johnny Depp,1433693580 +7512,56757,london,1433693611 +7512,56757,Musical,1433693582 +7512,56757,Tim Burton,1433693578 +7512,56757,visually appealing,1433693588 +7512,58559,Atmospheric,1433693546 +7512,58559,dark,1433693549 +7512,58803,genius,1433695520 +7512,58803,mathematics,1433695511 +7512,58803,smart characters,1433695525 +7512,62155,great soundtrack,1433696986 +7512,62155,Manhattan,1433696990 +7512,62155,Michael Cera,1433696988 +7512,62155,New York City,1433696984 +7512,64614,classic car,1433696897 +7512,64614,Clint Eastwood,1433696913 +7512,64614,gangsters,1433696901 +7512,64614,patriotic,1433696904 +7512,64614,racism,1433696893 +7512,66203,funny,1433695082 +7512,66203,romance,1433695084 +7512,69757,intelligent,1433693310 +7512,69757,quirky,1433693303 +7512,72407,bad acting,1433696059 +7512,72407,formulaic,1433696076 +7512,72998,aliens,1433695408 +7512,72998,bad science,1433695414 +7512,72998,predictable,1433695404 +7512,72998,racism,1433695416 +7512,72998,war,1433695410 +7512,74275,black comedy,1433696660 +7512,74275,genius,1433696664 +7512,74275,smart characters,1433696668 +7512,74789,fantasy,1433694379 +7512,74789,Johnny Depp,1433694374 +7512,74789,Mia Wasikowska,1433694388 +7512,74789,Tim Burton,1433694372 +7512,74789,weird,1433694383 +7512,76251,gore,1433697096 +7512,76251,violence,1433697098 +7512,79132,cerebral,1433693848 +7512,79132,complicated,1433693845 +7512,79132,drama,1433693879 +7512,79132,dreams,1433693860 +7512,79132,intellectual,1433693856 +7512,79132,mindfuck,1433693839 +7512,79132,surreal,1433693869 +7512,79132,suspense,1433693877 +7512,79132,thought-provoking,1433693842 +7512,79132,thriller,1433693884 +7512,79132,twist ending,1433693873 +7512,79132,visually appealing,1433693866 +7512,79702,cultural references,1433694226 +7512,79702,cute,1433694233 +7512,79702,fantasy,1433694237 +7512,79702,fast-paced,1433694230 +7512,79702,geeky,1433694228 +7512,79702,hipsters,1433694235 +7512,79702,Michael Cera,1433694222 +7512,79702,quirky,1433694224 +7512,79702,stylized,1433694217 +7512,79702,visually appealing,1433694220 +7512,79702,whimsical,1433694238 +7512,80463,college,1433694268 +7512,80463,computers,1433694259 +7512,80463,dark comedy,1433694272 +7512,80463,funny,1433694273 +7512,80463,hacking,1433694276 +7512,80463,Jesse Eisenberg,1433694263 +7512,80463,loneliness,1433694266 +7512,80463,nerds,1433694297 +7512,80463,witty,1433694275 +7512,80693,bittersweet,1433695224 +7512,80693,depression,1433695218 +7512,80693,mental illness,1433695213 +7512,80693,quirky,1433695216 +7512,80693,suicide,1433695220 +7512,81562,mountain climbing,1433694813 +7512,81562,stranded,1433694805 +7512,81562,survival,1433694808 +7512,85397,love triangle,1433696125 +7512,85397,mystery,1433696121 +7512,85397,romance,1433696123 +7512,85438,beautiful scenery,1433694408 +7512,85438,gothic,1433694411 +7512,89745,fast paced,1433695914 +7512,89745,Joss Whedon,1433695907 +7512,90866,bittersweet,1433694193 +7512,90866,cinematography,1433694192 +7512,90866,fantasy,1433694187 +7512,90866,heartwarming,1433694190 +7512,90866,orphans,1433694196 +7512,90866,visually appealing,1433694184 +7512,93721,slow,1433696263 +7512,93982,mind game,1433696791 +7512,93982,serial killer,1433696786 +7512,95510,Andrew Garfield,1433697021 +7512,95510,Emma Stone,1433697018 +7512,95510,nerds kicking butt,1433697025 +7512,96588,predictable,1433694858 +7512,96821,bittersweet,1433695243 +7512,96821,character development,1433695239 +7512,96821,depression,1433695251 +7512,96821,Suicide,1433695248 +7512,97921,dark humor,1433695159 +7512,97921,drama,1433695170 +7512,97921,great characters,1433695168 +7512,97921,loneliness,1433695164 +7512,97921,mental illness,1433695157 +7512,97921,romance,1433695161 +7512,98154,American Civil War,1433696603 +7512,98154,history,1433696597 +7512,98154,politics,1433696600 +7512,98203,makes no sense,1433696099 +7512,98203,plot makes no sense,1433696101 +7512,98203,ridiculous,1433696095 +7512,99178,genius,1433696315 +7512,99178,snarky,1433696317 +7512,101088,beautiful,1433694440 +7512,101088,erotic,1433694436 +7512,101088,psychological thriller,1433694433 +7512,101088,stylish,1433694438 +7512,101088,visually stylish,1433694442 +7512,104879,absorbing,1433693445 +7512,104879,nuanced,1433693449 +7512,104879,thriller,1433693451 +7512,106002,Asa Butterfield,1433694169 +7512,106002,based on a book,1433694150 +7512,106100,disease,1433697066 +7512,106100,topic:AIDS/HIV,1433697068 +7512,106100,topic:homophobia,1433697064 +7512,106197,Darren Criss,1433696747 +7512,106197,dysfunctional family,1433696749 +7512,106197,writer,1433696754 +7512,106920,bittersweet,1433693905 +7512,106920,philosophical,1433693908 +7512,106920,psychology,1433693912 +7512,106920,quirky,1433693925 +7512,106920,sad,1433693923 +7512,106920,thought-provoking,1433693903 +7512,107771,atmospheric,1433695994 +7512,107771,vampires,1433695996 +7517,5445,surreal,1149955805 +7528,62376,Bill Murray,1247085544 +7533,1101,Tom Cruise,1442867956 +7533,5500,very funny,1442867933 +7549,7419,Martin Scorsese,1450701132 +7549,44199,twist ending,1450700309 +7549,55908,intelligent,1450698496 +7549,55908,philosophical,1450698490 +7549,55908,thought-provoking,1450698486 +7549,55908,unique,1450698499 +7549,94864,predictable,1450698805 +7549,97752,thought-provoking,1450698709 +7549,97752,Wachowski Brothers,1450698718 +7549,116897,dark humor,1450700804 +7583,260,1970s,1434770174 +7583,260,scifi,1434770161 +7587,260,Harrison Ford,1447609373 +7595,260,Intense,1437698368 +7595,260,Special effects,1437698360 +7603,260,adventure,1431465921 +7603,260,sci-fi,1431465910 +7613,32,Based on short film,1137289353 +7613,260,comic book style,1137289274 +7613,541,androids,1137288973 +7613,555,showdown,1137289330 +7613,778,heroin,1137289318 +7613,924,kubrick,1137267791 +7613,1196,snow,1137289255 +7613,1199,kafkaesque,1137288991 +7613,1201,morricone score,1137289138 +7613,1201,showdown,1137289148 +7613,1202,drunkenness,1137289419 +7613,1208,heart of darkness,1137288926 +7613,1230,neurosis,1137288903 +7613,1251,surreal,1137288888 +7613,1284,philip marlowe,1137288945 +7613,1288,mockumentary,1137289299 +7613,1419,coming of age,1137289392 +7613,1732,bowling,1137288933 +7613,1913,dream-like,1137289228 +7613,6858,suspense,1138886641 +7613,7135,gangster,1137901821 +7613,39183,Gay Cowboy,1137278757 +7613,39292,McCarthyism,1137815929 +7613,40583,oil,1138493226 +7613,41997,mossad,1139982847 +7660,260,epic adventure,1434295931 +7660,260,scifi cult,1434295918 +7662,260,Science Fiction,1440435458 +7662,260,space action,1440435466 +7668,5995,world war 2,1191705616 +7668,47099,courage,1191705416 +7668,64839,sad,1243536258 +7673,2594,thrilling end,1201799842 +7674,260,classic,1439777083 +7674,260,far future,1439777095 +7674,260,futuristic,1439777087 +7681,2353,Valtion Vihollinen,1144272462 +7712,527,atmospheric,1445540022 +7712,904,Alfred Hitchcock,1445540076 +7736,260,orange,1439673339 +7736,260,space,1439673332 +7743,260,Adventure,1432980332 +7743,260,Sci fi,1432980340 +7745,55247,Nudity (Topless),1193037258 +7755,7013,creepy,1291241728 +7755,7013,dreamlike,1291241724 +7755,78836,camerawork,1290612629 +7755,78836,colours,1290612629 +7784,1193,mental hospital,1451529216 +7784,1193,mental illness,1445089731 +7784,1193,powerful ending,1451529223 +7784,1193,psychology,1445054697 +7784,1584,sci-fi,1445054604 +7784,1653,dystopia,1445053915 +7784,2324,comedy,1445070204 +7784,2571,sci-fi,1445054543 +7784,4886,Animation,1445089901 +7784,4995,mental illness,1445089717 +7784,4995,psychology,1445054651 +7784,5690,anime,1445070358 +7784,5903,dystopia,1445054830 +7784,5903,sci-fi,1445054845 +7784,6365,sci-fi,1445054546 +7784,6377,animation,1445089874 +7784,6645,dystopia,1445090432 +7784,7163,sci-fi,1451529130 +7784,34405,sci-fi,1445054512 +7784,59315,sci-fi,1445054556 +7784,68954,animation,1445089882 +7784,74458,mental illness,1445090200 +7784,78499,animation,1445089888 +7784,79132,sci-fi,1445054579 +7784,81591,mental illness,1445089754 +7784,81591,psychology,1445089588 +7784,85414,sci-fi,1445054734 +7784,85414,time travel,1445054752 +7784,90531,psychology,1445090597 +7784,96610,plot holes,1445055297 +7784,96610,sci-fi,1445089013 +7784,96610,time travel,1445089018 +7784,97752,based on a book,1445055092 +7784,97752,dystopia,1445055042 +7784,97752,sci-fi,1445055045 +7784,101864,post-apocalyptic,1445054772 +7784,101864,sci-fi,1445054763 +7784,103253,dystopia,1445055607 +7784,107406,dystopia,1445054888 +7784,107406,plot holes,1445055290 +7784,109487,sci-fi,1445054562 +7784,117176,True story,1445070289 +7784,122882,action,1445055162 +7784,122886,Fan service,1451529020 +7784,122886,Plot Recycling,1451529018 +7784,133645,good acting,1451528974 +7784,134853,Animation,1445088918 +7784,134853,psychology,1445088905 +7794,296,exploitation,1428092925 +7794,296,stylish,1428092925 +7794,296,violent,1428092925 +7796,2771,acting,1243621826 +7796,2771,guilty pleasure,1243621821 +7796,5225,male nudity,1151791124 +7796,6016,brasil,1151791147 +7796,6016,drugs,1151791147 +7796,45501,horrible finish,1155615906 +7796,71466,funny,1274632631 +7796,71466,sentimental,1274632640 +7796,89085,israel,1409592799 +7796,89085,spy,1409592795 +7801,260,"Cheesy space opera, classic",1437605092 +7801,260,vintage special effects,1437605141 +7801,593,classical horror movie,1437605846 +7801,593,psychological,1437605846 +7801,593,smart bad guy,1437605846 +7810,32,time loop,1368439500 +7810,441,adolescence,1368439407 +7810,592,super hero,1368439466 +7810,1125,series,1368439441 +7810,1259,adolescence,1368439407 +7810,1270,time loop,1368439500 +7810,1291,series,1368439441 +7810,1374,series,1368439441 +7810,1591,super hero,1368439467 +7810,1909,series,1368439441 +7810,1918,series,1368439441 +7810,1968,adolescence,1368439407 +7810,2002,series,1368439441 +7810,2011,time loop,1368439500 +7810,2640,super hero,1368439467 +7810,2640,superheroes,1368439425 +7810,2706,adolescence,1368439407 +7810,2723,superheroes,1368439424 +7810,2959,Brad Pitt,1344076103 +7810,2959,dark comedy,1344076110 +7810,2959,Edward Norton,1344076099 +7810,2959,psychology,1344076105 +7810,2959,social commentary,1344076118 +7810,2959,surreal,1344076108 +7810,3556,adolescence,1368439407 +7810,4226,time loop,1368439500 +7810,5225,adolescence,1368439407 +7810,5349,superheroes,1368439425 +7810,5445,time loop,1368439500 +7810,8636,superheroes,1368439425 +7810,33794,Christian Bale,1344076272 +7810,33794,Michael Caine,1344076274 +7810,33794,Morgan Freeman,1344076269 +7810,33794,super hero,1368439467 +7810,33794,superhero,1344076263 +7810,45499,superheroes,1368439424 +7810,58559,Batman,1344076150 +7810,58559,Heath Ledger,1344076163 +7810,58559,Michael Caine,1344076158 +7810,58559,Morgan Freeman,1344076166 +7810,58559,Oscar (Best Supporting Actor),1344076160 +7810,58559,superhero,1344076154 +7810,59315,superheroes,1368439424 +7810,67792,Australian,1343803266 +7810,67792,coming of age,1343803308 +7810,67792,Gemma Ward,1343803282 +7810,67792,Luke Ford,1343803288 +7810,67792,Rhys Wakefield,1343803276 +7810,79720,Australian,1343801242 +7810,91529,Christian Bale,1344076199 +7810,91529,Christopher Nolan,1344076182 +7810,91529,Joseph Gordon-Levitt,1344076187 +7810,91529,Tom Hardy,1344076216 +7810,93840,clever,1344076238 +7810,93840,excellent cinematography,1344076242 +7810,93840,original plot,1344076231 +7810,93840,social commentary,1344076234 +7810,93840,witty,1344076234 +7819,260,EPIC,1438051367 +7819,260,space adventure,1438051356 +7819,134853,cute!,1438180284 +7819,134853,happy,1438180284 +7819,134853,sad but good,1438180284 +7866,68157,Quentin Tarantino,1254368037 +7909,31,inspirational,1449068115 +7909,1271,unlikely friendships,1449070481 +7909,6218,Keira Knightley,1449068572 +7909,38499,gay,1449068716 +7909,43744,Lesbian,1449069392 +7909,43744,queer,1449069398 +7909,112852,adventure,1448797659 +7909,112852,aliens,1448797643 +7909,112852,fantasy,1448797640 +7909,112852,great soundtrack,1448797635 +7909,112852,Great Visuals,1448797662 +7909,112852,humorous,1448797666 +7909,112852,Marvel Cinematic Universe,1448797685 +7909,112852,sci-fi,1448797679 +7909,112852,science fiction,1448797651 +7909,112852,space,1448797632 +7909,112852,violent,1448797676 +7909,118244,far future,1449071486 +7909,122900,entertaining,1448797590 +7909,122900,Marvel,1448797573 +7909,122900,sci-fi,1448797579 +7909,122900,superheroes,1448797599 +7909,134853,Pixar,1448797801 +7921,112171,wondrful movie 4,1446712914 +7953,7335,paranoid,1212351645 +7975,1,adventure,1443694856 +7975,1,animated,1443694856 +7975,1,animation,1443694831 +7975,1,computer animation,1443694845 +7975,1,Disney,1443694833 +7975,1,funny,1443694844 +7975,1,pixar,1443694828 +7975,1,Tom Hanks,1443694835 +7975,1,toys,1443694845 +7975,6,Al Pacino,1443680235 +7975,6,bank robbery,1443680263 +7975,6,crime,1443680251 +7975,6,great acting,1443680250 +7975,6,Natalie Portman,1443680263 +7975,6,realistic action,1443680251 +7975,6,Robert De Niro,1443680237 +7975,50,ambiguous ending,1443738463 +7975,50,anti-hero,1443738494 +7975,50,caper,1443738365 +7975,50,classic,1443738455 +7975,50,clever,1443738544 +7975,50,complicated,1443738342 +7975,50,complicated plot,1443738494 +7975,50,con men,1443738388 +7975,50,conspiracy,1443738346 +7975,50,Crime,1443738372 +7975,50,Dark,1443738543 +7975,50,detective thriller,1443738563 +7975,50,ensemble cast,1443738372 +7975,50,excellent script,1443738416 +7975,50,Gabriel Byrne,1443738532 +7975,50,genre-defining,1443738494 +7975,50,good dialogs,1443738494 +7975,50,great acting,1443738416 +7975,50,great cast,1443738494 +7975,50,great ending,1443738365 +7975,50,heist,1443738365 +7975,50,imdb top 250,1443738416 +7975,50,intelligent,1443738455 +7975,50,Kevin Spacey,1443738342 +7975,50,mindfuck,1443738365 +7975,50,mystery,1443738388 +7975,50,nonlinear storyline,1443738475 +7975,50,organized crime,1443738349 +7975,50,Pete Postlethwaite,1443738512 +7975,50,puzzle-like,1443738562 +7975,50,rewatchable,1443738534 +7975,50,smart writing,1443738474 +7975,50,solving riddles/puzzles,1443738474 +7975,50,storytelling,1443738365 +7975,50,surprise ending,1443738455 +7975,50,suspense,1443738344 +7975,50,thriller,1443738366 +7975,50,tricky,1443738388 +7975,50,twist ending,1443738341 +7975,50,twists & turns,1443738388 +7975,50,unreliable narrators,1443738532 +7975,50,Web of Lies,1443738515 +7975,50,whodunnit,1443738563 +7975,208,adventure,1443679479 +7975,208,apocalypse,1443679494 +7975,208,dystopia,1443679494 +7975,208,dystopic future,1443679494 +7975,208,Kevin Costner,1443679481 +7975,208,post-apocalyptic,1443679481 +7975,260,action,1443668051 +7975,260,"action, scifi",1443668081 +7975,260,adventure,1443664100 +7975,260,aliens,1443668099 +7975,260,EPIC,1443668067 +7975,260,epic adventure,1443668067 +7975,260,future,1443668075 +7975,260,futuristic,1443668075 +7975,260,Harrison Ford,1443668059 +7975,260,sci fi,1443668083 +7975,260,sci-fi,1443668051 +7975,260,Science Fiction,1443668051 +7975,260,scifi,1443664144 +7975,260,space,1443664090 +7975,260,space action,1443668051 +7975,260,space adventure,1443668050 +7975,260,space epic,1443668067 +7975,260,space opera,1443668058 +7975,260,space travel,1443668075 +7975,541,androids,1443695855 +7975,541,based on a book,1443695949 +7975,541,classic,1443695947 +7975,541,cyberpunk,1443695839 +7975,541,Daryl Hannah,1443695920 +7975,541,dystopia,1443695836 +7975,541,futuristic,1443695863 +7975,541,genetics,1443695878 +7975,541,Harrison Ford,1443695843 +7975,541,Philip K. Dick,1443695841 +7975,541,philosophical,1443695861 +7975,541,Ridley Scott,1443695952 +7975,541,robots,1443695854 +7975,541,Rutger Hauer,1443695892 +7975,541,sci-fi,1443695834 +7975,586,childhood classics,1443694082 +7975,586,christmas,1443694076 +7975,586,family,1443694082 +7975,586,Macaulay Culkin,1443694076 +7975,586,nostalgia,1443694083 +7975,586,traps,1443694116 +7975,589,androids,1443667416 +7975,589,Arnold Schwarzenegger,1443667397 +7975,589,future,1443667397 +7975,589,robots,1443667416 +7975,589,sci-fi,1443667397 +7975,589,time travel,1443667397 +7975,1200,action,1443667884 +7975,1200,aliens,1443667883 +7975,1200,androids,1443667902 +7975,1200,classic,1443736115 +7975,1200,foul language,1443735998 +7975,1200,horror,1443667892 +7975,1200,imdb top 250,1443736115 +7975,1200,James Cameron,1443736115 +7975,1200,monster,1443667918 +7975,1200,realistic tough female,1443736049 +7975,1200,sci-fi,1443667883 +7975,1200,science fiction,1443736080 +7975,1200,scifi,1443736113 +7975,1200,SF,1443736080 +7975,1200,Sigourney Weaver,1443667883 +7975,1200,space,1443667883 +7975,1200,space colony,1443736079 +7975,1200,space craft,1443736080 +7975,1200,space horror,1443735995 +7975,1200,SPACE TRAVEL,1443667895 +7975,1200,spaceflight,1443736080 +7975,1200,strong femal lead,1443736048 +7975,1200,suspense,1443667892 +7975,1200,tense,1443667891 +7975,1234,1930s,1443738120 +7975,1234,30s,1443738120 +7975,1234,caper,1443738055 +7975,1234,classic,1443738055 +7975,1234,clever,1443738080 +7975,1234,complicated,1443738089 +7975,1234,con artists,1443738055 +7975,1234,con men,1443738055 +7975,1234,genius,1443738086 +7975,1234,great acting,1443738140 +7975,1234,great depression,1443738120 +7975,1234,grifting,1443738082 +7975,1234,heist,1443738055 +7975,1234,holds up well,1443738084 +7975,1234,Paul Newman,1443738055 +7975,1234,planning,1443738096 +7975,1234,Robert Redford,1443738055 +7975,1234,surprise ending,1443738056 +7975,1234,team,1443738114 +7975,1234,twist,1443738114 +7975,1234,twist ending,1443738055 +7975,1234,twists & turns,1443738080 +7975,1261,demons,1443693505 +7975,1261,gore,1443693507 +7975,1261,horror,1443693505 +7975,1261,zombies,1443693504 +7975,1262,Charles Bronson,1443839084 +7975,1262,classic,1443839061 +7975,1262,ensemble cast,1443839055 +7975,1262,historical,1443839059 +7975,1262,James Coburn,1443839109 +7975,1262,prison break,1443839056 +7975,1262,prison escape,1443839055 +7975,1262,Richard Attenborough,1443839085 +7975,1262,Steve McQueen,1443839069 +7975,1262,tunnel escape,1443839121 +7975,1262,World War II,1443839067 +7975,1262,WWII,1443839067 +7975,1287,AFI 100,1443839305 +7975,1287,AFI 100 (Cheers),1443839300 +7975,1287,AFI 100 (Thrills),1443839302 +7975,1287,chariot race,1443839270 +7975,1287,Charlton Heston,1443839270 +7975,1287,christianity,1443839271 +7975,1287,forgiveness,1443839281 +7975,1287,friendship,1443839329 +7975,1287,great acting,1443839314 +7975,1287,great cinematography,1443839311 +7975,1287,historical,1443839311 +7975,1287,historical drama,1443839349 +7975,1287,historical epic,1443839239 +7975,1287,imdb top 250,1443839289 +7975,1287,jesus,1443839270 +7975,1287,long,1443839336 +7975,1287,Oscar (Best Actor),1443839292 +7975,1287,Oscar (Best Cinematography),1443839294 +7975,1287,Oscar (Best Directing),1443839295 +7975,1287,Oscar (Best Picture),1443839290 +7975,1287,Oscar (Best Supporting Actor),1443839297 +7975,1287,redemption,1443839280 +7975,1287,Roman empire,1443839236 +7975,1287,rome,1443839242 +7975,1287,subgenre:sword and sandal,1443839329 +7975,1287,sword and sandal,1443839329 +7975,1302,baseball,1443693076 +7975,1302,Kevin Costner,1443693078 +7975,1302,sports,1443693077 +7975,1320,Horror,1443667757 +7975,1320,sci-fi,1443667730 +7975,1320,Sigourney Weaver,1443667732 +7975,1371,aliens,1443668648 +7975,1371,artificial intelligence,1443668623 +7975,1371,sci-fi,1443668380 +7975,1371,Science Fiction,1443668623 +7975,1371,slow,1443668380 +7975,1371,Space,1443668648 +7975,1371,space opera,1443668630 +7975,1371,Star Trek,1443668380 +7975,1387,animal attacks,1443695084 +7975,1387,animal horror,1443695120 +7975,1387,animal:shark,1443695073 +7975,1387,animals,1443695172 +7975,1387,classic,1443695086 +7975,1387,creepy,1443695073 +7975,1387,franchise,1443695110 +7975,1387,horror,1443695157 +7975,1387,horror classic,1443695161 +7975,1387,man vs nature,1443695084 +7975,1387,man vs. beast,1443695083 +7975,1387,monster,1443695072 +7975,1387,music,1443695101 +7975,1387,ocean,1443695101 +7975,1387,ominous,1443695057 +7975,1387,scary,1443695054 +7975,1387,shark,1443695059 +7975,1387,shark-attacks,1443695060 +7975,1387,spielberg,1443695088 +7975,1387,Steven Spielberg,1443695049 +7975,1387,suspense,1443695101 +7975,1387,suspenseful,1443695062 +7975,1387,tense,1443695099 +7975,1405,adapted from:TV series,1443693875 +7975,1405,Based on a TV show,1443693875 +7975,1405,based on TV series,1443693873 +7975,1405,idiotic,1443693852 +7975,1405,immature,1443693863 +7975,1405,stupid,1443693850 +7975,1405,Stupid as Hell,1443693857 +7975,1527,action,1443667546 +7975,1527,aliens,1443667537 +7975,1527,Bruce Willis,1443667537 +7975,1527,Chris Tucker,1443667565 +7975,1527,futuristic,1443667477 +7975,1527,Gary Oldman,1443667565 +7975,1527,Milla Jovovich,1443667537 +7975,1527,sci-fi,1443667476 +7975,1584,Carl Sagan,1443668467 +7975,1584,first contact,1443668466 +7975,1584,idealism,1443668505 +7975,1584,Jodie Foster,1443668451 +7975,1584,S.E.T.I.,1443668505 +7975,1584,sci-fi,1443668451 +7975,1584,science,1443668466 +7975,1584,space travel,1443668451 +7975,1653,dystopia,1443668871 +7975,1653,dystopic future,1443668871 +7975,1653,future,1443668718 +7975,1653,futuristic,1443668871 +7975,1653,genetic engineering,1443668704 +7975,1653,genetic selection,1443668729 +7975,1653,genetics,1443668701 +7975,1653,intelligent,1443668837 +7975,1653,Jude Law,1443668719 +7975,1653,powerful ending,1443668708 +7975,1653,realistic sci/fi,1443668728 +7975,1653,sci-fi,1443668699 +7975,1653,science fiction,1443668728 +7975,1653,space travel,1443668732 +7975,1653,thought-provoking,1443668710 +7975,1653,Uma Thurman,1443668693 +7975,1653,visually appealing,1443668712 +7975,1713,comedy of manners,1443694005 +7975,1713,mouse,1443694007 +7975,1954,boxing,1443693126 +7975,1954,fighting,1443693126 +7975,1954,inspirational,1443693129 +7975,1954,sports,1443693139 +7975,1994,frightening,1443694676 +7975,1994,ghosts,1443694663 +7975,1994,haunted house,1443694663 +7975,1994,Horror,1443694688 +7975,1994,paranormal,1443694663 +7975,1994,suspense,1443694663 +7975,2009,Charlton Heston,1443668972 +7975,2009,dystopia,1443668972 +7975,2009,futuristic,1443669029 +7975,2009,Malthusianism,1443669036 +7975,2009,overpopulation,1443668972 +7975,2009,sci-fi,1443668975 +7975,2009,science fiction,1443668993 +7975,2021,based on a book,1443676289 +7975,2021,David Lynch,1443676289 +7975,2021,desert,1443676319 +7975,2021,fantasy,1443676275 +7975,2021,far future,1443676319 +7975,2021,Frank Herbert,1443676289 +7975,2021,massacred the book,1443676302 +7975,2021,Max von Sydow,1443676300 +7975,2021,Patrick Stewart,1443676317 +7975,2021,sci-fi,1443676269 +7975,2021,space opera,1443676319 +7975,2160,Antichrist,1443693582 +7975,2160,demons,1443693570 +7975,2160,horror,1443693556 +7975,2160,paranoia,1443693576 +7975,2160,Roman Polanski,1443693545 +7975,2160,satan,1443693571 +7975,2160,satanism,1443693579 +7975,2160,suspense,1443693599 +7975,2160,WITCHCRAFT,1443693589 +7975,2420,classic,1443685280 +7975,2420,martial arts,1443685280 +7975,2420,mentor,1443685294 +7975,2420,Pat Morita,1443685283 +7975,2420,Ralph Macchio,1443685294 +7975,2420,underdog,1443685282 +7975,2470,adventure,1443694404 +7975,2470,Australia,1443694400 +7975,2470,funny,1443694421 +7975,2470,New York City,1443694402 +7975,2470,outback,1443694402 +7975,2470,Paul Hogan,1443694406 +7975,2470,thats not a knife,1443694417 +7975,2471,Aborigines,1443694361 +7975,2471,adventure,1443694364 +7975,2471,Australia,1443694360 +7975,2471,New York City,1443694361 +7975,2471,Paul Hogan,1443694362 +7975,2471,sequel,1443694368 +7975,2529,"""damn dirty apes""",1443738180 +7975,2529,adapted from:book,1443738202 +7975,2529,AFI 100 (Movie Quotes),1443738202 +7975,2529,based on a book,1443738202 +7975,2529,Charlton Heston,1443669084 +7975,2529,damn dirty apes,1443738180 +7975,2529,damn you all to hell,1443738204 +7975,2529,dystopia,1443669084 +7975,2529,far future,1443669089 +7975,2529,imdb top 250,1443738202 +7975,2529,one-way time travel,1443669205 +7975,2529,original,1443669091 +7975,2529,planet of the apes,1443669171 +7975,2529,post-apocalyptic,1443669084 +7975,2529,Rod Serling,1443669107 +7975,2529,science fiction,1443669088 +7975,2529,science vs religion,1443738180 +7975,2529,social commentary,1443669084 +7975,2529,talking animals,1443738224 +7975,2529,twist ending,1443669087 +7975,2529,visually appealing,1443669107 +7975,2530,"""damn dirty apes""",1443737939 +7975,2530,ACTION,1443737939 +7975,2530,concept,1443737939 +7975,2530,Cult film,1443737921 +7975,2530,doomsday,1443737939 +7975,2530,post-apocalyptic,1443737884 +7975,2530,sci-fi,1443737882 +7975,2530,scifi,1443737882 +7975,2530,social commentary,1443737890 +7975,2531,animals,1443737493 +7975,2531,planet of the apes,1443737613 +7975,2531,post-apocalyptic,1443737573 +7975,2531,science fiction,1443737362 +7975,2531,scifi,1443737362 +7975,2550,ghosts,1443693952 +7975,2550,haunted house,1443693953 +7975,2550,horror,1443693952 +7975,2550,paranormal,1443693968 +7975,2550,psychological,1443694590 +7975,2550,Slow Opening,1443693967 +7975,2550,supernatural,1443693967 +7975,2550,suspense,1443693965 +7975,2571,acid trip,1443736812 +7975,2571,action,1443736698 +7975,2571,alternate reality,1443736698 +7975,2571,alternate world,1443736966 +7975,2571,Andy Wachowski,1443736856 +7975,2571,artificial intelligence,1443736706 +7975,2571,Carrie-Anne Moss,1443736913 +7975,2571,classic,1443736725 +7975,2571,computer paranoia,1443736784 +7975,2571,computers,1443736714 +7975,2571,cult film,1443736922 +7975,2571,cyberpunk,1443736685 +7975,2571,dark,1443736842 +7975,2571,dystopia,1443736682 +7975,2571,dystopic future,1443736727 +7975,2571,evil computer,1443736980 +7975,2571,fantasy,1443736936 +7975,2571,fight scenes,1443736714 +7975,2571,hacker,1443736740 +7975,2571,hackers,1443736711 +7975,2571,Hugo Weaving,1443736723 +7975,2571,imdb top 250,1443736788 +7975,2571,Keanu Reeves,1443736913 +7975,2571,Larry Wachkowski,1443736856 +7975,2571,Laurence Fishburne,1443736921 +7975,2571,man versus machine,1443736730 +7975,2571,martial arts,1443736699 +7975,2571,overrated,1443736790 +7975,2571,post apocalyptic,1443736705 +7975,2571,post-apocalyptic,1443736697 +7975,2571,pretentious,1443736901 +7975,2571,psychic character,1443736839 +7975,2571,sci fi,1443736845 +7975,2571,sci-fi,1443736678 +7975,2571,science fiction,1443736743 +7975,2571,scifi,1443736762 +7975,2571,slow motion,1443736937 +7975,2571,stylized,1443736760 +7975,2571,super-hero,1443736836 +7975,2571,superpowers,1443736740 +7975,2571,technology,1443736939 +7975,2571,virtual reality,1443736680 +7975,2571,Wachowski Brothers,1443736717 +7975,2700,Based on a TV show,1443693659 +7975,2700,crude humor,1443693648 +7975,2700,raunchy,1443693649 +7975,2700,south park,1443693631 +7975,2700,stupidity,1443693658 +7975,2953,childhood classic,1443694213 +7975,2953,Christmas,1443694180 +7975,2953,family,1443694191 +7975,2953,funny,1443694178 +7975,2953,home alone,1443694203 +7975,2953,Macaulay Culkin,1443694179 +7975,2953,New York,1443694183 +7975,2953,sequel,1443694185 +7975,2953,traps,1443694177 +7975,3354,bad science,1443679633 +7975,3354,mars,1443679633 +7975,3354,science fiction,1443679629 +7975,3949,addiction,1443694483 +7975,3949,dark,1443694519 +7975,3949,depressing,1443694450 +7975,3949,disturbing,1443694483 +7975,3949,drug abuse,1443694470 +7975,3949,drugs,1443694473 +7975,3949,heroin,1443694472 +7975,3949,Nudity (Full Frontal - Notable),1443694497 +7975,3949,Nudity (Full Frontal),1443694499 +7975,3949,R:intense depiction of drug addiction,1443694500 +7975,3969,alcoholism,1443737067 +7975,3969,change the world,1443737060 +7975,3969,domestic violence,1443737070 +7975,3969,haley joel osment,1443737067 +7975,3969,idealistic,1443737071 +7975,3969,inspirational,1443737059 +7975,3969,kevin spacey,1443737059 +7975,3969,sad,1443737090 +7975,3969,twist ending,1443737060 +7975,3986,action,1443669809 +7975,3986,arnold,1443669806 +7975,3986,Arnold Schwarzenegger,1443669803 +7975,3986,bad science,1443669827 +7975,3986,cloning,1443669857 +7975,3986,futuristic,1443669827 +7975,3986,genetics,1443669827 +7975,3986,sci-fi,1443669827 +7975,3986,science fiction,1443669827 +7975,4643,adventure,1443737743 +7975,4643,apes,1443737697 +7975,4643,astronauts,1443737695 +7975,4643,cryogenics,1443737743 +7975,4643,dystopia,1443737670 +7975,4643,genetic engineering,1443737693 +7975,4643,helena bonham carter,1443737707 +7975,4643,Mark Wahlberg,1443737701 +7975,4643,Post apocalyptic,1443737707 +7975,4643,post-apocalyptic,1443737670 +7975,4643,rebellion,1443737679 +7975,4643,remake,1443737678 +7975,4643,sci fi,1443737670 +7975,4643,slavery,1443737670 +7975,4643,space,1443737682 +7975,4643,space travel,1443737670 +7975,4643,spaceships,1443737706 +7975,4643,thriller,1443737743 +7975,4643,Tim Burton,1443737707 +7975,4643,time travel,1443737693 +7975,5039,apprentice,1443686522 +7975,5039,Caitlin Clarke,1443686496 +7975,5039,dragons,1443686498 +7975,5039,fantasy,1443686498 +7975,5039,great story,1443686525 +7975,5039,high fantasy,1443686500 +7975,5039,magic,1443686498 +7975,5039,Peter MacNicol,1443686498 +7975,5039,satisfying ending,1443686517 +7975,5039,sorcerer's apprentice,1443686520 +7975,5039,Sorcerers,1443686499 +7975,5039,sword and sorcery,1443686519 +7975,5218,animals,1443694795 +7975,5218,animated,1443694766 +7975,5218,animation,1443694755 +7975,5218,cartoon,1443694768 +7975,5218,Disney,1443694793 +7975,5218,pixar,1443694757 +7975,5218,talking animals,1443694800 +7975,5266,Jodie Foster,1443667586 +7975,5313,Dwayne Johnson,1443682661 +7975,5445,future,1443667070 +7975,5445,futuristic,1443667070 +7975,5445,sci-fi,1443667070 +7975,5445,time travel,1443667053 +7975,6303,adapted from:book,1443738293 +7975,6303,based on a book,1443738293 +7975,6303,sci-fi,1443738293 +7975,6303,slow,1443738292 +7975,6365,alternate reality,1443669577 +7975,6365,artificial intelligence,1443669560 +7975,6365,cyberpunk,1443669545 +7975,6365,dystopia,1443669559 +7975,6365,future,1443669569 +7975,6365,human versus computer,1443669570 +7975,6365,man versus machine,1443669586 +7975,6365,Post apocalyptic,1443669559 +7975,6365,post-apocalyptic,1443669531 +7975,6365,sci-fi,1443669531 +7975,6365,virtual reality,1443669548 +7975,6365,Wachowski Brothers,1443669510 +7975,6502,Cillian Murphy,1443693472 +7975,6502,death,1443693473 +7975,6502,England,1443693461 +7975,6502,epidemic,1443693427 +7975,6502,horror,1443693425 +7975,6502,london,1443693463 +7975,6502,low budget,1443693485 +7975,6502,Post apocalyptic,1443693434 +7975,6502,post-apocalyptic,1443693416 +7975,6502,survival,1443693416 +7975,6502,suspense,1443693432 +7975,6502,thriller,1443693430 +7975,6502,violence,1443693474 +7975,6502,virus,1443693459 +7975,6502,Zombie,1443693416 +7975,6502,zombies,1443693414 +7975,6979,artificial intelligence,1443736255 +7975,6979,Cold War,1443736246 +7975,6979,command line inteface,1443736286 +7975,6979,computer cracker,1443736248 +7975,6979,computer game,1443736271 +7975,6979,computers,1443736247 +7975,6979,hackers,1443736248 +7975,6979,Matthew Broderick,1443736287 +7975,6979,military,1443736287 +7975,6979,NORAD,1443736288 +7975,6979,nuclear war,1443736247 +7975,6979,science fiction,1443736307 +7975,6979,SF,1443736306 +7975,6979,simulation,1443736271 +7975,6979,video game,1443736286 +7975,7258,heist,1443679927 +7975,7258,Scarlett Johansson,1443679924 +7975,7386,based on a book,1443738004 +7975,7386,Biblical,1443737965 +7975,7386,Charlton Heston,1443737965 +7975,7386,christian,1443737965 +7975,7386,Christianity,1443737965 +7975,7386,classic,1443737969 +7975,7386,epic,1443737966 +7975,7386,excellent,1443737984 +7975,7386,good acting,1443737990 +7975,7386,Religion,1443737965 +7975,7386,Yul Brynner,1443737965 +7975,7811,Babylon 5,1443668915 +7975,7811,Based on a TV show,1443668915 +7975,7811,made for TV,1443668915 +7975,7811,sci-fi,1443668915 +7975,7811,TV,1443668915 +7975,7812,b5,1443668781 +7975,7812,Based on a TV show,1443668781 +7975,7812,made for TV,1443668784 +7975,7812,noise in space,1443668787 +7975,7812,space,1443668781 +7975,7812,TV,1443668808 +7975,8644,action,1443669755 +7975,8644,android(s)/cyborg(s),1443669619 +7975,8644,Anti-utilitarian,1443669714 +7975,8644,artificial intelligence,1443669618 +7975,8644,Asimov,1443669777 +7975,8644,book was better,1443669688 +7975,8644,future,1443669618 +7975,8644,futuristic,1443669624 +7975,8644,humanist sci-fi,1443669653 +7975,8644,Isaac Asimov,1443669618 +7975,8644,robot,1443669755 +7975,8644,robots,1443669618 +7975,8644,Sci fi,1443669714 +7975,8644,sci-fi,1443669618 +7975,8644,technology,1443669755 +7975,8644,Will Smith,1443669618 +7975,8874,gore,1443693196 +7975,8874,horror,1443693192 +7975,8874,zombie,1443693182 +7975,8874,zombies,1443693182 +7975,26203,artificial intelligence,1443736465 +7975,26203,cold war,1443736472 +7975,26203,evil computer,1443736473 +7975,26203,scifi,1443736507 +7975,45447,adapted from:book,1443737249 +7975,45447,adventure,1443737150 +7975,45447,Audrey Tautou,1443737169 +7975,45447,based on a book,1443737161 +7975,45447,book is better,1443737162 +7975,45447,bullshit history,1443737150 +7975,45447,complex script,1443737248 +7975,45447,conspiracy theory,1443737150 +7975,45447,controversial,1443737176 +7975,45447,Dan Brown,1443737191 +7975,45447,Ian McKellen,1443737205 +7975,45447,Jean Reno,1443737169 +7975,45447,Mystery,1443737151 +7975,45447,original plot,1443737191 +7975,45447,Paris,1443737172 +7975,45447,Paul Bettany,1443737191 +7975,45447,religion,1443737170 +7975,45447,Ron Howard,1443737205 +7975,45447,Tom Hanks,1443737150 +7975,45447,treasure hunt,1443737265 +7975,47200,action packed,1443695437 +7975,47200,bad ending,1443695463 +7975,47200,drugs,1443695432 +7975,47200,Jason Statham,1443695434 +7975,47200,Nudity (Topless),1443695489 +7975,47200,plotless,1443695458 +7975,47200,rape,1443695431 +7975,47200,stupid,1443695472 +7975,47200,Stupid as Hell,1443695432 +7975,47200,wanted to see action movie not porn,1443695478 +7975,48774,apocalypse,1443695802 +7975,48774,bleak,1443695661 +7975,48774,dark,1443695675 +7975,48774,depressing,1443695604 +7975,48774,disturbing,1443695604 +7975,48774,dystopia,1443695616 +7975,48774,end of the world,1443695791 +7975,48774,future,1443695628 +7975,48774,FUTURE DYSTOPIAS,1443695687 +7975,48774,grim,1443695783 +7975,48774,gritty,1443695604 +7975,48774,overrated,1443695746 +7975,48774,plot holes,1443695674 +7975,48774,poorly thought out premise,1443695673 +7975,48774,sci-fi,1443695628 +7975,48774,totalitarian state,1443695756 +7975,48774,TOTALITARIAN STATES,1443695688 +7975,48774,violently stupid,1443695744 +7975,48774,waste of celluloid,1443695718 +7975,48780,complicated,1443680616 +7975,48780,great ending,1443680624 +7975,48780,magic,1443680615 +7975,48780,mystery,1443680635 +7975,48780,Nicola Tesla,1443680634 +7975,48780,philosophy,1443680654 +7975,48780,psychological,1443680624 +7975,48780,Scarlett Johansson,1443680617 +7975,48780,sci-fi,1443680627 +7975,48780,secrets,1443680655 +7975,48780,teleportation,1443680634 +7975,48780,twist ending,1443680617 +7975,48780,twists & turns,1443680655 +7975,50872,animation,1443694880 +7975,50872,clever,1443694961 +7975,50872,cooking,1443694901 +7975,50872,Disney,1443694882 +7975,50872,Family,1443694909 +7975,50872,food,1443694901 +7975,50872,food/cooking,1443694908 +7975,50872,funny,1443694886 +7975,50872,imagination,1443694922 +7975,50872,inspirational,1443694957 +7975,50872,Janeane Garofalo,1443694941 +7975,50872,paris,1443694960 +7975,50872,pixar,1443694879 +7975,50872,Pixar animation,1443694889 +7975,50872,rats,1443694975 +7975,50872,restaurant,1443694964 +7975,50872,talking animals,1443694899 +7975,51662,action,1443693717 +7975,51662,artistic,1443693832 +7975,51662,Based on comic,1443693773 +7975,51662,boring,1443693741 +7975,51662,comic book,1443693782 +7975,51662,Epic,1443693770 +7975,51662,historical,1443693737 +7975,51662,historically inaccurate,1443693753 +7975,51662,male nudity,1443693728 +7975,51662,military,1443693738 +7975,51662,Nudity (Topless),1443693716 +7975,51662,overrated,1443693755 +7975,51662,rape,1443693718 +7975,51662,stylized,1443693831 +7975,55908,evolution,1443668536 +7975,55908,excellent script,1443668556 +7975,55908,Excellent use of dialogue,1443668535 +7975,55908,history,1443668556 +7975,55908,immortality,1443668569 +7975,55908,intellectual,1443668535 +7975,55908,intelligent,1443668567 +7975,55908,philosophical,1443668567 +7975,55908,sci-fi,1443668535 +7975,55908,science fiction,1443668538 +7975,55908,thought-provoking,1443668535 +7975,57274,contamination,1443693389 +7975,57274,found footage,1443693373 +7975,57274,Handycam,1443693374 +7975,57274,horror,1443693363 +7975,57274,infection,1443693386 +7975,57274,quarantine,1443693388 +7975,57274,virus,1443693373 +7975,57274,zombies,1443693361 +7975,60674,based on a TV show,1443668946 +7975,60674,sci-fi,1443668946 +7975,60674,Stargate,1443668946 +7975,60674,time travel,1443668946 +7975,68237,bad pacing,1443695315 +7975,68237,boring,1443695296 +7975,68237,claustrophobic,1443695287 +7975,68237,dark,1443695338 +7975,68237,depressing,1443695256 +7975,68237,dystopia,1443694635 +7975,68237,future,1443695253 +7975,68237,hallucination,1443695287 +7975,68237,moon,1443695241 +7975,68237,plot holes,1443695316 +7975,68237,sad,1443695334 +7975,68237,sad ending,1443695319 +7975,68237,Sci-fi,1443695243 +7975,68237,science fiction,1443695278 +7975,68237,slow,1443695300 +7975,68237,slow paced,1443695259 +7975,68237,space,1443695244 +7975,68358,action,1443668146 +7975,68358,adventure,1443668147 +7975,68358,Chris Pine,1443668186 +7975,68358,far future,1443668162 +7975,68358,future,1443668147 +7975,68358,lack of development,1443668162 +7975,68358,lack of story,1443668162 +7975,68358,reboot,1443668252 +7975,68358,sci fi,1443668147 +7975,68358,sci-fi,1443668133 +7975,68358,series reset,1443668251 +7975,68358,space,1443668133 +7975,68358,space travel,1443668146 +7975,68358,Star Trek,1443668132 +7975,68358,time travel,1443668132 +7975,68554,action,1443737399 +7975,68554,adapted from:book,1443737415 +7975,68554,based on a book,1443737412 +7975,68554,conspiracy theory,1443737390 +7975,68554,controversial,1443737458 +7975,68554,Ewan McGregor,1443737440 +7975,68554,mystery,1443737390 +7975,68554,not faithful to the book,1443737411 +7975,68554,science,1443737440 +7975,68554,secrets,1443737393 +7975,68554,thriller,1443737396 +7975,68554,Tom Hanks,1443737390 +7975,68554,twisted ending,1443737402 +7975,70286,aliens,1443696698 +7975,70286,bleak,1443735858 +7975,70286,boring,1443735823 +7975,70286,genetics,1443696701 +7975,70286,gore,1443735773 +7975,70286,improbable,1443735822 +7975,70286,mech,1443735781 +7975,70286,mockumentary,1443696711 +7975,70286,plot hole,1443735876 +7975,70286,political commentary,1443735770 +7975,70286,sci-fi,1443696699 +7975,70286,scientifically inaccurate.,1443735822 +7975,70286,shaky cam,1443735905 +7975,70286,social commentary,1443735905 +7975,70286,South Africa,1443696711 +7975,70286,swearing,1443735790 +7975,70286,unrealistic,1443735843 +7975,74458,asylum,1443695529 +7975,74458,Ben Kingsley,1443695530 +7975,74458,ending twist,1443695527 +7975,74458,insanity,1443695510 +7975,74458,island,1443695572 +7975,74458,Leonardo DiCaprio,1443695513 +7975,74458,Mark Ruffalo,1443695529 +7975,74458,Mental Institution,1443695543 +7975,74458,mystery,1443695572 +7975,74458,plot twist,1443695570 +7975,74458,reality or imagination?,1443695545 +7975,74458,stylized,1443695545 +7975,74458,twist ending,1443695511 +7975,77561,action,1443680140 +7975,77561,based on a comic,1443680149 +7975,77561,Gwyneth Paltrow,1443680132 +7975,77561,Iron Man,1443680135 +7975,77561,Marvel,1443680144 +7975,77561,Robert Downey Jr.,1443680131 +7975,77561,Samuel L. Jackson,1443680151 +7975,77561,Scarlett Johansson,1443680131 +7975,77561,sci-fi,1443680138 +7975,77561,superhero,1443680142 +7975,77561,The Avengers,1443680168 +7975,81591,ballet,1443694271 +7975,81591,dance,1443694272 +7975,81591,dance movie,1443694332 +7975,81591,horror,1443694274 +7975,81591,Mila Kunis,1443694256 +7975,81591,Natalie Portman,1443694251 +7975,81591,overrated,1443694319 +7975,81591,psychological,1443694249 +7975,81591,stylized,1443694307 +7975,88744,Animals,1443696453 +7975,88744,apes,1443696451 +7975,88744,Bad CGI,1443696518 +7975,88744,bad dialogue,1443696533 +7975,88744,bad science,1443696475 +7975,88744,cheesy,1443696475 +7975,88744,experiments gone awry,1443696488 +7975,88744,genetics,1443696433 +7975,88744,not realistic superapes,1443696464 +7975,88744,Plot holes,1443696475 +7975,88744,sci-fi,1443696435 +7975,88744,stereotyped characters,1443696462 +7975,88744,stupid,1443696580 +7975,88744,The police had awful tactics,1443696474 +7975,88744,unrealistic,1443696565 +7975,88744,weak third act,1443696449 +7975,89745,comic book,1443679717 +7975,89745,ensemble cast,1443679649 +7975,89745,Gwyneth Paltrow,1443679707 +7975,89745,Iron Man,1443679698 +7975,89745,Joss Whedon,1443679701 +7975,89745,Loki,1443679712 +7975,89745,Mark Ruffalo,1443679730 +7975,89745,Robert Downey Jr.,1443679697 +7975,89745,Samuel L. Jackson,1443679705 +7975,89745,Scarlett Johansson,1443679696 +7975,89745,superhero,1443679715 +7975,89745,Thor,1443679742 +7975,89745,Tom Hiddleston,1443679786 +7975,89745,visually appealing,1443679742 +7975,89745,visually stunning,1443679747 +7975,91500,bow & arrow,1443696349 +7975,91500,cheesy,1443696410 +7975,91500,dull,1443696261 +7975,91500,dull story,1443696261 +7975,91500,dystopia,1443696203 +7975,91500,Happy ending,1443696321 +7975,91500,implausible,1443696294 +7975,91500,Jennifer Lawrence,1443696329 +7975,91500,lack of action,1443696293 +7975,91500,lack of character development,1443696407 +7975,91500,long,1443696306 +7975,91500,reality TV,1443696240 +7975,91500,rich and poor,1443696386 +7975,91500,science fiction,1443696325 +7975,91500,slow paced,1443696374 +7975,91500,social commentary,1443696329 +7975,91500,strong female lead,1443696349 +7975,91500,too long,1443696275 +7975,91500,unrealistic,1443696293 +7975,91500,way too long,1443696277 +7975,91500,Woody Harrelson,1443696360 +7975,94864,aliens,1443667667 +7975,94864,bad plot,1443735687 +7975,94864,bad science,1443667694 +7975,94864,boring,1443696779 +7975,94864,Charlize Theron,1443667631 +7975,94864,dark,1443667683 +7975,94864,exploration,1443667631 +7975,94864,future,1443696827 +7975,94864,Good ending,1443696764 +7975,94864,horror,1443696788 +7975,94864,Michael Fassbender,1443667663 +7975,94864,Noomi Rapace,1443667662 +7975,94864,plot hole,1443696739 +7975,94864,plot holes,1443696738 +7975,94864,reckless scientists,1443696851 +7975,94864,scary,1443696764 +7975,94864,sci fi,1443667656 +7975,94864,sci-fi,1443667631 +7975,94864,scifi,1443667631 +7975,94864,space,1443667656 +7975,94864,space travel,1443667631 +7975,94864,stupid characters,1443696815 +7975,94864,technology,1443696830 +7975,94864,unrealistic representation of geologists,1443696805 +7975,96737,Action,1443736600 +7975,96737,based on a comic,1443736610 +7975,96737,drugs,1443736607 +7975,96737,Dystopia,1443736578 +7975,96737,gore,1443736586 +7975,96737,gunfight,1443736619 +7975,96737,Karl Urban,1443736599 +7975,96737,Lena Headey,1443736599 +7975,96737,Olivia Thirlby,1443736588 +7975,96737,police,1443736607 +7975,96737,police corruption,1443736616 +7975,96737,post-apocalyptic,1443736580 +7975,96737,sci-fi,1443736599 +7975,96737,strong female,1443736655 +7975,96737,strong female protagonist,1443736655 +7975,96737,stylized,1443736631 +7975,96737,True to the Comic,1443736655 +7975,98809,adventure,1443695995 +7975,98809,author:J. R. R. Tolkein,1443696092 +7975,98809,based on a book,1443696098 +7975,98809,beautiful scenery,1443695997 +7975,98809,Bilbo,1443696185 +7975,98809,CGI,1443696034 +7975,98809,crude humor,1443696033 +7975,98809,dwarf,1443696081 +7975,98809,elves,1443696158 +7975,98809,exaggerated,1443696039 +7975,98809,fantasy,1443696006 +7975,98809,fantasy world,1443696005 +7975,98809,franchise,1443696170 +7975,98809,Goblin,1443696082 +7975,98809,goblins,1443696158 +7975,98809,Gollum,1443696184 +7975,98809,Ian McKellen,1443696022 +7975,98809,long,1443696060 +7975,98809,magic,1443696015 +7975,98809,Martin Freeman,1443696092 +7975,98809,middle earth,1443696172 +7975,98809,New Zealand,1443696125 +7975,98809,orcs,1443696081 +7975,98809,Peter Jackson,1443696042 +7975,98809,slow,1443696035 +7975,98809,stretched out,1443696037 +7975,98809,stupid fight scenes,1443696059 +7975,98809,Tolkien,1443696017 +7975,98809,too long,1443695993 +7975,101142,animation,1443695399 +7975,101142,prehistoric,1443695395 +7975,101864,action,1443667843 +7975,101864,adventure,1443667813 +7975,101864,Alien Invasion,1443667843 +7975,101864,future,1443667813 +7975,101864,post-apocalyptic,1443667772 +7975,101864,sci-fi,1443667772 +7975,101864,space,1443667805 +7975,101864,technology,1443667813 +7975,102125,action,1443680052 +7975,102125,Ben Kingsley,1443680054 +7975,102125,comic book,1443680061 +7975,102125,Gwyneth Paltrow,1443680049 +7975,102125,Iron Man,1443680061 +7975,102125,Marvel,1443680050 +7975,102125,Robert Downey Jr.,1443680049 +7975,102125,robots,1443680056 +7975,102125,superhero,1443680050 +7975,102125,terrorism,1443680062 +7975,102125,visually appealing,1443680078 +7975,106002,aliens,1443676170 +7975,106002,based on a book,1443676211 +7975,106002,military,1443676214 +7975,106002,Orson Scott Card,1443676180 +7975,106002,space,1443676169 +7975,106002,True to the book,1443676197 +7975,106002,twist ending,1443676211 +7975,106002,war,1443676212 +7975,111759,action,1443668016 +7975,111759,Alien Invasion,1443667955 +7975,111759,aliens,1443667992 +7975,111759,Emily Blunt,1443667958 +7975,111759,future,1443667991 +7975,111759,original plot,1443667981 +7975,111759,powersuit,1443667991 +7975,111759,sci-fi,1443667981 +7975,111759,time loop,1443667961 +7975,111759,time travel,1443667982 +7975,111759,Tom Cruise,1443667996 +7975,111759,war,1443668016 +7975,112623,apocalyptic,1443696618 +7975,112623,genetics,1443696616 +7975,112623,post-apocalyptic,1443737573 +7975,112623,sci-fi,1443696616 +7975,112623,sequel,1443696680 +7975,112623,talking animals,1443696616 +7975,112623,unrealistic,1443696667 +7975,112623,virus,1443696624 +7975,112637,scifi,1443737009 +7975,112637,SF,1443737013 +7975,112637,Yul Brynner,1443736401 +7992,74488,"redemption, love",1430885196 +8005,52967,Julie Christie was marvellous,1197342996 +8005,52967,Well acted,1197342996 +8008,29,dark,1368279439 +8008,111,dark,1368279439 +8008,1287,christianity,1368279402 +8008,1589,ensemble cast,1368279459 +8008,1945,black and white,1368279384 +8008,2024,christianity,1368279403 +8008,4865,dark,1368279439 +8008,27741,but too slow,1139513878 +8008,27741,Nice movie,1139513878 +8008,33679,Very stupid,1138429693 +8039,260,Action packed,1431747346 +8039,260,Engaging,1431747330 +8039,2306,Jeff Goldblum,1439806525 +8039,31162,biopic,1434623538 +8039,31162,comedy,1434623538 +8039,31162,drama,1434623538 +8039,50872,animated,1432178474 +8039,50872,food/cooking,1432178474 +8039,50872,romance,1432178474 +8081,6,Al Pacino,1359325232 +8081,6,authenticity,1359265989 +8081,6,great acting,1359325216 +8081,6,Robert De Niro,1359325229 +8081,6,visceral,1359325240 +8081,25,Nicolas Cage,1359323752 +8081,25,overacting,1359323747 +8081,112,amazing fight choreography,1359269694 +8081,112,funny,1359269705 +8081,112,Jackie Chan,1359269692 +8081,318,schmaltzy,1359265492 +8081,858,violence,1359256821 +8081,911,Audrey Hepburn,1359265250 +8081,911,slick,1359265267 +8081,912,bittersweet,1359274822 +8081,912,classic,1359274825 +8081,914,Audrey Hepburn,1359323958 +8081,915,audrey hepburn,1359274708 +8081,915,Humphrey Bogart,1359274699 +8081,948,Elizabeth Taylor,1359270267 +8081,954,satire,1359270411 +8081,1129,fun,1359323014 +8081,1129,John Carpenter,1359323033 +8081,1129,over the top,1359323005 +8081,1179,John Cusack,1359326569 +8081,1246,cheesy,1359325569 +8081,1246,overly sentimental,1359325590 +8081,1246,schmaltzy,1359325562 +8081,1252,bleak,1359256325 +8081,1464,atmospheric,1359254201 +8081,1464,creepy,1359254185 +8081,1464,Surreal,1359254187 +8081,1527,annoying charactor,1359275870 +8081,1527,silly,1359323274 +8081,1947,cheesy,1359323923 +8081,1947,schmaltzy,1359323911 +8081,2006,Catherine Zeta-Jones,1359253660 +8081,2006,Martin Campbell,1359253668 +8081,2076,Wooden acting,1359275381 +8081,2094,Jennifer Connelly,1359253635 +8081,2094,Timothy Dalton,1359253639 +8081,2105,ugly,1359275808 +8081,2176,gimmicky,1359266229 +8081,2176,long takes,1359266207 +8081,2176,not one of Hitchcock's best,1359266201 +8081,2431,cheesy,1359325853 +8081,2431,insulting,1359325823 +8081,2431,overly sentimental,1359325864 +8081,2431,schmaltzy,1359325848 +8081,2431,straw man,1359325836 +8081,2431,unfunny,1359325942 +8081,2431,unrealistic,1359325912 +8081,2606,Jessica Alba,1359278082 +8081,2701,Kenneth Branagh,1359257667 +8081,2701,Kevin Kline,1359257665 +8081,2701,Nudity (Rear),1359257640 +8081,2701,steampunk,1359257652 +8081,2727,ballet,1359254639 +8081,2727,dancing,1359254637 +8081,3566,Danny DeVito,1359326309 +8081,3593,incoherent,1359258980 +8081,3814,wheat,1359252080 +8081,4322,John Cusack,1359326706 +8081,4628,final segment,1359254464 +8081,4628,first segment,1359254430 +8081,4628,Francis Ford Coppola,1359254390 +8081,4628,Martin Scorsese,1359254413 +8081,4628,middle segment,1359254479 +8081,4628,Woody Allen,1359254449 +8081,4816,Funny as hell,1359267040 +8081,4816,satire,1359267035 +8081,4848,amnesia,1359254280 +8081,4848,dark,1359254278 +8081,4848,dreamlike,1359254274 +8081,4848,Enigmatic,1359254270 +8081,4848,lesbian,1359254255 +8081,4848,nonlinear,1359254262 +8081,4848,poor character development,1359275491 +8081,4848,Wooden acting,1359275477 +8081,4878,bad acting,1359260368 +8081,4878,cheesy,1359260358 +8081,4878,juvenile,1359260396 +8081,4878,poor casting,1359260384 +8081,4878,poorly written,1359260451 +8081,5303,funny,1359325345 +8081,5303,surreal,1359325370 +8081,5303,unique,1359325329 +8081,5303,well constructed,1359258664 +8081,5349,Tobey Maguire,1359324455 +8081,5502,suspenseful,1359277060 +8081,5502,tense,1359277057 +8081,5867,atmospheric,1359266023 +8081,5867,heist,1359266148 +8081,5867,low key,1359266047 +8081,5867,Michael Mann,1359266164 +8081,5867,slick,1359266074 +8081,5867,surreal,1359266032 +8081,5991,Catherine Zeta-Jones,1359323861 +8081,5991,stylized,1359323827 +8081,6156,Jackie Chan,1359266925 +8081,6157,bad acting,1359253373 +8081,6157,Ben Affleck,1359253375 +8081,6157,Colin Farrell,1359253377 +8081,6157,Jennifer Garner,1359253379 +8081,6157,Michael Clarke Duncan,1359253404 +8081,7013,creepy,1359254658 +8081,7013,ominous,1359254660 +8081,7035,fun,1360034241 +8081,7035,over the top,1360034226 +8081,7367,Tom Hanks,1359255649 +8081,7481,cheesy,1359323320 +8081,7481,heavy handed,1359323330 +8081,7587,atmospheric,1359251503 +8081,7587,claustrophobic,1359251500 +8081,7587,stylized,1359251505 +8081,7587,tense,1359251508 +8081,7757,Ray Harryhausen,1359258049 +8081,7766,Akira Kurosawa,1359251108 +8081,7766,MacBeth,1359251095 +8081,8494,cool,1359326753 +8081,8494,poker,1359326774 +8081,8494,Steve McQueen,1359326748 +8081,8494,tense,1359326819 +8081,8783,weak ending,1359277093 +8081,8950,gross,1359277181 +8081,31485,action,1359327008 +8081,31485,cool,1359326988 +8081,33166,inconsistent characters,1359265637 +8081,33166,poor characterization,1359265593 +8081,33166,preachy,1359265652 +8081,33166,rasist,1359265661 +8081,33166,thematically conflicted,1359257310 +8081,34150,boring,1359253456 +8081,34150,Campy,1359253441 +8081,34150,cheesy,1359325104 +8081,34150,idiotic,1359253426 +8081,34150,Jessica Alba,1359253429 +8081,38061,black comedy,1359265326 +8081,39400,bad acting,1359278935 +8081,39400,unintentionally funny,1359278976 +8081,39400,unnecessary twist ending,1359278962 +8081,43836,no words can describe how bad this movie is,1359258855 +8081,43836,not funny; bad remake,1359258858 +8081,46530,comic book,1359259732 +8081,46530,DC Comics,1359259730 +8081,46530,Superman,1359259729 +8081,48516,action,1359327179 +8081,48516,great acting,1359327187 +8081,48516,Martin Scorsese,1359327190 +8081,51662,stylized,1359252609 +8081,51662,ugly,1359324933 +8081,51662,Uninteresting Characters,1359324970 +8081,52722,inexplicable music number,1359271454 +8081,52722,Kirsten Dunst,1359253356 +8081,52722,Tobey Maguire,1359253344 +8081,52722,tonal whiplash,1359271430 +8081,53464,bad acting,1359253488 +8081,53464,bad jokes,1359253486 +8081,53464,bad plot,1359253483 +8081,53464,Jessica Alba,1359253473 +8081,56587,cheesy,1359326109 +8081,56587,schmaltzy,1359326123 +8081,56587,Weak screenplay,1359326012 +8081,56949,bad acting,1359277725 +8081,56949,bad dialogue,1359277723 +8081,56949,insulting to women,1359277687 +8081,59615,aliens,1359253022 +8081,59615,silly,1359253019 +8081,60037,entertaining for the wrong reasons,1359260849 +8081,61401,Characters lack depth,1359257549 +8081,61401,Eva Mendes,1359257553 +8081,64575,great acting,1359325452 +8081,64575,moral ambiguity,1359325432 +8081,68358,excessive exposition,1359323507 +8081,68954,bittersweet,1359253725 +8081,71156,absurd,1359256052 +8081,71156,weak ending,1359256054 +8081,71535,Bill Murray,1359255693 +8081,72998,politics,1359257824 +8081,72998,racism,1359257819 +8081,74458,atmospheric,1359277151 +8081,74458,Martin Scorsese,1359277153 +8081,74458,stylized,1359277149 +8081,74458,surreal,1359277157 +8081,74545,suspense,1359266470 +8081,74851,John Travolta,1359264495 +8081,78316,Amanda Seyfried,1359277945 +8081,78316,cheesy,1359277947 +8081,78774,Jesse Eisenberg,1359326404 +8081,78774,Michael Douglas,1359326411 +8081,79132,heist,1359255885 +8081,79132,visually appealing,1359255869 +8081,82167,Anne Hathaway,1359277322 +8081,82167,inconsistent tone,1359277437 +8081,82167,poor script,1359277333 +8081,85510,audience intelligence underestimated,1359257443 +8081,86190,beautiful cinematography,1359252869 +8081,86190,Bechdel Test:Pass,1359252862 +8081,86190,ending,1359252844 +8081,86190,great soundtrack,1359252851 +8081,86190,strong female lead,1359252848 +8081,86190,surrealism,1359252846 +8081,86644,Boring,1359272059 +8081,86644,silly,1359272067 +8081,87529,boring,1359324298 +8081,87529,humorless,1359324318 +8081,87529,lazy,1359324329 +8081,87529,Natalie Portman,1359324290 +8081,88129,music,1359251446 +8081,88129,tense,1359251433 +8081,90405,Amanda Seyfried,1359276807 +8081,90405,cheesy,1359276739 +8081,90405,heavy-handed,1359276863 +8081,90405,poorly thought out premise,1359276789 +8081,90405,unfinished universe,1359276844 +8081,90405,unintentionally funny,1359276834 +8081,95510,Emma Stone,1359253513 +8081,96728,beautiful,1359256750 +8081,96728,cinematography,1359256733 +8081,96728,great performances,1359256715 +8081,96728,unique,1359256757 +8081,96728,visually appealing,1359274307 +8086,541,action,1241638247 +8086,541,androids,1241638244 +8086,541,assassin,1241638252 +8086,541,atmospheric,1241638256 +8086,541,based on a book,1241638260 +8086,541,based on book,1241638264 +8086,541,classic,1241638267 +8086,541,cyberpunk,1241638276 +8086,541,dreamlike,1241638279 +8086,541,dystopia,1241638273 +8086,541,existentialism,1241638353 +8086,541,fantasy,1241638293 +8086,541,future,1241638297 +8086,541,futuristic,1241638299 +8086,541,imdb top 250,1241638303 +8086,541,memory,1241638306 +8086,541,Philip K. Dick,1241638309 +8086,541,robots,1241638311 +8086,541,sci-fi,1241638314 +8086,541,stylized,1241638316 +8086,593,Anthony Hopkins,1241638379 +8086,593,based on a book,1241638368 +8086,593,based on book,1241638373 +8086,593,cannibalism,1241638386 +8086,593,classic,1241638388 +8086,593,disturbing,1241638406 +8086,593,drama,1241638396 +8086,593,Hannibal Lecter,1241638410 +8086,593,imdb top 250,1241638417 +8086,593,Jodie Foster,1241638420 +8086,593,Oscar (Best Actor),1241638424 +8086,593,Oscar (Best Actress),1241638427 +8086,593,Oscar (Best Directing),1241638430 +8086,593,Oscar (Best Picture),1241638434 +8086,593,psychology,1241638452 +8086,593,serial killer,1241638473 +8086,593,violent,1241638477 +8086,1200,aliens,1241638100 +8086,1200,androids,1241638050 +8086,1200,classic,1241638182 +8086,1200,imdb top 250,1241638109 +8086,1200,James Cameron,1241638171 +8086,1200,military,1241638126 +8086,1200,monster,1241638059 +8086,1200,Oscar (Best Effects - Visual Effects),1241638113 +8086,1200,Saturn Award (Best Science Fiction Film),1241638117 +8086,1200,Saturn Award (Best Writing),1241638129 +8086,1200,sci-fi,1241638044 +8086,1200,scifi,1241638133 +8086,1200,space,1241638074 +8086,1200,SPACE TRAVEL,1241638076 +8086,1200,tense,1241638137 +8086,1200,violent,1241638200 +8086,1200,visceral,1241638147 +8086,45668,time travel,1241637823 +8111,852,Romance,1186684320 +8111,1302,drama,1186684141 +8111,1302,fantasy,1186684141 +8111,1377,action,1186684119 +8111,1377,comic book,1186684119 +8111,1377,fantasy,1186684119 +8111,3251,drama,1186686260 +8111,3251,mystery,1186686260 +8111,3251,religion,1186686260 +8111,4896,children,1186684182 +8111,4896,fantasy,1186684181 +8111,4896,mystery,1186684182 +8111,5378,Classic,1186684277 +8111,5378,Fantasy,1186684277 +8111,5378,heroism,1186684277 +8111,5378,science fiction,1186684277 +8121,949,Exceptional Acting,1138402124 +8121,2926,hilarious,1138402345 +8125,1682,Jim Carrey,1436805096 +8125,1682,witty,1436805109 +8125,106920,artificial intelligence,1436805148 +8125,106920,quirky,1436805153 +8127,260,action,1439778785 +8127,260,space,1439778778 +8137,260,sci-fi,1437936110 +8137,260,universe,1437936136 +8137,132424,Chick flick,1437936480 +8137,132424,Country,1437936514 +8137,132424,Drama,1437936498 +8137,132424,Romantic,1437936493 +8137,132424,Sad,1437936502 +8147,318,twist ending,1266939250 +8147,7361,nonlinear,1266939329 +8147,7361,surreal,1266939338 +8154,11,clever dialogue,1352760967 +8154,11,cute,1352760979 +8154,11,girlie movie,1352760977 +8154,11,great performances,1352760965 +8154,11,Martin Sheen,1352760959 +8154,11,Michael Douglas,1352760943 +8154,11,politics,1352760957 +8154,11,Rob Reiner,1352760954 +8154,1261,black comedy,1352758666 +8154,1261,Bruce Campbell,1352758672 +8154,1261,campy,1352758670 +8154,1261,isolation,1352758675 +8154,2959,based on a book,1352758943 +8154,2959,Brad Pitt,1352758941 +8154,2959,thought-provoking,1352758935 +8154,2959,twist ending,1352758933 +8154,2959,violence,1352758947 +8154,4105,Bruce Campbell,1352758692 +8154,7766,Akira Kurosawa,1352760850 +8154,7766,archery,1352760844 +8154,7766,atmospheric,1352760866 +8154,7766,bleak,1352760865 +8154,7766,ghosts,1352760872 +8154,7766,MacBeth,1352760837 +8154,7766,Toshiro Mifune,1352760857 +8154,8957,mindfuck,1352758625 +8154,8957,surprise ending,1352758626 +8154,8957,torture,1352758629 +8154,8957,twist ending,1352758613 +8154,39231,Kirsten Dunst,1352760318 +8154,39231,Orlando Bloom,1352760303 +8154,71379,bad acting,1352760545 +8154,71379,Boring,1352760542 +8154,71379,BORING!,1352760543 +8154,71379,Handycam,1352760565 +8154,71379,over-hyped,1352760548 +8154,71379,slow,1352760550 +8154,71379,unrealistic,1352760546 +8154,85510,Cinematography,1352760996 +8154,85510,insanity,1352761011 +8154,85510,lowest common denominator,1352761009 +8154,85510,martial arts,1352760997 +8154,85510,reality or imagination?,1352761016 +8154,85510,Special Effects,1352761024 +8154,85510,stupid,1352761003 +8154,87306,bad plot,1352760893 +8154,87306,bad science,1352760900 +8154,87306,Effects,1352760928 +8154,87306,elle fanning,1352760921 +8154,87306,J.J. Abrams,1352760887 +8154,87306,predictable,1352760891 +8154,87306,storyline,1352760888 +8154,90469,Ariel Schulman,1352760601 +8154,90469,bad acting,1352760581 +8154,90469,boring,1352760619 +8154,90469,ending,1352760610 +8154,90469,Henry Joost,1352760601 +8196,318,gripping,1440789229 +8196,2762,M. Night Shyamalan,1440791698 +8196,3994,M. Knight Shymalan,1440791663 +8196,3994,M. Night Shyamalan,1440791680 +8196,5502,M. Night Shyamalan,1440791720 +8196,49272,stunts,1440789172 +8204,1721,"drama, tragedy",1439537209 +8204,72998,"sci-fi, aliens",1439537167 +8215,27277,australian,1445494290 +8215,27277,government,1445494312 +8215,27277,Greek,1445494301 +8215,27277,welfare,1445494294 +8215,50651,australia,1445494183 +8215,53584,aishwarya rai bachchan,1443902340 +8215,53584,foreign,1443902308 +8215,53584,indian,1443902315 +8215,69992,adoption,1439052707 +8215,80947,musical,1445494796 +8215,92841,Dutch,1438078982 +8215,92841,Europe,1438078994 +8215,92841,Netherlands,1438078988 +8215,94280,heartfelt,1435901603 +8215,94280,innocence,1435901603 +8215,94280,john cleese,1435901603 +8215,125661,Australia,1448027939 +8215,125661,australian,1448027944 +8215,125661,sam worthington,1448027950 +8215,134861,apartheid,1437815373 +8215,134861,south africa,1437815373 +8215,134861,stand-up comedy,1437815373 +8215,136748,college,1435945838 +8215,136748,inspirational,1435945828 +8215,136748,true story,1435945816 +8215,140269,drugs,1438967643 +8215,140269,high school,1438967637 +8215,140269,homelessness,1438967620 +8215,140269,true story,1438967627 +8215,143053,australia,1443348682 +8215,143053,australian,1443348686 +8215,143053,based on a true story,1443348694 +8215,143053,dogs,1443348699 +8215,143053,penguins,1443348705 +8215,144936,australia,1445494474 +8215,144936,australian,1445494479 +8232,17,Jane Austen,1199607763 +8232,281,Paul Newman,1199607243 +8232,281,Underrated,1199609573 +8232,456,Best of the Genre,1199609951 +8232,535,Raymond Carver stories,1199606868 +8232,803,dating,1199607491 +8232,858,Best Movies Ever,1199609680 +8232,1041,race relations,1199605287 +8232,1095,Jack Lemmon,1199608652 +8232,1095,Mamet,1199608665 +8232,1186,Soderbergh,1199606908 +8232,1234,Newman/Redford,1199607862 +8232,1304,Newman/Redford,1199609775 +8232,1446,PARENTHOOD,1199609081 +8232,1594,misogyny,1199608832 +8232,1635,Best Movies Ever,1199608788 +8232,2070,Oscar (Best Actor),1199607562 +8232,2070,Oscar (Best Screenplay),1199607622 +8232,3104,Funniest Action Movie Ever,1199608113 +8232,3160,Tom Cruise's best work,1199609485 +8232,3160,unforgetable,1199609189 +8232,3551,suspense,1199609235 +8232,3983,Oscar Nominee: Best Screenplay,1199608053 +8232,4037,Mamet,1199608728 +8232,6001,disturbing,1199608997 +8262,1270,slacker!,1194937386 +8262,1374,KHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN,1194937794 +8262,46530,wrong,1194936914 +8264,318,inspirational,1293789715 +8264,318,Morgan Freeman,1293789667 +8264,318,reflective,1293789704 +8264,318,thought-provoking,1293789683 +8264,318,twist ending,1293789685 +8264,1276,confrontational,1293789778 +8264,1276,ESCAPE FROM PRISON,1293789772 +8264,1276,FIGHTING THE SYSTEM,1293789770 +8264,1276,gritty,1293789790 +8264,1276,humorous,1293789788 +8264,1276,Paul Newman,1293789811 +8264,1393,Tom Cruise,1293788755 +8264,1997,creepy,1293788525 +8264,1997,horror,1293788509 +8264,5445,esp,1293788973 +8264,5445,Philip K. Dick,1293788838 +8264,5445,sci-fi,1293788849 +8264,5445,Steven Spielberg,1293788853 +8264,5445,time travel,1293788857 +8264,5445,Tom Cruise,1293788833 +8264,33166,ensemble cast,1293788654 +8264,33166,multiple storylines,1293788652 +8264,33166,Nudity (Topless - Brief),1293788646 +8264,33166,Nudity (Topless),1293788643 +8264,33166,Sandra Bullock,1293788631 +8264,33166,social commentary,1293788680 +8264,33166,twist ending,1293788637 +8264,68954,Pixar,1293786653 +8291,260,epic adventure,1431385313 +8291,1552,crazy adventure,1431386321 +8291,1552,dark humour (not a comedy),1431386321 +8291,1552,distructive adventure,1431386321 +8292,47221,jackass,1249952145 +8303,2,Children,1240906133 +8303,2,kid flick,1240906149 +8303,223,convenience store,1240903941 +8303,223,irreverent,1240904050 +8303,256,horrible,1240906851 +8303,256,pregnant man,1240906855 +8303,256,silly,1240906853 +8303,355,animation remade as live action,1240906796 +8303,435,stupid,1240906738 +8303,611,occult,1336928097 +8303,780,alien invasion,1240906016 +8303,780,aliens,1240905987 +8303,780,US President,1240906000 +8303,780,war,1240906002 +8303,780,Will Smith,1240905997 +8303,924,adapted from:book,1308385282 +8303,924,aliens,1308385266 +8303,924,artificial intelligence,1308385263 +8303,924,based on a book,1308385292 +8303,924,cult film,1308385261 +8303,924,future,1308385339 +8303,924,imdb top 250,1308385271 +8303,924,philosophical,1308385297 +8303,924,sci-fi,1308385258 +8303,924,space,1308385316 +8303,924,Stanley Kubrick,1308385254 +8303,1219,imdb top 250,1383491043 +8303,1367,animation remade as live action,1240906310 +8303,1367,Cute!,1240906275 +8303,1367,Disney,1240906277 +8303,1367,Disney animated feature,1240906279 +8303,1367,dogs,1240906291 +8303,1367,Dr House with more make-up,1240906295 +8303,1367,remake,1240906303 +8303,1556,bad sequel,1240906963 +8303,1556,crappy sequel,1240906965 +8303,1556,sequel:worse,1240906975 +8303,1556,Stupid as Hell,1240906980 +8303,1591,comic book,1240904122 +8303,1682,dark comedy,1240905609 +8303,1682,identity,1240905619 +8303,1682,paranoia,1240905616 +8303,1682,social commentary,1240905578 +8303,1682,stylized,1240905605 +8303,1682,television,1240905602 +8303,1682,Tragedy,1240905624 +8303,1690,Alien,1240904197 +8303,1690,alien series,1240904200 +8303,1690,aliens,1240904204 +8303,1690,cool,1240904217 +8303,1690,Horror,1240904206 +8303,1690,sci-fi,1240904208 +8303,1690,sci-fi. dark,1240904210 +8303,1690,Sigourney Weaver,1240904212 +8303,1777,chick flick,1240905946 +8303,1777,Cute!,1240905949 +8303,1876,astronomy,1240906475 +8303,1876,comet,1240906469 +8303,1917,big budget,1240906520 +8303,1917,Golden Raspberry (Worst Actor),1240906500 +8303,1917,space,1240906509 +8303,1917,space program,1240906512 +8303,1917,stylized,1240906506 +8303,1917,unrealistic,1240906514 +8303,2085,cute,1240906891 +8303,2085,Disney,1240906892 +8303,2085,Disney animated feature,1240906894 +8303,2085,dog,1240906896 +8303,2085,fashion,1240906898 +8303,2085,kids and family,1240906902 +8303,2085,kids movie,1240906904 +8303,2628,fantasy,1240906391 +8303,2628,franchise,1240906380 +8303,2628,sci-fi,1240906395 +8303,2628,space,1240906397 +8303,2628,space opera,1240906386 +8303,2628,Star Wars,1240906399 +8303,2683,Cute,1240906094 +8303,2683,obvious,1240906111 +8303,2683,parody,1240906117 +8303,2683,sixties,1240906098 +8303,2683,spoof,1240906107 +8303,2683,stupid,1240906104 +8303,2701,big budget,1240907053 +8303,2701,Golden Raspberry (Worst Picture),1240907059 +8303,2701,mad scientist,1240907080 +8303,2701,steampunk,1240907070 +8303,2701,wheelchair,1240907083 +8303,2701,wheelchair badass,1240907074 +8303,2710,boring,1240906591 +8303,2710,claims to be true,1240906589 +8303,2710,feels like home made super scary,1240906585 +8303,2710,Golden Raspberry (Worst Actress),1240906595 +8303,2710,Handycam,1240906561 +8303,2710,mimics documentary-style,1240906565 +8303,2710,mockumentary,1240906602 +8303,2710,obnoxious,1240906597 +8303,2710,overrated,1240906568 +8303,2710,scary,1240906572 +8303,2710,wouldn't see again,1240906576 +8303,2712,tedious,1240906248 +8303,2720,animation remade as live action,1240906841 +8303,2723,comedy,1240904231 +8303,2723,hilarious,1240904240 +8303,2723,Lena Olin,1240904235 +8303,2723,parody,1240904233 +8303,3091,Akira Kurosawa,1240905775 +8303,3091,autumnal,1240905784 +8303,3091,Japan,1240905772 +8303,3091,lyrical,1240905778 +8303,3438,animation remade as live action,1240906996 +8303,3438,father-son relationship,1240907026 +8303,3438,Infantil,1240907028 +8303,3438,superhero,1240907010 +8303,3593,aliens,1240906688 +8303,3593,Golden Raspberry (Worst Actor),1240906680 +8303,3593,Golden Raspberry (Worst Picture),1240906677 +8303,3593,scientologist,1240906665 +8303,3593,stupid,1240906667 +8303,3593,unbearable,1240906671 +8303,3593,waste of celluloid,1240906673 +8303,3697,aliens,1240904161 +8303,3697,hunting,1240904177 +8303,3697,monster,1240904182 +8303,3697,voodoo,1240904173 +8303,3717,can't remember,1240906438 +8303,3717,car chase,1240906444 +8303,3717,carjacking,1240906440 +8303,3717,cars,1240906442 +8303,3785,not funny,1240906931 +8303,3785,stupid,1240906941 +8303,3785,unbearable,1240906943 +8303,3785,unfunny,1240906945 +8303,3917,occult,1336928048 +8303,3917,relic,1451337049 +8303,3917,temptation,1451337060 +8303,3918,asylum,1336928514 +8303,3918,insanity,1336928556 +8303,3918,occult,1336928461 +8303,3918,temptation,1451337165 +8303,3919,occult,1336928080 +8303,3919,relic,1451337196 +8303,3919,temptation,1451337201 +8303,3977,genre spoof,1240906710 +8303,3977,silly,1240906719 +8303,4027,based on a book,1240903792 +8303,4027,Coen Brothers,1240903747 +8303,4027,Musical,1240903758 +8303,4027,notable soundtrack,1240903762 +8303,4027,obsession,1240903764 +8303,4369,boring,1240906772 +8303,4369,cars,1240906774 +8303,4369,no desire to see this,1240906777 +8303,4369,racing,1240906782 +8303,4369,street race,1240906780 +8303,4493,monsters,1336930281 +8303,4493,survival,1336930297 +8303,4886,animated,1240903693 +8303,4886,animation,1240903695 +8303,4886,CGI,1240903699 +8303,4886,cute,1240903684 +8303,4886,Disney,1240903668 +8303,4886,innovative,1240903690 +8303,4886,kids fun,1240903710 +8303,5010,Drama,1240905694 +8303,5010,war,1240905678 +8303,5010,war movie,1240905680 +8303,5010,who cares DVDs,1240905681 +8303,5094,remake,1240906919 +8303,5378,alien,1240906362 +8303,5378,fantasy,1240906359 +8303,5378,franchise,1240906339 +8303,5378,space,1240906357 +8303,5378,space opera,1240906330 +8303,5378,Star Wars,1240906355 +8303,5445,artificial intelligence,1325900276 +8303,5445,corruption,1325900237 +8303,5445,future,1325900248 +8303,5445,futuristic,1325900241 +8303,5445,mystery,1325900265 +8303,5445,sci-fi,1325900252 +8303,5445,Steven Spielberg,1325900256 +8303,5481,satire,1240906421 +8303,5481,spoof,1240906419 +8303,5500,comedy,1253986137 +8303,5500,musical,1253986132 +8303,5500,silly fun,1253986117 +8303,5502,Alien Invasion,1240906040 +8303,5502,aliens,1240906035 +8303,5502,aliens killed by rain,1240906038 +8303,5502,horror,1240906072 +8303,5502,invasion,1240906043 +8303,5502,ridiculous,1240906051 +8303,5502,silly,1240906045 +8303,5502,stupid,1240906048 +8303,5971,boring,1256481137 +8303,5971,feel good movie,1256481145 +8303,5971,feel-good,1256481149 +8303,6333,amnesia,1310027468 +8303,6333,fantasy,1310027495 +8303,6333,sci-fi,1310027504 +8303,6539,Disney,1240903820 +8303,6539,Suspense,1240903844 +8303,6539,zombie,1240903847 +8303,6539,Zombies,1240903853 +8303,6857,anime,1240905653 +8303,6857,ninja,1240905658 +8303,6857,samurai,1240905660 +8303,6857,Sexualized violence,1240905644 +8303,7202,survival,1336929303 +8303,8361,propaganda,1240906753 +8303,8361,unintentional comedy,1240906757 +8303,8361,unrealistic,1240906759 +8303,27327,insects,1336850525 +8303,27327,survival,1336850531 +8303,27724,based on a true story,1336929148 +8303,27724,hitler,1336929103 +8303,27724,Nazis,1336929160 +8303,27724,World War I,1336929114 +8303,27724,World War II,1336929121 +8303,27823,based on a true story,1356298865 +8303,27823,monster,1356298810 +8303,27823,serial killer,1356298817 +8303,27823,survival,1356298827 +8303,30791,insanity,1336928394 +8303,30791,murder,1336928415 +8303,30791,occult,1336928345 +8303,30791,police investigation,1336928372 +8303,30791,relic,1451337088 +8303,30791,temptation,1451337093 +8303,31410,controversial,1325443969 +8303,31410,disturbing,1325443972 +8303,31410,imdb top 250,1325443960 +8303,31410,Nudity (Topless),1325443957 +8303,31410,suicide,1325443998 +8303,34332,A whimsical,1245524952 +8303,34332,action,1265819426 +8303,34332,and at times intense family,1245524962 +8303,34332,comedy,1265819433 +8303,34332,cute,1245524968 +8303,34332,funny,1245524972 +8303,34332,high school,1245524977 +8303,34332,super hero,1245524983 +8303,34332,superhero,1245524992 +8303,34511,monster,1336849192 +8303,34511,swamp,1336849157 +8303,35906,apartment,1348408576 +8303,35906,horror,1348408551 +8303,35906,monster,1348408435 +8303,35906,scary,1348408543 +8303,35906,survival,1348408447 +8303,43022,amnesia,1336928234 +8303,43022,murder,1336928445 +8303,43022,occult,1336928197 +8303,43022,police investigation,1336928266 +8303,44195,congress,1240904075 +8303,44195,dark comedy,1240904097 +8303,44195,dark humor,1240904099 +8303,44195,Lobbyism,1240904077 +8303,44195,overrated,1240904080 +8303,44195,politics,1240904083 +8303,44195,smoking,1240904085 +8303,46613,insects,1336849701 +8303,46613,mystery,1336849791 +8303,46613,photographer,1336849771 +8303,46613,survival,1336850548 +8303,46613,WITNESSING A CRIME,1336849812 +8303,46976,fantasy,1322641404 +8303,46976,insanity,1322641401 +8303,46976,punk,1322641396 +8303,46976,schizophrenia,1322641394 +8303,46976,surreal,1322641392 +8303,48780,based on a book,1240905826 +8303,48780,costume drama,1240905831 +8303,48780,steampunk,1240905840 +8303,48780,twists & turns,1240905820 +8303,48780,weak characters,1254462081 +8303,48943,greed,1336930217 +8303,48943,predictable,1336930170 +8303,48943,time travel,1336930154 +8303,49435,desert,1336928714 +8303,49435,monster,1336928675 +8303,49435,survival,1336928680 +8303,50613,gore,1336847283 +8303,50613,survival,1336928761 +8303,50613,zombies,1336847225 +8303,51917,survival,1336850242 +8303,51917,TRAPPED OR CONFINED,1336850179 +8303,51921,based on a book,1336848392 +8303,51921,hypnosis,1336848327 +8303,51921,Madness,1336848339 +8303,51921,psychiatry,1336848313 +8303,52604,courtroom,1345724738 +8303,52604,courtroom drama,1345724733 +8303,52604,twist ending,1345724745 +8303,54171,Alternative realities,1336927865 +8303,54171,author,1336927787 +8303,54171,TRAPPED OR CONFINED,1336927823 +8303,55247,adapted from:book,1245652925 +8303,55247,imdb top 250,1245652915 +8303,55247,road trip,1245652935 +8303,55247,self discovery,1245652919 +8303,55247,true story,1245652886 +8303,55995,'I Will Give My Kingdom For A Great Piece Of TWAT!',1240906196 +8303,55995,Angelina Jolie,1240906183 +8303,55995,based on a poem,1240906219 +8303,55995,read the book,1240906214 +8303,55995,Stereoscopic 3-D,1240906192 +8303,56174,apocalypse,1240905872 +8303,56174,I Am Legend,1240905866 +8303,56174,religion,1240905922 +8303,56174,remake,1240905904 +8303,56174,vampire,1240905884 +8303,56174,virus,1240905885 +8303,56174,Will Smith,1240905916 +8303,56174,zombies,1240905882 +8303,57274,Foreign,1240905562 +8303,57274,Handycam,1240905553 +8303,57274,horror,1240905556 +8303,57274,zombies,1240905558 +8303,59131,kidnapping,1336849505 +8303,59131,torture,1336849538 +8303,59131,TRAPPED OR CONFINED,1336849521 +8303,61240,Beautiful,1276347885 +8303,61240,vampires,1276347869 +8303,63436,Confused,1240904144 +8303,63859,cats and dogs,1243879566 +8303,63859,comic sidekick,1243879564 +8303,63859,superhero,1243879573 +8303,65063,father son relationship,1336847161 +8303,65878,arranged marriage,1336848078 +8303,65878,Nudity (Full Frontal),1336848498 +8303,65878,RAPE & SEXUAL ABUSE,1336848094 +8303,65878,trial,1336848159 +8303,67255,adapted from:book,1280067462 +8303,67255,based on a book,1280067427 +8303,67255,dark,1280067452 +8303,67255,murder,1280067479 +8303,67255,racism,1280067469 +8303,67255,rape,1280067437 +8303,67255,Sven-Bertil Taube,1280067446 +8303,67255,swedish,1280067440 +8303,68159,journalism,1264358249 +8303,68159,murder,1264358247 +8303,68159,political corruption,1264358251 +8303,68159,protagonist is journalist,1264358221 +8303,68159,secrets,1264358258 +8303,68319,cheesy,1310027335 +8303,68319,one-dimensional characters,1310027343 +8303,68319,sci-fi,1310027370 +8303,68319,sequel,1310027373 +8303,68319,superhero,1310027365 +8303,68358,alternate reality,1261957440 +8303,68358,bad science,1261957374 +8303,68358,lack of development,1261957378 +8303,68358,lack of story,1261957383 +8303,68358,sci-fi,1261957407 +8303,68358,space,1261957410 +8303,68358,space travel,1261957389 +8303,68358,teleportation,1261957414 +8303,68358,time travel,1261957387 +8303,68945,Recap,1244134096 +8303,69339,prison escape,1336928889 +8303,69339,vampires,1336928898 +8303,69339,wilderness,1336928905 +8303,71372,journalism,1336850736 +8303,71372,occult,1336928123 +8303,71372,relic,1451337129 +8303,71372,temptation,1451337134 +8303,71374,amnesiac,1336928303 +8303,71374,hallucinatory,1336850698 +8303,71374,twist ending,1336850668 +8303,71838,antihero,1451779802 +8303,71838,ending kinda ruined it,1451779776 +8303,71838,Questioning Morality,1451779871 +8303,71838,revenge,1451779880 +8303,71838,vigilante,1451779786 +8303,74789,3D,1279380162 +8303,74789,3D version,1279380167 +8303,74789,alternate reality,1279380172 +8303,74789,based on a book,1279380177 +8303,74789,visually appealing,1279380200 +8303,74789,weird,1279380187 +8303,76175,3d,1275240101 +8303,76175,3D version,1275240104 +8303,76175,epic,1275240127 +8303,76175,not strictly a remake,1275240125 +8303,77357,bananas,1336847727 +8303,77357,democracy,1336927541 +8303,77357,depressing,1336847632 +8303,77357,freedom of expression,1336927545 +8303,77357,Nicaragua,1336847621 +8303,77357,sterility,1336847712 +8303,77427,bad acting,1325282121 +8303,77427,disturbing,1325282126 +8303,77427,sick,1325282119 +8303,81845,disability,1299423529 +8303,81845,England,1299423531 +8303,81845,IMDB Top 250,1299423519 +8303,84772,aliens,1311808985 +8303,84772,Atheism,1311808982 +8303,84772,geeky,1311808987 +8303,84772,laidback,1311808992 +8303,84944,adult humor,1303111118 +8303,84944,animation,1303111112 +8303,84944,spaghetti western,1303111115 +8303,84944,western,1303111121 +8303,88129,atmospheric,1324573288 +8303,88129,little dialogue,1324573323 +8303,88129,slow,1324573297 +8303,88129,visually appealing,1324573327 +8303,89074,product placement,1336929218 +8303,90524,cheesy bad,1336928999 +8303,90524,conspiracy,1336929019 +8303,90524,corruption,1336929038 +8303,90524,kidnapping,1336928981 +8303,90524,product placement,1336929053 +8303,90524,unrealistic fighting,1336929934 +8303,92058,Avoid for your sanity,1336849856 +8303,92058,feces,1336850405 +8303,92058,kidnapping,1336850002 +8303,92058,Madness,1336849977 +8303,92058,Nudity (Full Frontal),1336850112 +8303,92096,betrayal,1336849327 +8303,92096,fugitive,1336849436 +8303,92096,Ming dynasty,1336849307 +8303,92096,ronin,1336849346 +8303,92099,cannibalism,1336847390 +8303,92099,country,1336847479 +8303,92099,survival,1336927652 +8303,92255,possession,1336848591 +8303,92257,monster,1339313212 +8303,92257,Romania,1339313287 +8303,92257,slow moving plot,1339313256 +8303,92257,vampire,1339313227 +8303,94482,democracy,1336927499 +8303,94482,FILMMAKING,1336848889 +8303,94482,freedom of expression,1336927496 +8303,94482,internet,1336848825 +8303,94482,Nicaragua,1336848962 +8303,94482,Sweden,1336848837 +8303,94677,offensive,1349447224 +8303,94677,sacha baron cohen,1349447211 +8303,94677,satire,1349447214 +8303,94677,Sex Comedy,1349447293 +8303,94677,uncomfortable,1349447244 +8303,94777,flat Story,1346760039 +8303,94777,time travel,1346760130 +8303,94777,twist,1346760044 +8303,95014,Down syndrome,1339431526 +8303,95014,mental disability,1339431541 +8303,95014,Sweden,1339431330 +8303,95014,theatre,1339431553 +8303,95510,product placement,1373350635 +8303,96347,detective,1348407899 +8303,96347,killer,1348407883 +8303,96347,Oxford,1348407922 +8303,97172,boring,1384099643 +8303,97172,zombies,1384099650 +8303,98122,computer game,1356299811 +8303,98122,conventions,1356299843 +8303,98122,indie,1356299778 +8303,98122,internet,1356299856 +8303,98122,interviews,1356299946 +8303,98122,Microsoft,1356299766 +8303,98122,software developers,1356299907 +8303,98809,adapted from:book,1355767478 +8303,98809,based on a book,1355767449 +8303,98809,family movie,1355767439 +8303,98809,fantasy world,1355767463 +8303,98809,Goblin,1355767467 +8303,98809,orcs,1355767452 +8303,98809,Tolkien,1355767449 +8303,99182,boat,1356297811 +8303,99182,Florida,1356297764 +8303,99182,monster,1356297713 +8303,99182,relationships,1356297739 +8303,99182,spring break,1356297781 +8303,99182,survival,1356297828 +8303,99182,suspense,1356297725 +8303,99191,forest,1356299456 +8303,99191,monster,1356299475 +8303,99191,short film,1356299433 +8303,99191,survival,1356299427 +8303,99191,twist ending,1356299420 +8303,99191,Urban Legend,1356299497 +8303,99238,ghosts,1356347775 +8303,99238,haunted house,1356347796 +8303,99238,mansion,1356347804 +8303,99238,possession,1356347839 +8303,99238,Visions,1356347783 +8303,103042,product placement,1372782198 +8303,149620,accident,1451336941 +8303,149620,curse,1451337313 +8303,149620,luck,1451336879 +8303,149620,relic,1451336920 +8303,149620,suspense,1451336896 +8303,149620,temptation,1451337286 +8311,260,fantasy,1432100352 +8311,260,starwars,1432100356 +8316,3105,underrated,1220462855 +8316,4034,Benicio Del Toro,1216466048 +8316,4409,circus,1218891475 +8316,4409,crime,1218891487 +8316,4409,magick,1218891457 +8316,4409,serial killer,1218891504 +8316,33171,disturbing,1218407590 +8316,33171,superb acting,1218407575 +8316,58559,overrated,1220561454 +8339,260,interesting,1442960869 +8362,260,Science Fiction,1432077993 +8362,260,teenage,1432078005 +8389,32,atmospheric,1289834361 +8389,32,genetics,1289834341 +8389,32,post-apocalyptic,1289834338 +8389,32,twist ending,1289834352 +8389,32,violence,1289834350 +8389,1748,amnesia,1289834410 +8389,1748,dark fantasy,1289834392 +8389,1748,dystopia,1289834389 +8389,1748,hallucinatory,1289834415 +8389,1748,surreal,1289834404 +8389,1748,thought-provoking,1289834402 +8389,1921,cerebral,1289834457 +8389,1921,genius,1289834468 +8389,1921,hallucinatory,1289834445 +8389,1921,mathematics,1289834454 +8389,1921,stylized,1289834462 +8389,2571,alternate reality,1289484256 +8389,2571,artificial intelligence,1289484237 +8389,2571,computers,1289484250 +8389,2571,cyberpunk,1289484243 +8389,2571,Keanu Reeves,1289484249 +8389,2571,virtual reality,1289484242 +8389,3949,addiction,1289485694 +8389,3949,atmospheric,1289485706 +8389,3949,dark,1289485692 +8389,3949,depressing,1289485661 +8389,3949,drugs,1289485685 +8389,3949,independent film,1289485699 +8389,3949,loneliness,1289485683 +8389,3949,psychology,1289485708 +8389,8873,Amazing Cinematography,1289834098 +8389,8873,Che Guevara,1289834075 +8389,8873,cinematography,1289834078 +8389,8873,good dialogue,1289834084 +8389,8873,politics,1289834105 +8389,8873,South America,1289834093 +8389,8873,true story,1289834113 +8389,33004,alien invasion,1289485831 +8389,33004,based on book,1289485849 +8389,33004,funny smart,1289485825 +8389,33004,space,1289485840 +8389,33004,space travel,1289485836 +8389,33004,witty,1289485829 +8389,44191,comic book,1289484166 +8389,44191,dark,1289484182 +8389,44191,dystopia,1289485615 +8389,44191,inspirational,1289485605 +8389,44191,philosophy,1289485609 +8389,44191,political,1289485611 +8389,44191,thought-provoking,1289484175 +8389,48394,atmospheric,1289485524 +8389,48394,stylized,1289485515 +8389,48394,surreal,1289485518 +8389,48394,twist ending,1289485521 +8389,55247,atmospheric,1289485149 +8389,55247,great soundtrack,1289834162 +8389,55247,Nudity (Topless),1289834145 +8389,55247,psychology,1289834167 +8389,55247,self discovery,1289485163 +8389,55247,travel,1289834165 +8389,55442,animation,1289485421 +8389,55442,comic book,1289485440 +8389,55442,coming of age,1289485439 +8389,55442,politics,1289485427 +8389,55442,revolution,1289485428 +8389,55442,social commentary,1289485429 +8389,60684,alternate history,1289484588 +8389,60684,alternate reality,1289484591 +8389,60684,dystopia,1289484598 +8389,62849,ClearPlay,1289485335 +8389,62849,cool dialogues,1289485328 +8389,62849,twist ending,1289485342 +8389,64839,identity crisis,1289834217 +8389,64839,mass behavior,1289834232 +8389,71535,Bill Murray,1289484557 +8389,71535,dark comedy,1289484566 +8389,71535,gore,1289484565 +8389,71899,animation,1289990917 +8389,71899,asperger syndrome,1289990889 +8389,71899,australia,1289990912 +8389,71899,character study,1289990911 +8389,71899,mental illness,1289990884 +8389,71899,Philip Seymour Hoffman,1289990900 +8389,71899,philosophical,1289990903 +8389,71899,poignant,1289990905 +8389,71899,Toni Collette,1289990891 +8414,260,Science Fiction,1437787417 +8414,260,space opera,1437787433 +8414,6016,based on a true story,1437787682 +8414,6016,drugs,1437787682 +8414,6016,fucked up,1437787682 +8414,6016,organized crime,1437787682 +8421,101072,good acting,1362315482 +8480,1213,Joe Pesci,1293882761 +8480,1213,Ray Liotta,1293882770 +8480,1213,Robert De Niro,1293882753 +8480,1617,Guy Pearce,1293882824 +8480,1617,Russell Crowe,1293882835 +8480,2176,James Stewart,1293882876 +8480,2176,Suspense,1293882869 +8480,48516,Jack Nicholson,1293882792 +8480,48516,Leonardo DiCaprio,1293882786 +8480,48516,Matt Damon,1293882797 +8494,1916,avant-garde romantic comedy,1449722185 +8494,6440,Coen Brothers,1453080315 +8494,44694,Penelope Cruz,1453080279 +8494,58301,dark humor,1453080073 +8494,58301,Michael Haneke,1453080085 +8494,58301,Tim Roth,1453080078 +8494,108729,Jake Gyllenhaal,1453079888 +8514,25,addiction,1336258844 +8514,25,existential,1336258844 +8514,25,nihilism,1336258844 +8514,107,treasure,1368210794 +8514,150,stranded,1368210915 +8514,208,dark hero,1368211016 +8514,353,dark hero,1368211016 +8514,380,arnold,1368211075 +8514,440,conspiracy theory,1368211796 +8514,485,arnold,1368211075 +8514,521,noir thriller,1368210879 +8514,589,arnold,1368211075 +8514,597,prostitution,1354404864 +8514,668,bollywood,1368210679 +8514,778,drug addiction,1343437736 +8514,866,neo-noir,1368211728 +8514,1097,stranded,1368210915 +8514,1179,neo-noir,1368211728 +8514,1235,existentialist,1289355905 +8514,1240,arnold,1368211075 +8514,1243,existentialism,1290922772 +8514,1243,slow paced,1290922772 +8514,1248,noir thriller,1368210879 +8514,1291,treasure,1368210794 +8514,1387,spielberg,1368211963 +8514,1391,mars,1368210951 +8514,1396,conspiracy theory,1368211796 +8514,1580,conspiracy theory,1368211796 +8514,1894,stranded,1368210915 +8514,2005,1980s,1364154124 +8514,2005,adventure,1364154124 +8514,2005,cult film,1364154124 +8514,2005,friendship,1364154124 +8514,2005,great sets,1364154124 +8514,2022,christian,1368211669 +8514,2022,jesus,1368210739 +8514,2028,spielberg,1368211963 +8514,2115,treasure,1368210794 +8514,2353,conspiracy theory,1368211796 +8514,2405,treasure,1368210794 +8514,2662,mars,1368210951 +8514,2726,noir thriller,1368210879 +8514,2840,jesus,1368210739 +8514,2916,arnold,1368211075 +8514,3186,depression,1275228019 +8514,3186,mental health,1275228019 +8514,3186,psychology,1275228019 +8514,3285,existentialism,1343445492 +8514,3285,idealism,1343445492 +8514,3300,stranded,1368210916 +8514,3498,prison,1286939485 +8514,4787,depressing,1319080979 +8514,4787,happy ending,1319081000 +8514,5135,bollywood,1368210680 +8514,5485,quirky,1338511435 +8514,5881,existentialism,1275687695 +8514,5881,metaphysics,1275687695 +8514,5881,psychology,1275687695 +8514,5881,psychotherapy,1275687695 +8514,6222,depression,1275228003 +8514,6222,mental health,1275228003 +8514,6222,psychology,1275227986 +8514,6223,psychology of addiction,1288321661 +8514,6223,social commentary,1288321661 +8514,6539,treasure,1368210794 +8514,6874,dark hero,1368211016 +8514,6902,existentialism,1333757195 +8514,6902,psychology,1333757194 +8514,7013,noir thriller,1368210880 +8514,7163,bad science,1321233963 +8514,7163,Hollywood,1321233963 +8514,7318,jesus,1368210739 +8514,7386,christian,1368211669 +8514,7743,adventure,1326862941 +8514,8183,depression,1342069209 +8514,8366,christian,1368211669 +8514,8516,existentialism,1339020934 +8514,8516,expired copyright,1339020934 +8514,8516,mental illness,1339020934 +8514,8529,stranded,1368210915 +8514,8636,dark hero,1368211016 +8514,27904,rotoscoped,1323616697 +8514,33162,christian,1368211669 +8514,33358,depression,1346818783 +8514,33621,Reference to Asperger's Syndrome,1342956090 +8514,44195,boring plot,1316137304 +8514,44195,boring script,1316137304 +8514,44195,low-brow,1316137304 +8514,44195,predictable,1316137304 +8514,44709,cheesy,1342069153 +8514,44709,good acting,1342069153 +8514,44709,predictable,1342069153 +8514,44761,quirky,1298607095 +8514,51884,bollywood,1368210680 +8514,57669,depression,1285382655 +8514,62376,adventure,1386571826 +8514,70567,asperger's syndrome,1341467824 +8514,70567,autism,1341467824 +8514,70567,mental illness,1341467824 +8514,71520,feelgood,1362979731 +8514,71520,orgiginal,1362979732 +8514,72694,depression,1348463260 +8514,72733,racism,1336959659 +8514,72733,seamless impersonation of a historical figure,1336959636 +8514,72733,South Africa,1336959659 +8514,72980,mental health,1294545783 +8514,72980,not very deep or insightful,1294545821 +8514,72980,slow-paced,1294545791 +8514,76173,activism,1355112336 +8514,76173,optimistic,1355112336 +8514,76173,original,1355112336 +8514,76173,quirky,1355112336 +8514,76173,stylised,1355112336 +8514,76173,subversive,1355112336 +8514,77843,j blakeson,1289356048 +8514,85412,intruiging,1411770364 +8514,85412,original,1411770364 +8514,85510,abuse,1341644570 +8514,85510,insanity,1341644570 +8514,85510,mental health,1341644570 +8514,85510,reality or imagination?,1341644570 +8514,90866,existential,1336875217 +8514,90866,existentialism,1336875217 +8514,90866,psychology,1336875217 +8514,90866,visually appealing,1336875217 +8514,91500,dystopia,1375130840 +8514,91500,easy to follow,1375130869 +8514,91500,implausible,1375130833 +8514,91500,predictable,1375130833 +8514,91500,unoriginal,1375130833 +8515,6711,atmospheric,1266437263 +8515,6711,isolation,1266437268 +8515,30803,cerebral,1266437053 +8515,30803,magic realism,1266437069 +8515,30803,very little dialogue,1266437063 +8515,48043,cancer,1196627239 +8519,1259,Summer,1375055648 +8519,2003,Christmas,1375229499 +8519,4492,Summer,1375055663 +8528,89722,horror,1438372362 +8528,89722,mumblecore,1438372362 +8528,89722,serial killer,1438372362 +8528,107612,comedy,1436254123 +8528,107612,found footage,1436254123 +8528,107612,horror,1436254123 +8528,122882,feminist,1432319784 +8528,122882,post apocalyptic,1432319784 +8528,122882,practical effects,1432319784 +8545,3793,adapted from:comic,1424469749 +8545,3793,science fiction,1424469749 +8545,3793,superhero team,1424469749 +8557,2067,Epic,1303610240 +8557,27869,Cliche,1303609880 +8557,27869,Emotional,1303609839 +8557,27869,Intense Action,1303609886 +8557,27869,Sad,1303609888 +8557,27869,Too intense,1303609854 +8595,8718,interesting,1193492308 +8595,8718,on server,1193492281 +8606,31410,German,1449721944 +8606,32460,black humor,1449721812 +8606,32460,German,1449721887 +8606,49530,Jennifer Connelly,1449993404 +8606,49530,Leonardo DiCaprio,1449993371 +8606,141133,徐克,1449721402 +8613,95167,predictable,1347947814 +8630,260,1970s,1434912859 +8630,260,sci-fi,1434912818 +8645,47,serial killer,1145655099 +8682,131724,fascinating,1449529055 +8682,131724,mystery,1449529083 +8689,3114,Pixar,1139962864 +8689,4306,animation,1139962830 +8689,4896,magic,1139962905 +8695,8949,california,1446329139 +8695,8949,dark comedy,1446329157 +8695,8949,funny,1446329255 +8695,8949,midlife crisis,1446329150 +8695,8949,Paul Giamatti,1446329143 +8695,8949,wine,1446329131 +8695,58998,Apatow productions,1446329391 +8695,58998,hilarious,1446329406 +8695,58998,Jonah Hill,1446329396 +8716,260,lightsabers,1437302526 +8716,260,sci-fi,1437302519 +8716,122900,marvel,1437303972 +8716,122900,sci-fi,1437303972 +8716,122900,superhero,1437303972 +8730,58303,true story,1241627105 +8730,66097,smoke,1236131512 +8736,372,slackers,1186166023 +8736,608,frances mcdormand,1189221214 +8736,838,Austen,1186166005 +8736,858,robert de niro,1189220785 +8736,908,cary grant,1189220913 +8736,912,humphrey bogart,1189220702 +8736,923,orson welles,1189221086 +8736,930,cary grant,1189221383 +8736,951,Screwball,1189221256 +8736,1244,Woody Allen classic,1197828429 +8736,1247,dustin hoffman,1189220830 +8736,1541,Dunne +,1186260559 +8736,1663,Bill Murray,1186166079 +8736,3814,Woody Allen classic,1197828439 +8736,5377,Hugh Grant,1186166106 +8736,6993,Woody Allen classic,1189220620 +8736,7121,Hepburn and Tracy,1186260471 +8736,7361,kate winslet,1189220738 +8736,7585,katharine hepburn,1189220971 +8736,8128,louis malle,1189220803 +8736,8424,Norma!,1189693771 +8736,37741,in cold blood,1189221634 +8736,51834,Austen,1186260090 +8758,599,Sam Peckinpah,1153783565 +8758,912,classic,1153781717 +8758,1219,Hitchcock,1153783569 +8758,1262,Steve McQueen,1153783027 +8758,2164,Worst movie ever,1154126203 +8758,3198,Steve McQueen,1153840533 +8758,3339,Sam Peckinpah,1153783896 +8758,4327,Steve McQueen,1153840583 +8758,5952,overrated,1153781710 +8758,6301,Sam Peckinpah,1153783968 +8758,6730,Sam Peckinpah,1153786141 +8758,7076,Steve McQueen,1153783629 +8758,7410,Sam Peckinpah,1153918587 +8758,7889,Sam Peckinpah,1153782810 +8758,7895,Sam Peckinpah,1153840812 +8758,7896,Sam Peckinpah,1153781899 +8758,7897,Sam Peckinpah,1153782938 +8758,7898,Sam Peckinpah,1153920286 +8758,8016,Sam Peckinpah,1153782333 +8838,370,screwball,1156174840 +8838,1059,shakespeare,1156174962 +8838,1262,true story,1225838836 +8838,1298,dark,1156175000 +8838,2028,World War II,1156174856 +8838,3000,anime,1156174967 +8838,3000,Miyazaki,1156174969 +8838,6787,true story,1225838840 +8838,30749,true story,1225838835 +8838,44191,alan moore,1156174914 +8838,44191,comic book,1156174911 +8838,44191,revenge,1156174921 +8838,60487,halloween,1225838831 +8848,1594,90s cynicisim,1322267498 +8848,1594,Amorality,1322267493 +8848,1594,misogyny,1322267489 +8848,1594,sexism,1322267491 +8848,1676,aliens,1322265882 +8848,1676,fascism,1322265865 +8848,1676,gore,1322265902 +8848,1676,Robert Heinlein,1322265851 +8848,1676,social commentary,1322265860 +8848,1704,genius,1322261699 +8848,1704,mathematics,1322261704 +8848,1784,psychology,1322261727 +8848,4641,coming of age,1322267009 +8848,4641,deadpan,1322267011 +8848,4641,stylized,1322267018 +8848,4901,multinational settings,1322267824 +8848,5110,drugs,1322259663 +8848,5110,police corruption,1322259671 +8848,5669,Michael Moore,1322266605 +8848,6223,bondage,1322267360 +8848,6223,drugs,1322267367 +8848,6223,social commentary,1322267369 +8848,7317,Michelle Trachtenberg,1322267190 +8848,7360,post-apocalyptic,1322264520 +8848,7360,zombie,1322264512 +8848,8917,Trey Parker,1322260348 +8848,8949,depression,1322266950 +8848,8949,road trip,1322266953 +8848,48385,anti-Semitism,1322260397 +8848,48385,Sacha Baron Cohen,1322260403 +8848,53000,post-apocalyptic,1322264561 +8848,71156,black humor,1322261532 +8848,71156,R:language,1322261553 +8851,508,Excellent Drama movie,1440299083 +8851,508,Top class action,1440299095 +8851,3578,action,1440299483 +8851,3578,Superb movie,1440299239 +8863,3499,Oscar (Best Actress),1152735039 +8872,288,dark comedy,1286885305 +8872,288,mindfuck,1286885308 +8872,288,paranoid,1286885310 +8872,288,road trip,1286885330 +8872,288,serial killer,1286885313 +8872,288,stylized violence,1286885315 +8872,288,violence,1286885322 +8872,296,Black comedy,1282075376 +8872,296,dark comedy,1282075382 +8872,296,Quentin Tarantino,1282075386 +8872,296,Samuel L. Jackson,1282075387 +8872,1619,based on a book,1280856044 +8872,1619,Brad Pitt,1280856041 +8872,1619,true story,1280856036 +8872,2710,creepy,1293390486 +8872,2710,Handycam,1293390492 +8872,2710,Interesting,1293390495 +8872,2710,low budget,1293390475 +8872,2710,mimics documentary-style,1293390500 +8872,2710,original,1293390477 +8872,2710,overrated,1293390479 +8872,7371,cult film,1281192221 +8872,7371,disturbing,1281192218 +8872,7371,Lars von Trier,1281192210 +8872,7371,philosophy,1281192220 +8872,8239,Cinemaquorum,1282769837 +8872,8239,Luis Buñuel,1282769818 +8872,8239,Luis Bunuel,1282769830 +8872,26974,Bizarre,1286568962 +8872,26974,disturbing,1286568964 +8872,26974,enigmatic,1286568967 +8872,26974,glue sniffing,1286568969 +8872,26974,sexual,1286568981 +8872,26974,stoner rock,1286569011 +8872,26974,SUBURBAN DYSFUNCTION,1286569007 +8872,26974,youth gone wild,1286568987 +8872,46723,multiple storylines,1282075329 +8872,48385,road trip,1281018346 +8872,48385,satire,1281018348 +8872,48385,social commentary,1281018343 +8872,53326,psychological thriller,1293390387 +8872,61240,vampires,1280863751 +8872,67255,cinematography,1281910804 +8872,67255,dark,1281910832 +8872,67255,jail,1281910825 +8872,67255,racism,1281910813 +8872,67255,rape,1281910820 +8872,67255,trial,1281910822 +8872,71379,atmospheric,1293390418 +8872,71379,ending,1293390425 +8872,71379,low budget,1293390434 +8872,71379,original ending,1293390429 +8872,71379,over-hyped,1293390436 +8872,71379,psychological thriller,1293390432 +8872,71379,scary,1293390440 +8872,74458,boring,1280856240 +8872,74458,Leonardo DiCaprio,1280856250 +8872,74458,Martin Scorsese,1280856269 +8872,74458,Predictable,1280856235 +8872,74458,psychological,1280856246 +8872,75813,Edward Norton,1285383764 +8872,75813,family,1285432202 +8872,75813,twins,1285383773 +8872,75813,weed,1285383771 +8872,77307,cat killing,1285277804 +8872,77455,Banksy,1283893822 +8872,79132,action,1282906524 +8872,79132,alternate reality,1282906496 +8872,79132,complicated,1282906499 +8872,79132,dreams,1282906503 +8872,79132,Leonardo DiCaprio,1282906505 +8872,79132,long,1282906507 +8872,79132,mindfuck,1282906511 +8872,79132,surreal,1282906514 +8872,79132,visually appealing,1282906519 +8891,88901,cooking,1432849697 +8891,88901,gastronomic,1432849697 +8891,88901,innovation,1432849697 +8909,51044,beatles,1234803533 +8909,56079,marijuana,1235197227 +8909,78103,Rwandan Genocide,1275610738 +8914,2858,dark,1435630818 +8914,2858,dysfunctional family,1435630818 +8914,2858,provocative,1435630818 +8914,110328,quirky,1435632958 +8955,589,action,1437466189 +8955,589,sci-fi,1437466201 +8955,2571,sci-fi,1437466212 +8955,2571,surreal,1437466219 +8972,97752,multiple storylines,1452362748 +8972,97752,rebellion,1452362837 +8972,97752,thought-provoking,1452362812 +8972,97752,visually appealing,1452362755 +8972,97752,Wachowski Brothers,1452362786 +9022,32,Bruce Willis,1149198601 +9030,1241,cult classic,1428024295 +9030,1241,gore,1428024290 +9030,1241,mother-son relationship,1428024278 +9030,1241,New Zealand,1428024282 +9030,1241,Peter Jackson,1428024260 +9030,1241,zombie,1428024284 +9030,1241,zombies,1428024272 +9030,4443,drugs,1428200762 +9030,5837,demons,1428024022 +9030,5837,road movie,1428024012 +9030,34405,black comedy,1428534954 +9030,34405,Firefly,1428534988 +9030,34405,witty,1428534972 +9030,44555,complex characters,1428802622 +9030,44555,East Germany,1428802612 +9030,74446,crime,1427847687 +9030,74446,england,1427847687 +9030,74446,mansion,1427847687 +9030,103688,70s,1428616817 +9030,103688,exorcism,1428616800 +9030,103688,haunted house,1428616829 +9030,103688,paranormal investigators,1428616814 +9030,104243,planet,1434408383 +9030,116797,Alan Turing,1428792080 +9030,116797,autism,1428792051 +9030,116797,cryptography,1428792092 +9030,116797,historical inaccuracy,1428792065 +9030,116797,World War II,1428792077 +9030,131650,mistery,1428022584 +9030,131652,blood,1428023755 +9030,131652,ghosts,1428023728 +9030,131652,slasher,1428023699 +9030,131654,teens,1428023888 +9030,131654,witchcraft,1428023890 +9030,132044,slasher,1428451391 +9030,132044,teenagers,1428451381 +9030,132044,theater,1428451344 +9030,132114,black comedy,1428626617 +9030,132114,gore,1428626589 +9030,132114,splatstick,1428626698 +9030,132114,splatter,1428626706 +9030,147734,comedy,1448238946 +9030,147734,drama,1448238942 +9030,147734,family,1448239041 +9030,147734,Gipsy,1448239018 +9030,147734,poverty,1448239023 +9030,147734,spanish,1448238955 +9033,296,dark comedy,1430883867 +9033,296,quentin tarantino,1430883867 +9033,296,violence,1430883867 +9033,318,morgan freeman,1437413335 +9033,318,prison,1437413335 +9033,318,tim robbins,1437413335 +9033,356,humorous,1432870358 +9033,356,tom hanks,1432870358 +9033,356,touching,1432870358 +9033,593,anthony hopkins,1436676016 +9033,593,crime,1436676016 +9033,593,jodie foster,1436676016 +9050,8528,Ben Stiller,1451597375 +9050,8528,comedy,1451597368 +9050,8528,hilarious,1451597361 +9050,8528,Idiotic,1451597365 +9050,8528,Vince Vaughn,1451597358 +9050,48385,controversial,1451596973 +9050,48385,funny,1451596993 +9050,48385,Male nudity,1451597007 +9050,48385,Nudity (Full Frontal),1451596988 +9050,48385,Sacha Baron Cohen,1451597005 +9050,48385,satire,1451596970 +9050,60756,comedy,1451597234 +9050,60756,funny,1451597237 +9050,60756,Highly quotable,1451597231 +9050,60756,John C. Reilly,1451597239 +9050,60756,Ken Jeong,1451597220 +9050,60756,Seth Rogen,1451597228 +9050,60756,will ferrell,1451597214 +9050,96110,exaggerated,1451597051 +9050,96110,satire,1451597054 +9050,96110,Will Ferrell,1451597048 +9093,589,apocalypse,1344516543 +9093,589,artificial intelligence,1344516537 +9093,589,nuclear war,1344516563 +9093,589,sci-fi,1344516550 +9093,589,stylized,1344516558 +9093,589,time travel,1344516552 +9093,589,violence,1344516556 +9093,780,alien invasion,1345681373 +9093,780,aliens,1345681376 +9093,780,apocalypse,1345681379 +9093,780,end of the world,1345681382 +9093,780,Oscar (Best Effects - Visual Effects),1345681385 +9093,780,sci-fi,1345681370 +9093,780,Will Smith,1345681367 +9093,1527,Bruce Willis,1345681813 +9093,1527,cinematography,1345681820 +9093,1527,dystopia,1345681818 +9093,1527,dystopic future,1345681816 +9093,1527,futuristic,1345681823 +9093,1527,Nudity (Topless - Notable),1345681806 +9093,1527,sci-fi,1345681809 +9093,1527,stylized,1345681811 +9093,1676,aliens,1356720555 +9093,1676,cult film,1356720562 +9093,1676,Nudity (Topless),1356720559 +9093,1676,sci-fi,1356720567 +9093,2571,cult film,1345681710 +9093,2571,dystopia,1345681698 +9093,2571,post-apocalyptic,1345681705 +9093,2571,virtual reality,1345681702 +9093,3147,Stephen King,1386564035 +9093,3300,anti-hero,1356630756 +9093,3300,David N. Twohy,1356630762 +9093,3300,futuristic,1356630759 +9093,4310,emotional,1359773417 +9093,4310,Romance,1359773412 +9093,5110,drugs,1344463373 +9093,5110,Nudity (Topless),1344463377 +9093,7458,Brad Pitt,1359773442 +9093,7458,director's cut,1359773457 +9093,7458,Nudity (Topless),1359773444 +9093,7458,Orlando Bloom,1359773446 +9093,8644,artificial intelligence,1356630899 +9093,8644,robots,1356630905 +9093,8644,Will Smith,1356630901 +9093,71530,alternate reality,1356630882 +9093,71530,androids,1356630884 +9093,79132,great soundtrack,1344516701 +9093,79132,surreal,1344516697 +9093,79132,visually appealing,1344516664 +9093,82461,futuristic,1356630843 +9093,82461,music,1356630848 +9093,82461,visually appealing,1356630841 +9093,94864,aliens,1356630693 +9093,94864,space travel,1356630695 +9093,94864,technology,1356630721 +9093,97938,cinematography,1386563854 +9093,97938,emotional,1386563861 +9093,97938,surreal,1386563841 +9093,97938,visually appealing,1386563837 +9093,97950,badass,1356630653 +9093,97950,martial arts,1356630643 +9093,97950,visually appealing,1356630646 +9106,541,artificial intelligence,1446792478 +9106,541,based on a book,1446792466 +9106,541,beautiful effects,1446792546 +9106,541,cyberpunk,1446792437 +9106,541,dystopia,1446792441 +9106,541,dystopian,1446792556 +9106,541,future,1446792450 +9106,541,futuristic,1446792482 +9106,541,great cinematography,1446792496 +9106,541,great soundtrack,1446792473 +9106,541,Philip K. Dick,1446792444 +9106,541,Ridley Scott,1446792501 +9106,541,robots,1446792460 +9106,541,sci-fi,1446792455 +9106,541,slow,1446792513 +9106,541,stylized,1446792490 +9106,1527,action,1446793534 +9106,1527,aliens,1446793545 +9106,1527,campy,1446793548 +9106,1527,cinematography,1446793528 +9106,1527,dystopia,1446793521 +9106,1527,dystopic future,1446793508 +9106,1527,futuristic,1446793505 +9106,1527,great cinematography,1446793552 +9106,1527,Luc Besson,1446793503 +9106,1527,Milla Jovovich,1446793542 +9106,1527,race against time,1446793513 +9106,1527,sci-fi,1446793499 +9106,1527,stylized,1446793524 +9106,1527,visually stunning,1446793531 +9106,4979,Bill Murray,1446793446 +9106,4979,black comedy,1446793451 +9106,4979,dark comedy,1446793442 +9106,4979,dark humor,1446793460 +9106,4979,dysfunctional family,1446793439 +9106,4979,great soundtrack,1446793449 +9106,4979,new york,1446793466 +9106,4979,stylized,1446793463 +9106,4979,Wes Anderson,1446793431 +9106,4979,witty,1446793471 +9106,6711,Amazing Cinematography,1446792854 +9106,6711,great cinematograhy,1446792878 +9106,6711,intelligent,1446792841 +9106,6711,music,1446792858 +9106,6711,nocturnal,1446792845 +9106,6711,tokyo,1446792834 +9106,6711,urbane,1446792848 +9106,6711,visually appealing,1446792866 +9106,8973,drag queens,1446793143 +9106,8973,Gael Garcia Bernal,1446793150 +9106,8973,gay,1446793120 +9106,8973,Gay sex,1446793128 +9106,8973,Pedro Almodovar,1446793118 +9106,8973,queer,1446793135 +9106,8973,spanish,1446793115 +9106,8973,stylized,1446793132 +9106,44694,Pedro Almodovar,1446793088 +9106,44694,Spain,1446793090 +9106,44694,visually appealing,1446793094 +9106,92210,anime,1446794157 +9108,68486,"Epic, Historical Epic, MiniSeries",1434613951 +9128,7151,scarlett johansson,1443185954 +9128,41285,Scarlett Johansson,1443185889 +9128,41285,Woody Allen,1443185891 +9128,48780,Christian Bale,1443185811 +9128,48780,Scarlett Johansson,1443185821 +9133,2010,classic,1249028392 +9133,2010,Fritz Lang,1249028388 +9133,2010,German expressionism,1249028370 +9133,2010,imdb top 250,1249028411 +9133,2010,industrial progress,1249028383 +9133,2010,music,1249028423 +9133,2010,robot,1249028386 +9133,2010,tinted,1249028406 +9133,2010,visionary,1249028376 +9133,54001,based on a book,1247055827 +9133,54001,harry potter,1247055773 +9133,54001,magic,1247055794 +9133,54001,not true to the book,1247055805 +9133,69844,disappointing,1249028042 +9133,69844,funny,1249028061 +9133,69844,not true to the book,1249028049 +9178,260,oldie but goodie,1444030706 +9178,260,"Outdated, for younger audiences. Action Adventure",1444030715 +9178,260,space adventure,1444030687 +9214,296,cult film,1426660357 +9214,296,dark comedy,1426660357 +9214,296,violence,1426660357 +9214,318,borring,1425860574 +9214,318,obvious,1425860574 +9214,318,sucks,1425860574 +9214,480,action,1433043107 +9214,480,adventure,1433043107 +9214,480,sci-fi,1433043107 +9239,4327,FORM,1179960421 +9241,96004,android,1441034920 +9241,96004,bulma,1441034935 +9241,96004,goku,1441034922 +9241,96004,super saiyen,1441034925 +9241,96004,trunks,1441034913 +9241,96004,vegeta,1441034916 +9241,109487,5th dimention,1441034854 +9241,109487,blight,1441034878 +9241,109487,Gravity,1441034863 +9250,3550,bauhaus!,1180826005 +9250,5489,Herzog + Kinsky!,1180825337 +9250,31804,not as good as I expected,1180826038 +9292,46578,beaty contests,1191410601 +9292,46578,funny,1191410610 +9294,1265,alternate reality,1387888453 +9294,1265,funny,1387888447 +9294,1265,romance,1387888451 +9294,1265,time loop,1387888455 +9294,1265,time travel,1387888457 +9294,1265,witty,1387888459 +9294,1682,alternate reality,1387888476 +9294,1682,surreal,1387888479 +9294,1682,witty,1387888482 +9294,4069,chick flick,1387851119 +9294,4069,Jennifer Lopez,1387851141 +9294,4069,predictable,1387851134 +9294,4069,romantic comedy,1387851133 +9294,4246,comedy,1387850932 +9294,4246,Hugh Grant,1387850948 +9294,4246,relationships,1387850937 +9294,4246,romance,1387850920 +9294,4246,romantic comedy,1387850945 +9294,6155,chick flick,1387851104 +9294,6155,girlie movie,1387851100 +9294,6155,lack of chemistry,1387851093 +9294,6155,romantic comedy,1387851105 +9294,6942,christmas,1387851240 +9294,6942,family,1387851258 +9294,6942,great soundtrack,1387851247 +9294,6942,Keira Knightley,1387851244 +9294,6942,love,1387851256 +9294,6942,multiple storylines,1387851249 +9294,6942,Romance,1387851251 +9294,6942,romantic,1387851254 +9294,8969,Colin Firth,1387851043 +9294,8969,Good Romantic Comedies,1387851034 +9294,8969,Hugh Grant,1387851039 +9294,8969,over the top girlie girl movie,1387851036 +9294,31433,boring,1387851342 +9294,31433,Dermot Mulroney,1387851346 +9294,31433,no chemistry,1387851333 +9294,31433,predictable,1387851339 +9294,55451,hugh dancy,1389561823 +9294,56949,chick flick,1387851312 +9294,56949,Katherine Heigl,1387851306 +9294,56949,love story,1387851307 +9294,56949,romantic comedy,1387851309 +9294,58347,Christina Ricci,1387851279 +9294,58347,modern fantasy,1387851284 +9294,58347,romance,1387851282 +9294,59725,predictable,1387851161 +9294,59725,romance,1387851157 +9294,59725,wedding,1387851159 +9294,66203,Bradley Cooper,1387851194 +9294,66203,chick flick,1387851210 +9294,66203,Drew Barrymore,1387851188 +9294,66203,funny,1387851204 +9294,66203,happy ending,1387851202 +9294,66203,honest,1387851201 +9294,66203,Jennifer Aniston,1387851196 +9294,66203,romantic comedy,1387851185 +9294,70183,Gerard Butler,1387851059 +9294,70183,good chick flick,1387851067 +9294,70183,Katherine Heigl,1387851065 +9294,70183,romantic comedy,1387851064 +9294,96314,funny,1387887754 +9294,96314,love,1387887756 +9294,96314,open ending,1387887774 +9294,96314,Rashida Jones,1387887752 +9300,260,classic,1439762085 +9300,260,futuristic,1439762077 +9300,260,Nerd,1439762068 +9319,150,catastrophe,1453186478 +9319,150,disaster,1453186520 +9319,150,NASA,1453186470 +9319,150,space,1453186468 +9319,150,suspense,1453186475 +9319,1097,aliens,1453184416 +9319,1608,president,1453183745 +9319,1608,terrorism,1453183743 +9319,1608,US President,1453183741 +9319,4995,genius,1453678683 +9319,4995,inspirational,1453678708 +9319,4995,psychology,1453678681 +9319,4995,true story,1453678705 +9319,45062,conspiracy,1453184030 +9319,45062,secret service,1453184032 +9319,45447,conspiracy theory,1453186277 +9319,51935,conspiracy,1453567410 +9319,51935,sniper,1453567406 +9319,58103,assassination,1453184044 +9319,58103,secret service,1453184042 +9319,58103,US President,1453184049 +9319,59369,CIA,1453184864 +9319,68554,conspiracy theory,1453186262 +9319,68554,secrets,1453186249 +9319,68554,thriller,1453186252 +9319,69481,military,1453184291 +9319,69481,realistic,1453184288 +9319,69481,war,1453184286 +9319,70286,aliens,1453184485 +9319,72507,coup d'etat,1453185271 +9319,72507,U.S. Embassy,1453185286 +9319,72507,war,1453185292 +9319,78349,group psychology,1453567172 +9319,78349,psychological,1453567176 +9319,80693,coming of age,1453183919 +9319,81784,job offer,1453678385 +9319,81784,news producer,1453678383 +9319,81784,opportunity,1453678569 +9319,81784,tv producer,1453678381 +9319,81845,England,1453183779 +9319,81845,politics,1453183785 +9319,85342,politics,1453184743 +9319,87306,aliens,1453184437 +9319,89369,immigrants,1453678573 +9319,89369,opportunity,1453678577 +9319,92439,coming of age,1453184169 +9319,92507,conspiracy,1453184120 +9319,92507,espionage,1453184118 +9319,96821,coming of age,1453183909 +9319,96821,touching,1453185458 +9319,97304,cia,1453184265 +9319,97304,espionage,1453184274 +9319,97304,Political Thriller,1453567802 +9319,97304,politics,1453184269 +9319,97304,True story,1453567794 +9319,98961,assassination,1453184235 +9319,98961,military,1453184228 +9319,98961,politics,1453184232 +9319,98961,terrorism,1453184239 +9319,102993,coming of age,1453183692 +9319,102993,heartwarming,1453184145 +9319,103048,coming of age,1453183904 +9319,103539,coming of age,1453184004 +9319,104712,life lessons,1453678960 +9319,111759,aliens,1453184476 +9319,111759,time loop,1453184472 +9319,111759,time travel,1453184474 +9319,112290,coming of age,1453184012 +9319,114184,military,1453184813 +9319,114439,CIA,1453184944 +9319,114662,War,1453184999 +9319,115210,realistic,1453184198 +9319,115210,war,1453184201 +9319,115502,Professor,1453678464 +9319,116797,Computers,1453183800 +9319,116797,cryptography,1453183796 +9319,116797,historical,1453183805 +9319,116855,coming of age,1453568593 +9319,117529,dinosaurs,1453184453 +9319,117529,Experiment Gone Awry,1453184455 +9319,117533,computers,1453184777 +9319,117533,surveillance,1453184773 +9319,117867,war,1453184218 +9319,119145,comedy,1453186350 +9319,119145,Secret Agency,1453186345 +9319,119145,spy,1453186336 +9319,120466,AI,1453184511 +9319,120466,artificial intelligence,1453184508 +9319,127212,psychology,1453184822 +9319,132112,drones,1453678615 +9319,132112,ethics,1453678617 +9319,132112,Military,1453678619 +9319,132112,Terrorism,1453678611 +9319,132112,War,1453678622 +9319,138036,spy,1453186368 +9319,139721,genius,1453678692 +9319,140074,exorcism,1453185719 +9319,140074,Vatican City,1453185700 +9319,140110,Entrepreneurship,1453678532 +9319,140110,opportunity,1453678553 +9319,143385,CIA,1453567771 +9319,143385,Cold War,1453566971 +9319,143385,espionage,1453567780 +9319,143385,Historical,1453567773 +9319,143385,Political Thriller,1453566975 +9319,143385,spy,1453566974 +9321,357,British,1192071490 +9321,838,funny,1192071480 +9321,2125,Quite Romantic,1192071487 +9372,260,sci-fi,1434582483 +9372,260,space,1434582481 +9374,8874,zombies,1229754120 +9378,4095,lesbian,1171583051 +9444,2291,dreamlike,1391192991 +9444,2291,quirky,1391192996 +9444,48394,alternate reality,1391192872 +9444,48394,dark,1391192899 +9444,48394,fantasy,1391192867 +9444,48394,visually appealing,1391192899 +9463,7502,steven spielberg,1429707849 +9463,7502,tom hanks,1429707849 +9463,7502,world war ii,1429707849 +9487,1086,seen more than once,1202226762 +9488,50,matrix,1451352845 +9497,32,complicated,1275225479 +9497,32,future,1275225507 +9497,32,sci-fi,1275225491 +9497,32,time travel,1275225497 +9497,32,twist ending,1275225518 +9497,50,conspiracy,1275293013 +9497,50,Crime,1275293016 +9497,50,funny,1275293052 +9497,50,organized crime,1275293019 +9497,50,suspense,1275293023 +9497,50,thriller,1275293028 +9497,50,twist ending,1275293023 +9497,2858,black comedy,1275225620 +9497,2858,dark comedy,1275225629 +9497,2858,Nudity (Topless - Notable),1275225592 +9497,2858,sexuality,1275225596 +9497,3578,action,1285010912 +9497,3793,action,1275229490 +9497,3793,adapted from:comic,1275229495 +9497,3793,comic book,1275229497 +9497,3793,genetics,1275229499 +9497,3793,marvel,1275229500 +9497,3793,sci-fi,1275229509 +9497,3793,super-hero,1275229503 +9497,3793,superhero,1275229507 +9497,3793,superheroes,1275229512 +9497,5418,action,1275417818 +9497,5418,assassin,1275417820 +9497,5418,spy,1275417828 +9497,5418,spying,1275417830 +9497,5418,thriller,1275417835 +9497,5445,artificial intelligence,1284990070 +9497,5445,future,1284990066 +9497,5445,futuristic,1284990068 +9497,6333,action,1275229350 +9497,6333,adapted from:comic,1275229352 +9497,6333,genetics,1275229337 +9497,6333,marvel,1275229344 +9497,6333,sci-fi,1275229330 +9497,6333,super-hero,1275229335 +9497,6333,superhero,1275229329 +9497,6377,animation,1285010734 +9497,6377,classic,1285010740 +9497,6377,Disney,1285010737 +9497,6377,Disney animated feature,1285010742 +9497,6377,Pixar,1285010746 +9497,7153,adventure,1275229134 +9497,7153,atmospheric,1275229136 +9497,7153,fantasy world,1275229122 +9497,7153,imdb top 250,1285010789 +9497,7153,magic,1275229112 +9497,7153,Oscar (Best Picture),1285010784 +9497,7153,scenic,1285010801 +9497,7153,stylized,1285010794 +9497,8636,action,1275229524 +9497,8636,based on comic,1275229526 +9497,8636,comic book,1275229528 +9497,8636,Oscar (Best Effects - Visual Effects),1275229529 +9497,8636,superhero,1275229537 +9497,8636,vigilante,1275229540 +9497,8961,action,1285010874 +9497,8961,comedy,1285010876 +9497,8961,comic book,1285010880 +9497,8961,imdb top 250,1285010883 +9497,8961,Pixar,1285010885 +9497,8961,superhero,1285010887 +9497,38061,clever,1275500520 +9497,38061,Nudity (Topless),1275500512 +9497,38061,witty,1275500525 +9497,51662,action,1275229277 +9497,51662,atmospheric,1275229282 +9497,51662,fighting,1275229308 +9497,51662,Nudity (Topless),1275229290 +9497,51662,stylized,1275229296 +9497,51662,sword fight,1275229298 +9497,51662,war,1275229299 +9497,54286,action,1275417727 +9497,54286,assassin,1275417729 +9497,54286,cia,1275417761 +9497,54286,conspiracy,1275417733 +9497,54286,spies,1275417753 +9497,54286,spy,1275417754 +9497,54286,spy thriller,1275417745 +9497,54286,twist ending,1275417768 +9497,55908,dialogue,1275500018 +9497,55908,Excellent use of dialogue,1275500003 +9497,55908,immortality,1275499960 +9497,55908,intellectual,1275499962 +9497,55908,intelligent,1275499969 +9497,55908,religion,1275499974 +9497,55908,sci-fi,1275499976 +9497,55908,thought-provoking,1275499979 +9497,55908,Underrated,1275499990 +9497,55908,unique,1275499994 +9497,58559,action,1275229162 +9497,58559,Batman,1275229154 +9497,58559,comic book,1275229266 +9497,58559,Morgan Freeman,1275229254 +9497,58559,superhero,1275229253 +9497,58559,thriller,1275229261 +9497,58559,vigilantism,1275229255 +9497,60069,adventure,1275229062 +9497,60069,Animation,1275229060 +9497,60069,Post apocalyptic,1275229070 +9497,60069,robots,1275229073 +9497,60069,Sci-Fi,1275229079 +9497,60069,space,1275229077 +9497,72998,beautiful scenery,1285010850 +9497,72998,futuristic,1285010856 +9497,72998,graphic design,1285010835 +9497,72998,music,1285010852 +9497,72998,predictable,1285010840 +9497,72998,romance,1285010848 +9497,72998,sci-fi,1285010843 +9497,76093,action,1285010688 +9497,76093,animation,1285010692 +9497,76093,dragons,1285010696 +9497,76093,Dreamworks animation,1285010699 +9497,76093,Excellent Animation,1285010701 +9497,76093,fantasy,1285010706 +9497,76093,predictable,1285010720 +9497,77561,audience intelligence underestimated,1275229413 +9497,77561,Marvel,1275229430 +9497,77561,superhero,1275229423 +9503,260,practical effects,1450565003 +9503,260,space opera,1450564960 +9503,1196,great soundtrack,1450565069 +9503,1196,space opera,1450565078 +9503,1210,great soundtrack,1450565119 +9503,1210,space opera,1450565109 +9503,1984,misleading name,1450560533 +9503,2288,paranoia,1450564876 +9503,3181,Shakespeare,1452305829 +9503,5903,choreographic violence,1450561927 +9503,5903,stylized violence,1450561913 +9503,8906,social commentary,1450738091 +9503,8957,brutal,1450559926 +9503,33493,space opera,1450565172 +9503,50641,psychedelic,1451009046 +9503,52328,great soundtrack,1450564674 +9503,56003,surreal,1450738338 +9503,61262,Weak Plot,1450820187 +9503,93838,brutal,1450561875 +9503,93838,intense,1450561883 +9503,104841,long shots,1450564583 +9503,149412,Space Opera,1451090761 +9529,260,family,1441228754 +9529,260,space adventure,1441228733 +9529,318,drama,1441229607 +9529,318,friendship,1441229637 +9529,318,great acting,1441229605 +9529,318,great ending,1441229635 +9529,318,Morgan Freeman,1441229611 +9529,318,narrated,1441229628 +9529,318,prison,1441229614 +9529,318,reflective,1441229617 +9529,318,Stephen King,1441229620 +9529,318,wrongful imprisonment,1441229624 +9529,356,90's,1441229832 +9529,356,bittersweet,1441229985 +9529,356,emotional,1441228932 +9529,356,great acting,1441228949 +9529,356,great soundtrack,1441228947 +9529,356,heartwarming,1441228935 +9529,356,inspirational,1441228908 +9529,356,meaning of life,1441229999 +9529,356,must see,1441229928 +9529,356,Oscar (Best Actor),1441228937 +9529,356,Oscar (Best Picture),1441228944 +9529,356,Oscar Winner,1441228913 +9529,356,Robert Zemeckis,1441229992 +9529,356,tom hanks,1441228905 +9529,527,based on a true story,1441229035 +9529,527,drama,1441229045 +9529,527,Oscar (Best Picture),1441229041 +9529,527,Steven Spielberg,1441229047 +9529,527,thought-provoking,1441229086 +9529,2797,New York City,1441229697 +9529,2797,Tom Hanks,1441229681 +9529,3147,drama,1441229543 +9529,3147,emotional,1441229547 +9529,3147,great acting,1441229526 +9529,3147,heartwarming,1441229545 +9529,3147,imdb top 250,1441229559 +9529,3147,male nudity,1441229564 +9529,3147,prison,1441229528 +9529,3147,racism,1441229581 +9529,3147,Stephen King,1441229550 +9529,3147,Tom Hanks,1441229518 +9529,3147,touching,1441229537 +9529,4993,based on a book,1441228868 +9529,4993,Oscar (Best Cinematography),1441228878 +9539,5010,military,1453541377 +9539,5010,War,1453541369 +9539,6383,Cars,1453541399 +9539,6383,street race,1453541404 +9548,260,1970s,1450947767 +9548,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1450947800 +9548,260,action,1450947468 +9548,260,Action comedy,1450947776 +9548,260,"action, scifi",1450947508 +9548,260,adventure,1450947472 +9548,260,aliens,1450947632 +9548,260,all-time great,1450947853 +9548,260,amazing,1450947738 +9548,260,atmospheric,1450947515 +9548,260,awesome,1450947644 +9548,260,awesome soundtrack,1450947897 +9548,260,best movie ever,1450947759 +9548,260,birth of great scifi ideas,1450947778 +9548,260,blockbuster,1450947855 +9548,260,"Cheesy space opera, classic",1450947807 +9548,260,classic,1450947459 +9548,260,classic adventure,1450947774 +9548,260,classic sci-fi,1450947466 +9548,260,comedy,1450947740 +9548,260,coming of age,1450947742 +9548,260,Cool,1450947708 +9548,260,Cult,1450947681 +9548,260,cult classic,1450947487 +9548,260,darth vader,1450947674 +9548,260,deep universe,1450947921 +9548,260,drama,1450947657 +9548,260,entertaining,1450947714 +9548,260,EPIC,1450947483 +9548,260,epic adventure,1450947496 +9548,260,Every nerd should have seen more than once,1450947781 +9548,260,exciting,1450947648 +9548,260,family,1450947769 +9548,260,fantastic,1450947745 +9548,260,fantasy,1450947474 +9548,260,fantasy action,1450947683 +9548,260,far future,1450947903 +9548,260,father-son relationship,1450947691 +9548,260,fiction,1450947727 +9548,260,franchise,1450947875 +9548,260,fun,1450947670 +9548,260,funny,1450947785 +9548,260,future,1450947636 +9548,260,future fantasy,1450947685 +9548,260,futuristic,1450947503 +9548,260,galactic,1450947803 +9548,260,Galaxy,1450947918 +9548,260,geeky,1450947729 +9548,260,George Lucas,1450947492 +9548,260,good,1450947812 +9548,260,good acting,1450947826 +9548,260,good characters,1450947858 +9548,260,good for kids,1450947666 +9548,260,good science fiction,1450947824 +9548,260,good science fictional technology,1450947677 +9548,260,good story,1450947694 +9548,260,good versus evil,1450947705 +9548,260,good vs evil,1450947481 +9548,260,great soundtrack,1450947653 +9548,260,great story,1450947655 +9548,260,great visual effects,1450947935 +9548,260,Groundbreaking,1450947822 +9548,260,han solo,1450947888 +9548,260,Harrison Ford,1450947490 +9548,260,hero,1450947912 +9548,260,hero's journey,1450947627 +9548,260,heroic journey,1450947877 +9548,260,iconic,1450947861 +9548,260,"imaginary world, characters, story, philosophical",1450947805 +9548,260,imaginative,1450947864 +9548,260,Innovative,1450947828 +9548,260,inspiring,1450947710 +9548,260,Intense,1450947867 +9548,260,interesting,1450947696 +9548,260,Intergalactic,1450947927 +9548,260,jedi,1450947501 +9548,260,legendary,1450947731 +9548,260,lightsabers,1450947517 +9548,260,luke skywalker,1450947672 +9548,260,masterpiece,1450947712 +9548,260,must see,1450947646 +9548,260,nerdy,1450947901 +9548,260,nostalgia,1450947910 +9548,260,old,1450947668 +9548,260,old movie,1450947908 +9548,260,oldie but goodie,1450947506 +9548,260,oldschool,1450947788 +9548,260,original plot,1450947736 +9548,260,Oscar (Best Effects - Visual Effects),1450947844 +9548,260,Outer Space,1450947930 +9548,260,Popular,1450947839 +9548,260,practical effects,1450947869 +9548,260,robots,1450947659 +9548,260,romance,1450947520 +9548,260,saga,1450947679 +9548,260,sci fi,1450947661 +9548,260,sci-fi,1450947455 +9548,260,"sci-fi, space",1450947772 +9548,260,science fantasy,1450947629 +9548,260,Science Fiction,1450947457 +9548,260,science-fiction,1450947932 +9548,260,scifi,1450947494 +9548,260,scifi cult,1450947499 +9548,260,"sf,science fiction",1450947688 +9548,260,soundtrack,1450947850 +9548,260,space,1450947461 +9548,260,space action,1450947478 +9548,260,space adventure,1450947463 +9548,260,space combat,1450947847 +9548,260,space epic,1450947485 +9548,260,"space epic, science fiction, hero's journey",1450947938 +9548,260,space opera,1450947476 +9548,260,space travel,1450947650 +9548,260,space western,1450947698 +9548,260,spaceships,1450947734 +9548,260,special effects,1450947634 +9548,260,Star Wars,1450947470 +9548,260,starship pilots,1450947923 +9548,260,starwars,1450947663 +9548,260,stylized,1450947725 +9548,260,sword fight,1450947513 +9548,260,the classic sci fi movie. must see.,1450947700 +9548,260,the force,1450947702 +9548,260,trilogy,1450947873 +9548,260,underdog story,1450947905 +9548,260,universe,1450947722 +9548,260,war,1450947639 +9548,1198,action,1450947969 +9548,1198,adventure,1450947961 +9548,1198,archaeology,1450947966 +9548,1198,atmospheric,1450947981 +9548,1198,Bechdel Test:Fail,1450948000 +9548,1198,biblical,1450947992 +9548,1198,classic,1450947975 +9548,1198,comedy,1450947977 +9548,1198,Egypt,1450947996 +9548,1198,epic,1450947998 +9548,1198,good versus evil,1450947984 +9548,1198,great soundtrack,1450947990 +9548,1198,Harrison Ford,1450947963 +9548,1198,humorous,1450947994 +9548,1198,imdb top 250,1450947988 +9548,1198,indiana jones,1450947965 +9548,1198,Nazis,1450947971 +9548,1198,Steven Spielberg,1450947973 +9548,1198,treasure hunt,1450947979 +9548,1198,World War II,1450947986 +9548,2959,action,1450947404 +9548,2959,atmospheric,1450947370 +9548,2959,based on a book,1450947380 +9548,2959,Brad Pitt,1450947351 +9548,2959,classic,1450947405 +9548,2959,complicated,1450947409 +9548,2959,crime,1450947416 +9548,2959,dark,1450947414 +9548,2959,dark comedy,1450947353 +9548,2959,disturbing,1450947365 +9548,2959,Edward Norton,1450947349 +9548,2959,fighting,1450947419 +9548,2959,helena bonham carter,1450947423 +9548,2959,imaginary friend,1450947428 +9548,2959,mental illness,1450947363 +9548,2959,mindfuck,1450947383 +9548,2959,narrated,1450947421 +9548,2959,philosophical,1450947377 +9548,2959,philosophy,1450947359 +9548,2959,powerful ending,1450947412 +9548,2959,psychological,1450947374 +9548,2959,psychology,1450947347 +9548,2959,quirky,1450947381 +9548,2959,satirical,1450947386 +9548,2959,social commentary,1450947354 +9548,2959,stylized,1450947425 +9548,2959,surreal,1450947357 +9548,2959,thought-provoking,1450947368 +9548,2959,twist,1450947431 +9548,2959,twist ending,1450947345 +9548,2959,violence,1450947361 +9548,2959,violent,1450947372 +9548,134853,Amy Poehler,1450947246 +9548,134853,Animation,1450947210 +9548,134853,beautiful,1450947252 +9548,134853,bittersweet,1450947222 +9548,134853,brain,1450947259 +9548,134853,childhood,1450947201 +9548,134853,Children,1450947154 +9548,134853,comedy,1450947274 +9548,134853,coming of age,1450947206 +9548,134853,creative,1450947213 +9548,134853,cute,1450947261 +9548,134853,depressing,1450947277 +9548,134853,emotion,1450947263 +9548,134853,emotional,1450947234 +9548,134853,emotions,1450947217 +9548,134853,family,1450947244 +9548,134853,Fun,1450947266 +9548,134853,funny,1450947242 +9548,134853,girl,1450947282 +9548,134853,growing up,1450947284 +9548,134853,happiness,1450947228 +9548,134853,hillarious,1450947286 +9548,134853,hockey,1450947239 +9548,134853,imaginative,1450947215 +9548,134853,introspective,1450947225 +9548,134853,joy,1450947289 +9548,134853,kids,1450947268 +9548,134853,melancholic,1450947272 +9548,134853,memory,1450947270 +9548,134853,moving,1450947290 +9548,134853,nostalgic,1450947292 +9548,134853,Pixar,1450947194 +9548,134853,pre-teen,1450947295 +9548,134853,psychology,1450947197 +9548,134853,sad,1450947297 +9548,134853,sadness,1450947249 +9548,134853,San Francisco,1450947220 +9548,134853,teenager,1450947301 +9548,134853,thought provoking,1450947230 +9551,252,albert einstein,1193728941 +9556,296,film noir,1423600129 +9556,296,paradoxical,1423600129 +9556,296,sophisticated,1423600129 +9575,1,Pixar,1209553459 +9575,318,foul language,1192613240 +9653,32172,segregation,1272689374 +9658,1,buddy movie,1271465930 +9658,1,Tom Hanks,1271465933 +9658,1,witty,1271465935 +9658,29,atmospheric,1272492412 +9658,29,beautiful,1272492419 +9658,29,dark fantasy,1272492422 +9658,29,Dominique Pinon,1272492456 +9658,29,Jean-Pierre Jeunet,1272492444 +9658,29,surreal,1272492426 +9658,29,visually appealing,1272492427 +9658,29,whimsical,1272492432 +9658,47,Kevin Spacey,1271912964 +9658,47,powerful ending,1271912968 +9658,47,twist ending,1271912967 +9658,158,Christina Ricci,1271655710 +9658,158,ghosts,1271655721 +9658,260,atmospheric,1271465267 +9658,260,great soundtrack,1271465264 +9658,260,space,1271465257 +9658,260,stylized,1271465260 +9658,296,assassin,1271389388 +9658,296,atmospheric,1271389390 +9658,296,Black comedy,1271389374 +9658,296,Bruce Willis,1271389378 +9658,296,cult film,1271389358 +9658,296,dark comedy,1271389372 +9658,296,imdb top 250,1271389369 +9658,296,multiple storylines,1271389366 +9658,296,Quentin Tarantino,1271389360 +9658,296,quirky,1271389399 +9658,296,Samuel L. Jackson,1271389363 +9658,318,atmospheric,1271374838 +9658,318,based on a book,1271389113 +9658,318,friendship,1271389099 +9658,318,imdb top 250,1271389109 +9658,318,inspirational,1271388986 +9658,318,justice,1271389101 +9658,318,sentimental,1271389105 +9658,318,Stephen King,1271389120 +9658,318,thought-provoking,1271389118 +9658,318,twist ending,1271388980 +9658,337,coming of age,1271912589 +9658,337,John C. Reilly,1271912595 +9658,337,Johnny Depp,1271912593 +9658,337,small town,1271912597 +9658,356,1970s,1271465110 +9658,356,bittersweet,1271465100 +9658,356,great soundtrack,1271465122 +9658,356,historical,1271465103 +9658,356,Tom Hanks,1271465106 +9658,480,based on a book,1271389989 +9658,480,dinosaurs,1271389979 +9658,480,Oscar (Best Effects - Visual Effects),1271389983 +9658,480,scenic,1271389995 +9658,480,sci-fi,1271389977 +9658,480,stylized,1271389974 +9658,551,atmospheric,1271372469 +9658,551,beautiful,1271372491 +9658,551,cult film,1271372481 +9658,551,dark,1271372485 +9658,551,ghosts,1271372488 +9658,551,musical,1271372475 +9658,551,Tim Burton,1271372479 +9658,551,whimsical,1271372497 +9658,586,Daniel Stern,1271390196 +9658,586,Macaulay Culkin,1271390186 +9658,589,stylized,1271373732 +9658,592,atmospheric,1271465626 +9658,592,Jack Nicholson,1271465623 +9658,592,stylized,1271465622 +9658,592,Tim Burton,1271465617 +9658,593,cannibalism,1271465195 +9658,593,disturbing,1271465191 +9658,593,Jodie Foster,1271465175 +9658,593,mental illness,1271465188 +9658,593,psychology,1271465177 +9658,593,serial killer,1271465185 +9658,594,fairy tale,1271373897 +9658,594,fairy-tale,1271373900 +9658,608,black comedy,1271913046 +9658,608,dark comedy,1271913050 +9658,608,murder,1271913052 +9658,778,based on a book,1271373506 +9658,778,black comedy,1271373476 +9658,778,British,1271373481 +9658,778,Ewan McGregor,1271373468 +9658,778,great soundtrack,1271373484 +9658,778,narrated,1271373502 +9658,778,Nudity (Full Frontal - Notable),1271373472 +9658,780,Jeff Goldblum,1271466043 +9658,907,Astaire and Rogers,1271480520 +9658,907,Eric Blore,1271480527 +9658,911,Audrey Hepburn,1272359499 +9658,911,Cary Grant,1272359500 +9658,911,surprise ending,1272359504 +9658,912,atmospheric,1271811794 +9658,912,Ingrid Bergman,1271811810 +9658,916,Audrey Hepburn,1271994950 +9658,916,Gregory Peck,1271994952 +9658,917,Shirley Temple,1271656951 +9658,919,colourful,1271808903 +9658,919,Judy Garland,1271808894 +9658,920,Leslie Howard,1271808536 +9658,920,Olivia de Havilland,1271808558 +9658,920,Vivien Leigh,1271808521 +9658,922,atmospheric,1271816347 +9658,923,atmospheric,1271616305 +9658,923,Orson Welles,1271616299 +9658,926,Bette Davis,1271815488 +9658,926,great dialogue,1271815493 +9658,935,CinemaScope,1271994727 +9658,936,Greta Garbo,1271656139 +9658,936,paris,1271656146 +9658,945,Astaire and Rogers,1271373539 +9658,945,Eric Blore,1271480564 +9658,945,Fred Astaire,1271373542 +9658,953,bank,1271462714 +9658,953,Christmas,1271390126 +9658,953,Contraction In Title,1271462576 +9658,953,family,1271390131 +9658,953,Financial Panic,1271462591 +9658,953,heartwarming,1271390128 +9658,953,Inexperienced Praying,1271462691 +9658,953,James Stewart,1271390123 +9658,953,Old Dark House,1271462710 +9658,953,Rainstorm,1271462629 +9658,953,small town,1271390150 +9658,968,brilliant ending,1271907078 +9658,968,disturbing,1271907080 +9658,968,zombies,1271907073 +9658,1032,surreal,1271451325 +9658,1032,surrealism,1271451328 +9658,1032,Visuals,1271451331 +9658,1032,whimsical,1271451334 +9658,1059,Amazing Cinematography,1274400672 +9658,1059,colourful,1274400677 +9658,1059,FORBIDDEN LOVE,1274400689 +9658,1059,updated classics,1274400686 +9658,1073,colourful,1271907456 +9658,1073,cult film,1271907455 +9658,1073,Gene Wilder,1271907448 +9658,1073,surreal,1271907450 +9658,1073,whimsical,1271907453 +9658,1084,controversial,1275670266 +9658,1103,coming of age,1272357447 +9658,1103,James Dean,1272357444 +9658,1103,Natalie Wood,1272357456 +9658,1104,atmospheric,1271816746 +9658,1104,Marlon Brando,1271816742 +9658,1104,Tennessee Williams,1271816749 +9658,1104,Vivien Leigh,1271816759 +9658,1193,Jack Nicholson,1271907603 +9658,1193,mental illness,1271907606 +9658,1193,psychological,1271907598 +9658,1193,psychology,1271907594 +9658,1199,black comedy,1271466225 +9658,1199,dark comedy,1271466227 +9658,1199,hard to follow,1271466259 +9658,1199,quirky,1271466237 +9658,1199,slow,1271466251 +9658,1199,stylized,1271466234 +9658,1199,surreal,1271466231 +9658,1206,based on a book,1271373096 +9658,1206,Beethoven,1271463205 +9658,1206,Dehumanization,1271463300 +9658,1206,dystopia,1271373083 +9658,1206,Experiment Gone Wrong,1271463328 +9658,1206,great soundtrack,1271373055 +9658,1206,imdb top 250,1271373057 +9658,1206,Invented Language,1271463261 +9658,1206,irreverent,1271463239 +9658,1206,Nudity (Full Frontal),1271373041 +9658,1206,psychology,1271373089 +9658,1206,quirky,1271373044 +9658,1206,Stanley Kubrick,1271373052 +9658,1206,stylized,1271463398 +9658,1206,Surrealism,1271463395 +9658,1206,Villain Played By Lead Actor,1271463313 +9658,1206,Voice Over Narration,1271463283 +9658,1207,atmospheric,1271824986 +9658,1207,Great Depression,1271824990 +9658,1207,Gregory Peck,1271825004 +9658,1207,small town,1271824994 +9658,1208,Dark,1275324912 +9658,1208,disturbing,1275324911 +9658,1210,space,1271466604 +9658,1212,atmospheric,1271616541 +9658,1212,Orson Welles,1271616537 +9658,1214,atmospheric,1271907522 +9658,1219,Alfred Hitchcock,1271389441 +9658,1219,black and white,1271389439 +9658,1219,cross dressing,1271389451 +9658,1219,great cinematography,1271389458 +9658,1219,mental illness,1271389449 +9658,1219,psychology,1271389443 +9658,1219,serial killer,1271389445 +9658,1222,anti-war,1271390448 +9658,1222,Stanley Kubrick,1271390441 +9658,1230,Woody Allen,1271907699 +9658,1235,AFI 100 (Cheers),1271372762 +9658,1235,AFI 100 (Laughs),1271372766 +9658,1235,Breaking The Fourth Wall,1271462957 +9658,1235,Bud Cort,1271462860 +9658,1235,Cult Classic,1271372724 +9658,1235,cult film,1271372729 +9658,1235,dark comedy,1271372726 +9658,1235,Eccentric,1271462931 +9658,1235,Free Spirit,1271462975 +9658,1235,good dialogue,1271372734 +9658,1235,Hal Ashby,1271462876 +9658,1235,imdb top 250,1271372819 +9658,1235,irreverent,1271372812 +9658,1235,May-December romance,1271372737 +9658,1235,National Film Registry,1271372758 +9658,1235,quirky,1271372751 +9658,1235,Ruth Gordon,1271462851 +9658,1235,soundtrack,1271372747 +9658,1235,Volkswagen Beetle,1271462942 +9658,1247,1960s,1271824315 +9658,1247,coming of age,1271824308 +9658,1247,deadpan,1271824305 +9658,1247,notable soundtrack,1271824302 +9658,1247,quirky,1271824300 +9658,1258,atmospheric,1271905604 +9658,1258,cult film,1271905593 +9658,1258,ghosts,1271905603 +9658,1258,Jack Nicholson,1271905594 +9658,1258,psychological,1271905599 +9658,1258,Stanley Kubrick,1271905598 +9658,1265,Bill Murray,1271390381 +9658,1265,existentialism,1271390400 +9658,1265,Fantasy,1271390407 +9658,1265,original plot,1271390404 +9658,1265,small town,1271390398 +9658,1265,surreal,1271390395 +9658,1282,artistic,1271809768 +9658,1282,surreal,1271809762 +9658,1288,AFI 100 (Laughs),1271373583 +9658,1288,Christopher Guest,1271373563 +9658,1288,heavy metal,1271373568 +9658,1288,irreverent,1271373593 +9658,1288,mockumentary,1271373603 +9658,1288,music business,1271373572 +9658,1288,quirky,1271373574 +9658,1288,satirical,1271373579 +9658,1288,witty,1271373576 +9658,1295,Daniel Day-Lewis,1271466177 +9658,1295,Juliette Binoche,1271466174 +9658,1295,slow,1271466182 +9658,1307,chick flick,1271373400 +9658,1307,girlie movie,1271373394 +9658,1307,New York,1271373432 +9658,1307,Oscar Nominee,1271373379 +9658,1307,seen more than once,1271373376 +9658,1339,vampires,1271559490 +9658,1340,Scary Movies To See on Halloween,1271657339 +9658,1344,better than the remake,1271824884 +9658,1344,Gregory Peck,1271824872 +9658,1348,F.W. Murnau,1271559834 +9658,1348,Film Theory & Criticism,1271559849 +9658,1348,german expressionism,1271559828 +9658,1348,Scary Movies To See on Halloween,1271559843 +9658,1348,vampires,1271559824 +9658,1682,cerebral,1271912705 +9658,1682,dreamlike,1271912707 +9658,1682,small town,1271912711 +9658,1682,stylized,1271912709 +9658,1916,Anjelica Huston,1271373178 +9658,1916,austere,1271373233 +9658,1916,avant-garde romantic comedy,1271373208 +9658,1916,bowling,1271373201 +9658,1916,Christina Ricci,1271373203 +9658,1916,dialogue driven,1273636474 +9658,1916,Rosanna Arquette,1271373252 +9658,1916,talky,1271373195 +9658,1916,tap dance,1271373240 +9658,1916,The end of the solitude,1271373248 +9658,1916,Vincent Gallo,1271373190 +9658,1940,Gregory Peck,1271813923 +9658,1961,Dustin Hoffman,1271908077 +9658,1961,road movie,1271908080 +9658,1997,AFI 100 (Thrills),1271372873 +9658,1997,based on a book,1271372871 +9658,1997,BFI modern classic,1271372879 +9658,1997,biblical,1271372923 +9658,1997,controversial,1271372861 +9658,1997,cult,1271372864 +9658,1997,Ellen Burstyn,1271463012 +9658,1997,franchise,1271372906 +9658,1997,horror,1271372910 +9658,1997,imdb top 250,1271372883 +9658,1997,Jason Miller,1271463031 +9658,1997,Max von Sydow,1271463021 +9658,1997,possession,1271372915 +9658,1997,religion,1271372853 +9658,1997,Scariest movie ever made,1271372858 +9658,2010,German expressionism,1271561048 +9658,2124,Based on a TV show,1271373348 +9658,2124,Christina Ricci,1271373282 +9658,2124,Christopher Lloyd,1271373280 +9658,2124,directorial debut,1271373286 +9658,2124,doctors,1271373342 +9658,2124,food,1271373303 +9658,2124,golf,1271373298 +9658,2124,halloween,1271373338 +9658,2124,impostor,1271373335 +9658,2124,lawyers,1271373331 +9658,2124,money,1271373309 +9658,2124,mother-son relationship,1271373324 +9658,2124,party,1271373311 +9658,2124,quirky,1271373291 +9658,2124,supernatural,1271373294 +9658,2124,sword fight,1271373314 +9658,2174,claymation,1271908007 +9658,2174,cult film,1271908011 +9658,2174,haunted house,1271908012 +9658,2174,winona ryder,1271908015 +9658,2176,Alfred Hitchcock,1271814606 +9658,2176,atmospheric,1271814609 +9658,2176,long takes,1271814612 +9658,2176,murder,1271814617 +9658,2176,real-time,1271814614 +9658,2185,Alfred Hitchcock,1271995130 +9658,2204,Alfred Hitchcock,1271812305 +9658,2366,stop motion,1271656031 +9658,2398,Christmas,1271814059 +9658,2398,Natalie Wood,1271814072 +9658,2455,Jeff Goldblum,1271908137 +9658,2459,atmospheric,1271907198 +9658,2459,disturbing,1271907200 +9658,2459,tense,1271907209 +9658,2552,Austin Pendleton,1272431360 +9658,2552,black comedy,1272431336 +9658,2552,horror comedy,1272431380 +9658,2552,irreverent,1272431389 +9658,2552,zombies,1272431367 +9658,2644,castle,1271559326 +9658,2644,Scary Movies To See on Halloween,1271559321 +9658,2644,vampire,1271559314 +9658,2644,vampires,1271559318 +9658,2648,controversial,1271657283 +9658,2648,Scary Movies To See on Halloween,1271657278 +9658,2651,gypsy,1271812805 +9658,2651,Scary Movies To See on Halloween,1271812808 +9658,2657,aliens,1271372404 +9658,2657,androids,1271372401 +9658,2657,cult classic,1271372385 +9658,2657,great soundtrack,1271372391 +9658,2657,homosexuality,1271372411 +9658,2657,murder,1271372420 +9658,2657,musical,1271372422 +9658,2657,Quirky,1271372388 +9658,2692,artistic,1271389204 +9658,2692,existentialism,1271389200 +9658,2692,intense,1271389196 +9658,2692,notable soundtrack,1271389191 +9658,2692,original,1271389193 +9658,2692,thought-provoking,1271389188 +9658,2692,whimsical,1271389186 +9658,2710,directorial debut,1271558217 +9658,2710,forest,1271558221 +9658,2710,low budget,1271558210 +9658,2710,mockumentary,1271558202 +9658,2710,original,1271558206 +9658,2729,based on a book,1271372606 +9658,2729,biting,1271372635 +9658,2729,controversial,1271372603 +9658,2729,drama,1271372627 +9658,2729,James Mason,1271372588 +9658,2729,May-December romance,1271372593 +9658,2729,obsession,1271462480 +9658,2729,Peter Sellers,1271372597 +9658,2729,sexy,1271372614 +9658,2729,Shelley Winters,1271372640 +9658,2729,Stanley Kubrick,1271372580 +9658,2729,talky,1271372619 +9658,2729,temptation,1271372645 +9658,2730,boring,1271466105 +9658,2730,Kubrick,1271466088 +9658,2730,lavish,1271466086 +9658,2730,Notable Soundrack,1271466092 +9658,2730,slow,1271466098 +9658,2730,Stanley Kubrick,1271466109 +9658,2814,serial killer,1271486435 +9658,2814,storm,1271486433 +9658,2814,Vincent Price,1271486431 +9658,2863,1960s,1271653317 +9658,2863,british comedy,1271653325 +9658,2867,cheesy,1271452504 +9658,2867,Roddy McDowall,1271452509 +9658,2867,vampires,1271452507 +9658,2959,atmospheric,1271913217 +9658,2959,twist ending,1271913214 +9658,3061,Christmas,1271812203 +9658,3061,Fred Astaire,1271812204 +9658,3075,Catherine Deneuve,1271657102 +9658,3075,paranoid,1271657119 +9658,3075,rape,1271657109 +9658,3083,Almodovar,1271559601 +9658,3083,Pedro Almodóvar,1271559607 +9658,3083,Penélope Cruz,1271559612 +9658,3083,Spanish,1271559616 +9658,3088,James Stewart,1271816106 +9658,3088,Jimmy Stewart,1271816109 +9658,3152,coming of age,1272933610 +9658,3152,nostalgic,1272933613 +9658,3152,small town,1272933616 +9658,3160,coincidences,1271372533 +9658,3160,DRUG ADDICTION,1271372551 +9658,3160,multiple storylines,1271372529 +9658,3160,REDEMPTION,1271372527 +9658,3205,atmospheric,1272358655 +9658,3307,blindness,1271451020 +9658,3307,Chaplin,1271451017 +9658,3307,Charlie Chaplin,1271451014 +9658,3307,silent movie,1271451005 +9658,3307,slapstick,1271451000 +9658,3307,Virginia Cherrill,1271450997 +9658,3310,Charles Chaplin,1271561330 +9658,3310,Charlie Chaplin,1271561328 +9658,3330,Natalie Wood,1272359403 +9658,3362,AFI 100 (Movie Quotes),1271373009 +9658,3362,Al Pacino,1271372986 +9658,3362,Atmospheric,1271372982 +9658,3362,bank robbery,1271372961 +9658,3362,dark comedy,1271372970 +9658,3362,death,1271372978 +9658,3362,good story,1271372974 +9658,3362,Hostage Situation,1271372994 +9658,3362,imdb top 250,1271372967 +9658,3362,intense,1271373001 +9658,3362,Real Time,1271463123 +9658,3362,robbery,1271372998 +9658,3362,true story,1271372963 +9658,3364,atmospheric,1271815857 +9658,3415,visually stunning,1271984005 +9658,3435,Barbara Stanwyck,1271616737 +9658,3435,stylized,1271616725 +9658,3451,1960s,1271824363 +9658,3451,Spencer Tracy,1271824360 +9658,3462,black and white,1271389604 +9658,3462,Charles Chaplin,1271389600 +9658,3462,Charlie Chaplin,1271389598 +9658,3462,factory,1271389594 +9658,3462,working class,1271389589 +9658,3499,claustrophobic,1271912841 +9658,3545,Liza Minnelli,1272361649 +9658,3546,Bette Davis,1271825164 +9658,3606,CinemaScope,1271814786 +9658,3606,Vera-Ellen,1271814806 +9658,3627,atmospheric,1271824960 +9658,3627,dreamlike,1271824965 +9658,3627,Scary Movies To See on Halloween,1271824962 +9658,3668,Olivia Hussey,1272360499 +9658,3676,atmospheric,1271452624 +9658,3676,cult film,1271452617 +9658,3676,David Lynch,1271452613 +9658,3676,directorial debut,1271452621 +9658,3676,surreal,1271452628 +9658,3850,Ruth Gordon,1272360925 +9658,4105,controversial,1271452574 +9658,4105,Cult classic,1271452556 +9658,4105,cult film,1271452562 +9658,4105,dark humor,1271452572 +9658,4105,directorial debut,1271452569 +9658,4105,zombies,1271452565 +9658,4184,Christmas,1271813798 +9658,4226,amnesia,1271389738 +9658,4226,cult film,1271389718 +9658,4226,dark,1271389727 +9658,4226,death,1271389746 +9658,4226,investigation,1271389714 +9658,4226,Mindfuck,1271389649 +9658,4226,nonlinear,1271389667 +9658,4226,psychological,1271389651 +9658,4226,psychology,1271389653 +9658,4226,stylized,1271389656 +9658,4226,tense,1271389661 +9658,4226,twist ending,1271389659 +9658,4235,independent film,1271451136 +9658,4235,multiple storylines,1271451124 +9658,4356,Marilyn Monroe,1271999698 +9658,4437,atmospheric,1271373812 +9658,4437,Dario Argento,1271373799 +9658,4437,dreamlike,1271373793 +9658,4437,Giallo,1271464463 +9658,4437,horror,1271373791 +9658,4437,Italian horror,1271464480 +9658,4437,Jessica Harper,1271373806 +9658,4437,stylized,1271373809 +9658,4437,supernatural,1271464496 +9658,4437,WITCHCRAFT,1271373821 +9658,4515,Beatles,1271372680 +9658,4515,biographical,1271372678 +9658,4515,John Lennon,1271462750 +9658,4515,New York City,1271372674 +9658,4920,Bette Davis,1271616889 +9658,4973,beautifully filmed,1271451217 +9658,4973,coming of age,1271451212 +9658,4973,cult film,1271451215 +9658,4973,notable soundtrack,1271451206 +9658,4973,Paris,1271451189 +9658,4973,quirky,1271451190 +9658,4973,stylized,1271451195 +9658,4973,surreal,1271451194 +9658,4973,visually appealing,1271451202 +9658,4973,whimsical,1271451198 +9658,5097,Shirley Temple,1271656672 +9658,5105,atmospheric,1272361933 +9658,5105,Donald Sutherland,1272361935 +9658,5354,1960s,1272360568 +9658,5354,Goldie Hawn,1272360547 +9658,5354,Ingrid Bergman,1272360544 +9658,5602,British,1272357344 +9658,5602,dark comedy,1272357342 +9658,5602,Peter Sellers,1272357348 +9658,5673,bittersweet,1271389274 +9658,5673,love,1271389299 +9658,5673,Paul Thomas Anderson,1271389270 +9658,5673,quirky,1271389309 +9658,5673,underrated,1271389291 +9658,5673,whimsical,1271389294 +9658,5878,Almodovar,1271372274 +9658,5878,Leonor Watling,1271372290 +9658,5878,pedro almodovar,1271372280 +9658,5878,relationships,1271372296 +9658,5975,Audrey Hepburn,1272357794 +9658,5977,1970s,1271653490 +9658,5977,black comedy,1271653504 +9658,5977,irreverent,1271653509 +9658,5977,Ruth Gordon,1271653467 +9658,6063,Angela Bettis,1271462388 +9658,6063,disturbing,1271389782 +9658,6063,loneliness,1271462361 +9658,6063,odd,1271389787 +9658,6063,psychological,1271462409 +9658,6065,Peter Sellers,1271487546 +9658,6071,Peter Sellers,1271487911 +9658,6140,Dario Argento,1272400678 +9658,6237,James Stewart,1271995342 +9658,6461,Audrey Hepburn,1271615929 +9658,6502,England,1271451375 +9658,6502,horror,1271451379 +9658,6502,low budget,1271451383 +9658,6502,Post apocalyptic,1271451386 +9658,6502,stylized,1271451389 +9658,6502,unpredictable,1271451391 +9658,6502,visually appealing,1271451393 +9658,6502,zombies,1271451373 +9658,6516,Ingrid Bergman,1272357563 +9658,6639,1960s,1271824439 +9658,6639,Alan Arkin,1271824427 +9658,6639,Audrey Hepburn,1271824426 +9658,6874,nonlinear,1274230815 +9658,6874,Quentin Tarantino,1274230808 +9658,6874,violence,1274230811 +9658,6987,german expressionism,1271561198 +9658,6987,Scary Movies To See on Halloween,1271561200 +9658,6987,surreal,1271561202 +9658,7049,Astaire and Rogers,1271657022 +9658,7050,Astaire and Rogers,1271711894 +9658,7053,Astaire and Rogers,1271656203 +9658,7053,Fred Astaire,1271656200 +9658,7053,Irene Dunne,1271656215 +9658,7055,Astaire and Rogers,1271712886 +9658,7182,1960s,1271821862 +9658,7182,Ruth Gordon,1271821848 +9658,7182,Tuesday Weld,1271821857 +9658,7253,Clara Bow,1271560164 +9658,7361,bittersweet,1271905474 +9658,7361,cult film,1271905492 +9658,7361,Kate Winslet,1271905470 +9658,7361,Michel Gondry,1271905503 +9658,7361,nonlinear,1271905486 +9658,7361,quirky,1271905488 +9658,7361,surreal,1271905482 +9658,7361,surrealism,1271905484 +9658,7361,thought-provoking,1271905479 +9658,7702,Ingrid Bergman,1271813537 +9658,8033,Audrey Hepburn,1271821738 +9658,8033,Eli Wallach,1271821741 +9658,8125,atmospheric,1271560112 +9658,8125,F.W. Murnau,1271560109 +9658,8125,Janet Gaynor,1271560095 +9658,8125,passionate,1271560101 +9658,8125,stylized,1271560098 +9658,8518,Greta Garbo,1271388869 +9658,8571,Natalie Wood,1271451094 +9658,8571,Paul Mazursky,1271451092 +9658,8674,Elaine Cassidy,1271452823 +9658,8712,Irene Dunne,1271809886 +9658,8938,mental illness,1271483832 +9658,8938,psychology,1271483834 +9658,25777,Groucho Marx,1271480875 +9658,25777,Harpo Marx,1271480884 +9658,25801,Mae West,1271711325 +9658,25828,Bette Davis,1271479869 +9658,25828,in real time,1271479852 +9658,25828,Leslie Howard,1271479859 +9658,25865,Bette Davis,1271616862 +9658,25972,Barbara Stanwyck,1271818732 +9658,25972,Marilyn Monroe,1271818729 +9658,25972,small town,1271818734 +9658,26133,Christmas,1271451059 +9658,26133,short,1271451064 +9658,26178,Albert Finney,1271452416 +9658,26178,Audrey Hepburn,1271452417 +9658,26587,dark,1271450943 +9658,26587,thought-provoking,1271450939 +9658,26587,understated,1271450937 +9658,33683,Cécile De France,1271390267 +9658,33683,ending,1271390270 +9658,33683,plot twist,1271390273 +9658,33683,psycho,1271390275 +9658,34359,1960s,1271821674 +9658,34359,James Mason,1271821661 +9658,34359,Lynn Redgrave,1271821664 +9658,37375,Ginger Rogers,1271809784 +9658,40870,coming of age,1271373138 +9658,40870,good direction,1271373134 +9658,40870,homosexuality,1271373130 +9658,40870,queer,1271373125 +9658,40870,questioning sexuality,1271373123 +9658,40870,quirky,1271373120 +9658,42518,Barbara Stanwyck,1274400908 +9658,42518,Christmas,1274400921 +9658,44974,claustrophobic,1271390323 +9658,44974,controversial,1271390328 +9658,44974,disturbing,1271390326 +9658,44974,Ellen Page,1271390321 +9658,44974,intense,1271390332 +9658,44974,psychology,1271390335 +9658,44974,revenge,1271390319 +9658,44974,sexual abuse,1271390337 +9658,46258,Bette Davis,1271655909 +9658,46578,dark comedy,1271389870 +9658,46578,dysfunctional family,1271389867 +9658,46578,feel-good,1271389864 +9658,46578,homosexuality,1271389877 +9658,46578,quirky,1271389854 +9658,46578,road trip,1271389858 +9658,46578,twist ending,1271389856 +9658,48082,bittersweet,1271372352 +9658,48082,dreams,1271372348 +9658,48082,Gael García Bernal,1271372346 +9658,48082,Michel Gondry,1271372333 +9658,48082,psychology,1271372356 +9658,48082,quirky,1271372336 +9658,48082,stylized,1271372343 +9658,48082,surreal,1271372339 +9658,48394,atmospheric,1271389492 +9658,48394,bittersweet,1271389520 +9658,48394,disturbing,1271389518 +9658,48394,great soundtrack,1271389524 +9658,48394,imagination,1271389515 +9658,48394,imdb top 250,1271389511 +9658,48394,Oscar (Best Cinematography),1271389508 +9658,48394,psychology,1271389503 +9658,48394,stylized,1271389500 +9658,48394,surreal,1271389494 +9658,48394,twist ending,1271389497 +9658,50909,Harry Nilsson,1272361575 +9658,50909,psychedelic,1272361577 +9658,52435,Christmas,1271821480 +9658,52435,Dr. Seuss,1271821475 +9658,52435,narrated,1271821478 +9658,56782,amazing acting!,1271913111 +9658,56782,Daniel Day-Lewis,1271913113 +9658,56782,Paul Thomas Anderson,1271913116 +9658,59387,1920s,1271392428 +9658,59387,hospital,1271390512 +9658,59387,imagination,1271390509 +9658,59387,stunning,1271390501 +9658,59387,stylized,1271390497 +9658,59387,surreal,1271390493 +9658,59387,visually appealing,1271390491 +9658,59387,visually stunning,1271390488 +9658,60487,halloween,1271821594 +9658,60803,Christmas,1276737526 +9658,60803,stop motion,1276737536 +9658,68157,black comedy,1271462117 +9658,68157,Brad Pitt,1271462109 +9658,68157,Christoph Waltz,1271462161 +9658,68157,Eli Roth,1271462174 +9658,68157,French,1271462114 +9658,68157,great soundtrack,1271462103 +9658,68157,Quentin Tarantino,1271462095 +9658,68157,visually appealing,1271462099 +9658,77854,bjork,1274768770 +9658,77854,creative,1274768502 +9658,77854,French,1274768630 +9658,77854,imaginative,1274768494 +9658,77854,Michel Gondry,1274768486 +9658,77854,notable soundtrack,1274768553 +9658,77854,quirky,1274768510 +9658,77854,soundtrack,1274768542 +9658,77854,surprisingly funny,1274768650 +9658,77854,surreal,1274768637 +9658,77854,Underrated Director,1274768727 +9658,77854,unique,1274768515 +9658,77854,visually inventive,1274768603 +9658,78093,Clara Bow,1275930246 +9658,78124,independent film,1275482404 +9658,78124,Peter Sellers,1275482355 +9658,78124,Sinead Cusack,1275482445 +9669,223,hilarity,1184338205 +9669,3578,gratuitous violence,1184338145 +9686,6791,beautiful,1436873242 +9686,6791,heartwarming,1436873259 +9689,1196,sci-fi,1451200940 +9689,1196,Star Wars,1451200947 +9689,134130,realistic,1451201030 +9689,134130,sci-fi,1451201026 +9706,58559,action,1451808939 +9706,58559,comic book,1451808928 +9706,58559,legendary,1451808911 +9706,79132,alternate reality,1451808965 +9706,79132,Christopher Nolan,1451808962 +9706,79132,sci-fi,1451808948 +9706,79132,thought-provoking,1451808958 +9712,50,Kevin Spacey,1437733194 +9712,50,mind blowing,1437733211 +9712,50,thriller,1437733222 +9712,356,classic,1437732991 +9712,356,great movie!,1437732991 +9712,356,tom hanks,1437732991 +9712,527,holocaust,1437733258 +9712,527,Nazis,1437733276 +9712,527,sad,1437733261 +9712,30749,genocide,1437733090 +9712,30749,sad,1437733104 +9712,30749,true story,1437733080 +9712,58559,Best Villian,1437732687 +9712,58559,Intriguing,1437732649 +9764,5291,surreal,1230380039 +9764,5498,inner growth,1230117110 +9764,5498,medicine,1230117110 +9764,5498,poverty,1230117006 +9764,5498,selflessness,1230117110 +9764,7352,calling for attention,1230117295 +9764,7352,family,1230117295 +9764,25964,courtroom,1230379738 +9764,25964,father-daughter relationship,1230379738 +9764,25964,honesty,1230379738 +9764,43899,beautifully filmed,1229792660 +9764,43899,death,1229792633 +9764,43899,lyrical,1229792817 +9764,43899,shopping,1229792648 +9764,43899,trauma,1229792641 +9778,47,disturbing,1377063192 +9778,47,great ending,1377063179 +9778,47,horror,1377063192 +9778,47,Kevin Spacey,1377063179 +9778,47,Morgan Freeman,1377063179 +9778,47,philosophical,1377063179 +9778,47,violent,1377063192 +9778,318,great ending,1377056080 +9778,318,inspirational,1377056080 +9778,318,rape,1377056090 +9778,318,twist ending,1377056080 +9778,318,violence,1377056090 +9778,337,creepy,1377066201 +9778,337,depressing,1377066208 +9778,337,dysfunctional family,1377066116 +9778,337,Leonardo DiCaprio,1377066232 +9778,337,small town,1377066113 +9778,339,chemistry between actors,1377057664 +9778,339,cliche,1377057686 +9778,339,feel good movie,1377057703 +9778,339,Sandra Bullock,1377057665 +9778,364,animation,1377057155 +9778,597,classic,1377057765 +9778,597,funny,1377057765 +9778,597,Julia Roberts,1377057765 +9778,597,sexism,1377057788 +9778,802,clarivoyance,1377054658 +9778,802,genius,1377054615 +9778,802,interesting concept,1377054615 +9778,802,John Travolta,1377054615 +9778,802,psychological,1377054615 +9778,802,telekinesis,1377054658 +9778,802,thought-provoking,1377054615 +9778,1193,Jack Nicholson,1377056002 +9778,1193,Oscar (Best Picture),1377056002 +9778,1193,powerful ending,1377056002 +9778,1193,violence,1377056009 +9778,1197,comedy,1377053708 +9778,1197,medieval,1377053741 +9778,1197,modern fantasy,1377053708 +9778,1197,pirates,1377053741 +9778,1197,witty,1377053708 +9778,1243,smart comedy,1377053043 +9778,1243,updated class,1377053063 +9778,1291,adventure,1377060946 +9778,1291,Harrison Ford,1377060925 +9778,1291,Sean Connery,1377060925 +9778,1291,witty,1377060947 +9778,1357,Australia,1377055838 +9778,1357,classical music,1377055873 +9778,1357,insanity,1377055851 +9778,1357,jews,1377055838 +9778,1357,Oscar (Best Picture),1377055906 +9778,1357,schizophrenia,1377055851 +9778,1357,touching,1377055906 +9778,1584,idealism,1377065494 +9778,1584,inspirational,1377065494 +9778,1584,Jodie Foster,1377065491 +9778,1584,religion,1377065493 +9778,1584,science,1377065494 +9778,1645,Al Pacino,1377065920 +9778,1645,devil,1377065886 +9778,1645,religion,1377065919 +9778,1645,surreal,1377065919 +9778,1645,thought-provoking,1377065919 +9778,1704,child abuse,1377056659 +9778,1704,excellent script,1377056640 +9778,1704,feel-good,1377056640 +9778,1704,inspirational,1377056640 +9778,1704,mathematics,1377056656 +9778,1810,good story,1377058367 +9778,1810,politics,1377058367 +9778,1961,autism,1377056763 +9778,1961,Dustin Hoffman,1377056717 +9778,1961,heartwarming,1377056717 +9778,1961,mental illness,1377056763 +9778,1961,overcoming obstacles,1377056736 +9778,1961,tom cruise,1377056763 +9778,2193,outdated,1377053608 +9778,2193,predictable,1377053593 +9778,2268,excellent script,1377053018 +9778,2268,Jack Nicholson,1377053000 +9778,2297,surreal,1377057048 +9778,2329,Edward Norton,1377063024 +9778,2329,Holocaust,1377063042 +9778,2329,nazis,1377063005 +9778,2329,neo-nazis,1377063005 +9778,2329,social commentary,1377063024 +9778,2329,thought-provoking,1377063024 +9778,2329,violence,1377063004 +9778,2431,humanity,1377054746 +9778,2431,inspirational,1377054746 +9778,2431,medicine,1377054733 +9778,2571,dystopia,1377055006 +9778,2686,beautifully filmed,1377055683 +9778,2686,gypsy,1377055724 +9778,2686,multinational settings,1377055724 +9778,2686,multiple storylines,1377055675 +9778,2686,music,1377055724 +9778,2686,Samuel L. Jackson,1377055680 +9778,2724,Good Romantic Comedies,1377057987 +9778,2724,Julia Roberts,1377057987 +9778,2724,small town,1377057987 +9778,2858,Kevin Spacey,1377063606 +9778,2858,mental illness,1377063625 +9778,2858,Oscar (Best Picture),1377063606 +9778,2858,social commentary,1377063606 +9778,2858,surrealism,1377063606 +9778,2858,thought-provoking,1377063606 +9778,2858,violence,1377063625 +9778,2959,disturbing,1377053478 +9778,2959,psychological,1377053470 +9778,2959,social commentary,1377053470 +9778,2959,twist ending,1377053470 +9778,2959,violence,1377053436 +9778,3052,adventure,1377065668 +9778,3052,jay and silent bob,1377065721 +9778,3052,kevin smith,1377065703 +9778,3052,religion,1377065648 +9778,3052,satire,1377065676 +9778,3052,thought-provoking,1377065668 +9778,3147,death penalty,1377056169 +9778,3147,great acting,1377056155 +9778,3147,heartwarming,1377056155 +9778,3147,injustice,1377056196 +9778,3147,nostalgic,1377056155 +9778,3147,Stephen King,1377056169 +9778,3147,tom hanks,1377056155 +9778,3793,psychology,1377057094 +9778,3793,superhero,1377057090 +9778,3949,addiction,1377058623 +9778,3949,dark,1377058623 +9778,3949,depressing,1377058623 +9778,3949,disturbing,1377058623 +9778,3949,drugs,1377058639 +9778,3949,powerful ending,1377058597 +9778,3949,psychology,1377058591 +9778,3949,social commentary,1377058591 +9778,3969,inspirational,1377054531 +9778,3969,Kevin Spacey,1377054531 +9778,3969,twist ending,1377055656 +9778,4823,Good Romantic Comedies,1377057834 +9778,4823,John Cusack,1377057832 +9778,4979,dysfunctional family,1377059027 +9778,4993,Oscar (Best Cinematography),1377053416 +9778,5064,Amazing Cinematography,1377054231 +9778,5064,slow,1377054227 +9778,5620,cliche,1377058128 +9778,5620,funny,1377058135 +9778,5620,Good Romantic Comedies,1377058093 +9778,5620,Reese Witherspoon,1377058093 +9778,5620,underdog,1377058093 +9778,6539,Johnny Depp,1377055665 +9778,6552,gritty,1377064694 +9778,6552,sexual exploitation,1377064694 +9778,6942,funny,1377057543 +9778,6942,love,1377057543 +9778,6942,romance,1377057543 +9778,6942,witty,1377057543 +9778,7147,death/fatality,1377056291 +9778,7147,reflective,1377056288 +9778,7147,storytelling,1377056324 +9778,7147,surreal,1377056288 +9778,7147,thought-provoking,1377056288 +9778,7147,tim burton,1377056288 +9778,7460,no plot,1377053161 +9778,8644,artificial intelligence,1377055146 +9778,8644,dystopia,1377055126 +9778,8644,robots,1377055146 +9778,8644,thought-provoking,1377055126 +9778,8910,intelligent,1377053294 +9778,30707,daek,1377063918 +9778,30707,gritty,1377063918 +9778,30707,violence,1377063918 +9778,30749,africa,1377057346 +9778,30749,depressing,1377057323 +9778,30749,genocide,1377057322 +9778,30749,heroism,1377057346 +9778,30749,violence,1377057322 +9778,44191,comic book,1377055308 +9778,44191,dark,1377055228 +9778,44191,dystopia,1377055237 +9778,44191,england,1377055308 +9778,44191,inspirational,1377055276 +9778,44191,Natalie Portman,1377055276 +9778,44191,philosophy,1377055276 +9778,44191,prison,1377055308 +9778,44191,social commentary,1377055276 +9778,44191,terrorism,1377055308 +9778,44191,though,1377055276 +9778,44191,visually appealing,1377055285 +9778,44195,funny,1377057009 +9778,44195,politics,1377057009 +9778,44195,social commentary,1377057009 +9778,47610,Edward Norton,1377053977 +9778,47610,twist ending,1377053949 +9778,48385,crude humor,1377058863 +9778,48385,social commentary,1377058865 +9778,48394,creepy,1377058743 +9778,48394,disturbing,1377058753 +9778,48394,fantasy,1377058760 +9778,48394,surreal,1377058729 +9778,48394,violence,1377058764 +9778,49286,chemistry between actors,1377057606 +9778,49286,Kate Winslet,1377057585 +9778,49286,romance,1377057585 +9778,49530,africa,1377057459 +9778,49530,child abuse,1377057420 +9778,49530,politics,1377057459 +9778,49530,slavery,1377057421 +9778,49530,violence,1377057420 +9778,49530,war,1377057421 +9778,58559,Heath Ledger,1377055457 +9778,60069,dystopia,1377058695 +9778,63082,gritty,1377057249 +9778,63082,india,1377057235 +9778,63082,nonlin,1377057244 +9778,63082,Oscar (Best Picture),1377057235 +9778,63082,social commentary,1377057235 +9778,63082,violence,1377057265 +9778,64575,great acting,1377060694 +9778,64575,Meryl Streep,1377060694 +9778,64575,moral ambiguity,1377060691 +9778,64575,sexual abuse,1377060691 +9778,68358,animation,1377054084 +9778,72011,infidelity,1377056918 +9778,72011,loneliness,1377056918 +9778,72011,self discovery,1377056951 +9778,72011,witty,1377056951 +9778,79132,alternate reality,1377054969 +9778,79132,psychological,1377054969 +9778,79132,thought-provoking,1377054969 +9778,79132,visually appealing,1377054969 +9778,81591,disturbing,1377053804 +9778,81591,Natalie Portman,1377053837 +9778,81591,psychological,1377053837 +9778,81845,complex characters,1377056388 +9778,81845,england,1377056436 +9778,81845,excellent script,1377056419 +9778,81845,feel-good,1377056388 +9778,81845,Oscar (Best Picture),1377056401 +9778,81845,war,1377056409 +9778,89492,baseball,1377056511 +9778,89492,boston,1377056511 +9778,89492,great acting,1377056471 +9778,89492,intelligent,1377056488 +9778,89492,sports,1377056511 +9778,89492,underdog,1377056488 +9778,89745,great dialogue,1377055501 +9778,89745,humor,1377055518 +9778,89745,Robert Downey Jr.,1377055501 +9778,89745,Samuel L. Jackson,1377055542 +9778,89745,Scarlett Johansson,1377055544 +9778,89745,visually stunning,1377055501 +9778,91529,batman,1377055367 +9778,91529,great ending,1377055361 +9778,91529,plot twist,1377055360 +9778,94780,beautiful cinematography,1377053525 +9778,94780,boring,1377053538 +9778,94780,Charlize Theron,1377053525 +9778,94780,Kristen Stewart,1377053538 +9778,94780,weak plot,1377053543 +9778,97921,family dysfunction,1377056797 +9778,97921,loneliness,1377056878 +9778,97921,mental illness,1377056842 +9778,97921,predictable,1377056827 +9778,97936,author:Leo Tolstoy,1377062694 +9778,97936,costumes,1377062694 +9778,97936,Russia,1377062706 +9783,260,adventure,1439819231 +9783,260,Science Fiction,1439819208 +9798,8360,lame,1402961414 +9798,90866,Family Friendly,1402961071 +9819,1246,philosophy,1355486722 +9819,1246,Robin Williams,1355486724 +9822,123,cinematography,1365263468 +9822,123,loneliness,1365263468 +9822,123,love,1365263468 +9822,123,love story,1365263468 +9822,123,scenic,1365263468 +9822,123,script,1365263468 +9822,123,stylized,1365263468 +9822,215,loneliness,1365263789 +9822,215,long takes,1365263789 +9822,215,love story,1365263789 +9822,215,Richard Linklater,1365263789 +9822,318,lonliness,1365412960 +9822,318,prison escape,1365412960 +9822,1060,coming of age,1365405147 +9822,1060,friendship,1365405147 +9822,1060,friendship of love,1365405147 +9822,1092,Nudity (Topless - Notable),1373106335 +9822,1092,passionate,1373106323 +9822,1092,sex,1373106310 +9822,1092,sexuality,1373106310 +9822,1092,Sharon Stone,1373106345 +9822,1265,satire,1367425841 +9822,1265,self discovery,1367425841 +9822,1265,self-esteem,1367425841 +9822,1265,sexuality,1367425841 +9822,1619,adventureous,1368866449 +9822,1619,dalai lama,1368866400 +9822,1619,loneliness,1368866449 +9822,1619,longing,1368866449 +9822,1619,quirky style,1368866482 +9822,1619,tibet,1368866462 +9822,1619,traveling,1368866449 +9822,1757,Wong Kar Wai,1365263600 +9822,1784,Nudity (Topless),1373106688 +9822,1784,unusual,1373106667 +9822,1784,warm-hearted,1373106679 +9822,1809,guns,1365265400 +9822,1809,silence,1365265400 +9822,1809,Takeshi Kitano,1365265400 +9822,2023,organized crime,1368867025 +9822,2023,stylized,1368867034 +9822,2329,Backgrounds,1365265517 +9822,2329,Edward Norton,1365265517 +9822,2329,friendship,1365265517 +9822,2329,prison,1365265517 +9822,2329,stylized,1365265517 +9822,2539,crazy,1368866600 +9822,2539,humour,1368866600 +9822,2539,mafia,1368866600 +9822,2539,Robert De Niro,1368866600 +9822,2539,unusual- friendships,1368866600 +9822,2858,bittersweet,1365265572 +9822,2858,loneliness,1365265572 +9822,2858,love,1365265572 +9822,2858,multiple storylines,1365265572 +9822,2920,children acting like adults,1365404609 +9822,2959,action,1365404815 +9822,2959,adventure,1365404815 +9822,2959,thriller,1365404815 +9822,4144,atmospheric,1365265074 +9822,4144,loneliness,1365265045 +9822,4144,long takes,1365265045 +9822,4144,longing,1365265045 +9822,4144,love,1365265060 +9822,4144,love triangles,1365265045 +9822,4144,stylized,1365265045 +9822,4144,Wong Kar Wai,1365265045 +9822,4235,dogs,1367668129 +9822,4235,sexual,1367668149 +9822,5135,sexy girls,1365265624 +9822,5225,deep,1365265467 +9822,5225,friendship,1365265467 +9822,5225,friendship transcending death,1365265467 +9822,5225,funny,1365265467 +9822,5225,unconventional romance,1365265467 +9822,5377,children,1365405241 +9822,5377,longing,1365405175 +9822,5377,lonliness,1365405175 +9822,5377,love story,1365405175 +9822,5971,deep meaning,1365264827 +9822,5971,simple,1365264826 +9822,5989,true story,1373106737 +9822,5989,unusual,1373106737 +9822,5989,warm,1373106737 +9822,5995,separation,1365264797 +9822,5995,struggle,1365264754 +9822,6016,Brazil,1365265153 +9822,6016,slum,1365265153 +9822,6016,Thriller,1365265127 +9822,6711,atmospheric,1365264966 +9822,6711,loneliness,1365264966 +9822,6711,long takes,1365264966 +9822,6711,love triangles,1365264966 +9822,6711,sexuality,1365264966 +9822,6711,stylized,1365264966 +9822,6711,travel,1365264966 +9822,6942,comedy,1377935868 +9822,6942,humour,1377935853 +9822,6942,love wins,1377935847 +9822,6942,multiple storylines,1377935841 +9822,8641,everything,1369416874 +9822,8784,adventure,1368858359 +9822,8784,atmospheric,1368858511 +9822,8784,bittersweet,1368858359 +9822,8784,cinematography,1368858501 +9822,8784,death,1368858359 +9822,8784,discovery,1368858418 +9822,8784,father-son relationship,1368858485 +9822,8784,friendship,1368858359 +9822,8784,funny,1368858474 +9822,8784,love story,1368858359 +9822,8784,music,1368858433 +9822,8784,soundtrack,1368858449 +9822,26713,Asian culture,1365263564 +9822,26713,cinematography,1365263564 +9822,26713,loneliness,1365263564 +9822,26713,long takes,1365263564 +9822,26713,love story,1365263563 +9822,26713,love triangles,1365263564 +9822,26713,stylized,1365263564 +9822,26713,stylized violence,1365263563 +9822,26840,long takes,1365264683 +9822,26840,silence,1365264683 +9822,27266,cinematography,1365263402 +9822,27266,loneliness,1365263402 +9822,27266,love triangles,1365263402 +9822,32587,cinematography,1365404913 +9822,32587,dark fantasy,1365404913 +9822,34437,Bill Murray,1373107319 +9822,34437,lonliness,1373107303 +9822,34437,real,1373107293 +9822,34437,unusual,1373107287 +9822,38886,cinematography,1371544402 +9822,38886,sexuality,1371544402 +9822,39183,Ang Lee,1373107440 +9822,39183,Deep,1373107455 +9822,39183,great cinematography,1373107426 +9822,39183,great performances,1373107434 +9822,39183,great soundtrack,1373107419 +9822,39183,love,1373107459 +9822,39183,sad,1373107468 +9822,41285,lust,1371544951 +9822,41285,twist ending,1371544930 +9822,41997,conflict,1365264858 +9822,41997,thriller,1365264858 +9822,44694,sad but good,1365404770 +9822,45501,bromance,1376724551 +9822,45501,Nudity (Topless - Brief),1376724509 +9822,45501,relationships,1376724494 +9822,45501,struggle,1376724526 +9822,45501,truth,1376724534 +9822,45501,Vince Vaughn,1376724493 +9822,48516,Leonardo DiCaprio,1365413146 +9822,48516,Martin Scorsese,1365413146 +9822,48516,organised crime,1365413146 +9822,48780,Christian Bale,1371544525 +9822,48780,Christopher Nolan,1371544525 +9822,48780,philosophy,1371544979 +9822,48780,twist ending,1371544971 +9822,50068,drama,1365404520 +9822,50068,emotional,1365404520 +9822,50068,war,1365404520 +9822,55290,mystery,1365265101 +9822,55290,stylized,1365265101 +9822,55290,thriller,1365265101 +9822,55814,cinematography,1373107249 +9822,55814,dialogue,1373107336 +9822,55814,humour,1373107249 +9822,55814,love,1373107249 +9822,55814,music,1373107249 +9822,55814,observation class,1373107355 +9822,55814,true story,1373107266 +9822,55814,witty,1373107249 +9822,55820,chase scenes,1365404726 +9822,56339,belen rueda,1373106220 +9822,56339,chilly,1373106170 +9822,56339,horror,1373106193 +9822,58998,characters,1369416981 +9822,58998,dialogue,1369416974 +9822,59018,alternate endings,1365263896 +9822,59018,immigrants,1365263896 +9822,59018,morality,1365263896 +9822,59018,quirky,1365263896 +9822,59018,quirky style,1365263896 +9822,64957,adventure,1368868258 +9822,64957,commentary,1368868267 +9822,64957,death,1368868280 +9822,64957,emotional,1368868239 +9822,64957,life,1368868288 +9822,64957,life & death,1368868295 +9822,64957,longing,1368868246 +9822,64957,loss,1368868283 +9822,64957,observational,1368868263 +9822,64957,philosophy,1368868239 +9822,64957,travel,1368868252 +9822,64957,unrequited love,1368868239 +9822,66203,loneliness,1373107005 +9822,72011,coming of age,1365404439 +9822,72011,longing,1365404439 +9822,72011,love story,1365404439 +9822,72011,searching for love,1365404439 +9822,72011,travel,1365404439 +9822,73023,coming of age,1365412144 +9822,73023,love,1365412144 +9822,73023,love story,1365412144 +9822,73290,Hachiko,1377936125 +9822,73290,love,1377936133 +9822,73290,loyalty,1377936143 +9822,74458,Leonardo DiCaprio,1371545046 +9822,74458,philosophy,1371545024 +9822,74458,twist ending,1371545032 +9822,74458,\,1371545024 +9822,76093,comming of age,1365265370 +9822,76093,dragons,1365265341 +9822,76093,friendship,1365265341 +9822,76093,social commentary,1365265340 +9822,76093,storytelling,1365265341 +9822,76093,unconventional,1365265341 +9822,76093,warm-hearted,1365265356 +9822,78039,love story,1367425924 +9822,78039,memories,1367425924 +9822,78039,musical,1367425924 +9822,78039,Ryan Gosling,1367425924 +9822,78039,stylized,1367425924 +9822,79592,adventure,1368866846 +9822,79592,dialogue,1368866846 +9822,79592,Funny as hell,1368866846 +9822,79592,humour,1368866846 +9822,79592,lighthearted,1368866846 +9822,80463,cinematography,1368867998 +9822,80463,college,1368867970 +9822,80463,complex relationships,1368868016 +9822,80463,friendship,1368867962 +9822,80463,funny,1368867946 +9822,80463,loneliness,1368867988 +9822,80463,true story,1368867976 +9822,85881,adolescence,1368868078 +9822,85881,funny,1368868116 +9822,85881,hope,1368868161 +9822,85881,Mad coincidence - boy just happens to be a wrestling star,1368868134 +9822,85881,tough-life,1368868152 +9822,85881,unusual- friendships,1368868097 +9822,85881,yes-we-can,1368868170 +9822,88125,adventure,1365405066 +9822,89759,acting,1369416281 +9822,89759,iran,1369416313 +9822,89759,realism,1369416309 +9822,89759,script,1369416285 +9822,89759,simplicity,1369416317 +9822,89864,cancer,1373107395 +9822,89864,funny,1373107376 +9822,89864,lonliness,1373107381 +9822,89864,unusual,1373107385 +9822,89864,weird,1373107392 +9822,91077,cinematography,1368867862 +9822,91077,drama and commedy,1368867820 +9822,91077,family relationships,1368867806 +9822,91077,George Clooney,1368867837 +9822,91077,light,1368867829 +9822,91077,twist,1368867854 +9822,91529,Morgan Freeman,1371545071 +9822,92643,comming of age,1365264888 +9822,92643,deep,1365264888 +9822,92643,love,1365264888 +9822,92643,warm,1365264888 +9822,96832,too long,1368866977 +9822,97921,dark humor,1365264159 +9822,97921,loneliness,1365264159 +9822,97921,love,1365264159 +9822,98961,American propaganda,1365264362 +9822,98961,propaganda,1365264375 +9825,95510,action,1361460891 +9825,95510,comic book,1361460893 +9825,95510,Emma Stone,1361460901 +9825,95510,superhero,1361460906 +9836,858,great acting,1437108730 +9836,59315,Marvel Cinematic Universe,1437108800 +9836,117533,documentary,1437108784 +9836,117533,edward snowden,1437108784 +9836,117533,privacy,1437108784 +9840,2028,history,1421841784 +9840,2028,Oscar (Best Sound),1421841795 +9840,2028,Steven Spielberg,1421841787 +9840,3578,Rome,1421841284 +9840,3578,Russell Crowe,1421841296 +9840,3578,violence,1421841276 +9840,4995,based on a book,1421841491 +9840,4995,Education,1421841487 +9840,4995,intelligent,1421841480 +9840,4995,mental illness,1421841493 +9840,4995,Oscar Winner,1421841476 +9840,4995,psychology,1421841464 +9840,4995,twist ending,1421841483 +9840,52722,action,1421841415 +9840,68319,revenge,1421841379 +9840,73881,comedy,1421841678 +9841,296,crime,1425880397 +9841,296,drama,1425880397 +9841,296,neo-noir,1425880397 +9841,318,classic,1430800101 +9841,318,drama,1430800101 +9841,318,prison drama,1430800101 +9841,356,classic,1427559334 +9841,356,drama,1427559334 +9841,356,tom hanks,1427559334 +9841,750,classic,1408836450 +9841,912,black and white,1408836270 +9841,912,classic,1408836252 +9841,940,Errol Flynn,1408836610 +9841,940,medieval,1408836631 +9841,940,Michael Curtiz,1408836645 +9841,940,swashbuckler,1408836620 +9841,2644,classic,1408862178 +9841,2644,dracula,1408862164 +9841,2644,vampires,1408862153 +9841,3671,comedy,1408836559 +9841,59315,Marvel,1408836678 +9841,59315,superhero,1408836692 +9841,68073,British,1425881074 +9841,68073,Music,1425881066 +9841,68073,rock and roll,1425881063 +9841,73017,England,1408836766 +9841,73017,Robert Downey Jr.,1408836750 +9841,112852,Marvel,1408836327 +9841,132846,Film Noir,1433917863 +9880,111,mental illness,1441149725 +9880,186,absurd,1446234873 +9880,186,angry female friends,1446235215 +9880,186,angry women,1446235214 +9880,186,bad relationship,1446235168 +9880,186,brainless,1446235153 +9880,186,forced commitment,1446235186 +9880,186,no plot,1446235155 +9880,260,adventure,1437527423 +9880,260,good vs evil,1437527404 +9880,260,sci-fi,1437527419 +9880,293,assassin,1451477111 +9880,293,creepy,1451477201 +9880,293,crime,1451477174 +9880,293,dark hero,1451477184 +9880,293,dark protagonist,1451477165 +9880,293,disturbing,1451477099 +9880,293,great acting,1451477113 +9880,293,hit men,1451477172 +9880,293,Jean Reno,1451477090 +9880,293,Natalie Portman,1451477092 +9880,293,pedophile,1451477190 +9880,293,pedophilic,1451477196 +9880,539,absurd,1446234795 +9880,539,dated,1446234797 +9880,539,sweet,1446234772 +9880,593,classic,1450742532 +9880,593,detective thriller,1450742607 +9880,593,excellent script,1450742522 +9880,593,gothic,1450742650 +9880,593,intense,1450742643 +9880,593,investigation,1450742536 +9880,593,mental illness,1450742528 +9880,593,psychological,1450742512 +9880,593,psychological thriller,1450742641 +9880,593,searching,1450742541 +9880,593,serial killer,1450742509 +9880,593,suspense,1450742517 +9880,593,thriller,1450742515 +9880,661,author:Roald Dahl,1437741031 +9880,661,Roald Dahl,1437741027 +9880,931,Alfred Hitchcock,1438816116 +9880,931,Criterion,1438816111 +9880,1025,dull,1451475001 +9880,1025,magic,1451475005 +9880,1036,dark hero,1444250132 +9880,1073,author:Roald Dahl,1437741049 +9880,1073,roald dahl,1437741044 +9880,1188,campy,1448851016 +9880,1188,comedy,1448851036 +9880,1188,stylized,1448851004 +9880,1188,weird,1448851008 +9880,1206,dark,1437703097 +9880,1212,Criterion,1438622458 +9880,1222,political,1437703355 +9880,1231,adventure,1438391683 +9880,1231,astronauts,1438391649 +9880,1231,cowboy,1438391664 +9880,1231,exploration,1438391680 +9880,1231,frontier,1438391678 +9880,1231,NASA,1438391647 +9880,1231,space,1438391650 +9880,1231,US history,1438391655 +9880,1238,absurd,1437704062 +9880,1238,cute,1437704058 +9880,1250,civilization,1451001292 +9880,1250,cynical,1451001348 +9880,1250,depressing,1451001349 +9880,1250,great premise,1451001195 +9880,1250,nihilism,1451001160 +9880,1250,nihilistic,1451001158 +9880,1250,no redemption,1451001434 +9880,1250,no third act,1451001437 +9880,1250,over the top,1451001228 +9880,1250,premise,1451001199 +9880,1250,theme:civilization vs. anarchy,1451001294 +9880,1250,war,1451001205 +9880,1271,bitter,1437747920 +9880,1271,empowerment,1437747902 +9880,1271,feminism,1437747913 +9880,1271,feminist,1437747909 +9880,1280,claustrophobic,1437744937 +9880,1280,depressing,1437744920 +9880,1280,feminism,1437744953 +9880,1280,feminist,1437744955 +9880,1280,gender politics,1437744942 +9880,1280,slow,1437745037 +9880,1280,stylized,1437744932 +9880,1340,gothic,1437738815 +9880,1357,biopics,1438267286 +9880,1357,classical music,1438267232 +9880,1357,father-son relationship,1438267212 +9880,1357,mental illness,1438267206 +9880,1358,goodness of people,1450764781 +9880,1358,Memorable Characters,1450764767 +9880,1358,mental illness,1450764762 +9880,1358,pretentious,1450764760 +9880,1358,redemption,1450764779 +9880,1358,small town,1450764769 +9880,1377,campy,1437756389 +9880,1562,camp,1437756525 +9880,1562,cheesy,1437756472 +9880,1562,guilty pleasure,1437756449 +9880,1907,feminism,1443546352 +9880,1907,feminist,1443546353 +9880,1907,sexism,1443546334 +9880,1954,American values,1446599942 +9880,1954,bittersweet,1446599946 +9880,1954,boxing,1446599928 +9880,1954,inspirational,1446599907 +9880,1954,oscar (best cinematography),1446599964 +9880,1954,Philadelphia,1446599940 +9880,1954,underdog,1446599944 +9880,2019,Akira Kurosawa,1440982352 +9880,2019,Amazing Cinematography,1440982370 +9880,2019,Kurosawa,1440982358 +9880,2019,masterpiece,1440982348 +9880,2019,RIGHTING THE WRONGED,1440982429 +9880,2019,samurai,1440982349 +9880,2019,Underdog Triumph,1440982420 +9880,2019,western,1440982376 +9880,2045,conservation,1450035867 +9880,2045,hiking,1450035877 +9880,2045,ivory,1450035869 +9880,2045,parents murdered,1450035874 +9880,2045,poachers,1450035864 +9880,2096,a favorite childhood movie,1451474928 +9880,2096,classic,1437744451 +9880,2096,fairy tale,1437744357 +9880,2096,fairy tales,1437744355 +9880,2096,Magic,1451474932 +9880,2096,simple,1437744458 +9880,2096,subgenre:fairy tale,1437744407 +9880,2096,surreal,1437744425 +9880,2096,witch,1451474886 +9880,2160,Atmospheric,1437986215 +9880,2160,creepy,1437986228 +9880,2160,dreamlike,1437986223 +9880,2160,paranoia,1437986235 +9880,2160,surreal,1437986220 +9880,2160,suspense,1437986219 +9880,2186,Alfred Hitchcock,1438894323 +9880,2186,Hitchcock,1438894318 +9880,2401,creepy relationships,1445204309 +9880,2401,good vs evil,1445204268 +9880,2401,Machiavellian woman,1445204307 +9880,2401,sexual competition,1445204311 +9880,2401,ubermensch,1445204319 +9880,2401,Western,1445204266 +9880,2403,action,1446600608 +9880,2403,classic,1446600574 +9880,2403,messed with the wrong guy,1446600599 +9880,2403,post-traumatic stress disorder,1446600567 +9880,2403,small town,1446600580 +9880,2403,special forces,1446600582 +9880,2403,war hero,1446600601 +9880,2420,classic,1437740578 +9880,2420,coming of age,1437740571 +9880,2420,mentor,1437740574 +9880,2563,feminist,1437739807 +9880,2571,cerebral,1442686175 +9880,2571,computers,1442686076 +9880,2571,cyberpunk,1442686046 +9880,2571,dark hero,1442686064 +9880,2571,hackers,1442686072 +9880,2571,surreal,1442686079 +9880,2628,bad acting,1451470143 +9880,2628,child acting,1451470136 +9880,2628,childish,1451470116 +9880,2628,epic final battle,1451470078 +9880,2628,Ewan McGregor,1451470023 +9880,2628,gambling,1451470196 +9880,2628,Natalie Portman,1451470021 +9880,2628,not subtle,1451470268 +9880,2628,original plot,1451470108 +9880,2628,overly dramatic,1451470262 +9880,2628,plot,1451470101 +9880,2628,sci-fi,1451470017 +9880,2628,space opera,1451470084 +9880,2628,Star Wars,1451470016 +9880,2628,terrible dialogue,1451470129 +9880,2628,The Chosen One,1451470167 +9880,2719,haunted house,1437741438 +9880,2724,feminism,1437740378 +9880,2724,feminist,1437740379 +9880,2959,clever,1437702989 +9880,2959,coming of age,1437702948 +9880,2959,dark,1437702992 +9880,2959,mental illness,1441825471 +9880,2959,surreal,1441825466 +9880,2959,violent,1441825482 +9880,2997,Criterion,1438267545 +9880,2997,GENDER-BENDING,1438267598 +9880,2997,infidelity,1438267609 +9880,2997,lesbian,1438267613 +9880,2997,LOVE TRIANGLES,1438267550 +9880,2997,man-hating,1438267611 +9880,2997,original,1438267543 +9880,2997,surreal,1438267497 +9880,2997,thought-provoking,1438267503 +9880,3078,absurd plot,1446419462 +9880,3078,Adrian Brody,1446419415 +9880,3078,exaggerated anti-semitism,1446419404 +9880,3078,heavy-handed,1446419452 +9880,3078,Interracial couple,1446419471 +9880,3328,1990s,1438622813 +9880,3328,assassin,1438622862 +9880,3328,Honor,1438622888 +9880,3328,mobster,1438622890 +9880,3328,samurai,1438622881 +9880,3386,absurd,1448397627 +9880,3386,historically inaccurate,1448397512 +9880,3386,in poor taste,1448397516 +9880,3386,Overrated,1448397526 +9880,3438,superhero,1442098696 +9880,3565,sweet,1438393236 +9880,3735,Al Pacino,1451938921 +9880,3735,authenticity,1452110793 +9880,3735,bravery,1451938896 +9880,3735,dark hero,1451938755 +9880,3735,determination,1451938901 +9880,3735,disillusionment,1451938899 +9880,3735,idealism,1451938905 +9880,3735,outsider,1451938753 +9880,3735,overcoming adversity,1452110809 +9880,3735,sacrifice,1451938912 +9880,3735,struggle,1452110801 +9880,3735,true story,1451938928 +9880,3753,Not very believable,1453934711 +9880,3948,illogical,1437741992 +9880,3948,stupid,1437741985 +9880,3948,stupid main character,1437741980 +9880,3980,Oscar bait,1438531809 +9880,3980,pretentious,1438531810 +9880,3980,self-important,1438531812 +9880,4011,boxing,1446234138 +9880,4011,Crime,1446234141 +9880,4011,gritty,1437705465 +9880,4011,organized crime,1446234148 +9880,4025,ridiculous,1438641491 +9880,4027,coen brothers,1453932969 +9880,4027,great soundtrack,1453932970 +9880,4027,notable soundtrack,1453932812 +9880,4027,soundtrack,1453932862 +9880,4223,thoughtful,1437745122 +9880,4234,absurd,1439322858 +9880,4234,anti-American,1439322929 +9880,4234,cheesey,1439322853 +9880,4234,cynical,1439322856 +9880,4308,stylized,1437758826 +9880,4310,infidelity,1437742099 +9880,4310,Oscar bait,1437742954 +9880,4310,weak romantic movie,1437742087 +9880,4406,good vs. evil,1441162195 +9880,4406,nihilist,1441162185 +9880,4406,pointless,1441162187 +9880,4406,ubermensch,1441162183 +9880,4447,absurd,1438532361 +9880,4447,feminism,1438532313 +9880,4447,feminist,1438532400 +9880,4447,sense of entitlement,1438532378 +9880,4754,atmospheric,1444948192 +9880,4754,creepy,1444948836 +9880,4754,cult,1444948219 +9880,4754,eerie,1444948583 +9880,4754,MISSING PERSONS,1444948210 +9880,4754,sexual,1444948198 +9880,4754,small town,1444948586 +9880,4848,David Lynch,1437755966 +9880,4848,lesbian,1437756019 +9880,4848,nonlinear,1437755972 +9880,4848,pornographic,1437755991 +9880,4848,predatory,1437756003 +9880,4848,pretentious,1437755959 +9880,4848,surreal,1437755968 +9880,4862,angry feminism,1438290446 +9880,4862,bitter,1438290445 +9880,4862,feminism,1438290441 +9880,4862,feminist,1438290443 +9880,4901,espionage,1438204280 +9880,4979,original,1438268221 +9880,4979,pretentious,1438268220 +9880,4979,too self-aware,1438268269 +9880,5065,supernatural,1437741534 +9880,5065,surreal,1437741542 +9880,5103,over-rated,1446235599 +9880,5103,rip-off of Stand By Me,1446235594 +9880,5103,unoriginal,1446235593 +9880,5349,Comic book,1446680688 +9880,5349,double life,1446680900 +9880,5349,good vs evil,1446680854 +9880,5349,infidelity,1446680893 +9880,5349,moral,1446680852 +9880,5349,morals,1446680855 +9880,5349,simple,1446680873 +9880,5349,simplistic,1446680874 +9880,5349,super hero,1446680617 +9880,5349,super-hero,1446680600 +9880,5349,superhero,1446680597 +9880,5349,superheroes,1446680595 +9880,5418,action,1446752159 +9880,5418,action packed,1446752254 +9880,5418,Against all odds,1446752241 +9880,5418,assassin,1446752155 +9880,5418,cia,1446752234 +9880,5418,Coldwar,1446752214 +9880,5418,espionage,1446752158 +9880,5418,Franka Potente,1446752171 +9880,5418,innocent person on the run,1446752195 +9880,5418,intelligent,1446752237 +9880,5418,Matt Damon,1446752174 +9880,5418,Morals,1446752257 +9880,5418,mystery,1446752181 +9880,5418,realistic action,1446752169 +9880,5418,spies,1446752231 +9880,5418,spy,1446752161 +9880,5418,spying,1446752153 +9880,5418,thriller,1446752163 +9880,5464,organized crime,1437742894 +9880,5464,Oscar bait,1437742909 +9880,5617,fighting inner demons,1437756657 +9880,5617,freedom,1437757099 +9880,5617,quirky,1437756684 +9880,5954,depressing,1437756902 +9880,5954,thoughtful,1437756926 +9880,5954,unemployment scene,1437756941 +9880,5995,antisemitism,1443196796 +9880,5995,beautiful,1443196779 +9880,5995,classical music,1443196773 +9880,5995,jewish,1443197143 +9880,5995,Jews,1443197155 +9880,5995,Judaism,1443197156 +9880,5995,Nazis,1443196770 +9880,5995,thoughtful,1443197158 +9880,5995,World War II,1443196768 +9880,6378,absurd,1446420040 +9880,6378,absurd plot,1446420038 +9880,6378,bad plot,1446420184 +9880,6378,heist,1446419767 +9880,6378,product placement,1446419789 +9880,6385,feminism,1451476039 +9880,6385,feminist,1451476045 +9880,6385,girl positive,1451476035 +9880,6385,Girl Power,1451476075 +9880,6618,campy,1446235375 +9880,6618,funny,1446235385 +9880,6618,martial arts,1446235379 +9880,6618,samurai,1446235417 +9880,6618,self aware,1446235433 +9880,6618,sweet,1446235424 +9880,6810,absurd,1443374862 +9880,6810,domestic violence,1443374851 +9880,6810,feminism,1443374834 +9880,6810,feminist,1443374832 +9880,6947,adventurous,1438121262 +9880,6947,cliche,1438121267 +9880,6947,heavy-handed,1438127174 +9880,6947,Oscar bait,1438121263 +9880,6947,pretentious,1438121266 +9880,7013,atmospheric,1438268605 +9880,7013,children escaping from adults,1438268650 +9880,7013,Criterion,1438268637 +9880,7013,dreamlike,1438268596 +9880,7013,good and evil,1438268599 +9880,7013,noir thriller,1438268594 +9880,7034,lesbian,1445024082 +9880,7045,children escaping from adults,1438268682 +9880,7045,dark,1437705231 +9880,7045,Roald Dahl,1438268673 +9880,7090,absurd,1442685160 +9880,7090,Chinese propaganda,1442685680 +9880,7090,heavy-handed,1442684850 +9880,7090,not subtle,1442684852 +9880,7090,pro totalitarianism,1442685974 +9880,7090,propaganda,1442684803 +9880,7090,propaganda in disguise,1442684798 +9880,7154,feminism,1437740339 +9880,7158,absurd,1444686789 +9880,7158,absurd plot,1444686787 +9880,7158,Depressing,1444686798 +9880,7158,extremely unlikely in every sense,1444686715 +9880,7158,heartbreaking,1444686761 +9880,7158,immigrants,1444686765 +9880,7158,Sad,1444686737 +9880,7158,sad but good,1444686809 +9880,7158,touching,1444686792 +9880,7162,pessimistic,1437739275 +9880,7439,comic book,1446419661 +9880,7439,marvel,1446419664 +9880,7439,revenge,1446419665 +9880,7445,redemption,1446946184 +9880,7445,revenge,1446946194 +9880,7445,Torture,1446946201 +9880,7482,poor production values,1437740661 +9880,8132,Boxing,1448775936 +9880,8132,good versus evil,1448775945 +9880,8636,comic book,1442685022 +9880,8636,dark hero,1442685986 +9880,8636,samurai,1442684906 +9880,8636,super-hero,1442684935 +9880,8636,superhero,1442684904 +9880,8636,superheroes,1442684932 +9880,8636,Tobey Maguire,1442685016 +9880,8772,bitter,1451407055 +9880,8772,Criterion,1451406997 +9880,8772,cynical,1451407058 +9880,8772,espionage,1451407006 +9880,8772,John le Carre,1451407037 +9880,8772,spies,1451407000 +9880,8865,future art deco,1451475413 +9880,8865,steampunk,1451475407 +9880,8873,adventure,1438267147 +9880,8873,beautiful,1438267098 +9880,8873,biopic,1438267072 +9880,8873,doesn't change the fact that Che slaughtered a plethora of Cubans,1438267058 +9880,8873,false,1438267047 +9880,8873,fictionalized,1438267140 +9880,8873,Inspiring,1438267076 +9880,8873,political,1438267138 +9880,8981,bleak,1437705904 +9880,8981,complex,1437705914 +9880,8981,divorce,1437705881 +9880,8981,infidelity,1437705887 +9880,8983,absurd,1444260030 +9880,8983,Beautiful,1444260033 +9880,8983,lacks substance,1444260068 +9880,8983,melodramatic,1444261561 +9880,8983,unrealistic,1444260028 +9880,26082,anti-authoritarian,1440638075 +9880,26082,cinematography,1440638054 +9880,26082,Criterion,1438622532 +9880,26082,DOWN ON THEIR LUCK,1440638065 +9880,26082,flashback,1438622526 +9880,26082,great dialogue,1440638131 +9880,26082,in medias res,1438622516 +9880,26082,Masaki Kobayashi,1440638128 +9880,26082,masterpiece,1440638048 +9880,26082,realistic action,1438622546 +9880,26082,ronin,1440638067 +9880,26082,Samurai,1438622530 +9880,26776,loving,1437704569 +9880,26776,magic realism,1437704577 +9880,26776,slow,1437704559 +9880,26776,sweet,1437704568 +9880,26788,china,1445117300 +9880,26788,law,1445117295 +9880,26788,poignant,1445117275 +9880,27808,infidelity,1437703913 +9880,27808,political,1437703901 +9880,27808,sweet,1437703929 +9880,27808,unnuanced,1437703908 +9880,30707,Bittersweet,1437742942 +9880,30707,dark,1437742939 +9880,30707,gritty,1437742935 +9880,30707,oscar bait,1437742930 +9880,32387,beautiful direction,1443374350 +9880,32387,Criterion,1443374305 +9880,32387,good vs. evil,1443374362 +9880,32387,lack of resolution,1443374334 +9880,32387,no ending,1443374335 +9880,32387,samurai,1443374306 +9880,33166,lack of subtlety,1437742034 +9880,33166,racism,1437742017 +9880,33166,redemption,1437742032 +9880,33437,benefactor,1446502233 +9880,33437,cheesy,1446502240 +9880,33437,freedom,1446502245 +9880,33437,friends,1446502234 +9880,33437,kind woman,1446502224 +9880,33437,mentor,1446502236 +9880,33437,nice woman,1446502220 +9880,33437,sweet girl,1446502210 +9880,33660,insincere,1437742838 +9880,33660,inspirational,1437742824 +9880,33660,Oscar bait,1437742813 +9880,33660,sweet,1437742857 +9880,33660,unnecessary drama,1437742845 +9880,33794,based on a comic,1442686499 +9880,33794,batman,1442686481 +9880,33794,Christian Bale,1442686478 +9880,33794,comic book,1442686484 +9880,33794,dark hero,1444249821 +9880,33794,Michael Caine,1442686504 +9880,33794,ninja,1442686507 +9880,33794,philosophical,1442686513 +9880,33794,samurai,1442686525 +9880,33794,super hero,1442686492 +9880,33794,super-hero,1442686486 +9880,33794,superhero,1442686476 +9880,33832,creative,1438532121 +9880,33832,infidelity,1438532124 +9880,33832,original,1438532132 +9880,33832,pretentious,1438532123 +9880,37733,brutality,1446235107 +9880,37733,complex attitude toward violence,1446235067 +9880,37733,complex characters,1446235052 +9880,37733,complex tone,1446235068 +9880,37733,gritty,1446233934 +9880,37733,unpredictable,1446235008 +9880,37733,Viggo Mortensen,1446233941 +9880,38886,divorce,1437739155 +9880,38886,feminism,1437739149 +9880,38886,gender roles,1437739148 +9880,38886,pessimistic,1437739134 +9880,38886,political,1437739136 +9880,40412,mental illness,1437755781 +9880,40412,pretentious,1437755772 +9880,41285,cerebral,1437757135 +9880,41285,Classic,1437757174 +9880,41285,clever,1437757130 +9880,41285,dark,1437757192 +9880,41285,Dostoyevsky,1437757186 +9880,41285,infidelity,1437757205 +9880,41285,mystery,1437757145 +9880,41285,thriller,1437757156 +9880,41285,thrilling,1437757152 +9880,41997,espionage,1446234008 +9880,41997,gritty,1446233993 +9880,41997,israel,1446234016 +9880,41997,terrorism,1446233996 +9880,41997,thought-provoking,1446234034 +9880,44193,shakespeare,1438641684 +9880,44555,complex characters,1438282226 +9880,44555,excellent script,1438282234 +9880,44555,infidelity,1438282392 +9880,44555,spying,1438282232 +9880,44555,subtle performances,1438282432 +9880,45210,heroism,1444501394 +9880,45210,self-sacrifice,1444501388 +9880,45210,true story,1444501389 +9880,45210,visceral,1444501391 +9880,45440,clever,1438268406 +9880,45440,coming of age,1438268340 +9880,45440,disillusionment,1438268330 +9880,45440,layered,1438268433 +9880,45440,parody,1438268432 +9880,45440,searching protagonist,1438268447 +9880,46578,dark,1437527939 +9880,46578,pessimistic,1437739187 +9880,46970,infidelity,1437704388 +9880,47644,inspirational,1438121436 +9880,47644,Philadelphia,1438121419 +9880,47644,underdog,1438121423 +9880,48082,bittersweet,1437739230 +9880,48082,cynical,1437985208 +9880,48082,dreamlike,1437739222 +9880,48082,dreams,1437739217 +9880,48082,great visuals,1437985308 +9880,48082,pessimistic,1437739207 +9880,48082,pretentious,1437985317 +9880,48082,quirky,1437985214 +9880,48082,surreal,1437739216 +9880,48082,unrealistic characters,1437985292 +9880,48385,comedy,1437739875 +9880,48385,irreverent,1437739879 +9880,48385,Sacha Baron Cohen,1437739882 +9880,48385,satire,1437739869 +9880,48516,Boston,1437736082 +9880,48516,gritty,1437736064 +9880,48738,gritty,1438196728 +9880,48774,dark,1437527766 +9880,48774,flawed masterpiece,1437527755 +9880,48774,political,1437527788 +9880,49530,dark,1437527812 +9880,49530,moral,1437527814 +9880,49772,husband-wife relationship,1438196428 +9880,49772,redemption,1438196410 +9880,49772,romantic,1438196418 +9880,50064,mystery,1437755280 +9880,50064,Oscar bait,1437755239 +9880,50064,pretentious,1437755297 +9880,50064,retro,1437755287 +9880,50514,anti-free will,1437754833 +9880,50514,complex,1437754847 +9880,50514,cynical,1437754836 +9880,50514,good dialog,1437754842 +9880,50514,Mads Mikkelsen,1438195357 +9880,50514,pessimistic,1437754834 +9880,51540,David Fincher,1447540717 +9880,51540,detective,1447540720 +9880,51540,investigative journalism,1447540711 +9880,51540,Jake Gyllenhaal,1447540715 +9880,51540,obsession,1447540719 +9880,51540,police,1447540722 +9880,51540,serial killer,1447540090 +9880,51540,Thriller,1447540706 +9880,51884,absurd,1441269142 +9880,51884,ethnocentric,1441269175 +9880,51884,focused on race,1441269177 +9880,51884,immigrant story,1441269203 +9880,51884,immigrants,1441269208 +9880,51884,pretentious,1441269174 +9880,51884,pseudo-intellectual,1441269179 +9880,51884,simple,1441269184 +9880,51884,underdog,1441269213 +9880,52891,cycling,1448850701 +9880,52891,dedication,1448850705 +9880,52891,mental illness,1448850721 +9880,52891,persistence,1448850719 +9880,52891,underdog,1448850722 +9880,52952,gritty,1437755842 +9880,52952,heavy-handed,1446234068 +9880,52952,pretentious,1437755834 +9880,53000,political,1438300477 +9880,54997,naive,1440992967 +9880,54997,nihilist,1440992959 +9880,54997,ridiculous,1440992975 +9880,54997,ubermensch,1440992961 +9880,54997,western,1440992993 +9880,55118,atmospheric,1446236865 +9880,55118,dark hero,1446236860 +9880,55118,Naomi Watts,1446236732 +9880,55118,organized crime,1446236728 +9880,55118,Russian mafia,1446236727 +9880,55118,Viggo Mortensen,1446236730 +9880,55267,infidelity,1437703823 +9880,55267,sweet,1437742165 +9880,55280,absurd,1452373614 +9880,55280,cute,1452373562 +9880,55280,Emily Mortimer,1452373566 +9880,55280,feel-good,1452373592 +9880,55280,feminism,1452373612 +9880,55280,feminist,1452373610 +9880,55280,mental illness,1452373558 +9880,55280,sweet,1452373564 +9880,55280,touching,1452373585 +9880,55687,art,1446947155 +9880,55687,fraud,1446947116 +9880,55820,absurd,1440993502 +9880,55820,dark,1437739297 +9880,55820,detached,1440993507 +9880,55820,flawed masterpiece,1437527771 +9880,55820,great acting,1440993377 +9880,55820,gritty,1437739115 +9880,55820,nihilist,1440993368 +9880,55820,over-rated,1440994007 +9880,55820,pessimistic,1437739113 +9880,55820,pretentious,1440993504 +9880,55820,senseless,1437741644 +9880,55820,suspense,1440994017 +9880,55820,thriller,1440994018 +9880,56715,cerebral,1438267757 +9880,56715,dark,1438267758 +9880,56715,Etgar Keret,1438267731 +9880,56715,Jewish,1438267732 +9880,56715,magic realism,1438267764 +9880,56715,surreal,1438267771 +9880,56715,touching,1438267742 +9880,56782,gritty,1446234085 +9880,56782,morality,1446234170 +9880,56782,western,1446234173 +9880,57147,camp,1437757082 +9880,57147,dramatic,1437757068 +9880,57147,moral dilemma,1437758900 +9880,57147,stylized,1437757077 +9880,57504,friendship,1437704540 +9880,57504,heartwarming,1437704529 +9880,57504,sweet,1437704534 +9880,58559,based on a comic,1442686573 +9880,58559,Batman,1442686538 +9880,58559,Christian Bale,1442686542 +9880,58559,Christopher Nolan,1442686549 +9880,58559,Comic Book adaption,1442686577 +9880,58559,gritty,1442686563 +9880,58559,Heath Ledger,1442686536 +9880,58559,Michael Caine,1442686555 +9880,58559,samurai,1442686584 +9880,58559,superhero,1442686540 +9880,58559,thriller,1442686552 +9880,58998,actually quite good,1446752395 +9880,58998,break-up,1446752411 +9880,58998,BREAKUPS AND DIVORCES,1446752406 +9880,58998,dracula,1446752458 +9880,58998,drugs,1446752433 +9880,58998,hilarious,1446752375 +9880,58998,Jason Segel,1446752359 +9880,58998,Mila Kunis,1446752366 +9880,58998,Paul Rudd,1446752361 +9880,58998,puppets,1446752451 +9880,58998,romantic,1446752467 +9880,59118,awkward,1442098211 +9880,59118,feminism,1442098284 +9880,59118,feminist,1442098281 +9880,59118,no plot,1442676069 +9880,59118,uncomfortable,1442098348 +9880,59118,unrealistic,1442098189 +9880,59336,art,1442168881 +9880,59336,bushido,1442168854 +9880,59336,Chiwetel Ejiofor,1442168830 +9880,59336,Honor,1442168810 +9880,59336,martial arts,1442168903 +9880,59336,purity,1442168880 +9880,59336,samurai,1442168850 +9880,59615,absurd,1450915065 +9880,59615,adventure,1450915071 +9880,59615,archaeology,1450915073 +9880,59615,bad writing,1450915866 +9880,59615,indiana jones,1450915067 +9880,59615,ruined,1450915048 +9880,59615,silly,1450915059 +9880,60684,based on a comic,1442686395 +9880,60684,cold war,1442686446 +9880,60684,comic book,1442686442 +9880,60684,comics,1442686464 +9880,60684,complex,1446751556 +9880,60684,dark hero,1442686347 +9880,60684,dystopia,1442686440 +9880,60684,gritty,1446751569 +9880,60684,misanthropic,1442686408 +9880,60684,sci-fi,1442686386 +9880,60684,super hero,1442686376 +9880,60684,superhero,1442686337 +9880,60684,superheroes,1442686456 +9880,60684,thoughtful,1446751554 +9880,60684,vigilantism,1446751510 +9880,60684,visually appealing,1442686389 +9880,60735,Jeff Nichols,1453933588 +9880,61160,feminism,1441065372 +9880,61160,feminist,1441065374 +9880,61160,sacrilege,1441065342 +9880,61323,cynical,1437528105 +9880,61406,American history,1440284742 +9880,61406,anachronistic feminism,1440284728 +9880,61406,complex characters,1440550163 +9880,61406,complex marriage,1440550081 +9880,61406,feminism,1440284729 +9880,61406,feminist,1440284731 +9880,61406,history,1440284744 +9880,61406,inspiring,1440550077 +9880,61406,loner,1440284751 +9880,61406,revisionist feminism,1440287318 +9880,61406,romantic,1440550073 +9880,61406,touching,1440550075 +9880,62293,feminism,1440892929 +9880,62293,heavy-handed,1440892931 +9880,62293,not subtle,1440892933 +9880,62344,cinema verite,1438558193 +9880,62344,mental illness,1438558174 +9880,62344,realistic,1438558181 +9880,63082,Oscar bait,1438292095 +9880,63082,political,1438292070 +9880,63082,preachy,1438292069 +9880,63082,pretentious,1438292097 +9880,63876,civil rights,1437756067 +9880,63876,gay,1437756039 +9880,63876,gay rights,1437756247 +9880,63876,politics,1437756044 +9880,63876,touching,1437756048 +9880,64614,heartwarming,1439523808 +9880,64614,heavy-handed,1439523800 +9880,64614,mentor,1439523806 +9880,64614,not subtle,1439523801 +9880,64701,absurd,1437742755 +9880,64701,France,1437742735 +9880,64701,great acting,1437742728 +9880,64701,Oscar bait,1437742704 +9880,64701,perfect script,1437742730 +9880,64701,unnecessary drama,1437742764 +9880,64701,unrealistic,1437742754 +9880,64839,Aronofski,1446600900 +9880,64839,Aronofsky,1446600867 +9880,64839,authentic,1446600930 +9880,64839,character,1446600926 +9880,64839,Character study,1446600858 +9880,64839,Darren Aronofsky,1444857277 +9880,64839,depressing,1444858551 +9880,64839,disposable male,1446600845 +9880,64839,loneliness,1444857257 +9880,64839,Mickey Rourke,1446600917 +9880,64839,protagonist try to make things good,1446600909 +9880,64839,relationships,1444857325 +9880,64839,Terrible Choices by Characters,1444858520 +9880,64839,touching,1444857260 +9880,65126,addiction,1446234369 +9880,65126,based on a book,1446234361 +9880,65126,based on book,1446234360 +9880,65126,child abuse,1446234386 +9880,65126,Chuck Palahniuk,1446234340 +9880,65126,mental health,1446234330 +9880,65126,mental illness,1446234325 +9880,65126,redemption,1446234376 +9880,65126,Sam Rockwell,1446234339 +9880,65126,unsympathetic characters,1446234393 +9880,66097,Neil Gaiman,1437740875 +9880,66665,caricatures,1437756145 +9880,66665,narcissistic,1437756110 +9880,66665,pretentious,1437756124 +9880,66665,searching,1437756166 +9880,66665,self-important,1437756149 +9880,66665,sweet,1437756112 +9880,66665,takes itself too seriously,1437756183 +9880,66665,unrealistic characters,1437756136 +9880,67087,childish,1446752551 +9880,67087,friendship,1446752559 +9880,67087,friendship over love,1446752568 +9880,67087,Jason Segel,1446752553 +9880,67087,judgemental women,1446752536 +9880,67087,Paul Rudd,1446752555 +9880,68157,absurd,1450578522 +9880,68157,Christoph Waltz,1450578813 +9880,68157,entertaining,1450578529 +9880,68157,everybody dies,1450578746 +9880,68157,gratuitous,1450578851 +9880,68157,insults audience's intelligence,1450578733 +9880,68157,jews,1450578771 +9880,68157,overrated,1450578583 +9880,68157,poor taste,1450578520 +9880,68952,disgusting--not scary,1437985962 +9880,68952,engaging,1437986006 +9880,68952,poor acting,1437985940 +9880,68952,poor dialogue,1437985965 +9880,68952,poorly written script,1437985992 +9880,68952,stupid ending,1437985944 +9880,68954,adventure,1444093602 +9880,68954,bittersweet,1444093608 +9880,68954,emotional,1444093622 +9880,68954,friendship,1444093592 +9880,68954,heartbreaking,1444093599 +9880,68954,storytelling,1444093596 +9880,68954,sweet,1444093625 +9880,68954,touching,1444093610 +9880,69481,addiction,1438083497 +9880,69481,anti-hero,1444519767 +9880,69481,complex,1438083472 +9880,69481,dark hero,1444519773 +9880,69481,gritty,1438083464 +9880,69481,intense,1438083494 +9880,69481,Kathryn Bigelow,1438083540 +9880,69481,neutral politics,1438083521 +9880,69481,PTSD,1446234117 +9880,69481,realism,1438083534 +9880,69481,realistic,1438083490 +9880,69481,thriller,1438083501 +9880,69481,war,1442686783 +9880,70015,feminism,1443192252 +9880,70015,feminist,1443192250 +9880,70015,misogyny,1443192260 +9880,70015,sexism,1443192256 +9880,70293,bad marriage,1439505982 +9880,70293,bitter,1439505953 +9880,70293,cooking,1439505909 +9880,70293,feminism,1439505948 +9880,70293,feminist,1439505946 +9880,70293,food,1439505907 +9880,70293,frivolous,1452810442 +9880,71464,amazing ending,1438267347 +9880,71464,cerebral,1438267389 +9880,71464,coen brothers,1438267338 +9880,71464,introspective,1438267380 +9880,71464,Jewish,1438267330 +9880,71464,masterpiece,1438267352 +9880,71464,Philosophical,1438267334 +9880,71520,funny,1438641771 +9880,71520,good concept,1438641775 +9880,71520,Ricky Gervais,1438641822 +9880,71520,witty,1438641777 +9880,71535,Jesse Eisenberg is the new Michael Cera,1437741585 +9880,72011,cheating,1437742144 +9880,72011,infidelity,1437742146 +9880,73017,pseudo cerebral,1437704126 +9880,74851,absurd,1447557313 +9880,74851,casual drug use,1447557285 +9880,74851,casual violence,1447557205 +9880,74851,cynical,1447557236 +9880,74851,drugs,1447557197 +9880,74851,espionage,1447557216 +9880,76175,mythology,1437705502 +9880,76251,action,1446418950 +9880,76251,Chloe Moretz,1446418972 +9880,76251,comic book,1446418947 +9880,76251,Hit Girl,1446418969 +9880,76251,humorous,1446418949 +9880,76251,original plot,1446418967 +9880,76251,superhero,1446418945 +9880,76251,vigilante,1446418953 +9880,77455,Banksy,1446947051 +9880,77455,fascinating,1446947048 +9880,77455,funny,1446947057 +9880,77455,pretentious,1446947046 +9880,78574,gritty,1437755498 +9880,78574,rural,1437755508 +9880,78574,thriller,1437755503 +9880,78893,Avatar trilogy,1450739217 +9880,78893,effects,1450739224 +9880,78893,fantasy,1450739220 +9880,80969,beautiful,1437705349 +9880,80969,bittersweet,1437705359 +9880,80969,depressing,1437984874 +9880,80969,love triangles,1437705318 +9880,80969,romantic,1437984866 +9880,81641,political,1437703316 +9880,81641,thriller,1437703319 +9880,81845,based on a true story,1451509012 +9880,81845,Colin Firth,1451509710 +9880,81845,oscar bait,1451508994 +9880,81845,overcoming adversity,1451508945 +9880,81845,overrated,1451508911 +9880,81845,royalty,1451508957 +9880,85211,beautiful,1444261624 +9880,85211,cerebral,1444261616 +9880,85211,cinematography,1444261623 +9880,85211,complex,1444261637 +9880,85211,Haruki Murakami,1444261628 +9880,85211,Japanese,1444261643 +9880,85211,love story,1444261646 +9880,85211,murakami,1444261577 +9880,85211,profound,1444261639 +9880,85211,romantic,1444261619 +9880,85211,thought-provoking,1444261615 +9880,85211,thoughtful,1444261621 +9880,86142,samurai,1441149691 +9880,86190,action,1439975734 +9880,86190,assassin,1452376776 +9880,86190,Cate Blanchett,1439975850 +9880,86190,CIA,1439975883 +9880,86190,Eric Bana,1439976128 +9880,86190,fetishization of two girls kissing,1439975708 +9880,86190,gender studies,1439975729 +9880,86190,good acting,1439975747 +9880,86190,heavy-handed,1439976063 +9880,86190,lesbian fetish,1439975833 +9880,86190,not subtle,1439976064 +9880,86190,pedophilic,1439975827 +9880,86190,political,1439976072 +9880,86190,secret agent,1452377036 +9880,86190,surrealism,1439975648 +9880,86190,thriller,1439975858 +9880,86190,underworld,1439975879 +9880,86190,women's studies,1439975726 +9880,86578,absurd,1441268889 +9880,86578,cute,1441268887 +9880,86578,feminism,1441268892 +9880,86578,feminist,1441268891 +9880,86578,heavy-handed,1441268913 +9880,86578,not subtle,1441268917 +9880,86578,political,1441268904 +9880,86578,polyamory,1444261878 +9880,86578,pretentious,1444261920 +9880,86578,simple,1441268908 +9880,87192,comedy,1437743107 +9880,87192,heavy-handed,1437743125 +9880,87192,not subtle,1437743127 +9880,87192,political,1437743070 +9880,87192,sweet,1437743115 +9880,87192,thriller,1437743113 +9880,87306,sweet,1437742557 +9880,89039,Brit Marling,1448253248 +9880,89039,characters,1448253212 +9880,89039,loner,1448253232 +9880,89039,melancholic,1448253192 +9880,89039,redemption,1448253205 +9880,89039,regret,1448253222 +9880,89039,suffering,1448253238 +9880,89039,surreal,1448253209 +9880,89492,cerebral,1448850517 +9880,89492,math,1448850548 +9880,89492,underdog,1448850550 +9880,89753,Beautifully shot,1438290288 +9880,89753,Cold War,1438290302 +9880,89753,confusing,1438290341 +9880,89753,confusing plot,1438290285 +9880,89753,convoluted,1438290329 +9880,89753,espionage,1438290300 +9880,89753,loneliness,1438290336 +9880,89774,absurd,1446234600 +9880,89774,abusive parents forgiven,1448850442 +9880,89774,boxing,1446234545 +9880,89774,cheesy,1446234567 +9880,89774,good premise,1446234619 +9880,89774,good setup,1446234616 +9880,89774,heavy-handed,1446234611 +9880,89774,martial arts,1446234547 +9880,89774,not subtle,1446234609 +9880,89846,cold war,1442947428 +9880,89846,dark hero,1442947413 +9880,89846,flawed hero,1442947417 +9880,89846,mental illness,1442947409 +9880,89862,break-up,1441076220 +9880,89862,coming of age,1437702932 +9880,89862,dreamlike,1441076171 +9880,89862,infidelity,1441076215 +9880,89862,surreal,1441076196 +9880,90057,brilliant,1446601082 +9880,90057,cerebral,1446601080 +9880,90057,Communication,1446600021 +9880,90057,dreams,1439522890 +9880,90057,Jessica Chastain,1441078588 +9880,90057,masterpiece,1446599897 +9880,90057,mental illness,1439522884 +9880,90057,Michael Shannon,1441078584 +9880,90057,surprising,1446600075 +9880,90057,surreal,1439522909 +9880,90439,cerebral,1438896198 +9880,90439,masterpiece,1438896202 +9880,90439,realistic,1438896206 +9880,90531,child abuse,1437756849 +9880,90531,growing,1437756763 +9880,90531,human condition,1437756828 +9880,90531,running scene,1437756836 +9880,90603,absurd Catwoman,1451377781 +9880,90603,Batman,1451377794 +9880,90603,dark hero,1451377810 +9880,90603,frank miller,1451377801 +9880,90603,overpowered Catwoman,1451476607 +9880,90603,women vs. men,1451377822 +9880,91529,Bane's voice,1442686253 +9880,91529,Batman,1442686205 +9880,91529,Christian Bale,1442686209 +9880,91529,dark,1442686238 +9880,91529,dark hero,1442686220 +9880,91529,samurai,1442686287 +9880,91529,superhero,1442686211 +9880,91890,based on true story,1451511217 +9880,91890,british,1451552471 +9880,91890,caricatures of men,1451511314 +9880,91890,dementia,1451511225 +9880,91890,depressing,1451511883 +9880,91890,feminism,1451511310 +9880,91890,feminist,1451511307 +9880,91890,heavy-handed,1451511886 +9880,91890,not subtle,1451511889 +9880,91890,Oscar bait,1451512097 +9880,91890,overly dramatic,1451512100 +9880,91890,pretentious,1451512103 +9880,91890,scattered,1451511288 +9880,91890,women vs. men,1451511326 +9880,92008,bad acting,1442847215 +9880,92008,espionage,1442847227 +9880,92008,spy,1442847228 +9880,92008,spy on the run,1442847222 +9880,93363,childish plot,1451470322 +9880,93363,simple,1451470686 +9880,93363,villain has no motive,1451470333 +9880,93363,women vs. men,1451470359 +9880,93443,dark hero,1446234456 +9880,93443,disposable male,1446235672 +9880,93443,disposable soldier,1446234472 +9880,93443,hockey,1446234444 +9880,93443,honor,1446234460 +9880,93443,samurai,1446234457 +9880,93443,soldier,1446234473 +9880,93443,sweet,1446235678 +9880,93443,thoughtful,1446234502 +9880,93838,awesome martial arts,1451477022 +9880,93838,cartoonish,1451477015 +9880,93838,drags on,1451476993 +9880,93838,intense,1451477026 +9880,93838,martial arts,1451477024 +9880,93838,thin plot,1451476995 +9880,94959,children treated poorly by adults,1438392214 +9880,94959,coming of age,1438392222 +9880,94959,infidelity,1438392234 +9880,94959,love story,1438392281 +9880,94959,original,1438392228 +9880,94959,romantic,1438392290 +9880,94959,sympathetic characters,1438392253 +9880,94959,underdog,1438392276 +9880,94959,wilderness,1438392260 +9880,95510,Bad Adaptation,1446682012 +9880,95510,double life,1446682068 +9880,95510,Emma Stone,1450742945 +9880,95510,feminism,1446682040 +9880,95510,feminist,1446682041 +9880,95510,Marvel,1446682086 +9880,95510,not as good as the original,1446682014 +9880,95510,superhero,1437740082 +9880,95510,sweet,1437740102 +9880,95510,women are smarter than men,1446682038 +9880,95510,women vs. men,1450742951 +9880,95873,bitter,1437754402 +9880,95873,cute,1437754406 +9880,95873,feminism,1437754391 +9880,95873,feminist,1437754393 +9880,95873,Magic Realism,1437754384 +9880,95873,quirky,1437754415 +9880,96296,academia,1451558072 +9880,96296,caricature,1451558063 +9880,96296,graduate student,1451558073 +9880,96296,poor production values,1451558007 +9880,96296,pseudo intellectual,1451558066 +9880,96296,university,1451558076 +9880,96417,bicycling,1438196998 +9880,96417,camp,1438197005 +9880,96417,campy,1438197008 +9880,96488,authentic,1446952816 +9880,96488,Detroit,1446952618 +9880,96488,dishonest,1448252863 +9880,96488,Documentary,1446952637 +9880,96488,heartwarming,1446952654 +9880,96488,inaccurate,1446955852 +9880,96488,inspiring,1446952819 +9880,96488,manipulative,1446955858 +9880,96488,mystery,1446955847 +9880,96488,surprising,1446952652 +9880,96488,underdog,1446952631 +9880,96610,clever,1446751298 +9880,96610,creepy kid,1446751373 +9880,96610,genre-bending,1446751282 +9880,96610,great script,1446751284 +9880,96610,organized crime,1446751295 +9880,96610,sci-fi,1446751294 +9880,96610,sci-fi thriller,1446751305 +9880,96610,unexpected,1446751359 +9880,96861,contrived,1437757258 +9880,96861,predictable,1437757247 +9880,97057,adventure,1438391589 +9880,97057,exploration,1438391600 +9880,97057,lack of plot,1438391586 +9880,97057,nationalism,1438391587 +9880,97057,ocean,1438391595 +9880,97057,sea,1438391593 +9880,97304,1970s,1444519832 +9880,97304,CIA Agent,1444519886 +9880,97304,espionage,1444519915 +9880,97304,funny,1444519844 +9880,97304,heroism,1444519847 +9880,97304,Political Thriller,1444519825 +9880,97304,tense,1444519835 +9880,97304,thriller,1444519912 +9880,97752,pretentious,1437755396 +9880,97866,dishonest,1444261805 +9880,97866,fake,1444261757 +9880,97866,manipulative,1448253037 +9880,97866,misleading,1444261753 +9880,97866,re-enactment,1444261763 +9880,98961,cerebral,1437703453 +9880,98961,CIA,1452376690 +9880,98961,cinematography,1452376687 +9880,98961,complex,1437703466 +9880,98961,complex morality,1437703481 +9880,98961,dark hero,1442686935 +9880,98961,gritty,1437703457 +9880,98961,Jessica Chastain,1438085260 +9880,98961,Kathryn Bigelow,1452376705 +9880,98961,military,1442686838 +9880,98961,nuanced,1437703461 +9880,98961,political,1437703459 +9880,100383,corruption,1438639685 +9880,100383,insider Trading,1438639762 +9880,100383,lesbian,1438639661 +9880,100383,lesbian caricature,1438639752 +9880,100383,overcoming adversity,1438639778 +9880,100383,psychology,1438639714 +9880,101088,beautiful,1446601298 +9880,101088,erotic,1446601319 +9880,101088,imagery,1446601295 +9880,101088,mental illness,1446601339 +9880,101088,psychological thriller,1446601317 +9880,101088,serial killer,1446601341 +9880,101088,stylish,1446601315 +9880,101088,symbolism,1446601290 +9880,101088,thriller,1446601380 +9880,101864,atmospheric,1446751091 +9880,101864,dystopia,1446751101 +9880,101864,interesting concept,1446751103 +9880,101864,post-apocalyptic,1446751087 +9880,101962,loving,1437704176 +9880,101962,sweet,1437704173 +9880,102194,good acting,1448531324 +9880,102194,honest,1448531334 +9880,102194,powerful,1448531322 +9880,102800,awkward,1442098135 +9880,102800,cute,1442098073 +9880,102800,feminism,1442098057 +9880,102800,feminist,1442098057 +9880,102800,friends vs. relationships,1442098450 +9880,102800,pretentious,1442098056 +9880,102800,quirky,1442098116 +9880,103042,Zack Snyder,1451470784 +9880,103219,creepy,1445200413 +9880,103219,depressing,1445200374 +9880,103219,Elijah Wood,1445200396 +9880,103219,gore,1445200376 +9880,103219,gory,1445200380 +9880,103219,mental illness,1445200388 +9880,103219,novel,1445200425 +9880,103219,point of view,1445200421 +9880,103219,serial killer,1445200392 +9880,103219,unsympathetic characters,1445200470 +9880,103228,women vs. men,1451474785 +9880,104841,caricatures of astronauts,1438641061 +9880,104841,cheesy,1451476627 +9880,104841,cliche characters,1451476651 +9880,104841,feminism,1438641031 +9880,104841,Girl Power,1451476691 +9880,104841,heavy-handed,1438641069 +9880,104841,overrated,1451476648 +9880,104863,factory indie,1437754576 +9880,104863,gender roles,1437754549 +9880,104863,infidelity,1437754473 +9880,104863,pretentious,1437754505 +9880,106032,absurd,1452809358 +9880,106032,comedy,1452809377 +9880,106032,feminism,1452809361 +9880,106032,feminist,1452809362 +9880,106032,serial killer,1452809367 +9880,106032,tongue-in-cheek,1452809353 +9880,106696,angry feminism,1437739598 +9880,106696,Awful story,1439322549 +9880,106696,feminist,1437739586 +9880,106696,heavy-handed,1437740122 +9880,106696,No emotional attachment,1437740131 +9880,106696,not subtle,1437739596 +9880,106916,cynical,1437534188 +9880,106920,beautiful,1437984938 +9880,106920,cheating,1437984959 +9880,106920,cynical,1437984968 +9880,106920,infidelity,1437984963 +9880,106920,original plot,1437984982 +9880,106920,predictable,1437984977 +9880,106920,quirky,1437985029 +9880,106920,thought-provoking,1437984908 +9880,107406,absurd,1438640921 +9880,107406,heavy-handed,1437739989 +9880,107406,illogical,1437739972 +9880,107406,not subtle,1437739960 +9880,107406,political,1437739955 +9880,107406,poor plot,1437739965 +9880,107406,wintry,1437740008 +9880,107771,vampires,1438290608 +9880,107771,visually stunning,1438290622 +9880,108709,absurd characters,1441269038 +9880,108709,biased,1441269020 +9880,108709,heavy-handed,1441269023 +9880,108709,not subtle,1441269022 +9880,108709,unrealistic,1441269018 +9880,108932,advertising,1437741247 +9880,108981,bitter,1437985167 +9880,108981,cynical,1437985161 +9880,108981,heavy-handed,1437985165 +9880,108981,nihilist,1437985163 +9880,108981,pessimistic,1437985168 +9880,109243,atmospheric,1450777850 +9880,109243,creepy,1450777836 +9880,109487,like contact,1446752002 +9880,109487,wasted potential,1446751946 +9880,110586,Brendan Gleeson,1446059497 +9880,110586,powerful,1446059512 +9880,110586,religion,1446059508 +9880,111622,bittersweet,1437704917 +9880,111622,infidelity,1437704913 +9880,111622,positive,1437704927 +9880,111622,uplifting,1437704931 +9880,111759,sci-fi,1440456236 +9880,112171,dark hero,1446600686 +9880,112171,Denzel Washington,1446600698 +9880,112171,revenge,1446600690 +9880,112171,russian mafia,1446600693 +9880,112183,insider acting stuff,1437755360 +9880,112183,magical realism,1437755364 +9880,112183,pretentious,1437755346 +9880,112183,surreal,1437755375 +9880,112290,Ambitious,1443818151 +9880,112290,depressing,1443875363 +9880,112290,detached characters,1443875356 +9880,112290,drug use,1443825624 +9880,112290,family,1443820361 +9880,112290,growing up,1443818166 +9880,112290,heavy-handed,1443820350 +9880,112290,nihilism,1443876035 +9880,112290,not subtle,1443820348 +9880,112290,political,1443820340 +9880,112290,politicized,1443820335 +9880,112290,unsympathetic characters,1443869536 +9880,112450,parody,1438292581 +9880,112552,determination,1448252730 +9880,112552,exceptional acting,1448252727 +9880,112552,good acting,1448252629 +9880,112552,greatness,1448251931 +9880,112552,inpirational,1448252609 +9880,112552,inspirational,1448252118 +9880,112552,intense,1448252621 +9880,112552,jazz,1448252752 +9880,112552,motivation,1448252124 +9880,112552,obsession,1448252598 +9880,112552,overcoming adversity,1448251957 +9880,112552,perfectionism,1448252130 +9880,112552,power of hope,1448252183 +9880,112552,psychological,1448251992 +9880,112556,author:Gillian Flynn,1438267901 +9880,112556,David Fincher,1437742183 +9880,112556,marriage,1437742176 +9880,112556,masterpiece,1438267866 +9880,112556,psychothriller,1437742227 +9880,112556,unpredictable,1437742180 +9880,112804,absurd,1448352824 +9880,112804,interesting premise,1448352836 +9880,112804,poorly executed,1448352847 +9880,112804,scientific discovery,1448351039 +9880,112804,weak scenario,1448351029 +9880,114439,CIA,1443038767 +9880,114439,revenge,1443038781 +9880,114439,Russia,1443038769 +9880,114439,spy,1443038774 +9880,114662,Bradley Cooper,1442686671 +9880,114662,emotional struggle,1442686700 +9880,114662,military,1442686680 +9880,114662,post-traumatic stress disorder,1442686695 +9880,114662,ptsd fans,1442686703 +9880,114662,sniper,1442686678 +9880,114662,USA,1447540217 +9880,114662,War,1442686655 +9880,115149,assassin,1442687143 +9880,115149,dark hero,1442687154 +9880,115149,organized crime,1442687138 +9880,115149,russian mafia,1442687145 +9880,115216,gritty,1437754729 +9880,115569,Crime,1443546609 +9880,115569,dark,1443546578 +9880,115569,gripping,1443546574 +9880,115569,psychothriller,1443546598 +9880,115569,sociopath,1443546606 +9880,115569,thriller,1443546582 +9880,115713,angry feminism,1437739015 +9880,115713,artificial intelligence,1446751678 +9880,115713,bitter,1438532540 +9880,115713,cerebral,1437738956 +9880,115713,Contemplative,1446751669 +9880,115713,cynical,1437738969 +9880,115713,feminism,1437739076 +9880,115713,feminist,1437738993 +9880,115713,gender roles,1437738946 +9880,115713,isolation,1446751665 +9880,115713,pessimistic,1437738986 +9880,115713,philosophical,1437738960 +9880,115713,sci-fi,1446751676 +9880,115713,technology,1437739030 +9880,115713,women vs. men,1450742960 +9880,115991,bizarre,1440284853 +9880,115991,depressing,1440284860 +9880,115991,Loner,1440286718 +9880,115991,nonsensical,1440284855 +9880,115991,quest,1440286723 +9880,115991,searching,1440286728 +9880,116161,cynical,1437742301 +9880,116797,Alan Turing,1437742431 +9880,116797,autism,1438084066 +9880,116797,civil rights,1438084043 +9880,116797,cryptography,1437742317 +9880,116797,feminism,1438084108 +9880,116797,feminist,1438084110 +9880,116797,fictionalized,1438084417 +9880,116797,genius,1437742329 +9880,116797,heavy-handed,1438084106 +9880,116797,historical inaccuracy,1438084062 +9880,116797,homosexuality,1437742336 +9880,116797,informatics,1437742326 +9880,116797,LGBT,1437742410 +9880,116797,mathematics,1437742322 +9880,116797,not subtle,1438084112 +9880,116797,Oscar bait,1437742452 +9880,116797,overly dramatic,1438084164 +9880,116797,pseudo intellectual,1437742463 +9880,116797,self-important,1437756209 +9880,116797,whitewashed,1438084157 +9880,117529,adventure,1450050315 +9880,117529,dinosaurs,1450050310 +9880,117529,exciting,1450050319 +9880,117529,man vs. nature,1450050306 +9880,117529,predictable,1450050333 +9880,117529,thriller,1450050362 +9880,117533,complex,1437703403 +9880,117533,complex morality,1437703513 +9880,117533,computers,1437703427 +9880,117533,nuanced,1437703401 +9880,117533,political,1437703404 +9880,118985,feminism,1445117971 +9880,118985,feminist,1445117972 +9880,119141,absurd,1450309709 +9880,119141,crude,1450309657 +9880,119141,gratuitous,1450309699 +9880,119141,James Franco,1450309676 +9880,119141,juvenile,1450309687 +9880,119141,Seth Rogen,1450309674 +9880,119145,camp,1437530426 +9880,119655,witch,1446751713 +9880,119655,witches,1446751712 +9880,122882,angry feminism,1437703025 +9880,122882,apocalyptic,1437703056 +9880,122882,dark,1437703008 +9880,122882,feminism,1437702649 +9880,122882,feminist,1437702663 +9880,122882,girl power,1451476149 +9880,122882,heavy-handed,1451476916 +9880,122882,not subtle,1451476914 +9880,122882,over the top,1451476894 +9880,122882,political,1437703241 +9880,122882,post apocalypse,1451476572 +9880,122882,propaganda,1451476565 +9880,122882,rehash sequel,1451476951 +9880,122882,unnuanced,1437703263 +9880,122882,women vs. men,1451476558 +9880,122886,absurd,1450480454 +9880,122886,BB-8,1450482709 +9880,122886,deus ex machina,1451475817 +9880,122886,Exploited,1450739587 +9880,122886,feminism,1450475233 +9880,122886,feminist,1450475232 +9880,122886,heavy-handed,1450476776 +9880,122886,J.J. Abrams,1450476808 +9880,122886,Jedi Knight,1450476817 +9880,122886,Luke Skywalker,1450476791 +9880,122886,not subtle,1450476777 +9880,122886,Plagiarism,1450739597 +9880,122886,Plot Recycling,1450739583 +9880,122886,ruined,1450915027 +9880,122886,space,1450476831 +9880,122886,Star Wars,1450476750 +9880,122886,women vs. men,1450742379 +9880,122892,audience iq understimated,1446751859 +9880,122892,bloated,1446751824 +9880,122892,derivative,1446751878 +9880,122892,good vs evil,1446751827 +9880,122892,super hero,1446751869 +9880,122892,superhero,1438641144 +9880,122900,Michael Douglas,1446751019 +9880,122900,paul rudd,1446752293 +9880,122900,regret,1446751040 +9880,122900,superhero,1446750983 +9880,122900,superheroes,1446751039 +9880,122900,too self aware,1446752280 +9880,127110,bad marriage,1440619072 +9880,127110,infidelity,1440619070 +9880,127110,marital crisis,1440619074 +9880,127110,mystery,1440619092 +9880,127110,narcissistic,1440619079 +9880,127110,pretentious,1440619076 +9880,127140,childish,1450834345 +9880,127140,drugs,1450777945 +9880,127140,honesty,1450777906 +9880,127140,modern intimacy,1450777915 +9880,127140,overly simplified,1450777909 +9880,127140,relationships,1450777905 +9880,127140,sweet,1450777939 +9880,127140,unrealistic,1450777936 +9880,127148,absurd,1448846997 +9880,127148,dishonest,1448850358 +9880,127148,false,1448847061 +9880,127148,feminism,1448846970 +9880,127148,feminist,1448849940 +9880,127148,fiction,1448846966 +9880,127148,fraudulent,1448846961 +9880,127148,heavy-handed,1448847024 +9880,127148,man hating,1448847097 +9880,127148,manipulative,1448846983 +9880,127148,not balanced,1448847033 +9880,127148,not subtle,1448847035 +9880,127206,Jemaine Clement,1440113414 +9880,128695,good vs evil,1446233885 +9880,128695,gritty,1446233876 +9880,128838,atmosphere,1450030294 +9880,128838,cinematography,1450030280 +9880,128838,creepy,1450030290 +9880,128838,ghosts,1450032056 +9880,128838,gruesome,1450032059 +9880,128838,Guillermo del Toro,1450030278 +9880,128838,incest,1450032049 +9880,128838,Jessica Chastain,1450030297 +9880,128838,Mia Wasikowska,1450030310 +9880,128838,visually appealing,1450032066 +9880,129659,advertising,1438360413 +9880,129659,heavy-handed,1438360025 +9880,129659,not subtle,1438360023 +9880,129659,overcoming adversity,1438359979 +9880,129659,product placement,1438360414 +9880,129659,running,1438360330 +9880,131724,dark,1444261833 +9880,131724,documentary,1444261817 +9880,131724,fascinating,1444261829 +9880,131724,investigative journalism,1444261840 +9880,131724,mystery,1444261842 +9880,131724,true crime,1444261823 +9880,133802,cynical,1437754652 +9880,133802,pessimistic,1437754654 +9880,133802,ubermensch,1437754674 +9880,134130,Chinese propaganda,1450309487 +9880,134130,Chiwetel Ejiofor,1450309397 +9880,134130,Donald Glover,1450309401 +9880,134130,Improvisation,1450309572 +9880,134130,international cooperation,1450310646 +9880,134130,Jessica Chastain,1450309388 +9880,134130,man vs. nature,1450310657 +9880,134130,matt damon,1450309436 +9880,134130,NASA,1450309431 +9880,134130,overrated,1450309541 +9880,134130,pseudo intellectual,1450309550 +9880,134130,rugged individualism,1450309451 +9880,134130,sci-fi,1450309434 +9880,134130,scientific,1450309570 +9880,134130,Space,1450309439 +9880,134130,space program,1450309579 +9880,134130,stranded hero,1450309581 +9880,134130,Survival Instinct,1450309441 +9880,134368,angry feminism,1437702690 +9880,134368,feminist,1437702699 +9880,134368,political,1437702692 +9880,134393,bitter,1438374427 +9880,134393,career vs. relationship,1438374388 +9880,134393,cynical,1438374433 +9880,134393,feminism,1438374394 +9880,134393,feminist,1438374391 +9880,134393,funny,1438374416 +9880,134393,heavy-handed,1438374396 +9880,134393,not subtle,1438374398 +9880,134853,Animation,1444069905 +9880,134853,childhood,1444069950 +9880,134853,cute,1444069966 +9880,134853,feminism,1444069910 +9880,134853,feminist,1444069912 +9880,134853,lacking complexity,1444081522 +9880,134853,man-hating,1444070009 +9880,134853,naive,1444081524 +9880,134853,overrated,1444069929 +9880,134853,Pixar,1444069944 +9880,134853,predictable,1444069902 +9880,134853,pretentious,1444070422 +9880,134853,simple,1444081515 +9880,134853,thinks it's more clever than it is,1444070424 +9880,135927,absurd,1450857568 +9880,135927,bad acting,1450857550 +9880,135927,feminism,1450857579 +9880,135927,feminist,1450857574 +9880,135927,infidelity,1450857594 +9880,135927,interesting premise,1450857557 +9880,135927,shallow plot,1450857564 +9880,136020,absurd,1451321034 +9880,136020,advertising,1451320810 +9880,136020,confusing plot,1451322481 +9880,136020,feminism,1451320623 +9880,136020,feminist,1451320619 +9880,136020,out of ideas,1451320930 +9880,136020,overtly political,1451320878 +9880,136020,political,1451320883 +9880,136020,product placement,1451320812 +9880,136020,spy,1451320889 +9880,136562,Aaron Sorkin,1450753164 +9880,136562,apple,1450753172 +9880,136562,computers,1450753174 +9880,136562,Danny Boyle,1450753166 +9880,136562,dialogue,1450753152 +9880,136562,invention,1450753181 +9880,136562,Jeff Daniels,1450763799 +9880,136562,Kate Winslet,1450753130 +9880,136562,Katherine Waterston,1450753134 +9880,136562,Makenzie Moss,1450753132 +9880,136562,Michael Fassbender,1450753129 +9880,136562,Seth Rogan,1450763806 +9880,136562,Steve Jobs,1450753177 +9880,138650,confusing,1437791947 +9880,138650,found footage,1437791997 +9880,138650,good acting,1437791970 +9880,138650,good visuals,1437791994 +9880,138650,inaccessible,1437791945 +9880,138650,mental illness,1437792020 +9880,138650,slow,1438210398 +9880,138650,spooky,1437791966 +9880,138702,dog,1440619871 +9880,138702,feminism,1440619851 +9880,138702,feminist,1440619853 +9880,138702,women don't need men,1440619896 +9880,138966,cycling,1437704702 +9880,139644,atmospheric,1450578405 +9880,139644,benicio del toro,1450578345 +9880,139644,cartel,1450578375 +9880,139644,CIA,1450578630 +9880,139644,cinematograpy:roger deakins,1450578367 +9880,139644,dialogue,1450578370 +9880,139644,drug trade,1450578385 +9880,139644,emily blunt,1450578347 +9880,139644,FBI,1450578631 +9880,139644,great sountrack,1450578372 +9880,139644,gritty,1450578411 +9880,139644,honor,1450578461 +9880,139644,organized crime,1450578383 +9880,139644,revenge,1450578463 +9880,139644,tension,1450578358 +9880,139855,cynical,1452455854 +9880,139855,depressing,1452455842 +9880,139855,dull,1452455863 +9880,139855,frustrated,1452455856 +9880,139855,frustrating,1452455858 +9880,139855,infidelity,1452456277 +9880,139855,nihilism,1452455844 +9880,139855,nihilistic,1452455843 +9880,139855,pointless,1452455852 +9880,139855,surreal,1452456321 +9880,140481,Family Guy,1451475306 +9880,140481,parody,1451475304 +9880,140481,Star Wars,1451475302 +9880,140711,absurd,1443037971 +9880,140711,CIA,1443037978 +9880,140711,difficult to follow,1443037970 +9880,140711,not funny,1443037973 +9880,140711,spy,1443037979 +9880,140769,lesbian subtext,1445023370 +9880,140769,lesbians,1445023356 +9880,141000,absurd,1439977819 +9880,141000,manga,1439977817 +9880,141422,absurd,1451382175 +9880,141422,caricature,1451382321 +9880,141422,feminism,1451382142 +9880,141422,feminist,1451382147 +9880,141422,fiction,1451382157 +9880,141422,fictionalization,1451382154 +9880,141422,inaccurate,1451382189 +9880,141422,propaganda,1451382300 +9880,141422,revisionist,1451382195 +9880,141422,revisionist history,1451382192 +9880,141422,unrealistic,1451382328 +9880,142536,authenticity,1451508408 +9880,142536,Bradley Cooper,1451508336 +9880,142536,chef,1451508341 +9880,142536,cooking,1451508378 +9880,142536,cuisine,1451508351 +9880,142536,Daniel Brühl,1451508333 +9880,142536,inspiring,1451508359 +9880,142536,Michelin,1451508356 +9880,142536,redemption,1451508464 +9880,142536,restaurant,1451508343 +9880,142536,Sienna Miller,1451508375 +9880,142536,sobriety,1451508363 +9880,142536,talent,1451508365 +9880,142586,father,1442704794 +9880,142586,pretentious,1442704805 +9880,142586,western,1442704797 +9880,148626,breaking the fourth wall,1452374197 +9880,148626,childish,1452374274 +9880,148626,Christian Bale,1452374292 +9880,148626,heavy-handed,1452374193 +9880,148626,interesting,1452374205 +9880,148626,makes good points,1452374246 +9880,148626,not subtle,1452374195 +9880,148626,political,1452374215 +9880,148626,propaganda,1452374256 +9880,148626,speculation,1452374178 +9880,148626,Steve Carell,1452374294 +9913,1,cute,1337209280 +9913,1,funny,1337209280 +9913,1,story,1337209279 +9913,1,voice acting,1337209280 +9913,1,witty,1337209280 +9913,17,based on a book,1337218735 +9913,17,classic literature,1337218735 +9913,17,fast,1337218735 +9913,17,romantic,1337218735 +9913,28,acting,1337218817 +9913,28,based on a book,1337218817 +9913,28,bland,1337218828 +9913,28,boring,1337218835 +9913,28,classic literature,1337218817 +9913,28,slow,1337218828 +9913,34,cute,1337210014 +9913,34,environmental,1337210014 +9913,34,funny,1337210014 +9913,34,witty,1337210014 +9913,48,dialogue,1338138009 +9913,48,Not according to the truth,1338138009 +9913,48,story,1338138009 +9913,110,acting,1337218555 +9913,110,based on a true story,1337218555 +9913,110,gore,1337218555 +9913,110,patriotic,1337218555 +9913,110,story,1337218555 +9913,150,based on a true story,1337218134 +9913,150,history,1337218134 +9913,150,sexual content,1337218134 +9913,150,suspense,1337218134 +9913,260,acting,1337218207 +9913,260,dialogue,1337218207 +9913,260,script,1337218207 +9913,260,story,1337218208 +9913,261,acting,1337219918 +9913,261,based on a book,1337219918 +9913,261,characters,1337219918 +9913,261,story,1337219918 +9913,356,acting,1337209453 +9913,356,lame,1337209453 +9913,356,sexual content,1337209453 +9913,356,silly,1337209453 +9913,364,animation,1337218334 +9913,364,characters,1337218334 +9913,364,fun,1337218334 +9913,364,music,1337218334 +9913,529,acting,1337219669 +9913,529,based on a true story,1337219669 +9913,529,characters,1337219669 +9913,529,dialogue,1337219669 +9913,529,script,1337219669 +9913,553,acting,1337700867 +9913,553,based on a true story,1337700867 +9913,553,characters,1337700867 +9913,553,dialogue,1337700867 +9913,553,script,1337700867 +9913,589,action,1337219535 +9913,589,adventure,1337219535 +9913,589,characters,1337219535 +9913,589,dialogue,1337219534 +9913,589,foul language,1338139135 +9913,589,nudity,1338139136 +9913,589,script,1337219534 +9913,589,special effects,1337219535 +9913,589,story,1337219542 +9913,594,animation,1337219648 +9913,594,cute,1337219648 +9913,594,funny,1337219648 +9913,594,innocent,1337219648 +9913,594,music,1337219648 +9913,594,romantic,1337219648 +9913,594,simple,1337219648 +9913,594,sweet,1337219648 +9913,595,animation,1337218096 +9913,595,characters,1337218096 +9913,595,story,1337218096 +9913,595,sweet,1337218096 +9913,596,animation,1337219747 +9913,596,characters,1337219747 +9913,596,cute,1337219747 +9913,596,fun,1337219747 +9913,596,music,1337219747 +9913,596,simple,1337219747 +9913,596,story,1337219747 +9913,613,acting,1337209689 +9913,613,actor,1337209689 +9913,613,actress,1337209689 +9913,616,animation,1337218110 +9913,616,cute,1337218110 +9913,616,funny,1337218110 +9913,616,story,1337218110 +9913,736,acting,1337209755 +9913,736,dialogue,1337209755 +9913,736,script,1337209755 +9913,736,story,1337209755 +9913,745,animation,1337219440 +9913,745,funny,1337219440 +9913,745,story,1337219440 +9913,745,witty,1337219440 +9913,780,acting,1337217772 +9913,780,script,1337217772 +9913,838,based on a book,1337208992 +9913,838,funny,1337208992 +9913,838,witty dialogue,1337208991 +9913,914,acting,1337218979 +9913,914,clever,1337218979 +9913,914,dialogue,1337218979 +9913,914,funny,1337218979 +9913,914,music,1337218979 +9913,914,script,1337218979 +9913,914,story,1337218979 +9913,914,witty,1337218979 +9913,919,fun,1337220707 +9913,919,music,1337220707 +9913,920,over the top,1337217899 +9913,923,acting,1337470270 +9913,923,dialogue,1337470270 +9913,923,script,1337470270 +9913,923,story,1337470270 +9913,923,thought provoking,1337470270 +9913,924,cinematography,1337470984 +9913,924,confusing ending,1337470983 +9913,924,dialogue,1337470984 +9913,924,effects,1337470984 +9913,924,music,1337470983 +9913,924,relaxing,1337470984 +9913,924,simple,1337470984 +9913,924,story,1337470984 +9913,953,family bonds,1337208868 +9913,953,funny,1337208868 +9913,953,nostalgic,1337208868 +9913,953,patriotic,1337208868 +9913,954,acting,1337219035 +9913,954,based on truth,1337219035 +9913,954,dialogue,1337219035 +9913,954,patriotic,1337219034 +9913,954,pro american,1337219034 +9913,954,script,1337219035 +9913,973,acting,1337218244 +9913,973,funny,1337218244 +9913,973,patriotic,1337218244 +9913,973,pro american,1337218244 +9913,973,thought provoking,1337218244 +9913,973,witty,1337218244 +9913,1007,acting,1338570529 +9913,1007,dialogue,1338570529 +9913,1007,funny,1338570529 +9913,1007,over the top,1338570529 +9913,1007,script,1338570529 +9913,1007,silly,1338570529 +9913,1013,acting,1337218883 +9913,1013,cute,1337218883 +9913,1013,funny,1337218883 +9913,1013,story,1337218883 +9913,1013,witty,1337218883 +9913,1022,animation,1337218499 +9913,1022,music,1337218499 +9913,1022,romantic,1337218499 +9913,1022,sweet,1337218499 +9913,1023,animation,1337219353 +9913,1023,characters,1337219354 +9913,1023,cute,1337219354 +9913,1023,fun,1337219354 +9913,1023,innocent,1337219353 +9913,1023,music,1337219353 +9913,1023,simple,1337219353 +9913,1023,sweet,1337219353 +9913,1025,animation,1337218642 +9913,1025,characters,1337218642 +9913,1025,cute,1337218642 +9913,1025,funny,1337218642 +9913,1025,music,1337218641 +9913,1028,animation,1337218307 +9913,1028,cute,1337218307 +9913,1028,funny,1337218307 +9913,1028,live action,1337218307 +9913,1028,musical,1337218307 +9913,1028,witty,1337218307 +9913,1029,animation,1337218418 +9913,1029,cute,1337218419 +9913,1029,sweet,1337218418 +9913,1030,acting,1337219774 +9913,1030,action,1337219774 +9913,1030,characters,1337219774 +9913,1030,fun,1337219774 +9913,1030,funny,1337219774 +9913,1030,music,1337219774 +9913,1032,animation,1337218148 +9913,1032,cute,1337218148 +9913,1032,funny,1337218148 +9913,1032,sweet,1337218148 +9913,1036,foul language,1337209303 +9913,1073,acting,1337219378 +9913,1073,characters,1337219378 +9913,1073,dialogue,1337219378 +9913,1073,music,1337219378 +9913,1073,script,1337219378 +9913,1073,story,1337219378 +9913,1097,acting,1337209803 +9913,1097,anti-religious,1337209803 +9913,1097,foul langauage,1337209803 +9913,1097,sexual inuendo,1337209803 +9913,1148,animation,1337219422 +9913,1148,funny,1337219422 +9913,1148,inuendo,1337219421 +9913,1148,story,1337219422 +9913,1148,witty,1337219422 +9913,1196,acting,1337218192 +9913,1196,dialogue,1337218192 +9913,1196,script,1337218192 +9913,1196,story,1337218192 +9913,1198,acting,1337218761 +9913,1198,action,1337218760 +9913,1198,dialogue,1337218760 +9913,1198,script,1337218760 +9913,1198,special effects,1337218761 +9913,1200,acting,1337219326 +9913,1200,action,1337219326 +9913,1200,characters,1337219326 +9913,1200,dialogue,1337219326 +9913,1200,foul language,1337219326 +9913,1200,greedy executive theme,1337219325 +9913,1200,nudity,1337219326 +9913,1200,script,1337219326 +9913,1200,special effects,1337219326 +9913,1200,story,1337219326 +9913,1200,suspense,1337219326 +9913,1201,dialogue,1342307164 +9913,1201,lengthy,1342307164 +9913,1201,music,1342307164 +9913,1201,script,1342307164 +9913,1201,story,1342307164 +9913,1207,acting,1337209247 +9913,1207,actors,1337209247 +9913,1207,actresses,1337209247 +9913,1207,racial tension,1337209247 +9913,1210,acting,1337217843 +9913,1210,dialogue,1337217843 +9913,1210,script,1337217843 +9913,1214,acting,1337219328 +9913,1214,action,1337219327 +9913,1214,characters,1337219328 +9913,1214,dialogue,1337219328 +9913,1214,nudity,1337219327 +9913,1214,script,1337219328 +9913,1214,special effects,1337219328 +9913,1214,story,1337219327 +9913,1214,suspense,1337219328 +9913,1240,action,1337219514 +9913,1240,adventure,1337219514 +9913,1240,Characters with great depth,1337219514 +9913,1240,dialogue,1337219514 +9913,1240,script,1337219514 +9913,1240,special effects,1337219514 +9913,1240,story,1337219514 +9913,1250,over the top,1337209584 +9913,1265,funny,1337217921 +9913,1265,sexual inuendo,1337217921 +9913,1265,sexualilty,1337217920 +9913,1265,witty,1337217921 +9913,1269,acting,1337209180 +9913,1269,Funny,1337209179 +9913,1269,nostalgic,1337209189 +9913,1269,story,1337209179 +9913,1269,witty,1337209180 +9913,1270,incestual content,1337270020 +9913,1270,sexual inuendo,1337209353 +9913,1270,story,1337209353 +9913,1272,foul language,1337218856 +9913,1272,patriotic,1337218856 +9913,1272,pro america,1337218856 +9913,1272,pro military,1337218856 +9913,1282,animation,1337219080 +9913,1282,magical,1337219080 +9913,1282,music,1337219080 +9913,1333,acting,1338310881 +9913,1333,dialogue,1338310881 +9913,1333,environmental,1338310880 +9913,1333,script,1338310881 +9913,1333,sexual inuendo,1338310880 +9913,1333,story,1338310880 +9913,1367,acting,1337269884 +9913,1367,dialogue,1337269884 +9913,1367,fun,1337269884 +9913,1367,funny,1337269884 +9913,1367,script,1337269884 +9913,1376,acting,1342305601 +9913,1376,dialogue,1342305601 +9913,1376,music,1342305601 +9913,1376,over the top,1342305601 +9913,1376,script,1342305601 +9913,1376,story,1342305601 +9913,1387,characters,1337292969 +9913,1387,dialogue,1337292969 +9913,1387,effects,1337292969 +9913,1387,nudity,1337292969 +9913,1387,script fail,1337292969 +9913,1387,sexual content,1337292968 +9913,1387,suspense,1337292969 +9913,1544,actors,1337470398 +9913,1544,actresses,1337470398 +9913,1544,environmental,1337470434 +9913,1544,greedy executive theme,1337470434 +9913,1544,setting,1337470398 +9913,1544,special effects,1337470399 +9913,1544,story,1337470399 +9913,1688,animation,1337219235 +9913,1688,cute,1337219235 +9913,1688,funny,1337219235 +9913,1688,loosely based on a historical event,1337219235 +9913,1688,music,1337219235 +9913,1688,romantic,1337219235 +9913,1688,witty,1337219235 +9913,1792,acting,1337208645 +9913,1792,story,1337208645 +9913,1806,acting,1338311503 +9913,1806,cute,1338311503 +9913,1806,dialogue,1338311503 +9913,1806,funny,1338311503 +9913,1806,script,1338311503 +9913,1806,story,1338311503 +9913,1826,acting,1337301338 +9913,1826,cute,1337301338 +9913,1826,entertaining,1337301338 +9913,1826,funny,1337301338 +9913,1826,music,1337301337 +9913,1848,acting,1339429972 +9913,1848,dialogue,1339429972 +9913,1848,script,1339429972 +9913,1848,story,1339429972 +9913,1907,animation,1337219001 +9913,1907,characters,1337219001 +9913,1907,cultural,1337219001 +9913,1907,cute,1337219001 +9913,1907,funny,1337219001 +9913,1907,witty,1337219001 +9913,1934,acting,1337209218 +9913,1934,Funny,1337209218 +9913,1934,nostalgic,1337209218 +9913,1934,pro america,1337209218 +9913,1934,story,1337209218 +9913,1934,witty,1337209218 +9913,1939,acting,1337219163 +9913,1939,characters,1337219163 +9913,1939,pro american,1337219163 +9913,1939,pro military,1337219163 +9913,1939,story,1337219163 +9913,1939,thought provoking,1337219163 +9913,1994,drug reference,1337217821 +9913,1994,paranormal,1337217821 +9913,2006,acting,1337470319 +9913,2006,dialogue,1337470319 +9913,2006,script,1337470319 +9913,2006,silly,1337470319 +9913,2006,story,1337470319 +9913,2014,acting,1339449142 +9913,2014,cute,1339449142 +9913,2014,dialogue,1339449142 +9913,2014,funny,1339449142 +9913,2014,script,1339449142 +9913,2014,story,1339449142 +9913,2018,innocent,1337209167 +9913,2018,simple,1337209167 +9913,2028,history,1337208702 +9913,2028,patriotic,1337208702 +9913,2028,pro america,1337208703 +9913,2028,sexual inuendo,1337208702 +9913,2034,acting,1338234585 +9913,2034,dialogue,1338234585 +9913,2034,script,1338234585 +9913,2034,silly,1338234585 +9913,2034,story,1338234585 +9913,2054,acting,1337301918 +9913,2054,Characters,1337301918 +9913,2054,dialogue,1337301918 +9913,2054,entertaining,1337301918 +9913,2054,funny,1337301918 +9913,2054,script,1337301918 +9913,2078,animation,1337218384 +9913,2078,characters,1337218384 +9913,2078,cute,1337218384 +9913,2078,musical,1337218384 +9913,2081,animation,1337218319 +9913,2081,cute,1337218319 +9913,2081,funny,1337218319 +9913,2081,music,1337218341 +9913,2083,lame acting,1337209370 +9913,2083,silly,1337209380 +9913,2085,animation,1337218161 +9913,2085,cute,1337218162 +9913,2085,funny,1337218161 +9913,2085,story,1337218161 +9913,2085,sweet,1337218161 +9913,2087,adventure,1337218783 +9913,2087,animation,1337218783 +9913,2087,characters,1337218783 +9913,2087,fun,1337218783 +9913,2087,music,1337218782 +9913,2096,animation,1337218676 +9913,2096,music,1337218676 +9913,2096,sweet,1337218676 +9913,2136,acting,1338300141 +9913,2136,clean,1338300141 +9913,2136,dialogue,1338300141 +9913,2136,family comedy,1338300153 +9913,2136,fun,1338300141 +9913,2136,silly,1338300141 +9913,2136,story,1338300141 +9913,2137,animation,1337218531 +9913,2137,characters,1337218531 +9913,2137,cute,1337218531 +9913,2137,dying animal,1337218531 +9913,2137,music,1337218531 +9913,2137,sad,1337218531 +9913,2137,sweet,1337218531 +9913,2161,dialogue,1338744623 +9913,2161,effects,1338744623 +9913,2161,script,1338744623 +9913,2161,story,1338744623 +9913,2194,acting,1337301030 +9913,2194,foul language,1337301030 +9913,2194,over the top,1337301030 +9913,2194,script,1337301030 +9913,2194,story,1337301030 +9913,2194,violence,1337301030 +9913,2324,family bonds,1337218366 +9913,2324,sad ending,1337218366 +9913,2324,subtitles,1337218366 +9913,2324,witty,1337218366 +9913,2355,animation,1337290134 +9913,2355,characters,1337290135 +9913,2355,cute,1337290135 +9913,2355,fun,1337290134 +9913,2355,funny,1337290134 +9913,2355,voice acting,1337290134 +9913,2355,witty,1337290134 +9913,2384,acting,1338744472 +9913,2384,dark,1338744470 +9913,2384,dialogue,1338744471 +9913,2384,humor,1338744471 +9913,2384,scirpt,1338744470 +9913,2394,animation,1337219721 +9913,2394,based on a true story,1337219721 +9913,2394,characters,1337219721 +9913,2394,family bonds,1337219721 +9913,2394,forgiveness,1337219721 +9913,2394,music,1337219721 +9913,2394,religious,1337219721 +9913,2398,bland,1337217788 +9913,2529,acting,1337217993 +9913,2529,nudity,1337217993 +9913,2529,over the top,1337217993 +9913,2529,script,1337217993 +9913,2565,acting,1337220429 +9913,2565,characters,1337220429 +9913,2565,entertaining,1337220429 +9913,2565,music,1337220429 +9913,2565,story,1337220429 +9913,2571,acting,1337209509 +9913,2571,script,1337209509 +9913,2571,story,1337209509 +9913,2611,acting,1337220670 +9913,2611,based on a book,1337220670 +9913,2611,boring,1337220670 +9913,2611,dialogue,1337220670 +9913,2611,script,1337220670 +9913,2611,slow,1337220670 +9913,2611,story,1337220670 +9913,2628,acting,1337209414 +9913,2628,script,1337209414 +9913,2628,silly,1337209414 +9913,2804,rude,1337217882 +9913,2804,rude kids,1337217882 +9913,2922,acting,1342040914 +9913,2922,dialogue,1342040914 +9913,2922,dramatics,1342040914 +9913,2922,nudity,1342040914 +9913,2922,script,1342040914 +9913,2922,sexuality,1342040914 +9913,2985,acting,1337470205 +9913,2985,dialogue,1337470204 +9913,2985,foul language,1337470204 +9913,2985,over the top,1337470204 +9913,2985,script,1337470205 +9913,2985,story,1337470205 +9913,3088,funny,1337208900 +9913,3088,nostalgic,1337208900 +9913,3088,teaches a lesson,1337208900 +9913,3088,witty,1337208900 +9913,3095,depressing,1337209390 +9913,3114,animation,1337220885 +9913,3114,characters,1337220885 +9913,3114,cute,1337220885 +9913,3114,funny,1337220885 +9913,3114,music,1337220884 +9913,3114,story,1337220885 +9913,3114,voice acting,1337220885 +9913,3250,acting,1338325116 +9913,3250,actors,1338325116 +9913,3250,actresses,1338325116 +9913,3250,based on a true story,1338325115 +9913,3250,dialogue,1338325116 +9913,3250,script,1338325116 +9913,3250,suspense,1338325116 +9913,3471,acting,1337300936 +9913,3471,story,1337300936 +9913,3508,acting,1342113185 +9913,3508,dialogue,1342113185 +9913,3508,indian speeches,1342113200 +9913,3508,nudity,1342113185 +9913,3508,script,1342113185 +9913,3508,sexuality,1342113185 +9913,3508,story,1342113185 +9913,3555,acting,1340060218 +9913,3555,actors,1340060218 +9913,3555,dialogue,1340060218 +9913,3555,made for television feel,1340060428 +9913,3555,movie set,1340060218 +9913,3555,script,1340060218 +9913,3555,story,1340060219 +9913,3555,suspense,1340060219 +9913,3634,over the top,1337209518 +9913,3654,acting,1338320094 +9913,3654,action,1338320094 +9913,3654,actors,1338320094 +9913,3654,actresses,1338320094 +9913,3654,dialogue,1338320094 +9913,3654,over the top,1338320094 +9913,3654,script,1338320094 +9913,3654,story,1338320094 +9913,3751,animation,1337220510 +9913,3751,clever,1337220510 +9913,3751,cute,1337220510 +9913,3751,funny,1337220510 +9913,3751,script,1337220510 +9913,3751,sexual inuendo,1337220510 +9913,3751,story,1337220510 +9913,3751,voice acting,1337220510 +9913,3751,witty,1337220510 +9913,3988,acting,1338515010 +9913,3988,dialogue,1338515010 +9913,3988,script,1338515010 +9913,3988,sexual inuendo,1338515010 +9913,3988,silly,1338515010 +9913,3988,story,1338515010 +9913,4022,acting,1337219141 +9913,4022,characters,1337219141 +9913,4022,dialogue,1337219141 +9913,4022,script,1337219141 +9913,4022,story,1337219141 +9913,4022,thought provoking,1337219141 +9913,4047,based on a true story,1337208955 +9913,4047,historical,1337208956 +9913,4047,patriotic,1337208956 +9913,4142,acting,1337302276 +9913,4142,based on a book,1337302276 +9913,4142,bible,1337302276 +9913,4142,christianity,1337302276 +9913,4142,dialogue,1337302276 +9913,4142,God,1337302276 +9913,4142,Jesus,1337302277 +9913,4142,religion,1337302276 +9913,4142,Salvation,1337302276 +9913,4142,script,1337302276 +9913,4142,storytelling,1337302276 +9913,4232,funny,1337218660 +9913,4232,silly,1337218659 +9913,4232,storytelling,1337218659 +9913,4232,witty,1337218660 +9913,4306,funny,1337209548 +9913,4306,rude humor,1337209548 +9913,4306,sexual inuendo,1337209548 +9913,4306,witty,1337209548 +9913,4406,over the top,1337217965 +9913,4638,acting,1337301292 +9913,4638,actors,1337301292 +9913,4638,actresses,1337301292 +9913,4638,characters,1337301292 +9913,4638,dialogue,1337301292 +9913,4638,script,1337301292 +9913,4638,story,1337301292 +9913,4886,animation,1337220285 +9913,4886,characters,1337220286 +9913,4886,clever,1337220286 +9913,4886,dialogue,1337220286 +9913,4886,funny,1337220285 +9913,4886,script,1337220286 +9913,4886,story,1337220285 +9913,4886,voice acting,1337220285 +9913,4886,witty,1337220285 +9913,4993,acting,1337219857 +9913,4993,based on a book,1337219857 +9913,4993,costume,1337219858 +9913,4993,dialogue,1337219857 +9913,4993,props,1337219858 +9913,4993,script,1337219858 +9913,4993,special effects,1337219858 +9913,4993,story,1337219857 +9913,5010,based on a true story,1337209060 +9913,5010,historical,1337209072 +9913,5010,military,1337209072 +9913,5010,patriotic,1337209061 +9913,5010,sad,1337209060 +9913,5010,suspenseful,1337209061 +9913,5064,acting,1337879864 +9913,5064,based on a book,1337880008 +9913,5064,classic literature,1337880008 +9913,5064,dialogue,1337879863 +9913,5064,script,1337879864 +9913,5064,sexual content,1337880008 +9913,5064,story,1337879864 +9913,5076,acting,1341101773 +9913,5076,based on a book,1341101772 +9913,5076,dilaogue,1341101772 +9913,5076,funny,1341101772 +9913,5076,script,1341101772 +9913,5152,acting,1337208618 +9913,5152,family bonds,1337208369 +9913,5152,patriotic,1337208368 +9913,5152,patriotism,1337208369 +9913,5152,pro america,1337208369 +9913,5152,pro military,1337209124 +9913,5152,true story,1337208618 +9913,5218,bland,1337301176 +9913,5218,character,1337301176 +9913,5218,environmental,1337301176 +9913,5218,funny,1337301176 +9913,5218,inuendo,1337301176 +9913,5218,witty,1337301176 +9913,5378,acting,1337209573 +9913,5378,dialogue,1337209573 +9913,5378,script,1337209573 +9913,5462,acting,1337302135 +9913,5462,dialogue,1337302135 +9913,5462,entertaining,1337302135 +9913,5462,environmental,1337302135 +9913,5462,script,1337302135 +9913,5502,acting,1339169836 +9913,5502,dialogue,1339169836 +9913,5502,family bonds,1339169836 +9913,5502,script,1339169836 +9913,5502,story,1339169836 +9913,5504,acting,1337302552 +9913,5504,characters,1337302552 +9913,5504,dialogue,1337302552 +9913,5504,entertaining,1337302552 +9913,5504,funny,1337302552 +9913,5504,script,1337302552 +9913,5504,story,1337302552 +9913,5793,acting,1339769570 +9913,5793,christian,1339769592 +9913,5793,Christianity,1339769592 +9913,5793,dialogue,1339769570 +9913,5793,God,1339769592 +9913,5793,Jesus,1339769592 +9913,5793,morality,1339769593 +9913,5793,script,1339769570 +9913,5793,story,1339769571 +9913,5832,acting,1337302385 +9913,5832,based on a book,1337302385 +9913,5832,characters,1337302385 +9913,5832,christianity,1337302385 +9913,5832,dialogue,1337302385 +9913,5832,God,1337302385 +9913,5832,Jesus,1337302385 +9913,5832,religion,1337302385 +9913,5832,salvation,1337302385 +9913,5832,script,1337302385 +9913,5832,story,1337302385 +9913,5952,acting,1337219854 +9913,5952,based on a book,1337219854 +9913,5952,costume,1337219854 +9913,5952,dialogue,1337219854 +9913,5952,props,1337219854 +9913,5952,script,1337219854 +9913,5952,special effects,1337219854 +9913,5952,story,1337219854 +9913,5994,acting,1337209923 +9913,5994,actors,1337209922 +9913,5994,actresses,1337209923 +9913,6169,acting,1339284626 +9913,6169,dialogue,1339284625 +9913,6169,script,1339284626 +9913,6169,story,1339284625 +9913,6170,acting,1337218618 +9913,6170,beautiful,1337218617 +9913,6170,cinematic,1337218618 +9913,6170,senses,1337218618 +9913,6186,acting,1338311729 +9913,6186,dialogue,1338311729 +9913,6186,historical,1338311729 +9913,6186,religious,1338311729 +9913,6186,script,1338311729 +9913,6186,story,1338311729 +9913,6186,war,1338311730 +9913,6251,cute,1337302807 +9913,6251,entertaining,1337302807 +9913,6251,fun,1337302807 +9913,6251,innocent,1337302807 +9913,6251,music,1337302807 +9913,6251,simple,1337302807 +9913,6377,animation,1337220198 +9913,6377,characters,1337220198 +9913,6377,cute,1337220198 +9913,6377,family bonds,1337220198 +9913,6377,funny,1337220198 +9913,6377,story,1337220198 +9913,6377,voice acting,1337220198 +9913,6534,action,1337303215 +9913,6534,characters,1337303217 +9913,6534,depth,1337303216 +9913,6534,dialogue,1337303215 +9913,6534,nudity,1337303214 +9913,6534,script,1337303216 +9913,6534,story,1337303214 +9913,6537,action,1339082109 +9913,6537,dialogue,1339082108 +9913,6537,foul language,1339082106 +9913,6537,nudity,1339082108 +9913,6537,religious expletives,1339082106 +9913,6537,script,1339082108 +9913,6537,sexuality,1339082107 +9913,6537,special effects,1339082109 +9913,6537,story,1339082109 +9913,6539,acting,1337471049 +9913,6539,religious expletive,1337471048 +9913,6539,setting,1337471049 +9913,6539,story,1337471049 +9913,6566,acting,1337301513 +9913,6566,dialogue,1337301513 +9913,6566,fun,1337301513 +9913,6566,funny,1337301513 +9913,6566,script,1337301513 +9913,6566,silly,1337301534 +9913,6777,acting,1337219941 +9913,6777,based on history,1337219941 +9913,6777,characters,1337219941 +9913,6777,story,1337219941 +9913,6777,thought provoking,1337219941 +9913,7041,acting,1338489308 +9913,7041,actors,1338489308 +9913,7041,actresses,1338489308 +9913,7041,dialogue,1338489308 +9913,7041,everything,1338489308 +9913,7041,foul language,1338489308 +9913,7041,not funny,1338489308 +9913,7041,script,1338489308 +9913,7041,story,1338489308 +9913,7153,acting,1337219856 +9913,7153,based on a book,1337219856 +9913,7153,costume,1337219856 +9913,7153,dialogue,1337219856 +9913,7153,props,1337219856 +9913,7153,script,1337219856 +9913,7153,special effects,1337219856 +9913,7153,story,1337219856 +9913,7179,acting,1337879968 +9913,7179,based on a book,1337879969 +9913,7179,classic literature,1337879968 +9913,7179,dialogue,1337879968 +9913,7179,script,1337879969 +9913,7179,story,1337879969 +9913,7502,foul language,1337210070 +9913,7502,historical,1337209102 +9913,7502,military,1337209102 +9913,7502,pro american,1337209102 +9913,7502,pro military,1337209102 +9913,7502,sexual content,1337209102 +9913,7502,true story,1337209102 +9913,7669,acting,1337208753 +9913,7669,based on a book,1337208753 +9913,7669,story,1337208753 +9913,7669,witty,1337208753 +9913,7704,action,1337302658 +9913,7704,Characters,1337302658 +9913,7704,dialogue,1337302658 +9913,7704,foul language,1337302658 +9913,7704,patriotic,1337302658 +9913,7704,pro america,1337302658 +9913,7704,pro military,1337302658 +9913,7704,script,1337302658 +9913,7704,story,1337302658 +9913,7704,suspense,1337302658 +9913,7770,acting,1337220058 +9913,7770,action,1337220058 +9913,7770,actors,1337220058 +9913,7770,based on a book,1337220058 +9913,7770,characters,1337220059 +9913,7770,dialogue,1337220058 +9913,7770,script,1337220059 +9913,7770,story,1337220058 +9913,7980,dramatic,1337209592 +9913,8045,anti-american,1337209497 +9913,8045,anti-military,1337209497 +9913,8045,foul language,1337209480 +9913,8045,over the top,1337209472 +9913,8529,acting,1338395025 +9913,8529,dialogue,1338395025 +9913,8529,ending,1338395025 +9913,8529,predictable,1338395025 +9913,8529,script,1338395025 +9913,8529,story,1338395025 +9913,8808,acting,1338319760 +9913,8808,dialogue,1338319760 +9913,8808,script,1338319760 +9913,8808,silly,1338319760 +9913,8808,story,1338319760 +9913,8961,animation,1338515203 +9913,8961,characters,1338515204 +9913,8961,dialogue,1338515203 +9913,8961,family,1338515203 +9913,8961,script,1338515204 +9913,8961,story,1338515203 +9913,8961,voice acting,1338515203 +9913,25834,acting,1337270098 +9913,25834,actors,1337270097 +9913,25834,based on a book,1337270097 +9913,25834,dialogue,1337270097 +9913,25834,script,1337270098 +9913,26403,Animation,1392765060 +9913,26403,Fun,1392765060 +9913,26403,Script,1392765060 +9913,26403,True to Book,1392765060 +9913,26528,acting,1337219191 +9913,26528,based on a book,1337219191 +9913,26528,clever,1337219191 +9913,26528,dialogue,1337219191 +9913,26528,fun,1337219191 +9913,26528,script,1337219191 +9913,26528,story,1337219191 +9913,26528,sweet,1337219191 +9913,26528,witty,1337219191 +9913,30707,sad ending,1337208765 +9913,31116,acting,1337218700 +9913,31116,based on a true story,1337218700 +9913,31116,patriotic,1337218700 +9913,31116,pro american,1337218700 +9913,31116,pro military,1337218700 +9913,31685,acting,1341101532 +9913,31685,dialgoue,1341101531 +9913,31685,foul language,1341101530 +9913,31685,humor,1341101531 +9913,31685,script,1341101531 +9913,31685,sexual inuendo,1341101531 +9913,31685,sexuality,1341101531 +9913,31685,story,1341101531 +9913,31687,characters,1338592729 +9913,31687,cute,1338592729 +9913,31687,innocent,1338592729 +9913,31687,music,1338592729 +9913,31687,simple,1338592729 +9913,31687,story,1338592729 +9913,31700,acting,1341324866 +9913,31700,dialogue,1341324866 +9913,31700,family bonds,1341324867 +9913,31700,friendship,1341324866 +9913,31700,religion,1341324866 +9913,31700,script,1341324866 +9913,31700,story,1341324866 +9913,33493,acting,1337220935 +9913,33493,dark,1337220935 +9913,33493,depressing,1337220935 +9913,33493,dialogue,1337220935 +9913,33493,script,1337220935 +9913,39435,acting,1341262961 +9913,39435,dialogue,1341262961 +9913,39435,humor,1341262962 +9913,39435,script,1341262962 +9913,39435,story,1341262969 +9913,40339,animation,1338514941 +9913,40339,cute,1338514941 +9913,40339,funny,1338514941 +9913,40339,silly,1338514941 +9913,40339,story,1338514941 +9913,40339,voice acting,1338514941 +9913,41566,acting,1337270234 +9913,41566,based on a book,1337270234 +9913,41566,cgi,1337270234 +9913,41566,dialogue,1337270234 +9913,41566,script,1337270234 +9913,41569,acting,1337700848 +9913,41569,actors,1337700848 +9913,41569,actresses,1337700848 +9913,41569,dialogue,1337700848 +9913,41569,script,1337700848 +9913,41569,stroy,1337700848 +9913,43869,cute,1337270708 +9913,43869,fun,1337270708 +9913,43869,funny,1337270708 +9913,43869,greedy executive theme,1337270708 +9913,43869,sweet,1337270708 +9913,43869,witty,1337270708 +9913,45208,acting,1337303291 +9913,45208,dialogue,1337303290 +9913,45208,funny,1337303291 +9913,45208,lame,1337303290 +9913,45208,script,1337303291 +9913,45208,witty,1337303291 +9913,45517,animation,1338407422 +9913,45517,characters,1338407422 +9913,45517,clever,1338407422 +9913,45517,dialogue,1338407422 +9913,45517,funny,1338407422 +9913,45517,lesson,1338407422 +9913,45517,script,1338407422 +9913,45517,story,1338407422 +9913,45517,voice acting,1338407422 +9913,46972,acting,1342307202 +9913,46972,actors,1342307202 +9913,46972,actresses,1342307202 +9913,46972,dialogue,1342307202 +9913,46972,script,1342307202 +9913,46972,story,1342307202 +9913,47642,acting,1339336868 +9913,47642,cute,1339336875 +9913,47642,funny,1339336875 +9913,47642,story,1339336868 +9913,48711,Christianity,1338311205 +9913,48711,dialogue,1338311205 +9913,48711,football,1338311204 +9913,48711,God,1338311205 +9913,48711,Jesus,1338311205 +9913,48711,predictable,1338311204 +9913,48711,religion,1338311205 +9913,48711,salvation,1338311205 +9913,48711,script,1338311205 +9913,48711,sports,1338311204 +9913,48711,story,1338311205 +9913,48783,jumpy,1337209435 +9913,49123,characters,1337292855 +9913,49123,clever,1337292855 +9913,49123,cute,1337292855 +9913,49123,funny,1337292855 +9913,49123,music,1337292855 +9913,49123,sweet,1337292855 +9913,49123,voice acting,1337292855 +9913,49524,acting,1338311014 +9913,49524,based on a true story,1338311012 +9913,49524,Christmas,1338311013 +9913,49524,cinematography,1338311013 +9913,49524,dialogue,1338311012 +9913,49524,God,1338311013 +9913,49524,Jesus,1338311015 +9913,49524,religion,1338311011 +9913,49524,scenery,1338311014 +9913,49524,script,1338311015 +9913,49524,story,1338311011 +9913,49649,acting,1337303080 +9913,49649,based on a book,1337303080 +9913,49649,dialogue,1337303079 +9913,49649,script,1337303080 +9913,49649,story,1337303080 +9913,50872,animation,1337300880 +9913,50872,characters,1337300880 +9913,50872,cute,1337300880 +9913,50872,dialogue,1337300880 +9913,50872,funny,1337300880 +9913,50872,romantic,1337300880 +9913,50872,script,1337300880 +9913,50872,voice acting,1337300880 +9913,53466,acting,1338570263 +9913,53466,dialogue,1338570263 +9913,53466,script,1338570263 +9913,53466,story,1338570263 +9913,55955,acting,1338234372 +9913,55955,dialogue,1338234372 +9913,55955,script,1338234372 +9913,55955,story,1338234372 +9913,58559,acting,1337219119 +9913,58559,action,1337219119 +9913,58559,characters,1337219119 +9913,58559,dark,1337219119 +9913,58559,story,1337219119 +9913,59315,acting,1340661273 +9913,59315,dialogue,1340661273 +9913,59315,script,1340661274 +9913,59315,sexuality,1340661273 +9913,59315,story,1340661273 +9913,59501,acting,1337270217 +9913,59501,based on a book,1337270217 +9913,59501,dialogue,1337270217 +9913,59501,script,1337270217 +9913,59784,acting,1338300003 +9913,59784,animation,1338300003 +9913,59784,characters,1338300003 +9913,59784,clever,1338300003 +9913,59784,cute,1338300003 +9913,59784,funny,1338300003 +9913,59784,story,1338300002 +9913,59784,voice acting,1338300002 +9913,60069,animation,1337218051 +9913,60069,environmental,1337218051 +9913,60069,funny,1337218051 +9913,62376,acting,1337270278 +9913,62376,based on a book,1337270288 +9913,62376,characters,1337270279 +9913,62376,dark,1337270278 +9913,62376,depressing,1337270278 +9913,62376,drab,1337270278 +9913,62376,story,1337270278 +9913,64114,acting,1338311276 +9913,64114,christianity,1338311275 +9913,64114,dialogue,1338311275 +9913,64114,God,1338311276 +9913,64114,Jesus,1338311276 +9913,64114,marriage,1338311276 +9913,64114,predictable,1338311275 +9913,64114,religion,1338311275 +9913,64114,Salvation,1338311275 +9913,64114,script,1338311276 +9913,64114,story,1338311275 +9913,64167,acting,1338300092 +9913,64167,adventure,1338300092 +9913,64167,cgi,1338300092 +9913,64167,dialogue,1338300092 +9913,64167,script,1338300092 +9913,64167,story,1338300091 +9913,64614,foul language,1337208934 +9913,64614,realistic,1337208934 +9913,66097,animation,1337270363 +9913,66097,dark,1337270362 +9913,66097,depressing,1337270362 +9913,66097,sexual content,1337270362 +9913,66097,story,1337270363 +9913,68319,acting,1342113240 +9913,68319,dialgoue,1342113240 +9913,68319,script,1342113240 +9913,68319,story,1342113240 +9913,68954,animation,1337218030 +9913,68954,bland,1337218021 +9913,68954,depressing,1337218021 +9913,70282,acting,1338234237 +9913,70282,dialogue,1338234237 +9913,70282,Funny,1338234332 +9913,70282,revealing clothing,1338234332 +9913,70282,script,1338234237 +9913,70282,sexual content,1338234332 +9913,70305,acting,1338311654 +9913,70305,adventure,1338311655 +9913,70305,dialgoue,1338311654 +9913,70305,exciting,1338311654 +9913,70305,script,1338311654 +9913,70305,story,1338311654 +9913,70336,acting,1338234288 +9913,70336,dialogue,1338234288 +9913,70336,script,1338234288 +9913,70336,special effects,1338234289 +9913,70336,story,1338234288 +9913,70697,animals,1337303324 +9913,70697,bland,1337303324 +9913,70697,dialogue,1337303324 +9913,70697,funny,1337303325 +9913,70697,script,1337303325 +9913,70697,silly,1337303324 +9913,71264,animation,1337270311 +9913,71264,characters,1337270311 +9913,71264,clever,1337270311 +9913,71264,funny,1337270311 +9913,71264,story,1337270311 +9913,71264,voice acting,1337270311 +9913,71264,witty,1337270311 +9913,72294,acting,1337270194 +9913,72294,based on a book,1337270194 +9913,72294,characters,1337270194 +9913,72294,dialogue,1337270194 +9913,72294,script,1337270194 +9913,73017,acting,1340661087 +9913,73017,actor,1340661086 +9913,73017,actresses,1340661086 +9913,73017,dialogue,1340661086 +9913,73017,script,1392647653 +9913,73017,sexuality,1340661086 +9913,73017,silliness,1392647653 +9913,73017,story,1340661135 +9913,74282,acting,1337220457 +9913,74282,based on a book,1337220457 +9913,74282,characters,1337220458 +9913,74282,dialogue,1337220457 +9913,74282,script,1337220458 +9913,74530,acting,1339014668 +9913,74530,dialogue,1339014668 +9913,74530,script,1339014668 +9913,74530,sexualtiy,1339014668 +9913,74530,story,1339014668 +9913,74698,acting,1337301967 +9913,74698,characters,1337301967 +9913,74698,dialogue,1337301967 +9913,74698,entertaining,1337301967 +9913,74698,funny,1337301967 +9913,74698,script,1337301967 +9913,74698,silly,1337301967 +9913,76093,animation,1337219961 +9913,76093,characters,1337219961 +9913,76093,fun,1337219961 +9913,76093,Funny,1337219961 +9913,76093,story,1337219961 +9913,76093,witty,1337219961 +9913,76175,acting,1341253969 +9913,76175,dialogue,1341253969 +9913,76175,fast paced,1341253969 +9913,76175,script,1341253969 +9913,76175,special effects,1341253969 +9913,76175,story,1341253969 +9913,76301,animation,1339093257 +9913,76301,cute,1339093257 +9913,76301,dialogue,1339093257 +9913,76301,funny,1339093257 +9913,76301,jokes script,1339093257 +9913,76301,voice acting,1339093257 +9913,77866,acting,1340721649 +9913,77866,dialogue,1340721649 +9913,77866,nudity,1340721649 +9913,77866,script,1340721649 +9913,77866,sexuality,1340721649 +9913,78499,animation,1337219494 +9913,78499,characters,1337219494 +9913,78499,friendship,1337219494 +9913,78499,funny,1337219494 +9913,78499,sad,1337219493 +9913,78499,story,1337219494 +9913,78499,witty,1337219494 +9913,78499,worn out story,1337219493 +9913,79091,lame,1337635482 +9913,79091,over the top,1337635482 +9913,79091,silly,1337635482 +9913,79572,Acting,1341771034 +9913,79572,Cute,1341771034 +9913,79572,Dialogue,1341771034 +9913,79572,Family,1341771053 +9913,79572,Funny,1341771034 +9913,79572,Script,1341771034 +9913,81564,animation,1337219058 +9913,81564,funny,1337219058 +9913,81564,silly,1337219058 +9913,81564,witty,1337219058 +9913,82169,acting,1337270259 +9913,82169,based on a book,1337270259 +9913,82169,dialogue,1337270259 +9913,82169,script,1337270259 +9913,82169,story,1337270259 +9913,82904,animation,1337700765 +9913,82904,characters,1337700757 +9913,82904,story,1337700757 +9913,84847,modern acting in classic story,1337209672 +9913,85261,animation,1339449284 +9913,85261,dialogue,1339449284 +9913,85261,funny,1339449284 +9913,85261,script,1339449284 +9913,85261,story,1339449284 +9913,85261,voice acting,1339449284 +9913,85316,clever,1337470689 +9913,85316,cute,1337470689 +9913,85316,funny,1337470689 +9913,85316,innocent,1337470689 +9913,85316,script,1337470689 +9913,85316,simple,1337470689 +9913,85316,story,1337470689 +9913,85316,voice acting,1337470689 +9913,85316,witty,1337470689 +9913,85438,acting,1337217952 +9913,85438,bland,1337217952 +9913,85438,fast paced,1337217952 +9913,87308,acting,1337208800 +9913,87308,actors,1337208800 +9913,87308,actresses,1337208800 +9913,87308,based on a book,1337208800 +9913,87308,sexuality,1337208800 +9913,87308,story,1337208800 +9913,87483,acting,1341253839 +9913,87483,dialogue,1341253839 +9913,87483,humor,1341253839 +9913,87483,script,1341253839 +9913,88114,acting,1338138040 +9913,88114,cute,1338138040 +9913,88114,dialogue,1338138040 +9913,88114,funny,1338138053 +9913,88114,happy,1338138052 +9913,88114,story,1338138040 +9913,88140,acting,1338224086 +9913,88140,dialogue,1338224086 +9913,88140,script,1338224086 +9913,88140,special effects,1338224087 +9913,88140,Story,1338224086 +9913,89002,acting,1340924230 +9913,89002,dialogue,1340924230 +9913,89002,family bonds,1340924236 +9913,89002,script,1340924230 +9913,89002,story,1340924230 +9913,90746,animation,1337218078 +9913,90746,characters,1337218078 +9913,90746,fast paced,1337218078 +9913,90746,story,1337218078 +9913,90945,acting,1337700736 +9913,90945,actors,1337700736 +9913,90945,actresses,1337700736 +9913,90945,dialogue,1337700736 +9913,90945,script,1337700736 +9913,90945,sherlock holmes,1337700736 +9913,90945,story,1337700736 +9913,91286,Acting,1339429724 +9913,91286,Cute,1339429724 +9913,91286,Dialogue,1339429724 +9913,91286,Funny,1339429724 +9913,91286,Script,1339429724 +9913,91286,Sweet,1339429724 +9913,91542,acting,1340661165 +9913,91542,dialogue,1340661165 +9913,91542,script,1340661165 +9913,91542,story,1340661165 +9913,91634,action,1337218407 +9913,91634,patriotic,1337218407 +9913,91634,pro american,1337218407 +9913,91634,pro military,1337218407 +9913,91653,acting,1340924196 +9913,91653,actors,1340924195 +9913,91653,actresses,1340924195 +9913,91653,family bonds,1340924250 +9913,91653,script,1340924196 +9913,91653,story,1340924196 +9913,92490,animation,1337292802 +9913,92490,characters,1337292802 +9913,92490,girl movie,1337292802 +9913,92490,innocent,1337292802 +9913,92490,music,1337292802 +9913,93132,acting,1339082595 +9913,93132,dialogue,1339082595 +9913,93132,family,1339082595 +9913,93132,feel good,1339082596 +9913,93132,long,1339082595 +9913,93132,predictable ending,1339082595 +9913,93132,scenery,1339082596 +9913,93132,script,1339082595 +9913,93132,story,1339082595 +9913,93265,acting,1337218498 +9913,93265,christian,1337218498 +9913,93265,christianity,1338311222 +9913,93265,lesson,1337218498 +9913,93265,predictable,1337218498 +9913,93265,sad,1337218498 +9913,93265,stereotypes,1337218498 +9913,93265,story,1337218498 +9913,93267,acting,1338311336 +9913,93267,chrisitanity,1338311335 +9913,93267,dialgoue,1338311335 +9913,93267,God,1338311336 +9913,93267,Jesus,1338311336 +9913,93267,predictable,1338311335 +9913,93267,religion,1338311335 +9913,93267,salvation,1338311335 +9913,93267,script,1338311336 +9913,93267,slow paced,1338311335 +9913,93297,acting,1340661233 +9913,93297,action,1340661233 +9913,93297,dialogue,1340661233 +9913,93297,patriotic,1340661233 +9913,93297,pro military,1340661233 +9913,93297,script,1340661233 +9913,93297,special effects,1340661233 +9913,93297,story,1340661233 +9913,93297,suspense,1340661233 +9913,95313,animation,1341325033 +9913,95313,clever,1341325033 +9913,95313,dialogue,1341325033 +9913,95313,humor,1341325033 +9913,95313,script,1341325033 +9913,95313,story,1341325033 +9913,95313,voice acting,1341325032 +9913,95313,witty,1341325033 +9913,97836,Acting,1381770535 +9913,97836,Clean,1381770500 +9913,97836,Dialogue,1381770546 +9913,97836,Family,1381770520 +9913,97836,inspirational,1381770473 +9913,97836,prayer,1381770484 +9913,97836,Script,1381770550 +9913,98809,Acting,1392765177 +9913,98809,Bilbo,1392765177 +9913,98809,Dialogue,1392765177 +9913,98809,Not True to Book,1392765177 +9913,98809,Script,1392765177 +9913,98809,Story,1392765177 +9913,98809,Visual Appeal,1392765177 +9913,99910,Acting,1392412712 +9913,99910,Action,1392412712 +9913,99910,Blood Splatters,1392412712 +9913,99910,Dialogue,1392412712 +9913,99910,Script,1392412712 +9913,104879,Acting,1392412542 +9913,104879,Atmosphere,1392412543 +9913,104879,Cinematography,1392412542 +9913,104879,Dialogue,1392412543 +9913,104879,Far Fetched,1392412542 +9913,104879,Holes in the Plot,1392412542 +9913,104879,Music,1392412542 +9913,104879,Story,1392412542 +9913,104879,Swearing,1392412542 +9913,105563,Clean,1381791553 +9913,105563,Family Friendly,1381791567 +9913,105563,Friendship,1381791577 +9913,105563,Funny Moments,1381791636 +9913,105563,Inspirational,1381791545 +9913,106487,acting,1399986859 +9913,106487,dialogue,1399986859 +9913,106487,silly,1399986859 +9913,106487,special effects,1399986859 +9913,106487,teen movie,1399986859 +9913,106489,Acting,1399633473 +9913,106489,Dialogue,1399633474 +9913,106489,Not True to the Book,1399633474 +9913,106489,Too Much CGI,1399633474 +9913,106696,Animation,1402097125 +9913,106696,Awful story,1402097167 +9913,106696,Characters],1402097177 +9913,106696,Dialogue,1402097141 +9913,106696,No emotional attachment,1402097160 +9913,106696,Script,1402097134 +9913,106696,Too fast,1402097145 +9913,108932,Computer Animation,1406302160 +9913,108932,Dialogue,1406302150 +9913,108932,Script,1406302149 +9913,108932,Too fast,1406302149 +9913,108945,Acting,1410722445 +9913,108945,Dialogue,1410722445 +9913,108945,Religious Profanity,1410722448 +9913,108945,Story,1410722445 +9913,108945,Too Much CGI,1410722447 +9913,110102,Acting,1410612525 +9913,110102,Action,1410612525 +9913,110102,Dialogue,1410612525 +9913,110102,Sruprises,1410612525 +9913,110102,Story,1410612525 +9913,110603,Acting,1410571828 +9913,110603,Believability,1410571828 +9913,110603,Clear Salvation Message,1410571828 +9913,110603,Dialogue,1410571828 +9913,110603,Respectful of Christianity,1410571828 +9913,110603,Surprise Ending,1410571828 +9915,260,dumb kid,1440052514 +9915,260,no protagonist,1440052545 +9941,2959,violent,1430042930 +9941,6534,marvel,1430042971 +9941,41571,"japan,geisha",1430042781 +9970,6341,bitch,1284115823 +9970,7578,Claudette Colbert,1282479626 +9970,7578,Don Ameche,1282480285 +9970,7669,not a movie,1282634461 +9970,8712,Irene Dunne,1282479629 +9970,25837,Myrna Loy,1282479720 +9970,25837,William Powell,1282479720 +9970,25944,Gene Kelly,1282479830 +9970,25944,Judy Garland,1282479830 +9970,31349,Veronica Lake,1282479877 +9970,31747,Jami Gertz,1282480124 +9970,31747,Shelley Long,1282480124 +9970,31747,Steve Guttenberg,1282480124 +9970,31878,Hong Kong,1282479624 +9970,32153,hedgehog,1282480206 +9970,32153,mice,1282480206 +9970,44900,Pamela Tola,1282480045 +9970,44900,Samuli Vauramo,1282480045 +9970,46409,Katharine Hepburn,1282479758 +9970,46409,Lucille Ball,1282479758 +9970,46409,Spencer Tracy,1282479758 +9970,70521,distasteful,1282479918 +9970,74508,jane austen,1282480015 +9979,293,French,1438864416 +9979,293,imdb top 250,1438864425 +9979,293,Jean Reno,1438864408 +9979,293,Luc Besson,1438864404 +9979,904,Alfred Hitchcock,1439041406 +9979,904,imdb top 250,1439041415 +9979,5628,action,1438864302 +9979,5628,french,1438864292 +9987,541,action,1381126595 +9987,541,atmospheric,1381126387 +9987,541,based on a book,1381126592 +9987,541,cult film,1381126589 +9987,541,cyberpunk,1381126368 +9987,541,dreamlike,1381126591 +9987,541,dystopia,1381126374 +9987,541,Harrison Ford,1381126586 +9987,541,philosophical,1381126579 +9987,541,robots,1381126577 +9987,541,sci-fi,1381126378 +9987,541,stylized,1381126581 +9987,4878,atmospheric,1381126695 +9987,4878,cult film,1381126693 +9987,4878,mental illness,1381126692 +9987,4878,quirky,1381126707 +9987,4878,satire,1381126709 +9987,4878,surreal,1381126696 +9987,4878,thought-provoking,1381126705 +9987,4878,time travel,1381126702 +9987,4878,twist ending,1381126700 +10013,198,alcohol consume,1228551756 +10013,198,cyberpunk,1228551692 +10013,198,Futuristmovies.com,1228551817 +10013,198,New Year 1999,1228551792 +10013,198,Nudity (Topless),1228551695 +10013,198,sci-fi,1228551687 +10013,198,smoking,1228551764 +10013,198,virtual reality,1228551833 +10013,1270,sci-fi,1228547829 +10013,1270,time travel,1228547824 +10013,7361,Jim Carrey,1228548244 +10013,7361,Saturn Award (Best Science Fiction Film),1228548229 +10013,7361,sci-fi,1228548215 +10013,7361,surrealism,1228548222 +10013,7361,Vergiss mein Nicht (German title),1195858847 +10020,296,stylish,1424734222 +10020,296,tarantino,1424734222 +10020,296,violent,1424734222 +10038,260,futuristic,1440234110 +10038,260,Trendsetter,1440234103 +10038,48304,gory,1440339096 +10038,48304,Not my type of movie,1440339086 +10038,48304,violent,1440339105 +10064,1209,atmospheric,1385299649 +10064,103235,ending,1376427051 +10064,103235,Geoffrey Rush,1376427027 +10064,103235,story,1376427057 +10088,296,classic,1378770229 +10088,296,cult film,1378770231 +10088,296,dark,1378770233 +10088,296,dark comedy,1378770226 +10088,296,entirely dialogue,1378770237 +10088,296,multiple storylines,1378770223 +10088,296,Quentin Tarantino,1378770215 +10088,296,stylized,1378770221 +10088,1059,Baz Luhrmann,1378771304 +10088,1059,Claire Danes,1378771272 +10088,1059,great soundtrack,1378771293 +10088,1059,Leonardo DiCaprio,1378771274 +10088,1059,shakespeare,1378771271 +10088,1059,updated classics,1378771282 +10088,4226,black and white,1378745424 +10088,4226,complicated,1378745476 +10088,4226,complicated plot,1378745426 +10088,4226,dark,1378745428 +10088,4226,death,1378745466 +10088,4226,great ending,1378745430 +10088,4226,gritty,1378745432 +10088,4226,investigation,1378745463 +10088,4226,memory,1378745459 +10088,4226,Mindfuck,1378745412 +10088,4226,mystery,1378745457 +10088,4226,narrated,1378745454 +10088,4226,nonlinear,1378745419 +10088,4226,plot twist,1378745450 +10088,4226,psychological,1378745402 +10088,4226,revenge,1378745448 +10088,4226,stylized,1378745406 +10088,4226,tense,1378745403 +10088,4226,twist ending,1378745400 +10088,4226,violence,1378745438 +10088,5598,childhood fav,1378773160 +10088,5598,martial arts,1378773160 +10088,8533,sappy love story,1378768692 +10088,8730,honor,1378774106 +10088,8730,integrity,1378774106 +10088,8730,prisoners of war,1378774106 +10088,8730,sacrifice,1378774106 +10088,8730,war,1378774106 +10088,31807,Twisted Ending,1378571962 +10088,34162,Vince Vaughn,1378775825 +10088,89102,data,1378585609 +10088,92008,bad acting,1378587509 +10088,95558,child's perspective,1378396737 +10088,95558,great acting,1378396723 +10088,95558,Strange,1378396752 +10088,95558,surreal,1378396756 +10088,97984,surreal,1378775606 +10088,102194,coming of age,1378795443 +10088,102194,fugitive,1378795438 +10088,102194,Jeff Nichols,1378795432 +10088,102194,Michael Shannon,1378795449 +10088,102194,pace,1378795453 +10088,102407,adapted from:book,1380300702 +10088,102407,anachronistic music,1380300743 +10088,102407,Carey Mulligan,1380300719 +10088,102407,Leonardo DiCaprio,1380300717 +10088,102407,stylized,1380300726 +10088,102407,Tobey Maguire,1380300720 +10088,105213,pornography's influence,1390895015 +10109,1,time travel,1193314098 +10119,720,british english,1427547474 +10119,1293,history,1427547445 +10119,1356,space,1427547354 +10119,77561,robotics,1427547525 +10155,260,space epic,1437885142 +10155,356,adventure,1437885704 +10155,356,drama,1437885704 +10155,356,heartwarming,1437885704 +10158,260,sci-fi,1436193018 +10158,260,space opera,1436193024 +10158,356,drama,1436193138 +10158,356,underdog,1436193138 +10158,356,uplifting,1436193138 +10163,110,historical,1435703578 +10163,110,Medieval,1435703581 +10163,110,Scotland,1435703587 +10163,110,sword fight,1435703594 +10163,3578,history,1435703547 +10163,3578,Rome,1435703543 +10163,4993,fantasy,1435703504 +10163,4993,music,1435703520 +10190,260,Science Fiction,1434626144 +10192,1653,natural vs. artificial enhancement,1137370719 +10193,260,classic sci-fi,1442111948 +10193,260,EPIC,1442111960 +10202,112171,action,1422000104 +10202,112171,as bad as the title,1422000104 +10202,112171,straight forward,1422000104 +10211,47,atmospheric,1447069183 +10211,47,disturbing,1447069185 +10211,47,investigation,1447069177 +10211,47,philosophical,1447069190 +10211,47,powerful ending,1447069197 +10211,47,psychology,1447069171 +10211,47,serial killer,1447069164 +10217,22,suspenseful,1368722111 +10217,32,complicated plot,1368722562 +10217,32,great ending,1368722167 +10217,32,time loop,1368722603 +10217,47,atmospheric,1330518015 +10217,47,Brad Pitt,1330517977 +10217,47,crime,1330518001 +10217,47,David Fincher,1363801480 +10217,47,great ending,1368722167 +10217,47,horror,1330518023 +10217,47,imdb top 250,1330518018 +10217,47,Kevin Spacey,1330517981 +10217,47,Morgan Freeman,1330517985 +10217,47,philosophical,1330518009 +10217,47,powerful ending,1330517996 +10217,47,psychology,1330517992 +10217,47,religion,1330517990 +10217,47,serial killer,1330517994 +10217,47,twist ending,1330517988 +10217,47,violent,1330518006 +10217,50,Benicio Del Toro,1360512523 +10217,50,complicated,1360512509 +10217,50,complicated plot,1368722562 +10217,50,conspiracy,1360512506 +10217,50,Kevin Spacey,1360512498 +10217,50,Oscar (Best Supporting Actor),1360512519 +10217,50,suspense,1360512504 +10217,50,twist ending,1360512502 +10217,58,beautifully filmed,1368722415 +10217,147,drug addiction,1368722313 +10217,194,independent film,1368722258 +10217,223,independent film,1368722258 +10217,296,action,1356148171 +10217,296,atmospheric,1356148168 +10217,296,Bruce Willis,1356148159 +10217,296,classic,1356148166 +10217,296,cult film,1356148162 +10217,296,John Travolta,1356148217 +10217,296,multiple storylines,1356148155 +10217,296,nonlinear,1356148147 +10217,296,organized crime,1356148145 +10217,296,Quentin Tarantino,1356148126 +10217,296,Samuel L. Jackson,1356148130 +10217,296,stylized,1356148132 +10217,296,Uma Thurman,1356148185 +10217,296,violence,1356148136 +10217,296,You know what they call a Quarter Pounder with cheese in France?,1356148139 +10217,308,poland,1368722526 +10217,316,science fiction,1368722353 +10217,432,treasure hunt,1368722439 +10217,541,atmospheric,1360512354 +10217,541,classic,1360512387 +10217,541,cyberpunk,1360512349 +10217,541,director's cut,1360512418 +10217,541,dystopia,1360512356 +10217,541,futuristic,1360512381 +10217,541,genetics,1360512383 +10217,541,Harrison Ford,1360512368 +10217,541,philosophical,1360512372 +10217,541,sci-fi,1360512374 +10217,541,stylized,1360512377 +10217,589,action,1356148248 +10217,589,artificial intelligence,1356148301 +10217,589,James Cameron,1356148271 +10217,589,sci-fi,1356148251 +10217,589,Suspense,1356148255 +10217,589,time travel,1356148253 +10217,589,violence,1356148283 +10217,592,super hero,1368722476 +10217,593,Anthony Hopkins,1357732138 +10217,593,cannibalism,1357732140 +10217,593,classic,1357732168 +10217,593,Hannibal Lecter,1357732142 +10217,593,Jodie Foster,1357732144 +10217,593,mental illness,1357732163 +10217,593,psychology,1357732149 +10217,593,serial killer,1357732152 +10217,593,suspense,1357732159 +10217,858,Al Pacino,1377111020 +10217,858,atmospheric,1377111042 +10217,858,classic,1377111023 +10217,858,Mafia,1377111025 +10217,1172,bittersweet,1356909568 +10217,1172,childhood,1356909571 +10217,1172,Giuseppe Tornatore,1356909584 +10217,1172,heartwarming,1356909574 +10217,1172,nostalgic,1356909578 +10217,1172,small town,1356909582 +10217,1198,treasure hunt,1368722439 +10217,1199,weird,1368722458 +10217,1201,treasure hunt,1368722439 +10217,1211,atmospheric,1355842889 +10217,1211,Berlin,1355842883 +10217,1211,boring,1355842878 +10217,1219,suspenseful,1368722112 +10217,1228,atmospheric,1361233243 +10217,1228,Robert De Niro,1361233238 +10217,1245,atmospheric,1361136489 +10217,1245,Caspar's son,1361136458 +10217,1245,Coen Brothers,1361136405 +10217,1245,crime,1361136419 +10217,1245,dark comedy,1361136478 +10217,1245,Film Noir,1361136421 +10217,1245,funny,1361136485 +10217,1245,gangsters,1361136400 +10217,1245,John Turturro,1361136423 +10217,1245,Steve Buscemi,1361136444 +10217,1245,stylized,1361136481 +10217,1245,twists & turns,1361136394 +10217,1252,atmospheric,1364581469 +10217,1252,Film Noir,1364581467 +10217,1252,Jack Nicholson,1364581458 +10217,1252,mystery,1364581471 +10217,1252,Roman Polanski,1364581460 +10217,1252,twists & turns,1364581476 +10217,1270,time loop,1368722603 +10217,1291,treasure hunt,1368722439 +10217,1356,science fiction,1368722353 +10217,1387,suspenseful,1368722112 +10217,1584,science fiction,1368722353 +10217,1591,super hero,1368722476 +10217,1617,complicated plot,1368722562 +10217,1623,horror,1368722580 +10217,1653,science fiction,1368722353 +10217,1721,atmospheric,1367875562 +10217,1721,bittersweet,1367875568 +10217,1721,historical,1367875583 +10217,1721,James Cameron,1367875555 +10217,1721,Leonardo DiCaprio,1367875534 +10217,1721,music,1367875603 +10217,1721,romance,1367875541 +10217,1732,Coen Brothers,1356740661 +10217,1732,dark comedy,1356740664 +10217,1732,great soundtrack,1356740679 +10217,1732,Jeff Bridges,1356740714 +10217,1732,Philip Seymour Hoffman,1356740671 +10217,1732,the dude,1356740692 +10217,1805,90s atmosphere,1355858802 +10217,1805,lesbian sex scene,1355858757 +10217,1805,Nudity (Topless - Notable),1355858747 +10217,1805,plot twist,1355858761 +10217,1805,surprise ending,1355858777 +10217,1831,science fiction,1368722352 +10217,1873,changed the book TOO much,1365119340 +10217,1873,Geoffrey Rush,1365119352 +10217,1873,Liam Neeson,1365119345 +10217,1991,horror,1368722580 +10217,2011,time loop,1368722603 +10217,2085,Classic,1330472214 +10217,2085,Disney,1330472197 +10217,2115,treasure hunt,1368722439 +10217,2186,Alfred Hitchcock,1363045242 +10217,2186,great concept,1363045244 +10217,2291,beautifully filmed,1368722415 +10217,2315,horror,1368722580 +10217,2348,drug addiction,1368722313 +10217,2403,action,1358339896 +10217,2403,bad acting,1358339922 +10217,2403,classic,1358339940 +10217,2403,memories,1358339938 +10217,2403,no reason for what is happening,1358339911 +10217,2403,script,1358339914 +10217,2403,small town,1358339933 +10217,2460,horror,1368722580 +10217,2530,"""damn dirty apes""",1355842649 +10217,2530,WTF? horrible sequel and storyboard,1355842652 +10217,2541,Femme Fatale,1366445589 +10217,2541,high school,1366445591 +10217,2541,Mind Games,1366445613 +10217,2541,Sarah Michelle Gellar,1366445598 +10217,2579,atmospherically beautiful,1360512556 +10217,2579,Christopher Nolan,1360512541 +10217,2579,directorial debut,1360512551 +10217,2579,noir,1360512569 +10217,2579,Twist Ending,1360512579 +10217,2600,Action,1361233329 +10217,2600,alternate reality,1361233303 +10217,2600,mindfuck,1361233299 +10217,2640,super hero,1368722476 +10217,2640,superheroes,1368722391 +10217,2686,beautifully filmed,1368722415 +10217,2692,alternate endings,1330518073 +10217,2692,animation,1330518137 +10217,2692,artistic,1330518100 +10217,2692,imdb top 250,1330518103 +10217,2692,nonlinear,1330518119 +10217,2692,time loop,1330518113 +10217,2723,super hero,1368722476 +10217,2723,superheroes,1368722391 +10217,2762,Atmospheric,1330517677 +10217,2762,Bruce Willis,1330517641 +10217,2762,Drama,1330517647 +10217,2762,ghosts,1330517653 +10217,2762,great ending,1368722167 +10217,2762,M. Night Shyamalan,1330517689 +10217,2762,mindfuck,1330517660 +10217,2762,psychological,1330517665 +10217,2762,suspense,1330517667 +10217,2762,twist ending,1330517669 +10217,2916,science fiction,1368722353 +10217,3018,horror,1368722580 +10217,3114,Pixar,1361697091 +10217,3267,directorial debut,1355859701 +10217,3267,low budget,1355859695 +10217,3267,Robert Rodriguez,1355859692 +10217,3476,psychological,1368722544 +10217,3702,the plot made no sense,1359421827 +10217,3949,atmospheric,1330517876 +10217,3949,based on a book,1330517880 +10217,3949,dark,1330517882 +10217,3949,imdb top 250,1330517925 +10217,3949,independent film,1330517920 +10217,3949,loneliness,1330517897 +10217,3949,psychology,1330517903 +10217,3949,revenge,1330517908 +10217,3967,coming of age,1367866845 +10217,3967,england,1367866854 +10217,3967,working class,1367866857 +10217,3983,independent film,1368722258 +10217,3994,Bruce Willis,1352658660 +10217,3994,father-son relationship,1352658677 +10217,3994,M. Night Shyamalan,1352658656 +10217,3994,mindfuck,1352658670 +10217,3994,Samuel L. Jackson,1352658653 +10217,3994,twist ending,1352658650 +10217,4011,boxing,1330518664 +10217,4011,Brad Pitt,1330518633 +10217,4011,british,1330518638 +10217,4011,complicated plot,1368722562 +10217,4011,dark comedy,1330518640 +10217,4011,funny,1330518671 +10217,4011,Guy Ritchie,1330518642 +10217,4011,Jason Statham,1330518646 +10217,4011,multiple storylines,1330518655 +10217,4011,narrated,1330518682 +10217,4011,stylized,1330518659 +10217,4011,twist ending,1330518649 +10217,4226,complicated,1360512489 +10217,4226,complicated plot,1368722562 +10217,4226,memory,1360512473 +10217,4226,nonlinear,1360512482 +10217,4226,psychological,1360512478 +10217,4226,twist ending,1360512484 +10217,4239,drug addiction,1368722313 +10217,4506,Atmosphere,1355858582 +10217,4506,Ennio Morricone,1355858618 +10217,4506,kidnapping,1355858597 +10217,4506,Paris,1355858614 +10217,4506,Roman Polanski,1355858586 +10217,4720,atmospheric,1356983001 +10217,4720,twist ending,1356982997 +10217,4725,horror,1368722580 +10217,4878,atmospheric,1360512461 +10217,4878,cult film,1360512459 +10217,4878,psychology,1360512452 +10217,4878,thought-provoking,1360512454 +10217,4878,time loop,1368722603 +10217,4878,time travel,1360512456 +10217,4878,weird,1368722458 +10217,4881,Billy Bob Thornton,1364581394 +10217,4881,Coen Brothers,1364581398 +10217,4881,great cinematography,1364581400 +10217,4881,Scarlett Johansson,1364581418 +10217,4901,secrets,1368722503 +10217,4993,Action,1356217884 +10217,4993,adventure,1356217882 +10217,4993,atmospheric,1356217879 +10217,4993,based on a book,1356217866 +10217,4993,beautifully filmed,1356217837 +10217,4993,fantasy,1356217864 +10217,4993,too long,1356217846 +10217,5266,suspenseful,1368722111 +10217,5349,superheroes,1368722391 +10217,5388,psychological,1368722544 +10217,5418,secrets,1368722504 +10217,5445,time loop,1368722603 +10217,5608,german movie,1355858852 +10217,5608,prison,1355858846 +10217,5608,psychological,1355858841 +10217,5608,thought-provoking,1355858844 +10217,5630,Anthony Hopkins,1355858647 +10217,5630,Edward Norton,1355858645 +10217,5630,Hannibal Lecter,1355858663 +10217,5630,Harvey Keitel,1355858668 +10217,5630,psychology,1355858683 +10217,5630,serial killer,1355858681 +10217,5945,loneliness,1368722198 +10217,5992,based on a book,1356147577 +10217,5992,girlie movie,1356147564 +10217,5992,Meryl Streep,1356147543 +10217,5992,Nicole Kidman,1356147545 +10217,5992,suicide,1356147553 +10217,5992,Virginia Woolf,1356147549 +10217,5995,historical,1330517738 +10217,5995,imdb top 250,1330517755 +10217,5995,music,1330517743 +10217,5995,Nazis,1330517740 +10217,5995,Poland,1330517763 +10217,5995,Roman Polanski,1330517747 +10217,5995,true story,1330517768 +10217,5995,World War II,1330517751 +10217,6440,Coen Brothers,1407014908 +10217,6539,treasure hunt,1368722439 +10217,6709,Antonio Banderas,1355860024 +10217,6709,Danny Trejo,1355860028 +10217,6709,gunfights,1355860046 +10217,6709,Johnny Depp,1355860026 +10217,6709,Robert Rodriguez,1355860031 +10217,6709,Salma Hayek,1355860033 +10217,6711,Bill Murray,1357174047 +10217,6711,Scarlett Johansson,1357174050 +10217,6867,independent film,1368722258 +10217,6870,Clint Eastwood,1330518723 +10217,6870,kidnapping,1330518751 +10217,6870,mystery,1330518735 +10217,6870,revenge,1330518755 +10217,6870,Sean Penn,1330518739 +10217,6870,twist ending,1330518741 +10217,6870,working class,1330518744 +10217,6946,looney tunes,1367200375 +10217,6946,steve martin,1367200361 +10217,7022,Japan,1355842322 +10217,7254,psychological,1368722544 +10217,7458,big budget,1355842573 +10217,7458,Brad Pitt,1355842540 +10217,7458,director's cut,1355842584 +10217,7458,Epic,1355842543 +10217,7458,historical epic,1355842554 +10217,7458,Peter O'Toole,1355842565 +10217,8361,Environment,1355842697 +10217,8361,Jake Gyllenhaal,1355842689 +10217,8361,New York City,1355842688 +10217,8361,Post apocalyptic,1355842681 +10217,8361,sci-fi,1355842684 +10217,8533,predictable,1367875407 +10217,8533,Rachel McAdams,1367875411 +10217,8533,Ryan Gosling,1367875429 +10217,8533,sad,1367875433 +10217,8636,superheroes,1368722391 +10217,8645,drug addiction,1368722314 +10217,8784,independent film,1368722258 +10217,8914,a good waste of 1 hour,1355841922 +10217,8914,Complicated,1355841959 +10217,8914,complicated plot,1355841972 +10217,8914,uncomprehensive screenplay and plot,1355841928 +10217,8950,atmospheric,1330818725 +10217,8950,dark,1352658740 +10217,8950,Mafia,1330818757 +10217,8950,memory,1330818753 +10217,8950,twist ending,1330818750 +10217,8957,psychological,1368722544 +10217,8958,drug addiction,1368722313 +10217,8972,adventure,1355857583 +10217,8972,Diane Kruger,1355857580 +10217,8972,surprisingly good,1355857576 +10217,8972,treasure hunt,1355857573 +10217,8983,beautifully filmed,1368722415 +10217,9010,beautiful color,1356652260 +10217,9010,excellent cinematography,1356652239 +10217,9010,French,1356652267 +10217,9010,Marion Cotillard,1356652229 +10217,9010,Nudity (Topless - Notable),1356652273 +10217,9010,romance,1356652271 +10217,26340,Rene Goscinny,1356197919 +10217,27773,based on comic,1330517573 +10217,27773,great soundtrack,1330517567 +10217,27773,imdb top 250,1330517527 +10217,27773,Korean,1330517531 +10217,27773,Nudity (Full Frontal),1330517559 +10217,27773,revenge,1330517556 +10217,27773,trilogy,1330517598 +10217,27773,twist ending,1330517554 +10217,27773,violent,1330517551 +10217,33794,atmospheric,1330518373 +10217,33794,batman,1330518368 +10217,33794,Christian Bale,1330518370 +10217,33794,Michael Caine,1330518385 +10217,33794,super hero,1368722476 +10217,33903,interesting concept,1355858893 +10217,33903,politics,1355858895 +10217,33903,revolution,1355858897 +10217,34405,based on a TV show,1367707508 +10217,34405,black comedy,1367707513 +10217,34405,cult film,1367707496 +10217,34405,dystopia,1367707495 +10217,34405,ensemble cast,1367707501 +10217,34405,sci-fi,1367707488 +10217,37731,Bubbles,1355859511 +10217,37731,charlie hunnam,1355859479 +10217,37731,Elijah Wood,1355859454 +10217,37731,extremely violent,1355859474 +10217,37731,football,1355859482 +10217,37731,soccer,1355859524 +10217,37731,West Ham,1355859489 +10217,38061,clever,1355857956 +10217,38061,Film Noir,1355857933 +10217,38061,Robert Downey Jr.,1355857953 +10217,38061,val kilmer,1355857951 +10217,43376,simple,1355858921 +10217,44199,anticlimax,1355858189 +10217,44199,bank robbery,1355858197 +10217,44199,Clive Owen,1355858191 +10217,44199,Denzel Washington,1355858194 +10217,45447,book is better,1355842370 +10217,45447,conspiracy theory,1355842365 +10217,45447,Mystery,1355842355 +10217,45447,Paris,1355842359 +10217,45499,super hero,1368722476 +10217,45499,superheroes,1368722391 +10217,46578,independent film,1368722258 +10217,48738,Forest Whitaker,1355859027 +10217,48774,alone in the world,1368722626 +10217,48780,atmospheric,1330518209 +10217,48780,Christian Bale,1330518266 +10217,48780,Christopher Nolan,1363801447 +10217,48780,complicated,1330518223 +10217,48780,dark,1330518220 +10217,48780,magic,1330518217 +10217,48780,mystery,1330518248 +10217,48780,nonlinear,1330518226 +10217,48780,revenge,1330518257 +10217,48780,Scarlett Johansson,1330518259 +10217,48780,thriller,1330518230 +10217,48780,twist ending,1330518234 +10217,49961,cate blanchett,1355859065 +10217,49961,England,1355859067 +10217,49961,high school,1355859089 +10217,49961,Judi Dench,1355859175 +10217,49961,loneliness,1355859082 +10217,49961,secrets,1355859096 +10217,52413,Harvey Keitel,1357229490 +10217,52413,Lenin,1357229515 +10217,52413,Theodoros Angelopoulos,1357229493 +10217,53519,car chase,1355859902 +10217,53519,great dialogue,1355859903 +10217,53519,great soundtrack,1355859898 +10217,53519,hot dance scene,1355859930 +10217,53519,Kurt Russell,1355859906 +10217,53519,Quentin Tarantino,1355859896 +10217,56174,alone in the world,1355842714 +10217,56174,post-apocalyptic,1355842716 +10217,56174,sci-fi,1355842722 +10217,56174,zombies,1355842728 +10217,58559,action,1363801307 +10217,58559,Atmospheric,1363801305 +10217,58559,Batman,1363801311 +10217,58559,Christian Bale,1363801300 +10217,58559,Christopher Nolan,1363801423 +10217,58559,dark,1363801325 +10217,58559,Heath Ledger,1363801297 +10217,58559,Michael Caine,1363801378 +10217,58559,psychology,1363801316 +10217,58559,thriller,1363801332 +10217,59315,superheroes,1368722391 +10217,62644,dictatorship,1355858456 +10217,62644,Germany,1355858443 +10217,62644,psychology,1355858447 +10217,62644,social experiment,1355858450 +10217,62644,violence,1355858459 +10217,63062,angelina jolie,1355858554 +10217,63062,based on a true story,1355858556 +10217,63062,Clint Eastwood,1355858540 +10217,64839,loneliness,1368722198 +10217,67508,based on a book,1355858997 +10217,67508,Germany,1355858992 +10217,67508,History,1355858964 +10217,67508,Oscar Nominee: Best Foreign Language Film,1355858983 +10217,67508,terrorism,1355859009 +10217,68941,Dennis Iliadis,1389840897 +10217,68941,funny as hell,1389840906 +10217,68941,Hand in the garberator,1389840910 +10217,68941,revenge,1389840917 +10217,68941,splatter,1389840920 +10217,69844,Alan Rickman,1355842455 +10217,69844,based on a book,1355842496 +10217,69844,franchise,1355842493 +10217,69844,harry potter,1355842466 +10217,69844,Helena Bonham Carter,1355842460 +10217,69844,romance,1355842469 +10217,71033,Argentina,1355858710 +10217,71033,cinematography,1355858720 +10217,71033,mystery,1355858729 +10217,71033,revenge,1355858726 +10217,71033,weak ending,1355858707 +10217,73804,Alain Delon,1356198044 +10217,73804,cameos,1356197985 +10217,73804,parody,1356198056 +10217,73804,stupid,1356198073 +10217,74275,Jim Carrey,1367764665 +10217,74327,coming of age,1357079816 +10217,74327,great soundtrack,1357079821 +10217,74458,atmospheric,1355942529 +10217,74458,Leonardo DiCaprio,1355942476 +10217,74458,Martin Scorsese,1355942478 +10217,74458,nazis,1355942501 +10217,74458,psychological,1355942486 +10217,74458,twist ending,1355942495 +10217,74458,weird,1355942504 +10217,74458,World War II,1355942498 +10217,76251,comic book,1355857672 +10217,76251,funny,1355857670 +10217,76251,humorous,1355857676 +10217,76251,revenge,1355857694 +10217,76251,satire,1355857701 +10217,76251,superhero,1355857668 +10217,76251,violence,1355857797 +10217,76763,Dakota Fanning,1360277948 +10217,76763,Kristen Stewart,1360277955 +10217,76763,rock and roll,1360277959 +10217,76763,rock band,1360277963 +10217,77307,coming of age,1356147639 +10217,77307,disturbing,1356147661 +10217,77307,family relationships,1356147653 +10217,77307,freedom,1356147637 +10217,77307,parenthood,1356147633 +10217,77307,sexuality,1356147631 +10217,78499,bittersweet,1361697042 +10217,78499,music,1361697060 +10217,78499,nostalgic,1361697052 +10217,78499,Pixar,1361697038 +10217,78499,visually appealing,1361697065 +10217,78574,Jennifer Lawrence,1356556447 +10217,78574,western,1356556551 +10217,79132,alternate reality,1330818595 +10217,79132,complicated,1330818615 +10217,79132,Leonardo DiCaprio,1330818570 +10217,79132,memory,1330818610 +10217,79132,philosophy,1330818579 +10217,79132,sci-fi,1330818575 +10217,79132,thought-provoking,1330818591 +10217,80219,action,1355859849 +10217,80219,black comedy,1355859855 +10217,80219,Nudity (Full Frontal - Notable),1355859858 +10217,80219,Robert De Niro,1355859863 +10217,80219,Robert Rodriguez,1355859869 +10217,80219,satire,1355859872 +10217,80219,violent,1355859874 +10217,81417,boring,1360194532 +10217,81417,characters stupid,1360194535 +10217,81417,excessive backstory,1360194537 +10217,81417,Handycam,1360194634 +10217,81417,not scary,1360194539 +10217,81417,predictable,1360194542 +10217,81932,Amy Adams,1355859652 +10217,81932,Christian Bale,1355859629 +10217,81932,cliche,1355859638 +10217,81932,drug addiction,1355859650 +10217,81932,Mark Wahlberg,1355859635 +10217,82202,Angelina Jolie,1357162978 +10217,82202,chemistry between actors,1357162967 +10217,82202,dialogue,1357162971 +10217,82202,Johnny Depp,1357162980 +10217,82202,predictable,1357162973 +10217,82202,Timothy Dalton,1357162989 +10217,84772,Simon Pegg,1376063654 +10217,85397,Amanda Seyfried,1356217685 +10217,85397,cliche,1356217675 +10217,85397,Gary Oldman,1356217693 +10217,85397,SUPERNATURAL ROMANCE,1356217686 +10217,86190,beautiful cinematography,1355842424 +10217,86190,ending,1355842412 +10217,86190,Germany,1355842429 +10217,86190,strong female lead,1355842426 +10217,87232,cold war,1352658467 +10217,87232,Kevin Bacon,1352658510 +10217,87232,Marvel,1352658519 +10217,87232,Nazis,1352658488 +10217,87232,sci fi,1352658458 +10217,87304,Christopher Plummer,1356556144 +10217,87304,Ewan McGregor,1356556137 +10217,87304,Melanie Laurent,1356556135 +10217,87306,bad plot,1355842748 +10217,87306,J.J. Abrams,1355842755 +10217,87306,predictable,1355842787 +10217,87306,sci-fi,1355842758 +10217,87306,small town,1355842769 +10217,87306,Steven Spielberg,1355842765 +10217,88125,Alan Rickman,1330518555 +10217,88125,atmospheric,1330518577 +10217,88125,author:J. K. Rowling,1330518560 +10217,88125,Daniel Radcliffe,1330518479 +10217,88125,David Yates,1330518563 +10217,88125,Emma Watson,1330518486 +10217,88125,magic,1330518567 +10217,88125,plot twist,1330518545 +10217,88125,Ralph Fiennes,1330518491 +10217,89470,boring,1356148019 +10217,89470,disappointing,1356148010 +10217,89470,Gwyneth Paltrow,1356148039 +10217,89470,Kate Winslet,1356148044 +10217,89470,Steven Soderbergh,1356148031 +10217,89470,unrealistic,1356148014 +10217,89745,humorous,1352658556 +10217,89745,joss whedon,1352658605 +10217,89745,Marvel,1352658538 +10217,89745,Robert Downey Jr.,1352658535 +10217,89745,Samuel L. Jackson,1352658543 +10217,89745,Scarlett Johansson,1352658540 +10217,89759,Asghar Farhadi,1400893134 +10217,90405,concept,1355841607 +10217,90405,dystopia,1355841483 +10217,90405,future,1355841496 +10217,90405,sci-fi,1355841500 +10217,90405,suspense,1355841511 +10217,91485,action,1356827807 +10217,91485,Arnold Schwarzenegger,1356827778 +10217,91485,blood,1356827766 +10217,91485,Bruce Willis,1356827771 +10217,91485,explosions,1356827763 +10217,91485,jokes,1356827761 +10217,91485,Silvester Stallone,1356827795 +10217,91485,violence,1356827814 +10217,91500,based on a book,1355842074 +10217,91500,dystopia,1355842011 +10217,91500,Jennifer Lawrence,1355842053 +10217,91500,science fiction,1355842013 +10217,91500,thriller,1355842028 +10217,91529,Batman,1352658370 +10217,91529,Christian Bale,1352658379 +10217,91529,Christopher Nolan,1352658376 +10217,91529,dark,1352658412 +10217,91529,great ending,1352658397 +10217,91529,Michael Caine,1352658382 +10217,91529,plot twist,1352658394 +10217,91529,superhero,1352658391 +10217,97024,fight club,1356652069 +10217,97024,Marion Cotillard,1356652045 +10217,97024,realistic,1356652075 +10217,97304,1970s,1357911674 +10217,97304,Alan Arkin,1357911719 +10217,97304,Ben Affleck,1357911640 +10217,97304,Bryan Cranston,1357911625 +10217,97304,funny,1357911669 +10217,97304,hollywood,1357911671 +10217,97304,hostage,1357911665 +10217,97304,John Goodman,1357911643 +10217,97304,revolution,1357911708 +10217,97304,suspenseful,1357911658 +10217,97304,thriller,1357911660 +10217,97306,Christopher Walken,1372462952 +10217,97306,clever,1372462955 +10217,97306,dark comedy,1372462978 +10217,97306,meta,1372462964 +10217,97306,Sam Rockwell,1372463081 +10217,97306,Tom Waits,1372462968 +10217,97306,Woody Harrelson,1372462970 +10217,97665,Asterix,1370435904 +10217,97665,Based On Comic Book,1370435894 +10217,97665,Gerard Depardieu,1370435899 +10217,97921,Bradley Cooper,1361696955 +10217,97921,dance,1361696970 +10217,97921,Jennifer Lawrence,1361696957 +10217,97921,predictable,1361696965 +10217,97921,Robert De Niro,1361696961 +10217,97938,cinematography,1376686602 +10217,97938,great photograpy,1376686604 +10217,97938,visually appealing,1376686608 +10217,99114,Christoph Waltz,1358459958 +10217,99114,Funny,1358460022 +10217,99114,Jamie Foxx,1358459985 +10217,99114,Jonah Hill,1358459988 +10217,99114,Quentin Tarantino,1358459964 +10217,99114,Revenge,1358459994 +10217,99114,Samuel L. Jackson,1358459972 +10217,99114,Spaghetti Western,1358459978 +10217,99114,violence,1358459999 +10217,99149,19th century,1365118942 +10217,99149,Anne Hathaway,1365118928 +10217,99149,France,1365118959 +10217,99149,Helena Bonham Carter,1365118969 +10217,99149,Hugh Jackman,1365118921 +10217,99149,Russell Crowe's singing,1365118973 +10217,99149,Victor Hugo,1365118946 +10217,102125,Ben Kingsley,1366963020 +10217,102125,Gwyneth Paltrow,1366963033 +10217,102125,Iron Man,1366962824 +10217,102125,Marvel,1366962835 +10217,102125,Robert Downey Jr.,1366962817 +10217,103042,Allegory: Superman = Christ. His mother - Virgin Mary. Story of Moses,1371851800 +10217,103042,Christopher Nolan,1371851818 +10217,103042,Direction,1371851807 +10217,103042,identity crisis,1371851803 +10217,103042,Over-the-top action.,1371851780 +10217,103042,second half was worse,1371851785 +10217,103042,Zack Snyder,1371851789 +10217,103341,cornetto trilogy,1386813960 +10217,103341,Edgar Wright,1386813950 +10217,103341,Nick Frost,1386813954 +10217,103341,Simon Pegg,1386813956 +10217,104211,funny moments,1384662366 +10217,104211,Jason Sudeikis,1384662386 +10217,104241,Chloe Moretz,1382477888 +10217,104841,cinematography,1387333516 +10217,104841,physics,1387333530 +10217,104841,science,1387333533 +10217,104841,suspense,1387333525 +10217,104841,visually appealing,1387333528 +10217,104879,acting,1381151974 +10217,104879,atmospheric,1381151927 +10217,104879,Denis Villeneuve,1381151824 +10217,104879,great direction,1381151789 +10217,104879,Hugh Jackman,1381151797 +10217,104879,Jake Gyllenhaal,1381151807 +10217,104879,photography,1381151916 +10217,105086,cliche,1384087390 +10217,106072,Marvel Cinematic Universe,1384348720 +10217,106487,Jennifer Lawrence,1385592662 +10217,106487,Remember who the enemy is,1385592696 +10217,106782,Jonah Hill,1388101737 +10217,106782,Leonardo DiCaprio,1388101736 +10217,106782,Martin Scorsese,1388101723 +10217,106782,visually appealing,1388101744 +10217,109487,Anne Hathaway,1415311819 +10217,109487,Christopher Nolan,1415311808 +10217,109487,Matthew McConaughey,1415311816 +10217,109487,wormhole,1415311812 +10217,112556,David Fincher,1413155512 +10217,112556,false accusation,1413155547 +10217,112556,mindfuck,1413155516 +10217,112556,murder,1413155528 +10217,112556,Neal Patrick Harris,1413155523 +10217,112556,Psychopathy,1413155520 +10217,112556,Rosamund Pike,1413155537 +10217,112623,action,1407103116 +10217,112623,apocalyptic,1407103096 +10217,112623,emotional,1407103113 +10217,112623,genetics,1407103099 +10217,112623,sci-fi,1407103102 +10219,87194,grieving,1433297195 +10219,87194,spirituality,1433297195 +10219,87194,travel,1433297195 +10231,260,saga,1439787628 +10231,260,starwars,1439787643 +10278,260,classic sci-fi,1437440340 +10278,260,EPIC,1437440325 +10278,260,Harrison Ford,1437440346 +10278,260,Science Fiction,1437440331 +10278,112552,good music,1437440518 +10278,112552,independent film,1437440518 +10278,112552,sundance award winner,1437440518 +10298,260,adventure,1442130613 +10298,260,fantasy,1442130607 +10315,720,children,1264663044 +10315,1234,music,1264662966 +10315,4361,farce,1264662997 +10315,5013,Period piece,1264663126 +10315,5120,twists and turns,1264663016 +10315,8989,devil,1264663066 +10315,8989,fantasy,1264663088 +10325,31694,Bollywood,1166294038 +10403,356,comedy,1425584256 +10403,356,funny,1425584256 +10403,356,positive,1425584256 +10403,81591,dance,1425895973 +10403,81591,Natalie Portman,1425895966 +10403,129739,documentary,1425895876 +10403,129739,medicine,1425895907 +10449,117176,male-female relationship,1434680184 +10449,117176,physics,1434680184 +10449,117176,stephen hawking,1434680184 +10516,109487,sci-fi,1445273841 +10516,109487,science fiction,1445273856 +10516,109487,space,1445273843 +10516,109487,space travel,1445273853 +10526,116797,Benedict Cumberbatch,1443685125 +10526,116797,code breaking,1443685122 +10526,116797,computer science,1443685161 +10526,116797,Computers,1443685115 +10526,116797,England,1443685133 +10526,116797,genius,1443685130 +10526,116797,historical,1443685149 +10526,116797,history,1443685170 +10526,116797,intelligent,1443685147 +10526,116797,Keira Knightley,1443685119 +10541,260,classic,1437074713 +10541,260,sci-fi,1437074710 +10542,296,nonlinear,1275371994 +10542,296,quentin tarantino,1275371978 +10542,296,soundtrack,1275371988 +10542,1214,horror,1275370729 +10542,1214,ridley scott,1275370708 +10542,1214,science fiction,1275370735 +10542,1214,sigourney weaver,1275370774 +10542,1214,space,1275370715 +10542,1232,austere,1275370155 +10542,1232,dystopia,1275370125 +10542,1232,meditative,1275370114 +10542,1232,mysticism,1275370142 +10542,1232,russian,1275370194 +10542,1232,science fiction,1275370180 +10542,1284,humphrey bogart,1275370875 +10542,1284,lauren bacall,1275370869 +10542,1284,noir,1275370888 +10542,2020,aristocracy,1275371673 +10542,2020,aristocratic france,1275371612 +10542,2020,fashion,1275371692 +10542,2020,glenn close,1275371629 +10542,2020,john malkovich,1275371625 +10542,2020,social maneuvering,1275371659 +10542,2020,witty,1275371710 +10542,2427,cinematography,1275372205 +10542,2427,psychology,1275372216 +10542,2427,war,1275372190 +10542,2858,kevin spacey,1275370981 +10542,2858,sam mendes,1275370985 +10542,2858,satire,1275371022 +10542,2858,sexuality,1275370995 +10542,3677,avant-garde,1275372304 +10542,3677,corporate culture,1275372274 +10542,3677,environment,1275372263 +10542,4144,affair,1275372636 +10542,4144,desire,1275372625 +10542,4144,soundtrack,1275372650 +10542,4144,stylized,1275372644 +10542,4144,wong kar wai,1275372623 +10542,4226,memory,1275370961 +10542,4226,neo-noir,1275370917 +10542,4226,psychoanalysis,1275370940 +10542,4979,anjelica huston,1275371392 +10542,4979,family dynamics,1275371412 +10542,4979,luke wilson,1275371397 +10542,4979,new york,1275371436 +10542,4979,soundtrack,1275371441 +10542,4979,wes anderson,1275371379 +10542,5291,akira kurosawa,1275372787 +10542,5291,samurai,1275372849 +10542,5418,conspiracy,1275370454 +10542,5418,espionage,1275370470 +10542,5418,matt damon,1275370450 +10542,6711,alienation,1275369727 +10542,6711,bill murray,1275369647 +10542,6711,scarlett johnansson,1275369637 +10542,6711,sofia coppola,1275369750 +10542,6711,tokyo,1275369650 +10542,7327,brechtian,1275372387 +10542,7327,desire,1275372374 +10542,7327,dreams,1275372394 +10542,7327,ingmar bergman,1275372353 +10542,7327,psychoanalysis,1275372363 +10542,7327,psychology,1275372369 +10542,7486,argentina,1275372557 +10542,7486,desire,1275372541 +10542,7486,loneliness,1275372538 +10542,7486,queer,1275372513 +10542,7486,wong kar wai,1275372520 +10542,7766,akira kurosawa,1275372876 +10542,7766,feudal japan,1275372869 +10542,7766,shakespeare,1275372879 +10542,8665,conspiracy,1275370521 +10542,8665,espionage,1275370528 +10542,8665,matt damon,1275370518 +10542,8910,corporate culture,1275370005 +10542,8910,existentialism,1275369967 +10542,8910,lily tomlin,1275369975 +10542,8910,nihilism,1275369986 +10542,8981,clive owen,1275369311 +10542,8981,desire,1275369124 +10542,8981,dialogue,1275369240 +10542,8981,natalie portman,1275369319 +10542,27266,desire,1275372668 +10542,27266,erotic,1275372665 +10542,27266,memories,1275372684 +10542,27266,wong kar wai,1275372671 +10542,27611,drama,1275369536 +10542,27611,military,1275369582 +10542,27611,mysticism,1275369545 +10542,27611,politics,1275369557 +10542,27611,post-apocalyptic,1275369568 +10542,27611,religion,1275369548 +10542,27611,space opera,1275369596 +10542,30810,anjelica huston,1275371295 +10542,30810,bill murray,1275371283 +10542,30810,david bowie,1275371307 +10542,30810,wes anderson,1275371300 +10542,45081,atmospheric,1275370051 +10542,48744,beautiful,1275371523 +10542,48744,desire,1275371468 +10542,48744,queer,1275371499 +10542,48744,raunchy,1275371541 +10542,48744,unsimulated sex scenes,1275371483 +10542,51573,maya deren,1275370660 +10542,51573,mysticism,1275370679 +10542,51573,psychodrama,1275370668 +10542,54286,conspiracy,1275370560 +10542,54286,espionage,1275370555 +10542,54286,matt damon,1275370548 +10542,55269,anjelica huston,1275369840 +10542,55269,jason schwartzman,1275369931 +10542,55269,road movie,1275369892 +10542,55269,wes anderson,1275369814 +10542,55290,abduction,1275369436 +10542,55290,casey affleck,1275369368 +10542,55290,conspiracy,1275369376 +10542,55290,morality,1275369447 +10542,55290,morgan freeman,1275370630 +10542,56782,minimalist,1275370304 +10542,56782,oil,1275370398 +10542,58559,batman,1275370591 +10542,58559,christian bale,1275370572 +10542,58559,heath ledger,1275370583 +10542,58559,morgan freeman,1275370587 +10542,58559,psychology,1275370609 +10542,64622,betrayal,1275371238 +10542,64622,desire,1275371180 +10542,64622,holocaust,1275371213 +10542,64622,kate winslet,1275371177 +10542,64622,nazi germany,1275371200 +10542,65130,freedom,1275371130 +10542,65130,kate winslet,1275371040 +10542,65130,marriage,1275371086 +10542,65130,sam mendes,1275371048 +10542,65130,the american dream,1275371059 +10542,68237,corporate culture,1275371741 +10542,68237,psychology,1275371748 +10542,68237,solitude,1275371764 +10542,68237,space,1275371768 +10542,76151,marxism,1275373237 +10542,76151,psychoanalysis,1275373250 +10542,76151,zizek,1275373228 +10548,260,classic,1441044696 +10548,260,classic sci-fi,1441044688 +10548,260,"sci-fi, space",1441044703 +10558,5796,franchise,1177861711 +10580,8340,prison,1197088669 +10582,4725,david caruso,1309395417 +10582,7361,lovestory,1309396470 +10608,1211,enigmatic,1188430098 +10614,318,friendship,1431531004 +10614,318,message of hope,1431531004 +10614,318,prison,1431531004 +10614,2571,artificial intelligence,1431530844 +10614,2571,computers,1431530859 +10614,2571,martial arts,1431530849 +10614,2571,sci-fi,1431530867 +10661,25,alcoholism,1370667644 +10661,25,depressing,1370667629 +10661,25,prostitution,1370667633 +10661,25,SUICIDE,1370667636 +10661,223,black and white,1381718542 +10661,223,cynical,1381717422 +10661,223,jay and silent bob,1381716718 +10661,223,low budget,1381716711 +10661,223,quirky,1381716716 +10661,223,surreal,1381716714 +10661,353,adapted from:comic,1422851321 +10661,353,gothic,1422851255 +10661,353,gritty,1422851259 +10661,353,halloween,1422851284 +10661,353,rape,1422851298 +10661,353,revenge,1422851278 +10661,353,vengeance,1422851274 +10661,356,history,1333327527 +10661,356,quirky,1333327506 +10661,356,romance,1333327519 +10661,356,vietnam war,1333327500 +10661,364,talking animals,1368914565 +10661,410,black comedy,1307156509 +10661,541,robots,1342508025 +10661,608,based on a true story,1333327327 +10661,608,crime,1333327342 +10661,608,dark comedy,1333327306 +10661,608,murder,1333327325 +10661,608,violent,1333327313 +10661,616,talking animals,1342508506 +10661,745,claymation,1356392336 +10661,750,black and white,1336407495 +10661,750,cold war,1336407493 +10661,750,politics,1336407489 +10661,750,satire,1336407487 +10661,750,Stanley Kubrick,1336407484 +10661,778,addiction,1384061892 +10661,778,black comedy,1384061890 +10661,778,dark comedy,1384061889 +10661,778,drugs,1384061879 +10661,778,social commentary,1384061884 +10661,810,imdb bottom 100,1335235908 +10661,810,Nostalgia Critic,1335235900 +10661,900,choreography,1370230309 +10661,900,dancing,1370230232 +10661,900,Gene Kelly,1370230290 +10661,900,Paris,1370230263 +10661,900,tap dancing,1370230242 +10661,904,photographer,1369514069 +10661,906,manipulation,1371513788 +10661,906,mental illness,1371513773 +10661,906,murder,1371513712 +10661,906,paranoid,1371513786 +10661,906,theft,1371513712 +10661,909,adultery,1386565576 +10661,909,black and white,1386565732 +10661,909,Christmas,1386565721 +10661,909,corporations,1386565569 +10661,909,EXTRAMARITAL AFFAIRS,1386565563 +10661,909,suicide attempt,1386565593 +10661,919,dream,1367805707 +10661,919,fantasy,1367805697 +10661,919,talking animals,1368914450 +10661,919,witch,1367805689 +10661,924,slow,1369513436 +10661,971,Elisabeth Taylor,1345263944 +10661,971,family,1345263933 +10661,994,food,1369540014 +10661,994,immigrants,1369540034 +10661,994,italian,1369540038 +10661,994,restaurant,1369540045 +10661,994,siblings,1369540031 +10661,1028,Dick Van Dyke,1345179284 +10661,1028,Julie Andrews,1345179284 +10661,1028,nanny,1345179284 +10661,1030,cartoon-reality crossover,1342508544 +10661,1030,dragons,1368914774 +10661,1032,talking animals,1342508401 +10661,1035,Austria,1371513604 +10661,1035,nazis,1371513593 +10661,1059,Quirky,1307245288 +10661,1077,cryogenics,1346738038 +10661,1077,dystopia,1346738031 +10661,1077,farce,1346738147 +10661,1077,retrofuturist,1346738090 +10661,1077,slapstick,1346738160 +10661,1077,surreal,1346738040 +10661,1097,aliens,1356392263 +10661,1148,claymation,1356392330 +10661,1198,archaeology,1369514044 +10661,1203,courtroom,1342507940 +10661,1223,claymation,1342508372 +10661,1227,Ennio Morricone,1384581263 +10661,1227,rape,1384582250 +10661,1235,Cat Stevens,1383449163 +10661,1235,cult film,1383449151 +10661,1235,dark comedy,1383449152 +10661,1235,irreverent,1383449157 +10661,1235,quirky,1383449155 +10661,1235,suicide,1383449165 +10661,1258,haunted house,1369513950 +10661,1269,based on a play,1370907005 +10661,1269,dark comedy,1370907001 +10661,1269,insanity,1370907009 +10661,1269,murder,1370907011 +10661,1285,black comedy,1367805264 +10661,1285,Christian Slater,1367805321 +10661,1285,cynical,1367805267 +10661,1285,dark comedy,1367805303 +10661,1285,serial killer,1367805306 +10661,1285,suicide,1367805308 +10661,1285,Winona Ryder,1367805317 +10661,1289,landscape,1336335284 +10661,1289,nature,1336335291 +10661,1289,no dialogue,1336335262 +10661,1289,no narrative,1336335264 +10661,1289,Philip Glass,1301184699 +10661,1289,score:Philip Glass,1336335280 +10661,1289,slow,1336335258 +10661,1289,time lapse photography,1336335281 +10661,1301,far future,1385270296 +10661,1301,psychology,1385270312 +10661,1301,space,1385270302 +10661,1376,Based on a TV show,1369513862 +10661,1376,based on TV series,1369513866 +10661,1376,Leonard Nimoy,1369513833 +10661,1376,over the top,1369513781 +10661,1376,whales,1369513826 +10661,1376,William Shatner,1369513830 +10661,1380,adapted from B'way,1381472844 +10661,1380,good music,1381472830 +10661,1449,deadpan,1372138084 +10661,1449,mockumentary,1372138077 +10661,1449,satirical,1372138167 +10661,1449,small town,1372138074 +10661,1449,theater,1372138086 +10661,1674,Amish,1379797491 +10661,1674,Harrison Ford,1379797559 +10661,1674,murder,1379797513 +10661,1674,police,1379797506 +10661,1748,amnesia,1300468860 +10661,1748,fantasy,1300468875 +10661,1748,sci-fi,1300468849 +10661,1748,surreal,1300468852 +10661,1748,visually appealing,1300468858 +10661,1907,cross dressing,1342508488 +10661,1907,some talking animals,1342508464 +10661,1921,black and white,1378534984 +10661,1921,existentialism,1378534991 +10661,1921,insanity,1378535000 +10661,1921,mental illness,1378535002 +10661,1921,notable soundtrack,1378535006 +10661,1921,surreal,1378535202 +10661,1921,visually appealing,1378534987 +10661,1924,Bela Lugosi,1356392865 +10661,1924,Ed Wood,1356392865 +10661,1949,corruption,1378613727 +10661,1949,English Reformation,1378613759 +10661,1949,religion,1378613713 +10661,1949,state religion,1378613687 +10661,1951,Charles Dickens,1371513657 +10661,1994,clowns,1382843709 +10661,1994,dogs,1382843713 +10661,1994,ghosts,1382843719 +10661,1994,haunted house,1382848569 +10661,1994,paranormal,1382843715 +10661,1994,television,1382843748 +10661,1994,toys,1382848558 +10661,1997,Catholicism,1373780808 +10661,1997,Christianity,1373780806 +10661,1997,demons,1373780816 +10661,1997,exorcism,1373780821 +10661,2005,adventure,1381550856 +10661,2005,Children,1381550866 +10661,2005,friendship,1381551384 +10661,2005,pirates,1381550859 +10661,2005,slapstick,1381550852 +10661,2005,Steven Spielberg,1381550874 +10661,2005,treasure,1381550869 +10661,2013,shipwreck,1388899703 +10661,2018,talking animals,1368914851 +10661,2020,adultery,1372608738 +10661,2020,Paris,1372608743 +10661,2080,talking animals,1368914809 +10661,2085,talking animals,1342508420 +10661,2090,Disney,1346734897 +10661,2090,mice,1346734788 +10661,2090,mouse,1346734887 +10661,2090,talking animals,1346734804 +10661,2099,animation & live action interact (scene),1389503160 +10661,2099,bears,1389503178 +10661,2099,controversial,1389503145 +10661,2099,Disney,1389503154 +10661,2099,rabbits,1389503168 +10661,2099,talking animals,1389503150 +10661,2105,CGI,1369514347 +10661,2105,computers,1356392364 +10661,2124,black comedy,1381027431 +10661,2124,dysfunctional family,1385161550 +10661,2124,lawyers,1381028098 +10661,2124,supernatural,1381027411 +10661,2124,sword fight,1381028094 +10661,2124,throwaway gags,1381028090 +10661,2124,torture,1385161543 +10661,2139,anthropomorphic,1376110194 +10661,2139,mouse,1376110196 +10661,2139,rats,1376110197 +10661,2139,talking animals,1376110199 +10661,2413,board game,1338344004 +10661,2550,haunted house,1307245973 +10661,2550,psychological,1307245981 +10661,2664,1950s,1407184225 +10661,2664,evil twin,1407184222 +10661,2664,horror,1407184211 +10661,2664,paranoid,1407184202 +10661,2664,sci-fi,1407184213 +10661,2687,2D Disney Animation,1439184074 +10661,2687,Africa,1439184079 +10661,2687,Disney,1439184071 +10661,2687,gorillas,1439184090 +10661,2687,Phil Collins,1439184070 +10661,2692,alternate endings,1375076359 +10661,2692,animation,1375076393 +10661,2692,existentialism,1375076380 +10661,2692,German,1375076383 +10661,2692,heist,1375076387 +10661,2692,surreal,1375076360 +10661,2716,ghosts,1342508348 +10661,2735,Eddie Murphy,1345940108 +10661,2735,kidnapping,1345940440 +10661,2746,black comedy,1378224621 +10661,2746,broadway,1378224651 +10661,2746,dark humor,1378224613 +10661,2746,Great Songs,1378224629 +10661,2746,musical,1378224657 +10661,2746,sadism,1378224632 +10661,2746,Steve Martin,1378224642 +10661,2791,absurd,1346819847 +10661,2791,airport,1346819835 +10661,2791,aviation,1346819832 +10661,2791,Parody,1346819844 +10661,2791,Slapstick,1346819876 +10661,2791,spoof,1346819879 +10661,2795,road trip,1346735168 +10661,2795,Vacation,1346735219 +10661,2800,dreams,1407560239 +10661,2800,flying squirrel,1407560234 +10661,2804,Christmas,1313339272 +10661,2877,campy,1380435266 +10661,2877,irreverent,1380436239 +10661,2877,melodramatic,1380435273 +10661,2877,Rock Opera,1380435269 +10661,2917,film noir,1369889898 +10661,2968,surreal,1369514312 +10661,2987,cartoon,1342507669 +10661,2987,cartoon-reality crossover,1342508060 +10661,3018,campy,1381465841 +10661,3018,mad scientist,1381464253 +10661,3018,splatter,1381465865 +10661,3018,zombies,1381464498 +10661,3070,80s,1302996534 +10661,3070,aliens,1302996521 +10661,3070,surreal,1302996510 +10661,3091,Akira Kurosawa,1307245024 +10661,3201,1970s,1379136993 +10661,3201,confrontational,1379136986 +10661,3201,rebellion,1379136984 +10661,3397,talking animals,1342508726 +10661,3471,aliens,1356392153 +10661,3479,80's music,1371784960 +10661,3479,sword and sorcery,1342676506 +10661,3479,transformation,1342676509 +10661,3551,dentist,1369514189 +10661,3551,Dustin Hoffman,1369514195 +10661,3551,Frightening,1369514198 +10661,3551,nazis,1369514176 +10661,3551,torture,1369514206 +10661,3679,music,1368914952 +10661,3927,cold war,1336335710 +10661,3927,famous novelization,1371962894 +10661,3927,human body,1336335668 +10661,3927,microscopic,1336335671 +10661,3927,miniaturization,1336335675 +10661,3927,science fiction,1336335679 +10661,4027,musical,1307222407 +10661,4027,notable soundtrack,1307222434 +10661,4678,television,1338188145 +10661,4678,Weird Al,1338188142 +10661,4878,high school,1371513809 +10661,4878,mental illness,1371513750 +10661,4878,surreal,1371513755 +10661,4878,time travel,1371513756 +10661,6299,birds,1379051671 +10661,6299,photography,1379051677 +10661,6331,children,1333345340 +10661,6331,competition,1333345353 +10661,6331,Documentary,1333345342 +10661,6331,quirky,1333345330 +10661,6331,spelling bee,1333345348 +10661,6377,talking animals,1368914573 +10661,6433,experimental,1307156715 +10661,6639,Audrey Hepburn,1369028264 +10661,6639,blind woman,1369028273 +10661,6639,blindness,1369028275 +10661,6639,crime,1369028292 +10661,6639,disability,1369028278 +10661,6856,biopic,1370212051 +10661,6856,George M. Cohan,1370211862 +10661,6856,patriotic,1370212055 +10661,7338,Laurence Olivier,1379275674 +10661,8528,parody,1313338680 +10661,8528,sports,1313338671 +10661,8914,Complicated,1348204270 +10661,8914,low budget,1348204306 +10661,8914,surreal,1348204291 +10661,8914,time travel,1348204298 +10661,8957,gore,1368914999 +10661,25771,short,1368920651 +10661,26113,based on a play,1369928653 +10661,26113,Gore Vidal,1369928659 +10661,26113,politics,1300864998 +10661,26152,camp,1338321109 +10661,26242,driving,1356392278 +10661,26242,trucks,1356392272 +10661,26504,espionage,1356392754 +10661,26504,San Antonio,1356392755 +10661,26504,video game,1313338777 +10661,26925,musical,1307246507 +10661,26925,parody,1307246504 +10661,27351,bad pacing,1373009050 +10661,27351,insanity,1313339021 +10661,27351,obsession,1333327430 +10661,27351,spiral,1313338993 +10661,27351,surreal,1313339008 +10661,27351,vortex,1333327411 +10661,50872,food,1369514088 +10661,52885,dreams,1377491791 +10661,52885,psychedelic,1377491794 +10661,52885,surreal,1377491960 +10661,53140,archaeology,1369928699 +10661,53140,made for TV,1369928692 +10661,53140,magic,1369928720 +10661,59900,exaggerated,1307249022 +10661,68954,talking animals,1368914465 +10661,71264,inventor,1381557888 +10661,71264,quirky,1381557897 +10661,74553,art,1383974948 +10661,74553,beautiful,1383974959 +10661,74553,magic,1383974961 +10661,74553,monks,1383975326 +10661,74553,nature,1383974953 +10661,74553,not for kids,1383974954 +10661,74553,stylized,1383974972 +10661,74553,vikings,1383974970 +10661,78499,Pixar,1342508120 +10661,85997,so bad it's almost good,1338263487 +10661,89759,Alzheimer's disease,1382940909 +10661,89759,courtroom drama,1382940907 +10661,89759,divorce,1382940905 +10661,89759,Iran,1382940912 +10661,89759,modern,1382940904 +10661,89759,morally complex,1382940915 +10661,89759,social commentary,1382940938 +10661,89759,tense,1382940925 +10661,96079,franchise,1353728598 +10661,96079,James Bond,1353728597 +10661,96545,musical,1408246171 +10661,96545,opera,1408246168 +10661,105379,aliens,1381114985 +10661,105379,bizarre,1381117716 +10661,105379,dark comedy,1420221321 +10661,105379,distopia,1420221321 +10661,105379,dystopia,1381117155 +10661,105379,music,1381117092 +10661,105379,not funny enough,1381115452 +10661,105379,social commentary,1381114985 +10661,113906,cheesy,1433218272 +10661,113906,gimmik,1433218272 +10661,113906,werewolf,1433218272 +10695,260,guerra nas estrelas,1443658674 +10695,260,Star Wars,1443658657 +10730,6367,retro,1441218755 +10730,27773,disturbing,1441215924 +10730,27773,Korea,1441215938 +10730,27773,stylized,1441215927 +10730,30793,quirky,1441216975 +10730,40629,classic,1441298977 +10730,40629,great soundtrack,1441298980 +10730,40629,relationships,1441298982 +10730,41566,adventure,1441300731 +10730,41566,christianity,1441300743 +10730,41566,fantasy,1441300724 +10730,41566,mythology,1441300733 +10730,42632,beautiful cinematography,1441215842 +10730,42632,disturbing,1441215828 +10730,42632,Korea,1441215814 +10730,42632,stylized,1441215804 +10730,47610,costume drama,1441216328 +10730,47610,magic,1441216313 +10730,47610,predictable,1441216334 +10730,47610,twist ending,1441216304 +10730,49286,better than expected,1441217415 +10730,50685,bittersweet,1441216827 +10730,51834,romance,1441299242 +10730,55872,power of music,1441216911 +10730,96588,music,1441219226 +10730,96588,predictable,1441219235 +10730,106696,animation,1441296238 +10730,106696,beautiful,1441296241 +10730,106696,Disney,1441296221 +10730,106696,feminist,1441296227 +10730,106696,music,1441296243 +10730,106696,musical,1441296246 +10730,106696,sisters,1441296233 +10737,5952,overrated,1193657577 +10737,5952,want it,1193657585 +10776,111759,Alien Invasion,1449498726 +10776,111759,based on a novel,1449498734 +10776,111759,ending,1449498739 +10776,111759,future,1449498742 +10776,111759,powersuit,1449498731 +10776,111759,sci-fi,1449498699 +10776,111759,time loop,1449498718 +10807,104374,lovable,1438364773 +10807,104374,sweet!,1438364773 +10807,104374,time travel,1438364773 +10808,1097,AFI 100,1244575750 +10808,1097,emotional,1244575720 +10808,1097,Steven Spielberg,1244575735 +10808,3424,AFI 100,1244575864 +10808,3424,great cinematography,1244575826 +10835,50,complicated,1263700583 +10835,50,Crime,1263700587 +10835,50,great ending,1263700590 +10835,50,twist ending,1263700575 +10835,111,disturbing,1328743202 +10835,235,film noir,1261950406 +10835,235,Tim Burton,1261950398 +10835,296,Black comedy,1264469006 +10835,296,classic,1264469023 +10835,296,cult film,1264469008 +10835,296,drugs,1264469015 +10835,296,Quentin Tarantino,1264469009 +10835,356,classic,1264113195 +10835,356,Tom Hanks,1264113192 +10835,365,dramatic colouring,1274034455 +10835,377,Action,1262310585 +10835,377,bomb,1262310602 +10835,377,bus,1262310605 +10835,377,Keanu Reeves,1262310581 +10835,377,rousing,1262310612 +10835,377,Sandra Bullock,1262310586 +10835,377,seen at the cinema,1262310614 +10835,377,Thriller,1262310596 +10835,485,deconstruction,1269026608 +10835,492,slow paced,1262233130 +10835,506,stylized,1332367036 +10835,520,Richard Lewis,1269134100 +10835,527,seinfeld made out to this,1263336727 +10835,535,Julianne Moore,1310250853 +10835,535,long,1310250838 +10835,535,Tim Robbins,1310250851 +10835,535,unlikeable characters,1310250847 +10835,541,atmospheric,1295392471 +10835,541,stylized,1295392469 +10835,551,atmospheric,1263750830 +10835,551,gothic,1263750831 +10835,551,humorous,1263750833 +10835,593,Anthony Hopkins,1268699293 +10835,593,crime,1268699296 +10835,593,psychology,1268699290 +10835,608,black comedy,1262143750 +10835,608,Coen Brothers,1261963537 +10835,673,nostalgic,1261949128 +10835,736,Nostalgia Critic,1261950970 +10835,750,classic,1309736058 +10835,750,nuclear war,1309736063 +10835,750,Stanley Kubrick,1309736066 +10835,908,Alfred Hitchcock,1330561648 +10835,908,visually appealing,1330561646 +10835,908,witty,1330561645 +10835,912,atmospheric,1285900797 +10835,912,bittersweet,1285900801 +10835,912,classic,1285900791 +10835,1042,tom hanks,1262288646 +10835,1059,Claire Danes,1262296021 +10835,1059,clever,1262296027 +10835,1059,Quirky,1262296024 +10835,1077,slapstick,1264461565 +10835,1083,Jack Lemmon,1263960209 +10835,1083,too long,1263960207 +10835,1090,horrors of war,1262233646 +10835,1172,nostalgic,1261934559 +10835,1203,ensemble cast,1290739172 +10835,1203,social commentary,1290739169 +10835,1213,dark comedy,1262232089 +10835,1213,good dialogue,1262232095 +10835,1213,Martin Scorsese,1262232099 +10835,1219,creepy,1288224664 +10835,1219,tense,1288224669 +10835,1221,classic,1263686943 +10835,1221,dysfunctional family,1263686938 +10835,1221,sequel,1263686939 +10835,1244,classic,1310059008 +10835,1244,Woody Allen,1310059003 +10835,1246,bittersweet,1262234289 +10835,1246,drama,1262234291 +10835,1246,English literature,1262234282 +10835,1246,philosophy,1262234286 +10835,1246,Robin Williams,1262234283 +10835,1258,atmospheric,1263960391 +10835,1258,Nudity (Full Frontal),1263960398 +10835,1258,Stanley Kubrick,1263960384 +10835,1293,biopic,1272942956 +10835,1343,corruption,1289535601 +10835,1343,over-the-top ending,1289535559 +10835,1343,paranoia,1289535608 +10835,1343,psycho murderer,1289535568 +10835,1343,scary,1289535571 +10835,1343,stalker,1289535561 +10835,1411,Kenneth Branagh,1306874662 +10835,1464,atmospheric,1262140488 +10835,1464,Nudity (Topless - Notable),1262140531 +10835,1464,Nudity (Topless),1262140533 +10835,1464,Patricia Arquette,1262140500 +10835,1464,post-modern,1262140537 +10835,1464,strange,1262140511 +10835,1464,Surreal,1262140483 +10835,1464,very clever,1262140540 +10835,1617,film noir,1287456841 +10835,1917,michael bay,1261950700 +10835,1917,quick cuts,1261950721 +10835,1924,after 10 minutes it's unwatchable,1310349185 +10835,1924,worst movie ever,1310349192 +10835,1941,Criterion,1309990839 +10835,2012,Christopher Lloyd,1262233517 +10835,2012,sci-fi western,1262233524 +10835,2012,western,1262233532 +10835,2065,movies about movies,1310694852 +10835,2065,Woody Allen,1310694837 +10835,2076,disturbing,1262484313 +10835,2076,surreal,1262484358 +10835,2076,voyeurism,1262489326 +10835,2291,Depp & Burton,1263750849 +10835,2297,good cinematography,1266088205 +10835,2297,imaginative,1266088206 +10835,2297,surreal,1266088209 +10835,2335,Adam Sandler,1263688754 +10835,2357,bleak,1261934478 +10835,2395,Bill Murray,1268602862 +10835,2395,deadpan,1268602853 +10835,2395,quirky,1268602860 +10835,2395,Wes Anderson,1268602872 +10835,2423,Chevy Chase,1262232982 +10835,2423,Classic,1262232988 +10835,2502,cult film,1262215664 +10835,2502,mike judge,1262215668 +10835,2599,black comedy,1262233344 +10835,2599,dark comedy,1262233348 +10835,2599,deadpan,1262233346 +10835,2599,Matthew Broderick,1261951502 +10835,2599,satirical,1262233341 +10835,2791,Leslie Nielsen,1262330488 +10835,2810,cult of persona,1344744153 +10835,2810,distorted reality,1344744155 +10835,2810,disturbing,1344744157 +10835,2810,Satoshi Kon,1344744151 +10835,2858,black comedy,1309567618 +10835,2858,Kevin Spacey,1309567609 +10835,2858,midlife crisis,1309567615 +10835,2858,reflective,1309567620 +10835,2858,surrealism,1309567613 +10835,2968,Criterion,1310876986 +10835,2968,Sean Connery,1310876975 +10835,2973,Woody Allen,1261950367 +10835,3134,Criterion,1310001813 +10835,3438,campy,1330139633 +10835,3476,mental illness,1264548828 +10835,3476,Nudity (Topless),1264548788 +10835,3476,paranoia,1264548805 +10835,3476,surreal,1264548796 +10835,3476,Tim Robbins,1264548798 +10835,3476,Vietnam War,1264548801 +10835,3536,numerous inaccuracies,1276733528 +10835,3552,Bill Murray,1268852109 +10835,3552,Chevy Chase,1268852110 +10835,3552,golf,1268852117 +10835,3677,no dialogue,1292453228 +10835,3677,time-lapse,1292453230 +10835,3916,Cheesy,1270047931 +10835,3916,cliche,1270048044 +10835,3916,football,1270047924 +10835,3916,inspirational,1270047941 +10835,3916,sports,1270047925 +10835,4019,writing,1285445897 +10835,4226,dark,1282764509 +10835,4310,big budget,1261950763 +10835,4310,Overrated,1261950761 +10835,4310,Romance,1261950768 +10835,4310,unintentionally humourous dialogue,1261950757 +10835,4310,World War II,1261950752 +10835,4679,john hughes,1266777298 +10835,4848,Atmospheric,1261949401 +10835,4848,justin theroux,1261949426 +10835,4848,lesbian,1261949413 +10835,4848,mindfuck,1261949399 +10835,4848,nonlinear,1261949403 +10835,4848,Nudity (Full Frontal - Notable),1261949414 +10835,4848,surreal,1261949406 +10835,4878,alternate timeline,1262310714 +10835,4878,mental illness,1262310704 +10835,4878,mindfuck,1262144919 +10835,4878,psychology,1262144920 +10835,4878,thought-provoking,1262144924 +10835,4878,time travel,1262310700 +10835,4886,John Goodman,1273959617 +10835,4886,Steve Buscemi,1273959623 +10835,4973,beautifully filmed,1264386266 +10835,4979,Bill Murray,1272506212 +10835,4979,dysfunctional family,1272506206 +10835,4979,quirky,1272506217 +10835,4979,stylized,1272506216 +10835,4993,ensemble cast,1262410512 +10835,4993,fantasy,1262410516 +10835,4993,immersive,1262410523 +10835,5501,better as a child,1261948711 +10835,5669,propaganda,1280557707 +10835,5679,creepy,1263259184 +10835,5679,disturbing,1263259186 +10835,5679,Naomi Watts,1263259189 +10835,5679,scary,1262989420 +10835,5952,ensemble cast,1262655552 +10835,5952,immersive,1262655539 +10835,5952,multiple storylines,1262655531 +10835,5971,Studio Ghibli,1310322123 +10835,5971,visually appealing,1310322125 +10835,6100,Woody Allen,1311036590 +10835,6373,Steve Carell,1261949188 +10835,6440,baffling,1309648502 +10835,6440,Coen Brothers,1309648506 +10835,6440,disturbing,1309648503 +10835,6440,John Goodman,1309648508 +10835,6440,quirky,1309648511 +10835,6440,stylized,1309648512 +10835,6440,writers,1309648515 +10835,6584,Woody Allen,1311474617 +10835,6711,Bill Murray,1264313800 +10835,6711,isolation,1264313805 +10835,6711,reflective,1264313808 +10835,6870,crime,1264113020 +10835,6870,twist ending,1264113023 +10835,6936,Will Ferrell,1261949058 +10835,7147,bittersweet,1261950440 +10835,7147,surreal,1261950446 +10835,7147,surrealism,1261950447 +10835,7153,ensemble cast,1262655561 +10835,7361,bittersweet,1263347951 +10835,7361,nonlinear,1263347939 +10835,7361,philosophy,1263347959 +10835,7361,romance,1263347962 +10835,7361,surreal,1263347937 +10835,7361,thought-provoking,1263347936 +10835,7925,Akira Kurosawa,1310163586 +10835,7925,Criterion,1310163588 +10835,7925,greed,1310163591 +10835,8360,Disney,1262836373 +10835,8464,american idiocy,1262233426 +10835,8464,expose,1262233428 +10835,8464,social message,1262233424 +10835,8874,dark humor,1309111422 +10835,8914,dialogue driven,1313339742 +10835,8914,intellectual,1313339738 +10835,8914,mindfuck,1313339735 +10835,8914,slow,1313339746 +10835,8961,animation,1262836403 +10835,25940,atmospheric,1329837935 +10835,25940,bleak,1329837944 +10835,25940,film noir,1329837947 +10835,25940,mirrors,1329837938 +10835,25940,Orson Welles,1329837937 +10835,27721,confusing,1295226586 +10835,27800,music,1262296003 +10835,30810,deadpan,1263016335 +10835,30810,stylized,1263016333 +10835,31658,dreamlike,1302319633 +10835,32025,multilingual,1287877575 +10835,34405,assassin,1274653911 +10835,34405,based on a TV show,1274653913 +10835,34405,cult film,1274653935 +10835,34405,dystopia,1274653908 +10835,34405,ensemble cast,1274653906 +10835,34405,quirky,1274653915 +10835,34405,sci-fi,1274653916 +10835,34405,social commentary,1274653922 +10835,37729,dark,1310180040 +10835,37729,gothic,1310180056 +10835,37729,Tim Burton,1310180059 +10835,37741,Philip Seymour Hoffman,1303157096 +10835,37741,slow,1303157090 +10835,42002,hilarious,1263259095 +10835,42002,Matthew Broderick,1263259101 +10835,42002,Nathan Lane,1263259099 +10835,44191,social commentary,1295485840 +10835,44195,dark comedy,1263009464 +10835,44195,dark humor,1263009465 +10835,44195,directorial debut,1263009477 +10835,44195,Jason Reitman,1263009468 +10835,44195,politics,1263009475 +10835,44195,satire,1263009471 +10835,44195,social commentary,1263009470 +10835,46578,social commentary,1263354458 +10835,46772,dark comedy,1262232940 +10835,46772,Matthew Broderick,1262232949 +10835,46772,Stephen Colbert,1262232948 +10835,48394,atmospheric,1262234546 +10835,48394,disturbing,1262234549 +10835,48394,great soundtrack,1262234537 +10835,48394,twist ending,1262234532 +10835,48774,atmospheric,1342291468 +10835,50872,animation,1262836412 +10835,50872,Pixar animation,1262836413 +10835,51255,british comedy,1263749703 +10835,51662,atmospheric,1306116723 +10835,51662,Nudity (Topless),1306116729 +10835,52885,atmospheric,1328832827 +10835,52885,beautiful animation,1328832822 +10835,52885,confusing,1328832824 +10835,52885,dreamlike,1328832819 +10835,52885,surreal,1328832820 +10835,53519,car chase,1261950619 +10835,53519,dialogue,1261950622 +10835,53519,grainy,1261950654 +10835,53519,Quentin Tarantino,1261950628 +10835,53519,slow paced,1261950612 +10835,53996,Nostalgia Critic,1261950858 +10835,53996,silly,1261950851 +10835,54185,artistic,1292380531 +10835,54185,slow,1292380535 +10835,54995,Bruce Willis,1261950535 +10835,54995,grindhouse,1261950539 +10835,55830,a little predictable,1264372428 +10835,55830,amateur film making,1264372421 +10835,55830,copyright,1264372442 +10835,55830,heartwarming,1264372408 +10835,55830,jazz,1264372436 +10835,55830,quirky,1264372410 +10835,55830,small business,1264372411 +10835,56286,confusing,1307757786 +10835,56286,David Cross,1307757790 +10835,56286,surreal,1307757800 +10835,59727,everything,1263428330 +10835,59727,impossble to see,1263428331 +10835,59727,it was only 1 hr and 28 minutes,1263428333 +10835,59727,Liv Tyler,1263430738 +10835,61132,Jack Black,1262329772 +10835,61246,character portrays Jesus,1261949750 +10835,61246,protagonist is insane,1261949716 +10835,61350,Vin Diesel,1268977971 +10835,62511,Charlie Kaufman,1303787887 +10835,62511,Philip Seymour Hoffman,1303787885 +10835,66934,good dialogue,1274653895 +10835,66934,joss whedon,1274653894 +10835,66934,Neil Patrick Harris,1274653889 +10835,66934,too short,1274653887 +10835,68157,Adolf Hitler,1261950491 +10835,68157,gore,1261950464 +10835,68157,great acting,1261950482 +10835,68157,Quentin Tarantino,1261950461 +10835,68157,random unnecessary close-ups of cream,1262914950 +10835,68157,satire,1261950484 +10835,68157,slow paced,1261950487 +10835,68157,tarantino,1261950499 +10835,68157,war,1261950493 +10835,68954,computer animation,1264984359 +10835,68954,dreams,1264984365 +10835,68954,heartbreaking,1264984357 +10835,69526,audience intelligence underestimated,1262234320 +10835,69526,bad plot,1262234321 +10835,69526,Michael Bay,1262234326 +10835,69526,ridiculous,1262234322 +10835,69526,silly,1262234325 +10835,70597,quirky,1279102774 +10835,72011,commitment,1263008310 +10835,72011,Jason Reitman,1263008451 +10835,72011,loneliness,1263008307 +10835,72489,extremely gory,1268977956 +10835,72605,dialogue,1296103398 +10835,74754,acting,1281218180 +10835,74754,Carolyn Minnott,1281218183 +10835,74754,Greg Sestero,1281218185 +10835,74754,unintentional comedy,1281218177 +10835,74789,brutal violence,1268714686 +10835,74789,great visuals,1268714707 +10835,74789,Johnny Depp,1268714705 +10835,74789,Stephen Fry,1268714703 +10835,74789,substantial changes from source of adaption,1268714699 +10835,74789,talking animals,1268714698 +10835,74789,Tim Burton,1268714697 +10835,76093,predictable,1271393206 +10835,76175,remake,1270359560 +10835,76251,gory,1271567898 +10835,76251,humorous,1271567891 +10835,76251,tasteless,1271567905 +10835,78893,acting,1283111329 +10835,78893,Dev Patel,1283111353 +10835,78893,editing,1283111333 +10835,78893,effects,1283111356 +10835,78893,M. Night Shyamalan,1283111343 +10835,78893,rushed,1283111335 +10835,79132,Christopher Nolan,1280113727 +10835,79132,mindfuck,1280113730 +10835,79702,fight scenes,1281848932 +10835,79702,stylized,1281848941 +10835,79702,video games,1281848945 +10835,80906,overlong,1309380266 +10835,80906,truth,1309380269 +10835,81564,anti-hero,1338617893 +10835,81564,twists & turns,1338617904 +10835,82459,atmospheric,1299044268 +10835,82459,not very Coen-y,1299044263 +10835,86833,poop humor,1307499600 +10835,86833,unlikeable characters,1307499609 +10835,86882,Adrien Brody,1334633196 +10835,87869,weak ending,1313904537 +10838,7,Drama,1315882973 +10838,7,finding yourself,1315882973 +10838,7,great cast,1315882973 +10838,7,Greg Kinnear,1315882973 +10838,7,Julia Ormond,1315882973 +10838,7,love story,1315882973 +10838,11,Annette Bening,1315881322 +10838,11,ethics,1315881322 +10838,11,great cast,1315881322 +10838,11,great performances,1315881322 +10838,11,great story,1315881322 +10838,11,Michael Douglas,1315881322 +10838,11,morals,1315881322 +10838,16,excellent cast,1315881736 +10838,16,Great Ensemble Cast,1315881736 +10838,16,great performances,1315881736 +10838,16,Joe Pesci,1315881736 +10838,16,long movie,1315881736 +10838,16,Robert De Niro,1315881736 +10838,16,Sharon Stone,1315881736 +10838,36,sad,1315682878 +10838,104,Adam Sandler,1315881377 +10838,104,Bob Barker,1315881377 +10838,104,golf,1315881377 +10838,104,hilarious,1315881377 +10838,104,Sports Coordinator:Mark Ellis,1315881377 +10838,151,Jessica Lange,1315883427 +10838,151,Liam Neeson,1315883427 +10838,151,Western,1315883427 +10838,236,beautiful scenery,1315883695 +10838,236,France,1315883695 +10838,236,French countryside,1315883695 +10838,236,Kevin Kline,1315883695 +10838,236,love,1315883695 +10838,236,wine and romance,1315883695 +10838,236,winery,1315883695 +10838,266,Aidan Quinn,1315881989 +10838,266,Amazing Cinematography,1315881989 +10838,266,Anthony Hopkins,1315881989 +10838,266,Brad Pitt,1315881989 +10838,266,emotional,1315881989 +10838,266,Favorites,1315881989 +10838,266,great acting,1315881989 +10838,266,Great Ensemble Cast,1315881989 +10838,266,Julia Ormond,1315881989 +10838,474,Clint Eastwood,1315881198 +10838,474,Great movie,1315881198 +10838,474,great story,1315881198 +10838,474,John Malkovich,1315881198 +10838,474,suspenseful,1315881198 +10838,497,ensemble cast,1315882755 +10838,497,great casting,1315882755 +10838,497,great movie,1315882755 +10838,497,great story,1315882755 +10838,497,Keanu Reeves,1315882755 +10838,497,quirky,1315882755 +10838,508,AIDS,1315881009 +10838,508,disease,1315881009 +10838,508,ethics,1315881009 +10838,508,fight for what's right,1315881009 +10838,508,great acting,1315881009 +10838,508,love,1315881009 +10838,508,morals,1315881009 +10838,508,sad,1315881009 +10838,553,based on actual events,1315882495 +10838,553,Bill Paxton,1315882495 +10838,553,cowboys,1315882495 +10838,553,Doc Holliday,1315882495 +10838,553,Favorites,1315882495 +10838,553,great acting,1315882495 +10838,553,great cast,1315882495 +10838,553,gunfight,1315882495 +10838,553,Kurt Russell,1315882495 +10838,553,Michael Biehn,1315882495 +10838,553,old west,1315882495 +10838,553,Sam Elliott,1315882495 +10838,553,Val Kilmer,1315882495 +10838,553,Wyatt Earp,1315882495 +10838,594,creepy for some children,1315881404 +10838,653,Dennis Quaid,1315882133 +10838,653,good family movie,1315882133 +10838,653,Sean Connery,1315882133 +10838,786,conspiracy,1315881482 +10838,786,great story,1315881482 +10838,786,Vanessa L. Williams,1315881482 +10838,832,Rene Russo,1315882603 +10838,919,creepy monkeys,1315679074 +10838,919,creepy witch,1315679074 +10838,955,black and white,1315878533 +10838,955,Cary Grant,1315878533 +10838,955,Katherine Hepburn,1315878533 +10838,1089,gore,1315678291 +10838,1208,gore,1315679699 +10838,1213,bloody,1315678070 +10838,1213,gore,1315678070 +10838,1224,Kenneth Branagh,1315868443 +10838,1234,Paul Newman,1315866754 +10838,1234,Robert Redford,1315866754 +10838,1242,Denzel Washington,1315867568 +10838,1242,Matthew Broderick,1315867568 +10838,1258,too creepy,1315679284 +10838,1266,classic,1315883316 +10838,1266,Gene Hackman,1315883315 +10838,1266,great acting,1315883315 +10838,1266,great story,1315883316 +10838,1278,Cloris Leachman,1315878089 +10838,1278,Gene Wilder,1315878089 +10838,1278,Great Ensemble Cast,1315878089 +10838,1278,Madeline Kahn,1315878089 +10838,1278,Mel Brooks,1315878089 +10838,1288,cult classic,1315882070 +10838,1293,anti-war,1315871254 +10838,1293,based on a true story,1315871254 +10838,1293,India,1315871254 +10838,1293,leadership,1315871254 +10838,1293,peace,1315871254 +10838,1293,politics,1315871254 +10838,1293,religion,1315871254 +10838,1293,terrorism,1315871254 +10838,1293,war protest,1315871254 +10838,1293,wars,1315871254 +10838,1293,world politics,1315871254 +10838,1304,great acting,1315867393 +10838,1304,great chemistry,1315867393 +10838,1304,great soundtrack,1315867393 +10838,1304,great story,1315867393 +10838,1304,Paul Newman,1315867393 +10838,1304,Robert Redford,1315867393 +10838,1387,gore,1315678985 +10838,1391,Jack Nicholson,1315881763 +10838,1394,babies,1315882676 +10838,1394,cult classic,1315882675 +10838,1394,Holly Hunter,1315882675 +10838,1394,kidnapping,1315882676 +10838,1394,Nicholas Cage,1315882676 +10838,1500,Alan Arkin,1315882855 +10838,1500,Great Ensemble Cast,1315882855 +10838,1500,Joan Cusack,1315882855 +10838,1500,John Cusack,1315882855 +10838,1500,Minnie Driver,1315882855 +10838,1777,1980s,1315883354 +10838,1777,Drew Barrymore,1315883354 +10838,1997,evil,1315883603 +10838,1997,evil spirits,1315883603 +10838,1997,Gross,1315883603 +10838,2006,Antonio Banderas,1315883145 +10838,2006,Catherine Zeta-Jones,1315883145 +10838,2006,fun,1315883145 +10838,2006,great story,1315883145 +10838,2268,courtroom drama,1315873599 +10838,2268,Demi Moore,1315873599 +10838,2268,ensemble cast,1315873600 +10838,2268,great director,1315873600 +10838,2268,great performances,1315873599 +10838,2268,JAG Corps,1315873599 +10838,2268,Kevin Bacon,1315873600 +10838,2268,Kevin Pollak,1315873600 +10838,2268,lawyers,1315873600 +10838,2268,military court,1315873599 +10838,2268,Tom Cruise,1315873599 +10838,2291,Johnny Depp,1315880803 +10838,2291,Tim Burton,1315880803 +10838,2291,unique,1315880803 +10838,2291,Winona Ryder,1315880803 +10838,2324,sad but good,1315683564 +10838,2329,disturbing,1315678843 +10838,2657,cult classic,1315883165 +10838,2819,cia,1315870271 +10838,2819,Faye Dunaway,1315870271 +10838,2819,Robert Redford,1315870271 +10838,3006,Al Pacino,1315868494 +10838,3006,Russell Crowe,1315868494 +10838,3068,Paul Newman,1315870327 +10838,3081,Christina Ricci,1315883562 +10838,3081,Creepy,1315883562 +10838,3081,Johnny Depp,1315883562 +10838,3176,great acting,1315683421 +10838,3176,great cast,1315683421 +10838,3176,Gwyneth Paltrow,1315683421 +10838,3176,Jude Law,1315683421 +10838,3176,Matt Damon,1315683421 +10838,3176,pretty creepy,1315683421 +10838,3176,suspense,1315683421 +10838,3275,Billy Connolly,1315878466 +10838,3275,cult classic,1315878466 +10838,3275,Irish,1315878466 +10838,3275,Irish accent,1315878467 +10838,3275,Irish Catholics,1315878466 +10838,3275,Irish dark comedy,1315878466 +10838,3275,Norman Reedus,1315878467 +10838,3275,Sean Patrick Flanery,1315878467 +10838,3275,vengeance,1315878466 +10838,3275,vigilante,1315878466 +10838,3275,Willem Dafoe,1315878466 +10838,4465,Kelly McGillis,1315878187 +10838,4465,rape scene,1315878187 +10838,4616,based on a true story,1315877153 +10838,4616,excellent,1315877153 +10838,4616,making a difference,1315877153 +10838,4616,obedience,1315877153 +10838,4616,rules,1315877153 +10838,4616,school kids,1315877153 +10838,4616,uplifting,1315877153 +10838,7027,Kevin Kline,1315875899 +10838,8493,war planes,1315877530 +10838,8958,blindness,1315877915 +10838,8958,great acting,1315877915 +10838,8958,great soundtrack,1315877915 +10838,8958,history,1315877915 +10838,8958,Jamie Foxx,1315877915 +10838,8958,music,1315877915 +10838,8958,music business,1315877915 +10838,8958,Ray Charles,1315877915 +10838,8958,talent,1315877915 +10838,26728,Robert De Niro,1315867788 +10838,35836,crude,1315680827 +10838,40819,based on a true story,1315876307 +10838,40819,country music,1315876307 +10838,40819,Joaquin Phoenix,1315876307 +10838,40819,Johnny Cash. addictions,1315876307 +10838,40819,music,1315876307 +10838,40819,musicians,1315876307 +10838,40819,Reese Witherspoon,1315876307 +10838,43396,Anthony Hopkins,1315876417 +10838,43396,New Zealand,1315876417 +10838,43396,world record,1315876417 +10838,46919,based on a true story,1315876495 +10838,46976,Emma Thompson,1315876096 +10838,46976,Will Ferrell,1315876096 +10838,48394,creepy,1315678154 +10838,55276,court,1315877701 +10838,55276,ethics,1315877701 +10838,55276,great acting,1315877701 +10838,55276,great cast,1315877701 +10838,55276,lawyers,1315877701 +10838,55276,Sydney Pollack,1315877701 +10838,55276,Tom Wilkinson,1315877701 +10838,55290,Ben Affleck is Director,1315871395 +10838,55290,Casey Affleck,1315871395 +10838,55290,great performances,1315871395 +10838,55290,great story,1315871395 +10838,64034,friendship,1315874302 +10838,64034,very sad,1315874279 +10838,64614,should've won an Oscar or more,1315870424 +10838,69122,Vulgar,1315678485 +10838,69481,shouldn't have won the Oscar,1315876980 +10838,71535,great cast,1315683251 +10838,73323,dark,1315876890 +10838,73323,great books,1315876890 +10838,73323,great performances,1315876890 +10838,73323,great trilogy,1315876889 +10838,73323,Michael Nyqvist,1315876890 +10838,73323,Noomi Rapace,1315876890 +10838,73323,psychological,1315876890 +10838,73323,suspense,1315876890 +10838,73323,thriller,1315876890 +10838,73323,trilogy,1315876890 +10838,76251,foul language,1315681603 +10838,76251,gore,1315681603 +10838,76272,based on a true story,1315876623 +10838,76272,forgiveness,1315876623 +10838,76272,Ireland,1315876623 +10838,76272,Liam Neeson,1315876623 +10838,76272,Northern Ireland,1315876623 +10838,76272,redemption,1315876623 +10838,80860,Drama,1315877396 +10838,80860,emotional,1315877396 +10838,80860,Josh Duhamel,1315877396 +10838,80860,llife choices,1315877396 +10838,80860,raising children,1315877444 +10838,80860,real life situations,1315877396 +10838,81932,Mark Wahlberg,1315867506 +10838,87911,based on a true story,1315677927 +10838,87911,creepy,1315677927 +10838,87911,crime,1315677927 +10838,87911,mental illness,1315677927 +10838,88405,Justin Timberlake,1315624240 +10838,88405,Woody Harrelson,1315624205 +10838,89492,Baseball. Drama. Comedy. Based on a true story.,1315673556 +10838,89492,Brad Pitt,1315673556 +10838,89492,Jonah Hill,1315673556 +10838,89492,Philip Seymour Hoffman,1315673556 +10917,260,cult classic,1435060337 +10917,260,"sci-fi, space",1435060328 +10919,88129,atmospheric,1387759185 +10919,88129,Carey Mulligan,1387759147 +10919,88129,Ryan Gosling,1387759229 +10919,88129,soundtrack,1387759147 +10919,88129,stylized,1387759213 +10919,88129,violence,1387759198 +10929,50,clever,1441897663 +10929,1198,comedy,1441897518 +10929,1198,treasure hunt,1441897522 +10929,109487,bizarre,1441897650 +10929,109487,boring,1441897622 +10929,116797,historical,1441897592 +10937,3282,fgfghg,1180668068 +10939,2502,comedy,1259227266 +10976,832,action,1317084630 +10996,63179,surreal,1452947000 +10996,94939,blue man group,1454003910 +10996,94939,metronome,1454003897 +10996,94939,weird,1454003894 +10996,100106,creative,1446945023 +10996,100106,philosophy,1446945017 +11008,72641,fake,1389804780 +11008,72641,fake authentic,1389804780 +11008,72641,over use of stereotypes,1389804780 +11008,72641,predictable,1389804780 +11017,2571,virtual reality,1446795420 +11033,592,dated,1182527677 +11033,4979,dysfunctional family,1426170763 +11033,26252,classic,1426169433 +11033,26252,dark comedy,1426169433 +11033,26252,love story,1426169433 +11033,48385,gross,1164735510 +11033,48385,satire,1164735504 +11035,40148,cryptic,1436443673 +11035,40148,narrated,1436443719 +11035,40148,Twists,1436443731 +11035,43396,based on a true story,1449749639 +11035,43396,emotional,1449749643 +11035,93457,jealousy,1437750425 +11035,93457,twist,1437750432 +11035,114494,hacking,1436442725 +11035,114494,narrated,1436442725 +11035,114494,twist ending,1436442725 +11035,115617,funny,1436444548 +11035,115617,japanese influence,1436444542 +11035,115617,superhero,1436444538 +11035,129739,emotional,1438012390 +11035,129739,inspirational,1438012426 +11035,129739,thought provoking,1438012402 +11035,134853,coming of age,1449749559 +11035,134853,creative,1449749540 +11035,134853,imaginative,1449749539 +11035,134853,Pixar,1449749529 +11038,110,best movie ever made,1138672983 +11038,592,jack nicholson is great,1138672904 +11038,1214,best space horror,1138672664 +11038,6711,Scarlett Johansson,1177625731 +11038,41566,fantasy,1170124607 +11038,41566,kids,1170124607 +11038,41566,mythology,1170124607 +11038,41569,emotional,1138672729 +11038,41569,great ending,1138672729 +11038,41569,too slow,1138672729 +11038,42730,average acting,1139250408 +11038,42730,emotional,1139250408 +11038,42730,good sports movie,1139250408 +11056,4011,Brad Pitt,1215629946 +11056,4011,gypsy accent,1215629943 +11056,4963,heist,1215630238 +11056,56788,Good dialogue,1215630901 +11056,57669,irish accent,1215630361 +11098,541,cyberpunk,1382104411 +11098,541,replicant,1382104466 +11098,1233,German,1271389767 +11098,1233,submarine,1271389754 +11098,1233,tense,1271389820 +11098,1233,too long,1271389824 +11098,1233,U-boat,1271389802 +11098,1233,World War II,1271389750 +11098,1234,con artists,1270506364 +11098,1234,con men,1270506364 +11098,1234,great soundtrack,1270506383 +11098,8950,Christian Bale,1272395763 +11098,8950,guilt,1272395800 +11098,8950,hit and run,1272396028 +11098,8950,insomnia,1272395789 +11098,8950,memory,1272395769 +11098,8950,post-traumatic stress disorder,1272395884 +11098,8950,twist ending,1272395917 +11098,47999,abortion,1271011578 +11098,47999,bowling,1271011582 +11098,47999,children,1271011590 +11098,47999,christian fundamentalism,1271011565 +11098,47999,Christianity,1271011542 +11098,47999,creationism,1271011549 +11098,47999,documentary,1271011615 +11098,47999,fundamentalism,1271011603 +11098,47999,harry potter,1271011572 +11098,47999,propaganda,1271011595 +11098,47999,religion,1271011552 +11098,48516,Boston,1381949469 +11098,48516,informer,1381949536 +11098,48516,irish gang,1381949400 +11098,48516,mole,1381949423 +11098,48516,organized crime,1381949507 +11098,66665,Characters with great depth,1271778114 +11098,66665,children,1271778159 +11098,66665,family,1271778159 +11098,66665,great soundtrack,1271778057 +11098,66665,Moving,1271778091 +11098,66665,moving inspiring spiritual,1271778083 +11098,66665,philosophical,1271778052 +11098,66665,pregnancy,1271778048 +11098,66665,road trip,1271778172 +11098,66665,Sam Mendes,1271778046 +11098,66665,soundtrack,1271778044 +11098,68159,congressman,1381948338 +11098,68159,cover up,1381948723 +11098,68159,journalism,1381948235 +11098,68159,mistress,1381948355 +11098,68159,murder,1381948323 +11098,68159,newspaper,1381948657 +11098,68159,political corruption,1381948248 +11098,68159,politics,1381948250 +11098,68159,reporter,1381948670 +11098,69951,devil,1274207069 +11098,69951,dwarf,1274207228 +11098,69951,hanging,1274207039 +11098,69951,imagination,1274206976 +11098,69951,immortality,1274207180 +11098,69951,Lily Cole,1274207268 +11098,69951,stage show,1274207220 +11098,70410,anthropology,1272470859 +11098,70410,Chloë Sevigny,1272470713 +11098,70410,Clea DuVall,1272471193 +11098,70410,human behaviour,1272470780 +11098,70410,human experiment,1272470780 +11098,70410,human testing,1272471109 +11098,70410,Jonathan Liebesman,1272471171 +11098,70410,martyrdom,1272470806 +11098,70410,Nick Cannon,1272471181 +11098,70410,patriotism,1272471090 +11098,70410,Peter Stormare,1272471206 +11098,70410,psychology,1272471257 +11098,70410,questions,1272471308 +11098,70410,recruitment,1272470958 +11098,70410,research,1272471274 +11098,70410,study,1272471274 +11098,70410,suicide,1272470806 +11098,70410,suicide bomber,1272471150 +11098,70410,survival,1272471067 +11098,70410,Timothy Hutton,1272471213 +11098,70410,US citizen,1272470986 +11098,73268,blood,1273681828 +11098,73268,cure,1273681847 +11098,73268,dismemberment,1273682141 +11098,73268,human harvesting,1273682069 +11098,73268,immortality,1273682267 +11098,73268,plague,1273682025 +11098,73268,starvation,1273682121 +11098,73268,undead,1273682282 +11098,73268,vampires,1273681823 +11098,76251,comic book,1273656888 +11098,76251,drug dealing,1273656995 +11098,76251,graphic violence,1273656951 +11098,76251,Hit Girl,1273656975 +11098,76251,revenge,1273657051 +11098,76251,superhero,1273656885 +11098,76251,vigilante,1273657009 +11098,88744,Alzheimer's disease,1382816883 +11098,88744,apes,1382816866 +11098,88744,chimp,1382817023 +11098,88744,family,1382817194 +11098,88744,genetics,1382816810 +11098,88744,gorilla,1382816918 +11098,88744,orangatang,1382817014 +11098,88744,Pharmaceutical companies,1382817318 +11098,88744,primatologist,1382817111 +11098,88744,sign language,1382817175 +11098,90600,art,1382034882 +11098,90600,forgery,1382034904 +11098,90600,painting,1382034869 +11098,90600,theft,1382034860 +11098,104272,captivity,1383923331 +11098,104272,killer whale,1383923311 +11098,104272,trainer,1383923391 +11116,296,bruce willis,1445373808 +11116,296,cult film,1445373810 +11116,296,dark comedy,1445373801 +11116,296,multiple storylines,1445373793 +11116,296,Quentin Tarantino,1445373787 +11116,296,Samuel L. Jackson,1445373796 +11116,296,violence,1445373799 +11116,1196,action,1445373305 +11116,1196,aliens,1445373309 +11116,1196,classic,1445373325 +11116,1196,Harrison Ford,1445373295 +11116,1196,sci-fi,1445373288 +11116,1196,The force,1445373353 +11116,1196,war,1445373315 +11116,2959,Brad Pitt,1446235430 +11116,2959,psychology,1446235428 +11130,1206,mindfuck,1142500139 +11138,69027,french comedy,1427486083 +11138,69027,humor,1427486083 +11138,69027,spy,1427486083 +11138,121231,horror,1433785321 +11138,121231,mystery,1433785350 +11156,260,classic sci-fi,1443930059 +11156,260,fun,1443930069 +11168,54259,charlie cox,1393908367 +11168,54259,cute,1393908244 +11168,70497,charlie cox,1393908351 +11182,866,lesbian,1144748401 +11182,866,slash,1144747826 +11182,1690,slash,1144748015 +11182,2578,lesbian,1144748409 +11182,2578,slash,1144747980 +11182,3786,lesbian,1144748414 +11182,3786,slash,1144748002 +11182,3882,slash,1144748039 +11182,4248,slash,1144747997 +11182,5219,slash,1144748093 +11182,5991,slash,1144747944 +11182,32300,lesbian,1144748438 +11182,32300,slash,1144747812 +11182,42721,slash,1144748034 +11195,3415,meditative,1186082485 +11195,27834,cinematography,1194208631 +11195,27834,JOURNEY OF SELF-DISCOVERY,1194208646 +11195,27834,psychology,1194208642 +11211,296,bloody,1425145292 +11211,296,exciting,1425145292 +11211,296,sexy,1425145292 +11211,1011,probably saw this and loved it.,1137468650 +11211,36517,A love love story,1138852022 +11219,48043,alternate reality,1447253109 +11219,48043,nonlinear,1447253124 +11219,48043,philosophical,1447253119 +11219,48043,time travel,1447253111 +11219,68237,artificial intelligence,1447253028 +11219,68237,psychology,1447253025 +11219,68237,Sci-fi,1447253014 +11219,68237,space,1447253017 +11219,68237,thought-provoking,1447253022 +11219,79132,action,1447253454 +11219,79132,alternate reality,1447253420 +11219,79132,complicated,1447253450 +11219,79132,dreamlike,1447253459 +11219,79132,heist,1447253470 +11219,79132,multiple interpretations,1447253428 +11219,79132,philosophy,1447253435 +11219,79132,psychology,1447253473 +11219,79132,sci-fi,1447253447 +11219,79132,thought-provoking,1447253442 +11219,89039,Brit Marling,1451188787 +11219,89039,parallel universe,1451188778 +11219,89039,Parallel worlds,1451188745 +11219,97752,multiple storylines,1447253138 +11219,97752,philosophy,1447253154 +11219,97752,sci-fi,1447253151 +11219,97752,thought-provoking,1447253141 +11219,109487,artificial intelligence,1447252976 +11219,109487,good science,1447252992 +11219,109487,philosophical issues,1447252982 +11219,109487,physics,1447252969 +11219,109487,relativity,1447252945 +11219,109487,sci-fi,1447252935 +11219,109487,science fiction,1447252966 +11219,109487,space,1447252930 +11219,109487,space travel,1447252957 +11219,109487,thought-provoking,1447252949 +11219,109487,time travel,1447252971 +11219,109487,time-travel,1447252941 +11219,109487,wormhole,1447252995 +11219,112804,reincarnation,1449452102 +11219,114935,sci-fi,1449766030 +11219,114935,science fiction,1449766027 +11219,114935,time travel,1449766023 +11219,114935,twist ending,1449766033 +11223,44199,good story,1293302156 +11223,44199,Nazis,1293302158 +11223,44199,twist ending,1293302149 +11225,260,classic sci-fi,1443146578 +11225,260,space adventure,1443146590 +11227,3996,action fantasy,1140925260 +11258,32,complicated,1254167372 +11258,32,dystopia,1254167375 +11258,32,genetics,1254167378 +11258,32,Post apocalyptic,1254167382 +11258,32,post-apocalyptic,1254167384 +11258,32,psychology,1254167386 +11258,32,twist ending,1254167392 +11258,32,violence,1254167395 +11258,34,Animal,1254185075 +11258,34,Animal movie,1254185081 +11258,34,animals,1254185086 +11258,34,barnyard animals,1254185114 +11258,34,children,1254185119 +11258,34,fantasy,1254185126 +11258,34,farm,1254185131 +11258,34,pigs,1254185142 +11258,34,rats,1254185164 +11258,34,sheep,1254185186 +11258,34,talking animals,1254185189 +11258,47,crime,1254168041 +11258,47,disturbing,1254168045 +11258,47,drama,1254168048 +11258,47,greed,1254168050 +11258,47,horror,1254168084 +11258,47,investigation,1254168053 +11258,47,police,1254168055 +11258,47,powerful ending,1254168057 +11258,47,psychology,1254168059 +11258,47,serial killer,1254168062 +11258,47,thriller,1254168084 +11258,47,twist ending,1254168064 +11258,47,twists & turns,1254168066 +11258,47,violent,1254168068 +11258,50,complicated,1254167648 +11258,50,conspiracy,1254167651 +11258,50,Crime,1254167654 +11258,50,Dark,1254167657 +11258,50,heist,1254167662 +11258,50,mindfuck,1254167665 +11258,50,organized crime,1254167668 +11258,50,suspense,1254167671 +11258,50,thriller,1254167643 +11258,50,tricky,1254167676 +11258,50,twist ending,1254167678 +11258,110,drama,1254166583 +11258,110,Nudity (Topless),1254166598 +11258,110,revenge,1254166608 +11258,110,sword fight,1254166613 +11258,110,violent,1254166619 +11258,110,war,1254166646 +11258,133,drama,1254162999 +11258,133,spanish,1254162998 +11258,150,catastrophe,1254166724 +11258,150,disaster,1254166727 +11258,150,drama,1254166731 +11258,150,suspense,1254166735 +11258,150,tense,1254166737 +11258,153,bank robbery,1254168316 +11258,153,crime,1254168367 +11258,153,rubber nipples,1254168320 +11258,153,vigilante,1254168324 +11258,165,bmf,1254168103 +11258,165,crime,1254168106 +11258,165,heist,1254168121 +11258,165,more explosions,1254168128 +11258,165,terrorism,1254168133 +11258,165,thriller,1254168135 +11258,165,violent,1254168137 +11258,231,Gross-out,1254184616 +11258,231,irreverent,1254184622 +11258,231,raunchy,1254184629 +11258,231,stupid,1254184647 +11258,260,war,1254166309 +11258,296,assassin,1254165862 +11258,296,black comedy,1254165872 +11258,296,cult film,1254165884 +11258,296,dark comedy,1254165895 +11258,296,drugs,1254165902 +11258,296,gangsters,1254165907 +11258,296,mafia,1254165912 +11258,296,organized crime,1254165926 +11258,296,Quentin Tarantino,1254165944 +11258,296,violence,1254165948 +11258,316,tense,1254184264 +11258,316,violence,1254184319 +11258,318,crime,1254166229 +11258,318,drama,1254166235 +11258,318,justice,1254166241 +11258,318,prison,1254166249 +11258,318,prison escape,1254166251 +11258,318,reflective,1254166255 +11258,318,revenge,1254166258 +11258,318,Stephen King,1254166284 +11258,318,thought-provoking,1254166261 +11258,318,twist ending,1254166263 +11258,344,Gross-out,1254167915 +11258,349,cia,1254184363 +11258,349,clancy,1254184366 +11258,349,confrontational,1254184361 +11258,349,jack ryan,1254184370 +11258,349,tense,1254184380 +11258,349,thiller,1254184393 +11258,356,bittersweet,1254166072 +11258,356,drama,1254166096 +11258,356,psychology,1254166077 +11258,356,Vietnam,1254166080 +11258,356,vietnam war,1254166083 +11258,356,war,1254166085 +11258,367,animal:dog,1254184891 +11258,367,annoying sexist stereotype mars story,1254184879 +11258,367,cartoonish,1254184885 +11258,367,comedy,1254184894 +11258,367,crime,1254184928 +11258,367,mafia,1254184910 +11258,377,AFI 100 (Thrills),1254167801 +11258,377,bomb,1254167792 +11258,377,explosions,1254167797 +11258,377,rousing,1254167807 +11258,377,speed,1254167815 +11258,377,tense,1254167822 +11258,377,Thriller,1254167818 +11258,377,visceral,1254167827 +11258,380,70mm,1254167279 +11258,380,espionage,1254167290 +11258,380,spies,1254167309 +11258,380,terrorism,1254167312 +11258,380,thriller,1254167317 +11258,457,AFI 100 (Thrills),1254166669 +11258,457,crime,1254166676 +11258,457,menacing,1254166684 +11258,457,murder,1254166687 +11258,457,ominous,1254166690 +11258,457,paranoid,1254166694 +11258,457,police investigation,1254166696 +11258,457,tense,1254166699 +11258,457,thriller,1254166702 +11258,457,violence,1254166706 +11258,480,drama,1254166196 +11258,480,genetics,1254166200 +11258,480,horror,1254166203 +11258,480,Suspense,1254166211 +11258,500,children,1254184524 +11258,500,Comedy,1254184526 +11258,500,creepy stalker,1254184492 +11258,500,cross dressing,1254184529 +11258,500,cross dressing men,1254184533 +11258,500,divorce,1254184482 +11258,500,double life,1254184537 +11258,500,Drama,1254184497 +11258,500,impostor,1254184508 +11258,500,men in drag,1254184503 +11258,500,Moving,1254184520 +11258,500,transvestism,1254184500 +11258,527,depressing,1254167337 +11258,527,disturbing,1254167341 +11258,527,drama,1254167355 +11258,527,Holocaust,1254167344 +11258,527,Nazis,1254167346 +11258,527,war,1254167358 +11258,527,World War II,1254167349 +11258,588,animation,1254167516 +11258,588,children,1254167539 +11258,588,fairy tale,1254167519 +11258,588,funny,1254167522 +11258,588,kids,1254167543 +11258,588,kids and family,1254167555 +11258,588,musical,1254167526 +11258,589,apocalypse,1254166806 +11258,589,assassin,1254166817 +11258,589,dystopia,1254166820 +11258,589,nuclear war,1254166824 +11258,589,violence,1254166830 +11258,590,boring,1254167197 +11258,590,drama,1254167193 +11258,590,suicide attempt,1254167179 +11258,590,war,1254167185 +11258,590,western,1254167188 +11258,592,crime,1254166764 +11258,592,dark,1254166767 +11258,592,revenge,1254166769 +11258,592,thriller,1254166778 +11258,592,vigilante,1254166773 +11258,593,cannibalism,1254166147 +11258,593,crime,1254166154 +11258,593,disturbing,1254166157 +11258,593,drama,1254166160 +11258,593,gothic,1254166164 +11258,593,Hannibal Lecter,1254166167 +11258,593,psychiatrist,1254166172 +11258,593,psychology,1254166175 +11258,593,serial killer,1254166177 +11258,595,affectionate,1254182581 +11258,595,animation,1254182587 +11258,595,beautiful,1254182591 +11258,595,Disney animated feature,1254182594 +11258,595,fairy tale,1254182597 +11258,595,France,1254182649 +11258,595,gentle,1254182603 +11258,595,heartwarming,1254182607 +11258,595,heroine,1254182609 +11258,595,humorous,1254182613 +11258,595,kids and family,1254182617 +11258,595,Oscar (Best Music - Original Score),1254182622 +11258,595,Oscar (Best Music - Original Song),1254182625 +11258,595,redemption,1254182633 +11258,595,slow,1254182676 +11258,595,whimsical,1254182638 +11258,597,plot:client falls in love with sex worker,1254184586 +11258,597,PROSTITUTES,1254184592 +11258,597,prostitution,1254184589 +11258,608,black comedy,1254167588 +11258,608,crime,1254167591 +11258,608,crime gone awry,1254167593 +11258,608,dark comedy,1254167596 +11258,608,disturbing in a bad way,1254167599 +11258,608,hostage,1254167602 +11258,608,kidnapping,1254167605 +11258,608,murder,1254167608 +11258,608,police,1254167611 +11258,608,violent,1254167613 +11258,648,Classic Thriller,1254167975 +11258,648,confusing,1254167979 +11258,648,confusing plot,1254167982 +11258,648,espionage,1254167985 +11258,648,military,1254167990 +11258,648,murder,1254167993 +11258,648,suspense,1254167995 +11258,654,drama,1254162891 +11258,654,german,1254162891 +11258,733,Alcatraz,1254184734 +11258,733,biological warfare,1254184737 +11258,733,prison,1254184781 +11258,733,R,1254184783 +11258,733,setting:Alcatraz,1254184801 +11258,733,setting:prison,1254184804 +11258,733,terrorism,1254184756 +11258,733,thriller,1254184808 +11258,736,disaster,1254183896 +11258,736,natural disaster,1254183902 +11258,736,science,1254183934 +11258,736,thriller,1254183941 +11258,736,twist ending,1254183952 +11258,780,alien invasion,1254167121 +11258,780,apocalypse,1254167128 +11258,780,conspiracy theory,1254167134 +11258,780,disaster,1254167137 +11258,780,end of the world,1254167140 +11258,780,tense,1254167147 +11258,780,war,1254167152 +11258,858,crime,1254168173 +11258,858,drama,1254168184 +11258,858,Mafia,1254168187 +11258,858,melancholy,1254168190 +11258,858,Nudity (Topless),1254168193 +11258,858,organized crime,1254168196 +11258,986,Animal movie,1254188344 +11258,1025,animated,1254187774 +11258,1025,animation,1254187776 +11258,1025,Cartoon,1254187780 +11258,1025,children,1254187783 +11258,1025,Disney,1254187788 +11258,1025,fantasy,1254187796 +11258,1025,King Arthur,1254187793 +11258,1025,musical,1254187806 +11258,1029,animals,1254187966 +11258,1029,animation,1254187968 +11258,1029,Betamax,1254187972 +11258,1029,children cartoon,1254187976 +11258,1029,disturbing clown content,1254187984 +11258,1029,elephants,1254187990 +11258,1029,musical,1254187993 +11258,1029,orphaned cartoon character,1254187999 +11258,1029,Oscar (Best Music - Original Score),1254188026 +11258,1029,sad. again with the dying animated animals,1254188004 +11258,1029,subgenre:fable,1254188011 +11258,1029,talking animals,1254188008 +11258,1196,war,1254167703 +11258,1198,Nazis,1254167950 +11258,1198,racism,1254167953 +11258,1198,World War II,1254167957 +11258,1210,drama,1254167229 +11258,1210,violent,1254167223 +11258,1210,war,1254167225 +11258,2028,disturbing,1254184017 +11258,2028,drama,1254184021 +11258,2028,enormously long battle scene,1254184033 +11258,2028,Oscar (Best Sound),1254184068 +11258,2028,violent,1254184075 +11258,2028,war,1254184077 +11258,2028,World War II,1254184079 +11258,2048,animation,1254162565 +11258,2048,kids,1254162565 +11258,2048,kids and family,1254162565 +11258,2048,mouse,1254162565 +11258,2083,fun movie,1254186863 +11258,2083,mummy,1254186867 +11258,2083,talking animals,1254186871 +11258,2085,animals,1254162927 +11258,2085,animation,1254162970 +11258,2085,cute,1254162970 +11258,2085,disney animated feature,1254162970 +11258,2085,dog,1254162970 +11258,2085,dogs,1254162970 +11258,2085,fashion,1254162981 +11258,2085,fun,1254162970 +11258,2085,great animated film,1254162970 +11258,2085,kids and family,1254162970 +11258,2085,kids movie,1254162970 +11258,2090,Animation,1254187107 +11258,2090,child abuse,1254187097 +11258,2090,mouse,1254187103 +11258,2090,revenge,1254187090 +11258,2102,surreal,1254187046 +11258,2499,bizarre,1254189141 +11258,2499,cancer,1254189129 +11258,2571,cult film,1254167741 +11258,2571,dystopia,1254167745 +11258,2571,fight scenes,1254167750 +11258,2571,Keanu Reeves,1254167753 +11258,2571,martial arts,1254167755 +11258,2571,philosophy,1254167758 +11258,2571,post apocalyptic,1254167761 +11258,2571,post-apocalyptic,1254167763 +11258,2571,surreal,1254167768 +11258,2571,thriller,1254167777 +11258,2762,AFI 100 (Thrills),1254184110 +11258,2762,Drama,1254184116 +11258,2762,ghosts/afterlife,1254184123 +11258,2762,mindfuck,1254184135 +11258,2762,psychology,1254184140 +11258,2762,somber,1254184145 +11258,2762,surprise ending,1254184157 +11258,2762,suspense,1254184167 +11258,2762,twist ending,1254184163 +11258,2846,cats,1254161333 +11258,2846,cats and dogs,1254161343 +11258,2846,Cute animals,1254161361 +11258,2846,dogs,1254161338 +11258,2846,heartwarming,1254161361 +11258,2846,kids,1254161361 +11258,2858,black comedy,1254167847 +11258,2858,dark comedy,1254167850 +11258,2858,Nudity (Topless - Notable),1254167853 +11258,2858,reflective,1254167859 +11258,2858,satirical,1254167860 +11258,2858,sexuality,1254167863 +11258,2858,surrealism,1254167869 +11258,2858,thought-provoking,1254167870 +11258,2858,violence,1254167873 +11258,2886,elmo,1254161286 +11258,2886,muppets,1254161265 +11258,2886,vanessa l. williams,1254161300 +11258,2899,children,1254187144 +11258,3157,cats,1254163120 +11258,3157,cheesy,1254163120 +11258,3157,childre,1254163154 +11258,3157,comedy,1254163154 +11258,3157,kids,1254163154 +11258,3157,kids movie,1254163154 +11258,3157,mouse,1254163120 +11258,3157,talking animals,1254163120 +11258,3157,talking mouse,1254163120 +11258,3397,children,1254187304 +11258,3397,light,1254187294 +11258,3397,talking animals,1254187299 +11258,3398,great childhood movie,1254187071 +11258,3398,talking animals,1254187076 +11258,3412,animals,1254187854 +11258,3412,Animals die :(,1254187861 +11258,3412,family,1254187870 +11258,3412,hunting,1254187873 +11258,3751,animals,1254187620 +11258,3751,animation,1254187622 +11258,3751,birds,1254187625 +11258,3751,children,1254187662 +11258,3751,claymation,1254187661 +11258,3751,family,1254187664 +11258,3751,funny,1254187667 +11258,3751,happy,1254187669 +11258,3751,humor,1254187663 +11258,3751,humorous,1254187660 +11258,3751,stop motion,1254187663 +11258,3751,talking animals,1254187659 +11258,3820,children,1254179010 +11258,3820,Thomas the Tank Engine,1254179028 +11258,3820,trains,1254179035 +11258,4016,Disney,1254188062 +11258,4016,Disney animated feature,1254188065 +11258,4016,empty,1254188085 +11258,4016,G,1254188090 +11258,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1254188103 +11258,5444,animation,1254182963 +11258,5444,Children,1254182968 +11258,5444,cute,1254182972 +11258,5444,Disney animated feature,1254182977 +11258,5444,family,1254182981 +11258,5444,fun,1254182984 +11258,5444,funny,1254182987 +11258,5444,heartbreaking,1254182998 +11258,5444,kids,1254183003 +11258,5444,life,1254183014 +11258,5444,redemption,1254183010 +11258,6377,animation,1254188513 +11258,6377,birds,1254188514 +11258,6377,children,1254188516 +11258,6377,Comedy,1254188520 +11258,6377,feel good movie,1254188525 +11258,6377,funny,1254188531 +11258,6377,memory loss,1254188538 +11258,6377,ocean,1254188548 +11258,6377,talking animals,1254188553 +11258,6377,underwater,1254188557 +11258,6618,cantonese,1254163887 +11258,8574,Christmas,1254166859 +11258,8574,claymation,1254166862 +11258,8574,comedy,1254166865 +11258,8574,funny,1254166868 +11258,8574,holiday,1254166871 +11258,8574,Motown,1254166874 +11258,8574,musical,1254166879 +11258,8574,short,1254166885 +11258,8711,jaded,1254187215 +11258,8765,crime,1254162869 +11258,8765,fugitive,1254162869 +11258,8765,thriller,1254162869 +11258,8920,alcoholism,1254187186 +11258,8920,drama,1254187158 +11258,8961,animation,1254188386 +11258,8961,comedy,1254188389 +11258,8961,family,1254188391 +11258,8961,funny,1254188393 +11258,26048,drama,1254163013 +11258,26048,japanese,1254163013 +11258,26048,war,1254163013 +11258,26133,mental illness,1254188489 +11258,26133,short,1254188478 +11258,31193,cartoon,1254161711 +11258,31193,disney,1254161716 +11258,31193,mental illness,1254161752 +11258,31193,series:Pooh,1254161737 +11258,31687,Disney,1254185793 +11258,33340,japanese,1254162683 +11258,46948,basketball,1254188244 +11258,46948,claymation,1254188247 +11258,46948,friends,1254188250 +11258,46948,games,1254188254 +11258,46948,halloween,1254188258 +11258,46948,Halloween theme,1254188261 +11258,46948,haunted house,1254188265 +11258,46948,house,1254188275 +11258,46948,Motion Capture,1254188277 +11258,50601,bullying,1254188319 +11258,50601,death of a child,1254188325 +11258,50601,sad,1254188322 +11258,50872,animation,1254188408 +11258,50872,books,1254188416 +11258,50872,cooking,1254188420 +11258,50872,Family,1254188423 +11258,50872,food,1254188426 +11258,50872,food/cooking,1254188428 +11258,50872,France,1254188432 +11258,50872,funny,1254188434 +11258,50872,imaginary friend,1254188442 +11258,50872,imagination,1254188445 +11258,50872,rats,1254188455 +11258,50872,talking animals,1254188459 +11258,52287,kids and family,1254187759 +11258,54248,dark,1254161914 +11258,54248,DARK COMEDY,1254161920 +11258,54248,insanity,1254161953 +11258,54248,killing,1254161958 +11258,57504,drama,1254162598 +11258,57504,japan,1254162703 +11258,57504,japanese,1254162707 +11258,58299,elephants,1254187674 +11258,58299,happy ending,1254187690 +11258,58299,jungle,1254187704 +11258,58299,talking animals,1254187709 +11258,59549,coming out,1254162726 +11258,59549,gay,1254162743 +11258,59549,gay character,1254162760 +11258,59549,gay lead character,1254162768 +11258,59549,gay relationship,1254162776 +11258,59549,gay romance,1254162781 +11258,59549,homosexuality,1254162787 +11258,59784,animals,1254163470 +11258,59784,animation,1254163470 +11258,59784,comedy,1254163470 +11258,59784,food,1254163471 +11258,59784,kids,1254163471 +11258,59784,violence,1254163484 +11258,60020,blood,1254161845 +11258,60020,drama,1254161832 +11258,60020,hurt,1254161851 +11258,60020,jet li,1254161837 +11258,60020,war,1254161827 +11258,60069,adventure,1254161594 +11258,60069,animated,1254161572 +11258,60069,animation,1254161545 +11258,60069,dystopia,1254161580 +11258,60069,environmental,1254161603 +11258,60069,family,1254161572 +11258,60069,heartfelt,1254161572 +11258,60069,love,1254161572 +11258,60069,post-apocalyptic,1254161629 +11258,60382,documentary,1254163512 +11258,63312,dark,1254161986 +11258,63312,german,1254161982 +11258,63312,thirty years' war,1254161999 +11258,63312,war,1254162002 +11258,63540,dogs,1254161666 +11258,63540,talking animals,1254161673 +11258,64993,drama,1254161882 +11258,64993,japanese,1254161875 +11258,64993,love,1254161890 +11258,64993,nature,1254161894 +11258,68486,action,1254162909 +11258,68486,drama,1254162909 +11258,68486,mandarin,1254162909 +11258,68486,war,1254162909 +11258,68954,adventure,1254161440 +11258,68954,computer animation,1254161440 +11258,68954,divorce,1254161459 +11258,68954,dogs,1254161440 +11258,68954,dreams,1254161468 +11258,68954,feel good movie,1254161450 +11258,68954,friendship,1254161440 +11258,68954,happy ending,1254161440 +11258,68954,heartbreaking,1254161495 +11258,68954,mourning,1254161495 +11258,68954,pretty,1254161514 +11258,68954,sappy,1254161499 +11258,68954,sweet,1254161505 +11258,68954,talking animals,1254161440 +11258,70334,comedy,1254163226 +11258,70334,disney,1254163235 +11258,70334,drama,1254163243 +11258,70334,happy,1254163226 +11258,70334,kids movie,1254163226 +11258,70334,music,1254163226 +11258,70334,musical,1254163226 +11289,1586,Nudity (Rear),1175013689 +11296,260,ok,1439994008 +11296,260,space,1439993981 +11314,318,classic,1157632091 +11314,1203,courtroom drama,1184126055 +11314,53125,BORING!,1184125957 +11314,53125,crap,1184125952 +11314,53125,pirates,1184125959 +11315,6256,Giallo,1191526823 +11315,8861,zombies,1191572610 +11315,51255,divertente,1191518933 +11329,260,luke skywalker,1430815789 +11329,260,sci-fi,1430815658 +11329,260,space,1430815726 +11333,40732,blood,1452894117 +11333,40732,horror,1452894108 +11333,40732,tense,1452894106 +11333,56145,monster,1452894075 +11333,56145,surprise ending,1452894072 +11333,56145,Survival,1452894069 +11333,57274,despair,1452895695 +11333,57274,infection,1452895680 +11333,57274,virus,1452895675 +11333,57368,monster,1452894027 +11333,74750,demon possession,1452895741 +11334,318,Morgan Freeman,1453690522 +11334,318,prison,1453690526 +11338,6357,remake,1168033589 +11338,6374,remake,1168033560 +11338,7247,child abuse,1168039927 +11339,50,twist ending,1290369045 +11339,2762,psychology,1290369033 +11339,2762,twist ending,1290369025 +11339,4993,Adventure,1428060204 +11339,4993,based on a book,1428060194 +11339,4993,fantasy world,1428060180 +11339,4993,Magic,1428060173 +11339,67255,dark,1418499721 +11339,67255,investigation,1418499734 +11339,67255,journalism,1418499747 +11339,67255,suspense,1418499737 +11339,71033,romance,1290369014 +11339,71466,funny,1290368803 +11339,101741,Mindfuck,1419271606 +11357,296,action,1241009210 +11357,296,assassin,1241009212 +11357,296,Black comedy,1241009200 +11357,296,Bruce Willis,1241009199 +11357,296,classic,1241009197 +11357,296,crime,1241009195 +11357,296,dark comedy,1241009192 +11357,296,multiple storylines,1241009205 +11357,296,nonlinear,1241009190 +11357,296,notable soundtrack,1241009187 +11357,296,organized crime,1241009184 +11357,296,Quentin Tarantino,1241009178 +11357,296,Samuel L. Jackson,1241009179 +11357,296,violence,1241009182 +11357,541,Harrison Ford,1157482850 +11357,750,I Don't Get It,1156128640 +11357,858,I Don't Get It,1156128781 +11357,1266,clint eastwood,1138023713 +11357,1266,gene hackman,1138023713 +11357,1266,western,1138023713 +11357,1291,indiana jones,1394458706 +11357,1291,Steven Spielberg,1394458699 +11357,1343,deniro,1138023594 +11357,1343,scary,1138023594 +11357,1967,Adventure,1394458669 +11357,1967,fantasy,1394458665 +11357,1967,surreal,1394458673 +11357,2005,Steven Spielberg,1394458749 +11357,2115,Indiana Jones,1394458712 +11357,2115,Steven Spielberg,1394458715 +11357,2232,David Hewlett,1241013359 +11357,2232,directorial debut,1241013355 +11357,2232,disgusting,1241013361 +11357,2232,foreign,1241013364 +11357,2232,intense,1241013330 +11357,2232,numbers,1241013334 +11357,2232,original,1241013327 +11357,2232,plot point:solving riddles/puzzles,1241013322 +11357,2232,plot point:sudden scientific insight,1241013352 +11357,2232,psychological,1241013348 +11357,2232,psychology,1241013313 +11357,2232,scifi,1241013315 +11357,2232,survival horror,1241013310 +11357,2232,Vincenzo Natali,1241013367 +11357,2275,cheesy,1138023593 +11357,2275,guitar,1138023593 +11357,2366,action,1139121243 +11357,2366,adventure,1139121243 +11357,2366,classic,1139121244 +11357,2366,stop-motion,1139121244 +11357,2423,chevy chase,1271082549 +11357,2423,christmas,1138023699 +11357,2423,humor,1271082552 +11357,2791,classic,1139121224 +11357,2791,comedy,1139121224 +11357,4039,classic,1241013096 +11357,4103,Zzz,1157483084 +11357,4963,casino,1138023760 +11357,4963,crime,1138023760 +11357,4963,heist,1138023760 +11357,4993,fantasy,1394458688 +11357,5767,not interested,1169788360 +11357,6539,action,1138023779 +11357,6539,adventure,1138023779 +11357,6539,curse,1138023779 +11357,6539,pirates,1138023779 +11357,6773,animation,1394459311 +11357,6773,bicycling,1394459330 +11357,6773,French,1394459326 +11357,6773,no dialogue,1394459332 +11357,6773,quirky,1394459316 +11357,6773,stylized,1394459318 +11357,7125,not interested,1169788350 +11357,7361,comedy,1241009131 +11357,7361,cult film,1241009134 +11357,7361,drama,1241009129 +11357,7361,I Don't Get It,1241009154 +11357,7361,imagination,1241009127 +11357,7361,Jim Carrey,1241009111 +11357,7361,quirky,1241009120 +11357,7361,romance,1241009136 +11357,7361,sci-fi,1241009123 +11357,7361,surreal,1241009121 +11357,7361,surrealism,1241009140 +11357,26403,adapted from:book,1241009009 +11357,26403,animation,1241009024 +11357,26403,classic,1241009029 +11357,26403,dragon,1241009040 +11357,26403,scary,1241009037 +11357,26403,Tolkien,1241009015 +11357,31804,not as good as I expected,1169789721 +11357,34162,comedy,1139121192 +11357,34162,wedding,1139121192 +11357,34332,action,1139121175 +11357,34332,comedy,1139121175 +11357,34332,superhero,1139121175 +11357,35836,comedy,1139121206 +11357,37830,confusing plot,1169789650 +11357,39183,cowboy,1139590702 +11357,39183,gay,1139590702 +11357,40732,goretastic,1157482801 +11357,40732,hot girls!,1157482801 +11357,40732,overrated,1157482801 +11357,40815,adventure,1138476101 +11357,40815,fantasy,1138476101 +11357,40815,wizards,1138476101 +11357,41566,adventure,1138023670 +11357,41566,children,1138023670 +11357,41566,fantasy,1138023670 +11357,41569,adventure,1138476116 +11357,41569,remake,1138476116 +11357,41569,sfx,1138476116 +11357,42730,sports,1139590716 +11357,42738,vampire,1138023629 +11357,42738,violent,1138023629 +11357,42738,werewolf,1138023629 +11357,43919,allyson hannigan,1140576613 +11357,43919,comedy,1140576613 +11357,43919,spoof,1140576613 +11357,43919,terrible,1169789712 +11357,44191,not as good as I expected,1169789689 +11357,44840,got bored & turned it off,1169789675 +11357,45186,better than expected,1169789636 +11357,45431,better than expected,1169789572 +11357,45447,not as good as I expected,1169789608 +11357,45499,better than expected,1169789626 +11357,45517,better than expected,1169789571 +11357,47264,got bored & turned it off,1169789480 +11357,47518,got bored & turned it off,1169788747 +11357,47610,19th century,1241009931 +11357,47610,austria,1241009934 +11357,47610,cool effects,1241009913 +11357,47610,costume drama,1241009915 +11357,47610,Edward Norton,1241009888 +11357,47610,Jessica Biel,1241009891 +11357,47610,love story,1241009896 +11357,47610,magic,1241009894 +11357,47610,Oscar Nom 2007,1241009898 +11357,47610,Paul Giamatti,1241009901 +11357,47610,romance,1241009919 +11357,47610,sex scene,1241009921 +11357,47610,stage magic,1241009904 +11357,47610,surprise ending,1241009908 +11357,47610,twist ending,1241009905 +11357,47997,stupid fun,1173218126 +11357,48412,not interested,1169788305 +11357,50798,looks bad but i'm curious,1173218159 +11357,50804,boring,1173218147 +11357,50872,animation,1241009754 +11357,50872,Disney,1241009756 +11357,50872,Family,1241009775 +11357,50872,food,1241009773 +11357,50872,great for the kids and adults,1241009780 +11357,50872,imdb top 250,1241009763 +11357,50872,Oscar (Best Animated Feature),1241009766 +11357,50872,pixar,1241009768 +11357,50872,Pixar animation,1241009787 +11357,50872,setting:Paris,1241009783 +11357,51662,cannot wait!,1173218077 +11357,55768,computer animation,1241014608 +11357,55768,Dreamworks,1241014611 +11357,55768,ending kinda ruined it,1241014614 +11357,55768,Renée Zellweger,1241014606 +11357,55768,satire,1241014623 +11357,55820,ambiguous ending,1241009824 +11357,55820,coen brothers,1241009809 +11357,55820,great acting,1241009812 +11357,55820,I Don't Get It,1241009797 +11357,55820,imdb top 250,1241009837 +11357,55820,Javier Bardem,1241009817 +11357,55820,no ending,1241009819 +11357,55820,overrated,1241009821 +11357,55820,Tommy Lee Jones,1241009801 +11357,55820,twist ending,1241009805 +11357,55820,violent,1241009804 +11357,55995,3D,1241008932 +11357,55995,animation,1241008974 +11357,55995,based on a poem,1241008971 +11357,55995,CG animation,1241008946 +11357,55995,Crispin Glover,1241008954 +11357,55995,dragon,1241008936 +11357,55995,Neil Gaiman,1241008957 +11357,55995,Robert Zemeckis,1241008960 +11357,55995,Robin Wright Penn,1241008963 +11357,56251,animation,1241008489 +11357,56251,billy west,1241008494 +11357,56251,HD,1241008521 +11357,56251,intelligent humor,1241008503 +11357,56251,john di maggio,1241008499 +11357,56251,sci fi,1241008506 +11357,56251,video only,1241008516 +11357,56367,adoption,1241013149 +11357,56367,Ellen Page,1241013147 +11357,56367,Michael Cera,1241013139 +11357,56367,overrated,1241013137 +11357,56367,pregnancy,1241013135 +11357,59369,action,1241013160 +11357,59369,car chase,1241013182 +11357,59369,crime,1241013165 +11357,59369,Famke Janssen,1241013179 +11357,59369,father daughter relationship,1241013189 +11357,59369,fight scenes,1241013172 +11357,59369,Liam Neeson,1241013170 +11357,59369,special forces,1241013184 +11357,59369,thriller,1241013168 +11357,59784,animation,1394458656 +11357,59784,comedy,1394458659 +11357,59784,martial arts,1394458661 +11357,60161,animation,1241008633 +11357,60161,billy west,1241008637 +11357,60161,comedy,1241008652 +11357,60161,HD,1241008629 +11357,60161,intelligent humor,1241008655 +11357,60161,john di maggio,1241008644 +11357,60161,sci fi,1241008649 +11357,60161,video only,1241008659 +11357,60684,Adaptation,1241013259 +11357,60684,author:Alan Moore,1241013280 +11357,60684,based on a comic,1241013240 +11357,60684,comic book,1241013254 +11357,60684,Comic Movie,1241013251 +11357,60684,comics,1241013276 +11357,60684,IMAX,1241013271 +11357,60684,Jackie Earle Haley,1241013268 +11357,60684,Zack Snyder,1241013262 +11357,60950,artists,1241015619 +11357,60950,Barcelona,1241015595 +11357,60950,chick flick,1241015606 +11357,60950,Javier Bardem,1241015602 +11357,60950,Scarlett Johansson,1241015600 +11357,60950,Spain,1241015598 +11357,60950,threesome,1241015610 +11357,60950,Woody Allen,1241015627 +11357,62376,adventure,1241008284 +11357,62376,Bill Murray,1241008276 +11357,62376,steampunk,1241008271 +11357,62376,stylistic,1241008301 +11357,62956,animation,1241008373 +11357,62956,billy west,1241008391 +11357,62956,fantasy spoof,1241008342 +11357,62956,HD,1241008367 +11357,62956,intelligent humor,1241008379 +11357,62956,john di maggio,1241008399 +11357,62956,video only,1241008451 +11357,65261,Animation,1243255608 +11357,65261,Hayao Miyazaki,1243255602 +11357,65261,Long wait for release,1243255621 +11357,66297,animation,1241008617 +11357,66297,comedy,1241008617 +11357,66297,HD,1241008539 +11357,66297,intelligent humor,1241008617 +11357,66297,sci fi,1241008617 +11357,66934,free to download,1241007981 +11357,66934,joss whedon,1241008011 +11357,66934,musical,1241007997 +11357,66934,Neil Patrick Harris,1241007984 +11357,67408,3D,1241007922 +11357,67408,animation,1241007899 +11357,67408,computer animation,1241007902 +11357,67408,Dreamworks,1241007917 +11357,67408,Kiefer Sutherland,1241007909 +11357,67408,Seth Rogen,1241007906 +11357,68358,action,1241960698 +11357,68358,adventure,1241960701 +11357,68358,jj abrams,1241960713 +11357,68358,reboot,1241960719 +11357,68358,sci fi,1241960705 +11357,68358,Star Trek,1241960689 +11357,72226,animation,1394459370 +11357,72226,father-son relationship,1394459375 +11357,72226,Meryl Streep,1394459384 +11357,72226,Roald Dahl,1394459363 +11357,72226,stop motion,1394459361 +11357,72226,visually appealing,1394459367 +11357,72226,Wes Anderson,1394459379 +11357,95167,Pixar,1394458792 +11357,102125,action,1394458650 +11357,102125,comic book,1394458647 +11357,102125,superhero,1394458652 +11357,111360,Luc Besson,1417012839 +11357,111360,Morgan Freeman,1417012841 +11357,111360,Scarlett Johansson,1417012844 +11357,115231,Asshole with a heart of gold,1417012953 +11357,115231,Bill Murray,1417012908 +11357,115231,Chris O'Dowd,1417012930 +11357,115231,Melissa McCarthy,1417012918 +11358,318,Stephen King,1264877471 +11358,51412,bad ending,1264280514 +11358,51412,crap,1264280452 +11358,51412,Nicolas Cage,1264280488 +11358,51412,plot holes,1264280552 +11358,51412,plot twist,1264280468 +11358,51412,What's Up With The Da Vinci Hair Do,1264280582 +11358,60074,bad ending,1264280351 +11358,60074,plot twist,1264280385 +11358,60074,will smith,1264280369 +11363,6890,enigmatic,1179777614 +11392,7318,Jesus Christ,1424986262 +11392,7318,religion,1424986239 +11392,81564,3d,1424986345 +11392,81564,animation,1424986345 +11392,81564,comedy,1424986345 +11399,296,nonlinear,1421547169 +11399,296,quentin tarantino,1421547169 +11399,296,violent,1421547169 +11399,318,innocent accused,1427625514 +11399,318,morgan freeman,1427625514 +11399,318,tim robbins,1427625514 +11399,356,forgettable,1423369777 +11399,356,tedious,1423369777 +11399,356,tom hanks,1423369777 +11399,457,man on the run,1332850379 +11399,593,anthony hopkins,1426154152 +11399,593,jodie foster,1426154152 +11399,593,psychothriller,1426154152 +11399,1682,gnosticism,1412422084 +11399,1748,amnesia,1344781674 +11399,1748,gnosticism,1412422122 +11399,2571,gnosticism,1412422046 +11399,4226,amnesia,1344781661 +11399,4226,memory,1344782581 +11399,4848,amnesia,1344781688 +11399,5418,amnesia,1344781762 +11399,7361,amnesia,1344781700 +11399,8665,amnesia,1344781749 +11399,27788,amnesia,1344781712 +11399,44199,heist,1346344674 +11399,54286,amnesia,1344781740 +11399,80860,predictable,1290071277 +11399,90600,man on the run,1332850335 +11399,94864,script,1357994519 +11399,97938,strangely unmoving,1357219686 +11399,107406,gnosticism,1412422022 +11400,85414,parallel universe,1450621522 +11400,85414,sci-fi,1450621560 +11400,85414,twist ending,1450621542 +11400,109487,existence,1450621440 +11400,109487,interesting ideea,1450621430 +11400,109487,philosophical issues,1450621329 +11400,109487,space,1450621389 +11422,95,John Travolta,1331137342 +11422,95,John Woo,1331137380 +11422,492,Woody Allen,1332786756 +11422,971,Classic,1333679590 +11422,971,Elizabeth Taylor,1333679638 +11422,971,old,1333679574 +11422,971,Paul newman,1333679610 +11422,1131,French,1333505722 +11422,1132,French,1333505634 +11422,1237,Death,1331135455 +11422,1237,existentialism,1331135458 +11422,1344,Gregory Peck,1331868184 +11422,1573,John Travolta,1331137483 +11422,1573,Nicolas Cage,1331137473 +11422,2701,steampunk,1334250504 +11422,3400,dreams,1331867982 +11422,4022,loneliness,1333504362 +11422,4069,Jennifer Lopez,1331135367 +11422,4069,Matthew McConaughey,1331135369 +11422,4069,standard romantic comedy,1331135372 +11422,4646,cheesy,1330656833 +11422,4646,Clive Owen,1330656755 +11422,4646,flowers,1330656775 +11422,4646,predictable,1330656833 +11422,4646,prison,1330656781 +11422,4646,Quirky,1330656778 +11422,4855,Clint Eastwood,1331135810 +11422,4855,Dirty Harry,1331135821 +11422,4855,setting:San Francisco,1331135814 +11422,5464,boring,1334250233 +11422,5464,father-son relationship,1334250219 +11422,5464,Jude Law,1334250253 +11422,5464,Paul Newman,1334250216 +11422,5464,revenge,1334250249 +11422,5464,Tom Hanks,1334250213 +11422,5506,Paul Rodriguez,1333340766 +11422,5952,new zealand,1331135525 +11422,8874,black comedy,1331135439 +11422,8874,british comedy,1331135418 +11422,8874,dark comedy,1331135437 +11422,8874,funny,1331135424 +11422,8874,Simon Pegg,1331135420 +11422,8874,zombies,1331135429 +11422,26937,everything,1336924974 +11422,30810,Bill Murray,1331487530 +11422,30810,david bowie,1331487534 +11422,30810,great soundtrack,1331487527 +11422,30810,Wes Anderson,1331487538 +11422,31804,alternate reality,1337044732 +11422,31804,great cinematography,1337044734 +11422,31804,vampires,1337044736 +11422,37733,David Cronenberg,1331135609 +11422,37733,Viggo Mortensen,1331135596 +11422,37733,Violence,1331135615 +11422,44788,censorship,1332125984 +11422,44788,corruption,1332125995 +11422,44788,movie business,1332125988 +11422,44788,must see,1332125974 +11422,44788,Nudity (Full Frontal),1332125981 +11422,51709,ending music,1336275686 +11422,51709,Korea,1336275661 +11422,51709,sea monster,1336275663 +11422,55118,Naomi Watts,1330657183 +11422,55118,organized crime,1331135569 +11422,55118,Viggo Mortensen,1330657180 +11422,56949,Katherine Heigl,1332786847 +11422,59421,Ashton Kutcher,1350311206 +11422,61132,Ben Stiller,1333504664 +11422,61132,Robert Downey Jr.,1333504664 +11422,71464,ending,1332786513 +11422,72226,George Clooney,1331487690 +11422,72226,Meryl Streep,1331487711 +11422,72226,Roald Dahl,1331487705 +11422,72226,stop motion,1331487700 +11422,72226,Wes Anderson,1331487685 +11422,78746,Troll 2,1330656688 +11422,80549,Stanley Tucci,1331937430 +11422,86320,cinematography,1333992491 +11422,86320,depression,1333992863 +11422,86320,Kirsten Dunst,1333992488 +11422,86898,cinematography,1331866383 +11422,86898,life & death,1331866414 +11422,86898,meaning of life,1331866412 +11422,86898,theism,1331866390 +11422,86898,thought-provoking,1331866427 +11422,88118,David Hyde Pierce,1333241027 +11422,88118,disappointing,1333241085 +11422,88118,ending,1333241023 +11422,88118,Nick Tomnay,1333241017 +11422,88118,quirky,1333241157 +11422,88118,twists & turns,1333241153 +11422,88129,atmospheric,1331135877 +11422,88129,cinematography,1331135879 +11422,88129,great soundtrack,1331135895 +11422,88129,ryan gosling,1331135893 +11422,88129,Slow,1333505158 +11422,88746,John C. Reilly,1331135754 +11422,89904,boring,1331867841 +11422,89904,original,1331867855 +11422,89904,Oscar (Best Picture),1331867919 +11422,89904,pretentious,1331867846 +11422,90746,Andy Serkis,1332813765 +11422,91500,gale,1332786199 +11422,91500,thriller,1332786207 +11422,93193,Australia,1330656452 +11422,93193,revenge,1330656452 +11422,93193,small town,1330656451 +11422,93193,violence,1330656452 +11422,93516,comeback,1332125335 +11422,93516,paintball,1332125324 +11422,94864,Michael Fassbender,1350310974 +11422,94864,religious overtones,1350310937 +11426,260,darth vader,1432587457 +11426,260,Star Wars,1432587454 +11438,5952,high fantasy,1210646539 +11477,1779,frightening,1206539627 +11477,2013,too many times seen,1206539583 +11477,2232,disgusting,1206539730 +11477,2616,unexpected classic,1206539532 +11477,49272,estereotyped,1206539747 +11480,91500,nice play~,1335374455 +11495,49284,R,1184564067 +11495,51666,Nudity (Full Frontal - Brief),1184413299 +11495,53435,Nudity (Topless),1192104738 +11504,296,intense,1423859531 +11504,296,noir,1423859531 +11504,296,satire,1423859531 +11504,72395,"Based on ""Push"" By Sapphire",1423859781 +11504,72395,inspirational,1423859723 +11517,501,intellectual,1422181750 +11517,501,social commentary,1422181754 +11517,930,Ingrid Bergman,1360869209 +11517,1232,beautifully filmed,1358795715 +11517,1232,dreamlike,1358795737 +11517,1232,philosophical,1358795726 +11517,1900,brother sister relationship,1451323400 +11517,1927,anti-war,1361726662 +11517,1927,war ugliness,1361726678 +11517,1950,racism,1362251861 +11517,2186,corny,1359392675 +11517,2186,unrealistic,1359392683 +11517,3088,Funny as hell,1358795485 +11517,3088,Heartwarming,1358795499 +11517,3252,Al Pacino,1358795870 +11517,3252,great acting,1358795874 +11517,3252,Oscar (Best Actor),1358795877 +11517,3328,Forest Whitaker,1358795596 +11517,3328,Jim Jarmusch,1358795609 +11517,3521,Atmospheric,1362081221 +11517,3521,Jim Jarmusch,1362081219 +11517,3676,dreamlike,1420150342 +11517,3676,surreal,1420150327 +11517,3949,addiction,1358795925 +11517,3949,depressing,1358795929 +11517,3949,disturbing,1358795926 +11517,4262,Al Pacino,1358795842 +11517,5008,Charles Laughton,1359929733 +11517,31364,atmospheric,1359322373 +11517,31364,disturbing,1359322370 +11517,31364,melancholy,1359322367 +11517,47152,boring,1370964305 +11517,83132,Studio Ghibli,1442863451 +11517,91529,great ending,1364595344 +11517,92259,feel good movie,1364595027 +11517,92259,friendship,1364595126 +11517,96662,punk rock,1452032652 +11517,96829,Mads Mikkelsen,1364763238 +11517,98056,beautiful,1362611282 +11517,106452,beautifully filmed,1424893751 +11517,107069,American propaganda,1409686934 +11517,107069,true story,1409686939 +11517,112183,feel good,1423681360 +11517,112183,great performances,1423681335 +11517,112183,satire,1423681341 +11517,127134,hiking,1451257515 +11517,146346,charity,1447191939 +11517,146346,travel,1447191902 +11523,6769,quirky,1137588971 +11523,7445,great cinematography,1139823393 +11523,8369,who done it,1139215839 +11523,8529,slow,1137588790 +11523,8530,sad,1139215868 +11523,8530,tearful ending,1139215868 +11523,8983,Beautiful,1137588763 +11523,27808,family,1137588938 +11523,27808,romance,1137588938 +11523,27821,awful accent,1137588845 +11523,32017,predictable,1137588871 +11523,33004,slow,1137588893 +11523,34048,slow,1138984339 +11523,34143,disapointing,1140442330 +11523,35957,disapointing,1140442396 +11523,36509,predictable,1138029512 +11539,296,pulp,1424726144 +11539,296,quentin tarantino,1424726144 +11539,296,time jump,1424726144 +11539,1429,Hong Kong,1138866796 +11539,2959,greatest movie of all time,1140080057 +11539,3089,Classic,1140079930 +11539,3629,Classic,1140079974 +11539,4914,Classic,1141287496 +11539,4914,Neo-Noir,1141287488 +11539,6643,Classic,1140080005 +11539,8507,classic,1140079951 +11539,31804,Goofy,1140468472 +11539,33171,Poorly Acted,1148946577 +11539,34150,Garbage,1145218183 +11539,34437,Awkward,1141802638 +11539,41285,Classic,1138866865 +11539,41716,Offbeat,1139094810 +11539,41997,Disappointing,1138866884 +11539,42013,Passable,1138866937 +11539,42723,Savage,1138866901 +11539,71129,Poor pacing,1255505622 +11539,71129,Third Act,1255505598 +11539,93838,awesome martial arts,1336039824 +11547,260,best movie ever,1437870850 +11551,356,inspiring,1433458905 +11551,356,lovely,1433458905 +11551,356,tom hanks,1433458905 +11571,164,suspense,1187191122 +11571,546,game based,1187191146 +11571,1589,Police,1187191113 +11571,2423,Christmas,1187191106 +11571,2571,trinity,1187192327 +11571,3263,basketball,1187191130 +11584,10,007,1241395920 +11584,10,James Bond,1241395922 +11584,10,Pierce Brosnan,1249075112 +11584,32,Brad Pitt,1262549053 +11584,32,Bruce Willis,1262549052 +11584,32,dystopia,1262549055 +11584,32,post-apocalyptic,1262549059 +11584,32,time travel,1262549084 +11584,32,twist ending,1262549082 +11584,47,Brad Pitt,1243604728 +11584,47,Kevin Spacey,1243604729 +11584,47,Morgan Freeman,1243604731 +11584,47,twists & turns,1243604733 +11584,50,flashbacks,1241396646 +11584,50,great ending,1241396639 +11584,50,Kevin Spacey,1241396634 +11584,50,twist ending,1241396636 +11584,110,action,1246988121 +11584,110,medieval,1246988116 +11584,110,Mel Gibson,1246988118 +11584,110,revenge,1246988129 +11584,110,war,1246988124 +11584,123,dreamlike,1265406470 +11584,123,reflective,1265406465 +11584,123,stylized,1265406463 +11584,260,adventure,1243604241 +11584,260,fantasy,1243604229 +11584,260,great soundtrack,1243604223 +11584,260,Harrison Ford,1243604221 +11584,296,classic,1241395468 +11584,296,Samuel L. Jackson,1241395460 +11584,318,based on a book,1241396690 +11584,318,classic,1241396688 +11584,318,inspirational,1241396679 +11584,318,Morgan Freeman,1241396673 +11584,318,prison,1241396695 +11584,318,prison escape,1241396681 +11584,356,classic,1243604162 +11584,356,comedy,1243604158 +11584,356,historical,1243604174 +11584,356,Tom Hanks,1243604156 +11584,356,Vietnam,1243604176 +11584,356,vietnam war,1243604178 +11584,546,dinosaurs,1241396128 +11584,546,Fantasy,1242073717 +11584,546,video game adaptation,1241396134 +11584,648,memorable sequence,1243604384 +11584,778,British,1248220561 +11584,778,dark comedy,1248220580 +11584,778,drugs,1248220544 +11584,778,Ewan McGregor,1248220541 +11584,858,classic,1241395889 +11584,858,family,1241395883 +11584,858,robert de niro,1241395891 +11584,923,classic,1291074857 +11584,923,mystery,1291074866 +11584,1219,Alfred Hitchcock,1287431693 +11584,1219,black and white,1287431719 +11584,1219,classic,1287431698 +11584,1219,psychology,1287431706 +11584,1247,comedy,1288027327 +11584,1247,coming of age,1288027331 +11584,1247,Dustin Hoffman,1288027329 +11584,1625,David Fincher,1241556480 +11584,1625,plot,1241556486 +11584,1653,dystopia,1251816641 +11584,1653,future,1251816643 +11584,1653,genetics,1251816650 +11584,1653,Jude Law,1251816653 +11584,1653,rebellion,1251816658 +11584,1682,alternate reality,1262203881 +11584,1682,dark comedy,1262203876 +11584,1682,dystopia,1262203873 +11584,1682,Jim Carrey,1262203861 +11584,1682,original plot,1262203865 +11584,1682,small town,1262203868 +11584,1682,social commentary,1262203867 +11584,1682,stylized,1262203870 +11584,1704,genius,1253547638 +11584,1704,Robin Williams,1253547628 +11584,1748,atmospheric,1246887014 +11584,1748,dreamlike,1246887019 +11584,1748,fantasy,1246887017 +11584,1748,memory,1246887027 +11584,1748,surreal,1246887023 +11584,1748,thought-provoking,1246887025 +11584,2297,good cinematography,1250134240 +11584,2297,imaginative,1250134229 +11584,2297,Robin Williams,1250134235 +11584,2297,surreal,1250134233 +11584,2329,Edward Norton,1276618949 +11584,2329,powerful ending,1276618948 +11584,2329,thought-provoking,1276618948 +11584,2502,comedy,1246591489 +11584,2502,rebellion,1246591493 +11584,2502,revenge,1246591497 +11584,2502,satire,1246591499 +11584,2502,stapler,1246591500 +11584,2571,Action,1241395657 +11584,2571,cyberpunk,1241395652 +11584,2571,fantasy,1241395672 +11584,2571,Keanu Reeves,1241395647 +11584,2571,martial arts,1241395679 +11584,2571,virtual reality,1241395676 +11584,2918,1980s,1286741004 +11584,2918,comedy,1286741000 +11584,2918,coming of age,1286740998 +11584,2918,fun,1286741002 +11584,2918,slackers,1286741008 +11584,3000,adventure,1241395513 +11584,3000,anime,1241395509 +11584,3000,environmental,1241395527 +11584,3000,fantasy world,1241395530 +11584,3000,Hayao Miyazaki,1241395503 +11584,3000,Studio Ghibli,1241395505 +11584,3081,Fantasy,1242686571 +11584,3081,Johnny Depp,1242686567 +11584,3081,Tim Burton,1242686574 +11584,3081,visually appealing,1242686577 +11584,3147,drama,1254676688 +11584,3147,heartwarming,1254676690 +11584,3147,nostalgic,1254676685 +11584,3147,prison,1254676683 +11584,3147,Tom Hanks,1254676680 +11584,3174,biography,1256934190 +11584,3174,Jim Carrey,1256934189 +11584,3174,true story,1256934192 +11584,3438,awesome,1241395362 +11584,3438,Based on a cartoon,1241395365 +11584,3438,brings up memories,1241395367 +11584,3438,ninja,1241395376 +11584,3439,Based on a cartoon,1241395403 +11584,3439,ninja,1241395408 +11584,3439,Nostalgia Critic,1241395392 +11584,3481,funny,1275581762 +11584,3481,Jack Black,1275581759 +11584,3481,John Cusack,1275581758 +11584,3504,i'm as mad as hell and i'm not going to take it any more,1261680094 +11584,3504,journalism,1261680102 +11584,3578,action,1249075146 +11584,3578,Roman empire,1249075180 +11584,3578,Russell Crowe,1249075138 +11584,3578,sword fight,1249075143 +11584,3633,George Lazenby,1243604588 +11584,3994,atmospheric,1242826982 +11584,3994,Bruce Willis,1242826951 +11584,3994,Samuel L. Jackson,1242826952 +11584,3994,superhero,1242826954 +11584,4011,Brad Pitt,1279034977 +11584,4011,comedy,1279034983 +11584,4011,Guy Ritchie,1279034980 +11584,4223,Best War Films,1246915184 +11584,4223,Jude Law,1246915182 +11584,4223,Rachel Weisz,1246915180 +11584,4223,War,1246915196 +11584,4226,identity,1245983903 +11584,4226,memory,1245983888 +11584,4226,nonlinear,1245983869 +11584,4226,psychology,1245983880 +11584,4226,stylized,1245983893 +11584,4226,twist ending,1245983891 +11584,4270,action,1249336806 +11584,4270,adventure,1249336804 +11584,4270,comedy,1249336808 +11584,4270,Rachel Weisz,1249336796 +11584,4571,dude comedy,1249075306 +11584,4571,dumb but funny,1249075310 +11584,4571,future,1249075283 +11584,4571,rock and roll,1249075287 +11584,4571,teenager,1249075294 +11584,4571,time travel,1249075296 +11584,4734,cameos,1275616570 +11584,4816,ben stiller,1241395281 +11584,4816,Funny as hell,1241395295 +11584,4816,good to own and watch over and over,1241395339 +11584,4816,male models,1241395293 +11584,4816,Owen Wilson,1241395287 +11584,4816,seen more than once,1241395342 +11584,4816,Will Ferrell,1241395285 +11584,4878,dreamlike,1246505666 +11584,4878,funny,1246505669 +11584,4878,psychology,1246505659 +11584,4878,social commentary,1246505672 +11584,4878,surreal,1246505664 +11584,4878,thought-provoking,1246505661 +11584,4993,adventure,1241395631 +11584,4993,atmospheric,1241395636 +11584,4993,based on a book,1241395634 +11584,4993,fantasy,1241395628 +11584,4993,high fantasy,1241395627 +11584,4993,magic,1241395630 +11584,4993,music,1241395637 +11584,5010,Ewan McGregor,1246762351 +11584,5010,Orlando Bloom,1246762357 +11584,5010,war,1246762355 +11584,5016,kevin spacey,1246836728 +11584,5064,adventure,1257686501 +11584,5064,Amazing Cinematography,1257686491 +11584,5064,fantasy,1257686492 +11584,5064,historical,1257686496 +11584,5064,revenge,1257686494 +11584,5107,Bruce Willis,1277079661 +11584,5107,Colin Farrell,1277079665 +11584,5107,World War II,1277079673 +11584,5445,dystopia,1269083785 +11584,5445,future,1269083783 +11584,5445,sci-fi,1269083781 +11584,5445,Steven Spielberg,1269083779 +11584,5502,aliens,1242827055 +11584,5502,humorous,1242827069 +11584,5502,Joaquin Phoenix,1242827079 +11584,5502,Mel Gibson,1242827083 +11584,5618,dreamlike,1241396090 +11584,5618,fantasy,1241396075 +11584,5618,Hayao Miyazaki,1241396078 +11584,5618,Studio Ghibli,1241396080 +11584,5952,adventure,1241395602 +11584,5952,based on a book,1241395604 +11584,5952,fantasy,1241395610 +11584,5952,high fantasy,1241395613 +11584,5952,magic,1241395614 +11584,6016,based on a true story,1265471599 +11584,6016,Brazil,1265471596 +11584,6016,crime,1265471598 +11584,6016,drugs,1265471594 +11584,6016,gangs,1265471593 +11584,6016,South America,1265471601 +11584,6016,stylized,1265471603 +11584,6281,Colin Farrell,1241395743 +11584,6281,Forest Whitaker,1241395765 +11584,6281,Kiefer Sutherland,1241395761 +11584,6281,thrilling,1241395773 +11584,6502,British,1254020053 +11584,6502,futuristic,1254020053 +11584,6502,post-apocalyptic,1254020047 +11584,6709,Eva Mendes,1241396057 +11584,6709,Johnny Depp,1241396024 +11584,6867,friendship,1259955502 +11584,6867,interesting characters,1259955510 +11584,6867,loneliness,1259955504 +11584,6867,small town,1259955516 +11584,6867,trains,1259955508 +11584,6947,big budget,1246649180 +11584,6947,historical,1246649189 +11584,6947,Russell Crowe,1246649176 +11584,6947,war,1246649193 +11584,7090,amazing photography,1242072721 +11584,7090,atmospheric,1242072723 +11584,7090,colourful,1242072732 +11584,7090,Epic,1242072739 +11584,7090,martial arts,1242072742 +11584,7090,visually appealing,1242072751 +11584,7147,dreamlike,1249855607 +11584,7147,fantasy,1249855605 +11584,7147,imagination,1249855613 +11584,7147,stylized,1249855615 +11584,7147,surrealism,1249855609 +11584,7147,thought-provoking,1249855610 +11584,7153,adventure,1241395564 +11584,7153,atmospheric,1241395589 +11584,7153,based on a book,1241395565 +11584,7153,fantasy,1241395558 +11584,7153,magic,1241395573 +11584,7153,mystic warriors,1241395570 +11584,7162,Jude Law,1246649647 +11584,7162,Nicole Kidman,1246649649 +11584,7162,War,1246649653 +11584,7318,beautifully filmed,1303773357 +11584,7318,Christian,1303773362 +11584,7318,good acting,1303773346 +11584,7318,Jesus Christ,1303773332 +11584,7318,religion,1303773335 +11584,7323,Berlin,1257636822 +11584,7323,Germany,1257636816 +11584,7323,historical,1257636818 +11584,7323,maintaining illusion,1257636811 +11584,7361,comedy,1248135740 +11584,7361,imagination,1248135758 +11584,7361,Jim Carrey,1248135735 +11584,7361,memory,1248135756 +11584,7361,nonlinear,1248135753 +11584,7361,surreal,1248135746 +11584,7361,thought-provoking,1248135743 +11584,7502,World War II,1248012159 +11584,8783,Atmospheric,1242686959 +11584,8783,Interesting,1242686977 +11584,8783,Joaquin Phoenix,1242686963 +11584,8783,twist ending,1242686955 +11584,8784,coming of age,1265551842 +11584,8784,emotions,1265551855 +11584,8784,friendship,1265551866 +11584,8784,funny,1265551852 +11584,8784,Great Soundtrack,1265551838 +11584,8784,Natalie Portman,1265551839 +11584,8784,Zach Braff,1265551840 +11584,8873,adventure,1304560314 +11584,8873,cinematography,1304560312 +11584,8873,road trip,1304560321 +11584,8914,complicated plot,1256700191 +11584,8914,sci-fi,1256700186 +11584,8914,time travel,1256700184 +11584,8965,Christmas,1241395975 +11584,8965,computer animation,1241395977 +11584,8965,Tom Hanks,1241395972 +11584,8965,Xmas theme(?),1241395968 +11584,26152,exploding shark,1314625553 +11584,27773,revenge,1251419434 +11584,27773,stylized,1251419399 +11584,27773,twist ending,1251419394 +11584,27831,Colm Meaney,1304441864 +11584,27831,daniel craig,1304441854 +11584,27904,Philip K. Dick,1325802930 +11584,27904,visually appealing,1325802932 +11584,30749,Africa,1252796830 +11584,30749,history,1252796843 +11584,30749,survival,1252796840 +11584,30749,true story,1252796835 +11584,30749,United Nations,1252796836 +11584,30749,war,1252796853 +11584,31658,anime,1256589439 +11584,31658,dreamlike,1256589437 +11584,31658,fantasy,1256589434 +11584,31658,fantasy world,1256589436 +11584,31658,Hayao Miyazaki,1256589432 +11584,31658,stylized,1256589440 +11584,32587,artistic,1241395425 +11584,32587,Bruce Willis,1241395427 +11584,32587,stylized,1241395431 +11584,33166,cultural conflict,1256852532 +11584,33166,ensemble cast,1256852533 +11584,33166,multiple storylines,1256852520 +11584,33166,race issues,1256852524 +11584,33166,social commentary,1256852527 +11584,34048,aliens,1242827109 +11584,34048,Steven Spielberg,1242827127 +11584,34048,Tim Robbins,1242827121 +11584,34048,Tom Cruise,1242827125 +11584,34319,action,1250049150 +11584,34319,cloning,1250049157 +11584,34319,Ewan McGregor,1250049149 +11584,34319,freedom,1250049176 +11584,34319,future,1250049152 +11584,34319,Scarlett Johansson,1250049147 +11584,34319,thriller,1250049159 +11584,36535,artsy,1276776810 +11584,36535,beautiful scenery,1276776795 +11584,36535,Eugene Hutz,1276776800 +11584,37384,comedy,1286504976 +11584,37384,Justin Long,1286504974 +11584,40819,biography,1270150490 +11584,40819,biopic,1270150491 +11584,40819,Joaquin Phoenix,1270150493 +11584,40819,music,1270150498 +11584,40819,Reese Witherspoon,1270150495 +11584,40819,true story,1270150501 +11584,41569,adventure,1249605624 +11584,41569,big budget,1249605627 +11584,41569,dinosaurs,1249605621 +11584,41569,Naomi Watts,1249605635 +11584,41569,New York,1249605637 +11584,41569,Peter Jackson,1249605619 +11584,42418,atmospheric,1315704499 +11584,42418,beautiful,1315704501 +11584,42418,Christian Bale,1315704504 +11584,42418,cinematography,1315704502 +11584,42418,Epic,1315704514 +11584,42418,meditative,1315704510 +11584,42418,poetry,1315704512 +11584,44191,comic book,1244599857 +11584,44191,dystopia,1244599856 +11584,44191,England,1244599870 +11584,44191,revenge,1244599860 +11584,44191,super-hero,1244599861 +11584,44191,thought-provoking,1244599863 +11584,44191,visually appealing,1244599865 +11584,44665,assassination,1248230983 +11584,44665,Bruce Willis,1248230968 +11584,44665,mistaken identity,1248230975 +11584,44665,Morgan Freeman,1248230971 +11584,44665,Revenge,1248230969 +11584,44665,twist ending,1248230968 +11584,46578,dysfunctional family,1250024261 +11584,46578,heartwarming,1250024263 +11584,46578,inspirational,1250024267 +11584,46578,off-beat comedy,1250024259 +11584,46578,road trip,1250024255 +11584,46723,Brad Pitt,1256837085 +11584,46723,multiple storylines,1256837089 +11584,46976,fantasy,1241822511 +11584,46976,Will Ferrell,1241822503 +11584,47099,based on a true story,1263301160 +11584,47099,courage,1263301162 +11584,47099,San Francisco,1263301163 +11584,47099,Will Smith,1263301165 +11584,48043,artistic,1247882384 +11584,48043,atmospheric,1247882373 +11584,48043,dreamlike,1247882371 +11584,48043,Hugh Jackman,1247882364 +11584,48043,immortality,1247882366 +11584,48043,Rachel Weisz,1247882363 +11584,48043,visually appealing,1247882368 +11584,48082,artsy,1258863332 +11584,48082,dream-like,1258863321 +11584,48082,dreams,1258863325 +11584,48082,fantasy,1258863318 +11584,48082,Gael García Bernal,1258863354 +11584,48082,Michel Gondry,1258863334 +11584,48082,romance,1258863346 +11584,48082,stylized,1258863336 +11584,48082,surreal,1258863340 +11584,48304,adventure,1249511936 +11584,48304,atmospheric,1249511939 +11584,48304,Mel Gibson,1249511925 +11584,48304,tense,1249511931 +11584,48304,tribal,1249511934 +11584,48394,atmospheric,1247836761 +11584,48394,fantasy,1247836738 +11584,48394,imagination,1247836759 +11584,48394,surreal,1247836740 +11584,48394,visually appealing,1247836756 +11584,48774,apocalypse,1247961003 +11584,48774,atmospheric,1247961006 +11584,48774,Clive Owen,1247960986 +11584,48774,dystopia,1247961018 +11584,48774,end of the world,1247960998 +11584,48774,future,1247961001 +11584,48774,Michael Caine,1247960988 +11584,48774,survival,1247961011 +11584,48780,atmospheric,1252151388 +11584,48780,Christian Bale,1252151371 +11584,48780,Hugh Jackman,1252151371 +11584,48780,magic,1252151391 +11584,48780,nonlinear,1252151379 +11584,48780,Scarlett Johansson,1252151367 +11584,48780,twist ending,1252151380 +11584,48783,american,1292873075 +11584,48783,patriotic,1292873079 +11584,48783,World War II,1292873083 +11584,49530,Africa,1247712509 +11584,49530,Civil War,1247712511 +11584,49530,Jennifer Connelly,1247712501 +11584,49530,journalism,1247712506 +11584,49530,Leonardo DiCaprio,1247712495 +11584,49530,South Africa,1247712514 +11584,49530,war,1247712526 +11584,51086,Jim Carrey,1251816353 +11584,51086,psychology,1251816363 +11584,51086,stylized,1251816359 +11584,51086,twist ending,1251816357 +11584,51662,action,1241395827 +11584,51662,atmospheric,1241395832 +11584,51662,Epic,1241395821 +11584,51662,Frank Miller,1241395846 +11584,51662,stylized,1241395837 +11584,51662,sword fight,1241395838 +11584,52328,great soundtrack,1246331026 +11584,52328,sci-fi,1246330991 +11584,52328,space,1246330993 +11584,53123,emotional,1289733254 +11584,53123,good music,1289733242 +11584,53123,Ireland,1289733240 +11584,53123,songwriting,1289733234 +11584,53189,misfits,1283985231 +11584,53550,Christian Bale,1276993305 +11584,53550,true story,1276993300 +11584,53550,Vietnam War,1276993300 +11584,54503,comedy,1245507623 +11584,54503,HIGH SCHOOL LIFE,1245507619 +11584,54503,hilarious,1245507607 +11584,54503,Michael Cera,1245507665 +11584,54503,nerds,1245507626 +11584,54503,Teen movie,1245507631 +11584,54503,virginity,1245507602 +11584,55247,atmospheric,1251515775 +11584,55247,experience,1251515778 +11584,55247,great soundtrack,1251515768 +11584,55247,road trip,1251515771 +11584,55247,self discovery,1251515770 +11584,55247,wilderness,1251515780 +11584,55247,wisdom,1251515782 +11584,55269,Adrien Brody,1276787078 +11584,55269,cinematography,1276787028 +11584,55269,dark comedy,1276787025 +11584,55269,India,1276787030 +11584,55269,Owen Wilson,1276787026 +11584,55269,road movie,1276787032 +11584,55269,road trip,1276787033 +11584,55363,beautiful scenery,1286841161 +11584,55363,Brad Pitt,1286841148 +11584,55363,Casey Affleck,1286841155 +11584,55363,excellent soundscore,1286841159 +11584,55363,visually appealing,1286841162 +11584,55820,coen brothers,1241396832 +11584,55820,great acting,1241396853 +11584,55820,Tommy Lee Jones,1241396835 +11584,55908,bad acting,1298772061 +11584,55908,cheesy,1298772051 +11584,55908,unrealistic characters,1298772023 +11584,55995,Angelina Jolie,1246148835 +11584,55995,CG animation,1246148841 +11584,55995,fantasy,1246148842 +11584,56367,comedy,1276535573 +11584,56367,Ellen Page,1276535564 +11584,56367,excellent script,1276535570 +11584,56367,witty,1276535575 +11584,56782,Daniel Day-Lewis,1281228995 +11584,56805,biopic,1276222572 +11584,56805,Jack Black,1276222566 +11584,56805,Jenna Fischer,1276222564 +11584,56805,musician,1276222561 +11584,56805,parody,1276222548 +11584,57368,city under attack,1242827210 +11584,57368,Handycam,1242827205 +11584,57368,New York City,1242827199 +11584,57669,Colin Farrell,1248023548 +11584,57669,comedy,1248023551 +11584,57669,dark comedy,1248023544 +11584,57669,friendship,1248023546 +11584,57669,irish accent,1248023543 +11584,58025,silly,1261922735 +11584,58025,teens,1261922737 +11584,58025,terrible plot,1261922738 +11584,58306,beautifully filmed,1303350151 +11584,58306,cinematography,1303350151 +11584,58425,atmospheric,1261516242 +11584,58425,beautifully filmed,1261516090 +11584,58425,Iceland,1261515972 +11584,58425,music,1261515968 +11584,58425,sigur rós,1261516022 +11584,58559,Batman,1279797552 +11584,58559,Christian Bale,1279797554 +11584,58559,Heath Ledger,1279797555 +11584,58559,Michael Caine,1279797557 +11584,58559,Morgan Freeman,1279797558 +11584,58559,superhero,1279797561 +11584,58559,vigilante,1279797562 +11584,59315,comic book,1248012228 +11584,59315,Robert Downey Jr.,1248012232 +11584,59315,superhero,1248012235 +11584,59315,technology,1248012237 +11584,59387,1920s,1242072829 +11584,59387,beautiful,1241396309 +11584,59387,fantasy,1241396299 +11584,59387,fantasy world,1241396319 +11584,59387,imagination,1241396313 +11584,59387,storytelling,1241396303 +11584,59387,stunning,1241396305 +11584,59387,suicide attempt,1242072819 +11584,61024,Seth Rogen,1245897915 +11584,61026,China,1261221945 +11584,61026,Epic,1261221854 +11584,61026,historical epic,1261221879 +11584,61026,John Woo,1261221735 +11584,61026,Romance of the Three Kingdoms,1261221747 +11584,61026,Takeshi Kaneshiro,1261221837 +11584,61026,Tony Leung Chiu Wai,1261222376 +11584,61323,Brad Pitt,1243604623 +11584,61323,Coen Brothers,1243604625 +11584,61323,George Clooney,1243604626 +11584,61323,John Malkovich,1243604651 +11584,62644,dictatorship,1293762710 +11584,62644,Germany,1293762702 +11584,62644,social experiment,1293762694 +11584,63072,dystopia,1263478428 +11584,63072,post-apocalyptic,1263478430 +11584,63072,Viggo Mortensen,1263478439 +11584,63113,007 (series),1241395705 +11584,63113,Daniel Craig,1241395702 +11584,63113,James Bond,1241395700 +11584,63479,road trip,1243519666 +11584,64993,bittersweet,1331425395 +11584,64993,Japan,1331425405 +11584,64993,visually appealing,1331425398 +11584,64993,visually stunning,1331425402 +11584,65514,biography,1254008643 +11584,65514,martial arts,1254008641 +11584,67734,funny,1262403743 +11584,67734,Kristen Stewart,1262403739 +11584,68157,alternate history,1252606193 +11584,68157,Brad Pitt,1252606185 +11584,68157,Dead Nazis,1252606234 +11584,68157,dialogue,1252606192 +11584,68157,Quentin Tarantino,1252606186 +11584,68157,unusual plot structure,1252606205 +11584,68157,World War II,1252606195 +11584,68173,Sergei M. Eisenstein,1301260587 +11584,68237,clones,1256565937 +11584,68237,directorial debut,1262293555 +11584,68237,moon,1262293561 +11584,68237,Sci-fi,1256565941 +11584,68237,solitude,1256565943 +11584,68237,space,1256565945 +11584,68347,gangs,1262292525 +11584,68347,illegal immigration,1262292552 +11584,68347,Mexico,1262292525 +11584,68358,action,1242320613 +11584,68358,big budget,1242320600 +11584,68358,FX,1242320586 +11584,68358,spock,1242320619 +11584,68358,Star Trek,1242320618 +11584,68358,time travel,1254599571 +11584,68554,mystery,1246245241 +11584,68554,not faithful to the book,1246245236 +11584,68554,secrets,1246245243 +11584,68554,thriller,1246245245 +11584,68954,adventure,1261922490 +11584,68954,computer animation,1261922492 +11584,68954,dreams,1261922501 +11584,68954,exploration,1261922504 +11584,68954,Pixar,1261922497 +11584,68954,storytelling,1261922495 +11584,69640,1930s,1261583818 +11584,69640,Johnny Depp,1261583802 +11584,69640,Michael Mann,1261583823 +11584,69757,artistic,1275487749 +11584,69757,cute,1275487747 +11584,69757,humorous,1275487746 +11584,69757,intelligent,1275487744 +11584,69757,Joseph Gordon-Levitt,1275487741 +11584,69757,Zooey Deschanel,1275487743 +11584,69784,Sacha Baron Cohen,1247862158 +11584,69818,multiple storylines,1256780641 +11584,70286,aliens,1252715465 +11584,70286,alternate history,1252715468 +11584,70286,genetics,1252715483 +11584,70286,intelligent sci-fi,1252715482 +11584,70286,justice,1252715481 +11584,70286,Special Effects,1252715470 +11584,70286,transformation,1252715473 +11584,70286,weapons,1252715475 +11584,71745,fantasy world,1275582760 +11584,71745,stylized,1275582755 +11584,71745,touching,1275582756 +11584,72731,Soundtrack,1317076143 +11584,72998,futuristic,1263935218 +11584,72998,graphic design,1263935220 +11584,72998,visually stunning,1263935216 +11584,73017,Guy Ritchie,1303940138 +11584,73017,Jude Law,1303940136 +11584,73017,Robert Downey Jr.,1303940132 +11584,73017,Sherlock Holmes,1303940143 +11584,73266,funny,1266273661 +11584,73266,Michael Cera,1266273612 +11584,73321,Denzel Washington,1266688542 +11584,73321,post-apocalyptic,1266688540 +11584,74458,ending twist,1271602219 +11584,74458,Leonardo DiCaprio,1271602200 +11584,74458,Martin Scorsese,1271602204 +11584,74458,plot twist,1271602207 +11584,74458,psychological,1271602213 +11584,76251,Nicolas Cage,1273761183 +11584,76251,superhero,1273761169 +11584,78105,adventure,1286581047 +11584,78105,fantasy,1286581045 +11584,78105,Gemma Arterton,1286581059 +11584,78105,kingdoms,1286581054 +11584,78105,stylized,1286581042 +11584,78499,Pixar,1294374461 +11584,79132,Christopher Nolan,1279459371 +11584,79132,clever,1279459742 +11584,79132,dreamlike,1279459439 +11584,79132,dreams,1279459439 +11584,79132,Ellen Page,1279459416 +11584,79132,heist,1279459765 +11584,79132,intellectual,1279463755 +11584,79132,Joseph Gordon-Levitt,1279459385 +11584,79132,Leonardo DiCaprio,1279459385 +11584,79132,makes you think,1279459670 +11584,79132,mindfuck,1279459473 +11584,79132,multiple interpretations,1285876296 +11584,79132,visually appealing,1279459633 +11584,79357,cinematography,1315793913 +11584,79357,nostalgia,1315793938 +11584,79357,philosophy,1315793932 +11584,79357,sci-fi,1315793915 +11584,79357,surreal,1315793917 +11584,79357,thought provoking,1315793925 +11584,79702,fight scenes,1282838347 +11584,79702,Michael Cera,1282838345 +11584,79702,stylized,1282838350 +11584,81562,danny boyle,1294446363 +11584,82093,Colin Farrell,1291945260 +11584,83369,adventure,1326162969 +11584,83369,scenic,1326162980 +11584,85510,Cinematography,1302094677 +11584,85510,Emily Browning,1302094673 +11584,85510,story,1302094674 +11584,86898,beautifully filmed,1330971147 +11584,86898,big themes,1330971158 +11584,86898,cinematography,1330971155 +11584,86898,meaning of life,1330971160 +11584,86898,Terrence Malick,1330971164 +11584,88129,atmospheric,1325191875 +11584,88129,visually appealing,1325536186 +11584,89028,cheesy,1318979771 +11584,89753,Beautifully shot,1316647617 +11584,91529,Christopher Nolan,1343429920 +11584,96610,bad science,1349564904 +11584,96610,Joseph Gordon-Levitt,1349564914 +11596,6333,action,1243823229 +11596,6333,adapted from:comic,1243823201 +11596,6333,based on comic,1243823228 +11596,6333,comic book,1243823203 +11596,6333,display of power,1243823236 +11596,6333,ensemble cast,1243823224 +11596,6333,father-son relationship,1243823234 +11596,6333,genocide,1243823221 +11596,6333,marvel,1243823219 +11596,6333,Saturn Award (Best Science Fiction Film),1243823217 +11596,6333,sequel,1243823207 +11596,6333,superhero,1243823214 +11596,6333,supernatural powers,1243823210 +11596,6333,violent,1243823212 +11605,260,EPIC,1439795525 +11605,260,space adventure,1439795544 +11607,2231,poker,1452417034 +11607,142488,journal,1453183137 +11626,116797,history,1426450985 +11626,116797,science,1426450985 +11626,116797,wwii,1426450985 +11641,223,I'm not even supposed to be here today,1151786103 +11641,223,Kevin Smith,1151786096 +11652,2019,historical,1137362105 +11652,2019,Japan,1137362105 +11652,2019,samurai,1137362105 +11655,6867,friendship,1167429191 +11655,6867,interesting characters,1167429200 +11655,6867,loneliness,1167429198 +11655,8949,divorce,1167429288 +11655,8949,wine,1167429273 +11660,8874,Dylan Moran,1246626050 +11660,51255,Bill Bailey,1246626021 +11716,356,funny,1438217393 +11716,356,historical,1438217393 +11716,356,tear jerker,1438217393 +11743,102716,action,1442813489 +11743,102716,cars,1442813491 +11743,102716,Unrealistic animation,1442813504 +11743,115617,Animation,1442813406 +11743,115617,entertaining,1442813426 +11743,115617,robotics,1442813423 +11743,115617,sci-fi,1442813412 +11743,115617,technology,1442813417 +11743,117851,adventure,1442813466 +11743,117851,talking animals,1442813454 +11763,128488,action packed,1424455834 +11763,128488,crime,1424455834 +11763,128488,fighting,1424455834 +11764,260,sci-fi,1433135548 +11764,260,space adventure,1433135577 +11764,260,space opera,1433135559 +11764,87483,comedy,1435031371 +11764,87483,family,1435031371 +11764,87483,jim carrey,1435031371 +11764,115617,animated,1433304193 +11764,115617,disney,1433304193 +11764,115617,superhero,1433304193 +11765,2302,Joe Pesci,1329585783 +11765,2302,Marisa Tomei,1329585504 +11765,3074,nature wildlife,1341872665 +11765,7354,robert deniro,1329603208 +11778,50,sensational,1139432806 +11778,26242,master piece,1139432661 +11783,593,cannibalism,1425065753 +11783,593,dark,1425065753 +11783,593,thiller,1425065753 +11802,260,good acting,1436729634 +11802,260,good action fantasy,1436729630 +11836,3601,less than 300 ratings,1212590777 +11846,32,dystopia,1149144862 +11846,32,Post apocalyptic,1149144862 +11846,32,Terry Gilliam,1149144862 +11846,173,comic book,1149146441 +11846,173,dystopia,1149146441 +11846,208,expensive,1149147657 +11846,260,Harrison Ford,1149142454 +11846,260,midgets,1149142454 +11846,260,noise in space,1149142454 +11846,260,space opera,1149143273 +11846,260,sword fight,1149142454 +11846,327,mutants,1149144826 +11846,327,Post apocalyptic,1149144826 +11846,356,bechdel test:fail,1425971480 +11846,356,blends in historic celebrities (like zelig),1425971480 +11846,356,vietnam war,1425971480 +11846,379,time travel,1149147904 +11846,405,crappy sequel,1149141904 +11846,426,evil twin,1149146039 +11846,426,impersonation,1149146039 +11846,435,alien invasion,1149143779 +11846,435,aliens,1149143779 +11846,435,dan akroyd,1149143779 +11846,512,massacred the book,1149147572 +11846,519,crappy sequel,1149148373 +11846,519,cyborgs,1149148373 +11846,541,dystopia,1149142533 +11846,541,Harrison Ford,1149142494 +11846,541,Ridley Scott,1149142508 +11846,541,Rutger Hauer,1149141963 +11846,589,nuclear war,1149143252 +11846,589,time travel,1149143218 +11846,592,comic book,1149146221 +11846,610,surreal,1149146311 +11846,637,Crappy Remake,1149141599 +11846,714,Jim Jarmusch,1149141311 +11846,714,Johnny Depp,1149150120 +11846,748,alien invasion,1149146200 +11846,748,conspiracy,1149146190 +11846,750,Peter Sellers,1146187390 +11846,780,alien invasion,1149145924 +11846,780,disaster,1149145924 +11846,788,Crappy Remake,1149147521 +11846,829,nyc,1159680538 +11846,849,dystopia,1149147818 +11846,919,midgets,1149142376 +11846,921,nyc,1159680501 +11846,924,aliens,1149144030 +11846,924,space travel,1149143645 +11846,924,surreal,1149144030 +11846,1077,cryogenics,1149144767 +11846,1077,howard cosell,1149144728 +11846,1079,crime caper,1146187726 +11846,1097,cute alien,1149148518 +11846,1097,evil government,1149148518 +11846,1125,Peter Sellers,1149141739 +11846,1129,dystopia,1149143911 +11846,1129,evil government,1149143911 +11846,1129,nyc,1149143911 +11846,1175,dystopia,1149142595 +11846,1196,crappy fight choreography,1149146908 +11846,1196,noise in space,1149146908 +11846,1196,plot holes,1149146908 +11846,1196,space opera,1149146908 +11846,1197,awesome fight choreography,1149149278 +11846,1197,Christopher Guest,1149149278 +11846,1197,william goldman,1149149278 +11846,1199,beaurocracy,1149142925 +11846,1199,dystopia,1149142925 +11846,1199,Gilliam,1146187357 +11846,1199,legal issues,1149142925 +11846,1200,crappy sequel,1149148407 +11846,1201,Clint Eastwood,1149149425 +11846,1201,Sergio Leone,1149149425 +11846,1206,dystopia,1149142834 +11846,1206,rape,1149142576 +11846,1210,crappy fight choreography,1149148690 +11846,1210,crappy sequel,1149148690 +11846,1210,plot holes,1149148690 +11846,1210,space opera,1149148690 +11846,1214,h. r. geiger,1149146162 +11846,1214,space travel,1149146162 +11846,1220,cameos,1146188015 +11846,1220,ray charles,1149141402 +11846,1235,dark comedy,1146188106 +11846,1240,Arnold Schwarzenegger,1149141447 +11846,1240,time travel,1149143308 +11846,1243,stoppard,1146187054 +11846,1254,we don't need no stinkin badges,1149149497 +11846,1256,Marx brothers,1146187411 +11846,1266,Gene Hackman,1149149513 +11846,1266,revisionist western,1149149366 +11846,1275,sword fight,1149142237 +11846,1285,dark comedy,1146188095 +11846,1285,high school,1146188088 +11846,1292,Peter Sellers,1146187316 +11846,1292,political satire,1146187992 +11846,1304,william goldman,1149149766 +11846,1306,Wim Wenders,1149143348 +11846,1334,classic,1149147042 +11846,1334,diner,1149147057 +11846,1334,monster,1149147042 +11846,1334,new jersey,1149147042 +11846,1356,noise in space,1149145047 +11846,1356,space opera,1149145047 +11846,1371,noise in space,1149148626 +11846,1371,space opera,1149148626 +11846,1371,tv spinoff,1149148626 +11846,1372,noise in space,1149144800 +11846,1372,space opera,1149144800 +11846,1373,noise in space,1149147723 +11846,1373,space opera,1149147723 +11846,1374,noise in space,1149142733 +11846,1374,space opera,1149143265 +11846,1375,casting change,1149148590 +11846,1375,Christopher Lloyd,1149148590 +11846,1376,time travel,1149146761 +11846,1376,tv spinoff,1149146761 +11846,1391,alien invasion,1149144502 +11846,1391,aliens,1149144502 +11846,1483,cronenberg,1149140991 +11846,1527,aliens,1149144143 +11846,1527,Moebius,1149144119 +11846,1584,space travel,1149143797 +11846,1653,dystopia,1149144279 +11846,1653,eugenics,1149144279 +11846,1653,space travel,1149144279 +11846,1653,survellience,1149144279 +11846,1676,aliens,1149145781 +11846,1676,bug hunt,1149145781 +11846,1748,noir,1149143949 +11846,1831,tv remake,1149147918 +11846,1884,Johnny Depp,1154082943 +11846,1909,tv spinoff,1149145539 +11846,1921,nyc,1149144672 +11846,1924,Bela Lugosi,1425975894 +11846,1924,cult film,1425975905 +11846,1924,so bad it's funny,1425975877 +11846,1965,aliens,1149142633 +11846,1965,evil government,1149143006 +11846,2021,David Lynch,1149148483 +11846,2021,dino delaurentis,1149148483 +11846,2021,h. r. geiger,1149148483 +11846,2021,massacred the book,1149148483 +11846,2034,disney,1149147364 +11846,2034,evil robot,1149147364 +11846,2034,space travel,1149147364 +11846,2054,miniaturization,1149147485 +11846,2054,Rick Moranis,1149147485 +11846,2105,computers,1149148835 +11846,2105,virtual reality,1149148823 +11846,2108,cameos,1146188278 +11846,2108,los angeles,1146188250 +11846,2108,magical realism,1146188250 +11846,2108,shakespeare references,1146188250 +11846,2108,steve martin,1146188278 +11846,2288,bug hunt,1149143428 +11846,2291,Topiary,1146187429 +11846,2311,aliens,1149145163 +11846,2311,space travel,1149145163 +11846,2363,giant monster,1149145063 +11846,2377,alien invasion,1149144389 +11846,2377,aliens,1149144389 +11846,2393,noise in space,1149145993 +11846,2393,space opera,1149145993 +11846,2393,tv spinoff,1149145993 +11846,2450,comic book,1149148170 +11846,2454,scientist experiments on self,1149144212 +11846,2454,teleportation,1149144212 +11846,2454,vincent price,1149144212 +11846,2498,tv remake,1149148341 +11846,2527,Yul Brynner,1149149968 +11846,2528,dystopia,1149144402 +11846,2529,one-way time travel,1149146556 +11846,2533,time travel,1149147154 +11846,2571,virtual reality,1149146468 +11846,2640,aliens,1149146926 +11846,2641,aliens,1149146937 +11846,2643,hackers,1149148901 +11846,2657,aliens,1149142671 +11846,2657,androids,1149143150 +11846,2657,bisexual,1149142670 +11846,2657,cult,1425977100 +11846,2657,drag,1149142670 +11846,2662,alien invasion,1149144953 +11846,2662,aliens,1149144953 +11846,2664,evil twin,1149146378 +11846,2701,Kenneth Branagh,1149150104 +11846,2701,tv remake,1149148044 +11846,2716,nyc,1146188060 +11846,2716,occult technology,1146187759 +11846,2761,giant robots,1149146404 +11846,2762,twist ending,1154086493 +11846,2791,mocks black stereotypes,1146251826 +11846,2793,crappy sequel,1172609830 +11846,2851,evil robot,1149148142 +11846,2851,space station,1149148142 +11846,2916,Arnold Schwarzenegger,1149148762 +11846,2916,massacred the book,1149148762 +11846,2916,space travel,1149148762 +11846,2916,virtual reality,1149148762 +11846,2951,Clint Eastwood,1149142130 +11846,2968,midgets,1149142394 +11846,2985,cyborgs,1149144707 +11846,2985,dystopia,1149144707 +11846,2986,crappy sequel,1149146645 +11846,2986,cyborgs,1149146645 +11846,2986,dystopia,1149146645 +11846,2997,Charlie Kaufman,1146187250 +11846,2997,nyc,1146187958 +11846,3032,Post apocalyptic,1149145252 +11846,3033,noise in space,1149146708 +11846,3037,revisionist western,1149149345 +11846,3070,aliens,1149146095 +11846,3070,cult,1149146094 +11846,3086,children,1146251954 +11846,3086,fantasy,1146251954 +11846,3086,laurel&hardy,1146187219 +11846,3093,Burt Reynolds,1149149995 +11846,3093,prostitution,1149149995 +11846,3108,central park,1146188046 +11846,3108,grand central terminal,1149149140 +11846,3108,nyc,1146187569 +11846,3175,aliens,1149144359 +11846,3175,space opera,1149144359 +11846,3267,low budget,1149149469 +11846,3479,Rutger Hauer,1149142020 +11846,3527,aliens,1149146614 +11846,3527,Arnold Schwarzenegger,1149146614 +11846,3527,future governors,1149146614 +11846,3593,scientologist,1149148884 +11846,3624,Jackie Chan,1149149790 +11846,3638,massacred the book,1149146517 +11846,3638,space travel,1149146517 +11846,3658,aliens,1149144644 +11846,3658,aliens space science,1149144644 +11846,3658,British,1149144644 +11846,3671,busby berkeley,1149149739 +11846,3671,food fight,1149149739 +11846,3671,racism,1149149704 +11846,3676,overrated,1149141852 +11846,3676,prententiously obscure,1149141852 +11846,3681,Clint Eastwood,1149142171 +11846,3681,spaghetti western,1149142192 +11846,3696,bug hunt,1149144537 +11846,3699,aliens,1149148717 +11846,3699,cute alien,1149148717 +11846,3700,aliens,1149143719 +11846,3700,nyc,1149143719 +11846,3703,Post apocalyptic,1149146457 +11846,3704,crappy sequel,1149148549 +11846,3704,Post apocalyptic,1149148549 +11846,3770,surreal,1149143882 +11846,3802,mick jagger,1149147975 +11846,3833,mst3k,1149148416 +11846,3863,virtual reality,1149143735 +11846,3889,crappy sequel,1149141917 +11846,3926,submarine,1149145714 +11846,3968,bad remake,1172609720 +11846,4006,giant robots,1149145851 +11846,4084,crappy sequel,1149141632 +11846,4092,dystopia,1149147882 +11846,4092,melanie griffith,1149147882 +11846,4092,Post apocalyptic,1149147882 +11846,4131,androids,1149147805 +11846,4174,covers a lifespan,1146251910 +11846,4174,Jewish identity,1146251888 +11846,4294,Dr. Seuss,1149149091 +11846,4294,surreal,1146251802 +11846,4411,John Wayne,1149149861 +11846,4471,dudley moore,1154083995 +11846,4497,zombies,1149148002 +11846,4533,brains!,1149145421 +11846,4544,crappy sequel,1149148318 +11846,4544,cute robot,1149148318 +11846,4643,cryogenics,1149147603 +11846,4643,Post apocalyptic,1149147627 +11846,4713,scientist experiments on self,1149143998 +11846,4734,cameos,1146188199 +11846,4734,marijuana,1146188199 +11846,4734,scooby doo,1146188199 +11846,4734,star wars,1146188199 +11846,4738,not a comedy,1171670745 +11846,4939,time travel,1149145634 +11846,4939,WWII,1149145634 +11846,4941,Max von Sydow,1149144182 +11846,4941,midgets,1149144182 +11846,4941,space opera,1149144182 +11846,5054,brain machine,1149143690 +11846,5054,scientist experiments on self,1149144069 +11846,5094,Crappy Remake,1149148920 +11846,5184,financial disaster,1149150049 +11846,5410,environment,1149143526 +11846,5445,Philip K. Dick,1149143505 +11846,5459,crappy sequel,1149147697 +11846,5522,dystopia,1149145499 +11846,5604,guiness,1146187115 +11846,5640,giant monster,1149145096 +11846,5789,cross dressing,1172609677 +11846,5853,exploding heads,1149145442 +11846,5855,cult film,1149145288 +11846,5855,drugs,1149145288 +11846,5855,Underrated,1149145288 +11846,5881,Crappy Remake,1149147012 +11846,5938,stage play,1149579728 +11846,5981,rocky horror,1149145755 +11846,6078,Cold War,1149146286 +11846,6094,aliens,1149147206 +11846,6094,bisexual,1149147206 +11846,6094,drugs,1149147206 +11846,6094,nyc,1149147206 +11846,6184,aliens,1149144447 +11846,6184,David Bowie,1149144447 +11846,6184,surreal,1149144447 +11846,6365,virtual reality,1149145882 +11846,6428,John Wayne,1149149645 +11846,6534,comic book,1149147296 +11846,6537,androids,1149145869 +11846,6537,time travel,1149145869 +11846,6541,comic book,1149147844 +11846,6645,eugenics,1149145081 +11846,6662,Peter Sellers,1149141705 +11846,6774,cronenberg,1149141021 +11846,6774,surreal,1149144892 +11846,6934,virtual reality,1149147317 +11846,6951,Crappy Remake,1149141568 +11846,6966,violence,1149145827 +11846,6996,crappy sequel,1149141889 +11846,7075,Angela Lansbury when she was hot,1149142329 +11846,7075,Basil Rathbone,1149142329 +11846,7075,Danny Kaye,1149142329 +11846,7075,fencing,1154081935 +11846,7075,midgets,1154081935 +11846,7123,drugs,1149143169 +11846,7141,...And this film has got nothing to with the action flick starring Rutger Hauer,1170902459 +11846,7266,wacky scientist,1149145228 +11846,7286,Hal Hartly,1171500123 +11846,7292,Eddie Murphy,1154083884 +11846,7292,incoherent,1154083884 +11846,7292,Robin Williams,1154083884 +11846,7307,gangrape,1170902750 +11846,7307,medieval,1170902750 +11846,7307,rape,1170902750 +11846,7307,Rutger Hauer,1170902612 +11846,7373,John Hurt,1149144332 +11846,7373,occult technology,1149144332 +11846,7481,aliens,1149146256 +11846,7481,massacred the book,1149146256 +11846,7812,noise in space,1149145201 +11846,7817,Sean Connery,1149147262 +11846,7817,surreal,1149147262 +11846,7991,cars,1149143868 +11846,7991,dystopia,1149143868 +11846,8167,Basil Rathbone,1154081673 +11846,8167,fencing,1154081734 +11846,8167,pirates,1154081734 +11846,8254,Johnny Depp,1154082777 +11846,8427,cars,1149148209 +11846,8427,chevy chase,1149148209 +11846,8427,dystopia,1149148209 +11846,8427,meatloaf,1149148209 +11846,8690,time travel,1149142716 +11846,8690,vonnegut,1149142716 +11846,8690,ww2,1149142716 +11846,8782,tv remake,1149148099 +11846,26203,evil computer,1149145024 +11846,26285,space travel,1149145114 +11846,26513,time travel,1149147455 +11846,26629,alien invasion,1149147410 +11846,26629,aliens,1149147410 +11846,31162,peter sellers,1175725009 +11846,31251,cryogenics,1149145951 +11846,33004,unfilmable original work,1149146365 +11846,33493,crappy sequel,1149146811 +11846,33493,noise in space,1149146811 +11846,33493,space opera,1149146811 +11846,34048,alien invasion,1149145566 +11846,34048,aliens,1149145566 +11846,34150,super-hero,1149146275 +11846,34405,tv spinoff,1149486256 +11846,46948,3d,1159680573 +11870,27423,Brazil,1426011908 +11893,3896,weapon choreography,1344067845 +11893,48394,atmospheric,1339491286 +11893,48394,bittersweet,1339491281 +11893,48394,fairy tale,1339491307 +11893,48394,surreal,1339491276 +11893,62511,long,1349472652 +11893,62511,philosophy,1349472615 +11893,78703,original,1352724909 +11893,78703,witty,1352724902 +11893,80729,absurd,1288539583 +11893,80729,art,1288539583 +11893,80729,funny,1288539583 +11893,80729,understated,1288539583 +11893,89745,comic book,1339490358 +11893,89745,Mark Ruffalo,1339490416 +11893,89745,Robert Downey Jr.,1339490429 +11893,89745,visually appealing,1339490475 +11893,89774,great acting,1352564710 +11893,89774,great writing,1352564732 +11893,89774,MMA,1352564757 +11893,89774,touching,1352564712 +11893,89904,silent movie,1339491193 +11893,89904,visually appealing,1339491208 +11893,94864,Good ending,1339490954 +11893,94864,scifi,1339490921 +11893,94959,love story,1352550636 +11893,94959,original,1352550661 +11893,94959,stylized,1352550665 +11893,96612,sickening,1361810977 +11893,100745,human,1361823503 +11907,8910,philosophy,1239679594 +11907,57669,dark comedy,1265566728 +11907,57669,drugs,1265566735 +11907,57669,friendship,1265566737 +11907,67734,funny,1278688881 +11907,67734,Jesse Eisenberg,1278688875 +11907,67734,Kristen Stewart,1278688877 +11995,16,corruption,1347199544 +11995,16,great performances,1347199527 +11995,16,mafia,1347199534 +11995,47,Brad Pitt,1347199754 +11995,47,dark,1347199763 +11995,47,disturbing,1347199759 +11995,47,Kevin Spacey,1347199751 +11995,47,Morgan Freeman,1347199756 +11995,47,twist ending,1347199768 +11995,50,complicated,1347199788 +11995,50,conspiracy,1347199797 +11995,50,heist,1347199783 +11995,50,Kevin Spacey,1347199792 +11995,50,twist ending,1347199778 +11995,110,action,1347198893 +11995,110,revenge,1347198900 +11995,318,atmospheric,1347199665 +11995,318,friendship,1347199655 +11995,318,prison escape,1347199647 +11995,318,Stephen King,1347199650 +11995,428,DeNiro,1347199611 +11995,428,peer presssure,1347199606 +11995,431,Al Pacino,1347199406 +11995,431,gangsters,1347199414 +11995,431,romance,1347199391 +11995,431,sad,1347199398 +11995,527,based on a true story,1347199033 +11995,527,disturbing,1347199029 +11995,527,historical,1347199045 +11995,527,World War II,1347199040 +11995,736,action,1347200576 +11995,736,disaster,1347200573 +11995,736,thriller,1347200596 +11995,1193,depressing,1347199686 +11995,1193,Jack Nicholson,1347199679 +11995,1193,psychology,1347199692 +11995,1213,dark comedy,1347199360 +11995,1213,disturbing,1347199373 +11995,1213,drama,1347199377 +11995,1213,mafia,1347199368 +11995,1213,organized crime,1347199364 +11995,1221,Al Pacino,1347199488 +11995,1221,dysfunctional family,1347199479 +11995,1221,mafia,1347199475 +11995,1221,Robert De Niro,1347199484 +11995,1228,boxing drama,1347199335 +11995,1228,stylized,1347199329 +11995,1228,visceral,1347199342 +11995,1299,grim,1347200014 +11995,1299,true story,1347200008 +11995,1299,Vietnam War,1347200025 +11995,1358,Amazing Classic,1347199246 +11995,1358,Billy Bob Thornton,1347199223 +11995,1358,ex-con,1347199240 +11995,1438,disaster,1347200679 +11995,1438,good special effects,1347200697 +11995,1466,1970s,1347199568 +11995,1466,based on a true story,1347199564 +11995,1466,interesting,1347199580 +11995,1466,Johnny Depp,1347199576 +11995,1466,organized crime,1347199572 +11995,1466,undercover cop,1347199586 +11995,1552,John Cusack,1347200761 +11995,1552,John Malkovich,1347200769 +11995,1552,Nicolas Cage,1347200764 +11995,1617,Crime,1347199832 +11995,1617,Drama,1347199829 +11995,1617,Russell Crowe,1347199817 +11995,1617,twist ending,1347199822 +11995,1950,racism,1347199853 +11995,2028,action,1347199005 +11995,2028,historical,1347198994 +11995,2028,World War II,1347199019 +11995,2268,conspiracy,1347199915 +11995,2268,corruption,1347199918 +11995,2268,courtroom drama,1347199921 +11995,2268,great performances,1347199926 +11995,2329,amazing photography,1347199126 +11995,2329,disturbing,1347199141 +11995,2329,emotional,1347199137 +11995,2329,powerful ending,1347199129 +11995,2329,thought-provoking,1347199132 +11995,2728,deliberate,1347200242 +11995,2728,earnest,1347200246 +11995,2728,poignant,1347200250 +11995,2959,atmospheric,1347199717 +11995,2959,dark comedy,1347199714 +11995,2959,disturbing,1347199720 +11995,2959,quirky,1347199730 +11995,2959,surreal,1347199724 +11995,2959,twist ending,1347199727 +11995,3107,firefighters,1347200819 +11995,3107,well done,1347200830 +11995,3468,con artists,1347199315 +11995,3468,intense,1347199299 +11995,3468,Paul Newman,1347199302 +11995,3498,bleak,1347199095 +11995,3498,disturbing,1347199103 +11995,3498,forceful,1347199107 +11995,3498,grim,1347199112 +11995,3578,action,1347200196 +11995,3578,history,1347200199 +11995,3578,Oscar (Best Effects - Visual Effects),1347200202 +11995,3578,stylized,1347200192 +11995,3578,violent,1347200209 +11995,3753,Mel Gibson,1347200305 +11995,3753,revenge story,1347200293 +11995,3753,touching,1347200290 +11995,4326,based on a true story,1347199956 +11995,4326,Corruption,1347199960 +11995,4326,drama,1347199965 +11995,4326,true story,1347199949 +11995,4958,Owen Wilson,1347200886 +11995,4958,Suspense,1347200890 +11995,5010,Drama,1347198956 +11995,5010,heroism,1347198959 +11995,5010,military,1347198965 +11995,5010,true story,1347198972 +11995,5152,acting,1347200950 +11995,5152,action packed,1347200943 +11995,5152,heroism,1347200955 +11995,5152,realistic,1347200939 +11995,5152,true story,1347200936 +11995,6213,Bruce Willis,1347200908 +11995,6213,Monica Bellucci,1347200914 +11995,6213,war,1347200918 +11995,6787,conspiracy,1347199878 +11995,6787,corruption,1347199881 +11995,6787,History,1347199886 +11995,6787,investigation,1347199875 +11995,6787,true story,1347199871 +11995,30707,Bittersweet,1347199199 +11995,30707,Clint Eastwood,1347199211 +11995,30707,thought-provoking,1347199206 +11995,30749,drama,1347199079 +11995,30749,ethnic conflict,1347199065 +11995,30749,history,1347199073 +11995,30749,true story,1347199068 +11995,33162,action,1347200333 +11995,33162,cinematography,1347200328 +11995,33162,history,1347200325 +11995,33162,Liam Neeson,1347200322 +11995,33162,Orlando Bloom,1347200336 +11995,34536,realistic,1347200983 +11995,34536,rescue,1347200978 +11995,34536,World War II,1347200991 +11995,45210,9/11,1347200068 +11995,45210,gripping emotive,1347200073 +11995,45210,self-sacrifice,1347200076 +11995,45210,true story,1347200079 +11995,45210,visceral,1347200082 +11995,51662,action,1347200367 +11995,51662,amazing photography,1347200381 +11995,51662,artistic,1347200370 +11995,51662,atmospheric,1347200365 +11995,51662,stylized,1347200373 +11995,58559,action,1347200153 +11995,58559,Christian Bale,1347200147 +11995,58559,dark,1347200141 +11995,58559,Heath Ledger,1347200144 +11995,58559,stylized,1347200157 +11995,59315,action,1347200417 +11995,59315,Robert Downey Jr.,1347200413 +11995,60074,anti-hero,1347200443 +11995,60074,better than expected,1347200454 +11995,60074,Will Smith,1347200448 +11995,64614,culture clash,1347199162 +11995,64614,drama,1347199183 +11995,64614,humorous,1347199179 +11995,64614,morality,1347199168 +11995,64614,redemption,1347199171 +11995,64839,aging,1347199287 +11995,64839,identity crisis,1347199271 +11995,64839,relationships,1347199275 +11995,69481,intense,1347200096 +11995,69481,thriller,1347200106 +11995,72378,apocalypse,1347200625 +11995,72378,John Cusack,1347200616 +11995,72378,Woody Harrelson,1347200621 +11999,260,sci-fi,1443816523 +11999,260,well-scored,1443816535 +12011,7153,Adventure,1447146836 +12047,1193,Oscar (Best Picture),1349477924 +12047,1193,psychology,1349477919 +12047,1202,cult film,1348588822 +12047,1202,dark comedy,1348588827 +12047,1202,drugs,1348588825 +12047,2762,i knew the ending,1348587578 +12047,63072,ending is wrong,1356040764 +12051,32,Dark Future,1337163599 +12051,327,Unrealistic Comedy,1337163183 +12051,380,Jamie Lee Curtis,1337176388 +12051,589,arnold swartzenegger,1337166009 +12051,968,black and white,1337163091 +12051,1136,cult film,1337177193 +12051,1197,fairy tales,1337176623 +12051,1203,social commentary,1337163531 +12051,1206,RAPE & SEXUAL ABUSE,1337164730 +12051,1224,British,1337166165 +12051,1673,Nudity (Full Frontal),1337165044 +12051,2628,directing is bad,1337176355 +12051,2712,Stanley Kubrick,1337165638 +12051,2953,Christmas,1337163204 +12051,4848,nonlinear,1337164922 +12051,6344,Christmas,1337163382 +12051,6539,Based on park ride,1337175845 +12051,8169,Spielberg,1337163297 +12051,27674,black comedy,1337163823 +12051,32587,Dark hero,1337177103 +12051,42721,medieval,1337193669 +12051,54286,spy thriller,1337177315 +12051,54995,horror,1337164261 +12051,58559,Dark hero,1337176899 +12051,60069,Childrens,1337176534 +12051,72998,visually stunning,1337177262 +12076,2,board game,1328614308 +12076,2,fantasy,1328614307 +12076,2,Robin Williams,1328614303 +12076,2,scary,1328614313 +12076,2,time travel,1328614316 +12076,47,dark,1334582516 +12076,47,disturbing,1334582517 +12076,47,Morgan Freeman,1334582501 +12076,47,mystery,1334582514 +12076,47,powerful ending,1334582506 +12076,47,psychology,1334582504 +12076,50,complicated,1338904082 +12076,50,ensemble cast,1338904078 +12076,50,Kevin Spacey,1340264384 +12076,50,suspense,1338904073 +12076,50,twist ending,1338904072 +12076,76,artificial intelligence,1328613612 +12076,76,horror,1328613613 +12076,76,Philip K. Dick,1328613610 +12076,76,post-apocalyptic,1328613616 +12076,76,so bad it's good,1328613624 +12076,76,to see: b-grade horror,1328613626 +12076,150,astronauts,1325941941 +12076,150,based on a true story,1325941938 +12076,150,drama,1325941943 +12076,150,moon,1325941949 +12076,150,NASA,1325941951 +12076,150,Oscar (Best Sound),1325941962 +12076,150,space,1325941967 +12076,150,suspense,1325941974 +12076,150,Tom Hanks,1325941954 +12076,208,adventure,1328900365 +12076,208,apocalypse,1328900353 +12076,208,Kevin Costner,1328900355 +12076,208,ocean,1328900356 +12076,208,steampunk,1328900350 +12076,208,survival,1328900362 +12076,208,water,1328900364 +12076,293,Action,1326287646 +12076,293,assassination,1326287634 +12076,293,corruption,1326287642 +12076,293,crime,1326287644 +12076,293,drama,1326287676 +12076,293,friendship,1326287658 +12076,293,great acting,1326287748 +12076,293,Jean Reno,1326287648 +12076,293,love story,1326287660 +12076,293,Natalie Portman,1326287652 +12076,293,organized crime,1326287669 +12076,293,quirky,1326287655 +12076,296,atmospheric,1325941817 +12076,296,Black comedy,1325941783 +12076,296,classic,1325941825 +12076,296,comedy,1325941803 +12076,296,cult film,1325941807 +12076,296,dark comedy,1325941787 +12076,296,imdb top 250,1325941800 +12076,296,nonlinear,1325941830 +12076,296,Samuel L. Jackson,1325941790 +12076,296,stylized,1325941794 +12076,318,atmospheric,1325942212 +12076,318,friendship,1325942215 +12076,318,inspirational,1325942203 +12076,318,Morgan Freeman,1325942200 +12076,318,prison escape,1325942205 +12076,318,reflective,1325942208 +12076,318,revenge,1325942210 +12076,318,sexuality,1325942194 +12076,318,thought-provoking,1325942198 +12076,329,Based on a TV show,1328613101 +12076,329,Brent Spiner,1328613112 +12076,329,Enterprise,1328613110 +12076,329,far future,1328613108 +12076,329,Gene Roddenberry,1328613103 +12076,329,Patrick Stewart,1328613105 +12076,329,Star Trek,1328613095 +12076,329,Trekkie,1328613115 +12076,329,William Shatner,1328613098 +12076,356,based on a book,1325941866 +12076,356,comedy,1325941868 +12076,356,historical,1325941870 +12076,356,Oscar (Best Actor),1325941879 +12076,356,Oscar (Best Directing),1325941888 +12076,356,Oscar (Best Picture),1325941851 +12076,356,psychology,1325941863 +12076,356,romance,1325941857 +12076,356,Tom Hanks,1325941859 +12076,356,vietnam war,1325941850 +12076,380,action,1325942358 +12076,380,Arnold Schwarzenegger,1325942355 +12076,380,comedy,1325942359 +12076,380,espionage,1325942380 +12076,380,ridiculous,1325942373 +12076,380,shallow plot,1325942368 +12076,380,terrorism,1325942365 +12076,480,adventure,1325942141 +12076,480,based on a book,1325942167 +12076,480,cloning,1325942171 +12076,480,dinosaurs,1325942149 +12076,480,drama,1325942152 +12076,480,genetics,1325942183 +12076,480,horror,1325942175 +12076,480,sci-fi,1325942157 +12076,480,stylized,1325942159 +12076,480,Suspense,1325942162 +12076,527,based on a true story,1325942276 +12076,527,black and white,1325942274 +12076,527,disturbing,1325942278 +12076,527,historical,1325942280 +12076,527,Holocaust,1325942282 +12076,527,Nazis,1325942289 +12076,527,Oscar (Best Cinematography),1325942291 +12076,527,Oscar (Best Directing),1325942293 +12076,527,Oscar (Best Picture),1325942287 +12076,527,World War II,1325942299 +12076,541,artificial intelligence,1328612459 +12076,541,atmospheric,1328612462 +12076,541,based on a book,1328612465 +12076,541,classic,1328612467 +12076,541,cult film,1328612469 +12076,541,cyberpunk,1328612446 +12076,541,dystopia,1328612471 +12076,541,Harrison Ford,1328612449 +12076,541,Philip K. Dick,1328612474 +12076,541,robots,1328612451 +12076,541,sci-fi,1328612454 +12076,541,stylized,1328612457 +12076,586,childhood classics,1328614364 +12076,586,comedy,1328614385 +12076,586,Invincible but idiot bad guys,1328614372 +12076,586,nostalgia,1328614360 +12076,589,Arnold Schwarzenegger,1325941988 +12076,589,artificial intelligence,1325942001 +12076,589,computers,1325942006 +12076,589,dystopia,1325942039 +12076,589,future,1325942003 +12076,589,imdb top 250,1325942032 +12076,589,nuclear war,1325942012 +12076,589,robots,1325941997 +12076,589,sci-fi,1325942029 +12076,589,stylized,1325942016 +12076,589,Suspense,1325942018 +12076,589,time travel,1325941999 +12076,593,Anthony Hopkins,1330043313 +12076,593,cannibalism,1330043322 +12076,593,disturbing,1330043315 +12076,593,Hannibal Lecter,1330043317 +12076,593,Jodie Foster,1330043324 +12076,593,serial killer,1330043319 +12076,593,suspense,1330043326 +12076,653,action,1328615283 +12076,653,adventure,1328615248 +12076,653,dragons,1328615271 +12076,653,epic,1328615268 +12076,653,fantasy,1328615254 +12076,653,good family movie,1328615256 +12076,653,Sean Connery,1328615262 +12076,733,Action,1328613794 +12076,733,Alcatraz,1328613792 +12076,733,biological warfare,1328613791 +12076,733,Nudity (Nic Cage),1328613785 +12076,733,Sean Connery,1328613776 +12076,733,terrorism,1328613779 +12076,733,thriller,1328613781 +12076,741,artificial intelligence,1329671190 +12076,741,cyberpunk,1329671191 +12076,741,philosophical,1329671198 +12076,741,techno-evolution,1329671202 +12076,780,adventure,1325942119 +12076,780,alien invasion,1325942051 +12076,780,aliens,1325942061 +12076,780,apocalypse,1325942057 +12076,780,aviation,1325942090 +12076,780,end of the world,1325942084 +12076,780,humorous,1325942081 +12076,780,Oscar Winner,1325942108 +12076,780,tense,1325942098 +12076,780,US President,1325942093 +12076,780,war,1325942104 +12076,780,Will Smith,1325942101 +12076,786,action,1328615182 +12076,786,animal attacks,1328615180 +12076,786,Arnold Schwarzenegger,1328615160 +12076,786,conspiracy,1328615173 +12076,786,defense contractors,1328615176 +12076,786,parachute,1328615191 +12076,786,railgun,1328615168 +12076,786,Vanessa L. Williams,1328615186 +12076,858,Al Pacino,1328614604 +12076,858,atmospheric,1328614623 +12076,858,based on a book,1328614634 +12076,858,family,1328614637 +12076,858,Marlon Brando,1328614618 +12076,858,melancholy,1328614631 +12076,858,Nudity (Topless),1328614626 +12076,858,organized crime,1328614621 +12076,858,robert de niro,1328614607 +12076,924,aliens,1328610253 +12076,924,artificial intelligence,1328610244 +12076,924,atmospheric,1328610259 +12076,924,Dawn of Man,1328610281 +12076,924,future,1328610262 +12076,924,futuristic,1328610264 +12076,924,Oscar (Best Effects - Visual Effects),1328610241 +12076,924,philosophical,1328610240 +12076,924,robots,1328610268 +12076,924,sci-fi,1328610225 +12076,924,space,1328610233 +12076,924,surreal,1328610237 +12076,924,visually appealing,1328610270 +12076,1127,Deep Ocean,1328901821 +12076,1127,Dynamic CGI Action,1328901807 +12076,1127,first contact,1328901810 +12076,1127,ocean,1328901818 +12076,1127,paranoia,1328901801 +12076,1127,submarine,1328901800 +12076,1127,Technology,1328901815 +12076,1127,Underwater,1328901805 +12076,1136,british comedy,1328611260 +12076,1136,hilarious,1328611264 +12076,1136,John Cleese,1328611294 +12076,1136,medieval,1328611273 +12076,1136,Monty Python,1328611265 +12076,1136,parody,1328611267 +12076,1136,satirical,1328611270 +12076,1196,adventure,1325942476 +12076,1196,boba fett,1325942498 +12076,1196,darth vader,1325942504 +12076,1196,fantasy,1325942470 +12076,1196,father-son relationship,1325942472 +12076,1196,George Lucas,1325942465 +12076,1196,Harrison Ford,1325942468 +12076,1196,music,1325942489 +12076,1196,robots,1325942478 +12076,1196,space,1325942461 +12076,1196,Space battle,1325942564 +12076,1196,sword fight,1325942548 +12076,1200,action,1328612598 +12076,1200,aliens,1328612593 +12076,1200,androids,1328612590 +12076,1200,Colonial marines,1328612650 +12076,1200,sci-fi,1328612613 +12076,1200,Sigourney Weaver,1328612604 +12076,1200,SPACE TRAVEL,1328612607 +12076,1200,suspense,1328612609 +12076,1200,violent,1328612611 +12076,1208,disturbing,1351688721 +12076,1208,gore,1351688744 +12076,1208,military,1351688725 +12076,1208,surreal,1351688718 +12076,1208,violent,1351688728 +12076,1208,war,1351688730 +12076,1214,aliens,1328612660 +12076,1214,androids,1328612663 +12076,1214,atmospheric,1328612665 +12076,1214,classic,1328612668 +12076,1214,dark,1328612671 +12076,1214,futuristic,1328612689 +12076,1214,horror,1328612684 +12076,1214,monster,1328612685 +12076,1214,Ridley Scott,1328612681 +12076,1214,sci-fi,1328612673 +12076,1214,space travel,1328612675 +12076,1214,suspense,1328612676 +12076,1214,thriller,1328612679 +12076,1274,cyberpunk,1329764646 +12076,1274,dystopia,1329764644 +12076,1274,future,1329764648 +12076,1274,hallucinatory,1329764650 +12076,1274,visually stunning,1329764641 +12076,1287,100 dead horses,1327256693 +12076,1293,anti-war,1328614747 +12076,1293,based on a true story,1328614748 +12076,1293,Ben Kingsley,1328614744 +12076,1293,biographical,1328614750 +12076,1293,biography,1328614754 +12076,1293,humane,1328614752 +12076,1293,humanity,1328614753 +12076,1293,India,1328614745 +12076,1293,Story/charecters altered to be more cinamatic,1328614913 +12076,1293,terrorism,1328614757 +12076,1293,world politics,1328614760 +12076,1356,Based on a TV show,1328613135 +12076,1356,Borg,1328613137 +12076,1356,first contact,1328613139 +12076,1356,Intense,1328613142 +12076,1356,Patrick Stewart,1328613132 +12076,1356,Star Trek,1328613150 +12076,1356,The line,1328613157 +12076,1356,time travel,1328613148 +12076,1375,Gene Roddenberry,1328613179 +12076,1375,Leonard Nimoy,1328613171 +12076,1375,Star Trek,1328613177 +12076,1375,William Shatner,1328613174 +12076,1377,Tim Burton,1336368926 +12076,1391,alien invasion,1328611444 +12076,1391,aliens,1328611447 +12076,1391,comedy,1328611463 +12076,1391,ensemble cast,1328611452 +12076,1391,Jack Nicholson,1328611457 +12076,1391,Natalie Portman,1328611456 +12076,1391,Parody,1328611465 +12076,1391,satire,1328611462 +12076,1391,stupid,1328611440 +12076,1527,Bruce Willis,1328614687 +12076,1527,Chris Tucker,1328614726 +12076,1527,cinematography,1328614707 +12076,1527,futuristic,1328614689 +12076,1527,Milla Jovovich,1328614688 +12076,1527,satirical,1328614696 +12076,1527,sci-fi,1328614700 +12076,1527,stylized,1328614699 +12076,1527,surreal,1328614703 +12076,1580,adapted from:comic,1325942664 +12076,1580,aliens,1325942686 +12076,1580,buddy movie,1325942667 +12076,1580,comedy,1325942670 +12076,1580,plot twist,1325942659 +12076,1580,sci-fi,1325942673 +12076,1580,Tommy Lee Jones,1325942651 +12076,1580,Will Smith,1325942647 +12076,1590,dark,1328615141 +12076,1590,death,1328615150 +12076,1590,distorted reality,1328615139 +12076,1590,hell,1328615144 +12076,1590,horror,1328615146 +12076,1590,Sam Neill,1328615129 +12076,1590,Scary,1328615135 +12076,1590,scary as hell,1328615131 +12076,1590,sci-fi,1328615127 +12076,1590,spaceflight,1328615125 +12076,1617,film noir,1340264400 +12076,1617,Russell Crowe,1340264395 +12076,1617,suspense,1340264397 +12076,1617,twist ending,1340264396 +12076,1617,visually appealing,1340264404 +12076,1625,Michael Douglas,1340264447 +12076,1625,mindfuck,1340264449 +12076,1625,Mystery,1340264444 +12076,1625,psychological,1340264443 +12076,1625,Sean Penn,1340264451 +12076,1625,twist ending,1340264445 +12076,1653,dystopia,1328612167 +12076,1653,dystopic future,1328612169 +12076,1653,future,1328612172 +12076,1653,genetic engineering,1328612176 +12076,1653,genetic selection,1328612178 +12076,1653,genetics,1328612181 +12076,1653,powerful ending,1328612185 +12076,1653,sci-fi,1328612186 +12076,1653,space travel,1328612188 +12076,1653,thought-provoking,1328612196 +12076,1653,Uma Thurman,1328612200 +12076,1653,visually appealing,1328612198 +12076,1665,Based on a TV show,1328612517 +12076,1665,British comedy,1328612520 +12076,1665,funny,1328612526 +12076,1665,Rowan Atkinson,1328612534 +12076,1676,Alien Invasion,1328610962 +12076,1676,aliens,1328610966 +12076,1676,based on a book,1328610969 +12076,1676,coming of age,1328610972 +12076,1676,fascism,1328610975 +12076,1676,future,1328610997 +12076,1676,military,1328610999 +12076,1676,satire,1328610977 +12076,1676,sci-fi,1328610978 +12076,1676,social commentary,1328610981 +12076,1676,space,1328610984 +12076,1676,violent,1328610990 +12076,1676,war,1328610989 +12076,1676,witty,1328610993 +12076,1681,bad acting,1328900325 +12076,1681,bad cgi,1328900327 +12076,1681,Everything,1328900333 +12076,1681,martial arts,1328900337 +12076,1681,pointless,1328900335 +12076,1681,Unnecessary sequel,1328900330 +12076,1682,cerebral,1328613032 +12076,1682,dark comedy,1328613031 +12076,1682,drama,1328613028 +12076,1682,dreamlike,1328613027 +12076,1682,island,1328613017 +12076,1682,Jim Carrey,1328613003 +12076,1682,small town,1328613021 +12076,1682,social commentary,1328613006 +12076,1682,stylized,1328613009 +12076,1682,surveillance,1328613013 +12076,1748,atmospheric,1328795175 +12076,1748,dystopia,1328795173 +12076,1748,jennifer connelly's sway,1328795193 +12076,1748,memory,1328795207 +12076,1748,Post apocalyptic,1328795167 +12076,1748,steampunk,1328795183 +12076,1748,surreal,1328795172 +12076,1748,thought-provoking,1328795170 +12076,1762,Famke Janssen,1328901909 +12076,1762,good gore usage,1328901912 +12076,1762,interesting monsters,1328901913 +12076,1762,over-the-top action,1328901914 +12076,1762,so bad it's funny,1328901916 +12076,1762,surprise octopus,1328901907 +12076,1882,Godzilla,1328614519 +12076,1882,Jean Reno,1328614511 +12076,1884,disturbing,1338959501 +12076,1884,hallucinatory,1338959490 +12076,1884,Johnny Depp,1338959504 +12076,1884,satirical,1338959509 +12076,1884,social commentary,1338959506 +12076,1909,aliens,1328612830 +12076,1909,Antarctica,1328612833 +12076,1909,Based on a TV show,1328612819 +12076,1909,conspiracy,1328612836 +12076,1909,science fiction,1328612841 +12076,1909,X-Files,1328612821 +12076,1921,atmospheric,1336368067 +12076,1921,black and white,1336368040 +12076,1921,existentialism,1336368042 +12076,1921,great soundtrack,1336368045 +12076,1921,low budget,1336368059 +12076,1921,mathematics,1336368046 +12076,1921,mental illness,1336368049 +12076,1921,New York City,1336368062 +12076,1921,stylized,1336368065 +12076,2150,Africa,1328611949 +12076,2150,Betamax,1328611924 +12076,2150,silly,1328611927 +12076,2150,slapstick,1328611929 +12076,2167,Badass,1328621369 +12076,2167,effects,1328621380 +12076,2167,vampire,1328621362 +12076,2167,vampires,1328621378 +12076,2167,Wesley Snipes,1328621359 +12076,2311,boring,1328624635 +12076,2311,disappointing successor,1328624631 +12076,2311,space,1328624650 +12076,2336,cate blanchett,1336367990 +12076,2336,England,1336367981 +12076,2336,Geoffrey Rush,1336367987 +12076,2336,true story,1336367984 +12076,2340,Anthony Hopkins,1330113897 +12076,2340,supernatural,1330113922 +12076,2340,SUPERNATURAL ROMANCE,1330113910 +12076,2340,Too Long!,1330113904 +12076,2549,video game adaptation,1328899117 +12076,2571,Action,1325942437 +12076,2571,alternate reality,1325942411 +12076,2571,artificial intelligence,1325942416 +12076,2571,computers,1325942418 +12076,2571,cult film,1325942425 +12076,2571,cyberpunk,1325942407 +12076,2571,dystopia,1325942398 +12076,2571,fantasy,1325942445 +12076,2571,fight scenes,1325942441 +12076,2571,philosophical,1325942406 +12076,2571,philosophy,1325942402 +12076,2571,sci-fi,1325942393 +12076,2571,stylized,1325942430 +12076,2571,surreal,1325942395 +12076,2571,thought-provoking,1325942433 +12076,2571,virtual reality,1325942392 +12076,2640,nostalgia,1336368763 +12076,2710,disturbing,1328621330 +12076,2710,low budget,1328621323 +12076,2710,mimics documentary-style,1328621314 +12076,2710,No Happy End,1328621338 +12076,2710,original,1328621335 +12076,2710,scary,1328621319 +12076,2710,suspense,1328621343 +12076,2716,Bill Murray,1328615360 +12076,2716,classic,1328615385 +12076,2716,ghosts,1328615394 +12076,2716,hilarious,1328615398 +12076,2716,horror comedy,1328615382 +12076,2716,mystery,1328615378 +12076,2716,New York City,1328615376 +12076,2716,occult technology,1328615371 +12076,2716,paranormal,1328615363 +12076,2716,quotable,1328615367 +12076,2716,Sigourney Weaver,1328615369 +12076,2762,ghosts,1325942614 +12076,2762,ghosts/afterlife,1325942620 +12076,2762,mindfuck,1325942627 +12076,2762,psychology,1325942617 +12076,2762,suspense,1325942641 +12076,2762,twist ending,1325942625 +12076,2808,cyborgs,1328900227 +12076,2808,Jean-Claude Van Damme,1328900228 +12076,2959,atmospheric,1334597575 +12076,2959,dark comedy,1334597564 +12076,2959,disturbing,1334597576 +12076,2959,Edward Norton,1334597567 +12076,2959,psychological,1334597625 +12076,2959,psychology,1334597569 +12076,2959,social commentary,1334597571 +12076,2959,surreal,1334597573 +12076,3147,cinematography,1330767402 +12076,3147,death penalty,1330767404 +12076,3147,drama,1330767406 +12076,3147,emotional,1330767400 +12076,3147,great acting,1330767417 +12076,3147,heartwarming,1330767392 +12076,3147,nostalgic,1330767397 +12076,3147,Sam Rockwell,1330767414 +12076,3147,sentimental,1330767411 +12076,3147,Tom Hanks,1330767394 +12076,3499,claustrophobic,1330043385 +12076,3499,menacing,1330043397 +12076,3499,tense,1330043393 +12076,3499,thriller,1330043391 +12076,3527,aliens,1328613946 +12076,3527,Arnold Schwarzenegger,1328613937 +12076,3527,hunting,1328613943 +12076,3527,violent,1328613940 +12076,3527,weapons,1328613950 +12076,3578,action,1328611972 +12076,3578,Ridley Scott,1325942827 +12076,3578,Rome,1328611961 +12076,3578,Russell Crowe,1328611967 +12076,3578,stylized,1325942831 +12076,3578,sword fight,1325942829 +12076,3578,violence,1325942834 +12076,3593,aliens,1328900869 +12076,3593,John Travolta 's Hair,1328900953 +12076,3593,So bad its good,1328900917 +12076,3593,waste of celluloid,1328900969 +12076,3698,Arnold Schwarzenegger,1328613751 +12076,3698,author:Stephen King,1328613754 +12076,3698,based on a book,1328613756 +12076,3698,corruption,1328613759 +12076,3698,police corruption,1328613760 +12076,3698,television,1328613763 +12076,3751,claymation,1329526307 +12076,3751,Dreamworks,1329526306 +12076,3751,funny,1329526312 +12076,3949,atmospheric,1334233566 +12076,3949,dark,1334233573 +12076,3949,depressing,1334233569 +12076,3986,Arnold Schwarzenegger,1328900141 +12076,3986,bad science,1328900146 +12076,3986,futuristic,1328900143 +12076,3986,genetics,1328900144 +12076,3994,atmospheric,1328610865 +12076,3994,father-son relationship,1328610891 +12076,3994,M. Night Shyamalan,1328610863 +12076,3994,melancholy,1328610866 +12076,3994,mindfuck,1328610870 +12076,3994,Samuel L. Jackson,1328610872 +12076,3994,somber,1328610883 +12076,3994,superhero,1328610879 +12076,3994,twist ending,1328610875 +12076,3994,unique,1328610881 +12076,3996,atmospheric,1328795108 +12076,3996,beautifully filmed,1328795111 +12076,3996,romance,1328795141 +12076,3996,stylized,1328795145 +12076,3996,sword fight,1328795116 +12076,3997,so bad it's good,1328900549 +12076,4133,80s nostalgia,1328901578 +12076,4133,he-man,1328901576 +12076,4133,skeletor,1328901575 +12076,4133,whipping,1328901588 +12076,4148,Anthony Hopkins,1328614533 +12076,4148,Gary Oldman,1328614544 +12076,4148,Hannibal Lecter,1328614546 +12076,4148,HAUNTED BY THE PAST,1328614541 +12076,4148,psychology,1328614539 +12076,4148,Ridley Scott,1328614554 +12076,4148,serial killer,1328614535 +12076,4148,stylized,1328614537 +12076,4226,amnesia,1328611326 +12076,4226,black and white,1328611330 +12076,4226,Christopher Nolan,1328611313 +12076,4226,complicated,1328611323 +12076,4226,dreamlike,1328611332 +12076,4226,memory,1328611317 +12076,4226,mystery,1328611320 +12076,4226,psychology,1328611338 +12076,4226,revenge,1328611343 +12076,4226,stylized,1328611339 +12076,4226,tense,1328611341 +12076,4270,action packed,1328900782 +12076,4270,adventure,1328900773 +12076,4270,comedy,1328900763 +12076,4270,fun,1328900791 +12076,4270,ghosts/afterlife,1328900787 +12076,4270,mummy,1328900785 +12076,4270,Rachel Weisz,1328900761 +12076,4343,acting,1328615114 +12076,4343,aliens,1328615093 +12076,4343,David Duchovny,1328615106 +12076,4343,hillarious,1328615116 +12076,4343,meteorite,1328615111 +12076,4343,silly,1328615100 +12076,4343,Stupid,1328615097 +12076,4370,androids,1328623563 +12076,4370,artificial intelligence,1328623559 +12076,4370,robots,1328623578 +12076,4446,alien invasion,1328614673 +12076,4446,distance from source material,1328614651 +12076,4446,not related to Final Fantasy,1328614655 +12076,4446,post-apocalyptic,1328614662 +12076,4446,sci-fi,1328614665 +12076,4446,visually stunning,1328614668 +12076,4446,weak characters,1328614659 +12076,4728,Cuba Gooding Jr.,1326714714 +12076,4728,John Cleese,1326714723 +12076,4728,Nazis,1326714718 +12076,4728,Rowan Atkinson,1326714712 +12076,4728,Whoopi Goldberg,1326714731 +12076,4735,dumbass cut his thumb off,1333625031 +12076,4735,Jason Statham,1333625014 +12076,4735,John Carpenter,1333625018 +12076,4735,Mars,1333625027 +12076,4878,dreamlike,1330024885 +12076,4878,mental illness,1330024883 +12076,4878,psychology,1330024875 +12076,4878,social commentary,1330024881 +12076,4878,surreal,1330024880 +12076,4878,thought-provoking,1330024877 +12076,4878,time travel,1330024876 +12076,4886,animation,1328613969 +12076,4886,classic,1328613976 +12076,4886,Comedy,1328613965 +12076,4886,hilarious,1328613978 +12076,4896,Adventure,1328614456 +12076,4896,fantasy,1328614457 +12076,4896,ghosts,1328614468 +12076,4896,humorous,1328614463 +12076,4896,magic,1328614459 +12076,4896,mystery,1328614461 +12076,4896,mythology,1328614474 +12076,4896,Wizards,1328614464 +12076,4958,Gene Hackman,1336369225 +12076,4958,international peacekeeping,1336369229 +12076,4958,Owen Wilson,1336369233 +12076,4958,Suspense,1336369249 +12076,4958,war,1336369236 +12076,4973,beautifully filmed,1332319361 +12076,4973,great soundtrack,1332319361 +12076,4993,Action,1328611706 +12076,4993,adventure,1328611709 +12076,4993,atmospheric,1328611711 +12076,4993,based on a book,1328611714 +12076,4993,beautifully filmed,1328611722 +12076,4993,fantasy,1328611719 +12076,4993,high fantasy,1328611717 +12076,4993,magic,1328611729 +12076,4993,music,1328611732 +12076,4993,mythology,1328611736 +12076,4993,romance,1328611738 +12076,4993,stylized,1328611726 +12076,4993,time travel,1328611740 +12076,4993,Viggo Mortensen,1328611803 +12076,4993,wizards,1328611724 +12076,5254,Does not improve on Blade,1328901225 +12076,5254,Dynamic CGI Action,1328901220 +12076,5254,swords,1328901229 +12076,5254,vampire,1328901213 +12076,5254,vampires,1328901214 +12076,5254,Wesley Snipes,1328901216 +12076,5313,corny humor,1328901529 +12076,5313,Dwayne Johnson,1328901525 +12076,5313,mummy,1328901533 +12076,5313,The Rock not rocking,1328901531 +12076,5349,alter ego,1336368224 +12076,5418,based on a book,1328618864 +12076,5418,cinematography,1328618865 +12076,5418,espionage,1328618816 +12076,5418,Matt Damon,1328618817 +12076,5418,spy,1328618822 +12076,5418,thriller,1328618819 +12076,5418,trilogy,1328618963 +12076,5463,action,1328900847 +12076,5463,Christian Bale,1328900840 +12076,5463,dragons,1328900844 +12076,5463,post-apocalyptic,1328900842 +12076,5502,Alien Invasion,1328901999 +12076,5502,humorous,1328902003 +12076,5502,invasion,1328902001 +12076,5502,meditative,1339340343 +12076,5502,ominous,1328902010 +12076,5502,silly,1339340338 +12076,5502,stupid,1339340337 +12076,5502,suspenseful,1328902008 +12076,5903,Amazing Cinematography,1328612312 +12076,5903,Christian Bale,1328612316 +12076,5903,cinematography,1328612320 +12076,5903,drugs,1328612338 +12076,5903,dystopia,1328612310 +12076,5903,guns,1328612333 +12076,5903,martial arts,1328612336 +12076,5903,post-apocalyptic,1328612308 +12076,5903,revolution,1328612330 +12076,5903,thought-provoking,1328612326 +12076,5903,totalitarianism,1328612306 +12076,5944,bald nemesis,1328794976 +12076,5944,Brent Spiner,1328794971 +12076,5944,franchise,1328794980 +12076,5944,Jonathan Frakes,1328794989 +12076,5944,LeVar Burton,1328794986 +12076,5944,Patrick Stewart,1328794965 +12076,5944,romulan,1328794992 +12076,5944,Star Trek,1328794967 +12076,5952,Action,1328611540 +12076,5952,adventure,1328611538 +12076,5952,atmospheric,1328611536 +12076,5952,based on a book,1328611535 +12076,5952,fantasy world,1328611532 +12076,5952,great soundtrack,1328611547 +12076,5952,high fantasy,1328611517 +12076,5952,magic,1328611556 +12076,5952,multiple storylines,1328611530 +12076,5952,mythology,1328611545 +12076,5952,new zealand,1328611542 +12076,5952,scenic,1328611521 +12076,5952,trilogy,1328611524 +12076,5952,Viggo Mortensen.,1328611786 +12076,5952,war,1328611550 +12076,5989,feel good movie,1328616041 +12076,5989,Leonardo DiCaprio,1328616033 +12076,5989,Tom Hanks,1328616034 +12076,5989,true story,1328616037 +12076,5989,twists & turns,1328616038 +12076,5995,Adrien Brody,1336026710 +12076,5995,holocaust,1336026714 +12076,5995,Long Act 2,1336026805 +12076,5995,music,1336026727 +12076,5995,Nazis,1336026724 +12076,5995,Poland,1336026716 +12076,5995,reflective,1336026730 +12076,5995,true story,1336026719 +12076,5995,Weak pacing,1336026749 +12076,5995,World War II,1336026722 +12076,6264,bad science,1328901968 +12076,6264,so bad it's funny,1328901974 +12076,6264,stupid plot,1328901965 +12076,6264,unrealistic,1328901969 +12076,6283,amazing artwork,1329561458 +12076,6283,Animation,1329561482 +12076,6283,Bebop,1329561447 +12076,6283,genre mix,1329561457 +12076,6283,good score,1329561471 +12076,6283,humorous,1329561454 +12076,6283,sci-fi,1329561464 +12076,6283,visceral,1329561466 +12076,6534,Action,1328901118 +12076,6534,mad scientist,1328901116 +12076,6534,transformation,1328901114 +12076,6541,captain nemo,1328901158 +12076,6541,dorian grey,1328901165 +12076,6541,Sean Connery,1328901148 +12076,6541,steampunk,1328901153 +12076,6541,vampires,1328901150 +12076,6564,betrayal,1328900315 +12076,6564,fighting,1328900305 +12076,6564,predictable,1328900308 +12076,6564,special effects,1328900303 +12076,6711,Amazing Cinematography,1327256314 +12076,6711,atmospheric,1327256316 +12076,6711,Bill Murray,1327256385 +12076,6711,complex characters,1327256345 +12076,6711,friendship,1327256393 +12076,6711,isolation,1327256329 +12076,6711,Japan,1327256322 +12076,6711,Melancholic,1327256373 +12076,6711,music,1327256334 +12076,6711,reflective,1327256325 +12076,6711,Scarlett Johansson,1327256388 +12076,6711,tokyo,1327256323 +12076,6711,urbane,1327256340 +12076,6870,great acting,1336911263 +12076,6870,Sean Penn,1336911269 +12076,6874,assassin,1328614247 +12076,6874,funny,1328614295 +12076,6874,katana,1328614277 +12076,6874,martial arts,1328614242 +12076,6874,nonlinear,1328614243 +12076,6874,Quentin Tarantino,1328614235 +12076,6874,Revenge,1328614292 +12076,6874,Sword,1328614285 +12076,6874,Uma Thurman,1328614233 +12076,6874,violent,1328614237 +12076,6874,visually appealing,1328614240 +12076,6953,life & death,1334162305 +12076,6953,melancholy,1334162304 +12076,6953,Nonlinear,1334162295 +12076,6953,Sean Penn,1334162297 +12076,6953,Tragedy,1334162298 +12076,7004,Arnold Schwarzenegger,1328611810 +12076,7004,comedy,1328611816 +12076,7004,Cute!,1328611820 +12076,7004,elementary school,1328611813 +12076,7004,kids fun,1328611826 +12076,7004,teacher,1328611829 +12076,7004,undercover cop,1328611818 +12076,7153,Action,1328611567 +12076,7153,adventure,1328611562 +12076,7153,atmospheric,1328611565 +12076,7153,based on a book,1328611588 +12076,7153,ensemble cast,1328611590 +12076,7153,fantasy world,1328611570 +12076,7153,magic,1328611585 +12076,7153,multiple storylines,1328611572 +12076,7153,mythology,1328611574 +12076,7153,new zealand,1328611576 +12076,7153,stylized,1328611579 +12076,7153,trilogy,1328611618 +12076,7153,Viggo Mortensen,1328611793 +12076,7153,war,1328611581 +12076,7324,long distance race with horses in the desert,1336369097 +12076,7324,middle east,1336369093 +12076,7324,Omar Sharif,1336369091 +12076,7324,Viggo Mortensen,1336369087 +12076,7361,alternate reality,1328612256 +12076,7361,comedy,1328612264 +12076,7361,dreamlike,1328612265 +12076,7361,imagination,1328612267 +12076,7361,Jim Carrey,1328612259 +12076,7361,memory,1328612269 +12076,7361,nonlinear,1328612270 +12076,7361,psychology,1328612280 +12076,7361,quirky,1328612282 +12076,7361,romance,1328612285 +12076,7361,surreal,1328612289 +12076,7361,surrealism,1328612292 +12076,7361,thought-provoking,1328612274 +12076,7438,bill,1328614044 +12076,7438,dialogue,1328614055 +12076,7438,martial arts,1328614016 +12076,7438,Quentin Tarantino,1328613987 +12076,7438,revenge,1328613993 +12076,7438,stylized,1328613990 +12076,7438,Uma Thurman,1328614038 +12076,7811,Babylon 5,1328795024 +12076,7811,sci-fi,1328795018 +12076,7841,Bene Gesserit,1328794293 +12076,7841,desert,1328794322 +12076,7841,Frank Herbert,1328794275 +12076,7841,Guild Navigator,1328794289 +12076,7841,plot,1328794332 +12076,7841,royalty,1328794280 +12076,7842,author:Frank Herbert,1328794361 +12076,7842,desert,1328794365 +12076,7842,royalty,1328794369 +12076,8622,comedy,1328615053 +12076,8622,conspiracy,1328615052 +12076,8622,documentary,1328615055 +12076,8622,family,1328615042 +12076,8622,Michael Moore,1328615056 +12076,8622,military,1328615045 +12076,8622,politics,1328615051 +12076,8622,social commentary,1328615050 +12076,8622,US President,1328615047 +12076,8861,Milla Jovovich,1328899305 +12076,8861,resident evil,1328899316 +12076,8861,zombies,1328899310 +12076,8874,black comedy,1328613555 +12076,8874,british comedy,1328613557 +12076,8874,england,1328613569 +12076,8874,hilarious,1328613566 +12076,8874,Simon Pegg,1328613560 +12076,8874,spoof,1328613563 +12076,8874,violent,1328613573 +12076,8874,zombie,1328613559 +12076,8914,clever,1333506780 +12076,8914,Complicated,1333506765 +12076,8914,dialogue driven,1333506782 +12076,8914,low budget,1333506776 +12076,8914,mindfuck,1333506767 +12076,8914,paradox,1333506770 +12076,8914,time travel,1333506772 +12076,8950,atmospheric,1336143133 +12076,8950,creepy,1336143145 +12076,8950,dark,1336143148 +12076,8950,disturbing,1336143147 +12076,8950,great acting,1336143150 +12076,8950,memory,1336143129 +12076,8950,stylized,1336143139 +12076,8985,gothic,1328901240 +12076,8985,Jessica Biel,1328901237 +12076,8985,vampires,1328901244 +12076,8985,Wesley Snipes,1328901241 +12076,27611,androids,1328612579 +12076,27611,based on a TV show,1328612557 +12076,27611,MILITARY LIFE,1328612552 +12076,27611,political,1328612575 +12076,27611,post-apocalyptic,1328612559 +12076,27611,robots,1328612565 +12076,27611,sci-fi,1328612569 +12076,27611,space,1328612571 +12076,27611,thought-provoking,1328612563 +12076,27611,visually appealing,1328612562 +12076,27800,Daft Punk,1334315826 +12076,27800,music,1334315828 +12076,31660,Patrick Stewart,1329528523 +12076,31660,steampunk,1329528521 +12076,31696,heaven and hell,1328901432 +12076,31696,Keanu Reeves,1328901433 +12076,31696,Rachel Weisz,1328901430 +12076,31696,supernatural,1328901434 +12076,31804,Dynamic CGI Action,1328794026 +12076,31804,great cinematography,1328794015 +12076,31804,makes no sense,1328794041 +12076,31804,not as good as I expected,1328794036 +12076,31804,Russian,1328794008 +12076,31804,vampires,1328794005 +12076,33004,aliens,1328614410 +12076,33004,based on a book,1328614414 +12076,33004,John Malkovich,1328614424 +12076,33004,post-apocalyptic,1328614416 +12076,33004,sci-fi,1328614407 +12076,33004,witty,1328614436 +12076,34334,artificial intelligence,1328900056 +12076,34334,aviation,1328900074 +12076,34334,awesomely bad,1328900060 +12076,34334,Fighter that downloads music from internet right!,1328900065 +12076,34334,innuendo,1328900086 +12076,34334,Jessica Biel,1328900071 +12076,34334,military,1328900094 +12076,34334,terrible career choices,1328900084 +12076,34334,U.S.S. Abraham Lincoln (CVN 72),1328900090 +12076,34334,unintentional comedy,1328900080 +12076,36529,Africa,1328611488 +12076,36529,arms dealer,1328611492 +12076,36529,based on a true story,1328611495 +12076,36529,cold war,1328611499 +12076,36529,dark comedy,1328611509 +12076,36529,Nicolas Cage,1328611501 +12076,36529,political,1328611506 +12076,36529,smuggling,1328611503 +12076,37380,Dwayne Johnson,1328899138 +12076,37380,First Person Movie,1328899144 +12076,37380,lame,1328899147 +12076,37380,monsters,1328899149 +12076,37380,videogame,1328899153 +12076,37386,assassin,1328900275 +12076,37386,atmospheric,1328900273 +12076,37386,cinematography,1328900277 +12076,37386,dystopia,1328900272 +12076,37386,heroine in tight suit,1328900281 +12076,37386,Post apocalyptic,1328900270 +12076,37386,revolution,1328900280 +12076,37386,Science Fiction,1328900284 +12076,37386,visually appealing,1328900268 +12076,42738,heroine in tight suit,1328901624 +12076,42738,Kate Beckinsale,1328901627 +12076,42738,strong-minded characters,1328901634 +12076,42738,vampires,1328901630 +12076,42738,werewolves,1328901628 +12076,43928,atmospheric,1351827971 +12076,43928,Milla Jovovich,1351827960 +12076,43928,stylized,1351827959 +12076,43928,visually appealing,1351827966 +12076,43928,visually stunning,1351827968 +12076,44191,based on a book,1328610834 +12076,44191,comic book,1328610832 +12076,44191,dystopia,1328610826 +12076,44191,inspirational,1328610848 +12076,44191,Natalie Portman,1328610809 +12076,44191,philosophy,1328610837 +12076,44191,politics,1328610840 +12076,44191,revenge,1328610843 +12076,44191,sci-fi,1328610822 +12076,44191,social commentary,1328610817 +12076,44191,teen,1328610815 +12076,44191,thought-provoking,1328610813 +12076,44191,visually appealing,1328610846 +12076,45447,adventure,1328615495 +12076,45447,based on a book,1328615508 +12076,45447,conspiracy theory,1328615501 +12076,45447,Jean Reno,1328615503 +12076,45447,literature,1328615624 +12076,45447,religion,1328615511 +12076,45447,Tom Hanks,1328615505 +12076,46578,dark comedy,1332407756 +12076,46578,social commentary,1332407760 +12076,47099,based on a true story,1328613899 +12076,47099,bittersweet,1328613922 +12076,47099,capitalism,1328613925 +12076,47099,father-son relationship,1328613920 +12076,47099,happy ending,1328613901 +12076,47099,inspirational,1328613912 +12076,47099,poverty,1328613914 +12076,47099,single father,1328613907 +12076,47099,Will Smith,1328613904 +12076,48774,apocalypse,1328615756 +12076,48774,atmospheric,1328615757 +12076,48774,depressing,1328615879 +12076,48774,England,1328615858 +12076,48774,future,1328615762 +12076,48774,pregnancy,1328615855 +12076,48774,social commentary,1328615852 +12076,48774,survival,1328615760 +12076,48774,thought-provoking,1328615808 +12076,48774,visually appealing,1328615767 +12076,48780,atmospheric,1326205108 +12076,48780,complicated,1326205115 +12076,48780,dark,1326205153 +12076,48780,enigmatic,1326205167 +12076,48780,magic,1326205117 +12076,48780,Michael Caine,1326205178 +12076,48780,mystery,1326205121 +12076,48780,nonlinear,1326205156 +12076,48780,prison,1326205170 +12076,48780,psychological,1326205150 +12076,48780,revenge,1326205233 +12076,48780,romance,1326205143 +12076,48780,sci-fi,1326205125 +12076,48780,Suits,1326205412 +12076,48780,tense,1326205130 +12076,48780,thriller,1326205199 +12076,49274,Antarctica,1330772602 +12076,50804,Hannibal Lecter,1330043489 +12076,50872,animation,1328611045 +12076,50872,clever,1328611072 +12076,50872,cooking,1328611048 +12076,50872,food,1328611068 +12076,50872,food/cooking,1328611070 +12076,50872,France,1328611066 +12076,50872,imagination,1328611063 +12076,50872,inspirational,1328611075 +12076,50872,talking animals,1328611051 +12076,51077,deal with the devil,1328901614 +12076,51077,motorcycle,1328901606 +12076,51077,Nicholas Cage,1328901609 +12076,51939,animation,1336368935 +12076,51939,Funny,1336368948 +12076,51939,TMNT,1336368942 +12076,52328,cinematography,1326208419 +12076,52328,ending twist,1326208360 +12076,52328,great soundtrack,1326208344 +12076,52328,isolation,1326208422 +12076,52328,sci-fi,1326208349 +12076,52328,space,1326208352 +12076,52328,spaceships,1326208353 +12076,52328,suicide attempt,1326208407 +12076,52950,atmospheric,1328794074 +12076,52950,Dynamic CGI Action,1328794077 +12076,52950,Russian,1328794081 +12076,52950,sequel,1328794083 +12076,52950,surreal,1328794087 +12076,52950,vampires,1328794079 +12076,53125,adventure,1328900745 +12076,53125,anti-hero,1328900744 +12076,53125,comedy,1328900741 +12076,53125,Geoffrey Rush,1328900746 +12076,53125,ghosts/afterlife,1328900749 +12076,53125,Johnny Depp,1328900734 +12076,53125,pirates,1328900736 +12076,53322,Al Pacino,1328611094 +12076,53322,Andy Garcia,1328611109 +12076,53322,Brad Pitt,1328611109 +12076,53322,ensemble cast,1328611118 +12076,53322,entertaining,1328611138 +12076,53322,funny!,1328611129 +12076,53322,George Clooney,1328611109 +12076,53322,Heist,1328611108 +12076,53322,Matt Damon,1328611108 +12076,53464,Jessica Alba,1328901399 +12076,53972,boring,1336368710 +12076,53972,bruce willis,1336368704 +12076,53972,no suspense,1336368722 +12076,53972,weak plot,1336368734 +12076,54286,action,1328616265 +12076,54286,based on a book,1328618773 +12076,54286,cia,1328616263 +12076,54286,espionage,1328616269 +12076,54286,great plot,1328616273 +12076,54286,Matt Damon,1328616258 +12076,54286,spy,1328618771 +12076,54286,trilogy,1328618781 +12076,55232,Milla Jovovich,1328899324 +12076,55232,post-apocalyptic,1328899322 +12076,55232,resident evil,1328899325 +12076,55765,based on a true story,1328623510 +12076,55765,Denzel Washington,1328623507 +12076,55765,Ridley Scott,1328623506 +12076,55765,smuggling,1328623520 +12076,55908,Excellent use of dialogue,1328794833 +12076,55908,immortality,1328794864 +12076,55908,intellectual,1328794836 +12076,55908,open ending,1328794861 +12076,55908,philosophical,1328794830 +12076,55908,sci-fi,1328794837 +12076,55908,thought-provoking,1328794831 +12076,55908,Underrated,1328794842 +12076,55995,animation,1336369196 +12076,55995,John Malkovich,1336369199 +12076,56251,2D animation,1328612227 +12076,56251,animation,1328612230 +12076,56251,Based on a TV show,1328612233 +12076,56251,futurama,1328612234 +12076,56251,intelligent humor,1328612237 +12076,56921,based on a tv show,1328621392 +12076,56921,battlestar galactica,1328621393 +12076,56921,character drama,1328621396 +12076,56921,sci-fi,1328621387 +12076,56921,space opera,1328621389 +12076,57274,atmospheric,1328624504 +12076,57274,contamination,1328624586 +12076,57274,creepy,1328624588 +12076,57274,Handycam,1328624490 +12076,57274,horror,1328624493 +12076,57274,infection,1328624494 +12076,57274,virus,1328624496 +12076,57528,brutality,1336369169 +12076,57528,lots of blood,1336369167 +12076,57528,lots of guns,1336369164 +12076,57528,No story line,1336369153 +12076,57528,ridiculously spiritual,1336369159 +12076,57528,Sylvester Stallone,1336369158 +12076,57528,unnecessary,1336369156 +12076,57640,beautiful effects,1328901459 +12076,57640,not as good as the first,1328901458 +12076,57640,scary,1328901484 +12076,57640,superhero,1328901462 +12076,58025,based on a book,1328900433 +12076,58025,concept,1328900441 +12076,58025,egomaniacs,1328900445 +12076,58025,escape,1328900447 +12076,58025,Hayden Christensen,1328900436 +12076,58025,RELIGIOUS ZEALOTRY,1328900438 +12076,58025,Samuel L. Jackson,1328900430 +12076,58025,scenery,1328900452 +12076,58025,silly,1328900450 +12076,58025,teen,1328900424 +12076,58025,teens,1328900423 +12076,58025,teleportation,1328900427 +12076,58025,terrible plot,1328900420 +12076,58293,ancient civilization,1328901291 +12076,58293,bad for history-sense,1328901284 +12076,58293,historically inaccurate,1328901285 +12076,58293,interesting concept,1328901288 +12076,58293,visually appealing,1328901304 +12076,58559,action,1328612389 +12076,58559,Atmospheric,1328612383 +12076,58559,Christian Bale,1328612381 +12076,58559,comic book,1328612392 +12076,58559,dark,1328612395 +12076,58559,Heath Ledger,1328612386 +12076,58559,Morgan Freeman,1328612398 +12076,58559,psychology,1328612401 +12076,58559,serial killer,1328612405 +12076,58559,stylized,1328612409 +12076,58559,superhero,1328612413 +12076,58559,thriller,1328612418 +12076,58559,vigilante,1328612420 +12076,59103,jackie chan,1328900714 +12076,59103,kung fu,1328900712 +12076,59103,library,1328900716 +12076,59315,afghanistan,1336368326 +12076,59315,Jeff Bridges,1336368317 +12076,59315,Robert Downey Jr.,1336368312 +12076,59315,sci-fi,1336368321 +12076,59392,Claudia Black,1328613055 +12076,59392,finish of storyline,1328613060 +12076,59392,Stargate,1328613062 +12076,59501,annoying,1328794777 +12076,59501,bad acting,1328794774 +12076,59501,boring,1328794779 +12076,59501,Caspian's accent,1328794771 +12076,59501,childish,1328794780 +12076,59501,narnia,1328794787 +12076,59501,ridiculous,1328794768 +12076,59501,silly,1328794784 +12076,60040,Edward Norton,1336368183 +12076,60069,Animation,1328612885 +12076,60069,artificial intelligence,1328612892 +12076,60069,Comedy,1328612895 +12076,60069,family,1328612897 +12076,60069,pixar,1328612878 +12076,60069,post-apocalyptic,1328612905 +12076,60069,robots,1328612908 +12076,60069,satire,1328612901 +12076,60069,social commentary,1328612881 +12076,60069,space,1328612882 +12076,60161,comedy,1328795235 +12076,60161,futurama,1328795230 +12076,60161,intelligent humor,1328795225 +12076,60338,10 minutes of spinning crap,1334315770 +12076,60338,patched together mythos,1334315772 +12076,60684,alternate reality,1328610722 +12076,60684,cinematography,1328610748 +12076,60684,great soundtrack,1328610747 +12076,60684,nuclear war,1328610744 +12076,60684,Nudity (Topless),1328610741 +12076,60684,sci-fi,1328610725 +12076,60684,social commentary,1328610729 +12076,60684,stylized,1328610733 +12076,60684,superhero,1328610737 +12076,60684,vigilantism,1328610760 +12076,61350,post-apocalyptic,1328901261 +12076,61350,unresolved,1328901253 +12076,61350,Vin Diesel,1328901262 +12076,62394,based on a computer game,1328900659 +12076,62394,Script,1328900704 +12076,62394,Visuals,1328900661 +12076,62511,long,1347813836 +12076,62511,surreal,1347813840 +12076,62511,thought-provoking,1347813843 +12076,63072,based on a book,1328613815 +12076,63072,cannibalism,1328613812 +12076,63072,Charlize Theron,1328613817 +12076,63072,child actor,1328613820 +12076,63072,dystopia,1328613809 +12076,63072,great acting,1328613821 +12076,63072,Guy Pearce,1328613822 +12076,63072,post-apocalyptic,1328613806 +12076,63072,survival,1328613825 +12076,63072,tense,1328613828 +12076,63072,Viggo Mortensen,1328613804 +12076,63433,Claudia Black,1328614949 +12076,63433,Farscape,1328614963 +12076,63433,made for TV,1328614926 +12076,63433,Scorpious,1328614939 +12076,63433,Storyline Ending,1328614970 +12076,63433,Wormhole Weapons,1328615002 +12076,64497,aliens,1328900184 +12076,64497,Annoying Child,1328900162 +12076,64497,corny,1328900166 +12076,64497,Dynamic CGI Action,1328900168 +12076,64497,ecological,1328900190 +12076,64497,Environmental,1328900181 +12076,64497,first contact,1328900180 +12076,64497,religious overtones,1328900175 +12076,64497,shallow characters,1328900177 +12076,64497,simple plot,1328900188 +12076,64497,visually appealing,1328900172 +12076,64508,aliens,1328900516 +12076,64508,satire,1328900527 +12076,64508,sci-fi,1328900514 +12076,64508,war,1328900519 +12076,66171,action,1328795349 +12076,66171,heroes,1328795346 +12076,66171,psychic powers,1328795335 +12076,66171,to be continued,1328795343 +12076,66171,twisted ending,1328795340 +12076,66171,x-men wanna-be,1328795353 +12076,67867,childish,1328901556 +12076,67867,inaccurate adaptation,1328901545 +12076,67867,poor fight choreography,1328901546 +12076,67867,poor performance,1328901549 +12076,67867,stereotypical portray for kids,1328901552 +12076,67867,underestimate the audience,1328901555 +12076,68237,artificial intelligence,1328611232 +12076,68237,death,1328611246 +12076,68237,dystopia,1328611235 +12076,68237,future,1328611239 +12076,68237,great soundtrack,1328611242 +12076,68237,psychology,1328611222 +12076,68237,Sci-fi,1328611223 +12076,68237,science,1328611253 +12076,68237,space,1328611225 +12076,68237,twist ending,1328611229 +12076,68358,great soundtrack,1328613224 +12076,68358,Simplistic,1328613248 +12076,68358,space travel,1328613197 +12076,68358,Star Trek,1328613191 +12076,68358,teleportation,1328613215 +12076,68358,time travel,1328613193 +12076,68358,visually appealing,1328613205 +12076,68358,Young Cast,1328613232 +12076,68554,Anti-matter,1328623280 +12076,68554,Helicopter Explosion,1328623283 +12076,68554,not faithful to the book,1328623271 +12076,68554,secrets,1328623278 +12076,68554,twisted ending,1328623277 +12076,68554,unrealistic,1328623275 +12076,69481,action,1328614345 +12076,69481,addiction,1328614344 +12076,69481,anti-war,1328614346 +12076,69481,death,1328614348 +12076,69481,intense,1328614340 +12076,69481,Iraq War,1328614336 +12076,69481,Middle East,1328614334 +12076,69481,military,1328614349 +12076,69481,thriller,1328614353 +12076,70286,action,1328612350 +12076,70286,aliens,1328612345 +12076,70286,atmospheric,1328612369 +12076,70286,directorial debut,1328612355 +12076,70286,Dynamic CGI Action,1328612376 +12076,70286,genetics,1328612353 +12076,70286,intelligent,1328612371 +12076,70286,sci-fi,1328612361 +12076,70286,social commentary,1328612359 +12076,70286,thriller,1328612365 +12076,70286,unique,1328612363 +12076,70286,violence,1328612367 +12076,70336,audience intelligence underestimated,1328900474 +12076,70336,bad plot,1328900476 +12076,70336,childish,1328900478 +12076,70336,infantil,1328900488 +12076,70336,plot holes,1328900485 +12076,70336,shallow characters,1328900483 +12076,70336,Sienna Miller,1328900492 +12076,70336,silly plot,1328900470 +12076,70336,Special Effects,1328900495 +12076,70336,style over substance,1328900498 +12076,70336,terrible dialogue,1328900484 +12076,71129,Green Lantern,1336368838 +12076,71135,aliens,1328901336 +12076,71135,amnesia,1328901324 +12076,71135,horror,1328901360 +12076,71135,insanity,1328901363 +12076,71135,mental illness,1328901352 +12076,71135,space travel,1328901329 +12076,71135,twist ending,1328901356 +12076,71254,Gerard Butler,1328900128 +12076,71254,gratuitous violence,1328900119 +12076,71254,Nudity (Topless - Notable),1328900111 +12076,71254,predictable,1328900116 +12076,71254,stupid,1328900109 +12076,71535,Bill Murray,1328610538 +12076,71535,campy,1328610573 +12076,71535,clever,1328610572 +12076,71535,comedy,1328610542 +12076,71535,dark comedy,1328610545 +12076,71535,Emma Stone,1328610547 +12076,71535,funny,1328610549 +12076,71535,gore,1328610570 +12076,71535,horror,1328610540 +12076,71535,parody,1328610552 +12076,71535,post-apocalyptic,1328610557 +12076,71535,road trip,1328610561 +12076,71535,teen,1328610565 +12076,71535,violence,1328610560 +12076,71535,witty,1328610567 +12076,71535,zombies,1328610558 +12076,72308,Galactica,1328794817 +12076,72380,boring,1326445089 +12076,72380,lame,1326445057 +12076,72380,messy,1326445072 +12076,72380,no atmosphere,1326445074 +12076,72380,no tension,1326445077 +12076,72380,soft focus,1326445066 +12076,72380,soundtrack,1326445062 +12076,72380,this was a Twilight Zone episode,1326445084 +12076,72380,twists & turns,1326445060 +12076,72731,beautiful scenery,1330044475 +12076,72731,serial killer,1330044478 +12076,72731,Soundtrack,1330044567 +12076,72731,Susan Sarandon,1330044561 +12076,72731,tense,1330044564 +12076,72998,environmental,1327256784 +12076,72998,futuristic,1327256769 +12076,72998,politics,1327256779 +12076,72998,racism,1327256791 +12076,73017,Action,1328613528 +12076,73017,adventure,1328613529 +12076,73017,Atmospheric,1328613532 +12076,73017,Based on a book,1328613522 +12076,73017,bromantic,1328613535 +12076,73017,dialogue,1328613525 +12076,73017,England,1328613543 +12076,73017,Guy Ritchie,1328613548 +12076,73017,Jude Law,1328613520 +12076,73017,mystery,1328613513 +12076,73017,Robert Downey Jr.,1328613516 +12076,73017,Sherlock Holmes,1328613519 +12076,73017,violent,1328613518 +12076,77561,audience intelligence underestimated,1336368290 +12076,77561,Robert Downey Jr.,1336368296 +12076,77561,Samuel L. Jackson,1336368297 +12076,78105,adventure,1328900564 +12076,78105,Ben Kingsley,1328900590 +12076,78105,clueless,1328900571 +12076,78105,fantasy,1328900564 +12076,78105,Gemma Arterton,1328900584 +12076,78105,over the top,1328900568 +12076,78105,parkour,1328900588 +12076,78105,persia,1328900574 +12076,78105,redbox,1328900576 +12076,78105,stylized,1328900582 +12076,79008,crude humor,1328613282 +12076,79008,irreverent,1328613288 +12076,79008,made for TV,1328613278 +12076,79008,not a movie,1328613285 +12076,79057,Adrien Brody,1328901834 +12076,79132,alternate reality,1328611863 +12076,79132,Christopher Nolan,1328611857 +12076,79132,dreamlike,1328611884 +12076,79132,ending,1328611908 +12076,79132,great soundtrack,1328611890 +12076,79132,Leonardo DiCaprio,1328611848 +12076,79132,memory,1328611882 +12076,79132,Michael Caine,1328611876 +12076,79132,philosophy,1328611879 +12076,79132,surreal,1328611867 +12076,79132,suspense,1328611877 +12076,79132,thought-provoking,1328611872 +12076,79132,visually appealing,1328611870 +12076,79139,crude humor,1336368962 +12076,79139,Nicolas Cage,1336368967 +12076,79139,predictable,1336368961 +12076,79139,uninteresting Charecters,1336368983 +12076,79293,bad ending,1336369133 +12076,79293,boring,1336369135 +12076,79293,cliche,1336369129 +12076,79293,predictable,1336369131 +12076,79293,terrible acting,1336369128 +12076,79357,cinematography,1334058277 +12076,79357,sci-fi,1334058279 +12076,79357,surreal,1334058308 +12076,79357,time travel,1334058304 +12076,79702,artistic,1328613738 +12076,79702,awesome soundtrack,1328613736 +12076,79702,based on a comic,1328613706 +12076,79702,cultural references,1328613694 +12076,79702,fantasy,1328613697 +12076,79702,funny,1328613704 +12076,79702,Gay,1328613705 +12076,79702,quirky,1328613695 +12076,79702,stylized,1328613693 +12076,79702,surreal,1328613692 +12076,79702,video games,1328613687 +12076,79702,visually appealing,1328613712 +12076,79702,whimsical,1328613689 +12076,80363,Milla Jovovich,1328899346 +12076,80363,resident evil,1328899350 +12076,80363,zombies,1328899348 +12076,80463,based on a true story,1328613440 +12076,80463,betrayal,1328613450 +12076,80463,college,1328613453 +12076,80463,computers,1328613444 +12076,80463,dark comedy,1328613446 +12076,80463,hacking,1328613464 +12076,80463,internet,1328613456 +12076,80463,Jesse Eisenberg,1328613502 +12076,80463,music,1328613472 +12076,80463,sex,1328613458 +12076,80549,Christianity,1328615231 +12076,80549,comedy,1328615224 +12076,80549,dialogue,1328615226 +12076,80549,Emma Stone,1328615219 +12076,80549,family relationships,1328615223 +12076,80549,high school,1328615218 +12076,80549,parody,1328615235 +12076,80549,plot,1328615237 +12076,80549,sexuality,1328615217 +12076,80549,virginity,1328615213 +12076,80549,witty,1328615211 +12076,80917,aliens,1328901983 +12076,80917,creative,1328901986 +12076,80917,Low Budget,1328901984 +12076,80917,realism,1328901989 +12076,80917,science fiction,1328901981 +12076,80969,atmospheric,1332674831 +12076,80969,cinematography,1332674830 +12076,80969,depressing,1332674829 +12076,80969,thought-provoking,1332674825 +12076,81132,bizarre,1326703829 +12076,81132,headsplosions,1326703832 +12076,81132,padding,1326703821 +12076,81132,Robert,1326703825 +12076,81132,Soundtrack,1326703982 +12076,81132,spectators,1326703827 +12076,81132,the 4th wall,1326703870 +12076,81132,the movie,1326703878 +12076,81132,tricycle,1326703839 +12076,81132,turkey,1326703837 +12076,81132,tyres,1326703853 +12076,81229,Bruce Willis,1336368788 +12076,81229,comedy,1336368803 +12076,81229,conspiracy,1336368800 +12076,81229,Helen Mirren,1336368795 +12076,81229,John Malkovich,1336368789 +12076,81229,Morgan Freeman,1336368791 +12076,81591,atmospheric,1328612483 +12076,81591,creepy,1328612488 +12076,81591,dance,1328612490 +12076,81591,dark,1328612493 +12076,81591,horror,1328612495 +12076,81591,insanity,1328612498 +12076,81591,music,1328612506 +12076,81591,Natalie Portman,1328612486 +12076,81591,obsession,1328612501 +12076,81591,psychological,1328612484 +12076,81591,visceral,1328612509 +12076,81782,cinematography,1336368910 +12076,81782,Denzel Washington,1336368909 +12076,81782,Rosario Dawson,1336368900 +12076,81782,suspense,1336368906 +12076,81782,trains,1336368902 +12076,81782,well-crafted,1336368904 +12076,81788,Elizabeth Banks,1328611211 +12076,81788,good ending,1328611188 +12076,81788,jailbreak,1328611191 +12076,81788,procedural,1328611194 +12076,81788,Russell Crowe,1328611181 +12076,81788,suspense,1328611197 +12076,81788,thriller,1328611201 +12076,85131,action,1328899756 +12076,85131,alien invasion,1328899750 +12076,85131,CGI,1328899763 +12076,85131,plot,1328899755 +12076,85131,sci-fi,1328899759 +12076,86320,cinematography,1332151243 +12076,86320,Kiefer Sutherland,1332151247 +12076,86644,audience intelligence underestimated,1336368847 +12076,86644,childish,1336368851 +12076,86644,dialogue,1336368854 +12076,86644,Dwayne Johnson,1336368862 +12076,86644,franchise,1336368877 +12076,86644,Jordana Brewster,1336368871 +12076,86644,Paul Walker,1336368860 +12076,86644,silly,1336368864 +12076,86644,Vin Diesel,1336368857 +12076,86835,based on a comic,1328900396 +12076,86835,cliche,1328900383 +12076,86835,Dimensionalized 2-D to 3-D,1328900387 +12076,86835,dystopic future,1328900404 +12076,86835,futuristic,1328900401 +12076,86835,spaghetti western,1328900394 +12076,86835,vampires,1328900386 +12076,86835,war,1328900406 +12076,87222,'Daddy issues',1336368996 +12076,87222,Fantastic animation,1336369037 +12076,87222,kung fu,1336369039 +12076,87222,Not as funny,1336369013 +12076,87222,Weak plot,1336369022 +12076,87232,adapted from:comic,1328610632 +12076,87232,anti hero,1328610687 +12076,87232,Argentina,1328610652 +12076,87232,Cuban missile crisis,1328610635 +12076,87232,fantasy,1328610642 +12076,87232,Kevin Bacon,1328610653 +12076,87232,Magne,1328610671 +12076,87232,superhero,1328610648 +12076,87232,visually appealing,1328610644 +12076,87872,A.I,1326714568 +12076,87872,Aliens,1326714522 +12076,87872,Armor,1326714559 +12076,87872,Commandos,1326714534 +12076,87872,Costume,1326714554 +12076,87872,Debate,1326714545 +12076,87872,Padding,1326714590 +12076,87872,Special effects,1326714586 +12076,88129,atmospheric,1334066239 +12076,88129,cinematography,1334066241 +12076,88129,visually appealing,1334066244 +12076,88140,action,1336127256 +12076,88140,authenticity,1336127254 +12076,88140,Captain America,1336133264 +12076,88140,dieselpunk,1336127249 +12076,88140,Hugo Weaving,1336133266 +12076,88248,some things didn't make sense,1326090922 +12076,88248,thermal goggles,1326091094 +12076,88248,very predictable,1326090929 +12076,88248,zombies,1326090936 +12076,88744,action,1328613846 +12076,88744,authenticity,1328613878 +12076,88744,cgi,1328613849 +12076,88744,genetics,1328613852 +12076,88744,Plot holes,1328613883 +12076,88744,thought-provoking,1328613859 +12076,88744,touching,1328613863 +12076,88810,based on a book,1333291533 +12076,88810,bittersweet,1333291527 +12076,88810,Emma Stone,1333291485 +12076,88810,great acting,1333291500 +12076,88810,Jessica Chastain,1333291505 +12076,88810,social commentary,1333291490 +12076,88810,upstairs-downstairs,1333291709 +12076,89072,atmosphere,1326184314 +12076,89072,bold,1326184343 +12076,89072,characters,1326184345 +12076,89072,cinematography,1326184306 +12076,89072,sylistic,1326184338 +12076,89072,too much love interest,1326184319 +12076,89470,all-star cast,1325937925 +12076,89470,disease,1325937913 +12076,89470,not sensationalist,1325938293 +12076,89470,plausible,1325937971 +12076,89470,procedural,1325937888 +12076,89470,Realistic,1325937908 +12076,89470,soundtrack,1325938194 +12076,89470,thriller,1325937977 +12076,89745,Captain America,1336367932 +12076,89745,great screenplay,1336367940 +12076,89745,Hulk,1336367935 +12076,89745,Iron Man,1336367916 +12076,89745,joss whedon,1336367927 +12076,89745,one of the best comic book movies,1336367949 +12076,89745,Robert Downey Jr.,1336367919 +12076,89745,superhero team,1336367923 +12076,89753,acting,1330044972 +12076,89753,atmosphere,1330044970 +12076,89753,Beautifully shot,1330044946 +12076,89753,Gary Oldman,1330044942 +12076,89753,photography,1330044945 +12076,89753,Spies,1330044964 +12076,89761,history,1329787300 +12076,89761,Michael Fassbender,1329787289 +12076,89761,psychology,1329787251 +12076,89761,Viggo Mortensen,1329787236 +12076,89864,cancer,1328719674 +12076,89864,comedy,1328719671 +12076,89864,current,1328719628 +12076,89864,disease,1328719681 +12076,89864,forgettable,1328719727 +12076,89864,predictable,1328719719 +12076,89864,Seth Rogen,1328719645 +12076,89864,Skeletor,1328719640 +12076,89864,the dog,1328719638 +12076,89864,touching,1328719685 +12076,89864,unrealistic therapist,1328719715 +12076,90057,ambiguous,1333269025 +12076,90057,Communication,1333269002 +12076,90057,Jessica Chastain,1333269006 +12076,90376,nihilism,1328888711 +12076,90376,psychological,1328888664 +12076,90376,unfitting soundtrack,1328888626 +12076,90376,violence,1328888644 +12076,90403,D'Artagnan,1329434843 +12076,90522,comedy,1328612156 +12076,90522,Funny,1328612138 +12076,90522,gadgets,1328612146 +12076,90522,Rowan Atkinson,1328612133 +12076,90578,awkward soundtrack,1342360785 +12076,90578,haunted house,1342360788 +12076,90578,poor narrative,1342360801 +12076,90578,twists,1342360790 +12076,90645,Shakespeare,1329444483 +12076,90645,Words,1329444492 +12076,90717,Alan Alda,1329434665 +12076,90717,Eddie Murphy,1329434661 +12076,90717,Téa Leoni,1329434657 +12076,91077,Hawaii,1332574186 +12076,91104,everything,1333508723 +12076,91128,Caribbean,1334422321 +12076,91128,Johnny Depp,1334422341 +12076,91128,journalism,1334422314 +12076,91128,rich people,1334422337 +12076,91386,Krill,1330772650 +12076,91386,no plot,1330772645 +12076,91529,Anne Hathaway,1343269786 +12076,91529,Bane,1343269798 +12076,91529,Bane's voice,1343269754 +12076,91529,Batman voice,1343269744 +12076,91529,Christopher Nolan,1343269758 +12076,91529,Gary Oldman,1343269761 +12076,91529,great ending,1343269772 +12076,91529,Michael Caine,1343269809 +12076,91529,Tom Hardy,1343269776 +12076,91542,Action Movie,1336368574 +12076,91542,Bechdel Test:Fail,1336368564 +12076,91542,comedy,1336368567 +12076,91542,fight scenes,1336368650 +12076,91542,great cinematography,1336368611 +12076,91542,Jude Law,1336368615 +12076,91542,No Game,1336368669 +12076,91542,No mystery,1336368603 +12076,91542,No Shadows,1336368662 +12076,91542,Robert Downey Jr.,1336368613 +12076,91542,Weak plot,1336368639 +12076,91658,based on a book,1328611984 +12076,91658,corruption,1328612015 +12076,91658,Daniel Craig,1328612012 +12076,91658,journalism,1328612006 +12076,91658,murder,1328612009 +12076,91658,rape,1328611994 +12076,91658,revenge,1328612020 +12076,91658,serial killer,1328611996 +12076,91658,suspense,1328611999 +12076,91658,Sweden,1328612004 +12076,91976,characters,1343270175 +12076,91976,cinematography,1343270176 +12076,91976,Liam Neeson,1343270178 +12076,91976,life & death,1343270184 +12076,91976,overdramatic,1343270173 +12076,92058,Avoid for your sanity,1336369680 +12076,93363,Action,1337443943 +12076,93363,childish plot,1337443928 +12076,93363,flying jokes,1337443926 +12076,93363,Mars,1337443941 +12076,93512,jeff,1339339872 +12076,93512,kevin,1339339874 +12076,93512,pot,1339339877 +12076,93512,signs,1339339882 +12076,93512,unravelling emotional issues,1339339888 +12076,93512,waterfall,1339339885 +12076,93805,mediocre acting,1338794143 +12076,93805,Nazis,1338794132 +12076,93805,space travel,1338794137 +12076,93805,steampunk,1338794132 +12076,93805,unpredictable ending,1338794138 +12076,93831,sexist,1336369461 +12076,93840,dark comedy,1350987768 +12076,93840,disappointing ending,1350987756 +12076,93840,excellent cinematography,1350987772 +12076,93840,funny,1350987767 +12076,93840,monsters,1350987778 +12076,93840,original,1350987760 +12076,93840,original plot,1350987763 +12076,93840,social commentary,1350987783 +12076,93840,witty,1350987765 +12076,94070,Bill Nighy,1340280852 +12076,94070,bittersweet,1340280835 +12076,94070,India,1340280838 +12076,94070,Judi Dench,1340280986 +12076,94070,Old age,1340280876 +12076,94070,Regrets,1340280885 +12076,94070,Soundtrack,1340280972 +12076,94070,sure thing,1340280843 +12076,94070,Tom Wilkinson,1340281007 +12076,94478,eva green,1348687489 +12076,94478,Helena Bonham Carter,1348687499 +12076,94478,johnny depp,1348687487 +12076,94478,Tim Burton,1348687501 +12076,94777,dialogue,1343269907 +12076,94777,flat Story,1343269857 +12076,94777,funny,1343269900 +12076,94777,hot chocolate,1343269894 +12076,94777,time travel,1343269897 +12076,94777,Will Smith,1343269855 +12076,94864,allegory,1343270076 +12076,94864,Charlize Theron,1343270095 +12076,94864,ideas,1343270092 +12076,94864,Meta,1343270083 +12076,94864,Michael Fassbender,1343270058 +12076,94864,Noomi Rapace,1343270060 +12076,94864,self-sacrifice,1343270114 +12076,94864,sequel bait,1343270107 +12076,94864,Themes,1343270069 +12076,94959,Bill Murray,1348672196 +12076,94959,Bruce Willis,1348672213 +12076,94959,Edward Norton,1348672207 +12076,94959,original,1348672222 +12076,94959,quirky,1348672221 +12076,94959,Stolen Library Books,1348672215 +12076,94959,stylized,1348672218 +12076,95875,Sci-fi,1352909196 +12076,95875,visually appealing,1352909201 +12076,96737,cinematography,1351687885 +12076,96737,Karl Urban,1351687864 +12076,96737,Olivia Thirlby,1351687860 +12076,96737,post-apocalyptic,1351687851 +12076,96737,Slow Motion,1351687874 +12120,32,complicated,1241332940 +12120,32,dystopia,1241332944 +12120,32,post-apocalyptic,1241332951 +12120,32,sci-fi,1241332982 +12120,32,time travel,1241332985 +12120,32,twist ending,1241332958 +12120,50,complicated,1241333028 +12120,50,conspiracy,1241333077 +12120,50,flashbacks,1241333074 +12120,50,great ending,1241333081 +12120,107,treasure,1368808813 +12120,296,Black comedy,1241332623 +12120,296,cult film,1241332626 +12120,296,dark comedy,1241332628 +12120,296,multiple storylines,1241332630 +12120,296,nonlinear,1241332632 +12120,296,Quentin Tarantino,1241332645 +12120,318,friendship,1241332777 +12120,318,prison escape,1241332784 +12120,318,Stephen King,1241332759 +12120,318,thought-provoking,1241332788 +12120,353,dark hero,1368808995 +12120,356,vietnam war,1241332683 +12120,380,arnold,1368809058 +12120,480,dinosaurs,1241332729 +12120,480,genetics,1241332733 +12120,480,sci-fi,1241332736 +12120,485,arnold,1368809058 +12120,589,arnold,1368809058 +12120,592,dark hero,1368808994 +12120,593,cannibalism,1241332705 +12120,593,disturbing,1241332707 +12120,593,serial killer,1241332714 +12120,866,neo-noir,1368809184 +12120,898,screwball comedy,1368809120 +12120,910,screwball comedy,1368809120 +12120,913,noir thriller,1368808880 +12120,1097,stranded,1368808927 +12120,1240,arnold,1368809058 +12120,1291,spielberg,1368809416 +12120,1291,treasure,1368808813 +12120,1387,spielberg,1368809416 +12120,1391,mars,1368808958 +12120,1396,conspiracy theory,1368809277 +12120,1617,neo-noir,1368809184 +12120,1783,noir thriller,1368808880 +12120,1894,stranded,1368808927 +12120,2022,jesus,1368808774 +12120,2028,spielberg,1368809416 +12120,2109,dumb but funny,1244230321 +12120,2109,Steve Martin,1244230327 +12120,2115,spielberg,1368809416 +12120,2115,treasure,1368808813 +12120,2193,dragon,1368809312 +12120,2329,Edward Norton,1241297383 +12120,2329,thought-provoking,1241297380 +12120,2353,conspiracy theory,1368809277 +12120,2405,treasure,1368808813 +12120,2571,dark hero,1368808994 +12120,2662,mars,1368808958 +12120,2726,noir thriller,1368808880 +12120,2916,arnold,1368809058 +12120,4878,short-term memory loss,1368809382 +12120,5445,spielberg,1368809416 +12120,6874,dark hero,1368808995 +12120,7318,jesus,1368808774 +12120,7386,christian,1368809144 +12120,8529,stranded,1368808927 +12120,47610,Edward Norton,1241297266 +12120,47610,Jessica Biel,1241297290 +12120,47610,predictable,1241297258 +12120,47610,stage magic,1241297274 +12120,47610,twist ending,1241297286 +12120,48516,organized crime,1241297495 +12120,48516,police corruption,1241297498 +12120,48780,Christian Bale,1241297336 +12120,48780,David Bowie,1241297341 +12120,48780,nonlinear,1241297357 +12120,48780,steampunk,1241297348 +12127,158,nice,1137508274 +12127,1376,boring,1137508248 +12129,1210,Bad,1145913040 +12129,56788,Aaron Sorkin,1209499590 +12149,106696,animation,1390933054 +12149,106696,beautiful,1390933059 +12149,106696,Disney,1390933061 +12149,106696,feminist,1390933092 +12149,106696,storyline,1390933067 +12149,106696,themes,1390933069 +12149,106696,voice acting,1390933080 +12149,106916,based on a true story,1390933163 +12149,106916,Bradley Cooper,1390933141 +12149,106916,Christian Bale,1390933139 +12149,106916,con artists,1390933150 +12149,106916,corruption,1390933153 +12149,106916,Jennifer Lawrence,1390933146 +12149,106916,Louis C.K.,1390933144 +12151,541,lack of story,1271817839 +12151,750,dark comedy,1271817295 +12151,750,satire,1271817300 +12151,750,Stanley Kubrick,1271817313 +12151,924,Arthur C. Clarke,1271817280 +12151,924,sci-fi,1271817251 +12151,924,Stanley Kubrick,1271817262 +12151,2105,so bad it's good,1271817779 +12151,2857,psychedelic,1271817703 +12151,2857,surreal,1271817703 +12151,2857,The Beatles,1271817703 +12151,6539,Johnny Depp,1271817521 +12151,6539,Keira Knightley,1271817521 +12151,26903,Hayao Miyazaki,1271817734 +12151,26903,Studio Ghibli,1271817734 +12151,27611,Aesop ending,1271818114 +12151,27611,politics,1271818126 +12151,27611,sci-fi,1271818122 +12151,33004,absurd,1271817392 +12151,33004,douglas adams,1271817421 +12151,33004,hollywoodization,1271817888 +12151,33004,sci-fi,1271817369 +12151,33004,Zooey Deschanel,1271817380 +12151,34405,Firefly,1271818177 +12151,34405,joss whedon,1271818185 +12151,44191,Natalie Portman,1271818017 +12151,44191,Stephen Fry,1271818007 +12151,52694,Rowan Atkinson,1271817945 +12151,65135,british comedy,1271818299 +12151,65135,Hugh Laurie,1271818299 +12151,65135,Rowan Atkinson,1271818299 +12151,65135,Stephen Fry,1271818299 +12151,69122,ennui,1271817622 +12165,5283,teen,1228809519 +12165,5283,Teen movie,1228809513 +12165,58803,con artist,1274754541 +12165,58803,ending,1274754572 +12165,58803,gambling,1274754532 +12165,58803,predictable,1274754580 +12165,58803,young,1274754561 +12172,4327,isaiah,1158733730 +12175,260,aliens,1438523540 +12175,260,Harrison Ford,1438523549 +12175,260,space,1438523526 +12175,2081,animation,1438616350 +12175,2081,cute girl,1438616312 +12175,2081,mermaid,1438616307 +12175,2081,songs,1438616331 +12175,2617,adventure,1438523971 +12175,2617,treasure hunt,1438523967 +12175,3081,atmospheric,1441508589 +12175,3081,Dark,1441508580 +12175,3081,visually appealing,1441508615 +12175,45722,anti-hero,1441509215 +12175,45722,legendary figures,1441509252 +12175,45722,ocean,1441509266 +12175,45722,pirates,1441509218 +12175,45722,sea,1441509262 +12175,45722,seafaring,1441509226 +12175,45722,Sequel,1441509215 +12175,45722,swashbuckler,1441509229 +12175,58559,Batman,1438523716 +12175,58559,dark,1438523706 +12175,58559,Joker,1438523720 +12175,58559,psychology,1438523714 +12175,58559,serial killer,1438523726 +12175,83132,Anime,1438524123 +12175,83132,beautiful,1438524130 +12175,83132,bittersweet,1438524131 +12175,83132,Studio Ghibli,1438524125 +12175,96821,based on a book,1438523789 +12175,96821,bittersweet,1438523762 +12175,96821,character development,1438523766 +12175,96821,Emma Watson,1438523793 +12175,96821,touching,1438523782 +12175,136598,funny,1438523953 +12175,136598,penis joke,1438523953 +12175,136598,road trip,1438523953 +12180,367,not funny,1249762675 +12180,593,Anthony Hopkins,1249763146 +12180,593,classic,1249763179 +12180,593,Jodie Foster,1249763196 +12180,593,psychology,1249763204 +12180,1035,classic,1249763699 +12180,1035,Julie Andrews,1249763692 +12180,1035,music,1249763713 +12180,1035,scenic,1249763721 +12180,1080,comedy,1249763312 +12180,1080,hilarious,1249763323 +12180,1080,humorous,1249763315 +12180,1080,mockumentary,1249763333 +12180,1080,Monty Python,1249763337 +12180,1080,whimsical,1249763348 +12180,1124,aging,1249764372 +12180,1124,Henry Fonda,1249764326 +12180,1124,Husband Wife Relationship,1249764334 +12180,1124,Katherine Hepburn,1249764350 +12180,1124,parenthood,1249764359 +12180,1255,ugly,1249762567 +12180,1645,cheating husband,1249763080 +12180,1645,temptation,1249763042 +12180,2161,Adventure,1249763269 +12180,2161,Classic,1249763236 +12180,2161,dragon,1249763244 +12180,2161,Fantasy,1249763250 +12180,2161,limahl soundtrack,1249763258 +12180,2161,sweet,1249763281 +12180,2572,actually funny,1249763611 +12180,2572,Heath Ledger,1249763633 +12180,2572,Julia Stiles,1249763629 +12180,2572,romantic,1249763662 +12180,2617,boring,1249762863 +12180,2617,special effects,1249762872 +12180,2692,alternate endings,1249763752 +12180,2692,humorous,1249763768 +12180,2692,nonlinear,1249763776 +12180,2692,thought-provoking,1249763781 +12180,2692,whimsical,1249763790 +12180,2858,midlife crisis,1249762510 +12180,2858,Nudity (Topless - Notable),1249762475 +12180,2858,thought-provoking,1249762504 +12180,4700,blah,1249763974 +12180,4700,Julie Andrews,1249763965 +12180,4700,teen,1249763970 +12180,5377,comedy,1249763558 +12180,5377,heartwarming,1249763563 +12180,5377,whimsical,1249763578 +12180,7323,communism,1249764567 +12180,7323,family relationships,1249764571 +12180,7323,maintaining illusion,1249764599 +12180,7323,want to see again,1249764593 +12180,37729,animation,1249763472 +12180,37729,black comedy,1249763481 +12180,37729,Helena Bonham Carter,1249763507 +12180,37729,Johnny Depp,1249763502 +12180,37729,living dead,1249763514 +12180,60397,Meryl Streep,1249763900 +12180,60397,music:ABBA,1249763910 +12180,60397,Stellan SkarsgÃ¥rd,1249763922 +12180,68358,adventure,1249764102 +12180,68358,big budget,1249764109 +12180,68358,sci-fi,1249764125 +12180,68358,Star Trek,1249764129 +12180,68358,starship trooper vibes,1249764153 +12183,260,"action, family friendly, space",1439326699 +12197,260,"sci-fi, space",1433895402 +12197,260,supernatural,1433895422 +12203,1805,Erotic Thriller,1310658868 +12206,260,action,1443448405 +12206,260,sci-fi,1443448398 +12211,3052,Ben Affleck,1232471767 +12211,3052,Crap,1232471767 +12211,3052,Matt Damon,1232471725 +12234,260,"action, scifi",1443247326 +12234,260,space adventure,1443247358 +12243,903,California,1424813522 +12243,903,San Francisco,1424813522 +12243,2028,horrors of war,1415488000 +12243,2028,Oscar (Best Sound),1415487987 +12243,2028,World War II,1415487966 +12243,52319,historically inaccurate,1304140688 +12243,53894,health care,1349087646 +12243,71462,dolphins,1313790296 +12243,97779,Visionary,1377593029 +12243,104303,historically inaccurate,1379841223 +12243,109284,America,1394779481 +12243,109284,American culture,1394779482 +12243,109284,documentary,1394779482 +12243,109284,Martin Luther King,1394779723 +12243,109284,MLK,1394779723 +12243,109284,New Mexico,1394779752 +12243,109284,race issues,1394779660 +12243,109284,religion,1394779629 +12243,109284,religion:Christianity,1394779855 +12243,109284,road trip,1394779482 +12243,117533,Jacob Appelbaum,1425673052 +12243,117533,Julian Assange,1425673052 +12243,129201,California,1424814538 +12243,129201,San Francisco,1424814538 +12243,136562,boring,1451331264 +12243,136562,historically inaccurate,1451331226 +12244,1610,claustrophobic,1329737156 +12244,1610,cold war,1329737153 +12244,1610,forceful,1329737170 +12244,90376,Lynne Ramsay,1330532560 +12244,90376,unfitting soundtrack,1330532564 +12257,230,drama,1187597800 +12257,468,comedy,1187597817 +12257,838,comedy,1187597808 +12257,1022,children cartoon,1187597776 +12257,1029,children cartoon,1187597792 +12280,260,awesome,1439907440 +12280,260,cool,1439907453 +12280,260,scifi cult,1439907457 +12334,33237,Only gets the full 5 stars if viewed at the Castro Theater,1170099469 +12335,260,classic sci-fi,1438542941 +12335,260,special effects,1438542951 +12347,778,Danny Boyle,1452020447 +12347,778,drug abuse,1452020458 +12347,778,heroin,1452020439 +12347,778,Irvine Welsh,1452020449 +12347,778,social commentary,1452020460 +12347,4022,airplane crash,1452020412 +12347,4022,SURVIVAL,1452020401 +12347,111360,drugs,1452020360 +12347,111360,dumb science,1452020350 +12347,111360,fast paced action,1452020373 +12347,111360,Morgan Freeman,1452020358 +12347,111360,strong female lead,1452020354 +12347,111360,woman lead,1452020364 +12347,145030,based on a true story,1452020288 +12357,260,don't want to see it,1439793402 +12357,260,Not my thing,1439793387 +12359,46335,bad acting,1352336701 +12363,5971,anime,1446153461 +12363,5971,Japan,1446153447 +12363,5971,Studio Ghibli,1446153457 +12367,260,fantasy,1431634778 +12367,260,joseph campbell's study of mythology influenced,1431634786 +12368,4306,adventure,1365526837 +12368,4306,animation,1365526782 +12368,4306,disney,1365526788 +12368,4306,funny,1365526771 +12368,4306,romance,1365526796 +12368,97304,anti-hero,1365530028 +12368,97304,anti-war,1365530028 +12368,97304,drama,1365529982 +12368,97304,family relationships,1365530028 +12368,97304,heroism,1365530076 +12368,97304,true story,1365530040 +12399,94466,dark,1437525933 +12399,94466,innovation,1437525933 +12399,94466,science fiction,1437525933 +12399,109487,science fiction,1440673063 +12399,109487,space,1440673057 +12406,260,sci-fi,1444989540 +12406,260,Science Fiction,1444989548 +12421,260,classic,1440310852 +12421,260,Science Fiction,1440310821 +12430,37733,disappointing,1264106059 +12430,37733,overrated,1264106052 +12430,37733,stupid,1264106067 +12436,260,action,1438435468 +12436,260,Science Fiction,1438435455 +12436,260,space,1438435458 +12436,260,spaceships,1438435481 +12436,1217,medieval,1438436037 +12436,1217,samurai,1438436037 +12436,1217,war,1438436037 +12461,880,Marlon Brando,1153689416 +12469,37853,real sharks.,1138606770 +12470,364,animation,1441507930 +12470,364,Disney,1441507928 +12470,364,musical,1441507934 +12470,551,atmospheric,1441507856 +12470,551,cult film,1441507860 +12470,551,Danny Elfman,1441507865 +12470,551,gothic,1441507854 +12470,551,great soundtrack,1441507872 +12470,551,musical,1441507858 +12470,551,Tim Burton,1441507853 +12470,588,Disney,1441507908 +12470,588,musical,1441507910 +12470,588,Robin Williams,1441507913 +12470,899,classic,1441507425 +12470,899,classic Hollywood,1441507423 +12470,899,comedy,1441507427 +12470,899,Dance,1441507430 +12470,899,enjoyable,1441507428 +12470,899,happy,1441507419 +12470,899,movie business,1441507432 +12470,899,musical,1441507420 +12470,913,atmospheric,1441507376 +12470,913,black and white,1441507380 +12470,913,highly quotable,1441507372 +12470,913,Humphrey Bogart,1441507367 +12470,913,noir thriller,1441507368 +12470,913,talky,1441507374 +12470,1035,family,1441507894 +12470,1035,julie andrews,1441507885 +12470,1035,musical,1441507883 +12470,2692,alternate endings,1442856632 +12470,2692,nonlinear,1442856634 +12470,3435,black and white,1441507397 +12470,3435,film noir,1441507392 +12470,3435,noir thriller,1441507394 +12470,3751,aardman,1442856680 +12470,3751,Aardman studios,1442856684 +12470,3751,claymation,1442856679 +12470,3751,stop motion,1442856688 +12470,5472,musical,1441507671 +12470,5472,period piece,1441507667 +12470,6350,Hayao Miyazaki,1441506818 +12470,6350,imagination,1441506814 +12470,6350,steampunk,1441506811 +12470,6350,Studio Ghibli,1441506807 +12470,6987,twist ending,1450585214 +12470,7147,bittersweet,1442855760 +12470,7147,colourful,1442855776 +12470,7147,dreamlike,1442855759 +12470,7147,Fantasy,1442855757 +12470,7147,stylized,1442855763 +12470,7147,Tim Burton,1442855752 +12470,7327,cerebral,1450584943 +12470,7327,Ingmar Bergman,1450584937 +12470,26662,feel-good,1446254291 +12470,26662,Studio Ghibli,1446254288 +12470,46976,existentialism,1446255724 +12470,46976,fantasy,1446255723 +12470,46976,heartwarming,1446255719 +12470,46976,metaphysics,1446255717 +12470,46976,quirky,1446255715 +12470,46976,storytelling,1446255728 +12470,46976,surreal,1446255712 +12470,56757,dark comedy,1441507696 +12470,56757,Depp & Burton,1441507699 +12470,56757,great cinematography,1441507702 +12470,56757,Musical,1441507693 +12470,56757,Tim Burton,1441507691 +12470,56757,visually appealing,1441507704 +12470,61289,visually stunning,1442856009 +12470,66934,good dialogue,1441507757 +12470,66934,joss whedon,1441507751 +12470,66934,musical,1441507765 +12470,66934,Nathan Fillion,1441507769 +12470,66934,superhero,1441507773 +12470,83132,beautiful,1442804352 +12470,83132,bittersweet,1442804354 +12470,83132,Studio Ghibli,1442804350 +12470,89759,husband-wife relationship,1442856370 +12470,89761,adultery,1442855672 +12470,106696,animation,1441507805 +12470,106696,Disney,1441507804 +12470,106696,feminist,1441507816 +12470,106696,musical,1441507807 +12470,136016,Pixar,1450584545 +12473,260,future,1432783179 +12473,260,futuristic,1432783183 +12473,260,galactic,1432783200 +12473,260,space,1432783191 +12473,260,special effects,1432783187 +12474,1214,aliens,1266422821 +12482,7361,bittersweet,1445894375 +12482,7361,nonlinear,1445894397 +12482,7361,surreal,1445894347 +12482,7361,surrealism,1445894389 +12482,7361,thought-provoking,1445894401 +12492,39419,1970s,1169443092 +12492,39419,drugs,1169443088 +12492,49822,Central Intelligence Agency,1169530598 +12492,49822,Cold War,1169530620 +12504,260,classic sci-fi,1439761598 +12508,111,masterpiece,1368752200 +12508,296,masterpiece,1368752200 +12508,349,mentor,1368752190 +12508,587,supernatural,1368752218 +12508,799,supernatural,1368752218 +12508,866,stylish,1368752242 +12508,913,noir thriller,1368752177 +12508,923,masterpiece,1368752200 +12508,924,masterpiece,1368752200 +12508,1213,masterpiece,1368752200 +12508,1248,noir thriller,1368752177 +12508,1249,stylish,1368752242 +12508,1258,masterpiece,1368752200 +12508,1264,stylish,1368752242 +12508,1704,mentor,1368752190 +12508,1754,supernatural,1368752218 +12508,2291,original,1368752149 +12508,2420,mentor,1368752190 +12508,2726,noir thriller,1368752177 +12508,2841,supernatural,1368752218 +12508,4020,supernatural,1368752218 +12508,4878,original,1368752149 +12508,5065,supernatural,1368752218 +12508,6874,Crime,1362340453 +12508,6874,funny,1362340452 +12508,6874,imdb top 250,1362340450 +12508,6874,Japan,1362340448 +12508,6874,kung fu,1362340446 +12508,6874,martial arts,1362340431 +12508,6874,Quentin Tarantino,1362340437 +12508,6874,quirky,1362340433 +12508,6874,Uma Thurman,1362340440 +12508,6874,visually appealing,1362340477 +12508,7013,noir thriller,1368752177 +12538,260,exciting,1444022208 +12538,260,Groundbreaking,1444022183 +12554,1,animation,1225194325 +12554,1,children,1225194339 +12554,1,Disney,1225194329 +12554,1,Pixar,1225194327 +12554,318,prison,1225192961 +12554,318,Stephen King,1225192957 +12554,527,Holocaust,1225192911 +12554,527,Oscar (Best Picture),1225192913 +12554,541,based on a book,1225194937 +12554,541,robots,1225194940 +12554,541,sci-fi,1225194942 +12554,593,serial killer,1225192830 +12554,1676,aliens,1225194881 +12554,1676,Robert Heinlein,1225194885 +12554,1676,space,1225194877 +12554,2761,animation,1225193862 +12554,2761,robots,1225193860 +12554,3000,anime,1225193030 +12554,3000,Studio Ghibli,1225193029 +12554,4306,animation,1225192935 +12554,4896,based on a book,1225193415 +12554,4993,based on a book,1225192920 +12554,4993,fantasy,1225192922 +12554,4993,magic,1225192923 +12554,5463,dragons,1225193421 +12554,8961,Pixar,1225192995 +12554,8961,superhero,1225192999 +12554,34405,based on a TV show,1225194911 +12554,34405,Firefly,1225194917 +12554,34405,sci-fi,1225194909 +12554,34405,space,1225194913 +12554,40815,based on a book,1225193245 +12554,40815,harry potter,1225193251 +12554,40815,magic,1225193246 +12554,49649,fantasy,1225193412 +12554,59315,Marvel,1225192974 +12582,170,computers,1439785524 +12582,170,cyberpunk,1439785528 +12582,170,geek,1439785531 +12582,170,geeks,1439785536 +12582,170,hacker,1439785543 +12582,170,hackers,1439785526 +12582,55908,dialogue driven,1441436234 +12582,55908,entirely dialogue,1441436267 +12582,55908,Excellent use of dialogue,1441436244 +12582,55908,intellectual,1441436231 +12582,55908,intelligent,1441436239 +12582,55908,philosophical,1441436225 +12582,55908,thought-provoking,1441436229 +12582,90866,cinematography,1439924179 +12582,108153,computer science,1441435265 +12582,108153,dialogue driven,1441436345 +12582,108153,excellent use of dialogue,1441436418 +12582,108153,intellectual,1441436358 +12582,108153,intelligent,1441436399 +12582,108153,mathematics,1441436425 +12582,117887,cinematography,1439924203 +12582,120637,hackers,1439782876 +12582,127096,time travel,1439782805 +12582,131170,alternate reality,1439782698 +12582,135220,youtube,1439853655 +12597,5945,alexander payne,1155529025 +12610,27,Bechdel Test:Pass,1408428689 +12610,27,Brendan Fraser,1408428766 +12610,27,Christina Ricci,1408428425 +12610,27,Demi Moore,1408428439 +12610,27,friendship,1408428299 +12610,27,Gaby Hoffman,1408428492 +12610,27,Janeane Garofalo,1408480157 +12610,27,Melanie Griffith,1408428456 +12610,27,Rita Wilson,1408428510 +12610,27,Rosie O'Donnell,1408428290 +12610,27,sisterhood,1408428282 +12610,27,songs,1408428371 +12610,27,soundtrack,1408428371 +12610,27,Thora Birch,1408428425 +12610,27,women,1408428907 +12616,3259,open range,1139733942 +12616,5159,far and away,1139733813 +12617,2931,affectionate,1375616600 +12617,2931,bittersweet,1375616596 +12617,7581,author:Ayn Rand,1293923079 +12617,7581,libertarian,1293923067 +12617,56367,comedy,1290264317 +12617,56367,cult film,1290264339 +12617,56367,great soundtrack,1290264329 +12617,56367,high school,1290264326 +12617,56367,notable soundtrack,1290264313 +12617,56367,pregnancy,1290264348 +12617,60336,Juliette Binoche,1298203916 +12617,60336,Leos Carax,1298203924 +12617,73321,beautiful scenery,1290264434 +12617,73321,Bible,1290264418 +12617,73321,Christianity,1290264419 +12617,73321,Denzel Washington,1290264444 +12617,73321,dystopic future,1290264438 +12617,73321,post-apocalyptic,1290264437 +12617,73321,religious propaganda,1290264429 +12617,73321,thought-provoking,1290264427 +12617,81391,addiction,1382911203 +12617,81391,isolation,1382911193 +12617,81834,based on a book,1290263578 +12617,81834,boarding school,1290263590 +12617,81834,Emma Watson,1290263572 +12617,94466,technophobic,1375611903 +12617,96832,senseless,1388828761 +12617,96832,surreal,1388828774 +12623,111377,character:jason vorhees,1428222159 +12623,111377,documentary,1428222159 +12623,111377,subgenre:slasher,1428222159 +12628,785,Woody Harrelson,1287100113 +12707,380,Arnold Schwarzenegger,1286429489 +12707,380,comedy,1286429483 +12707,380,spies,1286429485 +12707,733,Alcatraz,1286429221 +12707,733,Sean Connery,1286429229 +12707,1573,action,1286429563 +12707,1573,John Travolta,1286429553 +12707,1573,Nicolas Cage,1286429552 +12707,5989,true story,1286430440 +12707,7017,Wesley Snipes,1286429331 +12707,8131,easily confused with another title,1302059916 +12707,8131,NOT WILL SMITH,1302059928 +12707,59369,CIA,1286429596 +12707,59369,Liam Neeson,1286429625 +12707,59369,special forces,1286429600 +12707,59369,thriller,1286429597 +12707,78469,Funny,1286430202 +12707,78469,Jessica Biel,1286430199 +12707,78469,Liam Neeson,1286430206 +12707,79695,acting,1286429432 +12707,79695,bad direction,1286429414 +12707,79695,boring,1286429428 +12707,79695,Sylvester Stallone,1286429440 +12711,836,thriller,1186598596 +12711,1883,funny,1186598504 +12711,2384,funny,1186598601 +12711,2505,awesome,1186598647 +12711,4367,ok,1186598517 +12711,44191,awesome,1186598726 +12711,44191,loved it,1186598726 +12732,260,classic,1444044829 +12732,260,Science Fiction,1444044824 +12732,4973,feel-good,1444056365 +12732,94959,1960s,1444056469 +12732,94959,quirky,1444056438 +12733,1,children,1257988285 +12733,1,Disney,1257988287 +12733,47,biblical,1257989227 +12733,47,Brad Pitt,1257989205 +12733,47,drama,1257989191 +12733,47,Gwyneth Paltrow,1257989211 +12733,47,horror,1257989188 +12733,47,Kevin Spacey,1257989203 +12733,47,Morgan Freeman,1257989200 +12733,47,serial killer,1257989216 +12733,50,Crime,1257989096 +12733,50,Kevin Spacey,1257989119 +12733,50,mindfuck,1257989099 +12733,50,suspense,1257989101 +12733,50,twist ending,1257989121 +12733,595,Disney,1257988677 +12733,595,fairy tale,1257988680 +12733,595,redemption,1257988684 +12733,595,seen more than once,1257988693 +12733,1025,Cartoon,1258081610 +12733,1025,children,1258081620 +12733,1025,classic,1258081607 +12733,1025,Disney,1258081587 +12733,1025,Disney animated feature,1258081589 +12733,1025,historical,1258081642 +12733,1025,King Arthur,1258081592 +12733,1025,magic,1258081602 +12733,1025,Merlin,1258081597 +12733,1025,musical,1258081595 +12733,1028,Dick Van Dyke,1257988551 +12733,1136,bizarre ending,1257988473 +12733,1136,british comedy,1257988501 +12733,1136,classic,1257988483 +12733,1136,witty,1257988478 +12733,1206,controversial,1257988775 +12733,1206,cult film,1257988778 +12733,1206,drama,1257988783 +12733,1206,dystopia,1257988781 +12733,1206,rape,1257988804 +12733,1206,violence,1257988796 +12733,1645,Al Pacino,1258081291 +12733,1645,deal with the devil,1258081331 +12733,1645,Keanu Reeves,1258081294 +12733,1645,religion,1258081302 +12733,1645,satan,1258081299 +12733,1645,temptation,1258081309 +12733,2081,Disney,1257988655 +12733,2959,Brad Pitt,1257989264 +12733,2959,dark,1257989274 +12733,2959,dark comedy,1257989253 +12733,2959,Edward Norton,1257989262 +12733,2959,mental illness,1257989255 +12733,2959,thought-provoking,1257989257 +12733,2959,twist ending,1257989260 +12733,3052,Alan Rickman,1259621306 +12733,3052,Ben Affleck,1259621283 +12733,3052,Catholicism,1259621301 +12733,3052,Christianity,1259621303 +12733,3052,controversial,1259621298 +12733,3052,irreverent,1259621311 +12733,3052,jay and silent bob,1259621296 +12733,3052,Kevin Smith,1259621292 +12733,3052,Matt Damon,1259621290 +12733,3052,Salma Hayek,1259621317 +12733,3052,satire,1259621326 +12733,4148,better than the book,1257978103 +12733,4720,ghosts,1257989160 +12733,4720,Nicole Kidman,1257989162 +12733,4720,surprise ending,1257989164 +12733,4902,ghosts,1258081246 +12733,4902,Guillermo del Toro,1258081214 +12733,4902,orphanage,1258081252 +12733,4902,orphans,1258081231 +12733,4902,Spanish,1258081242 +12733,4902,Spanish Civil War,1258081241 +12733,5294,Bill Paxton,1258426708 +12733,5294,brothers,1258426681 +12733,5294,dumbest twist ever,1258426676 +12733,5294,father-son relationship,1258426695 +12733,5294,insanity,1258426730 +12733,5294,Matthew McConaughey,1258426690 +12733,5294,mission from God,1258426720 +12733,5294,religious,1258426686 +12733,5294,serial killer,1258426683 +12733,5294,siblings,1258426711 +12733,5617,BDSM,1258062915 +12733,5617,black comedy,1258062870 +12733,5617,erotic,1258062868 +12733,5617,James Spader,1258062863 +12733,5617,Maggie Gyllenhaal,1258062866 +12733,5617,relationships,1258062903 +12733,5617,secretary,1258062910 +12733,5617,sexuality,1258062906 +12733,6995,Cheese,1257987754 +12733,6995,so bad it's good,1257987745 +12733,8874,black comedy,1258081183 +12733,8874,British,1258081150 +12733,8874,british comedy,1258081152 +12733,8874,dark humor,1258081185 +12733,8874,horror,1258081174 +12733,8874,parody,1258081179 +12733,8874,spoof,1258081169 +12733,8874,zombies,1258081165 +12733,26887,based on a book,1258318595 +12733,26887,Stephen King,1258318590 +12733,26887,time travel,1258318593 +12733,30816,Gerard Butler,1257987777 +12733,30816,Minnie Driver,1257987803 +12733,30816,visually appealing,1257987819 +12733,32587,visually appealing,1257988111 +12733,45950,climate change,1258081447 +12733,45950,documentary,1258081479 +12733,45950,earth,1258081488 +12733,45950,ecology,1258081449 +12733,45950,global warming,1258081452 +12733,45950,interesting,1258081463 +12733,45950,issue agenda,1258081500 +12733,45950,politics,1258081459 +12733,48543,crime,1257977350 +12733,48543,german,1257977321 +12733,48543,thriller,1257977345 +12733,51255,action spoof,1258081115 +12733,51255,black comedy,1258081111 +12733,51255,british comedy,1258081105 +12733,51255,buddy movie,1258081128 +12733,51255,comedy,1258081103 +12733,51255,dystopia,1258081108 +12733,51255,parody,1258081134 +12733,51255,police,1258081085 +12733,51255,Simon Pegg,1258081082 +12733,51255,small town,1258081097 +12733,51255,subgenre:cop buddies,1258081094 +12733,51255,Timothy Dalton,1258081087 +12733,51357,crime,1258318356 +12733,51357,Donald Sutherland,1258318395 +12733,51357,mystery,1258318352 +12733,51357,serial killer,1258318343 +12733,51357,Soviet,1258318365 +12733,51357,Stephen Rea,1258318405 +12733,51847,terrorism,1257977388 +12733,51847,thriller,1257977422 +12733,51847,twist ending,1257977395 +12733,52435,Christmas,1257988738 +12733,52435,classic,1257988752 +12733,52435,Dr. Seuss,1257988717 +12733,52435,made for TV,1257988722 +12733,52435,moral,1257988747 +12733,52435,narrated,1257988730 +12733,53129,Dane Cook,1258081365 +12733,53129,Demi Moore,1258081369 +12733,53129,Kevin Costner,1258081371 +12733,53129,Marg Helgenberger,1258081374 +12733,53129,murder,1258081377 +12733,53129,plot twist,1258081387 +12733,53129,serial killer,1258081379 +12733,53129,William Hurt,1258081381 +12733,58559,action,1258062774 +12733,58559,Batman,1258062741 +12733,58559,Christian Bale,1258062739 +12733,58559,dark,1258062751 +12733,58559,Gary Oldman,1258062736 +12733,58559,Heath Ledger,1258062733 +12733,58559,Michael Caine,1258062820 +12733,58559,Morgan Freeman,1258062754 +12733,58559,Oscar (Best Supporting Actor),1258062814 +12733,58559,superhero,1258062747 +12733,58559,vigilante,1258062767 +12733,60141,british,1257977580 +12733,60141,comedy,1257977584 +12733,60141,school,1257977598 +12733,60141,theft,1257977604 +12733,60948,Alan Rickman,1257989050 +12733,60948,Bill Pullman,1257989058 +12733,60948,wine,1257989053 +12733,61948,ghosts,1257977267 +12733,61948,house arrest,1257977301 +12733,61948,revenge,1257977284 +12733,64229,Adrien Brody,1257988934 +12733,64229,Beyonce Knowles,1257988964 +12733,64229,blues,1257988956 +12733,64229,chicago,1257988970 +12733,64229,music business,1257988941 +12733,65135,British,1257977686 +12733,65181,alan rickman,1257988847 +12733,65181,dark comedy,1257988847 +12733,65181,dysfunctional family,1257988850 +12733,65181,kidnapping,1257988847 +12733,65181,twist ending,1257988847 +12733,65882,psychological,1257989072 +12733,66659,comedy,1257977448 +12733,66659,tyler perry,1257977442 +12733,66691,Antonio Banderas,1258318518 +12733,66691,heist,1258318535 +12733,66691,Morgan Freeman,1258318532 +12733,66691,thieves,1258318537 +12733,66691,undercover,1258318540 +12733,67734,bordering on girly,1258081661 +12733,67734,funny,1258081681 +12733,67734,Jesse Eisenberg,1258081673 +12733,67734,Kristen Stewart,1258081669 +12733,67734,nihilism,1258081678 +12733,67734,Ryan Reynolds,1258081671 +12733,69118,crime,1257977480 +12733,69118,mystery,1257977472 +12733,69118,New Orleans,1257977501 +12733,69253,Harry Connick Jr.,1257989025 +12733,69253,predictable,1257989034 +12733,71460,easily confused with other movie(s) (title),1257988914 +12733,72129,franchise,1257988865 +12747,13,wolves,1365945485 +12747,19,comedy,1365944465 +12747,19,hilarious,1365944468 +12747,19,Jim Carrey,1365944469 +12747,19,sequel,1365944480 +12747,69,funny,1365944256 +12747,69,ghetto,1365944257 +12747,69,great soundtrack,1365944260 +12747,69,Ice Cube,1365944262 +12747,150,astronauts,1365944096 +12747,150,based on a true story,1365944107 +12747,150,space,1365944111 +12747,150,suspense,1365944109 +12747,150,Tom Hanks,1365944115 +12747,344,1990s,1365942883 +12747,344,Dumb,1365942867 +12747,344,goofy,1365942870 +12747,344,Jim Carrey,1365942862 +12747,420,funny,1365946398 +12747,420,sequel,1365946401 +12747,588,adventure,1365943868 +12747,588,animation,1365943870 +12747,588,artistic,1365943872 +12747,588,comedy,1365943874 +12747,588,Fantasy,1365943878 +12747,588,funny,1365943888 +12747,588,musical,1365943908 +12747,588,Robin Williams,1365943902 +12747,595,animation,1365945953 +12747,595,beautiful,1365945957 +12747,595,gentle,1365945960 +12747,595,heartwarming,1365945961 +12747,595,humorous,1365945963 +12747,924,aliens,1365943989 +12747,924,artificial intelligence,1365943985 +12747,924,atmospheric,1365943990 +12747,924,future,1365943994 +12747,924,futuristic,1365943995 +12747,924,meditative,1365943997 +12747,924,music,1365944000 +12747,924,philosophical,1365944006 +12747,924,robots,1365944005 +12747,924,sci-fi,1365944004 +12747,924,space,1365944007 +12747,924,surreal,1365944008 +12747,1025,2D animation,1365943404 +12747,1025,animated,1365943405 +12747,1025,animation,1365943406 +12747,1025,fantasy,1365943415 +12747,1025,funny,1365943418 +12747,1025,magic,1365943421 +12747,1200,action,1365943814 +12747,1200,aliens,1365943813 +12747,1200,androids,1365943808 +12747,1200,atmospheric,1365943809 +12747,1200,military,1365943815 +12747,1200,Sigourney Weaver,1365943821 +12747,1200,space,1365943821 +12747,1200,SPACE TRAVEL,1365943822 +12747,1200,suspense,1365943823 +12747,1200,tense,1365943825 +12747,1206,atmospheric,1365944068 +12747,1206,disturbing,1365944074 +12747,1206,dystopia,1365944069 +12747,1206,future,1365944076 +12747,1206,psychology,1365944081 +12747,1206,quirky,1365944084 +12747,1206,social commentary,1365944082 +12747,1206,surreal,1365944087 +12747,1206,Surrealism,1365944088 +12747,1208,Dark,1365943609 +12747,1208,disturbing,1365943610 +12747,1208,military,1365943619 +12747,1208,surreal,1365943620 +12747,1214,aliens,1365943837 +12747,1214,androids,1365943838 +12747,1214,atmospheric,1365943839 +12747,1214,dark,1365943840 +12747,1214,futuristic,1365943841 +12747,1214,sci-fi,1365943846 +12747,1214,space,1365943848 +12747,1214,space travel,1365943850 +12747,1214,suspense,1365943851 +12747,1257,black comedy,1365946281 +12747,1257,silly,1365946288 +12747,1257,suicide attempt,1365946279 +12747,1257,surreal,1365946286 +12747,1270,adventure,1365945386 +12747,1270,classic,1365945392 +12747,1270,comedy,1365945391 +12747,1270,fantasy,1365945393 +12747,1270,Funny,1365945394 +12747,1270,future,1365945395 +12747,1270,futuristic,1365945396 +12747,1270,sci-fi,1365945402 +12747,1274,animation,1365943914 +12747,1274,atmospheric,1365943916 +12747,1274,cyberpunk,1365943917 +12747,1274,dreamlike,1365943919 +12747,1274,dystopia,1365943920 +12747,1274,dystopic future,1365943921 +12747,1274,future,1365943922 +12747,1274,Japan,1365943923 +12747,1274,post-apocalyptic,1365943924 +12747,1274,science fiction,1365943925 +12747,1274,scifi,1365943926 +12747,1274,stylized,1365943927 +12747,1274,visually stunning,1365943931 +12747,1320,Sigourney Weaver,1365942960 +12747,1320,underrated,1365942965 +12747,1359,Arnold Schwarzenegger,1365942923 +12747,1359,so bad it's good,1365942927 +12747,1690,Alien,1365945034 +12747,1690,alien series,1365945033 +12747,1690,aliens,1365945031 +12747,1690,dystopia,1365945028 +12747,1690,dystopic future,1365945021 +12747,1690,franchise,1365945022 +12747,1690,sci-fi,1365945020 +12747,1690,science fiction,1365945019 +12747,1690,sequel,1365945014 +12747,1690,Sigourney Weaver,1365945016 +12747,1690,space,1365945017 +12747,1917,apocalypse,1365944847 +12747,1917,sci-fi,1365944861 +12747,1917,space,1365944864 +12747,1917,stupid,1365944858 +12747,1965,black comedy,1365944705 +12747,1965,dark comedy,1365944706 +12747,1965,punk,1365944704 +12747,1965,surreal,1365944715 +12747,2011,1980s,1365945414 +12747,2011,alternate reality,1365945415 +12747,2011,fantasy,1365945423 +12747,2011,sci-fi,1365945411 +12747,2011,science fiction,1365945412 +12747,2011,sequel,1365945409 +12747,2012,adventure,1365945456 +12747,2012,fantasy,1365945453 +12747,2012,Funny,1365945452 +12747,2012,future,1365945451 +12747,2012,humorous,1365945450 +12747,2012,sci-fi,1365945447 +12747,2012,sequel,1365945439 +12747,2012,trains,1365945444 +12747,2012,western,1365945441 +12747,2018,animation,1365945540 +12747,2018,overrated,1365945532 +12747,2046,80s,1365943508 +12747,2046,Adventure,1365943510 +12747,2046,aliens,1365943517 +12747,2046,childhood classic,1365943528 +12747,2046,escapist action,1365943529 +12747,2046,Sci-Fi,1365943530 +12747,2134,1980s,1365944643 +12747,2134,comedy,1365944646 +12747,2294,Adventure,1365944125 +12747,2294,funny,1365944133 +12747,2294,revolutionary,1365944140 +12747,2311,artificial intelligence,1365943965 +12747,2311,sci-fi,1365943973 +12747,2311,space,1365943974 +12747,2311,space travel,1365943975 +12747,2355,animation,1365944301 +12747,2355,FIGHTING THE SYSTEM,1365944307 +12747,2355,funny,1365944363 +12747,2355,kids and family,1365944375 +12747,2797,1980s,1365946519 +12747,2797,80's,1365946521 +12747,2797,80s,1365946522 +12747,2797,Child as Adult,1365946524 +12747,2797,comedy,1365946526 +12747,2797,Tom Hanks,1365946528 +12747,2858,black comedy,1365943736 +12747,2858,dark comedy,1365943737 +12747,2858,Kevin Spacey,1365943745 +12747,2858,social commentary,1365943750 +12747,2858,surrealism,1365943747 +12747,2858,thought-provoking,1365943749 +12747,2997,fantasy,1365946096 +12747,2997,quirky,1365946103 +12747,2997,surreal,1365946092 +12747,3034,2D animation,1365943450 +12747,3034,anthropomorphic,1365943454 +12747,3034,anthropomorphized animals,1365943455 +12747,3034,outlaw,1365943468 +12747,3156,artificial intelligence,1365942897 +12747,3156,dystopia,1365942907 +12747,3156,future,1365942908 +12747,3156,Isaac Asimov,1365942893 +12747,3156,robots,1365942901 +12747,3156,sci-fi,1365942899 +12747,3156,science fiction,1365942905 +12747,3421,classic,1365943664 +12747,3421,Funny,1365943657 +12747,3421,music,1365943686 +12747,3535,dark,1365944149 +12747,3535,Disturbing,1365944151 +12747,3535,funny,1365944156 +12747,3535,humorous,1365944156 +12747,3535,insanity,1365944155 +12747,3535,murder,1365944160 +12747,3535,psychological,1365944161 +12747,3535,psychology,1365944167 +12747,3535,serial killer,1365944164 +12747,3535,violent,1365944168 +12747,3701,aliens,1365944946 +12747,3701,predictable,1365944976 +12747,3701,sociology,1365944948 +12747,3701,thought-provoking,1365944950 +12747,3911,absurd,1365946195 +12747,3911,funny,1365946197 +12747,4084,funny,1365946394 +12747,4084,sequel,1365946392 +12747,4085,Axel Foley,1365946367 +12747,4085,funny,1365946374 +12747,4270,action,1365944996 +12747,4270,adventure,1365944995 +12747,4270,cheesy,1365944999 +12747,4270,comedy,1365945001 +12747,4270,Sequel,1365944989 +12747,4299,comedy,1365944229 +12747,4299,Heath Ledger,1365944231 +12747,4299,I can watch it again,1365944239 +12747,4299,medieval,1365944242 +12747,4343,comedy,1365942833 +12747,4343,funny,1365942838 +12747,4343,hillarious,1365942839 +12747,4366,adventure,1365944841 +12747,4366,fantasy,1365944813 +12747,4366,unrealistic characters,1365944835 +12747,4370,androids,1365944208 +12747,4370,artificial intelligence,1365944209 +12747,4370,beautiful,1365944211 +12747,4370,dystopia,1365944214 +12747,4370,future,1365944217 +12747,4370,robots,1365944218 +12747,4370,sci-fi,1365944221 +12747,4446,aliens,1365944277 +12747,4446,great animation,1365944283 +12747,4446,post-apocalyptic,1365944287 +12747,4446,sci-fi,1365944288 +12747,4446,visually stunning,1365944291 +12747,4713,psychedelic,1365943775 +12747,4713,science fiction,1365943776 +12747,4713,scientist experiments on self,1365943782 +12747,4713,tense,1365943780 +12747,4958,eastern europe,1365946037 +12747,4958,gritty,1365946028 +12747,4958,Owen Wilson,1365946018 +12747,4958,war,1365946022 +12747,4993,adventure,1365943489 +12747,4993,atmospheric,1365943490 +12747,4993,beautifully filmed,1365943487 +12747,4993,fantasy,1365943491 +12747,4993,great soundtrack,1365943493 +12747,4993,high fantasy,1365943485 +12747,4993,magic,1365943494 +12747,4995,inspirational,1365943568 +12747,4995,mathematics,1365943557 +12747,5952,adventure,1365944023 +12747,5952,atmospheric,1365944027 +12747,5952,fantasy,1365944028 +12747,5952,fantasy world,1365944030 +12747,5952,high fantasy,1365944032 +12747,5952,magic,1365944033 +12747,5952,scenic,1365944042 +12747,5952,sword fight,1365944039 +12747,6157,Awful Soundtrack,1365943003 +12747,6157,bad acting,1365943005 +12747,6157,heroine in tight suit,1365943013 +12747,6502,atmospheric,1365944522 +12747,6502,futuristic,1365944524 +12747,6502,great soundtrack,1365944528 +12747,6502,Post apocalyptic,1365944529 +12747,6502,post-apocalyptic,1365944530 +12747,6502,sci-fi,1365944531 +12747,6502,stylized,1365944534 +12747,6502,survival,1365944535 +12747,6502,suspense,1365944536 +12747,6502,thought-provoking,1365944537 +12747,6502,violence,1365944540 +12747,6502,visually appealing,1365944541 +12747,6790,alternate reality,1365943579 +12747,6790,dystopia,1365943582 +12747,6790,meditative music,1365943589 +12747,6790,sci-fi,1365943591 +12747,6790,virtual reality,1365943593 +12747,7022,brutal,1365945883 +12747,7022,dystopia,1365945861 +12747,7022,Japan,1365945864 +12747,7022,survival,1365945871 +12747,7022,Takeshi Kitano,1365945870 +12747,7063,harsh,1365943944 +12747,7063,Heart of Darkness,1365943945 +12747,7063,insanity,1365943946 +12747,7063,obsession,1365943951 +12747,7063,stylized,1365943952 +12747,7063,tense,1365943955 +12747,7153,adventure,1365944049 +12747,7153,atmospheric,1365944050 +12747,7153,fantasy,1365944052 +12747,7153,great soundtrack,1365944053 +12747,7153,magic,1365944055 +12747,7153,Oscar (Best Picture),1365944054 +12747,7153,scenic,1365944061 +12747,8641,hilarious,1365943700 +12747,8641,hillarious,1365943702 +12747,27865,assassin,1365944386 +12747,27865,Dark hero,1365944387 +12747,27865,ninja,1365944389 +12747,27865,sword fight,1365944390 +12747,27865,sword fighting,1365944391 +12747,27904,philosophical,1365945069 +12747,27904,psychology,1365945070 +12747,27904,sci-fi,1365945072 +12747,27904,social commentary,1365945071 +12747,27904,stylized,1365945062 +12747,31184,future,1365944403 +12747,31184,sci-fi,1365944405 +12747,31184,techno-evolution,1365944408 +12747,31184,technology,1365944410 +12747,37386,assassin,1365944423 +12747,37386,atmospheric,1365944424 +12747,37386,cinematography,1365944427 +12747,37386,cloning,1365944428 +12747,37386,dystopia,1365944429 +12747,37386,dystopic future,1365944430 +12747,37386,genetics,1365944431 +12747,37386,heroine in tight suit,1365944434 +12747,37386,Post apocalyptic,1365944437 +12747,37386,post-apocalyptic,1365944439 +12747,37386,revolution,1365944441 +12747,37386,sci-fi,1365944442 +12747,37386,Science Fiction,1365944443 +12747,37386,stylized,1365944444 +12747,37386,violence,1365944448 +12747,37386,visually appealing,1365944450 +12747,38095,Ji-woon Kim,1365943216 +12747,48825,Soviet Union,1365943154 +12747,48825,war,1365943183 +12747,55765,Russell Crowe,1365944200 +12747,59369,father daughter relationship,1365943341 +12747,59369,gritty,1365943367 +12747,59369,happy ending,1365943385 +12747,59369,Liam Neeson,1365943329 +12747,59369,one liners,1365943332 +12747,59369,realistic,1365943336 +12747,59369,revenge,1365943334 +12747,61350,post-apocalyptic,1365945314 +12747,61350,predictable,1365945318 +12747,68135,high school,1365945086 +12747,68135,Hilarious,1365945088 +12747,68135,Zac Efron,1365945104 +12747,69134,atmospheric,1365944881 +12747,69134,disturbing,1365944886 +12747,69134,wierd for the sake of it,1365944906 +12747,71057,beautiful,1365944492 +12747,71057,creepy,1365944493 +12747,71057,dark,1365944496 +12747,71057,dark fantasy,1365944498 +12747,71057,dystopia,1365944499 +12747,71057,post-apocalyptic,1365944491 +12747,71057,robots,1365944503 +12747,71057,sci-fi,1365944505 +12747,71057,surreal,1365944508 +12747,71057,survival,1365944511 +12747,71057,suspenseful,1365944509 +12747,71057,visually appealing,1365944514 +12747,71254,dystopian,1365943130 +12747,71254,hackers,1365943134 +12747,71254,predictable,1365943120 +12747,71254,sci-fi,1365943126 +12747,71254,stupid,1365943116 +12747,71254,virtual reality,1365943127 +12747,71464,biblical,1365944670 +12747,71464,black comedy,1365944673 +12747,71464,comedy,1365944675 +12747,71464,dark comedy,1365944676 +12747,71464,jews,1365944681 +12747,71464,judaism,1365944680 +12747,71464,Philosophical,1365944684 +12747,72998,aliens,1365944745 +12747,72998,fantasy,1365944749 +12747,72998,futuristic,1365944747 +12747,72998,military,1365944752 +12747,72998,predictable,1365944783 +12747,72998,scenic,1365944762 +12747,72998,sci-fi,1365944761 +12747,72998,thought-provoking,1365944764 +12747,81562,adventure,1365944617 +12747,81562,intense,1365944620 +12747,81562,man vs. nature,1365944622 +12747,81562,survival,1365944628 +12747,81562,wilderness,1365944636 +12747,85131,action,1365945749 +12747,85131,aliens,1365945775 +12747,85131,bad acting,1365945785 +12747,85131,predictable,1365945781 +12747,85131,sci-fi,1365945767 +12747,85131,shaky camera,1365945764 +12747,88812,funny,1365943242 +12747,89862,surreal,1365946137 +12747,89862,violence,1365946124 +12747,92192,boring,1365943201 +12747,92192,predictable,1365943203 +12747,92192,space travel,1365943204 +12747,93510,funny,1365944565 +12747,93510,genital mutilation,1365944569 +12747,93510,hilarious,1365944574 +12747,93510,Johnny Depp,1365944578 +12747,98809,adventure,1365943038 +12747,98809,beautiful scenery,1365943036 +12747,98809,crude humor,1365943031 +12747,98809,franchise,1365943054 +12747,98809,Ian McKellen,1365943044 +12747,98809,magic,1365943042 +12747,98809,Tolkien,1365943035 +12747,101180,adventure,1365945151 +12747,101180,fantasy,1365945132 +12747,101180,low budget,1365945138 +12747,101180,poor special effects,1365945145 +12768,8784,manic pixie dream girl,1394337551 +12768,69757,manic pixie dream girl,1394337809 +12779,65882,psychological,1243793872 +12779,65882,Twist Ending,1243793831 +12795,2542,amazing,1153528424 +12795,2542,dvd,1153528404 +12795,2542,Funny as hell,1153528424 +12795,2542,Guy Ritchie,1153528403 +12795,2542,Owned,1153528405 +12795,4011,comedy,1153528446 +12795,4011,dvd,1153528436 +12795,4011,funny as hell,1153528446 +12795,4011,Guy Ritchie,1153528435 +12795,4011,gypsy accent,1153528438 +12795,27831,british,1153528389 +12795,27831,British gangster,1153528390 +12795,27831,Exquisite plotting.,1153528386 +12823,736,Total and obvious CGI,1147535800 +12823,1096,emotional blackmail,1147535727 +12823,3996,overrated,1147535765 +12823,4142,Christian wishful thinking,1147535917 +12823,4427,Terrific Cast,1173561207 +12826,4848,angelo badalamenti,1360421999 +12826,4848,david lynch,1360421979 +12826,4848,naomi watts,1360421972 +12848,4105,masterpiece,1138833918 +12849,260,epic adventure,1436637608 +12849,260,future fantasy,1436637629 +12849,296,action,1436749847 +12849,296,crime,1436749847 +12849,296,noir,1436749847 +12855,8644,artificial intelligence,1442197818 +12855,8644,thought provoking,1442197814 +12869,260,action,1441643374 +12869,260,Science Fiction,1441643378 +12869,104631,Naomi Watts,1448676835 +12869,104631,Robin Wright,1448676852 +12871,2160,horror,1426090253 +12871,2160,mystery,1426090253 +12871,2160,satan,1426090253 +12895,2,board game,1312696062 +12895,2,Robin Williams,1312696070 +12895,32,Brad Pitt,1361654788 +12895,32,Bruce Willis,1361654790 +12895,32,time travel,1361654794 +12895,44,Paul W.S. Anderson,1312695547 +12895,44,So bad it's good,1312695553 +12895,47,Morgan Freeman,1312697583 +12895,47,psychology,1312697610 +12895,47,serial killer,1312697611 +12895,50,Benicio Del Toro,1360641534 +12895,50,complicated,1360641532 +12895,50,ensemble cast,1360641535 +12895,50,Kevin Spacey,1360641531 +12895,110,action,1318362577 +12895,110,classic,1318362573 +12895,110,historical,1318362564 +12895,110,History,1318362566 +12895,110,medieval,1318362560 +12895,110,Nudity (Topless),1318362588 +12895,110,Oscar (Best Cinematography),1318362569 +12895,110,Scotland,1318362583 +12895,180,Kevin Smith,1312699268 +12895,180,view askew,1312699271 +12895,181,Nostalgic,1312696588 +12895,181,Power Rangers,1312696583 +12895,223,good dialogue,1312699207 +12895,223,jay and silent bob,1312699213 +12895,223,Kevin Smith,1312699209 +12895,223,slackers,1312699215 +12895,223,view askew,1312699210 +12895,364,Childhood,1312695499 +12895,364,Matthew Broderick,1312695495 +12895,364,musical,1312695493 +12895,377,Action,1321933027 +12895,377,chase,1321933202 +12895,377,Don't get dead,1321935700 +12895,377,exciting,1321933036 +12895,377,explosions,1321933033 +12895,377,good acting,1321933039 +12895,377,Keanu Reeves,1321933029 +12895,377,Sandra Bullock,1321935679 +12895,377,visceral,1321935711 +12895,377,Wooden Acting,1321935670 +12895,541,cyberpunk,1317443217 +12895,541,dystopia,1317443219 +12895,541,Harrison Ford,1317443220 +12895,541,Philip K. Dick,1317443180 +12895,541,Rapist,1317443225 +12895,541,slow paced,1317443342 +12895,541,Visual Quality,1317443206 +12895,608,boring,1312731140 +12895,628,courtroom drama,1317064771 +12895,628,Edward Norton,1317064782 +12895,628,Psychology,1317064792 +12895,628,Richard Gere,1317064806 +12895,661,Classic,1316033283 +12895,661,claymation,1316033266 +12895,661,stop-motion,1316033270 +12895,733,Alcatraz,1319861131 +12895,733,biological warfare,1319861155 +12895,733,Ed Harris,1319861160 +12895,733,Hans Zimmer,1319861137 +12895,733,Michael Bay,1319861136 +12895,733,Nicolas Cage,1319861133 +12895,733,Sean Connery,1319861134 +12895,733,setting:Alcatraz,1319861150 +12895,733,setting:prison,1319861152 +12895,778,black comedy,1324435444 +12895,778,classic,1324435475 +12895,778,crime,1324435446 +12895,778,dark comedy,1324435531 +12895,778,Ewan McGregor,1324435434 +12895,778,great soundtrack,1324435448 +12895,778,Kelly Macdonald,1324435471 +12895,778,Nudity (Full Frontal),1324435433 +12895,778,pedophilia,1324435549 +12895,778,Scottish,1324435439 +12895,858,atmospheric,1329615334 +12895,858,family,1329615316 +12895,858,Mafia,1329615302 +12895,858,melancholy,1329615319 +12895,858,Nudity (Topless),1329615308 +12895,858,organized crime,1329615311 +12895,1028,Dick Van Dyke,1317493493 +12895,1028,Julie Andrews,1317493495 +12895,1028,musical,1317493490 +12895,1028,surreal,1317493539 +12895,1028,villain nonexistent or not needed for good story,1317493536 +12895,1073,classic,1317393340 +12895,1073,Gene Wilder,1317393333 +12895,1073,Heartwarming,1317393347 +12895,1073,musical,1312695259 +12895,1073,Roald Dahl,1317393336 +12895,1073,whimsical,1317393343 +12895,1091,80's,1323121898 +12895,1091,80's humor,1323121900 +12895,1091,Andrew McCarthy,1323121901 +12895,1091,classic,1323121893 +12895,1091,comedy,1323121877 +12895,1091,funny,1323121895 +12895,1091,gags,1323121880 +12895,1091,Homestuck,1323121939 +12895,1091,Jonathan Silverman,1323121964 +12895,1091,male,1323121865 +12895,1091,ridiculousness,1323121929 +12895,1091,Terry Kiser,1323121934 +12895,1101,AFI 100 (Movie Quotes),1320736335 +12895,1101,flight,1320736359 +12895,1101,gay,1320736337 +12895,1101,Gay Subtext,1320736312 +12895,1101,military,1320736356 +12895,1101,Oscar (Best Music - Original Song),1320736321 +12895,1101,Oscar Winner,1320736341 +12895,1101,Playing with the boys,1320736332 +12895,1101,romance,1320736344 +12895,1101,Tom Cruise,1320736316 +12895,1101,Val Kilmer,1320736318 +12895,1127,too long,1368065519 +12895,1136,Monty Python,1312695223 +12895,1193,Christopher Lloyd,1323066362 +12895,1193,depressing,1323066344 +12895,1193,Jack Nicholson,1323066351 +12895,1193,mental illness,1323066341 +12895,1193,Nudity (Topless),1323066353 +12895,1193,psychology,1323066346 +12895,1197,comedy,1312697164 +12895,1197,fairy tale,1312697170 +12895,1197,Inigo Montoya,1312697190 +12895,1197,sword fight,1312697160 +12895,1198,classic,1312694742 +12895,1198,good versus evil,1312694738 +12895,1198,Harrison Ford,1312694748 +12895,1198,indiana jones,1312694732 +12895,1198,Nazis,1312694744 +12895,1203,imdb top 250,1315528437 +12895,1206,Nudity (Full Frontal),1315963515 +12895,1206,Tits,1312693860 +12895,1215,Bruce Campbell,1312730865 +12895,1215,campy,1312730870 +12895,1215,Cult classic,1312730840 +12895,1215,time travel,1312730844 +12895,1215,zombies,1312730843 +12895,1222,1960s,1323126504 +12895,1222,boot camp,1323124197 +12895,1222,military,1323124201 +12895,1222,Music,1323126493 +12895,1222,Vietnam,1323124205 +12895,1222,war,1323124210 +12895,1222,war movie,1323124212 +12895,1243,absurd,1323141075 +12895,1243,dialogue driven,1323141053 +12895,1243,Gary Oldman,1323141072 +12895,1243,Lack of Plot,1323141061 +12895,1243,Richard Dreyfuss,1323141082 +12895,1243,Shakespeare sort of,1323141064 +12895,1243,slow paced,1323141056 +12895,1243,stupid,1323141067 +12895,1265,Bill Murray,1322339218 +12895,1265,Classic,1322339230 +12895,1265,comedy,1322339231 +12895,1265,existentialism,1322339225 +12895,1265,Harold Ramis,1322339215 +12895,1265,hilarious,1322339228 +12895,1265,romance,1322339235 +12895,1265,self discovery,1322339223 +12895,1265,surreal,1322339226 +12895,1265,time loop,1322339220 +12895,1265,time travel,1322339221 +12895,1275,Christopher Lambert,1316656675 +12895,1275,clans,1316656688 +12895,1275,original plot,1316656684 +12895,1275,Queen,1316656694 +12895,1275,Sean Connery,1316656678 +12895,1275,sword fight,1316656681 +12895,1291,Harrison Ford,1312694768 +12895,1291,indiana jones,1312694775 +12895,1291,Nazis,1312694773 +12895,1291,Sean Connery,1312694770 +12895,1356,James Cromwell,1449995259 +12895,1356,Patrick Stewart,1449994985 +12895,1356,time travel,1449994987 +12895,1371,DeForest Kelley,1328773574 +12895,1371,Enterprise,1328773591 +12895,1371,Green screen,1328773616 +12895,1371,Leonard Nimoy,1328773579 +12895,1371,sci-fi,1328773588 +12895,1371,Science Fiction,1328773589 +12895,1371,Score,1328773755 +12895,1371,slow,1328773582 +12895,1371,space,1328773587 +12895,1371,Star Trek,1328773585 +12895,1371,William Shatner,1328773584 +12895,1374,Deforrest Kelley,1332654309 +12895,1374,far future,1332654330 +12895,1374,midlife crisis,1332654346 +12895,1374,sacrifice,1332654327 +12895,1374,sci-fi,1332654332 +12895,1374,space,1332654339 +12895,1374,Star Trek,1332654317 +12895,1374,William Shatner,1332654291 +12895,1375,70mm,1363391037 +12895,1375,Christopher Lloyd,1363391043 +12895,1375,DeForest Kelley,1363391023 +12895,1375,Leonard Nimoy,1363391026 +12895,1375,William Shatner,1363391028 +12895,1376,Comedy,1371277230 +12895,1376,DeForest Kelley,1371277240 +12895,1376,dialogue,1371277228 +12895,1376,environmental,1371277225 +12895,1376,Leonard Nimoy,1371277214 +12895,1376,time travel,1371277218 +12895,1376,whales,1371277219 +12895,1376,William Shatner,1371277221 +12895,1411,Kenneth Branagh,1312699088 +12895,1552,dave chapelle,1319158244 +12895,1552,Great Actions,1319158250 +12895,1552,Homestuck,1319158277 +12895,1552,John Cusack,1319158241 +12895,1552,Nicolas Cage,1319158237 +12895,1552,soundtrack,1319158266 +12895,1552,Steve Buscemi,1319158239 +12895,1573,action,1319933677 +12895,1573,Drama,1319934154 +12895,1573,guns,1319933684 +12895,1573,John Travolta,1319935137 +12895,1573,John Woo,1319933712 +12895,1573,Nicholas Cage,1319930434 +12895,1573,Nicolas Cage,1319930431 +12895,1573,Nudity (Nic Cage),1319929891 +12895,1573,Romance,1319933798 +12895,1573,stupid,1319933700 +12895,1573,switching places,1319933693 +12895,1590,distorted reality,1362874604 +12895,1590,hallucination,1362874605 +12895,1590,Insanity,1362874850 +12895,1590,Laurence Fishburne,1362874879 +12895,1590,Nudity (Topless),1362874862 +12895,1590,Paul W.S. Anderson,1362874859 +12895,1590,sci-fi,1362874853 +12895,1610,Action,1327106410 +12895,1610,Long,1327106466 +12895,1610,Mind games,1327106417 +12895,1610,Sean Connery,1327106385 +12895,1610,Tense,1327106460 +12895,1610,Tim Curry,1327106446 +12895,1610,War,1327106395 +12895,1639,bisexuality,1312699632 +12895,1639,Kevin Smith,1312699628 +12895,1639,lesbian,1312699629 +12895,1639,love story,1312699626 +12895,1639,sexual identity,1312699622 +12895,1639,view askew,1312699624 +12895,1681,bad acting,1315783791 +12895,1681,bad cgi,1315783797 +12895,1681,Everything,1315783800 +12895,1732,bowling,1320016674 +12895,1732,Coen Brothers,1320016828 +12895,1732,drugs,1320016623 +12895,1732,great soundtrack,1320016625 +12895,1732,Jeff Bridges,1320016594 +12895,1732,John Goodman,1320016841 +12895,1732,marijuana,1320016611 +12895,1732,Nudity (Full Frontal),1320016619 +12895,1732,satirical,1320016849 +12895,1732,Steve Buscemi,1320016602 +12895,1873,author:Victor Hugo,1319912949 +12895,1873,Geoffrey Rush,1319913136 +12895,1873,Liam Neeson,1319913095 +12895,1873,Slow Pacing,1319913112 +12895,1873,Uma Thurman,1319913121 +12895,1884,hallucinatory,1312693782 +12895,1907,cross dressing,1312695398 +12895,1907,Eddie Murphy,1312695396 +12895,1907,great soundtrack,1312695385 +12895,1917,Owen Wilson,1319075762 +12895,2115,Harrison Ford,1312694826 +12895,2115,Indiana Jones,1312694843 +12895,2115,Short Round,1312694835 +12895,2115,Steven Spielberg,1312694846 +12895,2163,based on a book,1316746309 +12895,2288,aliens,1322295893 +12895,2288,Antarctica,1322295895 +12895,2288,Influenced by H.P. Lovecraft,1322295929 +12895,2288,Kurt Russell,1322295889 +12895,2288,paranoia,1322295899 +12895,2288,remake,1322295922 +12895,2288,shape shifter,1322295891 +12895,2288,Special Effects,1322295910 +12895,2318,Awkward,1325015921 +12895,2318,child abuse,1325015876 +12895,2318,Cynthia Stevenson,1325016018 +12895,2318,dark comedy,1325015784 +12895,2318,Dylan Baker,1325015858 +12895,2318,dysfunctional family,1325015861 +12895,2318,immigrants,1325015776 +12895,2318,Jane Adams,1325015810 +12895,2318,Nudity (Topless),1325015870 +12895,2318,Plot,1325015798 +12895,2318,rape,1325015779 +12895,2318,sexuality,1325015865 +12895,2318,social commentary,1325015863 +12895,2329,Edward Norton,1316649946 +12895,2329,powerful ending,1316649951 +12895,2329,tense,1316649956 +12895,2502,comedy,1324933304 +12895,2502,corporate America,1324933306 +12895,2502,cult classic,1324933308 +12895,2502,cult film,1324933303 +12895,2502,dark comedy,1324933302 +12895,2502,Jennifer Aniston,1324933288 +12895,2502,off-beat comedy,1324933290 +12895,2502,office,1324933299 +12895,2502,quirky,1324933298 +12895,2502,quotable,1324933297 +12895,2502,rebellion,1324933294 +12895,2502,satire,1324933311 +12895,2502,slackers,1324933301 +12895,2550,eerie,1319948225 +12895,2550,horror,1319947675 +12895,2550,Music,1319948202 +12895,2550,psychological,1319947677 +12895,2550,Slow Opening,1319947704 +12895,2550,suspense,1319947680 +12895,2657,campy,1316808149 +12895,2657,musical,1316808145 +12895,2657,Nudity (Topless - Brief),1316808153 +12895,2657,Quirky,1316808143 +12895,2657,Tim Curry,1316808160 +12895,2700,musical,1312694131 +12895,2700,satire,1312694137 +12895,2716,Bill Murray,1316322680 +12895,2762,afterlife,1325094947 +12895,2762,Bruce Willis,1325094949 +12895,2762,ghosts/afterlife,1325094930 +12895,2762,horror,1325094943 +12895,2762,M. Night Shyamalan,1325094951 +12895,2762,psychology,1325094939 +12895,2762,surprise ending,1325094932 +12895,2762,twist ending,1325094940 +12895,2858,bittersweet,1319826867 +12895,2858,black comedy,1319826865 +12895,2858,dark comedy,1319826863 +12895,2858,mental illness,1319826874 +12895,2858,social commentary,1319826861 +12895,2877,Boring,1319496418 +12895,2877,campy,1319496422 +12895,2877,irreverent,1319496424 +12895,2877,musical,1319496431 +12895,2877,Rock Opera,1319496430 +12895,2916,Arnold Schwarzenegger,1344828432 +12895,2916,Bad Science,1344828410 +12895,2916,campy,1344828438 +12895,2916,Philip K. Dick,1344828417 +12895,2916,Special Effects,1344828395 +12895,2916,Too 80s,1344828466 +12895,2916,visually appealing,1344828451 +12895,2997,Ending,1318812852 +12895,2997,psychology,1318812848 +12895,2997,twist ending,1318812864 +12895,3033,Classic,1315649517 +12895,3499,claustrophobic,1360641498 +12895,3499,Oscar (Best Actress),1360641504 +12895,3499,thriller,1360641495 +12895,3535,boring,1312730985 +12895,3693,Andree Maranda,1326338108 +12895,3693,Dated,1326338122 +12895,3693,Soundtrack,1326338117 +12895,3698,Arnold Schwarzenegger,1365984227 +12895,3698,dystopic future,1365984227 +12895,3698,so bad it's good,1365984230 +12895,3740,John Carpenter,1316981854 +12895,3740,Kurt Russell,1316981856 +12895,3740,magic,1316981862 +12895,3740,occult,1316981852 +12895,3945,anime,1312696420 +12895,3945,Digimons,1312696433 +12895,3945,Fucking Digimon,1312696440 +12895,3945,Made my childhood,1312696427 +12895,3945,very good,1312696419 +12895,3949,Boring,1366935234 +12895,3949,Darren Aronofsky,1366935322 +12895,3949,Jared Leto,1366935258 +12895,3949,Jennifer Connelly,1366935269 +12895,3949,Marlon Wayans,1366935276 +12895,3949,Nudity (Full Frontal),1366935246 +12895,3949,Slow,1366935240 +12895,3997,absolute crap,1315783746 +12895,3997,Marlon Wayans,1315783735 +12895,3997,Snails didn't come back to life,1315783769 +12895,3997,so bad it's good,1315783744 +12895,4226,nonlinear,1319226520 +12895,4226,psychological,1319226513 +12895,4226,psychology,1319226515 +12895,4226,revenge,1319226523 +12895,4226,twist ending,1319226517 +12895,4343,Funny,1316321534 +12895,4343,really bad,1316321556 +12895,4343,ridiculous,1316321554 +12895,4343,Stupid,1316321548 +12895,4370,artificial intelligence,1312730173 +12895,4370,depressing,1312730175 +12895,4370,sci-fi,1312730186 +12895,4571,Alex Winter,1319958135 +12895,4571,comedy,1319958126 +12895,4571,dude comedy,1319958151 +12895,4571,dumb but funny,1319958127 +12895,4571,George Carlin,1319958137 +12895,4571,history,1319958154 +12895,4571,Keanu Reeves,1319958128 +12895,4571,rock and roll,1319958141 +12895,4571,sci-fi,1319958146 +12895,4571,soundtrack,1319958145 +12895,4571,teenager,1319958144 +12895,4571,time travel,1319958142 +12895,4734,Kevin Smith,1312699287 +12895,4734,view askew,1312699290 +12895,4786,1970's,1320731829 +12895,4786,Boring,1320731824 +12895,4786,Pamela Franklin,1320731871 +12895,4786,Poor visual quality,1320731842 +12895,4786,to see: b-grade horror,1320731856 +12895,4816,ben stiller,1312699595 +12895,4816,Funny as hell,1315698126 +12895,4816,goofy,1315698115 +12895,4816,hysterical,1315698134 +12895,4816,male models,1315698112 +12895,4816,mindless one liners,1312699591 +12895,4816,Owen Wilson,1315698120 +12895,4816,Will Ferrell,1312699593 +12895,4873,cinematography,1363594428 +12895,4873,Not much of a movie,1363594424 +12895,4873,philosophy,1363594412 +12895,4873,thought-provoking,1363594410 +12895,5047,campy,1315698195 +12895,5047,digital editing,1315698187 +12895,5047,hilarious spoof,1315698192 +12895,5047,parody,1315698190 +12895,5072,Japan,1314718796 +12895,5072,robots,1314718794 +12895,5072,Sad Ending,1314718783 +12895,5072,tezuka,1314718803 +12895,5072,visually appealing,1314718768 +12895,5219,Business is the antagonist,1312695606 +12895,5219,Medic Chick,1312695594 +12895,5219,Milla Jovovich,1312695614 +12895,5219,Paul W.S. Anderson,1312695627 +12895,5445,corruption,1361073431 +12895,5445,dystopia,1361073419 +12895,5445,future,1361073420 +12895,5445,Philip K. Dick,1361073414 +12895,5445,Steven Spielberg,1361073417 +12895,5445,time travel,1361073418 +12895,5445,Tom Cruise,1361073416 +12895,5445,violence,1361073436 +12895,5544,Malcolm McDowell,1319167253 +12895,5544,Special Effects,1319161715 +12895,5618,adventure,1324397162 +12895,5618,animated,1324397164 +12895,5618,anime,1312700555 +12895,5618,childhood,1324397159 +12895,5618,dragons,1324397161 +12895,5618,dreamlike,1312700541 +12895,5618,fantasy,1324397149 +12895,5618,hallucinatory,1324397147 +12895,5618,Hayao Miyazaki,1324397146 +12895,5618,imdb top 250,1324397170 +12895,5618,Japan,1324397151 +12895,5618,Oscar (Best Animated Feature),1324397142 +12895,5618,Studio Ghibli,1312700543 +12895,5618,surreal,1324397153 +12895,5618,whimsical,1324397155 +12895,5630,Edward Norton,1312697519 +12895,5679,remake,1315647834 +12895,5690,anti-war,1327197047 +12895,5690,death,1327197051 +12895,5690,downbeat,1327197048 +12895,5690,grim,1327197052 +12895,5690,history,1327197054 +12895,5690,Miyazaki,1327197065 +12895,5690,orphans,1327197050 +12895,5690,SIBLING RELATIONSHIPS,1327197056 +12895,5690,Slow pacing,1327197134 +12895,5690,Studio Ghibli,1327197043 +12895,5690,tragedy,1327197059 +12895,5690,tragic,1327197063 +12895,5690,World War II,1327197057 +12895,5954,Edward Norton,1318297874 +12895,5971,anime,1323214471 +12895,5971,Cute,1323214473 +12895,5971,feel-good,1323214476 +12895,5971,Hayao Miyazaki,1323214463 +12895,5971,Japan,1323214469 +12895,5971,slow,1323214481 +12895,5971,Studio Ghibli,1323214464 +12895,5971,sweet,1323214466 +12895,5971,visually appealing,1323214465 +12895,6502,All of a sudden he's Batman,1312693334 +12895,6502,post-apocalyptic,1312693349 +12895,6731,George A. Romero,1312693382 +12895,6731,Gore Effects,1315513501 +12895,7022,based on a book,1315972805 +12895,7022,dystopia,1315972802 +12895,7022,satire,1315972804 +12895,7022,survival,1315972810 +12895,7022,weapons,1315972814 +12895,7060,Boring,1319556978 +12895,7060,Carl Anderson,1319556992 +12895,7060,religion,1319556973 +12895,7060,Rock Opera,1319556982 +12895,7143,colonialism,1315830155 +12895,7143,Japan,1315830152 +12895,7143,samurai,1315830159 +12895,7143,sword fight,1315830157 +12895,7254,alternate reality,1317518024 +12895,7254,Ashton Kutcher,1317518020 +12895,7254,Bittersweet,1317518017 +12895,7254,sci-fi,1317518029 +12895,7254,time travel,1317518026 +12895,7254,twist ending,1317518011 +12895,7347,imaginary friend,1315734063 +12895,7347,Johnny Depp,1315734072 +12895,7347,psychological,1315734080 +12895,7347,psychology,1315734083 +12895,7347,schizophrenia,1315734078 +12895,7347,split personality,1315734066 +12895,7347,Stephen King,1315734069 +12895,7360,Good remake,1312693220 +12895,7360,post-apocalyptic,1312693202 +12895,7360,Richard Cheese,1312693233 +12895,7360,zombies,1312693203 +12895,7657,Action,1361747387 +12895,7773,Ben Foster,1324925777 +12895,7773,high school,1324925745 +12895,7773,High school violence,1324925747 +12895,7773,intense,1324925748 +12895,8361,adventure,1322271888 +12895,8361,apocalypse,1322271890 +12895,8361,propaganda,1322271893 +12895,8376,Boring,1316321161 +12895,8376,overrated,1316321163 +12895,8376,slow,1316321165 +12895,8376,Stupid as Hell,1316321167 +12895,8528,Ben Stiller,1364684117 +12895,8528,comedy,1364684121 +12895,8528,Funny as hell,1364684126 +12895,8528,seen more than once,1364684124 +12895,8528,Vince Vaughn,1364684123 +12895,8641,Ben Stiller,1312699302 +12895,8641,Will Ferrell,1312699312 +12895,8690,aliens,1329625686 +12895,8690,Boring,1329625699 +12895,8690,Gay british dude,1329625691 +12895,8690,Nudity (Topless),1329626300 +12895,8690,time travel,1329625678 +12895,8690,Tralfamadore,1329625684 +12895,8690,World War II,1329625680 +12895,8807,Buddy movie,1321293273 +12895,8807,high brow stupidity,1321293270 +12895,8807,love,1321293302 +12895,8807,Neil Patrick Harris,1312699718 +12895,8807,Notable Nudity,1321293268 +12895,8807,Nudity (Topless),1321293266 +12895,8807,race issues,1321293316 +12895,8807,stoner comedy,1321293308 +12895,8807,Stoner Movie,1321293275 +12895,8807,stupid,1321293279 +12895,8814,Nostalgic Childhood,1312696349 +12895,8814,Seth Green,1312696339 +12895,8874,Boring,1312730302 +12895,8874,zombies,1312730309 +12895,8957,clever,1312699900 +12895,8957,surprise ending,1312699897 +12895,26554,alone in the world,1368228955 +12895,26554,apocalypse,1368228954 +12895,26554,Nudity (Topless),1368228952 +12895,26554,Weird movie,1368228960 +12895,27156,Final fight of Asuka Langley Soryu,1388042011 +12895,27156,Gainax,1429989671 +12895,27156,gruesome,1388042014 +12895,27156,Hideaki Anno,1429989673 +12895,27156,Nudity (Topless),1388042017 +12895,27156,psychology,1388042028 +12895,27904,visually unappealing,1312693830 +12895,27912,Documentary,1322676291 +12895,27912,Enlightening,1322676281 +12895,27912,Fox,1322676273 +12895,27912,journalism,1322676258 +12895,27912,liberal,1322676259 +12895,27912,politics,1322676265 +12895,27912,propaganda,1322676268 +12895,27912,Rupert Murdoch,1322676299 +12895,30820,could go farther,1317509832 +12895,30820,Disturbing and moving,1317509819 +12895,30820,Eve,1317509859 +12895,30820,Kevin Bacon,1317509828 +12895,30820,Kyra Sedgwick,1317509852 +12895,30820,mental health,1317509817 +12895,30820,Mos Def,1317509836 +12895,30820,paedophilia,1317509823 +12895,30820,sexuality,1317509816 +12895,33164,pointless,1316708942 +12895,33164,SEE PARIS DIE!,1316708940 +12895,33834,George A. Romero,1312693424 +12895,33834,John Leguizamo,1312693426 +12895,33834,post-apocalyptic,1312693428 +12895,33834,Romero,1312693431 +12895,33834,zombies,1312693433 +12895,34405,based on a TV show,1316321375 +12895,34405,black comedy,1316321363 +12895,34405,Chinese,1316321387 +12895,34405,dystopia,1316321360 +12895,34405,joss whedon,1316321371 +12895,34405,quirky,1316321361 +12895,34405,social commentary,1316321377 +12895,34405,space,1316321378 +12895,34405,witty,1316321379 +12895,36529,Africa,1320720399 +12895,36529,arms dealer,1320720892 +12895,36529,based on a true story,1320720949 +12895,36529,Bridget Moynahan,1320720438 +12895,36529,cold war,1320720381 +12895,36529,corruption,1320720397 +12895,36529,dark comedy,1320720383 +12895,36529,Ethan Hawke,1320720422 +12895,36529,Jared leto,1320720426 +12895,36529,Justice,1320720323 +12895,36529,Morality,1320720315 +12895,36529,Music,1320720632 +12895,36529,narrated,1320720379 +12895,36529,new york city,1320720906 +12895,36529,Nicolas Cage,1320720332 +12895,36529,Nudity (Topless - Brief),1320720452 +12895,36529,Nudity (Topless),1320720574 +12895,36529,organized crime,1320720915 +12895,36529,political,1320720386 +12895,36529,smuggling,1320720388 +12895,36529,violence,1320720391 +12895,36529,war,1320720393 +12895,37830,final fantasy,1315873828 +12895,38061,caper,1316656620 +12895,38061,clever,1316656619 +12895,38061,Robert Downey Jr,1316656615 +12895,38061,val kilmer,1316656614 +12895,39183,1970s,1320712397 +12895,39183,1980s,1320712400 +12895,39183,Boring,1320712343 +12895,39183,Constant sex scenes,1320712438 +12895,39183,controversial,1320712386 +12895,39183,emotional,1320712388 +12895,39183,Everything,1320712349 +12895,39183,Facial Hair,1320712473 +12895,39183,Heath Ledger,1320712403 +12895,39183,homosexuality,1320712382 +12895,39183,Jake Gyllenhaal,1320712416 +12895,39183,Love story,1320712364 +12895,39183,Making Out,1320712429 +12895,39183,melancholy,1320712367 +12895,39183,music,1320712369 +12895,39183,Nudity (Topless - Notable),1320712355 +12895,39183,Nudity (Topless),1320712360 +12895,39183,Oscar (Best Directing),1320712488 +12895,39183,Oscar (Best Music - Original Score),1320712482 +12895,39183,Oscar (Best Picture),1320712487 +12895,39183,scenic,1320712372 +12895,39183,sexuality,1320712378 +12895,39183,Snogging,1320712424 +12895,39183,Stupid,1320712509 +12895,39183,Texas,1320712457 +12895,39183,Wyoming,1320712463 +12895,39446,not as good as the first,1312699866 +12895,40819,bittersweet,1315972842 +12895,40819,Johnny Cash,1315972856 +12895,40819,true story,1315972838 +12895,40851,board game,1312696122 +12895,40851,magic board game,1312696131 +12895,40851,poor sequel to Jumanji,1312696126 +12895,42723,Asian chick suicide,1312699976 +12895,42723,Asian Chicks,1312699965 +12895,42723,Eli Roth,1312699985 +12895,42723,stupid stereotypes,1312699946 +12895,42723,violence pornography,1312699949 +12895,44004,Bradley Cooper,1322286597 +12895,44004,cheesy,1322286581 +12895,44004,chick flick,1322286580 +12895,44004,Funny,1322286592 +12895,44004,Homestuck,1322286601 +12895,44004,Justin Bartha,1322286672 +12895,44004,Matthew McConaughey,1322286576 +12895,44004,Nudity (Rear),1322286620 +12895,44004,Sarah Jessica Parker,1322286583 +12895,44191,comic book,1312700271 +12895,44191,Less subtle,1312700300 +12895,44191,Natalie Portman,1312700277 +12895,44191,philosophy,1312700273 +12895,44191,sci-fi,1312700276 +12895,44191,social commentary,1312700274 +12895,44397,gore,1315649037 +12895,44397,torture porn,1315649034 +12895,45728,Highly quotable,1312699252 +12895,45728,Kevin Smith,1312699234 +12895,45728,view askew,1312699248 +12895,46335,Japan,1313901900 +12895,46335,Tokyo,1313901910 +12895,47287,1950's Production,1327261327 +12895,47287,Bradford Dillman,1327261360 +12895,47287,Dean Stockwell,1327261390 +12895,47287,Monologue,1327261366 +12895,47287,Orson Welles,1327261305 +12895,47287,Setting: 1920's,1327261336 +12895,47287,Stilted Dialogue,1327261379 +12895,47810,Cage-Fu,1316318415 +12895,47810,Ending,1316318404 +12895,47810,Nicolas Cage,1316318392 +12895,47810,unintentional comedy,1316318388 +12895,48394,Boring,1319921023 +12895,48394,fairy tale,1319921047 +12895,48394,fantasy,1319921046 +12895,48394,great soundtrack,1319921076 +12895,48394,history,1319921051 +12895,48394,imagination,1319921048 +12895,48394,military,1319921056 +12895,48394,Slow Pacing,1319921031 +12895,48394,world war II,1319920817 +12895,48780,Christian Bale,1320807101 +12895,48780,David Bowie,1320807099 +12895,48780,twist ending,1320807105 +12895,50798,Didn't cycle mockery,1315521454 +12895,50798,not funny,1315521476 +12895,50798,Rap,1315521468 +12895,51255,action,1387269708 +12895,51255,british comedy,1387269713 +12895,51255,Simon Pegg,1387269724 +12895,51255,twists & turns,1387269719 +12895,51412,action,1321994650 +12895,51412,author:Philip K. Dick,1321994637 +12895,51412,Ending,1321994610 +12895,51412,jessica biel,1321994634 +12895,51412,Nicolas Cage,1321994619 +12895,51412,open ending,1321994640 +12895,51412,Philip K. Dick,1321994632 +12895,51412,plot twist,1321994623 +12895,51412,supernatural powers,1321994625 +12895,51412,time travel,1321994630 +12895,51412,time-lapse,1321994628 +12895,51662,action,1312700204 +12895,51662,Kicked into a huge fucking pit,1312700219 +12895,51937,Rape,1315649059 +12895,52462,Based on a TV show,1364372695 +12895,52462,Bruce Campbell,1364372691 +12895,52462,humorous,1364372688 +12895,53435,Didn't have asian chicks,1312700033 +12895,53435,Eli Roth,1312700011 +12895,53435,genital mutilation,1312700058 +12895,53468,Billy Connolly,1322277295 +12895,53468,Canadian,1322278793 +12895,53468,fascism,1322277303 +12895,53468,post-apocalyptic,1322277298 +12895,53468,satire,1322277301 +12895,53468,social commentary,1322277308 +12895,53953,Alternate ending,1325271916 +12895,53953,claustrophobic,1325271829 +12895,53953,John Cusack,1325271828 +12895,53953,psychological,1325271866 +12895,53953,Samuel L. Jackson,1325271889 +12895,53953,scary,1325271857 +12895,53953,Stephen King,1325271823 +12895,53953,supernatural,1325271855 +12895,54503,comedy,1316321108 +12895,54503,mclovin,1316321103 +12895,54785,Danny Trejo,1312693591 +12895,54785,remake,1312693571 +12895,54785,Rob Zombie,1312693567 +12895,54995,grindhouse,1312695909 +12895,54995,Gun for a leg,1312695923 +12895,54995,lesbian,1312695912 +12895,54995,Robert Rodriguez,1312695917 +12895,56757,19th century,1312693991 +12895,56757,Helena Bonham Carter,1312694072 +12895,56757,Musical,1312693988 +12895,56757,Tim Burton,1312693986 +12895,58293,bad for history-sense,1315706964 +12895,58293,Below R,1315706967 +12895,58293,disappointing,1315706960 +12895,58293,Roland Emmerich,1315706953 +12895,58332,"""found footage""",1312695701 +12895,58332,George A. Romero,1312695685 +12895,58332,social commentary,1312695671 +12895,58332,zombies,1312695683 +12895,58559,Not Mark Hamill,1312700401 +12895,59022,Neil Patrick Harris,1322784949 +12895,59022,Nudity (Full Frontal),1322784993 +12895,59022,Rob Corddry,1322785088 +12895,59022,Unrated,1322785015 +12895,59369,action,1312731247 +12895,59369,CIA,1312731245 +12895,59369,Liam Neeson,1312731243 +12895,59369,revenge,1315845242 +12895,59615,1950s,1312694901 +12895,59615,aliens,1312694898 +12895,59615,Harrison Ford,1312694871 +12895,59615,indiana jones,1312694873 +12895,60040,Below R,1315520086 +12895,60040,comic movie,1315520090 +12895,60040,Ed Norton,1315520082 +12895,60040,Edward Norton,1315520080 +12895,60040,Lou Ferigno,1315520100 +12895,60040,superhero,1315520092 +12895,60040,The Avengers,1315520094 +12895,60074,anti-hero,1315520048 +12895,60074,bad ending,1315520034 +12895,60074,derailed by twist,1315520036 +12895,60074,Jason Bateman,1315520041 +12895,60074,Super Hero Deconstruction,1315520057 +12895,60074,Will Smith,1315520043 +12895,60684,adapted from:comic,1312693015 +12895,60684,alternate reality,1312693022 +12895,60684,cold war,1312693026 +12895,60684,comic book,1312693020 +12895,60684,dystopia,1312693017 +12895,60684,sci-fi,1312693030 +12895,60684,social commentary,1312693034 +12895,60684,vigilantism,1312693032 +12895,61132,Ben Stiller,1364684017 +12895,61132,insanity,1364684033 +12895,61132,Jay Baruchel,1364684025 +12895,61132,Matthew McConaughey,1364684015 +12895,61132,Robert Downey Jr.,1364684019 +12895,61132,satire,1364684036 +12895,61132,Tom Cruise,1364684022 +12895,61394,Steven Seagal,1315698021 +12895,61394,Steven Seagal as Cock Puncher,1315698047 +12895,61394,uneven quality,1315698023 +12895,62336,2D animation,1312700681 +12895,62336,anime,1312700683 +12895,62336,Gainax,1429989639 +12895,62336,mecha,1429989654 +12895,62336,Not a movie,1312700687 +12895,62336,rock and roll,1429989644 +12895,62336,stylish,1429989640 +12895,62434,Bechdel Test:Fail,1312699655 +12895,62434,Kevin Smith,1312699679 +12895,62434,Star Wars,1312699685 +12895,65126,Anjelica Huston,1325313636 +12895,65126,author:Chuck Palahniuk,1325313600 +12895,65126,BDSM,1325313608 +12895,65126,Chuck Palahniuk,1325313574 +12895,65126,dark comedy,1325313606 +12895,65126,Kelly MacDonald,1325314890 +12895,65126,Palahnuik,1325313594 +12895,65126,Sam Rockwell,1325313590 +12895,65126,Sex Addict,1325313592 +12895,65601,Jensen Ackles,1315648982 +12895,65601,Stereoscopic 3-D,1315648978 +12895,65601,stupid,1315648985 +12895,65868,Anthony Head,1319138715 +12895,65868,gothic,1319138720 +12895,65868,Music is only good in context,1319138755 +12895,65868,musical,1319138724 +12895,65868,Paris Hilton,1319135142 +12895,65868,Paul Sorvino,1319138729 +12895,65868,sci-fi,1319138733 +12895,66509,Adam Sandler,1315697792 +12895,66509,long,1315697786 +12895,66509,Seth Rogen,1315697785 +12895,66934,good dialogue,1312693931 +12895,66934,Joss Whedon,1312693917 +12895,66934,musical,1312693924 +12895,66934,Sad ending,1312693906 +12895,66934,short,1312693922 +12895,67197,Aliens,1312687325 +12895,67197,creepy,1315697555 +12895,67197,creepy acting,1312687349 +12895,67197,Nicolas Cage,1312687317 +12895,67197,so bad it's good,1312687298 +12895,67197,unintentional comedy,1312687363 +12895,67799,Bad End,1317517681 +12895,67799,crappy sequel,1317517690 +12895,67799,Rachel Miner,1317517734 +12895,67799,Rap,1317517678 +12895,67799,Time travelling incest yandere,1317517537 +12895,67799,Twist ending,1317517964 +12895,67799,Yandere,1317517541 +12895,68073,1960s,1315935978 +12895,68073,British,1315935977 +12895,68073,Cliche villains,1315935986 +12895,68073,funny,1315935997 +12895,68073,Nick Frost,1315935991 +12895,68073,Philip Seymour Hoffman,1315935992 +12895,68073,pirate radio,1315935989 +12895,68073,retro,1315936003 +12895,68073,rock and roll,1315936000 +12895,68157,Eli Roth,1312700171 +12895,68157,The Basterds,1312700126 +12895,68157,The rest of the movie,1312700134 +12895,68157,World War II,1312700147 +12895,68554,agnosticism,1315697635 +12895,68554,Anti-matter,1315697670 +12895,68554,Ewan McGregor,1315697636 +12895,68554,Helicopter Explosion,1315697654 +12895,68659,Jason Mewes,1315649476 +12895,68659,Jay Baruchel,1315649480 +12895,68659,Kevin Smith,1315649474 +12895,68659,Kristen Bell,1315649484 +12895,68659,nerd,1315649467 +12895,68659,Seth Rogen,1315649488 +12895,68659,star wars,1315649469 +12895,68659,william shatner,1315649472 +12895,68941,Revenge,1315697478 +12895,68952,annoying characters,1314663558 +12895,68952,bad skeptic,1314663561 +12895,68952,Bechdel Test:Pass,1314663546 +12895,68952,cat killing,1314663579 +12895,68952,Killing kittens,1314663590 +12895,68952,Sam Raimi,1314663528 +12895,69275,Not in English,1312695773 +12895,69275,ridiculous,1312695756 +12895,69275,unfunny,1312695750 +12895,69640,1930s,1315596851 +12895,69640,boring,1315596861 +12895,69640,Dillinger,1315596867 +12895,69640,gangsters,1315596865 +12895,69640,Great Depression,1315596860 +12895,69640,monotonous,1315596854 +12895,69640,slow pace,1315596857 +12895,69784,funny,1315697946 +12895,69784,gay,1315697937 +12895,69784,Goes after the typical people (southern good ol' boys,1315697951 +12895,69784,homosexuality,1315697935 +12895,69784,mockumentary,1315697924 +12895,69784,Nudity (Full Frontal),1315697930 +12895,69784,Sacha Baron Cohen,1315697926 +12895,69784,satire,1315697942 +12895,69784,Stupid as Hell,1315697928 +12895,69951,Andrew Garfield,1319868675 +12895,69951,cgi,1319868683 +12895,69951,Colin Farrell,1319868731 +12895,69951,deal with the devil,1319868723 +12895,69951,Ending,1319868899 +12895,69951,fantasy,1319868725 +12895,69951,hanging,1319868713 +12895,69951,imagination,1319868711 +12895,69951,imaginative,1319868709 +12895,69951,Johnny Depp,1319868657 +12895,69951,Jude Law,1319868734 +12895,69951,Lily Cole,1319868928 +12895,69951,tom waits,1319868705 +12895,69951,Verne Troyer,1319868690 +12895,70533,action,1388041989 +12895,70533,amazing artwork,1388041969 +12895,70533,animation,1388041987 +12895,70533,Gainax,1429989535 +12895,70533,mecha,1388041972 +12895,70533,Mechs,1388041983 +12895,70533,remake,1388041974 +12895,70946,anti-vegetarian propaganda,1313901624 +12895,70946,campy,1313901629 +12895,70946,Oh My Goood!,1313901633 +12895,70946,Popcorn,1313901953 +12895,70946,vegetarians,1313901641 +12895,70946,We do not piss on hospitality,1313901971 +12895,71106,Anna Faris,1351976797 +12895,71106,Chris O'Dowd,1351976784 +12895,71106,english,1351976799 +12895,71106,friendship,1351976795 +12895,71106,funny,1351976793 +12895,71106,nerds,1351976787 +12895,71106,time travel,1351976786 +12895,71106,watch the credits,1351976810 +12895,71106,weird pacing,1351976814 +12895,71135,Ben Foster,1324925805 +12895,71135,Dennis Quaid,1315698330 +12895,71135,hybernation,1315698337 +12895,71135,mental illness,1315698371 +12895,71135,post-apocalyptic,1315698331 +12895,71135,sci-fi,1315698333 +12895,71135,space travel,1315698334 +12895,71156,Bechdel Test:Fail,1315706405 +12895,71156,Boston,1315706431 +12895,71156,comedy,1315706413 +12895,71156,Ewan McGregor,1315706408 +12895,71156,Jeff Bridges,1315706410 +12895,71156,PSYCHIC ABILITIES,1315706411 +12895,71530,alternate reality,1336915047 +12895,71530,bad ending,1336915059 +12895,71530,bad science,1336915062 +12895,71530,Bruce Willis,1336915049 +12895,71530,dystopia,1336915054 +12895,71530,sci-fi,1336915052 +12895,71530,technology,1336915055 +12895,71530,Ving Rhames,1336915082 +12895,71535,Bill Murray,1312693465 +12895,71535,dark comedy,1312693462 +12895,71535,post-apocalyptic,1312693467 +12895,71838,ending kinda ruined it,1312697037 +12895,71838,Gerard Butler,1312697035 +12895,71838,revenge,1312697055 +12895,72356,Funny,1316749442 +12895,72356,Pixar,1316749439 +12895,72356,short film,1316749447 +12895,72378,sci-fi,1315706458 +12895,72378,Special Effects,1315706460 +12895,72378,Woody Harrelson,1315706461 +12895,72405,iguana,1315706550 +12895,72405,Nicolas Cage,1315706546 +12895,72405,Stupid,1315706556 +12895,72489,boring,1312730594 +12895,72489,ninja,1312730607 +12895,72489,poor plot,1312730601 +12895,72601,silly,1349067747 +12895,72601,Stupid,1349067742 +12895,72601,Timelines,1349067752 +12895,72601,tnmt,1349067737 +12895,73017,England,1315519977 +12895,73017,Robert Downey Jr.,1315519969 +12895,73017,Sherlock Holmes,1315519974 +12895,73017,violent,1315519992 +12895,74458,psychological,1312697555 +12895,74677,activism,1316321685 +12895,74677,free to download,1316321676 +12895,74677,morality,1316321680 +12895,74677,political satire,1316321678 +12895,74685,Not Romero,1312693309 +12895,74685,zombies,1312693283 +12895,74754,cinematography,1312687241 +12895,74754,cult film,1312687085 +12895,74754,extended sex scene,1312687204 +12895,74754,flabby ass,1312687191 +12895,74754,Flabby man ass,1312687180 +12895,74754,guilty pleasure,1312687097 +12895,74754,melodramatic,1312687100 +12895,74754,quotable,1317520039 +12895,74754,so bad it's good,1312687074 +12895,74754,Straight Sex,1317520020 +12895,74754,terrible acting,1312687089 +12895,74754,Tommy Wiseau,1312687106 +12895,74754,unintentional comedy,1312687092 +12895,74754,unintentionally funny,1312687088 +12895,74754,you're tearing me apart lisa,1312687214 +12895,74851,too much violence,1315646123 +12895,75985,Sci Fi.,1312730351 +12895,75985,twist ending,1312730354 +12895,76210,mental illness,1312699747 +12895,76210,superhero,1312699750 +12895,77364,Based on a comic book,1315646045 +12895,77455,art,1324426016 +12895,77455,Banksy,1324425994 +12895,77455,betrayal,1324426008 +12895,77455,business,1324426006 +12895,77455,eccentric,1324426010 +12895,77455,funny,1324426019 +12895,77455,graffiti,1324426027 +12895,77455,sellout,1324426001 +12895,77455,Shepard Fairey,1324425999 +12895,77455,Thierry Guetta,1324425996 +12895,78088,buried alive,1315647997 +12895,78088,claustrophobic,1315647976 +12895,78088,false hope,1315647995 +12895,78088,Realistic ending,1315647989 +12895,78088,Ryan Reynolds,1315648001 +12895,78088,Survival Story,1315647978 +12895,78266,Adrien Brody,1315647544 +12895,78266,genetics,1315647550 +12895,78266,interspecies sex,1315647538 +12895,78266,monster,1315647554 +12895,78266,plot,1315647531 +12895,78266,rape,1315647533 +12895,78266,Sarah Polley,1315647563 +12895,78266,weak ending,1315647527 +12895,78469,adapted from:TV series,1312730543 +12895,78469,Liam Neeson,1312730529 +12895,78469,not only for fans of the original,1312730553 +12895,78469,unlimited bullets,1312730532 +12895,78499,animation,1322080000 +12895,78499,childhood,1322079981 +12895,78499,friendship,1322079993 +12895,78499,music,1322079991 +12895,78499,Pixar,1322079995 +12895,78499,sequel,1322079996 +12895,78499,Tim Allen,1322080008 +12895,78499,Tom Hanks,1322079987 +12895,78499,visually appealing,1322079983 +12895,78746,Claudio Fragasso being butthurt,1313901730 +12895,78746,Darren Ewing,1313901674 +12895,78746,Documentary,1313901691 +12895,78746,Troll 2,1313901702 +12895,79134,Adam Sandler,1315647624 +12895,79134,Chris Rock,1315647636 +12895,79134,feel-good,1315647626 +12895,79274,animation,1318789558 +12895,79274,Batman,1318789554 +12895,79274,DC,1318789573 +12895,79274,no Kevin Conroy,1318789560 +12895,79274,no Mark Hamill,1318789562 +12895,79274,sympathetic villain,1318789566 +12895,79695,bad direction,1312730571 +12895,79695,boring,1312730569 +12895,79695,Mickey Rourke,1312730576 +12895,80219,black comedy,1312693494 +12895,80219,Linsey Lohan,1312693539 +12895,80219,Nudity (Topless),1312693496 +12895,80463,adapted from:book,1315648041 +12895,80463,computers,1315648039 +12895,80463,dark comedy,1315648050 +12895,80463,David FIncher,1315648084 +12895,80463,Jesse Eisenberg,1315648065 +12895,80463,nerds,1315648048 +12895,80463,Oscar Nominee: Director,1315648055 +12895,80590,Michael Douglas,1315647941 +12895,80590,Shia LaBeouf,1315647939 +12895,80846,Security Guard,1315647803 +12895,80846,twist ending,1315647784 +12895,80846,Upside down toast,1315647809 +12895,81229,Bechdel Test:Fail,1315646095 +12895,81229,Morgan Freeman,1315646085 +12895,81535,mindfuck,1312699811 +12895,81535,Not a series ending,1312699827 +12895,81535,too many sequels,1312699806 +12895,81535,twist ending,1312699819 +12895,81537,Robert Downey Jr.,1312695143 +12895,81537,Zach Galifianakis,1312695142 +12895,81782,happy ending,1315646340 +12895,81788,jailbreak,1315646188 +12895,81788,procedural,1315646190 +12895,82459,cowboy,1312729942 +12895,82459,dark,1312729945 +12895,82459,Jeff Bridges,1312729930 +12895,82459,justice,1312729932 +12895,82459,Western,1312729938 +12895,82461,Daft Punk,1315846203 +12895,82461,Jeff Bridges,1315846190 +12895,82461,Lack of Tron,1315846228 +12895,82461,music,1315846195 +12895,83349,Bechdel Test:Fail,1315734483 +12895,83349,comic book,1315734470 +12895,83349,Jay Chou,1315734472 +12895,83349,not very funny,1315734478 +12895,83349,predictable,1315734481 +12895,84187,amazing artwork,1404675708 +12895,84187,fanservice,1429989435 +12895,84187,Gainax,1429989428 +12895,84187,slightly changed story from original,1404675710 +12895,84187,visually stunning,1404675712 +12895,84392,lawyers,1312696989 +12895,84392,Smart,1312696999 +12895,84395,Anthony Hopkins,1319587394 +12895,84395,Colin O'Donoghue,1319587382 +12895,84395,doubted faith,1319587363 +12895,84395,exorcism,1319587366 +12895,84395,medieval superstition,1319587355 +12895,84395,religious propaganda,1319587356 +12895,84395,storyline,1319587367 +12895,84395,suspenseful,1319587359 +12895,84395,writing,1319587362 +12895,84601,Liam Neeson,1312731321 +12895,84613,father-son relationship,1315734550 +12895,84613,Fusion 3-D,1315734579 +12895,84613,IMAX DMR 3-D,1315734583 +12895,84613,Stereoscopic 3-D,1315734577 +12895,84772,cgi,1316321467 +12895,84772,geeky,1312730410 +12895,84772,Nick Frost,1316321459 +12895,84772,Seth Rogen,1312730442 +12895,84772,Simon Pegg,1316321461 +12895,84942,exploitation,1312731455 +12895,84942,Giant Shotgun,1312731473 +12895,84942,Nicolas Cage,1312731432 +12895,84954,author:Philip K. Dick,1314273178 +12895,84954,Bechdel Test:Fail,1314273163 +12895,84954,Matrix,1314273192 +12895,84954,Philip K. Dick,1314273182 +12895,85016,murder mystery,1426519117 +12895,85016,urban legends,1426519119 +12895,85131,aliens,1315513023 +12895,85131,CGI,1315513025 +12895,85131,Michelle Rodriguez,1315513016 +12895,85131,sci-fi,1315513012 +12895,85131,shaky camera,1315513028 +12895,85179,Anime,1363506811 +12895,85179,computers,1363506800 +12895,85179,Japanese,1363506801 +12895,85179,virtual reality,1363506805 +12895,85401,black comedy,1369444965 +12895,85401,Ellen Page,1369444969 +12895,85401,Kevin Bacon,1369444980 +12895,85401,Liv Tyler,1369444979 +12895,85401,Nathan Fillion,1369445012 +12895,85401,Rainn Wilson,1369444977 +12895,85401,stylistic,1369444971 +12895,85401,The fact that Ellen Page died.,1369444994 +12895,85401,vigilante,1369444974 +12895,85401,violent,1369444976 +12895,85510,anime cliches,1315873688 +12895,85510,CGI,1315873729 +12895,85510,Cinematography,1315873691 +12895,85510,ending,1315873700 +12895,85510,soundtrack,1315873681 +12895,85510,Special Effects,1315873683 +12895,85510,stylized,1315873680 +12895,85510,Zack Snyder,1315873706 +12895,85736,Pixar,1317433476 +12895,85736,short,1317433478 +12895,85788,boring,1316322642 +12895,85796,B-movie,1312730642 +12895,85796,Psycho,1312730651 +12895,85796,Rutger Hauer,1312730685 +12895,86190,abandoned amusement park,1315512855 +12895,86190,Bechdel Test:Pass,1315512840 +12895,86190,Germany,1315512843 +12895,86190,strong female lead,1315512850 +12895,86190,Wonderland,1315512868 +12895,86332,adapted from:comic,1312687432 +12895,86332,comic book,1312687430 +12895,86332,Marvel,1312687435 +12895,86332,mythology,1312687425 +12895,86332,Natalie Portman,1369873264 +12895,86332,superhero,1312687427 +12895,86644,Boring,1312730502 +12895,86911,boring,1312731703 +12895,86911,Bradley Cooper,1312731728 +12895,86911,Ed Helms,1312731744 +12895,86911,Ken Jeong,1312731733 +12895,86911,not funny,1312731709 +12895,86911,unlikable characters,1312731701 +12895,86911,Zach Galifianakis,1312731682 +12895,87192,aliens,1316754929 +12895,87192,loud music,1316754916 +12895,87192,Nick Frost,1316754926 +12895,87192,Rap,1316754919 +12895,87192,Sword should have broke,1316754941 +12895,87232,adapted from:comic,1312692944 +12895,87232,Magneto,1312692939 +12895,87232,superhero,1312692949 +12895,87430,Badly made,1312731791 +12895,87430,Boring,1312731803 +12895,87430,CGI,1312731796 +12895,87430,comic book,1312731786 +12895,87869,black comedy,1312692884 +12895,87869,ending,1312692890 +12895,87869,jason bateman,1312692900 +12895,88140,cheesy,1369873342 +12895,88140,Chris Evans,1369873319 +12895,88140,comic book,1369873346 +12895,88140,Marvel,1369873293 +12895,88140,Natalie Dormer,1369873333 +12895,88140,Tommy Lee Jones,1369873295 +12895,88140,World War II,1369873311 +12895,88744,cgi,1363390936 +12895,88744,computer animation,1363390938 +12895,88744,The police had awful tactics,1363390970 +12895,88837,Historical References,1315647453 +12895,88879,Nudity (Rear - Brief),1322352512 +12895,88954,Buddy Movie,1321293372 +12895,88954,Claymation,1321293347 +12895,88954,Love,1321293377 +12895,88954,Neil Patrick Harris,1321293342 +12895,88954,Nudity (Topless - Notable),1321293410 +12895,88954,Stoner Comedy,1321293384 +12895,89074,Morgan Spurlock,1317393044 +12895,89275,Crispin Glover,1314719044 +12895,89275,Guy who looks like Shaggy,1314719032 +12895,89275,nonsensical,1314719039 +12895,89275,pothead,1314719021 +12895,89275,Scooby-Doo,1314719056 +12895,89275,terrible acting,1314719049 +12895,89275,unintentional comedy,1314719051 +12895,89277,Canadian,1314718968 +12895,89277,cinematography so bad it hurts,1314718962 +12895,89277,H.P. Lovecraft,1314718958 +12895,89277,Photoshop Fire,1314718990 +12895,89277,so bad it's good,1315513101 +12895,89277,terrible cinematography,1314718965 +12895,89281,Awful Cinematography,1314719288 +12895,89281,Awful Editing,1314719263 +12895,89281,Awful Sound,1314719297 +12895,89281,So bad it's hard to watch,1314719310 +12895,89281,Unintentially Funny,1314719321 +12895,89281,Wooden Rod,1322676373 +12895,89745,Captain America,1336266868 +12895,89745,Chris Evans,1336266904 +12895,89745,Chris Hemsworth,1336266978 +12895,89745,comic book,1336266882 +12895,89745,great humor,1336266871 +12895,89745,Hulk,1336266878 +12895,89745,Iron Man,1336266866 +12895,89745,joss whedon,1336266864 +12895,89745,Loki,1336266881 +12895,89745,Mark Ruffalo,1336266990 +12895,89745,one of the best comic book movies,1336266873 +12895,89745,Robert Downey Jr.,1336266867 +12895,89745,samuel jackson,1336266874 +12895,89745,Scarlett Johansson,1336266919 +12895,89745,superhero,1336266890 +12895,89745,superhero team,1336266888 +12895,89745,Thor,1336266876 +12895,89745,Tom Hiddleston,1336266950 +12895,89774,Boxing story,1316656777 +12895,89774,MMA,1316656767 +12895,90005,Breaks the rules of time travel,1317387282 +12895,90005,Stupid hero,1317387269 +12895,90005,Time Travel,1317387262 +12895,90007,bad movie,1424838283 +12895,90007,Bad Pacing,1321066562 +12895,90007,canadian,1424838283 +12895,90007,Ghosts,1317406368 +12895,90007,Slow,1317406374 +12895,90007,timetravel,1424838283 +12895,90405,amazing premise,1321066411 +12895,90405,corruption,1321066407 +12895,90405,dystopia,1321066414 +12895,90405,justice,1321066391 +12895,90405,sci-fi,1321066423 +12895,90405,simplistic,1321066399 +12895,90405,Trope Heavy,1321066437 +12895,90746,animation,1331146560 +12895,90746,Nick Frost,1331146551 +12895,90746,Simon Pegg,1331146546 +12895,90746,Steven Spielberg,1331146554 +12895,90746,sword fight,1331146555 +12895,90870,Drugs,1320803131 +12895,90870,Liana Liberato,1320803115 +12895,90870,Nicolas Cage,1320803103 +12895,90870,Nicole Kidman,1320803125 +12895,91273,Boring,1322296539 +12895,91273,Emily Kaiho,1322296569 +12895,91273,Fantasy,1322296547 +12895,91273,Gackt,1322296576 +12895,91273,Josh Hartnett,1322296584 +12895,91273,Not enough action,1322296544 +12895,91273,Ron Perlman,1322296596 +12895,91273,Stylised,1322296555 +12895,91500,Happy ending,1333164849 +12895,91500,intense,1333207004 +12895,91500,Jennifer Lawrence,1333207001 +12895,91500,Josh Hutcherson,1333207047 +12895,91500,Lenny Kravitz,1333207105 +12895,91500,Shaky camera,1333164835 +12895,91500,social commentary,1333164814 +12895,91500,thriller,1333207008 +12895,91500,Woody Harrelson,1333207068 +12895,91529,Bane's voice,1342826742 +12895,91529,Batman,1342826747 +12895,91529,Batman voice,1342826889 +12895,91529,Christopher Nolan,1342826744 +12895,91529,Gary Oldman,1342826759 +12895,91535,Action,1345457184 +12895,91535,Edward Norton,1345457166 +12895,91535,Jeremy Renner,1345457161 +12895,91535,Rachel Weisz,1345457175 +12895,91535,Shaky cam,1345457199 +12895,91542,Bromance,1325016514 +12895,91542,great cinematography,1325016517 +12895,91542,Guy Ritchie,1325016524 +12895,91630,Brad bird,1326415246 +12895,91630,Drama,1326415221 +12895,91630,Romance,1326415215 +12895,91630,Simon pegg,1326415231 +12895,91630,Tom cruise,1326415205 +12895,91976,Liam Neeson,1328318909 +12895,92214,Adam Baldwin,1326006574 +12895,92214,Multiple Parts,1326006566 +12895,92214,Rutger Hauer,1326006569 +12895,92214,slow pacing,1326006554 +12895,92214,way too long,1326006557 +12895,92420,clever,1348064958 +12895,92420,coming of age,1348064960 +12895,92420,found footage,1348064951 +12895,92420,predictable ending,1348064956 +12895,92420,sci-fi,1348064949 +12895,92420,shaky footage,1348064954 +12895,92420,supernatural powers,1348064945 +12895,92420,teenage angst,1348064946 +12895,92420,telekinesis,1348064949 +12895,92938,3D,1329525749 +12895,92938,Action,1329525686 +12895,92938,Goofy,1329525695 +12895,92938,Idris Elba,1329525703 +12895,92938,Nic Cage,1329525689 +12895,93297,Acting,1331466989 +12895,93297,Action,1331466985 +12895,93363,Action,1331939269 +12895,93363,author:Edgar Rice Burroughs,1331939260 +12895,93363,Mars,1331939264 +12895,93510,Brie Larson,1334423588 +12895,93510,Channing Tatum,1334423550 +12895,93510,Chris Miller,1334423562 +12895,93510,Dave Franco,1334423560 +12895,93510,drugs,1334423566 +12895,93510,high school,1334423554 +12895,93510,Ice Cube,1334423547 +12895,93510,Johnny Depp,1334423539 +12895,93510,Jonah Hill,1334423526 +12895,93510,meta,1334423571 +12895,93510,undercover cops,1334423545 +12895,93840,ancient gods,1334968619 +12895,93840,Chris Helmsworth,1334968782 +12895,93840,clever,1334968623 +12895,93840,Drew Goddard,1334968802 +12895,93840,Fran Kranz,1334968658 +12895,93840,funny,1334968633 +12895,93840,joss whedon,1334968620 +12895,93840,Kristen Connelly,1334968770 +12895,93840,meta,1334968622 +12895,93840,monsters,1334968631 +12895,93840,original plot,1334968629 +12895,93982,John Cusack,1335575907 +12895,93982,Luke Evans,1335575904 +12895,94478,Bella Heathcote,1336843272 +12895,94478,Eva Green,1336843326 +12895,94478,Everything else,1336843279 +12895,94478,Helena Bonham Carter,1336843264 +12895,94478,Johnny Depp,1336843290 +12895,94478,The plot,1336843320 +12895,94677,Anna Faris,1337991135 +12895,94677,goofy,1337991058 +12895,94677,Jason Mantzoukas,1337991196 +12895,94677,sacha baron cohen,1337991055 +12895,94677,satire,1337991060 +12895,94864,aliens,1339204208 +12895,94864,Casting,1339204197 +12895,94864,Charlize Theron,1339204224 +12895,94864,Good ending,1339204174 +12895,94864,Idris Elba,1339204166 +12895,94864,Logan Marshall-Green,1339204281 +12895,94864,Michael Fassbender,1339204160 +12895,94864,Noomi Rapace,1339204184 +12895,94864,prequel,1339204204 +12895,94864,scifi,1339204183 +12895,95167,No Marriage at the End,1342488173 +12895,95207,Benjamin Walker,1340413153 +12895,95207,Civil War,1340413203 +12895,95207,Rufus Sewell,1340414102 +12895,95207,Semi-historical,1340413191 +12895,95207,Speeches,1340413180 +12895,95207,The action,1340413163 +12895,95207,vampires,1340413208 +12895,95309,Keira Knightley,1341206769 +12895,95309,Rob Corddry,1341206789 +12895,95309,Steve Carell,1341206763 +12895,95441,Comedy,1342141733 +12895,95441,Mark Wahlberg,1342141721 +12895,95441,Mila Kunis,1342141726 +12895,95510,Andrew Garfield,1341776816 +12895,95510,Emma Stone,1341776818 +12895,95510,Martin Sheen,1341776819 +12895,95510,Spider-Man,1341776820 +12895,95875,author:Philip K. Dick,1344046525 +12895,95875,Colin Farrell,1344046539 +12895,95875,Cyberpunk,1344046583 +12895,95875,Jessica Biel,1344046548 +12895,95875,John Cho,1344046555 +12895,95875,memory,1344828802 +12895,95875,remake,1344828800 +12895,95875,Sci-fi,1344828807 +12895,96417,Happy ending,1347844478 +12895,96417,Joseph Gordon-Levitt,1347844488 +12895,96417,police corruption,1347844472 +12895,96432,Boring,1346459812 +12895,96432,Great Depression,1346459818 +12895,96432,Shia LaBeouf,1346459798 +12895,96610,Joseph Gordon-Levitt,1348879474 +12895,96610,time travel,1348879459 +12895,96737,Action,1348349100 +12895,96737,based on a comic,1348349156 +12895,96737,Dystopia,1348349104 +12895,96737,Karl Urban,1348349095 +12895,96737,Lena Headey,1348349219 +12895,96737,Olivia Thirldy,1348349147 +12895,96861,Liam Neeson,1349480992 +12895,96861,Maggie Grace,1349481031 +12895,96861,Olivier Megaton,1349481004 +12895,96861,Revenge,1349481009 +12895,97304,1980's,1350089469 +12895,97304,Ben Affleck,1350089417 +12895,97304,Bryan Cranston,1350089437 +12895,97304,Iran,1350089462 +12895,97304,Middle East,1350089458 +12895,97304,True story,1350089421 +12895,97785,Adelaide Clemens,1351352927 +12895,97785,based on a video game,1351352915 +12895,97785,Stilted Dialogue,1351352953 +12895,97950,Action,1352912711 +12895,97950,Asian ladies,1352912736 +12895,97950,kung fu,1352912705 +12895,97950,Lucy Liu,1352912722 +12895,97950,RZA,1352912707 +12895,98239,Chris Hemsworth,1353980101 +12895,98239,Josh Hutcherson,1353980111 +12895,98239,Josh Peck,1353980116 +12895,98239,Kenneth Choi,1353980333 +12895,98239,Will Yun Lee,1353980323 +12895,98809,adventure,1355630313 +12895,98809,big budget,1355630319 +12895,98809,CGI,1355630324 +12895,98809,Ian McKellan,1355630338 +12895,98809,Martin Freeman,1355630332 +12895,98809,orcs,1355630317 +12895,99101,based on a manga,1426513575 +12895,99101,Hayato Ichihara,1356037093 +12895,99101,high school,1426513575 +12895,99101,Introspection,1356037065 +12895,99101,japanese,1426513575 +12895,99101,Mood Whiplash,1356037076 +12895,99112,Action,1356475920 +12895,99112,Good Ending,1356475925 +12895,99112,Justice,1356475932 +12895,99112,Rosamund Pike,1356475915 +12895,99112,Tom Cruise,1356475903 +12895,99114,Christoph Waltz,1356743103 +12895,99114,Funny,1356743118 +12895,99114,Jamie Foxx,1356743116 +12895,99114,Jonah Hill,1356743135 +12895,99114,Leonardo DiCaprio,1356743101 +12895,99114,Quentin Tarantino,1356743114 +12895,99114,Revenge,1356743144 +12895,99114,Samuel L. Jackson,1356743105 +12895,99114,Slavery,1356743107 +12895,99114,Spaghetti Western,1356743109 +12895,99114,violence,1356743111 +12895,99114,western,1356743113 +12895,99149,Anne Hathaway,1356679998 +12895,99149,Hugh Jackman,1356679989 +12895,99149,Musical,1356680002 +12895,99149,Russell Crowe,1356679988 +12895,99149,Victor Hugo,1356679995 +12895,100745,Freedom of Information,1367135375 +12895,100745,internet,1367135383 +12895,100745,Piracy,1367135369 +12895,100745,The Pirate Bay,1367135391 +12895,102125,Ben Kingsley,1368899161 +12895,102125,Don Cheadle,1368899188 +12895,102125,Jon Favreau,1368899209 +12895,102125,red herring,1368899185 +12895,102125,Robert Downey Jr.,1368899159 +12895,102125,twists,1368899174 +12895,102445,Benedict Cumberbatch,1369889201 +12895,102445,J.J. Abrams,1369889204 +12895,102445,predictable,1369889208 +12895,102445,Star Trek,1369889210 +12895,102903,Dave Franco,1372716024 +12895,102903,Isla FIsher,1372716032 +12895,102903,Jesse Eisenberg,1372715885 +12895,102903,Mark Ruffalo,1372715901 +12895,102903,Mélanie Laurent,1372715994 +12895,102903,Michael Caine,1372715923 +12895,102903,Morgan Freeman,1372715930 +12895,102903,Woody Harrelson,1372715908 +12895,103228,ending,1373721353 +12895,103228,giant robots,1373721319 +12895,103228,Guillermo del Toro,1373721317 +12895,103228,Idris Elba,1373721331 +12895,103228,Rinko Kikuchi,1373721339 +12895,103228,Robot design,1373721369 +12895,103253,Alice Braga,1377215366 +12895,103253,great cast,1377215303 +12895,103253,Inequality,1377215305 +12895,103253,Matt Damon,1377215330 +12895,103253,social commentary,1377215311 +12895,103253,visually stunning,1377215309 +12895,103341,Edgar Wright,1377912152 +12895,103341,good cast,1377912158 +12895,103341,Martin Freeman,1377912163 +12895,103341,Nick Frost,1377912151 +12895,103341,pub crawl,1377912157 +12895,104241,Aaron Taylor-Johnson,1377180658 +12895,104241,Chloe Moretz,1377180641 +12895,104241,Jim Carrey,1377180608 +12895,104241,John Leguizamo,1377180676 +12895,104241,superhero,1377151693 +12895,104243,Garbage,1378599726 +12895,104243,Karl Urban,1378599754 +12895,104243,Karl Urban needs to pick better projects,1378599785 +12895,104243,Sexist,1378599721 +12895,104243,Vin Diesel,1378599740 +12895,104879,acting,1379965105 +12895,104879,bad ending,1379965086 +12895,104879,Hugh Jackman,1379965087 +12895,104879,Jake Gyllenhaal,1379965098 +12895,104879,morality,1379965104 +12895,106072,Chris Hemsworth,1384839214 +12895,106072,Idris Elba,1384839213 +12895,106072,Marvel Cinematic Universe,1384839208 +12895,106072,Tom Hiddleston,1384839209 +12895,106491,Keanu Reeves,1388100396 +12895,106491,Mediocre,1388100400 +12895,106873,beautiful animation,1405057005 +12895,106873,epic battles,1405057003 +12895,106873,Gainax,1429989550 +12895,106873,Hideaki Anno,1405057007 +12895,106873,superior sequel,1405057004 +12895,106916,Bradley Cooper,1387762932 +12895,106916,Christian Bale,1387762943 +12895,106916,David O. Russell,1387762913 +12895,106916,Jennifer Lawrence,1387762922 +12895,106916,Jeremy Renner,1387762910 +12895,106916,Louis C.K.,1387762952 +12895,106916,politics,1387762917 +12895,106920,joaquin phoenix,1389772871 +12895,106920,off-putting scene,1389772867 +12895,106920,Scarlett Johansson,1389772873 +12895,106920,Spike Jonze,1389772855 +12895,106920,transhumanism,1389772861 +12895,107304,Anime,1388042075 +12895,107304,Badass,1388042080 +12895,107304,Gainax,1429989456 +12895,107304,Hiroyuki Imaishi,1388042066 +12895,107304,masculinity,1405901707 +12895,107304,Mecha,1388042062 +12895,107306,Badass,1388042095 +12895,107306,Gainax,1429989392 +12895,107306,Hiroyuki Imaishi,1388042085 +12895,107306,masculinity,1405901712 +12895,107306,Mecha,1388042088 +12895,107306,Space,1388042092 +12895,109578,Liam Neeson,1393716585 +12895,110102,Marvel Cinematic Universe,1400918282 +12895,111360,Luc Besson,1406679697 +12895,111360,Morgan Freeman,1406679712 +12895,111360,Scarlett Johansson,1406679706 +12895,111362,Bryan Singer,1404675673 +12895,111362,Hugh Jackman,1404675671 +12895,111362,Michael Fassbender,1404675663 +12895,111759,based on a novel,1405901562 +12895,111759,Emily Blunt,1405901558 +12895,111759,time loop,1405901556 +12895,111759,time travel,1405901555 +12895,111759,Tom Cruise,1405901557 +12895,112171,Denzel Washington,1413092475 +12895,112334,Justice,1404679938 +12895,112556,Ben Affleck,1414284290 +12895,112556,Carrie Coon,1414284329 +12895,112556,David Fincher,1414284291 +12895,112556,mindfuck,1414284288 +12895,112556,Psychopathy,1414284286 +12895,112556,Rosamund Pike,1414284293 +12895,112623,action,1405901588 +12895,112623,Andy Serkis,1405901582 +12895,112623,CGI,1405901586 +12895,112807,Gainax,1429989518 +12895,112807,Hideaki Anno,1405925793 +12895,112809,anime,1429989375 +12895,112809,Gainax,1429989373 +12895,112809,Mecha,1429989356 +12895,112809,Sci-Fi,1429989374 +12895,112852,Chris Pratt,1407038293 +12895,112852,Dave Bautista,1407038324 +12895,112852,great soundtrack,1407038298 +12895,112852,Marvel Cinematic Universe,1407038294 +12895,112852,Vin Diesel,1407038315 +12895,114662,War,1424838302 +12895,116823,Inspirational Speeches,1416705376 +12895,116887,Bible Story,1418808428 +12895,116887,Christian Bale,1418808411 +12895,117529,Chris Pratt,1434760615 +12895,117529,dinosaurs,1434760618 +12895,117529,franchise,1434760623 +12895,117529,Irrfan Khan,1434760677 +12895,120635,action,1422665762 +12895,120635,Good guys win,1422665774 +12895,120783,Everything that wasn't Ewan McGregor,1447953889 +12895,122892,Marvel,1430711599 +12895,122892,superhero,1430711602 +12895,122900,heist,1438906313 +12895,122900,Marvel,1438906315 +12895,122900,Michael Douglas,1438906328 +12895,130634,"Dwayne ""The Rock"" Johnson",1429924400 +12895,130634,happy ending,1429924402 +12895,130634,naive,1429924410 +12895,130634,Paul Walker,1429924383 +12895,130634,revenge,1429924411 +12896,81834,dark,1446006901 +12905,260,drama,1430644337 +12905,260,sci-fi,1430644332 +12921,296,Great movie,1137162736 +12921,318,genius,1194017779 +12921,380,Funny as hell,1194017656 +12921,380,schwarzenegger,1194017654 +12921,551,cult film,1194017825 +12921,589,schwarzenegger,1194017674 +12921,589,Scifi masterpiece,1194017696 +12921,627,Boring,1194016645 +12921,745,Aardman studios,1194017638 +12921,968,horror,1194018196 +12921,1136,british comedy,1194018227 +12921,1136,very funny,1194018229 +12921,1148,Aardman studios,1194017632 +12921,1148,claymation,1293393774 +12921,1148,comedy,1293393777 +12921,1201,must see,1194017916 +12921,1214,Scifi masterpiece,1194018521 +12921,1241,Best gore/horror movie ever,1137165153 +12921,1241,must see!,1137165153 +12921,1241,So funny,1137165153 +12921,1265,Bill Murray,1293393809 +12921,1485,classic comedy,1194018291 +12921,1676,satire,1194018570 +12921,1779,sci-fi,1194018154 +12921,2174,cult film,1194018432 +12921,2291,Depp & Burton,1194017965 +12921,2448,Makes you ill,1137165523 +12921,2662,Good effects,1137163162 +12921,2770,So funny,1194018844 +12921,2959,psychology,1194017939 +12921,2985,Good action,1137166413 +12921,2985,Nice effects,1137166413 +12921,3081,Depp & Burton,1194017765 +12921,3621,100 Essential Female Performances,1293393111 +12921,3676,disturbing,1194018780 +12921,3676,Insane,1137590501 +12921,3835,awful movie,1137166116 +12921,3946,nothing special,1137165817 +12921,4014,colourful,1194018056 +12921,4056,heartbreaking,1218912346 +12921,4056,Obsession,1218912351 +12921,4166,reality TV,1194018169 +12921,4993,must see,1194261083 +12921,5004,must see!,1137164406 +12921,5004,So funny,1137164396 +12921,5046,Good ending,1137164458 +12921,5046,nothing special,1137164458 +12921,5047,So funny,1137166138 +12921,5313,The Rock not rocking,1137165192 +12921,5418,Matt Damon,1194016566 +12921,5418,realistic action,1194016574 +12921,5479,submarine,1217078590 +12921,5541,So funny,1137165075 +12921,5574,Good action,1137165471 +12921,5956,Martin Scorsese,1194017931 +12921,6264,awful movie,1137165874 +12921,6537,perfect movie to watch when having hangover,1194018556 +12921,6645,sci-fi,1194018133 +12921,6664,A Legend,1137166038 +12921,6664,Good action,1137166038 +12921,6664,must see!,1137166038 +12921,6664,So funny,1137166038 +12921,6664,tense,1194018024 +12921,6711,Bill Murray is the comedy king in this great movie,1137163416 +12921,7225,bodybuilding,1194018639 +12921,7318,must see!,1137165033 +12921,7371,Just amazing movie,1137163510 +12921,7371,must see!,1137163510 +12921,8526,awful movie,1137164807 +12921,8604,Nice driving,1137164975 +12921,8665,seen more than once,1194016596 +12921,8950,must see!,1137165975 +12921,26258,disturbing,1194018538 +12921,26555,So funny,1137164747 +12921,26776,Miyazaki,1194018653 +12921,26865,Amazing kung fu,1137523118 +12921,26914,nuclear bomb,1293390949 +12921,27801,Best fighting and stunts ever,1137164548 +12921,27873,Every fans must see,1137164838 +12921,31221,awful movie,1137164481 +12921,31221,Nice effects,1137164481 +12921,31424,Worst movie ever!,1198480822 +12921,31658,Just amazing movie,1137164915 +12921,31658,must see!,1137164915 +12921,32587,Action thriller,1194017774 +12921,33660,Nice drama,1137162817 +12921,33660,not as good as Beautiful Mind,1137162817 +12921,33679,Shooting and shooting,1137163271 +12921,34048,As good as the old,1137165352 +12921,34072,antarctica,1247905002 +12921,34072,documentary,1247904988 +12921,34150,nothing special,1137163212 +12921,39052,So funny,1137166371 +12921,49932,David Lynch,1194018701 +12921,53000,not as good as the first,1194018881 +12921,55052,imagination,1219691244 +12921,59731,American culture,1293391035 +12924,67923,Ridiculous,1241553115 +12946,4993,adventure,1311750716 +12946,4993,based on a book,1311750769 +12946,4993,fantasy,1311750691 +12946,4993,magic,1311750694 +12946,4993,Oscar (Best Cinematography),1311750728 +12946,4993,Oscar (Best Effects - Visual Effects),1311750756 +12946,4993,wizards,1311750761 +12950,364,animated,1160937712 +12950,364,Disney,1160937712 +12950,364,hippy,1160937712 +12950,2710,found footage,1407291066 +12950,2959,anarchy,1160937769 +12950,2959,testosterone,1160937769 +12950,2959,violence,1160937769 +12950,3435,dialogue,1406567108 +12950,3435,writing,1406567105 +12950,3949,addiction,1160937652 +12950,3949,sad,1160937652 +12950,3949,unredeemed,1160937652 +12950,4848,David Lynch,1160937672 +12950,4848,mystery,1160937672 +12950,4848,surreal,1160937672 +12950,4878,religious oppression,1160937819 +12950,4878,surreal,1160937819 +12950,4878,teenage angst,1164673910 +12950,6214,rape,1411965257 +12950,7158,American dream,1160937743 +12950,7158,Sad,1160937743 +12950,7158,shades of gray,1160937743 +12950,7361,dream,1160937795 +12950,7361,love overcomes all,1160937795 +12950,7361,surreal,1160937795 +12950,25750,special effects,1406777356 +12950,32587,comic book adaptation,1160937610 +12950,32587,stylistic,1160937610 +12950,32587,violent,1160937610 +12950,34292,dystopia,1445738446 +12950,59369,racism,1444767699 +12950,69951,last minute re-write,1419833430 +12950,69951,tom waits,1419833411 +12950,90522,Rowan Atkinson,1448248366 +12950,98491,animation,1406581952 +12950,98491,romance,1406581921 +12950,98491,short film,1406581918 +12950,105211,James Gandolfini,1406896123 +12950,105211,middle-aged protagonist,1406896103 +12950,106072,watch the credits,1410565979 +12950,113048,short film,1406777088 +12950,113048,silent film,1406777088 +12950,113048,slapstick,1406777149 +12950,139811,Colombia,1445353668 +12971,1240,sci-fi,1235512736 +13003,364,animation,1448854744 +13003,364,Disney,1448854751 +13003,364,soundtrack,1448854751 +13003,2762,enigmatic,1448854735 +13003,2762,excellent script,1448854734 +13003,4310,History,1448854867 +13003,4310,War,1448854865 +13003,4310,World War II,1448854863 +13003,45722,Adventure,1448854877 +13003,45722,Johnny Depp,1448854874 +13007,260,fantasy,1437534635 +13007,260,space adventure,1437534584 +13016,8950,Christian Bale,1305839145 +13016,8950,creepy,1305839163 +13016,8950,Nudity (Topless - Notable),1305839150 +13016,8950,twist ending,1305839134 +13016,74458,twist ending,1305839050 +13025,3147,john coffee,1443187365 +13025,3147,smart mouse,1443187374 +13025,3147,tom hanks,1443187343 +13025,6377,animation,1443187412 +13025,6377,kids,1443187414 +13025,6377,memory lack,1443187404 +13025,6377,pixar,1443187393 +13025,7361,happpiness,1443187292 +13025,7361,jim carey,1443187306 +13025,7361,kate winslet,1443187316 +13025,48780,magic,1443187527 +13025,48780,Nicola Tesla,1443187563 +13025,74458,freak,1443187605 +13025,74458,island,1443187600 +13025,74458,Leonardo DiCaprio,1443187597 +13025,79132,dream,1443187457 +13025,79132,Leonardo DiCaprio,1443187479 +13025,99114,black,1443187659 +13025,99114,Leonardo DiCaprio,1443187662 +13025,99114,musics,1443187670 +13025,99114,Quentin Tarantino,1443187675 +13053,1876,apocalypse,1236306423 +13053,1884,Hunter S. Thompson,1236391314 +13053,3980,racism,1236302533 +13053,4020,psychic character,1236302438 +13053,5445,Philip K. Dick,1236306160 +13104,4886,good cartoon children,1168439213 +13104,7378,good,1168439400 +13106,68358,plot,1243293900 +13106,68358,Simon Pegg,1243293890 +13135,260,70s,1441753357 +13135,260,epic adventure,1441753373 +13135,260,good vs evil,1441753361 +13135,260,sci-fi,1441753345 +13154,71535,bill murray,1404369664 +13154,71535,comedy,1404369701 +13154,71535,emma stone,1404369695 +13154,89745,action,1404369625 +13154,89745,marvel,1404369622 +13154,89745,sci-fi,1404369627 +13154,89864,comedy,1404369505 +13154,89864,friendship,1404369511 +13154,89864,humor,1404369507 +13154,89864,Joseph Gordon-Levitt,1404369502 +13154,89864,love,1404369513 +13154,89864,Seth Rogen,1404369516 +13154,96610,Bruce Willis,1404369532 +13154,96610,emily blunt,1404369550 +13154,96610,future,1404369567 +13154,96610,sci-fi,1404369561 +13154,96610,scifi,1404369558 +13154,96610,visually appealing,1404369536 +13154,104841,science,1404369643 +13154,104841,space,1404369648 +13154,106918,Ben Stiller,1404369086 +13154,106918,Iceland,1404369093 +13154,106918,inspirational,1404369090 +13154,106918,photography,1404369098 +13154,106918,scenic,1404369101 +13154,106918,surreal,1404369084 +13154,106918,visually appealing,1404369105 +13154,106918,workplace,1404369107 +13154,110102,Captain America,1404368997 +13154,110102,Chris Evans,1404368994 +13154,110102,comic book,1404369002 +13154,110102,Scarlett Johansson,1404368989 +13154,110102,superhero,1404368991 +13154,111362,Hugh Jackman,1404369047 +13154,111362,Ian McKellen,1404369033 +13154,111362,James McAvoy,1404369031 +13154,111362,Jennifer Lawrence,1404369028 +13154,111362,Patrick Stewart,1404369024 +13154,111362,superhero,1404369026 +13154,111759,action,1404305848 +13154,111759,aliens,1404305873 +13154,111759,comic book,1404305869 +13154,111759,Emily Blunt,1404305861 +13154,111759,ending,1404305865 +13154,111759,future,1404305852 +13154,111759,original plot,1404305876 +13154,111759,sci-fi,1404305855 +13154,111759,time loop,1404305856 +13154,111759,time travel,1404305859 +13154,111759,Tom Cruise,1404305882 +13154,111759,war,1404305879 +13179,1,fantasy,1258698588 +13179,72378,thriller,1258698781 +13199,88163,comedy,1378504479 +13204,89753,confusion,1326127235 +13213,364,animation,1400988892 +13213,595,animation,1400988928 +13213,595,Disney,1400988934 +13213,595,romance,1400988942 +13242,59725,shopping,1246039113 +13242,67788,shopping,1246039056 +13254,2746,Alan Menken,1445323742 +13254,127088,Matthew Gray Gubler,1445321039 +13300,260,aircraft,1444916359 +13300,260,space,1444916346 +13307,215,Favorite,1175574140 +13307,215,must see,1175574155 +13307,7361,my favourite,1175573698 +13307,8638,A MUST SEE,1175574129 +13307,8638,Favorite,1175574166 +13307,8638,romantic,1175574268 +13307,44195,I laughed at its satire,1175576566 +13308,3949,everything,1316921037 +13308,8874,British,1316973949 +13308,8874,conclusion,1316973976 +13308,8874,Nick Frost,1316973956 +13308,8874,Simon Pegg,1316973940 +13308,27904,Keanu Reeves,1316914855 +13308,27904,plot,1316914852 +13320,501,intellectual,1312051022 +13320,501,Mike Leigh,1312051025 +13320,501,social commentary,1312051031 +13320,1095,Lesson on acting for all,1312051519 +13325,260,Science Fiction,1433630738 +13325,260,space epic,1433630723 +13340,26082,edo,1161634679 +13340,26082,Samurai,1161634462 +13340,27790,Ethic,1137769233 +13340,44555,movielens top pick,1174416616 +13340,44555,spying,1174416629 +13340,48780,magic,1176281783 +13340,49530,violent,1174692545 +13340,50804,boring,1175890737 +13343,595,cellos,1145411869 +13343,1747,fun,1145411817 +13360,97304,CIA Agent,1358073697 +13360,97304,suspenseful,1358073730 +13360,103525,action,1434565427 +13360,103525,japan,1434565427 +13360,103525,love,1434565427 +13360,109740,stand-up comedy,1416679436 +13360,109740,sweet,1416679426 +13360,117576,post-apocalyptic,1435406010 +13360,117576,sci-fi,1435406010 +13360,117576,woman,1435406010 +13385,133357,cops,1448760234 +13385,133357,corrupt,1448760241 +13385,133357,corruption,1448760246 +13385,133357,police,1448760239 +13398,7387,bad ending,1260716831 +13398,7387,funny,1260716837 +13398,7387,humour,1260716837 +13398,74573,soundtrack,1319907836 +13404,22,thriller,1368637052 +13404,31,inspirational,1368636766 +13404,94,Natalie Portman,1307230188 +13404,111,mental illness,1368636820 +13404,225,Demi Moore,1367421791 +13404,225,Michael Douglas,1367421807 +13404,296,dark humor,1426805776 +13404,296,fragmented,1426805776 +13404,296,violence,1426805776 +13404,474,tense,1368637037 +13404,519,franchise,1368636732 +13404,913,black and white,1368636537 +13404,922,black and white,1368636537 +13404,991,Alan Rickman,1283890146 +13404,1089,violent,1368637069 +13404,1095,ensemble cast,1368636672 +13404,1104,mental illness,1368636820 +13404,1206,violent,1368637069 +13404,1212,final scene,1314750019 +13404,1212,music,1314749978 +13404,1212,Orson Welles,1314749969 +13404,1214,tense,1368637036 +13404,1228,oscar (best cinematography),1368636942 +13404,1248,black and white,1368636537 +13404,1262,ensemble cast,1368636672 +13404,1266,oscar (best cinematography),1368636942 +13404,1284,Great Screenplays,1297171375 +13404,1284,Humphrey Bogart,1297171350 +13404,1287,christianity,1368636602 +13404,1302,father-son relationship,1368636708 +13404,1346,erotic,1310914329 +13404,1346,Nastassja Kinski,1310914322 +13404,1357,father-son relationship,1368636708 +13404,1357,mental illness,1368636820 +13404,1396,computers,1290875560 +13404,1396,ensemble cast,1368636672 +13404,1396,hacker,1290875543 +13404,1396,River Phoenix,1290875572 +13404,1396,Robert Redford,1290875548 +13404,1396,Sidney Poitier,1290875552 +13404,1589,ensemble cast,1368636672 +13404,1597,thriller,1368637052 +13404,1680,alternate reality,1295830012 +13404,1680,Gwyneth Paltrow,1295830016 +13404,1809,bittersweet,1303416957 +13404,1809,Takeshi Kitano,1303416954 +13404,1876,tea leoni,1301715368 +13404,1883,propaganda,1306724031 +13404,1945,black and white,1368636537 +13404,1953,oscar (best cinematography),1368636942 +13404,1954,oscar (best cinematography),1368636942 +13404,2058,tense,1368637037 +13404,2076,dark,1368636651 +13404,2126,plane sequence,1310914620 +13404,2132,dialogue driven,1305651645 +13404,2132,Elizabeth Taylor,1305651635 +13404,2132,Mike Nichols,1305651639 +13404,2132,Richard Burton,1305651630 +13404,2335,stupid,1368637022 +13404,2353,thriller,1368637053 +13404,2383,police,1368636983 +13404,2446,Robert Downey Jr.,1305678722 +13404,2541,Reese Witherspoon,1305679272 +13404,2541,Ryan Philippe,1305679275 +13404,2541,Sarah Michelle Gellar,1305679266 +13404,2721,Gay,1283798937 +13404,2730,narrated,1289830865 +13404,2730,stepfather,1289830853 +13404,2871,Burt Reynolds,1300922680 +13404,2944,ensemble cast,1368636672 +13404,2950,brooke shields,1306101325 +13404,2959,violent,1368637069 +13404,2985,violent,1368637069 +13404,2991,Jane Seymour,1342654339 +13404,3044,mystery,1368636858 +13404,3146,stupid,1368637022 +13404,3256,tense,1368637037 +13404,3256,thriller,1368637052 +13404,3273,franchise,1368636732 +13404,3285,Virginie Ledoyen,1284867202 +13404,3435,black and white,1368636537 +13404,3440,franchise,1368636732 +13404,3468,black and white,1368636537 +13404,3479,ending,1311220790 +13404,3577,breasts,1280017016 +13404,3577,Sherilyn Fenn,1280017016 +13404,3654,Anthony Quinn,1283889013 +13404,3654,traitor,1283889013 +13404,3654,untrustworthy female,1283889048 +13404,3980,inspirational,1368636766 +13404,4007,Michael Douglas,1301836236 +13404,4007,Oliver Stone,1301836232 +13404,4034,oscar (best cinematography),1368636942 +13404,4055,Donald Sutherland,1309062765 +13404,4055,Neve Campbell,1309062768 +13404,4055,William H. Macy,1309062762 +13404,4115,crying,1283807633 +13404,4182,kim richards,1281489604 +13404,4212,David Niven,1283889946 +13404,4568,ending,1341967537 +13404,4592,John Travolta,1295830552 +13404,4592,Kelly Preston,1295830549 +13404,4865,dark,1368636651 +13404,4865,mystery,1368636859 +13404,4896,school drama,1280688848 +13404,5107,nazis,1368636903 +13404,5264,Paula Garcés,1294021240 +13404,5319,Ricardo Darin,1306035230 +13404,5346,carre otis,1280016996 +13404,5346,prejudice about brazil,1280016982 +13404,5377,Hugh Grant,1284866399 +13404,5377,Nick Hornby,1284866420 +13404,5377,Rachel Weisz,1284866438 +13404,5679,Brian Cox,1284866350 +13404,5679,Naomi Watts,1284866354 +13404,5785,stupid,1368637022 +13404,5989,father-son relationship,1368636708 +13404,5992,Meryl Streep,1306723254 +13404,5992,Nicole Kidman,1306723251 +13404,6036,Kelly Preston,1295831051 +13404,6537,franchise,1368636732 +13404,6808,nazis,1368636903 +13404,7119,Daryl Hannah,1292893966 +13404,7119,Dudley Moore,1292893966 +13404,7153,oscar (best cinematography),1368636941 +13404,7160,mental illness,1368636820 +13404,7163,Philip K. Dick,1317171001 +13404,7946,slow paced,1290457474 +13404,8132,easily confused with other movie(s) (title),1311521432 +13404,8370,humourous,1277686480 +13404,8370,revenge,1277686513 +13404,8588,Heather Graham,1280017056 +13404,8781,politics,1368637006 +13404,8879,initial credits,1282522534 +13404,8916,Jennifer Lopez,1306723034 +13404,8916,Richard Gere,1306723034 +13404,8916,Stanley Tucci,1306723034 +13404,8981,Clive Owen,1290457601 +13404,8981,Julia Roberts,1290457603 +13404,8981,movie to see,1290457575 +13404,8981,Natalie Portman,1290457598 +13404,25927,dated,1278181944 +13404,26504,father-son relationship,1284430689 +13404,26875,Roman Polanski,1290642666 +13404,26875,twist ending,1290642642 +13404,27408,John Malkovich,1294354136 +13404,27408,ripley,1294354131 +13404,30764,classic book,1365286605 +13404,30764,Hinduism,1365286605 +13404,41714,Brazil,1281368502 +13404,41714,humor,1281368502 +13404,41714,sensual,1281368502 +13404,42632,Chan-wook Park,1300742276 +13404,42632,Korea,1300742292 +13404,42632,Yeong-ae Lee;,1300742266 +13404,49299,Ricardo Darin,1306100583 +13404,49299,valeria bertuccelli,1306100583 +13404,50858,John Travolta,1295830359 +13404,50940,danish,1289830711 +13404,50940,handicapped,1289830755 +13404,50940,thriller,1289830732 +13404,51357,Donald Sutherland,1292571922 +13404,51357,Max von Sydow,1292571927 +13404,51357,Stephen Rea,1292571933 +13404,51412,jessica biel,1317170922 +13404,51412,Philip K. Dick,1317170920 +13404,51617,Dudley Moore,1282420215 +13404,51617,humour,1282420256 +13404,51617,mistery,1282420228 +13404,51617,Nastassja Kinski,1282420212 +13404,53121,franchise,1368636732 +13404,55290,police,1368636983 +13404,55826,Tom Wilkinson,1294354164 +13404,56015,heist,1429051304 +13404,63113,franchise,1368636732 +13404,64622,Kate Winslet,1306723317 +13404,64622,nazis,1368636903 +13404,66203,funny,1290344002 +13404,66203,Jennifer Aniston,1290344002 +13404,66203,Jennifer Connelly,1290344002 +13404,66203,Scarlett Johansson,1290344002 +13404,66665,i thought it would never end,1286137796 +13404,66665,unfunny,1286137723 +13404,67197,aliens,1306723473 +13404,67197,deus ex machina,1306723494 +13404,69542,mountain climbing,1282874039 +13404,70849,Jean-Pierre Melville,1292204542 +13404,70970,Jason Isaacs,1283891288 +13404,71033,excellent script,1284864406 +13404,71033,Juan José Campanella,1284864481 +13404,71033,nostalgic,1284864466 +13404,71033,Ricardo Darin,1284864396 +13404,71108,bad ending,1286327585 +13404,71108,Michael Haneke,1286327605 +13404,72393,disrespectul to audience,1280014934 +13404,72720,Colin Firth,1283133173 +13404,72720,gay,1283133163 +13404,72720,Julianne Moore,1283133169 +13404,73106,Jennifer Holland,1324158544 +13404,73106,Nudity (Topless),1324158540 +13404,74458,mystery,1368636859 +13404,74545,Ending,1289830924 +13404,74545,espionage,1289830936 +13404,74545,mystery,1289830951 +13404,74545,Roman Polanski,1289830956 +13404,74545,Tom Wilkinson,1289830915 +13404,76111,husband-wife relationship,1290211093 +13404,76111,Iranian movie,1290211068 +13404,76111,web of lies,1290211122 +13404,76860,photography,1290457982 +13404,78218,06/10,1286885593 +13404,78218,07/10,1286885595 +13404,78218,Carrie-Anne Moss,1286885567 +13404,78218,Samuel L. Jackson,1286885556 +13404,78316,italy,1295830125 +13404,78316,predictable,1295830118 +13404,78860,Anne Bancroft,1290875049 +13404,78860,Sidney Poitier,1290875041 +13404,78860,Sydney Pollack;,1290875164 +13404,78860,Telly Savalas,1290875045 +13404,79132,alternate reality,1292761479 +13404,79132,complicated,1292761482 +13404,79224,Jackie Chan,1294525428 +13404,79224,martial arts,1294525444 +13404,79946,Demi Moore,1315173951 +13404,79946,great premise,1315173959 +13404,79946,tragedy in the setting of comedy,1315173984 +13404,80166,Jennifer Aniston,1319679486 +13404,80969,emotional,1316302045 +13404,80969,pretentious,1316302054 +13404,81786,pretentious,1314036109 +13404,81786,senseless,1314036109 +13404,81788,Elizabeth Banks,1301714011 +13404,81788,good ending,1301714056 +13404,81788,Olivia Wilde;,1301714034 +13404,81788,Russell Crowe,1301714061 +13404,82061,Daniel Auteuil,1294615546 +13404,82061,switch partners (swing),1294615541 +13404,84189,sarah butler,1335312192 +13404,86781,Middle East,1318796213 +13404,86781,Unexpected Ending,1318796209 +13404,86882,magical realism,1324682610 +13404,86882,Paris,1324682606 +13404,86882,Rachel McAdams,1324682597 +13404,86882,Woody Allen,1324682601 +13404,86898,beautifully filmed,1324681747 +13404,86898,cinematography,1324681745 +13404,86898,meaning of life,1324681753 +13404,86898,Terrence Malick,1324681742 +13404,87079,not tendentious,1327190723 +13404,90341,media collusion. Innocent victim,1321576455 +13404,90430,Kate Winslet,1387144326 +13404,91978,Elizabeth Banks,1387142341 +13404,94649,paulo josé,1389465820 +13404,95201,great cast,1370042917 +13404,95201,hilarious,1370042884 +13404,95201,made me smile,1370042900 +13404,95201,pleasant,1370042891 +13404,95201,Rome,1370042908 +13404,96610,paranormal,1419280227 +13404,96610,time travel,1419280205 +13404,96829,painful to watch,1398617497 +13404,97921,Jennifer Lawrence,1374450949 +13404,98961,overrated,1369606394 +13404,98961,plotless,1369606387 +13404,100714,boring,1388003240 +13404,100714,talky,1388003261 +13404,101812,alpinism,1365471593 +13404,101812,brother-brother relationship,1365471592 +13404,110603,religious propaganda,1410202640 +13404,114248,historical mistery,1428869487 +13410,260,classic sci-fi,1437396625 +13410,1036,action,1437401049 +13410,117533,documentary,1437401437 +13410,117533,surveillance,1437401437 +13410,117533,whistleblower,1437401437 +13411,34319,Scarlett Johansson,1429647821 +13411,34319,sci-fi,1429647828 +13434,296,Bruce Willis,1264968230 +13434,296,classic,1264968254 +13434,296,cult film,1264968257 +13434,296,imdb top 250,1264968244 +13434,296,Quentin Tarantino,1264968226 +13434,296,Samuel L. Jackson,1264968236 +13434,31410,Adolf Hitler,1264968382 +13434,31410,anti-Semitism,1264968393 +13434,31410,Biography,1264968434 +13434,31410,Germany,1264968410 +13434,31410,history,1264968399 +13434,31410,imdb top 250,1264968424 +13434,31410,suicide,1264968400 +13435,994,food,1234463550 +13438,260,all-time great,1436890322 +13438,260,great movie,1436890312 +13463,1,pixar,1289227394 +13463,49,lesbian,1240955127 +13463,581,lesbian,1240955063 +13463,866,lesbian,1240955060 +13463,1271,lesbian,1240955088 +13463,1271,lesbian subtext,1240955088 +13463,1509,lesbian,1240955044 +13463,1531,depression,1240955105 +13463,1531,lesbian,1240955105 +13463,1639,lesbian,1240955068 +13463,1897,lesbian,1240955093 +13463,2312,Marlee Matlin,1240955071 +13463,2355,pixar,1289227469 +13463,2774,lesbian,1240955059 +13463,3046,lesbian,1240955099 +13463,3114,pixar,1289227455 +13463,3155,Jodie Foster,1240955047 +13463,3631,lesbian,1240955099 +13463,3786,lesbian,1240955061 +13463,3854,lesbian,1240955041 +13463,4389,lesbian,1240955107 +13463,4886,pixar,1289227449 +13463,5222,lesbian,1240955103 +13463,5963,lesbian,1278426264 +13463,5992,lesbian,1240955097 +13463,6218,soccer,1240955057 +13463,6221,lesbian,1240955089 +13463,6377,pixar,1289227416 +13463,6683,lesbian,1240955082 +13463,6765,lesbian,1240955124 +13463,6972,lesbian,1240955126 +13463,7034,lesbian,1240955118 +13463,7615,lesbian,1240955076 +13463,8918,lesbian,1240955077 +13463,8961,pixar,1289227400 +13463,27020,lesbian,1240955090 +13463,27246,lesbian,1261279840 +13463,32300,Jordana Brewster,1240955072 +13463,32300,lesbian,1240955073 +13463,32598,Red Sox,1240955078 +13463,32598,World Series,1240955079 +13463,33649,lesbian,1240955117 +13463,33817,lesbian,1240955109 +13463,42736,lesbian,1240955048 +13463,43744,lesbian,1240955098 +13463,45440,lesbian,1240955051 +13463,45517,pixar,1289227484 +13463,47950,Superman,1240955095 +13463,50872,pixar,1289227440 +13463,51094,lesbian,1240955092 +13463,52545,lesbian,1240955112 +13463,53519,Zoe Bell,1240955075 +13463,55451,lesbian,1240955102 +13463,55844,lesbian,1300637685 +13463,56921,lesbian,1240955056 +13463,58998,comedy romance,1240955086 +13463,59258,Tina Fey,1240955052 +13463,60069,pixar,1289227407 +13463,60124,Famke Janssen,1240955120 +13463,60124,poker,1240955121 +13463,60124,pool,1240955121 +13463,60530,lesbian,1240955125 +13463,61361,lesbian,1240955129 +13463,61401,Stana Katic,1255884347 +13463,63131,Jane Lynch,1240955114 +13463,63876,gay,1240955108 +13463,66979,lesbian,1240955110 +13463,68954,pixar,1289227364 +13463,69406,Rockport MA,1257045372 +13463,69805,Stana Katic,1255884442 +13463,71518,Zoe Bell,1266514939 +13463,73015,alec baldwin,1273763577 +13463,73015,meryl streep,1273763584 +13463,78499,pixar,1289227373 +13463,79242,lesbian,1290438628 +13466,50,very good,1138616779 +13466,318,great cast,1138616613 +13466,318,Great movie,1138616613 +13466,527,great,1138617020 +13466,858,great cast excellent,1138616686 +13466,1193,great cast excellent,1138617210 +13466,1193,Great movie,1138617210 +13466,1198,Good action,1138616831 +13466,1198,movie,1138616831 +13466,1203,excellent great cast,1138617516 +13466,1207,great movie excellent and worth while,1138617530 +13466,1262,good old movie,1138617075 +13466,1262,great cast excellent,1138617075 +13466,2716,okay,1138616292 +13466,2997,very good,1138616288 +13466,3435,excellent old movie,1138616946 +13466,3468,great old movie,1138617522 +13466,4226,interesting,1138617101 +13466,5008,great old movie,1138616755 +13466,6787,very good,1138616663 +13466,27803,excellent,1138616722 +13466,30749,great cast excellent,1138616583 +13466,31410,great cast excellent,1138617163 +13466,31410,interesting,1138617163 +13466,36517,and sad,1138616891 +13466,36517,Great Adaptations,1138616891 +13466,36517,Great movie,1138616891 +13476,47099,father-son relationship,1380378130 +13476,47099,inspirational,1380378133 +13476,97923,Denzel Washington,1383449441 +13476,97923,John Goodman,1383449444 +13476,97923,Nudity (Full Frontal),1383449450 +13476,97923,plane crash,1383449453 +13476,104879,absorbing,1386255229 +13476,104879,thriller,1386255258 +13499,79251,disturbing,1415674377 +13499,79251,twist ending,1415674383 +13499,85412,found footage,1415851506 +13499,85412,mockumentary,1415851504 +13499,85412,monster,1415851509 +13499,85412,mythology,1415851497 +13499,85412,scenic,1415851500 +13499,85412,trolls,1415851502 +13517,1676,epic battles,1412508962 +13517,1676,large battles,1412508910 +13517,2028,large battles,1331471616 +13517,2028,war,1331471238 +13517,7153,battle scenes,1331470237 +13517,8972,treasure hunt,1412508321 +13517,51662,battle scenes,1331470255 +13517,56775,treasure hunt,1412508415 +13517,57274,zombies,1331469857 +13517,85131,war,1331470420 +13520,1917,Bruce Willis,1435668560 +13520,1917,end of the world,1435668598 +13520,1917,space,1435668558 +13520,7317,comedy,1435764357 +13520,7317,Nudity (Topless),1435764360 +13520,8957,Disturbing,1435870013 +13520,8957,gore,1435870011 +13520,8957,torture,1435870018 +13520,34530,amsterdam,1435670788 +13520,34530,comedy,1435670383 +13520,46865,funny,1435670822 +13520,51540,serial killer,1437327136 +13520,51540,true story,1437327136 +13520,54272,comedy,1435669345 +13520,54272,funny,1435669361 +13520,54272,hilarious,1435669354 +13520,59900,exaggerated,1435670741 +13520,87869,Jennifer Aniston,1435670593 +13520,87869,sexism,1435670602 +13520,90249,robots,1435667419 +13520,90249,Science Fiction,1435667426 +13520,96610,Bruce Willis,1435667249 +13520,96610,future,1435667247 +13520,96610,sci-fi,1435667223 +13520,96610,thriller,1435667227 +13520,96610,time travel,1435667196 +13520,100553,documentary,1435667669 +13520,106920,artificial intelligence,1435668451 +13520,106920,Human Computer Interaction,1435668468 +13520,106920,sci-fi,1435668465 +13520,111759,future,1435667088 +13520,111759,sci-fi,1435667080 +13520,111759,time travel,1435667077 +13520,113741,mind bending,1436510341 +13520,113741,mystery,1436510349 +13520,113741,parallel universe,1436510340 +13520,119145,spy thriller,1436331050 +13520,128520,funny,1435869250 +13520,130490,Action,1437114485 +13520,130490,Special effects,1437114485 +13520,130634,hacker,1436725510 +13520,130634,technology,1436725502 +13523,260,sci-fi,1440962928 +13523,260,space action,1440962945 +13523,5618,alternate reality,1440964658 +13523,5618,anime,1440964607 +13523,5618,fantasy,1440964632 +13523,5618,Hayao Miyazaki,1440964659 +13523,5618,imagination,1440964647 +13523,5618,imdb top 250,1440964644 +13523,5618,Oscar (Best Animated Feature),1440964667 +13523,34048,aliens,1440965138 +13523,34048,invasion,1440965154 +13523,34048,sci-fi,1440965144 +13523,34048,spielberg,1440965135 +13523,34048,Tom Cruise,1440965132 +13523,90249,Fighting Robots,1440966709 +13523,90249,Hugh Jackman,1440966697 +13523,90249,robots,1440966690 +13523,109487,Christopher Nolan,1440966629 +13523,109487,good science,1440966633 +13523,109487,Masterpiece,1440966658 +13523,109487,relativity,1440966641 +13523,109487,sci-fi,1440966640 +13523,109487,space,1440966630 +13523,109487,time travel,1440966661 +13552,129313,absurd,1429981606 +13552,129313,dream,1429981606 +13552,129313,filmmaking,1429981606 +13585,66509,Adam Sandler,1257403811 +13585,66509,Judd Apatow,1257403833 +13585,66509,nudity,1257403819 +13585,66509,Seth Rogen,1257403816 +13585,66509,stand-up comedy,1257403826 +13585,69122,Zach Galifinakis,1257404152 +13585,71535,Bill Murray,1257403651 +13585,71535,IMDB Top 250,1257403687 +13585,71535,Woody Harrelson,1257403659 +13585,71535,zombies,1257403656 +13591,32,future,1421048290 +13591,32,violence,1421048286 +13594,260,heroic,1438961367 +13601,51091,sexual,1186183242 +13608,33779,excellent stand-up,1437952163 +13608,33779,hilarious en point history,1437952163 +13608,33779,irreverant,1437952163 +13652,103972,epidemic,1435707484 +13654,17,19th century,1415926030 +13654,17,adapted from:book,1415926395 +13654,17,Ang Lee,1417939066 +13654,17,British,1415926055 +13654,17,costume drama,1415926042 +13654,17,Jane Austen,1415926002 +13654,22,detective,1415497931 +13654,22,serial killer,1415497918 +13654,22,suspenseful,1415497906 +13654,22,thriller,1415497911 +13654,25,atmospheric,1416746231 +13654,25,existential,1416746299 +13654,25,intimate,1416746224 +13654,25,understated,1416746250 +13654,36,capital punishment,1420633761 +13654,36,true story,1420633755 +13654,47,atmospheric,1418546088 +13654,47,crime,1422186789 +13654,47,dark,1422186861 +13654,47,horror,1430580149 +13654,47,investigation,1418546091 +13654,47,mystery,1418546076 +13654,47,pathology,1418546064 +13654,47,psychological,1422186810 +13654,50,clever,1418545956 +13654,50,Crime,1418545930 +13654,50,ensemble cast,1418545926 +13654,50,heist,1418545963 +13654,50,modern classic,1418546010 +13654,50,mystery,1418545948 +13654,50,storytelling,1418545978 +13654,50,thriller,1418545942 +13654,50,tricky,1430580063 +13654,68,bisexual,1416745078 +13654,68,love triangle,1416745121 +13654,72,Noah Baumbach,1417937576 +13654,77,biopic,1418040994 +13654,77,enigmatic,1418040890 +13654,77,music,1418040809 +13654,77,performer,1418040981 +13654,77,The Velvet Underground,1418040314 +13654,85,19th century,1419157798 +13654,85,compelling,1419157907 +13654,85,secrets,1419157748 +13654,111,alienation,1419167959 +13654,111,atmospheric,1416851494 +13654,111,Martin Scorsese,1417969996 +13654,111,masterpiece,1416851508 +13654,111,vigilantism,1419168012 +13654,111,visceral,1416851468 +13654,112,amazing fight choreography,1418059213 +13654,112,Jackie Chan,1418059206 +13654,112,kung fu,1418059206 +13654,123,Criterion,1418058851 +13654,123,fanciful,1418058843 +13654,123,Hong Kong,1418058828 +13654,123,reflective,1418058836 +13654,123,stylized,1418058830 +13654,125,David O. Russell,1417960652 +13654,125,ensemble cast,1414686289 +13654,125,Screwball Comedy,1414686302 +13654,147,based on a true story,1418130050 +13654,147,Catholicism,1418130169 +13654,147,drug abuse,1418129984 +13654,147,intense,1418130165 +13654,147,writer's process,1418130154 +13654,162,artist mind,1418047177 +13654,162,comic book,1418047184 +13654,162,counterculture,1418047254 +13654,162,Criterion,1418047187 +13654,162,irreverent,1418047204 +13654,162,quirky,1418047279 +13654,162,raunchy,1418047193 +13654,162,Terry Zwigoff,1418047244 +13654,162,wry,1418047218 +13654,171,gay,1418131197 +13654,171,romantic comedy,1418131206 +13654,175,authentic,1416395822 +13654,175,cinema verite,1416396056 +13654,175,controversial,1416395776 +13654,175,drugs,1416395862 +13654,175,Larry Clark,1416395843 +13654,175,New York City,1416395791 +13654,175,unflinching,1416396042 +13654,176,film-making,1417969315 +13654,176,indie,1430568225 +13654,176,meta-indie,1430568232 +13654,176,off-beat comedy,1430568272 +13654,176,Tom DiCillo,1430568191 +13654,187,Bechdel Test:Pass,1430569180 +13654,187,charming,1430568999 +13654,187,coming-of-age,1430569134 +13654,187,generation x,1430568822 +13654,187,indie,1430569065 +13654,187,off-beat comedy,1430569038 +13654,190,Todd Haynes,1418547639 +13654,190,underrated,1418547675 +13654,194,ensemble cast,1418640183 +13654,223,black and white,1430577832 +13654,223,cynical,1430567979 +13654,223,dialogue driven,1430567995 +13654,223,generation X,1430577615 +13654,223,independent film,1430577607 +13654,223,irreverent,1430568049 +13654,223,Kevin Smith,1430567974 +13654,223,minimalist,1430568031 +13654,223,view askew,1430568122 +13654,232,Ang Lee,1418659810 +13654,232,food/cooking,1418659894 +13654,232,relationships,1418659808 +13654,235,Biopic,1418648246 +13654,235,black and white,1418648350 +13654,235,charming,1418648261 +13654,235,gentle,1418648266 +13654,235,movie business,1418648239 +13654,247,New Zealand,1417969128 +13654,247,stylized,1417969080 +13654,247,visceral,1417969088 +13654,253,adapted from:book,1417955317 +13654,253,atmospheric,1417955521 +13654,253,author:Anne Rice,1417955385 +13654,253,existentialism,1417955462 +13654,272,18th century,1418124410 +13654,272,biopic,1418124423 +13654,272,costume drama,1418124430 +13654,272,funny,1418124446 +13654,272,history,1418124412 +13654,272,period piece,1418124428 +13654,272,revolution,1418124459 +13654,272,royalty,1418124450 +13654,296,atmospheric,1430574478 +13654,296,dark comedy,1414730301 +13654,296,ensemble cast,1430573821 +13654,296,intelligent,1430574263 +13654,296,masterpiece,1430574371 +13654,296,multiple storylines,1430573452 +13654,296,neo-noir,1430574618 +13654,296,non-linear,1430573416 +13654,296,organized crime,1430573851 +13654,296,Quentin Tarantino,1430573792 +13654,296,storytelling,1430573801 +13654,296,stylish,1430573738 +13654,296,stylized,1430573430 +13654,296,violent,1430575113 +13654,296,visceral,1430574578 +13654,318,crime,1422552963 +13654,318,drama,1422552963 +13654,318,existentialism,1422552963 +13654,333,hilarious,1418126087 +13654,333,quotable,1418126128 +13654,342,Australian,1418650705 +13654,342,bittersweet,1418650799 +13654,342,eccentric,1418650721 +13654,342,rousing,1418650792 +13654,342,self discovery,1418650779 +13654,372,coming-of-age,1430570423 +13654,372,ensemble cast,1430570441 +13654,372,gen x,1430570317 +13654,373,crime,1417968705 +13654,373,wry,1419166489 +13654,384,action,1419167734 +13654,384,crime,1414726482 +13654,384,intelligent,1414726942 +13654,384,thriller,1419167738 +13654,412,100 Essential Female Performances,1419158593 +13654,412,19th century,1419158214 +13654,412,author:Edith Wharton,1419158233 +13654,412,costume drama,1419158304 +13654,412,great performances,1419158275 +13654,412,Martin Scorsese,1419158601 +13654,412,society,1419158231 +13654,417,charming,1422808819 +13654,417,quotable dialogue,1417936714 +13654,417,stylized,1417937024 +13654,417,Whit Stillman,1417936703 +13654,441,1970s,1416397593 +13654,441,affectionate,1422807600 +13654,441,Criterion,1422807648 +13654,441,ensemble cast,1416397587 +13654,441,Highly quotable,1422807591 +13654,441,nostalgic,1416397563 +13654,441,quirky,1416397559 +13654,441,Richard Linklater,1416397570 +13654,477,biopic,1418133215 +13654,477,extraordinary,1418133211 +13654,503,social satire,1418661754 +13654,509,19th century,1419155522 +13654,509,beautiful,1419155348 +13654,509,erotic,1419155362 +13654,509,Jane Campion,1419155571 +13654,509,lyrical,1419155377 +13654,509,New Zealand,1419155338 +13654,509,Palme d'Or,1419155497 +13654,535,biting,1418547749 +13654,535,Criterion,1417938908 +13654,535,dark comedy,1418547741 +13654,535,ensemble cast,1414735372 +13654,535,human fallibility,1418547868 +13654,535,Los Angeles,1417938913 +13654,535,multiple storylines,1414735375 +13654,535,Robert Altman,1417938931 +13654,538,adapted from:play,1430570987 +13654,538,thought provoking,1430570985 +13654,541,adapted from:book,1418648941 +13654,541,atmospheric,1418648978 +13654,541,cyberpunk,1418648916 +13654,541,dark,1418648996 +13654,541,dystopia,1418648919 +13654,541,existentialism,1418648910 +13654,541,memory,1418649007 +13654,541,mortality,1418648966 +13654,541,Neo-noir,1419166046 +13654,541,Philip K. Dick,1418648896 +13654,541,philosophical,1418648923 +13654,541,Ridley Scott,1418648934 +13654,541,stylized,1418648927 +13654,555,ensemble cast,1430574776 +13654,562,adolescence,1415940062 +13654,562,black comedy,1415940085 +13654,562,poignant,1415940117 +13654,562,quirky,1415940059 +13654,562,Todd Solondz,1416857630 +13654,562,unsettling,1416857644 +13654,593,classic,1417952327 +13654,593,crime,1417952353 +13654,593,crime investigation,1421925201 +13654,593,Criterion,1417952184 +13654,593,excellent script,1417952258 +13654,593,investigation,1418546205 +13654,593,Jonathan Demme,1417952173 +13654,593,psychological,1417952290 +13654,593,psychological thriller,1414686961 +13654,593,riveting,1417952225 +13654,593,strong female lead,1418546230 +13654,593,suspense,1417952306 +13654,593,thriller,1430580195 +13654,608,black comedy,1416857209 +13654,608,Coen Brothers,1416857206 +13654,613,adapted from:book,1415926300 +13654,714,beautiful,1416857976 +13654,714,great soundtrack,1416857970 +13654,714,Jim Jarmusch,1416857965 +13654,714,visually appealing,1416857981 +13654,766,andy warhol,1418047058 +13654,766,based on a true story,1418047027 +13654,766,lgbt,1418047141 +13654,766,modern art,1418047156 +13654,766,writer,1418047135 +13654,851,biography,1417942801 +13654,851,interesting story,1417942846 +13654,851,painter,1417942817 +13654,851,visual arts,1417942813 +13654,866,atmospheric,1417968795 +13654,866,erotic,1417968806 +13654,866,lesbian,1417968799 +13654,866,stylish,1417968786 +13654,866,stylized,1419167871 +13654,903,AFI 100 (Thrills),1419164408 +13654,903,Alfred Hitchcock,1416855245 +13654,903,Atmospheric,1418060593 +13654,903,enigmatic,1419164392 +13654,903,Film Noir,1419164371 +13654,903,identity,1416855261 +13654,903,obsession,1416855256 +13654,904,AFI 100,1418060946 +13654,904,Alfred Hitchcock,1416855127 +13654,904,amateur detective,1419914595 +13654,904,classic,1417953010 +13654,904,Film Noir,1419164912 +13654,904,mystery,1418061108 +13654,904,obsession,1418060962 +13654,904,psychological thriller,1418060997 +13654,904,suspenseful,1417953001 +13654,904,thriller,1416855193 +13654,904,voyeurism,1416855133 +13654,905,AFI 100,1417954775 +13654,905,delightful,1417954748 +13654,905,Frank Capra,1417954702 +13654,905,Oscar (Best Picture),1417954766 +13654,905,screwball comedy,1417954696 +13654,908,adventure,1419164862 +13654,908,AFI 100,1418060894 +13654,908,Alfred Hitchcock,1418060839 +13654,908,classic,1419164858 +13654,908,Clever,1418060883 +13654,908,Film Noir,1419164853 +13654,908,mistaken identity,1418060842 +13654,908,suspense,1418060876 +13654,908,thriller,1418060854 +13654,908,visually appealing,1418060845 +13654,908,witty,1418060836 +13654,910,classic,1417954336 +13654,910,delightful,1417954396 +13654,910,farce,1417954664 +13654,910,screwball comedy,1417954332 +13654,916,black and white,1418070237 +13654,916,classic,1418070104 +13654,916,lovely,1418070197 +13654,924,sci-fi,1414737029 +13654,930,Alfred Hitchcock,1419165104 +13654,930,Criterion,1419165100 +13654,930,espionage,1419165109 +13654,931,Alfred Hitchcock,1419165462 +13654,931,Criterion,1419165473 +13654,931,Film Noir,1419165640 +13654,931,mystery,1419165517 +13654,931,psychological thriller,1419165562 +13654,931,salvador dali,1419165663 +13654,949,brothers,1420632903 +13654,949,siblings,1420632901 +13654,951,classic,1414733235 +13654,953,black and white,1417954887 +13654,953,classic,1417954851 +13654,994,charming,1416849334 +13654,994,cooking,1416849248 +13654,994,family dynamics,1416849232 +13654,994,food,1416849378 +13654,994,great soundtrack,1416849361 +13654,994,immigrants,1416849393 +13654,1035,classic,1414737008 +13654,1041,adoption,1418125185 +13654,1041,family relationships,1418125127 +13654,1041,interesting story,1430586782 +13654,1041,Mike Leigh,1418125011 +13654,1041,original,1430586657 +13654,1041,Palme d'Or,1418125547 +13654,1041,race relations,1418125174 +13654,1041,realism,1418125017 +13654,1041,reconciliation,1418125539 +13654,1041,secrets,1418125062 +13654,1041,the human condition,1418125145 +13654,1060,friendship,1418065221 +13654,1060,great dialogue,1418065187 +13654,1077,dystopia,1418034605 +13654,1077,farce,1414729255 +13654,1077,retrofuturist,1414729429 +13654,1077,slapstick,1414729223 +13654,1077,Woody Allen,1418034609 +13654,1079,black comedy,1424345749 +13654,1079,British,1424345792 +13654,1079,hilarious,1424345801 +13654,1079,literate,1424345779 +13654,1089,cult film,1430575085 +13654,1089,dark comedy,1430574929 +13654,1089,dark humor,1414683899 +13654,1089,ensemble cast,1414683914 +13654,1089,heist,1430574869 +13654,1089,neo-noir,1430575006 +13654,1089,notable soundtrack,1430574970 +13654,1089,organized crime,1430574841 +13654,1089,original,1430574836 +13654,1089,Quentin Tarantino,1430574852 +13654,1089,quirky,1430574890 +13654,1089,stylized,1414683908 +13654,1089,violent,1430575054 +13654,1089,visceral,1430574872 +13654,1103,AFI 100,1414730683 +13654,1103,iconic,1417953851 +13654,1125,Blake Edwards,1419175033 +13654,1125,farce,1419174965 +13654,1131,period piece,1415436877 +13654,1179,100 Essential Female Performances,1430579583 +13654,1179,con artists,1417967858 +13654,1179,crime,1430579606 +13654,1179,neo-noir,1430579574 +13654,1186,character study,1414724362 +13654,1186,sexuality,1414724750 +13654,1186,the human condition,1414724455 +13654,1186,voyeurism,1414724190 +13654,1188,ballroom dancing,1418128487 +13654,1188,Baz Luhrman,1418128137 +13654,1188,charming,1418127793 +13654,1188,competition,1418128115 +13654,1188,quirky,1418128506 +13654,1188,self discovery,1418128047 +13654,1188,stylized,1418128431 +13654,1188,unconventional,1418128084 +13654,1188,visually stunning,1418128028 +13654,1188,well done,1418127936 +13654,1190,abduction,1416744720 +13654,1190,movie business,1416744665 +13654,1190,Pedro Almodovar,1416744685 +13654,1190,stockholm syndrome,1416744827 +13654,1191,celebrity,1418040634 +13654,1191,concert tour,1418040784 +13654,1191,performers,1418040800 +13654,1193,author:Ken Kesey,1418645410 +13654,1193,emotional,1418646049 +13654,1193,literary adaptation,1418645754 +13654,1193,mental hospital,1418645336 +13654,1193,mental illness,1418645339 +13654,1193,Milos Forman,1418645414 +13654,1193,power struggle,1418646007 +13654,1193,powerful,1418645436 +13654,1193,rebellion,1418646027 +13654,1193,setting:asylum,1418646020 +13654,1193,social satire,1418645626 +13654,1207,adapted from:book,1417953104 +13654,1207,atmospheric,1417953113 +13654,1207,author:Harper Lee,1417953155 +13654,1207,classic,1417953488 +13654,1207,courtroom drama,1414728141 +13654,1207,History,1414728110 +13654,1207,social commentary,1414728062 +13654,1208,epic,1414729037 +13654,1208,Francis Ford Coppola,1422817048 +13654,1208,surreal,1422816981 +13654,1208,Vietnam war,1414728979 +13654,1211,atmospheric,1416850684 +13654,1211,Berlin,1417957244 +13654,1211,Criterion,1417957236 +13654,1211,dreamlike,1417957508 +13654,1211,enigmatic,1416850653 +13654,1211,lyrical,1417958950 +13654,1211,meditative,1416850666 +13654,1211,Wim Wenders,1416850690 +13654,1211,wistful,1416850718 +13654,1213,adapted from:book,1430584149 +13654,1213,AFI 100,1430584642 +13654,1213,anti-hero,1430584607 +13654,1213,biography,1430584673 +13654,1213,confrontational,1430584503 +13654,1213,gritty,1430584474 +13654,1213,masterpiece,1430584162 +13654,1213,narrated,1430584155 +13654,1213,organized crime,1430584129 +13654,1213,perfection,1430584617 +13654,1213,riveting,1430584549 +13654,1213,stylish,1430584142 +13654,1213,stylized,1430584467 +13654,1213,violent,1430584704 +13654,1213,visceral,1430584172 +13654,1213,visually stunning,1430584323 +13654,1213,wry,1430584664 +13654,1219,Alfred Hitchcock,1416855360 +13654,1219,black and white,1414684090 +13654,1219,cinematography,1414684123 +13654,1219,classic,1419164990 +13654,1219,Film Noir,1419164987 +13654,1219,macabre,1418060747 +13654,1219,mystery,1414684020 +13654,1219,psychology,1418060741 +13654,1219,suspenseful,1418060734 +13654,1219,thriller,1418060708 +13654,1222,AFI 100 (Thrills),1414732882 +13654,1222,boot camp,1414727898 +13654,1222,cinematography,1414728000 +13654,1222,indoctrination,1414732863 +13654,1222,Stanley Kubrick,1414732830 +13654,1222,Vietnam War,1414732846 +13654,1230,funny,1414689383 +13654,1230,smart,1414689377 +13654,1243,adapted from:play,1430570741 +13654,1243,dialogue driven,1430570708 +13654,1243,existentialism,1430570712 +13654,1243,metafiction,1430570837 +13654,1243,playwright:Shakespeare,1430570750 +13654,1243,related:Hamlet,1430570849 +13654,1243,smart comedy,1430570704 +13654,1243,witty,1430570700 +13654,1246,boarding school,1417941979 +13654,1246,philosophy,1414730130 +13654,1246,Quotable,1417942009 +13654,1247,classic,1418311736 +13654,1247,deadpan,1418311846 +13654,1247,existential,1418311793 +13654,1247,May-December romance,1418311890 +13654,1247,Mike Nichols,1418311919 +13654,1247,notable soundtrack,1418311738 +13654,1247,seduction,1418311853 +13654,1252,atmospheric,1419164519 +13654,1252,Film Noir,1416855096 +13654,1252,masterpiece,1416855091 +13654,1252,mystery,1417952941 +13654,1252,private detective,1416855086 +13654,1252,Roman Polanski,1416855075 +13654,1258,atmospheric,1417952409 +13654,1258,masterpiece,1417952415 +13654,1258,psychological,1417952401 +13654,1258,Stanley Kubrick,1417952399 +13654,1273,deadpan,1417188106 +13654,1273,Jim Jarmusch,1417188093 +13654,1273,stylized,1417188102 +13654,1276,classic,1414729495 +13654,1278,Quotable,1418034668 +13654,1278,spoof,1418034678 +13654,1280,austere,1414731457 +13654,1280,China,1418059344 +13654,1280,courtesan,1418059436 +13654,1280,gender politics,1418638516 +13654,1280,lyrical,1418059538 +13654,1280,period piece,1414730914 +13654,1280,social commentary,1418638545 +13654,1280,stylized,1418638691 +13654,1280,visually appealing,1418059564 +13654,1288,Christopher Guest,1418034919 +13654,1288,cult classic,1418035042 +13654,1288,farce,1418034980 +13654,1288,mockumentary,1418034917 +13654,1288,quotable,1418035001 +13654,1289,breathtaking,1417958138 +13654,1289,cinematography,1417958077 +13654,1289,civilization,1417958026 +13654,1289,Criterion,1417958070 +13654,1289,landscape,1417958042 +13654,1289,meditative,1417958125 +13654,1289,nature,1417958032 +13654,1289,no dialogue,1417958048 +13654,1289,score:Philip Glass,1417958060 +13654,1289,technology,1417958036 +13654,1292,charming,1418646232 +13654,1292,political satire,1418646204 +13654,1292,quotable,1418646302 +13654,1292,subtle,1418646281 +13654,1296,adapted from:book,1415926174 +13654,1296,period romace,1415926801 +13654,1296,social satire,1415927249 +13654,1305,bittersweet,1417957572 +13654,1305,cinematography,1414683638 +13654,1305,contemplative,1414683255 +13654,1305,poignant,1414683339 +13654,1305,Wim Wenders,1417957049 +13654,1339,adapted from:book,1417955585 +13654,1339,erotic,1417955573 +13654,1339,Francis Ford Coppola,1417955560 +13654,1343,cinematography,1417952647 +13654,1343,Martin Scorsese,1417952583 +13654,1343,masterpiece,1417952891 +13654,1343,psychological thriller,1418643249 +13654,1343,remake,1417952593 +13654,1343,riveting,1418643190 +13654,1343,strong cast,1418643202 +13654,1343,stylized,1414819037 +13654,1344,AFI 100 (Thrills),1414818976 +13654,1344,stylized,1414687194 +13654,1344,suspenseful,1414687204 +13654,1354,Criterion,1416855545 +13654,1354,Lars von Trier,1416855673 +13654,1354,passionate,1416855686 +13654,1392,social satire,1418132109 +13654,1392,Underrated,1418132123 +13654,1392,well done,1418132416 +13654,1393,Cameron Crowe,1420633507 +13654,1393,Interesting,1420633515 +13654,1393,quotable,1420633520 +13654,1394,AFI 100 (Laughs),1417960710 +13654,1394,Coen Brothers,1416857113 +13654,1394,Cult classic,1416857126 +13654,1394,cult film,1418648649 +13654,1394,deadpan,1416857119 +13654,1394,eccentric,1418648646 +13654,1394,goofy,1418648615 +13654,1394,madcap,1418648658 +13654,1394,narrated,1418648652 +13654,1394,off-beat comedy,1430569341 +13654,1394,Quirky,1418648621 +13654,1417,Jane Campion,1419157723 +13654,1419,Criterion,1418123931 +13654,1419,enigmatic,1418123918 +13654,1419,intimate,1418123924 +13654,1419,lyrical,1418123945 +13654,1419,reflective,1418123948 +13654,1419,visceral,1418123927 +13654,1449,affectionate,1418034315 +13654,1449,Christopher Guest,1418034283 +13654,1449,mockumentary,1418034285 +13654,1449,small town,1418034307 +13654,1464,art house,1418057353 +13654,1464,atmospheric,1415931658 +13654,1464,David Lynch,1415931637 +13654,1464,disturbing,1415931667 +13654,1464,dreamlike,1415931718 +13654,1464,enigmatic,1419167685 +13654,1464,mindfuck,1415931654 +13654,1464,mystery,1415931640 +13654,1464,nonlinear,1430579703 +13654,1464,strange,1415931644 +13654,1464,surreal,1415931707 +13654,1482,working class,1418124916 +13654,1484,lively,1415939097 +13654,1484,misadventures,1415938936 +13654,1484,relationships,1415938752 +13654,1484,sexuality,1415938754 +13654,1484,smart,1415939096 +13654,1500,anti-hero,1430569684 +13654,1500,off-beat comedy,1430569764 +13654,1509,coming of age,1418130554 +13654,1509,LGBT,1418130503 +13654,1509,queer,1418130492 +13654,1509,trials of youth,1418130539 +13654,1554,art house,1418059669 +13654,1554,beautifully filmed,1418059624 +13654,1554,fetish,1418059630 +13654,1554,poetic,1418059634 +13654,1584,adapted from:book,1418122851 +13654,1584,aliens,1418122827 +13654,1584,Carl Sagan,1418122847 +13654,1584,existentialism,1418122824 +13654,1584,first contact,1418122837 +13654,1584,sci-fi,1418122816 +13654,1584,thought-provoking,1418123002 +13654,1594,misogyny,1415941275 +13654,1594,Neil LaBute,1422816492 +13654,1594,sexism,1415941270 +13654,1594,social satire,1415941263 +13654,1596,Mike Leigh,1418125616 +13654,1596,realism,1418125619 +13654,1596,rites of passage,1418125677 +13654,1611,Criterion,1417941690 +13654,1611,existentialism,1417941716 +13654,1611,Gus Van Sant,1417941692 +13654,1611,lyrical,1417965687 +13654,1611,poignant,1417941799 +13654,1617,anti-hero,1419165798 +13654,1617,complex,1418283768 +13654,1617,conspiracy,1419165807 +13654,1617,ensemble cast,1414684319 +13654,1617,neo-noir,1421924531 +13654,1617,visually appealing,1418283779 +13654,1625,David Fincher,1420633991 +13654,1625,mindfuck,1415498211 +13654,1625,Mystery,1415498198 +13654,1625,neo-noir,1420634008 +13654,1625,suspense,1420633991 +13654,1635,100 Essential Female Performances,1417939280 +13654,1635,Ang Lee,1417939211 +13654,1635,Atmospheric,1417939222 +13654,1635,austere,1417957121 +13654,1635,contemplative,1419160644 +13654,1635,Criterion,1417939224 +13654,1635,dysfunctional family,1417939218 +13654,1635,elegiac,1419160664 +13654,1635,suburbia,1417939231 +13654,1635,understated,1417939235 +13654,1635,visually appealing,1419160747 +13654,1639,bisexuality,1418065100 +13654,1639,Criterion,1418065106 +13654,1639,great dialogue,1418065169 +13654,1639,Kevin Smith,1418065148 +13654,1639,relationships,1418065087 +13654,1639,sexual identity,1418065092 +13654,1645,psychological,1414819751 +13654,1645,supernatural,1414819764 +13654,1653,atmospheric,1419166425 +13654,1653,beautiful,1419166431 +13654,1653,dystopia,1414732253 +13654,1653,genetic selection,1418649335 +13654,1653,intelligent,1419166412 +13654,1653,Neo-noir,1419166405 +13654,1653,sci-fi,1414732251 +13654,1653,thought-provoking,1418649328 +13654,1653,visually appealing,1418649339 +13654,1656,beautiful,1418312829 +13654,1656,compelling,1418312827 +13654,1673,dark comedy,1424678883 +13654,1673,ensemble cast,1424678866 +13654,1673,multiple storylines,1424678895 +13654,1678,adapted from:book,1418639696 +13654,1678,beautiful,1418639723 +13654,1678,Chinese-Americans,1418639704 +13654,1678,Culture,1418639685 +13654,1678,matrilinial,1418639956 +13654,1678,mother-daughter relationships,1418640004 +13654,1678,multi-generational,1418639869 +13654,1678,Wayne Wang,1418639782 +13654,1682,alternate reality,1418646350 +13654,1682,dark comedy,1418646403 +13654,1682,identity,1418646373 +13654,1682,original plot,1418646353 +13654,1682,philosophy,1418646376 +13654,1682,social commentary,1418646339 +13654,1682,stylized,1418646342 +13654,1682,surveillance,1418646467 +13654,1682,voyeurism,1418646338 +13654,1683,beautifully filmed,1414682591 +13654,1683,love triangle,1415435934 +13654,1683,period piece,1415435521 +13654,1694,character study,1417969647 +13654,1694,interesting story,1417969747 +13654,1694,Pentecostal,1418663224 +13654,1694,Religion,1418663198 +13654,1701,Woody Allen,1418069766 +13654,1701,writers,1418069768 +13654,1704,character study,1414729792 +13654,1704,excellent script,1417941888 +13654,1704,Gus Van Sant,1417941936 +13654,1704,intelligent,1417941897 +13654,1704,thoughtful,1417941911 +13654,1719,atmospheric,1417939901 +13654,1719,enigmatic,1417939941 +13654,1719,lyrical,1430586962 +13654,1719,meditative,1417939905 +13654,1719,small town,1417939911 +13654,1729,clever script,1430573061 +13654,1729,crime,1430573358 +13654,1729,dark comedy,1430573041 +13654,1729,ensemble cast,1430573219 +13654,1729,Quentin Tarantino,1430573044 +13654,1732,Cult classic,1430577963 +13654,1732,great dialogue,1430577956 +13654,1732,social satire,1430578073 +13654,1733,character study,1415938188 +13654,1733,interweaving stories,1415938251 +13654,1748,alternate reality,1419166327 +13654,1748,cerebral,1419166304 +13654,1748,dark fantasy,1419166297 +13654,1748,dystopia,1414731823 +13654,1748,existentialism,1419166329 +13654,1748,Neo-noir,1419166292 +13654,1748,sci-fi,1414731834 +13654,1748,surreal,1414731829 +13654,1753,comedy,1430567092 +13654,1753,Dave Chappelle,1430567075 +13654,1836,clever,1417937513 +13654,1836,Criterion,1417937309 +13654,1836,dialogue driven,1422808780 +13654,1836,dry humor,1416398522 +13654,1836,Whit Stillman,1416398530 +13654,1844,Pedro Almodovar,1416744999 +13654,1845,eccentricity,1414820600 +13654,1845,off-beat comedy,1416746843 +13654,1845,Portland,1416746869 +13654,1845,Underrated,1414820572 +13654,1865,jazz,1418042575 +13654,1865,musicians,1418042580 +13654,1865,Woody Allen,1418042572 +13654,1889,moody,1414819934 +13654,1897,beautiful,1418130659 +13654,1897,lesbian,1418130689 +13654,1902,generation X,1418064943 +13654,1902,indie,1418064971 +13654,1906,dialogue driven,1422808597 +13654,1916,ensemble cast,1414754498 +13654,1916,stylized,1414754549 +13654,1921,atmospheric,1430579037 +13654,1921,black and white,1430579060 +13654,1921,cerebral,1430579047 +13654,1921,enigmatic,1430579040 +13654,1921,existentialism,1414732577 +13654,1921,psychology,1414732394 +13654,1921,stylized,1430579049 +13654,1923,Farrelly Brothers,1418126542 +13654,1923,madcap,1418126707 +13654,1923,physical comedy,1418126663 +13654,1923,raunchy,1418126528 +13654,1923,slapstick,1418126587 +13654,1947,classic,1414736969 +13654,1956,character study,1414732455 +13654,1956,personal growth,1414732459 +13654,1958,adapted from:book,1418314129 +13654,1958,family relationships,1418314109 +13654,1958,marriage,1418314135 +13654,1960,cinematography,1414732157 +13654,1960,epic,1414732145 +13654,1963,mockumentary,1418069254 +13654,1963,spoof,1418069299 +13654,1963,Woody Allen,1418069106 +13654,1965,Alex Cox,1416856688 +13654,1965,black comedy,1416854172 +13654,1965,cult classic,1416854147 +13654,1965,notable soundtrack,1416856710 +13654,1965,punk,1416854186 +13654,1966,Whit Stillman,1422810335 +13654,1968,ensemble cast,1422810792 +13654,1968,iconic,1422810923 +13654,1968,John Hughes,1422810987 +13654,2009,atmospheric,1418123590 +13654,2009,cautionary tale,1418123680 +13654,2009,dystopia,1418123587 +13654,2009,sci-fi,1418123627 +13654,2020,intrigues,1415435785 +13654,2024,christianity,1418662992 +13654,2065,charming,1414728387 +13654,2065,fable,1414728387 +13654,2065,fanciful,1414728469 +13654,2065,Woody Allen,1414728422 +13654,2071,AIDs,1418131405 +13654,2071,historical,1418131484 +13654,2071,meaningful,1418131409 +13654,2071,social commentary,1418131432 +13654,2071,topic:AIDS/HIV,1418131417 +13654,2076,atmospheric,1415933323 +13654,2076,David Lynch,1415933316 +13654,2076,mise-en-scene,1414687885 +13654,2076,mystery,1414687591 +13654,2076,neo-noir,1415933313 +13654,2076,sexuality,1415933394 +13654,2076,strange,1415933327 +13654,2076,suburbia,1415933333 +13654,2076,voyeurism,1414687908 +13654,2100,fun,1422812131 +13654,2100,light-hearted,1422812163 +13654,2134,80's classic,1414722881 +13654,2134,John Hughes,1422811146 +13654,2134,old school,1414722826 +13654,2144,80's classic,1422811411 +13654,2144,charming,1422811463 +13654,2144,hilarious,1422811362 +13654,2144,John Hughes,1422811014 +13654,2160,Criterion,1416855470 +13654,2160,Roman Polanski,1416855442 +13654,2165,dysfunctional relationships,1422816462 +13654,2165,Neil LaBute,1422816386 +13654,2165,social satire,1415940424 +13654,2186,Alfred Hitchcock,1416855294 +13654,2186,Film Noir,1419914548 +13654,2206,Alfred Hitchcock,1419165205 +13654,2206,dread,1419165303 +13654,2206,paranoia,1419165202 +13654,2206,psychological thriller,1419165274 +13654,2247,delightful,1417951760 +13654,2247,Jonathan Demme,1417951731 +13654,2247,quirky charm,1417951819 +13654,2248,cameron crowe,1418064560 +13654,2248,charming,1418064592 +13654,2248,iconic,1420888910 +13654,2248,idealistic,1418064566 +13654,2248,modern classic,1420888980 +13654,2271,absurdity,1416741848 +13654,2271,biography,1416741611 +13654,2271,depravity,1416741744 +13654,2271,redemption,1416741757 +13654,2272,ensemble cast,1416207301 +13654,2272,great performances,1418314225 +13654,2311,author:Arthur C. Clarke,1418123104 +13654,2312,compelling,1420635045 +13654,2312,love story,1420634993 +13654,2318,Awkward,1415939568 +13654,2318,cognitive dissonance,1414688924 +13654,2318,dialogue,1415939601 +13654,2318,dysfunctional family,1415939521 +13654,2318,loneliness,1415939524 +13654,2318,Philip Seymour Hoffman,1415939609 +13654,2318,pitch-black comedy,1414688506 +13654,2318,relationships,1415939546 +13654,2318,sexuality,1415939534 +13654,2318,social commentary,1414687996 +13654,2318,Todd Solondz,1415939809 +13654,2344,prison escape,1418064232 +13654,2348,Alex Cox,1415549806 +13654,2348,based on a true story,1416854108 +13654,2348,Criterion,1416854096 +13654,2348,punk,1416854116 +13654,2389,Gus Van Sant,1417966087 +13654,2389,remake,1417966083 +13654,2389,Thriller,1417966091 +13654,2395,affectionate,1416857787 +13654,2395,bittersweet,1417937653 +13654,2395,clever,1416857873 +13654,2395,coming of age,1417937673 +13654,2395,Criterion,1417937737 +13654,2395,deadpan,1417937660 +13654,2395,irreverent,1417937744 +13654,2395,literate,1417937657 +13654,2395,stylized,1417937729 +13654,2395,Wes Anderson,1416857779 +13654,2395,witty,1417937668 +13654,2474,competition:pool billiards,1419158749 +13654,2474,Martin Scorsese,1419158677 +13654,2502,corporate America,1430567938 +13654,2502,cult classic,1430567722 +13654,2502,hilarious,1430567728 +13654,2502,off-beat comedy,1430567716 +13654,2502,quotable,1430567736 +13654,2502,shenanigans,1430567751 +13654,2502,workplace,1430567927 +13654,2528,classic,1418123779 +13654,2528,dystopia,1418123774 +13654,2528,futuristic,1418123728 +13654,2528,iconic,1418123824 +13654,2528,post-apocalyptic,1418123714 +13654,2528,sci-fi,1418123710 +13654,2542,dark comedy,1430576138 +13654,2542,Guy Ritchie,1430576003 +13654,2542,multiple storylines,1430576025 +13654,2542,organized crime,1430575989 +13654,2542,stylish,1430576007 +13654,2542,violence,1430575996 +13654,2571,action,1415489698 +13654,2571,alternate reality,1415489684 +13654,2571,atmospheric,1415489679 +13654,2571,cyberpunk,1418649839 +13654,2571,dystopia,1415489758 +13654,2571,martial arts,1418649802 +13654,2571,philosophical,1418649829 +13654,2571,philosophy,1415489668 +13654,2571,post-apocalyptic,1418649809 +13654,2571,riveting,1418649931 +13654,2571,sci-fi,1415489716 +13654,2571,stylized,1418649817 +13654,2571,thought-provoking,1415489688 +13654,2596,cult film,1416397388 +13654,2596,punk,1416397391 +13654,2596,salt lake city,1416397396 +13654,2596,witty,1416397470 +13654,2596,wry,1416397477 +13654,2686,beautifully filmed,1414722308 +13654,2686,epic,1414722648 +13654,2729,Stanley Kubrick,1414731720 +13654,2762,eerie,1417979398 +13654,2762,enigmatic,1417979342 +13654,2762,excellent script,1417979307 +13654,2762,ghosts,1417979274 +13654,2762,M.Night Shyamalan,1417979642 +13654,2762,psychological,1417979210 +13654,2762,thriller,1417979234 +13654,2791,aviation,1418034888 +13654,2791,Slapstick,1418034842 +13654,2791,spoof,1418034839 +13654,2841,supernatural,1415498291 +13654,2858,american life,1417962792 +13654,2858,excellent script,1417962729 +13654,2858,iconic,1417962906 +13654,2858,midlife crisis,1417962485 +13654,2858,multiple storylines,1417962507 +13654,2858,narrated,1417962534 +13654,2858,reflective,1417962552 +13654,2858,satirical,1417962984 +13654,2858,sexuality,1417962499 +13654,2858,social commentary,1417962483 +13654,2858,thought-provoking,1417963027 +13654,2859,concert,1417951906 +13654,2859,Iconic,1417951895 +13654,2859,Jonathan Demme,1417951855 +13654,2859,musical band:Talking Heads,1417951914 +13654,2863,charming,1418313914 +13654,2863,classic,1418313928 +13654,2863,Criterion,1418313901 +13654,2877,cult classic,1415931224 +13654,2877,high camp,1415931105 +13654,2877,irreverent,1415931089 +13654,2877,Rock Opera,1418128645 +13654,2890,black comedy,1417960446 +13654,2890,confrontational,1417960386 +13654,2890,controversial,1417960397 +13654,2890,David O. Russell,1417960407 +13654,2890,Gulf War,1417960323 +13654,2890,thought-provoking,1422810040 +13654,2912,crime,1430572131 +13654,2912,interesting story,1430572185 +13654,2912,Steven Soderbergh,1417968057 +13654,2912,stylish,1417968104 +13654,2912,thriller,1417968064 +13654,2917,AFI 100 (Thrills),1417968417 +13654,2917,atmospheric,1418545492 +13654,2917,erotic,1417968400 +13654,2917,modern classic,1418545510 +13654,2917,neo-noir,1417968371 +13654,2918,1980s,1422811664 +13654,2918,charming,1414729992 +13654,2918,delightful,1422811506 +13654,2918,John Hughes,1422811585 +13654,2952,compelling,1430572803 +13654,2952,gambling,1418650375 +13654,2952,gem,1417967971 +13654,2952,neo-noir,1430572764 +13654,2952,Paul Thomas Anderson,1416856737 +13654,2997,Charlie Kaufman,1416856773 +13654,2997,Criterion,1417938286 +13654,2997,cult film,1417938305 +13654,2997,dark comedy,1417938317 +13654,2997,mindfuck,1416856831 +13654,2997,modern fantasy,1417961776 +13654,2997,original,1430578376 +13654,2997,satirical,1417938333 +13654,2997,Spike Jonze,1416856850 +13654,2997,surreal,1430578316 +13654,2997,thought-provoking,1417938292 +13654,3000,anime,1417973040 +13654,3000,dystopia,1417973094 +13654,3000,Hayao Miyazaki,1417973021 +13654,3000,nature,1417973091 +13654,3000,spirits,1417973134 +13654,3000,Studio Ghibli,1417973028 +13654,3002,Werner Herzog,1418030759 +13654,3006,based on a true story,1416145386 +13654,3006,Crisis of conscience,1419158971 +13654,3006,dramatic,1419158893 +13654,3006,intelligent,1416145399 +13654,3006,journalism,1419158894 +13654,3006,Michael Mann,1419159079 +13654,3006,riveting,1419158940 +13654,3018,campy,1415930858 +13654,3018,cult classic,1415930810 +13654,3018,H.P. Lovecraft,1415930799 +13654,3018,horror,1415930804 +13654,3018,humorous,1415930821 +13654,3018,mad scientist,1415930839 +13654,3019,contemplative,1417965794 +13654,3019,existential,1417965920 +13654,3019,Gus Van Sant,1416139948 +13654,3019,lyrical,1417965971 +13654,3019,petty crime,1414851939 +13654,3019,philosophy,1416139915 +13654,3019,Portland,1416139991 +13654,3019,subculture,1416140095 +13654,3046,coming of age,1418544514 +13654,3046,lesbian,1418544505 +13654,3068,courtroom drama,1416145564 +13654,3068,realistic,1419158813 +13654,3068,screenwriter:David Mamet,1419158804 +13654,3068,Sidney Lumet,1419158800 +13654,3070,campy,1418121995 +13654,3070,clever script,1414725092 +13654,3070,cult classic,1414725154 +13654,3070,cult film,1418121990 +13654,3070,sci-fi,1418121942 +13654,3070,spoof,1414725114 +13654,3075,atmospheric,1415933450 +13654,3075,black and white,1415933552 +13654,3075,Criterion,1422807193 +13654,3075,eerie,1415933462 +13654,3075,hallucinatory,1415933544 +13654,3075,loneliness,1415933458 +13654,3075,psychological horror,1422807254 +13654,3075,Roman Polanski,1415933452 +13654,3088,based on a play,1419910933 +13654,3088,black and white,1417955037 +13654,3088,classic,1419910918 +13654,3088,eccentric,1419910980 +13654,3088,nostalgic,1419910954 +13654,3089,Classic,1414730717 +13654,3089,the human condition,1414730763 +13654,3105,adapted from:book,1417942314 +13654,3105,author:Oliver Sacks,1417942316 +13654,3105,based on a true story,1417942328 +13654,3105,interesting story,1417942353 +13654,3105,Psychiatry,1417942302 +13654,3127,100 Essential Female Performances,1419156220 +13654,3127,Australia,1419157167 +13654,3127,Jane Campion,1419156217 +13654,3127,mind games,1419156159 +13654,3127,power struggle,1419156204 +13654,3127,psychology,1419156246 +13654,3148,adapted from:book,1417942213 +13654,3148,author:John Irving,1417942207 +13654,3148,modern classic,1417942278 +13654,3148,orphanage,1417942046 +13654,3148,the human condition,1417942235 +13654,3152,bittersweet,1417953928 +13654,3152,Criterion,1417953904 +13654,3152,nostalgic,1417953897 +13654,3152,Peter Bogdanovich,1417953894 +13654,3152,small town,1417953894 +13654,3160,converging lives,1430586995 +13654,3160,ensemble cast,1416856370 +13654,3160,existential,1416856444 +13654,3160,family crisis,1430586994 +13654,3160,multiple storylines,1417962037 +13654,3160,Paul Thomas Anderson,1416856361 +13654,3160,poignant,1417962047 +13654,3160,stylized,1417962028 +13654,3201,confrontational,1418548116 +13654,3201,Criterion,1418548122 +13654,3201,rebellion,1418548099 +13654,3201,road trip,1418548141 +13654,3219,suspenseful,1415498063 +13654,3259,immigrants,1418127427 +13654,3259,Ireland,1418127445 +13654,3259,survival,1418127378 +13654,3261,Cameron Crowe,1418064789 +13654,3261,ensemble cast,1430570260 +13654,3261,gen x,1420888841 +13654,3261,quirky humor,1418064823 +13654,3261,relationships,1420888856 +13654,3262,atmospheric,1414732768 +13654,3262,cryptic,1415932901 +13654,3262,David Lynch,1415932559 +13654,3262,detective,1415932988 +13654,3262,drugs,1415933221 +13654,3262,enigmatic,1415932978 +13654,3262,Interesting,1415932605 +13654,3262,mystery,1414732687 +13654,3262,prequel,1414732790 +13654,3262,secrets,1415933205 +13654,3262,strange,1415932575 +13654,3262,surreal,1414732655 +13654,3262,whodunnit,1415932564 +13654,3271,adapted from:book,1417942102 +13654,3271,author:John Steinbeck,1417942092 +13654,3271,Tragic,1417942108 +13654,3330,sexuality,1417953810 +13654,3330,social commentary,1417953779 +13654,3358,afterlife,1414724983 +13654,3386,conspiracy,1418314996 +13654,3386,courtroom,1418315002 +13654,3386,Oliver Stone,1418314940 +13654,3386,politics,1418314964 +13654,3402,gentle,1415927806 +13654,3402,humorous,1415933937 +13654,3402,lovely,1415927980 +13654,3402,quiet,1415927702 +13654,3435,atmospheric,1414678835 +13654,3435,black and white,1418061573 +13654,3435,crime,1419164631 +13654,3435,noir thriller,1419164662 +13654,3435,stylized,1416855236 +13654,3459,hallucinatory,1415929743 +13654,3459,Ken Russell,1415929258 +13654,3476,nonlinear,1414678798 +13654,3481,break-up,1418282923 +13654,3481,breaking the fourth wall,1418282944 +13654,3481,charming,1420888150 +13654,3481,Chicago,1420887985 +13654,3481,coming of age,1430569920 +13654,3481,geeky,1420888577 +13654,3481,gen x,1420888681 +13654,3481,hilarious,1420888029 +13654,3481,quirky,1420888571 +13654,3481,record store,1420888740 +13654,3481,relationships,1416857460 +13654,3481,self examination,1420888352 +13654,3481,self reflection,1420888521 +13654,3491,80's cheese,1422812616 +13654,3491,quotable,1422812594 +13654,3499,adapted from:book,1417952552 +13654,3499,suspenseful,1417952514 +13654,3499,thriller,1417952520 +13654,3505,espionage,1415497508 +13654,3505,intrigue,1415497556 +13654,3516,classic,1420632746 +13654,3516,witchcraft,1420632736 +13654,3521,Jim Jarmusch,1416857894 +13654,3521,nostalgic,1416857894 +13654,3521,wry,1416857909 +13654,3539,Sex Pistols,1418039321 +13654,3550,atmospheric,1417955650 +13654,3550,erotic,1417955665 +13654,3550,stylized,1417955657 +13654,3556,coming of age,1422602045 +13654,3556,enigmatic,1422602138 +13654,3556,lyrical,1422602128 +13654,3556,narrated,1422602072 +13654,3556,psychology,1422602027 +13654,3556,reflective,1422602055 +13654,3556,sofia coppola,1422602285 +13654,3556,suburbia,1422602040 +13654,3598,adapted from:play,1416749346 +13654,3598,Shakespeare,1416749339 +13654,3608,enigmatic,1418313722 +13654,3608,hilarious,1418313815 +13654,3608,quirky,1418313684 +13654,3608,quotable,1418313816 +13654,3608,road trip,1418648026 +13654,3608,Tim Burton,1418313679 +13654,3637,Criterion,1418637619 +13654,3637,enigmatic,1418637816 +13654,3677,avante garde,1417957911 +13654,3677,contemplative,1417957825 +13654,3677,meditative,1417957784 +13654,3677,mesmerizing,1418036254 +13654,3677,no dialogue,1417957858 +13654,3677,photography,1418036287 +13654,3677,powerful,1418036320 +13654,3677,scenic,1417957639 +13654,3677,time-lapse,1417957636 +13654,3677,visceral,1418035947 +13654,3679,music documentary,1418031167 +13654,3679,Penelope Spheeris,1418031176 +13654,3679,punk rock,1418031165 +13654,3699,aliens,1418122419 +13654,3699,clever,1418122494 +13654,3699,great performances,1418122588 +13654,3699,great story,1418122407 +13654,3699,John Carpenter,1418122410 +13654,3699,quotable,1418122465 +13654,3701,aliens,1418122354 +13654,3701,sociology,1418122339 +13654,3701,thought-provoking,1418122350 +13654,3747,addiction,1416743115 +13654,3747,redemption,1416743155 +13654,3752,absurd,1418126386 +13654,3752,cuckold,1418126360 +13654,3752,Farrelly Brothers,1418126852 +13654,3752,Hilarious,1418126394 +13654,3752,madcap,1418126885 +13654,3752,mixed race family,1418126811 +13654,3752,quotable,1418126465 +13654,3752,raunchy,1418126778 +13654,3752,split personality,1418126831 +13654,3786,campy,1416209719 +13654,3786,cute,1416209732 +13654,3786,sexuality,1416209723 +13654,3788,classic,1414729913 +13654,3788,stylized,1414729910 +13654,3793,sci-fi,1421422971 +13654,3794,indie,1415939294 +13654,3794,quirky,1415939681 +13654,3819,charming,1418060481 +13654,3819,quirky,1418060479 +13654,3851,highly quotable,1430576971 +13654,3851,hilarious,1430576936 +13654,3851,Margaret Cho,1419163784 +13654,3851,stand-up comedy,1430576864 +13654,3852,coming-of-age,1430570119 +13654,3852,off-beat comedy,1430570116 +13654,3852,philosophy,1430570166 +13654,3852,Romance,1418065040 +13654,3852,social conflicts,1430570114 +13654,3893,dark comedy,1422816593 +13654,3893,Neil LaBute,1422816615 +13654,3897,affectionate,1418134042 +13654,3897,bittersweet,1418133880 +13654,3897,Cameron Crowe,1418133721 +13654,3897,earnest,1418134040 +13654,3897,journalism,1418133727 +13654,3897,music,1418133966 +13654,3897,nostalgic,1418133855 +13654,3897,rites of passage,1418133786 +13654,3897,rock and roll,1418134016 +13654,3897,Rolling Stone,1418134065 +13654,3897,warm,1418134062 +13654,3897,writer's process,1418133826 +13654,3897,writers,1418133768 +13654,3910,beautiful,1414821086 +13654,3910,Lars von Trier,1414820972 +13654,3910,musical,1414820944 +13654,3910,tragic,1414821047 +13654,3910,transcendent,1416854929 +13654,3911,Christopher Guest,1418034496 +13654,3911,farce,1418034556 +13654,3911,mockumentary,1418034497 +13654,3949,addiction,1430585923 +13654,3949,atmospheric,1430585751 +13654,3949,cinematography,1430585636 +13654,3949,compelling,1430585982 +13654,3949,desire,1430586093 +13654,3949,intense,1430585769 +13654,3949,loneliness,1430585894 +13654,3949,relationships,1430585891 +13654,3949,visually stunning,1430585686 +13654,3983,character driven,1430586613 +13654,3983,family,1430586375 +13654,3983,independent film,1430586432 +13654,3983,realistic,1430586377 +13654,3983,small town,1430586383 +13654,3996,Allegory,1418641982 +13654,3996,Ang Lee,1418641827 +13654,3996,beautiful,1419160314 +13654,3996,beautifully filmed,1418641850 +13654,3996,breathtaking,1418642050 +13654,3996,choreography,1419160349 +13654,3996,lyrical,1418641901 +13654,3996,martial arts,1418641875 +13654,3996,stylized,1418641831 +13654,3996,visually stunning,1418641862 +13654,4002,John Hughes,1422811221 +13654,4003,John Hughes,1422811749 +13654,4008,innocence lost,1418314744 +13654,4008,Vietnam War,1418314811 +13654,4011,cynical,1430575689 +13654,4011,dark comedy,1430575606 +13654,4011,ensemble cast,1430575576 +13654,4011,Great dialogue,1430575662 +13654,4011,Guy Ritchie,1430575951 +13654,4011,heist,1430575584 +13654,4011,multiple storylines,1430575570 +13654,4011,narrated,1430575645 +13654,4011,organized crime,1430575653 +13654,4011,quirky,1430575635 +13654,4011,stylish,1430575612 +13654,4011,stylized,1430575616 +13654,4017,art,1417942756 +13654,4017,artist,1417942765 +13654,4017,biopic,1417942772 +13654,4017,great performances,1417942685 +13654,4017,interesting story,1417942722 +13654,4017,Oscar (Best Supporting Actress),1417942649 +13654,4027,Coen Brothers,1416857350 +13654,4027,modern classic,1416857405 +13654,4027,notable soundtrack,1416857366 +13654,4034,confrontational,1419157240 +13654,4034,Criterion,1419157192 +13654,4034,drug trafficking,1419157206 +13654,4034,ensemble cast,1419157198 +13654,4034,interconnection,1419157423 +13654,4034,politics,1419157209 +13654,4034,social commentary,1419157194 +13654,4034,Steven Soderbergh,1419157189 +13654,4034,sweeping,1419157267 +13654,4035,frontier town,1415935508 +13654,4037,con men,1416746933 +13654,4037,David Mamet,1416746908 +13654,4077,psychological,1422186147 +13654,4077,suspenseful,1422186227 +13654,4108,crime,1415937839 +13654,4108,Independent Spirit Award,1415937781 +13654,4108,quirky,1415937888 +13654,4108,understated,1415937911 +13654,4132,80's cheese,1422812654 +13654,4175,one man show.,1414678681 +13654,4216,AIDS,1418131323 +13654,4216,gay,1418131316 +13654,4218,1980s,1416397185 +13654,4218,cult classic,1416397213 +13654,4218,juvenile deliquent,1416397242 +13654,4218,social commentary,1416397151 +13654,4226,captivating,1430579928 +13654,4226,cerebral,1415490366 +13654,4226,investigation,1430579843 +13654,4226,mystery,1415490324 +13654,4226,nonlinear,1430579869 +13654,4226,original,1430579885 +13654,4226,storytelling,1430579958 +13654,4226,stylized,1415490377 +13654,4273,Charlotte Rampling,1415939141 +13654,4273,contemplative,1415939248 +13654,4273,gentle,1415939176 +13654,4273,Haunting,1415939137 +13654,4280,adapted from:book,1415936282 +13654,4280,black comedy,1415936707 +13654,4280,familial relationships,1415936419 +13654,4280,feminism,1415936994 +13654,4280,modern classic,1415937101 +13654,4308,Baz Luhrmann,1418128222 +13654,4308,colourful,1418128360 +13654,4308,musical,1418128547 +13654,4308,quirky,1418128524 +13654,4308,sentimental,1418128534 +13654,4308,stylized,1418128191 +13654,4308,visually stunning,1418128239 +13654,4318,drug problem,1422813579 +13654,4318,family dynamics,1422813512 +13654,4318,Hollywood,1416741529 +13654,4318,Mike Nichols,1416741334 +13654,4318,mother-daughter,1422813361 +13654,4318,recovery,1418311633 +13654,4318,starting over,1416741510 +13654,4345,ensemble cast,1415938962 +13654,4345,Hollywood,1415939049 +13654,4345,lively,1415939038 +13654,4345,smart comedy,1415939025 +13654,4356,classic,1420632197 +13654,4357,classic,1420632495 +13654,4359,delightful,1417954312 +13654,4359,sexy,1417954165 +13654,4359,witty,1417954199 +13654,4378,crime,1430572981 +13654,4378,menacing,1430572932 +13654,4378,redemption,1430572993 +13654,4380,beautiful,1416403137 +13654,4380,loneliness,1416403119 +13654,4380,redemption,1416403188 +13654,4410,Criterion,1417950814 +13654,4410,Jonathan Demme,1417967427 +13654,4410,opposites attract,1417951316 +13654,4410,quirky charm,1417951510 +13654,4410,road trip,1417967422 +13654,4439,biography,1418130217 +13654,4439,David Bowie,1418130276 +13654,4439,drug abuse,1418130314 +13654,4439,realism,1418130333 +13654,4450,authentic,1416396174 +13654,4450,Bijou Phillips,1416396577 +13654,4450,bullying,1416396558 +13654,4450,exploitation,1416396516 +13654,4450,Larry Clark,1416396100 +13654,4450,social commentary,1416399973 +13654,4450,true story,1416396113 +13654,4450,unflinching,1416396673 +13654,4464,adapted from:book,1415939937 +13654,4464,Anne Tyler,1415940003 +13654,4464,quirky,1415939968 +13654,4464,the human condition,1415939984 +13654,4518,camp,1415929458 +13654,4518,cult classic,1415930961 +13654,4518,horror,1415929529 +13654,4518,Ken Russell,1415929435 +13654,4518,sexual themes,1415930241 +13654,4518,surreal,1415929427 +13654,4538,Ken Russell,1415928432 +13654,4546,cerebral,1418136673 +13654,4546,Criterion,1418136652 +13654,4546,deliberate,1418136839 +13654,4546,devastating,1418546291 +13654,4546,disturbing,1418136638 +13654,4546,kidnapping,1418136740 +13654,4546,macabre,1418136657 +13654,4546,mystery,1418136833 +13654,4546,Obsession,1418136649 +13654,4546,suspenseful,1422186280 +13654,4553,allegory,1418122316 +13654,4553,campy,1418122320 +13654,4553,Cult classic,1418122166 +13654,4553,cult film,1418122313 +13654,4553,dystopia,1418122170 +13654,4553,John Carpenter,1418122163 +13654,4553,sci-fi,1418122236 +13654,4553,social satire,1418122314 +13654,4555,authenticity,1418131099 +13654,4555,breakthroughs,1418131049 +13654,4555,gay,1418131263 +13654,4555,romantic comedy,1418131281 +13654,4555,socially relevant,1418131015 +13654,4570,film industry,1430568742 +13654,4570,satire,1430568448 +13654,4599,biopic,1418133119 +13654,4599,interesting story,1418133145 +13654,4599,Jerry Lee Lewis,1418133118 +13654,4641,adolescence,1419911217 +13654,4641,based on a comic,1416857755 +13654,4641,bittersweet,1419911236 +13654,4641,deadpan,1416857704 +13654,4641,disaffected,1418659467 +13654,4641,eccentric,1418659620 +13654,4641,suburbia,1416857694 +13654,4641,Terry Zwigoff,1418659484 +13654,4642,based on a play,1418128780 +13654,4642,bittersweet,1418128911 +13654,4642,campy,1418128761 +13654,4642,cult film,1418128733 +13654,4642,fascinating protagonist,1418128872 +13654,4642,musical,1418128707 +13654,4642,queer,1418128884 +13654,4642,quirky,1418128769 +13654,4642,Rock Opera,1418128730 +13654,4642,stylized,1418128755 +13654,4661,detective,1415497951 +13654,4661,thriller,1415497741 +13654,4671,confrontational,1419155673 +13654,4671,Jane Campion,1419155666 +13654,4671,quirky,1419155660 +13654,4671,siblings,1419155892 +13654,4671,wry,1419155658 +13654,4679,80's classic,1422811309 +13654,4679,family dynamics,1422811284 +13654,4679,John Hughes,1422811276 +13654,4713,Ken Russell,1415928909 +13654,4713,psychedelic,1415928930 +13654,4713,science fiction,1415929138 +13654,4720,alternate reality,1415498321 +13654,4720,atmospheric,1414684458 +13654,4720,clever,1414684519 +13654,4720,mystery,1414684472 +13654,4734,in-jokes,1430566767 +13654,4734,juvenile,1430566689 +13654,4734,Kevin Smith,1430566651 +13654,4734,spoof,1430566642 +13654,4754,cult film,1419173670 +13654,4754,enigmatic,1419173663 +13654,4754,Hammer Film Productions,1419173684 +13654,4754,proper british horror,1419173737 +13654,4848,art house,1415931964 +13654,4848,David Lynch,1415931907 +13654,4848,Enigmatic,1430579117 +13654,4848,Erotic,1415931970 +13654,4848,Mindfuck,1415931922 +13654,4848,movie business,1415932047 +13654,4848,mystery,1414689052 +13654,4848,neo-noir,1430579435 +13654,4848,nonlinear,1414689010 +13654,4848,phantasmagoric,1430579513 +13654,4848,stylized,1415931937 +13654,4848,surreal,1414689027 +13654,4848,thriller,1415931930 +13654,4848,visually appealing,1415931917 +13654,4851,character study,1414737423 +13654,4851,compelling,1414737391 +13654,4851,courageous,1417966735 +13654,4851,independent film,1414737651 +13654,4851,sexual assault,1414738436 +13654,4851,survivor,1414738206 +13654,4873,alternate reality,1422810633 +13654,4873,cerebral,1422810509 +13654,4873,existentialism,1422810435 +13654,4873,philosophy,1422810451 +13654,4873,Richard Linklater,1422810607 +13654,4873,stylized,1422810557 +13654,4881,black and white,1419168110 +13654,4881,Coen Brothers,1416857255 +13654,4903,intimate,1414685297 +13654,4903,riveting,1414685299 +13654,4903,understated,1417939865 +13654,4975,Cameron Crowe,1420889378 +13654,4975,existentialism,1420889048 +13654,4975,fascinating,1420889276 +13654,4975,mindfuck,1420889043 +13654,4975,psychology,1430578837 +13654,4975,sci-fi,1420889385 +13654,4975,stylized,1420889311 +13654,4975,surreal,1420889038 +13654,5015,dramatic irony,1418125378 +13654,5015,interracial romance,1418125255 +13654,5015,race relations,1430586865 +13654,5015,redemption,1418125382 +13654,5015,small town,1418125376 +13654,5015,tragedy,1430586857 +13654,5034,Anthony Minghella,1418312121 +13654,5034,charming,1416206238 +13654,5034,ghosts/afterlife,1418312109 +13654,5074,black comedy,1415939839 +13654,5074,social commentary,1415939776 +13654,5074,thought-provoking,1414854804 +13654,5074,Todd Solondz,1415939823 +13654,5101,Stand-up comedy,1424556493 +13654,5110,cult classic,1430566926 +13654,5110,highly quotable,1430566890 +13654,5110,off-beat comedy,1430567036 +13654,5110,shenanigans,1430567696 +13654,5110,spoof,1430566921 +13654,5122,black and white,1414678334 +13654,5122,coming of age,1414678335 +13654,5266,suspenseful,1415498149 +13654,5297,satirical,1417954035 +13654,5297,witty,1417954030 +13654,5297,wry,1417954074 +13654,5298,Charlie Kaufman,1417961041 +13654,5298,dark comedy,1417961046 +13654,5298,Michel Gondry,1417961061 +13654,5298,psychology,1418057576 +13654,5298,quirky,1417961050 +13654,5298,satire,1417961058 +13654,5298,social commentary,1417961072 +13654,5325,documentary,1414729632 +13654,5325,history,1414729652 +13654,5339,marriage,1416849612 +13654,5339,midlife crisis,1416849596 +13654,5339,relationships,1416849604 +13654,5339,Woody Allen,1416849610 +13654,5445,dystopia,1414728667 +13654,5445,mystery,1418649744 +13654,5445,Philip K. Dick,1418649720 +13654,5445,Precognition,1418649731 +13654,5450,Nicole Holofcener,1417940731 +13654,5450,siblings,1415938518 +13654,5450,sisterhood,1415938491 +13654,5450,the human condition,1415938510 +13654,5508,music business,1416403576 +13654,5508,new wave,1416403571 +13654,5508,true story,1416403578 +13654,5618,alternate reality,1417973901 +13654,5618,beautiful,1417973907 +13654,5618,fairy tale,1417973914 +13654,5618,fantasy,1418058330 +13654,5618,Hayao Miyazaki,1417973893 +13654,5618,imaginative,1418058250 +13654,5618,Studio Ghibli,1417973891 +13654,5618,surreal,1418058228 +13654,5673,Paul Thomas Anderson,1417961825 +13654,5673,unconventional,1417961956 +13654,5679,creepy,1417979722 +13654,5679,horror,1417979715 +13654,5679,paranormal,1417979731 +13654,5684,Criterion,1417958171 +13654,5684,trilogy,1417958181 +13654,5690,orphans,1417974237 +13654,5690,Studio Ghibli,1417974207 +13654,5690,World War II,1417974209 +13654,5712,Brian De Palma,1422186980 +13654,5712,Criterion,1422186989 +13654,5712,mystery,1422187024 +13654,5752,charming,1418311413 +13654,5752,light,1418311390 +13654,5752,sweet,1418311393 +13654,5875,multiple storylines,1418127161 +13654,5893,femme fatale,1418545327 +13654,5893,well written,1418545425 +13654,5902,meta,1417938494 +13654,5902,Spike Jonze,1417938365 +13654,5902,writing process,1417938446 +13654,5911,documentary,1439364096 +13654,5911,new wave,1439364070 +13654,5911,post-punk,1439364073 +13654,5914,Errol Morris,1418030534 +13654,5932,documentary,1439362210 +13654,5945,dark comedy,1418131913 +13654,5945,existential crises,1418132047 +13654,5945,loneliness,1418131919 +13654,5945,meaning of life,1418131927 +13654,5945,road trip,1418131915 +13654,5971,anime,1414737160 +13654,5971,country life,1417974003 +13654,5971,family,1418058377 +13654,5971,Hayao Miyazaki,1417973971 +13654,5971,nature spirits,1418058429 +13654,5971,spirits,1417974013 +13654,5971,Studio Ghibli,1417973969 +13654,5971,visually appealing,1418058385 +13654,6003,biographical,1417961115 +13654,6003,Charlie Kaufman,1417961115 +13654,6003,double life,1417961124 +13654,6062,behind the scenes,1418039236 +13654,6062,hilarious,1418039060 +13654,6062,movie business,1418039248 +13654,6122,stand-up comedy,1422814069 +13654,6214,brutality,1416851818 +13654,6214,graphic violence,1415872761 +13654,6214,mindfuck,1415872904 +13654,6214,rape,1415872759 +13654,6214,reverse timeline,1415872710 +13654,6270,Akira Kurosawa,1417958296 +13654,6270,dreamlike,1417958316 +13654,6270,episodic,1417958322 +13654,6270,Japan,1417958337 +13654,6270,lyrical,1417958891 +13654,6270,visually appealing,1417958353 +13654,6272,crime,1418063211 +13654,6272,poignant,1418063371 +13654,6272,psychological drama,1418063318 +13654,6272,small town,1418063135 +13654,6272,tragic,1418063353 +13654,6303,author:Michael Crichton,1418123159 +13654,6303,sci-fi,1418123172 +13654,6323,multiple storylines,1415498240 +13654,6323,mystery,1415498247 +13654,6323,thriller,1415498258 +13654,6327,documentary,1439362416 +13654,6327,movie business,1439362448 +13654,6341,manipulation,1422816540 +13654,6380,falsely accused,1418070824 +13654,6440,Coen Brothers,1415955256 +13654,6440,Enigmatic,1415955290 +13654,6440,quirky,1415955261 +13654,6440,stylized,1415955268 +13654,6440,wry,1415955311 +13654,6442,polyamory,1414856127 +13654,6466,interacial romance,1418314518 +13654,6510,ensemble cast,1416398963 +13654,6510,existential crises,1416398920 +13654,6510,lighthearted,1416399119 +13654,6510,understated,1416398825 +13654,6530,alienation,1415933619 +13654,6530,atmospheric,1415933641 +13654,6530,psychological horror,1415530216 +13654,6530,Roman Polanski,1415933653 +13654,6530,unreliable narrators,1415533488 +13654,6596,cultural differences,1422726924 +13654,6596,family relationships,1422726800 +13654,6596,siblings,1422726831 +13654,6662,Blake Edwards,1419175219 +13654,6662,farce,1419175206 +13654,6663,Blake Edwards,1419175143 +13654,6663,farce,1419174525 +13654,6663,slapstick,1419174508 +13654,6678,based on a book,1418546757 +13654,6678,cautionary tale,1418546922 +13654,6678,compelling,1418546839 +13654,6678,dystopia,1418546754 +13654,6678,fascinating,1418547098 +13654,6678,great performances,1418546776 +13654,6774,body horror,1415931544 +13654,6774,David Cronenberg,1415931540 +13654,6774,mystery,1415931613 +13654,6774,surreal,1415931548 +13654,6870,crime,1416144714 +13654,6870,Dark,1416144691 +13654,6870,family,1416144818 +13654,6870,great acting,1416144708 +13654,6870,mystery,1416144709 +13654,6870,Oscar (Best Actor),1416144735 +13654,6870,Oscar Nominee: Director,1420887232 +13654,6870,working class,1416144779 +13654,6927,100 Essential Female Performances,1416071861 +13654,6927,interpersonal relationships,1416071970 +13654,6927,secrets,1416071993 +13654,6934,action,1415489634 +13654,6934,alternate reality,1415489416 +13654,6934,dystopia,1415489553 +13654,6934,Philosophical,1415489570 +13654,6934,sci-fi,1415489585 +13654,6963,compelling,1418038689 +13654,6963,fair,1418038692 +13654,6963,fascinating,1418038757 +13654,6963,unflinching,1418038864 +13654,6978,deadpan,1418647844 +13654,6978,irreverent,1418647843 +13654,6993,dialogue driven,1416849516 +13654,6993,family,1422703273 +13654,6993,human nature,1422703279 +13654,6993,Manhattan,1416849559 +13654,6993,realistic female character(s),1416849526 +13654,6993,relationships,1422807445 +13654,6993,Woody Allen,1416849500 +13654,7042,sexuality,1416743735 +13654,7042,star crossed lovers,1416744328 +13654,7071,Criterion,1416850033 +13654,7071,disfunctional family,1416850577 +13654,7071,intimate,1416850055 +13654,7071,poignant,1416850050 +13654,7073,AFI 100 (Laughs),1419174873 +13654,7073,Blake Edwards,1419174898 +13654,7073,Peter Sellers,1419174902 +13654,7073,slapstick,1419174886 +13654,7090,atmospheric,1419911928 +13654,7090,cinematography,1419911681 +13654,7090,Epic,1419911694 +13654,7090,lyrical,1419911742 +13654,7090,martial arts,1419911689 +13654,7090,passionate,1419911919 +13654,7090,stunning,1419911759 +13654,7090,stylized,1419911710 +13654,7090,visually appealing,1419911735 +13654,7099,anime,1418057837 +13654,7099,dystopic future,1417973572 +13654,7099,earnest,1417973446 +13654,7099,ecology,1417973462 +13654,7099,fantasy,1417973211 +13654,7099,Hayao Miyazaki,1417973185 +13654,7099,post-apocalyptic,1417973187 +13654,7099,sci-fi,1417973226 +13654,7099,strong female lead,1417973270 +13654,7099,Studio Ghibli,1417973181 +13654,7116,classic,1418061346 +13654,7116,Criterion,1418061353 +13654,7116,mystery,1418061403 +13654,7116,suspense,1418061344 +13654,7123,Criterion,1416854448 +13654,7123,David Cronenberg,1416854435 +13654,7123,hallucinatory,1418662691 +13654,7123,surreal,1418662674 +13654,7123,william s. burroughs,1418662667 +13654,7151,17th century,1419158000 +13654,7151,artists,1419158158 +13654,7151,class society,1419158044 +13654,7151,colourful,1419158013 +13654,7151,costume drama,1415434819 +13654,7151,Netherlands,1419158063 +13654,7151,painter,1419158092 +13654,7151,visually appealing,1415434799 +13654,7151,visually stunning,1419158073 +13654,7156,Errol Morris,1418030241 +13654,7156,History,1418030248 +13654,7156,reflective,1418030254 +13654,7156,thought provoking,1418030252 +13654,7156,Vietnam War,1418030245 +13654,7158,adapted from:book,1430586147 +13654,7158,cultural differences,1430586139 +13654,7158,great performances,1430586121 +13654,7158,heartbreaking,1416852082 +13654,7158,poignant,1416852183 +13654,7265,Bernardo Bertolucci,1416743520 +13654,7265,boheme,1416743484 +13654,7265,cineastic,1416743537 +13654,7265,controversial,1416743510 +13654,7265,erotic,1416743475 +13654,7265,Paris,1416743479 +13654,7305,crime,1414936611 +13654,7305,detective,1414936534 +13654,7305,great performances,1418545770 +13654,7305,mystery,1414936627 +13654,7305,psychological thriller,1418545582 +13654,7361,alternate reality,1417961218 +13654,7361,beautiful,1417961246 +13654,7361,bittersweet,1417961243 +13654,7361,Charlie Kaufman,1417961193 +13654,7361,complicated,1417961252 +13654,7361,cult film,1430578620 +13654,7361,imagination,1417961211 +13654,7361,Michel Gondry,1417961286 +13654,7361,nonlinear,1414729732 +13654,7361,philosophy,1417961198 +13654,7361,relationships,1417961235 +13654,7361,surreal,1430578605 +13654,7361,thought-provoking,1417961229 +13654,7371,art house,1416856121 +13654,7371,austere,1416856022 +13654,7371,experimental,1414730453 +13654,7371,Lars von Trier,1416855843 +13654,7371,philosophical,1416856208 +13654,7371,social commentary,1414730322 +13654,7460,dialogue driven,1416853912 +13654,7460,episodic,1416853916 +13654,7460,Jim Jarmusch,1416853927 +13654,7460,minimalist,1416853937 +13654,7478,Jonathan Demme,1417951634 +13654,7478,one man show,1417951645 +13654,7478,style:monologue,1417951668 +13654,7481,aliens,1418122629 +13654,7481,sci-fi,1418122715 +13654,7481,space,1418122712 +13654,7481,stranded,1418122720 +13654,7481,war,1418122638 +13654,7482,Bruce Lee,1418058963 +13654,7482,kung fu,1418058971 +13654,7493,Dissociative identity disorder,1419173383 +13654,7493,Multiple Personality Disorder,1419173373 +13654,7493,Psychology,1419173377 +13654,7613,intimate,1417955924 +13654,7613,unconventional love story,1417956669 +13654,7615,good film,1418544652 +13654,7615,lesbian,1418544676 +13654,7615,self discovery,1418544700 +13654,7619,adapted from:play,1419173511 +13654,7619,fortitude,1419173503 +13654,7669,19th century,1415923896 +13654,7669,comedy of manners,1415923901 +13654,7669,period drama,1415923893 +13654,7669,romantic,1415923920 +13654,7878,Alex Cox,1416854251 +13654,7878,black comedy,1416854303 +13654,7878,camp,1416854322 +13654,7878,cult film,1416854271 +13654,7879,Margaret Cho,1419163920 +13654,7879,stand-up comedy,1430576837 +13654,7934,mockumentary,1418069352 +13654,7934,spoof,1418069362 +13654,7934,Woody Allen,1418069350 +13654,7984,H.P. Lovecraft,1415930410 +13654,7984,mad scientist,1415930388 +13654,8183,lovely film,1418311576 +13654,8261,100 Essential Female Performances,1415932451 +13654,8261,atmospheric,1415932289 +13654,8261,Criterion,1415932331 +13654,8261,deliberate,1415932323 +13654,8261,disturbing,1430587382 +13654,8261,original,1415932480 +13654,8261,Robert Altman,1415932370 +13654,8261,stylized,1415932276 +13654,8261,unpredictable,1415932243 +13654,8261,weird,1430587385 +13654,8270,devotion,1416744550 +13654,8270,understated,1416744424 +13654,8273,passionate,1416744873 +13654,8273,romance,1416744879 +13654,8400,irrepressible,1418311330 +13654,8400,quotable,1418311327 +13654,8507,black and white,1419252676 +13654,8507,cult classic,1419252651 +13654,8582,accessible,1418036965 +13654,8582,Chomsky,1418031232 +13654,8582,enlightening,1418036642 +13654,8582,politics of media,1418032325 +13654,8596,Blake Edwards,1419175072 +13654,8596,classic,1419175061 +13654,8596,farce,1419175054 +13654,8623,fun,1422811899 +13654,8623,light-hearted,1422811941 +13654,8783,Atmospheric,1417963575 +13654,8783,compelling,1417963886 +13654,8783,fascinating,1417964160 +13654,8783,riveting,1417964459 +13654,8783,secrets,1417964372 +13654,8783,suspense,1417964374 +13654,8783,thought-provoking,1417963618 +13654,8807,shenanigans,1430567480 +13654,8807,stoner comedy,1430567473 +13654,8910,corporate culture,1430569422 +13654,8910,David O. Russell,1417959748 +13654,8910,ensemble cast,1430569544 +13654,8910,existentialism,1414732989 +13654,8910,funny,1414733068 +13654,8910,intelligent,1414733015 +13654,8910,nihilism,1417959769 +13654,8910,off-beat comedy,1430569405 +13654,8910,original,1430569482 +13654,8910,philosophy,1414732970 +13654,8910,psychology,1430569413 +13654,8910,stylized,1414733007 +13654,8910,whimsical,1417959677 +13654,8914,cerebral,1420890174 +13654,8914,complex,1430578927 +13654,8914,indie,1430578899 +13654,8914,mindfuck,1420890182 +13654,8914,paradox,1420890248 +13654,8914,physics,1430579004 +13654,8914,science fiction,1430578998 +13654,8914,thought-provoking,1420890170 +13654,8950,atmospheric,1418136920 +13654,8950,compelling,1418137127 +13654,8950,eerie,1418136910 +13654,8950,fascinating,1415492572 +13654,8950,great acting,1415931780 +13654,8950,mystery,1415490479 +13654,8950,psychological,1415490885 +13654,8950,puzzle,1418137026 +13654,8950,riveting,1418136956 +13654,8950,stylized,1418136923 +13654,26241,avant-gard,1415928262 +13654,26241,controversial,1415931480 +13654,26241,cult classic,1415931423 +13654,26241,Ken Russell,1415928053 +13654,26241,Nudity (Full Frontal),1415931462 +13654,26241,religion,1415931456 +13654,26241,sexual themes,1415931390 +13654,26241,surreal,1415931330 +13654,26285,campy,1418122072 +13654,26285,cult film,1418122041 +13654,26285,Directorial Debut,1418122049 +13654,26285,John Carpenter,1418122079 +13654,26285,scifi,1418122042 +13654,26285,spoof,1418122113 +13654,26394,ballet,1420634824 +13654,26394,coming of age,1420634924 +13654,26400,Errol Morris,1418030492 +13654,26471,stand-up comedy,1430577271 +13654,26494,outsiders,1418125940 +13654,26494,punks,1418126001 +13654,26494,subculture,1418125968 +13654,26494,survival,1418126015 +13654,26617,comic books,1419163318 +13654,26617,documentary,1419163313 +13654,26617,history,1419163334 +13654,26662,Miyazaki,1418058177 +13654,26662,Studio Ghibli,1417974580 +13654,26729,documentary,1414733159 +13654,26838,Catholicism,1418127225 +13654,26838,father daughter relationship,1418124961 +13654,26838,humanist,1418124973 +13654,26838,Irish,1418124947 +13654,26838,Stephen Frears,1418124956 +13654,26838,working class,1418124941 +13654,26965,austere,1416747071 +13654,26965,Daniel Day-Lewis,1416747002 +13654,26965,gritty,1416746993 +13654,26965,Ireland,1416747003 +13654,27020,AIDS,1418129907 +13654,27020,based on a true story,1418129866 +13654,27020,LGBT,1418129864 +13654,27246,lesbian,1418544405 +13654,27246,made for TV,1418544407 +13654,27334,Documentary,1422901520 +13654,27334,interesting,1422901562 +13654,27647,based on book,1418121810 +13654,27647,LGBT,1418121868 +13654,27731,anime,1417972549 +13654,27731,cats,1417974083 +13654,27731,Hiroyuki Morita,1418057958 +13654,27731,Studio Ghibli,1417972546 +13654,27846,capitalism,1418037214 +13654,27846,edifying,1418037874 +13654,27846,informative,1418037309 +13654,27846,interesting,1418037612 +13654,27846,Noam Chomsky,1418037195 +13654,27846,relevant,1418037967 +13654,27846,useful,1418037824 +13654,27904,adapted from:book,1416397802 +13654,27904,based on a book,1416397676 +13654,27904,cerebral,1416397736 +13654,27904,Philip K. Dick,1416397701 +13654,27904,philosophical,1416397683 +13654,27904,sci-fi,1416397669 +13654,27904,social commentary,1416397685 +13654,27904,stylized,1416397692 +13654,27904,surreal,1416397663 +13654,27904,visually appealing,1416397827 +13654,30723,artist,1430587667 +13654,30723,brothers,1430587657 +13654,30723,Robert Altman,1430587585 +13654,31658,alter ego,1417972878 +13654,31658,anime,1418057910 +13654,31658,fanciful,1417972668 +13654,31658,Hayao Miyazaki,1417972648 +13654,31658,journey,1417972935 +13654,31658,magic,1417972851 +13654,31658,self discovery,1417972802 +13654,31658,steampunk,1417972846 +13654,31658,Studio Ghibli,1417972623 +13654,31658,stylized,1418057893 +13654,31658,wizards,1417974048 +13654,31804,alternate reality,1416401714 +13654,31804,atmospheric,1416401716 +13654,31804,offbeat,1416401744 +13654,31804,Russian,1416401731 +13654,32456,Studio Ghibli,1418058129 +13654,32587,adapted from:comic,1418313445 +13654,32587,artistic,1418313580 +13654,32587,atmospheric,1418313397 +13654,32587,author:Frank Miller,1419166194 +13654,32587,black comedy,1418313401 +13654,32587,brutality,1418313574 +13654,32587,crime,1418313548 +13654,32587,Frank Miller,1418313420 +13654,32587,gritty,1418313489 +13654,32587,multiple storylines,1418313394 +13654,32587,narrated,1418313591 +13654,32587,Neo-noir,1419166137 +13654,32587,Robert Rodriguez,1419166182 +13654,32587,storytelling,1419166148 +13654,32587,stylized,1418313392 +13654,32587,stylized violence,1419166230 +13654,32587,surreal,1418313463 +13654,32587,violent,1418313560 +13654,32587,visually appealing,1418313404 +13654,32587,visually stunning,1419166234 +13654,32646,behind the scenes,1418041400 +13654,32646,concert tour,1418041398 +13654,32646,Sting,1418041436 +13654,32657,beautiful,1414739377 +13654,33437,Jet Li,1418059139 +13654,33437,loss,1418059170 +13654,33437,martial arts,1418059162 +13654,33437,psychology,1418059141 +13654,33779,highly quotable,1422814731 +13654,33779,Stand-up comedy,1424608519 +13654,34405,sci-fi,1414728631 +13654,34528,art world,1418547510 +13654,34528,class differences,1418547445 +13654,34528,familial relationships,1418547482 +13654,36523,Margaret Cho,1419163847 +13654,36523,stand-up comedy,1419163860 +13654,36523,unflinching,1422814478 +13654,37741,biopic,1414689473 +13654,37741,character study,1414689479 +13654,37741,great performances,1417942558 +13654,37741,Oscar (Best Actor),1417942544 +13654,37741,Philip Seymour Hoffman,1417942518 +13654,37741,thought provoking,1414689492 +13654,37741,Truman Capote,1417942530 +13654,38886,character driven,1417939342 +13654,38886,dark comedy,1417939333 +13654,38886,divorce,1430586339 +13654,38886,dysfunctional family,1417939339 +13654,38886,Noah Baumbach,1417939348 +13654,38886,relationships,1417939337 +13654,38886,smart comedy,1430586287 +13654,40148,clever,1419914331 +13654,40148,crime,1419914328 +13654,40148,cryptic,1419914315 +13654,40148,existentialism,1419914340 +13654,40148,visually appealing,1419914335 +13654,40819,biopic,1430570902 +13654,40819,bittersweet,1418133643 +13654,40819,captivating,1418133541 +13654,40819,compelling,1418133584 +13654,40819,great performances,1418133602 +13654,40819,Johnny Cash,1418133458 +13654,40819,music,1418133681 +13654,40819,musicians,1418133491 +13654,40952,family dynamics,1416071594 +13654,40952,spelling bee,1416071610 +13654,41285,plodding,1422806384 +13654,41285,slow,1422806228 +13654,42163,stand-up comedy,1430577401 +13654,42418,beautiful,1414689632 +13654,42418,cinematography,1414689635 +13654,42418,contemplative,1414681903 +13654,42418,gentle,1414681903 +13654,44761,clever,1414820809 +13654,44761,detective movie,1416847663 +13654,44761,self-mocking,1419166059 +13654,44761,stylized,1414820801 +13654,44761,unconventional,1414820818 +13654,44864,Bechdel Test:Pass,1417940970 +13654,44864,marriage,1417940850 +13654,44864,Nicole Holofcener,1417940820 +13654,44864,relationships,1417940838 +13654,44864,social satire,1417940953 +13654,45720,hilarious,1417966536 +13654,45720,social satire,1417966338 +13654,45928,business is the antagonist,1418034429 +13654,45928,corruption,1418034433 +13654,45928,engineering,1418034412 +13654,45928,innovation,1418034402 +13654,45928,revealing,1418034457 +13654,45928,sustainability,1418034406 +13654,47099,bittersweet,1418314356 +13654,47099,earnest,1418314311 +13654,47099,father-son relationship,1418314309 +13654,47629,biopic,1418124652 +13654,47629,British royal family,1418124750 +13654,47629,House of Windsor,1418124691 +13654,47629,seamless impersonation of a historical figure,1418124710 +13654,47629,Stephen Frears,1418124657 +13654,47629,understated,1418124724 +13654,47950,neo-noir,1421936842 +13654,48304,brutality,1416145080 +13654,48304,cinematography,1416145083 +13654,48304,epic,1416145306 +13654,48304,history,1416145089 +13654,48304,riveting,1416145159 +13654,48304,survival,1416145118 +13654,48304,suspense,1416145085 +13654,48696,austere,1417939782 +13654,48696,deliberate,1417939649 +13654,48696,great performances,1417940093 +13654,48696,irreverent,1414821434 +13654,48696,multiple layers,1417939405 +13654,48696,social satire,1417939518 +13654,48696,suburbia,1414821460 +13654,48696,thought-provoking,1414821399 +13654,48696,Todd Field,1430571410 +13654,48744,beautiful,1416208785 +13654,48744,bisexual,1416741925 +13654,48744,Brooklyn,1418661448 +13654,48744,controversial,1416208632 +13654,48744,erotic,1416741922 +13654,48744,gay,1418661435 +13654,48744,group sex,1418128958 +13654,48744,heartwarming,1416208648 +13654,48744,hilarious,1418129086 +13654,48744,inclusive,1418661495 +13654,48744,irreverent,1418129001 +13654,48744,John Cameron Mitchell,1418128935 +13654,48744,lesbian,1418661444 +13654,48744,New York City,1416208651 +13654,48744,queer,1418661423 +13654,48744,raunchy,1416741928 +13654,48744,relationships,1416208676 +13654,48744,sexuality,1416208614 +13654,48744,social commentary,1416208628 +13654,48744,uplifting,1416742046 +13654,49272,espionage,1415496909 +13654,49272,intrigue,1415497124 +13654,49932,David Lynch,1415932098 +13654,49932,disturbing,1415932095 +13654,49932,mindfuck,1417968206 +13654,49932,surreal,1415932092 +13654,49932,weird,1415932104 +13654,50005,China,1418640464 +13654,50005,cinematography,1418640923 +13654,50005,martial arts,1418641749 +13654,50005,political intrigues,1418640834 +13654,50005,power struggle,1418641444 +13654,50005,secrets,1418640510 +13654,50005,stylized,1418640930 +13654,50005,visually stunning,1418641548 +13654,50802,family relationships,1418313082 +13654,50802,quirky,1418313062 +13654,51127,honest,1439363837 +13654,51127,intimate,1439363852 +13654,51127,music documentary,1439363836 +13654,51127,rockumentary,1439363821 +13654,51540,based on a true story,1420634069 +13654,51540,cinematography,1420634115 +13654,51540,crime,1420634547 +13654,51540,David Fincher,1420634072 +13654,51540,investigation,1420634067 +13654,51540,investigative journalism,1420634093 +13654,51540,obsession,1420634099 +13654,51540,stylized,1420634127 +13654,52885,alternate reality,1417973756 +13654,52885,anime,1417973707 +13654,52885,dreams,1417973714 +13654,52885,metafiction,1417973811 +13654,52885,psychedellic,1417973749 +13654,52885,surreal,1417973736 +13654,52950,atmospheric,1416401839 +13654,52950,Russian,1416401863 +13654,52950,sequel,1416401845 +13654,52950,surreal,1416401841 +13654,53002,family relationships,1421936965 +13654,53002,generations,1421936970 +13654,54190,Beatles soundtrack,1418128582 +13654,54190,extremely creative,1418128578 +13654,54190,Julie Taymor,1418128573 +13654,54190,musical,1418128587 +13654,54190,stylized,1418128605 +13654,54190,visually appealing,1418128591 +13654,54771,aliens,1421579053 +13654,54771,epidemic,1421579049 +13654,54771,remake,1421579037 +13654,54962,alternate reality,1425167531 +13654,55031,Kevin Smith,1430577475 +13654,55031,storytelling,1430577524 +13654,55061,Daft Punk,1418044333 +13654,55118,complex,1414820400 +13654,55118,dark hero,1417959149 +13654,55118,David Cronenberg,1416145624 +13654,55118,riveting,1414820279 +13654,55118,Russian mafia,1414851237 +13654,55253,Ang Lee,1418639453 +13654,55253,Chinese culture,1418639486 +13654,55253,erotic,1418639431 +13654,55253,espionage,1418639435 +13654,55253,intrigue,1418639557 +13654,55253,politics,1418639443 +13654,55253,World War II,1418639426 +13654,55269,cinematography,1416399512 +13654,55269,dysfunctional family,1416399499 +13654,55269,family dynamics,1416399537 +13654,55269,India,1416399519 +13654,55269,road movie,1416399502 +13654,55269,trains,1416399508 +13654,55269,Wes Anderson,1416399494 +13654,55280,cute,1415939373 +13654,55280,idealistic,1415939476 +13654,55280,quirky,1415939356 +13654,55280,small town,1415939425 +13654,55280,sweet,1415939440 +13654,55280,weird,1415939391 +13654,55805,acting,1416144583 +13654,55805,compelling,1430571789 +13654,55805,ensemble cast,1414853450 +13654,55805,human fallibility,1430571787 +13654,55805,multiple perspectives,1414858492 +13654,55805,Philip Seymour Hoffman,1430571832 +13654,55805,Sidney Lumet,1430571831 +13654,56251,intelligent humor,1422815818 +13654,56367,Bechdel Test:Pass,1418283459 +13654,56367,cult film,1418283464 +13654,56367,independent film,1418283270 +13654,56367,inimitable,1418283513 +13654,56367,unconventional,1418283374 +13654,56367,witty,1418283264 +13654,56782,ambition,1430585244 +13654,56782,capitalism,1430585247 +13654,56782,morality,1430585569 +13654,56782,Oscar (Best Cinematography),1430585561 +13654,56782,Paul Thomas Anderson,1416856555 +13654,56782,religion,1430585346 +13654,56782,western,1430585583 +13654,58191,edifying,1418038586 +13654,58191,expose,1418033100 +13654,58191,revealing,1418033077 +13654,58376,eye-opening,1418039657 +13654,59018,beautiful,1422185794 +13654,59018,great acting,1422185883 +13654,59018,humanity,1422185788 +13654,59018,real,1422185842 +13654,59022,sequel,1430567563 +13654,59022,social commentary,1430567592 +13654,59022,stoner comedy,1430567573 +13654,60161,alternate reality,1422815857 +13654,60161,intelligent humor,1422815847 +13654,60950,love triangles,1422703459 +13654,60950,narrated,1422703452 +13654,60950,philosophical,1422703481 +13654,60950,relationships,1422703450 +13654,60950,Woody Allen,1422703438 +13654,61167,Existential Crisis,1416740109 +13654,61167,magical realism,1416740293 +13654,61729,funny,1421422235 +13654,61729,interesting story,1421422243 +13654,61729,misanthrope,1421422233 +13654,62511,Charlie Kaufman,1416851214 +13654,62511,creative process,1417959428 +13654,62511,existential,1416853813 +13654,62511,extraordinary,1414854529 +13654,62511,Meta Referential,1417959407 +13654,62511,Philip Seymour Hoffman,1416851216 +13654,62511,philosophy,1416851221 +13654,62511,postmodern,1416851241 +13654,62511,thought-provoking,1416851219 +13654,62511,world within a world,1417959463 +13654,63113,espionage,1415497236 +13654,63853,Aborigines,1418127548 +13654,63853,ambitious,1418127523 +13654,63853,Baz Luhrmann,1418127728 +13654,63853,charming,1418127641 +13654,63853,Too Long,1418127617 +13654,64037,creeping unease,1417971790 +13654,64037,psychological,1417971376 +13654,64037,suspenseful,1417971681 +13654,64037,thriller,1417971375 +13654,64497,apocalyptic,1421419018 +13654,64497,first contact,1421419031 +13654,65225,eye-opening,1418039773 +13654,65261,Hayao Miyazaki,1418058022 +13654,65261,Studio Ghibli,1418058024 +13654,65612,relationships,1418124269 +13654,65612,survival,1418124267 +13654,68128,Alan Moore,1418045234 +13654,68128,biopic,1419183191 +13654,68128,comic books,1418045258 +13654,68128,graphic novels,1418045236 +13654,68205,absurd,1419914133 +13654,68205,fast paced,1419914072 +13654,68205,fun,1419914069 +13654,68237,dystopia,1420890435 +13654,68237,isolation,1418649623 +13654,68237,plot twist,1418649635 +13654,68237,psychological,1420890468 +13654,68237,Sci-fi,1420890315 +13654,68237,solitude,1418649617 +13654,68237,space,1418649613 +13654,68237,thought-provoking,1420890355 +13654,68324,economics,1419157038 +13654,68324,high end escort,1419157040 +13654,68324,Manhattan,1419157062 +13654,68349,biopic,1418041281 +13654,68941,rape,1419159212 +13654,68941,remake,1419159218 +13654,68941,tense,1419159285 +13654,69529,powerful,1418035862 +13654,69529,stunning,1418035782 +13654,69529,visually appealing,1418035178 +13654,70344,absurdist,1414738682 +13654,70344,existential crisis,1414738551 +13654,70344,farce,1414738639 +13654,70932,charming,1421841734 +13654,70932,fun,1421841681 +13654,70932,light hearted,1421841719 +13654,71522,Buddhism,1418053768 +13654,72308,character driven,1414935608 +13654,72694,character study,1421841542 +13654,72694,great performances,1421841330 +13654,72694,psychology,1421841263 +13654,72694,redemption,1421841582 +13654,73256,bizarre,1421585590 +13654,73256,compelling,1421585648 +13654,73256,interesting story,1421585449 +13654,79357,nonlinear,1430578645 +13654,79357,original,1430578718 +13654,79357,surreal,1430578643 +13654,79357,thought provoking,1430578650 +13654,81845,based on a true story,1418124486 +13654,81845,complex characters,1418124488 +13654,81845,disability,1418124581 +13654,81845,excellent script,1418124495 +13654,81845,friendship,1418124494 +13654,81845,great performances,1418124561 +13654,81845,historical,1418124550 +13654,81932,David O. Russell,1417959960 +13654,81932,drug use,1417960060 +13654,81932,ensemble cast,1417960095 +13654,81932,family relationships,1417959939 +13654,81932,redemption,1417960287 +13654,81932,working class,1417960267 +13654,82106,hilarious,1420633210 +13654,82261,fascinating,1418040105 +13654,83330,royalty,1418312255 +13654,83330,russian revolution,1418312247 +13654,84152,concept,1418282529 +13654,84152,entertaining,1418282485 +13654,84152,human potential,1418282482 +13654,84152,visually appealing,1418282491 +13654,84366,character actor,1418051180 +13654,84366,John Cazale,1418051178 +13654,86320,beautiful,1416854773 +13654,86320,cinematography,1416738514 +13654,86320,end of the world,1416738524 +13654,86320,Lars von Trier,1416738505 +13654,86320,siblings,1416738511 +13654,86345,honest,1422813922 +13654,86345,stand-up comedy,1422813842 +13654,86377,intelligent,1422813674 +13654,86377,irreverent,1422813682 +13654,86377,stand-up comedy,1418542998 +13654,86882,literate,1417938780 +13654,86882,magical realism,1417938730 +13654,86882,nostalgic,1417938795 +13654,86882,philosophical,1416740461 +13654,86882,thought-provoking,1416740438 +13654,86882,whimsical,1416740539 +13654,86882,witty,1416740514 +13654,86882,Woody Allen,1416740435 +13654,88127,Stand-up comedy,1424608253 +13654,88129,ambient music,1419168181 +13654,88129,atmospheric,1417970445 +13654,88129,captivating,1430572680 +13654,88129,cinematography,1419168171 +13654,88129,crime,1419168190 +13654,88129,heist,1430572429 +13654,88129,minimalistic,1417970452 +13654,88129,neo-noir,1430572708 +13654,88129,stylized,1419168182 +13654,89501,writers,1418662880 +13654,89761,David Cronenberg,1415550634 +13654,89761,history,1415550657 +13654,89761,Psychoanalysis,1415550697 +13654,89804,politics,1414728223 +13654,90374,cults,1430587325 +13654,90374,Disturbing,1422187158 +13654,90374,mesmerizing,1422187160 +13654,90374,rape,1422187168 +13654,90374,sexuality,1430587326 +13654,90376,disturbing,1414821159 +13654,90376,engrossing,1417964915 +13654,90376,fascinating,1417964892 +13654,90376,psychological thriller,1414821249 +13654,90376,riveting,1417964991 +13654,90378,Errol Morris,1418030403 +13654,90378,interesting story,1418030472 +13654,90430,ensemble cast,1414822188 +13654,90430,real time,1414822067 +13654,90430,Roman Polanski,1416855346 +13654,90430,social satire,1414822138 +13654,90929,1900s,1418135805 +13654,90929,atmospheric,1418135135 +13654,90929,brief graphic violence,1418135726 +13654,90929,Brothels,1418135814 +13654,90929,Courtesans,1418135092 +13654,90929,friendship,1418135109 +13654,90929,Historical period drama,1418135690 +13654,90929,Paris,1418135051 +13654,90929,visually stunning,1418135395 +13654,92152,coming of age,1422189272 +13654,92152,countryside,1422189314 +13654,92152,female perspective,1422189361 +13654,92152,Sex Comedy,1422189279 +13654,92152,sexuality,1422189285 +13654,93498,adapted from:book,1418131563 +13654,93498,based on a true story,1418131591 +13654,93498,good performance,1418131628 +13654,93498,history,1418131667 +13654,93498,interesting story,1418131582 +13654,93498,politics,1418131598 +13654,93723,absurd deadpan humour,1414754206 +13654,93723,affectionate,1422809018 +13654,93723,dialogue driven,1422809072 +13654,93723,quirky,1422809137 +13654,93723,stylized,1417936901 +13654,93723,Whit Stillman,1417936783 +13654,94466,dystopia,1414728276 +13654,94466,social commentary,1414728272 +13654,94466,TV series,1414728309 +13654,95058,David Cronenberg,1416854529 +13654,95088,journalism,1417938585 +13654,95088,misfits,1417938601 +13654,95088,Understated charm,1417938581 +13654,96411,behind the scenes,1418039378 +13654,96610,Character study,1415490237 +13654,96610,clever,1415489977 +13654,96610,organized crime,1415489939 +13654,96610,original,1415490160 +13654,96728,beautiful,1416857028 +13654,96728,Character study,1416856984 +13654,96728,cinematography,1430587082 +13654,96728,great performances,1416856987 +13654,96728,Paul Thomas Anderson,1416856969 +13654,96762,Detroit,1418054386 +13654,97234,behind the scenes,1418041502 +13654,97388,France,1416069724 +13654,97388,historical drama,1416069772 +13654,97388,nudity (topless),1416069738 +13654,97552,artist,1418051121 +13654,97552,comic books,1418044756 +13654,97552,graphic novels,1418051118 +13654,97552,Jean Giraud,1418051115 +13654,97552,Moebius,1418051252 +13654,97921,compelling,1422809366 +13654,97921,dark humor,1417959831 +13654,97921,David O. Russell,1417959824 +13654,97921,father-son relationship,1422809309 +13654,97921,great characters,1422809316 +13654,97921,humorous,1422809811 +13654,97921,relatable,1422809878 +13654,97921,serious topics,1422809497 +13654,98203,adventure,1421421641 +13654,98203,campy,1421421849 +13654,98203,fun,1421421634 +13654,98445,consciousness,1418042445 +13654,98445,ethnobotany,1418041850 +13654,98445,psychopharmacology,1418041767 +13654,98445,research,1418042209 +13654,99214,Stand-Up Comedy,1422950261 +13654,99917,artistic,1416402745 +13654,99917,Beautiful,1416402742 +13654,99917,emotionally captivating,1416402754 +13654,99917,sci-fi,1416402747 +13654,99996,comedy of manners,1422189667 +13654,99996,smart,1422190081 +13654,99996,understated,1422189698 +13654,100745,internet,1418039422 +13654,100745,underdogs,1418039600 +13654,101088,erotic,1416854833 +13654,101088,psychological thriller,1416854808 +13654,101088,stylish,1416854806 +13654,101525,ambitious,1430571991 +13654,101525,family legacies,1430571972 +13654,101525,Father figures,1430571881 +13654,101531,excellent film,1416142145 +13654,101741,convoluted,1415496255 +13654,102194,honest,1414733263 +13654,102194,poignant,1414733285 +13654,102194,powerful,1414733277 +13654,102194,sweet,1414733271 +13654,102217,Bill Hicks,1418543923 +13654,102217,provocative,1418543868 +13654,102217,social commentary,1418543880 +13654,102217,thought-provoking,1418543862 +13654,102800,Noah Baumbach,1422808433 +13654,103319,Stand-up comedy,1424522952 +13654,103444,behind the scenes,1418129697 +13654,103444,biopic,1418129654 +13654,103444,filmography,1418129703 +13654,103444,movie business,1418129700 +13654,103444,Woody Allen,1418056332 +13654,103980,dark humor,1414677554 +13654,104069,relatable,1422813945 +13654,104879,absorbing,1416144940 +13654,104879,atmospheric,1416144989 +13654,104879,nuanced,1416144967 +13654,104879,photography,1416145018 +13654,104879,realistic action,1416145006 +13654,104879,thriller,1416144943 +13654,105254,funny,1422190244 +13654,105254,smart,1422190143 +13654,105254,well-written,1422190221 +13654,106100,social commentary,1417960150 +13654,106100,topic:AIDS/HIV,1417960148 +13654,106100,topic:homophobia,1417960146 +13654,106220,insightful,1422814386 +13654,106220,Stand-up comedy,1424556068 +13654,106222,likeable,1422950434 +13654,106222,Stand-Up Comedy,1422950454 +13654,106916,Anti-Hero,1417960524 +13654,106916,based on a true story,1418283684 +13654,106916,con artists,1417960521 +13654,106916,David O. Russell,1417960546 +13654,106916,great performances,1418283677 +13654,106916,New Jersey,1417960535 +13654,106916,politics,1417960555 +13654,106920,Spike Jonze,1417938565 +13654,107368,Stand-up comedy,1424608427 +13654,108729,mindfuck,1422553113 +13654,108729,tense,1422552084 +13654,108729,thought-provoking,1422553186 +13654,110882,strong performance,1420270643 +13654,110882,unique,1420270646 +13654,112183,actors,1420884848 +13654,112183,Alejandro González Iñárritu,1420884865 +13654,112183,alter ego,1420884823 +13654,112183,alternate reality,1420885270 +13654,112183,compelling,1420885176 +13654,112183,great performances,1420884791 +13654,112183,single shot,1420884830 +13654,112183,smart,1420884909 +13654,112940,counter-intelligence,1415867176 +13654,112940,counterespionage,1415867111 +13654,112940,Philip Seymour Hoffman,1415867079 +13654,112940,super dry,1415866994 +13654,113741,parallel universe,1418276450 +13654,113829,alternate reality,1419182573 +13654,113829,magical realism,1419181866 +13654,113829,marriage,1419182652 +13654,114392,19th century,1415537199 +13654,114392,captivating,1415538612 +13654,114392,unconventional western,1415537195 +13654,115569,dark,1422621479 +13654,115569,gripping,1422621471 +13654,115569,thriller,1422621612 +13654,117109,post-modern,1419163468 +13654,117109,short,1419163418 +13654,117109,surreal,1419163542 +13654,117109,uncanny,1419163584 +13654,117517,dark comedy,1420891137 +13654,117517,narcissism,1420890595 +13654,117517,sharply written,1420891043 +13654,118462,comic books,1418043876 +13654,118462,graphic novels,1418043905 +13654,118464,artist,1418045453 +13654,118464,Keith Haring,1418045426 +13654,118464,social activism,1418045475 +13654,118464,street art,1418045423 +13654,118466,Hayao Miyazaki,1418047663 +13654,118466,Studio Ghibli,1418047676 +13654,118466,Toshio Suzuki,1418047687 +13654,118468,Hayao Miyazaki,1418048193 +13654,118514,artists,1418050445 +13654,118514,comic books,1418050417 +13654,118514,graphic novels,1418050359 +13654,118574,ensemble cast,1418062915 +13654,118574,worth watching,1418062985 +13654,118576,cultural differences,1418064068 +13654,118576,Drama,1418063981 +13654,118854,Ken Burns,1423236910 +13654,118888,Dave Chappelle,1418542869 +13654,118888,hilarious,1419160959 +13654,118888,Stand-up comedy,1424556559 +13654,118890,Bill Hicks,1418543711 +13654,118892,Ellen DeGeneres,1418544262 +13654,118930,Stand-up comedy,1424522581 +13654,119171,highly quotable,1419162201 +13654,119171,insightful,1422814854 +13654,119171,Katt Williams,1422814791 +13654,119171,Stand-up comedy,1424556331 +13654,119171,thought provoking,1419162065 +13654,120807,amiable,1424521826 +13654,120807,good-natured,1424522023 +13654,120807,self-deprecating,1424522036 +13654,121699,stand-up comedy,1430576666 +13654,127098,stand-up comedy,1422813750 +13654,127146,Documentary,1422897567 +13654,127146,Kurt Cobain,1422897584 +13654,127445,Documentary,1422894511 +13654,127449,Documentary,1422901320 +13654,128912,Stand-up comedy,1424522527 +13654,128914,Stand-up comedy,1424522687 +13654,128918,Stand-up comedy,1424523475 +13654,128960,charming,1424554523 +13654,129011,highly quotable,1424609630 +13654,129011,hilarious,1424608822 +13654,129011,insightful,1424609573 +13654,129011,irreverent,1424609606 +13654,129011,Stand-up comedy,1424608791 +13654,129013,Eddie Izzard,1424609304 +13654,129013,hilarious,1424609333 +13654,129013,quotable,1424609427 +13654,129013,Stand-up comedy,1424609274 +13654,129389,delightful,1425140657 +13654,129389,Documentary,1425140607 +13654,140581,documentary,1439362006 +13661,1213,Martin Scorsese,1147034035 +13670,260,jedi,1444688397 +13670,260,skywalker,1444688391 +13681,2571,Futuristic,1443463403 +13681,79132,mindfuck,1443463420 +13681,85414,good concept,1443463461 +13681,114935,one of the under rated movies,1443463445 +13709,4355,Hockey,1424230535 +13709,108160,Hockey,1424230501 +13720,93764,Luke Wilson,1355702076 +13720,93764,murder,1355702106 +13720,93764,suspense,1355702106 +13733,4124,Awful...just awful,1241926655 +13764,29,weird,1368314974 +13764,34,infantil,1140396314 +13764,47,great ending,1368315181 +13764,70,cult classic,1368315059 +13764,111,loneliness,1368314831 +13764,169,family,1368315122 +13764,232,relationships,1368314937 +13764,296,storytelling,1368314769 +13764,318,great acting,1368315036 +13764,318,great ending,1368315181 +13764,455,family,1368315121 +13764,593,great acting,1368315036 +13764,804,relationships,1368314937 +13764,858,great acting,1368315036 +13764,858,oscar (best directing),1368314854 +13764,1015,family,1368315122 +13764,1016,family,1368315122 +13764,1136,this is best movie n world,1140396197 +13764,1175,weird,1368314974 +13764,1199,weird,1368314974 +13764,1210,great ending,1368315181 +13764,1241,cult classic,1368315059 +13764,1255,cult classic,1368315059 +13764,1275,mentor,1368314708 +13764,1281,talky,1368315204 +13764,1307,relationships,1368314937 +13764,1527,visually appealing,1368315006 +13764,1623,horror,1368315089 +13764,1639,relationships,1368314937 +13764,1722,action,1368314899 +13764,1991,horror,1368315089 +13764,2076,weird,1368314974 +13764,2108,story,1368315226 +13764,2167,action,1368314899 +13764,2194,oscar (best directing),1368314854 +13764,2262,relationships,1368314937 +13764,2315,horror,1368315089 +13764,2420,mentor,1368314708 +13764,2641,w00t,1137494576 +13764,2657,too friggen gay,1137613253 +13764,2858,great acting,1368315036 +13764,3018,horror,1368315089 +13764,3147,oscar (best directing),1368314854 +13764,3157,family,1368315121 +13764,3316,Shit!!,1137496625 +13764,3421,comedy,1368314736 +13764,3438,brings up memories,1137496641 +13764,3462,talky,1368315204 +13764,3740,cult classic,1368315059 +13764,3986,action,1368314899 +13764,3994,storytelling,1368314769 +13764,4015,Funfunfun,1137496541 +13764,4085,comedy,1368314736 +13764,4128,cult classic,1368315059 +13764,4533,The greatest Zombie saga continues!!!,1137613462 +13764,4848,visually appealing,1368315006 +13764,4878,weird,1368314974 +13764,5452,family,1368315121 +13764,5980,Crap!,1197728361 +13764,5995,dramatic,1368314876 +13764,6987,criterion,1368314805 +13764,7153,great ending,1368315181 +13764,7438,storytelling,1368314769 +13764,8981,relationships,1368314937 +13764,26357,Anthology,1386748576 +13764,32587,storytelling,1368314769 +13764,43679,cheap,1144154017 +13764,43679,Good but not that good,1144154010 +13764,64839,loneliness,1368314831 +13764,79132,cerebral,1368315251 +13770,924,artificial intelligence,1446488326 +13770,2028,horrors of war,1446494836 +13770,2028,realistic,1446494842 +13770,2028,Steven Spielberg,1446494839 +13770,2028,World War II,1446494832 +13770,138036,humour,1453927866 +13770,138036,spy,1453927861 +13770,143385,CIA,1446463715 +13770,143385,Cold War,1446463728 +13770,143385,Historical,1446463754 +13770,143385,KGB,1446463751 +13770,143385,Political Thriller,1446463748 +13778,6300,Anders Thomas Jensen,1369141318 +13778,6300,dark comedy,1369141312 +13778,6300,Mads Mikkelsen,1369141324 +13778,6300,Ulrich Thomsen,1369141326 +13778,8117,black comedy,1369141365 +13778,27716,Anders Thomas Jensen,1369141394 +13778,91529,Batman,1369141441 +13787,474,Clint Eastwood,1140051046 +13787,474,thriller,1140051046 +13787,1685,Jewish identity,1140051430 +13787,2144,teens,1140051216 +13787,4803,Clint Eastwood,1140051112 +13787,5021,Truman Capote,1140049734 +13787,33836,under-rated,1140031311 +13787,40629,unnecessary,1140030672 +13787,41566,flat,1140030255 +13787,42004,complex characters,1140030313 +13787,42007,blah,1140030386 +13787,42418,refuse to see,1140030334 +13787,42730,feel-good,1140030279 +13796,58879,good,1213627915 +13804,47610,19th century,1172351177 +13804,47610,Edward Norton,1172351172 +13804,47610,Jessica Biel,1172351175 +13804,47610,magic,1172351167 +13804,49530,Edward Zwick,1172351090 +13804,49530,Leonardo DiCaprio,1172351086 +13804,49530,More mature Leo Decaprio,1172351067 +13804,49530,Sierra Leone,1172351081 +13810,72378,awful...just awful,1378499352 +13835,260,dystopian,1439242391 +13835,260,mystery,1439242414 +13840,260,"sf,science fiction",1439413351 +13840,260,space,1439413361 +13851,1690,sci-fi. dark,1188090569 +13873,79132,Intense,1436718815 +13873,118696,fight,1436718782 +13873,132157,lost of time,1436718691 +13874,261,drama,1187924760 +13874,1690,sci-fi. dark,1187924756 +13874,2947,action,1187924758 +13874,2947,adventure,1187924758 +13874,4246,comedy,1187924757 +13874,4246,romance,1187924757 +13874,7438,action homage,1187924759 +13875,589,artificial intelligence,1448428688 +13875,589,sci-fi,1448428693 +13875,589,time travel,1448428691 +13875,780,Jeff Goldblum,1448429554 +13875,780,US President,1448429548 +13875,1210,classic,1448429146 +13875,1210,great soundtrack,1448429138 +13875,1210,sci-fi,1448429127 +13875,1210,space,1448429125 +13875,1210,space opera,1448429143 +13875,1961,autism,1448428462 +13875,1961,disability,1448428488 +13875,1961,Oscar (Best Actor),1448428478 +13875,1961,Oscar (Best Picture),1448428473 +13875,1961,psychology,1448428464 +13875,2329,edward norton,1448429019 +13875,2329,powerful ending,1448429006 +13875,2329,social commentary,1448429008 +13875,2571,dystopia,1448428645 +13875,2571,philosophical,1448428639 +13875,2571,philosophy,1448428647 +13875,2571,sci-fi,1448428656 +13875,5349,alter ego,1448428532 +13875,6936,funny,1448428951 +13875,6936,Will Ferrell,1448428945 +13875,79132,clever,1448428605 +13875,79132,philosophy,1448428585 +13875,79132,psychological,1448428617 +13875,79132,sci-fi,1448428609 +13875,79132,suspense,1448428594 +13875,79132,thought-provoking,1448428624 +13875,122892,artificial intelligence,1448429089 +13875,134853,creative,1448428828 +13875,134853,imaginative,1448428847 +13875,134853,introspective,1448428825 +13875,134853,psychology,1448428821 +13896,1028,Dick Van Dyke,1280623982 +13896,1028,magic,1280623968 +13896,1028,musical,1280623978 +13911,2231,John Malkovich,1357269243 +13911,2231,John Turturro,1357269241 +13911,2231,poker,1357269254 +13911,5617,erotic,1358336199 +13911,5617,Maggie Gyllenhaal,1358336196 +13911,5669,too long,1356498755 +13911,5902,immature,1356498203 +13911,69604,eccentricity,1356926199 +13911,69604,Larry David,1356926195 +13911,69604,philosophical,1356926208 +13911,93512,Jason segel,1358296239 +13911,93512,Judy Greer,1358296214 +13934,511,football,1150397660 +13935,3052,religion,1148135713 +13949,74458,mindfuck,1441566985 +13949,74458,psychological,1441566877 +13949,74458,Psychological Thriller,1441566869 +13949,74458,thought-provoking,1441566887 +13949,80489,smart thinking,1441566656 +13949,102903,pseudo-intelligent,1441566674 +13949,102903,surprise ending,1441566705 +13949,112556,mindfuck,1438031751 +13949,112556,Psychopathy,1438031738 +13949,112556,psychothriller,1441567008 +13949,112556,unpredictable,1438031753 +13949,126548,high school,1441566116 +13949,126548,romantic comedy,1441566114 +13949,126548,teen movie,1441566111 +13967,915,edulcorada,1188402202 +13967,1277,tierna,1188402272 +13967,2116,aburrida,1188402171 +13967,2384,encantadora,1188402145 +13967,30812,pretenciosa,1188402331 +13967,41285,couldn't finish it,1188463928 +13967,41285,excellent!,1188402607 +13971,1210,fantasy,1428357823 +13971,1210,sci-fi,1428357823 +13971,1210,space,1428357823 +13980,54286,action,1429451681 +13980,54286,author:robert ludlum,1429451681 +13980,54286,spy thriller,1429451681 +14050,50,Kevin Spacey,1444563615 +14050,50,twist ending,1444563618 +14050,5418,spy,1444562475 +14050,5418,thriller,1444562488 +14050,6378,twists & turns,1444563071 +14050,6874,Quentin Tarantino,1444563645 +14050,74458,Leonardo DiCaprio,1444562176 +14050,74458,psychological,1444562172 +14050,74458,twisted ending,1444562195 +14050,92259,feel good movie,1444562540 +14050,92259,soundtrack,1444562534 +14050,92259,touching,1444562531 +14050,116797,Computers,1445610048 +14050,116797,genius,1445610054 +14050,116797,history,1445610046 +14050,134853,Pixar,1444562668 +14050,134853,San Francisco,1444562673 +14062,260,father-son relationship,1438349302 +14062,260,fiction,1438349289 +14062,92259,emotional,1438944605 +14062,92259,Personality change,1438944618 +14063,1732,dark and wonderful,1147745489 +14079,50,clever,1440146616 +14079,50,complicated,1440061959 +14079,50,con men,1440146613 +14079,50,conspiracy,1440061937 +14079,50,Crime,1440061951 +14079,50,excellent script,1440146599 +14079,50,great ending,1440146605 +14079,50,heist,1440061940 +14079,50,imdb top 250,1440061954 +14079,50,Kevin Spacey,1440061946 +14079,50,Oscar (Best Supporting Actor),1440061962 +14079,50,suspense,1440061942 +14079,50,thriller,1440061944 +14079,50,twist ending,1440061651 +14079,50,violence,1440061967 +14079,318,atmospheric,1440062022 +14079,318,classic,1440062019 +14079,318,imdb top 250,1440061999 +14079,318,inspirational,1440062018 +14079,318,prison,1440062032 +14079,318,reflective,1440062012 +14079,318,revenge,1440062009 +14079,318,thought-provoking,1440062004 +14079,318,twist ending,1440061654 +14079,527,black and white,1440062077 +14079,527,classic,1440062075 +14079,527,disturbing,1440062059 +14079,527,Nazis,1440062072 +14079,527,Oscar (Best Cinematography),1440062087 +14079,527,Oscar (Best Picture),1440062062 +14079,527,Steven Spielberg,1440062065 +14079,527,thought-provoking,1440062091 +14079,527,true story,1440062067 +14079,527,World War II,1440062096 +14079,903,Alfred Hitchcock,1440061721 +14079,1203,imdb top 250,1440149871 +14079,1203,thought-provoking,1440149877 +14079,1209,great soundtrack,1440146119 +14079,1209,Sergio Leone,1440146112 +14079,1266,Clint Eastwood,1440146330 +14079,1266,imdb top 250,1440146336 +14079,1266,Morgan Freeman,1440146325 +14079,1266,oscar (best cinematography),1440146328 +14079,1266,Oscar (Best Directing),1440146333 +14079,2324,comedy,1440316391 +14079,2324,Heartwarming,1440316402 +14079,2324,imdb top 250,1440316399 +14079,2324,Oscar (Best Foreign Language Film),1440316395 +14079,2324,sad but good,1440316410 +14079,2324,survival,1440316412 +14079,2951,Clint Eastwood,1440146175 +14079,2951,Sergio Leone,1440146183 +14079,3030,Akira Kurosawa,1440146483 +14079,3452,boring,1440062266 +14079,3452,cliche,1440062268 +14079,3452,fight scenes,1440062274 +14079,3452,gangs,1440062280 +14079,3452,kung fu,1440062277 +14079,3452,pointless,1440062261 +14079,6639,Audrey Hepburn,1440141218 +14079,6639,classic thriller,1440141222 +14079,7153,adventure,1440062107 +14079,7153,based on a book,1440062133 +14079,7153,fantasy,1440061661 +14079,7153,great soundtrack,1440062120 +14079,7153,multiple storylines,1440062123 +14079,7153,oscar (best cinematography),1440062117 +14079,7153,Oscar (Best Picture),1440062114 +14079,7926,Akira Kurosawa,1440141008 +14079,8529,comedy,1440061752 +14079,8529,Steven Spielberg,1440061758 +14079,8529,Tom Hanks,1440061755 +14079,44199,good story,1440146749 +14079,44199,intelligent thriller,1440146751 +14079,44199,twist ending,1440146743 +14079,53322,Al Pacino,1440062309 +14079,53322,Las Vegas,1440062315 +14079,53322,Steven Soderbergh,1440062325 +14079,58293,ancient civilization,1440062446 +14079,58293,disappointing,1440062434 +14079,58293,visually appealing,1440062438 +14079,58559,Christian Bale,1440061696 +14079,58559,Christopher Nolan,1440061695 +14079,58559,psychology,1440061667 +14079,59369,espionage,1440061764 +14079,68954,adventure,1440061729 +14079,68954,Pixar,1440061070 +14079,79132,alternate reality,1440062169 +14079,79132,ensemble cast,1440062223 +14079,79132,heist,1440062220 +14079,79132,imdb top 250,1440062217 +14079,79132,philosophy,1440062214 +14079,79132,psychological,1440062206 +14079,79132,sci-fi,1440062229 +14079,79132,surreal,1440062166 +14079,79132,suspense,1440062236 +14079,79132,thought-provoking,1440062173 +14079,79132,twist ending,1440061664 +14079,79132,visually appealing,1440062183 +14079,79185,boring,1440062346 +14079,79185,lame humour,1440062342 +14079,79185,spy,1440062361 +14079,79185,stupid,1440062340 +14079,79185,Tom Cruise,1440062358 +14079,79185,unrealistic,1440062352 +14079,88163,comedy,1441036886 +14079,88163,funny,1441036884 +14079,89904,Oscar (Best Picture),1440061088 +14079,93838,martial arts,1440061737 +14079,112183,alter ego,1440062417 +14079,112183,Broadway,1440062415 +14079,112183,Crazy,1440062391 +14079,112183,Edward Norton,1440062379 +14079,112183,Michael Keaton,1440062388 +14079,112183,movie business,1440062405 +14079,112183,non-closed ending,1440062396 +14079,113345,awful script,1441002534 +14079,113345,bad acting,1441002565 +14079,113345,disappointing,1441002543 +14079,113345,obvious,1441002546 +14079,122882,car chase,1440316860 +14079,122882,charlize theron,1440316839 +14079,122882,great soundtrack,1440316844 +14079,122882,non-stop,1440316852 +14079,122882,practical effects,1440316857 +14079,122882,special effects,1440316836 +14079,122882,visually appealing,1440316848 +14079,138036,humour,1441002476 +14079,138036,spy,1441002460 +14079,138036,stylish,1441002500 +14079,141636,acting,1441002786 +14079,141636,kamal haasan,1441002707 +14079,141636,plot,1441002780 +14079,141636,screenplay,1441002882 +14079,141636,thriller,1441002856 +14095,105,Bechdel Test:Pass,1310244362 +14095,587,SUPERNATURAL ROMANCE,1310150152 +14095,588,Fantasy,1310055822 +14095,613,Bechdel Test:Pass,1310242685 +14095,920,Bechdel Test:Pass,1310234019 +14095,943,supernatural romance,1310149042 +14095,1032,Bechdel Test:Pass,1310249427 +14095,1035,Based on a musical,1310321890 +14095,1126,Guilty pleasure,1310057416 +14095,1271,Bechdel Test:Pass,1310243971 +14095,1271,lesbian subtext,1310243830 +14095,1285,Bechdel Test:Pass,1310227781 +14095,1339,SUPERNATURAL ROMANCE,1310153723 +14095,1407,Bechdel Test:Pass,1310248557 +14095,1586,Bechdel Test:Pass,1310243035 +14095,1658,black comedy,1310167715 +14095,1835,SUPERNATURAL ROMANCE,1310153636 +14095,2067,Amazing Cinematography,1310168994 +14095,2067,cinematography,1310168954 +14095,2100,SUPERNATURAL ROMANCE,1310158908 +14095,2143,devil,1310167441 +14095,2143,unicorns,1310167405 +14095,2291,Bechdel Test:Pass,1310243151 +14095,2316,SUPERNATURAL ROMANCE,1310153263 +14095,2340,SUPERNATURAL ROMANCE,1310151454 +14095,2552,SUPERNATURAL ROMANCE,1311452980 +14095,2657,Based on a musical,1310150073 +14095,2657,guilty pleasure,1310150073 +14095,2739,Bechdel Test:Pass,1310242331 +14095,3063,FEMMES FATALES,1310243739 +14095,3358,afterlife,1310149257 +14095,3358,ghosts/afterlife,1310149249 +14095,3376,dreams,1310250422 +14095,3376,fantasy,1310250422 +14095,3376,SUPERNATURAL ROMANCE,1310250422 +14095,3479,SUPERNATURAL ROMANCE,1310158824 +14095,3546,Bechdel Test:Pass,1310242735 +14095,3546,insanity,1310242840 +14095,3546,jealousy,1310242840 +14095,3546,kidnapping,1310242840 +14095,3546,psychological thriller,1310242840 +14095,3546,sibling rivalry,1310242840 +14095,3546,sisters,1310242840 +14095,3949,Bechdel Test:Pass,1310227969 +14095,4037,Bechdel Test:Pass,1310225868 +14095,4129,angel,1310169209 +14095,4129,heaven,1310169209 +14095,4129,reincarnation,1310169209 +14095,4129,romance,1310169218 +14095,4129,SUPERNATURAL ROMANCE,1310169209 +14095,4184,SUPERNATURAL ROMANCE,1310160245 +14095,4578,fantasy,1310163592 +14095,4578,incestuous subtext,1310163631 +14095,4578,reincarnation,1310163631 +14095,4641,Bechdel Test:Pass,1310234130 +14095,4642,Based on a musical,1310321918 +14095,4920,self discovery,1310225817 +14095,4992,fantasy,1310156910 +14095,4992,SUPERNATURAL ROMANCE,1310158357 +14095,5167,Bob Hope,1310160050 +14095,5167,film noir,1310160017 +14095,5167,innuendo,1310160039 +14095,5167,mystery,1310160022 +14095,5167,parody,1310159865 +14095,5167,public domain,1310159858 +14095,5372,based on a true story,1310242987 +14095,5372,Bechdel Test:Pass,1310242939 +14095,5372,musical,1310242971 +14095,5372,Western,1310242947 +14095,5797,dark fantasy,1310158167 +14095,6292,Bechdel Test:Pass,1310225754 +14095,6292,drama,1310225735 +14095,6292,family drama,1310225745 +14095,6357,remake,1310169425 +14095,7036,werewolf,1310079892 +14095,7451,Bechdel Test:Pass,1310227707 +14095,8516,SUPERNATURAL ROMANCE,1310169595 +14095,8838,Bechdel Test:Pass,1310249595 +14095,8838,feminism,1310249595 +14095,9011,Fantasy,1310250467 +14095,9011,SUPERNATURAL ROMANCE,1310250452 +14095,25870,SUPERNATURAL ROMANCE,1310166261 +14095,25890,SUPERNATURAL ROMANCE,1310166179 +14095,25891,based on a play,1310164672 +14095,26010,afterlife,1310149348 +14095,26010,Based on a musical,1310149994 +14095,26010,Based on a play,1310149984 +14095,26010,ghosts/afterlife,1310148904 +14095,26010,Musical,1310148844 +14095,26010,redemption,1310148964 +14095,26157,MST3K,1310072772 +14095,27838,indie,1310149113 +14095,31349,curse,1310166408 +14095,31349,reincarnation,1310166402 +14095,31349,romance,1310166462 +14095,31349,SUPERNATURAL ROMANCE,1310166390 +14095,31349,witch,1310166412 +14095,31349,witches,1310166462 +14095,36525,SUPERNATURAL ROMANCE,1310150272 +14095,37729,ghosts,1310163822 +14095,37729,ghosts/afterlife,1310163822 +14095,37729,SUPERNATURAL ROMANCE,1310163822 +14095,44225,mermaid,1310163420 +14095,47714,ghosts,1310160589 +14095,47714,ghosts/afterlife,1310160589 +14095,48043,SUPERNATURAL ROMANCE,1310169782 +14095,50796,Horror,1310153567 +14095,50796,SUPERNATURAL ROMANCE,1310153471 +14095,50796,teen,1310153503 +14095,50796,werewolf,1310153493 +14095,50796,werewolves,1310153493 +14095,51094,Bechdel Test:Pass,1310242475 +14095,51834,Bechdel Test:Pass,1310243085 +14095,54290,bad message,1310227217 +14095,54290,Bechdel Test:Pass,1310226002 +14095,54290,clique,1310227639 +14095,54290,dolls,1310227268 +14095,54290,fashion,1310226038 +14095,54290,friendship,1310226038 +14095,54290,high school,1310226501 +14095,54290,merchandise driven,1310227233 +14095,54290,stereotypes,1310226515 +14095,54290,talent contest,1310226038 +14095,56367,independent film,1310149139 +14095,56367,Indie,1310148586 +14095,57538,ghosts,1310251882 +14095,57538,ghosts/afterlife,1310251882 +14095,58347,SUPERNATURAL ROMANCE,1310154546 +14095,59725,Bechdel Test:Pass,1310234300 +14095,63992,supernatural romance,1310149783 +14095,65868,guilt pleasure,1310072596 +14095,66097,Bechdel Test:Pass,1310249484 +14095,68952,Bechdel Test:Pass,1310234241 +14095,69310,Bechdel Test:Pass,1310249628 +14095,70769,fantasy,1310167349 +14095,70769,loop,1310167315 +14095,70769,time loop,1310167341 +14095,71205,Bechdel Test:Pass,1310243597 +14095,71205,demon possession,1310243663 +14095,71205,demons,1310243663 +14095,71205,evil spirits,1310243663 +14095,71500,anthology,1310322105 +14095,71500,vampire,1310322127 +14095,71500,werewolf,1310322127 +14095,72407,Bechdel Test:Pass,1310235672 +14095,72407,dull,1310149946 +14095,72407,formulaic,1310149913 +14095,72407,SUPERNATURAL ROMANCE,1310149935 +14095,72982,Bechdel Test:Pass,1310249571 +14095,74754,cult film,1310153334 +14095,74754,guilty pleasure,1310153334 +14095,74754,melodramatic,1310153334 +14095,74754,Rifftrax,1310153351 +14095,74754,so bad it's good,1310153291 +14095,74754,unintentional comedy,1310153334 +14095,74754,unintentionally funny,1310153334 +14095,74789,Bechdel Test:Pass,1310249449 +14095,78174,Bechdel Test:Pass,1310234483 +14095,78772,Bechdel Test:Pass,1310235411 +14095,78772,SUPERNATURAL ROMANCE,1310149869 +14095,78836,afterlife,1310149301 +14095,78836,ghosts/afterlife,1310076749 +14095,79242,Bechdel Test:Pass,1310242531 +14095,82152,Beauty and the Beast,1310151717 +14095,82152,SUPERNATURAL ROMANCE,1310151708 +14095,83086,Bechdel Test:Pass,1310249686 +14095,83086,burlesque,1310249727 +14095,83086,campy,1310249698 +14095,83086,musical,1310249692 +14095,84532,based on a play,1310249843 +14095,84532,Bechdel Test:Pass,1310249845 +14095,84772,Bechdel Test:Pass,1310248300 +14095,85056,SUPERNATURAL ROMANCE,1310169670 +14095,85397,Bechdel Test:Pass,1310248352 +14095,85397,dark fantasy,1310158262 +14095,85397,fairy tale,1310154449 +14095,85397,little red riding hood,1310158214 +14095,85397,red ridinghood,1310154432 +14095,85397,retelling,1310154438 +14095,85397,SUPERNATURAL ROMANCE,1310154350 +14095,85438,Bechdel Test:Pass,1310242663 +14095,85510,Bechdel Test:Pass,1310244082 +14095,85736,Pixar,1310062183 +14095,86190,Bechdel Test:Pass,1310234805 +14095,86295,Bechdel Test:Pass,1310248578 +14095,86295,genre spoof,1310248589 +14095,86320,Bechdel Test:Pass,1310243177 +14095,86833,Bechdel Test:Pass,1310225701 +14095,87028,college,1310159013 +14095,87028,lesbian subtext,1310159013 +14095,87028,room-mate from hell,1310159157 +14095,87028,stalker,1310159013 +14095,87028,thriller,1310159013 +14095,87485,Bechdel Test:Pass,1310242150 +14095,87485,black comedy,1310242230 +14095,87485,high school,1310242230 +14095,87485,sex jokes,1310242230 +14095,87485,swearing,1310242230 +14106,296,Acting,1279793322 +14106,296,Dialogs,1279793316 +14106,296,Nothing,1279793308 +14106,296,Short Stories,1279793332 +14113,27773,heavy,1451743425 +14113,27773,kidnapping,1451743391 +14113,27773,strong antagonist,1451743421 +14113,62203,cult,1451743650 +14113,62203,kidnapping,1451743567 +14113,62203,pain,1451743547 +14113,122886,epic,1451743159 +14113,122886,saga,1451743198 +14113,122886,sci-fi,1451743170 +14124,260,coming of age,1435517877 +14124,260,Oscar (Best Editing),1435517904 +14148,2291,Depp & Burton,1214144549 +14148,2291,gothic,1214144595 +14148,2291,Johnny Depp,1214144545 +14148,2291,Tim Burton,1214144541 +14148,2959,Edward Norton,1214144958 +14148,5690,Studio Ghibli,1214144725 +14152,6288,awful acting,1303953632 +14168,260,lasers,1441923323 +14168,260,wookies,1441923317 +14190,260,adventure,1439799830 +14190,260,sci-fi,1439799823 +14232,66371,Beautiful,1401420642 +14236,2291,johnny depp,1251989964 +14257,161,submarine,1313451287 +14257,377,Keanu Reaves,1279323623 +14257,1608,Harrison Ford,1313451082 +14257,1610,Sean Connery,1313450384 +14257,1610,submarine,1313450377 +14257,1625,Michael Douglas,1313451057 +14257,1625,the twists in the plot,1279587028 +14257,1625,twist ending,1279587031 +14257,2167,stupid,1279327757 +14257,3578,Russell Crowe,1313451126 +14257,4506,Harrison Ford,1279591684 +14257,7254,alternate endings,1279592136 +14257,7254,suspense,1279592156 +14257,7254,time travel,1279592133 +14257,44199,Clive Owen,1313451156 +14257,44199,Denzel Washington,1313451162 +14257,44199,intelligent thriller,1313451168 +14257,44199,Jodie Foster,1313451158 +14257,44199,twist ending,1313451171 +14257,58103,multiple storylines,1284250132 +14257,95510,action,1356807922 +14257,95510,Marvel,1356807915 +14257,95510,special effects,1356807928 +14257,95510,Spider-Man,1356807904 +14257,95510,superhero,1356807911 +14257,96079,action,1356807858 +14257,96079,James Bond,1356807853 +14257,96079,spies,1356807866 +14270,6,Michael Mann,1353356189 +14270,38061,clever,1353356568 +14270,38061,dark comedy,1353356579 +14270,38061,witty,1353356598 +14270,51255,british comedy,1353357014 +14270,64620,history,1353355463 +14270,64620,journalism,1353355429 +14270,79132,Christopher Nolan,1353356278 +14270,79132,thought-provoking,1353356235 +14270,79132,visually appealing,1353356242 +14289,260,Science Fiction,1441309224 +14289,260,"space epic, science fiction, hero's journey",1441309219 +14296,5881,Futuristmovies.com,1152981752 +14296,7254,time travel,1227661114 +14296,85213,atheism,1307901137 +14333,260,classic sci-fi,1437940435 +14333,260,darth vader,1437940419 +14333,260,lightsabers,1437940467 +14333,260,special effects,1437940440 +14356,260,Action,1430687034 +14356,260,futuristic,1430687014 +14356,260,sci fi,1430686995 +14356,114246,action,1431294661 +14356,114246,crime,1431294661 +14356,114246,liam neeson,1431294661 +14356,122892,action,1430688662 +14356,122892,marvel,1430688662 +14356,122892,super hero,1430688662 +14369,6764,Dwayne Johnson,1286038457 +14369,35836,dumb,1141041884 +14369,74795,CIA Agent,1289639642 +14369,74795,Iraq War,1289639623 +14369,74795,Matt Damon,1289639618 +14369,77629,narcs,1289639511 +14369,80880,boring,1289163674 +14369,80880,happy end missing,1289163601 +14369,80880,Robert De Niro,1289163630 +14369,94405,Jason Statham,1350243461 +14370,780,end of the world,1451824133 +14370,780,sci-fi,1451824136 +14370,780,will smith,1451824128 +14370,1580,aliens,1451824035 +14370,1580,comedy,1451824017 +14370,1580,sci-fi,1451824016 +14370,1580,Will Smith,1451824014 +14370,4896,Fantasy,1451824351 +14370,5459,aliens,1451824052 +14370,5459,comedy,1451824051 +14370,5459,Will Smith,1451824048 +14370,5816,fantasy,1451824364 +14370,8368,fantasy,1451824387 +14370,40815,fantasy,1451824403 +14370,46062,Disney,1451823750 +14370,46062,musical,1451823749 +14370,46062,Zac Efron,1451823762 +14370,54001,fantasy,1451824415 +14370,61123,high school,1451823782 +14370,61123,musical,1451823784 +14370,62912,Disney,1451823803 +14370,62912,high school,1451823804 +14370,62912,musical,1451823806 +14370,69844,fantasy,1451824435 +14370,72378,end of the world,1451824200 +14370,72378,sci-fi,1451824165 +14370,81834,boring,1451824514 +14370,81834,Sell out,1451824620 +14370,88125,fantasy,1451824655 +14370,88932,Stereoscopic 3-D,1451823874 +14370,95441,Comedy,1451824979 +14370,108190,bad writing,1453622512 +14370,112852,comic book,1451823573 +14370,112852,fun,1451823584 +14370,112852,sci-fi,1451823579 +14370,112852,space,1451823580 +14370,112852,superhero,1451823599 +14370,114180,weak plot,1451828384 +14370,131013,comedy,1451824948 +14370,131013,funny,1451824944 +14370,135861,comedy,1451824988 +14394,208,post-apocalyptic,1451335560 +14394,441,high school,1451337448 +14394,441,HIGH SCHOOL LIFE,1451337459 +14394,441,small town,1451337452 +14394,556,documentary,1451337530 +14394,556,political campaign,1451337537 +14394,556,politics,1451337528 +14394,1092,Notable Nudity,1451337215 +14394,1270,1980s,1451335655 +14394,1270,sci-fi,1451335652 +14394,1270,time travel,1451335649 +14394,1302,baseball,1451335461 +14394,1476,true story,1451336490 +14394,1653,dystopic future,1451336906 +14394,2423,christmas,1451337271 +14394,2447,high school,1451337479 +14394,3688,cult film,1451337354 +14394,3688,high school,1451337356 +14394,3688,Nudity (Full Frontal),1451335986 +14394,3688,Teen Nudity,1451337386 +14394,4679,john hughes,1451337296 +14394,5110,cult classic,1451335954 +14394,5110,Nudity (Topless),1451335949 +14394,5344,Nudity,1451336302 +14394,6188,college,1451335906 +14394,6188,comedy,1451335891 +14394,6932,true story,1451336734 +14394,50442,true story,1451337148 +14394,54503,comedy,1451335583 +14394,54503,high school,1451335589 +14394,54503,Teen movie,1451335585 +14394,93498,based on a true story,1451337680 +14394,93498,election,1451337680 +14394,93498,politics,1451337673 +14449,164,cheadle appearance,1188100676 +14449,164,denzel's fine behind,1188100676 +14449,164,noir thriller,1188100676 +14449,296,comedy,1188100931 +14449,296,nonlinear,1188100935 +14449,296,Owned,1188100921 +14449,296,Samuel L. Jackson,1188100926 +14449,413,fraser,1188100541 +14449,413,ridiculous training sequence,1188100541 +14449,413,silly but good,1188100541 +14449,707,headbanger,1188100600 +14449,707,ouch,1188100600 +14449,837,adaptation,1188100768 +14449,837,your shirt look like a curtain,1188100768 +14449,1091,fun and cheap,1188100744 +14449,1091,ridiculousness,1188100744 +14449,1091,why god,1188100744 +14449,1556,bad sequel,1188100787 +14449,1779,adaptation,1188100627 +14449,1779,bring the pain,1188100627 +14449,1779,underwater,1188100627 +14449,2485,dule,1188100715 +14449,2485,excess,1188100715 +14449,2485,nostalgia,1188100715 +14449,2485,teen indulgence,1188100715 +14449,6016,brazil,1188100563 +14449,6016,drama,1188100563 +14449,6016,intense,1188100562 +14449,8798,absurd,1188100584 +14449,8798,jamie foxx head look like a box,1188100584 +14487,98961,Afghanistan,1362867327 +14487,98961,American propaganda,1362867290 +14487,98961,assassination,1362867308 +14487,98961,military,1362867315 +14487,98961,terrorism,1362867303 +14516,260,Science Fiction,1437201181 +14516,260,space adventure,1437201202 +14519,1,animation,1201710479 +14519,1,pixar,1201710320 +14519,1,Tim Allen,1201710688 +14519,1,Tom Hanks,1201710679 +14519,44,Christopher Lambert,1201713174 +14519,44,video game adaptation,1201713195 +14519,111,Jodie Foster,1201711478 +14519,111,Martin Scorsese,1201711484 +14519,111,Robert De Niro,1201711472 +14519,175,drugs,1201712261 +14519,186,Chris Columbus,1201713284 +14519,186,comedy,1201713290 +14519,186,Hugh Grant,1201713234 +14519,186,humor,1201713294 +14519,186,Joan Cusack,1201713239 +14519,186,Julianne Moore,1201713244 +14519,186,Robin Williams,1201713251 +14519,296,Bruce Willis,1201550884 +14519,296,classic,1201550884 +14519,296,comedy,1201550911 +14519,296,cult film,1201550884 +14519,296,humor,1201550884 +14519,296,John Travolta,1201550932 +14519,296,Quentin Tarantino,1201550884 +14519,296,Samuel L. Jackson,1201550944 +14519,296,Uma Thurman,1201550884 +14519,296,violence,1201550884 +14519,356,Robert Zemeckis,1201711130 +14519,356,Tom Hanks,1201711116 +14519,750,comedy,1201711227 +14519,750,humor,1201711224 +14519,750,Peter Sellers,1201711208 +14519,750,Stanley Kubrick,1201711215 +14519,858,Al Pacino,1201711081 +14519,858,Diane Keaton,1201711086 +14519,858,Francis Ford Coppola,1201711092 +14519,858,Marlon Brando,1201711068 +14519,858,Robert Duvall,1201711076 +14519,903,Alfred Hitchcock,1201711942 +14519,903,James Stewart,1201711934 +14519,912,classic,1201710053 +14519,912,Humphrey Bogart,1201710063 +14519,912,Ingrid Bergman,1201710069 +14519,912,Michael Curtiz,1201711301 +14519,920,Clark Gable,1201710005 +14519,920,classic,1201709989 +14519,920,Victor Fleming,1201712280 +14519,922,Billy Wilder,1201710137 +14519,922,noir thriller,1201710105 +14519,938,musical,1202446625 +14519,1080,comedy,1202447717 +14519,1080,Graham Chapman,1202447753 +14519,1080,humor,1202447707 +14519,1080,Monty Python,1202447661 +14519,1080,Terry Gilliam,1202447768 +14519,1080,Terry Jones,1202447740 +14519,1136,comedy,1202447881 +14519,1136,Graham Chapman,1202447916 +14519,1136,humor,1202447893 +14519,1136,Monty Python,1202447867 +14519,1136,Terry Gilliam,1202447926 +14519,1136,Terry Jones,1202447936 +14519,1172,Giuseppe Tornatore,1202446827 +14519,1208,Francis Ford Coppola,1201711443 +14519,1208,Marlon Brando,1201711424 +14519,1208,Robert Duvall,1201711435 +14519,1208,war movie,1201711454 +14519,1221,Al Pacino,1201710967 +14519,1221,classic,1201711052 +14519,1221,Diane Keaton,1201711006 +14519,1221,Francis Ford Coppola,1201711038 +14519,1221,Robert De Niro,1201710971 +14519,1221,Robert Duvall,1201710997 +14519,1244,classic,1201551136 +14519,1244,comedy,1201551142 +14519,1244,Diane Keaton,1201551122 +14519,1244,humor,1201551149 +14519,1244,Meryl Streep,1201551130 +14519,1244,Woody Allen,1201551116 +14519,1270,comedy,1201711373 +14519,1270,humor,1201711377 +14519,1270,Michael J. Fox,1201711386 +14519,1270,Robert Zemeckis,1201711409 +14519,1270,sci-fi,1201711369 +14519,1282,animation,1201711189 +14519,1282,Disney,1201711195 +14519,1291,Harrison Ford,1201710894 +14519,1291,Sean Connery,1201710899 +14519,1291,Steven Spielberg,1201710908 +14519,1597,Julia Roberts,1201712919 +14519,1597,Mel Gibson,1201712909 +14519,1597,Patrick Stewart,1201712914 +14519,1876,Elijah Wood,1201713125 +14519,1876,Morgan Freeman,1201713131 +14519,1876,Robert Duvall,1201713119 +14519,1876,sci-fi,1201713111 +14519,2019,Akira Kurosawa,1201710750 +14519,2067,classic,1201712895 +14519,2067,David Lean,1201712884 +14519,2067,omar sharif,1201712854 +14519,2571,Carrie-Anne Moss,1201710845 +14519,2571,cult film,1201710857 +14519,2571,Keanu Reeves,1201710838 +14519,2571,Laurence Fishburne,1201710832 +14519,2762,Bruce Willis,1201711981 +14519,2762,Haley Joel Osment,1201711977 +14519,2762,M. Night Shyamalan,1201711989 +14519,2858,Annette Bening,1201712974 +14519,2858,Kevin Spacey,1201712970 +14519,2858,Sam Mendes,1201712985 +14519,2959,Brad Pitt,1201711167 +14519,2959,David Fincher,1201711150 +14519,2959,Edward Norton,1201711158 +14519,3114,animation,1201710639 +14519,3114,Joan Cusack,1201710653 +14519,3114,Pixar,1201710622 +14519,3114,Tim Allen,1201710661 +14519,3114,Tom Hanks,1201710616 +14519,3157,animation,1201713001 +14519,3157,hugh laurie,1201713016 +14519,3157,Michael J. Fox,1201713007 +14519,3157,Rob Minkoff,1201713051 +14519,3910,catherine deneuve,1201711332 +14519,3910,Lars von Trier,1201711344 +14519,3910,musical,1201711355 +14519,4226,Carrie-Anne Moss,1201551031 +14519,4226,Christopher Nolan,1201551007 +14519,4226,cult film,1201551072 +14519,4226,Guy Pearce,1201551017 +14519,4226,Joe Pantoliano,1201551100 +14519,4226,nonlinear,1201551050 +14519,4306,animation,1201710459 +14519,4306,Cameron Diaz,1201712032 +14519,4306,Dreamworks,1201710377 +14519,4306,Eddie Murphy,1201712023 +14519,4306,Mike Myers,1201712027 +14519,4878,Jake Gyllenhaal,1201711250 +14519,4878,sci-fi,1201711245 +14519,4886,animation,1201712228 +14519,4886,Pixar,1201710300 +14519,5218,animation,1201713080 +14519,5218,Jack Black,1201713087 +14519,5218,John Leguizamo,1201713097 +14519,6104,Graham Chapman,1202447833 +14519,6104,Monty Python,1202447795 +14519,6104,Terry Gilliam,1202447819 +14519,6104,Terry Jones,1202447808 +14519,6377,animation,1201710469 +14519,6377,Eric Bana,1201712834 +14519,6377,Pixar,1201710311 +14519,6787,Dustin Hoffman,1201711815 +14519,6787,Journalism,1201711891 +14519,6787,Robert Redford,1201711822 +14519,6807,comedy,1202447988 +14519,6807,Graham Chapman,1202447956 +14519,6807,humor,1202447999 +14519,6807,Monty Python,1202447980 +14519,6807,Terry Gilliam,1202447964 +14519,6807,Terry Jones,1202447973 +14519,7361,Charlie Kaufman,1201711607 +14519,7361,Elijah Wood,1201711575 +14519,7361,Jim Carrey,1201711558 +14519,7361,Kate Winslet,1201711564 +14519,7361,Kirsten Dunst,1201711584 +14519,7361,Mark Ruffalo,1201711570 +14519,7361,sci-fi,1201711637 +14519,8360,animation,1201710450 +14519,8360,Antonio Banderas,1201711535 +14519,8360,Cameron Diaz,1201711511 +14519,8360,Dreamworks,1201710415 +14519,8360,Eddie Murphy,1201711506 +14519,8360,Julie Andrews,1201711523 +14519,8360,Mike Myers,1201711501 +14519,8961,animation,1201710938 +14519,8961,Pixar,1201710273 +14519,8961,Samuel L. Jackson,1201710953 +14519,33794,Christian Bale,1201711658 +14519,33794,Christopher Nolan,1201711750 +14519,33794,Katie Holmes,1201711711 +14519,33794,Liam Neeson,1201711670 +14519,33794,Michael Caine,1201711666 +14519,33794,Morgan Freeman,1201711675 +14519,33794,super-hero,1201711780 +14519,39183,Ang Lee,1201712940 +14519,39183,Heath Ledger,1201712955 +14519,39183,Jake Gyllenhaal,1201712946 +14519,40629,Joe Wright,1202446559 +14519,40629,Keira Knightley,1202446545 +14519,50872,animation,1201710767 +14519,50872,Pixar,1201710772 +14519,54272,animation,1201710439 +14519,54999,Clive Owen,1202446367 +14519,54999,Monica Bellucci,1202446380 +14519,54999,Paul Giamatti,1202446391 +14519,55052,Joe Wright,1202446212 +14519,55052,Keira Knightley,1202446195 +14519,55276,George Clooney,1202446705 +14519,55276,Sydney Pollack,1202446763 +14519,55276,Tilda Swinton,1202446737 +14519,55276,Tom Wilkinson,1202446727 +14519,55276,Tony Gilroy,1202446775 +14519,55995,Angelina Jolie,1202446282 +14519,55995,animation,1202446258 +14519,55995,Anthony Hopkins,1202446272 +14519,55995,John Malkovich,1202446296 +14519,55995,Robert Zemeckis,1202446320 +14519,55995,robin wright penn,1202446308 +14519,56367,comedy,1202446058 +14519,56367,cult film,1202446145 +14519,56367,Ellen Page,1202446089 +14519,56367,humor,1202446035 +14519,56367,Jason Reitman,1202446134 +14519,56367,Jennifer Garner,1202446100 +14519,56367,Michael Cera,1202446070 +14520,34319,product placement overkill,1192803996 +14529,3006,true story,1138133578 +14529,7361,surreal,1138133597 +14529,34437,comedy,1138133283 +14529,40278,war,1142648668 +14529,40583,Political,1142648648 +14538,58559,Christian Bale,1442357380 +14538,79132,Ellen Page,1442357408 +14538,134853,creative,1442357433 +14545,6870,Oscar (Best Actor),1144867063 +14545,27904,Philip K. Dick,1166581795 +14546,260,action,1439762846 +14546,260,scifi,1439762839 +14546,7099,foreign language film,1439847139 +14546,7099,Hayao Miyazaki,1439846902 +14546,7099,Studio Ghibli,1439846898 +14546,7486,foreign language film,1439847071 +14546,7486,wong kar wai,1439847031 +14546,7981,foreign language film,1439847213 +14546,26662,foreign language film,1439847258 +14546,26662,Hayao Miyazaki,1439847236 +14546,26662,Studio Ghibli,1439847230 +14546,48394,foreign language film,1439847110 +14546,140848,Australian,1439765733 +14546,140848,based on a book,1439765800 +14570,3000,nature vs. civilization,1270930192 +14570,4226,reverse timeline,1270930251 +14570,46335,unintentionally funny,1279213910 +14570,60072,glorifying violence,1279214097 +14606,55820,plot twist,1399747556 +14642,260,Boring,1444552216 +14642,260,have not seen it,1444552227 +14642,82463,friendship,1446029101 +14642,82463,loneliness,1446029097 +14642,85213,depression,1446030991 +14642,85213,pain,1446030989 +14642,85213,psychological,1446030977 +14642,85213,suffering,1446031001 +14642,85213,suicide,1446030980 +14642,86320,cinematography,1447008682 +14642,86320,depression,1447008694 +14642,86320,sisters,1447008685 +14642,86852,depression,1444554303 +14642,90057,ambiguous,1450543103 +14642,90057,depressing,1450543094 +14642,90057,dreams,1450543096 +14642,90057,mental illness,1450543107 +14642,90057,psychology,1450543100 +14642,90374,cinematography,1449004695 +14642,90374,mesmerizing,1449004700 +14642,90376,cold,1449163790 +14642,90376,family,1449163779 +14642,90376,grief,1449163786 +14642,90376,insanity,1449163762 +14642,90376,psychological,1449163764 +14642,109452,Childhood Friends,1446028099 +14642,109452,Life under Occupation,1446028107 +14642,109452,Palestine,1446028112 +14642,120284,depression,1446029335 +14642,123947,trauma,1446384216 +14642,133771,absurdist humor,1451657023 +14642,133771,black humor,1451657026 +14642,133771,innovative idea,1451657030 +14648,260,good effects,1439583563 +14648,260,good vs evil,1439583512 +14659,648,espionage,1221666926 +14659,1089,organized crime,1221666920 +14659,1213,mafia,1221669093 +14659,1213,Martin Scorsese,1221669098 +14696,48516,violence,1451234397 +14703,61285,argument,1419968511 +14703,61285,foreign policy,1419968511 +14703,61285,political,1419968511 +14715,3160,downbeat,1341411649 +14715,3160,multiple storylines,1341411643 +14720,59418,Ellen Page,1277742601 +14720,59418,Hayley McFarland,1277742593 +14720,66934,anti-hero,1277742774 +14720,66934,Felicia Day,1277742811 +14720,66934,musical,1277742825 +14720,66934,Neil Patrick Harris,1277742768 +14721,29,dystopia,1316828808 +14721,471,quirky,1316829377 +14721,527,Steven Spielberg,1316829241 +14721,551,animation,1316831433 +14721,919,fantasy,1316830969 +14721,1193,psychology,1316828617 +14721,1198,action,1316828228 +14721,2174,comedy,1316830603 +14721,2723,parody,1317162308 +14721,3448,Vietnam War,1316967756 +14721,4467,fantasy,1317002114 +14721,4973,surreal,1316828265 +14721,6297,based on a book,1320456284 +14721,6807,comedy,1317002137 +14721,33004,comedy,1316968018 +14721,48082,fantasy,1317160797 +14721,71745,Coming of age,1316909526 +14721,76173,quirky,1316923054 +14723,1884,drugs,1265917789 +14741,50,Kevin Spacey,1320588364 +14741,50,twist ending,1320588368 +14741,296,Black comedy,1320520345 +14741,296,comedy,1320520350 +14741,296,cult film,1320520353 +14741,296,multiple storylines,1320520341 +14741,296,nonlinear,1320520342 +14741,296,organized crime,1320520338 +14741,296,Quentin Tarantino,1320520336 +14741,296,Samuel L. Jackson,1320520341 +14741,1193,Oscar (Best Picture),1320586996 +14741,1193,psychological,1320586992 +14741,1221,mafia,1320588489 +14741,1221,organized crime,1320588485 +14741,2329,Edward Norton,1320589171 +14741,2819,intrigue,1320526314 +14741,2819,Robert Redford,1320526318 +14741,2819,thriller,1320526310 +14741,4973,beautifully filmed,1320519608 +14741,4973,feel-good,1320519591 +14741,4973,great soundtrack,1320519605 +14741,4973,quirky,1320519592 +14741,4973,romance,1320519588 +14741,4979,Ben Stiller,1320520319 +14741,4979,Bill Murray,1320520314 +14741,4979,dysfunctional family,1320520327 +14741,4979,ensemble cast,1320520323 +14741,4979,Owen Wilson,1320520312 +14741,7361,alternate reality,1320519676 +14741,7361,imdb top 250,1320519683 +14741,7361,nonlinear,1320519666 +14741,7361,quirky,1320519664 +14741,7361,romance,1320519657 +14741,7361,surreal,1320519652 +14741,7361,thought-provoking,1320519654 +14741,7371,cult film,1320526248 +14741,7371,depressing,1320526245 +14741,7371,disturbing,1320526242 +14741,7371,philosophical,1320526240 +14741,7502,Mini-Series' are extended TV movies. Get over it.,1320520541 +14741,30803,cerebral,1320519865 +14741,30803,Kim Ki-duk,1320519850 +14741,30803,magic realism,1320519863 +14741,30803,quirky,1320519860 +14741,30803,visual,1320519869 +14741,36517,conspiracy,1320519965 +14741,36517,great cinematography,1320519985 +14741,36517,social commentary,1320519967 +14741,36517,tense,1320519977 +14741,36517,thriller,1320519975 +14741,44555,Oscar (Best Foreign Language Film),1320586971 +14741,44555,spying,1320586968 +14741,46578,dark comedy,1320520268 +14741,46578,dysfunctional family,1320520263 +14741,46578,quirky,1320520263 +14741,46578,road trip,1320520271 +14741,46578,satire,1320520265 +14741,46578,social commentary,1320520261 +14741,48516,atmospheric,1320526411 +14741,48516,cult movie,1320526435 +14741,48516,ensemble cast,1320526413 +14741,48516,gangsters,1320526409 +14741,48516,imdb top 250,1320526416 +14741,48516,Jack Nicholson,1320526509 +14741,48516,Leonardo DiCaprio,1320526405 +14741,48516,Martin Scorsese,1320526512 +14741,48516,suspense,1320526421 +14741,48516,twist ending,1320526425 +14741,48516,violence,1320526419 +14741,55820,coen brothers,1320525908 +14741,55820,great acting,1320525906 +14741,55820,serial killer,1320525915 +14741,55820,thriller,1320525912 +14741,55820,twist ending,1320525911 +14741,56782,Daniel Day-Lewis,1320526173 +14741,56782,Oscar (Best Cinematography),1320526199 +14741,56782,preacher,1320526204 +14741,69757,chick flick,1320520216 +14741,69757,humor,1320520206 +14741,69757,humorous,1320520205 +14741,69757,IMDB Top 250,1320520218 +14741,69757,intelligent,1320520221 +14741,69757,soundtrack,1320520227 +14751,6711,urbane,1198262610 +14798,356,funny,1436117800 +14798,356,good story,1436117800 +14798,356,tom hanks,1436117800 +14798,1527,Bruce Willis,1446569375 +14798,1527,Milla Jovovich,1446569367 +14798,1527,sci-fi,1446569381 +14798,1617,great acting,1397133757 +14798,1617,Kevin Spacey,1397133750 +14798,1617,Russell Crowe,1397133748 +14798,2762,Bruce Willis,1397326972 +14798,3178,based on a true story,1398981144 +14798,3994,Bruce Willis,1398981177 +14798,3994,Samuel L. Jackson,1398981175 +14798,58425,beautifully filmed,1397317850 +14798,58425,Iceland,1397317845 +14798,58425,Sigur Ros,1397317841 +14798,58559,Christian Bale,1397316513 +14798,58559,Heath Ledger,1397316511 +14798,79132,alternate reality,1398981225 +14798,79132,thought-provoking,1398981229 +14798,109769,cold case investigation,1446583721 +14798,109769,european,1446584355 +14799,32598,Swing and a miss,1139942304 +14804,260,have not seen it,1441564996 +14804,260,Science Fiction,1441564924 +14815,6,bank robbery,1410978177 +14815,6,Los Angeles,1410982183 +14815,6,realistic action,1410978190 +14815,16,casino,1421457582 +14815,18,comedy,1414493294 +14815,18,hotel,1414493282 +14815,18,multiple storylines,1414493272 +14815,21,Crime,1417832325 +14815,21,Hollywood,1417832353 +14815,21,movie business,1417832350 +14815,21,USA,1417844244 +14815,36,Catholicism,1380240233 +14815,36,religion,1380240216 +14815,47,police investigation,1412731759 +14815,47,religion,1412731713 +14815,47,serial killer,1412731724 +14815,50,twist ending,1378849398 +14815,110,based on a true story,1396181983 +14815,110,medieval,1396181994 +14815,110,revenge,1396182003 +14815,111,loneliness,1409929744 +14815,111,New York,1409930055 +14815,111,prostitution,1409929751 +14815,111,vigilante,1409929755 +14815,150,based on a true story,1395865506 +14815,150,space,1395865510 +14815,161,submarine,1399730878 +14815,163,action,1415958339 +14815,163,crime,1415897138 +14815,163,Mexico,1415897188 +14815,163,organized crime,1415897184 +14815,163,romance,1415897141 +14815,163,sequel,1415897144 +14815,163,shootout,1415897173 +14815,172,cyberpunk,1414331654 +14815,172,cyborgs,1414331858 +14815,172,dystopia,1414331651 +14815,172,futuristic,1414331657 +14815,172,product placement,1414331786 +14815,172,technology,1414331675 +14815,180,1990s,1414443429 +14815,180,romance,1414442708 +14815,180,teen,1414442670 +14815,180,USA,1414443438 +14815,231,buddy movie,1411392259 +14815,231,romance,1411389935 +14815,231,slapstick,1411389391 +14815,260,Hugo Award,1414193199 +14815,293,hitman,1416226185 +14815,293,imdb top 250,1416226168 +14815,293,unconventional friendship,1420347412 +14815,296,Edgar Award (Best Motion Picture),1414059596 +14815,296,imdb top 250,1416225864 +14815,300,1950s,1411137602 +14815,300,based on a true story,1411137599 +14815,300,corruption,1411137592 +14815,300,television,1411137594 +14815,300,TV show,1411137596 +14815,300,USA,1411137604 +14815,320,identity,1412998945 +14815,326,China,1394446834 +14815,326,communism,1394446846 +14815,337,brother-brother relationship,1410362972 +14815,428,1960s,1411328935 +14815,428,Bechdel Test:Fail,1411328897 +14815,428,coming of age,1411328737 +14815,428,father-son relationship,1411328760 +14815,428,gangsters,1411328755 +14815,428,italian,1411328772 +14815,428,new york,1411328742 +14815,428,USA,1411328744 +14815,431,gangsters,1411071462 +14815,431,organized crime,1411070558 +14815,431,romance,1411070563 +14815,457,chase,1396279446 +14815,457,police investigation,1396279458 +14815,457,runaway,1421502144 +14815,466,parody,1395330179 +14815,475,based on a true story,1421503401 +14815,475,terrorism,1380202580 +14815,508,AIDs,1397399166 +14815,508,courtroom,1397399183 +14815,508,homosexuality,1397400702 +14815,529,based on a true story,1394862258 +14815,529,chess,1394862265 +14815,541,Hugo Award,1414193136 +14815,553,based on a true story,1416396894 +14815,553,cowboys,1416396872 +14815,553,gunfight,1416396862 +14815,553,USA,1416396883 +14815,553,western,1416396864 +14815,589,Hugo Award,1414192843 +14815,590,indians,1394909670 +14815,593,cannibalism,1416160945 +14815,593,crime,1416160947 +14815,593,Edgar Award (Best Motion Picture),1416676122 +14815,593,FBI,1416161071 +14815,593,Hannibal Lecter,1416160975 +14815,593,imdb top 250,1416223298 +14815,593,investigation,1416161081 +14815,593,mental illness,1416160939 +14815,593,serial killer,1416162075 +14815,593,USA,1416174236 +14815,610,animation,1450678653 +14815,610,sci-fi,1450678661 +14815,668,Apu trilogy,1412546581 +14815,668,India,1412546571 +14815,668,poverty,1412546574 +14815,743,parody,1412619835 +14815,750,cold war,1414193367 +14815,750,Hugo Award,1414193343 +14815,762,Florida,1412639216 +14815,762,murder,1412638922 +14815,762,strippers,1412638797 +14815,762,USA,1412639210 +14815,805,courtroom,1379176225 +14815,903,imdb top 250,1418579461 +14815,903,romance,1418579457 +14815,903,San Francisco,1418579471 +14815,903,twist ending,1418579468 +14815,903,USA,1418579473 +14815,904,Edgar Award (Best Motion Picture),1414059380 +14815,904,imdb top 250,1418668757 +14815,904,murder,1411423101 +14815,904,voyeurism,1411423077 +14815,906,manipulation,1409957664 +14815,906,murder,1409957674 +14815,909,adultery,1435082945 +14815,909,romance,1435082948 +14815,909,suicide attempt,1435084014 +14815,911,Edgar Award (Best Motion Picture),1414059514 +14815,911,France,1414059537 +14815,911,Paris,1414059522 +14815,916,Italy,1396392124 +14815,916,Rome,1396392127 +14815,924,Hugo Award,1414193300 +14815,950,detective,1421015061 +14815,950,investigation,1421015057 +14815,950,Nick and Nora Charles,1421015159 +14815,999,California,1434534794 +14815,999,murder,1434537015 +14815,999,USA,1434534753 +14815,1077,Hugo Award,1414193261 +14815,1079,British,1395664100 +14815,1079,robbery,1395664112 +14815,1086,detective,1394970355 +14815,1086,investigation,1394971159 +14815,1090,Bechdel Test:Fail,1396441712 +14815,1090,Vietnam War,1396381292 +14815,1125,Inspector Clouseau (series),1435346156 +14815,1127,aliens,1410442075 +14815,1127,first contact,1410442093 +14815,1127,submarine,1410442032 +14815,1127,Underwater,1410442065 +14815,1178,courtroom,1417194813 +14815,1178,France,1417194805 +14815,1178,imdb top 250,1417194847 +14815,1178,military,1417194791 +14815,1178,war,1417194794 +14815,1178,World War I,1417194799 +14815,1185,disability,1410362762 +14815,1193,mental illness,1396395992 +14815,1196,Hugo Award,1414193146 +14815,1197,fantasy world,1395927522 +14815,1197,Hugo Award,1414192936 +14815,1197,romance,1414192961 +14815,1198,1930s,1418504864 +14815,1198,action,1418358641 +14815,1198,adventure,1418358636 +14815,1198,Egypt,1418358692 +14815,1198,imdb top 250,1418358608 +14815,1198,Nazis,1418358611 +14815,1198,religion,1418358613 +14815,1198,romance,1418358615 +14815,1198,treasure hunt,1418358629 +14815,1200,aliens,1397660893 +14815,1200,Hugo Award,1414193001 +14815,1200,military,1397660896 +14815,1200,space,1397660902 +14815,1202,1960s,1434568778 +14815,1202,drugs,1434568744 +14815,1202,England,1434568765 +14815,1203,AFI 10 (courtroom drama),1414022320 +14815,1203,courtroom drama,1414022332 +14815,1203,Edgar Award (Best Motion Picture),1414059413 +14815,1203,imdb top 250,1416225882 +14815,1206,Hugo Award,1414193291 +14815,1207,AFI 10 (courtroom drama),1414022355 +14815,1207,courtroom drama,1414022371 +14815,1207,racism,1414022376 +14815,1207,small town,1414022379 +14815,1208,adventure,1416174205 +14815,1208,boat,1416174292 +14815,1208,imdb top 250,1416223291 +14815,1208,military,1416174202 +14815,1208,river,1416174248 +14815,1208,Vietnam war,1416174195 +14815,1208,war,1416174198 +14815,1210,Hugo Award,1414193133 +14815,1214,futuristic,1414202599 +14815,1214,Hugo Award,1414193153 +14815,1214,space,1414202583 +14815,1214,space travel,1414202585 +14815,1217,Bechdel Test:Fail,1418524115 +14815,1217,imdb top 250,1418518924 +14815,1217,Japan,1418518946 +14815,1217,legacy,1418518942 +14815,1217,samurai,1418518972 +14815,1217,tragedy,1418524126 +14815,1217,war,1418518965 +14815,1223,Aardman,1414900427 +14815,1223,british,1414900420 +14815,1223,claymation,1414900416 +14815,1223,holiday,1414900433 +14815,1223,moon,1414900409 +14815,1223,robots,1414900445 +14815,1223,space travel,1414900411 +14815,1223,Wallace & Gromit,1414900442 +14815,1233,submarine,1408543340 +14815,1233,underwater,1421502719 +14815,1233,war,1421502720 +14815,1233,World War II,1408543346 +14815,1235,death,1416223010 +14815,1235,imdb top 250,1416223225 +14815,1235,suicide,1416223005 +14815,1235,unconventional romance,1420347314 +14815,1241,1950s,1414557071 +14815,1241,gore,1414557037 +14815,1241,mother-son relationship,1414557960 +14815,1241,zombies,1414557031 +14815,1243,dialogue driven,1412428567 +14815,1243,theater,1412436949 +14815,1252,1930s,1414379508 +14815,1252,Edgar Award (Best Motion Picture),1414378312 +14815,1252,investigation,1414377695 +14815,1252,murder,1414377686 +14815,1252,private detective,1414377681 +14815,1253,aliens,1416407411 +14815,1253,imdb top 250,1416407481 +14815,1253,science fiction,1416407454 +14815,1259,childhood,1421458373 +14815,1259,friendship,1397665509 +14815,1259,Stephen King,1397666433 +14815,1262,based on a true story,1409876917 +14815,1262,prison escape,1409876931 +14815,1262,World War II,1409876910 +14815,1263,friendship,1414569659 +14815,1263,Russian roulette,1414571077 +14815,1263,USA,1414569649 +14815,1263,Vietnam,1414569695 +14815,1263,Vietnam War,1414569644 +14815,1263,war,1414569653 +14815,1270,Hugo Award,1414193046 +14815,1274,animation,1450639642 +14815,1274,anime,1415176339 +14815,1274,cyberpunk,1415176334 +14815,1274,dystopia,1415176336 +14815,1274,future,1415176332 +14815,1274,Japan,1415176346 +14815,1274,post-apocalyptic,1415176329 +14815,1274,psychic powers,1415176324 +14815,1274,tokyo,1415176344 +14815,1278,frankenstein,1414921119 +14815,1278,monster,1414921095 +14815,1278,parody,1414921088 +14815,1281,Adolf Hitler,1413929317 +14815,1281,Charles Chaplin,1421457697 +14815,1281,Jews,1413929323 +14815,1281,World War II,1413929304 +14815,1285,Edgar Award (Best Motion Picture),1414059275 +14815,1301,aliens,1416325803 +14815,1301,psychoanalysis,1416327924 +14815,1301,science fiction,1416325736 +14815,1301,space,1416325729 +14815,1302,baseball,1395652554 +14815,1358,Edgar Award (Best Motion Picture),1414059496 +14815,1358,mental illness,1410963616 +14815,1358,murder,1410964583 +14815,1358,small town,1410964714 +14815,1358,USA,1410963668 +14815,1396,caper,1417886007 +14815,1396,hackers,1417888168 +14815,1396,hacking,1417888171 +14815,1396,heist,1417885986 +14815,1396,spying,1417886011 +14815,1425,comedy,1434586274 +14815,1425,England,1434586270 +14815,1425,management,1434592886 +14815,1425,zoo,1434586277 +14815,1466,1970s,1421502865 +14815,1466,based on a true story,1421502836 +14815,1466,organized crime,1421502870 +14815,1466,undercover cop,1421502830 +14815,1500,assassin,1395381683 +14815,1539,drugs,1436106967 +14815,1539,murder,1436107055 +14815,1584,Hugo Award,1414192767 +14815,1610,1980s,1413743213 +14815,1610,cold war,1413739308 +14815,1610,military,1413743226 +14815,1610,submarine,1413739312 +14815,1617,corruption,1397790685 +14815,1617,twist ending,1397790679 +14815,1673,1970s,1413025834 +14815,1673,1980s,1413026915 +14815,1673,porno industry,1413025849 +14815,1673,USA,1413026931 +14815,1682,Hugo Award,1414192747 +14815,1689,comedy,1449431494 +14815,1689,mistaken identity,1449431492 +14815,1689,product placement,1449431483 +14815,1689,spies,1449431486 +14815,1702,inventor,1410883561 +14815,1702,romance,1410883607 +14815,1704,college,1416223495 +14815,1704,genius,1416223487 +14815,1704,imdb top 250,1415273783 +14815,1704,mathematics,1416223480 +14815,1704,USA,1415264865 +14815,1734,children,1394112261 +14815,1734,transgender,1394112340 +14815,1784,unconventional romance,1420347565 +14815,1799,kidnapping,1411819280 +14815,1799,twist ending,1411819281 +14815,1799,USA,1411821793 +14815,1805,twist ending,1447277851 +14815,1805,USA,1447278224 +14815,1809,disability,1434308002 +14815,1809,Japan,1434308104 +14815,1809,loneliness,1434308015 +14815,1809,melancholic,1434308019 +14815,1809,police,1434308024 +14815,1809,slow,1434308395 +14815,1809,terminal illness,1434308009 +14815,1834,con artists,1411096360 +14815,1834,twist ending,1411096369 +14815,1845,blackmail,1420233733 +14815,1845,investigation,1420233742 +14815,1845,private detective,1420235636 +14815,1845,USA,1420235628 +14815,1900,brother sister relationship,1413752127 +14815,1900,children,1413752090 +14815,1900,Iran,1413752072 +14815,1900,poverty,1413752099 +14815,1900,siblings,1413752143 +14815,1900,Tehran,1413752069 +14815,1962,1950s,1413673978 +14815,1962,aging,1413676872 +14815,1962,product placement,1413673042 +14815,1962,segregation,1413673138 +14815,1962,USA,1413673006 +14815,1965,aliens,1410268951 +14815,1965,Los Angeles,1410268780 +14815,1965,surreal,1410268782 +14815,2019,action,1414305626 +14815,2019,Bechdel Test:Fail,1414305611 +14815,2019,historical,1414305616 +14815,2019,Japan,1414305614 +14815,2019,samurai,1414305642 +14815,2027,parody,1395327037 +14815,2060,competition,1425455322 +14815,2060,product placement,1425455296 +14815,2060,sport,1425455314 +14815,2060,USA,1425455311 +14815,2124,gothic,1412157200 +14815,2124,product placement,1412156262 +14815,2124,surreal,1421462048 +14815,2138,animation,1449525128 +14815,2138,cartoon,1449525100 +14815,2138,Criterion,1449525121 +14815,2138,rabbits,1449525209 +14815,2138,talking animals,1449525117 +14815,2139,anthropomorphic,1428831554 +14815,2139,Bechdel Test:Pass,1428831574 +14815,2139,mouse,1428831560 +14815,2139,rats,1428831563 +14815,2139,talking animals,1428831558 +14815,2140,dark fantasy,1420699020 +14815,2140,fantasy world,1420677606 +14815,2140,good vs evil,1420677603 +14815,2140,muppets,1420677549 +14815,2140,prophecy,1420679406 +14815,2150,Africa,1414654728 +14815,2150,Botswana,1414655822 +14815,2150,culture clash,1414654738 +14815,2150,South Africa,1414655811 +14815,2161,adventure,1427634980 +14815,2161,books,1427634992 +14815,2161,fantazy,1427635177 +14815,2167,vampires,1421503068 +14815,2170,parody,1412619856 +14815,2170,product placement,1412651704 +14815,2174,afterlife,1416952286 +14815,2174,alternate reality,1416952247 +14815,2174,Death,1416952234 +14815,2174,ghosts,1416952242 +14815,2174,haunted house,1416974845 +14815,2174,product placement,1416952002 +14815,2174,surreal,1416952251 +14815,2174,USA,1417186131 +14815,2183,London,1408479126 +14815,2183,Morocco,1408479114 +14815,2184,dark comedy,1416874029 +14815,2184,death,1416874055 +14815,2193,fantasy world,1395927764 +14815,2195,romance,1434990612 +14815,2268,AFI 10 (courtroom drama),1414189758 +14815,2268,army,1414120601 +14815,2268,courtroom,1414120768 +14815,2268,courtroom drama,1414120766 +14815,2268,crime,1414120764 +14815,2268,lawyer,1414120621 +14815,2268,Marine Corps,1414120616 +14815,2268,murder,1414125223 +14815,2268,USA,1414120592 +14815,2275,desert,1414104945 +14815,2275,guitar,1414104945 +14815,2275,post-apocalyptic,1414104948 +14815,2288,alien invasion,1413906728 +14815,2288,aliens,1413906735 +14815,2288,Antarctica,1413906726 +14815,2288,Bechdel Test:Fail,1413911223 +14815,2288,isolation,1413904975 +14815,2289,Edgar Award (Best Motion Picture),1414289087 +14815,2289,Hollywood,1414218301 +14815,2289,movie business,1414218309 +14815,2289,USA,1414218294 +14815,2291,Hugo Award,1414192866 +14815,2302,courtroom,1434300709 +14815,2302,lawyers,1434300730 +14815,2302,murder,1434300693 +14815,2336,England,1412886229 +14815,2336,history,1412886213 +14815,2336,monarchy,1412886225 +14815,2355,animation,1451166360 +14815,2355,ants,1451170780 +14815,2355,circus,1451166411 +14815,2355,insects,1451170794 +14815,2355,nature,1451166382 +14815,2355,Pixar,1451166405 +14815,2355,royalty,1451170741 +14815,2355,talking animals,1451166374 +14815,2355,watch the credits,1451170733 +14815,2357,Brazil,1379034705 +14815,2357,road trip,1421457196 +14815,2357,South America,1421457190 +14815,2381,police,1413764220 +14815,2387,bachelor party,1436124324 +14815,2387,dark comedy,1436124302 +14815,2387,murder,1436124378 +14815,2387,USA,1436124306 +14815,2387,wedding,1436124317 +14815,2395,high school,1417998211 +14815,2395,love,1417998243 +14815,2395,product placement,1417992233 +14815,2395,romance,1417998249 +14815,2395,USA,1417999260 +14815,2413,alternate endings,1420860496 +14815,2413,blackmail,1420860511 +14815,2413,murder,1420860500 +14815,2413,whodunit,1421502450 +14815,2502,office,1435939289 +14815,2502,product placement,1435937698 +14815,2502,USA,1435939306 +14815,2502,workplace,1435939298 +14815,2529,dystopia,1416342646 +14815,2529,imdb top 250,1416342678 +14815,2529,science fiction,1416342684 +14815,2542,dark comedy,1418594785 +14815,2542,drugs,1418594811 +14815,2542,England,1418594799 +14815,2542,imdb top 250,1418594775 +14815,2542,London,1418596468 +14815,2542,multiple storylines,1418594778 +14815,2542,organized crime,1418594783 +14815,2594,mindfuck,1378849324 +14815,2594,Twist ending,1378849313 +14815,2618,Australia,1420479706 +14815,2618,comedy,1420479830 +14815,2618,courtroom,1420479708 +14815,2618,family,1420479744 +14815,2618,Melbourne,1420479715 +14815,2618,narrated,1420479732 +14815,2696,based on a play,1421990898 +14815,2696,comedy,1421990882 +14815,2696,France,1421990866 +14815,2718,beauty pageant,1429321169 +14815,2718,fake documentary,1429321178 +14815,2718,Minnesota,1429321173 +14815,2718,mockumentary,1429322881 +14815,2718,USA,1429321175 +14815,2791,Parody,1395330112 +14815,2810,anime,1416758901 +14815,2810,celebrity,1416758914 +14815,2810,cult of persona,1416758898 +14815,2810,distorted reality,1416758887 +14815,2810,identity,1416758908 +14815,2810,Japan,1417186225 +14815,2810,stalker,1416758894 +14815,2912,crime,1418696237 +14815,2912,father daughter relationship,1418694950 +14815,2912,Los Angeles,1418696248 +14815,2912,revenge,1418694944 +14815,2912,USA,1418696243 +14815,2916,memory,1410645645 +14815,2916,terrorism,1410645649 +14815,2924,kung fu,1421523785 +14815,2924,martial arts,1421523787 +14815,2931,gypsy,1411613924 +14815,2953,family,1395028318 +14815,2959,imdb top 250,1416225919 +14815,2959,mental illness,1416225921 +14815,2959,twist ending,1416225924 +14815,2966,road trip,1410186527 +14815,2987,animation,1451246799 +14815,2987,cartoon,1451246831 +14815,2987,comedy,1451246843 +14815,2987,crime,1451246848 +14815,2987,Hugo Award,1414192903 +14815,2987,murder,1451246856 +14815,2987,private detective,1451246807 +14815,3000,fantasy world,1397058567 +14815,3000,Studio Ghibli,1397058548 +14815,3006,based on a true story,1410209672 +14815,3006,journalism,1410209674 +14815,3006,tobacco,1410209682 +14815,3006,USA,1410209683 +14815,3008,apocalypse,1413332075 +14815,3008,Canada,1413332072 +14815,3008,end of the world,1413332002 +14815,3008,multiple storylines,1413332077 +14815,3088,imaginary friend,1414188585 +14815,3088,mental illness,1414188536 +14815,3088,psychiatry,1414188540 +14815,3088,USA,1414188555 +14815,3104,ex-cop,1413475585 +14815,3104,road trip,1413475559 +14815,3160,imdb top 250,1416225807 +14815,3160,multiple storylines,1415191838 +14815,3160,product placement,1415186219 +14815,3252,blindness,1420346510 +14815,3252,disability,1420346512 +14815,3252,friendship,1420346521 +14815,3252,unconventional friendship,1420346538 +14815,3252,USA,1420346505 +14815,3256,jack ryan,1434238947 +14815,3256,thriller,1434238952 +14815,3265,action,1413689046 +14815,3265,explosions,1413690099 +14815,3265,gunfight,1413685489 +14815,3265,Hong Kong,1413685514 +14815,3265,undercover cop,1413687312 +14815,3266,belgium,1410901870 +14815,3266,mockumentary,1410901875 +14815,3266,serial killer,1410901899 +14815,3267,organized crime,1415897242 +14815,3273,serial killer,1412894753 +14815,3273,slasher,1412894781 +14815,3300,aliens,1397701493 +14815,3300,anti-hero,1397701461 +14815,3300,space,1397701472 +14815,3323,heist,1434473804 +14815,3323,suicide,1434473811 +14815,3323,theft,1434473806 +14815,3323,USA,1434474513 +14815,3362,bank robbery,1416522264 +14815,3362,based on a true story,1416522301 +14815,3362,heist,1416522326 +14815,3362,imdb top 250,1416522512 +14815,3362,new york,1416522308 +14815,3362,one day,1416522311 +14815,3362,police,1416522266 +14815,3362,robbery,1416522316 +14815,3362,USA,1416522305 +14815,3412,hunting,1378990542 +14815,3412,wilderness,1378990531 +14815,3435,crime,1414455946 +14815,3435,USA,1414455938 +14815,3468,imdb top 250,1420436942 +14815,3468,pool,1420439535 +14815,3468,product placement,1420435258 +14815,3468,romance,1420440182 +14815,3469,courtroom drama,1399894409 +14815,3469,evolution,1399894478 +14815,3469,religion,1399894388 +14815,3471,aliens,1421454611 +14815,3471,product placement,1416761281 +14815,3471,USA,1417186198 +14815,3499,Stephen King,1378223836 +14815,3578,Bechdel Test:Fail,1396118066 +14815,3671,parody,1408638719 +14815,3671,western,1408638816 +14815,3751,aardman,1436045933 +14815,3751,animals,1436045935 +14815,3751,birds,1436045981 +14815,3751,claymation,1436045931 +14815,3751,countryside,1436045966 +14815,3751,farm,1436045973 +14815,3751,talking animals,1436045977 +14815,3785,parody,1395330126 +14815,3789,1960s,1411734313 +14815,3789,USA,1411734319 +14815,3793,mutants,1414318583 +14815,3793,superhero,1414318548 +14815,3793,X-men,1414318526 +14815,3801,AFI 10 (courtroom drama),1414022284 +14815,3801,courtroom,1414022112 +14815,3801,courtroom drama,1414022116 +14815,3801,crime,1414022139 +14815,3801,murder,1414022134 +14815,3801,psychiatry,1414022150 +14815,3801,rape,1414022128 +14815,3831,drugs,1434372446 +14815,3831,England,1434372428 +14815,3831,marijuana,1434372454 +14815,3869,parody,1395330122 +14815,3911,competition,1419999889 +14815,3911,dogs,1419999879 +14815,3911,mockumentary,1419999862 +14815,3972,1920s,1420031507 +14815,3972,comedy,1420033401 +14815,3972,fighting,1420031525 +14815,3972,Hong Kong,1420031504 +14815,3972,kung fu,1420031512 +14815,3972,martial arts,1420031515 +14815,4002,road trip,1429828481 +14815,4002,travel,1429828488 +14815,4002,USA,1429833061 +14815,4011,England,1410828398 +14815,4011,multiple storylines,1410828391 +14815,4011,twist ending,1410828392 +14815,4016,Disney,1427739314 +14815,4016,friendship,1427739332 +14815,4016,South America,1427739324 +14815,4016,Transformation,1427739354 +14815,4022,island,1436306328 +14815,4022,isolation,1436306343 +14815,4022,loneliness,1436306337 +14815,4022,survival,1436307319 +14815,4034,drugs,1396972492 +14815,4034,Edgar Award (Best Motion Picture),1414059651 +14815,4065,blaxploitation,1396523625 +14815,4065,revenge,1396523594 +14815,4149,comedy,1429966791 +14815,4149,product placement,1429938734 +14815,4149,romance,1429940174 +14815,4149,USA,1429982133 +14815,4210,serial killer,1378393936 +14815,4223,army,1416338832 +14815,4223,Nazis,1416338801 +14815,4223,ruins,1416338823 +14815,4223,Russia,1416338839 +14815,4223,Saint Petersburg,1416338844 +14815,4223,sniper,1416338798 +14815,4223,war,1416338809 +14815,4223,World War II,1416338814 +14815,4226,Edgar Award (Best Motion Picture),1414059210 +14815,4226,imdb top 250,1416226206 +14815,4226,mindfuck,1378849356 +14815,4226,nonlinear,1396438790 +14815,4226,twist ending,1378849339 +14815,4306,Shrek franchise,1447249672 +14815,4326,based on a true story,1395052827 +14815,4326,Ku Klux Klan,1395052832 +14815,4366,Atlantis,1421502736 +14815,4366,Disney,1421502740 +14815,4366,steampunk,1421502748 +14815,4366,underwater,1421502732 +14815,4378,slow,1434421348 +14815,4378,Spain,1434421340 +14815,4381,France,1427248262 +14815,4388,parody,1395330131 +14815,4427,England,1412297744 +14815,4427,history,1412297736 +14815,4427,plotting,1412297727 +14815,4452,organized crime,1434371910 +14815,4452,USA,1434372481 +14815,4454,claymation,1379164378 +14815,4454,dystopia,1396032242 +14815,4454,short,1379164393 +14815,4454,youtube,1434840430 +14815,4499,casino,1420329376 +14815,4499,con artists,1420329352 +14815,4499,France,1420329333 +14815,4529,desert,1378922817 +14815,4546,buried alive,1418755571 +14815,4546,France,1418766535 +14815,4546,kidnapping,1418755574 +14815,4640,mafia,1395819522 +14815,4662,blindness,1450045938 +14815,4662,deafness,1450045943 +14815,4662,USA,1450045935 +14815,4728,comedy,1414765201 +14815,4728,money,1414765227 +14815,4728,road trip,1414765243 +14815,4776,police corruption,1396538218 +14815,4816,comedy,1415093581 +14815,4816,fashion,1415088236 +14815,4816,product placement,1415088229 +14815,4850,anime,1434280797 +14815,4855,Dirty Harry,1378205365 +14815,4896,adventure,1422079915 +14815,4896,boarding school,1422103334 +14815,4896,fantasy world,1422079859 +14815,4896,good versus evil,1422079831 +14815,4896,harry potter,1422079835 +14815,4896,magic,1422111939 +14815,4896,wizards,1422079842 +14815,4957,Dirty Harry,1378205388 +14815,4969,Agatha Christie,1435803572 +14815,4969,crime,1435803586 +14815,4969,mystery,1435803583 +14815,4969,whodunit,1435803568 +14815,4974,parody,1395493534 +14815,4981,England,1434848436 +14815,4981,farce,1434848440 +14815,4981,headmaster,1435268040 +14815,4993,based on a book,1394360621 +14815,4993,big budget,1421456164 +14815,4993,fantasy world,1394361307 +14815,4993,Hugo Award,1414192479 +14815,4993,imdb top 250,1416226017 +14815,4995,based on a true story,1416274597 +14815,4995,biography,1416274599 +14815,4995,college,1416274611 +14815,4995,imdb top 250,1416276606 +14815,4995,mathematics,1416274609 +14815,4995,mental illness,1416274589 +14815,4995,romance,1416274592 +14815,4995,schizophrenia,1416274605 +14815,4995,USA,1416351382 +14815,5004,party,1427752292 +14815,5004,USA,1427752289 +14815,5008,AFI 10 (courtroom drama),1414022395 +14815,5008,Agatha Christie,1413960833 +14815,5008,courtroom,1413960845 +14815,5008,courtroom drama,1413960842 +14815,5008,crime,1413960857 +14815,5008,imdb top 250,1421502344 +14815,5008,whodunit,1421502421 +14815,5010,based on a true story,1395786314 +14815,5021,product placement,1420960469 +14815,5021,whodunit,1420999085 +14815,5038,dragons,1428860072 +14815,5038,fantasy world,1428860184 +14815,5038,good versus evil,1428860085 +14815,5038,magic,1428860088 +14815,5038,time travel,1428860064 +14815,5062,identity,1412994340 +14815,5062,plastic surgery,1412994346 +14815,5062,surgery,1421504478 +14815,5064,adventure,1436482733 +14815,5064,based on a book,1436482726 +14815,5064,costume drama,1436482815 +14815,5064,France,1436482741 +14815,5064,prison,1436482738 +14815,5064,prison escape,1436482718 +14815,5064,revenge,1436482719 +14815,5069,anime,1396267649 +14815,5069,Bechdel Test:Pass,1396267419 +14815,5069,fantasy world,1396267430 +14815,5072,androids,1413510020 +14815,5072,anime,1413510070 +14815,5072,deus ex machina,1413510695 +14815,5072,future,1413510120 +14815,5072,robots,1413510110 +14815,5110,comedy,1414644995 +14815,5110,drugs,1414643847 +14815,5110,police,1414643849 +14815,5120,adultery,1414058951 +14815,5120,Bechdel Test:Fail,1414058954 +14815,5120,Edgar Award (Best Motion Picture),1414059081 +14815,5120,game,1414059006 +14815,5120,murder,1414058993 +14815,5120,mystery,1414061404 +14815,5146,anime,1397489216 +14815,5146,fantasy world,1397489242 +14815,5146,vampires,1421503108 +14815,5218,Ice Age franchise,1447249449 +14815,5254,vampires,1421503076 +14815,5294,father-son relationship,1417535367 +14815,5294,insanity,1417535364 +14815,5294,mental illness,1417535376 +14815,5294,mission from God,1417535426 +14815,5294,religion,1417535355 +14815,5294,serial killer,1417535358 +14815,5294,surreal,1417535438 +14815,5294,Texas,1417535409 +14815,5294,twist ending,1417535371 +14815,5294,USA,1417535413 +14815,5319,con artists,1396195167 +14815,5319,twist ending,1396194310 +14815,5348,movie business,1396367516 +14815,5349,superhero,1395828414 +14815,5397,chemistry,1414678226 +14815,5397,comedy,1414678168 +14815,5397,science,1421503984 +14815,5475,based on a true story,1413846572 +14815,5475,Edgar Award (Best Motion Picture),1414059618 +14815,5475,investigation,1413906374 +14815,5475,political thriller,1413906388 +14815,5475,politics,1413851808 +14815,5481,parody,1395335381 +14815,5602,easily confused with other movie(s) (title),1414982699 +14815,5602,England,1414982683 +14815,5602,robbery,1414982714 +14815,5603,England,1412023631 +14815,5603,heist,1412023605 +14815,5604,England,1434486144 +14815,5604,inventor,1434486147 +14815,5608,based on a true story,1394038119 +14815,5608,brutal,1416973605 +14815,5608,Germany,1416973612 +14815,5608,prison,1394038128 +14815,5618,animation,1450639320 +14815,5618,fantasy world,1397058589 +14815,5618,Studio Ghibli,1397058539 +14815,5636,comedy,1434380219 +14815,5636,heist,1434380061 +14815,5636,USA,1434380059 +14815,5662,comedy,1434627604 +14815,5662,parody,1434627755 +14815,5662,USA,1434627607 +14815,5690,Studio Ghibli,1397175612 +14815,5690,World War II,1397175615 +14815,5782,easily confused with other movie(s) (title),1380175054 +14815,5782,Not Luc Besson,1380175049 +14815,5816,boarding school,1422103315 +14815,5816,fantasy world,1422103289 +14815,5816,harry potter,1422103302 +14815,5816,magic,1422111884 +14815,5816,wizards,1422103299 +14815,5878,unconventional romance,1420347523 +14815,5952,based on a book,1394377844 +14815,5952,big budget,1421456189 +14815,5952,fantasy world,1394377898 +14815,5952,Hugo Award,1414192491 +14815,5952,imdb top 250,1416226097 +14815,5971,Studio Ghibli,1397175513 +14815,5995,based on a true story,1397244029 +14815,5995,holocaust,1397244072 +14815,5995,World War II,1397244069 +14815,6016,Brazil,1421457180 +14815,6016,imdb top 250,1416225893 +14815,6016,South America,1421457184 +14815,6119,Christmas,1416587096 +14815,6119,dark comedy,1421456976 +14815,6119,France,1416587062 +14815,6214,brutal,1416973858 +14815,6214,mindfuck,1378849483 +14815,6214,rape,1378849498 +14815,6223,drugs,1378858412 +14815,6235,based on a true story,1409343877 +14815,6235,Jews,1409343825 +14815,6235,nazi,1409343820 +14815,6235,World War II,1409343823 +14815,6283,anime,1414633416 +14815,6283,BOUNTY HUNTERS,1414633439 +14815,6283,mars,1414633423 +14815,6283,product placement,1414626630 +14815,6283,terrorism,1414635026 +14815,6300,crime,1418677456 +14815,6300,Denmark,1418677423 +14815,6300,friendship,1418677426 +14815,6322,con artists,1447353405 +14815,6322,twist ending,1447353406 +14815,6322,USA,1447353402 +14815,6333,superhero,1399411263 +14815,6350,steampunk,1397057255 +14815,6350,Studio Ghibli,1397057258 +14815,6530,France,1419625822 +14815,6530,mental illness,1419623831 +14815,6530,paranoia,1419626251 +14815,6530,Paris,1419625826 +14815,6530,suicide,1419623817 +14815,6530,unreliable narrators,1419623820 +14815,6539,Disney,1395896663 +14815,6539,pirates,1395896665 +14815,6567,1980s,1434493904 +14815,6567,black market,1434493969 +14815,6567,drugs,1434493894 +14815,6567,Germany,1434493958 +14815,6567,military,1434493886 +14815,6579,Berlin,1435072153 +14815,6579,Cold War,1435072140 +14815,6579,communism,1435072144 +14815,6579,fast paced,1435076064 +14815,6579,germany,1435072147 +14815,6639,1960s,1411165333 +14815,6639,blindness,1411165316 +14815,6639,con artists,1411165275 +14815,6650,England,1415077473 +14815,6650,murder,1415077493 +14815,6650,nobility,1415077435 +14815,6650,serial killer,1415077501 +14815,6662,1960s,1421392475 +14815,6662,Inspector Clouseau (series),1421392538 +14815,6662,Italy,1421392499 +14815,6672,journalism,1413903095 +14815,6672,photography,1413903092 +14815,6672,poverty,1413903110 +14815,6672,war,1413903082 +14815,6713,anime,1417030000 +14815,6713,Japan,1417186094 +14815,6713,movie business,1417030004 +14815,6713,romance,1417029989 +14815,6724,1930s,1411310917 +14815,6724,con artists,1411310900 +14815,6724,USA,1411310921 +14815,6777,AFI 10 (courtroom drama),1414022425 +14815,6777,courtroom,1394593979 +14815,6777,courtroom drama,1414022419 +14815,6796,black,1411002151 +14815,6796,gangs,1411004572 +14815,6796,USA,1411002146 +14815,6814,gunfight,1435608420 +14815,6814,USA,1435608429 +14815,6867,friendship,1399939286 +14815,6867,trains,1399939311 +14815,6869,Brazil,1413420345 +14815,6869,hostage,1413420832 +14815,6879,courtroom,1412188728 +14815,6879,USA,1412212001 +14815,6888,parody,1395330533 +14815,6893,caper,1418264566 +14815,6893,car chase,1418264558 +14815,6893,easily confused with other movie(s) (title),1418265345 +14815,6893,England,1418264546 +14815,6893,Italy,1418264540 +14815,6893,organized crime,1418264562 +14815,6893,product placement,1418262381 +14815,6893,Turin,1418264595 +14815,6902,road trip,1410357708 +14815,6947,Bechdel Test:Fail,1412969108 +14815,6947,england,1412966373 +14815,6947,history,1412966386 +14815,6947,seafaring,1412966401 +14815,6947,war,1412966438 +14815,7022,dystopia,1416973692 +14815,7022,island,1416973685 +14815,7022,isolation,1416973682 +14815,7022,Japan,1416973688 +14815,7027,western,1421536652 +14815,7028,bank robbery,1434315206 +14815,7028,heist,1434315183 +14815,7028,New York City,1434315195 +14815,7028,USA,1434315198 +14815,7048,buddy movie,1435267669 +14815,7048,comedy,1435264545 +14815,7048,product placement,1435265053 +14815,7048,USA,1435268513 +14815,7048,watch the credits,1435265232 +14815,7063,Amazon,1415288467 +14815,7063,conquistador,1415288481 +14815,7063,exploration,1415288458 +14815,7063,history,1416223710 +14815,7063,megalomania,1415288461 +14815,7063,South America,1415288469 +14815,7075,England,1418052639 +14815,7075,medieval,1418052624 +14815,7075,musical,1418052634 +14815,7075,royalty,1418052630 +14815,7076,Edgar Award (Best Motion Picture),1414059684 +14815,7099,fantasy world,1394379569 +14815,7099,post-apocalyptic,1394379574 +14815,7099,Studio Ghibli,1397058526 +14815,7116,Edgar Award (Best Foreign Film),1415103268 +14815,7116,France,1415104424 +14815,7116,imdb top 250,1415158325 +14815,7116,mystery,1415103312 +14815,7118,alternate world,1396356249 +14815,7118,anime,1396358334 +14815,7143,Bechdel Test:Fail,1410995092 +14815,7143,cross-cultural,1410992265 +14815,7143,Japan,1410992183 +14815,7143,martial arts,1410992187 +14815,7143,rebellion,1410992176 +14815,7143,samurai,1410992185 +14815,7143,sword fight,1410992180 +14815,7153,based on a book,1394377884 +14815,7153,big budget,1421456174 +14815,7153,fantasy world,1394377870 +14815,7153,Hugo Award,1414192486 +14815,7153,imdb top 250,1416226061 +14815,7209,beach,1419951726 +14815,7209,France,1419951884 +14815,7209,hotel,1419951743 +14815,7209,no plot,1419951911 +14815,7209,vacation,1419951740 +14815,7256,based on a true story,1410362582 +14815,7256,isolation,1413908229 +14815,7256,mountain climbing,1410362585 +14815,7256,mountains,1413908238 +14815,7266,low budget,1411224119 +14815,7266,parody,1411224130 +14815,7266,science fiction,1421504215 +14815,7360,action,1414042662 +14815,7360,post-apocalyptic,1414042658 +14815,7360,zombies,1414042647 +14815,7387,mall,1429997060 +14815,7387,survival,1429995043 +14815,7387,USA,1429995033 +14815,7387,zombies,1429995046 +14815,7445,bodyguard,1397314335 +14815,7445,kidnapping,1397314305 +14815,7454,Van Helsing,1421502943 +14815,7458,action,1416152904 +14815,7458,battles,1416152913 +14815,7458,big budget,1421456788 +14815,7458,sword and sandal,1416152918 +14815,7459,1980s,1414668976 +14815,7459,1990s,1414668993 +14815,7459,based on a true story,1414668795 +14815,7459,Brazil,1414668810 +14815,7459,drugs,1414670241 +14815,7459,murder,1414670248 +14815,7459,prison,1414668804 +14815,7560,Bechdel Test:Fail,1414747331 +14815,7560,Cold War,1414747313 +14815,7560,nuclear attack,1414747840 +14815,7560,USA,1414747322 +14815,7587,crime,1414115228 +14815,7587,France,1414115255 +14815,7587,hitman,1414115242 +14815,7587,Paris,1414115254 +14815,7616,USA,1447278218 +14815,7700,imdb top 250,1420617713 +14815,7700,Latin America,1420617719 +14815,7700,product placement,1420960455 +14815,7706,Marx Brothers,1414727326 +14815,7827,brainwashing,1429629312 +14815,7827,business,1429629316 +14815,7827,corporate espionage,1429629305 +14815,7827,espionage,1429629307 +14815,7833,Nick and Nora Charles,1421271837 +14815,7915,Japan,1429921372 +14815,7915,martial arts,1429921377 +14815,7915,samurai,1429921368 +14815,7934,mockumentary,1413865040 +14815,7934,multiple personalities,1413865068 +14815,7934,parody,1413865042 +14815,7934,psychology,1413865016 +14815,8014,buddhism,1416607646 +14815,8014,imdb top 250,1416710590 +14815,8014,Isolation,1416607635 +14815,8014,nature,1416607630 +14815,8014,religion,1416607667 +14815,8033,heist,1410486305 +14815,8117,anti-hero,1421453427 +14815,8117,brother-brother relationship,1421457380 +14815,8117,dark comedy,1421453434 +14815,8117,Denmark,1421460022 +14815,8117,heist,1421453410 +14815,8117,product placement,1421447297 +14815,8253,anime,1397456237 +14815,8253,Studio Ghibli,1397456243 +14815,8340,Alcatraz,1416692491 +14815,8340,escape,1416692488 +14815,8340,island,1416692458 +14815,8340,prison,1416692506 +14815,8340,prison escape,1416692461 +14815,8340,USA,1417186291 +14815,8360,Dreamworks,1412648662 +14815,8360,fairy tale,1412648607 +14815,8360,fantasy world,1412971046 +14815,8360,parody,1412648612 +14815,8360,product placement,1412649733 +14815,8360,romance,1412648672 +14815,8360,Shrek franchise,1447249678 +14815,8360,talking animals,1412648657 +14815,8368,boarding school,1422111814 +14815,8368,fantasy world,1422111812 +14815,8368,harry potter,1422111809 +14815,8368,magic,1422111806 +14815,8368,time travel,1422111800 +14815,8368,werewolves,1422111789 +14815,8368,wizards,1422111796 +14815,8376,high school,1434644406 +14815,8376,nerds,1434646449 +14815,8376,off-beat comedy,1434646324 +14815,8376,quirky,1434646329 +14815,8376,slow,1434646335 +14815,8376,teen,1434644410 +14815,8376,watch the credits,1434646316 +14815,8528,comedy,1435433889 +14815,8528,competition,1435443049 +14815,8528,product placement,1435441175 +14815,8528,sports,1435433901 +14815,8528,USA,1435433894 +14815,8537,fantasy world,1397142124 +14815,8576,comedy,1450532461 +14815,8576,police,1450532465 +14815,8576,rural,1450532464 +14815,8576,small town,1450532466 +14815,8576,Sweden,1450532474 +14815,8641,1970s,1421381105 +14815,8641,journalism,1421381111 +14815,8641,television,1421381097 +14815,8644,artificial intelligence,1411573052 +14815,8644,investigation,1411569915 +14815,8644,product placement,1411569537 +14815,8644,robots,1411569904 +14815,8644,USA,1411569884 +14815,8730,based on a true story,1410780165 +14815,8730,Bechdel Test:Fail,1410751425 +14815,8730,Christianity,1410751387 +14815,8730,prisoners of war,1410751379 +14815,8730,World War II,1410751450 +14815,8780,1910s,1435370599 +14815,8780,based on a book,1435404757 +14815,8780,crime,1435370564 +14815,8780,dark comedy,1435404683 +14815,8780,Europe,1435370588 +14815,8780,hit men,1435405310 +14815,8780,journalism,1435370577 +14815,8780,murder,1435370570 +14815,8783,isolation,1413906247 +14815,8874,parody,1395330170 +14815,8933,dialogue driven,1410290666 +14815,8950,twist ending,1395912371 +14815,8957,serial killer,1416597324 +14815,8957,torture,1416597326 +14815,8957,twist ending,1416597327 +14815,8961,action,1417844179 +14815,8961,Disney,1417961552 +14815,8961,family,1417844177 +14815,8961,Hugo Award,1414192727 +14815,8961,imdb top 250,1417961543 +14815,8961,Pixar,1417961566 +14815,8961,superhero,1417844190 +14815,8974,animation,1447275083 +14815,8984,caper,1450137546 +14815,8984,heist,1450137553 +14815,8985,vampires,1421503072 +14815,25750,Buster Keaton,1417218624 +14815,25750,stealing,1417218602 +14815,25771,short,1427666078 +14815,25771,surrealism,1427666080 +14815,26082,imdb top 250,1420576636 +14815,26082,Japan,1420576354 +14815,26082,realistic action,1420576822 +14815,26082,revenge,1420576463 +14815,26082,ronin,1420576438 +14815,26082,samurai,1420576428 +14815,26082,slow,1420576419 +14815,26082,storytelling,1420576452 +14815,26082,suicide,1420576349 +14815,26131,Africa,1417973529 +14815,26131,Algeria,1417973527 +14815,26131,Algiers,1417973603 +14815,26131,based on a true story,1417973588 +14815,26131,Bechdel Test:Fail,1417973520 +14815,26131,colonialism,1417973533 +14815,26131,France,1417973553 +14815,26131,history,1417973578 +14815,26131,imdb top 250,1417973609 +14815,26131,terrorism,1417973556 +14815,26133,cartoon,1420298826 +14815,26133,Christmas,1420298814 +14815,26133,short,1420298820 +14815,26183,ancient civilization,1428024598 +14815,26183,Asterix,1428025067 +14815,26215,communism,1412903007 +14815,26215,nonlinear,1412902999 +14815,26215,revenge,1412905911 +14815,26268,France,1422060924 +14815,26268,secret service,1422060960 +14815,26282,France,1416504413 +14815,26282,Jewish,1416504428 +14815,26282,Paris,1416504417 +14815,26547,Hong Kong,1425455356 +14815,26701,anime,1428926221 +14815,26701,Japan,1428926231 +14815,26701,mecha,1428926219 +14815,26701,robots,1428926226 +14815,26743,anime,1413513592 +14815,26743,Bechdel Test:Pass,1413513580 +14815,26743,remembrance,1413656451 +14815,26743,Studio Ghibli,1413513585 +14815,26776,anime,1397058614 +14815,26776,Studio Ghibli,1397057276 +14815,26840,Japan,1409660908 +14815,26840,organized crime,1409660912 +14815,26840,yakuza,1409660905 +14815,26865,fighting,1427044171 +14815,26865,martial arts,1427044187 +14815,26903,Studio Ghibli,1397175657 +14815,26934,cooking,1411409399 +14815,26934,Hong Kong,1411412918 +14815,27022,USA,1437381206 +14815,27073,Australia,1410828183 +14815,27369,teen,1412477306 +14815,27592,kidnapping,1396137763 +14815,27716,dark comedy,1418677526 +14815,27716,Denmark,1418677510 +14815,27728,anime,1434886720 +14815,27728,cyberpunk,1434886716 +14815,27731,Studio Ghibli,1397175554 +14815,27773,brutal,1416973629 +14815,27773,imdb top 250,1416226239 +14815,27773,Korea,1416973639 +14815,27773,revenge,1416226243 +14815,27781,alcoholism,1420355190 +14815,27781,isolation,1420355195 +14815,27781,Norway,1420355129 +14815,27781,surreal,1420355179 +14815,27790,British,1397583942 +14815,27790,Christianity,1397583925 +14815,27790,religion,1397583921 +14815,27790,robbery,1397583931 +14815,27803,based on a true story,1421461855 +14815,27803,euthanasia,1379698117 +14815,27803,Spain,1421461840 +14815,27815,1940s,1414033226 +14815,27815,boarding school,1414029798 +14815,27815,boys' school,1414029808 +14815,27815,choir,1414029767 +14815,27815,France,1414029782 +14815,27815,singing,1414029773 +14815,27869,brother-brother relationship,1427660274 +14815,27869,Korean war,1427660263 +14815,27869,war,1427660269 +14815,31150,fantasy,1427473818 +14815,31150,good versus evil,1427495607 +14815,31359,female genital mutilation,1393749372 +14815,31364,based on a true story,1396098296 +14815,31364,police investigation,1396098282 +14815,31364,serial killer,1396098289 +14815,31364,South Korea,1421461670 +14815,31410,Adolf Hitler,1408140626 +14815,31410,Berlin,1408140630 +14815,31410,Germany,1408141746 +14815,31410,World War II,1408141737 +14815,31658,fantasy world,1397175492 +14815,31658,steampunk,1397175492 +14815,31658,Studio Ghibli,1397175492 +14815,31894,aliens,1414859594 +14815,31894,short,1414859583 +14815,31894,Sony Pictures Animation,1414859576 +14815,31952,subway,1395407924 +14815,32456,Studio Ghibli,1397175572 +14815,32460,Comedy,1427681656 +14815,32460,friendship,1427681646 +14815,32460,Germany,1427681641 +14815,32460,roadtrip,1427681649 +14815,32460,terminal illness,1427681643 +14815,32562,short,1379411318 +14815,32587,brutal,1416973562 +14815,32587,crime,1416973776 +14815,32587,imdb top 250,1416973532 +14815,32587,multiple storylines,1416973534 +14815,32657,Jean Giono,1434839479 +14815,32657,youtube,1434839455 +14815,32840,claymation,1379178124 +14815,32840,short,1379178127 +14815,32840,youtube,1434839873 +14815,32853,France,1435663695 +14815,32853,World War II,1435663707 +14815,32892,Russia,1413411386 +14815,32892,World War II,1413411389 +14815,33004,aliens,1419961224 +14815,33004,science fiction,1421504205 +14815,33004,space,1419961230 +14815,33004,space travel,1419960591 +14815,33166,multiple storylines,1395070609 +14815,33615,Africa,1450903982 +14815,33615,animals,1450903984 +14815,33615,animation,1450903978 +14815,33615,Dreamworks,1450904341 +14815,33615,island,1450904074 +14815,33615,jungle,1450904062 +14815,33615,Madagascar,1450904070 +14815,33615,talking animals,1450904042 +14815,33615,wilderness,1450904084 +14815,33615,zoo,1450904051 +14815,33779,stand-up comedy,1435013070 +14815,33794,batman,1421455800 +14815,33794,imdb top 250,1421455930 +14815,33794,superhero,1421455803 +14815,33794,vigilante,1421455805 +14815,34072,animals,1420089051 +14815,34072,antarctica,1420088999 +14815,34072,documentary,1420089001 +14815,34072,nature,1421504798 +14815,34072,nature wildlife,1420089003 +14815,34072,penguins,1420089006 +14815,34319,product placement,1377700202 +14815,36535,culture clash,1413949671 +14815,36535,Holocaust,1413949651 +14815,36535,Jews,1413949664 +14815,36535,ukraine,1413949633 +14815,36708,product placement,1414007490 +14815,36708,time travel,1414009723 +14815,37384,restaurant,1428046546 +14815,37384,workplace,1428046592 +14815,37495,Japan,1414588742 +14815,37495,multiple storylines,1414589305 +14815,37495,murder,1414589252 +14815,37495,surreal,1414588737 +14815,37731,comraderie,1416684384 +14815,37731,england,1416684366 +14815,37731,football,1416684363 +14815,37731,friendship,1416684388 +14815,37731,hooligans,1416684372 +14815,37731,soccer,1416684656 +14815,37830,anime,1427800287 +14815,37830,fantasy world,1427800279 +14815,37830,final fantasy,1427800282 +14815,37830,sci-fi,1427800299 +14815,37857,alternate reality,1420521305 +14815,37857,dream,1420521321 +14815,37857,fantasy world,1420521300 +14815,37857,parallel universe,1420521314 +14815,39427,car accident,1417909165 +14815,39427,dreamlike,1417909199 +14815,39427,near-death experience,1417909191 +14815,39427,surreal,1417909177 +14815,39427,twist ending,1417909167 +14815,39427,USA,1417999284 +14815,40148,crime,1417933370 +14815,40148,cryptic,1417933473 +14815,40148,gangsters,1417933509 +14815,40148,psychology,1417933458 +14815,40412,British,1410278807 +14815,40412,bullying,1410278813 +14815,40412,drugs,1410278830 +14815,40412,revenge,1410278816 +14815,40414,Christmas,1421502246 +14815,40414,France,1421502249 +14815,40414,World War I,1421502242 +14815,40583,Edgar Award (Best Motion Picture),1414059727 +14815,40815,competition,1422130453 +14815,40815,fantasy world,1422130403 +14815,40815,good versus evil,1422130423 +14815,40815,harry potter,1422130446 +14815,40815,magic,1422130385 +14815,40815,wizards,1422130391 +14815,40959,Christmas,1429978074 +14815,40959,murder,1429978069 +14815,40959,strip club,1429978065 +14815,40959,USA,1429978080 +14815,40959,Wichita,1429978076 +14815,41569,1930s,1414545484 +14815,41569,adventure,1414545480 +14815,41569,big budget,1414546998 +14815,41569,island,1414545651 +14815,41569,jungle,1414545636 +14815,41569,King Kong,1414545645 +14815,41569,monster,1414545247 +14815,41569,product placement,1414545239 +14815,41997,assassin,1416304513 +14815,41997,assassination,1416304517 +14815,41997,based on a true story,1416301502 +14815,41997,product placement,1416301500 +14815,41997,revenge,1416304509 +14815,42002,Broadway,1415114284 +14815,42002,musical,1415114344 +14815,42002,Nazis,1415114904 +14815,42002,producer,1415114376 +14815,42002,theater,1415114384 +14815,42002,USA,1415114910 +14815,42191,Pixar,1379153899 +14815,42191,short,1379153899 +14815,42197,adultery,1434331674 +14815,42197,dark comedy,1434358208 +14815,42197,England,1434371925 +14815,42197,serial killer,1434331681 +14815,42725,video games,1395744644 +14815,43376,based on a true story,1411163364 +14815,43376,Germany,1411163383 +14815,43376,interrogation,1411163353 +14815,43376,resistance movement,1411163390 +14815,43376,World War II,1411163376 +14815,43560,comedy,1435834304 +14815,43560,discipline,1435834331 +14815,43560,England,1435834321 +14815,43560,fairy tale,1435834315 +14815,43560,family,1435834309 +14815,43560,magic,1435834289 +14815,43919,parody,1417010162 +14815,43919,romance,1417010175 +14815,43919,USA,1417186101 +14815,44022,Ice Age franchise,1447249453 +14815,44195,tobacco,1421503497 +14815,44199,bank robbery,1379932968 +14815,44199,twist ending,1379932972 +14815,44665,twist ending,1379488717 +14815,44761,drugs,1418608147 +14815,44761,high school,1418614017 +14815,44761,investigation,1418608101 +14815,44761,murder,1418608151 +14815,44761,USA,1418615761 +14815,44861,hitman,1434723641 +14815,44861,mistaken identity,1434723648 +14815,44861,romance,1434725553 +14815,44972,parody,1395330135 +14815,45431,Dreamworks,1394733119 +14815,45431,talking animals,1397182458 +14815,45440,serial killer,1378850510 +14815,45722,adventure,1421296402 +14815,45722,big budget,1421456206 +14815,45722,Disney,1421460184 +14815,45722,fantasy,1421310010 +14815,45722,pirates,1421295572 +14815,45722,seafaring,1421295569 +14815,45728,dialogue driven,1421502629 +14815,45728,fast food,1421502634 +14815,46578,comedy,1451861730 +14815,46578,dance,1451861733 +14815,46578,family,1451861727 +14815,46578,road trip,1451861728 +14815,46855,France,1427511039 +14815,46855,French Resistance,1427511034 +14815,46855,War,1427511030 +14815,46855,World War II,1427511028 +14815,46970,competition,1419984171 +14815,46970,nascar,1419984177 +14815,46970,product placement,1419977479 +14815,46970,racing,1419984174 +14815,46970,sports,1419984204 +14815,46970,USA,1419986418 +14815,47084,Israel,1393907609 +14815,47200,Bechdel Test:Fail,1396118441 +14815,47394,Ice Hockey,1396211844 +14815,47394,serial killer,1396211841 +14815,47423,Addiction,1416351327 +14815,47423,Bechdel Test:Pass,1416351343 +14815,47423,crack,1416351337 +14815,47423,drugs,1416351322 +14815,47423,friendship,1416351324 +14815,47423,teacher,1416351329 +14815,47423,USA,1416351352 +14815,47719,delivery,1416527362 +14815,47719,short,1416526918 +14815,47719,slapstick,1416526927 +14815,48045,movie business,1410780587 +14815,48045,serial killer,1410780583 +14815,48780,magic,1378543964 +14815,48780,revenge,1378884126 +14815,48856,coming of age,1412468556 +14815,48856,New York,1421504742 +14815,48856,USA,1412468546 +14815,48863,sword fight,1393492857 +14815,48872,France,1411613908 +14815,48872,gambling,1411582380 +14815,48872,Russian roulette,1411582399 +14815,48982,animation,1450639345 +14815,48982,rats,1450639344 +14815,48997,18th century,1426987098 +14815,48997,France,1426987002 +14815,48997,Grasse,1426987005 +14815,48997,perfume,1426986934 +14815,48997,serial killer,1426986937 +14815,49530,Africa,1395755193 +14815,49530,Bechdel Test:Fail,1396117752 +14815,49530,Civil War,1395755191 +14815,49815,romance,1417894165 +14815,49815,slow,1417894165 +14815,49815,war,1417894171 +14815,50068,World War II,1379607892 +14815,50798,parody,1412551434 +14815,50798,product placement,1412551427 +14815,50851,cocaine,1412224716 +14815,50851,documentary,1412224736 +14815,50851,drug trade,1412224745 +14815,50851,Florida,1412224730 +14815,50851,Miami,1412224728 +14815,50851,USA,1412224758 +14815,51540,based on a true story,1414939995 +14815,51540,crime,1414942214 +14815,51540,investigation,1414940004 +14815,51540,obsession,1414940030 +14815,51540,police,1414940002 +14815,51540,serial killer,1414939999 +14815,51662,battles,1421456023 +14815,51709,horror,1414098810 +14815,51709,Korean,1414098794 +14815,51709,monster,1414098771 +14815,51709,sea monster,1414098767 +14815,51709,South Korea,1414098801 +14815,52170,Romania,1450312365 +14815,52170,street life,1450312336 +14815,52287,Disney,1397162332 +14815,52287,inventor,1397176017 +14815,52287,time travel,1397160235 +14815,52328,isolation,1397531823 +14815,52328,space,1397531827 +14815,52328,space travel,1397531834 +14815,52435,Christmas,1417651225 +14815,52435,fantasy world,1414691801 +14815,52604,courtroom,1410529151 +14815,52604,murder,1410529158 +14815,52604,twist ending,1410529181 +14815,52606,crime,1434426728 +14815,52606,dark comedy,1434426731 +14815,52606,twists & turns,1434426720 +14815,52806,deus ex machina,1413510810 +14815,52806,fantasy world,1397093840 +14815,52806,Studio Ghibli,1397093842 +14815,53121,Shrek franchise,1447249696 +14815,53125,action,1417521031 +14815,53125,adventure,1417517919 +14815,53125,big budget,1417517936 +14815,53125,comedy,1417521034 +14815,53125,Disney,1421460175 +14815,53125,fantasy,1417521041 +14815,53125,pirates,1417517794 +14815,53125,seafaring,1417520343 +14815,53125,sequel,1417520304 +14815,53460,Sony Pictures Animation,1397173962 +14815,53468,1950s,1410791762 +14815,53468,post-apocalyptic,1410791748 +14815,53468,zombies,1410791753 +14815,53956,british comedy,1414210143 +14815,53956,drugs,1414210020 +14815,53956,England,1414210016 +14815,53956,funeral,1414210022 +14815,54001,fantasy world,1422103384 +14815,54001,harry potter,1422103376 +14815,54001,magic,1422111876 +14815,54001,wizards,1422103388 +14815,54256,comedy,1427332046 +14815,54256,stunts,1427332023 +14815,54256,USA,1427332056 +14815,54259,adventure,1414464623 +14815,54259,british,1414464584 +14815,54259,coming of age,1414464576 +14815,54259,fairy tale,1414465169 +14815,54259,fantasy world,1414464590 +14815,54259,Hugo Award,1414464617 +14815,54259,murder,1414464633 +14815,54259,romance,1414465160 +14815,54272,Based on a TV show,1435956378 +14815,54272,cartoon,1435956410 +14815,54272,pollution,1435956399 +14815,54272,USA,1435956389 +14815,54272,watch the credits,1435956415 +14815,54732,FBI,1434674323 +14815,54732,pingpong,1434672933 +14815,54732,product placement,1434672917 +14815,54732,sport,1434674313 +14815,54732,USA,1434674328 +14815,54997,western,1396296653 +14815,55094,army,1396993144 +14815,55094,investigation,1396993139 +14815,55094,Iraq War,1396993149 +14815,55167,anime,1436059795 +14815,55167,based on a manga,1436059841 +14815,55167,japan,1436059811 +14815,55207,easily confused with other movie(s) (title),1415835356 +14815,55207,England,1414922320 +14815,55207,Night,1414922309 +14815,55207,short,1414922115 +14815,55207,supermarket,1414929291 +14815,55207,time,1414922297 +14815,55247,based on a true story,1413432941 +14815,55247,isolation,1413905648 +14815,55247,road trip,1413432944 +14815,55247,survival,1413432952 +14815,55269,Bechdel Test:Fail,1396441680 +14815,55276,Edgar Award (Best Motion Picture),1415299028 +14815,55276,lawyers,1415298999 +14815,55276,thriller,1415299018 +14815,55280,mental illness,1379802769 +14815,55280,unconventional romance,1420347636 +14815,55553,genetics,1414086363 +14815,55553,zombies,1414086354 +14815,55721,Brazil,1421457213 +14815,55721,South America,1421457221 +14815,55765,based on a true story,1396925126 +14815,55765,corruption,1396925133 +14815,55765,drugs,1396925140 +14815,55814,based on a true story,1396202883 +14815,55814,France,1421461887 +14815,55908,christianity,1410290524 +14815,55908,dialogue driven,1410290496 +14815,55908,immortality,1410290504 +14815,55908,low budget,1411224203 +14815,55908,religion,1410290500 +14815,56145,disaster,1410262248 +14815,56145,religion,1410262341 +14815,56145,stephen king,1410262242 +14815,56145,Survival,1410262238 +14815,56174,christian propaganda,1376043774 +14815,56174,dystopia,1396346033 +14815,56174,post-apocalyptic,1396346028 +14815,56607,Afghanistan,1418007309 +14815,56607,child rape,1418007302 +14815,56607,friendship,1418007345 +14815,56607,rape,1418007304 +14815,57274,Barcelona,1417451000 +14815,57274,firefighters,1417450816 +14815,57274,found footage,1417450677 +14815,57274,Handycam,1417450690 +14815,57274,horror,1417450701 +14815,57274,isolation,1417450693 +14815,57274,reporter,1417450705 +14815,57274,Spain,1417450719 +14815,57274,virus,1417450695 +14815,57274,zombies,1417450697 +14815,57502,anime,1397498394 +14815,57502,anthropomorphic,1397498674 +14815,57502,cats,1397498416 +14815,57502,surreal,1397499603 +14815,57532,parody,1395326664 +14815,57543,animation,1424375394 +14815,57543,short,1393503655 +14815,57543,youtube,1434839552 +14815,57669,Edgar Award (Best Motion Picture),1414059755 +14815,58299,jungle,1396242313 +14815,58299,talking animals,1396242318 +14815,58303,based on a true story,1396302437 +14815,58303,World War II,1396302426 +14815,58559,Batman,1418668661 +14815,58559,imdb top 250,1418668667 +14815,58559,superhero,1418668669 +14815,59014,parody,1395326272 +14815,59014,superhero,1415083221 +14815,59126,atheism,1418845220 +14815,59126,Christianity,1418845231 +14815,59126,fundamentalism,1418845234 +14815,59126,islam,1418845227 +14815,59126,Judaism,1418845271 +14815,59126,religion,1418845275 +14815,59315,superhero,1394716805 +14815,59387,1920s,1420402591 +14815,59387,fantasy world,1413394732 +14815,59387,hospital,1413395107 +14815,59387,storytelling,1413394742 +14815,59387,suicide,1413395043 +14815,59387,unconventional friendship,1420400084 +14815,60040,superhero,1394891226 +14815,60684,dystopia,1395849995 +14815,60684,superhero,1395849999 +14815,60753,prison,1435773849 +14815,60753,USA,1435773855 +14815,60816,discworld,1396030636 +14815,60816,fantasy world,1396030648 +14815,60816,Terry Pratchett,1412125174 +14815,60818,discworld,1396078010 +14815,60818,fantasy world,1396078011 +14815,60818,Terry Pratchett,1412125168 +14815,60943,Bechdel Test:Pass,1412960138 +14815,60943,immigration,1412873653 +14815,60943,poverty,1412873666 +14815,60943,smuggling,1412873638 +14815,60943,USA,1412873643 +14815,60950,Spain,1421461753 +14815,61236,animation,1450639448 +14815,61236,Israel,1450639457 +14815,61236,Lebanon,1450639516 +14815,61236,Middle East,1450639465 +14815,61236,war,1450639451 +14815,61240,imdb top 250,1421503194 +14815,61240,Sweden,1421503171 +14815,61240,vampires,1421503103 +14815,62336,action,1413823351 +14815,62336,breaking the fourth wall,1413822169 +14815,62374,cia,1416883565 +14815,62374,espionage,1416883613 +14815,62374,middle east,1416883559 +14815,62374,surveillance,1416883637 +14815,62374,terrorism,1416883634 +14815,62374,USA,1416883571 +14815,63072,post-apocalyptic,1379013797 +14815,63072,survival,1379013810 +14815,63515,monastery,1413657677 +14815,63515,Russia,1413657684 +14815,64249,Shrek franchise,1447249729 +14815,64285,Aardman,1413856848 +14815,64285,bakery,1413856820 +14815,64285,claymation,1413856816 +14815,64285,serial killer,1413856822 +14815,64285,short,1413856853 +14815,64285,Wallace & Gromit,1413856834 +14815,64622,Germany,1409968607 +14815,64622,World War II,1409968602 +14815,64695,anime,1409310853 +14815,64695,samurai,1409310856 +14815,65037,asperger's syndrome,1410661161 +14815,65037,autism,1410661155 +14815,65037,bullying,1410661175 +14815,65037,twist ending,1410661168 +14815,65261,Studio Ghibli,1397175539 +14815,65514,imdb top 250,1415158962 +14815,65596,based on a true story,1412087824 +14815,65596,crime,1412087835 +14815,65596,robbery,1412087966 +14815,65642,time travel,1410362872 +14815,66097,alternate reality,1396286906 +14815,66097,animation,1450639326 +14815,66097,Bechdel Test:Pass,1396282535 +14815,66097,dark fantasy,1396287088 +14815,66097,fantasy world,1396286900 +14815,66097,gothic,1396286934 +14815,66097,talking animals,1396287093 +14815,66371,death,1413759595 +14815,66371,imdb top 250,1415157887 +14815,66371,japan,1413759571 +14815,66371,mentor,1413759605 +14815,66934,parody,1412907629 +14815,66934,superhero,1412907631 +14815,67408,alien invasion,1434139263 +14815,67408,aliens,1434139259 +14815,67408,Dreamworks,1434139248 +14815,67408,USA,1434140028 +14815,67429,epic,1397256728 +14815,68159,journalism,1380029748 +14815,68237,dystopia,1394696379 +14815,68237,Hugo Award,1414192609 +14815,68237,space,1414192614 +14815,68347,gangs,1435698272 +14815,68347,immigrants,1435698316 +14815,68347,Latin America,1435698282 +14815,68347,Mexico,1435698286 +14815,68358,space,1394509994 +14815,68358,Star Trek,1394509984 +14815,68600,romance,1411770978 +14815,68600,sports,1411770956 +14815,68600,tennis,1411770948 +14815,68791,artificial intelligence,1411743494 +14815,68791,robots,1411743492 +14815,68848,con artists,1411153312 +14815,68848,romance,1411153429 +14815,69088,nuclear war,1410362801 +14815,69644,Ice Age franchise,1447249475 +14815,69685,teen,1412481652 +14815,69803,inventor,1413260216 +14815,69803,racing,1413260207 +14815,69803,stop motion,1413260185 +14815,69803,talking animals,1413260189 +14815,69844,boarding school,1422173688 +14815,69844,good versus evil,1422173683 +14815,69844,harry potter,1422172651 +14815,69844,magic,1422173654 +14815,69844,romance,1422172647 +14815,69844,sequel,1422173651 +14815,69844,wizards,1422173666 +14815,70128,psychoanalysis,1393549443 +14815,70286,aliens,1396438724 +14815,70286,big budget,1421456139 +14815,70286,imdb top 250,1416225908 +14815,70286,segregation,1421460689 +14815,70286,South Africa,1421461614 +14815,71106,friendship,1413057499 +14815,71106,nerds,1413057508 +14815,71106,time travel,1413057502 +14815,71108,open ending,1397016084 +14815,71108,unresolved,1397007590 +14815,71135,amnesia,1397519521 +14815,71135,post-apocalyptic,1397519524 +14815,71135,space travel,1397519543 +14815,71135,twist ending,1397519549 +14815,71211,based on a true story,1396448726 +14815,71211,business,1396448736 +14815,71264,animation,1450639244 +14815,71264,inventor,1397176077 +14815,71264,Sony Pictures Animation,1397173874 +14815,71468,alternate reality,1414576325 +14815,71468,dreams,1414576433 +14815,71468,family bonds,1414576575 +14815,71468,product placement,1414576799 +14815,71468,style over substance,1414576354 +14815,71468,surreal,1414576335 +14815,71535,imdb top 250,1417215349 +14815,71535,post-apocalyptic,1417214908 +14815,71535,zombies,1417214905 +14815,71838,revenge,1416704739 +14815,71838,vigilante,1416704736 +14815,71899,animation,1450639377 +14815,71899,friendship,1410714030 +14815,71899,mental illness,1410714020 +14815,72104,short,1379165141 +14815,72104,youtube,1434840107 +14815,72171,1970s,1420411510 +14815,72171,blaxploitation,1420411485 +14815,72171,parody,1420411494 +14815,72356,Pixar,1376979329 +14815,72356,short,1376979329 +14815,72360,civilization,1413306787 +14815,72360,short,1413307553 +14815,72360,time,1413306771 +14815,72360,youtube,1434839268 +14815,72554,ETA,1415046379 +14815,72554,guard,1415046392 +14815,72554,hostage,1415046416 +14815,72554,prison,1415046375 +14815,72554,riot,1415046372 +14815,72554,Spain,1421461758 +14815,72701,aliens,1396163430 +14815,72701,Bechdel Test:Fail,1396164568 +14815,72998,action,1450639043 +14815,72998,futuristic,1450639060 +14815,72998,military,1450639039 +14815,72998,sci-fi,1450639045 +14815,73321,christian propaganda,1376042379 +14815,73321,Christianity,1376042376 +14815,73587,comedy,1418087561 +14815,73587,cooking,1418087514 +14815,73587,Germany,1418087525 +14815,73587,restaurant,1418087520 +14815,73587,romance,1418087568 +14815,73664,animation,1439705885 +14815,73664,dragons,1439705643 +14815,73664,fantasy world,1439705649 +14815,73881,college,1419869988 +14815,73881,friendship,1419869470 +14815,73881,imdb top 250,1419988433 +14815,73881,India,1419869406 +14815,73881,product placement,1419871961 +14815,73881,romance,1419869758 +14815,74075,halloween,1412619781 +14815,74075,parody,1412619823 +14815,74075,Van Helsing,1412619769 +14815,74075,watch the credits,1412619761 +14815,74324,asperger's syndrome,1421455571 +14815,74324,autism,1421455548 +14815,74324,disability,1421455559 +14815,74324,mental illness,1421455566 +14815,74324,science,1421455555 +14815,74324,USA,1421455546 +14815,74458,mindfuck,1378849161 +14815,74458,twist ending,1378849158 +14815,74541,Canada,1420069397 +14815,74760,short,1393842302 +14815,75985,debt collection,1410464743 +14815,75985,twist ending,1410464811 +14815,76091,investigation,1410572621 +14815,76091,mental illness,1410572628 +14815,76091,mother-son relationship,1410572618 +14815,76091,murder,1410572589 +14815,76091,South Korea,1410572642 +14815,76093,dragons,1421460275 +14815,76093,vikings,1421460293 +14815,77307,family relationships,1427342702 +14815,77307,Greece,1427342716 +14815,77307,incest,1427342682 +14815,77307,isolation,1427342695 +14815,77307,parenthood,1427342698 +14815,77307,siblings,1427342708 +14815,77561,superhero,1394726738 +14815,77795,Bechdel Test:Pass,1412045055 +14815,77795,post-apocalyptic,1412045058 +14815,77795,space travel,1412045061 +14815,77795,virtual reality,1412045071 +14815,77800,dark comedy,1398664146 +14815,77800,terrorism,1398664157 +14815,77837,based on a true story,1411509152 +14815,77837,biography,1421456839 +14815,77837,euthanasia,1411509131 +14815,77837,suicide,1411509139 +14815,77837,USA,1411520945 +14815,77979,Africa,1395775175 +14815,77979,civil war,1395775175 +14815,78088,buried alive,1421457439 +14815,78266,genetics,1435276766 +14815,78266,monster,1435276759 +14815,78266,USA,1435277408 +14815,78637,Shrek franchise,1447249707 +14815,79091,animation,1450722615 +14815,79091,comedy,1450722633 +14815,79132,Hugo Award,1414192579 +14815,79274,Batman,1434127867 +14815,79274,comics,1434127880 +14815,79274,Joker,1434127873 +14815,79357,nonlinear,1412979044 +14815,79357,romance,1412986665 +14815,79592,buddy movie,1440356446 +14815,79592,New York City,1440356451 +14815,79592,police,1440356449 +14815,79592,product placement,1440356466 +14815,79592,USA,1440356455 +14815,79592,watch the credits,1440356443 +14815,80126,assassin,1434550308 +14815,80126,Italy,1434550310 +14815,80126,loneliness,1434550316 +14815,80126,slow,1434550320 +14815,80181,Blender,1379414391 +14815,80181,short,1379414389 +14815,80181,youtube,1434840408 +14815,80219,Mexico,1434128055 +14815,80219,USA,1434128048 +14815,80350,parody,1395327025 +14815,80615,birds,1427547511 +14815,80615,epic,1427547481 +14815,80615,good versus evil,1427547477 +14815,80615,Owls,1427547498 +14815,80615,talking animals,1427547484 +14815,80834,blender,1379414545 +14815,80834,dragons,1434840189 +14815,80834,short,1379414559 +14815,80834,youtube,1434840167 +14815,80836,Blender,1379414525 +14815,80836,short,1379412809 +14815,80836,youtube,1434839924 +14815,80917,aliens,1412014772 +14815,80917,Bechdel Test:Fail,1412018166 +14815,80917,mexico,1412014780 +14815,80917,romance,1412014769 +14815,81257,education,1398123053 +14815,81257,justice,1398123214 +14815,81355,short,1413315563 +14815,81355,youtube,1434840309 +14815,81562,based on a true story,1397531927 +14815,81562,imdb top 250,1415159097 +14815,81562,isolation,1413908204 +14815,81562,loneliness,1397531945 +14815,81562,nature,1397531949 +14815,81562,wilderness,1397531931 +14815,81564,Dreamworks,1397101000 +14815,81564,superhero,1397101018 +14815,81591,dance,1393655387 +14815,81591,imdb top 250,1415159090 +14815,81788,jailbreak,1396895303 +14815,81834,fantasy world,1420154691 +14815,81834,Harry Potter,1420142421 +14815,81834,magic,1420142418 +14815,81834,product placement,1420133914 +14815,81845,based on a true story,1394100237 +14815,81845,England,1394100267 +14815,81845,imdb top 250,1415158999 +14815,81845,royalty,1415159006 +14815,81932,based on a true story,1421503391 +14815,81932,boxing,1394014687 +14815,82242,Christmas,1434052525 +14815,82242,Finland,1434053967 +14815,82242,Xmas theme,1434052558 +14815,82667,revenge,1410900025 +14815,82667,serial killer,1410900028 +14815,82667,torture,1410900021 +14815,82848,short,1416489481 +14815,82976,short,1416491216 +14815,83096,short,1416495523 +14815,83132,Studio Ghibli,1397175597 +14815,83134,dark comedy,1421456996 +14815,83134,parody,1394784182 +14815,83184,gritty,1435459912 +14815,83184,South Korea,1435458657 +14815,83302,adultery,1421458309 +14815,83302,husband-wife relationship,1413250553 +14815,83318,short,1416486182 +14815,83318,slapstick,1416487891 +14815,83322,short,1416493699 +14815,83359,short,1416259062 +14815,83359,slapstick,1416259072 +14815,83369,prison escape,1394667332 +14815,83369,survival,1394708183 +14815,83411,short,1416259189 +14815,83411,slapstick,1416259115 +14815,83803,Pixar,1376979859 +14815,83803,short,1376122666 +14815,84152,Bechdel Test:Fail,1396117826 +14815,84152,drugs,1396002677 +14815,84601,amnesia,1396249015 +14815,84601,assassin,1396249024 +14815,84615,adultery,1410452105 +14815,84615,business,1410447714 +14815,84615,drugs,1410452100 +14815,84716,isolation,1436306307 +14815,84716,Korea,1413665304 +14815,84716,loneliness,1413665312 +14815,84716,survival,1413665321 +14815,84775,alcoholism,1411209287 +14815,84775,drugs,1411209305 +14815,84775,heroin,1411209302 +14815,84954,Bechdel Test:Fail,1410422901 +14815,84954,religion,1410422918 +14815,85020,assassin,1395836782 +14815,85020,Bechdel Test:Fail,1396117962 +14815,85179,anime,1397273555 +14815,85179,family,1397273551 +14815,85179,hacking,1397273549 +14815,85179,virtual reality,1397273565 +14815,85342,Brazil,1421457227 +14815,85342,imdb top 250,1415158892 +14815,85342,South America,1421457229 +14815,85354,based on a true story,1412092887 +14815,85354,robbery,1412092894 +14815,85510,asylum,1427800355 +14815,85736,Pixar,1376979394 +14815,85736,short,1376979249 +14815,86298,birds,1421457292 +14815,86298,Brazil,1421457299 +14815,86298,South America,1421457301 +14815,86345,stand-up comedy,1411505091 +14815,86347,stand-up comedy,1411848318 +14815,86377,Louis C.K.,1412114862 +14815,86377,stand-up comedy,1412114853 +14815,86781,imdb top 250,1415158241 +14815,86781,Middle East,1396913211 +14815,86781,nonlinear,1396913664 +14815,86781,twist ending,1396913209 +14815,86880,Bechdel Test:Fail,1421348512 +14815,86880,Disney,1421460194 +14815,86880,fantasy,1421349706 +14815,86880,father daughter relationship,1421348494 +14815,86880,fountain of youth,1421348530 +14815,86880,mermaid,1421349714 +14815,86880,pirates,1421348522 +14815,86882,time travel,1378458883 +14815,86892,drug trade,1410311423 +14815,86892,drugs,1410311353 +14815,86892,kidnapping,1410311344 +14815,86892,Korea,1410311370 +14815,86892,organ harvesting,1410311350 +14815,87192,aliens,1434557279 +14815,87192,England,1434557287 +14815,87192,London,1434557298 +14815,87232,imdb top 250,1415158903 +14815,87232,superhero,1394255597 +14815,87232,X-men,1414318856 +14815,87529,aventure,1436363539 +14815,87529,chivalry,1436362993 +14815,87529,comedy,1436363535 +14815,87529,fantasy world,1436362881 +14815,87529,knights,1436362966 +14815,87529,magic,1436362945 +14815,87529,parody,1436362837 +14815,87869,murder,1434594815 +14815,87869,USA,1434578317 +14815,87872,aliens,1412970829 +14815,87872,runaway,1412970726 +14815,88125,adventure,1420154669 +14815,88125,fantasy,1420154671 +14815,88125,fantasy world,1420154680 +14815,88125,Harry Potter,1420154706 +14815,88125,imdb top 250,1422191921 +14815,88125,magic,1420154703 +14815,88129,imdb top 250,1415158822 +14815,88235,drugs,1414735816 +14815,88235,Ireland,1414735808 +14815,88235,murder,1414735810 +14815,88235,police,1414735800 +14815,88235,police corruption,1414735803 +14815,88345,cars,1424636063 +14815,88345,Pixar,1376051321 +14815,88345,short,1376051321 +14815,88810,imdb top 250,1415158168 +14815,88810,segregation,1394267292 +14815,89072,survival,1410194852 +14815,89072,vampires,1421503114 +14815,89072,zombies,1410194966 +14815,89074,advertising,1396483204 +14815,89074,product placement,1396483209 +14815,89087,assassin,1436459316 +14815,89087,organized crime,1436459317 +14815,89087,revenge,1436459319 +14815,89087,USA,1436459330 +14815,89118,identity,1416929210 +14815,89118,isolation,1416929311 +14815,89118,long revenge,1416929228 +14815,89118,Spain,1417186164 +14815,89118,surgery,1416929208 +14815,89470,epidemic,1394464624 +14815,89470,virus,1394464733 +14815,89492,baseball,1394247863 +14815,89492,based on a true story,1394247869 +14815,89629,kidnapping,1394776515 +14815,89745,Hugo Award,1414192552 +14815,89745,imdb top 250,1415158617 +14815,89745,superhero,1394158590 +14815,89759,courtroom drama,1394292576 +14815,89759,imdb top 250,1415159047 +14815,89759,Iran,1394292553 +14815,89774,imdb top 250,1415158828 +14815,89904,1920s,1415158717 +14815,89904,imdb top 250,1415158693 +14815,89904,movie business,1415158702 +14815,89904,romance,1415158698 +14815,89904,USA,1415158720 +14815,90376,crime,1417209166 +14815,90376,family,1417208382 +14815,90376,mass murder,1417209354 +14815,90376,mother-son relationship,1417208429 +14815,90376,nonlinear,1417208395 +14815,90376,psychopath,1417209444 +14815,90376,spree killer,1417209345 +14815,90600,man on the run,1397016351 +14815,90600,theft,1397016136 +14815,90647,Shrek franchise,1447249806 +14815,90647,talking animals,1447249820 +14815,90866,automata,1413794958 +14815,90866,children,1413796354 +14815,90866,cinematography,1413796178 +14815,90866,France,1413794968 +14815,90866,history,1413794998 +14815,90866,Paris,1413794961 +14815,90866,train station,1413794984 +14815,90890,multiple roles,1439962630 +14815,90890,product placement,1439962482 +14815,90890,twins,1439962485 +14815,91233,aliens,1424636020 +14815,91233,Pixar,1376049501 +14815,91233,sci-fi,1424636029 +14815,91233,short,1376049509 +14815,91335,short,1428878624 +14815,91335,talking animals,1428868197 +14815,91353,adventure,1422186919 +14815,91353,antiquity,1422188762 +14815,91353,Asterix,1422186901 +14815,91353,Gaul,1422188798 +14815,91353,romance,1422186913 +14815,91414,Christmas,1397222831 +14815,91414,Sony Pictures Animation,1397175354 +14815,91488,snowman,1413697160 +14815,91488,surreal,1413697153 +14815,91500,dystopia,1394708150 +14815,91500,survival,1394708161 +14815,91529,Batman,1394091779 +14815,91529,imdb top 250,1415158574 +14815,91529,superhero,1394091773 +14815,91535,chase,1411782153 +14815,91535,spies,1411779452 +14815,92210,anime,1412635019 +14815,92210,Japan,1412633513 +14815,92210,time travel,1412633498 +14815,92259,imdb top 250,1415158647 +14815,92498,dylan moran,1429648125 +14815,92498,stand-up comedy,1429646162 +14815,92535,Louis C.K.,1411996730 +14815,92535,stand-up comedy,1411996726 +14815,92944,France,1408549985 +14815,92944,Paris,1408549981 +14815,93022,dark comedy,1420161813 +14815,93022,executive,1420161008 +14815,93022,murder,1420160978 +14815,93022,serial killer,1420160991 +14815,93022,workplace,1420161021 +14815,93240,death,1417660225 +14815,93240,fantasy world,1417660232 +14815,93240,Japan,1417660254 +14815,93270,drugs,1420288474 +14815,93270,high school,1420288481 +14815,93270,party,1420288484 +14815,93363,aliens,1410447507 +14815,93363,big budget,1421456785 +14815,93418,Charles Chaplin,1416258839 +14815,93418,short,1416259014 +14815,93418,slapstick,1416259095 +14815,93422,Canada,1419986459 +14815,93422,parenthood,1419884563 +14815,93422,quebec,1419986470 +14815,93422,sperm donor,1419885100 +14815,93510,drugs,1411874036 +14815,93510,high school,1411874027 +14815,93510,parody,1411874019 +14815,93510,undercover cop,1411874032 +14815,93748,anime,1397577993 +14815,93840,isolation,1413937031 +14815,93855,guns,1414287769 +14815,93855,killing spree,1414287762 +14815,93855,serial killer,1414287771 +14815,93855,USA,1414287745 +14815,94018,aliens,1410362610 +14815,94478,USA,1421975389 +14815,94478,vampires,1421971823 +14815,94478,witch,1421971831 +14815,94833,Aardman,1421454462 +14815,94833,claymation,1397181428 +14815,94833,pirates,1397181432 +14815,94833,Sony Pictures Animation,1397180560 +14815,95167,fantasy world,1396114815 +14815,95167,Pixar,1396119762 +14815,95311,Pixar,1376031412 +14815,95311,short,1376031159 +14815,95313,animation,1450639365 +14815,95313,babysitting,1421455665 +14815,95313,Pixar,1376979357 +14815,95313,short,1376979357 +14815,95375,Pixar,1376048591 +14815,95375,short,1376048590 +14815,95377,Pixar,1376045255 +14815,95377,short,1376045258 +14815,95446,Pixar,1393226089 +14815,95446,short,1393226085 +14815,95510,superhero,1398237626 +14815,95543,Ice Age franchise,1447249456 +14815,95628,bicycle,1414846269 +14815,95628,circus,1414846240 +14815,95628,clowns,1414846234 +14815,95628,Pixar,1414846227 +14815,95628,short,1414846221 +14815,95654,Pixar,1376049990 +14815,95654,short,1376049990 +14815,95856,Pixar,1379102720 +14815,95856,short,1379102727 +14815,95858,animation,1450639315 +14815,95858,birds,1421456917 +14815,95858,Pixar,1376047486 +14815,95858,short,1376047486 +14815,96079,imdb top 250,1415158400 +14815,96079,James Bond,1393977544 +14815,96079,spies,1415158403 +14815,96096,comedy,1436083333 +14815,96096,FBI,1436083357 +14815,96096,investigation,1436083349 +14815,96096,Kad et Olivier,1436427567 +14815,96096,Les Robins des Bois,1436427545 +14815,96096,murder,1436083861 +14815,96096,parody,1436083338 +14815,96096,spoof,1436083429 +14815,96096,USA,1436083342 +14815,96096,watch the credits,1436083401 +14815,96110,election,1448124775 +14815,96110,product placement,1448124770 +14815,96110,satire,1448124705 +14815,96110,USA,1448124779 +14815,96281,ghosts,1410560556 +14815,96281,witch,1410560544 +14815,96281,zombies,1410560534 +14815,96432,prohibition,1394177720 +14815,96606,time-lapse,1411664300 +14815,96608,Disney,1435585496 +14815,96608,Mickey Mouse,1435586652 +14815,96608,short film,1435585504 +14815,96610,dystopia,1393736185 +14815,96610,time travel,1393736179 +14815,96655,memory,1412120704 +14815,96655,robbery,1412120839 +14815,96655,robots,1412120707 +14815,96655,science fiction,1412120710 +14815,96737,action,1429657180 +14815,96737,based on a comic,1429657131 +14815,96737,drugs,1429657108 +14815,96737,dystopia,1429657098 +14815,96737,gunfight,1429657116 +14815,96737,police,1429657173 +14815,96737,post-apocalyptic,1429657102 +14815,96737,USA,1429657128 +14815,96811,police,1394341762 +14815,96829,child abuse,1397828443 +14815,96829,imdb top 250,1415158101 +14815,96829,sexual abuse,1397828431 +14815,97168,reggae,1394027388 +14815,97225,Sony Pictures Animation,1397175385 +14815,97306,serial killer,1394690001 +14815,97913,Bechdel Test:Pass,1396117915 +14815,97913,video games,1395744612 +14815,97923,addiction,1409360636 +14815,97923,alcoholism,1409359590 +14815,97923,plane crash,1409359597 +14815,97938,imdb top 250,1415158269 +14815,97938,ocean,1379663918 +14815,97938,religion,1379663916 +14815,97938,twist ending,1415158285 +14815,98124,batman,1412461547 +14815,98124,superhero,1412461552 +14815,98243,lack of story,1429814993 +14815,98491,Disney,1379162835 +14815,98491,short,1379162815 +14815,98809,based on a book,1395927835 +14815,98809,big budget,1421456199 +14815,98809,fantasy world,1393996859 +14815,98809,imdb top 250,1415158341 +14815,98961,terrorism,1394607005 +14815,99112,investigation,1395043278 +14815,99112,sniper,1395043301 +14815,99112,without romance,1395043281 +14815,99114,imdb top 250,1415158189 +14815,99114,slavery,1421503932 +14815,99787,comedy,1419645069 +14815,99787,crude humor,1419972616 +14815,99787,found footage,1419645981 +14815,99787,ghosts,1419645973 +14815,99787,haunted house,1419645065 +14815,99813,batman,1412461563 +14815,99813,superhero,1412461559 +14815,100238,based on a book,1382390251 +14815,100383,medications,1394884416 +14815,100383,twist ending,1394884419 +14815,100390,friendship,1421921488 +14815,100390,identity theft,1421921499 +14815,100390,road trip,1421921479 +14815,100498,CIA,1411354580 +14815,100498,Russia,1411354589 +14815,100556,assassin,1411444568 +14815,100556,assassination,1411444912 +14815,100556,Indonesia,1411441199 +14815,100882,buddhism,1396455865 +14815,101741,heist,1397621783 +14815,101741,hypnosis,1397621784 +14815,101741,Mindfuck,1397621780 +14815,101864,dystopia,1394283607 +14815,101864,post-apocalyptic,1394283614 +14815,101864,space,1394283643 +14815,101962,anime,1408489426 +14815,101962,Japan,1408489450 +14815,101962,nature,1408489434 +14815,101962,raising children,1408489429 +14815,101962,werewolves,1408489439 +14815,102125,big budget,1421456211 +14815,102125,superhero,1394255506 +14815,102407,1920s,1394334490 +14815,102445,imdb top 250,1415158147 +14815,102445,space,1394537083 +14815,102477,anime,1428937158 +14815,102477,fantasy world,1428937164 +14815,102477,knights,1428937171 +14815,102477,magic,1428937194 +14815,102477,medieval,1428937189 +14815,102720,forest,1427492052 +14815,102720,good versus evil,1427495587 +14815,102720,nature,1427492055 +14815,102720,royalty,1427492065 +14815,102720,talking animals,1427495807 +14815,102993,coming of age,1412007597 +14815,102993,parent-children relationship,1412007614 +14815,102993,vacation,1421503243 +14815,103249,zombies,1394619825 +14815,103253,dystopia,1394631556 +14815,103253,robots,1394631564 +14815,103306,aliens,1398142924 +14815,103306,hard science fiction,1398142915 +14815,103306,space,1398142918 +14815,103335,animation,1450722647 +14815,103335,comedy,1450722651 +14815,103335,romance,1416673478 +14815,103341,aliens,1410645796 +14815,103372,buddy movie,1440357126 +14815,103372,FBI,1421890151 +14815,103372,police,1421890147 +14815,103372,USA,1421890166 +14815,103439,heist,1436399270 +14815,103659,superhero,1411335680 +14815,103659,time travel,1411335556 +14815,103772,Japan,1417150035 +14815,103772,superhero,1417150029 +14815,103772,wolverine,1417150045 +14815,103772,x-men,1417150101 +14815,103792,economy,1394166709 +14815,103810,espionage,1410729587 +14815,103849,organized crime,1437404567 +14815,103849,South Korea,1437404968 +14815,103849,undercover cop,1437404640 +14815,103883,CIA,1421881130 +14815,103883,corruption,1421881225 +14815,103883,military,1421881227 +14815,103883,organized crime,1421881154 +14815,103883,undercover cop,1421881143 +14815,103883,USA,1421881238 +14815,104069,Louis C.K.,1411996630 +14815,104069,stand-up comedy,1411232866 +14815,104211,drugs,1435359228 +14815,104211,family,1435359800 +14815,104211,smuggling,1435359300 +14815,104211,USA,1435359770 +14815,104211,watch the credits,1435359230 +14815,104241,brutal,1416973577 +14815,104241,product placement,1416967698 +14815,104241,sequel,1416973418 +14815,104241,superhero,1416967700 +14815,104241,vigilante,1416967703 +14815,104241,watch the credits,1416973409 +14815,104243,aliens,1397507663 +14815,104243,bounty hunters,1421457096 +14815,104283,anime,1421997568 +14815,104283,dreams,1422000340 +14815,104283,engineering,1421999125 +14815,104283,Planes,1421997517 +14815,104283,romance,1421997502 +14815,104283,Studio Ghibli,1421997527 +14815,104633,comedy,1434839943 +14815,104633,France,1434884592 +14815,104633,short,1378135317 +14815,104633,youtube,1434839946 +14815,104841,Hugo Award,1414192518 +14815,104841,imdb top 250,1415158037 +14815,104841,religion,1396885769 +14815,104841,space,1396885775 +14815,104879,abduction,1414146650 +14815,104879,imdb top 250,1415157967 +14815,104879,imprisonment,1414146439 +14815,104879,realistic action,1414146457 +14815,104879,thriller,1414146454 +14815,104879,USA,1414146960 +14815,104944,foster care,1408657258 +14815,104984,Blender,1379492829 +14815,104984,short,1379492829 +14815,104984,youtube,1434840367 +14815,105197,aging,1420529463 +14815,105197,dementia,1420530993 +14815,105197,Father-Son Relationship,1420529440 +14815,105197,road trip,1420529448 +14815,105197,slow,1420529474 +14815,105197,USA,1420529446 +14815,105468,animation,1427481037 +14815,105468,food,1427481035 +14815,105504,based on a true story,1420429187 +14815,105504,crime,1420429204 +14815,105504,hijacking,1420429197 +14815,105504,hostage,1420435143 +14815,105504,merchant marine,1420429201 +14815,105504,Navy,1420429182 +14815,105504,pirates,1420429192 +14815,105504,seafaring,1420429207 +14815,105504,Somalia,1420429221 +14815,105585,USA,1434104320 +14815,105653,prison,1429131699 +14815,105653,prison escape,1429131697 +14815,105653,USA,1429133569 +14815,105844,based on a true story,1409780322 +14815,105844,imdb top 250,1415157558 +14815,105844,slavery,1409780326 +14815,105844,USA,1409780352 +14815,106002,aliens,1397612262 +14815,106002,space,1397612251 +14815,106002,twist ending,1397612243 +14815,106002,war,1397612247 +14815,106011,Pixar,1393841610 +14815,106011,short,1393841610 +14815,106022,Pixar,1393503811 +14815,106022,short,1393503815 +14815,106072,aliens,1417807838 +14815,106072,London,1417808353 +14815,106072,marvel,1417807845 +14815,106072,superhero,1417807719 +14815,106100,AIDS,1416782210 +14815,106100,biography,1421456887 +14815,106100,death,1416782216 +14815,106100,disease,1416782213 +14815,106100,homophobia,1416782223 +14815,106100,medical,1416782250 +14815,106100,Texas,1416883595 +14815,106100,USA,1416883587 +14815,106438,adoption,1408299985 +14815,106438,based on a true story,1408300020 +14815,106438,Ireland,1408300024 +14815,106438,religion,1408300032 +14815,106471,anime,1420044439 +14815,106471,based on a TV show,1420044430 +14815,106471,evolution,1420044383 +14815,106471,fantasy world,1420044370 +14815,106471,monster,1420044389 +14815,106471,pirates,1420044376 +14815,106473,anime,1420054233 +14815,106473,based on a TV show,1420054340 +14815,106473,fantasy world,1420054240 +14815,106473,pirates,1420054245 +14815,106487,dystopia,1396013220 +14815,106487,imdb top 250,1415157930 +14815,106489,based on a book,1395927576 +14815,106489,fantasy world,1395927499 +14815,106489,imdb top 250,1415157806 +14815,106491,revenge,1411085895 +14815,106491,samurai,1411085796 +14815,106696,Disney,1397069463 +14815,106696,fantasy world,1397095068 +14815,106762,anime,1417917040 +14815,106762,bounty hunters,1417917085 +14815,106762,desert,1417917066 +14815,106762,fantasy world,1417917051 +14815,106762,western,1417917044 +14815,106782,based on a true story,1412999853 +14815,106782,drugs,1408268570 +14815,106782,imdb top 250,1416785304 +14815,106782,stock market,1408268596 +14815,106916,based on a true story,1411403104 +14815,106916,con artists,1411403089 +14815,106916,corruption,1411403089 +14815,106916,New Jersey,1411403097 +14815,106916,romance,1411399644 +14815,106916,USA,1411403101 +14815,106918,romance,1412030059 +14815,106918,travel,1412036732 +14815,106918,USA,1412036742 +14815,106920,artificial intelligence,1409917926 +14815,106920,imdb top 250,1415157521 +14815,106920,loneliness,1409917945 +14815,106920,love,1415157524 +14815,106920,romance,1415157532 +14815,106920,unconventional romance,1420347658 +14815,107069,Afghanistan,1434206538 +14815,107069,based on a true story,1434206555 +14815,107069,navy seals,1434206572 +14815,107069,war,1434206540 +14815,107304,Anime,1397350666 +14815,107304,mecha,1397350365 +14815,107406,dystopia,1409941517 +14815,107406,post-apocalyptic,1409941519 +14815,107406,trains,1421503540 +14815,107653,short,1394621047 +14815,107653,youtube,1434839650 +14815,108041,France,1440010435 +14815,108041,homosexuality,1440011026 +14815,108156,Atlanta,1419654582 +14815,108156,buddy movie,1419652469 +14815,108156,police,1419652471 +14815,108156,USA,1419654576 +14815,108190,dystopia,1429577072 +14815,108190,sci-fi,1429577110 +14815,108192,hotel,1416279005 +14815,108192,romance,1416278999 +14815,108255,anime,1427571706 +14815,108255,science fiction,1427571717 +14815,108255,war,1427571708 +14815,108540,friendship,1420346547 +14815,108540,poverty,1420346395 +14815,108540,unconventional friendship,1420346390 +14815,108689,demons,1412376479 +14815,108689,Frankenstein's monster,1412376476 +14815,108689,gargoyles,1412376519 +14815,108932,animation,1450639434 +14815,108932,childhood,1411690466 +14815,108932,imagination,1411690326 +14815,108932,imdb top 250,1415157461 +14815,108932,rebellion,1411690452 +14815,108983,Pixar,1393503688 +14815,108983,short,1393503684 +14815,109034,short,1393839919 +14815,109374,hotel,1413920585 +14815,109374,imdb top 250,1415157490 +14815,109374,legacy,1413920611 +14815,109420,cars,1414847750 +14815,109420,Pixar,1393146716 +14815,109420,short,1393146718 +14815,109423,Pixar,1393148686 +14815,109423,short,1393148689 +14815,109425,Pixar,1393148979 +14815,109425,short,1393148982 +14815,109457,Israel,1393907955 +14815,109457,Palestinian territories,1393907969 +14815,109487,end of the world,1426608298 +14815,109487,sci-fi,1426608291 +14815,109487,space travel,1426608276 +14815,109487,time travel,1426608280 +14815,109487,twist ending,1426608527 +14815,109487,USA,1426608305 +14815,109673,sword and sandal,1410818640 +14815,109731,dragons,1420000150 +14815,109731,short,1420000153 +14815,109858,serial killer,1394919125 +14815,109881,blackmail,1394983939 +14815,109881,France,1421457028 +14815,109941,cats,1420258426 +14815,109941,fantasy world,1420288542 +14815,109941,short,1420258433 +14815,109941,Shrek franchise,1447249796 +14815,109953,anthropomorphized animals,1416252884 +14815,109953,cartoon,1416250559 +14815,109953,short,1416259055 +14815,109953,slapstick,1416259080 +14815,109965,Shrek franchise,1447249746 +14815,109993,Pixar,1415273883 +14815,109993,short,1415273878 +14815,110097,jail,1405675172 +14815,110097,short,1395773476 +14815,110097,youtube,1434839339 +14815,110102,Captain America,1411863411 +14815,110102,conspiracy,1411863407 +14815,110102,imdb top 250,1416966108 +14815,110102,superhero,1411863395 +14815,110293,restaurant,1434884508 +14815,110293,short,1396490579 +14815,110293,youtube,1434839841 +14815,110445,based on a book,1411180286 +14815,110445,discworld,1412125141 +14815,110445,fantasy world,1412125151 +14815,110445,Terry Pratchett,1412125188 +14815,110455,exploration,1397317511 +14815,110455,short,1397317517 +14815,110455,steampunk,1397317466 +14815,110501,undercover cop,1421502888 +14815,110773,crude humor,1419972521 +14815,110773,haunted house,1419972498 +14815,111113,college,1429566934 +14815,111362,imdb top 250,1416966047 +14815,111362,mutants,1411647777 +14815,111362,superhero,1411647786 +14815,111362,time travel,1411647798 +14815,111362,X-men,1411647764 +14815,111364,Godzilla,1411926240 +14815,111364,Kaiju,1411926247 +14815,111364,military,1411926263 +14815,111443,cooking,1420077808 +14815,111443,father-son relationship,1420077801 +14815,111443,food,1420077810 +14815,111443,friendship,1420077812 +14815,111443,road trip,1420077927 +14815,111443,Twitter,1420077821 +14815,111443,USA,1420077805 +14815,111519,movieId=128991,1427239604 +14815,111759,alien invasion,1411613823 +14815,111759,war,1411613797 +14815,112138,police,1417050901 +14815,112138,product placement,1417048826 +14815,112138,sequel,1417051084 +14815,112138,undercover cop,1417050902 +14815,112138,USA,1417186074 +14815,112171,revenge,1429225965 +14815,112171,russian mafia,1429225935 +14815,112171,USA,1429323796 +14815,112175,dragons,1416616751 +14815,112175,imdb top 250,1416966076 +14815,112183,actors,1425158011 +14815,112183,Broadway,1425157922 +14815,112183,movie business,1425157855 +14815,112183,Theater,1425157864 +14815,112183,USA,1425157917 +14815,112193,dogme95,1419696710 +14815,112193,France,1419696673 +14815,112193,prostitution,1419696679 +14815,112193,sexuality,1419696662 +14815,112290,childhood,1421458388 +14815,112290,episodic,1420556448 +14815,112290,family,1420556466 +14815,112290,growing up,1420556460 +14815,112290,realism,1420556746 +14815,112421,mental illness,1412696100 +14815,112421,musicians,1412696103 +14815,112488,short,1405083828 +14815,112488,youtube,1434839565 +14815,112556,adultery,1419902330 +14815,112556,false accusation,1419902333 +14815,112556,imdb top 250,1419988543 +14815,112556,murder,1419902342 +14815,112556,USA,1419986446 +14815,112623,imdb top 250,1416965996 +14815,112623,post-apocalyptic,1416961979 +14815,112623,talking animals,1416961974 +14815,112852,action,1416974010 +14815,112852,adventure,1416943061 +14815,112852,imdb top 250,1416965975 +14815,112852,product placement,1416931979 +14815,112852,science fiction,1416941184 +14815,112852,space opera,1416941221 +14815,112852,talking animals,1416941172 +14815,112852,watch the credits,1416943055 +14815,113045,hitman,1435840700 +14815,113045,USA,1435840689 +14815,113045,violence,1436062816 +14815,113374,birds,1415289498 +14815,113374,cartoon,1416231022 +14815,113374,police,1415289513 +14815,113374,poverty,1416231093 +14815,113374,short,1415289478 +14815,113453,police,1440364914 +14815,113453,USA,1440364918 +14815,113573,crime,1416862922 +14815,113573,Frank Miller,1416862928 +14815,113573,monologue,1416862895 +14815,113573,multiple storylines,1416862898 +14815,113741,parallel universe,1413340003 +14815,114028,gay,1451861978 +14815,114028,history,1451861976 +14815,114028,homosexuality,1451861981 +14815,114028,lgbt,1451861974 +14815,114028,strike,1451861988 +14815,114082,youtube,1434840245 +14815,114180,amnesia,1420170386 +14815,114180,dystopia,1420170388 +14815,114180,maze,1420170382 +14815,114180,post-apocalyptic,1420170395 +14815,114180,survival,1420170463 +14815,114246,detective,1435681685 +14815,114246,kidnapping,1435682143 +14815,114246,USA,1435681678 +14815,114439,CIA,1434247731 +14815,114439,Russia,1434247732 +14815,114439,spy,1434247746 +14815,114461,cartoon,1416252754 +14815,114461,short,1416252756 +14815,114461,surreal,1416252760 +14815,114461,youtube,1434840444 +14815,114552,cheese,1419048958 +14815,114552,fantasy world,1419048967 +14815,114552,father-daughter relationship,1419048949 +14815,114552,stop motion,1419049001 +14815,114552,trolls,1419049004 +14815,114552,watch the credits,1419048952 +14815,114556,China,1411942624 +14815,114556,Hong Kong,1411942641 +14815,114556,Stephen Chow,1411951193 +14815,114662,Iraq,1435707732 +14815,114662,military,1435707767 +14815,114662,seals,1435707756 +14815,114662,sniper,1435707739 +14815,114662,USA,1435707736 +14815,114662,war,1435707715 +14815,114662,war hero,1435707719 +14815,114795,dracula,1429121872 +14815,114795,vampires,1429121873 +14815,114795,war,1429121875 +14815,114935,science fiction,1418786319 +14815,114935,time travel,1418786304 +14815,114935,twist ending,1418786305 +14815,114935,USA,1418786375 +14815,115008,short,1413176333 +14815,115008,youtube,1434840355 +14815,115011,animals,1413177220 +14815,115011,Ice Age franchise,1447249589 +14815,115011,Scrat,1447249618 +14815,115011,short,1413177036 +14815,115109,death,1413307698 +14815,115109,short,1413307683 +14815,115109,watch the credits,1413315345 +14815,115109,youtube,1434839411 +14815,115111,escape,1413315212 +14815,115111,hospital,1413315198 +14815,115111,short,1413315180 +14815,115111,surgery,1413315192 +14815,115119,fantasy world,1413395065 +14815,115119,short,1413316662 +14815,115119,youtube,1434840056 +14815,115122,mockumentary,1421961834 +14815,115122,New Zealand,1421928334 +14815,115122,vampires,1421961831 +14815,115149,action,1429744672 +14815,115149,gunfight,1429744663 +14815,115149,revenge,1429744395 +14815,115149,USA,1429744385 +14815,115207,Mise en abyme,1413702184 +14815,115207,short,1413702047 +14815,115210,Germany,1426608317 +14815,115210,tank,1426608359 +14815,115210,USA,1426608314 +14815,115210,war,1426608616 +14815,115210,war hero,1426608623 +14815,115210,World War II,1426608321 +14815,115569,California,1424917505 +14815,115569,journalism,1424915752 +14815,115569,Los Angeles,1424917511 +14815,115569,news,1424915753 +14815,115569,television,1424915759 +14815,115569,USA,1424917498 +14815,115664,Mexico,1425189801 +14815,115664,romance,1425455490 +14815,115680,time travel,1439963000 +14815,115680,twist ending,1439963002 +14815,115703,cars,1421457514 +14815,115703,short,1414814035 +14815,115705,cartoon,1414816348 +14815,115705,cat,1414816336 +14815,115705,short,1414816333 +14815,115705,youtube,1434839322 +14815,115708,cartoon,1414818378 +14815,115708,nuclear war,1414818369 +14815,115708,scrabble,1414818419 +14815,115708,short,1414818350 +14815,115708,youtube,1434839258 +14815,115713,artificial intelligence,1435257087 +14815,115713,isolation,1435257590 +14815,115713,robots,1435257091 +14815,115713,technology,1435257094 +14815,115713,thriller,1435257098 +14815,115746,short,1414921696 +14815,115746,trains,1414921721 +14815,115746,youtube,1434839818 +14815,115748,aliens,1414921951 +14815,115748,baby,1414921938 +14815,115748,short,1414921942 +14815,115819,dogs,1415021827 +14815,115819,robots,1415021838 +14815,115819,short,1415021705 +14815,115875,Pixar,1415201191 +14815,115875,short,1415253364 +14815,115877,baby,1415201816 +14815,115877,daycare,1415201820 +14815,115877,short,1415201813 +14815,115877,simpsons,1415273857 +14815,115879,Pixar,1415201847 +14815,115879,short,1415201849 +14815,115881,easily confused with other movie(s) (title),1415958364 +14815,115881,post-apocalyptic,1415273823 +14815,115881,short,1415201920 +14815,115881,surreal,1415201934 +14815,116807,babysitting,1415898076 +14815,116807,France,1415898084 +14815,116887,ancient civilization,1429795980 +14815,116887,Biblical,1429795896 +14815,116887,Egypt,1429795985 +14815,116887,Moses,1429795960 +14815,116887,religion,1429796027 +14815,116897,dark humor,1426962051 +14815,116969,planes,1428878600 +14815,116969,short,1428878564 +14815,116969,war,1428878561 +14815,116969,youtube,1434840285 +14815,117109,parody,1416330068 +14815,117109,short,1416330056 +14815,117109,sitcom,1416330061 +14815,117109,youtube,1434839526 +14815,117368,Christmas,1416675332 +14815,117368,short,1416599899 +14815,117430,Ice Age franchise,1447249423 +14815,117430,Scrat,1447249527 +14815,117430,short,1416759525 +14815,117446,anime,1429098660 +14815,117446,mecha,1429098831 +14815,117446,post-apocalyptic,1429098655 +14815,117446,sci-fi,1429098670 +14815,117446,virtual reality,1429098801 +14815,117851,adventure,1427398234 +14815,117851,comedy,1427398220 +14815,117851,good versus evil,1427495623 +14815,117851,talking animals,1427398215 +14815,117877,Africa,1421984372 +14815,117877,algeria,1421984366 +14815,117877,cats,1421984380 +14815,117877,Jews,1421984400 +14815,117877,religion,1421984340 +14815,117895,action,1449325792 +14815,117895,post-apocalyptic,1449326700 +14815,117895,teen,1449325798 +14815,117895,zombies,1449325790 +14815,117922,Christmas,1417520176 +14815,117922,Ice Age franchise,1447249467 +14815,117922,Santa Claus,1417520185 +14815,117922,short,1417520169 +14815,117924,crime,1417520077 +14815,117924,film noir,1417520139 +14815,117924,short,1417520094 +14815,117924,twist ending,1417520116 +14815,117924,youtube,1434839192 +14815,118696,fantasy world,1427801348 +14815,119145,spy,1433713153 +14815,120466,artificial intelligence,1434889677 +14815,120466,product placement,1434889611 +14815,120466,sci-fi,1434889693 +14815,120466,South Africa,1434892010 +14815,120468,party,1420288315 +14815,120468,Pixar,1420288301 +14815,120468,short,1420288297 +14815,120468,toys,1420288338 +14815,120470,Pixar,1424560070 +14815,120470,short,1424560047 +14815,120474,animation,1450639442 +14815,120474,Pixar,1420288348 +14815,120474,short,1420288351 +14815,120474,toys,1420288357 +14815,121157,archeology,1434188302 +14815,121157,exploration,1434188312 +14815,121157,South America,1434188325 +14815,122900,ants,1450521363 +14815,122900,burglary,1450521366 +14815,122900,comics,1450522753 +14815,122900,heist,1450521476 +14815,122900,Marvel,1450521941 +14815,122900,product placement,1450521336 +14815,122900,superhero,1450521353 +14815,125926,short,1424560409 +14815,125926,youtube,1434839622 +14815,127098,comedy,1429138994 +14815,127098,Louis C.K.,1429138982 +14815,127098,stand up,1429138986 +14815,127098,stand-up comedy,1429138975 +14815,128540,animation,1428864322 +14815,128540,short,1428878628 +14815,128540,talking animals,1428864327 +14815,128981,drums,1424635506 +14815,128981,music,1424635379 +14815,128981,percussion instrument,1424635402 +14815,128981,short,1424635375 +14815,128981,youtube,1434839172 +14815,128987,France,1424635830 +14815,128989,France,1424635836 +14815,128989,teen,1424635847 +14815,128991,animation,1424635936 +14815,128991,comedy,1424635933 +14815,128991,delivery boy,1424635918 +14815,128991,sci-fi,1424635926 +14815,128991,short,1424635871 +14815,128991,youtube,1434839132 +14815,129011,stand-up comedy,1435015345 +14815,129013,stand-up comedy,1435309332 +14815,129397,USA,1429640277 +14815,129771,comedy,1437325922 +14815,130490,sci-fi,1440047905 +14815,130506,anime,1429548651 +14815,130506,battles,1429548503 +14815,130506,medieval,1429548497 +14815,130506,war,1429548499 +14815,130508,anime,1429548663 +14815,130508,battles,1429548509 +14815,130508,medieval,1429548484 +14815,130508,war,1429548486 +14815,130510,anime,1429559387 +14815,130510,demons,1429559398 +14815,130510,medieval,1429559391 +14815,130518,USA,1427035078 +14815,130520,alien invasion,1436441038 +14815,130520,aliens,1436440898 +14815,130520,animation,1436431274 +14815,130520,Dreamworks,1436431270 +14815,130842,short,1427302060 +14815,130842,youtube,1434839688 +14815,131066,adventure,1451215779 +14815,131066,animation,1451214413 +14815,131066,barbarians,1451214428 +14815,131066,comedy,1451215929 +14815,131066,crude humor,1451214416 +14815,131066,fantasy,1451214425 +14815,131066,parody,1451214418 +14815,131066,quest,1451214442 +14815,131656,Aardman,1434222647 +14815,131656,talking animals,1434222638 +14815,132362,anime,1429099064 +14815,132362,Japan,1429099067 +14815,132608,France,1429965906 +14815,132608,friendship,1429965916 +14815,134751,books,1451252045 +14815,134751,short,1451252053 +14815,134751,youtube,1451252092 +14815,134853,Animation,1447011657 +14815,134853,brain,1447011699 +14815,134853,childhood,1447011658 +14815,134853,coming of age,1447011589 +14815,134853,family,1447011752 +14815,134853,memory,1447011592 +14815,134853,psychology,1447011606 +14815,134853,teenager,1447011707 +14815,134853,USA,1447014949 +14815,135456,anime,1434879005 +14815,135456,cyberpunk,1434886693 +14815,135456,investigation,1434878967 +14815,135456,Japan,1434878952 +14815,135553,documentary,1435727532 +14815,135553,El Salvador,1435727311 +14815,135553,gangs,1435727318 +14815,135553,South America,1435727326 +14815,135854,stand-up comedy,1435328589 +14815,135887,animation,1450722598 +14815,135887,comedy,1450722597 +14815,135887,minions,1450722595 +14815,136020,James Bond,1449441235 +14815,136020,spy,1449441264 +14815,136752,comedy,1436027787 +14815,136752,France,1436027731 +14815,136752,Kad et Olivier,1436427570 +14815,136752,Les Robins des Bois,1436427548 +14815,136752,space,1436027736 +14815,136910,anachronism,1436260226 +14815,136910,ancient civilization,1436223439 +14815,136910,Ancient Rome,1436223429 +14815,136910,Cleopatra,1436223460 +14815,136910,comedy,1436223420 +14815,136910,Julius Caesar,1436223502 +14815,137395,comedy,1436364028 +14815,137395,FBI,1436364512 +14815,137395,Kad et Olivier,1436427564 +14815,137395,Les Robins des Bois,1436427541 +14815,137395,parody,1436364034 +14815,137395,USA,1436364041 +14815,137423,comedy,1436399172 +14815,138702,dog,1450048960 +14815,138702,food,1450048966 +14815,138702,love,1450048963 +14815,138702,short,1450049035 +14815,146684,animals,1447249626 +14815,146684,animation,1447249154 +14815,146684,comedy,1447249168 +14815,146684,Ice Age franchise,1447249429 +14815,146684,Scrat,1447249206 +14815,146684,short,1447249188 +14815,146684,youtube,1447249148 +14815,148476,comedy,1451862012 +14815,148476,France,1451861998 +14815,148476,youtube,1451862002 +14816,7,remake,1138731279 +14816,1721,drama,1138731341 +14816,1947,classic,1138838804 +14816,2406,action,1138731264 +14817,68319,throwaway,1276829400 +14845,858,sequel better than original,1198779010 +14850,47,Morgan Freeman,1281708565 +14850,836,but not very good,1390733533 +14850,836,seen at the cinema,1390733541 +14850,2997,black comedy,1285438769 +14850,2997,Charlie Kaufman,1285438775 +14850,2997,dark comedy,1285438772 +14850,2997,quirky,1285438779 +14850,2997,satirical,1285438781 +14850,2997,surreal,1285438788 +14850,5418,action,1292856703 +14850,5418,amnesia,1292856690 +14850,5418,car chase,1292856680 +14850,5418,Matt Damon,1292856665 +14850,5418,realistic action,1292856668 +14850,5418,spy,1292856671 +14850,5418,thriller,1292856677 +14850,7265,erotic,1394345234 +14850,7265,incest,1394345206 +14850,7265,indecent,1394345217 +14850,7265,Nudity (Full Frontal - Notable),1394345210 +14850,7265,Nudity (Full Frontal),1394345212 +14850,7265,sexual,1394345215 +14850,47610,Edward Norton,1390733575 +14850,47610,predictable,1390733559 +14850,58559,dark,1281706101 +14850,58559,Heath Ledger,1281706096 +14850,58559,Michael Caine,1281706103 +14850,58559,Morgan Freeman,1281706111 +14850,58559,music,1281706129 +14850,58559,violence,1281706120 +14850,60069,Future,1281708538 +14850,60069,Robots,1281708538 +14850,60069,Romance,1281708502 +14850,65642,complicated,1394345131 +14850,65642,nudity,1394345142 +14850,65642,Nudity (Topless),1394345127 +14850,65642,paradox,1394345150 +14850,65642,plot wending,1394345153 +14850,65642,time travel,1394345147 +14850,68157,black comedy,1281706398 +14850,68157,great soundtrack,1281706406 +14850,68157,Quentin Tarantino,1281706390 +14850,68157,violence,1281706395 +14850,68157,visually appealing,1281706413 +14850,79132,Hans Zimmer,1281706025 +14850,79132,heist,1281706016 +14850,79132,Intense,1281706020 +14850,79132,mindfuck,1281706014 +14850,79132,Nolan,1281706042 +14850,79132,visually appealing,1281706009 +14858,1343,1980s,1186809417 +14858,1343,1990s,1186809417 +14858,1343,2000s,1186809417 +14863,7,Greg Kinnear,1187161220 +14863,7,romance,1187161195 +14863,11,president,1187162596 +14863,39,Alicia Silverstone,1187162362 +14863,39,romance,1187162371 +14863,62,inspirational,1184189215 +14863,62,moving,1184189215 +14863,62,music,1184189215 +14863,62,teacher,1184189215 +14863,62,tearful,1184189215 +14863,141,Robin Williams,1187160803 +14863,208,Kevin Costner,1187162734 +14863,236,comedy,1187160740 +14863,236,marriage,1187160740 +14863,236,Meg Ryan,1187160740 +14863,236,romance,1187160740 +14863,249,Beethoven,1187161926 +14863,249,Gary Oldman,1187161932 +14863,252,albert einstein,1184189282 +14863,252,Einstein,1184189282 +14863,252,Meg Ryan,1184189282 +14863,252,romance,1184189282 +14863,252,Tim Robbins,1184189282 +14863,318,freedom,1187158671 +14863,318,morgan freeman,1187158672 +14863,318,prison,1187158672 +14863,318,stephen king,1187158719 +14863,318,tim robbins,1187158672 +14863,329,Star Trek,1187161052 +14863,377,Sandra Bullock,1187162921 +14863,497,Denzel Washington,1187161571 +14863,497,Emma Thompson,1187161574 +14863,497,Shakespeare,1187161577 +14863,500,nanny,1187161596 +14863,500,Robin Williams,1187161587 +14863,514,comedy,1187159515 +14863,514,Denis Leary,1187159515 +14863,514,Kevin Spacey,1187159515 +14863,527,black and white,1184188866 +14863,527,hitler,1184188866 +14863,527,World War II,1184188866 +14863,529,chess,1187161156 +14863,539,i own this,1184188918 +14863,539,Meg Ryan,1184188918 +14863,539,ownable,1184188918 +14863,539,romance,1184188918 +14863,539,seen more than once,1184188918 +14863,539,Tom Hanks,1184188918 +14863,597,Julia Roberts,1184189036 +14863,597,prince charming,1184189036 +14863,597,prostitution,1184189010 +14863,597,Richard Gere,1184189004 +14863,597,romance,1184189036 +14863,685,aids,1184188806 +14863,685,assisted suicide,1184188806 +14863,685,friends,1184188806 +14863,685,gay,1184188806 +14863,685,hiv,1184188806 +14863,685,homosexuality,1184188806 +14863,708,Uma Thurman,1187162787 +14863,736,Helen Hunt,1187162760 +14863,780,Bill Pullman,1187161873 +14863,802,Forest Whitaker,1187159742 +14863,802,genius,1187159742 +14863,802,John Travolta,1187159668 +14863,802,Kyra Sedgwick,1187159743 +14863,802,telekinesis,1187159743 +14863,914,Audrey Hepburn,1187161499 +14863,914,musical,1187161522 +14863,914,romance,1187161522 +14863,919,musical,1187162680 +14863,919,yellow brick road,1187162701 +14863,1028,Disney,1187161738 +14863,1028,Julie Andrews,1187161703 +14863,1028,musical,1187161730 +14863,1073,children,1184189130 +14863,1073,chocolate,1184189130 +14863,1073,Gene Wilder,1184189130 +14863,1073,morals,1184189130 +14863,1088,Patrick Swayze,1187162203 +14863,1088,romance,1187162189 +14863,1177,Italy,1184189237 +14863,1197,classic,1184188996 +14863,1197,comedy,1184188996 +14863,1197,humorous,1184189052 +14863,1197,i own this,1184188996 +14863,1197,ownable,1184188996 +14863,1197,romance,1184188996 +14863,1197,seen more than once,1184188996 +14863,1242,Civil War,1187162033 +14863,1242,true story,1187162052 +14863,1265,Andie MacDowell,1187160453 +14863,1265,Bill Murray,1187160453 +14863,1265,Chris Elliott,1187160453 +14863,1265,Stephen Tobolowsky,1187160453 +14863,1265,trapped,1187160453 +14863,1265,true love,1187160453 +14863,1265,weatherman,1187160453 +14863,1280,i own this,1184188745 +14863,1280,subtitles,1184188745 +14863,1307,billy crystal,1187158780 +14863,1307,i own this,1184188698 +14863,1307,meg ryan,1184188680 +14863,1307,ownable,1184188680 +14863,1307,romance,1184188680 +14863,1307,seen more than once,1184188680 +14863,1380,musical,1187160499 +14863,1380,Olivia Newton-John,1187160502 +14863,1485,blooper reel,1187161800 +14863,1485,comedy,1187161802 +14863,1485,lawyer,1187161797 +14863,1541,comedy,1187160901 +14863,1541,Kelly Preston,1187160901 +14863,1541,Matthew Broderick,1187160901 +14863,1541,Meg Ryan,1187160901 +14863,1541,romance,1187160901 +14863,1541,spying,1187160901 +14863,1541,stars,1187160901 +14863,1541,Tchéky Karyo,1187160902 +14863,1569,Cameron Diaz,1187161552 +14863,1569,Julia Roberts,1187161547 +14863,1569,weddings,1187161536 +14863,1580,aliens,1187161607 +14863,1580,Will Smith,1187161624 +14863,1619,Brad Pitt,1187161107 +14863,1619,mountain climbing,1187161126 +14863,1625,twist ending,1187162057 +14863,1909,aliens,1187162651 +14863,1909,conspiracy,1187162656 +14863,2005,pirates,1187162001 +14863,2005,treasure hunt,1187162004 +14863,2028,Tom Hanks,1187161177 +14863,2078,classic,1187161814 +14863,2078,Disney,1187161845 +14863,2081,Disney,1187161784 +14863,2302,alabama,1187159875 +14863,2302,comedy,1187159875 +14863,2302,Joe Pesci,1187159874 +14863,2302,lawyer,1187159874 +14863,2302,Marisa Tomei,1187159875 +14863,2302,trial,1187159875 +14863,2321,black and white,1187159643 +14863,2321,Don Knotts,1187159643 +14863,2321,Jeff Daniels,1187159642 +14863,2321,Reese Witherspoon,1187159643 +14863,2321,Tobey Maguire,1187159642 +14863,2321,William H. Macy,1187159643 +14863,2324,father,1187160230 +14863,2324,holocaust,1187160177 +14863,2324,love,1187160230 +14863,2324,son,1187160230 +14863,2324,survival,1187160230 +14863,2324,World War II,1187160230 +14863,2396,romance,1187162943 +14863,2502,Bill Lumberg,1187161426 +14863,2502,corporate America,1187161434 +14863,2724,Julia Roberts,1187161386 +14863,2724,Richard Gere,1187161228 +14863,2724,small town,1187161358 +14863,2724,weddings,1187161358 +14863,2797,Tom Hanks,1187162509 +14863,2918,comedy,1187162116 +14863,2918,Matthew Broderick,1187162118 +14863,2959,Brad Pitt,1187160516 +14863,2959,fighting,1187160523 +14863,3039,race issues,1187160950 +14863,3046,lesbian,1187161898 +14863,3114,animation,1187162850 +14863,3114,humorous,1187162844 +14863,3114,Pixar,1187162829 +14863,3147,Tom Hanks,1187161989 +14863,3270,D.B. Sweeney,1187162341 +14863,3270,figure skating,1187162242 +14863,3270,hockey,1187162250 +14863,3270,Moira Kelly,1187162341 +14863,3270,Roy Dotrice,1187162341 +14863,3408,based on a true story,1184189232 +14863,3489,Peter Pan,1187161955 +14863,3489,Robin Williams,1187161951 +14863,3677,non-verbal,1187161302 +14863,3717,Angelina Jolie,1187160696 +14863,3717,cars,1187160696 +14863,3717,crime,1187160696 +14863,3717,Giovanni Ribisi,1187160696 +14863,3717,Nicolas Cage,1187160696 +14863,3717,Robert Duvall,1187160696 +14863,3916,football,1184188964 +14863,3916,high school,1184188964 +14863,3916,race issues,1184188964 +14863,3916,social commentary,1184188964 +14863,4054,ballet,1187159415 +14863,4054,Julia Stiles,1187159412 +14863,4054,romance,1187159423 +14863,4344,hacking,1187162886 +14863,4447,comedy,1187160345 +14863,4447,Luke Wilson,1187160345 +14863,4447,Reese Witherspoon,1187160345 +14863,4447,Selma Blair,1187160345 +14863,4558,Arnold Schwarzenegger,1187162773 +14863,4558,comedy,1187162769 +14863,4886,Billy Crystal,1187159106 +14863,4886,Jennifer Tilly,1187159106 +14863,4886,John Goodman,1187159106 +14863,4886,Pixar,1187158872 +14863,4963,Andy Garcia,1187160025 +14863,4963,Bernie Mac,1187160025 +14863,4963,Brad Pitt,1187160025 +14863,4963,casino,1187160064 +14863,4963,George Clooney,1187160025 +14863,4963,Julia Roberts,1187160025 +14863,4963,Matt Damon,1187160025 +14863,4995,biography,1187162525 +14863,5620,i own this,1187158908 +14863,5620,Patrick Dempsey,1187158985 +14863,5620,Reese Witherspoon,1187158951 +14863,5620,romance,1187158908 +14863,5620,weddings,1187158985 +14863,5669,documentary,1187162396 +14863,5989,Leonardo DiCaprio,1187162425 +14863,5989,Tom Hanks,1187162434 +14863,5989,true story,1187162448 +14863,6377,animation,1187162110 +14863,6378,mini coopers,1187159022 +14863,6863,music,1187162955 +14863,6863,school,1187162968 +14863,6944,comedy,1187162139 +14863,6944,Steve Martin,1187162149 +14863,7155,true story,1187162454 +14863,7263,hockey,1187160157 +14863,7263,Olympics,1187160157 +14863,7263,USA,1187160157 +14863,7293,Adam Sandler,1187159166 +14863,7293,Drew Barrymore,1187159166 +14863,7293,romance,1187159166 +14863,8529,Tom Hanks,1187159376 +14863,8622,Michael Moore,1184189226 +14863,8641,Steve Carrell,1187162562 +14863,8641,Will Ferrell,1187162552 +14863,8917,puppets,1187162864 +14863,8961,animation,1187161912 +14863,8961,powers,1187161915 +14863,33493,Star Wars,1187162900 +14863,34072,animals,1187160127 +14863,34072,documentary,1187160127 +14863,34072,penguins,1187160127 +14863,34072,winter,1187160127 +14863,34162,comedy,1187159211 +14863,34162,i own this,1187159362 +14863,34162,Owen Wilson,1187159297 +14863,34162,Vince Vaughn,1187159297 +14863,34162,weddings,1187159211 +14863,34162,Will Ferrell,1187159297 +14863,42004,gender,1187162821 +14863,42004,roadtrip,1187162805 +14863,42004,transgender,1187162814 +14863,45517,Pixar,1187160764 +14901,260,cult classic,1441198204 +14901,260,darth vader,1441198228 +14901,260,good science fictional technology,1441198196 +14901,260,luke skywalker,1441198236 +14970,1093,biopic,1241379508 +14988,114854,based on a true story,1421551813 +14988,114854,inspired by a real-life person,1421551813 +14988,114854,tear jerker,1421551813 +15004,4091,80's,1145800883 +15004,4091,highschool,1145800822 +15017,110,battles,1304370683 +15017,110,heroism,1304370683 +15017,110,medieval,1304370667 +15017,318,prison,1304370483 +15017,318,Stephen King,1304370488 +15017,1222,war movie,1304370601 +15017,1258,psychology,1304370476 +15017,1917,Bruce Willis,1304371212 +15017,2762,ghosts,1304370946 +15017,2762,psychological,1304370929 +15017,2762,twist ending,1304370926 +15017,3578,Rome,1304370608 +15017,4019,inspirational,1390072136 +15017,4886,Pixar,1304371244 +15017,5445,time travel,1304189039 +15017,5995,World War II,1304370497 +15017,6378,action,1360272595 +15017,6378,Charlize Theron,1360272595 +15017,6378,conspiracy,1360272595 +15017,6502,post-apocalyptic,1304370692 +15017,6502,zombies,1304370690 +15017,6870,Oscar (Best Actor),1304372054 +15017,6870,twist ending,1304372055 +15017,8874,zombies,1304370729 +15017,44195,satire,1304370716 +15017,48516,rats,1304370645 +15017,48738,historical,1304370576 +15017,49278,time travel,1304370649 +15017,53000,post-apocalyptic,1304189124 +15017,53000,zombies,1304189128 +15017,56145,stephen king,1304189110 +15017,56174,zombies,1304189073 +15017,58559,Batman,1304370435 +15017,58559,psychology,1304370438 +15017,59369,espionage,1304370415 +15017,64983,World War II,1304370706 +15017,67255,based on a book,1314307330 +15017,67255,computers,1314307329 +15017,67255,investigation,1314307366 +15017,67255,journalism,1314307326 +15017,67255,Nazis,1314307366 +15017,67255,suspense,1314307366 +15017,68157,Quentin Tarantino,1304370420 +15017,68157,World War II,1304370422 +15017,70599,romance,1314307279 +15017,70599,time travel,1314307275 +15017,71838,antihero,1314308414 +15017,71838,revenge,1314308414 +15017,71838,technology,1314308414 +15017,81562,adventure,1304370355 +15017,81562,true story,1304370360 +15017,81591,psychological,1304370368 +15017,81788,crime,1304370503 +15017,88744,virus,1315941241 +15017,88744,virus outbreak,1315941241 +15017,103306,aliens,1386527983 +15017,103306,low budget,1386527968 +15017,103306,space,1386527977 +15017,104908,Time paradox,1390071854 +15017,109487,black hole,1429572036 +15017,109487,philosophical issues,1429572021 +15017,109487,relativity,1429572027 +15017,109487,space,1429572017 +15017,109487,time-travel,1429572025 +15017,115680,future,1429571978 +15017,115680,prediction,1429571975 +15017,115680,time travel,1429571976 +15030,296,clever banter,1436291598 +15030,296,converging lives,1436291598 +15030,296,crime,1436291598 +15030,593,physiological thriller,1437274486 +15030,593,serial killer,1437274486 +15030,593,suspenseful,1437274486 +15036,1,Pixar,1261495514 +15036,111,Martin Scorsese,1261495430 +15036,223,black and white,1261496591 +15036,223,Kevin Smith,1261495934 +15036,223,quirky,1261495937 +15036,480,Steven Spielberg,1261425481 +15036,608,Coen Brothers,1261495058 +15036,750,black and white,1261495805 +15036,750,classic,1261495820 +15036,750,Quirky,1261495910 +15036,750,Stanley Kubrick,1261495821 +15036,953,black and white,1261496423 +15036,953,classic,1261496415 +15036,1089,Quentin Tarantino,1261495236 +15036,1136,comedy,1261495014 +15036,1136,Monty Python,1261425134 +15036,1252,classic,1261496125 +15036,1258,Stanley Kubrick,1261495450 +15036,1876,sci-fi,1261496208 +15036,2291,Johnny Depp,1261495165 +15036,2321,surreal,1261496221 +15036,2355,Pixar,1261495343 +15036,2571,artificial intelligence,1261426123 +15036,2571,martial arts,1261426118 +15036,2571,post-apocalyptic,1261426127 +15036,2571,sci-fi,1261426115 +15036,2628,sci-fi,1261495249 +15036,2671,romance,1261496103 +15036,2859,music,1261496653 +15036,3114,Disney,1261495488 +15036,3114,Pixar,1261495486 +15036,3471,Steven Spielberg,1261495572 +15036,4370,dystopia,1261495946 +15036,4370,sci-fi,1261495950 +15036,4370,Steven Spielberg,1261495943 +15036,4886,Pixar,1261495421 +15036,4963,heist,1261495075 +15036,4979,quirky,1261495461 +15036,5378,romance,1261495041 +15036,5378,sci-fi,1261495043 +15036,5881,sci-fi,1261426568 +15036,5881,soundtrack,1261426574 +15036,5881,space,1261426566 +15036,5991,musical,1261495761 +15036,6934,sci-fi,1261495388 +15036,6942,Romance,1261496462 +15036,27611,sci-fi,1261496553 +15036,27611,space,1261496555 +15036,30810,comedy,1261426615 +15036,30810,quirky,1261426611 +15036,33493,romance,1261495404 +15036,33493,sci-fi,1261495397 +15036,33679,espionage,1261496155 +15036,34405,sci-fi,1261425956 +15036,45447,religion,1261496190 +15036,45447,Tom Hanks,1261496193 +15036,45722,Johnny Depp,1261495138 +15036,48385,comedy,1261495214 +15036,48516,Martin Scorsese,1261425121 +15036,52328,sci-fi,1261426492 +15036,52328,space,1261426490 +15036,52722,over the top,1261496349 +15036,53125,Johnny Depp,1261495979 +15036,53125,Orlando Bloom,1261496034 +15036,53125,over the top,1261496004 +15036,53125,quirky,1261496023 +15036,54503,comedy,1261495509 +15036,55269,Wes Anderson,1261424611 +15036,55820,coen brothers,1261425206 +15036,56782,Daniel Day-Lewis,1261425398 +15036,59615,Steven Spielberg,1261495740 +15036,60069,pixar,1261426183 +15036,61323,Coen Brothers,1261496284 +15036,61323,George Clooney,1261496288 +15036,63072,Viggo Mortensen,1261424694 +15036,63082,romance,1261425243 +15036,65261,Hayao Miyazaki,1261424770 +15036,68358,sci-fi,1261426236 +15036,68358,space,1261426237 +15036,68954,Pixar,1261426194 +15036,69122,comedy,1261424734 +15036,70286,peter jackson,1261424873 +15036,70286,sci-fi,1261424876 +15036,71464,coen brothers,1261424710 +15036,72226,Wes Anderson,1261424596 +15097,69604,physics,1257017177 +15101,2858,relations,1428811105 +15101,2858,sexuality,1428811091 +15101,91542,private detective,1428813632 +15104,1287,yes,1271318848 +15104,27611,politics,1271321659 +15104,27611,sci-fi,1271321672 +15104,27611,space,1271321683 +15113,32,psychology,1366420624 +15113,32,time travel,1366420622 +15113,50,twist ending,1277736172 +15113,180,hilarious,1269299975 +15113,356,bittersweet,1269293093 +15113,356,psychology,1269293101 +15113,356,romance,1269293103 +15113,356,Sexuality,1269293105 +15113,356,Tom Hanks,1269293095 +15113,356,vietnam war,1269293098 +15113,442,funny,1269296246 +15113,442,time travel,1269296240 +15113,608,Coen Brothers,1366420676 +15113,628,Edward Norton,1366419784 +15113,628,psychology,1366419793 +15113,628,twist ending,1366419791 +15113,1208,classic,1269293048 +15113,1208,Vietnam,1269293043 +15113,1208,Vietnam war,1269293041 +15113,1257,John Cusack,1269296556 +15113,1257,quirky,1269296540 +15113,1257,silly,1269296548 +15113,1379,Emilio Estevez,1269295518 +15113,1379,Kiefer Sutherland,1269295523 +15113,1379,Nudity (Rear),1269295512 +15113,1379,Viggo Mortensen,1269295521 +15113,1704,Great Screenplays,1269293129 +15113,1704,mathematics,1269293123 +15113,1704,Matt Damon,1269293130 +15113,1704,psychology,1269293141 +15113,1704,Robin Williams,1269293134 +15113,1704,seen more than once,1269293137 +15113,1954,competitive sport,1269292826 +15113,1954,drama,1269292841 +15113,1954,Inspirational,1269292845 +15113,1954,romance,1269292839 +15113,1954,setting:Philadelphia,1269292834 +15113,1954,sports,1269292829 +15113,1961,Exceptional Acting,1269293154 +15113,1961,psychology,1269293164 +15113,2248,1980s,1278175184 +15113,2248,In Your Eyes,1278175179 +15113,2248,John Cusack,1278175169 +15113,2248,Lili Taylor,1278175177 +15113,2403,action,1269292867 +15113,2403,classic,1269292883 +15113,2403,memories,1269292872 +15113,2403,post-traumatic stress disorder,1269292877 +15113,2403,Richard Crenna,1269292875 +15113,2403,Sylvester Stallone,1269292869 +15113,2858,comedy,1269292653 +15113,2858,coming of age,1269292651 +15113,2858,Kevin Spacey,1269292654 +15113,2858,reflective,1269292661 +15113,2858,satirical,1269292663 +15113,2858,sexuality,1269292669 +15113,2858,social commentary,1269292665 +15113,2858,thought-provoking,1269292667 +15113,2959,Edward Norton,1269292704 +15113,2959,twist ending,1269292705 +15113,3421,AFI 100 (Movie Quotes),1269294971 +15113,3421,beer,1269294950 +15113,3421,classic,1269294952 +15113,3421,college,1269294953 +15113,3421,drinking,1269294980 +15113,3421,fraternity,1269294955 +15113,3421,Funny,1269294978 +15113,3421,National Lampoon,1269294957 +15113,3421,slackers,1269294958 +15113,3421,sophomoric,1269294960 +15113,3421,wired 50 greatest soundtracks,1269294965 +15113,3481,Catherine Zeta-Jones,1269292556 +15113,3481,funny,1269292566 +15113,3481,Jack Black,1269292554 +15113,3481,John Cusack,1269292550 +15113,3481,relationships,1269292562 +15113,3897,bittersweet,1269292585 +15113,3897,coming of age,1269292583 +15113,3897,humorous,1269292605 +15113,3897,nostalgic,1269292590 +15113,4027,Coen Brothers,1366420813 +15113,4034,politics,1366421004 +15113,4226,imdb top 250,1269292689 +15113,4226,memory,1269292679 +15113,4226,Mindfuck,1269292677 +15113,4226,nonlinear,1269292685 +15113,4226,twist ending,1269292683 +15113,4447,college,1269294837 +15113,4447,cute,1269294831 +15113,4447,dumb but funny,1269294843 +15113,4447,girlie movie,1269294832 +15113,4447,stupid,1269294826 +15113,4816,ben stiller,1269294908 +15113,4816,mindless one liners,1269294918 +15113,4816,seen more than once,1269294921 +15113,4816,stupid,1269294923 +15113,4816,Will Ferrell,1269294926 +15113,4878,psychology,1269295027 +15113,4878,quirky,1269295035 +15113,4878,satirical,1269295034 +15113,4878,social commentary,1269295039 +15113,4878,thought-provoking,1269295030 +15113,4878,time travel,1269295031 +15113,5110,hilarious!,1269298848 +15113,5110,overrated,1269298841 +15113,6287,psychology,1269295106 +15113,7254,alternate endings,1269292787 +15113,7254,mathematics,1269292772 +15113,7254,memory,1269292770 +15113,7254,psychology,1269292781 +15113,7254,suspense,1269292779 +15113,7254,time travel,1269292758 +15113,8376,boring,1269294798 +15113,8376,dull,1269294785 +15113,8376,overrated,1269294783 +15113,8376,seen more than once,1269294793 +15113,8376,unfunny,1269294787 +15113,8784,coming of age,1366420986 +15113,34162,buddy movie,1269294687 +15113,34162,comedy,1269294676 +15113,34162,funny,1269294727 +15113,34162,Owen Wilson,1269294666 +15113,34162,party,1269294674 +15113,34162,Rachel McAdams,1269294687 +15113,34162,Vince Vaughn,1269294668 +15113,34162,weddings,1269294670 +15113,34162,Will Ferrell,1269294687 +15113,37731,Elijah Wood,1269888090 +15113,37731,gang brawls,1269888094 +15113,39183,Heath Ledger,1269295471 +15113,39183,homosexuality,1269379513 +15113,47099,bittersweet,1269295415 +15113,47099,depressing,1269295420 +15113,47099,tearjerking,1269295423 +15113,47099,Will Smith,1269295425 +15113,49396,comedy,1269295006 +15113,49396,Jack Black,1269295004 +15113,49396,music,1269295009 +15113,49396,satire,1269295007 +15113,58998,break-up,1269292972 +15113,58998,comedy,1269292976 +15113,58998,good dialogue,1269292982 +15113,58998,hilarious,1269292980 +15113,58998,Jason Segel,1269292966 +15113,58998,romance,1269292971 +15113,63131,comedy,1269292940 +15113,63131,Elizabeth Banks,1269292926 +15113,63131,funny,1269292932 +15113,63131,Paul Rudd,1269292922 +15113,68157,IMDB Top 250,1269292622 +15113,68157,satire,1269292630 +15113,73881,India,1366420238 +15163,54286,black ops,1437283479 +15163,54286,david webb,1437283479 +15163,54286,secret agent,1437283479 +15163,58297,dystopic future,1438578296 +15163,58297,post apocalypse,1438578296 +15163,58297,thriller,1438578296 +15163,140131,Post apocalyptic,1439246755 +15165,122882,action,1448684924 +15172,25,melancholic,1368727040 +15172,46,women,1368727177 +15172,521,noir thriller,1368727054 +15172,593,excellent script,1368727104 +15172,898,screwball comedy,1368727321 +15172,1088,dancing,1368727272 +15172,1258,masterpiece,1368727080 +15172,1284,neo-noir,1368727265 +15172,1307,unlikely friendships,1368727298 +15172,1617,detective,1368727309 +15172,1704,mentor,1368727068 +15172,1968,teen movie,1368727200 +15172,2762,great ending,1368727286 +15172,3083,women,1368727177 +15172,3499,suspenseful,1368727240 +15172,3948,Ben Stiller,1288878525 +15172,4018,women,1368727177 +15172,4020,supernatural,1368727094 +15172,4878,original,1368727017 +15172,32587,brutality,1368727254 +15172,42723,splatter,1368727136 +15172,53123,musicians,1368727188 +15172,53123,romance,1288878544 +15172,116549,adventure,1430752866 +15172,116549,knights,1430752866 +15172,116549,very funny,1430752866 +15199,480,dinosaurs,1143063098 +15205,260,Boring,1445023751 +15205,260,space opera,1445023751 +15218,296,great dialogue,1449107702 +15218,296,Highly quotable,1449107707 +15218,131724,fascinating,1449107665 +15218,131724,gripping,1449107658 +15218,134130,deep,1449107610 +15218,134130,geeky,1449107582 +15247,253,vampire,1161794819 +15247,288,Crime,1161794932 +15247,1215,comedy,1161794824 +15247,1215,horror,1161794826 +15247,1215,Sam Raimi,1161794823 +15247,1230,Woody Allen,1161269790 +15247,1923,fun,1161269391 +15247,3863,serial killer,1161794906 +15247,3863,surreal,1161794907 +15247,4865,comic book,1161794922 +15247,4865,Johnny Depp,1161794920 +15247,5630,Hannibal Lecter,1161794862 +15247,6707,Horro,1161269435 +15247,8957,Horror,1161794891 +15248,50,atmosphere,1388510928 +15248,50,Kevin Spacey,1388510928 +15248,50,spaceyal,1150889434 +15248,50,twist ending,1388510928 +15248,50,violence,1388510957 +15248,665,surreal,1388511011 +15248,665,surrealism,1388511011 +15248,665,unorthodox,1388511011 +15248,1645,Religion,1153125671 +15248,4011,boxing,1388511207 +15248,4011,Brad Pitt,1388511068 +15248,4011,comedy,1388511068 +15248,4011,criminals,1388511207 +15248,4011,funny,1388511131 +15248,4011,Guy Ritchie,1388511068 +15248,4011,Jason Statham,1388511131 +15248,4011,villain,1388511131 +15248,4037,bad acting,1403441390 +15248,4037,con artists,1403441364 +15248,4037,con men,1403441364 +15248,4037,poker,1403441373 +15248,4037,twisted,1403441364 +15248,6187,spaceyal,1150889689 +15248,33794,atmospheric,1409950432 +15248,33794,Christian Bale,1409950423 +15248,33794,dark,1409950480 +15248,33794,Gary Oldman,1409950460 +15248,33794,Liam Neeson,1409950460 +15248,33794,Michael Caine,1409950426 +15248,33794,Morgan Freeman,1409950428 +15248,33794,philosophical,1409950487 +15248,33794,thought-provoking,1409950442 +15248,40148,Guy Ritchie,1403441201 +15248,40148,Jason Statham,1403441201 +15248,40148,just didn't get it,1403441240 +15248,40148,Sorter,1403441269 +15248,40148,visually appealing,1403441201 +15248,44191,philosophical,1388510858 +15248,44191,politics,1388510839 +15248,44191,thought-provoking,1388510825 +15248,45722,Jack Sparrow,1452801670 +15248,45722,Johnny Depp,1452801636 +15248,45722,Keira Knightley,1452801630 +15248,45722,Orlando Bloom,1452801645 +15248,45722,pirates,1452801633 +15248,53125,Geoffrey Rush,1452801757 +15248,53125,Johnny Depp,1452801739 +15248,53125,Keira Knightley,1452801742 +15248,53125,Orlando Bloom,1452801744 +15248,53125,pirates,1452801737 +15248,54999,comic,1218083343 +15248,58559,Atmospheric,1409950325 +15248,58559,Batman,1409950303 +15248,58559,Christian Bale,1409950311 +15248,58559,dark,1409950376 +15248,58559,Gary Oldman,1409950376 +15248,58559,Heath Ledger,1409950315 +15248,58559,Michael Caine,1409950376 +15248,58559,Morgan Freeman,1409950317 +15248,58559,serial killer,1409950329 +15248,69757,bittersweet,1406381745 +15248,69757,humorous,1406381734 +15248,69757,love,1406381767 +15248,69757,relationships,1406381736 +15248,69757,romance,1406381753 +15248,89774,brother-brother relationship,1410596079 +15248,89774,brutal,1410596084 +15248,89774,great acting,1410596089 +15248,89774,MMA,1410596109 +15248,89774,Nick Nolte,1410596054 +15248,89774,Tom Hardy,1410596070 +15248,89774,touching,1410596098 +15248,91529,Anne Hathaway,1409950282 +15248,91529,atmospheric,1409950251 +15248,91529,Batman,1409950195 +15248,91529,Christian Bale,1409950198 +15248,91529,dark,1409950250 +15248,91529,fantasy,1409950259 +15248,91529,Gary Oldman,1409950201 +15248,91529,great ending,1409950210 +15248,91529,Michael Caine,1409950206 +15248,91529,Morgan Freeman,1409950204 +15248,96811,acting,1406358290 +15248,96811,bitter ending,1406358257 +15248,96811,cinematography,1406358203 +15248,96811,Jake Gyllenhaal,1406358196 +15248,96811,police,1406358218 +15248,96811,shaky camera,1406358301 +15248,96829,child abuse,1410596157 +15248,96829,Danish,1410596237 +15248,96829,ending sucked,1410596223 +15248,96829,hard to watch,1410596227 +15248,96829,Mads Mikkelsen,1410596144 +15248,96829,painful to watch,1410596230 +15248,96829,pedophilia,1410596148 +15248,96829,ruined lives,1410596245 +15248,96829,sexual abuse,1410596159 +15248,101097,atmospheric,1388652185 +15248,101097,cold war,1388652198 +15248,101097,Ed Harris,1388652125 +15248,101097,metaphysical,1388652047 +15248,101097,unrealistic,1388652047 +15248,101097,William Fichtner,1388652125 +15248,102033,seems unreal,1388510745 +15248,102033,tragic events as comedy,1388510750 +15248,105355,lesbian,1403458914 +15248,105355,Nudity (Full Frontal),1403458881 +15248,105355,smoking,1403458953 +15248,105355,too long,1403458889 +15248,105355,well written,1403458881 +15248,105755,Brad Pitt,1395733666 +15248,105755,doesn't make sense,1395733669 +15248,105755,impressive cast,1395733666 +15248,105755,Javier Bardem,1395733666 +15248,105755,no answers,1395733669 +15248,105755,slow start,1395733703 +15248,106782,Leonardo DiCaprio,1389424084 +15248,106782,Nudity (Full Frontal),1389424084 +15248,106782,soundtrack,1389424084 +15248,106782,Wall Street,1389424084 +15248,106916,Bradley Cooper,1396692363 +15248,106916,Christian Bale,1396692363 +15248,106916,Louis C.K.,1396692363 +15248,106916,politics,1396692363 +15248,106916,slow paced,1396692360 +15248,106916,soundtrack,1396692362 +15248,109487,Anne Hathaway,1415603580 +15248,109487,Christopher Nolan,1415603201 +15248,109487,father - child relationship,1415603348 +15248,109487,Mackenzie Foy,1415603558 +15248,109487,Matthew McConaughey,1415603226 +15248,109487,Michael Caine,1415603570 +15248,109487,philosophical issues,1415603281 +15248,109487,physics,1415603297 +15248,109487,sounds,1415603367 +15248,112556,marriage,1423426878 +15248,112556,murder,1423426889 +15248,112556,Psychopathy,1423426864 +15248,112556,unpredictable,1423426906 +15248,114246,detective,1421489112 +15248,114246,Liam Neeson,1421489133 +15248,114246,noir thriller,1421489099 +15248,114246,visually appealing,1421489107 +15248,114662,Bradley Cooper,1424788233 +15248,114662,patriotic,1424788257 +15248,116797,Alan Turing,1441252492 +15248,116797,Benedict Cumberbatch,1441252572 +15248,116797,Computers,1441252517 +15248,116797,cryptography,1441252516 +15248,116797,genius,1441252528 +15248,116797,history,1441252510 +15248,116797,homosexuality,1441252502 +15248,116797,Keira Knightley,1441252574 +15248,116797,mathematics,1441252552 +15248,116797,World War II,1441252486 +15248,117529,dinosaurs,1437855476 +15248,118700,civil rights,1451731828 +15248,118700,history,1451731820 +15248,118700,police brutality,1451731833 +15248,118700,racism,1451731854 +15248,122886,Daisy Ridley,1452801260 +15248,122886,Harrison Ford,1452801274 +15248,122886,J.J. Abrams,1452801552 +15248,128360,Dialogue,1452801816 +15248,128360,humor,1452801928 +15248,128360,Kurt Russell,1452801905 +15248,128360,Michael Madsen,1452802056 +15248,128360,Quentin Tarantino,1452801809 +15248,128360,Samuel Jackson,1452801849 +15248,128360,tension building,1452801813 +15248,128360,Tim Roth,1452801913 +15248,128360,too long,1452801997 +15248,128360,violence,1452802087 +15248,128360,Western,1452802013 +15332,296,bad-ass,1436080065 +15332,296,black humor,1436080065 +15332,296,good dialogue,1436080065 +15332,89745,action packed,1436080357 +15332,89745,funny,1436080351 +15332,89745,Robert Downey Jr.,1436080380 +15333,480,scenic,1429416772 +15333,480,science,1429416788 +15333,480,violence,1429416777 +15333,1015,adventure,1429416913 +15333,1015,dogs,1429416866 +15333,1015,family,1429416855 +15333,1015,heartwarming,1429416894 +15333,1015,nature,1429416879 +15333,2150,adventure,1429417283 +15333,2150,comedy,1429417030 +15333,2150,exotic culture,1429417018 +15333,2150,heartwarming,1429417292 +15333,2150,scenery,1429417125 +15333,2150,thought provoking,1429417116 +15333,2150,unique,1429417043 +15333,2150,values,1429417087 +15333,4993,Adventure,1429416297 +15333,4993,based on a book,1429416330 +15333,4993,beautifully filmed,1429416318 +15333,4993,great soundtrack,1429416324 +15333,4993,gruesome,1429416413 +15333,4993,Oscar (Best Cinematography),1429416344 +15333,4993,scenic,1429416301 +15333,4993,violent,1429416393 +15333,60397,broadway,1429416534 +15333,60397,Greece,1429416466 +15333,60397,Island,1429416510 +15333,60397,Middle Age Romance,1429416525 +15333,60397,music:ABBA,1429416498 +15333,60397,Musical,1429416472 +15333,60397,Wedding,1429416507 +15333,82202,adventure,1429416734 +15333,82202,Europe,1429416609 +15333,82202,romance,1429416572 +15333,82202,Venice,1429416627 +15333,97938,animals,1429416123 +15333,97938,cinematography,1429416215 +15333,97938,depressing,1429416109 +15333,97938,great photograpy,1429416139 +15333,97938,India,1429416203 +15333,97938,religious overtones,1429416210 +15333,97938,Slow,1429416185 +15333,97938,spiritual journey,1429416118 +15333,97938,surreal,1429416192 +15333,97938,visually appealing,1429416143 +15371,1717,ok,1186779697 +15371,3617,funny,1186779698 +15371,3617,light,1186779698 +15371,3916,football,1186779699 +15371,3916,popcorn movie,1186779699 +15371,3967,dancing,1186779702 +15371,3967,entertaining,1186779701 +15371,3967,fun,1186779702 +15371,3967,good,1186779702 +15371,4975,excellent,1186779696 +15371,4975,must see!,1186779696 +15371,8622,excellent,1186779700 +15371,8622,Must see!,1186779700 +15377,319,atmospheric,1350673047 +15377,319,dark comedy,1350673045 +15377,475,gritty,1350673017 +15377,1321,dark comedy,1350673029 +15377,1965,cult film,1350673037 +15377,1965,dark comedy,1350673034 +15377,1965,surreal,1350673039 +15377,80729,funny,1350672988 +15377,80729,understated,1350672984 +15381,4310,The Best!,1142794190 +15401,3793,Comic bookie,1139496170 +15401,3996,hate,1139496179 +15403,260,luke skywalker,1438645620 +15403,260,Star Wars,1438645612 +15413,442,time travel,1452280166 +15413,923,Amazing Cinematography,1452015194 +15413,923,cinematography,1452015209 +15413,923,classic,1452015191 +15413,923,Highly quotable,1452015201 +15413,923,Innovative,1452015171 +15413,923,masterpiece,1452015174 +15413,923,music,1452015234 +15413,923,sound editing,1452015229 +15413,1203,classic,1452010408 +15413,1203,great screenplay,1452010383 +15413,1203,low budget,1452010398 +15413,1203,old,1452015607 +15413,1203,one place,1452015582 +15413,1206,atmospheric,1452097055 +15413,1206,based on a book,1452097044 +15413,1206,brainwashing,1452097066 +15413,1206,classic,1452097069 +15413,1206,cult film,1452097058 +15413,1206,stanley kubrick,1452097048 +15413,1206,stylized,1452097052 +15413,1219,classic,1452011351 +15413,1219,great cinematography,1452011359 +15413,1219,music,1452015279 +15413,1219,suspense,1452011356 +15413,1270,futuristic,1452280044 +15413,1270,sci-fi,1452280032 +15413,1270,time travel,1452280029 +15413,1275,immortality,1452022190 +15413,1304,western,1452014731 +15413,1527,futuristic,1452011280 +15413,1527,sci-fi,1452011277 +15413,1747,conspiracy,1452015914 +15413,1747,satire,1452015909 +15413,1921,atmospheric,1452015348 +15413,1921,black and white,1452015342 +15413,1921,existentialism,1452015346 +15413,1921,great soundtrack,1452015364 +15413,1921,mathematics,1452015344 +15413,1921,music,1452015370 +15413,1921,surreal,1452015354 +15413,1921,underrated,1452015358 +15413,2231,card games,1452012716 +15413,2231,poker,1452012707 +15413,2231,realistic,1452012762 +15413,3448,radio,1452011576 +15413,3448,radio DJ,1452011574 +15413,3481,awesome soundtrack,1452010575 +15413,3481,great soundtrack,1452010557 +15413,3503,Andrei Tarkovsky,1452011810 +15413,3503,atmospheric,1452011820 +15413,3503,meditative,1452011815 +15413,3624,Western Comedy,1452014375 +15413,4226,Mindfuck,1452011146 +15413,4226,narrated,1452011167 +15413,4226,nonlinear,1452011133 +15413,4226,plot twist,1452011153 +15413,4226,storytelling,1452011131 +15413,4226,twist ending,1452011136 +15413,4848,Mindfuck,1452015385 +15413,4848,nonlinear,1452015388 +15413,4896,Magic,1452013436 +15413,4896,Wizards,1452013442 +15413,4993,beautifully filmed,1452013403 +15413,4993,fantasy,1452013391 +15413,4993,wizards,1452013388 +15413,6016,disturbing,1452280304 +15413,6016,multiple storylines,1452280312 +15413,6016,social commentary,1452280295 +15413,8644,future,1452014052 +15413,8644,futuristic,1452014060 +15413,8644,sci-fi,1452014058 +15413,33004,absurd,1452010856 +15413,33004,based on a book,1452010883 +15413,33004,comedy,1452010864 +15413,33004,humor,1452010860 +15413,33004,sarcasm,1452010858 +15413,33004,sci-fi,1452010849 +15413,40815,fantasy,1452014006 +15413,40815,Magic,1452014003 +15413,40815,Wizards,1452014010 +15413,54272,simpsons,1452014746 +15413,54513,anchor,1452013821 +15413,54513,radio,1452013813 +15413,55872,music,1452013171 +15413,58803,cards,1452011535 +15413,58803,mathematics,1452011523 +15413,72998,graphic design,1452280354 +15413,72998,visually stunning,1452280343 +15413,74727,Soviet Union,1452011925 +15413,78088,one place,1452015564 +15413,78349,one place,1452015573 +15413,84152,concept,1452011205 +15413,84152,smart,1452011196 +15413,86882,nostalgic,1452096587 +15413,86882,time travel,1452096574 +15413,89904,original,1452015247 +15413,89904,Oscar (Best Picture),1452015250 +15413,92535,black comedy,1452014153 +15413,96079,action,1452015715 +15413,96079,James Bond,1452015702 +15413,109374,cinematography,1452013225 +15413,109374,funny,1452013231 +15413,109374,Hilarious,1452013237 +15413,109374,stylized,1452013228 +15413,112183,cinematography,1452012431 +15413,112183,dark,1452012457 +15413,112183,music,1452012443 +15413,112183,satire,1452012455 +15413,112183,smart,1452012446 +15413,129354,music,1452280449 +15413,134130,beautiful view,1452011719 +15413,134130,realistic,1452011648 +15413,134130,sci-fi,1452011640 +15413,134130,scientific,1452011642 +15413,134130,shooting,1452011784 +15413,134853,creative,1452021596 +15413,134853,family,1452021590 +15413,134853,thought provoking,1452021602 +15416,260,book-based,1437595573 +15416,260,space,1437595564 +15416,356,chick flick,1437595695 +15416,356,feel-good,1437595695 +15416,356,life,1437595695 +15421,2321,sucked horribley,1138596192 +15421,6539,kick ass,1138596206 +15423,7285,Coming of Age,1412791803 +15423,7285,Drugs,1412791779 +15423,7285,oral,1412791786 +15423,7285,Popularity,1412791793 +15423,7285,Poverty,1412791813 +15423,7285,sex,1412791783 +15423,7285,Teen,1412791771 +15428,1214,alien,1452478764 +15428,1214,aliens,1452478734 +15428,1214,sci-fi,1452478767 +15428,1214,space,1452478737 +15428,1214,space travel,1452478749 +15428,1214,thriller,1452478761 +15428,8810,Alien,1452478700 +15428,8810,aliens,1452478703 +15428,70286,aliens,1452478817 +15428,94864,aliens,1452478849 +15428,94864,space travel,1452478867 +15428,100810,aliens,1452478723 +15449,260,best movie ever,1435250708 +15449,260,star wars,1435250698 +15449,4993,fantasy,1435250917 +15449,4993,music,1435250972 +15449,5349,superhero,1435251013 +15449,5349,Tobey Maguire,1435251022 +15478,837,funny,1187663434 +15478,1277,boring,1187663514 +15478,1344,good actor,1187663489 +15478,1344,good direction,1187663489 +15478,1344,interesting story,1187663489 +15478,1344,Intriguing,1187663490 +15478,2409,silly,1187663440 +15478,2412,for kids,1187663740 +15478,2412,idiot,1187663739 +15478,3362,good story,1187663346 +15478,4343,ridiculous,1187663549 +15478,4343,silly,1187663549 +15478,4975,bad copy,1187663325 +15478,5225,beautiful,1187663613 +15478,5225,funny,1187663613 +15478,5225,realistic,1187663612 +15478,6016,incredible,1187663393 +15478,6870,brutality,1187663362 +15478,6953,drama,1187663656 +15478,6953,realistic,1187663656 +15478,6953,sad but good,1187663656 +15478,8361,bad plot,1187663737 +15478,8361,silly,1187663737 +15478,8361,typical,1187663737 +15478,8622,interesting,1187663323 +15488,85414,Jake Gyllenhaal,1443383716 +15488,85414,parallel universe,1443383774 +15488,85414,suspense,1443383753 +15488,85414,time travel,1443383777 +15488,111759,aliens,1443383889 +15488,111759,Emily Blunt,1443383876 +15488,111759,future,1443383912 +15488,111759,time loop,1443383882 +15488,111759,time travel,1443383878 +15488,111759,Tom Cruise,1443383871 +15504,223,black and white,1358146381 +15504,223,dialogue driven,1358146367 +15504,223,hilarious,1358146365 +15504,223,Kevin Smith,1358146364 +15504,223,low budget,1358146374 +15504,223,quirky,1358146369 +15504,223,stoner comedy,1358146376 +15504,223,witty,1358146389 +15504,733,Alcatraz,1358146561 +15504,733,Nudity (Nic Cage),1358146579 +15504,733,Sean Connery,1358146560 +15504,733,terrorism,1358146566 +15504,733,thriller,1358146565 +15504,784,boring,1358147039 +15504,784,not funny,1358147032 +15504,784,scary not funny,1358147029 +15504,784,stalker,1358147039 +15504,784,stupid,1358147045 +15504,1240,Action,1358146514 +15504,1240,Arnold Schwarzenegger,1358146511 +15504,1240,artificial intelligence,1358146513 +15504,1240,sci-fi,1358146515 +15504,1240,terrorism,1358146522 +15504,1240,time travel,1358146519 +15504,1291,Adventure,1358146535 +15504,1291,Biblical,1358146538 +15504,1291,Harrison Ford,1358146532 +15504,1291,Holy Grail,1358146539 +15504,1291,indiana jones,1358146531 +15504,1291,Sean Connery,1358146533 +15504,1291,seen more than once,1358146545 +15504,1291,Steven Spielberg,1358146534 +15504,2628,adventure,1358146462 +15504,2628,George Lucas,1358146489 +15504,2628,Liam Neeson,1358146484 +15504,2628,Natalie Portman,1358146464 +15504,2628,Samuel L. Jackson,1358146485 +15504,2628,space,1358146469 +15504,2628,Star Wars,1358146467 +15504,3052,Comedy,1358146283 +15504,3052,funny,1358146287 +15504,3052,Kevin Smith,1358146273 +15504,3052,Matt Damon,1358146285 +15504,3052,satire,1358146290 +15504,3052,view askew,1358146278 +15504,4993,adventure,1358146502 +15504,4993,atmospheric,1358146504 +15504,4993,based on a book,1358146501 +15504,4993,high fantasy,1358146498 +15504,5782,easily confused with other movie(s) (title),1358288743 +15504,6287,Adam Sandler,1358147285 +15504,6287,ending,1358147281 +15504,6287,funny,1358147286 +15504,6287,Jack Nicholson,1358147266 +15504,6287,psychology,1358147277 +15504,6373,comedy,1358147052 +15504,6373,humorous,1358147061 +15504,6373,Jim Carrey,1358147057 +15504,6373,Morgan Freeman,1358147053 +15504,6373,Steve Carell,1358147054 +15504,6373,touching,1358147059 +15504,7153,adventure,1358146397 +15504,7153,atmospheric,1358146411 +15504,7153,based on a book,1358146403 +15504,7153,fantasy world,1358146416 +15504,7153,high fantasy,1358146423 +15504,7153,multiple storylines,1358146405 +15504,7153,mythology,1358146409 +15504,43919,Alyson Hannigan,1358146989 +15504,43919,Not funny,1358146974 +15504,43919,revoltingly bad,1358146980 +15504,43919,stinking heap of shit,1358146984 +15504,43919,stupid,1358146976 +15504,43919,terrible,1358146977 +15504,59022,george bush smoking pot,1358147251 +15504,59022,kal penn,1358147254 +15504,59022,Neil Patrick Harris,1358147256 +15504,59022,Nudity (Topless),1358147252 +15504,69784,funny,1358147090 +15504,69784,mockumentary,1358147086 +15504,69784,offensive,1358147097 +15504,69784,Sacha Baron Cohen,1358147076 +15504,69784,satire,1358147083 +15504,69784,social commentary,1358147084 +15504,69784,Suprises around every corner,1358147081 +15504,71520,Atheism,1358146913 +15504,71520,funny,1358146918 +15504,71520,good concept,1358146915 +15504,71520,good writing,1358146917 +15504,71520,Jennifer Garner,1358146911 +15504,71520,Louis C.K.,1358146907 +15504,71520,man in the sky,1358146909 +15504,71520,Ricky Gervais,1358146903 +15504,71520,witty,1358146906 +15504,76251,comic book,1358147003 +15504,76251,dark comedy,1358147012 +15504,76251,humorous,1358147008 +15504,76251,superhero,1358147005 +15504,76251,vigilante,1358147014 +15504,81537,Robert Downey Jr.,1358147234 +15504,81537,unoriginal,1358147237 +15504,81537,Zach Galifianakis,1358147238 +15504,87869,actually funny,1358147196 +15504,87869,black comedy,1358147197 +15504,87869,cast,1358147200 +15504,87869,ending,1358147214 +15504,87869,Jennifer Aniston,1358147192 +15504,87869,pulls punches,1358147210 +15504,87869,sexual,1358147194 +15504,87869,sitcom,1358147212 +15504,87869,weak ending,1358147218 +15520,1136,british humour,1206643642 +15520,54259,british humour,1203953621 +15571,86190,ending,1331435082 +15575,48780,complicated,1308436987 +15575,48780,nonlinear,1308436981 +15575,68237,twist ending,1308437033 +15583,2959,dark comedy,1438577375 +15583,2959,psychology,1438577372 +15583,2959,social commentary,1438577377 +15583,2959,surreal,1438577380 +15583,2959,twist ending,1438577332 +15583,114935,mindfuck,1438577290 +15583,114935,sci-fi,1438577297 +15583,114935,science fiction,1438577295 +15583,114935,time travel,1438577287 +15583,114935,twist ending,1438577293 +15597,8981,conversation,1447338792 +15597,91077,cheating wife,1447339346 +15597,91077,family relationships,1447339338 +15597,91077,father and doughter,1447339251 +15597,91077,middle age,1447339290 +15597,91077,secrets,1447339264 +15597,106841,bleak atmosphere,1447339074 +15597,106841,family drama,1447339060 +15597,106841,mother daughter relationship,1447339084 +15597,106841,secrets,1447339077 +15610,260,classic,1434248332 +15610,260,sci-fi,1434248321 +15644,565,Frederico Luppi,1451716756 +15644,565,gore,1451716736 +15644,565,gothic,1451716732 +15644,565,Guillermo del Toro,1451716707 +15644,565,immortality,1451716741 +15644,565,Ron Perlman,1451716752 +15644,565,vampires,1451716719 +15644,659,Alain Delon,1358983523 +15644,1197,classic,1355893242 +15644,1197,romance,1355893220 +15644,1197,witty,1355893214 +15644,1370,funny,1389051530 +15644,1370,Yippee-ki-yay motherf*cker,1389051597 +15644,1562,funny,1389049683 +15644,1653,disappointing,1355893390 +15644,2006,antonio banderas,1389051398 +15644,2006,fun,1389051384 +15644,2416,Robert Downey Jr.,1359603432 +15644,2528,dystopia,1436247662 +15644,2528,Nudity (Topless),1436247665 +15644,2577,Christian Bale,1358983332 +15644,2577,sexuality,1358983336 +15644,2617,Brendan Fraser,1448216878 +15644,3067,surreal,1392438190 +15644,3067,visually pleasing,1392438204 +15644,5013,lacking something,1359668569 +15644,5064,not like the book,1389051320 +15644,5064,script,1389051356 +15644,5064,wooden acting,1389051326 +15644,5902,clever,1389052127 +15644,5902,weird,1389052112 +15644,5903,action,1355894305 +15644,5903,Christian Bale,1355894296 +15644,5903,dystopia,1355894296 +15644,6323,confusing,1434529454 +15644,6323,predictable,1434529449 +15644,6323,twist ending,1434529466 +15644,6350,anime,1431898056 +15644,6753,coming of age,1389050460 +15644,7587,Alain Delon,1355357215 +15644,8674,Cillian Murphy,1355434522 +15644,8674,Ireland,1355434536 +15644,8674,obsession,1355434513 +15644,8674,romance,1355434506 +15644,8674,violence,1355434554 +15644,8915,based on a play,1399174289 +15644,8915,cross dressing,1399174284 +15644,8915,cross dressing men,1399174278 +15644,8950,Christian Bale,1399182368 +15644,8950,derivative,1399182352 +15644,27787,anime,1359602579 +15644,27787,fantasy,1359602594 +15644,27787,Japan,1359602586 +15644,27787,Japanese,1359602590 +15644,30816,dramatic,1355892603 +15644,30816,romance,1355892574 +15644,35836,offensive,1355893286 +15644,35836,sexist,1355893286 +15644,37495,surreal,1389517779 +15644,44555,good ending,1400460338 +15644,47465,disturbing,1390717689 +15644,47465,too weird,1390717710 +15644,47465,uncomfortable,1390717689 +15644,53996,sexist,1389049753 +15644,56339,bittersweet,1437693340 +15644,59784,racist,1389050230 +15644,59784,stereotypes,1389050249 +15644,69122,unfunny,1359603398 +15644,73854,Christmas,1389050533 +15644,73854,family,1389050524 +15644,78499,weird,1389050351 +15644,82461,Daft Punk,1355894044 +15644,82461,IMAX,1355894091 +15644,82461,soundtrack,1355894070 +15644,84152,cliche,1388550570 +15644,84152,stupid,1388550580 +15644,84716,jae-yeong jeong,1358983655 +15644,84716,ryeo-won jeong,1358983645 +15644,84716,surreal,1358983630 +15644,86880,sequel,1389051153 +15644,89745,commercial,1356027979 +15644,89745,Robert Downey Jr.,1356027959 +15644,89745,Scarlett Johansson,1356027966 +15644,90405,Justin Timberlake,1358982846 +15644,92243,violence,1359522709 +15644,98056,acting,1362546794 +15644,98056,weak ending,1362546815 +15644,98809,Aidan Turner,1355777759 +15644,98809,beautiful scenery,1355777699 +15644,99043,adapted from:book,1356038125 +15644,99043,art house,1389051817 +15644,99043,based on a book,1356037902 +15644,99043,cinematography,1356037844 +15644,99043,Freida Pinto,1356038000 +15644,99043,India,1356037874 +15644,99043,suicide,1356037862 +15644,99043,visually appealing,1356038175 +15644,106918,boring,1391827377 +15644,107348,racist humor,1389038190 +15644,107348,Steve Carell,1389038330 +15644,107348,will ferrell,1389038313 +15644,108932,imaginative,1448216941 +15644,108932,plot twist,1448216935 +15644,108932,tear jerker,1448216950 +15644,109718,depression,1398826759 +15644,109718,homosexuality,1398826693 +15644,109718,martin rodriguez,1398826680 +15644,109718,self discovery,1398826751 +15644,109718,spanish language,1398826721 +15644,109718,Uruguay,1398826704 +15644,111659,Angelina Jolie,1402169618 +15644,111659,bad acting,1402169713 +15644,111659,cgi,1402169618 +15644,111659,rated pg,1402169686 +15644,111659,sleeping beauty,1402169648 +15644,111659,visual effects,1402169618 +15644,112515,Dog killing,1436685447 +15644,112515,psychological,1436685614 +15644,115122,Jemaine Clement,1424045227 +15644,115122,New Zealand,1424045233 +15644,115122,Taika Waititi,1424045247 +15644,115569,dark,1434875761 +15644,115569,gore,1434875731 +15644,115569,Jake Gyllenhaal,1434875702 +15644,118700,Martin Luther King Jr.,1421377150 +15644,118700,police brutality,1421377164 +15644,118700,racism,1421377141 +15644,121231,Retro,1451179686 +15644,121231,sex,1451179673 +15644,121231,std,1451179682 +15644,121231,Suburban,1451179697 +15644,122882,action,1431897944 +15644,122882,feminism,1431897939 +15644,122882,special effects,1431897994 +15644,122886,Adam Driver,1451179824 +15644,125916,abuse,1424045366 +15644,133645,cate blanchett,1451371433 +15644,133645,drama,1451371409 +15644,133645,good acting,1451371412 +15644,133645,lesbian,1451371405 +15644,133645,photography,1451371463 +15644,133645,romance,1451371408 +15644,133645,rooney mara,1451371436 +15644,133645,sarah paulson,1451371440 +15644,133645,the fifties,1451371455 +15644,139385,golden globe,1452639812 +15644,139385,Western,1452639770 +15644,148367,daydream,1451370985 +15644,148367,hindu,1451370949 +15644,148367,india,1451370981 +15644,148367,pixar,1451370938 +15647,1380,musical,1210781459 +15647,1672,John Grisham,1210781212 +15647,2329,imdb top 250,1210781203 +15647,2360,dogme95,1210796372 +15647,2502,satire,1210781224 +15647,3253,rock and roll,1210781284 +15647,4235,Alejandro Gonzalez Inarritu,1210781193 +15647,30816,Musical,1210781215 +15679,145,Buddy movie,1137148607 +15679,231,Buddy movie,1137148769 +15679,296,Buddy movie,1137148729 +15679,540,voyeurism,1137753407 +15679,762,voyeurism,1137753433 +15679,1220,Buddy movie,1137148635 +15679,2000,Buddy movie,1137148661 +15679,2712,voyeurism,1137753363 +15679,4329,Buddy movie,1137148752 +15679,7020,liz should see,1137149205 +15685,15,Pirate,1312061091 +15685,15,pirates,1312061086 +15685,35,Bloomsbury Group,1312051822 +15685,87,Rupert Everett,1312652203 +15685,107,pirates,1312302259 +15685,151,sword fight,1312120267 +15685,282,Jodie Foster,1312120454 +15685,442,dystopia,1312102863 +15685,442,time travel,1312102866 +15685,520,parody,1312120113 +15685,551,johnny depp,1312102489 +15685,551,tim burton,1312102506 +15685,587,bittersweet,1313853883 +15685,587,Fantasy,1313853881 +15685,587,ghosts,1313853886 +15685,587,Patrick Swayze,1313853890 +15685,593,Anthony Hopkins,1314981813 +15685,593,cannibalism,1314981818 +15685,593,Hannibal Lecter,1314981821 +15685,593,Jodie Foster,1314981822 +15685,593,mental illness,1314981824 +15685,593,psychology,1314981829 +15685,593,serial killer,1314981828 +15685,745,Aardman,1312315845 +15685,745,british comedy,1312315850 +15685,745,short films,1312315854 +15685,745,stop motion,1312315858 +15685,745,Wallace & Gromit,1312315862 +15685,801,Michelle Trachtenberg,1312652321 +15685,801,wanting to be a writer,1312652306 +15685,837,dark comedy,1312303717 +15685,838,country house,1313854178 +15685,838,Gwyneth Paltrow,1313854164 +15685,838,Jane Austen,1313854162 +15685,838,Romance,1313854185 +15685,838,satire,1313854187 +15685,1014,based on a book,1312652487 +15685,1030,animation & live action interact,1312654528 +15685,1030,dragons,1312654535 +15685,1088,coming of age,1312120386 +15685,1088,romance,1312120389 +15685,1129,dystopia,1312121396 +15685,1175,dystopia,1312301505 +15685,1175,post-apocalyptic,1312301503 +15685,1175,quirky,1312301500 +15685,1197,Cary Elwes,1312315759 +15685,1197,Cult classic,1312315720 +15685,1197,fairy tale,1312315724 +15685,1197,fantasy,1312315727 +15685,1197,imdb top 250,1312315729 +15685,1197,pirates,1312315734 +15685,1197,quirky,1312315732 +15685,1197,romance,1312315737 +15685,1223,quirky,1312300611 +15685,1246,philosophy,1312060428 +15685,1246,Robin Williams,1312060433 +15685,1262,classic,1312120762 +15685,1262,true story,1312120768 +15685,1278,black and white,1312315621 +15685,1278,farce,1312315626 +15685,1278,Gene Wilder,1312315628 +15685,1278,gothic,1312315630 +15685,1278,imdb top 250,1312315634 +15685,1278,parody,1312315636 +15685,1278,silly but good,1312315642 +15685,1278,spoof,1312315638 +15685,1407,funny,1314385063 +15685,1407,horror,1314385067 +15685,1407,mental illness,1312060700 +15685,1407,parody,1314385072 +15685,1407,postmodern,1314385074 +15685,1407,seen more than once,1314385079 +15685,1407,Skeet Ulrich,1314385083 +15685,1407,Wes Craven,1314385085 +15685,1485,jim carrey,1312060303 +15685,1527,Bruce Willis,1312059827 +15685,1583,fantasy,1312654479 +15685,1583,Martin Short,1312654472 +15685,1588,brendan fraser,1312303704 +15685,1644,Freddie Prinze Jr.,1314641343 +15685,1644,horror,1314641359 +15685,1644,how was this funny?,1314641380 +15685,1644,Jennifer Love Hewitt,1314641347 +15685,1644,Ryan Phillippe,1314641321 +15685,1644,Sarah Michelle Gellar,1314641331 +15685,1658,Ewan McGregor,1312536585 +15685,1658,off-beat comedy,1312536593 +15685,1658,true love,1312536589 +15685,1702,Robin Williams,1312304156 +15685,1717,Comedy,1312121695 +15685,1717,Great movie,1314392304 +15685,1717,parody,1314392307 +15685,1717,self-aware,1314392314 +15685,1717,serial killer,1314392317 +15685,1717,spoof,1314392315 +15685,1717,Wes Craven,1314392320 +15685,1907,strong women,1312121358 +15685,1974,camp,1314468241 +15685,1974,classic,1314468259 +15685,1974,horror,1314468244 +15685,1974,not scary enough,1314468280 +15685,1974,serial killer,1314468250 +15685,1975,fun horror,1314468422 +15685,1975,Jason Vorhees,1314468389 +15685,1975,made me jump,1314468444 +15685,1975,serial killer,1314468402 +15685,1975,teenagers,1314468408 +15685,1976,horror,1314476738 +15685,1976,Jason Vorhees,1314476718 +15685,1976,serial killer,1314476728 +15685,1979,breaks the fourth wall,1314547910 +15685,1979,funny,1314547895 +15685,1979,horror,1314547919 +15685,1979,Jason,1314547890 +15685,1979,supernatural,1314547949 +15685,1980,telekinesis,1314568569 +15685,1981,cheesy,1314568847 +15685,1981,Jason Vorhees,1314568853 +15685,1981,punching heads off,1314568849 +15685,1981,ridiculous,1314568855 +15685,2005,pirates,1312120125 +15685,2052,curse,1312652695 +15685,2052,witches,1312652690 +15685,2078,classic,1312120937 +15685,2125,fantasy,1312301188 +15685,2147,Daryl Hannah,1312314397 +15685,2147,narrated,1312314400 +15685,2147,no dialogue,1312314403 +15685,2321,time travel,1312102402 +15685,2541,Femme Fatale,1314641489 +15685,2541,great soundtrack,1314641494 +15685,2541,Reese Witherspoon,1314641482 +15685,2541,Ryan Philippe,1314641479 +15685,2541,Sarah Michelle Gellar,1314641481 +15685,2541,Selma Blair,1314641501 +15685,2581,chick flick,1312121218 +15685,2581,Drew Barrymore,1312121215 +15685,2617,archaeology,1312103003 +15685,2617,brendan fraser,1312103021 +15685,2657,Quirky,1312102306 +15685,2671,bookshop,1313853929 +15685,2671,British,1313853917 +15685,2671,Hugh Grant,1313853921 +15685,2671,Julia Roberts,1313853923 +15685,2671,romance,1313853926 +15685,2710,creepy,1314351608 +15685,2710,horror,1314351612 +15685,2710,low budget,1314351614 +15685,2710,mockumentary,1314351618 +15685,2710,scary,1314351627 +15685,2710,unsteady-cam,1314351625 +15685,2717,Bill Murray,1312537598 +15685,2717,Dan Aykroyd,1312537602 +15685,2717,fantasy,1312537607 +15685,2717,paranormal,1312537618 +15685,2717,Sigourney Weaver,1312537610 +15685,2717,Who Ya gonna call????????????,1312537613 +15685,2739,women,1312301102 +15685,2794,Chevy Chase,1312304564 +15685,2805,gangsters,1312302584 +15685,2805,Hugh Grant,1312302581 +15685,2857,Beatles,1312302703 +15685,2857,surreal,1312302701 +15685,2875,Can't remember,1313854922 +15685,2875,Jodie Foster,1313854919 +15685,2950,castaway,1312050737 +15685,3081,Dark,1315849111 +15685,3081,Fantasy,1312102575 +15685,3081,gothic,1315849116 +15685,3081,Johnny Depp,1312102570 +15685,3081,quirky,1312102586 +15685,3081,tim burton,1312102597 +15685,3186,Angelina Jolie,1312302342 +15685,3186,mental health,1312653425 +15685,3186,mental illness,1312653417 +15685,3186,psychology,1312302345 +15685,3186,true story,1312653422 +15685,3186,winona ryder,1312653420 +15685,3273,spoof,1312121632 +15685,3355,ancient books,1312997440 +15685,3355,Emmanuelle Seigner,1312997464 +15685,3355,Johnny Depp,1312997467 +15685,3355,Mystery,1312997474 +15685,3355,satanism,1312997469 +15685,3489,fantasy,1312120491 +15685,3489,Robin Williams,1312120494 +15685,3535,funny,1314991606 +15685,3535,insanity,1314991603 +15685,3686,alternate reality,1312316977 +15685,3686,kevin bacon,1312316984 +15685,3686,Kiefer Sutherland,1312316986 +15685,3702,dystopia,1312120164 +15685,3702,post-apocalyptic,1312120161 +15685,3703,dystopia,1312120190 +15685,3703,post-apocalyptic,1312120193 +15685,3704,dystopia,1312300736 +15685,3704,post-apocalyptic,1312300739 +15685,3745,post-apocalyptic,1312300569 +15685,3948,Ben Stiller,1312060266 +15685,3948,Robert De Niro,1312060270 +15685,3969,twist ending,1312300578 +15685,3974,Richard E. Grant,1312654271 +15685,4128,cult film,1312121513 +15685,4128,vampires,1312121511 +15685,4161,Brad Pitt,1312300969 +15685,4161,Julia Roberts,1312300972 +15685,4168,comedy,1314005313 +15685,4168,Kirsten Dunst,1314005267 +15685,4168,really awful british accent!,1314005296 +15685,4168,Shane West,1314005306 +15685,4270,action packed,1312313637 +15685,4270,adventure,1312120547 +15685,4270,Brendan Fraser,1312313618 +15685,4270,comedy,1312120551 +15685,4270,spoof,1312313629 +15685,4299,Heath Ledger,1312121501 +15685,4299,medieval,1312121503 +15685,4308,quirky,1312060571 +15685,4367,action,1312120410 +15685,4367,adventure,1312120405 +15685,4367,Angelina Jolie,1312120403 +15685,4367,strong women,1312120420 +15685,4370,dystopia,1312102421 +15685,4499,con artists,1312301277 +15685,4499,Steve Martin,1312301279 +15685,4643,dystopia,1312119938 +15685,4643,post-apocalyptic,1312119934 +15685,4643,Tim Burton,1312119940 +15685,4692,Jodie Foster,1312314486 +15685,4720,twist ending,1312102816 +15685,4865,Johnny Depp,1312301040 +15685,4865,serial killer,1312301042 +15685,4867,coming of age,1313853412 +15685,4867,Drew Barrymore,1313853404 +15685,4867,drugs,1313853428 +15685,4867,Maggie Gyllenhaal,1313853452 +15685,4878,sci-fi,1312059789 +15685,4975,Cameron Diaz,1312316904 +15685,4975,fantasy,1312316903 +15685,4975,mindfuck,1312316926 +15685,4975,psychology,1312316921 +15685,4975,surreal,1312316911 +15685,4975,Tom Cruise,1312316915 +15685,4981,farce,1312315485 +15685,4981,He who would valiant be,1312315488 +15685,4981,John Cleese,1312315493 +15685,4994,1950s,1313853771 +15685,4994,amnesia,1313853793 +15685,4994,Jim Carrey,1313853754 +15685,5219,zombies,1312300929 +15685,5266,Jodie Foster,1312120313 +15685,5266,survival,1312120316 +15685,5312,crime,1312537978 +15685,5312,Ryan Gosling,1312537974 +15685,5312,sandra bullock,1312537976 +15685,5313,mummy,1312304471 +15685,5382,animal:orangutang,1312651542 +15685,5382,Clint Eastwood,1312651547 +15685,5382,motorcycle,1312651551 +15685,5463,dystopia,1312303395 +15685,5463,post-apocalyptic,1312303393 +15685,5505,Jennifer Aniston,1312303969 +15685,5505,Zooey Deschanel,1312303965 +15685,5611,Africa,1313854568 +15685,5611,Heath Ledger,1313854558 +15685,5618,animation,1312654205 +15685,5618,fairy tale,1312654212 +15685,5618,fantasy,1312654199 +15685,5618,hallucinatory,1312654203 +15685,5618,whimsical,1312654209 +15685,5679,Brian Cox,1314911913 +15685,5679,disturbing,1314904325 +15685,5679,fantasy,1314904329 +15685,5679,mystery,1314904332 +15685,5679,paranormal,1314904334 +15685,5679,thriller,1314904340 +15685,5882,Michael J. Fox,1312654629 +15685,5882,pirates,1312654622 +15685,5882,space,1312654624 +15685,5882,treasure hunt,1312654625 +15685,5903,dystopia,1312120925 +15685,5957,Hugh Grant,1312304220 +15685,5957,Sandra Bullock,1312304222 +15685,5992,nonlinear,1312301409 +15685,6297,Adapted from book,1312317077 +15685,6297,Shia LeBoeuf,1312317089 +15685,6323,psychology,1312121086 +15685,6323,twist ending,1312121089 +15685,6367,60s,1312536496 +15685,6367,Ewan McGregor,1312536485 +15685,6367,feminist,1312536500 +15685,6377,animation,1312652799 +15685,6377,underwater,1312652802 +15685,6427,classic,1312316338 +15685,6484,crime,1312651806 +15685,6484,Harrison Ford,1312651788 +15685,6484,Josh Hartnett,1312651801 +15685,6541,vampires,1312121743 +15685,6545,1930s,1313854008 +15685,6545,Bill Nighy,1313854073 +15685,6545,castle,1313854012 +15685,6545,coming of age,1313854014 +15685,6545,Dodie Smith,1313854017 +15685,6545,isle of man: filmed in,1313854125 +15685,6545,Romola Garai,1313854041 +15685,6545,Rose Byrne,1313854025 +15685,6545,Tara Fitzgerald,1313854089 +15685,6545,writers,1313854030 +15685,6550,espionage,1312651257 +15685,6550,John Malkovich,1312651264 +15685,6550,parody,1312651262 +15685,6550,Rowan Atkinson,1312651253 +15685,6564,Angelina Jolie,1312303036 +15685,6564,martial arts,1312303040 +15685,6709,Johnny Depp,1312302403 +15685,6754,vampires,1312300653 +15685,6773,French,1312653162 +15685,6773,no dialogue,1312653160 +15685,6773,quirky,1312653160 +15685,6773,stylized,1312653165 +15685,6773,whimsical,1312653163 +15685,6932,corruption,1312538100 +15685,6932,Hank Azaria,1312538093 +15685,6932,Hayden Christensen,1312538088 +15685,6932,hoax,1312538097 +15685,6932,true story,1312538110 +15685,6936,Will Ferrell,1312121578 +15685,6952,Psychological horror,1312305079 +15685,6952,psychology,1312305075 +15685,6952,Robert Downey Jr.,1312305082 +15685,7018,fantastic plot twister,1312538003 +15685,7018,Harrison Ford,1312538001 +15685,7103,mental hospital,1312537196 +15685,7103,mental illness,1312537188 +15685,7164,J.M. Barrie,1312314131 +15685,7164,Peter Pan,1312314137 +15685,7164,stylized,1312314140 +15685,7373,fantasy,1312120368 +15685,7380,Anne Hathaway,1312314242 +15685,7380,Cary Elwes,1312314263 +15685,7380,fairy tale,1312314229 +15685,7380,Hugh Dancy,1312314251 +15685,7445,action,1313855115 +15685,7445,Dakota Fanning,1313855117 +15685,7445,Denzel Washington,1313855110 +15685,7445,kidnapping,1313855121 +15685,7445,redemption,1313855130 +15685,7445,revenge,1313855131 +15685,7454,steampunk,1312301084 +15685,7454,vampires,1312301081 +15685,7458,Brad Pitt,1312120037 +15685,8014,bittersweet,1312654162 +15685,8014,character driven,1312654163 +15685,8014,episodic,1312654167 +15685,8183,Julie Walters,1312316392 +15685,8183,Michael Caine,1312316379 +15685,8361,apocalypse,1312317507 +15685,8361,catastrophe,1312317509 +15685,8361,climate change,1312317514 +15685,8361,Jake Gyllenhaal,1312317516 +15685,8361,Post apocalyptic,1312317522 +15685,8533,great ending,1312302040 +15685,8533,Romance,1312302055 +15685,8533,Ryan Gosling,1312302050 +15685,8640,clive owen,1312304371 +15685,8640,iouan gruffudd,1312304371 +15685,8640,kiera knightley,1312304371 +15685,8783,twist ending,1312121189 +15685,8865,Angelina Jolie,1312301518 +15685,8865,steampunk,1312301520 +15685,8874,black comedy,1312315375 +15685,8874,parody,1312060374 +15685,8874,Simon Pegg,1312315384 +15685,8874,spoof,1312315390 +15685,8874,zombies,1312060371 +15685,8950,Christian Bale,1314004824 +15685,8950,dark,1314004822 +15685,8950,paranoid,1314004836 +15685,8950,psychological,1314004840 +15685,8950,schizophrenia,1314004846 +15685,8950,stylized,1314004849 +15685,8950,twist ending,1314004851 +15685,8970,Johnny Depp,1312103103 +15685,8972,Nicolas Cage,1312121069 +15685,8984,Brad Pitt,1312120141 +15685,25923,author:Charles Dickens,1312538259 +15685,25923,imdb top 250,1312538267 +15685,26538,cloning,1312304851 +15685,27648,stephen fry,1312051223 +15685,27706,quirky,1312301062 +15685,27838,bullying taken too far,1312314904 +15685,27839,Naomi Watts,1314911800 +15685,27839,what was with the deer?,1314911833 +15685,27904,animation,1312301309 +15685,30825,Ben Stiller,1312121494 +15685,31696,Keanu Reeves,1312121414 +15685,32031,Robin Williams,1312304999 +15685,32584,Daniel Day-Lewis,1315856926 +15685,32584,fatherhood,1315857008 +15685,32584,island commune,1315857098 +15685,32584,Moving,1315856923 +15685,32584,sexuality,1315856984 +15685,33004,based on a book,1312120008 +15685,33004,sci-fi,1312120000 +15685,33679,Angelina Jolie,1312119967 +15685,34319,dystopia,1312121176 +15685,34405,dystopia,1312103114 +15685,34405,quirky,1312103116 +15685,37380,Karl Urban,1312317806 +15685,37380,monsters,1312317811 +15685,37380,Rosamund Pike,1312317787 +15685,37382,Amelie-esque color scheme,1312653259 +15685,37382,biography,1312653266 +15685,37382,Keira Knightley,1312653268 +15685,37382,true story,1312653285 +15685,37727,Jodie Foster,1312304953 +15685,37729,19th century,1312315934 +15685,37729,black comedy,1312315936 +15685,37729,claymation,1312315939 +15685,37729,Depp & Burton,1312315946 +15685,37729,Helena Bonham Carter,1312315948 +15685,37729,Johnny Depp,1312315942 +15685,38038,quirky,1312120559 +15685,40629,based on a book,1312301454 +15685,40629,Classic,1312301456 +15685,40629,Kiera Knightly,1312301468 +15685,40966,freedom of expression,1312314629 +15685,40966,johnny depp,1312314631 +15685,40966,Scandal period,1312314635 +15685,42197,dark comedy,1312536900 +15685,42197,hysterical in a quirky way,1312536902 +15685,42197,Maggie Smith,1312536908 +15685,42197,Patrick Swayze,1312536913 +15685,42197,Rowan Atkinson,1312536910 +15685,42197,Tamsin Egerton,1312536932 +15685,42728,Celtic legend,1313854761 +15685,42728,James Franco,1313854773 +15685,42728,love story,1313854777 +15685,42728,Myth,1313854781 +15685,42728,Sophia Myles,1313854816 +15685,42734,Anne Hathaway,1312653065 +15685,42734,fairy tale,1312653033 +15685,42734,little red riding hood,1312653034 +15685,42734,parody,1312653047 +15685,42738,vampires,1312303887 +15685,42738,werewolf,1312303889 +15685,43396,1960s,1313853549 +15685,43396,based on a true story,1313853537 +15685,43396,desert,1313853553 +15685,43396,indian motorcycle,1313853557 +15685,43396,motorcycle,1313853533 +15685,43396,new zealand,1313853559 +15685,43560,Colin Firth,1312314177 +15685,43560,comedy,1312314179 +15685,43560,Emma Thompson,1312314181 +15685,43560,fairy tale,1312314184 +15685,43836,Steve Martin,1312537457 +15685,44155,Eddie Izzard,1312121368 +15685,45208,adventure,1312652061 +15685,45208,road trip,1312652059 +15685,45208,Robin Williams,1312652052 +15685,45666,Jack Black,1312537348 +15685,45666,not funny,1312537356 +15685,45666,silly,1312537360 +15685,45720,fashion,1312121781 +15685,45730,fairy tale,1312316793 +15685,45730,far fetched,1312316810 +15685,45730,M. Night Shyamalan,1312316799 +15685,46322,1900s,1312654103 +15685,46322,blindness,1312654099 +15685,46322,Martial Arts,1312654096 +15685,46948,haunted house,1312652754 +15685,46967,Hugh Jackman,1312536780 +15685,46967,Scarlett Johansson,1312536786 +15685,46967,Woody Allen,1312536784 +15685,46972,Ben Stiller,1312302022 +15685,46972,Robin Williams,1312302024 +15685,47610,Edward Norton,1312119911 +15685,48082,quirky,1312303365 +15685,48150,ambiguous,1314362452 +15685,48150,confusing ending,1314362436 +15685,48150,surreal ending sequence,1314362372 +15685,48560,1970s,1312314506 +15685,48560,anxiety,1312314509 +15685,48560,black comedy,1312314513 +15685,48560,Evan Rachel Wood,1312314544 +15685,48560,gwyneth paltrow,1312314516 +15685,48560,quirky,1312314519 +15685,48560,weird,1312314525 +15685,48560,writer,1312314528 +15685,49649,cliche,1312314297 +15685,49649,dragons,1312314300 +15685,49649,fantasy,1312314303 +15685,49649,Jeremy Irons,1312314318 +15685,49649,Major dissapointment,1312314323 +15685,49649,some lines sounded funny instead of serious,1312314325 +15685,51077,Nicolas Cage,1312304889 +15685,51255,black comedy,1312315416 +15685,51255,british comedy,1312315418 +15685,51255,dystopia,1312315414 +15685,51255,parody,1312315428 +15685,51255,Simon Pegg,1312315409 +15685,51255,surreal,1312315430 +15685,53125,Johnny Depp,1312060951 +15685,53125,quirky,1312060948 +15685,53464,Ioan Gruffudd,1313920630 +15685,53894,documentary,1312302599 +15685,54259,adventure,1315849025 +15685,54259,author:Neil Gaiman,1315849027 +15685,54259,british,1312120535 +15685,54259,fairy tale,1315849031 +15685,54259,fantasy,1312120532 +15685,54259,pirates,1315849036 +15685,54259,whimsical,1315849041 +15685,54272,Hank Azaria,1312652901 +15685,55080,Jodie Foster,1313855060 +15685,55080,strong female lead,1313855077 +15685,55080,vigilante,1313855080 +15685,55232,Ali Larter,1312317649 +15685,55232,Milla Jovovich,1312317650 +15685,55232,Oded Fehr,1312317654 +15685,55232,post-apocalyptic,1312317656 +15685,55232,resident evil,1312317663 +15685,55232,zombies,1312317658 +15685,55274,Cate Blanchett,1313854424 +15685,55274,Clive Owen,1313854426 +15685,55274,Geoffrey Rush,1313854434 +15685,55274,Queen Elizabeth,1313854475 +15685,55274,Rhys Ifans,1313854443 +15685,55274,woman in armour,1313854455 +15685,56171,steampunk,1312303057 +15685,56174,post-apocalyptic,1312102388 +15685,56757,dark comedy,1312121330 +15685,56757,Johnny Depp,1312121328 +15685,56757,tim burton,1312121340 +15685,56775,Nicolas Cage,1312302904 +15685,56775,treasure hunt,1312302907 +15685,57640,quirky,1312300990 +15685,57910,comedy,1315521651 +15685,57910,feminism,1315521658 +15685,57910,morality,1315521684 +15685,57910,revenge,1315521667 +15685,57910,vagina dentata,1315521660 +15685,58105,childish,1312314092 +15685,58105,fantasy,1312314072 +15685,58105,haunted house,1312314095 +15685,58154,based on a book,1313854297 +15685,58154,BBC Films,1313854326 +15685,58154,Eric Bana,1313854305 +15685,58154,Henry VIII and Anne Boleyn,1313854322 +15685,58154,historical,1313854308 +15685,58154,Natalie Portman,1313854313 +15685,58154,Scarlett Johansson,1313854310 +15685,58162,british,1312536685 +15685,58162,Hank Azaria,1312536682 +15685,58162,Simon Pegg,1312536680 +15685,58972,Abigail Breslin,1312654322 +15685,58972,Gerard Butler,1312654324 +15685,58972,island,1312654328 +15685,58972,Jodie Foster,1312654326 +15685,59256,Ewan McGregor,1312537917 +15685,59256,Hugh Jackman,1312537908 +15685,59256,twist,1312537925 +15685,59418,mental illness,1313852821 +15685,59418,true story,1313852843 +15685,59604,based on a true story,1313852741 +15685,59604,family relationships,1313852745 +15685,59604,horror,1313852750 +15685,59604,mental illness,1313852752 +15685,60037,survival,1312304805 +15685,60037,Zooey Deschanel,1312304803 +15685,60040,Edward Norton,1312121661 +15685,60072,Angelina Jolie,1312300525 +15685,60072,James Mcvoy,1312300546 +15685,60514,Brendan Fraser,1312313692 +15685,60514,Jules Verne,1312313698 +15685,60684,dystopia,1312102852 +15685,60816,author:Terry Pratchett,1312313853 +15685,60816,discworld,1312313856 +15685,60816,nerdy,1312313869 +15685,60816,Tim Curry,1312313860 +15685,60818,author:Terry Pratchett,1312313888 +15685,60818,David Jason,1312313927 +15685,60818,discworld,1312313890 +15685,60818,fantasy,1312313896 +15685,60818,Marc Warren,1312313912 +15685,61132,parody,1312120355 +15685,61132,satire,1312120357 +15685,61248,Jason Statham,1312317892 +15685,62113,Kirsten Dunst,1312536732 +15685,62113,Megan Fox,1312536727 +15685,62113,Simon Pegg,1312536722 +15685,62293,18th century,1313854367 +15685,62293,BBC Films,1313854369 +15685,62293,British,1313854371 +15685,62293,Keira Knightley,1313854373 +15685,62293,romance,1313854375 +15685,62394,Mark Wahlberg,1312317851 +15685,63072,dystopia,1312302298 +15685,63072,post-apocalyptic,1312302301 +15685,63992,vampires,1312301092 +15685,64285,Aardman,1312315889 +15685,64285,british comedy,1312315894 +15685,64285,Wallace & Gromit,1312315898 +15685,64969,Jim carrey,1312302199 +15685,64969,Zooey Deschanel,1312302202 +15685,65682,Bill Nighy,1312313573 +15685,65682,crappy prequel,1312313571 +15685,65682,gothic,1312313565 +15685,65682,vampires,1312313576 +15685,65682,werewolves,1312313579 +15685,65685,Brendan Fraser,1312313816 +15685,65685,fantasy world,1312313826 +15685,65685,Paul Bettany,1312313824 +15685,65982,fantasy,1312317357 +15685,65982,norse,1312317362 +15685,65982,space,1312317365 +15685,65982,vikings,1312317367 +15685,66097,alternate reality,1312315967 +15685,66097,claymation,1312315969 +15685,66097,creepy,1312315973 +15685,66097,dark fairy tale,1312315976 +15685,66097,dystopia,1312315985 +15685,66097,Surreal,1312315987 +15685,66097,Tim Burton,1312315991 +15685,68319,action,1313920563 +15685,68319,funny,1313920559 +15685,68319,hugh jackman,1313920543 +15685,68319,Liev Shreiber,1313920572 +15685,68319,sci-fi,1313920546 +15685,68358,sci-fi,1312102679 +15685,68358,time travel,1312102674 +15685,68793,Ben Stiller,1312537535 +15685,68793,black and white characters interact with colour world,1312537572 +15685,68793,Hank Azaria,1312537548 +15685,68793,history,1312537566 +15685,68793,Owen Wilson,1312537552 +15685,68793,Ricky Gervais,1312537556 +15685,68793,Robin Williams,1312537559 +15685,68793,Steve Coogan,1312537575 +15685,68793,Stiller&Wilson,1312537563 +15685,68963,1920s,1312536953 +15685,68963,Ben Barnes,1312536956 +15685,68963,Colin Firth,1312536959 +15685,68963,Kirstin Scott Thomas,1312536964 +15685,68963,Unexpected Ending,1312536973 +15685,69140,BBC produced,1312314755 +15685,69140,cannibalism,1312314757 +15685,69140,serial killer,1312314774 +15685,69640,Johnny Depp,1312303465 +15685,69951,fantasy,1312303514 +15685,69951,Johnny Depp,1312303509 +15685,69951,surreal,1312303511 +15685,70159,ambiance,1314896748 +15685,70159,orphans,1314896741 +15685,70159,surprise ending,1314896737 +15685,70305,boring,1312317335 +15685,71535,Abigail Breslin,1312972441 +15685,71535,Bill Murray,1312972408 +15685,71535,dark comedy,1312972413 +15685,71535,gore,1312972426 +15685,71535,post-apocalyptic,1312972414 +15685,71535,zombies,1312972418 +15685,72165,John C Reilly,1312987277 +15685,72165,Josh Hutcherson,1312987247 +15685,72165,Patrick Fugit,1312987132 +15685,72165,Salma Hayek,1312987149 +15685,72165,vampires,1312987105 +15685,72489,martial arts,1312654079 +15685,72489,predictable,1312654070 +15685,72489,stylized violence,1312654056 +15685,74456,creepy kid,1315760423 +15685,74456,Matt Dallas,1315760654 +15685,74456,serial killer,1315760462 +15685,74456,supernatural,1315760411 +15685,74458,insanity,1313953271 +15685,74458,island,1313953283 +15685,74458,Leonardo DiCaprio,1313953287 +15685,74458,Mark Ruffalo,1313953289 +15685,74458,Mental Institution,1313953320 +15685,74458,plot twist,1313953291 +15685,74458,psychological,1313953295 +15685,74458,twist ending,1313953305 +15685,74530,childish,1312313738 +15685,74530,everything located in the USA,1312313740 +15685,74530,fantasy,1312313745 +15685,74530,Greek mythology,1312313747 +15685,74530,Pierce Brosnan,1312313726 +15685,74530,Sean Bean,1312313787 +15685,74685,survival,1312972362 +15685,74685,virus,1312972359 +15685,74685,zombies,1312972357 +15685,74789,Anne Hathaway,1312316631 +15685,74789,Depp & Burton,1312316639 +15685,74789,Helena Bonham Carter,1312316643 +15685,74789,talking animals,1312316645 +15685,74789,visually appealing,1312316647 +15685,74789,weird,1312316654 +15685,78467,John Malkovich,1312653994 +15685,78467,Megan Fox,1312653998 +15685,78467,poor plot,1312653991 +15685,78469,action,1313920872 +15685,78469,Bradley Cooper,1313920877 +15685,78469,clever plot,1313920883 +15685,78469,Funny,1313920884 +15685,78469,Liam Neeson,1313920842 +15685,78637,Mike Myers,1312654723 +15685,78637,Pied Piper,1312654713 +15685,80363,clones,1312317708 +15685,80363,Milla Jovovich,1312317712 +15685,80363,post-apocalyptic,1312317714 +15685,80363,resident evil,1312317717 +15685,80363,zombies,1312317721 +15685,84395,Anthony Hopkins,1315515123 +15685,84395,doubted faith,1315515150 +15685,84395,exorcism,1315515126 +15685,84395,suspenseful,1315515129 +15685,84696,Andy Serkis,1312313201 +15685,84696,Bill Bailey,1312313242 +15685,84696,serial killer,1312313242 +15685,84696,Simon Pegg,1312313169 +15685,85510,abbie cornish,1312980191 +15685,85510,Jena Malone,1312980147 +15685,85510,lobotomy,1312979977 +15685,85510,martial arts,1312979982 +15685,85510,setting:asylum,1312980207 +15685,85510,setting:brothel,1312980205 +15685,85510,soundtrack,1312979987 +15685,85510,stylized,1312980209 +15685,85510,Surreal,1312979984 +15685,86190,abandoned amusement park,1315506251 +15685,86190,Cate Blanchett,1315506258 +15685,86190,Saoirse Ronan,1315506260 +15685,86190,strong female lead,1315506270 +15685,86190,surrealism,1315506272 +15685,87549,driven insane,1315775400 +15685,87549,hiking,1315775319 +15685,87549,murder,1315775390 +15685,87549,mysterious dissapearance,1315775338 +15685,87549,No Explanation,1315775373 +15685,87549,phantom music,1315775348 +15685,87549,suicide,1315775405 +15685,87549,trail through the woods,1315775424 +15685,87549,wizard of oz,1315775362 +15685,89343,FBI,1315766607 +15685,89343,kyle gallner,1315766798 +15685,89343,RELIGIOUS ZEALOTRY,1315766588 +15685,89343,shoot out,1315766599 +15686,107,treasure,1368457579 +15686,353,dark hero,1368457698 +15686,380,arnold,1368457739 +15686,485,arnold,1368457739 +15686,589,arnold,1368457739 +15686,1240,arnold,1368457739 +15686,1291,spielberg,1368459380 +15686,1291,treasure,1368457579 +15686,1387,spielberg,1368459380 +15686,1391,mars,1368457664 +15686,1894,stranded,1368457642 +15686,2022,christian,1368457774 +15686,2022,jesus,1368457559 +15686,2028,spielberg,1368459380 +15686,2115,spielberg,1368459380 +15686,2115,treasure,1368457579 +15686,2617,treasure,1368457579 +15686,2858,bittersweet,1338774411 +15686,2858,black comedy,1338774408 +15686,2858,comedy,1338774406 +15686,2858,reflective,1338774394 +15686,2858,satirical,1338774390 +15686,2858,surrealism,1338774389 +15686,2858,thought-provoking,1338774384 +15686,2916,arnold,1368457739 +15686,2959,atmospheric,1338774275 +15686,2959,disturbing,1338774236 +15686,2959,psychological,1338774282 +15686,2959,surreal,1338774299 +15686,2959,thought-provoking,1338774241 +15686,2959,twist ending,1338774239 +15686,2959,violence,1338774289 +15686,3996,dragon,1368459267 +15686,5445,spielberg,1368459380 +15686,6377,short-term memory loss,1368459347 +15686,6539,treasure,1368457579 +15686,7318,jesus,1368457559 +15686,7361,short-term memory loss,1368459347 +15686,7386,christian,1368457774 +15686,8366,christian,1368457774 +15686,8529,stranded,1368457642 +15686,8622,conspiracy theory,1368459251 +15686,63082,bollywood,1368457530 +15686,78088,frustrating to watch,1407160586 +15686,78088,wasted potential,1407160581 +15686,91500,absorbing,1338773720 +15686,91500,drama,1338773672 +15686,91500,Happy ending,1338773710 +15686,91500,intense,1338773662 +15686,91500,love,1338773687 +15686,91500,thriller,1338773678 +15686,91500,visually stunning,1338773698 +15702,110,Biography,1280279917 +15702,110,classic,1280279915 +15702,110,medieval,1280279907 +15702,110,sword fight,1280279912 +15702,110,war,1280279910 +15702,539,New York City,1280359112 +15702,539,Tom Hanks,1280359109 +15702,555,dialogue,1280354311 +15702,555,Hans Zimmer,1280354324 +15702,1090,Oliver Stone,1280280228 +15702,1090,overrated,1280280225 +15702,1237,existentialism,1280277945 +15702,1237,Ingmar Bergman,1280277947 +15702,2313,black and white,1280423690 +15702,2313,David Lynch,1280423685 +15702,2313,depressing,1280423687 +15702,2329,Edward Norton,1280277353 +15702,2571,philosophical,1280277056 +15702,2671,British,1280359154 +15702,2671,Hugh Grant,1280359149 +15702,3263,sports,1280354403 +15702,3481,book by Nick Hornby,1280276750 +15702,3481,Jack Black,1280276756 +15702,3481,John Cusack,1280276762 +15702,3481,Nick Hornby,1280276754 +15702,3578,history,1280279887 +15702,3578,Russell Crowe,1280279884 +15702,3996,Kick-Butt Women,1280358945 +15702,3996,Kung Fu,1280358953 +15702,3996,martial arts,1280358951 +15702,5377,british comedy,1280280745 +15702,5377,Hugh Grant,1280280740 +15702,5915,football,1280279620 +15702,5915,soccer,1280279614 +15702,5915,Sylvester Stallone,1280279613 +15702,6874,Quentin Tarantino,1280279372 +15702,6947,historical,1280799749 +15702,6947,Russell Crowe,1280799753 +15702,7318,brutal,1281055096 +15702,7318,Monica Bellucci,1281055099 +15702,7318,overrated,1281055158 +15702,7318,torture,1281055090 +15702,8784,Great Soundtrack,1280276794 +15702,8784,Natalie Portman,1280276806 +15702,8874,Simon Pegg,1281124030 +15702,8949,dark comedy,1280276823 +15702,8949,Melancholic,1280276833 +15702,8949,Paul Giamatti,1280276826 +15702,26163,Bob Dylan,1280360205 +15702,31410,Biography,1280279064 +15702,31410,historical,1280279056 +15702,34437,Bill Murray,1280359398 +15702,34437,bittersweet,1280359400 +15702,37741,biopic,1280277442 +15702,37741,eccentricity,1280277436 +15702,37741,Philip Seymour Hoffman,1280277430 +15702,37741,writers,1280277433 +15702,38304,character based on real person:Bob Dylan,1280360225 +15702,38304,Martin Scorsese,1280360217 +15702,40819,biography,1280276510 +15702,40819,Joaquin Phoenix,1280276515 +15702,47423,Ryan Gosling,1280277253 +15702,47894,Cillian Murphy,1280279982 +15702,47894,civil war,1280279980 +15702,47894,ireland,1280279991 +15702,48385,irreverent,1280276926 +15702,48385,Male nudity,1280276910 +15702,48385,mockumentary,1280276919 +15702,48385,Sacha Baron Cohen,1280276918 +15702,48385,satire,1280276914 +15702,48394,atmospheric,1280277633 +15702,48394,fantasy,1280277636 +15702,48394,left wing,1280277662 +15702,48394,political,1280277651 +15702,48780,atmospheric,1280276562 +15702,48780,Christian Bale,1280276558 +15702,48780,Christoper Nolan,1280276667 +15702,48780,magic,1280276682 +15702,48780,twist ending,1280276555 +15702,50274,intelligent,1280280327 +15702,50274,Peter O'Toole,1280280319 +15702,50274,witty,1280280335 +15702,53894,Cuba,1280279520 +15702,53894,documentary,1280279541 +15702,53894,Michael Moore,1280279537 +15702,55280,Emily Mortimer,1280277293 +15702,55280,Ryan Gosling,1280277286 +15702,55765,based on a true story,1280358447 +15702,55765,Denzel Washington,1280358456 +15702,55765,Josh Brolin,1280358452 +15702,55765,Russell Crowe,1280358450 +15702,57669,dark comedy,1282608102 +15702,57669,irish accent,1282608100 +15702,59126,Documentary,1280278742 +15702,59126,intellectual,1280278736 +15702,59126,Larry Charles,1280278757 +15702,59126,thought-provoking,1280278739 +15702,62577,Greg Kinnear,1280799910 +15702,62644,social experiment,1280277829 +15702,64499,Benicio Del Toro,1280280063 +15702,64499,epic,1280280070 +15702,64501,too long,1280280092 +15702,64620,boring,1280279226 +15702,64620,politics,1280279193 +15702,65126,Sam Rockwell,1280278126 +15702,67508,nothing happens,1280279162 +15702,67734,Jesse Eisenberg,1280965489 +15702,67734,Kristen Stewart,1280965492 +15702,67997,based on a TV show,1280279822 +15702,67997,cynical,1280279809 +15702,67997,intelligent,1280279817 +15702,67997,politics,1280279788 +15702,67997,satire,1280279794 +15702,67997,swearing,1280279811 +15702,68954,children,1280278957 +15702,68954,Pixar,1280278933 +15702,69844,fantasy,1280278027 +15702,69844,Helena Bonham Carter,1280278029 +15702,71464,coen brothers,1280359376 +15702,71535,Bill Murray,1281124046 +15702,71535,Jesse Eisenberg,1281124044 +15702,72011,George Clooney,1280277153 +15702,72011,Jason Bateman,1280277150 +15702,72011,Jason Reitman,1280277167 +15702,72011,witty,1280277155 +15702,72998,Sam Worthington,1280281081 +15702,72998,Sigourney Weaver,1280281076 +15702,73101,Eric Cantona,1280875137 +15702,73101,Ken Loach,1280875138 +15702,74545,espionage,1280799680 +15702,74545,Kim Cattrall,1280799667 +15702,76077,John Cusack,1280359556 +15711,5064,Amazing Cinematography,1440906160 +15711,5064,revenge,1440906164 +15718,260,Carrie Fisher,1439844036 +15718,260,George Lucas,1439844009 +15718,260,Harrison Ford,1439844016 +15718,260,Mark Hamill,1439844023 +15718,260,Science Fiction,1439844048 +15722,4226,confusing,1171404236 +15722,4226,thought provoking,1171404244 +15722,42725,Funniest Movies,1171404251 +15722,42725,video game testers,1171404271 +15741,106642,time travel,1432968024 +15770,260,cliche,1430576325 +15770,260,drama,1430576325 +15770,260,scifi,1430576325 +15774,260,genre defining,1439775929 +15774,260,kung fu,1439775889 +15803,6564,Angelina Jolie,1225640846 +15809,112515,atmospheric,1424793929 +15809,112515,dark,1424793887 +15809,112515,monster,1424793913 +15809,114180,action,1424101372 +15809,114180,exciting,1424101398 +15809,114180,horror,1424101376 +15809,114180,survival,1424101368 +15809,115617,superhero,1424101426 +15809,115664,day of the dead,1424560006 +15809,115664,family,1424560006 +15809,115664,romance,1424560006 +15809,117887,family,1423818865 +15809,117887,slapstick,1423818865 +15809,117887,talking animals,1423818865 +15809,120825,40's,1424650659 +15809,120825,creepy,1424650686 +15809,120825,ghost,1424650674 +15809,120825,horror,1424650652 +15809,120825,scary,1424650690 +15809,120825,war,1424650655 +15814,260,future,1440599876 +15814,260,space,1440599866 +15819,1619,dalai lama,1391291801 +15819,1619,great cinematography,1391291751 +15819,1619,Tibet,1391291723 +15819,1730,biography,1391312047 +15819,1730,Buddhism,1391312025 +15819,1730,cinematography,1391312013 +15819,1730,Dalai Lama,1391312018 +15819,1730,scorcese,1391312030 +15819,1730,Tibet,1391312005 +15819,4011,dark comedy,1422239789 +15819,52606,dark comedy,1421886802 +15819,52606,Mysterious ending,1421886861 +15819,52606,Simon Pegg,1421886814 +15819,52606,twists,1421886849 +15819,59547,comedy,1300143393 +15819,59547,Matthew Perry,1300143614 +15819,59547,true story,1300143408 +15819,64986,Matthew Perry,1300143582 +15819,68180,Dervish,1401725879 +15819,68180,Desert,1401725787 +15819,68180,Mysticism,1401725757 +15819,68180,Sufism,1401725769 +15819,76111,Asghar Farhadi,1327169964 +15819,76111,drowning,1327170086 +15819,76111,Iran,1327169960 +15819,76111,lies,1327169981 +15819,86833,female driven comedy,1326970389 +15819,86833,poop humor,1326970369 +15819,86833,unlikeable characters,1326970381 +15819,89759,abortion,1327169707 +15819,89759,Asghar Farhadi,1327169574 +15819,89759,divorce,1327169667 +15819,89759,husband-wife relationship,1327170000 +15819,89759,Iran,1327169581 +15819,89759,lies,1327169571 +15819,102753,Asghar Farhadi,1419191157 +15819,102753,realistic portrayal,1419191170 +15819,107619,cheating husband,1421469571 +15819,107619,new love,1421469571 +15819,107619,peyman moaadi,1421469571 +15819,109374,cinematography,1398261076 +15819,109374,Edward Norton,1398261093 +15819,109374,funny,1398261101 +15819,109374,quirky,1398261097 +15819,109374,visually appealing,1398261072 +15819,109487,Anne Hathaway,1418188366 +15819,109487,Christopher Nolan,1418188344 +15819,109487,relativity,1418188349 +15819,109487,space,1418188360 +15819,109487,time-travel,1418188357 +15819,109487,wormhole,1418188355 +15819,111360,Apotheosis,1442802972 +15819,114184,iranian actor,1413758271 +15819,114184,platonic love,1413758398 +15819,114184,quiet,1413758277 +15819,114184,soundtrack,1413758287 +15821,5617,sexuality,1153609761 +15821,34437,comedy,1138385011 +15821,35836,comedy,1138384971 +15821,39183,Gay Cowboy,1142970599 +15821,40583,Political,1138384816 +15821,41569,monster,1138384914 +15857,76,horror,1413401106 +15857,76,post apocalyptic,1413401170 +15857,105,adultery,1413404226 +15857,105,affair,1413404201 +15857,110,drama,1413310143 +15857,110,historical,1413310132 +15857,110,Medieval,1413310129 +15857,110,mel gibson,1413310127 +15857,110,Nudity (Topless),1413310137 +15857,110,Scotland,1413310134 +15857,150,astronauts,1430106741 +15857,150,based on a true story,1430106730 +15857,150,catastrophe,1430106785 +15857,150,disaster,1430106772 +15857,150,drama,1430106776 +15857,150,dramatic,1430106766 +15857,150,Gary Sinise,1430106753 +15857,150,historical,1430106778 +15857,150,History,1430106773 +15857,150,Kevin Bacon,1430106751 +15857,150,moon,1430106770 +15857,150,NASA,1430106736 +15857,150,space,1430106763 +15857,150,space program,1430106731 +15857,150,stranded,1430106747 +15857,150,suspense,1430106748 +15857,150,tense,1430106781 +15857,150,Tom Hanks,1430106729 +15857,150,true story,1430106734 +15857,153,Batman,1416815012 +15857,153,Jim Carrey,1416815029 +15857,153,superhero,1416815034 +15857,193,Nudity (Full Frontal),1413318920 +15857,193,raunchy,1413318918 +15857,193,sexual,1413318915 +15857,193,strippers,1413318927 +15857,318,adapted from:book,1413310742 +15857,318,atmospheric,1429140420 +15857,318,based on a book,1433784817 +15857,318,classic,1413310715 +15857,318,drama,1413310759 +15857,318,friendship,1413310711 +15857,318,great acting,1413310731 +15857,318,imdb top 250,1429140417 +15857,318,inspirational,1429140414 +15857,318,justice,1429140422 +15857,318,Morgan Freeman,1429140428 +15857,318,oscar (best picture),1429140433 +15857,318,powerful ending,1413310736 +15857,318,prison,1429140412 +15857,318,prison escape,1413310708 +15857,318,redemption,1429140436 +15857,318,reflective,1413310717 +15857,318,Stephen King,1429140409 +15857,318,thought-provoking,1413310702 +15857,318,Tim Robbins,1429140425 +15857,318,twist ending,1413310705 +15857,337,bittersweet,1433785169 +15857,337,brothers,1433785053 +15857,337,coming of age,1433785010 +15857,337,depressing,1433785166 +15857,337,disability,1433785079 +15857,337,dysfunctional family,1433785081 +15857,337,Johnny Depp,1433784998 +15857,337,Leonardo DiCaprio,1433785001 +15857,337,mental disability,1433785076 +15857,337,mental illness,1433785171 +15857,337,obesity,1433785013 +15857,337,quirky,1433785007 +15857,337,siblings,1433785083 +15857,337,small town,1433785165 +15857,337,whimsical,1433785049 +15857,356,American history,1440745022 +15857,356,based on a book,1413403570 +15857,356,bittersweet,1413403558 +15857,356,classic,1413403560 +15857,356,comedy,1440744992 +15857,356,drama,1413403583 +15857,356,emotional,1413403580 +15857,356,feel-good,1440745061 +15857,356,Funny,1440745000 +15857,356,good acting,1440745033 +15857,356,great acting,1440745031 +15857,356,heartwarming,1440745006 +15857,356,historical,1440744994 +15857,356,history,1440744996 +15857,356,inspirational,1413403563 +15857,356,inspiring,1440745057 +15857,356,love,1440745045 +15857,356,Oscar (Best Effects - Visual Effects),1440745025 +15857,356,Oscar (Best Picture),1440745002 +15857,356,psychology,1440745050 +15857,356,quirky,1413403585 +15857,356,romance,1440744998 +15857,356,running,1440745043 +15857,356,Sexuality,1413403575 +15857,356,shrimp,1440745021 +15857,356,tom hanks,1413403556 +15857,356,touching,1440745005 +15857,356,uplifting,1440745047 +15857,356,Vietnam,1440745008 +15857,356,vietnam war,1440744989 +15857,368,con men,1413403837 +15857,508,gay,1416814295 +15857,508,gay lead character,1416814300 +15857,508,homosexuality,1416814298 +15857,515,Anthony Hopkins,1431584402 +15857,515,Emma Thompson,1431584395 +15857,524,football,1444839981 +15857,524,inspirational,1444839983 +15857,524,sports,1444839985 +15857,527,amazing photography,1413351663 +15857,527,atmospheric,1429140127 +15857,527,based on a book,1429140105 +15857,527,based on a true story,1413351726 +15857,527,based on book,1413351668 +15857,527,biography,1429140125 +15857,527,black and white,1413351692 +15857,527,classic,1413351661 +15857,527,disturbing,1413351725 +15857,527,drama,1429140098 +15857,527,historical,1429140116 +15857,527,history,1429140122 +15857,527,holocaust,1413351735 +15857,527,imdb top 250,1429140111 +15857,527,jews,1413351724 +15857,527,Liam Neeson,1429140078 +15857,527,Nazis,1429140114 +15857,527,Oscar (Best Cinematography),1429140130 +15857,527,Oscar (Best Directing),1429140109 +15857,527,Oscar (Best Picture),1429140120 +15857,527,Steven Spielberg,1413351689 +15857,527,thought-provoking,1413351660 +15857,527,true story,1429140117 +15857,527,war,1429140103 +15857,527,World War II,1429140074 +15857,527,WWII,1413351669 +15857,539,Bill Pullman,1430106972 +15857,539,chick flick,1430106968 +15857,539,Comedy,1430106973 +15857,539,destiny,1430106977 +15857,539,father-son relationship,1430106982 +15857,539,Meg Ryan,1430106967 +15857,539,New York City,1430106979 +15857,539,Romance,1430106970 +15857,539,romantic comedy,1430106980 +15857,539,single father,1430106984 +15857,539,Tom Hanks,1430106964 +15857,592,dark,1416814714 +15857,592,dark hero,1416814718 +15857,608,based on a true story,1441600235 +15857,608,black comedy,1441600259 +15857,608,Coen Brothers,1441600263 +15857,608,crime,1441600266 +15857,608,CRIME GONE AWRY,1441600250 +15857,608,dark comedy,1441600260 +15857,608,dark humor,1441600226 +15857,608,Frances McDormand,1441600234 +15857,608,funny,1441600219 +15857,608,hostage,1441600228 +15857,608,KIDNAPPING,1441600239 +15857,608,Minnesota,1441600244 +15857,608,murder,1441600252 +15857,608,police,1441600224 +15857,608,quirky,1441600257 +15857,608,Steve Buscemi,1441600237 +15857,608,strong female,1441600242 +15857,608,violence,1441600216 +15857,608,violent,1441600246 +15857,608,William H. Macy,1441600232 +15857,608,witty,1441600255 +15857,608,Wood chipper,1441756386 +15857,733,Alcatraz,1429137963 +15857,733,biological warfare,1429137969 +15857,733,good action,1429137982 +15857,733,Sean Connery,1429137960 +15857,733,Terrorism,1429137966 +15857,733,thriller,1429137980 +15857,780,alien invasion,1413311871 +15857,780,Area 51,1413311885 +15857,780,disaster,1413311880 +15857,780,end of the world,1413311876 +15857,780,will smith,1413311873 +15857,802,genius,1430106936 +15857,802,John Travolta,1430106944 +15857,802,pretentious,1430106940 +15857,1010,cars,1433272068 +15857,1042,tom hanks,1430764300 +15857,1073,chocolate,1420353868 +15857,1073,Gene Wilder,1420353866 +15857,1073,imagination,1420353871 +15857,1090,horrors of war,1414013691 +15857,1090,Vietnam War,1414013698 +15857,1092,Erotic,1437778704 +15857,1092,Erotic Thriller,1413229033 +15857,1092,Michael Douglas,1437778722 +15857,1092,Notable Nudity,1413229029 +15857,1092,Nudity (Topless - Notable),1413229009 +15857,1092,San Francisco,1437778713 +15857,1092,Sex,1437778709 +15857,1092,sex scenes,1437778706 +15857,1092,Sexualized violence,1413229012 +15857,1092,Sharon Stone,1437778720 +15857,1092,suspense,1437778718 +15857,1092,thriller,1437778715 +15857,1101,aviation,1439621923 +15857,1101,military,1439621949 +15857,1101,Navy,1439621948 +15857,1101,Oscar (Best Music - Original Song),1439621944 +15857,1101,Oscar Winner,1439621951 +15857,1101,so bad it's good,1439621941 +15857,1101,Tom Cruise,1439621931 +15857,1101,Val Kilmer,1439621933 +15857,1120,pornography,1431753890 +15857,1203,cinematography,1413311295 +15857,1203,classic,1436286860 +15857,1203,confrontational,1413311297 +15857,1203,courtroom,1436286917 +15857,1203,courtroom drama,1413311280 +15857,1203,crime,1436286922 +15857,1203,ensemble cast,1436286884 +15857,1203,good dialogue,1413311277 +15857,1203,great acting,1436286926 +15857,1203,gritty,1413311289 +15857,1203,group psychology,1413311292 +15857,1203,Henry Fonda,1436286924 +15857,1203,imdb top 250,1436286881 +15857,1203,justice,1436286897 +15857,1203,low budget,1436286919 +15857,1203,racism,1436286890 +15857,1203,social commentary,1413311275 +15857,1203,thought-provoking,1413311283 +15857,1204,atmospheric,1427141300 +15857,1204,Biography,1427141335 +15857,1204,cinematography,1427141330 +15857,1204,desert,1427141315 +15857,1204,epic,1427141334 +15857,1204,History,1427141332 +15857,1204,Middle East,1427141302 +15857,1233,Best of Rotten Tomatoes: All Time,1437779339 +15857,1233,classic,1437779307 +15857,1233,claustrophobic,1437779305 +15857,1233,German,1437779308 +15857,1233,grim,1437779346 +15857,1233,gritty,1437779311 +15857,1233,long,1437779318 +15857,1233,Nazis,1437779344 +15857,1233,ocean,1437779334 +15857,1233,realistic,1437779336 +15857,1233,submarine,1437779301 +15857,1233,tense,1437779310 +15857,1233,thought-provoking,1437779323 +15857,1233,too long,1437779332 +15857,1233,U-boat,1437779313 +15857,1233,underwater,1437779337 +15857,1233,war,1437779320 +15857,1233,World War II,1437779304 +15857,1233,WWII,1437779341 +15857,1234,classic,1422291454 +15857,1234,con men,1422291418 +15857,1234,great soundtrack,1422291464 +15857,1234,heist,1422291433 +15857,1234,Paul Newman,1422291414 +15857,1234,poker,1422291488 +15857,1234,Robert Redford,1422291425 +15857,1234,surprise ending,1422291423 +15857,1234,twist ending,1422291426 +15857,1237,afterlife,1429425713 +15857,1237,atmospheric,1429425696 +15857,1237,black and white,1429425687 +15857,1237,cerebral,1429425718 +15857,1237,chess,1429425684 +15857,1237,death,1429425698 +15857,1237,dreamlike,1429425691 +15857,1237,existentialism,1429425702 +15857,1237,medieval,1429425694 +15857,1237,reflective,1429425719 +15857,1237,religion,1429425704 +15857,1246,Drama,1413236528 +15857,1246,philosophy,1413236519 +15857,1246,Robin Williams,1413236521 +15857,1250,classic,1437779254 +15857,1250,Oscar (Best Actor),1437779289 +15857,1250,Oscar (Best Picture),1437779252 +15857,1250,war,1437779290 +15857,1250,World War II,1437779250 +15857,1262,classic,1437779234 +15857,1262,concentration camp,1437779243 +15857,1262,ensemble cast,1437779223 +15857,1262,forceful,1437779241 +15857,1262,historical,1437779233 +15857,1262,motorcycle,1437779240 +15857,1262,POWs,1437779228 +15857,1262,prison break,1437779229 +15857,1262,prison escape,1437779227 +15857,1262,Steve McQueen,1437779231 +15857,1262,true story,1437779225 +15857,1262,World War II,1437779221 +15857,1262,WWII,1437779236 +15857,1518,Jonathan Mostow,1441600518 +15857,1518,thriller,1441600524 +15857,1580,conspiracy theory,1413311835 +15857,1580,Will Smith,1413311831 +15857,1608,action,1429137996 +15857,1608,aviation,1429138009 +15857,1608,flight,1429138006 +15857,1608,terrorism,1429138004 +15857,1619,based on a book,1431753123 +15857,1619,Biography,1431753172 +15857,1619,Brad Pitt,1431753119 +15857,1619,Buddhism,1431972326 +15857,1619,China,1431972323 +15857,1619,Eastern philosophy,1431972329 +15857,1619,great cinematography,1431972349 +15857,1619,mountain climbing,1431753164 +15857,1619,mountains,1431972350 +15857,1619,scenic,1431972331 +15857,1619,Tibet,1431753115 +15857,1619,true story,1431753119 +15857,1645,antichrist,1413228196 +15857,1645,cheating husband,1437778787 +15857,1645,Christianity,1437778797 +15857,1645,courtroom,1413228192 +15857,1645,deal with the devil,1437778804 +15857,1645,demons,1437778800 +15857,1645,devil,1413228173 +15857,1645,Nudity (Full Frontal),1413228170 +15857,1645,psychological,1437778784 +15857,1645,Religion,1437778793 +15857,1645,satan,1437778791 +15857,1645,thought-provoking,1413228187 +15857,1876,apocalypse,1450719932 +15857,1876,astronomy,1450719936 +15857,1876,catastrophe,1450719938 +15857,1876,disaster,1450719940 +15857,1876,natural disaster,1450719933 +15857,1876,science,1450719942 +15857,1917,apocalypse,1413311914 +15857,1917,Bruce Willis,1413312584 +15857,1917,end of the world,1413311916 +15857,1917,space,1413311912 +15857,1923,Ben Stiller,1437778642 +15857,1923,Cameron Diaz,1437778645 +15857,1923,comedy,1413227935 +15857,1923,crude humor,1413227938 +15857,1923,fun,1437778647 +15857,1923,goofy,1437778649 +15857,1923,hilarious,1437778651 +15857,1923,raunchy,1437778653 +15857,1923,sexual,1413318886 +15857,1954,American values,1450208859 +15857,1954,bittersweet,1450208869 +15857,1954,boxing,1450208844 +15857,1954,classic,1450208866 +15857,1954,competitive sport,1450208874 +15857,1954,drama,1450208867 +15857,1954,fighting,1450208864 +15857,1954,inspirational,1450208861 +15857,1954,oscar (best cinematography),1450208851 +15857,1954,Oscar (Best Picture),1450208849 +15857,1954,sport:boxing,1450208872 +15857,1954,sports,1450208853 +15857,1954,Sylvester Stallone,1450208847 +15857,1954,underdog,1450208857 +15857,1954,working class,1450208855 +15857,1961,autism,1422291352 +15857,1961,based on a true story,1429140503 +15857,1961,brothers,1422291356 +15857,1961,dark comedy,1429140505 +15857,1961,disability,1429140499 +15857,1961,Dustin Hoffman,1422291349 +15857,1961,Exceptional Acting,1429140494 +15857,1961,heartwarming,1429140501 +15857,1961,mental illness,1422291402 +15857,1961,Oscar (Best Actor),1429140492 +15857,1961,Oscar (Best Picture),1429140486 +15857,1961,psychology,1422291362 +15857,1961,road movie,1429140496 +15857,1961,road trip,1422291372 +15857,1961,Tom Cruise,1422291388 +15857,1961,true story,1429140488 +15857,1962,aging,1429140467 +15857,1962,based on a play,1429140473 +15857,1962,Dan Aykroyd,1429140470 +15857,1962,Drama,1429140453 +15857,1962,friendship,1429140464 +15857,1962,Morgan Freeman,1429140451 +15857,1962,no action,1429140475 +15857,1962,Oscar (Best Picture),1429140456 +15857,1962,racism,1429140460 +15857,1962,Southern theme,1429140458 +15857,2028,action,1437779195 +15857,2028,cinematography,1413351611 +15857,2028,disturbing,1413227679 +15857,2028,drama,1413351608 +15857,2028,enormously long battle scene,1413351607 +15857,2028,gritty,1413227671 +15857,2028,historical,1437779188 +15857,2028,history,1437779190 +15857,2028,horrors of war,1437779207 +15857,2028,imdb top 250,1429140196 +15857,2028,Matt Damon,1437779201 +15857,2028,Nazis,1437779212 +15857,2028,Oscar (Best Cinematography),1437779205 +15857,2028,Oscar (Best Directing),1437779198 +15857,2028,Oscar (Best Sound),1437779203 +15857,2028,realistic,1413351616 +15857,2028,spielberg,1413227652 +15857,2028,Steven Spielberg,1413227656 +15857,2028,stylized,1437779194 +15857,2028,Tom Hanks,1413227654 +15857,2028,Vin Diesel,1413227665 +15857,2028,violent,1437779192 +15857,2028,visceral,1437779208 +15857,2028,war,1429140140 +15857,2028,war movie,1437779210 +15857,2028,World War II,1413227650 +15857,2028,wwii,1413351619 +15857,2161,Adventure,1421189774 +15857,2161,effects,1415738722 +15857,2161,Fantasy,1421189771 +15857,2167,action,1437778963 +15857,2167,Marvel,1437778961 +15857,2167,vampire,1413228513 +15857,2167,vampires,1413228496 +15857,2193,fantasy,1415738755 +15857,2193,Good versus evil,1421189797 +15857,2193,magic,1421189799 +15857,2193,sword and sorcery,1415738750 +15857,2193,wizards,1415738758 +15857,2387,dark comedy,1435785399 +15857,2387,dark humor,1435785401 +15857,2409,boxing,1450208883 +15857,2409,ego,1450208892 +15857,2409,Rocky,1450208894 +15857,2409,sport:boxing,1450208888 +15857,2409,sports,1450208886 +15857,2409,Sylvester Stallone,1450208885 +15857,2410,boxing,1450208901 +15857,2410,fighting,1450208907 +15857,2410,Mr. T,1450208909 +15857,2410,sport:boxing,1450208911 +15857,2410,sports,1450208903 +15857,2410,Sylvester Stallone,1450208905 +15857,2411,boxing,1450720066 +15857,2411,competitive sport,1450720070 +15857,2411,Dolph Lundgren,1450720075 +15857,2411,Golden Raspberry (Worst Actor),1450720082 +15857,2411,nationalism,1450720080 +15857,2411,sport:boxing,1450720077 +15857,2411,sports,1450720072 +15857,2411,Sylvester Stallone,1450720068 +15857,2411,training montage,1450720078 +15857,2412,boxing,1451194051 +15857,2412,sports,1451194054 +15857,2412,Sylvester Stallone,1451194056 +15857,2424,bookshop,1430107008 +15857,2424,chick flick,1430107009 +15857,2424,comedy,1430107004 +15857,2424,happy ending,1430107011 +15857,2424,Meg Ryan,1430106997 +15857,2424,New York City,1430107006 +15857,2424,Romance,1430107000 +15857,2424,romantic comedy,1430107001 +15857,2424,sentimental,1430107013 +15857,2424,Tom Hanks,1430106998 +15857,2571,cult film,1437778453 +15857,2571,cyberpunk,1437778433 +15857,2571,dark hero,1413311483 +15857,2571,dystopia,1437778431 +15857,2571,fantasy,1437778457 +15857,2571,fight scenes,1413311542 +15857,2571,martial arts,1437778438 +15857,2571,philosophy,1437778462 +15857,2571,post apocalyptic,1413311496 +15857,2571,sci-fi,1413311509 +15857,2571,slow motion,1437778448 +15857,2571,thought-provoking,1413311498 +15857,2571,violence,1437778444 +15857,2571,virtual reality,1437778429 +15857,2571,visually stunning,1437778452 +15857,2687,2D Disney Animation,1451194173 +15857,2687,Disney,1451194175 +15857,2687,Phil Collins,1451194171 +15857,2706,Nudity (Topless - Notable),1413236426 +15857,2706,Nudity (Topless),1413236422 +15857,2706,sexuality,1413236471 +15857,2706,virginity,1437778911 +15857,2739,Steven Spielberg,1413403329 +15857,2761,Vin Diesel,1413227514 +15857,2882,nazis,1437779127 +15857,2890,anti-war,1451889595 +15857,2890,black comedy,1451889598 +15857,2890,confrontational,1451889605 +15857,2890,controversial,1451889609 +15857,2890,George Clooney,1451889596 +15857,2890,Gulf War,1451889593 +15857,2890,iraq,1451889610 +15857,2890,Middle East,1451889603 +15857,2890,satirical,1451889607 +15857,2890,stylized,1451889600 +15857,2966,brothers,1435471655 +15857,2966,David Lynch,1435471652 +15857,2966,lawn mower,1435471657 +15857,2966,lynch,1435471659 +15857,2966,melancholic,1435471653 +15857,2966,road trip,1435471649 +15857,3089,classic,1432448334 +15857,3089,Criterion,1432448323 +15857,3089,neorealism,1432448364 +15857,3089,postwar,1432448340 +15857,3089,poverty,1432448319 +15857,3089,realism,1432448363 +15857,3147,cinematography,1436287027 +15857,3147,compassionate,1436287008 +15857,3147,death penalty,1436287005 +15857,3147,drama,1413310797 +15857,3147,emotional,1413310822 +15857,3147,Frank Darabont,1436287103 +15857,3147,great acting,1413310793 +15857,3147,heartwarming,1413310790 +15857,3147,imdb top 250,1436287011 +15857,3147,male nudity,1436287002 +15857,3147,Michael Clarke Duncan,1413310803 +15857,3147,nostalgic,1436287007 +15857,3147,oscar (best directing),1436287018 +15857,3147,prison,1413310829 +15857,3147,racism,1413310837 +15857,3147,Sam Rockwell,1436287016 +15857,3147,sentimental,1436287030 +15857,3147,social commentary,1436287107 +15857,3147,Stephen King,1436286987 +15857,3147,Tom Hanks,1413310784 +15857,3147,visually stunning,1436287118 +15857,3198,based on a book,1413311060 +15857,3198,Dustin Hoffman,1438707397 +15857,3198,escape,1413311059 +15857,3198,prison,1413311067 +15857,3198,prison escape,1413311064 +15857,3198,Steve McQueen,1413311062 +15857,3688,Nudity (Full Frontal - Notable),1413227567 +15857,3688,Nudity (Full Frontal),1413227564 +15857,3793,based on a comic,1437778978 +15857,3793,based on comic book,1437778976 +15857,3793,comic book,1437778982 +15857,3793,genetics,1437778994 +15857,3793,marvel,1437778986 +15857,3793,mutants,1437778988 +15857,3793,sci-fi,1437778984 +15857,3793,superhero,1437778980 +15857,3916,american football,1434639813 +15857,3916,based on a true story,1434639804 +15857,3916,football,1434639811 +15857,3916,good story,1434639823 +15857,3916,high school,1434639832 +15857,3916,inspirational,1434639822 +15857,3916,inspiring,1434639825 +15857,3916,race issues,1434639827 +15857,3916,racism,1434639807 +15857,3916,social commentary,1434639834 +15857,3916,sports,1434639809 +15857,3938,Nudity (Rear),1417554687 +15857,3938,Nudity (Topless),1417554689 +15857,3938,slasher,1417554691 +15857,3941,slasher,1417554738 +15857,3969,change the world,1413238864 +15857,3969,inspirational,1413238861 +15857,3969,sad,1413238866 +15857,4022,adventure,1430106826 +15857,4022,drama,1430106868 +15857,4022,helen hunt,1430106850 +15857,4022,island,1430106829 +15857,4022,loneliness,1430106828 +15857,4022,love story,1430106858 +15857,4022,man vs. nature,1430106831 +15857,4022,philosophy,1430106842 +15857,4022,psychological,1430106833 +15857,4022,Robert Zemeckis,1430106855 +15857,4022,spiritual journey,1430106854 +15857,4022,stranded,1430106821 +15857,4022,SURVIVAL,1430106820 +15857,4022,Tom Hanks,1430106818 +15857,4022,unique,1430106861 +15857,4054,ballet,1413404050 +15857,4054,dancing,1413404054 +15857,4103,based on a book,1429140034 +15857,4103,China,1429140039 +15857,4103,Christian Bale,1429140033 +15857,4103,prison,1429140037 +15857,4103,World War II,1429140030 +15857,4144,adultery,1431585720 +15857,4223,heroic,1413403280 +15857,4223,sniper,1413403278 +15857,4223,World War II,1413403276 +15857,4299,Heath Ledger,1422897747 +15857,4299,medieval,1422897749 +15857,4326,based on a true story,1413310953 +15857,4326,civil rights,1413310945 +15857,4326,Gene Hackman,1413310955 +15857,4326,ku klux klan,1413310957 +15857,4326,racism,1413310959 +15857,4326,true story,1413310941 +15857,4643,post-apocalyptic,1416813780 +15857,4718,Notable Nudity,1437778938 +15857,4718,Nudity (Topless),1437778936 +15857,4823,chick flick,1413697948 +15857,4823,Good Romantic Comedies,1413697954 +15857,4823,john cusack,1430107025 +15857,4823,Kate Beckinsale,1430107026 +15857,4823,New York City,1430107031 +15857,4823,Romantic Comedy,1413697950 +15857,4823,serendipity,1430107030 +15857,4823,wedding,1430107034 +15857,4995,based on a book,1417245060 +15857,4995,based on a true story,1429140527 +15857,4995,biography,1429140536 +15857,4995,college,1429140525 +15857,4995,Drama,1417245092 +15857,4995,Education,1429140537 +15857,4995,genius,1417245051 +15857,4995,insanity,1429140522 +15857,4995,inspirational,1417245058 +15857,4995,intelligent,1417245092 +15857,4995,Jennifer Connelly,1429140516 +15857,4995,math,1417245053 +15857,4995,mathematics,1417245047 +15857,4995,mental illness,1417245048 +15857,4995,nobel prize,1429140532 +15857,4995,Oscar (Best Directing),1429140519 +15857,4995,Oscar (Best Picture),1429140514 +15857,4995,Oscar (Best Supporting Actress),1429140534 +15857,4995,Oscar Winner,1429140521 +15857,4995,psychology,1417245043 +15857,4995,romance,1417245092 +15857,4995,Russell Crowe,1417245096 +15857,4995,schizophrenia,1417245044 +15857,4995,true story,1417245054 +15857,4995,twist ending,1417245062 +15857,5010,factual,1413227794 +15857,5010,realistic,1413227797 +15857,5010,realistic action,1413227792 +15857,5010,true story,1413227799 +15857,5418,action,1416815535 +15857,5418,espionage,1416815520 +15857,5418,spy,1416815520 +15857,5501,stupid,1415998543 +15857,5605,Nudity (Topless),1414185317 +15857,5620,funny,1430107053 +15857,5620,Josh Lucas,1430107054 +15857,5620,Reese Witherspoon,1430107051 +15857,5620,romantic comedy,1413236336 +15857,5945,Nudity (Topless),1415913485 +15857,5995,Adrien Brody,1429140049 +15857,5995,based on a true story,1429140054 +15857,5995,beautiful,1413227635 +15857,5995,classical music,1413227633 +15857,5995,dramatic,1413227628 +15857,5995,historical,1429140061 +15857,5995,holocaust,1413227620 +15857,5995,music,1429140063 +15857,5995,Nazis,1429140056 +15857,5995,Oscar (Best Actor),1437779176 +15857,5995,Oscar Winner,1437779178 +15857,5995,Poland,1437779174 +15857,5995,Roman Polanski,1429140052 +15857,5995,true story,1413227630 +15857,5995,war,1437779180 +15857,5995,World War II,1413227618 +15857,6111,Nudity (Full Frontal - Notable),1416290891 +15857,6111,nudity (full frontal),1416290892 +15857,6155,battle of the sexes,1413236316 +15857,6155,chick flick,1430107068 +15857,6155,classic chick flick,1430107080 +15857,6155,funny,1430107082 +15857,6155,girlie movie,1430107078 +15857,6155,Good Romantic Comedies,1430107071 +15857,6155,Kate Hudson,1430107066 +15857,6155,Matthew McConaughey,1413236312 +15857,6155,not funny,1430107075 +15857,6157,dark hero,1416815106 +15857,6157,heroine in tight suit,1415855325 +15857,6170,horses,1435598681 +15857,6297,Adapted from book,1430764400 +15857,6297,based on a book,1430764399 +15857,6297,curse,1430764395 +15857,6365,dystopia,1413311638 +15857,6365,fight scenes,1413311621 +15857,6365,post-apocalyptic,1413311635 +15857,6365,thought-provoking,1413311645 +15857,6378,action,1440830729 +15857,6378,caper,1440830761 +15857,6378,car chase,1440830743 +15857,6378,cars,1440830751 +15857,6378,Charlize Theron,1440830747 +15857,6378,con men,1440830753 +15857,6378,Crime,1440830758 +15857,6378,Edward Norton,1440830727 +15857,6378,ensemble cast,1440830763 +15857,6378,heist,1440830724 +15857,6378,Jason Statham,1440830735 +15857,6378,Mark Wahlberg,1440830745 +15857,6378,mini coopers,1440830765 +15857,6378,remake,1440830767 +15857,6378,robbery,1440830731 +15857,6539,johnny depp,1420046741 +15857,6539,magic,1419578936 +15857,6539,pirates,1419578828 +15857,6539,skeletons,1420046767 +15857,6541,captain nemo,1433052108 +15857,6541,comic book,1433052107 +15857,6541,gothic,1433052109 +15857,6541,pulp,1433052106 +15857,6541,Sean Connery,1415855130 +15857,6541,steampunk,1415855128 +15857,6541,vampires,1433052105 +15857,6787,conspiracy,1417939094 +15857,6787,corruption,1417939196 +15857,6787,history,1417939194 +15857,6787,investigation,1417939241 +15857,6787,journalism,1417939090 +15857,6787,Politics,1417939088 +15857,6787,true story,1417939193 +15857,6791,Food,1424711646 +15857,6867,charming,1452668115 +15857,6867,depression,1452668125 +15857,6867,dwarf,1452668117 +15857,6867,friendship,1452668107 +15857,6867,interesting characters,1452668110 +15857,6867,loneliness,1452668102 +15857,6867,melancholy,1452668118 +15857,6867,Michelle Williams,1452668120 +15857,6867,quirky,1452668105 +15857,6867,satirical,1452668129 +15857,6867,small town,1452668108 +15857,6867,train,1452668122 +15857,6867,trains,1452668104 +15857,6867,understated,1452668127 +15857,6867,unlikely friendships,1452668114 +15857,6947,historical,1429140007 +15857,6947,Russell Crowe,1429140005 +15857,6947,sailing,1429140011 +15857,6947,seafaring,1429140009 +15857,6947,war,1429140013 +15857,6989,action,1437778755 +15857,6989,adapted from:book,1437778671 +15857,6989,based on a book,1437778674 +15857,6989,Betamax,1437778757 +15857,6989,Edgar Award (Best Motion Picture),1437778676 +15857,6989,espionage,1437778753 +15857,7025,World War II,1437779366 +15857,7139,immigrants,1425194064 +15857,7139,Irish,1425194067 +15857,7139,new beginning,1425194065 +15857,7143,historical,1413310170 +15857,7143,Honor,1413310163 +15857,7143,intense,1413310167 +15857,7143,Japan,1413698498 +15857,7143,Japanese culture,1413310165 +15857,7143,rebellion,1413698499 +15857,7143,samurai,1413698496 +15857,7147,adventure,1451799465 +15857,7147,based on a book,1451799497 +15857,7147,bittersweet,1451799454 +15857,7147,colourful,1451799492 +15857,7147,coming of age,1451799507 +15857,7147,dreamlike,1451799449 +15857,7147,Ewan McGregor,1451799494 +15857,7147,Fantasy,1451799451 +15857,7147,father-son relationship,1451799504 +15857,7147,giant,1451799485 +15857,7147,heartwarming,1451799489 +15857,7147,imagination,1451799464 +15857,7147,imdb top 250,1451799496 +15857,7147,magic,1451799500 +15857,7147,quirky,1451799459 +15857,7147,reflective,1451799509 +15857,7147,romance,1451799491 +15857,7147,story,1451799468 +15857,7147,storytelling,1451799502 +15857,7147,stylized,1451799461 +15857,7147,surreal,1451799447 +15857,7147,surrealism,1451799457 +15857,7147,tall tales,1451799487 +15857,7147,Tim Burton,1451799445 +15857,7147,twist ending,1451799506 +15857,7458,Brad Pitt,1422780146 +15857,7458,Epic,1422780142 +15857,7458,historical epic,1422780141 +15857,7458,Nudity (Topless),1422780130 +15857,7669,19th century,1415138229 +15857,7669,England,1415138232 +15857,7669,period drama,1415138234 +15857,8264,Criterion,1433272047 +15857,8529,airport,1430106901 +15857,8529,comedy,1430106917 +15857,8529,drama,1430106919 +15857,8529,funny,1430106897 +15857,8529,great acting,1430106914 +15857,8529,heartfelt,1430106910 +15857,8529,humorous,1430106908 +15857,8529,original plot,1430106903 +15857,8529,Steven Spielberg,1430106905 +15857,8529,stranded,1430106895 +15857,8529,tom hanks,1430106886 +15857,8529,underrated,1430106912 +15857,8644,artificial intelligence,1413311669 +15857,8644,futuristic,1413311677 +15857,8644,sci-fi,1413311671 +15857,8665,action,1416815566 +15857,8665,espionage,1416815558 +15857,8873,adventure,1413310241 +15857,8873,based on a book,1413310249 +15857,8873,cinematography,1413310246 +15857,8873,road trip,1413310243 +15857,8873,South America,1413310239 +15857,8873,true story,1413310237 +15857,8958,great acting,1413310342 +15857,8958,rhythm & blues,1413310344 +15857,8970,Biography,1429137294 +15857,8970,bittersweet,1429137298 +15857,8970,fantasy,1428885094 +15857,8970,Heartwarming,1428885090 +15857,8970,Johnny Depp,1428885090 +15857,8970,Peter Pan,1429137276 +15857,8970,true story,1428885097 +15857,8977,Ancient Greece,1421350684 +15857,8977,bisexual,1421350689 +15857,8977,homosexuality,1421350669 +15857,8977,Nudity (Topless),1421350687 +15857,26528,acting,1433272130 +15857,26528,adapted from:book,1433272121 +15857,26528,based on a book,1433272123 +15857,26528,beautiful,1433272085 +15857,26528,classic,1433272087 +15857,26528,clever,1433272090 +15857,26528,dialogue,1433272124 +15857,26528,friends,1433272092 +15857,26528,fun,1433272095 +15857,26528,great casting,1433272097 +15857,26528,jonathan crombie,1433272111 +15857,26528,Kevin Sullivan,1433272099 +15857,26528,l.m. montgomery,1433272102 +15857,26528,literature,1433272104 +15857,26528,love,1433272107 +15857,26528,megan follows,1433272113 +15857,26528,mini-series,1433272109 +15857,26528,perfect,1433272115 +15857,26528,script,1433272126 +15857,26528,story,1433272128 +15857,26528,sweet,1433272135 +15857,26528,witty,1433272133 +15857,27706,based on a book,1415734528 +15857,27706,meryl streep,1415734534 +15857,27706,narrated,1415734538 +15857,27706,quirky,1415734530 +15857,27773,Nudity (Full Frontal),1429134592 +15857,27773,violent,1429134597 +15857,30707,Bittersweet,1435994850 +15857,30707,boxing,1435994836 +15857,30707,Clint Eastwood,1435994840 +15857,30707,dark,1435994902 +15857,30707,disability,1435994911 +15857,30707,drama,1435994842 +15857,30707,emotional,1435994904 +15857,30707,gritty,1435994906 +15857,30707,Hilary Swank,1435994857 +15857,30707,Morgan Freeman,1435994834 +15857,30707,Murder,1436285699 +15857,30707,narrated,1435994884 +15857,30707,Oscar (Best Actress),1435994887 +15857,30707,Oscar (Best Directing),1435994889 +15857,30707,Oscar (Best Picture),1435994899 +15857,30707,Oscar (Best Supporting Actor),1435994886 +15857,30707,poverty,1435994914 +15857,30707,social commentary,1435994853 +15857,30707,sports,1435994860 +15857,30707,violence,1435994909 +15857,31685,romantic comedy,1413236293 +15857,31685,Will Smith,1413236290 +15857,31689,pornography,1431753960 +15857,32587,black comedy,1429134571 +15857,32587,brutality,1429134577 +15857,32587,cannibalism,1429134575 +15857,34072,amazing photography,1413698429 +15857,34072,antarctica,1413698442 +15857,34072,beautifully filmed,1413698437 +15857,34072,scenic,1413698444 +15857,34072,survival,1413698434 +15857,34150,heroine in tight suit,1415855576 +15857,35836,Nudity (Topless),1419011336 +15857,36535,artsy,1437411466 +15857,36535,beautiful scenery,1437410953 +15857,36535,broken English,1437411477 +15857,36535,colourful,1437411470 +15857,36535,culture clash,1437411468 +15857,36535,elijah wood,1437411501 +15857,36535,Eugene Hutz,1437410957 +15857,36535,Great Soundtrack,1437411473 +15857,36535,Holocaust,1437411505 +15857,36535,jews,1437411492 +15857,36535,judaica,1437411589 +15857,36535,quirky,1437411474 +15857,36535,suicide,1437415487 +15857,36535,ukraine,1437410950 +15857,39183,gay,1422380575 +15857,39183,homosexuality,1422380572 +15857,39234,mining,1413401306 +15857,39234,true story,1413401302 +15857,40414,Christmas,1421135099 +15857,40414,true story,1421135099 +15857,40414,World War I,1421135097 +15857,40815,dark,1430115222 +15857,40815,harry potter,1430115218 +15857,40815,Magic,1430115218 +15857,40815,Wizards,1430115220 +15857,41527,friendship,1429642699 +15857,41527,middle east,1429642688 +15857,41527,palestine,1429642705 +15857,41527,terrorism,1429642697 +15857,41566,adventure,1430115334 +15857,41566,alternate reality,1413313371 +15857,41566,based on a book,1430115340 +15857,41566,based on book,1413313377 +15857,41566,Christian,1430115345 +15857,41566,christianity,1413313364 +15857,41566,fantasy,1413313361 +15857,41566,fantasy world,1430115316 +15857,41566,good versus evil,1430115331 +15857,41566,scenic,1430115344 +15857,41566,talking animals,1413313373 +15857,41566,witch,1430115337 +15857,44665,Nudity (Topless),1413404537 +15857,45447,adventure,1452556058 +15857,45447,Audrey Tautou,1452556079 +15857,45447,based on a book,1452556074 +15857,45447,book is better,1452556080 +15857,45447,bullshit history,1452556063 +15857,45447,conspiracy theory,1452556053 +15857,45447,Dan Brown,1452556082 +15857,45447,gnosticism,1452556088 +15857,45447,Mystery,1452556069 +15857,45447,original plot,1452556085 +15857,45447,Paris,1452556072 +15857,45447,religion,1452556055 +15857,45447,Tom Hanks,1452556065 +15857,45447,treasure hunt,1452556077 +15857,45720,Meryl Streep,1413236270 +15857,46972,Ben Stiller,1430503083 +15857,46972,museum,1430503075 +15857,46972,Owen Wilson,1430503077 +15857,46972,Ricky Gervais,1430503081 +15857,46972,Robin Williams,1430503085 +15857,46972,slapstick,1430503078 +15857,47099,based on a true story,1419283050 +15857,47099,bittersweet,1419283054 +15857,47099,courage,1419283060 +15857,47099,father-son relationship,1419283058 +15857,47099,tearjerking,1419283063 +15857,47099,true story,1419283056 +15857,47099,want to see again,1419283066 +15857,47099,Will Smith,1419283052 +15857,48711,Christianity,1421561305 +15857,48711,determination,1421561306 +15857,48711,Football,1421561305 +15857,48783,iwo jima,1437779866 +15857,48783,patriotic,1413351565 +15857,48783,World War II,1413351564 +15857,49524,Biblical,1419966013 +15857,49524,Christmas,1419966011 +15857,49524,Jesus,1419966015 +15857,50068,Clint Eastwood,1437779880 +15857,50068,Deep,1437779883 +15857,50068,emotional,1437779886 +15857,50068,honest,1437779872 +15857,50068,intimate,1437779885 +15857,50068,japan,1437779874 +15857,50068,war,1437779889 +15857,50068,World War II,1437779870 +15857,50147,Nudity (Topless - Brief),1417554491 +15857,50160,Renee Zellweger,1435598693 +15857,53318,Nudity (Full Frontal),1415318864 +15857,53318,strippers,1415318869 +15857,53996,80s nostalgia,1413312929 +15857,53996,enormously long battle scene,1413312926 +15857,53996,robots,1413312936 +15857,53996,sci-fi,1415858586 +15857,54001,harry potter,1416813999 +15857,54001,magic,1416814001 +15857,54286,action,1416815596 +15857,54286,espionage,1416815593 +15857,54286,twist ending,1416815600 +15857,54995,Nudity (Topless),1417035651 +15857,54995,sex scene,1417035653 +15857,56171,based on a book,1413313417 +15857,56171,coming of age,1413313425 +15857,56171,fantasy world,1413313422 +15857,56171,magic,1413313420 +15857,56782,adapted from:book,1413404083 +15857,56782,cerebral,1429140260 +15857,56782,Daniel Day-Lewis,1429140224 +15857,56782,father-son relationship,1413404080 +15857,56782,greed,1413404076 +15857,56782,morality,1429140253 +15857,56782,oil,1429140258 +15857,56782,Oscar (Best Actor),1429140232 +15857,56782,Oscar (Best Cinematography),1429140234 +15857,56782,paul dano,1429140249 +15857,56782,Paul Thomas Anderson,1429140237 +15857,56782,religion,1429140244 +15857,56782,visually appealing,1429140256 +15857,56782,western,1429140247 +15857,56788,1980s,1430631694 +15857,56788,afghanistan,1430631754 +15857,56788,arms dealer,1430631740 +15857,56788,based on a true story,1430631719 +15857,56788,CIA,1430631746 +15857,56788,cold war,1430631713 +15857,56788,Good dialogue,1430631752 +15857,56788,Julia Roberts,1430631691 +15857,56788,Mike Nichols,1430631743 +15857,56788,politics,1430631749 +15857,56788,satire,1430631737 +15857,56788,Tom Hanks,1430631687 +15857,56788,true story,1430631727 +15857,57528,lots of blood,1417036296 +15857,57528,violence,1417036299 +15857,57528,violent,1417036301 +15857,58347,Christina Ricci,1433700294 +15857,58347,fairy tale,1433700282 +15857,58347,James McAvoy,1433700297 +15857,58347,modern fantasy,1433700301 +15857,58347,Nick Frost,1433700299 +15857,58490,1930s,1422766975 +15857,58490,Amy Adams,1422766973 +15857,58559,Batman,1431586112 +15857,58559,dark,1416814669 +15857,58559,Heath Ledger,1429134557 +15857,58559,violence,1416814661 +15857,58559,violent,1416814655 +15857,58998,Nudity (Topless),1413404426 +15857,60074,superhero,1415135896 +15857,60074,Will Smith,1415135894 +15857,61449,nudity (topless),1415910555 +15857,63072,based on a book,1413404006 +15857,63072,depressing,1413404004 +15857,63072,great acting,1413404009 +15857,63072,post-apocalyptic,1413403997 +15857,63072,survival,1413404001 +15857,63072,Viggo Mortensen,1413403999 +15857,63082,based on a book,1413403497 +15857,63082,dark side of India,1413227301 +15857,63082,drama,1413227310 +15857,63082,emotional,1413403516 +15857,63082,gritty,1413227298 +15857,63082,India,1413227284 +15857,63082,non-linear,1413403513 +15857,63082,nonlinear,1413227356 +15857,63082,Poverty,1413227293 +15857,63082,visually appealing,1413227308 +15857,63876,gay,1416814329 +15857,63876,gay history,1416814318 +15857,63876,gay rights,1416814321 +15857,63876,glbt,1416814325 +15857,64034,based on a book,1413227600 +15857,64034,British speaking germans,1437779161 +15857,64034,childish naivity,1437779137 +15857,64034,Friendship,1413227602 +15857,64034,Holocaust,1413227596 +15857,64034,irony,1437779146 +15857,64034,Nazi,1437779166 +15857,64034,Nazi Germany,1437779149 +15857,64034,Nazis,1437779151 +15857,64034,sad,1413227598 +15857,64034,touching,1437779148 +15857,64034,Vera Farmiga,1437779153 +15857,64034,World War II,1413227594 +15857,64575,1960s,1429140316 +15857,64575,based on a play,1429140313 +15857,64575,Bronx,1429140319 +15857,64575,Catholicism,1429140309 +15857,64575,cinematography,1413228791 +15857,64575,dialogue driven,1413228789 +15857,64575,great acting,1413228797 +15857,64575,Meryl Streep,1413228743 +15857,64575,moral ambiguity,1429140305 +15857,64575,Philip Seymour Hoffman,1413228745 +15857,64575,religion,1413228795 +15857,64575,thought-provoking,1413228779 +15857,64622,Nudity (Full Frontal - Notable),1413402920 +15857,64622,Nudity (Full Frontal),1413402926 +15857,64716,Drama,1433659449 +15857,64716,hopeless love,1437415545 +15857,64716,melancholy,1433659470 +15857,64716,moving,1433784854 +15857,64716,suicide,1433659410 +15857,64716,unique,1433659415 +15857,64716,Will Smith,1433659439 +15857,64839,Nudity (Topless),1413404478 +15857,64839,strippers,1413404472 +15857,65088,Adam Sandler,1430502818 +15857,65088,Imagination,1430502813 +15857,65577,animation,1452554835 +15857,68319,bad cgi,1416815145 +15857,68319,too many characters,1416815135 +15857,69481,action,1414013642 +15857,69481,addiction,1413227751 +15857,69481,death,1414013645 +15857,69481,intense,1413227742 +15857,69481,Iraq War,1414013638 +15857,69481,Middle East,1413227741 +15857,69481,realistic,1413227738 +15857,69481,thoughtful,1413227749 +15857,70293,based on a book,1418611968 +15857,70293,cooking,1418611970 +15857,70293,food,1418611964 +15857,70293,inspiring,1418611974 +15857,70293,Meryl Streep,1418611966 +15857,72641,based on a true story,1422636052 +15857,72641,inspirational,1422636056 +15857,72641,kindness of strangers,1422636065 +15857,72641,true story,1422636048 +15857,73290,based on a true story,1447027677 +15857,73290,dog,1447027681 +15857,73290,dogs,1447027674 +15857,73290,Loyalty,1447027675 +15857,73290,Richard Gere,1447027679 +15857,73290,tearjerker,1447027683 +15857,73321,beautiful scenery,1427654586 +15857,73321,Bible,1427654556 +15857,73321,books,1427654584 +15857,73321,Christianity,1427654555 +15857,73321,dystopia,1427654559 +15857,73321,dystopic future,1429137380 +15857,73321,fight scenes,1427654579 +15857,73321,future,1427654570 +15857,73321,post-apocalyptic,1427654552 +15857,73321,Stylistic,1429137376 +15857,73321,survival,1427654572 +15857,73321,thought-provoking,1427654563 +15857,73321,twist ending,1427654567 +15857,73321,visually appealing,1427654575 +15857,74324,autism,1429140543 +15857,74324,biography,1429140550 +15857,74324,Claire Danes,1429140546 +15857,74324,disability,1429140551 +15857,74324,genius,1429140555 +15857,74324,great acting,1413310300 +15857,74324,inspirational,1413310287 +15857,74324,made for TV,1429140553 +15857,74324,mental illness,1413310293 +15857,74324,science,1429140548 +15857,74324,social commentary,1429140558 +15857,74324,true story,1413310297 +15857,78574,acting,1415436222 +15857,78574,adapted from:book,1415436200 +15857,78574,authenticity,1415436200 +15857,78574,cinematography,1415436272 +15857,78574,cultural authenticity,1415436190 +15857,78574,drama,1415436275 +15857,78574,Jennifer Lawrence,1415436185 +15857,78574,ozarks,1415436277 +15857,78574,realism,1415436183 +15857,78574,resilience,1415436202 +15857,78574,rural,1415436279 +15857,78574,slow,1415436199 +15857,78574,white trash,1415436212 +15857,79132,action,1431894290 +15857,79132,alternate reality,1431894031 +15857,79132,ambiguous ending,1431894098 +15857,79132,big budget,1431894110 +15857,79132,cerebral,1431896372 +15857,79132,Christopher Nolan,1431896365 +15857,79132,Cillian Murphy,1431894167 +15857,79132,cinematography,1433272159 +15857,79132,clever,1431896369 +15857,79132,complicated,1431894050 +15857,79132,confusing plot,1433272198 +15857,79132,drama,1431894125 +15857,79132,dream,1433272167 +15857,79132,dream within a dream,1431894108 +15857,79132,dreamlike,1431894057 +15857,79132,dreams,1431894290 +15857,79132,Ellen Page,1431896362 +15857,79132,ensemble cast,1431894142 +15857,79132,fantasy,1431894127 +15857,79132,great soundtrack,1431896376 +15857,79132,Hans Zimmer,1431894112 +15857,79132,heist,1431894291 +15857,79132,imaginative,1433272200 +15857,79132,imdb top 250,1433272206 +15857,79132,intellectual,1431896379 +15857,79132,Intense,1431894135 +15857,79132,interesting,1431972618 +15857,79132,Joseph Gordon-Levitt,1433272148 +15857,79132,Ken Watanabe,1431894172 +15857,79132,Leonardo DiCaprio,1431894035 +15857,79132,long,1431894197 +15857,79132,makes you think,1433272170 +15857,79132,Marion Cotillard,1431894165 +15857,79132,memory,1431894140 +15857,79132,Michael Caine,1431894149 +15857,79132,mind games,1431972615 +15857,79132,mindfuck,1431894051 +15857,79132,multiple interpretations,1431894146 +15857,79132,multiple realities,1433272208 +15857,79132,music,1431894115 +15857,79132,Nolan,1433272174 +15857,79132,open ending,1431894200 +15857,79132,original,1433272177 +15857,79132,original plot,1433272180 +15857,79132,philosophy,1431894294 +15857,79132,plot twist,1433272187 +15857,79132,predictable,1433272166 +15857,79132,psychological,1433272153 +15857,79132,psychology,1433272157 +15857,79132,sci-fi,1431894053 +15857,79132,science fiction,1433272189 +15857,79132,soundtrack,1433272164 +15857,79132,special effects,1431972609 +15857,79132,surreal,1431894032 +15857,79132,suspense,1433272151 +15857,79132,thought-provoking,1431894041 +15857,79132,thriller,1433272155 +15857,79132,Tom Hardy,1431894168 +15857,79132,twist ending,1431894153 +15857,79132,unpredictable,1431972594 +15857,79132,visually appealing,1431894031 +15857,79132,visually stunning,1431972620 +15857,79132,weightlessness,1433272204 +15857,81834,dark,1430115174 +15857,81834,dark fantasy,1416813969 +15857,81834,Harry Potter,1416813968 +15857,81834,magic,1416813971 +15857,81845,1930s,1429139960 +15857,81845,based on a true story,1429139933 +15857,81845,complex characters,1429139936 +15857,81845,disability,1429139947 +15857,81845,drama,1429139938 +15857,81845,emotional,1429139961 +15857,81845,England,1429139949 +15857,81845,feel-good,1429139955 +15857,81845,friendship,1429139951 +15857,81845,great performances,1429139963 +15857,81845,historical,1429139940 +15857,81845,king,1429139993 +15857,81845,politics,1429139971 +15857,81845,stammering,1429139975 +15857,81845,true story,1429139953 +15857,81845,war,1429139967 +15857,87960,enthralling,1437777599 +15857,87960,informative,1437777601 +15857,87960,mind-bending,1437777604 +15857,87960,origami,1437777630 +15857,88125,Harry Potter,1430115113 +15857,88125,magic,1416813921 +15857,88129,Nudity (Topless),1413404585 +15857,88692,simplified history,1415436375 +15857,88810,1960s,1413310861 +15857,88810,based on a book,1413310853 +15857,88810,Emma Stone,1436286956 +15857,88810,feel good movie,1436286969 +15857,88810,great acting,1413310851 +15857,88810,historical,1436286973 +15857,88810,Octavia Spencer,1436286965 +15857,88810,racism,1413310848 +15857,88810,segregation,1413310865 +15857,88810,social commentary,1436286958 +15857,88810,southern US,1413310856 +15857,88810,Tearjerker,1413310858 +15857,88810,Viola Davis,1436286971 +15857,89774,Boxing story,1430551684 +15857,89774,brother-brother relationship,1430551709 +15857,89774,great acting,1430551676 +15857,89774,imdb top 250,1430551712 +15857,89774,MMA,1430551687 +15857,89774,Nick Nolte,1430551701 +15857,89774,Tom Hardy,1430551703 +15857,89774,touching,1430551677 +15857,91126,horses,1413228074 +15857,91126,Steven Spielberg,1413228067 +15857,91126,World War I,1413228071 +15857,91325,sentimental,1429137883 +15857,91500,based on a book,1427654673 +15857,91500,battle royale,1436285784 +15857,91500,bow & arrow,1436285787 +15857,91500,child killing,1427654693 +15857,91500,drama,1436285874 +15857,91500,dystopia,1427654673 +15857,91500,Happy ending,1436285876 +15857,91500,intense,1427654674 +15857,91500,Jennifer Lawrence,1427654673 +15857,91500,lack of character development,1436285811 +15857,91500,love,1436285814 +15857,91500,murder,1427654688 +15857,91500,predictable,1436285872 +15857,91500,reality TV,1436285818 +15857,91500,rich and poor,1427654681 +15857,91500,science fiction,1427654673 +15857,91500,shaky camera,1436285772 +15857,91500,social commentary,1436285868 +15857,91500,strong female lead,1436285789 +15857,91500,survival,1427654676 +15857,91500,thriller,1436285816 +15857,91500,visually stunning,1427654678 +15857,91500,Woody Harrelson,1436285778 +15857,92259,acting,1421861486 +15857,92259,based on a true story,1421861483 +15857,92259,disability,1421861510 +15857,92259,friendship,1421861472 +15857,92259,funny,1421861481 +15857,92259,rich and poor,1421861478 +15857,92259,sexuality,1421861500 +15857,92259,soundtrack,1421861495 +15857,92259,touching,1421861490 +15857,92259,upper class,1421861505 +15857,93267,acting,1413228647 +15857,93267,chrisitanity,1413228631 +15857,93267,God,1413228655 +15857,93267,Jesus,1413228645 +15857,93267,religion,1413228650 +15857,93267,salvation,1413228652 +15857,93267,script,1413228638 +15857,93297,authentic action,1429137901 +15857,93297,patriotic,1429137907 +15857,93297,pro military,1429137904 +15857,93432,documentary,1432448551 +15857,93432,food,1432448537 +15857,93432,vegan,1432448548 +15857,93467,deafness,1445752182 +15857,93467,romance,1445752184 +15857,94070,Bill Nighy,1431068196 +15857,94070,bittersweet,1431068192 +15857,94070,gay,1431068200 +15857,94070,India,1431068191 +15857,94070,Judi Dench,1431068195 +15857,94070,Old age,1431068198 +15857,94469,Australia,1447039401 +15857,94469,beautiful scenery,1447039404 +15857,94469,dogs,1447039406 +15857,95628,bicycle,1429137449 +15857,95628,circus,1429137447 +15857,95628,clowns,1429137445 +15857,95628,Pixar,1429137442 +15857,95628,short,1429137444 +15857,96370,nudity (topless),1415910503 +15857,97304,1970s,1416467618 +15857,97304,1980s,1416467618 +15857,97304,Ben Affleck,1416467591 +15857,97304,cia,1416467635 +15857,97304,espionage,1416467585 +15857,97304,great ending,1416467599 +15857,97304,hostage,1416467608 +15857,97304,Iran,1416467630 +15857,97304,Middle East,1416467634 +15857,97304,Political Thriller,1416467598 +15857,97304,politics,1416467617 +15857,97304,R,1416467594 +15857,97304,suspenseful,1416467581 +15857,97304,tense,1416467619 +15857,97304,thriller,1416467606 +15857,97304,Thrilling,1416467622 +15857,97304,True story,1416467579 +15857,97921,Bradley Cooper,1445064821 +15857,97921,cliche,1445064868 +15857,97921,dance,1445064835 +15857,97921,dark humor,1445064819 +15857,97921,David O. Russell,1445064839 +15857,97921,drama,1445064841 +15857,97921,father-son relationship,1445064830 +15857,97921,football,1445064863 +15857,97921,great characters,1445064832 +15857,97921,humorous,1445064843 +15857,97921,Jennifer Lawrence,1445064814 +15857,97921,Julia Stiles,1445064846 +15857,97921,loneliness,1445064828 +15857,97921,love,1445064867 +15857,97921,mental illness,1445064816 +15857,97921,Philadelphia,1445064849 +15857,97921,predictable ending,1445064856 +15857,97921,Robert De Niro,1445064824 +15857,97921,romance,1445064826 +15857,97921,serious topics,1445064861 +15857,97921,understandable characters,1445064860 +15857,97938,depressing,1413403735 +15857,97938,emotional,1413403741 +15857,97938,God's existance,1413403739 +15857,97938,great photograpy,1413403754 +15857,97938,religious overtones,1413403737 +15857,97938,Slow,1413403733 +15857,97938,spiritual journey,1413403730 +15857,97938,stranded,1413403748 +15857,97938,visually appealing,1413403750 +15857,97938,wisdom,1413403661 +15857,98154,American Civil War,1429137320 +15857,98154,history,1429137309 +15857,98154,oscar (best directing),1429137311 +15857,98154,too long,1429137317 +15857,99143,acrobat,1419965936 +15857,99143,dance,1419965939 +15857,99143,surreal,1419965949 +15857,101527,airplane crash,1453310653 +15857,101527,drama,1453310640 +15857,101527,multilingual,1453310643 +15857,101527,Petter Næss,1453310645 +15857,101527,world war ii,1453310642 +15857,102194,coming of age,1413236374 +15857,102194,fugitive,1413236379 +15857,102194,Matthew McConaughey,1429140337 +15857,102194,powerful,1429140340 +15857,103755,DE LO PITJOR DE PIXAR,1440994884 +15857,103755,dreamworks,1440994882 +15857,103755,racing,1441297710 +15857,103755,talking animals,1440994879 +15857,104841,3D,1437778585 +15857,104841,atmospheric,1437778594 +15857,104841,beautiful,1437778605 +15857,104841,cgi,1437778508 +15857,104841,cinematography,1414432527 +15857,104841,feeble character development,1437778582 +15857,104841,George Clooney,1437778503 +15857,104841,Hollow,1437778589 +15857,104841,intense,1437778497 +15857,104841,isolation,1437778580 +15857,104841,long shots,1437778592 +15857,104841,physics,1437778499 +15857,104841,predictable,1414432555 +15857,104841,sandra bullock,1437778494 +15857,104841,science,1437778603 +15857,104841,setting:space,1437778600 +15857,104841,slow action,1437778596 +15857,104841,space,1414432525 +15857,104841,suspense,1414432530 +15857,104841,visually appealing,1414432522 +15857,104841,visually stunning,1414432536 +15857,104841,zero gravity,1437778607 +15857,105197,acting,1438618692 +15857,105197,dementia,1438618700 +15857,105197,family,1438618688 +15857,105197,Father-Son Relationship,1438618701 +15857,105197,funny,1438618696 +15857,105197,poignant,1438618720 +15857,105197,Road trip,1438618697 +15857,105197,slow,1438618690 +15857,105355,homosexuality,1419283140 +15857,105355,lesbian,1419283142 +15857,105355,nudity (full frontal),1419283136 +15857,105355,unsimulated sex,1419283134 +15857,105504,believable,1413310994 +15857,105504,hijacking,1413310979 +15857,105504,ocean,1413310992 +15857,105504,suspense,1413310975 +15857,105504,tense,1413310980 +15857,105504,tom hanks,1413310977 +15857,105504,true story,1413310973 +15857,105844,based on a book,1424367894 +15857,105844,based on a true story,1429137331 +15857,105844,cinematography,1424367899 +15857,105844,Graphic Violence,1424367891 +15857,105844,slavery,1424367887 +15857,105943,gay marriage,1422636638 +15857,105943,gay rights,1422636650 +15857,106441,adapted from:book,1416263077 +15857,106441,touching,1413227585 +15857,106782,Nudity (Full Frontal),1414449661 +15857,106918,Afghanistan,1438270878 +15857,106918,Ben Stiller,1438270857 +15857,106918,Greenland,1438270863 +15857,106918,Iceland,1438270849 +15857,106918,imagination,1438270852 +15857,106918,inspirational,1438270845 +15857,106918,New York City,1438270884 +15857,106918,photographer,1438270876 +15857,106918,photography,1438270851 +15857,106918,positive thinking,1438270865 +15857,106918,remake,1438270883 +15857,106918,scenic,1438270862 +15857,106918,surreal,1438270854 +15857,106918,travel,1438270860 +15857,106918,visually appealing,1438270847 +15857,106918,workplace,1438270881 +15857,107069,Afghanistan,1414684646 +15857,107069,friendship,1414684643 +15857,107069,seals,1414684656 +15857,107069,true story,1414684641 +15857,107406,Allegory,1448868692 +15857,107406,cannibalism,1448868689 +15857,107406,chris evans,1448868668 +15857,107406,dark,1448868733 +15857,107406,dystopia,1448868665 +15857,107406,dystopian,1448868735 +15857,107406,jamie bell,1448868719 +15857,107406,john hurt,1448868704 +15857,107406,Joon-ho Bong,1448868712 +15857,107406,Korean,1448868709 +15857,107406,Microcosmic view of power structures,1448868694 +15857,107406,New World Order agenda,1448868745 +15857,107406,Plot twist,1448868743 +15857,107406,post-apocalyptic,1448868663 +15857,107406,revolution,1448868737 +15857,107406,sci-fi,1448868702 +15857,107406,snow,1448868701 +15857,107406,social commentary,1448868667 +15857,107406,surreal,1448868714 +15857,107406,tilda swinton,1448868722 +15857,107406,train,1448868673 +15857,107406,trains,1448868670 +15857,107406,violence,1448868716 +15857,107725,apple,1421393936 +15857,107725,marijuana,1421393936 +15857,107725,potato,1421393935 +15857,107725,science,1421393935 +15857,107725,tulip,1421393935 +15857,108928,based on a true story,1426092504 +15857,108928,WWII,1426092507 +15857,109379,chess,1441297656 +15857,109420,Pixar,1429137429 +15857,109420,short,1429137432 +15857,109487,ambitious,1429948703 +15857,109487,Anne Hathaway,1429948644 +15857,109487,artificial intelligence,1429948753 +15857,109487,astronomy,1430028040 +15857,109487,atmosphere,1429948770 +15857,109487,bad dialogue,1429948778 +15857,109487,bad science,1429948805 +15857,109487,black hole,1429948829 +15857,109487,Christopher Nolan,1429948638 +15857,109487,corny,1429948781 +15857,109487,epic,1429948680 +15857,109487,father - child relationship,1429948666 +15857,109487,good science,1429948743 +15857,109487,good science bad science,1429948798 +15857,109487,Hans Zimmer,1429948659 +15857,109487,interesting ideea,1429948724 +15857,109487,love,1429948670 +15857,109487,Mackenzie Foy,1429948666 +15857,109487,Masterpiece,1429948755 +15857,109487,Matthew McConaughey,1429948640 +15857,109487,Michael Caine,1429948645 +15857,109487,philosophical issues,1429948692 +15857,109487,physics,1429948785 +15857,109487,plot holes,1429948810 +15857,109487,relativity,1429948609 +15857,109487,sci-fi,1429948740 +15857,109487,science fiction,1429948622 +15857,109487,Self-Indulgent,1429948805 +15857,109487,sentimental,1429948789 +15857,109487,sounds,1429948694 +15857,109487,space,1429948589 +15857,109487,space travel,1429948794 +15857,109487,spectacle,1430028030 +15857,109487,suspense,1430028026 +15857,109487,thought-provoking,1429948612 +15857,109487,time travel,1429948746 +15857,109487,time-travel,1429948707 +15857,109487,twist ending,1429948714 +15857,109487,visually appealing,1429948673 +15857,109487,wasted potential,1429948680 +15857,109487,wormhole,1429948738 +15857,109526,Gregg Champion,1441297760 +15857,109526,sports,1441297756 +15857,109846,based on a TV show,1429425623 +15857,109846,history,1429425618 +15857,109846,time travel,1429425616 +15857,110130,comedy,1442767390 +15857,110130,heist,1442767392 +15857,110130,squirrels,1442767394 +15857,110130,talking animals,1442767396 +15857,111755,Jason M. Fitzpatrick,1439531673 +15857,111755,mountains,1439531671 +15857,111755,Ric Serena,1439531678 +15857,112852,Action,1418672966 +15857,112852,great soundtrack,1418672917 +15857,112852,Great Visuals,1418672925 +15857,112852,Marvel,1418672978 +15857,112852,science fiction,1418672971 +15857,112852,space,1418672946 +15857,112852,talking animals,1418672929 +15857,112852,Vin Diesel,1418672920 +15857,112852,violent,1418672955 +15857,113089,Jillian Schlesinger,1440221714 +15857,113089,ocean,1440221705 +15857,113089,sailing,1440221707 +15857,113089,teenager,1440221709 +15857,113275,cooking,1438564985 +15857,113275,France,1438564986 +15857,113275,Lasse Hallström,1438564993 +15857,113275,restraunt wars,1438564994 +15857,113378,based on a book,1432710426 +15857,113378,cerebral,1422291803 +15857,113378,dystopian future,1422291620 +15857,113378,Jeff Bridges,1422291515 +15857,113378,Meryl Streep,1422291517 +15857,115210,World War II,1423595139 +15857,116797,homosexuality,1431585363 +15857,116823,dystopia,1427654860 +15857,116823,fashion,1427655074 +15857,116823,Jennifer Lawrence,1429137350 +15857,116823,realistic,1427655077 +15857,116823,revolution,1427654869 +15857,117430,short,1429137456 +15857,118872,nudity (topless),1419006329 +15857,129657,parkour,1451193949 +15857,130087,adam sandler,1441297724 +15857,141737,roadtrip,1442727728 +15857,150612,Christian,1452557333 +15857,150612,dystopia,1452557392 +15875,1270,adventure,1146666612 +15875,2710,bw,1146666290 +15875,2710,low budget,1146666290 +15875,44191,comic book,1146769402 +15875,44191,revenge,1146769441 +15938,260,action,1419626797 +15938,260,atmospheric,1419626785 +15938,260,classic,1419626771 +15938,260,robots,1419626788 +15938,260,sci-fi,1419626750 +15938,260,space,1419626755 +15938,260,space travel,1419626805 +15938,296,black humour,1421266259 +15938,296,tarantino,1421266259 +15938,296,violence,1421266259 +15938,318,drama,1425723921 +15938,318,encouraging,1425723921 +15938,318,friendship,1425723921 +15938,318,good story,1425723921 +15938,356,drama,1423393030 +15938,356,makes you think,1423393030 +15938,356,tom hanks,1423393030 +15938,593,anthony hopkins,1425034892 +15938,593,psychothriller,1425034892 +15938,593,violence,1425034892 +15938,1580,action,1421504155 +15938,1580,aliens,1421504158 +15938,1580,humour,1421504174 +15938,1580,sci-fi,1421504163 +15938,1892,crime,1418939963 +15938,1892,gwyneth paltrow,1418939974 +15938,1892,Michael Douglas,1418939968 +15938,2571,action,1421504383 +15938,2571,cult film,1421504355 +15938,2571,cyberpunk,1421504367 +15938,2571,dystopia,1421504328 +15938,2571,hackers,1421504363 +15938,2571,philosophical,1421504348 +15938,2571,philosophy,1421504332 +15938,2571,sci-fi,1421504324 +15938,4963,feel good movie,1420302379 +15938,4963,humour,1420302405 +15938,5418,action,1419111485 +15938,5418,conspiracy,1419111496 +15938,5418,espionage,1419111478 +15938,5418,spy,1419111482 +15938,5418,spying,1419111491 +15938,5445,corruption,1420308482 +15938,5445,dystopia,1420308502 +15938,5445,future,1420308485 +15938,5445,futuristic,1420308494 +15938,5445,sci-fi,1420308504 +15938,5989,based on a true story,1418720683 +15938,5989,crime,1418720691 +15938,5989,Leonardo DiCaprio,1418720688 +15938,5989,Steven Spielberg,1418720676 +15938,5989,Tom Hanks,1418720686 +15938,51935,conspiracy,1419111376 +15938,57669,black comedy,1427016916 +15938,57669,depression,1427016936 +15938,57669,foul language,1427016977 +15938,57669,friendship,1427016921 +15938,59315,action,1418764490 +15938,59315,android(s)/cyborg(s),1418764493 +15938,59315,funny,1418764519 +15938,59315,Gwyneth Paltrow,1418764483 +15938,59315,sci-fi,1418764463 +15938,59315,technology,1418764470 +15938,59369,action,1419111399 +15938,59369,crime,1419111439 +15938,59369,kidnapping,1419111425 +15938,59369,Liam Neeson,1419111420 +15938,59369,realistic,1419111412 +15938,59369,revenge,1419111408 +15938,69712,arty,1419552006 +15938,71057,dystopia,1418554558 +15938,71057,interesting animation style,1418554570 +15938,71057,post-apocalyptic,1418554575 +15938,71057,sci-fi,1418554563 +15938,89745,crappy,1419070930 +15938,90249,android(s)/cyborg(s),1420324217 +15938,90249,feel-good,1420324220 +15938,90249,robots,1420324209 +15938,90249,Science Fiction,1420324205 +15938,94864,bad science,1421504473 +15938,94864,sci-fi,1421504423 +15938,94864,unbeliveable situation,1421504452 +15938,96861,kidnapping,1418042935 +15938,96861,Liam Neeson,1418042946 +15938,96861,Revenge,1418043014 +15938,102125,action,1418938904 +15938,102125,funny,1418938933 +15938,102125,humour,1418938926 +15938,102125,robots,1418938937 +15938,102125,terrorism,1418938909 +15938,102125,visually appealing,1418938919 +15938,102903,magic,1420308950 +15938,102903,stage magic,1420308936 +15938,103228,poor acting performance,1420308002 +15938,103228,ridiculous,1420307809 +15938,103228,robots,1420307800 +15938,103228,sci-fi,1420307789 +15938,103228,visually appealing,1420307800 +15938,109578,mc donnald's product,1420308800 +15938,110102,crappy,1419070977 +15938,112556,David Fincher,1418068259 +15938,112556,Psychopathy,1418068216 +15938,112556,unpredictable,1418068204 +15938,119145,absourd,1425035062 +15938,119145,humour,1425035046 +15938,119145,james bond,1425035051 +15938,119145,violent,1425035040 +15938,129354,easy to watch,1425724160 +15938,129354,good sense of humour,1425723995 +15938,129354,swindle,1425724148 +15938,129354,thief,1425724058 +15938,129354,unexpected end,1425724010 +15961,2579,Christopher Nolan,1165025844 +15961,3676,brilliant,1140148824 +15961,4226,Christopher Nolan,1165024681 +15961,5935,insane,1140148790 +15961,6222,lame,1139677533 +15961,26152,fun,1140149226 +15961,26231,Nicolas Roeg,1170547158 +15961,42021,Lee Pace,1213469414 +15961,48598,Lee Pace,1213469401 +15961,48780,Christopher Nolan,1165024526 +15961,49314,Christian Bale,1170546710 +15961,49822,Lee Pace,1213469356 +15961,49932,David Lynch,1179693463 +15961,51662,Absolutely retarded,1197387629 +15961,51662,masturbatory garbage,1197387762 +15961,51662,Zack Snyder has the mentality of a 13 year old boy,1197387646 +15961,55284,Reese Witherspoon is a cunt,1197386647 +15961,58490,Lee Pace,1213469185 +15961,59387,Lee Pace,1213469335 +15967,260,sci fi,1441621606 +15967,260,Science Fiction,1441621577 +15967,260,space epic,1441621619 +16023,260,EPIC,1440904454 +16023,260,masterpiece,1440904462 +16069,4011,cynical,1420409814 +16069,4011,dark comedy,1420409808 +16069,4011,multiple storylines,1420409795 +16069,57669,dark comedy,1420409755 +16071,96821,relatable,1350712165 +16084,260,Science Fiction,1434545699 +16084,260,space adventure,1434545674 +16084,2318,dark,1434546364 +16084,2318,dark comedy,1434546359 +16084,2318,dark humor,1434546361 +16084,2318,father-son relationship,1434546368 +16084,2318,relationships,1434546376 +16094,953,favourite,1196478247 +16094,1219,favourite,1196478957 +16094,1220,favourite,1196479688 +16094,1230,favourite,1196479920 +16094,3310,favourite,1196477884 +16094,3362,favourite,1196478535 +16094,5473,favourite,1196478093 +16094,25827,favourite,1196478224 +16094,48738,favourite,1196478600 +16138,260,Groundbreaking,1433016698 +16138,260,Retro,1433016710 +16166,2340,Brad Pitt,1431988721 +16166,2959,Brad Pitt,1431988751 +16166,2959,fighting,1431988756 +16169,109627,australia,1424983954 +16169,109627,mystery,1424983954 +16169,109627,slow,1416632725 +16169,111844,danny glover,1424137200 +16169,111844,danny trejo,1424137200 +16169,111844,epic beard man,1424137200 +16169,112895,boring,1417060983 +16169,112895,low budget,1417060989 +16169,112895,slow,1417060974 +16169,116138,slow,1434161628 +16169,116897,dark humor,1435536833 +16169,116907,documentary,1421383591 +16169,116907,obesity,1421383591 +16169,116907,sugar,1421383591 +16169,134368,espionage,1443407370 +16169,143209,Monsters,1446410692 +16193,27186,Africa,1181937184 +16200,750,based on a book,1443924565 +16200,750,black comedy,1443924561 +16200,750,dark comedy,1443924558 +16200,2959,surreal,1443925109 +16200,3535,dark comedy,1443924952 +16200,94959,Bill Murray,1443924459 +16200,94959,cinematography,1443924478 +16200,94959,coming of age,1443924480 +16200,94959,quirky,1443924452 +16200,94959,stylized,1443924448 +16200,94959,surreal,1443924474 +16200,94959,Wes Anderson,1443924456 +16208,2692,energizing,1345250658 +16208,2692,intense,1345250666 +16208,2692,original,1345250678 +16208,2692,time loop,1345250695 +16208,4702,first-person,1345253115 +16208,4702,original,1345250733 +16208,4702,weirdtopia,1345250769 +16208,27469,allegorical,1345003606 +16208,27469,hypnotic,1345003578 +16208,89582,disturbing,1345004998 +16223,260,good vs evil,1439756400 +16223,260,great story,1439756387 +16235,904,Inadvertently named after anal sex,1180675649 +16235,2006,Slashy,1180676120 +16235,4448,Heist,1180918737 +16235,5225,Slashy,1180919220 +16235,5378,sand in uncomfortable places,1180676261 +16235,6947,Slashy,1180898282 +16235,7325,Slashy,1180897360 +16235,39183,Slashy,1180921270 +16246,260,best movie ever,1432479989 +16316,367,jim carrey,1218358002 +16316,367,superhero,1218357978 +16316,733,Nicolas Cage,1218358068 +16316,733,Sean Connery,1218358065 +16316,1265,time travel,1218358072 +16316,2355,Pixar,1218358020 +16317,52170,dark comedy,1433952771 +16317,52170,mafia,1433952771 +16317,52170,street life,1433952771 +16321,96832,brecht,1434738974 +16321,96832,surreal,1434738964 +16323,260,scifi,1435619755 +16323,260,space,1435619765 +16323,260,space action,1435619761 +16323,78772,love,1435779889 +16323,78772,supernatural,1435779889 +16323,78772,vampires,1435779889 +16323,78772,werewolves,1435779889 +16351,8961,bond,1138744231 +16381,47,horror,1395466146 +16381,47,mystery,1395466140 +16381,47,twist ending,1395466127 +16381,4370,bittersweet,1395466678 +16381,4370,sci-fi,1395466683 +16381,51931,sad but good,1395513078 +16381,96917,Creepy good,1395464460 +16382,5496,"Italian ""Postman Always Rings Twice""",1164754356 +16382,8982,dreadful,1164677991 +16382,34338,Vulgar,1139078579 +16382,52375,bland bio of clifford irving,1186978721 +16382,79897,great acting,1296677281 +16382,83369,maybe true survival tale,1308020079 +16382,103366,other title Redemption,1418797767 +16382,112261,Silliness,1403059633 +16389,2599,Reese Witherspoon,1146002150 +16389,4447,Reese Witherspoon,1146002167 +16389,5380,Reese Witherspoon,1146002129 +16389,5620,Reese Witherspoon,1146002177 +16389,6535,Reese Witherspoon,1146002189 +16389,8833,Reese Witherspoon,1146002016 +16414,58559,Batman,1438476599 +16414,58559,Heath Ledger,1438476597 +16414,58559,psychology,1438476607 +16414,58559,superhero,1438476601 +16414,58559,violence,1438476610 +16414,70286,aliens,1438476023 +16414,70286,justice,1438476034 +16414,70286,sci-fi,1438476025 +16414,85414,parallel universe,1438476065 +16414,85414,time loop,1438476074 +16414,122882,desert,1438476181 +16414,122882,never stop,1438476181 +16414,122882,women's rights,1438476181 +16421,29,weird,1368778422 +16421,32,original,1368778158 +16421,50,storytelling,1368778258 +16421,111,loneliness,1368778305 +16421,204,action,1368778386 +16421,508,dramatic,1368778371 +16421,804,relationships,1368778401 +16421,858,oscar (best directing),1368778340 +16421,1079,black comedy,1241222455 +16421,1079,Jamie Lee Curtis,1241222459 +16421,1079,John Cleese,1241222463 +16421,1079,NOTHING GOES RIGHT,1241222467 +16421,1079,Oscar (Best Supporting Actor),1241222500 +16421,1079,quirky,1241222491 +16421,1079,witty,1241222471 +16421,1089,original,1368778158 +16421,1175,weird,1368778422 +16421,1199,weird,1368778422 +16421,1220,car chase,1241222584 +16421,1220,Chicago,1241222591 +16421,1220,feel good movie,1241222580 +16421,1220,John Belushi,1241222641 +16421,1220,notable soundtrack,1241222618 +16421,1220,rhythm & blues,1241222600 +16421,1220,road movie,1241222603 +16421,1220,surreal,1241222606 +16421,1270,1980s,1241222532 +16421,1270,easygoing,1241222539 +16421,1270,high school,1241222545 +16421,1270,RACE AGAINST TIME,1241222550 +16421,1270,time travel,1241222527 +16421,1275,mentor,1368778198 +16421,1307,relationships,1368778401 +16421,1466,mentor,1368778198 +16421,1527,visually appealing,1368778438 +16421,1552,action,1368778386 +16421,1608,action,1368778386 +16421,1639,relationships,1368778401 +16421,1682,philosophy,1178469079 +16421,1682,reality TV,1178469079 +16421,1682,smalltown,1178469079 +16421,1704,mentor,1368778198 +16421,1722,action,1368778386 +16421,1772,atmosphere,1341313467 +16421,1772,music,1341313458 +16421,2076,weird,1368778422 +16421,2167,action,1368778386 +16421,2262,relationships,1368778401 +16421,2291,original,1368778158 +16421,2335,comedy,1368778216 +16421,2371,comedy,1368778216 +16421,2420,mentor,1368778198 +16421,2502,Jennifer Aniston,1241222706 +16421,2502,satire,1241222693 +16421,2502,stupidity,1241222720 +16421,2918,1980s,1241222300 +16421,2918,Charlie Sheen,1241222291 +16421,2918,comedy,1241222307 +16421,2918,fun,1241222295 +16421,2918,High School,1241222281 +16421,2918,Matthew Broderick,1241222284 +16421,3421,comedy,1368778216 +16421,3986,action,1368778386 +16421,4626,End of the world,1241222371 +16421,4626,ending,1341313424 +16421,4626,Music by Tangerine Dream,1241222353 +16421,4626,style,1341313441 +16421,4878,original,1368778158 +16421,4878,weird,1368778422 +16421,5878,loneliness,1368778306 +16421,5945,loneliness,1368778305 +16421,6188,comedy,1368778216 +16421,8641,comedy,1368778216 +16421,8981,relationships,1368778401 +16421,26614,easily confused with other movie(s) (title),1231023865 +16421,27158,overacting,1341313363 +16421,37729,visually appealing,1368778438 +16421,43391,alcoholism,1231023497 +16421,43391,Finnish,1231023497 +16421,43391,ski jumping,1231023497 +16421,43391,sports hero,1231023497 +16421,54787,Violence,1390090398 +16421,60760,Amanda Peet,1241222140 +16421,60760,Billy Connolly,1241222144 +16421,60760,David Duchovny,1241222075 +16421,60760,FBI,1241222089 +16421,60760,Gillian Anderson,1241222079 +16421,60760,Mitch Pileggi,1241222084 +16421,60760,Violence towards dogs,1241222120 +16421,60760,Xzibit,1241222131 +16421,72998,3d,1261176284 +16421,72998,badass colonel,1261176284 +16421,72998,big explosions,1261176284 +16421,72998,cgi,1261176416 +16421,72998,dances with wolves retelling,1261176281 +16421,72998,sci-fi,1261176284 +16421,72998,sigorney weaver,1261176284 +16421,72998,stunning,1261176284 +16421,72998,too long,1261176278 +16421,72998,visual,1261176284 +16421,87408,dark,1341313166 +16421,87408,juvenile,1341313219 +16421,87408,rebel,1341313210 +16421,87408,social commentary,1341313180 +16421,92715,easily confused with another title,1333235869 +16421,94466,not a movie,1420541394 +16421,103306,Found footage,1389718147 +16421,103306,hard science fiction,1389718162 +16421,104841,cgi,1388347765 +16421,104841,intense,1388347761 +16421,104841,physics,1388347738 +16421,104841,plot,1388347770 +16421,104841,space,1388347748 +16421,104841,visually appealing,1388347752 +16421,104841,visually stunning,1388347756 +16421,122886,BB-8,1451916329 +16421,122886,Fan service,1451916349 +16421,122886,Gwendoline Christie,1451916336 +16421,122886,Harrison Ford,1451916317 +16421,122886,Plot Recycling,1451916311 +16421,122886,space,1451916327 +16439,1,clever,1144451329 +16439,58,poetry primer,1144451283 +16439,1234,never gets old,1144451295 +16456,16,gangsters,1332019566 +16456,16,imdb top 250,1253399062 +16456,16,las vegas,1253399054 +16456,16,mafia,1253399022 +16456,16,Martin Scorsese,1253399020 +16456,16,narrated,1332019586 +16456,16,Robert De Niro,1253399013 +16456,16,Sharon Stone,1253399046 +16456,380,Arnold Schwarzenegger,1248217186 +16456,380,comedy,1248217193 +16456,380,espionage,1248217188 +16456,380,spies,1248217207 +16456,680,dystopia,1241465175 +16456,680,FUTURE DYSTOPIAS,1241465167 +16456,680,Jean-Luc Godard,1241465156 +16456,911,Audrey Hepburn,1244417679 +16456,911,Cary Grant,1244417709 +16456,911,humorous,1244417743 +16456,911,surprise ending,1244417793 +16456,1077,Diane Keaton,1248388347 +16456,1077,futuristic,1248388354 +16456,1077,time travel,1248388376 +16456,1077,Woody Allen,1248388342 +16456,2011,cliffhanger,1249684580 +16456,2011,Michael J. Fox,1249684547 +16456,2011,multiple roles,1249684573 +16456,2011,sci-fi,1249684545 +16456,2011,sequels filmed simultaneously,1249684551 +16456,2011,time travel,1249684545 +16456,2012,multiple roles,1249773022 +16456,2012,sci-fi,1249773005 +16456,2012,science fiction,1249773018 +16456,2012,sequels filmed simultaneously,1249773014 +16456,2012,time travel,1249773010 +16456,2012,western,1249773002 +16456,2890,black comedy,1349548647 +16456,2890,comedy,1349548635 +16456,2890,humorous,1349548641 +16456,2890,satirical,1349548653 +16456,2890,stylized,1349548639 +16456,2985,android(s)/cyborg(s),1255126255 +16456,2985,cyborgs,1255126220 +16456,2985,dystopia,1255126207 +16456,2985,Paul Verhoeven,1255126212 +16456,2985,robots,1255126223 +16456,2985,sci-fi,1255126217 +16456,3168,notable soundtrack,1259106483 +16456,3168,road trip,1259106488 +16456,3168,sex,1259106500 +16456,3168,stoner movie,1259106485 +16456,3168,United States,1259106504 +16456,3949,based on a book,1244936343 +16456,3949,dark,1244936340 +16456,3949,depressing,1244936337 +16456,3949,disturbing,1244936333 +16456,3949,imdb top 250,1244936360 +16456,3949,independent film,1244936355 +16456,3949,psychology,1244936320 +16456,5445,Philip K. Dick,1287313810 +16456,5445,Steven Spielberg,1287313812 +16456,5445,Tom Cruise,1287313805 +16456,5638,Godzilla,1245023402 +16456,5638,Kaiju,1245023506 +16456,5638,Mothra,1245023416 +16456,5638,Toho Company Ltd.,1245023490 +16456,5638,Tokusatsu Kaiju,1245023524 +16456,8142,gore,1332189715 +16456,8142,Takashi Miike,1332189686 +16456,8142,violence,1332189705 +16456,8142,yakuza,1332189695 +16456,26159,Seijun Suzuki,1262822865 +16456,31672,Hark Tsui,1245774688 +16456,32078,Godzilla,1245023585 +16456,32078,Kaiju,1245023585 +16456,32078,Toho Company Ltd.,1245023596 +16456,32078,Tokusatsu Kaiju,1245023585 +16456,53519,car chase,1360929599 +16456,53519,dialogue,1360929558 +16456,53519,great dialogue,1360929562 +16456,53519,Quentin Tarantino,1360929596 +16456,53519,slow paced,1360929585 +16456,53996,80s nostalgia,1245544832 +16456,53996,android(s)/cyborg(s),1245544830 +16456,53996,enormously long battle scene,1245544828 +16456,53996,giant robots,1245544817 +16456,53996,Michael Bay,1245544805 +16456,53996,robots,1245544822 +16456,53996,Shia LaBeouf,1245544808 +16456,56251,animation,1260210124 +16456,56251,Based on a TV show,1260210125 +16456,56251,billy west,1260210127 +16456,56251,futurama,1260210100 +16456,56251,john di maggio,1260210131 +16456,56251,sci fi,1260210104 +16456,57502,anime,1246231033 +16456,57502,based on comic,1246231033 +16456,57502,based on manga,1246231130 +16456,57502,cats,1246231045 +16456,57502,psychedelic,1246231115 +16456,57502,short film,1246231072 +16456,57502,surreal,1246231115 +16456,58559,Batman,1246140054 +16456,58559,comics,1246140069 +16456,68237,Sci-fi,1260660769 +16456,81690,Pen-Ek Ratanaruang,1295132281 +16456,88129,action,1432637541 +16456,88129,atmospheric,1432637486 +16456,88129,lack of character,1432637500 +16456,88129,minimalistic,1432637553 +16456,88129,Nudity (Topless),1432637537 +16456,88129,Ryan Gosling,1432637515 +16456,88129,slow,1432637543 +16456,88129,stylized,1432637526 +16456,88129,tense,1432637524 +16456,88129,violence,1432637490 +16456,88129,visually appealing,1432637494 +16456,104099,anime,1408198601 +16456,104099,Lupin III,1408198599 +16456,104099,Nudity (Animated),1408198604 +16456,104099,Nudity (Topless),1408198607 +16456,106109,costume drama,1415537549 +16456,106109,dramatic,1415537553 +16456,106109,historical,1415537551 +16456,106109,humorous,1415537547 +16456,106920,bittersweet,1410172919 +16456,106920,dystopia,1410172931 +16456,106920,horrifying (but not Horror genre),1410172936 +16456,106920,original,1410172948 +16456,106920,psychology,1410172946 +16456,106920,Scarlett Johansson,1410172942 +16456,106920,sci-fi,1410172927 +16456,106920,thought-provoking,1410172944 +16482,296,mature,1429769771 +16482,91529,Robin,1429769733 +16497,296,Black comedy,1241126314 +16497,296,dark comedy,1241126311 +16497,296,multiple storylines,1241126308 +16497,296,nonlinear,1241126310 +16497,778,black comedy,1254348630 +16497,778,British,1254348632 +16497,778,dark comedy,1254348628 +16497,778,imdb top 250,1254348639 +16497,778,Nudity (Full Frontal - Notable),1254348639 +16497,1845,noir,1249903624 +16497,1845,off-beat comedy,1249903619 +16497,2594,better than the american version,1254348601 +16497,2594,Dark,1254348600 +16497,2594,mindfuck,1254348597 +16497,2594,Nudity (Topless - Notable),1254348607 +16497,2594,Nudity (Topless),1254348609 +16497,2594,Twist ending,1254348617 +16497,2692,alternate endings,1244310544 +16497,2692,humorous,1244310554 +16497,2692,imdb top 250,1244310557 +16497,2692,nonlinear,1244310552 +16497,2692,surreal,1244310549 +16497,3285,Danny Boyle,1248477470 +16497,3285,Nudity (Topless),1248477473 +16497,3285,travel,1248477481 +16497,3285,Very interesting,1248477483 +16497,4011,british,1241126295 +16497,4011,comedy,1241126277 +16497,4011,cynical,1241126287 +16497,4011,Great dialogue,1241126273 +16497,4011,Hilarious,1241126285 +16497,4011,imdb top 250,1241126283 +16497,5015,Halle Berry,1248566303 +16497,5015,Nudity (Full Frontal - Notable),1248566281 +16497,5015,Nudity (Full Frontal),1248566289 +16497,7022,controversial,1283555547 +16497,7022,satire,1283555549 +16497,7022,survival,1283555543 +16497,8874,black comedy,1241126194 +16497,8874,British,1241126188 +16497,8874,comedy,1241126189 +16497,8874,dark humor,1241126196 +16497,8874,Edgar Wright,1241126202 +16497,8874,parody,1241126215 +16497,8874,shakespeare,1241126221 +16497,8874,Simon Pegg,1241126200 +16497,8874,zombie,1241126207 +16497,8874,zombies,1241126211 +16497,32587,black comedy,1241126248 +16497,32587,imdb top 250,1241126244 +16497,32587,multiple storylines,1241126252 +16497,34405,action,1280623161 +16497,34405,black comedy,1280623154 +16497,34405,dystopia,1280623177 +16497,34405,space,1280623180 +16497,38061,black comedy,1241126096 +16497,38061,crude humor,1241126118 +16497,38061,dark comedy,1279674625 +16497,38061,Film Noir,1241126100 +16497,38061,funny,1279674622 +16497,38061,Nudity (Topless),1279674615 +16497,38061,plot twist,1279674618 +16497,38061,satire,1241126107 +16497,38061,witty,1241126106 +16497,44191,dystopia,1241126156 +16497,44191,imdb top 250,1241126170 +16497,44191,thought-provoking,1241126166 +16497,44195,dark comedy,1247940270 +16497,44195,dark humor,1247940272 +16497,44195,funny,1247940274 +16497,44195,satire,1247940269 +16497,57669,dark comedy,1250290052 +16497,60950,bisexual,1254348565 +16497,60950,chick flick,1254348557 +16497,60950,narrated,1254348555 +16497,60950,Scarlett Johansson,1254348562 +16497,61240,Beautiful,1262620164 +16497,61240,black humour,1262620155 +16497,61240,imdb top 250,1262620151 +16497,61240,swedish,1262620160 +16497,63072,post-apocalyptic,1273450249 +16497,63072,tense,1273450254 +16497,63082,nonlinear,1254348653 +16497,68157,IMDB Top 250,1261969850 +16497,68157,Quentin Tarantino,1261969847 +16497,68157,satire,1261969844 +16497,68237,Sci-fi,1265509776 +16497,69122,comedy,1247362698 +16497,69122,Las Vegas,1247362706 +16497,69481,Evangeline Lilly,1263385404 +16497,69481,intense,1263385411 +16497,69481,Ralph Fiennes,1263385417 +16497,69481,realistic,1262664028 +16497,69481,thoughtful,1267402636 +16497,69757,chick flick,1262319424 +16497,69757,cynicism,1262319419 +16497,69757,humor,1262319411 +16497,69757,Zooey Deschanel,1262319410 +16497,70286,aliens,1252370691 +16497,70286,fake documentary,1252370693 +16497,70286,genetics,1252370689 +16497,70286,humor,1252370718 +16497,70286,IMDB Top 250,1252370704 +16497,70286,intelligent sci-fi,1252370685 +16497,70286,plot hole,1252370698 +16497,70286,redemption,1252370682 +16497,70286,segregation,1252370687 +16497,76251,humorous,1281836919 +16497,81591,atmospheric,1296338811 +16497,81591,Mila Kunis,1296338801 +16497,81591,Natalie Portman,1296338795 +16503,129354,predictable,1431613427 +16503,129354,swindle,1431613442 +16573,1080,British,1279339303 +16573,1080,Monty Python,1279339296 +16573,1080,satire,1279339300 +16573,1213,based on a book,1277595138 +16573,1213,Joe Pesci,1277595133 +16573,1213,Martin Scorsese,1277595153 +16573,1213,narrated,1277595150 +16573,1213,organized crime,1277595112 +16573,1213,Robert De Niro,1277595119 +16573,1220,"""We're on a mission from god""",1277950610 +16573,2539,Robert De Niro,1277595200 +16573,8874,black comedy,1279338996 +16573,8874,british comedy,1279338993 +16573,8874,Edgar Wright,1279339020 +16573,8874,parody,1279338999 +16573,51255,black comedy,1279339129 +16573,51255,british comedy,1279339131 +16573,51255,Edgar Wright,1279339145 +16573,64614,racism,1277344514 +16573,74458,psychological,1279393394 +16730,1212,Orson Welles,1255237271 +16730,5618,dreamlike,1255237082 +16730,5618,hallucinatory,1255237077 +16743,356,hope,1431579525 +16743,356,innocence,1431579525 +16743,356,perseverance,1431579525 +16776,5618,adventure,1403367160 +16776,5618,animation,1403367153 +16776,5618,fantasy,1403367166 +16776,5618,Hayao,1403367145 +16787,92259,based on a true story,1453752128 +16787,92259,french comedy,1453752123 +16787,92259,friendship,1453752106 +16787,92259,inspirational,1453752118 +16787,92259,rich and poor,1453752113 +16787,92259,unlikely friendships,1453752138 +16800,1246,poetry,1162773872 +16824,68157,dark comedy,1445013513 +16824,68157,Quentin Tarantino,1445013520 +16824,68157,visually appealing,1445013517 +16824,72226,Bill Murray,1445013410 +16824,72226,quirky,1445013407 +16824,72226,Wes Anderson,1445013398 +16824,96821,amazing soundtrack,1445716398 +16824,130494,Sweden,1450111749 +16824,130494,WW2,1450111737 +16846,1245,Coen Brothers,1218979133 +16856,1203,ghosts,1191422965 +16874,260,classic sci-fi,1437721898 +16874,260,good vs evil,1437721846 +16874,356,beautiful,1437722528 +16874,356,classic,1437722528 +16874,356,emotional,1437722528 +16874,924,genius,1437722237 +16874,924,insightful,1437722248 +16874,924,revolutionary,1437722226 +16874,924,symbolic,1437722215 +16887,112552,jazz,1438244319 +16887,112552,music,1438244319 +16887,112552,strive,1438244319 +16888,55290,multilayered,1202847523 +16911,5525,food,1400881154 +16918,260,classic,1439790188 +16918,260,sci-fi,1439790182 +16941,50804,serial killer,1299622237 +16942,95449,strippers,1452885646 +16952,4802,Tony Curtis,1423692978 +16952,47491,the best one,1423693080 +16962,59387,beautiful,1238623195 +16962,59387,story-in-a-story,1238623108 +16962,59387,surreal,1238623104 +16975,85414,action,1450378236 +16975,85414,happy ending,1450378247 +16975,85414,intelligent,1450378250 +16975,85414,interesting,1450378243 +16975,85414,Jake Gyllenhaal,1450378244 +16975,109487,philosophical issues,1450378958 +16975,109487,plot holes,1450378965 +16975,109487,sci-fi,1450378973 +16978,69844,disappointing,1262565391 +16978,69844,franchise,1262565404 +16978,69844,magic,1262565399 +16983,2289,Nudity (Topless - Brief),1228913935 +16987,296,Quentin Tarantino,1234894429 +17010,2403,classic,1423999701 +17010,2403,Sylvester Stallone,1423999688 +17014,260,sci-fi,1438963120 +17014,260,star wars,1438963111 +17014,296,tarantino,1438963496 +17014,858,classic,1438963248 +17014,858,mafia,1438963250 +17014,1203,crime,1438963397 +17014,1252,Jack Nicholson,1438963443 +17014,1252,mystery,1438963437 +17014,1252,Roman Polanski,1438963448 +17014,4226,thriller,1438963423 +17014,4979,Wes Anderson,1438963334 +17014,109487,sci-fi,1438963276 +17055,912,AFI 100,1240860143 +17055,912,atmospheric,1240860141 +17055,912,bittersweet,1240860136 +17055,912,black and white,1240860147 +17055,912,classic,1240860150 +17055,912,drama,1240860153 +17055,912,espionage,1240860155 +17055,912,Film Noir,1240860158 +17055,912,humorous,1240860162 +17055,912,Humphrey Bogart,1240860133 +17055,912,imdb top 250,1240860166 +17055,912,murder,1240860170 +17055,912,Nazis,1240860173 +17055,912,Oscar (Best Directing),1240860176 +17055,912,Oscar (Best Picture),1240860179 +17055,912,romance,1240860183 +17055,912,sentimental,1240860185 +17055,912,war,1240860191 +17055,912,World War II,1240860189 +17055,912,wwii,1240860195 +17055,930,Alfred Hitchcock,1322762194 +17055,930,Cary Grant,1322762200 +17055,930,Ingrid Bergman,1322762204 +17055,953,alternate reality,1322761960 +17055,953,angel,1322761957 +17055,953,Christmas,1322761963 +17055,953,Frank Capra,1322761938 +17055,953,inspirational,1322761953 +17055,953,James Stewart,1322761913 +17055,954,boy scouts,1322762043 +17055,954,FIGHTING THE SYSTEM,1322762026 +17055,954,Frank Capra,1322762019 +17055,954,James Stewart,1322762016 +17055,954,Jean Arthur,1322762099 +17055,954,political,1322762036 +17055,1663,Bill Murray,1322760523 +17055,1663,Harold Ramis,1322760521 +17055,1663,John Candy,1322760570 +17055,2181,Alfred Hitchcock,1322762293 +17055,2181,Sean Connery,1322762301 +17055,2181,Tippi Hedren,1322762312 +17055,2640,adapted from:comic,1240859794 +17055,2640,aliens,1240859828 +17055,2640,alter ego,1240859809 +17055,2640,based on a comic,1240859804 +17055,2640,big budget,1240859833 +17055,2640,comic book,1240859782 +17055,2640,Comic Book adaption,1240859815 +17055,2640,comic books,1240859818 +17055,2640,DC,1240859823 +17055,2640,DC Comics,1240859785 +17055,2640,franchise,1240859837 +17055,2640,Gene Hackman,1240859841 +17055,2640,humorous,1240859855 +17055,2640,Marlon Brando,1240859845 +17055,2640,sci-fi,1240859850 +17055,2640,super-hero,1240859779 +17055,2640,superhero,1240859789 +17055,2640,tense,1240859858 +17055,2640,upbeat,1240859862 +17055,3068,courtroom drama,1322763145 +17055,3068,James Mason,1322763155 +17055,3068,Paul Newman,1322763148 +17055,5015,want to see again,1240859726 +17055,7482,Bruce Lee,1322763272 +17055,7482,John Saxon,1322763284 +17055,7482,kung fu,1322763282 +17055,7482,Martial Arts flick,1322763291 +17055,25827,Frank Capra,1322762064 +17055,25827,Gary Cooper,1322762066 +17055,25827,Jean Arthur,1322762070 +17055,64229,Adrien Brody,1240859625 +17055,64229,ClearPlay,1240859669 +17055,64229,Eamonn Walker,1240859678 +17055,64229,Emmanuelle Chriqui,1240859672 +17055,64229,history,1240859665 +17055,64229,Jeffrey Wright,1240859645 +17055,64229,Mos Def,1240859641 +17055,64229,music business,1240859661 +17055,64229,R,1240859657 +17055,64229,toplist08,1240859682 +17055,64839,100 Essential Female Performances,1241448336 +17055,64839,aging,1241448342 +17055,64839,Aronofski,1241448345 +17055,64839,Darren Aronofsky,1241448348 +17055,64839,Evan Rachel Wood,1241448355 +17055,64839,Marisa Tomei,1241448315 +17055,64839,Mark Margolis,1241448362 +17055,64839,Mickey Rourke,1241448310 +17055,64839,movie to see,1241448369 +17055,64839,no clear ending,1241448373 +17055,64839,old,1241448376 +17055,64839,protagonist try to make things good,1241448380 +17055,64839,Rocky,1241448383 +17055,64839,sport,1241448385 +17055,64839,sports,1241448388 +17055,64839,steroids,1241448393 +17055,64839,strippers,1241448396 +17055,64839,To See,1241448399 +17055,64839,toplist08,1241448402 +17055,64839,wrestling,1241448328 +17055,68319,comic book,1242070432 +17055,68319,Comic Book adaption,1242070435 +17055,68319,hugh jackman,1242070437 +17055,68319,inconsistent with other movies,1242070443 +17055,68319,sequel,1242070448 +17055,68319,superhero,1242070464 +17055,68319,too many characters,1242070454 +17055,68358,action,1242070395 +17055,68358,adventure,1242070391 +17055,68358,alternate reality,1242070387 +17055,68358,badass,1242070383 +17055,68358,Bechdel Test:Pass (technically but not really),1242070377 +17055,68358,far future,1242070367 +17055,68358,fast paced,1242070364 +17055,68358,jj abrams,1242070354 +17055,68358,murder,1242070357 +17055,68358,reboot,1242070344 +17055,68358,sci fi,1242070347 +17055,68358,slashy,1242070350 +17055,68358,space,1242070338 +17055,68358,spock,1242070341 +17055,68358,Star Trek,1242070323 +17055,68358,time travel,1242070333 +17055,68358,unrealistic,1242070327 +17055,68954,adventure,1244429867 +17055,68954,ballooning,1244429869 +17055,68954,computer animation,1244429873 +17055,68954,dreams,1244429876 +17055,68954,friendship,1244429878 +17055,68954,heartbreaking,1244429847 +17055,68954,Peter Docter,1244429865 +17055,68954,Pixar,1244429857 +17055,68954,so well done,1244429861 +17055,68954,storytelling,1244429851 +17055,68954,talking dog,1244429889 +17055,68954,To See,1244429894 +17055,69122,comedy,1280237138 +17055,69122,Las Vegas,1280237141 +17055,70293,Amy Adams,1280236886 +17055,70293,based on a book,1280236876 +17055,70293,cooking,1280236878 +17055,70293,food,1280236848 +17055,70293,france,1280236873 +17055,70293,inspiring,1280236897 +17055,70293,Julia Child,1280236851 +17055,70293,lighthearted,1280236854 +17055,70293,Meryl Streep,1280236843 +17055,70293,Stanley Tucci,1280236869 +17055,70293,uplifting,1280236894 +17055,71264,Anna Faris,1280237207 +17055,71264,based on a book,1280237213 +17055,71264,Bruce Campbell,1280237197 +17055,71264,Mr. T,1280237202 +17055,72998,aliens,1278024116 +17055,72998,beautiful scenery,1278024120 +17055,72998,futuristic,1278024124 +17055,72998,race issues,1278024091 +17055,72998,Sam Worthington,1278024110 +17055,72998,Sigourney Weaver,1278024097 +17055,72998,special effects,1278024106 +17055,77364,Idris Elba,1280236994 +17055,77364,Jeffrey Dean Morgan,1280236991 +17055,78041,Ashton Kutcher,1280237319 +17055,78041,Catherine O'Hara,1280237316 +17055,78041,Tom Selleck,1280237324 +17055,79132,complicated,1297792883 +17055,79132,dreamlike,1297792855 +17055,79132,ensemble cast,1297792876 +17055,79132,Leonardo DiCaprio,1297792872 +17055,79132,Paris,1297792867 +17055,79132,surreal,1297792852 +17055,79132,thought-provoking,1297792849 +17055,80463,computers,1297792921 +17055,80463,dark comedy,1297792923 +17055,80463,friendship,1297792925 +17055,80463,true story,1297792927 +17055,81229,action,1297793008 +17055,81229,Bruce Willis,1297792975 +17055,81229,Helen Mirren,1297792977 +17055,81229,John Malkovich,1297792997 +17055,81229,Morgan Freeman,1297792993 +17055,86298,adventure,1306182139 +17055,86298,animation,1306182135 +17055,86298,Anne Hathaway,1306182118 +17055,86298,Comedy,1306182128 +17055,86298,music,1306182125 +17055,86332,3d,1306182193 +17055,86332,adapted from:comic,1306182189 +17055,86332,Anthony Hopkins,1306182180 +17055,86332,comic book,1306182186 +17055,86332,Kat Dennings,1306182175 +17055,86332,superhero,1306182171 +17055,87430,comic book,1322762704 +17055,87430,Green Lantern,1322762717 +17055,87430,Martin Campbell,1322762727 +17055,87430,Ryan Reynolds,1322762763 +17055,87430,superpowers,1322762710 +17055,88810,racism,1322760018 +17055,88810,segregation,1322760016 +17055,88810,setting:1960s,1322760022 +17055,89492,baseball,1322758986 +17055,89492,Brad Pitt,1322758992 +17055,89492,Philip Seymour Hoffman,1322758995 +17067,318,classic,1424656967 +17067,318,imdb top 250,1424656972 +17067,858,Al Pacino,1424657233 +17067,858,Marlon Brando,1424657235 +17067,3147,great acting,1424657078 +17067,3147,Tom Hanks,1424657077 +17067,3996,martial arts,1424657283 +17067,4995,psychology,1424657307 +17067,6539,johnny depp,1424657272 +17067,7153,fantasy,1424657294 +17067,7438,blood,1424657453 +17067,7438,guangzhou,1424657432 +17067,7438,Quentin Tarantino,1424657341 +17067,7502,military,1424656998 +17067,7502,World War II,1424657000 +17067,33794,Christian Bale,1424657325 +17067,48780,Christian Bale,1424657101 +17067,48780,Christopher Nolan,1424657097 +17067,48780,sci-fi,1424657100 +17067,109374,eastern europe,1424657198 +17067,109374,Wes Anderson,1424657201 +17067,109487,Christopher Nolan,1424657153 +17067,112552,education,1424657494 +17067,112552,J.K. Simmons,1424657180 +17067,112552,music,1424657494 +17075,318,hope,1423869025 +17075,318,Morgan Freeman,1423868987 +17075,318,powerful ending,1423869013 +17075,318,prison,1423869006 +17075,318,prison escape,1423869037 +17075,318,reflective,1423869020 +17075,318,revenge,1423869027 +17075,318,Stephen King,1423869000 +17075,318,thought-provoking,1423868996 +17075,318,Tim Robbins,1423868994 +17075,1704,Ben Affleck,1423869064 +17075,1704,inspirational,1423869071 +17075,1704,Robin Williams,1423869061 +17075,2571,alternate reality,1423869255 +17075,2571,artificial intelligence,1423869253 +17075,2571,computers,1423869245 +17075,2571,hackers,1423869241 +17075,2571,martial arts,1423869249 +17075,2571,thought-provoking,1423869257 +17075,2571,virtual reality,1423869239 +17075,4995,insanity,1423869152 +17075,4995,intelligent,1423869140 +17075,4995,Jennifer Connelly,1423869150 +17075,4995,mathematics,1423869170 +17075,4995,schizophrenia,1423869137 +17075,79132,cerebral,1423869288 +17075,79132,clever,1423869306 +17075,79132,complicated,1423869279 +17075,79132,dreams,1423869282 +17075,79132,Ellen Page,1423869275 +17075,79132,Michael Caine,1423869304 +17075,79132,mindfuck,1423869272 +17075,80463,complex characters,1423869195 +17075,80463,computers,1423869181 +17075,80463,facebook,1423869204 +17075,80463,funny,1423869208 +17075,80463,hacking,1423869202 +17075,80463,Jesse Eisenberg,1423869178 +17075,80463,nerds,1423869187 +17075,80463,protagonist is a computer programmer,1423869198 +17075,80463,witty,1423869200 +17075,91529,bane,1423869131 +17075,91529,catwoman,1423869131 +17075,91529,meh,1423869131 +17082,27904,cool,1165866633 +17082,39381,nick cave,1165866534 +17082,45730,disappointing,1165785201 +17085,7147,Tim Burton,1162768043 +17085,8950,creepy,1166410695 +17085,8950,guilt,1166410703 +17085,8950,memory,1166410717 +17085,8950,psychology,1166410707 +17091,296,black comedy,1437343555 +17091,296,crime,1437343555 +17091,296,excellent script,1437343555 +17100,26,Shakespeare,1188393276 +17100,419,hillbillies,1188393112 +17100,2409,boxing,1188393092 +17100,2409,fighting,1188393092 +17100,2409,silvester stalone,1188393092 +17100,2412,boxing,1188393260 +17100,2412,fighting,1188393259 +17100,2863,music,1188393130 +17100,2863,the beatles,1188393130 +17100,3668,Shakespeare,1188393323 +17100,3979,Adam Sandler,1188393354 +17100,4006,Robots,1188393340 +17100,4367,angelina jolie,1188392976 +17100,5528,robin williams,1188393158 +17100,6016,drugs,1188393025 +17100,6016,gangsters,1188393025 +17100,6016,ghetto,1188393025 +17100,6953,sean penn,1188393183 +17100,8361,global warming,1188393253 +17100,8957,digusting,1188393307 +17100,41569,islands,1188393237 +17100,41569,king kong,1188393237 +17100,45722,Johnny Depp,1188393217 +17100,45722,Keira Knightley,1188393217 +17100,45722,pirates,1188393217 +17105,260,cordial,1444909948 +17105,260,fairy tale,1444909807 +17109,59315,Marvel,1447663554 +17115,2571,alternate reality,1434334193 +17115,2571,sci-fi,1434334170 +17115,2571,Special Effects,1434334200 +17115,79132,alternate reality,1434334240 +17115,79132,mindfuck,1434334251 +17115,104841,intense,1434334267 +17115,104841,visually stunning,1434334273 +17115,122892,iron man,1434334325 +17115,122892,marvel,1434334325 +17115,122892,non-stop action,1434334325 +17140,47491,danish,1278942452 +17148,457,Harrison Ford,1435097985 +17148,106441,emotional and heroic,1435097802 +17148,106441,meaning of life,1435097802 +17148,106441,tense,1435097802 +17149,260,future,1431180266 +17149,260,space,1431180234 +17149,356,love,1431181184 +17149,356,sorrow,1431181184 +17149,356,strange,1431181184 +17175,260,futuristic,1436110220 +17175,260,sci-fi,1436110209 +17175,318,escape,1437115308 +17175,318,prison,1437115308 +17175,318,wrongful imprisonment,1437115308 +17189,118057,farse,1430496600 +17189,118057,mod,1430496612 +17204,750,dark comedy,1366676044 +17204,2959,dark comedy,1366676088 +17204,58559,psychology,1366676040 +17204,58559,superhero,1366676054 +17206,3176,Gwyneth Paltrow,1191372441 +17206,37386,sci-fi,1429299142 +17206,51455,"""based on true events""",1433187047 +17206,51455,culture clash,1433187047 +17206,51455,lost homeland,1433187047 +17206,56331,feel good movie,1427387252 +17206,56331,foreign,1427387252 +17206,56331,wwii,1427387252 +17206,72980,suicide,1433796970 +17206,72980,will to live,1433796987 +17206,95309,romance,1432064784 +17206,102956,conflicted,1432064687 +17206,102956,loss of loved one,1432064687 +17206,102956,romance,1432064687 +17206,110102,Captain America,1433187376 +17206,110102,Marvel,1433187368 +17206,115713,AI,1433187272 +17206,115713,sci-fi,1433187264 +17206,115713,thriller,1433187285 +17206,115770,lost love,1433187138 +17206,115770,reason to survive,1433187166 +17206,115770,will to live,1433187150 +17206,122892,Marvel,1433187481 +17206,130964,dysfunctional family,1429298686 +17206,130964,father daughter relationship,1429298686 +17206,130964,sentimental,1429298686 +17216,260,classic sci-fi,1440425686 +17216,260,space adventure,1440425690 +17224,70451,war,1373428312 +17246,60,based on book,1368296054 +17246,105,passionate,1368296199 +17246,110,factual,1368295946 +17246,157,politics,1368296143 +17246,172,futuristic,1368295974 +17246,196,alien,1368295695 +17246,196,first contact,1368295735 +17246,208,alone in the world,1368295806 +17246,208,futuristic,1368295974 +17246,222,adapted from:book,1368296163 +17246,288,both in the same prison she is the only woman,1242814289 +17246,316,first contact,1368295735 +17246,316,science fiction,1368295570 +17246,333,funny,1368296014 +17246,347,passionate,1368296199 +17246,440,politics,1368296143 +17246,442,futuristic,1368295974 +17246,780,alien,1368295695 +17246,837,based on book,1368296054 +17246,912,atmospheric,1251152406 +17246,912,classic,1251152387 +17246,919,wizards,1368295887 +17246,1125,series,1368295656 +17246,1127,alien,1368295695 +17246,1183,passionate,1368296199 +17246,1231,factual,1368295946 +17246,1240,futuristic,1368295974 +17246,1241,gruesome,1368295861 +17246,1256,black and white,1251596438 +17246,1274,tokyo,1368296037 +17246,1339,francis ford copolla,1368296112 +17246,1342,gruesome,1368295861 +17246,1354,disturbing,1279376346 +17246,1354,indecent,1279376366 +17246,1354,Lars von Trier,1279376349 +17246,1354,male nudity,1279376361 +17246,1354,Nudity (Full Frontal - Notable),1279376355 +17246,1354,Nudity (Full Frontal),1279376375 +17246,1354,passionate,1279376379 +17246,1356,science fiction,1368295570 +17246,1390,politics,1368296143 +17246,1517,funny,1368296014 +17246,1584,science fiction,1368295570 +17246,1653,futuristic,1368295974 +17246,1653,science fiction,1368295570 +17246,1683,passionate,1368296199 +17246,1809,tokyo,1368296037 +17246,1831,science fiction,1368295570 +17246,1876,first contact,1368295735 +17246,1909,first contact,1368295735 +17246,1909,series,1368295656 +17246,2021,based on book,1368296054 +17246,2021,lynch,1368295999 +17246,2076,lynch,1368295999 +17246,2114,adapted from:book,1368296163 +17246,2140,wizards,1368295887 +17246,2193,wizards,1368295886 +17246,2313,lynch,1368295999 +17246,2336,factual,1368295946 +17246,2363,tokyo,1368296037 +17246,2365,tokyo,1368296037 +17246,2407,alien,1368295695 +17246,2455,gruesome,1368295860 +17246,2539,funny,1368296014 +17246,2694,funny,1368296014 +17246,2916,futuristic,1368295974 +17246,2916,science fiction,1368295570 +17246,2919,politics,1368296143 +17246,2966,lynch,1368295998 +17246,3125,passionate,1368296199 +17246,3146,Rob Schneider,1254039247 +17246,3300,alien,1368295695 +17246,3386,factual,1368295946 +17246,3499,based on book,1368296054 +17246,3811,politics,1368296143 +17246,3917,gruesome,1368295860 +17246,3979,Reese Witherspoon,1185249286 +17246,4061,Reese Witherspoon,1185249321 +17246,4105,gruesome,1368295861 +17246,4279,James Woods,1233112427 +17246,4816,funny,1368296014 +17246,5111,Macaulay Culkin,1236800647 +17246,5319,Argentina,1185091648 +17246,5319,bielinsky,1185091609 +17246,5401,humor,1185088622 +17246,5481,funny,1368296014 +17246,5502,alien,1368295695 +17246,5607,Campanella,1185091396 +17246,5607,Darin,1185091411 +17246,5902,adapted from:book,1368296163 +17246,5952,wizards,1368295886 +17246,6297,adapted from:book,1368296162 +17246,6396,Francis Ford Coppola,1273122904 +17246,7153,wizards,1368295886 +17246,7371,disturbing,1279376427 +17246,7371,Lars von Trier,1279376422 +17246,7371,Nicole Kidman,1279376417 +17246,7420,Elvis Presley,1199520826 +17246,7438,tokyo,1368296037 +17246,7699,fake documental,1185055090 +17246,8368,based on book,1368296054 +17246,8781,politics,1368296143 +17246,8957,gruesome,1368295860 +17246,26840,Japan,1254038927 +17246,26840,Takeshi Kitano,1254038920 +17246,27660,several short films,1233278845 +17246,27706,adapted from:book,1368296163 +17246,30803,deliberate,1277201586 +17246,32392,Alex de la Iglesia,1185089770 +17246,32392,humor,1185089798 +17246,33004,adapted from:book,1368296163 +17246,36436,Lucrecia Martel,1268951417 +17246,36436,Mercedes Morán,1268951368 +17246,40815,based on book,1368296054 +17246,41941,Fabian Bielinsky,1233867471 +17246,41941,Ricardo Darin,1233867483 +17246,44199,the worst of spike lee,1185359240 +17246,48774,alone in the world,1368295806 +17246,54272,all ages,1185176304 +17246,54272,funny,1185176218 +17246,54272,humor,1185176218 +17246,54272,humorous,1185176218 +17246,54272,ironc,1185176218 +17246,54272,Maggie First real word!!! she say it after all titles!!,1185484238 +17246,54272,series,1185176218 +17246,54272,simpsons,1185176218 +17246,54272,the most expected movie,1185176218 +17246,54326,Colombia,1242724171 +17246,54326,Colombia reality,1242724160 +17246,54326,narration,1242724226 +17246,54326,South America,1242724174 +17246,54354,China reality,1242724032 +17246,54997,Russell Crowe,1251617644 +17246,57027,co-production,1238794304 +17246,64716,Drama,1254039375 +17246,64716,Immoral,1254039331 +17246,64716,suicide,1254039322 +17246,64716,Will Smith,1254039338 +17246,65130,Leonardo DiCaprio,1236795251 +17246,72998,James Cameron,1264743627 +17246,72998,military,1264743633 +17246,72998,sci-fi,1264743629 +17246,77829,based on a book,1310331107 +17246,77829,Chicago Boys,1310331155 +17246,77829,politics,1310331114 +17246,95441,Mila Kunis,1440306892 +17264,435,aliens,1370734886 +17264,435,Based on a TV show,1370734894 +17264,435,Coen Brothers,1370734869 +17264,435,Dan Aykroyd,1370734873 +17264,435,snl,1370734883 +17264,435,stupid,1370734867 +17264,1136,british comedy,1370736217 +17264,1136,Christianity,1370736229 +17264,1136,high school,1370736230 +17264,1136,hilarious,1370736238 +17264,1136,imdb top 250,1370736232 +17264,1136,medieval,1370736221 +17264,1136,Monty Python,1370736219 +17264,1136,religion,1370736226 +17264,1136,Terry Gilliam,1370736223 +17264,1136,witty,1370736225 +17264,1197,Carey Elwes,1370735560 +17264,1197,Cult classic,1370735546 +17264,1230,new york city,1370736363 +17264,1230,thought-provoking,1370736369 +17264,1230,Woody Allen,1370736365 +17264,1235,Bud Cort,1370735218 +17264,1235,Cat Stevens,1370735243 +17264,1235,Cult Classic,1370735195 +17264,1235,cult film,1370735197 +17264,1235,dark comedy,1370735199 +17264,1235,dark humor,1370735210 +17264,1235,Everything,1370735263 +17264,1235,good dialogue,1370735212 +17264,1235,imdb top 250,1370735201 +17264,1235,Maude's braids,1370735227 +17264,1235,quirky,1370735207 +17264,1235,seen more than once,1370735209 +17264,1235,Soundtrack,1370735235 +17264,1235,This movie is perfect,1370735250 +17264,1244,beautiful,1370736339 +17264,1244,black and white,1370736337 +17264,1244,Meryl Streep,1370736352 +17264,1244,new york,1370736350 +17264,1244,New York City,1370736334 +17264,1244,satire,1370736355 +17264,1244,Woody Allen,1370736332 +17264,1251,dreams,1370735501 +17264,1251,Federico Fellini,1370735516 +17264,1251,misogyny,1370735503 +17264,1251,surreal,1370735506 +17264,1278,Gene Wilder,1370736279 +17264,1278,Great Ensemble Cast,1370736289 +17264,1278,Mel Brooks,1370736281 +17264,1278,monster,1370736283 +17264,1278,Transylvania,1370736286 +17264,1285,80s,1370735809 +17264,1285,Bechdel Test:Pass,1370735807 +17264,1285,black comedy,1370735788 +17264,1285,Christian Slater,1370735815 +17264,1285,deadpan,1370735802 +17264,1285,Quotable,1370735798 +17264,1285,serial killer,1370735811 +17264,1285,WINONA,1370735795 +17264,1285,Winona Ryder,1370735790 +17264,1391,aliens,1370735066 +17264,1391,Natalie Portman,1370735070 +17264,1391,Sarah Jessica Parker,1370735063 +17264,1391,stupid,1370735064 +17264,1391,Tim Burton,1370735067 +17264,1721,chick flick,1370735990 +17264,1721,disaster,1370735991 +17264,1721,James Cameron,1370736003 +17264,1721,Leonardo DiCaprio,1370735988 +17264,1721,overrated,1370735981 +17264,1732,black comedy,1370734790 +17264,1732,Coen Brothers,1370734779 +17264,1732,Cult classic,1370734784 +17264,1732,cult film,1370734807 +17264,1732,Philip Seymour Hoffman,1370734794 +17264,1732,satirical,1370734797 +17264,1732,violence,1370734800 +17264,2174,black comedy,1370735851 +17264,2174,Death,1370735850 +17264,2174,ghosts,1370735847 +17264,2174,Tim Burton,1370735843 +17264,2174,winona ryder,1370735844 +17264,2395,Bill Murray,1370735577 +17264,2395,clever,1370735590 +17264,2395,high school,1370735582 +17264,2395,Wes Anderson,1370735580 +17264,2407,aliens,1370735172 +17264,2407,but that pool scene was repeated way too many times.,1370735168 +17264,2407,old age,1370735148 +17264,2407,Ron Howard,1370735155 +17264,2407,senior citizens,1370735153 +17264,2599,adultery,1370735754 +17264,2599,dark comedy,1370735756 +17264,2599,lesbian,1370735746 +17264,2599,Reese Witherspoon,1370735743 +17264,2599,siblings,1370735761 +17264,2791,absurd,1370736317 +17264,2791,funny,1370736315 +17264,2791,joke after joke,1370736311 +17264,3175,Alan Rickman,1370735092 +17264,3175,death/fatality,1370735104 +17264,3175,Sigourney Weaver,1370735102 +17264,3175,Star Trek,1370735100 +17264,3175,Tim Allen,1370735095 +17264,4641,comic book,1370735717 +17264,4641,coming of age,1370735723 +17264,4641,quirky,1370735714 +17264,4641,Steve Buscemi,1370735713 +17264,4641,suburbia,1370735643 +17264,4641,TOBIAS FUNKE CAMEO,1370735697 +17264,4979,Bill Murray,1370734937 +17264,4979,black comedy,1370734941 +17264,4979,dysfunctional family,1370734964 +17264,4979,ensemble cast,1370734965 +17264,4979,Gene Hackman,1370734977 +17264,4979,great soundtrack,1370734960 +17264,4979,narrated,1370734956 +17264,4979,new york,1370734944 +17264,4979,Wes Anderson,1370734951 +17264,6773,bizarre,1370735463 +17264,6773,French,1370735453 +17264,6773,no dialogue,1370735479 +17264,6773,quirky,1370735464 +17264,6773,stylized,1370735467 +17264,7147,based on a book,1370734742 +17264,7147,bittersweet,1370734741 +17264,7147,imdb top 250,1370734736 +17264,7147,magic,1370734738 +17264,7147,surrealism,1370734729 +17264,7147,Tim Burton,1370734732 +17264,7147,twist ending,1370734733 +17264,86882,Kathy Bates,1370735367 +17264,86882,Owen Wilson,1370735370 +17264,86882,Owen Wilson is Woody Allen,1370735386 +17264,86882,Paris,1370735432 +17264,86882,philosophical,1370735435 +17264,86882,Rachel McAdams is Diane Keaton,1370735427 +17264,86882,Woody Allen,1370735373 +17296,1252,slow,1140310991 +17296,1408,excellent historical depiction,1139974927 +17296,2067,slow,1140311096 +17296,6945,insightful,1140311452 +17296,6989,action,1140311340 +17299,260,moving,1432904405 +17299,260,science fiction,1432904395 +17301,45447,fast paced,1150652570 +17301,48780,dark,1163354710 +17301,53125,BORING!,1182666435 +17301,57640,creepy,1220157786 +17302,296,funny,1426218577 +17302,296,multiple storylines,1426218577 +17302,296,violent,1426218577 +17302,1244,new york,1137117720 +17302,49530,Don't forget to see,1169953211 +17309,31364,atmospheric,1446993246 +17309,31364,disturbing,1446993239 +17309,31364,korean,1446993251 +17309,31364,melancholy,1446993248 +17309,31364,police brutality,1446993245 +17309,31364,police investigation,1446993242 +17311,19,Jim Carrey,1292458332 +17311,19,Not my kind of comedy,1292458319 +17311,19,One of the worst movies of all time,1292458326 +17311,19,Stupid as Hell,1292458329 +17311,32,Brad Pitt,1293977716 +17311,32,Bruce Willis,1293977712 +17311,32,future,1293977729 +17311,32,time travel,1293977738 +17311,32,twist ending,1293977742 +17311,47,Brad Pitt,1293924033 +17311,47,mystery,1293924062 +17311,47,psychology,1293924050 +17311,176,Steve Buscemi,1334301439 +17311,207,Keanu Reeves,1333546234 +17311,280,Christian Slater,1293976033 +17311,280,Gary Oldman,1293976054 +17311,280,Kevin Bacon,1293976049 +17311,376,Kevin Bacon,1293975932 +17311,376,meryl streep,1293975925 +17311,377,Keanu Reeves,1293925714 +17311,474,John Malkovich,1293977966 +17311,608,dark comedy,1328366150 +17311,836,Keanu Reeves,1301223545 +17311,1036,Alan Rickman,1293977494 +17311,1036,Bruce Willis,1293977470 +17311,1036,humorous,1293977501 +17311,1270,alternate reality,1292458267 +17311,1270,comedy,1292458258 +17311,1270,Funny,1292458248 +17311,1270,future,1292458252 +17311,1270,time travel,1292458262 +17311,1281,black comedy,1293977870 +17311,1281,Charlie Chaplin,1293977854 +17311,1281,multiple roles,1293977863 +17311,1281,satire,1293977857 +17311,1370,Bruce Willis,1293977550 +17311,1527,aliens,1292458027 +17311,1527,Bruce Willis,1292458000 +17311,1527,futuristic,1292458009 +17311,1527,Gary Oldman,1292458063 +17311,1527,humorous,1292458018 +17311,1527,surreal,1292458039 +17311,1552,John Cusack,1293923385 +17311,1552,John Malkovich,1293923340 +17311,1552,Nicolas Cage,1293923378 +17311,1552,Steve Buscemi,1293923371 +17311,1580,aliens,1311448586 +17311,1580,comedy,1311448575 +17311,1580,Tommy Lee Jones,1311448543 +17311,1611,gay,1293976892 +17311,1611,Keanu Reeves,1293976900 +17311,1658,Ewan McGregor,1334498489 +17311,1658,Holly Hunter,1334498495 +17311,1704,Matt Damon,1325101982 +17311,1784,Jack Nicholson,1301336558 +17311,1784,neurosis,1301336583 +17311,1784,quirky,1301336571 +17311,1801,Jeremy Irons,1293978076 +17311,1801,John Malkovich,1293978075 +17311,1801,multiple roles,1293978079 +17311,1866,comedy,1334326413 +17311,2020,John Malkovich,1293976540 +17311,2020,Keanu Reeves,1293976536 +17311,2020,Michelle Pfeiffer,1293976554 +17311,2020,Uma Thurman,1293976527 +17311,2174,comedy,1292459144 +17311,2174,Death,1292459120 +17311,2174,Geena Davis,1292459112 +17311,2174,ghosts/afterlife,1292459127 +17311,2174,haunted house,1292459135 +17311,2174,Michael Keaton,1292459131 +17311,2174,Tim Burton,1292459101 +17311,2232,innovative,1292458806 +17311,2232,mindfuck,1292458812 +17311,2232,scifi,1292458818 +17311,2263,Biblical,1310844429 +17311,2263,Christianity,1310844436 +17311,2263,religion,1310844436 +17311,2571,alternate reality,1292458548 +17311,2571,cyberpunk,1292458555 +17311,2571,Keanu Reeves,1292458531 +17311,2571,philosophy,1292458540 +17311,2571,virtual reality,1292458537 +17311,2701,Kevin Kline,1306755496 +17311,2701,steampunk,1306755481 +17311,2701,Will Smith,1306755488 +17311,2797,being a kid again,1292459210 +17311,2797,Child as Adult,1292459219 +17311,2797,comedy,1292459234 +17311,2797,switching places,1292459198 +17311,2797,Tom Hanks,1292459195 +17311,3052,Alan Rickman,1292458476 +17311,3052,Ben Affleck,1292458495 +17311,3052,Comedy,1292458486 +17311,3052,funny,1292458489 +17311,3052,Matt Damon,1292458473 +17311,3146,Rob Schneider,1295657316 +17311,3271,drama,1292458870 +17311,3271,Gary Sinise,1292458854 +17311,3271,John Malkovich,1292458851 +17311,3301,Bruce Willis,1305010164 +17311,3301,Matthew Perry,1305010170 +17311,3686,alternate reality,1293929385 +17311,3686,ghosts,1293929371 +17311,3686,kevin bacon,1293929354 +17311,3686,Kiefer Sutherland,1293929358 +17311,3791,Kevin Bacon,1293975803 +17311,3895,James Spader,1293923229 +17311,3895,Keanu Reeves,1293923229 +17311,4128,Kiefer Sutherland,1293975688 +17311,4128,So bad it's good,1293975677 +17311,4128,vampires,1293975681 +17311,4228,con,1293929701 +17311,4228,Jennifer Love Hewitt,1293929711 +17311,4228,mother daughter relationship,1293929715 +17311,4228,Sigourney Weaver,1293929703 +17311,4487,Tom Cruise,1293928557 +17311,4571,history,1292459035 +17311,4571,Keanu Reeves,1292459005 +17311,4571,time travel,1292459027 +17311,4988,Kevin Bacon,1293976121 +17311,4988,Sean Astin,1293976138 +17311,5255,cross dressing men,1292458132 +17311,5255,Harland Williams,1292458124 +17311,5308,comedy,1293977618 +17311,5308,Steve Guttenberg,1293977631 +17311,5308,Ted Danson,1293977624 +17311,5308,Tom Selleck,1293977627 +17311,5459,funny,1311448754 +17311,5459,Tommy Lee Jones,1311448655 +17311,5602,disappointing,1292459320 +17311,5612,crime gone awry,1293976378 +17311,5612,Kevin Bacon,1293976366 +17311,6367,Ewan McGregor,1298149159 +17311,6367,Renée Zellweger,1298149117 +17311,6367,Renée Zellweger,1298149138 +17311,6367,Renee Zellweger,1298149109 +17311,6593,being a kid again,1292458750 +17311,6593,child as adult,1292458761 +17311,6593,Jamie Lee Curtis,1292458741 +17311,6593,Lindsay Lohan,1292458744 +17311,6593,switching places,1292458771 +17311,6763,Ben Stiller,1293927453 +17311,6763,Drew Barrymore,1293927461 +17311,6870,Dark,1293976272 +17311,6870,Kevin Bacon,1293976256 +17311,6870,mystery,1293976279 +17311,6870,Sean Penn,1293976260 +17311,6942,funny,1292458630 +17311,6942,Hugh Grant,1292458646 +17311,6942,Keira Knightley,1292458644 +17311,6942,multiple storylines,1292458652 +17311,6942,Romance,1292458653 +17311,6942,Rowan Atkinson,1292458683 +17311,7149,Jack Nicholson,1293977125 +17311,7149,Keanu Reaves,1293977114 +17311,7149,Romance,1293977117 +17311,7367,comedy,1292458950 +17311,7367,crime,1292458958 +17311,7367,funny,1292458930 +17311,7367,Tom Hanks,1292458939 +17311,8495,Willem Dafoe,1293929203 +17311,8644,futuristic,1293929606 +17311,8644,robots,1293929598 +17311,8644,sci-fi,1293929594 +17311,8644,Will Smith,1293929592 +17311,8946,Ben Affleck,1293927708 +17311,27408,John Malkovich,1325102395 +17311,31696,Keanu Reeves,1293929528 +17311,33004,Alan Rickman,1301825253 +17311,33004,John Malkovich,1301825260 +17311,33615,comedy,1292458405 +17311,33615,funny,1292458407 +17311,39427,Ewan McGregor,1314133028 +17311,44840,Rob Schneider,1314645582 +17311,46959,John Malkovich,1293978185 +17311,48522,Ewan McGregor,1324347408 +17311,48997,alan rickman,1311073239 +17311,51575,John Travolta,1300983727 +17311,54004,Adam Sandler,1293922777 +17311,54004,Rob Schneider,1293922793 +17311,54004,Steve Buscemi,1293922784 +17311,55995,CG animation,1301825125 +17311,55995,John Malkovich,1301825067 +17311,57147,Ewan McGregor,1324494412 +17311,57910,chopped penis,1332523574 +17311,57910,comedy,1332523563 +17311,59421,Ashton Kutcher,1303761767 +17311,59421,Cameron Diaz,1303761758 +17311,59421,comedy,1303761771 +17311,59727,no jump scares,1338908953 +17311,61465,Nicolas Cage,1300046526 +17311,61729,doesn't like people,1301767327 +17311,61729,ghosts,1301767300 +17311,61729,Greg Kinnear,1301767309 +17311,63062,John Malkovich,1293978313 +17311,63062,wrongly accused,1293978320 +17311,64497,John Cleese,1293977263 +17311,64497,Keanu Reeves,1293977251 +17311,64497,religious overtones,1293977272 +17311,69784,cocks,1339604090 +17311,69784,not funny,1339604040 +17311,69784,Stupid as Hell,1339604056 +17311,69784,tasteless,1339604063 +17311,69784,unfunny,1339604045 +17311,73268,Sam Neill,1308246166 +17311,73268,Willem Dafoe,1308245921 +17311,80917,bad dialogue,1310061817 +17311,80917,boring,1310061797 +17311,80917,nothing happens,1310061804 +17311,80917,unsympathetic characters,1310061864 +17311,81229,Bruce Willis,1307864322 +17311,81229,Helen Mirren,1307864312 +17311,81229,John Malkovich,1307864263 +17311,81229,Morgan Freeman,1307864329 +17311,81229,Richard Dreyfuss,1307864338 +17311,89864,comedy,1339604338 +17311,89864,Joseph Gordon-Levitt,1339604354 +17333,1198,action,1454043940 +17333,1198,humorous,1454043959 +17333,1198,plot twist,1454043950 +17356,1196,Probably the best one of the episodes,1442146753 +17356,1200,Did not leave much impression on me,1442146804 +17380,109487,artificial intelligence,1429791291 +17380,109487,sci-fi,1429791277 +17435,84137,BD-R,1452027022 +17438,98065,chess,1352677669 +17470,5225,coming of age,1443311251 +17470,7265,coming of age,1443311207 +17470,112290,coming of age,1443311504 +17491,661,awesome,1323772973 +17491,661,good,1323772973 +17491,1740,good,1323887582 +17491,26090,horror,1323773906 +17501,37689,british,1422296601 +17501,37689,ska,1422296601 +17501,37689,skinhead,1422296601 +17501,59112,stoner comedy,1431071610 +17501,59112,underrated,1431071610 +17501,59112,witty,1431071610 +17501,95624,british,1432230423 +17501,95624,gang violence,1432230423 +17501,95624,hooligans,1432230423 +17502,62113,Nudity (Full Frontal - Notable),1228254620 +17502,89745,Hulk,1342386086 +17502,89745,joss whedon,1342386086 +17541,260,space adventure,1436141924 +17541,260,space western,1436141941 +17568,30793,Johnny Depp,1430113270 +17568,30793,roald dahl,1430113287 +17568,30793,Tim Burton,1430113275 +17568,74789,About Alice,1430113243 +17568,74789,Johnny Depp,1430113170 +17568,74789,Tim Burton,1430113176 +17568,118246,chloë grace moretz,1429946154 +17568,118246,nature,1429946154 +17568,118246,theatre,1429946154 +17588,260,space epic,1439986568 +17601,67508,History,1326416406 +17601,67508,Radical Politics,1326416398 +17611,67957,cult film,1280583999 +17633,30749,depressing,1142391204 +17633,30749,genocide,1142391186 +17648,260,brilliant,1442938515 +17648,260,epic,1442938501 +17648,260,inspiring,1442938525 +17648,2391,downward spiral,1442940171 +17648,2391,great acting,1442940197 +17648,2391,gripping,1442940193 +17648,2391,intense,1442940174 +17648,4226,complicated,1442939252 +17648,4226,mystery,1442939242 +17648,4226,nonlinear,1442939239 +17648,103048,coming of age,1442943524 +17650,17,Alan Rickman,1338686803 +17650,17,chick flick,1338686811 +17650,17,classic,1338686791 +17650,17,Hugh Grant,1338686800 +17650,17,Jane Austen,1338686784 +17650,17,Kate Winslet,1338686785 +17650,17,Period,1338686787 +17650,318,based on a book,1338686233 +17650,318,classic,1338686170 +17650,318,drama,1338686174 +17650,318,friendship,1338686176 +17650,318,heartwarming,1338686179 +17650,318,Morgan Freeman,1338686226 +17650,318,reflective,1338686183 +17650,318,sexuality,1338686197 +17650,318,Stephen King,1338686189 +17650,318,twist ending,1338686185 +17650,2762,Drama,1338686306 +17650,2762,ghosts,1338686321 +17650,2762,horror,1338686326 +17650,2762,psychological,1338686313 +17650,2762,stylized,1338686317 +17650,2762,twist ending,1338686297 +17650,2762,understated,1338686299 +17650,4226,complicated,1338687103 +17650,4226,stylized,1338687106 +17650,4226,twist ending,1338687116 +17650,4226,violence,1338687124 +17650,8950,Christian Bale,1338687036 +17650,8950,creepy,1338687041 +17650,8950,twist ending,1338687061 +17667,41571,japanese,1266936246 +17731,653,adventure,1338984427 +17731,653,dragons,1338984432 +17731,653,epic,1338984454 +17731,653,fantasy,1338984438 +17731,653,medieval,1338984446 +17731,1214,aliens,1339464603 +17731,1214,atmospheric,1339464639 +17731,1214,Ridley Scott,1339464607 +17731,1214,suspense,1339464610 +17731,1214,thriller,1339464615 +17731,1320,alien series,1338984699 +17731,1320,Sigourney Weaver,1338984698 +17731,1320,underrated,1338984694 +17731,1690,alien series,1338983962 +17731,1690,Ron Perlman,1338983970 +17731,1690,Sigourney Weaver,1338983974 +17731,2115,adventure,1338984068 +17731,2115,Indiana Jones,1338984072 +17731,2628,adventure,1338984257 +17731,2628,Liam Neeson,1338984247 +17731,2628,Star Wars,1338984250 +17731,2722,bad science,1338983757 +17731,2722,hilarious,1338983761 +17731,2722,unintentionally funny,1338983769 +17731,3300,aliens,1338983919 +17731,3300,anti-hero,1338983877 +17731,3300,atmospheric,1338983879 +17731,3300,Riddick,1338983894 +17731,4720,atmospheric,1339153339 +17731,4720,claustrophobic,1339153353 +17731,4720,twist ending,1339153350 +17731,4993,adapted from:book,1338984410 +17731,4993,adventure,1338984384 +17731,4993,beautifully filmed,1338984391 +17731,4993,great soundtrack,1338984395 +17731,5294,Matthew McConaughey,1338984894 +17731,5294,one of the greatest overlooked films,1338984943 +17731,5294,religious,1338984954 +17731,5294,twist ending,1338984876 +17731,5294,Underrated,1338984933 +17731,5502,aliens,1338984812 +17731,5502,atmospheric,1338984778 +17731,5502,Joaquin Phoenix,1338984783 +17731,5502,reflective,1338984798 +17731,5502,understated,1338984790 +17731,5679,creepy,1338985216 +17731,5679,disturbing,1338985220 +17731,5679,horror,1338985223 +17731,5679,mystery,1338985225 +17731,5679,paranormal,1338985230 +17731,5679,scary,1338985213 +17731,5679,suspense,1338985236 +17731,6323,confusing,1338985012 +17731,6323,creepy,1338985017 +17731,6323,multiple personalities,1338985032 +17731,6323,multiple storylines,1338985028 +17731,6323,twist ending,1338985040 +17731,33493,adventure,1338984353 +17731,33493,dark,1338984344 +17731,33493,great soundtrack,1338984356 +17731,33493,Star Wars,1338984348 +17731,34532,better than expected,1338985147 +17731,34532,mysterious or thrilling,1338985168 +17731,34532,Twist Ending,1338985158 +17731,57640,based on a comic,1338984529 +17731,57640,Guillermo del Toro,1338984535 +17731,57640,not as good as the first,1338984538 +17731,57640,quirky,1338984518 +17731,57640,Ron Perlman,1338984515 +17731,76093,cute,1338984480 +17731,76093,funny,1338984485 +17731,78105,based on a video game,1338984581 +17731,78105,Gemma Arterton,1338984573 +17731,78105,over the top,1338984565 +17731,86332,adapted from:comic,1338984610 +17731,86332,Anthony Hopkins,1338984616 +17731,86332,funny,1338984623 +17731,86332,love story,1338984629 +17731,86332,Natalie Portman,1338984605 +17731,86332,predictable,1338984625 +17731,92420,clever,1338813212 +17731,92420,supernatural powers,1338813223 +17731,92420,teenage angst,1338813228 +17731,93766,adventure,1339840018 +17731,93766,doesn't live up to its full potential,1339840003 +17731,93766,fantasy,1339840006 +17731,93766,Greek mythology,1339840011 +17731,93766,monsters,1339840016 +17731,94478,Danny Elfman,1339839976 +17731,94478,eva green,1339839965 +17731,94478,johnny depp,1339839972 +17731,94478,the plot,1339839981 +17731,94864,aliens,1339464537 +17731,94864,casting,1339464542 +17731,94864,horrible ending,1339464572 +17731,94864,Idris Elba,1339464551 +17731,94864,Michael Fassbender,1339464535 +17732,4361,My favourite of all,1142567306 +17735,70,vampires,1165091176 +17735,76,Philip K. Dick,1171905825 +17735,170,Angelina Jolie,1165093798 +17735,173,Sylvester Stallone,1165078065 +17735,203,Hugo Weaving,1165088841 +17735,296,Black comedy,1171902115 +17735,296,Quentin Tarantino,1171902122 +17735,318,Stephen King,1165081924 +17735,337,coming of age,1171902709 +17735,337,mental illness,1171902706 +17735,541,Artificial human,1171904856 +17735,541,Dark hero,1171904845 +17735,541,dystopian,1171904838 +17735,541,future,1171904855 +17735,541,mortality,1171904858 +17735,541,Philip K. Dick,1171904718 +17735,562,disturbing,1165093994 +17735,714,beautiful,1171902729 +17735,802,clarivoyance,1171902198 +17735,802,John Travolta,1165090770 +17735,805,Kevin Spacey,1170438931 +17735,919,Judy Garland,1171904657 +17735,919,scarecrow,1171904661 +17735,919,tornado,1171904660 +17735,1073,Gene Wilder,1171904673 +17735,1073,Mel Stuart,1171904665 +17735,1088,dance,1165091576 +17735,1088,no one puts Baby in a corner,1165091571 +17735,1245,Film Noir,1171904506 +17735,1380,musical,1171902152 +17735,1380,Olivia Newton John,1171902149 +17735,1409,John Travolta,1171902230 +17735,1441,Quirky,1171902845 +17735,1500,hit men,1171902263 +17735,1500,John Cusack,1171902271 +17735,1573,John Travolta,1171902142 +17735,1573,Nicholas Cage,1171901984 +17735,2020,based on a book,1165093337 +17735,2144,John Hughes,1165093297 +17735,2145,John Hughes,1165090370 +17735,2231,Edward Norton,1165089083 +17735,2231,Matt Damon,1165089083 +17735,2231,poker,1165089091 +17735,2541,based on a book,1165093390 +17735,2594,Dark,1171905755 +17735,2594,Philip K. Dick (uncredited),1171905692 +17735,2594,Sci-Fi,1171905755 +17735,2840,religion,1165081759 +17735,2908,disturbing,1165093499 +17735,2916,Philip K. Dick,1171905662 +17735,2959,Edward Norton,1171904527 +17735,2959,narrated,1171904549 +17735,2959,philosophy,1171904552 +17735,2959,psychology,1171904529 +17735,3052,Kevin Smith,1165090774 +17735,3072,Cher,1171904491 +17735,3072,New York,1171904494 +17735,3072,Nicholas Cage,1171904491 +17735,3072,opera,1171904495 +17735,3176,disturbing,1165091100 +17735,3176,Jude Law,1165091104 +17735,3176,Matt Damon,1165091106 +17735,3176,Philip Seymour Hoffman,1165091108 +17735,3355,Johnny Depp,1171902656 +17735,3363,George Lucas,1165081296 +17735,3396,Jim Henson,1170438581 +17735,4239,drugs,1171902699 +17735,4239,Johnny Depp,1171902698 +17735,4306,Eddie Murphy,1165077805 +17735,4306,Mke Myers,1165077797 +17735,4621,Bruce Willis,1171902225 +17735,4621,John Travolta,1171902221 +17735,4975,Philip K. Dick (uncredited),1171905776 +17735,5046,Philip K. Dick,1171905819 +17735,5445,Philip K. Dick,1171904833 +17735,5445,Steven Spielberg,1171904917 +17735,5693,humorous,1171902218 +17735,5693,John Travolta,1171902214 +17735,5693,musical,1171902206 +17735,6281,Colin Farrell,1171904940 +17735,6281,Kiefer Sutherland,1171904941 +17735,6539,Zombies,1171902714 +17735,6709,Robert Rodriguez,1171902647 +17735,6709,Salma Hayek,1171902650 +17735,6711,Billy Murray,1165079202 +17735,6711,Sofia Coppola,1165079194 +17735,6874,Japan,1171904513 +17735,6874,Uma Thurman,1171904516 +17735,6934,dissapointment,1165094005 +17735,6953,sean penn,1172529703 +17735,7022,Japan,1171904638 +17735,7022,Sourcelight Top Pick,1171904643 +17735,7163,Philip K. Dick,1171904904 +17735,8376,off-beat comedy,1171904410 +17735,8464,important,1171903836 +17735,8914,Complicated,1171903802 +17735,8914,sci-fi,1171903820 +17735,8970,Oscar (Best Music - Original Score),1171902718 +17735,8970,Peter Pan,1171902724 +17735,8970,true story,1171902725 +17735,8972,Nicholas Cage,1171901869 +17735,27904,Keanu Reeves,1171905643 +17735,27904,Philip K. Dick,1171905651 +17735,30793,based on book,1171902853 +17735,30793,remake,1171902851 +17735,30793,roald dahl,1171902857 +17735,34520,Johnny Knoxville,1171902353 +17735,40614,disturbing,1165091008 +17735,40955,Ireland,1169491992 +17735,40955,London,1169491988 +17735,43558,Martin Lawrence,1171902397 +17735,45517,Pixar,1171904539 +17735,45722,sequels filmed simultaneously,1171902672 +17735,48043,don't forget to see,1165076119 +17735,48385,don't forget to see,1165075857 +17735,49347,don't forget to see,1165075869 +17735,49530,Don't forget to see,1165076068 +17735,51077,Comic Book,1171901815 +17735,51077,Nicholas Cage,1171901837 +17755,84772,Simon Pegg,1302384984 +17757,265,Nudity (Full Frontal - Notable),1160168441 +17826,36,intense,1440967601 +17826,36,redemption,1440967593 +17826,36,social commentary,1440967595 +17826,36,Susan Sarandon,1440967579 +17826,36,true story,1440967575 +17826,50,complicated,1440958681 +17826,50,conspiracy,1440958686 +17826,50,great ending,1440958690 +17826,50,Kevin Spacey,1440958676 +17826,50,suspense,1440958699 +17826,50,twist ending,1440958679 +17826,50,twists & turns,1440958707 +17826,110,historical,1440958135 +17826,110,violent,1440958123 +17826,110,war,1440956152 +17826,218,social commentary,1440964926 +17826,218,soundtrack,1440964908 +17826,218,strong female character,1440964916 +17826,293,French,1440955936 +17826,293,great acting,1440955902 +17826,293,Guns,1440955918 +17826,293,Natalie Portman,1440955909 +17826,293,quirky,1440955907 +17826,293,sniper,1440958090 +17826,293,unique,1440955928 +17826,300,intelligent,1440956565 +17826,380,comedy,1440956758 +17826,380,espionage,1440956754 +17826,380,funny,1440956746 +17826,380,Jamie Lee Curtis,1440956765 +17826,509,artsy,1440964583 +17826,509,intelligent,1440964611 +17826,509,introspective,1440964576 +17826,509,New Zealand,1440964560 +17826,509,soundtrack,1440964556 +17826,509,unusual,1440964603 +17826,534,C.S. Lewis,1440955490 +17826,534,love,1440955507 +17826,589,strong female character,1440956679 +17826,589,violence,1440956669 +17826,590,culture clash,1440959790 +17826,590,solitary,1440959796 +17826,590,Visually stunning,1440959806 +17826,1216,soundtrack,1440956002 +17826,1240,violent,1440956720 +17826,1259,coming of age,1440965825 +17826,1259,friendship,1440965829 +17826,1259,poignant,1440965833 +17826,1286,based on a book,1440959223 +17826,1286,heartwarming,1440959228 +17826,1286,love,1440959215 +17826,1286,soudtrack,1440959213 +17826,1286,time travel,1440959241 +17826,1295,based on a book,1440956068 +17826,1295,juliette binoche,1440956064 +17826,1295,social commentary,1440956080 +17826,1307,friendship,1440965128 +17826,1307,romantic comedy,1440965113 +17826,1307,soundtrack,1440965122 +17826,1357,artsy,1440966511 +17826,1357,classical music,1440966487 +17826,1357,mental illness,1440966484 +17826,1357,piano,1440966519 +17826,1357,rachmaninoff,1440966497 +17826,1357,soundtrack,1440966494 +17826,1357,true story,1440966500 +17826,1357,unusual,1440966513 +17826,1408,based on a book,1440967688 +17826,1408,cinematography,1440967674 +17826,1408,soundtrack,1440967682 +17826,1416,Argentina,1440967340 +17826,1416,history,1440967352 +17826,1416,intense,1440967349 +17826,1416,Madonna,1440967359 +17826,1416,musical,1440967355 +17826,1624,based on a book,1440965442 +17826,1624,intense,1440965437 +17826,1680,alternate universe,1440959275 +17826,1680,Gwyneth Paltrow,1440959286 +17826,1680,nonlinear,1440959277 +17826,1680,unique,1440959338 +17826,1682,alternate reality,1440965271 +17826,1682,insightful,1440965283 +17826,1682,social commentary,1440965250 +17826,1682,witty,1440965257 +17826,1721,horrible acting,1440959727 +17826,1721,Leonardo DiCaprio,1440959733 +17826,1747,conspiracy,1440967974 +17826,1747,satire,1440967969 +17826,1747,unique,1440967984 +17826,1835,Nicolas Cage,1440965179 +17826,1907,animation,1440958260 +17826,1907,strong female lead,1440958262 +17826,1907,witty,1440958271 +17826,1921,artsy,1440957324 +17826,1921,surreal,1440957312 +17826,1959,Africa,1440955398 +17826,1959,based on a book,1440955430 +17826,2020,glenn close,1440954106 +17826,2020,witty,1440954099 +17826,2291,dark comedy,1440953494 +17826,2291,Depp & Burton,1440953485 +17826,2291,original,1440953464 +17826,2291,surreal,1440953491 +17826,2291,Winona Ryder,1440953480 +17826,2312,compelling,1440966939 +17826,2312,intense,1440966950 +17826,2312,love story,1440966948 +17826,2312,unique,1440966945 +17826,2359,funny,1440968807 +17826,2359,Irish,1440968797 +17826,2359,quirky,1440968799 +17826,2739,based on book,1440964822 +17826,2739,intelligent,1440964821 +17826,2739,social commentary,1440964831 +17826,2739,Steven Spielberg,1440964776 +17826,2739,strong female character,1440964808 +17826,2739,Whoopi Goldberg,1440964785 +17826,2762,acting,1440958647 +17826,2762,enigmatic,1440958651 +17826,2762,great ending,1440958626 +17826,2762,psychological,1440958623 +17826,2762,suspense,1440958632 +17826,2762,twist ending,1440958654 +17826,2762,unique,1440958636 +17826,2762,unpredictable,1440958642 +17826,2858,degrading,1440959997 +17826,2858,drugs,1440953672 +17826,2858,kevin spacey,1440953662 +17826,2858,Nudity (Topless),1440953651 +17826,2858,sexuality,1440953680 +17826,2858,violence,1440953676 +17826,2858,wildly overrated,1440960023 +17826,2966,edifying,1440953568 +17826,2966,inspirational,1440953553 +17826,2987,animation,1440967541 +17826,2987,comedy,1440967544 +17826,2987,creative,1440967530 +17826,2987,funny,1440967551 +17826,2997,John Malkovich,1440954052 +17826,3044,twist ending,1440965942 +17826,3105,intelligent,1440955161 +17826,3147,compassionate,1440955358 +17826,3147,great acting,1440955346 +17826,3147,social commentary,1440955352 +17826,3148,horrible acting,1440966993 +17826,3148,Tobey Maguire,1440967008 +17826,3176,intelligent,1440971405 +17826,3176,Matt Damon,1440971390 +17826,3176,suspense,1440971395 +17826,3185,based on book,1440966593 +17826,3185,beautiful,1440966579 +17826,3185,cinematography,1440966577 +17826,3185,poignant,1440966596 +17826,3185,social commentary,1440966565 +17826,3185,soundtrack,1440966598 +17826,3185,Underrated,1440966568 +17826,3528,intense,1440965407 +17826,3578,Hans Zimmer,1440958200 +17826,3578,history,1440958243 +17826,3578,Russell Crowe,1440958153 +17826,3578,strong score,1440958228 +17826,3578,violence,1440958158 +17826,3969,kevin spacey,1440953621 +17826,4333,quirky,1440956811 +17826,4880,degrading,1440958059 +17826,4880,Nudity (Topless - Brief),1440958033 +17826,4880,poor writing,1440958042 +17826,4973,Audrey Tautou,1440953397 +17826,4973,great soundtrack,1440953412 +17826,4973,Paris,1440953381 +17826,4973,quirky,1440953389 +17826,4973,whimsical,1440953375 +17826,4976,aging,1440955602 +17826,4976,intellectual,1440955568 +17826,4976,love,1440955576 +17826,4995,based on a book,1440967163 +17826,4995,intelligent,1440967166 +17826,4995,mathematics,1440967145 +17826,4995,psychology,1440967148 +17826,4995,Russell Crowe,1440967158 +17826,4995,true story,1440967151 +17826,5012,genderbending,1440965340 +17826,5012,religious oppression,1440965344 +17826,5012,social commentary,1440965352 +17826,5446,Aborigines,1440965982 +17826,5446,intelligent,1440965998 +17826,5446,social commentary,1440966000 +17826,5446,unusual,1440965996 +17826,5530,Al Pacino,1440968038 +17826,5530,intelligent,1440968054 +17826,5530,unique,1440968045 +17826,5530,Winona Ryder,1440968059 +17826,5945,dark comedy,1440957202 +17826,5945,existential crises,1440957197 +17826,5945,insightful,1440957224 +17826,5945,intelligent,1440957221 +17826,5945,Jack Nicholson,1440957199 +17826,5945,quirky,1440957218 +17826,5945,road trip,1440957204 +17826,5945,satire,1440957208 +17826,6197,intelligent,1440956601 +17826,6197,mental illness,1440956606 +17826,6238,Andie MacDowell,1440965041 +17826,6238,immigrants,1440965058 +17826,6238,social commentary,1440965051 +17826,6565,Tobey Maguire,1440967057 +17826,6669,Akira Kurosawa,1440969911 +17826,6669,cathartic,1440969906 +17826,6669,introspective,1440969925 +17826,6669,meaning of life,1440969908 +17826,6669,meditative,1440969916 +17826,6669,poignant,1440969913 +17826,6682,Deepa Mehta,1440957562 +17826,6682,social commentary,1440957566 +17826,7155,based on a true story,1440968742 +17826,7155,funny,1440968758 +17826,7155,Helen Mirren,1440968739 +17826,7155,strong female character,1440968760 +17826,7158,culture clash,1440957675 +17826,8783,Joaquin Phoenix,1440958557 +17826,8783,m. night shyamalan,1440958518 +17826,8783,psychological,1440958573 +17826,8783,Sigourney Weaver,1440958564 +17826,8783,social commentary,1440958537 +17826,8783,thought-provoking,1440958523 +17826,8783,twist ending,1440958589 +17826,8949,depression,1440953727 +17826,8949,Melancholic,1440953719 +17826,8949,midlife crisis,1440953739 +17826,30707,Clint Eastwood,1440959511 +17826,30707,gritty,1440959517 +17826,30707,Hilary Swank,1440959509 +17826,30707,Morgan Freeman,1440959504 +17826,30707,social commentary,1440959540 +17826,30707,thought-provoking,1440959520 +17826,33166,cultural conflict,1440959635 +17826,33166,ensemble cast,1440959632 +17826,33166,insightful,1440959656 +17826,33166,intelligent,1440959688 +17826,33166,intense,1440959650 +17826,33166,multiple storylines,1440959641 +17826,33166,redemption,1440959666 +17826,33166,social commentary,1440959619 +17826,33166,thought-provoking,1440959682 +17826,36535,artsy,1440970375 +17826,36535,beautiful scenery,1440970366 +17826,37741,biopic,1440968684 +17826,37741,thought provoking,1440968688 +17826,43333,cinematography,1440957432 +17826,43333,India,1440957408 +17826,43333,insightful,1440957522 +17826,43333,intelligent,1440957417 +17826,43333,Lisa Ray,1440957448 +17826,43333,provocative,1440957411 +17826,43333,social commentary,1440957524 +17826,43333,soundtrack,1440957423 +17826,43333,vivid,1440957445 +17826,47629,based on a true story,1440968870 +17826,48516,complicated plot,1440956365 +17826,48516,Jack Nicholson,1440956359 +17826,48516,Leonardo DiCaprio,1440956333 +17826,48516,Matt Damon,1440956355 +17826,48516,psychology,1440956348 +17826,48516,suspense,1440956350 +17826,48516,violence,1440956337 +17826,49822,Angelina Jolie,1440968616 +17826,49822,Matt Damon,1440968625 +17826,49822,robert deniro,1440968629 +17826,52579,French,1440966388 +17826,55247,adventure,1440967781 +17826,55247,Alaska,1440967769 +17826,55247,based on a true story,1440967766 +17826,55247,road trip,1440967764 +17826,55247,self discovery,1440967762 +17826,55247,thought-provoking,1440967791 +17826,55442,animation,1440966432 +17826,55442,artsy,1440966461 +17826,55442,coming of age,1440966437 +17826,55442,intelligent,1440966459 +17826,55442,social commentary,1440966440 +17826,56587,cathartic,1440957125 +17826,56587,friendship,1440957094 +17826,56587,jack nicholson,1440957092 +17826,56587,Morgan Freeman,1440957101 +17826,56757,Depp & Burton,1440956249 +17826,56757,quirky,1440956263 +17826,56757,Tim Burton,1440956244 +17826,56757,violent,1440956271 +17826,61110,insightful,1440953929 +17826,61110,thought-provoking,1440953992 +17826,61110,Vera Farmiga,1440953899 +17826,62157,intelligent,1440965547 +17826,62157,oppression,1440965531 +17826,62157,religion,1440965539 +17826,62157,unique,1440965555 +17826,64614,Clint Eastwood,1440959560 +17826,64614,culture clash,1440959563 +17826,64614,redemption,1440959570 +17826,64716,atonement,1440957004 +17826,64716,unique,1440956999 +17826,66371,beautiful scenery,1440969656 +17826,66371,cello,1440969648 +17826,66371,understated,1440969682 +17826,66371,unique,1440969688 +17826,68932,social commentary,1440969761 +17826,72011,George Clooney,1440953777 +17826,73290,based on a true story,1440964373 +17826,73290,dogs,1440964370 +17826,73290,Richard Gere,1440964378 +17826,73290,tearjerker,1440964388 +17826,86347,degrading,1440971331 +17826,86347,offensive,1440971329 +17826,86347,vulgar,1440971325 +17826,91673,glenn close,1440954216 +17826,91673,understated,1440954271 +17826,93740,Funny,1440959381 +17826,93740,unique,1440959387 +17826,94070,funny,1440959121 +17826,94070,India,1440959105 +17826,94070,Judi Dench,1440959109 +17826,94070,quirky,1440959127 +17826,97304,good acting,1440968337 +17826,97304,great ending,1440968321 +17826,97304,intelligent,1440968336 +17826,97304,suspenseful,1440968309 +17826,97304,True story,1440968304 +17826,97938,book was better,1440957359 +17826,97938,surreal,1440957355 +17826,103057,love,1440955283 +17826,103057,sincere,1440954995 +17826,104374,Bill Nighy,1440959258 +17826,104374,charming,1440959157 +17826,104374,family bonds,1440959165 +17826,104374,family relationships,1440959159 +17826,104374,happiness,1440959162 +17826,104374,love,1440959260 +17826,104374,time travel,1440959152 +17826,104374,touching,1440959155 +17826,105197,acting,1440957263 +17826,105197,artsy,1440957280 +17826,105197,dementia,1440957261 +17826,105197,funny,1440957247 +17826,105197,poignant,1440957242 +17826,105197,Road trip,1440957252 +17826,105703,courage,1440966753 +17826,105703,French,1440966747 +17826,105703,strong female character,1440966749 +17826,105703,true story,1440966751 +17826,105844,Graphic Violence,1440966028 +17826,106438,based on a true story,1440968911 +17826,106438,Judi Dench,1440968915 +17826,106438,social commentary,1440968923 +17826,109374,eastern europe,1440956494 +17826,109374,funny,1440956482 +17826,109374,good soundtrack,1440956471 +17826,109374,odd sense of humor,1440956445 +17826,109374,quirky,1440956438 +17826,109374,whimsical,1440956457 +17826,112556,annoying,1440958803 +17826,112556,author-screenwriter,1440958798 +17826,112556,bad acting,1440958850 +17826,112556,boring character,1440958861 +17826,112556,idiotic,1440958796 +17826,112556,Infidelity,1440958736 +17826,112556,sadist,1440958774 +17826,112556,sex scene,1440958761 +17826,112556,Stupid ending,1440958785 +17826,112556,unredeeming,1440958877 +17826,115617,Animation,1440964247 +17826,115617,death,1440964276 +17826,115617,pixar,1440964255 +17826,115617,violent,1440964267 +17826,121485,intelligent,1440954544 +17826,121485,strong female characters,1440954524 +17826,128908,lesbian,1440954824 +17826,129659,true story,1440959895 +17853,72998,3d,1267329800 +17877,260,classic,1437213485 +17877,260,exciting,1437213495 +17877,260,good acting,1437213500 +17882,69421,Warren Oates!,1251414534 +17924,48774,dystopia,1378226229 +17952,75341,chemistry,1306380089 +17952,75341,Emilie de Ravin,1306380075 +17952,75341,Robert Pattinson!,1306380066 +17952,75341,romance,1306380082 +17952,75341,shocking ending,1306380102 +17952,81562,drawn out,1306372879 +17952,81562,graphic,1306372879 +17952,81562,pointless,1306372879 +17952,81562,small cast,1306372879 +17952,81562,Too Long!,1306372879 +17966,1246,sad,1451413625 +17966,7025,Christmas,1451413600 +17966,7025,war,1451413602 +17966,141422,feminism,1451415896 +18015,2571,cult film,1443180921 +18015,2571,virtual reality,1443180903 +18024,7298,R,1206819503 +18051,260,good vs evil,1431295082 +18051,260,space epic,1431295034 +18060,480,Michael Crichton,1278819201 +18060,3032,Charlton Heston,1278819098 +18060,3032,creatures,1278819098 +18060,3300,Vin Diesel,1278819225 +18060,8680,Spanish,1278819406 +18060,8830,hot people,1278819148 +18060,33004,funny smart,1278819185 +18060,52717,rape,1278819169 +18060,66789,sexy,1278819237 +18074,497,feel good movie,1202918678 +18074,1252,murder,1202918810 +18074,3376,escapism,1202853501 +18074,3376,filmed during occupation,1202853501 +18074,32387,rage,1202854720 +18081,112421,creativity,1423838708 +18081,112421,experimental music,1423921046 +18081,112421,pop,1423921054 +18081,115617,friendship,1423921072 +18088,4896,Everything,1326891865 +18092,115713,mortdecai,1440261692 +18092,115713,mortecai,1440261683 +18096,59315,comic book,1449685330 +18096,59315,Marvel,1449685309 +18096,59315,Marvel Cinematic Universe,1449685314 +18096,59315,Robert Downey Jr.,1449685344 +18096,59315,superhero,1449685326 +18096,79091,cute,1449685267 +18096,79091,minions,1449685269 +18108,1232,mosfilm,1171363453 +18108,3415,mosfilm,1171363641 +18108,3503,mosfilm,1171363459 +18129,60904,goodMovie,1446645837 +18129,134853,best cartoon ever,1446645238 +18140,88179,falling in love,1437600679 +18140,88179,figuring out,1437600679 +18140,88179,friends,1437600679 +18140,113350,family,1437601026 +18140,113350,romance,1437601005 +18140,113350,time travel,1437600988 +18140,113350,undo,1437601037 +18144,1210,Action,1428942965 +18144,1291,Adventure,1428942913 +18144,1291,aventure,1428942888 +18182,82459,Hailee Steinfeld,1300601663 +18182,82459,Jeff Bridges,1300601679 +18182,82459,predictable,1300601672 +18182,82459,remake,1300601665 +18196,4848,creepy,1167555348 +18196,4848,ending lame,1167555348 +18196,4848,haunting visuals,1167555348 +18196,32587,really graphic violence even though animated style,1167549294 +18204,260,action,1439504844 +18204,260,space,1439504815 +18207,296,great diao,1257721275 +18207,1136,british comedy,1244058056 +18207,1136,Monty Python,1244058063 +18207,1136,parody,1244058061 +18207,1136,satire,1244058065 +18207,1161,disturbing,1244583108 +18207,1200,androids,1244996371 +18207,1200,sci-fi,1244996383 +18207,1200,space,1244996381 +18207,1200,tense,1244996389 +18207,1200,violent,1244996385 +18207,1233,see soon,1221420911 +18207,2060,toilet humour,1257078967 +18207,3114,humorous,1244995325 +18207,3160,HAUNTED BY THE PAST,1244408074 +18207,3160,multiple storylines,1244408078 +18207,3160,racism,1244408090 +18207,3160,Tom Cruise,1244408095 +18207,3409,premonition,1262202718 +18207,3948,comical misunderstandings,1245010182 +18207,6537,action,1244489904 +18207,6870,Dark hero,1245369669 +18207,6870,thriller,1245369676 +18207,8906,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1240860696 +18207,34532,Hoodoo,1243453339 +18207,34532,Kate Hudson - just a joke,1243453360 +18207,34532,mysterious or thrilling,1243453364 +18207,34532,surreal,1243453355 +18207,34532,Twist Ending,1243453356 +18207,34532,Voodoo,1243453352 +18207,43376,based on a true story,1244116287 +18207,43376,interrogation,1244116295 +18207,43376,simple,1244116334 +18207,43376,Straight forward,1244116325 +18207,43376,World War II,1244116302 +18207,45329,Equality,1244913264 +18207,45329,Idians,1244913270 +18207,48385,anti-Semitism,1254757544 +18207,48385,crude humor,1254757547 +18207,48385,funny,1254757549 +18207,48385,satire,1254757531 +18207,48385,social commentary,1254757542 +18207,54503,high school,1244748456 +18207,55820,great acting,1243868057 +18207,55820,no ending,1243868061 +18207,58303,Holocaust,1244724533 +18207,58303,true story,1244724539 +18207,59022,george bush smoking pot,1261943695 +18207,59022,not funny,1261943705 +18207,60684,dystopia,1247910807 +18207,60684,storytelling,1247910810 +18207,63062,police corruption,1249333760 +18207,64278,long,1261667570 +18207,64278,monotonous,1261667595 +18207,64278,psychoanalysis,1261667555 +18207,66203,chick flick,1245064300 +18207,66203,Jennifer Connelly,1245064291 +18207,66203,Scarlett Johansson,1245064297 +18207,67788,dumb but charming,1245772030 +18207,67788,very straight forward story,1245772056 +18207,68073,bad script,1260918411 +18207,68073,Music,1260918399 +18207,68073,Philip Seymour Hoffman,1260918405 +18207,68073,rock and roll,1260918402 +18207,68659,geek,1244057738 +18207,68791,artificial intelligence,1244724732 +18207,69122,Drinking,1244748399 +18207,69134,atmospheric,1245772520 +18207,69134,beautiful scenery,1245772495 +18207,71379,Boring,1260902243 +18207,71379,over-hyped,1260902226 +18207,71379,slow,1260902235 +18207,72998,effects,1261443323 +18207,72998,visual,1261443325 +18207,89864,predictable,1322611214 +18207,90531,frustration,1340057218 +18242,762,Nudity (Topless - Notable),1225248978 +18263,318,classic,1158623606 +18263,1196,sci-fi,1158623676 +18263,1234,Classic,1158623711 +18263,4226,nonlinear,1158623732 +18267,260,Science Fiction,1444888169 +18267,260,space adventure,1444888157 +18274,260,classic sci-fi,1443972530 +18274,260,space adventure,1443972518 +18286,6380,journalism,1336947919 +18301,1562,Bad one liners,1207028788 +18301,1748,Rubber reality,1250474392 +18301,6286,Reminded me of American Astronaut,1206512838 +18301,69464,auteur,1433296286 +18301,69464,based on a book,1433296286 +18301,69464,schizophrenia,1433296286 +18301,101127,based on a tv show,1432259705 +18301,101127,crude humor,1432259705 +18301,101127,guilty pleasure,1432259705 +18301,112550,opression,1419987628 +18301,112550,symbolism,1419987628 +18301,112550,violence,1419987628 +18315,63113,action,1437059415 +18315,63113,James Bond,1437059430 +18315,63113,secret service,1437059460 +18347,1183,glorifying adultery,1156520142 +18358,296,multiple storylines,1285695528 +18358,296,Quentin Tarantino,1285695536 +18358,296,quirky,1285695526 +18358,2571,Action,1285696046 +18358,2571,Keanu Reeves,1285696027 +18358,2571,philosophy,1285696038 +18358,2571,sci-fi,1285696024 +18358,2571,virtual reality,1285696021 +18358,2692,alternate endings,1285695912 +18358,2692,intense,1285695927 +18358,2692,nonlinear,1285695916 +18358,2692,surreal,1285695920 +18374,27773,Korean,1407447379 +18374,31658,Japan,1407447428 +18384,4973,a little boring,1171152345 +18384,49824,Potential Oscar Nom,1171462335 +18408,593,detective,1424571392 +18408,593,serial killer,1424571392 +18408,593,victim,1424571392 +18417,260,AFI 100 (Movie Quotes),1433583969 +18417,260,all-time great,1433583961 +18420,33166,must see,1185257410 +18440,1183,based on a book,1380643168 +18440,1183,british,1380643090 +18440,1183,love,1380643159 +18440,1183,love story,1380643058 +18440,1183,sentimental,1380643129 +18440,1625,Michael Douglas,1380803915 +18440,1625,Mystery,1380803921 +18440,1625,psychological,1380803923 +18440,1625,surprise ending,1380803929 +18440,1625,twist ending,1380803911 +18440,1958,Jack Nicholson,1381414994 +18440,1958,sentimental,1381415033 +18440,69122,comedy,1380802429 +18440,69122,funny,1380802426 +18440,69122,great soundtrack,1380802447 +18440,84152,Bradley Cooper,1380802484 +18440,84152,Message,1380802511 +18440,84152,smart,1380802501 +18440,84152,visually appealing,1380802494 +18446,260,space opera,1443578589 +18458,50,twist ending,1381926114 +18458,293,emotional,1381952677 +18458,296,dark comedy,1381926148 +18458,296,multiple storylines,1381926143 +18458,296,Quentin Tarantino,1381926139 +18458,318,twist ending,1381926132 +18458,2502,cult film,1381926161 +18458,2571,makes you think,1381952660 +18458,2571,philosophy,1381952660 +18458,4226,memory loss,1381926191 +18458,4226,nonlinear,1381926174 +18458,4226,twist ending,1381926171 +18458,6874,martial arts,1381952762 +18458,6874,Quentin Tarantino,1381952756 +18458,7438,martial arts,1381952750 +18458,7438,Quentin Tarantino,1381952713 +18458,7438,surreal,1381952740 +18458,30707,success,1381952628 +18458,46578,characters,1381952707 +18458,46578,dark comedy,1381952688 +18458,48780,twist ending,1381926153 +18458,70599,thought-provoking,1381955646 +18458,103017,twisted ending,1381697587 +18462,1213,masterpiece,1440730800 +18462,1213,robert de niro,1440730817 +18462,6016,violence,1440730662 +18462,64622,Kate Winslet,1440731292 +18462,64622,philosophical,1440731311 +18462,64622,World War II,1440731296 +18464,84615,adultery,1312774182 +18464,84615,crack use,1312774158 +18464,84615,mildly funny,1312774193 +18473,260,sci-fi,1439395590 +18473,260,space adventure,1439395595 +18484,25,drunkenness,1358583791 +18484,25,self destruction,1358583776 +18484,29,dark,1368723210 +18484,111,mental illness,1368723320 +18484,161,tense,1368723502 +18484,440,politics,1368723428 +18484,446,confusing,1358414559 +18484,446,homosexuality,1358414517 +18484,446,opera,1358414521 +18484,446,slow paced,1358414558 +18484,474,tense,1368723502 +18484,519,franchise,1368723282 +18484,555,violent,1368723532 +18484,832,tense,1368723501 +18484,832,thriller,1368723520 +18484,861,police,1368723413 +18484,922,black and white,1368723156 +18484,1089,violent,1368723532 +18484,1175,dark,1368723210 +18484,1206,violent,1368723532 +18484,1214,tense,1368723501 +18484,1228,oscar (best cinematography),1368723386 +18484,1266,oscar (best cinematography),1368723386 +18484,1299,Cambodia,1427104649 +18484,1299,history,1427104656 +18484,1299,war,1427104645 +18484,1357,father-son relationship,1368723267 +18484,1357,mental illness,1368723320 +18484,1390,politics,1368723428 +18484,1464,mystery,1368723338 +18484,1610,thriller,1368723520 +18484,1950,police,1368723413 +18484,1953,oscar (best cinematography),1368723386 +18484,1954,oscar (best cinematography),1368723386 +18484,2324,bittersweet,1358339625 +18484,2324,emotional,1358339649 +18484,2324,funny,1358339641 +18484,2324,heartwarming,1358339628 +18484,2324,Oscar (Best Foreign Language Film),1358339632 +18484,2324,touching,1358339695 +18484,2324,World War II,1358339634 +18484,2353,thriller,1368723520 +18484,2383,police,1368723413 +18484,2490,atmospheric,1358343918 +18484,2490,calculating,1358343886 +18484,2490,clever,1358343928 +18484,2490,one man army,1358343875 +18484,2490,one man show,1358343875 +18484,2490,outsmarting,1358343918 +18484,2490,revenge,1358343862 +18484,2490,semi-bleak,1358346159 +18484,2490,tough guy,1358343941 +18484,2490,violent,1368723532 +18484,2500,high school,1368723294 +18484,2557,dark,1358332288 +18484,2557,disturbing,1358332288 +18484,2557,down on his luck,1358332288 +18484,2557,misanthrope,1358332664 +18484,2557,nonlinear,1358332735 +18484,2557,sad ending,1358332719 +18484,2888,high school,1368723294 +18484,2959,violent,1368723532 +18484,3178,inspirational,1368723306 +18484,3256,tense,1368723502 +18484,3256,thriller,1368723520 +18484,3273,franchise,1368723282 +18484,3435,black and white,1368723156 +18484,3440,franchise,1368723282 +18484,3519,nazis,1368723351 +18484,3730,Francis Ford Coppola,1358433213 +18484,3730,Gene Hackman,1358433211 +18484,3730,paranoia,1358433199 +18484,3980,inspirational,1368723306 +18484,4034,oscar (best cinematography),1368723386 +18484,4082,down and out,1358340937 +18484,4082,drunkard,1358340951 +18484,4082,hopeless,1358340943 +18484,4082,no morale,1358340974 +18484,4082,poetry,1358340959 +18484,4082,surprise ending,1358340989 +18484,4306,pixar,1368723398 +18484,4865,dark,1368723210 +18484,4865,mystery,1368723338 +18484,5026,18th century,1358414898 +18484,5026,atmospheric,1358414903 +18484,5026,stylized,1358414894 +18484,5106,high school,1368723294 +18484,5107,nazis,1368723351 +18484,5218,pixar,1368723399 +18484,5363,high school,1368723293 +18484,5444,pixar,1368723398 +18484,5515,absurd,1358415329 +18484,5515,confusing,1358415346 +18484,5515,slow paced,1358415385 +18484,5515,stylized,1358415334 +18484,5515,surreal,1358415333 +18484,5785,stupid,1368723489 +18484,6300,dark comedy,1358416613 +18484,6334,nudity (topless - notable),1368723372 +18484,6537,franchise,1368723282 +18484,6808,nazis,1368723351 +18484,7072,John Ford,1417866921 +18484,7072,western,1417866904 +18484,7153,oscar (best cinematography),1368723386 +18484,7158,American dream,1358368925 +18484,7158,culture clash,1358368919 +18484,7158,heartbreaking,1358368912 +18484,7158,Jennifer Connelly,1358368909 +18484,7158,sad but good,1358368910 +18484,7160,mental illness,1368723320 +18484,7297,quirky,1358534543 +18484,7297,slow paced,1358534549 +18484,7318,based on biblical story,1358346883 +18484,7318,Christianity,1358346578 +18484,7318,eunduring torment,1358346843 +18484,7318,good acting,1358346583 +18484,7318,good versus evil,1358346669 +18484,7318,RELIGIOUS ZEALOTRY,1358346692 +18484,7323,East Germany,1443253619 +18484,7323,Germany,1443253615 +18484,7323,historical,1443253613 +18484,7323,The fall of the Berlin wall,1443253622 +18484,8360,pixar,1368723398 +18484,8781,politics,1368723428 +18484,8949,drunkenness,1358342724 +18484,8949,failure,1358342586 +18484,8949,funny,1358342417 +18484,8949,witty,1358342417 +18484,8950,dark,1358364569 +18484,8950,disturbing,1358364572 +18484,8950,grim,1358364573 +18484,8950,Mafia,1358364582 +18484,8950,Nudity (Topless - Notable),1358364584 +18484,8950,psychology,1358364566 +18484,8950,schizophrenia,1358364563 +18484,8950,stylized,1358364575 +18484,8950,surreal,1358364578 +18484,8950,twist ending,1358364577 +18484,8983,Action,1358414713 +18484,8983,Beautiful,1358414626 +18484,8983,fantasy,1358414660 +18484,8983,heroine,1358414630 +18484,8983,stylized,1358414622 +18484,8983,Takeshi Kaneshiro,1358414717 +18484,27727,alcoholism,1358373325 +18484,27727,broken man,1358413722 +18484,27727,complex characters,1358373321 +18484,27727,confusing,1358373352 +18484,27727,dark,1358373350 +18484,27727,dysfunctional,1358413896 +18484,27727,intense,1358373335 +18484,27727,irreconcilable main character,1358373689 +18484,27727,loneliness,1358413732 +18484,27727,love story,1358373328 +18484,27727,tragic,1358373330 +18484,31658,adventure,1358331130 +18484,31658,animation,1358331087 +18484,31658,anime,1358331124 +18484,31658,dreamlike,1358331099 +18484,31658,fantasy,1358331102 +18484,31658,fantasy world,1358331110 +18484,31658,Holocaust,1358331136 +18484,31658,steampunk,1358331114 +18484,31658,stylized,1358331117 +18484,31658,war,1358331140 +18484,33660,inspirational,1368723306 +18484,41566,alternate reality,1358432470 +18484,41566,fantasy,1358432465 +18484,41566,Fantasy World,1358432475 +18484,41566,winter scenes,1358432482 +18484,43396,based on a true story,1358339903 +18484,43396,Bonneville Salt Flats,1358339891 +18484,43396,feel-good,1358339881 +18484,43396,indian motorcycle,1358339884 +18484,43396,motorcycle,1358339895 +18484,43396,new zealand,1358339901 +18484,43396,old vs new,1358340491 +18484,43396,pursuing a dream,1358339975 +18484,43396,relationships,1358339938 +18484,43396,road trip,1358340473 +18484,43396,role models,1358339962 +18484,45100,expicit,1422397263 +18484,45100,personal battle,1422397263 +18484,45100,religious,1422397263 +18484,48304,atmospheric,1358346312 +18484,48304,cinematography,1358346330 +18484,48304,gritty,1358346557 +18484,48304,historic,1358346429 +18484,48304,historical setting,1358346542 +18484,48304,suspense,1358346439 +18484,48304,tense,1358346316 +18484,48774,apocalypse,1358369064 +18484,48774,atmospheric,1358369065 +18484,48774,dystopia,1358369067 +18484,48774,future,1358369068 +18484,48774,futuristic,1358369070 +18484,48774,sci-fi,1358369074 +18484,48774,social commentary,1358369062 +18484,48774,survival,1358369071 +18484,48774,visually appealing,1358369072 +18484,50005,cinematography,1358414783 +18484,50005,stylized,1358414844 +18484,50005,weak characters,1358414820 +18484,51540,police,1368723413 +18484,53121,franchise,1368723282 +18484,55901,dark comedy,1358415305 +18484,55901,dream-like,1358414983 +18484,55901,episodic,1358414997 +18484,55901,funny,1358414987 +18484,55901,No story line,1358415276 +18484,55901,surreal,1358414970 +18484,55908,christianity,1368723170 +18484,56174,alone in the world,1358432745 +18484,56174,derelict,1358432840 +18484,56174,dystopia,1358432807 +18484,56174,loneliness,1358432821 +18484,56174,post-apocalyptic,1358432743 +18484,56174,sci-fi,1358432748 +18484,56174,survival,1358432752 +18484,56174,suspense,1358432763 +18484,56174,tense,1358432763 +18484,56331,based on a true story,1358333289 +18484,56331,biographic,1421097432 +18484,56331,escape prison camp,1421097432 +18484,56331,german soldier,1358333307 +18484,56331,hardship,1358333289 +18484,56331,slow paced,1358339548 +18484,56331,Survival Story,1358333289 +18484,56331,survivalism,1421097432 +18484,56331,will to survive,1358333289 +18484,56331,willpower,1358333288 +18484,57543,animation,1423845939 +18484,57543,baginski,1423845939 +18484,57543,short films,1423845939 +18484,58105,adventure,1358331562 +18484,58105,beautiful,1358331480 +18484,58105,fantasy,1358331519 +18484,58105,fantasy world,1358331537 +18484,58105,magic,1358331562 +18484,58492,broken family,1358535988 +18484,58492,estranged,1358535969 +18484,58492,no happy ending,1358536028 +18484,59429,nudity (topless - notable),1368723372 +18484,59784,pixar,1368723399 +18484,60514,adventure,1423847216 +18484,60514,fantasy,1423847228 +18484,62376,adventure,1358331256 +18484,62376,atmosphere,1358331274 +18484,62376,atmospheric,1358331276 +18484,62376,dark,1358331266 +18484,62376,post-apocalyptic,1358331268 +18484,62376,social criticism,1358331295 +18484,62376,steampunk,1358331263 +18484,62376,stylistic,1358331300 +18484,63072,alone in the world,1358369044 +18484,63072,bleak,1358366431 +18484,63072,cannibalism,1358366495 +18484,63072,Charlize Theron,1358366502 +18484,63072,dark,1358366426 +18484,63072,dystopia,1358366419 +18484,63072,grim,1358366431 +18484,63072,happy ending,1358366466 +18484,63072,post-apocalyptic,1358366421 +18484,63072,survival,1358366422 +18484,63072,tense,1358366424 +18484,63072,Viggo Mortensen,1358366487 +18484,63082,against all odds,1358339817 +18484,63082,emotional,1358339800 +18484,63113,franchise,1368723282 +18484,64622,nazis,1368723351 +18484,66097,animation,1358331199 +18484,66097,claymation,1358331205 +18484,66097,dystopia,1358331220 +18484,66097,Fantasy,1358331228 +18484,66097,stop motion,1358331211 +18484,66097,Surreal,1358331214 +18484,66097,Tim Burton,1358331209 +18484,66097,visually stunning,1358331218 +18484,68954,father-son relationship,1368723266 +18484,72998,3D,1358331032 +18484,72998,computer animation,1358330946 +18484,72998,fantasy,1358330912 +18484,72998,futuristic,1358330888 +18484,72998,hyped,1358330936 +18484,72998,mythology,1358330896 +18484,72998,nature,1358330980 +18484,72998,politics,1358330962 +18484,72998,predictable,1358330921 +18484,72998,sci-fi,1358330988 +18484,72998,too long,1358330921 +18484,73321,biblical reference,1432102539 +18484,73321,on a mission,1432102520 +18484,73321,one man army,1432102506 +18484,74458,atmospheric,1358433094 +18484,74458,mystery,1368723338 +18484,74458,plot twist,1358433103 +18484,74458,psychological,1358433099 +18484,74458,twist ending,1358433108 +18484,80880,nudity (topless - notable),1368723372 +18484,85020,one man army,1422397482 +18484,92259,emotional,1358339722 +18484,92259,paralysis,1358339737 +18484,92259,rich and poor,1358339735 +18484,92259,touching,1358339724 +18484,106983,melancholic,1443253761 +18484,106983,self-destructive,1443253757 +18484,125916,psychological,1424904361 +18484,125916,sexuality,1424904361 +18484,125916,socially inept,1424904361 +18484,129415,music,1425164473 +18484,129415,opera,1425164481 +18484,129415,world war I,1425164478 +18484,130638,biographical,1427104618 +18484,130638,documentary,1427104603 +18484,130638,financial crisis,1427104614 +18486,50800,Kristen Stewart,1357091695 +18540,45722,Johnny Depp,1155206946 +18540,45722,pirates,1155206950 +18540,45722,sequels,1155206955 +18555,1713,violent,1229318838 +18566,318,powerful ending,1378478314 +18566,318,psychology,1378478303 +18566,318,reflective,1378478304 +18566,318,thought-provoking,1378478300 +18566,318,twist ending,1378478297 +18566,745,british,1378478484 +18566,745,british comedy,1378478485 +18566,745,comedy,1378478488 +18566,745,penguins,1378478498 +18566,1223,british,1378478460 +18566,1223,british comedy,1378478461 +18566,1223,comedy,1378478454 +18566,1223,funny,1378478457 +18566,1223,gentle,1378478455 +18566,1223,moon,1378478451 +18566,1223,quirky,1378478450 +18566,1223,robots,1378478443 +18566,1223,space travel,1378478448 +18566,1965,aliens,1378478363 +18566,1965,black comedy,1378478361 +18566,1965,dark comedy,1378478359 +18566,1965,dark humor,1378478367 +18566,4306,satire,1378478592 +18566,4306,witty,1378478594 +18566,58559,psychology,1378478264 +18566,58559,stylized,1378478282 +18566,58559,superhero,1378478258 +18566,58559,thriller,1378478279 +18566,58559,violence,1378478275 +18566,59784,Kung Fu,1378478643 +18566,59784,martial arts,1378478644 +18566,76093,dragons,1378478616 +18594,5010,war,1220012478 +18594,5502,mel gibson,1220011764 +18594,6870,based on a book,1220012325 +18606,110,classic,1445159006 +18606,110,inspirational,1445159013 +18606,110,Medieval,1445159011 +18606,356,bittersweet,1445155944 +18606,356,inspirational,1445155947 +18606,356,Oscar Winner,1445155953 +18606,356,tom hanks,1445155943 +18606,1259,friendship,1445159318 +18606,1704,genius,1445159270 +18606,1704,mathematics,1445159268 +18606,1704,psychology,1445159272 +18606,1961,Exceptional Acting,1445155976 +18606,1961,Oscar (Best Actor),1445155967 +18606,1961,psychology,1445155970 +18606,2571,alternate reality,1445156070 +18606,2571,Keanu Reeves,1445156066 +18606,2571,philosophical,1445156076 +18606,2571,thought-provoking,1445156073 +18606,3147,heartwarming,1445155923 +18606,3147,Tom Hanks,1445155926 +18606,3147,touching,1445155916 +18606,4226,black and white,1445159398 +18606,4226,cult film,1445159395 +18606,4995,genius,1445155997 +18606,4995,math,1445155995 +18606,4995,Russell Crowe,1445155992 +18606,30812,biography,1445156030 +18606,30812,Leonardo DiCaprio,1445156021 +18606,30812,Martin Scorsese,1445156025 +18606,30812,true story,1445156027 +18606,34162,funny,1445159120 +18606,34162,predictable,1445159117 +18606,34162,wedding,1445159110 +18606,54286,conspiracy,1445156707 +18606,54286,espionage,1445156700 +18606,54503,hilarious,1445159140 +18606,78499,childhood,1445159038 +18606,78499,Tom Hanks,1445159043 +18606,79132,alternate reality,1445158971 +18606,79132,thought-provoking,1445158962 +18606,84152,entertaining,1445158939 +18606,84152,smart,1445158940 +18606,84152,thought provoking,1445158944 +18617,858,classic,1139685748 +18617,858,dvd,1139685748 +18626,1081,cross dressing women,1438724273 +18649,32,can be hard to follow,1301049447 +18652,86142,Takashi Miike,1311630218 +18661,1704,genius,1285056445 +18661,1704,Great Screenplays,1285056465 +18661,1704,imdb top 250,1285056473 +18661,1704,Matt Damon,1285056448 +18661,1704,Oscar (Best Supporting Actor),1285056452 +18661,1704,Oscar (Best Writing - Screenplay Written Directly for the Screen),1285056455 +18661,1704,psychology,1285056458 +18661,1704,Robin Williams,1285056450 +18661,1704,seen more than once,1285056460 +18661,1961,Exceptional Acting,1285056557 +18661,1961,Oscar (Best Actor),1285056554 +18661,1961,Oscar (Best Picture),1285056550 +18661,4995,based on a book,1285056397 +18661,4995,college,1285056430 +18661,4995,genius,1285056379 +18661,4995,math,1285056425 +18661,4995,mathematics,1285056422 +18661,4995,mental illness,1285056418 +18661,4995,Oscar (Best Directing),1285056390 +18661,4995,Oscar (Best Picture),1285056385 +18661,4995,Oscar Winner,1285056403 +18661,4995,psychology,1285056382 +18661,4995,romance,1285056413 +18661,4995,Russell Crowe,1285056399 +18661,4995,true story,1285056411 +18661,6016,multiple storylines,1285054441 +18661,30707,Morgan Freeman,1285056637 +18661,30707,narrated,1285056634 +18661,30707,Oscar (Best Actress),1285056617 +18661,30707,Oscar (Best Directing),1285056620 +18661,30707,Oscar (Best Supporting Actor),1285056615 +18661,30707,sports,1285056632 +18661,55269,Adrien Brody,1285058099 +18661,55269,Wes Anderson,1285058092 +18661,64957,Brad Pitt,1285056681 +18661,64957,cinematography,1285056693 +18661,64957,original plot,1285056698 +18661,64957,Oscar (Best Effects - Visual Effects),1285056685 +18661,66665,Characters with great depth,1285058076 +18661,66665,great soundtrack,1285058067 +18661,66665,soundtrack,1285058062 +18661,72011,George Clooney,1285056570 +18661,72011,loneliness,1285056593 +18661,72011,Oscar Nominee: Director,1285056590 +18661,72011,thoughtful,1285056586 +18686,18,multiple storylines,1432103841 +18686,50,complicated,1452375640 +18686,50,Dark,1452375676 +18686,50,organized crime,1452375648 +18686,50,tricky,1452375684 +18686,50,twist ending,1452375630 +18686,70,cult classic,1432911221 +18686,70,gore,1432911232 +18686,70,mexico,1432911251 +18686,70,Nudity (Topless - Brief),1432911245 +18686,70,Quentin Tarantino,1432911223 +18686,70,Salma Hayek,1432911239 +18686,70,strippers,1432911249 +18686,70,vampires,1432911219 +18686,70,violence,1432911226 +18686,260,classic,1431700751 +18686,260,cosmos,1431700747 +18686,260,cult,1431700712 +18686,260,geek,1431700731 +18686,260,geeky,1431700737 +18686,260,sci-fi,1431700717 +18686,296,assassin,1432909649 +18686,296,atmospheric,1432909665 +18686,296,classic,1432909644 +18686,296,crime,1432909640 +18686,296,cult film,1432909624 +18686,296,dark comedy,1432909616 +18686,296,drugs,1432909631 +18686,296,good dialogue,1432909672 +18686,296,gore,1431701502 +18686,296,highly quotable,1431701502 +18686,296,multiple storylines,1432909622 +18686,296,nonlinear,1432909618 +18686,296,Quentin Tarantino,1432909614 +18686,296,violence,1432909627 +18686,318,inspirational,1436863701 +18686,318,morgan freeman,1436863701 +18686,318,prison escape,1436863701 +18686,356,classic,1432631488 +18686,356,feel-good,1432631488 +18686,356,witty,1432631488 +18686,551,animation,1433010594 +18686,551,atmospheric,1433010586 +18686,551,claymation,1433010599 +18686,551,dark,1433010592 +18686,551,gothic,1433010584 +18686,551,great soundtrack,1433010602 +18686,551,musical,1433010589 +18686,551,surreal,1433010610 +18686,593,cannibalism,1435044551 +18686,593,horror,1435044525 +18686,593,maniac,1435044525 +18686,593,mental illness,1435044525 +18686,593,serial killer,1435044546 +18686,597,julia roberts,1432910936 +18686,597,prostitution,1432910941 +18686,597,rags to riches,1432910947 +18686,924,atmospheric,1433010445 +18686,924,cinematography,1433010464 +18686,924,cult film,1433010448 +18686,924,dull,1433010474 +18686,924,sci-fi,1433010438 +18686,924,slow,1433010451 +18686,953,Christmas,1436166407 +18686,953,inspirational,1436166414 +18686,953,sentimental,1436166420 +18686,953,small town,1436166422 +18686,1111,animal life,1432105219 +18686,1111,animals,1432105216 +18686,1203,classic,1433019875 +18686,1203,confrontational,1433019889 +18686,1203,courtroom,1433019881 +18686,1203,courtroom drama,1433019872 +18686,1203,good dialogue,1433019869 +18686,1203,great acting,1433019899 +18686,1203,group psychology,1433019885 +18686,1206,cult film,1433010869 +18686,1206,dystopia,1433010864 +18686,1206,psychology,1433010868 +18686,1206,social commentary,1433010875 +18686,1206,stanley kubrick,1433010862 +18686,1206,stylized,1433010879 +18686,1206,surreal,1433010882 +18686,1206,violence,1433010872 +18686,1721,catastrophe,1432909284 +18686,1721,chick flick,1432909327 +18686,1721,disaster,1432909276 +18686,1721,love story,1432909286 +18686,1721,romance,1432909272 +18686,1721,sentimental,1432909289 +18686,1726,post-apocalyptic,1432678218 +18686,1747,black comedy,1432104774 +18686,1747,conspiracy,1432104788 +18686,1747,corruption,1432104777 +18686,1747,politics,1432104768 +18686,2300,musical,1432104041 +18686,2300,show business,1432104046 +18686,2348,drugs,1432677090 +18686,2348,punk,1432677094 +18686,2348,rock and roll,1432677099 +18686,2398,Christmas,1431702048 +18686,2502,satire,1438266436 +18686,2502,workplace,1438266475 +18686,2692,artistic,1433010763 +18686,2692,cult film,1433010843 +18686,2692,German,1433010771 +18686,2692,original,1433010763 +18686,2706,sexuality,1432910418 +18686,2706,silly,1432910437 +18686,2706,teen comedy,1432910422 +18686,2710,forest,1433010116 +18686,2710,Handycam,1433010105 +18686,2710,low budget,1433010090 +18686,2710,original,1433010102 +18686,2710,scary,1433010094 +18686,2710,suspense,1433010111 +18686,2712,atmospheric,1432910982 +18686,2731,children,1433020196 +18686,2858,bittersweet,1432911468 +18686,2858,dark comedy,1432911448 +18686,2858,drugs,1432911476 +18686,2858,midlife crisis,1432911445 +18686,2858,sexuality,1432669555 +18686,2858,suburbia,1432911461 +18686,2858,thought-provoking,1432911452 +18686,2959,atmospheric,1432909473 +18686,2959,based on a book,1432909479 +18686,2959,dark comedy,1432909453 +18686,2959,disturbing,1432909465 +18686,2959,imdb top 250,1432909496 +18686,2959,social commentary,1432909455 +18686,2959,violence,1432909459 +18686,2959,violent,1432909477 +18686,3052,Christianity,1432910217 +18686,3052,controversial,1432910209 +18686,3052,religion,1432910205 +18686,3052,satire,1432910202 +18686,3052,social commentary,1432910225 +18686,3081,atmospheric,1432911781 +18686,3081,Dark,1432911778 +18686,3448,rock and roll,1432675838 +18686,3717,Angelina Jolie,1432909428 +18686,3897,1970s,1438135112 +18686,3897,bittersweet,1438135109 +18686,3897,coming of age,1438135102 +18686,3897,great soundtrack,1438135123 +18686,3897,groupie,1438135143 +18686,3897,journalism,1438135105 +18686,3897,music,1438135096 +18686,3897,Nudity (Topless),1438135134 +18686,3897,rock and roll,1438135094 +18686,3949,addiction,1432910178 +18686,3949,depressing,1432910175 +18686,3949,drugs,1432910173 +18686,3949,heroin,1432910185 +18686,4011,british,1432911677 +18686,4011,Crime,1432911694 +18686,4011,cynical,1432911682 +18686,4011,dark comedy,1432911688 +18686,4011,Great dialogue,1432911690 +18686,4011,Hilarious,1432911700 +18686,4011,narrated,1432911705 +18686,4011,organized crime,1432911708 +18686,4011,quirky,1432911696 +18686,4011,stylized,1432911698 +18686,4367,Action,1432909543 +18686,4367,based on a video game,1432909535 +18686,4367,sexy,1432909530 +18686,4369,cars,1432909795 +18686,4439,Berlin,1432204085 +18686,4439,drug abuse,1432204078 +18686,4439,heroin,1432204081 +18686,4439,prostitution,1432204083 +18686,4439,true story,1432204087 +18686,4886,innovative,1432911640 +18686,4886,Pixar,1432911634 +18686,4973,atmospheric,1432910001 +18686,4973,Audrey Tautou,1432910013 +18686,4973,beautifully filmed,1432909973 +18686,4973,coming of age,1432910019 +18686,4973,cult film,1431722560 +18686,4973,feel-good,1432909976 +18686,4973,French,1432910009 +18686,4973,great soundtrack,1432909979 +18686,4973,idealism,1432909998 +18686,4973,imagination,1432910018 +18686,4973,inspirational,1432909982 +18686,4973,notable soundtrack,1432909993 +18686,4973,Paris,1431722519 +18686,4973,quirky,1432909970 +18686,4973,romance,1432909986 +18686,4973,romantic,1431722568 +18686,4973,romantic but not cheesy,1432910030 +18686,4973,stylized,1432909989 +18686,4973,visually appealing,1432910004 +18686,4993,based on a book,1432909742 +18686,4993,beautifully filmed,1432909755 +18686,4993,epic,1432909760 +18686,4993,Magic,1432909739 +18686,4993,tolkien,1432909735 +18686,4995,academia,1432103986 +18686,4995,insanity,1432104009 +18686,4995,mental illness,1432103997 +18686,4995,psychology,1432103990 +18686,4995,schizophrenia,1432103993 +18686,4995,twist ending,1432104005 +18686,5180,punk,1432204109 +18686,5180,rock'n'roll,1432204116 +18686,5219,action,1433010060 +18686,5219,Milla Jovovich,1433010050 +18686,5219,video game adaptation,1433010053 +18686,5219,zombies,1433010056 +18686,5617,erotic,1432203192 +18686,5888,Russian,1432911177 +18686,5888,violence,1432911174 +18686,6299,animal life,1432104506 +18686,6299,birds,1432104500 +18686,6299,nature,1432104502 +18686,6299,photography,1432104519 +18686,6708,con artists,1438583464 +18686,6708,obsessive compulsive disorder,1438583479 +18686,6807,British,1431702570 +18686,6807,classic,1431702588 +18686,6807,satire,1431702567 +18686,6807,Terry Gilliam,1431702579 +18686,7318,Christianity,1432910681 +18686,7318,jesus,1432910678 +18686,7318,religion,1432910683 +18686,7323,Berlin,1432103888 +18686,7323,communism,1432103901 +18686,7323,East Germany,1432103890 +18686,7323,historical,1432103909 +18686,7323,The fall of the Berlin wall,1432103896 +18686,7371,art house,1432676986 +18686,7371,depressing,1432676988 +18686,7371,experimental,1432676976 +18686,7371,philosophical,1432676992 +18686,7371,social commentary,1432676979 +18686,8014,Atmospheric,1432103769 +18686,8014,buddhist,1432103775 +18686,8014,Zen,1432103782 +18686,8119,blues,1432911853 +18686,8529,airport,1433010942 +18686,8529,feel good,1433010962 +18686,8529,funny,1433010940 +18686,8529,original plot,1433010945 +18686,8529,tom hanks,1433010938 +18686,8783,Atmospheric,1433020288 +18686,8783,suspense,1433020290 +18686,8958,Biography,1432677394 +18686,8958,blues,1432677405 +18686,8958,drugs,1432677388 +18686,8958,great acting,1432677376 +18686,8958,musicians,1432677398 +18686,8958,rhythm & blues,1432677384 +18686,26153,formula 1,1432631790 +18686,26153,racing,1432631782 +18686,26184,criminal comedy,1432910106 +18686,26184,Russian,1432910086 +18686,26184,Yuriy Nikulin,1432910124 +18686,26395,british humor,1432105260 +18686,26395,music,1432105248 +18686,26395,parody,1432105253 +18686,26395,rock,1432105244 +18686,27397,friendship,1432103655 +18686,27397,soldiers,1432103665 +18686,27856,crime,1433020032 +18686,27856,Russian,1433020024 +18686,27856,violence,1433020041 +18686,30816,Andrew Lloyd Webber,1432678864 +18686,30816,Romance,1432678872 +18686,36363,cult film,1433010808 +18686,36363,russian,1433010814 +18686,48825,Afghanistan,1432910733 +18686,48825,propaganda,1432910742 +18686,48825,Russian,1432910744 +18686,48825,Soviet Union,1432910735 +18686,51091,Blues,1432911824 +18686,51091,Samuel L. Jackson,1432911826 +18686,56093,Nikita Mikhalkov,1432910542 +18686,56093,propaganda,1432910761 +18686,56093,remake,1432910531 +18686,56563,design,1432103451 +18686,56563,interviews,1432103457 +18686,56563,typography,1432103453 +18686,60904,based on book,1432911076 +18686,60904,Bulgakov,1432911113 +18686,60904,communism,1432911063 +18686,60904,Russian,1432911044 +18686,60904,social commentary,1432911129 +18686,60904,Soviet Union,1432911050 +18686,60950,Barcelona,1433009923 +18686,60950,love triangles,1433009940 +18686,60950,Scarlett Johansson,1433009918 +18686,60950,sexuality,1433009929 +18686,60950,threesome,1433009924 +18686,60950,Woody Allen,1433009931 +18686,63515,beautiful photography,1433019969 +18686,63515,monastery,1433019942 +18686,63515,Russian,1433019944 +18686,64229,blues,1431702101 +18686,64229,musicians,1432677430 +18686,64614,cars,1432104229 +18686,64614,racism,1432104218 +18686,64622,Holocaust,1432102853 +18686,64622,World War II,1432102864 +18686,69134,atmospheric,1433009965 +18686,69134,beautiful scenery,1433009970 +18686,69134,disturbing,1433009968 +18686,69134,genital mutilation,1433009989 +18686,69134,Lars von Trier,1433009962 +18686,69134,nudity,1433009984 +18686,69134,violence,1433009977 +18686,70958,drama,1432104743 +18686,70958,musical,1432104738 +18686,70958,paris,1432104750 +18686,70958,theatre,1432104742 +18686,72386,Nudity (Topless),1432910627 +18686,72386,Penélope Cruz,1432910615 +18686,72712,consumerism,1432103491 +18686,72712,design,1432103481 +18686,72712,industrial design,1432103484 +18686,72712,jonathan ive,1432103487 +18686,74727,criminal comedy,1432911325 +18686,74727,prison,1432911343 +18686,74727,Russian,1432911318 +18686,76054,animal life,1432103965 +18686,76054,Sea Life,1432103955 +18686,76054,Underwater,1432103956 +18686,79132,complicated,1432677249 +18686,79132,mindfuck,1432677253 +18686,79132,pretentious,1432677275 +18686,79191,cars,1432103807 +18686,81845,England,1432105043 +18686,81845,great performances,1432105054 +18686,81845,Oscar (Best Picture),1432105032 +18686,81845,royalty,1432105065 +18686,81845,stammering,1432105060 +18686,85774,biography,1432105167 +18686,85774,cars,1432105164 +18686,85774,death,1432105171 +18686,85774,formula 1,1432105162 +18686,85774,Formula 1 racing,1432105159 +18686,85774,sports,1432105169 +18686,86882,1920s,1432104133 +18686,86882,art,1432104142 +18686,86882,bittersweet,1432104125 +18686,86882,dialogue,1432104129 +18686,86882,historical,1432104145 +18686,86882,Paris,1432104109 +18686,86882,time travel,1432104114 +18686,88911,lovely,1432104283 +18686,89898,advertising,1432104611 +18686,89898,based on a book,1432104614 +18686,89898,Russia,1432104616 +18686,89898,social commentary,1432104632 +18686,91261,Communism,1432910328 +18686,91261,Iron Curtain,1432910333 +18686,91261,Musical,1432910330 +18686,91261,rock and roll,1432910340 +18686,91261,Russian,1432910343 +18686,96296,academia,1451244150 +18686,96296,comedy,1451244139 +18686,96296,graduate student,1451244142 +18686,97132,design,1432103329 +18686,97132,urban,1432103324 +18686,97752,future,1432103271 +18686,97752,multiple storylines,1432103259 +18686,97752,pretentious,1432103248 +18686,102666,russia,1431701688 +18686,102666,time travel,1431701660 +18686,104913,1970s,1432914710 +18686,104913,based on a true story,1432914701 +18686,104913,cars,1432914704 +18686,104913,Formula 1,1431706536 +18686,104913,racing,1431706548 +18686,104913,sports,1431706540 +18686,104913,true story,1431706544 +18686,107408,Russian,1433011122 +18686,107408,war pilots,1433011119 +18686,107408,WWII,1433011118 +18686,108727,controversial,1431702840 +18686,108727,sexuality,1431702830 +18686,109487,pretentious,1432580617 +18686,109487,space,1432580532 +18686,109487,time-travel,1432580535 +18686,116138,corruption,1432104903 +18686,116138,social commentary,1432104913 +18686,118085,children,1433011540 +18686,118085,Russian,1433011538 +18686,118085,scouts,1433011547 +18686,120466,die antwoord,1432203026 +18686,120466,future,1432203018 +18686,122882,action,1433971118 +18686,122882,apocalyptic,1433971187 +18686,122882,charlize theron,1433971136 +18686,122882,chase,1433971144 +18686,122882,desert,1433971128 +18686,122882,dystopian,1433971145 +18686,122882,non-stop,1433971149 +18686,122882,post apocalypse,1433971122 +18686,122882,violence,1433971146 +18686,122886,Star Wars,1450618461 +18686,127146,rock and roll,1431703864 +18686,133473,children,1431701990 +18686,133473,england,1431702006 +18686,133507,Ecology,1431706871 +18686,133714,noir,1432103431 +18686,133716,classic,1432103722 +18686,133718,soccer,1432104340 +18686,133735,punk,1432202774 +18686,133735,rock'n'roll,1432202767 +18686,133737,design,1432203405 +18686,133745,children,1432204388 +18686,134184,elections,1432911402 +18686,134184,social commentary,1432911397 +18686,134250,Russian,1433011328 +18686,134853,bittersweet,1444055223 +18686,134853,childhood,1444055210 +18686,134853,coming of age,1444055191 +18686,134853,emotions,1444055212 +18686,134853,Pixar,1444055203 +18686,134853,psychology,1444055199 +18686,134853,San Francisco,1444055195 +18700,904,Alfred Hitchcock,1442190583 +18700,904,amateur detective,1442190814 +18700,904,classic,1442190787 +18700,904,Grace Kelly,1442190793 +18700,904,Hitchcock,1442190806 +18700,904,James Stewart,1442190780 +18700,904,mystery,1442190776 +18700,904,noir thriller,1442190802 +18700,904,photography,1442190809 +18700,904,suspense,1442190588 +18700,904,suspenseful,1442190790 +18700,904,tense,1442190784 +18700,904,visually appealing,1442190817 +18725,5195,screwball,1138553687 +18736,1732,Coen,1140446456 +18761,4799,wacky,1140950627 +18765,407,Lovecraftian mythology,1401232169 +18765,1243,surreal,1401234794 +18765,48043,surreal,1401233501 +18765,94558,visually appealing,1401233475 +18771,592,comic book,1210639945 +18771,2713,giant alligator,1210639288 +18771,4995,brilliance,1210639953 +18771,4995,mental illness,1210639956 +18771,4995,oscar winner,1210639959 +18771,6511,>1000 translations,1206749533 +18771,6511,accurate,1206749533 +18771,6511,most famous jesus movie ever,1206749573 +18773,1617,conspiracy,1294254435 +18773,1617,twist ending,1294254442 +18796,26614,Matt Damon,1225374323 +18796,44191,Hugo Weaving,1225373961 +18796,44191,Natalie Portman,1225373970 +18796,59784,Jack Black,1225373922 +18805,89273,fiction,1433538617 +18805,89273,nazis,1433538617 +18805,89273,suspense,1433538617 +18838,260,han solo,1436474048 +18838,260,space,1436474052 +18848,30776,Eleanor Powell,1429401881 +18848,59680,Maurice Chevalier,1429401809 +18848,86548,animal abuse,1427962208 +18848,88911,Gérard Depardieu,1433886747 +18848,91681,boring,1427961933 +18848,91681,too long,1427961944 +18848,116161,2015 Academy Award Nomination BEST ACTOR,1424960788 +18848,116161,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1424960804 +18848,116161,Academy Award Nominee,1424960728 +18848,116161,sport,1424960817 +18848,116897,dark humor,1427962077 +18876,260,coming of age,1439772911 +18876,260,sci-fi,1439772895 +18876,260,space fantasy,1439772974 +18876,260,space opera,1439772940 +18876,260,sword and sorcery,1439772921 +18912,778,cliche,1362935499 +18912,57669,dark,1362935455 +18912,57669,suspenseful,1362935470 +18912,90376,disturbing,1366598830 +18912,90376,emotional,1362935069 +18912,116797,boring,1445132901 +18912,116797,hisorically inaccurate,1445132910 +18912,116797,historical inaccuracy,1445132917 +18917,5380,based on a play,1212365624 +18953,2858,want to see again,1441551370 +18953,55247,nature,1441551184 +18953,55247,want to see again,1441551200 +18961,110,dvd,1147881662 +18961,111,dvd,1142200662 +18961,150,dvd,1138135517 +18961,235,dvd,1142199667 +18961,296,dvd,1138136719 +18961,318,dvd,1138653631 +18961,356,dvd,1142200633 +18961,527,dvd,1138135476 +18961,555,dvd,1138136567 +18961,589,dvd,1142201034 +18961,593,dvd,1138135396 +18961,608,dvd,1142200539 +18961,750,dvd,1138136588 +18961,778,dvd,1138136683 +18961,858,dvd,1138653616 +18961,903,dvd,1142200912 +18961,923,dvd,1142200357 +18961,1079,dvd,1142201017 +18961,1200,dvd,1138135373 +18961,1201,dvd,1142200891 +18961,1206,dvd,1154882115 +18961,1214,dvd,1138135502 +18961,1220,dvd,1138136640 +18961,1221,dvd,1138555833 +18961,1222,dvd,1142199712 +18961,1227,dvd,1142200685 +18961,1233,dvd,1142200872 +18961,1240,dvd,1142201038 +18961,1250,dvd,1138136620 +18961,1258,dvd,1142200842 +18961,1320,dvd,1138140191 +18961,1690,dvd,1138140180 +18961,1732,dvd,1147881699 +18961,1884,dvd,1155380006 +18961,1921,dvd,1147881636 +18961,2023,dvd,1138555840 +18961,2231,dvd,1142200925 +18961,2232,dvd,1147881623 +18961,2329,dvd,1147881710 +18961,2542,dvd,1147881673 +18961,2571,dvd,1138135464 +18961,2710,dvd,1138136477 +18961,2762,dvd,1138135469 +18961,2959,dvd,1138135427 +18961,4011,dvd,1142200499 +18961,4262,dvd,1138135394 +18961,4874,dvd,1151424223 +18961,4878,dvd,1138653611 +18961,4881,dvd,1138136661 +18961,4973,dvd,1142200858 +18961,6333,dvd,1142200342 +18961,6711,dvd,1147881687 +18961,7367,dvd,1142199431 +18961,8798,dvd,1142200937 +18961,8957,dvd,1138653664 +18961,32587,dvd,1142201060 +18961,33493,dvd,1142200616 +18964,260,exciting,1438261021 +18964,260,oldschool,1438261013 +18964,53125,adventure,1438695973 +18964,53125,comedy,1438695973 +18964,53125,pirates,1438695973 +18967,260,Cool,1444126872 +18967,260,Epic,1444126878 +18967,260,good story,1444126906 +18975,260,Boring,1443692510 +18975,260,scifi cult,1443692498 +18979,260,Science Fiction,1431015268 +18979,260,space,1431015271 +18982,56251,To See,1220582091 +18996,260,classic,1443637559 +18996,260,space epic,1443637547 +19012,3623,action,1439776316 +19012,3623,Tom Cruise,1439776287 +19012,3785,parody,1439778634 +19012,4995,genius,1439776972 +19012,4995,inspirational,1439776970 +19012,4995,intelligent,1439776967 +19012,4995,math,1439776961 +19012,4995,mathematics,1439776958 +19012,4995,psychology,1439776952 +19012,4995,schizophrenia,1439776954 +19012,6888,parody,1439778681 +19012,44972,parody,1439778706 +19012,45186,spy,1439776339 +19012,45186,Tom Cruise,1439776337 +19012,53996,giant robots,1439777791 +19012,53996,Michael Bay,1439777786 +19012,53996,Special Effects,1439777788 +19012,79132,Christopher Nolan,1439776739 +19012,79132,surreal,1439776743 +19012,79132,visually appealing,1439776769 +19012,85414,intelligent,1439776858 +19012,85414,parallel universe,1439776875 +19012,85414,sci-fi,1439776880 +19012,85414,time loop,1439776859 +19012,85414,time travel,1439776860 +19012,87520,Michael Bay,1439777819 +19012,91630,action,1439776427 +19012,91630,Jeremy Renner,1439776435 +19012,91630,spy team,1439776431 +19012,91630,Tom Cruise,1439776442 +19012,96610,Bruce Willis,1439776824 +19012,96610,dystopia,1439776825 +19012,96610,future,1439776827 +19012,96610,time travel,1439776811 +19012,109487,artificial intelligence,1439776665 +19012,109487,black hole,1439776652 +19012,109487,Christopher Nolan,1439776645 +19012,109487,physics,1439776647 +19012,109487,relativity,1439776642 +19012,109487,time travel,1439776676 +19012,109487,time-travel,1439776641 +19012,110591,mindfuck,1439780549 +19012,111781,Jeremy Renner,1439776532 +19012,111781,Tom Cruise,1439776506 +19012,112852,Chris Pratt,1439776584 +19012,112852,fantasy,1439776588 +19012,112852,fun,1439776591 +19012,112852,great soundtrack,1439776595 +19012,112852,Marvel,1439776578 +19012,112852,sci-fi,1439776590 +19012,114935,science fiction,1439776900 +19012,114935,time travel,1439776897 +19012,116797,Alan Turing,1439777044 +19012,116797,Benedict Cumberbatch,1439777056 +19012,116797,code breaking,1439777069 +19012,116797,Computers,1439777059 +19012,116797,mathematics,1439777046 +19012,122882,action,1439777225 +19012,122882,dystopian,1439777221 +19012,122882,post apocalypse,1439777219 +19012,122882,visually appealing,1439777245 +19021,142999,outbreak,1443538508 +19027,924,artificial intelligence,1140588693 +19027,924,cosmic,1140588693 +19027,924,evolution,1140588693 +19027,924,HAL 9000,1140588693 +19027,1148,claymation,1137341545 +19027,1148,English,1137341545 +19027,1148,penguins gone wrong,1137341545 +19027,1148,smart pets,1137341546 +19027,1220,black music culture snl 80's,1140588551 +19027,1261,want to see,1137341730 +19027,3093,anti-Western,1137341697 +19027,3093,corporate greed,1137341697 +19027,3093,critique of capitalism,1137341697 +19027,3093,snow,1137341697 +19027,3246,assassination,1141674144 +19027,3246,black history,1141674144 +19027,3246,radical,1141674144 +19027,3246,repression,1141674144 +19062,260,scifi cult,1437328599 +19086,260,classic,1434815304 +19086,260,space,1434815297 +19116,260,futuristic,1437675042 +19116,260,sci-fi,1437675059 +19131,134130,realistic,1449497766 +19131,134130,Space,1449497758 +19131,148426,so bad it's good,1449529974 +19150,1,animation,1152258046 +19150,1,kids movie,1152258070 +19150,6,overrated,1152258265 +19150,466,comedy,1152257993 +19157,260,fiction,1439055307 +19157,260,space,1439055297 +19157,260,space adventure,1439055281 +19187,32,dystopia,1218189679 +19187,32,post-apocalyptic,1218189674 +19187,32,time travel,1218189670 +19187,47,crime,1218189520 +19187,47,serial killer,1218189515 +19187,50,organized crime,1218189322 +19187,50,twist ending,1218189327 +19187,150,based on a true story,1218189398 +19187,150,space,1218189395 +19187,150,true story,1218189391 +19187,260,sci-fi,1218189169 +19187,293,assassin,1218196161 +19187,527,Holocaust,1218189455 +19187,590,war,1218189213 +19187,608,quirky,1218189105 +19187,778,addiction,1218206605 +19187,858,Mafia,1218206385 +19187,1089,violence,1218206519 +19187,1206,brainwashing,1218206911 +19187,1206,dystopia,1218206918 +19187,1206,Stanley Kubrick,1218206914 +19187,1219,classic,1218206968 +19187,1219,psychology,1218206966 +19187,1219,serial killer,1218206964 +19187,1259,Stephen King,1218196376 +19187,1617,conspiracy,1218189469 +19187,1704,genius,1218196194 +19187,1721,time travel,1218189371 +19187,1921,Darren Aronofsky,1218206189 +19187,1921,mathematics,1218206185 +19187,1921,maths,1218206192 +19187,2028,World War II,1218189247 +19187,2117,dystopia,1218206322 +19187,2117,George Orwell,1218206325 +19187,2194,gangsters,1218196451 +19187,2194,law enforcement,1218196453 +19187,2324,Holocaust,1218207230 +19187,2594,Dark,1218207071 +19187,2594,Sci-Fi,1218207067 +19187,2716,ghosts,1218189604 +19187,2762,twist ending,1218188967 +19187,2858,dark comedy,1218189503 +19187,2858,surrealism,1218189498 +19187,2997,dark comedy,1218207307 +19187,2997,surreal,1218207304 +19187,2997,surrealism,1218207301 +19187,3147,Frank Darabont,1218207203 +19187,3147,Stephen King,1218207200 +19187,3949,depressing,1218196238 +19187,4226,mystery,1218189037 +19187,4226,nonlinear,1218189027 +19187,4235,multiple storylines,1218206506 +19187,4995,math,1218189619 +19187,4995,psychology,1218189624 +19187,4995,schizophrenia,1218189629 +19187,5379,Sundance award winner,1218196609 +19187,5418,espionage,1218189586 +19187,5418,spying,1218189582 +19187,5608,mass behavior,1218204922 +19187,6214,hard to watch,1218206350 +19187,7153,Oscar (Best Picture),1218188990 +19187,7361,surreal,1218189042 +19187,27773,revenge,1218196214 +19187,32587,artistic,1218206990 +19187,44191,dystopia,1218189307 +19187,48394,surreal,1218206558 +19187,48516,Martin Scorsese,1218189123 +19187,48516,police corruption,1218189119 +19187,48774,dystopia,1218207326 +19187,48774,end of the world,1218207323 +19187,48780,magic,1218206601 +19187,54286,espionage,1218189482 +19187,54286,twist ending,1218189489 +19187,55908,entirely dialogue,1218207247 +19187,55908,immortality,1218207249 +19187,55908,philosophical,1218207244 +19210,260,"space, action, harrison ford, western",1432423308 +19211,8781,Denzel Washington,1376212255 +19223,260,epic adventure,1435196225 +19223,260,space adventure,1435196232 +19223,115713,ai,1435196428 +19223,115713,beard,1435196428 +19223,115713,technology,1435196428 +19230,1202,boys behaving badly,1145380853 +19230,1965,redefining the 80s,1145380883 +19236,4246,comedy,1186687214 +19236,4246,drama,1186687214 +19236,4246,fiction,1186687214 +19236,4246,funny,1186687214 +19236,4246,romance,1186687214 +19262,515,romance,1225380520 +19262,596,pixar,1225380294 +19262,903,Alfred Hitchcock,1225380320 +19262,1821,gay,1225387944 +19262,2690,Romance,1225385521 +19262,3082,James Bond,1225380995 +19262,3548,queer,1225388555 +19262,6502,sci-fi,1225381258 +19262,47940,Gay,1226431658 +19262,61646,Gay,1226431751 +19263,39,teen movie,1368110179 +19263,521,neo-noir,1368110422 +19263,1033,unlikely friendships,1368110620 +19263,1088,dancing,1368110459 +19263,1089,stylish,1368109769 +19263,1188,dancing,1368110459 +19263,1259,unlikely friendships,1368110620 +19263,1387,suspenseful,1368110311 +19263,1678,women,1368110008 +19263,1950,detective,1368110679 +19263,1968,teen movie,1368110179 +19263,2019,masterpiece,1368109526 +19263,2144,teen movie,1368110180 +19263,2442,musicians,1368110153 +19263,2485,teen movie,1368110179 +19263,2550,supernatural,1368109609 +19263,2579,neo-noir,1368110422 +19263,2866,musicians,1368110153 +19263,3418,women,1368110008 +19263,3499,suspenseful,1368110311 +19263,3791,dancing,1368110459 +19263,3798,supernatural,1368109609 +19263,3798,suspenseful,1368110311 +19263,3918,splatter,1368109963 +19263,4291,Dolly Parton,1217425173 +19263,4291,women,1368110007 +19263,4720,supernatural,1368109609 +19263,5266,suspenseful,1368110311 +19263,5693,dancing,1368110459 +19263,6214,brutality,1368110351 +19263,6254,screwball comedy,1368110772 +19263,6867,unlikely friendships,1368110620 +19263,7217,noir thriller,1368109380 +19263,7223,noir thriller,1368109380 +19263,8711,screwball comedy,1368110772 +19263,31785,melancholic,1368109293 +19263,55553,splatter,1368109963 +19263,64993,melancholic,1368109293 +19263,82242,original,1368109217 +19269,1298,Decadence,1188180451 +19269,1298,Music Movie,1188180451 +19269,1298,Obstination,1188180451 +19269,1298,Pink Floyd,1188180451 +19269,1298,The Wall,1188180451 +19269,1438,Natural Disaster,1188180381 +19269,1438,Thriller,1188180381 +19269,1438,Volcanoes,1188180381 +19269,1587,Fantasy,1188180355 +19269,1587,favorites,1188180355 +19269,1587,schwarzenegger,1188180355 +19269,1717,Bad Movies,1188180294 +19269,1717,Rubbish,1188180294 +19269,1907,Cartoons,1188180151 +19269,3263,comedy,1188180502 +19269,3263,drama,1188180502 +19269,3263,family,1188180502 +19269,3263,fun,1188180502 +19269,3916,American Football,1188180254 +19269,3916,Leadership,1188180254 +19269,3916,Team Work,1188180254 +19269,4310,World War II,1188180164 +19269,6378,MAFIA LIFE,1188180132 +19269,8622,global terrorism,1188180218 +19269,8644,Futuristic,1188180487 +19269,8644,Isaak Asimov,1188180487 +19269,8644,sci-fi,1188180487 +19276,6223,drugs,1311406472 +19281,260,sci-fi,1443546076 +19281,260,space epic,1443546082 +19285,109374,Budapest,1449302320 +19285,109374,visually appealing,1449302336 +19290,65230,animal:dog,1235439263 +19292,61248,remake,1224508510 +19299,260,mythology,1439792574 +19299,260,Science Fiction,1439792589 +19331,47,biblical,1444534976 +19331,47,crime,1444534982 +19331,47,dark,1444534994 +19331,47,disturbing,1444534971 +19331,47,greed,1444534998 +19331,47,horror,1444534981 +19331,47,serial killer,1444534961 +19331,47,violent,1444534985 +19331,50,thriller,1444534932 +19331,232,aging,1444531181 +19331,232,Ang Lee,1444531177 +19331,232,cooking,1444531178 +19331,232,food,1444531186 +19331,232,relationships,1444531173 +19331,293,assassin,1444534872 +19331,293,hit men,1444534872 +19331,293,thriller,1444534887 +19331,318,friendship,1444529800 +19331,318,Morgan Freeman,1444529792 +19331,318,narrated,1444529829 +19331,318,prison,1444529824 +19331,318,prison escape,1444529820 +19331,318,revenge,1444529816 +19331,318,Tim Robbins,1444529804 +19331,318,wrongful imprisonment,1444529809 +19331,1176,imaginative,1444528969 +19331,1176,intellectual,1444528955 +19331,1176,Irene Jacob,1444528944 +19331,1176,Krzysztof Kieslowski,1444528941 +19331,1176,lyrical,1444528947 +19331,1210,action,1444529881 +19331,1210,aliens,1444529879 +19331,1210,George Lucas,1444529892 +19331,1210,Harrison Ford,1444529867 +19331,1210,sci-fi,1444529889 +19331,1210,sequel,1444529879 +19331,1210,space,1444529864 +19331,1210,Star Wars,1444529869 +19331,1210,starship pilots,1444529899 +19331,1210,war,1444529884 +19331,1265,alternate reality,1444530190 +19331,1265,Bill Murray,1444530207 +19331,1265,character development,1444530216 +19331,1265,comedy,1444530195 +19331,1265,existentialism,1444530199 +19331,1265,feel-good,1444530209 +19331,1265,funny,1444530200 +19331,1265,love,1444530219 +19331,1265,romantic,1444530228 +19331,1265,self discovery,1444530203 +19331,1732,great dialogue,1444535166 +19331,1732,Jeff Bridges,1444535201 +19331,1732,Nudity (Full Frontal),1444535170 +19331,1732,off-beat comedy,1444535205 +19331,1732,quirky,1444535198 +19331,1732,satirical,1444535172 +19331,1732,Steve Buscemi,1444535164 +19331,2068,coming of age,1444530920 +19331,2068,funny,1444530913 +19331,2424,bookshop,1444530521 +19331,2424,happy ending,1444530524 +19331,2424,Meg Ryan,1444530516 +19331,2424,Romance,1444530517 +19331,2424,romantic comedy,1444530529 +19331,2424,Tom Hanks,1444530527 +19331,3948,awkward,1444529225 +19331,4018,creative,1444529752 +19331,4018,funny,1444529739 +19331,4018,Helen Hunt,1444529729 +19331,4018,hilarious,1444529746 +19331,4018,Mel Gibson,1444529756 +19331,4018,stereotypes,1444529760 +19331,4973,beautifully filmed,1444528866 +19331,4973,comedy,1444528870 +19331,4973,feel-good,1444528900 +19331,4973,imagination,1444528880 +19331,4973,love,1444528875 +19331,4973,notable soundtrack,1444528857 +19331,4973,quirky,1444528852 +19331,4973,whimsical,1444528860 +19331,5299,comedy,1444529040 +19331,5299,family,1444529044 +19331,5299,funny,1444529038 +19331,6350,aviation,1444531651 +19331,6350,funny,1444531664 +19331,6350,imagination,1444531644 +19331,6350,Studio Ghibli,1444531642 +19331,6350,visually appealing,1444531647 +19331,6539,comedy,1444529977 +19331,6539,Disney,1444529957 +19331,6539,funny,1444529960 +19331,6539,johnny depp,1444529962 +19331,6539,magic,1444529965 +19331,6539,Orlando Bloom,1444529978 +19331,6539,pirates,1444529987 +19331,6539,sword fight,1444529953 +19331,7161,family,1444535334 +19331,7161,funny,1444535340 +19331,7161,Steve Martin,1444535326 +19331,8464,american idiocy,1444531783 +19331,8464,documentary,1444531780 +19331,8464,social criticism,1444531787 +19331,26614,thriller,1444534834 +19331,26662,anime,1444530775 +19331,26662,Hayao Miyazaki,1444530771 +19331,26662,Studio Ghibli,1444530778 +19331,27611,military,1444534772 +19331,27611,sci-fi,1444534765 +19331,34321,Billy Bob Thornton,1444531424 +19331,34321,comedy,1444531438 +19331,34321,cursing,1444531450 +19331,34321,funny,1444531430 +19331,34321,redemption,1444531445 +19331,46578,beauty pageant,1444529380 +19331,46578,family,1444529368 +19331,46578,independent film,1444529351 +19331,46578,off-beat comedy,1444529354 +19331,46578,quirky,1444529369 +19331,46578,road trip,1444529384 +19331,46578,satire,1444529372 +19331,46578,steve carell,1444529375 +19331,56367,comedy,1444535241 +19331,56367,indie,1444535247 +19331,56367,pregnancy,1444535236 +19331,56367,teen pregnancy,1444535244 +19331,56367,witty,1444535238 +19331,64957,Aging,1444531050 +19331,64957,Brad Pitt,1444531041 +19331,64957,original plot,1444531048 +19331,64957,philosophical,1444531044 +19331,66934,comedy,1444530699 +19331,66934,great soundtrack,1444530694 +19331,66934,mad scientist,1444530688 +19331,66934,Neil Patrick Harris,1444530691 +19331,66934,parody,1444530697 +19331,68358,sci fi,1444530041 +19331,68358,spock,1444530038 +19331,68358,Star Trek,1444530030 +19331,68358,teleportation,1444530045 +19331,72998,aliens,1444529449 +19331,72998,graphic design,1444529463 +19331,72998,predictable,1444529440 +19331,72998,racism,1444529457 +19331,72998,sci-fi,1444529439 +19331,93040,drama,1444530864 +19331,93040,historical,1444530873 +19331,93040,interesting,1444530861 +19331,95441,cocaine,1444529273 +19331,95441,crude humor,1444529258 +19331,95441,directorial debut,1444529282 +19331,95441,Mark Wahlberg,1444529284 +19331,97938,Ang Lee,1444531076 +19331,97938,India,1444531086 +19331,97938,ocean,1444531083 +19331,97938,visually appealing,1444531077 +19331,106696,Disney,1444530267 +19331,106696,feminist,1444530281 +19331,106696,musical,1444530270 +19331,106696,storyline,1444530270 +19331,109249,beautiful scenery,1444529645 +19331,109249,coming of age,1444529671 +19331,109249,dark humor,1444529660 +19331,109249,Fernando E. Solanas,1444529608 +19331,109249,imaginative,1444529635 +19331,109249,quirky,1444529613 +19331,109249,whimsical,1444529629 +19331,109374,amazing storytelling,1444529104 +19331,109374,Bill Murray,1444529124 +19331,109374,cinematography,1444529143 +19331,109374,eastern europe,1444529119 +19331,109374,europe,1444529115 +19331,109374,historical,1444529139 +19331,109374,on the run,1444529148 +19331,109374,quirky,1444529109 +19331,115617,comedy,1444530392 +19331,115617,Coming of Age,1444530417 +19331,115617,family,1444530402 +19331,115617,friends,1444530410 +19331,115617,funny,1444530394 +19331,115617,happy ending,1444530413 +19331,115617,heartwarming,1444528813 +19331,115617,inspiring,1444530404 +19331,115617,japanese influence,1444528772 +19331,115617,pixar,1444530397 +19331,115617,technology,1444528781 +19331,118997,comedy,1444530159 +19331,118997,fairy tale,1444530100 +19331,118997,funny,1444530106 +19331,118997,great soundtrack,1444530127 +19331,118997,imaginative,1444530113 +19331,118997,meryl streep,1444530142 +19331,118997,musical,1444530098 +19331,134853,coming of age,1444530618 +19331,134853,creative,1444530620 +19331,134853,happiness,1444530631 +19331,134853,imaginative,1444530628 +19331,134853,Pixar,1444530633 +19355,356,feel-good,1423938831 +19355,356,heartwarming,1423938831 +19355,356,modern classic,1423938831 +19355,7817,erotic,1251229618 +19359,296,nonlinear,1249948217 +19359,296,violent,1249948223 +19359,3950,Nudity (Full Frontal),1244754138 +19359,6877,alcoholic,1249948164 +19359,6877,drag queen movie,1249948150 +19359,6877,queer,1249948178 +19359,6877,subversive,1249948158 +19359,6877,washed up,1249948171 +19359,8981,deception,1247287199 +19359,27369,mtv,1252900721 +19359,50872,Pixar,1250646065 +19359,53123,emotional,1247198173 +19359,55071,documentary,1249329290 +19359,55071,George W. Bush,1249329290 +19359,57243,israel,1250523389 +19359,59258,adoption,1250460510 +19359,59258,Philadelphia,1250460498 +19359,59258,pregnancy,1250460498 +19359,59258,Tina Fey,1250460525 +19359,61257,economy,1246857274 +19359,61257,George W. Bush,1246857342 +19359,61257,Ron Paul,1246857321 +19359,61257,United States,1246857284 +19359,67788,shopping,1250483384 +19359,68835,gay,1254632286 +19359,68835,musical,1254632293 +19359,69712,manipulation,1258918151 +19359,69784,mockumentary,1247589622 +19359,69784,Nudity (Full Frontal),1247538046 +19359,69784,Sacha Baron Cohen,1247538046 +19360,318,Inspirational,1447832403 +19360,318,Morgan Freeman,1447832393 +19360,30707,boxing,1447832437 +19379,260,family,1440786178 +19379,260,fantasy,1440786185 +19387,5989,Leonardo DiCaprio,1263764997 +19416,88125,based on a book,1315355544 +19416,88125,franchise,1315355541 +19416,88125,magic,1315355537 +19416,88125,top-notch special effects,1315355534 +19479,109487,relativity,1441489981 +19479,109487,sci-fi,1441489970 +19486,52287,cgi,1176053230 +19486,60684,alternate reality,1254589597 +19486,60684,dystopia,1254589662 +19486,60684,social commentary,1254589580 +19486,60684,unlikeable characters,1254590590 +19486,65261,environmental,1254589320 +19486,65261,strange story,1254589302 +19486,66097,animation,1254589971 +19486,66097,plot,1254589941 +19486,66097,stop motion,1254589927 +19486,66097,Surreal,1254589910 +19486,67408,3D,1254590200 +19486,67408,animation,1254590216 +19497,110,Mel Gibson,1150911436 +19497,110,Oscar (Best Picture),1151330867 +19497,316,sci-fi,1150918679 +19497,318,own,1161533295 +19497,318,Stephen King,1161533303 +19497,329,Star Trek,1150918725 +19497,356,Classic,1161446860 +19497,356,Oscar (Best Picture),1150912394 +19497,356,own,1161446860 +19497,356,romance,1150912422 +19497,356,shrimp,1150912540 +19497,356,Tom Hanks,1150911424 +19497,356,Vietnam,1150912410 +19497,356,war,1150912554 +19497,364,animation,1151016736 +19497,364,Disney,1151016740 +19497,457,action,1150853820 +19497,457,crime,1150853823 +19497,527,own,1161446685 +19497,590,Oscar (Best Picture),1151330407 +19497,593,Anthony Hopkins,1150911616 +19497,593,cannibalism,1150911561 +19497,593,crime,1150911567 +19497,593,fbi,1150911645 +19497,593,Hannibal Lecter,1150911595 +19497,593,Jodie Foster,1150911579 +19497,593,Oscar (Best Actor),1150911637 +19497,593,Oscar (Best Actress),1150911624 +19497,593,Oscar (Best Picture),1150911603 +19497,593,serial killer,1150911555 +19497,593,thriller,1150911589 +19497,733,Sean Connery,1151855663 +19497,762,nudity,1151329615 +19497,762,voyeurism,1151329605 +19497,905,Oscar (Best Actress),1150911385 +19497,905,Oscar (Best Picture),1150911371 +19497,912,Classic,1150911459 +19497,912,Oscar (Best Picture),1150911453 +19497,912,romance,1150911466 +19497,912,World War II,1150911474 +19497,926,Oscar (Best Picture),1150911340 +19497,1096,Meryl Streep,1150915697 +19497,1096,Oscar (Best Actress),1150915691 +19497,1097,Steven Spielberg,1151330424 +19497,1193,Oscar (Best Picture),1150911389 +19497,1204,Oscar (Best Picture),1150911361 +19497,1221,Classic,1150913302 +19497,1221,Francis Ford Copolla,1150911418 +19497,1221,Oscar (Best Picture),1150913265 +19497,1221,sequel,1150913288 +19497,1225,18th century,1150912610 +19497,1225,classical music,1150912851 +19497,1225,drama,1150912895 +19497,1225,get,1150912632 +19497,1225,Mozart,1150912581 +19497,1225,opera,1150912617 +19497,1225,Oscar (Best Actor),1150912855 +19497,1225,Oscar (Best Picture),1150912593 +19497,1270,adventure,1150853597 +19497,1270,sci-fi,1150853599 +19497,1270,time travel,1150853595 +19497,1287,Oscar (Best Picture),1150911329 +19497,1653,sci-fi,1150898573 +19497,1676,future,1150898941 +19497,1676,space,1150898938 +19497,1937,Oscar (Best Actor),1150911315 +19497,1937,Oscar (Best Picture),1150911308 +19497,1937,Oscar (Best Supporting Actor),1150911322 +19497,1945,Oscar (Best Picture),1150911347 +19497,1949,Oscar (Best Picture),1150911354 +19497,2194,Sean Connery,1151855650 +19497,2291,Johnny Depp,1151330455 +19497,2291,Tim Burton,1151330453 +19497,2355,animation,1150853254 +19497,2355,Pixar,1150853261 +19497,2396,Oscar (Best Picture),1151330771 +19497,2640,superhero,1150913116 +19497,2716,Bill Murray,1151021917 +19497,2716,ghosts,1151021926 +19497,2762,Bruce Willis,1150917823 +19497,2762,ghosts,1150917809 +19497,2762,twist ending,1150917843 +19497,2797,Tom Hanks,1150913103 +19497,3510,time travel,1151328213 +19497,4306,cgi,1161532858 +19497,4306,Own,1161532737 +19497,4993,own,1161533193 +19497,5064,revenge,1151330381 +19497,5171,time travel,1151328243 +19497,5218,animation,1161533531 +19497,5218,cgi,1161533513 +19497,5218,own,1161532621 +19497,5296,Cameron Diaz,1150917570 +19497,5296,Christina Applegate,1150917602 +19497,5296,comedy,1150917620 +19497,5296,funny,1150917672 +19497,5296,romantic comedy,1150917701 +19497,5296,Selma Blair,1150917642 +19497,5296,sexy,1150917722 +19497,5349,super-hero,1150853707 +19497,5502,aliens,1150918762 +19497,5502,Mel Gibson,1150918745 +19497,5952,own,1161533169 +19497,6016,Brazil,1151359934 +19497,6377,animation,1150853698 +19497,6377,cgi,1161533034 +19497,6377,own,1161533019 +19497,6377,Pixar,1150853696 +19497,6537,time travel,1151328226 +19497,6541,Sean Connery,1151855701 +19497,6711,Bill Murray,1151021874 +19497,6753,Haley Joel Osment,1161517564 +19497,6947,own,1161446768 +19497,7153,Oscar (Best Picture),1150911408 +19497,7153,own,1161533116 +19497,7153,Peter Jackson,1150911414 +19497,7254,own,1161519013 +19497,8360,animation,1161532959 +19497,8360,own,1161532953 +19497,8636,comic book,1150853635 +19497,8636,super-hero,1150853640 +19497,8666,super-hero,1150918582 +19497,8961,Pixar,1150853734 +19497,8961,super-hero,1150853737 +19497,8972,own,1161440618 +19497,8981,disturbing,1166388869 +19497,27706,own,1161442722 +19497,27808,romance,1150900106 +19497,30707,Oscar (Best Picture),1151330722 +19497,30810,Bill Murray,1151021869 +19497,31696,comic book,1161530018 +19497,31696,own,1161530037 +19497,33004,own,1161442872 +19497,33794,batman,1161533268 +19497,33794,comic book,1161533254 +19497,33794,DC,1161533258 +19497,33794,super-hero,1161533249 +19497,34319,action,1151330651 +19497,34319,cloning,1151330645 +19497,34319,own,1164994588 +19497,36397,don't watch it again,1151152123 +19497,36535,beautiful scenery,1150899749 +19497,36535,dog,1150899732 +19497,36535,elijah wood,1150899737 +19497,36535,ukraine,1150899751 +19497,37386,cloning,1151328397 +19497,37386,Post apocalyptic,1151328306 +19497,37386,sci-fi,1151328344 +19497,37475,own,1163085859 +19497,37733,gratuitous sex,1151855801 +19497,37733,Violence,1151855814 +19497,37739,own,1163086373 +19497,37830,anime,1150900040 +19497,37830,cgi,1150900056 +19497,37830,own,1161435894 +19497,37830,videogame,1150900053 +19497,38798,Cameron Diaz,1150918020 +19497,38798,drama,1150918057 +19497,38798,romance,1150918080 +19497,38798,romantic,1150918095 +19497,38798,sisters,1150918139 +19497,38798,Toni Collete,1150918127 +19497,41566,adventure,1150853381 +19497,41566,animals,1150853372 +19497,41566,children,1150853375 +19497,41566,fantasy,1150853356 +19497,41566,Seen 2006,1150853392 +19497,41566,witch,1150853361 +19497,44199,own,1163084352 +19497,45186,own,1162586201 +19497,45499,own,1161435690 +19497,45517,cgi,1161533071 +19497,45722,Johnny Depp,1161533204 +19497,45722,pirates,1161533212 +19550,56782,Upton Sinclair,1251516613 +19550,72998,white guilt,1262731767 +19559,924,apes,1257954198 +19559,924,camera,1257954174 +19559,1090,John C. McGinley,1297349406 +19559,1348,atmospheric,1343804296 +19559,1348,F.W. Murnau,1343804284 +19559,1348,german expressionism,1343804303 +19559,1348,silent movie,1343804356 +19559,2648,based on a book,1343803929 +19559,2648,gothic,1343803990 +19559,2648,horror classic,1343803948 +19559,2648,imdb top 250,1343803996 +19559,2648,mad scientist,1343803985 +19559,2648,sequel better than original,1343803939 +19559,6093,anime,1257958478 +19559,39786,Doris Day,1312212618 +19559,39786,Resolution,1312212645 +19559,39786,Story,1312212633 +19559,58559,action,1343803815 +19559,58559,Atmospheric,1343803820 +19559,58559,Batman,1343803755 +19559,58559,Christian Bale,1343803789 +19559,58559,comic book,1343803726 +19559,58559,dark,1343803827 +19559,58559,ensemble cast,1343803776 +19559,58559,Heath Ledger,1343803718 +19559,58559,imdb top 250,1343803750 +19559,58559,Michael Caine,1343803780 +19559,58559,Morgan Freeman,1343803782 +19559,58559,music,1343803802 +19559,58559,Oscar (Best Supporting Actor),1343803735 +19559,58559,serial killer,1343803806 +19559,58559,stylized,1343803805 +19559,58559,superhero,1343803727 +19559,58559,violence,1343803743 +19559,58559,violent,1343803744 +19559,93865,based on a book,1343803889 +19559,93865,silent movie,1343803863 +19569,55908,intellectual,1427192512 +19569,55908,intelligent,1427192506 +19569,55908,sci-fi,1427192524 +19569,55908,thought-provoking,1427192521 +19586,6874,action,1337190045 +19586,6874,Quentin Tarantino,1337190040 +19586,6874,Uma Thurman,1337190038 +19586,6874,violence,1337190049 +19586,6874,visually appealing,1337190051 +19586,68205,fun,1337189998 +19586,68205,Jason Statham,1337189979 +19586,89745,excellent cinematography,1337189890 +19586,89745,fast paced,1337189894 +19586,89745,Gwyneth Paltrow,1337189909 +19586,89745,joss whedon,1337189905 +19586,89745,Robert Downey Jr.,1337189901 +19586,89745,Scarlett Johansson,1337189899 +19586,93510,awesome johnny depp cameo,1337210909 +19586,93510,drugs,1337210917 +19586,93510,Jonah Hill,1337210899 +19586,93510,undercover cops,1337210929 +19607,34162,that's it.,1139133617 +19607,34162,Vince Vaughn was good and so was Will Ferrel's bit part,1139133617 +19608,1230,funny,1358376815 +19608,1230,hilarious,1358376817 +19608,1230,new york city,1358376799 +19608,1230,relationships,1358376811 +19608,1230,thought-provoking,1358376802 +19608,1230,Woody Allen,1358376790 +19608,4914,Jean-Luc Godard,1357618815 +19608,4914,Jean-Paul Belmondo,1357618813 +19608,4914,satirical,1357618826 +19633,260,classic,1433280759 +19633,260,space,1433280720 +19638,595,Over-rated,1137518995 +19638,2640,You will believe that a man can fly.,1137519069 +19638,27773,not for the squeamish,1149705638 +19638,34150,Better than expected,1137518862 +19638,37475,to-rent,1153754924 +19638,45726,attempts comedy and drama and fails at both,1165502790 +19656,3836,Seen more than once,1154627049 +19696,90439,business,1431262007 +19696,90439,suspense,1431262017 +19756,4823,Kate Beckinsale,1237748927 +19756,7842,William Hurt,1237748459 +19756,33679,Angelina Jolie,1237748941 +19756,44191,Hugo Weaving,1237748810 +19756,54259,Claire Danes,1237748893 +19756,59315,Robert Downey Jr.,1237748620 +19756,59784,Angelina Jolie,1237748767 +19756,59784,Dustin Hoffman,1237748748 +19756,59784,Jack Black,1237748713 +19756,59784,Jackie Chan,1237748767 +19756,59784,Seth Rogen,1237748767 +19756,60040,William Hurt,1237748431 +19756,60674,time travel,1239842817 +19777,541,action,1376754426 +19777,541,cyberpunk,1376754412 +19777,541,robots,1376754428 +19777,593,Anthony Hopkins,1375038560 +19777,593,Hannibal Lecter,1375038564 +19777,1206,Stanley Kubrick,1375206186 +19777,1219,horror,1375038584 +19777,1258,cult film,1375297216 +19777,1258,Horror,1375297190 +19777,1258,Nudity (Full Frontal - Notable),1375297195 +19777,1258,Nudity (Full Frontal),1375297209 +19777,2959,dark comedy,1375207159 +19777,2959,twist ending,1375207155 +19777,47610,Edward Norton,1375616165 +19777,47610,magic,1375616167 +19777,55290,Morgan Freeman,1375038512 +19777,80219,Nudity (Full Frontal - Notable),1375207437 +19777,80219,Nudity (Topless),1375207426 +19777,91658,Nudity (Topless),1375038622 +19777,91658,rape,1375038626 +19781,260,fantasy,1444166042 +19781,260,future,1444166034 +19781,260,space classic,1444166008 +19781,260,"space epic, science fiction, hero's journey",1444165907 +19807,260,saga,1434659115 +19807,260,sci-fi,1434659107 +19824,260,sci-fi,1437883183 +19824,260,space opera,1437883192 +19836,10,James Bond,1272587746 +19836,165,action,1273002044 +19836,165,Bruce Willis,1273002033 +19836,165,violent,1273002039 +19836,293,great acting,1272586462 +19836,293,Jean Reno,1272586456 +19836,293,Natalie Portman,1272586458 +19836,527,based on a true story,1273007381 +19836,527,Steven Spielberg,1273007370 +19836,527,World War II,1273007372 +19836,589,Arnold Schwarzenegger,1272587603 +19836,665,Emir Kusturica,1273008993 +19836,665,too long,1273008986 +19836,733,Sean Connery,1273007469 +19836,858,Al Pacino,1273005932 +19836,858,classic,1273005934 +19836,858,drama,1273005954 +19836,858,Mafia,1273005937 +19836,858,robert de niro,1273005941 +19836,1090,action,1273002903 +19836,1090,Oliver Stone,1273002897 +19836,1090,Vietnam War,1273002912 +19836,1090,war,1273002908 +19836,1215,Cult classic,1273003303 +19836,1215,dark humor,1273003300 +19836,1221,Al Pacino,1273005961 +19836,1221,classic,1273005963 +19836,1221,mafia,1273005967 +19836,1221,Robert De Niro,1273005985 +19836,1610,Sean Connery,1273007704 +19836,1747,black comedy,1273007873 +19836,1747,Dustin Hoffman,1273007861 +19836,1747,Robert De Niro,1273007866 +19836,1747,satire,1273007860 +19836,1884,humorous,1272585754 +19836,1884,Hunter S. Thompson,1272585766 +19836,1884,Johnny Depp,1272585770 +19836,1884,satirical,1272585759 +19836,1884,Terry Gilliam,1272585775 +19836,2023,Al Pacino,1272587181 +19836,2023,Classic,1273006015 +19836,2023,Francis Ford Copolla,1272587157 +19836,2023,mafia,1272587173 +19836,2028,Steven Spielberg,1273007314 +19836,2028,Tom Hanks,1273007350 +19836,2028,war,1273007315 +19836,2028,World War II,1273007318 +19836,2467,author:Umberto Eco,1273007503 +19836,2467,Sean Connery,1273007499 +19836,2605,Catherine Zeta-Jones,1273007684 +19836,2605,Sean Connery,1273007682 +19836,2700,adult humor,1273002596 +19836,2700,crude humor,1273002598 +19836,2700,parody,1273002621 +19836,2700,satirical,1273002613 +19836,3275,dark humor,1272587341 +19836,3275,Willem Dafoe,1272587412 +19836,3984,Sean Connery,1273007641 +19836,4102,Eddie Murphy,1273000791 +19836,4102,homophobic,1273000784 +19836,4102,Stand Up,1273000768 +19836,4102,stand-up comedy,1273000766 +19836,5669,documentary,1273002404 +19836,5669,guns,1273002405 +19836,5669,Michael Moore,1273002408 +19836,5669,propaganda,1273002414 +19836,5669,Stupid,1273002419 +19836,5888,Quotable,1272588032 +19836,5888,violence,1272588025 +19836,6957,Billy Bob Thornton,1272587515 +19836,6957,black comedy,1272587512 +19836,7569,007,1273007539 +19836,7569,james bond,1273007543 +19836,7569,Sean Connery,1273007541 +19836,30850,Al Pacino,1273007979 +19836,30850,Shakespeare,1273007999 +19836,36363,koo,1273008874 +19836,36363,russian,1273008881 +19836,60904,Evgeni Evstigneev,1272586073 +19836,60904,Vladimir Bortko,1272586077 +19836,72998,bad science,1273001380 +19836,72998,graphic design,1273001384 +19836,72998,James Cameron,1273001416 +19836,72998,romance,1273001424 +19836,72998,sci-fi,1273001421 +19836,72998,war,1273001436 +19896,480,action,1439980194 +19896,480,sci-fi,1439980197 +19896,480,thriller,1439980201 +19896,788,comedy,1439977602 +19896,1721,romance,1439980361 +19896,4369,action,1439980431 +19896,4896,adventure,1439980485 +19896,4896,Magic,1439980496 +19896,4973,comedy,1439980108 +19896,59315,action,1439979994 +19896,59315,sci-fi,1439979998 +19896,79132,action,1439979919 +19896,79132,science fiction,1439979915 +19896,79132,thriller,1439979904 +19896,90249,action,1439980037 +19896,90249,sci-fi,1439980041 +19896,98373,music,1439979960 +19896,98373,romance,1439979964 +19896,109673,action,1439980619 +19896,117529,action,1439980152 +19896,117529,sci-fi,1439980165 +19896,117529,thriller,1439980162 +19936,1924,worst movie ever,1186500112 +19951,71379,atmospheric,1316074931 +19951,71379,psychological,1316074968 +19951,71379,Realism,1316074936 +19951,104137,atmospheric,1396156693 +19951,104137,dialogue,1396156718 +19951,104137,weird,1396156706 +19951,104829,bittersweet,1423788252 +19951,104829,funny,1423788252 +19951,104829,quirky,1423788252 +19951,110675,fantasy,1398213841 +19951,110675,paranormal,1398213829 +19951,110675,romantic,1398213824 +19954,88810,Emma Stone,1430782912 +19954,88810,Tearjerker,1430782916 +19958,1,adventure,1154073120 +19958,1,animation,1154073120 +19958,1,children,1154073120 +19958,1,comedy,1154073120 +19958,260,action,1154073892 +19958,260,adventure,1154073892 +19958,260,far future,1154073892 +19958,260,George Lucas,1154073892 +19958,260,sci-fi,1154073892 +19958,260,war,1154073892 +19958,296,Quentin Tarantino,1154070862 +19958,541,action,1154073717 +19958,541,drama,1154073717 +19958,541,far future,1154073717 +19958,541,noir,1154073717 +19958,541,sci-fi,1154073717 +19958,541,thriller,1154073717 +19958,1097,aliens,1154073478 +19958,1097,children,1154073478 +19958,1097,drama,1154073478 +19958,1097,family,1154073478 +19958,1097,sci-fi,1154073478 +19958,1196,action,1154073922 +19958,1196,adventure,1154073922 +19958,1196,far future,1154073922 +19958,1196,George Lucas,1154073922 +19958,1196,sci-fi,1154073922 +19958,1196,war,1154073922 +19958,1210,action,1154073948 +19958,1210,adventure,1154073948 +19958,1210,far future,1154073948 +19958,1210,George Lucas,1154073948 +19958,1210,sci-fi,1154073948 +19958,1210,war,1154073948 +19958,2021,action,1154073087 +19958,2021,far future,1154073087 +19958,2021,sci-fi,1154073087 +19958,2054,adventure,1154072823 +19958,2054,children,1154072823 +19958,2054,comedy,1154072823 +19958,2162,adventure,1154072778 +19958,2162,children's story,1154072778 +19958,2162,fantasy,1154072754 +19958,2628,action,1154072593 +19958,2628,adventure,1154072593 +19958,2628,sci-fi,1154072593 +19958,2717,Action,1154072728 +19958,2717,comedy,1154072726 +19958,2717,fantasy,1154072747 +19958,3000,action,1154074249 +19958,3000,adventure,1154074249 +19958,3000,anime,1154074249 +19958,3000,drama,1154074249 +19958,3000,fantasy,1154074249 +19958,3000,fantasy world,1154074249 +19958,3000,Hayao Miyazaki,1154074249 +19958,3000,zibri studio,1154074249 +19958,4896,Adventure,1154073418 +19958,4896,Children,1154073418 +19958,4896,Fantasy,1154073418 +19958,4896,magic,1154073418 +19958,4993,action,1154072882 +19958,4993,adventure,1154072882 +19958,4993,fantasy,1154071700 +19958,4993,fantasy world,1154071697 +19958,5378,action,1154072969 +19958,5378,adventure,1154072969 +19958,5378,far future,1154073031 +19958,5378,sci-fi,1154072969 +19958,5618,adventure,1154073833 +19958,5618,anime,1154071557 +19958,5618,children,1154073833 +19958,5618,fantasy,1154073833 +19958,5618,Hayao Miyazaki,1154073853 +19958,5618,zibri studio,1154073833 +19958,5816,action,1154073356 +19958,5816,adventure,1154073356 +19958,5816,fantasy,1154073356 +19958,5816,fantasy world,1154073356 +19958,5816,magic,1154073356 +19958,5952,action,1154072926 +19958,5952,adventure,1154072926 +19958,5952,fantasy,1154072926 +19958,5952,fantasy world,1154072926 +19958,5971,anime,1154074348 +19958,5971,children,1154074348 +19958,5971,family,1154074348 +19958,5971,fantasy,1154074348 +19958,5971,Hayao Miyazaki,1154074348 +19958,5971,zibri studio,1154074348 +19958,6333,action,1154073159 +19958,6333,near future,1154073159 +19958,6333,sci-fi,1154073159 +19958,6350,adventure,1154074542 +19958,6350,anime,1154074542 +19958,6350,fantasy,1154074542 +19958,6350,fantasy world,1154074542 +19958,6350,far future,1154074542 +19958,6350,hayao miyazaki,1154074542 +19958,6350,sci-fi,1154074542 +19958,6350,zibri studio,1154074542 +19958,7099,adventure,1154074391 +19958,7099,anime,1154074391 +19958,7099,fantasy,1154074391 +19958,7099,fantasy world,1154074391 +19958,7099,far future,1154074391 +19958,7099,Hayao Miyazaki,1154074391 +19958,7099,sci-fi,1154074391 +19958,7099,zibri studio,1154074391 +19958,7153,action,1154073986 +19958,7153,adventure,1154073986 +19958,7153,fantasy world,1154073986 +19958,7153,fatasy,1154073986 +19958,7153,magic,1154073986 +19958,8253,action,1154074597 +19958,8253,adventure,1154074597 +19958,8253,anime,1154074597 +19958,8253,Hayao Miyazaki,1154074597 +19958,8253,romance,1154074597 +19958,8253,zibri studio,1154074597 +19958,26662,Adventure,1154078947 +19958,26662,anime,1154078947 +19958,26662,comedy,1154074201 +19958,26662,family,1154074201 +19958,26662,magic,1154074201 +19958,26662,zibri studio,1154074292 +19958,26776,action,1154074635 +19958,26776,adventure,1154074635 +19958,26776,anime,1154074635 +19958,26776,Hayao Miyazaki,1154074635 +19958,26776,romance,1154074635 +19958,26776,zibri studio,1154074635 +19958,31658,adventure,1154074154 +19958,31658,anime,1154074154 +19958,31658,fantasy,1154074154 +19958,31658,fantasy world,1154074154 +19958,31658,Hayao Miyazaki,1154074154 +19958,31658,romance,1154074154 +19958,31658,zibri studio,1154074263 +19958,33493,action,1154073669 +19958,33493,adventure,1154073669 +19958,33493,far future,1154073669 +19958,33493,sci-fi,1154073669 +19958,33493,war,1154073669 +19961,260,classic sci-fi,1436889593 +19961,260,sci-fi,1436889607 +19997,3949,depressing,1304363558 +19997,3949,drugs,1304363550 +19997,3949,thoughtful,1304363545 +19997,3949,traumatic,1304363552 +19997,46976,casting,1304363910 +19997,46976,emma thompson,1304363897 +19997,46976,will farrel,1304363918 +19997,55269,cinematography,1304363312 +19997,55269,travel film,1304363312 +20013,8949,classroom scene,1353877961 +20013,8949,editing,1353877964 +20013,8949,Paul Giamatti,1353877966 +20023,107771,Tom Hiddleston,1451755232 +20023,128838,atmosphere,1451755251 +20068,260,rd2d,1439892711 +20068,260,special effects,1439892618 +20075,1801,comedy drama adventure,1187142341 +20075,2116,fantasy sci-fi,1187142440 +20075,2384,children comedy,1187142369 +20075,2404,action,1187142754 +20075,2404,adventure,1187142754 +20075,2404,war,1187142754 +20075,2412,action,1187142767 +20075,2412,box,1187142767 +20075,2412,drama,1187142767 +20075,2840,triller religion,1187142480 +20075,4015,comedy,1187142526 +20075,4343,comedy,1187142549 +20075,5225,comedy,1187142586 +20075,5225,drama,1187142586 +20075,5225,limada,1187142586 +20075,5225,romance,1187142586 +20075,6157,fantacy,1187142692 +20075,6157,super-heroe,1187142692 +20075,6708,comedy,1187142596 +20075,6708,crime,1187142596 +20075,6708,drama,1187142597 +20075,6953,drama,1187142667 +20075,6953,limada,1187142667 +20075,8361,action,1187142737 +20075,8361,adventure,1187142737 +20075,8361,drama,1187142737 +20075,8361,sci-fi,1187142737 +20075,8361,thriller,1187142737 +20075,48394,adventure,1187375698 +20075,48394,dead,1187375698 +20075,48394,drama,1187375698 +20075,48394,fantasy,1187375698 +20075,48394,history,1187375698 +20075,48394,life,1187375654 +20085,44,awesome soundtrack,1404760698 +20085,44,faithful to game,1404760716 +20085,44,fight scenes,1404760693 +20085,44,fighting,1418239442 +20085,44,great casting,1404760741 +20085,44,martial arts,1418239463 +20085,44,stylized,1418239473 +20085,181,bad cgi,1404761887 +20085,118392,based on a video game,1422294954 +20085,118392,drama,1422294954 +20085,118392,faithful to game,1418151329 +20085,118392,martial arts,1422294954 +20085,118392,video game adaptation,1418001416 +20093,2025,controversial,1443238399 +20093,2025,fashion,1443238389 +20093,2541,Femme Fatale,1443238320 +20093,2541,Sarah Michelle Gellar,1443238316 +20093,2729,controversial,1443238359 +20115,260,incest,1439766855 +20115,260,oldschool,1439766829 +20115,260,space action,1439766846 +20139,25,Oscar (Best Actor),1141000969 +20139,36,Oscar (Best Actress),1140893894 +20139,42,bank robbery,1143903818 +20139,50,Oscar (Best Supporting Actor),1141705554 +20139,52,Oscar (Best Supporting Actress),1141599812 +20139,104,golf,1140561343 +20139,104,hockey,1140789161 +20139,110,Oscar (Best Cinematography),1142790197 +20139,110,Oscar (Best Directing),1140888802 +20139,110,Oscar (Best Picture),1140746624 +20139,173,police,1148776490 +20139,203,road trip,1140749335 +20139,223,convenience store,1148776563 +20139,223,generation X,1148776539 +20139,223,I'm not even supposed to be here today,1148776549 +20139,232,remade,1149387580 +20139,235,Oscar (Best Supporting Actor),1141705532 +20139,246,basketball,1140561678 +20139,266,Oscar (Best Cinematography),1142790175 +20139,277,remake,1141703187 +20139,293,hit men,1142981417 +20139,300,television,1142343140 +20139,312,Saturday Night Live,1148779016 +20139,348,Oscar (Best Supporting Actress),1141593736 +20139,354,baseball,1140561673 +20139,356,Oscar (Best Actor),1141000949 +20139,356,Oscar (Best Directing),1140888785 +20139,356,Oscar (Best Picture),1140746641 +20139,372,generation X,1183305367 +20139,435,Saturday Night Live,1148779041 +20139,457,Oscar (Best Supporting Actor),1141705512 +20139,497,stage,1170048689 +20139,508,Oscar (Best Actor),1141000928 +20139,509,Oscar (Best Actress),1140893853 +20139,509,Oscar (Best Supporting Actress),1141593701 +20139,520,spoof,1142707965 +20139,527,Oscar (Best Cinematography),1142790154 +20139,527,Oscar (Best Directing),1140888754 +20139,527,Oscar (Best Picture),1140746658 +20139,587,Oscar (Best Supporting Actress),1141593615 +20139,590,Oscar (Best Cinematography),1142790083 +20139,590,Oscar (Best Directing),1140888688 +20139,590,Oscar (Best Picture),1140746714 +20139,593,Oscar (Best Actor),1141000878 +20139,593,Oscar (Best Actress),1140893735 +20139,593,Oscar (Best Directing),1140888711 +20139,593,Oscar (Best Picture),1140746696 +20139,608,Oscar (Best Actress),1140893917 +20139,728,rural,1168142012 +20139,785,bowling,1148744484 +20139,788,remake,1168142189 +20139,852,golf,1140562553 +20139,858,book,1142285951 +20139,858,Mafia,1148837713 +20139,858,organized crime,1181175895 +20139,858,Oscar (Best Actor),1141000261 +20139,858,Oscar (Best Picture),1140760483 +20139,897,Oscar (Best Supporting Actress),1141178582 +20139,898,Oscar (Best Actor),1140998982 +20139,898,remade,1140999010 +20139,899,Dance,1183301246 +20139,900,Oscar (Best Cinematography),1142788301 +20139,900,Oscar (Best Picture),1140884583 +20139,905,Oscar (Best Actor),1140998831 +20139,905,Oscar (Best Actress),1140889984 +20139,905,Oscar (Best Directing),1140886945 +20139,905,Oscar (Best Picture),1140885237 +20139,906,Oscar (Best Actress),1140890229 +20139,909,Oscar (Best Directing),1140887732 +20139,909,Oscar (Best Picture),1140788998 +20139,912,Oscar (Best Directing),1140887245 +20139,912,Oscar (Best Picture),1140884932 +20139,912,stage,1140896763 +20139,914,Oscar (Best Actor),1141000032 +20139,914,Oscar (Best Cinematography),1142789070 +20139,914,Oscar (Best Directing),1140887911 +20139,914,Oscar (Best Picture),1140788911 +20139,915,remade,1140892096 +20139,916,Oscar (Best Actress),1140892329 +20139,920,Oscar (Best Actress),1140890104 +20139,920,Oscar (Best Cinematography),1142787528 +20139,920,Oscar (Best Directing),1140887102 +20139,920,Oscar (Best Picture),1140885055 +20139,920,Oscar (Best Supporting Actress),1141178142 +20139,921,television,1140561375 +20139,923,newspaper theme,1148837638 +20139,926,Oscar (Best Directing),1140887396 +20139,926,Oscar (Best Picture),1140884604 +20139,926,Oscar (Best Supporting Actor),1141703371 +20139,928,Oscar (Best Cinematography),1142787555 +20139,928,Oscar (Best Picture),1140885025 +20139,933,Oscar (Best Cinematography),1142788540 +20139,934,remade,1140892124 +20139,938,Oscar (Best Cinematography),1142788673 +20139,938,Oscar (Best Directing),1140887656 +20139,938,Oscar (Best Picture),1140883588 +20139,942,Oscar (Best Cinematography),1142787812 +20139,946,remade,1174697802 +20139,948,Oscar (Best Directing),1140887607 +20139,949,Oscar (Best Supporting Actress),1141583810 +20139,952,Oscar (Best Cinematography),1142788591 +20139,952,Oscar (Best Picture),1140883648 +20139,969,Oscar (Best Actor),1140999426 +20139,976,Oscar (Best Cinematography),1142787150 +20139,1005,hockey,1140759938 +20139,1020,bobsled,1140749360 +20139,1020,Olympics,1140749380 +20139,1028,Oscar (Best Actress),1140892735 +20139,1035,Oscar (Best Directing),1140887938 +20139,1035,Oscar (Best Picture),1140788890 +20139,1073,remade,1149387454 +20139,1079,monty python alumni,1148837691 +20139,1079,Oscar (Best Supporting Actor),1141705221 +20139,1084,Oscar (Best Cinematography),1142789208 +20139,1084,Oscar (Best Supporting Actress),1141584742 +20139,1090,Oscar (Best Directing),1140888584 +20139,1090,Oscar (Best Picture),1140747221 +20139,1096,Oscar (Best Actress),1140893495 +20139,1104,Oscar (Best Actress),1140892285 +20139,1104,Oscar (Best Supporting Actor),1141703397 +20139,1104,Oscar (Best Supporting Actress),1141179551 +20139,1104,stage,1148779462 +20139,1124,Oscar (Best Actor),1141000478 +20139,1124,Oscar (Best Actress),1140893367 +20139,1147,boxing,1141048213 +20139,1183,Oscar (Best Cinematography),1142790219 +20139,1183,Oscar (Best Directing),1140888823 +20139,1183,Oscar (Best Picture),1140746605 +20139,1183,Oscar (Best Supporting Actress),1141599863 +20139,1185,Oscar (Best Actor),1141000812 +20139,1185,Oscar (Best Supporting Actress),1141593318 +20139,1193,book,1148837750 +20139,1193,Oscar (Best Actor),1141000322 +20139,1193,Oscar (Best Actress),1140893218 +20139,1193,Oscar (Best Directing),1140888267 +20139,1193,Oscar (Best Picture),1140760454 +20139,1204,Oscar (Best Cinematography),1142788940 +20139,1204,Oscar (Best Directing),1140887863 +20139,1204,Oscar (Best Picture),1140788952 +20139,1207,lawyer,1140892358 +20139,1207,Oscar (Best Actor),1140999986 +20139,1208,Oscar (Best Cinematography),1142789745 +20139,1211,angel,1180994513 +20139,1212,Oscar (Best Cinematography),1142788224 +20139,1213,organized crime,1181175558 +20139,1213,Oscar (Best Supporting Actor),1141705424 +20139,1219,book,1142342772 +20139,1219,remade,1142342780 +20139,1220,Saturday Night Live,1148779056 +20139,1221,Oscar (Best Directing),1140888248 +20139,1221,Oscar (Best Picture),1140760494 +20139,1221,Oscar (Best Supporting Actor),1141704708 +20139,1225,Mozart,1140747262 +20139,1225,Oscar (Best Actor),1141000551 +20139,1225,Oscar (Best Directing),1140888547 +20139,1225,Oscar (Best Picture),1140747262 +20139,1226,Oscar (Best Cinematography),1142788344 +20139,1226,Oscar (Best Directing),1140887448 +20139,1228,boxing,1141000449 +20139,1228,Oscar (Best Actor),1141000456 +20139,1230,Oscar (Best Actress),1140893260 +20139,1230,Oscar (Best Directing),1140888310 +20139,1230,Oscar (Best Picture),1140760311 +20139,1234,heist,1140561544 +20139,1234,Oscar (Best Directing),1140888223 +20139,1234,Oscar (Best Picture),1140760520 +20139,1242,Oscar (Best Cinematography),1142790060 +20139,1242,Oscar (Best Supporting Actor),1141705247 +20139,1247,Oscar (Best Directing),1140887987 +20139,1249,remade,1142981338 +20139,1250,Oscar (Best Actor),1140999572 +20139,1250,Oscar (Best Cinematography),1142788619 +20139,1250,Oscar (Best Directing),1140887637 +20139,1250,Oscar (Best Picture),1140883613 +20139,1254,Oscar (Best Directing),1140887357 +20139,1254,Oscar (Best Supporting Actor),1141703233 +20139,1263,Oscar (Best Directing),1140888331 +20139,1263,Oscar (Best Picture),1140760290 +20139,1263,Oscar (Best Supporting Actor),1141704795 +20139,1266,Oscar (Best Directing),1140888732 +20139,1266,Oscar (Best Picture),1140746677 +20139,1266,Oscar (Best Supporting Actor),1141705481 +20139,1272,Oscar (Best Actor),1141000221 +20139,1272,Oscar (Best Directing),1140888126 +20139,1272,Oscar (Best Picture),1140760599 +20139,1276,Oscar (Best Supporting Actor),1141704326 +20139,1277,remake,1142286115 +20139,1277,stage,1140999377 +20139,1278,spoof,1142342522 +20139,1283,Oscar (Best Actor),1140999446 +20139,1287,Oscar (Best Actor),1140999627 +20139,1287,Oscar (Best Cinematography),1142788750 +20139,1287,Oscar (Best Directing),1140887688 +20139,1287,Oscar (Best Picture),1140883567 +20139,1287,Oscar (Best Supporting Actor),1141703791 +20139,1288,mockumentary,1140562605 +20139,1288,rock and roll,1183305254 +20139,1292,Oscar (Best Supporting Actor),1141704852 +20139,1292,television,1148778899 +20139,1293,Oscar (Best Actor),1141000503 +20139,1293,Oscar (Best Cinematography),1142789813 +20139,1293,Oscar (Best Directing),1140888461 +20139,1293,Oscar (Best Picture),1140747332 +20139,1299,Oscar (Best Cinematography),1142789869 +20139,1299,Oscar (Best Supporting Actor),1141705125 +20139,1302,baseball,1140561423 +20139,1304,Oscar (Best Cinematography),1142789280 +20139,1307,1980s,1244073003 +20139,1307,New York,1244073006 +20139,1344,remade,1140892163 +20139,1357,Oscar (Best Actor),1141000990 +20139,1393,Oscar (Best Supporting Actor),1141705576 +20139,1396,heist,1140561547 +20139,1449,mockumentary,1140562611 +20139,1466,Mafia,1181175491 +20139,1617,Oscar (Best Supporting Actress),1141599902 +20139,1682,television,1142343147 +20139,1704,Oscar (Best Supporting Actor),1141705601 +20139,1721,Oscar (Best Cinematography),1142790242 +20139,1721,Oscar (Best Directing),1140888846 +20139,1721,Oscar (Best Picture),1140746577 +20139,1732,bowling,1148744115 +20139,1784,Oscar (Best Actor),1141001011 +20139,1784,Oscar (Best Actress),1140893939 +20139,1925,Oscar (Best Picture),1140885478 +20139,1926,Oscar (Best Picture),1140885390 +20139,1927,Oscar (Best Directing),1140886834 +20139,1927,Oscar (Best Picture),1140885343 +20139,1928,Oscar (Best Picture),1140885308 +20139,1929,Oscar (Best Picture),1140885286 +20139,1930,Oscar (Best Directing),1140886902 +20139,1930,Oscar (Best Picture),1140885264 +20139,1931,Oscar (Best Picture),1140885212 +20139,1932,Oscar (Best Actress),1140890036 +20139,1932,Oscar (Best Picture),1140885176 +20139,1933,Oscar (Best Picture),1140885147 +20139,1933,Oscar (Best Supporting Actor),1141702592 +20139,1934,Oscar (Best Directing),1140887079 +20139,1934,Oscar (Best Picture),1140885121 +20139,1935,Oscar (Best Cinematography),1142787650 +20139,1935,Oscar (Best Directing),1140887168 +20139,1935,Oscar (Best Picture),1140884984 +20139,1935,Oscar (Best Supporting Actor),1141702829 +20139,1936,Oscar (Best Actress),1140890186 +20139,1936,Oscar (Best Cinematography),1142787694 +20139,1936,Oscar (Best Directing),1140887188 +20139,1936,Oscar (Best Picture),1140884960 +20139,1936,Oscar (Best Supporting Actress),1141178532 +20139,1937,Oscar (Best Actor),1140999146 +20139,1937,Oscar (Best Directing),1140887264 +20139,1937,Oscar (Best Picture),1140884904 +20139,1937,Oscar (Best Supporting Actor),1141702911 +20139,1938,Oscar (Best Actor),1140999167 +20139,1938,Oscar (Best Directing),1140887284 +20139,1938,Oscar (Best Picture),1140884809 +20139,1939,Oscar (Best Actor),1140999187 +20139,1939,Oscar (Best Directing),1140887312 +20139,1939,Oscar (Best Picture),1140884785 +20139,1939,Oscar (Best Supporting Actor),1141702962 +20139,1940,Oscar (Best Directing),1140887333 +20139,1940,Oscar (Best Picture),1140884762 +20139,1940,Oscar (Best Supporting Actress),1141178998 +20139,1941,Oscar (Best Actor),1140999251 +20139,1941,Oscar (Best Picture),1140884733 +20139,1942,book,1141179364 +20139,1942,Oscar (Best Actor),1140999271 +20139,1942,Oscar (Best Picture),1140884626 +20139,1942,Oscar (Best Supporting Actress),1141179340 +20139,1943,Oscar (Best Picture),1140883761 +20139,1944,Oscar (Best Cinematography),1142788378 +20139,1944,Oscar (Best Directing),1140887532 +20139,1944,Oscar (Best Picture),1140883736 +20139,1944,Oscar (Best Supporting Actor),1141703454 +20139,1944,Oscar (Best Supporting Actress),1141179826 +20139,1945,Oscar (Best Actor),1140999505 +20139,1945,Oscar (Best Cinematography),1142788452 +20139,1945,Oscar (Best Directing),1140887552 +20139,1945,Oscar (Best Picture),1140883690 +20139,1945,Oscar (Best Supporting Actress),1141179853 +20139,1946,Oscar (Best Actor),1140999523 +20139,1946,Oscar (Best Directing),1140887571 +20139,1946,Oscar (Best Picture),1140883669 +20139,1947,Oscar (Best Cinematography),1142788862 +20139,1947,Oscar (Best Directing),1140887751 +20139,1947,Oscar (Best Picture),1140788974 +20139,1947,Oscar (Best Supporting Actor),1141703931 +20139,1947,Oscar (Best Supporting Actress),1141584390 +20139,1948,Oscar (Best Directing),1140887882 +20139,1948,Oscar (Best Picture),1140788931 +20139,1949,Oscar (Best Actor),1141000073 +20139,1949,Oscar (Best Cinematography),1142789186 +20139,1949,Oscar (Best Directing),1140887964 +20139,1949,Oscar (Best Picture),1140788870 +20139,1949,stage,1148779447 +20139,1950,Oscar (Best Actor),1141000100 +20139,1950,Oscar (Best Picture),1140788848 +20139,1951,Oscar (Best Directing),1140888026 +20139,1951,Oscar (Best Picture),1140788820 +20139,1952,Oscar (Best Directing),1140888055 +20139,1952,Oscar (Best Picture),1140788797 +20139,1953,Oscar (Best Actor),1141000240 +20139,1953,Oscar (Best Directing),1140888146 +20139,1953,Oscar (Best Picture),1140760578 +20139,1954,Oscar (Best Directing),1140888289 +20139,1954,Oscar (Best Picture),1140760430 +20139,1955,Oscar (Best Actor),1141000428 +20139,1955,Oscar (Best Directing),1140888349 +20139,1955,Oscar (Best Picture),1140760260 +20139,1955,Oscar (Best Supporting Actress),1141592115 +20139,1956,Oscar (Best Directing),1140888367 +20139,1956,Oscar (Best Picture),1140747407 +20139,1956,Oscar (Best Supporting Actor),1141704882 +20139,1957,Oscar (Best Picture),1140747364 +20139,1958,Oscar (Best Actress),1140893522 +20139,1958,Oscar (Best Directing),1140888480 +20139,1958,Oscar (Best Picture),1140747307 +20139,1958,Oscar (Best Supporting Actor),1141705098 +20139,1959,Oscar (Best Cinematography),1142789892 +20139,1959,Oscar (Best Directing),1140888565 +20139,1959,Oscar (Best Picture),1140747240 +20139,1960,Oscar (Best Cinematography),1142789940 +20139,1960,Oscar (Best Directing),1140888608 +20139,1960,Oscar (Best Picture),1140747195 +20139,1961,Oscar (Best Actor),1141000781 +20139,1961,Oscar (Best Directing),1140888636 +20139,1961,Oscar (Best Picture),1140747172 +20139,1962,Oscar (Best Actress),1140893692 +20139,1962,Oscar (Best Picture),1140747149 +20139,1962,stage,1141081704 +20139,1964,Oscar (Best Actress),1140893012 +20139,2028,Oscar (Best Cinematography),1142790263 +20139,2028,Oscar (Best Directing),1140888866 +20139,2034,space,1142342846 +20139,2042,hockey,1140759933 +20139,2067,Oscar (Best Cinematography),1142789136 +20139,2068,Oscar (Best Cinematography),1142789836 +20139,2069,Oscar (Best Actress),1140893575 +20139,2070,Oscar (Best Actor),1141000533 +20139,2082,hockey,1140759891 +20139,2085,remade,1149387552 +20139,2132,Oscar (Best Actress),1140892819 +20139,2132,Oscar (Best Cinematography),1142789162 +20139,2132,Oscar (Best Supporting Actress),1141584709 +20139,2132,stage,1141081981 +20139,2160,Oscar (Best Supporting Actress),1141585325 +20139,2194,Oscar (Best Supporting Actor),1141705199 +20139,2206,Oscar (Best Actress),1140890162 +20139,2268,stage,1170049109 +20139,2291,Topiary,1181175430 +20139,2296,Saturday Night Live,1148779186 +20139,2302,Oscar (Best Supporting Actress),1141593672 +20139,2312,Oscar (Best Actress),1140893620 +20139,2324,Oscar (Best Actor),1141001040 +20139,2329,racism,1141081497 +20139,2389,remake,1142342799 +20139,2396,Oscar (Best Actress),1140893997 +20139,2396,Oscar (Best Picture),1140746423 +20139,2396,Oscar (Best Supporting Actress),1141600374 +20139,2398,Oscar (Best Supporting Actor),1141703198 +20139,2398,remade,1141703198 +20139,2407,Oscar (Best Supporting Actor),1141705147 +20139,2409,boxing,1140760416 +20139,2422,martial arts,1148776511 +20139,2424,remake,1149387018 +20139,2439,Oscar (Best Supporting Actor),1141705631 +20139,2447,football,1137373652 +20139,2447,high school,1137373658 +20139,2474,Oscar (Best Actor),1141000718 +20139,2474,pool,1141000719 +20139,2490,revenge,1142981210 +20139,2520,Oscar (Best Supporting Actress),1141585826 +20139,2524,Oscar (Best Cinematography),1142789434 +20139,2565,Oscar (Best Actor),1140999552 +20139,2612,Oscar (Best Actress),1140890282 +20139,2692,videogame like,1182003445 +20139,2728,Oscar (Best Cinematography),1142788807 +20139,2728,Oscar (Best Supporting Actor),1141703898 +20139,2730,Oscar (Best Cinematography),1142789661 +20139,2745,Oscar (Best Cinematography),1142789917 +20139,2763,heist,1140563138 +20139,2804,christmas,1183301408 +20139,2804,leg lamp,1183301117 +20139,2858,Oscar (Best Actor),1141001063 +20139,2858,Oscar (Best Cinematography),1142790284 +20139,2858,Oscar (Best Directing),1140888894 +20139,2858,Oscar (Best Picture),1140746506 +20139,2877,rock and roll,1183305574 +20139,2890,Gulf War,1145124525 +20139,2907,Saturday Night Live,1148779211 +20139,2908,Oscar (Best Actress),1140894022 +20139,2919,Oscar (Best Supporting Actress),1141592549 +20139,2928,book,1170048628 +20139,2928,remake,1141178966 +20139,2929,Oscar (Best Cinematography),1142789792 +20139,2929,Oscar (Best Directing),1140888395 +20139,2929,Oscar (Best Supporting Actress),1141592247 +20139,2932,Oscar (Best Cinematography),1142789722 +20139,2942,dance,1140759507 +20139,2959,violence,1141081518 +20139,2966,road trip,1140749454 +20139,2988,Oscar (Best Supporting Actress),1141592200 +20139,3006,tobacco,1181175240 +20139,3011,Oscar (Best Supporting Actor),1141704418 +20139,3033,spoof,1142708002 +20139,3035,Oscar (Best Supporting Actor),1141703511 +20139,3035,World War II,1140893387 +20139,3046,lesbian,1142603918 +20139,3062,Oscar (Best Cinematography),1142788918 +20139,3072,Oscar (Best Actress),1140893654 +20139,3072,Oscar (Best Supporting Actress),1141593251 +20139,3088,Oscar (Best Supporting Actress),1141179522 +20139,3095,Oscar (Best Directing),1140887148 +20139,3095,Oscar (Best Supporting Actress),1141178453 +20139,3097,remade,1149386991 +20139,3099,Oscar (Best Supporting Actress),1141587596 +20139,3100,Oscar (Best Cinematography),1142790125 +20139,3104,road trip,1140749116 +20139,3108,Oscar (Best Supporting Actress),1141593636 +20139,3111,Oscar (Best Actress),1140893552 +20139,3148,Oscar (Best Supporting Actor),1141705650 +20139,3152,Oscar (Best Supporting Actor),1141704499 +20139,3152,Oscar (Best Supporting Actress),1141587478 +20139,3171,Oscar (Best Actress),1140892613 +20139,3173,football,1242646251 +20139,3179,book,1142787346 +20139,3186,Oscar (Best Supporting Actress),1141600512 +20139,3188,baseball,1140561628 +20139,3196,Oscar (Best Actor),1140999473 +20139,3244,Oscar (Best Actor),1141000383 +20139,3252,blindness,1141081874 +20139,3252,Oscar (Best Actor),1141000904 +20139,3253,Saturday Night Live,1148779036 +20139,3254,Saturday Night Live,1148779129 +20139,3260,Oscar (Best Actress),1140893754 +20139,3263,basketball,1140562508 +20139,3270,figure skating,1149387010 +20139,3297,Oscar (Best Cinematography),1142787047 +20139,3334,Oscar (Best Supporting Actress),1141179044 +20139,3341,Oscar (Best Actress),1140892072 +20139,3361,baseball,1140561408 +20139,3362,bank robbery,1143903224 +20139,3368,Oscar (Best Supporting Actor),1141703742 +20139,3371,Oscar (Best Cinematography),1142789680 +20139,3386,Oscar (Best Cinematography),1142790100 +20139,3396,road trip,1140749236 +20139,3408,Oscar (Best Actress),1140894048 +20139,3421,college,1148778260 +20139,3428,boxing,1140998490 +20139,3447,book,1142787292 +20139,3447,Oscar (Best Actress),1140890056 +20139,3447,Oscar (Best Cinematography),1142787292 +20139,3451,Oscar (Best Actress),1140892891 +20139,3451,remade,1140892891 +20139,3467,Oscar (Best Actress),1140892711 +20139,3467,Oscar (Best Cinematography),1142788971 +20139,3467,Oscar (Best Supporting Actor),1141704093 +20139,3468,Oscar (Best Cinematography),1142788828 +20139,3468,pool,1141000736 +20139,3469,court,1142373208 +20139,3469,stage,1142373163 +20139,3471,Oscar (Best Cinematography),1142789703 +20139,3475,Oscar (Best Cinematography),1142788281 +20139,3475,Oscar (Best Directing),1140887416 +20139,3494,Oscar (Best Actor),1141000155 +20139,3499,Oscar (Best Actress),1140893715 +20139,3504,Oscar (Best Actor),1141000347 +20139,3504,Oscar (Best Actress),1140893237 +20139,3504,Oscar (Best Supporting Actress),1141587913 +20139,3506,football,1140562778 +20139,3507,stage,1142373145 +20139,3524,Oscar (Best Supporting Actor),1141704908 +20139,3535,book,1142342758 +20139,3545,Oscar (Best Actress),1140893033 +20139,3545,Oscar (Best Cinematography),1142789354 +20139,3545,Oscar (Best Directing),1140888186 +20139,3545,Oscar (Best Supporting Actor),1141704529 +20139,3545,stage,1141082021 +20139,3552,golf,1140562110 +20139,3562,marriage,1180881229 +20139,3578,Oscar (Best Actor),1141001121 +20139,3578,Oscar (Best Picture),1140746514 +20139,3617,road trip,1140749134 +20139,3668,Oscar (Best Cinematography),1142789257 +20139,3671,spoof,1142708015 +20139,3685,Oscar (Best Supporting Actress),1141592906 +20139,3712,television,1140562853 +20139,3724,Oscar (Best Actor),1141000406 +20139,3724,Oscar (Best Actress),1140893283 +20139,3729,remade,1185595081 +20139,3733,lawyers,1141704678 +20139,3733,Oscar (Best Supporting Actor),1141704557 +20139,3744,remake,1185595056 +20139,3808,Oscar (Best Actress),1140892663 +20139,3861,football,1140562451 +20139,3871,book,1142788418 +20139,3871,Oscar (Best Cinematography),1142788396 +20139,3873,Oscar (Best Actor),1141000051 +20139,3882,cheerleading,1140562103 +20139,3897,journalism,1148778182 +20139,3897,rock and roll,1148778175 +20139,3911,mockumentary,1140562631 +20139,3915,boxing,1141048227 +20139,3936,Oscar (Best Cinematography),1142787786 +20139,3955,Saturday Night Live,1148779237 +20139,3967,ballet,1140759428 +20139,3967,dance,1140759497 +20139,3978,golf,1175916103 +20139,3988,based on a book,1181175815 +20139,3996,Oscar (Best Cinematography),1142790306 +20139,4002,road trip,1140749114 +20139,4007,Oscar (Best Actor),1141000758 +20139,4008,Oscar (Best Directing),1140888657 +20139,4017,Oscar (Best Supporting Actress),1141600569 +20139,4034,Oscar (Best Directing),1140888914 +20139,4034,Oscar (Best Supporting Actor),1141705787 +20139,4041,Oscar (Best Supporting Actor),1141704934 +20139,4054,ballet,1145124375 +20139,4148,serial killer,1181312105 +20139,4181,movie business,1180994694 +20139,4186,Oscar (Best Supporting Actor),1141704274 +20139,4187,Oscar (Best Actor),1141000011 +20139,4190,Oscar (Best Actor),1140999713 +20139,4190,Oscar (Best Supporting Actress),1141584203 +20139,4211,Oscar (Best Actor),1141000857 +20139,4220,football,1140759555 +20139,4220,remade,1182007422 +20139,4262,organized crime,1181175987 +20139,4274,Oscar (Best Cinematography),1142788993 +20139,4292,Oscar (Best Actress),1140893321 +20139,4306,Oscar (Best Animated Feature),1142286409 +20139,4310,World War II,1141583300 +20139,4321,Oscar (Best Supporting Actor),1141705456 +20139,4322,baseball,1140561878 +20139,4326,Oscar (Best Cinematography),1142789962 +20139,4338,Oscar (Best Supporting Actor),1141703327 +20139,4351,bank robbery,1143903782 +20139,4361,drag,1175440477 +20139,4361,Oscar (Best Supporting Actress),1141592476 +20139,4420,Oscar (Best Supporting Actor),1141703490 +20139,4422,Oscar (Best Cinematography),1142789409 +20139,4427,Oscar (Best Actress),1140892922 +20139,4427,stage,1148779389 +20139,4433,Oscar (Best Supporting Actress),1141583850 +20139,4448,heist,1140561912 +20139,4464,Oscar (Best Supporting Actress),1141593290 +20139,4465,Oscar (Best Actress),1140893672 +20139,4623,baseball,1140561435 +20139,4623,Cleveland,1140561441 +20139,4678,television,1140562855 +20139,4738,insanity,1151946462 +20139,4738,New York,1151946462 +20139,4738,time travel,1151946462 +20139,4743,remake,1149387602 +20139,4776,Oscar (Best Actor),1141001142 +20139,4805,Oscar (Best Supporting Actor),1141703560 +20139,4805,Oscar (Best Supporting Actress),1141583923 +20139,4835,Oscar (Best Actress),1140893345 +20139,4844,heist,1140562010 +20139,4857,Oscar (Best Cinematography),1142789332 +20139,4912,Oscar (Best Actress),1140892936 +20139,4963,heist,1140561496 +20139,4974,high school,1140563272 +20139,4974,spoof,1142342566 +20139,4976,Oscar (Best Supporting Actor),1141705824 +20139,4993,Oscar (Best Cinematography),1142790335 +20139,4995,math,1149387292 +20139,4995,Oscar (Best Directing),1140888962 +20139,4995,Oscar (Best Picture),1140746455 +20139,4995,Oscar (Best Supporting Actress),1141600603 +20139,4995,psychology,1149387299 +20139,4998,Oscar (Best Cinematography),1142788654 +20139,5005,Oscar (Best Actor),1140999607 +20139,5005,Oscar (Best Supporting Actress),1141584126 +20139,5007,Oscar (Best Supporting Actor),1141704112 +20139,5008,courtroom,1181176175 +20139,5015,Oscar (Best Actress),1140894071 +20139,5035,book,1142787499 +20139,5036,Oscar (Best Supporting Actress),1141592088 +20139,5060,Korean War,1140895703 +20139,5085,opera,1141704362 +20139,5094,remake,1168142229 +20139,5094,rollerderby,1168142229 +20139,5114,Oscar (Best Cinematography),1142788324 +20139,5114,Oscar (Best Supporting Actress),1141179601 +20139,5123,Oscar (Best Actress),1140893058 +20139,5139,remade,1142786507 +20139,5141,baseball,1140760086 +20139,5171,remake,1168142206 +20139,5226,football,1140562575 +20139,5292,hockey,1140759861 +20139,5353,Oscar (Best Supporting Actress),1141587507 +20139,5354,Oscar (Best Supporting Actress),1141585621 +20139,5384,Oscar (Best Actress),1140892583 +20139,5385,rock and roll,1170029434 +20139,5440,Oscar (Best Cinematography),1142788193 +20139,5464,Oscar (Best Cinematography),1142790358 +20139,5508,new wave,1144587889 +20139,5508,rock and roll,1144588166 +20139,5599,Oscar (Best Cinematography),1142787082 +20139,5601,Oscar (Best Cinematography),1142787954 +20139,5618,Oscar (Best Animated Feature),1142286389 +20139,5902,Oscar (Best Supporting Actor),1141705848 +20139,5911,rock and roll,1183225702 +20139,5974,Oscar (Best Cinematography),1142787583 +20139,5991,courtroom,1148837797 +20139,5991,Oscar (Best Picture),1140746441 +20139,5991,Oscar (Best Supporting Actress),1141600625 +20139,5991,prison,1148837823 +20139,5992,Oscar (Best Actress),1140894095 +20139,5995,Oscar (Best Actor),1141001162 +20139,5995,Oscar (Best Directing),1140888985 +20139,6001,television,1181175656 +20139,6025,mockumentary,1140562370 +20139,6060,Bollywood,1148837557 +20139,6060,immigrants,1148837557 +20139,6060,India,1148837557 +20139,6157,comic book,1142428094 +20139,6178,Oscar (Best Supporting Actress),1141584627 +20139,6218,soccer,1140562731 +20139,6233,remake,1140892021 +20139,6247,Oscar (Best Actress),1140892987 +20139,6254,Oscar (Best Directing),1140887057 +20139,6296,mockumentary,1140562606 +20139,6316,book,1303140190 +20139,6331,spelling bee,1183225770 +20139,6346,rock and roll,1148779318 +20139,6357,remake,1140999022 +20139,6377,Oscar (Best Animated Feature),1142286363 +20139,6378,heist,1140561907 +20139,6477,Oscar (Best Actress),1140890207 +20139,6477,Oscar (Best Cinematography),1142787755 +20139,6516,Oscar (Best Actress),1140892522 +20139,6565,horse racing,1183583355 +20139,6603,Oscar (Best Actor),1140999220 +20139,6636,road trip,1140749272 +20139,6724,Oscar (Best Supporting Actress),1141587536 +20139,6777,Oscar (Best Actor),1140999764 +20139,6786,Oscar (Best Actor),1141000659 +20139,6787,Oscar (Best Supporting Actor),1141704764 +20139,6856,Oscar (Best Actor),1140999094 +20139,6863,rock and roll,1170029540 +20139,6870,Oscar (Best Actor),1141001188 +20139,6870,Oscar (Best Supporting Actor),1141705874 +20139,6947,Oscar (Best Cinematography),1142790382 +20139,6993,Oscar (Best Supporting Actor),1141705176 +20139,6993,Oscar (Best Supporting Actress),1141593216 +20139,7000,heist,1140562136 +20139,7028,bank robbery,1143903210 +20139,7057,Oscar (Best Cinematography),1142787211 +20139,7059,Oscar (Best Supporting Actress),1141178919 +20139,7072,Oscar (Best Supporting Actor),1141702774 +20139,7072,remade,1141702774 +20139,7078,Oscar (Best Actress),1140890083 +20139,7078,Oscar (Best Supporting Actress),1141177915 +20139,7086,stage,1141010038 +20139,7087,Oscar (Best Supporting Actress),1141592743 +20139,7111,Oscar (Best Cinematography),1142789305 +20139,7111,Oscar (Best Supporting Actor),1141704473 +20139,7130,Oscar (Best Actress),1140892797 +20139,7153,Oscar (Best Directing),1140889016 +20139,7153,Oscar (Best Picture),1140746520 +20139,7160,Oscar (Best Actress),1140894126 +20139,7162,Oscar (Best Supporting Actress),1141600652 +20139,7179,book,1142787495 +20139,7181,Oscar (Best Cinematography),1142789108 +20139,7263,hockey,1140759713 +20139,7263,Olympics,1140759713 +20139,7303,Oscar (Best Cinematography),1142788721 +20139,7303,Oscar (Best Supporting Actress),1141584165 +20139,7311,Oscar (Best Actor),1140998951 +20139,7317,road trip,1140749145 +20139,7338,Shakespeare,1148779354 +20139,7338,stage,1148779369 +20139,7416,Oscar (Best Supporting Actor),1141704735 +20139,7479,Oscar (Best Actor),1140999125 +20139,7493,Oscar (Best Actress),1140892553 +20139,7560,Cold War,1142343452 +20139,7619,Oscar (Best Actress),1140892685 +20139,7619,Oscar (Best Supporting Actress),1141584451 +20139,7771,Oscar (Best Cinematography),1142789051 +20139,7771,Oscar (Best Supporting Actress),1141584593 +20139,8057,Oscar (Best Supporting Actor),1141704054 +20139,8125,Oscar (Best Actress),1142786910 +20139,8125,Oscar (Best Cinematography),1142786860 +20139,8147,Oscar (Best Actor),1141000133 +20139,8153,Oscar (Best Supporting Actor),1141703536 +20139,8208,book,1170048622 +20139,8208,remade,1170048578 +20139,8257,Oscar (Best Cinematography),1142788157 +20139,8266,rock and roll,1187494354 +20139,8268,hit men,1142981383 +20139,8268,remake,1142981383 +20139,8338,Oscar (Best Cinematography),1142788057 +20139,8397,Ireland,1145130237 +20139,8450,Oscar (Best Cinematography),1142787247 +20139,8450,Oscar (Best Supporting Actress),1141177779 +20139,8458,Oscar (Best Actress),1140890301 +20139,8459,Oscar (Best Actress),1140891974 +20139,8463,Oscar (Best Actress),1140891930 +20139,8465,Oscar (Best Supporting Actor),1141702872 +20139,8482,Oscar (Best Cinematography),1142787869 +20139,8521,Oscar (Best Actor),1140998787 +20139,8584,Oscar (Best Cinematography),1142787902 +20139,8611,Oscar (Best Actress),1140890324 +20139,8617,Oscar (Best Actress),1140892641 +20139,8623,remake,1140999393 +20139,8662,Oscar (Best Cinematography),1142788122 +20139,8754,Oscar (Best Actress),1140892961 +20139,8807,stoner comedy,1153063097 +20139,8838,Oscar (Best Actress),1140893200 +20139,8864,baseball,1140562400 +20139,8875,Oscar (Best Actress),1140892307 +20139,8879,Oscar (Best Supporting Actress),1141587565 +20139,8920,Oscar (Best Actress),1140892445 +20139,8921,Oscar (Best Actress),1140892486 +20139,8921,Oscar (Best Cinematography),1142788516 +20139,8923,Oscar (Best Cinematography),1142789774 +20139,8948,remake,1149387244 +20139,8954,Blues,1175440007 +20139,8958,Oscar (Best Actor),1141001208 +20139,8961,Oscar (Best Animated Feature),1142286339 +20139,8970,Peter Pan,1181175427 +20139,8984,heist,1140562149 +20139,25827,Oscar (Best Directing),1140887031 +20139,25856,book,1142787442 +20139,25856,Oscar (Best Cinematography),1142787442 +20139,25923,book,1142788015 +20139,25923,Oscar (Best Cinematography),1142788015 +20139,25952,Oscar (Best Directing),1140887377 +20139,26386,spoof,1142342542 +20139,26491,remake,1174697844 +20139,26491,Theater,1174697858 +20139,26491,World War II,1174697850 +20139,26564,jazz,1173699364 +20139,26695,organized crime,1183305430 +20139,26700,Catholicism,1182000171 +20139,26700,gangsters,1182000183 +20139,26700,nuns,1182000173 +20139,27020,models,1156508216 +20139,27876,zydeco,1173699480 +20139,30707,Oscar (Best Actress),1140894146 +20139,30707,Oscar (Best Directing),1140889036 +20139,30707,Oscar (Best Picture),1140746472 +20139,30707,Oscar (Best Supporting Actor),1141705900 +20139,30793,based on book,1181176098 +20139,30812,Oscar (Best Cinematography),1142790403 +20139,30812,Oscar (Best Supporting Actress),1141600700 +20139,31221,comic book,1148006353 +20139,31221,marvel,1148006353 +20139,32082,basketball,1140998709 +20139,32298,remake,1140892896 +20139,32361,Oscar (Best Supporting Actor),1141702555 +20139,32646,rock and roll,1148778118 +20139,33166,Oscar (Best Picture),1141702252 +20139,33646,football,1140759562 +20139,33660,boxing,1141048221 +20139,34321,baseball,1140759993 +20139,34321,remake,1142786499 +20139,36517,Oscar (Best Supporting Actress),1141702472 +20139,36553,Oscar (Best Supporting Actress),1141177814 +20139,37733,comic book,1149387229 +20139,37733,Mafia,1143902276 +20139,37741,Novelist,1142285983 +20139,37741,Oscar (Best Actor),1141702280 +20139,38038,Oscar (Best Animated Feature),1142286310 +20139,39183,Oscar (Best Directing),1141702320 +20139,40278,Gulf War,1145124557 +20139,40583,Oscar (Best Supporting Actor),1141705925 +20139,40819,Johnny Cash,1140998372 +20139,40819,Oscar (Best Actress),1141702359 +20139,41569,monkey,1149387366 +20139,41571,Oscar (Best Cinematography),1142790420 +20139,42730,basketball,1140896271 +20139,43928,comic book,1180827232 +20139,44191,comic book,1142824809 +20139,44191,revenge,1142824871 +20139,44199,bank robbery,1143903193 +20139,45722,pirates,1153605221 +20139,45722,sequels,1153605223 +20139,46976,modern fantasy,1245555909 +20139,46976,surreal,1245556139 +20139,46976,writing,1245556140 +20139,48780,magic,1161605608 +20139,53125,pirates,1181175434 +20139,53993,environmental,1191775913 +20139,53993,family,1191775897 +20139,53993,god,1191775884 +20139,54513,radio DJ,1190395557 +20139,66934,mad scientist,1284916453 +20139,66934,musical,1284916458 +20139,66934,parody,1284916456 +20139,66934,UNREQUITED LOVE,1284916445 +20139,91094,comeback,1322267198 +20139,91094,puppets,1322267209 +20139,91529,Batman,1343432379 +20151,93040,american civil war,1430885425 +20151,93040,documentary,1430885425 +20151,93040,history,1430885425 +20164,33615,Dreamworks,1442538469 +20164,33615,funny,1442538473 +20164,95105,circus,1442538511 +20164,95105,talking animals,1442538514 +20196,1300,dogs,1273540935 +20196,61024,Danny McBride,1273541193 +20196,61024,weed,1273541193 +20204,1777,Cute!,1158170767 +20225,260,sci-fi,1435176870 +20225,260,space,1435176864 +20225,356,history,1435177165 +20225,356,humor,1435177165 +20225,356,inspiring,1435177165 +20231,2918,formative,1443992182 +20231,143412,politics,1443992189 +20244,954,political,1187226652 +20244,1091,classic,1187226689 +20244,1245,suspensse,1187226640 +20244,1589,suspense,1187226627 +20244,2384,animated,1187226664 +20244,3113,arnold,1187226674 +20253,38061,comedy,1227430473 +20265,32,post-apocalyptic,1315139915 +20265,32,time travel,1315139921 +20265,198,cyberpunk,1311017408 +20265,198,sci-fi,1311017420 +20265,198,virtual reality,1311017415 +20265,296,Quentin Tarantino,1367876906 +20265,519,Bad acting,1442092205 +20265,519,Surreal,1442092274 +20265,968,brilliant ending,1368378742 +20265,968,Race issues,1368378654 +20265,968,zombies,1368378717 +20265,1213,based on a book,1367876960 +20265,1213,dark comedy,1367876956 +20265,1213,organized crime,1367876951 +20265,2986,cyborgs,1441834569 +20265,2986,dystopia,1441834573 +20265,2986,robots,1441834566 +20265,2986,Surreal,1442092263 +20265,3039,Eddie Murphy,1323025890 +20265,3481,90s,1442186493 +20265,3702,dystopia,1327997942 +20265,3702,post-apocalyptic,1327997938 +20265,3702,sci-fi,1327997952 +20265,3703,action,1327997958 +20265,3703,dystopia,1327997934 +20265,3703,post-apocalyptic,1327997932 +20265,4886,Pixar,1319390165 +20265,5792,philosophy,1347823735 +20265,5792,sexuality,1347823732 +20265,6059,Al Pacino,1180301814 +20265,6223,drugs,1189338657 +20265,6534,comic book,1419897257 +20265,6534,mad scientist,1419897265 +20265,7153,based on a book,1367876921 +20265,7153,fantasy,1367876924 +20265,7153,Oscar (Best Picture),1367876932 +20265,7318,religion,1325001056 +20265,34048,cliche,1421538898 +20265,34048,Dakota Fanning,1421538902 +20265,34048,terrible ending,1421538919 +20265,34048,Tom Cruise,1421538911 +20265,37846,Golf,1437755174 +20265,37846,Guitar,1438005936 +20265,37846,Johnny Knoxville,1437755159 +20265,37846,Juilliard,1438005957 +20265,37846,Music,1438005931 +20265,37846,Quentin Tarantino,1437755213 +20265,37846,Soundtrack,1437755225 +20265,40819,addiction,1325265309 +20265,40819,based on a true story,1325265297 +20265,40819,Oscar (Best Actress),1325265293 +20265,42015,funny,1323549038 +20265,42015,Heath Ledger,1323549034 +20265,45950,Oscar Nom 2007,1176066874 +20265,48738,Oscar Nom 2007,1176067159 +20265,49272,espionage,1231617259 +20265,49272,James Bond,1231617252 +20265,49530,Oscar Nom 2007,1176067134 +20265,52281,Quentin Tarantino,1189338756 +20265,56782,based on a book,1367876897 +20265,56782,Oscar (Best Actor),1367876900 +20265,56782,Oscar (Best Cinematography),1367876894 +20265,68222,Jerusalem,1438006133 +20265,68222,Jesus Christ,1438006026 +20265,68222,Resurrection,1438006171 +20265,68222,Roman Empire,1438006044 +20265,68954,Pixar,1319390213 +20265,71902,Ashton Kutcher,1347798043 +20265,71902,Nudity (Topless - Notable),1347798035 +20265,74510,hackers,1283276076 +20265,77866,archery,1419981107 +20265,77866,England,1419981103 +20265,77866,Rewrite history,1419981099 +20265,77866,unhistorical,1419981098 +20265,78772,based on a book,1364318889 +20265,78772,relationships,1364318908 +20265,78772,vampires,1364318875 +20265,79132,alternate reality,1367876948 +20265,79132,psychology,1367876945 +20265,79132,twist ending,1367876939 +20265,80906,business,1322336495 +20265,80906,economics,1322336497 +20265,82095,Alien Invasion,1367876774 +20265,82095,boring,1367876808 +20265,82095,unintentional comedy,1367876793 +20265,85510,stylized,1313608686 +20265,85510,Surreal,1313608688 +20265,86882,Woody Allen,1325538217 +20265,87522,Scooter,1440362534 +20265,88163,funny,1348146101 +20265,88163,high school,1348146090 +20265,88405,happy ending,1440710636 +20265,89343,religion,1367515522 +20265,89492,Brad Pitt,1324902596 +20265,89492,sports,1324902602 +20265,90405,corruption,1321428640 +20265,90405,dystopia,1321428612 +20265,90405,immortality,1321428605 +20265,90405,sci-fi,1321428602 +20265,90439,bank,1322949159 +20265,90439,business,1322949162 +20265,90439,strange ending,1322949168 +20265,91077,George Clooney,1332280929 +20265,91542,Funny,1327997859 +20265,91542,Guy Ritchie,1327997862 +20265,91542,Robert Downey Jr.,1327997883 +20265,95197,Nudity (Topless),1359987297 +20265,101106,David Grohl,1365887937 +20265,101106,music business,1365887928 +20265,101106,rock and roll,1365887933 +20265,110104,aksel hennie,1436293809 +20265,110104,norway,1436293809 +20265,110104,oil,1436293809 +20265,116823,bad ass female lead,1448393116 +20265,116823,dystopia,1448050197 +20265,116823,Jennifer Lawrence,1448050188 +20265,116823,revolution,1448393109 +20285,750,great movie excellent and worth while,1144799606 +20289,924,confusing ending,1453419195 +20289,924,slow,1453419204 +20289,131724,homicide investigation,1453419008 +20291,260,classic,1431321733 +20291,260,Science Fiction,1431321709 +20291,260,war,1431321720 +20298,64969,funny,1244772726 +20298,67087,Jason Segel,1244767529 +20298,67087,Paul Rudd,1244767532 +20323,260,classic sci-fi,1437305599 +20323,260,franchise,1437305580 +20323,260,Science Fiction,1437305570 +20346,34532,better than expected,1139937342 +20346,36527,probably a better stage play than movie,1143471176 +20346,37720,better than expected,1139937315 +20346,39231,good but not as good as garden state,1140110077 +20346,39449,suprisingly funny,1146060277 +20346,44191,top 5 movie,1143471196 +20346,45666,better than expected,1170858581 +20356,3594,soundtrack,1427996703 +20356,83086,good soundtrack,1427996848 +20356,83086,xtina,1427996827 +20372,589,robots,1153992848 +20372,2640,sucks,1153992741 +20372,6377,Nice,1153992819 +20376,260,sci-fi,1432345758 +20376,260,series,1432345771 +20393,3677,divine vs. profane,1178692715 +20393,3677,divine vs. worldly,1178692720 +20396,101,owen wilson,1183776867 +20396,5110,Nudity (Topless),1183776394 +20401,3259,Ireland,1297652629 +20401,3259,Romance,1297652619 +20413,260,classic sci-fi,1444591197 +20413,260,fairy tale,1444591180 +20413,260,great visual effects,1444591214 +20413,260,sci-fi,1444591194 +20413,2542,british,1444591881 +20413,2542,dark comedy,1444591879 +20413,6953,Complex,1444591477 +20413,6953,psychological,1444591468 +20413,6953,sean penn,1444591472 +20430,260,amazing,1436733383 +20430,260,old classic,1436733415 +20458,79798,artistic,1299604487 +20458,79798,family,1299604487 +20458,79798,homosexual,1299604487 +20458,79798,mother-son relationship,1299604487 +20460,296,Quentin Tarantino,1166708625 +20460,4015,dude!,1166710360 +20463,236,romantic comedy,1429178663 +20463,932,romcom,1429178561 +20470,66665,great soundtrack,1441532145 +20470,66665,road trip,1441532151 +20470,66665,witty,1441532165 +20470,105250,psychoanalysis,1452943907 +20474,54286,action,1210657798 +20474,54286,great plot,1210657798 +20474,54286,twist ending,1210657798 +20479,7361,Michel Gondry,1163939750 +20479,7361,quirky,1163939762 +20479,7361,surreal,1163939740 +20479,8014,Atmospheric,1163939598 +20479,8014,great photograpy,1163939592 +20480,54796,Daniel Brühl,1283959003 +20480,54796,Paris,1283959014 +20499,4774,Hilarious!! :D,1137519096 +20499,4881,I fell on sleep...,1137613677 +20499,8914,I didn't get it.,1137869933 +20499,27873,Must see!,1138049216 +20499,34334,Fighter that downloads music from internet right!,1137235953 +20499,37720,Law court drama spiced with horror.,1137324000 +20499,37727,Ihan ok. Loppu oli vähän liian nopea.,1137147606 +20514,260,ROBOTS AND ANDROIDS,1432036436 +20514,260,space travel,1432036425 +20551,260,hero's journey,1438454591 +20557,527,melodrama,1279327751 +20557,4920,bad mothers,1279327412 +20557,79091,bad mothers,1279327337 +20565,4993,fantasy,1435852523 +20565,5952,fantasy,1435852536 +20565,98809,LOTR,1435852388 +20596,32,remake,1228823157 +20609,2019,science,1429031550 +20609,2019,science test,1429031545 +20609,2019,test,1429031547 +20609,7256,science test,1429031526 +20626,5418,amnesia,1429009932 +20626,5418,conspiracy,1429009930 +20626,5418,Matt Damon,1429009925 +20626,5418,spy,1429009927 +20657,47200,high octane,1329596045 +20657,47200,Stupid as Hell,1329596045 +20660,260,sci-fi,1439793593 +20677,260,action,1435807383 +20677,260,space adventure,1435807373 +20677,60037,bad ending,1435807754 +20677,60037,disaster,1435807757 +20677,60037,end of the world,1435807739 +20677,60037,epidemic,1435807745 +20677,60037,M. Night Shyamalan,1435807766 +20677,60037,Mark Wahlberg,1435807747 +20677,60037,survival,1435807764 +20678,106642,sci-fi,1452057363 +20740,79536,crime,1422216936 +20740,79536,finnish,1422216938 +20744,260,science-fiction,1437422436 +20744,260,unrealistic sci-fi,1437422452 +20807,55247,must see,1209658852 +20839,6,atmospheric,1433005233 +20839,6,realistic action,1433005170 +20839,50,complicated,1433004756 +20839,50,great ending,1433004763 +20839,50,twist ending,1433004794 +20839,1201,Clint Eastwood,1433005032 +20839,1201,complex characters,1433005036 +20839,1258,atmospheric,1433005021 +20839,1258,cult film,1433005005 +20839,1466,Al Pacino,1433005107 +20839,1466,based on a true story,1433005103 +20839,2858,dark comedy,1433004897 +20839,2858,kevin spacey,1433004889 +20839,6953,multiple storylines,1433004921 +20839,7981,better than the american version,1433005244 +20839,7981,stylized,1433005248 +20839,8798,atmospheric,1433005258 +20839,89745,predictable,1433005346 +20839,111759,action,1433005511 +20839,111759,sci-fi,1433005488 +20855,1,unlikely friendships,1438711374 +20855,41,Shakespeare,1437938923 +20855,260,classic,1437935653 +20855,260,sci-fi,1437935647 +20855,293,unlikely friendships,1438711386 +20855,356,drama,1437937895 +20855,356,oscar winner,1437937895 +20855,356,robert zemeckis,1437937895 +20855,536,Christmas,1437980383 +20855,536,Lost Classic,1437980390 +20855,536,Silas Marner,1437980394 +20855,1704,unlikely friendships,1438711356 +20855,1962,unlikely friendships,1438710939 +20855,1968,unlikely friendships,1438711433 +20855,2128,crime,1437944057 +20855,2128,dvd commentary,1437944072 +20855,2273,unlikely friendships,1438712167 +20855,2357,UNLIKELY FRIENDSHIPS,1438710829 +20855,2539,unlikely friendships,1438711962 +20855,3507,unlikely friendships,1438711404 +20855,4002,unlikely friendships,1438710917 +20855,4186,Billy Wilder,1437943991 +20855,4186,comedy,1437943979 +20855,4186,fraud,1437943976 +20855,4186,insurance fraud,1453696391 +20855,5377,unlikely friendships,1438710901 +20855,5890,unlikely friendships,1438711455 +20855,6711,unlikely friendships,1438710861 +20855,6867,unlikely friendships,1438710792 +20855,6879,John Grisham,1438110329 +20855,6999,comedy,1453618311 +20855,6999,frank oz,1453618311 +20855,7297,unlikely friendships,1438710844 +20855,49284,Unlikely Friendships,1438758204 +20855,50514,Dogme 95,1437944561 +20855,63828,Documentary,1438368207 +20855,68954,unlikely friendships,1438712002 +20855,81845,unlikely friendships,1438712053 +20855,88810,unlikely friendships,1438711984 +20855,89449,Comedy,1437939937 +20855,89449,French,1437939932 +20855,89449,Romantic,1437939929 +20855,92259,friendship,1438053050 +20855,92259,unlikely friendships,1438711343 +20855,96075,author:Charles Dickens,1437941421 +20855,109155,movie business,1438374205 +20855,115231,unlikely friendships,1438711478 +20855,132173,Comedy,1439687898 +20855,132173,Siblings,1439687894 +20855,139755,Crime,1437944401 +20855,139755,Mystery,1437944403 +20855,139755,Noir,1437944436 +20855,139755,Private Detective,1437944427 +20855,139755,Thriller,1437944406 +20864,1456,childhood favorite,1372047961 +20864,4979,dark comedy,1249972798 +20864,4979,dark humor,1249972798 +20864,4979,great soundtrack,1259370230 +20864,26810,incest,1308447759 +20864,30810,great soundtrack,1259370269 +20864,42958,Charlie Ray,1294723984 +20864,42958,children,1294724007 +20864,42958,Cynthia Nixon,1294723972 +20864,42958,Josh Hutcherson,1294723973 +20864,42958,Mark Levin,1294723977 +20864,42958,Willie Garson,1294723987 +20864,47423,Addiction,1351051905 +20864,47423,Brooklyn,1351051900 +20864,47423,drugs,1351050764 +20864,47423,independent film,1351051895 +20864,47423,Ryan Gosling,1351051890 +20864,47423,unresolved,1351051914 +20864,54281,drugs,1351050887 +20864,56715,black comedy,1294641346 +20864,56715,cinematography,1294641371 +20864,56715,croatian,1294641280 +20864,56715,dark comedy,1294641328 +20864,56715,music,1294641301 +20864,56715,quirky,1294641334 +20864,56715,russian,1294641289 +20864,56715,russian accent,1294641338 +20864,58162,dylan moran,1320190590 +20864,58162,interracial romance,1320190623 +20864,59900,exaggerated,1372047647 +20864,59900,over the top,1372047644 +20864,59900,ridiculous,1372047832 +20864,72557,dylan moran,1320282760 +20864,79242,interracial romance,1320285608 +20864,81537,Zach Galifianakis,1308553237 +20864,86882,cinematography,1320261009 +20864,86882,Owen Wilson,1320260987 +20864,86882,quirky,1320261012 +20864,86882,witty,1320261021 +20864,93721,minimalist,1372123330 +20864,94266,rude,1351695281 +20864,94677,political satire,1372095984 +20864,96821,atmospheric,1372568288 +20864,96821,bittersweet,1372568294 +20864,96821,coming of age,1372568284 +20864,96821,Suicide,1372568282 +20864,97715,terrible,1351694788 +20864,97834,road trip,1372879113 +20864,101581,dogs,1364789355 +20864,112852,great soundtrack,1407069552 +20866,924,boring,1189635989 +20866,5903,dumb dystopia,1182964775 +20866,45447,bullshit history,1151358465 +20888,165,terrorism,1198972488 +20888,3176,boring,1198086657 +20888,3948,stupid,1199123908 +20888,4158,Worst movie ever!,1198973706 +20888,4499,one of the best movies ever,1198092466 +20888,4558,very funny,1198096623 +20888,4993,best movie ever,1198095220 +20888,4993,epic,1198974943 +20888,5004,sadly boring,1199129424 +20888,5219,virus,1198971712 +20888,5323,funny,1199122860 +20888,5611,honor bullshit,1199128723 +20888,5612,asthma,1199130254 +20888,5612,child,1199130254 +20888,5612,kidnapping,1199130254 +20888,5956,boring,1198087393 +20888,6252,stewardess,1199130616 +20888,6874,O Vasilas,1199123170 +20888,6880,seriously boring,1199129742 +20888,6881,meh,1199125783 +20888,6909,cornea transplant - sees ghosts,1199122945 +20888,7017,airplane hijacking,1199125635 +20888,7017,terrorism,1199125635 +20888,7324,long distance race with horses in the desert,1198099016 +20888,7438,O Vasilas,1199123173 +20888,7458,travesty,1198087814 +20888,8370,blind samurai,1199130929 +20888,8537,not for children,1198089493 +20888,8807,different,1199122240 +20888,8861,virus,1198971745 +20888,8951,abortion,1199130557 +20888,27735,hilarious!,1199130476 +20888,27735,ridiculous,1199130476 +20888,27831,drugs,1199123376 +20888,30810,boring,1198088332 +20888,30825,Worth watching for Hoffman & Streisand,1199123941 +20888,41566,kids only,1199128401 +20888,41863,different,1199129773 +20888,42738,disappointing,1198091007 +20888,44199,cop vs robber + jodie foster,1199122701 +20888,45210,endlessly boring,1199130432 +20888,51540,uninteresting,1198973504 +20888,54787,revenge,1199115309 +20888,55232,post-apocalyptic,1198971783 +20888,55232,virus,1198971783 +20888,55232,zombies,1198971783 +20888,56174,virus,1198971441 +20902,527,holocast,1171405128 +20902,608,dark comedy,1171405361 +20902,903,Hitchcock at his best,1171404658 +20902,928,Hitchcock,1171404734 +20902,965,Alfred Hitchcock,1171404811 +20902,1086,Alfred Hitchcock,1171405058 +20902,1233,classic,1171405020 +20902,1233,submarine,1171405005 +20902,1233,World War II,1171405011 +20902,1333,hitchcock,1171406990 +20902,3681,Clint Eastwood,1171405185 +20904,1240,he's the bad guy,1296392053 +20904,1580,its fuuny,1296183337 +20904,1580,nothing,1296183352 +20961,8773,Old,1282160373 +20961,79695,action packed,1282593362 +20961,79695,Jason Statham,1282593356 +20961,79695,Story,1282593350 +20967,8874,dark humor,1436217912 +20967,8874,not funny,1436217848 +20967,96367,brainless,1409300427 +20967,97401,lighthearted,1409300382 +20967,97401,original,1409300390 +20967,97938,depressing,1378698254 +20967,119655,incompetent villains,1449714932 +20967,119714,funny,1436217830 +20967,119714,unpredictable,1436217830 +20967,119714,wacky,1436217830 +20978,2730,cinematography,1446504985 +20978,2730,Stanley Kubrick,1446504978 +20994,3114,sequel,1139248809 +20994,6539,adventure,1139248740 +20994,6539,johnny depp,1139248746 +20994,6539,keira knightley,1139248870 +20998,1747,Conspiratory,1186414928 +20998,2424,Cheezy,1186414934 +20998,3755,American,1186414950 +20998,5679,Just bad.,1186414996 +20998,6934,Cheap but fun.,1186414985 +21016,260,scifi cult,1443052779 +21016,260,Space,1443052751 +21021,14,president,1186758944 +21021,720,claymation,1186758938 +21021,1179,scams,1186758946 +21021,2020,adultery,1186758947 +21021,5679,supernatural,1186758941 +21032,5418,espionage,1397161846 +21032,5989,Steven Spielberg,1397161870 +21032,31658,Studio Ghibli,1397161883 +21032,65514,action,1397162050 +21032,65514,kung fu,1397162054 +21032,70286,action,1397161895 +21032,70286,social commentary,1397161892 +21032,74458,psychological,1397161936 +21032,74458,twist ending,1397161932 +21032,79132,alternate reality,1397162034 +21032,79132,psychology,1397162042 +21032,79132,surreal,1397162039 +21032,91529,dystopia,1397161988 +21032,91529,superhero,1397161990 +21032,91529,surreal,1397161985 +21032,97304,espionage,1397162023 +21032,98809,adventure,1397161946 +21032,99114,Leonardo DiCaprio,1404562954 +21032,99114,oscar,1404562938 +21032,99114,Quentin Tarantino,1404562926 +21032,102445,adventure,1397162167 +21032,102445,fast paced,1397162165 +21032,102445,predictable,1397162180 +21032,102445,science fiction,1397162172 +21032,102445,space,1397162178 +21032,108932,Batman,1397162009 +21032,108932,robots,1397162004 +21049,260,sci-fi,1440735483 +21049,260,space adventure,1440735497 +21049,8874,british comedy,1441326793 +21049,8874,zombies,1441326802 +21066,260,epic,1437249754 +21066,260,science-fiction,1437249739 +21066,86377,american humor,1437250022 +21066,86377,dark humor,1437250022 +21066,86377,funny,1437250022 +21072,120486,Love Triangle,1420234029 +21072,120486,Musical,1420234016 +21076,260,epic adventure,1439727464 +21077,260,exciting,1443015211 +21090,318,inspirational,1446664249 +21090,318,psychology,1446664255 +21090,318,thought-provoking,1446664307 +21093,58559,comic book,1262653755 +21093,68157,Quentin Tarantino,1262653739 +21093,68157,satire,1262653746 +21093,68157,World War II,1262653743 +21096,260,lightsabers,1444436715 +21096,260,sci-fi,1444436707 +21128,296,gangster,1434574162 +21128,296,multiple storylines,1434574162 +21128,296,neo-noir,1434574162 +21128,356,inspirational,1435418792 +21128,356,sad,1435418792 +21128,356,unrequited love,1435418792 +21129,4226,thought provoking,1428850280 +21129,79357,paradox,1428850303 +21190,80,Children,1174458972 +21190,80,Different,1174458972 +21190,80,Lost Classic,1174458972 +21190,527,A Very Special Episode of Blossom,1175038197 +21190,780,america porn,1175038376 +21190,920,Amazingly Racist,1175038577 +21190,920,Carpetbaggers - White Man Oppressed!!!,1175038530 +21190,920,Malcolm X,1175038483 +21190,1306,Go For the Director's Cut. Much better.,1178569106 +21190,1377,Gender Issues,1174937979 +21190,1608,america porn,1175038931 +21190,1809,Not the Best Kitano but Good,1176935274 +21190,1809,Technique,1176935274 +21190,1856,OMFG ITS A KONSPIRISY!,1174443354 +21190,1944,Frank Sinatra,1175146108 +21190,1944,Montgomery Cliff,1175146108 +21190,2427,Grown Men Weep for Two Hours,1185151513 +21190,4176,Doesn't Translate Well - Still Pretty Good,1174777840 +21190,4220,Robert Aldrich,1176907456 +21190,4220,violence,1176907485 +21190,5069,great visuals,1177118975 +21190,5069,The Series Was Better,1177118961 +21190,5341,Good But Doesn't Really Capture Lenny Bruce,1175987686 +21190,7065,White Film Theory and Criticism,1176228524 +21190,7484,cried their way to the bank,1184251128 +21190,8607,Intentionally Corny But Touching,1175159945 +21190,8607,Japanese 'It's a Wonderful Life',1175159917 +21190,26359,communism,1177258056 +21190,26359,confrontational,1177258088 +21190,26359,italian history,1177258088 +21190,26788,Gong Li,1177000762 +21190,26788,hilarious,1177000762 +21190,26788,poignant,1177000722 +21190,26788,Zhang Yimou,1177000762 +21190,31660,Swing and a Miss,1174809790 +21190,32387,Morally Ambiguous,1177566018 +21190,32387,Sociopath,1177566018 +21190,42632,Masterpiece,1174798661 +21190,42632,Watch the First Two First,1174798661 +21190,42728,medieval,1171527223 +21239,3160,converging lives,1175221534 +21239,5910,Coverging Lives,1175221112 +21242,109848,slow,1426687059 +21267,112552,determination,1430526450 +21267,112552,devotion,1430526450 +21267,112552,music,1430526450 +21275,3020,Postal,1179105502 +21331,26289,depression era,1438832684 +21331,26289,hobos,1438832704 +21340,260,classic sci-fi,1442075296 +21340,260,oldie but goodie,1442075307 +21353,260,epic,1440031546 +21353,260,sci-fi,1440031545 +21355,260,Episode 6,1440760593 +21355,260,Star Wars,1440760551 +21377,282,child alone after parents died,1233342308 +21377,282,communication,1233342365 +21377,282,fear,1233342365 +21377,282,flashbacks,1233342365 +21377,282,language,1233342365 +21377,282,remote location,1233342308 +21377,282,skinnydipping,1233342417 +21377,282,speech therapy,1233342308 +21377,537,artist,1233688958 +21377,537,Australia,1233688984 +21377,537,bathing an a stream,1233689112 +21377,537,Blue Mountains,1233688984 +21377,537,Norman Lindsay,1233688958 +21377,537,Notable Nudity,1233688868 +21377,537,Nudity (Full Frontal - Notable),1233688864 +21377,537,Period piece,1233689167 +21377,537,posing nude,1233688958 +21377,537,skinnydipping,1233688958 +21377,537,The Body,1233689210 +21377,1216,beautiful scenery,1229230659 +21377,1216,comedic in parts,1229230717 +21377,1216,competitive sport,1229230594 +21377,1216,death wish,1229230629 +21377,1216,dolphins,1229230561 +21377,1216,free air diving,1229230482 +21377,1216,greek islands,1229230498 +21377,1216,love story,1229230553 +21377,1968,bratpack,1231711887 +21377,1968,great music,1231711919 +21377,1968,saturday school detention,1231711912 +21377,2146,bratpack,1231711702 +21377,2146,friends with issues,1231711687 +21377,2146,Nudity (Topless - Brief),1231963576 +21377,2262,insecurity,1231710765 +21377,2262,love story,1231710765 +21377,2262,lover verses friend issues,1231710793 +21377,2262,Nudity (Rear),1231710765 +21377,2470,crocodile,1232630759 +21377,2470,New York City,1232630793 +21377,2470,Nudity (Rear),1232630731 +21377,2470,outback,1232630780 +21377,2470,thats not a knife,1232630827 +21377,4877,insecurity,1231710064 +21377,4877,intimate,1231709880 +21377,4877,love story,1231710317 +21377,4877,lover verses friend issues,1231710820 +21377,4877,mear cats,1231710177 +21377,4877,Nudity (Rear),1231710064 +21377,4877,Nudity (Topless),1231710064 +21377,4877,one night stand,1231710064 +21377,4877,sex scenes,1231710220 +21377,4877,sexy,1231710317 +21377,5437,break into lab,1233341541 +21377,5437,competition,1233341660 +21377,5437,FBI pursuit/case,1233341571 +21377,5437,lazer,1233341551 +21377,5437,plutonium bomb,1233341514 +21377,5437,science geeks,1233341643 +21377,5437,science project,1233341525 +21377,5437,stealing,1233341697 +21377,5437,student prank,1233341562 +21377,6037,archaeology,1229230362 +21377,6037,greek islands,1229229536 +21377,6037,love triangle,1229230418 +21377,6037,menage-a-trois,1229230194 +21377,6037,nude bathing,1229230328 +21377,6037,nude beach,1229229505 +21377,6037,Nudity (Full Frontal - Notable),1229230222 +21377,6037,skinnydipping,1231746746 +21377,6037,summer vacation,1229230385 +21377,6037,threesome,1229230350 +21377,6214,constantly rotating filming,1233171005 +21377,6214,graphic violence,1233170934 +21377,6214,stobe effects,1233170977 +21377,6765,chick flick,1231711107 +21377,6765,divorce,1231710955 +21377,6765,family relationships,1231711049 +21377,6765,friendship,1231710955 +21377,6765,gay friend,1231710955 +21377,6765,girlie movie,1231711079 +21377,6765,house renovations,1231711028 +21377,6765,searching for love,1231710975 +21377,6765,Tuscany,1231710955 +21377,32737,artist,1231272077 +21377,32737,based on a book,1231272107 +21377,32737,beach,1231272077 +21377,32737,island,1231272077 +21377,32737,Norman Lindsay,1231272133 +21377,32737,Nudity (Full Frontal - Notable),1231272077 +21377,32737,Nudity (Full Frontal),1233301901 +21377,32737,Nudity (Rear),1231272077 +21377,32737,painting,1231272077 +21377,32737,skinnydipping,1231272077 +21377,46322,coffee,1235290612 +21377,46322,respect verses fear,1235290479 +21377,53207,forensic psychology,1233948976 +21377,53207,ladies man,1233949131 +21377,53207,minutes to live,1233949240 +21377,53207,Nudity (Rear),1233948976 +21377,53207,payback,1233949038 +21377,53207,serial killer,1233948976 +21377,53207,setup,1233949038 +21377,53207,stay of execution,1233949087 +21377,53207,student detectives,1233949175 +21377,53207,who done it,1233949103 +21377,59369,car chase,1231711277 +21377,59369,divorce,1231711339 +21377,59369,father daughter relationship,1231711369 +21377,59369,fight scenes,1231711277 +21377,59369,kidnapping,1231711277 +21377,59369,special forces,1231711310 +21377,59369,white slavery,1231711277 +21377,61250,dumb blonde,1233949439 +21377,61250,geek sorority,1233949426 +21377,61250,Nudity (Rear),1233949476 +21377,61250,playboy non bunny,1233949364 +21377,61250,tricked to leave,1233949378 +21377,61729,airconditioner falls,1234062778 +21377,61729,convince her not too,1234062846 +21377,61729,dentist,1234062884 +21377,61729,died for seven minutes,1234062739 +21377,61729,doesn't like people,1234062864 +21377,61729,hit by bus,1234062760 +21377,61729,mummy dental analysis,1234062799 +21377,61729,sees ghosts,1234062750 +21377,61729,widow to remarry,1234062825 +21377,62081,big brother,1232708796 +21377,62081,computer controls everything,1232708700 +21377,62081,cyberterrorism,1232708675 +21377,64622,Nudity (Full Frontal - Notable),1231479317 +21377,64622,Nudity (Rear),1231479329 +21377,65006,doppleganger,1230447093 +21377,65006,Nudity (Rear),1230447171 +21377,65006,Nudity (Topless - Notable),1230447138 +21377,65006,psychological drama,1230447271 +21377,65130,abortion,1233561378 +21377,65130,being told the truth and not liking it,1233605704 +21377,65130,compromise,1233561599 +21377,65130,dreams,1233561361 +21377,65130,infidelity,1233561820 +21377,65130,life choices,1233605621 +21377,65130,life philosophy,1233605642 +21377,65130,life reflection,1233605659 +21377,65130,life-work balance,1233561401 +21377,65130,Nudity (Topless - Brief),1233561758 +21377,65130,others opinions,1233561907 +21377,65130,relationships,1233561481 +21377,65130,satisfaction at work,1233561421 +21377,65130,satisfaction in life,1233561435 +21377,65612,Australia,1232610517 +21377,65612,based on a book,1232610360 +21377,65612,desert island flicks,1232610350 +21377,65612,easily confused with other movie(s) (title),1233301808 +21377,65612,Nudity (Full Frontal - Brief),1232610350 +21377,65612,Nudity (Rear),1232610449 +21377,65612,Nudity (Topless - Notable),1232610350 +21377,65612,relationships,1232610350 +21377,65612,survival,1232610350 +21377,65612,torres strait islands,1232610537 +21377,65612,true story,1232610350 +21377,65612,VHS,1232737986 +21390,260,"action, scifi",1443212039 +21390,260,space epic,1443212047 +21398,493,real,1188668625 +21398,837,great translation,1188668539 +21398,1245,great Coen bros,1188668479 +21398,2485,high school flic,1188668463 +21398,2662,almost real,1188668560 +21405,909,Oscar (Best Picture),1169475938 +21433,260,fantasy,1432712948 +21433,260,sci-fi,1432712925 +21440,110,Devotion,1257106589 +21440,110,patriotism,1257106571 +21440,2028,Devotion,1257106606 +21449,260,aliens,1433858038 +21449,260,best movie ever,1433858065 +21449,260,EPIC,1433858009 +21449,260,far future,1433858034 +21449,260,good vs evil,1433858042 +21449,260,space adventure,1433857990 +21449,260,special effects,1433858046 +21459,1196,fantasy,1304254344 +21459,1196,Harrison Ford,1304254339 +21459,1196,sci-fi,1304254342 +21459,1270,1980s,1304254226 +21459,1270,comedy,1304254209 +21459,1270,quirky,1304254211 +21459,1270,Saturn Award (Best Science Fiction Film),1304254232 +21459,1270,sci-fi,1304254213 +21459,1270,teen,1304254205 +21459,1270,time travel,1304254201 +21459,1270,whimsical,1304254235 +21459,69122,absurd,1304255752 +21459,69122,awkward,1304255754 +21459,69122,cliche,1304255758 +21459,69122,Nudity (Topless),1304255749 +21459,69122,strippers,1304255760 +21469,260,space opera,1440741975 +21469,260,The beginning of a classic saga. Good vs evil extraordinaire,1440741963 +21489,49824,musical,1167580918 +21532,926,Camp,1140378110 +21532,1305,Indie,1140378555 +21532,2183,North Africa,1140378439 +21532,3019,Oregon,1140378492 +21532,3019,Portland,1140378492 +21532,3788,Mod,1140377960 +21532,33171,Pornographic,1140378056 +21532,39292,Communist witch hunt,1140378573 +21536,34,family,1450197269 +21536,2324,italian,1450197226 +21565,260,Harrison Ford,1437786750 +21565,260,the classic sci fi movie. must see.,1437771143 +21565,98154,great performances,1437787371 +21565,98154,historical epic,1437787371 +21565,98154,period drama,1437787371 +21572,296,funny,1420558619 +21572,296,non-linear,1420558619 +21572,296,post-modern,1420558619 +21572,356,american idiocy,1421521716 +21572,356,cliched,1421521716 +21572,356,nostalgia,1421521716 +21579,780,Will Smith,1275513166 +21592,47,scary stuff,1177181756 +21592,909,Old school comedy,1177181734 +21592,3105,medical,1177181721 +21619,4734,jay and silent bob,1144597432 +21619,5283,college,1248821817 +21619,5283,College Humor,1248821819 +21619,5283,Ryan Reynolds,1248821803 +21619,5283,Tara Reid,1248821789 +21619,6009,Takashi Miike,1248823009 +21619,41997,spielberg,1140978082 +21635,2572,comedy,1429545531 +21635,2572,romantic,1429545528 +21643,260,action,1434868429 +21643,260,Science Fiction,1434868425 +21667,3581,90s club culture,1187892201 +21667,5095,1970s,1186373717 +21667,5095,Shakespeare adaptation,1186373746 +21677,260,classic sci-fi,1441768440 +21677,260,Harrison Ford,1441768448 +21693,356,comedy,1438296423 +21693,356,determination,1438296423 +21693,356,drama,1438296423 +21693,26578,philosophical,1440103140 +21693,26578,religion,1440103114 +21693,26578,the end of the world,1440103122 +21694,497,Emma Thompson,1179010161 +21694,1295,Milan Kundera,1179016232 +21694,2282,Parody of Art World,1179016712 +21694,2318,Good but makes you want to shower afterwards,1179014987 +21694,3993,Marquis de Sade,1179015211 +21694,5074,Passive-Agressive,1179018837 +21694,6299,terrible music,1179015799 +21694,6620,r. crumb,1179011559 +21694,27773,Kafka meets Oedipus Rex,1179012236 +21695,45950,misleading,1217773120 +21695,47999,misleading,1217773066 +21696,480,dinosaurs gone wild,1427254018 +21696,480,rawr,1427254018 +21696,480,save the kids,1427254018 +21696,593,crime drama,1425262578 +21696,593,psychological thriller,1425262578 +21696,593,serial killer,1425262578 +21708,260,good vs evil,1433612322 +21708,260,sci-fi,1433612306 +21708,6874,martial arts,1433612353 +21708,6874,nonlinear,1433612377 +21708,6874,rape,1433612367 +21717,296,drugs,1423528015 +21717,296,guns,1423528015 +21717,296,quentin tarantino,1423528015 +21731,260,legendary,1431640427 +21731,260,Science Fiction,1431640418 +21731,5108,EMOTION,1431640869 +21731,5108,sacrifice,1431640891 +21752,260,action,1437750288 +21752,260,sci-fi,1437750278 +21752,356,20th century period piece,1437794736 +21752,356,based on a book,1437794736 +21752,356,romantic drama,1437794736 +21784,31,drama,1188134991 +21784,277,drama,1188135030 +21784,475,drama,1188135005 +21784,1047,action,1188135021 +21784,1047,drama,1188135021 +21784,1047,thriller,1188135021 +21784,1249,action,1188135000 +21784,1249,crime,1188135000 +21784,1249,romance,1188135000 +21784,1249,thriller,1188135000 +21784,1267,film-noir,1188135026 +21784,1267,thriller,1188135026 +21784,2080,animation,1188135015 +21784,2080,children,1188135015 +21784,2080,comedy,1188135014 +21784,2080,musical,1188135015 +21784,2080,romance,1188135014 +21784,2105,action,1188135058 +21784,2105,adventure,1188135058 +21784,2105,animation,1188135058 +21784,2105,sci-fi,1188135058 +21784,2105,thriller,1188135058 +21784,2278,action,1188135045 +21784,2278,crime,1188135045 +21784,2278,thriller,1188135045 +21784,3755,drama,1188135040 +21784,3755,thriller,1188135040 +21815,104,Adam Sandler,1159335702 +21815,104,golf,1159335704 +21819,419,tv show,1188884873 +21819,546,bad,1188884784 +21819,546,corny,1188884784 +21819,546,video game,1188884784 +21819,1091,90s,1188884851 +21819,2125,chick flick,1188884721 +21819,2126,Nicolas Cage,1188884903 +21819,2137,pigs,1188884719 +21819,2137,spider,1188884719 +21819,2384,talking animals,1188884802 +21819,3263,90s,1188884784 +21819,4015,ashton kutcher,1188884992 +21819,4015,comedy,1188884992 +21819,4015,crazy guy from american pie,1188884992 +21819,4343,Kate Beckinsale,1188885088 +21819,4343,vampires,1188885088 +21819,4343,werewolves,1188885088 +21819,5064,adventure,1188884952 +21819,5064,book adapation,1188884952 +21819,5064,romantic comedy,1188884952 +21819,5528,creepy,1188885112 +21819,5528,dark,1188885112 +21819,5528,robin williams,1188885112 +21819,5528,scary,1188885112 +21819,35836,funny,1188885050 +21819,35836,romantic comedy,1188885050 +21819,35836,Steve Carell,1188885050 +21823,22,thriller,1368977752 +21823,111,mental illness,1368977487 +21823,440,politics,1368977694 +21823,519,franchise,1368977286 +21823,555,ensemble cast,1368977238 +21823,832,tense,1368977735 +21823,832,thriller,1368977752 +21823,861,police,1368977662 +21823,913,black and white,1368977078 +21823,1089,violent,1368977767 +21823,1095,ensemble cast,1368977238 +21823,1175,dark,1368977191 +21823,1206,violent,1368977767 +21823,1214,tense,1368977735 +21823,1248,black and white,1368977078 +21823,1262,ensemble cast,1368977238 +21823,1287,christianity,1368977139 +21823,1357,father-son relationship,1368977268 +21823,1357,mental illness,1368977487 +21823,1396,ensemble cast,1368977238 +21823,1589,ensemble cast,1368977238 +21823,1597,thriller,1368977752 +21823,1945,black and white,1368977078 +21823,1950,police,1368977663 +21823,2024,christianity,1368977139 +21823,2026,high school,1368977370 +21823,2058,tense,1368977735 +21823,2076,dark,1368977192 +21823,2353,thriller,1368977753 +21823,2383,police,1368977662 +21823,2442,mental illness,1368977486 +21823,2490,violent,1368977767 +21823,2500,high school,1368977370 +21823,2501,father-son relationship,1368977268 +21823,2888,high school,1368977370 +21823,2944,ensemble cast,1368977238 +21823,2959,violent,1368977767 +21823,2985,violent,1368977767 +21823,3146,stupid,1368977711 +21823,3256,tense,1368977735 +21823,3256,thriller,1368977752 +21823,3273,franchise,1368977286 +21823,3440,franchise,1368977286 +21823,3519,nazis,1368977546 +21823,5363,high school,1368977370 +21823,6537,franchise,1368977286 +21823,6808,nazis,1368977546 +21823,44191,natalie portman,1241537773 +21823,44191,script,1241537803 +21823,44191,special effects,1241537824 +21823,44191,story,1241537849 +21823,53121,franchise,1368977286 +21823,63113,franchise,1368977286 +21823,64622,nazis,1368977546 +21828,49272,007,1194725068 +21828,55820,violent,1202395863 +21900,4023,cage,1298781164 +21900,4023,romance,1298781164 +21900,80906,business,1300923897 +21900,80906,investor corruption,1300923892 +21900,80906,politics,1300923895 +21900,80906,truth,1300923880 +21919,60074,Will Smith,1221041971 +21938,45447,codes,1433695113 +21938,45447,conspiracy theory,1433695103 +21938,45447,Dan Brown,1433695095 +21938,116797,cryptography,1433695014 +21938,116797,Enigma,1433695000 +21938,116797,Turing,1433695026 +21938,116797,WW3,1433694996 +21960,293,great acting,1445704339 +21960,293,hitman,1445704319 +21960,541,artificial intelligence,1447189035 +21960,1200,James Cameron,1447190322 +21960,4993,Adventure,1445704432 +21960,4993,epic,1445704448 +21960,4993,fantasy,1445704430 +21960,4993,great soundtrack,1445704496 +21960,4993,Magic,1445704459 +21960,60069,Animation,1445704574 +21960,60069,emotional,1445704589 +21960,60069,love story,1445704580 +21960,64957,Brad Pitt,1447360246 +21960,64957,Oscar (Best Effects - Visual Effects),1447360304 +21960,96079,Adventure,1445706510 +21960,96079,thriller,1445706471 +21990,1080,Nudity (Full Frontal),1298520169 +21990,3623,suspense,1298520349 +21990,30793,remake,1298524924 +22018,296,Bruce Willis,1248587300 +22018,296,organized crime,1248587296 +22018,296,Quentin Tarantino,1248587291 +22018,296,Samuel L. Jackson,1248587294 +22018,589,rebels,1200658443 +22018,1240,best movie ever,1200658395 +22018,1265,alternate reality,1296651877 +22018,1265,Bill Murray,1296651879 +22018,1265,time travel,1296651883 +22018,1287,homosexual undertones,1200664575 +22018,2530,"""damn dirty apes""",1181700629 +22018,2531,"""damn dirty apes""",1181700651 +22018,2533,"""damn dirty apes""",1181700658 +22018,2549,sci-fi,1181935928 +22018,2908,Sexualized violence,1181703095 +22018,3361,baseball,1202036111 +22018,3751,campy,1181683275 +22018,3751,stop motion,1181683265 +22018,3751,The Great Escape,1181683284 +22018,5267,baseball,1181642342 +22018,5899,battle,1200657551 +22018,5899,war,1200657545 +22018,6374,remake,1183019482 +22018,7090,propaganda,1201773221 +22018,7090,propaganda in disguise,1201773239 +22018,7649,sci-fi,1181686913 +22018,7810,scifi,1181686915 +22018,7811,Based on a TV show,1181686920 +22018,7811,sci-fi,1181686932 +22018,7812,b5,1282870926 +22018,27611,political,1282870588 +22018,27611,post-apocalyptic,1282870573 +22018,27611,religion,1282870589 +22018,27611,remake,1282870591 +22018,27611,sci-fi,1282870584 +22018,27611,starship pilots,1282870577 +22018,44191,awesome,1282870390 +22018,44191,comic book,1282870344 +22018,44191,Hugo Weaving,1282870382 +22018,44191,revenge,1282870350 +22018,44191,revolutionary,1282870384 +22018,44191,sci-fi,1282870361 +22018,44889,Musical,1199758750 +22018,47200,action packed,1183364846 +22018,47200,adrenaline,1183364828 +22018,47200,adrenaline junkie,1183364859 +22018,47200,awesome,1183364856 +22018,47200,epifedrine,1183364835 +22018,47200,revange,1183364833 +22018,47200,videogame like,1183364863 +22018,47997,future,1189740171 +22018,47997,mike judge,1189740174 +22018,49263,free speech,1204162885 +22018,51086,Jim Carrey,1182908843 +22018,51662,comic book,1282870409 +22018,51662,Frank Miller,1282870411 +22018,55080,Nudity (Topless - Brief),1200208241 +22018,55080,realistic,1200208262 +22018,55080,strong female lead,1282871452 +22018,57368,New York City,1207485280 +22018,59369,CIA,1282871158 +22018,59369,fight scenes,1282871150 +22018,59369,realistic,1282871162 +22018,59369,special forces,1282871153 +22018,60069,artificial intelligence,1282870801 +22018,60069,inspirational,1282870799 +22018,60069,quirky,1282870794 +22018,60069,robots,1282870792 +22018,60674,Stargate,1282870871 +22018,64497,Keanu Reeves,1239186313 +22018,68157,Quentin Tarantino,1282871236 +22018,68157,World War II,1282871233 +22018,68319,action,1248587253 +22018,68319,bad cgi,1248587259 +22018,68319,comic,1248587248 +22018,68319,comic book,1248587246 +22018,68319,Comic Book adaption,1248587232 +22018,68319,hugh jackman,1248587238 +22018,68319,Marvel,1248587240 +22018,68319,sci-fi,1248587265 +22018,68319,superhero,1248587267 +22018,72378,Amanda Peet,1282870710 +22018,72378,audience intelligence underestimated,1282870693 +22018,72378,bad science,1282870690 +22018,72378,destruction pornographie,1282870699 +22018,73017,adapted from:comic,1282870284 +22018,73017,Based on a book,1282870285 +22018,73017,dialogue,1282870293 +22018,73017,martial arts,1282870265 +22018,73017,Robert Downey Jr.,1282870267 +22018,76251,adapted from:comic,1296635835 +22018,76251,comic book,1296635829 +22018,76251,humor,1296635831 +22018,76251,revenge,1296635825 +22018,76251,superhero,1296635823 +22018,76251,vigilante,1296635822 +22018,76251,weapons,1296635841 +22018,78218,Samuel L. Jackson,1282870218 +22018,78218,torture,1282870209 +22018,79274,jason todd,1282871324 +22018,79274,MY PARENTS ARE DEEEAAADDDD,1282871315 +22018,79702,based on a comic,1296635919 +22018,79702,cultural references,1296635908 +22018,79702,fight scenes,1296635925 +22018,81229,Bruce Willis,1296636023 +22018,81591,lesbians,1296635614 +22018,81591,Natalie Portman,1296635608 +22018,98154,Daniel Day-Lewis,1373508180 +22018,98154,patriotic,1373508183 +22018,101895,baseball,1373423873 +22018,101895,true story,1373423876 +22021,260,adventure,1433710067 +22021,260,Science Fiction,1433710075 +22021,260,space opera,1433710069 +22021,51694,1980s,1433710708 +22021,51694,british comedy,1433710701 +22021,51694,comedy,1433710711 +22021,51694,intellectual,1433710717 +22021,51694,intelligent,1433710733 +22021,51694,quiz show,1433710721 +22021,51694,university,1433710705 +22021,106100,lgbt,1433710670 +22021,106100,medicine,1433710670 +22021,106100,tragedy,1433710670 +22056,4993,Action,1432358256 +22056,4993,Adventure,1432358252 +22056,51662,action,1432358178 +22056,51662,computer animation,1432358175 +22056,51662,historical,1432358164 +22056,51662,war,1432358173 +22056,53972,action,1432358578 +22056,53972,bruce willis,1432358564 +22056,53972,computers,1432358571 +22056,53972,hackers,1432358562 +22056,67923,cars,1432358485 +22056,67923,Racing,1432358488 +22056,67923,Vin Diesel,1432358477 +22056,69122,comedy,1432358219 +22056,69122,funny,1432358215 +22056,97938,emotional,1432358147 +22056,97938,God's existance,1432358121 +22056,97938,religion,1432358115 +22056,97938,wisdom,1432358131 +22056,100498,Bruce Willis,1432358537 +22056,102716,action,1432358509 +22056,102716,cars,1432358514 +22056,115713,artificial intelligence,1432358072 +22056,116887,ancient civilization,1432358384 +22056,116887,biblical,1432358364 +22056,116887,religion,1432358387 +22077,8667,gay,1172021575 +22097,59387,beautiful,1319425713 +22097,59387,visually stunning,1319425709 +22099,102880,there was a potent inspirational message,1375742825 +22126,342,Australian,1159000335 +22154,260,classic,1439738585 +22154,260,sci-fi,1439738580 +22164,3703,dystopi,1137197490 +22188,318,prison break,1422749393 +22188,318,steven king,1422749393 +22188,318,tim robbins,1422749393 +22188,593,anthony hopkins,1422120262 +22188,593,drama,1422120262 +22188,593,psychothriller,1422120262 +22249,539,overrated,1375161964 +22249,902,overated,1375161760 +22249,1307,best friends fall in love,1375162014 +22249,1821,annoying,1375166374 +22249,1821,friends,1375166394 +22249,1821,homosexuality,1375166379 +22249,1821,Jennifer Aniston,1375166390 +22249,1821,love,1375166397 +22249,2424,overrated,1375306341 +22249,2424,unrealistic,1375306345 +22249,2581,Drew Barrymore,1375309270 +22249,2581,Michael Vartan,1375309280 +22249,2581,yucky,1375309274 +22249,2961,divorce,1375162153 +22249,2961,drama,1375162107 +22249,2961,heartache,1375162111 +22249,2961,love,1375162113 +22249,2961,marriage,1375162103 +22249,2961,Michelle Pfeiffer,1375162142 +22249,4018,classic,1375164570 +22249,4018,funny,1375164575 +22249,4025,Sandra Bullock,1375163773 +22249,4141,Freddie Prinze Jr.,1375164095 +22249,4890,jason alexander,1375163999 +22249,4890,the tail scene,1375164009 +22249,4890,weird,1375163990 +22249,5066,bittersweet,1375308078 +22249,5066,love,1375308072 +22249,5066,romantic,1375308080 +22249,5066,Shane West,1375308070 +22249,5957,accent,1375166134 +22249,5957,funny,1375166115 +22249,5957,happy ending,1375166125 +22249,5957,redemption,1375166110 +22249,5957,Sandra Bullock,1375166120 +22249,5957,sweet,1375166105 +22249,7255,best friends,1375164241 +22249,7255,cute,1375164241 +22249,7255,funny,1375164241 +22249,7255,Josh Duhamel,1375164241 +22249,7255,love,1375164240 +22249,7255,Topher Grace,1375164241 +22249,7293,gets old,1375165396 +22249,7444,best friends,1375254669 +22249,26528,beautiful,1375161245 +22249,26528,classic,1375161211 +22249,26528,friends,1375161207 +22249,26528,great casting,1375161215 +22249,26528,jonathan crombie,1375161278 +22249,26528,l.m. montgomery,1375161371 +22249,26528,literature,1375161220 +22249,26528,love,1375161203 +22249,26528,megan follows,1375161273 +22249,26528,perfect,1375161226 +22249,32296,Sandra Bullock,1375165175 +22249,33145,Ashton Kutcher,1375164198 +22249,33145,slow,1375164191 +22249,33499,Michael Vartan,1375165680 +22249,45672,crude,1375163673 +22249,47970,bad ending,1375254304 +22249,47970,coward,1375254327 +22249,47970,gross,1375254304 +22249,47970,infidelity,1375254328 +22249,47970,nudity,1375254305 +22249,47970,sex,1375254304 +22249,47970,Zach Braff,1375254315 +22249,49286,Cameron Diaz,1375163657 +22249,49286,disappointing,1375163651 +22249,49286,John Krasinski,1375163644 +22249,50685,Nathan Fillion,1375161396 +22249,50792,horrible ending,1375165890 +22249,50792,Jennifer Garner,1375165801 +22249,50792,Sam Jaeger,1375165884 +22249,50792,stupid,1375165892 +22249,51084,annoying,1375163739 +22249,53974,crude,1375165935 +22249,53974,cute,1375165940 +22249,53974,disrespectful,1375165929 +22249,53974,funny,1375165939 +22249,53974,happy ending,1375165948 +22249,53974,John Krasinski,1375165920 +22249,53974,love,1375165944 +22249,53974,Mandy Moore,1375165918 +22249,56941,overrated,1375309255 +22249,56949,James Marsden,1375163421 +22249,56949,Judy Greer,1375163435 +22249,56949,Katherine Heigl,1375163409 +22249,56949,weddings,1375163400 +22249,58047,not great,1375163144 +22249,59333,best friends,1375163222 +22249,59333,cheating,1375163231 +22249,59333,love,1375163226 +22249,59421,Ashton Kutcher,1375166042 +22249,59421,Cameron Diaz,1375166042 +22249,59421,Cute,1375166040 +22249,64969,Bradley Cooper,1375164040 +22249,64969,Zooey Deschanel,1375164040 +22249,65585,forgettable,1375165979 +22249,66665,didn't watch more than a minute,1375318703 +22249,66665,disgusting,1375318694 +22249,66665,John Krasinski,1375318714 +22249,67087,bromance,1375166355 +22249,67087,language,1375166351 +22249,69253,Boring,1375163790 +22249,69253,Harry Connick Jr.,1375163797 +22249,69406,Betty White,1375165598 +22249,69406,chemistry,1375165598 +22249,69406,comedy,1375165598 +22249,69406,dialogue,1375165598 +22249,69406,funny,1375165598 +22249,69406,happy ending,1375165598 +22249,69406,hilarious,1375165518 +22249,69406,interesting,1375165598 +22249,69406,love,1375165598 +22249,69406,Oscar Nunez,1375165598 +22249,69406,passion,1375165598 +22249,69406,romantic,1375165598 +22249,69406,Ryan Reynolds,1375165530 +22249,69406,Sandra Bullock,1375165524 +22249,69406,stripper,1375165515 +22249,69757,bad ending,1375307483 +22249,69757,bittersweet,1375307488 +22249,69757,sad,1375307491 +22249,71325,forgettable,1375165748 +22249,71325,Jennifer Aniston,1375165744 +22249,72919,Not horrible,1375165721 +22249,72919,Sarah Jessica Parker,1375165724 +22249,73015,John Krasinski,1375163078 +22249,74282,beautiful,1375161302 +22249,74282,classic,1375161305 +22249,74282,friends,1375161308 +22249,74282,great casting,1375161317 +22249,74282,jonathan crombie,1375161330 +22249,74282,literature,1375161333 +22249,74282,love,1375161311 +22249,74282,megan follows,1375161340 +22249,74282,perfect,1375161347 +22249,74688,bad ending,1375309241 +22249,78264,Could have been better,1375165998 +22249,80241,Drew Barrymore,1375163271 +22249,81784,disappointing,1375163932 +22249,82499,boring,1375165483 +22249,82499,confusing,1375165487 +22249,82499,Reese Witherspoon,1375165495 +22249,85367,boring,1375165779 +22249,85367,Jennifer Aniston,1375165770 +22249,85367,stupid,1375165775 +22249,86817,horrible ending,1375165377 +22249,86817,John Krasinski,1375165373 +22249,88163,Steve Carell,1375162082 +22249,89864,Anna Kendrick,1375318435 +22249,89864,crude,1375318421 +22249,89864,Joseph Gordon-Levitt,1375318454 +22249,89864,language,1375318418 +22249,89864,love,1375318458 +22249,89864,Seth Rogen,1375318465 +22249,91690,bittersweet,1375166305 +22249,91690,concept,1375166265 +22249,91690,crude,1375166324 +22249,91690,friends,1375166295 +22249,91690,funny,1375166310 +22249,91690,kids,1375166307 +22249,91690,language,1375166319 +22249,91690,love,1375166297 +22249,91690,secret,1375166301 +22249,91690,sex,1375166313 +22249,93326,Chelsea Handler,1375165151 +22249,93326,Chris Pine,1375165140 +22249,93326,Love triangle,1375165132 +22249,93326,Reese Witherspoon,1375165125 +22249,96314,adam samberg,1375161119 +22249,96314,best friends,1375161134 +22249,96314,bittersweet,1375161430 +22249,96314,chemistry,1375161128 +22249,96314,divorce,1375161085 +22249,96314,friendship,1375161077 +22249,96314,funny,1375161094 +22249,96314,love,1375161091 +22249,96314,other people,1375161106 +22249,96314,twist,1375161425 +22249,96314,witty,1375161097 +22250,110882,incomplete end,1445725050 +22258,5669,violence,1375573119 +22258,8622,violence,1375573135 +22260,46976,modern fantasy,1439114048 +22260,46976,writers,1439114046 +22260,46976,writing,1439114033 +22263,260,sci fi,1440564493 +22263,260,space,1440564504 +22273,5507,terrible,1224607679 +22273,5810,terrible,1224607712 +22273,55444,joy division,1224128952 +22273,55444,manchester,1224128953 +22275,29,atmospheric,1445399692 +22275,29,dark,1445399663 +22275,29,dystopia,1445399711 +22275,29,Rich setting,1445399749 +22275,29,surreal,1445399674 +22275,29,whimsical,1445399678 +22312,260,Science Fiction,1433883020 +22312,260,space adventure,1433883032 +22312,260,Star Wars,1433883044 +22312,951,cary grant,1433884967 +22312,951,comedy,1433884967 +22312,951,howard hawks,1433884967 +22316,288,annoying,1140486947 +22316,2712,unwatchable,1140486822 +22326,260,interesting,1434411310 +22326,260,uplifting,1434411322 +22326,296,intense,1435172684 +22326,296,interesting,1435172684 +22326,296,violent,1435172684 +22336,222,Irish,1179115730 +22336,39183,beautiful,1179250616 +22354,260,science fantasy,1438900745 +22354,260,Science Fiction,1438900724 +22360,260,"action, scifi",1439763476 +22360,260,classic sci-fi,1439763430 +22371,1721,atmospheric,1418127987 +22371,1721,Leonardo DiCaprio,1418127951 +22371,4993,thriller,1405580621 +22374,27238,absurd,1436183540 +22374,27238,dark humor,1436183540 +22374,27238,offensive,1436183540 +22374,91976,philosophical,1396131871 +22374,91976,unrealistic,1396131871 +22374,134170,80s,1437728947 +22374,134170,nazi,1437728947 +22374,134170,parody,1437728947 +22388,260,classic,1438372899 +22388,260,EPIC,1438372890 +22388,260,must see,1438372910 +22388,36519,dumb fun,1438373305 +22388,36519,high octane,1438373305 +22388,36519,passable sequel,1438373305 +22413,4973,paris,1434898687 +22413,4973,quirky,1434898687 +22413,4973,romance,1434898687 +22422,89305,adolescence,1320935026 +22422,89305,cringe,1320935043 +22422,89305,friendship,1320935045 +22422,89305,holiday,1320935040 +22422,89305,UK culture,1320935036 +22444,858,gangster,1435661036 +22444,858,italian mafia,1435661050 +22444,1193,classic,1435661230 +22444,1193,crazy,1435661190 +22444,1193,jack nicholson,1435661201 +22444,1193,mental hospital,1435661195 +22444,1193,powerful ending,1435661213 +22444,1193,psychological,1435661239 +22444,1617,Crime,1435661142 +22444,1617,Kevin Spacey,1435661155 +22444,3949,addiction,1435661108 +22444,3949,drugs,1435661105 +22444,58559,Batman,1435661072 +22444,58559,Christian Bale,1435661080 +22454,260,classic sci-fi,1432055236 +22454,260,robots,1432055226 +22454,260,space action,1432055194 +22454,2571,computers,1433113886 +22454,2571,fantasy,1433113892 +22454,2571,hackers,1433113880 +22454,2571,sci-fi,1433113876 +22454,2571,technology,1433113883 +22454,27311,Batman,1433113755 +22454,27311,Batman Beyond,1433113782 +22454,27311,DC Universe,1433113776 +22454,27311,Paul Dini,1433113769 +22454,27311,Terry Mcginness,1433113762 +22454,33794,Action,1433113851 +22454,33794,batman,1433113811 +22454,33794,Christian Bale,1433113859 +22454,33794,Comic Book,1433113830 +22454,33794,DC,1433113846 +22454,33794,superhero,1433113864 +22454,98124,Animation,1433113723 +22454,98124,Batman,1433113716 +22454,98124,DC,1433113721 +22454,98124,frank miller,1433113741 +22454,98124,Gotham,1433113719 +22456,46970,filme1,1171112053 +22459,719,Andie MacDowell,1291209835 +22459,719,clones,1291209844 +22459,719,Michael Keaton,1291209833 +22459,3752,Jim Carrey,1291209909 +22459,3752,Renée Zellweger,1291209911 +22459,3948,Ben Stiller,1291209880 +22459,3948,comedy,1291209869 +22459,3948,Owen Wilson,1291209860 +22459,3948,Robert De Niro,1291209858 +22459,5816,Alan Rickman,1291209791 +22459,97913,cameos,1355114767 +22459,97913,video games,1355114757 +22472,296,crime,1438390235 +22472,296,multiple storylines,1438390235 +22472,296,non-linear,1438390235 +22472,318,corruption,1437455594 +22472,318,redemption,1437455594 +22472,318,wrongful imprisonment,1437455594 +22485,70286,unique,1446650200 +22496,6378,action,1452634124 +22496,6378,fun,1452634131 +22496,6378,remake,1452634120 +22496,117176,biography,1452634459 +22496,117176,True story,1452634464 +22496,134130,matt damon,1452633891 +22496,134853,Animation,1452634220 +22496,134853,creative,1452634217 +22496,134853,funny,1452634227 +22496,134853,Pixar,1452634213 +22496,140110,Robert De Niro,1452634340 +22496,140715,true story,1452633774 +22522,14,Historical opinion,1188683467 +22522,261,slick novel,1188683073 +22522,362,Bad Remake,1188683415 +22522,372,Slick adventure,1188683353 +22522,914,Grand Musical,1188683203 +22522,1120,Historical grit,1188683261 +22522,1179,Crime,1188683404 +22522,1179,mobster,1188683404 +22522,1188,Dance comedy,1188683368 +22522,1242,historical lackluster,1188682969 +22522,1267,Sinatra,1188683190 +22522,1302,historical fantasy,1188682950 +22522,1377,Rehash Sequel,1188682918 +22522,1729,offbeat subculture detective action,1188683055 +22522,1747,political repression,1188683096 +22522,1953,Action,1188683307 +22522,1953,Hackman,1188683307 +22522,1953,Mob,1188683307 +22522,1994,Ghosts,1188683327 +22522,2336,historical epic,1188683216 +22522,2424,sequel boredom,1188683141 +22522,2701,slick adventure TV remake,1188683123 +22522,2947,Bond James Bond,1188683020 +22522,3081,Slick tale,1188682988 +22522,3101,Slick pychodrama,1188682930 +22522,3785,Comedy,1188683487 +22522,3785,Horrors,1188683487 +22522,3911,Second City comedy,1188683162 +22522,6934,Sequel Bomb,1188683436 +22522,7147,Fantasy world,1188683388 +22527,260,action,1439802090 +22527,260,Science Fiction,1439802097 +22527,260,space,1439802108 +22535,296,best performance: samuel l. jackson as jules winnfield,1423461113 +22535,296,drama,1423461113 +22535,296,quentin tarantino,1423461113 +22535,527,drama,1423461019 +22535,527,World War II,1423461022 +22535,2028,Steven Spielberg,1423460935 +22535,2028,Tom Hanks,1423460931 +22535,2028,war,1423460926 +22546,14,Oliver Stone,1187220013 +22546,237,Debra Winger,1187219947 +22546,1179,Angelica Huston,1187219971 +22546,1244,Woody Allen,1187219983 +22546,2641,Christopher Reeve,1187220065 +22546,3785,silly fun,1187220048 +22546,5377,Hugh Grant,1187219889 +22546,5679,Naomi Watts,1187220029 +22546,6934,Keanu Reeves,1187219999 +22546,7147,Tim Burton,1187219906 +22548,260,sci-fi,1437580661 +22548,260,"sci-fi, space",1437580668 +22561,665,Emir Kusturica,1302302676 +22561,665,Kusturica,1302302669 +22561,665,Lazar Ristovski,1302302503 +22561,665,Miki Manojlovic,1302302536 +22561,665,World War II,1302302690 +22561,665,Yugoslavia,1302302683 +22561,902,Audrey Hepburn,1402073224 +22561,3822,black and white,1367909996 +22561,4262,Al Pacino,1302189486 +22561,5213,christianity,1367910083 +22561,5498,black and white,1367909996 +22561,5516,Vincent Cassel,1302302968 +22561,6260,christianity,1367910082 +22561,6630,christianity,1367910083 +22561,6981,christianity,1367910083 +22561,7260,christianity,1367910083 +22561,26003,black and white,1367909996 +22561,26793,Lazar Ristovski,1302302630 +22561,26793,Miki Manojlovic,1302302606 +22561,34246,Cédric Klapisch,1302453657 +22561,53352,Vincent Cassel,1326124303 +22561,66762,Karine Viard,1302453592 +22561,66762,Romain Duris,1302453527 +22561,69027,Jean Dujardin,1283957065 +22561,69027,Michel Hazanavicius,1283957063 +22561,71535,Bill Murray,1334572376 +22561,78895,Emir Kusturica,1283326440 +22561,87413,Albert Dupontel,1320073983 +22561,97699,Albert Dupontel,1350853249 +22595,3949,addiction,1443648268 +22595,3949,disturbing,1443648263 +22595,3949,drugs,1443648254 +22595,6874,blood,1450130094 +22595,6874,imdb top 250,1450130120 +22595,6874,nonlinear,1450130112 +22595,6874,Quentin Tarantino,1450130101 +22595,6874,strong female lead,1450130127 +22595,6874,visually appealing,1450130137 +22595,55908,intellectual,1437082852 +22595,55908,philosophical,1437082851 +22595,55908,thought-provoking,1437082844 +22599,260,classic sci-fi,1434428307 +22599,260,space adventure,1434428321 +22607,440,president,1231333502 +22611,1464,Lynch,1211392297 +22611,1464,mistery,1211392293 +22611,1464,Nudity (Topless - Notable),1211392301 +22659,260,Star Wars,1435613914 +22684,251,horror,1152657269 +22684,915,Humphrey Bogart,1152656486 +22684,8974,hilarious,1152657446 +22684,35957,thriller,1153764140 +22695,3365,western,1312741692 +22705,1416,musical,1189015809 +22705,2409,Drama,1189015845 +22705,2423,christmas,1189015801 +22705,51662,action,1189016172 +22705,53953,horror,1189016164 +22739,34411,oil,1234559602 +22757,260,good vs evil,1440642311 +22757,260,inspiring,1440642334 +22759,260,oldie but goodie,1436808452 +22759,527,amazing,1436808901 +22759,1704,genius,1436808862 +22759,2762,great ending,1436808830 +22759,2762,mindfuck,1436808839 +22768,2730,Oscar (Best Cinematography),1329626525 +22788,50,Kevin Spacey,1393019956 +22788,50,twist ending,1393019958 +22788,329,Patrick Stewart,1328471804 +22788,329,Star Trek,1328471808 +22788,1213,mafia,1390687675 +22788,1213,Martin Scorsese,1390687672 +22788,1213,Robert De Niro,1390687665 +22788,5618,anime,1416069942 +22788,5618,Japan,1416070510 +22788,5618,Studio Ghibli,1416069950 +22788,90866,cinematography,1335605243 +22788,90866,Martin Scorsese,1335605235 +22788,90866,orphans,1335605252 +22788,90866,Paris,1335605254 +22788,90866,visually appealing,1335605258 +22788,91325,Max von Sydow,1335459637 +22788,91325,sentimental,1335459615 +22788,91325,Tom Hanks,1335459645 +22788,103042,alien invasion,1385140958 +22788,103042,cinematography,1385140979 +22788,103042,great cast,1385140955 +22788,103042,long fight scenes,1385140967 +22788,103042,shaky camera,1385140951 +22788,103042,visually appealing,1385140970 +22788,103384,About half way through it started turning into a live action cartoon.,1389482992 +22788,103384,Funny,1389482997 +22788,103384,Johnny Depp,1389483001 +22788,103384,long,1389483008 +22788,103384,social commentary,1389483013 +22788,103384,Western,1389482989 +22788,103384,William Fichtner,1389482985 +22788,109487,Christopher Nolan,1415813808 +22788,109487,time-travel,1415813821 +22883,223,black and white,1199399361 +22883,223,Directorial Debut,1199399403 +22883,223,low budget,1199399380 +22883,223,new jersey,1199399349 +22883,6957,drunkenness,1199399555 +22883,6957,Fuck,1199399555 +22883,6957,heist,1199399555 +22883,6957,midgets,1199399555 +22883,30707,boxing,1139997298 +22883,30707,drama,1139997298 +22883,34072,antarctica,1139185418 +22883,34072,cold,1139185418 +22883,34072,documentary,1139185418 +22883,34072,france,1139185418 +22883,34072,nature,1139185418 +22883,34072,white,1139185418 +22883,34162,bratpack,1137370327 +22883,34162,comedy,1137370327 +22883,34162,owenWilson,1137370327 +22883,34162,vinceVaugh,1137370327 +22883,37830,anime,1146430097 +22883,37830,cgi,1146430105 +22883,37830,videogame,1146430102 +22883,41571,drama,1139185486 +22883,41571,geisha,1139185486 +22883,41571,history,1139185486 +22883,41571,japan,1139185486 +22883,41571,romance,1139185486 +22883,41571,ww2,1139185486 +22883,41571,wwii,1139185486 +22883,43869,feel good movie,1219145306 +22883,45728,dialogue driven,1199573372 +22883,45728,good dialogue,1199573372 +22883,56171,book adapation,1199399483 +22883,56171,book was better,1199399483 +22883,56171,children,1199399483 +22883,56171,fantasy world,1199399483 +22883,56171,steampunk,1199399483 +22883,56171,trilogy,1199399483 +22883,59615,adventure,1211810881 +22883,59615,indiana jones,1211810902 +22883,59615,sequel,1211810902 +22885,260,classic,1436112722 +22885,260,cult,1436112727 +22885,260,ok,1436112732 +22901,260,sci-fi,1442237180 +22901,260,space action,1442237191 +22903,260,action,1439793007 +22903,260,sci-fi,1439792984 +22930,348,Jennifer Tilly,1272828011 +22930,348,John Cusack,1272828008 +22930,348,New York City,1272827992 +22930,348,Oscar Nominee: Director,1272827995 +22930,4643,Futuristmovies.com,1272818519 +22930,4643,Helena Bonham Carter,1272818501 +22930,4643,Mark Wahlberg,1272818512 +22930,4643,on dvr,1272818522 +22930,4643,Post apocalyptic,1272818498 +22930,72998,blue,1272835487 +22945,104,Adam Sandler,1441748600 +22945,104,sports,1441748603 +22945,104,Underdog,1441748611 +22945,994,brothers,1441748081 +22945,994,food,1441748067 +22945,994,immigrants,1441748083 +22945,994,kitchen,1441748076 +22945,994,restaurant,1441748070 +22945,1208,Dark,1441747988 +22945,1208,disturbing,1441747982 +22945,1208,military,1441748007 +22945,1208,psychological,1441747992 +22945,1208,surreal,1441747984 +22945,1208,violent,1441748011 +22945,1214,atmospheric,1441747884 +22945,1214,dark,1441747901 +22945,1214,futuristic,1441747878 +22945,1214,horror,1441747881 +22945,1214,Ridley Scott,1441747874 +22945,1252,atmospheric,1441748383 +22945,1252,bleak,1441748405 +22945,1252,complicated,1441748408 +22945,1252,cynical,1441748379 +22945,1252,dark,1441748377 +22945,1252,incest,1441748418 +22945,1252,masterpiece,1441748410 +22945,1252,mystery,1441748399 +22945,1252,noir thriller,1441748415 +22945,1252,Roman Polanski,1441748387 +22945,1252,somber,1441748402 +22945,1252,twists & turns,1441748396 +22945,1263,friendship,1441748029 +22945,1292,Peter Sellers,1441748100 +22945,1292,political satire,1441748115 +22945,1292,satire,1441748104 +22945,1292,subtle,1441748108 +22945,1517,Elizabeth Hurley,1441748518 +22945,1517,Mike Myers,1441748506 +22945,1517,parody,1441748512 +22945,1517,spoof,1441748509 +22945,1704,Ben Affleck,1441748477 +22945,1704,genius,1441748492 +22945,1704,heartwarming,1441748486 +22945,1704,math,1441748459 +22945,1704,mathematics,1441748462 +22945,1704,Robin Williams,1441748474 +22945,2288,aliens,1441747826 +22945,2288,horror,1441747829 +22945,2288,John Carpenter,1441747836 +22945,2288,paranoia,1441747849 +22945,2571,cyberpunk,1441748561 +22945,2571,dystopia,1441748559 +22945,2571,philosophical,1441748555 +22945,2571,virtual reality,1441748557 +22945,4226,nonlinear,1441748346 +22945,6440,baffling,1441748758 +22945,6440,Coen Brothers,1441748734 +22945,6440,disturbing,1441748747 +22945,6440,Enigmatic,1441748736 +22945,6440,hallucinatory,1441748739 +22945,6440,John Turturro,1441748750 +22945,6440,menacing,1441748753 +22945,6440,stylized,1441748743 +22945,6440,wry,1441748741 +22945,27773,brutal,1441748312 +22945,27773,depressing,1441748270 +22945,27773,disturbing,1441748264 +22945,27773,hallucinatory,1441748286 +22945,27773,incest,1441748277 +22945,27773,Korea,1441748273 +22945,27773,korean,1441748304 +22945,27773,paranoid,1441748296 +22945,27773,revenge,1441748300 +22945,27773,stylized,1441748319 +22945,27773,surreal,1441748283 +22945,27773,tense,1441748290 +22945,27773,vengeance,1441748316 +22945,33154,business,1441747793 +22945,33154,corruption,1441747787 +22945,33154,economics,1441747798 +22945,55276,disillusionment,1441915746 +22945,55276,great acting,1441915739 +22945,93721,documentary,1441747941 +22945,93721,minimalist,1441747945 +22945,109374,cinematography,1441748211 +22945,109374,odd sense of humor,1441748229 +22945,109374,quirky,1441748217 +22945,109374,visually appealing,1441748214 +22949,260,sci-fi,1435749150 +22949,260,Space,1435749132 +22963,260,SF,1435776103 +22963,296,atmospheric,1437933479 +22963,296,crime,1437933479 +22963,296,surreal,1437933479 +22969,260,sci-fi,1439756984 +22969,260,space action,1439757003 +22992,8950,Christian Bale,1261944566 +22992,8950,guilt,1261944568 +22992,8950,schizophrenia,1261944554 +22992,8950,twist ending,1261944550 +22993,555,dark comedy,1357714175 +22993,593,psychology,1357714261 +22993,1961,heartwarming,1357714296 +22993,2502,cult film,1357714312 +22993,2762,twist ending,1357714265 +22993,4226,twist ending,1357714324 +22993,6953,nonlinear,1357713488 +22993,6953,slow,1357713476 +22993,8873,based on a true story,1357714253 +22993,8873,social commentary,1357714250 +22993,30810,dry,1357713941 +22993,30810,quiet,1357713931 +22993,30810,slow,1357713926 +22993,46578,dark comedy,1357714124 +22993,55280,heartwarming,1357714359 +22993,55280,quirky,1357714336 +22993,55820,coen brothers,1357714178 +22993,63082,nonlinear,1357714203 +22993,63876,civil rights,1357713758 +22993,63876,thought-provoking,1357713746 +22993,63876,touching,1357713736 +22993,63876,true story,1357713683 +22993,79091,funny,1357713564 +22993,79091,heartwarming,1357713555 +22993,79091,warm,1357713543 +22993,86781,disturbing,1357714234 +22993,86781,Middle East,1357714224 +22993,86781,nonlinear,1357713656 +22993,86781,slow,1357713646 +22993,86781,Unexpected Ending,1357713635 +22993,94959,slow,1357713907 +22993,99114,Quentin Tarantino,1357714217 +22993,99677,boring,1357714026 +22993,99677,disjointed,1357714034 +22993,99677,no story,1357714039 +22993,99677,slow,1357714023 +22998,5218,hfghfg,1148996152 +23003,2193,adventure,1340407113 +23003,2193,fantasy,1340407122 +23003,2193,magic,1340406962 +23003,2193,predictable,1340407103 +23003,2193,sword and sorcery,1340406965 +23003,89745,superhero,1340406147 +23003,89745,visually appealing,1340406189 +23003,93326,Chelsea Handler,1340411962 +23020,260,classic,1443239693 +23020,260,George Lucas,1443239702 +23020,260,original trilogy,1443239714 +23020,260,starwars,1443239721 +23021,161,confrontational,1434726987 +23021,161,spy thriller,1434726987 +23021,161,war,1434726987 +23021,260,classic,1434726610 +23021,260,Science Fiction,1434726598 +23025,185,Sandra Bullock,1291565079 +23025,1231,space,1291566349 +23025,1291,archaeology,1291565046 +23025,1527,sci-fi,1291565091 +23025,2858,Kevin Spacey,1251327262 +23025,3827,Clint Eastwood,1251327229 +23025,64614,Clint Eastwood,1251327197 +23025,72641,sandra bullock,1291565148 +23025,79293,Angelina Jolie,1291564578 +23025,80219,Steven Seagal,1291564783 +23031,260,fantasy,1432125542 +23031,260,Star Wars,1432125524 +23036,4367,boring,1178939005 +23036,7360,Zombie Movie,1179009780 +23036,7360,zombies,1179009776 +23036,7387,ZOMBIES,1179009789 +23036,8874,zombies,1179009768 +23036,41566,wanted to smack those kids,1178938989 +23062,112552,Damien Chazelle,1445833857 +23062,112552,good music,1445833854 +23062,112552,jazz,1445833834 +23062,112552,music,1445833826 +23062,112552,musicians,1445833837 +23062,112552,school drama,1445833851 +23066,318,classic,1378213771 +23066,318,friendship,1378213775 +23066,318,inspirational,1378213777 +23066,318,Morgan Freeman,1378213759 +23066,318,prison,1378213794 +23066,318,prison escape,1378213797 +23066,318,reflective,1378213783 +23066,318,Stephen King,1378213790 +23066,318,thought-provoking,1378213780 +23066,318,twist ending,1378213766 +23085,260,all-time great,1434721879 +23085,260,classic sci-fi,1434721847 +23085,260,good science fictional technology,1434721910 +23086,2275,cheesy,1157434504 +23110,27834,cinematography,1137444530 +23110,27834,father dies,1137444531 +23110,27834,little dialogue,1137444530 +23116,1089,neo-noir,1155596844 +23122,3629,Classic,1151623124 +23122,4262,high camp,1157770035 +23122,4914,Perfect,1140469964 +23122,41569,Better than expected,1139686702 +23123,260,have not seen it,1437567487 +23123,260,haven't seen it,1437567520 +23137,1,funny,1256122173 +23137,1,Pixar,1256122166 +23137,1,witty,1256122194 +23137,19,comedy,1242671281 +23137,19,Jim Carrey,1242671284 +23137,19,over the top,1256122377 +23137,153,Batman,1256121414 +23137,153,Jim Carrey,1256121390 +23137,153,rubber nipples,1256121419 +23137,293,assassin,1242674066 +23137,293,disturbing,1242674063 +23137,293,Gary Oldman,1242674035 +23137,293,hitman,1242674045 +23137,293,Jean Reno,1242674041 +23137,293,Natalie Portman,1242674043 +23137,293,quirky,1242674048 +23137,293,visceral,1242674053 +23137,296,Bruce Willis,1242673964 +23137,296,Quentin Tarantino,1242673976 +23137,296,quirky,1242673973 +23137,296,Samuel L. Jackson,1242673968 +23137,296,stylized,1242673978 +23137,296,violence,1242674001 +23137,316,aliens,1242673610 +23137,316,Egypt,1242673652 +23137,316,sci-fi,1242673641 +23137,316,space,1242673643 +23137,316,time travel,1242673645 +23137,377,Dennis Hopper,1242673715 +23137,377,Keanu Reeves,1242673719 +23137,377,Sandra Bullock,1242673722 +23137,377,tense,1242673725 +23137,377,Thriller,1242673727 +23137,377,visceral,1242673738 +23137,380,Arnold Schwarzenegger,1242672574 +23137,380,comedy,1242672581 +23137,380,Eliza Dushku,1242672584 +23137,380,funny,1242672587 +23137,380,James Cameron,1242672590 +23137,380,quirky,1242672593 +23137,380,spies,1242672596 +23137,380,terrorism,1242672599 +23137,592,atmospheric,1256121121 +23137,592,Batman,1256121123 +23137,592,dark,1256121126 +23137,592,film noir,1256121128 +23137,592,Jack Nicholson,1256121117 +23137,592,Michael Keaton,1256121143 +23137,592,stylized,1256121147 +23137,592,Tim Burton,1256121114 +23137,608,dark comedy,1249371273 +23137,608,quirky,1249371271 +23137,608,violent,1249371283 +23137,784,black comedy,1242671300 +23137,784,Comedy,1242671303 +23137,784,goofy,1242671337 +23137,784,Jack Black,1242671305 +23137,784,Jim Carrey,1242671310 +23137,784,Matthew Broderick,1242671318 +23137,784,misunderstood,1256122456 +23137,784,stalker,1242671324 +23137,1036,Bruce Willis,1242673277 +23137,1036,humorous,1242673287 +23137,1036,lone hero,1242673291 +23137,1036,tense,1242673296 +23137,1036,thriller,1242673304 +23137,1036,visceral,1242673302 +23137,1073,Fantasy,1242671859 +23137,1073,Gene Wilder,1242671863 +23137,1073,Quotable,1242671881 +23137,1073,roald dahl,1242671887 +23137,1073,surreal,1242671889 +23137,1240,androids,1242672756 +23137,1240,Arnold Schwarzenegger,1242672748 +23137,1240,cyborgs,1242672752 +23137,1240,future,1242672764 +23137,1240,great soundtrack,1242672766 +23137,1240,James Cameron,1242672777 +23137,1240,robots,1242672779 +23137,1240,sci-fi,1242672783 +23137,1240,time travel,1242672787 +23137,1240,violent,1242672790 +23137,1240,visceral,1242672795 +23137,1270,Christopher Lloyd,1256121286 +23137,1270,comedy,1256121272 +23137,1270,Michael J. Fox,1256121294 +23137,1270,quirky,1256121298 +23137,1270,time travel,1256121267 +23137,1377,batman,1256121718 +23137,1377,Danny DeVito,1256121714 +23137,1377,Michael Keaton,1256121735 +23137,1377,Tim Burton,1256121705 +23137,1562,Alicia Silverstone,1256120560 +23137,1562,Arnold Schwarzenegger,1256120570 +23137,1562,bad acting,1256120636 +23137,1562,bad plot,1256120690 +23137,1562,bad science,1256120690 +23137,1562,bad script,1256120690 +23137,1562,Chris O'Donnell,1256120605 +23137,1562,George Clooney,1256120584 +23137,1562,soundtrack,1256120715 +23137,1562,unlikeable characters,1256120690 +23137,1663,Bill Murray,1242673524 +23137,1663,comedy,1242673553 +23137,1663,John Candy,1242673529 +23137,1676,campy,1242673577 +23137,1676,future,1242673581 +23137,1676,hilarious,1242673585 +23137,1676,Paul Verhoeven,1242673591 +23137,1676,satire,1242673596 +23137,1676,space,1242673599 +23137,1676,witty,1242673593 +23137,1682,dark comedy,1242672539 +23137,1682,fantasy,1242672542 +23137,1682,Jim Carrey,1242672534 +23137,1682,original plot,1242672546 +23137,1682,philosophy,1242672549 +23137,1682,small town,1242672554 +23137,1682,surveillance,1242672564 +23137,1682,witty,1242672558 +23137,1779,Dustin Hoffman,1242673696 +23137,1779,frightening,1242673666 +23137,1779,mind,1242673669 +23137,1779,Samuel L. Jackson,1242673671 +23137,1779,sci-fi,1242673676 +23137,1779,sea bottom,1242673681 +23137,1923,Ben Stiller,1242673346 +23137,1923,Cameron Diaz,1242673350 +23137,1923,comedy,1242673352 +23137,1923,fun,1242673358 +23137,1923,goofy,1242673362 +23137,1923,hilarious,1242673368 +23137,2005,adventure,1242670764 +23137,2005,funny classic,1242670773 +23137,2005,pirates,1242670781 +23137,2174,claymation,1256121931 +23137,2174,comedy,1256121939 +23137,2174,Michael Keaton,1256121902 +23137,2174,Tim Burton,1256121911 +23137,2174,weird,1256121943 +23137,2529,long and repetitive,1343942368 +23137,2529,nudity,1343942345 +23137,2529,social commentary,1343942351 +23137,2700,funny,1242673755 +23137,2700,musical,1242673760 +23137,2700,parody,1242673762 +23137,2700,quirky,1242673766 +23137,2700,sarcasm,1242673768 +23137,2700,satire,1242673770 +23137,2700,south park,1242673774 +23137,2716,Bill Murray,1256121211 +23137,2716,comedy,1256121214 +23137,2716,Dan Aykroyd,1256121217 +23137,2716,ghosts,1256121226 +23137,2716,Sigourney Weaver,1256121238 +23137,2791,funny,1256122325 +23137,2791,Leslie Nielsen,1256122308 +23137,2791,over the top,1256122315 +23137,2791,Parody,1256122318 +23137,2916,Arnold Schwarzenegger,1242672627 +23137,2916,conspiracy,1242672634 +23137,2916,mars,1242672644 +23137,2916,memory,1242672647 +23137,2916,murder,1242672650 +23137,2916,mutants,1242672655 +23137,2916,original plot,1242672659 +23137,2916,Paul Verhoeven,1242672676 +23137,2916,Sci Fi,1242672662 +23137,2916,space travel,1242672665 +23137,2916,virtual reality,1242672670 +23137,2959,atmospheric,1242674092 +23137,2959,Brad Pitt,1242674089 +23137,2959,dark comedy,1242674095 +23137,2959,disturbing,1242674100 +23137,2959,Edward Norton,1242674084 +23137,2959,mental illness,1242674102 +23137,2959,psychology,1242674108 +23137,2959,quirky,1242674109 +23137,2959,surreal,1242674118 +23137,2959,twist ending,1242674121 +23137,2959,violence,1242674114 +23137,2985,corruption,1242672877 +23137,2985,dystopia,1242672873 +23137,2985,Paul Verhoeven,1242672825 +23137,2985,Peter Weller,1242672828 +23137,2985,sci-fi,1242672835 +23137,2985,soundtrack,1242672894 +23137,2985,superhero,1242672860 +23137,2987,Christopher Lloyd,1242672333 +23137,2987,private detective,1242672341 +23137,2987,Roger Rabbit,1242672346 +23137,2987,scary,1242672351 +23137,2987,toontown,1242672354 +23137,3176,disturbing,1242673469 +23137,3176,Gwyneth Paltrow,1242673471 +23137,3176,Matt Damon,1242673474 +23137,3176,murder,1242673476 +23137,3176,obsession,1242673479 +23137,3176,Philip Seymour Hoffman,1242673491 +23137,3176,psychology,1242673485 +23137,3176,serial killer,1242673483 +23137,3527,aliens,1242672723 +23137,3527,Arnold Schwarzenegger,1242672710 +23137,3527,survival,1242672735 +23137,3527,violent,1242672739 +23137,3793,action,1242671800 +23137,3793,future,1242671807 +23137,3793,genetics,1242671809 +23137,3793,marvel,1242671815 +23137,3793,mutants,1242671813 +23137,3793,sci-fi,1242671823 +23137,3793,superhero,1242671837 +23137,3868,Leslie Nielsen,1256122349 +23137,3868,parody,1256122354 +23137,3994,Bruce Willis,1242672479 +23137,3994,eerie,1242672485 +23137,3994,melancholy,1242672493 +23137,3994,mindfuck,1242672491 +23137,3994,Samuel L. Jackson,1242672494 +23137,3994,somber,1242672500 +23137,3994,superhero,1242672506 +23137,3994,twist ending,1242672502 +23137,3994,understated,1242672510 +23137,3994,unique,1242672514 +23137,4006,giant robots,1242672611 +23137,4006,robots,1242672616 +23137,4011,Brad Pitt,1242673789 +23137,4011,comedy,1242673793 +23137,4011,quirky,1242673799 +23137,4226,Mindfuck,1249371427 +23137,4226,paranoid,1249371433 +23137,4255,funny,1256122204 +23137,4255,over the top,1256122229 +23137,4255,Tom Green,1242671217 +23137,4255,weird,1256122213 +23137,4255,witty,1256122257 +23137,4816,ben stiller,1242671711 +23137,4816,Funny as hell,1242671715 +23137,4816,goofy,1242671721 +23137,4816,hysterical,1242671724 +23137,4816,quirky,1242671740 +23137,4816,spoof,1242671746 +23137,4816,Will Ferrell,1242671738 +23137,4855,Clint Eastwood,1242673204 +23137,4855,crime,1242673208 +23137,4855,Dirty Harry,1242673216 +23137,4855,gritty,1242673222 +23137,4855,harsh,1242673232 +23137,4855,tense,1242673246 +23137,4855,visceral,1242673240 +23137,4878,dreamlike,1249371960 +23137,4878,hallucinatory,1249371965 +23137,4878,imaginary friend,1249371962 +23137,4878,mindfuck,1249371954 +23137,4878,surreal,1249371951 +23137,4878,thought-provoking,1249371948 +23137,4878,time travel,1249371943 +23137,5349,Kirsten Dunst,1256122055 +23137,5349,Spiderman,1256122049 +23137,5349,Tobey Maguire,1256122064 +23137,5502,ridiculous,1242671057 +23137,5502,silly,1242671060 +23137,5502,stupid,1242671072 +23137,5832,Christianity,1282126390 +23137,5832,evangelical christian trash,1282126380 +23137,5832,Kirk Cameron,1282126368 +23137,5832,propaganda,1282126374 +23137,6541,Peta Wilson,1256121036 +23137,6541,Sean Connery,1256121040 +23137,6541,steampunk,1256121043 +23137,6541,vampires,1256121054 +23137,6874,martial arts,1242673928 +23137,6874,Quentin Tarantino,1242673920 +23137,6874,quirky,1242673930 +23137,6874,stylized,1242673934 +23137,6874,violent,1242673943 +23137,6874,visceral,1242673940 +23137,7163,Aaron Eckhart,1256663396 +23137,7163,soundtrack,1256663384 +23137,7438,quirky,1242795844 +23137,7438,revenge,1242795848 +23137,7438,stylized,1242795812 +23137,7438,violence,1242795812 +23137,8372,Bill Murray,1249371578 +23137,8372,funny,1256121095 +23137,8529,original plot,1242673452 +23137,8529,Tom Hanks,1242673443 +23137,8636,bad plot,1256122121 +23137,8636,bad script,1256122132 +23137,8636,Kirsten Dunst,1256122100 +23137,8666,bad acting,1256120795 +23137,8666,bad plot,1256120795 +23137,8666,bad science,1256120795 +23137,8666,bad script,1256120795 +23137,8666,Halle Berry,1256120749 +23137,8666,unlikeable characters,1256120795 +23137,8798,assassin,1261260893 +23137,8798,bad acting,1261260877 +23137,8798,bad ending,1261260877 +23137,8798,bad movie,1261260877 +23137,8798,bad plot,1261260877 +23137,8798,Tom Cruise,1261260801 +23137,32587,Bruce Willis,1242673861 +23137,32587,Crime,1242673867 +23137,32587,dark,1242673871 +23137,32587,Quentin Tarantino,1242673875 +23137,32587,Sci-Fi,1242673879 +23137,32587,stylized,1242673884 +23137,32587,superhero,1242673886 +23137,33794,batman,1256121996 +23137,33794,dark,1256121993 +23137,33794,Michael Caine,1256122003 +23137,34111,Richard Dawkins,1256120368 +23137,34111,Sam Harris,1256120378 +23137,43919,Alyson Hannigan,1242671233 +23137,43919,comedy,1242671239 +23137,43919,over the top,1256122290 +23137,43919,parody,1242671245 +23137,43919,spoof,1242671248 +23137,43919,weird,1256122283 +23137,44058,Alison Lohman,1256120834 +23137,44195,Aaron Eckhart,1242673424 +23137,44195,corporate greed,1242673385 +23137,44195,dark comedy,1242673384 +23137,44195,dark humor,1242673388 +23137,44195,funny,1242673390 +23137,44195,satire,1242673398 +23137,44195,social commentary,1242673401 +23137,44788,documentary,1242673317 +23137,44788,social commentary,1242673333 +23137,50794,frantic,1242673815 +23137,50794,hitman,1242673818 +23137,50794,humorous,1242673822 +23137,50794,murder,1242673825 +23137,50794,paranoid,1242673828 +23137,50794,tense,1242673838 +23137,50794,twist ending,1242673832 +23137,50794,Violently silly,1242673835 +23137,53464,Jessica Alba,1256663433 +23137,55257,broad satire,1242670689 +23137,55257,Dave Foley,1256120514 +23137,55257,over the top,1256122388 +23137,55257,Zack Ward,1256122431 +23137,55908,entirely dialogue,1251490836 +23137,55908,immortality,1249371598 +23137,55908,philosophical,1251490825 +23137,55908,thought-provoking,1249371594 +23137,56174,plot holes,1249371098 +23137,56174,religion,1249371102 +23137,56908,Mandy Moore,1242670719 +23137,58559,Aaron Eckhart,1249371804 +23137,58559,Gary Oldman,1249371717 +23137,58559,Heath Ledger,1249371723 +23137,58559,Michael Caine,1249371725 +23137,59295,bad science,1249371521 +23137,59295,conspiracy theory,1249371517 +23137,59295,creationism,1249371513 +23137,59295,onesided,1249371493 +23137,59295,propaganda,1249371498 +23137,59295,religion,1249371501 +23137,59404,Aaron Eckhart,1256120424 +23137,59404,Jessica Alba,1256120428 +23137,59900,Adam Sandler,1242671767 +23137,59900,Israeli/Palestinian conflict,1256120915 +23137,59900,over the top,1256120897 +23137,60069,Animation,1242672421 +23137,60069,pixar,1242672430 +23137,60069,robots,1242672433 +23137,60069,Sci-Fi,1242672437 +23137,60069,space,1242672439 +23137,64497,abrubt end,1249396628 +23137,64497,Jennifer Connelly,1249396619 +23137,64497,religious overtones,1249396693 +23137,64497,remake,1249396631 +23137,68157,alternate history,1256119974 +23137,68157,Brad Pitt,1256120043 +23137,68157,dialogue,1256119971 +23137,68157,gratuitous violence,1256119984 +23137,68157,great acting,1256119986 +23137,68157,Nazis,1256120003 +23137,68157,Quentin Tarantino,1256119998 +23137,68157,soundtrack,1256120031 +23137,68157,tense,1256120074 +23137,68358,bad movie,1256119388 +23137,68358,bad plot,1256119388 +23137,68358,bad science,1256119388 +23137,68358,bad script,1256119388 +23137,68358,bad story,1256119545 +23137,68358,Chris Pine,1256119492 +23137,68358,quick cuts,1256119392 +23137,68358,unlikeable characters,1256119388 +23137,68952,Alison Lohman,1256662990 +23137,68952,bad skeptic,1256663050 +23137,68952,engaging,1256663064 +23137,68952,Justin Long,1256663002 +23137,68952,old school horror,1256663010 +23137,69604,Evan Rachel Wood,1257796364 +23137,71520,Jennifer Garner,1288633813 +23137,71520,religion,1288633879 +23137,71520,Ricky Gervais,1288633816 +23137,71530,bad ending,1256662875 +23137,71530,bad plot,1256662875 +23137,71530,bad science,1256662875 +23137,71530,bad script,1256662888 +23137,73017,boring script,1267621392 +23137,73017,Jude Law,1267621387 +23137,73017,plot,1267621394 +23137,73017,Rachel McAdams,1267621380 +23137,73017,Robert Downey Jr.,1267621384 +23137,73017,Sherlock Holmes,1267975546 +23137,74458,boring,1287573949 +23137,74458,Predictable,1287573951 +23137,74458,too long,1287573952 +23137,74789,Alan Rickman,1331556117 +23137,74789,alternate reality,1331556112 +23137,74789,Anne Hathaway,1331556069 +23137,74789,Mia Wasikowska,1331556048 +23137,74789,Tim Burton,1331556056 +23137,74789,visually appealing,1331556110 +23137,74789,weird,1331556104 +23137,79132,Boring after 2/3,1288633616 +23137,79132,visually appealing,1288633659 +23141,87232,adapted from:comic,1378614626 +23141,87232,fantasy,1378614657 +23141,87232,Kevin Bacon,1378614631 +23141,87232,Marvel,1378614633 +23141,87232,superhero,1378614636 +23141,87232,wolverine cameo,1378614640 +23154,69685,Animation,1291263259 +23166,53972,good,1238230805 +23217,4878,cellar door,1450378029 +23217,4878,dreams,1450378041 +23217,4878,Parallel universe,1450378011 +23217,4878,time travel,1450378004 +23217,6188,comedy,1447859106 +23217,74228,confusing,1449680450 +23217,74228,rare,1449680462 +23217,74228,time loop,1449680441 +23217,116797,Computers,1447859160 +23253,81156,funny pranks,1300034118 +23253,81156,puking,1300034117 +23275,2324,Heartwarming,1447785651 +23275,79132,suspense,1447785683 +23275,109487,science fiction,1447785629 +23277,951,dialogue driven,1229504837 +23277,1357,music is key to story (not Musical genre),1229504716 +23277,2132,dialogue driven,1229504434 +23277,2858,cinematography: Conrad Hall,1229504976 +23277,2858,Oscar (Best Cinematography),1229505168 +23277,4183,independent film,1229505416 +23277,4236,cultural customs and traditions,1229504816 +23277,4236,documentary,1229504769 +23277,4236,homosexuality,1229504816 +23277,4236,social commentary,1229504784 +23277,6195,WRITER'S LIFE,1229505365 +23277,7932,addiction,1229505451 +23277,7932,documentary,1229504859 +23277,27878,prostitution,1229504877 +23282,471,Comedy,1188280075 +23282,471,Drama,1188280075 +23282,471,Fantasy,1188280075 +23282,471,Romance,1188280075 +23282,628,Crime,1188280098 +23282,628,Drama,1188280098 +23282,628,Thriller,1188280098 +23282,852,Comedy,1188280089 +23282,852,Drama,1188280089 +23282,852,Romance,1188280089 +23282,1242,Action,1188280078 +23282,1242,Drama,1188280078 +23282,1242,War,1188280078 +23282,1302,drama,1188280059 +23282,1377,Action,1188280052 +23282,1377,Crime,1188280052 +23282,1377,Fantasy,1188280052 +23282,1377,Romance,1188280052 +23282,1377,Thriller,1188280052 +23282,3081,Fantasy,1188280090 +23282,3081,Horror,1188280090 +23282,3081,Mystery,1188280090 +23282,3081,Romance,1188280090 +23282,4896,Adventure,1188280077 +23282,4896,Children,1188280077 +23282,4896,Fantasy,1188280077 +23317,260,sci-fi,1441737215 +23317,260,Science Fiction,1441737231 +23317,1198,adventure,1441737274 +23318,260,sci-fi,1441823722 +23318,260,terrestrial,1441823701 +23319,441,Linklater films,1414876821 +23332,2607,coming of age,1443734486 +23332,2607,coming out,1443734488 +23332,2607,gay,1443734483 +23332,2607,queer,1443734491 +23332,5072,homage,1355623593 +23332,7034,coming of age,1443734469 +23332,7034,homosexuality,1443734462 +23332,7034,lesbian,1443734464 +23332,7034,sexuality,1443734472 +23332,30848,writers,1355534005 +23332,36462,anti-climatic ending,1333254850 +23332,36462,foriegn,1333254862 +23332,36462,zombies,1333254853 +23332,61240,swedish,1355623560 +23332,74324,asperger's syndrome,1356394075 +23332,74324,autism,1356394075 +23332,74324,biopic,1356394074 +23332,74324,inspirational,1356394075 +23332,87306,homage,1355623622 +23332,98211,high school,1423820607 +23332,98211,shakespeare,1423820607 +23332,98211,teens,1423820607 +23332,107083,misfits,1433935897 +23332,107083,queer,1433935902 +23332,127148,rapeculture,1444740598 +23332,127154,documentary,1444740562 +23332,127154,masculinity,1444740555 +23332,129303,camp,1424928052 +23332,129303,child abuse,1427073990 +23332,129303,drama,1427073990 +23332,129303,foster care,1427073990 +23332,141749,lgbt,1451145744 +23332,141749,mtf,1451145741 +23332,141749,transgender,1451145735 +23332,143695,comingout,1444740482 +23332,143695,gay,1444740460 +23332,143695,romance,1444740476 +23332,146279,Gay,1452895800 +23332,146279,LGBT,1452895792 +23332,146279,Queer,1452895797 +23339,111,cult film,1393445735 +23339,541,dystopia,1393445543 +23339,778,black comedy,1393446543 +23339,778,dark comedy,1393446534 +23339,778,drugs,1393446545 +23339,778,social commentary,1393446532 +23339,778,surreal,1393446537 +23339,858,Mafia,1393446638 +23339,953,alternate reality,1393446117 +23339,1089,Quentin Tarantino,1393445852 +23339,1199,dark comedy,1393446283 +23339,1199,dystopia,1393446285 +23339,1208,Vietnam war,1393445765 +23339,1222,Stanley Kubrick,1393446313 +23339,1228,Martin Scorsese,1393445898 +23339,1228,oscar (best cinematography),1393445902 +23339,1228,Robert De Niro,1393445896 +23339,1230,Woody Allen,1393446001 +23339,1247,coming of age,1393445918 +23339,1247,quirky,1393445912 +23339,1250,Oscar (Best Actor),1393445806 +23339,1250,Oscar (Best Picture),1393445803 +23339,1276,classic,1393445815 +23339,1288,mockumentary,1393446352 +23339,1299,Oscar (Best Cinematography),1393445933 +23339,1303,adventure,1393446219 +23339,1303,India,1393446224 +23339,1303,Sean Connery,1393446222 +23339,3077,7n Up (series),1393446068 +23339,3077,Up series,1393446061 +23339,3468,Oscar (Best Cinematography),1393445571 +23339,3949,drugs,1393446242 +23339,3949,psychology,1393446246 +23339,3949,social commentary,1393446238 +23339,6818,disturbing,1393446453 +23339,6818,World War II,1393446462 +23339,7099,post-apocalyptic,1393445782 +23339,7099,Studio Ghibli,1393445780 +23339,31658,fantasy,1393446020 +23339,31658,Studio Ghibli,1393446023 +23339,60069,satire,1393446184 +23339,68954,Pixar,1393446049 +23339,78499,Pixar,1393446374 +23339,86345,insightful,1393445675 +23339,86345,Louis C.K.,1393445654 +23339,86345,stand-up comedy,1393445646 +23339,86347,witty,1393445941 +23339,86377,Louis C.K.,1393445710 +23339,92535,black comedy,1393445690 +23339,94959,Bruce Willis,1393446491 +23339,99114,Quentin Tarantino,1393445867 +23339,103539,drugs,1393447673 +23339,106920,loneliness,1393446403 +23339,106920,psychology,1393446405 +23339,106920,thought-provoking,1393446418 +23387,293,assassin,1333654933 +23387,293,disturbing,1333654937 +23387,293,drama,1333654939 +23387,293,friendship,1333654952 +23387,293,great acting,1333654925 +23387,293,hitman,1333654932 +23387,293,love story,1333654948 +23387,293,Natalie Portman,1333654919 +23387,293,organized crime,1333654946 +23387,293,quirky,1333654919 +23387,410,adolescence,1333654345 +23387,410,bittersweet,1328731452 +23387,410,black comedy,1328731491 +23387,410,mature kids,1328731441 +23387,410,moral ambiguity,1333654367 +23387,410,morally counterintuitive,1328218817 +23387,410,morbid comedy,1328731468 +23387,410,quirky,1328731462 +23387,410,sweet,1328731456 +23387,608,dark comedy,1328731727 +23387,608,dark humor,1328731759 +23387,608,quirky,1328731727 +23387,608,snow,1328731747 +23387,741,2D/3D hybrid Animation,1331305500 +23387,741,alternate reality,1333483377 +23387,741,anime,1331305509 +23387,741,artificial intelligence,1331305496 +23387,741,complex,1331305492 +23387,741,cyberpunk,1331305459 +23387,741,escape to reality,1333482926 +23387,741,great anime,1331305487 +23387,741,hackers,1331305487 +23387,741,philosophy,1331305486 +23387,750,black comedy,1328219358 +23387,750,dark comedy,1328219357 +23387,750,Quirky,1328219348 +23387,750,satire,1328219353 +23387,750,satirical,1328219352 +23387,750,Stanley Kubrick,1328219349 +23387,1101,homo-erotic,1328725244 +23387,1101,Tom Cruise,1328725221 +23387,1199,black comedy,1328219234 +23387,1199,dark comedy,1328219236 +23387,1199,fantasy,1328219256 +23387,1199,quirky,1328219259 +23387,1199,satire,1328219253 +23387,1199,sci-fi,1328219251 +23387,1199,surreal,1328219237 +23387,1199,thought-provoking,1328219249 +23387,1206,atmospheric,1331934037 +23387,1206,classic,1331934045 +23387,1206,controversial,1331934033 +23387,1206,disturbing,1331934029 +23387,1206,dystopia,1331934031 +23387,1206,prison,1331934049 +23387,1206,psychology,1331934021 +23387,1206,quirky,1331934018 +23387,1206,Stanley Kubrick,1331934028 +23387,1206,surreal,1331934053 +23387,1206,Surrealism,1331934038 +23387,1219,classic,1331933337 +23387,1222,anti-war,1331933777 +23387,1222,boot camp,1331933785 +23387,1222,Kubrick,1331933795 +23387,1222,political,1331933780 +23387,1222,Stanley Kubrick,1331933794 +23387,1222,want to see again,1331933801 +23387,1235,breaking the fourth wall,1328825468 +23387,1235,dark comedy,1328829176 +23387,1235,dark humor,1328829204 +23387,1235,hearthbreaking,1328829211 +23387,1235,heartwarming,1328829205 +23387,1235,humorous,1328829201 +23387,1235,irreverent,1328829174 +23387,1235,made me cry,1333907910 +23387,1235,May-December romance,1328829187 +23387,1235,original,1328829260 +23387,1235,quirky,1328829166 +23387,1235,seen more than once,1328829251 +23387,1235,suicide,1328829164 +23387,1235,suicide attempt,1328829164 +23387,1243,meta,1343764774 +23387,1243,metafiction,1343764779 +23387,1243,quirky,1343764796 +23387,1243,Shakespeare,1343764802 +23387,1243,smart comedy,1343764804 +23387,1243,surreal,1343764784 +23387,1483,creepy,1328821238 +23387,1625,atmospheric,1328039549 +23387,1625,David Fincher,1328039552 +23387,1625,mindfuck,1328039531 +23387,1625,unrealistic,1328039539 +23387,1653,beautiful,1329166997 +23387,1653,drama,1329166794 +23387,1653,dystopia,1329166792 +23387,1653,dystopic future,1329166788 +23387,1653,Ethan Hawke,1329166820 +23387,1653,intelligent,1329166804 +23387,1653,made me cry,1329166766 +23387,1653,powerful ending,1329166786 +23387,1653,sci-fi,1329166796 +23387,1653,seen more than once,1329166776 +23387,1653,space travel,1329166772 +23387,1653,thought-provoking,1329166773 +23387,1653,Uma Thurman,1329166816 +23387,1653,visually appealing,1329166776 +23387,1676,morally counterintuitive,1335625226 +23387,1676,social commentary,1335625238 +23387,1676,war,1335625240 +23387,1682,alternate reality,1328040743 +23387,1682,cerebral,1328040744 +23387,1682,dark comedy,1328040741 +23387,1682,dreamlike,1328040746 +23387,1682,dystopia,1328040740 +23387,1682,escape to reality,1333482745 +23387,1682,fake memories,1333482733 +23387,1682,fantasy,1328040765 +23387,1682,paranoia,1328040776 +23387,1682,surveillance,1328040766 +23387,1748,aliens,1333482622 +23387,1748,alternate reality,1333483357 +23387,1748,amnesia,1333482634 +23387,1748,atmospheric,1333482621 +23387,1748,dark,1333482628 +23387,1748,dark fantasy,1333482620 +23387,1748,dreamlike,1333482618 +23387,1748,dystopia,1333482615 +23387,1748,escape to reality,1333482756 +23387,1748,fake memories,1333482723 +23387,1748,manipulated senses,1333482647 +23387,1748,Post apocalyptic,1333483406 +23387,1748,sci-fi,1333482613 +23387,1748,surreal,1333482608 +23387,1748,thought-provoking,1333482609 +23387,1748,visually appealing,1333483398 +23387,2124,bittersweet,1328731420 +23387,2124,black comedy,1328041523 +23387,2124,gothic,1328041548 +23387,2124,mature kids,1328731384 +23387,2124,morally counterintuitive,1328218840 +23387,2124,quirky,1328218851 +23387,2124,sweet,1328731400 +23387,2321,alternate reality,1328040099 +23387,2321,coming of age,1328040068 +23387,2321,heartwarming,1328040099 +23387,2321,satire,1328040061 +23387,2321,surreal,1328040072 +23387,2321,time travel,1328040075 +23387,2321,whimsical,1328040074 +23387,2329,confrontational,1328731865 +23387,2329,disturbing,1328731835 +23387,2329,emotional,1328731863 +23387,2329,powerful ending,1328731841 +23387,2329,tense,1328731853 +23387,2329,thought-provoking,1328731845 +23387,2329,Tragedy,1328731856 +23387,2455,creepy,1328821381 +23387,2571,escape to reality,1333482871 +23387,2571,fake memories,1333482864 +23387,2571,fight scenes,1328736470 +23387,2571,manipulated senses,1333483020 +23387,2571,original anime is better,1328736459 +23387,2571,original is better,1328736459 +23387,2571,pretentious,1328736372 +23387,2571,pretentious garbage about good things,1328736388 +23387,2571,pseudo-philosophical,1328736503 +23387,2580,black comedy,1333139943 +23387,2580,drugs,1333139949 +23387,2580,multiple storylines,1333139938 +23387,2580,rave,1333139957 +23387,2712,disturbing,1328732823 +23387,2729,biting,1343765426 +23387,2729,controversial,1343765377 +23387,2729,cynical,1343765421 +23387,2729,kidnapping,1343765475 +23387,2729,literature,1343765473 +23387,2729,lolita,1328732742 +23387,2729,May-December romance,1343765381 +23387,2729,obsession,1343765432 +23387,2729,paranoia,1343765393 +23387,2729,Peter Sellers,1343765395 +23387,2729,satirical,1343765397 +23387,2729,Stanley Kubrick,1343765427 +23387,2729,vladimir nabokov,1343765400 +23387,2762,Atmospheric,1328735708 +23387,2762,psychology,1328735706 +23387,2762,twist ending,1328735698 +23387,2858,black comedy,1328041442 +23387,2858,coming of age,1328041444 +23387,2858,dark comedy,1328041420 +23387,2858,Kevin Spacey,1328041418 +23387,2858,mental illness,1328041457 +23387,2858,satirical,1328041471 +23387,2858,social commentary,1328041416 +23387,2858,surrealism,1328041413 +23387,2858,thought-provoking,1328041460 +23387,2959,atmospheric,1343765219 +23387,2959,Brad Pitt,1343765259 +23387,2959,classic,1343765219 +23387,2959,dark comedy,1343765216 +23387,2959,disturbing,1343765223 +23387,2959,Edward Norton,1343765264 +23387,2959,masculine power vs. feminine power,1343765211 +23387,2959,mental illness,1343765247 +23387,2959,philosophical,1343765252 +23387,2959,social commentary,1343765163 +23387,2959,surreal,1343765241 +23387,2959,twist ending,1343765237 +23387,2959,violence,1343765226 +23387,3476,alternate reality,1333483347 +23387,3476,conspiracy,1331932922 +23387,3476,disturbing,1331932958 +23387,3476,fake memories,1333483191 +23387,3476,hallucination,1331932930 +23387,3476,insanity,1331932932 +23387,3476,mental illness,1331932923 +23387,3476,multiple realities,1331932954 +23387,3476,nonlinear,1331932952 +23387,3476,Psychological horror,1331932941 +23387,3476,sad ending,1331932945 +23387,3476,surreal,1331932922 +23387,3476,Vietnam War,1331932938 +23387,3699,bittersweet,1328732773 +23387,3819,cooking,1343764931 +23387,3819,food,1343764927 +23387,3819,Foodie,1343764946 +23387,3819,Nudity (Topless - Notable),1343764934 +23387,3819,ramen,1343764920 +23387,3819,sexy,1343764937 +23387,3819,slow,1343764959 +23387,4370,artificial intelligence,1328736709 +23387,4370,Bittersweet,1328736696 +23387,4370,dystopia,1328736712 +23387,4370,emotional,1328736698 +23387,4370,fairy tale,1328736700 +23387,4370,Stanley Kubrick,1328736689 +23387,4467,fantasy,1330465862 +23387,4467,Gilliam,1330465853 +23387,4467,imagination,1330465351 +23387,4467,Jonathan Pryce,1330465562 +23387,4467,metafiction,1330465340 +23387,4467,Robin Williams,1330465562 +23387,4467,story-in-a-story,1330465847 +23387,4467,surreal,1330465838 +23387,4467,Terry Gilliam,1330465308 +23387,4467,Uma Thurman,1330465562 +23387,4873,animated,1340657713 +23387,4873,metaphysics,1340657726 +23387,4873,pretentious,1340657703 +23387,4873,stylized,1340657720 +23387,4873,thought-provoking,1340657689 +23387,4878,dreamlike,1328219309 +23387,4878,high school,1343765347 +23387,4878,philosophy,1328219293 +23387,4878,psychological,1328219304 +23387,4878,quirky,1328219317 +23387,4878,satirical,1328219318 +23387,4878,social commentary,1328219302 +23387,4878,stylized,1343765338 +23387,4878,surreal,1328219301 +23387,4878,thought-provoking,1328219294 +23387,4878,time travel,1343765335 +23387,5617,BDSM,1333745933 +23387,5617,black comedy,1333745918 +23387,5617,dark comedy,1333745936 +23387,5617,forbidden love,1333745968 +23387,5617,love,1333745979 +23387,5617,Nudity (Full Frontal - Notable),1333745943 +23387,5617,Nudity (Full Frontal),1333745946 +23387,5617,Nudity (Topless - Notable),1333745945 +23387,5617,sex,1333745926 +23387,5617,sexuality,1333745924 +23387,5617,sexuality:BDSM,1333745955 +23387,5617,weird,1333745990 +23387,5617,workplace,1333745960 +23387,5618,adventure,1331305527 +23387,5618,alternate reality,1331305541 +23387,5618,amazing artwork,1331305565 +23387,5618,animation,1331305529 +23387,5618,anime,1331305535 +23387,5618,dreamlike,1331305520 +23387,5618,hallucinatory,1331305543 +23387,5618,Oscar (Best Animated Feature),1331305548 +23387,5618,Studio Ghibli,1331305522 +23387,5945,dark comedy,1328121912 +23387,5945,road trip,1328121904 +23387,5945,satire,1328121905 +23387,6283,amazing artwork,1331304011 +23387,6283,anime,1331304012 +23387,6283,BOUNTY HUNTERS,1331303967 +23387,6283,cynical,1331304003 +23387,6283,humorous,1331303966 +23387,6283,UNLIKELY HEROES,1331303994 +23387,6440,baffling,1328912954 +23387,6440,Hollywood,1328913061 +23387,6440,meta,1328913004 +23387,6440,metafiction,1328913016 +23387,6440,weird,1328912992 +23387,6440,writers block,1328912964 +23387,6552,Audrey Tautou,1333654156 +23387,6552,blackmail,1333654162 +23387,6552,chess,1333654188 +23387,6552,compassionate,1333657662 +23387,6552,gritty,1333657662 +23387,6552,hotel,1333654143 +23387,6552,illegal immigration,1333654149 +23387,6552,immigrants,1333654144 +23387,6552,immigration,1333654141 +23387,6552,London,1333654133 +23387,6552,moral ambiguity,1333654261 +23387,6552,morally counterintuitive,1333654287 +23387,6552,Nudity (Topless - Brief),1333654132 +23387,6552,sexual exploitation,1333654131 +23387,6552,Stephen Frears,1333654183 +23387,6552,tense,1333654237 +23387,6552,twist ending,1333654237 +23387,6867,cute,1333917641 +23387,6867,depression,1333917642 +23387,6867,friendship,1333917639 +23387,6867,interesting characters,1333917643 +23387,6867,loneliness,1333917637 +23387,6867,melancholy,1333917636 +23387,6867,movie to see,1333917649 +23387,6867,neighbors,1333917633 +23387,6867,quirky,1333917650 +23387,6867,satirical,1333917656 +23387,6867,slow paced,1333917704 +23387,6867,small town,1333917632 +23387,6867,understated,1333917632 +23387,6867,vertically challenged people,1333917663 +23387,6867,want to see again,1333917670 +23387,6979,artificial intelligence,1333738720 +23387,6979,classic,1333738683 +23387,6979,Cold War,1333738700 +23387,6979,command line inteface,1333738696 +23387,6979,computer cracker,1333738704 +23387,6979,computers,1333738691 +23387,6979,hackers,1333738690 +23387,6979,mad scientist,1333738747 +23387,6979,nuclear war,1333738735 +23387,7147,adventure,1332532436 +23387,7147,bittersweet,1332532412 +23387,7147,coming of age,1332532434 +23387,7147,dreamlike,1332532413 +23387,7147,Ewan McGregor,1332532478 +23387,7147,fantasy,1332532414 +23387,7147,made me cry,1332532450 +23387,7147,reflective,1332532420 +23387,7147,surreal,1332532426 +23387,7147,surrealism,1332532415 +23387,7147,twist ending,1332532422 +23387,7236,so-bad-its-good,1327443079 +23387,8607,anime,1329166874 +23387,8607,Intentionally Corny But Touching,1329166886 +23387,8607,madhouse,1329166945 +23387,8607,Satoshi Kon,1329166902 +23387,8607,studio madhouse,1329166922 +23387,8645,compassionate,1333665989 +23387,8645,dark,1333665993 +23387,8645,earnest,1333666010 +23387,8645,gritty,1333665959 +23387,8645,hearthbreaking,1333666033 +23387,8645,immigrants,1333665983 +23387,8645,Interesting,1333665967 +23387,8645,poignant,1333666001 +23387,8645,pregnancy,1333665974 +23387,8645,smuggling,1333665979 +23387,8645,teen pregnancy,1333665973 +23387,8645,tense,1333665998 +23387,8784,friendship,1333391787 +23387,8784,mental illness,1333391897 +23387,8784,motorcycle,1333391810 +23387,8784,psychology,1333391803 +23387,8784,quirky,1333391753 +23387,8784,quirky romantic,1333391755 +23387,8784,wired 50 greatest soundtracks,1333391776 +23387,8807,stoner comedy,1328734669 +23387,8807,Stoner Movie,1328734665 +23387,27344,not a movie,1333906888 +23387,27344,tv series,1333906899 +23387,27344,weird,1328733820 +23387,27444,bittersweet,1328733931 +23387,27444,low budget,1328733948 +23387,27444,sweet,1328733925 +23387,27444,weird,1328733935 +23387,27728,2D/3D hybrid Animation,1331305236 +23387,27728,alternate reality,1333483367 +23387,27728,amazing artwork,1331305375 +23387,27728,anime,1331305237 +23387,27728,artificial intelligence,1331305444 +23387,27728,atmospheric,1331305264 +23387,27728,Better than the First,1331305243 +23387,27728,cerebral,1331305288 +23387,27728,conscience,1331305320 +23387,27728,controversial,1331305249 +23387,27728,crime,1331305341 +23387,27728,cyberpunk,1331305429 +23387,27728,dialouge driven,1331305393 +23387,27728,escape to reality,1333482938 +23387,27728,more plotline than the first,1331305333 +23387,27728,philosophical,1331305259 +23387,27728,sci-fi,1331305296 +23387,27790,Danny Boyle,1328121185 +23387,27790,fantasy,1328121196 +23387,27790,heartbreaking,1328736962 +23387,27790,heartwarming,1328121190 +23387,27790,made me cry,1331845066 +23387,27790,surreal,1328121202 +23387,32587,atmospheric,1328735666 +23387,32587,black comedy,1328735665 +23387,32587,disturbing,1328735684 +23387,32587,multiple storylines,1328735641 +23387,32587,stylized,1328735659 +23387,32587,surrealism,1328735654 +23387,33166,Disturbing,1328821355 +23387,33166,multiple storylines,1328821349 +23387,33166,social commentary,1328821347 +23387,34319,predictable,1328565798 +23387,34319,Terrible Acting,1328565805 +23387,34523,mature kids,1328732336 +23387,36517,atmospheric,1328735373 +23387,36517,cerebral,1328735394 +23387,36517,conspiracy,1328735397 +23387,36517,corruption,1328735431 +23387,36517,great cinematography,1328735407 +23387,36517,gritty,1328735392 +23387,36517,politics,1328735376 +23387,36517,tense,1328735415 +23387,36517,thriller,1328735383 +23387,36517,visually appealing,1328735418 +23387,36529,dark comedy,1328038539 +23387,36529,political,1328038547 +23387,39444,bittersweet,1328732502 +23387,39444,dysfunctional family,1328121888 +23387,39444,emo,1328121877 +23387,39869,pretentious,1328737774 +23387,42422,aliens,1331305638 +23387,42422,amazing artwork,1331305655 +23387,42422,anime,1331305586 +23387,42422,bittersweet,1331305587 +23387,42422,high school,1331305592 +23387,42422,mobiles,1331305614 +23387,42422,no ending,1331305629 +23387,42422,sci-fi,1331305605 +23387,42422,science fiction,1331305595 +23387,42422,short,1331305607 +23387,42422,time travel,1331305624 +23387,44195,clever,1328220797 +23387,44195,dark comedy,1328220789 +23387,44195,dark humor,1328220783 +23387,44195,funny,1328220818 +23387,44195,satire,1328220791 +23387,44195,social commentary,1328220807 +23387,44974,disturbing,1328732563 +23387,44974,lolita,1328732532 +23387,44974,mature kids,1328732552 +23387,44974,tension,1328732570 +23387,47404,meeting god,1328733127 +23387,47404,quirky,1328733434 +23387,47404,surreal,1328733056 +23387,47404,visually appealing,1328733078 +23387,47404,visually stunning,1328733092 +23387,47404,weird,1328733442 +23387,47404,yakuza,1328733411 +23387,48774,apocalypse,1328735516 +23387,48774,atmospheric,1328735508 +23387,48774,disturbing,1328735909 +23387,48774,dystopia,1328735489 +23387,48774,made me cry,1329167137 +23387,48774,social commentary,1328735490 +23387,48774,survival,1328735495 +23387,48774,terrorism,1328735529 +23387,48774,thought-provoking,1328735498 +23387,48774,violence,1328735914 +23387,48774,visually appealing,1328735500 +23387,49815,amazing artwork,1331304048 +23387,49815,anime,1331303128 +23387,49815,atmospheric,1331303188 +23387,49815,beautiful,1331303100 +23387,49815,bittersweet,1331305897 +23387,49815,coming of age,1331303093 +23387,49815,dark,1331306223 +23387,49815,drama,1331303094 +23387,49815,English dubs,1331303217 +23387,49815,friendship,1331303314 +23387,49815,loneliness,1331303314 +23387,49815,Planes,1331303092 +23387,49815,romance,1331303094 +23387,49815,sci-fi,1331303113 +23387,49815,visually appealing,1331305722 +23387,49815,war,1331303095 +23387,51937,disturbing in a bad way,1328732895 +23387,51937,rape,1328732900 +23387,52885,alternate reality,1328735296 +23387,52885,animation,1328725614 +23387,52885,anime,1328725615 +23387,52885,atmospheric,1328735558 +23387,52885,beautiful animation,1328725610 +23387,52885,coming of age,1328732731 +23387,52885,confusing,1328725628 +23387,52885,dreams,1328735306 +23387,52885,escape to reality,1333482833 +23387,52885,fake memories,1333482852 +23387,52885,manipulated senses,1333483011 +23387,52885,metafiction,1328735319 +23387,52885,psychedellic,1328725623 +23387,52885,surreal,1328725600 +23387,52885,Susumu Hirasawa,1328725621 +23387,55167,atmospheric,1328735449 +23387,55167,beautiful,1328733476 +23387,55167,beautiful animation,1328733207 +23387,55167,disturbing,1328733203 +23387,55167,heartbreaking,1328733536 +23387,55167,made me cry,1332080752 +23387,55167,sureal,1328733225 +23387,55167,visually appealing,1328733203 +23387,55167,visually stunning,1328733203 +23387,58223,corporate America,1328734024 +23387,58223,corporate culture,1328734024 +23387,58223,corporate greed,1328734024 +23387,58223,corporations,1328734024 +23387,58223,disturbing,1328733966 +23387,58223,psychological,1328733959 +23387,59022,politics,1328734619 +23387,59022,so bad it's good,1328734540 +23387,59022,stoner comedy,1328734574 +23387,59022,Stoner Movie,1328734574 +23387,59387,beautiful,1328725691 +23387,59387,beautiful cinematography,1328725761 +23387,59387,fantasy,1328725692 +23387,59387,fantasy world,1328725756 +23387,59387,heartbreaking,1328725819 +23387,59387,imagination,1328725738 +23387,59387,made me cry,1329166853 +23387,59387,meta,1328725727 +23387,59387,metafiction,1328725724 +23387,59387,story-in-a-story,1328725713 +23387,59387,surreal,1328725747 +23387,59387,visually appealing,1328725740 +23387,59387,visually stunning,1328725742 +23387,62511,meta,1328735346 +23387,62511,metafiction,1328735346 +23387,63082,dreamlike,1328731653 +23387,63082,nonlinear,1328731653 +23387,63082,social commentary,1328731666 +23387,64993,amazing artwork,1331305196 +23387,64993,anime,1331305154 +23387,64993,Art Direction,1331305146 +23387,64993,Backgrounds,1331305148 +23387,64993,beautiful,1331305806 +23387,64993,bittersweet,1331305914 +23387,64993,comes very close to being perfect,1331845820 +23387,64993,coming of age,1331845873 +23387,64993,drama,1331305170 +23387,64993,intimate,1331305175 +23387,64993,love,1331305167 +23387,64993,made me cry,1333738663 +23387,64993,touching,1333738762 +23387,64993,Tragedy,1331845834 +23387,64993,visually appealing,1331305776 +23387,64993,visually stunning,1331305806 +23387,66240,casual supernatural,1328565594 +23387,66240,quirky,1328567613 +23387,66240,sisters,1328565623 +23387,70659,disturbing,1328733711 +23387,70659,documentary,1328733721 +23387,70659,social commentary,1328733743 +23387,70659,weird,1328733771 +23387,71211,anti-hero,1328734832 +23387,71211,corporate America,1328734816 +23387,71211,offbeat,1328734769 +23387,71211,price fixing,1328734779 +23387,71211,true story,1328734860 +23387,71518,Austin,1335625454 +23387,71518,predictable,1335625465 +23387,71899,animation,1333738415 +23387,71899,asperger syndrome,1333738417 +23387,71899,bittersweet,1333738531 +23387,71899,claymation,1333738419 +23387,71899,coming of age,1333738560 +23387,71899,dark comedy,1333738421 +23387,71899,friendship,1333738410 +23387,71899,funny,1333738443 +23387,71899,made me cry,1333738472 +23387,71899,mental illness,1333738426 +23387,71899,misfits,1333738428 +23387,71899,movie to see,1333738445 +23387,71899,philosophical,1333738440 +23387,71899,poignant,1333738401 +23387,71899,quirky,1333738518 +23387,71899,sad,1333738408 +23387,71899,slow paced,1333738437 +23387,71899,stop motion,1333738452 +23387,71899,sweet,1333738430 +23387,71899,touching,1333738403 +23387,72226,animation,1328731119 +23387,72226,bittersweet,1328731029 +23387,72226,civilized animals,1328731271 +23387,72226,mature kids,1328731277 +23387,72226,morally counterintuitive,1328731173 +23387,72226,quirky,1328731107 +23387,72226,sweet,1328731037 +23387,72226,visually appealing,1328731041 +23387,76173,arms trade,1330466074 +23387,76173,quirky,1330466169 +23387,76173,revenge,1330466178 +23387,76173,visually appealing,1330466175 +23387,79430,documentary,1328733862 +23387,79430,politics,1328733841 +23387,79430,religion,1328733876 +23387,82242,bittersweet,1328731518 +23387,82242,mature kids,1328731529 +23387,82242,morally counterintuitive,1328218717 +23387,82242,not just comedy,1328731541 +23387,82242,sweet,1328731522 +23387,87660,politics,1328733891 +23387,92210,aliens,1330343801 +23387,92210,anime,1331303851 +23387,92210,espers,1330343773 +23387,92210,Haruhi Suzumiya,1330343760 +23387,92210,high school,1331303912 +23387,92210,supernatural,1331303935 +23387,92210,time travel,1330343784 +23387,92210,wonderfully convoluted story,1331303858 +23387,92475,Adam Curtis,1332081735 +23387,92475,AIDS,1332083549 +23387,92475,Allen Greenspan,1332084803 +23387,92475,Ayn Rand,1332082590 +23387,92475,banking,1332083906 +23387,92475,commune,1332084136 +23387,92475,cyberpunk,1332082465 +23387,92475,cyberspace,1332082883 +23387,92475,ecology,1332082460 +23387,92475,economic crisis,1332082646 +23387,92475,environmentalism,1332083922 +23387,92475,evolution,1332083658 +23387,92475,history,1332083568 +23387,92475,imf,1332083065 +23387,92475,insanity,1332083575 +23387,92475,internet,1332082830 +23387,92475,monika lewinsky,1332082980 +23387,92475,politics,1332082565 +23387,92475,racism,1332083689 +23387,92475,revolution,1332084055 +23387,92475,Rewanda,1332084617 +23387,92475,robert rubin,1332083126 +23387,92475,science history,1332082482 +23387,92475,wall street,1332082786 +23387,92475,war,1332083646 +23387,93469,bittersweet,1331844813 +23387,93469,Funny as hell,1331844813 +23387,93469,made me cry,1331844813 +23387,93469,Rowan Atkinson,1331844813 +23387,93469,short,1331844847 +23387,93469,sweet,1331844812 +23387,93473,beautiful,1331929075 +23387,93473,dystopia,1331929032 +23387,93473,environmental,1331929027 +23387,93473,polution,1331929015 +23387,93473,sci-fi,1331929032 +23387,93473,twist ending,1331929040 +23387,93496,anime,1332079973 +23387,93496,anti-hero,1332080040 +23387,93496,Atsuya Uki,1332080600 +23387,93496,beautiful,1332079906 +23387,93496,casual supernatural,1332079940 +23387,93496,quirky,1332079887 +23387,93496,unpredictable,1332079991 +23387,93502,affair,1332088383 +23387,93502,atheism,1332088364 +23387,93502,Christianity,1332088407 +23387,93502,Faisal S. Al-Saud,1332088480 +23387,93502,fundamentalism,1332088397 +23387,93502,infertility,1332102745 +23387,93502,pretentious,1332088360 +23387,93502,religion,1332088372 +23387,93748,political,1333303632 +23387,93748,social commentary,1333303647 +23387,93750,political,1333303395 +23387,93750,quirky,1333303395 +23387,93750,social commentary,1333303395 +23406,25834,Rudyard Kipling,1254774477 +23406,26587,slow,1270077084 +23406,26587,understated,1270077092 +23406,66097,alternate universe,1254784774 +23406,66097,claymation,1254784777 +23406,66097,Surreal,1254784780 +23406,66371,life & death,1265344946 +23406,67087,bromantic,1254785001 +23406,67087,Jason Segel,1254784977 +23406,67267,Amy Adams,1254784938 +23406,67267,funny,1254784939 +23406,67267,witty,1254784942 +23412,41571,history,1425843199 +23412,41571,Japan,1425843186 +23412,41571,Japanese culture,1425843285 +23416,97,french,1170062712 +23416,6776,Bollywood,1170063175 +23416,6776,India,1170063179 +23416,30793,based on a book,1170024518 +23429,1258,fantastic actors,1241801576 +23429,1258,Fantastic camera shots,1241801537 +23429,61262,flat Story,1241801454 +23431,7981,nonlinear,1393216774 +23434,260,space adventure,1442161003 +23437,68319,comic book,1241762577 +23469,2404,Sylvester Stallone,1363982237 +23491,858,atmospheric,1430334647 +23491,858,Mafia,1430334643 +23491,858,organized crime,1430334649 +23491,1240,Arnold Schwarzenegger,1430334607 +23491,1240,great soundtrack,1430334604 +23491,1240,violent,1430334613 +23520,166,cult film,1436548811 +23520,27391,homosexuality,1436828004 +23520,27391,social message,1436828011 +23520,73831,coming of age,1436617275 +23520,73831,prostitution,1436617281 +23520,79627,gore,1437651022 +23520,79627,splatter,1437651024 +23520,81083,aliens,1435699779 +23520,81083,high school,1435699779 +23520,81083,homosexuality,1435699779 +23520,127650,marriage,1437054832 +23520,127650,prostitution,1437054832 +23520,127650,unconventional romance,1437054832 +23520,136586,anthology,1436406066 +23520,136586,anthology film,1435849085 +23520,136586,black comedy,1435849096 +23520,136586,dark comedy,1436406066 +23520,136586,foreign,1435849100 +23520,136586,surreal,1435849091 +23520,136684,crime,1437925580 +23520,136684,gangster,1437925580 +23520,136684,quirky,1437925580 +23527,260,George Lucas,1437327542 +23527,260,Syfy,1437327530 +23527,6457,Bismark,1437327738 +23560,5782,Not Luc Besson,1154110902 +23560,44191,comic book,1154271525 +23562,950,Nick and Nora Charles (series),1240602395 +23562,7832,Nick and Nora Charles (series),1240602400 +23562,7834,Nick and Nora Charles (series),1240602390 +23562,7835,Nick and Nora Charles (series),1240602406 +23562,51084,parody,1207852458 +23590,260,Boring,1432062933 +23590,260,Science Fiction,1432062942 +23598,110,visual,1137722079 +23598,588,young kids,1137722353 +23598,1198,fun,1137722247 +23598,1198,kids,1137722247 +23598,1270,fun,1137722218 +23598,1270,kids,1137722218 +23598,4306,kids fun,1137722134 +23598,4886,kids fun,1140311680 +23598,4995,thinker,1140311695 +23615,78574,slow,1326550126 +23623,110,kilts,1139272733 +23623,319,stupidity,1139273696 +23623,541,androids,1139273955 +23623,745,animation,1139272487 +23623,919,fantasy,1139273506 +23623,953,Christmas,1139274758 +23623,1148,penguins,1139273329 +23623,1215,cult classic,1139272725 +23623,1223,cheese,1139272905 +23623,1246,rite of passage,1139274914 +23623,1257,high school,1139271859 +23623,1261,cult classic,1139272192 +23623,1268,radio,1139275017 +23623,1274,anime,1139274226 +23623,1285,cow tipping,1139272645 +23623,1345,ESP,1139274255 +23623,1350,antichrist,1139274391 +23623,1396,computers,1139274990 +23623,1411,Kenneth Branagh,1139273587 +23623,1673,full frontal nudity,1139273973 +23623,1748,fantasy,1139273170 +23623,1968,80s,1139272851 +23623,2078,bear necessities,1139273486 +23623,2137,pigs,1139273295 +23623,2144,depressing,1139274553 +23623,2336,British History,1139274369 +23623,2398,Christmas,1139274957 +23623,2502,stapler,1139272693 +23623,2542,coordinated action sequences,1139274947 +23623,2580,drugs,1139273123 +23623,2858,surrealism,1139273772 +23623,2997,surrealism,1139274030 +23623,3052,Kevin Smith,1139274204 +23623,3071,mathematics,1139274003 +23623,3723,Oedipal Complex,1139274639 +23623,4105,cult classic,1139273341 +23623,4306,fairy tale,1139274169 +23623,4359,Marilyn Monroe,1139273754 +23623,5060,Vietnam,1139275071 +23623,5617,bdsm,1139273859 +23623,5721,Chaim Potok,1139272810 +23623,6377,ocean,1139273351 +23623,6539,pirates,1139273221 +23623,6636,college,1139274092 +23623,7147,surrealism,1139273418 +23623,7757,Greek myth,1139272457 +23623,8191,British History,1139272775 +23623,32587,comic book,1139272714 +23627,296,creative plot,1423632042 +23627,296,dark humor,1423632042 +23627,296,riveting,1423632042 +23627,356,aspirational,1429069387 +23627,356,creative plot,1429069387 +23627,356,motivational,1429069387 +23627,90376,Dark,1430785987 +23627,90376,Depressing,1430786017 +23627,90376,disturbing,1430786035 +23664,4306,cartoon,1137124663 +23684,6934,sci-fi,1429566727 +23684,6934,virtual reality,1429566731 +23684,70286,aliens,1429566683 +23684,70286,social commentary,1429566693 +23684,115617,big,1429566669 +23684,115617,big hero 6,1429566669 +23684,115617,white ballon,1429566669 +23688,69757,felt complete,1255669426 +23690,457,Harrison Ford,1299172857 +23690,457,thriller,1299172839 +23690,593,Horror,1299172887 +23690,593,Thriller,1299172887 +23717,8874,zombie,1447287079 +23720,64650,bollywood,1425661752 +23720,64650,dancing,1425661752 +23720,64650,marriage,1425661752 +23720,106870,labyrinth,1424980430 +23720,106870,paranormal investigation,1424980430 +23720,106870,supernatural power,1424980430 +23720,112556,revenge,1420928902 +23720,112556,smart woman,1420928902 +23720,112556,unexpected ending,1420928902 +23720,121583,hearing voices,1422719947 +23720,121583,intruder,1421008916 +23720,121583,psycho thriller,1421008904 +23721,260,sci-fi,1443247520 +23721,260,Science Fiction,1443247513 +23721,260,space action,1443247530 +23722,3147,tragic,1440463409 +23722,3578,heroic,1440463373 +23722,3578,violent,1440463367 +23722,4993,fantasy,1440463354 +23722,63082,drama,1440463295 +23746,260,starwars,1438199206 +23746,260,thriller,1438199212 +23789,80463,based on a true story,1378289661 +23789,80463,complex characters,1378289664 +23789,80463,computers,1378289666 +23789,80463,dark comedy,1378289653 +23789,80463,witty,1378289649 +23833,260,sci-fi,1441477135 +23833,260,Space,1441477139 +23841,8379,theatre,1178418091 +23911,882,BORING!,1170700611 +23912,260,influential,1443241425 +23912,260,space epic,1443241436 +23934,750,dark comedy,1442502645 +23934,750,Stanley Kubrick,1442502642 +23934,1240,cyborgs,1442502283 +23934,1240,robots,1442502279 +23934,1240,time travel,1442502272 +23934,4226,cult film,1442502218 +23934,4226,dark,1442502221 +23934,4226,dreamlike,1442502216 +23934,4226,Mindfuck,1442502226 +23934,4226,nonlinear,1442502209 +23934,4226,psychological,1442502242 +23934,4370,artificial intelligence,1442502698 +23934,4370,dystopia,1442502701 +23934,7360,post-apocalyptic,1442502413 +23934,7360,zombies,1442502411 +23934,81591,psychological,1442502309 +23934,103249,unbelievable,1442502485 +23940,356,bittersweet,1342035874 +23940,356,comedy,1342035881 +23940,356,inspirational,1342035883 +23940,356,quirky,1342035876 +23940,356,romance,1342035877 +23940,356,Tom Hanks,1342035878 +23940,506,beautiful,1342035993 +23940,506,gender identity,1342035987 +23940,506,history,1342035995 +23940,506,stylized,1342035997 +23940,506,surreal,1342035998 +23940,506,Tilda Swinton,1342035990 +23940,541,atmospheric,1342035746 +23940,541,cult film,1342035750 +23940,541,cyberpunk,1342035745 +23940,541,dystopia,1342035748 +23940,541,Harrison Ford,1342035741 +23940,924,aliens,1342035733 +23940,924,music,1342035722 +23940,924,space,1342035712 +23940,924,Stanley Kubrick,1342035710 +23940,924,surreal,1342035728 +23940,1214,atmospheric,1342035808 +23940,1214,dark,1342035829 +23940,1214,futuristic,1342035823 +23940,1214,haunted house,1342035822 +23940,1214,horror,1342035803 +23940,1214,monster,1342035818 +23940,1214,Oscar (Best Effects - Visual Effects),1342035807 +23940,1214,Ridley Scott,1342035825 +23940,1214,space travel,1342035805 +23940,1214,suspense,1342035813 +23940,4370,artificial intelligence,1342035770 +23940,4370,Bittersweet,1342035768 +23940,4370,depressing,1342035783 +23940,4370,Jude Law,1342035779 +23940,4370,sci-fi,1342035773 +23940,4370,Stanley Kubrick,1342035776 +23940,4370,Steven Spielberg,1342035774 +23940,6942,Emma Thompson,1324281199 +23940,6942,multiple storylines,1324281175 +23940,6942,Nudity (Topless),1324281178 +23940,7361,Charlie Kaufman,1342035672 +23940,7361,Jim Carrey,1342035674 +23940,7361,nonlinear,1342035680 +23940,7361,surreal,1342035677 +23940,7361,thought-provoking,1342035678 +23940,72998,futuristic,1342036456 +23940,72998,racism,1342036461 +23940,72998,scenic,1342036498 +23940,72998,simplistic,1342036488 +23940,72998,unimaginative,1342036476 +23940,72998,visuals,1342036494 +23940,86781,Denis Villeneuve,1324347128 +23940,86781,slow,1342035860 +23940,86781,Unexpected Ending,1324347121 +23940,88140,cheesy,1342036633 +23940,88140,cliched,1342036629 +23940,88140,dialogue,1342036636 +23940,88140,Hugo Weaving,1342036650 +23940,88140,Marvel,1342036647 +23940,88140,popcorn movie,1342036639 +23940,88140,superhero,1342036604 +23940,89492,baseball,1342036679 +23940,89492,Educational,1342036678 +23940,89492,great acting,1342036670 +23940,89492,intelligent,1342036664 +23940,89492,Realistic,1342036662 +23940,89492,slow,1342036659 +23940,89492,sports,1342036675 +23940,89864,Anna Kendrick,1342036521 +23940,89864,emotional,1342036516 +23940,89864,funny scenes,1342036529 +23940,89864,Joseph Gordon-Levitt,1342036513 +23940,89864,predictable,1342036518 +23940,89904,1920s,1342036564 +23940,89904,boring,1342036559 +23940,89904,original,1342036566 +23940,89904,slow pacing,1342036554 +23940,90746,animation,1342036736 +23940,90746,Daniel Craig,1342036726 +23940,90746,Nick Frost,1342036737 +23940,90746,Steven Spielberg,1342036730 +23940,90746,treasure hunt,1342036742 +23987,103330,atmospherically beautiful,1372391160 +23987,103330,dark,1372391160 +23987,103330,depressing,1372391268 +23987,103330,self-destructive,1372391242 +23987,103330,self-sacrifice,1372391242 +23987,103330,tense,1372391160 +23987,103330,unbearable at times,1372391172 +24016,1196,evil,1429046018 +24016,1196,star wars,1429046013 +24016,1196,vader,1429046024 +24016,7153,"Rings, War, Mordor",1429045994 +24039,103361,Who wouldn't want to see this ASAP?,1373414680 +24040,4475,Walked out: violent,1326246731 +24040,5034,all time favorite,1326246811 +24040,64499,boring,1326245907 +24040,81910,not well researched,1326245672 +24040,81910,unbalanced,1326245672 +24040,90868,Josh Leonard,1326246849 +24040,91077,cant forget its George Clooney,1326245412 +24050,1031,British,1184265782 +24050,1942,Oscar (Best Picture),1184111765 +24050,5014,sean penn,1184111648 +24057,79132,sci-fi,1429476113 +24088,260,Science Fiction,1433219685 +24088,260,space adventure,1433219717 +24102,260,adventure,1437996668 +24102,260,sci-fi classic,1437996653 +24121,920,1939,1140500965 +24157,260,classic sci-fi,1440622613 +24157,260,lasersword,1440622627 +24157,260,space opera,1440622602 +24163,260,sci-fi,1439051324 +24163,260,space opera,1439051332 +24168,260,legendary,1431111568 +24168,260,space,1431111579 +24173,318,friendship,1261874685 +24173,318,morgan freeman,1261874734 +24173,318,narrated,1261874723 +24173,318,reflective,1261874716 +24173,318,twist ending,1261874700 +24173,589,action,1261876314 +24173,589,Arnold Schwarzenegger,1261876341 +24173,589,artificial intelligence,1261876332 +24173,589,characters,1261876390 +24173,589,dystopia,1261876360 +24173,589,fighting,1261876436 +24173,589,music,1261876441 +24173,589,nuclear war,1261876353 +24173,589,Quotable,1261876289 +24173,589,robots,1261876347 +24173,589,sci-fi,1261876326 +24173,589,timetravel,1261876318 +24173,1036,action,1261875919 +24173,1036,bruce willis,1261875936 +24173,1036,crime,1261875925 +24173,1036,humorous,1261875960 +24173,1036,lone hero,1261875930 +24173,1036,tense,1261875965 +24173,1036,visceral,1261875976 +24173,1214,atmospheric,1261874551 +24173,1214,suspense,1261874600 +24173,1214,thriller,1261874595 +24173,27773,based on comic,1261878974 +24173,55908,unbelievable,1261877414 +24173,60684,Doctor Manhatten,1261877597 +24173,60684,lenght,1261877528 +24173,60684,Manhatten,1261877583 +24173,60684,stereotyped scenes,1261877556 +24173,60684,unlikeable characters,1261877492 +24173,70286,aliens,1261876494 +24173,70286,alternate history,1261876507 +24173,70286,genetics,1261876498 +24173,70286,intelligent sci-fi,1261876518 +24173,72378,Amount of Destruction,1261873457 +24173,72378,FX,1261873438 +24173,72378,lenght,1261873429 +24173,72998,blue indians in space,1261874416 +24173,72998,incredible 3D,1261874380 +24173,72998,music,1261874399 +24173,72998,too long,1261874362 +24174,2858,reflective,1208577379 +24174,8014,buddhist,1207716507 +24174,8014,scenic,1207716527 +24174,46578,beauty pageant,1207717389 +24174,46578,dysfunctional family,1207717435 +24174,46578,existential,1207717402 +24174,46578,philisophical,1207717411 +24174,46578,quirky,1207717396 +24192,260,Classic,1444008969 +24192,260,Epic hero saga,1444008991 +24206,837,clever,1188595680 +24206,1344,one of the best movies ever,1188595708 +24206,2917,one of the best movies ever,1188595762 +24206,3466,classic,1208311559 +24206,3466,Robert Downey Jr,1208311565 +24206,3466,spirits,1208311584 +24206,5225,unusual,1188595809 +24214,260,action,1434121498 +24214,104841,action,1434121876 +24214,104841,gripping,1434121876 +24214,104841,intense,1434121876 +24214,104841,visceral,1434121876 +24276,260,classic,1443429637 +24276,260,sci-fi,1443429618 +24278,32,dystopia,1426685689 +24278,32,Post apocalyptic,1426685673 +24278,32,post-apocalyptic,1426685664 +24278,32,sci-fi,1426685676 +24278,32,Terry Gilliam,1426685678 +24278,32,time travel,1426685667 +24278,541,artificial intelligence,1426685813 +24278,541,dystopia,1426685797 +24278,541,Harrison Ford,1426685821 +24278,541,imdb top 250,1426685811 +24278,541,sci-fi,1426685803 +24278,1199,black comedy,1426686113 +24278,1199,dark comedy,1426685628 +24278,1199,dystopia,1426685622 +24278,1199,dystopic future,1426686107 +24278,1199,satire,1426685639 +24278,1199,satirical,1426685649 +24278,1199,sci-fi,1426685637 +24278,1199,surreal,1426685651 +24278,1199,Terry Gilliam,1426686099 +24278,1199,thought-provoking,1426685645 +24278,1257,black comedy,1426685909 +24278,1257,quirky,1426685922 +24278,1653,dystopia,1426685740 +24278,1653,dystopic future,1426685750 +24278,1653,intelligent,1426685763 +24278,1653,powerful ending,1426685757 +24278,1653,realistic sci/fi,1426685753 +24278,1653,sci-fi,1426685743 +24278,1653,science fiction,1426685772 +24278,1653,thought-provoking,1426685755 +24278,7236,dystopia,1426685594 +24278,7236,post-apocalyptic,1426685584 +24278,68237,artificial intelligence,1426685719 +24278,68237,dystopia,1426685716 +24278,68237,Sci-fi,1426685713 +24282,8644,robots,1429806708 +24282,47610,Edward Norton,1429806837 +24282,60069,inspirational,1429806577 +24282,106438,inspirational,1429806774 +24282,112183,actors,1429806812 +24282,112183,Edward Norton,1429806815 +24282,112183,great performances,1429806802 +24289,260,adventure,1439767209 +24289,260,space,1439767202 +24291,39,teen movie,1368064031 +24291,46,women,1368063966 +24291,218,women,1368063967 +24291,346,musicians,1368064007 +24291,522,brutality,1368064179 +24291,858,masterpiece,1367982569 +24291,950,detective,1368064472 +24291,1033,unlikely friendships,1368064402 +24291,1068,noir thriller,1367982446 +24291,1088,dancing,1368064277 +24291,1089,stylish,1368063839 +24291,1188,dancing,1368064276 +24291,1228,masterpiece,1367982569 +24291,1252,masterpiece,1367982569 +24291,1271,unlikely friendships,1368064402 +24291,1387,suspenseful,1368064066 +24291,1678,women,1368063967 +24291,1783,neo-noir,1368064254 +24291,1950,detective,1368064472 +24291,1968,teen movie,1368064031 +24291,2019,masterpiece,1367982569 +24291,2144,teen movie,1368064031 +24291,2145,teen movie,1368064031 +24291,2485,teen movie,1368064031 +24291,2550,supernatural,1367982645 +24291,2762,excellent script,1367982706 +24291,2866,musicians,1368064007 +24291,2933,melancholic,1367982354 +24291,3210,teen movie,1368064031 +24291,3499,suspenseful,1368064066 +24291,3551,suspenseful,1368064066 +24291,3594,dancing,1368064276 +24291,3783,neo-noir,1368064254 +24291,3791,dancing,1368064277 +24291,4011,stylish,1368063838 +24291,4226,great ending,1368064359 +24291,4720,supernatural,1367982645 +24291,4902,supernatural,1367982645 +24291,5385,musicians,1368064007 +24291,5693,dancing,1368064277 +24291,5820,musicians,1368064007 +24291,6214,brutality,1368064179 +24291,6254,screwball comedy,1368064533 +24291,6785,dancing,1368064276 +24291,6867,unlikely friendships,1368064402 +24291,6910,original,1367982263 +24291,7217,noir thriller,1367982446 +24291,7223,noir thriller,1367982446 +24291,7235,brutality,1368064179 +24291,7981,excellent script,1367982706 +24291,8711,screwball comedy,1368064533 +24291,25850,screwball comedy,1368064533 +24291,27815,mentor,1367982520 +24291,27831,stylish,1368063839 +24291,33880,bittersweet,1313282236 +24291,44665,great ending,1368064358 +24291,44709,mentor,1367982520 +24291,44761,neo-noir,1368064254 +24291,47610,great ending,1368064359 +24291,53000,frustrating to watch,1360983029 +24291,53000,Jeremy Renner,1360983018 +24291,55553,splatter,1368063920 +24291,56339,supernatural,1367982645 +24291,64993,melancholic,1367982354 +24291,68358,jj abrams,1242257185 +24291,69844,Alan Rickman,1247931503 +24291,69844,when did Rupert Grint become a man,1247931526 +24291,70286,aliens,1250345169 +24291,70286,intelligent sci-fi,1250345149 +24291,72998,3d,1263005223 +24291,72998,visual,1263005255 +24291,77561,Robert Downey Jr.,1275613883 +24291,77561,Sam Rockwell,1275613898 +24291,81845,excellent script,1367982706 +24291,82242,original,1367982263 +24291,87304,heartwarming,1324851634 +24291,87304,relationships,1324851640 +24291,87306,child actor,1326328691 +24291,88405,chemistry between actors,1345865375 +24291,88405,Woody Harrelson,1345865397 +24291,90866,3D,1324851539 +24291,90866,Martin Scorsese,1324851571 +24291,91529,Joseph Gordon-Levitt,1344042967 +24291,91571,original,1367982263 +24291,91653,Animals,1408319409 +24291,91653,Matt Damon,1408319402 +24291,93840,Fran Kranz,1336775787 +24291,93840,joss whedon,1336775773 +24291,93840,original plot,1336775760 +24291,96281,stop motion,1360465277 +24291,96588,Anna Kendrick,1364594837 +24291,96588,predictable,1364594847 +24291,99007,romance,1360366351 +24291,102445,Bechdel Test:Fail,1371303509 +24291,102445,Simon Pegg,1371303492 +24291,103042,Over-the-top action.,1372163164 +24291,103042,second half was worse,1372163177 +24291,103042,Superman,1372163191 +24291,111362,James McAvoy,1408319479 +24291,111362,Michael Fassbender,1408319474 +24291,111362,Patrick Stewart,1408319477 +24291,112852,adventure,1408319290 +24291,112852,fun,1408319271 +24293,47,atmospheric,1438575864 +24293,47,brad pitt,1438575855 +24293,47,dark,1438575873 +24293,47,David Fincher,1438575869 +24293,47,disturbing,1438575892 +24293,47,drama,1438575887 +24293,47,grim,1438575890 +24293,47,Gwyneth Paltrow,1438575884 +24293,47,horror,1438575896 +24293,47,Kevin Spacey,1438575851 +24293,47,morgan freeman,1438575867 +24293,47,psychological,1438575872 +24293,47,serial killer,1438575875 +24293,47,twists & turns,1438575881 +24293,50,caper,1438575186 +24293,50,clever,1438575175 +24293,50,complicated,1438575179 +24293,50,excellent script,1438575167 +24293,50,great acting,1438575170 +24293,50,Kevin Spacey,1438575173 +24293,50,mindfuck,1438575191 +24293,253,adapted from:book,1438577293 +24293,253,anne rice,1438577301 +24293,253,Antonio Banderas,1438577317 +24293,253,atmospheric,1438577295 +24293,253,brad pitt,1438577329 +24293,253,cult classic,1438577298 +24293,253,gothic,1438577312 +24293,253,horror,1438577318 +24293,253,Nudity (Full Frontal),1438577307 +24293,253,tom cruise,1438577315 +24293,253,vampire,1438577309 +24293,253,vampires,1438577304 +24293,260,adventure,1438576613 +24293,260,classic sci-fi,1438576604 +24293,260,George Lucas,1438576611 +24293,260,good vs evil,1438570004 +24293,260,great soundtrack,1438576580 +24293,260,Harrison Ford,1438576572 +24293,260,jedi,1438576619 +24293,260,John Williams music,1438576591 +24293,260,oldie but goodie,1438576599 +24293,260,sci-fi,1438576576 +24293,260,space epic,1438576597 +24293,260,space opera,1438576602 +24293,260,Star Wars,1438576623 +24293,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1438569991 +24293,296,Black comedy,1438575094 +24293,296,dark comedy,1438575101 +24293,296,good dialogue,1438575119 +24293,296,notable soundtrack,1438575116 +24293,296,Quentin Tarantino,1438575096 +24293,296,stylized,1438575103 +24293,296,Tarantino,1438575091 +24293,541,atmospheric,1438575462 +24293,541,cyberpunk,1438575447 +24293,541,dreamlike,1438575483 +24293,541,dystopia,1438575449 +24293,541,existentialism,1438575459 +24293,541,film noir,1438575464 +24293,541,futuristic,1438575452 +24293,541,influencial,1438575520 +24293,541,neo-noir,1438575474 +24293,541,Philip K. Dick,1438575487 +24293,541,Ridley Scott,1438575468 +24293,541,stylized,1438575466 +24293,541,visually striking,1438575510 +24293,551,animation,1438576093 +24293,551,atmospheric,1438576081 +24293,551,beautiful,1438576090 +24293,551,Christmas,1438576115 +24293,551,classic,1438576105 +24293,551,claymation,1438576097 +24293,551,cult film,1438576072 +24293,551,Danny Elfman,1438576074 +24293,551,Danny Elfman score,1438576095 +24293,551,dark,1438576099 +24293,551,gothic,1438576086 +24293,551,great soundtrack,1438576070 +24293,551,Halloween,1438576106 +24293,551,humorous,1438576108 +24293,551,musical,1438576102 +24293,551,stop motion,1438576084 +24293,551,stylized,1438576088 +24293,551,surreal,1438576111 +24293,551,Tim Burton,1438576079 +24293,551,whimsical,1438576077 +24293,593,Anthony Hopkins,1438578092 +24293,593,based on a book,1438578127 +24293,593,classic,1438578163 +24293,593,creepy,1438578181 +24293,593,crime,1438578166 +24293,593,Criterion,1438578156 +24293,593,dark,1438578146 +24293,593,disturbing,1438578138 +24293,593,drama,1438578177 +24293,593,excellent script,1438578095 +24293,593,gothic,1438578110 +24293,593,great acting,1438578097 +24293,593,Hannibal Lecter,1438578105 +24293,593,Hannibal Lector,1438578119 +24293,593,Horror,1438578113 +24293,593,Jodie Foster,1438578169 +24293,593,Oscar (Best Actor),1438578161 +24293,593,Oscar (Best Actress),1438578175 +24293,593,Oscar (Best Directing),1438578153 +24293,593,Oscar (Best Picture),1438578159 +24293,593,psychological,1438578102 +24293,593,psychothriller,1438578122 +24293,593,serial killer,1438578133 +24293,593,strong female lead,1438578116 +24293,593,suspense,1438578140 +24293,593,suspenseful,1438578150 +24293,593,tense,1438578148 +24293,593,thriller,1438578100 +24293,745,british comedy,1438574623 +24293,745,claymation,1438574618 +24293,745,Wallace & Gromit,1438574621 +24293,745,witty,1438574628 +24293,912,atmospheric,1438579069 +24293,912,bittersweet,1438579056 +24293,912,classic,1438579060 +24293,912,classic romance,1438579062 +24293,912,Film Noir,1438579064 +24293,912,Humphrey Bogart,1438579049 +24293,912,Ingrid Bergman,1438579051 +24293,912,sentimental,1438579054 +24293,914,audrey hepburn,1438579554 +24293,914,classic,1438579575 +24293,914,costume drama,1438579568 +24293,920,calassic hollywood,1438579212 +24293,920,Civil War,1438579224 +24293,920,classic,1438579197 +24293,920,costume drama,1438579193 +24293,920,historical,1438579178 +24293,920,Oscar (Best Actress),1438579226 +24293,920,Oscar (Best Cinematography),1438579216 +24293,920,Oscar (Best Picture),1438579231 +24293,924,atmospheric,1438575596 +24293,924,cinematography,1438575598 +24293,924,classic,1438575612 +24293,924,masterpiece,1438575583 +24293,924,meditative,1438575606 +24293,924,philosophical,1438575600 +24293,924,Stanley Kubrick,1438575593 +24293,924,surreal,1438575604 +24293,924,visually appealing,1438575586 +24293,1035,classic,1438579531 +24293,1035,julie andrews,1438579517 +24293,1035,musical,1438579515 +24293,1080,black comedy,1438578460 +24293,1080,historical,1438578476 +24293,1080,Monty Python,1438578456 +24293,1080,Nudity (Full Frontal),1438578442 +24293,1080,parody,1438578446 +24293,1080,quotable,1438578449 +24293,1080,satire,1438578455 +24293,1080,satirical,1438578452 +24293,1136,absurd,1438578354 +24293,1136,british comedy,1438578349 +24293,1136,excellent dialogue,1438578388 +24293,1136,hilarious,1438578378 +24293,1136,John Cleese,1438578374 +24293,1136,medieval,1438578369 +24293,1136,Monty Python,1438578362 +24293,1136,parody,1438578377 +24293,1136,satire,1438578372 +24293,1136,satirical,1438578381 +24293,1136,spoof,1438578359 +24293,1136,Terry Gilliam,1438578384 +24293,1148,claymation,1438578418 +24293,1148,stop motion,1438578420 +24293,1148,Wallace & Gromit,1438578414 +24293,1148,witty,1438578422 +24293,1198,action,1438577523 +24293,1198,adventure,1438577509 +24293,1198,comedy,1438577528 +24293,1198,great soundtrack,1438577506 +24293,1198,Harrison Ford,1438577517 +24293,1198,humorous,1438577520 +24293,1198,indiana jones,1438577512 +24293,1198,john willims score,1438577565 +24293,1198,Steven Spielberg,1438577526 +24293,1198,treasure hunt,1438577537 +24293,1199,atmospheric,1438576146 +24293,1199,black comedy,1438576131 +24293,1199,bureaucracy,1438576155 +24293,1199,cerebral,1438576165 +24293,1199,dark,1438576180 +24293,1199,dark comedy,1438576158 +24293,1199,dreamlike,1438576127 +24293,1199,dystopia,1438576163 +24293,1199,dystopic future,1438576168 +24293,1199,fantasy,1438576183 +24293,1199,futuristic,1438576134 +24293,1199,hallucinatory,1438576140 +24293,1199,quirky,1438576173 +24293,1199,satire,1438576151 +24293,1199,satirical,1438576175 +24293,1199,sci-fi,1438576170 +24293,1199,stylized,1438576179 +24293,1199,surreal,1438576129 +24293,1199,surveillance,1438576177 +24293,1199,Terry Gilliam,1438576145 +24293,1199,thought-provoking,1438576136 +24293,1199,visual,1438576153 +24293,1199,visually appealing,1438576138 +24293,1199,visually stunning,1438576143 +24293,1199,weird,1438576160 +24293,1200,action,1438577012 +24293,1200,atmospheric,1438577000 +24293,1200,horror,1438577017 +24293,1200,James Cameron,1438576997 +24293,1200,monster,1438577032 +24293,1200,mother-daughter themes,1438577064 +24293,1200,Oscar (Best Effects - Visual Effects),1438577023 +24293,1200,sci-fi,1438577015 +24293,1200,Sigourney Weaver,1438577008 +24293,1200,strong femal lead,1438577046 +24293,1200,suspense,1438577003 +24293,1200,tense,1438577005 +24293,1200,violent,1438577026 +24293,1206,atmospheric,1438575946 +24293,1206,brainwashing,1438575935 +24293,1206,classic,1438575949 +24293,1206,controversial,1438575957 +24293,1206,disturbing,1438575923 +24293,1206,dystopia,1438575917 +24293,1206,Malcolm McDowell,1438575932 +24293,1206,masterpiece,1438575927 +24293,1206,psychological,1438575921 +24293,1206,psychological torment,1438575941 +24293,1206,rape,1438575944 +24293,1206,satirical,1438575919 +24293,1206,social commentary,1438575915 +24293,1206,stanley kubrick,1438575913 +24293,1206,stylized,1438575952 +24293,1206,surreal,1438575959 +24293,1206,Surrealism,1438575911 +24293,1206,use of music,1438575938 +24293,1206,violence,1438575954 +24293,1206,violent,1438575929 +24293,1207,adapted from:book,1438579267 +24293,1207,bittersweet,1438579280 +24293,1207,classic,1438579289 +24293,1207,Gregory Peck,1438579272 +24293,1207,race issues,1438579282 +24293,1225,18th century,1438579796 +24293,1225,Oscar (Best Costume Design),1438579806 +24293,1237,atmospheric,1438577169 +24293,1237,black and white,1438577173 +24293,1237,Criterion,1438577176 +24293,1237,dreamlike,1438577178 +24293,1237,existentialism,1438577166 +24293,1237,Ingmar Bergman,1438577168 +24293,1237,medieval,1438577164 +24293,1258,atmospheric,1438575064 +24293,1258,dreamlike,1438575071 +24293,1258,Stanley Kubrick,1438575055 +24293,1258,suspense,1438575067 +24293,1258,visually appealing,1438575058 +24293,1274,anime,1438574788 +24293,1274,cyberpunk,1438574776 +24293,1274,noir,1438574796 +24293,1274,post-apocalyptic,1438574782 +24293,1274,stylized,1438574785 +24293,1278,farce,1438578916 +24293,1278,Gene Wilder,1438578907 +24293,1278,Mel Brooks,1438578911 +24293,1278,spoof,1438578922 +24293,1282,2D animation,1438573729 +24293,1282,artistic,1438573719 +24293,1282,beautiful,1438573760 +24293,1282,classical,1438573724 +24293,1282,classical music,1438573716 +24293,1282,Fantasy,1438573726 +24293,1345,Classic,1438657067 +24293,1350,antichrist,1438657109 +24293,1350,supernatural,1438657105 +24293,1350,Suspense,1438657112 +24293,1416,epic biopic,1438579694 +24293,1416,Madonna,1438579698 +24293,1416,mucic,1438579695 +24293,1653,atmospheric,1438577211 +24293,1653,beautiful,1438577247 +24293,1653,directorial debut,1438577269 +24293,1653,dystopia,1438577227 +24293,1653,dystopic future,1438577214 +24293,1653,Ethan Hawke,1438577255 +24293,1653,genetic engineering,1438577230 +24293,1653,genetics,1438577219 +24293,1653,inspirational,1438577238 +24293,1653,intelligent,1438577232 +24293,1653,Jude Law,1438577264 +24293,1653,neo-noir,1438577250 +24293,1653,powerful ending,1438577235 +24293,1653,realistic sci/fi,1438577222 +24293,1653,seen more than once,1438577244 +24293,1653,social commentary,1438577261 +24293,1653,thought-provoking,1438577209 +24293,1653,Uma Thurman,1438577256 +24293,1653,visually appealing,1438577205 +24293,1682,dreamlike,1438578198 +24293,1682,identity,1438578233 +24293,1682,modern fantasy,1438578204 +24293,1682,philosophy,1438578227 +24293,1682,poignant,1438578205 +24293,1682,social commentary,1438578195 +24293,1682,stylized,1438578201 +24293,1682,surreal,1438578216 +24293,1682,voyeurism,1438578208 +24293,1747,black comedy,1438578787 +24293,1747,satire,1438578790 +24293,1994,classic,1438657162 +24293,1994,ghosts,1438657165 +24293,1994,haunted house,1438657139 +24293,1994,mother-daughter themes,1438657152 +24293,1994,paranormal,1438657136 +24293,1994,television,1438657169 +24293,1997,Classic,1438575266 +24293,1997,demons,1438575258 +24293,1997,exorcism,1438657093 +24293,1997,horror,1438575264 +24293,1997,paranormal,1438657083 +24293,1997,possession,1438575250 +24293,1997,religion,1438575255 +24293,1997,satanism,1438657086 +24293,2253,surreal,1438578887 +24293,2321,alternate reality,1438578765 +24293,2321,heartwarming,1438578758 +24293,2321,poignant,1438578771 +24293,2321,stylized,1438578773 +24293,2321,surreal,1438578762 +24293,2321,whimsical,1438578768 +24293,2467,based on a book,1438657422 +24293,2467,medieval,1438657423 +24293,2467,religion,1438657433 +24293,2467,Umberto Eco,1438657427 +24293,2502,off-beat comedy,1438579372 +24293,2502,quirky,1438579369 +24293,2502,satire,1438579365 +24293,2686,beautifully filmed,1438579759 +24293,2686,multiple storylines,1438579764 +24293,2762,Bruce Willis,1438656757 +24293,2762,eerie,1438656761 +24293,2762,enigmatic,1438656738 +24293,2762,great ending,1438656748 +24293,2762,horror,1438656743 +24293,2762,m. night shyamalan,1438656730 +24293,2762,mindfuck,1438656733 +24293,2762,psychological,1438656735 +24293,2762,suspense,1438656746 +24293,2762,thriller,1438656741 +24293,2762,unique,1438656754 +24293,2810,anime,1438574034 +24293,2810,distorted reality,1438574019 +24293,2810,disturbing,1438574030 +24293,2810,Satoshi Kon,1438574029 +24293,2987,animation & live action interact,1438573838 +24293,2987,live action/animation,1438573847 +24293,3000,adventure,1438574116 +24293,3000,anime,1438574133 +24293,3000,anti-war,1438576043 +24293,3000,atmospheric,1438574121 +24293,3000,dark,1438574129 +24293,3000,dystopia,1438576051 +24293,3000,environmental,1438576036 +24293,3000,fantasy,1438574112 +24293,3000,fantasy world,1438576041 +24293,3000,gods,1438576048 +24293,3000,Hayao Miyazaki,1438574110 +24293,3000,history,1438576058 +24293,3000,Japan,1438576053 +24293,3000,Miyazaki,1438574118 +24293,3000,nature,1438576047 +24293,3000,Studio Ghibli,1438574125 +24293,3000,surreal,1438576056 +24293,3000,talking animals,1438576039 +24293,3000,visualy apealing,1438574160 +24293,3300,anti-hero,1438577604 +24293,3300,good concept,1438577608 +24293,3300,villain as hero,1438577614 +24293,3355,Emmanuelle Seigner,1438657387 +24293,3355,Mystery,1438657391 +24293,3355,Roman Polanski,1438657382 +24293,3535,Christian Bale,1438578971 +24293,3535,comical violence,1438578987 +24293,3535,dark comedy,1438578989 +24293,3535,Disturbing,1438578986 +24293,3535,humorous,1438579000 +24293,3535,Nudity (Topless),1438578992 +24293,3535,psychological,1438578975 +24293,3535,serial killer,1438578979 +24293,3863,amazing costumes,1438577667 +24293,3863,atmospheric,1438577678 +24293,3863,beautiful cinematography,1438577650 +24293,3863,dreamlike,1438577676 +24293,3863,surreal,1438577646 +24293,3863,visually stunning,1438577685 +24293,3993,BDSM,1438658665 +24293,3993,Sexualized violence,1438658671 +24293,3996,Action,1438576702 +24293,3996,Ang Lee,1438576713 +24293,3996,atmospheric,1438576715 +24293,3996,beautiful,1438576718 +24293,3996,beautifully filmed,1438576709 +24293,3996,china,1438576720 +24293,3996,colourful,1438576704 +24293,3996,dreamlike,1438576706 +24293,3996,fight scenes,1438576722 +24293,3996,martial arts,1438576699 +24293,3996,stylized,1438576711 +24293,3996,sword fight,1438576724 +24293,3996,sword fighting,1438576694 +24293,3996,tragic,1438576738 +24293,3996,visually stunning,1438576686 +24293,4210,Hannibal Lecter,1438655775 +24293,4226,cerebral,1438575148 +24293,4226,Christopher Nolan,1438575152 +24293,4226,Mindfuck,1438575140 +24293,4226,mystery,1438575154 +24293,4226,nonlinear,1438575137 +24293,4226,stylized,1438575134 +24293,4720,atmospheric,1438656712 +24293,4720,claustrophobic,1438656702 +24293,4720,gothic,1438656705 +24293,4720,haunted house,1438656700 +24293,4720,Isolation,1438656708 +24293,4720,Nicole Kidman,1438656697 +24293,4720,supernatural,1438656695 +24293,4865,19th century,1438576952 +24293,4865,Atmospheric,1438576957 +24293,4865,dark,1438576981 +24293,4865,gothic,1438576943 +24293,4865,Jack the Ripper,1438576940 +24293,4865,Johnny Depp,1438576948 +24293,4865,murder,1438576959 +24293,4865,mystery,1438576982 +24293,4865,Nudity (Full Frontal),1438576976 +24293,4865,Nudity (Rear),1438576967 +24293,4865,Nudity (Topless),1438576964 +24293,4865,police investigation,1438576972 +24293,4865,serial killer,1438576950 +24293,4865,Thriller,1438576954 +24293,4865,Victorian era,1438576969 +24293,4874,Kevin Spacey,1438578075 +24293,4874,philosophical,1438578080 +24293,4963,George Clooney,1438575353 +24293,4963,good soundtrack,1438575363 +24293,4963,heist,1438575368 +24293,4963,witty,1438575359 +24293,4973,atmospheric,1438576199 +24293,4973,Audrey Tautou,1438576263 +24293,4973,beautifully filmed,1438576197 +24293,4973,coming of age,1438576220 +24293,4973,fairy tale,1438576273 +24293,4973,fantastical,1438576258 +24293,4973,feel good movie,1438576217 +24293,4973,feel-good,1438576243 +24293,4973,French,1438576270 +24293,4973,french movie,1438576216 +24293,4973,great soundtrack,1438576282 +24293,4973,imagination,1438576268 +24293,4973,inspirational,1438576209 +24293,4973,love story,1438576224 +24293,4973,music,1438576241 +24293,4973,Paris,1438576245 +24293,4973,quirky,1438576195 +24293,4973,quirky romantic,1438576233 +24293,4973,romantic,1438576205 +24293,4973,romantic but not cheesy,1438576239 +24293,4973,stylized,1438576210 +24293,4973,surreal,1438576207 +24293,4973,sweet,1438576214 +24293,4973,visually appealing,1438576203 +24293,4973,whimsical,1438576274 +24293,4993,Action,1438575657 +24293,4993,Adventure,1438575659 +24293,4993,atmospheric,1438575661 +24293,4993,beautifully filmed,1438575629 +24293,4993,epic,1438575632 +24293,4993,fantasy,1438575648 +24293,4993,fantasy world,1438575668 +24293,4993,great soundtrack,1438575640 +24293,4993,high fantasy,1438575641 +24293,4993,music,1438575627 +24293,4993,mythology,1438575651 +24293,4993,Oscar (Best Cinematography),1438575676 +24293,4993,Peter Jackson,1438575653 +24293,4993,scenic,1438575647 +24293,4993,stylized,1438575635 +24293,4993,tolkien,1438575665 +24293,5013,ensemble cast,1438577593 +24293,5013,murder mystery,1438577589 +24293,5013,Period piece,1438577585 +24293,5013,witty,1438577583 +24293,5072,anime,1438573887 +24293,5072,visually appealing,1438573889 +24293,5146,anime,1438574675 +24293,5146,atmospheric,1438574729 +24293,5146,dark hero,1438574672 +24293,5146,post-apocolypic,1438574746 +24293,5291,Akira Kurosawa,1438579146 +24293,5291,multiple storylines,1438579154 +24293,5291,nonlinear,1438579141 +24293,5291,samurai,1438579148 +24293,5618,adventure,1438576024 +24293,5618,alternate reality,1438574233 +24293,5618,animation,1438574235 +24293,5618,anime,1438575971 +24293,5618,atmospheric,1438574241 +24293,5618,beautiful,1438574238 +24293,5618,Bechdel Test:Pass,1438576011 +24293,5618,childhood,1438575998 +24293,5618,children,1438576003 +24293,5618,coming of age,1438576022 +24293,5618,door to the different world,1438575994 +24293,5618,dragons,1438575976 +24293,5618,dreamlike,1438574239 +24293,5618,environmental,1438576017 +24293,5618,fairy tale,1438575973 +24293,5618,fantasy,1438576005 +24293,5618,fantasy world,1438574230 +24293,5618,hallucinatory,1438575987 +24293,5618,Hayao Miyazaki,1438574225 +24293,5618,imagination,1438576020 +24293,5618,imaginative,1438576018 +24293,5618,Japan,1438576001 +24293,5618,Oscar (Best Animated Feature),1438575996 +24293,5618,Studio Ghibli,1438576008 +24293,5618,surreal,1438576012 +24293,5618,weird,1438576015 +24293,5618,whimsical,1438574223 +24293,5679,creepy,1438656664 +24293,5679,disturbing,1438656666 +24293,5679,Gore Verbinski,1438656683 +24293,5679,horror,1438656668 +24293,5679,mystery,1438656673 +24293,5679,Naomi Watts,1438656681 +24293,5679,paranormal,1438656674 +24293,5679,suspense,1438656671 +24293,5791,beautiful,1438579873 +24293,5952,Action,1438576449 +24293,5952,adapted from:book,1438576474 +24293,5952,Adventure,1438576459 +24293,5952,atmospheric,1438576462 +24293,5952,based on a book,1438576454 +24293,5952,ensemble cast,1438576476 +24293,5952,Epic,1438576471 +24293,5952,fantasy,1438576431 +24293,5952,fantasy world,1438576451 +24293,5952,great soundtrack,1438576439 +24293,5952,high fantasy,1438576433 +24293,5952,magic,1438576466 +24293,5952,multiple storylines,1438576479 +24293,5952,mythology,1438576435 +24293,5952,Peter Jackson,1438576469 +24293,5952,scenic,1438576437 +24293,5952,tolkien,1438576467 +24293,5952,war,1438576461 +24293,5952,wizards,1438576458 +24293,5991,great costumes,1438579634 +24293,5991,jazz,1438579618 +24293,6093,anime,1438573953 +24293,6093,soundtrack,1438573980 +24293,6093,visuially appealing,1438573967 +24293,6350,adventure,1438574317 +24293,6350,animated masterpiece,1438574311 +24293,6350,anime,1438574308 +24293,6350,fantasy,1438574331 +24293,6350,great soundtrack,1438574324 +24293,6350,Hayao Miyazaki,1438574315 +24293,6350,imagination,1438574329 +24293,6350,visually appealing,1438574313 +24293,6754,action,1438659040 +24293,6754,Dark,1438658984 +24293,6754,goth punk,1438659003 +24293,6754,gothic,1438658982 +24293,6754,heroine in tight suit,1438659029 +24293,6754,Kate Beckinsale,1438658980 +24293,6754,soundtrack,1438659025 +24293,6754,vampires,1438659040 +24293,6754,werewolves,1438659040 +24293,6807,british comedy,1438578601 +24293,6807,hilarious,1438578606 +24293,6807,Monty Python,1438578598 +24293,6807,ridiculous,1438578609 +24293,6807,satire,1438578603 +24293,6807,silly,1438578613 +24293,6820,body horror,1438657034 +24293,6820,Canadian,1438657002 +24293,6820,coming-of-age,1438657023 +24293,6820,high school,1438657040 +24293,6820,werewolf,1438657036 +24293,6820,werewolves,1438656993 +24293,7090,amazing photography,1438576513 +24293,7090,atmospheric,1438576525 +24293,7090,Beautiful,1438576527 +24293,7090,beautifully filmed,1438576542 +24293,7090,China,1438576533 +24293,7090,cinematography,1438576512 +24293,7090,colourful,1438576529 +24293,7090,Jet Li,1438576536 +24293,7090,martial arts,1438576516 +24293,7090,passionate,1438576524 +24293,7090,stylized,1438576546 +24293,7090,visually appealing,1438576519 +24293,7090,wuxia,1438576552 +24293,7099,adventure,1438574388 +24293,7099,anime,1438574397 +24293,7099,classic,1438574392 +24293,7099,ecology,1438574394 +24293,7099,fantasy,1438574400 +24293,7099,great soundtrack,1438574378 +24293,7099,Hayao Miyazaki,1438574403 +24293,7099,post-apocalyptic,1438574407 +24293,7099,resonent themes,1438574426 +24293,7099,Studio Ghibli,1438574381 +24293,8957,original,1438657288 +24293,8957,psychological,1438657282 +24293,26662,feel-good,1438574299 +24293,26662,Hayao Miyazaki,1438574083 +24293,26662,magic,1438574296 +24293,26662,Studio Ghibli,1438574088 +24293,27731,anime,1438574264 +24293,27731,cats,1438574272 +24293,27731,imagination,1438574282 +24293,27731,Studio Ghibli,1438574270 +24293,31193,childhood memories,1438574571 +24293,31658,anime,1438574199 +24293,31658,dreamlike,1438574190 +24293,31658,romantic,1438574205 +24293,31658,steampunk,1438574196 +24293,31658,stylized,1438574193 +24293,31658,whimsical,1438574187 +24293,33794,action,1438576311 +24293,33794,adapted from:comic,1438576343 +24293,33794,alter ego,1438576347 +24293,33794,atmospheric,1438576300 +24293,33794,based on a comic,1438576345 +24293,33794,based on comic,1438576338 +24293,33794,batman,1438576317 +24293,33794,Christian Bale,1438576319 +24293,33794,comic,1438576327 +24293,33794,comic book,1438576336 +24293,33794,dark,1438576297 +24293,33794,DC,1438576349 +24293,33794,melancholy,1438576309 +24293,33794,Michael Caine,1438576293 +24293,33794,Morgan Freeman,1438576295 +24293,33794,ninja,1438576308 +24293,33794,philosophical,1438576329 +24293,33794,stylized,1438576334 +24293,33794,super hero,1438576325 +24293,33794,super-hero,1438576339 +24293,33794,superhero,1438576322 +24293,33794,thought-provoking,1438576333 +24293,33794,vigilante,1438576341 +24293,38038,claymation,1438574825 +24293,38038,quirky,1438574830 +24293,38038,satirical,1438574833 +24293,38038,Wallace & Gromit,1438574827 +24293,38061,black comedy,1438578734 +24293,38061,clever,1438578727 +24293,38061,fast-paced dialogue,1438578731 +24293,38061,Nudity (Topless),1438578721 +24293,38061,Robert Downey Jr.,1438578718 +24293,38061,satire,1438578725 +24293,40732,claustrophobic,1438657312 +24293,40732,suspense,1438657316 +24293,40732,tense,1438657314 +24293,42738,action,1438658961 +24293,42738,dark fantasy,1438658928 +24293,42738,female lead,1438658945 +24293,42738,gothic,1438658949 +24293,42738,heroine in tight suit,1438659054 +24293,42738,Kate Beckinsale,1438659052 +24293,42738,Nudity (Topless),1438659056 +24293,42738,vampire,1438658931 +24293,42738,vampires,1438658957 +24293,42738,werewolves,1438658955 +24293,44195,Aaron Eckhart,1438578646 +24293,44195,clever,1438578633 +24293,44195,corruption,1438578642 +24293,44195,dark comedy,1438578658 +24293,44195,dark humor,1438578629 +24293,44195,funny,1438578639 +24293,44195,Lobbyism,1438578655 +24293,44195,politics,1438578650 +24293,44195,satire,1438578635 +24293,44195,social commentary,1438578626 +24293,45081,atmospheric,1438576824 +24293,45081,dark,1438576835 +24293,45081,disturbing,1438576826 +24293,45081,filmed in Canada,1438576878 +24293,45081,horror,1438576843 +24293,45081,mother-daugher themes,1438576903 +24293,45081,strong female lead,1438576917 +24293,45081,stylized,1438576822 +24293,45880,beautful costumes,1438577874 +24293,45880,cinematography,1438577882 +24293,45880,costume drama,1438577837 +24293,45880,great soundtrack,1438577845 +24293,45880,historical,1438577840 +24293,45880,isolation,1438577843 +24293,45880,nudity (rear),1438577836 +24293,48774,atmospheric,1438575563 +24293,48774,dystopia,1438575538 +24293,48774,grim,1438575556 +24293,48774,gritty,1438575546 +24293,48774,Michael Caine,1438575536 +24293,48774,social commentary,1438575544 +24293,48774,thought-provoking,1438575540 +24293,48774,visually appealing,1438575542 +24293,48780,Christian Bale,1438575025 +24293,48780,Christopher Nolan,1438574999 +24293,48780,David Bowie,1438575016 +24293,48780,enigmatic,1438575004 +24293,48780,Michael Caine,1438575028 +24293,48780,psychological,1438575014 +24293,48780,Scarlett Johansson,1438575033 +24293,48780,thriller,1438575007 +24293,51540,based on a true story,1438579114 +24293,51540,cinematography,1438579108 +24293,51540,David Fincher,1438579096 +24293,51540,serial killer,1438579112 +24293,51540,slow,1438579102 +24293,51540,suspense,1438579099 +24293,51540,true story,1438579105 +24293,51662,action,1438575747 +24293,51662,amazing photography,1438575692 +24293,51662,artistic,1438575701 +24293,51662,atmospheric,1438575698 +24293,51662,blood,1438575729 +24293,51662,comic book,1438575744 +24293,51662,computer animation,1438575740 +24293,51662,male nudity,1438575724 +24293,51662,narrated,1438575733 +24293,51662,Nudity (Topless),1438575726 +24293,51662,rape,1438575721 +24293,51662,stylized,1438575694 +24293,51662,sword fight,1438575703 +24293,51662,war,1438575742 +24293,51662,Zack Snyder,1438575731 +24293,52885,alternate reality,1438577365 +24293,52885,anime,1438577363 +24293,52885,beautiful animation,1438577356 +24293,52885,dreamlike,1438577372 +24293,52885,dreams,1438577374 +24293,52885,hallucinatory,1438577362 +24293,52885,psychedelic,1438577367 +24293,52885,Satoshi Kon,1438577358 +24293,52885,surreal,1438577370 +24293,53953,supernatural,1438578022 +24293,54259,author:Neil Gaiman,1438577110 +24293,54259,based on a book,1438577092 +24293,54259,british,1438577117 +24293,54259,crude humor,1438577141 +24293,54259,fairy tale,1438577098 +24293,54259,fairy tale romance,1438577124 +24293,54259,fantasy,1438577101 +24293,54259,Gay stereotypes,1438577120 +24293,54259,Michelle Pfeiffer,1438577108 +24293,54259,Neil Gaiman,1438577135 +24293,54259,visually appealing,1438577104 +24293,54259,whimsical,1438577094 +24293,55118,atmospheric,1438577401 +24293,55118,bloody,1438577430 +24293,55118,dark hero,1438577427 +24293,55118,David Cronenberg,1438577422 +24293,55118,disturbing,1438577412 +24293,55118,father-son relationship,1438577417 +24293,55118,male nudity,1438577404 +24293,55118,Naomi Watts,1438577391 +24293,55118,Nudity (Topless),1438577424 +24293,55118,organized crime,1438577410 +24293,55118,prostitution,1438577402 +24293,55118,rape,1438577399 +24293,55118,Russian mafia,1438577394 +24293,55118,tense,1438577429 +24293,55118,Viggo Mortensen,1438577419 +24293,55118,violence,1438577392 +24293,55118,violent,1438577413 +24293,56757,19th century,1438655727 +24293,56757,based on a play,1438655716 +24293,56757,Broadway,1438655714 +24293,56757,dark,1438655734 +24293,56757,dark comedy,1438655708 +24293,56757,Depp & Burton,1438655722 +24293,56757,gothic,1438655732 +24293,56757,great cinematography,1438655710 +24293,56757,Musical,1438655730 +24293,56757,Tim Burton,1438655705 +24293,56757,visually appealing,1438655703 +24293,58559,action,1438575429 +24293,58559,Atmospheric,1438575417 +24293,58559,Christopher Nolan,1438575412 +24293,58559,dark,1438575433 +24293,58559,Heath Ledger,1438575414 +24293,58559,Joker,1438575426 +24293,58559,music,1438575437 +24293,59387,beautiful,1438659222 +24293,59387,beautiful cinematography,1438659216 +24293,59387,beautiful costumes,1438659246 +24293,59387,cinematography,1438659220 +24293,59387,fantasy,1438659255 +24293,59387,story-in-a-story,1438659212 +24293,59387,storytelling,1438659261 +24293,59387,stylized,1438659218 +24293,59387,surreal,1438659209 +24293,59387,visually appealing,1438659214 +24293,59387,visually stunning,1438659207 +24293,60950,Javier Bardem,1438659138 +24293,60950,love triangles,1438659141 +24293,60950,relationships,1438659146 +24293,60950,Scarlett Johansson,1438659134 +24293,60950,sexuality,1438659128 +24293,60950,Woody Allen,1438659136 +24293,61240,1980s,1438576376 +24293,61240,adolescence,1438576382 +24293,61240,atmospheric,1438576390 +24293,61240,based on a book,1438576399 +24293,61240,Beautiful,1438576372 +24293,61240,bittersweet,1438576391 +24293,61240,bullying,1438576395 +24293,61240,coming of age,1438576414 +24293,61240,dark,1438576417 +24293,61240,horror,1438576384 +24293,61240,love story,1438576378 +24293,61240,strange,1438576407 +24293,61240,swedish,1438576410 +24293,61240,touching,1438576388 +24293,61240,vampire,1438576404 +24293,61240,vampires,1438576380 +24293,61323,Coen Brothers,1438578677 +24293,61323,dark comedy,1438578674 +24293,61323,George Clooney,1438578688 +24293,61323,John Malkovich,1438578686 +24293,61323,satire,1438578679 +24293,61323,Tilda Swinton,1438578682 +24293,61323,weird,1438578690 +24293,64285,claymation,1438573803 +24293,64285,Wallace & Gromit,1438573801 +24293,65796,anime,1438573644 +24293,65796,classic,1438573652 +24293,65796,emotinally moving,1438573684 +24293,67255,bisexual,1438657496 +24293,67255,cinematography,1438657455 +24293,67255,crime,1438657487 +24293,67255,investigation,1438657480 +24293,67255,Noomi Rapace,1438657451 +24293,67255,Nudity (Topless - Notable),1438657458 +24293,67255,rape,1438657453 +24293,67255,suspense,1438657466 +24293,67255,swedish,1438657492 +24293,67255,violence,1438657494 +24293,72226,animation,1438574492 +24293,72226,George Clooney,1438574478 +24293,72226,great cast,1438574484 +24293,72226,hilarious,1438574494 +24293,72226,quirky,1438574487 +24293,72226,stop motion,1438574474 +24293,72226,visually appealing,1438574480 +24293,73854,classic,1438573934 +24293,73854,stopmotion,1438573928 +24293,74458,asylum,1438575841 +24293,74458,atmospheric,1438575816 +24293,74458,Ben Kingsley,1438575822 +24293,74458,cinematography,1438575825 +24293,74458,insanity,1438575831 +24293,74458,intense,1438575787 +24293,74458,island,1438575798 +24293,74458,isolation,1438575804 +24293,74458,Leonardo DiCaprio,1438575771 +24293,74458,Mark Ruffalo,1438575821 +24293,74458,Martin Scorsese,1438575828 +24293,74458,Mental Institution,1438575813 +24293,74458,mystery,1438575768 +24293,74458,psychological,1438575783 +24293,74458,Psychological Thriller,1438575774 +24293,74458,reality or imagination?,1438575793 +24293,74458,stylized,1438575807 +24293,74458,surreal,1438575815 +24293,74458,thought-provoking,1438575790 +24293,81845,1930s,1438580069 +24293,81845,cinematography,1438580074 +24293,81845,Colin Firth,1438580042 +24293,81845,complex characters,1438580040 +24293,81845,excellent script,1438580047 +24293,81845,Geoffrey Rush,1438580063 +24293,81845,great performances,1438580056 +24293,81845,historical,1438580044 +24293,81845,Oscar (Best Picture),1438580051 +24293,82459,Coen Brothers,1438577466 +24293,82459,Jeff Bridges,1438577468 +24293,82459,justice,1438577488 +24293,82459,Matt Damon,1438577479 +24293,82459,revenge,1438577476 +24293,82461,action choreography,1438577759 +24293,82461,bad acting,1438577732 +24293,82461,bad plot,1438577739 +24293,82461,cyberpunk,1438577742 +24293,82461,daft punk,1438577725 +24293,82461,Jeff Bridges,1438577752 +24293,82461,soundtrack,1438577711 +24293,82461,stylized,1438577729 +24293,82461,techno,1438577736 +24293,82461,visually appealing,1438577717 +24293,85788,cliche,1438657192 +24293,85788,demons,1438657194 +24293,85788,ghosts,1438657200 +24293,85788,haunted house,1438657187 +24293,85788,no CGI,1438657196 +24293,85788,supernatural,1438657183 +24293,86882,bittersweet,1438658744 +24293,86882,cinematography,1438658737 +24293,86882,magical realism,1438658749 +24293,86882,nostalgic,1438658764 +24293,86882,quirky,1438658757 +24293,86882,romance,1438658762 +24293,86882,thought-provoking,1438658746 +24293,86882,Tom Hiddleston,1438658782 +24293,86882,whimsical,1438658750 +24293,86882,witty,1438658760 +24293,86882,Woody Allen,1438658752 +24293,97188,disturbing,1438656651 +24293,97188,occult,1438656578 +24293,97188,supernatural,1438656640 +24293,99149,Anne Hathaway,1438579724 +24293,99149,great soundtrack,1438579720 +24293,99149,singing,1438579735 +24293,101864,atmospheric,1438576662 +24293,101864,cliche ending,1438576651 +24293,101864,interesting concept,1438576647 +24293,101864,post-apocalyptic,1438576654 +24293,103688,Horror,1438655624 +24293,103688,paranormal investigators,1438655627 +24293,103688,supernatural,1438655630 +24293,107771,atmospheric,1438576765 +24293,107771,Tilda Swinton,1438576778 +24293,107771,Tom Hiddleston,1438576776 +24293,109848,beautiful photography,1438577956 +24293,109848,creepy,1438577970 +24293,109848,Kubrick-like,1438577981 +24293,109848,little dialogue,1438577985 +24293,109848,male nudity,1438577961 +24293,109848,nudity (full frontal),1438577967 +24293,109848,Scarlett Johansson,1438577963 +24293,109848,unnerving,1438577982 +24293,109848,visually appealing,1438577965 +24293,112515,atmospheric,1438577781 +24293,112515,horror,1438577793 +24293,112515,mother-son relationship,1438577778 +24293,112515,psychological,1438577783 +24293,112515,supernatural,1438577774 +24293,115877,simpsons,1438573905 +24293,116797,Alan Turing,1438658714 +24293,116797,Benedict Cumberbatch,1438658706 +24293,116797,historical inaccuracy,1438658720 +24293,116797,Keira Knightley,1438658709 +24293,121231,Creepy,1438579428 +24293,121231,horror,1438579425 +24293,121231,Pacing,1438579430 +24293,121231,Psychological,1438579421 +24293,121231,score,1438579443 +24293,121231,Supernatural,1438579419 +24293,130840,lovecraftian,1438657555 +24293,130840,slow build,1438657567 +24301,150,tom hanks is great,1139336181 +24301,165,predictable,1139336310 +24301,333,very funny,1139336170 +24301,356,well done,1139336132 +24301,364,disney's best,1139336094 +24301,367,ok,1139335858 +24301,440,decent to see once,1139336195 +24301,500,fun family movie,1139337417 +24301,588,excellent,1139336032 +24301,594,movie innovator,1139337007 +24301,595,one of disney's best,1139336236 +24301,647,just see it,1139337518 +24301,805,poignant,1139336616 +24301,832,great,1139337206 +24301,832,Mel Gibson,1139337206 +24301,1013,okay,1139335956 +24301,1027,funny,1139337546 +24301,1027,good,1139337543 +24301,1028,must like musicals,1139336926 +24301,1028,well done,1139336926 +24301,1061,okay once,1139337156 +24301,1097,good movie,1139336225 +24301,1101,good,1139336422 +24301,1101,predictable,1139336422 +24301,1302,good,1139336294 +24301,1378,funny,1139337235 +24301,1393,okay,1139336357 +24301,1580,enjoyable,1139336017 +24301,1754,should've got more attention brilliant,1139337139 +24301,1777,Adam Sandler's best,1139336264 +24301,2000,okay once,1139336004 +24301,2011,good,1139336843 +24301,2058,ok,1139336832 +24301,2058,predictable,1139336832 +24301,2081,well done,1139336584 +24301,2083,fun movie,1139337048 +24301,2115,good movie,1139336156 +24301,2125,good date movie,1139337189 +24301,2302,enjoyable,1139336330 +24301,2353,exciting,1139336458 +24301,2394,excellent,1139336895 +24301,2394,inspiring,1139336895 +24301,2420,good,1139336486 +24301,2423,funny,1139336508 +24301,2671,good date movie,1139337300 +24301,2687,good,1139336882 +24301,2687,good soundtrack,1139336881 +24301,2707,crazy ending,1139337458 +24301,2763,boring,1139337225 +24301,2763,horrible,1139337225 +24301,2797,good effort from tom hanks,1139336112 +24301,3087,funny,1139336465 +24301,3107,well done,1139337121 +24301,3147,excellent,1139336047 +24301,3174,average,1139337392 +24301,3178,excellent,1139336498 +24301,3255,fun,1139336738 +24301,3450,funny,1139336819 +24301,3510,VERY good,1139336345 +24301,3753,awesome,1139336575 +24301,3753,Mel Gibson,1139336575 +24301,3916,excellent,1139336213 +24301,3980,excellent - must see,1139335940 +24301,4016,funny,1139336203 +24301,4019,brilliant,1139336721 +24301,4022,must see,1139336751 +24301,4022,very good,1139336751 +24301,4223,good war movie,1139336769 +24301,4321,funny,1139336473 +24301,4448,excellent,1139337077 +24301,4448,fast paced,1139337077 +24301,4448,intense,1139337077 +24301,4557,interesting,1139336781 +24301,4776,worst denzel movie ever,1139337338 +24301,4880,poignant but boring,1139337325 +24301,4889,intense,1139337287 +24301,4963,witty,1139336391 +24301,4995,intelligent,1139336949 +24301,5064,good,1139336371 +24301,5152,best one yet,1139336913 +24301,5152,war movie,1139336913 +24301,5218,best animated movie,1139337271 +24301,5267,fun,1139337428 +24301,5267,inspiring,1139337428 +24301,5502,scary,1139336437 +24301,5955,ok,1139336971 +24301,5955,tried too hard,1139336971 +24301,5989,fun movie,1139336381 +24301,6323,pathetic effort,1139337471 +24301,6378,exciting,1139336402 +24301,6565,don't like toby though,1139336989 +24301,6565,excellent,1139336989 +24301,6862,ok,1139336697 +24301,6879,boring,1139337248 +24301,6936,best christmas movie,1139336600 +24301,6944,decent,1139335923 +24301,7386,excellent,1139336281 +24301,8360,well done,1139336058 +24301,8528,funny,1139337177 +24301,8529,very worthwhile,1139337508 +24301,8917,waste of time,1139337028 +24301,8965,very good,1139337096 +24301,8972,surprisingly good,1139337258 +24301,36529,boring,1139336800 +24301,36529,poignant,1139336800 +24301,41566,brilliant - best movie,1139335992 +24303,593,Anthony hopkins,1401071847 +24303,593,Jodie foster,1401071825 +24344,103384,About half way through it started turning into a live action cartoon.,1388109503 +24407,1,阮一鸣,1143035853 +24407,7149,kate winslet's tits,1143035623 +24407,7149,Keanu Reaves,1143035623 +24409,1356,Star Trek,1413433907 +24409,4896,good versus evil,1413434484 +24409,4896,Wizards,1413434490 +24409,5349,super-hero,1413431998 +24409,5349,superhero,1413432002 +24409,5349,superheroes,1413432005 +24410,1197,classic,1185425390 +24410,1923,classic!!!,1182815251 +24410,3994,coool,1185425609 +24410,4993,that was cool.,1182815215 +24410,5502,great,1185425649 +24410,5502,unstupid,1185425649 +24410,6539,excellent! great story and cinetmatography,1182815311 +24410,6863,hysterical,1185425448 +24410,6863,not only for kids,1185425459 +24410,8376,funnnnnnnnny,1185425355 +24410,8783,awesome,1185425537 +24410,8783,good soundtrack,1185425573 +24410,8783,one of the best scenes in filmmaking history,1185425573 +24410,8783,unstupid,1185425573 +24410,40629,flowed,1182815125 +24410,40629,I loved it. Well acted,1182815125 +24410,40629,not too many characters like the old one! beautiful to watch,1182815138 +24410,45722,definitley not as good as first,1182815349 +24410,45730,greeaat,1185425493 +24410,52867,hysterical,1187918809 +24410,53996,cool,1185425416 +24412,316,atmospheric,1329513399 +24412,316,guilty pleasure,1329513389 +24412,316,mythology,1329513404 +24412,316,time travel,1329513386 +24412,924,artificial intelligence,1330509062 +24412,924,atmospheric,1330509077 +24412,924,philosophical,1330509072 +24412,924,space,1330509083 +24412,1197,comedy,1329513503 +24412,1197,fairy tale,1329513501 +24412,1197,witty,1329513512 +24412,1584,existentialism,1329580733 +24412,1584,space travel,1329580724 +24412,1625,mindfuck,1450216249 +24412,1625,Mystery,1450216281 +24412,1625,neo-noir,1450216274 +24412,1625,psychological,1450216280 +24412,1625,twist ending,1450216241 +24412,1876,apocalypse,1329594453 +24412,1876,astronomy,1329594471 +24412,1876,catastrophe,1329594456 +24412,1876,natural disaster,1329594476 +24412,2232,existentialism,1450215914 +24412,2232,mindfuck,1450215921 +24412,2232,scifi,1450215918 +24412,2571,alternate reality,1329597866 +24412,2571,artificial intelligence,1329597868 +24412,2571,cyberpunk,1329597834 +24412,2571,dystopia,1329597837 +24412,2571,philosophical,1329597847 +24412,2571,philosophy,1329597859 +24412,2571,sci-fi,1329597864 +24412,2571,virtual reality,1329597862 +24412,4226,memory,1330429046 +24412,4226,psychology,1330429042 +24412,4226,stylized,1330429049 +24412,4226,twist ending,1330429033 +24412,34405,dystopia,1329513303 +24412,34405,space,1329513296 +24412,34405,witty,1329513297 +24412,48780,complicated,1330057163 +24412,48780,teleportation,1330057166 +24412,48780,twist ending,1330057156 +24412,60684,alternate history,1418242297 +24412,60684,alternate reality,1329513328 +24412,60684,author:Alan Moore,1418242289 +24412,60684,cinematography,1329513372 +24412,60684,dystopia,1329513325 +24412,60684,great soundtrack,1329513343 +24412,60684,music,1329513362 +24412,60684,Nudity (Topless),1418242286 +24412,60684,sci-fi,1418242278 +24412,60684,social commentary,1329513369 +24412,60684,superhero,1418242271 +24412,60684,visually appealing,1418242273 +24412,61024,buddy movie,1418242165 +24412,61024,comedy,1418242176 +24412,61024,Danny McBride,1418242189 +24412,61024,James Franco,1418242172 +24412,61132,parody,1340992291 +24412,61132,Robert Downey Jr.,1340992289 +24412,61132,satire,1340992293 +24412,61132,satire:Hollywood insiders,1340992307 +24412,69757,artistic,1330350800 +24412,69757,Funny,1330350823 +24412,69757,humor,1330350815 +24412,69757,humorous,1330350819 +24412,69757,intelligent,1330350826 +24412,69757,quirky,1330350829 +24412,69757,stylized,1330350836 +24412,69951,alternate reality,1330270063 +24412,69951,escapism,1330270069 +24412,69951,hanging,1330270069 +24412,69951,Johnny Depp,1330270059 +24412,73017,dialogue,1329513433 +24412,73017,Robert Downey Jr.,1329513424 +24412,73017,Victorian era,1329513437 +24412,74228,atmospheric,1451857597 +24412,74228,mystery,1451857596 +24412,74228,puzzle,1451857611 +24412,74228,sci fi,1451857609 +24412,74228,scifi,1451857614 +24412,74228,strong female lead,1451857607 +24412,74228,Surreal,1451857592 +24412,74228,time loop,1451857594 +24412,74228,time travel,1451857601 +24412,74228,twist ending,1451857600 +24412,74228,twists & turns,1451857604 +24412,79702,funny,1329513470 +24412,79702,quirky,1329513466 +24412,79702,stylized,1329513449 +24412,79702,video games,1329513450 +24412,79702,visually appealing,1329513460 +24412,85510,Cinematography,1347813535 +24412,85510,insanity,1347813531 +24412,85510,mindfuck,1347813529 +24412,85510,reality or imagination?,1347813527 +24412,85510,stylized,1347813539 +24412,85510,Surreal,1347813541 +24412,89745,great humor,1336041239 +24412,89745,great screenplay,1336041234 +24412,89745,joss whedon,1336041220 +24412,89745,Robert Downey Jr.,1336041214 +24412,91529,Anne Hathaway,1345635188 +24412,91529,Christian Bale,1345635195 +24412,91529,Christopher Nolan,1345635174 +24412,91529,great ending,1345635178 +24412,91529,plot twist,1345635182 +24412,91658,atheism,1349865172 +24412,91658,David Fincher,1349865156 +24412,91658,mystery,1349865158 +24412,91658,suspense,1349865159 +24412,93805,steampunk,1340559641 +24412,93840,clever,1334797193 +24412,93840,funny,1334797186 +24412,93840,joss whedon,1334796951 +24412,93840,meta,1334796899 +24412,93840,original,1334797202 +24412,93840,original plot,1334797191 +24412,99007,comedic horror,1361057710 +24412,99007,cured by love/hope,1361057689 +24412,99007,unconventional,1361057707 +24412,99007,unconventional zombies,1361057700 +24412,99007,zombies,1361057693 +24412,99114,Funny,1361057411 +24412,99114,Great performances,1361057414 +24412,99114,Leonardo DiCaprio,1361057409 +24412,99114,Quentin Tarantino,1361057405 +24412,99114,Samuel L. Jackson,1361057407 +24412,102123,apocalypse,1418242228 +24412,102123,Danny McBride,1418242240 +24412,102123,James Franco,1418242231 +24412,102123,Michael Cera,1418242226 +24412,102125,Gwyneth Paltrow,1368444251 +24412,102125,humour,1368444250 +24412,102125,Iron Man,1368444254 +24412,102125,Robert Downey Jr.,1368444247 +24412,102125,Shane Black,1368444273 +24412,107406,post-apocalyptic,1450216147 +24412,107406,sci-fi,1450216158 +24412,107406,social commentary,1450216144 +24412,110591,horror,1441980497 +24412,110591,mindfuck,1441980498 +24412,113741,intelligent,1450215896 +24412,113741,mind bending,1450215890 +24412,113741,mystery,1450215893 +24412,113741,parallel universe,1450215897 +24412,113741,sci-fi,1451857647 +24412,115713,AI,1450216024 +24412,115713,philosophical,1450216013 +24412,115713,sci-fi,1450215999 +24412,115713,thought provoking,1450216015 +24412,122882,action,1450216079 +24412,122882,dystopian,1450216104 +24412,122882,post apocalypse,1450216078 +24412,122882,post apocalyptic,1450216091 +24412,122882,sci-fi,1450216092 +24412,122882,Tom Hardy,1450216123 +24412,122882,visually appealing,1450216082 +24412,122886,Fan service,1452593636 +24412,122886,female protagonist,1452593643 +24412,122886,Plot Recycling,1452593631 +24412,122886,Star Wars,1452593648 +24419,1047,ironic,1192376198 +24419,1562,misunderstood comedy,1144673749 +24419,7419,dark comedy,1192376690 +24419,54290,Why the terrorists hate us,1186897249 +24419,56176,Why the terrorists hate us,1202710571 +24419,57326,masterpiece,1202710467 +24419,57532,Why the terrorists hate us,1202710444 +24428,6286,atmospheric,1241727463 +24428,40148,guy ritchie,1241727376 +24428,40148,Jason Statham,1241727383 +24428,40148,MAFIA,1241727389 +24437,31148,bab cinema,1220711385 +24437,38198,bab cinema,1220711077 +24437,42094,bab cinema,1220711951 +24437,42602,bab cinema,1220710314 +24437,44301,bab cinema,1220711113 +24437,44633,bab cinema,1220711655 +24437,44849,bab cinema,1220711224 +24437,46839,bab cinema,1220711758 +24437,48214,bab cinema,1220711042 +24437,48262,bab cinema,1220711426 +24437,48741,bab cinema,1220710986 +24437,50912,bab cinema,1220711797 +24437,53956,bab cinema,1220712063 +24437,55063,bab cinema,1220709996 +24437,55063,to see,1220709996 +24437,55451,bab cinema,1220710842 +24437,55726,bab cinema,1220710491 +24437,56563,bab cinema,1220711538 +24437,58105,bab cinema,1220710774 +24437,58303,bab cinema,1220710710 +24437,58306,bab cinema,1220710674 +24437,58309,bab cinema,1220710644 +24437,58351,bab cinema,1220710425 +24437,58381,to see,1220709857 +24437,59478,bab cinema,1220710356 +24437,60137,bab cinema,1220710009 +24437,60137,to see,1220710009 +24437,60291,to see,1220707832 +24437,60766,to see,1220708425 +24467,541,Philip K. Dick,1146883537 +24467,593,what are you stuffed with?,1170129751 +24467,680,merde,1144902484 +24467,702,energy,1142298455 +24467,735,religious tripe,1144902289 +24467,924,Arthur C. Clarke,1146883657 +24467,950,post-prohibition,1142298297 +24467,1206,Anthony Burgess,1146883766 +24467,1252,Oedipus,1142297918 +24467,1260,Id,1142298067 +24467,2074,strangely compelling,1144888818 +24467,2129,far flung,1144902911 +24467,2692,time travel,1142403642 +24467,3221,strangely compelling,1144902845 +24467,3221,succulent,1142298586 +24467,3224,Abe Kobo,1142403389 +24467,3503,brain,1142298104 +24467,3503,Stanislav Lem,1170476238 +24467,3510,time travel,1170647289 +24467,3729,blaxploitation,1146883383 +24467,3947,existential,1144886063 +24467,3947,John Osborne,1144886124 +24467,3947,Performance,1144886168 +24467,3957,Navajo,1143481998 +24467,3959,time travel,1142403687 +24467,4234,cheesey,1144902575 +24467,4349,Armenian,1144902960 +24467,4370,2001 inverted,1142298254 +24467,4370,Brian Aldiss,1142403206 +24467,4538,Look'it the moon!,1170476289 +24467,4777,energy,1142298409 +24467,4777,strangely compelling,1146881127 +24467,4837,time capsule,1147829292 +24467,4930,spies,1158645250 +24467,5033,spies,1158645200 +24467,5060,Suicide is painless,1170132349 +24467,5120,intelligent,1143764060 +24467,5366,exploitation,1144902244 +24467,5445,Philip K. Dick,1170131850 +24467,5475,merde,1144902526 +24467,5793,christian pabulum,1170478743 +24467,5940,special food,1170129372 +24467,6234,Id,1142298779 +24467,6257,a Young Olaf Palme,1170132198 +24467,6257,fake documentary,1170179776 +24467,7022,exploitation,1144902322 +24467,7587,merde,1144902553 +24467,7762,intelligent,1142298164 +24467,7762,spy,1170132500 +24467,7818,Swiftmobile,1170479122 +24467,7932,intelligent,1142298762 +24467,7959,exploitation,1144888399 +24467,8602,energy,1142298428 +24467,8660,Gustav Adolf,1170479646 +24467,8660,History,1170479646 +24467,8772,spies,1158645293 +24467,8914,time travel,1142403593 +24467,25996,Best Performance: Judy Garland as Esther Blodgett aka Vicki Lester,1170130365 +24467,26122,so cool,1170480152 +24467,26150,intelligent,1146883501 +24467,26172,metaphysical,1142403522 +24467,26211,Pink Floyd,1170132010 +24467,26231,existential,1160453646 +24467,26258,existentialism,1159677653 +24467,26350,existential,1160453722 +24467,31086,need more fukasaku films,1170481148 +24467,32375,browbeatingly boring,1170477997 +24467,32395,strangely compelling,1146881139 +24469,260,good vs evil,1433993543 +24487,3793,Best Writing,1206592069 +24487,3793,Cool.,1206592068 +24487,53123,good music,1206591620 +24487,53123,songwriting,1206591525 +24487,55820,Oscar (Best Picture),1206593819 +24487,55820,sure thing,1206593847 +24521,318,inspirational,1191827779 +24549,6934,Jesus,1188567964 +24549,6934,Matrix,1188567964 +24549,6934,trilogy,1188567964 +24549,32587,Jessica Alba,1188567987 +24549,32587,Quentin Tarantino,1188567987 +24585,105386,cynical,1422483540 +24585,105386,doll,1422483540 +24585,105386,horror,1422483540 +24585,105386,trash,1422483540 +24585,120466,AI,1450650383 +24585,120466,artificial intelligence,1450650346 +24585,120466,bad writing,1450650362 +24585,120466,product placement,1450650355 +24604,207,cheesy,1245807402 +24604,207,keanu reeves,1245807402 +24604,207,romance,1245807402 +24604,1498,period piece,1245806730 +24604,1498,romance,1245806730 +24604,1676,giant space bugs,1245806470 +24604,1676,sci-fi,1245806481 +24604,2355,childhood flashback,1245806289 +24604,3176,creepy,1245806440 +24604,3176,disturbing,1245806440 +24604,4027,quirky,1245806342 +24604,6268,realistic,1245806765 +24604,6268,romance,1245806765 +24604,6502,happy ending,1245806561 +24604,6502,romance,1245806561 +24604,6502,sci-fi,1245806561 +24604,6502,zombies,1245806561 +24604,6545,period piece,1245807005 +24604,6545,romance,1245807005 +24604,6942,Emma Thompson,1245806640 +24604,6942,Keira Knightley,1245806645 +24604,6942,love,1245806649 +24604,6942,multiple storylines,1245806638 +24604,6942,Romance,1245806642 +24604,7147,ewan macgregor,1245806912 +24604,7147,quirky,1245806912 +24604,8638,paris,1245807141 +24604,8638,romance,1245807142 +24604,8784,coming of age,1245806511 +24604,8784,quirky,1245806511 +24604,8784,romance,1245806515 +24604,34405,sci-fi,1245807639 +24604,34405,space,1245807639 +24604,34405,western,1245807639 +24604,39886,good camera work,1245806851 +24604,39886,heartbreaking end,1245806852 +24604,39886,multiple storylines,1245806851 +24604,39886,realistic,1245806851 +24604,39886,romance,1245806852 +24604,41285,disturbing,1245807272 +24604,41285,woody allen,1245807272 +24604,48738,james mcavoy,1245807503 +24604,49772,edward norton,1245807036 +24604,49772,heartbreaking,1245807036 +24604,49772,naomi watts,1245807036 +24604,49772,period piece,1245807036 +24604,51694,james mcavoy,1245808454 +24604,55052,heartbreaking,1245806933 +24604,55052,james Mcavoy,1245806933 +24604,55052,romance,1245806933 +24604,59018,humanity,1245806885 +24604,60069,quirky,1245806537 +24604,60069,romance,1245806537 +24604,60069,sci-fi,1245806537 +24604,60069,totally awesome,1245806537 +24604,61167,incongruous,1245806814 +24604,61167,religion,1245806814 +24604,61167,romance,1245806815 +24604,63082,dreamlike,1245806398 +24604,63082,romance,1245806378 +24604,68358,sci-fi,1245806359 +24624,3083,convoluted,1414043965 +24624,3083,Penelope Cruz,1414043920 +24624,105355,Bechdel Test:Pass,1414040273 +24624,105355,homosexuality,1414040269 +24624,105355,Nudity (Full Frontal),1414040280 +24624,106766,boring,1414038743 +24624,106766,folk music,1414038740 +24638,47999,library,1174954551 +24657,116738,comedy,1421244189 +24657,116738,zombie,1421244182 +24682,94,Natalie Portman,1427639142 +24682,121298,comedy,1421498593 +24682,121298,romance,1421498593 +24682,121298,surreal,1421498593 +24682,121300,disability,1423926662 +24682,121300,friendship,1423926662 +24682,121300,love,1423926662 +24682,125535,parody,1423241468 +24682,125535,slapstick,1423241468 +24682,125535,zombies,1423241468 +24688,495,non-simulated sex,1413808545 +24688,1080,hilarious,1272629164 +24688,1080,parody,1272629168 +24688,1483,based on a book,1272632044 +24688,1884,Hunter S. Thompson,1272629321 +24688,1897,photography,1272630614 +24688,3677,photography,1272630319 +24688,4349,depressing,1272631745 +24688,4349,great book,1272631708 +24688,5225,lifelike,1272630077 +24688,5225,Nudity (Full Frontal - Notable),1272629907 +24688,6672,photographer,1272630347 +24688,6672,photography,1272630338 +24688,8981,London,1272630297 +24688,8981,photography,1272630252 +24688,44974,disturbing,1272629798 +24688,48385,comedy,1272631849 +24688,48385,racism,1272631870 +24688,48385,social commentary,1272631830 +24688,49666,photography,1272630205 +24688,49666,protagonist is a photographer,1272630216 +24688,105355,bittersweet,1393588108 +24688,105355,editing,1393588166 +24688,105355,too long,1393588120 +24700,318,atmospheric,1414042704 +24700,318,psychology,1414042680 +24700,318,twist ending,1414042697 +24713,277,loved the original,1188873131 +24713,1907,fabulous,1188873188 +24713,4447,really funny,1188873178 +24728,2194,historically inaccurate,1304907421 +24728,7222,cannabis,1445388660 +24728,7222,Cult classic,1444872343 +24728,7222,marijuana,1445388647 +24728,7222,propaganda,1344458210 +24728,7222,unintentionally funny,1344458210 +24728,51540,historically inaccurate,1444871625 +24728,51662,historically inaccurate,1444871686 +24728,67087,Rush,1309406312 +24728,77191,bad remake,1342579002 +24728,77191,shot by shot remake,1342578993 +24728,77233,cannabis,1445388719 +24728,77233,documentary,1445388518 +24728,77233,marijuana,1445388715 +24728,79073,remake,1340324466 +24728,80831,identical remake,1340324508 +24728,80831,remake,1323990250 +24728,80831,shot by shot remake,1323990247 +24728,84152,smart drugs,1445388206 +24728,85414,plot holes,1311986737 +24728,85414,predictable ending,1311986788 +24728,85414,pseudo-intelligent,1311986747 +24728,87306,Not Directed by Steven Spielberg,1309407470 +24728,93006,play,1445735802 +24728,93008,play,1445735774 +24728,94074,Documentary,1445735491 +24728,94074,rock and roll,1445735455 +24728,94074,Rush,1445735412 +24728,97304,historically inaccuarte,1450262235 +24728,114670,body horror,1446583226 +24762,260,old,1435430436 +24762,260,Overrated,1435430441 +24763,26662,animation,1339597134 +24763,26662,feel-good,1339597139 +24763,26662,Studio Ghibli,1339597142 +24763,34319,Ewan McGregor,1339595285 +24763,71500,linked storylines,1339594350 +24763,82041,b-grade,1339596578 +24763,82041,clever,1339596567 +24763,82041,horror,1339596570 +24763,82041,suspenseful,1339596601 +24763,88140,Sad,1339597997 +24763,88140,slow pacing,1339598032 +24763,90405,dystopia,1339595643 +24763,90405,police corruption,1339595660 +24763,90405,sci-fi,1339595651 +24763,90405,Sylvia,1339595672 +24784,318,adapted from:book,1357950403 +24784,318,atmospheric,1357950413 +24784,318,based on a book,1357950409 +24784,318,classic,1357950415 +24784,318,Morgan Freeman,1357950395 +24784,318,prison,1357950401 +24784,318,psychology,1357950419 +24784,318,thought-provoking,1357950422 +24830,3503,psychological,1379022073 +24830,7318,based on a book,1378671745 +24830,7318,based on a true story,1378671696 +24830,7318,Biblical,1378671839 +24830,7318,Monica Bellucci,1378671870 +24830,7318,multiple languages,1378671991 +24830,62644,dictatorship,1384694935 +24830,62644,fascism,1384694931 +24830,62644,social experiment,1384694771 +24830,72998,unrealistic,1378577291 +24830,79132,unrealistic,1378852932 +24830,87360,disgusting scenes,1380665920 +24830,87360,lack of story,1380665811 +24830,87360,shock value,1380665842 +24830,87360,violence,1380665774 +24830,105250,capitalism,1380557846 +24830,105250,democracy,1380557846 +24830,105250,Freud,1380811198 +24830,105250,politics,1380574721 +24830,105250,psychology,1380557846 +24835,54190,musical,1191079417 +24835,54190,Nudity (Topless - Brief),1191079400 +24862,1676,boring,1443072374 +24862,1676,cult film,1443072366 +24862,1676,derivative,1443072383 +24862,4886,hilarious,1443072161 +24862,4886,innovative,1443072172 +24862,5218,funny,1443072218 +24862,5218,one liners,1443072227 +24862,5218,Ray Romano,1443072208 +24862,6377,escapist,1443072114 +24862,6377,family,1443072131 +24862,6377,funny,1443072107 +24862,7143,honour,1443071680 +24862,7143,respect,1443071670 +24862,33615,comedy,1443072256 +24862,33615,lemurs,1443072251 +24862,34048,aliens,1443071784 +24862,34048,cliche,1443071797 +24862,44022,humorous,1443072297 +24862,44022,Ray Romano,1443072304 +24862,77561,humor,1443071879 +24862,77561,Marvel,1443071856 +24862,86332,mythology,1443071909 +24862,86332,The Avengers,1443071920 +24862,88140,cheesy,1443071952 +24862,88140,Marvel,1443071958 +24862,122892,derivative,1443071991 +24862,122892,poor graphics,1443072014 +24862,122892,silly,1443072002 +24872,527,epic,1423944323 +24872,527,holocaust,1423944323 +24872,527,world war ii,1423944323 +24872,2571,dystopia,1425076226 +24872,2571,future,1425076226 +24872,2571,philosophical,1425076226 +24872,2594,mindfuck,1435526592 +24872,57669,black comedy,1420401020 +24872,57669,dark comedy,1420401016 +24872,63876,gay,1421359580 +24872,65642,paradox,1420400543 +24872,65642,time travel,1420400641 +24872,135991,horror,1435503256 +24875,215,bittersweet,1439758362 +24875,215,conversation,1439758358 +24875,215,dialogue,1439758374 +24875,215,dialogue driven,1439758375 +24875,215,intelligent,1439758360 +24875,215,minimalist,1439758363 +24875,215,poignant,1439758369 +24875,215,reflective,1439758372 +24875,215,romantic,1439758359 +24875,215,thought-provoking,1439758366 +24875,260,action,1439757116 +24875,260,sci-fi,1439757026 +24875,288,dark comedy,1439758723 +24875,1203,courtroom drama,1439757437 +24875,1203,good dialogue,1439757428 +24875,1203,social commentary,1439757430 +24875,2542,black comedy,1439758608 +24875,2542,dark comedy,1439758601 +24875,2933,ambient,1439758566 +24875,2933,melancholic,1439758558 +24875,2959,dark comedy,1439757446 +24875,2959,disturbing,1439757450 +24875,2959,powerful ending,1439757455 +24875,2959,psychology,1439757448 +24875,2959,social commentary,1439757445 +24875,2959,surreal,1439757442 +24875,2959,thought-provoking,1439757444 +24875,2959,twist ending,1439757456 +24875,3020,cathartic,1439758467 +24875,3020,dark comedy,1439758465 +24875,3020,vigilantism,1439758469 +24875,3535,Bret Easton Ellis,1439758320 +24875,3535,dark comedy,1439758302 +24875,3535,grim,1439758308 +24875,3535,psychological,1439758304 +24875,3535,psychology,1439758299 +24875,3556,coming of age,1439759134 +24875,3556,melancholy,1439759129 +24875,3556,psychology,1439759130 +24875,3949,atmospheric,1439757396 +24875,3949,cinematography,1439757399 +24875,3949,dark,1439757391 +24875,3949,depressing,1439757387 +24875,3949,disturbing,1439757393 +24875,3949,emotional,1439757392 +24875,3949,loneliness,1439757401 +24875,3949,psychology,1439757389 +24875,4007,greed,1439759264 +24875,4007,social commentary,1439759255 +24875,4878,alternate timeline,1439757878 +24875,4878,atmospheric,1439757868 +24875,4878,dreamlike,1439757866 +24875,4878,enigmatic,1439757894 +24875,4878,hallucinatory,1439757889 +24875,4878,mental illness,1439757875 +24875,4878,mindfuck,1439757896 +24875,4878,philosophy,1439757874 +24875,4878,psychology,1439757870 +24875,4878,social commentary,1439757885 +24875,4878,surreal,1439757871 +24875,4878,thought-provoking,1439757864 +24875,4878,time travel,1439757856 +24875,4878,twist ending,1439757869 +24875,4896,coming of age,1439759399 +24875,4896,Harry Potter,1439759395 +24875,4975,depressing,1439759242 +24875,4975,existentialism,1439759225 +24875,4975,lucid dreaming,1439759232 +24875,4975,psychology,1439759226 +24875,4975,surreal,1439759218 +24875,4995,psychology,1439759528 +24875,4995,schizophrenia,1439759530 +24875,5502,atmospheric,1439758825 +24875,5502,ominous,1439758835 +24875,5772,dialogue,1439758700 +24875,5772,philosophy,1439758710 +24875,5816,coming of age,1439759427 +24875,5816,Harry Potter,1439759381 +24875,5989,intelligent,1439758415 +24875,5989,smart,1439758417 +24875,5989,twists & turns,1439758409 +24875,6281,dialogue driven,1439759090 +24875,6281,single location,1439759088 +24875,6942,multiple storylines,1439758627 +24875,6942,Romance,1439758629 +24875,6942,witty,1439758633 +24875,7361,beautiful,1439757816 +24875,7361,dreamlike,1439757814 +24875,7361,emotional,1439757820 +24875,7361,melancholy,1439757818 +24875,7361,nonlinear,1439757799 +24875,7361,philosophy,1439757802 +24875,7361,psychology,1439757813 +24875,7361,surreal,1439757796 +24875,7361,surrealism,1439757809 +24875,7361,thought-provoking,1439757797 +24875,8368,coming of age,1439759412 +24875,8368,Harry Potter,1439759389 +24875,8784,funeral,1439758523 +24875,8784,mental illness,1439758507 +24875,8784,psychology,1439758500 +24875,8784,quirky romantic,1439758503 +24875,8784,romance,1439758505 +24875,8784,soul searching,1439758521 +24875,8798,atmospheric,1439758187 +24875,8798,dark,1439758189 +24875,8798,great performances,1439758194 +24875,8798,one day,1439758197 +24875,8798,social commentary,1439758182 +24875,40815,coming of age,1439759416 +24875,40815,Harry Potter,1439759387 +24875,44191,dark,1439759207 +24875,44191,dystopia,1439759196 +24875,44191,philosophical,1439759209 +24875,44191,philosophy,1439759205 +24875,44191,social commentary,1439759198 +24875,44191,thought-provoking,1439759197 +24875,47970,being trapped,1439758956 +24875,48394,atmospheric,1439757408 +24875,48394,bittersweet,1439757417 +24875,48394,dark,1439757421 +24875,48394,disturbing,1439757419 +24875,48394,fairy tale,1439757415 +24875,48394,fantasy,1439757414 +24875,48394,surreal,1439757406 +24875,54001,coming of age,1439759404 +24875,54001,Harry Potter,1439759393 +24875,56145,atmospheric,1439758979 +24875,56145,psychological,1439758986 +24875,56145,social commentary,1439758983 +24875,56145,surprise ending,1439758975 +24875,56145,twist ending,1439758977 +24875,59435,depression,1439758778 +24875,59435,mental illness,1439758765 +24875,59519,competition with self,1439757260 +24875,59519,unsatisfying ending,1439757253 +24875,59519,writers,1439757244 +24875,59519,young intellectuals,1439757236 +24875,60530,coming of age,1439759282 +24875,66097,dark,1439758078 +24875,66097,gothic,1439758081 +24875,66097,Surreal,1439758076 +24875,67193,smart,1439758437 +24875,68237,Sci-fi,1439758132 +24875,68237,solitude,1439758151 +24875,68237,space,1439758133 +24875,69844,coming of age,1439759408 +24875,69844,Harry Potter,1439759391 +24875,81591,atmospheric,1439758093 +24875,81591,dark,1439758094 +24875,81591,mental illness,1439758117 +24875,81591,obsession,1439758118 +24875,81591,psychological,1439758092 +24875,81591,surreal,1439758089 +24875,81591,twist ending,1439758121 +24875,81834,coming of age,1439759421 +24875,81834,Harry Potter,1439759384 +24875,84152,human potential,1439758581 +24875,84152,interesting premise,1439758588 +24875,84152,smart,1439758583 +24875,84152,thought provoking,1439758585 +24875,86320,beautiful,1439758649 +24875,86320,big themes,1439758663 +24875,86320,cinematography,1439758648 +24875,86320,introspective,1439758653 +24875,86320,sense of futility,1439758664 +24875,86882,bittersweet,1439758677 +24875,86882,dialogue,1439758687 +24875,86882,magical realism,1439758681 +24875,86882,philosophical,1439758683 +24875,86882,romance,1439758685 +24875,86882,thought-provoking,1439758675 +24875,88118,single location,1439759057 +24875,88118,twists & turns,1439759020 +24875,88125,coming of age,1439759424 +24875,88125,Harry Potter,1439759383 +24875,90376,nihilism,1439759316 +24875,90376,psychological,1439759311 +24875,90531,frustration,1439758811 +24875,90531,self-destruction,1439758805 +24875,90947,city life,1439757271 +24875,90947,depression,1439757269 +24875,91658,atmospheric,1439758939 +24875,91658,dark,1439758930 +24875,91658,hacker,1439758937 +24875,91658,revenge,1439758928 +24875,93840,conspiracy,1439758397 +24875,93840,dark comedy,1439758390 +24875,93840,meta,1439758394 +24875,99917,ambient,1439757944 +24875,99917,artistic,1439757920 +24875,99917,Beautiful,1439757922 +24875,99917,emotionally captivating,1439757921 +24875,99917,music,1439757940 +24875,99917,sound,1439757942 +24875,100745,internet,1439758865 +24875,100745,justice,1439758869 +24875,102684,beautifully filmed,1439758790 +24875,103996,Bret Easton Ellis,1439758341 +24875,106782,Anti-Hero,1439759163 +24875,106920,artificial intelligence,1439757832 +24875,106920,beautiful,1439757848 +24875,106920,bittersweet,1439757843 +24875,106920,loneliness,1439757837 +24875,106920,meaning of life,1439757839 +24875,106920,philosophical,1439757835 +24875,106920,thought-provoking,1439757833 +24875,106920,transhumanism,1439757841 +24875,115713,artificial intelligence,1439757753 +24875,115713,Future,1439757771 +24875,115713,futuristic,1439757758 +24875,115713,philosophical,1439757755 +24875,115713,technology,1439757757 +24875,115713,Tense,1439757769 +24877,3929,genius,1429067727 +24877,7132,madcap,1429067696 +24877,121231,good idea,1429067838 +24877,121231,horror,1429067838 +24877,121231,mediocre,1429067838 +24884,260,action,1433377561 +24884,260,good story,1433377540 +24884,260,Science Fiction,1433377504 +24884,260,special effects,1433377570 +24936,593,clever,1436831042 +24936,593,dark,1436831042 +24936,593,suspense,1436831042 +24939,41712,England,1266067755 +24939,41712,local life,1266067755 +24951,3081,Tim Burton,1282515666 +24951,7371,disturbing,1282595016 +24951,7371,Nicole Kidman,1282595042 +24951,79132,action,1282514718 +24951,79132,alternate reality,1282514722 +24951,79132,complicated,1282514724 +24951,79132,Intense,1282514729 +24951,79132,mindfuck,1282514731 +24951,79132,Nolan,1282514734 +24951,79132,unpredictable,1282514739 +24951,79132,visually appealing,1282514738 +24968,1707,not as good as the first,1295622056 +24968,2953,not as good as the first,1295622041 +24968,4896,not as good as the book,1295555666 +24968,5349,violence,1295622210 +24968,5816,not as good as the book,1295555727 +24968,6297,not as good as the book,1295555678 +24968,8368,not as good as the book,1295555479 +24968,8636,violence,1295622222 +24968,27706,book was better,1295621746 +24968,39449,unpredictable,1295554362 +24968,40815,not as good as the book,1295555592 +24968,45672,surprisingly good,1295556113 +24968,52722,violence,1295622235 +24968,54001,not as good as the book,1295555546 +24968,54259,not as good as the book,1295555272 +24968,55872,music,1295554609 +24968,58559,violence,1295622298 +24968,69844,not as good as the book,1295555535 +24968,78041,no plot,1295557080 +24968,80241,no plot,1295554422 +24990,260,"action, scifi",1437346168 +24990,260,Science Fiction,1437346179 +25041,1263,Oscar (Best Picture),1148251165 +25047,260,family film,1432921992 +25047,260,romance,1432921977 +25047,260,Science Fiction,1432921969 +25047,260,space action,1432921998 +25059,4262,Al Pacino,1431293110 +25059,4262,atmospheric,1431293117 +25087,1488,"""It's not an American story",1214455841 +25087,1488,"its an Irish one.""",1214455841 +25122,7361,awful,1164362047 +25122,45517,kids fun,1164362364 +25129,2174,comedy,1245938734 +25129,2174,Tim Burton,1245938731 +25129,52975,Broadway,1269212463 +25129,52975,john travolta,1269212451 +25129,52975,Nikki Blonsky,1269212444 +25129,63992,based on a book,1245160705 +25129,63992,fantasy,1245160701 +25129,63992,vampires,1245160703 +25129,64969,Jim carrey,1264381523 +25129,64969,Zooey Deschanel,1264381509 +25129,67267,Amy Adams,1330265062 +25129,85414,ending,1318540643 +25129,85414,plot holes,1318540626 +25129,85414,Vera Farmiga,1318540609 +25129,86295,unpredictable ending,1333390509 +25129,86332,Anthony Hopkins,1334630894 +25129,99149,Anne Hathaway,1359944220 +25129,99149,great soundtrack,1359944241 +25129,99149,Hugh Jackman,1359944220 +25129,99149,musical,1359944199 +25129,99149,Russell Crowe,1359944220 +25131,296,cult,1430523101 +25131,296,funny,1430523101 +25131,296,great actor,1430523101 +25131,593,great actor,1429888909 +25131,593,psychological,1429888909 +25131,593,suspense,1429888909 +25146,43871,shit,1156969131 +25170,3155,book,1213799971 +25170,3155,Comedy,1213800186 +25170,3155,Quite Romantic,1213799931 +25170,6935,book,1213800224 +25197,260,practical effects,1434499886 +25197,260,space opera,1434499864 +25197,356,based on a book,1434508030 +25197,356,innocence,1434508030 +25197,356,narrated,1434508030 +25197,40617,urban horror,1445348273 +25197,138892,assassin,1449503779 +25197,138892,faux documentary,1449503827 +25197,138892,hitman,1449503774 +25197,139588,cult,1452039976 +25197,145487,horror,1446000622 +25197,145487,Japan,1446000656 +25197,145487,mystery,1446000674 +25197,145487,short,1446000669 +25197,145487,tunnel,1446000657 +25213,260,classic sci-fi,1434574819 +25213,260,sci-fi,1434574795 +25213,356,funny,1436052502 +25213,356,masterpiece,1436052502 +25213,356,phylosophycal,1436052502 +25248,38656,avante-garde,1425253018 +25248,38656,surrealism,1425253018 +25248,38656,transgressive,1425253018 +25249,10,tank chase scene,1178249646 +25249,700,chris owen,1138618372 +25249,700,normal,1138618372 +25249,2516,killer child,1208197910 +25249,5082,afterlife,1208197927 +25249,5318,christianity,1208197943 +25249,5879,Adam Sandler,1208200081 +25249,5879,judaism,1208200033 +25249,6503,super boring,1166425176 +25249,8805,heroes,1171687135 +25249,27706,closing sequence,1163556191 +25249,42013,the best you could do,1138616801 +25249,47264,bulls don't have teats,1174637613 +25249,47264,responsibility,1174637675 +25249,50068,Oscar Nom 2007,1169884998 +25249,50798,awful,1170333807 +25305,63,Wayans Brothers,1289688594 +25305,165,always watch it when it's on tv,1290087562 +25305,165,Bruce Willis,1290087547 +25305,165,Samuel L. Jackson,1290087546 +25305,296,action,1289481347 +25305,296,assassin,1289481346 +25305,296,atmospheric,1289481344 +25305,296,Black comedy,1289481343 +25305,296,Bruce Willis,1289481338 +25305,296,cult film,1289481341 +25305,296,dark comedy,1289481337 +25305,296,drugs,1289481335 +25305,296,imdb top 250,1289481349 +25305,296,Mafia,1289481351 +25305,296,multiple storylines,1289481356 +25305,296,nonlinear,1289481320 +25305,296,Quentin Tarantino,1289481326 +25305,296,quirky,1289481353 +25305,296,Samuel L. Jackson,1289481334 +25305,296,violence,1289481331 +25305,668,bollywood,1368301576 +25305,778,black comedy,1289997813 +25305,778,dark comedy,1289997810 +25305,778,drugs,1289997809 +25305,778,Ewan McGregor,1289997801 +25305,778,notable soundtrack,1289997808 +25305,778,social commentary,1289997804 +25305,1129,Kurt Russell,1289687001 +25305,1645,Al Pacino,1289483938 +25305,1645,Charlize Theron,1289483940 +25305,1645,Keanu Reeves,1289483922 +25305,1645,Nudity (Full Frontal - Notable),1289483936 +25305,1645,Nudity (Full Frontal),1289483929 +25305,1645,surreal,1289483935 +25305,1921,black and white,1289997478 +25305,1921,existentialism,1289997481 +25305,1921,low budget,1289997484 +25305,1921,mathematics,1289997476 +25305,1921,notable soundtrack,1289997487 +25305,1921,tense,1289997490 +25305,2022,jesus,1368301637 +25305,2762,M. Night Shyamalan,1290088215 +25305,3994,M. Night Shyamalan,1289483753 +25305,4776,To See,1289997681 +25305,4873,surreal,1290372998 +25305,4878,dreamlike,1289997201 +25305,5135,bollywood,1368301576 +25305,5329,DOUBLE LIFE,1289997319 +25305,5329,drugs,1289997329 +25305,5329,moody,1289997317 +25305,5329,Val Kilmer,1289997304 +25305,5329,Vincent D'Onofrio,1289997306 +25305,5971,slow,1318105083 +25305,6218,bollywood,1368301576 +25305,6281,Colin Farrell,1289483879 +25305,6281,Forest Whitaker,1289483875 +25305,6281,Joel Schumacher,1289483894 +25305,6281,Katie Holmes,1289483896 +25305,6281,Kiefer Sutherland,1289483889 +25305,6870,Clint Eastwood,1289997711 +25305,7318,jesus,1368301637 +25305,8254,Emir Kusturica,1289997138 +25305,8950,Christian Bale,1289997289 +25305,8950,creepy,1289997287 +25305,8950,grim,1289997290 +25305,8950,predictable,1289997286 +25305,27716,Mads Mikkelsen,1289773714 +25305,27831,daniel craig,1289997416 +25305,27831,guy ritchie,1289997403 +25305,31952,Sandor Csanyi,1289997615 +25305,31952,Zoltan Mucsi,1289997621 +25305,33672,Catherine Hardwicke,1297010052 +25305,33672,Emile Hirsch,1297010044 +25305,33672,Heath Ledger,1297010039 +25305,33672,Johnny Knoxville,1297010042 +25305,33672,Los Angeles,1297010048 +25305,33672,skateboarding,1297010042 +25305,37731,Elijah Wood,1297010075 +25305,37731,extremely violent,1297010081 +25305,37731,senseless violence,1297010089 +25305,37731,They Made This Already And It Was Titled: Football Factory It's Way Better Than This Re-Hash,1297010095 +25305,37731,unrealistic,1297010073 +25305,44761,detective movie,1289997541 +25305,44761,Emilie de Ravin,1289997536 +25305,44761,film noir,1289997517 +25305,44761,Joseph Gordon-Levitt,1289997522 +25305,44761,Lukas Haas,1289997523 +25305,44761,slang,1289997528 +25305,44761,slick,1289997530 +25305,44761,stylized,1289997529 +25305,48780,Christoper Nolan,1289483773 +25305,48780,steampunk,1289483770 +25305,51884,bollywood,1368301576 +25305,61024,Seth Rogen,1289688678 +25305,61024,Stoner Movie,1289688654 +25305,63082,bollywood,1368301576 +25305,63082,coincidences,1289482092 +25305,63082,feel-good,1289482090 +25305,63082,gritty,1289482096 +25305,63082,love story,1289482089 +25305,63082,music,1289482086 +25305,63082,nonlinear,1289482097 +25305,63082,Oscar (Best Directing),1289482085 +25305,63082,Oscar (Best Music - Original Score),1289482082 +25305,63082,Oscar (Best Music - Original Song),1289482084 +25305,63082,Oscar (Best Picture),1289482081 +25305,63082,romance,1289482077 +25305,63082,slumcock shitty shit,1290088671 +25305,63082,social commentary,1289482103 +25305,64957,Brad Pitt,1290088696 +25305,64957,Cate Blanchett,1290088699 +25305,64957,cinematography,1290088712 +25305,64957,romance,1290088702 +25305,64957,sad,1290088703 +25305,64957,touching,1290088701 +25305,69122,absurd,1331819245 +25305,69122,Great ending,1331819242 +25305,69122,Hilarious,1331819237 +25305,69122,imdb top 250,1331819224 +25305,69122,overrated,1331819232 +25305,69122,Vulgar,1331819229 +25305,69122,Zach Galifianakis,1331819220 +25305,72378,apocalypse,1289736885 +25305,72378,Danny Glover,1289736876 +25305,72378,John Cusack,1289736874 +25305,72378,So bad it's good,1289736869 +25305,72378,Special Effects,1289736871 +25305,72378,Woody Harrelson,1289736873 +25305,72998,predictable,1289482756 +25305,72998,revolution,1289482751 +25305,72998,Sigourney Weaver,1289482749 +25305,72998,war,1289482747 +25305,73321,action,1289483459 +25305,73321,beautiful scenery,1289483457 +25305,73321,books,1289483476 +25305,73321,Denzel Washington,1289483451 +25305,73321,dystopic future,1289483447 +25305,73321,Gary Oldman,1289483423 +25305,73321,Mila Kunis,1289483446 +25305,73321,religious propaganda,1289483466 +25305,73321,slow paced,1289483470 +25305,73321,twist ending,1289483425 +25305,74789,3D,1290088339 +25305,74789,3D version,1290088338 +25305,74789,Alan Rickman,1290088342 +25305,74789,Anne Hathaway,1290088345 +25305,74789,beautiful,1290088327 +25305,74789,Depp & Burton,1290088329 +25305,74789,Helena Bonham Carter,1290088326 +25305,74789,incoherent,1290088366 +25305,74789,Johnny Depp,1290088322 +25305,74789,Lewis Carroll,1290088347 +25305,74789,talking animals,1290088333 +25305,74789,Tim Burton,1290088319 +25305,79132,alternate reality,1289483602 +25305,79132,big budget,1289483570 +25305,79132,cobb's wife,1289483597 +25305,79132,dream,1289483600 +25305,79132,dreamlike,1289997184 +25305,79132,dreams,1289997187 +25305,79132,Leonardo DiCaprio,1289483586 +25305,79132,Michael Caine,1289483582 +25305,79132,open ending,1289997168 +25305,79132,Paris,1289997172 +25305,79132,predictable,1289997166 +25305,79132,surreal,1289997182 +25305,79274,antihero,1289483679 +25305,79274,Batman,1289483678 +25305,79274,MY PARENTS ARE DEEEAAADDDD,1289483670 +25305,79274,sympathetic villain,1289483677 +25305,94959,Bill Murray,1339863913 +25305,94959,Jason Schwartzman,1339863914 +25305,94959,Wes Anderson,1339863919 +25323,260,classic sci-fi,1438678414 +25323,260,cult classic,1438678429 +25323,58559,Atmospheric,1438678733 +25323,58559,Christian Bale,1438678713 +25323,58559,DC Comics,1438678741 +25323,98809,hobbit,1438680263 +25323,106489,hobbit,1438680209 +25323,112852,fantasy,1438678625 +25323,112852,space opera,1438678610 +25323,118696,hobbit,1438680292 +25335,105,book adaptation,1444948912 +25335,153,Nicole Kidman,1454033777 +25335,153,Tommy Lee Jones,1454033797 +25335,215,bittersweet,1437348454 +25335,215,conversation,1437348468 +25335,215,dialogue driven,1437348460 +25335,215,intelligent,1437348449 +25335,215,reflective,1437348465 +25335,215,romantic,1437348476 +25335,215,witty,1437348464 +25335,216,Adam Sandler,1444752450 +25335,247,based on a true story,1437334077 +25335,247,crazy people,1437334100 +25335,247,Kate Winslet,1437334081 +25335,247,psychologic,1437334125 +25335,260,classic adventure,1437328091 +25335,260,fairy tale,1437328116 +25335,260,fantasy action,1437328292 +25335,260,good vs evil,1437328220 +25335,260,space adventure,1437328162 +25335,356,good acting,1437329149 +25335,356,huge time period,1437329149 +25335,356,unpredictable,1437329149 +25335,593,Anthony Hopkins,1452357660 +25335,593,based on a book,1452357685 +25335,593,dark,1452497881 +25335,593,Jodie Foster,1452357655 +25335,593,psychological,1452497828 +25335,593,psychology,1452357667 +25335,593,suspense,1452357672 +25335,628,edward norton,1443727853 +25335,628,psychology,1443727859 +25335,910,black and white,1453841640 +25335,910,classic,1453841625 +25335,910,jazz,1453841659 +25335,910,Marilyn Monroe,1453841622 +25335,910,Quotable,1453841629 +25335,1061,Brad Pitt,1437331524 +25335,1061,excellent acting,1437331433 +25335,1061,lifelong,1437331511 +25335,1061,Robert De Niro,1437331522 +25335,1061,thrilling story,1437331504 +25335,1206,atmospheric,1453655992 +25335,1206,controversial,1453655981 +25335,1206,dystopia,1453655967 +25335,1206,psychology,1453655971 +25335,1206,satirical,1453655975 +25335,1206,stylized,1453655995 +25335,1247,classic,1437360799 +25335,1247,funny,1437360786 +25335,1247,great ending,1437360861 +25335,1247,Katharine Ross,1437360864 +25335,1247,music,1437360768 +25335,1247,notable soundtrack,1437360760 +25335,1247,satirical,1437360795 +25335,1265,alternate reality,1453842687 +25335,1265,Bill Murray,1453842685 +25335,1265,character development,1453842702 +25335,1265,Classic,1453842707 +25335,1265,hilarious,1453842710 +25335,1265,original plot,1453842698 +25335,1273,atmospheric,1453842294 +25335,1273,Jim Jarmusch,1453842270 +25335,1273,stylized,1453842295 +25335,1273,tom waits,1453842285 +25335,1391,funny,1437425553 +25335,1391,Tim Burton,1437425557 +25335,1438,disaster,1437331677 +25335,1438,natural disaster,1437331674 +25335,1438,predictable movie,1437331684 +25335,1438,thrilling,1437331698 +25335,1572,European film,1437330637 +25335,1572,Jean-Luc Godard,1437330614 +25335,1816,Heather Graham,1453670397 +25335,1967,David Bowie,1452547891 +25335,1967,fairy tales,1452547909 +25335,1967,fantasy,1452547901 +25335,1967,Jennifer Connelly,1452547905 +25335,1967,musical,1452547911 +25335,1967,surreal,1452547895 +25335,2352,complex characters,1437518008 +25335,2352,drugdealers,1437518019 +25335,2352,friendship,1437518041 +25335,2352,good acting,1437517996 +25335,2352,notable soundtrack,1437517988 +25335,2694,Adam Sandler,1444752404 +25335,2985,dystopia,1437383601 +25335,2985,social commentary,1437383607 +25335,3108,mental illness,1453842385 +25335,3108,Robin Williams,1453842383 +25335,3108,Terry Gilliam,1453842374 +25335,3274,Bridget Fonda,1437348149 +25335,3274,cast,1437348143 +25335,3274,good action,1437348134 +25335,3274,psychologic,1437348113 +25335,3274,romance,1437348120 +25335,3274,thrilling,1437348127 +25335,3521,Jim Jarmusch,1453842516 +25335,3521,Steve Buscemi,1453842555 +25335,3897,1970s,1437331932 +25335,3897,music,1437331929 +25335,3897,nostalgic,1437331935 +25335,3897,Nudity (Topless - Notable),1437331941 +25335,3897,rock and roll,1437331927 +25335,3897,zooey deschanel,1437331947 +25335,3987,Gwyneth Paltrow,1437329447 +25335,4019,writing,1444752817 +25335,4146,good acting,1444858517 +25335,4146,soundtrack,1444858500 +25335,4155,Charlize Theron,1444858985 +25335,4155,drama,1444858996 +25335,4155,Keanu Reeves,1444858983 +25335,4155,love,1444859004 +25335,4370,artificial intelligence,1437424689 +25335,4370,Bittersweet,1437424694 +25335,4370,dystopia,1437424687 +25335,4370,future,1437424703 +25335,4370,sci-fi,1437424692 +25335,4380,Franka Potente,1437333584 +25335,4380,good acting,1437333673 +25335,4380,mystery,1437333665 +25335,4380,psychologic,1437333631 +25335,4553,aliens,1437336272 +25335,4553,conspiracy,1437336282 +25335,4553,cult film,1437336268 +25335,4553,dystopia,1437336275 +25335,4553,sci-fi,1437336270 +25335,4995,based on a book,1437332119 +25335,4995,based on a true story,1437332121 +25335,4995,biography,1437332141 +25335,4995,college,1437332137 +25335,4995,genius,1437332095 +25335,4995,insanity,1437332114 +25335,4995,inspirational,1437332145 +25335,4995,Jennifer Connelly,1437332109 +25335,4995,mathematics,1437332092 +25335,4995,Oscar (Best Picture),1437332116 +25335,4995,psychology,1437332112 +25335,4995,true story,1437332101 +25335,4995,twist ending,1437332099 +25335,5293,absurd conflict,1437328982 +25335,5293,clash of interests,1437328923 +25335,5293,good acting,1437328859 +25335,5902,melancholy,1437333385 +25335,6346,David Bowie,1452547703 +25335,6346,Sade,1452547700 +25335,6502,British,1453674585 +25335,6502,post-apocalyptic,1453674580 +25335,6530,mental illness,1437334897 +25335,6530,Roman Polanski,1437334894 +25335,6636,road trip,1453843289 +25335,6711,Amazing Cinematography,1437348339 +25335,6711,atmospheric,1437348312 +25335,6711,Bill Murray,1437348309 +25335,6711,complex characters,1437348322 +25335,6711,cultural differences,1437348345 +25335,6711,intelligent,1437348332 +25335,6711,Melancholic,1437348317 +25335,6711,music,1437348350 +25335,6711,reflective,1437348320 +25335,6711,relationships,1437348334 +25335,6711,Scarlett Johansson,1437348328 +25335,6711,visually appealing,1437348355 +25335,6902,road trip,1453842979 +25335,6902,self discovery,1453842987 +25335,6902,surreal,1453842983 +25335,7001,aliens,1437336175 +25335,7001,disturbing,1437336177 +25335,7031,Kim Basinger,1453669650 +25335,7071,disfunctional family,1437334619 +25335,7071,intimate,1437334616 +25335,7163,sci-fi,1437329215 +25335,7163,simplified,1437329238 +25335,7460,Jim Jarmusch,1444858562 +25335,8836,Josh Hartnett,1453745189 +25335,31696,Keanu Reeves,1444858775 +25335,33145,Amanda Peet,1437349149 +25335,33145,chemistry,1437349152 +25335,33145,good acting,1437349189 +25335,33145,huge time scope,1437349178 +25335,33145,romance,1437349159 +25335,35957,suspense,1444949057 +25335,35957,weak ending,1444949061 +25335,36527,mathematics,1444751720 +25335,37386,atmospheric,1437424851 +25335,37386,dystopia,1437424817 +25335,37386,heroine in tight suit,1437424829 +25335,37386,MTV,1437424840 +25335,37386,post-apocalyptic,1437424825 +25335,37386,predictable,1437424836 +25335,37386,sci-fi,1437424846 +25335,37386,stylized,1437424819 +25335,37386,visually appealing,1437424821 +25335,47970,Zach Braff,1452357148 +25335,48342,Helena Bonham Carter,1450742376 +25335,50794,hitman,1437329534 +25335,50794,twist ending,1437329538 +25335,54190,1960s,1453636667 +25335,54190,Beatles,1453636655 +25335,54190,Beatles soundtrack,1453636658 +25335,54190,extremely creative,1453636669 +25335,54190,The Beatles,1453636661 +25335,54190,visually appealing,1453636665 +25335,60408,Dany Boon,1453745093 +25335,60408,France,1453745097 +25335,64620,based on a true story,1437413009 +25335,64620,dialog based,1437413048 +25335,64620,good acting,1437413057 +25335,64620,history,1437413007 +25335,64620,Nixon,1437413026 +25335,64620,politics,1437413013 +25335,64620,Suspense,1437413019 +25335,64969,Jim carrey,1443363790 +25335,64969,Zooey Deschanel,1443363786 +25335,65088,Adam Sandler,1448216003 +25335,66203,Ben Affleck,1443364970 +25335,66203,Jennifer Aniston,1443364968 +25335,66203,Jennifer Connelly,1443364989 +25335,66203,Scarlett Johansson,1443364973 +25335,69516,soundtrack,1444858644 +25335,69516,visual,1444858651 +25335,69757,artistic,1437348499 +25335,69757,bittersweet,1437348538 +25335,69757,great soundtrack,1437348527 +25335,69757,humor,1437348517 +25335,69757,intelligent,1437348529 +25335,69757,music,1437348523 +25335,69757,relationships,1437348512 +25335,69757,stylized,1437348497 +25335,69757,visually appealing,1437348510 +25335,69757,Zooey Deschanel,1437348491 +25335,71211,Matt Damon,1437334409 +25335,71211,mental illness,1437334408 +25335,71211,true story,1437334398 +25335,73023,country music,1437511303 +25335,73023,music,1437511314 +25335,74545,British,1452357345 +25335,74545,Ewan McGregor,1452357338 +25335,74545,Pierce Brosnan,1452357356 +25335,74545,Roman Polanski,1452357351 +25335,79132,Leonardo DiCaprio,1437329668 +25335,79132,sci-fi,1437329671 +25335,80126,Anton Corbijn,1444952961 +25335,80126,complicated relationships,1444952919 +25335,80126,George Clooney,1444952899 +25335,80126,slow,1444952904 +25335,80126,suspense,1444952895 +25335,80126,visually appealing,1444952889 +25335,80549,dialogue,1453839466 +25335,80549,high school,1453839478 +25335,80549,virginity,1453839494 +25335,80549,witty,1453839469 +25335,80969,depressing,1437335720 +25335,80969,England,1437335724 +25335,80969,sexuality,1437335732 +25335,80969,thought-provoking,1437335714 +25335,84152,concept,1437425469 +25335,84152,entertaining,1437425467 +25335,84152,thought provoking,1437425464 +25335,84152,unfinished storyline,1437425480 +25335,84152,visually appealing,1437425460 +25335,88163,comedy,1437535355 +25335,88163,cute,1437535365 +25335,88163,Emma Stone,1437535352 +25335,88163,masculinity through dress,1437534814 +25335,88163,plot twist,1437535357 +25335,88877,math,1444751691 +25335,89039,easy life,1437425375 +25335,89039,melancholic,1437425366 +25335,89039,parallel universe,1437425284 +25335,89039,twisted,1437425384 +25335,89039,visually appealing,1437425403 +25335,89047,character driven,1445454794 +25335,89047,excellent acting,1445454792 +25335,89047,Joseph Gordon-Levitt,1445454799 +25335,89047,metal soundtrack,1445454796 +25335,89470,disease,1437348003 +25335,89470,Matt Damon,1437348012 +25335,89470,Realistic,1437348008 +25335,89470,virus,1437348005 +25335,89492,based on a true story,1437412984 +25335,89492,math,1437412977 +25335,89492,Realistic,1437412982 +25335,101765,Dany Boon,1453744963 +25335,101864,atmospheric,1442304505 +25335,101864,dystopia,1442304500 +25335,101864,post-apocalyptic,1442304509 +25335,101864,sci-fi,1442304498 +25335,101864,technology,1442304507 +25335,103249,Brad Pitt,1444753119 +25335,103249,pandemic,1444753122 +25335,106487,dystopia,1448046878 +25335,107771,Art,1453583499 +25335,107771,atmospheric,1453583483 +25335,107771,Jim Jarmusch,1453583486 +25335,107771,music,1453583502 +25335,107771,Tilda Swinton,1453583496 +25335,107771,vampires,1453583490 +25335,107771,visually stunning,1453583494 +25335,108078,french,1444782205 +25335,112552,education,1444860610 +25335,112552,jazz,1444860594 +25335,112552,jazz music,1444860605 +25335,112552,musicians,1444860598 +25335,112552,psychological,1444860608 +25335,112552,Teacher Student,1444860602 +25335,112556,based on a book,1437328718 +25335,112556,Ben Affleck,1437328701 +25335,112556,good adaptation,1437328725 +25335,112556,unpredictable,1437328710 +25335,112804,biotech,1437336082 +25335,112804,complicated relationships,1437336037 +25335,112804,science,1437336000 +25335,112804,scientific discovery,1437336015 +25335,112804,tragedy,1437336048 +25335,112804,twisted,1437336063 +25335,112944,soundtrack,1444857465 +25335,112944,teacher student relationship,1444763663 +25335,115713,AI,1437330164 +25335,115713,artificial intelligence,1437330149 +25335,115713,complicated character,1437330272 +25335,115713,cybernetics,1437330168 +25335,115713,Future,1437330175 +25335,115713,good acting,1437330278 +25335,115713,Man Versus Machine,1437330178 +25335,115713,philosophical,1437330154 +25335,115713,Psychological,1437330174 +25335,115713,realistic,1437330246 +25335,115713,relation problems,1437330213 +25335,115713,robots,1437330156 +25335,115713,sci-fi,1437330152 +25335,115713,technology,1437330162 +25335,115713,thought provoking,1437330159 +25335,115713,visual effects,1437330226 +25335,116823,dystopia,1448046815 +25335,129364,dead child,1444858121 +25335,129364,melodrama,1444948668 +25335,129364,visually appealing,1444948651 +25335,129364,Wim Wenders,1444858114 +25335,134360,PhD,1446152050 +25335,137337,musicians,1437330905 +25335,141844,Ostap Bender,1445079825 +25353,5989,based on a book,1438753353 +25353,5989,based on true story,1438753341 +25353,5989,con artists,1438753318 +25353,5989,con men,1438753325 +25353,5989,father-son relationship,1438753349 +25353,5989,feel good movie,1438753336 +25353,5989,intelligent,1438753321 +25353,5989,smart,1438753332 +25353,5989,twists & turns,1438753358 +25353,69122,comedy,1438753465 +25353,69122,funny,1438753468 +25353,80463,computers,1438753376 +25353,80463,hacking,1438753379 +25353,95441,crude humor,1438753491 +25353,111362,time travel,1438752932 +25353,112852,adventure,1438752865 +25353,112852,Chris Pratt,1438752849 +25353,112852,great soundtrack,1438752828 +25353,112852,sci-fi,1438752841 +25398,32,bruce willis,1415487131 +25398,32,great ending,1415487174 +25398,32,twist ending,1415487139 +25398,110,action,1428930370 +25398,110,Biography,1428930366 +25398,110,epic,1428930360 +25398,110,inspirational,1428930356 +25398,110,revenge,1428930364 +25398,541,slow,1428930230 +25398,541,slow paced,1428930243 +25398,924,overrated,1428930883 +25398,924,slow,1428930856 +25398,1094,slow,1428930718 +25398,1206,quirky,1407942080 +25398,1206,social commentary,1407942072 +25398,1206,stylized,1407942071 +25398,1206,Surrealism,1407942090 +25398,2076,David Lynch,1428929774 +25398,2076,slow,1428929834 +25398,2791,absurd,1405875463 +25398,2959,social commentary,1407941693 +25398,3418,Girl Power,1406052033 +25398,3418,road trip,1406052021 +25398,3418,strong woman,1406052018 +25398,4262,Al Pacino,1428930014 +25398,4262,classic,1428930022 +25398,4262,corruption,1428930037 +25398,4262,crime,1428930032 +25398,4262,drug abuse,1428930048 +25398,4262,drugs,1428930017 +25398,4262,gangster,1428930039 +25398,4262,gangsters,1428930034 +25398,4262,guns,1428930029 +25398,4262,mafia,1428930021 +25398,4262,Miami,1428930050 +25398,4262,organized crime,1428930024 +25398,4262,violence,1428930019 +25398,4262,violent,1428930048 +25398,4848,David Lynch,1428929807 +25398,4848,slow,1428929823 +25398,6003,pure entertainment,1414967344 +25398,6003,Sam Rockwell,1414967338 +25398,6708,con artists,1412800124 +25398,6708,con men,1412800120 +25398,6708,crime,1412800127 +25398,6708,Exceptional Acting,1412800130 +25398,6708,Quirky,1412800141 +25398,6708,Sam Rockwell,1412800144 +25398,6708,twist ending,1412800155 +25398,8798,assassin,1428930416 +25398,8798,atmospheric,1428930422 +25398,8798,character driven,1428930418 +25398,8798,violent,1428930425 +25398,8949,depression,1412015570 +25398,8949,Melancholic,1412015564 +25398,27831,british,1407941092 +25398,27831,British gangster,1407941094 +25398,27831,DRUG TRADE,1407941099 +25398,27831,drugs,1407941102 +25398,27831,gangster,1407941106 +25398,27831,murder,1407941112 +25398,27831,overrated,1407941115 +25398,27831,surprise ending,1407941120 +25398,38061,black comedy,1407941755 +25398,38061,Film Noir,1407941801 +25398,38061,good dialogue,1407941745 +25398,38061,narrated,1407941789 +25398,38061,satire,1407941752 +25398,38061,witty,1407941806 +25398,44665,assassination,1428930468 +25398,44665,dark comedy,1407941159 +25398,44665,Film Noir,1407941157 +25398,44665,gangsters,1407941166 +25398,44665,great ending,1407941162 +25398,44665,hitman,1407941168 +25398,44665,organized crime,1428930467 +25398,44665,Revenge,1407941197 +25398,44665,stylized,1407941177 +25398,44665,twist ending,1428930472 +25398,44665,violent,1407941201 +25398,47200,action packed,1415112498 +25398,47200,Jason Statham,1415112490 +25398,47200,silly,1414964984 +25398,47200,stupid,1414965007 +25398,47200,Stupid as Hell,1414964988 +25398,51255,black comedy,1407941889 +25398,51255,British,1407941892 +25398,51255,british comedy,1407941879 +25398,51662,action,1428930304 +25398,51662,amazing photography,1428930326 +25398,51662,atmospheric,1428930303 +25398,51662,male nudity,1428930313 +25398,51662,stylized,1428930301 +25398,54787,Violence,1414965151 +25398,68848,Adrien Brody,1408553276 +25398,68848,funny,1408553264 +25398,68848,narrated,1408553243 +25398,68848,stupid ending,1408553227 +25398,71535,witty,1406052511 +25398,85020,action,1414964816 +25398,85020,assassin,1414964818 +25398,85020,hitman,1414964820 +25398,85020,Jason Statham,1414964831 +25398,85020,professional assassins,1414964824 +25398,88129,atmospheric,1428930119 +25398,88129,car chase,1428930125 +25398,88129,cars,1428930135 +25398,88129,crime,1428930141 +25398,88129,Dark,1428930137 +25398,88129,great soundtrack,1428930133 +25398,88129,heist,1428930126 +25398,88129,Ryan Gosling,1428930123 +25398,88129,stylized,1428930142 +25398,88129,tense,1428930157 +25398,88129,violence,1428930130 +25398,88129,visually appealing,1428930132 +25398,97306,clever,1412015633 +25398,97306,Colin Farrell,1412015637 +25398,97306,dark comedy,1412015639 +25398,97306,gangsters,1412015712 +25398,97306,quirky,1412015631 +25398,97306,Sam Rockwell,1412015645 +25398,97306,violence,1412015714 +25398,97306,violent,1412015716 +25398,97306,witty,1412015718 +25398,97306,Woody Harrelson,1412015649 +25398,106782,based on a true story,1428929914 +25398,106782,drugs,1428929965 +25398,106782,Funny,1428929916 +25398,106782,greed,1428929961 +25401,4369,"speed, action, Street race, cars",1431586815 +25401,48596,"action, fighting, adventure",1431586940 +25439,4612,comedy,1319900355 +25439,4612,cynicism,1319900355 +25439,4612,intellectual,1319900355 +25439,4612,subtitles,1319900376 +25444,101924,fighting,1433456540 +25444,101924,mafia,1433456540 +25444,101924,shirtless men,1433456540 +25449,115210,tank driving,1429668728 +25449,115210,world war ii,1429668728 +25449,115210,wwii,1429668728 +25449,131446,martial arts,1434663746 +25449,131446,samurai x,1434663746 +25449,131446,swordfights,1434663746 +25493,1136,Old,1281865587 +25493,7254,alternate endings,1256584098 +25493,7254,alternate reality,1256584093 +25493,7254,memory,1256584116 +25493,7254,Mystery,1256584089 +25493,7254,psychology,1256584109 +25493,7254,suspense,1256584101 +25493,7254,time travel,1256584104 +25493,41566,adventure,1261263671 +25493,41566,alternate reality,1261263669 +25493,41566,alternate universe,1261263666 +25493,41566,based on book,1261263662 +25493,41566,Fantasy World,1261263652 +25493,41566,good versus evil,1261263654 +25493,41566,magic,1261263658 +25493,47099,sad,1281865748 +25493,58559,based on a comic,1256584176 +25493,58559,comic book,1256584171 +25493,58559,imdb top 250,1256584183 +25493,58559,superhero,1256584162 +25493,58559,vigilante,1256584163 +25493,59369,crime,1256492457 +25493,59369,fight scenes,1256492445 +25493,67087,comedy,1256584017 +25493,67087,likeable,1256584032 +25493,67193,Julia Roberts,1256584310 +25493,73017,adapted from:comic,1281865903 +25493,73017,mystery,1281865908 +25493,73017,Sherlock Holmes,1281865916 +25493,78105,adventure,1281866191 +25493,78105,based on a video game,1281866176 +25493,78105,fantasy,1281866182 +25493,78105,FX,1281866199 +25493,78105,kingdoms,1281866187 +25524,74754,so bad it's good,1452796281 +25524,74754,unintentional comedy,1452796279 +25524,74754,unintentionally funny,1452796288 +25524,94959,bittersweet,1385576215 +25524,94959,camping,1385576215 +25524,94959,coming of age,1385576189 +25524,94959,Edward Norton,1385576199 +25524,94959,scouting,1385576215 +25524,96737,Dystopia,1452796387 +25525,519,sci fi,1189175113 +25525,1125,classic comedy,1189175035 +25525,1173,nah,1189175334 +25525,1295,book better,1189175246 +25525,1298,good music,1189175018 +25525,1464,watchable,1189175274 +25525,2117,excellent,1189175392 +25525,2409,unbelievable,1189175090 +25525,3263,Woody Harrelson,1189175052 +25525,3617,teen,1189174940 +25525,3706,trash,1189175461 +25525,3821,trash,1189175498 +25525,3825,trash,1189175259 +25525,4545,trash,1189175446 +25525,4621,immature,1189175346 +25525,5528,mundane,1189175207 +25525,6373,Jim Carrey,1189175006 +25525,6373,poor dialogue,1189175006 +25525,6870,Clint Eastwood,1189174952 +25525,8361,looks over content,1189175305 +25525,8622,Michael Moore,1189174917 +25525,8917,bizarre,1189175425 +25525,8917,funny moments,1189175425 +25525,8984,hoolywood rubbish,1189175369 +25525,35836,funny moments,1189175186 +25529,2716,Bill Murray,1150993432 +25529,2716,ghosts,1150993429 +25529,2716,mystery,1150993422 +25553,2949,007,1233053871 +25553,2949,assassin,1233053878 +25553,2949,james bond,1233053880 +25556,51091,Nudity (Topless),1210104034 +25566,48516,atmospheric,1254817110 +25566,48516,Leonardo DiCaprio,1254817115 +25566,48516,Matt Damon,1254817217 +25581,44759,showing in Finland,1147073466 +25604,474,assassination,1315584253 +25604,474,cliche,1315584220 +25604,474,clint eastward,1315584205 +25604,474,John Malkovich,1315584228 +25604,474,killing the president,1315584242 +25604,474,wooden delivery,1315584198 +25604,1274,atmospheric,1300602433 +25604,1274,dystopia,1300602451 +25604,1274,hallucinatory,1300602426 +25604,1274,stylized,1300602445 +25604,1274,violent,1300602449 +25604,4874,intellectual,1299425037 +25604,4874,intelligent sci-fi,1299425064 +25604,4874,no conclusion,1299424989 +25604,5002,Great stoned,1329206349 +25604,5002,Philosophy,1329206344 +25604,5003,Great stoned,1329206397 +25604,5047,Clever editing,1329206215 +25604,5047,Kung-Fu,1329206250 +25604,5047,martial arts,1329206258 +25604,5047,ridiculous,1329206243 +25604,5047,Steve Oedekerk,1329206237 +25604,5047,Whacky,1329206199 +25604,6093,animation,1329206867 +25604,6093,anime,1329206863 +25604,6093,bittersweet,1329206844 +25604,6093,heartwarming,1329206850 +25604,6093,unicorns,1329206852 +25604,8914,Complicated,1299425689 +25604,8914,complicated plot,1299425694 +25604,8914,mindfuck,1299425705 +25604,31150,Bakshi,1329206806 +25604,31150,Cartoons for Big Kids,1329206789 +25604,31150,corny,1329206792 +25604,31150,"dope""",1329206797 +25604,31150,Nazis,1329206786 +25604,52328,beautiful effects,1299425158 +25604,52328,gratuitous violence in a psychological thriller,1299425205 +25604,52328,great soundtrack,1299425154 +25604,52328,horror story,1299425169 +25604,52328,isolation,1299425221 +25604,64839,aging,1300594556 +25604,64839,blood,1300594794 +25604,64839,deliberate misdirection,1300594758 +25604,64839,nudity,1300594801 +25604,64839,old,1300594563 +25604,64839,realistic,1300594771 +25604,64839,relationships,1300594567 +25604,64839,sport:professional wrestling,1300594548 +25604,64839,why was he taking speed?,1300594629 +25604,70286,action,1299425272 +25604,70286,aliens,1299425301 +25604,70286,evil corporations,1299425296 +25604,70286,justice,1299425293 +25604,70286,mockumentary,1299425277 +25604,70286,role reversal,1299425338 +25604,70286,social commentary,1299425284 +25604,70286,social segregation,1299425287 +25604,70286,Why didn't the aliens fight?,1299425377 +25604,71429,depress,1299424693 +25604,76093,funny,1329206966 +25604,76093,predictable,1329206977 +25604,76093,soundtrack,1329206959 +25604,78247,'Erasing' effect,1329207092 +25604,78247,'Isreal' plot,1329207108 +25604,78247,Breaking 4th Wall,1329207056 +25604,78247,Funny,1329207045 +25604,78247,Great stoned,1329207146 +25604,78247,Nowhere near as good as the series,1329207135 +25604,78247,Plot,1329207048 +25604,78247,Self deprecation,1329207066 +25604,87222,'Daddy issues',1329207322 +25604,87222,'The weapon',1329207355 +25604,87222,Fantastic animation,1329207266 +25604,87222,Much better than the first,1329207258 +25604,90249,boxing,1330756989 +25604,90249,father-son relationship,1330756988 +25604,90249,feel-good,1330757010 +25604,90249,Fighting Robots,1330757018 +25604,90249,obnoxious kid,1330756991 +25604,90249,predictable,1330757005 +25626,2795,Notable Nudity,1150330466 +25634,3504,great writing,1139794782 +25642,112852,marvel,1435269406 +25642,112852,space,1435269406 +25642,112852,superhero team,1435269406 +25649,1,children,1358551250 +25649,16,joe pesci,1360328376 +25649,29,atmospheric,1336074231 +25649,29,dystopia,1336074222 +25649,29,surreal,1336074225 +25649,47,disturbing,1358550345 +25649,47,morgan freeman,1358550341 +25649,101,Owen Wilson,1339348517 +25649,101,quirky,1339348501 +25649,223,cynical,1365204261 +25649,223,funny,1365204277 +25649,223,good dialogue,1365204253 +25649,223,hilarious,1365204257 +25649,223,quirky,1365204245 +25649,223,stoner comedy,1365204271 +25649,223,witty,1365204266 +25649,307,atmospheric,1360439464 +25649,393,camp,1367507584 +25649,393,video game adaptation,1367507552 +25649,441,drugs,1421537937 +25649,441,marijuana,1421537939 +25649,441,quirky,1421537941 +25649,778,black comedy,1354454094 +25649,778,drugs,1329834875 +25649,841,atmospheric,1386021005 +25649,849,dystopia,1388704725 +25649,1080,british,1350149092 +25649,1080,hilarious,1350149097 +25649,1080,religion,1350149107 +25649,1093,1960s,1360524687 +25649,1093,drugs,1360524712 +25649,1093,hallucination,1360524734 +25649,1093,jim morrison,1360524691 +25649,1093,music,1360524697 +25649,1093,val kilmer,1360524707 +25649,1136,British,1329834747 +25649,1136,british comedy,1329834747 +25649,1136,comedy,1329834746 +25649,1136,funny,1329834747 +25649,1202,drugs,1412429082 +25649,1202,quirky,1412429087 +25649,1213,joe pesci,1360328410 +25649,1222,anti-war,1329834571 +25649,1232,cinematography,1360013988 +25649,1232,downbeat,1360013975 +25649,1232,dreamlike,1360013971 +25649,1232,dystopia,1360013964 +25649,1255,campy,1367443491 +25649,1255,cult film,1367443488 +25649,1298,animation,1361135977 +25649,1298,cult film,1361135967 +25649,1298,drugs,1361135959 +25649,1298,psychedelic,1361135971 +25649,1298,surreal,1361135962 +25649,1590,distorted reality,1373923721 +25649,1590,hallucination,1373923709 +25649,1590,horror,1373923701 +25649,1590,scary,1373923733 +25649,1732,comedy,1329834485 +25649,1732,cult film,1329834485 +25649,1732,drugs,1345747415 +25649,1732,quirky,1329834485 +25649,1748,cult film,1329834700 +25649,1748,dystopia,1329834700 +25649,1748,sci-fi,1329834699 +25649,1884,1960s,1360524770 +25649,1884,drugs,1320772480 +25649,1884,funny,1320772480 +25649,1884,hallucinatory,1360524780 +25649,1884,interesting,1320772480 +25649,1884,Johnny Depp,1320772480 +25649,1884,social commentary,1320772480 +25649,1921,atmospheric,1329834393 +25649,1921,black and white,1354453783 +25649,1921,disturbing,1329834393 +25649,1921,hallucinatory,1329834393 +25649,1921,mathematics,1329834393 +25649,1921,weird,1329834393 +25649,2021,sci-fi,1330179717 +25649,2021,slow paced,1330179723 +25649,2022,good soundtrack,1352491119 +25649,2022,religion,1352491107 +25649,2022,soundtrack,1352491123 +25649,2122,creepy kids,1364157827 +25649,2122,cult film,1364157830 +25649,2122,stephen king,1364157836 +25649,2131,bleak,1353187939 +25649,2148,absurd,1352717278 +25649,2148,cheesy,1352717292 +25649,2148,funny,1352717281 +25649,2148,ghosts,1352717305 +25649,2232,cult film,1329834126 +25649,2232,mathematics,1329834126 +25649,2318,dark comedy,1361051179 +25649,2318,dark humor,1361051187 +25649,2318,disgusting,1361051200 +25649,2439,agonizing,1373454335 +25649,2439,depressing,1358616792 +25649,2495,psychedelic,1443982371 +25649,2495,Surreal,1443982368 +25649,2495,Trippy,1443982374 +25649,2528,dystopia,1407092057 +25649,2528,post-apocalyptic,1407092062 +25649,2542,black comedy,1329834259 +25649,2542,British,1329834259 +25649,2542,drugs,1423390748 +25649,2542,funny,1329834259 +25649,2580,black comedy,1344111180 +25649,2580,comedy,1344111188 +25649,2580,drugs,1344111184 +25649,2580,rave,1344111194 +25649,2700,musical,1330870691 +25649,2700,satire,1330870694 +25649,2706,sean william scott,1352491345 +25649,2710,creepy,1320772348 +25649,2710,ending,1320772348 +25649,2710,low budget,1320772348 +25649,2710,scary,1320772348 +25649,2710,suspense,1320772348 +25649,2730,atmospheric,1359484409 +25649,2730,cinematography,1359484403 +25649,2730,slow,1359484390 +25649,2731,black and white,1361122819 +25649,2731,children,1361122814 +25649,2857,animation,1361135928 +25649,2857,beatles,1361135931 +25649,2857,psychedelic,1361135916 +25649,2857,surreal,1361135920 +25649,2959,insanity,1329834597 +25649,2959,social commentary,1362236137 +25649,2959,twist ending,1329834597 +25649,3272,depressing,1378156721 +25649,3272,disturbing,1378156708 +25649,3272,drugs,1378156691 +25649,3272,grim,1378156725 +25649,3272,gritty,1378156717 +25649,3272,religion,1378156701 +25649,3415,dreamlike,1349121054 +25649,3415,visually stunning,1349121050 +25649,3476,disturbing,1329834524 +25649,3476,hallucination,1329834524 +25649,3476,insanity,1329834524 +25649,3476,surreal,1329834524 +25649,3552,bill murray,1374168892 +25649,3552,golf,1374168887 +25649,3581,drugs,1329834892 +25649,3593,camp,1356907302 +25649,3593,incoherent,1356907312 +25649,3593,scientologist,1356907285 +25649,3593,stupid,1356907288 +25649,3593,stupid plot,1356907319 +25649,3624,owen wilson,1345541883 +25649,3676,atmospheric,1329834639 +25649,3676,black and white,1354453830 +25649,3676,creepy,1329834638 +25649,3676,cult film,1329834639 +25649,3676,disturbing,1329834638 +25649,3676,dreamlike,1329834665 +25649,3676,gruesome,1329834639 +25649,3676,hallucinatory,1329834639 +25649,3676,surreal,1329834665 +25649,3700,alien,1355170090 +25649,3700,black comedy,1355170085 +25649,3700,metaphor,1355170095 +25649,3700,quirky,1355170146 +25649,3702,cult classic,1368734477 +25649,3702,dystopia,1368734480 +25649,3702,post-apocalyptic,1368734486 +25649,3703,dystopia,1388442781 +25649,3703,post-apocalyptic,1388442785 +25649,3863,atmospheric,1358755600 +25649,3863,cinematography,1358755605 +25649,3863,dark,1358755610 +25649,3863,dreamlike,1358755615 +25649,3863,stylized,1358755620 +25649,3863,surreal,1358755596 +25649,3948,owen wilson,1351408362 +25649,3949,depressing,1329834067 +25649,3949,disturbing,1329834067 +25649,3949,drugs,1329834067 +25649,4128,cult film,1421537993 +25649,4306,children,1358551281 +25649,4308,musical,1358551356 +25649,4369,boring,1320772522 +25649,4369,cars,1297800748 +25649,4369,macho,1320772522 +25649,4369,street race,1320772522 +25649,4369,stupid,1320772522 +25649,4553,cult film,1329834333 +25649,4641,quirky,1406056312 +25649,4713,drugs,1329834912 +25649,4718,sean william scott,1352491381 +25649,4834,drugs,1402161796 +25649,5147,dreamlike,1353187898 +25649,5147,meditative,1353187901 +25649,5218,children,1358551270 +25649,5500,comedy,1329723482 +25649,5500,funny,1329834041 +25649,5500,musical,1329834032 +25649,5500,nazis,1329834041 +25649,5678,drugs,1349431250 +25649,6223,drugs,1337595423 +25649,6303,sci-fi,1329834169 +25649,6303,slow,1329834169 +25649,6645,cinematography,1329834297 +25649,6645,dystopia,1329834297 +25649,6645,sci-fi,1329834297 +25649,6664,action,1354816017 +25649,6953,benicio del toro,1368383630 +25649,6953,death,1368383597 +25649,6953,depressing,1368307575 +25649,6953,melancholy,1368383618 +25649,6953,nonlinear,1368383622 +25649,6953,tragedy,1368383600 +25649,6975,disturbing,1419718691 +25649,6975,long takes,1419718698 +25649,7024,disturbing,1358551483 +25649,7076,car chase,1360409289 +25649,7076,steve mcqueen,1360409284 +25649,7120,BAD special effects,1356907413 +25649,7120,irritating,1356907433 +25649,7120,stupid,1356907401 +25649,7120,unbearable,1356907423 +25649,7123,disturbing,1408215971 +25649,7123,drugs,1408215966 +25649,7123,hallucinatory,1408215979 +25649,7123,surreal,1408215975 +25649,7236,dystopia,1352573323 +25649,7236,post-apocalyptic,1352573329 +25649,7749,irritating,1329834836 +25649,7764,cult,1358551115 +25649,7817,sean connery,1358550645 +25649,7836,1960s,1377929753 +25649,7836,music,1377929768 +25649,7836,rock and roll,1377929763 +25649,7940,pointless,1355170699 +25649,7959,drugs,1337595399 +25649,8376,camp,1330152597 +25649,8376,funny,1352717572 +25649,8376,quirky,1330152597 +25649,8376,slow,1330152597 +25649,8641,jack black,1351408231 +25649,8950,atmospheric,1375076102 +25649,8950,twist ending,1375076095 +25649,25902,psychological,1360771407 +25649,26078,politics,1374515787 +25649,26246,depressing,1346011462 +25649,26246,disturbing,1346011468 +25649,27216,cult,1346011360 +25649,27216,cult classic,1346011367 +25649,27216,finland,1346011339 +25649,27216,quirky,1346011344 +25649,27773,depressing,1374964293 +25649,27773,hallucinatory,1374964290 +25649,27773,surreal,1374964309 +25649,27831,british,1353433171 +25649,27831,drug trade,1353433161 +25649,27831,drugs,1353433165 +25649,27904,animation,1368046097 +25649,27904,drugs,1368132607 +25649,27904,ugly,1368132617 +25649,30810,owen wilson,1339660478 +25649,30810,quirky,1339660473 +25649,34292,dystopia,1407092204 +25649,34292,post-apocalyptic,1407092200 +25649,38061,black comedy,1369434770 +25649,38061,dark comedy,1369434762 +25649,38061,funny,1369434764 +25649,38304,Bob Dylan,1329834720 +25649,38304,folk music,1329834720 +25649,38304,music,1360328285 +25649,43009,cinematography,1373828446 +25649,43009,horror,1373828493 +25649,43009,insanity,1373828472 +25649,43009,surreal,1373828487 +25649,44761,quirky,1366905296 +25649,44761,slow,1366905303 +25649,45991,hippies,1337595553 +25649,46335,cars,1320772558 +25649,46335,macho,1320772558 +25649,46335,sequel,1320772558 +25649,46335,street race,1320772558 +25649,46335,stupid,1320772558 +25649,47423,addiction,1374096877 +25649,47423,drugs,1374096854 +25649,47423,slow,1374096861 +25649,51063,drugs,1420134799 +25649,51255,British,1329834551 +25649,51255,comedy,1329834551 +25649,55830,jack black,1351360488 +25649,55830,quirky,1351360496 +25649,61132,jack black,1351408207 +25649,62063,atmospheric,1329834776 +25649,62063,bleak,1329833975 +25649,62063,dark,1329833975 +25649,62063,depressing,1329833975 +25649,62063,dystopia,1329833975 +25649,62063,post-apocalyptic,1329833975 +25649,62113,Simon Pegg,1424603696 +25649,62849,drugs,1377298044 +25649,62849,pretentious,1377298057 +25649,62849,tries too hard,1377298063 +25649,64839,wrestling,1359405530 +25649,66289,black and white,1354453517 +25649,66289,disturbing,1354453724 +25649,66289,dreamlike,1354453595 +25649,66289,hallucinatory,1354453808 +25649,66289,sadomasochism,1354453638 +25649,66289,surreal,1354453611 +25649,66289,torture,1354453504 +25649,66289,visually stunning,1354453588 +25649,66289,vomit,1354453630 +25649,67997,british,1331153793 +25649,67997,satire,1331153772 +25649,67997,swearing,1331153778 +25649,68237,psychology,1367863223 +25649,68952,annoying characters,1352717323 +25649,68952,not funny,1352717350 +25649,68952,poor acting,1352717330 +25649,69275,gore,1352573576 +25649,69951,surreal,1420327134 +25649,69951,tom waits,1420327131 +25649,70984,drugs,1342971458 +25649,70984,hippies,1342971474 +25649,70984,rock,1342971466 +25649,71135,action,1373933129 +25649,71135,post-apocalyptic,1373933139 +25649,74458,insanity,1352666834 +25649,74458,surreal,1352666843 +25649,74458,twist ending,1352666838 +25649,78349,experiment,1376690268 +25649,78349,stupid ending,1376690259 +25649,78574,cinematography,1358446063 +25649,78574,drugs,1358446066 +25649,78574,realism,1358446069 +25649,78836,boring,1358502677 +25649,78836,drugs,1358502661 +25649,78836,psychedelic,1358502664 +25649,78836,too long,1358502671 +25649,81660,camp,1388796203 +25649,81660,cult film,1388796207 +25649,81660,gay,1388796139 +25649,81660,post-apocalyptic,1388795808 +25649,81660,weird,1388796144 +25649,81753,documentary,1356907583 +25649,81753,music,1356907569 +25649,81753,pekka streng,1356907566 +25649,82143,Alaska,1423596350 +25649,82143,wilderness,1423596352 +25649,85796,over the top,1367443389 +25649,85883,prison,1320693146 +25649,85883,running,1320693142 +25649,91128,drugs,1367789013 +25649,91128,johnny depp,1367789009 +25649,91529,michael caine,1344459550 +25649,91529,morgan freeman,1344459546 +25649,93531,cult film,1354453924 +25649,93531,murder,1354453916 +25649,93531,violence,1354453909 +25649,93991,horror,1355170399 +25649,93991,religion,1355170403 +25649,98080,boring,1352717146 +25649,98080,stupid,1352717149 +25649,99380,camp,1356907022 +25649,99380,cult film,1356907072 +25649,99380,post-apocalyptic,1356907029 +25649,99395,future,1356908343 +25649,99397,atmospheric,1356908222 +25649,99397,cult,1356908225 +25649,99397,dark,1356908272 +25649,99397,dystopia,1356908269 +25649,99397,sci-fi,1356908253 +25649,101897,crime,1365935815 +25649,101897,dark humor,1365935827 +25649,101897,dialogue,1365935842 +25649,101897,sadomasochism,1365935795 +25649,103727,post-apocalyptic,1422471878 +25649,104384,cult,1383951916 +25649,104384,drugs,1383951902 +25649,104384,hippies,1383951920 +25649,104384,psychedelic rock,1383951912 +25649,104384,religion,1383951905 +25649,114426,drugs,1420134784 +25654,30820,Disturbing and moving,1137457335 +25667,260,c3po,1439756609 +25667,260,darth vader,1439756574 +25667,260,empire,1439756580 +25667,260,jedi,1439756566 +25667,260,luke skywalker,1439756612 +25667,260,obi wan kenobi,1439756600 +25667,260,r2 d2,1439756604 +25667,260,the force,1439756592 +25683,260,Science Fiction,1435353547 +25683,260,space adventure,1435353565 +25700,47,horror,1370378214 +25700,47,psychology,1370378225 +25700,593,disturbing,1370378240 +25700,1219,mystery,1370378261 +25700,1219,serial killer,1370378272 +25700,1258,atmospheric,1370378294 +25700,1258,ghosts,1370378286 +25700,1258,mental illness,1370378303 +25700,1258,Psychological horror,1370378316 +25700,2140,jim henson,1370378508 +25700,2143,cult film,1370378549 +25700,2143,tim curry,1370378532 +25700,3798,horror,1370379782 +25700,3798,revenge,1370379788 +25700,4720,afterlife,1370378331 +25700,4720,gothic,1370378336 +25700,4720,haunted house,1370378341 +25700,37857,artistic,1370378485 +25700,37857,dreamlike,1370378493 +25700,37857,slow,1370378480 +25700,48394,alternate reality,1370378397 +25700,48394,surreal,1370378385 +25700,59387,cinematography,1370378440 +25700,59387,visually appealing,1370378450 +25700,97188,overshowing,1370379932 +25700,102445,Benedict Cumberbatch,1370990339 +25714,96829,excellent acting,1429905170 +25714,96829,intense,1429905170 +25714,96829,thriller,1429905170 +25733,293,Gary Oldman,1440011742 +25733,293,great acting,1440011761 +25733,293,Luc Besson,1440011767 +25733,741,artificial intelligence,1440365105 +25733,741,cyberpunk,1440365101 +25733,741,cyborgs,1440365117 +25733,741,hackers,1440365119 +25733,741,philosophical,1440365109 +25733,923,boring,1440013184 +25733,2571,artificial intelligence,1440011907 +25733,2571,Carrie-Anne Moss,1440011924 +25733,2571,cyberpunk,1440011910 +25733,2571,philosophical,1440011932 +25733,2571,thought-provoking,1440011906 +25733,32906,betrayal,1440012101 +25733,32906,philosophical,1440012070 +25733,32906,survival instinct,1440012069 +25733,48304,deep,1440011861 +25740,112552,jazz,1423745826 +25740,113559,japan,1420430883 +25740,113559,modern girls,1420430883 +25740,113559,tragedy,1420430883 +25740,122886,Plot Recycling,1453075161 +25756,593,hannibal,1138400451 +25756,899,classical,1138283495 +25756,899,really enjoyable,1138283495 +25756,903,smart planning,1138283509 +25756,919,technicolor,1138378988 +25756,920,must must,1138379080 +25756,1028,childhood,1138378921 +25756,1230,what cinema is supposed to be,1141320620 +25756,1259,friendship,1138379507 +25756,1260,whistle,1141321142 +25756,1333,makes you really scared,1138283305 +25756,2081,my 1st ever,1138283528 +25756,2657,cinerama,1138283270 +25756,2959,awsome,1138380260 +25756,4641,lifelike,1138638946 +25756,4641,smart,1138638946 +25756,4857,captivating,1138379463 +25756,4951,feelings about society,1138808260 +25756,4995,intelligent,1138283471 +25756,5669,great doc,1138399073 +25756,6016,aee brasil,1138398106 +25756,6016,nacional,1138398106 +25756,8360,smart animation,1138379394 +25756,30793,the mester,1138283449 +25756,30793,tim,1138283449 +25756,34072,animal superiority,1139010966 +25756,34072,ice music,1139010966 +25756,36517,meirelles no esterior,1138379173 +25756,37729,tim rocks,1138397614 +25756,40819,hollywood bio,1141320567 +25756,41285,Disturbing,1140477165 +25756,41569,kong looks pretty real,1138379337 +25756,47099,bittersweet,1177020355 +25756,48385,Male nudity,1177020382 +25769,86898,abstract,1430326080 +25769,86898,confusing,1430326076 +25769,98239,bad acting,1420492999 +25769,109436,childishness,1393193212 +25769,112290,chores,1428166877 +25769,115414,Christianity,1441737793 +25769,115414,religion,1441737796 +25769,116797,historical inaccuracy,1424623603 +25778,26171,urban life and every day stupid funny things you see.,1145814149 +25778,41527,palestine,1145814068 +25781,260,hero's journey,1439766986 +25781,260,space adventure,1439766980 +25785,69122,comedy,1268524364 +25815,40815,dragons,1442843004 +25815,40815,Magic,1442843011 +25829,102481,product placement,1384045811 +25861,3809,sailing,1140406674 +25861,3809,vacation,1140406685 +25861,5582,sailing,1140406622 +25861,5991,musical,1140406489 +25861,6539,sailing,1140406600 +25861,6947,sailing,1140406590 +25861,6947,war,1140406555 +25869,36529,dark comedy,1249588773 +25880,260,adventure,1444291446 +25880,260,fantasy,1444291417 +25880,260,sci-fi,1444291428 +25894,68358,alternate reality,1242867136 +25894,68358,Star Trek,1242867128 +25894,70533,remake,1264697568 +25894,71379,original ending,1264697658 +25894,71379,remade ending,1264697648 +25938,260,classic sci-fi,1440937451 +25938,260,Harrison Ford,1440937441 +25938,260,space adventure,1440937412 +25944,296,drugs,1421131789 +25944,296,stories,1421131789 +25944,296,tarantino,1421131789 +25944,356,drama,1428518007 +25944,356,story telling,1428518007 +25944,356,tom hanks,1428518007 +25944,61262,bad ending,1249972948 +25944,63312,Germany,1238484800 +25944,63312,sorcery,1238484729 +25944,63312,Thirty Years' War,1238484776 +25944,76093,Dreamworks animation,1270043115 +25944,76093,funny!,1270043115 +25944,76093,vikings,1270043115 +25960,56949,comedy romance,1225399217 +25968,260,childhood classic,1441592150 +25968,260,the classic sci fi movie. must see.,1441592115 +25971,260,cult classic,1445342019 +25971,260,Science Fiction,1445342003 +25971,260,Star Wars,1445342008 +25971,4973,music,1445341979 +25971,4973,Paris,1445341970 +25980,296,cult film,1408018134 +25980,296,drugs,1408018120 +25980,296,multiple storylines,1408018110 +25980,296,organized crime,1408018132 +25980,296,Quentin Tarantino,1408018113 +25980,296,Samuel L. Jackson,1408018118 +25980,1136,Monty Python,1409735238 +25980,1136,parody,1409735244 +25980,1136,satire,1409735240 +25980,1136,Terry Gilliam,1409735242 +25980,4007,Business is the antagonist,1416918224 +25980,4007,corporate America,1416918242 +25980,4007,Oliver Stone,1416918211 +25980,4007,Oscar (Best Actor),1416918239 +25980,44199,bank robbery,1416918318 +25980,44199,intelligent thriller,1416918322 +25980,44199,twist ending,1416918315 +25980,112556,Psychopathy,1419251442 +25980,112556,unpredictable,1419251444 +26041,296,overated,1144882587 +26046,260,Good music,1440014574 +26046,260,sci-fi,1440014565 +26046,260,series,1440014547 +26046,260,the classic sci fi movie. must see.,1440014585 +26056,260,hero's journey,1437237241 +26056,260,space opera,1437237225 +26079,260,classic sci-fi,1442274486 +26079,260,nerdy,1442274475 +26079,912,overrated,1442276904 +26079,924,confusing ending,1442281997 +26079,1208,lengthy,1442277048 +26079,1288,mockumentary,1442282859 +26079,2232,maze,1442285076 +26079,2571,The Chosen One,1442281439 +26079,5319,Argentina,1442276526 +26079,5319,con artists,1442276535 +26079,5319,twist ending,1442276518 +26079,5952,Epic,1442276384 +26079,5952,siege,1442276382 +26079,71838,ending kinda ruined it,1442285716 +26079,71838,revenge,1442285726 +26079,112852,cliché,1442276340 +26079,112852,overrated,1442276329 +26079,114180,dystopia,1442275626 +26079,114180,maze,1442275601 +26079,114180,teen,1442275599 +26118,4995,dimentia,1442394128 +26118,81591,dimentia,1442394163 +26125,7,based on a play,1409535205 +26125,7,chick flick,1409535272 +26125,7,finding yourself,1409535255 +26125,7,Greg Kinnear,1409535231 +26125,7,Harrison Ford,1409535193 +26125,7,Paris,1409535396 +26125,7,remake,1409535201 +26125,7,ugly duckling,1409535396 +26125,24,albino,1139708611 +26125,24,special powers,1139708611 +26125,29,abused children,1139708494 +26125,29,surreal,1139708494 +26125,36,death row,1139708506 +26125,47,bradpitt,1137889233 +26125,47,investigation,1249336829 +26125,116,germany,1248759096 +26125,116,holocaust,1248759096 +26125,116,jews,1248759096 +26125,116,nazis,1248759096 +26125,116,true story,1248759096 +26125,116,wwII,1248759096 +26125,135,rebel commander,1394591768 +26125,135,renegade crew,1394591762 +26125,135,rusty sub,1394591776 +26125,135,submarine,1394591736 +26125,135,U.S. Navy submarine,1394591754 +26125,185,computers,1183878508 +26125,185,internet,1183878510 +26125,260,space travel,1138743299 +26125,292,disease,1140066712 +26125,293,assassin,1249335257 +26125,293,French,1249335282 +26125,293,hit men,1249335270 +26125,293,touching,1249335286 +26125,316,aliens,1162616766 +26125,316,ancient egyptians,1162616766 +26125,316,pyramids,1162616766 +26125,316,ra,1162616766 +26125,316,space,1162616766 +26125,337,brother-brother relationship,1429376547 +26125,337,coming-of-age,1429376571 +26125,337,depressing,1429376594 +26125,337,disability,1429376551 +26125,337,dysfunctional family,1429376544 +26125,337,Johnny Depp,1429376559 +26125,337,Leonardo DiCaprio,1429376579 +26125,337,mental illness,1429376567 +26125,337,obesity,1429376615 +26125,337,quirky,1429376581 +26125,337,siblings,1429376563 +26125,337,small town,1429376601 +26125,356,football,1248760793 +26125,356,historical,1248760775 +26125,356,tom hanks,1137889106 +26125,356,vietnam war,1248760767 +26125,440,chick flick,1176510805 +26125,440,politics,1391396264 +26125,440,president,1176510789 +26125,440,US President,1391396276 +26125,448,airplane crash,1139708467 +26125,448,cheating death,1139708467 +26125,456,chess,1142400362 +26125,456,poverty,1142397912 +26125,480,dinosaurs,1140066697 +26125,502,Boston,1252709239 +26125,502,high school,1252709220 +26125,502,martial arts,1252709228 +26125,502,New York,1252709250 +26125,515,british accents,1394847371 +26125,515,Butler,1394847230 +26125,515,French,1394847371 +26125,515,Germans,1394847371 +26125,515,Great acting,1394847239 +26125,515,Housekeeper,1394847210 +26125,515,period piece,1394847206 +26125,515,pretentiousness,1394847371 +26125,515,servants,1394847371 +26125,529,based on a true story,1402200698 +26125,529,board game,1402200721 +26125,529,chess,1402200702 +26125,529,father-son relationship,1402200709 +26125,529,genius,1402200724 +26125,529,prodigy,1402200755 +26125,529,They Forgot to Mention that Fisher is an Insane Nazi,1402200776 +26125,529,true story,1402200713 +26125,586,christmas,1431524647 +26125,586,crime,1431524675 +26125,586,family,1431524662 +26125,586,for kids,1431524644 +26125,586,kid on his own,1431524685 +26125,593,cannibalism,1218433887 +26125,593,crime,1218433894 +26125,593,serial killer,1137889265 +26125,594,Disney,1138482930 +26125,661,animation,1391396108 +26125,661,based on book,1391396117 +26125,661,claymation,1391396089 +26125,661,Disney,1391396092 +26125,661,fruits and veggies,1391396144 +26125,661,musical,1391396150 +26125,661,stop-motion,1391396098 +26125,674,space travel,1138581532 +26125,765,Aging Disorder,1283815719 +26125,780,aliens,1140066692 +26125,836,fuel; corruption,1188865546 +26125,848,grill,1295836873 +26125,848,hermit,1295836872 +26125,848,prison,1295836872 +26125,848,small town,1295836872 +26125,902,audrey hepburn,1138581419 +26125,903,Hitchcock,1138482818 +26125,904,Hitchcock,1138482840 +26125,908,Hitchcock,1138482834 +26125,911,adventure,1337281603 +26125,911,elegant,1337281599 +26125,911,heist,1337281587 +26125,911,Paris,1337281580 +26125,911,surprise ending,1337281583 +26125,911,twist ending,1337281591 +26125,911,urbane,1337281605 +26125,912,classic,1138483008 +26125,914,family,1138581633 +26125,916,Audrey Hepburn,1401514267 +26125,916,black and white,1401514263 +26125,916,classic,1401514253 +26125,916,elegant love,1401514377 +26125,916,Gregory Peck,1401514289 +26125,916,imdb top 250,1401514283 +26125,916,Italy,1401514279 +26125,916,love story,1401514276 +26125,916,mostly about a single day,1401514398 +26125,916,Oscar (Best Actress),1401514236 +26125,916,positive,1401514356 +26125,916,princess,1401514325 +26125,916,romantic comedy,1401514241 +26125,916,Rome,1401514232 +26125,916,royal pretends to be commoner,1401514335 +26125,916,royalty,1401514247 +26125,916,slapstick,1401514300 +26125,916,zest for life,1401514319 +26125,919,original,1138482922 +26125,920,civil war,1138482792 +26125,920,Classic,1138482792 +26125,920,south,1138482792 +26125,923,classic,1138483011 +26125,924,aliens,1201416507 +26125,924,artificial intelligence,1201416581 +26125,924,based on a book,1201416465 +26125,924,cerebral,1201416666 +26125,924,COMPUTER PARANOIA,1201416524 +26125,924,future,1201416575 +26125,924,imdb top 250,1201416503 +26125,924,space,1201416664 +26125,924,space travel,1138581388 +26125,924,surreal,1201416543 +26125,928,Hitchcock,1138482842 +26125,930,Hitchcock,1138482837 +26125,933,Hitchcock,1138483139 +26125,953,Christmas,1146199662 +26125,953,heartwarming,1146199662 +26125,965,Hitchcock,1138482824 +26125,968,zombies,1138581588 +26125,973,class issues,1402722676 +26125,973,journalism,1402722522 +26125,1003,ethical,1337286400 +26125,1007,don knotts,1138743230 +26125,1013,twins separated at birth,1138581445 +26125,1017,deserted island,1164498175 +26125,1017,stranded,1164498175 +26125,1018,Family,1138581485 +26125,1021,baseball,1142394854 +26125,1032,lewis carroll,1138483158 +26125,1035,family,1138581463 +26125,1073,surreal,1138743318 +26125,1077,cryogenics,1420319209 +26125,1077,Diane Keaton,1420319212 +26125,1077,dystopia,1420319224 +26125,1077,futuristic,1420319228 +26125,1077,time travel,1420319198 +26125,1077,Woody Allen,1420319202 +26125,1080,montyPython,1138743251 +26125,1086,Hitchcock,1138482808 +26125,1089,Quentin Tarantino,1173419039 +26125,1089,violence,1173419025 +26125,1097,alien,1139075838 +26125,1099,Christmas,1138482776 +26125,1127,Underwater,1139075811 +26125,1129,chaos,1140066655 +26125,1129,future,1140066655 +26125,1129,prison,1140066654 +26125,1130,werewolf,1139075927 +26125,1136,MontyPython,1137889175 +26125,1193,insane asylum,1138743281 +26125,1197,Billy Crystal,1448334406 +26125,1197,Cult classic,1448334326 +26125,1197,imdb top 250,1448334493 +26125,1197,medieval,1448334388 +26125,1197,princess,1448334538 +26125,1197,quirky,1448334446 +26125,1197,Rob Reiner,1448334414 +26125,1197,sword fight,1448334332 +26125,1197,sword fighting,1448334426 +26125,1197,torture,1448334547 +26125,1197,whimsical,1448334501 +26125,1198,ark of the covenant,1139075964 +26125,1198,biblical,1139075964 +26125,1201,American Civil War,1249333983 +26125,1201,Civil War,1249334006 +26125,1201,complex characters,1249333972 +26125,1201,imdb top 250,1249334010 +26125,1201,quirky,1249333997 +26125,1201,showdown,1249333936 +26125,1201,spaghetti western,1137889121 +26125,1203,all-male cast,1405272263 +26125,1203,based on a play,1405272099 +26125,1203,class issues,1405272176 +26125,1203,classic,1405272107 +26125,1203,confrontational,1405272150 +26125,1203,court,1405272030 +26125,1203,courtroom,1405272024 +26125,1203,courtroom drama,1405272021 +26125,1203,crime,1405272158 +26125,1203,dialogue driven,1405272034 +26125,1203,dramatic,1405272172 +26125,1203,ensemble cast,1405272067 +26125,1203,ethnic conflict,1405272055 +26125,1203,good dialogue,1405272072 +26125,1203,great screenplay,1405272133 +26125,1203,group psychology,1405272081 +26125,1203,Henry Fonda,1405272238 +26125,1203,imdb top 250,1405272117 +26125,1203,justice,1405272127 +26125,1203,knives,1405272342 +26125,1203,law,1405272137 +26125,1203,low budget,1405272111 +26125,1203,masterpiece,1405272086 +26125,1203,minimalist,1405272044 +26125,1203,murder,1405272248 +26125,1203,one against all,1405272328 +26125,1203,one room,1405272314 +26125,1203,PEER PRESSURE,1405272078 +26125,1203,preachy dialogue,1405272276 +26125,1203,predictable,1405272267 +26125,1203,prejudice,1405272090 +26125,1203,racism,1405272166 +26125,1203,rationality,1405272142 +26125,1203,social commentary,1405272037 +26125,1203,social psychology,1405272198 +26125,1203,USA,1405272318 +26125,1206,Kubrick,1138743236 +26125,1207,classic,1137889268 +26125,1207,courtroom drama,1248757985 +26125,1207,lawyer,1218433884 +26125,1207,race issues,1146199697 +26125,1207,racism,1227334346 +26125,1207,SINGLE PARENTS,1227334366 +26125,1207,small town,1248757991 +26125,1207,Southern theme,1248757993 +26125,1207,trial,1248757995 +26125,1208,Vietnam war,1138743217 +26125,1214,alien,1138743197 +26125,1214,space,1138743200 +26125,1219,Hitchcock,1138482811 +26125,1225,classical music,1139075860 +26125,1225,true story,1139075860 +26125,1240,future,1140066726 +26125,1240,time travel,1140066726 +26125,1253,aliens,1138483118 +26125,1257,goofy,1248759155 +26125,1257,high school,1248759149 +26125,1257,quirky,1248759165 +26125,1257,silly,1248759176 +26125,1257,skiing,1248759188 +26125,1257,teen,1137889060 +26125,1257,upbeat,1248759171 +26125,1258,haunted house,1139075987 +26125,1258,insane,1139075987 +26125,1269,dark comedy,1337280937 +26125,1269,insanity,1337280940 +26125,1270,1950s,1340940342 +26125,1270,1980s,1340940319 +26125,1270,adventure,1340940241 +26125,1270,alternate reality,1340940133 +26125,1270,DeLorean,1340940388 +26125,1270,fanciful,1340940194 +26125,1270,fun movie,1340940315 +26125,1270,future,1340940275 +26125,1270,high school,1340940230 +26125,1270,Highly quotable,1340940167 +26125,1270,incestual content,1340940252 +26125,1270,logic complexity,1340940396 +26125,1270,nostalgic,1340940361 +26125,1270,quirky,1340940246 +26125,1270,RACE AGAINST TIME,1340940191 +26125,1270,rock and roll,1340940148 +26125,1270,silly but good,1340940328 +26125,1270,teen,1340940163 +26125,1270,time machine,1340940368 +26125,1270,Time Paradox,1340940236 +26125,1270,time travel,1340940137 +26125,1270,To Be Continued,1340940265 +26125,1270,whimsical,1340940282 +26125,1278,farce,1138743090 +26125,1293,biographical,1233295976 +26125,1293,India,1233295974 +26125,1293,Oscar (Best Picture),1233295981 +26125,1296,adapted from:book,1419872725 +26125,1296,beautiful scenery,1419872696 +26125,1296,british accents,1419872810 +26125,1296,chick flick,1419872734 +26125,1296,E. M. Forster,1419872703 +26125,1296,England,1419872810 +26125,1296,gentle,1419872693 +26125,1296,Italy,1419872744 +26125,1296,period piece,1419872717 +26125,1296,pretentious,1419872810 +26125,1296,scenic,1419872730 +26125,1302,baseball,1404706270 +26125,1302,childhood classics,1404706275 +26125,1302,fantasy,1404706266 +26125,1302,father-son relationship,1404706280 +26125,1302,if you build it they will come,1404706336 +26125,1302,James Earl Jones,1404706330 +26125,1302,sport:baseball,1404706284 +26125,1302,sports,1404706296 +26125,1302,villain nonexistent or not needed for good story,1404706315 +26125,1321,bizarre,1401426155 +26125,1321,dark comedy,1401426148 +26125,1321,Funny,1401426175 +26125,1321,horror comedy,1401426163 +26125,1321,scary,1401426169 +26125,1321,tense,1202785128 +26125,1321,werewolf,1202785107 +26125,1321,werewolves,1146199619 +26125,1321,zombies,1137889022 +26125,1327,haunted house,1138742959 +26125,1333,AFI 100 (Thrills),1341696738 +26125,1333,animal horror,1146199572 +26125,1333,animals,1341696689 +26125,1333,birds,1146199571 +26125,1333,environmental,1341696682 +26125,1333,Hitchcock,1137889065 +26125,1333,mother-son relationship,1341696672 +26125,1333,seen more than once,1341696709 +26125,1333,sexual inuendo,1341696748 +26125,1333,simple,1341696695 +26125,1333,terrifying,1341696698 +26125,1341,psychological horror,1337288774 +26125,1344,AFI 100 (Thrills),1413428684 +26125,1344,better than the remake,1413428709 +26125,1344,filmed in savannah,1413428666 +26125,1344,Gregory Peck,1413428641 +26125,1344,lawyer,1413428636 +26125,1344,lawyers,1413428632 +26125,1344,old,1413428695 +26125,1344,revenge,1413428628 +26125,1344,Robert Mitchum,1413428677 +26125,1344,suspense,1413428660 +26125,1344,suspenseful,1413428653 +26125,1344,tense,1413428656 +26125,1345,possession,1138743360 +26125,1345,Stephen King,1138743360 +26125,1348,classic,1245093479 +26125,1348,Film Theory & Criticism,1245093473 +26125,1348,german expressionism,1245093458 +26125,1348,imdb top 250,1245093469 +26125,1348,old classic,1245093448 +26125,1348,vampires,1245093443 +26125,1350,antichrist,1249335861 +26125,1350,apocalypse,1249335890 +26125,1350,based on a book,1249335883 +26125,1350,Biblical,1137889188 +26125,1350,demons,1249335857 +26125,1350,devil,1249335866 +26125,1350,Devil Child,1249335906 +26125,1357,adapted from:true story,1403235361 +26125,1357,Australia,1403235129 +26125,1357,biography,1403235229 +26125,1357,biopic,1403235188 +26125,1357,classical music,1403235133 +26125,1357,father son relationship,1403235205 +26125,1357,insanity,1403235173 +26125,1357,Jews,1403235182 +26125,1357,mental illness,1403235136 +26125,1357,music,1403235310 +26125,1357,musicians,1403235160 +26125,1357,Oscar (Best Actor),1403235237 +26125,1357,Oscar (Best Picture),1403235199 +26125,1357,Oscar Nominee: Best Picture,1403235320 +26125,1357,Oscar Nominee: Director,1403235191 +26125,1357,Oscar Nominee: Music - Original Score,1403235260 +26125,1357,Oscar Nominee: Original Screenplay,1403235223 +26125,1357,Oscar Nominee: Supporting Actor,1403235217 +26125,1357,piano,1403235266 +26125,1357,Psychiatry,1403235169 +26125,1357,rachmaninoff,1403235348 +26125,1357,schizophrenia,1403235157 +26125,1357,true story,1403235234 +26125,1387,animal horror,1138743029 +26125,1387,shark,1138743029 +26125,1394,kidnapping,1249336612 +26125,1394,off-beat,1137889216 +26125,1407,teen,1137889569 +26125,1416,Andrew Lloyd Weber,1204684688 +26125,1416,Argentina,1204684633 +26125,1416,history,1204684658 +26125,1584,aliens,1137889348 +26125,1590,black hole,1411703653 +26125,1590,bloody,1411703566 +26125,1590,death,1411703646 +26125,1590,distorted reality,1411703577 +26125,1590,first contact,1411703555 +26125,1590,future,1411703599 +26125,1590,hallucination,1411703585 +26125,1590,insanity,1411703552 +26125,1590,Personal demons,1411703628 +26125,1590,pychologically thrilling,1411703659 +26125,1590,scary as hell,1411703631 +26125,1590,space,1411703558 +26125,1590,space travel,1411703589 +26125,1590,spaceflight,1411703642 +26125,1590,tense,1411703638 +26125,1590,violent,1411703611 +26125,1590,wormhole,1411703622 +26125,1590,zero gravity,1411703573 +26125,1711,adapted from:book,1245302586 +26125,1711,high society,1245302619 +26125,1711,Savannah,1245302578 +26125,1779,based on a book,1253223765 +26125,1779,first contact,1253223747 +26125,1779,sea bottom,1253223781 +26125,1779,submarine,1253223775 +26125,1779,time travel,1253223736 +26125,1779,underwater,1253223743 +26125,1801,adventure,1209258858 +26125,1801,France,1209258841 +26125,1801,Iron Mask,1209258877 +26125,1801,swashbuckler,1209258855 +26125,1927,world war I,1138482897 +26125,1931,oscar (best directing),1368027218 +26125,1935,based on a book,1393826295 +26125,1935,coal miners,1393826301 +26125,1935,Oscar (Best Cinematography),1393826279 +26125,1935,Oscar (Best Picture),1393826289 +26125,1935,unions,1393826316 +26125,1935,Welsh,1393826326 +26125,1936,England,1168577759 +26125,1936,roses,1168577759 +26125,1936,World War II,1168577759 +26125,1944,classic,1449716330 +26125,1944,Frank Sinatra,1449715967 +26125,1944,Oscar (Best Picture),1449715971 +26125,1944,Oscar (Best Supporting Actor),1449715982 +26125,1944,Oscar (Best Supporting Actress),1449716318 +26125,1944,Pearl harbor,1449715975 +26125,1944,World War II,1449716257 +26125,1946,bachelor,1424725944 +26125,1946,black and white,1424725944 +26125,1946,dance,1424725944 +26125,1946,Ernest Borgnine,1424725944 +26125,1946,old maid,1424725944 +26125,1946,Oscar (Best Actor),1424725859 +26125,1946,Oscar (Best Directing),1424725884 +26125,1946,Oscar (Best Picture),1424725869 +26125,1946,Plain Jane,1424725944 +26125,1947,gangs,1138581641 +26125,1951,poverty,1138581598 +26125,1954,sports,1138743094 +26125,1961,autism,1249336526 +26125,1961,dustinhoffman,1137889543 +26125,1961,mental illness,1249336522 +26125,1974,camp,1139075916 +26125,1974,killer,1139075916 +26125,1982,horror,1138743396 +26125,1994,ghosts,1139075949 +26125,1997,biblical,1138743001 +26125,1997,possession,1138743001 +26125,2009,bleak,1440879911 +26125,2009,Business is the antagonist,1440879897 +26125,2009,Charlton Heston,1440879902 +26125,2009,concubine,1440879948 +26125,2009,dated,1440879984 +26125,2009,dystopia,1440879886 +26125,2009,FIGHTING THE SYSTEM,1440879893 +26125,2009,overpopulation,1440879918 +26125,2009,slow,1440879941 +26125,2011,alternate reality,1340940445 +26125,2011,sequel,1340940450 +26125,2011,time travel,1340940442 +26125,2012,alternate reality,1340940457 +26125,2012,sequel,1340940464 +26125,2012,time travel,1340940460 +26125,2013,disaster,1138743166 +26125,2018,Disney,1138482998 +26125,2022,sacrilege,1201242521 +26125,2067,AFI 100,1409632166 +26125,2067,Amazing Cinematography,1409632149 +26125,2067,atmospheric,1409632105 +26125,2067,bolshevik revolution,1409632216 +26125,2067,classic,1409632116 +26125,2067,epic,1409632072 +26125,2067,flowers,1409632194 +26125,2067,history,1409632129 +26125,2067,imdb top 250,1409632119 +26125,2067,Julie Christie,1409632163 +26125,2067,literary adaptation,1409632065 +26125,2067,long,1409632210 +26125,2067,love story,1409632142 +26125,2067,Oscar (Best Cinematography),1409632091 +26125,2067,revolution,1409632126 +26125,2067,Russia,1409632068 +26125,2067,russian,1409632058 +26125,2067,Russian revolution,1409632087 +26125,2067,war,1409632156 +26125,2067,wintry,1409632200 +26125,2067,WWI,1409632175 +26125,2078,Disney,1138581584 +26125,2080,Disney,1138483200 +26125,2086,Christmas,1391395663 +26125,2097,surreal,1139075997 +26125,2100,mermaid,1139076010 +26125,2109,dumb but funny,1138743041 +26125,2111,dumb but funny,1139076161 +26125,2133,mishaps,1139076054 +26125,2137,Disney,1138743366 +26125,2150,natives,1137889396 +26125,2150,silly,1249333813 +26125,2176,Alfred Hitchcock,1337287437 +26125,2176,based on a true story,1337287441 +26125,2176,classic,1337287449 +26125,2183,Hitchcock,1138482831 +26125,2184,Hitchcock,1138483170 +26125,2186,Hitchcock,1138482814 +26125,2203,Alfred Hitchcock,1337287523 +26125,2203,classic,1337287547 +26125,2203,disturbing,1337287536 +26125,2203,serial killer,1337287526 +26125,2203,trains,1337287573 +26125,2208,classic,1245302454 +26125,2208,imdb top 250,1245302462 +26125,2208,MISSING PERSONS,1245302493 +26125,2208,train,1245302450 +26125,2212,british accents,1253766753 +26125,2212,poor audio,1253766737 +26125,2231,card games,1409986888 +26125,2231,cards,1409986861 +26125,2231,Edward Norton,1409986830 +26125,2231,gambling,1409986819 +26125,2231,holdem,1409986867 +26125,2231,John Malkovich,1409986850 +26125,2231,language,1409986854 +26125,2231,Matt Damon,1409986834 +26125,2231,money,1409986870 +26125,2231,narrated,1409986823 +26125,2231,New York,1409986842 +26125,2231,poker,1409986814 +26125,2232,cult film,1248760424 +26125,2232,intense,1248760417 +26125,2232,mathematics,1248760405 +26125,2232,original,1137889363 +26125,2232,psychology,1248760394 +26125,2232,weird,1248760400 +26125,2297,ghosts/afterlife,1201416236 +26125,2297,surreal,1201416226 +26125,2300,Below R,1420319316 +26125,2300,Broadway,1420319285 +26125,2300,fraud,1420319290 +26125,2300,Gene Wilder,1420319276 +26125,2300,Mel Brooks,1420319272 +26125,2300,nazis,1420319281 +26125,2300,theater,1420319302 +26125,2311,space travel,1139076048 +26125,2353,Baltimore,1194061583 +26125,2353,fast paced,1194061660 +26125,2353,liberal propaganda,1194061844 +26125,2353,surveillance,1194061565 +26125,2359,death/fatality,1391396689 +26125,2359,feel good movie,1391396680 +26125,2359,heartwarming,1391396665 +26125,2359,Ireland,1391396651 +26125,2359,Irish,1391396658 +26125,2359,lottery tickets,1391396675 +26125,2359,PG,1391396719 +26125,2359,phone booth,1391396670 +26125,2359,quirky,1391396654 +26125,2392,Christmas,1391395988 +26125,2392,easily confused with other movie(s) (title),1391395982 +26125,2398,Christmas,1138482960 +26125,2401,gold,1402126497 +26125,2401,good vs evil,1402126497 +26125,2401,gunfight,1402126438 +26125,2401,horses,1402126497 +26125,2401,miners,1402126497 +26125,2401,outlaws,1402126497 +26125,2401,wild west,1402126497 +26125,2407,aliens,1137889329 +26125,2407,old age,1248760291 +26125,2407,old people,1248760291 +26125,2423,Christmas,1139075776 +26125,2423,National Lampoon,1139075776 +26125,2423,suburbia,1249337266 +26125,2453,family,1137889284 +26125,2453,inspirational,1248759700 +26125,2455,changing species,1139076139 +26125,2474,pool,1139076095 +26125,2501,mining,1382159561 +26125,2501,science,1382159570 +26125,2501,space program,1382159565 +26125,2502,office,1137889496 +26125,2502,quirky,1137889496 +26125,2529,original,1137889513 +26125,2565,high brow,1138483201 +26125,2571,original,1202787597 +26125,2574,bad day,1448335102 +26125,2574,Goldie Hawn,1448335103 +26125,2574,Steve Martin,1448335103 +26125,2613,end of the world,1157416158 +26125,2613,teen,1137889482 +26125,2724,Chick Flick,1453080774 +26125,2724,feminism,1453080865 +26125,2724,feminist,1453080834 +26125,2724,happy ending,1453080843 +26125,2724,Joan Cusack,1453080705 +26125,2724,Julia Roberts,1453080682 +26125,2724,New Jersey,1453080778 +26125,2724,New York,1453080887 +26125,2724,Richard Gere,1453080714 +26125,2724,wedding,1453080695 +26125,2746,musical,1139076152 +26125,2762,eerie,1218433786 +26125,2762,Frightening,1218433849 +26125,2762,ghosts,1218433739 +26125,2762,ominous,1218433818 +26125,2762,psychic character,1218433772 +26125,2762,psychology,1218433749 +26125,2762,surprise ending,1137889567 +26125,2762,twist,1218433835 +26125,2762,twist ending,1218433736 +26125,2788,dumb,1138742975 +26125,2788,quirky,1138742975 +26125,2791,dumb but funny,1139076065 +26125,2794,National Lampoon,1209258966 +26125,2795,National Lampoon,1139075798 +26125,2795,Vacation,1139075798 +26125,2797,switching places,1139076075 +26125,2804,Christmas,1137889310 +26125,2804,classic,1248759882 +26125,2804,narrated,1248759857 +26125,2840,christianity,1201242493 +26125,2840,stigmata,1201242493 +26125,2871,banjo,1253239033 +26125,2871,gritty,1253239045 +26125,2871,rednecks,1253239038 +26125,2871,river,1253239055 +26125,2871,very little dialogue,1253239029 +26125,2905,japanese,1138581666 +26125,2915,prostitution,1139076173 +26125,2915,teen,1139076178 +26125,2918,teen,1139076118 +26125,2921,spaghetti western,1137889456 +26125,2922,spaghetti western,1137889407 +26125,2951,spaghetti western,1138581399 +26125,3032,epidemic,1209159390 +26125,3032,last man on earth,1209159390 +26125,3032,Post apocalyptic,1209159357 +26125,3032,post-apocalyptic,1209159351 +26125,3039,high brow,1139076203 +26125,3039,poverty,1139076203 +26125,3061,Christmas,1146199749 +26125,3061,classic,1146199747 +26125,3066,Japanese,1258785554 +26125,3066,Pearl Harbor attack,1258785577 +26125,3066,World War II,1258785561 +26125,3072,boring,1409798975 +26125,3072,Italian-American culture,1409798949 +26125,3072,New York,1409798908 +26125,3072,New York City,1409798911 +26125,3072,Nicholas Cage,1409798932 +26125,3072,Nicolas Cage,1409798881 +26125,3072,opera,1409798919 +26125,3072,Oscar (Best Actress),1409798894 +26125,3072,Oscar (Best Supporting Actress),1409798886 +26125,3072,overrated,1409798964 +26125,3074,based on a book,1383107929 +26125,3074,bleak,1383107943 +26125,3074,gritty,1383107936 +26125,3074,harsh,1383107963 +26125,3074,loner,1383107980 +26125,3074,mountain man,1383107974 +26125,3074,mountains,1383107923 +26125,3074,native american,1383107957 +26125,3074,wintry,1383107949 +26125,3088,imaginary friend,1138483094 +26125,3095,based on a book,1249334292 +26125,3095,Great Depression,1249334270 +26125,3095,imdb top 250,1249334297 +26125,3095,John Steinbeck,1249334330 +26125,3095,poverty,1137889620 +26125,3095,Social Drama,1249334337 +26125,3098,1930s,1431523727 +26125,3098,baseball,1431523764 +26125,3098,boring,1431523808 +26125,3098,Glenn Close,1431523758 +26125,3098,inspirational,1431523737 +26125,3098,Kim Basinger,1431523771 +26125,3098,PG,1431523825 +26125,3098,Robert Duvall,1431523779 +26125,3098,Robert Redford,1431523746 +26125,3098,sappy,1431523786 +26125,3098,sport:baseball,1431523731 +26125,3098,sports,1431523741 +26125,3101,adultery,1164498322 +26125,3101,cheating,1164498322 +26125,3101,rabbit,1164498322 +26125,3101,ugly woman,1164498322 +26125,3105,based on a true story,1258785639 +26125,3105,doctors,1258785654 +26125,3105,hospital,1258785675 +26125,3105,inspiration for life,1258785697 +26125,3105,medical,1258785715 +26125,3105,memory loss,1258785646 +26125,3105,Psychiatry,1258785650 +26125,3105,sad,1258785689 +26125,3198,prison,1138743082 +26125,3210,teen,1139076103 +26125,3230,Journalist,1405399744 +26125,3230,nazis,1405399091 +26125,3230,odessa,1405399745 +26125,3230,ss,1405399745 +26125,3230,war crimes,1405399745 +26125,3230,World War II,1405399745 +26125,3301,assassin,1281678185 +26125,3301,canada,1281678244 +26125,3301,mob,1281678204 +26125,3301,montreal,1281678235 +26125,3301,murder,1281678200 +26125,3350,abortion,1405659764 +26125,3350,based on a play,1405658256 +26125,3350,black and white,1405658265 +26125,3350,black familly,1405659765 +26125,3350,Christianity,1405659765 +26125,3350,family,1405658279 +26125,3350,idiot,1405659764 +26125,3350,jerk,1405659764 +26125,3350,money,1405658302 +26125,3350,poverty,1405658282 +26125,3354,mars,1138070823 +26125,3354,space calamity,1204686156 +26125,3354,space travel,1138070823 +26125,3363,1950's,1138742949 +26125,3363,teen,1138742949 +26125,3378,WWII kids nazis war,1187587238 +26125,3409,premonition,1138070791 +26125,3421,college,1138743345 +26125,3451,1960s,1404356908 +26125,3451,African American history,1404356919 +26125,3451,idealism,1404356936 +26125,3451,interracial marriage,1404356960 +26125,3451,interracial romance,1404356897 +26125,3451,Oscar (Best Actress),1404356913 +26125,3451,prejudice,1404356925 +26125,3451,race,1404356902 +26125,3451,race issues,1404356889 +26125,3451,racism,1404356931 +26125,3468,pool,1138581519 +26125,3469,1920s,1407563100 +26125,3469,antichristian,1407563239 +26125,3469,biology,1407563150 +26125,3469,black and white,1407563096 +26125,3469,boring,1407563199 +26125,3469,Christianity,1407563134 +26125,3469,courtroom,1407563066 +26125,3469,courtroom drama,1407563062 +26125,3469,evolution,1407563127 +26125,3469,historically inaccurate,1407563131 +26125,3469,lawyers,1407563070 +26125,3469,makes christians look like boobs,1407563239 +26125,3469,manipulative,1407563180 +26125,3469,religion,1407563118 +26125,3469,RELIGIOUS ZEALOTRY,1407563164 +26125,3469,science,1407563104 +26125,3469,small town,1407563153 +26125,3469,true story,1407563113 +26125,3471,aliens,1137889609 +26125,3471,first contact,1248760032 +26125,3471,space,1248760037 +26125,3471,Speilberg,1137889609 +26125,3475,classic,1395628203 +26125,3475,Oscar (Best Cinematography),1395628195 +26125,3475,Oscar (Best Directing),1395628189 +26125,3507,based on a play,1402884409 +26125,3507,classic,1402884424 +26125,3507,great pair,1402884444 +26125,3507,Jack Lemmon,1402884418 +26125,3507,Neil Simon,1402884414 +26125,3507,Walter Mattau,1402884451 +26125,3508,eastwood,1138743415 +26125,3510,contact with dead,1138070698 +26125,3525,marriage,1401432949 +26125,3525,vulgar,1401432956 +26125,3525,wedding,1401432946 +26125,3536,religion,1138070811 +26125,3635,assassin,1242013059 +26125,3635,atlantis,1242013108 +26125,3635,egypt,1242013089 +26125,3635,james bond,1242013056 +26125,3635,murder,1242013140 +26125,3635,nuclear bomb,1242013098 +26125,3635,spy,1242013083 +26125,3635,submarine,1242013063 +26125,3675,Christmas,1391395778 +26125,3675,hotel,1391395782 +26125,3675,vocalists,1391395788 +26125,3682,Clint Eastwood,1404188950 +26125,3682,Dirty Harry,1404188930 +26125,3682,motorcycle,1404188943 +26125,3682,police,1404188958 +26125,3682,vigilante,1404188923 +26125,3682,vigilantism,1404188937 +26125,3699,aliens,1139076182 +26125,3717,car chase,1340941309 +26125,3717,carjacking,1340941332 +26125,3717,cars,1340941305 +26125,3717,crime,1340941316 +26125,3784,time travel,1249335092 +26125,3811,Africa,1452051253 +26125,3811,annoying accents,1452052012 +26125,3811,Australia,1452051221 +26125,3811,Australian,1452051199 +26125,3811,Boers,1452051264 +26125,3811,courtroom,1452051248 +26125,3811,courtroom drama,1452051203 +26125,3811,History,1452051241 +26125,3811,military,1452051210 +26125,3811,military court,1452051270 +26125,3811,politics,1452051238 +26125,3811,South Africa,1452051215 +26125,3811,wartime,1452051257 +26125,3826,invisibility,1148416416 +26125,3836,caper,1391396185 +26125,3836,wartime,1391396199 +26125,3836,World War II,1391396189 +26125,3836,wwii,1391396181 +26125,3849,disability,1229320739 +26125,3849,noir,1229320747 +26125,3849,ominous,1229320770 +26125,3849,tense,1229320768 +26125,3969,abuse,1295837126 +26125,3969,alcoholism,1295837098 +26125,3969,change the world,1295837141 +26125,3969,domestic violence,1295837118 +26125,3969,inspirational,1295837101 +26125,3969,las vegas,1295837094 +26125,3969,sad,1295837153 +26125,4014,atheism,1409968554 +26125,4014,chocolate,1409969114 +26125,4014,food,1409968509 +26125,4014,food/cooking,1409968558 +26125,4014,france,1409968513 +26125,4014,French,1409968844 +26125,4014,irreligion,1409968881 +26125,4014,magic,1409968837 +26125,4014,magic realism,1409968525 +26125,4014,naive,1409968829 +26125,4014,prejudice,1409968877 +26125,4014,Quirky,1409968763 +26125,4014,single parents,1409969093 +26125,4014,small town,1409969039 +26125,4037,con men,1197960901 +26125,4037,poker,1197960895 +26125,4039,55 movies every kid should see--Entertainment Weekly,1413336578 +26125,4039,adapted from:comic,1413336519 +26125,4039,Albert Finney,1413336556 +26125,4039,based on a play,1413336597 +26125,4039,Broadway,1413336528 +26125,4039,comic strip,1413336523 +26125,4091,1980s,1409104373 +26125,4091,Beatles,1409104349 +26125,4091,cheerleading,1409104355 +26125,4091,high school,1409104363 +26125,4142,rapture,1138251017 +26125,4148,atmospheric,1391405707 +26125,4148,based on a book,1391405728 +26125,4148,cannibalism,1391405691 +26125,4148,disturbing,1391405698 +26125,4148,italy,1391405680 +26125,4148,psychology,1391405677 +26125,4148,revenge,1391405700 +26125,4148,serial killer,1391405674 +26125,4148,torture,1391405719 +26125,4153,chris rock,1440880239 +26125,4153,ghosts/afterlife,1440880263 +26125,4153,reincarnation,1440880259 +26125,4153,switching places,1440880235 +26125,4178,based on a book,1205548824 +26125,4184,angel,1249535520 +26125,4184,bishop,1249535565 +26125,4184,Christmas,1249535530 +26125,4184,classic,1249535543 +26125,4184,marriage,1249535584 +26125,4189,Biblical,1138581560 +26125,4216,gay,1214720651 +26125,4216,homosexuality,1214720648 +26125,4226,original,1202789289 +26125,4228,con,1221890740 +26125,4228,con artist,1221890740 +26125,4228,con artists,1221890740 +26125,4228,mother daughter relationship,1221890740 +26125,4306,fairy tale,1197960496 +26125,4310,Action,1239334986 +26125,4310,historical,1239334944 +26125,4310,LOVE TRIANGLES,1239335008 +26125,4310,Romance,1239334998 +26125,4310,War,1239334994 +26125,4310,wartime,1239334984 +26125,4310,World War II,1239334938 +26125,4310,WWII,1239334980 +26125,4370,dystopia,1180053598 +26125,4370,future,1180053695 +26125,4370,robot,1138250932 +26125,4370,sad,1180053635 +26125,4451,niagara falls,1161394269 +26125,4451,prearranged marriage,1161394269 +26125,4451,suicide attempt,1161394269 +26125,4451,wedding,1161394269 +26125,4465,courtroom drama,1199421166 +26125,4465,Oscar (Best Actress),1199421157 +26125,4465,rape,1199421139 +26125,4509,bear,1180053494 +26125,4509,cabin,1180053494 +26125,4509,nature,1180053494 +26125,4509,outdoors,1180053494 +26125,4515,Beatles,1219617332 +26125,4515,biographical,1219617335 +26125,4515,New York City,1219617338 +26125,4571,dumb but funny,1139076087 +26125,4571,time travel,1139076087 +26125,4621,travolta,1137876857 +26125,4643,remake,1138251112 +26125,4720,surprise ending,1138070708 +26125,4799,Race,1138581576 +26125,4814,mute,1138250980 +26125,4814,witness,1138250980 +26125,4834,drugs,1252709284 +26125,4844,Bruce Willis,1440880890 +26125,4844,heist,1440880894 +26125,4873,animated,1405048939 +26125,4873,dreamlike,1405048976 +26125,4878,pyschology,1151303429 +26125,4878,time travel,1151303429 +26125,4890,fat woman,1148416396 +26125,4939,aerial dogfights,1337281518 +26125,4939,Japanese,1337281553 +26125,4939,nostalgia,1337281534 +26125,4939,time travel,1337281524 +26125,4939,violence,1337281550 +26125,4939,WWII,1337281527 +26125,4957,Dirty Harry,1242013022 +26125,4975,tomcruise,1138070775 +26125,4994,theater,1138251036 +26125,4995,mathematics,1138250953 +26125,5005,alcohol,1402806478 +26125,5005,black and white,1402806478 +26125,5005,hotel,1402806478 +26125,5005,old women,1402806478 +26125,5005,Oscar (Best Actor),1402806388 +26125,5005,Oscar (Best Supporting Actress),1402806393 +26125,5005,rich and poor,1402806518 +26125,5014,retarded,1138250991 +26125,5119,criterion,1368027182 +26125,5158,backwoods,1151121960 +26125,5158,poverty,1151121960 +26125,5158,writer,1151121960 +26125,5171,time travel,1138070760 +26125,5214,God,1138743147 +26125,5219,milla,1138251109 +26125,5318,christianity,1201242270 +26125,5318,stranger,1201242270 +26125,5431,hanging,1402890232 +26125,5431,Jack Nicholson,1402890218 +26125,5431,mary steenburgen,1402890239 +26125,5431,mining,1402890222 +26125,5431,oil,1402890226 +26125,5431,old west,1402890236 +26125,5502,aliens,1138070743 +26125,5524,competition,1243402140 +26125,5524,hawaii,1243402141 +26125,5524,poverty,1243402140 +26125,5524,predictable,1243402140 +26125,5524,scenic,1243402141 +26125,5524,surfing,1243402140 +26125,5524,teen,1243402140 +26125,5544,time travel,1138743188 +26125,5547,Bridget Fonda,1410918959 +26125,5547,disparate ages,1410918959 +26125,5547,elderly,1410918959 +26125,5547,jessica tandy,1410918959 +26125,5547,music,1410918959 +26125,5547,piano,1410918959 +26125,5547,road trip adventure,1410918959 +26125,5547,violin,1410918959 +26125,5593,detective,1148363404 +26125,5593,serial killer,1148363404 +26125,5601,Animal movie,1149234538 +26125,5601,deer,1149234538 +26125,5601,hardship,1149234538 +26125,5601,poverty,1149234538 +26125,5629,Bible,1230366173 +26125,5630,serialkiller,1137889677 +26125,5644,baseball,1138482977 +26125,5782,agents,1407218393 +26125,5782,fooling the police,1407218390 +26125,5782,France,1407218328 +26125,5782,french,1407218323 +26125,5782,guns,1407218373 +26125,5782,interesting,1407218416 +26125,5782,Not Luc Besson,1407218381 +26125,5782,Paris,1407218316 +26125,5798,michigan; hunting; deer; woods; southern comedy;,1188865728 +26125,5878,coma,1160203629 +26125,5878,prison,1160203630 +26125,5878,rape,1160203630 +26125,5903,apocalyptic,1413174392 +26125,5903,cult film,1413174402 +26125,5903,drugs,1413174435 +26125,5903,dystopia,1413174346 +26125,5903,excessive violence,1413174421 +26125,5903,fascism,1413174448 +26125,5903,government,1413174509 +26125,5903,gun fights,1413174562 +26125,5903,gunfight,1413174406 +26125,5903,intellectual insult,1413174602 +26125,5903,martial arts,1413174369 +26125,5903,post-apocalyptic,1413174335 +26125,5903,predictable,1413174527 +26125,5903,revolution,1413174453 +26125,5903,thought-provoking,1413174410 +26125,5903,totalitarianism,1413174343 +26125,5903,unbelievable,1413174490 +26125,5903,unrealistic,1413174538 +26125,5955,anger managment,1211150456 +26125,5955,poverty,1211150443 +26125,5955,psychiatrist,1211150425 +26125,5955,sexual abuse,1211150451 +26125,5955,us navy,1211150467 +26125,5956,true story,1138251175 +26125,5974,classic,1138483038 +26125,5989,caper,1249337110 +26125,5989,imposter,1138070682 +26125,6016,Brazil,1412565127 +26125,6016,crime,1412565886 +26125,6016,depressing,1412565390 +26125,6016,drug dealing,1412565932 +26125,6016,drugs,1412565786 +26125,6016,gangs,1412565373 +26125,6016,ghetto,1412565406 +26125,6016,idiots,1412567743 +26125,6016,losers,1412566279 +26125,6016,multiple storylines,1412565527 +26125,6016,Poverty,1412565975 +26125,6016,punk kids,1412566279 +26125,6016,Rio de Janeiro,1412565911 +26125,6016,scum of the earth,1412566279 +26125,6016,serial killer,1412566549 +26125,6016,soccer,1412565379 +26125,6016,South America,1412565862 +26125,6016,street life,1412565963 +26125,6184,aliens,1222926790 +26125,6184,quirky,1222926794 +26125,6184,stylized,1222926796 +26125,6184,surreal,1222926780 +26125,6216,Africa,1405493264 +26125,6216,culture clash,1405493271 +26125,6216,Kenya,1405493274 +26125,6216,nazis,1405493250 +26125,6216,Oscar (Best Foreign Language Film),1405493258 +26125,6216,Oscar 2002,1405493282 +26125,6216,World War II,1405493253 +26125,6216,WWII,1405493278 +26125,6228,hiding place; supreme court; professor; falsely accused,1204684541 +26125,6260,biblical,1449371040 +26125,6260,christian,1449371032 +26125,6260,christianity,1449371037 +26125,6264,middle earth,1138251147 +26125,6422,Civil War,1213341011 +26125,6450,deserted island,1243401994 +26125,6450,japanese,1243401994 +26125,6450,nun,1243401994 +26125,6450,soldier,1243401994 +26125,6450,war,1243401994 +26125,6482,dumb but funny,1138251161 +26125,6502,futuristic,1192593744 +26125,6502,london,1192593713 +26125,6502,post-apocalyptic,1192593721 +26125,6502,Zombie,1192593738 +26125,6502,zombies,1192593795 +26125,6511,historical,1249342563 +26125,6619,smart kid dumb adult,1138251213 +26125,6620,Spielberg,1137876882 +26125,6708,caper,1394077263 +26125,6708,con artists,1394077259 +26125,6708,con men,1394077365 +26125,6708,crime,1394077341 +26125,6708,father daughter relationship,1394077333 +26125,6708,fatherhood,1394077307 +26125,6708,Los Angeles,1394077395 +26125,6708,obsessive compulsive disorder,1394077268 +26125,6708,Predictable ending,1394077406 +26125,6708,psychiatrist,1394077369 +26125,6708,Quirky,1394077319 +26125,6708,sad ending,1394077378 +26125,6708,scam,1394077389 +26125,6708,twist ending,1394077275 +26125,6724,con men,1138742919 +26125,6727,disturbing,1215070306 +26125,6727,menacing,1215070315 +26125,6727,tense,1215070313 +26125,6731,tense,1197961467 +26125,6731,zombies,1197961422 +26125,6813,don knotts,1138581373 +26125,6813,haunted house,1138581373 +26125,6813,underdog,1337286331 +26125,6825,don knotts,1138581617 +26125,6825,space travel,1138581617 +26125,6826,don knotts,1138581628 +26125,6826,western,1138581628 +26125,6856,Biography,1210907973 +26125,6856,patriotic,1210908012 +26125,6856,theater,1210908012 +26125,6863,music,1138251197 +26125,6867,loneliness,1413175260 +26125,6867,melancholy,1413175257 +26125,6867,quirky,1413175290 +26125,6867,small town,1413175305 +26125,6867,train,1413175266 +26125,6867,trains,1413175319 +26125,6867,underdog,1413175271 +26125,6867,underdogs,1413175274 +26125,6867,unlikely friendships,1413175285 +26125,6882,alien invasion,1215069046 +26125,6882,aliens,1215069046 +26125,6882,end of the world,1215069046 +26125,6882,future,1215069046 +26125,6882,time travel,1215069046 +26125,6936,bob newhart,1449371668 +26125,6936,Christmas,1449371658 +26125,6936,elves,1449371653 +26125,6936,Little people,1449371623 +26125,6936,New York City,1449371663 +26125,6936,Santa Claus,1449371610 +26125,6936,Will Ferrell,1449371645 +26125,6936,Zooey Deschanel,1449371618 +26125,6970,computers,1212461909 +26125,6970,information retrieval,1212461894 +26125,6970,librarians,1212461890 +26125,6970,New York City,1212461902 +26125,6987,Film Theory & Criticism,1207012098 +26125,6987,german expressionism,1207012119 +26125,6987,psychology,1207012108 +26125,6987,sonambulism,1207012152 +26125,6999,compulsive liar,1280279679 +26125,7001,aliens,1138743133 +26125,7058,family,1138482956 +26125,7065,Civil War,1203401205 +26125,7065,Ku Klux Klan,1203401126 +26125,7076,car chase,1391405173 +26125,7076,cynical,1391405182 +26125,7076,gritty,1391405176 +26125,7076,matter-of-fact,1391405167 +26125,7076,somber,1391405249 +26125,7076,tense,1391405245 +26125,7076,too long,1391405241 +26125,7107,albino,1280279501 +26125,7107,dwarf,1280279484 +26125,7107,san francisco,1280279507 +26125,7125,gay,1147194940 +26125,7125,new age,1147194940 +26125,7125,poverty,1147194940 +26125,7147,fanciful,1440880543 +26125,7147,father son relationship,1440880554 +26125,7147,father-son relationship,1440880596 +26125,7147,fish,1440880571 +26125,7147,Korean War,1440880546 +26125,7147,quirky,1440880581 +26125,7147,surreal,1440880568 +26125,7169,president,1157410399 +26125,7216,bank robbery,1409709370 +26125,7216,black servant,1409709371 +26125,7216,crime,1409709370 +26125,7216,cripple,1409709370 +26125,7216,Humphrey Bogart,1409709313 +26125,7254,math,1138070660 +26125,7254,mathematics,1157415383 +26125,7297,loneliness,1368027201 +26125,7303,true story,1138483070 +26125,7311,england,1168578072 +26125,7311,professor,1167113450 +26125,7311,war,1167113450 +26125,7318,bloody,1201242333 +26125,7318,Christian,1138070728 +26125,7318,Christianity,1201242342 +26125,7318,religion,1201242348 +26125,7318,violent,1201242306 +26125,7321,police,1283815989 +26125,7321,police investigation,1283815989 +26125,7386,Biblical,1138483132 +26125,7387,CANNIBALS,1197961390 +26125,7387,END OF THE WORLD,1197961358 +26125,7387,helicopters,1197961370 +26125,7387,horror,1197961366 +26125,7387,sequel,1197961342 +26125,7387,zombies,1138742985 +26125,7395,large family,1138483102 +26125,7440,Holocaust,1138596142 +26125,7482,bad acting,1412747369 +26125,7482,Bruce Lee,1412747348 +26125,7482,fight scenes,1412747336 +26125,7482,hong kong,1412747361 +26125,7482,kung fu,1412747340 +26125,7482,martial arts,1412747343 +26125,7482,Martial Arts flick,1412747397 +26125,7767,beautiful,1401346379 +26125,7767,bittersweet,1401346368 +26125,7767,death,1401346424 +26125,7767,epic,1401346354 +26125,7767,historical epic,1401346350 +26125,7767,Italian,1401346388 +26125,7767,italy,1401346393 +26125,7767,nostalgic,1401346411 +26125,7767,poignant,1401346413 +26125,7767,POLITICAL UNREST,1401346398 +26125,7767,psychiatric care,1401346447 +26125,7767,sardinia,1401346443 +26125,7767,SIBLING RELATIONSHIPS,1401346364 +26125,7767,social commentary,1401346373 +26125,7767,sweeping,1401346437 +26125,7767,UNREQUITED LOVE,1401346420 +26125,7787,Biography,1176510195 +26125,7787,True Story,1176510305 +26125,7787,World War II,1176510305 +26125,7832,detective movie,1214720759 +26125,7891,based on a book,1218167002 +26125,7891,last man on earth,1218167058 +26125,7891,vampire,1218167014 +26125,7891,zombies,1218167043 +26125,7932,addiction,1411793849 +26125,7932,Amtrak,1411793915 +26125,7932,documentary,1411793860 +26125,7932,foul language,1411793997 +26125,7932,Homeless,1411793854 +26125,7932,homelessness,1411793864 +26125,7932,New York,1411793880 +26125,7932,New York City,1411793875 +26125,7932,sad,1411794093 +26125,7932,Train,1411793845 +26125,7932,trains,1411793884 +26125,7933,hotel,1259473518 +26125,7933,marx brothers,1259473518 +26125,7933,nazis,1259473518 +26125,7933,slapstick,1259473518 +26125,7933,treasure,1259473518 +26125,7984,alternate universe,1218169147 +26125,7984,gory,1218169147 +26125,7984,H.P. Lovecraft,1218169113 +26125,7984,lovecraft,1218169105 +26125,8191,Anne Boleyn,1226037747 +26125,8191,British History,1226037743 +26125,8191,england,1226037785 +26125,8191,king,1226037785 +26125,8191,royalty,1226037772 +26125,8257,History,1207713791 +26125,8257,war,1207713820 +26125,8257,World War II,1207713820 +26125,8257,wwii,1207713820 +26125,8291,whodunnit,1146291985 +26125,8330,based on a book,1245302334 +26125,8330,Caribbean,1245302340 +26125,8330,Cuba,1245302324 +26125,8330,espionage,1245302380 +26125,8340,prison,1138743122 +26125,8360,computer animation,1197960523 +26125,8360,fairy tale,1197960533 +26125,8360,ogres,1197960567 +26125,8360,sequel,1197960618 +26125,8360,sequel better than original,1197960607 +26125,8360,talking animals,1197960559 +26125,8369,who done it,1139118834 +26125,8376,nerds,1202788389 +26125,8453,marriage,1283821117 +26125,8482,based on a book,1337288467 +26125,8482,painting,1337288471 +26125,8482,wishes,1337288479 +26125,8492,Christmas,1138483062 +26125,8530,deafness,1440880331 +26125,8530,Ireland,1440880340 +26125,8530,scotland,1440880326 +26125,8530,single parents,1440880353 +26125,8530,slow pacing,1440880358 +26125,8579,Catholicvatican,1248757752 +26125,8579,italy,1248757836 +26125,8579,Nazis,1248757693 +26125,8579,rome,1248757824 +26125,8579,true story,1248757697 +26125,8579,vatican,1248757807 +26125,8579,World War II,1248757701 +26125,8591,experimental,1308794176 +26125,8591,time travel,1308794172 +26125,8591,World War II,1308794179 +26125,8622,anti-Bush,1204873165 +26125,8622,crap,1204873113 +26125,8622,fable,1204873100 +26125,8622,political,1204873231 +26125,8622,propaganda,1204873129 +26125,8631,boxing,1157410757 +26125,8631,crime,1157410757 +26125,8631,gambling,1157410757 +26125,8631,poverty,1157410756 +26125,8644,artificial intelligence,1337289027 +26125,8644,Asimov,1137889640 +26125,8644,based on a book,1337289054 +26125,8644,dystopia,1337289032 +26125,8644,future,1137889640 +26125,8644,futuristic,1337289038 +26125,8644,Ireland,1337289021 +26125,8644,robots,1337289017 +26125,8644,thought provoking,1337289048 +26125,8647,court,1201416375 +26125,8647,fishing,1201416375 +26125,8647,florida,1201416375 +26125,8647,gambling,1201416375 +26125,8647,highway,1201416375 +26125,8647,hillbillies,1201416375 +26125,8647,outhouse,1201416375 +26125,8675,submarine,1184656338 +26125,8675,World War II,1184656332 +26125,8712,black and white,1243043542 +26125,8712,irreverent,1243043542 +26125,8712,marriage,1243043542 +26125,8712,mixup,1243043542 +26125,8712,shipwreck,1243043542 +26125,8730,based on a true story,1412231755 +26125,8730,Christianity,1412231776 +26125,8730,honor,1412231773 +26125,8730,integrity,1412231782 +26125,8730,prisoners of war,1412231765 +26125,8730,sacrifice,1412231752 +26125,8730,war,1412231770 +26125,8730,World War II,1412231759 +26125,8783,M. Night Shyamalan,1209159675 +26125,8783,surprise ending,1209159692 +26125,8783,twist ending,1209159670 +26125,8827,Family,1139075758 +26125,8831,disappointing,1411791809 +26125,8831,rape,1411791801 +26125,8831,serial killer,1411791798 +26125,8831,vigilante,1411791795 +26125,8879,train,1138743405 +26125,8914,Complicated,1215068916 +26125,8914,complicated plot,1215068919 +26125,8914,Deep,1215068974 +26125,8914,intellectual,1215068934 +26125,8914,low budget,1215068954 +26125,8914,mindblowing,1215068966 +26125,8914,philosopical,1215068927 +26125,8914,physics,1215068970 +26125,8914,time travel,1215068903 +26125,8957,surprise ending,1209159731 +26125,8974,cartoon to big screen,1142394761 +26125,9018,iraq,1219617497 +26125,9018,Iraq war,1219617451 +26125,9018,journalism,1219617454 +26125,9018,media politics,1219617457 +26125,25826,Screwball Comedy,1195790649 +26125,25839,con,1398308202 +26125,25839,deceit,1398308203 +26125,25839,dying,1398308203 +26125,25839,glamour,1398308202 +26125,25839,new york city,1398308202 +26125,25886,amnesia,1168574942 +26125,25886,insane asylum,1168574942 +26125,26078,senate president confirmation politics,1202783399 +26125,26111,king henry; henry II; england; royalty; pope;,1199418020 +26125,26133,Christmas,1225682579 +26125,26302,car wash,1145682096 +26125,26302,depressing,1145682096 +26125,26302,losers,1145682096 +26125,26366,coal miners,1225683179 +26125,26366,kentucky,1225683179 +26125,26366,miners strike,1225683179 +26125,26366,mining,1225683179 +26125,26366,strike,1225683179 +26125,26366,union,1225683179 +26125,26375,train,1138743177 +26125,26379,Christianity,1242012925 +26125,26379,Jesus,1249335041 +26125,26379,religion,1242012922 +26125,26554,apocalypse,1199773777 +26125,26554,Isolation,1199773782 +26125,26554,last man on earth,1199773824 +26125,26554,Post Apocalypse,1199773759 +26125,26760,horse,1273425920 +26125,26788,based on a book,1205640530 +26125,26788,china beijing lawsuit grudge,1205640505 +26125,26788,poignant,1205640523 +26125,26887,based on a book,1283815826 +26125,26887,Stephen King,1283815818 +26125,26887,time travel,1283815822 +26125,26887,unique,1283815843 +26125,26948,adapted from:book,1404621763 +26125,26948,british accents,1404621844 +26125,26948,cannibalism,1404621844 +26125,26948,cast away,1404621774 +26125,26948,deserted island,1404621844 +26125,26948,natives,1404621844 +26125,27002,astronauts,1253223665 +26125,27002,history,1253223710 +26125,27002,made for TV,1253223685 +26125,27002,NASA,1253223669 +26125,27002,Series,1253223695 +26125,27002,space,1253223673 +26125,27002,true story,1253223689 +26125,27410,disturbing,1182888118 +26125,27410,Holocaust,1182888201 +26125,27410,matter-of-fact,1182888101 +26125,27410,nazis,1182888201 +26125,27410,WWII,1182888201 +26125,27618,dinosaurs,1144564363 +26125,27618,time travel,1144564363 +26125,27800,anime,1248293270 +26125,27800,Daft Punk,1248293274 +26125,27800,music,1248293280 +26125,27815,mentor,1368027106 +26125,27820,camels,1205640548 +26125,27878,India,1219617748 +26125,27878,photographer,1219617758 +26125,31116,hero,1167113275 +26125,31116,true story,1167113275 +26125,31116,war,1167113275 +26125,31116,WWI,1167113275 +26125,31251,arctic,1211685655 +26125,31251,cryogenics,1211685642 +26125,31260,boys; priest; orphans; omaha; nebraska,1204684610 +26125,31347,award,1221621611 +26125,31347,contest,1221621611 +26125,31347,office,1221621611 +26125,31347,poverty,1221621611 +26125,31347,prank,1221621611 +26125,31347,slogan,1221621611 +26125,31347,winnings,1221621611 +26125,31427,surprise ending,1140238734 +26125,31528,adopted,1221710457 +26125,31528,brothers,1221710457 +26125,31528,french foreign legion,1221710457 +26125,31528,robbery,1221710457 +26125,31528,treasure,1221710457 +26125,31528,war,1221710457 +26125,31528,wealth,1221710457 +26125,31685,chick flick,1440880978 +26125,31685,dating advice,1440880995 +26125,31685,men being taught how to woo,1440880986 +26125,31685,New York City,1440880952 +26125,31685,Will Smith,1440880958 +26125,31692,family bonds,1274590371 +26125,31692,garden,1274590371 +26125,31692,italy,1274590269 +26125,31692,workaholic,1274590371 +26125,31889,afterlife,1446874586 +26125,31889,religion,1446874583 +26125,32025,gay propaganda,1150596424 +26125,32025,good acting,1150596424 +26125,32025,nazi,1150596424 +26125,32025,prejudice,1150596424 +26125,32060,black and white,1161323532 +26125,32060,silent,1161323532 +26125,32060,who done it,1161323532 +26125,32371,chicago,1209159178 +26125,32371,reporter,1209159178 +26125,32371,wrongly convicted,1209159178 +26125,33166,race issues,1142317950 +26125,33312,crime,1147585530 +26125,33312,dumb,1147585530 +26125,33312,hotel,1147585530 +26125,33312,tropical,1147585530 +26125,33558,eskimoes,1280896938 +26125,33558,plane crash,1280896938 +26125,33558,survival,1280896938 +26125,33558,yukon,1280896938 +26125,33660,depression,1138070580 +26125,33660,poverty,1138070580 +26125,33660,true story,1138070580 +26125,34150,Better than expected,1192595161 +26125,34150,comic book,1180053761 +26125,34150,Marvel,1180053764 +26125,34150,superhero,1180053758 +26125,34536,Bataan Death March,1150596485 +26125,34536,POWs,1150596485 +26125,34536,rescue,1150596485 +26125,34536,World War II,1150596485 +26125,34552,Iceland,1247894220 +26125,34552,overly simplistic,1247894251 +26125,34583,cattle,1153089228 +26125,34583,chicago,1153089228 +26125,34583,crime,1153089228 +26125,34583,dated,1153089228 +26125,35957,Airplane,1395626219 +26125,35957,non-bloody thriller,1395626278 +26125,35957,Rachel McAdams,1395626198 +26125,35957,short,1395626311 +26125,35957,suspense,1395626228 +26125,36401,boring,1440880788 +26125,36401,fairy tale,1440880733 +26125,36401,Fantasy,1440880727 +26125,36401,incoherent,1440880757 +26125,36401,low budget,1440880753 +26125,36401,medieval,1440880739 +26125,36525,chick flick,1142666819 +26125,36525,coma,1142666819 +26125,36527,insane,1141599611 +26125,36527,mathematics,1141599611 +26125,36529,arms dealer,1138581327 +26125,37475,bear,1148926173 +26125,37475,domestic violence,1412488481 +26125,37475,grief,1148926173 +26125,37475,grumpy old man,1148926173 +26125,37475,Jennifer Lopez,1412488508 +26125,37475,Morgan Freeman,1412488493 +26125,37475,Robert Redford,1412488502 +26125,37475,Wyoming,1412488533 +26125,38038,claymation,1139465014 +26125,38038,rabbits,1139465014 +26125,38798,chick flick,1141024398 +26125,38992,football,1139707309 +26125,38992,gambling,1139707309 +26125,39307,horse racing,1143434598 +26125,39307,poverty,1143434598 +26125,39307,underdogs,1143434598 +26125,39400,ghosts,1139075714 +26125,39400,justice,1139075713 +26125,39400,leprosy,1139075714 +26125,39425,ghana,1140238318 +26125,39425,handicapped,1140238318 +26125,39444,divorce,1141704443 +26125,39444,dystunctional family,1141704443 +26125,40414,Christmas,1168575339 +26125,40414,moving,1168575339 +26125,40414,true story,1168575339 +26125,40414,World War I,1168575339 +26125,40614,adultery,1164498266 +26125,40614,con,1164498266 +26125,40614,predictable,1164498266 +26125,40723,australia,1147910367 +26125,40723,crazy guy,1147910367 +26125,40723,redneck,1147910367 +26125,40819,country music,1141599633 +26125,40819,Johnny Cash,1141599638 +26125,40851,space,1140937730 +26125,40988,Apaches,1425144752 +26125,40988,dog,1425144752 +26125,40988,horses,1425144752 +26125,40988,John Wayne,1425144752 +26125,40988,western,1425144752 +26125,41566,Christian,1139075376 +26125,41566,lion,1204873266 +26125,41566,Parallel universe,1204873301 +26125,41569,1920s,1146199467 +26125,41569,animal,1146199467 +26125,41569,apes,1146199467 +26125,41571,geisha,1407129145 +26125,41571,history,1407129200 +26125,41571,Japan,1407129138 +26125,41571,japanese,1407129207 +26125,41571,Japanese culture,1407129188 +26125,41571,Oscar (Best Cinematography),1407129150 +26125,41571,slow and predictable plot,1407129255 +26125,41571,survival,1407129177 +26125,41571,women,1407129134 +26125,41585,crime,1211685603 +26125,41585,law,1211685602 +26125,41585,prison,1211685602 +26125,41585,revenge,1211685602 +26125,41585,stool pigeon,1211685603 +26125,42011,bad luck,1168576974 +26125,42011,crime,1168576974 +26125,42011,desperate,1168576974 +26125,42011,lost job,1168576974 +26125,42018,burlesque,1151121863 +26125,42018,England,1151121863 +26125,42018,nudity,1151121863 +26125,42018,World War II,1151121863 +26125,42734,little red riding hood,1149749362 +26125,42738,vampire,1171686401 +26125,42738,werewolves,1171686406 +26125,43376,based on a true story,1177739793 +26125,43376,World War II,1177739820 +26125,43396,aging,1161323623 +26125,43396,motorcycle,1161323623 +26125,43396,new zealand,1161323623 +26125,43396,speed,1161323623 +26125,43396,world record,1161323623 +26125,43560,discipline,1148363352 +26125,43560,magic,1148363352 +26125,43560,widower,1148363352 +26125,43934,Environmental,1176510874 +26125,43934,ocean,1176510874 +26125,44191,comic book,1179204744 +26125,44191,homosexuality,1179204804 +26125,44191,politics,1179204709 +26125,44191,propaganda,1179204723 +26125,44191,revenge,1179204772 +26125,44195,cigarettes,1160540792 +26125,44195,congress,1160540792 +26125,44195,satire,1160540792 +26125,44195,smoking,1160540792 +26125,44694,incest,1183878262 +26125,44694,mother daughter relationship,1183878301 +26125,44694,restaurant,1183878280 +26125,44694,sexual abuse,1183878229 +26125,44694,Spain,1183878286 +26125,44709,black,1159150549 +26125,44709,feel-good,1159150549 +26125,44709,mentor,1368027106 +26125,44709,spelling bee,1159150549 +26125,44709,underdog,1159150549 +26125,44761,drugs,1155347741 +26125,44761,high school,1155347741 +26125,44761,pretentious,1155347741 +26125,44840,baseball,1155098724 +26125,44840,nerds,1155098724 +26125,44840,underdogs,1155098724 +26125,44966,bully,1313283093 +26125,44966,dogs,1313283093 +26125,44966,oklahoma,1313283093 +26125,44974,disturbing,1183878421 +26125,44974,internet,1183878407 +26125,44974,revenge,1183878405 +26125,44974,sexual abuse,1183878402 +26125,44974,tense,1183878431 +26125,45208,dysfunctional family,1157410708 +26125,45208,vacation,1157410707 +26125,45431,like madagascar,1162616621 +26125,45431,talking animals,1162616629 +26125,45447,sacrilege,1167113820 +26125,45499,comic book,1176512994 +26125,45499,Marvel,1176512972 +26125,45499,mutants,1176512998 +26125,45499,superhero,1176512988 +26125,45501,break-up,1181502749 +26125,45501,horrible finish,1181502741 +26125,45662,antichrist,1164498404 +26125,45662,armageddon,1164498404 +26125,45662,biblical,1164498404 +26125,45662,just like the first one,1164498404 +26125,45662,remake,1164498404 +26125,45668,chicago,1177740135 +26125,45668,love story,1177740131 +26125,45668,time,1177740154 +26125,45672,architecture,1162879657 +26125,45672,regrets,1162879657 +26125,45672,remote control,1162879657 +26125,45672,second chance,1162879658 +26125,45722,Adventure,1202083463 +26125,45722,pirates,1202083471 +26125,45722,sequel,1202083338 +26125,45730,disappointing,1168577377 +26125,45950,environment,1177739490 +26125,45950,global warming,1177739498 +26125,45950,politics,1177739472 +26125,46530,alter ego,1337281672 +26125,46530,big budget,1337281714 +26125,46530,comic book,1337281682 +26125,46530,DC Comics,1337281696 +26125,46530,double life,1337281685 +26125,46530,journalism,1337281665 +26125,46530,superhero,1337281677 +26125,46530,Superman,1337281723 +26125,46578,beauty pageant,1177739714 +26125,46578,drugs,1177739670 +26125,46578,dysfunctional family,1177739636 +26125,46578,family bonds,1177739572 +26125,46578,irreverent,1177739563 +26125,46578,road trip,1177739663 +26125,46723,Africa,1413522709 +26125,46723,Arabic,1413522777 +26125,46723,biblical,1413522764 +26125,46723,Brad Pitt,1413522610 +26125,46723,coming of age,1413522689 +26125,46723,deafness,1413522601 +26125,46723,father daughter relationship,1413522735 +26125,46723,French,1413522702 +26125,46723,Japan,1413522587 +26125,46723,Mexico,1413522720 +26125,46723,multilingual,1413522622 +26125,46723,multiple storylines,1413522596 +26125,46723,social commentary,1413522626 +26125,46723,Spanish,1413522577 +26125,46723,suicide,1413522755 +26125,46723,terrorism,1413522679 +26125,46723,visually appealing,1413522698 +26125,46723,wedding,1413522582 +26125,46850,crossword puzzles,1176511242 +26125,46850,gay propaganda,1176511242 +26125,46850,nerds,1176511242 +26125,46919,missionary; christian; inspiring,1201416052 +26125,46948,claymation,1162867279 +26125,46948,halloween,1162867279 +26125,46948,haunted house,1162867279 +26125,46965,airplane,1173637793 +26125,46965,Snakes,1173637697 +26125,46967,ghosts,1398658152 +26125,46967,journalism,1398658152 +26125,46967,magic,1398658152 +26125,46967,murder investigations,1398658066 +26125,46967,rich people,1398658152 +26125,46967,spirits,1398658152 +26125,46967,Woody Allen,1398658074 +26125,46970,competition,1188865389 +26125,46970,nascar,1188865382 +26125,46970,racing,1188865414 +26125,46970,southern comedy,1188865394 +26125,46972,good children movie,1177740170 +26125,46974,911,1168577942 +26125,46974,courage,1168577942 +26125,46974,heroes,1168577942 +26125,46974,New york city,1168577942 +26125,46974,true story,1168577942 +26125,46976,chicago,1176510390 +26125,46976,modern fantasy,1176510370 +26125,46976,writing,1176510435 +26125,47099,bittersweet,1177739927 +26125,47099,San Francisco,1177739950 +26125,47261,gay propaganda,1170649001 +26125,47261,munchausen syndrome,1170649001 +26125,47261,radio,1170649001 +26125,47264,animated,1168576636 +26125,47264,kids,1168576636 +26125,47264,responsibility,1168576636 +26125,47264,talking animals,1168576636 +26125,47610,magic,1171686182 +26125,47644,football,1168575707 +26125,47644,Philadelphia,1168575707 +26125,47644,rags to riches,1168575707 +26125,47644,true story,1168575707 +26125,47644,underdog,1168575707 +26125,47810,cult,1192593643 +26125,47810,island,1192593643 +26125,47810,pagan,1192593643 +26125,47810,remake,1192593492 +26125,47952,ipswich,1172125317 +26125,47952,Teen movie,1172125317 +26125,47952,witches,1172125317 +26125,48043,death,1182888353 +26125,48043,DEATH OF A SPOUSE,1182888324 +26125,48043,Disappointing,1182888316 +26125,48043,fountain of youth,1182888332 +26125,48043,immortality,1182888360 +26125,48043,time travel,1182888313 +26125,48304,gruesome,1181502418 +26125,48304,violence,1181502420 +26125,48385,anti-Semitism,1173418945 +26125,48385,bears,1173418928 +26125,48385,gross,1173418980 +26125,48385,Male nudity,1173418891 +26125,48385,religiously offensive,1173418972 +26125,48416,nerds,1172032629 +26125,48516,Boston,1177739327 +26125,48516,Mafia,1177739297 +26125,48516,police corruption,1177739309 +26125,48516,remake,1177739367 +26125,48516,undercover cop,1177739281 +26125,48520,employee; competition;,1188865836 +26125,48696,EXTRAMARITAL AFFAIRS,1181502013 +26125,48696,PARENTHOOD,1181501973 +26125,48698,Catholic Church,1219619954 +26125,48698,child abuse,1219619942 +26125,48698,coverup,1219619948 +26125,48698,paedophilia,1219619944 +26125,48698,sick,1219619978 +26125,48711,determination,1317005790 +26125,48711,Football,1317005778 +26125,48741,beatles,1219617323 +26125,48741,government,1219617323 +26125,48741,john lennon,1219617323 +26125,48741,liberal propaganda,1219617323 +26125,48774,based on a book,1177739126 +26125,48774,end of the world,1177739138 +26125,48774,future,1177739145 +26125,48774,infertility,1177739116 +26125,48780,based on a book,1173637629 +26125,48780,drowning,1173637624 +26125,48780,magic,1173637621 +26125,48783,iwo jima,1177740315 +26125,48783,photography,1177740315 +26125,48783,war,1177740315 +26125,48783,World War II,1177740315 +26125,48791,Horses,1174274566 +26125,48791,mustangs,1174274566 +26125,48791,ranch,1174274566 +26125,48791,rodeo,1174274566 +26125,48895,secrets,1295836955 +26125,48982,rats,1177740372 +26125,48982,singing slugs,1177740362 +26125,48982,Wallace & Gromit,1177740390 +26125,49272,casinos,1177740060 +26125,49272,gambling,1177740005 +26125,49272,james bond,1177740016 +26125,49272,poker,1177740008 +26125,49282,predictable,1167113533 +26125,49282,some funny parts,1167113533 +26125,49282,sophomoric,1167113533 +26125,49286,England,1182888971 +26125,49286,romantic comedy,1182888967 +26125,49286,trading places,1182889015 +26125,49524,Biblical,1174846821 +26125,49524,Christian,1174846821 +26125,49524,Christmas,1174846821 +26125,49524,Jesus,1174846821 +26125,49528,brazil,1182888895 +26125,49528,harvesting body parts,1182888895 +26125,49528,tourists,1182888895 +26125,49530,Africa,1197956718 +26125,49530,brutality,1197956645 +26125,49530,corruption,1197956603 +26125,49530,horrific violence,1197956585 +26125,49530,Sierra Leone,1197956672 +26125,49530,South Africa,1197956653 +26125,49530,violent,1197956638 +26125,49530,war,1197956711 +26125,49649,dragons,1176511265 +26125,49772,1920's,1210389776 +26125,49772,adultery,1210389776 +26125,49772,china,1210389776 +26125,49772,cholera,1210389776 +26125,49772,epidemic,1210389776 +26125,49772,shanghai,1210389776 +26125,49910,ghetto; slums; teaching; holocaust; hope,1181502591 +26125,50153,black comedy; amnesia;,1181501884 +26125,50160,author,1183878067 +26125,50160,based on a true story,1183878067 +26125,50160,gentle story,1419007050 +26125,50160,literature,1183878067 +26125,50160,Renee Zellweger,1419007041 +26125,50447,murder,1180053985 +26125,50447,unique,1180053985 +26125,50601,death of a child,1182888535 +26125,50601,liberal messages,1182888437 +26125,50601,sad,1182888535 +26125,50798,Parody,1180053442 +26125,50804,cannibalism; uncomfortable; crime; serial killer;,1181502713 +26125,50872,food/cooking,1183877928 +26125,50872,paris,1183878009 +26125,50872,rats,1183878009 +26125,51077,based on a comic,1341022108 +26125,51077,Comic Book,1341022112 +26125,51077,deal with the devil,1341022119 +26125,51077,devil,1341022135 +26125,51077,Marvel,1341022103 +26125,51412,psychic powers,1252709171 +26125,51412,supernatural powers,1252709125 +26125,51471,London,1195623994 +26125,51471,parliament,1195623974 +26125,51471,slavery,1195623965 +26125,51540,based on a true story,1188865113 +26125,51540,serial killer;,1188865148 +26125,51638,bar,1221710312 +26125,51638,black and white,1221710312 +26125,51638,cattle,1221710312 +26125,51638,corn,1221710312 +26125,51638,farming,1221710312 +26125,51638,homesteading,1221710312 +26125,51638,shootout,1221710312 +26125,51698,future kids powers doll,1187587595 +26125,51847,government,1405139592 +26125,51847,intense,1405139655 +26125,51847,panic,1405139539 +26125,51847,terrorism,1405139535 +26125,51847,twist ending,1405139549 +26125,51925,betrayal,1186378639 +26125,51925,out of order,1186378635 +26125,51925,time travel,1186378599 +26125,51931,New York,1199773675 +26125,51931,post-traumatic stress disorder,1199773688 +26125,52241,Heist,1409965646 +26125,52241,mentally impaired,1409965654 +26125,52241,overrated,1409965668 +26125,52241,short-term memory loss,1409965643 +26125,52245,figure skating,1195624051 +26125,52279,black comedy; home improvement; dumb; children's,1188865632 +26125,52283,Biblical,1197960976 +26125,52435,based on a book,1229320689 +26125,52435,Christmas,1229320681 +26125,52435,Dr. Seuss,1229320685 +26125,52458,rear window; voyeurism,1188865985 +26125,52604,adultery,1188865270 +26125,52604,courtroom drama,1188865278 +26125,52604,murder,1188865275 +26125,52694,stupid,1197961303 +26125,52694,vacation,1197961303 +26125,53024,cult,1247894286 +26125,53024,history,1247894328 +26125,53024,mass suicide,1247894291 +26125,53024,South America,1247894307 +26125,53024,suicide,1247894297 +26125,53121,sequel,1197960519 +26125,53123,guitar,1203744109 +26125,53123,songwriting,1203744153 +26125,53125,pirates,1202083291 +26125,53125,swashbuckler,1202083237 +26125,53464,based on comic book,1192593827 +26125,53550,jungle,1210907836 +26125,53550,pows,1210907836 +26125,53550,prisoners,1210907836 +26125,53550,rescue,1210907836 +26125,53550,Vietnam War,1210907732 +26125,53550,vietnam war based movie,1210907836 +26125,53993,Biblical,1431524443 +26125,53993,big budget,1431524466 +26125,53993,Christianity,1431524440 +26125,53993,environmental,1431524418 +26125,53993,god,1431524420 +26125,53993,Morgan Freeman,1431524423 +26125,53993,religion,1431524456 +26125,53993,Steve Carell,1431524434 +26125,54259,british,1413165803 +26125,54259,Clare Danes,1413165907 +26125,54259,crude humor,1413165725 +26125,54259,fairy tale,1413165741 +26125,54259,fairy tale romance,1413165738 +26125,54259,fantasy world,1413165797 +26125,54259,good vs evil,1413165836 +26125,54259,Iceland,1413165883 +26125,54259,magic,1413165809 +26125,54259,magical aging/immortality,1413165791 +26125,54259,men in drag (scene),1413165942 +26125,54259,Michelle Pfeiffer,1413165745 +26125,54259,modern fantasy,1413165730 +26125,54259,pirates,1413165755 +26125,54259,Robert De Niro,1413165763 +26125,54259,visually appealing,1413165850 +26125,54259,witches,1413165785 +26125,54780,nanny,1197960418 +26125,54780,rich and poor,1197960418 +26125,55067,1970s,1242012707 +26125,55067,Catholicism,1242012691 +26125,55067,Christianity,1242012721 +26125,55067,epilepsy,1242012678 +26125,55067,Exorcism,1242012669 +26125,55067,mental illness,1242012660 +26125,55067,possession,1242012674 +26125,55067,religion,1242012725 +26125,55067,true story,1242012653 +26125,55284,liberal viewpoint,1204873035 +26125,55284,political,1204873058 +26125,55284,terrorism,1204873022 +26125,55284,torture,1204872997 +26125,55288,crime,1212462450 +26125,55288,death,1212462450 +26125,55288,good but depressing,1212462450 +26125,55288,guilt,1212462450 +26125,55288,hit and run,1212462450 +26125,55290,abduction,1204083034 +26125,55290,drugs,1204083034 +26125,55290,kidnapping,1204083034 +26125,55290,twist,1204083034 +26125,55729,buried treasure,1202784492 +26125,55729,california,1202784587 +26125,55729,costco,1202784492 +26125,55729,mental illness,1202784492 +26125,55732,adoption,1224225691 +26125,55732,children,1224225689 +26125,55732,psychology,1224225687 +26125,55908,antichristian,1206671964 +26125,55908,entirely dialogue,1206671904 +26125,55908,immortality,1206671939 +26125,56145,antichristian,1207275481 +26125,56145,liberal propaganda,1207275602 +26125,56145,mist,1207275481 +26125,56145,sacrilege,1207275481 +26125,56145,stephen king,1207275481 +26125,56174,alone in the world,1412830066 +26125,56174,apocalypse,1412830153 +26125,56174,Below R,1412830258 +26125,56174,black scientist,1412830195 +26125,56174,christian propaganda,1412830148 +26125,56174,disease,1412830162 +26125,56174,dogs,1412830186 +26125,56174,dystopia,1412830131 +26125,56174,last man on earth,1412830104 +26125,56174,loneliness,1412830081 +26125,56174,mutants,1412830077 +26125,56174,New York City,1412830167 +26125,56174,Post apocalyptic,1412830117 +26125,56174,post-apocalyptic,1412830084 +26125,56174,post-apocalytic setting,1412830245 +26125,56174,religion,1412830181 +26125,56174,solitude,1412830096 +26125,56174,survival,1412830112 +26125,56174,virus,1412830175 +26125,56174,Will Smith,1412830123 +26125,56174,zombies,1412830092 +26125,56333,elderly,1212462154 +26125,56333,family drama,1212462121 +26125,56333,old age,1212462144 +26125,56367,pregnancy,1210389081 +26125,56367,teenage pregnancy,1210389207 +26125,56367,teenager,1210389089 +26125,56587,death,1214720280 +26125,56587,life philosophy,1214720240 +26125,56587,meaning of life,1214720265 +26125,56587,regrets,1214720281 +26125,56775,sequel; history; treasure; president,1199773908 +26125,56788,afghanistan,1213680764 +26125,56788,cold war,1213680764 +26125,56788,liberal propaganda,1213680764 +26125,56788,politics,1213680764 +26125,57353,Demi Moore,1446315388 +26125,57353,heist,1446315391 +26125,57353,Michael Caine,1446315402 +26125,57353,revenge,1446315407 +26125,57353,strong woman,1446315395 +26125,57526,serial killer,1218563508 +26125,57526,Tedious,1218563486 +26125,57534,cornea transplant - sees ghosts,1213680848 +26125,57534,remake,1213680824 +26125,57534,transplant,1213680848 +26125,57538,chick flick,1213341235 +26125,57538,death,1213341236 +26125,57538,death of a spouse,1213341235 +26125,57538,wedding,1213341236 +26125,57669,belgium,1242013442 +26125,57669,dark comedy,1242013405 +26125,57669,drugs,1242013426 +26125,57669,dwarf,1242013521 +26125,57669,foul language,1242013487 +26125,57669,hitman,1242013408 +26125,57669,irish accent,1242013414 +26125,57669,irreverent,1242013468 +26125,57669,suicide,1242013401 +26125,57669,violent,1242013456 +26125,58025,based on a book,1227334202 +26125,58025,escape,1227334213 +26125,58025,teens,1227334204 +26125,58025,teleportation,1227334195 +26125,58047,clinton,1224225806 +26125,58047,divorce,1224225806 +26125,58047,love,1224225806 +26125,58047,marriage,1224225806 +26125,58047,politics,1224225806 +26125,58103,assassination,1218778865 +26125,58103,betrayal,1218778902 +26125,58103,bombs,1218778911 +26125,58103,double agents,1218778906 +26125,58103,fast paced,1218778904 +26125,58103,multiple storylines,1218778884 +26125,58103,murder,1218778871 +26125,58103,president,1218778895 +26125,58103,secret service,1218778868 +26125,58103,spain,1218778881 +26125,58103,terrorism,1218778878 +26125,58154,based on a book,1218433660 +26125,58154,england,1218433693 +26125,58154,historical,1218433664 +26125,58154,royalty,1218433693 +26125,58246,death,1213341172 +26125,58246,grieving,1213341172 +26125,58246,military,1213341172 +26125,58246,sad,1213341172 +26125,58293,ancient civilization,1218167505 +26125,58293,bc,1218167505 +26125,58293,cavemen,1218167505 +26125,58293,prehistoric,1218167505 +26125,58295,1970s,1224225611 +26125,58295,based on a true story,1224225606 +26125,58295,corruption,1224225656 +26125,58295,heist,1224225609 +26125,58295,london,1224225672 +26125,58295,robbery,1224225615 +26125,58347,curse,1233296210 +26125,58347,deformity,1233296210 +26125,58347,fairy tale,1233296210 +26125,58347,pig,1233296210 +26125,58490,1930s,1409030850 +26125,58490,Female Bonding,1409030863 +26125,58490,Jazz Music,1409030867 +26125,58490,maid,1409030922 +26125,58490,rich vs. poor,1409030922 +26125,58559,Batman,1233295799 +26125,58559,Comic Book adaption,1233295815 +26125,58559,dark,1233295817 +26125,58559,gritty,1233295869 +26125,58559,mask,1233295829 +26125,58559,serial killer,1233295808 +26125,58559,superhero,1233295806 +26125,58803,based on a true story,1218167536 +26125,58803,blackjack,1218167659 +26125,58803,casinos,1218167634 +26125,58803,gambling,1218167542 +26125,58803,Massachusetts Institute of Technology,1218167585 +26125,58803,mathematics,1218167659 +26125,58803,Matt Damon,1218167733 +26125,59141,bullying,1233295550 +26125,59141,childhood,1233295553 +26125,59141,exchange student,1233295571 +26125,59141,nursing home,1233295566 +26125,59141,school,1233295591 +26125,59258,pregnancy,1233296116 +26125,59258,surrogate,1233296142 +26125,59369,action,1245093658 +26125,59369,agent,1245093638 +26125,59369,Albanians,1245093681 +26125,59369,car chase,1245093600 +26125,59369,CIA,1245093625 +26125,59369,crime,1245093653 +26125,59369,cynical,1245093643 +26125,59369,divorce,1245093621 +26125,59369,father daughter relationship,1245093633 +26125,59369,fight scenes,1245093616 +26125,59369,kidnapping,1245093595 +26125,59369,Paris,1245093609 +26125,59369,special forces,1245093675 +26125,59369,thriller,1245093667 +26125,59369,white slavery,1245093696 +26125,59501,based on a book,1230366081 +26125,59501,C.S. Lewis,1230366076 +26125,59501,Christian apologism,1230366115 +26125,59501,fantasy,1230366079 +26125,59501,Jesus freaks,1230366103 +26125,59615,aliens,1218779061 +26125,59615,archaeology,1218779043 +26125,59615,sequel,1218779058 +26125,59709,college,1295837277 +26125,59709,Mathematics,1295837280 +26125,59709,Oxford,1295837335 +26125,59709,university,1295837273 +26125,59784,Kung Fu,1226796454 +26125,59784,panda,1226796456 +26125,60037,far fetched,1224225854 +26125,60037,trees,1224225832 +26125,60069,pixar,1218167904 +26125,60069,robots,1218167907 +26125,60074,alcoholic,1410312458 +26125,60074,Below R,1410312443 +26125,60074,Charlize Theron,1410311429 +26125,60074,plot twist,1410311401 +26125,60074,public relations,1410311196 +26125,60074,super hero,1410311169 +26125,60074,superhero,1410311176 +26125,60074,twist ending,1410311398 +26125,60074,watch the credits,1410312572 +26125,60074,Will Smith,1410311173 +26125,60189,amnesia,1337281319 +26125,60189,stylized,1337281338 +26125,60189,supernatural,1337281323 +26125,60189,weird,1337281331 +26125,60418,iraq,1273426455 +26125,60418,mascot,1273426455 +26125,60487,halloween,1225683260 +26125,61729,dentist,1233295464 +26125,61729,dentists,1233295457 +26125,61729,ghosts,1233295461 +26125,62137,based on a book,1391395240 +26125,62137,contrived,1391395246 +26125,62137,hurricane,1391395269 +26125,62553,based on a book,1337286217 +26125,62553,chick flick,1337286234 +26125,62553,coming of age,1337286221 +26125,62577,business,1251609822 +26125,62577,cars,1251609859 +26125,62577,corruption,1251609849 +26125,62577,Detroit,1251609840 +26125,62577,inventor,1251609832 +26125,62577,Michigan,1251609837 +26125,62577,technology,1251609825 +26125,62577,true story,1251609817 +26125,63033,based on a book,1252709352 +26125,63033,blindness,1252709338 +26125,63033,epidemic,1252709346 +26125,63072,cannibalism,1295837432 +26125,63072,depressing,1295837428 +26125,63072,dystopia,1295837444 +26125,63072,post-apocalyptic,1295837424 +26125,63072,tense,1295837458 +26125,63082,based on a book,1244087945 +26125,63082,destiny,1244088072 +26125,63082,game show,1244088087 +26125,63082,India,1244087888 +26125,63082,life story,1244087956 +26125,63082,Mumbai,1244087901 +26125,63082,non-linear,1244087999 +26125,63082,nonlinear,1244087883 +26125,63082,poverty,1244088053 +26125,63082,RAGS TO RICHES,1244087971 +26125,63082,singing,1244087964 +26125,63082,slum,1244087978 +26125,63082,torture,1244088065 +26125,63082,Who Wants to Be a Millionaire?,1244087987 +26125,63859,cats and dogs,1258852580 +26125,63859,comic sidekick,1258852560 +26125,63859,dog,1258852564 +26125,63859,pigeons,1258852601 +26125,63859,superhero,1258852570 +26125,63876,biography,1230365966 +26125,63876,politics,1230365974 +26125,63876,San Francisco,1230365959 +26125,64034,based on a book,1258785426 +26125,64034,childish naivity,1258785444 +26125,64034,Friendship,1258785434 +26125,64034,Holocaust,1258785406 +26125,64034,irony,1258785472 +26125,64034,Nazi Germany,1258785431 +26125,64034,Nazis,1258785394 +26125,64034,sad,1258785463 +26125,64034,touching,1258785412 +26125,64034,World War II,1258785415 +26125,64497,apocolyptic,1239334848 +26125,64497,liberal propaganda,1239334900 +26125,64497,remake,1239334842 +26125,64614,ageism,1249333577 +26125,64614,classic car,1249333522 +26125,64614,cranky,1249333594 +26125,64614,culture clash,1249333464 +26125,64614,Detroit,1249333557 +26125,64614,friendship,1249333537 +26125,64614,gang,1249333601 +26125,64614,life & death,1249333482 +26125,64614,mentor,1249333562 +26125,64614,murder,1249333582 +26125,64614,old guy,1249333515 +26125,64614,old men,1249333531 +26125,64614,patriotic,1249333586 +26125,64614,revenge,1249333495 +26125,64614,wasted life,1249333566 +26125,64622,coming of age,1413175879 +26125,64622,Germany,1413175747 +26125,64622,guilt,1413175751 +26125,64622,heartbreaking,1413175888 +26125,64622,Holocaust,1413175850 +26125,64622,nazi germany,1413175800 +26125,64622,nazis,1413175744 +26125,64622,prison,1413175853 +26125,64622,trial,1413175870 +26125,64622,World War II,1413175787 +26125,64716,Organ donor,1242013658 +26125,64716,unique,1242013676 +26125,65216,based on a true story,1411692971 +26125,65216,germany,1411693023 +26125,65216,jews,1411693023 +26125,65216,Nazis,1411692968 +26125,65216,russia,1411693023 +26125,65216,war,1411692990 +26125,65216,World War II,1411692975 +26125,65230,dog,1242013623 +26125,65230,marriage,1242013623 +26125,65230,pregnancy,1242013623 +26125,65230,stillbirth,1242013623 +26125,65514,action,1402460323 +26125,65514,biography,1402460319 +26125,65514,China,1402460013 +26125,65514,chinese culture,1402460027 +26125,65514,fighting,1402460023 +26125,65514,inspirational,1402460329 +26125,65514,kung fu,1402460009 +26125,65514,martial arts,1402460017 +26125,65612,Australia,1273425950 +26125,65612,based on a book,1273425964 +26125,65612,desert island flicks,1273425990 +26125,65612,easily confused with other movie(s) (title),1273425983 +26125,65612,survival,1273425954 +26125,65612,true story,1273425961 +26125,65802,good heart,1440880170 +26125,65802,segway,1440880202 +26125,65802,stupid,1440880163 +26125,66304,children,1242013373 +26125,66304,dogs,1242013373 +26125,66304,hotel,1242013373 +26125,66304,orphans,1242013373 +26125,67197,aliens,1247894522 +26125,67197,end of the world,1247894560 +26125,67197,thought-provoking,1247894509 +26125,67255,based on a book,1397192028 +26125,67255,bisexual,1397191935 +26125,67255,butch,1397278196 +26125,67255,computers,1397190973 +26125,67255,dark,1397192002 +26125,67255,flat chested,1397278196 +26125,67255,foreign language,1397192069 +26125,67255,hackers,1397192018 +26125,67255,investigation,1397190984 +26125,67255,investigative journalism,1397191985 +26125,67255,journalism,1397190967 +26125,67255,journalist,1397192046 +26125,67255,nose ring,1397278196 +26125,67255,rape,1397190989 +26125,67255,sexual violence,1397192087 +26125,67255,subtitles,1397278196 +26125,67255,Sweden,1397192081 +26125,67255,swedish,1397191967 +26125,67255,tattoo,1397192057 +26125,68954,adventure,1245544570 +26125,68954,ballooning,1245544502 +26125,68954,computer animation,1245544548 +26125,68954,dogs,1245544558 +26125,68954,dreams,1245544496 +26125,68954,happy ending,1245544519 +26125,68954,Pixar,1245544490 +26125,68954,sad intro,1245544534 +26125,68954,talking dog,1245544511 +26125,69122,casino,1262025079 +26125,69122,Drinking,1262025075 +26125,69122,drugs,1262025107 +26125,69122,hotel,1262025093 +26125,69122,Las Vegas,1262025071 +26125,69122,no plot,1262025125 +26125,69122,police,1262025103 +26125,69122,strippers,1262025090 +26125,69122,tiger,1262025154 +26125,69406,Alaska,1402806613 +26125,69406,Betty White,1402806684 +26125,69406,chemistry,1402806677 +26125,69406,chemistry between actors,1402806635 +26125,69406,happy ending,1402806654 +26125,69406,love,1402806642 +26125,69406,male nudity,1402806607 +26125,69406,male stripper,1402806669 +26125,69406,Sandra Bullock,1402806617 +26125,69574,alice in wonderland,1396061823 +26125,69574,difficulties during childhood,1396061840 +26125,69574,elementary school,1396061803 +26125,69574,mental illness,1396061807 +26125,69574,obsessive compulsive disorder,1396061811 +26125,69574,Self Obsessed Mom,1396061817 +26125,69574,spoiled brat,1396061865 +26125,70208,Hawaii,1283816062 +26125,70208,hiking,1283816103 +26125,70286,action,1261540522 +26125,70286,aliens,1261540437 +26125,70286,creative plot,1261540665 +26125,70286,genetics,1261540447 +26125,70286,political commentary,1261540592 +26125,70286,segregation,1261540601 +26125,70286,shaky cam,1261540477 +26125,70286,slum,1261540657 +26125,70286,social commentary,1261540456 +26125,70286,South Africa,1261540569 +26125,70286,Special Effects,1261540580 +26125,70286,transformation,1261540503 +26125,70286,weapons,1261540606 +26125,70293,biography,1270925657 +26125,70293,blog,1270925715 +26125,70293,boring,1270925703 +26125,70293,cooking,1270925631 +26125,70293,food,1270925627 +26125,70293,france,1270925645 +26125,70293,Julia Child,1270925684 +26125,70293,lighthearted,1270925675 +26125,70293,shallow,1270925666 +26125,71156,absurd,1283816145 +26125,71156,black humor,1283816165 +26125,71156,crazy people,1283816190 +26125,71156,hippies,1283816178 +26125,71156,Iraq,1283816175 +26125,71156,Kuwait,1283816208 +26125,71156,military,1283816137 +26125,71156,PSYCHIC ABILITIES,1283816157 +26125,71156,superpowers,1283816185 +26125,71248,adultery,1262025418 +26125,71248,extract,1262025407 +26125,71466,dysfunctional family,1337286918 +26125,71466,secrets,1337286923 +26125,72294,based on a book,1337285751 +26125,72294,Charles Dickens,1337285744 +26125,72294,Christmas,1337285740 +26125,72378,bad physics,1280279963 +26125,72378,bad science,1280280024 +26125,72378,destruction,1280279868 +26125,72378,exciting,1280280019 +26125,72378,future,1280279741 +26125,72393,abduction,1275940288 +26125,72393,alaska,1275940269 +26125,72393,aliens,1275940297 +26125,72393,fake,1275940312 +26125,72393,fake documentary,1275940308 +26125,72393,fbi,1275940276 +26125,72393,Milla Jovovich,1275940280 +26125,72393,psychology,1275940294 +26125,72393,sumerian culture,1275940321 +26125,72641,based on a true story,1270954713 +26125,72641,football,1270954717 +26125,72641,Racist,1270954736 +26125,72641,sports,1270954728 +26125,72641,true story,1270954709 +26125,72696,business,1273426881 +26125,72696,father daughter relationship,1273426840 +26125,72696,father son relationship,1273426836 +26125,72696,fatherhood,1273426853 +26125,72696,Japan,1273426844 +26125,72696,japanese,1273426874 +26125,72696,marketing,1273426891 +26125,72696,new york city,1273426918 +26125,72696,tattoo,1273426866 +26125,73017,Action,1270925912 +26125,73017,Based on a book,1270925879 +26125,73017,boring script,1270925982 +26125,73017,BORING!,1270925948 +26125,73017,costumes,1270925932 +26125,73017,fake death,1270926009 +26125,73017,murder,1270925979 +26125,73017,mystery,1270925897 +26125,73017,slow motion,1270925964 +26125,73017,subgenre:buddies,1270925959 +26125,73017,violent,1270925922 +26125,73290,based on a true story,1317005489 +26125,73290,dogs,1317005484 +26125,73290,Loyalty,1317005503 +26125,73319,Amy Adams,1440880129 +26125,73319,Ireland,1440880115 +26125,73321,Bible,1280897034 +26125,73321,books,1280896981 +26125,73321,Christianity,1280897008 +26125,73321,dystopic future,1280896969 +26125,73321,faith,1280897025 +26125,73321,future,1280896987 +26125,73321,post-apocalyptic,1280896972 +26125,73321,Stylistic,1280897022 +26125,73321,thought-provoking,1280896954 +26125,74324,animal husbandry,1410578540 +26125,74324,autism,1410578426 +26125,74324,biography,1410578498 +26125,74324,biology,1410578520 +26125,74324,biopic,1410578465 +26125,74324,cattle,1410578536 +26125,74324,Claire Danes,1410578439 +26125,74324,college,1410578515 +26125,74324,cows,1410578529 +26125,74324,disability,1410578430 +26125,74324,great acting,1410578511 +26125,74324,inspirational,1410578478 +26125,74324,made for TV,1410578423 +26125,74324,mental illness,1410578468 +26125,74324,science,1410578501 +26125,74324,slaughter,1410578547 +26125,74324,social commentary,1410578486 +26125,74324,true story,1410578481 +26125,74458,asylum,1283815477 +26125,74458,insanity,1283815437 +26125,74458,psychological,1283815441 +26125,74458,twist ending,1283815446 +26125,74698,Family Movie,1283815592 +26125,74698,Ice Hockey,1283815586 +26125,74789,3D,1270926089 +26125,74789,alternate reality,1270926058 +26125,74789,based on a book,1270926095 +26125,74789,cartoon cat,1270926184 +26125,74789,Cincinnati,1270926214 +26125,74789,Lewis Carroll,1270926077 +26125,74789,talking animals,1270926099 +26125,74868,England,1337288649 +26125,77206,adapted from:book,1295837554 +26125,77370,professor,1295837227 +26125,77370,tenure,1295837227 +26125,77455,eccentric,1295837069 +26125,77455,graffiti,1295837044 +26125,77455,renegade art,1295837040 +26125,78316,happy ending,1337288311 +26125,78316,italians,1337288338 +26125,78316,italy,1337288288 +26125,78316,journalism,1337288283 +26125,78316,misunderstanding,1337288294 +26125,78316,New York City,1337288301 +26125,78316,predictable,1337288332 +26125,78316,relationships,1337288318 +26125,79242,dysfunctional family,1281678866 +26125,79242,lesbians,1281678843 +26125,79357,butterfly effect,1397105079 +26125,79357,divorce,1397104991 +26125,79357,flashbacks,1397105023 +26125,79357,immortality,1397104987 +26125,79357,memory,1397104982 +26125,79357,nonlinear,1397104979 +26125,79357,soundtrack,1397105045 +26125,79357,storytelling,1368027164 +26125,79357,style over substance,1397105035 +26125,79357,surreal,1397104997 +26125,79357,technobabble,1397105092 +26125,79357,thought provoking,1397105005 +26125,79357,time travel,1397104971 +26125,79357,too long,1397105051 +26125,79572,lighthearted,1337288203 +26125,79572,Portland,1337288207 +26125,79897,funeral,1308794412 +26125,80489,action,1392187878 +26125,80489,bank robbery,1392187862 +26125,80489,Boston,1392187904 +26125,80489,character driven,1392187912 +26125,80489,crime,1392187944 +26125,80489,Criminal = good Police = bad,1392188018 +26125,80489,father-son relationship,1392187892 +26125,80489,FBI,1392187856 +26125,80489,heist,1392187872 +26125,80489,hostage,1392187866 +26125,80489,long,1392187950 +26125,80489,Massachusetts,1392187971 +26125,80489,place driven,1392187992 +26125,80489,police,1392187926 +26125,80489,Reasonable dialogue,1392187987 +26125,80489,unlikeable characters,1392187932 +26125,80489,violence,1392187916 +26125,80831,1980s,1337286115 +26125,80831,bittersweet,1337286109 +26125,80831,bullying,1337286177 +26125,80831,coming of age,1337286089 +26125,80831,middle school,1337286144 +26125,80831,serial killer,1337286078 +26125,80831,vampires,1337286085 +26125,80839,Below R,1398044136 +26125,80839,Disney,1398044091 +26125,80839,horseracing,1398044127 +26125,80839,horses,1398044079 +26125,80839,kentucky,1398044100 +26125,80839,overcoming odds,1398044104 +26125,80839,true story,1398044084 +26125,80846,authentic Christianity,1407390514 +26125,80846,Christianity,1407390447 +26125,80846,devil,1407390476 +26125,80846,elevator,1407390463 +26125,80846,good acting,1407390488 +26125,80846,M. Night Shyamalan,1407390468 +26125,80846,plot twist,1407390433 +26125,80846,satan,1407390441 +26125,80846,Security Guard,1407390507 +26125,80846,skyscraper,1407390458 +26125,80846,stuck,1407390497 +26125,80846,supernatural,1407390426 +26125,80846,twist ending,1407390436 +26125,80860,babies,1337287468 +26125,80860,emotional,1337287472 +26125,80860,predictable,1337287481 +26125,80860,raising children,1337287493 +26125,80860,real life situations,1337287489 +26125,80862,controversial,1337286479 +26125,80862,internet,1337286487 +26125,80862,makes you think,1337286476 +26125,80862,morality,1337286456 +26125,80862,social networking,1337286462 +26125,80862,thought-provoking,1337286453 +26125,80862,true story,1337286472 +26125,80880,faith,1337286271 +26125,80880,prison,1337286268 +26125,80924,based on a book,1337288259 +26125,80924,dogs,1337288254 +26125,81140,death,1407473915 +26125,81140,devil,1407473924 +26125,81140,multiple personalities,1407473901 +26125,81140,murder,1407473929 +26125,81140,religion,1407473910 +26125,81140,soul extraction,1407473933 +26125,81140,soul stealing,1407473947 +26125,81140,souls,1407473954 +26125,81140,supernatural,1407473892 +26125,81140,witch,1407473897 +26125,81512,afterlife,1337287013 +26125,81512,death,1337286992 +26125,81516,disease,1337288569 +26125,81516,England,1337288565 +26125,81516,plague,1337288580 +26125,81562,determination,1337287702 +26125,81562,hallucination,1337287653 +26125,81562,intense,1337287635 +26125,81562,loneliness,1337287628 +26125,81562,lost arm,1337287821 +26125,81562,psychology,1337287640 +26125,81562,stranded,1337287624 +26125,81562,survival,1337287631 +26125,81562,true story,1337287642 +26125,81562,Utah,1337287718 +26125,81788,good ending,1337281905 +26125,81788,jailbreak,1337281920 +26125,81788,Pittsburgh,1337281914 +26125,81788,sad,1337281927 +26125,82009,falsely accused,1405567489 +26125,82009,going straight,1405567489 +26125,82009,predictable,1405567489 +26125,82009,prison,1405567489 +26125,82009,tim allen,1405567489 +26125,82009,turning life around,1405567489 +26125,82169,alternate reality,1337288685 +26125,82169,based on a book,1337288699 +26125,82169,C.S. Lewis,1337288692 +26125,82169,talking animals,1337288704 +26125,82242,original,1368027057 +26125,83134,absurd,1337281796 +26125,83134,black comedy,1337281806 +26125,83134,cabin,1337281850 +26125,83134,clever,1337281830 +26125,83134,gore,1337281793 +26125,83134,great premise,1337281826 +26125,83134,misunderstandings,1337281872 +26125,83134,parody,1337281818 +26125,83134,predictable,1337281837 +26125,83134,satire,1337281812 +26125,83158,England,1337285925 +26125,83177,animated,1337285423 +26125,83177,Based on a cartoon,1337285423 +26125,83177,bear,1337285423 +26125,83613,aliens,1313282632 +26125,83613,cowboys,1313282619 +26125,83910,Chicago,1337288051 +26125,84152,human potential,1337282151 +26125,84152,thought provoking,1337282100 +26125,84395,exorcism,1337287131 +26125,84601,amnesia,1337287185 +26125,84601,car accident,1337287226 +26125,84601,conspiracy,1337287197 +26125,84601,identity theft,1337287215 +26125,84601,paranoia,1337287205 +26125,84601,survival,1337287202 +26125,84615,drugs,1337288118 +26125,84772,; bigoted,1318045536 +26125,84772,anti-Christian,1318045536 +26125,84772,anti-religion,1337286805 +26125,84772,Area 51,1337286847 +26125,84772,Atheism,1318045429 +26125,84772,comic books,1337286814 +26125,84772,evolution,1337286862 +26125,84772,invisibility,1337286841 +26125,84772,irreligion,1337286853 +26125,84772,nerds,1337286822 +26125,84772,road trip,1337286837 +26125,84772,supernatural powers,1337286833 +26125,84944,cowboys,1337287053 +26125,84944,desert,1337287048 +26125,84944,quirky style,1337287093 +26125,84944,spaghetti western,1337287038 +26125,84944,talking animals,1337287064 +26125,84950,80s,1340941373 +26125,85414,Chicago,1337286567 +26125,85414,deja vu,1337286591 +26125,85414,military,1337286552 +26125,85414,murder,1337286661 +26125,85414,parallel universe,1337286548 +26125,85414,predictable,1337286656 +26125,85414,predictable ending,1337286624 +26125,85414,terrorism,1337286597 +26125,85414,time loop,1337286562 +26125,85414,time travel,1337286545 +26125,85414,trains,1337286557 +26125,85414,twist ending,1337286573 +26125,85774,biography,1396231929 +26125,85774,cars,1396231921 +26125,85774,death,1396231947 +26125,85774,Formula 1 racing,1396231914 +26125,85774,long,1396231944 +26125,85774,rivalry,1396231906 +26125,85774,sports,1396231926 +26125,85774,true story,1396231910 +26125,86059,animation,1340940592 +26125,86298,animation,1337287286 +26125,86298,birds,1337287273 +26125,86298,Brazil,1337287266 +26125,86298,Carnivale,1337287334 +26125,86298,endangered species,1337287339 +26125,86298,parrots,1337287295 +26125,86298,Rio de Janeiro,1337287280 +26125,86298,South America,1337287302 +26125,86298,talking animals,1337287308 +26125,86355,Capitalism,1340941602 +26125,86548,1930s,1337285517 +26125,86548,animals,1337285537 +26125,86548,circus,1337285528 +26125,86548,elephants,1337285547 +26125,86548,Great Depression,1337285521 +26125,86548,justice,1337285543 +26125,86815,lost arm,1337287863 +26125,86815,sharks,1337287874 +26125,86815,surfing,1337287857 +26125,86852,Unreal reactions,1340941442 +26125,87264,inheritance,1404874348 +26125,87264,predictable,1404874348 +26125,87298,no happy ending,1337287366 +26125,87306,aliens,1337281999 +26125,87306,audience intelligence underestimated,1337282006 +26125,87306,predictable,1337282022 +26125,87430,alien contact,1337281435 +26125,87430,audience intelligence underestimated,1337281469 +26125,87430,comic book,1337281408 +26125,87430,father-son relationship,1337281423 +26125,87430,Green Lantern,1337281441 +26125,87430,no imagination,1337281480 +26125,87430,space,1337281415 +26125,87430,superpowers,1337281449 +26125,87867,Animals,1337285975 +26125,87867,zoo,1337285983 +26125,88118,disappointing,1393986936 +26125,88118,quirky,1393986930 +26125,88118,twists & turns,1393986913 +26125,88744,biology,1337282258 +26125,88744,genetics,1337282241 +26125,88744,space,1337282251 +26125,88744,thought-provoking,1337282248 +26125,88810,based on a book,1337285606 +26125,88810,bittersweet,1337285622 +26125,88810,death/fatality,1337285641 +26125,88810,feel good movie,1337285645 +26125,88810,historical,1337285613 +26125,88810,racism,1337285618 +26125,88810,segregation,1337285593 +26125,88810,social commentary,1337285602 +26125,88810,southern,1337285630 +26125,88810,Tearjerker,1337285654 +26125,89039,earth,1337285844 +26125,89039,parall,1337285881 +26125,89039,parallel universe,1337285881 +26125,89039,Parallels worlds,1337285865 +26125,89377,cars,1337281275 +26125,89377,fight for survival,1337281289 +26125,89470,apocalypse,1340942513 +26125,89470,disease,1340942504 +26125,89470,Hong Kong,1340942516 +26125,89470,kidnapping,1340942501 +26125,89470,Minnesota,1340942496 +26125,89470,virus,1340942523 +26125,89492,bad ending,1340942026 +26125,89492,baseball,1340941975 +26125,89492,based on a book,1340942030 +26125,89492,based on a true story,1340941982 +26125,89492,California,1340942091 +26125,89492,Educational,1340942046 +26125,89492,intelligent,1340941971 +26125,89492,math,1340942009 +26125,89492,money,1340941988 +26125,89492,numbers,1340942039 +26125,89492,Realistic,1340942096 +26125,89492,slow,1340942110 +26125,89492,sports,1340942020 +26125,89492,true story,1340942002 +26125,89492,underdog,1340942006 +26125,89492,winning,1340942159 +26125,89904,1920s,1341696527 +26125,89904,a tribute to the silent era,1341696571 +26125,89904,boring,1341696582 +26125,89904,dogs,1341696540 +26125,89904,Hollywood,1341696558 +26125,89904,Los Angeles,1341696549 +26125,89904,movie business,1341696514 +26125,89904,original,1341696510 +26125,89904,pretentious,1341696552 +26125,89904,romance,1341696543 +26125,89904,silent movie,1341696535 +26125,89904,slow pacing,1341696563 +26125,90405,aging,1340942190 +26125,90405,crime,1340942268 +26125,90405,dystopia,1340942211 +26125,90405,future,1340942259 +26125,90405,immortality,1340942215 +26125,90405,Los Angeles,1340942278 +26125,90405,police corruption,1340942187 +26125,90405,reflective,1340942237 +26125,90405,social commentary,1340942218 +26125,90405,thought-provoking,1340942181 +26125,90476,cancer,1340940644 +26125,90476,disease,1340940640 +26125,90717,crime,1340941768 +26125,90717,crude humor,1340941750 +26125,90717,heist,1340941758 +26125,90717,New York City,1340941795 +26125,90717,Thanksgiving,1340941792 +26125,90738,assassin,1396142325 +26125,90738,Double agent,1396146427 +26125,90738,espionage,1396142321 +26125,90738,spy thriller,1396142313 +26125,90890,multiple roles,1340942442 +26125,90890,siblings,1340942445 +26125,90890,twins,1340942449 +26125,91126,animals,1340941931 +26125,91126,horses,1340941851 +26125,91126,Sappy,1340941863 +26125,91126,tearjerker,1340941890 +26125,91126,war,1340941873 +26125,91126,World War I,1340941867 +26125,91128,1950s,1340939721 +26125,91128,alcoholism,1340939693 +26125,91128,based on a book,1340939705 +26125,91128,beautiful woman,1340939736 +26125,91128,Caribbean,1340939709 +26125,91128,drug abuse,1340939697 +26125,91128,journalism,1340939686 +26125,91128,Latin America,1340939724 +26125,91128,Puerto Rico,1340939730 +26125,91128,rich people,1340939745 +26125,91325,9/11,1340941700 +26125,91450,baseball,1396578182 +26125,91450,Mexico,1396578175 +26125,91450,monterrey,1396578426 +26125,91450,sports,1396578193 +26125,91450,texas,1396578426 +26125,91450,true story,1396578178 +26125,91450,underdogs,1396578426 +26125,91500,based on a book,1337281067 +26125,91500,child killing,1337281136 +26125,91500,dystopia,1337281056 +26125,91500,intense,1337281051 +26125,91500,shakey camera,1337281044 +26125,91500,shaky camera,1337281145 +26125,91500,social commentary,1337281073 +26125,91622,adultery,1340941038 +26125,91622,alcoholism,1340940988 +26125,91622,high school,1340941010 +26125,91622,Minnesota,1340940982 +26125,91622,satire,1340941003 +26125,91622,small town,1340941065 +26125,91622,weak ending,1340940994 +26125,91630,franchise,1340940873 +26125,91630,murder,1340940910 +26125,91630,spy team,1340940904 +26125,91653,Animals,1337219118 +26125,91653,Coping With Loss,1337219155 +26125,91653,feel-good,1337219122 +26125,91653,predictable,1337219138 +26125,91653,Widower,1337219144 +26125,91660,aliens,1337219186 +26125,91660,Moscow,1337219183 +26125,91660,stranded,1337219208 +26125,91660,Visual effects,1337219180 +26125,91673,gay agenda,1341696970 +26125,91673,gender ambiguity,1340939437 +26125,91673,loneliness,1340939442 +26125,91673,pathetic people,1341696970 +26125,91673,transgendered,1341696970 +26125,91673,weirdos are okay,1341696970 +26125,91978,bad language,1340941655 +26125,91978,corrupt cops,1340941660 +26125,91978,heist,1340941645 +26125,91978,shaky camera,1340941652 +26125,92192,aliens,1337282199 +26125,92192,boring,1337282206 +26125,92192,moon,1337282191 +26125,92192,space travel,1337282197 +26125,92259,art,1392672609 +26125,92259,based on a true story,1392672617 +26125,92259,caregiver,1392672752 +26125,92259,classical music,1392672597 +26125,92259,disability,1392672593 +26125,92259,Faberge egg,1392672742 +26125,92259,feel good movie,1392672653 +26125,92259,friendship,1392672625 +26125,92259,one-dimensional characters,1392672708 +26125,92259,paralysis,1392672663 +26125,92259,rated-R,1392672673 +26125,92259,rich and poor,1392672648 +26125,92259,sexuality,1392672601 +26125,92259,upper class,1392672694 +26125,92259,wheelchair,1392672687 +26125,92681,based on a book,1340940768 +26125,92681,beautiful scenery,1340940694 +26125,92681,crude humor,1340940764 +26125,92681,father son relationship,1340940713 +26125,92681,giant bugs,1340940782 +26125,92681,island,1340940702 +26125,92681,Jules Verne,1340940699 +26125,92681,style over substance,1340940776 +26125,92681,the book was better,1340940792 +26125,92938,3D,1341696884 +26125,92938,Action,1341696898 +26125,92938,Goofy,1341696880 +26125,92938,mindless,1341696893 +26125,92938,Superhero,1341696888 +26125,93242,revenge,1340941264 +26125,93242,vigilante,1340941261 +26125,93265,christian,1337280085 +26125,93265,lesson,1337280088 +26125,93265,predictable,1337280116 +26125,93265,sad,1337280106 +26125,93265,story,1337280120 +26125,93287,birding,1337279975 +26125,93287,birds,1337279970 +26125,93287,nature,1337279964 +26125,93297,authentic action,1340939882 +26125,93297,patriotic,1340939886 +26125,93297,pro military,1340939874 +26125,93363,based on a book,1340940036 +26125,93363,child killing,1340940079 +26125,93363,childish plot,1340940062 +26125,93363,Edgar Rice Burroughs,1340940020 +26125,93363,female warriors,1340940054 +26125,93363,Mars,1340940026 +26125,93363,sci-fi,1340940045 +26125,93512,pot,1340939979 +26125,93512,relationships,1340939959 +26125,93512,signs,1340939943 +26125,93563,future,1391396478 +26125,93563,prison,1391396466 +26125,93563,prison escape,1391396471 +26125,93563,space,1391396468 +26125,93563,stupid ending,1391396487 +26125,93740,Emily Blunt,1431524051 +26125,93740,fishing,1431524086 +26125,93740,salmon,1431524086 +26125,93740,sheik,1431524086 +26125,93740,yemen,1431524086 +26125,93805,alternate history,1391396604 +26125,93805,chaotic,1391396623 +26125,93805,feminism,1391396576 +26125,93805,German,1391396579 +26125,93805,moon,1391396569 +26125,93805,Nazis,1391396566 +26125,93805,parody,1391396590 +26125,93805,space battle,1391396608 +26125,93805,space travel,1391396614 +26125,93805,spaceships,1391396587 +26125,94503,author,1391575447 +26125,94503,bagpipes,1391575479 +26125,94503,deafness,1391575442 +26125,94503,decoy,1391575488 +26125,94503,fog,1391575500 +26125,94503,fur clothing,1391575484 +26125,94503,money,1391575457 +26125,94503,PG,1391575494 +26125,94503,Scotland,1391575435 +26125,94503,undressing,1391575462 +26125,94752,African-American,1440879799 +26125,94752,doctors,1440879737 +26125,94752,ghetto,1440879799 +26125,94752,harlem,1440879799 +26125,94752,inspirational,1440879741 +26125,94752,siamese twins,1440879799 +26125,94752,surgery,1440879799 +26125,94752,true story,1440879799 +26125,94810,artificial intelligence,1431524359 +26125,94810,Claudia Vega,1431524345 +26125,94810,robots,1431524340 +26125,94810,Soul,1431524372 +26125,94810,thought-provoking,1431524366 +26125,94864,aliens,1340941178 +26125,94864,predictable,1340941213 +26125,94864,technology,1340941169 +26125,94896,black comedy,1407129456 +26125,94896,funeral home,1407129487 +26125,94896,Gay Character,1407129487 +26125,94896,Jack Black,1407129450 +26125,94896,Richard Linklater,1407129444 +26125,94896,true story,1407129431 +26125,95309,apocalyptic,1440880042 +26125,95309,dark comedy,1440880016 +26125,95309,dark humor,1440880026 +26125,95309,end of the world,1440880035 +26125,95309,Keira Knightley,1440880040 +26125,95309,meteor,1440880065 +26125,95309,road trip,1440880021 +26125,95309,Steve Carell,1440880045 +26125,96114,agent,1408075176 +26125,96114,CIA,1408075164 +26125,96114,claustrophobic,1408075170 +26125,96114,hostage,1408075160 +26125,96114,terrorism,1408075156 +26125,96114,uncomfortable,1408075190 +26125,96567,plagiarism,1440881218 +26125,96567,story-in-a-story,1440881212 +26125,96567,writers,1440881208 +26125,96606,beautiful cinematography,1393648878 +26125,96606,contemplative,1393648912 +26125,96606,meditative,1393648870 +26125,96606,music,1393648906 +26125,96606,time-lapse,1393648874 +26125,96606,wordless,1393648902 +26125,96655,crime,1435090868 +26125,96655,future,1435090845 +26125,96655,memory,1435090848 +26125,96655,robots,1435090839 +26125,96811,believable action,1392956693 +26125,96811,brutally honest,1392956754 +26125,96811,camerawork,1392956547 +26125,96811,character chemistry,1392956685 +26125,96811,comraderie,1392956641 +26125,96811,death,1392956609 +26125,96811,police,1392956567 +26125,96811,realistic action,1392956596 +26125,96811,realistic relationships,1392956652 +26125,96811,unnecessary cursing,1392956824 +26125,96811,unnecessary f bombs,1392956824 +26125,96811,video camera,1392956762 +26125,96829,child abuse,1398658474 +26125,96829,falsely accused,1398659051 +26125,96829,hard to watch,1398658469 +26125,96829,kindergarten,1398658493 +26125,96829,pedophilia,1398658483 +26125,96829,sexual abuse,1398658477 +26125,96917,brain damage,1407294950 +26125,96917,Creepy good,1407297214 +26125,96917,drugs,1407294951 +26125,96917,Elisabeth Shue,1407294950 +26125,96917,Jennifer Lawrence,1407294599 +26125,96917,psycho,1407294951 +26125,96917,psychology,1407294951 +26125,97057,adventure,1410402954 +26125,97057,archaeology,1410402924 +26125,97057,based on a true story,1410402931 +26125,97057,historical,1410402937 +26125,97057,raft,1410402966 +26125,97057,sailing,1410402951 +26125,97057,sea,1410402971 +26125,97673,7n Up (series),1396416275 +26125,97673,british accents,1396416483 +26125,97673,england,1396416483 +26125,97673,histography,1396416483 +26125,97923,addiction,1400209086 +26125,97923,airplane,1400209075 +26125,97923,alcoholism,1400209083 +26125,97923,Atlanta,1400209138 +26125,97923,flying,1400209095 +26125,97923,Georgia,1400209145 +26125,97923,pilot,1400209155 +26125,97923,plane crash,1400209134 +26125,97923,unpredictable ending,1400209103 +26125,97938,animals,1363660456 +26125,97938,boat,1363660420 +26125,97938,flashbacks,1363660377 +26125,97938,great photograpy,1363660368 +26125,97938,ocean,1363660391 +26125,97938,religion,1363660561 +26125,97938,religious overtones,1363660449 +26125,97938,spiritual journey,1363660382 +26125,97938,surreal,1363660398 +26125,97938,tigers,1363660474 +26125,97938,visual effects,1363660467 +26125,99145,brother-brother relationship,1446315072 +26125,99145,Christmas,1446315032 +26125,99145,death,1446315096 +26125,99145,disaster,1446315059 +26125,99145,father-son relationship,1446315069 +26125,99145,hospital,1446315125 +26125,99145,hotel,1446315053 +26125,99145,natural disaster,1446315021 +26125,99145,ocean,1446315088 +26125,99145,real story,1446315079 +26125,99145,reunion,1446315111 +26125,99145,Thailand,1446315046 +26125,99145,travel,1446315107 +26125,99145,tsunami,1446315134 +26125,99145,vacation,1446315039 +26125,99906,art,1407129599 +26125,99906,France,1407129599 +26125,99906,Nudity (Topless),1407129598 +26125,99906,old man,1407129599 +26125,99906,renoir,1407129599 +26125,100302,beautiful,1398223249 +26125,100302,evil corporation,1398223201 +26125,100302,forbidden love,1398223241 +26125,100302,physics,1398223233 +26125,100302,suspension of disbelief required,1398223209 +26125,100302,visually appealing,1398223222 +26125,100383,business,1402378708 +26125,100383,corruption,1402378705 +26125,100383,doctors,1402378737 +26125,100383,drugs,1402378682 +26125,100383,insider Trading,1402378751 +26125,100383,medications,1402378731 +26125,100383,New York,1402378724 +26125,100383,psychology,1402378685 +26125,100383,responsibility,1402378712 +26125,100383,slow start,1402378742 +26125,100383,twist,1402378694 +26125,100383,twist ending,1402378689 +26125,100383,twists,1402378697 +26125,100611,aliens,1391396337 +26125,101070,bicycle,1397271285 +26125,101070,culture,1397271285 +26125,101070,Islam,1397271114 +26125,101070,koran,1397271285 +26125,101070,religion,1397271084 +26125,101070,Saudi Arabia,1397271094 +26125,101070,sexism,1397271285 +26125,101070,subtitles,1397271285 +26125,101106,music business,1420913531 +26125,101106,musicians,1420913528 +26125,101106,rock and roll,1420913537 +26125,101142,family,1391395078 +26125,101142,inventor,1391395082 +26125,101142,prehistoric,1391395097 +26125,101207,Douglas MacArthur,1402979733 +26125,101207,emperor,1402979733 +26125,101207,japan,1402979732 +26125,101207,pearl harbor,1402979733 +26125,101207,reconstruction,1402979732 +26125,101207,soldiers,1402979732 +26125,101207,war,1402979733 +26125,101207,war crimes,1402979732 +26125,101207,wwII,1402979733 +26125,101249,cuts,1410754311 +26125,101249,hollywood,1410754310 +26125,101249,kidnapping,1410754310 +26125,101249,psycho,1410754310 +26125,101577,alien invasion,1393986668 +26125,101577,host body,1393986701 +26125,101577,utah,1393986894 +26125,101612,adoption,1397095136 +26125,101612,birth parent,1397095137 +26125,101612,boring,1397095064 +26125,101612,college,1397095137 +26125,101612,genius,1397095137 +26125,101612,ivy league,1397095137 +26125,101612,plot twist,1397095060 +26125,101612,university,1397095137 +26125,102072,Belgium,1400124741 +26125,102072,black ops,1400124704 +26125,102072,Brussels,1400124719 +26125,102072,CIA,1400124712 +26125,102072,father daughter relationship,1400124741 +26125,102072,spy,1400124708 +26125,102194,coming of age,1396059761 +26125,102194,fugitive,1396059804 +26125,102194,Mississippi,1396060159 +26125,102194,Mississippi River,1396060159 +26125,102194,powerful,1396060076 +26125,102194,Southern US,1396059756 +26125,102407,1920s,1395625884 +26125,102407,based on a book,1395625899 +26125,102407,jazz,1395625858 +26125,102407,New York City,1395625906 +26125,102407,Period piece,1395625864 +26125,102407,stylish,1395625880 +26125,102588,adultery,1403671870 +26125,102588,father daughter relationship,1403671870 +26125,102588,illegitimate child,1403671870 +26125,102588,lack of morals,1403671870 +26125,102588,marriage,1403671870 +26125,102588,real,1403671870 +26125,102588,slut,1403671870 +26125,102792,atheism,1397446770 +26125,102792,emotional,1397446775 +26125,102792,relationships,1397446795 +26125,102792,religion,1397446808 +26125,102956,grand canyon,1446872137 +26125,102956,las vegas,1446872137 +26125,102956,roadtrip,1446872137 +26125,102956,taxi,1446872137 +26125,102956,taxi driver,1446872137 +26125,102978,africa,1429376688 +26125,102978,death,1429376668 +26125,102978,Hilary Swank,1429376661 +26125,102978,malaria,1429376663 +26125,103249,chase scenes,1402722470 +26125,103249,child actors,1402722459 +26125,103249,infection,1402722402 +26125,103249,Israel,1402722422 +26125,103249,pandemic,1402722462 +26125,103249,United Nations,1402722395 +26125,103249,USA,1402722479 +26125,103249,WHO,1402722485 +26125,103249,zombies,1402722412 +26125,103306,boring,1397094245 +26125,103306,europa,1397094280 +26125,103306,jupiter,1397094234 +26125,103306,low budget,1397094222 +26125,103306,space,1397094211 +26125,103306,visually stunning,1397094208 +26125,103335,crude humor,1391395704 +26125,103335,family,1391395728 +26125,103539,Athens GA,1405049119 +26125,103539,Atlanta GA,1405049111 +26125,103539,character driven,1405049049 +26125,103539,coming of age,1405049062 +26125,103539,complex,1405049080 +26125,103539,drinking,1405049067 +26125,103539,drugs,1405049071 +26125,103539,dysfunctional family,1405049041 +26125,103539,high school,1405049093 +26125,103539,raw,1405049124 +26125,103539,realistic,1405049097 +26125,103539,teenagers,1405049052 +26125,103539,weird,1405049087 +26125,103541,addiction,1412488443 +26125,103541,sex addiction,1412488444 +26125,103541,support group,1412488444 +26125,103755,racing,1391395396 +26125,103755,talking animals,1391395392 +26125,104337,african-american,1391395212 +26125,104337,biased,1391395212 +26125,104337,president; butler,1391395212 +26125,104374,charming,1396503960 +26125,104374,family bonds,1396503998 +26125,104374,family relationships,1396503951 +26125,104374,original,1396503968 +26125,104374,Rachel McAdams,1396503982 +26125,104374,time travel,1396503672 +26125,104829,autism,1435090686 +26125,104829,quirky,1435090667 +26125,105468,animated,1397353705 +26125,105468,food,1397353702 +26125,105468,inventor,1397353709 +26125,105468,predictable,1397353903 +26125,105468,sequel,1397353719 +26125,105504,believable,1391566081 +26125,105504,captain,1391566103 +26125,105504,crime,1391566074 +26125,105504,hijacking,1391566098 +26125,105504,Navy seals,1391566126 +26125,105504,ocean,1391566077 +26125,105504,pirates,1391566059 +26125,105504,ship,1391566108 +26125,105504,Somalia,1391566088 +26125,105504,suspense,1391566066 +26125,105504,tense,1391566095 +26125,105504,true story,1391566040 +26125,105731,based on a book,1413262886 +26125,105731,remake,1413262898 +26125,105731,Stephen King,1413262816 +26125,105731,unnecessary remake,1413262892 +26125,106200,death,1395625699 +26125,106200,struggle,1395625695 +26125,106240,talking animals,1392513217 +26125,106240,Thanksgiving,1392513187 +26125,106240,time travel,1392513197 +26125,106240,watch the credits,1392513208 +26125,106438,atheism,1397359078 +26125,106438,christianity,1397359091 +26125,106438,corruption,1397359098 +26125,106540,parenthood,1396669553 +26125,106540,sperm donor,1396669542 +26125,106540,Vince Vaughn,1396669546 +26125,106696,Disney,1391395622 +26125,106696,royalty,1391395618 +26125,106696,siblings,1391395628 +26125,106841,bleak atmosphere,1392513100 +26125,106841,dreary,1392513103 +26125,106841,family drama,1392513107 +26125,106841,humorless,1392513119 +26125,106841,mother daughter relationship,1392513093 +26125,106841,secrets,1392513089 +26125,106916,70s,1401337186 +26125,106916,amy adams,1401337196 +26125,106916,based on a true story,1401337132 +26125,106916,con artists,1401337113 +26125,106916,Cons,1401337254 +26125,106916,corruption,1401337148 +26125,106916,lack of development,1401337157 +26125,106916,long,1401337227 +26125,106916,mobster,1401337233 +26125,106916,New Jersey,1401337127 +26125,106916,Park Avenue,1401337222 +26125,106916,politics,1401337137 +26125,106916,Predictable,1401337201 +26125,106916,Scams,1401337268 +26125,106916,Slow,1401337263 +26125,106916,slow paced,1401337208 +26125,106916,soundtrack,1401337242 +26125,106918,Afghanistan,1398390699 +26125,106918,Greenland,1398389186 +26125,106918,Iceland,1398390385 +26125,106918,imagination,1398390432 +26125,106918,inspirational,1398390489 +26125,106918,magazines,1398390418 +26125,106918,mother-son relationship,1398390541 +26125,106918,New York City,1398390519 +26125,106918,photographer,1398389223 +26125,106918,photography,1398390398 +26125,106918,positive thinking,1398390426 +26125,106918,remake,1398390552 +26125,106918,scenic,1398390366 +26125,106918,surreal,1398390441 +26125,106918,travel,1398390557 +26125,106918,workplace,1398390373 +26125,106920,artificial intelligence,1404012848 +26125,106920,bittersweet,1404012900 +26125,106920,dystopia,1404012896 +26125,106920,expository dialogue,1404012961 +26125,106920,Human Computer Interaction,1404012866 +26125,106920,letters,1404012928 +26125,106920,loneliness,1404012669 +26125,106920,love,1404012945 +26125,106920,meaning of life,1404012880 +26125,106920,original,1404012852 +26125,106920,original plot,1404012680 +26125,106920,philosophical,1404012871 +26125,106920,predictable,1404012972 +26125,106920,psychology,1404012672 +26125,106920,quirky,1404012885 +26125,106920,sad,1404012996 +26125,106920,sci-fi,1404012906 +26125,106920,thought-provoking,1404012663 +26125,106920,transhumanism,1404012938 +26125,107141,Disney,1427591179 +26125,107141,historical,1427591140 +26125,107141,movie business,1427591092 +26125,107141,Tom Hanks,1427591198 +26125,107141,true story,1427591162 +26125,107348,news,1440880822 +26125,107348,sequel,1440880830 +26125,107348,silly,1440880841 +26125,107348,Steve Carell,1440880815 +26125,107348,stupid but funny,1440880812 +26125,107348,will ferrell,1440880818 +26125,108188,Action,1401335855 +26125,108188,Bad computing,1401335860 +26125,108188,predictable,1401335873 +26125,108190,anti-intellectual,1408074483 +26125,108190,bad writing,1408074493 +26125,108190,dystopia,1408074473 +26125,108190,long,1408074570 +26125,108190,predictable,1408074548 +26125,108190,pretentious,1408074515 +26125,108190,surreal,1408074487 +26125,108190,The Chosen One,1408074565 +26125,108729,actors,1394255996 +26125,108729,adultery,1394255996 +26125,108729,confusing,1394255996 +26125,108729,doppleganger,1394255996 +26125,108729,pregnancy,1394255996 +26125,108729,professor,1394255996 +26125,108729,spiders,1394255996 +26125,108780,Escaped Convict,1431524560 +26125,108780,Kate Winslet,1431524550 +26125,108780,Single Mother,1431524572 +26125,108928,action,1404440384 +26125,108928,art,1404440471 +26125,108928,based on a true story,1404440301 +26125,108928,Bill Murray,1404440378 +26125,108928,George Clooney,1404440314 +26125,108928,John Goodman,1404440431 +26125,108928,matt damon,1404440310 +26125,108928,Nazis,1404440471 +26125,108928,sad,1404440424 +26125,108928,WWII,1404440471 +26125,108932,anti-conformity,1405043675 +26125,108932,Batman,1405043630 +26125,108932,cheesy,1405043681 +26125,108932,conformity,1405043639 +26125,108932,dictatorship,1405043644 +26125,108932,inventor,1405043666 +26125,108932,Morgan Freeman,1405043633 +26125,108932,rebellion,1405043619 +26125,108932,stop motion,1405043614 +26125,108932,The Chosen One,1405043692 +26125,108983,moon,1420914031 +26125,108983,Pixar,1420914008 +26125,108983,short,1420914002 +26125,109191,consumption,1404954842 +26125,109191,fantasy,1404954842 +26125,109191,magical horse,1404954842 +26125,109191,New York City,1404954842 +26125,109191,satan,1404954842 +26125,109191,thief,1404954842 +26125,109191,tuberculosis,1404954842 +26125,109569,CIA Agent,1403321338 +26125,109569,father daughter relationship,1403321338 +26125,109569,France,1403321338 +26125,109569,Kevin Costner,1403321338 +26125,109687,collider,1447215962 +26125,109687,higgs,1447215960 +26125,109687,physics,1447215974 +26125,109687,science,1447215966 +26125,110273,France,1447299432 +26125,110273,French,1447299909 +26125,110273,Paris,1447299436 +26125,110273,World War II,1447299439 +26125,110286,autism,1407129406 +26125,110286,crime,1407129406 +26125,110286,game,1407129406 +26125,110286,greed,1407129406 +26125,110286,predictable,1407129406 +26125,110286,stupid people,1407129355 +26125,110603,Christianity,1408773484 +26125,110603,religion,1408773487 +26125,110730,artificial intelligence,1406344190 +26125,110730,computers,1406344375 +26125,110730,consciousness,1406344376 +26125,110730,cyborgs,1406344198 +26125,110730,future,1406344375 +26125,110730,internet,1406344375 +26125,110730,Johnny Depp,1406344194 +26125,110730,Morgan Freeman,1406344375 +26125,110730,playing God,1406344376 +26125,110765,both in spanish and english,1401419962 +26125,110765,immigration,1401425453 +26125,110765,mariachi band,1401425453 +26125,110765,Mexico,1401420020 +26125,110765,must be bilingual to watch,1401419981 +26125,110765,no subtitles,1401420185 +26125,110968,disaster,1401586605 +26125,110968,natural disaster,1401586614 +26125,110968,volcano,1401586617 +26125,111659,Angelina Jolie,1420474122 +26125,111659,betrayal,1420474164 +26125,111659,Disney,1420474154 +26125,111659,fairy tale,1420474125 +26125,111659,happy ending,1420474160 +26125,111659,narrated,1420474139 +26125,111659,rated pg,1420474174 +26125,111659,sleeping beauty,1420474171 +26125,111659,twist ending,1420474130 +26125,111778,australia,1433110829 +26125,111778,based on a true story,1433110836 +26125,111778,beautiful,1433110849 +26125,111778,female lead,1433110833 +26125,111778,survival,1433110842 +26125,111778,wilderness,1433110853 +26125,111872,african american,1411961612 +26125,111872,attorney,1411961612 +26125,111872,relationships,1411961612 +26125,112085,cyberattack,1407731523 +26125,112085,environmental wackos,1407731568 +26125,112085,liberal idiots,1407731497 +26125,112085,post-apocalyptic,1407731472 +26125,112085,potheads,1407731608 +26125,112085,preppers,1407731534 +26125,112087,fantasy,1446315518 +26125,112087,mind bending,1446315521 +26125,112596,bullies,1411006055 +26125,112596,depressing,1411006055 +26125,112596,head injury,1411006055 +26125,112596,love triangle,1411006055 +26125,112868,aliens,1421418383 +26125,112868,annoying teens,1421418368 +26125,112868,stupid ending,1421418394 +26125,113378,based on a book,1419006990 +26125,113378,cerebral,1419007016 +26125,113378,dystopian future,1419006985 +26125,113378,Jeff Bridges,1419006996 +26125,113378,Meryl Streep,1419007005 +26125,113378,utopia,1419006979 +26125,113378,Utopian society,1419007021 +26125,114028,queer,1446431406 +26125,115231,Alzheimer's disease,1424556869 +26125,115231,Bill Murray,1424556805 +26125,115231,gambling,1424556870 +26125,115231,horse racing,1424556869 +26125,115231,neighbor,1424556870 +26125,115231,saints,1424556870 +26125,115414,apocalypse,1421418431 +26125,115414,Christianity,1421418428 +26125,115414,religion,1421418440 +26125,115680,future,1446315333 +26125,115680,thriller,1446315329 +26125,115680,time travel,1446315309 +26125,115680,unique story,1446315319 +26125,116155,death,1433110530 +26125,116155,depressing,1433110530 +26125,116397,Ben Kingsley,1440881310 +26125,116397,mental illness,1440881313 +26125,116797,Academy Award Nominee,1433110123 +26125,116797,Alan Turing,1433110011 +26125,116797,autism,1433110037 +26125,116797,code breaking,1433110042 +26125,116797,Computers,1433110008 +26125,116797,cryptography,1433110020 +26125,116797,England,1433110077 +26125,116797,gay propaganda,1433110150 +26125,116797,historical drama,1433110051 +26125,116797,historical inaccuracy,1433110029 +26125,116797,homosexuality,1433110046 +26125,116797,imdb top 250,1433110082 +26125,116797,Keira Knightley,1433110058 +26125,116797,LGBT,1433110023 +26125,116797,London,1433110110 +26125,116797,mathematicians,1433110086 +26125,116797,mathematics,1433110014 +26125,116797,self-important,1433110069 +26125,116797,World War II,1433110033 +26125,116887,biblical,1419872661 +26125,116887,egypt,1419872661 +26125,116887,exodus,1419872661 +26125,116887,inaccurate,1419872661 +26125,116887,moses,1419872661 +26125,116887,Ridley Scott,1419872592 +26125,117176,biography,1427592386 +26125,117176,physics,1427592365 +26125,117176,science,1427592394 +26125,117176,Stephen Hawking,1427592377 +26125,117344,forest,1433110431 +26125,117344,monster,1433110440 +26125,117344,Norway,1433110434 +26125,117344,Viking,1433110425 +26125,117861,african american,1431524208 +26125,117861,biracial character,1431524209 +26125,117861,granddaughter,1431524209 +26125,117861,grandfather,1431524208 +26125,117861,Kevin Coster,1431524209 +26125,118700,Academy Award Nominee,1431524240 +26125,118700,african americans,1431524285 +26125,118700,Alabama,1431524256 +26125,118700,civil rights,1431524285 +26125,118700,history,1431524228 +26125,118700,Martin Luther King Jr.,1431524235 +26125,118700,police brutality,1431524232 +26125,118700,racism,1431524245 +26125,121129,parody,1449771389 +26125,122699,Little Rascals,1427591713 +26125,122884,demon,1446314577 +26125,122884,devil,1446314574 +26125,122884,father-daughter relationship,1446314568 +26125,122884,paranormal investigators,1446314553 +26125,122892,a.i.,1446314931 +26125,122892,artificial intelligence,1446314936 +26125,122892,Captain America,1446314891 +26125,122892,comic book,1446314894 +26125,122892,comics,1446314920 +26125,122892,epic battle,1446314883 +26125,122892,iron man,1446314959 +26125,122892,Marvel,1446314876 +26125,122892,non-stop action,1446314898 +26125,122892,nothing more than stupid reason for action movie,1446314910 +26125,122892,super hero,1446314978 +26125,122892,superhero,1446314880 +26125,122892,technology,1446314971 +26125,122892,The Avengers,1446314982 +26125,122900,adapted from:comic,1451791121 +26125,122900,ants,1451791079 +26125,122900,burglary,1451791103 +26125,122900,comic book,1451791074 +26125,122900,comics,1451791144 +26125,122900,heist,1451791091 +26125,122900,Marvel,1451791064 +26125,122900,Michael Douglas,1451791048 +26125,122900,San Francisco,1451791131 +26125,122900,super strength,1451791151 +26125,122900,superhero,1451791060 +26125,122900,superheroes,1451791052 +26125,122900,vault,1451791139 +26125,125543,airplane crash,1429376481 +26125,125543,based on a true story,1429376481 +26125,125543,lifeboat,1429376481 +26125,125543,military,1429376481 +26125,125543,no females,1429376481 +26125,125543,sharks,1429376481 +26125,125543,survival,1429376481 +26125,125543,WWII,1429376481 +26125,127096,low budget,1440881092 +26125,127096,time travel,1440881095 +26125,127202,terminal illness,1446314323 +26125,127218,end of the world,1450846615 +26125,127218,love triangles,1450846428 +26125,127218,post-apocalyptic,1450846432 +26125,127218,survival,1450846615 +26125,128512,quirky,1446314477 +26125,128512,road trip,1446314449 +26125,128512,Young Adult,1446314439 +26125,129707,resurrection,1440880507 +26125,130073,Cinderella,1427591985 +26125,130073,unoriginal,1427591985 +26125,130087,adam sandler,1440881255 +26125,130087,shoes,1440881256 +26125,130496,Morgan Freeman,1433110399 +26125,130496,president,1433110399 +26125,130496,secret service,1433110400 +26125,132046,alternate reality,1440881286 +26125,132157,segwat,1440880210 +26125,132157,sequel,1440880188 +26125,132480,harrison ford,1446315202 +26125,132480,predictable,1446315209 +26125,132796,Disaster,1446314800 +26125,132796,earthquake,1446314803 +26125,132796,Formulaic,1446314812 +26125,132796,natural disaster,1446314796 +26125,132796,predictable,1446314829 +26125,133798,police,1446315581 +26125,133798,Texas,1446315584 +26125,134130,cheesy ending,1446314154 +26125,134130,mars,1446314062 +26125,134130,matt damon,1446314103 +26125,134130,NASA,1446314078 +26125,134130,Near Future,1446314125 +26125,134130,realistic,1446314168 +26125,134130,scientific,1446314109 +26125,134130,Space,1446314084 +26125,134130,space program,1446314070 +26125,134130,space travel,1446314129 +26125,134130,stranded hero,1446314096 +26125,134130,Survival Instinct,1446314066 +26125,134158,nurse,1447215905 +26125,134158,rape,1447215905 +26125,134158,revenge,1447215905 +26125,134246,Milla Jovovich,1440881052 +26125,134629,airplane,1440880453 +26125,134629,Nazis,1440880453 +26125,134629,time travel,1440880454 +26125,134629,unbelievable,1440880453 +26125,134629,World War II,1440880453 +26125,134853,Animation,1446314719 +26125,134853,cartoon,1446314701 +26125,134853,emotion,1446314754 +26125,134853,feminism,1446314707 +26125,134853,hockey,1446314634 +26125,134853,introspective,1446314692 +26125,134853,melancholic,1446314640 +26125,134853,Pixar,1446314645 +26125,134853,psychology,1446314653 +26125,140088,escape,1452146781 +26125,140088,holocaust,1452146781 +26125,140088,jews,1452146781 +26125,140088,long lost love,1452146781 +26125,140088,nazis,1452146781 +26125,140088,poland,1452146781 +26125,140088,survival,1452146781 +26125,141902,depressing,1446874387 +26125,141902,mental illness,1446874387 +26174,80489,heist,1336743341 +26186,59315,Robert Downey Jr,1226858804 +26187,260,crack,1438793904 +26187,260,spaceshit,1438793875 +26274,3760,Crude but pivotal,1137551079 +26274,7451,suprisingly clever,1137551039 +26274,7451,without annoying montages,1137551039 +26281,45447,Mystery,1252307925 +26281,48774,based on a book,1170068581 +26289,908,Cary Grant,1450041545 +26289,911,Human Heritage,1450041378 +26296,114180,dystopia,1442297253 +26296,114180,post-apocalyptic,1442297256 +26296,114180,survival,1442297258 +26315,119145,humour,1447529449 +26315,134368,comedy,1447529428 +26315,134368,feminist,1447529438 +26315,138036,humour,1447529520 +26319,56333,seeout,1207511101 +26348,260,oldie but goodie,1436842011 +26348,260,space adventure,1436842026 +26348,134853,family,1436888338 +26348,134853,fun,1436888338 +26348,134853,kids,1436888338 +26355,260,Boring,1440894575 +26355,1527,dystopic future,1440894738 +26355,1527,futuristic,1440894732 +26355,1527,visually appealing,1440894734 +26355,5445,dystopia,1440894658 +26355,5445,futuristic,1440894663 +26355,5445,Precognition,1440894698 +26355,5445,surreal,1440894688 +26355,5445,time loop,1440894668 +26355,5445,time travel,1440894694 +26370,356,emotional,1446824501 +26370,356,great acting,1446824487 +26402,260,EPIC,1437790714 +26402,260,must see,1437790760 +26412,260,Awesome,1437883962 +26412,260,exciting,1437883976 +26423,750,nuclear war,1325321944 +26423,750,satire,1325321972 +26423,750,Stanley Kubrick,1325321940 +26423,56336,henry rollins,1233696897 +26423,57368,cgi,1376126487 +26423,57368,giant monster,1376126483 +26423,57368,Giant Monster eat city,1376126494 +26423,57368,mockumentary,1376126472 +26423,57368,New York City,1376126474 +26423,57368,shaky camera,1376126479 +26423,71205,Megan Fox,1375982058 +26423,71205,not scary,1375982072 +26423,71205,sexy,1375982068 +26423,82461,soundtrack,1302681778 +26423,88163,comedy,1375041663 +26423,88163,Ryan Gosling,1375041644 +26423,88163,Steve Carell,1375041646 +26423,96488,intrigue,1378151582 +26423,96488,Music,1378151535 +26423,96488,Sixto Rodriguez,1378151527 +26423,96488,soundtrack,1378151543 +26423,96488,vintage effects,1378151558 +26423,101864,atmospheric,1379751356 +26423,101864,cloning,1379751342 +26423,101864,dystopia,1379751342 +26423,101864,twists & turns,1379751349 +26423,101864,weird ending,1379751345 +26423,102407,1920s,1374139788 +26423,102407,beautiful,1374139799 +26423,102407,Clothing,1374139803 +26423,102407,Leonardo DiCaprio,1374139777 +26423,102407,modern music,1374139775 +26423,103626,acting,1374136436 +26423,103626,camerawork,1374136403 +26423,103626,drugs,1374136431 +26423,103626,intro credits,1374136425 +26423,103626,story,1374136431 +26423,103629,acting,1374139161 +26423,103629,actors,1374139161 +26423,103629,midsummer,1374139161 +26423,103629,story,1374139161 +26423,103631,setting:Riga,1374139377 +26423,103631,soundtrack,1374139385 +26423,106918,Greenland,1394369627 +26423,106918,Iceland,1394369616 +26423,106918,imagination,1394369639 +26423,106918,inspirational,1394369631 +26423,106918,photographer,1394369652 +26423,106918,positive thinking,1394369645 +26423,106918,scenic,1394369643 +26423,106918,visually appealing,1394369654 +26423,108928,cast,1394369758 +26423,109374,cinematography,1399228569 +26423,109374,visually appealing,1399228559 +26423,109374,Wes Anderson,1399228565 +26423,109374,Willem Dafoe,1399228563 +26423,115210,Brad Pitt,1417273785 +26423,115210,ending,1417273777 +26450,2427,cult classic,1142859060 +26452,1,Pixar,1321832307 +26452,3114,Pixar,1321832300 +26452,6539,Johnny Depp,1321832311 +26452,48394,surreal,1321832319 +26452,60069,Pixar,1321832274 +26452,68954,Pixar,1321832289 +26452,78499,Pixar,1321832303 +26461,260,classic,1434250717 +26461,260,EPIC,1434250697 +26461,260,Science Fiction,1434250660 +26467,260,jedi,1437366279 +26467,260,sci-fi,1437366269 +26468,2167,action,1439754470 +26468,2167,vampires,1439754467 +26474,2232,intense,1438128566 +26474,2232,psychological,1438128556 +26474,48780,enigmatic,1437693991 +26474,48780,twist ending,1437693974 +26515,260,70s,1438815403 +26515,260,sci-fi,1438815384 +26515,260,space opera,1438815378 +26515,1214,horror,1438815754 +26515,111362,based on a comic,1438815819 +26540,344,not funny,1189583305 +26552,3471,Classic,1143594955 +26552,3471,especially the mashed potato mountain.,1143594955 +26571,5008,movie to see,1231539206 +26594,34437,Bill Murray,1445816275 +26594,38886,awkward,1445815857 +26594,38886,childhood,1445815861 +26594,38886,smart comedy,1445815848 +26603,2105,hackers,1443910783 +26603,3578,rome,1443910705 +26603,3578,Russell Crowe,1443910732 +26603,96610,time travel,1443910871 +26623,593,horror,1430842551 +26623,593,scary,1430842551 +26623,593,suspense,1430842551 +26631,260,space,1438619548 +26631,260,Star Wars,1438619553 +26631,1076,ghosts,1438620889 +26631,123591,Comedy,1438774825 +26631,123591,Horror,1438774819 +26631,123591,Scary,1438774822 +26641,260,EPIC,1443926262 +26641,260,sci-fi,1443926252 +26664,2959,bloody,1305981325 +26664,2959,Brad Pitt,1305981296 +26664,2959,psychological thriller,1305981296 +26669,276,comedy,1266236332 +26673,260,scifi cult,1431448168 +26673,260,"sf,science fiction",1431448200 +26673,260,space travel,1431448185 +26703,260,neard,1444845975 +26703,260,sci-fi,1444845980 +26715,37837,gay friend,1445108812 +26715,37837,Gay Lead Character,1445108802 +26715,59549,gay relationship,1445108578 +26715,59549,gay romance,1445108574 +26715,59549,homosexuality,1445108570 +26715,59549,lgbt,1445108583 +26715,105355,lesbian,1445108867 +26715,108789,boyfriend boyfriend relationship,1445108700 +26715,108789,Gay Lead Character,1445108687 +26715,108789,gay romance,1445108692 +26715,122882,feminism,1445108140 +26726,92259,enthusiasm,1442121018 +26726,92259,friendship,1442120957 +26728,134853,bittersweet,1438213771 +26728,134853,coming of age,1438213771 +26728,134853,emotional intelligence,1438213771 +26732,260,action,1432061029 +26732,260,Science Fiction,1432061036 +26747,260,classic,1444621419 +26747,260,sci-fi,1444621428 +26800,84116,beautiful,1431747417 +26800,84116,deep,1431747417 +26800,84116,gentle,1431747417 +26800,113225,cute,1433549898 +26800,113225,emma stone,1433549898 +26800,113225,simple,1433549898 +26800,114265,cute,1429586158 +26800,114265,not dumb,1429586158 +26800,114265,romantic,1429586158 +26801,26819,so bad it's good,1139588986 +26810,260,Epic,1443926369 +26811,2918,best movie ever made,1138243110 +26814,260,sci-fi,1432775274 +26814,260,universe,1432775292 +26856,2571,computers,1440689851 +26856,2571,hackers,1440689857 +26856,2571,sci-fi,1440689835 +26856,2959,Brad Pitt,1440689975 +26856,2959,thought-provoking,1440690001 +26856,4226,nonlinear,1440689934 +26856,4226,storytelling,1440689944 +26912,84954,Philip K. Dick,1445117221 +26935,2628,Ewan McGregor,1449428600 +26935,2628,Jar Jar Binks,1449428614 +26935,2628,robots,1449428608 +26935,5445,sci-fi,1449428539 +26935,5445,Tom Cruise,1449428551 +26935,120466,AI,1449428701 +26935,120466,artificial intelligence,1449428716 +26935,120466,robots,1449428698 +26942,5682,based on a book,1389236803 +26942,5682,Holocaust,1389236796 +26942,5682,Jews,1389236799 +26942,5682,The Shoah,1389236794 +26942,5682,World War II,1389236792 +26942,26446,documentary,1389237277 +26942,26446,Holocaust,1389237167 +26942,26446,Oscar (Best Picture),1389237308 +26942,26446,WWII,1389237257 +26942,58303,based on a book,1389236675 +26942,58303,end of war,1389236711 +26942,58303,ethical dilemma,1389236687 +26942,58303,Holocaust,1389236668 +26942,58303,Nudity (Topless - Brief),1389236695 +26942,58303,Nudity (Topless),1389236693 +26942,58303,thought-provoking,1389236679 +26942,58303,true story,1389236662 +26942,58303,World War II,1389236666 +26942,64034,Holocaust,1389235497 +26942,64034,World War II,1389235507 +26942,65188,documentary,1389235677 +26942,65188,Netflix Streaming,1389235683 +26942,65188,political reform,1389235692 +26942,65188,touching,1389235708 +26942,65188,true story,1389235674 +26960,47,Brad Pitt,1161582995 +26960,47,crime,1161582991 +26960,47,serial killer,1161582989 +26960,47,thriller,1161583002 +27000,70286,aliens,1448546180 +27000,70286,humor,1448546183 +27000,70286,social commentary,1448546177 +27000,88744,sci-fi,1448546152 +27030,260,fantasy,1435504331 +27030,260,good and evil,1435504331 +27030,260,spaceships,1435504331 +27030,541,atmospheric,1435504475 +27030,541,cyberpunk,1435504472 +27030,541,futuristic,1435504493 +27030,648,espionage,1450202048 +27030,648,plot twists,1450202041 +27030,648,spies,1450202045 +27030,1097,aliens,1436980670 +27030,1097,emotional,1436980674 +27030,1097,sci-fi,1436980676 +27030,1127,first contact,1436379272 +27030,1127,sci-fi,1436379270 +27030,1127,thought-provoking,1436379274 +27030,1198,action,1436379590 +27030,1198,adventure,1436379588 +27030,1198,archaeology,1436379588 +27030,1291,action,1436379329 +27030,1291,Adventure,1436379328 +27030,1291,archaeology,1436379326 +27030,1584,first contact,1436721442 +27030,1584,inspirational,1436721439 +27030,1584,sci-fi,1436721434 +27030,1584,space travel,1436721436 +27030,1704,excellent script,1435593087 +27030,1704,genius,1435593081 +27030,1704,inspirational,1435593094 +27030,1704,psychology,1435593083 +27030,2076,sexuality,1441558060 +27030,2076,strange,1441558073 +27030,2076,voyeurism,1441558071 +27030,2076,weird,1441558051 +27030,2194,gangsters,1450388008 +27030,2194,mafia,1450388021 +27030,2579,black and white,1435504079 +27030,2579,Christopher Nolan,1435504083 +27030,2579,psychology,1435504077 +27030,2579,Twist Ending,1435504234 +27030,2762,Atmospheric,1435522081 +27030,2762,great ending,1435522078 +27030,2762,twist ending,1435522076 +27030,3300,atmospheric,1436379105 +27030,3300,sci-fi,1436379103 +27030,3300,stranded,1436379102 +27030,4226,twist ending,1435504052 +27030,8783,Atmospheric,1439018067 +27030,8783,secrets,1439018070 +27030,8783,surprise ending,1439018072 +27030,8783,thought-provoking,1439018074 +27030,8783,twist ending,1439018063 +27030,8950,memory,1435504201 +27030,8950,psychology,1435504196 +27030,8950,schizophrenia,1435504199 +27030,8950,twist ending,1435504195 +27030,31696,gothic,1441905599 +27030,31696,mythology,1441905607 +27030,31696,spiritual warfare,1441905595 +27030,31696,supernatural,1441905597 +27030,44199,intelligent thriller,1436946671 +27030,44199,twist ending,1436946668 +27030,46578,dark comedy,1436864622 +27030,46578,feel-good,1436864633 +27030,46578,hilarious,1436864644 +27030,46578,inspirational,1436864640 +27030,46578,off-beat comedy,1436864628 +27030,46578,satire,1436864629 +27030,48774,apocalypse,1435504434 +27030,48774,end of the world,1435504418 +27030,48774,Michael Caine,1435504427 +27030,48774,survival,1435504431 +27030,48780,Christian Bale,1435504102 +27030,48780,Christopher Nolan,1435504121 +27030,48780,complicated,1435504109 +27030,48780,dark,1435504111 +27030,48780,great ending,1435504123 +27030,48780,Michael Caine,1435504114 +27030,48780,psychological,1435504108 +27030,48780,twist ending,1435504100 +27030,60037,disaster,1439018141 +27030,60037,end of the world,1439018131 +27030,60037,epidemic,1442765898 +27030,60037,survival,1439018134 +27030,64957,bittersweet,1446388185 +27030,64957,life & death,1446388184 +27030,64957,original plot,1446388177 +27030,74458,atmospheric,1435504184 +27030,74458,ending twist,1435504171 +27030,74458,psychological,1435504165 +27030,74458,twist ending,1435504167 +27030,81562,nature,1438096197 +27030,81562,survival,1438096195 +27030,81562,wilderness,1438096200 +27030,98809,adventure,1449337526 +27030,98809,beautiful scenery,1449337524 +27030,98809,epic,1449337539 +27030,98809,fantasy,1449337531 +27030,98809,fantasy world,1449337528 +27030,98809,Tolkien,1449337533 +27030,101864,atmospheric,1444563556 +27030,101864,dystopia,1444563554 +27030,101864,post-apocalyptic,1436379219 +27030,101864,sci-fi,1436379222 +27030,101864,space,1444563562 +27030,101864,twists & turns,1444563559 +27030,103306,great ending,1436379057 +27030,103306,hard science fiction,1436379052 +27030,103306,space,1436379052 +27030,103306,visually stunning,1436379054 +27030,103972,apocalyptic,1439017957 +27030,103972,dystopia,1439017960 +27030,103972,unexpected,1439017967 +27030,104841,intense,1435504502 +27030,104841,physics,1435504506 +27030,104841,space,1435504500 +27030,104841,visually stunning,1435504508 +27030,113851,drug trade,1442765769 +27030,114847,artificial intelligence,1437595261 +27030,114847,atmospheric,1437595322 +27030,114847,dystopia,1437595253 +27030,114847,intense soundtrack,1437595314 +27030,114847,post-apocalyptic,1437595247 +27030,115149,Hitman,1450891380 +27030,115149,organized crime,1450891392 +27030,115149,stylish,1450891387 +27030,120466,artificial intelligence,1438096137 +27030,120466,cyberpunk,1438096145 +27030,120466,entertaining,1438096151 +27030,120466,robots,1438096140 +27030,122882,post apocalypse,1442260543 +27030,122882,post apocalyptic,1442260553 +27030,122882,visually appealing,1442260549 +27044,1704,excellent script,1441578425 +27044,1704,Matt Damon,1441578413 +27044,1704,Robin Williams,1441578419 +27044,1704,thoughtful,1441578421 +27044,48780,Christian Bale,1441578458 +27044,48780,Hugh Jackman,1441578462 +27044,48780,mystery,1441578465 +27044,48780,thriller,1441578468 +27044,48780,twist ending,1441578473 +27123,527,atmospheric,1352724145 +27123,527,based on a book,1352724178 +27123,527,biography,1352724148 +27123,527,classic,1352724172 +27123,527,disturbing,1352724129 +27123,527,historical,1352724182 +27123,527,history,1352724184 +27123,527,Holocaust,1352724150 +27123,527,imdb top 250,1352724153 +27123,527,Oscar (Best Cinematography),1352724158 +27123,527,Oscar (Best Directing),1352724139 +27123,527,Steven Spielberg,1352724132 +27123,527,thought-provoking,1352724163 +27123,527,true story,1352724135 +27123,527,World War II,1352724166 +27123,750,based on a book,1352723970 +27123,750,Black Comedy,1352723808 +27123,750,Cold War,1352723803 +27123,750,Peter Sellers,1352723797 +27123,750,Satire,1352723816 +27123,904,imdb top 250,1352723977 +27123,1104,Oscar (Best Actress),1352724000 +27123,1104,Oscar (Best Supporting Actor),1352724003 +27123,1125,Accents,1352724488 +27123,1125,Blake Edwards,1352724460 +27123,1125,classic comedy,1352724462 +27123,1125,Clouseau,1352724512 +27123,1125,Disguises,1352724499 +27123,1125,goofy comedy,1352724466 +27123,1125,Inspector Clouseau (series),1352724455 +27123,1125,Peter Sellers,1352724458 +27123,2485,1990s,1352724265 +27123,2485,chick flick,1352724263 +27123,2485,Freddie Prinze Jr.,1352724260 +27123,2485,Kieran Culkin,1352724268 +27123,2485,Matthew Lillard,1352724271 +27123,2485,Rachael Leigh Cook,1352724273 +27123,2485,romance,1352724276 +27123,2485,romantic comedy,1352724290 +27123,2485,teen,1352724281 +27123,2485,teen indulgence,1352724279 +27123,2485,teenagers,1352724283 +27123,3617,funny,1352724390 +27123,3617,National Lampoon,1352724340 +27123,3617,Nudity (Topless - Notable),1352724398 +27123,3617,Nudity (Topless),1352724396 +27123,3617,road trip,1352724404 +27123,3617,robots,1352724375 +27123,3617,Seann William Scott,1352724344 +27123,3617,teen,1352724371 +27123,3617,Todd Phillips,1352724353 +27123,3617,Tom Green,1352724422 +27123,3617,Vinnie Jones,1352724350 +27123,7502,based on a book,1352723988 +27123,7502,true story,1352723985 +27123,7502,World War II,1352723991 +27123,58559,action,1352723994 +27139,150,astronauts,1430443542 +27139,150,space,1430443545 +27139,150,tense,1430443567 +27139,150,tom hanks,1430443551 +27139,150,true story,1430443559 +27139,356,inspiring,1430442319 +27139,356,oscar,1430442308 +27139,356,tom hanks,1430442295 +27139,593,Anthony Hopkins,1430442042 +27139,593,psychothriller,1430441982 +27139,593,scary,1430442076 +27139,2571,philosophical,1430442137 +27139,2571,special effects,1430442153 +27139,2571,thought-provoking,1430442145 +27139,4306,comedy,1430443435 +27139,4306,great animation,1430443446 +27139,4306,hilarious,1430443430 +27139,115713,artificial intelligence,1430442194 +27139,115713,cyborg,1430442235 +27139,115713,philosophical,1430442253 +27139,115713,thought provoking,1430442214 +27157,1236,Adrienne Shelly,1152607512 +27223,260,"action, scifi",1440694728 +27223,260,classic sci-fi,1440694741 +27227,514,exceleent comedy,1171813255 +27227,3087,superb comedy,1171813229 +27240,6870,drama,1445169077 +27240,6870,powerful ending,1445169064 +27240,48394,atmospheric,1445169129 +27240,48394,fantasy,1445169119 +27240,48394,social commentary,1445169135 +27242,296,crass,1435633893 +27242,296,midieval,1435633893 +27242,296,noir,1435633893 +27253,2571,artificial intelligence,1431367815 +27253,2571,cult film,1431367829 +27253,2571,martial arts,1431367841 +27253,2571,philosophical,1431367825 +27253,2571,sci-fi,1431367796 +27253,2571,Special Effects,1431367850 +27253,2571,thought-provoking,1431367838 +27253,2571,virtual reality,1431367806 +27253,7153,fantasy,1431368236 +27253,7153,high fantasy,1431368247 +27253,7153,magic,1431368258 +27253,7153,Peter Jackson,1431368240 +27253,7153,war,1431368252 +27253,7153,wizards,1431368261 +27253,59784,Angelina Jolie,1431367890 +27253,59784,anti-hero,1431367898 +27253,59784,Kung Fu,1431367888 +27253,60069,Animation,1431368202 +27253,60069,family,1431368211 +27253,60069,quirky,1431368194 +27253,60069,robots,1431368196 +27255,3158,china,1167292396 +27255,3158,historical,1167292402 +27255,48394,fantasy,1171606879 +27255,48394,Spanish,1171606870 +27255,48394,Spanish Civil War,1171606859 +27255,49272,James Bond,1190017792 +27281,3936,NOT HORROR!,1368234903 +27281,4750,Seen the movie. Remember nothing.,1367684203 +27281,6872,Uwe Boll Sucks,1367683531 +27281,42721,Uwe Boll,1367683514 +27294,138036,stylish,1446576705 +27313,260,Awesome,1439314788 +27345,1097,aliens,1160604976 +27345,3623,adventure,1160604938 +27345,4161,boring,1160604851 +27358,527,based on a true story,1424142072 +27358,527,biography,1424142112 +27358,527,disturbing,1424142113 +27358,527,holocaust,1424142110 +27358,1625,Mystery,1424141701 +27358,1721,romance,1424141922 +27358,2329,edward norton,1424141449 +27358,2329,emotional,1424141459 +27358,2329,politics,1424141461 +27358,2571,philosophy,1424141098 +27358,2571,post apocalyptic,1424141101 +27358,3949,depressing,1424141547 +27358,3949,psychology,1424141551 +27358,5989,cheating,1424139697 +27358,5989,intelligent,1424139627 +27358,5989,Leonardo DiCaprio,1424139605 +27358,5989,lies,1424139629 +27358,5989,smart,1424139670 +27358,5989,Tom Hanks,1424139608 +27358,5989,twists & turns,1424139659 +27358,8533,memory loss,1424141963 +27358,8533,romance,1424141953 +27358,8533,sad,1424141974 +27358,55765,corruption,1424139519 +27358,55765,Denzel Washington,1424139515 +27358,55765,mafia,1424139559 +27358,55765,organized crime,1424139529 +27358,58295,heist,1424139043 +27358,58295,robbery,1424139058 +27358,58295,small time criminals,1424139056 +27358,69122,casino,1424140307 +27358,69122,comedy,1424140299 +27358,69122,funny,1424140317 +27358,69122,hotel,1424140308 +27358,69122,Las Vegas,1424140298 +27358,69481,war,1424144802 +27358,72998,beautiful scenery,1424140229 +27358,72998,graphic design,1424140242 +27358,72998,music,1424140259 +27358,72998,politics,1424140263 +27358,72998,romance,1424140252 +27358,72998,thought-provoking,1424140286 +27358,72998,too long,1424140237 +27358,72998,visually stunning,1424140233 +27358,79132,big budget,1424140151 +27358,79132,clever,1424140142 +27358,79132,complicated,1424140133 +27358,79132,dead wife,1424140200 +27358,79132,great soundtrack,1424140118 +27358,79132,heist,1424140154 +27358,79132,intellectual,1424140159 +27358,79132,mindfuck,1424140185 +27358,79132,philosophy,1424140124 +27358,79132,psychological,1424140165 +27358,79132,psychology,1424140162 +27358,79132,suspense,1424140144 +27358,79132,thought-provoking,1424140130 +27358,80489,crime,1424139483 +27358,80489,FBI,1424139489 +27358,80489,romance,1424139421 +27358,80489,too much love interest,1424139454 +27358,80906,business,1424461859 +27358,80906,corruption,1424461848 +27358,80906,economics,1424461852 +27358,80906,investor corruption,1424461854 +27358,80906,politics,1424461849 +27358,80906,truth,1424461857 +27358,89745,Captain America,1424140576 +27358,89745,silly,1424140613 +27358,89745,superhero,1424140571 +27358,89745,superhero team,1424140598 +27358,90439,bank,1424141059 +27358,90439,big corporations,1424138651 +27358,90439,business,1424138635 +27358,90439,corruption,1424138654 +27358,90439,financial crisis,1424138667 +27358,90439,Kevin Spacey,1424138645 +27358,90439,realistic,1424138641 +27358,90439,suspense,1424141005 +27358,90439,Wall Street,1424141052 +27358,92259,emotional,1424141413 +27358,92259,sexuality,1424141386 +27358,95067,interesting scenario,1424140932 +27358,95441,crude humor,1424140358 +27358,97304,cia,1424138568 +27358,97304,politics,1424138581 +27358,97304,Thrilling,1424138560 +27358,99114,Soundtrack,1424140415 +27358,104218,Adam Sandler,1424317302 +27358,104841,cliche characters,1424140813 +27358,104841,long shots,1424140806 +27358,104841,predictable,1424140784 +27358,104841,Simple,1424140794 +27358,104841,slow action,1424140827 +27358,104841,visually appealing,1424140838 +27358,105504,hostage,1424141178 +27358,105504,ocean,1424141170 +27358,105504,suspense,1424141149 +27358,106782,Stock Market,1424142693 +27358,106782,Wall Street,1424142688 +27383,22,mystery,1400935232 +27383,22,serial killer,1400935232 +27383,22,suspense,1400935232 +27383,22,thriller,1400935232 +27383,25,addiction,1310370715 +27383,25,alcoholism,1310370713 +27383,25,atmospheric,1310370710 +27383,25,based on a book,1310370708 +27383,25,dark,1310370706 +27383,25,depressing,1310370704 +27383,25,drama,1310370702 +27383,25,intimate,1310370700 +27383,25,loneliness,1310370697 +27383,25,love,1310370694 +27383,25,melancholy,1310370691 +27383,25,Nicolas Cage,1310370689 +27383,25,poignant,1310370687 +27383,25,prostitution,1310370685 +27383,25,SUICIDE,1310370682 +27383,25,understated,1310370680 +27383,32,adventure,1310202905 +27383,32,atmospheric,1310202903 +27383,32,Brad Pitt,1310202898 +27383,32,British,1310202901 +27383,32,Bruce Willis,1310202897 +27383,32,classic,1310202858 +27383,32,complicated,1310202895 +27383,32,dystopia,1310202893 +27383,32,future,1310202891 +27383,32,genetics,1310202889 +27383,32,great ending,1400971432 +27383,32,imagination,1310202884 +27383,32,imdb top 250,1310202882 +27383,32,mental illness,1310202880 +27383,32,post-apocalyptic,1310202877 +27383,32,psychology,1310202875 +27383,32,remake,1310202860 +27383,32,sci-fi,1310202863 +27383,32,time travel,1310202865 +27383,32,twist ending,1310202867 +27383,32,violence,1310202909 +27383,45,dark comedy,1310581161 +27383,45,Joaquin Phoenix,1310581164 +27383,45,Journalism,1310581167 +27383,45,library,1310581171 +27383,45,Wayne Knight,1310581174 +27383,47,atmospheric,1400935354 +27383,47,Brad Pitt,1400971745 +27383,47,crime,1400935354 +27383,47,dark,1400971749 +27383,47,disturbing,1400935353 +27383,47,drama,1400971752 +27383,47,gore,1400971755 +27383,47,great ending,1400971786 +27383,47,horror,1400971757 +27383,47,Kevin Spacey,1400971759 +27383,47,Morgan Freeman,1400971763 +27383,47,mystery,1400934153 +27383,47,philosophical,1400971765 +27383,47,police,1400971768 +27383,47,psychological,1400971771 +27383,47,psychology,1400971773 +27383,47,religion,1400971775 +27383,47,serial killer,1400935353 +27383,47,twist ending,1400971781 +27383,47,violent,1400971784 +27383,50,Benicio Del Toro,1311010132 +27383,50,caper,1311010129 +27383,50,classic,1311010127 +27383,50,clever,1311010125 +27383,50,complicated,1311010122 +27383,50,conspiracy,1311010119 +27383,50,Crime,1311010117 +27383,50,Dark,1311010114 +27383,50,ensemble cast,1311010112 +27383,50,funny,1311010109 +27383,50,great ending,1400971441 +27383,50,heist,1311010106 +27383,50,Kevin Spacey,1311010104 +27383,50,New York City,1311010102 +27383,50,organized crime,1311010099 +27383,50,suspense,1311010096 +27383,50,thriller,1311010094 +27383,50,twist ending,1311010092 +27383,70,brothers,1310019222 +27383,70,campy,1310019225 +27383,70,cult film,1310019227 +27383,70,George Clooney,1310019230 +27383,70,gore,1310019233 +27383,70,horror,1310019236 +27383,70,hostage,1310019238 +27383,70,intense,1310019241 +27383,70,mexico,1310019245 +27383,70,plot twist,1310019248 +27383,70,Quentin Tarantino,1310019252 +27383,70,Robert Rodriguez,1310019255 +27383,70,Sexualized violence,1310019260 +27383,70,strippers,1310019263 +27383,70,Tarantino,1310019265 +27383,70,twist ending,1310019287 +27383,70,vampire,1310019290 +27383,70,vampires,1310019293 +27383,70,violence,1310019296 +27383,111,atmospheric,1400935654 +27383,111,classic,1400936283 +27383,111,cult film,1400936283 +27383,111,dark,1400936242 +27383,111,disturbing,1400935654 +27383,111,insanity,1400935654 +27383,111,loneliness,1400936242 +27383,111,mental illness,1400936283 +27383,111,new york city,1400936283 +27383,111,prostitution,1400936283 +27383,111,psychology,1400936283 +27383,111,serial killer,1400935654 +27383,111,social commentary,1400936283 +27383,111,vigilante,1400936283 +27383,141,based on a play,1310203096 +27383,141,comedy,1310203098 +27383,141,cross dressing,1310203100 +27383,141,cross dressing men,1310203102 +27383,141,crossdressing,1310203104 +27383,141,gay,1310203106 +27383,141,Gay stereotypes,1310203129 +27383,141,Gene Hackman,1310203115 +27383,141,homosexual theme,1310203065 +27383,141,Madonna,1310203117 +27383,141,Mike Nichols,1310203083 +27383,141,queer,1310203080 +27383,141,remake,1310203077 +27383,141,Robin Williams,1310203063 +27383,170,action,1400972250 +27383,170,alter ego,1400972255 +27383,170,Angelina Jolie,1400972252 +27383,170,cheesy,1400972257 +27383,170,computer cracker,1400972259 +27383,170,computers,1400972262 +27383,170,cult film,1400972264 +27383,170,cult movie,1400972308 +27383,170,cyberpunk,1400972266 +27383,170,geek,1400972268 +27383,170,geeks,1400972271 +27383,170,hacker,1400972273 +27383,170,hackers,1400972275 +27383,170,hacking,1400972277 +27383,170,high school,1400972279 +27383,170,internet,1400972281 +27383,170,Robert Redford,1400972286 +27383,170,video games,1400972284 +27383,172,cyberpunk,1400940171 +27383,172,dystopia,1400940171 +27383,172,future,1400972211 +27383,172,futuristic,1400972213 +27383,172,hackers,1400972215 +27383,172,Henry Rollins,1400972217 +27383,172,Keanu Reeves,1400972221 +27383,172,memory,1400940171 +27383,172,Sci-Fi,1400972223 +27383,172,technology,1400972226 +27383,172,transhumanism,1400972232 +27383,172,virtual reality,1400940171 +27383,172,William Gibson,1400972235 +27383,198,90s dystopia,1400972319 +27383,198,corruption,1400972321 +27383,198,cyberpunk,1400940149 +27383,198,dark,1400972324 +27383,198,future,1400972325 +27383,198,futuristic,1400972327 +27383,198,James Cameron,1400972330 +27383,198,memory,1400940149 +27383,198,mindfuck,1400940149 +27383,198,police,1400972334 +27383,198,police corruption,1400972337 +27383,198,Ralph Fiennes,1400972368 +27383,198,rape,1400972340 +27383,198,sci-fi,1400972342 +27383,198,Science Fiction,1400972363 +27383,198,strange,1400972359 +27383,198,virtual reality,1400940149 +27383,224,fantasy,1400937851 +27383,224,insanity,1400937851 +27383,224,madness,1400937851 +27383,224,mental illness,1400937852 +27383,224,passion,1400937852 +27383,224,psychology,1400937851 +27383,224,romance,1400937852 +27383,247,surreal,1400972697 +27383,247,surrealism,1400972706 +27383,253,Antonio Banderas,1310372594 +27383,253,atmospheric,1310372592 +27383,253,based on a book,1310372589 +27383,253,Brad Pitt,1310372587 +27383,253,cult classic,1310372584 +27383,253,drama,1310372582 +27383,253,fantasy,1310372578 +27383,253,gothic,1310372575 +27383,253,history,1310372569 +27383,253,horror,1310372564 +27383,253,interviews,1310372561 +27383,253,Kirsten Dunst,1310372558 +27383,253,New Orleans,1310372556 +27383,253,Paris,1310372554 +27383,253,San Francisco,1310372552 +27383,253,Tom Cruise,1310372549 +27383,253,vampire,1310372545 +27383,253,vampires,1310372542 +27383,288,controversial,1310385262 +27383,288,Crime,1310385259 +27383,288,dark comedy,1310385257 +27383,288,hallucinatory,1310385254 +27383,288,journalism,1310385252 +27383,288,love,1310385250 +27383,288,mindfuck,1310385247 +27383,288,Native Americans,1310385245 +27383,288,paranoid,1310385242 +27383,288,prison,1310385240 +27383,288,psychedelic,1310385238 +27383,288,road trip,1310385236 +27383,288,Robert Downey Jr.,1310385234 +27383,288,satire,1310385232 +27383,288,satirical,1310385229 +27383,288,serial killer,1310385227 +27383,288,stylized,1310385224 +27383,288,Tommy Lee Jones,1310385222 +27383,288,violence,1310385220 +27383,288,visceral,1310385218 +27383,296,action,1310019101 +27383,296,assassin,1310019099 +27383,296,atmospheric,1310019097 +27383,296,Black comedy,1310019062 +27383,296,Bruce Willis,1310019093 +27383,296,comedy,1310019090 +27383,296,cult film,1310019089 +27383,296,drugs,1310019087 +27383,296,Mafia,1310019085 +27383,296,multiple storylines,1310019082 +27383,296,nonlinear,1310019080 +27383,296,organized crime,1310019078 +27383,296,Quentin Tarantino,1310019076 +27383,296,quirky,1310019074 +27383,296,Samuel L. Jackson,1310019073 +27383,296,stylized,1310019071 +27383,296,violence,1310019068 +27383,318,adapted from:book,1400933280 +27383,318,atmospheric,1400933282 +27383,318,based on a book,1400933287 +27383,318,classic,1400933321 +27383,318,crime,1400933326 +27383,318,friendship,1400933300 +27383,318,great ending,1400971826 +27383,318,imdb top 250,1400933337 +27383,318,inspirational,1400933356 +27383,318,Morgan Freeman,1400933356 +27383,318,mystery,1400933297 +27383,318,prison,1400933363 +27383,318,prison escape,1400933295 +27383,318,psychology,1400933379 +27383,318,reflective,1400933379 +27383,318,revenge,1400933394 +27383,318,sexuality,1400933394 +27383,318,Stephen King,1400933294 +27383,318,thought-provoking,1400933409 +27383,318,twist ending,1400933423 +27383,318,violence,1400933421 +27383,337,adapted from:book,1400936925 +27383,337,based on a book,1400936960 +27383,337,bittersweet,1400936960 +27383,337,coming of age,1400936960 +27383,337,coming-of-age,1400936960 +27383,337,creepy,1400936960 +27383,337,depressing,1400936960 +27383,337,disability,1400936960 +27383,337,dysfunctional family,1400936960 +27383,337,mental illness,1400936981 +27383,337,quirky,1400936980 +27383,337,whimsical,1400936981 +27383,353,bittersweet,1310375473 +27383,353,comic book,1310375471 +27383,353,cult film,1310375468 +27383,353,dreamlike,1310375464 +27383,353,Fantasy,1310375462 +27383,353,film noir,1310375460 +27383,353,ghosts/afterlife,1310375456 +27383,353,gothic,1310375455 +27383,353,great soundtrack,1310375452 +27383,353,gritty,1310375449 +27383,353,halloween,1310375448 +27383,353,heavy metal,1310375438 +27383,353,revenge,1310375431 +27383,353,rock and roll,1310375429 +27383,353,romance,1310375426 +27383,353,stylized,1310375423 +27383,353,vigilante,1310375443 +27383,488,1960s,1311008712 +27383,488,adultery,1311008710 +27383,488,alter ego,1311008707 +27383,488,based on a play,1311008704 +27383,488,Broadway,1311008700 +27383,488,China,1311008698 +27383,488,cross dressing,1311008692 +27383,488,cross dressing men,1311008689 +27383,488,Japan,1311008686 +27383,488,sexuality,1311008685 +27383,492,mystery,1400934094 +27383,492,Woody Allen,1400934094 +27383,541,atmospheric,1310203145 +27383,541,based on a book,1310203148 +27383,541,classic,1310203150 +27383,541,cult film,1310203151 +27383,541,cyberpunk,1310203154 +27383,541,dreamlike,1310203155 +27383,541,dystopia,1310203158 +27383,541,existentialism,1310203160 +27383,541,fantasy,1310203162 +27383,541,future,1310203164 +27383,541,futuristic,1310203166 +27383,541,genetics,1310203168 +27383,541,imdb top 250,1310203170 +27383,541,memory,1400940265 +27383,541,Philip K. Dick,1310203141 +27383,541,robots,1310203172 +27383,541,sci-fi,1310203173 +27383,541,stylized,1310203142 +27383,543,comedy,1400935548 +27383,543,quirky,1400935548 +27383,543,serial killer,1400935548 +27383,546,alternate reality,1400933744 +27383,555,action,1310018935 +27383,555,Brad Pitt,1310018932 +27383,555,brutality,1310018938 +27383,555,Christian Slater,1310018910 +27383,555,Christopher Walken,1310018918 +27383,555,Dennis Hopper,1310018914 +27383,555,dialogue,1310018941 +27383,555,Gary Oldman,1310018909 +27383,555,Hans Zimmer,1310018945 +27383,555,homage,1310018947 +27383,555,James Gandolfini,1310018949 +27383,555,romance,1310018959 +27383,555,Samuel L. Jackson,1310018922 +27383,555,shooting,1310018956 +27383,555,showdown,1310018953 +27383,555,Val Kilmer,1310018924 +27383,555,violence,1310018962 +27383,562,adolescence,1310019608 +27383,562,adolescence is hell,1310019605 +27383,562,depressing,1310019644 +27383,562,disturbing,1310019642 +27383,562,Heather Matarazzo,1310019640 +27383,562,horrible,1310019636 +27383,562,indie,1310019634 +27383,562,poignant,1310019631 +27383,562,quirky,1310019631 +27383,562,school drama,1310019627 +27383,562,Ugly main character,1310019625 +27383,562,unsettling,1310019621 +27383,593,anthony hopkins,1400936335 +27383,593,based on a book,1400936335 +27383,593,cannibalism,1400936335 +27383,593,classic,1400936335 +27383,593,crime,1400935378 +27383,593,disturbing,1400935378 +27383,593,horror,1400935378 +27383,593,mental illness,1400935378 +27383,593,psychological,1400936335 +27383,593,psychology,1400936335 +27383,593,serial killer,1400935378 +27383,593,suspense,1400935378 +27383,778,addiction,1310019161 +27383,778,based on a book,1310019159 +27383,778,black comedy,1310019157 +27383,778,British,1310019153 +27383,778,crime,1310019151 +27383,778,dark comedy,1310019137 +27383,778,drugs,1310019129 +27383,778,Ewan McGregor,1310019115 +27383,778,heroin,1310019126 +27383,778,narrated,1310019124 +27383,778,social commentary,1310019121 +27383,778,violence,1310019120 +27383,778,violent,1310019118 +27383,799,ghosts,1400935270 +27383,799,serial killer,1400935270 +27383,799,supernatural,1400935270 +27383,841,atmospheric,1310213524 +27383,841,claustrophobic,1310213580 +27383,841,disturbing,1310213567 +27383,841,face,1310213529 +27383,841,goth,1310213531 +27383,841,gothic,1310213533 +27383,841,gruesome,1310213562 +27383,841,moody,1310213536 +27383,841,ominous,1310213577 +27383,841,serial killer,1400934816 +27383,841,somber,1310213523 +27383,903,Alfred Hitchcock,1310384877 +27383,903,Atmospheric,1310384879 +27383,903,classic,1310384882 +27383,903,disturbing,1310384884 +27383,903,eerie,1310384886 +27383,903,HAUNTED BY THE PAST,1310384888 +27383,903,Hitchcock,1310384890 +27383,903,identity,1310384892 +27383,903,James Stewart,1310384895 +27383,903,melancholy,1310384898 +27383,903,National Film Registry,1310384900 +27383,903,obsession,1310384904 +27383,903,paranoid,1310384906 +27383,903,San Francisco,1310384910 +27383,903,switching places,1310384911 +27383,903,twist ending,1310384914 +27383,904,murder,1400934913 +27383,904,mystery,1400934913 +27383,904,serial killer,1400934913 +27383,904,suspense,1400934914 +27383,904,thriller,1400934914 +27383,906,atmospheric,1400936517 +27383,906,eerie,1400936517 +27383,906,gloomy,1400936517 +27383,906,manipulation,1400936517 +27383,906,memory,1400936517 +27383,906,mental illness,1400936517 +27383,906,murder,1400936517 +27383,906,paranoid,1400936517 +27383,906,tense,1400936517 +27383,906,understated,1400936517 +27383,924,mystery,1400934293 +27383,968,AFI 100 (Thrills),1410869165 +27383,968,black and white,1410869167 +27383,968,classic horror,1410869168 +27383,968,creepy,1410869170 +27383,968,disturbing,1410869173 +27383,968,George A. Romero,1410869175 +27383,968,gruesome,1410869179 +27383,968,horror,1410869181 +27383,968,influential,1410869184 +27383,968,low budget,1410869191 +27383,968,man vs. beast,1410869224 +27383,968,menacing,1410869163 +27383,968,National Film Registry,1410869222 +27383,968,ominous,1410869200 +27383,968,paranoid,1410869217 +27383,968,Race issues,1410869161 +27383,968,torrential downpour,1410869215 +27383,968,visceral,1410869202 +27383,968,zombie,1410869158 +27383,968,zombies,1410869153 +27383,1032,adaptation,1400938812 +27383,1032,adapted from:book,1400938806 +27383,1032,alternate reality,1400938817 +27383,1032,animated,1400938799 +27383,1032,based on a book,1400938796 +27383,1032,based on book,1400938796 +27383,1032,classic,1400938796 +27383,1032,disney,1400938768 +27383,1032,Disney animated feature,1400938778 +27383,1032,dreamlike,1400938765 +27383,1032,fairy tale,1400938765 +27383,1032,funny,1400938765 +27383,1032,parallel universe,1400938756 +27383,1032,surreal,1400938756 +27383,1032,surrealism,1400938756 +27383,1032,talking animals,1400938733 +27383,1032,whimsical,1400938756 +27383,1034,serial killer,1400935133 +27383,1037,alternate reality,1400938845 +27383,1037,animals,1400938828 +27383,1037,artificial intelligence,1400938845 +27383,1037,cyberpunk,1400938875 +27383,1037,EXPERIMENTS GONE AWRY,1400938854 +27383,1037,priest,1400972580 +27383,1037,science,1400938876 +27383,1037,sexuality,1400938876 +27383,1037,technology,1400938876 +27383,1037,transformation,1400938888 +27383,1037,virtual reality,1400938845 +27383,1073,based on a book,1311009962 +27383,1073,children,1311009746 +27383,1073,classic,1311009749 +27383,1073,colourful,1311009958 +27383,1073,cult film,1311009954 +27383,1073,England,1311009951 +27383,1073,espionage,1311009753 +27383,1073,family bonds,1311009761 +27383,1073,Fantasy,1311009948 +27383,1073,Gene Wilder,1311009944 +27383,1073,Heartwarming,1311009763 +27383,1073,Johnny Depp,1311009940 +27383,1073,musical,1311009765 +27383,1073,remade,1311009768 +27383,1073,Roald Dahl,1311009937 +27383,1073,surreal,1311009935 +27383,1073,whimsical,1311009932 +27383,1073,witty,1311009929 +27383,1077,AFI 100 (Laughs),1400932879 +27383,1077,comedy,1400932882 +27383,1077,cryogenics,1400932934 +27383,1077,delights,1400932931 +27383,1077,Diane Keaton,1400932924 +27383,1077,dystopia,1400932886 +27383,1077,erlend's DVDs,1400932922 +27383,1077,farce,1400932919 +27383,1077,funny,1400932915 +27383,1077,futuristic,1400932912 +27383,1077,Futuristmovies.com,1400932909 +27383,1077,ironic,1400932907 +27383,1077,marx brothers,1400932903 +27383,1077,retrofuturist,1400932900 +27383,1077,surreal,1400932898 +27383,1077,technology,1400932896 +27383,1077,time travel,1400932888 +27383,1077,witty,1400932892 +27383,1077,Woody Allen,1400932890 +27383,1089,crime,1310018838 +27383,1089,cult film,1310018840 +27383,1089,ensemble cast,1310018842 +27383,1089,gangster,1310018888 +27383,1089,heist,1310018879 +27383,1089,low budget,1310018877 +27383,1089,multiple storylines,1310018874 +27383,1089,nonlinear,1310018872 +27383,1089,organized crime,1310018870 +27383,1089,Quentin Tarantino,1310018864 +27383,1089,quirky,1310018861 +27383,1089,stylized,1310018859 +27383,1089,Tarantino,1310018857 +27383,1089,undercover cop,1310018855 +27383,1089,violence,1310018853 +27383,1094,based on a true story,1310385053 +27383,1094,cross dressing,1310385057 +27383,1094,cross dressing men,1310385059 +27383,1094,England,1310385061 +27383,1094,Forest Whitaker,1310385063 +27383,1094,genitalia,1310385065 +27383,1094,hostage,1310385075 +27383,1094,IRA,1310385068 +27383,1094,Ireland,1310385070 +27383,1094,library,1310385079 +27383,1094,male nudity,1310385082 +27383,1094,puzzling,1310385084 +27383,1094,queer,1310385087 +27383,1094,soldier,1310385089 +27383,1094,Stephen Rea,1310385091 +27383,1094,transgender,1310385092 +27383,1094,twist ending,1310385094 +27383,1094,violent,1310385096 +27383,1175,alternate reality,1400933804 +27383,1193,based on a book,1310374203 +27383,1193,based on book,1310374205 +27383,1193,classic,1310374209 +27383,1193,depressing,1310374211 +27383,1193,drama,1310374213 +27383,1193,emotional,1310374215 +27383,1193,insanity,1400937381 +27383,1193,Jack Nicholson,1310374218 +27383,1193,literary adaptation,1310374220 +27383,1193,mental hospital,1310374223 +27383,1193,mental illness,1310374225 +27383,1193,psychological,1310374229 +27383,1193,psychology,1310374231 +27383,1193,violence,1310374233 +27383,1197,action,1311008879 +27383,1197,based on a book,1311008884 +27383,1197,based on book,1311008886 +27383,1197,classic,1311008889 +27383,1197,comedy,1311008891 +27383,1197,Cult classic,1311008893 +27383,1197,fairy tale,1311008896 +27383,1197,fantasy,1311008923 +27383,1197,funny,1311008924 +27383,1197,medieval,1311008929 +27383,1197,pirates,1311008931 +27383,1197,quirky,1311008938 +27383,1197,revenge,1311008941 +27383,1197,romance,1311008943 +27383,1197,sword fight,1311008945 +27383,1197,torture,1311008948 +27383,1197,witty,1311008950 +27383,1199,atmospheric,1400937310 +27383,1199,black comedy,1400937310 +27383,1199,classic,1400937310 +27383,1199,dark comedy,1400937309 +27383,1199,dreamlike,1400937309 +27383,1199,dystopia,1400937310 +27383,1199,fantasy,1400937309 +27383,1199,future,1400937309 +27383,1199,futuristic,1400937360 +27383,1199,imagination,1400937361 +27383,1199,insanity,1400937360 +27383,1199,quirky,1400937360 +27383,1199,satire,1400937361 +27383,1199,satirical,1400937360 +27383,1199,sci-fi,1400937361 +27383,1199,stylized,1400937361 +27383,1199,surreal,1400937361 +27383,1199,thought-provoking,1400937360 +27383,1199,twist ending,1400937361 +27383,1202,black comedy,1311009541 +27383,1202,bleak,1311009538 +27383,1202,British,1311009536 +27383,1202,Criterion,1311009530 +27383,1202,cult film,1311009528 +27383,1202,dark comedy,1311009525 +27383,1202,drugs,1311009523 +27383,1202,drunkenness,1311009518 +27383,1202,irreverent,1311009516 +27383,1202,quirky,1311009513 +27383,1202,quotable,1311009508 +27383,1202,Richard Griffiths,1311009505 +27383,1202,talky,1311009503 +27383,1202,wistful,1311009500 +27383,1202,wry,1311009495 +27383,1206,atmospheric,1310385300 +27383,1206,based on a book,1310385298 +27383,1206,classic,1310385296 +27383,1206,cult film,1310385293 +27383,1206,disturbing,1310385292 +27383,1206,dystopia,1310385289 +27383,1206,psychological,1310385288 +27383,1206,psychology,1310385286 +27383,1206,satire,1310385284 +27383,1206,satirical,1310385282 +27383,1206,social commentary,1310385280 +27383,1206,Stanley Kubrick,1310385278 +27383,1206,stylized,1310385276 +27383,1206,surreal,1310385274 +27383,1206,Surrealism,1310385273 +27383,1206,violence,1310385271 +27383,1208,action,1400937491 +27383,1208,adapted from:book,1400937497 +27383,1208,adventure,1400937517 +27383,1208,based on a book,1400937517 +27383,1208,dark,1400937517 +27383,1208,disturbing,1400937517 +27383,1208,drama,1400937486 +27383,1208,drugs,1400937517 +27383,1208,gore,1400937522 +27383,1208,insanity,1400937537 +27383,1208,military,1400937481 +27383,1208,psychological,1400937537 +27383,1208,surreal,1400937537 +27383,1208,vietnam war,1400937474 +27383,1208,war,1400937474 +27383,1214,action,1410869725 +27383,1214,aliens,1410869727 +27383,1214,atmospheric,1410869734 +27383,1214,classic,1410869739 +27383,1214,dark,1410869741 +27383,1214,futuristic,1410869743 +27383,1214,haunted house,1410869745 +27383,1214,horror,1410869748 +27383,1214,imdb top 250,1410869751 +27383,1214,monster,1410869754 +27383,1214,Oscar (Best Effects - Visual Effects),1410869760 +27383,1214,paranoid,1410869761 +27383,1214,Saturn Award (Best Science Fiction Film),1410869763 +27383,1214,sci-fi,1410869766 +27383,1214,space,1410869771 +27383,1214,space travel,1410869773 +27383,1214,suspense,1410869721 +27383,1214,tense,1410869710 +27383,1214,thriller,1410869708 +27383,1214,violence,1410869776 +27383,1219,black and white,1400936692 +27383,1219,classic,1400936696 +27383,1219,cross dressing,1400936693 +27383,1219,disturbing,1400936693 +27383,1219,horror,1400936695 +27383,1219,mental illness,1400936695 +27383,1219,murder,1400936691 +27383,1219,mystery,1400936692 +27383,1219,psychology,1400936694 +27383,1219,serial killer,1400934782 +27383,1219,suspense,1400936694 +27383,1219,suspenseful,1400936693 +27383,1219,tense,1400936694 +27383,1219,thriller,1400934782 +27383,1230,AFI 100,1400933004 +27383,1230,AFI 100 (Laughs),1400933006 +27383,1230,comedy,1400933010 +27383,1230,funny,1400933012 +27383,1230,hilarious,1400933015 +27383,1230,imdb top 250,1400933018 +27383,1230,intellectual,1400933021 +27383,1230,National Film Registry,1400933043 +27383,1230,new york,1400933045 +27383,1230,new york city,1400933048 +27383,1230,Oscar (Best Actress),1400933072 +27383,1230,Oscar (Best Directing),1400933090 +27383,1230,Oscar (Best Picture),1400933076 +27383,1230,quirky,1400932979 +27383,1230,relationships,1400932984 +27383,1230,romantic,1400932981 +27383,1230,thought-provoking,1400932976 +27383,1230,understated,1400932961 +27383,1230,witty,1400932974 +27383,1230,Woody Allen,1400932958 +27383,1235,Breaking The Fourth Wall,1310370473 +27383,1235,classic,1310370469 +27383,1235,Cult Classic,1310370467 +27383,1235,cult film,1310370464 +27383,1235,dark comedy,1310370462 +27383,1235,dark humor,1310370458 +27383,1235,good dialogue,1310370456 +27383,1235,irreverent,1310370449 +27383,1235,May-December romance,1310370452 +27383,1235,National Film Registry,1310370454 +27383,1235,quirky,1310370444 +27383,1235,reflective,1310370442 +27383,1235,suicide,1310370439 +27383,1235,suicide attempt,1310370437 +27383,1240,Action,1310371504 +27383,1240,android(s)/cyborg(s),1310371500 +27383,1240,Arnold Schwarzenegger,1310371497 +27383,1240,artificial intelligence,1310371494 +27383,1240,assassin,1310371490 +27383,1240,classic,1310371487 +27383,1240,drama,1310371485 +27383,1240,future,1310371483 +27383,1240,robots,1310371478 +27383,1240,romance,1310371465 +27383,1240,sci-fi,1310371463 +27383,1240,stop motion,1310371460 +27383,1240,tense,1310371456 +27383,1240,terrorism,1310371455 +27383,1240,time travel,1310371453 +27383,1240,violent,1310371449 +27383,1258,atmospheric,1310373018 +27383,1258,based on a book,1310373016 +27383,1258,classic,1310373013 +27383,1258,cult film,1310373009 +27383,1258,disturbing,1310373007 +27383,1258,dreamlike,1310373004 +27383,1258,ghosts,1310373002 +27383,1258,Horror,1310372998 +27383,1258,insanity,1400937458 +27383,1258,Jack Nicholson,1310372995 +27383,1258,mental illness,1310372994 +27383,1258,psychological,1310372992 +27383,1258,psychology,1310372990 +27383,1258,Stanley Kubrick,1310372988 +27383,1258,Stephen King,1310372985 +27383,1258,suspense,1310372983 +27383,1258,visually appealing,1310372981 +27383,1258,writer,1400939536 +27383,1258,writers,1400939532 +27383,1259,1960s,1311010242 +27383,1259,adventure,1311010239 +27383,1259,based on a book,1311010237 +27383,1259,childhood,1311010234 +27383,1259,classic,1311010231 +27383,1259,coming of age,1311010227 +27383,1259,Drama,1311010226 +27383,1259,friendship,1311010223 +27383,1259,INNOCENCE LOST,1311010221 +27383,1259,Kiefer Sutherland,1311010219 +27383,1259,nostalgic,1311010216 +27383,1259,poignant,1311010213 +27383,1259,Richard Dreyfuss,1311010211 +27383,1259,River Phoenix,1311010207 +27383,1259,Rob Reiner,1311010204 +27383,1259,Stephen King,1311010202 +27383,1259,tense,1311010200 +27383,1259,Theater,1311010198 +27383,1259,wistful,1311010195 +27383,1265,alternate reality,1311008675 +27383,1265,animals,1311008672 +27383,1265,Bill Murray,1311008667 +27383,1265,Classic,1311008665 +27383,1265,comedy,1311008662 +27383,1265,existentialism,1311008660 +27383,1265,Fantasy,1311008656 +27383,1265,feel-good,1311008653 +27383,1265,funny,1311008649 +27383,1265,hilarious,1311008646 +27383,1265,humorous,1311008641 +27383,1265,romance,1311008639 +27383,1265,romantic,1311008636 +27383,1265,self discovery,1311008630 +27383,1265,small town,1311008628 +27383,1265,surreal,1311008625 +27383,1265,time loop,1311008622 +27383,1265,time travel,1311008619 +27383,1274,anime,1420711182 +27383,1274,atmospheric,1420711203 +27383,1274,cyberpunk,1420711185 +27383,1274,dystopia,1420711180 +27383,1274,dystopic future,1420711196 +27383,1274,future,1420711192 +27383,1274,hallucinatory,1420711213 +27383,1274,post-apocalyptic,1420711194 +27383,1274,science fiction,1420711206 +27383,1274,stylized,1420711199 +27383,1274,visually stunning,1420711188 +27383,1285,Anti Conformity,1310019818 +27383,1285,black comedy,1310019816 +27383,1285,Christian Slater,1310019814 +27383,1285,clique,1310019811 +27383,1285,cult,1310019809 +27383,1285,cult film,1310019805 +27383,1285,cynical,1310019803 +27383,1285,dark comedy,1310019800 +27383,1285,dark humor,1310019798 +27383,1285,deadpan,1310019795 +27383,1285,high school,1310019793 +27383,1285,irreverent,1310019792 +27383,1285,misfits,1310019789 +27383,1285,peer pressure,1310019786 +27383,1285,popularity,1310019784 +27383,1285,Quotable,1310019780 +27383,1285,satirical,1310019777 +27383,1285,serial killer,1310019775 +27383,1285,teen angst,1310019773 +27383,1285,Winona Ryder,1310019770 +27383,1321,atmospheric,1410870013 +27383,1321,Betamax,1410870010 +27383,1321,bizarre,1410870007 +27383,1321,Classic,1410870005 +27383,1321,dark comedy,1410870002 +27383,1321,Funny,1410870000 +27383,1321,horror comedy,1410869995 +27383,1321,humorous,1410869992 +27383,1321,Jenny Agutter,1410869978 +27383,1321,John Landis,1410869975 +27383,1321,menacing,1410869973 +27383,1321,Nudity (Topless - Brief),1410869970 +27383,1321,paranoid,1410869968 +27383,1321,satirical,1410869967 +27383,1321,scary,1410869960 +27383,1321,surprisingly funny,1410869958 +27383,1321,tense,1410869958 +27383,1321,werewolf,1410869953 +27383,1321,werewolves,1410869952 +27383,1321,zombies,1410869948 +27383,1333,adultery,1410869486 +27383,1333,AFI 100 (Thrills),1410869483 +27383,1333,Alfred Hitchcock,1410869481 +27383,1333,animal attacks,1410869478 +27383,1333,animals,1410869475 +27383,1333,birds,1410869466 +27383,1333,biting,1410869464 +27383,1333,classic,1410869461 +27383,1333,creepy singing,1410869459 +27383,1333,dialogue,1410869457 +27383,1333,eerie,1410869454 +27383,1333,environmental,1410869452 +27383,1333,Hitchcock,1410869450 +27383,1333,horror,1410869445 +27383,1333,monster,1410869443 +27383,1333,mother-son relationship,1410869440 +27383,1333,strange,1410869437 +27383,1333,suspense,1410869435 +27383,1333,unusual,1410869433 +27383,1339,Anthony Hopkins,1310375083 +27383,1339,based on a book,1310375080 +27383,1339,based on book,1310375077 +27383,1339,erotic,1310375074 +27383,1339,Gary Oldman,1310375072 +27383,1339,gothic,1310375069 +27383,1339,Horror,1310375068 +27383,1339,Keanu Reeves,1310375066 +27383,1339,vampire,1310375062 +27383,1339,vampires,1310375060 +27383,1339,violence in america,1310375057 +27383,1339,Winona Ryder,1310375054 +27383,1343,horror,1400935071 +27383,1343,serial killer,1400935071 +27383,1343,thriller,1400935071 +27383,1345,atmospheric,1310370795 +27383,1345,based on a book,1310370791 +27383,1345,Brian De Palma,1310370788 +27383,1345,camp,1310370785 +27383,1345,Classic,1310370782 +27383,1345,eerie,1310370778 +27383,1345,gruesome,1310370776 +27383,1345,high school,1310370774 +27383,1345,horror,1310370772 +27383,1345,lurid,1310370770 +27383,1345,possession,1310370767 +27383,1345,religion,1310370765 +27383,1345,tense,1310370763 +27383,1345,visceral,1310370760 +27383,1347,dreams,1400935325 +27383,1347,horror,1400935326 +27383,1347,murder,1400935325 +27383,1347,serial killer,1400935325 +27383,1347,slasher,1400935326 +27383,1350,demons,1400934984 +27383,1350,devil,1400934984 +27383,1350,horror,1400934961 +27383,1350,serial killer,1400934975 +27383,1350,supernatural,1400934960 +27383,1350,suspense,1400934961 +27383,1350,thriller,1400934976 +27383,1407,serial killer,1400935569 +27383,1407,slasher,1400935569 +27383,1407,suspense,1400935569 +27383,1441,comedy,1310203011 +27383,1441,drama,1310203014 +27383,1441,eccentricity,1310203006 +27383,1441,funny,1310203008 +27383,1441,Johnny Depp,1310202989 +27383,1441,Julianne Moore,1310202991 +27383,1441,lighthearted,1310203025 +27383,1441,love story,1310203000 +27383,1441,mental illness,1310202993 +27383,1441,Quirky,1310202997 +27383,1441,Romance,1310203031 +27383,1441,romantic comedy,1310203034 +27383,1441,siblings,1310203039 +27383,1441,sweet,1310203043 +27383,1441,whimsical,1310203048 +27383,1449,affectionate,1310581471 +27383,1449,Christopher Guest,1310581473 +27383,1449,David Cross,1310581476 +27383,1449,deadpan,1310581478 +27383,1449,Eugene Levy,1310581481 +27383,1449,farce,1310581484 +27383,1449,Fred Willard,1310581486 +27383,1449,funny,1310581488 +27383,1449,humorous,1310581490 +27383,1449,hysterical,1310581492 +27383,1449,mockumentary,1310581494 +27383,1449,musical,1310581497 +27383,1449,quirky,1310581500 +27383,1449,quotable,1310581504 +27383,1449,satire,1310581506 +27383,1449,satirical,1310581508 +27383,1449,silly,1310581511 +27383,1449,small town,1310581514 +27383,1449,theater,1310581516 +27383,1449,witty,1310581520 +27383,1527,action,1310371165 +27383,1527,aliens,1310371162 +27383,1527,Bruce Willis,1310371159 +27383,1527,campy,1310371156 +27383,1527,cinematography,1310371154 +27383,1527,dystopia,1310371152 +27383,1527,dystopic future,1310371149 +27383,1527,futuristic,1310371146 +27383,1527,Gary Oldman,1310371144 +27383,1527,great cinematography,1310371129 +27383,1527,humorous,1310371127 +27383,1527,Milla Jovovich,1310371124 +27383,1527,parody,1310371122 +27383,1527,satirical,1310371120 +27383,1527,sci-fi,1310371118 +27383,1527,stylized,1310371116 +27383,1527,surreal,1310371112 +27383,1590,bloody,1400937556 +27383,1590,classic,1400937560 +27383,1590,dark,1400937602 +27383,1590,death,1400937602 +27383,1590,distorted reality,1400937602 +27383,1590,first contact,1400937602 +27383,1590,future,1400937602 +27383,1590,hallucination,1400937602 +27383,1590,hell,1400937602 +27383,1590,horror,1400937602 +27383,1590,insanity,1400937602 +27383,1590,scary,1400937602 +27383,1590,sci-fi,1400937602 +27383,1590,space,1400937602 +27383,1590,space travel,1400937602 +27383,1590,tense,1400937602 +27383,1590,violent,1400937602 +27383,1597,mystery,1400934331 +27383,1617,complicated,1400939158 +27383,1617,complicated plot,1400939157 +27383,1617,conspiracy,1400939157 +27383,1617,corruption,1400939158 +27383,1617,crime,1400939158 +27383,1617,dark,1400939158 +27383,1617,drama,1400939158 +27383,1617,great acting,1400939158 +27383,1617,great ending,1400939158 +27383,1617,mystery,1400939157 +27383,1617,noir thriller,1400939158 +27383,1617,suspense,1400939158 +27383,1617,twist ending,1400939158 +27383,1617,twists & turns,1400939115 +27383,1617,visually appealing,1400939107 +27383,1625,action,1400939366 +27383,1625,atmospheric,1400939425 +27383,1625,complicated,1400939375 +27383,1625,complicated plot,1400939375 +27383,1625,dark,1400939425 +27383,1625,micheal douglas,1400939424 +27383,1625,mindfuck,1400939424 +27383,1625,mystery,1400934220 +27383,1625,neo-noir,1400939424 +27383,1625,paranoia,1400939424 +27383,1625,paranoid,1400939424 +27383,1625,plot twist,1400939425 +27383,1625,psychological,1400939424 +27383,1625,sean penn,1400939425 +27383,1625,surprise ending,1400939424 +27383,1625,suspense,1400939424 +27383,1625,thriller,1400939425 +27383,1625,twist ending,1400939433 +27383,1635,1970s,1386887610 +27383,1635,atmospheric,1386887608 +27383,1635,based on a book,1386887606 +27383,1635,bleak,1386887603 +27383,1635,Christina Ricci,1386887597 +27383,1635,coming of age,1386887592 +27383,1635,Criterion,1386887591 +27383,1635,dysfunctional family,1386887589 +27383,1635,Elijah Wood,1386887587 +27383,1635,EXTRAMARITAL AFFAIRS,1386887585 +27383,1635,gloomy,1386887583 +27383,1635,INNOCENCE LOST,1386887581 +27383,1635,literate,1386887576 +27383,1635,moody,1386887573 +27383,1635,Sigourney Weaver,1386887571 +27383,1635,SUBURBAN DYSFUNCTION,1386887569 +27383,1635,suburbia,1386887567 +27383,1635,Tobey Maguire,1386887565 +27383,1635,understated,1386887563 +27383,1635,visually appealing,1386887561 +27383,1648,based on a play,1310580653 +27383,1648,black comedy,1310580650 +27383,1648,dark comedy,1310580648 +27383,1648,dark humor,1310580645 +27383,1648,incest,1310580642 +27383,1648,mental illness,1310580640 +27383,1648,mental imbalance,1310580639 +27383,1648,Parker Posey,1310580656 +27383,1648,perrot library,1310580635 +27383,1653,directorial debut,1310371305 +27383,1653,drama,1310371302 +27383,1653,dystopia,1310371299 +27383,1653,dystopic future,1310371295 +27383,1653,Ethan Hawke,1310371292 +27383,1653,future,1310371289 +27383,1653,genetic engineering,1310371284 +27383,1653,genetic selection,1310371282 +27383,1653,genetics,1310371280 +27383,1653,intelligent,1310371277 +27383,1653,Jude Law,1310371274 +27383,1653,powerful ending,1310371272 +27383,1653,predictable,1310371267 +27383,1653,sci-fi,1310371264 +27383,1653,space travel,1310371262 +27383,1653,suicide,1310371259 +27383,1653,thought-provoking,1310371255 +27383,1653,Uma Thurman,1310371252 +27383,1653,visually appealing,1310371249 +27383,1682,alternate reality,1400933831 +27383,1719,atmospheric,1386887521 +27383,1719,based on a book,1386887519 +27383,1719,bleak,1386887517 +27383,1719,Canada,1386887514 +27383,1719,death,1386887512 +27383,1719,elegiac,1386887509 +27383,1719,enigmatic,1386887506 +27383,1719,ghosts/afterlife,1386887504 +27383,1719,Incest,1386887501 +27383,1719,innocence lost,1386887499 +27383,1719,lyrical,1386887496 +27383,1719,meditative,1386887494 +27383,1719,melancholic,1386887491 +27383,1719,Nudity (Full Frontal),1386887489 +27383,1719,reflective,1386887487 +27383,1719,Sarah Polley,1386887484 +27383,1719,small town,1386887482 +27383,1719,wintry,1386887480 +27383,1721,action,1311010139 +27383,1721,atmospheric,1311010143 +27383,1721,based on a true story,1311010145 +27383,1721,bittersweet,1311010148 +27383,1721,chick flick,1311010152 +27383,1721,disaster,1311010156 +27383,1721,drama,1311010158 +27383,1721,historical,1311010160 +27383,1721,History,1311010162 +27383,1721,Leonardo DiCaprio,1311010164 +27383,1721,love story,1311010166 +27383,1721,romance,1311010169 +27383,1721,survival,1311010172 +27383,1721,time travel,1311010174 +27383,1721,true story,1311010177 +27383,1748,aliens,1400938674 +27383,1748,alternate reality,1400938675 +27383,1748,amnesia,1400938674 +27383,1748,atmospheric,1400938675 +27383,1748,cult film,1400938675 +27383,1748,cult movie,1400938675 +27383,1748,dark,1400938675 +27383,1748,dreamlike,1400938675 +27383,1748,dystopia,1400938674 +27383,1748,existentialism,1400938675 +27383,1748,fantasy,1400938674 +27383,1748,memory,1400938674 +27383,1748,philosophy,1400938674 +27383,1748,Post apocalyptic,1400938675 +27383,1748,post-apocalyptic,1400938684 +27383,1748,prostitution,1400938713 +27383,1748,sci-fi,1400938714 +27383,1748,stylized,1400938714 +27383,1748,surreal,1400938714 +27383,1748,thought-provoking,1400938713 +27383,1748,visually appealing,1400938714 +27383,1885,Don Roos,1310580997 +27383,1885,love triangles,1310581000 +27383,1885,pregnancy,1310581010 +27383,1885,teen pregnancy,1310581007 +27383,1952,bisexual,1311008771 +27383,1952,bittersweet,1311008767 +27383,1952,controversial,1311008762 +27383,1952,CULTURE CLASH,1311008759 +27383,1952,downbeat,1311008754 +27383,1952,dreams,1311008752 +27383,1952,Dustin Hoffman,1311008750 +27383,1952,friendship,1311008748 +27383,1952,gritty,1311008745 +27383,1952,homosexuality,1311008741 +27383,1952,humorous,1311008738 +27383,1952,New York City,1311008736 +27383,1952,poignant,1311008731 +27383,1952,prostitution,1311008728 +27383,1952,radio,1311008726 +27383,1952,sexual,1311008724 +27383,1952,sexuality,1311008722 +27383,1961,based on a true story,1400936751 +27383,1961,dark comedy,1400936751 +27383,1961,disability,1400936751 +27383,1961,drama,1400936751 +27383,1961,dustin hoffman,1400936752 +27383,1961,funny,1400936751 +27383,1961,heartwarming,1400936751 +27383,1961,mental illness,1400936751 +27383,1961,psychology,1400936751 +27383,1961,road movie,1400936752 +27383,1961,road trip,1400936751 +27383,1961,true story,1400936751 +27383,1982,horror,1400935293 +27383,1982,murder,1400935293 +27383,1982,serial killer,1400935293 +27383,1982,slasher,1400935293 +27383,2019,atmospheric,1420693358 +27383,2019,black and white,1420693365 +27383,2019,classic,1420693349 +27383,2019,Criterion,1420693368 +27383,2019,epic,1420693375 +27383,2019,historical,1420693362 +27383,2019,masterpiece,1420693372 +27383,2019,stylized,1420693355 +27383,2076,atmospheric,1400934868 +27383,2076,dark,1410869541 +27383,2076,David Lynch,1410869539 +27383,2076,disturbing,1410869536 +27383,2076,dreamlike,1410869534 +27383,2076,hallucinatory,1410869532 +27383,2076,INNOCENCE LOST,1410869529 +27383,2076,mystery,1400934868 +27383,2076,Nudity (Full Frontal - Notable),1410869520 +27383,2076,Nudity (Full Frontal),1410869517 +27383,2076,quirky,1410869515 +27383,2076,scary,1410869513 +27383,2076,serial killer,1400934867 +27383,2076,sexual,1410869509 +27383,2076,sexuality,1410869507 +27383,2076,strange,1410869504 +27383,2076,suburbia,1410869502 +27383,2076,surreal,1400934868 +27383,2076,voyeurism,1410869498 +27383,2076,weird,1410869496 +27383,2105,action,1400972439 +27383,2105,adventure,1400972441 +27383,2105,alone in the world,1400972444 +27383,2105,alternate reality,1400933837 +27383,2105,animation,1400972448 +27383,2105,classic,1400972526 +27383,2105,computer animation,1400972522 +27383,2105,computers,1400972512 +27383,2105,cyberpunk,1400940093 +27383,2105,Disney,1400972517 +27383,2105,dystopia,1400940093 +27383,2105,fantasy,1400972502 +27383,2105,hackers,1400972493 +27383,2105,jeff bridges,1400972488 +27383,2105,sci-fi,1400972484 +27383,2105,technology,1400972483 +27383,2105,thriller,1400972484 +27383,2105,true story,1400972483 +27383,2105,video games,1400972463 +27383,2105,virtual reality,1400940093 +27383,2174,afterlife,1400938524 +27383,2174,alternate reality,1400938524 +27383,2174,black comedy,1400938524 +27383,2174,comedy,1400938524 +27383,2174,cult film,1400938524 +27383,2174,cult movie,1400938524 +27383,2174,death,1400938524 +27383,2174,funny,1400938524 +27383,2174,ghosts,1400938524 +27383,2174,haunted house,1400938524 +27383,2174,horror,1400938525 +27383,2174,michael keaton,1400938524 +27383,2174,supernatural,1400938524 +27383,2174,surreal,1400938525 +27383,2174,tim burton,1400938524 +27383,2174,weird,1400938525 +27383,2174,whimsical,1400938524 +27383,2291,cult film,1310019511 +27383,2291,dark,1310019508 +27383,2291,dark comedy,1310019505 +27383,2291,dreamlike,1310019502 +27383,2291,fairy tale,1310019499 +27383,2291,family,1310019496 +27383,2291,fantasy,1310019493 +27383,2291,gothic,1310019491 +27383,2291,Johnny Depp,1310019476 +27383,2291,loneliness,1310019488 +27383,2291,love story,1310019486 +27383,2291,modern fantasy,1310019484 +27383,2291,quirky,1310019482 +27383,2291,surreal,1310019480 +27383,2291,Tim Burton,1310019477 +27383,2291,Vincent Price,1310019473 +27383,2297,alternate reality,1400933714 +27383,2302,mystery,1400934115 +27383,2313,19th century,1310370131 +27383,2313,Anthony Hopkins,1310370128 +27383,2313,atmospheric,1310370125 +27383,2313,based on a book,1310370120 +27383,2313,based on a true story,1310370115 +27383,2313,based on book,1310370112 +27383,2313,biographical,1310370109 +27383,2313,biography,1310370107 +27383,2313,biopic,1310370106 +27383,2313,black and white,1310370101 +27383,2313,David Lynch,1310370089 +27383,2313,depressing,1310370098 +27383,2313,drama,1310370095 +27383,2313,England,1310370092 +27383,2313,historical,1310370086 +27383,2313,imdb top 250,1310370082 +27383,2313,melancholic,1310370081 +27383,2313,melancholy,1310370078 +27383,2313,stylized,1310370076 +27383,2313,true story,1310370072 +27383,2318,child abuse,1310580861 +27383,2318,dark,1310580859 +27383,2318,dark comedy,1310580857 +27383,2318,dark humor,1310580852 +27383,2318,dysfunctional family,1310580849 +27383,2318,family,1310580847 +27383,2318,father-son relationship,1310580845 +27383,2318,immigrants,1310580840 +27383,2318,loneliness,1310580838 +27383,2318,marriage,1310580836 +27383,2318,mental illness,1310580834 +27383,2318,Philip Seymour Hoffman,1310580832 +27383,2318,rape,1310580830 +27383,2318,relationships,1310580828 +27383,2318,sexual abuse,1310580826 +27383,2318,sexuality,1310580823 +27383,2318,siblings,1310580821 +27383,2318,social commentary,1310580818 +27383,2318,workplace,1310580815 +27383,2321,alternate reality,1400933755 +27383,2329,amazing photography,1310374249 +27383,2329,crime,1310374251 +27383,2329,disturbing,1310374254 +27383,2329,drama,1310374256 +27383,2329,Edward Norton,1310374258 +27383,2329,emotional,1310374261 +27383,2329,holocaust,1310374263 +27383,2329,Nazis,1310374266 +27383,2329,Neo-Nazis,1310374269 +27383,2329,politics,1310374271 +27383,2329,powerful ending,1310374273 +27383,2329,prison,1310374275 +27383,2329,racism,1310374277 +27383,2329,skinhead,1310374280 +27383,2329,tense,1310374281 +27383,2329,thought-provoking,1310374283 +27383,2329,Tragedy,1310374285 +27383,2329,violence,1310374289 +27383,2348,based on a true story,1311009018 +27383,2348,Betamax,1311009015 +27383,2348,bio,1311009011 +27383,2348,biographical,1311009008 +27383,2348,biography,1311008997 +27383,2348,Criterion,1311008995 +27383,2348,drugs,1311008993 +27383,2348,Gary Oldman,1311008989 +27383,2348,heroin,1311008987 +27383,2348,library,1311008983 +27383,2348,NYC,1311008980 +27383,2348,punk,1311008977 +27383,2348,punk rock,1311008974 +27383,2348,punks,1311008967 +27383,2348,rock and roll,1311008965 +27383,2348,true story,1311008962 +27383,2395,affectionate,1310019761 +27383,2395,Bill Murray,1310019758 +27383,2395,bittersweet,1310019755 +27383,2395,clever,1310019752 +27383,2395,coming of age,1310019749 +27383,2395,Criterion,1310019745 +27383,2395,deadpan,1310019742 +27383,2395,high school,1310019738 +27383,2395,HIGH SCHOOL LIFE,1310019735 +27383,2395,irreverent,1310019732 +27383,2395,literate,1310019730 +27383,2395,off-beat comedy,1310019726 +27383,2395,quirky,1310019723 +27383,2395,school drama,1310019721 +27383,2395,stylized,1310019719 +27383,2395,Wes Anderson,1310019717 +27383,2395,witty,1310019715 +27383,2455,body horror,1410870227 +27383,2455,changing species,1410870224 +27383,2455,creepy,1410870222 +27383,2455,David Cronenberg,1410870219 +27383,2455,effects,1410870217 +27383,2455,EXPERIMENTS GONE AWRY,1410870214 +27383,2455,gruesome,1410870212 +27383,2455,horror,1410870209 +27383,2455,insects,1410870206 +27383,2455,Jeff Goldblum,1410870204 +27383,2455,mad scientist,1410870202 +27383,2455,Nudity (Topless - Brief),1410870200 +27383,2455,remake,1410870196 +27383,2455,romance,1410870198 +27383,2455,sci-fi,1410870194 +27383,2455,science fiction,1410870193 +27383,2455,teleportation,1410870191 +27383,2455,tense,1410870189 +27383,2455,tragedy,1410870186 +27383,2455,transformation,1410870185 +27383,2459,atmospheric,1400935022 +27383,2459,dark,1400935022 +27383,2459,disturbing,1400935022 +27383,2459,gothic,1400935021 +27383,2459,horror,1400935022 +27383,2459,serial killer,1400935021 +27383,2459,slasher,1400935022 +27383,2459,tense,1400935022 +27383,2488,serial killer,1400934549 +27383,2505,mystery,1400935153 +27383,2505,serial killer,1400935153 +27383,2505,stylized,1400935162 +27383,2505,thriller,1400935153 +27383,2551,addiction,1311009251 +27383,2551,alter ego,1311009248 +27383,2551,based on a book,1311009245 +27383,2551,Betamax,1311009242 +27383,2551,brothers,1311009240 +27383,2551,Criterion,1311009237 +27383,2551,David Cronenberg,1311009235 +27383,2551,disturbing,1311009232 +27383,2551,doctors,1311009230 +27383,2551,drug abuse,1311009227 +27383,2551,drugs,1311009226 +27383,2551,mistaken identity,1311009222 +27383,2551,multiple roles,1311009219 +27383,2551,siblings,1311009214 +27383,2551,Tragedy,1311009209 +27383,2551,twins,1311009206 +27383,2551,twins/inter-related lives,1311009200 +27383,2571,Action,1310371520 +27383,2571,alternate reality,1310371525 +27383,2571,artificial intelligence,1310371530 +27383,2571,atmospheric,1310371534 +27383,2571,computers,1310371551 +27383,2571,cult film,1310371553 +27383,2571,cyberpunk,1310371555 +27383,2571,dystopia,1310371559 +27383,2571,fantasy,1310371562 +27383,2571,martial arts,1310371564 +27383,2571,philosophical,1310371567 +27383,2571,philosophy,1310371569 +27383,2571,post apocalyptic,1310371574 +27383,2571,post-apocalyptic,1310371576 +27383,2571,sci-fi,1310371579 +27383,2571,stylized,1310371581 +27383,2571,surreal,1310371583 +27383,2571,thought-provoking,1310371585 +27383,2571,virtual reality,1310371590 +27383,2600,alternate reality,1400940199 +27383,2600,dreamlike,1400940199 +27383,2600,mindfuck,1400940199 +27383,2600,virtual reality,1400940199 +27383,2657,aliens,1400937442 +27383,2657,androids,1400937443 +27383,2657,campy,1400937443 +27383,2657,cross dressing,1400937443 +27383,2657,cult classic,1400937442 +27383,2657,cult film,1400937443 +27383,2657,disturbing,1400937443 +27383,2657,homosexuality,1400937442 +27383,2657,insanity,1400937442 +27383,2657,murder,1400937442 +27383,2657,music,1400937442 +27383,2657,musical,1400937442 +27383,2657,parody,1400937443 +27383,2657,quirky,1400937442 +27383,2657,sexuality,1400937443 +27383,2657,transgender,1400937442 +27383,2692,alternate reality,1400933703 +27383,2716,mystery,1400934274 +27383,2762,afterlife,1400971839 +27383,2762,Atmospheric,1400971841 +27383,2762,Bruce Willis,1400971843 +27383,2762,death,1400971845 +27383,2762,Drama,1400971848 +27383,2762,enigmatic,1400971850 +27383,2762,excellent script,1400971853 +27383,2762,ghosts,1400971863 +27383,2762,great ending,1400971865 +27383,2762,horror,1400971871 +27383,2762,M. Night Shyamalan,1400971874 +27383,2762,mindfuck,1400971876 +27383,2762,plot twist,1400971879 +27383,2762,psychological,1400971883 +27383,2762,psychology,1400971885 +27383,2762,Shyamalan,1400971901 +27383,2762,stylized,1400971887 +27383,2762,suspense,1400971889 +27383,2762,thriller,1400971891 +27383,2762,twist ending,1400971893 +27383,2784,atmospheric,1340318496 +27383,2784,based on a short story,1340318486 +27383,2784,BD-R,1340318484 +27383,2784,devil worship,1340318492 +27383,2784,Edgar Allan Poe,1340318481 +27383,2784,erlend's DVDs,1340318472 +27383,2784,mystery,1340318478 +27383,2784,Scary Movies To See on Halloween,1340318475 +27383,2784,Vincent Price,1340318470 +27383,2784,visually appealing,1340318468 +27383,2841,mystery,1400934168 +27383,2853,horror,1400934885 +27383,2853,mystery,1400934885 +27383,2853,serial killer,1400934885 +27383,2858,black comedy,1310019178 +27383,2858,comedy,1310019180 +27383,2858,coming of age,1310019183 +27383,2858,dark comedy,1310019186 +27383,2858,drugs,1310019189 +27383,2858,Kevin Spacey,1310019191 +27383,2858,mental illness,1310019193 +27383,2858,midlife crisis,1310019196 +27383,2858,reflective,1310019198 +27383,2858,satire,1310019200 +27383,2858,sexuality,1310019202 +27383,2858,social commentary,1310019205 +27383,2858,surreal,1400972795 +27383,2858,surrealism,1310019207 +27383,2858,thought-provoking,1310019209 +27383,2858,violence,1310019211 +27383,2908,confrontational,1311009487 +27383,2908,cross dressing,1311009485 +27383,2908,disturbing,1311009483 +27383,2908,Drama,1311009481 +27383,2908,gay,1311009479 +27383,2908,great acting,1311009476 +27383,2908,homophobia,1311009474 +27383,2908,lesbian,1311009471 +27383,2908,lgbt,1311009469 +27383,2908,queer,1311009464 +27383,2908,rape,1311009462 +27383,2908,Sexualized violence,1311009460 +27383,2908,small town,1311009445 +27383,2908,touching,1311009443 +27383,2908,Tragedy,1311009441 +27383,2908,transgender,1311009438 +27383,2908,true story,1311009436 +27383,2916,alternate reality,1310371231 +27383,2916,alternate universe,1310371228 +27383,2916,Arnold Schwarzenegger,1310371226 +27383,2916,campy,1310371224 +27383,2916,conspiracy,1310371221 +27383,2916,cyberpunk,1310371218 +27383,2916,dystopia,1310371216 +27383,2916,espionage,1310371213 +27383,2916,heroism,1310371211 +27383,2916,mars,1310371209 +27383,2916,memory,1310371205 +27383,2916,murder,1310371202 +27383,2916,mutants,1310371200 +27383,2916,Philip K. Dick,1310371197 +27383,2916,politics,1310371195 +27383,2916,sci-fi,1310371192 +27383,2916,space travel,1310371190 +27383,2916,terrorism,1310371188 +27383,2916,virtual reality,1310371185 +27383,2959,action,1310018700 +27383,2959,atmospheric,1310018703 +27383,2959,based on a book,1310018706 +27383,2959,Brad Pitt,1310018718 +27383,2959,classic,1310018708 +27383,2959,complicated,1400939062 +27383,2959,dark comedy,1310018711 +27383,2959,disturbing,1310018713 +27383,2959,Edward Norton,1310018715 +27383,2959,insanity,1400937250 +27383,2959,mental illness,1310018722 +27383,2959,philosophical,1310018724 +27383,2959,philosophy,1310018726 +27383,2959,psychological,1310018729 +27383,2959,psychology,1310018731 +27383,2959,quirky,1310018734 +27383,2959,social commentary,1310018736 +27383,2959,surreal,1310018740 +27383,2959,thought-provoking,1310018743 +27383,2959,twist ending,1310018746 +27383,2959,violence,1310018748 +27383,2973,16.01.06,1400933148 +27383,2973,add to prospects list,1400933165 +27383,2973,adultery,1400933128 +27383,2973,banal philosophy,1400933126 +27383,2973,Bibliothek,1400933121 +27383,2973,DVD-Video,1400933119 +27383,2973,ending,1400933151 +27383,2973,erlend's DVDs,1400933111 +27383,2973,need to own,1400933162 +27383,2973,philosophical,1400933109 +27383,2973,realistic,1400933107 +27383,2973,seen,1400933175 +27383,2973,Woody Allen,1400933106 +27383,2973,Woody Allen classic,1400933104 +27383,2997,black comedy,1310018638 +27383,2997,Cameron Diaz,1310018635 +27383,2997,Charlie Kaufman,1310018641 +27383,2997,cult film,1310018645 +27383,2997,dark comedy,1310018647 +27383,2997,fantasy,1310018650 +27383,2997,hallucinatory,1310018651 +27383,2997,John Cusack,1310018653 +27383,2997,off-beat comedy,1310018655 +27383,2997,plot twist,1310018657 +27383,2997,psychology,1310018663 +27383,2997,quirky,1310018664 +27383,2997,satirical,1310018669 +27383,2997,sci-fi,1310018667 +27383,2997,surreal,1310018671 +27383,2997,surrealism,1310018674 +27383,2997,thought-provoking,1310018679 +27383,2997,twist ending,1310018682 +27383,2997,whimsical,1310018680 +27383,3075,atmospheric,1310384712 +27383,3075,black and white,1310384708 +27383,3075,Catherine Deneuve,1310384705 +27383,3075,claustrophobic,1310384703 +27383,3075,Criterion,1310384699 +27383,3075,eerie,1310384697 +27383,3075,gruesome,1310384694 +27383,3075,hallucinatory,1310384691 +27383,3075,insanity,1310384689 +27383,3075,library,1310384685 +27383,3075,loneliness,1310384682 +27383,3075,Madness,1310384681 +27383,3075,menacing,1310384678 +27383,3075,MENTAL ILLNESS,1310384675 +27383,3075,ominous,1310384673 +27383,3075,paranoid,1310384670 +27383,3075,rape,1310384668 +27383,3075,Roman Polanski,1310384666 +27383,3075,sisters,1310384663 +27383,3081,mystery,1400934300 +27383,3088,black and white,1400936902 +27383,3088,classic,1400936902 +27383,3088,comedy,1400936901 +27383,3088,funny,1400936902 +27383,3088,heartwarming,1400936902 +27383,3088,imaginary frined,1400936902 +27383,3088,james stewart,1400936902 +27383,3088,jimmy stewart,1400936902 +27383,3088,magic,1400936901 +27383,3088,mental illness,1400936902 +27383,3088,sweet,1400936901 +27383,3088,witty,1400936902 +27383,3176,1950s,1310384978 +27383,3176,based on a book,1310384976 +27383,3176,Cate Blanchett,1310384973 +27383,3176,creepy,1310384971 +27383,3176,crime,1310384969 +27383,3176,disturbing,1310384967 +27383,3176,Gwyneth Paltrow,1310384964 +27383,3176,italy,1310384962 +27383,3176,Jude Law,1310384960 +27383,3176,Matt Damon,1310384954 +27383,3176,murder,1310384957 +27383,3176,New York City,1310384950 +27383,3176,obsession,1310384948 +27383,3176,Philip Seymour Hoffman,1310384945 +27383,3176,Rome,1310384943 +27383,3176,secrets,1310384939 +27383,3176,serial killer,1310384936 +27383,3186,asylum,1400936850 +27383,3186,based on a true story,1400936850 +27383,3186,biography,1400936850 +27383,3186,bipolar,1400936850 +27383,3186,depression,1400936850 +27383,3186,drama,1400936850 +27383,3186,mental hospital,1400936850 +27383,3186,mental illness,1400936850 +27383,3186,psychology,1400936850 +27383,3186,suicide,1400936850 +27383,3186,true story,1400936850 +27383,3205,atmospheric,1340318438 +27383,3205,Barbara Steele,1340318440 +27383,3205,Bava,1340318443 +27383,3205,black and white,1340318445 +27383,3205,cinematography,1340318454 +27383,3205,gothic,1340318449 +27383,3205,VHS,1340318457 +27383,3355,mystery,1400934324 +27383,3476,multiple realities,1348103861 +27383,3476,nonlinear,1348103855 +27383,3476,Nudity (Topless),1348103850 +27383,3476,occult,1348103848 +27383,3476,paranoia,1348103845 +27383,3476,psychiatry,1348103834 +27383,3476,Psychological horror,1348103823 +27383,3476,surreal,1348103784 +27383,3476,Tim Robbins,1348103786 +27383,3476,twist ending,1348103821 +27383,3476,visionary,1348103782 +27383,3535,1980s,1310375409 +27383,3535,based on a book,1310375406 +27383,3535,business,1310375404 +27383,3535,Christian Bale,1310375401 +27383,3535,fantasy world,1310375398 +27383,3535,funny,1310375396 +27383,3535,grim,1310375394 +27383,3535,humorous,1310375391 +27383,3535,insanity,1310375389 +27383,3535,literary adaptation,1310375387 +27383,3535,murder,1310375383 +27383,3535,new york,1310375380 +27383,3535,psychological,1310375378 +27383,3535,psychology,1310375375 +27383,3535,Reese Witherspoon,1310375374 +27383,3535,serial killer,1310375371 +27383,3535,violence,1310375369 +27383,3535,Willem Dafoe,1310375369 +27383,3546,Bette Davis,1310384741 +27383,3546,insanity,1310384743 +27383,3546,jealousy,1310384782 +27383,3546,kidnapping,1310384785 +27383,3546,psychological thriller,1310384751 +27383,3546,Robert Aldrich,1310384756 +27383,3546,show business,1310384754 +27383,3546,sibling rivalry,1310384789 +27383,3546,sisters,1310384791 +27383,3556,1970s,1310019586 +27383,3556,Adaptation,1310019584 +27383,3556,atmospheric,1310019582 +27383,3556,based on a book,1310019579 +27383,3556,coming of age,1310019577 +27383,3556,directorial debut,1310019572 +27383,3556,dreamlike,1310019570 +27383,3556,enigmatic,1310019568 +27383,3556,great ending,1310019566 +27383,3556,high school,1310019564 +27383,3556,Kirsten Dunst,1310019562 +27383,3556,melancholy,1310019560 +27383,3556,narrated,1310019558 +27383,3556,psychology,1310019556 +27383,3556,reflective,1310019555 +27383,3556,stylized,1310019553 +27383,3556,suburbia,1310019549 +27383,3556,suicide,1310019551 +27383,3556,visually appealing,1310019547 +27383,3627,atmospheric,1310213466 +27383,3627,carnival,1310213468 +27383,3627,Criterion,1310213470 +27383,3627,dreamlike,1310213472 +27383,3627,ghosts,1310213476 +27383,3627,low budget,1310213478 +27383,3627,organ,1310213489 +27383,3627,Scary Movies To See on Halloween,1310213481 +27383,3686,alternate reality,1400933794 +27383,3863,alternate reality,1400933824 +27383,3863,atmospheric,1400935428 +27383,3863,dreams,1400935428 +27383,3863,serial killer,1400935428 +27383,3863,stylized,1400935428 +27383,3863,surreal,1400935428 +27383,3863,virtual reality,1400940107 +27383,3897,1970s,1400939585 +27383,3897,bittersweet,1400939574 +27383,3897,coming of age,1400939644 +27383,3897,coming-of-age,1400939644 +27383,3897,drama,1400939667 +27383,3897,humorous,1400939644 +27383,3897,innocence lost,1400939644 +27383,3897,journalism,1400939644 +27383,3897,love,1400939644 +27383,3897,magazine,1400939569 +27383,3897,music,1400939644 +27383,3897,musical,1400939644 +27383,3897,nostalgia,1400939644 +27383,3897,nostaligic,1400939644 +27383,3897,Philip Seymour Hoffman,1400939661 +27383,3897,rock and roll,1400939695 +27383,3897,teen,1400939686 +27383,3897,writer,1400939565 +27383,3897,writers,1400939561 +27383,3897,zoeey deschanel,1400939681 +27383,3911,absurd,1310581756 +27383,3911,Christopher Guest,1310581758 +27383,3911,comedy,1310581760 +27383,3911,dark comedy,1310581763 +27383,3911,documentary critique,1310581767 +27383,3911,dogs,1310581769 +27383,3911,Fred Willard,1310581772 +27383,3911,funny,1310581774 +27383,3911,Funny as hell,1310581776 +27383,3911,hilarious,1310581778 +27383,3911,improvised,1310581781 +27383,3911,mockumentary,1310581783 +27383,3911,Parker Posey,1310581785 +27383,3911,quirky,1310581788 +27383,3911,satire,1310581790 +27383,3911,silly,1310581805 +27383,3949,addiction,1310018579 +27383,3949,atmospheric,1310018515 +27383,3949,based on a book,1310018575 +27383,3949,dark,1310018517 +27383,3949,depressing,1310018586 +27383,3949,disturbing,1310018591 +27383,3949,drugs,1310018544 +27383,3949,emotional,1310018526 +27383,3949,heroin,1310018537 +27383,3949,loneliness,1310018570 +27383,3949,prostitution,1310018565 +27383,3949,psychological,1310018563 +27383,3949,psychology,1310018561 +27383,3949,revenge,1310018558 +27383,3949,social commentary,1310018552 +27383,3949,visually appealing,1310018549 +27383,4148,atmospheric,1400935529 +27383,4148,disturbing,1400935529 +27383,4148,revenge,1400935529 +27383,4148,serial killer,1400935529 +27383,4148,stylized,1400935529 +27383,4195,atmospheric,1400935205 +27383,4195,horror,1400935205 +27383,4195,revenge,1400935205 +27383,4195,serial killer,1400935205 +27383,4226,black and white,1310019306 +27383,4226,complicated,1310019309 +27383,4226,cult film,1310019311 +27383,4226,dark,1310019314 +27383,4226,death,1310019319 +27383,4226,dreamlike,1310019321 +27383,4226,great ending,1400971423 +27383,4226,investigation,1310019323 +27383,4226,memory,1310019329 +27383,4226,narrated,1310019325 +27383,4226,nonlinear,1310019331 +27383,4226,paranoia,1310019333 +27383,4226,paranoid,1310019336 +27383,4226,psychological,1310019338 +27383,4226,psychology,1310019340 +27383,4226,revenge,1310019341 +27383,4226,stylized,1310019344 +27383,4226,tense,1310019346 +27383,4226,twist ending,1310019348 +27383,4226,violence,1310019351 +27383,4235,brother-brother relationship,1310202972 +27383,4235,car chase,1310202969 +27383,4235,dogs,1310202967 +27383,4235,episodic,1310202965 +27383,4235,EXTRAMARITAL AFFAIRS,1310202962 +27383,4235,father daughter relationship,1310202958 +27383,4235,gambling,1310202952 +27383,4235,hitman,1310202949 +27383,4235,imdb top 250,1310202946 +27383,4235,independent film,1310202944 +27383,4235,kidnapping,1310202940 +27383,4235,Latin America,1310202937 +27383,4235,Mexican,1310202934 +27383,4235,Mexico,1310202932 +27383,4235,models,1310202930 +27383,4235,money,1310202922 +27383,4235,multiple storylines,1310202920 +27383,4235,rats,1310202917 +27383,4235,violence,1310202919 +27383,4380,accident,1386887229 +27383,4380,brothers,1386887227 +27383,4380,HAUNTED BY THE PAST,1386887224 +27383,4380,heist,1386887222 +27383,4380,incest,1386887219 +27383,4380,intertwined,1386887217 +27383,4380,loneliness,1386887213 +27383,4380,male nudity,1386887211 +27383,4380,mental hospital,1386887209 +27383,4380,nurse,1386887206 +27383,4380,patient,1386887202 +27383,4380,Tom Tykwer,1386887197 +27383,4403,adapted from:book,1340318657 +27383,4403,based on a short story,1340318570 +27383,4403,buried alive,1340318584 +27383,4403,Edgar Allan Poe,1340318577 +27383,4403,erlend's DVDs,1340318568 +27383,4403,fire,1340318557 +27383,4403,gothic,1340318555 +27383,4403,horror,1340318544 +27383,4403,incest,1340318542 +27383,4403,National Film Registry,1340318538 +27383,4403,premature burial,1340318531 +27383,4403,remake,1340318534 +27383,4403,Richard Matheson,1340318526 +27383,4403,Scary Movies To See on Halloween,1340318523 +27383,4403,servant,1340318520 +27383,4403,vhs,1340318513 +27383,4403,Vincent Price,1340318507 +27383,4437,atmospheric,1335012013 +27383,4437,breaking glass,1335012092 +27383,4437,creepy,1335012019 +27383,4437,Dario Argento,1335012022 +27383,4437,dreamlike,1335012024 +27383,4437,eerie,1335012026 +27383,4437,Giallo,1335012028 +27383,4437,hallucinatory,1335012033 +27383,4437,head through glass,1335012095 +27383,4437,serial killer,1400935622 +27383,4437,Udo Kier,1335012106 +27383,4437,witchcraft,1400935629 +27383,4437,witches,1335012087 +27383,4450,Bijou Phillips,1311009286 +27383,4450,Brad Renfro,1311009288 +27383,4450,bullying,1311009283 +27383,4450,Jim Schutze,1311009295 +27383,4450,Kelli Garner,1311009292 +27383,4450,Larry Clark,1311009278 +27383,4450,Leo Fitzpatrick,1311009276 +27383,4450,Nick Stahl,1311009272 +27383,4450,Rachel Miner,1311009270 +27383,4450,rape,1311009267 +27383,4450,revenge,1311009264 +27383,4450,true story,1311009262 +27383,4641,adolescence,1310019704 +27383,4641,based on a comic,1310019702 +27383,4641,bittersweet,1310019699 +27383,4641,comic book,1310019697 +27383,4641,coming of age,1310019694 +27383,4641,deadpan,1310019692 +27383,4641,depressing,1310019690 +27383,4641,enigmatic,1310019688 +27383,4641,high school,1310019686 +27383,4641,indie,1310019684 +27383,4641,intimate,1310019682 +27383,4641,ironic,1310019679 +27383,4641,quirky,1310019675 +27383,4641,reflective,1310019673 +27383,4641,Scarlett Johansson,1310019670 +27383,4641,Steve Buscemi,1310019668 +27383,4641,stylized,1310019667 +27383,4641,suburbia,1310019665 +27383,4642,based on a book,1310375139 +27383,4642,based on a play,1310375136 +27383,4642,bittersweet,1310375134 +27383,4642,campy,1310375130 +27383,4642,classic,1310375128 +27383,4642,cult film,1310375126 +27383,4642,dark,1310375124 +27383,4642,directorial debut,1310375122 +27383,4642,East Germany,1310375120 +27383,4642,funny,1310375118 +27383,4642,Germany,1310375115 +27383,4642,great soundtrack,1310375111 +27383,4642,music,1310375108 +27383,4642,musical,1310375106 +27383,4642,musicians,1310375105 +27383,4642,poignant,1310375102 +27383,4642,quirky,1310375100 +27383,4642,sexuality,1310375098 +27383,4642,stylized,1310375094 +27383,4642,transgender,1310375092 +27383,4658,Alejandro Jodorowsky,1311009073 +27383,4658,atmospheric,1311009070 +27383,4658,Betamax,1311009067 +27383,4658,cerebral,1311009064 +27383,4658,clowns,1311009061 +27383,4658,creepy,1311009058 +27383,4658,disturbing,1311009055 +27383,4658,Down syndrome,1311009053 +27383,4658,eerie,1311009046 +27383,4658,enigmatic,1311009044 +27383,4658,Jodorowsky,1311009042 +27383,4658,stylized,1311009039 +27383,4658,tense,1311009032 +27383,4658,vhs,1311009030 +27383,4658,visceral,1311009027 +27383,4720,afterlife,1400938952 +27383,4720,alternate reality,1400938952 +27383,4720,atmospheric,1400938952 +27383,4720,beautiful,1400938952 +27383,4720,clever,1400938952 +27383,4720,dark,1400938952 +27383,4720,death,1400938951 +27383,4720,ghosts,1400938952 +27383,4720,gothic,1400938951 +27383,4720,haunted house,1400938952 +27383,4720,horror,1400938952 +27383,4720,isolation,1400938952 +27383,4720,supernatural,1400938952 +27383,4720,surprise ending,1400938909 +27383,4720,twist ending,1400938909 +27383,4725,abandoned buildings,1310843093 +27383,4725,bad pacing,1310843097 +27383,4725,brian sexton iii,1310843089 +27383,4725,creepy,1310843086 +27383,4725,dark,1310843081 +27383,4725,family relationships,1310843079 +27383,4725,Josh Lucas,1310843076 +27383,4725,mask,1310843074 +27383,4725,mental hospital,1310843070 +27383,4725,multiple personalities,1310843065 +27383,4725,nyctophobia,1310843063 +27383,4725,Psychological Horror,1310843059 +27383,4725,psychology,1310843057 +27383,4725,scary,1310843056 +27383,4725,serial killer,1310843054 +27383,4725,suspense,1310843053 +27383,4754,atmospheric,1311009836 +27383,4754,Christopher Lee,1311009834 +27383,4754,cult,1311009830 +27383,4754,cult film,1311009826 +27383,4754,disturbing,1311009824 +27383,4754,eerie,1311009821 +27383,4754,enigmatic,1311009817 +27383,4754,island,1311009813 +27383,4754,OBSESSIVE QUESTS,1311009810 +27383,4754,ominous,1311009807 +27383,4754,pagan,1311009805 +27383,4754,religion,1311009802 +27383,4754,RELIGIOUS ZEALOTRY,1311009800 +27383,4754,remade,1311009798 +27383,4754,sexual,1311009794 +27383,4754,small town,1311009791 +27383,4754,TRAPPED OR CONFINED,1311009788 +27383,4754,twist ending,1311009787 +27383,4833,haunted house,1340318767 +27383,4833,melancholy,1340318757 +27383,4833,Peter Medak,1340318742 +27383,4833,somber,1340318746 +27383,4848,amnesia,1310385208 +27383,4848,Atmospheric,1310385206 +27383,4848,dark,1310385204 +27383,4848,David Lynch,1310385202 +27383,4848,disturbing,1310385200 +27383,4848,drama,1310385197 +27383,4848,dreamlike,1310385196 +27383,4848,Enigmatic,1310385193 +27383,4848,hallucinatory,1310385191 +27383,4848,lesbian,1310385189 +27383,4848,movie business,1310385187 +27383,4848,mystery,1310385185 +27383,4848,nonlinear,1310385183 +27383,4848,sexual,1310385181 +27383,4848,stylized,1310385176 +27383,4848,surreal,1310385175 +27383,4848,surrealism,1310385173 +27383,4848,thriller,1310385171 +27383,4865,atmospheric,1400935448 +27383,4865,dark,1400936565 +27383,4865,england,1400936565 +27383,4865,gothic,1400936565 +27383,4865,historical,1400936565 +27383,4865,horror,1400936565 +27383,4865,insanity,1400937868 +27383,4865,mental illness,1400936565 +27383,4865,mystery,1400934182 +27383,4865,prostitution,1400936565 +27383,4865,serial killer,1400935448 +27383,4865,thriller,1400935448 +27383,4873,alternate reality,1400933724 +27383,4873,dreamlike,1400940370 +27383,4873,dreams,1400940370 +27383,4873,memory,1400940370 +27383,4878,alternate timeline,1310019362 +27383,4878,atmospheric,1310019364 +27383,4878,complicated,1400939036 +27383,4878,cult film,1310019367 +27383,4878,dreamlike,1310019369 +27383,4878,high school,1310019371 +27383,4878,insanity,1400937236 +27383,4878,mental illness,1310019374 +27383,4878,philosophy,1310019376 +27383,4878,psychological,1310019378 +27383,4878,psychology,1310019380 +27383,4878,quirky,1310019383 +27383,4878,satirical,1310019385 +27383,4878,sci-fi,1310019388 +27383,4878,social commentary,1310019390 +27383,4878,stylized,1310019392 +27383,4878,surreal,1310019394 +27383,4878,thought-provoking,1310019396 +27383,4878,time travel,1310019398 +27383,4878,twist ending,1310019360 +27383,4979,Ben Stiller,1310580783 +27383,4979,Bill Murray,1310580780 +27383,4979,black comedy,1310580779 +27383,4979,comedy,1310580776 +27383,4979,dark comedy,1310580774 +27383,4979,dysfunctional family,1310580772 +27383,4979,ensemble cast,1310580770 +27383,4979,family,1310580752 +27383,4979,family dynamics,1310580749 +27383,4979,Gene Hackman,1310580747 +27383,4979,great soundtrack,1310580744 +27383,4979,love,1310580741 +27383,4979,narrated,1310580739 +27383,4979,new york,1310580737 +27383,4979,Owen Wilson,1310580732 +27383,4979,quirky,1310580729 +27383,4979,stylized,1310580728 +27383,4979,Wes Anderson,1310580726 +27383,4979,witty,1310580724 +27383,4995,biography,1400935962 +27383,4995,college,1400935962 +27383,4995,insanity,1400935962 +27383,4995,inspirational,1400935962 +27383,4995,mental illness,1400935962 +27383,4995,psychology,1400935931 +27383,4995,romance,1400935931 +27383,4995,schizophrenia,1400935914 +27383,4995,true story,1400935914 +27383,4995,twist ending,1400935914 +27383,5105,atmospheric,1340318322 +27383,5105,creepy,1340318324 +27383,5105,DEATH OF A CHILD,1340318371 +27383,5105,deliberate,1340318375 +27383,5105,Donald Sutherland,1340318327 +27383,5105,dreamlike,1340318329 +27383,5105,erlend's DVDs,1340318351 +27383,5105,gothic,1340318342 +27383,5105,HAUNTED BY THE PAST,1340318344 +27383,5105,Julie Christie,1340318348 +27383,5105,macabre,1340318355 +27383,5105,Nicolas Roeg,1340318357 +27383,5105,NIGHTMARE VACATIONS,1340318361 +27383,5105,Nudity (Topless - Notable),1340318397 +27383,5105,Nudity (Topless),1340318394 +27383,5105,PSYCHIC ABILITIES,1340318384 +27383,5105,somber,1340318367 +27383,5105,Tumey's DVDs,1340318369 +27383,5265,adultery,1310580700 +27383,5265,Black Comedy,1310580702 +27383,5265,Catherine Keener,1310580705 +27383,5265,Danny DeVito,1310580707 +27383,5265,dark comedy,1310580709 +27383,5265,Edward Norton,1310580712 +27383,5265,Robin Williams,1310580714 +27383,5265,setting:television show,1310580715 +27383,5294,brothers,1400937624 +27383,5294,father-son relationship,1400937635 +27383,5294,insanity,1400935248 +27383,5294,mental illness,1400936001 +27383,5294,morally complex,1400937694 +27383,5294,narrated,1400937659 +27383,5294,original,1400937665 +27383,5294,religion,1400936015 +27383,5294,religious,1400936015 +27383,5294,serial killer,1400935248 +27383,5294,siblings,1400936015 +27383,5294,twist ending,1400936001 +27383,5294,Underrated,1400936001 +27383,5421,Kieran Culkin,1310018292 +27383,5421,private school,1310018269 +27383,5421,revenge,1310018273 +27383,5421,typical coming of age story,1310018280 +27383,5445,mystery,1400934316 +27383,5451,biting,1400937093 +27383,5451,bizarre,1400937093 +27383,5451,deadpan,1400937092 +27383,5451,disability,1400937093 +27383,5451,irreverent,1400937093 +27383,5451,mental illness,1400937093 +27383,5451,quirky,1400937092 +27383,5451,satirical,1400937093 +27383,5577,adolescence,1310018410 +27383,5577,alone,1310018412 +27383,5577,Claire Danes,1310018381 +27383,5577,cynical,1310018328 +27383,5577,dark humor,1310018332 +27383,5577,dramedy,1310018350 +27383,5577,family,1310018354 +27383,5577,Jeff Goldblum,1310018336 +27383,5577,quirky,1310018368 +27383,5577,Ryan Phillippe,1310018383 +27383,5617,BDSM,1310018453 +27383,5617,black comedy,1310018455 +27383,5617,dark comedy,1310018457 +27383,5617,erotic,1310018459 +27383,5617,forbidden love,1310018462 +27383,5617,Maggie Gyllenhaal,1310018466 +27383,5617,quirky,1310018471 +27383,5617,relationships,1310018488 +27383,5617,romance,1310018490 +27383,5617,sex,1310018476 +27383,5617,sexuality,1310018478 +27383,5617,workplace,1310018480 +27383,5630,serial killer,1400935488 +27383,5666,Adaptation,1310831095 +27383,5666,based on a book,1310831092 +27383,5666,bisexual,1310831090 +27383,5666,Brett Easton Ellis,1310831098 +27383,5666,college,1310831087 +27383,5666,drinking,1310831104 +27383,5666,drugs,1310831081 +27383,5666,funny,1310831078 +27383,5666,gay,1310831076 +27383,5666,Jessica Biel,1310831073 +27383,5666,literary adaptation,1310831070 +27383,5666,narrated,1310831069 +27383,5666,obsession,1310831067 +27383,5666,queer,1310831064 +27383,5666,sarcasm,1310831062 +27383,5666,social commentary,1310831060 +27383,5666,suicide attempt,1310831057 +27383,5666,violence,1310831055 +27383,5666,witty,1310831053 +27383,5679,mystery,1400934146 +27383,5782,action,1410869298 +27383,5782,based on a book,1410869301 +27383,5782,easily confused with other movie(s) (title),1410869252 +27383,5782,explosions,1410869307 +27383,5782,fooling the police,1410869312 +27383,5782,France,1410869314 +27383,5782,french,1410869317 +27383,5782,great story of love and emotions,1410869334 +27383,5782,guns,1410869321 +27383,5782,interesting,1410869287 +27383,5782,Jean Reno,1410869284 +27383,5782,Jean-Paul Belmondo,1410869277 +27383,5782,Luc Besson,1410869272 +27383,5782,Natalie Portman,1410869274 +27383,5782,Not Luc Besson,1410869270 +27383,5782,Paris,1410869266 +27383,5782,romance,1410869262 +27383,5782,Transition from killer to protector,1410869260 +27383,5782,unpredictable,1410869257 +27383,5782,visually appealing,1410869255 +27383,5878,Almodovar,1386886951 +27383,5878,coma,1386886922 +27383,5878,compassionate,1386886923 +27383,5878,drama,1386886926 +27383,5878,Film Theory & Criticism,1386886929 +27383,5878,friendship,1386886931 +27383,5878,loneliness,1386886934 +27383,5878,Nudity (Topless - Notable),1386886938 +27383,5878,Nudity (Topless),1386886944 +27383,5878,Pedro Almodóvar,1386886949 +27383,5878,pedro almodovar,1386886947 +27383,5878,psychology,1386886913 +27383,5878,rape,1386886915 +27383,5878,relationships,1386886917 +27383,5878,sexuality,1386886954 +27383,5878,spanish,1386886957 +27383,5878,Tragedy,1386886919 +27383,5881,memory,1400940347 +27383,5902,based on a book,1310580939 +27383,5902,black comedy,1310580944 +27383,5902,Charlie Kaufman,1310580946 +27383,5902,comedy,1310580948 +27383,5902,crime,1310580950 +27383,5902,dark comedy,1310580953 +27383,5902,drama,1310580957 +27383,5902,drugs,1310580959 +27383,5902,John Cusack,1310580961 +27383,5902,melancholy,1310580964 +27383,5902,narrated,1310580967 +27383,5902,New York City,1310580969 +27383,5902,Nicolas Cage,1310580972 +27383,5902,quirky,1310580974 +27383,5902,romance,1310580976 +27383,5902,schizophrenia,1310580978 +27383,5902,surreal,1310580980 +27383,5902,writer,1400939547 +27383,5902,writers,1400939550 +27383,5980,BD-R,1340318724 +27383,5980,Bob Clark,1340318729 +27383,5980,Christmas,1340318685 +27383,5980,creepy,1340318716 +27383,5980,disturbing,1340318713 +27383,5980,forceful,1340318711 +27383,5980,gruesome,1340318708 +27383,5980,menacing,1340318705 +27383,5980,Olivia Hussey,1340318702 +27383,5980,remade,1340318698 +27383,5980,slasher,1340318695 +27383,5980,tense,1340318689 +27383,5980,visceral,1340318688 +27383,6323,mystery,1400934307 +27383,6323,serial killer,1400935473 +27383,6323,surreal,1400935473 +27383,6323,suspense,1400935473 +27383,6323,thriller,1400935473 +27383,6365,action,1400972568 +27383,6365,alternate reality,1400940017 +27383,6365,artificial human,1400940017 +27383,6365,artificial intelligence,1400972565 +27383,6365,car chase,1400972562 +27383,6365,cyberpunk,1400940017 +27383,6365,dystopia,1400940044 +27383,6365,existentialism,1400940044 +27383,6365,fight scenes,1400972556 +27383,6365,future,1400940044 +27383,6365,Keanu Reeves,1400972553 +27383,6365,magic,1400940044 +27383,6365,martial arts,1400972551 +27383,6365,philosophy,1400940044 +27383,6365,Post apocalyptic,1400940044 +27383,6365,post-apocalyptic,1400940051 +27383,6365,sci-fi,1400940069 +27383,6365,super-hero,1400972546 +27383,6365,technology,1400940069 +27383,6365,thought-provoking,1400940069 +27383,6365,virtual reality,1400940017 +27383,6396,black and white,1400936793 +27383,6396,Francis Ford Coppola,1400936778 +27383,6396,guilt,1400936778 +27383,6396,mental illness,1400936793 +27383,6396,slasher,1400936778 +27383,6530,atmospheric,1310385103 +27383,6530,claustrophobic,1310385109 +27383,6530,hallucinatory,1310385111 +27383,6530,menacing,1310385113 +27383,6530,mental illness,1310385116 +27383,6530,mummy,1310385119 +27383,6530,ominous,1310385121 +27383,6530,paranoid,1310385123 +27383,6530,quirky,1310385126 +27383,6530,Roman Polanski,1310385129 +27383,6530,suicide,1310385131 +27383,6530,unreliable narrators,1310385134 +27383,6530,wry,1310385136 +27383,6639,1960s,1410869374 +27383,6639,AFI 100 (Thrills),1410869375 +27383,6639,Alan Arkin,1410869378 +27383,6639,Audrey,1410869379 +27383,6639,Audrey Hepburn,1410869381 +27383,6639,Bechdel Test:Fail,1410869384 +27383,6639,Bechdel Test:Pass,1410869386 +27383,6639,blind woman,1410869398 +27383,6639,blindness,1410869392 +27383,6639,classic thriller,1410869400 +27383,6639,con artists,1410869410 +27383,6639,crime,1410869368 +27383,6639,disability,1410869366 +27383,6639,Frightening,1410869342 +27383,6639,obnoxious kid,1410869350 +27383,6639,tense,1410869352 +27383,6639,Terence Young,1410869354 +27383,6639,thriller,1410869356 +27383,6852,adapted from:book,1375774452 +27383,6852,author:Truman Capote,1375774454 +27383,6852,based on a book,1375774456 +27383,6852,BD-R,1375774462 +27383,6852,black and white,1375774466 +27383,6852,brutal,1375774469 +27383,6852,Capote,1375774472 +27383,6852,crime,1375774475 +27383,6852,death penalty,1375774479 +27383,6852,erlend's DVDs,1375774481 +27383,6852,kansas,1375774484 +27383,6852,mexico,1375774485 +27383,6852,murder,1375774487 +27383,6852,National Film Registry,1375774489 +27383,6852,one of the 10 best movies ever made.,1375774511 +27383,6852,Richard Brooks,1375774514 +27383,6852,suspense,1375774517 +27383,6852,true story,1375774520 +27383,6852,Truman Capote,1375774523 +27383,6852,Tumey's DVDs,1375774519 +27383,6874,action,1310019036 +27383,6874,assassin,1310019034 +27383,6874,cinematography,1310019038 +27383,6874,Crime,1310019032 +27383,6874,funny,1310019029 +27383,6874,Japan,1310019027 +27383,6874,kung fu,1310019024 +27383,6874,martial arts,1310019022 +27383,6874,nonlinear,1310019010 +27383,6874,Quentin Tarantino,1310019003 +27383,6874,quirky,1310019008 +27383,6874,revenge,1310019005 +27383,6874,stylized,1310019006 +27383,6874,Tarantino,1310019000 +27383,6874,Uma Thurman,1310018991 +27383,6874,violence,1310018998 +27383,6874,violent,1310018996 +27383,6874,visually appealing,1310018988 +27383,6934,action,1400972381 +27383,6934,alternate reality,1400940126 +27383,6934,apocalypse,1400972383 +27383,6934,artificial intelligence,1400972385 +27383,6934,cyberpunk,1400940126 +27383,6934,dystopia,1400940126 +27383,6934,fantasy,1400972390 +27383,6934,future,1400972393 +27383,6934,Keanu Reeves,1400972395 +27383,6934,martial arts,1400972398 +27383,6934,Martin Scorsese,1400972400 +27383,6934,Philosophical,1400972402 +27383,6934,philosophy,1400972404 +27383,6934,Post apocalyptic,1400972407 +27383,6934,post-apocalyptic,1400972409 +27383,6934,robots,1400972412 +27383,6934,Romance,1400972423 +27383,6934,sci-fi,1400972425 +27383,6934,sequel,1400972430 +27383,6934,thriller,1400972428 +27383,6934,virtual reality,1400940126 +27383,7013,atmospheric,1310371624 +27383,7013,creepy,1310371626 +27383,7013,Criterion,1310371629 +27383,7013,dreamlike,1310371633 +27383,7013,eerie,1310371635 +27383,7013,film noir,1310371638 +27383,7013,good and evil,1310371640 +27383,7013,hanging,1310371644 +27383,7013,lyrical,1310371659 +27383,7013,menacing,1310371664 +27383,7013,National Film Registry,1310371668 +27383,7013,ominous,1310371674 +27383,7013,serial killer,1400934834 +27383,7013,stylized,1310371676 +27383,7013,thriller,1310371680 +27383,7115,serial killer,1400934801 +27383,7115,stylized,1400934801 +27383,7160,based on a true story,1400936165 +27383,7160,biography,1400936166 +27383,7160,crime,1400936165 +27383,7160,dark,1400936165 +27383,7160,depressing,1400936166 +27383,7160,drama,1400936166 +27383,7160,lesbian,1400936165 +27383,7160,mental illness,1400936166 +27383,7160,murder,1400935182 +27383,7160,prostitution,1400936165 +27383,7160,rape,1400936166 +27383,7160,serial killer,1400935182 +27383,7160,true story,1400935182 +27383,7254,memory,1400940382 +27383,7254,mystery,1400934338 +27383,7265,1960s,1311009190 +27383,7265,activism,1311009187 +27383,7265,Bernardo Bertolucci,1311009185 +27383,7265,boheme,1311009182 +27383,7265,cineastic,1311009175 +27383,7265,erotic,1311009172 +27383,7265,french,1311009170 +27383,7265,incest,1311009168 +27383,7265,indecent,1311009165 +27383,7265,library,1311009161 +27383,7265,male nudity,1311009159 +27383,7265,Paris,1311009156 +27383,7265,sexual,1311009154 +27383,7361,alternate reality,1310019460 +27383,7361,bittersweet,1310019462 +27383,7361,Charlie Kaufman,1310019457 +27383,7361,complicated,1400939054 +27383,7361,cult film,1310019454 +27383,7361,dreamlike,1310019449 +27383,7361,Jim Carrey,1310019447 +27383,7361,memory,1310019444 +27383,7361,New York City,1310019442 +27383,7361,nonlinear,1310019440 +27383,7361,philosophy,1310019438 +27383,7361,psychology,1310019436 +27383,7361,quirky,1310019433 +27383,7361,sci-fi,1310019431 +27383,7361,surreal,1310019428 +27383,7361,surrealism,1310019426 +27383,7361,thought-provoking,1310019424 +27383,7460,Alfred Molina,1310581019 +27383,7460,Atmospheric,1310581021 +27383,7460,Bill Murray,1310581024 +27383,7460,black and white,1310581027 +27383,7460,Cate Blanchett,1310581029 +27383,7460,deadpan,1310581032 +27383,7460,dialogue,1310581034 +27383,7460,dialogue driven,1310581036 +27383,7460,episodic,1310581039 +27383,7460,Jack White,1310581041 +27383,7460,Jim Jarmusch,1310581046 +27383,7460,minimalist,1310581048 +27383,7460,no plot,1310581051 +27383,7460,Roberto Benigni,1310581054 +27383,7460,smoking,1310581056 +27383,7460,Steve Buscemi,1310581058 +27383,7460,surreal,1310581061 +27383,7460,talky,1310581063 +27383,7460,Tom Waits,1310581066 +27383,7460,wry,1310581069 +27383,7493,Dissociative identity disorder,1400936468 +27383,7493,mental illness,1400936462 +27383,7493,multiple personality disorder,1400936461 +27383,7493,psychology,1400936462 +27383,7493,schizophrenia,1400936461 +27383,7939,incestuous,1386887393 +27383,8507,atmospheric,1310384805 +27383,8507,banned movie,1310384807 +27383,8507,black and white,1310384809 +27383,8507,circus,1310384811 +27383,8507,classic,1310384813 +27383,8507,controversial,1310384816 +27383,8507,creepy,1310384818 +27383,8507,cult classic,1310384821 +27383,8507,cult film,1310384822 +27383,8507,dark,1310384824 +27383,8507,disturbing,1310384826 +27383,8507,eerie,1310384828 +27383,8507,freaks,1310384831 +27383,8507,gruesome,1310384833 +27383,8507,menacing,1310384848 +27383,8507,National Film Registry,1310384843 +27383,8507,short,1310384851 +27383,8507,strange,1310384855 +27383,8507,surreal,1400972735 +27383,8507,surrealism,1400972738 +27383,8507,tense,1310384859 +27383,8507,touching,1310384862 +27383,8521,classic,1400935092 +27383,8521,murder,1400935092 +27383,8521,serial killer,1400935092 +27383,8783,Adrien Brody,1400972015 +27383,8783,atmospheric,1400971467 +27383,8783,blindness,1400971467 +27383,8783,disability,1400971467 +27383,8783,great ending,1400971467 +27383,8783,Joaquin Phoenix,1400971480 +27383,8783,M. Night Shyamalan,1400971488 +27383,8783,psychological,1400971508 +27383,8783,secrets,1400971508 +27383,8783,Shyamalan,1400971508 +27383,8783,Sigourney Weaver,1400971518 +27383,8783,surprise ending,1400971526 +27383,8783,suspense,1400971530 +27383,8783,thought-provoking,1400971544 +27383,8783,underrated,1400971557 +27383,8910,business,1310581626 +27383,8910,detective,1310581624 +27383,8910,Dustin Hoffman,1310581620 +27383,8910,existentialism,1310581617 +27383,8910,funny,1310581615 +27383,8910,head movie,1310581613 +27383,8910,intelligent,1310581610 +27383,8910,ironic,1310581607 +27383,8910,Irony,1310581605 +27383,8910,Italian,1310581603 +27383,8910,Jude Law,1310581601 +27383,8910,Mark Wahlberg,1310581591 +27383,8910,mindless one liners,1310581585 +27383,8910,Naomi Watts,1310581598 +27383,8910,philosophy,1310581578 +27383,8910,satire,1310581580 +27383,8910,stylized,1310581536 +27383,8910,whimsical,1310581534 +27383,8914,cerebral,1400939290 +27383,8914,clever,1400939291 +27383,8914,complicated,1400939291 +27383,8914,complicated plot,1400939290 +27383,8914,disturbing,1400939291 +27383,8914,EXPERIMENTS GONE AWRY,1400939309 +27383,8914,intellectual,1400939290 +27383,8914,intelligent,1400939290 +27383,8914,low budget,1400939291 +27383,8914,mindfuck,1400939290 +27383,8914,nonlinear,1400939291 +27383,8914,sci-fi,1400939290 +27383,8914,science,1400939291 +27383,8914,science fiction,1400939290 +27383,8914,surreal,1400939291 +27383,8914,thought-provoking,1400939291 +27383,8914,time,1400939291 +27383,8914,time travel,1400939301 +27383,8938,cross dressing,1400936631 +27383,8938,cross dressing men,1400936631 +27383,8938,documentary,1400936632 +27383,8938,drugs,1400936631 +27383,8938,gay kiss,1400936632 +27383,8938,gay relationship,1400936632 +27383,8938,homosexulity,1400936632 +27383,8938,insanity,1400936631 +27383,8938,mental illness,1400936632 +27383,8938,psychology,1400936632 +27383,8938,true story,1400936631 +27383,8957,brutal,1400972065 +27383,8957,clever,1400972093 +27383,8957,cult film,1400972096 +27383,8957,cult movie,1400972140 +27383,8957,detective,1400972099 +27383,8957,disturbing,1400935597 +27383,8957,franchise,1400972104 +27383,8957,gore,1400935597 +27383,8957,gothic,1400935597 +27383,8957,great ending,1400972044 +27383,8957,horror,1400935597 +27383,8957,mindfuck,1400935597 +27383,8957,photographer,1400972120 +27383,8957,psychological,1400972117 +27383,8957,serial killer,1400935597 +27383,8957,suspense,1400935597 +27383,8957,thriller,1400935597 +27383,8957,torture,1400972050 +27383,8957,twist ending,1400972044 +27383,8957,vigilante,1400972037 +27383,8957,vigilantism,1400972031 +27383,8970,writer,1400939707 +27383,8973,child abuse,1386887029 +27383,8973,choir,1386887002 +27383,8973,Christianity,1386887027 +27383,8973,drugs,1386887024 +27383,8973,enigmatic,1386887019 +27383,8973,irreverent,1386887017 +27383,8973,love,1386887015 +27383,8973,mistaken identity,1386887013 +27383,8973,movie business,1386887011 +27383,8973,Pedro Almodovar,1386887009 +27383,8973,queer,1386887007 +27383,8973,reflective,1386887005 +27383,8973,religion,1386887000 +27383,8973,revenge,1386886996 +27383,8973,school,1386886993 +27383,8973,sexual abuse,1386886991 +27383,8973,sexuality,1386886983 +27383,8973,soccer,1386886975 +27383,8973,spanish,1386886980 +27383,8973,stylized,1386886973 +27383,26122,atmospheric,1410869812 +27383,26122,Criterion,1410869809 +27383,26122,dark,1410869808 +27383,26122,disturbing,1410869805 +27383,26122,eerie,1410869803 +27383,26122,enigmatic,1410869800 +27383,26122,erlend's DVDs,1410869790 +27383,26122,Kaneto Shindô,1410869788 +27383,26122,nudity,1410869797 +27383,26122,ominous,1410869795 +27383,26122,samurai,1410869786 +27383,26122,stylized,1410869793 +27383,27660,androids,1400972616 +27383,27660,animation,1400972614 +27383,27660,anime,1400972612 +27383,27660,cyberpunk,1400972609 +27383,27660,good concept,1400972607 +27383,27660,gore,1400972604 +27383,27660,Keanu Reeves,1400972602 +27383,27660,man versus machine,1400972599 +27383,27660,matrix,1400972596 +27383,27660,sci-fi,1400972594 +27383,27773,disturbing,1400935682 +27383,27773,revenge,1400935681 +27383,27773,serial killer,1400935682 +27383,27773,stylized,1400935682 +27383,27773,surreal,1400935682 +27383,27904,animated,1310385316 +27383,27904,animation,1310385318 +27383,27904,based on a book,1310385320 +27383,27904,conspiracy,1310385322 +27383,27904,cyberpunk,1400972778 +27383,27904,drug abuse,1310385325 +27383,27904,DRUG ADDICTION,1310385327 +27383,27904,drugs,1310385329 +27383,27904,Keanu Reeves,1310385330 +27383,27904,paranoia,1310385332 +27383,27904,Philip K. Dick,1310385334 +27383,27904,psychiatry,1310385335 +27383,27904,Robert Downey Jr.,1310385337 +27383,27904,sci-fi,1310385340 +27383,27904,surreal,1310385344 +27383,27904,surrealism,1310385346 +27383,27904,surveillance,1310385348 +27383,27904,undercover cop,1310385350 +27383,27904,visually appealing,1310385352 +27383,27904,Winona Ryder,1310385354 +27383,30810,adventure,1310581346 +27383,30810,Bill Murray,1310581351 +27383,30810,comedy,1310581352 +27383,30810,Criterion,1310581355 +27383,30810,dark,1310581357 +27383,30810,david bowie,1310581361 +27383,30810,deadpan,1310581363 +27383,30810,friendship,1310581366 +27383,30810,funny,1310581368 +27383,30810,great soundtrack,1310581371 +27383,30810,humor,1310581374 +27383,30810,Owen Wilson,1310581375 +27383,30810,quirky,1310581378 +27383,30810,stylized,1310581382 +27383,30810,submarine,1310581384 +27383,30810,visually appealing,1310581386 +27383,30810,Wes Anderson,1310581388 +27383,30810,whimsical,1310581391 +27383,32587,surrealism,1400972688 +27383,38886,1980s,1310581106 +27383,38886,awkward,1310581108 +27383,38886,childhood,1310581110 +27383,38886,dark comedy,1310581113 +27383,38886,depressing,1310581116 +27383,38886,divorce,1310581119 +27383,38886,drama,1310581121 +27383,38886,dysfunctional family,1310581123 +27383,38886,family,1310581126 +27383,38886,high squirm factor,1310581129 +27383,38886,new york,1310581131 +27383,38886,New York City,1310581133 +27383,38886,parenting,1310581136 +27383,38886,quirky,1310581138 +27383,38886,relationships,1310581141 +27383,38886,short,1310581142 +27383,38886,smart comedy,1310581145 +27383,38886,teenagers,1310581147 +27383,38886,weird,1310581149 +27383,38886,writers,1310581151 +27383,39183,1970s,1311009427 +27383,39183,1980s,1311009424 +27383,39183,Anne Hathaway,1311009422 +27383,39183,based on a book,1311009417 +27383,39183,bittersweet,1311009415 +27383,39183,controversial,1311009412 +27383,39183,emotional,1311009410 +27383,39183,Heath Ledger,1311009407 +27383,39183,homosexuality,1311009405 +27383,39183,Love story,1311009403 +27383,39183,melancholy,1311009401 +27383,39183,music,1311009398 +27383,39183,romance,1311009394 +27383,39183,scenic,1311009392 +27383,39183,sexuality,1311009389 +27383,41014,atmospheric,1410869844 +27383,41014,cinematography,1410869847 +27383,41014,creepy,1410869849 +27383,41014,directorial debut,1410869830 +27383,41014,eerie,1410869842 +27383,41014,Giallo,1410869840 +27383,41014,lurid,1410869836 +27383,41014,stylized,1410869828 +27383,41014,tense,1410869834 +27383,41285,CLASS DIFFERENCES,1310385042 +27383,41285,Classic,1310385039 +27383,41285,clever,1310385037 +27383,41285,Disturbing,1310385035 +27383,41285,Emily Mortimer,1310385033 +27383,41285,Jonathan Rhys Meyers,1310385030 +27383,41285,London,1310385028 +27383,41285,love affair,1310385026 +27383,41285,murder,1310385023 +27383,41285,murder mystery,1310385021 +27383,41285,non-hollywood ending,1310385018 +27383,41285,romance,1310385013 +27383,41285,Scarlett Johansson,1310385015 +27383,41285,slow,1310385009 +27383,41285,sports,1310385003 +27383,41285,tennis,1310385008 +27383,41285,twist,1310385000 +27383,41285,Woody Allen,1310384996 +27383,41569,1930s,1400971920 +27383,41569,Adrien Brody,1400971934 +27383,41569,adventure,1400971936 +27383,41569,big budget,1400971938 +27383,41569,dinosaurs,1400971952 +27383,41569,emotional,1400971942 +27383,41569,great cinematography,1400971944 +27383,41569,great ending,1400971946 +27383,41569,island,1400971950 +27383,41569,Jack Black,1400971995 +27383,41569,jungle,1400971998 +27383,41569,monster,1400971979 +27383,41569,Naomi Watts,1400971975 +27383,41569,New York,1400971973 +27383,41569,Peter Jackson,1400971971 +27383,41569,remake,1400971966 +27383,41569,romance,1400971969 +27383,41569,stylized,1400971964 +27383,41571,adaptation,1400940339 +27383,41571,adapted from:book,1400940315 +27383,41571,based on a book,1400940339 +27383,41571,based on book,1400940339 +27383,41571,history,1400940339 +27383,41571,memory,1400940315 +27383,42094,Child developmental (folk) psychology,1410869907 +27383,42094,cinematography,1410869908 +27383,42094,Criterion,1410869912 +27383,42094,railroad track,1410869901 +27383,42094,Spain,1410869884 +27383,42094,Spanish Civil War,1410869879 +27383,42094,Víctor Erice,1410869876 +27383,42900,CRUMBLING MARRIAGES,1310581686 +27383,42900,cynical,1310581683 +27383,42900,deadpan,1310581680 +27383,42900,HOSTAGE SITUATIONS,1310581677 +27383,42900,humorous,1310581673 +27383,42900,irreverent,1310581669 +27383,42900,isolation,1310581665 +27383,42900,macabre,1310581642 +27383,42900,NOTHING GOES RIGHT,1310581637 +27383,42900,Roman Polanski,1310581635 +27383,42900,wry,1310581633 +27383,44191,action,1311010031 +27383,44191,based on a book,1311010033 +27383,44191,comic book,1311010035 +27383,44191,dark,1311010037 +27383,44191,dystopia,1311010040 +27383,44191,England,1311010042 +27383,44191,historical,1311010045 +27383,44191,inspirational,1311010049 +27383,44191,Natalie Portman,1311010051 +27383,44191,philosophy,1311010053 +27383,44191,political,1311010056 +27383,44191,politics,1311010059 +27383,44191,prison,1311010062 +27383,44191,revenge,1311010064 +27383,44191,sci-fi,1311010066 +27383,44191,social commentary,1311010068 +27383,44191,teen,1311010070 +27383,44191,terrorism,1311010072 +27383,44191,thought-provoking,1311010074 +27383,46578,comedy,1310581461 +27383,46578,dance,1310581458 +27383,46578,dark comedy,1310581454 +27383,46578,drugs,1310581452 +27383,46578,dysfunctional family,1310581447 +27383,46578,family,1310581445 +27383,46578,funny,1310581441 +27383,46578,inspirational,1310581438 +27383,46578,music,1310581436 +27383,46578,off-beat comedy,1310581433 +27383,46578,philosophy,1310581431 +27383,46578,police,1310581428 +27383,46578,quirky,1310581424 +27383,46578,road movie,1310581422 +27383,46578,road trip,1310581419 +27383,46578,satire,1310581417 +27383,46578,social commentary,1310581415 +27383,46578,suicide,1310581404 +27383,46578,twist ending,1310581402 +27383,46976,Dustin Hoffman,1400937744 +27383,46976,existentialism,1400937808 +27383,46976,fantasy,1400937821 +27383,46976,heartwarming,1400937821 +27383,46976,humorous,1400937821 +27383,46976,insanity,1400937794 +27383,46976,love,1400937794 +27383,46976,Maggie Gyllenhaal,1400937732 +27383,46976,modern fantasy,1400937794 +27383,46976,punk,1400937795 +27383,46976,quirky,1400937794 +27383,46976,romance,1400937795 +27383,46976,schizophrenia,1400937765 +27383,46976,storytelling,1400937765 +27383,46976,suicide attempt,1400937765 +27383,46976,surreal,1400937766 +27383,46976,touching,1400937765 +27383,46976,Will Ferrell,1400937738 +27383,47610,19th century,1400971602 +27383,47610,austria,1400971607 +27383,47610,Christian Bale,1400971618 +27383,47610,cinematography,1400971620 +27383,47610,costume drama,1400971622 +27383,47610,Edward Norton,1400971613 +27383,47610,great ending,1400971624 +27383,47610,happy ending,1400971626 +27383,47610,love story,1400971628 +27383,47610,magic,1400971632 +27383,47610,romance,1400971634 +27383,47610,royalty,1400971636 +27383,47610,sex scene,1400971639 +27383,47610,stage magic,1400971641 +27383,47610,stylized,1400971643 +27383,47610,surprise ending,1400971646 +27383,47610,twist ending,1400971653 +27383,48394,alternate reality,1400933779 +27383,48780,atmospheric,1400939218 +27383,48780,based on a book,1400939218 +27383,48780,christian bale,1400939218 +27383,48780,complicated,1400939218 +27383,48780,dark,1400939218 +27383,48780,ensemble cast,1400971693 +27383,48780,great ending,1400971736 +27383,48780,magic,1400934127 +27383,48780,Michael Caine,1400971704 +27383,48780,mystery,1400934127 +27383,48780,nonlinear,1400939218 +27383,48780,philosophy,1400939217 +27383,48780,prison,1400971721 +27383,48780,psychological,1400939217 +27383,48780,revenge,1400939217 +27383,48780,romance,1400939218 +27383,48780,sci-fi,1400939217 +27383,48780,thriller,1400939218 +27383,48780,twist ending,1400939217 +27383,50641,Criterion,1310216736 +27383,50641,dreamlike,1310216740 +27383,50641,ghosts,1310216743 +27383,50641,haunted house,1310216746 +27383,50641,possession,1310216767 +27383,50641,psychedelic,1310216758 +27383,50641,strangely compelling,1310216751 +27383,50641,surreal,1310216749 +27383,50912,Alexander Payne,1386887113 +27383,50912,amazing,1386887118 +27383,50912,Elijah Wood,1386887115 +27383,50912,Episode cinema,1386887120 +27383,50912,episodic,1386887122 +27383,50912,erlend's DVDs,1386887125 +27383,50912,France,1386887127 +27383,50912,French,1386887128 +27383,50912,Isabel Coixet,1386887130 +27383,50912,library,1386887132 +27383,50912,love,1386887134 +27383,50912,Maggie Gyllenhaal,1386887111 +27383,50912,multiple storylines,1386887136 +27383,50912,Natalie Portman,1386887110 +27383,50912,Paris,1386887138 +27383,50912,romance,1386887140 +27383,50912,romantic,1386887142 +27383,50912,variations on a theme,1386887145 +27383,50912,vignettes,1386887148 +27383,50912,Vincenzo Natali,1386887151 +27383,52281,serial killer,1400935611 +27383,53827,disorder,1400936223 +27383,53827,Dissociative identity disorder,1400936182 +27383,53827,emotional healing,1400936223 +27383,53827,intense,1400936223 +27383,53827,mental illness,1400936223 +27383,53827,multiple personalities,1400936223 +27383,53827,multiple personality disorder,1400936223 +27383,53827,true story,1400936223 +27383,53956,accident,1310581279 +27383,53956,British,1310581282 +27383,53956,british comedy,1310581284 +27383,53956,brother-brother relationship,1310581286 +27383,53956,caper,1310581289 +27383,53956,dark comedy,1310581293 +27383,53956,deceased family member,1310581295 +27383,53956,family,1310581327 +27383,53956,family gatherings,1310581300 +27383,53956,farce,1310581302 +27383,53956,funeral,1310581304 +27383,53956,vertically challenged people,1310581316 +27383,53956,wheelchair,1310581337 +27383,55280,cute,1400936067 +27383,55280,delusion,1400936067 +27383,55280,emotional,1400936066 +27383,55280,feel-good,1400936067 +27383,55280,heartwarming,1400936103 +27383,55280,loneliness,1400936103 +27383,55280,love,1400936103 +27383,55280,mental illness,1400936112 +27383,55280,psychology,1400936053 +27383,55280,quirky,1400936053 +27383,55280,social angst,1400936103 +27383,55280,sweet,1400936103 +27383,55280,touching,1400936053 +27383,55280,weird,1400936053 +27383,55820,1980s,1310018813 +27383,55820,based on a book,1310018810 +27383,55820,crime,1310018775 +27383,55820,dark,1310018777 +27383,55820,hitman,1310018782 +27383,55820,insanity,1400937262 +27383,55820,plot twist,1310018784 +27383,55820,serial killer,1310018803 +27383,55820,suspense,1310018799 +27383,55820,thriller,1310018797 +27383,55820,Tommy Lee Jones,1310018788 +27383,55820,twist ending,1310018790 +27383,55820,violent,1310018795 +27383,56715,afterlife,1310370666 +27383,56715,alternate reality,1310370662 +27383,56715,based on a short story,1310370660 +27383,56715,black comedy,1310370656 +27383,56715,cinematography,1310370651 +27383,56715,cult,1310370649 +27383,56715,cult film,1310370647 +27383,56715,dark comedy,1310370644 +27383,56715,miracles,1310370642 +27383,56715,music,1310370640 +27383,56715,quirky,1310370638 +27383,56715,romance,1310370637 +27383,56715,russian,1310370634 +27383,56715,russian accent,1310370631 +27383,56715,suicide,1310370629 +27383,56715,touching,1310370624 +27383,56757,18th century,1310374661 +27383,56757,19th century,1310374659 +27383,56757,based on a play,1310374657 +27383,56757,Broadway,1310374655 +27383,56757,cannibalism,1310374652 +27383,56757,dark,1310374650 +27383,56757,dark comedy,1310374648 +27383,56757,England,1310374645 +27383,56757,Family,1310374642 +27383,56757,gothic,1310374639 +27383,56757,great cinematography,1310374637 +27383,56757,Johnny Depp,1310374634 +27383,56757,Musical,1310374631 +27383,56757,serial killer,1310374629 +27383,56757,Tim Burton,1310374627 +27383,56757,violent,1310374625 +27383,56757,visually appealing,1310374620 +27383,60684,1980s,1311009906 +27383,60684,Adaptation,1311009904 +27383,60684,alan moore,1311009901 +27383,60684,alternate reality,1311009897 +27383,60684,cold war,1311009894 +27383,60684,comic book,1311009891 +27383,60684,dystopia,1311009889 +27383,60684,music,1311009885 +27383,60684,nuclear war,1311009881 +27383,60684,sci-fi,1311009878 +27383,60684,social commentary,1311009876 +27383,60684,stylized,1311009873 +27383,60684,superhero,1311009870 +27383,60684,superheroes,1311009868 +27383,60684,suspense,1311009865 +27383,60684,vigilantism,1311009863 +27383,60950,Barcelona,1311010021 +27383,60950,bisexual,1311010019 +27383,60950,chick flick,1311010017 +27383,60950,friendship,1311010014 +27383,60950,Javier Bardem,1311010011 +27383,60950,love,1311010008 +27383,60950,Madness,1311010006 +27383,60950,narrated,1311010002 +27383,60950,philosophical,1311010000 +27383,60950,queer,1311009998 +27383,60950,relationships,1311009995 +27383,60950,romance,1311009992 +27383,60950,Scarlett Johansson,1311009990 +27383,60950,scenic,1311009988 +27383,60950,sexuality,1311009986 +27383,60950,Spain,1311009983 +27383,60950,threesome,1311009979 +27383,60950,weddings,1311009977 +27383,60950,Woody Allen,1311009975 +27383,61323,Brad Pitt,1310581696 +27383,61323,cheating husband,1310581698 +27383,61323,cia,1310581700 +27383,61323,Coen Bros,1310581702 +27383,61323,Coen Brothers,1310581705 +27383,61323,Comedy,1310581707 +27383,61323,dark comedy,1310581709 +27383,61323,divorce,1310581711 +27383,61323,espionage,1310581713 +27383,61323,funny,1310581716 +27383,61323,George Clooney,1310581719 +27383,61323,greed,1310581728 +27383,61323,John Malkovich,1310581730 +27383,61323,satire,1310581732 +27383,61323,stupidity,1310581734 +27383,61323,Tilda Swinton,1310581737 +27383,61323,top secret,1310581742 +27383,61323,twists & turns,1310581745 +27383,61323,weird,1310581748 +27383,65126,adaptation,1400937051 +27383,65126,adapted from:book,1400937051 +27383,65126,addiction,1400937051 +27383,65126,based on a book,1400937051 +27383,65126,based on book,1400937052 +27383,65126,bdsm,1400937051 +27383,65126,black comedy,1400937051 +27383,65126,comedy,1400937051 +27383,65126,dark comedy,1400937051 +27383,65126,mental health,1400937051 +27383,65126,mental illness,1400937052 +27383,65126,sam rockwell,1400937052 +27383,65126,sex addiction,1400937051 +27383,65126,sexual,1400937051 +27383,65642,complicated,1400939323 +27383,65642,complicated plot,1400939323 +27383,65642,downbeat,1400939342 +27383,65642,grim,1400939342 +27383,65642,murder,1400939342 +27383,65642,paradox,1400939342 +27383,65642,time,1400939348 +27383,65642,time travel,1400939354 +27383,66097,alternate reality,1400933817 +27383,67197,mystery,1400934211 +27383,70286,action,1310370810 +27383,70286,alien invasion,1310370813 +27383,70286,aliens,1310370813 +27383,70286,atmospheric,1310370816 +27383,70286,directorial debut,1310370818 +27383,70286,evil humans,1310370821 +27383,70286,genetics,1310370823 +27383,70286,heartbreaking,1310370825 +27383,70286,intelligent,1310370827 +27383,70286,justice,1310370829 +27383,70286,mock documentary,1310370833 +27383,70286,mockumentary,1310370832 +27383,70286,role reversal,1310370835 +27383,70286,satire,1310370837 +27383,70286,sci-fi,1310370840 +27383,70286,social commentary,1310370841 +27383,70286,social segregation,1310370844 +27383,70286,thriller,1310370848 +27383,70286,violence,1310371106 +27383,71135,aliens,1400936380 +27383,71135,amnesia,1400936379 +27383,71135,atmospheric,1400936379 +27383,71135,evolution,1400936380 +27383,71135,future,1400936379 +27383,71135,horror,1400936379 +27383,71135,insanity,1400936379 +27383,71135,mental illness,1400936379 +27383,71135,mutation,1400936379 +27383,71135,post-apocalyptic,1400936410 +27383,71135,sci-fi,1400936415 +27383,71135,space,1400936396 +27383,71135,space travel,1400936396 +27383,71135,twist ending,1400936396 +27383,71530,alternate reality,1400933733 +27383,72405,surreal,1400972757 +27383,72405,surrealism,1400972757 +27383,73211,mystery,1400934250 +27383,79132,action,1400938542 +27383,79132,alternate reality,1400938604 +27383,79132,complicated,1400939094 +27383,79132,drama,1400938549 +27383,79132,dreamlike,1400938604 +27383,79132,fantasy,1400938604 +27383,79132,memory,1400940297 +27383,79132,philosophy,1400938604 +27383,79132,psychological,1400938605 +27383,79132,psychology,1400938604 +27383,79132,sci-fi,1400938605 +27383,79132,surreal,1400938605 +27383,79132,suspense,1400938605 +27383,79132,thought-provoking,1400938604 +27383,79132,twist ending,1400938605 +27383,79132,visually appealing,1400938605 +27383,85397,mystery,1400934136 +27383,91505,atmospheric,1386886827 +27383,91505,cinematography,1386886833 +27383,91505,ethics,1386886835 +27383,91505,Eva Green,1386886829 +27383,91505,nostalgia,1386886844 +27383,91505,Nudity (Topless),1386886837 +27383,101088,beautiful,1425086825 +27383,101088,erotic,1425086836 +27383,101088,psychological thriller,1425086829 +27383,101088,stylish,1425086833 +27383,101088,visually stylish,1425086839 +27404,2571,action,1426184598 +27404,2571,best movie ever,1426184598 +27404,2571,philosophical,1426184598 +27431,296,cool,1420321287 +27431,296,good dialogue,1420321287 +27431,296,violence,1420321287 +27431,1206,Stanley Kubrick,1264700836 +27431,1206,stylized,1264700840 +27431,68358,alternate reality,1242947636 +27431,68358,space,1242947648 +27431,68358,space travel,1242947677 +27431,68358,Star Trek,1242947621 +27431,68358,time travel,1242947669 +27431,72998,futuristic,1264700779 +27431,72998,visually stunning,1264700773 +27441,79293,bad ending,1452396515 +27507,260,good special effects,1437877303 +27507,260,great story,1437877293 +27507,260,intense,1437877280 +27541,431,Brian De Palma,1163522788 +27541,431,suspense cut,1163522779 +27541,1219,suspense cut,1163524849 +27541,3093,revisionist western,1164016830 +27541,26313,gambling,1164017055 +27583,2052,Bette Midler,1282382260 +27583,2052,Disney,1282382262 +27583,2052,funny,1282382265 +27583,2052,halloween,1282382279 +27583,2052,witch,1282382270 +27583,2052,witches,1282382267 +27583,3186,60s,1282391438 +27583,3186,Angelina Jolie,1282391413 +27583,3186,based on a true story,1282391415 +27583,3186,Brittany Murphy,1282391413 +27583,3186,depression,1282391427 +27583,3186,Interesting,1282391429 +27583,3186,mental health,1282391476 +27583,3186,mental illness,1282391451 +27583,3186,psychiatry,1282391469 +27583,3186,psychology,1282391417 +27583,3186,suicide,1282391467 +27583,27441,anime,1282382538 +27583,27441,vampires,1282382540 +27583,32587,artistic,1282382174 +27583,32587,classic,1282382187 +27583,32587,superhero,1282382195 +27583,33004,comedy,1282382102 +27583,33004,end of the world,1282382113 +27583,33004,england,1282382116 +27583,33004,humor,1282382092 +27583,33004,John Malkovich,1282382097 +27583,33004,space,1282382095 +27583,33004,space travel,1282382122 +27583,50796,Hugh Dancy,1282381916 +27583,60069,robots,1282340782 +27583,62434,humor,1311936986 +27583,62434,Kevin Smith,1311936976 +27583,70599,heartbreaking,1282382218 +27583,70599,sad,1282382227 +27583,70599,time travel,1282382231 +27583,72165,vampires,1282381986 +27583,76093,vikings,1282340392 +27594,58,italian bittersweet romance,1140120154 +27594,1136,Fun,1140120520 +27594,1197,feel-good,1140120649 +27594,1278,silly but good,1140120697 +27594,1441,quirky,1140122213 +27594,2395,quirky,1140121131 +27594,2478,silly but good,1140123680 +27594,2657,camp,1140123311 +27594,3088,sweet,1140121052 +27594,3175,spoof,1140121572 +27594,3671,silly but good,1140120746 +27594,4027,quirky,1140120730 +27594,4973,whimsical,1140120706 +27594,6773,quirky,1140121272 +27594,6942,Up lifting,1140121540 +27594,7352,british comedy,1140120040 +27594,26151,depressing,1140119949 +27602,2571,action,1425161377 +27602,2571,futuristic,1425161377 +27602,2571,science fiction,1425161377 +27609,6711,bittersweet,1175563350 +27609,6711,wistful,1175563347 +27689,71033,revenge,1376519886 +27689,80181,short,1376372900 +27689,80836,short,1376372603 +27689,95858,Pixar,1376983555 +27689,95858,short,1376983555 +27727,56782,Daniel Day-Lewis,1297722236 +27727,96829,child abuse,1355792981 +27727,96829,Mads Mikkelsen,1355792985 +27727,97306,metafiction,1355792745 +27727,97306,Sam Rockwell,1355792721 +27727,97306,Woody Harrelson,1355792725 +27727,97744,Corruption,1355792904 +27727,97921,Bradley Cooper,1355792654 +27727,97921,Chris Tucker,1355792654 +27727,97921,Jennifer Lawrence,1355792654 +27741,202,David Thewlis,1153484753 +27741,202,Great direction,1153484753 +27741,202,Leonardo DiCaprio,1153484753 +27741,377,Keanu Reeves,1153484552 +27741,377,speed,1153484552 +27741,1049,chilling,1153484525 +27741,7373,cool dialogues,1153484640 +27741,7373,John Hurt,1153484664 +27741,7373,Ron Perlman,1153484640 +27752,923,sucks,1144683808 +27752,2699,spiders :(,1144682300 +27793,1732,Nudity (Full Frontal),1353837138 +27793,2300,Mel Brooks,1349154699 +27793,2502,hilarious,1353823543 +27793,2502,Jennifer Aniston,1353823539 +27793,2511,Robert Altman,1352943289 +27793,8641,Fucking stupid,1347433602 +27793,8641,misogyny,1347433572 +27793,8784,Natalie Portman,1355993244 +27793,8784,Zach Braff,1355986549 +27793,38159,thought-provoking,1344833957 +27793,38159,voyeurism,1344833971 +27793,60072,audience intelligence underestimated,1343029436 +27793,69604,Larry David,1353833160 +27793,84954,angels,1345349839 +27793,84954,author:Philip K. Dick,1345349832 +27793,84954,Bechdel Test:Fail,1345349715 +27793,84954,Emily Blunt,1345349667 +27793,84954,implausible,1345349723 +27793,84954,New York City,1345349741 +27793,84954,Philip K. Dick,1345349653 +27793,84954,Romance,1345349856 +27793,84954,superficial,1345349880 +27793,85131,fun,1346621378 +27793,87270,Don Roos,1345606469 +27793,87270,Natalie Portman,1345606464 +27793,90374,cinematography,1346621887 +27793,90374,Elizabeth Olsen,1346621883 +27793,90374,Nudity (Topless - Brief),1346621903 +27793,90374,sex,1346621907 +27793,90374,sexuality,1346621899 +27793,90374,weak ending,1346621894 +27793,91077,beau bridges,1346633479 +27793,91077,judy greer,1346631610 +27793,91500,cheesy,1349161127 +27793,91500,dystopia,1349161143 +27793,91500,superfluous,1349160839 +27793,92719,not funny,1343981247 +27793,92719,pandering,1343981002 +27793,93840,Good cg,1349854204 +27793,93840,Vile,1349854426 +27793,95088,aubrey plaza,1355979227 +27804,475,prison,1188178536 +27804,724,witches,1188178608 +27804,849,Kurt Russell,1188178673 +27804,852,Golf,1188178320 +27804,1047,assassin,1188178593 +27804,1188,dance,1188178618 +27804,1249,assassin,1188178517 +27804,1267,frank sinatra,1188178582 +27804,1302,baseball,1188178316 +27804,1377,comic book,1188178338 +27804,1597,Mel Gibson,1188178465 +27804,1747,Dustin Hoffman,1188178419 +27804,1953,gene hackman,1188178660 +27804,2023,mafia,1188178373 +27804,2105,comic,1188178546 +27804,2424,meg ryan,1188178489 +27804,2701,will smith,1188178428 +27804,3033,Mel Brooks,1188178408 +27804,3081,Johnny Depp,1188178319 +27804,3755,natural disaster,1188178565 +27804,3785,spoof,1188180350 +27804,4246,chick flick,1188178395 +27804,4896,magic,1188178318 +27804,5679,japanesse horror,1188178697 +27804,7147,Ewan McGregor,1188180391 +27804,7438,katana,1188178475 +27818,260,action,1433139940 +27818,260,good story,1433139955 +27831,89305,british comedy,1424107155 +27831,89305,funny,1424107155 +27831,89305,teen angst,1424107155 +27831,112788,funny,1421089138 +27831,112788,product placement overkill,1421089138 +27831,112788,stupid,1421089138 +27843,5952,load of the rings,1442736914 +27843,5952,Peter Jackson,1442736827 +27843,44191,Hugo Weaving,1442737008 +27843,44191,Natalie Portman,1442737001 +27843,44191,revolution,1442737033 +27843,99114,Quentin Tarantino,1442736775 +27843,112552,dark,1442737117 +27845,318,classic,1432636757 +27845,318,drama,1432636757 +27845,318,stephen king,1432636757 +27858,80834,adventure,1435992979 +27858,80834,animation,1435992979 +27858,80834,fantasy,1435992979 +27859,84152,clever,1443079007 +27859,84152,concept,1443079028 +27859,84152,smart,1443079017 +27859,84152,visually appealing,1443079014 +27885,2028,action,1438376110 +27885,2028,cinematography,1438376140 +27885,2028,disturbing,1438376121 +27885,2028,drama,1438376130 +27885,2028,enormously long battle scene,1438376120 +27885,2028,historical,1438376106 +27885,2028,history,1438376089 +27885,2028,horrors of war,1438376137 +27885,2028,Nazis,1438376128 +27885,2028,Oscar (Best Sound),1438376157 +27885,2028,realistic,1438376112 +27885,2028,stylized,1438376142 +27885,2028,Tom Hanks,1438376102 +27885,2028,Vin Diesel,1438376126 +27885,2028,violent,1438376133 +27885,2028,war,1438376105 +27885,2028,war movie,1438376145 +27885,2028,World War II,1438376086 +27885,2028,wwii,1438376084 +27885,4226,cerebral,1438377926 +27885,4226,complicated,1438377909 +27885,4226,dark,1438377924 +27885,4226,dreamlike,1438377918 +27885,4226,identity,1438377933 +27885,4226,memory,1438377906 +27885,4226,memory loss,1438377940 +27885,4226,Mindfuck,1438377912 +27885,4226,mystery,1438377911 +27885,4226,non-linear,1438377938 +27885,4226,nonlinear,1438377903 +27885,4226,paranoia,1438377962 +27885,4226,paranoid,1438377929 +27885,4226,psychological,1438377908 +27885,4226,psychology,1438377905 +27885,4226,short-term memory loss,1438377974 +27885,4226,stylized,1438377910 +27885,4226,tense,1438377916 +27885,4226,time loop,1438377935 +27885,4226,twist ending,1438377904 +27885,8371,action,1438377609 +27885,8371,Riddick,1438377608 +27885,8371,sci-fi,1438377607 +27885,8371,space,1438377606 +27885,8371,Vin Diesel,1438377605 +27885,34048,action,1438378068 +27885,34048,alien invasion,1438378062 +27885,34048,aliens,1438378061 +27885,34048,father daughter relationship,1438389017 +27885,34048,invasion,1438378073 +27885,34048,overrated,1438388958 +27885,34048,remake,1438388968 +27885,34048,sci-fi,1438378064 +27885,34048,single father,1438388965 +27885,34048,terrible ending,1438388957 +27885,34048,Tom Cruise,1438378059 +27885,34048,war,1438378100 +27885,34048,weak ending,1438388926 +27885,48780,atmospheric,1438377696 +27885,48780,Christian Bale,1438377773 +27885,48780,complicated,1438377700 +27885,48780,dark,1438377702 +27885,48780,great ending,1438377707 +27885,48780,Hugh Jackman,1438377815 +27885,48780,magic,1438377703 +27885,48780,Michael Caine,1438377803 +27885,48780,mystery,1438377711 +27885,48780,Nicola Tesla,1438377827 +27885,48780,nonlinear,1438377695 +27885,48780,philosophy,1438377740 +27885,48780,psychological,1438377712 +27885,48780,revenge,1438377718 +27885,48780,sacrifice,1438377832 +27885,48780,Scarlett Johansson,1438377697 +27885,48780,sci-fi,1438377710 +27885,48780,secrets,1438377733 +27885,48780,stage magic,1438377741 +27885,48780,steampunk,1438377872 +27885,48780,storytelling,1438377738 +27885,48780,teleportation,1438377823 +27885,48780,tense,1438377726 +27885,48780,tesla,1438377829 +27885,48780,thriller,1438377716 +27885,48780,twist ending,1438377693 +27885,48780,twists & turns,1438377725 +27885,49272,007,1438375586 +27885,49272,action,1438375591 +27885,49272,espionage,1438375584 +27885,49272,James Bond,1438375582 +27885,49272,parkour,1438375599 +27885,49272,spies,1438375594 +27885,49272,spy,1438375595 +27885,67197,aliens,1438378250 +27885,67197,apocalypse,1438378253 +27885,67197,creepy,1438378267 +27885,67197,end of the world,1438378252 +27885,67197,mystery,1438378264 +27885,67197,Nicolas Cage,1438378250 +27885,67197,sci-fi,1438378250 +27885,79132,action,1438376500 +27885,79132,alternate reality,1438376458 +27885,79132,Christopher Nolan,1438376568 +27885,79132,clever,1438376514 +27885,79132,complicated,1438376491 +27885,79132,drama,1438376523 +27885,79132,dream,1438376604 +27885,79132,dreamlike,1438376504 +27885,79132,dreams,1438376508 +27885,79132,fantasy,1438376520 +27885,79132,heist,1438376509 +27885,79132,intellectual,1438376511 +27885,79132,Intense,1438376597 +27885,79132,interesting,1438376690 +27885,79132,Joseph Gordon-Levitt,1438376679 +27885,79132,Leonardo DiCaprio,1438376486 +27885,79132,long,1438376607 +27885,79132,mind games,1438376691 +27885,79132,mindfuck,1438376496 +27885,79132,multiple realities,1438376611 +27885,79132,original,1438376700 +27885,79132,original plot,1438376701 +27885,79132,philosophy,1438376517 +27885,79132,psychological,1438376531 +27885,79132,psychology,1438376521 +27885,79132,sci-fi,1438376492 +27885,79132,science fiction,1438376682 +27885,79132,surreal,1438376462 +27885,79132,thought-provoking,1438376484 +27885,79132,thriller,1438376530 +27885,79132,unpredictable,1438376597 +27885,79132,visually appealing,1438376461 +27885,79132,visually stunning,1438376605 +27885,84152,Bradley Cooper,1438376209 +27885,84152,cinematography,1438376222 +27885,84152,clever,1438376287 +27885,84152,concept,1438376217 +27885,84152,drugs,1438376250 +27885,84152,entertaining,1438376215 +27885,84152,human potential,1438376216 +27885,84152,interesting premise,1438376229 +27885,84152,Robert De Niro,1438376245 +27885,84152,sci-fi,1438376286 +27885,84152,smart,1438376183 +27885,84152,thought provoking,1438376280 +27885,84152,transhumanism,1438376224 +27885,84152,unfinished storyline,1438376246 +27885,84152,visual effects,1438376230 +27885,84152,visually appealing,1438376181 +27885,85414,action,1438376380 +27885,85414,happy ending,1438376373 +27885,85414,intelligent,1438376370 +27885,85414,interesting,1438376368 +27885,85414,military,1438376365 +27885,85414,parallel universe,1438376331 +27885,85414,science fiction,1438376336 +27885,85414,terrorism,1438376366 +27885,85414,thriller,1438376382 +27885,85414,time loop,1438376334 +27885,85414,time travel,1438376329 +27885,85414,twist ending,1438376332 +27885,89745,action,1438376977 +27885,89745,Captain America,1438376964 +27885,89745,Chris Evans,1438377078 +27885,89745,ensemble cast,1438377027 +27885,89745,fun,1438376976 +27885,89745,great humor,1438376968 +27885,89745,Hulk,1438376963 +27885,89745,humor,1438376974 +27885,89745,humorous,1438376966 +27885,89745,Iron Man,1438376971 +27885,89745,Joss Whedon,1438376958 +27885,89745,Mark Ruffalo,1438377025 +27885,89745,Marvel,1438376933 +27885,89745,Marvel Cinematic Universe,1438376982 +27885,89745,predictable,1438376995 +27885,89745,Robert Downey Jr.,1438376936 +27885,89745,Scarlett Johansson,1438376931 +27885,89745,superhero,1438376934 +27885,89745,superhero team,1438376992 +27885,89745,The Avengers,1438377049 +27885,89745,Thor,1438376970 +27885,89745,visually appealing,1438376937 +27885,89745,visually stunning,1438376972 +27885,90405,future,1438377497 +27885,90405,immortality,1438377501 +27885,90405,original,1438377503 +27885,90405,sci-fi,1438377494 +27885,90405,thought-provoking,1438377518 +27885,90405,time,1438377507 +27885,91542,alternate history,1438376920 +27885,91542,dialogue,1438376907 +27885,91542,fight scenes,1438376896 +27885,91542,Funny,1438376906 +27885,91542,great cinematography,1438376895 +27885,91542,private detective,1438376900 +27885,91542,Robert Downey Jr.,1438376890 +27885,91542,sherlock holmes,1438376898 +27885,91542,unrealistic,1438376913 +27885,96079,007 (series),1438376010 +27885,96079,action,1438375983 +27885,96079,beautiful cinematography,1438375993 +27885,96079,beautifully filmed,1438375991 +27885,96079,humor,1438376020 +27885,96079,James Bond,1438375982 +27885,96079,plot,1438376008 +27885,96079,psychological,1438376004 +27885,96079,spies,1438375984 +27885,101864,action,1438377291 +27885,101864,adventure,1438377316 +27885,101864,Alien Invasion,1438377288 +27885,101864,atmospheric,1438377263 +27885,101864,cliche ending,1438377283 +27885,101864,clones,1438377306 +27885,101864,cloning,1438377274 +27885,101864,drones,1438377310 +27885,101864,future,1438377257 +27885,101864,Morgan Freeman,1438377295 +27885,101864,post-apocalyptic,1438377261 +27885,101864,sci-fi,1438377260 +27885,101864,space,1438377267 +27885,101864,technology,1438377265 +27885,101864,Tom Cruise,1438377253 +27885,101864,Twist,1438377319 +27885,101864,twists & turns,1438377272 +27885,102903,entertaining,1438529395 +27885,102903,illusions,1438529391 +27885,102903,magic,1438529393 +27885,102903,Morgan Freeman,1438529397 +27885,102903,surprise ending,1438529399 +27885,103253,class conflict,1438377456 +27885,103253,cyborgs,1438377478 +27885,103253,exo-skeleton,1438377450 +27885,103253,future,1438377481 +27885,103253,Inequality,1438377464 +27885,103253,military,1438377467 +27885,103253,robots,1438377459 +27885,103253,sci-fi,1438377461 +27885,103253,science fiction,1438377443 +27885,103253,social commentary,1438377477 +27885,103253,visually stunning,1438377470 +27885,107406,chris evans,1438377105 +27885,107406,illogical,1438377121 +27885,107406,poor plot,1438377113 +27885,107406,stupid,1438377164 +27885,107406,stupid plot,1438377154 +27885,111759,action,1438378025 +27885,111759,Alien Invasion,1438378029 +27885,111759,aliens,1438378024 +27885,111759,best,1437959360 +27885,111759,ending,1438378034 +27885,111759,original plot,1438378023 +27885,111759,powersuit,1438378037 +27885,111759,sci-fi,1438378020 +27885,111759,time loop,1438378017 +27885,111759,time travel,1438378018 +27885,111759,Tom Cruise,1438378019 +27885,111759,war,1438378028 +27885,114935,mindfuck,1439949337 +27885,114935,science fiction,1439949332 +27885,114935,time travel,1439949330 +27885,114935,twist ending,1439949331 +27885,122892,Action,1438376832 +27885,122892,Hulk,1438376834 +27885,122892,Marvel,1438376827 +27885,122892,superhero,1438376830 +27909,4974,high school,1172039913 +27937,4641,hipster,1151376746 +27937,6539,adventure,1151376741 +27939,5038,Good versus evil,1176164433 +28000,66097,creepy,1262564109 +28000,68954,boring,1262565047 +28000,72294,Gary Oldman,1262565370 +28018,6502,post-apocalyptic,1442922672 +28018,6502,Zombie,1442922685 +28018,6502,zombies,1442922678 +28026,356,boring,1430000494 +28026,356,meaningless,1430000494 +28026,356,overrated,1430000494 +28026,6870,boston,1430000204 +28026,6870,great acting,1430000232 +28026,6870,working class,1430000242 +28026,130075,kids fav,1430000426 +28026,130075,musical,1430000410 +28026,131850,not good acting,1430000343 +28036,2033,confusing,1349645469 +28036,2033,scary,1349645462 +28036,2033,unlikable characters,1349645479 +28036,3785,vulgar,1349646714 +28036,5323,frozen,1349647179 +28036,5323,sex,1349647186 +28036,5323,slasher,1349647170 +28036,58025,didn't like him,1349644846 +28036,58025,family,1349644862 +28036,58025,teleportation,1349644857 +28036,71135,good fx,1349644387 +28036,71135,too slow,1349644378 +28036,71252,lame death,1349645064 +28036,71252,too much sex,1349645053 +28037,4951,violent disturbing,1356545638 +28073,6539,action,1422758918 +28073,6539,fantasy,1422758918 +28073,6539,pirates,1422758918 +28077,2571,alternate reality,1342989573 +28077,2571,atmospheric,1342989577 +28077,2571,cyberpunk,1342989569 +28077,2571,martial arts,1342989559 +28077,2571,philosophical,1342989570 +28077,2571,philosophy,1342989567 +28077,2571,sci-fi,1342989560 +28077,2571,stylized,1342989562 +28077,2571,thought-provoking,1342989580 +28077,2571,virtual reality,1342989564 +28094,5952,fantasy,1216314088 +28098,19,comedy,1245199842 +28098,47,psychology,1247937328 +28098,50,flashbacks,1245200957 +28098,50,Kevin Spacey,1245200929 +28098,50,mindfuck,1245200947 +28098,50,organized crime,1247937183 +28098,50,twist ending,1245200951 +28098,111,atmospheric,1247937320 +28098,172,cyberpunk,1247937405 +28098,296,crime,1247937198 +28098,296,Quentin Tarantino,1247937201 +28098,318,inspirational,1245200981 +28098,318,prison,1247937193 +28098,318,thought-provoking,1245200986 +28098,318,twist ending,1245200990 +28098,541,based on a book,1247937241 +28098,541,cyberpunk,1259185159 +28098,541,sci-fi,1247937244 +28098,589,robots,1247937312 +28098,589,time travel,1247937316 +28098,741,anime,1260897686 +28098,858,Mafia,1247937413 +28098,1089,nonlinear,1247937341 +28098,1089,organized crime,1247937345 +28098,1127,aliens,1245199904 +28098,1136,Monty Python,1247937388 +28098,1136,parody,1247937391 +28098,1148,Aardman,1259185188 +28098,1189,1980,1260897746 +28098,1197,1980,1260897788 +28098,1197,1980s,1260897800 +28098,1200,action,1259185174 +28098,1200,aliens,1247937270 +28098,1203,social commentary,1245200380 +28098,1214,aliens,1247937273 +28098,1407,slasher,1245200122 +28098,1884,based on a book,1259190522 +28098,1884,Johnny Depp,1259190527 +28098,2232,cult film,1247937423 +28098,2232,psychology,1247937420 +28098,2268,Jack Nicholson,1245199866 +28098,2294,animation,1247937265 +28098,2502,comedy,1247937205 +28098,2502,satire,1247937208 +28098,2542,British,1259189868 +28098,2542,crime,1259189873 +28098,2542,dark comedy,1259189823 +28098,2542,directorial debut,1259189865 +28098,2542,Funny as hell,1259189834 +28098,2542,Guy Ritchie,1259189851 +28098,2542,organized crime,1259189825 +28098,2542,poker,1259189853 +28098,2542,Unique,1259189841 +28098,2542,violence,1259189857 +28098,2692,alternate endings,1245200859 +28098,2692,artistic,1245200856 +28098,2692,intense,1245200867 +28098,2692,nonlinear,1245200836 +28098,2692,thought-provoking,1245200863 +28098,2692,time travel,1245200877 +28098,2788,Monty Python,1247937377 +28098,2810,anime,1260897701 +28098,3000,anime,1260897680 +28098,3175,parody,1245199802 +28098,3429,Aardman studios,1250871306 +28098,3429,claymation,1250871312 +28098,3429,humorous,1250871327 +28098,3429,quirky,1250871319 +28098,3429,witty,1250871321 +28098,3471,aliens,1245199953 +28098,3471,Sci-fi,1245199958 +28098,3471,space,1245199956 +28098,4226,dreamlike,1245200906 +28098,4226,Mindfuck,1245200895 +28098,4226,nonlinear,1245200899 +28098,4226,twist ending,1245200901 +28098,4262,Al Pacino,1245200620 +28098,4262,organized crime,1245200622 +28098,4720,twist ending,1245200061 +28098,4878,alternate timeline,1259286592 +28098,4878,dreamlike,1259286554 +28098,4878,sci-fi,1245200578 +28098,4878,social commentary,1259286580 +28098,4878,stylized,1259286612 +28098,4878,surreal,1259286560 +28098,4878,teen,1259286605 +28098,4878,thought-provoking,1259286568 +28098,4878,time travel,1259286571 +28098,4979,dark comedy,1247937332 +28098,5481,parody,1245200112 +28098,5481,satire,1245200115 +28098,5690,anime,1260897690 +28098,5902,dark comedy,1247937281 +28098,5902,surreal,1247937287 +28098,5954,Edward Norton,1245200783 +28098,6101,politics,1259185113 +28098,6104,Monty Python,1247937385 +28098,6104,sketch comedy,1247937381 +28098,6281,Philip K. Dick,1247937360 +28098,6807,Monty Python,1245200658 +28098,6857,anime,1260897695 +28098,7361,nonlinear,1247937226 +28098,7361,surreal,1247937223 +28098,7502,military,1247937258 +28098,7502,true story,1247937249 +28098,8784,quirky,1260897284 +28098,8949,dark comedy,1245199762 +28098,27156,anime,1260897683 +28098,27611,MILITARY LIFE,1245201097 +28098,27611,sci-fi,1245201102 +28098,27611,space,1245201107 +28098,27611,tv show,1245201104 +28098,33166,Crime,1247937430 +28098,33166,multiple storylines,1247937427 +28098,33794,atmospheric,1245201043 +28098,33794,based on comic,1245201048 +28098,33794,batman,1245201057 +28098,33794,superhero,1245201054 +28098,39292,journalism,1247937215 +28098,44555,corruption,1260897359 +28098,44555,freedom of expression,1260897334 +28098,44555,Oscar (Best Foreign Language Film),1260897352 +28098,44555,spies,1260897339 +28098,44555,spying,1260897337 +28098,44555,surveillance,1260897342 +28098,44665,assassination,1259274122 +28098,44665,stylized,1259274136 +28098,44665,twist ending,1259274132 +28098,46578,dark comedy,1247937396 +28098,47610,Edward Norton,1245200163 +28098,47610,twist ending,1245200160 +28098,48394,fantasy,1245200604 +28098,48394,sci-fi,1245200602 +28098,48394,surreal,1247937364 +28098,49272,espionage,1247937235 +28098,49272,James Bond,1245201070 +28098,49272,spies,1245201075 +28098,49530,journalism,1245199988 +28098,51540,based on a true story,1247937167 +28098,53322,Heist,1247937369 +28098,55765,based on a true story,1245200242 +28098,56921,battlestar galactica,1245201129 +28098,56921,sci-fi,1245200687 +28098,56921,space,1245200690 +28098,58559,Adaptation,1245201020 +28098,58559,Batman,1245201003 +28098,58559,Comic Book adaption,1245201008 +28098,59784,martial arts,1247937402 +28098,60069,dystopia,1247937173 +28098,60069,space,1247937177 +28098,60684,dystopia,1245200087 +28098,61323,dark comedy,1245200140 +28098,61323,satire,1245200143 +28098,63113,James Bond,1245199919 +28098,64614,friendship,1249776103 +28098,65230,comedy,1259190560 +28098,65230,journalism,1259190556 +28098,65261,anime,1260897605 +28098,65261,Hayao Miyazaki,1260897622 +28098,65261,Japan,1260897610 +28098,67197,aliens,1248909820 +28098,67197,end of the world,1248909851 +28098,67197,Nicolas Cage,1248909846 +28098,67197,plot holes,1248909862 +28098,67197,sci-fi,1248909844 +28098,67197,thought-provoking,1248909855 +28098,68522,camerawork,1248909761 +28098,68954,dreams,1259185221 +28098,68954,feel good movie,1259185238 +28098,68954,friendship,1259185201 +28098,68954,heartbreaking,1259185218 +28098,68954,Kid Drama with Comedy,1259185233 +28098,68954,Pixar,1259185199 +28098,68954,storytelling,1259185230 +28159,434,mountain climbing,1378635447 +28159,1291,indiana jones,1378635354 +28159,1408,great soundtrack,1378490721 +28159,3052,Comedy,1378635861 +28159,3052,satire,1378635875 +28159,3052,thought-provoking,1378635880 +28159,3968,Brendan Fraser,1378635815 +28159,3968,Elizabeth Hurley,1378635817 +28159,3968,nice message,1378635823 +28159,3968,sexy devil,1378635826 +28159,3977,Cameron Diaz,1378635726 +28159,3977,Lucy Liu,1378635737 +28159,6947,historical,1378634779 +28159,6947,Russell Crowe,1378634796 +28159,6947,seafaring,1378634800 +28159,6947,war,1378634798 +28159,7143,Japan,1378444116 +28159,7143,Ken Watanabe,1378444112 +28159,7143,samurai,1378444119 +28159,7458,based on a poem,1378794523 +28159,7458,Brad Pitt,1378794510 +28159,7458,historical epic,1378794509 +28159,7458,Nudity (Topless),1378794517 +28159,7458,Orlando Bloom,1378794512 +28159,30749,African American history,1378388152 +28159,30825,Robert De Niro,1378634705 +28159,31696,Comedy,1378636185 +28159,31696,Keanu Reeves,1378636178 +28159,32587,black comedy,1378636036 +28159,32587,Quentin Tarantino,1378636040 +28159,32587,Rosario Dawson,1378636027 +28159,32587,stylized,1378636042 +28159,42197,Kristin Scott Thomas,1378794264 +28159,42197,Rowan Atkinson,1378794251 +28159,47810,Nicolas Cage,1378796929 +28159,53519,grindhouse,1378634976 +28159,53519,Quentin Tarantino,1378634935 +28159,53519,Rosario Dawson,1378635009 +28159,53519,slow paced,1378634961 +28159,53519,too long,1378634966 +28159,54259,Claire Danes,1378635042 +28159,54259,comedy,1378634663 +28159,54259,fantasy world,1378634660 +28159,54259,Robert De Niro,1378634669 +28159,63540,comedy,1378637154 +28159,63540,Piper Perabo,1378637141 +28159,75983,based on a true story,1378413966 +28159,75983,climbing,1378413951 +28159,75983,man vs. nature,1378413954 +28159,78574,Jennifer Lawrence,1378443802 +28159,93363,fantasy,1378413763 +28159,93363,funny moments,1378413796 +28159,93578,Julian Gilbey,1378413722 +28159,96588,Funny,1378413912 +28159,96588,music,1378413897 +28159,99149,Anne Hathaway,1378637063 +28159,99149,emotional,1378637091 +28159,99149,revolution,1378637066 +28159,99149,Russell Crowe,1378637048 +28159,99149,Sacha Baron Cohen,1378637055 +28159,99149,singing,1378637071 +28159,99149,Victor Hugo,1378637051 +28159,103249,Brad Pitt,1378634855 +28159,103249,zombies,1378634858 +28159,104211,funny moments,1378403492 +28160,5903,children wit,1385205367 +28160,5903,Feelings,1385205083 +28160,5903,government,1385205203 +28160,45503,will power,1383471446 +28170,18,Nudity (Topless),1181040885 +28170,110,Nudity (Topless),1190166439 +28170,196,Nudity (Topless),1213693983 +28170,253,based on a book,1172065260 +28170,253,Nudity (Full Frontal),1172240868 +28170,253,vampires,1172065246 +28170,296,crime,1426732672 +28170,296,non-linear,1426732672 +28170,296,nonlinear,1184292736 +28170,296,pulp,1426732672 +28170,318,based on a book,1172238308 +28170,353,based on a comic,1184293077 +28170,353,Nudity (Rear),1172240875 +28170,589,realistic tough female,1227166573 +28170,589,time travel,1227166584 +28170,668,based on a book,1227686770 +28170,735,Nudity (Topless),1213693953 +28170,750,based on a book,1172102562 +28170,750,black and white,1172065492 +28170,858,based on a book,1172065605 +28170,858,Nudity (Topless),1172240887 +28170,919,based on a book,1172242889 +28170,1059,based on a play,1172243088 +28170,1073,based on a book,1172243001 +28170,1080,based on a myth,1213693562 +28170,1178,based on a book,1227686775 +28170,1178,black and white,1227686780 +28170,1193,based on a book,1227686300 +28170,1193,Nudity (Topless),1227686362 +28170,1200,realistic tough female,1227165158 +28170,1203,based on a play,1191227863 +28170,1208,based on a book,1178606970 +28170,1208,Nudity (Topless),1178774581 +28170,1240,Nudity (Topless),1173499449 +28170,1240,time travel,1227166592 +28170,1260,black and white,1227686036 +28170,1265,time travel,1227938268 +28170,1275,Nudity (Topless),1213693890 +28170,1356,Based on a TV show,1218445632 +28170,1356,time travel,1184293242 +28170,1645,Nudity (Full Frontal),1213693828 +28170,1732,Nudity (Full Frontal),1213693699 +28170,1805,Nudity (Topless),1213694131 +28170,1862,Nudity (Full Frontal),1172208245 +28170,1909,Based on a TV show,1227167121 +28170,1982,Nudity (Topless),1188879138 +28170,2360,Nudity (Topless),1213694530 +28170,2640,based on a comic,1178607795 +28170,2641,based on a comic,1178607843 +28170,2643,based on a comic,1178607877 +28170,2692,time travel,1172062820 +28170,2712,Nudity (Full Frontal),1213693762 +28170,2763,Nudity (Topless),1213693974 +28170,2858,Nudity (Topless),1213694121 +28170,2928,based on a book,1172101676 +28170,2928,remake,1172101662 +28170,2959,based on a book,1172062826 +28170,2959,mental illness,1172062825 +28170,2959,Nudity (Topless),1213694620 +28170,2995,Nudity (Topless),1213694797 +28170,3022,black and white,1213022471 +28170,3210,Nudity (Full Frontal),1213693777 +28170,3253,Based on a TV show,1213699404 +28170,3435,based on a book,1213022990 +28170,3617,Nudity (Topless),1213693992 +28170,3697,Nudity (Full Frontal),1213693687 +28170,3793,based on a comic,1184293118 +28170,3793,marvel,1172242861 +28170,3793,super hero,1213698612 +28170,3916,based on a true story,1200684093 +28170,4020,Nudity (Topless),1213694095 +28170,4128,vampires,1191227814 +28170,4226,nonlinear,1172065735 +28170,4306,based on a book,1172065022 +28170,4878,director's cut,1172062947 +28170,4878,mental illness,1172062832 +28170,4878,time travel,1172062833 +28170,4896,based on a book,1227166894 +28170,5038,time travel,1213693425 +28170,5064,based on a book,1172240840 +28170,5110,Nudity (Topless),1181040862 +28170,5291,black and white,1227686836 +28170,5380,based on a play,1176034430 +28170,5470,based on a play,1176034404 +28170,5618,anime,1218446869 +28170,5816,based on a book,1227166903 +28170,5952,based on a book,1172064676 +28170,5958,Based on a TV show,1213693106 +28170,6016,based on a book,1225189863 +28170,6016,based on a true story,1213022910 +28170,6016,Nudity (Topless),1213694733 +28170,6214,Nudity (Full Frontal),1213693806 +28170,6333,based on a comic,1184293111 +28170,6333,marvel,1172063093 +28170,6333,super hero,1213698624 +28170,6537,Nudity (Rear),1173499436 +28170,6537,Nudity (Topless),1213693915 +28170,6537,time travel,1213693925 +28170,6874,realistic tough female,1227164702 +28170,7153,based on a book,1172241978 +28170,7346,Nudity (Topless),1178609162 +28170,7369,based on a TV show,1172102730 +28170,7458,based on a myth,1213693448 +28170,7458,based on a poem,1213699431 +28170,7458,Nudity (Rear),1172063199 +28170,7618,based on a true story,1213694109 +28170,7618,Nudity (Topless),1213694109 +28170,7649,based on a TV show,1184293202 +28170,8208,based on a book,1172101655 +28170,8368,based on a book,1227164818 +28170,8368,time travel,1172242443 +28170,8643,based on a book,1172242548 +28170,8861,based on a video game,1178774696 +28170,8861,Nudity (Topless),1178774680 +28170,8981,Nudity (Rear),1234000062 +28170,25736,based on a book,1227683831 +28170,25750,silent,1172065799 +28170,25755,based on a book,1175706396 +28170,25771,Nudity (Topless),1225179061 +28170,25820,based on a poem,1233829011 +28170,26007,based on a book,1225188830 +28170,26139,Nudity (Topless),1213694209 +28170,26158,Nudity (Rear),1225189013 +28170,26199,Nudity (Topless),1213694228 +28170,26251,Nudity (Topless),1218178789 +28170,26318,Nudity (Full Frontal),1182260720 +28170,26403,based on a book,1239862842 +28170,26487,Nudity (Topless),1213694085 +28170,26502,based on a book,1231576902 +28170,26693,based on a book,1229604262 +28170,26700,Nudity (Topless),1182260604 +28170,26788,based on a book,1174279141 +28170,26796,Nudity (Topless),1203522856 +28170,26803,Nudity (Topless),1213694247 +28170,27027,based on a book,1232172744 +28170,27368,Nudity (Rear),1225189268 +28170,27513,Nudity (Full Frontal),1213020461 +28170,27627,Nudity (Topless),1174279145 +28170,27671,based on a book,1239862656 +28170,27736,Nudity (Full Frontal),1213020989 +28170,27744,Nudity (Topless),1191310651 +28170,27866,Nudity (Topless),1203226038 +28170,30707,realistic tough female,1227164468 +28170,30793,based on a book,1227167029 +28170,31804,vampires,1191314672 +28170,32211,Nudity (Rear),1225178940 +28170,32737,based on a book,1231576772 +28170,32737,Nudity (Full Frontal),1231576810 +28170,32737,Nudity (Rear),1231576783 +28170,33072,Nudity (Topless),1218178529 +28170,34002,Marx Brothers,1172061985 +28170,34018,Marx Brothers,1172061998 +28170,34386,Nudity (Topless),1233830224 +28170,34405,Based on a TV show,1227166647 +28170,34405,realistic tough female,1227166647 +28170,34499,Nudity (Topless),1213694844 +28170,35836,Nudity (Topless),1213693964 +28170,36708,based on a TV show,1172102711 +28170,36708,time travel,1182261216 +28170,37211,Marx Brothers,1172061956 +28170,37380,based on a video game,1213693238 +28170,37733,based on a comic,1184293101 +28170,37733,Nudity (Full Frontal),1213693794 +28170,38499,based on a play,1225188402 +28170,38824,based on a book,1227683684 +28170,40815,based on a book,1227166899 +28170,40966,based on a play,1191314553 +28170,42197,Nudity (Topless),1213022751 +28170,43710,based on a true story,1231576974 +28170,44191,based on a comic,1227166514 +28170,44555,Nudity (Rear),1227686005 +28170,44555,Nudity (Topless),1227686005 +28170,44613,based on a true story,1213693015 +28170,44788,Nudity (Full Frontal),1184293595 +28170,45664,Nudity (Topless),1201428596 +28170,46231,Nudity (Topless),1225188820 +28170,46772,Based on a TV show,1213692972 +28170,47202,Nudity (Topless),1203226078 +28170,47287,based on a book,1236160876 +28170,47287,based on a play,1236160888 +28170,47446,Nudity (Full Frontal),1204459946 +28170,47629,based on a true story,1213698660 +28170,47937,Nudity (Topless),1213693938 +28170,47940,Nudity (Topless),1218178562 +28170,48584,Nudity (Topless),1213694660 +28170,48682,Nudity (Topless),1213694690 +28170,48856,Nudity (Topless),1174279153 +28170,49263,Nudity (Topless),1213694815 +28170,49666,Nudity (Full Frontal),1201429046 +28170,50347,Nudity (Full Frontal),1225189217 +28170,50858,Nudity (Topless),1203225871 +28170,51014,based on a book,1227683803 +28170,51024,based on a poem,1232172793 +28170,51077,based on a comic,1229854557 +28170,51077,Marvel,1229854530 +28170,51174,Nudity (Topless),1179770302 +28170,51304,based on a true story,1225189104 +28170,51304,Nudity (Topless),1225189094 +28170,51662,based on a comic,1184293091 +28170,51662,Nudity (Topless),1184293091 +28170,51911,based on a play,1225189714 +28170,52005,Nudity (Topless),1213694219 +28170,52227,Nudity (Topless),1213694035 +28170,52241,Nudity (Topless),1213694834 +28170,52435,based on a book,1227685027 +28170,52448,Nudity (Topless),1213694681 +28170,52561,Nudity (Topless),1213694553 +28170,52591,nudity (rear),1218178671 +28170,52644,Nudity (Topless),1213694651 +28170,52722,based on a comic,1184293132 +28170,52722,marvel,1184293139 +28170,52722,super hero,1179039131 +28170,52950,Nudity (Rear),1213693852 +28170,52973,Nudity (Topless),1213694544 +28170,53127,Nudity (Full Frontal),1180857450 +28170,53127,nudity (topless),1180857446 +28170,53189,Nudity (Topless),1213694065 +28170,53207,Nudity (Rear),1203225675 +28170,53318,Nudity (Full Frontal),1200683680 +28170,53435,Nudity (Topless),1180857437 +28170,53464,based on a comic,1182260829 +28170,53464,super hero,1213698635 +28170,53887,Nudity (Topless),1213694075 +28170,53996,based on a comic,1184292113 +28170,54196,Nudity (Topless),1213694720 +28170,54259,based on a book,1188879371 +28170,54372,Nudity (Full Frontal),1213693664 +28170,54510,Nudity (Topless),1220248592 +28170,54691,based on a book,1227938134 +28170,54796,Nudity (Topless),1213693900 +28170,54958,Nudity (Topless),1225188845 +28170,54978,Nudity (Topless),1213694561 +28170,55069,Nudity (Full Frontal),1201428840 +28170,55094,Nudity (Topless),1213694045 +28170,55110,Nudity (Topless),1213694055 +28170,55498,Nudity (Full Frontal),1218178455 +28170,55814,based on a book,1200747682 +28170,55814,based on a true story,1200747702 +28170,56028,Nudity (Topless),1225188858 +28170,56060,Nudity (Topless),1220248677 +28170,56171,based on a book,1199440154 +28170,56174,based on a book,1204460160 +28170,56251,Based on a TV show,1218178689 +28170,56274,Nudity (Topless),1213694824 +28170,56607,based on a book,1200747716 +28170,56715,Nudity (Topless),1218178521 +28170,56748,Nudity (Topless),1225189258 +28170,56757,based on a play,1203225618 +28170,56782,based on a book,1200683573 +28170,57640,based on a comic,1218178918 +28170,57640,super hero,1218178876 +28170,57910,Nudity (Topless),1213021215 +28170,58105,based on a book,1204459766 +28170,58299,based on a book,1206519365 +28170,58303,based on a book,1206519341 +28170,58303,Nudity (Topless),1213694781 +28170,58332,Nudity (Topless),1225188905 +28170,58334,Nudity (Topless),1225189317 +28170,58367,Nudity (Topless),1213694747 +28170,58490,Nudity (Rear),1213693841 +28170,58559,super hero,1218179014 +28170,58783,Nudity (Topless),1213020546 +28170,58975,Nudity (Topless),1213694237 +28170,58998,Nudity (Full Frontal),1213693739 +28170,58998,Nudity (Topless),1213693739 +28170,59022,Nudity (Topless),1213021208 +28170,59026,Nudity (Topless),1225188894 +28170,59065,Nudity (Topless),1225189277 +28170,59105,Nudity (Full Frontal),1213693645 +28170,59159,based on a book,1233828957 +28170,59256,Nudity (Topless),1213021200 +28170,59290,Nudity (Full Frontal),1213021192 +28170,59315,based on a comic,1213021083 +28170,59315,Marvel,1213021064 +28170,59315,super hero,1213021178 +28170,59362,Nudity (Topless),1218178598 +28170,59501,based on a book,1213020722 +28170,59519,Nudity (Topless),1213693879 +28170,59604,Nudity (Topless),1225189304 +28170,59725,based on a book,1218179324 +28170,59725,Based on a TV show,1218179262 +28170,59725,Nudity (Topless),1213020586 +28170,59729,Nudity (Topless),1213694671 +28170,59738,Nudity (Topless),1225188974 +28170,59834,Nudity (Topless),1225188797 +28170,59915,Nudity (Topless),1213020475 +28170,60044,Nudity (Topless),1214632971 +28170,60074,super hero,1218179081 +28170,60106,based on a book,1233830283 +28170,60126,Based on a TV show,1214632865 +28170,60314,based on a book,1233828835 +28170,60363,Nudity (Rear),1225189063 +28170,60363,Nudity (Topless),1225189054 +28170,60393,Nudity (Topless),1225189242 +28170,60421,based on a book,1218179059 +28170,60530,Nudity (Full Frontal),1218178772 +28170,60566,Nudity (Topless),1225188870 +28170,60654,nudity (full frontal),1218178735 +28170,60684,based on a comic,1239012135 +28170,60688,Nudity (Topless),1218178609 +28170,60753,Nudity (Topless),1220248561 +28170,60816,based on a book,1234000149 +28170,60832,Nudity (Topless),1225189132 +28170,61073,Nudity (Full Frontal),1218444025 +28170,61075,Nudity (Topless),1219052842 +28170,61248,remake,1225189480 +28170,61262,Nudity (Topless),1220248643 +28170,61350,based on a book,1225189411 +28170,61354,Nudity (Rear),1225189389 +28170,61401,based on a comic,1231577046 +28170,61473,Nudity (Topless),1225189330 +28170,61646,Nudity (Topless),1225189038 +28170,61961,remake,1225188760 +28170,61970,Nudity (Topless),1225188721 +28170,62049,based on a book,1225188589 +28170,62394,based on a video game,1225179125 +28170,62974,based on a book,1236160904 +28170,63062,based on a true story,1226574441 +28170,63121,based on a book,1229078130 +28170,64575,based on a play,1231577636 +28170,64620,based on a true story,1229854707 +28170,64622,Nudity (Full Frontal),1231577568 +28170,64622,Nudity (Rear),1231577564 +28170,64983,based on a true story,1231577066 +28170,65006,Nudity (Rear),1231577004 +28170,65006,Nudity (Topless),1231577029 +28170,65037,based on a book,1231576958 +28170,65126,based on book,1231576935 +28170,65612,based on a book,1233830152 +28170,65612,Nudity (Rear),1233830174 +28170,65612,Nudity (Topless),1233830164 +28170,65642,time travel,1233830108 +28170,65817,Nudity (Full Frontal),1236160489 +28170,66097,based on a book,1236161026 +28170,66354,based on a book,1236160547 +28170,66639,based on a video game,1239012157 +28172,106918,inspirational,1448899844 +28172,106918,scenic,1448899858 +28172,106918,travel,1448899873 +28172,106918,visually appealing,1448899850 +28177,260,good for kids,1433973963 +28177,260,oldie but goodie,1433973976 +28191,370,hilarious,1346668941 +28191,370,Leslie Neilsen,1346668946 +28191,370,parody,1346668944 +28191,474,Clint Eastwood,1379873704 +28191,474,John Malkovich,1379873706 +28191,750,black and white,1303070561 +28191,750,dark comedy,1303070556 +28191,1127,too long,1361212303 +28191,1201,Clint Eastwood,1320617387 +28191,1201,Ennio Morricone,1320617378 +28191,1201,humorous,1320617390 +28191,1212,orson welles,1422203057 +28191,1219,psychology,1314307824 +28191,1219,tense,1314307827 +28191,1258,Jack Nicholson,1316380843 +28191,1258,psychological,1316380845 +28191,1258,Stanley Kubrick,1316380851 +28191,1258,suspense,1316380853 +28191,1258,visually appealing,1316380856 +28191,1291,religion,1301862823 +28191,1291,supernatural,1301862823 +28191,1354,Emily Watson,1305413189 +28191,1354,great acting,1305413185 +28191,1354,religion,1305413195 +28191,1653,dystopia,1294609502 +28191,1653,dystopic future,1294609500 +28191,1653,genetic engineering,1294609514 +28191,1653,genetics,1294609498 +28191,1653,sci-fi,1294609490 +28191,1653,space travel,1294609507 +28191,2009,dystopia,1309724776 +28191,2009,FIGHTING THE SYSTEM,1309724796 +28191,2009,twist ending,1309724781 +28191,2022,jesus,1367613565 +28191,2313,black and white,1310808015 +28191,2313,David Lynch,1310808020 +28191,2324,bittersweet,1320005975 +28191,2324,optimism,1320005979 +28191,2324,Roberto Benigni,1320006004 +28191,2340,Anthony Hopkins,1320450065 +28191,2340,death personified,1320450108 +28191,2340,impersonation of death,1320450113 +28191,2340,slow,1320450134 +28191,2340,Too Long!,1320450134 +28191,2476,Clint Eastwood,1346668574 +28191,2691,ennio morricone,1310936665 +28191,2691,great soundtrack,1310936650 +28191,2692,alternate endings,1315248809 +28191,2692,animation,1315248819 +28191,2692,nonlinear,1315248811 +28191,2700,adult humor,1319816132 +28191,2700,crude humor,1319816134 +28191,2700,musical,1319816141 +28191,2700,parody,1319816136 +28191,2712,enigmatic,1296428786 +28191,2712,notable soundtrack,1296428794 +28191,2712,Stanley Kubrick,1296428797 +28191,2791,comedy,1320005729 +28191,2791,funny,1320005733 +28191,2791,Funny as hell,1320005738 +28191,2791,Parody,1320005730 +28191,2908,hilary swank,1403511563 +28191,2985,cyborgs,1378657353 +28191,2985,dystopia,1378657350 +28191,2985,robots,1378657363 +28191,2985,violence,1378657359 +28191,2985,violent,1378657358 +28191,3083,Penélope Cruz,1303423988 +28191,3083,Penélope Cruz,1303423983 +28191,3160,ensemble cast,1320184943 +28191,3160,melancholy,1320184950 +28191,3160,multiple storylines,1320184936 +28191,3160,Tom Cruise,1320184932 +28191,3174,Andy Kaufman,1386579214 +28191,3174,Jim Carrey,1386579222 +28191,3252,Al Pacino,1379185912 +28191,3556,coming of age,1311108876 +28191,3556,high school,1311108873 +28191,3556,Kirsten Dunst,1311108865 +28191,3581,90s club culture,1317071881 +28191,3581,friendship,1317071878 +28191,3581,funny,1317071885 +28191,3621,acting,1383477124 +28191,3621,hysteric,1383477099 +28191,3621,mess,1383477104 +28191,3868,Funny as hell,1346668928 +28191,3868,Leslie Nielsen,1346668925 +28191,3868,parody,1346668933 +28191,3869,comedy,1346668966 +28191,3869,I laughed continuosly throughout this film,1346668962 +28191,3910,drama,1304976609 +28191,3910,Lars von Trier,1304976611 +28191,3910,sad,1320185887 +28191,4389,Mischa Barton,1300541129 +28191,4816,ben stiller,1320005759 +28191,4816,Funny as hell,1320005761 +28191,4816,Will Ferrell,1320005757 +28191,4848,bisexual,1293537692 +28191,4848,Naomi Watts,1293537761 +28191,4848,nonlinear,1293537701 +28191,4848,Nudity (Full Frontal - Notable),1293537707 +28191,4855,Clint Eastwood,1314564157 +28191,4873,philosophy,1330800146 +28191,4873,thought-provoking,1330800161 +28191,4979,dark comedy,1391896699 +28191,5014,unrealistic,1386531185 +28191,5418,espionage,1311370512 +28191,5418,realistic action,1311370522 +28191,5418,thriller,1311370531 +28191,5608,based on a true story,1314909608 +28191,5608,brutal,1314909623 +28191,5608,human nature,1314909619 +28191,5608,mass behavior,1314909621 +28191,5608,oppression,1314909618 +28191,5608,psychological,1314909629 +28191,5608,psychology,1314909615 +28191,5608,true story,1314909633 +28191,5878,psychology,1302644771 +28191,5878,sexuality,1302644791 +28191,6286,boring,1373831222 +28191,6286,slow,1373831233 +28191,6537,predestination,1300141367 +28191,6708,Nicolas Cage,1334436239 +28191,6708,twist ending,1334436236 +28191,6711,Scarlett Johansson,1378933379 +28191,7060,jesus,1367613565 +28191,7147,reflective,1296083713 +28191,7147,twist ending,1296083710 +28191,7318,jesus,1367613565 +28191,7371,depressing,1302044242 +28191,7371,experimental,1302044229 +28191,7371,Nicole Kidman,1302044232 +28191,8665,car chase,1311625137 +28191,9010,Marion Cotillard,1295995185 +28191,9010,Nudity (Topless - Notable),1295995187 +28191,27773,depressing,1387553930 +28191,27773,disturbing,1387553924 +28191,27773,revenge,1387553923 +28191,27773,twist ending,1387553917 +28191,27788,Keira Knightley,1293544862 +28191,30810,Bill Murray,1420209395 +28191,31685,predictable,1379369470 +28191,33166,bad acting,1306444795 +28191,33166,pathetic,1306444795 +28191,33166,useless,1306444795 +28191,34048,father daughter relationship,1293657879 +28191,38061,black comedy,1379865170 +28191,38886,dark comedy,1388404498 +28191,39183,cutting,1330266459 +28191,39768,optimistic,1367052704 +28191,41569,boring,1298977053 +28191,41569,hollywood,1298977036 +28191,41569,Naomi Watts,1298977032 +28191,41569,stupid,1298977082 +28191,43921,depressing,1306621515 +28191,43921,pedophile,1306621579 +28191,44974,controversial,1389024749 +28191,44974,disturbing,1389024756 +28191,44974,intense,1389024757 +28191,44974,psychology,1389024761 +28191,47999,jesus,1367613565 +28191,48142,confusing plot,1309121711 +28191,48394,bittersweet,1315002837 +28191,48394,surreal,1315002829 +28191,48943,bad sequel,1320005049 +28191,49530,corruption,1316982038 +28191,49530,Leonardo DiCaprio,1316982026 +28191,49530,photography,1316982030 +28191,49530,violent,1316982041 +28191,50842,Automavision,1310164500 +28191,50842,dark comedy,1310164424 +28191,50842,To See,1310164510 +28191,50872,cooking,1374836582 +28191,50872,funny,1374836585 +28191,50872,pixar,1374836587 +28191,51312,Paolo Sorrentino,1398290895 +28191,54910,bad ending,1396614913 +28191,55269,dark comedy,1395530214 +28191,55280,emotional,1369600008 +28191,55280,mental illness,1369600011 +28191,56339,ghosts,1319752731 +28191,56339,ghosts/afterlife,1319752734 +28191,56339,not scary enough,1319752726 +28191,56339,twist ending,1319752723 +28191,59369,action,1326021350 +28191,59369,Liam Neeson,1326021354 +28191,59369,thriller,1326021352 +28191,60074,anti-hero,1346668808 +28191,60074,not as good as I expected,1346668804 +28191,60074,superhero,1346668810 +28191,60684,open ending,1295306476 +28191,60684,sci-fi,1295306491 +28191,60684,superhero,1295306489 +28191,61323,Brad Pitt,1302965186 +28191,61323,Coen Brothers,1302965192 +28191,61323,dark comedy,1302965195 +28191,61323,movie to see,1302965176 +28191,62644,fast paced,1315435256 +28191,62644,high school,1315436036 +28191,62644,predictable,1315435199 +28191,62644,psychology,1315436031 +28191,62644,social experiment,1315436033 +28191,62644,unnatached to characters,1315436045 +28191,63062,angelina jolie,1327955363 +28191,63062,based on a true story,1327955332 +28191,63062,police corruption,1327955468 +28191,64622,great acting,1360526881 +28191,64622,Kate Winslet,1360526890 +28191,65642,complicated,1315344616 +28191,65642,no ending,1315344618 +28191,65642,Not enough complicated,1315344631 +28191,65642,Nudity (Topless),1315344646 +28191,65642,paradox,1315344624 +28191,65642,time travel,1315344625 +28191,67255,cinematography,1361816371 +28191,67255,hackers,1361816370 +28191,68319,stupid,1385477043 +28191,68791,bad plot,1300318557 +28191,68791,Christian Bale,1300318539 +28191,68791,False advertising,1300318520 +28191,69134,atmospheric,1311195903 +28191,69134,beautiful scenery,1311195905 +28191,69134,bleak,1311195943 +28191,69134,Lars von Trier,1311195907 +28191,69134,slow motion,1311195931 +28191,69134,slow motion scenes,1311195931 +28191,69306,boring,1361631330 +28191,69306,too simple plot,1361631328 +28191,69604,eccentricity,1360527160 +28191,69604,Larry David,1360527155 +28191,71033,excellent script,1360525632 +28191,71033,revenge,1360525635 +28191,71838,ending kinda ruined it,1364402847 +28191,71838,predictable ending,1364402843 +28191,71838,revenge,1364402852 +28191,71838,technology,1364402861 +28191,71838,unrealistic,1364402849 +28191,72380,plot twist,1315668434 +28191,72380,twists & turns,1315668441 +28191,72998,boring,1298977162 +28191,74458,psychological,1373831291 +28191,77561,particle accelerator,1293539076 +28191,78574,cinematography,1378320640 +28191,78574,Jennifer Lawrence,1378320701 +28191,78574,realism,1378320638 +28191,79185,boring,1303852528 +28191,79185,stupid,1303852539 +28191,79242,good acting,1360525141 +28191,79242,humorous,1360525148 +28191,80463,computers,1304016785 +28191,80463,dark comedy,1304016789 +28191,80463,hacking,1304016798 +28191,80463,true story,1304016791 +28191,80862,drama,1409426483 +28191,80862,makes you think,1409426480 +28191,80862,thought-provoking,1409426475 +28191,80862,true story,1409426477 +28191,81059,Giacomo Rizzo,1388420237 +28191,81059,Laura Chiatti,1388420254 +28191,81059,Paolo Sorrentino,1388420237 +28191,81562,true story,1360525208 +28191,81564,anti-hero,1326021382 +28191,81564,funny,1326021386 +28191,81564,music,1326021435 +28191,81591,atmospheric,1307906235 +28191,81591,creepy,1307906251 +28191,81591,dance,1307906262 +28191,81591,dark,1307906249 +28191,81591,drama,1307906254 +28191,81591,horror,1307906239 +28191,81591,Natalie Portman,1307906237 +28191,81591,R:strong sexual content,1307906244 +28191,81819,long,1310333753 +28191,81845,based on a true story,1307307634 +28191,81845,Oscar (Best Picture),1307307637 +28191,82459,Coen Brothers,1357512161 +28191,82459,predictable,1357512170 +28191,82459,Western,1357512163 +28191,82461,daft punk,1421508063 +28191,86190,beautiful cinematography,1380987911 +28191,86190,strong female lead,1380987910 +28191,86320,Charlotte Gainsbourg,1319361603 +28191,87306,awful,1316170410 +28191,87306,scientific errors,1316170376 +28191,87306,trite,1316170379 +28191,87306,unbelievable characters,1316170381 +28191,87306,Uneven performances,1316170386 +28191,87520,action,1378066707 +28191,87520,audience intelligence underestimated,1378066676 +28191,87520,bad science,1378066705 +28191,87520,childish plot,1378066698 +28191,87520,cliche,1378066694 +28191,87520,dialogue,1378066700 +28191,87520,effects,1378066722 +28191,87520,FX,1378066715 +28191,87520,moon,1378066789 +28191,87520,silly,1378066703 +28191,88163,boring,1374695722 +28191,88163,comedy,1374695705 +28191,88163,funny,1374695709 +28191,88163,plot twist,1374695711 +28191,88163,too long,1374695734 +28191,89039,Parallels worlds,1358796989 +28191,89118,Pedro Almodovar,1392589320 +28191,89118,psychology,1392589317 +28191,89745,great humor,1335985802 +28191,89745,Iron Man,1335985800 +28191,89745,Robert Downey Jr.,1335985793 +28191,89774,great acting,1398973870 +28191,89774,touching,1398973867 +28191,89864,comedy,1379265047 +28191,89864,emotional,1379265048 +28191,89864,Joseph Gordon-Levitt,1379265045 +28191,89904,drama,1331151330 +28191,89904,Michel Hazanavicius,1331151336 +28191,89904,original,1331151343 +28191,89904,Simplistic,1331151351 +28191,89904,visually appealing,1331151360 +28191,90405,cheesy,1360699638 +28191,90439,boring,1378756071 +28191,90439,Kevin Spacey,1378756073 +28191,90531,Carey Mulligan's acting,1381075589 +28191,90531,Michael Fassbender,1381075584 +28191,90719,slow,1370196986 +28191,90866,android(s)/cyborg(s),1329342459 +28191,90866,robots,1329342493 +28191,90866,set:mechanical gearworks,1329342485 +28191,91325,9/11,1374929512 +28191,91325,Max von Sydow,1374929509 +28191,91325,Sandra Bullock,1374929770 +28191,91542,great cinematography,1325281405 +28191,91542,unrealistic,1325281428 +28191,92259,Einaudi,1331501993 +28191,92259,emotional,1331502029 +28191,92259,funny,1331502029 +28191,92259,soundtrack,1331502011 +28191,93831,crude humor,1360526220 +28191,93840,clever,1379358057 +28191,93840,dark comedy,1379358054 +28191,93840,funny,1379358059 +28191,93840,original,1379358055 +28191,93840,weird,1379358061 +28191,94864,bad science,1377209256 +28191,94864,pathetic,1377209256 +28191,94864,religion,1377209256 +28191,94959,Wes Anderson,1388339091 +28191,95510,remake,1385476979 +28191,95510,Teenmovie,1385476972 +28191,96079,beautifully filmed,1373196673 +28191,96079,cinematography,1373196675 +28191,96610,paranormal,1378066979 +28191,96821,atmospheric,1378505372 +28191,96821,awkward situations,1378505406 +28191,96821,character development,1378505369 +28191,96821,Emma Watson,1378505386 +28191,96821,Not very realistic,1378505381 +28191,96821,touching,1378505375 +28191,96829,hard to watch,1390730461 +28191,96829,painful to watch,1390730469 +28191,96829,Thomas Vinterberg,1390730459 +28191,96857,bad science,1373306117 +28191,96857,james randi,1373306130 +28191,96857,weak editing,1373306109 +28191,97752,atmospheric,1358791459 +28191,97752,dystopia,1358791468 +28191,97752,multiple storylines,1358791462 +28191,97752,philosophy,1358791470 +28191,97752,visually appealing,1358791457 +28191,97936,cinematography,1361630834 +28191,97936,costumes,1361630851 +28191,97938,emotional,1442170097 +28191,97938,great photograpy,1442170103 +28191,97938,visually appealing,1442170099 +28191,99114,Funny,1360525260 +28191,99114,Spaghetti Western,1360525256 +28191,99114,western,1360525269 +28191,99149,singing,1421537132 +28191,100068,funny,1361212028 +28191,100068,Michael Youn,1361212038 +28191,101088,insubstantial,1404433919 +28191,101088,nonsense story,1404433921 +28191,101088,psychological thriller,1404433931 +28191,102407,visually appealing,1420305125 +28191,103980,Cate Blanchett,1387799301 +28191,103980,pointless,1387799307 +28191,103984,ironic,1378314717 +28191,103984,Paolo Sorrentino,1378314664 +28191,103984,photography,1378314717 +28191,103984,Toni Servillo,1378314717 +28191,104841,cgi,1381307852 +28191,104841,cinematography,1381307858 +28191,104841,pathos,1381307854 +28191,104841,space,1381307850 +28191,104841,visually appealing,1381307848 +28191,104913,accident,1380616379 +28191,104913,based on a true story,1380616311 +28191,104913,Ferrari,1380616362 +28191,104913,great soundtrack,1380616326 +28191,104913,interesting characters,1380616334 +28191,104913,McLaren,1380616367 +28191,104913,racing,1380616331 +28191,105355,Adele Exarchopoulos,1401401813 +28191,105355,bittersweet,1401401825 +28191,105355,editing,1401401809 +28191,105355,loneliness,1401401838 +28191,105355,visually appealing,1401401831 +28191,106487,Abrupt ending,1386080334 +28191,106487,acting,1386080360 +28191,106487,excellent script,1386080336 +28191,106487,Jennifer Lawrence,1386080341 +28191,106487,Remember who the enemy is,1386080350 +28191,106487,visually appealing,1386080368 +28191,108727,Lars von Trier,1400079076 +28191,108932,clever,1438641177 +28191,108932,fun,1438641175 +28191,108981,Lars von Trier,1400079091 +28191,110039,visually appealing,1417562115 +28191,110407,bad science,1421969530 +28191,110675,romantic,1421010378 +28191,110730,anti-scientific,1428574773 +28191,110730,nano-technology,1428574792 +28191,110730,silly,1428574767 +28191,112290,realism,1422127675 +28191,112556,David Fincher,1420220009 +28191,112556,mindfuck,1420220030 +28191,112556,Psychopathy,1420220024 +28191,112556,unpredictable,1420220026 +28191,116797,cryptography,1420554236 +28191,116797,World War II,1420554278 +28191,117176,cinematography,1425284862 +28191,117464,dark comedy,1440661153 +28191,120462,Bullying,1420209772 +28191,120462,childhood,1420209680 +28191,120462,first love,1420209781 +28191,120462,gabriele salvatores,1420210071 +28191,120462,mutation,1420210117 +28191,120462,superhero,1420209665 +28191,120462,Trieste,1420209813 +28191,120462,Valeria Golino,1420209826 +28191,122886,Plot Recycling,1451840634 +28191,134853,psychology,1438335711 +28191,134853,sadness,1438335721 +28216,260,classic sci-fi,1440001296 +28216,260,incest,1440001302 +28228,32,deterministic,1244063715 +28228,35,polyamory,1350127981 +28228,1240,deterministic,1244063672 +28228,1265,ontoleptic,1244064594 +28228,1304,polyamory,1350127744 +28228,1464,ontoleptic,1244064077 +28228,1480,female lead,1339231970 +28228,1480,McGuffin-driven plot,1339231008 +28228,1480,supernatural,1339230906 +28228,1748,ontoleptic,1244063289 +28228,2105,ontoleptic,1244063473 +28228,2571,ontoleptic,1244063271 +28228,2600,ontoleptic,1244063280 +28228,2672,ontoleptic,1244063220 +28228,2692,ontoleptic,1244064550 +28228,2916,ontoleptic,1244063626 +28228,2959,ontoleptic,1244064302 +28228,4174,ontoleptic,1244063264 +28228,4226,ontoleptic,1244064221 +28228,4709,polyamory,1350128255 +28228,4844,polyamory,1350127875 +28228,4848,ontoleptic,1244064022 +28228,4878,ontoleptic,1244064534 +28228,5225,polyamory,1350128292 +28228,6442,polyamory,1350127939 +28228,7361,ontoleptic,1244064195 +28228,8914,deterministic,1244063741 +28228,8966,polyamory,1350128183 +28228,60161,polyamory,1350128080 +28228,60950,polyamory,1350128149 +28228,68690,polyamory,1350128236 +28228,69604,polyamory,1350127706 +28228,71573,based on a comic book,1339230875 +28228,71573,McGuffin-driven plot,1339231020 +28228,71573,strong female lead,1339231109 +28228,73015,polyamory,1350128114 +28228,81456,polyamory,1350128215 +28228,86190,female lead,1339231146 +28228,87790,polyamory,1350128043 +28228,95583,polyamory,1350127642 +28228,95583,violence,1350127661 +28228,95583,visually appealing,1350127673 +28228,97332,polyamory,1350128501 +28229,260,old movie,1432458277 +28233,260,romance,1434379979 +28233,260,space action,1434379937 +28233,260,space adventure,1434379965 +28233,260,Star Wars,1434379954 +28246,260,father-son relationship,1436263590 +28246,260,great story,1436263618 +28246,260,inspiring,1436263602 +28251,708,romantic,1137236918 +28251,2683,funny,1137236928 +28261,59018,predictable movie,1226953596 +28262,51471,political drama,1190547924 +28278,260,sci-fi,1420519084 +28278,260,scifi cult,1420519084 +28278,260,wincest,1420519084 +28304,2,Robin Williams,1432947496 +28304,223,black and white,1440345163 +28304,296,cult film,1432946137 +28304,296,nonlinear,1440276321 +28304,318,friendship,1432944422 +28304,318,guilty,1437584808 +28304,318,jail,1437584808 +28304,318,Morgan Freeman,1432944429 +28304,318,psychology,1432944448 +28304,356,based on a book,1432943257 +28304,356,great soundtrack,1432943217 +28304,356,history,1432943278 +28304,356,psychology,1432943207 +28304,356,romance,1432943270 +28304,356,tom hanks,1432943182 +28304,364,Disney,1432943833 +28304,364,Hans Zimmer,1432943858 +28304,588,Disney,1432943760 +28304,1193,emotional,1432945281 +28304,1193,jack nicholson,1432945263 +28304,1193,psychological,1432945274 +28304,1193,psychology,1432945270 +28304,1219,black and white,1440345033 +28304,1246,philosophy,1432943084 +28304,1246,Robin Williams,1432943056 +28304,1645,Al Pacino,1440201543 +28304,1921,black and white,1440345131 +28304,1961,autism,1432978648 +28304,1961,heartwarming,1432978610 +28304,1961,mental illness,1432978625 +28304,1961,psychology,1432978596 +28304,1961,road movie,1432978659 +28304,2571,alternate reality,1432944562 +28304,2571,philosophy,1432944569 +28304,2571,virtual reality,1432944541 +28304,2762,psychological,1432944640 +28304,2762,psychology,1432944655 +28304,2858,kevin spacey,1440622836 +28304,2858,loneliness,1432989696 +28304,2858,mental illness,1440622815 +28304,2959,Brad Pitt,1433550633 +28304,2959,David Fincher,1433550653 +28304,2959,mental illness,1433550690 +28304,2959,narrated,1433550668 +28304,2959,philosophical,1433550702 +28304,2959,philosophy,1433550620 +28304,2959,psychology,1433550636 +28304,2959,surreal,1433550605 +28304,3948,funny moments,1432947634 +28304,4226,nonlinear,1440201597 +28304,4226,psychological,1440276259 +28304,4226,psychology,1440276244 +28304,6953,Nonlinear,1440279287 +28304,6958,Eddie Murphy,1439727449 +28304,7099,war,1432997369 +28304,7361,love,1432945048 +28304,7361,nonlinear,1440279496 +28304,7361,psychology,1432945040 +28304,49312,autism,1451077635 +28304,49312,Sigourney Weaver,1451077697 +28304,70599,romance,1432944193 +28304,72998,beautiful scenery,1451957039 +28304,72998,romance,1451957048 +28304,81591,mental illness,1432943584 +28304,81591,psychological,1432943577 +28304,81591,thriller,1432943595 +28304,92259,based on a true story,1432943478 +28304,92259,feel good movie,1432943467 +28304,92259,friendship,1432943446 +28307,260,adventure,1443690708 +28307,260,fantasy,1443690677 +28307,260,Space Aliens,1443690666 +28309,53996,giant robots,1245532055 +28309,68358,big budget,1245531918 +28309,68358,space,1245531903 +28309,68358,Star Trek,1245531891 +28309,68358,time travel,1245531894 +28309,94864,religion,1362487587 +28309,94864,space travel,1362487591 +28309,94864,technology,1362487578 +28361,199,bittersweet,1443305213 +28361,199,musical,1443305218 +28361,260,space adventure,1434877192 +28361,260,space opera,1434877188 +28361,593,intense,1434878330 +28361,593,intriguing,1434878330 +28361,593,suspenseful,1434878330 +28361,1339,based on a book,1440095915 +28361,1339,vampires,1440095911 +28361,5963,based on play,1435359014 +28361,5963,controversial,1435358925 +28361,5963,melodramatic,1435358770 +28361,7585,holiday romance,1437909805 +28361,7585,middle-age romance,1437909848 +28361,7585,Romance,1437909799 +28361,8015,classic animation,1438421737 +28361,8015,educational,1438421702 +28361,8015,musical,1438421707 +28361,25831,based on play,1435698857 +28361,45730,fairy tale,1444555494 +28361,45730,fantasy,1444555500 +28361,47196,con artists,1437946155 +28361,47196,self-realisation,1437946227 +28361,86298,animation,1443994429 +28361,86298,music,1443994438 +28361,86298,Rio de Janeiro,1443994435 +28361,86298,South America,1443994434 +28361,110655,music,1444168503 +28361,110655,talking animals,1444168512 +28361,111778,animals,1439317978 +28361,111778,Australia,1439317955 +28361,111778,based on a true story,1439317951 +28361,113188,post-apocalyptic,1442096088 +28361,113188,scenery,1442096094 +28361,114007,book adaptation,1444326355 +28361,114007,Psychological Thriller,1444326362 +28361,115170,courtroom drama,1438614475 +28361,115170,drama,1438614440 +28361,115170,Father-Son Relationship,1438614416 +28361,116897,anthology,1441830999 +28361,116897,dark humor,1441830939 +28361,117529,adventure,1435009719 +28361,117529,dinosaurs,1435009736 +28361,117529,fun for all ages,1435009726 +28361,118997,fairy tale parody,1438511035 +28361,118997,musical,1438511023 +28361,122900,entertaining,1438102904 +28361,122900,Marvel,1438102890 +28361,122900,superheroes,1438102926 +28361,130956,book adaptation,1444555293 +28361,130956,serial killer,1444555280 +28361,134130,based on book,1444145776 +28361,139415,dark humor,1443904353 +28400,1120,Nudity (Full Frontal - Notable),1159086704 +28404,750,black comedy,1382347913 +28404,750,Quirky,1382347936 +28431,50,twist ending,1299213847 +28431,1704,Robin Williams,1299213451 +28431,3105,based on a true story,1299213873 +28431,7502,based on a book,1301371292 +28431,8665,action,1299213929 +28431,8665,espionage,1299213926 +28431,33794,batman,1299213898 +28431,33794,comic book,1299213901 +28431,33794,superhero,1299213905 +28431,60461,01/11,1299213683 +28432,5010,Josh Hartnett,1285689789 +28443,63082,Danny Boyle,1277303503 +28443,77416,women in prison,1277389455 +28465,260,"sf,science fiction",1434583305 +28465,260,Star Wars,1434583315 +28465,65261,anime,1434669870 +28465,65261,gibli,1434669870 +28465,65261,ponyo,1434669870 +28476,112556,mindfuck,1450952925 +28476,112556,Neal Patrick Harris,1450952971 +28476,112556,Psychopathy,1450952966 +28476,112556,psychothriller,1450952949 +28476,112556,unpredictable,1450952922 +28480,260,classic sci-fi,1442354152 +28480,260,fantasy,1442354141 +28480,260,sci-fi,1442354121 +28507,750,kubrick,1322713538 +28507,924,kubrick,1322713548 +28511,954,Drama,1187571200 +28511,1298,Musical,1187571178 +28511,1441,Comedy,1187571180 +28511,1717,Comedy,1187571112 +28511,1779,Sci-Fi,1187571177 +28511,2116,Fantasy,1187571211 +28511,2953,Comedy,1187571141 +28511,3263,Comedy,1187571199 +28511,3617,Comedy,1187571111 +28511,3752,Comedy,1187571063 +28511,3826,Horror,1187571095 +28511,3916,Drama,1187571097 +28511,4262,Drama,1187571040 +28511,4310,Action,1187571054 +28511,4310,Drama,1187571054 +28511,4310,Romance,1187571055 +28511,4310,War,1187571055 +28511,4367,Adventure,1187571142 +28511,4975,Thriller,1187571113 +28511,6016,Drama,1187571179 +28511,6373,Comedy,1187571180 +28511,6378,Crime,1187571069 +28511,6870,Drama,1187571143 +28511,6934,Action,1187571022 +28511,8622,Documentary,1187571094 +28517,519,franchise,1368195129 +28517,1095,ensemble cast,1368195035 +28517,1104,mental illness,1368195278 +28517,1287,christianity,1368194903 +28517,2058,tense,1368656370 +28517,2076,dark,1368194988 +28517,2115,father-son relationship,1368195092 +28517,2490,violent,1368656472 +28517,3256,thriller,1368656398 +28517,3362,police,1368656258 +28517,3468,black and white,1368194840 +28517,4223,cruelty of war,1320162000 +28517,4425,nudity (topless - notable),1368219368 +28517,5106,high school,1368195183 +28517,5218,pixar,1368656225 +28517,5785,stupid,1368656343 +28517,6334,nudity (topless - notable),1368219368 +28517,6537,franchise,1368195129 +28517,7153,oscar (best cinematography),1368645981 +28517,8781,politics,1368656309 +28517,33660,inspirational,1368195236 +28517,59429,nudity (topless - notable),1368219368 +28517,59784,pixar,1368656225 +28517,64622,nazis,1368195332 +28517,74458,mystery,1368195302 +28525,296,Black comedy,1243022201 +28525,296,classic,1243022208 +28525,296,cult film,1243022211 +28525,296,Quentin Tarantino,1243022218 +28525,318,classic,1243022139 +28525,318,narrated,1243022167 +28525,318,twist ending,1243022155 +28525,714,beautiful,1243022498 +28525,714,black and white,1243022479 +28525,714,Jim Jarmusch,1243022485 +28525,750,black and white,1243022445 +28525,750,black comedy,1243022448 +28525,750,classic,1243022452 +28525,750,politics,1243022459 +28525,750,satire,1243022454 +28525,1232,art,1243022023 +28525,1232,masterpiece,1243022007 +28525,2858,black comedy,1243022576 +28525,2858,satirical,1243022572 +28525,2858,social commentary,1243022564 +28525,2858,thought-provoking,1243022570 +28525,4873,dreams,1243022620 +28525,4873,memory,1243022621 +28525,4873,philosophy,1243022614 +28525,4873,surreal,1243022623 +28525,4873,thought-provoking,1243022648 +28525,4973,beautifully filmed,1243022594 +28525,7147,dreamlike,1243022522 +28525,7147,fantasy,1243022543 +28525,7147,surrealism,1243022529 +28525,7147,Tim Burton,1243022525 +28525,7361,nonlinear,1243022433 +28525,7361,philosophy,1243022418 +28525,7361,thought-provoking,1243022419 +28525,36363,cult film,1243022842 +28525,36363,culture clash,1243022870 +28525,36363,sci-fi,1243022884 +28525,55442,black and white,1243022252 +28525,55442,politics,1243022245 +28556,5989,based on true story,1449497830 +28556,5989,Christopher Walken,1449497835 +28556,5989,Leonardo DiCaprio,1449497820 +28556,52356,diane kruger,1449498036 +28560,1809,Takeshi Kitano,1297330007 +28560,84226,Matteo Garrone,1298371696 +28560,84228,based on a book,1298368797 +28560,84228,Donatello Awards,1298368857 +28560,84228,Toni Servillo,1298368810 +28586,2971,jazz music,1420176021 +28586,2971,passionate,1420176021 +28586,2971,show business,1420176021 +28589,4451,niagara falls,1267233039 +28589,8616,poetic title,1236804695 +28596,260,scifi,1439760678 +28596,260,space,1439760692 +28601,48385,toilet humor,1175799105 +28601,50601,PG,1179175960 +28616,8873,Argentina,1429756086 +28616,8873,biopic,1429756101 +28616,105844,drama,1429756129 +28616,105844,slavery,1429756139 +28628,260,adventure,1439787485 +28628,260,space epic,1439787458 +28655,3168,classic,1231273179 +28655,61073,Quentin Tarantino,1231272992 +28670,4369,no desire to see this,1156897268 +28670,5779,Flying Fish!,1154140019 +28670,6770,terminal illness,1154140124 +28670,8254,beautiful music,1154140044 +28670,8254,Bibliothek,1154140047 +28670,8910,existentialism,1154141043 +28670,8910,want to see again,1154141045 +28670,26554,Empty Planet,1154139934 +28670,26554,Isolation,1154139919 +28670,27905,visually appealing,1154139970 +28670,32300,lesbian,1154139943 +28670,33834,mmm... brains...,1154140396 +28670,41571,slow and predictable plot,1154140390 +28670,42632,#1 prediction,1160063740 +28670,45447,bullshit history,1154140513 +28670,46530,Let down,1154140372 +28670,46965,Snakes,1157763986 +28670,127565,surreal,1451428369 +28670,127565,urban blight,1451428363 +28695,1091,stupid,1362675190 +28695,1721,love history,1362740921 +28695,2959,Brad Pitt,1363188062 +28695,6301,rape,1363617191 +28695,6301,revenge,1363617199 +28695,6301,Sexualized violence,1363617195 +28695,6890,disturbing,1283324371 +28695,6890,enigmatic,1283324377 +28695,6890,powerful,1283324374 +28695,6979,movie to see,1362672890 +28695,27773,depressing,1283324208 +28695,27773,stylized,1283324201 +28695,27773,twist ending,1283324219 +28695,27904,drugs,1260978127 +28695,27904,rotoscope,1260978135 +28695,68358,action,1242040467 +28695,68358,adventure,1242040469 +28695,68358,alternate reality,1242040472 +28695,68358,fast paced,1242040493 +28695,68358,murder,1242040478 +28695,68358,spock,1242040490 +28695,68358,time travel,1242040462 +28695,98056,weak ending,1363184427 +28695,99007,comedic horror,1363099236 +28724,296,action,1430516231 +28724,296,dark comedy,1430516231 +28724,296,exceptional acting,1430516231 +28724,318,classic,1432469895 +28724,318,morgan freeman,1432469895 +28724,318,touching,1432469895 +28724,356,comedy,1431157082 +28724,356,drama,1431157082 +28724,356,philosophical,1431157082 +28724,94558,philosophical,1451163583 +28740,5881,surreal,1306549287 +28740,48043,surreal,1306548964 +28740,48043,visually appealing,1306548964 +28740,79132,surreal,1306549800 +28740,79132,visually appealing,1306549808 +28767,2706,comedy,1325693756 +28767,2706,funny,1325693756 +28767,2706,humor,1325693756 +28767,2706,humorous,1325693756 +28767,2959,crime drama,1320193121 +28767,2959,Palahnuik,1320193121 +28767,2959,psychology,1320193121 +28767,3476,acting,1320193073 +28767,3476,sad ending,1320193073 +28767,3476,twist ending,1320193073 +28767,3476,Vietnam War,1320193073 +28767,3535,transgressive,1320193621 +28767,4015,comedy,1325693711 +28767,4015,Funny as hell,1325693711 +28767,4015,humor,1325693711 +28767,4015,humorous,1325693711 +28767,4848,Atmospheric,1351992752 +28767,4848,dark,1351992750 +28767,4848,David Lynch,1351992713 +28767,4848,experimental,1351992728 +28767,4848,film noir,1351992743 +28767,4848,thriller,1351992761 +28767,6708,crime,1320193023 +28767,6708,Nicholas Cage,1320193023 +28767,6708,sad ending,1320193023 +28767,6708,twist ending,1320193023 +28767,48780,atmospheric,1339626372 +28767,48780,complicated,1339626394 +28767,48780,dark,1339626381 +28767,48780,twist ending,1339626379 +28767,62644,brainwashing,1370218772 +28767,62644,dictatorship,1370218768 +28767,62644,social experiment,1370218788 +28767,62644,violence,1370218791 +28767,70286,action,1351993106 +28767,70286,aliens,1351993109 +28767,70286,big budget,1351993091 +28767,70286,blockbuster,1351993074 +28767,70286,mainstream.,1351993082 +28767,70286,scientifically inaccurate.,1351993040 +28767,70286,social commentary,1351993101 +28767,70286,thriller,1351993122 +28767,70286,violence,1351993060 +28767,78266,beastiality,1325645904 +28767,79132,alternate reality,1351992802 +28767,79132,complicated,1351992806 +28767,79132,ensemble cast,1351992820 +28767,79132,philosophy,1351992831 +28767,79132,sci-fi,1351992828 +28767,79132,surreal,1351992818 +28767,79132,thought-provoking,1351992808 +28767,79132,visually appealing,1351992812 +28767,89118,bestiality,1325646102 +28767,89118,boring,1325639557 +28767,89118,foreign language,1325639557 +28767,89118,spanish,1325639557 +28767,89118,surgery,1325639557 +28767,90376,bad acting,1325728521 +28767,90376,bad pacing,1325728521 +28767,90376,bad sound,1325728521 +28767,90376,insanity,1325728521 +28767,90376,nihilism,1325728521 +28767,90376,unfitting soundtrack,1325728521 +28767,90376,unreliable narrators,1325728521 +28767,90376,violence,1325728521 +28767,96612,crime,1351992122 +28767,96612,psychology,1351992122 +28767,96612,true story,1351992122 +28767,97957,bad parents,1351993602 +28767,97957,blood.,1351993564 +28767,97957,children.,1351993595 +28767,97957,coming of age,1351993637 +28767,97957,high school,1351993655 +28767,97957,High school violence,1351993663 +28767,97957,illness.,1351993585 +28767,97957,mental illness,1351993579 +28767,97957,sisters,1351993557 +28767,97957,social commentary,1351993592 +28767,97957,violence.,1351993568 +28775,58998,Nudity (Full Frontal - Notable),1237156064 +28815,49272,Daniel Craig,1437698558 +28815,65216,Daniel Craig,1437698888 +28815,97921,Jennifer Lawrence,1437698496 +28815,116781,Jennifer lawrence,1437871389 +28816,1034,camp,1398126776 +28816,1034,Reese Witherspoon,1398126758 +28816,2124,Based on a TV show,1255064699 +28816,2124,Christina Ricci,1255064702 +28816,2124,Christopher Lloyd,1255064704 +28816,2124,quirky,1255064723 +28816,2124,sword fight,1255064728 +28816,2450,cult film,1329745407 +28816,2450,so bad it's good,1329745410 +28816,4840,Criterion,1356508755 +28816,4840,François Truffaut,1356508777 +28816,4840,France,1356508770 +28816,4840,Francois Truffaut,1356508768 +28816,4840,Gérard Depardieu,1356508759 +28816,4840,Gerard Depardieu,1356508757 +28816,4840,Nazis,1356508783 +28816,4840,stage,1356508786 +28816,4840,World War II,1356508788 +28816,5686,experimental,1327064138 +28816,5686,no cuts,1327064142 +28816,6765,chick flick,1250486054 +28816,6765,Diane Lane,1250486098 +28816,6765,girlie movie,1250486083 +28816,6765,pretty but pointless,1250486061 +28816,6765,Sandra Oh,1250486065 +28816,6765,scenic,1250486069 +28816,6765,Tuscany,1250486071 +28816,27831,British gangster,1257911367 +28816,27831,caper movie,1257911370 +28816,27831,Colm Meaney,1257911378 +28816,27831,daniel craig,1257911375 +28816,49666,Nicole Kidman,1255064618 +28816,49666,Nudity (Full Frontal),1255064615 +28816,49666,Robert Downey Jr.,1255064624 +28816,68954,friendship,1247994395 +28816,68954,heartbreaking,1247994389 +28816,68954,Mourning,1247994386 +28816,68954,Pixar,1247994411 +28816,68954,sad intro,1247994375 +28816,68954,storytelling,1247994382 +28816,68954,talking dog,1247994362 +28816,91273,Not enough action,1327410828 +28816,91273,Stylised,1327410830 +28816,94780,beautiful cinematography,1351688688 +28816,94780,charlize theron,1351688677 +28816,94780,Chris Hemsworth,1351688681 +28816,94780,Kristen Stewart,1351688700 +28816,94780,main character is boring,1351688706 +28816,94780,visuals,1351688719 +28816,94780,weak plot,1351688716 +28816,95441,Bechdel Test:Fail,1356863736 +28816,95441,Boston,1356863750 +28816,95441,CG animation,1356863759 +28816,95441,crude humor,1356863763 +28816,95441,directorial debut,1356863770 +28816,95441,Mark Wahlberg,1356863775 +28816,95441,Mila Kunis,1356863779 +28816,95441,Patrick Stewart,1356863783 +28816,97950,Action,1362334387 +28816,97950,kung fu,1362334380 +28816,97950,Lucy Liu,1362334378 +28816,97950,martial arts,1362334383 +28816,97950,Russell Crowe,1362334408 +28816,97950,RZA,1362334369 +28816,97950,story,1362334372 +28816,97950,terrible dialogue,1362334353 +28816,97950,visually appealing,1362334362 +28816,98809,exaggerated,1389230294 +28816,98809,pacing,1389230355 +28816,103341,Simon Pegg,1388907834 +28816,103341,slow start,1388907827 +28816,109042,Brian Posehn,1398769305 +28816,109042,Peter Dinklage,1398769341 +28816,109042,Summer Glau,1398769306 +28826,260,classic sci-fi,1441515755 +28826,260,science fantasy,1441515768 +28826,46578,funny,1441515971 +28826,46578,growing up,1441515982 +28826,72998,good vs. evil,1441516050 +28826,72998,sci-fi,1441516027 +28832,6874,soundtrack,1237044179 +28835,260,saga,1436326394 +28835,260,sci-fi,1436326387 +28835,121231,cinematography,1436326618 +28835,121231,Creepy,1436326514 +28835,121231,David Robert Mitchell,1436326517 +28835,121231,minimalist,1436326618 +28835,121231,psychological,1436326618 +28835,121231,score,1436326501 +28835,121231,Supernatural,1436326518 +28836,236,meg ryan,1428001788 +28836,236,romantic,1428001790 +28836,308,Three Colors trilogy,1428000912 +28836,339,chick flick,1428001771 +28836,339,feel good movie,1428001776 +28836,339,mistaken identity,1428001778 +28836,339,Sandra Bullock,1428001769 +28836,539,chick flick,1428001750 +28836,539,Comedy,1428001756 +28836,539,destiny,1428001759 +28836,539,Meg Ryan,1428001746 +28836,539,romantic comedy,1428001753 +28836,539,Tom Hanks,1428001744 +28836,802,genius,1428002611 +28836,802,John Travolta,1428002608 +28836,1216,dolphins,1428001453 +28836,1265,Bill Murray,1427999720 +28836,1265,comedy,1427999741 +28836,1265,Fantasy,1427999746 +28836,1265,feel-good,1427999750 +28836,1265,funny,1427999725 +28836,1265,hilarious,1427999732 +28836,1265,romantic,1427999738 +28836,1265,time loop,1427999728 +28836,1265,time travel,1427999735 +28836,1296,beautiful scenery,1428000882 +28836,1307,Billy Crystal,1428001708 +28836,1307,chick flick,1428001710 +28836,1307,friendship,1428001705 +28836,1307,fun,1428001713 +28836,1307,Good Romantic Comedies,1428001700 +28836,1307,meg ryan,1428001694 +28836,1307,relationships,1428001689 +28836,1307,romance,1428001715 +28836,1307,romantic,1428001703 +28836,1307,romantic comedy,1428001692 +28836,1307,unlikely friendships,1428001697 +28836,1541,comedy,1428001815 +28836,1541,Matthew Broderick,1428001804 +28836,1541,Meg Ryan,1428001809 +28836,1584,aliens,1428000254 +28836,1584,beautiful,1428000252 +28836,1584,Carl Sagan,1428000259 +28836,1584,future,1428000269 +28836,1584,idealism,1428000250 +28836,1584,inspirational,1428000262 +28836,1584,Jodie Foster,1428000237 +28836,1584,sci-fi,1428000233 +28836,1584,science fiction,1428000240 +28836,1584,space,1428000275 +28836,1584,space travel,1428000244 +28836,1923,Cameron Diaz,1428003288 +28836,1923,comedy,1428003281 +28836,1923,fun,1428003291 +28836,1923,hilarious,1428003284 +28836,2068,bittersweet,1428000667 +28836,2321,heartwarming,1427999889 +28836,2321,Reese Witherspoon,1427999892 +28836,2321,witty,1427999883 +28836,2424,chick flick,1428002250 +28836,2424,comedy,1428002245 +28836,2424,Meg Ryan,1428002238 +28836,2424,Romance,1428002239 +28836,2424,romantic comedy,1428002242 +28836,2424,Tom Hanks,1428002256 +28836,2671,British,1428002926 +28836,2671,Good Romantic Comedies,1428002919 +28836,2671,Hugh Grant,1428002914 +28836,2671,Julia Roberts,1428002917 +28836,2671,romance,1428002911 +28836,3108,mental illness,1427999830 +28836,3408,based on a true story,1428439444 +28836,3408,environmental,1428439448 +28836,3408,Julia Roberts,1428439440 +28836,3948,Ben Stiller,1428003267 +28836,3948,comedy,1428003271 +28836,3948,Robert De Niro,1428003265 +28836,4025,chick flick,1428002635 +28836,4025,Sandra Bullock,1428002632 +28836,4306,Cameron Diaz,1428000737 +28836,4306,comedy,1428000712 +28836,4306,Dreamworks,1428000728 +28836,4306,Eddie Murphy,1428000723 +28836,4306,fairy tale,1428000718 +28836,4306,Funny,1428000731 +28836,4306,pixar,1428000743 +28836,4306,satire,1428000734 +28836,4306,witty,1428000716 +28836,4823,chick flick,1428002224 +28836,4823,Good Romantic Comedies,1428002213 +28836,4823,john cusack,1428002215 +28836,4823,Kate Beckinsale,1428002218 +28836,4823,Romantic Comedy,1428002227 +28836,4823,serendipity,1428002221 +28836,4963,con men,1428003809 +28836,4963,crime,1428003797 +28836,4963,feel good movie,1428003801 +28836,4963,heist,1428003794 +28836,4963,plot twist,1428003805 +28836,4963,witty,1428003811 +28836,4992,time travel,1428002278 +28836,5299,comedy,1428001653 +28836,5299,culture clash,1428001656 +28836,5299,funny,1428001659 +28836,5303,Tom Hanks,1427999942 +28836,5620,funny,1428001873 +28836,5620,Reese Witherspoon,1428001867 +28836,5620,romantic comedy,1428001870 +28836,5957,Hugh Grant,1428001909 +28836,5957,Sandra Bullock,1428001906 +28836,6776,Bollywood,1428001497 +28836,6776,India,1428001500 +28836,6942,british,1428001537 +28836,6942,funny,1428001546 +28836,6942,happy ending,1428001550 +28836,6942,Hugh Grant,1428001565 +28836,6942,love,1428001560 +28836,6942,Romance,1428001542 +28836,6942,witty,1428001555 +28836,7149,aging,1428001732 +28836,7149,Jack Nicholson,1428001730 +28836,7173,Ben Stiller,1428002057 +28836,7173,comedy,1428002059 +28836,7173,jennifer aniston,1428002054 +28836,7293,Adam Sandler,1428002875 +28836,7293,Drew Barrymore,1428002862 +28836,7293,funny,1428002866 +28836,7293,happy ending,1428002869 +28836,7293,Romance,1428002871 +28836,8984,Heist,1428003846 +28836,26422,hippies,1428438965 +28836,26422,music,1428438962 +28836,27754,friendship,1428438618 +28836,27754,heist,1428438604 +28836,30825,Ben Stiller,1428003241 +28836,30825,Dustin Hoffman,1428003243 +28836,30825,Robert De Niro,1428003238 +28836,30825,stupid humor,1428003246 +28836,31685,chick flick,1428001837 +28836,31685,comedy,1428001835 +28836,31685,romantic comedy,1428001832 +28836,31685,Will Smith,1428001829 +28836,32296,Sandra Bullock,1428003178 +28836,34336,chick flick,1428438837 +28836,34336,Good Romantic Comedies,1428438831 +28836,34336,John Cusack,1428438828 +28836,34336,love story,1428438834 +28836,34336,Romance,1428438841 +28836,41573,Claire Danes,1428002978 +28836,41573,Diane Keaton,1428002981 +28836,42007,jennifer aniston,1428002029 +28836,42732,Queen Latifah,1428002404 +28836,51084,comedy,1428438751 +28836,51084,Drew Barrymore,1428003747 +28836,51084,Hugh Grant,1428003749 +28836,51084,romance,1428438740 +28836,53956,british comedy,1428439648 +28836,53956,dark comedy,1428439644 +28836,53956,farce,1428439651 +28836,54259,adventure,1428001066 +28836,54259,author:Neil Gaiman,1428001057 +28836,54259,comedy,1428001082 +28836,54259,fairy tale,1428001046 +28836,54259,fairy tale romance,1428001054 +28836,54259,fantasy,1428001049 +28836,54259,fantasy world,1428001078 +28836,54259,magic,1428001060 +28836,54259,Michelle Pfeiffer,1428001075 +28836,54259,modern fantasy,1428001072 +28836,54259,Robert De Niro,1428001051 +28836,54259,romance,1428001068 +28836,58047,love,1428002194 +28836,58047,romantic comedy,1428002197 +28836,59220,culture shock,1428438863 +28836,59220,india,1428438861 +28836,60397,Amanda Seyfried,1428002836 +28836,60397,Meryl Streep,1428002828 +28836,63853,Aborigines,1428438704 +28836,66203,Ben Affleck,1428002088 +28836,66203,chick flick,1428002077 +28836,66203,Drew Barrymore,1428002094 +28836,66203,funny,1428002091 +28836,66203,happy ending,1428002101 +28836,66203,romance,1428002083 +28836,66203,romantic comedy,1428002080 +28836,66203,Scarlett Johansson,1428002085 +28836,69406,chemistry between actors,1428001854 +28836,69406,happy ending,1428001856 +28836,69406,love,1428001850 +28836,69406,Sandra Bullock,1428001847 +28836,69757,bittersweet,1428001292 +28836,69757,no happy ending,1428001298 +28836,70183,comedy,1428001957 +28836,70183,entertaining,1428001952 +28836,70183,good chick flick,1428001954 +28836,70183,relationship advice,1428001947 +28836,70183,romantic comedy,1428001949 +28836,72998,beautiful,1428410482 +28836,72998,beautiful scenery,1428410470 +28836,72998,ecology,1428410513 +28836,72998,environmental,1428410455 +28836,72998,James Cameron,1428410458 +28836,72998,jungle,1428410509 +28836,72998,romance,1428410463 +28836,72998,scenic,1428410517 +28836,72998,sci-fi,1428410450 +28836,72998,science fiction,1428410533 +28836,72998,visual,1428410467 +28836,72998,visually stunning,1428410520 +28836,79185,action,1428003516 +28836,79185,Cameron Diaz,1428003510 +28836,79185,fun,1428003522 +28836,79185,spy,1428003513 +28836,79185,Tom Cruise,1428003507 +28836,80549,comedy,1428439112 +28836,80549,funny,1428439124 +28836,80549,satire,1428439118 +28836,80549,witty,1428439114 +28836,81591,creepy,1428000818 +28836,81591,dark,1428000807 +28836,81591,drama,1428000833 +28836,81591,horror,1428000810 +28836,81591,obsession,1428000798 +28836,81591,repressed sexuality,1428000815 +28836,81591,sex,1428000805 +28836,81591,surreal,1428000827 +28836,81784,Harrison Ford,1428002555 +28836,84980,black humour,1428439526 +28836,86817,comedy,1428002147 +28836,90576,chick flick,1428001974 +28836,90576,romance,1428001977 +28836,90717,heist,1428003783 +28836,94953,Jennifer Aniston,1428439602 +28836,94953,quirky,1428439603 +28836,96588,Funny,1428439082 +28836,96588,music,1428439079 +28836,96588,vocalists,1428439076 +28836,104303,business,1428439197 +28836,104303,computers,1428439193 +28836,104303,history,1428439201 +28836,112175,dragons,1428002788 +28836,129428,India,1428003704 +28862,527,based on a true story,1421518809 +28862,527,holocaust,1421518803 +28862,527,thought-provoking,1421518818 +28862,527,true story,1421518807 +28862,527,World War II,1421518802 +28862,1200,horror,1421357343 +28862,1200,tense,1421357325 +28862,1214,horror,1421357288 +28862,1214,tense,1421357294 +28862,1704,excellent script,1421537371 +28862,1704,inspirational,1421537379 +28862,1704,Matt Damon,1421537376 +28862,1704,Robin Williams,1421537373 +28862,2683,Mike Myers,1421422194 +28862,2683,parody,1421422181 +28862,2985,cyborgs,1421393536 +28862,2985,robots,1421393531 +28862,4022,Tom Hanks,1422990374 +28862,6016,based on a true story,1421529382 +28862,6016,brazil,1421529373 +28862,6016,drugs,1421529402 +28862,6016,gangs,1421529419 +28862,6016,true story,1421529386 +28862,7451,Lindsay Lohan,1422206563 +28862,34150,Jessica Alba,1421357467 +28862,44193,high school,1421422387 +28862,47099,based on a true story,1421356357 +28862,47099,Will Smith,1421356354 +28862,62644,social experiment,1421518891 +28862,74458,Leonardo DiCaprio,1421356418 +28862,88405,predictable,1428844347 +28862,91500,based on a book,1422206100 +28862,91500,dystopia,1422206076 +28862,91500,intense,1421177877 +28862,91500,Jennifer Lawrence,1421177864 +28862,91500,Josh Hutcherson,1422206148 +28862,91500,Liam Hemsworth,1422206186 +28862,91500,love,1422206103 +28862,91500,science fiction,1422206266 +28862,91500,Woody Harrelson,1422206087 +28862,97752,multiple storylines,1422990097 +28862,100487,slow,1422206030 +28862,101864,sci-fi,1421357543 +28862,103253,dystopia,1421393562 +28862,104861,rape,1429902638 +28862,104861,torture,1429902642 +28862,106441,Geoffrey Rush,1422467939 +28862,106441,parental love,1422467962 +28862,106441,touching,1422467910 +28862,106487,Jennifer Lawrence,1421177914 +28862,106487,revolution,1421177923 +28862,108190,dystopia,1421392663 +28862,108190,Shailene Woodley,1421356627 +28862,108190,Theo James,1421392728 +28862,111364,Godzilla,1421393436 +28862,122886,Harrison Ford,1452226709 +28862,134117,very poor scenic effects,1432749328 +28875,69757,mean,1262203744 +28917,3266,crazy,1206648483 +28946,292,Overrated,1140461693 +28946,296,Great movie,1140461805 +28946,356,overrated,1140461791 +28946,1840,Holds up,1418627499 +28946,5446,full of heart and deternination. good performances from kids particlarly the lead.,1140375810 +28946,41863,watch again,1233011124 +28946,42418,best films you never heard of,1211782344 +28946,42418,Watch Again,1151365564 +28946,47423,Fav 06,1182408117 +28946,48856,best films you never heard of,1211782102 +28946,114847,Bleak,1416820908 +28946,114847,Futuristic,1416820894 +28957,296,best performance: samuel l. jackson as jules winnfield,1428702112 +28957,296,good music,1428702112 +28957,296,highly quotable,1428702112 +28957,296,quentin tarantino,1428702112 +28957,109374,funny,1428701857 +28957,109374,great dialogue,1428701927 +28957,109374,quirky,1428701911 +28957,109374,Ralph Fiennes,1428701918 +28957,109374,visually appealing,1428701906 +29021,97752,atmospheric,1370809422 +29021,97752,dystopia,1370809424 +29021,97752,multiple storylines,1370809421 +29021,97752,Nudity (Topless),1370809428 +29021,97752,sci-fi,1370809417 +29021,97752,social criticism,1370809431 +29021,97752,visually appealing,1370809420 +29031,590,AFI #75,1145564672 +29031,590,war,1145564669 +29031,708,romantic,1145564656 +29031,1208,classic,1145564658 +29031,1208,Francis Ford Copolla,1145564662 +29031,1208,war,1145564659 +29031,1968,Drama,1145564898 +29031,1968,teen,1145564897 +29037,253,Brilliant,1183433248 +29037,253,dracula,1183433214 +29037,253,fantasy,1183433253 +29037,253,horror,1183433247 +29037,253,spooky,1183433251 +29037,253,terror,1183433254 +29037,253,vampire,1183433252 +29037,296,seen more than once,1183433026 +29037,762,Nudity (Topless - Notable),1186313177 +29037,1732,dark comedy,1183433105 +29037,1732,the dude abides,1183433049 +29037,1732,want to see again,1183433102 +29037,2268,courtroom drama,1183433351 +29037,2571,Saturn Award (Best Science Fiction Film),1183433018 +29037,5418,espionage,1183432958 +29037,5418,fighting,1183432951 +29037,5418,Matt Damon,1183432964 +29037,5418,realistic action,1183432961 +29037,5418,spy,1183432977 +29037,5418,spying,1183432962 +29037,5445,dystopia,1183433141 +29037,5445,future,1183433178 +29037,5445,futuristic,1183433172 +29037,5445,mystery,1183433149 +29037,5445,sci-fi,1183433137 +29037,5445,time travel,1183433186 +29037,48516,atmospheric,1183433329 +29037,48516,best picture,1183433287 +29037,48516,gangster,1183433302 +29037,48516,Mafia,1183433280 +29037,48516,murder,1183433309 +29037,48780,magic,1183433463 +29037,50274,Nudity (Topless - Brief),1186313012 +29041,92259,based on a true story,1446412657 +29041,92259,comedy,1446412652 +29041,92259,disability,1446412653 +29041,92259,funny,1446412638 +29041,122892,Marvel,1446411825 +29041,134130,mars,1446411375 +29046,112556,crazy wife,1421990253 +29046,112556,crime,1421990253 +29046,112556,the wife did it,1421990253 +29055,2132,dialogue driven,1446172493 +29055,2132,Elizabeth Taylor,1446172498 +29055,2132,great performances,1446172495 +29055,2132,psychological,1446172504 +29055,2132,Richard Burton,1446172502 +29055,2132,twisted,1446172508 +29055,3967,coming of age,1446240864 +29055,3967,father-son relationship,1446240883 +29055,3967,inspirational,1446240861 +29055,3967,self discovery,1446240856 +29055,4370,Bittersweet,1446240616 +29055,4370,coming-of-age,1446240690 +29055,4370,dystopia,1446240614 +29055,4370,emotional,1446240633 +29055,4370,fairy tale,1446240613 +29055,4370,sci-fi,1446240627 +29055,4370,story,1446240644 +29055,30810,Bill Murray,1447475446 +29055,30810,comedy,1447475475 +29055,30810,deadpan,1447475492 +29055,30810,father-son relationship,1447475467 +29055,30810,great soundtrack,1447475455 +29055,30810,off-beat comedy,1447475503 +29055,30810,Owen Wilson,1447475477 +29055,30810,quirky,1447475496 +29055,30810,stylized,1447475488 +29055,30810,visually appealing,1447475457 +29055,30810,weird,1447475500 +29055,30810,Wes Anderson,1447475449 +29055,30810,whimsical,1447475494 +29055,30810,Willem Dafoe,1447475473 +29055,42632,beautiful cinematography,1446171332 +29055,42632,brutality,1446171351 +29055,42632,Chan-wook Park,1446171330 +29055,42632,disturbing,1446171333 +29055,42632,music,1446171376 +29055,42632,quirky,1446171349 +29055,42632,revenge,1446171354 +29055,42632,Revenge Trilogy,1446171335 +29055,42632,stylized,1446171328 +29055,42632,surreal,1446171347 +29055,42632,violent,1446171356 +29055,46976,insanity,1446170555 +29055,46976,Maggie Gyllenhaal,1446170551 +29055,46976,metaphysics,1446170558 +29055,46976,modern fantasy,1446170541 +29055,46976,quirky,1446170536 +29055,46976,storytelling,1446170548 +29055,46976,writing,1446170546 +29055,55052,emotional,1446170968 +29055,55052,great cinematography,1446170962 +29055,55052,imagination,1446170971 +29055,55052,Keira Knightley,1446170957 +29055,55052,romance,1446170966 +29055,55052,Saoirse Ronan,1446170975 +29055,55052,Tragedy,1446170964 +29055,61240,adolescence,1446240231 +29055,61240,atmospheric,1446240237 +29055,61240,Beautiful,1446240228 +29055,61240,bittersweet,1446240248 +29055,61240,coming of age,1446240235 +29055,61240,dark,1446240242 +29055,61240,love story,1446240233 +29055,61240,strange,1446240246 +29055,61240,touching,1446240251 +29055,68157,black comedy,1446170429 +29055,68157,dark comedy,1446170445 +29055,68157,dialogue,1446170435 +29055,68157,great soundtrack,1446170432 +29055,68157,Quentin Tarantino,1446170430 +29055,68157,satire,1446170452 +29055,68157,unusual plot structure,1446170438 +29055,68157,visually appealing,1446170450 +29055,69134,atmospheric,1446170246 +29055,69134,beautiful scenery,1446170249 +29055,69134,Charlotte Gainsbourg,1446170260 +29055,69134,cinematography,1446170250 +29055,69134,disturbing,1446170254 +29055,69134,Lars von Trier,1446170244 +29055,69134,Mental Illness,1446170267 +29055,69134,psychological,1446170271 +29055,69134,psychology,1446170252 +29055,69134,religion,1446170275 +29055,69134,tension,1446170278 +29055,81591,alter ego,1446171287 +29055,81591,atmospheric,1446171278 +29055,81591,creepy,1446171270 +29055,81591,dark,1446171280 +29055,81591,madness,1446171297 +29055,81591,mental illness,1446171294 +29055,81591,obsession,1446171299 +29055,81591,psychological,1446171272 +29055,81591,stylized,1446171301 +29055,81591,surreal,1446171274 +29055,81591,visceral,1446171289 +29055,84716,comedy,1446254025 +29055,84716,isolation,1446254030 +29055,86190,beautiful cinematography,1446170880 +29055,86190,character development,1446170890 +29055,86190,Cinematography,1446170907 +29055,86190,great soundtrack,1446170910 +29055,86190,Saoirse Ronan,1446170898 +29055,86190,strong female lead,1446170884 +29055,86190,surrealism,1446170887 +29055,86190,thriller,1446170892 +29055,89039,Brit Marling,1446171655 +29055,89039,cinematography,1446171658 +29055,89039,melancholic,1446171666 +29055,89039,parallel universe,1446171660 +29055,89039,Parallel worlds,1446171662 +29055,89039,Parallels worlds,1446171656 +29055,89039,story,1446171668 +29055,89039,visually appealing,1446171664 +29055,89118,disturbing,1446171556 +29055,89118,identity,1446171559 +29055,89118,psychology,1446171554 +29055,94959,cinematography,1446170213 +29055,94959,coming of age,1446170211 +29055,94959,dialogue,1446170204 +29055,94959,funny,1446170208 +29055,94959,quirky,1446170197 +29055,94959,stylized,1446170200 +29055,95873,human nature,1446170586 +29055,95873,Magic Realism,1446170587 +29055,95873,quirky,1446170591 +29055,96728,Character study,1446171763 +29055,96728,cinematography,1446171765 +29055,96728,great performances,1446171756 +29055,96728,Joaquin Phoenix,1446171759 +29055,96728,Philip Seymour Hoffman,1446171762 +29055,96728,unique,1446171769 +29055,96728,visually appealing,1446171767 +29055,97936,kiera knightley,1446171004 +29055,101088,beautiful,1446171576 +29055,101088,erotic,1446171601 +29055,101088,insubstantial,1446171603 +29055,101088,psychological thriller,1446171599 +29055,101088,stylish,1446171574 +29055,101088,visually stylish,1446171590 +29055,104841,acting,1446240388 +29055,104841,beautiful,1446240397 +29055,104841,cinematography,1446240342 +29055,104841,intense,1446240350 +29055,104841,sci-fi,1446240355 +29055,104841,science,1446240354 +29055,104841,score,1446240362 +29055,104841,setting:space,1446240365 +29055,104841,space,1446240391 +29055,104841,suspense,1446240349 +29055,104841,visually appealing,1446240343 +29055,104841,visually stunning,1446240347 +29055,108727,Lars von Trier,1446170323 +29055,108727,sexuality,1446170306 +29055,108727,story,1446170321 +29055,108981,Lars von Trier,1446170345 +29055,112421,black comedy,1446170626 +29055,112421,Maggie Gyllenhaal,1446170628 +29055,112421,mental illness,1446170629 +29055,112421,Michael Fassbender,1446170624 +29055,115122,dark comedy,1446169620 +29055,115122,humor,1446169636 +29055,115122,mockumentary,1446172150 +29055,115122,stylish,1446172152 +29056,260,cult classic,1442113142 +29056,260,sci-fi,1442113132 +29067,1198,aventure,1430335265 +29067,1198,bad movie,1430335265 +29067,1198,has been,1430335265 +29067,103688,exorcism,1430335569 +29067,103688,horror,1430335574 +29067,103688,predictable,1430335560 +29077,106782,unsatisfying ending,1390058949 +29085,1211,German,1422376071 +29085,1211,poetic,1422376085 +29085,1211,Slow,1422376080 +29085,2804,Christmas,1421020742 +29085,2804,christmas movie,1421020748 +29085,2804,classic,1421020744 +29085,2804,narrated,1421020750 +29085,56171,based on a book,1424393419 +29085,56171,fantasy world,1424393435 +29085,56171,steampunk,1424393427 +29085,62376,Bill Murray,1424393396 +29085,62376,post-apocalyptic,1424393383 +29085,62376,steampunk,1424393386 +29085,69844,Daniel Radcliffe,1248826731 +29085,69844,Emma Watson,1248826733 +29085,69844,Ending,1248826726 +29085,69844,shorter than the book,1248826718 +29085,82242,all-male cast,1421020717 +29085,82242,Christmas,1421020711 +29085,82242,Finnish,1421020713 +29085,82242,male nudity,1421020708 +29085,82242,original,1421020697 +29085,82242,Santa Claus,1421020705 +29085,84834,action,1422376031 +29085,84834,chinese,1422376031 +29085,84834,romance of the three kingdoms,1422376031 +29085,107348,Steve Carell,1426205960 +29085,107348,stupid but funny,1426205979 +29085,107348,will ferrell,1426205962 +29085,114180,plot holes,1439939512 +29085,114180,post-apocalyptic,1439939517 +29085,114795,battles,1423187114 +29085,114795,dracula,1423187133 +29085,114795,historically inaccurate,1423187102 +29085,114795,war,1423187136 +29085,120635,action,1423193425 +29085,120635,dog dies,1423193433 +29085,120635,unnecessary sequel,1423193509 +29085,139385,Drama,1452523102 +29085,139385,extreme animal violence,1452523094 +29085,139385,Western,1452523113 +29138,260,sci-fi,1437968392 +29138,260,space adventure,1437968397 +29144,593,psychology,1452441365 +29144,593,violent,1452441358 +29144,34435,amitabh,1452441232 +29166,1676,satire,1153746808 +29166,7022,satire,1153747186 +29193,260,Science Fiction,1443197528 +29193,260,space adventure,1443197626 +29193,2324,bittersweet,1443198197 +29193,2959,based on a book,1443198043 +29193,2959,mindblowing,1443198055 +29193,2959,twist ending,1443198018 +29199,260,must see,1440102995 +29199,260,sci-fi,1440103004 +29199,260,Star Wars,1440103029 +29218,1655,Affleck was the BOMB in Phantoms!,1169653703 +29221,27815,french,1425587471 +29221,27815,kids,1425587471 +29221,27815,kids singing,1425587471 +29233,260,classic,1431231360 +29233,260,sci-fi,1431231349 +29264,2125,fairy tale,1303489240 +29264,2125,love story,1303489242 +29264,2125,romance,1303489237 +29264,40629,18th century,1303489307 +29264,40629,19th century,1303489309 +29264,40629,adaptation,1303489312 +29264,40629,Classic,1303489304 +29264,40629,England,1303489297 +29264,40629,Jane Austen,1303489294 +29270,296,dark comedy,1427426798 +29270,296,violent,1427426798 +29270,296,well-directed,1427426798 +29276,440,chick flick,1305500983 +29276,440,Romance,1305500986 +29276,762,Nudity (Topless),1305501807 +29276,1092,Nudity (Full Frontal - Notable),1305501739 +29276,2710,disturbing,1305500960 +29276,45517,Pixar,1305500071 +29276,45517,road trip,1305500096 +29300,318,drama,1428072324 +29300,318,prison drama,1428072324 +29300,318,prison escape,1428072324 +29300,356,humour,1424807436 +29300,356,inspiring,1424807436 +29300,356,purpose in life,1424807436 +29300,2111,Nudity (Topless),1242684776 +29300,2111,Steve Martin,1242684774 +29300,2145,John Hughes,1242684436 +29300,2918,John Hughes,1242684486 +29300,2918,Matthew Broderick,1242684484 +29300,4973,comedy,1242685064 +29300,4973,feel-good,1242685077 +29300,4973,modern fantasy,1242685093 +29300,4973,Paris,1242685071 +29300,4973,quirky,1242685087 +29300,4973,romance,1242685083 +29300,4973,whimsical,1242685080 +29300,5250,Gene Wilder,1242684524 +29300,5250,Richard Pryor,1242684522 +29300,8784,Natalie Portman,1242684993 +29300,8784,Zach Braff,1242684999 +29300,39414,Claire Danes,1242684405 +29300,39414,Jason Schwartzman,1242684394 +29300,39414,Nudity (Rear),1242684401 +29300,66097,author:Neil Gaiman,1242684649 +29300,66097,Dakota Fanning,1242684654 +29300,66097,Stereoscopic 3-D,1242684659 +29300,66097,stop motion,1242684670 +29300,66171,Chris Evans,1242684605 +29300,66171,Dakota Fanning,1242684609 +29300,68319,Ryan Reynolds,1242684858 +29300,68319,too many characters,1242684863 +29300,89753,espionage,1326284786 +29300,89753,Spies,1326284778 +29312,260,classic sci-fi,1436120033 +29312,260,good vs evil,1436120028 +29312,260,Harrison Ford,1436120036 +29321,1,3D,1273665163 +29321,1,animated,1273665190 +29321,1,children,1273665167 +29321,1,comedy,1273665177 +29321,1,computer animation,1273665178 +29321,1,Disney,1273665156 +29321,1,family,1273665169 +29321,1,humorous,1273665174 +29321,1,Pixar,1273665144 +29321,1,time travel,1273665180 +29321,1,Tom Hanks,1273665184 +29321,32,adventure,1273665227 +29321,32,Brad Pitt,1273665203 +29321,32,Bruce Willis,1273665204 +29321,32,Post apocalyptic,1273665210 +29321,32,post-apocalyptic,1273665208 +29321,32,Saturn Award (Best Science Fiction Film),1273665218 +29321,32,sci-fi,1273665215 +29321,32,time travel,1273665214 +29321,32,twist ending,1273665212 +29321,32,violence,1273665223 +29321,47,Brad Pitt,1273665880 +29321,47,Christianity,1273665898 +29321,47,crime,1273665917 +29321,47,horror,1273665901 +29321,47,investigation,1273665897 +29321,47,Morgan Freeman,1273665882 +29321,47,mystery,1273665895 +29321,47,powerful ending,1273665886 +29321,47,religion,1273665894 +29321,47,serial killer,1273665888 +29321,47,twist ending,1273665891 +29321,47,violent,1273665892 +29321,70,cult film,1273666669 +29321,70,George Clooney,1273666677 +29321,70,horror,1273666680 +29321,70,mexico,1273666683 +29321,70,Quentin Tarantino,1273666672 +29321,70,Robert Rodriguez,1273666675 +29321,70,Salma Hayek,1273666674 +29321,70,Sexualized violence,1273666692 +29321,70,splatter,1273666691 +29321,70,Tarantino,1273666670 +29321,70,twist ending,1273666688 +29321,70,vampires,1273666684 +29321,70,violence,1273666687 +29321,110,action,1273665042 +29321,110,Biography,1273665052 +29321,110,british,1273665050 +29321,110,england,1273665047 +29321,110,historical,1273665045 +29321,110,medieval,1273665034 +29321,110,Mel Gibson,1273665035 +29321,110,Nudity (Topless),1273665037 +29321,110,war,1273665040 +29321,296,assassin,1273664804 +29321,296,classic,1273664801 +29321,296,comedy,1273664818 +29321,296,cult film,1273664821 +29321,296,dark comedy,1273664799 +29321,296,drugs,1273664805 +29321,296,multiple storylines,1273664809 +29321,296,nonlinear,1273664806 +29321,296,organized crime,1273664815 +29321,296,Quentin Tarantino,1273664795 +29321,296,quirky,1273664813 +29321,296,Samuel L. Jackson,1273664797 +29321,296,violence,1273664812 +29321,356,based on a book,1273665111 +29321,356,bittersweet,1273665098 +29321,356,comedy,1273665095 +29321,356,psychology,1273665108 +29321,356,romance,1273665105 +29321,356,Sexuality,1273665104 +29321,356,Tom Hanks,1273665101 +29321,356,vietnam war,1273665116 +29321,364,africa,1273665408 +29321,364,animals,1273665394 +29321,364,animation,1273665391 +29321,364,Children,1273665393 +29321,364,coming of age,1273665308 +29321,364,Disney,1273665306 +29321,364,Matthew Broderick,1273665401 +29321,364,musical,1273665406 +29321,364,Oscar (Best Music - Original Song),1273665387 +29321,364,Rowan Atkinson,1273665399 +29321,364,seen more than once,1273665384 +29321,364,talking animals,1273665383 +29321,364,Whoopi Goldberg,1273665398 +29321,480,action,1273665790 +29321,480,adventure,1273665765 +29321,480,based on a book,1273665788 +29321,480,dinosaurs,1273665763 +29321,480,genetics,1273665793 +29321,480,Michael Crichton,1273665768 +29321,480,Oscar (Best Effects - Visual Effects),1273665796 +29321,480,sci-fi,1273665771 +29321,480,science,1273665774 +29321,480,Steven Spielberg,1273665769 +29321,480,tense,1273665776 +29321,527,based on a true story,1273654577 +29321,527,black and white,1273654593 +29321,527,Holocaust,1273654569 +29321,527,imdb top 250,1273654585 +29321,527,sexuality,1273654596 +29321,527,Steven Spielberg,1273654570 +29321,527,true story,1273654579 +29321,527,World War II,1273654582 +29321,588,adventure,1273665263 +29321,588,animation,1273665249 +29321,588,artistic,1273665289 +29321,588,coming of age,1273665259 +29321,588,Disney,1273665252 +29321,588,Disney animated feature,1273665253 +29321,588,fairy tale,1273665246 +29321,588,good versus evil,1273665255 +29321,588,kids and family,1273665282 +29321,588,middle east,1273665287 +29321,588,Oscar (Best Music - Original Score),1273665273 +29321,588,Robin Williams,1273665270 +29321,588,seen more than once,1273665279 +29321,593,Anthony Hopkins,1273664868 +29321,593,based on a book,1273664875 +29321,593,cannibalism,1273664868 +29321,593,crime,1273664873 +29321,593,disturbing,1273664893 +29321,593,gothic,1273664886 +29321,593,investigation,1273664896 +29321,593,Jodie Foster,1273664872 +29321,593,mental illness,1273664897 +29321,593,psychology,1273664899 +29321,593,serial killer,1273664878 +29321,593,violent,1273664884 +29321,858,Al Pacino,1273664138 +29321,858,based on a book,1273664146 +29321,858,crime,1273664148 +29321,858,drama,1273664183 +29321,858,family,1273664181 +29321,858,imdb top 250,1273664177 +29321,858,Mafia,1273664175 +29321,858,New York City,1273664152 +29321,858,Nudity (Topless),1273664140 +29321,858,robert de niro,1273664154 +29321,858,visceral,1273664202 +29321,1032,adapted from:book,1273667063 +29321,1032,Disney,1273667065 +29321,1032,dream,1273667117 +29321,1032,dreamlike,1273667055 +29321,1032,fairy tale,1273667057 +29321,1032,Lewis Carroll,1273667058 +29321,1032,smoking,1273667071 +29321,1032,surreal,1273667059 +29321,1036,action,1273665836 +29321,1036,always watch it when it's on tv,1273665841 +29321,1036,Bruce Willis,1273665827 +29321,1036,christmas,1273665832 +29321,1036,claustrophobic,1273665844 +29321,1036,explosions,1273665833 +29321,1036,intense,1273665850 +29321,1036,lone hero,1273665851 +29321,1036,terrorism,1273665857 +29321,1036,visceral,1273665855 +29321,1089,crime,1273666442 +29321,1089,cult film,1273666429 +29321,1089,humorous,1273666428 +29321,1089,low budget,1273666424 +29321,1089,nonlinear,1273666421 +29321,1089,notable soundtrack,1273666437 +29321,1089,organized crime,1273666423 +29321,1089,Quentin Tarantino,1273666413 +29321,1089,religion,1273666434 +29321,1089,Tarantino,1273666416 +29321,1089,undercover cop,1273666447 +29321,1089,violence,1273666415 +29321,1206,atmospheric,1273666733 +29321,1206,based on a book,1273666734 +29321,1206,cult film,1273666723 +29321,1206,disturbing,1273666718 +29321,1206,dystopia,1273666748 +29321,1206,Nudity (Full Frontal),1273666730 +29321,1206,psychology,1273666720 +29321,1206,quirky,1273666721 +29321,1206,satire,1273666746 +29321,1206,Stanley Kubrick,1273666719 +29321,1206,Surrealism,1273666739 +29321,1206,violence,1273666737 +29321,1208,adventure,1273666550 +29321,1208,based on a book,1273666548 +29321,1208,classic,1273666526 +29321,1208,Dark,1273666527 +29321,1208,disturbing,1273666523 +29321,1208,military,1273666537 +29321,1208,Nudity (Topless),1273666540 +29321,1208,surreal,1273666532 +29321,1208,Vietnam,1273666531 +29321,1208,Vietnam war,1273666529 +29321,1208,violent,1273666552 +29321,1221,Al Pacino,1273664222 +29321,1221,dysfunctional family,1273664240 +29321,1221,guns,1273664242 +29321,1221,mafia,1273664226 +29321,1221,organized crime,1273664224 +29321,1221,Robert De Niro,1273664229 +29321,1221,romantic,1273664278 +29321,1221,sequel,1273664231 +29321,1222,2 movies in 1,1273666476 +29321,1222,anti-war,1273666465 +29321,1222,boot camp,1273666473 +29321,1222,Briljant opening,1273666481 +29321,1222,indecent,1273666500 +29321,1222,military,1273666505 +29321,1222,political,1273666503 +29321,1222,Stanley Kubrick,1273666468 +29321,1222,suicide,1273666471 +29321,1222,Vietnam,1273666469 +29321,1222,Vietnam War,1273666466 +29321,1222,want to see again,1273666483 +29321,1222,war,1273666489 +29321,1241,awesome zombie flick,1273666907 +29321,1241,Best gore/horror movie ever,1273666926 +29321,1241,campy,1273666911 +29321,1241,cult film,1273666909 +29321,1241,gross out,1273666913 +29321,1241,hard to rate,1273666930 +29321,1241,lawn mower,1273666914 +29321,1241,must see!,1273666939 +29321,1241,New Zealand,1273666917 +29321,1241,Peter Jackson,1273666923 +29321,1241,So funny,1273666933 +29321,1241,zombie,1273666920 +29321,1241,zombies,1273666921 +29321,1270,1980s,1273665684 +29321,1270,adventure,1273665710 +29321,1270,alternate reality,1273665703 +29321,1270,alternate universe,1273665705 +29321,1270,comedy,1273665685 +29321,1270,future,1273665690 +29321,1270,high school,1273665711 +29321,1270,quirky,1273665708 +29321,1270,Saturn Award (Best Science Fiction Film),1273665701 +29321,1270,sci-fi,1273665699 +29321,1270,Steven Spielberg,1273665695 +29321,1270,teen,1273665715 +29321,1270,time travel,1273665693 +29321,2174,Alec Baldwin,1273666854 +29321,2174,claymation,1273666848 +29321,2174,comedy,1273666853 +29321,2174,cult film,1273666852 +29321,2174,haunted house,1273666862 +29321,2174,Michael Keaton,1273666874 +29321,2174,Tim Burton,1273666850 +29321,2174,weird,1273666865 +29321,2174,winona ryder,1273666863 +29321,2329,amazing photography,1273665999 +29321,2329,Edward Norton,1273665981 +29321,2329,emotional,1273666008 +29321,2329,holocaust,1273666005 +29321,2329,Nudity (Topless),1273665989 +29321,2329,politics,1273666010 +29321,2329,powerful ending,1273665996 +29321,2329,racism,1273665983 +29321,2329,rape,1273665988 +29321,2329,skinhead,1273665991 +29321,2329,tense,1273666012 +29321,2329,thought-provoking,1273665995 +29321,2329,violence,1273665986 +29321,2571,Action,1273665450 +29321,2571,artificial intelligence,1273665452 +29321,2571,computers,1273665454 +29321,2571,cult film,1273665456 +29321,2571,cyberpunk,1273665442 +29321,2571,dystopia,1273665475 +29321,2571,Keanu Reeves,1273665444 +29321,2571,Oscar (Best Effects - Visual Effects),1273665460 +29321,2571,post apocalyptic,1273665448 +29321,2571,sci-fi,1273665464 +29321,2571,surreal,1273665463 +29321,2571,virtual reality,1273665446 +29321,2657,adapted from:play,1273666808 +29321,2657,awesome soundtrack,1273666810 +29321,2657,campy,1273666831 +29321,2657,cross dressing,1273666806 +29321,2657,cult classic,1273666796 +29321,2657,cult film,1273666798 +29321,2657,great soundtrack,1273666794 +29321,2657,music,1273666817 +29321,2657,musical,1273666799 +29321,2657,Quirky,1273666800 +29321,2657,sexuality,1273666801 +29321,2657,transgender,1273666814 +29321,2762,Atmospheric,1273667361 +29321,2762,ghosts,1273667383 +29321,2762,M. Night Shyamalan,1273667381 +29321,2762,mindfuck,1273667365 +29321,2762,seen more than once,1273667378 +29321,2762,twist ending,1273667364 +29321,2762,unique,1273667374 +29321,2959,action,1273665944 +29321,2959,based on a book,1273665941 +29321,2959,Brad Pitt,1273665933 +29321,2959,dark comedy,1273665937 +29321,2959,Edward Norton,1273665926 +29321,2959,satirical,1273665952 +29321,2959,social commentary,1273665947 +29321,2959,surreal,1273665945 +29321,2959,violence,1273665935 +29321,4383,Jean Reno,1273664581 +29321,4383,Jean-Christophe Grange,1273664603 +29321,4383,Mathieu Kassovitz,1273664605 +29321,4383,mystery,1273664587 +29321,4383,Vincent Cassel,1273664597 +29321,4383,watched 2006,1273664593 +29321,5628,Jean Reno,1273664302 +29321,5628,Ryoko Hirosue,1273664308 +29321,6874,Japan,1273666349 +29321,6874,martial arts,1273666350 +29321,6874,Quentin Tarantino,1273666343 +29321,6874,rape,1273666369 +29321,6874,revenge,1273666354 +29321,6874,Uma Thurman,1273666344 +29321,6874,violence,1273666356 +29321,6874,violent,1273666355 +29321,6874,visceral,1273666358 +29321,7438,action,1273666394 +29321,7438,atmospheric,1273666397 +29321,7438,Quentin Tarantino,1273666383 +29321,7438,revenge,1273666385 +29321,7438,Samuel L. Jackson,1273666399 +29321,7438,spaghetti western,1273666389 +29321,7438,Tarantino,1273666387 +29321,7438,Uma Thurman,1273666384 +29321,8917,bizarre,1273655014 +29321,8917,Gross-out,1273655029 +29321,8917,hilarious,1273655016 +29321,8917,Kim Jong Il,1273655009 +29321,8917,political commentary,1273655013 +29321,8917,puppets,1273654976 +29321,8917,satire,1273655020 +29321,8917,stupid,1273655032 +29321,8917,Tom Hanks,1273655023 +29321,8917,Trey Parker,1273654978 +29321,27689,Apocalypse,1273664683 +29321,27689,Jean Reno,1273664621 +29321,27689,Jean-Christophe Grange,1273664627 +29321,27689,Monk,1273664649 +29321,27689,Murder,1273664646 +29321,27689,Religion,1273664672 +29321,32587,adapted from:comic,1273666310 +29321,32587,artistic,1273666330 +29321,32587,atmospheric,1273666316 +29321,32587,Bruce Willis,1273666296 +29321,32587,cannibalism,1273666299 +29321,32587,comic book,1273666313 +29321,32587,Quentin Tarantino,1273666288 +29321,32587,super-hero,1273666324 +29321,32587,surrealism,1273666322 +29321,32587,violence,1273666303 +29321,32587,violent,1273666305 +29321,33004,alien invasion,1273080454 +29321,33004,aliens,1273080456 +29321,33004,apocalypse,1273080461 +29321,33004,based on book,1273080375 +29321,33004,comedy,1273080425 +29321,33004,douglas adams,1273080375 +29321,33004,dumbed down,1273080373 +29321,33004,end of the world,1273080385 +29321,33004,hollywoodization,1273080372 +29321,33004,John Malkovich,1273080470 +29321,33004,post-apocalyptic,1273080367 +29321,53129,best seen in a theater?,1273654767 +29321,53129,Dane Cook,1273654789 +29321,53129,Demi Moore,1273654782 +29321,53129,Kevin Costner,1273654751 +29321,53129,plot twist,1273654755 +29321,53129,protagonist is engineer,1273654769 +29321,53129,R,1273654776 +29321,53129,serial killer,1273654753 +29321,53519,car chase,1273666631 +29321,53519,grainy,1273666654 +29321,53519,great dialogue,1273666633 +29321,53519,great soundtrack,1273666637 +29321,53519,grindhouse,1273666635 +29321,53519,jukebox,1273666651 +29321,53519,Kick-Butt Women,1273666638 +29321,53519,Kurt Russell,1273666615 +29321,53519,margaritas,1273666648 +29321,53519,muscle car celebration,1273666642 +29321,53519,Quentin Tarantino,1273666613 +29321,53519,Rosario Dawson,1273666616 +29321,53519,Tarantino,1273666645 +29321,53519,The Crazy Babysitter Twins,1273666629 +29321,53519,too long,1273666624 +29321,54272,animation,1273664365 +29321,54272,based on a TV series,1273664382 +29321,54272,better than any new episodes,1273664407 +29321,54272,cameo:Tom Hanks,1273664376 +29321,54272,comedy,1273664370 +29321,54272,father-son relationship,1273664388 +29321,54272,movie to see,1273664393 +29321,54272,PG-13,1273664398 +29321,54272,seen at the cinema,1273664401 +29321,54272,simpsons,1273664372 +29321,68157,Adolf Hitler,1273666071 +29321,68157,assassination,1273666086 +29321,68157,easily confused with other movie(s) (title),1273666105 +29321,68157,gore,1273666091 +29321,68157,Nazis,1273666073 +29321,68157,Quentin Tarantino,1273666076 +29321,68157,satire,1273666083 +29321,68157,tarantino,1273666074 +29321,68157,violence,1273666079 +29321,68157,World War II,1273666081 +29321,68954,adventure,1273666126 +29321,68954,computer animation,1273666130 +29321,68954,dogs,1273666144 +29321,68954,dreams,1273666147 +29321,68954,friendship,1273666150 +29321,68954,heartbreaking,1273666133 +29321,68954,Pixar,1273666131 +29321,68954,predictable,1273666155 +29321,68954,slow paced,1273666136 +29321,68954,talking animals,1273666169 +29321,69122,casino,1273654856 +29321,69122,Drinking,1273654836 +29321,69122,Las Vegas,1273654837 +29321,69122,Nudity (Topless),1273654832 +29321,69122,seen it before,1273654843 +29321,69122,stupid stereotypes,1273654841 +29321,71878,Dylan Walsh,1273654943 +29321,71878,Plot,1273654926 +29321,74789,3D,1273079757 +29321,74789,based on a book,1273079804 +29321,74789,Johnny Depp,1273079800 +29321,74789,talking animals,1273079827 +29321,76175,3D version,1273654448 +29321,76175,action,1273654465 +29321,76175,existentialism,1273654463 +29321,76175,Liam Neeson,1273654450 +29321,76175,Special Effects,1273654470 +29333,546,Everybody do the dinosaur,1188756878 +29333,671,funniest movie ever,1188756282 +29333,1590,dark,1188756320 +29333,1717,crap,1188756291 +29333,1779,terrible,1188756854 +29333,2478,ole,1188756350 +29333,2953,oh dear,1188756328 +29333,3105,kill me,1188756342 +29333,3617,ok,1188756303 +29333,3752,jim carey,1188756192 +29333,4310,shit,1188756222 +29333,4848,weird,1188756204 +29333,8622,Michael Moore,1188756257 +29333,8798,Tom Cruise,1188756842 +29346,260,classic,1438204340 +29346,260,sci-fi,1438204318 +29346,260,space,1438204335 +29346,356,growing up,1438289478 +29346,356,history,1438289478 +29346,356,military,1438289478 +29351,1701,writers,1365583480 +29351,74948,fffff,1365603999 +29351,74948,fsaf,1365603999 +29351,74948,fsf,1365603999 +29351,74948,sfx,1365603999 +29365,260,Action comedy,1432601094 +29365,260,classic adventure,1432601047 +29365,60514,comic scifi,1432604325 +29365,60514,juvenile adventure,1432604325 +29365,60514,retold classic,1432604325 +29365,107563,romance,1432610001 +29426,260,classic,1439767873 +29426,260,space adventure,1439768154 +29427,5607,Argentina,1237986526 +29427,59731,steroids,1238910854 +29435,6708,Nicolas Cage,1156035551 +29438,3476,psychiatry,1237495609 +29438,3735,70s,1259134359 +29438,3735,dark,1259134359 +29438,3735,hippies,1259134359 +29438,61323,cia,1239088861 +29438,62344,dysfunctional family,1239002070 +29438,62344,sisters,1239002070 +29447,111,dark,1368424905 +29447,111,mental illness,1368425376 +29447,474,tense,1368425477 +29447,519,franchise,1368424938 +29447,861,police,1368425445 +29447,913,black and white,1368424883 +29447,922,black and white,1368424883 +29447,1089,violent,1368425495 +29447,1206,violent,1368425495 +29447,1214,tense,1368425476 +29447,1228,oscar (best cinematography),1368425421 +29447,1390,politics,1368425455 +29447,1464,mystery,1368425387 +29447,1610,thriller,1368425485 +29447,1954,oscar (best cinematography),1368425421 +29447,2024,christianity,1368424894 +29447,2058,tense,1368425477 +29447,2076,dark,1368424905 +29447,2082,inspirational,1368425367 +29447,2353,thriller,1368425486 +29447,2383,police,1368425445 +29447,2959,violent,1368425495 +29447,2985,violent,1368425495 +29447,3256,tense,1368425477 +29447,3256,thriller,1368425485 +29447,3273,franchise,1368424938 +29447,3435,black and white,1368424883 +29447,3440,franchise,1368424938 +29447,3980,inspirational,1368425367 +29447,4306,pixar,1368425431 +29447,4388,stupid,1368425466 +29447,4865,dark,1368424905 +29447,4865,mystery,1368425387 +29447,4974,stupid,1368425466 +29447,5218,pixar,1368425431 +29447,5363,high school,1368425356 +29447,5444,pixar,1368425431 +29447,5785,stupid,1368425466 +29447,5989,father-son relationship,1368424928 +29447,6323,mystery,1368425387 +29447,6537,franchise,1368424938 +29447,6808,nazis,1368425398 +29447,7153,oscar (best cinematography),1368425421 +29447,7160,mental illness,1368425376 +29447,8360,pixar,1368425431 +29447,8781,politics,1368425455 +29447,27867,football,1314605909 +29447,27867,hooligans,1314605909 +29447,33660,inspirational,1368425367 +29447,38038,pixar,1368425431 +29447,51540,police,1368425445 +29447,53121,franchise,1368424938 +29447,55908,christianity,1368424894 +29447,59429,nudity (topless - notable),1368425411 +29447,59784,pixar,1368425431 +29447,63113,franchise,1368424938 +29447,74458,mystery,1368425387 +29447,89273,alternative history,1314709744 +29457,48516,Martin Scorsese,1225213317 +29482,52724,movie to see,1205695475 +29491,50,suspense,1437853137 +29491,50,twist ending,1437853133 +29495,260,adventure,1431973092 +29495,260,sci-fi,1431973085 +29495,1213,gangsters,1433186580 +29495,1213,violent,1433186594 +29495,1262,action,1433186638 +29495,1262,suspense,1433186638 +29495,1262,world war ii,1433186638 +29520,1884,psychedelic,1214034844 +29520,2174,ghosts/afterlife,1215246624 +29520,3677,avante garde,1227121579 +29520,36276,art house,1146965593 +29520,69606,cheesy,1293257018 +29520,69606,pickup,1293257018 +29520,71033,Argentina,1279578879 +29520,90528,road trip,1347334430 +29520,95939,whiskey,1352783500 +29520,106920,artificial intelligence,1404363000 +29520,106920,psychology,1404363017 +29520,106920,quirky,1404363013 +29520,106920,sci-fi,1404363025 +29520,106920,thought-provoking,1404363005 +29520,117533,computers,1443302060 +29520,117533,documentary,1443302039 +29520,117533,edward snowden,1443302041 +29520,117533,political,1443302045 +29520,117533,thought provoking,1443302049 +29528,32,Brad Pitt,1308853229 +29528,32,Bruce Willis,1308853223 +29528,32,dystopia,1308853256 +29528,32,mental illness,1309122870 +29528,32,post-apocalyptic,1308853231 +29528,32,sci-fi,1308853234 +29528,39,Alicia Silverstone,1308933379 +29528,39,high school,1308933366 +29528,39,teen,1308933368 +29528,47,serial killer,1308932139 +29528,111,grim,1308920260 +29528,111,Robert De Niro,1308920246 +29528,111,vigilante,1308920252 +29528,253,Brad Pitt,1308933341 +29528,253,horror,1308933349 +29528,253,vampires,1308933343 +29528,260,aliens,1308844712 +29528,260,George Lucas,1308844669 +29528,260,sci-fi,1308844708 +29528,260,space,1308844706 +29528,260,Star Wars,1308844699 +29528,288,dark comedy,1308933539 +29528,288,prison,1308933556 +29528,288,serial killer,1308933544 +29528,288,Woody Harrelson,1308933571 +29528,293,friendship,1308933608 +29528,293,hitman,1308933601 +29528,293,Jean Reno,1308933587 +29528,293,Luc Besson,1308933636 +29528,293,Natalie Portman,1308933589 +29528,296,Bruce Willis,1308841441 +29528,296,cult film,1308841443 +29528,296,dark comedy,1308841438 +29528,296,multiple storylines,1308841448 +29528,296,nonlinear,1308841434 +29528,296,Quentin Tarantino,1308841432 +29528,296,Samuel L. Jackson,1308841424 +29528,296,violence,1308841472 +29528,318,Morgan Freeman,1308844770 +29528,318,prison,1308844797 +29528,318,prison escape,1308844781 +29528,318,Stephen King,1308844788 +29528,353,gothic,1308934178 +29528,353,gritty,1308934190 +29528,353,Rochelle Davis,1308934318 +29528,353,vigilante,1308934180 +29528,356,romance,1308933161 +29528,356,Tom Hanks,1308933159 +29528,356,war,1308933175 +29528,364,Disney,1308932180 +29528,364,talking animals,1308932196 +29528,431,Al Pacino,1308843344 +29528,431,gangster,1308843351 +29528,431,mafia,1308843356 +29528,431,Sean Penn,1308843365 +29528,480,cloning,1308844834 +29528,480,dinosaurs,1308844845 +29528,480,horror,1308844836 +29528,480,Steven Spielberg,1308844824 +29528,608,Coen Brothers,1308853965 +29528,608,dark comedy,1308853958 +29528,608,murder,1308853960 +29528,608,Steve Buscemi,1308853983 +29528,912,Humphrey Bogart,1308933658 +29528,912,romance,1308933660 +29528,912,sentimental,1308933664 +29528,1089,Harvey Keitel,1308933447 +29528,1089,nonlinear,1308933417 +29528,1089,organized crime,1308933415 +29528,1089,Quentin Tarantino,1308933410 +29528,1089,Steve Buscemi,1308933447 +29528,1201,Clint Eastwood,1308934528 +29528,1201,Sergio Leone,1308934531 +29528,1201,spaghetti western,1308934536 +29528,1209,Charles Bronson,1309179211 +29528,1209,Sergio Leone,1309179086 +29528,1209,Spaghetti Western,1309179084 +29528,1266,bleak,1308842141 +29528,1266,Clint Eastwood,1308841982 +29528,1266,gritty,1308842149 +29528,1266,imdb top 250,1308842153 +29528,1266,Oscar (Best Picture),1308841988 +29528,1266,tense,1308842173 +29528,1358,mental illness,1308934577 +29528,1527,aliens,1308853626 +29528,1527,Bruce Willis,1308853620 +29528,1527,Luc Besson,1308853638 +29528,1527,Milla Jovovich,1308853631 +29528,1527,sci-fi,1308853634 +29528,1584,aliens,1308933899 +29528,1584,religion,1308933880 +29528,1729,gritty,1308853821 +29528,1729,Quentin Tarantino,1308853805 +29528,1729,Robert De Niro,1308853811 +29528,1729,Samuel L. Jackson,1308853817 +29528,1748,dystopia,1308853146 +29528,1748,Post apocalyptic,1308853164 +29528,2571,dystopia,1309122603 +29528,2571,hackers,1309122628 +29528,2571,martial arts,1309122647 +29528,2571,post-apocalyptic,1309122601 +29528,2571,sci-fi,1309122599 +29528,2683,Mike Myers,1308933395 +29528,2683,spoof,1308933390 +29528,2858,coming of age,1308853919 +29528,2858,dark comedy,1308853912 +29528,2858,Kevin Spacey,1308853936 +29528,2921,Clint Eastwood,1309011262 +29528,2921,spaghetti western,1309011266 +29528,2951,Clint Eastwood,1309011169 +29528,2951,gritty,1309011174 +29528,2951,Sergio Leone,1309011184 +29528,2951,spaghetti western,1309011171 +29528,2959,Brad Pitt,1308853867 +29528,2959,dark comedy,1308853885 +29528,2959,disturbing,1308853895 +29528,2959,Edward Norton,1308853871 +29528,2959,mental illness,1308853874 +29528,2959,social commentary,1308853878 +29528,3020,going postal,1308845093 +29528,3020,obsession,1308845130 +29528,3020,Postal,1308845097 +29528,3020,Violence,1308845099 +29528,3198,Dustin Hoffman,1308845336 +29528,3198,prison,1308845338 +29528,3198,prison escape,1308845340 +29528,3198,wrongly accused,1308845343 +29528,3681,Clint Eastwood,1309011307 +29528,3681,Sergio Leone,1309011318 +29528,3681,spaghetti western,1309011321 +29528,3702,dystopia,1308853536 +29528,3702,nuclear war,1308853563 +29528,3702,post-apocalyptic,1308853538 +29528,3702,sci-fi,1308853545 +29528,3703,dystopia,1309122938 +29528,3703,post-apocalyptic,1309122932 +29528,3704,crappy sequel,1309122816 +29528,3704,post-apocalyptic,1309122820 +29528,3915,Michelle Rodriguez,1309121768 +29528,4011,Brad Pitt,1308920148 +29528,4011,organized crime,1308920156 +29528,4641,adolescence,1308854022 +29528,4641,coming of age,1308854016 +29528,4641,deadpan,1308854048 +29528,4641,Steve Buscemi,1308854025 +29528,4641,suburbia,1308854055 +29528,4641,Thora Birch,1308854038 +29528,4878,high school,1308931828 +29528,4878,Jake Gyllenhaal,1308931822 +29528,4878,mental illness,1308931796 +29528,4878,time travel,1308931800 +29528,5219,Michelle Rodriguez,1309122141 +29528,5219,Milla Jovovich,1309122121 +29528,5219,outbreak,1309122221 +29528,5219,virus,1309122228 +29528,5219,zombies,1309122436 +29528,6242,curse,1308931989 +29528,6242,japanese horror,1308931709 +29528,6243,curse,1308931975 +29528,6243,japanese horror,1308931946 +29528,6502,epidemic,1308853419 +29528,6502,post-apocalyptic,1308853403 +29528,6502,zombies,1308853407 +29528,8874,Simon Pegg,1309123356 +29528,8874,zombies,1309123353 +29528,32587,Bruce Willis,1308853709 +29528,32587,superhero,1308853726 +29528,32743,curse,1308931983 +29528,32743,japanese horror,1308931958 +29528,44191,dystopia,1308853082 +29528,44191,social commentary,1308853090 +29528,44191,terrorism,1308853107 +29528,44974,Ellen Page,1309123065 +29528,46478,Ellen Page,1308841261 +29528,46478,Natasha Wightman,1308841276 +29528,46478,Nudity (Topless),1308841272 +29528,51255,Nick Frost,1309123268 +29528,51255,Simon Pegg,1309123105 +29528,55820,coen brothers,1308920116 +29528,55820,hitman,1308920126 +29528,55820,serial killer,1308920137 +29528,56174,post-apocalyptic,1308853471 +29528,56174,sci-fi,1308853477 +29528,56174,Will Smith,1308853449 +29528,56174,zombies,1308853457 +29528,56367,Ellen Page,1308841166 +29528,56367,high school,1308841181 +29528,56367,teen,1308841174 +29528,56367,witty,1308841178 +29528,68237,dystopia,1308853182 +29528,68237,Sci-fi,1308853187 +29528,68237,space,1308853190 +29528,71131,Christianity,1309179023 +29528,71131,religion,1309179027 +29528,71518,coming of age,1308852897 +29528,71518,Ellen Page,1308852904 +29528,71518,pop counterculture,1308852895 +29528,71535,post-apocalyptic,1308853364 +29528,71535,Woody Harrelson,1309122716 +29528,71535,zombies,1308853368 +29528,72998,Michelle Rodriguez,1309121529 +29528,76251,Chloe Moretz,1309010879 +29528,76251,comic book,1309010839 +29528,76251,superhero,1309010842 +29528,76251,vigilante,1309010846 +29528,76755,Ellen Page,1308852955 +29528,80219,Michelle Rodriguez,1309121703 +29528,80831,bullying,1309010972 +29528,80831,coming of age,1309010967 +29528,80831,serial killer,1309010958 +29528,80831,vampires,1309010962 +29528,82459,Coen Brothers,1309010726 +29528,82459,revenge,1309010755 +29528,82459,Western,1309010751 +29528,85131,alien invasion,1309121871 +29528,85131,aliens,1309121875 +29528,85131,Michelle Rodriguez,1309121868 +29528,85131,sci-fi,1309121879 +29528,85131,war,1309121885 +29528,85401,Ellen Page,1308843546 +29528,85401,Rainn Wilson,1308843707 +29528,85401,superhero,1308843670 +29528,85401,vigilante,1308843837 +29528,85736,Pixar,1308844568 +29537,3424,race issues,1172792966 +29555,260,interplanetary,1441509245 +29555,260,sci-fi,1441509232 +29559,19,detective,1368305411 +29559,25,melancholic,1368305079 +29559,32,original,1368304958 +29559,111,masterpiece,1368305162 +29559,593,excellent script,1368305205 +29559,904,suspenseful,1368305314 +29559,923,masterpiece,1368305162 +29559,934,Spencer Tracy,1368129257 +29559,1088,dancing,1368305365 +29559,1201,Clint Eastwood,1370128901 +29559,1201,Sergio Leone,1370128904 +29559,1201,spaghetti western,1370128898 +29559,1201,western,1370128916 +29559,1219,suspenseful,1368305314 +29559,1537,dancing,1368305365 +29559,1617,detective,1368305411 +29559,1617,neo-noir,1368305347 +29559,1701,Woody Allen,1370632987 +29559,1704,excellent script,1368305205 +29559,1704,mentor,1368305135 +29559,1968,teen movie,1368305297 +29559,2420,mentor,1368305135 +29559,2858,excellent script,1368305205 +29559,2863,musicians,1368305278 +29559,2866,musicians,1368305278 +29559,2921,Clint Eastwood,1433193391 +29559,2921,spaghetti western,1433193414 +29559,3081,atmospheric,1429983061 +29559,3081,Bechdel Test:Pass,1429983100 +29559,3081,Dark,1429983056 +29559,3081,Fantasy,1429983063 +29559,3081,gothic,1429983059 +29559,3081,horror,1429983069 +29559,3081,Mystery,1429983064 +29559,3081,Tim Burton,1429983054 +29559,3081,witch,1429983093 +29559,3418,women,1368305255 +29559,3499,suspenseful,1368305314 +29559,3755,disaster,1429983219 +29559,3755,George Clooney,1429983228 +29559,3755,Mark Wahlberg,1429983222 +29559,3791,dancing,1368305365 +29559,3994,M. Night Shyamalan,1368303014 +29559,5294,serial killer,1367270340 +29559,5574,action,1429983127 +29559,5574,bad acting,1429983143 +29559,5693,dancing,1368305365 +29559,6301,Dustin Hoffman,1370031853 +29559,6323,dark,1429982787 +29559,6323,multiple storylines,1429982791 +29559,6323,psychology,1429982767 +29559,6323,twist ending,1429982764 +29559,6787,Dustin Hoffman,1366828546 +29559,6787,Robert Redford,1366828548 +29559,7013,noir thriller,1368305101 +29559,7827,cyberpunk,1429987247 +29559,7827,espionage,1429987251 +29559,7827,sci-fi,1429987257 +29559,8914,clever,1365190441 +29559,8914,Complicated,1365190430 +29559,8914,complicated plot,1365190434 +29559,8914,dialogue driven,1365190436 +29559,8914,directorial debut,1365190438 +29559,8914,engineers,1365190467 +29559,8914,low budget,1365190482 +29559,8914,sci-fi,1365190473 +29559,8914,science,1365190476 +29559,8914,science fiction,1365190479 +29559,8914,time travel,1365190452 +29559,8914,white shirts,1365190457 +29559,27689,Jean Reno,1429982899 +29559,27689,Merde!,1429982609 +29559,27689,Religion,1429982889 +29559,34437,melancholic,1368305079 +29559,41571,geisha,1432498176 +29559,41571,history,1432498179 +29559,41571,Japan,1432498243 +29559,41571,Japanese culture,1432498177 +29559,41571,Ken Watanabe,1432498194 +29559,41571,Michelle Yeoh,1432498213 +29559,41571,Ziyi Zhang,1432498222 +29559,45081,atmospheric,1429982830 +29559,45081,Bechdel Test:Pass,1429982858 +29559,45081,dark,1429982848 +29559,45081,disturbing,1429982835 +29559,45081,post-apocalyptic,1429982832 +29559,51037,paranoia,1366828380 +29559,51037,psychological,1366828374 +29559,51255,action,1429983265 +29559,51255,black comedy,1429983259 +29559,51255,british comedy,1429983257 +29559,51255,buddy movie,1429983270 +29559,51255,dark comedy,1429983267 +29559,51255,parody,1429983261 +29559,53123,musicians,1368305278 +29559,53464,adapted from:comic,1366827778 +29559,53464,bad acting,1366827773 +29559,53464,bad jokes,1366827770 +29559,53464,bad plot,1366827771 +29559,53464,Bechdel Test:Fail,1366827758 +29559,53464,Marvel,1366827782 +29559,53464,superheroes,1366827873 +29559,68659,geek,1432498086 +29559,68659,movie reference jokes,1432498097 +29559,68659,nerd,1432498089 +29559,68659,pop culture references,1432498093 +29559,68659,star trek,1432498109 +29559,68659,star wars,1432498085 +29559,70533,Mechs,1453324319 +29559,71135,action,1365192904 +29559,71135,aliens,1365192901 +29559,71135,amnesia,1365192902 +29559,71135,blood,1365192908 +29559,71135,horror,1365192897 +29559,71135,post-apocalyptic,1365192893 +29559,71135,sci-fi,1365192888 +29559,71135,space,1365192891 +29559,73929,apocalypse,1453070143 +29559,74458,insanity,1367270454 +29559,74458,psychological,1367270458 +29559,77561,bad science,1449584684 +29559,77561,based on a comic,1449584669 +29559,77561,cgi,1449584692 +29559,77561,comic book,1449584656 +29559,77561,Marvel,1449584671 +29559,77561,Samuel L. Jackson,1449584658 +29559,77561,sci-fi,1449584665 +29559,78105,plot holes,1366839748 +29559,79132,action,1365192809 +29559,79132,psychological,1365192821 +29559,79132,sci-fi,1365192814 +29559,79132,thought-provoking,1365192816 +29559,80398,Jean Reno,1429983176 +29559,80398,revenge,1429983179 +29559,84187,anime,1453324373 +29559,84187,mechs,1453324386 +29559,88744,bad science,1449584781 +29559,88744,Plot holes,1449584785 +29559,94864,sci fi,1365193083 +29559,94864,scifi,1365193085 +29559,94864,space travel,1365193086 +29559,95207,Stupid,1368129487 +29559,98154,Daniel Day-Lewis,1368303559 +29559,98154,Steven Spielberg,1368303567 +29559,98154,too long,1368303576 +29559,101362,patriotic,1452031439 +29559,101362,predictable,1452031457 +29559,101362,weak plot,1452031449 +29559,101864,clones,1366828174 +29559,101864,dystopia,1366828160 +29559,101864,sci-fi,1366828179 +29559,101864,Tom Cruise,1366828169 +29559,106100,biography,1429982991 +29559,106100,Jared Leto,1429982983 +29559,106100,true story,1429983004 +29559,106491,anime,1429982951 +29559,106491,fantasy,1429982574 +29559,106491,martial arts,1429982946 +29559,106491,Samurai,1429982572 +29559,107406,chris evans,1413670728 +29559,107406,post-apocalyptic,1413670714 +29559,109487,artificial intelligence,1429982511 +29559,109487,astronomy,1429982706 +29559,109487,Deus Ex Machina Ending,1429982722 +29559,109487,good science,1429982539 +29559,109487,good science bad science,1429982682 +29559,109487,physics,1429982498 +29559,109487,plot holes,1429982519 +29559,109487,sci-fi,1429982508 +29559,109487,science fiction,1429982529 +29559,109487,space,1429982492 +29559,109487,space exploration,1429982659 +29559,109487,suspense,1429982656 +29559,109487,time travel,1429982505 +29559,109487,time-travel,1429982489 +29559,109487,wormhole,1429982543 +29559,112183,alter ego,1432042406 +29559,112183,Edward Norton,1432042398 +29559,112183,superhero,1432042420 +29559,112183,surreal,1432042430 +29559,115149,Action,1449533503 +29559,115149,Keanu Reeves,1449533501 +29559,117176,biography,1423515424 +29559,117176,physics,1423515432 +29585,8464,documentary,1223577525 +29585,8464,McDonalds,1223577522 +29606,7361,funky,1182901747 +29616,99007,funny,1365316215 +29616,99007,horrible,1365316215 +29616,99007,zombies,1365316215 +29623,296,Black comedy,1446049576 +29623,296,bruce willis,1446049614 +29623,296,cult film,1446049579 +29623,296,dark comedy,1446049564 +29623,296,good dialogue,1446049598 +29623,296,great soundtrack,1446049634 +29623,296,John Travolta,1446049644 +29623,296,storytelling,1446049607 +29623,1080,Monty Python,1423789174 +29623,1080,religion,1423789179 +29623,1291,Comedy,1364029829 +29623,1291,irrationality,1364029829 +29623,4967,foreign,1445300555 +29623,4967,Oscar (Best Foreign Language Film),1445300529 +29623,7317,comedy,1446326520 +29623,7317,europe,1446326527 +29623,27134,atmospheric,1445976209 +29623,27134,cinematography,1445976217 +29623,27134,Gerard Depardieu,1445976221 +29623,27134,mystery,1445976202 +29623,35082,France,1357960456 +29623,37720,exorcism,1356750883 +29623,48738,Uganda,1444174292 +29623,51007,France,1357960485 +29623,51255,action spoof,1454025675 +29623,51255,british comedy,1454025647 +29623,51255,funny,1454025654 +29623,51255,slow start,1454025666 +29623,60408,France,1358168111 +29623,94864,religion,1365215037 +29623,112556,Ben Affleck,1445648433 +29623,112556,missing wife,1445648497 +29623,112556,unpredictable,1445648418 +29664,3977,action,1441152415 +29664,4993,beautifully filmed,1440611766 +29664,4993,ensemble cast,1440611775 +29664,4993,epic adventure,1440611757 +29664,4993,fantasy,1440611750 +29664,4993,tolkien,1440611746 +29664,5952,Action,1440611804 +29664,5952,Epic,1440611801 +29664,5952,fantasy,1440611790 +29664,5952,high fantasy,1440611793 +29664,5952,tolkien,1440611797 +29664,6503,action,1441152462 +29664,134246,pierce brosnan,1441209120 +29677,2571,martial arts,1442063914 +29677,3996,wuxia,1442062965 +29682,111759,alien invasion,1423346494 +29682,111759,highlander,1423346494 +29682,111759,time travel,1423346494 +29687,3044,mystery,1431532130 +29687,3044,twist ending,1431532144 +29687,86781,twist ending,1431532048 +29687,86781,Unexpected Ending,1431532037 +29712,103541,addiction,1433008703 +29712,103541,romance,1433008703 +29712,103541,sex,1433008703 +29718,116797,gay,1432690605 +29718,116797,intelligent,1432690605 +29718,116797,world war ii,1432690605 +29739,1210,Mark Hamill,1195153179 +29780,1348,oldschool,1165810200 +29780,6433,oldschool,1165810085 +29780,48043,Disappointing,1166505736 +29831,260,action,1439776951 +29831,260,comedy,1439776919 +29900,48394,adventure,1376766763 +29900,48394,alternate reality,1376766759 +29900,48394,atmospheric,1376766743 +29900,48394,bittersweet,1376766748 +29900,48394,fantasy,1376766746 +29900,48394,stylized,1376766751 +29900,48394,surreal,1376766750 +29900,48394,twist ending,1376766753 +29900,52604,action,1376765648 +29900,52604,Anthony Hopkins,1376765633 +29900,52604,Sci fi,1376765679 +29900,52604,twist ending,1376765655 +29908,110,action,1439307483 +29908,110,classic,1439307480 +29908,110,drama,1439307491 +29908,110,historical,1439307478 +29908,110,inspirational,1439307486 +29908,589,action,1439307515 +29908,589,artificial intelligence,1439307522 +29908,589,music,1439307530 +29908,589,time travel,1439307516 +29908,1367,dogs,1439307455 +29908,91500,survival,1446994052 +29908,99114,Christoph Waltz,1439307419 +29908,99114,Great performances,1439307430 +29908,99114,Humour,1439307416 +29908,99114,Leonardo DiCaprio,1439307425 +29908,99114,Quentin Tarantino,1439307402 +29908,99114,Samuel L. Jackson,1439307406 +29908,116823,based on a book,1448348556 +29908,116823,Inspirational Speeches,1448348565 +29908,116823,revolution,1448348535 +29908,128360,Quentin Tarantino,1452716740 +29910,2038,cats,1369218481 +29910,2057,cats,1369387799 +29910,2057,dogs,1369387799 +29910,2297,alternate reality,1369217995 +29910,2297,surreal,1369218006 +29910,2337,boy-on-boy action,1369217812 +29910,2337,dreamlike,1369217818 +29910,2846,cats,1369218080 +29910,3347,wolves,1369218389 +29910,4816,Highly quotable,1369217964 +29910,4816,seen more than once,1369217955 +29910,8666,cats,1369218291 +29910,8666,female power,1369218297 +29910,46976,fantasy,1369218116 +29910,47997,dark comedy,1369218153 +29910,47997,Underrated,1369218163 +29914,76093,animation,1428099735 +29914,76093,cute,1428099739 +29914,76093,dragons,1428099727 +29914,76093,funny,1428099724 +29914,76093,predictable,1428099745 +29914,76093,vikings,1428099765 +29914,109487,dystopia,1428099610 +29914,109487,sci-fi,1428099610 +29914,109487,time travel,1428099610 +29914,112552,music,1428099669 +29914,112552,musicians,1428099666 +29914,117176,biography,1428099840 +29914,117176,physics,1428099844 +29914,117176,science,1428099846 +29930,125970,Fall,1437278981 +29930,125970,Family,1437278984 +29930,125970,Halloween,1437278978 +29930,125972,Fall,1437279003 +29930,125972,Family,1437279007 +29930,125972,Halloween,1437278999 +29930,125974,Fall,1437278958 +29930,125974,Family,1437278962 +29930,125974,Halloween,1437278953 +29936,94018,special effects,1341793253 +29937,596,pixar,1186032056 +29939,318,imdb top 250,1399993329 +29939,318,inspirational,1399993356 +29939,318,prison,1399993353 +29939,318,Stephen King,1399993333 +29939,318,thought-provoking,1399993346 +29939,318,twist ending,1399993350 +29939,4658,Alejandro Jodorowsky,1399993479 +29939,4658,disturbing,1399993485 +29939,4658,thought-provoking,1399993514 +29943,2596,conformity,1370235482 +29943,2596,ending,1370235482 +29943,2596,punk,1370235454 +29943,31696,surreal,1370273212 +29943,37857,alternate reality,1370236762 +29943,37857,fantasy,1370236768 +29943,85510,martial arts,1370273476 +29943,85510,stylized,1370273471 +29943,85510,Surreal,1370273462 +29943,95167,animation,1370359102 +29943,95167,Pixar,1370359098 +29951,260,"action, scifi",1439775310 +29951,260,space opera,1439775319 +29964,858,long,1139543981 +29975,50,twist ending,1445185868 +29975,318,inspirational,1445185246 +29975,1203,great screenplay,1445185307 +29975,1207,great screenplay,1445185396 +29975,4226,nonlinear,1445185909 +29975,39183,Delicate Screenplay,1445185635 +29975,39183,heartbreaking,1445185614 +29975,89759,great story,1445185690 +29975,117861,great acting,1445185513 +29975,134853,creative,1445185776 +29975,134853,emotional,1445185785 +29975,140110,great story,1445185544 +29979,111781,Action,1440280489 +29979,111781,IMF,1440280473 +29979,111781,Tom Cruise,1440280477 +29979,115617,baymax,1440280535 +29979,115617,comedy,1440280544 +29979,115617,fun,1440280529 +29979,115617,inspiring,1440280549 +29979,115617,pixar,1440280556 +29979,130634,car racing,1440280400 +29979,130634,Paul Walker,1440280385 +29979,130634,Vin Diesel,1440280413 +29982,32,great ending,1368193839 +29982,32,original,1368193385 +29982,47,great ending,1368193839 +29982,111,loneliness,1368193552 +29982,150,dramatic,1368193607 +29982,169,family,1368193810 +29982,232,relationships,1368193658 +29982,318,great ending,1368193839 +29982,455,family,1368193810 +29982,508,dramatic,1368193608 +29982,668,criterion,1368193517 +29982,858,oscar (best directing),1368193585 +29982,1015,family,1368193810 +29982,1016,family,1368193810 +29982,1172,mentor,1368193423 +29982,1199,cerebral,1368193926 +29982,1199,visually appealing,1368193715 +29982,1213,oscar (best directing),1368193585 +29982,1248,criterion,1368193517 +29982,1255,cult classic,1368193766 +29982,1299,dramatic,1368193608 +29982,1307,relationships,1368193658 +29982,1466,mentor,1368193424 +29982,1552,action,1368193629 +29982,1608,action,1368193629 +29982,1623,horror,1368193791 +29982,1639,relationships,1383443655 +29982,1704,mentor,1368193423 +29982,1748,cerebral,1368193926 +29982,1952,loneliness,1368193552 +29982,1991,horror,1368193792 +29982,2076,weird,1368193687 +29982,2167,action,1368193629 +29982,2262,relationships,1368193658 +29982,2315,horror,1383443643 +29982,2335,comedy,1368193451 +29982,2371,comedy,1368193451 +29982,2415,chick flick,1378071829 +29982,2460,horror,1368193792 +29982,2742,social commentary,1386510842 +29982,2762,great ending,1368193839 +29982,2858,great acting,1368193731 +29982,3006,dramatic,1368193607 +29982,3018,horror,1368193792 +29982,3105,dramatic,1368193607 +29982,3157,family,1368193810 +29982,3421,comedy,1368193451 +29982,3470,criterion,1368193517 +29982,3949,oscar (best directing),1368193585 +29982,4085,comedy,1368193451 +29982,4216,Fear,1372461104 +29982,4295,slightly absurd,1382163130 +29982,4878,cerebral,1368193926 +29982,4878,original,1368193385 +29982,5087,black comedy,1384014300 +29982,5268,storytelling,1369329818 +29982,5452,family,1368193810 +29982,5692,Mentor,1382426163 +29982,5748,interrogation tactics,1295804280 +29982,5906,dedicated teacher,1299566468 +29982,5906,documentary style,1299566468 +29982,5995,dramatic,1368193607 +29982,6119,black comedy,1383443436 +29982,6188,comedy,1368193451 +29982,6226,media collusion. Innocent victim,1295594513 +29982,6787,story,1368193892 +29982,6987,criterion,1368193517 +29982,7097,Surrogate father / daughter relationship,1329380579 +29982,7327,criterion,1368193517 +29982,8154,criterion,1368193517 +29982,8607,retelling of 3 kings X-mas story,1348367264 +29982,8641,comedy,1368193451 +29982,8981,relationships,1368193658 +29982,26109,gangster film spoof,1384650085 +29982,26536,black comedy,1367382598 +29982,32792,gorgeous cinematography,1295717926 +29982,37729,visually appealing,1368193715 +29982,41130,black comedy,1384014472 +29982,42584,nostalgic,1295595257 +29982,44568,futility of war,1300798348 +29982,44568,oppression,1300798348 +29982,47972,trophy wife,1382612845 +29982,48214,Magic thinking,1349963791 +29982,49347,systemic corruption,1371853757 +29982,52570,moral blindness,1350542650 +29982,53849,alcoholic hero,1352550924 +29982,56508,legacy,1300550097 +29982,56782,cerebral,1368193926 +29982,57359,dsyfunctional family,1335195735 +29982,57359,naturalistic setting,1335195735 +29982,59397,dominant and subordinate,1393963700 +29982,60684,visually appealing,1368193716 +29982,62662,Ozu tribute,1300834445 +29982,67949,fetichism,1388580390 +29982,68884,dead pan humour,1295812894 +29982,71670,satire!,1386086578 +29982,73983,character study,1385780408 +29982,78332,teen age wasteland,1338313452 +29982,80906,investor corruption,1299565975 +29982,81111,media circus,1295594616 +29982,81257,bullying,1304264001 +29982,81257,Vengeance,1304264001 +29982,82749,satire,1345747552 +29982,84448,globalization,1297832332 +29982,84448,Heist film,1297832332 +29982,84807,detox,1299022730 +29982,84807,mourning,1299022730 +29982,84807,pregancy,1299022730 +29982,86002,spirituality,1331583329 +29982,87413,gorific humour,1385780329 +29982,88640,kidnapping,1382968775 +29982,89580,coming of age,1336071935 +29982,90478,Off beat,1369249541 +29982,90943,systemic poverty,1327249097 +29982,91126,anthropomorphic,1325095097 +29982,92635,agoraphobia,1369329634 +29982,92635,animation scenes,1369329589 +29982,92635,low budget,1369329589 +29982,93723,absurd deadpan humour,1375345465 +29982,93842,mourning,1338312734 +29982,93842,novel adaptation,1338312734 +29982,93892,Chronic shyness,1336419311 +29982,94931,art house,1345747265 +29982,96606,wordless,1352979295 +29982,96693,Daughter / father relationship,1348800446 +29982,97304,great one liners,1352979409 +29982,99523,black comedy,1381016525 +29982,99665,Cautionary fable,1364990998 +29982,100485,fictional remake of Young at Heart,1373543576 +29982,100527,eye candy galore,1361368169 +29982,101525,Father figures,1369249419 +29982,102286,isolation,1386858828 +29982,103017,cat and mouse game,1383091610 +29982,103059,excessive smoking,1371746045 +29982,103083,free market fundamentalism,1370990029 +29982,103166,self-censorship,1372460967 +29982,103224,high school,1371746719 +29982,103224,Northern community,1371746719 +29982,103224,PTSD,1371746719 +29982,103539,character driven,1377048110 +29982,105453,corruption,1381303715 +29982,105453,mentor,1381303714 +29982,105855,gorgeous scenery,1382613770 +29982,105945,Black comedy,1383231911 +29982,106158,bittersweet,1383926076 +29982,106228,Political scandal,1384183732 +29982,106438,adapted from a human interest book,1386858196 +29982,106443,dramedy,1384968479 +29982,106648,exploitive,1385507861 +29982,106861,biography,1386240271 +29982,107117,corruption in the bloodstream,1386858081 +29982,108488,alcoholism,1391638784 +29982,108488,character study,1391638823 +29982,108899,Character study,1393220633 +29982,109452,Life under Occupation,1393220533 +29982,109455,Kidnapping,1393221186 +29982,109455,Road movie,1393221186 +30017,608,dark comedy,1438730309 +30017,608,strong female,1438730318 +30017,1527,dystopia,1438730001 +30017,1527,dystopic future,1438729994 +30017,1527,futuristic,1438729988 +30017,1527,Nudity (Topless - Notable),1438730012 +30017,1527,sci-fi,1438729976 +30017,1527,visually appealing,1438729982 +30017,2959,dark comedy,1438730486 +30017,2959,disturbing,1438730499 +30017,2959,psychology,1438730483 +30017,2959,satirical,1438730506 +30017,2959,social commentary,1438730490 +30017,2959,surreal,1438730494 +30017,2959,twist ending,1438730479 +30017,6377,children,1439590270 +30017,6377,Disney,1439590263 +30017,6754,Dark,1438730239 +30017,6754,gothic,1438730235 +30017,6754,heroine in tight suit,1438730232 +30017,6754,vampire,1438730224 +30017,6754,vampires,1438730213 +30017,6754,werewolves,1438730221 +30017,8914,clever,1439590377 +30017,8914,Complicated,1439590371 +30017,8914,mindfuck,1439590369 +30017,8950,psychology,1439590038 +30017,8950,twist ending,1439590035 +30017,58559,Atmospheric,1438730438 +30017,58559,Batman,1438730446 +30017,58559,dark,1438730433 +30017,58559,superhero,1438730430 +30017,58559,thriller,1438730442 +30017,67255,based on a book,1438729698 +30017,67255,dark,1438729680 +30017,67255,Noomi Rapace,1438729690 +30017,67255,Nudity (Topless - Notable),1438729708 +30017,79132,alternate reality,1438730379 +30017,79132,sci-fi,1438730388 +30017,79132,thought-provoking,1438730384 +30017,79132,visually appealing,1438730381 +30017,96588,acapella,1439590223 +30017,96588,music,1439590218 +30017,103727,Dark,1438730101 +30017,103727,Future,1438730109 +30017,103727,post-apocalyptic,1438730096 +30017,103727,Sci-Fi,1438730112 +30017,105355,bittersweet,1439589997 +30017,105355,coming of age,1439590012 +30017,105355,nudity (full frontal),1439590009 +30017,105355,realism,1439590014 +30017,105355,unsimulated sex,1439590005 +30017,106542,emotional,1439590403 +30017,106542,love,1439590406 +30017,107406,dystopia,1438730063 +30017,107406,post-apocalyptic,1438730066 +30017,107406,social commentary,1438730076 +30017,109853,cute!,1439590619 +30024,260,classic,1437006220 +30024,260,essential,1437006253 +30026,1225,true story,1145582096 +30053,260,adventure,1431965862 +30053,260,sci-fi,1431965854 +30054,8644,"A.I., sci-fi",1443962922 +30054,101864,adventure,1433738977 +30054,101864,interesting concept,1433738954 +30054,101864,sci-fi,1433738961 +30054,115713,"A.I., sci-fi",1443962898 +30062,260,sci-fi,1433643015 +30062,260,spielberg/lucas,1433643001 +30093,6765,Diane Lane,1298603682 +30093,6765,realistic,1298603704 +30093,6765,romance,1298603652 +30093,6765,Sandra Oh,1298603681 +30093,6765,scenic,1298603631 +30093,8533,great ending,1292455574 +30093,8533,PG-13,1292455562 +30093,8533,Romance,1292455572 +30093,8533,sad,1292455570 +30093,8533,sentimental,1292455580 +30101,7151,Colin Firth,1213379078 +30101,55253,World War II,1219598843 +30106,165,Bruce Willis,1183034676 +30106,296,see samuel l jackson in big afro,1427963116 +30106,296,see uma thurman and john travolta dance,1427963116 +30106,296,tarantinos film about murder and dance,1427963116 +30106,379,Jean Claude van Damme,1186089872 +30106,379,Mia Sara,1186089872 +30106,2497,romance,1190399201 +30106,5753,Gota kanal,1186089703 +30106,8905,Add...d actors,1408200411 +30106,8905,fantastic music,1408200432 +30108,912,black and white,1319977155 +30108,912,classic,1319977155 +30108,912,quotes,1319977155 +30108,1089,crime,1319976997 +30108,1089,humourous,1319976997 +30108,1089,music,1319976997 +30108,1089,quentin tarantino,1319976997 +30108,1089,violence,1319976997 +30108,3556,atmospheric,1307352807 +30108,3556,great book adaptation,1307352807 +30108,3556,sad,1307352807 +30108,3556,Sofia Coppola,1307352807 +30108,3556,soundtrack,1307352807 +30108,3556,suicide,1307352807 +30108,4235,drama,1319977186 +30108,4235,spanish,1319977186 +30108,4235,violence,1319977186 +30108,4973,cinematography,1319977224 +30108,4973,jeunet,1319977224 +30108,4973,music,1319977224 +30108,4973,romance,1319977224 +30108,5613,musical,1324323450 +30108,6711,Bill Murray,1307352840 +30108,6711,funny,1307352840 +30108,6711,music,1319976857 +30108,6711,Scarlett Johansson,1307352840 +30108,6711,Sofia Coppola,1307352840 +30108,6711,sparse dialogue,1307352840 +30108,7361,charlie kaufmann,1319976909 +30108,7361,intelligent,1319976909 +30108,7361,Kate Winslett,1319976909 +30108,7361,michel gondry,1319976909 +30108,7361,psychology,1319976909 +30108,8981,Natalie Portman,1319977092 +30108,8981,psychology,1319977092 +30108,9010,cinematography,1329330293 +30108,9010,cruel characters,1329330302 +30108,9010,french,1329330293 +30108,33880,artistic,1319977051 +30108,33880,quirky,1319977051 +30108,33880,sad,1319977051 +30108,33880,thoughtful,1319977051 +30108,38886,intimate,1319976959 +30108,38886,kid's perspective,1319976959 +30108,38886,separation,1319976959 +30108,45880,atmospheric,1307352921 +30108,45880,cinematography,1307352921 +30108,45880,Sofia Coppola,1307352921 +30108,45880,soundtrack,1307352921 +30108,55444,black and white,1319977134 +30108,55444,cinematography,1319977134 +30108,55444,music,1319977134 +30108,55444,subjective biography,1319977134 +30108,56095,cinematography,1330376722 +30108,56095,uruguay,1330376722 +30108,59519,chronology,1324323520 +30108,59519,cinematography,1324323520 +30108,59519,joachiem trier,1324323520 +30108,59519,music,1324323520 +30108,59519,psychosis,1324323520 +30108,59519,trier family,1324323520 +30108,59519,unsatisfying ending,1324323520 +30108,59519,writers,1324323520 +30108,61236,Hebrew,1307352880 +30108,61236,psychological,1307352880 +30108,61236,war,1307352880 +30108,64969,jim carrey,1319977260 +30108,64969,postivity,1319977260 +30108,64969,zoeey deschanel,1319977260 +30108,69757,artwork,1319976593 +30108,69757,jospeh gorden-levitt,1319976592 +30108,69757,zoeey deschanel,1319976592 +30108,77854,creativity,1307352764 +30108,77854,funny,1307352764 +30108,77854,Michel Gondry,1307352764 +30108,80553,Allen Ginsberg,1307353006 +30108,80553,beat generation,1307353010 +30108,80553,poetry,1307352998 +30108,80553,soundtrack,1307353026 +30108,86320,acting,1319976823 +30108,86320,big themes,1319976822 +30108,86320,Charlotte Gainsburg,1319976823 +30108,86320,cinematography,1319976822 +30108,86320,closed space,1319976823 +30108,86320,Kiefer Sutherland,1319976822 +30108,86320,Kirsten Dunst,1319976823 +30108,86320,metaphoric images,1319976823 +30108,86320,metaphors,1319976822 +30108,86320,music,1319976822 +30108,86320,sense of futility,1319976822 +30108,86833,baking,1319976530 +30108,86898,big themes,1319977319 +30108,86898,intimate,1319977319 +30108,86898,surreal,1319977319 +30108,88179,organic cafe,1329330193 +30108,88179,too fast,1329330226 +30108,90376,color use,1325544421 +30108,90376,metaphors,1325544419 +30108,90376,psychological,1325544421 +30108,90376,robin hood reference,1325544416 +30108,90376,tilda swinton,1325544421 +30108,90376,unfitting soundtrack,1325544419 +30108,91325,book adaptation,1332184960 +30108,91325,images,1332184961 +30108,91325,sentimental,1332184960 +30119,349,Action Scenes,1380481582 +30119,1517,boring,1403642944 +30119,1610,patriotism,1379103750 +30119,2176,atmospheric,1378501762 +30119,2176,dialogue,1378501762 +30119,2176,suspense,1378501762 +30119,2640,Gene Hackman,1378714648 +30119,2640,humorous,1378714663 +30119,3052,cheesy ending,1378934625 +30119,3052,too long,1378934625 +30119,3198,character development,1403319436 +30119,3198,music,1403319409 +30119,3256,bad ending,1380055308 +30119,3527,cliche,1380568074 +30119,5914,Errol Morris,1422334593 +30119,8644,Boring,1421090075 +30119,8644,Sexist,1421090089 +30119,8644,Stupid,1421090078 +30119,8914,indie,1378071411 +30119,8914,mindfuck,1378071411 +30119,8914,thought-provoking,1378071411 +30119,34405,cliche,1378843543 +30119,34405,too long,1378843558 +30119,34405,unnecessary action scenes,1378843583 +30119,44974,controversial,1421252505 +30119,44974,Ellen Page,1421252501 +30119,44974,intense,1421252507 +30119,46530,Kevin Spacey,1377896701 +30119,51540,investigative journalism,1424727580 +30119,51540,obsession,1424727582 +30119,52722,stupid main character,1380225300 +30119,52722,Tobey Maguire,1380225300 +30119,53318,narration,1379017766 +30119,55908,dialogue,1379281491 +30119,55908,preachy,1379281480 +30119,59126,one-sided,1363635681 +30119,59126,subjective,1363635668 +30119,59126,unfair,1363635672 +30119,60040,Liv Tyler,1380918671 +30119,60040,stupid plot,1380918661 +30119,68073,historically inaccurate,1431827808 +30119,68073,Richard Curtis,1431827815 +30119,76173,unengaging plot,1396300923 +30119,83976,Rob Brydon,1409321148 +30119,89864,cliche,1401723018 +30119,89864,rated-R,1401723018 +30119,97726,absurd,1377983894 +30119,97726,John Cleese,1377983873 +30119,98154,Daniel Day-Lewis,1378327006 +30119,98154,history,1378327006 +30119,101864,sentimental,1377809653 +30119,101864,Tom Cruise,1377809653 +30119,102445,predictable,1377720408 +30119,103249,chase scenes,1379966743 +30119,103335,poor plot,1387297575 +30119,104078,hillarious,1409321005 +30119,104841,space,1381724534 +30119,105835,cinematography,1402425190 +30119,106489,too much action,1390791290 +30119,107406,boring,1397957447 +30119,107406,heavy-handed,1397957486 +30119,107406,stupid plot,1397957486 +30119,109374,meaningless formalism,1402325864 +30119,109374,obsession,1402325864 +30119,109374,poor plot,1402325864 +30119,111113,boring,1409370237 +30119,111113,not funny,1409370237 +30119,111113,stupid,1409370237 +30119,111781,stupid,1447398782 +30119,114046,narration,1410665295 +30119,114046,performances,1410665279 +30119,114046,Philip Seymour Hoffman,1410665259 +30119,114342,relationship drama,1424724247 +30119,114678,colonial view,1422334742 +30119,116797,character development,1426389986 +30119,116797,history,1426391236 +30119,122892,Boring,1442183586 +30119,124859,pompous,1429413932 +30132,101864,atmospheric,1420664711 +30132,101864,dystopia,1420664717 +30132,101864,post-apocalyptic,1420664707 +30132,113188,post-apocalyptic,1420662507 +30132,121141,canadian wilderness,1421781373 +30132,121141,plane crash,1421781373 +30132,121141,survival,1421781373 +30141,7,remake,1219264646 +30141,7,romance,1219264644 +30141,316,jb's dvds,1206624113 +30141,356,jb's dvds,1206623710 +30141,500,jb's dvds,1206623892 +30141,541,jb's dvds,1206623772 +30141,589,jb's dvds,1206623597 +30141,750,classic,1219264088 +30141,750,dark comedy,1219264077 +30141,750,satire,1219264079 +30141,920,classic,1219264403 +30141,920,Oscar (Best Picture),1219264397 +30141,1097,jb's dvds,1206623957 +30141,1288,classic,1219264461 +30141,1288,mockumentary,1219264457 +30141,1374,kaaaaaaaaaaaaaaahn!!!!,1219264152 +30141,2115,jb's dvds,1206624150 +30141,2791,jb's dvds,1206623926 +30141,3448,Robin Williams,1219264130 +30141,4878,jb's dvds,1206623635 +30141,6863,jb's dvds,1206623822 +30141,8644,jb's dvds,1206624111 +30141,33166,jb's dvds,1206623848 +30141,35836,jb's dvds,1206623728 +30141,52722,Marvel,1219264105 +30141,52722,superhero,1219264098 +30162,5954,Edward Norton,1224926167 +30205,29,sci-fi,1186414638 +30205,671,comedy,1186414690 +30205,720,comedy,1186414651 +30205,1120,drama,1186414602 +30205,1249,action,1186414603 +30205,1339,horror,1186414604 +30205,1343,horror,1186414603 +30205,2391,drama,1186414672 +30205,2478,comedy,1186414706 +30205,3911,comedy,1186414572 +30205,4447,comedy,1186414674 +30205,4848,drama,1186414673 +30205,6934,sci-fi,1186414646 +30205,7147,drama,1186414627 +30205,8622,documentary,1186414687 +30210,260,classic sci-fi,1432738724 +30210,260,sci-fi,1432738717 +30223,52644,gore,1320824009 +30223,52644,unusual,1320824009 +30223,55737,blood,1436044795 +30223,55737,gore,1436044799 +30223,55737,Horror,1436044785 +30223,55737,indie,1436044772 +30223,60941,gore,1320823751 +30223,62203,atmospheric,1320823850 +30223,62203,no sequel,1320823850 +30223,62203,unusual,1320823850 +30223,70887,horror,1436044392 +30223,70887,snuff,1436044392 +30223,70887,thriller,1436044392 +30223,87869,Funny,1320823971 +30223,87869,sexual,1320823971 +30223,110897,comedy,1436044700 +30223,110897,lame,1436044693 +30223,110897,not funny,1436044712 +30223,116397,Thriller,1436044668 +30223,121231,Supernatural,1436044465 +30223,128542,blood,1436045112 +30223,128542,gore,1436045117 +30223,129354,comedy,1436045037 +30223,129354,con,1436045045 +30223,130448,horror,1436044579 +30223,130448,poltergeist,1436044606 +30252,86882,Paris,1418744536 +30259,32,Bruce Willis,1374231908 +30259,32,post-apocalyptic,1374231910 +30259,32,time travel,1374231912 +30259,32,twist ending,1374231913 +30259,541,cyberpunk,1374231758 +30259,541,dystopia,1374231761 +30259,541,philosophical,1374231764 +30259,1089,Quentin Tarantino,1374232648 +30259,1127,thought-provoking,1374435045 +30259,1127,Underrated,1374435047 +30259,1206,dystopia,1374250262 +30259,1206,social commentary,1374250269 +30259,1206,Stanley Kubrick,1374250266 +30259,1527,Bruce Willis,1374231783 +30259,1527,humorous,1374231793 +30259,1527,Milla Jovovich,1374231781 +30259,1527,surreal,1374231789 +30259,1625,atmospheric,1374243613 +30259,1625,Mystery,1374243615 +30259,1625,psychological,1374243609 +30259,1682,dystopia,1374232000 +30259,1682,Jim Carrey,1374232003 +30259,1682,social commentary,1374232002 +30259,1748,dystopia,1374231980 +30259,1748,steampunk,1374231990 +30259,1748,surreal,1374231982 +30259,1748,thought-provoking,1374231984 +30259,1994,frightening,1374358004 +30259,1994,haunted house,1374358008 +30259,1994,suspense,1374358013 +30259,2167,Badass,1374231567 +30259,2167,comic book,1374231560 +30259,2167,vampires,1374231558 +30259,2571,cyberpunk,1374231694 +30259,2571,dystopia,1374231696 +30259,2571,philosophy,1374231703 +30259,2571,surreal,1374231701 +30259,2571,thought-provoking,1374231700 +30259,2959,atmospheric,1374243366 +30259,2959,disturbing,1374243378 +30259,2959,philosophy,1374243371 +30259,2959,psychology,1374243370 +30259,2959,social commentary,1374243368 +30259,2959,surreal,1374243373 +30259,2959,twist ending,1374243374 +30259,2959,violence,1374243376 +30259,3300,suspense,1374435105 +30259,3300,villain as hero,1374435112 +30259,3535,based on book,1374083771 +30259,3917,atmosphere,1374084908 +30259,3917,occult,1374084919 +30259,4344,hacking,1374346535 +30259,4370,Bittersweet,1374250359 +30259,4370,depressing,1374250361 +30259,4370,dystopia,1374250358 +30259,4370,fairy tale,1374250363 +30259,4370,Saturn Award (Best Performance by a Younger Actor),1374250373 +30259,4878,philosophy,1374231940 +30259,4878,surreal,1374231936 +30259,4878,thought-provoking,1374231935 +30259,5574,car chase,1374346583 +30259,5574,cars,1374346584 +30259,5588,disturbing,1374084876 +30259,5588,rape,1374084865 +30259,5679,disturbing,1374357805 +30259,5679,suspense,1374357797 +30259,5891,disturbing,1374346703 +30259,5891,rape,1374346698 +30259,5891,revenge,1374346700 +30259,5903,Amazing Cinematography,1374231671 +30259,5903,Christian Bale,1374231667 +30259,5903,dystopia,1374231668 +30259,5903,post-apocalyptic,1374231664 +30259,5903,thought-provoking,1374231680 +30259,5903,totalitarianism,1374231673 +30259,6040,predictable,1374357926 +30259,6290,Rob Zombie,1374346777 +30259,6365,alternate reality,1374250299 +30259,6365,car chase,1374250340 +30259,6365,cyberpunk,1374250314 +30259,6365,dystopia,1374250316 +30259,6365,magic,1374250331 +30259,6365,Post apocalyptic,1374250294 +30259,6365,sequel,1374250320 +30259,6365,thought-provoking,1374250296 +30259,7439,better than expected,1374231535 +30259,7439,comic book,1374231532 +30259,7439,violence,1374231544 +30259,8947,ghosts,1374357863 +30259,8947,haunting,1374357866 +30259,8947,Sarah Michelle Gellar,1374357858 +30259,8947,scary,1374357875 +30259,8950,Christian Bale,1374243515 +30259,8950,depressing,1374243527 +30259,8950,disturbing,1374243517 +30259,8950,powerful ending,1374243521 +30259,8950,schizophrenia,1374243519 +30259,8950,twist ending,1374243524 +30259,27772,atmospheric,1374357822 +30259,27772,Creepy kid,1374357835 +30259,27772,paranormal,1374357828 +30259,27773,depressing,1374243547 +30259,27773,disturbing,1374243545 +30259,27773,revenge,1374243544 +30259,36519,unrealistic,1374346622 +30259,42723,Disappointing,1374084753 +30259,42723,disturbing,1374084786 +30259,42723,Nudity (Topless),1374084777 +30259,42723,soft porn,1374084780 +30259,42723,stupid,1374084761 +30259,44191,comic book,1374231650 +30259,44191,dystopia,1374231652 +30259,44191,politics,1374231647 +30259,44191,thought-provoking,1374231649 +30259,44397,disturbing,1374084838 +30259,44397,predictable,1374084821 +30259,44397,rape,1374084810 +30259,44397,torture porn,1374084804 +30259,47997,dystopia,1374250211 +30259,47997,social commentary,1374250214 +30259,47997,thought provoking,1374250220 +30259,47997,Underrated,1374250227 +30259,48774,apocalypse,1374250187 +30259,48774,dystopia,1374250188 +30259,48774,Religion,1374250200 +30259,48774,thought-provoking,1374250190 +30259,51662,action,1374231618 +30259,51662,artistic,1374231624 +30259,51662,atmospheric,1374231621 +30259,51662,comic book,1374231622 +30259,51662,stylized,1374231620 +30259,60072,Angelina Jolie,1374231594 +30259,60072,silly,1374231603 +30259,60072,unintentional comedy,1374231599 +30259,60072,unrealistic action,1374231600 +30259,60684,comic book,1374231522 +30259,60684,dystopia,1374231508 +30259,60684,social commentary,1374231512 +30259,60684,superhero,1374231514 +30259,60684,visually appealing,1374231516 +30259,64030,stupid,1374346609 +30259,64030,unrealistic,1374346606 +30259,68157,Quentin Tarantino,1374232595 +30259,68237,depressing,1374231968 +30259,68237,dystopia,1374231958 +30259,68237,plot twist,1374231960 +30259,68237,psychology,1374231956 +30259,68237,twist ending,1374231962 +30259,70286,social commentary,1374231813 +30259,72998,thought-provoking,1374435006 +30259,73321,Bible,1374232085 +30259,73321,christian propaganda,1374232114 +30259,73321,Christianity,1374232088 +30259,73321,dystopia,1374232105 +30259,73321,fight scenes,1374232122 +30259,73321,plot holes,1374232091 +30259,73321,religion,1374232097 +30259,73321,violence,1374232130 +30259,74458,atmospheric,1374243582 +30259,74458,insanity,1374243583 +30259,74458,psychological,1374243579 +30259,74731,dystopia,1374357739 +30259,74731,dystopian future,1374357716 +30259,77427,disturbing,1374346757 +30259,79132,alternate reality,1374231730 +30259,79132,philosophy,1374231739 +30259,79132,surreal,1374231731 +30259,79132,thought-provoking,1374231736 +30259,79132,twist ending,1374231743 +30259,81562,cinematography,1374611684 +30259,81562,intense,1374611692 +30259,81562,loneliness,1374611703 +30259,81562,psychology,1374611700 +30259,81562,true story,1374611687 +30259,81591,atmospheric,1374243457 +30259,81591,dark,1374243459 +30259,81591,disturbing,1374243484 +30259,81591,lesbian,1374243466 +30259,81591,Mother,1374243476 +30259,81591,surreal,1374243474 +30259,93610,dystopia,1374250242 +30259,94864,plot hole,1374435080 +30259,94864,predictable,1374435064 +30259,99114,Leonardo DiCaprio,1374232629 +30259,99114,Quentin Tarantino,1374232617 +30259,99114,violence,1374232623 +30259,101088,beautiful,1374687328 +30259,101088,psychological thriller,1374687324 +30259,103299,canadian movie,1374687372 +30259,103299,creative,1374687353 +30259,103299,soundtrack,1374687385 +30268,260,fantasy,1434569952 +30268,260,space action,1434569946 +30376,1722,007,1442758131 +30376,2028,action,1442758514 +30376,2028,violent,1442758512 +30376,2028,war,1442758509 +30376,3578,history,1442758425 +30376,3578,violent,1442758429 +30376,5872,action,1442758110 +30376,49272,action,1442757997 +30376,63113,007 (series),1442758081 +30376,63113,action,1442758084 +30376,63113,Daniel Craig,1442758076 +30376,63113,James Bond,1442758078 +30376,69122,comedy,1442759056 +30376,102686,comedy,1442759092 +30390,1073,Gene Wilder,1266343965 +30390,1073,Johnny Depp,1266343960 +30426,32,Bad acting,1297410764 +30426,32,Orange Ponytail,1297410785 +30426,32,Stupid,1297410768 +30426,5882,Joseph Gordon-Levitt,1325556817 +30426,6711,Hamfisted,1297453363 +30426,6891,Gay,1313552704 +30426,6891,Sara Rue,1313552710 +30426,48394,Psychology,1294036285 +30426,48394,Spain,1294036277 +30426,48394,World War II,1294036267 +30426,71379,Boring,1312523205 +30426,74275,gay,1298151732 +30426,79800,forget,1313469508 +30426,79800,forgive,1313469505 +30426,79800,paul reubens,1313469513 +30426,81456,The Knife,1318396087 +30426,85796,Satire,1307492844 +30426,86642,Mumblecore,1318351707 +30426,86642,Trieste Kelly Dunn,1318351721 +30426,86642,Unpredictable,1318351715 +30426,86882,Bad Acting,1316239132 +30426,86882,Boring,1316239142 +30426,86882,Fucktarded,1316239174 +30426,86882,Horrible,1316239127 +30426,86882,Implausible,1316239156 +30426,86882,Owen Wilson,1316239135 +30426,86882,Retarded,1316239149 +30426,86882,Stupid,1316239145 +30426,86882,Ugly,1316239138 +30426,86898,theism,1326041945 +30426,86898,too much religion,1326041943 +30438,2762,horror,1441754519 +30438,73290,dog,1441748753 +30448,288,dark comedy,1283308248 +30448,920,Classic,1283307601 +30448,1345,Classic,1283307804 +30448,48304,subtitles,1283562250 +30465,50160,Ewan McGregor,1169501118 +30501,20,worthwhile,1187431528 +30501,413,waste of time,1187431416 +30501,419,classic remake,1187431510 +30501,546,video game,1187431460 +30501,671,hillarious,1187431361 +30501,954,black and white,1187431454 +30501,1091,goofy,1187431488 +30501,1298,music video,1187431429 +30501,1589,drama,1187431447 +30501,1717,parody,1187431371 +30501,1892,awesome,1187431535 +30501,1892,douglas,1187431551 +30501,1892,paltrow,1187431551 +30501,1892,suspenseful,1187431551 +30501,1894,boring,1187431485 +30501,2133,worth watching,1187431497 +30501,2384,lighthearted,1187431474 +30501,2423,national lampoon,1187431441 +30501,2662,classic,1187431516 +30501,2953,funny,1187431396 +30501,3113,thriller,1187431478 +30501,3263,sports,1187431463 +30501,3617,college,1187431368 +30501,3916,sports,1187431364 +30501,4975,boring,1187431374 +30501,6218,soccer,1187431386 +30501,6373,Carrey,1187431421 +30501,8622,misrepresentation,1187431353 +30504,421,Peter Cook,1254495120 +30504,1197,Peter Cook,1254494526 +30504,3877,Peter Cook,1254494939 +30504,4562,Peter Cook,1254495023 +30504,4599,Peter Cook,1254495083 +30504,7708,Peter Cook,1254494210 +30504,26388,Peter Cook,1254494804 +30504,26495,Peter Cook,1254494875 +30524,331,mental illness,1368026962 +30524,422,thriller,1368027240 +30524,747,stupid,1368027189 +30524,999,ensemble cast,1368026790 +30524,1069,mystery,1368026983 +30524,1957,inspirational,1368026910 +30524,2431,inspirational,1368026910 +30524,2443,ensemble cast,1368026790 +30524,2461,franchise,1368026857 +30524,2483,dark,1368026763 +30524,2583,ensemble cast,1368026790 +30524,2806,high school,1368026882 +30524,3015,tense,1368027207 +30524,3071,inspirational,1368026910 +30524,3088,mental illness,1368026962 +30524,3230,nazis,1368027021 +30524,3690,franchise,1368026857 +30524,3822,black and white,1368026585 +30524,4029,ensemble cast,1368026790 +30524,4043,father-son relationship,1368026841 +30524,4068,high school,1368026881 +30524,4212,mystery,1368026983 +30524,4251,violent,1368027262 +30524,4345,ensemble cast,1368026790 +30524,4347,nazis,1368027021 +30524,4432,black and white,1368026585 +30524,4640,violent,1368027262 +30524,4769,nazis,1368027021 +30524,4845,stupid,1368027189 +30524,4947,police,1368027153 +30524,4969,mystery,1368026983 +30524,5021,ensemble cast,1368026790 +30524,5501,stupid,1368027189 +30524,5564,high school,1368026881 +30524,5585,stupid,1368027189 +30524,6185,police,1368027153 +30524,6216,nazis,1368027021 +30524,6260,christianity,1368026653 +30524,6371,franchise,1368026857 +30524,6630,christianity,1368026653 +30524,6875,nudity (topless - notable),1368027042 +30524,6896,nazis,1368027021 +30524,6981,christianity,1368026653 +30524,7223,mystery,1368026983 +30524,7235,violent,1368027262 +30524,7241,nazis,1368027021 +30524,7831,mystery,1368026983 +30524,7834,mystery,1368026983 +30524,8207,tense,1368027206 +30524,8207,thriller,1368027240 +30524,25769,father-son relationship,1368026841 +30524,26003,black and white,1368026585 +30524,26122,dark,1368026763 +30524,27309,nudity (topless - notable),1368027042 +30524,27700,violent,1368027262 +30524,27721,oscar (best cinematography),1368027080 +30524,30812,mental illness,1368026962 +30524,30846,mental illness,1368026962 +30524,31225,inspirational,1368026910 +30524,31952,dark,1368026763 +30524,38994,nudity (topless - notable),1368027042 +30524,44193,high school,1368026881 +30524,47122,high school,1368026882 +30524,50798,stupid,1368027189 +30524,57528,violent,1368027262 +30524,57532,stupid,1368027189 +30524,62792,police,1368027153 +30524,63436,franchise,1368026857 +30524,67923,franchise,1368026857 +30524,72998,Especial effects and visuals,1262029783 +30524,72998,Improvident unwise imbecile liberal message,1262029783 +30524,78637,franchise,1368026857 +30524,79091,pixar,1368027139 +30524,87304,father-son relationship,1368026841 +30524,99114,violent,1368027262 +30524,104823,clever moments,1378907453 +30524,104823,funny moments,1378907459 +30524,104823,human relationship,1429631090 +30524,104823,inspirational,1378907490 +30524,104823,musical,1429631099 +30524,104823,uplifting,1429631094 +30526,17,Sven's to see list,1214944808 +30526,47,Ashley Judd,1186508886 +30526,296,los angeles,1427385906 +30526,296,non-linear,1427385906 +30526,296,quentin tarantino,1427385906 +30526,390,Sven's to see list,1214943600 +30526,680,Sven's to see list,1214943501 +30526,922,Sven's to see list,1214941929 +30526,1149,Can't stand Godard!,1161624004 +30526,1232,Sven's to see list,1214944965 +30526,1263,Sven's to see list,1214944674 +30526,1305,Dean Stockwell,1250866904 +30526,1305,Harry Dean Stanton,1250866904 +30526,1305,Nastassja Kinski,1250866904 +30526,1305,pacing,1250866904 +30526,1305,soundtrack,1250866904 +30526,1572,library vhs,1236866095 +30526,1885,Sven's to see list,1214944818 +30526,1897,Sven's to see list,1252683015 +30526,1964,Sven's to see list,1214944067 +30526,2105,Sven's to see list,1214944701 +30526,2130,Sven's to see list,1214944881 +30526,2511,Sven's to see list,1214944192 +30526,2664,Sven's to see list,1214942190 +30526,2890,Sven's to see list,1214945088 +30526,2932,Sven's to see list,1214944652 +30526,2983,Sven's to see list,1214943525 +30526,3075,Sven's to see list,1214943490 +30526,3091,Sven's to see list,1214944890 +30526,3415,Sven's to see list,1214944574 +30526,3546,Sven's to see list,1214943442 +30526,3637,Sven's to see list,1214944871 +30526,3645,Sven's to see list,1214943410 +30526,3702,Sven's to see list,1214944687 +30526,3703,Sven's to see list,1214944692 +30526,3736,Sven's to see list,1214941977 +30526,4072,Sven's to see list,1214945208 +30526,4235,Sven's to see list,1214945219 +30526,4334,Sven's to see list,1214945230 +30526,4347,millenial foreign comedies to see,1220538037 +30526,4422,Erland Josephson,1254922892 +30526,4422,Liv Ullmann,1254922892 +30526,4426,Sven's to see list,1214942203 +30526,4708,Sven's to see list,1214943665 +30526,4741,millenial foreign comedies to see,1220538162 +30526,4855,Sven's to see list,1214944077 +30526,4932,Sven's to see list,1214944976 +30526,4996,millenial foreign comedies to see,1220537909 +30526,5000,Sven's to see list,1214943985 +30526,5013,English-language millenial comedies,1220537994 +30526,5013,Sven's to see list,1214945167 +30526,5056,Sven's to see list,1214944344 +30526,5121,Sven's to see list,1214944638 +30526,5184,Sven's to see list,1214944956 +30526,5327,Sven's to see list,1214945198 +30526,5426,Sven's to see list,1215004829 +30526,5488,Sven's to see list,1214943645 +30526,5525,millenial foreign comedies to see,1220538197 +30526,5607,millenial foreign comedies to see,1220538013 +30526,5712,Sven's to see list,1214945058 +30526,5763,Sven's to see list,1214945026 +30526,5788,English-language millenial comedies,1220537738 +30526,5788,Sven's to see list,1220537483 +30526,5909,millenial foreign comedies to see,1220538020 +30526,5963,Sven's to see list,1214943400 +30526,6021,Sven's to see list,1214944626 +30526,6031,Sven's to see list,1214943372 +30526,6118,Sven's to see list,1214944748 +30526,6126,Sven's to see list,1214944910 +30526,6247,Sven's to see list,1214944006 +30526,6257,Sven's to see list,1214943878 +30526,6286,millenial foreign comedies to see,1220537925 +30526,6339,millenial foreign comedies to see,1220537948 +30526,6542,millenial foreign comedies to see,1220538050 +30526,6618,millenial foreign comedies to see,1220537667 +30526,6639,Sven's to see list,1214943858 +30526,6669,Sven's favorite films,1214945444 +30526,6731,Sven's to see list,1214944832 +30526,6774,Sven's to see list,1214945046 +30526,6776,millenial foreign comedies to see,1220538177 +30526,6896,Sven's to see list,1214944928 +30526,6979,Sven's to see list,1214944709 +30526,7069,Sven's to see list,1214944085 +30526,7130,Sven's to see list,1214943514 +30526,7199,English-language millenial comedies,1220538080 +30526,7396,acting,1248282760 +30526,7883,Sven's to see list,1214941860 +30526,7924,Sven's to see list,1214941891 +30526,7925,Sven's to see list,1214943312 +30526,7979,Sven's to see list,1214943890 +30526,8012,millenial foreign comedies to see,1220538089 +30526,8189,Sven's to see list,1214943389 +30526,8239,In Netflix queue,1160576582 +30526,8370,millenial foreign comedies to see,1220537940 +30526,8602,Sven's to see list,1214943362 +30526,8620,Sven's to see list,1214943432 +30526,8656,Sven's to see list,1214944733 +30526,8751,Sven's to see list,1214941902 +30526,8754,Sven's to see list,1214943976 +30526,8845,Sven's to see list,1214944756 +30526,8848,Sven's to see list,1214942020 +30526,8879,Sven's to see list,1214944500 +30526,8980,Sven's to see list,1214945187 +30526,25763,Sven's to see list,1215032363 +30526,25963,Sven's to see list,1214941953 +30526,26064,Sven's favorite films,1214945410 +30526,26116,Sven's to see list,1214943562 +30526,26151,Sven's to see list,1214943611 +30526,26211,Sven's to see list,1214944031 +30526,26318,Sven's to see list,1214944297 +30526,26350,Sven's to see list,1214944543 +30526,27773,best of 2005,1137597879 +30526,30850,English-language millenial comedies,1220538184 +30526,31364,millenial foreign comedies to see,1220538007 +30526,31435,English-language millenial comedies,1220538142 +30526,31522,Sven's to see list,1214944997 +30526,31588,Sven's to see list,1214942007 +30526,33166,overrated,1206551644 +30526,33603,millenial foreign comedies to see,1220538203 +30526,33649,English-language millenial comedies,1220538154 +30526,33649,lesbian,1220538147 +30526,33834,Sven's to see list,1214944843 +30526,36537,best of 2005,1144084284 +30526,38886,English-language millenial comedies,1220537982 +30526,40870,millenial foreign comedies to see,1220538066 +30526,41863,Sven's to see list,1214945097 +30526,42900,Sven's to see list,1214945995 +30526,44694,millenial foreign comedies to see,1220538100 +30526,44694,Sven's to see list,1214945139 +30526,50229,Sven's to see list,1214943869 +30526,50259,Sven's to see list,1214945105 +30526,50842,millenial foreign comedies to see,1220538315 +30526,55253,Nudity (Full Frontal - Notable),1219775831 +30526,55805,Albert Finney,1245101278 +30526,55805,Ethan Hawke,1245101324 +30526,55805,Marisa Tomei,1245101278 +30526,55805,Nudity (Topless),1245101324 +30526,55805,Philip Seymour Hoffman,1245101278 +30526,55805,Sidney Lumet,1245101324 +30526,56333,English-language millenial comedies,1220538030 +30526,57243,millenial foreign comedies to see,1220538044 +30526,57550,Sven's to see list,1214944561 +30526,58490,English-language millenial comedies,1220538191 +30526,58998,English-language millenial comedies,1220538169 +30526,59018,English-language millenial comedies,1220537962 +30526,59141,English-language millenial comedies,1220538058 +30532,260,future,1436084863 +30532,260,space adventure,1436084875 +30546,59315,superhero,1438311853 +30546,109487,sci-fi,1438311891 +30565,260,fantasy,1439373100 +30565,260,Star Wars,1439373090 +30620,260,"action, scifi",1437016939 +30620,260,Quite suspensful,1437016933 +30624,919,adapted from:book,1313549717 +30624,919,AFI 100,1313549721 +30624,919,AFI 100 (Movie Quotes),1313549724 +30624,919,based on a book,1313549729 +30624,919,black and white,1313549733 +30624,919,classic,1313549736 +30624,919,dream,1313549739 +30624,919,dreamlike,1313549741 +30624,919,fantasy,1313549743 +30624,919,heartwarming,1313549745 +30624,919,Highly quotable,1313549747 +30624,919,imdb top 250,1313549749 +30624,919,music,1313549750 +30624,919,musical,1313549752 +30624,919,National Film Registry,1313549755 +30624,919,original,1313549758 +30624,919,queer,1313549761 +30624,919,tornado,1313549764 +30624,919,war,1313549768 +30624,919,witch,1313549771 +30624,1073,adapted from:book,1313549788 +30624,1073,based on a book,1313549793 +30624,1073,children,1313549795 +30624,1073,classic,1313549797 +30624,1073,colourful,1313549801 +30624,1073,cult film,1313549804 +30624,1073,England,1313549807 +30624,1073,espionage,1313549810 +30624,1073,family bonds,1313549815 +30624,1073,Fantasy,1313549817 +30624,1073,Gene Wilder,1313549819 +30624,1073,Heartwarming,1313549821 +30624,1073,Johnny Depp,1313549824 +30624,1073,musical,1313549827 +30624,1073,remade,1313549831 +30624,1073,Roald Dahl,1313549833 +30624,1073,seen more than once,1313549836 +30624,1073,surreal,1313549839 +30624,1073,whimsical,1313549841 +30624,1073,witty,1313549843 +30624,2530,"""damn dirty apes""",1314419097 +30624,2530,ACTION,1314419100 +30624,49274,11-5-2007,1318055637 +30624,49274,Antarctica,1318055642 +30624,60684,1980s,1313549856 +30624,60684,Adaptation,1313549859 +30624,60684,adapted from:comic,1313549861 +30624,60684,alan moore,1313549863 +30624,60684,alternate reality,1313549869 +30624,60684,based on a comic,1313549872 +30624,60684,cinematography,1313549874 +30624,60684,cold war,1313549877 +30624,60684,comic book,1313549880 +30624,60684,dystopia,1313549881 +30624,60684,full frontal nudity,1313549885 +30624,60684,music,1313549888 +30624,60684,nuclear war,1313549893 +30624,60684,Nudity (Topless),1313549894 +30624,60684,sci-fi,1313549899 +30624,60684,social commentary,1313549901 +30624,60684,stylized,1313549902 +30624,98552,christmas movie,1354431098 +30624,98552,Martin Freeman,1354431099 +30628,27608,Notable Nudity,1158466451 +30628,50447,Nudity (Full Frontal),1169865841 +30628,50794,Nudity (Topless),1169865686 +30642,224,Johnny Depp,1192477862 +30649,260,space adventure,1441861008 +30649,260,space opera,1441860998 +30663,318,dramat,1433715169 +30663,318,inspirational,1433715169 +30663,318,prison escape,1433715169 +30673,17,true love story,1361146351 +30673,296,drugs & music,1420155599 +30673,296,homosexuality,1420155599 +30673,296,masterpiece,1368417177 +30673,296,r:some violence,1420155599 +30673,356,good music,1420858385 +30673,356,inspirational,1420858385 +30673,356,tom hanks,1420858385 +30673,475,father-son relationship,1367036395 +30673,480,apocalyptic,1424549082 +30673,480,dinosaurs,1424549082 +30673,480,science fiction,1424549082 +30673,587,supernatural,1368417271 +30673,593,best performance: anthony hopkins as hannibal lecter,1421621951 +30673,593,cannibalism,1421621951 +30673,593,excellent script,1368417294 +30673,593,genius murder,1421621951 +30673,724,teen movie,1368417750 +30673,866,neo-noir,1368417812 +30673,1249,stylish,1368417461 +30673,1258,masterpiece,1368417177 +30673,1307,unlikely friendships,1368418069 +30673,1387,suspenseful,1368417771 +30673,1619,JOURNEY OF SELF-DISCOVERY,1356912884 +30673,1784,excellent script,1368417294 +30673,1968,teen movie,1368417750 +30673,2123,childhood classics,1363052681 +30673,2144,teen movie,1368417750 +30673,2291,original,1368416140 +30673,2420,mentor,1368417158 +30673,2762,great ending,1368417967 +30673,2863,musicians,1368417696 +30673,3005,detective,1368418080 +30673,3067,screwball comedy,1368418119 +30673,4018,women,1368417665 +30673,4878,original,1368416140 +30673,5693,dancing,1368417841 +30673,6986,fictional history,1356926541 +30673,6986,Jesus Christ,1356926541 +30673,7013,noir thriller,1368416816 +30673,7153,great ending,1368417967 +30673,34437,melancholic,1368416297 +30673,42723,splatter,1368417561 +30673,48304,brutality,1368417785 +30673,84954,Changing fate,1356925835 +30673,84954,surreal,1356925850 +30673,107978,relationships,1420233052 +30681,34405,adventure,1304830353 +30681,34405,assassin,1304830356 +30681,34405,black comedy,1304830371 +30681,34405,dystopia,1304830363 +30681,34405,sci-fi,1304830360 +30681,34405,space,1304830349 +30716,260,Every nerd should have seen more than once,1443836241 +30716,260,sci-fi,1443836230 +30732,46062,musical,1441542276 +30732,62912,high school,1441542291 +30732,68135,high school,1441542313 +30732,68135,Zac Efron,1441542310 +30733,32,different view,1235604759 +30733,1059,creative,1235604824 +30733,1059,different view,1235604806 +30733,4313,Art,1236118007 +30733,4313,WWII,1236117976 +30733,7147,creative,1236036493 +30733,7147,different view,1236036527 +30733,7147,outside the box,1236036504 +30733,44195,different view,1235605035 +30733,48997,creativity,1235604526 +30733,48997,different view,1235604572 +30733,52579,art,1235691975 +30733,52579,artist,1235691972 +30733,52579,creativity,1235691985 +30733,52579,different view,1235691994 +30733,61240,wtf,1244411938 +30733,62374,middle east,1235604128 +30733,62374,war,1235604248 +30733,63082,love,1235605117 +30735,6487,netflix,1180651271 +30735,6699,netflix,1180650891 +30735,7376,netflix,1180651217 +30735,8967,netflix,1180651230 +30735,27904,netflix,1180651243 +30735,33138,netflix,1180651248 +30735,33499,netflix,1180651051 +30735,33880,netflix,1180651032 +30735,34164,netflix,1180651107 +30735,34326,netflix,1180651145 +30735,34523,netflix,1180651089 +30735,34528,netflix,1180651258 +30735,36523,netflix,1180651124 +30735,36529,netflix,1180651029 +30735,36537,netflix,1180651235 +30735,37729,netflix,1180651275 +30735,38886,netflix,1180651044 +30735,39446,netflix,1180651078 +30735,40581,netflix,1180651069 +30735,41997,netflix,1180651035 +30735,42002,netflix,1180651072 +30735,42011,netflix,1180651220 +30735,42723,netflix,1180651149 +30735,44199,netflix,1180651020 +30735,46335,netflix,1180651054 +30735,47261,netflix,1180651540 +30735,47725,netflix,1180651699 +30735,48877,netflix,1180651062 +30735,49220,netflix,1180651103 +30735,50794,netflix,1180651239 +30735,50804,netflix,1180651530 +30735,50872,netflix,1186025406 +30735,51088,netflix,1180651141 +30735,51471,netflix,1180650879 +30735,52328,netflix,1186025579 +30735,53125,netflix,1180650715 +30735,53435,netflix,1186025501 +30735,53956,netflix,1191797729 +30735,54001,netflix,1187119954 +30735,54276,netflix,1190140273 +30735,54278,netflix,1193099539 +30735,54286,netflix,1186722260 +30735,54503,netflix,1191797582 +30735,54648,netflix,1191797591 +30735,54732,netflix,1190663821 +30735,54745,netflix,1191797638 +30735,54768,netflix,1191797562 +30735,54771,netflix,1192471694 +30735,54775,netflix,1190663814 +30735,54997,netflix,1191797572 +30735,54999,netflix,1190663779 +30735,55080,netflix,1193099511 +30735,55276,netflix,1192471559 +30736,501,bloggers,1376846605 +30736,838,aristocratic,1353282259 +30736,838,girly,1353282238 +30736,838,gossip,1353282244 +30736,838,village,1353282247 +30736,2360,anti-fascism,1440325674 +30736,2360,dogma95,1440325710 +30736,2360,fascism,1440325682 +30736,2360,methaphoric,1440325687 +30736,5515,bloggers,1376845896 +30736,6467,bloggers,1376846243 +30736,7068,bloggers,1376846324 +30736,7485,bloggers,1376846045 +30736,7745,bloggers,1376850260 +30736,8785,bloggers,1376845985 +30736,40591,bloggers,1376846548 +30736,42217,bloggers,1376846026 +30736,55901,bloggers,1376845903 +30736,59974,bloggers,1376850184 +30736,60990,bloggers,1376845930 +30736,63676,bloggers,1376846445 +30736,72491,bloggers,1376845957 +30736,79916,bloggers,1376850209 +30736,86762,bloggers,1376846640 +30736,88597,bloggers,1376846139 +30736,90357,bloggers,1376845765 +30736,90537,bloggers,1376846357 +30736,91906,bloggers,1376850284 +30736,93933,bloggers,1376845756 +30736,94733,bloggers,1376846720 +30736,96728,bloggers,1376846392 +30736,97423,bloggers,1376846071 +30736,108729,dystopia,1397390901 +30737,74530,Hollywood,1329178492 +30737,84090,Sad,1329178652 +30772,6187,death penalty,1440470397 +30772,6187,justice,1440470379 +30772,6187,law,1440470387 +30772,112552,drummer,1440471873 +30772,112552,education,1440471880 +30772,112552,jazz,1440471875 +30772,112552,practice,1440471878 +30805,82143,Alaska,1337239228 +30805,82143,DIY,1337239232 +30805,82143,nature,1337239234 +30805,82143,not available from Netflix,1337239247 +30805,82143,survivalist,1337239237 +30805,82143,wilderness,1337239241 +30805,90746,animation,1337238718 +30805,90746,dogs,1337238722 +30805,90746,friendship,1337238729 +30805,90746,story,1337238712 +30805,90746,treasure hunt,1337238725 +30814,1,kids,1433697609 +30814,1,light hearted,1433697609 +30814,1,whimsica,1433697609 +30814,260,1970s,1424472169 +30814,260,fantasy,1424472169 +30814,260,sci-fi,1424472169 +30814,593,fbi,1425335359 +30814,593,horror,1425335359 +30814,593,mystery,1425335359 +30814,115149,Action,1424534310 +30814,115149,Revenge,1424534283 +30814,115149,Willem Dafoe,1424534383 +30821,4896,harry potter,1442501213 +30821,134853,Animation,1442501135 +30821,134853,Pixar,1442501131 +30824,911,Bibliothek,1149772210 +30824,6650,multiple roles,1149433326 +30824,49822,Central Intelligence Agency,1168060020 +30833,1307,classic,1423976104 +30833,8376,quirky,1424570135 +30833,87234,great soundtrack,1423535231 +30833,106344,mel gibson,1424505066 +30833,106344,parody,1424505066 +30833,106344,so bad it's good,1424505066 +30833,119145,gentlemanly,1423904261 +30839,5903,matrix ripoff,1259414946 +30839,5903,plot,1259414952 +30853,25,loneliness,1216633460 +30853,25,love is not enough,1216633572 +30853,7439,better than expected,1150394189 +30853,39183,Love story,1157284191 +30862,260,epic,1439756626 +30862,260,sci-fi,1439756640 +30895,32,sci-fi,1251837538 +30895,32,Terry Gilliam,1251837538 +30895,50,Academy Award - Best Original Screenplay,1347770210 +30895,50,Bryan Singer,1347769963 +30895,50,Gabriel Byrne,1347769916 +30895,198,Angela Bassett,1347772847 +30895,198,cyberpunk,1347773104 +30895,198,James Cameron,1347772897 +30895,198,Juliette Lewis,1347772847 +30895,198,Kathryn Bigelow,1347772794 +30895,198,New Year's Eve,1347772969 +30895,198,Ralph Fiennes,1347772802 +30895,198,Science Fiction,1347772781 +30895,260,Alec Guiness,1347775173 +30895,260,aliens,1347775288 +30895,260,Androids,1347775090 +30895,260,Carrie Fisher,1347775173 +30895,260,fantasy,1294820976 +30895,260,Harrison Ford,1347775075 +30895,260,Industrial Light and Magic,1347775229 +30895,260,John Williams,1347775245 +30895,260,Mark Hamill,1294821013 +30895,260,robots,1347775234 +30895,260,sci-fi,1347775073 +30895,260,Science Fiction,1347775187 +30895,260,space,1347775271 +30895,296,John Travolta,1294820765 +30895,296,Uma Thurman,1294820777 +30895,480,Jeff Goldblum,1294820921 +30895,919,Judy Garland,1347768796 +30895,919,L. Frank Baum,1347768612 +30895,919,Musical,1347768543 +30895,919,Technicolor,1347768764 +30895,1196,androids,1347774769 +30895,1196,Carrie Fisher,1347774717 +30895,1196,fantasy,1347774731 +30895,1196,George Lucas,1347774685 +30895,1196,Harrison Ford,1347774687 +30895,1196,Industrial Light and Magic,1347774853 +30895,1196,Irvin Kershner,1347774815 +30895,1196,John Williams,1347775048 +30895,1196,Lawrence Kasdan,1347774943 +30895,1196,Mark Hamill,1347774717 +30895,1196,robots,1347774772 +30895,1196,Space,1347774739 +30895,1210,Aliens,1347773156 +30895,1210,Androids,1347773290 +30895,1210,Carrie Fisher,1347773185 +30895,1210,Fantasy,1347773148 +30895,1210,George Lucas,1347773141 +30895,1210,Harrison Ford,1347773138 +30895,1210,Industrial Light and Magic,1347773385 +30895,1210,John Williams,1347773424 +30895,1210,Mark Hamill,1347773185 +30895,1210,Robots,1347773299 +30895,1210,Space,1347773311 +30895,1372,aliens,1347774031 +30895,1372,Christopher Plummer,1347773920 +30895,1372,DeForest Kelley,1347773757 +30895,1372,Industrial Light and Magic,1347774099 +30895,1372,James Doohan,1347773920 +30895,1372,Kim Cattrall,1347773919 +30895,1372,Leonard Nimoy,1347773641 +30895,1372,Nichelle Nichols,1347773919 +30895,1372,Nicholas Meyer,1347774305 +30895,1372,sci-fi,1347773678 +30895,1372,Science Fiction,1347773687 +30895,1372,Walter Koenig,1347773920 +30895,1372,William Shakespeare,1347774183 +30895,1372,William Shatner,1347773650 +30895,1376,Aliens,1347775481 +30895,1376,Based on a TV show,1347775610 +30895,1376,Catherine Hicks,1347775647 +30895,1376,DeForest Kelley,1347775466 +30895,1376,George Takei,1347775466 +30895,1376,Industrial Light and Magic,1347775586 +30895,1376,James Doohan,1347775466 +30895,1376,Leonard Nimoy,1347775370 +30895,1376,Nichelle Nichols,1347775465 +30895,1376,Nicholas Meyer,1347775567 +30895,1376,San Francisco,1347775512 +30895,1376,sci-fi,1347775402 +30895,1376,science fiction,1347775402 +30895,1376,time travel,1347775361 +30895,1376,Walter Koenig,1347775466 +30895,1376,William Shatner,1347775365 +30895,1546,Comedy,1294826277 +30895,1546,Criterion,1294826375 +30895,1546,experimental,1294826268 +30895,1546,non-linear,1294826302 +30895,2085,animation,1251837492 +30895,2193,Industrial Light and Magic,1347769564 +30895,2572,Joseph Gordon-Levitt,1251837420 +30895,2690,Cate Blanchett,1349582653 +30895,2690,Julianne Moore,1349582663 +30895,2690,Minnie Driver,1349582656 +30895,2826,fantasy,1251837595 +30895,2968,Fantasy,1347771254 +30895,2968,John Cleese,1347771159 +30895,2968,Sean Connery,1347771074 +30895,2968,Shelley Duvall,1347771186 +30895,2968,Terry Gilliam,1347771077 +30895,3072,John Patrick Shanley,1254657331 +30895,3822,Godard-esque,1315933689 +30895,4144,Christopher Doyle,1347776362 +30895,4144,Maggie Cheung,1347776362 +30895,4144,Tony Leung,1347776362 +30895,4144,Wong Kar Wai,1347776279 +30895,4401,Cesar Romero,1294822683 +30895,4401,Comedy,1294822559 +30895,4401,John Ford,1294822546 +30895,4401,John Wayne,1294822525 +30895,4813,1951 Academy Award for Special Effects,1294824404 +30895,4813,based on a book,1294824377 +30895,4813,sci-fi,1294824314 +30895,5618,Academy Award - Best Animated Feature,1347774473 +30895,5618,animation,1347774358 +30895,5618,anime,1347774356 +30895,5618,fantasy,1347774352 +30895,5618,Hayao Miyazaki,1347774341 +30895,5618,Studio Ghibli,1347774344 +30895,6023,based on a book,1294826661 +30895,6023,Dolores Hitchens,1294826744 +30895,6023,Fool's Gold,1294826719 +30895,6023,French New Wave,1294826583 +30895,7118,animation,1294822293 +30895,7118,rape scene,1294822198 +30895,7118,sci-fi,1294822128 +30895,7118,Taoism,1294822076 +30895,8607,anime,1294824584 +30895,25940,based on a book,1294824035 +30895,25940,film noir,1294823994 +30895,25940,If I Die Before I Wake,1294824056 +30895,25940,Orson Welles,1294823964 +30895,25940,Rita Hayworth,1294824015 +30895,25940,San Francisco,1294824275 +30895,25940,Sherwood King,1294824163 +30895,26136,Comedy,1294821894 +30895,26136,Musical,1294821700 +30895,26136,Western,1294821778 +30895,26547,Action,1294822954 +30895,26547,Best Film 1986 Hong Kong Film Awards,1294823016 +30895,26547,Comedy,1294822962 +30895,26547,Jackie Chan,1251839770 +30895,26547,kung fu,1294822322 +30895,27366,39 shots,1264283203 +30895,27366,Andreas Werckmeister,1264283245 +30895,27366,based on a book,1294825259 +30895,27366,Bela Tarr,1294825097 +30895,27366,black and white,1264283184 +30895,27366,Hungarian,1294825279 +30895,27366,Laszlo Krasznahorkai,1264283131 +30895,27366,The Melancholy of Resistance,1264283036 +30895,27592,absurdism,1253140759 +30895,27592,Voice over,1253140729 +30895,27722,Japanese,1294822416 +30895,27722,Tadanobu Asano,1294822420 +30895,27722,Thai,1294822379 +30895,27722,Yakuza,1294822643 +30895,46855,French New Wave,1294821629 +30895,46855,War,1294821485 +30895,46976,Dustin Hoffman,1347772304 +30895,46976,Emma Thompson,1347772301 +30895,46976,Kaufman-esque,1347772569 +30895,46976,Maggie Gyllenhaal,1347772307 +30895,46976,meta,1347772322 +30895,46976,Meta Referential,1347776112 +30895,46976,Mise en abyme,1347772698 +30895,46976,Will Ferrell,1347772365 +30895,55820,Cormac McCarthy,1257112519 +30895,62511,Charlie Kaufman,1294827076 +30895,62511,directorial debut,1347771395 +30895,62511,Meta,1347771583 +30895,62511,Meta Referential,1347771583 +30895,62511,Mise en abyme,1347771629 +30895,62511,Philip Seymour Hoffman,1347771321 +30895,62511,postmodern,1347771693 +30895,64499,based on a true story,1294823831 +30895,64499,Che Guevara,1294823311 +30895,64499,cinema verite,1294825902 +30895,64499,Cuban Revolution,1294823340 +30895,64499,Red One Camera,1294823857 +30895,64499,Steven Soderbergh,1294823257 +30895,64501,based on a true story,1294825941 +30895,64501,Bolivia,1294825740 +30895,64501,cinema verite,1294825442 +30895,64501,Red One Camera,1294825387 +30895,64501,Revolution,1294825850 +30895,64575,African American Film Critics Association Award for Best Supporting Actress,1266485847 +30895,64575,Best Supporting Actress Nomination,1266485784 +30895,64575,Black Reel Awards for Best Supporting Actress in a Motion Picture,1266485881 +30895,64575,Bronx,1266486314 +30895,64575,Critic's Choice Awards - Best Actress,1266486142 +30895,64575,National Board of Review of Motion Pictures Award for Breakthrough Performance by an Actress,1266485909 +30895,64575,SAG Awards - Outstanding Performance by a Female Actor in a Leading Role,1266486221 +30895,64575,St. Louis Film Critics Association Award for Best Supporting Actress,1266485939 +30895,64575,viola davis,1266485967 +30895,66934,Nathan Fillion,1316413352 +30895,69481,anti-war,1254638295 +30895,69951,fantasy,1264283694 +30895,70208,Timothy Olyphant,1294822024 +30895,70208,twist ending,1294821148 +30895,70849,French New Wave,1315934235 +30895,71254,dystopian,1294826190 +30895,71254,Red One Camera,1294826044 +30895,78574,Based on a book,1347769208 +30895,78574,Jennifer Lawrence,1347769259 +30895,78574,Noir,1347769367 +30895,78574,Sundance Grand Jury Prize: Dramatic,1347769234 +30895,82459,Academy Award Nominee (10),1347771036 +30895,82459,based on a book,1294819626 +30895,82459,Charles Portis,1294819649 +30895,82459,Coen Brothers,1294822049 +30895,82459,Hailee Steinfeld,1294819877 +30895,82459,Jeff Bridges,1294822054 +30895,82459,National Board of Review Top Ten Best Films,1294819826 +30895,82459,Roger Deakins,1294820605 +30895,82459,Western,1294819684 +30895,87306,aliens,1347771912 +30895,87306,J.J. Abrams,1347771854 +30895,87306,sci-fi,1347771925 +30895,87306,Science Fiction,1347771932 +30895,87306,Steven Spielberg,1347771903 +30895,95558,16mm,1347767814 +30895,95558,Camera d'Or winner,1347767803 +30895,95558,Court 13,1347767822 +30895,95558,Louisiana,1347768072 +30895,95558,Sundance 2012 Grand Jury Prize: Dramatic,1347767926 +30895,95558,Terrebonnne Parish,1347768072 +30925,39,teen movie,1368942171 +30925,50,excellent script,1368942072 +30925,150,space,1137121084 +30925,549,musicians,1368942155 +30925,1088,dancing,1368942216 +30925,1101,aviation,1152023675 +30925,1203,classic,1137121050 +30925,1285,teen movie,1368942171 +30925,1370,aviation,1152023613 +30925,1552,aviation,1152023581 +30925,1608,aviation,1137121072 +30925,1704,mentor,1368942018 +30925,1968,teen movie,1368942171 +30925,2144,teen movie,1368942171 +30925,2420,mentor,1368942018 +30925,2521,aviation,1152023805 +30925,2598,aviation,1152023546 +30925,2791,aviation,1137121078 +30925,2792,aviation,1152023707 +30925,2866,musicians,1368942155 +30925,3033,space,1172789758 +30925,3175,space,1172789699 +30925,3418,women,1368942137 +30925,3791,dancing,1368942216 +30925,3827,space,1172789662 +30925,4812,space,1172789750 +30925,5065,supernatural,1368942058 +30925,5693,dancing,1368942216 +30925,8524,aviation,1152023834 +30928,51662,historical,1311916369 +30928,51662,military,1311916365 +30931,98373,dance,1365259194 +30931,98373,dance movie,1365259180 +30944,2020,adultery,1421673751 +30944,2692,existentialism,1435918524 +30944,2692,German,1435918514 +30944,2692,intense,1435918522 +30944,2692,nonlinear,1435918519 +30944,2692,original,1435918515 +30944,2692,surreal,1435918507 +30944,4848,dreamlike,1435918278 +30944,4848,lesbian,1435918276 +30944,4848,Mindfuck,1435918280 +30944,4848,Nudity (Full Frontal - Notable),1435918285 +30944,4848,surreal,1435918282 +30944,4975,existentialism,1435918618 +30944,4975,mindfuck,1435918614 +30944,4975,psychology,1435918620 +30944,40629,18th century,1421673734 +30944,40629,19th century,1421673736 +30944,40629,based on a book,1421673739 +30944,40629,classic,1421673745 +30944,40629,great soundtrack,1421673741 +30944,40629,Jane Austen,1421673730 +30944,97304,espionage,1421673390 +30944,97304,Political Thriller,1421673398 +30944,97304,politics,1421673395 +30944,102407,1920s,1421673760 +30995,73881,India,1418145956 +30995,79357,rubbish,1447436567 +30995,83424,bollywood,1420647161 +30995,83424,rubbish,1447436764 +30995,83424,too much dance,1420647161 +30995,109673,female nudity,1408525447 +30995,109673,wasted potential,1408525436 +31029,3676,David Lynch,1213995255 +31029,26007,Not available from Netflix,1230525620 +31029,33451,Not available from Netflix,1230525560 +31029,40148,Ray Liotta sucks,1226906944 +31029,57326,Ray Liotta sucks,1226906999 +31040,2406,cool,1156287193 +31080,296,blood splatters,1432608968 +31080,296,cult,1432608968 +31080,296,violent,1432608968 +31088,919,classic,1141352501 +31088,1220,classic,1141352497 +31126,134853,childhood,1447663992 +31126,134853,emotional intelligence,1447663992 +31126,134853,happiness,1447663981 +31128,260,ok,1436852842 +31128,1198,adventure,1441014665 +31128,128606,drama,1441014582 +31129,100553,david attenborough,1421234502 +31129,100553,documentary,1421234502 +31129,100553,wildlife,1421234502 +31129,108548,comedy,1421863565 +31129,108548,neighbors,1421863565 +31129,108548,scientist,1421863565 +31131,356,realistic,1429942962 +31131,1704,inspirational,1429942989 +31131,1721,historical,1429942937 +31132,260,hero's journey,1441659388 +31132,260,Science Fiction,1441659379 +31132,260,space,1441659395 +31154,59784,comedy,1451628677 +31154,59784,serene,1451628698 +31155,4973,beautifully filmed,1242761120 +31155,4973,connection,1242761139 +31155,4973,fairy tale,1242761118 +31155,4973,feel-good,1242761125 +31155,4973,love,1242761116 +31155,4973,quirky,1242761114 +31155,5137,documentary,1218190077 +31155,5137,hip hop,1218190077 +31155,5137,music,1218190077 +31155,5137,turntablism,1218190077 +31155,7361,Jim Carrey,1242761034 +31155,7361,love,1242761050 +31155,7361,memory,1242761052 +31155,7361,philosophy,1242761045 +31155,7361,quirky,1242761041 +31155,7361,romance,1242761043 +31155,7361,thought-provoking,1242761070 +31155,46976,connection,1242760979 +31155,46976,Maggie Gyllenhaal,1242760913 +31155,46976,passion,1242761007 +31155,46976,quirky romantic,1242760964 +31155,46976,surreal,1242760928 +31155,46976,Will Ferrell,1242760925 +31174,106782,based on a true story,1393169283 +31174,106782,drugs,1393169286 +31174,106782,Funny,1393169288 +31174,106782,Leonardo DiCaprio,1393169273 +31174,106782,Martin Scorsese,1393169279 +31174,107348,Steve Carell,1393169067 +31174,107348,will ferrell,1393169075 +31206,1101,i don't like tom cruise,1185114736 +31223,858,classic,1218489197 +31223,858,Mafia,1218489203 +31223,858,Marlon Brando,1218489200 +31239,8718,excellent for its time,1193730467 +31245,260,entertaining,1430469103 +31250,260,Good vs evil,1434671888 +31250,260,Space adventure,1434671900 +31250,109487,black hole,1434672115 +31250,109487,father and daughter story,1434672115 +31250,109487,space,1434672115 +31270,54997,Christian Bale,1240624266 +31273,260,epic adventure,1437313633 +31273,260,Science Fiction,1437313617 +31277,1129,Wasteland,1307736733 +31307,260,good vs evil,1439779829 +31307,260,sci-fi,1439779788 +31307,260,space,1439779816 +31307,260,space opera,1439779837 +31307,260,trilogy,1439779809 +31310,260,futuristic,1433535257 +31310,260,Science Fiction,1433535242 +31312,4967,Bosnian,1439792266 +31330,2959,Brad Pitt,1364069848 +31330,2959,psychology,1364070677 +31330,2959,twist ending,1364070675 +31330,7361,thought-provoking,1364524745 +31330,55765,Denzel Washington,1364353416 +31330,55765,Nudity (Topless - Brief),1364353417 +31330,56782,Daniel Day-Lewis,1364776336 +31330,56782,visually appealing,1364776348 +31330,56782,western,1364776344 +31330,68157,Brad Pitt,1364403825 +31330,80549,Emma Stone,1364145374 +31330,80549,sexuality,1364145376 +31330,80549,witty,1364145378 +31330,88163,Emma Stone,1364145350 +31330,96821,awkward situations,1364524816 +31330,96821,character development,1364524814 +31330,96821,Emma Watson,1364524810 +31332,260,classic sci-fi,1437987229 +31332,260,good vs evil,1437987262 +31332,105531,beautiful scenery,1437988955 +31332,105531,nature,1437988955 +31332,105531,solitude,1437988955 +31337,29,atmospheric,1347159070 +31337,29,dystopia,1347159087 +31337,29,surreal,1347159073 +31337,29,visually appealing,1347159080 +31337,527,Holocaust,1356933814 +31337,541,Slow,1329871747 +31337,608,bad accents,1329025581 +31337,912,bittersweet,1344909029 +31337,912,espionage,1344909057 +31337,912,Film Noir,1344909017 +31337,912,romance,1344909022 +31337,1136,absurd,1329013823 +31337,1136,satirical,1329013493 +31337,1197,pirates,1344727552 +31337,1197,whimsical,1344727554 +31337,1199,atmospheric,1343451663 +31337,1199,black comedy,1343451642 +31337,1199,dystopia,1343451644 +31337,1199,satire,1343451650 +31337,1199,stylized,1343451654 +31337,1208,Boring,1344983969 +31337,1208,Long,1344983963 +31337,1208,Slow,1344983936 +31337,1208,Vietnam war,1344983949 +31337,1252,atmospheric,1406778119 +31337,1252,Film Noir,1406778122 +31337,1260,atmospheric,1351392098 +31337,1260,bleak,1351392103 +31337,1260,menacing,1351392082 +31337,1391,stupid,1344984189 +31337,1391,Tim Burton,1344984195 +31337,1732,bowling,1344727129 +31337,2318,child abuse,1344656147 +31337,2318,dark,1344656252 +31337,2318,dark comedy,1344656145 +31337,2318,loneliness,1344656161 +31337,2318,Philip Seymour Hoffman,1344656241 +31337,2318,sexual abuse,1344656169 +31337,2571,dystopia,1329014107 +31337,2571,stylized,1329014088 +31337,3676,creepy,1332299467 +31337,3676,surreal,1332299470 +31337,3949,disturbing,1344984314 +31337,3949,social commentary,1344984329 +31337,3949,visually appealing,1344984337 +31337,4014,atheism,1345092776 +31337,4014,cute,1345092902 +31337,4027,epic,1344727242 +31337,4027,Quirky,1344727212 +31337,4239,drug trafficking,1350876983 +31337,4239,Johnny Depp,1350876938 +31337,4308,sentimental,1345947845 +31337,4308,Sexualized violence,1345947839 +31337,4308,stylized,1345947847 +31337,4370,dystopia,1344724524 +31337,4973,atmospheric,1351643335 +31337,4973,quirky,1351643302 +31337,4973,stylized,1351643334 +31337,4973,whimsical,1351643288 +31337,5333,ONE LAST HEIST,1351642989 +31337,5445,Steven Spielberg,1332210029 +31337,5446,boring,1346646535 +31337,5446,melodrama,1346646513 +31337,5690,grim,1342844141 +31337,5956,long,1344908051 +31337,5956,Martin Scorsese,1344908065 +31337,5956,New York,1344908027 +31337,5991,murder,1345945474 +31337,5991,stylized,1345945468 +31337,6016,atmospheric,1402119108 +31337,6016,Brazil,1402119010 +31337,6016,drugs,1402119026 +31337,6216,Africa,1364272034 +31337,6216,culture clash,1364272025 +31337,6552,gritty,1345257911 +31337,6552,immigration,1345257807 +31337,6552,prostitution,1345257841 +31337,6552,tense,1345257849 +31337,6807,sketch comedy,1344728827 +31337,6874,Quentin Tarantino,1344908706 +31337,6874,stylized,1344908688 +31337,6874,violent,1344908716 +31337,8798,atmospheric,1332298921 +31337,8910,philosophy,1329026078 +31337,8910,whimsical,1329026038 +31337,8914,indie,1365395410 +31337,8914,low budget,1365395392 +31337,8914,mindfuck,1365395394 +31337,8914,white shirts,1365395399 +31337,8917,stupid,1332209280 +31337,8950,atmospheric,1332298514 +31337,8950,imaginary friend,1332298852 +31337,8950,slow,1332298549 +31337,26131,Africa,1351222209 +31337,26131,colonialism,1351222211 +31337,26131,gritty,1351222216 +31337,26131,historical,1351222225 +31337,26131,Political,1351222245 +31337,27831,confusing,1332034915 +31337,30812,biography,1329871806 +31337,32587,atmospheric,1344908982 +31337,32587,Quentin Tarantino,1332209928 +31337,32587,stylized,1344908968 +31337,40583,complicated,1345419225 +31337,40583,espionage,1345419232 +31337,40583,middle east,1345419220 +31337,45950,climate change,1344984951 +31337,45950,important,1344984975 +31337,45950,reality check,1344984963 +31337,46578,dysfunctional family,1344909315 +31337,46578,flawed characters,1344909284 +31337,46578,off-beat comedy,1344909304 +31337,46578,social commentary,1344909306 +31337,48385,crude humor,1332209300 +31337,48738,genocide,1331954617 +31337,55276,lawyers,1344175711 +31337,55276,slow,1344175715 +31337,55721,Favelas,1326407998 +31337,55721,social commentary,1326407930 +31337,56174,alone in the world,1351642703 +31337,56174,post-apocalyptic,1351642726 +31337,60397,broadway,1344983696 +31337,60397,Meryl Streep,1344983703 +31337,60397,Wedding,1344983673 +31337,61132,satire,1332209030 +31337,63876,biography,1332209781 +31337,63876,civil rights,1332209786 +31337,63876,gay,1332209771 +31337,63876,politics,1332209799 +31337,72011,witty,1329797459 +31337,72998,environmental,1344725655 +31337,72998,politics,1344725645 +31337,72998,scenic,1344725675 +31337,72998,sci-fi,1344725649 +31337,72998,thought-provoking,1344725683 +31337,76173,funny,1353905184 +31337,76173,quirky,1353905199 +31337,76173,weapons industry,1353905177 +31337,77455,betrayal,1342410798 +31337,77455,consumerism,1342410811 +31337,77455,graffiti,1342410803 +31337,77455,marketing,1342410791 +31337,79677,documentary,1329024798 +31337,79677,drug trade,1329024956 +31337,79677,sports,1329024851 +31337,83293,art,1350528807 +31337,83293,poverty,1350528809 +31337,85414,romance,1344740968 +31337,85414,stylized,1344740985 +31337,85414,time loop,1344740973 +31337,86320,apocalypse,1329012065 +31337,86320,beautiful,1329012379 +31337,86320,Magic realism,1329012211 +31337,86320,music,1329012201 +31337,86320,photography,1329012292 +31337,86320,slow,1329012302 +31337,86833,clever script,1344909194 +31337,86833,female driven comedy,1344909217 +31337,86833,flawed characters,1344909187 +31337,88744,action,1345954461 +31337,88744,beautiful,1345954463 +31337,88744,cgi,1345954493 +31337,88744,thought-provoking,1345954452 +31337,88744,touching,1345954484 +31337,89492,Philip Seymour Hoffman,1329797217 +31337,89492,slow,1329797251 +31337,89759,lies,1332390239 +31337,96079,007 (series),1353032032 +31337,96079,beautifully filmed,1353032008 +31337,96610,dystopia,1375506425 +31337,96610,future,1375506447 +31337,96610,time travel,1375506427 +31337,97304,Iran,1357357528 +31337,97304,Middle East,1357357520 +31337,97304,politics,1357357514 +31337,97304,suspenseful,1357357519 +31337,97304,true story,1357357574 +31337,97680,colonialism,1350786286 +31337,97680,documentary,1350786268 +31337,97680,DR Congo,1350786276 +31337,97680,history,1350786313 +31337,97938,cinematography,1357357639 +31337,97938,ocean,1357357652 +31337,97938,spiritual journey,1357357658 +31337,99114,Quentin Tarantino,1357357692 +31337,99114,revenge,1357357739 +31337,99114,Slavery,1357357683 +31337,99114,Spaghetti Western,1357357686 +31337,103253,cyborgs,1376830665 +31337,103253,dystopia,1376830584 +31337,103253,Inequality,1376830602 +31337,103253,Slums,1376830590 +31337,103255,afghanistan,1371861279 +31337,103255,current events,1371861370 +31337,103255,investigation,1371861370 +31337,103255,somalia,1371861279 +31337,103255,yemen,1371861279 +31337,103624,Race,1376830934 +31337,105504,hijacking,1387512202 +31337,105504,politics,1387512191 +31337,105844,slavery,1387512226 +31357,260,Boring,1436777146 +31357,260,old,1436777136 +31358,45722,pirates,1213075914 +31377,318,5 stars,1434152439 +31377,318,classic,1434152439 +31377,318,suspense,1434152439 +31410,5418,action,1382746077 +31410,5418,car chase,1382746077 +31410,5418,Matt Damon,1382746039 +31410,5418,survival,1382746077 +31410,5418,thriller,1382746076 +31410,77800,dark humor,1427263232 +31410,77800,political satire,1427263232 +31410,77800,screwball comedy,1427263232 +31412,1321,atmospheric,1304506325 +31412,1321,werewolves,1304505982 +31412,1321,zombies,1304505979 +31418,112552,drama,1435802111 +31418,112552,drums,1435802111 +31418,112552,jazz music,1435802111 +31422,31685,netflix,1407816173 +31422,31685,Netflix Streaming,1407816174 +31422,51540,based on a true story,1416550180 +31422,51540,crime,1416550211 +31422,59295,bad science,1407817290 +31422,59295,Christianity,1407817308 +31422,59295,conspiracy theory,1407817304 +31422,59295,misinformation,1407817276 +31422,59295,propaganda,1407817285 +31422,88022,american legal system,1406933573 +31422,88022,corporate America,1406933573 +31422,88744,genetics,1416549817 +31422,88744,Plot holes,1416549919 +31422,88744,stereotyped characters,1416549911 +31422,88744,thought-provoking,1416549823 +31422,88744,thriller,1416549853 +31422,96811,acting,1409399914 +31422,96811,comraderie,1409399901 +31422,96811,excellent acting,1409399926 +31422,96811,great script,1409399808 +31422,96811,Original story,1409399874 +31422,96811,police,1409399842 +31422,104272,bigtourism,1388434607 +31422,104272,corporate America,1388434771 +31422,104272,corporate greed,1388434607 +31422,104272,coverup,1388434607 +31422,104272,PR crisis,1388434654 +31422,104272,public relations,1388434669 +31422,104272,scandal,1388434607 +31422,104913,based on a true story,1383010815 +31422,104913,long,1383010795 +31422,104913,unpredictable,1383010787 +31422,105213,Joseph Gordon-Levitt,1407816680 +31422,105213,Netflix,1407816648 +31422,105213,Netflix streaming,1407816658 +31422,105213,Scarlett Johansson,1407816686 +31422,105504,crime,1382796637 +31422,105504,politics,1382796657 +31422,105504,suspense,1382796631 +31422,105504,tom hanks,1382796648 +31422,112370,dialogue,1403988927 +31422,112370,plot holes,1403988927 +31422,112370,ridiculous dialogue,1403988927 +31422,116002,1960s,1415334965 +31422,116002,1970s,1415334976 +31422,116002,corporate greed,1415335125 +31422,116002,drugs,1415335102 +31422,116002,music,1415335080 +31422,116002,music business,1415335073 +31422,116002,Netflix streaming,1415335162 +31422,116002,pop music,1415334986 +31422,116002,rock 'n' roll,1415335039 +31422,116002,rock music,1415335078 +31436,111460,crime,1422302791 +31436,111460,mistery,1422302791 +31436,111460,terror,1422302791 +31436,115629,detective movie,1428666764 +31436,115629,plot twist,1428666764 +31436,115629,suspense,1428666764 +31449,2571,actors,1437138115 +31449,2571,drawing,1437138115 +31449,2571,entertaining,1437138115 +31449,6927,Anthony Hopkins,1437738097 +31449,6927,love story,1437737958 +31449,6927,Nicole Kidman,1437738106 +31449,96367,gay,1438776307 +31449,96367,good for having rest,1438776326 +31449,96367,not too complicated,1438776332 +31449,96367,strange,1438776305 +31449,96367,unusual,1438776302 +31459,150,based on a true story,1429988377 +31459,150,space,1429988383 +31459,150,Tom Hanks,1429988373 +31459,377,Action,1429987093 +31459,377,Keanu Reeves,1429987088 +31459,377,Sandra Bullock,1429987090 +31459,377,Thriller,1429987096 +31459,733,Nicolas Cage,1429987313 +31459,1036,Bruce Willis,1429987063 +31459,1608,action,1429987116 +31459,1608,Harrison Ford,1429987119 +31459,4351,keanu reeves,1429988505 +31459,4351,Nudity (Topless),1429988519 +31459,4351,undercover cop,1429988517 +31459,79879,Nudity (Full Frontal),1429988537 +31459,79879,tits,1429988533 +31459,96448,horror,1431105319 +31459,96448,naked,1431105319 +31459,96448,nudity (topless),1429988614 +31459,96448,tits,1431105319 +31459,99112,Tom Cruise,1429988404 +31459,110730,artificial intelligence,1429988636 +31459,110730,Johnny Depp,1429988640 +31459,111759,Tom Cruise,1429988366 +31459,112556,unpredictable,1429990659 +31459,115149,Keanu Reeves,1429988428 +31459,115149,Revenge,1429988425 +31459,130634,emotional,1429991053 +31459,130634,fast cars,1429991053 +31459,130634,paul walker,1429991053 +31460,296,cult film,1429500222 +31460,296,quentin tarantino,1429500222 +31460,296,r:violence,1429500222 +31460,46965,Planes,1155903205 +31460,46965,Snakes,1155903199 +31471,260,good vs evil,1434475367 +31471,260,space adventure,1434475341 +31471,114814,comedy,1437998656 +31471,114814,police corruption,1437998656 +31471,114814,sexist,1437998656 +31471,122876,comedy,1436560943 +31471,122876,police corruption,1436560943 +31471,122876,sexist,1436560943 +31471,122878,action,1434476399 +31471,122878,comedy,1434476399 +31471,122878,robbery,1434476399 +31471,139811,betrayal,1438612777 +31471,139811,crime,1438612777 +31471,139811,violence,1438612777 +31473,50068,imdb top 250,1172251899 +31473,50068,intimate,1172251903 +31473,50068,R,1172251905 +31473,50068,War in the eye of enemy,1172251897 +31478,47793,mumblecore,1187648938 +31481,2683,stupid,1179767855 +31481,8494,poker,1179763474 +31485,260,sci-fi,1440021146 +31485,260,space action,1440021158 +31491,50685,Keri Russell,1327438030 +31504,2739,lesbian,1140067216 +31520,2324,father-son relationship,1434365599 +31520,2324,sad but good,1434365558 +31520,2324,sentimental,1434365540 +31520,2762,suspense,1434365491 +31520,2762,touching,1434365481 +31520,2762,unpredictable,1434365486 +31520,5816,fantasy,1434365628 +31520,5816,Magic,1434365639 +31525,47,atmospheric,1449617163 +31525,47,biblical,1449617186 +31525,47,brad pitt,1449617147 +31525,47,crime,1449617164 +31525,47,dark,1449617158 +31525,47,David Fincher,1449617188 +31525,47,detective,1449617205 +31525,47,disturbing,1449617151 +31525,47,drama,1449617191 +31525,47,great ending,1449617154 +31525,47,Gwyneth Paltrow,1449617182 +31525,47,imdb top 250,1449617195 +31525,47,investigation,1449617168 +31525,47,Kevin Spacey,1449617152 +31525,47,morgan freeman,1449617145 +31525,47,mystery,1449617169 +31525,47,philosophical,1449617175 +31525,47,police,1449617203 +31525,47,powerful ending,1449617160 +31525,47,psychological,1449617179 +31525,47,psychology,1449617149 +31525,47,religion,1449617172 +31525,47,serial killer,1449617140 +31525,47,thriller,1449617198 +31525,47,twist ending,1449617142 +31525,47,twists & turns,1449617200 +31525,47,violent,1449617207 +31525,1645,Al Pacino,1449617224 +31525,1645,antichrist,1449617275 +31525,1645,Charlize Theron,1449617238 +31525,1645,cheating husband,1449617279 +31525,1645,Christianity,1449617272 +31525,1645,courtroom,1449617263 +31525,1645,deal with the devil,1449617236 +31525,1645,demons,1449617244 +31525,1645,devil,1449617231 +31525,1645,Keanu Reeves,1449617226 +31525,1645,lawyer as protagonist,1449617271 +31525,1645,lawyers,1449617242 +31525,1645,Nudity (Full Frontal),1449617228 +31525,1645,psychological,1449617235 +31525,1645,psychology,1449617249 +31525,1645,Religion,1449617233 +31525,1645,satan,1449617251 +31525,1645,supernatural,1449617265 +31525,1645,surreal,1449617240 +31525,1645,temptation,1449617278 +31525,1645,thought-provoking,1449617247 +31525,1645,twist ending,1449617268 +31525,44555,Berlin,1449617423 +31525,44555,breathtaking,1449617487 +31525,44555,character development,1449617457 +31525,44555,Cold War,1449617485 +31525,44555,complex characters,1449617440 +31525,44555,director-screenwriter,1449617481 +31525,44555,drama,1449617473 +31525,44555,East Germany,1449617435 +31525,44555,excellent script,1449617445 +31525,44555,Florian Henckel von Donnersmarck,1449617493 +31525,44555,foreign,1449617461 +31525,44555,freedom of expression,1449617438 +31525,44555,german,1449617463 +31525,44555,Germany,1449617494 +31525,44555,great acting,1449617489 +31525,44555,historical,1449617426 +31525,44555,Nudity (Topless),1449617419 +31525,44555,Oscar Winner,1449617476 +31525,44555,psychology,1449617459 +31525,44555,realisitc acting,1449617478 +31525,44555,spies,1449617465 +31525,44555,spying,1449617432 +31525,44555,Stasi,1449617431 +31525,44555,surveillance,1449617428 +31525,44555,suspense,1449617488 +31525,44555,Ulrich Mühe,1449617448 +31525,47099,based on a true story,1449617301 +31525,47099,bittersweet,1449617306 +31525,47099,courage,1449617329 +31525,47099,depressing,1449617327 +31525,47099,earnest,1449617330 +31525,47099,father-son relationship,1449617320 +31525,47099,Gabriele Muccino,1449617337 +31525,47099,happy ending,1449617312 +31525,47099,inspirational,1449617310 +31525,47099,Motivation,1449617318 +31525,47099,poverty,1449617322 +31525,47099,San Francisco,1449617314 +31525,47099,single father,1449617324 +31525,47099,single parents,1449617341 +31525,47099,tearjerking,1449617326 +31525,47099,true story,1449617308 +31525,47099,Will Smith,1449617303 +31525,74458,asylum,1449617012 +31525,74458,atmospheric,1449617002 +31525,74458,Ben Kingsley,1449617020 +31525,74458,cinematography,1449617038 +31525,74458,ending twist,1449617006 +31525,74458,insanity,1449616982 +31525,74458,intense,1449617025 +31525,74458,island,1449617055 +31525,74458,Leonardo DiCaprio,1449616980 +31525,74458,Mark Ruffalo,1449617030 +31525,74458,Martin Scorsese,1449616997 +31525,74458,Mental Institution,1449617032 +31525,74458,mentali illness,1449617109 +31525,74458,Michelle Williams,1449617105 +31525,74458,mindfuck,1449617004 +31525,74458,mystery,1449616985 +31525,74458,plot twist,1449616993 +31525,74458,psychological,1449616972 +31525,74458,Psychological Thriller,1449617009 +31525,74458,reality or imagination?,1449617069 +31525,74458,story,1449617065 +31525,74458,stylized,1449617019 +31525,74458,surreal,1449617027 +31525,74458,thought-provoking,1449617014 +31525,74458,twist ending,1449616976 +31525,74458,twisted ending,1449617016 +31525,107357,Ashley Judd,1449617390 +31525,107357,Bonnie Hunt,1449617385 +31525,107357,Bryce Dallas Howard,1449617387 +31525,107357,drama,1449617399 +31525,107357,jennifer hudson,1449617382 +31525,107357,Laura Dern,1449617389 +31525,107357,mental illness,1449617394 +31525,107357,Sharon Maguire,1449617383 +31525,107357,Thought Provoking,1449617377 +31530,260,good acting,1437580418 +31530,260,Science Fiction,1437580412 +31593,260,classic,1441224696 +31593,260,pop culture must,1441224677 +31602,50,twist ending,1247849364 +31602,65,Polly Shore,1247879425 +31602,97,social commentary,1247848981 +31602,180,Kevin Smith,1247858113 +31602,296,asynchronus storytelling,1428440742 +31602,296,non-linear timeline,1428440742 +31602,296,Roger Avary,1247849197 +31602,296,roger avary is the reason this film is good,1428440742 +31602,316,sci-fi,1247854633 +31602,319,dark comedy,1247878021 +31602,327,Post apocalyptic,1247883266 +31602,327,post-apocalyptic,1247883269 +31602,466,parody,1247874483 +31602,482,heist,1247911744 +31602,482,Roger Avary,1247911777 +31602,482,twist ending,1247911777 +31602,501,gritty,1247885597 +31602,501,intellectual,1247885656 +31602,501,intelligent,1247885656 +31602,501,social commentary,1247885656 +31602,551,musical,1247877991 +31602,589,sci-fi,1247858248 +31602,733,Sean Connery,1247874180 +31602,741,cyberpunk,1247875891 +31602,1047,assassin,1247912419 +31602,1089,Roger Avary,1247874151 +31602,1194,inane,1247885537 +31602,1194,purile,1247885537 +31602,1194,stoner comedy,1247885537 +31602,1208,too long,1247883144 +31602,1459,Clint Eastwood,1247855156 +31602,1527,Chris Tucker,1247882962 +31602,1527,cinematography,1247882962 +31602,1527,dystopic future,1247882962 +31602,1527,sci-fi,1247882757 +31602,1529,aliens,1247885491 +31602,1529,sci-fi,1247885491 +31602,1529,surreal,1247885491 +31602,1539,Wales,1247853650 +31602,1639,Kevin Smith,1247877799 +31602,1645,Al Pacino,1247874391 +31602,1653,dystopia,1247874375 +31602,1653,sci-fi,1247874379 +31602,1676,sci-fi,1247986904 +31602,1676,space,1247986912 +31602,1721,americanised,1247874062 +31602,1721,historically inaccurate,1247874062 +31602,1721,too long,1247874062 +31602,1884,drugs,1247879051 +31602,1884,Gonzo journalism,1247879089 +31602,1884,journalism,1247879054 +31602,1961,dark comedy,1247882637 +31602,2011,sci-fi,1247882563 +31602,2011,sequel,1247882584 +31602,2011,time travel,1247882584 +31602,2021,alan smithee film,1261090894 +31602,2021,sci-fi,1247877748 +31602,2021,slow paced,1247877779 +31602,2232,cult film,1247912257 +31602,2278,car chase,1247882532 +31602,2278,intelligent,1247882532 +31602,2278,organized crime,1247882532 +31602,2360,dark comedy,1247880212 +31602,2360,dogme95,1247880212 +31602,2360,incest,1247880212 +31602,2360,sexual abuse,1247880212 +31602,2360,twist ending,1247880212 +31602,2387,dark comedy,1247853680 +31602,2393,sci-fi,1247882412 +31602,2490,cinematography,1247882383 +31602,2490,clever,1247882383 +31602,2490,gangsters,1247882383 +31602,2490,organized crime,1247882383 +31602,2490,remake,1247882383 +31602,2490,revenge,1247882149 +31602,2490,twists & turns,1247882383 +31602,2528,dystopia,1247885175 +31602,2528,futuristic,1247885211 +31602,2528,sci-fi,1247885211 +31602,2580,black comedy,1247858778 +31602,2600,cronenberg,1247885165 +31602,2600,Sci-Fi,1247885121 +31602,2600,surreal,1247885164 +31602,2707,conspiracy,1247874315 +31602,2722,predictable,1247882124 +31602,2722,shark,1247882057 +31602,2763,Caper,1247874274 +31602,2763,heist,1247874267 +31602,2765,dark comedy,1247878978 +31602,2765,drugs,1247878978 +31602,2772,comedy,1247885103 +31602,2772,coming of age,1247885103 +31602,2772,soundtrack,1247885103 +31602,2791,farce,1247881892 +31602,2791,Non sequitur,1247881930 +31602,2791,Parody,1247881895 +31602,2791,spoof,1247881976 +31602,2872,brutal,1247885049 +31602,2872,King Arthur,1247885049 +31602,2872,legend,1247885049 +31602,2872,magic,1247885049 +31602,2872,medieval,1247885049 +31602,2872,Merlin,1247885049 +31602,2872,visceral,1247885049 +31602,2893,caper,1247882028 +31602,2893,heist,1247882028 +31602,2893,Period piece,1247882028 +31602,2893,tongue-in-cheek,1247882028 +31602,2985,dystopia,1247881991 +31602,2985,sci-fi,1247881994 +31602,2985,social commentary,1247882024 +31602,3033,sci-fi,1247881744 +31602,3033,space,1247881744 +31602,3033,spoof,1247881744 +31602,3052,Kevin Smith,1247874240 +31602,3052,satire,1247874236 +31602,3156,sci-fi,1247852660 +31602,3235,Hunter S. Thompson,1247881668 +31602,3266,dark comedy,1247981836 +31602,3275,organized crime,1247857651 +31602,3300,sci-fi,1247874819 +31602,3362,Al Pacino,1248012299 +31602,3362,dark comedy,1248012294 +31602,3362,heist,1248012294 +31602,3362,true story,1248012294 +31602,3504,journalism,1247874778 +31602,3527,action,1247877575 +31602,3527,sci-fi,1247877572 +31602,3581,cliche,1247881614 +31602,3581,purile,1247881614 +31602,3682,Clint Eastwood,1247876517 +31602,3702,dystopia,1247881491 +31602,3702,sci-fi,1247881548 +31602,3704,Post apocalyptic,1247986777 +31602,3704,post-apocalyptic,1247986785 +31602,3868,comedy,1247911819 +31602,3868,Non sequitur,1247911819 +31602,3868,spoof,1247911819 +31602,4251,Biography,1247877527 +31602,4251,Crime,1247877527 +31602,4370,sci-fi,1247877433 +31602,4553,conspiracy,1247880024 +31602,4553,distopia,1247880044 +31602,4553,sci-fi,1247880044 +31602,4571,comedy,1247881410 +31602,4571,sci-fi,1247881369 +31602,4571,soundtrack,1247881410 +31602,4728,inane,1247884765 +31602,4728,purile,1247884765 +31602,4734,cult film,1247911922 +31602,4734,dark comedy,1247911922 +31602,4734,Kevin Smith,1247911897 +31602,4734,parody,1247911922 +31602,4734,spoof,1247911922 +31602,4816,Will Ferrell,1248486082 +31602,4855,Clint Eastwood,1247878781 +31602,4874,sci-fi,1247912391 +31602,4887,alternate reality,1247849808 +31602,4890,moralistic,1247884685 +31602,4993,too long,1247874008 +31602,5283,college,1247884514 +31602,5283,comedy,1247884526 +31602,5379,anti-Semitism,1247915333 +31602,5379,skinhead,1247915327 +31602,5382,Clint Eastwood,1247877343 +31602,5445,sci-fi,1247873989 +31602,5541,Non sequitur,1247884421 +31602,5541,parody,1247884421 +31602,5541,spoof,1247884421 +31602,5700,MST3K,1247988013 +31602,5903,distopia,1247858756 +31602,5903,post-apocalyptic,1247858756 +31602,5952,Too long,1247873977 +31602,5989,caper,1247901681 +31602,5989,fraud,1247901682 +31602,5989,twists & turns,1247901681 +31602,6156,Jackie Chan,1247853577 +31602,6263,war,1247879916 +31602,6365,bad sequel,1247856957 +31602,6365,cyberpunk,1247856914 +31602,6618,kung fu,1247911835 +31602,6708,caper,1247878700 +31602,6708,twist ending,1247878657 +31602,6709,action,1247884315 +31602,6709,gangsters,1247884315 +31602,6709,organised crime,1247884315 +31602,6709,violence,1247884315 +31602,6711,boring,1247877218 +31602,6711,dull,1247877218 +31602,6746,B-movie,1247884236 +31602,6774,David Lynch,1247876092 +31602,6774,Lynch,1247876092 +31602,6796,gentrification,1247878635 +31602,6796,political,1247878635 +31602,6796,social commentary,1247878635 +31602,6811,college,1247877174 +31602,6874,boring,1247901504 +31602,6874,too long,1247901504 +31602,6893,caper,1247911613 +31602,6893,heist,1247911613 +31602,6893,organized crime,1247911613 +31602,7102,narrated,1247881150 +31602,7102,non squitur,1247881150 +31602,7102,spoof,1247881150 +31602,7153,too long,1247873952 +31602,7156,History,1247848898 +31602,7175,cinematography,1247987915 +31602,7175,contrived,1247987915 +31602,7175,product placement,1247987915 +31602,7175,slick,1247987915 +31602,7438,boring,1247908060 +31602,7438,Contrived.,1247908080 +31602,7438,slow,1247908060 +31602,7438,too long,1247908060 +31602,7445,action,1247884159 +31602,7445,Denzel Washington,1247884154 +31602,7445,kidnapping,1247884150 +31602,7445,revenge,1247884145 +31602,7562,French,1247986162 +31602,7562,heist,1247986162 +31602,7562,ultra-violence,1247986162 +31602,7845,B-movie,1247880990 +31602,7845,cult film,1247880990 +31602,7845,sequel,1247880990 +31602,8371,action,1247854169 +31602,8371,space,1247853873 +31602,8376,boring,1247874650 +31602,8376,dull,1247874650 +31602,8376,unfunny,1247874650 +31602,8641,Will Ferrell,1248485483 +31602,8644,sci-fi,1247857991 +31602,8798,assassin,1247884061 +31602,8970,Johnny Depp,1324713416 +31602,26810,B-movie,1247880854 +31602,26810,cult film,1247880854 +31602,26810,dark comedy,1247880854 +31602,27674,dark comedy,1247911257 +31602,27674,multiple storylines,1247911241 +31602,27773,revenge,1247849139 +31602,27793,B-movie,1247880804 +31602,27793,low budget,1247880804 +31602,27793,sci-fi,1247880804 +31602,27793,sequel,1247880804 +31602,27831,drugs,1247901563 +31602,27831,gangsters,1247901563 +31602,27831,organized crime,1247901563 +31602,27850,blag,1247878381 +31602,27850,caper,1247878381 +31602,27850,capitalism,1247878349 +31602,33004,bad acting,1317149320 +31602,33004,bad adaptation,1317149321 +31602,33004,bad screenplay,1317149321 +31602,33004,bad script,1317149321 +31602,33004,poor acting,1317149321 +31602,33004,poor adaptation,1317149321 +31602,33004,remake,1317149321 +31602,33004,sacrilege,1317149202 +31602,33166,character development,1247880712 +31602,33166,Direction,1247880712 +31602,33166,multiple storylines,1247880658 +31602,33166,social commentary,1247880655 +31602,33166,twist ending,1247880712 +31602,33646,prison,1247850897 +31602,34319,"Rip Off of ""Michael Marshall Smith - Spares""",1247854302 +31602,34405,sci-fi,1247854563 +31602,34405,space,1247854571 +31602,36529,anti-hero,1247856621 +31602,38061,caper,1247883939 +31602,38061,clever,1247883939 +31602,38061,dark comedy,1247883939 +31602,38061,murder mystery,1247883939 +31602,38061,private detective,1247883939 +31602,38061,tongue-in-cheek,1247883939 +31602,39052,low budget,1247983468 +31602,39052,parody,1247983468 +31602,39052,spoof,1247983468 +31602,40723,awful,1317156859 +31602,40723,over-hyped,1317156859 +31602,40723,over-rated,1317156859 +31602,40723,overrated,1317156859 +31602,40723,predictable,1317156859 +31602,40723,shallow characters,1317156859 +31602,40819,biographical,1247883830 +31602,40819,soundtrack,1247883830 +31602,40819,touching,1247883830 +31602,41566,alternate universe,1247883773 +31602,41566,plagarised,1247883773 +31602,41566,predictable,1247883773 +31602,41566,religious overtones,1247883773 +31602,41716,Black Comedy,1247858131 +31602,42385,Luc Besson,1265327955 +31602,42385,parkour,1265327955 +31602,42718,dystopia,1247911275 +31602,42718,parkour,1247911299 +31602,42723,stupid stereotypes,1247853260 +31602,44191,sci-fi,1247874193 +31602,44199,heist,1247878243 +31602,44199,twist ending,1247878252 +31602,44397,remake,1247876946 +31602,45728,Kevin Smith,1247858689 +31602,46335,contrived,1247987300 +31602,46335,inane,1247987300 +31602,46578,dark comedy,1247880563 +31602,46578,satire,1247880620 +31602,46578,twist ending,1247880620 +31602,47518,college,1247858441 +31602,47997,dark comedy,1247879696 +31602,47997,dystopia,1247879679 +31602,47997,purile,1247879715 +31602,47997,satire,1247879696 +31602,48516,remake,1247848804 +31602,48774,dystopia,1247874575 +31602,49278,sci-fi,1247986252 +31602,49688,true story,1247986014 +31602,49688,war movie,1247986014 +31602,49688,World War II,1247986014 +31602,51935,conspiracy,1247879663 +31602,52281,bad dialogue,1317156956 +31602,52281,boring,1317156956 +31602,52281,boring plot,1317156956 +31602,52281,BORING!,1317156956 +31602,52281,dull,1317156956 +31602,52328,sci-fi,1247875962 +31602,52328,space,1247875966 +31602,53318,cult film,1247911131 +31602,53349,Aborigines,1317155594 +31602,53349,folk tale,1317155594 +31602,53468,Billy Connolly,1317149902 +31602,53519,dialogue,1247879553 +31602,53519,Direction,1247879553 +31602,53519,grainy,1247879553 +31602,53519,nothing,1247879604 +31602,53519,Quentin Tarantino,1247879477 +31602,53519,slow paced,1247879553 +31602,53519,too long,1247879553 +31602,53956,caper,1247901722 +31602,53956,dark comedy,1247901722 +31602,53996,Dogging,1247858303 +31602,53996,Michael Bay,1247858303 +31602,54229,death,1267498248 +31602,54229,nuclear war,1267498248 +31602,54229,old age,1267498247 +31602,54736,propaganda,1247856456 +31602,54962,awful movie,1281585479 +31602,54962,awful...just awful,1281585479 +31602,54962,bad plot,1281585479 +31602,54962,bad script,1281585479 +31602,54962,Christianity,1281585479 +31602,54962,contrived,1281585479 +31602,54962,hackneyed,1281585479 +31602,54962,idiotic,1281585479 +31602,54962,overrated,1281585479 +31602,54962,poor plot,1281585479 +31602,54962,poor script,1281585479 +31602,54962,retarded,1281585479 +31602,54962,rubbish,1281585479 +31602,54962,stupid,1281585479 +31602,54962,stupid twist,1281585479 +31602,54962,too long,1281587506 +31602,54962,trite,1281585479 +31602,55094,army,1247880533 +31602,55094,twist ending,1247880514 +31602,55820,slow paced,1247878212 +31602,55820,too long,1247878212 +31602,55908,cult film,1247911008 +31602,55908,intellectual,1247911008 +31602,55908,intelligent,1247911008 +31602,55908,sci-fi,1247911008 +31602,56174,action,1247883556 +31602,56174,plot holes,1247883556 +31602,56174,post-apocalyptic,1247883480 +31602,56174,sci-fi,1247883556 +31602,56587,friendship,1247858591 +31602,56715,cinematography,1247910929 +31602,56715,cult film,1247910929 +31602,56715,touching,1247910929 +31602,56788,politics,1247853832 +31602,56788,satire,1247853840 +31602,57669,assassin,1247875944 +31602,57669,dark comedy,1247875938 +31602,58295,heist,1247853736 +31602,59126,atheism,1247878109 +31602,59126,Documentary,1247878112 +31602,59126,homophobia,1247878174 +31602,59126,intellectual,1247878174 +31602,59126,intelligent,1247878174 +31602,60040,bad cgi,1247986375 +31602,60040,bad sequel,1247986374 +31602,60040,dull,1247986374 +31602,60126,caper,1247911712 +31602,60126,espionage,1247911733 +31602,60126,parody,1247911712 +31602,60126,spoof,1247911712 +31602,60599,independent film,1317151091 +31602,60753,prison,1247985841 +31602,60753,Val Kilmer,1247985829 +31602,61394,dark comedy,1247883430 +31602,61394,journalism,1247883322 +31602,61394,Non sequitur,1247883430 +31602,61394,parody,1247883430 +31602,61394,repeated use of shots,1247883430 +31602,61394,satire,1247883325 +31602,61394,social commentary,1247883430 +31602,62434,Kevin Smith,1247879446 +31602,62849,Guy Ritchie,1247853554 +31602,63131,comedy,1247885752 +31602,63131,geeks,1247885752 +31602,63131,parody,1247885752 +31602,63131,role playing game,1247885752 +31602,63131,social commentary,1247885752 +31602,63222,breaking the fourth wall,1247986221 +31602,64614,Clint Eastwood,1247848936 +31602,64716,atonement,1247876825 +31602,65088,Imagination,1247883451 +31602,65126,dark comedy,1247857866 +31602,67197,sci-fi,1248020151 +31602,69251,dark comedy,1317149657 +31602,69251,independent film,1317149657 +31602,69251,superhero,1317149658 +31602,71520,bad acting,1264963810 +31602,71520,Contrived.,1264963810 +31602,71520,Direction,1264963810 +31602,71520,poor script,1264963810 +31602,71520,riddled with cliché,1264963810 +31602,71520,trite,1264963810 +31602,76860,animal attacks,1274922409 +31602,76860,Australian,1274922425 +31602,76860,outback,1274922537 +31602,76860,pigs,1274922491 +31602,77774,The World's Last Super Hero,1273741251 +31602,77780,clichéd in places,1273742194 +31602,77780,tense,1273742234 +31602,77780,Unexpected Ending,1273742216 +31602,77780,virtual reality,1273742078 +31602,79008,not a movie,1324712395 +31602,79551,bafta nominated,1281015949 +31602,79551,British,1281015490 +31602,79551,crime,1281015490 +31602,79551,directorial debut,1281015949 +31602,79551,drug abuse,1281015638 +31602,79551,drug dealing,1281015490 +31602,79551,drugs,1281015638 +31602,79551,London,1281015946 +31602,79551,low budget,1281015949 +31602,79551,Underrated,1281015946 +31602,79553,biography,1281015495 +31602,79553,choreographic violence,1281015495 +31602,79553,competition,1281015585 +31602,79553,Donnie Yen,1281015585 +31602,79553,history,1281015495 +31602,79553,Hong Kong,1281015585 +31602,79553,martial arts,1281015495 +31602,79553,Sammo Hung Kam-Bo,1281015585 +31602,79553,sequel,1281015660 +31602,79553,wing chun,1281015585 +31602,83976,not a movie,1317160900 +31602,86377,not a movie,1324712462 +31602,87115,implausible,1306534155 +31602,87115,Poor plot development,1306534113 +31602,87115,so bad it's funny,1306534174 +31602,87115,Special Effects,1306534155 +31602,90471,drugs,1324715567 +31602,90471,lawyers,1324715573 +31602,90471,true story,1324715590 +31605,109370,documentary,1423071129 +31605,109370,drama,1423071129 +31605,109370,sport:nba,1423071129 +31628,260,"Cheesy space opera, classic",1430684672 +31628,260,Every nerd should have seen more than once,1430684713 +31648,113831,indie music,1409741430 +31648,113831,unconventional ending,1409741424 +31648,113831,unique,1409741432 +31664,1831,all,1240858740 +31664,4986,acting,1257556495 +31664,4986,script,1257556494 +31732,29,skinut,1206704501 +31732,2285,a must see,1163327521 +31732,2360,skinut,1206706041 +31732,4848,Breathtaking,1162110369 +31732,4848,surreal,1162110360 +31732,4873,A MUST SEE,1163330093 +31732,4888,A MUST SEE,1163330059 +31732,8638,A MUST SEE,1163330028 +31732,48774,skinut,1206705158 +31733,428,new york,1264108671 +31733,483,coming of age,1264108109 +31733,483,heart-wrenching,1264108107 +31733,953,Christmas,1264108274 +31733,953,family,1264108269 +31733,953,heartwarming,1264108265 +31733,953,inspirational,1264108272 +31733,1079,Humorous,1264108288 +31733,1079,quirky,1264108293 +31733,1079,silly,1264108295 +31733,1259,childhood,1264108232 +31733,1259,coming of age,1264108218 +31733,1259,friendship,1264108220 +31733,1259,INNOCENCE LOST,1264108223 +31733,1259,poignant,1264108227 +31733,1259,wistful,1264108225 +31733,1968,coming-of-age,1264108325 +31733,1968,high school,1264108327 +31733,1968,teen,1264108332 +31733,2797,being a kid again,1264109404 +31733,2797,Child as Adult,1264109393 +31733,2797,New York City,1264109422 +31733,2804,Christmas,1264108647 +31733,2804,classic christmas tale,1264108651 +31733,2870,New York,1264108846 +31733,2870,New York City,1264108845 +31733,3072,Cher,1264108189 +31733,3072,funny,1264108186 +31733,3072,New York,1264108200 +31733,3072,New York City,1264108202 +31733,3072,Olympia Dukakis,1264108193 +31733,3072,sweet,1264108196 +31733,3421,FIGHTING THE SYSTEM,1264108860 +31733,4476,Bette Midler,1264108370 +31733,5902,surreal,1264108893 +31733,6881,meh,1264108172 +31733,6881,New York,1264108153 +31733,6881,quirky,1264108167 +31733,6881,solidarity,1264108160 +31733,6881,Thanksgiving,1264108162 +31733,8965,Christian,1264108512 +31733,8965,Christmas,1264108506 +31733,26051,Christianity,1264108807 +31733,26051,nuns,1264108812 +31733,26051,religion,1264108812 +31733,55247,self discovery,1264108536 +31733,64575,Bronx,1264108584 +31733,64575,Catholicism,1264108581 +31733,64575,Christianity,1264108608 +31733,64575,religion,1264108587 +31733,64575,thought-provoking,1264108593 +31733,64957,touching,1264108633 +31780,260,classic,1441958721 +31780,260,sci-fi,1441958755 +31780,919,classic,1443057294 +31780,1028,classic,1441959220 +31780,1033,classic,1442131746 +31780,2018,classic,1442125758 +31780,3034,Disney Classic,1442131678 +31780,5418,action,1443775407 +31780,8665,action,1443775424 +31780,33794,action,1443775494 +31780,54286,action,1443775438 +31795,260,classic sci-fi,1439413764 +31831,173,cheesy lines,1445978653 +31831,173,comic book,1445978643 +31831,173,comic sidekick,1445978674 +31831,173,corruption,1445978656 +31831,173,Danny Cannon,1445979129 +31831,173,dystopia,1445978641 +31831,173,future,1445978644 +31831,173,futuristic,1445978663 +31831,173,Jurgen Prochnow,1445979107 +31831,173,one-liners,1445978683 +31831,173,police,1445978651 +31831,173,police corruption,1445978649 +31831,173,Rob Schneider,1445979098 +31831,173,sci-fi,1445978696 +31831,173,Sylvester Stallone,1445978699 +31831,173,wrongly accused,1445978713 +31831,185,computers,1438634972 +31831,185,hackers,1438635015 +31831,185,hacking,1438635013 +31831,185,internet,1438634973 +31831,185,Sandra Bullock,1311158178 +31831,185,simplistic,1438635001 +31831,185,unrealistic,1438634999 +31831,196,alien,1423246533 +31831,196,aliens,1423246532 +31831,215,Austria,1439142917 +31831,215,bittersweet,1438633057 +31831,215,conversation,1438633046 +31831,215,dialogue,1438633055 +31831,215,dialogue driven,1439142989 +31831,215,ethan hawke,1438633069 +31831,215,imdb top 250,1439143057 +31831,215,intelligent,1438633049 +31831,215,Julie Delpy,1438633075 +31831,215,literate,1438633077 +31831,215,long takes,1439143093 +31831,215,love,1439142778 +31831,215,love story,1438633065 +31831,215,minimalist,1438633061 +31831,215,philosophical,1439142552 +31831,215,philosophy,1439142557 +31831,215,quirky,1438633062 +31831,215,reflective,1438633047 +31831,215,Richard Linklater,1439142537 +31831,215,romance,1439142844 +31831,215,romantic,1438633058 +31831,215,talky,1439142694 +31831,215,thought-provoking,1438633068 +31831,215,touching,1439142564 +31831,215,Vienna,1438633054 +31831,215,wistful,1438633096 +31831,215,witty,1438633059 +31831,296,1990s,1451426555 +31831,296,90s,1451427617 +31831,296,achronological,1451426561 +31831,296,action,1451426379 +31831,296,action packed,1451426564 +31831,296,aggressive,1451426719 +31831,296,assassin,1451426398 +31831,296,atmospheric,1451426413 +31831,296,bad ass,1451426568 +31831,296,bad language,1451426569 +31831,296,bad-ass,1451426750 +31831,296,bible,1451426751 +31831,296,biblical references,1451426755 +31831,296,big boys with guns,1451426760 +31831,296,big name actors,1451426763 +31831,296,Black comedy,1451426373 +31831,296,black humor,1451426513 +31831,296,black humour,1451426766 +31831,296,blood,1451426494 +31831,296,blood splatters,1451426515 +31831,296,bloody,1451426476 +31831,296,bruce willis,1451426374 +31831,296,brutality,1451426658 +31831,296,casual violence,1451426774 +31831,296,character development,1451426777 +31831,296,Christopher Walken,1451427596 +31831,296,classic,1451426384 +31831,296,classic movie,1451426784 +31831,296,coke,1451426799 +31831,296,comedy,1451426414 +31831,296,cool,1451426450 +31831,296,cool style,1451426809 +31831,296,crime,1451426378 +31831,296,crime scene scrubbing,1451426816 +31831,296,cult film,1451426361 +31831,296,dancing,1451426523 +31831,296,dark,1451426439 +31831,296,dark comedy,1451426352 +31831,296,dark humor,1451426421 +31831,296,dialogue,1451426434 +31831,296,dialogue driven,1451427382 +31831,296,diner,1451426826 +31831,296,disjointed timeline,1451426527 +31831,296,disturbing,1451426828 +31831,296,drug overdose,1451426839 +31831,296,drugs,1451426362 +31831,296,drugs & music,1451426844 +31831,296,ensemble cast,1451426464 +31831,296,entertaining,1451426575 +31831,296,entirely dialogue,1451426468 +31831,296,episodic,1451426577 +31831,296,Eric Stoltz,1451427257 +31831,296,exciting,1451426469 +31831,296,extreme violence,1451427260 +31831,296,fast paced,1451426481 +31831,296,fast-paced,1451426579 +31831,296,film noir,1451426870 +31831,296,film-noir,1451426871 +31831,296,foul language,1451426663 +31831,296,fun,1451426462 +31831,296,funny,1451426420 +31831,296,gangster,1451426426 +31831,296,gangsters,1451426438 +31831,296,gay rape,1451427268 +31831,296,golden watch,1451426593 +31831,296,good acting,1451427270 +31831,296,good dialogue,1451426416 +31831,296,good music,1451426430 +31831,296,gore,1451426594 +31831,296,great acting,1451426597 +31831,296,great dialogue,1451426447 +31831,296,great music,1451427604 +31831,296,great soundtrack,1451426418 +31831,296,gritty,1451426471 +31831,296,guns,1451426492 +31831,296,Harvey Keitel,1451426668 +31831,296,heroin,1451426653 +31831,296,Highly quotable,1451426441 +31831,296,hit men,1451426640 +31831,296,hitman,1451426638 +31831,296,homosexuality,1451426910 +31831,296,humor,1451427409 +31831,296,humorous,1451427371 +31831,296,humour,1451426916 +31831,296,intense,1451426452 +31831,296,interesting,1451426550 +31831,296,intertwining storylines,1451426937 +31831,296,interwoven storylines,1451426940 +31831,296,ironic,1451426608 +31831,296,irony,1451426609 +31831,296,John Travolta,1451426409 +31831,296,killer-as-protagonist,1451426947 +31831,296,los angeles,1451426953 +31831,296,meaningless violence,1451426958 +31831,296,milkshake,1451426964 +31831,296,mobster,1451426973 +31831,296,mobsters,1451426974 +31831,296,multiple stories,1451426983 +31831,296,multiple storylines,1451426358 +31831,296,neo-noir,1451426539 +31831,296,noir,1451426453 +31831,296,non-linear,1451426392 +31831,296,non-linear timeline,1451427007 +31831,296,nonlinear,1451426353 +31831,296,nonlinear narrative,1451426613 +31831,296,nonlinear storyline,1451427004 +31831,296,nonlinear timeline,1451427001 +31831,296,notable soundtrack,1451426429 +31831,296,Nudity (Full Frontal),1451427554 +31831,296,offensive,1451427035 +31831,296,one-liners,1451427384 +31831,296,organised crime,1451427031 +31831,296,organized crime,1451426388 +31831,296,original,1451426551 +31831,296,original plot,1451426532 +31831,296,pop culture references,1451426499 +31831,296,pulp,1451426548 +31831,296,Quentin Tarantino,1451426350 +31831,296,quirky,1451426389 +31831,296,Quotable,1451426500 +31831,296,r:disturbing violent content including rape,1451426631 +31831,296,r:disturbing violent images,1451427071 +31831,296,r:graphic sexuality,1451427082 +31831,296,r:some violence,1451427086 +31831,296,r:strong bloody violence,1451427088 +31831,296,r:strong language,1451426633 +31831,296,r:sustained strong stylized violence,1451427091 +31831,296,r:violence,1451426474 +31831,296,rape,1451426461 +31831,296,Roger Avary,1451426690 +31831,296,Samuel L. Jackson,1451426355 +31831,296,sarcasm,1451427104 +31831,296,satire,1451427105 +31831,296,soundtrack,1451426477 +31831,296,storytelling,1451426411 +31831,296,stylish,1451426436 +31831,296,stylized,1451426383 +31831,296,suspense,1451426713 +31831,296,Tarantino,1451426381 +31831,296,thriller,1451426454 +31831,296,Tim Roth,1451427479 +31831,296,twist,1451427615 +31831,296,twist ending,1451427175 +31831,296,ultra-violence,1451427481 +31831,296,Uma Thurman,1451426395 +31831,296,unconventional,1451427347 +31831,296,unpredictable,1451426714 +31831,296,unusual,1451427196 +31831,296,USA,1451427577 +31831,296,Ving Rhames,1451427361 +31831,296,violence,1451426359 +31831,296,violent,1451426391 +31831,296,witty,1451426479 +31831,316,aliens,1439415807 +31831,316,archaeology,1439415588 +31831,316,Egyptian Mythology,1439415626 +31831,316,James Spader,1439415786 +31831,316,Kurt Russell,1439415603 +31831,316,mythology,1439415587 +31831,316,pyramids,1439415628 +31831,316,sci fi,1439415746 +31831,316,sci-fi,1439415578 +31831,316,science fiction,1439415579 +31831,316,Stargate,1439415599 +31831,377,Action,1438632131 +31831,377,action packed,1438632139 +31831,377,bomb,1438632133 +31831,377,chase,1438632136 +31831,377,Dennis Hopper,1438632199 +31831,377,explosions,1438632134 +31831,377,intense,1438632178 +31831,377,Keanu Reeves,1438632127 +31831,377,Sandra Bullock,1438632129 +31831,377,tense,1438632138 +31831,377,Thriller,1438632135 +31831,380,action,1356567880 +31831,380,arnold,1421007902 +31831,380,Arnold Schwarzenegger,1356567883 +31831,380,Bill Paxton,1356567898 +31831,380,comedy,1356567902 +31831,380,espionage,1356567907 +31831,380,funny,1356567910 +31831,380,James Cameron,1421007912 +31831,380,Jamie Lee Curtis,1356567914 +31831,380,quirky,1356567919 +31831,380,ridiculous,1356567921 +31831,380,spies,1356567948 +31831,380,striptease,1356567949 +31831,380,terrorism,1356567952 +31831,380,thriller,1356567964 +31831,380,Tia Carrere,1356567960 +31831,380,violence,1421007914 +31831,435,aliens,1441643415 +31831,435,Dan Aykroyd,1441643445 +31831,435,Steve Barron,1441643453 +31831,527,amazing photography,1438632761 +31831,527,atmospheric,1438632725 +31831,527,based on a book,1438632743 +31831,527,based on a true story,1438632708 +31831,527,based on book,1438632732 +31831,527,biography,1438632737 +31831,527,classic,1438632740 +31831,527,disturbing,1438632717 +31831,527,drama,1438632734 +31831,527,historical,1438632716 +31831,527,history,1438632721 +31831,527,holocaust,1438632701 +31831,527,imdb top 250,1438632759 +31831,527,jews,1438632754 +31831,527,Liam Neeson,1438632727 +31831,527,Nazi Germany,1438632763 +31831,527,Nazis,1438632715 +31831,527,Oscar (Best Cinematography),1438632728 +31831,527,Oscar (Best Directing),1438632741 +31831,527,Oscar (Best Picture),1438632719 +31831,527,Steven Spielberg,1438632706 +31831,527,thought-provoking,1438632722 +31831,527,true story,1438632704 +31831,527,World War II,1438632702 +31831,527,WWII,1438632723 +31831,539,Meg Ryan,1438633766 +31831,539,Romance,1438633767 +31831,539,romantic comedy,1438633775 +31831,539,Tom Hanks,1438633765 +31831,541,adapted from:book,1421010330 +31831,541,androids,1359151542 +31831,541,artificial intelligence,1416432989 +31831,541,assassin,1421010333 +31831,541,atmospheric,1359151544 +31831,541,based on a book,1359151547 +31831,541,classic,1359151549 +31831,541,cult film,1359151551 +31831,541,cyberpunk,1416432977 +31831,541,dark,1416433020 +31831,541,drama,1359151553 +31831,541,dreamlike,1416432996 +31831,541,dystopia,1359151555 +31831,541,existentialism,1359151557 +31831,541,film noir,1438700340 +31831,541,future,1416432985 +31831,541,futuristic,1416432992 +31831,541,great cinematography,1359151571 +31831,541,great soundtrack,1438700350 +31831,541,Harrison Ford,1359151574 +31831,541,imdb top 250,1421010311 +31831,541,melancholy,1359151577 +31831,541,mortality,1421010335 +31831,541,neo-noir,1438700337 +31831,541,Nudity (Topless),1359151595 +31831,541,philosophical,1359151625 +31831,541,robots,1421010309 +31831,541,sci-fi,1359151643 +31831,541,stylized,1416432991 +31831,541,Vangelis,1438700341 +31831,541,visual,1421010336 +31831,586,childhood classics,1438699708 +31831,586,christmas,1438699700 +31831,586,family,1438699710 +31831,586,for kids,1438699718 +31831,586,Macaulay Culkin,1438699712 +31831,589,action,1421008578 +31831,589,android(s)/cyborg(s),1311157650 +31831,589,androids,1311157647 +31831,589,apocalypse,1311157656 +31831,589,arnold,1421008573 +31831,589,Arnold Schwarzenegger,1311157640 +31831,589,artificial intelligence,1421008575 +31831,589,assassin,1421008581 +31831,589,classic,1311157660 +31831,589,computers,1311157662 +31831,589,cyborgs,1421008587 +31831,589,dystopia,1311157664 +31831,589,future,1421008580 +31831,589,James Cameron,1421008585 +31831,589,Linda Hamilton,1421008591 +31831,589,man versus machine,1421008593 +31831,589,murder,1421008821 +31831,589,music,1421008595 +31831,589,narrated,1421008589 +31831,589,nuclear war,1311157741 +31831,589,original plot,1421008597 +31831,589,Oscar (Best Effects - Visual Effects),1311157672 +31831,589,paranoid,1311157748 +31831,589,robots,1421008577 +31831,589,Saturn Award (Best Science Fiction Film),1311157685 +31831,589,sci-fi,1311157690 +31831,589,stylized,1421008583 +31831,589,Suspense,1311157693 +31831,589,tense,1311157695 +31831,589,thriller,1311157698 +31831,589,time travel,1311157708 +31831,589,time-travel,1311157710 +31831,589,violence,1359151375 +31831,608,1980s,1453757246 +31831,608,accent,1453757316 +31831,608,atmospheric,1453757262 +31831,608,black comedy,1453757184 +31831,608,car salesman,1453757628 +31831,608,Carter Burwell,1453757263 +31831,608,Coen Brothers,1453757181 +31831,608,crime,1453757188 +31831,608,CRIME GONE AWRY,1453757472 +31831,608,cruel,1453757265 +31831,608,dark comedy,1453757183 +31831,608,dark humor,1453757208 +31831,608,Frances McDormand,1453757214 +31831,608,funny,1453757218 +31831,608,goofy,1453757404 +31831,608,great story,1453757400 +31831,608,hostage,1453757224 +31831,608,KIDNAPPING,1453757465 +31831,608,Minnesota,1453757205 +31831,608,murder,1453757189 +31831,608,murders,1453757335 +31831,608,Peter Storemare,1453757345 +31831,608,police,1453757221 +31831,608,quirky,1453757186 +31831,608,snow,1453757229 +31831,608,Steve Buscemi,1453757203 +31831,608,strong female,1453757201 +31831,608,strong female character,1453757286 +31831,608,twisted murder,1453757296 +31831,608,violence,1453757225 +31831,608,violent,1453757195 +31831,608,William H. Macy,1453757217 +31831,608,witty,1453757191 +31831,741,2D/3D hybrid Animation,1421403507 +31831,741,anime,1421403480 +31831,741,artificial intelligence,1421403482 +31831,741,complex,1421403501 +31831,741,cyberpunk,1421403476 +31831,741,cyborgs,1421403508 +31831,741,hackers,1421403510 +31831,741,Japan,1421403487 +31831,741,philosophical,1421403486 +31831,741,philosophy,1421403513 +31831,741,sci-fi,1421403502 +31831,741,techno-evolution,1421403504 +31831,741,visually appealing,1421403511 +31831,849,dystopia,1439068975 +31831,849,Kurt Russell,1439068973 +31831,910,black and white,1441642626 +31831,910,classic,1441642609 +31831,910,costumes,1441642890 +31831,910,cross dressing,1441642619 +31831,910,farce,1441642620 +31831,910,Marilyn Monroe,1441642607 +31831,910,Quotable,1441642612 +31831,910,romantic comedy,1441642632 +31831,910,screwball comedy,1441642907 +31831,924,AI,1446591974 +31831,924,aliens,1421009128 +31831,924,Amazing Cinematography,1446592067 +31831,924,apes,1446591758 +31831,924,Arthur C. Clarke,1438635110 +31831,924,artificial intelligence,1421009109 +31831,924,atmospheric,1421009111 +31831,924,based on a book,1446591727 +31831,924,camera,1446591768 +31831,924,cinematography,1421009139 +31831,924,classic,1421009115 +31831,924,computer,1446591679 +31831,924,confusing ending,1446591645 +31831,924,cult film,1421009101 +31831,924,dialogue,1446591781 +31831,924,effects,1446591782 +31831,924,enigmatic,1446591965 +31831,924,future,1421009117 +31831,924,futuristic,1421009138 +31831,924,great villain,1446591800 +31831,924,HAL 9000,1446592025 +31831,924,imdb top 250,1446591742 +31831,924,masterpiece,1421009114 +31831,924,meditative,1446591704 +31831,924,monkey,1446591807 +31831,924,music,1421009118 +31831,924,mystery,1446591755 +31831,924,Oscar (Best Effects - Visual Effects),1421009132 +31831,924,philosophical,1421009099 +31831,924,relaxing,1446591670 +31831,924,revolutionary,1446592128 +31831,924,Richard Strauss,1446591853 +31831,924,robots,1421009133 +31831,924,sci-fi,1388445389 +31831,924,set design,1446591868 +31831,924,setting:space/space ship,1446592161 +31831,924,slow,1312062689 +31831,924,soundtrack,1421009161 +31831,924,space,1388445397 +31831,924,space travel,1446591663 +31831,924,spacecraft,1446591721 +31831,924,spaceships,1312062720 +31831,924,Stanley Kubrick,1421009094 +31831,924,surreal,1421009097 +31831,924,visual,1446591674 +31831,924,visually appealing,1421009135 +31831,1036,action,1438632054 +31831,1036,action packed,1438632069 +31831,1036,Alan Rickman,1438632116 +31831,1036,Bruce Willis,1438632051 +31831,1036,christmas,1438632060 +31831,1036,explosions,1438632066 +31831,1036,good action,1438632067 +31831,1036,humorous,1438632056 +31831,1036,incompetent cops,1438632099 +31831,1036,intense,1438632070 +31831,1036,lone hero,1438632057 +31831,1036,police,1438632077 +31831,1036,skyscraper,1438632085 +31831,1036,tense,1438632061 +31831,1036,terrorism,1438632063 +31831,1036,thriller,1438632064 +31831,1036,violence,1438632085 +31831,1129,dystopia,1439068990 +31831,1129,Kurt Russell,1439068988 +31831,1129,sci-fi,1439069018 +31831,1200,action,1421008700 +31831,1200,alien,1311157990 +31831,1200,aliens,1311157993 +31831,1200,androids,1311157996 +31831,1200,atmospheric,1311157997 +31831,1200,classic,1311157999 +31831,1200,ensemble cast,1356567407 +31831,1200,franchise,1311158001 +31831,1200,horror,1311158003 +31831,1200,imdb top 250,1438704930 +31831,1200,James Cameron,1421008705 +31831,1200,military,1421008701 +31831,1200,monster,1311158005 +31831,1200,Oscar (Best Effects - Visual Effects),1311158007 +31831,1200,Saturn Award (Best Science Fiction Film),1311158011 +31831,1200,Saturn Award (Best Special Effects),1311158015 +31831,1200,Saturn Award (Best Writing),1311158020 +31831,1200,sci-fi,1311158022 +31831,1200,sequel,1438631974 +31831,1200,Sigourney Weaver,1311158028 +31831,1200,space,1311158037 +31831,1200,SPACE TRAVEL,1311158039 +31831,1200,special effects,1438704994 +31831,1200,suspense,1311158041 +31831,1200,tense,1311158043 +31831,1200,violent,1421008702 +31831,1202,1960s,1448233030 +31831,1202,black comedy,1448233000 +31831,1202,boring,1448233042 +31831,1202,British,1448233009 +31831,1202,dark comedy,1448233015 +31831,1202,drugs,1448233002 +31831,1202,drunkenness,1448233023 +31831,1202,England,1448233033 +31831,1202,homosexuality,1448234166 +31831,1202,low budget film,1448234085 +31831,1203,adapted from:play,1453759313 +31831,1203,all-male cast,1453759166 +31831,1203,based on a play,1453759169 +31831,1203,black and white,1453759203 +31831,1203,classic,1453759122 +31831,1203,confrontational,1453759146 +31831,1203,courtroom,1453759130 +31831,1203,courtroom drama,1453759118 +31831,1203,crime,1453759149 +31831,1203,dialogue driven,1453759175 +31831,1203,ensemble cast,1453759140 +31831,1203,great acting,1453759155 +31831,1203,group psychology,1453759128 +31831,1203,Henry Fonda,1453759153 +31831,1203,justice,1453759142 +31831,1203,knives,1453759183 +31831,1203,law,1453759282 +31831,1203,low budget,1453759137 +31831,1203,minimalist,1453759315 +31831,1203,murder,1453759184 +31831,1203,one room,1453759186 +31831,1203,preachy dialogue,1453759250 +31831,1203,predictable,1453759195 +31831,1203,Sidney Lumet,1453759253 +31831,1203,social commentary,1453759117 +31831,1203,thoought-provoking,1453759334 +31831,1203,thought-provoking,1453759126 +31831,1203,USA,1453759279 +31831,1206,adapted from:book,1453758818 +31831,1206,Anthony Burgess,1453758787 +31831,1206,atmospheric,1453758722 +31831,1206,author:Anthony Burgess,1453758821 +31831,1206,based on a book,1453758730 +31831,1206,Beethoven,1453758783 +31831,1206,behavior modification,1453758970 +31831,1206,brainwashing,1453758755 +31831,1206,brutal,1453758824 +31831,1206,controversial,1453758739 +31831,1206,cult film,1453758698 +31831,1206,dark,1453758846 +31831,1206,Dehumanization,1453758825 +31831,1206,depressing,1453758849 +31831,1206,disturbing,1453758694 +31831,1206,dystopia,1453758691 +31831,1206,excessive violence,1453758929 +31831,1206,Experiment Gone Wrong,1453758832 +31831,1206,good soundtrack,1453758793 +31831,1206,great music,1453758794 +31831,1206,great soundtrack,1453758762 +31831,1206,literary adaptation,1453758886 +31831,1206,Malcolm McDowell,1453758773 +31831,1206,Malcom McDowell,1453758833 +31831,1206,narrated,1453758776 +31831,1206,Nudity (Full Frontal),1453758737 +31831,1206,Nudity (Topless - Brief),1453758879 +31831,1206,psychedelic,1453758811 +31831,1206,psychological,1453758734 +31831,1206,psychological torment,1453758779 +31831,1206,psychology,1453758692 +31831,1206,quirky,1453758726 +31831,1206,rape,1453758753 +31831,1206,satire,1453758724 +31831,1206,satirical,1453758735 +31831,1206,scantily clad female,1453758809 +31831,1206,Sexualized violence,1453758798 +31831,1206,social commentary,1453758718 +31831,1206,soundtrack,1453758800 +31831,1206,stanley kubrick,1453758686 +31831,1206,stylized,1453758720 +31831,1206,surreal,1453758728 +31831,1206,Surrealism,1453758725 +31831,1206,ultra-violence,1453758961 +31831,1206,violence,1453758721 +31831,1206,violent,1453758909 +31831,1206,Voice Over Narration,1453758843 +31831,1214,acting,1450467785 +31831,1214,AI,1450467980 +31831,1214,alien,1421010049 +31831,1214,Alien Quadrilogy,1450467789 +31831,1214,alien series,1450467753 +31831,1214,aliens,1421010029 +31831,1214,Anamorphic Blow-Up,1450467890 +31831,1214,android,1450467790 +31831,1214,androids,1421010046 +31831,1214,atmospheric,1421010035 +31831,1214,Business is the antagonist,1450467869 +31831,1214,cats,1450467796 +31831,1214,characters,1450467871 +31831,1214,chestburster,1450468030 +31831,1214,chilly,1450467944 +31831,1214,classic,1421010042 +31831,1214,Classic Thriller,1450468033 +31831,1214,claustrophobic,1450467747 +31831,1214,closed spaces,1450467950 +31831,1214,command line interface,1450468050 +31831,1214,cool design,1450467799 +31831,1214,creepy,1450467755 +31831,1214,cyborg,1450467758 +31831,1214,dark,1421010039 +31831,1214,dialogue,1450467805 +31831,1214,Direction,1450467809 +31831,1214,dwelling as character,1450467907 +31831,1214,egg,1450468024 +31831,1214,eggs,1450467951 +31831,1214,evolution,1450467952 +31831,1214,evolutionary theme,1450467913 +31831,1214,exciting,1450467812 +31831,1214,female heroine,1450467778 +31831,1214,flame thrower,1450468037 +31831,1214,frightening,1450467813 +31831,1214,futuristic,1421010043 +31831,1214,H. R. Giger,1421010055 +31831,1214,heroine,1450467814 +31831,1214,horror,1421010034 +31831,1214,human prey,1450467954 +31831,1214,masterpiece,1450467820 +31831,1214,monster,1421010048 +31831,1214,monster design,1450467824 +31831,1214,Oscar (Best Effects - Visual Effects),1421010051 +31831,1214,outerspace,1450467751 +31831,1214,retro-futuristic,1450467835 +31831,1214,Ridley Scott,1421010037 +31831,1214,scary,1450467837 +31831,1214,sci-fi,1421010027 +31831,1214,science fiction,1421010052 +31831,1214,Scifi masterpiece,1450468020 +31831,1214,script,1450467838 +31831,1214,set design,1450467780 +31831,1214,sexy girls,1450467842 +31831,1214,sexy protagonist,1450467843 +31831,1214,shocks,1450467845 +31831,1214,Sigourney Weaver,1421010041 +31831,1214,slow,1450467749 +31831,1214,space,1421010030 +31831,1214,space craft,1450467765 +31831,1214,space ship,1450467847 +31831,1214,space travel,1421010038 +31831,1214,spaceship,1450467775 +31831,1214,Special Effects,1450467782 +31831,1214,story,1450467848 +31831,1214,suspense,1421010031 +31831,1214,suspenseful,1421010057 +31831,1214,tense,1421010032 +31831,1214,tension,1450467850 +31831,1214,thriller,1421010044 +31831,1214,TRAPPED OR CONFINED,1450467854 +31831,1214,violence,1438631950 +31831,1214,visceral,1421010076 +31831,1214,xenomorph,1450468060 +31831,1215,adventure,1407184048 +31831,1215,Bruce Campbell,1407184049 +31831,1215,claymation,1407184056 +31831,1215,comedy,1407184057 +31831,1215,Cult classic,1407184059 +31831,1215,cult film,1407184060 +31831,1215,dark humor,1407184062 +31831,1215,demons,1407184065 +31831,1215,Highly quotable,1407184076 +31831,1215,horror,1407184079 +31831,1215,possession,1407184117 +31831,1215,time travel,1407184103 +31831,1232,based on a book,1422556247 +31831,1232,beautifully filmed,1422556224 +31831,1232,dreamlike,1422556226 +31831,1232,dystopia,1422556191 +31831,1232,existentialism,1422556193 +31831,1232,long,1422556239 +31831,1232,masterpiece,1422556203 +31831,1232,meditative,1422556195 +31831,1232,nature,1422556229 +31831,1232,philosophical,1422556213 +31831,1232,psychological,1422556221 +31831,1232,reflective,1422556203 +31831,1232,slow,1422556240 +31831,1240,Action,1421008628 +31831,1240,androids,1421008636 +31831,1240,arnold,1421008625 +31831,1240,Arnold Schwarzenegger,1421008623 +31831,1240,classic,1421008651 +31831,1240,cyborgs,1421008633 +31831,1240,great soundtrack,1421008635 +31831,1240,highly quotable,1421008648 +31831,1240,imdb top 250,1438704353 +31831,1240,James Cameron,1421008630 +31831,1240,man versus machine,1421008645 +31831,1240,Nudity (Topless),1421008640 +31831,1240,robots,1421008629 +31831,1240,romance,1421008643 +31831,1240,Sci-Fi,1421008626 +31831,1240,sci-fi classic,1438704273 +31831,1240,tense,1438631990 +31831,1240,time travel,1421008622 +31831,1240,violent,1421008632 +31831,1261,black comedy,1407183907 +31831,1261,Bruce Campbell,1407183909 +31831,1261,cult classic,1407183913 +31831,1261,cult film,1407183915 +31831,1261,dark comedy,1407183917 +31831,1261,dark humor,1407183919 +31831,1261,demons,1407183923 +31831,1261,gore,1407183925 +31831,1261,gratuitous violence,1407183929 +31831,1261,horror,1407184086 +31831,1261,possession,1407183941 +31831,1261,splatter,1407183956 +31831,1265,alternate reality,1356567611 +31831,1265,Bill Murray,1356567616 +31831,1265,character development,1421008217 +31831,1265,Classic,1356567617 +31831,1265,comedy,1356567619 +31831,1265,deja vu,1421008214 +31831,1265,existentialism,1421008189 +31831,1265,feel good movie,1356567627 +31831,1265,feel-good,1356567629 +31831,1265,funny,1421008192 +31831,1265,hilarious,1421008190 +31831,1265,humorous,1421008203 +31831,1265,love,1421008213 +31831,1265,original plot,1421008197 +31831,1265,romance,1356567648 +31831,1265,romantic,1421008194 +31831,1265,self discovery,1356567652 +31831,1265,small town,1356567655 +31831,1265,surreal,1356567657 +31831,1265,time loop,1356567660 +31831,1270,1950s,1445630890 +31831,1270,1980s,1445630836 +31831,1270,adventure,1445630832 +31831,1270,alternate reality,1445630847 +31831,1270,Christopher Lloyd,1445630860 +31831,1270,classic,1445630833 +31831,1270,cliffhanger,1445631059 +31831,1270,comedy,1445630827 +31831,1270,Crispin Glover,1445631253 +31831,1270,DeLorean,1445630920 +31831,1270,easygoing,1445631260 +31831,1270,Funny,1445630869 +31831,1270,future,1445630856 +31831,1270,high school,1445630868 +31831,1270,Highly quotable,1445631173 +31831,1270,humor,1445631133 +31831,1270,humorous,1445631023 +31831,1270,imdb top 250,1445630919 +31831,1270,inventor,1445630960 +31831,1270,Lea Thompson,1445631700 +31831,1270,Michael J. Fox,1445630830 +31831,1270,quirky,1445630835 +31831,1270,quotable,1445630995 +31831,1270,Robert Zemeckis,1445631244 +31831,1270,rock and roll,1445631005 +31831,1270,romance,1445631098 +31831,1270,sci-fi,1445630825 +31831,1270,science fiction,1445631099 +31831,1270,silly but good,1445631031 +31831,1270,Steven Spielberg,1445630858 +31831,1270,story,1445631117 +31831,1270,teen,1445630851 +31831,1270,time machine,1445630976 +31831,1270,Time Paradox,1445630978 +31831,1270,time travel,1445630824 +31831,1270,whimsical,1445630882 +31831,1307,Billy Crystal,1438633719 +31831,1307,classic,1438633737 +31831,1307,Good Romantic Comedies,1438633728 +31831,1307,meg ryan,1438633718 +31831,1307,romance,1438633736 +31831,1307,romantic,1438633743 +31831,1307,romantic comedy,1438633729 +31831,1320,Alien,1439416047 +31831,1320,aliens,1438700099 +31831,1320,prison,1439416051 +31831,1320,sci-fi,1438700108 +31831,1320,Sigourney Weaver,1438700100 +31831,1356,Patrick Stewart,1439033255 +31831,1356,sci-fi,1439033247 +31831,1356,science fiction,1439033254 +31831,1356,space,1439033314 +31831,1356,Star Trek,1439033244 +31831,1385,action,1439069707 +31831,1385,Erika Eleniak,1439069732 +31831,1385,Nudity (Topless - Notable),1439069680 +31831,1385,nudity (topless),1439069675 +31831,1385,steven seagal,1439069704 +31831,1385,Tommy Lee Jones,1439069697 +31831,1527,action,1359151391 +31831,1527,aliens,1359151393 +31831,1527,Bruce Willis,1359151396 +31831,1527,campy,1421010464 +31831,1527,Chris Tucker,1359151416 +31831,1527,cinematography,1359151419 +31831,1527,dystopia,1359151422 +31831,1527,dystopic future,1359151424 +31831,1527,futuristic,1359151426 +31831,1527,Gary Oldman,1359151439 +31831,1527,great cinematography,1359151442 +31831,1527,humorous,1421010461 +31831,1527,Luc Besson,1359151473 +31831,1527,Milla Jovovich,1359151478 +31831,1527,Nudity (Topless - Brief),1359151484 +31831,1527,Nudity (Topless - Notable),1359151489 +31831,1527,race against time,1359151495 +31831,1527,satirical,1421010463 +31831,1527,sci-fi,1359151499 +31831,1527,seen more than once,1359151502 +31831,1527,stylized,1359151506 +31831,1527,surreal,1359151509 +31831,1527,visual,1421010466 +31831,1527,visually appealing,1421010460 +31831,1527,visually stunning,1421010467 +31831,1584,alien contact,1439158896 +31831,1584,aliens,1439158776 +31831,1584,astronomy,1439160473 +31831,1584,Carl Sagan,1439160362 +31831,1584,didactic,1439160285 +31831,1584,does god exist,1449688423 +31831,1584,faith,1439160309 +31831,1584,first contact,1439158770 +31831,1584,idealism,1449688342 +31831,1584,Jodie Foster,1439158599 +31831,1584,Latin America,1449688375 +31831,1584,Matthew McConaughey,1439158642 +31831,1584,New Mexico,1449688377 +31831,1584,outer space,1439160481 +31831,1584,overtly ideological,1439158719 +31831,1584,politics,1439158873 +31831,1584,preachy,1439158710 +31831,1584,religion,1439158805 +31831,1584,ridiculous,1439158679 +31831,1584,Robert Zemeckis,1439158763 +31831,1584,S.E.T.I.,1439158630 +31831,1584,sci-fi,1439158978 +31831,1584,science,1439158619 +31831,1584,science fiction,1439158981 +31831,1584,science vs faith,1439158688 +31831,1584,space,1439158993 +31831,1584,space travel,1439158990 +31831,1584,spiritual search,1439160460 +31831,1584,unpredictable,1449688418 +31831,1689,Bill Murray,1438890189 +31831,1689,funny,1438890200 +31831,1689,mistaken identity,1438890215 +31831,1690,Alien,1439415993 +31831,1690,alien series,1439415964 +31831,1690,aliens,1439415957 +31831,1690,Bleak,1439415879 +31831,1690,dystopic future,1439415974 +31831,1690,franchise killer,1439416109 +31831,1690,sci-fi,1439415958 +31831,1690,science fiction,1439415999 +31831,1690,Sigourney Weaver,1439415966 +31831,1690,space,1439415959 +31831,1690,Winona Ryder,1439415970 +31831,1721,atmospheric,1421010237 +31831,1721,based on a true story,1421010272 +31831,1721,bittersweet,1421010242 +31831,1721,catastrophe,1421010249 +31831,1721,disaster,1421010239 +31831,1721,drama,1421010241 +31831,1721,historical,1421010247 +31831,1721,James Cameron,1421010287 +31831,1721,Kate Winslet,1421010244 +31831,1721,Leonardo DiCaprio,1421010236 +31831,1721,love story,1421010246 +31831,1721,Nudity (Topless - Notable),1421010289 +31831,1721,Nudity (Topless),1421010283 +31831,1721,Oscar (Best Cinematography),1421010279 +31831,1721,Oscar (Best Directing),1421010295 +31831,1721,Oscar (Best Picture),1421010240 +31831,1721,romance,1421010234 +31831,1721,sentimental,1421010280 +31831,1748,aliens,1438714448 +31831,1748,atmospheric,1438714436 +31831,1748,dark,1438714467 +31831,1748,dreamlike,1438714457 +31831,1748,dystopia,1438714430 +31831,1748,fake memories,1438714570 +31831,1748,film noir,1438714500 +31831,1748,Jennifer Connelly,1438714755 +31831,1748,memory,1438714469 +31831,1748,Nudity (Topless),1438714526 +31831,1748,predictable ending,1438714584 +31831,1748,sci-fi,1438714434 +31831,1748,stylized,1438714456 +31831,1748,surreal,1438714431 +31831,1748,telekinesis,1438714750 +31831,1748,visually appealing,1438714471 +31831,1882,action,1447541322 +31831,1882,Godzilla,1447541308 +31831,1882,Jean Reno,1447541303 +31831,1882,monster,1447541311 +31831,1882,New York City,1447541317 +31831,1882,sci-fi,1447541320 +31831,1909,aliens,1434282515 +31831,1909,Based on a TV show,1434282538 +31831,1909,conspiracy,1434282530 +31831,1909,David Duchovny,1434282521 +31831,1909,FBI,1434282519 +31831,1909,science fiction,1434282539 +31831,1909,scifi,1434282541 +31831,2011,1950s,1445631372 +31831,2011,1955,1445631378 +31831,2011,1980s,1445631314 +31831,2011,1985,1445631375 +31831,2011,2010s,1445631377 +31831,2011,2015,1445631358 +31831,2011,adventure,1445631619 +31831,2011,alternate reality,1445631330 +31831,2011,Billy Zane,1445631675 +31831,2011,Christopher Lloyd,1445631311 +31831,2011,classic,1445631318 +31831,2011,cliffhanger,1445631336 +31831,2011,comedy,1445631317 +31831,2011,Complex,1445631331 +31831,2011,delorean,1445631459 +31831,2011,dystopia,1445631398 +31831,2011,Elizabeth Shue,1445631463 +31831,2011,Funny,1445631469 +31831,2011,future,1445631334 +31831,2011,gambling,1445631467 +31831,2011,humorous,1445631382 +31831,2011,James Tolkan,1445631685 +31831,2011,Lea Thompson,1445631633 +31831,2011,Michael J. Fox,1445631313 +31831,2011,multiple roles,1445632028 +31831,2011,Robert Zemeckis,1445631392 +31831,2011,sci-fi,1445631309 +31831,2011,science fiction,1445631394 +31831,2011,sports almanac,1445631402 +31831,2011,Thomas F. Wilson,1445631653 +31831,2011,time machine,1445631500 +31831,2011,time travel,1445631308 +31831,2012,adventure,1445631770 +31831,2012,Christopher Lloyd,1445631728 +31831,2012,classic,1445631794 +31831,2012,comedy,1445631999 +31831,2012,Elisabeth Shue,1445631911 +31831,2012,humorous,1445632002 +31831,2012,Lea Thompson,1445631817 +31831,2012,Mary Steenburgen,1445631891 +31831,2012,Michael J. Fox,1445631732 +31831,2012,multiple roles,1445632017 +31831,2012,Robert Zemeckis,1445631893 +31831,2012,sci-fi,1445631725 +31831,2012,sci-fi western,1445631849 +31831,2012,science fiction,1445631754 +31831,2012,sequel,1445631740 +31831,2012,Thomas F. Wilson,1445631858 +31831,2012,time machine,1445631861 +31831,2012,time travel,1445631722 +31831,2012,trains,1445631751 +31831,2012,western,1445631756 +31831,2025,adapted from:book,1438704401 +31831,2025,based on a book,1438704403 +31831,2025,erotic,1438704397 +31831,2025,lolita,1438704396 +31831,2025,lust,1438700245 +31831,2025,nymphet,1422274929 +31831,2025,temptation,1438704398 +31831,2134,1980s,1441640053 +31831,2134,80's classic,1441640371 +31831,2134,Bill Paxton,1441640355 +31831,2134,Chicago,1441640431 +31831,2134,comedy,1441640056 +31831,2134,geeks,1441640421 +31831,2134,high school,1441640429 +31831,2134,John Hughes,1441640296 +31831,2134,Kelly LeBrock,1441640278 +31831,2134,nerds,1441640420 +31831,2134,Nudity (Topless - Brief),1441640070 +31831,2134,old school,1441640480 +31831,2134,Robert Downey Jr.,1441640182 +31831,2134,teen,1441640052 +31831,2134,teen movie,1441640474 +31831,2134,teens,1441640487 +31831,2318,aging,1439931480 +31831,2318,black comedy,1439931371 +31831,2318,child abuse,1439931177 +31831,2318,Cynthia Stevenson,1439931612 +31831,2318,dark,1439931096 +31831,2318,dark comedy,1439931083 +31831,2318,dark humor,1439931082 +31831,2318,dialogue,1439931136 +31831,2318,Dylan Baker,1439931555 +31831,2318,dysfunctional family,1439931085 +31831,2318,father-son relationship,1439931445 +31831,2318,immigrants,1439931363 +31831,2318,Jane Adams,1439931543 +31831,2318,Lara Flynn Boyle,1439931329 +31831,2318,loneliness,1439931080 +31831,2318,long,1439931403 +31831,2318,masturbation,1439931409 +31831,2318,Nudity (Topless),1439931507 +31831,2318,pedophile,1439931349 +31831,2318,Philip Seymour Hoffman,1439931086 +31831,2318,rape,1439931173 +31831,2318,relationships,1439931106 +31831,2318,sexual abuse,1439931114 +31831,2318,sexuality,1439931099 +31831,2318,social commentary,1439931088 +31831,2318,Todd Solondz,1439931649 +31831,2322,dystopia,1438631668 +31831,2322,Kurt Russell,1438630976 +31831,2393,aliens,1439243781 +31831,2393,Patrick Stewart,1439243812 +31831,2393,sci-fi,1439243789 +31831,2393,science fiction,1439243816 +31831,2393,space,1439243790 +31831,2393,Star Trek,1439243775 +31831,2424,bookshop,1438633822 +31831,2424,happy ending,1438633841 +31831,2424,Meg Ryan,1438633809 +31831,2424,Romance,1438633811 +31831,2424,romantic comedy,1438633813 +31831,2424,Tom Hanks,1438633810 +31831,2542,black comedy,1438700474 +31831,2542,british,1438700469 +31831,2542,dark comedy,1438700468 +31831,2542,england,1438700503 +31831,2542,funny,1438700491 +31831,2542,Guy Ritchie,1438700471 +31831,2542,multiple storylines,1438700476 +31831,2542,organized crime,1438700473 +31831,2542,stylish,1438700477 +31831,2542,violence,1438700484 +31831,2683,goofy,1446321362 +31831,2683,Heather Graham,1446321365 +31831,2683,Mike Myers,1446321355 +31831,2683,multiple roles,1446321511 +31831,2683,parody,1446321353 +31831,2683,Silly,1446321368 +31831,2683,sixties,1446321358 +31831,2692,alternate endings,1443219656 +31831,2692,animated segments,1443219728 +31831,2692,animation,1443219718 +31831,2692,Franka Potente,1443219689 +31831,2692,German,1443219677 +31831,2692,high-pitched screaming,1443219709 +31831,2692,humorous,1443219647 +31831,2692,nonlinear,1443219657 +31831,2692,whimsical,1443219633 +31831,2797,1980s,1450223896 +31831,2797,80's,1450223907 +31831,2797,carnival,1450223974 +31831,2797,Child as Adult,1450223883 +31831,2797,childhood,1450223930 +31831,2797,children,1450223932 +31831,2797,classic,1450224003 +31831,2797,comedy,1450223906 +31831,2797,coming of age,1450223942 +31831,2797,Elizabeth Perkins,1450223954 +31831,2797,Excellent screen play and execution,1450223957 +31831,2797,growing up,1450223973 +31831,2797,New York,1450223912 +31831,2797,New York City,1450223894 +31831,2797,Oscar Nominee: Lead Actor,1450223987 +31831,2797,Oscar Nominee: Original Screenplay,1450223988 +31831,2797,piano,1450223945 +31831,2797,Romance,1450223947 +31831,2797,Tom Hanks,1450223881 +31831,2797,toy store,1450223925 +31831,2797,toys,1450223905 +31831,2916,alternate reality,1421008731 +31831,2916,arnold,1421008714 +31831,2916,Arnold Schwarzenegger,1421008716 +31831,2916,brutal violence,1438703200 +31831,2916,conspiracy,1421008723 +31831,2916,cult film,1421008779 +31831,2916,cyberpunk,1421008725 +31831,2916,dystopia,1421008719 +31831,2916,espionage,1421008777 +31831,2916,heroism,1421008802 +31831,2916,innocent person on the run,1438703306 +31831,2916,mars,1421008728 +31831,2916,memory,1421008726 +31831,2916,murder,1421008801 +31831,2916,mutants,1421008741 +31831,2916,original plot,1421008772 +31831,2916,Sci Fi,1421008778 +31831,2916,sci-fi,1421008722 +31831,2916,science fiction,1421008753 +31831,2916,Sharon Stone,1438703147 +31831,2916,space travel,1421008740 +31831,2916,Special Effects,1438703149 +31831,2916,terrorism,1421008774 +31831,2916,virtual reality,1421008721 +31831,2985,cheesy,1440019573 +31831,2985,corruption,1440019565 +31831,2985,cyborgs,1440019534 +31831,2985,Detroit,1440019607 +31831,2985,dystopia,1440019533 +31831,2985,police,1440019562 +31831,2985,robots,1440019535 +31831,2985,sci-fi,1440019537 +31831,2985,social commentary,1440019538 +31831,2985,stop motion,1440019599 +31831,2985,violence,1440019553 +31831,2985,violent,1440019530 +31831,2986,cyborgs,1440019809 +31831,2986,dystopia,1440019819 +31831,2986,robots,1440019808 +31831,2987,animation,1449701998 +31831,2987,animation & live action interact,1449701986 +31831,2987,Bob Hoskins,1449702260 +31831,2987,cartoon-reality crossover,1449701995 +31831,2987,Christopher Lloyd,1449702262 +31831,2987,comedy,1449702002 +31831,2987,live action/animation,1449701999 +31831,2987,Oscar (Best Editing),1449702110 +31831,2987,Oscar (Best Effects - Sound Effects Editing),1449702126 +31831,2987,Oscar (Best Effects - Visual Effects),1449702115 +31831,2987,private detective,1449702271 +31831,2987,Robert Zemeckis,1449701991 +31831,2987,Roger Rabbit,1449702011 +31831,2987,Saturn Award (Best Special Effects),1449702122 +31831,2987,toontown,1449702006 +31831,3175,Alan Rickman,1441643246 +31831,3175,aliens,1441643147 +31831,3175,Dean Parisot,1441643262 +31831,3175,funny,1441643138 +31831,3175,parody,1441643039 +31831,3175,Sam Rockwell,1441643254 +31831,3175,satire,1441643052 +31831,3175,sci-fi,1441643055 +31831,3175,Sigourney Weaver,1441643054 +31831,3175,space,1441643050 +31831,3175,Tim Allen,1441643193 +31831,3175,Tony Shalhoub,1441643244 +31831,3300,aliens,1438700624 +31831,3300,futuristic,1438700622 +31831,3300,sci-fi,1438700620 +31831,3300,suspense,1438700625 +31831,3354,alien artifacts,1453228749 +31831,3354,bad science,1453228737 +31831,3354,Brian De Palma,1453228804 +31831,3354,Connie Nielsen,1453228761 +31831,3354,Cydonia,1453229456 +31831,3354,disappointing ending,1453228752 +31831,3354,Don Cheadle,1453228798 +31831,3354,face,1453228802 +31831,3354,face on mars,1453229289 +31831,3354,first contact,1453228755 +31831,3354,Gary Sinise,1453228762 +31831,3354,Jerry O' Connell,1453228786 +31831,3354,mars,1453228741 +31831,3354,science fiction,1453228742 +31831,3354,self sacrifice,1453229300 +31831,3354,space station,1453229281 +31831,3354,space travel,1453228744 +31831,3354,spacecraft,1453229316 +31831,3354,Tim Robbins,1453228766 +31831,3527,action,1311157791 +31831,3527,action-packed,1438704672 +31831,3527,alien,1311157793 +31831,3527,aliens,1311157795 +31831,3527,Arnold Schwarzenegger,1311157799 +31831,3527,classic,1311157805 +31831,3527,dialogue,1421008840 +31831,3527,firearms,1440019995 +31831,3527,guns,1311157808 +31831,3527,hunting,1421008837 +31831,3527,Jesse Ventura,1421008863 +31831,3527,John McTiernan,1438632041 +31831,3527,macho,1440019992 +31831,3527,military,1421008839 +31831,3527,predator,1311157816 +31831,3527,sci-fi,1311157818 +31831,3527,scifi cult,1311157820 +31831,3527,survival,1421008831 +31831,3527,suspenseful,1440019984 +31831,3527,The story,1311157845 +31831,3527,violent,1421008830 +31831,3527,weapons,1311157830 +31831,3697,action,1356567456 +31831,3697,aliens,1356567457 +31831,3697,Bill Paxton,1356567545 +31831,3697,Danny Glover,1356567563 +31831,3697,hunting,1356567476 +31831,3697,monster,1422277116 +31831,3697,predator,1356567495 +31831,3697,spaceship,1356567502 +31831,3697,voodoo,1356567521 +31831,3698,adapted from:book,1440019261 +31831,3698,Arnold Schwarzenegger,1440019116 +31831,3698,author:Stephen King,1440019190 +31831,3698,bad acting,1440019238 +31831,3698,based on a book,1440019265 +31831,3698,corruption,1440019131 +31831,3698,Dystopia,1440019119 +31831,3698,dystopic future,1440019175 +31831,3698,reality TV,1440019181 +31831,3698,stephen king,1440019162 +31831,3698,television,1440019123 +31831,3698,wrongful imprisonment,1440019207 +31831,3702,Australia,1437770955 +31831,3702,car chase,1437770918 +31831,3702,cars,1437770962 +31831,3702,cult classic,1437770964 +31831,3702,dystopia,1437770917 +31831,3702,gangs,1437770967 +31831,3702,lone hero,1437770942 +31831,3702,low budget,1437770980 +31831,3702,Mel Gibson,1437771281 +31831,3702,motorcycle,1437770948 +31831,3702,post apocalyptic,1437770921 +31831,3702,post-apocalyptic,1437770916 +31831,3702,revenge,1437770941 +31831,3702,violent,1437770933 +31831,3703,action,1437770994 +31831,3703,car chase,1437770996 +31831,3703,desert,1437770998 +31831,3703,dystopia,1437770988 +31831,3703,lone hero,1437770991 +31831,3703,Mel Gibson,1437771285 +31831,3703,Nudity (Topless),1437771011 +31831,3703,Post apocalyptic,1437770993 +31831,3703,post-apocalyptic,1437770987 +31831,3703,sequel,1437771005 +31831,4105,Bruce Campbell,1407183793 +31831,4105,Cult classic,1407183805 +31831,4105,cult film,1407183811 +31831,4105,dark humor,1407183814 +31831,4105,demons,1407183817 +31831,4105,horror,1407184083 +31831,4105,low budget,1407183849 +31831,4105,splatter,1407183951 +31831,4132,80's,1450974563 +31831,4132,80's cheese,1450973360 +31831,4132,Andrew McCarthy,1450973365 +31831,4132,mannequin,1450974374 +31831,4132,Michael Gottlieb,1450973366 +31831,4132,scantily clad female,1450974402 +31831,4132,security guard,1450974449 +31831,4132,window dresser,1450973379 +31831,4226,amnesia,1359151342 +31831,4226,backwards,1447594826 +31831,4226,black and white,1311157966 +31831,4226,brain teaser,1447594853 +31831,4226,captivating,1447594855 +31831,4226,Carrie-Anne Moss,1421008551 +31831,4226,cerebral,1421008496 +31831,4226,Christopher Nolan,1421008503 +31831,4226,complex,1447594830 +31831,4226,complicated,1311157874 +31831,4226,complicated plot,1421008516 +31831,4226,confusing,1447595068 +31831,4226,cryptic,1447594856 +31831,4226,cult film,1311157876 +31831,4226,dark,1421008474 +31831,4226,death,1311157964 +31831,4226,dreamlike,1421008464 +31831,4226,ending,1447594970 +31831,4226,flashbacks,1447594975 +31831,4226,genius,1447594955 +31831,4226,good plot twists,1447594838 +31831,4226,Good story,1447594943 +31831,4226,great ending,1421008476 +31831,4226,gritty,1421008532 +31831,4226,Guy Pearce,1421008505 +31831,4226,identity,1421008552 +31831,4226,imdb top 250,1447594920 +31831,4226,interesting,1447594924 +31831,4226,investigation,1359151338 +31831,4226,Los Angeles,1447594990 +31831,4226,memory,1359151328 +31831,4226,memory loss,1359151325 +31831,4226,mental illness,1447594864 +31831,4226,mind-bending,1447594823 +31831,4226,Mindfuck,1421008472 +31831,4226,mystery,1421008462 +31831,4226,narrated,1421008482 +31831,4226,neo noir,1447594994 +31831,4226,neo-noir,1447594841 +31831,4226,non-linear,1421008554 +31831,4226,nonlinear,1311157903 +31831,4226,original,1447594941 +31831,4226,original idea,1447594997 +31831,4226,paranoia,1359151331 +31831,4226,paranoid,1359151333 +31831,4226,plot,1447595003 +31831,4226,plot twist,1421008501 +31831,4226,psychological,1311157921 +31831,4226,psychological thriller,1447594877 +31831,4226,psychology,1311157922 +31831,4226,revenge,1421008479 +31831,4226,reverse timeline,1447594849 +31831,4226,short-term memory loss,1421008498 +31831,4226,story,1447594851 +31831,4226,storytelling,1421008468 +31831,4226,stylized,1311157931 +31831,4226,suspense,1447594888 +31831,4226,tattoo,1447595090 +31831,4226,tense,1311157933 +31831,4226,thought provoking,1447594922 +31831,4226,twist ending,1311157936 +31831,4226,twists & turns,1311157938 +31831,4226,unique,1447595017 +31831,4226,violence,1447594801 +31831,4262,Al Pacino,1388445617 +31831,4262,Amazing Cinematography,1388445620 +31831,4262,atmospheric,1388445623 +31831,4262,classic,1388445627 +31831,4262,corruption,1388445630 +31831,4262,crime,1388445631 +31831,4262,drug abuse,1388445638 +31831,4262,drugs,1388445642 +31831,4262,gangster,1388445647 +31831,4262,gangsters,1388445649 +31831,4262,imdb top 250,1438699955 +31831,4262,mafia,1388445670 +31831,4262,Miami,1438699959 +31831,4262,organized crime,1388445677 +31831,4262,remake,1388445684 +31831,4262,violence,1388445680 +31831,4262,violent,1438699960 +31831,4308,colourful,1421010109 +31831,4308,dramatic,1438700169 +31831,4308,Ewan McGregor,1421010101 +31831,4308,great soundtrack,1438700167 +31831,4308,musical,1421010096 +31831,4308,Nicole Kidman,1421010100 +31831,4308,passionate,1421010110 +31831,4308,quirky,1421010102 +31831,4308,sentimental,1421010104 +31831,4308,Sexualized violence,1421010107 +31831,4308,stylized,1421010098 +31831,4308,visually stunning,1438700166 +31831,4526,aliens,1441643637 +31831,4526,Kim Basinger,1441643631 +31831,4553,consumerism,1394921495 +31831,4553,cult film,1438631711 +31831,4553,dystopia,1394921533 +31831,4553,satire,1394921508 +31831,4788,Oscar (Best Foreign Language Film),1437833585 +31831,4788,Russian,1438703342 +31831,4973,Audrey Tautou,1438632420 +31831,4973,beautifully filmed,1438632395 +31831,4973,comedy,1438632408 +31831,4973,cult film,1438632416 +31831,4973,feel good movie,1438632458 +31831,4973,feel-good,1438632397 +31831,4973,France,1438632434 +31831,4973,French,1438632418 +31831,4973,french movie,1438632457 +31831,4973,imdb top 250,1438632427 +31831,4973,love,1438632439 +31831,4973,narrated,1438632451 +31831,4973,Paris,1438632399 +31831,4973,quirky,1438632396 +31831,4973,quirky romantic,1438632463 +31831,4973,romance,1438632401 +31831,4973,romantic,1438632474 +31831,4973,stylized,1438632402 +31831,4973,sweet,1438632460 +31831,4973,visually appealing,1438632415 +31831,4973,whimsical,1438632400 +31831,5235,Alastair Duncan,1447798534 +31831,5235,creature,1447798598 +31831,5235,flood,1447798863 +31831,5235,flooding,1447798706 +31831,5235,horror,1421010615 +31831,5235,Kim Cattrall,1447798497 +31831,5235,monster,1421010616 +31831,5235,neo noir,1447798727 +31831,5235,police,1447798753 +31831,5235,Rutger Hauer,1447798475 +31831,5235,sci-fi,1421010614 +31831,5459,aliens,1447541178 +31831,5459,comedy,1447541224 +31831,5459,sci-fi,1447541182 +31831,5459,sequel,1447541222 +31831,5459,Tommy Lee Jones,1447541174 +31831,5459,Will Smith,1447541171 +31831,5577,Claire Danes,1447542482 +31831,5577,Kieran Culkin,1447542480 +31831,5944,aliens,1439033324 +31831,5944,lousy script,1439033359 +31831,5944,Patrick Stewart,1439033326 +31831,5944,sci-fi,1439033317 +31831,5944,science fiction,1439033333 +31831,5944,space,1439033306 +31831,5944,Star Trek,1439033304 +31831,5945,adapted from:book,1438633337 +31831,5945,based on a book,1438633338 +31831,5945,dark comedy,1438633320 +31831,5945,Depressing,1438633330 +31831,5945,Jack Nicholson,1438633318 +31831,5945,loneliness,1438633315 +31831,5945,satire,1438633334 +31831,5959,dark,1451169950 +31831,5959,harsh,1451169982 +31831,5959,Joe Carnahan,1451169964 +31831,5959,Ray Liotta,1451169970 +31831,5959,tense,1451169943 +31831,5959,undercover cop,1451169952 +31831,6281,dialogue driven,1447541836 +31831,6281,New York City,1447541856 +31831,6281,phone booth,1447541840 +31831,6537,action,1421008677 +31831,6537,androids,1421008686 +31831,6537,apocalypse,1421008678 +31831,6537,Arnold Schwarzenegger,1421008674 +31831,6537,artificial intelligence,1421008676 +31831,6537,big budget,1421008690 +31831,6537,car chase,1421008687 +31831,6537,franchise,1421008670 +31831,6537,murder,1421008688 +31831,6537,nuclear war,1421008691 +31831,6537,Nudity (Topless),1421008685 +31831,6537,time travel,1421008672 +31831,6664,action,1451765573 +31831,6664,Arnold Schwarzenegger,1451765563 +31831,6664,bad acting,1451765653 +31831,6664,classic action movie,1451765589 +31831,6664,crime,1451765591 +31831,6664,death,1451765592 +31831,6664,father daughter relationship,1451766000 +31831,6664,flight attendant,1451766040 +31831,6664,girl,1451765598 +31831,6664,hostage,1451765602 +31831,6664,island,1451765777 +31831,6664,jokes,1451765605 +31831,6664,kidnapped daughter,1451765893 +31831,6664,kidnapping,1451765678 +31831,6664,Mark L. Lester,1451765622 +31831,6664,military,1451765579 +31831,6664,murder,1451765574 +31831,6664,nostalgic,1451765582 +31831,6664,nudity (topless - brief),1451765876 +31831,6664,one man army,1451765757 +31831,6664,RACE AGAINST TIME,1451765578 +31831,6664,rescue,1451765767 +31831,6664,rocket launcher,1451765969 +31831,6664,shooting,1451765608 +31831,6664,tense,1451765585 +31831,6664,violence,1451765612 +31831,6711,Amazing Cinematography,1356566966 +31831,6711,atmospheric,1356566968 +31831,6711,Bill Murray,1356566970 +31831,6711,bittersweet,1356566971 +31831,6711,complex characters,1356566975 +31831,6711,cultural differences,1421008096 +31831,6711,friendship,1421008019 +31831,6711,great cinematograhy,1356566979 +31831,6711,intelligent,1356566981 +31831,6711,isolation,1421008018 +31831,6711,Japan,1356567003 +31831,6711,loneliness,1421008024 +31831,6711,Melancholic,1356567005 +31831,6711,music,1356567009 +31831,6711,nocturnal,1421008094 +31831,6711,Oscar Nominee: Director,1438633243 +31831,6711,poignant,1421008128 +31831,6711,reflective,1356567022 +31831,6711,relationships,1356567028 +31831,6711,Scarlett Johansson,1356567029 +31831,6711,seen more than once,1356567035 +31831,6711,slow,1356567039 +31831,6711,Sofia Coppola,1421008092 +31831,6711,tokyo,1356567042 +31831,6711,urbane,1421008022 +31831,6711,visually appealing,1421008098 +31831,6711,wistful,1421008114 +31831,6867,charming,1438633394 +31831,6867,depression,1438633372 +31831,6867,friendship,1438633362 +31831,6867,interesting characters,1438633370 +31831,6867,loneliness,1438633354 +31831,6867,Michelle Williams,1438633385 +31831,6867,quirky,1438633361 +31831,6867,small town,1438633369 +31831,6867,trains,1438633357 +31831,6867,unlikely friendships,1438633446 +31831,6870,adapted from:book,1451162484 +31831,6870,author:Dennis Lehane,1451162486 +31831,6870,based on a book,1451162268 +31831,6870,based on book,1451162547 +31831,6870,boston,1451162473 +31831,6870,brutality,1451162445 +31831,6870,child abuse,1451162248 +31831,6870,Childhood Friends,1451162489 +31831,6870,Clint Eastwood,1451162216 +31831,6870,crime,1451162234 +31831,6870,Dark,1451162236 +31831,6870,Dark hero,1451162256 +31831,6870,drama,1451162231 +31831,6870,Dramatic,1451162446 +31831,6870,Exceptional Acting,1451162449 +31831,6870,family,1451162244 +31831,6870,friendship,1451162477 +31831,6870,great acting,1451162239 +31831,6870,great cast,1451162498 +31831,6870,Kevin Bacon,1451162260 +31831,6870,kidnapping,1451162434 +31831,6870,Laura Linney,1451162508 +31831,6870,Laurence Fishburne,1451162511 +31831,6870,Marcia Gay Harden,1451162519 +31831,6870,murder,1451162437 +31831,6870,mystery,1451162230 +31831,6870,Nudity (Full Frontal - Brief),1451162458 +31831,6870,Oscar (Best Actor),1451162430 +31831,6870,Oscar (Best Supporting Actor),1451162550 +31831,6870,Oscar Nominee: Director,1451162554 +31831,6870,paedophilia,1451162481 +31831,6870,Police,1451162465 +31831,6870,revenge,1451162265 +31831,6870,Sean Penn,1451162218 +31831,6870,serious,1451162536 +31831,6870,stereotypes,1451162471 +31831,6870,Suspense,1451162475 +31831,6870,thriller,1451162238 +31831,6870,Tim Robbins,1451162441 +31831,6870,twist ending,1451162227 +31831,6870,USA,1451162542 +31831,6870,violence,1451162543 +31831,6870,working class,1451162246 +31831,6932,ambition,1448129584 +31831,6932,corruption,1448129655 +31831,6932,Fraud,1448129602 +31831,6932,hoax,1448129580 +31831,6932,journalism,1448129570 +31831,6932,lies,1448129615 +31831,6932,magazines,1448129595 +31831,6932,news industry,1448129589 +31831,6932,news media,1448129592 +31831,6932,newspaper theme,1448129659 +31831,6932,slow and predictable plot,1448129678 +31831,6932,true story,1448129577 +31831,6932,WORK ETHICS,1448129664 +31831,6932,workaholic,1448129632 +31831,6968,action,1421009685 +31831,6968,funny,1421009466 +31831,6968,horror,1421009684 +31831,6968,humor,1421009669 +31831,6968,robot,1421009477 +31831,6968,satire,1421009353 +31831,6968,sci-fi,1421009472 +31831,6979,artificial intelligence,1438890303 +31831,6979,Cold War,1438890298 +31831,6979,computers,1438890300 +31831,6979,hackers,1438890306 +31831,6979,Matthew Broderick,1438890249 +31831,6979,nuclear war,1438890305 +31831,7228,amateur detective,1414015357 +31831,7228,animation,1414015359 +31831,7228,HOT actress,1414015309 +31831,7228,Kim Basinger,1414015232 +31831,7318,based on a myth,1447542030 +31831,7318,based on biblical story,1447542072 +31831,7318,bible,1447542000 +31831,7318,Biblical,1447541978 +31831,7318,bloody,1447541975 +31831,7318,boring,1447542146 +31831,7318,brutal,1447541992 +31831,7318,Christian,1447541982 +31831,7318,Christianity,1447541967 +31831,7318,controversial,1447542012 +31831,7318,gore,1447542085 +31831,7318,gross,1447542102 +31831,7318,inaccurate historical account,1447542094 +31831,7318,jesus,1447541965 +31831,7318,Jesus Christ,1447541971 +31831,7318,Mel Gibson,1447542004 +31831,7318,overrated,1447542002 +31831,7318,propaganda,1447541995 +31831,7318,religion,1447541969 +31831,7318,Sadistic,1447542007 +31831,7318,torture,1447541985 +31831,7318,violent,1447541974 +31831,7347,based on a book,1447542267 +31831,7347,dog killing,1447542286 +31831,7347,John Turturro,1447542265 +31831,7347,Johnny Depp,1447542252 +31831,7347,murder,1447542278 +31831,7347,mystery,1447542279 +31831,7347,psychological,1447542255 +31831,7347,schizophrenia,1447542271 +31831,7347,split personality,1447542258 +31831,7347,Stephen King,1447542251 +31831,7347,suspense,1447542281 +31831,7347,twist ending,1447542290 +31831,7347,writer,1447542269 +31831,7361,amnesia,1438632891 +31831,7361,beautiful,1438632877 +31831,7361,bittersweet,1438632822 +31831,7361,comedy,1438632872 +31831,7361,complicated,1438632880 +31831,7361,cult film,1356567359 +31831,7361,dreamlike,1438632856 +31831,7361,emotional,1438632894 +31831,7361,imdb top 250,1438632892 +31831,7361,Jim Carrey,1356567330 +31831,7361,Kate Winslet,1356567332 +31831,7361,Kirsten Dunst,1356567335 +31831,7361,love,1438632871 +31831,7361,melancholy,1356567339 +31831,7361,memory,1356567341 +31831,7361,nonlinear,1356567342 +31831,7361,psychology,1356567344 +31831,7361,quirky,1438632824 +31831,7361,romance,1356567348 +31831,7361,romantic,1438632893 +31831,7361,surreal,1356567351 +31831,7361,surrealism,1356567352 +31831,7361,thought-provoking,1438632819 +31831,8376,boring,1438803722 +31831,8376,dull,1438803726 +31831,8376,geek,1438803714 +31831,8376,high school,1438803719 +31831,8376,ironic,1438803745 +31831,8376,misfits,1438803739 +31831,8376,nerds,1438803710 +31831,8376,overrated,1438803829 +31831,8376,Stupid as Hell,1298068984 +31831,8376,unfunny,1438803763 +31831,8529,airport,1356567991 +31831,8529,broken English,1438700325 +31831,8529,Catherine Zeta-Jones,1356567999 +31831,8529,comedy,1356568003 +31831,8529,drama,1356568008 +31831,8529,emotion!,1356568011 +31831,8529,great acting,1421010486 +31831,8529,heartfelt,1421010488 +31831,8529,humorous,1356568024 +31831,8529,original plot,1421010485 +31831,8529,spielberg,1356568038 +31831,8529,Steven Spielberg,1356568045 +31831,8529,Tom Hanks,1356568053 +31831,8529,underrated,1356568056 +31831,8638,bittersweet,1438633129 +31831,8638,dialogue,1438633115 +31831,8638,dialogue driven,1438633156 +31831,8638,emotional,1438633122 +31831,8638,Ethan Hawke,1438633126 +31831,8638,great dialogue,1438633119 +31831,8638,imdb top 250,1439143030 +31831,8638,intelligent,1439142458 +31831,8638,Julie Delpy,1438633125 +31831,8638,long takes,1439143107 +31831,8638,love,1439142786 +31831,8638,minimalist,1438633117 +31831,8638,Paris,1438633112 +31831,8638,philosophical,1438633120 +31831,8638,philosophy,1439142967 +31831,8638,quirky,1438633128 +31831,8638,Richard Linklater,1439142512 +31831,8638,romance,1438633118 +31831,8638,romantic,1438633114 +31831,8638,sequel,1438633123 +31831,8638,talky,1439142705 +31831,8638,Verbose,1438633132 +31831,8666,bad acting,1447543200 +31831,8666,basketball,1447543281 +31831,8666,comic book,1447543203 +31831,8666,DC Comics,1447543299 +31831,8666,Halle Berry,1447543162 +31831,8666,super-hero,1447543166 +31831,8666,superhero,1447543170 +31831,8666,wasted potential,1447543219 +31831,8865,aviation,1422274999 +31831,8865,dieselpunk,1422274997 +31831,8865,future art deco,1422275001 +31831,8865,giant robots,1422274994 +31831,8865,overly stylised,1422275013 +31831,8865,steampunk,1422274995 +31831,8949,depression,1438633283 +31831,8949,dialogue driven,1438633290 +31831,8949,friendship,1438633274 +31831,8949,funny,1438633286 +31831,8949,Melancholic,1438633276 +31831,8949,midlife crisis,1438633278 +31831,8949,relationships,1438633294 +31831,8949,road trip,1438633271 +31831,8949,wine,1438633270 +31831,8963,Claire Danes,1388314124 +31831,8963,Joaquin Phoenix,1388314111 +31831,8963,Sean Penn,1388314133 +31831,8963,strange,1388314956 +31831,8963,surreal,1388315013 +31831,8963,visually appealing,1388314921 +31831,26242,chase,1423086901 +31831,26242,road rage,1423086916 +31831,26242,thriller,1423086900 +31831,26242,truck,1423086906 +31831,26285,alien,1438699821 +31831,26285,artificial intelligence,1438699791 +31831,26285,sci-fi,1438699771 +31831,26285,scifi,1438699754 +31831,26285,space,1438699777 +31831,26347,alcohol abuse,1421010836 +31831,26347,funny,1421010795 +31831,26347,humor,1421010795 +31831,26347,new year's eve,1421010854 +31831,26554,alone in the world,1447782078 +31831,26554,jealousy,1447782101 +31831,26554,last man on earth,1447782088 +31831,26554,post-apocalyptic,1447782080 +31831,26819,dystopia,1438803544 +31831,26819,overpopulation,1438803603 +31831,26819,prison,1438803545 +31831,26819,prisoner,1438803579 +31831,26887,airplane,1440355350 +31831,26887,bad acting,1440355347 +31831,26887,based on a book,1440355344 +31831,26887,Stephen King,1440355341 +31831,26887,time travel,1440355340 +31831,27198,alcohol,1451244942 +31831,27198,Aleksandr Rogozhkin,1451244903 +31831,27198,drinking,1451244953 +31831,27198,fishing,1451244965 +31831,27198,Russia,1451244982 +31831,27198,vodka,1451244989 +31831,27611,androids,1448234295 +31831,27611,Artificial Intelligence,1448234379 +31831,27611,battles,1448234381 +31831,27611,battleships,1448234362 +31831,27611,beautiful woman,1448234459 +31831,27611,complex,1448234338 +31831,27611,cybernetic creatures,1448234340 +31831,27611,cybernetics,1448234342 +31831,27611,drama,1448234344 +31831,27611,genre-bending,1448234411 +31831,27611,humanity,1448234298 +31831,27611,infiltrators,1448234367 +31831,27611,intense,1448234391 +31831,27611,made for TV,1448234347 +31831,27611,military,1448234288 +31831,27611,MILITARY LIFE,1448234285 +31831,27611,mythology,1448234302 +31831,27611,philosophical,1448234395 +31831,27611,political,1448234290 +31831,27611,politics,1448234289 +31831,27611,post-apocalyptic,1448234286 +31831,27611,reboot,1448234424 +31831,27611,religion,1448234325 +31831,27611,remake,1448234305 +31831,27611,robots,1448234303 +31831,27611,sci-fi,1448234280 +31831,27611,series,1448234432 +31831,27611,space,1448234283 +31831,27611,space craft,1448234399 +31831,27611,space opera,1448234369 +31831,27611,spaceflight,1448234371 +31831,27611,Special Effects,1448234372 +31831,27611,starship pilots,1448234374 +31831,27611,starships,1448234433 +31831,27611,tv show,1448234357 +31831,27611,visually appealing,1448234292 +31831,27788,Adrien Brody,1446321011 +31831,27788,amnesia,1446321017 +31831,27788,complex,1446321012 +31831,27788,confusing,1446321008 +31831,27788,Daniel Craig,1446321118 +31831,27788,John Maybury,1446321086 +31831,27788,Keira Knightley,1446320999 +31831,27788,makes you think,1446321014 +31831,27788,mental hospital,1446321031 +31831,27788,mental illness,1446321033 +31831,27788,mental institution,1446321030 +31831,27788,mindfuck,1446321019 +31831,27788,romance,1446321034 +31831,27788,time travel,1446320998 +31831,27788,twist ending,1446321028 +31831,30812,aviation,1447541701 +31831,30812,Leonardo DiCaprio,1447541697 +31831,30812,obsession,1447541723 +31831,32587,Action,1421010146 +31831,32587,adapted from:comic,1421010161 +31831,32587,artistic,1421010142 +31831,32587,atmospheric,1421010134 +31831,32587,based on a comic,1421010188 +31831,32587,based on comic,1421010169 +31831,32587,black comedy,1421010138 +31831,32587,Bruce Willis,1421010135 +31831,32587,brutal,1421010189 +31831,32587,brutality,1421010140 +31831,32587,cannibalism,1421010156 +31831,32587,corruption,1421010165 +31831,32587,crime,1421010173 +31831,32587,dark,1421010148 +31831,32587,disturbing,1421010171 +31831,32587,gritty,1421010176 +31831,32587,imdb top 250,1421010153 +31831,32587,Jessica Alba,1421010174 +31831,32587,multiple storylines,1421010120 +31831,32587,narrated,1421010167 +31831,32587,Nudity (Topless),1421010186 +31831,32587,Quentin Tarantino,1421010123 +31831,32587,revenge,1421010166 +31831,32587,storytelling,1421010139 +31831,32587,stylized,1421010122 +31831,32587,stylized violence,1421010192 +31831,32587,surreal,1421010149 +31831,32587,surrealism,1421010145 +31831,32587,violence,1421010136 +31831,32587,violent,1421010158 +31831,32587,visual,1421010182 +31831,32587,visually appealing,1421010143 +31831,32587,visually stunning,1421010193 +31831,33166,cultural conflict,1438700440 +31831,33166,ensemble cast,1438700442 +31831,33166,multiple storylines,1438700424 +31831,33166,Oscar (Best Picture),1438700427 +31831,33166,race issues,1438700434 +31831,33166,racism,1438700432 +31831,33166,Sandra Bullock,1438700437 +31831,33166,social commentary,1438700426 +31831,33166,twist ending,1438700436 +31831,34292,cyborg,1437944253 +31831,34292,dystopia,1437944174 +31831,34292,post-apocalyptic,1437942738 +31831,34292,robot,1437942748 +31831,34292,sci-fi,1437944153 +31831,34292,science fiction,1437944215 +31831,34437,Atmospheric,1453931690 +31831,34437,Awkward,1453931798 +31831,34437,Bill Murray,1453931684 +31831,34437,bittersweet,1453931717 +31831,34437,Chloë Sevigny,1453931807 +31831,34437,comedy,1453931794 +31831,34437,flowers,1453931832 +31831,34437,Jim Jarmusch,1453931697 +31831,34437,melancholic,1453931688 +31831,34437,open ended endings,1453931733 +31831,34437,quirky,1453931727 +31831,34437,Sharon Stone,1453931854 +31831,34437,Tilda Swinton,1453931823 +31831,37727,airplane,1447543063 +31831,37727,Jodie Foster,1447543048 +31831,37727,missing child,1447543067 +31831,37727,mystery,1447543070 +31831,37727,worried mother,1447543122 +31831,44191,dark,1438889917 +31831,44191,dystopia,1438889890 +31831,44191,inspirational,1438889995 +31831,44191,Natalie Portman,1438889899 +31831,44191,philosophy,1438889918 +31831,44191,politics,1438889896 +31831,44191,revenge,1438889901 +31831,44191,social commentary,1438889897 +31831,44191,thought-provoking,1438889893 +31831,44191,vigilantism,1438889928 +31831,45720,Anne Hathaway,1438633946 +31831,45720,fashion,1438633943 +31831,45720,Meryl Streep,1438633944 +31831,46578,overrated,1438889665 +31831,46976,existentialism,1421010592 +31831,46976,heartbreaking,1421010575 +31831,46976,heartwarming,1421010571 +31831,46976,humorous,1421010592 +31831,46976,love,1421010586 +31831,46976,Maggie Gyllenhaal,1421010551 +31831,46976,modern fantasy,1421010556 +31831,46976,narrated,1421010548 +31831,46976,quirky,1421010558 +31831,46976,quirky romantic,1421010559 +31831,46976,romance,1421010585 +31831,46976,storytelling,1421010562 +31831,46976,surreal,1421010545 +31831,46976,touching,1421010552 +31831,46976,Will Ferrell,1421010547 +31831,46976,writers,1421010563 +31831,46976,writing,1421010561 +31831,48997,18th century,1421012043 +31831,48997,artistic,1421012033 +31831,48997,based on a book,1421012036 +31831,48997,creativity,1421012034 +31831,48997,dustin hoffman,1421012039 +31831,48997,murder,1421012047 +31831,48997,Nudity (Topless - Notable),1421012049 +31831,48997,obsession,1421012037 +31831,48997,orgy,1421012040 +31831,48997,perfume,1421012053 +31831,48997,scent,1421012057 +31831,48997,sensuality,1421012059 +31831,48997,sexuality,1421012042 +31831,49276,prison,1443219019 +31831,51562,aliens,1439069278 +31831,51562,boring,1439069307 +31831,55257,video game adaptation,1438890348 +31831,56145,apocalypse,1438451042 +31831,56145,atmospheric,1438451045 +31831,56145,based on a book,1438451073 +31831,56145,disaster,1438451053 +31831,56145,Frank Darabont,1438451087 +31831,56145,giant monster,1438451046 +31831,56145,gory,1438451060 +31831,56145,insects,1438451074 +31831,56145,irreligion,1438451081 +31831,56145,monster,1438451048 +31831,56145,preacher,1438451067 +31831,56145,small town,1438451070 +31831,56145,social commentary,1438451050 +31831,56145,stephen king,1438451040 +31831,56145,surprise ending,1438451057 +31831,56145,Survival,1438451043 +31831,56145,twist ending,1438451076 +31831,57368,"""found footage""",1356568137 +31831,57368,cgi,1356568141 +31831,57368,city under attack,1356568144 +31831,57368,feeling of helplessness,1356568153 +31831,57368,found footage,1356568158 +31831,57368,giant monster,1356568161 +31831,57368,Handycam,1356568174 +31831,57368,military,1356568180 +31831,57368,monster,1356568184 +31831,57368,New York City,1366916234 +31831,57368,sci-fi,1356568189 +31831,57368,shaky camera,1356568191 +31831,57368,unsteady-cam,1356568207 +31831,58376,inaccurate,1438703485 +31831,58559,action,1438632571 +31831,58559,Atmospheric,1438632570 +31831,58559,based on a comic,1438632602 +31831,58559,Batman,1438632564 +31831,58559,Christian Bale,1438632567 +31831,58559,Christopher Nolan,1438632577 +31831,58559,Comic Book adaption,1438632614 +31831,58559,corruption,1438632617 +31831,58559,dark,1438632568 +31831,58559,ensemble cast,1438632620 +31831,58559,Gary Oldman,1438632608 +31831,58559,gritty,1438632628 +31831,58559,Heath Ledger,1438632563 +31831,58559,imdb top 250,1438632656 +31831,58559,Joker,1438632603 +31831,58559,Michael Caine,1438632580 +31831,58559,Morgan Freeman,1438632573 +31831,58559,music,1438632635 +31831,58559,Oscar (Best Supporting Actor),1438632589 +31831,58559,psychology,1438632574 +31831,58559,stylized,1438632591 +31831,58559,superhero,1438632566 +31831,58559,thriller,1438632587 +31831,58559,vigilante,1438632576 +31831,58559,violence,1438632581 +31831,58559,violent,1438632592 +31831,59126,atheism,1438703360 +31831,59126,Bill Maher,1438703362 +31831,59126,daring,1438703413 +31831,59126,Documentary,1438703361 +31831,59126,intellectual,1438703373 +31831,59126,intelligent,1438703372 +31831,59126,skepticism,1438703389 +31831,59126,thought-provoking,1438703364 +31831,59315,action,1449777469 +31831,59315,adapted from:comic,1449777790 +31831,59315,adventure,1449777745 +31831,59315,afghanistan,1449777524 +31831,59315,arms dealer,1449777510 +31831,59315,based on a comic,1449777481 +31831,59315,capitalist protag,1449777718 +31831,59315,character growth,1449777591 +31831,59315,comic book,1449777773 +31831,59315,Comic Book adaption,1449777772 +31831,59315,engineering,1449777613 +31831,59315,exoskeleton,1449777614 +31831,59315,flying,1449777616 +31831,59315,Gwyneth Paltrow,1449777483 +31831,59315,heart problems,1449777683 +31831,59315,inventor,1449777671 +31831,59315,Iron Man,1449777539 +31831,59315,Jeff Bridges,1449777475 +31831,59315,Marvel,1449777784 +31831,59315,Marvel Cinematic Universe,1449777497 +31831,59315,military,1449777506 +31831,59315,military industrial complex,1449777568 +31831,59315,Robert Downey Jr,1449777489 +31831,59315,Robert Downey Jr.,1449777447 +31831,59315,robotic exoskeleton,1449777588 +31831,59315,robotics,1449777635 +31831,59315,sci-fi,1449777462 +31831,59315,secretary,1449777639 +31831,59315,setting:Afghanistan,1449777661 +31831,59315,Special Effects,1449777534 +31831,59315,superhero,1449777445 +31831,59315,superheroes,1449777479 +31831,59315,technology,1449777471 +31831,59315,terrorists,1449777655 +31831,59315,The Avengers,1449777541 +31831,59315,Tony Stark,1449777600 +31831,59315,vigilante,1449777517 +31831,59315,visually appealing,1449777746 +31831,59315,weapons,1449777675 +31831,59315,weapons industry,1449777695 +31831,60684,1980s,1421009928 +31831,60684,abuse of power,1449702416 +31831,60684,adapted from:comic,1421009942 +31831,60684,alan moore,1449702711 +31831,60684,alternate history,1421009926 +31831,60684,alternate reality,1421009916 +31831,60684,author:Alan Moore,1449702710 +31831,60684,based on a comic,1421009923 +31831,60684,CGI,1449702436 +31831,60684,characters,1449702444 +31831,60684,cinematography,1421009924 +31831,60684,cold war,1449702329 +31831,60684,comic book,1421009913 +31831,60684,comics,1421009982 +31831,60684,complex,1449702374 +31831,60684,dark,1421010000 +31831,60684,dark hero,1421009931 +31831,60684,dc comics,1449702352 +31831,60684,Dynamic CGI Action,1449702931 +31831,60684,dystopia,1449702714 +31831,60684,full frontal nudity,1449702407 +31831,60684,gore,1421009971 +31831,60684,graphic novel,1421009957 +31831,60684,great soundtrack,1421009950 +31831,60684,hot ladies,1449702459 +31831,60684,Jackie Earle Haley,1449702705 +31831,60684,Jeffrey Dean Morgan,1449702648 +31831,60684,Malin Akerman,1449702566 +31831,60684,Matthew Goode,1449702661 +31831,60684,misanthropic,1449702940 +31831,60684,music,1421009935 +31831,60684,nuclear war,1421009930 +31831,60684,nudity (full frontal),1449702383 +31831,60684,Nudity (Topless),1421009921 +31831,60684,Patrick Wilson,1449702695 +31831,60684,political commentary,1449702363 +31831,60684,sci-fi,1421009915 +31831,60684,slow paced,1449702367 +31831,60684,social commentary,1449702322 +31831,60684,soundtrack,1449702501 +31831,60684,special effects,1449702504 +31831,60684,storytelling,1421009937 +31831,60684,stylized,1421009919 +31831,60684,stylized violence,1421009944 +31831,60684,super hero,1421009981 +31831,60684,superhero,1421009910 +31831,60684,superheroes,1421009960 +31831,60684,vigilante,1449702605 +31831,60684,vigilantism,1421009948 +31831,60684,violence,1421009979 +31831,60684,visually appealing,1421009918 +31831,60684,Zack Snyder,1449702609 +31831,60760,disappointing,1435516066 +31831,60760,Gillian Anderson,1435516061 +31831,60760,mystery,1435516067 +31831,62378,boring,1453219238 +31831,62378,guillotine,1453219257 +31831,62378,magician,1453219227 +31831,62378,magicians,1453219229 +31831,62378,stage magic,1453219230 +31831,62644,predictable,1421711941 +31831,62644,propaganda film,1421712253 +31831,62644,ridiculous,1421712097 +31831,63876,based on a true story,1438702404 +31831,63876,biographical,1438702482 +31831,63876,biography,1438702364 +31831,63876,civil rights,1438702365 +31831,63876,drama,1438702486 +31831,63876,gay,1438702359 +31831,63876,gay history,1438702388 +31831,63876,gay rights,1438702366 +31831,63876,homophobia,1438702377 +31831,63876,Oscar (Best Actor),1438702394 +31831,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1438702402 +31831,63876,politics,1438702361 +31831,63876,San Francisco,1438702381 +31831,63876,Sean Penn,1438702362 +31831,63876,setting:San Francisco,1438702408 +31831,63876,thought-provoking,1438702395 +31831,63876,touching,1438702380 +31831,63876,true story,1438702384 +31831,65982,action,1423246468 +31831,65982,norse,1423246462 +31831,65982,plot holes,1423246465 +31831,65982,sci-fi,1423246453 +31831,65982,vikings,1423246413 +31831,68237,artificial intelligence,1453630095 +31831,68237,atmospheric,1453639482 +31831,68237,clones,1453630232 +31831,68237,cloning,1453630146 +31831,68237,dark,1453639473 +31831,68237,death,1453630235 +31831,68237,depressing,1453630260 +31831,68237,dialogue driven,1453630241 +31831,68237,Duncan Jones,1453639453 +31831,68237,future,1453630204 +31831,68237,hallucination,1453630256 +31831,68237,interesting,1453630263 +31831,68237,isolation,1453630142 +31831,68237,Kevin Spacey,1453630092 +31831,68237,moon,1453630144 +31831,68237,one man show,1453639532 +31831,68237,plot twist,1453630148 +31831,68237,psychological,1453630221 +31831,68237,robot,1453639450 +31831,68237,Sam Rockwell,1453630137 +31831,68237,Sci-fi,1453630074 +31831,68237,science,1453630237 +31831,68237,science fiction,1453639455 +31831,68237,slow,1453639479 +31831,68237,slow paced,1453630244 +31831,68237,solitude,1453630202 +31831,68237,space,1453630076 +31831,68237,technology,1453630228 +31831,68237,thought-provoking,1453630209 +31831,70208,David Twohy,1450806068 +31831,70208,Hawaii,1450806013 +31831,70208,hiking,1450806031 +31831,70208,hitchhikers,1450806134 +31831,70208,honeymoon,1450806108 +31831,70208,Milla Jovovich,1450806022 +31831,70208,predictable,1450806087 +31831,70208,Timothy Olyphant,1450806054 +31831,70208,tropical islands,1450806118 +31831,70208,twist ending,1450806016 +31831,70286,action,1356567686 +31831,70286,alien invasion,1356567691 +31831,70286,aliens,1356567693 +31831,70286,atmospheric,1356567695 +31831,70286,cgi,1421008374 +31831,70286,creative plot,1421008419 +31831,70286,evil humans,1421008422 +31831,70286,fake documentary,1438631746 +31831,70286,genetics,1356567706 +31831,70286,heartbreaking,1356567708 +31831,70286,humor,1421008335 +31831,70286,IMDB Top 250,1438631822 +31831,70286,intelligent,1356567711 +31831,70286,intelligent sci-fi,1421008330 +31831,70286,mock documentary,1421008442 +31831,70286,mockumentary,1421008440 +31831,70286,Neill Blomkamp,1438631870 +31831,70286,peter jackson,1438631815 +31831,70286,political commentary,1421008404 +31831,70286,role reversal,1421008395 +31831,70286,satire,1356567729 +31831,70286,sci-fi,1356567730 +31831,70286,segregation,1438631758 +31831,70286,Sharlto Copley,1438631908 +31831,70286,slum,1421008413 +31831,70286,social commentary,1356567752 +31831,70286,social segregation,1438631760 +31831,70286,South Africa,1438631739 +31831,70286,Special Effects,1421008361 +31831,70286,thoughtful,1421008396 +31831,70286,thriller,1356567760 +31831,70286,transformation,1421008363 +31831,70286,unique,1421008358 +31831,70286,violence,1356567756 +31831,70286,weapons,1421008365 +31831,70286,xenophobia,1421008407 +31831,71057,animation style,1423256811 +31831,71057,dark,1423256795 +31831,71057,dark fantasy,1423256754 +31831,71057,dolls,1423256814 +31831,71057,dystopia,1423256752 +31831,71057,giant robots,1423256775 +31831,71057,good versus evil,1423256801 +31831,71057,interesting animation style,1423256778 +31831,71057,man versus machine,1423256787 +31831,71057,post-apocalyptic,1423256749 +31831,71057,predictable,1423256762 +31831,71057,robots,1423256764 +31831,71057,sci-fi,1423256755 +31831,71057,Simple,1423256809 +31831,71057,surreal,1423256794 +31831,71057,survival,1423256768 +31831,71057,visually appealing,1423256751 +31831,71057,Visuals,1423256789 +31831,71254,action,1438704613 +31831,71254,dystopian,1438704609 +31831,71254,sci-fi,1438704602 +31831,71254,stupid,1438704606 +31831,71254,video game,1438704622 +31831,71450,awful truth,1438702498 +31831,71450,documentary,1438702501 +31831,71450,Michael Moore,1438702498 +31831,71899,Adam Elliot,1450806260 +31831,71899,animation,1450806208 +31831,71899,asperger syndrome,1450806206 +31831,71899,asperger's syndrome,1450806310 +31831,71899,australia,1450806215 +31831,71899,bittersweet,1450806254 +31831,71899,black comedy,1450806252 +31831,71899,claymation,1450806213 +31831,71899,dark comedy,1450806188 +31831,71899,Deep,1450806234 +31831,71899,Eric Bana,1450806302 +31831,71899,friendship,1450806183 +31831,71899,funny,1450806268 +31831,71899,humorous,1450806316 +31831,71899,letters,1450806236 +31831,71899,loneliness,1450806250 +31831,71899,made me cry,1450806333 +31831,71899,mental illness,1450806185 +31831,71899,misfits,1450806269 +31831,71899,New York City,1450806265 +31831,71899,outsiders,1450806324 +31831,71899,penpals,1450806325 +31831,71899,Philip Seymour Hoffman,1450806202 +31831,71899,philosophical,1450806209 +31831,71899,poignant,1450806364 +31831,71899,quirky,1450806274 +31831,71899,sad,1450806239 +31831,71899,slow paced,1450806249 +31831,71899,stop motion,1450806222 +31831,71899,sweet,1450806276 +31831,71899,Toni Collette,1450806232 +31831,71899,touching,1450806187 +31831,72308,made for TV,1448234489 +31831,72308,nudity,1448234504 +31831,72308,sci-fi,1448234493 +31831,72308,space,1448234494 +31831,72720,1960s,1445112796 +31831,72720,adapted from:book,1445112599 +31831,72720,based on a book,1445112584 +31831,72720,beautiful cinematography,1445112552 +31831,72720,cinematography,1445112582 +31831,72720,Colin Firth,1445112720 +31831,72720,gay,1445112558 +31831,72720,Gay Lead Character,1445112567 +31831,72720,Julianne Moore,1445112572 +31831,72720,meditative,1445112674 +31831,72720,sad,1445112684 +31831,72720,suicide,1445112680 +31831,72720,twist ending,1445112657 +31831,72998,3d,1356567779 +31831,72998,3D version,1438700958 +31831,72998,action,1438701546 +31831,72998,Alien planet,1438701052 +31831,72998,aliens,1356567782 +31831,72998,Art Direction,1438701114 +31831,72998,beatutiful,1438700976 +31831,72998,beautiful,1356567784 +31831,72998,beautiful cinematography,1438700947 +31831,72998,beautiful scenery,1356567788 +31831,72998,big budget,1438701131 +31831,72998,cgi,1438700753 +31831,72998,cinematography,1438701147 +31831,72998,cliche,1438701154 +31831,72998,cliche after cliche,1438701162 +31831,72998,cliched,1438701157 +31831,72998,cliched plot,1438701021 +31831,72998,colonialism,1438700807 +31831,72998,colorful,1438701163 +31831,72998,culture clash,1356567794 +31831,72998,dazzling,1438700968 +31831,72998,derivative plot,1438701230 +31831,72998,drama,1438700732 +31831,72998,Dynamic CGI Action,1438701196 +31831,72998,ecology,1438701543 +31831,72998,effects,1438700757 +31831,72998,enviromental,1438701240 +31831,72998,environmental,1438700879 +31831,72998,environmentalism,1438701244 +31831,72998,epic,1438701246 +31831,72998,Especial effects and visuals,1438700972 +31831,72998,futuristic,1356567800 +31831,72998,graphic design,1438700739 +31831,72998,Humans as the bad guy,1438701338 +31831,72998,imaginative,1438701358 +31831,72998,imdb top 250,1438701082 +31831,72998,immersive,1438700856 +31831,72998,imperialism,1438701380 +31831,72998,incredible 3D,1438700791 +31831,72998,James Cameron,1438700864 +31831,72998,jungle,1438700735 +31831,72998,long,1438700777 +31831,72998,nature,1438700728 +31831,72998,overly simplistic,1438701043 +31831,72998,plot,1438701562 +31831,72998,politics,1356567838 +31831,72998,racism,1356567840 +31831,72998,rebellion,1356567845 +31831,72998,Related:Pocahontas (1995),1438701418 +31831,72998,revolution,1438700880 +31831,72998,romance,1356567847 +31831,72998,scenery porn,1438701073 +31831,72998,scenic,1356567849 +31831,72998,sci-fi,1356567851 +31831,72998,science fiction,1438700783 +31831,72998,sigorney weaver,1438701502 +31831,72998,Sigourney Weaver,1438700749 +31831,72998,social commentary,1438700843 +31831,72998,special effects,1438700773 +31831,72998,stunning,1438700809 +31831,72998,style over substance,1438701530 +31831,72998,thought-provoking,1438700771 +31831,72998,unoriginal,1438701560 +31831,72998,violent,1438700963 +31831,72998,Visually amazing,1438701487 +31831,72998,visually appealing,1438701050 +31831,72998,visually stunning,1438700746 +31831,72998,visuals,1438700795 +31831,72998,war,1356567853 +31831,73017,Action,1438634753 +31831,73017,adventure,1438634843 +31831,73017,Jude Law,1438634745 +31831,73017,Robert Downey Jr.,1438634735 +31831,73017,slow motion,1438634819 +31831,73017,violent,1438634788 +31831,74458,acting,1438702307 +31831,74458,asylum,1421010699 +31831,74458,atmospheric,1421010684 +31831,74458,captivating,1438702301 +31831,74458,cinematography,1421010710 +31831,74458,clever,1438702298 +31831,74458,ending,1438702291 +31831,74458,ending twist,1421010689 +31831,74458,insanity,1421010679 +31831,74458,intense,1421010705 +31831,74458,island,1421010717 +31831,74458,Leonardo DiCaprio,1421010677 +31831,74458,Mark Ruffalo,1438702181 +31831,74458,Martin Scorsese,1421010685 +31831,74458,Mental Institution,1421010713 +31831,74458,mentali illness,1438702240 +31831,74458,mindfuck,1421010707 +31831,74458,mystery,1421010681 +31831,74458,plot twist,1421010687 +31831,74458,psychological,1421010675 +31831,74458,Psychological Thriller,1421010720 +31831,74458,reality or imagination?,1438702187 +31831,74458,sad,1438702215 +31831,74458,story,1421010731 +31831,74458,stylized,1421010692 +31831,74458,surreal,1421010702 +31831,74458,thought-provoking,1438702223 +31831,74458,twist ending,1421010676 +31831,74458,twisted ending,1421010708 +31831,74944,Antoine Fuqua,1450993948 +31831,74944,Brooklyn,1450993916 +31831,74944,death wish,1450993922 +31831,74944,depressing,1450993920 +31831,74944,Don Cheadle,1450993911 +31831,74944,Ethan Hawke,1450993908 +31831,74944,gangsters,1450993924 +31831,74944,multiple storylines,1450993927 +31831,74944,New York City,1450993930 +31831,74944,nudity (topless),1450993935 +31831,74944,police,1450993939 +31831,74944,revenge,1450993941 +31831,74944,Richard Gere,1450993909 +31831,74944,Wesley Snipes,1450993950 +31831,74944,Will Patton,1450993951 +31831,74948,blood,1439401482 +31831,74948,drugs,1439401364 +31831,74948,Emily Mortimer,1439401407 +31831,74948,gangs,1439401360 +31831,74948,justice,1439401368 +31831,74948,Michael Caine,1439401355 +31831,74948,revenge,1439401354 +31831,74948,vigilante justice,1439401366 +31831,74948,violence,1439401378 +31831,77540,demons,1423435714 +31831,77795,Anna-Katharina Schwabroh,1447885322 +31831,77795,conspiracy,1447885210 +31831,77795,German,1447885397 +31831,77795,murder,1447885215 +31831,77795,post-apocalyptic,1447885162 +31831,77795,simulation,1447885355 +31831,77795,space,1447885235 +31831,77795,space travel,1447885161 +31831,77795,special effects,1447885240 +31831,77795,virtual reality,1447885200 +31831,78207,artsy,1448232781 +31831,78207,based on book,1448232579 +31831,78207,caricatures,1448232835 +31831,78207,empathy,1448232912 +31831,78207,feminism,1448232464 +31831,78207,nonlinear timeline,1448232498 +31831,78207,researcher,1448232505 +31831,78207,stereotypes,1448232818 +31831,78207,stereotypical,1448232812 +31831,78349,dialogue driven,1446320792 +31831,78349,experiment,1446320779 +31831,78349,group psychology,1446320777 +31831,78349,mediocre ending,1446320799 +31831,78349,psychological,1446320780 +31831,78349,stupid ending,1446320823 +31831,78349,violence,1446320811 +31831,78349,weak ending,1446320814 +31831,78836,afterlife,1366981042 +31831,78836,art house,1366981140 +31831,78836,beautiful,1366981044 +31831,78836,boring,1366981047 +31831,78836,camerawork,1366981051 +31831,78836,colourful,1366981119 +31831,78836,colours,1366981120 +31831,78836,drugs,1366981061 +31831,78836,First Person Movie,1366981070 +31831,78836,ghosts/afterlife,1366981076 +31831,78836,nonlinear,1366981088 +31831,78836,Nudity (Full Frontal),1366981091 +31831,78836,psychedelic,1366981128 +31831,78836,surrealism,1366981114 +31831,78836,too long,1366981109 +31831,79057,action,1438702560 +31831,79057,aliens,1438702562 +31831,79057,bad plot,1438702611 +31831,79057,childish,1438702584 +31831,79057,childish plot,1438702556 +31831,79057,predator,1438702566 +31831,79057,sci-fi,1438702627 +31831,79091,adoption,1447594356 +31831,79091,animation,1447594333 +31831,79091,comedy,1447594670 +31831,79091,competition,1447594676 +31831,79091,cute,1447594663 +31831,79091,family,1447594673 +31831,79091,funny,1447594478 +31831,79091,heartwarming,1447594651 +31831,79091,mad scientist,1447594267 +31831,79091,miniaturization,1447594461 +31831,79091,minions,1447594334 +31831,79091,moon,1447594464 +31831,79091,orphans,1447594659 +31831,79091,parent-children relationship,1447594408 +31831,79091,parenting,1447594358 +31831,79091,pixar,1447594345 +31831,79091,predictable,1447594368 +31831,79091,quirky,1447594327 +31831,79091,Steve Carell,1447594323 +31831,79091,super villain,1447594371 +31831,79091,supervillain,1447594397 +31831,79091,visually appealing,1447594352 +31831,79091,young target audience,1447594697 +31831,79132,action,1438702667 +31831,79132,big budget,1438702732 +31831,79132,Christopher Nolan,1438702676 +31831,79132,cinematography,1438702745 +31831,79132,complex,1438702891 +31831,79132,complicated,1438702663 +31831,79132,complicated plot,1438702893 +31831,79132,confusing plot,1438702790 +31831,79132,drama,1438702722 +31831,79132,dream,1438702755 +31831,79132,dream within a dream,1438702741 +31831,79132,dreamlike,1438702666 +31831,79132,dreams,1438702668 +31831,79132,editing,1438702814 +31831,79132,ending,1438702819 +31831,79132,ensemble cast,1438702712 +31831,79132,epic,1438702885 +31831,79132,great cast,1438702821 +31831,79132,heist,1438702670 +31831,79132,imaginative,1438702792 +31831,79132,imdb top 250,1438702772 +31831,79132,intellectual,1438702672 +31831,79132,Intense,1438702709 +31831,79132,Leonardo DiCaprio,1438702660 +31831,79132,long,1438702766 +31831,79132,makes you think,1438702769 +31831,79132,mind games,1438702784 +31831,79132,mindfuck,1438702661 +31831,79132,multiple interpretations,1438702699 +31831,79132,open ending,1438702770 +31831,79132,original,1438702786 +31831,79132,original plot,1438702787 +31831,79132,philosophy,1438702677 +31831,79132,plot twist,1438702788 +31831,79132,sci-fi,1438702664 +31831,79132,science fiction,1438702762 +31831,79132,script,1438702995 +31831,79132,special effects,1438702794 +31831,79132,surreal,1438702656 +31831,79132,suspense,1438702702 +31831,79132,thought-provoking,1438702659 +31831,79132,thriller,1438702735 +31831,79132,twist ending,1438702690 +31831,79132,unpredictable,1438702734 +31831,79132,visually appealing,1438702655 +31831,79132,visually stunning,1438702751 +31831,79132,weightlessness,1438702801 +31831,80463,based on a true story,1438701764 +31831,80463,based on true story,1438701741 +31831,80463,business,1438701762 +31831,80463,computers,1438702145 +31831,80463,facebook,1438701759 +31831,80463,hacking,1438701755 +31831,80463,inaccurate,1438701909 +31831,80463,Justin Timberlake,1438701791 +31831,80463,Mark Zuckerberg,1438701852 +31831,80463,nerds,1438702149 +31831,80463,overrated,1438702038 +31831,80463,social network,1438701835 +31831,80463,software developers,1438701772 +31831,80463,talky,1438702111 +31831,80463,true story,1438701735 +31831,80549,Christianity,1421231306 +31831,80549,comedy,1421231290 +31831,80549,dialogue,1421231288 +31831,80549,Emma Stone,1421231268 +31831,80549,family relationships,1421231293 +31831,80549,high school,1421231274 +31831,80549,lies,1421231328 +31831,80549,PEER PRESSURE,1421231319 +31831,80549,scheme,1421231331 +31831,80549,sexuality,1421231324 +31831,80549,virginity,1421231299 +31831,80693,Anna Boden,1450865835 +31831,80693,based on a book,1450865677 +31831,80693,bittersweet,1450865667 +31831,80693,depression,1450865666 +31831,80693,Emma Roberts,1450865741 +31831,80693,fear of failure,1450865984 +31831,80693,funny,1450865742 +31831,80693,Keir Gilchrist,1450865789 +31831,80693,Lauren Graham,1450865761 +31831,80693,mental hospital,1450865765 +31831,80693,mental illness,1450865652 +31831,80693,Mental strenth,1450865768 +31831,80693,psychiatric ward,1450865958 +31831,80693,quirky,1450865676 +31831,80693,Ryan Fleck,1450865810 +31831,80693,soundtrack,1450865811 +31831,80693,suicide,1450865674 +31831,80693,touching,1450865750 +31831,80693,Zach Galifianakis,1450865665 +31831,80729,absurd,1439589267 +31831,80729,Adam Goldberg,1439589489 +31831,80729,art,1439589268 +31831,80729,artist,1439589365 +31831,80729,funny,1439589263 +31831,80729,satire,1439589596 +31831,80729,sounds,1439589412 +31831,80917,aliens,1438701629 +31831,80917,creative,1438701634 +31831,80917,mexico,1438701660 +31831,80917,realism,1438701647 +31831,80917,romance,1438701636 +31831,80917,science fiction,1438701631 +31831,80917,social commentary,1438701638 +31831,81591,atmospheric,1451428310 +31831,81591,ballet,1451428313 +31831,81591,Barbara Hershey,1451428403 +31831,81591,Clint Mansell,1451428402 +31831,81591,creepy,1451428325 +31831,81591,dance,1451428315 +31831,81591,dark,1451428312 +31831,81591,Darren Aronofsky,1451428319 +31831,81591,disturbing,1451428330 +31831,81591,female protagonist,1451428412 +31831,81591,jealousy,1451428418 +31831,81591,lesbian,1451428362 +31831,81591,lesbians,1451428352 +31831,81591,madness,1451428345 +31831,81591,mental illness,1451428323 +31831,81591,Mila Kunis,1451428320 +31831,81591,Natalie Portman,1451428307 +31831,81591,New York City,1451428355 +31831,81591,protagonist is a dancer,1451428396 +31831,81591,psychological,1451428309 +31831,81591,Sebastian Stan,1451428430 +31831,81591,sex,1451428343 +31831,81591,stylized,1451428354 +31831,81591,surreal,1451428317 +31831,81591,Swan Lake,1451428491 +31831,81591,Winona Ryder,1451428349 +31831,82459,19th century,1450967380 +31831,82459,atmospheric,1450967335 +31831,82459,Barry Pepper,1450967410 +31831,82459,based on a book,1450967328 +31831,82459,Charles Portis,1450967430 +31831,82459,child as protagonist,1450967391 +31831,82459,cinematography,1450967346 +31831,82459,Coen Brothers,1450967316 +31831,82459,Costumes,1450967395 +31831,82459,cowboy,1450967369 +31831,82459,dark,1450967460 +31831,82459,Hailee Steinfeld,1450967338 +31831,82459,Jeff Bridges,1450967314 +31831,82459,Josh Brolin,1450967337 +31831,82459,justice,1450967340 +31831,82459,Matt Damon,1450967322 +31831,82459,New Mexico,1450967397 +31831,82459,realistic,1450967371 +31831,82459,remake,1450967326 +31831,82459,revenge,1450967324 +31831,82459,Roger Deakins,1450967435 +31831,82459,sheriff,1450967407 +31831,82459,teenage girl,1450967384 +31831,82459,Texas,1450967416 +31831,82459,Western,1450967319 +31831,82461,alter ego,1356566914 +31831,82461,artificial intelligence,1438700066 +31831,82461,atmospheric,1356566868 +31831,82461,computers,1356566874 +31831,82461,daft punk,1438700059 +31831,82461,futuristic,1356566866 +31831,82461,Jeff Bridges,1356566892 +31831,82461,music,1356566863 +31831,82461,Olivia Wilde,1438700082 +31831,82461,political,1356566898 +31831,82461,scenic,1356566879 +31831,82461,sci-fi,1356566860 +31831,82461,soundtrack,1438700060 +31831,82461,stylized,1356566888 +31831,82461,technology,1356566857 +31831,82461,video games,1356566882 +31831,82461,virtual reality,1356566853 +31831,82461,visually appealing,1356566850 +31831,84601,action,1412184560 +31831,84601,americans in europe,1412184568 +31831,84601,amnesia,1412184571 +31831,84601,assassin,1412184575 +31831,84601,conspiracy,1412184580 +31831,84601,Diane Kruger,1412184584 +31831,84601,easily confused with other movie(s) (title),1412184588 +31831,84601,identity theft,1412184636 +31831,84601,Liam Neeson,1412184596 +31831,84601,plot,1412184616 +31831,84944,adult humor,1421403697 +31831,84944,animation,1421403690 +31831,84944,cowboys,1421403679 +31831,84944,desert,1421403709 +31831,84944,great voice acting,1421403715 +31831,84944,Johnny Depp,1421403711 +31831,84944,talking animals,1421403695 +31831,84944,western,1421403674 +31831,84950,80s,1447100197 +31831,84950,cliché,1447100407 +31831,84950,Collegeparty,1447100228 +31831,84950,comedy,1447100225 +31831,84950,Nudity (Topless - Brief),1447100238 +31831,84950,reunion,1447100211 +31831,84950,soundtrack,1447100213 +31831,84954,adapted from:book,1446498366 +31831,84954,based on a book,1446498351 +31831,84954,based on a short story,1446498380 +31831,84954,Changing fate,1446498291 +31831,84954,directorial debut,1446498370 +31831,84954,doors as portals,1446498893 +31831,84954,Emily Blunt,1446498249 +31831,84954,fate,1446498252 +31831,84954,free will,1446498260 +31831,84954,George Nolfi,1446498850 +31831,84954,good actors,1446498307 +31831,84954,John Slattery,1446498834 +31831,84954,likeable love story,1446498309 +31831,84954,long build-up,1446498360 +31831,84954,love story,1446498268 +31831,84954,Matt Damon,1446498246 +31831,84954,New York City,1446498284 +31831,84954,original,1446498339 +31831,84954,original plot,1446498257 +31831,84954,Philip K. Dick,1446498242 +31831,84954,plot,1446498288 +31831,84954,politics,1446498868 +31831,84954,protagonist is a dancer,1446498864 +31831,84954,protagonist is a performer,1446498860 +31831,84954,protagonist is a politician,1446498377 +31831,84954,religion,1446498293 +31831,84954,Romance,1446498254 +31831,84954,sexy leading actresses,1446498277 +31831,84954,simple ending,1446498328 +31831,84954,story,1446498333 +31831,84954,superficial,1446498938 +31831,84954,trivial,1446498941 +31831,85510,abuse,1356647019 +31831,85510,asylum,1356647021 +31831,85510,Bechdel Test:Pass,1356647074 +31831,85510,CGI,1356647081 +31831,85510,characters,1382788983 +31831,85510,Cinematography,1356647083 +31831,85510,costume design,1438704189 +31831,85510,insanity,1356647092 +31831,85510,martial arts,1356647094 +31831,85510,mindfuck,1356647096 +31831,85510,murder,1356647099 +31831,85510,nightclub,1356647101 +31831,85510,reality or imagination?,1356647104 +31831,85510,setting:asylum,1421009798 +31831,85510,soundtrack,1356647112 +31831,85510,Special Effects,1356647114 +31831,85510,stylized,1356647143 +31831,85510,Surreal,1356647145 +31831,85510,visually stunning,1356647152 +31831,86320,apocalypse,1416432553 +31831,86320,Charlotte Gainsbourg,1416432505 +31831,86320,cinematography,1416432490 +31831,86320,Kirsten Dunst,1416432499 +31831,86320,Lars von Trier,1416432513 +31831,86320,Magic realism,1416432523 +31831,87073,alcohol,1451170297 +31831,87073,bear,1451170278 +31831,87073,customs,1451170201 +31831,87073,drinking,1451170228 +31831,87073,hunting,1451170189 +31831,87073,hunting party,1451170257 +31831,87073,male camaraderie,1451170267 +31831,87073,Russia,1451170205 +31831,87073,traditions,1451170196 +31831,87073,vodka,1451170251 +31831,87306,80s,1446591245 +31831,87306,aliens,1446590889 +31831,87306,amateur film making,1446590977 +31831,87306,child actor,1446590922 +31831,87306,cinematography,1446590913 +31831,87306,Effects,1446591271 +31831,87306,Elle Fanning,1446591093 +31831,87306,J.J. Abrams,1446591070 +31831,87306,Joel Courtney,1446591132 +31831,87306,predictable,1446590904 +31831,87306,sci-fi,1446590887 +31831,87306,Science Fiction,1446590973 +31831,87306,small town,1446590940 +31831,87306,small town story,1446591002 +31831,87306,Story,1446591256 +31831,87306,sweet,1446591234 +31831,87306,teen romance,1446591032 +31831,87306,train crash,1446591004 +31831,87306,video camera,1446591012 +31831,88129,80s music,1438703994 +31831,88129,action,1421008304 +31831,88129,ambient music,1421008294 +31831,88129,atmospheric,1366914891 +31831,88129,Bryan Cranston,1366915164 +31831,88129,car chase,1366914894 +31831,88129,Carey Mulligan,1421008293 +31831,88129,cars,1366914895 +31831,88129,Christina Hendricks,1438704039 +31831,88129,cinematography,1366914897 +31831,88129,crime,1438700028 +31831,88129,Dark,1421008273 +31831,88129,driving,1366915581 +31831,88129,eighties,1438704042 +31831,88129,feel-good,1366914905 +31831,88129,great car chase,1366914916 +31831,88129,great soundtrack,1366914918 +31831,88129,heist,1366915099 +31831,88129,little dialogue,1421008303 +31831,88129,Los Angeles,1366915045 +31831,88129,minimalistic,1421008277 +31831,88129,music,1366914952 +31831,88129,neo-noir,1366914958 +31831,88129,noir,1438704096 +31831,88129,Nudity (Topless),1366914991 +31831,88129,Retro 80's Synth Pop,1438703997 +31831,88129,Retro 80's Typeset,1438703999 +31831,88129,Ron Perlman,1366915014 +31831,88129,ryan gosling,1366914995 +31831,88129,score,1438704003 +31831,88129,soundtrack,1421008279 +31831,88129,stylized,1421008296 +31831,88129,tense,1366915029 +31831,88129,violence,1438700030 +31831,88129,visually appealing,1366915035 +31831,90866,1930s,1447957553 +31831,90866,a tribute to the silent era,1447957636 +31831,90866,adapted from:book,1447957702 +31831,90866,android(s)/cyborg(s),1447957771 +31831,90866,animal:dog,1447957714 +31831,90866,Asa Butterfield,1447957569 +31831,90866,automata,1447957785 +31831,90866,based on a book,1447957582 +31831,90866,beautiful,1447957644 +31831,90866,Ben Kingsley,1447957530 +31831,90866,bittersweet,1447957546 +31831,90866,charming,1447957730 +31831,90866,child,1447957653 +31831,90866,children,1447957581 +31831,90866,Chloë Grace Moretz,1447957821 +31831,90866,cinema history,1447957666 +31831,90866,cinematography,1447957514 +31831,90866,clockwork devices,1447957573 +31831,90866,France,1447957548 +31831,90866,heartbreaking,1447957622 +31831,90866,heartwarming,1447957557 +31831,90866,history,1447957625 +31831,90866,Jude Law,1447957585 +31831,90866,kids,1447957743 +31831,90866,Martin Scorsese,1447957505 +31831,90866,movie business,1447957627 +31831,90866,nostalgic,1447957577 +31831,90866,orphans,1447957559 +31831,90866,Paris,1447957509 +31831,90866,predictable,1447957661 +31831,90866,robots,1447957760 +31831,90866,Sacha Baron Cohen,1447957542 +31831,90866,set:mechanical gearworks,1447957602 +31831,90866,setting:Paris,1447957711 +31831,90866,setting:train station,1447957756 +31831,90866,train station,1447957633 +31831,90866,uplifting,1447957695 +31831,90866,visually appealing,1447957503 +31831,91500,based on a book,1438804640 +31831,91500,dystopia,1438804631 +31831,91500,Jennifer Lawrence,1438804641 +31831,91500,love,1438804868 +31831,91500,reality TV,1438804695 +31831,91500,sci-fi,1438804883 +31831,91500,science fiction,1438804877 +31831,91500,social commentary,1438804654 +31831,91500,strong female lead,1438889179 +31831,91500,visually appealing,1438889128 +31831,91500,Woody Harrelson,1438804659 +31831,92420,acting,1446153524 +31831,92420,action,1446153531 +31831,92420,bullying,1446153522 +31831,92420,clever,1446153100 +31831,92420,coming of age,1446153107 +31831,92420,flying,1446153110 +31831,92420,found footage,1446153102 +31831,92420,Josh Trank,1446153608 +31831,92420,sci-fi,1446153098 +31831,92420,Seattle,1446153617 +31831,92420,shaky camera,1446153593 +31831,92420,shaky footage,1446153518 +31831,92420,supernatural powers,1446153097 +31831,92420,teenage angst,1446153105 +31831,92420,telekenisis,1446153527 +31831,92420,telekinesis,1446153108 +31831,92420,violence,1446153542 +31831,93363,Action,1443219421 +31831,93363,aliens,1443219444 +31831,93363,based on a book,1443219424 +31831,93363,fantasy,1443219427 +31831,93363,female warriors,1443219439 +31831,93363,Mars,1443219414 +31831,93363,sci-fi,1443219411 +31831,93512,duplass brothers,1450967271 +31831,93512,Jason Segel,1450967239 +31831,93512,Jay Duplass,1450967249 +31831,93512,Judy Greer,1450967256 +31831,93512,kevin,1450967266 +31831,93512,Mark Duplass,1450967253 +31831,93512,pot,1450967241 +31831,93512,relationships,1450967243 +31831,93512,siblings,1450967257 +31831,93512,signs,1450967231 +31831,93512,unravelling emotional issues,1450967244 +31831,93563,space,1437943575 +31831,94466,dark,1437944645 +31831,94466,dystopia,1437944642 +31831,94466,not a movie,1437944640 +31831,94466,satire,1437944646 +31831,94466,social commentary,1437944648 +31831,94466,technology,1437944643 +31831,94466,tv series,1437944626 +31831,94466,well constructed,1437944650 +31831,94558,beautiful,1366148045 +31831,94558,experimental,1422277431 +31831,94558,slow,1438804126 +31831,94558,visually appealing,1422277430 +31831,94799,Brit Marling,1446411253 +31831,94799,cult,1446411215 +31831,94799,cult leader,1446411340 +31831,94799,journalist,1446411304 +31831,94799,manipulation,1446411350 +31831,94799,secret handshake,1446411434 +31831,94799,Zal Batmanglij,1446411265 +31831,94864,aliens,1421403978 +31831,94864,atmospheric,1421404223 +31831,94864,bad script,1438703640 +31831,94864,character motivation,1421404227 +31831,94864,Charlize Theron,1421404271 +31831,94864,dialogue,1421404209 +31831,94864,exploration,1421404214 +31831,94864,intense,1421404219 +31831,94864,messes up continuity,1438703711 +31831,94864,Noomi Rapace,1421404317 +31831,94864,plot hole,1421404244 +31831,94864,plot holes,1438703572 +31831,94864,predictable,1421404188 +31831,94864,prequel,1421404192 +31831,94864,religion,1421404199 +31831,94864,religious overtones,1421404197 +31831,94864,Ridley Scott,1438703539 +31831,94864,sci fi,1438703555 +31831,94864,sci-fi,1421404202 +31831,94864,scifi,1421403980 +31831,94864,script,1438703601 +31831,94864,self-sacrifice,1421404201 +31831,94864,sequel bait,1421404212 +31831,94864,space travel,1421404183 +31831,94864,technology,1421404186 +31831,94959,Bill Murray,1421086416 +31831,94959,bittersweet,1421086425 +31831,94959,boy scouts,1421086455 +31831,94959,Bruce Willis,1421086420 +31831,94959,cinematography,1421086460 +31831,94959,coming of age,1421086434 +31831,94959,dialogue,1421086435 +31831,94959,dreamlike,1421086456 +31831,94959,Edward Norton,1421086419 +31831,94959,funny,1421086448 +31831,94959,island,1421086458 +31831,94959,Kara Hayward,1421086488 +31831,94959,love story,1421086423 +31831,94959,original,1421086422 +31831,94959,orphans,1421086468 +31831,94959,quirky,1421086415 +31831,94959,scouting,1421086875 +31831,94959,small town,1421086447 +31831,94959,stylized,1421086417 +31831,94959,surreal,1421086426 +31831,94959,Wes Anderson,1421086518 +31831,94959,wilderness,1421086450 +31831,96737,Action,1445978810 +31831,96737,bad dialogue,1445978915 +31831,96737,based on a comic,1445978753 +31831,96737,cinematography,1445978764 +31831,96737,corruption,1445978833 +31831,96737,drug trade,1445978888 +31831,96737,drugs,1445978803 +31831,96737,Dystopia,1445978743 +31831,96737,gore,1445978800 +31831,96737,gunfight,1445978831 +31831,96737,Karl Urban,1445979033 +31831,96737,Lena Headey,1445979005 +31831,96737,Olivia Thirlby,1445978998 +31831,96737,Pete Travis,1445979076 +31831,96737,police,1445978817 +31831,96737,police corruption,1445978760 +31831,96737,post-apocalyptic,1445978746 +31831,96737,sci-fi,1445978748 +31831,96737,strong female,1445978861 +31831,96737,strong female protagonist,1445978865 +31831,96737,ultra-violence,1445978905 +31831,96737,violence,1445978808 +31831,96737,violent,1445978936 +31831,98809,adapted from:book,1382788498 +31831,98809,adventure,1382788500 +31831,98809,author:J. R. R. Tolkein,1422274710 +31831,98809,based on a book,1382788518 +31831,98809,beautiful scenery,1382788524 +31831,98809,big budget,1382788529 +31831,98809,CGI,1422274663 +31831,98809,dwarf,1422274687 +31831,98809,epic,1422274655 +31831,98809,exaggerated,1422274696 +31831,98809,fantasy,1422274650 +31831,98809,fantasy world,1382788555 +31831,98809,franchise,1422274683 +31831,98809,Goblin,1422274705 +31831,98809,magic,1422274653 +31831,98809,middle earth,1422274690 +31831,98809,New Zealand,1422274715 +31831,98809,orcs,1422274691 +31831,98809,storytelling,1422274674 +31831,98809,Tolkien,1422274647 +31831,98809,too long,1422274660 +31831,99910,action,1450039674 +31831,99910,arizona,1450040018 +31831,99910,Arnold Schwarzenegger,1450039672 +31831,99910,blockade,1450040136 +31831,99910,Blood Splatters,1450039690 +31831,99910,bloody,1450039692 +31831,99910,border,1450039904 +31831,99910,cops,1450039686 +31831,99910,corvette,1450040034 +31831,99910,deputy,1450040027 +31831,99910,drug baron,1450039869 +31831,99910,FBI,1450039861 +31831,99910,hostage,1450039883 +31831,99910,humor,1450039665 +31831,99910,Johnny Knoxville,1450039763 +31831,99910,last stand,1450039895 +31831,99910,law enforcement,1450039918 +31831,99910,Peter Stormare,1450039725 +31831,99910,prisoner,1450040043 +31831,99910,sheriff,1450039848 +31831,99910,small town,1450039680 +31831,99910,stylized violence,1450039815 +31831,99910,thriller,1450039801 +31831,99910,violent,1450039802 +31831,99910,western,1450039797 +31831,99917,artistic,1414015410 +31831,99917,artsy,1414015412 +31831,99917,Beautiful,1414015413 +31831,99917,complicated,1414015425 +31831,99917,emotionally captivating,1414015433 +31831,100083,awkwardness,1450467419 +31831,100083,cast,1450467302 +31831,100083,crude humor,1450467295 +31831,100083,dark humor,1450467614 +31831,100083,embarassing scenes,1450467297 +31831,100083,episodic,1450467311 +31831,100083,multiple storylines,1450467304 +31831,100083,nudity (full frontal),1450467308 +31831,100083,offensive,1450467300 +31831,100083,politically incorrect,1450467441 +31831,100083,R language,1450467306 +31831,100083,silly,1450467310 +31831,100083,testicles,1450467464 +31831,100083,vulgarity,1450467430 +31831,100383,business,1449960621 +31831,100383,corruption,1449960591 +31831,100383,doctors,1449960597 +31831,100383,drugs,1449960580 +31831,100383,insider Trading,1449960614 +31831,100383,Jude Law,1449960628 +31831,100383,lesbian,1449960608 +31831,100383,medications,1449960582 +31831,100383,New York,1449960629 +31831,100383,nudity (topless),1449960682 +31831,100383,performances,1449960690 +31831,100383,psychology,1449960578 +31831,100383,slow start,1449960634 +31831,100383,Steven Soderbergh,1449960668 +31831,100383,twist,1449960637 +31831,100383,twist ending,1449960577 +31831,100383,twists,1449960672 +31831,100714,beautiful,1439142715 +31831,100714,conversation,1439142721 +31831,100714,dialogue,1439142738 +31831,100714,dialogue driven,1439142822 +31831,100714,Ethan Hawke,1439142680 +31831,100714,Greece,1439142678 +31831,100714,honest,1439142712 +31831,100714,Julie Delpy,1439142676 +31831,100714,long takes,1439143112 +31831,100714,love,1439142742 +31831,100714,marriage,1439142686 +31831,100714,nudity (topless),1439142732 +31831,100714,philosophical,1439142722 +31831,100714,phylosophycal,1439142710 +31831,100714,poignant,1439143148 +31831,100714,Richard Linklater,1439142682 +31831,100714,romance,1439142717 +31831,100714,talky,1439142688 +31831,100714,unique,1439142719 +31831,101864,action,1449701268 +31831,101864,adventure,1449701491 +31831,101864,Alien Invasion,1449701274 +31831,101864,alien technology,1449701390 +31831,101864,aliens,1449701256 +31831,101864,Andrea Riseborough,1449701319 +31831,101864,atmospheric,1449701209 +31831,101864,cliche,1449701908 +31831,101864,cliche ending,1449701503 +31831,101864,clones,1449701272 +31831,101864,cloning,1449701248 +31831,101864,drones,1449701282 +31831,101864,dystopia,1449701195 +31831,101864,dystopian,1449701323 +31831,101864,future,1449701224 +31831,101864,interesting concept,1449701239 +31831,101864,Joseph Kosinski,1449701329 +31831,101864,memory loss,1449701292 +31831,101864,Morgan Freeman,1449701249 +31831,101864,nuclear bomb,1449701539 +31831,101864,Olga Kurylenko,1449701275 +31831,101864,post-apocalyptic,1449701178 +31831,101864,sci-fi,1449701189 +31831,101864,space,1449701226 +31831,101864,technology,1449701241 +31831,101864,thin plot,1449701386 +31831,101864,Tom Cruise,1449701197 +31831,101864,twists & turns,1449701218 +31831,102125,action,1449776867 +31831,102125,action packed,1449776920 +31831,102125,armor,1449777047 +31831,102125,audience intelligence underestimated,1449776915 +31831,102125,bad science,1449777032 +31831,102125,Ben Kingsley,1449776872 +31831,102125,big budget,1449776967 +31831,102125,boring,1449776969 +31831,102125,cgi,1449777035 +31831,102125,childish,1449777112 +31831,102125,comic book,1449776891 +31831,102125,Don Cheadle,1449777205 +31831,102125,exoskeleton,1449777074 +31831,102125,explosions,1449777042 +31831,102125,Guy Pearce,1449776958 +31831,102125,Gwyneth Paltrow,1449776879 +31831,102125,helicopters,1449777138 +31831,102125,hologram,1449777071 +31831,102125,humour,1449776896 +31831,102125,Iron Man,1449776876 +31831,102125,James Badge Dale,1449777312 +31831,102125,Jon Favreau,1449777289 +31831,102125,Los Angeles,1449777069 +31831,102125,Marvel,1449776866 +31831,102125,Marvel Cinematic Universe,1449777267 +31831,102125,predictable,1449776912 +31831,102125,predictable ending,1449777086 +31831,102125,Rebecca Hall,1449777300 +31831,102125,Robert Downey Jr.,1449776860 +31831,102125,robotic exoskeleton,1449776972 +31831,102125,robots,1449776869 +31831,102125,romance,1449776934 +31831,102125,sci-fi,1449777025 +31831,102125,shallow plot,1449776918 +31831,102125,Shane Black,1449777252 +31831,102125,shipyard,1449777095 +31831,102125,silly,1449776963 +31831,102125,super strength,1449777027 +31831,102125,superhero,1449776864 +31831,102125,terrorism,1449776888 +31831,102125,visually appealing,1449776898 +31831,102407,1920s,1439415338 +31831,102407,beautiful,1439415296 +31831,102407,cinematography,1439415343 +31831,102407,disappointing,1439415312 +31831,102407,Leonardo DiCaprio,1439415289 +31831,102407,stylized,1439415294 +31831,102407,visually appealing,1439415305 +31831,102445,action,1382788765 +31831,102445,adapted from:TV series,1382788762 +31831,102445,aliens,1382788768 +31831,102445,based on a TV show,1382788776 +31831,102445,fast paced,1382788786 +31831,102445,franchise,1382788790 +31831,102445,inferior sequel,1382788794 +31831,102445,PG-13,1382788805 +31831,102445,predictable,1382788810 +31831,102445,revenge,1382788815 +31831,102445,science fiction,1382788818 +31831,102445,space,1382788822 +31831,102445,Star Trek,1382788825 +31831,103075,brutal,1447359838 +31831,103075,class differences,1447359974 +31831,103075,classism,1447359708 +31831,103075,cliche,1447359710 +31831,103075,dystopia,1447359861 +31831,103075,envy,1447360228 +31831,103075,interesting concept,1447359802 +31831,103075,James DeMonaco,1447359875 +31831,103075,political commentary,1447359687 +31831,103075,satire,1447359690 +31831,103075,simplistic,1447359722 +31831,103075,social commentary,1447359679 +31831,103075,wasted potential,1447359804 +31831,103228,action,1450223239 +31831,103228,aliens,1450223038 +31831,103228,audience intelligence underestimated,1450223413 +31831,103228,bad acting,1450223180 +31831,103228,Burn Gorman,1450223280 +31831,103228,cgi,1450223205 +31831,103228,cinematography,1450223103 +31831,103228,colours,1450223213 +31831,103228,disappointing,1450223166 +31831,103228,effects,1450223214 +31831,103228,giant monster,1450223076 +31831,103228,giant monsters,1450223298 +31831,103228,giant robot,1450223301 +31831,103228,giant robots,1450223021 +31831,103228,Guillermo del Toro,1450223030 +31831,103228,Idris Elba,1450223101 +31831,103228,Kaiju,1450223078 +31831,103228,Mana Ashida,1450223338 +31831,103228,mecha,1450223074 +31831,103228,Monster,1450223266 +31831,103228,monsters,1450223347 +31831,103228,monstrous creatures,1450223473 +31831,103228,neon,1450223220 +31831,103228,nuclear bomb,1450223402 +31831,103228,poor acting performance,1450223257 +31831,103228,punching,1450223354 +31831,103228,ridiculous,1450223081 +31831,103228,Rinko Kikuchi,1450223108 +31831,103228,robots,1450223052 +31831,103228,romance,1450223193 +31831,103228,Ron Perlman,1450223070 +31831,103228,sci-fi,1450223035 +31831,103228,sea monster,1450223229 +31831,103228,silly,1450223093 +31831,103228,stomping,1450223358 +31831,103228,straightforward,1450223364 +31831,103228,teamwork,1450223368 +31831,103228,underwater fighting,1450223377 +31831,103249,action,1449685514 +31831,103249,apocalyptic,1449685728 +31831,103249,bad adaption of the book,1449685839 +31831,103249,blood,1449685665 +31831,103249,boring,1449685658 +31831,103249,Brad Pitt,1449685512 +31831,103249,chase scenes,1449685522 +31831,103249,child actors,1449685703 +31831,103249,disappointing,1449685649 +31831,103249,disease,1449685753 +31831,103249,epidemic,1449685726 +31831,103249,fast zombies,1449685724 +31831,103249,horror,1449685519 +31831,103249,infection,1449685690 +31831,103249,international,1449685779 +31831,103249,international cast,1449685782 +31831,103249,Israel,1449685516 +31831,103249,Marc Forster,1449685858 +31831,103249,New York,1449685615 +31831,103249,novel adaptation,1449685848 +31831,103249,outbreak,1449685785 +31831,103249,pandemic,1449685509 +31831,103249,Parental ties,1449685789 +31831,103249,predictable,1449685569 +31831,103249,predictable ending,1449685566 +31831,103249,Scotland,1449685800 +31831,103249,South Korea,1449685590 +31831,103249,undead,1449685722 +31831,103249,United Nations,1449685681 +31831,103249,USA,1449685667 +31831,103249,vaccine,1449685805 +31831,103249,violence,1449685808 +31831,103249,virus,1449685720 +31831,103249,WHO,1449685739 +31831,103249,zombies,1449685507 +31831,103253,class conflict,1421007221 +31831,103253,cyborgs,1421007194 +31831,103253,dystopia,1421007162 +31831,103253,exo-skeleton,1421007236 +31831,103253,future,1421007207 +31831,103253,Inequality,1421007250 +31831,103253,Jodie Foster,1421007205 +31831,103253,Matt Damon,1421007210 +31831,103253,medicine,1421007253 +31831,103253,military,1421007262 +31831,103253,poverty,1421007223 +31831,103253,robots,1421007198 +31831,103253,sci-fi,1421007855 +31831,103253,science fiction,1421007196 +31831,103253,shallow characters,1421007214 +31831,103253,shallow story,1421007479 +31831,103253,social commentary,1421007183 +31831,103253,visually stunning,1421007179 +31831,103306,aliens,1438699840 +31831,103306,Found footage,1438699847 +31831,103306,hard science fiction,1438699838 +31831,103306,jupiter,1438699851 +31831,103306,space,1438699836 +31831,103306,visually stunning,1438699839 +31831,103685,alchemist,1450128926 +31831,103685,black and white,1450129114 +31831,103685,civil war,1450128870 +31831,103685,disturbing,1450128854 +31831,103685,looking for treasure,1450129091 +31831,103685,mushrooms,1450128905 +31831,103685,psychedelic,1450128844 +31831,103685,weird,1450128846 +31831,103721,abstract,1447797197 +31831,103721,american civil war,1447797084 +31831,103721,astronaut,1447797023 +31831,103721,boring,1447796851 +31831,103721,disappointing,1447796894 +31831,103721,helpless,1447797054 +31831,103721,international space station,1447797010 +31831,103721,isolation,1447797063 +31831,103721,loneliness,1447797072 +31831,103721,meaningless,1447796815 +31831,103721,slow,1447796793 +31831,103721,sole survivor,1447797033 +31831,103721,space,1447796777 +31831,103721,wasted potential,1447796922 +31831,104243,action,1450468279 +31831,104243,aliens,1450468153 +31831,104243,bounty hunter(s),1450468222 +31831,104243,bounty hunters,1450468185 +31831,104243,Dave Bautista,1450468344 +31831,104243,David Twohy,1450468294 +31831,104243,dog,1450468257 +31831,104243,escape,1450468195 +31831,104243,exaggerated,1450468356 +31831,104243,franchise,1450468170 +31831,104243,gore,1450468255 +31831,104243,Karl Urban,1450468324 +31831,104243,Katee Sackhoff,1450468253 +31831,104243,mercenary,1450468197 +31831,104243,Nudity (Topless),1450468168 +31831,104243,planet,1450468201 +31831,104243,Rehash Sequel,1450468334 +31831,104243,sci-fi,1450468164 +31831,104243,sequel,1450468204 +31831,104243,simplistic,1450468184 +31831,104243,slow,1450468272 +31831,104243,space western,1450468162 +31831,104243,survival,1450468172 +31831,104243,Vin Diesel,1450468154 +31831,104841,3D,1421009217 +31831,104841,3D effects,1387921912 +31831,104841,acting,1387921549 +31831,104841,bad science,1387921816 +31831,104841,beautiful,1421009200 +31831,104841,cgi,1387921884 +31831,104841,cheesy,1421009202 +31831,104841,cinematography,1387921559 +31831,104841,feeble character development,1421009232 +31831,104841,George Clooney,1387921561 +31831,104841,Hollow,1421009209 +31831,104841,intense,1387921564 +31831,104841,overrated,1387921568 +31831,104841,physics,1387922967 +31831,104841,plot,1387921580 +31831,104841,predictable,1421009205 +31831,104841,religion,1387921689 +31831,104841,sandra bullock,1387921613 +31831,104841,sci-fi,1387921624 +31831,104841,science,1387921814 +31831,104841,score,1421009211 +31831,104841,setting:space,1421009220 +31831,104841,Simple,1421009204 +31831,104841,space,1387921639 +31831,104841,Space Station,1421009237 +31831,104841,suspense,1387921642 +31831,104841,visually appealing,1387921644 +31831,104841,visually stunning,1387921648 +31831,104841,zero gravity,1387921651 +31831,104879,abduction,1450806593 +31831,104879,absorbing,1450806494 +31831,104879,acting,1450806489 +31831,104879,atmospheric,1450806496 +31831,104879,dark,1450806599 +31831,104879,Denis Villeneuve,1450806510 +31831,104879,despair,1450806601 +31831,104879,great direction,1450806543 +31831,104879,great ending,1450806498 +31831,104879,Hugh Jackman,1450806491 +31831,104879,investigation,1450806610 +31831,104879,Jake Gyllenhaal,1450806488 +31831,104879,kidnapping,1450806612 +31831,104879,missing children,1450806723 +31831,104879,morality,1450806502 +31831,104879,multi-dimensional characters,1450806616 +31831,104879,mystery,1450806531 +31831,104879,nuanced,1450806516 +31831,104879,photography,1450806512 +31831,104879,realistic,1450806623 +31831,104879,realistic action,1450806515 +31831,104879,slow burn,1450806580 +31831,104879,snakes,1450806648 +31831,104879,social commentary,1450806651 +31831,104879,taking justice into own hands,1450806588 +31831,104879,thriller,1450806493 +31831,104879,torture,1450806529 +31831,104879,USA,1450806655 +31831,105653,Arnold Schwarzenegger,1438550752 +31831,105653,Prison,1438550759 +31831,105653,prison escape,1438550760 +31831,105653,Sylvester Stallone,1438550751 +31831,105653,torture,1438550763 +31831,105769,adapted from:book,1412283563 +31831,105769,based on a book,1412283570 +31831,105769,drugs,1412283576 +31831,105769,emotional,1412283580 +31831,105769,Robin Wright,1412283583 +31831,105769,visuals,1412283587 +31831,106441,adapted from:book,1450302867 +31831,106441,antisemitism,1450302904 +31831,106441,based on a book,1450302906 +31831,106441,basement,1450303119 +31831,106441,bombing,1450303151 +31831,106441,books,1450302876 +31831,106441,Brian Percival,1450303032 +31831,106441,children,1450302915 +31831,106441,Emily Watson,1450303044 +31831,106441,emotional and heroic,1450302886 +31831,106441,father daughter relationship,1450303212 +31831,106441,Geoffrey Rush,1450303017 +31831,106441,Germany,1450302942 +31831,106441,learning to read,1450303136 +31831,106441,meaning of life,1450302889 +31831,106441,mother daughter relationship,1450303205 +31831,106441,narration,1450302870 +31831,106441,Nazis,1450302935 +31831,106441,parental love,1450302929 +31831,106441,powerful,1450303105 +31831,106441,sad,1450302896 +31831,106441,setting:Nazi Germany,1450302880 +31831,106441,Sophie Nelisse,1450302984 +31831,106441,sweet,1450302897 +31831,106441,Thought-Provoking,1450303096 +31831,106441,touching,1450302868 +31831,106441,voice over narration,1450303180 +31831,106441,World War II,1450302873 +31831,106487,based on a book,1438889138 +31831,106487,costumes,1438889211 +31831,106487,dystopia,1438889100 +31831,106487,dystopic future,1438889157 +31831,106487,Jennifer Lawrence,1438889101 +31831,106487,romance,1438889185 +31831,106487,sci-fi,1438889306 +31831,106487,science fiction,1438889335 +31831,106487,strong female lead,1438889172 +31831,106487,visually appealing,1438889134 +31831,106487,Woody Harrelson,1438889187 +31831,106489,adapted from:book,1422274593 +31831,106489,adventure,1422274564 +31831,106489,author:J. R. R. Tolkein,1422274622 +31831,106489,based on a book,1422274562 +31831,106489,double frame rate,1422274613 +31831,106489,dragon,1422274567 +31831,106489,dragons,1422274602 +31831,106489,epic,1422274594 +31831,106489,fantasy,1422274578 +31831,106489,hobbit,1422274604 +31831,106489,not true to the book,1422274571 +31831,106489,Tolkien,1422274623 +31831,106489,too long,1422274560 +31831,106782,1980s,1449354749 +31831,106782,Amoral,1449353827 +31831,106782,Anti-Hero,1449353800 +31831,106782,based on a book,1449353829 +31831,106782,based on a true story,1449354440 +31831,106782,Beautiful Woman,1449353978 +31831,106782,bikini,1449354649 +31831,106782,breaking the fourth wall,1449354881 +31831,106782,drug addiction,1449354829 +31831,106782,drugs,1449353790 +31831,106782,Funny,1449353794 +31831,106782,Great acting,1449353882 +31831,106782,greed,1449353822 +31831,106782,greedy,1449354034 +31831,106782,Jean Dujardin,1449354274 +31831,106782,Joanna Lumley,1449354262 +31831,106782,Jonah Hill,1449354241 +31831,106782,Kyle Chandler,1449354252 +31831,106782,Leonardo DiCaprio,1449353785 +31831,106782,long,1449353854 +31831,106782,Margot Robbie,1449354208 +31831,106782,Martin Scorsese,1449353788 +31831,106782,Matthew McConaughey,1449353845 +31831,106782,midgets,1449354344 +31831,106782,money,1449353966 +31831,106782,narration,1449354728 +31831,106782,Nudity (Full Frontal),1449353792 +31831,106782,Nudity (Topless),1449353816 +31831,106782,Orgies,1449354013 +31831,106782,profanity,1449354017 +31831,106782,prostitution,1449353803 +31831,106782,provocative,1449353865 +31831,106782,Rob Reiner,1449354369 +31831,106782,satire,1449354474 +31831,106782,Sex,1449354019 +31831,106782,sex scenes,1449353963 +31831,106782,social commentary,1449354326 +31831,106782,Stock Brokers,1449353970 +31831,106782,Stock Market,1449354093 +31831,106782,stockbroker,1449354425 +31831,106782,strippers,1449353858 +31831,106782,talking to the camera,1449354510 +31831,106782,unlikeable characters,1449354322 +31831,106782,villain protagonist,1449354001 +31831,106782,visually appealing,1449353818 +31831,106782,Wall Street,1449354083 +31831,106782,white collar crime,1449354923 +31831,106920,artificial intelligence,1416433301 +31831,106920,bittersweet,1438632917 +31831,106920,joaquin phoenix,1416433314 +31831,106920,quirky,1438632956 +31831,106920,Scarlett Johansson,1416433309 +31831,106920,sci-fi,1416433325 +31831,106920,thought-provoking,1438632915 +31831,107406,chris evans,1421007616 +31831,107406,dark,1438703749 +31831,107406,dystopia,1420842099 +31831,107406,dystopian,1438703765 +31831,107406,jamie bell,1421007587 +31831,107406,john hurt,1421007598 +31831,107406,Joon-ho Bong,1421007566 +31831,107406,Korean,1438703731 +31831,107406,Plot twist,1438703722 +31831,107406,post-apocalyptic,1420842097 +31831,107406,revolution,1421007519 +31831,107406,snow,1438703739 +31831,107406,social commentary,1420842103 +31831,107406,surreal,1438703724 +31831,107406,tilda swinton,1421007575 +31831,107406,train,1420842106 +31831,107406,trains,1420842124 +31831,107406,violence,1421007516 +31831,108727,Lars von Trier,1413043444 +31831,108727,naration,1413043448 +31831,108727,Nudity (Full Frontal - Notable),1413043458 +31831,108727,nudity (full frontal),1413043460 +31831,108727,pornography,1413043464 +31831,108727,sexuality,1413043464 +31831,108727,story,1413043468 +31831,108727,unsimulated sex,1413043474 +31831,108932,anti-conformity,1437932339 +31831,108932,Batman,1437932197 +31831,108932,fun,1437932199 +31831,108932,imagination,1437932246 +31831,108932,Morgan Freeman,1437932272 +31831,108932,rebellion,1437932270 +31831,108932,robots,1437932284 +31831,108981,Lars von Trier,1421008963 +31831,109187,bittersweet,1447781744 +31831,109187,Christoph Waltz,1447781778 +31831,109187,dystopia,1447782589 +31831,109187,existential,1447781745 +31831,109187,existentialism,1447782616 +31831,109187,hackers,1447781757 +31831,109187,lingerie,1447782531 +31831,109187,meaning of life,1447781731 +31831,109187,Mélanie Thierry,1447781829 +31831,109187,nudity (topless),1447781754 +31831,109187,rats,1447781742 +31831,109187,relatable,1447781839 +31831,109187,surreal,1447781732 +31831,109187,Terry Gilliam,1447781764 +31831,109187,visually appealing,1447781735 +31831,109374,Adrien Brody,1441224697 +31831,109374,Alexandre Desplat,1441224686 +31831,109374,Bill Murray,1441224607 +31831,109374,cast,1441224128 +31831,109374,cinematography,1441224095 +31831,109374,colourful sets,1441224133 +31831,109374,concierge,1441224541 +31831,109374,eastern europe,1441224110 +31831,109374,Edward Norton,1441224119 +31831,109374,ensemble cast,1441224150 +31831,109374,europe,1441224448 +31831,109374,F. Murray Abraham,1441224631 +31831,109374,funny,1441224103 +31831,109374,great dialogue,1441224105 +31831,109374,Harvey Keitel,1441224641 +31831,109374,hotel,1441224115 +31831,109374,imdb top 250,1441224408 +31831,109374,inheritance,1441224550 +31831,109374,Jeff Goldblum,1441224604 +31831,109374,last will,1441224440 +31831,109374,murder,1441224462 +31831,109374,on the run,1441224478 +31831,109374,Owen Wilson,1441224720 +31831,109374,painting,1441224556 +31831,109374,prison,1441224200 +31831,109374,quirky,1441224097 +31831,109374,Ralph Fiennes,1441224579 +31831,109374,ridiculous,1441224465 +31831,109374,Saoirse Ronan,1441224620 +31831,109374,stylized,1441224101 +31831,109374,Tilda Swinton,1441224652 +31831,109374,Tom Wilkinson,1441224714 +31831,109374,visually appealing,1441224094 +31831,109374,war,1441224444 +31831,109374,Wes Anderson,1441224587 +31831,109374,whimsical,1441224108 +31831,109374,Willem Dafoe,1441224594 +31831,109487,adventure,1450223646 +31831,109487,ambitious,1417198053 +31831,109487,Anne Hathaway,1417198080 +31831,109487,artificial intelligence,1438699366 +31831,109487,astronauts,1450223699 +31831,109487,atmosphere,1438699410 +31831,109487,beautiful,1438699452 +31831,109487,black hole,1438699378 +31831,109487,black holes,1450223704 +31831,109487,Christopher Nolan,1417198010 +31831,109487,cliché finale,1438699493 +31831,109487,cornfield,1450223710 +31831,109487,corny,1421008930 +31831,109487,cosmos,1450223713 +31831,109487,epic,1438703943 +31831,109487,expedition,1450223647 +31831,109487,father - child relationship,1421008934 +31831,109487,father and daughter story,1450223728 +31831,109487,father-daughter conflict,1450223651 +31831,109487,giant wave,1450223735 +31831,109487,good science,1421008919 +31831,109487,good science bad science,1421008925 +31831,109487,great concept,1450223746 +31831,109487,Hans Zimmer,1450223594 +31831,109487,Iceland,1450223835 +31831,109487,interesting ideea,1417198115 +31831,109487,interstellar trip,1450223655 +31831,109487,long,1438699425 +31831,109487,Masterpiece,1417198142 +31831,109487,Matt Damon,1450223808 +31831,109487,Matthew McConaughey,1417198048 +31831,109487,Michael Caine,1417198109 +31831,109487,monumental,1450223811 +31831,109487,Oscar (Best Effects - Visual Effects),1450223669 +31831,109487,Oscar Nominee: Music - Original Score,1450223672 +31831,109487,Oscar Nominee: Production Design,1450223675 +31831,109487,Oscar Nominee: Sound Editing,1450223677 +31831,109487,Oscar Nominee: Sound Mixing,1450223681 +31831,109487,philosophical issues,1417198120 +31831,109487,physics,1421008937 +31831,109487,planets,1450223813 +31831,109487,plot holes,1438699375 +31831,109487,relativity,1417198082 +31831,109487,robot,1438699467 +31831,109487,sci-fi,1438699359 +31831,109487,science fiction,1438699369 +31831,109487,sentimental,1421008920 +31831,109487,smart,1450223785 +31831,109487,sounds,1417198122 +31831,109487,space,1417198077 +31831,109487,space exploration,1438699432 +31831,109487,space physics,1450223771 +31831,109487,space travel,1438699380 +31831,109487,spaceships,1450223683 +31831,109487,special effects,1450223694 +31831,109487,spectacle,1421008927 +31831,109487,spectacular CG,1450223685 +31831,109487,suspense,1438699412 +31831,109487,thought-provoking,1417198015 +31831,109487,time dilation,1450223688 +31831,109487,time travel,1438699367 +31831,109487,time-travel,1417198062 +31831,109487,twist ending,1438699423 +31831,109487,USA,1450223824 +31831,109487,Visual effect,1450223798 +31831,109487,visually appealing,1438699384 +31831,109487,voyage,1450223795 +31831,109487,wormhole,1417198051 +31831,109848,beautiful photography,1437811132 +31831,109848,little dialogue,1437811161 +31831,109848,male nudity,1437811151 +31831,109848,nudity (full frontal),1437811134 +31831,109848,Scarlett Johansson,1437811129 +31831,109848,slow,1437811118 +31831,109848,visually appealing,1437811126 +31831,110730,anti-scientific,1449438940 +31831,110730,artificial intelligence,1449439040 +31831,110730,computers,1449439012 +31831,110730,consciousness,1449439003 +31831,110730,cyborgs,1449439005 +31831,110730,directorial debut,1449438838 +31831,110730,emotional,1449438937 +31831,110730,future,1449439060 +31831,110730,impossible science,1449439009 +31831,110730,Johnny Depp,1449438760 +31831,110730,Los Angeles,1449438831 +31831,110730,love,1449438972 +31831,110730,luddism,1449438920 +31831,110730,Morgan Freeman,1449438768 +31831,110730,nano-technology,1449439014 +31831,110730,nanobots,1449438999 +31831,110730,neoluddism,1449438908 +31831,110730,network,1449438978 +31831,110730,New Mexico,1449438832 +31831,110730,predictable,1449438995 +31831,110730,Rebecca Hall,1449439085 +31831,110730,ridiculous,1449438809 +31831,110730,science is magic,1449438791 +31831,110730,scientists,1449438866 +31831,110730,silly,1449438813 +31831,110730,technophobia,1449438947 +31831,110730,technophobic,1449438804 +31831,110730,terrorism,1449438861 +31831,110730,typical,1449438842 +31831,110882,childbirth,1453931316 +31831,110882,concrete,1453931323 +31831,110882,construction,1453931325 +31831,110882,construction workers,1453931329 +31831,110882,dialogue driven,1453931245 +31831,110882,driving,1453931260 +31831,110882,good dialogue,1453931338 +31831,110882,hands-free,1453931341 +31831,110882,one man show,1453931249 +31831,110882,phone,1453931354 +31831,110882,relationship,1453931361 +31831,110882,responsible driving,1453931363 +31831,110882,road,1453931368 +31831,110882,Steven Knight,1453931399 +31831,110882,strong performance,1453931243 +31831,110882,telephone,1453931371 +31831,110882,Tom Hardy,1453931247 +31831,110882,unique,1453931244 +31831,111360,Scarlett Johansson,1420453645 +31831,111759,action,1436348153 +31831,111759,Alien Invasion,1436348162 +31831,111759,aliens,1436348151 +31831,111759,based on a novel,1436348169 +31831,111759,Doug Liman,1436348202 +31831,111759,Emily Blunt,1436348136 +31831,111759,ending,1436348174 +31831,111759,future,1436348156 +31831,111759,original plot,1436348149 +31831,111759,powersuit,1436348178 +31831,111759,Reluctant Hero,1436348167 +31831,111759,sci-fi,1436348132 +31831,111759,time loop,1436348126 +31831,111759,time travel,1436348128 +31831,111759,Tom Cruise,1436348131 +31831,111759,war,1436348160 +31831,112087,mind bending,1446320897 +31831,112183,Alejandro González Iñárritu,1452720858 +31831,112183,alter ego,1452720823 +31831,112183,annoying soundtrack,1452721793 +31831,112183,Artsy,1452720979 +31831,112183,bad plot,1452722950 +31831,112183,boring,1452721777 +31831,112183,boring plot,1452722957 +31831,112183,Broadway,1452720836 +31831,112183,cinematography,1452723595 +31831,112183,dark,1452720816 +31831,112183,drum soundtrack,1452721790 +31831,112183,Edward Norton,1452720809 +31831,112183,emma stone,1452720853 +31831,112183,former celebrity,1452721494 +31831,112183,insider acting stuff,1452720878 +31831,112183,magical realism,1452720829 +31831,112183,mental health,1452721006 +31831,112183,Michael Keaton,1452720837 +31831,112183,movie business,1452720850 +31831,112183,new york,1452720984 +31831,112183,one shot,1452723594 +31831,112183,pretentious,1452720856 +31831,112183,psychological,1452720818 +31831,112183,sad story,1452720967 +31831,112183,show business,1452721531 +31831,112183,single shot,1452723592 +31831,112183,superhero,1452720872 +31831,112183,surreal,1452720839 +31831,112183,theater,1452720821 +31831,112183,theater rehearsal,1452721557 +31831,112183,theatre,1452721015 +31831,112183,theatrical acting,1452721041 +31831,112183,tracking camera,1452723608 +31831,112183,USA,1452720966 +31831,112183,Zach Galifianakis,1452720885 +31831,112515,atmospheric,1449675575 +31831,112515,Australia,1449675656 +31831,112515,creepy book,1449675620 +31831,112515,dark,1449675588 +31831,112515,directorial debut,1449675623 +31831,112515,haunted house,1449675688 +31831,112515,horror,1449675680 +31831,112515,insanity,1449675640 +31831,112515,Jennifer Kent,1449675666 +31831,112515,Metaphorical,1449675593 +31831,112515,monster,1449675579 +31831,112515,mother-son relationship,1449675586 +31831,112515,possession,1449675676 +31831,112515,psychological,1449675572 +31831,112515,single parents,1449675600 +31831,112515,supernatural,1449675577 +31831,112804,antiscience,1447261425 +31831,112804,antiscientific,1447261075 +31831,112804,believer,1447261001 +31831,112804,eyes,1447261095 +31831,112804,nudity (topless),1447261026 +31831,112804,reincarnation,1447260920 +31831,112804,religion,1447261047 +31831,112804,weak scenario,1447261013 +31831,112818,class differences,1447540799 +31831,112818,classism,1447540769 +31831,112818,dystopia,1447540781 +31831,112818,James DeMonaco,1447540818 +31831,112818,political commentary,1447540757 +31831,112818,satire,1447540722 +31831,112818,sequel,1447540714 +31831,112818,social commentary,1447540745 +31831,112818,violence,1447541017 +31831,112852,Action,1412184745 +31831,112852,adventure,1412184748 +31831,112852,aliens,1412184751 +31831,112852,characters with individual goals,1421009028 +31831,112852,childish,1421009033 +31831,112852,cyborgs,1412184865 +31831,112852,fantasy,1412184766 +31831,112852,fun,1421009019 +31831,112852,great soundtrack,1421009002 +31831,112852,Great Visuals,1412184780 +31831,112852,Marvel,1421008991 +31831,112852,Marvel Cinematic Universe,1421009004 +31831,112852,sci-fi,1412184789 +31831,112852,science fiction,1412184790 +31831,112852,space,1412184837 +31831,112852,talking animals,1412184839 +31831,112852,Teamwork,1421009031 +31831,113741,intelligent,1445029554 +31831,113741,mind bending,1445029551 +31831,113741,multiverse,1445029560 +31831,113741,mystery,1445029553 +31831,113741,parallel universe,1445029550 +31831,113741,psychological,1445029570 +31831,113741,psychothriller,1445029555 +31831,113741,tense,1445029574 +31831,114060,boring,1452801495 +31831,114060,chechen mob,1452801471 +31831,114060,crime,1452801445 +31831,114060,Noomi Rapace,1452801459 +31831,114060,organized crime,1452801462 +31831,114060,pit bull,1452801477 +31831,114060,Tom Hardy,1452801449 +31831,114060,violence,1452801464 +31831,114180,action,1440106860 +31831,114180,amnesia,1440106413 +31831,114180,based on a book,1440106641 +31831,114180,dystopia,1440106635 +31831,114180,experiment,1440106814 +31831,114180,horror,1440106664 +31831,114180,kids,1440106822 +31831,114180,maze,1440106408 +31831,114180,plot holes,1440106405 +31831,114180,post-apocalyptic,1440106638 +31831,114180,robots,1440106743 +31831,114180,survival,1440106410 +31831,114180,Twist Ending,1440106834 +31831,114180,weak plot,1440106845 +31831,114704,asteroid,1447885955 +31831,114704,bad mother,1447885677 +31831,114704,christmas,1447885562 +31831,114704,drug abuse,1447885550 +31831,114704,jealousy,1447885669 +31831,114704,lust,1447885965 +31831,114704,marijuana,1447885784 +31831,114704,nudity (full frontal),1447885509 +31831,114704,psychotherapy,1447885592 +31831,114704,retro future,1447885610 +31831,114704,robot,1447885740 +31831,114704,satire,1447885580 +31831,114704,sexism,1447885654 +31831,114704,space,1447885513 +31831,114704,space station,1447885571 +31831,114847,artificial intelligence,1448129427 +31831,114847,atmospheric,1448129440 +31831,114847,dystopia,1448129435 +31831,114847,Futuristic,1448129450 +31831,114847,post-apocalyptic,1448129433 +31831,114847,realistic,1448129530 +31831,114847,robots,1448129436 +31831,114935,mindfuck,1436644779 +31831,114935,sci-fi,1436644794 +31831,114935,science fiction,1436644784 +31831,114935,time travel,1436644777 +31831,114935,twist ending,1436644781 +31831,115149,Action,1440539083 +31831,115149,Adrianne Palicki,1440539331 +31831,115149,Alfie Allen,1440539361 +31831,115149,assassin,1440539100 +31831,115149,Chad Stahelski,1440539354 +31831,115149,David Leitch,1440539355 +31831,115149,gunfight,1440539156 +31831,115149,guns,1440539213 +31831,115149,head-shot,1440539217 +31831,115149,Hitman,1440539085 +31831,115149,Keanu Reeves,1440538995 +31831,115149,killer,1440539171 +31831,115149,killing spree,1440539168 +31831,115149,lack of story,1440539253 +31831,115149,mafia,1440539135 +31831,115149,Michael Nyqvist,1440539316 +31831,115149,organized crime,1440539221 +31831,115149,over the top,1440539227 +31831,115149,predictable,1440539229 +31831,115149,puppy,1440539267 +31831,115149,Revenge,1440538994 +31831,115149,russian mafia,1440539125 +31831,115149,secret society,1440539390 +31831,115149,simple story,1440539259 +31831,115149,story,1440539245 +31831,115149,violent,1440539094 +31831,115149,Willem Dafoe,1440539348 +31831,115210,acting,1439761644 +31831,115210,action,1439761646 +31831,115210,Brad Pitt,1439761611 +31831,115210,cliche,1439761817 +31831,115210,drama,1439761675 +31831,115210,ending,1439761936 +31831,115210,fight scenes,1439762138 +31831,115210,rape,1439761707 +31831,115210,realistic,1439761634 +31831,115210,religion,1439762042 +31831,115210,rookie,1439762091 +31831,115210,sentimental,1439761655 +31831,115210,tank,1439762143 +31831,115210,tanks,1439761613 +31831,115210,war,1439761616 +31831,115210,war hero,1439761638 +31831,115210,World War II,1439761604 +31831,115569,crime reporter,1439493096 +31831,115569,dark,1439493058 +31831,115569,gripping,1439493057 +31831,115569,Jake Gyllenhaal,1439493043 +31831,115569,journalism,1439493070 +31831,115569,los angeles,1439494620 +31831,115569,psychothriller,1439493949 +31831,115569,satire,1439493071 +31831,115569,sociopath,1439493060 +31831,115569,television,1439493991 +31831,115569,tense,1439493939 +31831,115569,thriller,1439493086 +31831,115680,twist ending,1438465041 +31831,115680,unexpected ending,1439415439 +31831,115680,unique story,1439415431 +31831,115713,AI,1440619584 +31831,115713,artifical intelligence,1440619711 +31831,115713,artificial intelligence,1440619563 +31831,115713,cerebral,1440619728 +31831,115713,consciousness,1440619617 +31831,115713,Contemplative,1440619910 +31831,115713,cybernetics,1440619600 +31831,115713,Domhnall Gleeson,1440619972 +31831,115713,experiment,1440619737 +31831,115713,Future,1440619592 +31831,115713,futuristic,1440619579 +31831,115713,isolation,1440619606 +31831,115713,Nudity,1440619789 +31831,115713,Nudity (Full Frontal - Notable),1440619791 +31831,115713,nudity (full frontal),1440619583 +31831,115713,pessimistic,1440619799 +31831,115713,philosophical,1440619571 +31831,115713,plot twist,1440619588 +31831,115713,Psychological,1440619594 +31831,115713,Robot,1440619671 +31831,115713,robots,1440619574 +31831,115713,sci-fi,1440619565 +31831,115713,Serious,1440619851 +31831,115713,technology,1440619575 +31831,115713,thought provoking,1440619570 +31831,115713,thriller,1440619578 +31831,115713,turing test,1440619609 +31831,115713,twist ending,1440619865 +31831,115713,visual effects,1440619868 +31831,116138,Aleksey Serebryakov,1452642255 +31831,116138,Andrey Zvyagintsev,1452642154 +31831,116138,arctic,1452642165 +31831,116138,corrupt politician,1452642303 +31831,116138,corruption,1452642137 +31831,116138,depression,1452642166 +31831,116138,drinking,1452642168 +31831,116138,lawyer,1452642292 +31831,116138,mayor,1452642285 +31831,116138,police corruption,1452642175 +31831,116138,politics,1452642138 +31831,116138,poverty,1452642177 +31831,116138,Roman Madyanov,1452642273 +31831,116138,Russia,1452642189 +31831,116138,russian,1452642157 +31831,116138,slow,1452642179 +31831,116138,social commentary,1452642140 +31831,116138,tragedy,1452642180 +31831,116138,vodka,1452642313 +31831,116397,asylum,1449528836 +31831,116397,Ben Kingsley,1449528802 +31831,116397,Edgar Allan Poe,1449528823 +31831,116397,Jim Sturgess,1449529139 +31831,116397,Kate Beckinsale,1449528804 +31831,116397,madhouse,1449528955 +31831,116397,mental illness,1449528807 +31831,116397,mental institution,1449528856 +31831,116397,plot twist,1449528820 +31831,116397,primitive medicine,1449529105 +31831,116397,twisted end,1449529125 +31831,116797,Alan Turing,1436606877 +31831,116797,Benedict Cumberbatch,1436606882 +31831,116797,code breaking,1436606887 +31831,116797,Computers,1436606886 +31831,116797,cryptography,1436606875 +31831,116797,England,1436606957 +31831,116797,genius,1436606924 +31831,116797,historical inaccuracy,1436606939 +31831,116797,history,1436606890 +31831,116797,homosexuality,1436606920 +31831,116797,informatics,1436606928 +31831,116797,Keira Knightley,1436606931 +31831,116797,mathematics,1436606884 +31831,116797,World War II,1436606879 +31831,116799,1970s,1440876222 +31831,116799,based on a book,1440876403 +31831,116799,boring,1440876311 +31831,116799,complicated,1440876213 +31831,116799,Countercultural,1440876285 +31831,116799,dialogue-driven,1440876290 +31831,116799,drug comedy,1440876228 +31831,116799,drug jokes,1440876232 +31831,116799,drugs,1440876236 +31831,116799,hard to follow,1440876292 +31831,116799,investigation,1440876256 +31831,116799,Joaquin Phoenix,1440876295 +31831,116799,long,1440876258 +31831,116799,Nudity (Full Frontal),1440876542 +31831,116799,nudity (topless),1440876247 +31831,116799,Owen Wilson,1440876394 +31831,116799,Paul Thomas Anderson,1440876449 +31831,116799,Private investigator,1440876264 +31831,116799,Thomas Pynchon,1440876380 +31831,116799,visually appealing,1440876280 +31831,119145,action,1445197448 +31831,119145,action scenes,1445197465 +31831,119145,adapted from:comic,1445197715 +31831,119145,british,1445197443 +31831,119145,british comedy,1445197445 +31831,119145,childish,1445197599 +31831,119145,colin firth,1445197632 +31831,119145,comedy,1445197458 +31831,119145,exploding heads,1445197517 +31831,119145,fighting choreografy,1445197474 +31831,119145,funny,1445197475 +31831,119145,gentlemanly,1445197430 +31831,119145,gratuitous violence,1445197747 +31831,119145,humour,1445197545 +31831,119145,Mark Strong,1445197685 +31831,119145,Matthew Vaughn,1445197674 +31831,119145,Michael Caine,1445197452 +31831,119145,Parody,1445197447 +31831,119145,ridiculous,1445197811 +31831,119145,samuel l. jackson,1445197471 +31831,119145,silly,1445197609 +31831,119145,Sofia Boutella,1445197776 +31831,119145,spy,1445197565 +31831,119145,spy thriller,1445197566 +31831,119145,Taron Egerton,1445197707 +31831,119145,tongue-in-cheek,1445197586 +31831,119145,violent,1445197435 +31831,120466,AI,1439414393 +31831,120466,artificial intelligence,1439414392 +31831,120466,cliche,1439414035 +31831,120466,Hugh Jackman,1439414124 +31831,120466,Johannesburg,1439414017 +31831,120466,Neill Blomkamp,1439414161 +31831,120466,plot,1439414507 +31831,120466,robots,1439413981 +31831,120466,sci-fi,1439414055 +31831,120466,science fiction,1439414068 +31831,120466,setting:south africa,1439414090 +31831,120466,Sharlto Copley,1439414214 +31831,120466,Siguorney Weaver,1439414070 +31831,120466,South Africa,1439413988 +31831,120466,violence,1439414077 +31831,120799,Alan Taylor,1436979779 +31831,120799,Arnold Schwarzenegger,1436979839 +31831,120799,boring,1436979721 +31831,120799,cyborgs,1436979730 +31831,120799,Emilia Clarke,1436979798 +31831,120799,franchise,1436979736 +31831,120799,inferior sequel,1437944400 +31831,120799,PG-13,1437944342 +31831,120799,robots,1436979737 +31831,121231,Creepy,1440007681 +31831,121231,despair,1440007718 +31831,121231,horror,1440007682 +31831,121231,minimalist,1440007740 +31831,121231,Pacing,1440007692 +31831,121231,score,1440007690 +31831,121231,Supernatural,1440007691 +31831,121231,suspense,1440007766 +31831,121231,teen,1440007706 +31831,121231,teenagers,1440007758 +31831,122882,action,1449258093 +31831,122882,action movie,1449258183 +31831,122882,adventure,1449258110 +31831,122882,Amazing Car Design,1449258204 +31831,122882,amazing screenplay,1449258212 +31831,122882,badass,1449258248 +31831,122882,beautiful,1449258154 +31831,122882,brutal,1449258254 +31831,122882,car chase,1449258129 +31831,122882,car stunts,1449258256 +31831,122882,cars,1449258148 +31831,122882,cgi,1449258263 +31831,122882,charlize theron,1449258106 +31831,122882,chase,1449258120 +31831,122882,Colourful apocalypse,1449258123 +31831,122882,crazy characters,1449258160 +31831,122882,crazy people,1449258273 +31831,122882,creative,1449258274 +31831,122882,dead fetus,1449258286 +31831,122882,deformity,1449258288 +31831,122882,desert,1449258105 +31831,122882,destruction,1449258291 +31831,122882,distopian,1449258293 +31831,122882,driving,1449258296 +31831,122882,dynamic,1449258298 +31831,122882,dystopia,1449258300 +31831,122882,dystopian,1449258099 +31831,122882,edge of your seat,1449258302 +31831,122882,energetic,1449258305 +31831,122882,explosions,1449258306 +31831,122882,fast paced,1449258448 +31831,122882,feminism,1449258198 +31831,122882,feminist,1449258199 +31831,122882,franchise,1449258158 +31831,122882,future dystopia,1449258317 +31831,122882,gore,1449258329 +31831,122882,great soundtrack,1449258136 +31831,122882,Intense,1449258345 +31831,122882,mad max,1449258140 +31831,122882,mutants,1449258351 +31831,122882,non-stop,1449258108 +31831,122882,on the run,1449258163 +31831,122882,over the top,1449258164 +31831,122882,photography,1449258177 +31831,122882,post apocalypse,1449258096 +31831,122882,post apocalyptic,1449258111 +31831,122882,post-apocalyptic,1449258128 +31831,122882,practical effects,1449258150 +31831,122882,prosthetic arm,1449258365 +31831,122882,road movie,1449258384 +31831,122882,saturated,1449258391 +31831,122882,scenic,1449258392 +31831,122882,sci-fi,1449258113 +31831,122882,sex slaves,1449258454 +31831,122882,special effects,1449258116 +31831,122882,strong violent content,1449258170 +31831,122882,Tom Hardy,1449258189 +31831,122882,valhalla,1449258181 +31831,122882,violence,1449258126 +31831,122882,visually appealing,1449258098 +31831,122882,warlord,1449258144 +31831,122882,wasteland,1449258147 +31831,127096,altering history,1449270498 +31831,127096,altering past,1449270503 +31831,127096,bad science,1449270140 +31831,127096,bully comeuppance,1449270458 +31831,127096,camera,1449270134 +31831,127096,childish,1449270205 +31831,127096,cliché,1449270541 +31831,127096,disappointing,1449270121 +31831,127096,found footage,1449270136 +31831,127096,High school,1449270119 +31831,127096,low budget,1449270124 +31831,127096,science fiction,1449270117 +31831,127096,stupid ending,1449270132 +31831,127096,stupid teenagers,1449270183 +31831,127096,teenagers,1449270106 +31831,127096,teens,1449270100 +31831,127096,time machine,1449270326 +31831,127096,time travel,1449270110 +31831,127096,video footage,1449270337 +31831,127152,greed,1451428193 +31831,127315,alien abduction,1450127966 +31831,127315,alien invasion,1450127897 +31831,127315,aliens,1450127936 +31831,127315,army base,1450128024 +31831,127315,disobeying orders,1450128007 +31831,127315,documentary filmmaker,1450128049 +31831,127315,dystopia,1450128041 +31831,127315,interview,1450127979 +31831,127315,male camaraderie,1450128077 +31831,127315,mind control,1450127998 +31831,127315,translator,1450127986 +31831,127315,violence,1450128106 +31831,127319,boring,1452986076 +31831,127319,extramarital affairs,1452986097 +31831,127319,penthouse,1452986087 +31831,130840,good actors,1444859164 +31831,130840,lovecraftian,1444859160 +31831,130840,monster,1444859166 +31831,130840,quirky,1444859168 +31831,130840,romance,1444859169 +31831,130840,slow build,1444859162 +31831,134170,parody,1434282744 +31831,134853,Amy Poehler,1446669016 +31831,134853,Animation,1446668992 +31831,134853,bittersweet,1446669004 +31831,134853,box office hit,1446669270 +31831,134853,brain,1446669081 +31831,134853,childhood,1446668995 +31831,134853,comedy,1446669083 +31831,134853,coming of age,1446668996 +31831,134853,creative,1446668998 +31831,134853,cute,1446669031 +31831,134853,depressing,1446669089 +31831,134853,emotional,1446669013 +31831,134853,emotions,1446669006 +31831,134853,family,1446669019 +31831,134853,fun,1446669481 +31831,134853,funny,1446669021 +31831,134853,girl,1446669418 +31831,134853,growing up,1446669097 +31831,134853,happiness,1446669007 +31831,134853,hillarious,1446669108 +31831,134853,hockey,1446669025 +31831,134853,imaginative,1446669003 +31831,134853,introspective,1446669012 +31831,134853,joy,1446669116 +31831,134853,kids,1446669430 +31831,134853,Lewis Black,1446669295 +31831,134853,melancholic,1446669063 +31831,134853,memory,1446669118 +31831,134853,moving,1446669120 +31831,134853,nostalgic,1446669135 +31831,134853,Pete Docter,1446669304 +31831,134853,Pixar,1446668984 +31831,134853,pre-teen,1446669641 +31831,134853,psychology,1446668986 +31831,134853,sad,1446669453 +31831,134853,sadness,1446669022 +31831,134853,San Francisco,1446669001 +31831,134853,thought provoking,1446669009 +31831,135127,action,1437770261 +31831,135127,daughter,1437770320 +31831,135127,disaster,1437770279 +31831,135127,doctor,1437770318 +31831,135127,father,1437770317 +31831,135127,flood,1437770282 +31831,135127,russia,1437770275 +31831,135127,subway,1437770265 +31831,135127,thriller,1437770285 +31831,135127,train,1437770287 +31831,135127,tunnel,1437770288 +31831,139655,Austrian,1452881375 +31831,139655,bandages,1452881407 +31831,139655,boring,1452881373 +31831,139655,cosmetic surgery,1452881553 +31831,139655,dysfunctional family,1452881896 +31831,139655,magnifying glass,1452881866 +31831,139655,plastic surgery,1452881851 +31831,139655,plot twist,1452881901 +31831,139655,slow,1452881383 +31831,139655,torture,1452881559 +31831,139655,twin brothers,1452881397 +31831,139655,Ulrich Seidl,1452881377 +31831,140820,claustrophobic,1447275116 +31831,140820,post apocalyptic,1447276039 +31831,140820,post-apocalyptic,1447275931 +31831,142020,greed,1441642166 +31831,142020,suitcase,1441642147 +31833,1035,Oscar (Best Directing),1372435549 +31833,1035,Oscar (Best Picture),1372435581 +31833,1035,Oscar Winner,1372435559 +31833,1035,scenic,1372435567 +31833,1913,boring,1372437313 +31833,2360,dogme95,1153776119 +31833,2932,boring,1372437208 +31833,3320,dogme95,1153776082 +31833,3569,dogme95,1153776059 +31833,4302,dogme95,1153776266 +31833,5051,dogme95,1153776159 +31833,6192,dogme95,1154703107 +31833,6270,art,1372437247 +31833,6270,bad script,1372437229 +31833,6270,meditative,1372437242 +31833,6270,slow,1372437237 +31833,7371,artsy,1372437272 +31833,7983,show business,1153692679 +31833,47152,boring,1325087303 +31833,47152,childhood,1325087313 +31833,47152,imaginary world,1325087311 +31833,49932,David Lynch,1179590383 +31833,49932,Laura Dern,1179590420 +31833,49932,surreal,1179590403 +31833,62511,confusing,1372435621 +31833,62511,Philip Seymour Hoffman,1372435629 +31833,62511,postmodern,1372435635 +31833,62511,surreal,1372435636 +31833,65418,empty scenario,1242752438 +31833,65418,Michelle Williams,1242752447 +31833,74324,biography,1342699293 +31833,74324,Claire Danes,1342699279 +31833,74324,great soundtrack,1342699299 +31833,74324,made for TV,1342699286 +31833,79132,clever,1280324420 +31833,79132,Hans Zimmer,1280324412 +31833,81791,boring,1372437359 +31833,86898,abstract,1332666925 +31833,86898,beautifully filmed,1332666931 +31833,86898,cinematography,1332666933 +31833,86898,confusing,1332666935 +31833,86898,intimate,1332666953 +31833,86898,over the top,1332666940 +31833,86898,surreal,1332666945 +31833,86898,Terrence Malick,1332666947 +31833,86898,thought-provoking,1332666950 +31833,87004,artistic,1372437327 +31833,87004,boring,1372437323 +31833,87004,nothing happens,1372437336 +31833,87004,slow paced,1372437334 +31833,89480,disturbing sexual scenes,1332589900 +31833,89480,Emily Browning,1332589902 +31833,89480,pretentious,1332589881 +31833,101893,boring,1372436919 +31846,260,classic sci-fi,1439419546 +31850,8914,I didn't get it.,1156989633 +31856,260,epic adventure,1436597630 +31856,260,sci-fi,1436597614 +31870,260,adventure,1433445315 +31870,260,classic,1433445342 +31887,4378,Best Performance: Ben Kingsley as Don Logan,1155682232 +31912,1206,Stanley Kubrick,1139419998 +31917,1095,Jack Lemmon,1285271331 +31917,2291,Johnny Depp,1285337086 +31917,79592,Samuel L Jackson,1285526509 +31942,112556,drama,1427486099 +31942,112556,marriage,1427486099 +31942,112556,rural living,1427486099 +31963,3949,drugs,1147646718 +31963,4878,psychology,1147646865 +31963,4878,time travel,1147646863 +31971,260,space opera,1433163245 +31971,260,special effects,1433163243 +31971,356,drama,1433163469 +31971,356,metal disability,1433163469 +31971,356,southern theme,1433163469 +31998,260,George Lucas,1432080454 +31998,260,Harrison Ford,1432080461 +32020,260,Good sci fi movie,1434392518 +32033,4251,Eric Bana,1404340294 +32033,5038,dragon,1267036434 +32033,5065,West Virginia,1289236224 +32033,6187,Kate Winslett,1396462755 +32033,6187,Kevin Spacey,1396462759 +32033,6187,Texas,1396462776 +32033,6263,Connie Nielsen,1367454081 +32033,42213,uplifting,1261984555 +32033,44849,boring plot,1287975777 +32033,47044,disappointing,1334356255 +32033,47423,boring,1289939792 +32033,47423,overrated,1289939802 +32033,48342,Aaron Eckhart,1413362120 +32033,48342,conversation,1413362123 +32033,48342,Helena Bonham Carter,1413362108 +32033,48342,intelligent dialogue,1413362126 +32033,49272,espionage,1233566874 +32033,49272,James Bond,1233566864 +32033,49338,clowns,1433566794 +32033,49338,creepy dude,1433566794 +32033,49338,serial killer,1433566794 +32033,53129,Kevin Costner,1288910232 +32033,53207,Al Pacino,1410160896 +32033,53207,Alicia Witt,1410160883 +32033,53207,Amy Brenneman,1410160894 +32033,53207,Leelee Sobieski,1410160890 +32033,53207,Nudity (Rear),1410160902 +32033,53207,setup,1410160916 +32033,53207,stay of execution,1410160912 +32033,55805,gut-wrenching story,1287989417 +32033,56003,bad acting,1291338255 +32033,56003,boring,1291338261 +32033,56908,Mandy Moore,1267167240 +32033,59037,vibrant colors,1334356143 +32033,59037,visually stunning,1334356135 +32033,59709,cultured characters,1290188089 +32033,59709,Nudity (Topless - Notable),1290188092 +32033,60937,Maria Bello,1325206615 +32033,65982,fantasy,1233819877 +32033,65982,norse,1233819856 +32033,65982,vikings,1233819888 +32033,66156,Brian Cox,1266817521 +32033,66156,Joseph Fiennes,1266817529 +32033,66156,To See,1266817510 +32033,68269,Emily Blunt,1327556743 +32033,68269,Paul Bettany,1327556751 +32033,68269,Rupert Friend,1327556754 +32033,69951,alternate reality,1328063909 +32033,69951,fantasy,1328063911 +32033,69951,Lily Cole,1328063897 +32033,71129,animation poor,1262068668 +32033,71318,Amanda Peet,1261908845 +32033,71318,Evan Rachel Wood,1261908830 +32033,71838,Gerard Butler,1267269518 +32033,72641,Lily Collins,1291490164 +32033,72641,Sandra Bullock,1291490169 +32033,72733,Clint Eastwood,1277038187 +32033,72733,Matt Damon,1277038190 +32033,72733,Morgan Freeman,1277038192 +32033,72733,rugby,1277038174 +32033,72733,South Africa,1277038197 +32033,72733,sport:rugby football,1277038182 +32033,74324,Claire Danes,1383354367 +32033,74324,inspirational,1383354374 +32033,74491,English history,1266615885 +32033,74491,vikings,1266615916 +32033,74493,predictable,1266617064 +32033,74493,Val Kilmer,1266617041 +32033,77414,witty,1288471194 +32033,78116,Amanda Peet,1288495621 +32033,78316,Amanda Seyfried,1289253584 +32033,78316,bad music,1289253579 +32033,78316,happy ending,1289253586 +32033,78316,italy,1289253590 +32033,80505,easily confused with other movie(s) (title),1284788956 +32033,81229,Bruce Willis,1325571130 +32033,81229,Helen Mirren,1325571124 +32033,81229,John Malkovich,1325571127 +32033,81229,Mary-Louise Parker,1325571120 +32033,81229,Morgan Freeman,1325571129 +32033,81731,Architecture,1381211624 +32033,81731,Hayley Atwell,1381211609 +32033,81731,Ian McShane,1381211599 +32033,81731,Matthew MacFadyen,1381211605 +32033,81731,medieval,1381211621 +32033,81932,Amy Adams,1310965390 +32033,81932,sexy redhead,1310965384 +32033,89087,Zoe Saldana,1326004476 +32033,90057,Jessica Chastain,1334521601 +32033,90057,Michael Shannon,1334521605 +32033,92198,Guy Pearce,1367734571 +32033,92198,January Jones,1367734554 +32033,92198,Nicolas Cage,1367734566 +32033,92198,suprisingly clever,1367734578 +32033,93475,Rebecca Hall,1366650364 +32033,95510,Emma Stone,1372029239 +32033,97938,cinematography,1383205114 +32033,97938,great photograpy,1383205124 +32033,97938,visually appealing,1383205122 +32033,98239,bad remake,1382070916 +32033,102174,Tahir Rahim,1367181733 +32033,103253,implausible,1388868193 +32033,103253,visually stunning,1388868099 +32033,103688,Lili Taylor,1382749836 +32033,103688,Patrick Wilson,1382749833 +32033,103688,Ron Livingston,1382749842 +32033,103688,Vera Farmiga,1382749829 +32033,106489,Evangeline Lilly,1397890625 +32033,106916,amy adams,1394407439 +32033,106916,Jennifer Lawrence,1394407441 +32033,108188,Action,1408147316 +32033,108188,Bad computing,1408147312 +32033,108188,Jack Ryan,1408147302 +32033,108797,Kiernan Shipka,1391471634 +32047,48516,R,1164885093 +32049,1884,drugs,1434386634 +32049,1884,genious,1434390866 +32049,1884,hallucinatory,1434386638 +32049,1884,hunter s. thompson,1434386648 +32049,1884,psychedelic,1434386644 +32049,1884,surreal,1434386642 +32049,1961,psychology,1434388616 +32049,2231,Edward Norton,1434444303 +32049,2231,poker,1434444310 +32049,3235,Hunter S. Thompson,1434387109 +32049,4873,dreams,1434385094 +32049,4873,metaphysics,1434385095 +32049,4873,philosophy,1434385067 +32049,4873,stylized,1434385087 +32049,4873,surreal,1434385071 +32049,4873,thought-provoking,1434385073 +32049,5881,philosophy,1434444679 +32049,5881,suicide,1434444684 +32049,6780,physics,1434387476 +32049,48780,complicated,1434386425 +32049,48780,dark,1434386408 +32049,48780,enigmatic,1434386410 +32049,48780,twist ending,1434386398 +32049,78836,best in genre,1434390449 +32049,78836,drugs,1434390357 +32049,78836,Mind Games,1434390364 +32049,78836,philosophic,1434390483 +32049,78836,psychedelic,1434390358 +32049,79132,clever,1434386494 +32049,79132,great soundtrack,1434386504 +32049,79132,intellectual,1434386496 +32049,79132,mindfuck,1434386508 +32049,79132,surreal,1434386485 +32049,79132,thought-provoking,1434386483 +32049,79132,twist ending,1434386501 +32049,96832,surreal,1434387063 +32050,60072,James McAvoy,1243271932 +32094,58,troisi,1146255592 +32096,91126,Sappy,1337287127 +32104,260,sci-fi,1444287868 +32104,260,science fantasy,1444287902 +32119,260,"action, scifi",1443523966 +32119,260,sci-fi,1443523931 +32168,5971,anime,1371457742 +32203,3083,Pedro Almodóvar,1256433004 +32203,3083,Pedro Almodovar,1256433000 +32203,5878,Pedro Almodóvar,1256433035 +32203,5878,psychology,1256433031 +32245,89745,action,1442533471 +32245,89745,Marvel Cinematic Universe,1442533485 +32245,89745,superhero,1442533474 +32245,117895,action,1442533519 +32245,117895,young adult,1442533536 +32253,132486,History,1446403079 +32253,132486,South America,1446403072 +32290,260,classic sci-fi,1434674706 +32290,260,sci-fi,1434674699 +32290,122882,action,1434674869 +32290,122882,cgi,1434674869 +32290,122882,girl power,1434674869 +32298,1,Pixar,1244766522 +32298,2,animals,1245496938 +32298,2,bad cgi,1249636776 +32298,2,based on a book,1240363595 +32298,2,board game,1245496957 +32298,2,Chris Van Allsburg,1242196247 +32298,3,sequel,1385355832 +32298,6,imdb top 250,1245291878 +32298,7,based on a play,1226742764 +32298,8,based on a book,1232509423 +32298,8,Mark Twain,1232509423 +32298,10,Caribbean,1246570014 +32298,10,espionage,1246471941 +32298,10,franchise,1196517851 +32298,10,James Bond,1245445600 +32298,10,Latin America,1248165766 +32298,10,Puerto Rico,1246570014 +32298,11,politics,1245059601 +32298,11,single parents,1245059594 +32298,11,US President,1244888760 +32298,14,corruption,1245502577 +32298,14,politics,1245502562 +32298,14,true story,1245502577 +32298,14,US President,1245502554 +32298,15,big budget,1412275608 +32298,16,based on a book,1213424486 +32298,16,gangsters,1246484971 +32298,16,imdb top 250,1213424434 +32298,16,Las Vegas,1246982978 +32298,16,Mafia,1248077781 +32298,16,nudity (rear),1400284206 +32298,17,based on a book,1245238815 +32298,17,Jane Austen,1245238817 +32298,18,hotel,1249526403 +32298,18,multiple storylines,1249526392 +32298,18,nudity (topless),1400283642 +32298,19,Africa,1245293292 +32298,21,based on a book,1234223915 +32298,21,Elmore Leonard,1420191425 +32298,21,movie business,1241180767 +32298,22,claustrophobic,1245403147 +32298,22,serial killer,1245403109 +32298,25,drinking,1248090722 +32298,25,nudity (topless),1400284064 +32298,25,prostitution,1245056861 +32298,26,based on a play,1206782429 +32298,26,Shakespeare,1245060924 +32298,28,based on a book,1210845801 +32298,28,Jane Austen,1246582467 +32298,29,surreal,1259547357 +32298,31,based on a book,1380953540 +32298,31,education,1381642939 +32298,31,great soundtrack,1381642936 +32298,31,high school,1245377009 +32298,31,school drama,1245833851 +32298,31,teacher,1381642930 +32298,32,asylum,1245734986 +32298,32,biology,1240889303 +32298,32,epidemic,1245394704 +32298,32,genetics,1240889304 +32298,32,imdb top 250,1245390404 +32298,32,post-apocalyptic,1245390715 +32298,32,time travel,1245390416 +32298,34,animals,1245291518 +32298,34,farming,1260755425 +32298,34,pigs,1251062834 +32298,34,talking animals,1245291508 +32298,34,villain nonexistent or not needed for good story,1245291512 +32298,35,artist,1246597716 +32298,35,based on a book,1246589847 +32298,35,England,1246589847 +32298,35,painter,1246597714 +32298,35,World War I,1246589847 +32298,36,based on a book,1198823684 +32298,36,Catholicism,1245292991 +32298,36,Christianity,1245292983 +32298,36,death penalty,1245292967 +32298,36,religion,1245292977 +32298,36,true story,1245293011 +32298,38,switching places,1245498256 +32298,38,twins,1245282826 +32298,39,based on a book,1247040696 +32298,39,high school,1246583247 +32298,39,Jane Austen,1247040698 +32298,40,Africa,1250035732 +32298,40,based on a book,1250035762 +32298,40,racism,1250035762 +32298,40,South Africa,1250035723 +32298,41,based on a play,1206782710 +32298,44,martial arts,1195557210 +32298,44,video game adaptation,1246574688 +32298,47,Biblical,1246746790 +32298,47,Christianity,1246746790 +32298,47,great ending,1383821774 +32298,47,gruesome,1244881823 +32298,47,imdb top 250,1195157483 +32298,47,police,1267239575 +32298,47,religion,1246746765 +32298,47,serial killer,1244881841 +32298,47,twist ending,1266788278 +32298,49,nudity (topless),1407222773 +32298,50,ensemble cast,1197724752 +32298,50,heist,1297541206 +32298,50,imdb top 250,1314336296 +32298,50,twist ending,1240911651 +32298,58,poets,1246599726 +32298,58,writers,1246599725 +32298,62,classical music,1347663066 +32298,62,education,1246401063 +32298,62,high school,1204570073 +32298,62,inspirational,1244884150 +32298,62,school drama,1245833863 +32298,62,teacher,1245376976 +32298,63,goofy,1369975974 +32298,63,parody,1369975976 +32298,66,imdb bottom 100,1195617357 +32298,68,bisexual,1263021144 +32298,68,nudity (full frontal),1400285011 +32298,68,queer,1263021144 +32298,69,friendship,1346640851 +32298,69,ghetto,1346640900 +32298,69,great soundtrack,1349683185 +32298,70,vampires,1246444945 +32298,73,World War II,1248167339 +32298,76,Philip K. Dick,1404668533 +32298,76,robots,1373682164 +32298,78,nudity (topless),1400282747 +32298,78,revenge,1258153125 +32298,79,nudity (topless),1402873080 +32298,81,Colorado,1220879833 +32298,82,lesbian,1317952296 +32298,82,nudity (full frontal),1400284725 +32298,83,based on a book,1245033310 +32298,83,biography,1277963001 +32298,83,Mississippi,1245033302 +32298,83,racism,1245033292 +32298,83,segregation,1251435265 +32298,85,19th century,1246582772 +32298,85,based on a book,1246582761 +32298,85,nudity (full frontal),1400149009 +32298,88,politics,1285923380 +32298,88,Saturday Night Live,1285923380 +32298,93,vampires,1278912256 +32298,95,military,1245291803 +32298,98,directorial debut,1207133904 +32298,101,acting debut,1404626092 +32298,101,directorial debut,1207128362 +32298,101,Texas,1245539864 +32298,104,golf,1370730773 +32298,104,sports,1370730776 +32298,105,based on a book,1162262859 +32298,105,Iowa,1246343650 +32298,107,based on a book,1207043962 +32298,107,based on a TV show,1402484916 +32298,107,franchise,1196554216 +32298,107,puppets,1350115648 +32298,107,Robert Louis Stevenson,1363166750 +32298,107,talking animals,1197788078 +32298,110,biography,1246589462 +32298,110,brutal,1244766322 +32298,110,imdb top 250,1246589474 +32298,110,long,1255168196 +32298,110,medieval,1244766331 +32298,110,nudity (topless),1400283985 +32298,110,revenge,1246777418 +32298,110,Scotland,1244766343 +32298,110,visceral,1246777407 +32298,111,going postal,1246893682 +32298,111,imdb top 250,1245912363 +32298,111,insanity,1245050110 +32298,111,New York City,1246491310 +32298,111,prostitution,1246491305 +32298,111,vigilante,1245912341 +32298,114,Canada,1245056663 +32298,114,mining,1245056679 +32298,114,Nova Scotia,1245056671 +32298,116,Holocaust,1248256871 +32298,116,Oscar (Best Documentary Feature),1205300199 +32298,116,true story,1248256880 +32298,117,dysfunctional family,1349053449 +32298,117,true story,1349053449 +32298,121,1970s,1246399905 +32298,121,Catholicism,1246399810 +32298,121,child abuse,1246399789 +32298,121,Christianity,1246399810 +32298,121,corruption,1246399944 +32298,121,cover up,1246399910 +32298,121,made for TV,1250036483 +32298,121,orphans,1246399854 +32298,121,police corruption,1246399949 +32298,121,religion,1246399810 +32298,121,true story,1246399810 +32298,125,watch the credits,1361176625 +32298,129,nudity (topless),1400280794 +32298,135,submarine,1249051279 +32298,138,1940s,1269200392 +32298,138,based on a book,1269200184 +32298,141,based on a play,1245291761 +32298,141,cross dressing,1246618621 +32298,141,cross dressing men,1247747041 +32298,141,gay,1255253245 +32298,141,gay stereotypes,1255253267 +32298,141,queer,1246618621 +32298,141,remake,1307865855 +32298,145,buddy movie,1246255258 +32298,145,directorial debut,1207133154 +32298,145,drugs,1245540695 +32298,145,easily confused with other movie(s) (title),1361581254 +32298,145,Florida,1245540608 +32298,145,Miami,1245540608 +32298,147,addiction,1246490812 +32298,147,based on a book,1246490812 +32298,147,drugs,1246490773 +32298,147,prostitution,1246490894 +32298,147,true story,1246490812 +32298,148,nudity (topless),1400281940 +32298,149,amnesia,1246585459 +32298,150,based on a book,1221868010 +32298,150,disaster,1262937567 +32298,150,moon,1246485242 +32298,150,NASA,1262937556 +32298,150,space,1244766402 +32298,150,true story,1244766393 +32298,150,villain nonexistent or not needed for good story,1386242891 +32298,151,rape,1246584116 +32298,151,Scotland,1246584137 +32298,151,sword fight,1246584127 +32298,153,Batman,1245913570 +32298,153,comic book,1246580122 +32298,153,DC Comics,1245913593 +32298,153,double life,1246754807 +32298,153,franchise,1245291422 +32298,153,superhero,1245913577 +32298,153,vigilante,1245913598 +32298,154,based on a book,1246490961 +32298,154,double life,1246490932 +32298,154,prostitution,1246490928 +32298,156,nudity (topless),1400283122 +32298,158,ghosts,1259273459 +32298,160,Africa,1244927334 +32298,160,based on a book,1162264616 +32298,160,jungle,1244927334 +32298,160,Michael Crichton,1244927349 +32298,161,submarine,1245150777 +32298,162,biography,1246588822 +32298,163,Latin America,1248155540 +32298,163,Mexico,1248155540 +32298,163,nudity (topless),1400284114 +32298,164,based on a book,1401968312 +32298,165,heist,1246942680 +32298,165,New York City,1246613571 +32298,165,terrorism,1195969263 +32298,166,nudity (topless),1400282006 +32298,168,royalty,1246757416 +32298,170,computers,1247214328 +32298,170,hackers,1247214313 +32298,170,internet,1247214338 +32298,172,cyberpunk,1244766973 +32298,172,dystopia,1240894421 +32298,172,hackers,1244766976 +32298,172,transhumanism,1383821994 +32298,172,unrealistic,1244767660 +32298,172,William Gibson,1240894414 +32298,173,comic book,1246581228 +32298,173,corruption,1245394459 +32298,173,dystopia,1245394370 +32298,173,police,1245394368 +32298,173,police corruption,1245394454 +32298,173,wrongly accused,1245394438 +32298,175,AIDS,1246596289 +32298,175,controversial,1248092409 +32298,175,directorial debut,1207131682 +32298,175,drugs,1248092399 +32298,175,New York City,1334218184 +32298,175,teen,1247044241 +32298,176,movie business,1368689455 +32298,176,nudity (topless),1400283215 +32298,180,nudity (topless),1400283947 +32298,183,nudity (topless),1401589396 +32298,185,computers,1260403481 +32298,185,hackers,1260403479 +32298,185,internet,1260403478 +32298,188,angel,1248397674 +32298,188,Christianity,1255280490 +32298,188,religion,1255280490 +32298,190,environmental,1246447014 +32298,191,based on a book,1421499217 +32298,191,Nathaniel Hawthorne,1421499217 +32298,193,banned movie,1248153621 +32298,193,campy,1246140140 +32298,193,controversial,1248153621 +32298,193,cult film,1204569643 +32298,193,Las Vegas,1245058039 +32298,193,nudity (full frontal),1400285787 +32298,193,strippers,1244845191 +32298,194,Brooklyn,1375937477 +32298,194,ensemble cast,1375937441 +32298,194,multiple storylines,1375937438 +32298,194,New York City,1375937437 +32298,196,aliens,1248086337 +32298,196,nudity (topless),1400284134 +32298,196,shape shifter,1248086362 +32298,198,corruption,1388822474 +32298,198,cyberpunk,1247477574 +32298,198,long,1388822452 +32298,198,nudity (topless),1400283923 +32298,198,police,1388822461 +32298,198,police corruption,1388822477 +32298,198,virtual reality,1247477561 +32298,202,19th century,1276202135 +32298,202,nudity (rear),1400281869 +32298,202,nudity (topless),1400281869 +32298,202,writers,1276202135 +32298,203,cross dressing,1246618680 +32298,203,cross dressing men,1246621260 +32298,203,homophobia,1246621259 +32298,203,queer,1246618670 +32298,203,small town,1246621271 +32298,208,big budget,1386969509 +32298,208,ocean,1245291639 +32298,208,post-apocalyptic,1245391726 +32298,215,Austria,1246482389 +32298,215,trains,1251780041 +32298,215,Vienna,1246482387 +32298,216,elementary school,1361874363 +32298,216,high school,1361874363 +32298,216,teacher,1361874363 +32298,217,nudity (topless),1407223813 +32298,218,nudity (topless),1400283506 +32298,220,H.P. Lovecraft,1197720747 +32298,223,black and white,1248672290 +32298,223,crude humor,1244767978 +32298,223,directorial debut,1248672238 +32298,223,irreverent,1318273260 +32298,223,low budget,1244885343 +32298,223,multiple roles,1246752510 +32298,223,slackers,1248085412 +32298,224,insanity,1246492207 +32298,224,mental illness,1246492204 +32298,225,based on a book,1210468581 +32298,225,Michael Crichton,1349051405 +32298,229,nudity (topless),1400283189 +32298,230,based on a book,1244846136 +32298,230,Stephen King,1244846146 +32298,231,buddy movie,1246255291 +32298,231,infantile,1244889480 +32298,232,siblings,1245539637 +32298,233,Canada,1244771288 +32298,233,nudity (topless),1400283546 +32298,233,strippers,1244771283 +32298,233,Toronto,1251199550 +32298,234,Anne Rice,1407118565 +32298,234,based on a book,1407118565 +32298,234,nudity (full frontal),1400285794 +32298,235,biography,1246589044 +32298,235,black and white,1244893895 +32298,235,cross dressing,1246621196 +32298,235,cross dressing men,1246621196 +32298,235,movie business,1244893885 +32298,235,true story,1244893879 +32298,237,basketball,1372737218 +32298,237,sports,1372737224 +32298,239,directorial debut,1404730266 +32298,240,based on a book,1223701240 +32298,240,Dean Koontz,1223701240 +32298,242,18th century,1246745287 +32298,242,nudity (topless),1407100233 +32298,242,opera,1246745289 +32298,242,vocalists,1246745292 +32298,243,pigs,1404619278 +32298,243,talking animals,1404619278 +32298,245,police,1245032657 +32298,245,police corruption,1245032652 +32298,245,racism,1245032645 +32298,246,basketball,1245226522 +32298,246,Chicago,1245226528 +32298,246,high school,1245226557 +32298,246,poverty,1389945909 +32298,246,sports,1245226561 +32298,247,lesbian,1253348175 +32298,247,New Zealand,1245238739 +32298,247,nudity (topless),1400283743 +32298,247,queer,1246617187 +32298,247,revenge,1246617200 +32298,247,true story,1245238734 +32298,249,biography,1246588117 +32298,249,classical music,1246588117 +32298,249,deafness,1246588123 +32298,249,nudity (full frontal),1400284836 +32298,253,Anne Rice,1407118473 +32298,253,based on a book,1162262502 +32298,253,New Orleans,1407118443 +32298,253,nudity (full frontal),1400284685 +32298,253,Paris,1407118446 +32298,253,vampires,1244770165 +32298,257,death penalty,1246571921 +32298,257,lawyers,1246571989 +32298,257,police,1246571989 +32298,257,police corruption,1246571991 +32298,257,wrongly accused,1246571995 +32298,260,aliens,1338601347 +32298,260,desert,1244766256 +32298,260,franchise,1245844183 +32298,260,great soundtrack,1392713970 +32298,260,imdb top 250,1244945530 +32298,260,Oscar (Best Effects - Visual Effects),1244891199 +32298,260,quotable,1196248639 +32298,260,robots,1244891219 +32298,260,Saturn Award (Best Special Effects),1244891210 +32298,260,space,1338601331 +32298,261,based on a book,1198827455 +32298,262,based on a book,1379591338 +32298,262,boarding school,1379591343 +32298,265,magic,1245232158 +32298,266,World War I,1387961130 +32298,271,bad parents,1250209823 +32298,272,18th century,1246492304 +32298,272,based on a play,1246759829 +32298,272,England,1246492308 +32298,272,history,1246492313 +32298,272,insanity,1246492324 +32298,272,mental illness,1246492317 +32298,272,royalty,1246759829 +32298,273,based on a book,1193266912 +32298,273,mad scientist,1247654859 +32298,273,underrated,1406713731 +32298,277,Christmas,1246980306 +32298,277,remake,1246980295 +32298,280,1930s,1246570891 +32298,280,Alcatraz,1246570888 +32298,280,corruption,1246571031 +32298,280,courtroom,1246570874 +32298,280,insanity,1246571024 +32298,280,lawyers,1246570874 +32298,280,prison,1246571022 +32298,280,prison escape,1246571016 +32298,280,torture,1246571020 +32298,281,nudity (topless),1400283526 +32298,281,small town,1247213953 +32298,282,nudity (full frontal),1400285073 +32298,288,brutal,1240890780 +32298,288,controversial,1248092429 +32298,288,frantic,1393552736 +32298,288,journalism,1240894758 +32298,288,Native Americans,1393552749 +32298,288,prison,1245390039 +32298,288,road trip,1245390035 +32298,288,satire,1240890784 +32298,288,serial killer,1406724480 +32298,288,stylized,1245390004 +32298,288,underrated,1406713773 +32298,288,visceral,1246777314 +32298,290,based on a book,1249525719 +32298,290,poverty,1382013158 +32298,292,biology,1208571210 +32298,292,disease,1262225270 +32298,292,epidemic,1245394961 +32298,292,military,1245291575 +32298,293,acting debut,1404625851 +32298,293,assassin,1283596180 +32298,293,corruption,1284277142 +32298,293,guns,1283596244 +32298,293,imdb top 250,1246482940 +32298,293,police,1284277136 +32298,293,police corruption,1284277127 +32298,296,assassin,1245750098 +32298,296,black comedy,1246769166 +32298,296,drugs,1245750038 +32298,296,ensemble cast,1247478534 +32298,296,gangsters,1248077329 +32298,296,heroin,1248077351 +32298,296,imdb top 250,1245750015 +32298,296,multiple storylines,1245750088 +32298,296,nonlinear,1385121000 +32298,296,one-liners,1386549018 +32298,296,organized crime,1248077329 +32298,296,quotable,1385120993 +32298,296,rape,1246777009 +32298,296,tag:needless gratuitous redundancy tag,1240910767 +32298,296,visceral,1246777359 +32298,298,directorial debut,1207133478 +32298,299,Catholicism,1255603503 +32298,299,Christianity,1255603503 +32298,299,gay,1255603489 +32298,299,queer,1255603503 +32298,299,religion,1255603487 +32298,300,business,1285911754 +32298,300,corruption,1245293127 +32298,300,television,1245293144 +32298,300,true story,1245293134 +32298,302,16th century,1246757761 +32298,302,Catholicism,1258610496 +32298,302,Christianity,1258610496 +32298,302,France,1258610475 +32298,302,history,1258610480 +32298,302,massacre,1258610470 +32298,302,nudity (full frontal),1400284784 +32298,302,religion,1258610496 +32298,302,royalty,1246757665 +32298,303,guns,1286148800 +32298,303,revenge,1346913532 +32298,303,small town,1248611503 +32298,305,fashion,1250026145 +32298,305,nudity (full frontal),1400285685 +32298,312,Saturday Night Live,1319439621 +32298,315,nudity (topless),1428098473 +32298,316,aliens,1348465993 +32298,316,archaeology,1348465992 +32298,316,Egypt,1348465990 +32298,316,Egyptian Mythology,1370327560 +32298,316,military,1368706019 +32298,316,mythology,1348465989 +32298,316,space,1246450088 +32298,316,wormhole,1393442126 +32298,317,Christmas,1246979969 +32298,317,Santa Claus,1246979973 +32298,318,based on a book,1369992297 +32298,318,directorial debut,1207189395 +32298,318,earnest,1244884570 +32298,318,escape,1258707068 +32298,318,friendship,1309975866 +32298,318,great acting,1386814462 +32298,318,great ending,1383821794 +32298,318,happy ending,1247479604 +32298,318,heartwarming,1309975858 +32298,318,imdb top 250,1245223653 +32298,318,inspirational,1240911628 +32298,318,narrated,1244936162 +32298,318,prison,1322724716 +32298,318,prison escape,1247197520 +32298,318,revenge,1243785104 +32298,318,Stephen King,1244884256 +32298,318,wrongly accused,1245228830 +32298,319,black comedy,1297992251 +32298,319,directorial debut,1207188348 +32298,321,Caribbean,1232024807 +32298,321,Cuba,1246392304 +32298,321,Latin America,1248165679 +32298,325,National Lampoon,1196070162 +32298,327,comic book,1246580473 +32298,327,desert,1240891161 +32298,327,mutants,1245391074 +32298,327,post-apocalyptic,1245391070 +32298,328,nudity (topless),1400298323 +32298,329,based on a TV show,1250129744 +32298,329,far future,1198459098 +32298,329,franchise,1250129744 +32298,329,space,1192620381 +32298,329,Star Trek,1245291543 +32298,334,based on a play,1232937219 +32298,334,David Mamet,1232937219 +32298,337,disability,1247653565 +32298,337,mental illness,1247653566 +32298,337,siblings,1247653542 +32298,337,small town,1250290669 +32298,338,serial killer,1247217041 +32298,338,virtual reality,1195554490 +32298,339,Bechdel Test:Fail,1384676198 +32298,339,loneliness,1382198501 +32298,339,mistaken identity,1245291843 +32298,342,wedding,1246600976 +32298,344,crude humor,1369801667 +32298,344,directorial debut,1207665021 +32298,344,goofy,1369801631 +32298,345,Australia,1245049629 +32298,345,cross dressing,1246620437 +32298,345,cross dressing men,1246620436 +32298,345,gay,1255253628 +32298,345,queer,1246617278 +32298,345,road trip,1245280852 +32298,346,Beatles,1319693714 +32298,346,musicians,1379407972 +32298,346,nudity (topless),1409364524 +32298,346,rock and roll,1319693733 +32298,347,BDSM,1248508240 +32298,347,nudity (topless),1400282846 +32298,349,based on a book,1210388699 +32298,349,CIA,1221984600 +32298,349,Tom Clancy,1245225795 +32298,350,based on a book,1162264327 +32298,350,John Grisham,1246570396 +32298,350,lawyers,1246570386 +32298,351,directorial debut,1207200137 +32298,351,interracial romance,1413411264 +32298,351,jazz,1240889891 +32298,353,bittersweet,1249522238 +32298,353,comic book,1246580780 +32298,353,great soundtrack,1252043212 +32298,353,Halloween,1247205703 +32298,353,heavy metal,1247205707 +32298,353,nocturnal,1245056072 +32298,353,nudity (rear),1400284213 +32298,353,rain,1245056069 +32298,353,rape,1249522267 +32298,353,revenge,1245056026 +32298,353,rock and roll,1246794724 +32298,353,stylized,1245390184 +32298,353,vigilante,1245913077 +32298,354,nudity (topless),1400282759 +32298,355,based on a TV show,1250130834 +32298,356,based on a book,1246392776 +32298,356,biography,1310281092 +32298,356,disability,1246392882 +32298,356,imdb top 250,1246392780 +32298,357,funeral,1407813668 +32298,357,wedding,1245291620 +32298,358,college,1246401629 +32298,358,racism,1246401630 +32298,361,gambling,1247216411 +32298,361,true story,1247216409 +32298,362,based on a book,1244971469 +32298,362,Rudyard Kipling,1244971469 +32298,363,biography,1247206914 +32298,363,movie business,1247206921 +32298,363,Nazis,1247206914 +32298,363,propaganda,1247206915 +32298,364,2D animation,1262764670 +32298,364,Africa,1280556745 +32298,364,Disney,1245291441 +32298,364,lions,1245291445 +32298,364,royalty,1390011938 +32298,364,talking animals,1390011927 +32298,367,cartoonish,1244889570 +32298,367,latin music,1343820635 +32298,367,superhero,1244889562 +32298,369,Manhattan,1246590585 +32298,369,New York City,1246590585 +32298,369,poets,1246600063 +32298,369,writers,1246600063 +32298,370,parody,1245278293 +32298,370,police,1208760127 +32298,370,ZAZ,1245278275 +32298,373,assassin,1246483835 +32298,377,Bechdel Test:Fail,1389812474 +32298,377,intense,1389812439 +32298,379,nudity (full frontal),1400285791 +32298,379,time travel,1245060225 +32298,380,espionage,1249050732 +32298,380,terrorism,1249050697 +32298,381,addiction,1245283150 +32298,381,alcoholism,1245283147 +32298,381,drinking,1248090702 +32298,382,werewolves,1246445614 +32298,383,biography,1261153139 +32298,390,desert,1253268962 +32298,390,kidnapping,1249524029 +32298,391,nude black women,1338448934 +32298,391,nudity (topless),1400281842 +32298,393,video game adaptation,1246574710 +32298,405,franchise,1246584587 +32298,405,immortality,1246584624 +32298,405,sword fight,1246584603 +32298,410,based on a TV show,1248255446 +32298,412,19th century,1297541112 +32298,412,based on a book,1297541106 +32298,412,Edith Wharton,1297541106 +32298,416,nudity (topless),1400283004 +32298,417,Barcelona,1245153238 +32298,417,Spain,1245153238 +32298,419,based on a TV show,1246473956 +32298,422,blindness,1245812972 +32298,422,disability,1245812972 +32298,422,nudity (topless),1400282881 +32298,423,easily confused with other movie(s) (title),1361581393 +32298,424,basketball,1404228204 +32298,424,college,1404228194 +32298,424,sports,1404228204 +32298,426,aliens,1245741743 +32298,426,impostor,1245741753 +32298,426,nudity (topless),1400283594 +32298,427,doctors,1248086230 +32298,427,nudity (topless),1400283576 +32298,427,obsession,1248086267 +32298,428,directorial debut,1248078054 +32298,428,Mafia,1248078027 +32298,431,gangsters,1246485118 +32298,431,nudity (topless),1400283920 +32298,431,organized crime,1320206103 +32298,434,colorado,1212033500 +32298,434,money,1246851556 +32298,434,mountain climbing,1245291672 +32298,434,mountains,1206655868 +32298,434,wintry,1390524958 +32298,435,aliens,1250130421 +32298,435,based on a TV show,1250130417 +32298,435,Saturday Night Live,1250130424 +32298,436,nudity (full frontal),1400285804 +32298,436,psychology,1296792983 +32298,440,multiple roles,1246752909 +32298,440,US President,1245293363 +32298,441,1970s,1245239164 +32298,441,bullying,1361411636 +32298,441,drugs,1361411653 +32298,441,ensemble cast,1361411622 +32298,441,great soundtrack,1361411667 +32298,441,high school,1245239144 +32298,441,marijuana,1361411650 +32298,441,small town,1245239150 +32298,441,teen,1247044772 +32298,441,Texas,1245239136 +32298,442,dystopia,1248147108 +32298,442,time travel,1264846570 +32298,444,based on a book,1246671803 +32298,444,lesbian,1245234705 +32298,444,queer,1246617521 +32298,445,parody,1208761215 +32298,446,China,1246745421 +32298,446,communism,1246745443 +32298,446,opera,1246745443 +32298,446,vocalists,1246745443 +32298,451,nudity (topless),1407010576 +32298,454,based on a book,1162264342 +32298,454,John Grisham,1245290206 +32298,454,lawyers,1245290202 +32298,455,whales,1245496542 +32298,456,board game,1246086749 +32298,456,chess,1245060759 +32298,456,directorial debut,1207198999 +32298,456,drugs,1204430702 +32298,456,ghetto,1240911434 +32298,456,poverty,1240911432 +32298,457,based on a TV show,1246103633 +32298,457,business,1255075988 +32298,457,business is the antagonist,1255075988 +32298,457,Chicago,1255075929 +32298,457,doctors,1255075988 +32298,457,fugitive,1255075921 +32298,457,prison escape,1257446465 +32298,457,wrongly accused,1255075919 +32298,461,lesbian,1408858582 +32298,461,nudity (topless),1408858580 +32298,464,Louisiana,1246573848 +32298,464,New Orleans,1246573848 +32298,466,military,1249524425 +32298,466,parody,1249524427 +32298,467,nudity (topless),1400282188 +32298,469,based on a book,1246521623 +32298,469,nudity (topless),1400282915 +32298,470,imdb bottom 100,1195618576 +32298,471,business,1244891543 +32298,471,business is the antagonist,1394988180 +32298,471,corruption,1245501282 +32298,471,fish out of water,1244891537 +32298,471,rags to riches,1262225079 +32298,474,assassin,1246483147 +32298,475,based on a book,1222146696 +32298,475,civil war,1246394685 +32298,475,corruption,1246770340 +32298,475,IRA,1245280637 +32298,475,Ireland,1246770343 +32298,475,lawyers,1246770344 +32298,475,police,1246770350 +32298,475,police corruption,1246770346 +32298,475,prison,1246770385 +32298,475,true story,1246770353 +32298,475,wrongly accused,1246770352 +32298,480,based on a book,1162262375 +32298,480,biology,1240890370 +32298,480,cloning,1244766180 +32298,480,dinosaurs,1326375124 +32298,480,franchise,1326375128 +32298,480,Michael Crichton,1188777367 +32298,480,Oscar (Best Effects - Visual Effects),1244891142 +32298,480,Saturn Award (Best Special Effects),1244891144 +32298,480,scenic,1240890372 +32298,480,science,1240890374 +32298,481,serial killer,1210236373 +32298,482,bank robbery,1270801790 +32298,482,brutal,1270801526 +32298,482,drugs,1270801451 +32298,482,heist,1270801794 +32298,482,jazz club,1270801488 +32298,482,nudity (topless),1400283440 +32298,482,Paris,1270801483 +32298,483,1930s,1245625884 +32298,483,Great Depression,1245625876 +32298,483,not available from Netflix,1248306333 +32298,485,breaking the fourth wall,1401586837 +32298,485,campy,1246140219 +32298,485,parody,1240890391 +32298,488,1960s,1246621118 +32298,488,based on a play,1246621114 +32298,488,Broadway,1246621115 +32298,488,China,1246621115 +32298,488,cross dressing,1246621160 +32298,488,cross dressing men,1246621160 +32298,488,nudity (topless),1400282073 +32298,491,directorial debut,1207200408 +32298,493,gangsters,1246484245 +32298,493,great soundtrack,1349346096 +32298,493,Los Angeles,1349345856 +32298,495,controversial,1429832381 +32298,495,erotic,1245453778 +32298,495,male nudity,1429832365 +32298,495,nudity (full frontal),1400285014 +32298,495,true story,1429832365 +32298,495,unsimulated sex,1429832366 +32298,496,loneliness,1245062430 +32298,497,based on a play,1206782587 +32298,497,Shakespeare,1245154041 +32298,500,cross dressing,1244889380 +32298,500,cross dressing men,1246619842 +32298,500,divorce,1244889406 +32298,500,double life,1246755605 +32298,500,impostor,1245741649 +32298,500,San Francisco,1394545903 +32298,501,nudity (topless),1400282959 +32298,506,based on a book,1246619273 +32298,506,history,1246619279 +32298,506,nudity (full frontal),1399718142 +32298,506,Virginia Woolf,1246619267 +32298,508,AIDs,1245226283 +32298,508,courtroom,1245289420 +32298,508,gay,1255253305 +32298,508,homophobia,1245226299 +32298,508,lawyers,1245226294 +32298,508,queer,1246617092 +32298,509,acting debut,1404625907 +32298,509,adultery,1247041039 +32298,509,disability,1319362835 +32298,509,New Zealand,1247041029 +32298,509,nudity (rear),1400284105 +32298,509,nudity (topless),1400284096 +32298,511,college,1278703973 +32298,511,football,1278703929 +32298,511,sports,1278703929 +32298,512,aliens,1298952944 +32298,512,based on a book,1166969387 +32298,512,Robert Heinlein,1166969376 +32298,517,based on a book,1394186827 +32298,517,Michael Crichton,1394186827 +32298,517,nudity (topless),1400283549 +32298,520,medieval,1244883148 +32298,520,parody,1196669479 +32298,521,nudity (topless),1400283237 +32298,522,brutal,1382010901 +32298,522,racism,1382010922 +32298,524,biography,1195731354 +32298,524,college,1197716123 +32298,524,football,1245833934 +32298,524,great acting,1407829400 +32298,524,happy ending,1407829484 +32298,524,inspirational,1407829390 +32298,524,private school,1247047288 +32298,524,sports,1245833935 +32298,524,true story,1407829438 +32298,526,nudity (topless),1400295123 +32298,527,based on a book,1246446136 +32298,527,black and white,1244883877 +32298,527,Holocaust,1244936086 +32298,527,imdb top 250,1246446121 +32298,527,Nazis,1247102953 +32298,527,nudity (topless),1400283991 +32298,527,Poland,1244883865 +32298,527,true story,1382171327 +32298,527,World War II,1244883856 +32298,529,board game,1245497033 +32298,529,chess,1245060771 +32298,529,genius,1245834596 +32298,531,England,1245740885 +32298,531,secrets,1245740871 +32298,534,based on a play,1211517010 +32298,534,biography,1215506567 +32298,534,C.S. Lewis,1246762196 +32298,535,ensemble cast,1245813380 +32298,535,multiple storylines,1245813373 +32298,535,nudity (full frontal),1400284458 +32298,537,nudity (full frontal),1401570593 +32298,538,based on a play,1238734359 +32298,538,con artists,1251002315 +32298,538,gay,1255253353 +32298,538,impostor,1245741672 +32298,538,racism,1251017468 +32298,539,single parents,1245059288 +32298,540,nudity (rear),1400284303 +32298,540,nudity (topless),1400283667 +32298,540,voyeurism,1245057374 +32298,541,androids,1245414903 +32298,541,artificial intelligence,1246247320 +32298,541,assassin,1245414907 +32298,541,based on a book,1242204086 +32298,541,business is the antagonist,1394988060 +32298,541,cyberpunk,1245414912 +32298,541,imdb top 250,1245414961 +32298,541,nocturnal,1347610277 +32298,541,nudity (topless),1400284050 +32298,541,Philip K. Dick,1240889672 +32298,541,robots,1245414900 +32298,541,slow,1245414813 +32298,543,hotel,1248978352 +32298,543,multiple roles,1246753613 +32298,543,serial killer,1248978307 +32298,546,video game adaptation,1246574750 +32298,547,hunting,1248165230 +32298,547,survival,1248165217 +32298,549,biography,1246590789 +32298,549,classical music,1249501772 +32298,549,musicians,1392438227 +32298,549,piano,1249501778 +32298,550,nudity (topless),1400283584 +32298,551,Christmas,1317719222 +32298,551,claymation,1244770371 +32298,551,creepy,1317719270 +32298,551,ghosts,1317719236 +32298,551,Halloween,1317719224 +32298,551,Saturn Award (Best Fantasy Film),1317719265 +32298,551,Saturn Award (Best Music),1317719261 +32298,551,whimsical,1317719227 +32298,552,based on a book,1246102426 +32298,553,Arizona,1219722081 +32298,555,brutal,1382010679 +32298,556,politics,1294559652 +32298,558,books,1412601222 +32298,559,nudity (full frontal),1400285538 +32298,564,nudity (topless),1400281561 +32298,565,directorial debut,1207191141 +32298,566,writers,1254625139 +32298,568,directorial debut,1207201664 +32298,574,directorial debut,1207131652 +32298,574,incest,1242204201 +32298,574,nudity (full frontal),1400285172 +32298,580,royalty,1246760221 +32298,585,based on a TV show,1250130752 +32298,586,Christmas,1249700576 +32298,587,ghosts,1245057835 +32298,588,2D animation,1262764760 +32298,588,Oscar (Best Music - Original Score),1244845521 +32298,588,Oscar (Best Music - Original Song),1244845534 +32298,588,rags to riches,1244766674 +32298,589,androids,1245739742 +32298,589,artificial intelligence,1246247186 +32298,589,assassin,1246247186 +32298,589,imdb top 250,1245739754 +32298,589,Oscar (Best Effects - Visual Effects),1244891084 +32298,589,robots,1245739739 +32298,589,Saturn Award (Best Special Effects),1244891106 +32298,589,shape shifter,1248086405 +32298,589,time travel,1245739735 +32298,590,American Civil War,1422230156 +32298,590,based on a book,1246446087 +32298,590,civil war,1422230152 +32298,590,long,1255168244 +32298,590,Native Americans,1246670907 +32298,590,suicide,1419172195 +32298,592,Batman,1214259710 +32298,592,comic book,1246580079 +32298,592,DC Comics,1245913022 +32298,592,double life,1246754740 +32298,592,franchise,1245912998 +32298,592,superhero,1246580085 +32298,592,vigilante,1245912991 +32298,593,based on a book,1197804319 +32298,593,cannibalism,1245739081 +32298,593,FBI,1246446256 +32298,593,Hannibal Lecter,1245739087 +32298,593,imdb top 250,1245739078 +32298,593,manipulation,1245739062 +32298,593,psychology,1245739074 +32298,593,serial killer,1245739065 +32298,594,2D animation,1262764863 +32298,594,Disney,1247207412 +32298,594,fairy tale,1247207422 +32298,595,18th century,1245291390 +32298,595,Disney,1245291383 +32298,595,France,1245291393 +32298,596,2D animation,1262764857 +32298,596,puppets,1244925099 +32298,597,fish out of water,1244891515 +32298,597,prostitution,1262224983 +32298,597,rags to riches,1244889441 +32298,602,Harlem,1258534032 +32298,602,jazz,1240890189 +32298,602,musicians,1405582385 +32298,602,New York City,1258534032 +32298,602,youtube,1405584968 +32298,608,black comedy,1246775760 +32298,608,deadpan,1244882338 +32298,608,hostage,1246775768 +32298,608,imdb top 250,1246775748 +32298,608,kidnapping,1244714888 +32298,608,Minnesota,1244882343 +32298,608,police,1246775773 +32298,608,wintry,1390524823 +32298,611,franchise,1371006882 +32298,611,nudity (topless),1400282994 +32298,613,based on a book,1247886614 +32298,613,boarding school,1247886614 +32298,613,Charlotte Bronte,1247886614 +32298,613,orphans,1247886614 +32298,616,cats,1247210496 +32298,616,Disney,1247210497 +32298,616,Paris,1247210500 +32298,619,imdb bottom 100,1195617506 +32298,621,nudity (topless),1407097040 +32298,628,acting debut,1404625755 +32298,628,based on a book,1223095475 +32298,628,courtroom,1246572854 +32298,630,nudity (full frontal),1400285103 +32298,639,nude black women,1250128516 +32298,639,nudity (topless),1400282765 +32298,645,adultery,1246593347 +32298,645,love triangles,1246593360 +32298,647,corruption,1245499201 +32298,647,cover up,1245537903 +32298,647,military,1245499201 +32298,647,secrets,1245739944 +32298,648,based on a TV show,1250130317 +32298,648,espionage,1390369176 +32298,649,Iceland,1244461711 +32298,653,bad acting,1349325022 +32298,653,bittersweet,1349325086 +32298,653,dragons,1394788438 +32298,653,medieval,1349324973 +32298,661,based on a book,1246446586 +32298,661,claymation,1183003519 +32298,661,Disney,1246446594 +32298,661,Roald Dahl,1246446589 +32298,666,nudity (full frontal),1400285001 +32298,670,Apu trilogy,1244971236 +32298,670,India,1244971224 +32298,671,based on a TV show,1248647098 +32298,671,MST3K,1384460643 +32298,678,black and white,1246387869 +32298,678,disability,1246387869 +32298,678,mental illness,1246387869 +32298,680,artificial intelligence,1296631048 +32298,681,police corruption,1245389468 +32298,685,AIDS,1255255363 +32298,685,gay,1255255344 +32298,685,queer,1255255372 +32298,696,lesbian,1397459242 +32298,696,nudity (topless),1400280324 +32298,698,nudity (full frontal),1424997234 +32298,700,not available from Netflix,1255919440 +32298,709,based on a book,1207670933 +32298,709,Charles Dickens,1207670933 +32298,709,Disney,1246400079 +32298,714,black and white,1321380355 +32298,719,cloning,1278654869 +32298,720,claymation,1245853219 +32298,722,movie business,1247909329 +32298,724,high school,1247044322 +32298,724,private school,1247044322 +32298,724,teen,1247044296 +32298,724,witch,1245236841 +32298,728,based on a book,1245568011 +32298,728,England,1254712561 +32298,731,nudity (topless),1400282623 +32298,733,Alcatraz,1245291480 +32298,733,prison,1245291478 +32298,733,terrorism,1245291467 +32298,735,based on a book,1246444235 +32298,735,cemetery,1415838314 +32298,735,nudity (topless),1400282774 +32298,735,parody,1246582852 +32298,735,zombies,1246444151 +32298,736,Michael Crichton,1244889309 +32298,736,natural disaster,1245446344 +32298,736,science,1244889287 +32298,736,tornado,1246794994 +32298,736,weather,1244889317 +32298,741,anime,1315023826 +32298,741,based on a comic,1408328711 +32298,741,cyberpunk,1246494690 +32298,741,hackers,1246494694 +32298,741,Japan,1344163960 +32298,741,philosophy,1344163944 +32298,743,parody,1266066485 +32298,745,claymation,1246979532 +32298,745,dogs,1246979539 +32298,745,short,1246979527 +32298,748,aliens,1349310016 +32298,750,anti-war,1387281808 +32298,750,based on a book,1246446422 +32298,750,black comedy,1275558435 +32298,750,cold war,1259547670 +32298,750,corruption,1275558420 +32298,750,deadpan,1275558446 +32298,750,imdb top 250,1246446429 +32298,750,military,1275558420 +32298,750,multiple roles,1275558335 +32298,750,nuclear war,1244890867 +32298,750,politics,1244890861 +32298,750,satire,1240914433 +32298,755,based on a book,1244971785 +32298,755,colonialism,1244971785 +32298,755,India,1244971785 +32298,755,Rudyard Kipling,1244971785 +32298,759,Oscar (Best Documentary Feature),1205300149 +32298,762,nudity (topless),1400283895 +32298,762,single parents,1245058957 +32298,762,strippers,1195613201 +32298,764,directorial debut,1207215214 +32298,766,nudity (topless),1400282973 +32298,766,queer,1246617507 +32298,766,true story,1246617444 +32298,778,addiction,1244892128 +32298,778,AIDS,1248088710 +32298,778,bad parents,1245735238 +32298,778,based on a book,1245844647 +32298,778,black comedy,1249521086 +32298,778,child abuse,1245735232 +32298,778,drugs,1248077396 +32298,778,heroin,1248077394 +32298,778,imdb top 250,1245844633 +32298,778,Irvine Welsh,1386945148 +32298,778,narrated,1247820604 +32298,778,nudity (full frontal),1400284420 +32298,778,Scotland,1245735255 +32298,780,aliens,1245234315 +32298,780,americans save the world,1384105954 +32298,780,apocalypse,1245392878 +32298,780,aviation,1247041564 +32298,780,US President,1245234322 +32298,781,nudity (topless),1400282933 +32298,783,based on a book,1248167132 +32298,783,Disney,1248167120 +32298,783,France,1248167148 +32298,783,Paris,1248167148 +32298,783,Victor Hugo,1248167940 +32298,785,bowling,1246521516 +32298,785,nudity (topless),1400283892 +32298,785,sports,1246521519 +32298,788,alter ego,1246756707 +32298,788,double life,1246756707 +32298,788,multiple roles,1246749568 +32298,788,remake,1246749556 +32298,789,17th century,1246590064 +32298,789,biography,1246590400 +32298,789,Catholicism,1246590276 +32298,789,Christianity,1246590276 +32298,789,Latin America,1248163598 +32298,789,Mexico,1246590408 +32298,789,poets,1246600039 +32298,789,religion,1246590276 +32298,789,religious oppression,1246590353 +32298,789,Spanish Inquisition,1246590255 +32298,789,writers,1246600039 +32298,791,musicians,1379408466 +32298,799,ghosts,1246453977 +32298,799,serial killer,1246453980 +32298,800,police,1319097077 +32298,800,small town,1319097077 +32298,800,Texas,1319097077 +32298,801,directorial debut,1207212226 +32298,802,genius,1245835166 +32298,805,based on a book,1229369952 +32298,805,courtroom,1246572932 +32298,805,John Grisham,1246572935 +32298,805,Mississippi,1246572963 +32298,805,rape,1246572948 +32298,805,revenge,1246572983 +32298,805,small town,1246572968 +32298,805,vigilante,1246572983 +32298,806,based on a play,1232937166 +32298,806,David Mamet,1232937166 +32298,808,Alaska,1240889423 +32298,810,imdb bottom 100,1195617545 +32298,818,based on a TV show,1250130796 +32298,832,kidnapping,1246576142 +32298,835,high school,1269050469 +32298,835,nudity (topless),1400282523 +32298,835,revenge,1269050469 +32298,837,bad parents,1245377039 +32298,837,based on a book,1243497298 +32298,837,elementary school,1308326692 +32298,837,magic,1243497304 +32298,837,private school,1245377050 +32298,837,Roald Dahl,1243497295 +32298,837,teacher,1245377045 +32298,838,19th century,1260513890 +32298,838,based on a book,1250643073 +32298,838,England,1250643131 +32298,838,Jane Austen,1250643070 +32298,842,nudity (topless),1406031479 +32298,846,not available from Netflix,1248306457 +32298,851,biography,1308141376 +32298,851,painter,1308141382 +32298,858,based on a book,1245733569 +32298,858,imdb top 250,1245733577 +32298,858,Mafia,1244945654 +32298,858,nudity (topless),1400283999 +32298,858,organized crime,1248647302 +32298,866,directorial debut,1246617311 +32298,866,erotic,1244881148 +32298,866,lesbian,1244881135 +32298,866,Mafia,1248078252 +32298,866,nudity (topless),1400283860 +32298,866,organized crime,1248078262 +32298,866,queer,1246617295 +32298,880,based on a book,1196562075 +32298,880,H.G. Wells,1196562064 +32298,891,franchise,1248256125 +32298,892,based on a play,1206783054 +32298,892,cross dressing,1246619504 +32298,892,cross dressing women,1246619504 +32298,892,impostor,1246621796 +32298,892,mistaken identity,1246619518 +32298,892,Shakespeare,1246619480 +32298,892,siblings,1246619504 +32298,892,twins,1246619504 +32298,893,based on a book,1235510526 +32298,893,Kurt Vonnegut,1235510543 +32298,893,Nazis,1257075620 +32298,893,World War II,1257075614 +32298,897,based on a book,1207665604 +32298,897,Ernest Hemingway,1207665604 +32298,899,black and white,1204202551 +32298,899,dance,1246735449 +32298,899,imdb top 250,1246735445 +32298,899,movie business,1246735431 +32298,899,vocalists,1246735435 +32298,900,AFI 100,1257576024 +32298,900,France,1257576034 +32298,900,Oscar (Best Picture),1257576047 +32298,900,Paris,1257576044 +32298,902,based on a book,1245288929 +32298,902,Truman Capote,1245288932 +32298,902,writers,1246748766 +32298,903,imdb top 250,1246753669 +32298,903,multiple roles,1246753673 +32298,903,San Francisco,1246753692 +32298,904,imdb top 250,1246746852 +32298,904,voyeurism,1245057335 +32298,908,aviation,1247041479 +32298,908,imdb top 250,1247041463 +32298,908,mistaken identity,1245057283 +32298,908,trains,1344756824 +32298,909,black and white,1204201140 +32298,909,imdb top 250,1245285710 +32298,909,suicide,1419172277 +32298,910,cross dressing,1246484815 +32298,910,cross dressing men,1246619649 +32298,910,fish out of water,1246484784 +32298,910,gangsters,1246484800 +32298,910,imdb top 250,1246484781 +32298,912,based on a play,1248305362 +32298,912,black and white,1204200458 +32298,912,imdb top 250,1247103093 +32298,912,love triangles,1268135868 +32298,912,Nazis,1268135851 +32298,912,World War II,1268135913 +32298,914,based on a play,1245376247 +32298,914,Broadway,1246899173 +32298,915,based on a play,1226742853 +32298,915,black and white,1226742836 +32298,915,Oscar (Best Costume Design),1248262592 +32298,915,remade,1248262558 +32298,916,Italy,1246757601 +32298,916,Rome,1246757598 +32298,916,royalty,1246757583 +32298,919,based on a book,1162262050 +32298,919,black and white,1204201962 +32298,919,imdb top 250,1246753319 +32298,919,midgets,1262592470 +32298,919,multiple roles,1246753328 +32298,919,technicolor,1244846061 +32298,919,tornado,1393379484 +32298,920,American Civil War,1245564245 +32298,920,based on a book,1206248553 +32298,920,black and white,1204200822 +32298,920,civil war,1245830237 +32298,922,Hollywood,1245375651 +32298,922,imdb top 250,1245375655 +32298,922,May-December romance,1246593038 +32298,922,movie business,1232689586 +32298,923,acting debut,1404626195 +32298,923,biography,1246589134 +32298,923,black and white,1204202119 +32298,923,imdb top 250,1245279165 +32298,924,aliens,1245415106 +32298,924,Arthur C. Clarke,1240889318 +32298,924,artificial intelligence,1240889320 +32298,924,based on a book,1240889319 +32298,924,evolution,1309078375 +32298,924,first contact,1245834440 +32298,924,imdb top 250,1245223795 +32298,924,slow,1245415095 +32298,924,space,1245223789 +32298,926,Broadway,1245375737 +32298,926,imdb top 250,1245375751 +32298,926,New York City,1248563926 +32298,926,Theater,1245375732 +32298,928,IMDB Top 250,1256286548 +32298,930,Brazil,1245540943 +32298,930,imdb top 250,1245540965 +32298,930,Nazis,1245540942 +32298,930,Rio de Janeiro,1245540943 +32298,930,South America,1245540942 +32298,934,remade,1246495793 +32298,934,wedding,1246495792 +32298,935,Broadway,1247208702 +32298,936,communism,1261040420 +32298,936,Soviet Union,1261040413 +32298,940,England,1246760418 +32298,940,forest,1246760436 +32298,940,medieval,1246760418 +32298,940,royalty,1246760418 +32298,947,Great Depression,1245637870 +32298,949,acting debut,1404626145 +32298,949,based on a book,1197708700 +32298,949,John Steinbeck,1197708700 +32298,949,siblings,1248262715 +32298,952,based on a book,1231680201 +32298,952,Jules Verne,1231680201 +32298,953,alternate reality,1245410568 +32298,953,angel,1246979934 +32298,953,imdb top 250,1245410579 +32298,954,black and white,1245500573 +32298,954,corruption,1245500594 +32298,954,imdb top 250,1245500585 +32298,954,politics,1245500587 +32298,957,based on a book,1421499294 +32298,957,Nathaniel Hawthorne,1421499294 +32298,965,based on a book,1258707639 +32298,965,fugitive,1246103541 +32298,965,Scotland,1258707652 +32298,965,wrongly accused,1246103549 +32298,968,black and white,1204202971 +32298,968,creepy,1256149520 +32298,968,low budget,1391751400 +32298,968,zombies,1241004583 +32298,969,1910s,1249011324 +32298,969,Africa,1249011344 +32298,969,based on a book,1249011344 +32298,969,boat,1250052098 +32298,969,colonialism,1246757857 +32298,969,imdb top 250,1246757847 +32298,969,World War I,1246757857 +32298,971,addiction,1245227193 +32298,971,alcoholism,1245227188 +32298,971,based on a play,1204117008 +32298,971,drinking,1248090656 +32298,971,Tennessee Williams,1245227127 +32298,976,based on a book,1207665128 +32298,976,Ernest Hemingway,1207665128 +32298,987,nude black women,1410358676 +32298,987,nudity (topless),1410358625 +32298,990,multiple roles,1246754277 +32298,990,nudity (topless),1403945966 +32298,990,revenge,1246754277 +32298,991,biography,1255280561 +32298,991,Ireland,1255280546 +32298,993,directorial debut,1304060301 +32298,993,genius,1245834945 +32298,993,nuclear war,1304060284 +32298,993,physics,1240890302 +32298,993,science,1240890306 +32298,993,true story,1244672020 +32298,993,World War II,1304060284 +32298,994,food,1351143991 +32298,994,great soundtrack,1351144079 +32298,994,immigrants,1351144064 +32298,994,restaurant,1245281648 +32298,994,siblings,1351144066 +32298,997,adultery,1246521405 +32298,997,nudity (topless),1400280961 +32298,999,nudity (topless),1410462684 +32298,1006,anti-Semitism,1246573089 +32298,1006,based on a book,1246573140 +32298,1006,courtroom,1246573126 +32298,1006,John Grisham,1246573022 +32298,1006,Ku Klux Klan,1246573083 +32298,1006,Mississippi,1246573073 +32298,1010,cars,1247559510 +32298,1010,racing,1247559523 +32298,1012,dogs,1248647166 +32298,1013,remade,1245498291 +32298,1014,directorial debut,1207193821 +32298,1017,based on a book,1207044102 +32298,1017,island,1207044077 +32298,1017,shipwreck,1196514488 +32298,1019,based on a book,1231680304 +32298,1019,Jules Verne,1231680304 +32298,1019,submarine,1231680304 +32298,1020,Caribbean,1240889884 +32298,1020,inspirational,1244884195 +32298,1020,Jamaica,1248165691 +32298,1020,Latin America,1248165691 +32298,1020,Olympics,1246391843 +32298,1020,sports,1246391841 +32298,1020,underdogs,1245032993 +32298,1022,2D animation,1262764833 +32298,1022,Disney,1245830129 +32298,1022,fairy tale,1245830127 +32298,1022,royalty,1246757496 +32298,1023,2D animation,1263387818 +32298,1025,2D animation,1262764883 +32298,1025,Disney,1245150850 +32298,1025,King Arthur,1245150862 +32298,1025,magic,1245150846 +32298,1025,royalty,1246757389 +32298,1027,blindness,1245228138 +32298,1027,Crusades,1245447397 +32298,1027,England,1245445995 +32298,1027,forest,1245228064 +32298,1027,medieval,1245228070 +32298,1027,royalty,1246760323 +32298,1027,sword fight,1245445873 +32298,1028,acting debut,1404626000 +32298,1028,based on a book,1246750263 +32298,1028,Disney,1246750292 +32298,1028,magic,1246750299 +32298,1028,multiple roles,1246750239 +32298,1028,nanny,1246750306 +32298,1028,villain nonexistent or not needed for good story,1243804529 +32298,1029,circus,1245287022 +32298,1030,dragons,1394788685 +32298,1031,magic,1219151238 +32298,1032,2D animation,1262764727 +32298,1032,alternate reality,1245278859 +32298,1032,based on a book,1162262254 +32298,1032,cats,1244882911 +32298,1032,Disney,1246453007 +32298,1032,Lewis Carroll,1246445950 +32298,1032,madcap,1243814021 +32298,1032,miniaturization,1384093723 +32298,1032,surreal,1240913325 +32298,1032,whimsical,1240889437 +32298,1035,Austria,1197715617 +32298,1035,choir,1246734282 +32298,1035,Nazis,1245056472 +32298,1035,scenic,1195727751 +32298,1035,true story,1245056483 +32298,1035,vocalists,1246734222 +32298,1035,World War II,1245056479 +32298,1036,acting debut,1404626010 +32298,1036,based on a book,1246576691 +32298,1036,imdb top 250,1245291717 +32298,1036,terrorism,1195969308 +32298,1037,alternate reality,1245278621 +32298,1037,cyberpunk,1245118017 +32298,1037,nudity (topless),1400283803 +32298,1037,virtual reality,1195554190 +32298,1040,19th century,1245236609 +32298,1040,based on a book,1245236576 +32298,1040,England,1245236615 +32298,1040,Joseph Conrad,1245236581 +32298,1040,London,1245236615 +32298,1041,secrets,1351150541 +32298,1041,single parents,1351150541 +32298,1044,nudity (topless),1400282110 +32298,1046,based on a play,1269757710 +32298,1046,child abuse,1255254716 +32298,1046,gay,1255254635 +32298,1046,homophobia,1255254715 +32298,1046,queer,1255254715 +32298,1047,amnesia,1245453281 +32298,1047,assassin,1245453293 +32298,1049,Africa,1324956693 +32298,1049,lions,1196563428 +32298,1049,true story,1324956702 +32298,1051,addiction,1247044532 +32298,1051,alcoholism,1247044529 +32298,1053,nudity (topless),1400281058 +32298,1056,based on a book,1268383612 +32298,1056,nudity (full frontal),1400285026 +32298,1056,Thomas Hardy,1268383612 +32298,1059,based on a play,1206782364 +32298,1059,Shakespeare,1248984176 +32298,1061,child abuse,1246472321 +32298,1061,prison,1246472313 +32298,1061,revenge,1246472281 +32298,1073,based on a book,1162261790 +32298,1073,Roald Dahl,1246709506 +32298,1073,whimsical,1244974619 +32298,1076,based on a book,1248489334 +32298,1076,ghosts,1248489358 +32298,1076,haunted house,1248489355 +32298,1077,dystopia,1245286656 +32298,1077,farce,1271587169 +32298,1077,time travel,1245286667 +32298,1080,banned movie,1248146134 +32298,1080,based on a book,1244771181 +32298,1080,based on a myth,1244771653 +32298,1080,Biblical,1244771172 +32298,1080,British,1236588426 +32298,1080,Christianity,1244771205 +32298,1080,controversial,1248146134 +32298,1080,goofy,1369892146 +32298,1080,imdb top 250,1246346153 +32298,1080,irreligion,1256149356 +32298,1080,irreverent,1246389327 +32298,1080,Jesus Christ,1246346140 +32298,1080,male nudity,1256149336 +32298,1080,Middle East,1246751976 +32298,1080,mockumentary,1248864068 +32298,1080,Monty Python,1381842134 +32298,1080,multiple roles,1246751954 +32298,1080,nudity (full frontal),1400284403 +32298,1080,parody,1244771207 +32298,1080,religion,1244771194 +32298,1080,sacrilege,1244771760 +32298,1081,cross dressing,1246620331 +32298,1081,cross dressing women,1246762342 +32298,1082,politics,1322115521 +32298,1084,1920s,1246613221 +32298,1084,biography,1246613283 +32298,1084,controversial,1248140648 +32298,1084,gangsters,1246484675 +32298,1085,based on a book,1207666013 +32298,1085,Ernest Hemingway,1207666013 +32298,1088,dance,1244937751 +32298,1089,brutal,1241004987 +32298,1089,directorial debut,1207130668 +32298,1089,ensemble cast,1197724371 +32298,1089,heist,1246254940 +32298,1089,imdb top 250,1246254929 +32298,1089,organized crime,1246254946 +32298,1089,undercover cop,1246343948 +32298,1089,visceral,1246777128 +32298,1090,anti-war,1387281833 +32298,1090,imdb top 250,1247041517 +32298,1090,narrated,1256839803 +32298,1090,Vietnam War,1247041511 +32298,1092,controversial,1248141420 +32298,1092,erotic,1245409299 +32298,1092,nudity (full frontal),1400285279 +32298,1093,1960s,1246589582 +32298,1093,biography,1246589652 +32298,1093,drugs,1246589590 +32298,1093,musicians,1379410646 +32298,1093,nudity (topless),1400283943 +32298,1093,rock and roll,1207380201 +32298,1093,vocalists,1246734151 +32298,1094,cross dressing,1246620955 +32298,1094,cross dressing men,1246620955 +32298,1094,England,1246621057 +32298,1094,hostage,1246621053 +32298,1094,IRA,1246621051 +32298,1094,Ireland,1246621055 +32298,1094,male nudity,1246621048 +32298,1094,queer,1246621064 +32298,1095,based on a play,1232937279 +32298,1095,business,1245239355 +32298,1095,business is the antagonist,1394988478 +32298,1095,David Mamet,1232937279 +32298,1096,based on a book,1220270316 +32298,1097,aliens,1244889592 +32298,1097,fish out of water,1244889798 +32298,1097,happy ending,1247479485 +32298,1097,villain nonexistent or not needed for good story,1246473092 +32298,1099,based on a book,1257901800 +32298,1099,Charles Dickens,1207666620 +32298,1099,Christmas,1246980092 +32298,1100,cars,1247472865 +32298,1100,racing,1247472891 +32298,1100,sports,1247472917 +32298,1101,aviation,1245919788 +32298,1101,military,1298371213 +32298,1104,based on a play,1204116964 +32298,1104,Louisiana,1246573675 +32298,1104,New Orleans,1195733699 +32298,1104,Tennessee Williams,1245227289 +32298,1111,bugs,1247216020 +32298,1111,nature,1196065561 +32298,1119,based on a play,1407224080 +32298,1119,nudity (topless),1407224080 +32298,1120,biography,1248088567 +32298,1120,censorship,1248088576 +32298,1120,history,1404022589 +32298,1120,nudity (full frontal),1400284886 +32298,1120,pornography,1244925302 +32298,1122,military,1402111797 +32298,1122,Texas,1402111797 +32298,1123,PBS,1311542636 +32298,1123,politics,1257417137 +32298,1123,Virginia,1311542618 +32298,1126,imaginary friend,1244881973 +32298,1127,aliens,1197718254 +32298,1127,first contact,1246246762 +32298,1127,ocean,1240889384 +32298,1127,submarine,1240889385 +32298,1128,remade,1247214402 +32298,1129,New York City,1250659827 +32298,1130,nudity (full frontal),1400285330 +32298,1130,werewolves,1246445224 +32298,1131,farming,1260755327 +32298,1132,nudity (full frontal),1400284455 +32298,1135,military,1259882750 +32298,1136,Biblical,1260224654 +32298,1136,breaking the fourth wall,1244883042 +32298,1136,Christianity,1260224662 +32298,1136,directorial debut,1207128324 +32298,1136,England,1245221812 +32298,1136,goofy,1369892139 +32298,1136,holy grail,1196518353 +32298,1136,imdb top 250,1245221815 +32298,1136,King Arthur,1245221804 +32298,1136,medieval,1244883010 +32298,1136,multiple roles,1247290271 +32298,1136,parody,1244882995 +32298,1136,quotable,1244882990 +32298,1136,rabbits,1247290263 +32298,1136,religion,1260224638 +32298,1136,witty,1308034760 +32298,1147,boxing,1245049941 +32298,1147,Oscar (Best Documentary Feature),1205300243 +32298,1147,sports,1360642923 +32298,1148,Aardman,1318311304 +32298,1148,Bechdel Test:Fail,1386592565 +32298,1148,claymation,1317092470 +32298,1148,dogs,1318311262 +32298,1148,robots,1318311266 +32298,1148,short,1318311316 +32298,1161,banned movie,1248151993 +32298,1161,based on a book,1248151993 +32298,1161,controversial,1248151993 +32298,1161,drums,1385964496 +32298,1161,Germany,1248152284 +32298,1161,Nazis,1248152284 +32298,1161,nudity (full frontal),1400284770 +32298,1161,World War II,1248152284 +32298,1168,werewolves,1246445641 +32298,1169,Minnesota,1245646727 +32298,1169,Oscar (Best Documentary Feature),1240889469 +32298,1171,corruption,1322114179 +32298,1171,mockumentary,1322114180 +32298,1171,politics,1322114181 +32298,1171,satire,1322114183 +32298,1172,imdb top 250,1245232241 +32298,1172,Italy,1245232239 +32298,1172,small town,1245232234 +32298,1173,black comedy,1248508420 +32298,1173,cannibalism,1248508405 +32298,1173,nudity (full frontal),1400285059 +32298,1175,black comedy,1310143711 +32298,1175,cannibalism,1310143714 +32298,1175,directorial debut,1207201150 +32298,1175,post-apocalyptic,1310143717 +32298,1176,nudity (topless),1407106390 +32298,1178,based on a book,1217770750 +32298,1178,black and white,1204202332 +32298,1178,courtroom,1246571227 +32298,1178,grim,1244883809 +32298,1178,imdb top 250,1245832562 +32298,1178,military,1245832565 +32298,1178,military court,1246622057 +32298,1179,based on a book,1245743330 +32298,1179,con artists,1245743275 +32298,1179,nudity (full frontal),1400284798 +32298,1179,scam,1245743275 +32298,1183,based on a book,1247103261 +32298,1183,nudity (full frontal),1400284847 +32298,1185,biography,1246590618 +32298,1185,directorial debut,1207193679 +32298,1185,disability,1246590623 +32298,1185,writers,1246599863 +32298,1186,voyeurism,1244887693 +32298,1187,disability,1382844262 +32298,1187,friendship,1382844264 +32298,1187,Louisiana,1382844277 +32298,1187,small town,1382844271 +32298,1188,dance,1379411411 +32298,1189,corruption,1244765692 +32298,1189,police,1245279840 +32298,1189,police corruption,1244765685 +32298,1189,racism,1244765706 +32298,1189,small town,1244765708 +32298,1189,Texas,1244765700 +32298,1189,wrongly accused,1245228810 +32298,1190,kidnapping,1245454265 +32298,1190,movie business,1263021063 +32298,1190,nudity (full frontal),1400284979 +32298,1190,pornography,1263021079 +32298,1191,nudity (topless),1400282838 +32298,1192,queer,1246617253 +32298,1193,asylum,1245734676 +32298,1193,based on a book,1205303463 +32298,1193,great acting,1386814470 +32298,1193,imdb top 250,1245225529 +32298,1193,insanity,1244892617 +32298,1193,mental illness,1244892642 +32298,1193,psychology,1244925282 +32298,1193,rebellion,1246141091 +32298,1196,cliffhanger,1235639602 +32298,1196,franchise,1245844327 +32298,1196,imdb top 250,1245844337 +32298,1196,robots,1244766783 +32298,1196,Saturn Award (Best Special Effects),1244891175 +32298,1196,wintry,1390525067 +32298,1197,based on a book,1246446630 +32298,1197,Bechdel Test:Fail,1408338262 +32298,1197,happy ending,1247479657 +32298,1197,imdb top 250,1246446625 +32298,1197,pirates,1245638781 +32298,1197,quirky,1260176694 +32298,1197,quotable,1346140340 +32298,1197,revenge,1246446651 +32298,1197,royalty,1246760189 +32298,1197,sword fight,1245293725 +32298,1197,whimsical,1247479660 +32298,1197,witty,1382198715 +32298,1198,archaeology,1244889216 +32298,1198,Biblical,1245401941 +32298,1198,Egypt,1206777619 +32298,1198,franchise,1245401951 +32298,1198,imdb top 250,1245401936 +32298,1198,snakes,1247652411 +32298,1198,World War II,1245401947 +32298,1199,black comedy,1246748683 +32298,1199,dystopia,1246451321 +32298,1199,satire,1293877964 +32298,1199,surreal,1293877973 +32298,1199,Trilogy of the Imagination,1244771391 +32298,1200,aliens,1245050582 +32298,1200,androids,1245050584 +32298,1200,franchise,1246473594 +32298,1200,imdb top 250,1245728550 +32298,1200,military,1245050587 +32298,1200,overrated,1406713289 +32298,1200,space,1245050593 +32298,1201,American Civil War,1245829813 +32298,1201,civil war,1245830257 +32298,1201,imdb top 250,1245285985 +32298,1201,parody,1246452034 +32298,1202,bleak,1318058421 +32298,1202,boring,1384179922 +32298,1202,overrated,1384674451 +32298,1203,courtroom,1245288868 +32298,1203,directorial debut,1387427268 +32298,1203,imdb top 250,1245288880 +32298,1204,biography,1246588150 +32298,1204,history,1246588179 +32298,1204,imdb top 250,1246588173 +32298,1204,Middle East,1245279243 +32298,1204,true story,1245279234 +32298,1204,World War I,1245279214 +32298,1206,anomie,1245449093 +32298,1206,Anthony Burgess,1370347167 +32298,1206,banned movie,1248140413 +32298,1206,based on a book,1162261432 +32298,1206,brainwashing,1245449117 +32298,1206,brutal,1240889848 +32298,1206,controversial,1248140413 +32298,1206,disturbing,1244891763 +32298,1206,imdb top 250,1245749954 +32298,1206,rape,1240889850 +32298,1206,satire,1240889852 +32298,1207,Alabama,1245059034 +32298,1207,based on a book,1248261923 +32298,1207,courtroom,1246572537 +32298,1207,Great Depression,1245059056 +32298,1207,imdb top 250,1245290127 +32298,1207,lawyers,1245290103 +32298,1207,racism,1245059036 +32298,1207,single parents,1245059099 +32298,1207,small town,1245059028 +32298,1207,wrongly accused,1245290111 +32298,1208,based on a book,1162262618 +32298,1208,imdb top 250,1245236416 +32298,1208,insanity,1245047305 +32298,1208,Joseph Conrad,1245236406 +32298,1208,military,1245047296 +32298,1208,nudity (topless),1400284067 +32298,1208,Vietnam war,1245047238 +32298,1210,aliens,1298337958 +32298,1210,desert,1244766283 +32298,1210,far future,1246775543 +32298,1210,franchise,1245727538 +32298,1210,imdb top 250,1245727532 +32298,1210,Oscar (Best Music - Original Score),1244845560 +32298,1210,robots,1244766365 +32298,1210,space,1245727551 +32298,1210,Star Wars,1298337971 +32298,1211,angel,1245735752 +32298,1211,remade,1245735788 +32298,1212,Austria,1247103491 +32298,1212,based on a book,1247103491 +32298,1212,black and white,1247103477 +32298,1212,imdb top 250,1247103481 +32298,1212,Vienna,1247103491 +32298,1213,based on a book,1205293518 +32298,1213,imdb top 250,1246601665 +32298,1213,Mafia,1248077036 +32298,1213,organized crime,1245279507 +32298,1214,aliens,1245050540 +32298,1214,business is the antagonist,1394988041 +32298,1214,franchise,1246473061 +32298,1214,imdb top 250,1246314775 +32298,1214,monster,1245050559 +32298,1214,space,1245050551 +32298,1215,anti-hero,1387281492 +32298,1215,campy,1245287818 +32298,1215,fish out of water,1245287857 +32298,1215,multiple roles,1246753824 +32298,1215,time travel,1245287831 +32298,1215,zombies,1293791845 +32298,1217,based on a play,1248646714 +32298,1217,imdb top 250,1248646708 +32298,1217,Shakespeare,1248646706 +32298,1218,assassin,1246314907 +32298,1218,Hong Kong,1246314913 +32298,1219,black and white,1204203000 +32298,1219,cross dressing,1246620588 +32298,1219,cross dressing men,1246620588 +32298,1219,serial killer,1148728043 +32298,1220,based on a TV show,1409002182 +32298,1220,buddy movie,1246254614 +32298,1220,car chase,1245280784 +32298,1220,Chicago,1246254623 +32298,1220,great soundtrack,1252043530 +32298,1220,mission from God,1245401371 +32298,1220,musicians,1379410969 +32298,1220,police,1245280780 +32298,1220,rhythm & blues,1245280776 +32298,1220,road trip,1245280774 +32298,1220,Saturday Night Live,1386196915 +32298,1220,siblings,1245539431 +32298,1221,imdb top 250,1248077181 +32298,1221,Mafia,1248077172 +32298,1221,New York City,1248077223 +32298,1221,sequel,1245288820 +32298,1222,1960s,1370347186 +32298,1222,imdb top 250,1246486093 +32298,1222,military,1246486085 +32298,1222,Vietnam,1246486090 +32298,1222,Vietnam War,1246486088 +32298,1223,claymation,1246979365 +32298,1223,short,1246979357 +32298,1224,based on a play,1206782495 +32298,1224,directorial debut,1207199040 +32298,1225,18th century,1245048076 +32298,1225,Austria,1245048154 +32298,1225,based on a play,1212238107 +32298,1225,biography,1240889451 +32298,1225,classical music,1244925215 +32298,1225,genius,1255174692 +32298,1225,history,1245048186 +32298,1225,imdb top 250,1245048173 +32298,1225,nudity (topless),1400284083 +32298,1225,true story,1244925230 +32298,1225,Vienna,1244925237 +32298,1227,imdb top 250,1250851914 +32298,1227,nudity (full frontal),1400284445 +32298,1228,black and white,1245050019 +32298,1228,boxing,1245050029 +32298,1228,imdb top 250,1245810848 +32298,1228,sports,1245810825 +32298,1230,imdb top 250,1248262110 +32298,1230,New York City,1248262119 +32298,1230,Oscar (Best Actress),1255063629 +32298,1231,astronauts,1245280453 +32298,1231,history,1245280444 +32298,1231,NASA,1245280449 +32298,1231,space,1245280436 +32298,1231,true story,1245280441 +32298,1232,based on a book,1245286718 +32298,1232,long,1395368291 +32298,1233,IMDB Top 250,1255919762 +32298,1233,long,1255919762 +32298,1233,Nazis,1245224859 +32298,1233,ocean,1229309288 +32298,1233,submarine,1245224850 +32298,1233,World War II,1245224852 +32298,1234,con artists,1244946290 +32298,1234,imdb top 250,1245387828 +32298,1234,revenge,1303165520 +32298,1235,May-December romance,1255334968 +32298,1236,black comedy,1361105284 +32298,1236,deadpan,1361105176 +32298,1237,black and white,1204202423 +32298,1237,board game,1246086861 +32298,1237,chess,1245568603 +32298,1237,imdb top 250,1245568611 +32298,1237,medieval,1245568614 +32298,1238,business,1367293592 +32298,1238,business is the antagonist,1367293582 +32298,1238,Scotland,1367293582 +32298,1238,small town,1367293582 +32298,1240,androids,1245288037 +32298,1240,artificial intelligence,1246247110 +32298,1240,assassin,1246247154 +32298,1240,franchise,1245844609 +32298,1240,imdb top 250,1245288082 +32298,1240,nudity (topless),1400284044 +32298,1240,robots,1245288080 +32298,1240,time travel,1245288073 +32298,1241,zombies,1246443928 +32298,1242,American Civil War,1245830170 +32298,1242,based on a book,1246390979 +32298,1242,civil war,1245830176 +32298,1242,history,1246390989 +32298,1242,inspirational,1244884298 +32298,1242,racism,1244884301 +32298,1242,true story,1244884306 +32298,1243,absurd,1319082282 +32298,1243,based on a play,1206782750 +32298,1243,overrated,1406713381 +32298,1243,Shakespeare,1248984218 +32298,1243,witty,1319082268 +32298,1244,bittersweet,1246931693 +32298,1244,black and white,1245286294 +32298,1244,imdb top 250,1255334580 +32298,1244,Manhattan,1246931678 +32298,1244,May-December romance,1255334862 +32298,1244,New York City,1245286288 +32298,1244,satire,1246933122 +32298,1244,writers,1246933122 +32298,1245,gangsters,1246484898 +32298,1245,Prohibition,1246484901 +32298,1246,bittersweet,1247479831 +32298,1246,boarding school,1247479857 +32298,1246,education,1246401106 +32298,1246,heartbreaking,1387390296 +32298,1246,high school,1245376952 +32298,1246,inspirational,1240911567 +32298,1246,private school,1247045036 +32298,1246,school drama,1245833507 +32298,1246,Shakespeare,1244884359 +32298,1246,suicide,1244884449 +32298,1246,teacher,1245376941 +32298,1246,theater,1396006167 +32298,1247,adultery,1245049793 +32298,1247,imdb top 250,1246451065 +32298,1247,love triangles,1246592835 +32298,1247,May-December romance,1246592846 +32298,1248,drugs,1245050161 +32298,1248,police,1245050166 +32298,1248,police corruption,1245050173 +32298,1249,assassin,1246482870 +32298,1249,remade,1246482873 +32298,1250,based on a book,1229309384 +32298,1250,concentration camp,1247103070 +32298,1250,imdb top 250,1247103054 +32298,1250,World War II,1247103044 +32298,1251,IMDB Top 250,1251200119 +32298,1251,movie business,1248508619 +32298,1252,imdb top 250,1247209267 +32298,1253,aliens,1246246784 +32298,1253,black and white,1204202302 +32298,1253,first contact,1246246780 +32298,1255,aliens,1247179729 +32298,1255,directorial debut,1406923001 +32298,1256,black and white,1204201935 +32298,1256,slapstick,1242666035 +32298,1257,directorial debut,1207211592 +32298,1257,high school,1245285244 +32298,1257,suicide,1419172306 +32298,1258,based on a book,1244892516 +32298,1258,haunted house,1246086612 +32298,1258,hotel,1246086604 +32298,1258,imdb top 250,1246086596 +32298,1258,insanity,1246493838 +32298,1258,mental illness,1246493829 +32298,1258,nudity (full frontal),1400284441 +32298,1258,Stephen King,1244892520 +32298,1258,writers,1246598531 +32298,1259,based on a book,1197785757 +32298,1259,coming of age,1248087783 +32298,1259,imdb top 250,1248087794 +32298,1260,black and white,1248646808 +32298,1260,imdb top 250,1248646810 +32298,1260,serial killer,1248646807 +32298,1262,concentration camp,1247103002 +32298,1262,escape,1258707091 +32298,1262,imdb top 250,1244945587 +32298,1262,prison escape,1244945579 +32298,1262,true story,1244945576 +32298,1262,World War II,1244945571 +32298,1263,imdb top 250,1245285791 +32298,1263,Vietnam War,1245285779 +32298,1265,alternate reality,1245734498 +32298,1265,imdb top 250,1245734527 +32298,1265,one day,1246581573 +32298,1265,small town,1207566692 +32298,1265,time loop,1246190548 +32298,1265,time travel,1245060059 +32298,1265,weather reporter as protagonist,1245060055 +32298,1266,imdb top 250,1246483862 +32298,1267,assassin,1245056287 +32298,1267,based on a book,1218252762 +32298,1267,brainwashing,1246483260 +32298,1267,imdb top 250,1246483269 +32298,1267,politics,1246483276 +32298,1267,remade,1218252762 +32298,1267,US President,1246483298 +32298,1268,censorship,1245499661 +32298,1268,high school,1245231851 +32298,1268,nudity (topless),1400283276 +32298,1268,pirate radio,1245231788 +32298,1268,radio,1245231846 +32298,1268,rock and roll,1198458545 +32298,1268,school drama,1245833876 +32298,1268,suicide,1245231838 +32298,1269,based on a play,1282447630 +32298,1270,1950s,1244883395 +32298,1270,alternate reality,1245278988 +32298,1270,cliffhanger,1235639623 +32298,1270,FISH OUT OF WATER,1244891270 +32298,1270,high school,1196249499 +32298,1270,imdb top 250,1246448848 +32298,1270,inventor,1380940136 +32298,1270,love triangles,1406120194 +32298,1270,nostalgic,1246981566 +32298,1270,Saturn Award (Best Special Effects),1244891261 +32298,1270,time loop,1406120192 +32298,1270,time travel,1241005436 +32298,1271,based on a book,1247584885 +32298,1272,biography,1246589291 +32298,1272,World War II,1246589311 +32298,1274,anime,1247210596 +32298,1274,dystopia,1315023795 +32298,1274,Japan,1254713363 +32298,1274,post-apocalyptic,1315023784 +32298,1275,franchise,1246584685 +32298,1275,immortality,1245832451 +32298,1275,nudity (topless),1400283889 +32298,1275,sword fight,1245293740 +32298,1276,imdb top 250,1247206467 +32298,1276,prison,1247206481 +32298,1278,black and white,1245833232 +32298,1278,monster,1245833248 +32298,1278,parody,1196670258 +32298,1279,episodic,1246392994 +32298,1279,multiple storylines,1246392981 +32298,1279,nocturnal,1246393012 +32298,1279,one day,1246393024 +32298,1280,1920s,1246745182 +32298,1280,China,1246745180 +32298,1280,polygamy,1246745178 +32298,1281,Adolf Hitler,1246749160 +32298,1281,amnesia,1246749167 +32298,1281,banned movie,1248154036 +32298,1281,black and white,1210473492 +32298,1281,controversial,1248154036 +32298,1281,imdb top 250,1246749186 +32298,1281,multiple roles,1246749230 +32298,1281,Nazis,1246749133 +32298,1281,satire,1246749123 +32298,1282,2D animation,1262764773 +32298,1282,classical music,1244925177 +32298,1283,imdb top 250,1248646765 +32298,1284,based on a book,1208404755 +32298,1284,imdb top 250,1248647024 +32298,1284,William Faulkner,1412980526 +32298,1285,black comedy,1338532325 +32298,1285,high school,1338532326 +32298,1285,serial killer,1245238626 +32298,1285,suicide,1338532338 +32298,1286,based on a book,1245396336 +32298,1286,playwright,1245396327 +32298,1286,Richard Matheson,1245396336 +32298,1287,imdb top 250,1260624731 +32298,1287,Roman empire,1244924827 +32298,1288,directorial debut,1207190398 +32298,1288,heavy metal,1263257127 +32298,1288,mockumentary,1263257130 +32298,1288,musicians,1379409368 +32298,1288,rock and roll,1263257140 +32298,1288,satire,1263257141 +32298,1289,environmental,1246596402 +32298,1289,nature,1246596402 +32298,1289,technology,1246596402 +32298,1290,teen,1247043900 +32298,1291,archaeology,1244889247 +32298,1291,Biblical,1244889243 +32298,1291,father and son,1244935143 +32298,1291,Nazis,1244935151 +32298,1292,politics,1246359227 +32298,1292,satire,1246359223 +32298,1292,television,1246749377 +32298,1292,watch the credits,1322123305 +32298,1293,biography,1243497176 +32298,1293,colonialism,1244971190 +32298,1293,imdb top 250,1246587986 +32298,1293,India,1243497173 +32298,1293,massacre,1246771418 +32298,1295,based on a book,1212189099 +32298,1295,nudity (full frontal),1400284841 +32298,1297,college,1245834495 +32298,1297,genius,1245834478 +32298,1297,military,1283383819 +32298,1297,nerds,1283383793 +32298,1297,science,1245834498 +32298,1298,drugs,1245118132 +32298,1298,nudity (topless),1400283857 +32298,1298,rock and roll,1195780445 +32298,1298,World War II,1245118134 +32298,1299,Cambodia,1245286191 +32298,1299,directorial debut,1207214254 +32298,1299,genocide,1245286195 +32298,1299,journalism,1245286223 +32298,1299,true story,1245286214 +32298,1301,far future,1198459716 +32298,1301,space,1248646914 +32298,1302,baseball,1248647110 +32298,1302,sports,1248647113 +32298,1303,based on a book,1369992304 +32298,1303,colonialism,1244971401 +32298,1303,India,1244971397 +32298,1303,Rudyard Kipling,1244971389 +32298,1304,Bolivia,1247206392 +32298,1304,fugitive,1247206392 +32298,1304,heist,1247206392 +32298,1304,imdb top 250,1247206352 +32298,1304,Latin America,1248164387 +32298,1304,South America,1247206392 +32298,1306,not available from Netflix,1246254320 +32298,1307,Bechdel Test:Fail,1386592694 +32298,1307,jazz,1240892560 +32298,1310,business,1308069399 +32298,1310,musicians,1379411119 +32298,1310,punk rock,1308069277 +32298,1310,rock and roll,1308069325 +32298,1310,Seattle,1308069270 +32298,1311,imdb bottom 100,1195616984 +32298,1312,nudity (full frontal),1399718177 +32298,1320,aliens,1245451314 +32298,1320,franchise,1245451328 +32298,1320,prison,1245451318 +32298,1321,werewolves,1246445307 +32298,1324,nudity (topless),1405124525 +32298,1325,nudity (topless),1407227163 +32298,1327,haunted house,1246121275 +32298,1327,nudity (topless),1400283267 +32298,1327,remade,1246121281 +32298,1333,animal attacks,1246223306 +32298,1333,animals,1262522025 +32298,1333,birds,1262521950 +32298,1334,campy,1247207949 +32298,1339,based on a book,1207396314 +32298,1339,nudity (topless),1400283901 +32298,1339,vampires,1246444631 +32298,1342,nudity (topless),1400283570 +32298,1343,corruption,1246745827 +32298,1343,lawyers,1246745827 +32298,1344,lawyers,1245290235 +32298,1344,revenge,1245290235 +32298,1345,bad parents,1246400777 +32298,1345,based on a book,1193547326 +32298,1345,high school,1244887320 +32298,1345,nudity (full frontal),1400285291 +32298,1345,religion,1244887306 +32298,1345,Stephen King,1244887257 +32298,1345,visceral,1246777514 +32298,1346,erotic,1246573378 +32298,1346,Louisiana,1246573390 +32298,1346,New Orleans,1246573387 +32298,1346,nudity (full frontal),1400285544 +32298,1347,franchise,1244886815 +32298,1348,vampires,1248646670 +32298,1349,Italy,1422638569 +32298,1349,nudity (topless),1407015097 +32298,1349,vampires,1422638568 +32298,1350,based on a book,1233483892 +32298,1350,Biblical,1248326609 +32298,1350,Christianity,1233483892 +32298,1350,religion,1248326614 +32298,1354,disability,1245811585 +32298,1354,nudity (full frontal),1400284743 +32298,1354,religion,1245237527 +32298,1356,aliens,1250129881 +32298,1356,based on a TV show,1250129881 +32298,1356,cyborgs,1384661257 +32298,1356,earnest,1270969552 +32298,1356,first contact,1245835386 +32298,1356,franchise,1245835395 +32298,1356,post-apocalyptic,1354768154 +32298,1356,Saturn Award (Best Supporting Actress),1395813455 +32298,1356,space,1192620348 +32298,1356,Star Trek,1245835391 +32298,1356,time travel,1244769962 +32298,1357,Australia,1246590748 +32298,1357,biography,1246590744 +32298,1357,classical music,1360569857 +32298,1357,mental illness,1387128411 +32298,1357,musicians,1387128432 +32298,1357,true story,1244657775 +32298,1358,directorial debut,1207190867 +32298,1358,disability,1246387897 +32298,1358,mental illness,1246387897 +32298,1358,small town,1207566555 +32298,1360,nudity (full frontal),1400287226 +32298,1366,allegory,1246452627 +32298,1366,satire,1246452633 +32298,1367,based on a book,1280556399 +32298,1367,Disney,1280556333 +32298,1367,dogs,1249526146 +32298,1367,remake,1249526141 +32298,1370,airport,1247042467 +32298,1370,terrorism,1195969411 +32298,1371,aliens,1250130153 +32298,1371,based on a TV show,1250130145 +32298,1371,franchise,1250130151 +32298,1371,space,1250130145 +32298,1371,Star Trek,1250130136 +32298,1371,wormhole,1395089221 +32298,1372,aliens,1250130013 +32298,1372,based on a TV show,1250129939 +32298,1372,far future,1198459019 +32298,1372,franchise,1250129989 +32298,1372,space,1192620319 +32298,1372,Star Trek,1250129992 +32298,1373,aliens,1250130206 +32298,1373,based on a TV show,1250130206 +32298,1373,franchise,1250130183 +32298,1373,space,1250130206 +32298,1373,Star Trek,1250130171 +32298,1374,aliens,1250129858 +32298,1374,based on a TV show,1250129819 +32298,1374,brainwashing,1310012168 +32298,1374,far future,1198458848 +32298,1374,franchise,1250129829 +32298,1374,midlife crisis,1310012165 +32298,1374,space,1250129825 +32298,1374,Star Trek,1250129822 +32298,1375,aliens,1250130090 +32298,1375,based on a TV show,1250130081 +32298,1375,far future,1198458893 +32298,1375,franchise,1250130070 +32298,1375,Star Trek,1250130064 +32298,1376,based on a TV show,1250129848 +32298,1376,franchise,1245057909 +32298,1376,Star Trek,1245057904 +32298,1376,time travel,1245057902 +32298,1376,whales,1245057899 +32298,1377,Batman,1245913653 +32298,1377,comic book,1246578532 +32298,1377,DC Comics,1245913635 +32298,1377,double life,1246754810 +32298,1377,franchise,1245913629 +32298,1377,superhero,1245913631 +32298,1377,vigilante,1245913653 +32298,1379,nudity (rear),1400284277 +32298,1380,1950s,1247040331 +32298,1380,Bechdel Test:Pass,1408338177 +32298,1380,Broadway,1245375936 +32298,1380,cars,1247040358 +32298,1380,directorial debut,1207195030 +32298,1380,high school,1245375919 +32298,1380,rock and roll,1243804444 +32298,1380,underrated,1406713925 +32298,1381,bad acting,1244767599 +32298,1381,high school,1312143410 +32298,1381,sequel,1312143412 +32298,1382,nudity (topless),1400274964 +32298,1385,nudity (topless),1408997936 +32298,1387,animal attacks,1262522074 +32298,1387,animals,1262522070 +32298,1387,franchise,1246223270 +32298,1387,imdb top 250,1245224762 +32298,1387,monster,1245224760 +32298,1387,ocean,1245224755 +32298,1387,shark,1245224752 +32298,1387,visceral,1246777276 +32298,1388,animal attacks,1262522101 +32298,1388,animals,1262522123 +32298,1388,shark,1262522115 +32298,1389,animal attacks,1262522159 +32298,1389,animals,1262522159 +32298,1389,based on a book,1245396464 +32298,1389,Richard Matheson,1245396464 +32298,1389,shark,1262522169 +32298,1391,aliens,1245449904 +32298,1391,ensemble cast,1245449902 +32298,1391,parody,1370174424 +32298,1392,abortion,1308141014 +32298,1392,directorial debut,1207199675 +32298,1392,pregnancy,1308141014 +32298,1393,sports,1247040545 +32298,1394,Arizona,1219722133 +32298,1394,kidnapping,1244948990 +32298,1395,1960s,1249089281 +32298,1396,computers,1390205016 +32298,1396,hackers,1248507294 +32298,1396,heist,1390205973 +32298,1401,racism,1195739211 +32298,1401,true story,1247214597 +32298,1405,2D animation,1262765250 +32298,1405,based on a TV show,1246255196 +32298,1405,buddy movie,1246255184 +32298,1405,directorial debut,1207191376 +32298,1405,MTV,1247051879 +32298,1405,road trip,1245287489 +32298,1407,high school,1244886795 +32298,1407,parody,1295637615 +32298,1409,angel,1245735637 +32298,1411,based on a play,1206782462 +32298,1411,Shakespeare,1248984255 +32298,1412,directorial debut,1207214067 +32298,1413,writers,1301851442 +32298,1416,Andrew Lloyd Webber,1245402228 +32298,1416,Argentina,1245376749 +32298,1416,based on a play,1245376712 +32298,1416,Broadway,1245402145 +32298,1416,history,1245376699 +32298,1416,Latin America,1248165315 +32298,1416,South America,1245376716 +32298,1416,true story,1245376705 +32298,1419,Australia,1213606960 +32298,1419,nudity (full frontal),1400284733 +32298,1421,musicians,1379410256 +32298,1421,rock and roll,1231380174 +32298,1427,aviation,1247041378 +32298,1427,serial killer,1247041378 +32298,1430,easily confused with other movie(s) (title),1318649099 +32298,1437,based on a book,1266391623 +32298,1437,Ian McEwan,1266391623 +32298,1438,natural disaster,1245151704 +32298,1438,volcano,1245151701 +32298,1441,mental illness,1246492734 +32298,1441,siblings,1246492732 +32298,1446,Soviet Union,1258167053 +32298,1447,nude black women,1250140558 +32298,1447,nudity (topless),1400282037 +32298,1449,deadpan,1244882244 +32298,1449,mockumentary,1307889320 +32298,1449,overrated,1387456081 +32298,1449,quirky,1344502699 +32298,1449,satire,1245293881 +32298,1449,small town,1244882222 +32298,1449,theater,1307889278 +32298,1454,based on a play,1210613486 +32298,1455,nudity (topless),1403942436 +32298,1458,based on a book,1420191469 +32298,1458,Elmore Leonard,1420191469 +32298,1461,Las Vegas,1210652572 +32298,1461,tourists,1245450999 +32298,1464,nudity (topless),1400283517 +32298,1466,FBI,1246577415 +32298,1466,Mafia,1246577405 +32298,1466,police,1246577415 +32298,1466,true story,1246577379 +32298,1466,undercover cop,1246577395 +32298,1474,fish out of water,1250291019 +32298,1475,16th century,1246521841 +32298,1475,India,1246521841 +32298,1475,nudity (full frontal),1400285398 +32298,1475,royalty,1246760866 +32298,1476,biography,1310281039 +32298,1476,nudity (full frontal),1400285137 +32298,1476,radio,1310281023 +32298,1476,true story,1310281020 +32298,1479,based on a TV show,1384583045 +32298,1479,espionage,1350024444 +32298,1479,Russia,1350024486 +32298,1479,unrealistic,1350024693 +32298,1480,based on a book,1255064681 +32298,1483,based on a book,1211422483 +32298,1483,cars,1246423858 +32298,1483,fetish,1246423847 +32298,1483,J. G. Ballard,1387768048 +32298,1483,nudity (full frontal),1400285413 +32298,1483,sexualized violence,1246423873 +32298,1484,directorial debut,1207211224 +32298,1485,courtroom,1245289460 +32298,1485,lawyers,1245289473 +32298,1487,biography,1195731312 +32298,1487,business,1246358406 +32298,1487,latin music,1255663797 +32298,1487,musicians,1379411000 +32298,1487,true story,1244672066 +32298,1487,vocalists,1246734126 +32298,1496,based on a book,1238122440 +32298,1496,Leo Tolstoy,1238122449 +32298,1496,Russia,1238122435 +32298,1498,nudity (topless),1400282751 +32298,1499,animals,1262522256 +32298,1499,Brazil,1247652383 +32298,1499,Latin America,1248165558 +32298,1499,snakes,1247652331 +32298,1499,South America,1247652383 +32298,1500,assassin,1360482791 +32298,1500,great soundtrack,1360482801 +32298,1500,high school,1360482875 +32298,1500,reunion,1360482878 +32298,1501,nudity (topless),1400281067 +32298,1502,nudity (topless),1400276902 +32298,1509,coming of age,1245063857 +32298,1509,drugs,1245063851 +32298,1509,homophobia,1245063888 +32298,1509,lesbian,1245063835 +32298,1509,New York City,1244404966 +32298,1509,queer,1255253826 +32298,1513,high school,1247208821 +32298,1513,reunion,1360483068 +32298,1515,natural disaster,1246712179 +32298,1515,volcano,1246712179 +32298,1517,James Bond,1246471531 +32298,1517,multiple roles,1246753520 +32298,1517,parody,1245063410 +32298,1517,watch the credits,1205460575 +32298,1527,aliens,1262405747 +32298,1527,business is the antagonist,1394988101 +32298,1527,campy,1240910858 +32298,1527,frantic,1393552711 +32298,1527,parody,1240890086 +32298,1527,redhead,1240910882 +32298,1529,gay,1255253042 +32298,1544,bad plot,1344428413 +32298,1544,based on a book,1244927485 +32298,1544,dinosaurs,1244885304 +32298,1544,franchise,1245117445 +32298,1544,Michael Crichton,1244927491 +32298,1552,aviation,1245919781 +32298,1554,based on a book,1246600825 +32298,1554,fetish,1246600831 +32298,1554,interracial romance,1259735272 +32298,1554,male nudity,1246600818 +32298,1554,nudity (full frontal),1400284974 +32298,1556,boat,1250052082 +32298,1556,sequel,1245727424 +32298,1562,bad acting,1346123025 +32298,1562,Batman,1245913706 +32298,1562,comic book,1246580140 +32298,1562,DC Comics,1245913714 +32298,1562,double life,1246754744 +32298,1562,franchise,1245913746 +32298,1562,superhero,1245913747 +32298,1562,vigilante,1245913750 +32298,1566,Disney,1370317810 +32298,1566,Greek mythology,1370317806 +32298,1569,love triangles,1246600955 +32298,1569,wedding,1348827241 +32298,1572,based on a book,1223268039 +32298,1572,movie business,1267989827 +32298,1572,nudity (rear),1400284228 +32298,1572,writers,1267989827 +32298,1580,aliens,1246189866 +32298,1580,buddy movie,1246255241 +32298,1580,comic book,1246580514 +32298,1580,conspiracy,1253269082 +32298,1584,aliens,1244884404 +32298,1584,astronomy,1240889865 +32298,1584,based on a book,1242204104 +32298,1584,Caribbean,1246570039 +32298,1584,Carl Sagan,1282126812 +32298,1584,earnest,1282126784 +32298,1584,first contact,1246246735 +32298,1584,inspirational,1240889869 +32298,1584,irreligion,1249050307 +32298,1584,Latin America,1248165634 +32298,1584,long,1395368476 +32298,1584,New Mexico,1245290403 +32298,1584,politics,1321098926 +32298,1584,Puerto Rico,1245290403 +32298,1584,radio,1248305470 +32298,1584,religion,1325574014 +32298,1584,science,1240889871 +32298,1584,slow,1325574024 +32298,1584,space,1240889871 +32298,1584,wormhole,1395088902 +32298,1585,nudity (topless),1400281063 +32298,1586,military,1249524448 +32298,1586,nudity (rear),1400284280 +32298,1587,nudity (topless),1400283815 +32298,1589,corruption,1245279772 +32298,1589,cover up,1245539119 +32298,1589,police,1245539111 +32298,1589,police corruption,1241715975 +32298,1589,secrets,1245740255 +32298,1589,small town,1245539116 +32298,1590,nudity (topless),1400283819 +32298,1590,space,1258970719 +32298,1590,wormhole,1395089327 +32298,1591,comic book,1246581310 +32298,1594,sexism,1259624497 +32298,1596,nudity (topless),1400282115 +32298,1602,based on a TV show,1250130848 +32298,1603,bugs,1247216043 +32298,1608,america porn,1362400812 +32298,1608,aviation,1245919774 +32298,1608,terrorism,1245234286 +32298,1608,US President,1245234282 +32298,1610,based on a book,1197717364 +32298,1610,Cold War,1256519173 +32298,1610,ocean,1245225746 +32298,1610,submarine,1245225743 +32298,1610,Tom Clancy,1245225769 +32298,1611,nudity (topless),1400283166 +32298,1614,queer,1310509025 +32298,1615,David Mamet,1232937123 +32298,1616,directorial debut,1207199835 +32298,1617,nudity (topless),1400284053 +32298,1619,based on a book,1249049073 +32298,1619,Buddhism,1249049448 +32298,1619,China,1249049091 +32298,1619,mountain climbing,1249049102 +32298,1619,mountains,1249049406 +32298,1619,scenic,1249049406 +32298,1619,Tibet,1249049087 +32298,1619,true story,1249049073 +32298,1620,based on a book,1197784803 +32298,1625,unrealistic,1338435811 +32298,1631,nudity (topless),1401959010 +32298,1635,based on a book,1320985371 +32298,1635,wintry,1390524838 +32298,1636,nudity (topless),1402943675 +32298,1639,lesbian,1245448307 +32298,1639,view askew,1252803710 +32298,1640,nude black women,1250128943 +32298,1640,nudity (topless),1400282092 +32298,1641,England,1283199358 +32298,1641,strippers,1283199360 +32298,1643,England,1420718216 +32298,1643,royalty,1246757221 +32298,1645,Christianity,1396007456 +32298,1645,deal with the devil,1245735829 +32298,1645,demons,1245735826 +32298,1645,devil,1245392704 +32298,1645,lawyers,1245290038 +32298,1645,nudity (full frontal),1400284682 +32298,1645,religion,1245289921 +32298,1645,surreal,1245735874 +32298,1645,temptation,1245735849 +32298,1648,based on a play,1247210063 +32298,1648,black comedy,1370328087 +32298,1648,incest,1370328084 +32298,1648,mental illness,1247210010 +32298,1653,biology,1240895677 +32298,1653,directorial debut,1208571596 +32298,1653,dystopia,1240895681 +32298,1653,genetics,1240895688 +32298,1653,inspirational,1347012416 +32298,1653,intelligent,1386642184 +32298,1653,suicide,1282974500 +32298,1655,based on a book,1223701180 +32298,1655,Dean Koontz,1223701180 +32298,1656,based on a book,1369992462 +32298,1656,Joseph Conrad,1260423490 +32298,1659,coming of age,1248305051 +32298,1659,Manhattan,1248305051 +32298,1659,New York City,1248305051 +32298,1660,Louisiana,1233234299 +32298,1663,military,1246298150 +32298,1663,nudity (topless),1400283950 +32298,1665,based on a TV show,1259484637 +32298,1668,nudity (topless),1400281645 +32298,1669,Argentina,1379411650 +32298,1669,Buenos Aires,1379411650 +32298,1669,dance,1379411650 +32298,1669,Latin America,1379411650 +32298,1669,South America,1379411650 +32298,1672,based on a book,1162264285 +32298,1672,business,1323387333 +32298,1672,corruption,1323387333 +32298,1672,John Grisham,1323387286 +32298,1672,lawyers,1323387333 +32298,1673,drugs,1244888585 +32298,1673,ensemble cast,1244888580 +32298,1673,great acting,1392386107 +32298,1673,movie business,1240889692 +32298,1673,multiple storylines,1245450001 +32298,1673,nudity (full frontal),1400284462 +32298,1673,pornography,1240889690 +32298,1674,nudity (topless),1400284140 +32298,1674,police,1246695707 +32298,1674,undercover cop,1246695701 +32298,1675,nudity (topless),1407106194 +32298,1676,aliens,1246247539 +32298,1676,based on a book,1273486548 +32298,1676,bugs,1247216223 +32298,1676,fascism,1273486556 +32298,1676,military,1273486527 +32298,1676,nudity (topless),1400284110 +32298,1676,Robert Heinlein,1273486547 +32298,1676,satire,1273486532 +32298,1676,space,1273486543 +32298,1678,based on a book,1214193496 +32298,1679,imdb bottom 100,1195617099 +32298,1680,alternate reality,1245278735 +32298,1680,subway,1245278399 +32298,1680,trains,1245278404 +32298,1681,bad acting,1246574462 +32298,1681,martial arts,1240894622 +32298,1681,video game adaptation,1246574439 +32298,1682,alternate reality,1245739547 +32298,1682,island,1245739377 +32298,1682,reality TV,1246746882 +32298,1682,secrets,1245739288 +32298,1682,slavery,1244770572 +32298,1682,small town,1246392720 +32298,1682,television,1245739297 +32298,1682,utopia,1244770565 +32298,1682,voyeurism,1245057355 +32298,1683,nudity (topless),1400282952 +32298,1686,China,1234486931 +32298,1687,assassin,1351150113 +32298,1687,bad plot,1361694290 +32298,1687,remake,1361694304 +32298,1687,revenge,1361694204 +32298,1687,twist ending,1361694290 +32298,1690,aliens,1246473491 +32298,1690,franchise,1246473502 +32298,1690,space,1246473513 +32298,1693,courtroom,1248862038 +32298,1693,rebellion,1248862738 +32298,1693,seafaring,1248861828 +32298,1693,slavery,1246777856 +32298,1693,true story,1248862038 +32298,1694,Christianity,1270870727 +32298,1694,fugitive,1259881738 +32298,1694,religion,1259881699 +32298,1695,17th century,1245053063 +32298,1695,artist,1246598144 +32298,1695,painter,1245053174 +32298,1695,true story,1245053072 +32298,1696,based on a play,1254563660 +32298,1696,concentration camp,1254563690 +32298,1696,gay,1255253994 +32298,1696,Holocaust,1254563690 +32298,1696,homophobia,1255254000 +32298,1696,Nazis,1254563690 +32298,1696,World War II,1254563690 +32298,1699,insanity,1246492120 +32298,1699,mental illness,1246492120 +32298,1699,suicide,1246492120 +32298,1701,writers,1247121095 +32298,1704,boston,1244934746 +32298,1704,college,1195731830 +32298,1704,genius,1245834396 +32298,1704,mathematics,1243497689 +32298,1704,private school,1247047327 +32298,1704,psychology,1244892725 +32298,1704,school drama,1195731690 +32298,1713,directorial debut,1207396777 +32298,1717,parody,1247043460 +32298,1717,sequel,1247043429 +32298,1717,serial killer,1247043457 +32298,1719,based on a book,1218620290 +32298,1719,Canada,1246102084 +32298,1719,nudity (full frontal),1400284449 +32298,1719,small town,1218620290 +32298,1721,big budget,1244889671 +32298,1721,bittersweet,1246495307 +32298,1721,chick flick,1248086549 +32298,1721,history,1246224678 +32298,1721,natural disaster,1247040410 +32298,1721,nudity (topless),1400284003 +32298,1721,ocean,1244936474 +32298,1721,seafaring,1248862230 +32298,1721,sentimental,1244889738 +32298,1721,shipwreck,1244889660 +32298,1721,tear jerker,1244890191 +32298,1722,franchise,1196517876 +32298,1722,James Bond,1246471981 +32298,1726,based on a book,1220073834 +32298,1726,nudity (topless),1400283247 +32298,1726,post-apocalyptic,1247471964 +32298,1729,based on a book,1420191525 +32298,1729,Elmore Leonard,1420191528 +32298,1729,interracial romance,1245563958 +32298,1729,nudity (rear),1400284216 +32298,1730,biography,1247219587 +32298,1730,Buddhism,1247219587 +32298,1730,colonialism,1247219982 +32298,1732,black comedy,1368869923 +32298,1732,cult film,1246453524 +32298,1732,drugs,1246748614 +32298,1732,imdb top 250,1246451237 +32298,1732,mistaken identity,1368869930 +32298,1732,nudity (full frontal),1400285283 +32298,1734,queer,1246618219 +32298,1735,based on a book,1207666259 +32298,1735,Charles Dickens,1404476636 +32298,1739,imdb bottom 100,1240889351 +32298,1744,fire,1413519431 +32298,1744,firefighters,1413519431 +32298,1747,based on a book,1245500721 +32298,1747,corruption,1245500709 +32298,1747,cover up,1245500727 +32298,1747,David Mamet,1232936989 +32298,1747,election,1245537763 +32298,1747,politics,1245537753 +32298,1747,satire,1244888868 +32298,1747,secrets,1245741093 +32298,1747,US President,1244888859 +32298,1748,aliens,1244974552 +32298,1748,amnesia,1244974535 +32298,1748,creepy,1306626565 +32298,1748,nocturnal,1195734715 +32298,1748,nudity (topless),1400283883 +32298,1748,steampunk,1231680050 +32298,1748,stylized,1245390202 +32298,1748,surreal,1309242173 +32298,1749,nudity (topless),1400280084 +32298,1753,drugs,1294614231 +32298,1753,marijuana,1294614230 +32298,1753,nudity (topless),1403945429 +32298,1753,short,1403945479 +32298,1754,religion,1195554581 +32298,1757,assassin,1246482804 +32298,1757,Hong Kong,1246482827 +32298,1760,vocalists,1246733838 +32298,1769,directorial debut,1207212539 +32298,1770,based on a book,1190715861 +32298,1770,jazz,1240889571 +32298,1770,nudity (topless),1400281046 +32298,1772,rhythm & blues,1343160647 +32298,1772,sequel,1206416856 +32298,1777,vocalists,1246735021 +32298,1779,based on a book,1162264537 +32298,1779,first contact,1246583191 +32298,1779,Michael Crichton,1246583156 +32298,1779,time travel,1246583180 +32298,1779,underwater,1246583173 +32298,1780,biography,1246402157 +32298,1780,writers,1246598256 +32298,1784,homophobia,1245293263 +32298,1788,easily confused with other movie(s) (title),1387278250 +32298,1791,easily confused with other movie(s) (title),1349922620 +32298,1791,nudity (topless),1400282099 +32298,1797,mountain climbing,1205299863 +32298,1797,mountains,1205299854 +32298,1799,black comedy,1249521291 +32298,1799,kidnapping,1244714869 +32298,1799,mafia,1249521294 +32298,1799,twist ending,1256626511 +32298,1801,multiple roles,1246752352 +32298,1801,remake,1246752371 +32298,1801,royalty,1246752409 +32298,1804,trains,1207902899 +32298,1805,nudity (topless),1400283734 +32298,1809,police,1248078951 +32298,1809,terminal illness,1248078949 +32298,1810,based on a book,1245049758 +32298,1810,politics,1245049741 +32298,1819,rock and roll,1404658438 +32298,1827,business,1315717969 +32298,1827,politics,1315717964 +32298,1829,China,1246667679 +32298,1829,Hong Kong,1246667662 +32298,1831,based on a TV show,1250130360 +32298,1831,space,1192619811 +32298,1834,con artists,1244946324 +32298,1834,David Mamet,1232937100 +32298,1835,angel,1245735725 +32298,1835,remake,1245735725 +32298,1837,Neil Simon,1247748786 +32298,1840,basketball,1250851516 +32298,1840,corruption,1250852072 +32298,1840,nude black women,1250852038 +32298,1840,nudity (topless),1400282833 +32298,1840,sports,1250851518 +32298,1841,nudity (full frontal),1400285586 +32298,1844,nudity (topless),1400282010 +32298,1845,blackmail,1371114307 +32298,1845,directorial debut,1297651975 +32298,1849,comic strip,1246760023 +32298,1849,King Arthur,1246760023 +32298,1849,royalty,1246760023 +32298,1856,drugs,1244886227 +32298,1856,musicians,1379407780 +32298,1856,rock and roll,1244886252 +32298,1856,suicide,1244886229 +32298,1857,nudity (topless),1400280939 +32298,1862,nudity (full frontal),1400285798 +32298,1865,jazz,1245116407 +32298,1865,musicians,1392527628 +32298,1867,Edgar Rice Burroughs,1245744403 +32298,1873,based on a book,1248167281 +32298,1873,Victor Hugo,1248167298 +32298,1876,apocalypse,1245392557 +32298,1876,astronomy,1240912654 +32298,1876,natural disaster,1245392562 +32298,1876,science,1240889937 +32298,1876,space,1187605368 +32298,1876,underrated,1385389817 +32298,1880,nudity (topless),1400281657 +32298,1881,royalty,1246757458 +32298,1883,hip hop,1254634371 +32298,1883,politics,1246486166 +32298,1884,based on a book,1351240891 +32298,1884,desert,1320279902 +32298,1884,drugs,1351240797 +32298,1884,hotel,1351240884 +32298,1884,Hunter S. Thompson,1351240893 +32298,1884,road trip,1351240716 +32298,1884,surreal,1351242178 +32298,1885,love triangles,1246047710 +32298,1885,pregnancy,1246047834 +32298,1885,teen pregnancy,1246048402 +32298,1889,nudity (topless),1400282830 +32298,1889,police,1245389385 +32298,1892,based on a play,1209544621 +32298,1892,remake,1256704330 +32298,1894,island,1348576458 +32298,1895,high school,1247043084 +32298,1895,teen,1247043084 +32298,1896,based on a book,1320205802 +32298,1896,nudity (topless),1400281319 +32298,1896,satire,1320205802 +32298,1897,lesbian,1248692129 +32298,1897,nudity (topless),1400282792 +32298,1900,Iran,1245538724 +32298,1900,Middle East,1245538760 +32298,1900,siblings,1245538747 +32298,1900,Tehran,1245538722 +32298,1904,writers,1248508743 +32298,1907,China,1246620301 +32298,1907,cross dressing,1246620272 +32298,1907,cross dressing women,1246620272 +32298,1907,Disney,1246942001 +32298,1907,impostor,1246621824 +32298,1907,military,1269162385 +32298,1907,sexism,1269162385 +32298,1909,aliens,1246403191 +32298,1909,Antarctica,1244671286 +32298,1909,based on a TV show,1247290480 +32298,1909,bugs,1247290470 +32298,1909,conspiracy,1344417840 +32298,1909,disease,1344417823 +32298,1909,FBI,1197804410 +32298,1909,polar,1368313342 +32298,1909,wintry,1400879804 +32298,1912,based on a book,1246888984 +32298,1912,based on book,1420191548 +32298,1912,Elmore Leonard,1420191548 +32298,1912,kidnapping,1379128941 +32298,1912,prison escape,1246888984 +32298,1912,unrealistic,1379128925 +32298,1914,directorial debut,1207190828 +32298,1914,native americans,1246313639 +32298,1916,directorial debut,1207216032 +32298,1916,kidnapping,1258969073 +32298,1917,Americans save the world,1392436613 +32298,1917,apocalypse,1245392400 +32298,1917,audience intelligence underestimated,1384105554 +32298,1917,bad science,1245051480 +32298,1917,big budget,1244890583 +32298,1917,comet,1262765090 +32298,1917,natural disaster,1245392413 +32298,1917,space,1244890586 +32298,1917,unrealistic,1240889532 +32298,1918,big budget,1196516994 +32298,1918,franchise,1361581138 +32298,1918,police,1246102610 +32298,1919,based on a book,1247045130 +32298,1919,boarding school,1247045126 +32298,1919,private school,1247045133 +32298,1921,bad science,1253786856 +32298,1921,black and white,1245151135 +32298,1921,directorial debut,1207190081 +32298,1921,insanity,1246493134 +32298,1921,Judaism,1253786713 +32298,1921,low budget,1245151115 +32298,1921,mathematics,1245151110 +32298,1921,mental illness,1245151123 +32298,1921,New York City,1250659869 +32298,1921,religion,1253786706 +32298,1921,stock market,1246493166 +32298,1921,stylized,1245390248 +32298,1923,crude humor,1250675926 +32298,1923,watch the credits,1381483494 +32298,1924,aliens,1247130960 +32298,1924,cult film,1247130911 +32298,1927,based on a book,1227823798 +32298,1927,World War I,1245279338 +32298,1930,based on a play,1226744899 +32298,1930,Noel Coward,1226744905 +32298,1940,anti-Semitism,1249525358 +32298,1940,Judaism,1249525370 +32298,1940,religion,1249525373 +32298,1941,based on a play,1206924946 +32298,1941,Shakespeare,1206924946 +32298,1945,business,1248262938 +32298,1945,corruption,1248262938 +32298,1945,gangsters,1248262938 +32298,1945,imdb top 250,1248262795 +32298,1945,labor unions,1248262938 +32298,1947,based on a play,1243333686 +32298,1947,Broadway,1246484216 +32298,1947,dance,1379411354 +32298,1947,gangsters,1246484195 +32298,1947,latin music,1394596600 +32298,1947,New York City,1197715885 +32298,1947,Stephen Sondheim,1243333686 +32298,1950,racism,1245232418 +32298,1951,based on a book,1246400173 +32298,1951,Broadway,1246400153 +32298,1951,Charles Dickens,1246400186 +32298,1952,controversial,1248145031 +32298,1952,New York City,1246491137 +32298,1952,prostitution,1246491126 +32298,1953,car chase,1245226968 +32298,1953,drugs,1245226970 +32298,1953,police,1245226975 +32298,1954,boxing,1247211150 +32298,1954,franchise,1247211156 +32298,1954,sports,1247211152 +32298,1955,divorce,1246672140 +32298,1955,nudity (topless),1400283664 +32298,1958,terminal illness,1247211627 +32298,1959,Africa,1259882673 +32298,1959,based on a book,1244292660 +32298,1960,biography,1246761123 +32298,1960,China,1246761123 +32298,1960,communism,1246761122 +32298,1960,royalty,1246761121 +32298,1961,autism,1245280268 +32298,1961,disability,1245539464 +32298,1961,mental illness,1198461166 +32298,1961,road trip,1245280299 +32298,1961,siblings,1245539448 +32298,1962,aging,1247584950 +32298,1962,based on a play,1247585085 +32298,1962,Oscar (Best Picture),1386223446 +32298,1965,black comedy,1349076212 +32298,1965,car chase,1349076270 +32298,1965,cars,1349076262 +32298,1965,nudity (topless),1400283851 +32298,1966,Manhattan,1367379057 +32298,1966,New York City,1367379059 +32298,1966,urbane,1370172830 +32298,1967,Jim Henson,1243813416 +32298,1967,maze,1240911834 +32298,1967,muppets,1244892104 +32298,1968,1980s,1245293327 +32298,1968,Brat Pack,1246892571 +32298,1968,coming of age,1248085566 +32298,1968,high school,1245293317 +32298,1968,one day,1248085626 +32298,1968,school drama,1245833476 +32298,1968,teacher,1245377325 +32298,1968,teen,1248085582 +32298,1971,franchise,1246734466 +32298,1971,nudity (topless),1400282997 +32298,1974,franchise,1247214480 +32298,1974,low budget,1391751546 +32298,1974,serial killer,1247214495 +32298,1977,nudity (topless),1407224897 +32298,1978,franchise,1407224982 +32298,1978,nudity (topless),1407224979 +32298,1980,franchise,1407097807 +32298,1980,nudity (topless),1407097803 +32298,1982,acting debut,1404625713 +32298,1982,franchise,1247214362 +32298,1982,low budget,1391751051 +32298,1982,nudity (topless),1400283854 +32298,1982,remade,1247214356 +32298,1982,serial killer,1247214352 +32298,1983,franchise,1248255536 +32298,1983,Halloween,1248255530 +32298,1984,franchise,1248255604 +32298,1984,Halloween,1248255631 +32298,1985,franchise,1248255813 +32298,1986,franchise,1248255841 +32298,1986,Halloween,1248255839 +32298,1994,ghosts,1245233926 +32298,1994,haunted house,1245233988 +32298,1996,ghosts,1246734781 +32298,1997,banned movie,1248140143 +32298,1997,based on a book,1222481573 +32298,1997,Catholicism,1248080536 +32298,1997,Christianity,1245226909 +32298,1997,controversial,1248140143 +32298,1997,exorcism,1245226911 +32298,1997,religion,1245226912 +32298,1998,franchise,1347959004 +32298,2000,buddy movie,1246255319 +32298,2000,franchise,1361581122 +32298,2000,police,1246255319 +32298,2001,franchise,1361581127 +32298,2001,nudity (topless),1400149047 +32298,2002,franchise,1361581132 +32298,2002,police,1246102320 +32298,2003,Christmas,1349070361 +32298,2003,claymation,1349070382 +32298,2003,small town,1349070372 +32298,2005,cave,1280768745 +32298,2005,treasure hunt,1246732239 +32298,2006,sword fight,1248155648 +32298,2007,Detroit,1248506729 +32298,2008,nudity (topless),1409364457 +32298,2009,dystopia,1394988588 +32298,2010,based on a book,1232164150 +32298,2010,black and white,1208767625 +32298,2010,imdb top 250,1245286362 +32298,2010,youtube,1398493658 +32298,2011,alternate reality,1245279011 +32298,2011,cliffhanger,1235639636 +32298,2011,fish out of water,1244891422 +32298,2011,multiple roles,1246752561 +32298,2011,sequels filmed simultaneously,1244763600 +32298,2011,time travel,1244763630 +32298,2012,alternate reality,1246448997 +32298,2012,fish out of water,1244891439 +32298,2012,multiple roles,1246752574 +32298,2012,sequels filmed simultaneously,1244763651 +32298,2012,steampunk,1244763647 +32298,2012,trains,1244763850 +32298,2013,ocean,1203547508 +32298,2013,shipwreck,1196514607 +32298,2014,being a kid again,1246591842 +32298,2014,child as adult,1246591696 +32298,2014,switching places,1245497841 +32298,2018,animals,1247207192 +32298,2018,Disney,1247207368 +32298,2018,talking animals,1247207386 +32298,2019,black and white,1204203518 +32298,2019,imdb top 250,1246489989 +32298,2019,Japan,1245057151 +32298,2020,based on a book,1248262355 +32298,2020,based on a play,1248261664 +32298,2020,nudity (topless),1400283739 +32298,2020,Paris,1248261764 +32298,2021,based on a book,1162264759 +32298,2021,desert,1247197767 +32298,2021,Frank Herbert,1195994640 +32298,2022,based on a book,1206248841 +32298,2022,Biblical,1246345849 +32298,2022,Christianity,1246345857 +32298,2022,controversial,1248141986 +32298,2022,Jesus Christ,1246345867 +32298,2022,nudity (topless),1400283306 +32298,2022,religion,1204609685 +32298,2023,1970s,1248077678 +32298,2023,gangsters,1248077591 +32298,2023,Mafia,1248077606 +32298,2023,New York City,1248077609 +32298,2024,nudity (topless),1407207127 +32298,2025,based on a book,1245736484 +32298,2025,erotic,1246595684 +32298,2025,kidnapping,1246595567 +32298,2025,May-December romance,1246595567 +32298,2025,temptation,1246595689 +32298,2026,high school,1382667430 +32298,2028,enormously long battle scene,1246098657 +32298,2028,France,1392436489 +32298,2028,history,1244889351 +32298,2028,imdb top 250,1245224692 +32298,2028,shaky camera,1347176632 +32298,2028,visceral,1246777588 +32298,2028,World War II,1244936097 +32298,2033,based on a book,1347350839 +32298,2034,Disney,1260071974 +32298,2034,mad scientist,1260071999 +32298,2034,robots,1260071986 +32298,2034,space,1260071976 +32298,2038,cats,1282519373 +32298,2038,Disney,1282519365 +32298,2038,talking animals,1282519312 +32298,2047,based on a book,1206316968 +32298,2047,Upton Sinclair,1206316968 +32298,2048,directorial debut,1207200917 +32298,2052,Halloween,1248255709 +32298,2052,witch,1248255668 +32298,2054,miniaturization,1384093651 +32298,2056,based on a book,1231680586 +32298,2056,Jules Verne,1231680586 +32298,2059,based on a book,1245498356 +32298,2059,Disney,1245498354 +32298,2059,mistaken identity,1245498332 +32298,2059,remake,1245498324 +32298,2059,switching places,1245498320 +32298,2059,twins,1245498325 +32298,2064,business,1245154491 +32298,2064,cars,1245154512 +32298,2064,directorial debut,1207199334 +32298,2064,General Motors,1245154504 +32298,2064,Michigan,1245154484 +32298,2067,based on a book,1197710245 +32298,2067,revolution,1245285823 +32298,2067,Russia,1245285817 +32298,2067,Russian revolution,1245285821 +32298,2071,AIDs,1245226199 +32298,2071,based on a book,1206217563 +32298,2071,history,1246617779 +32298,2071,queer,1246617804 +32298,2072,suburbia,1386241845 +32298,2074,nudity (full frontal),1400284987 +32298,2076,nudity (full frontal),1400285287 +32298,2076,surreal,1251280990 +32298,2078,based on a book,1244971498 +32298,2078,bears,1368313142 +32298,2078,Disney,1361685818 +32298,2078,great soundtrack,1361685835 +32298,2078,jungle,1361685851 +32298,2078,Rudyard Kipling,1244971498 +32298,2078,talking animals,1361685831 +32298,2080,animals,1247207037 +32298,2080,Disney,1247207043 +32298,2080,dogs,1247207046 +32298,2080,talking animals,1247207067 +32298,2081,2D animation,1262764795 +32298,2081,Disney,1387822322 +32298,2081,fish out of water,1244891374 +32298,2081,great soundtrack,1388847357 +32298,2081,mermaid,1204564092 +32298,2081,ocean,1197717038 +32298,2081,Oscar (Best Music - Original Score),1244845474 +32298,2081,Oscar (Best Music - Original Song),1244845461 +32298,2081,talking animals,1197788286 +32298,2082,hockey,1247216280 +32298,2082,sports,1247216281 +32298,2083,based on a book,1197788066 +32298,2083,based on a TV show,1402484724 +32298,2083,Charles Dickens,1207670991 +32298,2083,Christmas,1160651943 +32298,2083,franchise,1196554280 +32298,2083,Jim Henson,1245734079 +32298,2083,puppets,1350115966 +32298,2083,talking animals,1197788069 +32298,2085,animals,1247207126 +32298,2085,directorial debut,1207189966 +32298,2085,Disney,1247207133 +32298,2085,dogs,1247207142 +32298,2085,remade,1247207153 +32298,2087,2D animation,1262764852 +32298,2087,based on a play,1248087656 +32298,2087,Disney,1248087637 +32298,2087,island,1248087635 +32298,2087,J.M. Barrie,1204116426 +32298,2087,Peter Pan,1248087630 +32298,2087,pirates,1248087627 +32298,2088,animation remade as live action,1250131077 +32298,2088,comic strip,1250131088 +32298,2090,Disney,1361750754 +32298,2094,comic book,1246579865 +32298,2097,based on a book,1195612858 +32298,2097,Ray Bradbury,1189920078 +32298,2099,2D animation,1262765446 +32298,2099,based on a book,1262765446 +32298,2099,bears,1262765445 +32298,2099,Disney,1262765411 +32298,2099,rabbits,1262765445 +32298,2099,talking animals,1262765409 +32298,2100,mermaid,1245063190 +32298,2100,nudity (rear),1400284258 +32298,2104,based on a book,1212237079 +32298,2104,S.E. Hinton,1212237079 +32298,2105,alternate reality,1245278601 +32298,2105,computers,1246574352 +32298,2105,cyberpunk,1244767335 +32298,2105,hackers,1246574360 +32298,2105,technology,1246574364 +32298,2105,video games,1382082940 +32298,2105,virtual reality,1244767371 +32298,2107,franchise,1248255854 +32298,2107,Halloween,1248255890 +32298,2108,weather reporter as protagonist,1247219413 +32298,2109,biography,1370937151 +32298,2110,parody,1387428575 +32298,2112,nudity (topless),1400276971 +32298,2114,based on a book,1212236913 +32298,2115,archaeology,1245293600 +32298,2115,franchise,1245293608 +32298,2115,sequel,1245293621 +32298,2116,based on a book,1162261568 +32298,2116,Tolkien,1245450241 +32298,2117,based on a book,1162261942 +32298,2117,dystopia,1244933734 +32298,2117,fascism,1247649023 +32298,2117,George Orwell,1245391200 +32298,2117,nudity (full frontal),1400284850 +32298,2117,remake,1246576926 +32298,2117,subversive,1244933678 +32298,2118,based on a book,1162262823 +32298,2118,Stephen King,1246387683 +32298,2118,US President,1246583267 +32298,2120,based on a book,1162262730 +32298,2121,based on a book,1394187524 +32298,2121,dogs,1411451447 +32298,2121,Stephen King,1394187524 +32298,2122,based on a book,1369992530 +32298,2122,Nebraska,1317102958 +32298,2122,religion,1317102958 +32298,2122,small town,1317102958 +32298,2122,Stephen King,1317102844 +32298,2124,based on a TV show,1248255418 +32298,2124,directorial debut,1207986927 +32298,2124,Halloween,1248255385 +32298,2124,impostor,1245741944 +32298,2125,fairy tale,1413544271 +32298,2125,royalty,1246757505 +32298,2127,based on a book,1369992508 +32298,2127,Ian McEwan,1266391345 +32298,2127,nudity (topless),1400279448 +32298,2131,siblings,1248266016 +32298,2132,based on a play,1207663129 +32298,2132,directorial debut,1207663129 +32298,2133,babysitting,1246669035 +32298,2133,Chicago,1246669038 +32298,2133,great soundtrack,1394536633 +32298,2136,alter ego,1246756691 +32298,2136,double life,1246756691 +32298,2137,based on a book,1247211718 +32298,2137,bugs,1247216112 +32298,2137,E.B. White,1197604397 +32298,2137,spiders,1247216103 +32298,2137,talking animals,1247211712 +32298,2138,2D animation,1262764952 +32298,2138,based on a book,1245285332 +32298,2138,directorial debut,1207211801 +32298,2138,rabbits,1247290233 +32298,2138,talking animals,1196555257 +32298,2139,2D animation,1262764809 +32298,2139,based on a book,1206246947 +32298,2139,directorial debut,1207189510 +32298,2139,talking animals,1196555178 +32298,2140,Jim Henson,1245733969 +32298,2140,muppets,1300950443 +32298,2140,puppets,1300950447 +32298,2141,immigrants,1245278338 +32298,2143,fairy tale,1349049771 +32298,2143,forest,1349049769 +32298,2143,underrated,1406713890 +32298,2143,unicorns,1349049740 +32298,2144,1980s,1245150968 +32298,2144,Brat Pack,1246892606 +32298,2144,directorial debut,1207199238 +32298,2144,dysfunctional family,1347791088 +32298,2144,family gatherings,1245150953 +32298,2144,high school,1347791086 +32298,2144,nudity (topless),1400283937 +32298,2144,siblings,1245540090 +32298,2144,wedding,1246892626 +32298,2145,Brat Pack,1248611576 +32298,2145,high school,1245564495 +32298,2145,unrequited love,1245564489 +32298,2146,Brat Pack,1246892460 +32298,2147,based on a book,1368596108 +32298,2147,narrated,1368596103 +32298,2147,no dialogue,1368596100 +32298,2147,prehistoric,1368596132 +32298,2150,Africa,1375250866 +32298,2153,based on a TV show,1250130874 +32298,2160,based on a book,1209542801 +32298,2161,based on a book,1204199200 +32298,2161,dragons,1394788373 +32298,2163,parody,1208760649 +32298,2167,comic book,1246581425 +32298,2167,Marvel,1246581428 +32298,2167,vampires,1244770141 +32298,2174,alternate reality,1246454926 +32298,2174,claymation,1240889620 +32298,2174,ghosts,1245234076 +32298,2174,haunted house,1245234071 +32298,2174,latin music,1343790459 +32298,2174,miniaturization,1384093666 +32298,2174,surreal,1326259588 +32298,2174,whimsical,1343790239 +32298,2176,true story,1248261013 +32298,2186,black and white,1204200985 +32298,2186,imdb top 250,1246584995 +32298,2186,tennis,1358496307 +32298,2186,trains,1245057221 +32298,2191,based on a book,1197715271 +32298,2191,George Orwell,1245394015 +32298,2193,dragons,1394788702 +32298,2193,magic,1412908684 +32298,2193,talking animals,1412908727 +32298,2194,1920s,1246775379 +32298,2194,corruption,1245279858 +32298,2194,David Mamet,1387531437 +32298,2194,gangsters,1246484647 +32298,2194,Mafia,1248077115 +32298,2194,police,1245050884 +32298,2194,police corruption,1245279852 +32298,2194,Prohibition,1387531447 +32298,2197,nudity (topless),1400280691 +32298,2202,John Steinbeck,1197708577 +32298,2203,imdb top 250,1245567616 +32298,2203,serial killer,1245567595 +32298,2203,small town,1245567595 +32298,2203,trains,1245567595 +32298,2208,imdb top 250,1248646787 +32298,2210,based on a book,1245236223 +32298,2210,black and white,1245236239 +32298,2210,Joseph Conrad,1245236223 +32298,2211,based on a book,1245236545 +32298,2211,based on a play,1245236525 +32298,2213,classical music,1388804336 +32298,2213,musicians,1388804336 +32298,2225,based on a play,1226744980 +32298,2225,Noel Coward,1226744980 +32298,2225,remade,1226744980 +32298,2229,based on a book,1207886721 +32298,2229,directorial debut,1207130461 +32298,2229,not available from Netflix,1246893261 +32298,2230,based on a play,1388804202 +32298,2230,short,1343848392 +32298,2231,gambling,1348735251 +32298,2232,brutal,1382011348 +32298,2232,directorial debut,1207212628 +32298,2232,escape,1258707295 +32298,2232,intense,1246255053 +32298,2232,low budget,1361696277 +32298,2232,mathematics,1240911804 +32298,2232,maze,1240911806 +32298,2232,original,1395812687 +32298,2232,psychology,1241005210 +32298,2241,nudity (topless),1413188480 +32298,2243,journalism,1247632461 +32298,2243,television,1207395420 +32298,2245,business,1247909840 +32298,2245,nudity (topless),1400283684 +32298,2247,Mafia,1248978259 +32298,2247,nudity (topless),1400283240 +32298,2248,directorial debut,1208410152 +32298,2248,high school,1247043865 +32298,2248,teen,1247043868 +32298,2249,Mafia,1248078184 +32298,2253,business,1246393577 +32298,2253,military industrial complex,1245224368 +32298,2253,satire,1245224342 +32298,2253,surreal,1245224361 +32298,2255,nudity (topless),1400298270 +32298,2262,based on a play,1248978726 +32298,2262,Brat Pack,1248978667 +32298,2262,David Mamet,1232937428 +32298,2262,directorial debut,1207195171 +32298,2262,nudity (topless),1400283219 +32298,2263,Biblical,1248978123 +32298,2263,Christianity,1248978123 +32298,2263,religion,1248978057 +32298,2264,David Mamet,1232937331 +32298,2268,based on a play,1245289263 +32298,2268,corruption,1245499044 +32298,2268,courtroom,1245289240 +32298,2268,cover up,1245500763 +32298,2268,lawyers,1245499048 +32298,2268,military,1245499047 +32298,2268,military court,1246571504 +32298,2268,secrets,1245741058 +32298,2269,adultery,1245240202 +32298,2269,nudity (topless),1400283573 +32298,2270,Not available from Netflix,1254735811 +32298,2271,based on a book,1370318181 +32298,2271,biography,1370318181 +32298,2271,drugs,1370318181 +32298,2271,television,1370318181 +32298,2273,buddy movie,1348972608 +32298,2273,franchise,1348972607 +32298,2273,martial arts,1247213864 +32298,2273,police,1348972608 +32298,2274,nudity (full frontal),1430179435 +32298,2278,David Mamet,1232936946 +32298,2280,nudity (topless),1414534104 +32298,2283,nudity (full frontal),1400285276 +32298,2285,satire,1246453106 +32298,2288,aliens,1244770301 +32298,2288,Antarctica,1244770306 +32298,2288,based on a book,1245399059 +32298,2288,imdb top 250,1246473188 +32298,2288,polar,1368313356 +32298,2288,remake,1245399054 +32298,2288,shape shifter,1248086377 +32298,2288,wintry,1400879743 +32298,2289,based on a book,1244290472 +32298,2289,business,1246358169 +32298,2289,movie business,1246082520 +32298,2289,satire,1244290364 +32298,2291,fish out of water,1246474581 +32298,2291,surreal,1157368171 +32298,2294,bugs,1247216060 +32298,2294,Dreamworks,1385026291 +32298,2294,military,1410325136 +32298,2294,short,1410535295 +32298,2294,talking animals,1197787115 +32298,2297,afterlife,1250139458 +32298,2297,alternate reality,1246454903 +32298,2297,based on a book,1207569251 +32298,2297,Richard Matheson,1245396545 +32298,2297,scenic,1250139691 +32298,2297,suicide,1250139610 +32298,2297,surreal,1240892561 +32298,2297,visually appealing,1387397830 +32298,2298,nudity (topless),1403327188 +32298,2300,Broadway,1244883192 +32298,2300,directorial debut,1207132382 +32298,2300,remade,1244883216 +32298,2300,theater,1396006276 +32298,2301,goofy,1369892222 +32298,2301,irreverent,1246451930 +32298,2301,multiple roles,1250239015 +32298,2301,Roman empire,1250239008 +32298,2301,satire,1246451922 +32298,2302,Alabama,1246569583 +32298,2302,courtroom,1245289009 +32298,2302,lawyers,1245289029 +32298,2302,small town,1246569668 +32298,2302,wrongly accused,1246569668 +32298,2303,politics,1386812800 +32298,2310,disability,1245053200 +32298,2311,aliens,1245223835 +32298,2311,Arthur C. Clarke,1240889323 +32298,2311,based on a book,1240889324 +32298,2311,sequel,1240889324 +32298,2311,space,1245223822 +32298,2312,deafness,1196643502 +32298,2312,disability,1245811348 +32298,2313,19th century,1246314647 +32298,2313,based on a book,1246446205 +32298,2313,biography,1246588918 +32298,2313,black and white,1246314603 +32298,2313,disability,1246314664 +32298,2313,England,1246314647 +32298,2313,imdb top 250,1246314610 +32298,2313,true story,1246314588 +32298,2314,based on a book,1247478133 +32298,2314,nude black women,1250140603 +32298,2314,nudity (full frontal),1400285619 +32298,2316,magic,1252665070 +32298,2318,child abuse,1333763976 +32298,2318,dysfunctional family,1333763966 +32298,2318,loneliness,1367294013 +32298,2318,nudity (topless),1400283503 +32298,2318,rape,1333763963 +32298,2318,siblings,1245539654 +32298,2320,based on a book,1245056393 +32298,2320,Nazis,1245056397 +32298,2320,Stephen King,1245056388 +32298,2321,1950s,1206217612 +32298,2321,1950s housewives,1206217046 +32298,2321,black and white,1244881696 +32298,2321,coming of age,1329251884 +32298,2321,directorial debut,1207190501 +32298,2321,great acting,1386814455 +32298,2321,heartwarming,1329251881 +32298,2321,satire,1241005279 +32298,2321,stylized,1245390056 +32298,2321,surreal,1241005280 +32298,2321,television,1329251867 +32298,2321,time travel,1248673669 +32298,2321,utopia,1257253374 +32298,2321,whimsical,1257253402 +32298,2321,witty,1382198725 +32298,2323,directorial debut,1207213154 +32298,2324,bittersweet,1244889975 +32298,2324,tear jerker,1244890132 +32298,2324,World War II,1244889944 +32298,2325,Mormon,1196556330 +32298,2325,movie business,1387293865 +32298,2325,pornography,1244936849 +32298,2325,religion,1244714474 +32298,2325,satire,1240890830 +32298,2328,vampires,1338599989 +32298,2329,brutal,1240889476 +32298,2329,directorial debut,1207201266 +32298,2329,disturbing,1244891834 +32298,2329,imdb top 250,1246850691 +32298,2329,nudity (topless),1400284076 +32298,2329,racism,1246850667 +32298,2329,redemption,1246850607 +32298,2330,competition,1244971088 +32298,2331,erotic,1244762934 +32298,2331,nudity (full frontal),1400284688 +32298,2335,football,1402880330 +32298,2335,sports,1402880328 +32298,2336,biography,1246589898 +32298,2336,England,1246756975 +32298,2336,history,1246757015 +32298,2336,nudity (topless),1400283909 +32298,2336,royalty,1246757028 +32298,2342,mockumentary,1245062907 +32298,2342,punk rock,1257289166 +32298,2342,rock and roll,1245062900 +32298,2344,prison escape,1264061939 +32298,2344,trains,1193961617 +32298,2347,based on a book,1223427339 +32298,2347,New York City,1223427339 +32298,2348,biography,1246588615 +32298,2348,drugs,1246588654 +32298,2348,nudity (topless),1400283197 +32298,2348,punk rock,1246588634 +32298,2348,rock and roll,1246588638 +32298,2348,true story,1246588631 +32298,2351,imdb top 250,1246491219 +32298,2351,prostitution,1246491194 +32298,2352,ensemble cast,1249519910 +32298,2352,funeral,1249520040 +32298,2352,nudity (topless),1400283827 +32298,2352,suicide,1249520040 +32298,2352,villain nonexistent or not needed for good story,1249520044 +32298,2353,corruption,1246569017 +32298,2353,cover up,1246569233 +32298,2353,espionage,1246569233 +32298,2353,hackers,1246569020 +32298,2353,lawyers,1246569024 +32298,2353,politics,1246569233 +32298,2353,Washington DC,1246569328 +32298,2353,wrongly accused,1246569035 +32298,2355,bugs,1409544213 +32298,2355,inventor,1409544208 +32298,2355,Pixar,1245293399 +32298,2355,talking animals,1197787094 +32298,2357,Brazil,1247210250 +32298,2357,Latin America,1248164407 +32298,2357,Rio de Janeiro,1247210248 +32298,2357,South America,1247210243 +32298,2359,Ireland,1246891481 +32298,2360,family gatherings,1245152765 +32298,2360,secrets,1245152848 +32298,2360,siblings,1248490064 +32298,2360,suicide,1245152844 +32298,2361,banned movie,1248151284 +32298,2361,controversial,1248151284 +32298,2361,incest,1248151284 +32298,2361,low budget,1391750877 +32298,2361,unsimulated sex,1400289122 +32298,2362,cross dressing,1246620552 +32298,2362,cross dressing men,1246620552 +32298,2362,directorial debut,1207130540 +32298,2371,journalism,1300469062 +32298,2371,police corruption,1300469064 +32298,2376,business is the antagonist,1394989913 +32298,2376,franchise,1245445651 +32298,2376,Iceland,1242894563 +32298,2376,James Bond,1245445646 +32298,2377,aliens,1248088398 +32298,2377,based on a book,1248088421 +32298,2377,nudity (full frontal),1400285627 +32298,2378,police,1195733372 +32298,2379,franchise,1246981798 +32298,2380,franchise,1246981809 +32298,2381,franchise,1246981861 +32298,2381,police,1246981870 +32298,2382,franchise,1246981875 +32298,2387,directorial debut,1208235587 +32298,2387,nudity (topless),1400283228 +32298,2389,remake,1246666196 +32298,2389,serial killer,1246666229 +32298,2393,aliens,1360677495 +32298,2393,based on a TV show,1360677494 +32298,2393,earnest,1360677493 +32298,2393,far future,1360677492 +32298,2393,franchise,1360677490 +32298,2393,space,1360677489 +32298,2393,Star Trek,1360677487 +32298,2394,based on a book,1246760157 +32298,2394,Biblical,1246760158 +32298,2394,Christianity,1246760159 +32298,2394,Moses,1246760167 +32298,2394,religion,1246760161 +32298,2394,slavery,1246760154 +32298,2395,acting debut,1404625678 +32298,2395,bittersweet,1370173084 +32298,2395,coming of age,1370173088 +32298,2395,deadpan,1240911233 +32298,2395,high school,1244937710 +32298,2395,private school,1245377199 +32298,2395,quirky,1244768610 +32298,2395,school drama,1245833539 +32298,2395,teacher,1245377209 +32298,2395,unlikely friendships,1247130766 +32298,2395,unrequited love,1245564530 +32298,2396,cross dressing,1246619184 +32298,2396,cross dressing women,1246619184 +32298,2396,England,1246619170 +32298,2396,nudity (topless),1400284056 +32298,2396,Shakespeare,1245154012 +32298,2398,Christmas,1245289117 +32298,2398,courtroom,1245289116 +32298,2398,remade,1246980292 +32298,2398,Santa Claus,1245289126 +32298,2399,Christmas,1260848366 +32298,2406,jungle,1248165011 +32298,2406,Latin America,1248165018 +32298,2406,South America,1248165012 +32298,2406,treasure hunt,1248165020 +32298,2407,aliens,1348827313 +32298,2409,boxing,1248646199 +32298,2409,franchise,1248646196 +32298,2409,sports,1248646194 +32298,2410,boxing,1249519604 +32298,2410,franchise,1249519630 +32298,2410,sports,1249519602 +32298,2412,boxing,1382011426 +32298,2412,sports,1382011423 +32298,2413,alternate endings,1371114041 +32298,2413,blackmail,1371114239 +32298,2413,board game,1371114087 +32298,2416,nudity (topless),1400283461 +32298,2419,based on a play,1245955004 +32298,2419,nudity (topless),1400281918 +32298,2419,revenge,1245955003 +32298,2420,martial arts,1248646481 +32298,2422,martial arts,1246981790 +32298,2423,Christmas,1193546684 +32298,2423,franchise,1348983904 +32298,2423,National Lampoon,1259154959 +32298,2424,bookshop,1245537713 +32298,2424,happy ending,1247479463 +32298,2424,internet,1245537670 +32298,2424,New York City,1334834434 +32298,2424,sentimental,1247287596 +32298,2425,Ireland,1393546101 +32298,2427,based on a book,1220750423 +32298,2427,ensemble cast,1195823097 +32298,2427,remake,1220750423 +32298,2427,World War II,1210316197 +32298,2428,aliens,1383786519 +32298,2428,high school,1383786517 +32298,2431,doctors,1246485381 +32298,2431,medicine,1371498580 +32298,2431,true story,1246485368 +32298,2432,disease,1408337674 +32298,2432,divorce,1245061429 +32298,2432,terminal illness,1246495058 +32298,2433,based on a book,1245289888 +32298,2433,courtroom,1245289876 +32298,2433,environmental,1246572821 +32298,2436,fascism,1340271846 +32298,2436,Italy,1340271841 +32298,2436,World War II,1340271843 +32298,2437,biography,1245061060 +32298,2437,gay,1255254300 +32298,2437,Oscar Wilde,1245061046 +32298,2437,queer,1255254302 +32298,2437,writers,1246599880 +32298,2440,drugs,1245284454 +32298,2440,nudity (topless),1400281923 +32298,2445,blindness,1245466606 +32298,2447,football,1245060642 +32298,2447,high school,1245060640 +32298,2447,nudity (topless),1400283281 +32298,2447,sports,1245060645 +32298,2447,strippers,1245060693 +32298,2447,Texas,1245060628 +32298,2454,mad scientist,1246047552 +32298,2454,remade,1246047554 +32298,2455,creepy,1250290806 +32298,2455,mad scientist,1246047600 +32298,2455,remake,1246047602 +32298,2457,police,1246298498 +32298,2459,cannibalism,1246454628 +32298,2463,kidnapping,1244714855 +32298,2467,14th Century,1245227698 +32298,2467,based on a book,1196646378 +32298,2467,medieval,1245227686 +32298,2467,nudity (topless),1400283627 +32298,2467,religion,1245227671 +32298,2467,Umberto Eco,1245227679 +32298,2468,directorial debut,1207193574 +32298,2470,Australia,1368102652 +32298,2474,based on a book,1245388013 +32298,2474,con artists,1245388007 +32298,2474,pool,1245387952 +32298,2475,based on a book,1420191299 +32298,2475,Elmore Leonard,1420191299 +32298,2475,nudity (topless),1404279832 +32298,2478,Mexico,1406717343 +32298,2485,high school,1246277684 +32298,2485,teen,1247044411 +32298,2488,serial killer,1148728204 +32298,2488,voyeurism,1246746702 +32298,2491,restaurant,1246614905 +32298,2494,Oscar (Best Documentary Feature),1205300320 +32298,2497,based on a book,1247216308 +32298,2499,cancer,1295153991 +32298,2499,disease,1317337035 +32298,2500,high school,1382667481 +32298,2501,labor unions,1248263078 +32298,2501,mining,1244927824 +32298,2501,science,1241716514 +32298,2501,small town,1374997545 +32298,2501,space,1246390044 +32298,2501,true story,1246390036 +32298,2501,villain nonexistent or not needed for good story,1374997504 +32298,2502,business,1243804278 +32298,2502,business is the antagonist,1255076522 +32298,2502,cult film,1246453481 +32298,2502,going postal,1246893716 +32298,2502,hypnosis,1246850134 +32298,2502,rebellion,1246141145 +32298,2502,revenge,1246448222 +32298,2502,satire,1240890811 +32298,2502,slackers,1248085324 +32298,2502,technology,1246850106 +32298,2505,disturbing,1244891946 +32298,2507,based on a book,1235510569 +32298,2507,Kurt Vonnegut,1240889747 +32298,2517,based on a book,1209679187 +32298,2520,airport,1245588432 +32298,2521,airport,1245588473 +32298,2522,airport,1245588494 +32298,2527,androids,1251435378 +32298,2527,Michael Crichton,1251435398 +32298,2528,aging,1381062527 +32298,2528,nudity (topless),1400283657 +32298,2528,post-apocalyptic,1246099874 +32298,2528,utopia,1240890417 +32298,2529,based on a book,1211516372 +32298,2529,far future,1198457962 +32298,2529,post-apocalyptic,1245391636 +32298,2529,Rod Serling,1233549484 +32298,2529,twist ending,1245391640 +32298,2534,natural disaster,1372976721 +32298,2534,wintry,1390524995 +32298,2535,natural disaster,1245392943 +32298,2536,airport,1245588541 +32298,2539,Mafia,1248078665 +32298,2539,organized crime,1248078688 +32298,2541,based on a book,1247047185 +32298,2541,high school,1247047178 +32298,2541,manipulation,1247047175 +32298,2541,private school,1247047172 +32298,2542,black comedy,1298269787 +32298,2542,directorial debut,1207202414 +32298,2542,drugs,1298269784 +32298,2542,England,1297758070 +32298,2542,imdb top 250,1247290513 +32298,2542,multiple storylines,1298269758 +32298,2542,nudity (topless),1400284120 +32298,2542,organized crime,1298269764 +32298,2543,nudity (topless),1407223518 +32298,2544,nudity (topless),1400280204 +32298,2545,lesbian,1243830637 +32298,2545,nudity (topless),1400280709 +32298,2549,video game adaptation,1247583438 +32298,2550,based on a book,1264916767 +32298,2550,ghosts,1264916744 +32298,2550,haunted house,1264916739 +32298,2550,remade,1264916739 +32298,2551,addiction,1246752828 +32298,2551,based on a book,1207380825 +32298,2551,doctors,1246752794 +32298,2551,drugs,1246752792 +32298,2551,mistaken identity,1246754508 +32298,2551,multiple roles,1246752828 +32298,2551,nudity (topless),1400282999 +32298,2551,siblings,1246752828 +32298,2551,twins,1246752828 +32298,2553,black and white,1204203155 +32298,2553,remade,1256640841 +32298,2555,imdb bottom 100,1195617375 +32298,2557,directorial debut,1207215901 +32298,2558,road trip,1393544913 +32298,2560,cannibalism,1206072590 +32298,2563,nudity (topless),1400282564 +32298,2565,Broadway,1246759648 +32298,2565,royalty,1246759638 +32298,2567,reality TV,1404619373 +32298,2567,television,1404619373 +32298,2569,male nudity,1406664239 +32298,2569,nudity (full frontal),1400285590 +32298,2570,adultery,1199144827 +32298,2570,erotic,1245409192 +32298,2570,nudity (topless),1400282184 +32298,2571,alternate reality,1245278546 +32298,2571,artificial intelligence,1240890629 +32298,2571,cult film,1251507011 +32298,2571,cyberpunk,1244766866 +32298,2571,dystopia,1346122168 +32298,2571,guns,1266883362 +32298,2571,hackers,1240890635 +32298,2571,heroine in tight suit,1197451967 +32298,2571,imdb top 250,1245278557 +32298,2571,martial arts,1251507028 +32298,2571,philosophy,1244766836 +32298,2571,post-apocalyptic,1245390610 +32298,2571,slow motion,1373839909 +32298,2571,stylized,1251507044 +32298,2571,surreal,1244766854 +32298,2571,virtual reality,1244766850 +32298,2572,based on a play,1239417568 +32298,2572,high school,1247043009 +32298,2572,Shakespeare,1246583126 +32298,2572,teen,1247043000 +32298,2573,dance,1379411697 +32298,2576,nudity (topless),1407111139 +32298,2577,based on a book,1233408186 +32298,2577,nudity (topless),1400280923 +32298,2579,black and white,1245058748 +32298,2579,directorial debut,1207128444 +32298,2580,black comedy,1245832228 +32298,2580,drugs,1245832223 +32298,2580,multiple storylines,1273474097 +32298,2580,rave,1245832220 +32298,2582,mistaken identity,1246751894 +32298,2582,multiple roles,1246751894 +32298,2582,siblings,1246751894 +32298,2582,twins,1246751894 +32298,2589,nudity (topless),1400281929 +32298,2590,nudity (topless),1400282015 +32298,2590,road trip,1221195479 +32298,2591,nudity (topless),1402211697 +32298,2594,Madrid,1245153653 +32298,2594,nudity (topless),1400283182 +32298,2594,remade,1251060930 +32298,2594,Spain,1245153653 +32298,2596,salt lake city,1245117791 +32298,2596,Utah,1245117796 +32298,2598,aviation,1245919804 +32298,2599,adultery,1247044681 +32298,2599,black comedy,1240890033 +32298,2599,high school,1247044683 +32298,2599,lesbian,1245539818 +32298,2599,manipulation,1245739034 +32298,2599,politics,1255076204 +32298,2599,siblings,1245539809 +32298,2599,teacher,1245377261 +32298,2599,teen,1247044691 +32298,2600,alternate reality,1245278501 +32298,2600,video games,1382082925 +32298,2600,virtual reality,1246423985 +32298,2605,heist,1247215123 +32298,2606,nudity (topless),1413442634 +32298,2607,based on a play,1320317439 +32298,2607,high school,1320317439 +32298,2607,queer,1320317401 +32298,2609,adoption,1246584312 +32298,2609,cross dressing,1247220218 +32298,2609,cross dressing women,1247220227 +32298,2609,sexism,1247220232 +32298,2612,motherhood,1255237347 +32298,2614,nudity (topless),1400296154 +32298,2616,comic book,1386593565 +32298,2617,archaeology,1211608955 +32298,2617,Egypt,1276478259 +32298,2618,Australia,1240702682 +32298,2618,courtroom,1251024515 +32298,2618,low budget,1334451048 +32298,2618,narrated,1251024522 +32298,2619,nudity (topless),1402873457 +32298,2622,based on a play,1206782224 +32298,2622,Shakespeare,1248984308 +32298,2624,afterlife,1246454761 +32298,2624,alternate reality,1246454769 +32298,2628,bad acting,1388815024 +32298,2628,desert,1247205223 +32298,2628,far future,1198458259 +32298,2628,franchise,1247205212 +32298,2628,robots,1247205216 +32298,2628,space,1246576248 +32298,2628,Star Wars,1301124623 +32298,2630,nude black women,1250140576 +32298,2630,nudity (topless),1400281890 +32298,2639,based on a book,1248692592 +32298,2639,dysfunctional family,1290657212 +32298,2639,true story,1248692592 +32298,2640,aliens,1244890339 +32298,2640,big budget,1244890333 +32298,2640,comic book,1246578107 +32298,2640,DC Comics,1246754889 +32298,2640,double life,1246754893 +32298,2640,franchise,1244890346 +32298,2640,superhero,1244890358 +32298,2640,Superman,1381920372 +32298,2641,aliens,1246580869 +32298,2641,based on a comic,1408328656 +32298,2641,DC Comics,1246580855 +32298,2641,double life,1246754965 +32298,2641,franchise,1246580859 +32298,2641,superhero,1246580847 +32298,2641,Superman,1381920396 +32298,2642,comic book,1246578157 +32298,2642,DC Comics,1246578167 +32298,2642,double life,1246754980 +32298,2642,franchise,1246578177 +32298,2642,superhero,1246578160 +32298,2642,Superman,1381920414 +32298,2643,comic book,1246580897 +32298,2643,DC Comics,1246580903 +32298,2643,double life,1246754986 +32298,2643,franchise,1246580907 +32298,2643,superhero,1246580895 +32298,2643,Superman,1381920461 +32298,2644,based on a book,1246444813 +32298,2644,vampires,1246444825 +32298,2648,banned movie,1248152446 +32298,2648,based on a book,1207379654 +32298,2648,controversial,1248152446 +32298,2648,mad scientist,1247654843 +32298,2651,werewolves,1246445414 +32298,2654,werewolves,1246445357 +32298,2655,imdb bottom 100,1195618232 +32298,2655,nudity (topless),1401572548 +32298,2655,werewolves,1246445781 +32298,2657,campy,1309475047 +32298,2657,cross dressing,1255256116 +32298,2657,cult film,1245287086 +32298,2657,parody,1309475172 +32298,2657,queer,1309475201 +32298,2660,aliens,1245399135 +32298,2660,based on a book,1245399140 +32298,2660,remade,1245399169 +32298,2661,Ray Bradbury,1206781078 +32298,2662,aliens,1244929415 +32298,2662,bad science,1246849701 +32298,2662,based on a book,1196562521 +32298,2662,black and white,1204202793 +32298,2662,Christianity,1246849589 +32298,2662,H.G. Wells,1196561908 +32298,2662,religion,1246849588 +32298,2664,aliens,1245741822 +32298,2664,impostor,1245741802 +32298,2668,comic book,1256961699 +32298,2668,DC Comics,1256963157 +32298,2668,nudity (topless),1400282867 +32298,2670,based on a book,1249051332 +32298,2670,submarine,1249051304 +32298,2670,World War II,1249051314 +32298,2671,England,1245832336 +32298,2672,alternate reality,1246581836 +32298,2672,virtual reality,1246581829 +32298,2674,nudity (full frontal),1400285638 +32298,2677,Caribbean,1240889761 +32298,2677,Cuba,1240889763 +32298,2677,Havana,1246392078 +32298,2677,Latin America,1248165668 +32298,2677,latin music,1328600419 +32298,2677,musicians,1379410487 +32298,2681,nudity (topless),1400281724 +32298,2681,Star Trek,1196561666 +32298,2683,James Bond,1205378970 +32298,2683,multiple roles,1246753540 +32298,2683,parody,1245291896 +32298,2683,time travel,1246753550 +32298,2686,nudity (topless),1400283848 +32298,2687,Disney,1245744446 +32298,2687,Edgar Rice Burroughs,1245744443 +32298,2687,Oscar (Best Music - Original Song),1330512424 +32298,2687,Phil Collins,1260269407 +32298,2688,based on a book,1246668018 +32298,2688,corruption,1246668109 +32298,2688,cover up,1246668104 +32298,2688,military,1245448780 +32298,2688,nudity (full frontal),1400285417 +32298,2688,rape,1245448774 +32298,2688,undercover cop,1246668099 +32298,2690,based on a play,1208659139 +32298,2692,alternate endings,1243814080 +32298,2692,alternate reality,1245278806 +32298,2692,intense,1246254997 +32298,2692,redhead,1282519842 +32298,2692,time loop,1246448792 +32298,2693,geeks,1317368737 +32298,2693,Star Trek,1245285295 +32298,2693,television,1319412653 +32298,2697,immigrants,1249525126 +32298,2697,Islam,1249525116 +32298,2697,religion,1249525147 +32298,2699,bugs,1247216082 +32298,2699,spiders,1246666758 +32298,2700,2D animation,1262764873 +32298,2700,banned movie,1248153232 +32298,2700,based on a TV show,1247102515 +32298,2700,controversial,1248153232 +32298,2700,crude humor,1244771879 +32298,2700,irreverent,1243804318 +32298,2700,parody,1247102566 +32298,2700,satire,1240891071 +32298,2700,subversive,1240891074 +32298,2701,based on a TV show,1246616368 +32298,2701,big budget,1196515744 +32298,2701,steampunk,1246795098 +32298,2702,nudity (topless),1400283269 +32298,2702,serial killer,1148729307 +32298,2705,nudity (topless),1402211778 +32298,2706,high school,1248086039 +32298,2706,nudity (topless),1400284060 +32298,2706,teen,1248086027 +32298,2706,virginity,1248086058 +32298,2709,based on a TV show,1402484930 +32298,2709,franchise,1196554260 +32298,2709,puppets,1350115672 +32298,2709,talking animals,1197788084 +32298,2710,directorial debut,1218621872 +32298,2710,forest,1245293537 +32298,2710,found footage,1347176140 +32298,2710,low budget,1245293526 +32298,2710,mockumentary,1252722946 +32298,2710,shaky camera,1347176140 +32298,2712,nudity (full frontal),1400285365 +32298,2715,nudity (topless),1400280193 +32298,2716,ghosts,1241004765 +32298,2716,great soundtrack,1345791072 +32298,2716,New York City,1197716665 +32298,2716,paranormal,1332039623 +32298,2716,quotable,1357961441 +32298,2717,ghosts,1247368833 +32298,2718,beauty pageant,1248148486 +32298,2719,haunted house,1264916681 +32298,2719,remake,1264916672 +32298,2720,based on a TV show,1250130962 +32298,2721,Manhattan,1401572252 +32298,2721,New York City,1401572252 +32298,2721,nudity (topless),1401572252 +32298,2721,queer,1401572252 +32298,2722,animals,1262522232 +32298,2722,shark,1262522221 +32298,2723,parody,1247215780 +32298,2723,superhero,1247215770 +32298,2724,wedding,1246601001 +32298,2724,writers,1246599633 +32298,2725,conjoined twins,1245539317 +32298,2725,siblings,1245539308 +32298,2725,twins,1197808696 +32298,2726,black and white,1204202389 +32298,2726,heist,1247208099 +32298,2726,imdb top 250,1247208102 +32298,2728,based on a book,1233919326 +32298,2728,earnest,1271063217 +32298,2728,long,1271063203 +32298,2728,Roman empire,1244924863 +32298,2728,slavery,1271062655 +32298,2729,based on a book,1244974663 +32298,2729,controversial,1248142735 +32298,2729,erotic,1245408749 +32298,2729,kidnapping,1246595601 +32298,2729,May-December romance,1246595601 +32298,2729,temptation,1246595699 +32298,2731,directorial debut,1207130277 +32298,2732,based on a book,1232938169 +32298,2732,love triangles,1245052507 +32298,2734,based on a book,1248861126 +32298,2734,jungle,1248861165 +32298,2734,Latin America,1248861157 +32298,2736,based on a play,1247747086 +32298,2736,Neil Simon,1247747088 +32298,2739,acting debut,1404626073 +32298,2739,incest,1247210930 +32298,2739,rape,1247210909 +32298,2745,Catholicism,1246770726 +32298,2745,Christianity,1246770727 +32298,2745,colonialism,1246770713 +32298,2745,massacre,1246770722 +32298,2745,Native Americans,1258610685 +32298,2745,religion,1246770728 +32298,2745,slavery,1240890696 +32298,2746,remake,1244928967 +32298,2747,remade,1244928978 +32298,2750,nostalgic,1174643754 +32298,2750,radio,1247213911 +32298,2751,courtroom,1246571153 +32298,2752,love triangles,1246576211 +32298,2753,nudity (topless),1413920800 +32298,2760,based on a book,1382649681 +32298,2760,Dostoyevsky,1382649682 +32298,2761,2D animation,1262764945 +32298,2761,aliens,1324458247 +32298,2761,based on a book,1208233383 +32298,2761,cold war,1324457328 +32298,2761,directorial debut,1208233441 +32298,2761,military,1324457289 +32298,2761,robots,1324457315 +32298,2761,small town,1324457279 +32298,2762,ghosts,1245233893 +32298,2762,great ending,1383821806 +32298,2762,imdb top 250,1245233896 +32298,2762,twist ending,1293589734 +32298,2762,unpredictable,1386304812 +32298,2763,nudity (topless),1400284137 +32298,2765,based on a book,1386945242 +32298,2765,Irvine Welsh,1386945251 +32298,2767,nudity (topless),1414531661 +32298,2769,nudity (topless),1410462767 +32298,2770,multiple roles,1246753389 +32298,2772,Detroit,1347882585 +32298,2772,Michigan,1347882585 +32298,2772,rock and roll,1347882567 +32298,2774,lesbian,1246617361 +32298,2774,queer,1246617367 +32298,2778,nudity (topless),1400280808 +32298,2778,serial killer,1246102795 +32298,2780,based on a poem,1245395849 +32298,2780,Edgar Allan Poe,1245395836 +32298,2780,Richard Matheson,1245395849 +32298,2782,based on a book,1369992395 +32298,2782,Edgar Allan Poe,1245395559 +32298,2782,Richard Matheson,1245395614 +32298,2782,Spanish Inquisition,1245395671 +32298,2783,based on a book,1369992497 +32298,2783,Edgar Allan Poe,1245397692 +32298,2784,based on a book,1369992430 +32298,2784,Edgar Allan Poe,1245397608 +32298,2785,based on a book,1369992493 +32298,2785,Edgar Allan Poe,1245395734 +32298,2785,Richard Matheson,1245395739 +32298,2788,absurd,1319088670 +32298,2788,based on a TV show,1297325435 +32298,2788,British,1236588415 +32298,2788,Monty Python,1319088635 +32298,2788,sketch comedy,1319088637 +32298,2791,aviation,1245278098 +32298,2791,farce,1245278137 +32298,2791,parody,1404920257 +32298,2791,slapstick,1430154871 +32298,2791,ZAZ,1245278163 +32298,2792,parody,1240889419 +32298,2793,werewolves,1246445291 +32298,2794,National Lampoon,1319444056 +32298,2794,nudity (topless),1400283587 +32298,2794,tourists,1245450986 +32298,2795,road trip,1225067248 +32298,2795,tourists,1245450934 +32298,2796,fish out of water,1247632252 +32298,2797,being a kid again,1246591744 +32298,2797,child as adult,1246591663 +32298,2797,May-December romance,1246591656 +32298,2797,New York City,1245293589 +32298,2797,switching places,1247040478 +32298,2797,toys,1245293576 +32298,2800,comic strip,1246579724 +32298,2803,based on a book,1245569358 +32298,2803,corruption,1245569404 +32298,2803,John Grisham,1245569360 +32298,2803,law school,1245569363 +32298,2803,lawyers,1245569341 +32298,2804,based on a book,1198565440 +32298,2804,Christmas,1245451738 +32298,2804,consumerism,1245451769 +32298,2804,narrated,1245451743 +32298,2810,anime,1244970353 +32298,2812,nude black women,1343178585 +32298,2812,nudity (topless),1400281568 +32298,2813,biography,1246673345 +32298,2813,poets,1246673338 +32298,2813,writers,1246673338 +32298,2819,based on a book,1226826284 +32298,2819,CIA,1246482757 +32298,2819,conspiracy,1246482762 +32298,2819,espionage,1246482768 +32298,2820,based on a play,1206924981 +32298,2820,Shakespeare,1206924981 +32298,2821,based on a play,1204116898 +32298,2821,island,1265085761 +32298,2821,J.M. Barrie,1204116805 +32298,2821,shipwreck,1265085760 +32298,2824,boxing,1198623964 +32298,2824,sports,1248262300 +32298,2826,based on a book,1404857609 +32298,2826,big budget,1196516924 +32298,2826,Michael Crichton,1404857612 +32298,2833,nudity (topless),1400280836 +32298,2836,1970s,1247045155 +32298,2836,boarding school,1247045152 +32298,2836,private school,1247045163 +32298,2840,Christianity,1248092335 +32298,2840,controversial,1248092343 +32298,2840,religion,1248092314 +32298,2841,based on a book,1245396601 +32298,2841,ghosts,1245396601 +32298,2841,nudity (topless),1400283693 +32298,2841,Richard Matheson,1245396602 +32298,2848,based on a play,1206782923 +32298,2848,shakespeare,1244893769 +32298,2850,directorial debut,1207131109 +32298,2857,Beatles,1254713509 +32298,2857,rock and roll,1254713519 +32298,2858,adultery,1246388406 +32298,2858,aging,1387279488 +32298,2858,black comedy,1240913306 +32298,2858,directorial debut,1207201210 +32298,2858,gay,1255253510 +32298,2858,great acting,1386814488 +32298,2858,homophobia,1255253521 +32298,2858,imdb top 250,1246388423 +32298,2858,midlife crisis,1240913311 +32298,2858,nudity (topless),1400283995 +32298,2858,suburbia,1386241812 +32298,2858,temptation,1245736407 +32298,2859,concert,1356348196 +32298,2859,rock and roll,1356348191 +32298,2862,controversial,1248141277 +32298,2862,nudity (full frontal),1400285721 +32298,2862,Roman empire,1248089313 +32298,2862,unsimulated sex,1400289282 +32298,2863,1960s,1390554044 +32298,2863,Beatles,1246675173 +32298,2863,black and white,1390554079 +32298,2863,England,1390554079 +32298,2863,musicians,1390554049 +32298,2863,rock and roll,1205302212 +32298,2866,biography,1295146686 +32298,2866,rock and roll,1295146686 +32298,2867,nudity (topless),1400283257 +32298,2867,remade,1358052440 +32298,2867,vampires,1247214554 +32298,2870,apartment,1247747344 +32298,2870,based on a play,1247747344 +32298,2870,lawyers,1247747344 +32298,2870,Neil Simon,1247747344 +32298,2870,New York City,1247747344 +32298,2871,rednecks,1334451327 +32298,2872,based on a book,1246582178 +32298,2872,England,1246582180 +32298,2872,Holy Grail,1196518535 +32298,2872,King Arthur,1246582189 +32298,2872,medieval,1196518750 +32298,2872,nudity (topless),1400283823 +32298,2872,royalty,1246757380 +32298,2872,sword fight,1246584279 +32298,2874,based on a play,1340583993 +32298,2874,Broadway,1340583993 +32298,2881,nudity (topless),1400283940 +32298,2885,May-December romance,1246593545 +32298,2885,photography,1246593567 +32298,2887,imdb bottom 100,1195617305 +32298,2888,high school,1382667457 +32298,2889,Alaska,1196066831 +32298,2890,anti-war,1249636095 +32298,2890,banned movie,1248153334 +32298,2890,controversial,1248153334 +32298,2890,corruption,1245499258 +32298,2890,Gulf War,1245499264 +32298,2890,Iraq,1245499268 +32298,2890,Middle East,1245499262 +32298,2890,military,1245499258 +32298,2890,treasure hunt,1246731171 +32298,2892,based on a book,1383822035 +32298,2892,William Gibson,1383822031 +32298,2894,banned movie,1248151900 +32298,2894,BDSM,1248151874 +32298,2894,controversial,1248151900 +32298,2894,male nudity,1428098773 +32298,2894,nudity (full frontal),1400285677 +32298,2894,rape,1400287117 +32298,2894,unsimulated sex,1400287117 +32298,2898,based on a book,1215597786 +32298,2898,Stephen King,1215597786 +32298,2899,based on a book,1303333692 +32298,2905,18th century,1246583968 +32298,2905,based on a book,1246583952 +32298,2905,corruption,1246583963 +32298,2905,Japan,1246583951 +32298,2905,kidnapping,1246583963 +32298,2907,Saturday Night Live,1319439677 +32298,2908,brutal,1244885198 +32298,2908,cross dressing,1246621451 +32298,2908,cross dressing women,1246621510 +32298,2908,gay,1255254281 +32298,2908,homophobia,1240889733 +32298,2908,lesbian,1240889737 +32298,2908,Nebraska,1247477171 +32298,2908,nudity (full frontal),1400284672 +32298,2908,queer,1246617329 +32298,2908,rape,1244670115 +32298,2908,secrets,1245740205 +32298,2908,small town,1244936808 +32298,2908,true story,1244670118 +32298,2910,nudity (full frontal),1400285519 +32298,2915,nudity (full frontal),1400284699 +32298,2915,prostitution,1244326253 +32298,2916,alternate reality,1245410540 +32298,2916,based on a book,1369992520 +32298,2916,business is the antagonist,1394989779 +32298,2916,Mars,1246178513 +32298,2916,Philip K. Dick,1245293483 +32298,2916,virtual reality,1245293480 +32298,2917,directorial debut,1207369962 +32298,2917,erotic,1248155252 +32298,2917,nudity (full frontal),1400284451 +32298,2918,1980s,1245834460 +32298,2918,coming of age,1248087853 +32298,2918,high school,1247043349 +32298,2918,one day,1247480566 +32298,2918,rebellion,1240913500 +32298,2918,slackers,1248085505 +32298,2918,teen,1245060116 +32298,2925,nudity (topless),1400282191 +32298,2926,1960s,1246568781 +32298,2926,Baltimore,1246568788 +32298,2926,civil rights,1246568895 +32298,2926,Maryland,1246568788 +32298,2926,racism,1246568813 +32298,2926,remade,1246568895 +32298,2926,rock and roll,1246568796 +32298,2926,segregation,1246568813 +32298,2926,teen,1247043829 +32298,2927,adultery,1248261617 +32298,2927,based on a play,1226745128 +32298,2927,imdb top 250,1248261631 +32298,2927,Noel Coward,1226745128 +32298,2928,based on a book,1301851366 +32298,2937,black and white,1204202260 +32298,2941,based on a play,1245376658 +32298,2941,Broadway,1246899011 +32298,2941,interracial romance,1245376658 +32298,2941,island,1248646312 +32298,2941,World War II,1248646309 +32298,2942,dance,1244845149 +32298,2942,nudity (topless),1400283515 +32298,2942,strippers,1244845145 +32298,2947,franchise,1196517614 +32298,2947,James Bond,1246471218 +32298,2948,assassin,1246671470 +32298,2948,franchise,1246471275 +32298,2948,James Bond,1246471280 +32298,2949,beach,1246471583 +32298,2949,franchise,1245445560 +32298,2949,James Bond,1246471575 +32298,2949,mad scientist,1246941886 +32298,2950,based on a book,1210561491 +32298,2950,deserted island,1244893200 +32298,2950,island,1244893193 +32298,2950,shipwreck,1244893217 +32298,2952,casino,1245287417 +32298,2952,directorial debut,1207133316 +32298,2953,Christmas,1249700552 +32298,2953,sequel,1246734691 +32298,2959,based on a book,1162261845 +32298,2959,brutal,1250141842 +32298,2959,Chuck Palahniuk,1204117964 +32298,2959,consumerism,1249624422 +32298,2959,double life,1249700670 +32298,2959,great acting,1386814483 +32298,2959,imaginary friend,1249624433 +32298,2959,imdb top 250,1244881885 +32298,2959,intense,1389812112 +32298,2959,mental illness,1249624449 +32298,2959,narrated,1249624454 +32298,2959,terrorism,1249624406 +32298,2959,twist ending,1249624401 +32298,2962,based on a book,1255066020 +32298,2962,Nick Hornby,1402478925 +32298,2962,soccer,1255065997 +32298,2962,sports,1402478925 +32298,2965,based on a book,1212152707 +32298,2966,road trip,1246394833 +32298,2966,siblings,1246394841 +32298,2968,midgets,1281417169 +32298,2968,time travel,1281256497 +32298,2968,Trilogy of the Imagination,1244771343 +32298,2970,Amazon,1246761783 +32298,2970,jungle,1244927128 +32298,2970,Latin America,1248164472 +32298,2970,Peru,1244927121 +32298,2970,South America,1244927121 +32298,2971,addiction,1245833060 +32298,2971,biography,1246588738 +32298,2971,dance,1379411431 +32298,2971,drugs,1245833056 +32298,2971,nudity (topless),1410368185 +32298,2971,true story,1245833063 +32298,2972,directorial debut,1207214020 +32298,2973,adultery,1246494812 +32298,2979,nudity (topless),1400281557 +32298,2985,business,1247908564 +32298,2985,business is the antagonist,1255171098 +32298,2985,corruption,1247908555 +32298,2985,cyborgs,1384661242 +32298,2985,Detroit,1255171148 +32298,2985,police,1246465850 +32298,2985,police corruption,1247908564 +32298,2985,remade,1393095042 +32298,2985,robots,1247888136 +32298,2986,sequel,1247585348 +32298,2987,2D animation,1262764891 +32298,2987,rabbits,1247290205 +32298,2989,assassin,1247120830 +32298,2989,espionage,1246471603 +32298,2989,figure skating,1245445573 +32298,2989,franchise,1245445575 +32298,2989,James Bond,1245445578 +32298,2990,franchise,1246471769 +32298,2990,James Bond,1246471774 +32298,2991,Caribbean,1246392366 +32298,2991,drugs,1246392385 +32298,2991,franchise,1246392369 +32298,2991,James Bond,1246392381 +32298,2991,Latin America,1248165651 +32298,2993,franchise,1196518037 +32298,2993,James Bond,1246471395 +32298,2996,Harlem,1387123671 +32298,2996,musicians,1387123671 +32298,2996,New York City,1387123671 +32298,2996,poverty,1387123672 +32298,2996,teacher,1387123672 +32298,2996,true story,1387123671 +32298,2997,black comedy,1240889623 +32298,2997,Charlie Kaufman,1240894872 +32298,2997,directorial debut,1207200877 +32298,2997,LOVE TRIANGLES,1245049860 +32298,2997,puppets,1196556687 +32298,2997,quirky,1240894853 +32298,2997,surreal,1240894862 +32298,3000,anime,1245734362 +32298,3000,imdb top 250,1245734358 +32298,3000,Neil Gaiman,1245734344 +32298,3003,trains,1193961644 +32298,3005,based on a book,1226742942 +32298,3005,New York City,1254734639 +32298,3005,revenge,1254734639 +32298,3005,serial killer,1246895279 +32298,3006,business,1297601107 +32298,3006,business is the antagonist,1371268913 +32298,3006,corruption,1297601107 +32298,3006,journalism,1297601074 +32298,3006,true story,1297601011 +32298,3007,movie business,1357176761 +32298,3008,apocalypse,1247478379 +32298,3008,ensemble cast,1247478428 +32298,3008,multiple storylines,1247478426 +32298,3013,nudity (topless),1400055953 +32298,3015,based on a book,1218517191 +32298,3018,based on a book,1369992456 +32298,3018,H.P. Lovecraft,1245398929 +32298,3018,mad scientist,1247654726 +32298,3018,nudity (full frontal),1400285698 +32298,3019,addiction,1247651464 +32298,3019,drugs,1247651450 +32298,3020,going postal,1246893652 +32298,3021,nudity (topless),1419359971 +32298,3022,19th century,1246391229 +32298,3022,American Civil War,1245830289 +32298,3022,black and white,1208767675 +32298,3022,civil war,1245830285 +32298,3022,free to download,1297768506 +32298,3022,Hulu,1297768526 +32298,3022,imdb top 250,1245830305 +32298,3022,remade,1244892869 +32298,3022,trains,1244892873 +32298,3022,true story,1244893038 +32298,3022,youtube,1398493486 +32298,3028,based on a play,1206782996 +32298,3028,Shakespeare,1244970317 +32298,3030,imdb top 250,1245293795 +32298,3030,Japan,1245057132 +32298,3030,sword fight,1245293789 +32298,3031,nudity (topless),1400302012 +32298,3032,based on a book,1244972975 +32298,3032,epidemic,1245393228 +32298,3032,last man on earth,1245390872 +32298,3032,post-apocalyptic,1245390877 +32298,3032,remade,1245390882 +32298,3032,Richard Matheson,1244972987 +32298,3033,breaking the fourth wall,1262522520 +32298,3033,goofy,1369892075 +32298,3033,multiple roles,1246751548 +32298,3033,parody,1240912875 +32298,3033,space,1192620611 +32298,3033,Star Wars,1381962408 +32298,3034,2D animation,1262764804 +32298,3034,Disney,1245150901 +32298,3034,medieval,1245150912 +32298,3034,royalty,1246760386 +32298,3034,talking animals,1245150893 +32298,3036,nudity (full frontal),1400285212 +32298,3036,prehistoric,1398879467 +32298,3037,black and white,1208204755 +32298,3039,business is the antagonist,1394989142 +32298,3039,New York City,1206526974 +32298,3039,nudity (topless),1400283915 +32298,3039,poverty,1245497980 +32298,3039,prostitution,1245497976 +32298,3039,rags to riches,1245540308 +32298,3039,switching places,1245497896 +32298,3039,Wall Street,1246587334 +32298,3043,imdb bottom 100,1195617338 +32298,3043,nudity (topless),1400302351 +32298,3044,amnesia,1246382466 +32298,3046,lesbian,1243817229 +32298,3046,nude black women,1250129177 +32298,3046,nudity (topless),1400282027 +32298,3046,teen,1244881425 +32298,3052,Catholicism,1220071340 +32298,3052,Christianity,1218878201 +32298,3052,controversial,1244893414 +32298,3052,irreverent,1240889978 +32298,3052,religion,1244893423 +32298,3052,satire,1254713000 +32298,3053,Catholicism,1232003555 +32298,3053,Christianity,1232003414 +32298,3053,insanity,1246493740 +32298,3053,mental illness,1246493740 +32298,3053,mission from God,1245401452 +32298,3053,religion,1245401448 +32298,3060,based on a book,1242769853 +32298,3060,Dublin,1319693322 +32298,3060,Ireland,1319693316 +32298,3060,musicians,1379411101 +32298,3060,rhythm & blues,1240889858 +32298,3068,based on a book,1232937508 +32298,3068,courtroom,1245289842 +32298,3068,David Mamet,1232937508 +32298,3068,lawyers,1245289839 +32298,3070,aliens,1245286975 +32298,3070,campy,1247466688 +32298,3071,education,1246400983 +32298,3071,high school,1245377293 +32298,3071,mathematics,1246400977 +32298,3071,teacher,1246400975 +32298,3071,true story,1367296424 +32298,3075,black and white,1204201297 +32298,3075,insanity,1246491959 +32298,3075,mental illness,1245286581 +32298,3075,rape,1245286566 +32298,3079,based on a book,1218620517 +32298,3081,ghosts,1349781004 +32298,3081,small town,1349781017 +32298,3082,big budget,1196517451 +32298,3082,franchise,1196517535 +32298,3082,James Bond,1245445665 +32298,3082,terrorism,1245445724 +32298,3083,queer,1246617925 +32298,3087,Charles Dickens,1257901903 +32298,3087,Christmas,1197716169 +32298,3087,New York City,1204115272 +32298,3087,parody,1246980038 +32298,3087,television,1204115272 +32298,3088,based on a play,1249011728 +32298,3088,imaginary friend,1249011761 +32298,3088,imdb top 250,1249011722 +32298,3089,cycling,1386906363 +32298,3089,imdb top 250,1247208163 +32298,3089,poverty,1386906375 +32298,3089,Rome,1251175539 +32298,3090,labor unions,1248262974 +32298,3090,mining,1248262995 +32298,3090,true story,1248263035 +32298,3093,prostitution,1246491582 +32298,3095,based on a book,1197708523 +32298,3095,dust bowl,1245637619 +32298,3095,Great Depression,1245637623 +32298,3095,imdb top 250,1245637609 +32298,3095,John Steinbeck,1197708523 +32298,3098,baseball,1249519574 +32298,3098,sports,1249519576 +32298,3101,adultery,1247211417 +32298,3102,courtroom,1246570471 +32298,3102,lawyers,1246570434 +32298,3104,road trip,1374824877 +32298,3105,based on a book,1201662889 +32298,3105,medicine,1277558513 +32298,3105,true story,1246485786 +32298,3107,firefighters,1235797130 +32298,3108,insanity,1246493244 +32298,3108,mental illness,1196243730 +32298,3113,apocalypse,1252548564 +32298,3113,Christianity,1252548550 +32298,3113,nudity (topless),1399714147 +32298,3113,religion,1252548550 +32298,3114,Pixar,1245293275 +32298,3114,toys,1196795516 +32298,3115,cross dressing,1246619738 +32298,3115,cross dressing men,1246619738 +32298,3115,homophobia,1246619775 +32298,3117,American Civil War,1306557857 +32298,3117,civil war,1294404708 +32298,3125,nudity (topless),1400282745 +32298,3127,Australia,1245454179 +32298,3127,nudity (full frontal),1400285571 +32298,3127,psychology,1245454181 +32298,3128,nudity (topless),1400281616 +32298,3128,small town,1250849942 +32298,3129,jazz,1245116467 +32298,3139,Edgar Rice Burroughs,1245744188 +32298,3147,based on a book,1245223695 +32298,3147,death penalty,1245725567 +32298,3147,imdb top 250,1245725609 +32298,3147,prison,1205663169 +32298,3147,wrongly accused,1245228764 +32298,3148,based on a book,1247210961 +32298,3148,Maine,1384668592 +32298,3152,1950s,1400275508 +32298,3152,black and white,1400275480 +32298,3152,high school,1400275553 +32298,3152,nudity (topless),1400283444 +32298,3152,small town,1245568922 +32298,3152,Texas,1400275480 +32298,3155,19th century,1246576519 +32298,3155,based on a book,1246576506 +32298,3155,royalty,1246759724 +32298,3155,Thailand,1246764155 +32298,3155,true story,1246576513 +32298,3156,Isaac Asimov,1240889649 +32298,3156,robots,1266067539 +32298,3157,based on a book,1196518900 +32298,3157,E.B. White,1196518900 +32298,3157,talking animals,1196518906 +32298,3158,China,1246490488 +32298,3158,royalty,1246760954 +32298,3159,classical music,1251435234 +32298,3159,Disney,1251435235 +32298,3160,addiction,1245283104 +32298,3160,multiple storylines,1245283075 +32298,3168,drugs,1196067590 +32298,3168,road trip,1244885713 +32298,3168,stoner movie,1246254822 +32298,3172,based on a poem,1208404064 +32298,3172,Homer,1245399393 +32298,3173,nudity (topless),1407223689 +32298,3174,biography,1251862068 +32298,3174,comedians,1384460479 +32298,3174,true story,1251862070 +32298,3175,aliens,1246473106 +32298,3175,parody,1246473108 +32298,3175,space,1246473116 +32298,3175,Star Trek,1246473110 +32298,3176,based on a book,1245741906 +32298,3176,impostor,1245741889 +32298,3178,boxing,1259105056 +32298,3178,sports,1259105056 +32298,3179,based on a book,1246576470 +32298,3179,Ireland,1246576470 +32298,3179,poverty,1246576470 +32298,3181,based on a play,1206782330 +32298,3181,nudity (topless),1400282908 +32298,3181,Shakespeare,1250851270 +32298,3186,asylum,1245734745 +32298,3186,mental illness,1245053507 +32298,3186,true story,1245053512 +32298,3188,anti-Semitism,1247504354 +32298,3188,baseball,1247504317 +32298,3188,sports,1247504321 +32298,3190,nudity (topless),1399714070 +32298,3190,space,1386656471 +32298,3198,escape,1258707273 +32298,3198,prison,1249519181 +32298,3198,prison escape,1249519185 +32298,3198,wrongly accused,1249519192 +32298,3201,nudity (topless),1400283243 +32298,3201,rebellion,1249525655 +32298,3204,based on a book,1217824095 +32298,3205,black and white,1204203180 +32298,3205,directorial debut,1344504305 +32298,3207,Ernest Hemingway,1207665892 +32298,3208,National Lampoon,1196070064 +32298,3208,parody,1208760987 +32298,3210,abortion,1410808342 +32298,3210,coming of age,1410808339 +32298,3210,directorial debut,1207199914 +32298,3210,ensemble cast,1197724536 +32298,3210,high school,1245060405 +32298,3210,nudity (topless),1410808040 +32298,3213,Batman,1245913307 +32298,3213,comic book,1246578870 +32298,3213,DC Comics,1245913321 +32298,3213,double life,1246754861 +32298,3213,franchise,1245913309 +32298,3213,superhero,1246578875 +32298,3213,vigilante,1245913327 +32298,3214,cycling,1386906588 +32298,3218,based on a book,1406032449 +32298,3218,multiple storylines,1400297375 +32298,3219,nudity (topless),1400283212 +32298,3223,nudity (full frontal),1404287792 +32298,3224,allegory,1245568508 +32298,3224,based on a book,1246452564 +32298,3224,desert,1247749772 +32298,3224,erotic,1245568508 +32298,3224,Japan,1245568551 +32298,3238,nudity (topless),1400282722 +32298,3241,Buddhism,1247220130 +32298,3241,soccer,1247220123 +32298,3244,Neil Simon,1247748182 +32298,3245,black and white,1395578651 +32298,3246,assassin,1246483446 +32298,3246,biography,1274356395 +32298,3246,history,1245058280 +32298,3246,Islam,1245058318 +32298,3246,racism,1245058287 +32298,3246,religion,1245058318 +32298,3246,true story,1274356395 +32298,3247,Catholicism,1220071371 +32298,3247,choir,1245222007 +32298,3247,Christianity,1215822049 +32298,3247,nuns,1387281042 +32298,3247,religion,1215822049 +32298,3247,vocalists,1246734363 +32298,3248,choir,1245222019 +32298,3248,Christianity,1341572893 +32298,3248,high school,1246734399 +32298,3248,hip hop,1341555981 +32298,3248,nuns,1387281347 +32298,3248,religion,1341572893 +32298,3248,sequel,1246734430 +32298,3248,teacher,1246734400 +32298,3248,vocalists,1246734392 +32298,3249,nudity (topless),1400283448 +32298,3250,aviation,1248165076 +32298,3250,cannibalism,1248165080 +32298,3250,mountains,1248165090 +32298,3250,South America,1248165090 +32298,3250,survival,1248165092 +32298,3250,true story,1304463544 +32298,3251,based on a play,1242197457 +32298,3251,Catholicism,1255420879 +32298,3251,Christianity,1255420879 +32298,3251,mental illness,1255420879 +32298,3251,religion,1255420860 +32298,3252,blindness,1245446103 +32298,3252,disability,1245811173 +32298,3253,based on a TV show,1250130299 +32298,3253,rock and roll,1245063436 +32298,3253,Saturday Night Live,1244975602 +32298,3254,based on a TV show,1250130385 +32298,3254,musicians,1379410738 +32298,3254,rock and roll,1195783152 +32298,3255,baseball,1245282040 +32298,3255,siblings,1245539622 +32298,3255,sports,1245282038 +32298,3255,World War II,1245282042 +32298,3256,based on a book,1210468376 +32298,3256,Tom Clancy,1349780592 +32298,3257,interracial romance,1203927737 +32298,3257,musicians,1413411404 +32298,3262,nudity (topless),1400283233 +32298,3263,basketball,1245226584 +32298,3263,nudity (topless),1400283863 +32298,3263,sports,1245226640 +32298,3264,cheerleading,1386559788 +32298,3264,vampires,1246444899 +32298,3266,found footage,1404920665 +32298,3266,mockumentary,1246452258 +32298,3266,satire,1246452275 +32298,3266,serial killer,1246452256 +32298,3267,directorial debut,1207130751 +32298,3267,low budget,1245234410 +32298,3267,mistaken identity,1245234424 +32298,3270,figure skating,1411825377 +32298,3271,based on a book,1197708220 +32298,3271,disability,1245285139 +32298,3271,John Steinbeck,1197708285 +32298,3272,Catholicism,1248077459 +32298,3272,Christianity,1248077479 +32298,3272,drugs,1248077541 +32298,3272,nudity (topless),1400282918 +32298,3272,police,1248077479 +32298,3272,police corruption,1248077541 +32298,3272,prostitution,1248077540 +32298,3272,religion,1248077479 +32298,3275,Boston,1311958574 +32298,3275,corruption,1376030850 +32298,3275,insanity,1246493678 +32298,3275,Mafia,1248077958 +32298,3275,mental illness,1246493647 +32298,3275,mission from God,1245401523 +32298,3275,nudity (topless),1400283785 +32298,3275,organized crime,1248077960 +32298,3275,police,1376030850 +32298,3275,police corruption,1376030850 +32298,3275,queer,1376030297 +32298,3275,religion,1245401341 +32298,3275,serial killer,1376030948 +32298,3275,siblings,1246494404 +32298,3275,twins,1246494404 +32298,3275,vigilante,1376030745 +32298,3281,cross dressing,1255253119 +32298,3281,cross dressing women,1255253121 +32298,3281,homophobia,1255253117 +32298,3281,Nebraska,1255253117 +32298,3281,queer,1255253117 +32298,3281,small town,1255253117 +32298,3281,true story,1255253113 +32298,3285,drugs,1246596221 +32298,3285,island,1246596156 +32298,3285,marijuana,1246596221 +32298,3285,nudity (topless),1400283635 +32298,3285,tourists,1246596221 +32298,3285,utopia,1246596125 +32298,3289,China,1245568141 +32298,3296,high school,1259239133 +32298,3296,London,1259239128 +32298,3296,teacher,1259239111 +32298,3298,directorial debut,1208230651 +32298,3298,scam,1245740187 +32298,3298,secrets,1245740191 +32298,3298,stock market,1197696927 +32298,3300,aliens,1295222976 +32298,3300,anti-hero,1387281409 +32298,3301,assassin,1248086579 +32298,3301,nudity (topless),1400283812 +32298,3306,circus,1246752180 +32298,3306,clowns,1246752188 +32298,3306,multiple roles,1246752167 +32298,3307,blindness,1246793985 +32298,3307,imdb top 250,1246793971 +32298,3310,imdb top 250,1246597957 +32298,3313,National Lampoon,1196070010 +32298,3316,nudity (topless),1400283205 +32298,3317,adultery,1245738808 +32298,3317,based on a book,1244970778 +32298,3317,college,1244970833 +32298,3317,school drama,1245833978 +32298,3317,teacher student relationship,1245738813 +32298,3317,writers,1246598485 +32298,3326,nudity (topless),1400282533 +32298,3328,assassin,1248078362 +32298,3328,Mafia,1248078331 +32298,3331,nudity (topless),1400297538 +32298,3335,imdb bottom 100,1195617411 +32298,3338,moon,1382079527 +32298,3338,NASA,1382079528 +32298,3338,space,1382079528 +32298,3342,nudity (topless),1410132752 +32298,3343,nudity (topless),1400280977 +32298,3347,based on a book,1320294186 +32298,3347,biology,1320294328 +32298,3347,Canada,1320294327 +32298,3347,scenic,1320294327 +32298,3347,science,1320294328 +32298,3347,true story,1320294222 +32298,3350,based on a play,1245232294 +32298,3350,poverty,1245232327 +32298,3350,racism,1245232323 +32298,3354,Mars,1246178541 +32298,3355,bad ending,1318273507 +32298,3355,books,1341627514 +32298,3355,devil,1258962523 +32298,3355,nudity (topless),1400283556 +32298,3358,afterlife,1422335949 +32298,3358,alternate reality,1422335949 +32298,3359,cycling,1386907020 +32298,3359,sports,1245226492 +32298,3360,basketball,1248647242 +32298,3360,directorial debut,1207189856 +32298,3360,sports,1248647245 +32298,3361,nudity (topless),1400283798 +32298,3363,1960s,1370338605 +32298,3363,cars,1245844665 +32298,3363,coming of age,1370338594 +32298,3363,low budget,1391751471 +32298,3363,nocturnal,1245844673 +32298,3363,rock and roll,1195780611 +32298,3375,based on a book,1206925455 +32298,3375,Robert Heinlein,1206925455 +32298,3379,based on a book,1249051210 +32298,3379,post-apocalyptic,1249051192 +32298,3379,submarine,1249051193 +32298,3381,nudity (topless),1400276752 +32298,3384,New York City,1244932447 +32298,3384,remade,1244932447 +32298,3384,subway,1244932453 +32298,3384,terrorism,1244932522 +32298,3384,trains,1244932453 +32298,3386,controversial,1248139689 +32298,3386,history,1244888840 +32298,3386,politics,1244888838 +32298,3386,US President,1244888830 +32298,3390,imdb bottom 100,1195618357 +32298,3396,based on a TV show,1245734010 +32298,3396,franchise,1196554118 +32298,3396,great soundtrack,1361776646 +32298,3396,Jim Henson,1243813394 +32298,3396,puppets,1350115536 +32298,3396,road trip,1244928753 +32298,3396,talking animals,1197788006 +32298,3397,based on a TV show,1402484968 +32298,3397,franchise,1361776198 +32298,3397,great soundtrack,1361776663 +32298,3397,Jim Henson,1245733699 +32298,3397,puppets,1350115731 +32298,3397,talking animals,1197788105 +32298,3398,based on a TV show,1402484957 +32298,3398,franchise,1363166020 +32298,3398,Jim Henson,1245734101 +32298,3398,New York City,1363166293 +32298,3398,puppets,1363166022 +32298,3398,talking animals,1363166045 +32298,3408,business is the antagonist,1255076333 +32298,3408,cover up,1246485580 +32298,3408,environmental,1246485570 +32298,3408,single parents,1246485548 +32298,3408,true story,1246485535 +32298,3409,franchise,1362152396 +32298,3415,poets,1246600342 +32298,3418,buddy movie,1246267098 +32298,3418,car chase,1246047518 +32298,3418,rape,1254625239 +32298,3418,road trip,1245280922 +32298,3421,college,1245060466 +32298,3421,drinking,1248090575 +32298,3421,fraternity,1245060462 +32298,3421,National Lampoon,1319440452 +32298,3421,nudity (topless),1400283886 +32298,3421,slackers,1319443869 +32298,3422,nudity (topless),1400282549 +32298,3424,Brooklyn,1245226791 +32298,3424,New York City,1245226791 +32298,3424,nudity (topless),1400283844 +32298,3424,racism,1349307709 +32298,3425,jazz,1245116555 +32298,3425,jazz club,1245116926 +32298,3425,New York City,1234012824 +32298,3425,nightclub,1248078813 +32298,3426,nudity (topless),1400282781 +32298,3429,Aardman studios,1245055950 +32298,3429,claymation,1360932227 +32298,3429,directorial debut,1207215286 +32298,3431,nudity (full frontal),1407206919 +32298,3432,nudity (topless),1400300448 +32298,3434,nudity (topless),1407206961 +32298,3435,based on a book,1208405984 +32298,3435,imdb top 250,1247651779 +32298,3437,imdb bottom 100,1195617224 +32298,3438,animation remade as live action,1250130986 +32298,3438,based on a TV show,1250130996 +32298,3438,franchise,1384582155 +32298,3438,martial arts,1250131001 +32298,3439,animation remade as live action,1246981828 +32298,3439,based on a TV show,1250131038 +32298,3439,comic book,1246981841 +32298,3439,franchise,1384582132 +32298,3439,superhero,1246981822 +32298,3440,animation remade as live action,1250131110 +32298,3440,based on a TV show,1250131118 +32298,3440,franchise,1384582093 +32298,3440,martial arts,1246981846 +32298,3440,superhero,1246981849 +32298,3440,talking animals,1250131143 +32298,3440,time travel,1384582109 +32298,3441,small town,1347882305 +32298,3441,Soviet Union,1347882212 +32298,3442,directorial debut,1207476749 +32298,3446,England,1363761707 +32298,3447,based on a book,1206247671 +32298,3448,military,1245231893 +32298,3448,radio,1245231880 +32298,3448,true story,1245231887 +32298,3448,Vietnam,1245231885 +32298,3448,Vietnam War,1245231883 +32298,3450,love triangles,1247214273 +32298,3451,interracial romance,1245232365 +32298,3451,racism,1245232386 +32298,3451,remade,1245232366 +32298,3455,Catholicism,1251861191 +32298,3455,child abuse,1251861191 +32298,3455,Christianity,1251861191 +32298,3455,nudity (topless),1400279042 +32298,3455,religion,1251861191 +32298,3455,voyeurism,1261100008 +32298,3456,blindness,1245227965 +32298,3456,disability,1245811224 +32298,3456,Iran,1245227951 +32298,3456,Middle East,1245227951 +32298,3461,allegory,1245398225 +32298,3461,based on a book,1207896545 +32298,3461,brutal,1246613869 +32298,3461,island,1245398228 +32298,3461,remade,1260446287 +32298,3461,satire,1246452651 +32298,3462,black and white,1204201995 +32298,3463,National Lampoon,1196070106 +32298,3468,con artists,1244945914 +32298,3468,scam,1245742175 +32298,3469,1920s,1246223880 +32298,3469,biology,1240890315 +32298,3469,black and white,1204201206 +32298,3469,Christianity,1245289981 +32298,3469,courtroom,1245289955 +32298,3469,earnest,1244884525 +32298,3469,evolution,1244884531 +32298,3469,history,1246223763 +32298,3469,lawyers,1246572684 +32298,3469,religion,1245289978 +32298,3469,science,1240890311 +32298,3469,small town,1246224003 +32298,3469,true story,1244672026 +32298,3471,aliens,1246246826 +32298,3471,first contact,1246246835 +32298,3471,space,1246472966 +32298,3471,villain nonexistent or not needed for good story,1243804549 +32298,3476,alternate reality,1288941629 +32298,3476,insanity,1246493346 +32298,3476,mental illness,1246395411 +32298,3476,nudity (topless),1400283661 +32298,3476,Vietnam War,1288941607 +32298,3478,biography,1197721884 +32298,3478,latin music,1255663824 +32298,3478,musicians,1379410206 +32298,3478,rock and roll,1396972360 +32298,3478,true story,1197721885 +32298,3480,high school,1248669923 +32298,3481,based on a book,1198811759 +32298,3481,Nick Hornby,1245046859 +32298,3481,record store,1245046877 +32298,3489,fairy tale,1298260991 +32298,3489,J.M. Barrie,1204116510 +32298,3489,Peter Pan,1298260989 +32298,3489,pirates,1298260972 +32298,3489,underrated,1385389862 +32298,3489,uplifting,1240890237 +32298,3489,whimsical,1240890239 +32298,3490,trains,1193962020 +32298,3497,Neil Simon,1247748489 +32298,3497,single parents,1247748489 +32298,3498,nudity (topless),1400283284 +32298,3498,prison,1386838099 +32298,3498,prison escape,1386838107 +32298,3498,Turkey,1386838101 +32298,3499,based on a book,1211521283 +32298,3499,hostage,1246598922 +32298,3499,Stephen King,1246598894 +32298,3499,writers,1246598889 +32298,3503,based on a book,1162262038 +32298,3503,remade,1217930379 +32298,3503,space,1196558915 +32298,3503,Stanislaw Lem,1402060478 +32298,3504,journalism,1247632536 +32298,3504,satire,1247632622 +32298,3504,television,1247632538 +32298,3505,Cold War,1254825242 +32298,3505,conspiracy,1245569465 +32298,3505,corruption,1245569441 +32298,3505,cover up,1245569476 +32298,3505,military,1246465777 +32298,3505,nudity (topless),1400283456 +32298,3505,secrets,1245740990 +32298,3505,Washington DC,1245569492 +32298,3507,based on a play,1247747443 +32298,3507,Neil Simon,1247747443 +32298,3508,American Civil War,1245830758 +32298,3508,civil war,1245830752 +32298,3508,revenge,1245830773 +32298,3510,alternate reality,1246449189 +32298,3510,fire,1413519450 +32298,3510,time travel,1413519454 +32298,3513,military,1259238287 +32298,3525,nudity (full frontal),1400295497 +32298,3527,aliens,1246472979 +32298,3527,hunting,1246472985 +32298,3528,based on a book,1210250626 +32298,3529,based on a book,1232937555 +32298,3529,David Mamet,1232937555 +32298,3530,based on a play,1268716897 +32298,3534,addiction,1248090783 +32298,3534,alcoholism,1248090780 +32298,3534,drinking,1248090794 +32298,3535,1980s,1245832812 +32298,3535,based on a book,1245832814 +32298,3535,Brett Easton Ellis,1246582991 +32298,3535,nudity (topless),1400283971 +32298,3535,serial killer,1245832763 +32298,3535,yuppies,1245832820 +32298,3536,religion,1344472774 +32298,3543,directorial debut,1207190194 +32298,3545,based on a book,1245376099 +32298,3545,based on a play,1245376099 +32298,3545,Berlin,1246618097 +32298,3545,dance,1379411385 +32298,3545,Germany,1246618097 +32298,3545,history,1246618113 +32298,3545,queer,1246618110 +32298,3548,1920s,1255256452 +32298,3548,based on a book,1245376044 +32298,3549,based on a play,1245376461 +32298,3549,Broadway,1246899102 +32298,3549,gambling,1245376477 +32298,3550,directorial debut,1207200075 +32298,3550,nudity (topless),1400282520 +32298,3552,directorial debut,1207193930 +32298,3552,farce,1245588357 +32298,3552,golf,1245588322 +32298,3552,nudity (topless),1400283934 +32298,3552,sports,1248087559 +32298,3552,teen,1248087569 +32298,3554,basketball,1205460268 +32298,3555,Nazis,1247103215 +32298,3555,ocean,1247103215 +32298,3555,submarine,1247103207 +32298,3555,World War II,1247103205 +32298,3556,1970s,1245844755 +32298,3556,based on a book,1245844768 +32298,3556,directorial debut,1207191965 +32298,3556,high school,1244973873 +32298,3556,narrated,1259547549 +32298,3556,suicide,1244973875 +32298,3557,blindness,1245466534 +32298,3559,ballet,1379412481 +32298,3559,dance,1379412478 +32298,3564,based on a TV show,1250130900 +32298,3565,pregnancy,1320982805 +32298,3565,single parents,1320982766 +32298,3565,small town,1320982795 +32298,3565,teen pregnancy,1320982761 +32298,3567,Brazil,1363759135 +32298,3567,Latin America,1363759135 +32298,3567,Rio de Janeiro,1363759135 +32298,3567,South America,1363759135 +32298,3569,group sex,1400289464 +32298,3569,nudity (full frontal),1400288299 +32298,3569,unsimulated sex,1400289464 +32298,3571,ensemble cast,1245056756 +32298,3576,aliens,1300764087 +32298,3577,nudity (full frontal),1400274406 +32298,3578,imdb top 250,1246776503 +32298,3578,revenge,1244924693 +32298,3578,Roman empire,1244924665 +32298,3578,slavery,1246776519 +32298,3579,Africa,1249524658 +32298,3581,drugs,1367222076 +32298,3581,great soundtrack,1367222694 +32298,3584,nudity (topless),1407110971 +32298,3585,19th century,1246391280 +32298,3585,American Civil War,1245830333 +32298,3585,civil war,1245830339 +32298,3585,remake,1246391280 +32298,3585,trains,1244892980 +32298,3585,true story,1244892986 +32298,3593,aliens,1257253519 +32298,3593,imdb bottom 100,1257253498 +32298,3593,religion,1257253526 +32298,3593,scientology,1369801997 +32298,3593,slavery,1257253475 +32298,3594,ballet,1379412182 +32298,3594,dance,1252134711 +32298,3598,based on a play,1206782825 +32298,3598,easily confused with other movie(s) (title),1387278141 +32298,3598,Shakespeare,1248984284 +32298,3606,directorial debut,1207191221 +32298,3606,New York City,1197626772 +32298,3608,based on a TV show,1250130583 +32298,3613,David Mamet,1232937373 +32298,3614,skydiving,1355138116 +32298,3617,college,1247043041 +32298,3617,National Lampoon,1196070210 +32298,3617,nudity (full frontal),1400285808 +32298,3617,road trip,1245281007 +32298,3621,nudity (topless),1407223069 +32298,3622,Russia,1258167094 +32298,3622,Soviet Union,1258167093 +32298,3623,espionage,1249050775 +32298,3624,buddy movie,1351150290 +32298,3624,kidnapping,1360567742 +32298,3624,martial arts,1360589325 +32298,3624,trains,1360589325 +32298,3624,watch the credits,1360589965 +32298,3626,nudity (full frontal),1400285662 +32298,3629,Alaska,1245285940 +32298,3629,black and white,1208767656 +32298,3629,imdb top 250,1246793873 +32298,3629,mining,1246793894 +32298,3630,nudity (full frontal),1407097214 +32298,3633,franchise,1246471632 +32298,3633,James Bond,1245445592 +32298,3633,skiing,1246471669 +32298,3633,wintry,1390525142 +32298,3634,military,1233549563 +32298,3634,Rod Serling,1233549563 +32298,3635,franchise,1196518126 +32298,3635,James Bond,1246471353 +32298,3635,submarine,1246471334 +32298,3638,franchise,1246472078 +32298,3638,James Bond,1246472070 +32298,3638,space,1246472080 +32298,3639,assassin,1246670247 +32298,3639,franchise,1246471692 +32298,3639,island,1246670247 +32298,3639,James Bond,1246471696 +32298,3644,American Civil War,1245830545 +32298,3644,civil war,1245830539 +32298,3649,prostitution,1247746875 +32298,3652,Lovecraftian mythology,1245398728 +32298,3653,Australia,1228452954 +32298,3653,Hawaii,1228452954 +32298,3653,New Zealand,1228452954 +32298,3653,South Africa,1228452954 +32298,3654,World War II,1381940973 +32298,3655,nudity (topless),1407114843 +32298,3661,nudity (topless),1400273617 +32298,3668,based on a play,1206782955 +32298,3671,breaking the fourth wall,1262522523 +32298,3671,goofy,1369892129 +32298,3671,madcap,1243814031 +32298,3671,multiple roles,1246751521 +32298,3671,parody,1240914395 +32298,3671,racism,1245832659 +32298,3671,satire,1246451527 +32298,3675,Christmas,1244769760 +32298,3675,hotel,1246980265 +32298,3675,vocalists,1246735616 +32298,3676,directorial debut,1207212865 +32298,3676,low budget,1391750936 +32298,3677,environmental,1246447177 +32298,3677,nature,1246447168 +32298,3677,scenic,1246447177 +32298,3679,punk rock,1245285754 +32298,3679,rock and roll,1197709985 +32298,3680,heavy metal,1246794500 +32298,3680,rock and roll,1246794500 +32298,3683,adultery,1248261561 +32298,3683,directorial debut,1207191477 +32298,3686,afterlife,1246454800 +32298,3686,alternate reality,1246454800 +32298,3688,nudity (full frontal),1400285780 +32298,3690,nudity (topless),1411443975 +32298,3691,boarding school,1308000524 +32298,3691,nudity (full frontal),1400285724 +32298,3691,private school,1308000524 +32298,3697,nudity (full frontal),1400275215 +32298,3698,based on a book,1197806785 +32298,3698,campy,1246140231 +32298,3698,corruption,1246250939 +32298,3698,heroine in tight suit,1245739411 +32298,3698,police corruption,1246247042 +32298,3698,reality TV,1197806820 +32298,3698,satire,1240890954 +32298,3698,Stephen King,1244768022 +32298,3698,survival,1247207856 +32298,3698,television,1197806826 +32298,3698,wrongly accused,1245228947 +32298,3699,aliens,1245063248 +32298,3699,impostor,1268599742 +32298,3700,aliens,1246473364 +32298,3700,Harlem,1246473402 +32298,3700,New York City,1246473399 +32298,3701,aliens,1246473349 +32298,3701,police,1246473345 +32298,3702,Australia,1246465917 +32298,3702,car chase,1247996302 +32298,3702,cars,1247996297 +32298,3702,dystopia,1246465904 +32298,3702,low budget,1391751192 +32298,3702,motorcycle,1247996319 +32298,3702,post-apocalyptic,1245390804 +32298,3702,revenge,1247996347 +32298,3703,desert,1245391222 +32298,3703,post-apocalyptic,1245391218 +32298,3704,desert,1244767745 +32298,3704,post-apocalyptic,1245390978 +32298,3706,Louisiana,1246573742 +32298,3706,nudity (topless),1400283452 +32298,3707,nudity (topless),1401570767 +32298,3708,based on a book,1215737765 +32298,3708,Stephen King,1215737765 +32298,3709,Stephen King,1419799080 +32298,3710,nudity (topless),1424998986 +32298,3711,Africa,1258979676 +32298,3711,racism,1258979676 +32298,3711,segregation,1258979676 +32298,3711,South Africa,1258979676 +32298,3717,car chase,1245234656 +32298,3717,cars,1245234657 +32298,3717,remake,1384475935 +32298,3719,based on a play,1206783150 +32298,3719,Shakespeare,1244974790 +32298,3720,multiple roles,1246752454 +32298,3723,based on a play,1206782202 +32298,3723,Shakespeare,1248984202 +32298,3727,Arizona,1260756397 +32298,3727,vampires,1258962218 +32298,3729,blaxploitation,1244926409 +32298,3729,nudity (topless),1400282742 +32298,3729,remade,1244926412 +32298,3732,based on a book,1210967300 +32298,3733,Harvard,1245226394 +32298,3735,corruption,1247887509 +32298,3735,New York City,1247887493 +32298,3735,nudity (topless),1400283512 +32298,3735,police,1247887488 +32298,3735,police corruption,1247887509 +32298,3735,true story,1300935965 +32298,3735,undercover cop,1247887546 +32298,3736,journalism,1247632328 +32298,3741,road trip,1245280899 +32298,3742,banned movie,1248153788 +32298,3742,controversial,1248153788 +32298,3742,massacre,1248153858 +32298,3742,military,1248153859 +32298,3742,politics,1246486006 +32298,3742,propaganda,1387299332 +32298,3742,rebellion,1248153859 +32298,3742,revolution,1248153859 +32298,3742,Russia,1248153878 +32298,3744,blaxploitation,1280017649 +32298,3744,remake,1244883582 +32298,3745,2D animation,1262764925 +32298,3745,space,1393333212 +32298,3747,addiction,1258972387 +32298,3747,drugs,1258972387 +32298,3747,heroin,1258972387 +32298,3747,nudity (topless),1400282153 +32298,3751,birds,1247205486 +32298,3751,claymation,1247205526 +32298,3751,Dreamworks,1308064518 +32298,3751,talking animals,1197787937 +32298,3754,based on a TV show,1246583340 +32298,3755,big budget,1196517388 +32298,3755,natural disaster,1245393374 +32298,3755,ocean,1245393384 +32298,3755,weather,1245393377 +32298,3756,based on a book,1283680627 +32298,3756,Henry James,1283680623 +32298,3760,nude black women,1401961537 +32298,3760,nudity (topless),1401961537 +32298,3761,gangsters,1246484323 +32298,3761,prison,1246484314 +32298,3764,sequel,1285382368 +32298,3765,based on a book,1246592569 +32298,3765,nudity (full frontal),1400285435 +32298,3769,directorial debut,1207213413 +32298,3773,hip hop,1195615984 +32298,3779,Robert Heinlein,1206925489 +32298,3781,Africa,1249524159 +32298,3781,blaxploitation,1249524150 +32298,3782,blaxploitation,1249524232 +32298,3783,England,1245453919 +32298,3783,London,1245453922 +32298,3783,nudity (full frontal),1400284749 +32298,3785,parody,1160654874 +32298,3786,coming of age,1248087480 +32298,3786,lesbian,1245448355 +32298,3786,queer,1248087538 +32298,3786,satire,1248087522 +32298,3788,England,1247218760 +32298,3788,London,1247218761 +32298,3788,nudity (topless),1400283112 +32298,3788,photography,1247218744 +32298,3791,Christianity,1248087725 +32298,3791,dance,1267686784 +32298,3791,high school,1248087707 +32298,3791,religion,1248087726 +32298,3791,remade,1384747614 +32298,3791,rock and roll,1267686786 +32298,3791,small town,1248087723 +32298,3791,teen,1248087704 +32298,3793,biology,1208571423 +32298,3793,comic book,1246578490 +32298,3793,ensemble cast,1197724912 +32298,3793,franchise,1196554832 +32298,3793,genetics,1208570965 +32298,3793,mutants,1196554832 +32298,3793,superhero,1246450338 +32298,3795,nudity (topless),1400276929 +32298,3797,nudity (topless),1400281420 +32298,3801,based on a book,1245452209 +32298,3801,courtroom,1245289727 +32298,3802,time travel,1247478280 +32298,3805,motorcycle,1425620528 +32298,3805,nudity (topless),1425620478 +32298,3810,nudity (topless),1400281578 +32298,3811,Africa,1246571403 +32298,3811,Australia,1240702772 +32298,3811,based on a play,1248984143 +32298,3811,courtroom,1246571385 +32298,3811,military,1246571427 +32298,3811,military court,1246571406 +32298,3814,parody,1246451660 +32298,3819,food,1360645715 +32298,3819,satire,1360645695 +32298,3820,trains,1193961866 +32298,3821,alter ego,1246756666 +32298,3821,double life,1246756666 +32298,3821,multiple roles,1246749600 +32298,3821,sequel,1246749593 +32298,3826,invisibility,1246616104 +32298,3826,nudity (topless),1400283795 +32298,3826,rape,1318274483 +32298,3831,drugs,1318445997 +32298,3831,marijuana,1318445993 +32298,3835,May-December romance,1393544729 +32298,3837,nudity (topless),1400304866 +32298,3844,diabetes,1246495250 +32298,3844,disease,1380953715 +32298,3844,Louisiana,1246495201 +32298,3844,sentimental,1244889988 +32298,3846,nudity (topless),1402208195 +32298,3854,Berlin,1246617856 +32298,3854,Germany,1246617856 +32298,3854,Holocaust,1246617888 +32298,3854,lesbian,1246617837 +32298,3854,Nazis,1246617849 +32298,3854,nudity (topless),1403015215 +32298,3854,queer,1246617839 +32298,3863,alternate reality,1247608552 +32298,3863,directorial debut,1207662951 +32298,3863,serial killer,1148728806 +32298,3863,surreal,1240889809 +32298,3865,stand-up comedy,1296190699 +32298,3868,parody,1245278203 +32298,3868,police,1195733428 +32298,3868,ZAZ,1245278198 +32298,3869,business is the antagonist,1394989434 +32298,3869,parody,1245278266 +32298,3869,police,1208760096 +32298,3869,ZAZ,1245278264 +32298,3872,based on a play,1219269660 +32298,3872,Tennessee Williams,1219269659 +32298,3875,based on a book,1245396115 +32298,3875,Richard Matheson,1245396115 +32298,3880,folk music,1387427425 +32298,3880,musicians,1387427422 +32298,3881,musicians,1379152501 +32298,3881,rock and roll,1379152501 +32298,3882,cheerleading,1245449686 +32298,3889,franchise,1246584657 +32298,3889,immortality,1246584657 +32298,3889,sword fight,1246584657 +32298,3897,journalism,1247042077 +32298,3897,nudity (topless),1400284087 +32298,3897,rock and roll,1247042082 +32298,3897,writers,1247042154 +32298,3901,karaoke,1252738838 +32298,3902,nudity (full frontal),1400285527 +32298,3906,Caribbean,1246570063 +32298,3906,Latin America,1248165775 +32298,3906,lawyers,1245290283 +32298,3906,police,1246569750 +32298,3906,Puerto Rico,1245290349 +32298,3906,remake,1246569789 +32298,3906,wrongly accused,1246570352 +32298,3907,New York City,1246760123 +32298,3907,orphans,1246760123 +32298,3909,Brazil,1245153526 +32298,3909,nudity (topless),1400282234 +32298,3910,blindness,1245811134 +32298,3910,disability,1245811136 +32298,3910,immigrants,1255603179 +32298,3910,wrongly accused,1255603192 +32298,3911,dogs,1245496219 +32298,3911,mockumentary,1245496216 +32298,3911,satire,1246452164 +32298,3915,boxing,1247043802 +32298,3915,sports,1247043813 +32298,3916,football,1245060726 +32298,3916,high school,1245060739 +32298,3916,racism,1245060722 +32298,3916,sports,1245060724 +32298,3917,franchise,1371006875 +32298,3918,franchise,1371006901 +32298,3919,franchise,1371006879 +32298,3925,black and white,1246614391 +32298,3925,immigrants,1246614443 +32298,3926,submarine,1249051153 +32298,3927,Jerome Bixby,1382192421 +32298,3927,miniaturization,1384093616 +32298,3932,based on a book,1196562617 +32298,3932,H.G. Wells,1196562617 +32298,3937,robots,1388817129 +32298,3938,nudity (topless),1428098577 +32298,3939,imdb bottom 100,1195618705 +32298,3946,assassin,1247216479 +32298,3947,nudity (topless),1414468290 +32298,3949,addiction,1244891821 +32298,3949,based on a book,1246582053 +32298,3949,disturbing,1244891818 +32298,3949,drugs,1248077423 +32298,3949,heroin,1248077426 +32298,3949,imdb top 250,1246358526 +32298,3949,nude black women,1371588290 +32298,3949,nudity (full frontal),1400284411 +32298,3949,prostitution,1248143056 +32298,3950,military,1270330183 +32298,3950,nudity (full frontal),1400284911 +32298,3953,nudity (topless),1400282892 +32298,3954,nudity (topless),1400279781 +32298,3954,voyeurism,1246472761 +32298,3955,nudity (topless),1400282530 +32298,3959,based on a book,1196562465 +32298,3959,H.G. Wells,1196562465 +32298,3959,inventor,1246893353 +32298,3959,time travel,1246893362 +32298,3967,ballet,1255255323 +32298,3967,BBC Films,1244499869 +32298,3967,boxing,1255255330 +32298,3967,dance,1252134678 +32298,3967,England,1255255507 +32298,3967,homophobia,1255257563 +32298,3967,mining,1255255507 +32298,3968,deal with the devil,1245735925 +32298,3968,devil,1245392742 +32298,3968,remake,1245735916 +32298,3972,martial arts,1328099910 +32298,3973,nudity (topless),1400277664 +32298,3977,based on a TV show,1248155351 +32298,3977,directorial debut,1207134096 +32298,3978,golf,1259104933 +32298,3978,sports,1259104938 +32298,3979,devil,1404613739 +32298,3980,military,1384677472 +32298,3980,racism,1384677500 +32298,3981,Mars,1246178493 +32298,3983,siblings,1349053196 +32298,3983,single parents,1349053195 +32298,3984,franchise,1246471467 +32298,3984,James Bond,1246471471 +32298,3985,based on a book,1216589865 +32298,3985,World War II,1216589848 +32298,3986,biology,1240889363 +32298,3986,cloning,1195149676 +32298,3988,based on a book,1342402326 +32298,3988,based on a TV show,1246979865 +32298,3988,Christmas,1342402322 +32298,3988,Dr. Seuss,1342402324 +32298,3989,1970s,1245239053 +32298,3989,anti-Semitism,1246770869 +32298,3989,Germany,1245239045 +32298,3989,Islam,1258611122 +32298,3989,Judaism,1258611122 +32298,3989,massacre,1246770866 +32298,3989,Olympics,1245239038 +32298,3989,Oscar (Best Documentary Feature),1205300363 +32298,3989,religion,1246770864 +32298,3989,terrorism,1246770863 +32298,3989,true story,1245239033 +32298,3991,dogs,1249526217 +32298,3991,sequel,1249526241 +32298,3992,Italy,1316546136 +32298,3992,nudity (full frontal),1400284869 +32298,3992,Sicily,1316546136 +32298,3993,BDSM,1248507781 +32298,3993,censorship,1248507781 +32298,3993,nudity (topless),1400149283 +32298,3993,sex,1248507781 +32298,3993,writers,1248507781 +32298,3994,superhero,1384629878 +32298,3996,china,1245291916 +32298,3996,martial arts,1245293712 +32298,3996,sword fight,1245293709 +32298,3997,dragons,1394788670 +32298,3999,mountain climbing,1207662749 +32298,4001,Chicago,1244762510 +32298,4001,police,1244762510 +32298,4002,road trip,1245280963 +32298,4002,trains,1193961714 +32298,4005,franchise,1246471803 +32298,4005,James Bond,1246471799 +32298,4006,robots,1245415511 +32298,4007,ambition,1245501358 +32298,4007,business,1245501325 +32298,4007,business is the antagonist,1394989934 +32298,4007,corruption,1245501328 +32298,4008,anti-war,1249521850 +32298,4008,nudity (full frontal),1400285052 +32298,4008,Vietnam War,1384388532 +32298,4011,boxing,1293616812 +32298,4011,ensemble cast,1296641965 +32298,4011,imdb top 250,1250219029 +32298,4011,multiple storylines,1293616822 +32298,4011,narrated,1296641935 +32298,4011,twist ending,1293616785 +32298,4012,stand-up comedy,1246588521 +32298,4014,based on a book,1246446364 +32298,4014,magic,1245232112 +32298,4014,remake,1245232079 +32298,4014,single parents,1248326956 +32298,4014,small town,1245232083 +32298,4015,aliens,1253396529 +32298,4016,Disney,1248148103 +32298,4016,Latin America,1319918583 +32298,4016,South America,1319918590 +32298,4019,high school,1245833659 +32298,4019,private school,1247045287 +32298,4019,school drama,1245833663 +32298,4019,writers,1246598388 +32298,4020,nudity (topless),1400283175 +32298,4021,biography,1246598421 +32298,4021,Cuba,1246585523 +32298,4021,gay,1255253233 +32298,4021,poets,1246598421 +32298,4021,writers,1246598421 +32298,4022,island,1247207767 +32298,4022,survival,1247207779 +32298,4022,villain nonexistent or not needed for good story,1383223810 +32298,4023,alternate reality,1246494275 +32298,4024,based on a book,1297541953 +32298,4024,Edith Wharton,1297541947 +32298,4024,New York City,1297542018 +32298,4025,beauty pageant,1247208253 +32298,4027,1930s,1246103830 +32298,4027,based on a poem,1246103890 +32298,4027,bluegrass,1245118387 +32298,4027,escape,1258707223 +32298,4027,fugitive,1246103901 +32298,4027,great soundtrack,1252043232 +32298,4027,Ku Klux Klan,1245118380 +32298,4027,prison escape,1258707223 +32298,4027,quirky,1260176780 +32298,4029,based on a book,1232936766 +32298,4029,David Mamet,1232936766 +32298,4030,vampires,1246444923 +32298,4031,based on a book,1382405900 +32298,4031,Cormac McCarthy,1382405899 +32298,4033,Cold War,1246402783 +32298,4033,history,1246402730 +32298,4033,John F. Kennedy,1246402754 +32298,4033,politics,1246402756 +32298,4033,US President,1246490035 +32298,4034,corruption,1321159367 +32298,4034,drugs,1321159165 +32298,4034,ensemble cast,1321159452 +32298,4034,Latin America,1321159386 +32298,4034,Mexico,1321159386 +32298,4034,police,1321159371 +32298,4034,police corruption,1321159368 +32298,4034,politics,1321159386 +32298,4035,nudity (full frontal),1400285205 +32298,4036,1920s,1246445129 +32298,4036,movie business,1266195246 +32298,4036,nudity (topless),1400283200 +32298,4036,vampires,1246445118 +32298,4037,con artists,1244946002 +32298,4037,David Mamet,1232937387 +32298,4037,directorial debut,1207216475 +32298,4037,gambling,1248304879 +32298,4039,based on a play,1245376328 +32298,4039,Broadway,1246580411 +32298,4039,comic strip,1246580394 +32298,4046,American Civil War,1422231061 +32298,4046,civil war,1422231061 +32298,4046,religion,1422231061 +32298,4047,American Civil War,1245829945 +32298,4047,based on a book,1245829963 +32298,4047,civil war,1245830037 +32298,4051,imdb bottom 100,1195618155 +32298,4052,business,1393544446 +32298,4054,ballet,1255257617 +32298,4054,dance,1255257619 +32298,4054,hip hop,1244715704 +32298,4064,blaxploitation,1244926508 +32298,4064,drugs,1270883468 +32298,4064,nude black women,1250128556 +32298,4064,nudity (topless),1400280678 +32298,4064,police,1270883468 +32298,4064,police corruption,1270883470 +32298,4064,prostitution,1270883536 +32298,4064,revenge,1270883478 +32298,4064,vigilante,1270883482 +32298,4065,blaxploitation,1244926391 +32298,4065,drugs,1208203627 +32298,4065,nude black women,1250128543 +32298,4065,nudity (topless),1400281004 +32298,4065,prostitution,1245913110 +32298,4065,revenge,1244926387 +32298,4065,vigilante,1245913122 +32298,4065,visceral,1246777542 +32298,4066,blaxploitation,1204862529 +32298,4066,parody,1204862529 +32298,4068,cheerleading,1196902196 +32298,4079,nudity (topless),1400282578 +32298,4084,sequel,1215842233 +32298,4085,police,1195733474 +32298,4086,Louisiana,1246573205 +32298,4086,New Orleans,1245227360 +32298,4086,police,1245227356 +32298,4088,nudity (topless),1400279601 +32298,4089,immigrants,1248157373 +32298,4089,Latin America,1248157373 +32298,4089,Mexico,1248157341 +32298,4091,high school,1192610438 +32298,4092,androids,1255569824 +32298,4092,post-apocalyptic,1255569819 +32298,4092,robots,1255569832 +32298,4095,Africa,1244973346 +32298,4095,based on a book,1258978164 +32298,4095,journalism,1244973359 +32298,4095,South Africa,1244973354 +32298,4095,true story,1244973317 +32298,4096,H.P. Lovecraft,1197720640 +32298,4102,homophobia,1254736293 +32298,4102,stand-up comedy,1246588474 +32298,4103,acting debut,1404625636 +32298,4103,based on a book,1387767938 +32298,4103,China,1387767903 +32298,4103,J. G. Ballard,1387767931 +32298,4103,prison,1387767896 +32298,4103,World War II,1246760742 +32298,4105,banned movie,1248152508 +32298,4105,black comedy,1246775924 +32298,4105,campy,1246775917 +32298,4105,controversial,1248152508 +32298,4105,cult film,1246453459 +32298,4105,demons,1246775932 +32298,4105,directorial debut,1207132195 +32298,4105,low budget,1386211087 +32298,4109,based on a book,1394186695 +32298,4113,based on a play,1204117097 +32298,4116,actors,1317345495 +32298,4116,directorial debut,1317345495 +32298,4116,movie business,1317345495 +32298,4117,England,1245377951 +32298,4117,London,1245377952 +32298,4117,World War II,1245377954 +32298,4124,franchise,1251506107 +32298,4124,imdb bottom 100,1195618738 +32298,4124,shark,1251506109 +32298,4125,imdb bottom 100,1195617286 +32298,4126,based on a book,1246583012 +32298,4126,Brett Easton Ellis,1246582999 +32298,4128,siblings,1246578910 +32298,4128,vampires,1244770214 +32298,4130,switching places,1245498028 +32298,4133,based on a TV show,1197805470 +32298,4135,monster,1246616184 +32298,4142,apocalypse,1245401693 +32298,4142,based on a book,1245401702 +32298,4142,Biblical,1245401697 +32298,4142,Christianity,1240895163 +32298,4142,propaganda,1248326527 +32298,4142,religion,1240895162 +32298,4144,1960s,1245832052 +32298,4144,adultery,1245832072 +32298,4144,Hong Kong,1245832063 +32298,4148,based on a book,1232936694 +32298,4148,cannibalism,1246454402 +32298,4148,David Mamet,1232936694 +32298,4148,serial killer,1148728454 +32298,4149,nudity (topless),1400283250 +32298,4153,rags to riches,1245540345 +32298,4153,reincarnation,1245540361 +32298,4153,remake,1208569752 +32298,4153,switching places,1245498204 +32298,4166,reality TV,1246981342 +32298,4166,satire,1246981407 +32298,4166,television,1246981349 +32298,4167,nudity (topless),1423123860 +32298,4171,Africa,1293652728 +32298,4171,apartheid,1293652728 +32298,4171,racism,1293652728 +32298,4171,segregation,1293652728 +32298,4171,South Africa,1293652728 +32298,4174,immigrants,1246614728 +32298,4178,based on a book,1197708430 +32298,4178,John Steinbeck,1197708430 +32298,4184,angel,1248647050 +32298,4188,writers,1379412437 +32298,4189,based on a book,1246345411 +32298,4189,Biblical,1246345415 +32298,4189,Christianity,1246345410 +32298,4189,Jesus Christ,1246345508 +32298,4189,religion,1246345409 +32298,4196,H.P. Lovecraft,1197720440 +32298,4200,martial arts,1246754230 +32298,4200,multiple roles,1246754183 +32298,4200,nudity (topless),1413915199 +32298,4200,revenge,1246754288 +32298,4200,siblings,1246754229 +32298,4200,twins,1246754230 +32298,4206,Caribbean,1241153234 +32298,4206,Jamaica,1241153234 +32298,4206,Latin America,1248165741 +32298,4206,police,1246392030 +32298,4207,military,1209881461 +32298,4210,based on a book,1246746601 +32298,4210,FBI,1246746601 +32298,4210,Hannibal Lecter,1246746561 +32298,4210,remade,1246746601 +32298,4210,serial killer,1246746564 +32298,4211,courtroom,1404861686 +32298,4212,Agatha Christie,1280965985 +32298,4212,based on a book,1280965988 +32298,4214,college,1245588981 +32298,4214,franchise,1245589061 +32298,4214,fraternity,1245588984 +32298,4214,nudity (full frontal),1400285765 +32298,4215,fraternity,1247215662 +32298,4218,nudity (full frontal),1421459933 +32298,4223,World War II,1249051499 +32298,4225,1960s,1374997301 +32298,4225,Australia,1240702657 +32298,4225,NASA,1258964076 +32298,4225,true story,1258964098 +32298,4225,villain nonexistent or not needed for good story,1374997311 +32298,4226,amnesia,1293878047 +32298,4226,black and white,1198481658 +32298,4226,complicated,1344324329 +32298,4226,imdb top 250,1245049569 +32298,4226,memory,1293878051 +32298,4226,nonlinear,1293878092 +32298,4226,psychology,1293878087 +32298,4226,revenge,1293878075 +32298,4226,tense,1384106111 +32298,4226,twist ending,1293878083 +32298,4228,con artists,1244946096 +32298,4234,based on a book,1248165381 +32298,4234,Latin America,1248165427 +32298,4234,nudity (topless),1400282849 +32298,4234,Panama,1248165423 +32298,4234,South America,1248165422 +32298,4235,imdb top 250,1246452462 +32298,4235,Latin America,1248155509 +32298,4235,Mexico,1245057012 +32298,4235,Mexico City,1245057030 +32298,4238,based on a book,1221427216 +32298,4239,drugs,1246485321 +32298,4239,dysfunctional family,1379129077 +32298,4239,true story,1246485336 +32298,4241,video game adaptation,1246575634 +32298,4243,serial killer,1252119833 +32298,4243,small town,1252119833 +32298,4243,Utah,1252119833 +32298,4246,based on a book,1162262572 +32298,4249,family gatherings,1245150413 +32298,4249,funeral,1245218646 +32298,4251,Australia,1253688107 +32298,4251,prison,1253688106 +32298,4253,based on a play,1232936898 +32298,4253,David Mamet,1232936802 +32298,4256,nudity (full frontal),1400277048 +32298,4256,prostitution,1295726703 +32298,4257,nudity (full frontal),1401959440 +32298,4259,based on a book,1245497091 +32298,4259,board game,1245497109 +32298,4259,chess,1245497101 +32298,4262,drugs,1245540748 +32298,4262,Florida,1245540726 +32298,4262,gangsters,1246485168 +32298,4262,guns,1266883401 +32298,4262,imdb top 250,1245540744 +32298,4262,immigrants,1245540731 +32298,4262,Miami,1245540726 +32298,4262,organized crime,1266883408 +32298,4262,remake,1220152545 +32298,4263,addiction,1258551887 +32298,4263,alcoholism,1258551872 +32298,4266,nudity (topless),1400281434 +32298,4266,vampires,1315732078 +32298,4270,Egypt,1246734748 +32298,4274,big budget,1196516585 +32298,4277,Arthur Conan Doyle,1369666732 +32298,4277,based on a book,1369666732 +32298,4278,black and white,1204200688 +32298,4278,controversial,1248140850 +32298,4278,history,1245286902 +32298,4278,Nazis,1197713953 +32298,4278,propaganda,1245286869 +32298,4280,based on a book,1209785077 +32298,4280,feminism,1369992112 +32298,4280,nudity (topless),1400283310 +32298,4280,writers,1318445837 +32298,4282,Roman empire,1246254125 +32298,4288,nudity (full frontal),1400285551 +32298,4288,unsimulated sex,1400289541 +32298,4294,Dr. Seuss,1343729574 +32298,4295,nudity (topless),1400279786 +32298,4299,medieval,1245447444 +32298,4301,jazz,1255663652 +32298,4301,latin jazz,1255663659 +32298,4301,latin music,1255663652 +32298,4301,musicians,1406947271 +32298,4302,Africa,1246759442 +32298,4302,desert,1246759441 +32298,4302,ghost town,1246759441 +32298,4302,tourists,1246759441 +32298,4304,business,1242203085 +32298,4304,computers,1242203095 +32298,4304,internet,1242203110 +32298,4306,based on a book,1246749335 +32298,4306,crude humor,1308034633 +32298,4306,Dreamworks,1246749345 +32298,4306,fairy tale,1305402765 +32298,4306,franchise,1307966559 +32298,4306,parody,1307966551 +32298,4306,talking animals,1307966547 +32298,4306,witty,1308034584 +32298,4307,nudity (topless),1414555203 +32298,4308,France,1303712516 +32298,4308,musicians,1379409759 +32298,4308,Oscar (Best Art Direction - Set Decoration),1303712549 +32298,4308,Oscar (Best Costume Design),1303712545 +32298,4308,Paris,1303712516 +32298,4308,quirky,1245389800 +32298,4308,stylized,1245389791 +32298,4310,big budget,1196516001 +32298,4310,Hawaii,1243426124 +32298,4310,history,1357544639 +32298,4310,World War II,1243426112 +32298,4312,mountains,1387282593 +32298,4314,Brooklyn,1246890317 +32298,4314,high school,1246890409 +32298,4314,marching bands,1246893467 +32298,4314,New York City,1246942406 +32298,4314,pregnancy,1248716528 +32298,4314,teen pregnancy,1248716528 +32298,4316,blindness,1245466250 +32298,4316,figure skating,1245466244 +32298,4321,Colorado,1198919544 +32298,4326,1960s,1245118222 +32298,4326,civil rights,1245118213 +32298,4326,Ku Klux Klan,1245118247 +32298,4326,Mississippi,1245118335 +32298,4326,racism,1251861504 +32298,4326,true story,1245118218 +32298,4327,Latin America,1248164051 +32298,4327,Mexico,1248164043 +32298,4327,remake,1248164051 +32298,4334,Taiwan,1245152990 +32298,4339,based on a book,1210468076 +32298,4339,trains,1193962092 +32298,4339,World War II,1400376453 +32298,4341,based on a book,1206316331 +32298,4344,computers,1248507320 +32298,4344,DVD:alternate endings,1246315133 +32298,4344,hackers,1198470932 +32298,4344,nude black women,1250128528 +32298,4344,nudity (topless),1400283616 +32298,4346,nudity (topless),1414554239 +32298,4349,based on a book,1317337998 +32298,4349,nudity (full frontal),1400284805 +32298,4350,mockumentary,1247179872 +32298,4351,Hawaii,1228453019 +32298,4351,nudity (topless),1400283522 +32298,4351,undercover cop,1388039498 +32298,4356,based on a play,1247121391 +32298,4356,Broadway,1247121391 +32298,4359,adultery,1249010590 +32298,4361,cross dressing,1245749172 +32298,4361,cross dressing men,1246619911 +32298,4361,impostor,1245749168 +32298,4361,love triangles,1246755768 +32298,4361,queer,1246618495 +32298,4367,heroine in tight suit,1246574617 +32298,4367,video game adaptation,1246574594 +32298,4369,cars,1247209548 +32298,4369,franchise,1370159910 +32298,4370,androids,1244891335 +32298,4370,artificial intelligence,1240889372 +32298,4370,bittersweet,1300777691 +32298,4370,Brian Aldiss,1244891320 +32298,4370,fairy tale,1206956899 +32298,4370,robots,1240889374 +32298,4370,Saturn Award (Best Special Effects),1244891313 +32298,4371,nude black women,1251024672 +32298,4371,nudity (topless),1400281586 +32298,4376,bluegrass,1299899548 +32298,4376,musicians,1379411126 +32298,4380,heist,1297557933 +32298,4384,Africa,1246761619 +32298,4384,assassin,1246761619 +32298,4384,business,1246394512 +32298,4384,corruption,1246394512 +32298,4384,history,1246761631 +32298,4384,military,1246394512 +32298,4384,politics,1246394512 +32298,4384,true story,1246394512 +32298,4388,parody,1160654894 +32298,4389,boarding school,1248508107 +32298,4389,lesbian,1248508113 +32298,4389,nudity (topless),1400281525 +32298,4389,queer,1320317266 +32298,4390,banned movie,1248145234 +32298,4390,controversial,1248145234 +32298,4390,male nudity,1410016726 +32298,4390,nudity (full frontal),1400285715 +32298,4390,rape,1246121325 +32298,4390,revenge,1246121329 +32298,4390,unsimulated sex,1400286596 +32298,4403,based on a book,1369992420 +32298,4403,Edgar Allan Poe,1245395196 +32298,4403,Richard Matheson,1245395200 +32298,4404,based on a play,1245736034 +32298,4404,deal with the devil,1245736011 +32298,4404,devil,1245736014 +32298,4407,El Salvador,1248164625 +32298,4407,Latin America,1248164642 +32298,4407,South America,1248164644 +32298,4409,black and white,1204203363 +32298,4410,nudity (topless),1400282168 +32298,4413,based on a book,1196562328 +32298,4413,H.G. Wells,1196562328 +32298,4417,Lovecraftian mythology,1245398788 +32298,4421,nudity (topless),1401589352 +32298,4425,imdb bottom 100,1195617953 +32298,4425,werewolves,1246445571 +32298,4429,based on a book,1206780857 +32298,4429,Herman Melville,1206780857 +32298,4429,Ray Bradbury,1206780857 +32298,4437,creepy,1318141355 +32298,4443,space,1245497749 +32298,4446,big budget,1412275432 +32298,4446,video game adaptation,1195557402 +32298,4447,chick flick,1245408633 +32298,4447,college,1195732023 +32298,4447,Harvard,1245226375 +32298,4447,lawyers,1243784396 +32298,4447,private school,1247047355 +32298,4450,bullying,1244774247 +32298,4450,nudity (full frontal),1400284470 +32298,4450,rape,1240889779 +32298,4450,revenge,1306449788 +32298,4450,true story,1240889777 +32298,4452,directorial debut,1207199623 +32298,4452,organized crime,1252948945 +32298,4454,claymation,1243332778 +32298,4454,free to download,1243332704 +32298,4454,no dialogue,1243332838 +32298,4454,short,1246979227 +32298,4458,Africa,1240889405 +32298,4458,nature,1249009726 +32298,4459,Alaska,1196066248 +32298,4459,Arctic,1368313229 +32298,4459,bears,1368313240 +32298,4459,nature,1196066248 +32298,4459,polar,1368313229 +32298,4465,courtroom,1245289639 +32298,4465,rape,1245289645 +32298,4467,biography,1274356514 +32298,4467,imagination,1246776668 +32298,4467,tall tales,1305781296 +32298,4467,Trilogy of the Imagination,1244771353 +32298,4468,Argentina,1379414078 +32298,4468,Buenos Aires,1379414073 +32298,4468,Latin America,1379414087 +32298,4468,South America,1379414087 +32298,4476,fish out of water,1245540183 +32298,4476,mistaken identity,1245282674 +32298,4476,multiple roles,1246749643 +32298,4476,siblings,1245539345 +32298,4476,twins,1245282669 +32298,4478,based on a play,1247746921 +32298,4478,Biloxi,1247746927 +32298,4478,boot camp,1247746955 +32298,4478,military,1247746945 +32298,4478,Mississippi,1247746924 +32298,4478,Neil Simon,1247746939 +32298,4478,prostitution,1247746919 +32298,4478,World War II,1247746963 +32298,4479,addiction,1245117068 +32298,4479,biography,1215493325 +32298,4479,drugs,1245117068 +32298,4479,jazz,1240889665 +32298,4484,artist,1246597635 +32298,4484,biography,1246597518 +32298,4487,Caribbean,1383479278 +32298,4487,Jamaica,1246391928 +32298,4489,immigrants,1246749493 +32298,4489,multiple roles,1246749504 +32298,4489,nude black women,1250142241 +32298,4489,nudity (topless),1400283500 +32298,4489,royalty,1246749534 +32298,4498,serial killer,1247215202 +32298,4499,con artists,1244945931 +32298,4499,remake,1245743417 +32298,4500,nudity (topless),1420323935 +32298,4502,Christmas,1387118804 +32298,4508,Africa,1249009664 +32298,4508,nature,1249009651 +32298,4514,werewolves,1246445581 +32298,4515,Beatles,1246588017 +32298,4515,biography,1246588002 +32298,4519,dinosaurs,1248646388 +32298,4528,nudity (topless),1413923379 +32298,4528,serial killer,1413923378 +32298,4528,Vietnam,1413923379 +32298,4528,Vietnam War,1413923379 +32298,4529,restaurant,1386991691 +32298,4533,nudity (full frontal),1400285144 +32298,4533,zombies,1246444055 +32298,4535,Australia,1240702735 +32298,4535,based on a poem,1248397444 +32298,4535,horses,1248397369 +32298,4537,fugitive,1265737059 +32298,4539,dance,1379411915 +32298,4539,latin music,1379411915 +32298,4541,Caribbean,1232024944 +32298,4541,Haiti,1246471101 +32298,4541,Latin America,1248165753 +32298,4541,zombies,1246471114 +32298,4544,artificial intelligence,1246315234 +32298,4544,robots,1195733122 +32298,4544,sequel,1264938107 +32298,4545,artificial intelligence,1245287958 +32298,4545,military,1245287957 +32298,4545,robots,1245287952 +32298,4546,based on a book,1225524078 +32298,4546,kidnapping,1249520566 +32298,4546,remade,1306626640 +32298,4553,aliens,1245398195 +32298,4553,allegory,1245398199 +32298,4553,based on a book,1369992327 +32298,4553,conspiracy,1245398190 +32298,4553,consumerism,1245496025 +32298,4553,nudity (topless),1404620934 +32298,4553,satire,1245398180 +32298,4554,communism,1255603665 +32298,4554,Poland,1255603665 +32298,4558,siblings,1245539362 +32298,4558,twins,1380491038 +32298,4560,based on a book,1223701291 +32298,4560,Dean Koontz,1223701291 +32298,4563,Australia,1246362301 +32298,4570,directorial debut,1207201946 +32298,4571,Bechdel Test:Fail,1406946775 +32298,4571,buddy movie,1406947121 +32298,4571,great soundtrack,1406946750 +32298,4571,high school,1406947534 +32298,4571,history,1247044068 +32298,4571,phone booth,1406946851 +32298,4571,rock and roll,1406947537 +32298,4571,short,1406947534 +32298,4571,time travel,1406946753 +32298,4573,nudity (topless),1400281098 +32298,4573,strippers,1310280835 +32298,4580,nudity (topless),1400282105 +32298,4598,imdb bottom 100,1195616867 +32298,4602,1920s,1245234806 +32298,4602,casino,1245234826 +32298,4602,Harlem,1245234806 +32298,4602,New York City,1245234806 +32298,4602,organized crime,1387124161 +32298,4602,police corruption,1387124161 +32298,4605,business,1251627986 +32298,4605,satire,1251627986 +32298,4610,nudity (topless),1400281454 +32298,4615,nudity (topless),1419975855 +32298,4616,high school,1242863665 +32298,4616,true story,1242203886 +32298,4621,babies,1240912529 +32298,4622,nudity (topless),1400281285 +32298,4638,dinosaurs,1245117462 +32298,4638,franchise,1245117464 +32298,4638,Michael Crichton,1245117466 +32298,4640,gangsters,1248075934 +32298,4640,yakuza,1248075943 +32298,4641,based on a comic,1408328959 +32298,4641,quirky,1260176803 +32298,4642,based on a book,1206924880 +32298,4642,based on a play,1246618328 +32298,4642,directorial debut,1207132782 +32298,4642,queer,1246618310 +32298,4642,transgender,1347427555 +32298,4642,vocalists,1246735238 +32298,4643,post-apocalyptic,1245391509 +32298,4643,remake,1245391522 +32298,4654,nudity (topless),1402284617 +32298,4655,Central America,1396505996 +32298,4655,El Salvador,1396506000 +32298,4655,politics,1396506002 +32298,4659,nudity (topless),1407221238 +32298,4662,blindness,1245466472 +32298,4662,deafness,1245466472 +32298,4662,nudity (topless),1403907367 +32298,4668,nudity (topless),1400279484 +32298,4677,dogs,1244882863 +32298,4678,goofy,1369891925 +32298,4678,parody,1369897358 +32298,4678,television,1369897358 +32298,4683,video games,1382082951 +32298,4688,17th century,1249501272 +32298,4688,based on a book,1249501397 +32298,4688,Canada,1249501351 +32298,4688,Catholicism,1249501370 +32298,4688,Christianity,1249501370 +32298,4688,colonialism,1249501516 +32298,4688,Native Americans,1249501295 +32298,4688,nudity (topless),1400282064 +32298,4688,Quebec,1249501522 +32298,4688,religion,1249501370 +32298,4690,1930s,1248078769 +32298,4690,jazz,1248078769 +32298,4690,jazz club,1248078769 +32298,4690,nightclub,1248078769 +32298,4694,nudity (topless),1408858767 +32298,4696,19th century,1246752672 +32298,4696,Mexico,1246752672 +32298,4696,multiple roles,1246752672 +32298,4697,conjoined twins,1246746438 +32298,4697,siblings,1246746438 +32298,4697,twins,1246746438 +32298,4698,directorial debut,1207193501 +32298,4699,Caribbean,1246402986 +32298,4699,con artists,1246402986 +32298,4699,Cuba,1246402986 +32298,4699,Latin America,1248165759 +32298,4699,nudity (topless),1400282174 +32298,4700,royalty,1246760293 +32298,4701,buddy movie,1348972558 +32298,4701,casino,1348974040 +32298,4701,China,1348972515 +32298,4701,franchise,1348972515 +32298,4701,Hong Kong,1348972495 +32298,4701,Las Vegas,1348972515 +32298,4701,martial arts,1248147279 +32298,4701,police,1348972558 +32298,4703,1950s,1245231979 +32298,4703,Africa,1245231985 +32298,4703,Cameroon,1245231971 +32298,4703,colonialism,1245231988 +32298,4703,racism,1245231989 +32298,4705,based on a play,1246618776 +32298,4705,cross dressing,1246618768 +32298,4705,queer,1246618746 +32298,4705,remade,1246618754 +32298,4713,based on a book,1247210727 +32298,4713,drugs,1247210643 +32298,4713,nudity (topless),1400282856 +32298,4716,nudity (topless),1406902329 +32298,4717,1930s,1248076567 +32298,4717,Chicago,1248076567 +32298,4717,gangsters,1248076531 +32298,4717,Mafia,1248076567 +32298,4717,martial arts,1248076018 +32298,4717,organized crime,1248076567 +32298,4718,nudity (topless),1400283974 +32298,4718,sequel,1247216921 +32298,4720,afterlife,1250139492 +32298,4720,alternate reality,1246454728 +32298,4720,ghosts,1241004782 +32298,4720,haunted house,1241004782 +32298,4720,single parents,1245058984 +32298,4720,twist ending,1240911707 +32298,4725,asylum,1318391110 +32298,4725,creepy,1354305357 +32298,4725,multiple personalities,1354305346 +32298,4725,serial killer,1354305299 +32298,4727,based on a book,1282542430 +32298,4727,nudity (topless),1400282816 +32298,4727,World War II,1245153925 +32298,4729,addiction,1245152587 +32298,4729,alcoholism,1245152584 +32298,4729,drugs,1246569494 +32298,4729,lawyers,1246569494 +32298,4729,nudity (topless),1400280758 +32298,4729,road trip,1245152568 +32298,4734,drugs,1246752980 +32298,4734,multiple roles,1246752958 +32298,4734,parody,1345195767 +32298,4735,Mars,1246178600 +32298,4738,New York City,1382921007 +32298,4738,time travel,1382920977 +32298,4743,remake,1246614668 +32298,4743,restaurant,1246614675 +32298,4744,monster,1247216417 +32298,4744,siblings,1256839741 +32298,4745,based on a play,1206783176 +32298,4745,high school,1386221365 +32298,4745,Shakespeare,1386221213 +32298,4750,imdb bottom 100,1240889350 +32298,4752,nudity (topless),1408363092 +32298,4754,cult,1246454093 +32298,4754,island,1196843191 +32298,4754,nudity (topless),1407221185 +32298,4754,religion,1195824310 +32298,4754,remade,1301317805 +32298,4754,small town,1207567365 +32298,4758,nudity (topless),1399885571 +32298,4761,nudity (topless),1403933327 +32298,4763,queer,1246618401 +32298,4763,Thailand,1246618394 +32298,4765,directorial debut,1207215981 +32298,4768,based on a book,1382649638 +32298,4769,Holocaust,1245239002 +32298,4769,Oscar (Best Documentary Feature),1205300414 +32298,4769,World War II,1245238998 +32298,4771,baseball,1209679431 +32298,4771,based on a book,1209679431 +32298,4772,New York City,1252119702 +32298,4772,restaurant,1252119692 +32298,4775,Golden Raspberry (Worst Actress),1253703969 +32298,4775,imdb bottom 100,1195617022 +32298,4775,musicians,1379409174 +32298,4776,corruption,1245279752 +32298,4776,nudity (topless),1400283790 +32298,4776,police,1231729603 +32298,4776,police corruption,1245050393 +32298,4783,Antarctica,1368313333 +32298,4783,polar,1368313333 +32298,4786,based on a book,1245396239 +32298,4786,ghosts,1245396255 +32298,4786,Richard Matheson,1245396239 +32298,4787,directorial debut,1404040490 +32298,4787,genius,1245834791 +32298,4787,single parents,1245834798 +32298,4791,based on a book,1420191205 +32298,4791,Elmore Leonard,1420191205 +32298,4792,remade,1217771003 +32298,4793,black comedy,1321988634 +32298,4793,immigrants,1321988634 +32298,4793,Sweden,1321988634 +32298,4796,based on a play,1248262504 +32298,4796,comedy of manners,1248262504 +32298,4796,England,1248262504 +32298,4799,treasure hunt,1246708361 +32298,4800,Africa,1246759583 +32298,4800,treasure hunt,1246759583 +32298,4803,directorial debut,1207191708 +32298,4808,remake,1264313300 +32298,4809,environmental,1246447321 +32298,4810,nudity (topless),1400303591 +32298,4814,kidnapping,1247214935 +32298,4816,fashion,1250026162 +32298,4816,satire,1250026184 +32298,4823,New York City,1254712449 +32298,4826,World War II,1248646529 +32298,4832,nudity (topless),1414530789 +32298,4833,haunted house,1278033321 +32298,4837,serial killer,1400289341 +32298,4837,unsimulated sex,1400289341 +32298,4840,France,1246668381 +32298,4840,Nazis,1246668376 +32298,4840,World War II,1238327200 +32298,4842,based on a book,1223787382 +32298,4846,martial arts,1256640984 +32298,4847,male nudity,1349498291 +32298,4847,nudity (full frontal),1400285261 +32298,4848,amnesia,1245409336 +32298,4848,bisexual,1319005370 +32298,4848,creepy,1319005366 +32298,4848,erotic,1245409320 +32298,4848,lesbian,1244845997 +32298,4848,movie business,1319005352 +32298,4848,nonlinear,1319005346 +32298,4848,nudity (full frontal),1400285321 +32298,4848,weird,1319005383 +32298,4851,nudity (topless),1400279404 +32298,4855,police,1246103037 +32298,4856,space,1196066318 +32298,4857,Broadway,1246178173 +32298,4857,Judaism,1246178180 +32298,4858,space,1196064918 +32298,4861,space,1196065876 +32298,4863,Baltimore,1246568967 +32298,4863,Maryland,1246568974 +32298,4865,19th century,1245407959 +32298,4865,brutal,1254909967 +32298,4865,Christianity,1254910099 +32298,4865,comic book,1246578785 +32298,4865,England,1245407989 +32298,4865,insanity,1254909956 +32298,4865,Jack the Ripper,1246578792 +32298,4865,London,1245407985 +32298,4865,mental illness,1254910275 +32298,4865,nudity (full frontal),1400285308 +32298,4865,police,1260265039 +32298,4865,prostitution,1245407975 +32298,4865,religion,1254909944 +32298,4865,serial killer,1254909928 +32298,4869,nudity (topless),1407113418 +32298,4870,ensemble cast,1247478609 +32298,4870,multiple storylines,1203325527 +32298,4870,nudity (topless),1400280697 +32298,4870,strippers,1195556446 +32298,4872,based on a book,1295726743 +32298,4872,male nudity,1400149223 +32298,4872,nudity (full frontal),1400149223 +32298,4872,unsimulated sex,1400287383 +32298,4873,bad science,1253787000 +32298,4873,dreams,1247206664 +32298,4873,drugs,1260329739 +32298,4873,metaphysics,1240894988 +32298,4873,philosophy,1244768578 +32298,4873,pretentious,1386593352 +32298,4873,quirky,1254736968 +32298,4873,stylized,1245390307 +32298,4873,surreal,1244768584 +32298,4874,aliens,1246473472 +32298,4876,ghosts,1247368852 +32298,4876,haunted house,1233576891 +32298,4876,remake,1244767828 +32298,4878,confusing,1344598313 +32298,4878,directorial debut,1207213527 +32298,4878,imaginary friend,1310105487 +32298,4878,imdb top 250,1246449504 +32298,4878,insanity,1310105485 +32298,4878,mental illness,1310105483 +32298,4878,rabbits,1247290158 +32298,4878,time travel,1310105481 +32298,4880,disease,1408337708 +32298,4880,nudity (rear),1400284247 +32298,4880,terminal illness,1246495160 +32298,4881,adultery,1251007670 +32298,4881,black and white,1251007697 +32298,4881,small town,1251007670 +32298,4884,homophobia,1384393611 +32298,4884,Judaism,1384393601 +32298,4884,queer,1384393601 +32298,4884,religion,1384393601 +32298,4886,Pixar,1381377457 +32298,4887,alternate reality,1246449294 +32298,4888,based on a play,1311129871 +32298,4889,David Mamet,1232936589 +32298,4892,artist,1246597622 +32298,4892,nudity (full frontal),1400285273 +32298,4896,based on a book,1162261469 +32298,4896,board game,1246086813 +32298,4896,boarding school,1245060798 +32298,4896,chess,1245497046 +32298,4896,franchise,1196516349 +32298,4896,Halloween,1248256189 +32298,4896,Harry Potter,1344404541 +32298,4896,invisibility,1318274523 +32298,4896,magic,1245497052 +32298,4896,multiple roles,1246752319 +32298,4901,CIA,1245569609 +32298,4901,espionage,1245569644 +32298,4902,civil war,1306626250 +32298,4902,ghosts,1306626263 +32298,4902,orphans,1245227834 +32298,4902,Spanish Civil War,1245227816 +32298,4905,Harlem,1387124288 +32298,4905,New York City,1387124288 +32298,4906,nudity (topless),1400278560 +32298,4907,blaxploitation,1281926943 +32298,4909,based on a book,1245396377 +32298,4909,directorial debut,1207201857 +32298,4909,Richard Matheson,1245396377 +32298,4911,based on a poem,1245709736 +32298,4911,directorial debut,1298091359 +32298,4911,Lewis Carroll,1232163485 +32298,4912,based on a play,1245376443 +32298,4912,broadway,1245376443 +32298,4915,nudity (topless),1403906989 +32298,4925,Neil Simon,1247748217 +32298,4925,parody,1247748217 +32298,4928,May-December romance,1246593121 +32298,4928,nudity (topless),1400282021 +32298,4932,nudity (full frontal),1400285007 +32298,4936,dance,1279251047 +32298,4936,high school,1247043783 +32298,4939,time travel,1247103344 +32298,4941,comic strip,1246892863 +32298,4943,based on a book,1245744013 +32298,4943,Edgar Rice Burroughs,1245744013 +32298,4944,based on a book,1196562198 +32298,4944,H.G. Wells,1196562198 +32298,4951,based on a book,1207896515 +32298,4951,island,1207896678 +32298,4951,remake,1260446311 +32298,4953,based on a book,1245744043 +32298,4953,Edgar Rice Burroughs,1245744043 +32298,4954,remade,1370159806 +32298,4956,movie business,1392438376 +32298,4956,stunts,1392438376 +32298,4961,movie business,1246092934 +32298,4961,pornography,1246046324 +32298,4963,casino,1244885505 +32298,4963,ensemble cast,1197724268 +32298,4963,heist,1244885509 +32298,4963,Las Vegas,1244885502 +32298,4963,remake,1245749905 +32298,4966,based on a book,1245395127 +32298,4966,Richard Matheson,1245395127 +32298,4970,based on a book,1386566451 +32298,4971,New York City,1307343024 +32298,4971,nudity (topless),1400282224 +32298,4973,France,1246254513 +32298,4973,imdb top 250,1246254504 +32298,4973,nudity (topless),1400284071 +32298,4973,Paris,1246254516 +32298,4973,stylized,1245389855 +32298,4973,surreal,1240889459 +32298,4973,whimsical,1243497837 +32298,4974,high school,1257563838 +32298,4974,nudity (topless),1400283194 +32298,4974,parody,1257563833 +32298,4975,nudity (topless),1400283977 +32298,4975,remake,1245153817 +32298,4976,nudity (full frontal),1400284890 +32298,4978,based on a play,1226287298 +32298,4979,black comedy,1249520784 +32298,4979,deadpan,1244846207 +32298,4979,dysfunctional family,1246495523 +32298,4979,ensemble cast,1197724805 +32298,4979,family gatherings,1245150436 +32298,4979,quirky,1244768599 +32298,4979,siblings,1245540022 +32298,4980,multiple roles,1246753904 +32298,4980,rock and roll,1246588782 +32298,4980,time travel,1246588784 +32298,4985,nudity (topless),1403907147 +32298,4989,college,1195731964 +32298,4989,Harvard,1245226439 +32298,4992,time travel,1247040958 +32298,4993,based on a book,1162261598 +32298,4993,big budget,1244890226 +32298,4993,cliffhanger,1235640139 +32298,4993,epic,1245450288 +32298,4993,franchise,1246446056 +32298,4993,imdb top 250,1246446035 +32298,4993,long,1255168008 +32298,4993,magic,1246446037 +32298,4993,New Zealand,1355228709 +32298,4993,scenic,1240890430 +32298,4993,sequels filmed simultaneously,1244763441 +32298,4993,Tolkien,1245450188 +32298,4994,HUAC,1248509061 +32298,4995,biography,1380764949 +32298,4995,college,1245834038 +32298,4995,economics,1383743306 +32298,4995,genius,1246492691 +32298,4995,history,1380765018 +32298,4995,insanity,1246492696 +32298,4995,inspirational,1380764999 +32298,4995,intelligent,1386642168 +32298,4995,mathematics,1240895298 +32298,4995,mental illness,1246492694 +32298,4995,private school,1247047430 +32298,4995,true story,1246492693 +32298,5000,Chicago,1392717680 +32298,5000,history,1392717680 +32298,5000,journalism,1392717802 +32298,5000,nudity (topless),1400280316 +32298,5000,politics,1392717680 +32298,5002,cats,1246579773 +32298,5002,comic book,1246579674 +32298,5003,cats,1246579762 +32298,5003,comic book,1246579760 +32298,5008,Agatha Christie,1245289549 +32298,5008,based on a play,1245289558 +32298,5008,courtroom,1246571479 +32298,5008,imdb top 250,1245289564 +32298,5008,lawyers,1245289577 +32298,5009,boxing,1156032815 +32298,5010,Africa,1382012856 +32298,5010,Somalia,1382012852 +32298,5010,true story,1382012838 +32298,5012,cross dressing,1246620369 +32298,5012,cross dressing women,1246620381 +32298,5012,impostor,1246621938 +32298,5012,Judaism,1246621938 +32298,5012,religion,1246621938 +32298,5012,religious oppression,1246621938 +32298,5013,England,1234571112 +32298,5013,ensemble cast,1245740653 +32298,5013,impostor,1245741634 +32298,5013,secrets,1245740728 +32298,5014,disability,1221918773 +32298,5014,mental illness,1221918773 +32298,5015,bad parents,1244887112 +32298,5015,death penalty,1245725447 +32298,5015,dramatic irony,1245725454 +32298,5015,interracial romance,1244762984 +32298,5015,nude black women,1250128504 +32298,5015,nudity (full frontal),1400284692 +32298,5015,Oscar (Best Actress),1245725460 +32298,5015,racism,1249667470 +32298,5015,small town,1249667478 +32298,5015,suicide,1244887117 +32298,5021,Neil Simon,1247748086 +32298,5021,whodunit,1247748145 +32298,5023,nudity (topless),1401959800 +32298,5026,18th century,1246445678 +32298,5026,nudity (topless),1400283294 +32298,5027,buddy movie,1246267568 +32298,5027,nudity (topless),1400297487 +32298,5027,prison,1245497472 +32298,5029,nudity (full frontal),1400285583 +32298,5034,directorial debut,1207397143 +32298,5035,based on a book,1371361124 +32298,5036,hotel,1247748291 +32298,5036,multiple storylines,1247748290 +32298,5036,Neil Simon,1247748291 +32298,5038,based on a book,1316149511 +32298,5038,dragons,1394788627 +32298,5038,magic,1316149511 +32298,5039,dragons,1394788595 +32298,5045,imdb bottom 100,1195618128 +32298,5046,aliens,1245223526 +32298,5046,androids,1245223531 +32298,5046,based on a book,1369992468 +32298,5046,impostor,1245742021 +32298,5046,mistaken identity,1245223539 +32298,5046,Philip K. Dick,1245223553 +32298,5046,wrongly accused,1245498418 +32298,5047,parody,1208761071 +32298,5049,buddy movie,1246267209 +32298,5049,escape,1258707173 +32298,5049,fugitive,1246103669 +32298,5049,nudity (topless),1400283529 +32298,5049,police,1195733535 +32298,5049,prison escape,1257446415 +32298,5050,writers,1387276775 +32298,5054,memory,1315023951 +32298,5054,military,1321669921 +32298,5055,biography,1246588901 +32298,5055,martial arts,1246588901 +32298,5056,Germany,1245051815 +32298,5059,military,1245048990 +32298,5059,survival,1245049063 +32298,5059,Vietnam War,1245049000 +32298,5060,based on a book,1245496769 +32298,5060,ensemble cast,1245377909 +32298,5060,Korean War,1245496738 +32298,5060,madcap,1243813972 +32298,5060,satire,1195727931 +32298,5060,Vietnam War,1195728002 +32298,5062,based on a book,1267228590 +32298,5064,Alexandre Dumas,1246490248 +32298,5064,based on a book,1246490252 +32298,5064,prison,1361612603 +32298,5064,prison escape,1361612601 +32298,5064,remake,1361612455 +32298,5064,revenge,1361612604 +32298,5064,royalty,1361612591 +32298,5066,high school,1245222116 +32298,5068,cycling,1386906323 +32298,5068,teen,1247044284 +32298,5069,anime,1248256522 +32298,5071,nudity (full frontal),1400284795 +32298,5072,androids,1246395674 +32298,5072,anime,1246395651 +32298,5072,comic book,1310110038 +32298,5072,remake,1246395674 +32298,5072,robots,1246395665 +32298,5074,nudity (topless),1400282615 +32298,5076,based on a book,1232509411 +32298,5076,Mark Twain,1232509411 +32298,5084,directorial debut,1207190680 +32298,5086,musicians,1379410992 +32298,5086,rhythm & blues,1269820566 +32298,5087,nudity (full frontal),1414551896 +32298,5088,nudity (full frontal),1419525618 +32298,5090,15th century,1248167088 +32298,5090,based on a book,1248167050 +32298,5090,France,1248167088 +32298,5090,Paris,1248167088 +32298,5090,Victor Hugo,1248167050 +32298,5093,Latin America,1248165574 +32298,5093,revenge,1246572155 +32298,5093,South America,1246572151 +32298,5093,terrorism,1246572076 +32298,5094,nudity (topless),1400282571 +32298,5094,remake,1244974828 +32298,5094,sports,1244974856 +32298,5103,baseball,1317189914 +32298,5103,sports,1317189914 +32298,5105,nudity (topless),1400282199 +32298,5109,Peter Pan,1245061594 +32298,5110,corruption,1245912042 +32298,5110,drugs,1245569229 +32298,5110,nudity (topless),1400283470 +32298,5110,police,1245032564 +32298,5110,police corruption,1240891137 +32298,5111,Ian McEwan,1266391516 +32298,5113,based on a play,1247747239 +32298,5113,con artists,1247747239 +32298,5113,Neil Simon,1247747239 +32298,5118,Neil Simon,1247747663 +32298,5120,based on a play,1309996657 +32298,5120,imdb top 250,1245831437 +32298,5128,bad acting,1243588093 +32298,5128,vampires,1257288997 +32298,5135,India,1245052944 +32298,5137,hip hop,1205377146 +32298,5139,baseball,1248647182 +32298,5139,remade,1248647187 +32298,5139,sports,1248647185 +32298,5146,vampires,1246445144 +32298,5150,nudity (topless),1400279333 +32298,5151,nudity (topless),1400283169 +32298,5152,history,1248148667 +32298,5152,military,1248148667 +32298,5152,Vietnam,1248148667 +32298,5152,Vietnam War,1248148643 +32298,5154,nude black women,1250128587 +32298,5154,nudity (full frontal),1400285711 +32298,5156,nude black women,1251025833 +32298,5156,nudity (topless),1400279345 +32298,5156,prison,1251025848 +32298,5158,writers,1246598946 +32298,5160,zombies,1246444265 +32298,5161,nudity (topless),1400280647 +32298,5165,zombies,1246444296 +32298,5171,based on a book,1196562091 +32298,5171,H.G. Wells,1196561972 +32298,5171,inventor,1246893336 +32298,5171,time travel,1246893370 +32298,5174,Ireland,1264319295 +32298,5189,nudity (topless),1410134144 +32298,5198,nudity (topless),1407224838 +32298,5201,cannibalism,1246454456 +32298,5205,nudity (full frontal),1400285655 +32298,5214,god,1246746101 +32298,5218,animals,1246669199 +32298,5218,directorial debut,1403875147 +32298,5218,redemption,1246850383 +32298,5218,talking animals,1197787247 +32298,5218,Twentieth Century-Fox,1246850362 +32298,5218,wintry,1403014371 +32298,5219,nudity (topless),1400283496 +32298,5219,video game adaptation,1246575673 +32298,5219,zombies,1240894595 +32298,5220,buddy movie,1246466057 +32298,5220,parody,1246466049 +32298,5220,police,1246466033 +32298,5220,reality TV,1246466033 +32298,5220,television,1246466033 +32298,5222,lesbian,1247584715 +32298,5222,New York City,1265678174 +32298,5222,queer,1251062624 +32298,5224,Israel,1384392722 +32298,5224,Jerusalem,1384392722 +32298,5224,Middle East,1384392722 +32298,5225,coming of age,1248087903 +32298,5225,erotic,1245408729 +32298,5225,Latin America,1248155220 +32298,5225,May-December romance,1246592087 +32298,5225,Mexico,1248155209 +32298,5225,nudity (full frontal),1400284436 +32298,5226,nudity (topless),1400281686 +32298,5235,based on a book,1420191410 +32298,5235,Elmore Leonard,1420191410 +32298,5235,made for TV,1420191410 +32298,5241,fugitive,1247748391 +32298,5241,kidnapping,1247748391 +32298,5241,lawyers,1247748391 +32298,5241,Neil Simon,1247748391 +32298,5241,wrongly accused,1247748391 +32298,5242,nudity (topless),1407223875 +32298,5244,remake,1246584167 +32298,5249,male nudity,1430167861 +32298,5249,nudity (topless),1430167853 +32298,5254,comic book,1246581440 +32298,5254,Marvel,1246581445 +32298,5254,sequel,1209444732 +32298,5254,vampires,1246444753 +32298,5255,cross dressing,1246618705 +32298,5255,cross dressing men,1246621853 +32298,5255,impostor,1246621853 +32298,5256,Catholicism,1247131149 +32298,5256,Christianity,1247131149 +32298,5256,Project Greenlight,1247131096 +32298,5256,religion,1247131149 +32298,5257,nudity (topless),1400278577 +32298,5268,Iceland,1244462078 +32298,5269,based on a book,1246595993 +32298,5269,classical music,1415075685 +32298,5269,May-December romance,1246595980 +32298,5269,musicians,1415075690 +32298,5269,teacher,1246595984 +32298,5275,nudity (topless),1400279855 +32298,5278,nudity (topless),1400056257 +32298,5279,19th century,1246590515 +32298,5279,feminism,1246590540 +32298,5279,writers,1246590535 +32298,5283,college,1247043108 +32298,5283,National Lampoon,1196070289 +32298,5283,nudity (topless),1400282948 +32298,5288,nuclear bomb,1233146679 +32298,5289,boxing,1358586890 +32298,5289,sports,1358586890 +32298,5290,based on a book,1196562412 +32298,5290,H.G. Wells,1196562412 +32298,5290,space,1196562412 +32298,5291,black and white,1245057090 +32298,5291,free to download,1293848470 +32298,5291,imdb top 250,1246670350 +32298,5291,multiple points of view,1245057087 +32298,5291,multiple storylines,1248154383 +32298,5291,rape,1245057080 +32298,5291,youtube,1398493647 +32298,5292,hockey,1244982307 +32298,5292,nudity (topless),1400282936 +32298,5292,sports,1240789180 +32298,5293,corruption,1280994460 +32298,5293,lawyers,1280994460 +32298,5293,revenge,1280994460 +32298,5294,insanity,1246493104 +32298,5294,mental illness,1245281759 +32298,5294,mission from God,1245401395 +32298,5294,religion,1244893508 +32298,5294,serial killer,1148728740 +32298,5294,siblings,1245539488 +32298,5294,twist ending,1240911729 +32298,5295,nudity (topless),1413913978 +32298,5298,Charlie Kaufman,1245283191 +32298,5298,directorial debut,1207199517 +32298,5298,nudity (full frontal),1400285180 +32298,5299,family gatherings,1246495709 +32298,5299,wedding,1246495689 +32298,5300,Arizona,1219722232 +32298,5300,based on a book,1420191764 +32298,5300,Elmore Leonard,1420191749 +32298,5300,remade,1209373931 +32298,5303,multiple roles,1246753925 +32298,5309,sequel,1247036213 +32298,5313,Egypt,1247215695 +32298,5316,based on a book,1246225290 +32298,5316,mathematics,1246225246 +32298,5316,World War II,1246225248 +32298,5317,nudity (topless),1422532348 +32298,5318,Christianity,1248326702 +32298,5318,Jesus Christ,1248326702 +32298,5318,small town,1248326702 +32298,5319,Argentina,1379414347 +32298,5319,con artists,1244946403 +32298,5319,Latin America,1379414345 +32298,5319,South America,1379414345 +32298,5321,cross dressing,1246619552 +32298,5321,cross dressing women,1246619552 +32298,5322,midlife crisis,1246666371 +32298,5322,road trip,1246666370 +32298,5323,nudity (topless),1412368583 +32298,5329,double life,1246755093 +32298,5329,drugs,1247131337 +32298,5335,Australia,1246362194 +32298,5335,nudity (full frontal),1400285377 +32298,5340,nudity (topless),1400280424 +32298,5341,biography,1246588220 +32298,5341,stand-up comedy,1246588551 +32298,5342,directorial debut,1207193724 +32298,5346,Brazil,1245450790 +32298,5346,nudity (full frontal),1400285747 +32298,5346,Rio de Janeiro,1245450788 +32298,5349,comic book,1246579906 +32298,5349,double life,1247036141 +32298,5349,franchise,1245913985 +32298,5349,Marvel,1245913969 +32298,5349,New York City,1245913973 +32298,5349,superhero,1245913989 +32298,5349,vigilante,1245914021 +32298,5353,blindness,1245466197 +32298,5353,disability,1245811211 +32298,5353,San Francisco,1245466204 +32298,5357,dogs,1259273611 +32298,5358,19th century,1257289237 +32298,5358,Africa,1245226181 +32298,5358,based on a book,1245226178 +32298,5359,based on a book,1244926210 +32298,5359,Great Depression,1250843313 +32298,5359,nudity (topless),1400274513 +32298,5363,high school,1382667543 +32298,5364,adultery,1244936564 +32298,5364,erotic,1244762714 +32298,5364,nudity (topless),1400282969 +32298,5364,sensual,1240891256 +32298,5369,nudity (full frontal),1400285750 +32298,5370,nudity (topless),1403931199 +32298,5375,trains,1272944027 +32298,5377,based on a book,1246582126 +32298,5377,Nick Hornby,1246582130 +32298,5377,single parents,1248261876 +32298,5378,aliens,1344214637 +32298,5378,far future,1344214642 +32298,5378,franchise,1246473145 +32298,5378,space,1246473151 +32298,5378,Star Wars,1301124652 +32298,5379,nudity (topless),1400282211 +32298,5380,based on a play,1245061012 +32298,5380,mistaken identity,1245060995 +32298,5380,Oscar Wilde,1245061006 +32298,5383,Arthur Conan Doyle,1369666920 +32298,5383,based on a book,1369666920 +32298,5385,musicians,1379410584 +32298,5385,rock and roll,1328600496 +32298,5388,police,1297167146 +32298,5388,remake,1297167136 +32298,5390,movie business,1251779804 +32298,5390,nudity (full frontal),1401589065 +32298,5398,directorial debut,1207212303 +32298,5398,Rod Serling,1233549599 +32298,5398,sports,1207212303 +32298,5400,based on a book,1348825710 +32298,5400,CIA,1348825710 +32298,5400,Tom Clancy,1348825696 +32298,5401,blaxploitation,1205305553 +32298,5401,parody,1196669397 +32298,5402,ballet,1387273115 +32298,5402,dance,1387273115 +32298,5402,queer,1387273115 +32298,5408,nudity (topless),1407106786 +32298,5410,environmental,1246447053 +32298,5418,amnesia,1245409430 +32298,5418,assassin,1245409427 +32298,5418,based on a book,1245409450 +32298,5418,remake,1260071458 +32298,5418,Robert Ludlum,1245409453 +32298,5419,animation remade as live action,1250130906 +32298,5419,based on a TV show,1250130345 +32298,5419,drugs,1245497783 +32298,5419,island,1245497796 +32298,5420,Native Americans,1251498232 +32298,5420,true story,1251498232 +32298,5420,World War II,1251498176 +32298,5421,Catholicism,1251861829 +32298,5421,Christianity,1251861829 +32298,5421,private school,1251861829 +32298,5421,religion,1244974114 +32298,5421,revenge,1251861828 +32298,5422,based on a book,1272788119 +32298,5422,double life,1272788105 +32298,5422,France,1272788128 +32298,5422,impostor,1272788139 +32298,5422,royalty,1272788110 +32298,5425,aviation,1247212104 +32298,5425,World War II,1247212112 +32298,5435,based on a book,1420191161 +32298,5435,Elmore Leonard,1420191161 +32298,5443,basketball,1239161705 +32298,5443,cross dressing,1245151918 +32298,5443,cross dressing men,1246621302 +32298,5443,sports,1402880273 +32298,5444,aliens,1246473010 +32298,5444,Disney,1246473015 +32298,5444,Hawaii,1246473028 +32298,5444,mad scientist,1246473040 +32298,5445,based on a book,1162261455 +32298,5445,corruption,1306715167 +32298,5445,Philip K. Dick,1250026351 +32298,5445,police,1232689676 +32298,5445,police corruption,1246246965 +32298,5445,time travel,1306715183 +32298,5445,wrongly accused,1246246967 +32298,5446,1930s,1246731348 +32298,5446,Aborigines,1249852754 +32298,5446,Australia,1244669561 +32298,5446,orphans,1246731369 +32298,5446,Peter Gabriel music,1244669571 +32298,5446,runaway,1246731366 +32298,5446,scenic,1246731365 +32298,5450,nudity (full frontal),1400284983 +32298,5450,siblings,1245539931 +32298,5453,based on a play,1247748743 +32298,5453,Neil Simon,1247748743 +32298,5459,aliens,1245727396 +32298,5459,sequel,1245727383 +32298,5461,betrayal,1322655592 +32298,5461,England,1245237385 +32298,5461,friendship,1322655585 +32298,5461,London,1245237382 +32298,5461,nudity (topless),1400280414 +32298,5463,americans save the world,1312439859 +32298,5463,bad plot,1318273360 +32298,5463,dragons,1394788362 +32298,5463,post-apocalyptic,1245391380 +32298,5463,skydiving,1355138221 +32298,5464,1930s,1245401194 +32298,5464,assassin,1245401183 +32298,5464,based on a comic,1408328699 +32298,5464,organized crime,1245401242 +32298,5464,revenge,1245401190 +32298,5466,nudity (topless),1407111187 +32298,5469,directorial debut,1207129860 +32298,5470,based on a play,1245061032 +32298,5470,mistaken identity,1246754652 +32298,5470,Oscar Wilde,1245061029 +32298,5476,Halloween,1248256077 +32298,5476,reality TV,1248256077 +32298,5476,television,1248256077 +32298,5477,erotic,1245408943 +32298,5477,male nudity,1245448254 +32298,5477,nudity (full frontal),1400284816 +32298,5477,writers,1248088198 +32298,5479,history,1249051353 +32298,5479,Russia,1249051369 +32298,5479,submarine,1249051341 +32298,5481,James Bond,1205378508 +32298,5481,multiple roles,1246753504 +32298,5481,parody,1240889556 +32298,5489,vampires,1246444998 +32298,5500,Nazis,1248865633 +32298,5500,ZAZ,1248865608 +32298,5502,aliens,1244763212 +32298,5505,adultery,1249667649 +32298,5507,unrealistic,1346748918 +32298,5508,1970s,1245063802 +32298,5508,drugs,1245063790 +32298,5508,England,1245063793 +32298,5508,Manchester,1245063795 +32298,5508,musicians,1379411079 +32298,5508,nudity (topless),1400282887 +32298,5508,punk rock,1245063765 +32298,5508,rock and roll,1245063785 +32298,5508,true story,1253268810 +32298,5522,business is the antagonist,1394989403 +32298,5523,big budget,1412275823 +32298,5524,surfing,1259152232 +32298,5530,virtual reality,1197721431 +32298,5532,nudity (topless),1400280174 +32298,5541,aviation,1245919856 +32298,5541,military,1245919864 +32298,5541,parody,1245919860 +32298,5544,directorial debut,1207211843 +32298,5544,Jack the Ripper,1254910294 +32298,5544,serial killer,1254910298 +32298,5544,time travel,1254910315 +32298,5549,Native Americans,1248489941 +32298,5549,Texas,1248489941 +32298,5559,nudity (topless),1403443247 +32298,5565,dogs,1401570977 +32298,5565,nudity (full frontal),1401570977 +32298,5569,kidnapping,1248145864 +32298,5569,rape,1248145868 +32298,5569,remade,1243543227 +32298,5570,directorial debut,1207190971 +32298,5574,bad acting,1371032139 +32298,5574,cars,1371028195 +32298,5577,nudity (topless),1400283172 +32298,5602,Ealing Studios,1249500099 +32298,5602,remade,1246587064 +32298,5603,Oscar (Best Actor),1367292046 +32298,5603,Oscar (Best Screenplay),1367292062 +32298,5604,Ealing Studios,1249500137 +32298,5604,inventor,1249500156 +32298,5607,Argentina,1379413924 +32298,5607,Buenos Aires,1379413922 +32298,5607,Latin America,1379413922 +32298,5607,South America,1379413922 +32298,5608,brutal,1382012270 +32298,5608,college,1245228640 +32298,5608,prison,1245228568 +32298,5608,psychology,1245228567 +32298,5608,Stanford,1245228627 +32298,5608,true story,1245228613 +32298,5611,Africa,1254704138 +32298,5611,based on a book,1244461601 +32298,5612,kidnapping,1246666579 +32298,5617,BDSM,1245739251 +32298,5617,black comedy,1240890984 +32298,5617,erotic,1245408854 +32298,5617,nudity (full frontal),1400284414 +32298,5617,sex,1240912897 +32298,5617,trailer was misleading,1245739244 +32298,5618,2D animation,1262764821 +32298,5618,alternate reality,1266788312 +32298,5618,anime,1244974571 +32298,5618,dragons,1394788494 +32298,5618,imdb top 250,1246178958 +32298,5618,Studio Ghibli,1246178951 +32298,5618,whimsical,1244974584 +32298,5619,assassin,1246483386 +32298,5619,based on a book,1246483416 +32298,5619,Cambodia,1248164928 +32298,5619,Chile,1248164920 +32298,5619,corruption,1246483394 +32298,5619,cover up,1246483403 +32298,5619,history,1246483413 +32298,5619,military,1248164896 +32298,5619,politics,1246483413 +32298,5619,South America,1248164920 +32298,5619,Vietnam,1248164920 +32298,5619,Vietnam War,1248164920 +32298,5620,Alabama,1246599815 +32298,5620,wedding,1246601017 +32298,5630,FBI,1246746668 +32298,5630,Hannibal Lecter,1246746653 +32298,5630,remake,1246746648 +32298,5630,serial killer,1148728550 +32298,5632,1970s,1246394564 +32298,5632,civil war,1246394587 +32298,5632,easily confused with other movie(s) (title),1246770180 +32298,5632,history,1246394599 +32298,5632,Ireland,1246394587 +32298,5632,massacre,1246769933 +32298,5632,military,1246394587 +32298,5637,Australia,1246190457 +32298,5637,interracial romance,1246190451 +32298,5645,sequel,1387274063 +32298,5645,small town,1387274063 +32298,5645,Texas,1387274063 +32298,5650,based on a TV show,1401880348 +32298,5650,beer,1248090481 +32298,5650,Canada,1244936338 +32298,5650,drinking,1248090484 +32298,5650,SCTV,1401880348 +32298,5652,lesbian,1429821189 +32298,5652,nudity (topless),1429821186 +32298,5652,queer,1429821186 +32298,5664,hip hop,1195615216 +32298,5666,based on a book,1228355315 +32298,5666,bisexual,1246582972 +32298,5666,Brett Easton Ellis,1246582926 +32298,5666,college,1246582941 +32298,5666,love triangles,1246582915 +32298,5666,queer,1246618455 +32298,5667,19th century,1246889878 +32298,5667,immortality,1246889932 +32298,5669,Bush bashing,1245233121 +32298,5669,guns,1245233019 +32298,5669,Oscar (Best Documentary Feature),1205300486 +32298,5670,comedians,1371025173 +32298,5677,college,1249523849 +32298,5677,directorial debut,1207216212 +32298,5679,creepy,1345014495 +32298,5679,remake,1247210157 +32298,5680,nudity (full frontal),1400285242 +32298,5682,based on a book,1231733027 +32298,5682,based on a play,1231733027 +32298,5682,Holocaust,1250028219 +32298,5682,Nazis,1231733027 +32298,5682,World War II,1231733027 +32298,5690,anime,1245227883 +32298,5690,imdb top 250,1245227892 +32298,5690,Japan,1245227885 +32298,5690,orphans,1387273983 +32298,5691,franchise,1407219295 +32298,5691,nudity (topless),1407219290 +32298,5692,remade,1358241088 +32298,5693,1970s,1379412604 +32298,5693,dance,1379412593 +32298,5697,directorial debut,1207896706 +32298,5705,directorial debut,1207214632 +32298,5716,incest,1246140001 +32298,5716,nudity (topless),1400279079 +32298,5717,Amazon,1246454581 +32298,5717,cannibalism,1246454490 +32298,5717,Colombia,1246454553 +32298,5717,jungle,1246454575 +32298,5717,Latin America,1248165323 +32298,5717,South America,1246454558 +32298,5721,Judaism,1258611253 +32298,5747,Australia,1240702869 +32298,5747,military,1247209866 +32298,5747,World War I,1247209854 +32298,5749,based on a book,1383786431 +32298,5749,nudity (topless),1400281383 +32298,5760,based on a book,1387454878 +32298,5760,D.H. Lawrence,1413925933 +32298,5760,nudity (full frontal),1400285575 +32298,5765,talking animals,1320000618 +32298,5774,zombies,1246444253 +32298,5776,based on a play,1247748427 +32298,5776,Neil Simon,1247748427 +32298,5779,nudity (topless),1400280873 +32298,5781,nudity (topless),1400279969 +32298,5782,based on a book,1246585419 +32298,5784,nudity (topless),1413917158 +32298,5785,based on a TV show,1247051969 +32298,5785,MTV,1247051969 +32298,5785,reality TV,1247052021 +32298,5788,nudity (topless),1400281623 +32298,5789,cross dressing,1248984414 +32298,5789,cross dressing men,1248984422 +32298,5789,Nazis,1248984444 +32298,5789,World War II,1248984444 +32298,5791,addiction,1259059721 +32298,5791,alcoholism,1246597851 +32298,5791,artist,1246597764 +32298,5791,biography,1259059710 +32298,5791,bisexual,1246623698 +32298,5791,communism,1259059752 +32298,5791,disability,1259059708 +32298,5791,drinking,1248090678 +32298,5791,history,1259059718 +32298,5791,Latin America,1259059724 +32298,5791,latin music,1259059766 +32298,5791,Leo Tolstoy,1261040582 +32298,5791,Mexico,1259059726 +32298,5791,nudity (rear),1405455328 +32298,5791,nudity (topless),1400283402 +32298,5791,Oscar (Best Music - Original Score),1259059771 +32298,5791,painter,1246597765 +32298,5791,politics,1259059754 +32298,5791,queer,1246617116 +32298,5791,surreal,1259059738 +32298,5792,fish out of water,1244891400 +32298,5792,New York City,1245832307 +32298,5792,nudity (topless),1400282568 +32298,5796,franchise,1246471879 +32298,5796,James Bond,1246471885 +32298,5796,parody,1246471885 +32298,5804,Christmas,1369889711 +32298,5804,Santa Claus,1369889730 +32298,5808,based on a book,1254704292 +32298,5809,nudity (full frontal),1400285385 +32298,5810,Detroit,1397952804 +32298,5810,hip hop,1240914211 +32298,5810,Michigan,1245154405 +32298,5810,musicians,1397952777 +32298,5810,Oscar (Best Music - Original Song),1240914210 +32298,5810,true story,1397952798 +32298,5810,vocalists,1246735785 +32298,5812,1950s,1235996031 +32298,5812,1950s housewives,1244881613 +32298,5812,gay,1255254069 +32298,5812,homophobia,1245564691 +32298,5812,interracial romance,1244763007 +32298,5812,queer,1255254076 +32298,5812,racism,1245564701 +32298,5812,secrets,1245740288 +32298,5812,unrequited love,1245564713 +32298,5816,based on a book,1162261487 +32298,5816,boarding school,1247045421 +32298,5816,franchise,1196516318 +32298,5816,Harry Potter,1344404579 +32298,5816,magic,1246449783 +32298,5817,genocide,1249009845 +32298,5817,history,1400281038 +32298,5817,nudity (topless),1400281016 +32298,5817,Turkey,1249009893 +32298,5817,World War I,1249669144 +32298,5818,based on a book,1391894428 +32298,5818,Catholicism,1391894335 +32298,5818,Christianity,1391894335 +32298,5818,corruption,1391894374 +32298,5818,Mexico,1391894374 +32298,5818,nudity (topless),1400281314 +32298,5818,religion,1391894335 +32298,5820,Motown,1245285060 +32298,5820,musicians,1379407657 +32298,5820,rhythm & blues,1245285067 +32298,5825,World War II,1322629416 +32298,5828,Australia,1245230851 +32298,5828,high school,1245230851 +32298,5828,rape,1245230851 +32298,5830,based on a book,1231680351 +32298,5830,island,1231680351 +32298,5830,Jules Verne,1231680351 +32298,5832,apocalypse,1245401784 +32298,5832,based on a book,1245401779 +32298,5832,Biblical,1245401773 +32298,5832,Christianity,1244671715 +32298,5832,propaganda,1248326541 +32298,5832,religion,1244671706 +32298,5833,werewolves,1246445772 +32298,5837,imdb bottom 100,1195618555 +32298,5838,based on a book,1264289761 +32298,5841,nudity (topless),1400282126 +32298,5847,nudity (topless),1413920754 +32298,5856,nudity (topless),1400279238 +32298,5856,prostitution,1248326015 +32298,5861,nudity (full frontal),1400285163 +32298,5864,Edgar Rice Burroughs,1245744329 +32298,5865,nudity (topless),1410133004 +32298,5867,based on a book,1207664780 +32298,5867,directorial debut,1207664780 +32298,5872,franchise,1245445628 +32298,5872,Iceland,1242865457 +32298,5872,James Bond,1245445624 +32298,5872,North Korea,1246392553 +32298,5873,private school,1247045336 +32298,5875,based on a book,1369992377 +32298,5875,multiple storylines,1246979588 +32298,5876,based on a book,1387321388 +32298,5876,Vietnam,1387321388 +32298,5878,nudity (topless),1400283273 +32298,5878,rape,1244714232 +32298,5879,Judaism,1384393694 +32298,5881,based on a book,1162262650 +32298,5881,remake,1162262654 +32298,5881,space,1196558653 +32298,5882,based on a book,1207200947 +32298,5882,Robert Louis Stevenson,1246473440 +32298,5882,space,1246674335 +32298,5882,treasure hunt,1246473427 +32298,5890,based on a book,1246394377 +32298,5890,disability,1258241930 +32298,5890,mental illness,1246492813 +32298,5891,rape,1245448834 +32298,5891,revenge,1245448836 +32298,5891,writers,1246599601 +32298,5892,Arctic,1368312960 +32298,5892,polar,1368312963 +32298,5893,nudity (topless),1400282561 +32298,5897,directorial debut,1207370119 +32298,5902,based on a book,1197807612 +32298,5902,black comedy,1240889397 +32298,5902,Charlie Kaufman,1240894815 +32298,5902,Florida,1245539296 +32298,5902,multiple roles,1246749625 +32298,5902,nudity (topless),1400283930 +32298,5902,siblings,1245539241 +32298,5902,twins,1245539235 +32298,5902,writers,1246598590 +32298,5903,directorial debut,1207211663 +32298,5903,drugs,1281926755 +32298,5903,dystopia,1281926832 +32298,5903,fascism,1240895259 +32298,5903,guns,1281926743 +32298,5903,post-apocalyptic,1281926674 +32298,5903,totalitarianism,1387397532 +32298,5908,nudity (full frontal),1400675799 +32298,5915,soccer,1255066088 +32298,5916,based on a play,1246481990 +32298,5916,suicide,1246481994 +32298,5925,rape,1244844607 +32298,5932,Amazon,1246761756 +32298,5932,earnest,1281417002 +32298,5932,jungle,1281416993 +32298,5932,Latin America,1248164374 +32298,5932,movie business,1244927017 +32298,5932,South America,1244927035 +32298,5933,based on a book,1197708771 +32298,5933,John Steinbeck,1197708771 +32298,5935,nudity (full frontal),1401960229 +32298,5937,allegory,1245904355 +32298,5937,France,1245904373 +32298,5937,Poland,1245904379 +32298,5940,nudity (topless),1402948159 +32298,5941,college,1197802511 +32298,5941,directorial debut,1208230542 +32298,5941,drums,1385964452 +32298,5941,marching bands,1246893453 +32298,5941,musicians,1379410616 +32298,5941,school drama,1245833952 +32298,5944,aliens,1250129690 +32298,5944,androids,1386549386 +32298,5944,based on a TV show,1250129649 +32298,5944,cloning,1250129664 +32298,5944,far future,1198459141 +32298,5944,franchise,1250129649 +32298,5944,robots,1386549386 +32298,5944,space,1192620413 +32298,5944,Star Trek,1250129630 +32298,5945,based on a book,1245151552 +32298,5945,family gatherings,1245151572 +32298,5945,loneliness,1382198546 +32298,5945,nudity (topless),1400283646 +32298,5945,road trip,1245151539 +32298,5947,true story,1259484707 +32298,5951,based on a book,1404668346 +32298,5951,nudity (topless),1400280934 +32298,5952,based on a book,1162261581 +32298,5952,big budget,1244890275 +32298,5952,cliffhanger,1235640329 +32298,5952,ensemble cast,1247478586 +32298,5952,epic,1245450299 +32298,5952,franchise,1245450079 +32298,5952,long,1255167957 +32298,5952,multiple storylines,1245450070 +32298,5952,New Zealand,1347598107 +32298,5952,royalty,1246760622 +32298,5952,scenic,1240890447 +32298,5952,sequels filmed simultaneously,1244763403 +32298,5952,Tolkien,1245450172 +32298,5954,drugs,1245285548 +32298,5954,New York City,1245285561 +32298,5954,one day,1255063914 +32298,5955,directorial debut,1207202121 +32298,5955,military,1245833568 +32298,5956,gangsters,1246484364 +32298,5956,New York City,1201149756 +32298,5956,nudity (topless),1400283837 +32298,5959,police,1247214145 +32298,5959,undercover cop,1247214145 +32298,5962,nudity (topless),1400281902 +32298,5963,lesbian,1407108001 +32298,5963,private school,1407108001 +32298,5963,queer,1246617067 +32298,5965,directorial debut,1207129723 +32298,5965,Joseph Conrad,1245236359 +32298,5971,anime,1246179127 +32298,5975,based on a book,1238122730 +32298,5975,Leo Tolstoy,1238122730 +32298,5984,based on a book,1387768190 +32298,5984,fetish,1387768153 +32298,5984,nudity (full frontal),1400285423 +32298,5989,based on a book,1244946193 +32298,5989,con artists,1244946138 +32298,5989,impostor,1245741859 +32298,5989,true story,1244946191 +32298,5991,based on a play,1245057520 +32298,5991,Broadway,1245057533 +32298,5991,Chicago,1197698470 +32298,5991,courtroom,1245289222 +32298,5991,directorial debut,1207200276 +32298,5991,jazz,1241153165 +32298,5991,Oscar (Best Picture),1386223191 +32298,5991,vocalists,1246735080 +32298,5992,1950s housewives,1246492904 +32298,5992,AIDS,1246492918 +32298,5992,queer,1246617223 +32298,5992,writers,1387126242 +32298,5993,Adolf Hitler,1252665168 +32298,5994,based on a book,1207666688 +32298,5994,Charles Dickens,1207666688 +32298,5995,classical music,1245225407 +32298,5995,holocaust,1245225443 +32298,5995,imdb top 250,1245225441 +32298,5995,Nazis,1245225462 +32298,5995,piano,1387430724 +32298,5995,Poland,1245225409 +32298,5995,true story,1245225413 +32298,5995,Warsaw,1245225420 +32298,5995,World War II,1245225411 +32298,5996,nudity (topless),1400279414 +32298,5998,nudity (topless),1400280106 +32298,6000,nudity (topless),1407117475 +32298,6001,comedians,1371025057 +32298,6001,television,1360564083 +32298,6002,addiction,1247041429 +32298,6002,suicide,1247041412 +32298,6003,based on a book,1207213865 +32298,6003,directorial debut,1207213823 +32298,6005,stand-up comedy,1246588371 +32298,6016,based on a book,1198027543 +32298,6016,Brazil,1250143049 +32298,6016,brutal,1240914304 +32298,6016,drugs,1245450441 +32298,6016,epic,1245450419 +32298,6016,gangsters,1246484163 +32298,6016,imdb top 250,1245450426 +32298,6016,intense,1246255025 +32298,6016,Latin America,1248164339 +32298,6016,Rio de Janeiro,1245450436 +32298,6016,serial killer,1148729825 +32298,6016,South America,1245450433 +32298,6016,true story,1243587456 +32298,6025,hip hop,1248946272 +32298,6025,mockumentary,1248946249 +32298,6025,musicians,1379409124 +32298,6036,nudity (topless),1404279716 +32298,6037,nudity (topless),1400280418 +32298,6044,blindness,1245466363 +32298,6044,nudity (topless),1400298957 +32298,6045,drugs,1233459321 +32298,6058,franchise,1362152393 +32298,6058,nudity (topless),1400283126 +32298,6062,movie business,1368676326 +32298,6066,Arthur Conan Doyle,1369667175 +32298,6070,nudity (topless),1401570696 +32298,6073,gay,1255253732 +32298,6073,queer,1255253732 +32298,6086,based on a book,1249332509 +32298,6086,not available from Netflix,1249332604 +32298,6086,not on DVD,1249332604 +32298,6087,blindness,1245466311 +32298,6087,true story,1245466311 +32298,6088,based on a book,1246756617 +32298,6088,Robert Louis Stevenson,1246756617 +32298,6092,nudity (topless),1402948326 +32298,6093,unicorns,1349049832 +32298,6094,aliens,1249051838 +32298,6094,drugs,1249051844 +32298,6094,not available from Netflix,1249051852 +32298,6101,Latin America,1248164499 +32298,6101,politics,1248164502 +32298,6101,South America,1248164495 +32298,6104,British,1236588406 +32298,6109,nudity (topless),1400280097 +32298,6111,nudity (full frontal),1400285548 +32298,6114,directorial debut,1248085444 +32298,6115,bisexual,1246933033 +32298,6115,directorial debut,1246932978 +32298,6115,nudity (topless),1400280733 +32298,6115,Olympics,1246933033 +32298,6115,queer,1255256199 +32298,6115,sports,1246933033 +32298,6115,true story,1246933033 +32298,6116,pirates,1245061214 +32298,6122,stand-up comedy,1246588500 +32298,6125,sketch comedy,1315717806 +32298,6136,based on a book,1387278016 +32298,6142,aliens,1387276836 +32298,6142,college,1387276836 +32298,6156,buddy movie,1348972760 +32298,6157,blindness,1246581283 +32298,6157,comic book,1246581249 +32298,6157,double life,1246755124 +32298,6157,Marvel,1246581268 +32298,6157,superhero,1246581263 +32298,6158,based on a book,1244971555 +32298,6158,Rudyard Kipling,1244971555 +32298,6159,small town,1244972428 +32298,6160,Africa,1240889454 +32298,6160,history,1304327233 +32298,6160,racism,1245222476 +32298,6160,segregation,1304327233 +32298,6160,South Africa,1245222471 +32298,6168,nude black women,1387656602 +32298,6168,nudity (topless),1400280102 +32298,6170,1940s,1245810480 +32298,6170,based on a book,1245810451 +32298,6170,horse racing,1245810472 +32298,6170,horses,1245810454 +32298,6170,racing,1400646900 +32298,6176,Elmore Leonard,1420191239 +32298,6178,based on a book,1247551448 +32298,6178,blindness,1247551427 +32298,6178,interracial romance,1247551434 +32298,6181,American Civil War,1245830375 +32298,6181,based on a book,1245830380 +32298,6181,civil war,1245830385 +32298,6184,aliens,1274293940 +32298,6184,nudity (full frontal),1400285134 +32298,6187,corruption,1245219586 +32298,6187,death penalty,1255603254 +32298,6187,Texas,1245219580 +32298,6187,wrongly accused,1245228789 +32298,6188,college,1317190193 +32298,6188,fraternity,1317190195 +32298,6188,midlife crisis,1245401059 +32298,6188,nudity (rear),1400284221 +32298,6188,nudity (topless),1400283653 +32298,6192,adultery,1245052078 +32298,6192,Denmark,1245052111 +32298,6192,disability,1245052083 +32298,6195,writers,1301851536 +32298,6197,insanity,1246492405 +32298,6197,mental illness,1246492398 +32298,6202,nudity (topless),1419358490 +32298,6207,football,1227453935 +32298,6207,sports,1227453935 +32298,6214,brutal,1240895579 +32298,6214,controversial,1248144909 +32298,6214,nudity (full frontal),1400284883 +32298,6214,rape,1240895575 +32298,6215,nudity (topless),1400282047 +32298,6216,Africa,1365242428 +32298,6216,based on a book,1365242449 +32298,6216,Kenya,1365242432 +32298,6218,England,1246614506 +32298,6218,gay,1255253849 +32298,6218,high school,1246614494 +32298,6218,immigrants,1246614479 +32298,6218,interracial romance,1387320794 +32298,6218,London,1246614507 +32298,6218,queer,1383821588 +32298,6218,soccer,1246614486 +32298,6218,sports,1246614489 +32298,6222,based on a book,1275076020 +32298,6222,nudity (full frontal),1400285395 +32298,6223,addiction,1245454127 +32298,6223,drugs,1245454111 +32298,6223,nudity (full frontal),1400285078 +32298,6225,based on a book,1246345474 +32298,6225,Biblical,1246345474 +32298,6225,Christianity,1246345474 +32298,6225,Jesus Christ,1246345526 +32298,6225,narrated,1246345455 +32298,6225,religion,1246345474 +32298,6230,baseball,1259414823 +32298,6230,based on a book,1259414862 +32298,6230,disability,1259414854 +32298,6230,sports,1259414827 +32298,6231,acting debut,1320293104 +32298,6231,biography,1240889627 +32298,6231,genius,1255174623 +32298,6231,jazz,1240889629 +32298,6231,musicians,1379409953 +32298,6234,based on a play,1381062461 +32298,6234,nudity (full frontal),1400285041 +32298,6237,biography,1215506013 +32298,6237,musicians,1379407644 +32298,6238,immigrants,1246614839 +32298,6239,based on a book,1231680457 +32298,6239,Jules Verne,1231680457 +32298,6241,nudity (full frontal),1410133100 +32298,6244,India,1262225162 +32298,6244,Mumbai,1262225167 +32298,6244,poverty,1262225185 +32298,6245,directorial debut,1207215492 +32298,6249,nudity (topless),1407219495 +32298,6250,aliens,1244884120 +32298,6250,based on a book,1244884110 +32298,6250,Stephen King,1244884124 +32298,6250,wintry,1390524974 +32298,6255,based on a book,1246345895 +32298,6255,Biblical,1246345894 +32298,6255,Christianity,1246345897 +32298,6255,religion,1246345898 +32298,6257,banned movie,1248141491 +32298,6257,controversial,1248141491 +32298,6263,military,1250291176 +32298,6264,bad science,1245051511 +32298,6264,unrealistic,1244768265 +32298,6265,directorial debut,1426139822 +32298,6265,election,1430191375 +32298,6267,dance,1379411862 +32298,6269,child abuse,1335657104 +32298,6270,episodic,1246393056 +32298,6270,multiple storylines,1246392700 +32298,6272,based on a play,1250028324 +32298,6272,pregnancy,1250028324 +32298,6272,religion,1250028324 +32298,6272,small town,1250028324 +32298,6273,writers,1246598969 +32298,6277,nudity (full frontal),1400285151 +32298,6279,casino,1195880487 +32298,6279,gambling,1195880487 +32298,6279,heist,1196645473 +32298,6280,nudity (topless),1405124691 +32298,6281,great acting,1386814228 +32298,6281,New York City,1249343208 +32298,6281,phone booth,1406946887 +32298,6281,prostitution,1249343265 +32298,6281,secrets,1249343239 +32298,6281,vigilante,1249343250 +32298,6283,anime,1319571383 +32298,6288,teen,1297820931 +32298,6289,ocean,1197715195 +32298,6289,shipwreck,1196514567 +32298,6289,submarine,1196066283 +32298,6291,prostitution,1248325867 +32298,6293,nudity (topless),1400280006 +32298,6296,folk music,1391752540 +32298,6296,mockumentary,1245293904 +32298,6296,musicians,1379410020 +32298,6296,satire,1245293912 +32298,6296,watch the credits,1391752540 +32298,6297,based on a book,1162262458 +32298,6297,black comedy,1262492168 +32298,6297,desert,1248261124 +32298,6297,Texas,1248261118 +32298,6299,animals,1204114254 +32298,6299,birds,1262521980 +32298,6299,nature,1196066387 +32298,6301,bullying,1382010602 +32298,6301,England,1245568325 +32298,6301,nudity (topless),1400282813 +32298,6301,rape,1382010599 +32298,6301,revenge,1382010603 +32298,6301,small town,1382010605 +32298,6301,vigilante,1382010606 +32298,6303,based on a book,1162264458 +32298,6303,Michael Crichton,1281075804 +32298,6305,based on a book,1162262768 +32298,6305,dystopia,1247214702 +32298,6305,fascism,1240890065 +32298,6305,Ray Bradbury,1240890064 +32298,6305,subversive,1240890066 +32298,6315,football,1402880293 +32298,6315,sports,1402880291 +32298,6318,Neil Simon,1247748662 +32298,6322,con artists,1244945946 +32298,6322,scam,1245742219 +32298,6322,twist ending,1244893571 +32298,6323,confusing,1344598056 +32298,6323,creepy,1244881785 +32298,6323,imaginary friend,1297541003 +32298,6323,multiple personalities,1297540999 +32298,6323,psychology,1297541006 +32298,6323,serial killer,1244881788 +32298,6323,twist ending,1240911748 +32298,6327,movie business,1242770039 +32298,6329,mental illness,1262213816 +32298,6331,competition,1244970648 +32298,6331,spelling bee,1244970621 +32298,6332,mistaken identity,1245049494 +32298,6333,biology,1208571439 +32298,6333,comic book,1246580322 +32298,6333,ensemble cast,1283394566 +32298,6333,franchise,1197724953 +32298,6333,genetics,1208570987 +32298,6333,Marvel,1246775580 +32298,6333,mutants,1196554713 +32298,6333,superhero,1246450293 +32298,6334,directorial debut,1207200756 +32298,6334,high school,1196081749 +32298,6334,May-December romance,1246595845 +32298,6334,poets,1246598319 +32298,6334,school drama,1245833770 +32298,6334,teacher,1245377553 +32298,6334,teacher student relationship,1245738721 +32298,6334,writers,1246598319 +32298,6340,musicians,1379410727 +32298,6340,rhythm & blues,1195784053 +32298,6340,vocalists,1246734197 +32298,6341,manipulation,1249010770 +32298,6344,Iceland,1244461645 +32298,6344,nudity (full frontal),1400284877 +32298,6345,based on a play,1245376217 +32298,6345,Broadway,1246735139 +32298,6345,dance,1394781972 +32298,6348,dance,1402094054 +32298,6349,dance,1402094050 +32298,6350,anime,1246179023 +32298,6357,jazz,1245235957 +32298,6357,love triangles,1347012460 +32298,6357,remake,1245235959 +32298,6365,alternate reality,1245278669 +32298,6365,big budget,1196517161 +32298,6365,car chase,1245728579 +32298,6365,cliffhanger,1235639669 +32298,6365,dystopia,1245728571 +32298,6365,post-apocalyptic,1245390943 +32298,6365,sequels filmed simultaneously,1244763309 +32298,6365,virtual reality,1244767321 +32298,6366,ballet,1379412366 +32298,6366,dance,1379412358 +32298,6366,vampires,1379412358 +32298,6367,1960s,1246674548 +32298,6367,New York City,1246674548 +32298,6370,Barcelona,1245153104 +32298,6370,college,1245153104 +32298,6370,ensemble cast,1245153076 +32298,6370,Spain,1245153104 +32298,6373,god,1244975091 +32298,6373,religion,1244975093 +32298,6373,watch the credits,1386589097 +32298,6376,nudity (topless),1407217090 +32298,6377,ocean,1245293670 +32298,6377,Pixar,1245293667 +32298,6377,talking animals,1197786890 +32298,6378,heist,1246484028 +32298,6378,Italy,1244946756 +32298,6378,remake,1244946758 +32298,6378,Venice,1244946751 +32298,6379,cannibalism,1248985266 +32298,6379,forest,1265018076 +32298,6380,child abuse,1306877915 +32298,6380,journalism,1306877937 +32298,6383,cars,1255149138 +32298,6383,street race,1245728538 +32298,6384,nudity (topless),1407017485 +32298,6385,New Zealand,1245049261 +32298,6388,poets,1306823983 +32298,6388,World War I,1306823930 +32298,6400,Oscar (Best Documentary Feature),1205300464 +32298,6405,based on a book,1207043919 +32298,6405,Disney,1246756442 +32298,6405,pirates,1246756452 +32298,6405,Robert Louis Stevenson,1246756437 +32298,6408,Africa,1249009598 +32298,6408,nature,1249009598 +32298,6416,World War II,1246759497 +32298,6422,American Civil War,1245830453 +32298,6422,civil war,1245830458 +32298,6427,based on a book,1328312052 +32298,6427,E. Nesbit,1328323642 +32298,6427,trains,1193961799 +32298,6440,movie business,1246598693 +32298,6440,writers,1246598676 +32298,6441,aviation,1249051607 +32298,6441,Nazis,1249051618 +32298,6441,World War II,1249051599 +32298,6442,nudity (topless),1400281834 +32298,6452,William Faulkner,1412972118 +32298,6453,Ireland,1348052610 +32298,6466,interracial romance,1195153991 +32298,6473,nudity (topless),1400279913 +32298,6473,prostitution,1250850031 +32298,6476,based on a book,1227273160 +32298,6481,nudity (topless),1400280788 +32298,6482,sequel,1404613698 +32298,6483,imdb bottom 100,1195616516 +32298,6483,reality TV,1198028768 +32298,6485,based on a TV show,1246473979 +32298,6486,nudity (topless),1403964048 +32298,6487,1930s,1247472030 +32298,6487,adultery,1246382172 +32298,6487,England,1247472030 +32298,6487,London,1247472030 +32298,6487,nudity (topless),1400279767 +32298,6487,siblings,1246382172 +32298,6494,nudity (topless),1400278994 +32298,6502,England,1246443519 +32298,6502,epidemic,1245394628 +32298,6502,London,1246443526 +32298,6502,post-apocalyptic,1245390840 +32298,6502,survival,1378624602 +32298,6502,zombies,1241004549 +32298,6503,based on a TV show,1246616468 +32298,6507,nudity (topless),1407017922 +32298,6508,Australia,1240703095 +32298,6511,based on a book,1246346856 +32298,6511,based on a myth,1246346863 +32298,6511,Biblical,1246346856 +32298,6511,Christianity,1246346856 +32298,6511,Jesus Christ,1246346812 +32298,6511,religion,1246346856 +32298,6528,mistaken identity,1246754368 +32298,6528,multiple roles,1246754368 +32298,6528,siblings,1246754368 +32298,6528,twins,1246754368 +32298,6534,biology,1246579185 +32298,6534,comic book,1246579170 +32298,6534,dogs,1387320149 +32298,6534,genetics,1246579181 +32298,6534,military,1246579177 +32298,6534,mutants,1196555008 +32298,6534,superhero,1246579175 +32298,6537,androids,1244890952 +32298,6537,apocalypse,1246347213 +32298,6537,artificial intelligence,1246247238 +32298,6537,assassin,1246247271 +32298,6537,big budget,1318391750 +32298,6537,car chase,1244890967 +32298,6537,heroine in tight suit,1246347238 +32298,6537,nuclear war,1244890913 +32298,6537,nudity (topless),1400283729 +32298,6537,robots,1246247240 +32298,6537,shape shifter,1248086445 +32298,6537,time travel,1246247242 +32298,6538,nudity (full frontal),1400285063 +32298,6538,writers,1246598561 +32298,6539,anti-hero,1387281686 +32298,6539,magic,1245293636 +32298,6539,pirates,1245293631 +32298,6539,seafaring,1248861734 +32298,6539,sword fight,1245293653 +32298,6541,alternate reality,1246586728 +32298,6541,comic book,1246586737 +32298,6541,steampunk,1246586731 +32298,6544,nudity (topless),1400279878 +32298,6545,1930s,1246599972 +32298,6545,castle,1246599973 +32298,6545,England,1246599972 +32298,6545,nudity (topless),1400281305 +32298,6545,writers,1246600023 +32298,6548,drugs,1245540680 +32298,6548,Florida,1245540680 +32298,6548,long,1361786079 +32298,6548,Miami,1245540680 +32298,6548,nudity (topless),1400283424 +32298,6550,parody,1244882776 +32298,6552,blackmail,1255076078 +32298,6552,board game,1248983919 +32298,6552,chess,1245060821 +32298,6552,doctors,1255076045 +32298,6552,England,1242322751 +32298,6552,hotel,1246086682 +32298,6552,illegal immigration,1346223648 +32298,6552,immigrants,1240889963 +32298,6552,London,1246391413 +32298,6552,manipulation,1255076220 +32298,6554,nudity (topless),1419357004 +32298,6560,Richard Matheson,1245396507 +32298,6561,multiple roles,1246754058 +32298,6561,satire,1246754057 +32298,6563,BBC Films,1244499812 +32298,6563,directorial debut,1207200658 +32298,6564,heroine in tight suit,1246574633 +32298,6564,sequel,1249096407 +32298,6564,video game adaptation,1246574420 +32298,6565,horse racing,1247887402 +32298,6565,horses,1247887405 +32298,6565,racing,1400646880 +32298,6565,sports,1247887388 +32298,6565,true story,1247887421 +32298,6566,siblings,1246575353 +32298,6566,video games,1382082960 +32298,6566,virtual reality,1246575355 +32298,6567,black market,1304153582 +32298,6567,corruption,1245498760 +32298,6567,drugs,1245498735 +32298,6567,heroin,1248091197 +32298,6567,military,1248091015 +32298,6570,based on a book,1211333030 +32298,6570,nudity (topless),1400279224 +32298,6579,Cold War,1254002641 +32298,6584,directorial debut,1207132518 +32298,6586,crude humor,1244772012 +32298,6586,family gatherings,1264732081 +32298,6586,nudity (topless),1400283224 +32298,6586,sequel,1215842302 +32298,6586,wedding,1264732081 +32298,6587,Golden Raspberry (Worst Actor),1251506071 +32298,6587,Golden Raspberry (Worst Actress),1251506069 +32298,6587,Golden Raspberry (Worst Picture),1251506074 +32298,6587,imdb bottom 100,1195617766 +32298,6591,1960s,1246400272 +32298,6591,bad parents,1249667553 +32298,6591,Catholicism,1244887423 +32298,6591,child abuse,1246400352 +32298,6591,Christianity,1243813522 +32298,6591,corruption,1245500944 +32298,6591,Ireland,1244887414 +32298,6591,nudity (full frontal),1400284397 +32298,6591,orphans,1246400256 +32298,6591,rape,1254385948 +32298,6591,religion,1240913045 +32298,6591,true story,1244887409 +32298,6592,based on a book,1231728756 +32298,6593,being a kid again,1246591847 +32298,6593,child as adult,1246591713 +32298,6593,switching places,1245497855 +32298,6595,police,1247215620 +32298,6596,based on a book,1338716453 +32298,6596,divorce,1245152018 +32298,6598,Hawaii,1228452799 +32298,6600,nudity (topless),1407015565 +32298,6607,based on a book,1197708657 +32298,6607,John Steinbeck,1197708657 +32298,6608,nudity (topless),1407218978 +32298,6609,based on a book,1246346016 +32298,6609,Biblical,1244893830 +32298,6609,Christianity,1244893830 +32298,6609,Jesus Christ,1246346016 +32298,6609,religion,1244893829 +32298,6611,imdb top 250,1247208210 +32298,6615,bad acting,1318273205 +32298,6615,franchise,1245117397 +32298,6615,nudity (topless),1400282862 +32298,6617,Alberta,1219547026 +32298,6617,based on a book,1219547026 +32298,6617,Canada,1219547026 +32298,6618,China,1247211312 +32298,6618,martial arts,1247211292 +32298,6618,soccer,1247211300 +32298,6618,sports,1247211301 +32298,6620,comic books,1246578045 +32298,6620,true story,1244671948 +32298,6628,nudity (full frontal),1400299468 +32298,6633,nudity (topless),1430168077 +32298,6635,nudity (topless),1402873479 +32298,6639,blindness,1245466112 +32298,6639,disability,1245811194 +32298,6645,directorial debut,1207128874 +32298,6645,nudity (topless),1400282771 +32298,6646,nudity (topless),1400280819 +32298,6650,based on a book,1246749893 +32298,6650,imdb top 250,1246749690 +32298,6650,multiple roles,1246749683 +32298,6651,Manhattan,1376816810 +32298,6651,New York City,1376816810 +32298,6652,Elmore Leonard,1420191220 +32298,6657,Ray Bradbury,1240889608 +32298,6658,nudity (topless),1400215351 +32298,6660,ballet,1379412196 +32298,6660,dance,1379412206 +32298,6661,genius,1245834980 +32298,6661,physics,1240890643 +32298,6661,science,1240890647 +32298,6666,satire,1282391273 +32298,6666,surreal,1282391340 +32298,6667,ATF,1246395023 +32298,6667,cover up,1246395018 +32298,6667,FBI,1246395025 +32298,6667,police,1246394891 +32298,6667,police corruption,1246394943 +32298,6667,religion,1246394886 +32298,6667,Texas,1246394886 +32298,6669,terminal illness,1246494890 +32298,6671,New Zealand,1246589441 +32298,6671,nudity (topless),1400149129 +32298,6671,poets,1246600159 +32298,6671,writers,1246600161 +32298,6672,journalism,1244690805 +32298,6672,photography,1245577366 +32298,6678,based on a book,1258980521 +32298,6678,nudity (topless),1400281854 +32298,6679,computers,1243340400 +32298,6680,labor unions,1248262953 +32298,6680,San Francisco,1250669367 +32298,6680,strippers,1243817431 +32298,6682,1940s,1305850030 +32298,6682,based on a book,1305850006 +32298,6682,Hinduism,1305850014 +32298,6682,India,1305849999 +32298,6682,Islam,1305850012 +32298,6682,Pakistan,1305850001 +32298,6682,religion,1305850021 +32298,6683,India,1255255161 +32298,6683,lesbian,1247584807 +32298,6683,queer,1255255144 +32298,6685,imdb bottom 100,1195618192 +32298,6686,martial arts,1348972763 +32298,6689,high school,1246667064 +32298,6689,Project Greenlight,1247131074 +32298,6692,1980s,1297632168 +32298,6692,Australia,1297632168 +32298,6692,sports,1297632168 +32298,6697,prison,1195732326 +32298,6701,guns,1258972603 +32298,6701,high school,1258972603 +32298,6701,massacre,1258972603 +32298,6704,high school,1321162040 +32298,6704,small town,1321162044 +32298,6705,drugs,1245280717 +32298,6705,true story,1216658381 +32298,6707,bloody,1244882671 +32298,6707,disease,1408337764 +32298,6707,forest,1369710036 +32298,6707,gore,1244882692 +32298,6707,gruesome,1256148876 +32298,6707,nudity (topless),1400282797 +32298,6708,based on a book,1198578969 +32298,6708,con artists,1244945874 +32298,6708,impostor,1245743535 +32298,6708,obsessive compulsive disorder,1347278959 +32298,6708,scam,1245742205 +32298,6708,twist ending,1240911763 +32298,6710,ventriloquist,1246889109 +32298,6711,bittersweet,1245726111 +32298,6711,Japan,1244881578 +32298,6711,loneliness,1387319968 +32298,6711,May-December romance,1246591414 +32298,6711,slow,1245414776 +32298,6711,temptation,1245736508 +32298,6711,Tokyo,1245832630 +32298,6711,urbane,1370172960 +32298,6724,1930s,1281520620 +32298,6724,acting debut,1404625949 +32298,6724,con artists,1244946362 +32298,6724,Great Depression,1245637766 +32298,6731,zombies,1246444335 +32298,6732,based on a play,1245376783 +32298,6732,broadway,1245376783 +32298,6734,invisibility,1246616238 +32298,6744,vampires,1246445031 +32298,6747,based on a book,1232509332 +32298,6747,Mark Twain,1232509332 +32298,6749,based on a book,1232509478 +32298,6749,Mark Twain,1232509484 +32298,6749,royalty,1246760063 +32298,6749,switching places,1246587317 +32298,6752,choir,1245222302 +32298,6752,vocalists,1246734340 +32298,6753,farm,1407085635 +32298,6754,bad acting,1243588122 +32298,6754,heroine in tight suit,1246444507 +32298,6754,nocturnal,1241180889 +32298,6754,vampires,1245842790 +32298,6754,werewolves,1246445263 +32298,6755,quirky,1247215290 +32298,6756,Latin America,1248157146 +32298,6764,Amazon,1246761699 +32298,6764,Brazil,1208235636 +32298,6764,jungle,1244927237 +32298,6764,Latin America,1248165456 +32298,6764,South America,1208235643 +32298,6765,based on a book,1349170806 +32298,6765,Italy,1206347443 +32298,6768,16th century,1268028897 +32298,6768,biography,1268028902 +32298,6768,Catholicism,1268028928 +32298,6768,Christianity,1268028928 +32298,6768,religion,1268028892 +32298,6770,adultery,1244974051 +32298,6770,terminal illness,1244974036 +32298,6771,National Lampoon,1196070387 +32298,6771,nudity (topless),1402278575 +32298,6772,education,1245568400 +32298,6772,elementary school,1245568416 +32298,6772,France,1245568406 +32298,6772,small town,1246400900 +32298,6772,teacher,1245568399 +32298,6773,2D animation,1262764986 +32298,6773,cycling,1386906572 +32298,6773,gangsters,1248078528 +32298,6773,kidnapping,1245286854 +32298,6773,no dialogue,1248078458 +32298,6773,organized crime,1248078528 +32298,6775,based on a book,1232025016 +32298,6775,Caribbean,1232024990 +32298,6775,Jamaica,1246391976 +32298,6775,Latin America,1248165674 +32298,6775,narrated,1246391965 +32298,6775,politics,1246391985 +32298,6776,19th century,1257141301 +32298,6776,colonialism,1244971156 +32298,6776,cricket,1244971165 +32298,6776,India,1244971151 +32298,6780,based on a book,1244934111 +32298,6780,genius,1245834929 +32298,6780,physics,1384675936 +32298,6780,science,1240895318 +32298,6785,dance,1379411988 +32298,6787,based on a book,1246576406 +32298,6787,corruption,1245233792 +32298,6787,history,1246576412 +32298,6787,journalism,1245233808 +32298,6787,politics,1246576418 +32298,6787,Richard Nixon,1260071721 +32298,6787,true story,1246589367 +32298,6787,US President,1245233804 +32298,6787,Washington DC,1246589373 +32298,6789,nudity (topless),1400295061 +32298,6790,alternate reality,1247608583 +32298,6790,virtual reality,1247608569 +32298,6793,dogs,1411290310 +32298,6794,dogs,1411290313 +32298,6796,directorial debut,1207200456 +32298,6796,gangsters,1246484344 +32298,6796,ghetto,1240911461 +32298,6796,poverty,1240911464 +32298,6796,single parents,1245059360 +32298,6797,gambling,1246983082 +32298,6797,organized crime,1227790399 +32298,6798,directorial debut,1207215689 +32298,6807,banned movie,1248146340 +32298,6807,British,1236588435 +32298,6807,controversial,1248146342 +32298,6808,World War II,1258969045 +32298,6809,nudity (topless),1406032353 +32298,6809,prostitution,1406032341 +32298,6810,domestic violence,1246672965 +32298,6810,Iowa,1246672965 +32298,6810,small town,1246672965 +32298,6811,college,1368675955 +32298,6818,World War II,1245057754 +32298,6819,based on a book,1387124336 +32298,6819,Harlem,1387124336 +32298,6819,New York City,1387124336 +32298,6820,siblings,1245539760 +32298,6820,werewolves,1246445245 +32298,6822,cross dressing,1273273502 +32298,6822,cross dressing women,1273273502 +32298,6822,nudity (topless),1400279795 +32298,6822,true story,1273273502 +32298,6827,based on a TV show,1250130462 +32298,6827,imdb bottom 100,1195617694 +32298,6827,Saturday Night Live,1250130462 +32298,6842,mental illness,1246493301 +32298,6844,based on a play,1232937182 +32298,6844,David Mamet,1232937182 +32298,6849,Charles Dickens,1207666765 +32298,6849,Christmas,1246980316 +32298,6851,nudity (topless),1402873416 +32298,6852,based on a book,1245227099 +32298,6852,black and white,1245227062 +32298,6852,death penalty,1262498797 +32298,6852,true story,1245227093 +32298,6852,Truman Capote,1245227064 +32298,6858,directorial debut,1207214755 +32298,6862,corruption,1245279945 +32298,6862,Florida,1243586875 +32298,6862,police,1245279932 +32298,6862,police corruption,1245279944 +32298,6863,elementary school,1308326669 +32298,6863,musicians,1386593417 +32298,6863,private school,1247047110 +32298,6863,rock and roll,1244887044 +32298,6863,teacher,1308326671 +32298,6867,depression,1349331535 +32298,6867,directorial debut,1207131981 +32298,6867,loneliness,1245062462 +32298,6867,midgets,1219316215 +32298,6867,small town,1207566528 +32298,6867,trains,1240911044 +32298,6868,1980s,1246046503 +32298,6868,addiction,1246046458 +32298,6868,drugs,1246046454 +32298,6868,movie business,1258892158 +32298,6868,nudity (full frontal),1400285166 +32298,6868,pornography,1246046373 +32298,6868,true story,1246046461 +32298,6869,Brazil,1198822859 +32298,6869,Latin America,1248164381 +32298,6869,police,1261138162 +32298,6869,South America,1233409722 +32298,6870,based on a book,1219722725 +32298,6870,great acting,1386814476 +32298,6870,kidnapping,1247289704 +32298,6872,imdb bottom 100,1195617061 +32298,6872,nudity (topless),1400281800 +32298,6872,video game adaptation,1246574401 +32298,6872,zombies,1398347178 +32298,6873,black comedy,1244767140 +32298,6873,divorce,1285587229 +32298,6873,lawyers,1387390411 +32298,6873,revenge,1285587236 +32298,6874,assassin,1246601372 +32298,6874,cliffhanger,1235639540 +32298,6874,imdb top 250,1246601349 +32298,6874,Japan,1246601353 +32298,6874,martial arts,1244935325 +32298,6874,nonlinear,1360967265 +32298,6874,rape,1246777096 +32298,6874,revenge,1244935319 +32298,6874,Tokyo,1247206027 +32298,6874,visceral,1246777115 +32298,6874,Yakuza,1248079136 +32298,6875,Alfred P. Sloan Feature Film Prize,1206321523 +32298,6877,cross dressing,1272788666 +32298,6877,cross dressing women,1272788673 +32298,6879,based on a book,1162264391 +32298,6879,courtroom,1245289301 +32298,6879,John Grisham,1245289312 +32298,6880,remake,1247215555 +32298,6880,serial killer,1148728104 +32298,6881,Thanksgiving,1390473125 +32298,6882,aliens,1246576071 +32298,6882,assassin,1246576078 +32298,6882,end of the world,1246576073 +32298,6882,time travel,1246576066 +32298,6883,BBC Films,1244499790 +32298,6883,biography,1196555767 +32298,6883,melancholy,1252739111 +32298,6883,nudity (topless),1400280967 +32298,6883,poets,1246598285 +32298,6883,suicide,1244886143 +32298,6883,writers,1246598285 +32298,6884,drugs,1242863996 +32298,6884,journalism,1242863982 +32298,6884,true story,1242864025 +32298,6885,nudity (full frontal),1400285701 +32298,6885,serial killer,1245049344 +32298,6887,disability,1245415216 +32298,6887,true story,1245415216 +32298,6888,parody,1160654902 +32298,6889,2D animation,1262764689 +32298,6889,Phil Collins,1260269413 +32298,6890,high school,1246774375 +32298,6890,massacre,1246774352 +32298,6891,nudity (topless),1407448137 +32298,6893,Italy,1244946787 +32298,6893,remade,1221449051 +32298,6895,based on a play,1247213311 +32298,6902,corruption,1296806841 +32298,6902,drugs,1296807513 +32298,6902,lawyers,1296806770 +32298,6902,police,1296806841 +32298,6902,police corruption,1296806841 +32298,6902,road trip,1296806744 +32298,6902,surreal,1296806746 +32298,6902,whimsical,1296806754 +32298,6903,nudity (topless),1400279443 +32298,6906,based on a book,1212237052 +32298,6906,S.E. Hinton,1212237052 +32298,6909,blindness,1247214780 +32298,6909,ghosts,1247214788 +32298,6927,nudity (topless),1403440600 +32298,6932,ambition,1245499790 +32298,6932,corruption,1245499800 +32298,6932,journalism,1245499774 +32298,6932,true story,1245499778 +32298,6934,alternate reality,1245278702 +32298,6934,apocalypse,1245390758 +32298,6934,bad ending,1344502921 +32298,6934,big budget,1196517349 +32298,6934,cyberpunk,1245728438 +32298,6934,dystopia,1245728444 +32298,6934,philosophy,1244767174 +32298,6934,post-apocalyptic,1245390750 +32298,6934,robots,1244767199 +32298,6934,sequel,1245728462 +32298,6934,sequels filmed simultaneously,1244763252 +32298,6934,unrealistic,1244767266 +32298,6934,virtual reality,1245278695 +32298,6935,Latin America,1248164551 +32298,6935,not available from Netflix,1248164583 +32298,6935,politics,1248164555 +32298,6935,South America,1248164551 +32298,6935,Venezuela,1248164542 +32298,6936,Christmas,1245289140 +32298,6936,jazz,1245289201 +32298,6936,New York City,1206314130 +32298,6936,Santa Claus,1245289145 +32298,6938,Australia,1228452881 +32298,6938,Hawaii,1228452881 +32298,6939,1930s,1380647488 +32298,6939,Hungary,1380647488 +32298,6939,nudity (topless),1400280332 +32298,6939,suicide,1380647488 +32298,6942,airport,1268384455 +32298,6942,Christmas,1244769685 +32298,6942,directorial debut,1212033284 +32298,6942,England,1242322477 +32298,6942,ensemble cast,1240890548 +32298,6942,happy ending,1247479738 +32298,6942,London,1242322477 +32298,6942,multiple storylines,1240890546 +32298,6942,nudity (topless),1400283967 +32298,6942,uplifting,1240890554 +32298,6944,family gatherings,1246495768 +32298,6944,remake,1246495748 +32298,6947,based on a book,1197797574 +32298,6947,big budget,1244890418 +32298,6947,island,1196553479 +32298,6947,ocean,1197797574 +32298,6947,Oscar (Best Cinematography),1357181439 +32298,6947,Oscar (Best Sound Editing),1357181443 +32298,6947,seafaring,1244890423 +32298,6948,hip hop,1381584812 +32298,6948,musicians,1381584788 +32298,6949,actor's life,1244290280 +32298,6949,desert,1245240239 +32298,6951,based on a book,1196067787 +32298,6951,cats,1244926611 +32298,6951,Dr. Seuss,1243342907 +32298,6952,asylum,1245734858 +32298,6952,ghosts,1415837789 +32298,6952,psychology,1245726264 +32298,6953,nudity (topless),1400283610 +32298,6954,family gatherings,1245151481 +32298,6956,high school,1247044814 +32298,6957,black comedy,1244767121 +32298,6957,Christmas,1160652230 +32298,6957,midgets,1281417185 +32298,6958,Disney,1280556678 +32298,6958,ghosts,1280556675 +32298,6958,haunted house,1280556676 +32298,6959,based on a book,1162264565 +32298,6959,Michael Crichton,1338754199 +32298,6959,time travel,1200545079 +32298,6961,adultery,1246473906 +32298,6961,based on a book,1212292464 +32298,6961,nudity (topless),1400280718 +32298,6965,election,1318643162 +32298,6965,politics,1318643162 +32298,6969,directorial debut,1207199187 +32298,6969,post-apocalyptic,1301573164 +32298,6971,1940s,1245810011 +32298,6971,Germany,1245810001 +32298,6971,suicide,1245810136 +32298,6971,trains,1245809996 +32298,6978,Austin,1367455553 +32298,6978,low budget,1391751011 +32298,6978,Texas,1367455553 +32298,6979,artificial intelligence,1240891311 +32298,6979,computers,1248507376 +32298,6979,hackers,1240892561 +32298,6979,military,1209983708 +32298,6982,civilians at war,1247211036 +32298,6982,orphans,1247211036 +32298,6983,based on a book,1247480927 +32298,6983,Charlotte Bronte,1247886701 +32298,6983,orphans,1247886647 +32298,6984,based on a book,1207666577 +32298,6984,Charles Dickens,1207666577 +32298,6985,Catholicism,1254910188 +32298,6985,Christianity,1254910148 +32298,6985,insanity,1246493698 +32298,6985,mental illness,1246493698 +32298,6985,mission from God,1245401461 +32298,6985,religion,1254910148 +32298,6986,sword and sandal,1245057707 +32298,6988,addiction,1247219800 +32298,6988,Buddhism,1247219799 +32298,6988,drugs,1247219799 +32298,6988,England,1247219800 +32298,6988,immigrants,1247219799 +32298,6988,London,1247219800 +32298,6990,based on a book,1245227572 +32298,6990,heist,1245227575 +32298,6990,Michael Crichton,1245227572 +32298,6990,trains,1193961405 +32298,6991,based on a book,1245744367 +32298,6991,Edgar Rice Burroughs,1245744367 +32298,6993,adultery,1248262222 +32298,6993,Manhattan,1248262244 +32298,6993,New York City,1248262244 +32298,6993,siblings,1248262273 +32298,6995,imdb bottom 100,1195618836 +32298,6996,franchise,1246584674 +32298,6996,immortality,1246584533 +32298,6996,sword fight,1246584674 +32298,6997,biography,1386838500 +32298,6997,David Mamet,1232937259 +32298,6997,labor unions,1386838495 +32298,7001,aliens,1245415462 +32298,7004,elementary school,1195782577 +32298,7004,teacher,1245377097 +32298,7004,undercover cop,1245377100 +32298,7005,royalty,1246759469 +32298,7006,nudity (topless),1407219930 +32298,7008,controversial,1248141840 +32298,7008,nudity (full frontal),1400285030 +32298,7008,Paris,1248141878 +32298,7010,nudity (full frontal),1400284931 +32298,7011,religion,1387278671 +32298,7016,obscure sports,1368772877 +32298,7016,sports,1368772875 +32298,7018,based on a book,1246571275 +32298,7019,monkey,1227453872 +32298,7020,Australia,1240702623 +32298,7022,anomie,1248091705 +32298,7022,based on a book,1254713123 +32298,7022,brutal,1294541085 +32298,7022,controversial,1248145352 +32298,7022,island,1248091646 +32298,7022,Japan,1294541083 +32298,7022,survival,1248091722 +32298,7024,banned movie,1248142935 +32298,7024,based on a book,1248142873 +32298,7024,controversial,1248142935 +32298,7024,torture,1248142788 +32298,7025,World War II,1245577514 +32298,7028,bank robbery,1246658918 +32298,7028,heist,1246658921 +32298,7028,Manhattan,1246658967 +32298,7028,New York City,1246658967 +32298,7029,nudity (topless),1410353846 +32298,7032,Latin America,1248155951 +32298,7032,Mexico,1245813295 +32298,7032,nudity (rear),1400280395 +32298,7032,nudity (topless),1400280395 +32298,7034,gay,1255253151 +32298,7034,lesbian,1244973981 +32298,7034,queer,1246618246 +32298,7034,small town,1245569117 +32298,7036,high school,1245842873 +32298,7036,werewolves,1246445210 +32298,7040,nudity (topless),1400690408 +32298,7042,male nudity,1247296206 +32298,7042,mental illness,1247296059 +32298,7042,nudity (full frontal),1400284792 +32298,7044,based on a book,1226287251 +32298,7044,nudity (topless),1400273810 +32298,7045,based on a book,1303519701 +32298,7045,Roald Dahl,1303519758 +32298,7046,based on a book,1241239880 +32298,7046,John Updike,1241239880 +32298,7046,witch,1245236826 +32298,7047,nudity (topless),1400280634 +32298,7054,based on a book,1248646396 +32298,7054,Louisa May Alcott,1248646413 +32298,7060,Andrew Lloyd Webber,1245222920 +32298,7060,based on a book,1248864498 +32298,7060,Bechdel Test:Fail,1386943929 +32298,7060,Biblical,1248864488 +32298,7060,Broadway,1245375953 +32298,7060,choir,1245222916 +32298,7060,Christianity,1248864500 +32298,7060,great soundtrack,1386943916 +32298,7060,Jesus Christ,1248864501 +32298,7060,religion,1248864502 +32298,7060,rock and roll,1245222929 +32298,7065,American Civil War,1245830505 +32298,7065,black and white,1208767482 +32298,7065,civil war,1245830495 +32298,7065,controversial,1248141083 +32298,7065,Ku Klux Klan,1245118360 +32298,7065,racism,1244765897 +32298,7069,based on a play,1206782153 +32298,7069,Shakespeare,1349504108 +32298,7071,insanity,1246492013 +32298,7071,mental illness,1246492013 +32298,7075,England,1248155742 +32298,7075,medieval,1248155733 +32298,7079,15th century,1248166915 +32298,7079,based on a book,1248166869 +32298,7079,black and white,1248166887 +32298,7079,France,1248166915 +32298,7079,Paris,1248167097 +32298,7079,Victor Hugo,1248167024 +32298,7080,based on a book,1207619480 +32298,7080,black and white,1207619480 +32298,7084,based on a play,1249011822 +32298,7084,imaginary friend,1249011809 +32298,7089,1930s,1245568806 +32298,7089,Italy,1245568806 +32298,7089,small town,1245568806 +32298,7090,China,1245286063 +32298,7090,martial arts,1245286067 +32298,7092,adultery,1248265937 +32298,7092,based on a book,1238122547 +32298,7092,Leo Tolstoy,1238122547 +32298,7092,Russia,1261040465 +32298,7094,nudity (topless),1400279935 +32298,7096,artist,1246598020 +32298,7099,anime,1246178876 +32298,7099,Studio Ghibli,1246178911 +32298,7101,nudity (topless),1400282518 +32298,7102,based on a TV show,1384582965 +32298,7102,parody,1384582954 +32298,7102,police,1208760357 +32298,7109,nudity (full frontal),1400285327 +32298,7113,based on a book,1245230260 +32298,7113,colonialism,1247219494 +32298,7113,native americans,1245230288 +32298,7113,shipwreck,1245230260 +32298,7113,slavery,1259308798 +32298,7113,true story,1247219494 +32298,7116,imdb top 250,1263022506 +32298,7120,nudity (topless),1400279379 +32298,7120,werewolves,1246445754 +32298,7121,courtroom,1246571068 +32298,7121,lawyers,1246571098 +32298,7123,based on a book,1207380708 +32298,7123,drugs,1246492357 +32298,7123,insanity,1246492369 +32298,7124,drugs,1310799872 +32298,7124,history,1310799881 +32298,7124,marijuana,1310799876 +32298,7128,based on a book,1232164004 +32298,7128,H.G. Wells,1196561817 +32298,7132,opera,1246745034 +32298,7132,vocalists,1246745044 +32298,7134,directorial debut,1207987051 +32298,7135,gangsters,1246484861 +32298,7136,love triangles,1246592891 +32298,7136,May-December romance,1246592948 +32298,7137,casino,1198836965 +32298,7137,gambling,1198836965 +32298,7137,Las Vegas,1245563898 +32298,7137,nudity (full frontal),1400285303 +32298,7139,immigrants,1246614301 +32298,7139,new beginning,1244885969 +32298,7139,slow,1245415053 +32298,7141,disability,1245058783 +32298,7141,single parents,1245058821 +32298,7142,bad acting,1244768363 +32298,7142,dance,1195615860 +32298,7142,hip hop,1195615858 +32298,7143,Japan,1195735612 +32298,7146,nudity (full frontal),1400285092 +32298,7147,based on a book,1245224178 +32298,7147,biography,1252947933 +32298,7147,circus,1244890041 +32298,7147,surreal,1240889655 +32298,7147,tall tales,1305781279 +32298,7147,whimsical,1245224210 +32298,7149,aging,1247582016 +32298,7149,feminism,1246591512 +32298,7149,May-December romance,1246591496 +32298,7149,nudity (topless),1400283437 +32298,7150,conjoined twins,1245539582 +32298,7150,siblings,1245539582 +32298,7150,twins,1246754556 +32298,7151,17th century,1251435349 +32298,7151,artist,1246597605 +32298,7151,based on a book,1245053147 +32298,7151,Netherlands,1244887937 +32298,7151,painter,1246597608 +32298,7151,slow,1387280686 +32298,7152,based on a book,1197721032 +32298,7153,based on a book,1162261589 +32298,7153,big budget,1244890235 +32298,7153,ensemble cast,1247478561 +32298,7153,epic,1245450270 +32298,7153,franchise,1245450103 +32298,7153,long,1255167946 +32298,7153,multiple storylines,1245450323 +32298,7153,New Zealand,1355228633 +32298,7153,Oscar (Best Music - Original Song),1244845494 +32298,7153,royalty,1246760640 +32298,7153,scenic,1240890437 +32298,7153,sequels filmed simultaneously,1244763385 +32298,7153,Tolkien,1245450154 +32298,7154,1950s,1409001623 +32298,7154,college,1195731886 +32298,7154,education,1246401497 +32298,7154,private school,1247047363 +32298,7154,school drama,1189068793 +32298,7155,England,1244882654 +32298,7155,nudity (topless),1400282733 +32298,7155,true story,1244882645 +32298,7156,history,1294559995 +32298,7156,military,1196998949 +32298,7156,Oscar (Best Documentary Feature),1240890099 +32298,7156,Vietnam War,1195729788 +32298,7156,youtube,1398493524 +32298,7157,blaxploitation,1204693075 +32298,7157,Judaism,1246763298 +32298,7157,parody,1240890214 +32298,7158,based on a book,1206247940 +32298,7158,immigrants,1244885800 +32298,7158,nudity (rear),1406712518 +32298,7158,overrated,1384674345 +32298,7160,directorial debut,1207191858 +32298,7160,prostitution,1240890707 +32298,7160,serial killer,1244845879 +32298,7160,true story,1244845884 +32298,7162,American Civil War,1245829857 +32298,7162,based on a book,1216438818 +32298,7162,civil war,1245830271 +32298,7162,nudity (topless),1400283566 +32298,7163,based on a book,1162261459 +32298,7163,business,1277470717 +32298,7163,Philip K. Dick,1250026303 +32298,7164,based on a book,1162262683 +32298,7164,J.M. Barrie,1204116380 +32298,7165,dance,1252134536 +32298,7165,nudity (topless),1400281459 +32298,7167,Australia,1240703212 +32298,7168,bisexual,1249052143 +32298,7168,business,1259624541 +32298,7168,erotic,1249052145 +32298,7168,manipulation,1259624544 +32298,7168,nudity (full frontal),1400285420 +32298,7168,queer,1255255814 +32298,7169,US President,1244888801 +32298,7171,prostitution,1246746254 +32298,7171,serial killer,1246746254 +32298,7174,based on a TV show,1247042302 +32298,7174,mad scientist,1247042302 +32298,7174,talking animals,1247042302 +32298,7177,Afghanistan,1250315947 +32298,7177,impostor,1250315980 +32298,7177,Islam,1250315947 +32298,7177,Middle East,1250315947 +32298,7177,religion,1250315947 +32298,7178,based on a book,1363167009 +32298,7178,F. Scott Fitzgerald,1363167011 +32298,7179,based on a book,1371361109 +32298,7183,nudity (topless),1414554661 +32298,7184,based on a play,1219269748 +32298,7184,Tennessee Williams,1219269748 +32298,7187,nudity (topless),1407101979 +32298,7189,imdb bottom 100,1195616968 +32298,7190,based on a book,1247886782 +32298,7190,boarding school,1247886782 +32298,7190,Charlotte Bronte,1247886750 +32298,7190,orphans,1247886782 +32298,7199,secrets,1283081756 +32298,7202,nudity (topless),1400055967 +32298,7208,alter ego,1246756389 +32298,7208,based on a book,1246756307 +32298,7208,double life,1246756335 +32298,7208,Robert Louis Stevenson,1246756307 +32298,7212,cross dressing,1246619800 +32298,7212,cross dressing men,1246619809 +32298,7212,military,1246619823 +32298,7215,based on a book,1207665813 +32298,7215,Ernest Hemingway,1207665813 +32298,7215,William Faulkner,1412980566 +32298,7227,based on a book,1402676148 +32298,7227,nuns,1402676117 +32298,7227,private school,1402676148 +32298,7232,India,1246362058 +32298,7232,nudity (rear),1400279432 +32298,7232,nudity (topless),1400279432 +32298,7236,low budget,1246178843 +32298,7236,post-apocalyptic,1246178838 +32298,7237,based on a book,1363167041 +32298,7237,F. Scott Fitzgerald,1363167041 +32298,7240,based on a book,1246759329 +32298,7240,based on a myth,1246759337 +32298,7240,Biblical,1246759329 +32298,7240,Christianity,1246759329 +32298,7240,nudity (topless),1400279614 +32298,7240,religion,1246759329 +32298,7240,royalty,1246759337 +32298,7242,based on a book,1420191349 +32298,7242,Elmore Leonard,1420191350 +32298,7243,religion,1245564427 +32298,7244,imdb bottom 100,1195618665 +32298,7247,based on a book,1248646475 +32298,7249,anthology,1247747597 +32298,7249,based on a play,1247747597 +32298,7249,hotel,1247747597 +32298,7249,Neil Simon,1247747597 +32298,7250,Neil Simon,1247747507 +32298,7250,New York City,1247747524 +32298,7254,alternate endings,1240889786 +32298,7254,alternate reality,1245278472 +32298,7254,child abuse,1245735041 +32298,7254,intense,1389812143 +32298,7254,nudity (full frontal),1400284678 +32298,7254,pedophile,1245735076 +32298,7254,time travel,1245734645 +32298,7256,mountain climbing,1267393740 +32298,7256,mountains,1267393749 +32298,7256,nature,1196065708 +32298,7256,scenic,1240891195 +32298,7256,survival,1245049041 +32298,7257,based on a book,1420191576 +32298,7257,Elmore Leonard,1420191576 +32298,7259,bad acting,1243588262 +32298,7259,dance,1428336918 +32298,7259,hip hop,1244715725 +32298,7259,imdb bottom 100,1240893995 +32298,7259,quick cuts,1244890797 +32298,7260,gay,1255253191 +32298,7260,homophobia,1246670707 +32298,7260,Mormon,1246618882 +32298,7260,religion,1246618882 +32298,7260,religious oppression,1246618938 +32298,7263,hockey,1244982502 +32298,7263,Olympics,1244982523 +32298,7263,sports,1250143256 +32298,7263,underdogs,1250143256 +32298,7265,1960s,1248088366 +32298,7265,erotic,1245408973 +32298,7265,incest,1240890014 +32298,7265,male nudity,1244928437 +32298,7265,nudity (full frontal),1400284866 +32298,7265,Paris,1248088366 +32298,7270,nudity (topless),1400279760 +32298,7272,blaxploitation,1244926550 +32298,7276,nudity (topless),1400279453 +32298,7277,based on a book,1266391581 +32298,7277,CIA,1266391581 +32298,7277,Cold War,1266391581 +32298,7277,Ian McEwan,1266391581 +32298,7280,blaxploitation,1249524112 +32298,7282,found footage,1387274400 +32298,7282,parody,1387274415 +32298,7285,drugs,1248086486 +32298,7285,nudity (topless),1400282966 +32298,7285,teen,1248086489 +32298,7286,siblings,1246482030 +32298,7293,amnesia,1245409470 +32298,7293,happy ending,1247479973 +32298,7297,true story,1245568893 +32298,7300,cars,1270845627 +32298,7301,Catholicism,1255603582 +32298,7301,Christianity,1255603582 +32298,7301,France,1255603582 +32298,7301,religion,1255603566 +32298,7301,small town,1255603582 +32298,7304,classical music,1251435177 +32298,7307,kidnapping,1245448717 +32298,7307,nudity (full frontal),1400285190 +32298,7307,rape,1245448710 +32298,7308,Africa,1246759627 +32298,7308,based on a book,1246759627 +32298,7314,robots,1247645716 +32298,7315,boxing,1249519759 +32298,7315,sports,1249519762 +32298,7317,nudity (topless),1400277325 +32298,7317,road trip,1253621160 +32298,7317,tourists,1245450860 +32298,7318,based on a book,1242204134 +32298,7318,based on a myth,1246345795 +32298,7318,Biblical,1240893912 +32298,7318,brutal,1299210264 +32298,7318,Christianity,1324637431 +32298,7318,controversial,1248092188 +32298,7318,Jesus Christ,1246345781 +32298,7318,magic,1248142075 +32298,7318,propaganda,1250920858 +32298,7318,religion,1241005054 +32298,7318,torture,1248142075 +32298,7319,island,1196252003 +32298,7319,nudity (topless),1400281848 +32298,7320,bad ending,1349525445 +32298,7320,Caribbean,1240889957 +32298,7320,Cuba,1240889959 +32298,7320,Havana,1246392182 +32298,7320,Latin America,1248165782 +32298,7320,latin music,1255663728 +32298,7323,Germany,1245844395 +32298,7323,secrets,1245844395 +32298,7324,desert,1245497676 +32298,7324,horse racing,1245497672 +32298,7324,horses,1245497668 +32298,7324,middle east,1245497671 +32298,7324,racing,1384677268 +32298,7325,based on a TV show,1249667771 +32298,7325,police,1249667782 +32298,7337,guns,1257576140 +32298,7338,based on a play,1206782676 +32298,7340,cross dressing,1246620759 +32298,7340,cross dressing women,1246620759 +32298,7340,high school,1246620759 +32298,7340,impostor,1246621722 +32298,7340,nudity (topless),1400281670 +32298,7346,easily confused with other movie(s) (title),1410329122 +32298,7346,high school,1221919428 +32298,7346,nudity (topless),1400283253 +32298,7346,pornography,1246045896 +32298,7347,based on a book,1246599418 +32298,7347,Stephen King,1246599407 +32298,7347,writers,1246599421 +32298,7348,David Mamet,1232936545 +32298,7348,kidnapping,1315971771 +32298,7351,artist,1246597906 +32298,7354,nudity (topless),1400281896 +32298,7360,directorial debut,1247749066 +32298,7360,remake,1246267715 +32298,7360,zombies,1246267713 +32298,7361,amnesia,1245049912 +32298,7361,bittersweet,1249522165 +32298,7361,Charlie Kaufman,1240894898 +32298,7361,complicated,1384555824 +32298,7361,imdb top 250,1247103827 +32298,7361,memory,1327216301 +32298,7361,Oscar (Best Writing - Screenplay Written Directly for the Screen),1327216451 +32298,7361,Saturn Award (Best Science Fiction Film),1327216341 +32298,7361,surreal,1240894917 +32298,7361,wintry,1390524771 +32298,7362,nudity (topless),1400277540 +32298,7364,Ireland,1251029174 +32298,7364,multiple storylines,1251029188 +32298,7365,Iceland,1244461807 +32298,7367,heist,1371269020 +32298,7367,remake,1371269020 +32298,7369,based on a TV show,1246734818 +32298,7371,1930s,1245741512 +32298,7371,secrets,1245741493 +32298,7371,small town,1245059962 +32298,7372,Australia,1370175850 +32298,7372,based on a book,1370175849 +32298,7373,bad CGI,1246580973 +32298,7373,comic book,1246580981 +32298,7373,Nazis,1326094699 +32298,7373,occult,1326258342 +32298,7373,steampunk,1348128793 +32298,7373,superhero,1198483539 +32298,7374,talking animals,1249010167 +32298,7375,double life,1246759911 +32298,7375,royalty,1246759911 +32298,7376,remake,1162637603 +32298,7376,true story,1162637595 +32298,7379,big budget,1412275861 +32298,7379,history,1248156106 +32298,7379,San Antonio,1248156093 +32298,7379,Texas,1248156084 +32298,7380,based on a book,1220529907 +32298,7380,fairy tale,1362220134 +32298,7380,magic,1220529907 +32298,7380,royalty,1251006533 +32298,7382,based on a book,1245568042 +32298,7382,Italy,1245568109 +32298,7382,kidnapping,1245568037 +32298,7382,small town,1245568109 +32298,7385,male nudity,1413910453 +32298,7385,nudity (full frontal),1400285689 +32298,7386,based on a book,1244769597 +32298,7386,Biblical,1244769600 +32298,7386,Christianity,1244769595 +32298,7386,propaganda,1250921118 +32298,7386,religion,1246345927 +32298,7387,remade,1218926658 +32298,7393,baseball,1247748589 +32298,7393,Neil Simon,1247748590 +32298,7393,sports,1247748590 +32298,7402,based on a book,1196562263 +32298,7402,H.G. Wells,1196562263 +32298,7404,nudity (topless),1402501474 +32298,7408,multiple roles,1246751746 +32298,7410,nudity (topless),1401962039 +32298,7416,Neil Simon,1247748053 +32298,7419,black comedy,1368684596 +32298,7419,Manhattan,1368684867 +32298,7419,New York City,1250659767 +32298,7419,nudity (topless),1400282921 +32298,7423,sports,1405985202 +32298,7423,wrestling,1405985199 +32298,7437,cross dressing,1246620191 +32298,7437,mistaken identity,1246620201 +32298,7438,boring,1384179866 +32298,7438,buried alive,1245537441 +32298,7438,lack of action,1244767680 +32298,7438,martial arts,1246776388 +32298,7438,overrated,1347597205 +32298,7438,quirky,1240894714 +32298,7438,revenge,1245537448 +32298,7438,slow,1389090969 +32298,7439,comic book,1246580455 +32298,7439,Marvel,1245914127 +32298,7439,revenge,1245914127 +32298,7439,vigilante,1245914127 +32298,7440,Holocaust,1245577635 +32298,7442,based on a book,1239693699 +32298,7442,nudity (full frontal),1399718082 +32298,7444,child as adult,1246591683 +32298,7444,fashion,1253256834 +32298,7445,kidnapping,1247209208 +32298,7451,based on a book,1318917732 +32298,7451,high school,1247209894 +32298,7451,revenge,1247209898 +32298,7453,New York City,1245282789 +32298,7453,siblings,1245539779 +32298,7453,twins,1245282801 +32298,7454,big budget,1196515834 +32298,7454,heroine in tight suit,1246616036 +32298,7454,monster,1246616031 +32298,7456,Argentina,1246452688 +32298,7456,Buenos Aires,1246452693 +32298,7456,Latin America,1248164952 +32298,7456,South America,1246452699 +32298,7458,based on a poem,1242195140 +32298,7458,big budget,1196516956 +32298,7458,nudity (topless),1400283612 +32298,7458,sword and sandal,1244924923 +32298,7459,Brazil,1195824228 +32298,7459,Latin America,1248164395 +32298,7459,prison,1248164397 +32298,7459,South America,1208235677 +32298,7459,true story,1263042527 +32298,7460,black and white,1204201388 +32298,7478,Cambodia,1245578386 +32298,7478,movie business,1245578403 +32298,7481,aliens,1246473314 +32298,7481,based on a book,1204198089 +32298,7482,bad acting,1269328463 +32298,7482,Bechdel Test:Fail,1386944122 +32298,7482,martial arts,1245285206 +32298,7482,nudity (topless),1400283420 +32298,7482,slow,1269328374 +32298,7482,sports,1269328477 +32298,7484,rock and roll,1196065384 +32298,7486,Argentina,1379414149 +32298,7486,Buenos Aires,1379414137 +32298,7486,Latin America,1379414149 +32298,7486,South America,1379414149 +32298,7487,1930s,1246599344 +32298,7487,banned movie,1248153705 +32298,7487,based on a book,1246599344 +32298,7487,controversial,1248153704 +32298,7487,erotic,1246599302 +32298,7487,nudity (topless),1400281412 +32298,7487,Paris,1246599344 +32298,7487,writers,1246599180 +32298,7493,mental illness,1246755364 +32298,7502,based on a book,1247886127 +32298,7502,military,1247886127 +32298,7502,true story,1247886126 +32298,7502,TV series,1372987170 +32298,7502,World War II,1247886127 +32298,7505,made for TV,1263043463 +32298,7521,nudity (full frontal),1402631655 +32298,7523,nudity (topless),1400565592 +32298,7541,nudity (topless),1400281934 +32298,7569,franchise,1246471298 +32298,7569,James Bond,1246471305 +32298,7569,Japan,1269243396 +32298,7569,Roald Dahl,1244936757 +32298,7569,space,1269243378 +32298,7570,franchise,1246472040 +32298,7570,James Bond,1246472042 +32298,7570,trains,1246472052 +32298,7573,franchise,1246471847 +32298,7573,James Bond,1246471847 +32298,7579,based on a book,1246582885 +32298,7579,Jane Austen,1246582876 +32298,7580,based on a book,1223610603 +32298,7581,Ayn Rand,1384758579 +32298,7581,based on a book,1240703476 +32298,7583,adultery,1249011421 +32298,7585,Venice,1215506059 +32298,7615,based on a book,1316063615 +32298,7615,gay,1255253215 +32298,7615,lesbian,1246617400 +32298,7615,nudity (topless),1400280022 +32298,7615,queer,1246617405 +32298,7616,nudity (topless),1400296231 +32298,7618,biography,1246577146 +32298,7618,movie business,1246588077 +32298,7618,nudity (topless),1400282619 +32298,7619,blindness,1245465962 +32298,7619,deafness,1245465961 +32298,7619,disability,1245811246 +32298,7619,true story,1245466017 +32298,7624,1950s,1244885013 +32298,7624,anti-Semitism,1244885000 +32298,7624,boarding school,1247045390 +32298,7624,high school,1195731511 +32298,7624,private school,1247045363 +32298,7624,school drama,1189068750 +32298,7637,movie business,1249010424 +32298,7637,nudity (full frontal),1400285169 +32298,7647,based on a play,1317337138 +32298,7649,based on a TV show,1246474031 +32298,7649,made for TV,1248256332 +32298,7649,space,1246474034 +32298,7650,based on a book,1245397786 +32298,7650,based on a poem,1245397786 +32298,7650,Edgar Allan Poe,1245397786 +32298,7669,19th century,1246691071 +32298,7669,based on a book,1246690969 +32298,7669,England,1246691071 +32298,7669,Jane Austen,1246690976 +32298,7669,made for TV,1248257055 +32298,7669,remake,1246691764 +32298,7669,siblings,1246691071 +32298,7669,TV series,1372987237 +32298,7675,based on a book,1369992387 +32298,7675,Oscar Wilde,1257729140 +32298,7697,royalty,1246760080 +32298,7700,IMDB Top 250,1279880388 +32298,7700,Latin America,1279880426 +32298,7702,nuns,1387281242 +32298,7707,journalism,1245843066 +32298,7708,deal with the devil,1246619979 +32298,7708,remade,1246619971 +32298,7714,Broadway,1246899420 +32298,7714,King Arthur,1245375991 +32298,7714,royalty,1246757339 +32298,7719,Richard Matheson,1245395917 +32298,7728,adultery,1247504285 +32298,7743,aliens,1267690537 +32298,7743,space,1267690537 +32298,7752,nudity (topless),1400278794 +32298,7756,Russia,1261040648 +32298,7757,based on a myth,1244771579 +32298,7757,based on a poem,1208404032 +32298,7757,Greek mythology,1370317943 +32298,7767,italy,1245058462 +32298,7769,18th century,1246587537 +32298,7769,history,1246587552 +32298,7769,Thailand,1246587557 +32298,7770,based on a book,1207043945 +32298,7771,Greece,1380490857 +32298,7773,high school,1245239816 +32298,7789,9/11,1245578497 +32298,7789,terrorism,1245049242 +32298,7790,based on a TV show,1248256761 +32298,7802,based on a book,1246484521 +32298,7802,gangsters,1246484494 +32298,7802,New York City,1246484485 +32298,7810,based on a TV show,1248256355 +32298,7810,made for TV,1248256355 +32298,7811,based on a TV show,1248256384 +32298,7811,made for TV,1248256384 +32298,7812,based on a TV show,1248256414 +32298,7812,made for TV,1248256414 +32298,7812,space,1248256414 +32298,7817,immortality,1408730138 +32298,7824,nudity (topless),1403945252 +32298,7826,remade,1387096137 +32298,7827,brainwashing,1309995840 +32298,7827,business,1309995841 +32298,7827,cyberpunk,1309995829 +32298,7827,espionage,1309995870 +32298,7827,twist ending,1309995778 +32298,7828,Rod Serling,1233549672 +32298,7836,1960s,1249010939 +32298,7836,Oscar (Best Documentary Feature),1205299761 +32298,7836,rock and roll,1205299779 +32298,7839,divorce,1245230526 +32298,7840,based on a poem,1244971906 +32298,7840,colonialism,1244971905 +32298,7840,India,1244971906 +32298,7840,Rudyard Kipling,1244971906 +32298,7841,based on a book,1247197842 +32298,7841,desert,1247197851 +32298,7841,Frank Herbert,1195994610 +32298,7841,made for TV,1248257183 +32298,7841,royalty,1325922370 +32298,7842,based on a book,1216590201 +32298,7842,desert,1325853649 +32298,7842,Frank Herbert,1195994575 +32298,7842,made for TV,1248257174 +32298,7842,nudity (topless),1400282843 +32298,7842,royalty,1325853645 +32298,7843,drugs,1367297657 +32298,7843,marijuana,1367297669 +32298,7843,not available from Netflix,1255065858 +32298,7872,nudity (topless),1400279142 +32298,7883,based on a book,1247887205 +32298,7883,Charlotte Bronte,1247887205 +32298,7884,road trip,1317338282 +32298,7887,cheerleading,1400274881 +32298,7887,football,1400274881 +32298,7887,high school,1400274881 +32298,7887,nudity (full frontal),1400274694 +32298,7887,sports,1400274881 +32298,7888,Broadway,1246898939 +32298,7888,business,1244929512 +32298,7889,nudity (topless),1409743927 +32298,7890,based on a play,1300949726 +32298,7890,Gore Vidal,1300949726 +32298,7891,based on a book,1198027236 +32298,7891,free to download,1287739712 +32298,7891,last man on earth,1244972879 +32298,7891,post-apocalyptic,1245393332 +32298,7891,Richard Matheson,1245393286 +32298,7891,zombies,1244972872 +32298,7895,nudity (topless),1400615182 +32298,7901,H.P. Lovecraft,1197720390 +32298,7915,sword fight,1246584370 +32298,7918,directorial debut,1207214184 +32298,7919,gangsters,1248079010 +32298,7924,Japan,1249520420 +32298,7924,police,1249520397 +32298,7924,Tokyo,1249520417 +32298,7926,business,1249520454 +32298,7926,kidnapping,1249520524 +32298,7926,police,1249520519 +32298,7932,New York City,1195966058 +32298,7932,trains,1195965985 +32298,7933,parody,1268128292 +32298,7934,black and white,1204203323 +32298,7934,mockumentary,1244771847 +32298,7934,psychology,1244892737 +32298,7939,insanity,1246493069 +32298,7939,mental illness,1246493065 +32298,7940,not available from Netflix,1248307196 +32298,7943,based on a book,1369992311 +32298,7943,Ernest Hemingway,1207665712 +32298,7944,based on a play,1219269368 +32298,7944,Latin America,1248164077 +32298,7944,Mexico,1219269398 +32298,7944,Tennessee Williams,1219269368 +32298,7976,male nudity,1403441322 +32298,7976,nudity (full frontal),1400285380 +32298,7976,unsimulated sex,1400286400 +32298,7979,musicians,1390824392 +32298,7979,rock and roll,1390824392 +32298,7980,history,1248647236 +32298,7980,World War II,1248647230 +32298,7981,police,1250768291 +32298,7981,undercover cop,1250768283 +32298,7982,haunted house,1308001055 +32298,7984,alternate reality,1246449248 +32298,7984,based on a book,1369992410 +32298,7984,H.P. Lovecraft,1245398641 +32298,7984,mad scientist,1246449253 +32298,7984,nudity (topless),1402206437 +32298,7989,aliens,1318649047 +32298,7989,nudity (topless),1400279369 +32298,7989,remake,1318649054 +32298,7991,cars,1246454297 +32298,7991,dystopia,1246454328 +32298,7991,nudity (topless),1402948050 +32298,7994,buried alive,1245397544 +32298,7994,Edgar Allan Poe,1245398097 +32298,8008,Broadway,1246899033 +32298,8011,1960s,1245286940 +32298,8011,history,1245286933 +32298,8011,politics,1245286926 +32298,8014,Buddhism,1249049815 +32298,8015,based on a book,1244974155 +32298,8015,not available from Netflix,1247182997 +32298,8015,surreal,1247104062 +32298,8015,whimsical,1245235733 +32298,8015,witty,1244974154 +32298,8039,parody,1208762316 +32298,8042,mafia,1258972893 +32298,8042,New York City,1258972893 +32298,8044,corruption,1258707546 +32298,8044,escape,1258707546 +32298,8044,fugitive,1246103779 +32298,8044,prison escape,1258707546 +32298,8044,wrongly accused,1246103779 +32298,8057,based on a play,1219269708 +32298,8057,Tennessee Williams,1219269708 +32298,8062,biography,1251580192 +32298,8062,serial killer,1251450804 +32298,8062,true story,1251580192 +32298,8092,based on a book,1206924596 +32298,8092,Brian Aldiss,1206924596 +32298,8121,Canada,1251001438 +32298,8121,Quebec,1251001688 +32298,8122,post-apocalyptic,1387273829 +32298,8128,boarding school,1247045077 +32298,8128,true story,1247045103 +32298,8128,World War II,1247045103 +32298,8129,movie business,1255917475 +32298,8129,pornography,1255917475 +32298,8131,nudity (topless),1400281995 +32298,8132,boxing,1248089403 +32298,8132,easily confused with other movie(s) (title),1361503598 +32298,8132,sports,1248089403 +32298,8133,nudity (topless),1400279887 +32298,8141,Biblical,1381060504 +32298,8141,Christianity,1381060504 +32298,8141,religion,1381060504 +32298,8147,based on a book,1197709267 +32298,8147,disability,1245285422 +32298,8158,addiction,1245218749 +32298,8158,based on a book,1245218830 +32298,8158,corruption,1245221399 +32298,8158,drugs,1245218685 +32298,8158,police,1245218753 +32298,8158,police corruption,1245221402 +32298,8158,small town,1245221404 +32298,8158,Texas,1245221406 +32298,8158,undercover cop,1245218793 +32298,8167,pirates,1248155797 +32298,8167,seafaring,1248862187 +32298,8167,sword fight,1248155773 +32298,8189,based on a book,1246453269 +32298,8191,based on a play,1209785212 +32298,8191,England,1246757275 +32298,8191,royalty,1246757275 +32298,8194,based on a play,1219269567 +32298,8194,controversial,1248140767 +32298,8194,Tennessee Williams,1219269567 +32298,8201,Amazon,1246761727 +32298,8201,Brazil,1240889551 +32298,8201,Christianity,1229446794 +32298,8201,jungle,1246761732 +32298,8201,Latin America,1248164963 +32298,8201,Native Americans,1246761740 +32298,8201,not available from Netflix,1255919249 +32298,8201,nudity (rear),1400280055 +32298,8201,nudity (topless),1400280046 +32298,8201,religion,1195559680 +32298,8201,South America,1240889546 +32298,8207,assassin,1246483226 +32298,8221,not available from Netflix,1263039075 +32298,8225,remake,1246443972 +32298,8225,zombies,1246443970 +32298,8239,banned movie,1348577735 +32298,8239,controversial,1348577735 +32298,8256,17th century,1246619139 +32298,8256,cross dressing,1246619136 +32298,8256,cross dressing women,1246619136 +32298,8256,royalty,1246757626 +32298,8256,Sweden,1246619145 +32298,8267,directorial debut,1207130364 +32298,8268,assassin,1245401280 +32298,8268,remake,1246483101 +32298,8270,obsession,1245810639 +32298,8273,nudity (topless),1400280614 +32298,8292,based on a book,1382649200 +32298,8292,Dostoyevsky,1382649200 +32298,8292,love triangles,1382649200 +32298,8330,based on a book,1232004250 +32298,8330,Caribbean,1232024751 +32298,8330,Cuba,1232004229 +32298,8330,Havana,1246392163 +32298,8330,Latin America,1248165749 +32298,8332,easily confused with other movie(s) (title),1246769805 +32298,8337,based on a book,1246622123 +32298,8337,military,1246622104 +32298,8337,military court,1246622173 +32298,8337,World War II,1246622173 +32298,8338,mountains,1387281181 +32298,8338,nuns,1387281169 +32298,8340,Alcatraz,1387101303 +32298,8340,escape,1258707117 +32298,8340,island,1249519289 +32298,8340,prison,1249519268 +32298,8340,prison escape,1249519289 +32298,8341,based on a book,1207670845 +32298,8341,Charles Dickens,1207670845 +32298,8360,based on a book,1308034645 +32298,8360,crude humor,1308034645 +32298,8360,Dreamworks,1308034645 +32298,8360,fairy tale,1308034645 +32298,8360,franchise,1308034645 +32298,8360,parody,1308034617 +32298,8360,talking animals,1308034617 +32298,8360,watch the credits,1308034896 +32298,8360,witty,1308034617 +32298,8361,apocalypse,1245390566 +32298,8361,bad science,1262498620 +32298,8361,climate change,1258971209 +32298,8361,environmental,1246443694 +32298,8361,natural disaster,1246447232 +32298,8361,nature,1246447229 +32298,8361,New York City,1283394373 +32298,8361,unrealistic,1243587724 +32298,8361,weather,1246447216 +32298,8361,wintry,1390525020 +32298,8363,aviation,1257288954 +32298,8363,bad acting,1370255407 +32298,8365,May-December romance,1246593246 +32298,8365,nudity (topless),1400280403 +32298,8366,Christianity,1254736796 +32298,8366,directorial debut,1207189726 +32298,8366,high school,1205551982 +32298,8366,homophobia,1254736776 +32298,8366,irreverent,1240890962 +32298,8366,pregnancy,1245222065 +32298,8366,private school,1247047092 +32298,8366,religion,1254736796 +32298,8366,satire,1240890965 +32298,8366,school drama,1245833788 +32298,8366,subversive,1240890969 +32298,8366,teen pregnancy,1245222071 +32298,8368,based on a book,1196516358 +32298,8368,boarding school,1247045450 +32298,8368,franchise,1196516341 +32298,8368,Harry Potter,1344404574 +32298,8368,magic,1246445514 +32298,8368,time travel,1247368423 +32298,8368,werewolves,1246445558 +32298,8370,blindness,1247214829 +32298,8371,bad plot,1344428180 +32298,8371,sequel,1344428204 +32298,8371,space,1346748862 +32298,8373,androids,1244884808 +32298,8373,remake,1244883496 +32298,8373,robots,1244883527 +32298,8375,politics,1245500787 +32298,8376,high school,1245062345 +32298,8376,Idaho,1246981201 +32298,8376,low budget,1391751085 +32298,8376,misfits,1388930012 +32298,8376,quirky,1339924430 +32298,8376,quotable,1339924467 +32298,8376,small town,1245062340 +32298,8376,watch the credits,1339924421 +32298,8377,Calcutta,1253668706 +32298,8377,India,1253668706 +32298,8387,franchise,1251506097 +32298,8387,imdb bottom 100,1195618413 +32298,8395,Stephen Sondheim,1243333325 +32298,8401,Arthur Conan Doyle,1369666851 +32298,8404,Arthur Conan Doyle,1369666870 +32298,8404,based on a book,1369666870 +32298,8407,business is the antagonist,1394987166 +32298,8407,mining,1394987166 +32298,8421,nudity (full frontal),1400285234 +32298,8426,anthology,1251861562 +32298,8426,multiple storylines,1246393128 +32298,8426,robots,1196561759 +32298,8451,high school,1245377461 +32298,8451,rock and roll,1245377473 +32298,8451,teacher,1259239157 +32298,8455,Oscar (Best Documentary Feature),1205300285 +32298,8464,american idiocy,1380781121 +32298,8464,business,1379765340 +32298,8464,food,1379765343 +32298,8464,low budget,1391751511 +32298,8477,post-apocalyptic,1384581988 +32298,8477,time travel,1384581986 +32298,8480,Biblical,1261288567 +32298,8480,biography,1261288590 +32298,8480,Christianity,1261288573 +32298,8480,Jesus Christ,1261288578 +32298,8480,religion,1261288554 +32298,8482,based on a book,1246591195 +32298,8485,Buddhism,1247219719 +32298,8488,based on a book,1246582712 +32298,8488,India,1246582712 +32298,8491,gangsters,1246395466 +32298,8491,police,1246395451 +32298,8491,undercover cop,1246395449 +32298,8492,based on a book,1257901862 +32298,8492,Charles Dickens,1207666642 +32298,8492,Christmas,1246980088 +32298,8493,aviation,1259880289 +32298,8493,World War II,1259281062 +32298,8507,banned movie,1248141574 +32298,8507,black and white,1204202036 +32298,8507,circus,1244890053 +32298,8507,controversial,1248141574 +32298,8507,creepy,1240913100 +32298,8507,cult film,1247195672 +32298,8507,disturbing,1244891866 +32298,8507,gruesome,1244763102 +32298,8507,short,1255167537 +32298,8512,parody,1208762035 +32298,8519,imdb bottom 100,1195617975 +32298,8526,based on a book,1231679934 +32298,8526,Jules Verne,1231679934 +32298,8526,steampunk,1231679934 +32298,8528,obscure sports,1247214915 +32298,8528,sports,1247214881 +32298,8529,airport,1245415159 +32298,8530,deafness,1245811453 +32298,8530,Scotland,1245811462 +32298,8530,single parents,1245811485 +32298,8531,cross dressing,1370255469 +32298,8532,based on a book,1250315792 +32298,8532,nudity (full frontal),1400285067 +32298,8533,nudity (topless),1400283535 +32298,8535,biography,1244671986 +32298,8535,melancholy,1252739323 +32298,8535,musicians,1386749353 +32298,8535,queer,1255253449 +32298,8535,true story,1244671983 +32298,8574,Christmas,1160651824 +32298,8574,claymation,1240911386 +32298,8574,made for TV,1248257257 +32298,8574,Motown,1245285037 +32298,8574,not available from Netflix,1248257323 +32298,8574,rhythm & blues,1245809197 +32298,8574,short,1248257257 +32298,8576,police,1245567941 +32298,8576,police corruption,1245567947 +32298,8576,small town,1245567950 +32298,8578,epidemic,1246473573 +32298,8578,zombies,1246473561 +32298,8579,Catholicism,1245230654 +32298,8579,Nazis,1245230654 +32298,8579,true story,1245230665 +32298,8579,World War II,1245230654 +32298,8580,based on a play,1390079983 +32298,8580,fairy tale,1315972216 +32298,8580,parody,1315972216 +32298,8580,Stephen Sondheim,1315972216 +32298,8581,business,1243340307 +32298,8581,computers,1243340309 +32298,8581,geeks,1317368721 +32298,8581,history,1317368723 +32298,8581,true story,1244672049 +32298,8582,business,1269856703 +32298,8582,corruption,1245499524 +32298,8582,free to download,1269673257 +32298,8582,intelligent,1387461532 +32298,8582,journalism,1240890608 +32298,8582,politics,1244690937 +32298,8582,propaganda,1245499504 +32298,8582,youtube,1383590838 +32298,8588,nudity (full frontal),1400285801 +32298,8591,time travel,1382640899 +32298,8591,World War II,1382640896 +32298,8593,Harlem,1246674454 +32298,8593,hip hop,1246674454 +32298,8593,New York City,1246674454 +32298,8597,nudity (topless),1403945885 +32298,8598,nudity (topless),1407226045 +32298,8606,Jack Kerouac,1248255072 +32298,8606,poets,1248255059 +32298,8606,short,1246979635 +32298,8606,writers,1248255059 +32298,8612,based on a book,1207213717 +32298,8612,directorial debut,1207213717 +32298,8614,boat,1250052160 +32298,8622,9/11,1247217341 +32298,8622,american idiocy,1380781058 +32298,8622,Bush bashing,1245233098 +32298,8622,controversial,1245588874 +32298,8622,corruption,1245499928 +32298,8622,history,1257997897 +32298,8622,Iraq,1245538002 +32298,8622,Iraq War,1246747657 +32298,8622,Middle East,1246747654 +32298,8622,military,1250642325 +32298,8622,politics,1241005557 +32298,8622,terrorism,1380781261 +32298,8622,US President,1308071837 +32298,8623,astronomy,1278501758 +32298,8623,based on a play,1228089350 +32298,8623,science,1278501758 +32298,8623,unrealistic,1278501758 +32298,8633,space,1246575002 +32298,8633,video games,1382082930 +32298,8636,big budget,1244890369 +32298,8636,comic book,1246578657 +32298,8636,double life,1246755046 +32298,8636,franchise,1246578666 +32298,8636,Marvel,1245913878 +32298,8636,New York City,1244890380 +32298,8636,superhero,1244890372 +32298,8636,vigilante,1245913851 +32298,8638,Paris,1246482124 +32298,8638,sequel,1246482106 +32298,8638,writers,1246598720 +32298,8640,England,1243802669 +32298,8640,medieval,1244887904 +32298,8640,Roman empire,1244924779 +32298,8640,royalty,1246759254 +32298,8641,1970s,1369727668 +32298,8641,dog killing,1421460297 +32298,8641,journalism,1333102967 +32298,8641,San Diego,1406665288 +32298,8641,television,1245400991 +32298,8644,artificial intelligence,1241409526 +32298,8644,based on a book,1241409521 +32298,8644,Chicago,1430258330 +32298,8644,intelligent,1387461391 +32298,8644,Isaac Asimov,1240890283 +32298,8644,robots,1241409522 +32298,8645,Colombia,1283046443 +32298,8645,drugs,1245048380 +32298,8645,immigrants,1283046517 +32298,8645,Latin America,1283046495 +32298,8645,pregnancy,1246048478 +32298,8645,smuggling,1245048374 +32298,8645,South America,1283046495 +32298,8645,teen pregnancy,1246048484 +32298,8648,nudity (topless),1400279060 +32298,8654,comic strip,1246759985 +32298,8654,King Arthur,1246759985 +32298,8654,royalty,1246759985 +32298,8656,death penalty,1262498921 +32298,8656,short,1395090320 +32298,8662,Catholicism,1232003547 +32298,8662,Christianity,1232003547 +32298,8662,France,1232003574 +32298,8662,insanity,1246493716 +32298,8662,mental illness,1246493716 +32298,8662,mission from God,1245401421 +32298,8662,religion,1232003547 +32298,8665,amnesia,1246669467 +32298,8665,assassin,1246669467 +32298,8665,based on a book,1246577890 +32298,8665,CIA,1246669467 +32298,8665,espionage,1246669467 +32298,8665,fugitive,1246669467 +32298,8665,Robert Ludlum,1246577885 +32298,8666,cats,1246450436 +32298,8666,comic book,1246580583 +32298,8666,DC Comics,1245913671 +32298,8666,heroine in tight suit,1245913687 +32298,8667,polyamory,1384393350 +32298,8675,based on a book,1249051435 +32298,8675,submarine,1249051390 +32298,8675,World War II,1249051393 +32298,8677,comic strip,1246892967 +32298,8681,Holy Grail,1196518620 +32298,8690,based on a book,1242203996 +32298,8690,Kurt Vonnegut,1242203997 +32298,8690,time travel,1242204035 +32298,8696,nudity (topless),1407233300 +32298,8698,based on a book,1266391797 +32298,8698,Ian McEwan,1266391797 +32298,8698,nudity (topless),1400279696 +32298,8702,nudity (full frontal),1400285541 +32298,8724,19th century,1248304746 +32298,8724,royalty,1248304784 +32298,8729,19th century,1398251400 +32298,8729,France,1398251400 +32298,8729,nudity (topless),1400279290 +32298,8729,Paris,1398251400 +32298,8732,nudity (full frontal),1400284919 +32298,8737,nudity (topless),1400278401 +32298,8741,nudity (topless),1400278939 +32298,8742,nudity (topless),1400295856 +32298,8746,nudity (topless),1407218793 +32298,8749,nudity (full frontal),1400284879 +32298,8753,Bush bashing,1245233280 +32298,8753,corruption,1245502408 +32298,8753,election,1245502402 +32298,8753,Florida,1245502413 +32298,8753,politics,1245233285 +32298,8753,US President,1245502462 +32298,8769,multiple roles,1246751812 +32298,8770,nudity (topless),1420328056 +32298,8771,Arthur Conan Doyle,1369667331 +32298,8771,Sherlock Holmes,1369667331 +32298,8774,Arthur Conan Doyle,1369667347 +32298,8774,Sherlock Holmes,1369667347 +32298,8778,Arthur Conan Doyle,1369667297 +32298,8778,Sherlock Holmes,1369667297 +32298,8781,assassin,1245056260 +32298,8781,based on a book,1218252982 +32298,8781,brainwashing,1240890603 +32298,8781,remake,1218252982 +32298,8782,based on a TV show,1197806460 +32298,8783,blindness,1245228030 +32298,8783,disability,1245811272 +32298,8783,forest,1245228018 +32298,8783,great ending,1386304994 +32298,8783,secrets,1245739197 +32298,8783,small town,1207566500 +32298,8783,trailer was misleading,1245739270 +32298,8783,twist ending,1240911688 +32298,8783,underrated,1385389916 +32298,8784,bad soundtrack,1422331132 +32298,8784,coming of age,1248087815 +32298,8784,directorial debut,1207198879 +32298,8784,mental illness,1245844068 +32298,8784,quirky,1260176733 +32298,8789,based on a book,1369977725 +32298,8798,assassin,1245116789 +32298,8798,jazz club,1245116775 +32298,8798,nightclub,1248078835 +32298,8798,one day,1245116799 +32298,8800,fascism,1247649004 +32298,8800,nudity (full frontal),1400285246 +32298,8804,abortion,1252949036 +32298,8804,France,1252949022 +32298,8804,pregnancy,1252949036 +32298,8804,true story,1252949022 +32298,8807,buddy movie,1246255221 +32298,8807,drugs,1244934823 +32298,8807,marijuana,1244885623 +32298,8807,nudity (topless),1400283580 +32298,8807,one day,1245060193 +32298,8807,road trip,1244885596 +32298,8807,stoner movie,1246254850 +32298,8808,royalty,1246760240 +32298,8809,Australia,1245059984 +32298,8809,small town,1245059979 +32298,8810,aliens,1245117347 +32298,8810,Antarctica,1240889567 +32298,8810,franchise,1245117350 +32298,8810,monster,1245117370 +32298,8810,polar,1368313347 +32298,8810,wintry,1400879816 +32298,8812,nudity (full frontal),1419527153 +32298,8813,adultery,1247211388 +32298,8822,King Arthur,1308219285 +32298,8825,nudity (topless),1400274577 +32298,8827,stand-up comedy,1246588392 +32298,8831,serial killer,1246587093 +32298,8831,vigilante,1246587093 +32298,8833,based on a book,1245061577 +32298,8839,based on a book,1394187558 +32298,8839,Stephen King,1394187558 +32298,8840,directorial debut,1207128618 +32298,8848,small town,1387273250 +32298,8851,beauty pageant,1371108989 +32298,8851,nudity (topless),1400279964 +32298,8852,based on a book,1245236049 +32298,8852,Lord Jim,1245236049 +32298,8853,directorial debut,1207902508 +32298,8854,nudity (topless),1402207726 +32298,8855,nudity (full frontal),1400285708 +32298,8859,imdb bottom 100,1195616476 +32298,8860,kidnapping,1245389410 +32298,8861,nudity (topless),1400283185 +32298,8861,post-apocalyptic,1246443097 +32298,8861,video game adaptation,1246574310 +32298,8861,zombies,1245237855 +32298,8862,con artists,1245743383 +32298,8862,heist,1319795406 +32298,8865,robots,1246449027 +32298,8865,steampunk,1231679850 +32298,8866,sports,1387430226 +32298,8866,tennis,1387430231 +32298,8867,unsimulated sex,1400289901 +32298,8868,nudity (topless),1400280440 +32298,8869,US President,1315637228 +32298,8870,aliens,1390022090 +32298,8873,1950s,1396505842 +32298,8873,based on a book,1245536951 +32298,8873,biography,1246587955 +32298,8873,Latin America,1251506568 +32298,8873,politics,1246394746 +32298,8873,road trip,1245286465 +32298,8873,South America,1210221914 +32298,8873,true story,1245286462 +32298,8874,England,1245224573 +32298,8874,London,1245224573 +32298,8874,parody,1245224545 +32298,8874,zombies,1245224540 +32298,8877,musicians,1379407635 +32298,8879,Agatha Christie,1244933213 +32298,8879,based on a book,1193961099 +32298,8879,trains,1244933198 +32298,8887,nudity (topless),1400279353 +32298,8898,based on a book,1310110507 +32298,8898,island,1310110507 +32298,8898,shipwreck,1310110507 +32298,8899,nudity (topless),1400280028 +32298,8899,pornography,1392609716 +32298,8902,bugs,1247216170 +32298,8904,Halloween,1387273764 +32298,8906,banned movie,1248139948 +32298,8906,cannibalism,1248139823 +32298,8906,controversial,1248139855 +32298,8906,found footage,1404920747 +32298,8908,firefighters,1235797108 +32298,8910,business,1246448382 +32298,8910,intelligent,1387461539 +32298,8910,philosophy,1245224300 +32298,8910,satire,1244714418 +32298,8914,Alfred P. Sloan Feature Film Prize,1240890885 +32298,8914,complicated,1387126171 +32298,8914,directorial debut,1207130875 +32298,8914,intelligent,1387126196 +32298,8914,inventor,1246893388 +32298,8914,low budget,1207130896 +32298,8914,physics,1240890890 +32298,8914,science,1240890894 +32298,8914,time travel,1244771444 +32298,8915,based on a play,1246755698 +32298,8915,cross dressing,1246621389 +32298,8915,cross dressing men,1246621389 +32298,8915,nudity (topless),1400281335 +32298,8917,america porn,1348128301 +32298,8917,irreverent,1240912845 +32298,8917,politics,1244925050 +32298,8917,puppets,1244925044 +32298,8917,satire,1240912849 +32298,8917,terrorism,1244925048 +32298,8918,black comedy,1204568179 +32298,8918,family gatherings,1245287707 +32298,8918,funeral,1245287712 +32298,8921,based on a play,1219269516 +32298,8921,Tennessee Williams,1219269515 +32298,8922,epidemic,1247219276 +32298,8923,based on a book,1268383652 +32298,8923,Thomas Hardy,1268383652 +32298,8924,directorial debut,1207129301 +32298,8926,multiple roles,1246751639 +32298,8930,movie business,1245811092 +32298,8931,money,1246851585 +32298,8931,royalty,1284452405 +32298,8937,high school,1376809668 +32298,8937,sports,1376809670 +32298,8938,insanity,1246493452 +32298,8938,mental illness,1195994758 +32298,8939,memory,1294593451 +32298,8941,based on a book,1244929210 +32298,8941,Stephen King,1244929217 +32298,8947,haunted house,1245233968 +32298,8947,remake,1245233946 +32298,8948,nudity (topless),1400282807 +32298,8948,remake,1280965565 +32298,8949,aging,1387279472 +32298,8949,based on a book,1246267421 +32298,8949,drinking,1379678057 +32298,8949,midlife crisis,1246267393 +32298,8949,nudity (topless),1400283808 +32298,8949,road trip,1379678064 +32298,8949,wine,1384175855 +32298,8949,writers,1246599052 +32298,8950,bleak,1338885749 +32298,8950,creepy,1386242258 +32298,8950,imaginary friend,1338885763 +32298,8950,memory,1338885733 +32298,8950,nudity (topless),1400283681 +32298,8950,twist ending,1338885724 +32298,8951,1950s,1252949147 +32298,8951,abortion,1252949134 +32298,8951,England,1274294674 +32298,8951,pregnancy,1252949147 +32298,8954,blues,1255169813 +32298,8956,based on a book,1266391261 +32298,8956,Ian McEwan,1266391261 +32298,8957,brutal,1382012933 +32298,8957,franchise,1308000760 +32298,8957,great ending,1386304975 +32298,8957,serial killer,1148728881 +32298,8957,torture,1339999836 +32298,8957,twist ending,1356343144 +32298,8958,biography,1255174918 +32298,8958,blindness,1245466064 +32298,8958,disability,1245811303 +32298,8958,drugs,1397303883 +32298,8958,genius,1255174927 +32298,8958,great soundtrack,1397303858 +32298,8958,musicians,1379410983 +32298,8958,rhythm & blues,1243497547 +32298,8958,vocalists,1246734077 +32298,8961,double life,1318274634 +32298,8961,imdb top 250,1246450281 +32298,8961,invisibility,1318274556 +32298,8961,Pixar,1246450270 +32298,8961,superhero,1246450272 +32298,8962,hip hop,1209544371 +32298,8962,vocalists,1246735817 +32298,8965,based on a book,1344757370 +32298,8965,big budget,1196515885 +32298,8965,Chris Van Allsburg,1242196366 +32298,8965,Christmas,1244763913 +32298,8965,trains,1245391316 +32298,8966,adultery,1241716477 +32298,8966,biography,1246394102 +32298,8966,gay,1255254018 +32298,8966,genius,1245834910 +32298,8966,male nudity,1244928252 +32298,8966,nudity (full frontal),1400284394 +32298,8966,psychology,1241005116 +32298,8966,queer,1255254030 +32298,8966,science,1241005111 +32298,8966,sex,1241412854 +32298,8969,sequel,1215597969 +32298,8970,biography,1247360239 +32298,8970,England,1246598467 +32298,8970,fairy tale,1247360232 +32298,8970,J.M. Barrie,1204116343 +32298,8970,single parents,1245059219 +32298,8970,true story,1244888331 +32298,8970,writers,1246598436 +32298,8972,history,1350042824 +32298,8972,treasure hunt,1350042877 +32298,8973,Catholicism,1246401135 +32298,8973,Christianity,1246401153 +32298,8973,gay,1255254933 +32298,8973,queer,1246617958 +32298,8973,religion,1246401139 +32298,8974,2D animation,1263387831 +32298,8974,based on a TV show,1250130780 +32298,8977,big budget,1196515950 +32298,8977,biography,1249051747 +32298,8977,bisexual,1249051756 +32298,8977,history,1249051719 +32298,8977,nudity (topless),1400283116 +32298,8977,queer,1255256068 +32298,8981,based on a play,1246582367 +32298,8982,based on a book,1251000046 +32298,8983,China,1246402648 +32298,8983,martial arts,1246402640 +32298,8984,bad plot,1350609321 +32298,8984,complicated,1381719322 +32298,8984,confusing,1344324112 +32298,8984,ensemble cast,1197724316 +32298,8984,heist,1247042512 +32298,8985,comic book,1246581471 +32298,8985,Marvel,1246581464 +32298,8985,sequel,1209444695 +32298,8985,vampires,1246581474 +32298,8987,Bush bashing,1245233342 +32298,8987,politics,1245233344 +32298,8987,Republicans,1245233352 +32298,8989,baseball,1245376406 +32298,8989,based on a book,1245376406 +32298,8989,based on a play,1245376406 +32298,8989,Broadway,1245736079 +32298,8989,deal with the devil,1245736347 +32298,8989,sports,1245376406 +32298,9013,Richard Nixon,1260071761 +32298,9017,based on a book,1207671075 +32298,9017,Charles Dickens,1207671075 +32298,9018,Iraq,1245538057 +32298,9018,Iraq war,1245499401 +32298,9018,journalism,1243413989 +32298,9018,Middle East,1245499414 +32298,25736,alter ego,1246756381 +32298,25736,based on a book,1227618967 +32298,25736,double life,1246756380 +32298,25736,Robert Louis Stevenson,1227618967 +32298,25746,based on a book,1248167439 +32298,25746,Victor Hugo,1248167439 +32298,25765,based on a book,1369992401 +32298,25765,Edgar Allan Poe,1245398558 +32298,25771,surreal,1246453154 +32298,25788,remade,1346121903 +32298,25793,black and white,1288133763 +32298,25793,vampires,1288133761 +32298,25801,New York City,1268294068 +32298,25807,based on a book,1369992450 +32298,25807,Edgar Allan Poe,1245398083 +32298,25810,World War I,1233560497 +32298,25820,based on a poem,1233146532 +32298,25820,Edgar Allan Poe,1233146536 +32298,25825,revenge,1245638915 +32298,25825,wrongly accused,1245638950 +32298,25828,based on a play,1204344702 +32298,25834,based on a book,1244972124 +32298,25834,Rudyard Kipling,1244972124 +32298,25842,based on a book,1247280414 +32298,25842,ghosts,1247280414 +32298,25856,based on a book,1371361119 +32298,25859,19th century,1249344503 +32298,25859,biography,1249344503 +32298,25859,history,1249344503 +32298,25859,US President,1249344503 +32298,25864,biography,1330503387 +32298,25864,inventor,1330503387 +32298,25885,propaganda,1387299430 +32298,25885,World War II,1387299430 +32298,25890,angel,1245537206 +32298,25890,not on DVD,1245626068 +32298,25890,propaganda,1245537206 +32298,25890,sentimental,1245537206 +32298,25890,World War II,1245537206 +32298,25893,aviation,1259880318 +32298,25893,World War II,1259880319 +32298,25901,Shakespeare,1245577297 +32298,25918,addiction,1249525472 +32298,25918,alcoholism,1249525468 +32298,25918,Brooklyn,1249525461 +32298,25918,New York City,1249525461 +32298,25918,poverty,1249525465 +32298,25923,based on a book,1207666275 +32298,25936,baseball,1353438538 +32298,25936,sports,1353438538 +32298,25959,based on a play,1249011499 +32298,25959,Broadway,1249011509 +32298,25962,Africa,1246759537 +32298,25962,treasure hunt,1246759537 +32298,25972,small town,1249010668 +32298,25974,based on a book,1249048163 +32298,25974,impostor,1249048163 +32298,25974,multiple roles,1249048163 +32298,25974,royalty,1249048163 +32298,25984,business,1251650471 +32298,25984,business is the antagonist,1251650471 +32298,25984,Ealing Studios,1261153266 +32298,25984,England,1251650471 +32298,25984,plot:small British community comes together,1283199454 +32298,25984,small town,1251650471 +32298,25984,trains,1255919052 +32298,25986,not available from Netflix,1248306223 +32298,26003,Holocaust,1245231153 +32298,26003,Poland,1245231172 +32298,26009,Buddhism,1247219885 +32298,26009,World War II,1247219845 +32298,26027,aviation,1268717377 +32298,26043,Vikings,1245904710 +32298,26051,Africa,1244845843 +32298,26051,Catholicism,1244845822 +32298,26051,Christianity,1244845822 +32298,26051,nuns,1387281072 +32298,26051,religion,1244845822 +32298,26056,based on a book,1249048062 +32298,26056,lawyers,1249048062 +32298,26064,business,1246393794 +32298,26064,corruption,1246393788 +32298,26064,revenge,1246393806 +32298,26064,suicide,1246393815 +32298,26070,small town,1351239920 +32298,26074,jazz,1274354012 +32298,26074,Paris,1274354012 +32298,26084,based on a play,1245376183 +32298,26084,Broadway,1246898916 +32298,26084,marching bands,1246898912 +32298,26099,vampires,1384516003 +32298,26113,based on a play,1300949636 +32298,26113,Gore Vidal,1300949636 +32298,26113,politics,1300949636 +32298,26117,based on a book,1369992435 +32298,26117,Ernest Hemingway,1207666076 +32298,26131,Africa,1246490185 +32298,26131,Algeria,1246490185 +32298,26131,colonialism,1246490168 +32298,26131,France,1246770483 +32298,26131,history,1246490165 +32298,26131,imdb top 250,1246770456 +32298,26133,2D animation,1262765175 +32298,26133,Christmas,1248255202 +32298,26133,made for TV,1248256708 +32298,26133,short,1246979335 +32298,26148,trains,1193961547 +32298,26148,World War II,1264061892 +32298,26150,15th century,1246591037 +32298,26150,artist,1246598110 +32298,26150,biography,1246591042 +32298,26150,painter,1246591050 +32298,26150,Russia,1246591058 +32298,26152,Batman,1245913496 +32298,26152,comic book,1246580435 +32298,26152,DC Comics,1245913501 +32298,26152,double life,1246754734 +32298,26152,franchise,1245913522 +32298,26152,superhero,1246450402 +32298,26152,vigilante,1245913522 +32298,26153,cars,1247280471 +32298,26153,racing,1247280471 +32298,26153,sports,1247280471 +32298,26158,based on a book,1250558571 +32298,26158,trains,1250558571 +32298,26158,World War II,1250558571 +32298,26163,1960s,1390824297 +32298,26163,Bob Dylan,1390824300 +32298,26163,musicians,1390824305 +32298,26176,asylum,1259307143 +32298,26176,banned movie,1259307144 +32298,26176,black and white,1259307144 +32298,26176,controversial,1259307143 +32298,26176,Massachusetts,1259307144 +32298,26176,prison,1259307144 +32298,26177,Florida,1233232268 +32298,26203,artificial intelligence,1298338702 +32298,26213,based on a book,1412980900 +32298,26213,William Faulkner,1412980900 +32298,26219,not available from Netflix,1248306837 +32298,26219,not on DVD,1245629095 +32298,26241,controversial,1248140541 +32298,26242,based on a book,1369992342 +32298,26242,directorial debut,1245398460 +32298,26242,Richard Matheson,1245398359 +32298,26248,vampires,1247744190 +32298,26254,aviation,1268101692 +32298,26254,World War I,1268101692 +32298,26257,unsimulated sex,1400286775 +32298,26259,not available from Netflix,1248398555 +32298,26274,nudity (topless),1404668292 +32298,26285,directorial debut,1246454206 +32298,26285,parody,1246454274 +32298,26285,space,1249545563 +32298,26289,trains,1264061866 +32298,26291,based on a play,1404851944 +32298,26291,Tennessee Williams,1404851944 +32298,26312,based on a play,1245904488 +32298,26312,gay,1255253173 +32298,26317,Bangkok,1245578231 +32298,26317,based on a book,1245578231 +32298,26317,bisexual,1245578231 +32298,26317,erotic,1245578231 +32298,26317,nudity (full frontal),1400285647 +32298,26317,queer,1255256177 +32298,26317,sex,1245578231 +32298,26317,Thailand,1245578231 +32298,26318,nudity (topless),1400280380 +32298,26322,car chase,1384475974 +32298,26322,cars,1384475969 +32298,26322,easily confused with other movie(s) (title),1384475895 +32298,26322,remade,1384475934 +32298,26325,military,1277556661 +32298,26325,racism,1277556661 +32298,26325,Vietnam,1277556661 +32298,26325,Vietnam War,1277556661 +32298,26341,based on a book,1258963205 +32298,26341,lesbian,1258963422 +32298,26341,nudity (full frontal),1400285535 +32298,26359,male nudity,1381823961 +32298,26359,nudity (full frontal),1400284859 +32298,26366,Kentucky,1245646691 +32298,26366,mining,1245646682 +32298,26370,desert,1267667283 +32298,26370,Islam,1267667283 +32298,26370,Middle East,1267667283 +32298,26370,religion,1267667283 +32298,26379,based on a book,1246101257 +32298,26379,Biblical,1246101250 +32298,26379,Christianity,1246101246 +32298,26379,Jesus Christ,1246345666 +32298,26379,made for TV,1297632012 +32298,26379,religion,1246101247 +32298,26394,ballet,1379411574 +32298,26394,dance,1379411576 +32298,26395,made for TV,1262751329 +32298,26395,parody,1262751329 +32298,26395,rock and roll,1262751329 +32298,26398,conspiracy,1248085170 +32298,26398,journalism,1248085188 +32298,26398,space,1248085188 +32298,26403,2D animation,1263387809 +32298,26403,based on a book,1239692909 +32298,26403,dragons,1394788636 +32298,26403,Tolkien,1239692927 +32298,26404,nudity (topless),1400278883 +32298,26409,cloning,1249518004 +32298,26409,conspiracy,1249518060 +32298,26409,slavery,1249518004 +32298,26411,artist,1246598123 +32298,26411,not available from Netflix,1246567880 +32298,26411,Pablo Picasso,1246567935 +32298,26411,painter,1246567935 +32298,26416,disability,1351239771 +32298,26416,mental illness,1351239771 +32298,26435,Boston,1248398673 +32298,26436,based on a book,1267926095 +32298,26444,aliens,1296130297 +32298,26444,based on a book,1296130164 +32298,26444,Douglas Adams,1296130133 +32298,26444,made for TV,1296130129 +32298,26444,space,1296130294 +32298,26444,whimsical,1296130308 +32298,26444,witty,1296130308 +32298,26446,Holocaust,1294399416 +32298,26448,not available from Netflix,1248398371 +32298,26448,not on DVD,1248398371 +32298,26459,France,1400276279 +32298,26462,easily confused with other movie(s) (title),1361581258 +32298,26464,nudity (full frontal),1400285452 +32298,26467,post-apocalyptic,1247744135 +32298,26471,stand-up comedy,1298083304 +32298,26479,pirates,1245061168 +32298,26481,nudity (full frontal),1400285155 +32298,26485,based on a book,1212237002 +32298,26485,S.E. Hinton,1212237002 +32298,26487,movie business,1246932828 +32298,26487,nudity (topless),1400279836 +32298,26487,true story,1255335824 +32298,26492,Jerome Bixby,1204613478 +32298,26492,Richard Matheson,1245396415 +32298,26492,Rod Serling,1233549697 +32298,26502,based on a book,1231320343 +32298,26502,Charles Dickens,1231320344 +32298,26502,Christmas,1231320343 +32298,26502,made for TV,1257901808 +32298,26510,franchise,1377425924 +32298,26510,Star Wars,1377425924 +32298,26515,based on a TV show,1401880417 +32298,26515,made for TV,1401780843 +32298,26515,mockumentary,1401780834 +32298,26515,musicians,1401780834 +32298,26515,polka,1401780834 +32298,26515,SCTV,1401880417 +32298,26515,short,1403104930 +32298,26520,nudity (topless),1407222592 +32298,26523,nudity (topless),1413917921 +32298,26524,San Francisco,1243813830 +32298,26530,nudity (topless),1407206173 +32298,26538,based on a book,1267488229 +32298,26538,cloning,1267488229 +32298,26538,nudity (topless),1401487949 +32298,26542,franchise,1377425915 +32298,26542,Star Wars,1377425915 +32298,26554,based on a book,1204431229 +32298,26554,last man on earth,1244972762 +32298,26554,New Zealand,1240703336 +32298,26554,nudity (rear),1400281504 +32298,26554,nudity (topless),1400281504 +32298,26554,post-apocalyptic,1245390529 +32298,26555,espionage,1393545427 +32298,26560,not available from Netflix,1252571092 +32298,26562,dance,1379411797 +32298,26564,addiction,1245116021 +32298,26564,alcoholism,1245116021 +32298,26564,drinking,1248090635 +32298,26564,France,1245116021 +32298,26564,jazz,1245115393 +32298,26564,musicians,1386559150 +32298,26564,Oscar (Best Music - Original Score),1245116113 +32298,26564,Paris,1245115982 +32298,26564,racism,1245116028 +32298,26581,American Civil War,1268870406 +32298,26581,civil war,1268870406 +32298,26599,queer,1246618198 +32298,26606,based on a book,1246584005 +32298,26606,China,1246584027 +32298,26606,ghosts,1246584023 +32298,26614,easily confused with other movie(s) (title),1260071451 +32298,26614,made for TV,1248256824 +32298,26614,remade,1260071464 +32298,26630,not available from Netflix,1248080266 +32298,26631,based on a book,1384093709 +32298,26631,Lewis Carroll,1384093709 +32298,26631,miniaturization,1384093701 +32298,26638,ghosts,1269243986 +32298,26638,prison,1269243986 +32298,26649,made for TV,1248257097 +32298,26649,New Mexico,1232004126 +32298,26649,Texas,1232004126 +32298,26662,anime,1246179078 +32298,26662,aviation,1247041190 +32298,26680,1950s,1281267623 +32298,26680,campy,1281267632 +32298,26682,police,1197338365 +32298,26689,Caribbean,1246424273 +32298,26689,Cuba,1246424268 +32298,26689,gambling,1246424268 +32298,26689,Havana,1246424268 +32298,26689,Latin America,1248165820 +32298,26693,based on a book,1229578486 +32298,26693,clowns,1229578481 +32298,26693,Stephen King,1229578481 +32298,26700,cross dressing,1246620096 +32298,26700,cross dressing men,1246620096 +32298,26700,impostor,1246621768 +32298,26700,nudity (topless),1400280703 +32298,26700,nuns,1387281155 +32298,26701,robots,1233654418 +32298,26702,small town,1267667603 +32298,26704,New York City,1228452547 +32298,26708,based on a book,1384476347 +32298,26710,high school,1249047959 +32298,26710,small town,1249047957 +32298,26712,7n Up (series),1232330750 +32298,26714,high school,1250906091 +32298,26728,Cold War,1246741360 +32298,26728,communism,1246741360 +32298,26728,movie business,1246741360 +32298,26728,politics,1246741360 +32298,26729,movie business,1383537144 +32298,26734,nudity (topless),1400279746 +32298,26737,drugs,1248716997 +32298,26749,based on a play,1255336005 +32298,26749,not available from Netflix,1255336012 +32298,26749,Shakespeare,1255336005 +32298,26751,not available from Netflix,1247097792 +32298,26751,not on DVD,1247097758 +32298,26763,nudity (topless),1400298795 +32298,26767,AIDS,1381729621 +32298,26774,nudity (topless),1402286871 +32298,26776,anime,1246179151 +32298,26782,1950s,1350820268 +32298,26782,based on a book,1371892931 +32298,26782,latin music,1350820268 +32298,26782,musicians,1379409845 +32298,26782,nudity (full frontal),1400285389 +32298,26804,made for TV,1248257107 +32298,26804,Montana,1239782996 +32298,26804,sequel,1248257107 +32298,26809,nudity (full frontal),1400285004 +32298,26810,bad parents,1247633593 +32298,26810,black comedy,1247633588 +32298,26810,incest,1248326936 +32298,26810,nudity (full frontal),1400284844 +32298,26812,business,1250051611 +32298,26812,true story,1250051611 +32298,26814,nudity (topless),1401881127 +32298,26819,dystopia,1249519403 +32298,26819,prison,1249519399 +32298,26822,puppets,1251650538 +32298,26831,not available from Netflix,1248716932 +32298,26840,organized crime,1248079111 +32298,26840,yakuza,1248079111 +32298,26849,based on a book,1353438354 +32298,26849,Stephen King,1353438351 +32298,26853,nudity (topless),1399885665 +32298,26856,nudity (topless),1400303249 +32298,26856,vampires,1400303249 +32298,26865,martial arts,1245577739 +32298,26865,remake,1297914025 +32298,26865,revenge,1297914024 +32298,26874,nudity (topless),1402207486 +32298,26887,based on a book,1246085510 +32298,26887,Stephen King,1246085510 +32298,26887,time travel,1246085510 +32298,26898,assassin,1248079061 +32298,26898,Yakuza,1248079040 +32298,26900,based on a book,1267535483 +32298,26900,small town,1267535510 +32298,26900,wedding,1267535510 +32298,26903,books,1246599145 +32298,26903,teen,1247044160 +32298,26903,writers,1246599142 +32298,26914,history,1233146596 +32298,26914,made for TV,1280127324 +32298,26914,military,1280127325 +32298,26914,nuclear bomb,1233146692 +32298,26925,cannibalism,1254858602 +32298,26947,drugs,1294999631 +32298,26964,nudity (topless),1400278111 +32298,26974,natural disaster,1246794839 +32298,26974,nudity (topless),1400281651 +32298,26974,tornado,1246794839 +32298,26982,easily confused with other movie(s) (title),1387278312 +32298,26982,small town,1387278312 +32298,26989,kidnapping,1245226722 +32298,26989,nudity (topless),1400279473 +32298,26990,nudity (topless),1408859487 +32298,26999,sequel,1382083055 +32298,26999,talking animals,1382083055 +32298,27002,astronauts,1245280488 +32298,27002,history,1240890132 +32298,27002,made for TV,1248256297 +32298,27002,NASA,1245280488 +32298,27002,space,1239356542 +32298,27002,true story,1239356581 +32298,27002,TV series,1372987112 +32298,27003,based on a poem,1362992316 +32298,27003,nudity (topless),1400280069 +32298,27006,movie business,1246741609 +32298,27006,true story,1246741605 +32298,27020,nudity (full frontal),1400285175 +32298,27022,nudity (topless),1400280214 +32298,27027,based on a book,1308075621 +32298,27027,history,1245809057 +32298,27027,not available from Netflix,1293791692 +32298,27027,philosophy,1240891065 +32298,27032,martial arts,1248849597 +32298,27040,business,1246103077 +32298,27040,nudity (topless),1399713583 +32298,27044,doctors,1262751283 +32298,27044,nudity (topless),1399885951 +32298,27064,Batman,1376307302 +32298,27064,comic book,1376307302 +32298,27064,superhero,1376307302 +32298,27073,Australia,1368102544 +32298,27073,bank robbery,1368102544 +32298,27073,Sydney,1368102544 +32298,27074,Aldous Huxley,1344164674 +32298,27074,based on a book,1344164674 +32298,27074,made for TV,1344164673 +32298,27081,nudity (topless),1400278348 +32298,27094,China,1251650676 +32298,27094,prostitution,1251650676 +32298,27108,based on a book,1249517887 +32298,27108,black and white,1249517816 +32298,27108,prostitution,1249517828 +32298,27114,hackers,1260403411 +32298,27132,Japan,1248166229 +32298,27132,martial arts,1248166229 +32298,27140,nudity (topless),1399886156 +32298,27155,comic book,1246754840 +32298,27155,double life,1246754840 +32298,27155,superhero,1246754840 +32298,27164,movie business,1381645731 +32298,27164,zombies,1381645731 +32298,27166,nudity (full frontal),1400285238 +32298,27171,nudity (topless),1403439904 +32298,27172,Andrew Lloyd Webber,1390080794 +32298,27172,based on a book,1354055700 +32298,27172,Biblical,1354055700 +32298,27180,Catholicism,1232003610 +32298,27180,Christianity,1232003609 +32298,27180,France,1232003609 +32298,27180,history,1232003609 +32298,27180,insanity,1246493727 +32298,27180,mental illness,1246493727 +32298,27180,mission from God,1245401437 +32298,27180,religion,1232003609 +32298,27186,Africa,1250035893 +32298,27186,magic,1250035910 +32298,27204,serial killer,1264141810 +32298,27212,nudity (full frontal),1402948715 +32298,27213,Catholicism,1249048287 +32298,27213,Christianity,1249048287 +32298,27213,New Mexico,1249048303 +32298,27213,religion,1249048287 +32298,27213,small town,1249048303 +32298,27216,based on a book,1369992371 +32298,27216,Finland,1245230095 +32298,27217,musicians,1379409781 +32298,27217,rock and roll,1268870440 +32298,27220,nudity (topless),1400287733 +32298,27246,lesbian,1263195341 +32298,27246,made for TV,1270885951 +32298,27246,multiple storylines,1279621542 +32298,27246,nudity (topless),1400279773 +32298,27246,sequel,1402872838 +32298,27249,based on a book,1413543023 +32298,27251,alternate reality,1310510245 +32298,27251,fairy tale,1310510241 +32298,27251,made for TV,1310510250 +32298,27253,Disney,1248258323 +32298,27253,made for TV,1248258323 +32298,27255,Iran,1231765592 +32298,27255,Middle East,1245538893 +32298,27255,scenic,1308076278 +32298,27255,small town,1245538906 +32298,27261,gay,1255254422 +32298,27261,Germany,1253561086 +32298,27261,May-December romance,1253561086 +32298,27261,nudity (full frontal),1400285147 +32298,27261,queer,1255254434 +32298,27266,time travel,1245050672 +32298,27266,trains,1240889332 +32298,27271,19th century,1246584192 +32298,27271,Japan,1246584224 +32298,27271,sword fight,1246584210 +32298,27309,nudity (full frontal),1400285743 +32298,27311,Batman,1246754801 +32298,27311,comic book,1246754801 +32298,27311,DC Comics,1246754801 +32298,27311,double life,1246754801 +32298,27311,franchise,1246754801 +32298,27311,superhero,1246754801 +32298,27311,vigilante,1246754801 +32298,27321,Cuba,1405461619 +32298,27321,jazz,1405461606 +32298,27321,latin jazz,1405461607 +32298,27321,latin music,1405461609 +32298,27321,musicians,1405461610 +32298,27321,totalitarianism,1405461619 +32298,27321,youtube,1405461611 +32298,27329,Arkansas,1247097664 +32298,27329,made for TV,1280127502 +32298,27329,wrongly accused,1280127502 +32298,27340,1930s,1254986302 +32298,27340,colonialism,1254986460 +32298,27340,interracial romance,1254986411 +32298,27340,jungle,1254986448 +32298,27340,nudity (topless),1399718393 +32298,27369,2D animation,1263387779 +32298,27369,based on a TV show,1247051823 +32298,27369,made for TV,1250206218 +32298,27369,MTV,1247051858 +32298,27369,sarcasm,1247052120 +32298,27369,teen,1247051856 +32298,27373,baseball,1278034102 +32298,27373,made for TV,1278034109 +32298,27373,sports,1278034109 +32298,27376,1960s,1258707032 +32298,27376,Berlin,1258706906 +32298,27376,escape,1258707032 +32298,27376,Germany,1258707032 +32298,27402,based on a book,1369992488 +32298,27402,H.P. Lovecraft,1246616074 +32298,27402,monster,1246616063 +32298,27410,Holocaust,1244970717 +32298,27410,nazis,1244970713 +32298,27410,World War II,1244970710 +32298,27432,immigrants,1246614795 +32298,27441,anime,1248399117 +32298,27441,vampires,1248399117 +32298,27454,Australia,1280997879 +32298,27456,Antarctica,1368313409 +32298,27456,polar,1368313409 +32298,27461,nudity (topless),1400279624 +32298,27461,reality TV,1249499775 +32298,27461,television,1249499775 +32298,27473,made for TV,1253788236 +32298,27482,sequel,1382011396 +32298,27513,Austria,1402203431 +32298,27513,multiple storylines,1402203431 +32298,27513,nudity (full frontal),1402203257 +32298,27513,Vienna,1402203431 +32298,27523,easily confused with other movie(s) (title),1248307325 +32298,27523,not available from Netflix,1248307276 +32298,27524,amnesia,1245210459 +32298,27524,England,1245210459 +32298,27539,funeral,1265678383 +32298,27550,Christianity,1297631929 +32298,27550,religion,1297631929 +32298,27555,stoner movie,1246452134 +32298,27564,nudity (full frontal),1400285579 +32298,27571,business,1374496557 +32298,27571,business is the antagonist,1374496557 +32298,27571,coming of age,1374496557 +32298,27571,directorial debut,1368605480 +32298,27592,brutal,1382010712 +32298,27592,kidnapping,1349525231 +32298,27592,nudity (topless),1435374423 +32298,27592,revenge,1195824067 +32298,27592,Revenge Trilogy,1246140762 +32298,27608,dystopia,1250239326 +32298,27608,Egyptian Mythology,1370327610 +32298,27608,nudity (topless),1400280972 +32298,27611,based on a TV show,1246978321 +32298,27611,made for TV,1248256267 +32298,27611,military,1246486033 +32298,27611,politics,1246486044 +32298,27611,remake,1360484400 +32298,27611,robots,1360484391 +32298,27611,space,1226637933 +32298,27616,siblings,1267788677 +32298,27618,dinosaurs,1361936146 +32298,27618,Ray Bradbury,1206780599 +32298,27618,time travel,1283199882 +32298,27640,based on a book,1257242081 +32298,27640,made for TV,1257242081 +32298,27647,19th century,1309073164 +32298,27647,cross dressing,1309073163 +32298,27647,cross dressing women,1309073163 +32298,27647,lesbian,1309073129 +32298,27647,made for TV,1309073163 +32298,27647,nudity (topless),1400279902 +32298,27647,queer,1309073352 +32298,27648,based on a book,1226894456 +32298,27658,love triangles,1268870663 +32298,27658,nudity (topless),1400278927 +32298,27664,nudity (topless),1400280670 +32298,27664,road trip,1246474457 +32298,27664,unsimulated sex,1400286556 +32298,27671,based on a book,1245568685 +32298,27674,black comedy,1247374710 +32298,27674,ensemble cast,1247478334 +32298,27674,multiple storylines,1247374706 +32298,27674,one day,1247480600 +32298,27683,franchise,1383533692 +32298,27684,1960s,1248305784 +32298,27684,England,1248305784 +32298,27684,immigrants,1248305784 +32298,27684,London,1248305784 +32298,27684,racism,1248305784 +32298,27684,sports,1248305784 +32298,27685,cheerleading,1196902215 +32298,27692,made for TV,1275558732 +32298,27692,Mexico,1275558732 +32298,27700,based on a book,1251063557 +32298,27700,boarding school,1247048362 +32298,27700,bullying,1247044913 +32298,27700,high school,1379591377 +32298,27700,private school,1247048371 +32298,27704,sequel,1258011289 +32298,27705,prison,1246341810 +32298,27706,based on a book,1246751175 +32298,27706,macabre,1303454729 +32298,27706,multiple roles,1303454760 +32298,27706,narrated,1303454726 +32298,27706,orphans,1246751182 +32298,27706,siblings,1264415651 +32298,27706,watch the credits,1303454803 +32298,27708,made for TV,1268226823 +32298,27713,writers,1278413939 +32298,27721,nudity (rear),1400284224 +32298,27721,World War I,1245047606 +32298,27722,Bangkok,1297558058 +32298,27722,suicide,1419172142 +32298,27722,Thailand,1297558050 +32298,27727,Germany,1245052205 +32298,27727,immigrants,1245052213 +32298,27727,nudity (full frontal),1400284729 +32298,27728,robots,1246494864 +32298,27731,anime,1247210529 +32298,27731,cats,1247210531 +32298,27736,nudity (full frontal),1402505166 +32298,27746,siblings,1246445476 +32298,27746,werewolves,1246445235 +32298,27765,easily confused with other movie(s) (title),1258962657 +32298,27765,nudity (topless),1400279327 +32298,27772,remade,1308000970 +32298,27773,brutal,1304244913 +32298,27773,imdb top 250,1246140854 +32298,27773,incest,1304244703 +32298,27773,nudity (full frontal),1400284407 +32298,27773,remade,1387444146 +32298,27773,revenge,1304244698 +32298,27773,Revenge Trilogy,1246140833 +32298,27773,siblings,1304244775 +32298,27778,prequel,1246445455 +32298,27778,siblings,1246445461 +32298,27778,werewolves,1246445439 +32298,27783,Argentina,1246596474 +32298,27783,Buenos Aires,1246596474 +32298,27783,Latin America,1248165288 +32298,27783,South America,1246596473 +32298,27786,lesbian,1401571479 +32298,27786,queer,1401571479 +32298,27788,amnesia,1246493519 +32298,27790,Catholicism,1249700725 +32298,27790,Christianity,1249700725 +32298,27790,England,1246943625 +32298,27790,heartwarming,1240890677 +32298,27790,imaginary friend,1240890681 +32298,27790,inspirational,1244884170 +32298,27790,money,1246851482 +32298,27790,religion,1244881946 +32298,27790,surreal,1240890684 +32298,27793,nudity (topless),1400281324 +32298,27801,Bangkok,1249049906 +32298,27801,martial arts,1249049915 +32298,27801,Thailand,1249049900 +32298,27803,disability,1246314494 +32298,27803,suicide,1246314465 +32298,27803,true story,1246314465 +32298,27808,immigrants,1209177649 +32298,27812,Canada,1244933266 +32298,27812,rock and roll,1196065802 +32298,27812,trains,1193961965 +32298,27815,boarding school,1245227738 +32298,27815,choir,1245227724 +32298,27815,private school,1247045009 +32298,27815,teacher,1371209889 +32298,27815,vocalists,1246733879 +32298,27816,true story,1247103172 +32298,27816,World War II,1247103154 +32298,27821,Africa,1258969423 +32298,27822,low budget,1311279072 +32298,27822,nudity (topless),1400277596 +32298,27822,ocean,1197718313 +32298,27822,shark,1195618767 +32298,27823,nudity (topless),1400278142 +32298,27830,golf,1370730762 +32298,27830,sports,1370730762 +32298,27830,true story,1370730762 +32298,27831,directorial debut,1208917438 +32298,27831,drugs,1245052842 +32298,27831,nudity (topless),1400149338 +32298,27835,Caribbean,1232024966 +32298,27835,Haiti,1232024563 +32298,27835,journalism,1240889410 +32298,27838,bullying,1244973924 +32298,27838,revenge,1244973932 +32298,27838,small town,1334217909 +32298,27839,sequel,1345015248 +32298,27843,1970s,1245830612 +32298,27843,Chile,1245830601 +32298,27843,Latin America,1248148068 +32298,27843,South America,1245830596 +32298,27846,business,1239418131 +32298,27846,business is the antagonist,1335425519 +32298,27846,free to download,1247585447 +32298,27846,overrated,1384674479 +32298,27846,politics,1294559753 +32298,27846,ridiculous,1246247631 +32298,27847,artificial intelligence,1248849729 +32298,27847,board game,1248849729 +32298,27847,chess,1248849729 +32298,27847,computers,1248849729 +32298,27847,technology,1248849729 +32298,27857,choir,1245231434 +32298,27862,Africa,1251174876 +32298,27862,fish out of water,1251174876 +32298,27862,immigrants,1251174876 +32298,27864,nude black women,1250129050 +32298,27864,nudity (topless),1400279670 +32298,27865,assassin,1246583849 +32298,27865,comic book,1246583858 +32298,27865,sword fight,1246583842 +32298,27866,based on a book,1250850605 +32298,27867,soccer,1314676770 +32298,27867,sports,1314676770 +32298,27871,Baltimore,1246568723 +32298,27871,Maryland,1246568723 +32298,27871,medicine,1277558349 +32298,27871,racism,1246568542 +32298,27871,segregation,1246568541 +32298,27871,true story,1246568542 +32298,27873,heavy metal,1246794666 +32298,27873,mental illness,1346923693 +32298,27873,musicians,1379409407 +32298,27873,rock and roll,1242665270 +32298,27874,National Lampoon,1196070423 +32298,27875,death penalty,1246484401 +32298,27875,gangsters,1246484395 +32298,27878,India,1245047095 +32298,27878,Oscar (Best Documentary Feature),1205300554 +32298,27878,prostitution,1245047098 +32298,27882,Hawaii,1228452845 +32298,27887,nudity (topless),1400287818 +32298,27899,bad science,1245117567 +32298,27903,ghosts,1268599440 +32298,27903,pregnancy,1268599440 +32298,27903,suicide,1419172286 +32298,27904,based on a book,1162262006 +32298,27904,Philip K. Dick,1245223586 +32298,27904,surreal,1246452960 +32298,27911,history,1384482319 +32298,27911,politics,1384482319 +32298,27911,Vietnam War,1384482319 +32298,27911,youtube,1384482731 +32298,27912,business,1294559564 +32298,27912,journalism,1240895444 +32298,27912,politics,1294559548 +32298,27912,television,1245499714 +32298,27914,history,1409667843 +32298,27914,military,1409667843 +32298,27914,politics,1409667843 +32298,27914,terrorism,1409667843 +32298,27919,movie business,1348973645 +32298,27919,politics,1348973645 +32298,27922,stand-up comedy,1297675582 +32298,30707,boxing,1247211199 +32298,30707,imdb top 250,1247211208 +32298,30707,sports,1229579491 +32298,30723,nudity (topless),1411371790 +32298,30749,Africa,1240895702 +32298,30749,civil war,1245733073 +32298,30749,genocide,1244934878 +32298,30749,history,1245732985 +32298,30749,hotel,1245733005 +32298,30749,imdb top 250,1245733016 +32298,30749,journalism,1245733000 +32298,30749,orphans,1245733060 +32298,30749,racism,1245732996 +32298,30749,rebellion,1246141199 +32298,30749,Rwanda,1244934930 +32298,30749,survival,1378624621 +32298,30749,tear jerker,1244890158 +32298,30749,United Nations,1245732988 +32298,30791,franchise,1371006894 +32298,30793,based on a book,1162261756 +32298,30793,remake,1320293718 +32298,30793,Roald Dahl,1245410075 +32298,30793,whimsical,1320293772 +32298,30810,deadpan,1244882397 +32298,30810,nudity (topless),1400283670 +32298,30810,ocean,1256519450 +32298,30810,quirky,1244882388 +32298,30812,aviation,1245919734 +32298,30812,biography,1246589010 +32298,30812,movie business,1246092959 +32298,30812,true story,1250560015 +32298,30816,Andrew Lloyd Webber,1406108800 +32298,30816,based on a play,1245376821 +32298,30816,Broadway,1403231815 +32298,30816,long,1390092445 +32298,30818,biography,1246667713 +32298,30818,jazz,1246667728 +32298,30818,musicians,1379410401 +32298,30818,vocalists,1246733793 +32298,30820,pedophile,1245735210 +32298,30820,secrets,1245739454 +32298,30825,dysfunctional family,1423527647 +32298,30846,Richard Nixon,1260071643 +32298,30846,true story,1246575978 +32298,30846,US President,1246575987 +32298,30848,based on a book,1209881499 +32298,30848,Louisiana,1246573632 +32298,30848,New Orleans,1209894677 +32298,30848,writers,1246598268 +32298,30850,anti-Semitism,1246619228 +32298,30850,based on a play,1206782856 +32298,30850,Shakespeare,1246619217 +32298,30883,animation remade as live action,1250130886 +32298,30883,based on a TV show,1250130883 +32298,30896,high school,1245377147 +32298,30896,private school,1245377147 +32298,30896,undercover cop,1245377147 +32298,30905,graffiti,1383906106 +32298,30905,painter,1383906110 +32298,30949,musicians,1379410034 +32298,30949,rock and roll,1231380126 +32298,31101,Africa,1245279818 +32298,31101,corruption,1245279816 +32298,31101,police,1233920188 +32298,31101,police corruption,1240182393 +32298,31101,South Africa,1223268439 +32298,31101,true story,1223268439 +32298,31112,nudity (full frontal),1403945355 +32298,31184,anime,1244974307 +32298,31188,Catholicism,1249498959 +32298,31188,Christianity,1249498959 +32298,31188,religion,1249498944 +32298,31188,satire,1249498959 +32298,31193,2D animation,1262765144 +32298,31221,comic book,1246581341 +32298,31221,heroine in tight suit,1246581345 +32298,31221,Marvel,1246581353 +32298,31221,superhero,1246581348 +32298,31251,Arctic,1368312942 +32298,31251,polar,1368312950 +32298,31263,nudity (full frontal),1419526321 +32298,31362,nudity (topless),1400279463 +32298,31389,based on a TV show,1344416621 +32298,31389,Doctor Who,1344416362 +32298,31389,time travel,1344416528 +32298,31410,Adolf Hitler,1245051010 +32298,31410,Berlin,1245733410 +32298,31410,Germany,1245733387 +32298,31410,history,1245050976 +32298,31410,imdb top 250,1245733384 +32298,31410,Nazis,1205402680 +32298,31410,nudity (topless),1400283541 +32298,31410,suicide,1245050980 +32298,31410,World War II,1245050978 +32298,31420,corruption,1249520298 +32298,31420,police,1249520267 +32298,31420,police corruption,1249520306 +32298,31424,imdb bottom 100,1240889445 +32298,31424,video game adaptation,1246575833 +32298,31429,nature,1196065083 +32298,31429,ocean,1197715189 +32298,31429,submarine,1196064974 +32298,31435,disability,1244886050 +32298,31437,Japan,1245054198 +32298,31437,orphans,1246575278 +32298,31437,siblings,1248863083 +32298,31437,Tokyo,1245054200 +32298,31437,true story,1245054192 +32298,31502,based on a book,1248397940 +32298,31502,small town,1248397966 +32298,31502,Stephen King,1248397940 +32298,31502,vampires,1248397966 +32298,31502,writers,1248397900 +32298,31528,based on a book,1248266079 +32298,31528,siblings,1248266097 +32298,31539,movie business,1267788618 +32298,31545,easily confused with other movie(s) (title),1344474533 +32298,31545,prison,1344474656 +32298,31549,Africa,1268979172 +32298,31549,desert,1268979172 +32298,31555,aliens,1382640744 +32298,31555,disability,1382640758 +32298,31584,1940s,1245810944 +32298,31584,Holocaust,1245810927 +32298,31584,World War II,1245810924 +32298,31619,nudity (topless),1400278985 +32298,31649,Nazis,1329290412 +32298,31658,aging,1253431960 +32298,31658,anime,1246179059 +32298,31658,based on a book,1244405094 +32298,31685,New York City,1360662956 +32298,31689,history,1246046234 +32298,31689,movie business,1246092840 +32298,31689,pornography,1246046231 +32298,31696,Christianity,1347272700 +32298,31696,comic book,1249667826 +32298,31696,demons,1384743741 +32298,31696,mythology,1348383122 +32298,31696,religion,1347272700 +32298,31696,surreal,1347272803 +32298,31696,watch the credits,1347272656 +32298,31698,dogs,1404613909 +32298,31698,imdb bottom 100,1195617204 +32298,31698,sequel,1404613880 +32298,31702,Iraq,1222145876 +32298,31702,Iraq War,1222145876 +32298,31702,Middle East,1245538416 +32298,31702,orphans,1246747803 +32298,31750,nudity (topless),1407226786 +32298,31793,teen,1247044042 +32298,31804,Moscow,1349050076 +32298,31804,Russia,1349050076 +32298,31804,vampires,1246444880 +32298,31851,not available from Netflix,1247887857 +32298,31856,consumerism,1386947666 +32298,31869,Biblical,1245627306 +32298,31869,Christianity,1245627300 +32298,31869,not on DVD,1245627329 +32298,31869,religion,1245627300 +32298,31878,China,1218974345 +32298,31878,martial arts,1245285267 +32298,31878,Shanghai,1218974345 +32298,31903,nudity (topless),1402060843 +32298,31921,Arthur Conan Doyle,1369667217 +32298,31921,based on a book,1369667217 +32298,31921,Sherlock Holmes,1271063025 +32298,31923,based on a book,1315972480 +32298,31923,France,1315972480 +32298,31923,Paris,1315972480 +32298,31952,directorial debut,1320991598 +32298,31952,Hungary,1320991617 +32298,31952,subway,1212033631 +32298,31952,trains,1212033631 +32298,31956,nudity (topless),1400280168 +32298,31963,adultery,1248079809 +32298,31963,pregnancy,1248079809 +32298,32009,multiple roles,1246753736 +32298,32019,based on a book,1420191602 +32298,32019,Elmore Leonard,1420191602 +32298,32022,Iraq,1245538153 +32298,32022,Iraq War,1232540417 +32298,32022,Middle East,1245538531 +32298,32022,military,1245538533 +32298,32025,queer,1246617741 +32298,32031,business,1354674539 +32298,32031,great soundtrack,1354674630 +32298,32031,inventor,1354674630 +32298,32031,robots,1354674543 +32298,32058,courtroom,1249051076 +32298,32058,lawyers,1249051101 +32298,32109,nudity (full frontal),1400285374 +32298,32116,multiple roles,1246751609 +32298,32128,National Lampoon,1196070334 +32298,32128,sports,1280678046 +32298,32170,Ecuador,1245048616 +32298,32170,journalism,1245048637 +32298,32170,Latin America,1248165281 +32298,32170,serial killer,1245048632 +32298,32170,South America,1245048608 +32298,32211,controversial,1400287649 +32298,32211,rape,1400287658 +32298,32211,revenge,1400287639 +32298,32211,unsimulated sex,1400287653 +32298,32213,escape,1258707357 +32298,32289,figure skating,1196517689 +32298,32298,interracial romance,1244762999 +32298,32298,racism,1250290714 +32298,32298,remake,1250290717 +32298,32300,lesbian,1247584692 +32298,32316,India,1271977794 +32298,32325,England,1247218987 +32298,32325,nudity (topless),1400279637 +32298,32325,World War II,1247218987 +32298,32333,Iceland,1244462110 +32298,32389,serial killer,1247888090 +32298,32389,true story,1247888090 +32298,32444,dance,1379411450 +32298,32452,anime,1268717735 +32298,32452,comic book,1268717735 +32298,32452,Tokyo,1268717735 +32298,32456,environmental,1246447256 +32298,32460,not available from Netflix,1248307169 +32298,32464,New Jersey,1245628465 +32298,32464,not available from Netflix,1248306182 +32298,32464,not on DVD,1245628472 +32298,32464,police,1245628465 +32298,32471,based on a book,1409744986 +32298,32471,D.H. Lawrence,1409744986 +32298,32493,musicians,1379409291 +32298,32493,punk rock,1303528228 +32298,32493,rock and roll,1303528229 +32298,32554,anthology,1265083622 +32298,32562,claymation,1387429858 +32298,32562,short,1317091422 +32298,32567,nudity (topless),1399713995 +32298,32587,brutal,1292244191 +32298,32587,cannibalism,1292244402 +32298,32587,comic book,1246578285 +32298,32587,corruption,1292244387 +32298,32587,Frank Miller,1246578291 +32298,32587,gruesome,1306626809 +32298,32587,imdb top 250,1246491251 +32298,32587,multiple storylines,1292244214 +32298,32587,narrated,1292244221 +32298,32587,nocturnal,1292244227 +32298,32587,nudity (topless),1400284124 +32298,32587,police,1292244387 +32298,32587,police corruption,1292244387 +32298,32587,revenge,1292244284 +32298,32587,stylized,1293492588 +32298,32593,cars,1248157468 +32298,32593,Latin America,1248157468 +32298,32593,Mexico,1248157468 +32298,32593,motorcycle,1248157468 +32298,32593,racing,1248157468 +32298,32596,Africa,1243343307 +32298,32596,based on a book,1243343307 +32298,32596,big budget,1412275378 +32298,32596,Clive Cussler,1404857706 +32298,32596,desert,1262501117 +32298,32598,baseball,1402478856 +32298,32598,based on a book,1402478804 +32298,32598,Nick Hornby,1402478807 +32298,32598,sports,1402478853 +32298,32600,nudity (full frontal),1400285432 +32298,32627,country music,1402150126 +32298,32627,musicians,1402150126 +32298,32653,black and white,1267487963 +32298,32653,World War II,1267487963 +32298,32666,imdb bottom 100,1195618327 +32298,32666,National Lampoon,1196070361 +32298,32668,amnesia,1246483028 +32298,32668,assassin,1246483042 +32298,32668,New Mexico,1246483060 +32298,32668,small town,1246483054 +32298,32674,based on a book,1207666104 +32298,32674,Ernest Hemingway,1207666104 +32298,32721,history,1248163968 +32298,32721,World War II,1248163938 +32298,32737,Australia,1245230018 +32298,32737,based on a book,1245229987 +32298,32737,beach,1245229991 +32298,32737,island,1245229989 +32298,32737,nudity (full frontal),1400285426 +32298,32737,painter,1246590987 +32298,32779,nudity (topless),1401961675 +32298,32825,nudity (full frontal),1400284787 +32298,32825,time travel,1273272692 +32298,32830,Los Angeles,1382082170 +32298,32830,police,1382082161 +32298,32830,true story,1382082161 +32298,32834,based on a play,1252534325 +32298,32834,Shakespeare,1252534325 +32298,32840,claymation,1326603299 +32298,32840,short,1360054951 +32298,32844,based on a play,1379412560 +32298,32844,World War I,1379412563 +32298,32860,nudity (topless),1413925001 +32298,32892,directorial debut,1207215068 +32298,32898,black and white,1254443295 +32298,32898,free to download,1254326836 +32298,32898,moon,1254326836 +32298,32898,space,1254326837 +32298,32923,nudity (topless),1423123897 +32298,32925,nudity (topless),1408506467 +32298,32966,1950s,1255603021 +32298,32966,death penalty,1255603059 +32298,32966,England,1255603022 +32298,32979,nudity (full frontal),1401958205 +32298,33004,aliens,1306815338 +32298,33004,based on a book,1162261905 +32298,33004,Douglas Adams,1296130329 +32298,33004,end of the world,1246347030 +32298,33004,space,1196645178 +32298,33004,watch the credits,1306815328 +32298,33004,whimsical,1242323155 +32298,33004,witty,1242323158 +32298,33021,drugs,1387277796 +32298,33021,nuns,1387277803 +32298,33072,mockumentary,1247654199 +32298,33085,based on a book,1223805538 +32298,33085,ghosts,1241004836 +32298,33085,haunted house,1230361252 +32298,33085,remake,1247215316 +32298,33138,pregnancy,1294601452 +32298,33150,soccer,1255066040 +32298,33150,true story,1255066057 +32298,33154,1990s,1291436448 +32298,33154,business,1245048766 +32298,33154,corruption,1245048791 +32298,33154,economics,1383743279 +32298,33154,energy,1246851639 +32298,33154,history,1291436466 +32298,33154,Houston,1245048771 +32298,33154,organized crime,1245279539 +32298,33154,politics,1333355118 +32298,33154,scandal,1291436453 +32298,33154,Texas,1244765765 +32298,33162,12th century,1245447496 +32298,33162,Christianity,1245447337 +32298,33162,Crusades,1245447370 +32298,33162,Islam,1245447332 +32298,33162,Jerusalem,1245447313 +32298,33162,medieval,1245447320 +32298,33162,religion,1245447340 +32298,33164,small town,1287746100 +32298,33166,ensemble cast,1258241787 +32298,33166,guns,1258241786 +32298,33166,multiple storylines,1258241784 +32298,33166,nudity (topless),1400283955 +32298,33166,Oscar (Best Picture),1386223331 +32298,33166,police,1258241718 +32298,33166,police corruption,1258241790 +32298,33166,racism,1258241797 +32298,33171,based on a book,1252738257 +32298,33171,child abuse,1252738276 +32298,33171,gay,1255254089 +32298,33171,prostitution,1246491166 +32298,33171,queer,1255254099 +32298,33188,1950s,1245454328 +32298,33188,nudity (full frontal),1400285356 +32298,33201,addiction,1250852430 +32298,33201,adultery,1250852430 +32298,33201,nudity (topless),1400278581 +32298,33255,England,1247183249 +32298,33328,Anton Chekhov,1310452333 +32298,33328,based on a book,1369992382 +32298,33358,mental illness,1253269010 +32298,33376,based on a book,1282447817 +32298,33421,nudity (topless),1400280620 +32298,33435,Los Angeles,1267566619 +32298,33435,movie business,1267566619 +32298,33451,not available from Netflix,1248306977 +32298,33454,dysfunctional family,1246492256 +32298,33454,insanity,1246492261 +32298,33454,nudity (topless),1400280119 +32298,33487,prostitution,1246491630 +32298,33493,aliens,1344214677 +32298,33493,far future,1246450539 +32298,33493,franchise,1245727608 +32298,33493,no happy ending,1245727601 +32298,33493,robots,1245727589 +32298,33493,sequel,1245727586 +32298,33493,space,1245727580 +32298,33493,Star Wars,1306625809 +32298,33539,nature,1384393405 +32298,33539,ocean,1384393405 +32298,33585,nudity (full frontal),1400285643 +32298,33585,sex,1245453820 +32298,33585,unsimulated sex,1400286581 +32298,33603,nudity (topless),1401960405 +32298,33615,Africa,1248147198 +32298,33615,Dreamworks,1248147205 +32298,33615,lions,1328052892 +32298,33615,talking animals,1319954061 +32298,33621,Australia,1240703369 +32298,33621,nudity (topless),1400279991 +32298,33639,dance,1255663901 +32298,33639,latin music,1255663898 +32298,33639,New York City,1255663906 +32298,33644,franchise,1265501812 +32298,33646,football,1249519452 +32298,33646,prison,1249519485 +32298,33646,remake,1249519474 +32298,33646,sports,1249519494 +32298,33649,lesbian,1244975755 +32298,33649,nudity (topless),1400281297 +32298,33649,queer,1255254394 +32298,33660,1930s,1245637540 +32298,33660,boxing,1245063091 +32298,33660,great depression,1245063107 +32298,33660,sports,1245063133 +32298,33660,true story,1245637533 +32298,33677,musicians,1379407766 +32298,33677,rock and roll,1196064863 +32298,33679,assassin,1422430522 +32298,33685,based on a TV show,1197805362 +32298,33685,imdb bottom 100,1195617839 +32298,33725,deafness,1247738921 +32298,33725,mockumentary,1247738904 +32298,33725,musicians,1379408860 +32298,33743,Nazis,1234393623 +32298,33743,World War II,1234393623 +32298,33750,Central America,1422231226 +32298,33750,civil war,1422231226 +32298,33750,El Salvador,1422231226 +32298,33750,Latin America,1422231226 +32298,33762,nudity (topless),1400278390 +32298,33794,based on a comic,1408328889 +32298,33794,Batman,1245913260 +32298,33794,DC Comics,1245913364 +32298,33794,double life,1246754751 +32298,33794,franchise,1245577152 +32298,33794,Iceland,1242894797 +32298,33794,imdb top 250,1245577160 +32298,33794,police,1292317934 +32298,33794,Saturn Award (Best Writing),1245577157 +32298,33794,vigilante,1245913249 +32298,33801,Godzilla,1382072592 +32298,33808,nudity (topless),1407099789 +32298,33815,single parents,1245059452 +32298,33817,BBC Films,1244499748 +32298,33817,lesbian,1318918150 +32298,33817,nudity (topless),1400281552 +32298,33817,queer,1319093077 +32298,33819,based on a play,1255063837 +32298,33819,New York City,1255063837 +32298,33819,one day,1255063837 +32298,33834,nudity (topless),1402936537 +32298,33834,post-apocalyptic,1245391349 +32298,33834,zombies,1245391361 +32298,33836,based on a TV show,1250130749 +32298,33838,dance,1195619021 +32298,33838,hip hop,1195618601 +32298,33844,nudity (topless),1407215858 +32298,33861,comic book,1249499216 +32298,33893,nudity (topless),1400280896 +32298,33896,cannibalism,1245287399 +32298,33901,nudity (topless),1399324003 +32298,33903,nudity (topless),1400282543 +32298,33903,politics,1245749260 +32298,33912,divorce,1245061362 +32298,33928,movie business,1379320124 +32298,33928,Star Trek,1379320124 +32298,34004,nudity (topless),1400278777 +32298,34048,aliens,1247210788 +32298,34048,based on a book,1197723868 +32298,34048,easily confused with other movie(s) (title),1362893226 +32298,34048,H.G. Wells,1196561843 +32298,34048,remake,1206688931 +32298,34051,Australia,1243257585 +32298,34057,mecha,1386947181 +32298,34057,robots,1386947181 +32298,34072,Antarctica,1255064424 +32298,34072,birds,1403875264 +32298,34072,nature,1244883963 +32298,34072,penguins,1244883967 +32298,34072,polar,1368313395 +32298,34072,scenic,1195823525 +32298,34072,wildlife,1255064442 +32298,34072,wintry,1400879853 +32298,34111,atheism,1288941007 +32298,34111,Christianity,1244711329 +32298,34111,history,1240890173 +32298,34111,irreligion,1248143573 +32298,34111,irreverent,1241987552 +32298,34111,Jesus Christ,1246345560 +32298,34111,religion,1240895141 +32298,34148,nudity (topless),1400281440 +32298,34150,comic book,1246580954 +32298,34150,heroine in tight suit,1246450598 +32298,34150,invisibility,1246580951 +32298,34150,superhero,1246580947 +32298,34153,disability,1246314512 +32298,34153,obscure sports,1247214908 +32298,34153,sports,1246314521 +32298,34162,buddy movie,1246267498 +32298,34162,long,1319254744 +32298,34162,nudity (topless),1400283835 +32298,34162,wedding,1246601180 +32298,34198,ensemble cast,1248983649 +32298,34198,male nudity,1248983635 +32298,34198,nudity (full frontal),1400284939 +32298,34198,sequel,1248983662 +32298,34234,1940s,1317189146 +32298,34234,Poland,1317189146 +32298,34234,Warsaw,1317189146 +32298,34234,World War II,1317189146 +32298,34238,not on DVD,1245630139 +32298,34240,Catholicism,1297899866 +32298,34240,Christianity,1297899866 +32298,34240,religion,1297899866 +32298,34271,hip hop,1244845376 +32298,34271,Memphis,1396960197 +32298,34271,musicians,1396960028 +32298,34271,Oscar (Best Music - Original Song),1396960033 +32298,34271,poverty,1396960330 +32298,34271,prostitution,1244845372 +32298,34271,Tennessee,1396960204 +32298,34271,vocalists,1396960029 +32298,34319,biology,1208571342 +32298,34319,business is the antagonist,1394990467 +32298,34319,cloning,1246753187 +32298,34319,genetics,1208570895 +32298,34319,immortality,1246753176 +32298,34319,multiple roles,1246753167 +32298,34319,slavery,1246753170 +32298,34321,sports,1148035598 +32298,34323,kidnapping,1258978616 +32298,34323,nudity (full frontal),1409361024 +32298,34326,rock and roll,1246672084 +32298,34332,high school,1348397429 +32298,34332,superhero,1348397433 +32298,34334,artificial intelligence,1245919938 +32298,34334,aviation,1245919938 +32298,34334,military,1239482860 +32298,34338,crude humor,1253787924 +32298,34386,serial killer,1255335201 +32298,34405,based on a TV show,1245835430 +32298,34405,directorial debut,1207211057 +32298,34405,far future,1198459360 +32298,34405,space,1245835422 +32298,34411,oil,1233861420 +32298,34411,politics,1245225889 +32298,34416,jazz,1305024252 +32298,34416,musicians,1379410195 +32298,34437,nudity (full frontal),1400284755 +32298,34511,nudity (topless),1400278646 +32298,34520,based on a TV show,1250130822 +32298,34520,nudity (topless),1400282583 +32298,34523,black comedy,1368770565 +32298,34523,drugs,1368770587 +32298,34523,high school,1368770567 +32298,34523,loneliness,1368770600 +32298,34523,suburbia,1368770556 +32298,34523,suicide,1368770562 +32298,34532,Louisiana,1246573260 +32298,34532,New Orleans,1246573252 +32298,34532,Voodoo,1249585667 +32298,34534,revenge,1197630322 +32298,34534,siblings,1245539548 +32298,34538,asylum,1245734953 +32298,34538,nudity (topless),1413920863 +32298,34540,blackmail,1255076103 +32298,34540,high school,1245377364 +32298,34540,manipulation,1249010816 +32298,34542,Alaska,1245049097 +32298,34542,Alfred P. Sloan Feature Film Prize,1206321578 +32298,34542,animal attacks,1262522343 +32298,34542,animals,1262522343 +32298,34542,bears,1245049087 +32298,34542,biography,1246589263 +32298,34542,narrated,1234848389 +32298,34542,nature,1246589269 +32298,34542,wilderness,1245049081 +32298,34552,Iceland,1242865475 +32298,34579,AIDS,1246618364 +32298,34579,based on a play,1246618371 +32298,34579,queer,1246618364 +32298,34579,revenge,1246618356 +32298,34583,nudity (topless),1407014120 +32298,34696,heist,1257340412 +32298,34800,nudity (topless),1400274292 +32298,35082,nudity (topless),1401884726 +32298,35347,2D animation,1262765125 +32298,35347,allegory,1245398302 +32298,35347,based on a book,1245394154 +32298,35347,farm,1245394165 +32298,35347,free to download,1281658509 +32298,35347,George Orwell,1245394159 +32298,35347,Hulu,1281658509 +32298,35347,satire,1246452400 +32298,35629,Iceland,1244462272 +32298,35836,crude humor,1260513146 +32298,35836,nudity (topless),1400283926 +32298,35836,sex,1245232783 +32298,35836,slackers,1248085346 +32298,35836,virginity,1248085365 +32298,35843,nudity (full frontal),1429821992 +32298,35957,aviation,1247041304 +32298,36363,not available from Netflix,1248307089 +32298,36401,fairy tale,1392704394 +32298,36401,medieval,1392704402 +32298,36509,cave,1197716922 +32298,36513,high school,1244975549 +32298,36513,nudity (topless),1400280145 +32298,36517,Africa,1245226068 +32298,36517,based on a book,1245226078 +32298,36517,business is the antagonist,1394986181 +32298,36517,conspiracy,1245226081 +32298,36517,corruption,1245226063 +32298,36517,Kenya,1245226114 +32298,36517,Nairobi,1245226118 +32298,36517,nudity (rear),1400284199 +32298,36517,politics,1245226109 +32298,36527,insanity,1246597312 +32298,36527,mental illness,1245282556 +32298,36527,siblings,1246597262 +32298,36529,Africa,1256548271 +32298,36529,business,1256548318 +32298,36529,Business is the antagonist,1400283638 +32298,36529,guns,1256548317 +32298,36529,military industrial complex,1256548313 +32298,36529,narrated,1256609825 +32298,36529,nudity (topless),1400283638 +32298,36529,politics,1256548323 +32298,36529,smuggling,1346223804 +32298,36535,Ukraine,1310509359 +32298,36537,based on a book,1406946389 +32298,36553,Chicago,1197698516 +32298,36708,based on a TV show,1250130722 +32298,36708,time travel,1373523211 +32298,36799,Africa,1260072188 +32298,36799,civil war,1260072188 +32298,36799,genocide,1260072188 +32298,36799,history,1260072187 +32298,36799,made for TV,1260072257 +32298,36799,racism,1260072188 +32298,36799,rebellion,1260072188 +32298,36799,Rwanda,1260072188 +32298,36799,siblings,1260072194 +32298,36931,police,1245230361 +32298,37240,9/11,1245578589 +32298,37240,business,1246393504 +32298,37240,controversial,1244893397 +32298,37240,corruption,1245225932 +32298,37240,free to download,1240892560 +32298,37240,history,1246224598 +32298,37240,Iraq,1245538122 +32298,37240,Iraq War,1245233193 +32298,37240,Middle East,1246747605 +32298,37240,military,1246224611 +32298,37240,military industrial complex,1244893368 +32298,37240,politics,1244936702 +32298,37240,youtube,1383590819 +32298,37375,love triangles,1246690802 +32298,37380,video game adaptation,1246574546 +32298,37382,biography,1246588883 +32298,37382,true story,1246588872 +32298,37384,crude humor,1402153033 +32298,37384,restaurant,1255859032 +32298,37384,watch the credits,1363332060 +32298,37386,assassin,1246777229 +32298,37386,based on a TV show,1300859997 +32298,37386,heroine in tight suit,1245390667 +32298,37386,post-apocalyptic,1245390654 +32298,37386,resistance movement,1244767411 +32298,37386,utopia,1245390350 +32298,37475,Wyoming,1370176197 +32298,37495,multiple storylines,1321246591 +32298,37720,1970s,1246400622 +32298,37720,Catholicism,1244892376 +32298,37720,child abuse,1246400577 +32298,37720,Christianity,1244892378 +32298,37720,courtroom,1246224099 +32298,37720,exorcism,1246224128 +32298,37720,religion,1244892379 +32298,37729,19th century,1249520822 +32298,37729,afterlife,1317285005 +32298,37729,black comedy,1317285018 +32298,37729,claymation,1183003456 +32298,37729,wedding,1317284994 +32298,37733,comic book,1246578555 +32298,37733,nudity (full frontal),1400284863 +32298,37736,based on a book,1207670815 +32298,37736,Charles Dickens,1207670815 +32298,37739,golf,1370730710 +32298,37739,sports,1370730708 +32298,37739,true story,1370730705 +32298,37741,death penalty,1260010200 +32298,37741,gay,1260010198 +32298,37741,journalism,1244690879 +32298,37741,prison,1260010202 +32298,37741,Truman Capote,1260224160 +32298,37741,writers,1246598365 +32298,37830,franchise,1333681997 +32298,37830,video game adaptation,1195557547 +32298,37857,alternate reality,1246449459 +32298,37857,circus,1386289270 +32298,37857,Jim Henson,1245734031 +32298,37857,Neil Gaiman,1245734040 +32298,37857,whimsical,1380700775 +32298,37955,based on a book,1246596920 +32298,37955,boarding school,1246596907 +32298,37955,directorial debut,1379412253 +32298,37955,private school,1247044991 +32298,37957,nudity (topless),1401588644 +32298,38038,Aardman,1387456812 +32298,38038,claymation,1246749012 +32298,38038,monsters,1246749025 +32298,38038,rabbits,1247290192 +32298,38038,talking animals,1385026387 +32298,38061,based on a book,1251062408 +32298,38061,black comedy,1377941735 +32298,38061,directorial debut,1207619838 +32298,38061,nudity (topless),1400283691 +32298,38086,boarding school,1247045182 +32298,38086,high school,1247045183 +32298,38086,private school,1247045224 +32298,38198,Africa,1250852289 +32298,38198,fishing,1260329194 +32298,38198,Tanzania,1250852289 +32298,38294,Iceland,1242894877 +32298,38304,folk music,1209543483 +32298,38388,soccer,1148379577 +32298,38388,sports,1148379384 +32298,38499,AIDS,1247208644 +32298,38499,based on a play,1247208635 +32298,38499,Broadway,1247208654 +32298,38499,made for TV,1248256828 +32298,38538,high school,1247044101 +32298,38538,teen,1247044104 +32298,38583,nudity (topless),1400274239 +32298,38600,based on a book,1226743155 +32298,38600,biography,1370318228 +32298,38600,Charles Bukowski,1385914878 +32298,38600,nudity (topless),1400280929 +32298,38600,writers,1265431763 +32298,38798,based on a book,1245282206 +32298,38798,siblings,1245539719 +32298,38824,based on a book,1245567829 +32298,38824,history,1245567810 +32298,38824,World War II,1245567806 +32298,38886,Brooklyn,1245226842 +32298,38886,divorce,1245226830 +32298,38886,New York City,1245226832 +32298,38886,writers,1246598750 +32298,38994,adultery,1245237007 +32298,38994,based on a book,1233370848 +32298,38994,England,1248490000 +32298,38994,secrets,1245740397 +32298,39052,low budget,1241714709 +32298,39052,parody,1241714509 +32298,39052,Star Trek,1241714512 +32298,39052,youtube,1387429811 +32298,39183,Alberta,1245237304 +32298,39183,banned movie,1248146526 +32298,39183,based on a book,1369992253 +32298,39183,Canada,1369992264 +32298,39183,controversial,1248146526 +32298,39183,gay,1255254046 +32298,39183,nudity (topless),1400283649 +32298,39183,queer,1246617979 +32298,39183,Wyoming,1245237307 +32298,39234,courtroom,1245289814 +32298,39234,mining,1245289767 +32298,39234,sexism,1245289773 +32298,39234,true story,1245289780 +32298,39292,black and white,1244970515 +32298,39292,censorship,1244970513 +32298,39292,communism,1411155152 +32298,39292,earnest,1411155635 +32298,39292,great soundtrack,1411156097 +32298,39292,history,1244970527 +32298,39292,HUAC,1248509077 +32298,39292,Joseph McCarthy,1411370805 +32298,39292,journalism,1244690912 +32298,39292,military,1411370790 +32298,39292,politics,1244690917 +32298,39292,television,1244970535 +32298,39381,Australia,1225687077 +32298,39398,alternate reality,1245496187 +32298,39398,mockumentary,1401880875 +32298,39398,racism,1208398891 +32298,39398,satire,1245496175 +32298,39398,slavery,1384094199 +32298,39408,apocalypse,1245401854 +32298,39408,based on a book,1245401854 +32298,39408,Biblical,1245401854 +32298,39408,Christianity,1244671753 +32298,39408,propaganda,1248326576 +32298,39408,religion,1244671756 +32298,39414,based on a book,1209679343 +32298,39414,May-December romance,1258248877 +32298,39414,nudity (rear),1400284241 +32298,39419,based on a book,1234652779 +32298,39419,bisexual,1248718022 +32298,39419,journalism,1248717926 +32298,39419,nudity (full frontal),1400285185 +32298,39419,queer,1255256050 +32298,39421,National Lampoon,1196070484 +32298,39421,nudity (topless),1400279956 +32298,39427,amazing cinematography,1257902168 +32298,39427,suicide,1419172180 +32298,39427,surreal,1255167210 +32298,39427,twist ending,1255167294 +32298,39441,rock and roll,1245238100 +32298,39444,dysfunctional family,1257827512 +32298,39444,weather reporter as protagonist,1195737041 +32298,39446,brutal,1354440530 +32298,39446,corruption,1354440553 +32298,39446,franchise,1354440530 +32298,39446,police,1354440553 +32298,39446,police corruption,1354440553 +32298,39446,serial killer,1354440481 +32298,39446,torture,1339999840 +32298,39449,artist,1246598096 +32298,39449,Manhattan,1246591298 +32298,39449,May-December romance,1246591323 +32298,39449,New York City,1246591294 +32298,39449,painter,1246591306 +32298,39516,nudity (topless),1400278953 +32298,39659,controversial,1246452740 +32298,39703,drugs,1251952592 +32298,39715,franchise,1212809501 +32298,39715,made for TV,1248257889 +32298,39715,nudity (topless),1400282626 +32298,39777,Edgar Rice Burroughs,1245744154 +32298,39779,Edgar Rice Burroughs,1245744212 +32298,39818,con artists,1248398666 +32298,39869,1930s,1245810380 +32298,39869,nudity (full frontal),1400284801 +32298,39869,slavery,1245810390 +32298,39876,Caribbean,1276310373 +32298,39876,Cuba,1276310373 +32298,39876,Latin America,1276310373 +32298,39886,multiple storylines,1249526344 +32298,39934,Korean War,1248089899 +32298,39934,not available from Netflix,1248089899 +32298,40148,gangsters,1246484280 +32298,40226,aliens,1268869772 +32298,40226,zombies,1268869772 +32298,40278,based on a book,1204199735 +32298,40278,Middle East,1245285521 +32298,40278,nudity (topless),1400283290 +32298,40337,not available from Netflix,1247122599 +32298,40339,Disney,1385026723 +32298,40339,talking animals,1385026735 +32298,40412,revenge,1245052455 +32298,40414,Christmas,1245577437 +32298,40574,hip hop,1195615343 +32298,40574,musicians,1402699447 +32298,40574,nude black women,1400280659 +32298,40574,nudity (topless),1400280659 +32298,40574,vocalists,1246735885 +32298,40583,based on a book,1328693695 +32298,40583,business,1328692517 +32298,40583,CIA,1328692519 +32298,40583,corruption,1328692530 +32298,40583,espionage,1328692530 +32298,40583,Middle East,1328692521 +32298,40583,multiple storylines,1328692610 +32298,40583,oil,1328692522 +32298,40583,politics,1328692508 +32298,40629,19th century,1246582567 +32298,40629,based on a book,1162636878 +32298,40629,England,1245238929 +32298,40629,Jane Austen,1245238917 +32298,40629,siblings,1245539691 +32298,40679,nudity (topless),1401957984 +32298,40681,journalism,1262223610 +32298,40681,police,1262223611 +32298,40681,police corruption,1262223610 +32298,40697,aliens,1413522961 +32298,40697,made for TV,1413522961 +32298,40697,space,1386945888 +32298,40697,TV series,1390989824 +32298,40723,Australia,1387455689 +32298,40723,serial killer,1387455689 +32298,40732,cave,1245050266 +32298,40815,based on a book,1162261475 +32298,40815,big budget,1244890397 +32298,40815,boarding school,1246942933 +32298,40815,dragons,1394788794 +32298,40815,England,1245831580 +32298,40815,franchise,1196516330 +32298,40815,Harry Potter,1344404565 +32298,40815,magic,1244890405 +32298,40815,maze,1245831572 +32298,40819,addiction,1245280110 +32298,40819,biography,1246589073 +32298,40819,country music,1245280081 +32298,40819,drugs,1245280085 +32298,40819,musicians,1379408455 +32298,40819,true story,1245280078 +32298,40819,vocalists,1246734114 +32298,40826,AIDS,1245376614 +32298,40826,based on a play,1390009837 +32298,40826,Broadway,1246899061 +32298,40826,drugs,1245376602 +32298,40826,ensemble cast,1197724844 +32298,40826,great soundtrack,1390009845 +32298,40826,rock and roll,1245376613 +32298,40851,based on a book,1223202957 +32298,40851,board game,1245496979 +32298,40851,Chris Van Allsburg,1242196310 +32298,40851,siblings,1245539509 +32298,40851,space,1246733175 +32298,40851,twist ending,1297633667 +32298,40870,gay,1255253568 +32298,40870,queer,1246618022 +32298,40946,irreverent,1249011087 +32298,40946,stand-up comedy,1246588425 +32298,40952,based on a book,1400213662 +32298,40952,competition,1402880019 +32298,40952,spelling bee,1400213572 +32298,40955,based on a book,1245053301 +32298,40964,imdb bottom 100,1195617268 +32298,40966,17th century,1245047793 +32298,40966,based on a play,1245047787 +32298,40966,biography,1247042218 +32298,41014,directorial debut,1207216176 +32298,41130,nudity (topless),1400278239 +32298,41226,1930s,1246045481 +32298,41226,based on a book,1246045481 +32298,41285,England,1393378145 +32298,41285,London,1393378139 +32298,41285,sports,1246585322 +32298,41285,tennis,1246585308 +32298,41336,Christianity,1254736131 +32298,41336,Not available from Netflix,1254736118 +32298,41336,religion,1254736131 +32298,41425,adultery,1246598837 +32298,41425,bisexual,1246598845 +32298,41425,movie business,1255255974 +32298,41425,queer,1255255961 +32298,41425,writers,1246598840 +32298,41434,wrongly accused,1370164373 +32298,41527,Islam,1246346391 +32298,41527,Middle East,1245832935 +32298,41527,religion,1246346396 +32298,41527,suicide,1246346395 +32298,41527,terrorism,1246346394 +32298,41566,alternate reality,1245278884 +32298,41566,based on a book,1246931559 +32298,41566,Biblical,1246931565 +32298,41566,big budget,1196515602 +32298,41566,C.S. Lewis,1254911162 +32298,41566,Christianity,1246345958 +32298,41566,magic,1246931641 +32298,41566,propaganda,1250920973 +32298,41566,religion,1246345972 +32298,41566,scenic,1247040866 +32298,41566,talking animals,1246931575 +32298,41569,1930s,1248489718 +32298,41569,big budget,1196515282 +32298,41569,dinosaurs,1244927535 +32298,41569,long,1255167768 +32298,41569,remake,1248489663 +32298,41571,based on a book,1245057598 +32298,41571,Japan,1245057589 +32298,41602,Caribbean,1366191940 +32298,41602,Cuba,1366160303 +32298,41602,Latin America,1366191940 +32298,41617,drugs,1245588678 +32298,41617,nudity (topless),1400280628 +32298,41688,hockey,1264142044 +32298,41688,sports,1264142044 +32298,41716,assassin,1246483183 +32298,41716,midlife crisis,1392732847 +32298,41721,Australia,1240703261 +32298,41724,business,1240891292 +32298,41724,consumerism,1245451591 +32298,41753,addiction,1251650614 +32298,41753,alcoholism,1251650614 +32298,41753,based on a book,1392434322 +32298,41753,police,1251650614 +32298,41863,desert,1245238158 +32298,41863,immigrants,1246614248 +32298,41863,Latin America,1248156019 +32298,41863,Mexico,1248156003 +32298,41863,Texas,1245238156 +32298,41889,not available from Netflix,1247183180 +32298,41889,not on DVD,1247183180 +32298,41997,1970s,1245280341 +32298,41997,anti-Semitism,1258610346 +32298,41997,assassin,1258610349 +32298,41997,Islam,1246346344 +32298,41997,Israel,1246346363 +32298,41997,Judaism,1246346352 +32298,41997,massacre,1258610328 +32298,41997,Mossad,1384180415 +32298,41997,nudity (full frontal),1400284429 +32298,41997,Olympics,1245280326 +32298,41997,politics,1258610358 +32298,41997,religion,1246346412 +32298,41997,revenge,1246346358 +32298,41997,true story,1258610356 +32298,42002,Broadway,1244883282 +32298,42002,remake,1363492165 +32298,42002,theater,1363492165 +32298,42004,queer,1246618264 +32298,42004,road trip,1278926280 +32298,42013,disability,1240703656 +32298,42018,1930s,1245637354 +32298,42018,BBC Films,1244498893 +32298,42018,England,1245637312 +32298,42018,Great Depression,1245637440 +32298,42018,London,1245637314 +32298,42018,male nudity,1245637316 +32298,42018,nudity (full frontal),1400284968 +32298,42018,true story,1243602403 +32298,42163,stand-up comedy,1315449532 +32298,42191,Pixar,1385026593 +32298,42191,short,1385026591 +32298,42197,black comedy,1258274219 +32298,42197,nudity (topless),1399629511 +32298,42197,serial killer,1368089393 +32298,42213,made for TV,1262513568 +32298,42312,bad parents,1256840384 +32298,42312,based on a book,1256840330 +32298,42312,Charles Dickens,1256840330 +32298,42351,England,1280555976 +32298,42351,made for TV,1280556021 +32298,42351,nuclear war,1280555977 +32298,42351,post-apocalyptic,1280555976 +32298,42418,17th century,1246313720 +32298,42418,colonialism,1246584861 +32298,42418,Native Americans,1246670969 +32298,42422,aliens,1245231683 +32298,42422,anime,1248254825 +32298,42422,high school,1245231683 +32298,42422,short,1248254910 +32298,42422,space,1245231683 +32298,42550,Ealing Studios,1249500028 +32298,42550,England,1249500027 +32298,42550,London,1249500027 +32298,42556,multiple roles,1246753865 +32298,42632,prison,1245912491 +32298,42632,revenge,1245912477 +32298,42632,Revenge Trilogy,1246140790 +32298,42632,vigilante,1245912480 +32298,42632,wrongly accused,1245912498 +32298,42677,movie business,1370164389 +32298,42698,Africa,1264938278 +32298,42698,AIDS,1264938278 +32298,42698,South Africa,1264938278 +32298,42710,nudity (topless),1402278665 +32298,42710,serial killer,1402278665 +32298,42710,true story,1402278665 +32298,42718,dystopia,1245053929 +32298,42718,Paris,1245053913 +32298,42718,parkour,1245053921 +32298,42721,heroine in tight suit,1246575507 +32298,42721,nudity (topless),1400277675 +32298,42721,vampires,1246575513 +32298,42721,video game adaptation,1246575494 +32298,42723,banned movie,1248152779 +32298,42723,brutal,1246586564 +32298,42723,controversial,1248152779 +32298,42723,gruesome,1244891998 +32298,42723,nudity (topless),1400282878 +32298,42723,torture,1244973604 +32298,42725,drugs,1333625657 +32298,42725,marijuana,1333625656 +32298,42728,based on a book,1258086727 +32298,42728,medieval,1258086760 +32298,42730,basketball,1244982797 +32298,42730,racism,1244982778 +32298,42730,sports,1244982795 +32298,42730,Texas,1244982772 +32298,42730,true story,1244982784 +32298,42730,underdogs,1245033079 +32298,42734,parody,1247207523 +32298,42738,heroine in tight suit,1246444596 +32298,42738,nocturnal,1315115552 +32298,42738,nudity (topless),1400282979 +32298,42738,sequel,1246444585 +32298,42738,vampires,1246482572 +32298,42738,werewolves,1246482576 +32298,42943,American Revolution,1251363271 +32298,43011,based on a book,1369992475 +32298,43011,H.P. Lovecraft,1245398755 +32298,43022,franchise,1371006889 +32298,43177,drugs,1247887705 +32298,43260,nudity (full frontal),1400290119 +32298,43260,unsimulated sex,1400290119 +32298,43267,police,1387275433 +32298,43292,not available from Netflix,1248080173 +32298,43333,India,1305850087 +32298,43333,prostitution,1305850069 +32298,43376,Nazis,1246485630 +32298,43376,true story,1246485639 +32298,43376,World War II,1246485623 +32298,43396,motorcycle,1247213460 +32298,43396,true story,1247213452 +32298,43415,cousins,1248076647 +32298,43415,gangsters,1248076613 +32298,43419,Mexico,1247211882 +32298,43460,18th century,1246583049 +32298,43460,based on a book,1210220177 +32298,43460,England,1246583063 +32298,43460,frantic,1393552635 +32298,43460,mockumentary,1393385137 +32298,43460,movie business,1246583093 +32298,43460,postmodern,1393385165 +32298,43556,boxing,1352693170 +32298,43556,military,1352693078 +32298,43556,sports,1352693170 +32298,43560,based on a book,1249526300 +32298,43560,fairy tale,1370243235 +32298,43560,magic,1249526303 +32298,43560,single parents,1370243245 +32298,43628,based on a play,1319371276 +32298,43635,based on a book,1245904586 +32298,43635,Broadway,1245904595 +32298,43635,small town,1245904594 +32298,43635,vocalists,1246735940 +32298,43652,comedians,1371025208 +32298,43652,stand-up comedy,1315188474 +32298,43677,aviation,1250825442 +32298,43677,made for TV,1250825442 +32298,43677,racism,1250825442 +32298,43677,true story,1250825442 +32298,43677,World War II,1250825442 +32298,43679,franchise,1362152399 +32298,43679,nudity (topless),1400282585 +32298,43684,interracial romance,1197001635 +32298,43699,not on DVD,1245634401 +32298,43699,Texas,1245634484 +32298,43708,hip hop,1244715737 +32298,43710,based on a book,1245400756 +32298,43710,biography,1245400779 +32298,43710,genius,1245834955 +32298,43710,history,1240890572 +32298,43710,physics,1240890580 +32298,43710,science,1240890584 +32298,43744,lesbian,1255255109 +32298,43744,queer,1255255118 +32298,43762,nudity (topless),1400279133 +32298,43853,organized crime,1249518436 +32298,43869,based on a book,1162264710 +32298,43871,computers,1248148772 +32298,43871,hackers,1248148759 +32298,43883,politics,1231320435 +32298,43912,based on a book,1296151052 +32298,43914,writers,1246599468 +32298,43917,dogs,1259268103 +32298,43919,parody,1160654852 +32298,43921,nudity (full frontal),1400284993 +32298,43928,comic book,1246579107 +32298,43928,heroine in tight suit,1283682043 +32298,43928,stylized,1283682034 +32298,43934,nature,1228356185 +32298,43936,police,1246890108 +32298,43936,police corruption,1258620567 +32298,43971,easily confused with other movie(s) (title),1407014625 +32298,43971,nudity (topless),1422531676 +32298,43997,Catholicism,1321416451 +32298,43997,child abuse,1321416451 +32298,43997,Christianity,1321416451 +32298,43997,religion,1321416451 +32298,44022,animals,1246669225 +32298,44022,climate change,1258971305 +32298,44022,franchise,1326374965 +32298,44022,talking animals,1197787272 +32298,44041,based on a book,1315449714 +32298,44041,made for TV,1315449714 +32298,44041,World War I,1315449714 +32298,44100,based on a play,1248305896 +32298,44155,based on a book,1328323621 +32298,44155,E. Nesbit,1328323621 +32298,44187,royalty,1246759892 +32298,44189,nudity (topless),1400279830 +32298,44191,anti-authoritarian,1240891268 +32298,44191,bombs,1248645718 +32298,44191,comic book,1246580350 +32298,44191,directorial debut,1207131408 +32298,44191,dystopia,1245638806 +32298,44191,England,1242322629 +32298,44191,fascism,1247214739 +32298,44191,gay,1255254461 +32298,44191,homophobia,1246617656 +32298,44191,imdb top 250,1246140924 +32298,44191,inspirational,1244884217 +32298,44191,intelligent,1386642228 +32298,44191,London,1245638815 +32298,44191,politics,1246140953 +32298,44191,queer,1246617656 +32298,44191,rebellion,1248862798 +32298,44191,revenge,1243785079 +32298,44191,subversive,1240891272 +32298,44191,terrorism,1243785086 +32298,44191,torture,1248090390 +32298,44191,totalitarianism,1272877764 +32298,44193,cross dressing,1246618819 +32298,44193,cross dressing women,1246619598 +32298,44193,impostor,1246621708 +32298,44195,based on a book,1245239272 +32298,44195,business,1245239244 +32298,44195,business is the antagonist,1255076291 +32298,44195,corruption,1245500646 +32298,44195,cover up,1245539088 +32298,44195,directorial debut,1207202221 +32298,44195,drugs,1308174676 +32298,44195,journalism,1277209190 +32298,44195,narrated,1277209195 +32298,44195,politics,1245239226 +32298,44195,propaganda,1245239223 +32298,44195,satire,1245239266 +32298,44195,secrets,1245741033 +32298,44197,courtroom,1245289390 +32298,44197,Mafia,1248076889 +32298,44197,organized crime,1248076908 +32298,44197,true story,1245289385 +32298,44199,bad ending,1383821744 +32298,44199,bank robbery,1246891662 +32298,44199,heist,1249343104 +32298,44199,Nazis,1381720111 +32298,44199,New York City,1249343135 +32298,44199,police,1246891659 +32298,44199,twist ending,1278925902 +32298,44204,Africa,1223268375 +32298,44204,based on a book,1223268375 +32298,44204,Oscar (Best Foreign Language Film),1257578104 +32298,44204,South Africa,1223268375 +32298,44234,based on a book,1384582293 +32298,44234,Ray Bradbury,1384582295 +32298,44241,made for TV,1268870269 +32298,44241,monster,1268870269 +32298,44397,remake,1248985288 +32298,44399,remake,1226721586 +32298,44421,movie business,1314557346 +32298,44555,Berlin,1248147511 +32298,44555,communism,1244887586 +32298,44555,East Germany,1244887581 +32298,44555,Germany,1248147595 +32298,44555,nudity (topless),1400283673 +32298,44555,voyeurism,1248147523 +32298,44571,devil,1249500560 +32298,44587,Native Americans,1278926394 +32298,44590,nudity (topless),1401573045 +32298,44613,dance,1379411757 +32298,44613,high school,1379411776 +32298,44633,genius,1246492766 +32298,44633,mental illness,1245051673 +32298,44657,based on a book,1245569080 +32298,44663,movie business,1268717547 +32298,44663,politics,1268717547 +32298,44665,assassin,1248075756 +32298,44665,gangsters,1248075677 +32298,44665,mistaken identity,1220361399 +32298,44665,nudity (topless),1400283624 +32298,44665,organized crime,1248075622 +32298,44665,revenge,1248075629 +32298,44665,twist ending,1248075693 +32298,44671,aliens,1259794323 +32298,44694,Spain,1259624703 +32298,44709,competition,1402879984 +32298,44709,single parents,1245059127 +32298,44709,spelling bee,1245033128 +32298,44709,uplifting,1303703824 +32298,44731,video games,1382082955 +32298,44759,nudity (topless),1401571414 +32298,44759,sequel,1401571413 +32298,44761,directorial debut,1207212979 +32298,44761,drugs,1245232645 +32298,44761,high school,1245232576 +32298,44761,low budget,1334217654 +32298,44777,aliens,1246473696 +32298,44777,television,1246473719 +32298,44779,Christmas,1246045612 +32298,44779,revenge,1246045667 +32298,44779,Santa Claus,1246045612 +32298,44779,serial killer,1246045667 +32298,44788,business,1246358277 +32298,44788,censorship,1244970468 +32298,44788,corruption,1245500395 +32298,44788,movie business,1244970459 +32298,44844,imdb bottom 100,1195617527 +32298,44849,black and white,1273397371 +32298,44849,Paris,1273397371 +32298,44849,stylized,1273462951 +32298,44911,based on a book,1246889045 +32298,44911,nudity (topless),1400279458 +32298,44911,ventriloquist,1246889045 +32298,44929,addiction,1245288411 +32298,44929,Australia,1245288438 +32298,44929,based on a book,1245288441 +32298,44929,drugs,1245288403 +32298,44929,heroin,1248326163 +32298,44929,nudity (topless),1400281610 +32298,44929,poets,1246600224 +32298,44929,prostitution,1248326204 +32298,44929,writers,1246600224 +32298,44943,9/11,1248254262 +32298,44943,terrorism,1248254262 +32298,44949,business is the antagonist,1394989557 +32298,44972,franchise,1246482512 +32298,44972,parody,1160654911 +32298,44974,revenge,1267691013 +32298,45028,ensemble cast,1197724467 +32298,45028,Minnesota,1248305416 +32298,45028,radio,1245238063 +32298,45081,video game adaptation,1246574890 +32298,45100,kidnapping,1249795932 +32298,45100,Latin America,1249795946 +32298,45100,Mexico,1249795946 +32298,45100,Mexico City,1249795946 +32298,45100,nudity (full frontal),1400285408 +32298,45100,prostitution,1249795932 +32298,45100,unsimulated sex,1400286684 +32298,45106,Bush bashing,1245222196 +32298,45106,satire,1251506748 +32298,45106,US President,1245222176 +32298,45170,double life,1268717266 +32298,45170,Paris,1268717266 +32298,45170,true story,1268717266 +32298,45175,cross dressing,1246621542 +32298,45175,cross dressing men,1246621542 +32298,45175,small town,1246277178 +32298,45183,martial arts,1395578770 +32298,45188,nudity (topless),1419525500 +32298,45192,not available from Netflix,1247182959 +32298,45194,not available from Netflix,1247183050 +32298,45208,road trip,1352334413 +32298,45210,9/11,1245277853 +32298,45210,aviation,1245919800 +32298,45210,controversial,1258610579 +32298,45210,Islam,1249525204 +32298,45210,massacre,1246770247 +32298,45210,religion,1249525206 +32298,45210,terrorism,1258610585 +32298,45210,true story,1258610583 +32298,45221,gymnastics,1346157332 +32298,45221,high school,1346157330 +32298,45221,sports,1346157339 +32298,45329,colonialism,1246772074 +32298,45329,Colorado,1246772081 +32298,45329,massacre,1246772076 +32298,45329,military,1246772077 +32298,45329,Native Americans,1246772078 +32298,45329,revenge,1246772079 +32298,45431,comic strip,1246579806 +32298,45431,Dreamworks,1385026188 +32298,45431,talking animals,1246579816 +32298,45440,nudity (topless),1400282142 +32298,45442,big budget,1196515904 +32298,45442,ocean,1203547519 +32298,45442,remake,1196514703 +32298,45442,shipwreck,1196514647 +32298,45447,based on a book,1264414291 +32298,45447,Christianity,1264414290 +32298,45447,controversial,1264414219 +32298,45447,Dan Brown,1264414460 +32298,45447,religion,1264414285 +32298,45447,sacrilege,1246586525 +32298,45499,big budget,1196516808 +32298,45499,biology,1208571367 +32298,45499,comic book,1297514200 +32298,45499,ensemble cast,1244890478 +32298,45499,franchise,1196554758 +32298,45499,genetics,1208570956 +32298,45499,Marvel,1297514189 +32298,45499,mutants,1196554738 +32298,45499,politics,1304226034 +32298,45499,watch the credits,1245407608 +32298,45501,nudity (rear),1400284269 +32298,45508,Africa,1268869743 +32298,45517,cars,1247209535 +32298,45517,Pixar,1247209520 +32298,45517,racing,1348662101 +32298,45517,small town,1348662049 +32298,45517,villain nonexistent or not needed for good story,1348662056 +32298,45517,watch the credits,1348662079 +32298,45525,Caribbean,1232024850 +32298,45525,Cuba,1248165729 +32298,45525,immigrants,1248165729 +32298,45525,Latin America,1248165729 +32298,45527,nudity (topless),1405126216 +32298,45531,nudity (topless),1410533748 +32298,45635,1950s,1245453597 +32298,45635,BDSM,1246472216 +32298,45635,biography,1249098669 +32298,45635,nudity (full frontal),1400285360 +32298,45635,politics,1246472228 +32298,45635,true story,1245453567 +32298,45662,based on a book,1233484103 +32298,45662,Christianity,1233484103 +32298,45662,religion,1233484103 +32298,45662,remake,1286015726 +32298,45666,Latin America,1248155845 +32298,45666,Mexico,1246403053 +32298,45672,dogs,1425179555 +32298,45691,painter,1294870132 +32298,45720,based on a book,1247208767 +32298,45720,fashion,1361342840 +32298,45720,New York City,1247208742 +32298,45722,anti-hero,1387281695 +32298,45722,big budget,1244890540 +32298,45722,cliffhanger,1235639903 +32298,45722,pirates,1244890551 +32298,45722,seafaring,1244890547 +32298,45722,sequels filmed simultaneously,1244763362 +32298,45728,crude humor,1321519994 +32298,45728,sequel,1245285445 +32298,45728,slackers,1248672325 +32298,45837,Beatles,1294614509 +32298,45837,not on DVD,1245629318 +32298,45837,rock and roll,1245629318 +32298,45880,France,1306877826 +32298,45880,nudity (rear),1400284245 +32298,45880,royalty,1306877833 +32298,45891,based on a book,1247050053 +32298,45928,business,1240895513 +32298,45928,business is the antagonist,1254122407 +32298,45928,California,1385209245 +32298,45928,cars,1245500142 +32298,45928,environmental,1244975370 +32298,45928,General Motors,1245154559 +32298,45928,politics,1385209249 +32298,45940,soccer,1265407866 +32298,45940,sports,1265407866 +32298,45942,not available from Netflix,1248089988 +32298,45950,Al Gore,1384813596 +32298,45950,climate change,1258971222 +32298,45950,environmental,1244975339 +32298,45950,nature,1196065599 +32298,45950,Oscar (Best Documentary Feature),1410239528 +32298,45950,politics,1379985343 +32298,45950,science,1379985429 +32298,45950,slow,1387280672 +32298,45981,nudity (topless),1400279823 +32298,45987,musicians,1379410574 +32298,45987,rock and roll,1285201975 +32298,45994,nudity (topless),1413919088 +32298,46062,high school,1301836317 +32298,46098,Turkey,1393378794 +32298,46105,addiction,1249499401 +32298,46105,nudity (full frontal),1400285132 +32298,46105,prostitution,1249499405 +32298,46105,sex,1249499405 +32298,46105,true story,1249499401 +32298,46108,Brazil,1268870122 +32298,46108,love triangles,1268870122 +32298,46108,nudity (full frontal),1400285045 +32298,46108,strippers,1268870122 +32298,46115,nudity (topless),1400278333 +32298,46156,based on a book,1400654001 +32298,46156,black comedy,1400654022 +32298,46207,Christmas,1366160539 +32298,46231,nudity (full frontal),1400285532 +32298,46322,martial arts,1247207655 +32298,46335,cars,1247559383 +32298,46335,franchise,1370159936 +32298,46335,Japan,1247559408 +32298,46335,racing,1247559415 +32298,46335,street race,1370159945 +32298,46335,Tokyo,1247559406 +32298,46337,cats,1404469798 +32298,46347,heavy metal,1294614366 +32298,46347,rock and roll,1294614366 +32298,46478,nudity (topless),1400279035 +32298,46530,big budget,1249096576 +32298,46530,comic book,1246754995 +32298,46530,DC Comics,1246754995 +32298,46530,double life,1249096578 +32298,46530,franchise,1242494578 +32298,46530,journalism,1249096581 +32298,46530,superhero,1246754995 +32298,46530,Superman,1381920489 +32298,46559,corruption,1245501675 +32298,46559,military,1245501607 +32298,46559,politics,1248261179 +32298,46559,prison,1245501591 +32298,46559,torture,1245501640 +32298,46559,wrongly accused,1245501587 +32298,46572,based on a play,1228012238 +32298,46572,David Mamet,1280045665 +32298,46572,nudity (topless),1400280642 +32298,46578,beauty pageant,1317626480 +32298,46578,drugs,1317626485 +32298,46578,dysfunctional family,1317626516 +32298,46578,heartwarming,1317626513 +32298,46578,road trip,1317626520 +32298,46578,suicide,1349331225 +32298,46581,conjoined twins,1251384094 +32298,46581,rock and roll,1251384094 +32298,46581,siblings,1251384094 +32298,46581,twins,1251384094 +32298,46588,Holocaust,1361863869 +32298,46634,nudity (topless),1400278486 +32298,46651,musicians,1384398515 +32298,46651,rock and roll,1384398515 +32298,46723,Africa,1321246642 +32298,46723,Morocco,1321246633 +32298,46723,multiple storylines,1245288694 +32298,46723,nudity (full frontal),1400284813 +32298,46839,multiple roles,1262769015 +32298,46855,based on a book,1268798379 +32298,46855,World War II,1268798379 +32298,46948,Halloween,1247205593 +32298,46948,haunted house,1361516881 +32298,46965,aviation,1245919796 +32298,46965,campy,1259196392 +32298,46965,nudity (topless),1400282840 +32298,46965,snakes,1247041333 +32298,46970,cars,1247472968 +32298,46970,racing,1247472954 +32298,46970,sports,1247472968 +32298,46972,Bechdel Test:Fail,1348300531 +32298,46972,history,1348301679 +32298,46972,monkey,1348300552 +32298,46972,museum,1242203419 +32298,46972,single parents,1348300576 +32298,46972,slapstick,1348301322 +32298,46972,whimsical,1348300576 +32298,46974,9/11,1245578518 +32298,46974,New York City,1245578573 +32298,46976,narrated,1307075499 +32298,46976,surreal,1240891119 +32298,46976,writers,1246599742 +32298,47044,based on a TV show,1246775856 +32298,47044,Florida,1376456518 +32298,47044,Miami,1376456518 +32298,47044,nudity (topless),1400282756 +32298,47049,nudity (topless),1400279111 +32298,47099,single parents,1245059243 +32298,47099,true story,1246577526 +32298,47196,con artists,1248305944 +32298,47196,desert,1248305944 +32298,47200,action packed,1349596662 +32298,47200,drugs,1349596629 +32298,47200,nudity (topless),1400283007 +32298,47202,nudity (topless),1400280863 +32298,47261,based on a book,1247289989 +32298,47261,radio,1306716164 +32298,47285,based on a book,1269243691 +32298,47285,Catholicism,1269243691 +32298,47285,China,1269243691 +32298,47285,Christianity,1269243691 +32298,47285,religion,1269243690 +32298,47287,based on a book,1234777860 +32298,47287,based on a play,1234777860 +32298,47382,dance,1196068238 +32298,47423,addiction,1250659964 +32298,47423,drugs,1245048893 +32298,47423,urban,1250659964 +32298,47484,based on a book,1247057446 +32298,47484,FBI,1247057446 +32298,47484,lawyers,1247057446 +32298,47491,black comedy,1247131558 +32298,47491,small town,1245567765 +32298,47493,black and white,1204200950 +32298,47493,directorial debut,1207212490 +32298,47503,high school,1265084231 +32298,47516,imdb bottom 100,1195618803 +32298,47518,college,1248085882 +32298,47518,slackers,1248085874 +32298,47525,male nudity,1400215675 +32298,47525,nudity (topless),1400215602 +32298,47571,1970s,1246466215 +32298,47571,Caribbean,1246466215 +32298,47571,Haiti,1246466215 +32298,47571,island,1246466215 +32298,47571,Latin America,1248165835 +32298,47571,nudity (topless),1400278876 +32298,47571,tourists,1400278876 +32298,47610,1900s,1260514019 +32298,47610,Austria,1248611370 +32298,47610,magic,1248611379 +32298,47610,royalty,1306804907 +32298,47610,stage magic,1306804974 +32298,47610,twist ending,1306804760 +32298,47610,Vienna,1245056534 +32298,47629,England,1245280053 +32298,47629,royalty,1246757063 +32298,47629,true story,1246485597 +32298,47640,beer,1248090560 +32298,47640,drinking,1248090562 +32298,47640,nudity (topless),1400282160 +32298,47644,football,1250239617 +32298,47644,Philadelphia,1250239620 +32298,47644,sports,1250239631 +32298,47644,true story,1250239623 +32298,47646,1930s,1367314021 +32298,47646,musicians,1379408650 +32298,47646,nightclub,1245497353 +32298,47646,Prohibition,1248078892 +32298,47670,Israel,1246747457 +32298,47670,Middle East,1246747457 +32298,47714,based on a play,1248491196 +32298,47714,Noel Coward,1248491196 +32298,47714,not available from Netflix,1248491196 +32298,47774,not on DVD,1245627787 +32298,47774,parody,1245635315 +32298,47778,pregnancy,1246048328 +32298,47778,teen pregnancy,1246048319 +32298,47810,cult,1246454070 +32298,47810,island,1244890819 +32298,47810,remake,1244890813 +32298,47815,imdb bottom 100,1195616387 +32298,47830,nudity (topless),1400280307 +32298,47894,1920s,1246391194 +32298,47894,civil war,1244887736 +32298,47894,Ireland,1246391153 +32298,47894,siblings,1322803782 +32298,47940,nudity (topless),1407216656 +32298,47950,Superman,1371209656 +32298,47952,magic,1247043248 +32298,47970,nudity (topless),1400214653 +32298,47978,nudity (topless),1400280883 +32298,47997,dystopia,1379251257 +32298,47997,narrated,1379255715 +32298,47997,satire,1259547649 +32298,47997,underrated,1384674596 +32298,47999,abortion,1333345925 +32298,47999,brainwashing,1245449247 +32298,47999,Christianity,1248506848 +32298,47999,Colorado,1244671674 +32298,47999,conservatism,1345776637 +32298,47999,education,1246402018 +32298,47999,George Bush,1333345952 +32298,47999,homophobia,1333345930 +32298,47999,politics,1333345951 +32298,47999,religion,1244671671 +32298,48043,disease,1320473520 +32298,48043,immortality,1246494533 +32298,48043,multiple storylines,1320473653 +32298,48043,time travel,1246494537 +32298,48045,movie business,1387275009 +32298,48057,trains,1274354037 +32298,48059,2D animation,1268599080 +32298,48061,2D animation,1263387801 +32298,48082,dreams,1247206610 +32298,48142,1940s,1245810175 +32298,48142,based on a book,1245810320 +32298,48142,conspiracy,1245810252 +32298,48142,corruption,1245810252 +32298,48142,nudity (rear),1400282609 +32298,48142,nudity (topless),1400282609 +32298,48142,police,1245810232 +32298,48142,police corruption,1245810252 +32298,48161,football,1221449237 +32298,48198,based on a play,1240799698 +32298,48198,gay,1255253375 +32298,48198,military,1231733087 +32298,48198,Vietnam War,1231733087 +32298,48231,nudity (full frontal),1428751350 +32298,48231,unsimulated sex,1428751350 +32298,48242,nudity (topless),1400278757 +32298,48242,strippers,1249500803 +32298,48262,depression,1247211077 +32298,48262,suicide,1247211084 +32298,48268,Maine,1313303392 +32298,48268,small town,1313303392 +32298,48304,Native Americans,1248864763 +32298,48304,religion,1248865035 +32298,48315,American Civil War,1245210395 +32298,48315,black and white,1245210402 +32298,48315,civil war,1245830352 +32298,48322,based on a TV show,1247052001 +32298,48322,MTV,1247052001 +32298,48322,reality TV,1247051987 +32298,48326,corruption,1248084496 +32298,48326,Louisiana,1248084552 +32298,48326,politics,1248084527 +32298,48326,remake,1248084511 +32298,48385,banned movie,1248146581 +32298,48385,controversial,1245588916 +32298,48385,crude humor,1243684294 +32298,48385,hard to watch,1241748270 +32298,48385,irreverent,1240889704 +32298,48385,male nudity,1247296247 +32298,48385,mockumentary,1244771861 +32298,48385,prostitution,1307889366 +32298,48385,satire,1240889710 +32298,48385,subversive,1240889713 +32298,48385,tasteless,1273271024 +32298,48385,Texas,1244765780 +32298,48389,business,1246393521 +32298,48389,corruption,1245538213 +32298,48389,Iraq War,1234740233 +32298,48389,military,1245538203 +32298,48389,military industrial complex,1243413701 +32298,48394,1940s,1245810769 +32298,48394,civil war,1318793999 +32298,48394,fairy tale,1318793968 +32298,48394,imagination,1246449683 +32298,48394,imdb top 250,1246446680 +32298,48394,maze,1318793809 +32298,48394,military,1318793999 +32298,48394,surreal,1240895455 +32298,48394,torture,1318793879 +32298,48394,World War II,1318793870 +32298,48416,remake,1246889545 +32298,48516,Boston,1244886991 +32298,48516,corruption,1245279710 +32298,48516,gangsters,1246484569 +32298,48516,imdb top 250,1246484579 +32298,48516,organized crime,1248077811 +32298,48516,police,1244886982 +32298,48516,police corruption,1244886979 +32298,48516,undercover cop,1244886999 +32298,48530,multiple storylines,1247632809 +32298,48543,nudity (topless),1401965800 +32298,48543,serial killer,1263022168 +32298,48560,based on a book,1370318212 +32298,48593,election,1245234230 +32298,48593,politics,1245234225 +32298,48593,US President,1245234242 +32298,48598,Truman Capote,1260224183 +32298,48600,based on a book,1218107438 +32298,48600,Biblical,1246345641 +32298,48600,Christianity,1218107438 +32298,48600,religion,1218107438 +32298,48626,1970s,1354796227 +32298,48626,New York City,1354796227 +32298,48626,soccer,1354796227 +32298,48626,sports,1354796227 +32298,48660,based on a book,1243542940 +32298,48660,not available from Netflix,1270751852 +32298,48660,nudity (topless),1400288534 +32298,48673,not available from Netflix,1246466515 +32298,48678,Project Greenlight,1247131054 +32298,48682,cross dressing,1268028361 +32298,48682,cross dressing women,1268028352 +32298,48682,Iran,1245538651 +32298,48682,Islam,1245538670 +32298,48682,Middle East,1245538692 +32298,48682,sexism,1245538658 +32298,48682,soccer,1245538630 +32298,48682,sports,1245538632 +32298,48696,adultery,1245239738 +32298,48696,nudity (topless),1400282903 +32298,48696,small town,1320985305 +32298,48698,1970s,1246395233 +32298,48698,Catholicism,1246395199 +32298,48698,child abuse,1246395208 +32298,48698,Christianity,1246395210 +32298,48698,corruption,1246399837 +32298,48698,cover up,1246395211 +32298,48698,rape,1246395235 +32298,48698,religion,1246395212 +32298,48700,easily confused with other movie(s) (title),1263472247 +32298,48738,Africa,1240890515 +32298,48738,based on a book,1197803309 +32298,48738,history,1246666710 +32298,48738,nude black women,1308110072 +32298,48738,nudity (rear),1400284203 +32298,48738,Uganda,1246127464 +32298,48741,anti-war,1386589344 +32298,48741,Beatles,1386589344 +32298,48741,history,1386589344 +32298,48744,group sex,1245453677 +32298,48744,nudity (full frontal),1400284903 +32298,48744,sex,1245453668 +32298,48744,unsimulated sex,1400286510 +32298,48770,nudity (topless),1400278943 +32298,48774,apocalypse,1247290986 +32298,48774,based on a book,1245391897 +32298,48774,bleak,1379591143 +32298,48774,dystopia,1240895728 +32298,48774,England,1346134282 +32298,48774,epidemic,1245394949 +32298,48774,grim,1244883780 +32298,48774,imdb top 250,1247290953 +32298,48774,infertility,1250143523 +32298,48774,nude black women,1250141334 +32298,48774,nudity (topless),1400283963 +32298,48774,pregnancy,1247290970 +32298,48774,survival,1248165156 +32298,48780,based on a book,1162264805 +32298,48780,great ending,1386304929 +32298,48780,imdb top 250,1248087336 +32298,48780,magic,1248087347 +32298,48780,nonlinear,1297167008 +32298,48780,revenge,1308042929 +32298,48780,rivalry,1297167016 +32298,48780,sacrifice,1308043082 +32298,48780,secrets,1297166994 +32298,48780,stage magic,1248087356 +32298,48780,twist ending,1297166987 +32298,48783,World War II,1250036382 +32298,48825,Afghanistan,1307665115 +32298,48825,nudity (full frontal),1401587945 +32298,48825,Soviet Union,1309482918 +32298,48825,true story,1309482896 +32298,48856,based on a book,1262252696 +32298,48856,New York City,1262213790 +32298,48856,nudity (topless),1400281400 +32298,48872,black and white,1306627138 +32298,48877,brutal,1306449321 +32298,48877,franchise,1306449321 +32298,48877,insanity,1306449489 +32298,48877,nudity (full frontal),1400285768 +32298,48877,revenge,1306449214 +32298,48877,serial killer,1306449196 +32298,48877,torture,1306449194 +32298,48879,Africa,1259794378 +32298,48879,South Africa,1259794441 +32298,48879,terrorism,1259794444 +32298,48883,alternate reality,1245502350 +32298,48883,assassin,1246483531 +32298,48883,George W. Bush,1246483538 +32298,48883,US President,1246483544 +32298,48982,Aardman,1319954248 +32298,48982,bad plot,1393377730 +32298,48982,Dreamworks,1393377652 +32298,48982,England,1393378819 +32298,48982,London,1393377722 +32298,48982,talking animals,1392984923 +32298,48997,18th century,1245047962 +32298,48997,based on a book,1320294619 +32298,48997,creativity,1245047978 +32298,48997,nudity (topless),1400282870 +32298,48997,obsession,1245047986 +32298,48997,serial killer,1245047948 +32298,49013,Christmas,1246980341 +32298,49013,Santa Claus,1246980347 +32298,49016,nudity (topless),1399629094 +32298,49050,anthology,1268871038 +32298,49130,based on a book,1246402443 +32298,49132,country music,1212056542 +32298,49132,Dixie Chicks,1303528358 +32298,49132,Iraq War,1245538347 +32298,49132,politics,1245538354 +32298,49220,mockumentary,1246452334 +32298,49225,New Jersey,1299490318 +32298,49225,politics,1299490311 +32298,49234,Africa,1262406010 +32298,49234,apartheid,1262406010 +32298,49234,based on a book,1262406010 +32298,49234,South Africa,1262406010 +32298,49265,Africa,1244499681 +32298,49265,BBC Films,1244499673 +32298,49265,civil war,1422231591 +32298,49265,genocide,1238921284 +32298,49265,history,1246770128 +32298,49265,Rwanda,1246770101 +32298,49272,casino,1246485834 +32298,49272,espionage,1246471495 +32298,49272,franchise,1246471509 +32298,49272,gambling,1246471497 +32298,49272,James Bond,1246471500 +32298,49272,parkour,1297633545 +32298,49274,Antarctica,1255064515 +32298,49274,dance,1255064561 +32298,49274,polar,1368313423 +32298,49278,New Orleans,1344475438 +32298,49278,terrorism,1344492464 +32298,49278,time travel,1245234132 +32298,49278,wormhole,1395089112 +32298,49286,switching places,1246587288 +32298,49312,autism,1245053359 +32298,49347,based on a book,1197718488 +32298,49347,BBC Films,1244499606 +32298,49347,nudity (topless),1400281830 +32298,49389,trains,1277556524 +32298,49396,devil,1372057735 +32298,49396,great soundtrack,1372057940 +32298,49396,musicians,1379410637 +32298,49396,rock and roll,1366958893 +32298,49396,underrated,1385389932 +32298,49396,watch the credits,1372058006 +32298,49518,musicians,1379409016 +32298,49518,technology,1315792973 +32298,49524,based on a book,1244769559 +32298,49524,Biblical,1244769560 +32298,49524,Christianity,1244769556 +32298,49524,Christmas,1244769565 +32298,49524,Jesus Christ,1246345756 +32298,49524,religion,1244769557 +32298,49526,nudity (topless),1400280798 +32298,49528,Brazil,1256013424 +32298,49528,Latin America,1256013424 +32298,49528,nudity (rear),1400284299 +32298,49528,nudity (topless),1400277412 +32298,49528,South America,1256013424 +32298,49528,tourists,1400277415 +32298,49530,Africa,1244690856 +32298,49530,business,1321180297 +32298,49530,civil war,1321179729 +32298,49530,corruption,1321179730 +32298,49530,journalism,1321179740 +32298,49530,mining,1244927803 +32298,49530,orphans,1321179781 +32298,49530,Sierra Leone,1321179727 +32298,49530,smuggling,1346223767 +32298,49647,based on a book,1196518825 +32298,49647,E.B. White,1196518850 +32298,49647,talking animals,1196518815 +32298,49649,based on a book,1246615839 +32298,49649,dragons,1394788387 +32298,49688,true story,1344402752 +32298,49688,World War II,1344402755 +32298,49766,Nazis,1248765864 +32298,49766,true story,1248765831 +32298,49766,World War II,1248765831 +32298,49772,based on a book,1397709150 +32298,49772,China,1397709156 +32298,49772,doctors,1316052714 +32298,49772,epidemic,1247219260 +32298,49793,football,1257417288 +32298,49793,sports,1257417288 +32298,49793,true story,1257417288 +32298,49822,CIA,1246403281 +32298,49822,Cold War,1246403339 +32298,49824,musicians,1379411137 +32298,49824,rhythm & blues,1195783282 +32298,49824,vocalists,1246734170 +32298,49902,based on a book,1248490924 +32298,49902,painter,1248490924 +32298,49910,based on a book,1263962320 +32298,49910,high school,1263962320 +32298,49910,teacher,1263962320 +32298,49917,Bush bashing,1253688848 +32298,49917,hurricane,1255919593 +32298,49917,long,1255919598 +32298,49917,natural disaster,1253688877 +32298,49917,New Orleans,1253688876 +32298,49917,US history,1253688874 +32298,49932,nudity (topless),1400282228 +32298,49961,adultery,1245738558 +32298,49961,BBC Films,1244499481 +32298,49961,England,1245738365 +32298,49961,high school,1245738398 +32298,49961,lesbian,1245738558 +32298,49961,loneliness,1245738564 +32298,49961,manipulation,1245738380 +32298,49961,May-December romance,1246597066 +32298,49961,revenge,1245738427 +32298,49961,scandal,1245738377 +32298,49961,secrets,1245738558 +32298,49961,teacher,1245738409 +32298,49961,teacher student relationship,1245738415 +32298,49994,France,1283072506 +32298,49994,unsimulated sex,1400289428 +32298,50003,martial arts,1247043279 +32298,50003,video game adaptation,1247043305 +32298,50005,based on a play,1246757184 +32298,50005,royalty,1246757158 +32298,50064,World War II,1247103385 +32298,50068,imdb top 250,1249051552 +32298,50068,World War II,1249051543 +32298,50158,college,1233234156 +32298,50158,dance,1233234156 +32298,50158,fraternity,1247215719 +32298,50160,BBC Films,1244499524 +32298,50183,lesbian,1401570428 +32298,50183,nudity (topless),1401570428 +32298,50189,franchise,1248258054 +32298,50189,made for TV,1248257961 +32298,50189,nudity (full frontal),1400285718 +32298,50253,based on a book,1246345616 +32298,50253,Biblical,1246345617 +32298,50253,Christianity,1246345618 +32298,50253,religion,1246345619 +32298,50274,May-December romance,1320985133 +32298,50274,nudity (topless),1400281425 +32298,50347,nudity (full frontal),1400285258 +32298,50349,1930s,1265369313 +32298,50379,nudity (full frontal),1407103161 +32298,50440,Africa,1422230712 +32298,50442,nudity (topless),1400282218 +32298,50442,true story,1252373303 +32298,50447,nudity (full frontal),1400285250 +32298,50514,nudity (topless),1400281534 +32298,50514,wedding,1246601130 +32298,50533,Catholicism,1274873709 +32298,50533,Christianity,1274873709 +32298,50533,France,1274873709 +32298,50533,religion,1274873709 +32298,50601,based on a book,1244769826 +32298,50610,nudity (topless),1409784502 +32298,50630,Italy,1249343368 +32298,50630,writers,1249343368 +32298,50703,bad science,1407661635 +32298,50740,7n Up (series),1232126253 +32298,50794,assassin,1246483887 +32298,50794,ensemble cast,1404475941 +32298,50794,nudity (topless),1400282762 +32298,50794,organized crime,1404475947 +32298,50794,twist ending,1404475976 +32298,50798,imdb bottom 100,1195617999 +32298,50798,parody,1247211963 +32298,50804,cannibalism,1320294781 +32298,50804,Hannibal Lecter,1320294785 +32298,50804,serial killer,1320294779 +32298,50806,multiple roles,1246750010 +32298,50842,Iceland,1244462019 +32298,50851,drugs,1245540846 +32298,50851,Florida,1245540846 +32298,50851,Miami,1245540846 +32298,50858,nudity (topless),1400280111 +32298,50872,fish out of water,1298188890 +32298,50872,food,1298188888 +32298,50872,France,1298188876 +32298,50872,imaginary friend,1298188886 +32298,50872,IMDB Top 250,1298188859 +32298,50872,Oscar (Best Animated Feature),1218875519 +32298,50872,Paris,1298188876 +32298,50872,Pixar,1298188858 +32298,50872,restaurant,1268798129 +32298,50872,talking animals,1197787017 +32298,50912,Paris,1244886885 +32298,50954,high school,1401571982 +32298,50954,switching places,1401571982 +32298,50970,based on a book,1300949820 +32298,50970,Gore Vidal,1300949820 +32298,51007,World War II,1264319364 +32298,51014,alter ego,1246756401 +32298,51014,based on a book,1227618936 +32298,51014,double life,1246756405 +32298,51014,Robert Louis Stevenson,1227618936 +32298,51024,based on a poem,1232003735 +32298,51024,Homer,1232003762 +32298,51063,nudity (topless),1400293676 +32298,51077,comic book,1246580761 +32298,51077,deal with the devil,1245735961 +32298,51077,Marvel,1245735968 +32298,51077,motorcycle,1248155402 +32298,51080,Catholicism,1245501072 +32298,51080,Christianity,1245501072 +32298,51080,corruption,1245501017 +32298,51080,FBI,1245501072 +32298,51080,police corruption,1246403423 +32298,51080,religion,1245501072 +32298,51080,true story,1245501017 +32298,51084,vocalists,1246895366 +32298,51088,nudity (topless),1400281908 +32298,51088,police,1270367864 +32298,51091,blues,1255169791 +32298,51091,nudity (topless),1400282557 +32298,51106,corruption,1247050102 +32298,51106,police,1247050101 +32298,51106,police corruption,1247050101 +32298,51111,adultery,1245749000 +32298,51111,slapstick,1245749001 +32298,51127,rock and roll,1251861981 +32298,51174,nudity (topless),1400280778 +32298,51187,England,1257340395 +32298,51187,London,1257340395 +32298,51255,buddy movie,1246255168 +32298,51255,macabre,1307889190 +32298,51255,parody,1244767035 +32298,51255,police,1208760224 +32298,51255,small town,1207566630 +32298,51304,child abuse,1259624769 +32298,51304,incest,1246577502 +32298,51304,kidnapping,1259624769 +32298,51304,rape,1246577445 +32298,51304,serial killer,1246577500 +32298,51304,true story,1246577451 +32298,51412,based on a book,1347579465 +32298,51412,Philip K. Dick,1347579465 +32298,51412,ridiculous,1422450986 +32298,51412,time travel,1422451085 +32298,51418,nudity (topless),1400281083 +32298,51457,Iraq,1267566090 +32298,51457,Iraq War,1267566090 +32298,51457,Islam,1267566090 +32298,51457,Middle East,1267566090 +32298,51457,religion,1267566090 +32298,51471,18th century,1398143774 +32298,51471,England,1218108026 +32298,51471,history,1398143749 +32298,51471,politics,1398143879 +32298,51471,slavery,1244770472 +32298,51471,true story,1271751181 +32298,51540,serial killer,1196080834 +32298,51562,aliens,1413522920 +32298,51562,made for TV,1248256597 +32298,51562,space,1248256597 +32298,51575,road trip,1245281111 +32298,51619,based on a book,1322655494 +32298,51619,dreams,1322655494 +32298,51619,drugs,1322655494 +32298,51619,Ursula K. Le Guin,1322655494 +32298,51662,comic book,1246580197 +32298,51662,Frank Miller,1307988363 +32298,51662,military,1338706105 +32298,51662,narrated,1286880718 +32298,51662,nudity (topless),1400283904 +32298,51662,overrated,1348288213 +32298,51662,rape,1285478716 +32298,51662,stylized,1245052580 +32298,51666,nudity (full frontal),1400285681 +32298,51678,based on a play,1206782298 +32298,51698,based on a book,1369992514 +32298,51698,time travel,1245228501 +32298,51709,Korea,1245054098 +32298,51709,monster,1245054081 +32298,51773,based on a book,1245904536 +32298,51820,based on a book,1249043034 +32298,51820,based on a play,1249043034 +32298,51820,Broadway,1249043057 +32298,51820,San Francisco,1249043056 +32298,51834,18th century,1250643204 +32298,51834,England,1250643223 +32298,51834,Jane Austen,1250643190 +32298,51847,directorial debut,1267535408 +32298,51847,terrorism,1268716376 +32298,51884,immigrants,1245052980 +32298,51911,based on a play,1219269621 +32298,51911,Tennessee Williams,1219269621 +32298,51931,9/11,1245232935 +32298,51931,depression,1245232979 +32298,51931,mental illness,1245232984 +32298,51931,New York City,1206314035 +32298,51933,Philadelphia,1422314229 +32298,51935,based on a book,1207472323 +32298,51939,based on a TV show,1384582199 +32298,51939,franchise,1384582199 +32298,51991,adoption,1246491520 +32298,51991,orphans,1246491511 +32298,52042,double life,1248089181 +32298,52042,Nazis,1245058181 +32298,52042,Netherlands,1245058234 +32298,52042,nudity (full frontal),1400284738 +32298,52042,nudity (topless),1400282208 +32298,52042,resistance movement,1245058141 +32298,52042,true story,1245058181 +32298,52042,World War II,1245058181 +32298,52170,black comedy,1387275098 +32298,52241,nudity (rear),1400284237 +32298,52245,figure skating,1368519364 +32298,52245,ice skating,1368519364 +32298,52245,sports,1368519364 +32298,52281,cars,1245285383 +32298,52281,fake trailers,1320481123 +32298,52281,zombies,1262779845 +32298,52283,based on a book,1233484146 +32298,52283,Christianity,1233484146 +32298,52283,religion,1233484146 +32298,52287,inventor,1321090489 +32298,52287,orphans,1321090482 +32298,52287,time travel,1246449272 +32298,52299,musicians,1379410183 +32298,52299,punk rock,1250218801 +32298,52299,rock and roll,1250218801 +32298,52319,World War II,1243137115 +32298,52321,revenge,1297540860 +32298,52328,bad ending,1344502813 +32298,52328,isolation,1319178499 +32298,52328,psychology,1319178579 +32298,52328,slow,1389091300 +32298,52328,space,1187605240 +32298,52328,suicide,1319178318 +32298,52328,unpredictable,1382192508 +32298,52356,classical music,1402676782 +32298,52356,musicians,1402676782 +32298,52378,acting debut,1404626043 +32298,52435,2D animation,1262764786 +32298,52435,based on a book,1227454008 +32298,52435,Christmas,1227454009 +32298,52435,Dr. Seuss,1240890270 +32298,52435,made for TV,1248256783 +32298,52435,narrated,1234013066 +32298,52435,remade,1227453978 +32298,52435,short,1246979286 +32298,52460,Native Americans,1246670946 +32298,52460,Vikings,1246670942 +32298,52462,based on a TV show,1250130252 +32298,52561,banned movie,1246773579 +32298,52561,controversial,1246773579 +32298,52561,nudity (topless),1413923439 +32298,52579,vocalists,1332827202 +32298,52581,cross dressing,1245749131 +32298,52581,impostor,1245749131 +32298,52604,adultery,1246572371 +32298,52604,courtroom,1246572322 +32298,52604,lawyers,1246572341 +32298,52712,invisibility,1246585375 +32298,52722,big budget,1196515239 +32298,52722,comic book,1246578418 +32298,52722,double life,1246755054 +32298,52722,franchise,1246578445 +32298,52722,jazz club,1244890437 +32298,52722,Marvel,1297514218 +32298,52722,revenge,1246578437 +32298,52722,superhero,1405660216 +32298,52730,based on a TV show,1402484972 +32298,52730,Christmas,1232095712 +32298,52730,franchise,1350115784 +32298,52730,puppets,1350115783 +32298,52730,talking animals,1350115783 +32298,52767,7n Up (series),1225533794 +32298,52806,based on a book,1322523338 +32298,52806,dragons,1394788770 +32298,52806,Ursula K. Le Guin,1322523338 +32298,52885,anime,1247206547 +32298,52885,dreams,1247206562 +32298,52891,cycling,1386906294 +32298,52891,true story,1386906300 +32298,52927,doctors,1248089828 +32298,52929,BBC Films,1244499558 +32298,52929,nudity (full frontal),1400284895 +32298,52952,England,1244974077 +32298,52973,drugs,1245232855 +32298,52973,marijuana,1318727843 +32298,52973,nudity (topless),1400283688 +32298,52973,pregnancy,1318727806 +32298,52973,unrealistic,1318789374 +32298,52975,1960s,1246568849 +32298,52975,Baltimore,1245376531 +32298,52975,based on a play,1245376512 +32298,52975,Broadway,1246899492 +32298,52975,civil rights,1246568859 +32298,52975,high school,1245376522 +32298,52975,Maryland,1246568761 +32298,52975,racism,1245376524 +32298,52975,remake,1209895358 +32298,52975,rock and roll,1246568920 +32298,52975,segregation,1246568840 +32298,53000,military,1392719278 +32298,53000,post-apocalyptic,1245391454 +32298,53000,sequel,1245391472 +32298,53000,shaky camera,1392719455 +32298,53000,zombies,1246763833 +32298,53024,cult,1246453991 +32298,53024,history,1233146569 +32298,53024,Latin America,1248164362 +32298,53024,massacre,1246769675 +32298,53024,religion,1244671692 +32298,53024,South America,1233146569 +32298,53024,suicide,1245577255 +32298,53084,nudity (topless),1409815308 +32298,53121,big budget,1196515917 +32298,53121,Dreamworks,1311440412 +32298,53121,talking animals,1197787891 +32298,53123,bad soundtrack,1422330833 +32298,53123,Dublin,1246614606 +32298,53123,folk music,1405327987 +32298,53123,Ireland,1245046959 +32298,53123,musicians,1392803641 +32298,53123,overrated,1406713348 +32298,53123,pretentious,1395879518 +32298,53125,anti-hero,1387281700 +32298,53125,big budget,1391749312 +32298,53125,franchise,1309067053 +32298,53125,pirates,1245407582 +32298,53125,seafaring,1248861777 +32298,53125,sequels filmed simultaneously,1204118732 +32298,53125,watch the credits,1245407598 +32298,53127,based on a play,1247216199 +32298,53127,nudity (full frontal),1400285556 +32298,53129,serial killer,1248085022 +32298,53131,nudity (topless),1429821871 +32298,53138,archaeology,1248849635 +32298,53140,made for TV,1248257903 +32298,53154,horses,1259308660 +32298,53154,narrated,1259308666 +32298,53161,asylum,1245734802 +32298,53161,insanity,1246492948 +32298,53161,mental illness,1245414738 +32298,53183,comic book,1248398933 +32298,53183,Hong Kong,1248398940 +32298,53183,martial arts,1248398933 +32298,53282,suicide,1247050652 +32298,53282,terrorism,1247050652 +32298,53318,alternate reality,1246776827 +32298,53318,imagination,1246776827 +32298,53318,nudity (full frontal),1400285298 +32298,53318,surreal,1246452915 +32298,53322,casino,1348974115 +32298,53322,ensemble cast,1197724245 +32298,53322,franchise,1348974128 +32298,53322,heist,1348974115 +32298,53322,Las Vegas,1246983033 +32298,53342,nudity (full frontal),1400285265 +32298,53352,nudity (topless),1400279282 +32298,53416,nudity (full frontal),1400285129 +32298,53435,banned movie,1248152984 +32298,53435,controversial,1248152984 +32298,53435,nudity (topless),1400281791 +32298,53447,based on a book,1206316490 +32298,53460,mockumentary,1392893558 +32298,53460,ocean,1392893932 +32298,53460,sports,1392893575 +32298,53460,surfing,1259796667 +32298,53460,talking animals,1327980194 +32298,53464,comic book,1246579987 +32298,53464,heroine in tight suit,1246580019 +32298,53464,invisibility,1246579982 +32298,53464,Marvel,1246579965 +32298,53464,superhero,1246579941 +32298,53519,car chase,1336462898 +32298,53519,cars,1370693487 +32298,53550,prison escape,1246393896 +32298,53550,true story,1246393994 +32298,53550,Vietnam War,1197630428 +32298,53569,movie business,1387294088 +32298,53569,pornography,1387294087 +32298,53569,small town,1387294087 +32298,53808,cheerleading,1381223738 +32298,53808,high school,1381223738 +32298,53827,based on a book,1245631037 +32298,53827,mental illness,1243257638 +32298,53827,multiple personalities,1347012532 +32298,53827,true story,1243257638 +32298,53843,suburbia,1379972870 +32298,53859,soccer,1277556711 +32298,53859,sports,1277556711 +32298,53883,corruption,1245500502 +32298,53883,politics,1244551671 +32298,53883,terrorism,1245500485 +32298,53894,business,1297632474 +32298,53894,health care,1245500625 +32298,53894,politics,1245500626 +32298,53906,based on a book,1269162122 +32298,53912,hip hop,1258242123 +32298,53919,multiple roles,1246752700 +32298,53919,royalty,1246757091 +32298,53953,based on a book,1369992446 +32298,53953,hotel,1246141222 +32298,53953,Stephen King,1246141262 +32298,53956,drugs,1363769303 +32298,53956,family gatherings,1245150520 +32298,53956,funeral,1245150551 +32298,53956,remade,1363759204 +32298,53963,nudity (topless),1400278409 +32298,53972,hackers,1248148825 +32298,53972,parkour,1306826686 +32298,53972,terrorism,1195969252 +32298,53988,based on a book,1271880783 +32298,53993,based on a book,1423534054 +32298,53993,based on a myth,1246745991 +32298,53993,Biblical,1423534056 +32298,53993,big budget,1196515662 +32298,53993,Christianity,1423534058 +32298,53993,environmental,1423534069 +32298,53993,god,1423534051 +32298,53993,religion,1423534048 +32298,53993,watch the credits,1423534314 +32298,53996,based on a TV show,1246086054 +32298,53996,comic book,1246580538 +32298,53996,franchise,1246086084 +32298,53996,military,1303762369 +32298,53996,robots,1246085867 +32298,54001,based on a book,1290063988 +32298,54001,boarding school,1247045431 +32298,54001,franchise,1196516335 +32298,54001,Harry Potter,1344404462 +32298,54001,magic,1247045431 +32298,54004,buddy movie,1246267920 +32298,54004,firefighters,1235797167 +32298,54144,nudity (topless),1400278765 +32298,54190,1960s,1249010890 +32298,54190,Beatles,1254713628 +32298,54190,rock and roll,1195781653 +32298,54196,nudity (topless),1409745253 +32298,54229,based on a book,1387278939 +32298,54241,colonialism,1246691849 +32298,54241,India,1246691849 +32298,54256,stunts,1368674494 +32298,54259,based on a book,1251006313 +32298,54259,crude humor,1415837259 +32298,54259,fairy tale,1300599524 +32298,54259,gay stereotypes,1300599514 +32298,54259,Iceland,1242865414 +32298,54259,magic,1251006320 +32298,54259,Neil Gaiman,1240910894 +32298,54259,pirates,1254712588 +32298,54259,whimsical,1300599483 +32298,54259,witch,1415837239 +32298,54268,golf,1251506046 +32298,54268,imdb bottom 100,1195616255 +32298,54272,based on a TV show,1250130707 +32298,54274,kidnapping,1245237985 +32298,54274,multiple roles,1246753063 +32298,54274,serial killer,1245237981 +32298,54274,torture,1245237993 +32298,54281,coming of age,1348576032 +32298,54281,drugs,1348576003 +32298,54281,high school,1348576001 +32298,54281,suicide,1348576016 +32298,54284,AIDS,1351511792 +32298,54284,biography,1268614721 +32298,54284,drugs,1268614721 +32298,54284,latin music,1268614724 +32298,54284,musicians,1379409496 +32298,54284,true story,1268614721 +32298,54286,assassin,1310539351 +32298,54286,based on a book,1212115999 +32298,54286,conspiracy,1344332042 +32298,54286,espionage,1310539352 +32298,54286,imdb top 250,1212115971 +32298,54286,Robert Ludlum,1344331968 +32298,54290,imdb bottom 100,1195618470 +32298,54326,Colombia,1234011269 +32298,54326,Latin America,1248165589 +32298,54326,South America,1234011252 +32298,54372,based on a book,1245228729 +32298,54372,nudity (full frontal),1400284746 +32298,54372,wrongly accused,1245228705 +32298,54378,prostitution,1245230418 +32298,54406,not available from Netflix,1247800665 +32298,54455,high school,1268870208 +32298,54455,nudity (topless),1406302016 +32298,54493,based on a book,1355944697 +32298,54503,crude humor,1297166927 +32298,54503,drinking,1248090596 +32298,54503,friendship,1297166942 +32298,54503,high school,1196081719 +32298,54503,nerds,1297166947 +32298,54503,police,1297166919 +32298,54503,teen,1247042964 +32298,54503,virginity,1248089510 +32298,54513,biography,1310280922 +32298,54513,radio,1310280922 +32298,54513,true story,1310280922 +32298,54519,nudity (topless),1419526377 +32298,54536,nudity (full frontal),1403942914 +32298,54607,Iraq,1234569214 +32298,54607,Iraq War,1234569214 +32298,54607,Middle East,1245538568 +32298,54607,military,1234569214 +32298,54648,big budget,1196515553 +32298,54648,buddy movie,1348972627 +32298,54648,franchise,1348972649 +32298,54648,martial arts,1348972627 +32298,54648,police,1348972627 +32298,54652,musicians,1409667697 +32298,54652,punk rock,1409667697 +32298,54652,rock and roll,1409667697 +32298,54686,King Arthur,1246584352 +32298,54691,based on a book,1387454735 +32298,54691,D.H. Lawrence,1413925903 +32298,54691,nudity (full frontal),1400285055 +32298,54734,college,1247043487 +32298,54736,FBI,1246747077 +32298,54736,Middle East,1246747077 +32298,54736,Saudi Arabia,1246747077 +32298,54736,terrorism,1246747056 +32298,54745,debate,1392612553 +32298,54745,high school,1303625811 +32298,54758,long,1398415415 +32298,54758,terrorism,1340000010 +32298,54758,youtube,1398493598 +32298,54768,imdb bottom 100,1195616306 +32298,54783,19th century,1246670765 +32298,54783,history,1246670754 +32298,54783,massacre,1246763518 +32298,54783,Mormon,1246670746 +32298,54783,Native Americans,1246670853 +32298,54783,religion,1246670745 +32298,54783,Utah,1245117854 +32298,54785,Halloween,1248255781 +32298,54785,nudity (full frontal),1400285566 +32298,54785,remake,1248255774 +32298,54787,vigilante,1246472419 +32298,54796,France,1393095536 +32298,54796,Paris,1360578945 +32298,54826,nudity (topless),1400278675 +32298,54881,competition,1402879829 +32298,54881,video games,1382082947 +32298,54910,serial killer,1384449387 +32298,54958,nudity (topless),1400279071 +32298,54962,multiple storylines,1247035534 +32298,54995,military,1344597229 +32298,54995,zombies,1347011994 +32298,54997,based on a book,1420191757 +32298,54997,Elmore Leonard,1420191757 +32298,54997,remake,1245452715 +32298,54999,action packed,1355137820 +32298,54999,brutal,1348565163 +32298,54999,fast paced,1348565156 +32298,54999,guns,1348565163 +32298,54999,nudity (topless),1400282727 +32298,54999,satire,1348565128 +32298,54999,sexualized violence,1348565216 +32298,54999,skydiving,1355137888 +32298,54999,underrated,1406713871 +32298,55031,movie business,1319449684 +32298,55052,based on a book,1246494135 +32298,55052,Ian McEwan,1266391281 +32298,55052,siblings,1246494156 +32298,55063,Canada,1218875108 +32298,55063,Manitoba,1218875108 +32298,55067,1970s,1245051220 +32298,55067,Catholicism,1244671890 +32298,55067,Christianity,1244671893 +32298,55067,college,1246400426 +32298,55067,epilepsy,1245051199 +32298,55067,exorcism,1245832849 +32298,55067,Germany,1244892307 +32298,55067,mental illness,1245051203 +32298,55067,religion,1244671896 +32298,55067,true story,1244671899 +32298,55069,abortion,1252949274 +32298,55069,dictatorship,1252949302 +32298,55069,pregnancy,1252949302 +32298,55071,corruption,1245500067 +32298,55071,Iraq War,1245538243 +32298,55071,military,1245500069 +32298,55071,politics,1245500057 +32298,55078,based on a book,1268383508 +32298,55078,Thomas Hardy,1268383828 +32298,55080,revenge,1245912580 +32298,55080,vigilante,1245912560 +32298,55094,Iraq War,1245538189 +32298,55094,nudity (topless),1400282214 +32298,55100,May-December romance,1246593405 +32298,55118,BBC Films,1244499375 +32298,55118,male nudity,1251029417 +32298,55118,nudity (topless),1400283287 +32298,55156,business,1240184108 +32298,55156,history,1403021882 +32298,55156,politics,1403021882 +32298,55156,youtube,1398493614 +32298,55176,space,1209898638 +32298,55207,easily confused with other movie(s) (title),1344851403 +32298,55207,short,1415075016 +32298,55223,based on a play,1268716796 +32298,55223,France,1254122649 +32298,55223,Paris,1254122649 +32298,55226,gangsters,1248254052 +32298,55226,Japan,1248254052 +32298,55226,military,1248254052 +32298,55226,Tokyo,1248254052 +32298,55226,undercover cop,1248254052 +32298,55232,post-apocalyptic,1247219205 +32298,55232,video game adaptation,1195557105 +32298,55232,zombies,1262647796 +32298,55245,nudity (topless),1400282085 +32298,55247,Alaska,1240890326 +32298,55247,based on a book,1197808785 +32298,55247,imdb top 250,1212115885 +32298,55247,nudity (topless),1400283697 +32298,55247,true story,1197808832 +32298,55247,wilderness,1245049187 +32298,55253,China,1240890566 +32298,55253,erotic,1245409051 +32298,55253,nudity (full frontal),1400284773 +32298,55253,Shanghai,1234590160 +32298,55253,unsimulated sex,1400288700 +32298,55253,World War II,1196560849 +32298,55255,based on a book,1248692257 +32298,55255,nudity (full frontal),1400285370 +32298,55255,small town,1248692257 +32298,55257,nudity (topless),1400280408 +32298,55259,time travel,1300948952 +32298,55261,nudity (topless),1400281876 +32298,55261,remake,1247748846 +32298,55267,single parents,1245059832 +32298,55269,dysfunctional family,1319248877 +32298,55269,funeral,1319248882 +32298,55269,India,1319248862 +32298,55269,siblings,1245539534 +32298,55269,trains,1319248863 +32298,55269,traveling,1319248887 +32298,55272,gangsters,1248076739 +32298,55272,New York City,1245497251 +32298,55272,nightclub,1245497203 +32298,55272,police,1197338178 +32298,55272,siblings,1245539562 +32298,55276,lawyers,1280527016 +32298,55280,mental illness,1246492974 +32298,55280,small town,1246493035 +32298,55282,Alaska,1390525310 +32298,55282,vampires,1390525310 +32298,55282,wintry,1390525310 +32298,55284,CIA,1245501540 +32298,55284,corruption,1245501540 +32298,55284,politics,1244973502 +32298,55284,terrorism,1244973467 +32298,55284,torture,1244973506 +32298,55286,addiction,1248087114 +32298,55286,drugs,1248087118 +32298,55286,heroin,1248087118 +32298,55286,nonlinear,1248087092 +32298,55290,based on a book,1245290527 +32298,55290,directorial debut,1245290513 +32298,55290,kidnapping,1245290535 +32298,55292,imdb bottom 100,1195617803 +32298,55298,dogs,1267788392 +32298,55343,nudity (topless),1400278788 +32298,55363,assassin,1246483481 +32298,55369,not available from Netflix,1248253697 +32298,55369,not on DVD,1248253697 +32298,55417,prostitution,1245230901 +32298,55442,2D animation,1262779631 +32298,55442,biography,1245051755 +32298,55442,black and white,1262779625 +32298,55442,comic book,1246580564 +32298,55442,fascism,1247648874 +32298,55442,Iran,1245051736 +32298,55442,Islam,1245538822 +32298,55442,Middle East,1245051767 +32298,55442,politics,1262779609 +32298,55442,religion,1262779566 +32298,55442,Tehran,1245538822 +32298,55444,biography,1196560541 +32298,55444,rock and roll,1244886113 +32298,55444,suicide,1244886362 +32298,55444,true story,1196560546 +32298,55485,nudity (topless),1400278163 +32298,55507,history,1246757967 +32298,55507,queen,1246757967 +32298,55507,royalty,1246757967 +32298,55549,movie business,1298164500 +32298,55549,politics,1260856133 +32298,55577,franchise,1306449368 +32298,55577,serial killer,1306449348 +32298,55577,torture,1306449346 +32298,55620,Christianity,1255253674 +32298,55620,gay,1255253673 +32298,55620,homophobia,1255253673 +32298,55620,religion,1255253669 +32298,55687,painter,1297426622 +32298,55721,Brazil,1258611495 +32298,55721,corruption,1245279726 +32298,55721,Drugs,1245053663 +32298,55721,Latin America,1248164463 +32298,55721,police,1245053679 +32298,55721,police corruption,1245053658 +32298,55721,Rio de Janeiro,1258611505 +32298,55721,South America,1245053673 +32298,55729,mental illness,1246493379 +32298,55737,aviation,1377809381 +32298,55737,zombies,1377809381 +32298,55765,drugs,1245452504 +32298,55765,gangsters,1246485028 +32298,55765,organized crime,1248078630 +32298,55765,police,1245050465 +32298,55765,true story,1245452485 +32298,55805,nudity (topless),1400282778 +32298,55814,disability,1245051970 +32298,55814,nudity (topless),1400282874 +32298,55814,true story,1245051998 +32298,55820,1980s,1297343271 +32298,55820,based on a book,1297343267 +32298,55820,brutal,1314258742 +32298,55820,Cormac McCarthy,1382405939 +32298,55820,imdb top 250,1212115858 +32298,55820,insanity,1297343304 +32298,55820,overrated,1385915888 +32298,55820,serial killer,1297343218 +32298,55820,slow,1387280834 +32298,55820,Texas,1297343202 +32298,55830,heartwarming,1345784278 +32298,55830,jazz,1345784590 +32298,55830,movie business,1345784281 +32298,55830,quirky,1345784293 +32298,55830,small business,1345784285 +32298,55844,lesbian,1240448200 +32298,55844,nudity (topless),1400279399 +32298,55908,Christianity,1379231808 +32298,55908,excellent script,1386592137 +32298,55908,great acting,1387396879 +32298,55908,history,1379231703 +32298,55908,immortality,1240895235 +32298,55908,intelligent,1379231831 +32298,55908,irreligion,1248144031 +32298,55908,Jerome Bixby,1240895237 +32298,55908,religion,1379231630 +32298,55926,firefighters,1413519508 +32298,55926,oil,1413519505 +32298,55926,true story,1413519505 +32298,55995,based on a poem,1244771628 +32298,55995,Neil Gaiman,1240889638 +32298,55999,magic,1345616085 +32298,55999,toy store,1345616088 +32298,55999,toys,1345616090 +32298,55999,whimsical,1345616095 +32298,56001,based on a book,1206779614 +32298,56001,nudity (topless),1400280722 +32298,56003,apocalypse,1245392824 +32298,56022,based on a book,1369992362 +32298,56022,Kurt Vonnegut,1369970883 +32298,56028,nudity (topless),1411372100 +32298,56079,drugs,1267691105 +32298,56079,marijuana,1267691101 +32298,56095,queer,1265083834 +32298,56145,based on a book,1209786246 +32298,56145,bugs,1247290426 +32298,56145,Christianity,1381831094 +32298,56145,irreligion,1248144064 +32298,56145,military,1381831133 +32298,56145,religion,1381831094 +32298,56145,remake,1319571877 +32298,56145,small town,1245392524 +32298,56145,Stephen King,1245568747 +32298,56152,Disney,1319801463 +32298,56152,fairy tale,1319801464 +32298,56152,New York City,1319801505 +32298,56152,parody,1319801471 +32298,56156,assassin,1411998491 +32298,56156,bad acting,1411998529 +32298,56156,bad plot,1411998557 +32298,56156,nudity (full frontal),1400285784 +32298,56156,prostitution,1246491776 +32298,56156,Russia,1411998493 +32298,56156,video game adaptation,1246574530 +32298,56171,alternate reality,1263926583 +32298,56171,anti-religion,1379306523 +32298,56171,based on a book,1263926555 +32298,56171,big budget,1391750409 +32298,56171,controversial,1248143461 +32298,56171,fast paced,1379396321 +32298,56171,irreligion,1248143625 +32298,56171,kidnapping,1263926574 +32298,56171,Phillip Pullman,1263926558 +32298,56171,religion,1317954536 +32298,56171,steampunk,1240910958 +32298,56171,talking animals,1197719413 +32298,56174,based on a book,1197890384 +32298,56174,disease,1262225428 +32298,56174,dogs,1353501132 +32298,56174,last man on earth,1244973050 +32298,56174,loneliness,1387320004 +32298,56174,post-apocalyptic,1245390790 +32298,56174,religion,1301368888 +32298,56174,remake,1244973064 +32298,56174,Richard Matheson,1246443584 +32298,56174,survival,1378624611 +32298,56174,zombies,1244973075 +32298,56251,2D animation,1263387744 +32298,56251,based on a TV show,1248258536 +32298,56251,made for TV,1248258536 +32298,56333,aging,1386565554 +32298,56333,siblings,1246403158 +32298,56336,nudity (topless),1400280034 +32298,56336,reality TV,1233577023 +32298,56339,ghosts,1249337379 +32298,56339,haunted house,1356042829 +32298,56367,adoption,1247043968 +32298,56367,high school,1245286131 +32298,56367,pregnancy,1245286126 +32298,56367,teen,1247043959 +32298,56367,teen pregnancy,1301387923 +32298,56370,Africa,1265084180 +32298,56370,apartheid,1265084180 +32298,56370,based on a book,1265084197 +32298,56370,prison,1265084180 +32298,56370,racism,1265084181 +32298,56370,South Africa,1265084180 +32298,56370,true story,1265084197 +32298,56379,business,1300576062 +32298,56511,Iraq War,1245538274 +32298,56511,journalism,1245538279 +32298,56511,military,1245538283 +32298,56561,Buddhism,1304499522 +32298,56561,religion,1304499521 +32298,56580,CIA,1381730032 +32298,56580,Latin America,1381730032 +32298,56580,politics,1381730032 +32298,56587,terminal illness,1247211591 +32298,56599,Christianity,1318141273 +32298,56599,religion,1318141272 +32298,56607,Afghanistan,1245063282 +32298,56607,Middle East,1245063290 +32298,56626,12th century,1245587471 +32298,56626,England,1245445971 +32298,56626,medieval,1245445971 +32298,56626,royalty,1246760363 +32298,56693,incest,1316828766 +32298,56693,nudity (full frontal),1400285106 +32298,56693,siblings,1316828778 +32298,56702,nudity (full frontal),1403944275 +32298,56715,afterlife,1250139528 +32298,56715,alternate reality,1246453895 +32298,56715,based on a book,1369992336 +32298,56715,black comedy,1281350797 +32298,56715,nudity (topless),1400282553 +32298,56715,quirky,1281350776 +32298,56715,suicide,1250139555 +32298,56757,18th century,1246313858 +32298,56757,based on a play,1244973664 +32298,56757,Broadway,1246313231 +32298,56757,cannibalism,1246313169 +32298,56757,easily confused with other movie(s) (title),1260175469 +32298,56757,England,1245276170 +32298,56757,London,1245276170 +32298,56757,serial killer,1260175481 +32298,56757,Stephen Sondheim,1243512572 +32298,56775,history,1358147202 +32298,56782,based on a book,1244927759 +32298,56782,imdb top 250,1212115818 +32298,56782,mining,1244927773 +32298,56782,oil,1246582617 +32298,56782,Upton Sinclair,1244927761 +32298,56786,communism,1400289073 +32298,56786,unsimulated sex,1400289073 +32298,56788,Afghanistan,1283073258 +32298,56788,CIA,1245225813 +32298,56788,cold war,1245225701 +32298,56788,nudity (topless),1400282940 +32298,56788,politics,1245225697 +32298,56788,true story,1245225670 +32298,56801,aliens,1247043711 +32298,56801,franchise,1247043708 +32298,56805,country music,1414299876 +32298,56805,drugs,1367137642 +32298,56805,male nudity,1367137639 +32298,56805,musicians,1379410921 +32298,56805,nudity (full frontal),1400284424 +32298,56805,parody,1367137614 +32298,56805,underrated,1406713846 +32298,56835,National Lampoon,1407104801 +32298,56835,nudity (topless),1407104801 +32298,56837,based on a play,1258963282 +32298,56837,royalty,1258963282 +32298,56837,Shakespeare,1258963282 +32298,56885,college,1221699069 +32298,56885,debate,1392612730 +32298,56885,private school,1247047503 +32298,56885,school drama,1245833992 +32298,56885,Texas,1247047503 +32298,56885,true story,1243586942 +32298,56885,underdogs,1245033013 +32298,56915,based on a book,1206316726 +32298,56921,based on a TV show,1246978223 +32298,56921,made for TV,1248256277 +32298,56921,space,1262490146 +32298,56945,Christmas,1204692715 +32298,56995,1930s,1270233510 +32298,56995,China,1270233510 +32298,57179,comic book,1249343570 +32298,57179,gay,1255253543 +32298,57179,queer,1255253543 +32298,57223,dragons,1394788428 +32298,57243,Israel,1384180317 +32298,57243,Middle East,1246747346 +32298,57274,found footage,1347176468 +32298,57274,remade,1404920896 +32298,57274,zombies,1248261074 +32298,57276,nudity (full frontal),1400285392 +32298,57368,found footage,1347176570 +32298,57368,military,1350798959 +32298,57368,monster,1350798939 +32298,57368,New York City,1252722865 +32298,57368,shaky camera,1347176549 +32298,57421,nudity (topless),1406813778 +32298,57430,nudity (full frontal),1407013215 +32298,57484,based on a book,1210473197 +32298,57502,anime,1246085823 +32298,57502,based on manga,1246579653 +32298,57502,cats,1282519435 +32298,57502,comic book,1246579657 +32298,57502,short,1246979663 +32298,57522,imdb bottom 100,1206331103 +32298,57528,Thailand,1382011070 +32298,57530,imdb bottom 100,1218700221 +32298,57532,imdb bottom 100,1206330973 +32298,57536,nudity (topless),1402153412 +32298,57640,comic book,1246580682 +32298,57640,sequel,1283394656 +32298,57640,superhero,1246580709 +32298,57669,assassin,1315202489 +32298,57669,Belgium,1246601404 +32298,57669,black comedy,1315202483 +32298,57669,directorial debut,1207127451 +32298,57669,drugs,1315202526 +32298,57669,friendship,1315202563 +32298,57669,imdb top 250,1248645936 +32298,57669,suicide,1315202502 +32298,57706,nudity (topless),1407102053 +32298,57754,Africa,1267566574 +32298,57754,Mali,1267566574 +32298,57805,racism,1268383886 +32298,57843,brutal,1382011093 +32298,57843,England,1407111990 +32298,57843,nudity (topless),1407111990 +32298,57854,based on a book,1291436126 +32298,57854,revenge,1291436126 +32298,57854,wrongly accused,1291436126 +32298,57873,not available from Netflix,1248166403 +32298,57910,nudity (topless),1400281604 +32298,57970,rock and roll,1255280746 +32298,57972,ocean,1298756565 +32298,57972,sports,1298756549 +32298,58025,based on a book,1206316846 +32298,58025,superhero,1247043622 +32298,58025,teen,1247043622 +32298,58025,teleportation,1247043596 +32298,58047,divorce,1250141396 +32298,58078,gangsters,1246491478 +32298,58078,nudity (topless),1413926358 +32298,58103,assassin,1246483617 +32298,58103,multiple storylines,1246483589 +32298,58103,US President,1246483597 +32298,58105,based on a book,1297541743 +32298,58105,forest,1350197690 +32298,58105,haunted house,1350197654 +32298,58105,magic,1297541758 +32298,58105,siblings,1344674392 +32298,58105,twins,1297541767 +32298,58107,dance,1379411826 +32298,58146,imdb bottom 100,1206331085 +32298,58154,based on a book,1244499325 +32298,58154,BBC Films,1244499311 +32298,58154,England,1246489949 +32298,58156,basketball,1294540997 +32298,58156,sports,1294540988 +32298,58162,interracial romance,1245061268 +32298,58185,China,1398879864 +32298,58185,election,1398879864 +32298,58191,corruption,1248090351 +32298,58191,Oscar (Best Documentary Feature),1205300730 +32298,58191,politics,1248090343 +32298,58191,torture,1248090337 +32298,58228,multiple roles,1401436002 +32298,58287,rape,1245638592 +32298,58287,revenge,1245638602 +32298,58293,prehistoric,1368596155 +32298,58295,1970s,1246577217 +32298,58295,corruption,1349340221 +32298,58295,England,1349340207 +32298,58295,heist,1349340206 +32298,58295,London,1349340202 +32298,58295,nudity (topless),1400282963 +32298,58295,police,1349340221 +32298,58295,police corruption,1349340221 +32298,58295,true story,1349340201 +32298,58297,apocalypse,1246443735 +32298,58297,disease,1262225380 +32298,58297,epidemic,1246443742 +32298,58297,post-apocalyptic,1246443745 +32298,58299,based on a book,1206239622 +32298,58299,Dr. Seuss,1240890246 +32298,58299,happy ending,1247479371 +32298,58299,jungle,1247479399 +32298,58299,talking animals,1234010474 +32298,58301,hostage,1248166828 +32298,58301,torture,1248166794 +32298,58303,based on a book,1206316571 +32298,58303,Nazis,1245058419 +32298,58303,true story,1206316571 +32298,58303,World War II,1245058419 +32298,58306,12th century,1247583815 +32298,58306,biography,1247583876 +32298,58306,history,1215594450 +32298,58332,found footage,1347177159 +32298,58332,zombies,1347177161 +32298,58334,based on a book,1298164706 +32298,58334,nudity (topless),1400280303 +32298,58347,fairy tale,1378622103 +32298,58351,Brazil,1211912492 +32298,58351,gangsters,1244928043 +32298,58351,Rio de Janeiro,1211912542 +32298,58365,1960s,1247050602 +32298,58365,courtroom,1247050602 +32298,58365,history,1247050602 +32298,58365,politics,1247050602 +32298,58376,9/11,1322806288 +32298,58376,business,1322806288 +32298,58376,Christianity,1322806136 +32298,58376,conspiracy theory,1403041489 +32298,58376,controversial,1322806239 +32298,58376,low budget,1322806308 +32298,58376,religion,1322806136 +32298,58376,youtube,1398493627 +32298,58411,nudity (topless),1400278814 +32298,58425,Iceland,1250825884 +32298,58425,musicians,1384391888 +32298,58434,Iceland,1242894590 +32298,58490,1930s,1245050745 +32298,58492,based on a book,1246121241 +32298,58559,based on a comic,1408328903 +32298,58559,Batman,1244893659 +32298,58559,big budget,1292318029 +32298,58559,DC Comics,1245913393 +32298,58559,double life,1246755151 +32298,58559,franchise,1245913411 +32298,58559,IMDB Top 250,1390075996 +32298,58559,nocturnal,1244893649 +32298,58559,Oscar (Best Supporting Actor),1235492938 +32298,58559,serial killer,1244893629 +32298,58559,superhero,1244893627 +32298,58559,vigilante,1245913287 +32298,58655,bullying,1363758173 +32298,58655,high school,1363758174 +32298,58709,monster,1247050426 +32298,58743,17th century,1249500352 +32298,58743,military,1249500352 +32298,58743,nudity (topless),1400279480 +32298,58783,nudity (topless),1400279931 +32298,58803,based on a book,1246577796 +32298,58803,casino,1220441033 +32298,58803,gambling,1246485728 +32298,58803,Las Vegas,1246485736 +32298,58803,Massachusetts Institute of Technology,1245280551 +32298,58803,mathematics,1257251806 +32298,58803,true story,1244671941 +32298,58839,football,1209986481 +32298,58839,sports,1406919876 +32298,58850,not available from Netflix,1248306433 +32298,58850,pirates,1245626949 +32298,58876,Iraq War,1245538381 +32298,58876,military,1245538386 +32298,58879,rock and roll,1208403424 +32298,58881,Alfred P. Sloan Feature Film Prize,1240889919 +32298,58881,astronomy,1240889921 +32298,58881,college,1245834015 +32298,58881,genius,1270365186 +32298,58881,immigrants,1250025940 +32298,58881,physics,1240889923 +32298,58881,school drama,1245834017 +32298,58881,science,1240889924 +32298,58881,true story,1245400868 +32298,58881,underrated,1406713710 +32298,58898,black and white,1267690606 +32298,58937,kidnapping,1247050478 +32298,58937,nudity (topless),1399718005 +32298,58945,Latin America,1253888535 +32298,58945,South America,1253888535 +32298,58945,Uruguay,1253888535 +32298,58975,based on a book,1248164177 +32298,58975,Latin America,1248164154 +32298,58975,Mexico,1248164154 +32298,58975,nudity (topless),1400281635 +32298,58998,beach,1245739690 +32298,58998,Bechdel Test:Fail,1386592682 +32298,58998,Hawaii,1228452754 +32298,58998,hotel,1245739657 +32298,58998,jealousy,1245739676 +32298,58998,male nudity,1244928192 +32298,58998,nudity (topless),1400283553 +32298,59000,nudity (topless),1400279689 +32298,59014,parody,1208762228 +32298,59018,immigrants,1240895499 +32298,59018,New York City,1212752244 +32298,59022,drugs,1344850080 +32298,59022,nudity (full frontal),1400285270 +32298,59022,road trip,1408360004 +32298,59022,sequel,1247042364 +32298,59026,based on a book,1246224891 +32298,59026,not available from Netflix,1248307034 +32298,59026,nudity (topless),1400280803 +32298,59037,based on a TV show,1404857525 +32298,59037,big budget,1412275841 +32298,59037,cars,1220074279 +32298,59040,angel,1247744425 +32298,59040,prostitution,1247744425 +32298,59053,nudity (topless),1401962689 +32298,59103,martial arts,1315023580 +32298,59116,nudity (topless),1412600481 +32298,59126,atheism,1288941028 +32298,59126,Christianity,1244671861 +32298,59126,irreligion,1248143560 +32298,59126,irreverent,1241987661 +32298,59126,Islam,1246178096 +32298,59126,Judaism,1395327259 +32298,59126,religion,1240895090 +32298,59131,kidnapping,1387277092 +32298,59136,disease,1375245909 +32298,59141,movie business,1315827695 +32298,59141,religion,1315827730 +32298,59143,comedians,1371025104 +32298,59143,drugs,1245577583 +32298,59143,marijuana,1371025129 +32298,59159,based on a book,1369992483 +32298,59159,Edgar Allan Poe,1245397145 +32298,59159,kidnapping,1245397157 +32298,59178,Edgar Rice Burroughs,1245744231 +32298,59180,Edgar Rice Burroughs,1245744251 +32298,59182,Edgar Rice Burroughs,1245744272 +32298,59184,Edgar Rice Burroughs,1245744298 +32298,59216,male nudity,1400290022 +32298,59216,nudity (full frontal),1400290023 +32298,59216,unsimulated sex,1400290022 +32298,59220,India,1286300910 +32298,59256,nudity (topless),1400280831 +32298,59258,pregnancy,1216845066 +32298,59290,nudity (full frontal),1399718565 +32298,59290,painter,1399718565 +32298,59290,true story,1399718565 +32298,59295,bad science,1245051530 +32298,59295,biology,1225337130 +32298,59295,Christianity,1246849777 +32298,59295,creationism,1298085643 +32298,59295,evolution,1225337130 +32298,59295,propaganda,1244768721 +32298,59295,religion,1241005071 +32298,59315,based on a comic,1408329013 +32298,59315,business,1246393539 +32298,59315,business is the antagonist,1255076422 +32298,59315,inventor,1246393417 +32298,59315,kidnapping,1246393552 +32298,59315,Marvel,1209982376 +32298,59315,military,1209982449 +32298,59315,military industrial complex,1246393377 +32298,59315,superhero,1209982335 +32298,59315,vigilante,1245913820 +32298,59315,watch the credits,1210389005 +32298,59336,David Mamet,1232936523 +32298,59336,martial arts,1213605055 +32298,59369,kidnapping,1245053868 +32298,59369,Paris,1339059007 +32298,59369,revenge,1339059007 +32298,59369,torture,1351241353 +32298,59387,1920s,1246449824 +32298,59387,drugs,1320923241 +32298,59387,imagination,1259547321 +32298,59387,suicide,1349331198 +32298,59387,surreal,1259547308 +32298,59392,based on a TV show,1246673246 +32298,59392,made for TV,1285780350 +32298,59392,space,1285780384 +32298,59418,1960s,1368690944 +32298,59418,true story,1368690944 +32298,59429,college,1254443431 +32298,59429,fraternity,1254443431 +32298,59429,made for TV,1254443431 +32298,59429,nudity (topless),1407101198 +32298,59435,nudity (topless),1400279138 +32298,59463,black and white,1267487703 +32298,59485,drugs,1231321060 +32298,59485,marijuana,1231321060 +32298,59501,based on a book,1211422650 +32298,59501,big budget,1391749591 +32298,59501,C.S. Lewis,1211422687 +32298,59501,long,1344771711 +32298,59501,royalty,1344772215 +32298,59501,talking animals,1344778840 +32298,59519,nudity (topless),1400280001 +32298,59519,writers,1246598775 +32298,59527,black and white,1267487809 +32298,59549,gay,1255255396 +32298,59549,queer,1255255400 +32298,59549,surfing,1255255412 +32298,59590,choir,1245377728 +32298,59590,rock and roll,1245377654 +32298,59590,vocalists,1246734296 +32298,59594,business is the antagonist,1394989464 +32298,59602,based on a book,1246597353 +32298,59602,May-December romance,1255335315 +32298,59615,aliens,1348383737 +32298,59615,archaeology,1245402323 +32298,59615,big budget,1391750472 +32298,59615,franchise,1245402344 +32298,59615,Latin America,1348383735 +32298,59615,scenic,1348384223 +32298,59615,South America,1348383733 +32298,59621,bank robbery,1270884050 +32298,59651,musicians,1379409634 +32298,59684,abortion,1246850723 +32298,59684,black and white,1246850733 +32298,59684,Christianity,1246850834 +32298,59684,health care,1246850926 +32298,59684,politics,1246850834 +32298,59684,religion,1246850834 +32298,59705,nudity (topless),1400278833 +32298,59709,college,1246225321 +32298,59725,based on a book,1247801106 +32298,59725,based on a TV show,1247801093 +32298,59725,New York City,1247801112 +32298,59725,nudity (topless),1400282784 +32298,59729,nudity (topless),1403945751 +32298,59731,ambition,1247211482 +32298,59731,competition,1402879882 +32298,59731,drugs,1402879916 +32298,59731,sports,1247211446 +32298,59738,nudity (topless),1402631201 +32298,59784,animals,1247207611 +32298,59784,anti-hero,1387281485 +32298,59784,Dreamworks,1385025972 +32298,59784,martial arts,1247207604 +32298,59784,talking animals,1247207595 +32298,59795,business,1246442866 +32298,59795,choir,1245221989 +32298,59795,Christianity,1246442859 +32298,59795,Christmas,1245221976 +32298,59795,consumerism,1245451467 +32298,59795,religion,1246442866 +32298,59795,vocalists,1246734310 +32298,59810,corruption,1245500342 +32298,59810,election,1245502439 +32298,59810,Florida,1245063364 +32298,59810,politics,1245500337 +32298,59810,US President,1245500365 +32298,59840,based on a book,1245396172 +32298,59840,Richard Matheson,1245396172 +32298,59846,royalty,1246757103 +32298,59910,based on a book,1402479205 +32298,59910,nudity (topless),1402479187 +32298,59915,nude black women,1254972007 +32298,59915,nudity (full frontal),1400285402 +32298,59942,Arthur Conan Doyle,1369666622 +32298,59942,based on a book,1369666615 +32298,59942,dinosaurs,1370164774 +32298,59942,jungle,1369666615 +32298,59945,double life,1247887801 +32298,59995,prison,1245239772 +32298,60007,based on a TV show,1344416709 +32298,60007,Doctor Who,1344416709 +32298,60007,franchise,1302944711 +32298,60007,made for TV,1302944735 +32298,60007,phone booth,1406946917 +32298,60037,epidemic,1246849821 +32298,60040,comic book,1246579196 +32298,60040,military,1334473622 +32298,60040,superhero,1334473611 +32298,60044,nudity (topless),1400279790 +32298,60069,artificial intelligence,1334972452 +32298,60069,big budget,1391750650 +32298,60069,consumerism,1246442975 +32298,60069,environmental,1244972732 +32298,60069,far future,1219981921 +32298,60069,imdb top 250,1216844770 +32298,60069,last man on earth,1244972675 +32298,60069,Oscar (Best Animated Feature),1235492976 +32298,60069,Pixar,1296151505 +32298,60069,post-apocalyptic,1245390686 +32298,60069,robots,1215236599 +32298,60069,space,1244972692 +32298,60072,assassin,1350932032 +32298,60072,comic book,1246580224 +32298,60072,ridiculous,1385475329 +32298,60072,ridiculous training sequence,1385475336 +32298,60072,unrealistic,1385475329 +32298,60074,anti-hero,1387281463 +32298,60074,bad ending,1348301555 +32298,60074,superhero,1246587174 +32298,60074,twist ending,1348046399 +32298,60074,watch the credits,1348046495 +32298,60106,based on a book,1232509229 +32298,60106,Mark Twain,1232509229 +32298,60124,pool,1245388049 +32298,60126,based on a TV show,1345356664 +32298,60126,crude humor,1345356671 +32298,60126,espionage,1345356684 +32298,60126,parody,1345356682 +32298,60128,multiple storylines,1297038735 +32298,60128,nudity (topless),1400280739 +32298,60137,World War II,1227631227 +32298,60147,nonlinear,1259308890 +32298,60147,serial killer,1259308890 +32298,60147,writers,1259308890 +32298,60161,alternate reality,1248258685 +32298,60161,based on a TV show,1248258685 +32298,60161,made for TV,1248258685 +32298,60291,biography,1245048722 +32298,60291,Hunter S. Thompson,1322091061 +32298,60291,journalism,1245048717 +32298,60293,depression,1245282919 +32298,60293,drugs,1245282919 +32298,60293,teen,1247043673 +32298,60295,china,1225533731 +32298,60303,writers,1270883976 +32298,60314,based on a book,1233560446 +32298,60314,Native Americans,1233560446 +32298,60333,Antarctica,1255064463 +32298,60333,nature,1226744560 +32298,60333,polar,1368313312 +32298,60333,scenic,1244671375 +32298,60341,corruption,1245499306 +32298,60341,cover up,1245538996 +32298,60341,Iraq,1245538105 +32298,60341,Iraq War,1245499313 +32298,60341,Middle East,1245538497 +32298,60341,military,1245499304 +32298,60341,secrets,1245740975 +32298,60341,torture,1245499311 +32298,60343,based on a book,1369992426 +32298,60343,colonialism,1244972052 +32298,60343,India,1244972052 +32298,60343,Rudyard Kipling,1244972041 +32298,60363,nudity (full frontal),1400285756 +32298,60363,strippers,1247584143 +32298,60363,zombies,1247584146 +32298,60376,Japan,1360841763 +32298,60376,nuclear war,1360841762 +32298,60397,based on a play,1245376561 +32298,60397,broadway,1245376561 +32298,60450,nudity (topless),1400278998 +32298,60469,Catholicism,1299487140 +32298,60469,Christianity,1299487140 +32298,60482,based on a book,1231928614 +32298,60482,nudity (topless),1400280014 +32298,60487,2D animation,1262765161 +32298,60487,Halloween,1248255218 +32298,60487,made for TV,1248256720 +32298,60487,short,1246979192 +32298,60503,history,1258610908 +32298,60503,massacre,1246772657 +32298,60503,Poland,1246772657 +32298,60503,Soviet Union,1258610908 +32298,60503,World War II,1233688752 +32298,60514,based on a book,1231680475 +32298,60514,Iceland,1242895000 +32298,60514,Jules Verne,1231680475 +32298,60526,BBC Films,1244499351 +32298,60530,nudity (full frontal),1400284996 +32298,60538,drugs,1246978056 +32298,60538,Ireland,1246978056 +32298,60538,tourists,1246978056 +32298,60647,Russia,1344756676 +32298,60647,trains,1344756664 +32298,60654,nudity (full frontal),1400285352 +32298,60674,based on a TV show,1246673209 +32298,60674,made for TV,1285780475 +32298,60674,space,1285829592 +32298,60674,time travel,1246673204 +32298,60684,alternate reality,1247034706 +32298,60684,cold war,1314090611 +32298,60684,comic book,1236586950 +32298,60684,nuclear war,1314090618 +32298,60684,nudity (topless),1400283677 +32298,60684,superhero,1301368498 +32298,60688,nudity (topless),1400513667 +32298,60743,drugs,1319572361 +32298,60753,nudity (topless),1400282054 +32298,60753,prison,1249519091 +32298,60756,dysfunctional family,1299389506 +32298,60756,great soundtrack,1344859189 +32298,60756,quotable,1349653591 +32298,60756,siblings,1344856240 +32298,60758,based on a book,1244499281 +32298,60758,BBC Films,1244499287 +32298,60760,FBI,1217667858 +32298,60763,high school,1305090354 +32298,60763,Indiana,1305090354 +32298,60763,small town,1305090353 +32298,60766,artist,1246598044 +32298,60766,New York City,1410239579 +32298,60766,Oscar (Best Documentary Feature),1235492897 +32298,60816,based on a book,1379508854 +32298,60816,made for TV,1263779324 +32298,60816,magic,1379508856 +32298,60816,Terry Pratchett,1265192539 +32298,60818,based on a book,1380598016 +32298,60818,made for TV,1263779227 +32298,60818,Terry Pratchett,1380598011 +32298,60825,Manhattan,1267667508 +32298,60825,New York City,1267667508 +32298,60832,nudity (topless),1400214811 +32298,60885,Mexico,1267667445 +32298,60887,blindness,1249499910 +32298,60887,disability,1249499910 +32298,60887,Himalayas,1387397883 +32298,60887,mountain climbing,1249499910 +32298,60887,mountains,1249499877 +32298,60887,scenic,1249499877 +32298,60894,love triangles,1246600471 +32298,60894,poets,1246600459 +32298,60894,writers,1246600459 +32298,60939,election,1245234192 +32298,60939,politics,1245234187 +32298,60941,New York City,1244933092 +32298,60941,serial killer,1244933092 +32298,60941,subway,1244933028 +32298,60941,trains,1244933032 +32298,60948,drinking,1384175887 +32298,60948,wine,1384175879 +32298,60950,artist,1246597671 +32298,60950,Barcelona,1245153188 +32298,60950,love triangles,1246601166 +32298,60950,Oscar (Best Supporting Actress),1235493066 +32298,60950,painter,1246597671 +32298,60950,queer,1255255935 +32298,60950,Spain,1245153191 +32298,60979,Batman,1245913461 +32298,60979,comic book,1246580099 +32298,60979,DC Comics,1245913480 +32298,60979,double life,1246754853 +32298,60979,franchise,1245913480 +32298,60979,superhero,1246580104 +32298,60979,vigilante,1245913480 +32298,61024,buddy movie,1318647982 +32298,61024,drugs,1318647983 +32298,61024,marijuana,1318641334 +32298,61024,police corruption,1318647975 +32298,61024,stoner movie,1318647981 +32298,61073,nudity (full frontal),1400285671 +32298,61075,based on a book,1245153322 +32298,61075,May-December romance,1246593158 +32298,61075,nudity (topless),1400281395 +32298,61083,nudity (topless),1402283413 +32298,61091,graffiti,1383906028 +32298,61091,painter,1383906030 +32298,61116,blaxploitation,1290934771 +32298,61123,high school,1301836311 +32298,61132,disability,1244936517 +32298,61132,fake trailers,1320481108 +32298,61132,irreverent,1240891228 +32298,61132,jungle,1320481103 +32298,61132,movie business,1244936521 +32298,61132,parody,1240891231 +32298,61132,satire,1240891235 +32298,61132,Vietnam War,1296368358 +32298,61136,Afghanistan,1267667500 +32298,61136,Middle East,1267667500 +32298,61160,Star Wars,1375797651 +32298,61167,Christianity,1258968903 +32298,61167,religion,1258968903 +32298,61236,1980s,1246521034 +32298,61236,Israel,1246521017 +32298,61236,Lebanon,1246521017 +32298,61236,Middle East,1246747296 +32298,61240,based on a book,1246444469 +32298,61240,bullying,1406820649 +32298,61240,imdb top 250,1227631057 +32298,61240,remade,1315881655 +32298,61240,serial killer,1406820647 +32298,61240,slow,1406820645 +32298,61240,Sweden,1406820646 +32298,61240,vampires,1406820652 +32298,61240,wintry,1406820651 +32298,61246,high school,1245377497 +32298,61246,teacher,1245377492 +32298,61250,nudity (rear),1400284293 +32298,61255,rock and roll,1297769434 +32298,61257,consumerism,1245451539 +32298,61257,politics,1219547947 +32298,61262,nudity (topless),1400281543 +32298,61314,haunted house,1233576868 +32298,61314,nudity (topless),1400279106 +32298,61317,nudity (topless),1400278549 +32298,61323,CIA,1251007533 +32298,61323,espionage,1309996090 +32298,61323,satire,1244973751 +32298,61323,Washington DC,1244973766 +32298,61348,imdb bottom 100,1220659529 +32298,61348,parody,1220880081 +32298,61350,based on a book,1346748720 +32298,61350,post-apocalyptic,1346748632 +32298,61352,FBI,1265114365 +32298,61352,terrorism,1265114365 +32298,61354,nudity (topless),1400279861 +32298,61357,hurricane,1255919544 +32298,61357,Louisiana,1255919562 +32298,61357,natural disaster,1255919537 +32298,61357,New Orleans,1255919531 +32298,61394,journalism,1246667503 +32298,61394,satire,1246667496 +32298,61398,nudity (full frontal),1400285704 +32298,61401,comic book,1246580615 +32298,61401,Frank Miller,1307988423 +32298,61401,immortality,1308908265 +32298,61401,stylized,1308908251 +32298,61449,multiple storylines,1251281529 +32298,61449,nudity (topless),1410462708 +32298,61465,assassin,1245056221 +32298,61473,nudity (topless),1400279363 +32298,61646,nudity (topless),1400280130 +32298,61646,pregnancy,1245577342 +32298,61729,ghosts,1222625543 +32298,61742,Argentina,1379414047 +32298,61742,Latin America,1379414056 +32298,61742,soccer,1297632994 +32298,61742,South America,1379414056 +32298,61742,sports,1297633001 +32298,61818,sequel,1250315603 +32298,61991,nudity (topless),1400280124 +32298,62049,based on a book,1245394066 +32298,62049,dystopia,1245394082 +32298,62049,fascism,1247647099 +32298,62049,George Orwell,1245394071 +32298,62049,not available from Netflix,1246576999 +32298,62049,remade,1245394073 +32298,62081,wrongly accused,1258341896 +32298,62113,based on a book,1300860091 +32298,62113,journalism,1374485365 +32298,62113,nudity (topless),1400282132 +32298,62115,short,1357461307 +32298,62115,trains,1357461307 +32298,62137,based on a book,1298637884 +32298,62153,based on a play,1258620659 +32298,62155,based on a book,1224458328 +32298,62155,Manhattan,1245844435 +32298,62155,New York City,1245844435 +32298,62157,Israel,1252448689 +32298,62157,Judaism,1252448689 +32298,62157,oppression,1252448688 +32298,62157,religion,1252448688 +32298,62157,sexism,1252448688 +32298,62198,biography,1247291067 +32298,62198,Christianity,1248144226 +32298,62198,con artists,1248144227 +32298,62198,irreligion,1248144215 +32298,62198,religion,1248144229 +32298,62250,based on a book,1349170931 +32298,62250,Italy,1280979618 +32298,62250,Mafia,1280979618 +32298,62293,18th century,1256994940 +32298,62293,BBC Films,1244499193 +32298,62293,royalty,1256994974 +32298,62304,nudity (full frontal),1399886877 +32298,62336,2D animation,1262764980 +32298,62336,anime,1225525300 +32298,62336,made for TV,1390075107 +32298,62336,not a movie,1390075107 +32298,62336,rock and roll,1395087027 +32298,62336,surreal,1395087034 +32298,62336,weird,1395087031 +32298,62344,depression,1245282115 +32298,62344,mental illness,1245282122 +32298,62344,siblings,1245539741 +32298,62376,based on a book,1344694152 +32298,62376,irreligion,1351320519 +32298,62376,nocturnal,1344694177 +32298,62376,post-apocalyptic,1344694157 +32298,62376,steampunk,1344694154 +32298,62378,friendship,1420796648 +32298,62378,stage magic,1381247155 +32298,62383,based on a book,1231680281 +32298,62383,Jules Verne,1231680281 +32298,62383,submarine,1231680281 +32298,62390,disability,1259308524 +32298,62394,video game adaptation,1246574275 +32298,62420,India,1240890872 +32298,62434,male nudity,1422451467 +32298,62434,nudity (full frontal),1400283107 +32298,62434,pornography,1240895527 +32298,62434,sex,1240895529 +32298,62437,Bush bashing,1245233147 +32298,62437,corruption,1245502502 +32298,62437,history,1240891287 +32298,62437,Iraq War,1245233157 +32298,62437,politics,1224750317 +32298,62437,satire,1251506800 +32298,62437,underrated,1385389894 +32298,62437,US President,1244888700 +32298,62439,crude humor,1247214079 +32298,62439,nudity (topless),1400280945 +32298,62511,Charlie Kaufman,1244750904 +32298,62511,confusing,1344324232 +32298,62511,directorial debut,1248490405 +32298,62511,New York City,1227631164 +32298,62511,nudity (topless),1400282165 +32298,62511,postmodern,1393385286 +32298,62511,surreal,1325133691 +32298,62511,theater,1325133958 +32298,62577,business,1245154670 +32298,62577,business is the antagonist,1255149176 +32298,62577,cars,1245501118 +32298,62577,corruption,1245501116 +32298,62577,Detroit,1245154689 +32298,62577,inventor,1246393665 +32298,62577,Michigan,1245154689 +32298,62577,technology,1243165411 +32298,62577,true story,1243165455 +32298,62586,parody,1225828282 +32298,62586,politics,1244933882 +32298,62733,found footage,1347177032 +32298,62733,zombies,1347177037 +32298,62764,nudity (topless),1406551795 +32298,62788,nudity (topless),1400279919 +32298,62799,college,1246391722 +32298,62799,football,1246391722 +32298,62799,sports,1246391722 +32298,62834,aliens,1248256650 +32298,62834,based on a TV show,1248256650 +32298,62834,made for TV,1248256650 +32298,62834,space,1248256650 +32298,62836,aliens,1248256569 +32298,62836,based on a TV show,1248256569 +32298,62836,made for TV,1248256569 +32298,62836,space,1248256569 +32298,62849,England,1344416831 +32298,62849,great soundtrack,1415838248 +32298,62849,London,1344416831 +32298,62849,twist ending,1344416831 +32298,62912,high school,1301836290 +32298,62925,based on a book,1232509306 +32298,62925,Mark Twain,1232509360 +32298,62956,based on a TV show,1248258602 +32298,62956,made for TV,1248258602 +32298,62970,alternate reality,1246449897 +32298,62970,made for TV,1248257468 +32298,62970,magic,1226543884 +32298,62970,steampunk,1246795074 +32298,62970,tornado,1246795022 +32298,62972,19th century,1246313605 +32298,62972,Alberta,1227149533 +32298,62972,Canada,1227149533 +32298,62972,ensemble cast,1226543994 +32298,62972,history,1243813363 +32298,62972,made for TV,1248256956 +32298,62972,massacre,1246772231 +32298,62972,Native Americans,1246772231 +32298,62972,New Mexico,1227149533 +32298,62972,TV series,1372987074 +32298,62974,based on a book,1234740553 +32298,62974,Mark Twain,1234740559 +32298,62999,Africa,1360655363 +32298,62999,talking animals,1351238940 +32298,63033,based on a book,1245394554 +32298,63033,blindness,1245394554 +32298,63033,epidemic,1245394554 +32298,63062,impostor,1246577660 +32298,63062,police,1246577713 +32298,63062,police corruption,1246577724 +32298,63062,wrongly accused,1246577723 +32298,63072,based on a book,1258620803 +32298,63072,Cormac McCarthy,1382406002 +32298,63072,post-apocalyptic,1258620803 +32298,63072,survival,1378624648 +32298,63082,based on a book,1229285160 +32298,63082,heartwarming,1388666278 +32298,63082,India,1240891024 +32298,63082,Mumbai,1262225132 +32298,63082,nonlinear,1319078848 +32298,63082,orphans,1319078836 +32298,63082,Oscar (Best Directing),1240891028 +32298,63082,Oscar (Best Editing),1235492802 +32298,63082,Oscar (Best Music - Original Score),1244936207 +32298,63082,Oscar (Best Music - Original Song),1240891037 +32298,63082,Oscar (Best Picture),1244936221 +32298,63082,Oscar (Best Sound),1235492813 +32298,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1244936224 +32298,63082,poverty,1305973553 +32298,63082,rags to riches,1262225045 +32298,63082,television,1246576036 +32298,63082,torture,1319078857 +32298,63082,watch the credits,1319078900 +32298,63113,assassin,1310544178 +32298,63113,big budget,1391750071 +32298,63113,espionage,1310544181 +32298,63113,James Bond,1245576999 +32298,63113,revenge,1245577001 +32298,63131,bad parents,1319182078 +32298,63131,geeks,1317368698 +32298,63131,nudity (topless),1400282987 +32298,63134,trains,1291666173 +32298,63179,Japan,1245054140 +32298,63179,Tokyo,1245054140 +32298,63189,16th century,1246587624 +32298,63189,siblings,1246587636 +32298,63239,fairy tale,1246758070 +32298,63433,aliens,1227103871 +32298,63433,made for TV,1248256315 +32298,63433,space,1227103871 +32298,63433,wormhole,1395089157 +32298,63436,serial killer,1339999846 +32298,63436,torture,1339999849 +32298,63446,Christmas,1227554455 +32298,63479,male nudity,1349012770 +32298,63479,nudity (full frontal),1400285771 +32298,63479,rednecks,1334451354 +32298,63479,road trip,1233753240 +32298,63540,dogs,1281076914 +32298,63540,imdb bottom 100,1228209953 +32298,63540,talking animals,1281076923 +32298,63629,based on a play,1248717151 +32298,63647,martial arts,1248489557 +32298,63853,Australia,1227898761 +32298,63853,World War II,1227899033 +32298,63859,dogs,1383485462 +32298,63859,talking animals,1311542247 +32298,63876,biography,1227897675 +32298,63876,gay,1255254200 +32298,63876,history,1240890663 +32298,63876,homophobia,1255254217 +32298,63876,Oscar (Best Actor),1235492616 +32298,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1235493042 +32298,63876,politics,1227897674 +32298,63876,San Francisco,1240890672 +32298,63992,based on a book,1285320853 +32298,63992,easily confused with other movie(s) (title),1386210902 +32298,63992,high school,1247042923 +32298,63992,teen,1247042949 +32298,63992,vampires,1247042928 +32298,64034,based on a book,1232846689 +32298,64034,BBC Films,1244499228 +32298,64034,Holocaust,1249098808 +32298,64034,Nazis,1244670107 +32298,64034,World War II,1232846689 +32298,64037,FBI,1250560098 +32298,64037,serial killer,1250560099 +32298,64114,Christianity,1244671655 +32298,64114,firefighters,1235797193 +32298,64114,religion,1244671651 +32298,64167,dinosaurs,1234740630 +32298,64167,island,1234740631 +32298,64167,made for TV,1248256945 +32298,64197,Ireland,1238042354 +32298,64197,prison,1238042354 +32298,64197,true story,1238042376 +32298,64229,blues,1255169868 +32298,64229,history,1242496386 +32298,64229,musicians,1379408736 +32298,64236,nudity (topless),1400279619 +32298,64278,movie business,1429349919 +32298,64285,claymation,1231322798 +32298,64497,aliens,1245577101 +32298,64497,first contact,1245577105 +32298,64497,remake,1233918914 +32298,64499,Cuba,1281427685 +32298,64499,Latin America,1281427685 +32298,64501,Cuba,1281427707 +32298,64501,Latin America,1281427707 +32298,64522,business,1392609015 +32298,64522,Rod Serling,1233549365 +32298,64522,short,1392616354 +32298,64575,1960s,1407449020 +32298,64575,based on a play,1231322043 +32298,64575,Catholicism,1407448375 +32298,64575,child abuse,1407448941 +32298,64575,Christianity,1407448373 +32298,64575,great acting,1407448437 +32298,64575,nuns,1407448381 +32298,64575,private school,1407448413 +32298,64575,queer,1407448955 +32298,64575,religion,1407448371 +32298,64614,racism,1249536901 +32298,64620,based on a play,1244690842 +32298,64620,Broadway,1405574166 +32298,64620,history,1240890138 +32298,64620,journalism,1240890140 +32298,64620,politics,1259548461 +32298,64620,Richard Nixon,1260071784 +32298,64620,television,1230771023 +32298,64620,US President,1246485452 +32298,64622,nudity (full frontal),1400284764 +32298,64622,Oscar (Best Actress),1235492652 +32298,64650,May-December romance,1260587010 +32298,64704,unsimulated sex,1400289496 +32298,64839,aging,1253431995 +32298,64839,nudity (topless),1400283532 +32298,64839,sports,1231199687 +32298,64839,strippers,1243817548 +32298,64903,Nazis,1348051610 +32298,64903,propaganda,1348051615 +32298,64903,World War II,1348051604 +32298,64906,propaganda,1297542431 +32298,64906,World War II,1297542425 +32298,64926,propaganda,1387299439 +32298,64926,World War II,1387299439 +32298,64957,aging,1247582038 +32298,64957,based on a book,1369992349 +32298,64957,biography,1252947840 +32298,64957,F. Scott Fitzgerald,1363166978 +32298,64957,long,1255919679 +32298,64957,Oscar (Best Effects - Visual Effects),1235492862 +32298,64959,military,1230261399 +32298,64959,propaganda,1387299436 +32298,64959,World War II,1387299436 +32298,64976,nudity (topless),1400278657 +32298,64983,Adolf Hitler,1245051048 +32298,64983,assassin,1230545290 +32298,64983,Germany,1230545290 +32298,64983,history,1230362188 +32298,64983,Nazis,1230545289 +32298,64983,true story,1230545289 +32298,64983,World War II,1230545290 +32298,64993,anime,1249009686 +32298,64997,aliens,1383402828 +32298,64997,based on a book,1383402828 +32298,64997,easily confused with other movie(s) (title),1362893125 +32298,64997,H.G. Wells,1383402828 +32298,64997,nudity (topless),1401885458 +32298,65006,nudity (topless),1400563522 +32298,65063,sports,1284183835 +32298,65088,imagination,1249545821 +32298,65126,addiction,1370336323 +32298,65126,based on a book,1246446382 +32298,65126,black comedy,1370336825 +32298,65126,Chuck Palahniuk,1370336248 +32298,65126,mental illness,1370336243 +32298,65126,nudity (topless),1400282137 +32298,65130,1950s,1249079376 +32298,65130,based on a book,1334904017 +32298,65130,nudity (topless),1400282526 +32298,65133,history,1316146903 +32298,65133,short,1317106850 +32298,65133,time travel,1316146903 +32298,65135,Christmas,1232095725 +32298,65155,nudity (topless),1407209329 +32298,65155,surfing,1231852059 +32298,65181,dysfunctional family,1257827464 +32298,65181,kidnapping,1257729271 +32298,65216,Nazis,1231320971 +32298,65216,World War II,1231320971 +32298,65230,dogs,1245710840 +32298,65261,anime,1251110741 +32298,65290,business,1245538326 +32298,65290,Iraq,1245538326 +32298,65290,Iraq War,1231472908 +32298,65290,Middle East,1245538557 +32298,65290,military,1231472909 +32298,65357,Alfred P. Sloan Feature Film Prize,1240890258 +32298,65357,desert,1240890261 +32298,65357,nudity (full frontal),1400284776 +32298,65359,based on a book,1248257435 +32298,65359,made for TV,1248257440 +32298,65359,Ursula K. Le Guin,1322523326 +32298,65418,dogs,1383485528 +32298,65514,biography,1252571317 +32298,65514,China,1297913872 +32298,65514,martial arts,1245231586 +32298,65521,werewolves,1246445794 +32298,65552,cloning,1233232240 +32298,65562,Caribbean,1246392254 +32298,65562,Cuba,1246392218 +32298,65562,Latin America,1248165800 +32298,65562,latin music,1255664040 +32298,65562,musicians,1379410102 +32298,65564,China,1246772355 +32298,65564,civilians at war,1246772357 +32298,65564,free to download,1246666798 +32298,65564,history,1246666803 +32298,65564,Japan,1246772373 +32298,65564,massacre,1246772361 +32298,65564,military,1246666780 +32298,65564,propaganda,1246666786 +32298,65564,World War II,1246666783 +32298,65577,based on a book,1246583226 +32298,65601,nudity (full frontal),1400416440 +32298,65612,easily confused with other movie(s) (title),1320293975 +32298,65612,nudity (topless),1400280783 +32298,65642,complicated,1381598681 +32298,65642,directorial debut,1274356623 +32298,65642,grim,1381598700 +32298,65642,nudity (topless),1400282001 +32298,65642,time travel,1380700464 +32298,65665,based on a play,1387278160 +32298,65665,Shakespeare,1387278160 +32298,65667,punk rock,1232916159 +32298,65667,rock and roll,1232916159 +32298,65682,franchise,1349949446 +32298,65682,nocturnal,1349949433 +32298,65682,slavery,1349949456 +32298,65682,torture,1349949457 +32298,65682,vampires,1266458030 +32298,65682,werewolves,1266458039 +32298,65685,based on a book,1300949087 +32298,65685,books,1341627472 +32298,65702,propaganda,1387299426 +32298,65702,World War II,1387299426 +32298,65709,movie business,1300576171 +32298,65731,nudity (topless),1400279728 +32298,65738,college,1233232214 +32298,65738,franchise,1233232214 +32298,65740,franchise,1233232185 +32298,65770,addiction,1246566862 +32298,65770,Christianity,1246566862 +32298,65770,drugs,1246566862 +32298,65770,gay,1255254177 +32298,65770,homophobia,1246566862 +32298,65770,queer,1255254181 +32298,65770,religion,1246566862 +32298,65780,based on a book,1245635502 +32298,65780,not on DVD,1245628975 +32298,65780,Rod Serling,1245628975 +32298,65780,US President,1245628975 +32298,65796,not on DVD,1245626687 +32298,65796,space,1245626681 +32298,65810,biography,1318330745 +32298,65810,hip hop,1233463054 +32298,65810,musicians,1402699420 +32298,65810,nude black women,1400280296 +32298,65810,nudity (topless),1400280199 +32298,65810,true story,1318330745 +32298,65810,vocalists,1402699420 +32298,65817,boat,1250052052 +32298,65817,nudity (full frontal),1400285667 +32298,65817,ocean,1235639448 +32298,65866,not on DVD,1245625810 +32298,65878,19th century,1307767609 +32298,65878,nudity (topless),1399713867 +32298,65882,ghosts,1303360024 +32298,65882,remake,1303359928 +32298,65899,made for TV,1248256970 +32298,65899,time loop,1246190574 +32298,65899,time travel,1238370394 +32298,65927,trains,1233654469 +32298,65974,not available from Netflix,1246448483 +32298,65982,space,1246576090 +32298,66068,courtroom,1363231945 +32298,66068,true story,1363231945 +32298,66092,business,1240891208 +32298,66092,computers,1240891212 +32298,66092,hackers,1240891216 +32298,66092,history,1240891219 +32298,66092,made for TV,1264733546 +32298,66092,PBS,1240891223 +32298,66097,alternate reality,1317279461 +32298,66097,based on a book,1317279474 +32298,66097,claymation,1245734454 +32298,66097,fairy tale,1317279487 +32298,66097,Neil Gaiman,1245734451 +32298,66097,surreal,1317279445 +32298,66097,talking animals,1317279574 +32298,66097,whimsical,1317279453 +32298,66118,history,1234423321 +32298,66118,politics,1234423321 +32298,66130,martial arts,1249049947 +32298,66130,Thailand,1249049951 +32298,66198,banks,1234740329 +32298,66198,business is the antagonist,1394989380 +32298,66234,Iceland,1244462225 +32298,66289,nudity (full frontal),1400299370 +32298,66289,unsimulated sex,1400299370 +32298,66297,based on a TV show,1248258644 +32298,66297,made for TV,1248258644 +32298,66317,based on a book,1262765039 +32298,66317,comet,1262765068 +32298,66320,climate change,1258971153 +32298,66320,environmental,1258971153 +32298,66320,nature,1258971153 +32298,66354,Andrew Lloyd Webber,1246345580 +32298,66354,based on a book,1235224232 +32298,66354,Biblical,1235224232 +32298,66354,Christianity,1235224232 +32298,66354,Jesus Christ,1246345578 +32298,66354,religion,1235224231 +32298,66354,remake,1245401993 +32298,66385,Iraq War,1248235161 +32298,66385,made for TV,1297631686 +32298,66385,military,1249009318 +32298,66385,true story,1297631686 +32298,66509,long,1255919646 +32298,66509,stand-up comedy,1249337239 +32298,66553,lesbian,1246587665 +32298,66581,nudity (topless),1414553545 +32298,66596,crude humor,1360925946 +32298,66596,nudity (topless),1400279942 +32298,66639,video game adaptation,1246574672 +32298,66665,pregnancy,1246982789 +32298,66665,road trip,1246046818 +32298,66783,nudity (topless),1400280918 +32298,66785,China,1269162068 +32298,66785,desert,1269162068 +32298,66785,trains,1269162068 +32298,66934,anti-hero,1387281404 +32298,66934,low budget,1329609070 +32298,66934,mad scientist,1246393209 +32298,66934,short,1246979255 +32298,67009,high school,1237617693 +32298,67009,politics,1237617692 +32298,67087,friendship,1315985665 +32298,67087,watch the credits,1318901674 +32298,67087,wedding,1315985621 +32298,67138,heist,1346987078 +32298,67138,police,1346987078 +32298,67138,small town,1346987078 +32298,67186,ghosts,1245576867 +32298,67186,haunted house,1245576864 +32298,67197,bad science,1253786908 +32298,67223,baseball,1245414594 +32298,67223,sports,1245414594 +32298,67255,based on a book,1251952735 +32298,67255,computers,1251952710 +32298,67255,hackers,1251952701 +32298,67295,earnest,1370245448 +32298,67295,short,1328053150 +32298,67356,nudity (topless),1403933583 +32298,67408,aliens,1259879589 +32298,67408,Dreamworks,1385026469 +32298,67408,monster,1259879587 +32298,67420,nudity (topless),1400279129 +32298,67429,based on a book,1328860460 +32298,67429,overrated,1406713398 +32298,67457,nudity (topless),1415093206 +32298,67665,Canada,1244933902 +32298,67665,heavy metal,1246794572 +32298,67665,musicians,1379408680 +32298,67665,rock and roll,1239622407 +32298,67799,nudity (topless),1400280850 +32298,67801,nudity (topless),1401587785 +32298,67801,revenge,1401587785 +32298,67812,nudity (full frontal),1407226179 +32298,67869,comic strip,1246892907 +32298,67923,cars,1292745754 +32298,67923,franchise,1370159881 +32298,67923,watch the credits,1372930504 +32298,67997,based on a TV show,1247633446 +32298,67997,BBC Films,1244498974 +32298,67997,military,1392969149 +32298,67997,politics,1249050578 +32298,67997,satire,1249050577 +32298,67999,heavy metal,1246794636 +32298,67999,rock and roll,1244292077 +32298,68073,1960s,1333092704 +32298,68073,boat,1333092785 +32298,68073,ocean,1333092722 +32298,68073,pirate radio,1333092664 +32298,68073,radio,1333092665 +32298,68073,rock and roll,1333092668 +32298,68073,watch the credits,1333094591 +32298,68135,being a kid again,1246591821 +32298,68135,high school,1242241758 +32298,68157,Adolf Hitler,1317900840 +32298,68157,brutal,1317928114 +32298,68157,fire,1413519759 +32298,68157,France,1317928097 +32298,68157,IMDB Top 250,1255917985 +32298,68157,long,1384945291 +32298,68157,Nazis,1251174765 +32298,68157,overrated,1385915899 +32298,68157,Paris,1317928098 +32298,68157,revenge,1317900828 +32298,68157,torture,1317900863 +32298,68157,World War II,1251174765 +32298,68159,based on a TV show,1257827341 +32298,68159,business is the antagonist,1394987064 +32298,68159,corruption,1257827341 +32298,68159,journalism,1245576670 +32298,68159,politics,1257827341 +32298,68159,secrets,1257827341 +32298,68194,based on a book,1241004411 +32298,68194,BBC Films,1244498942 +32298,68194,soccer,1241004411 +32298,68194,sports,1241004411 +32298,68201,nudity (topless),1402936417 +32298,68205,fast paced,1406005116 +32298,68205,nudity (topless),1404722917 +32298,68205,sequel,1392436880 +32298,68205,watch the credits,1404723613 +32298,68237,artificial intelligence,1325587887 +32298,68237,Bechdel Test:Fail,1384676437 +32298,68237,cloning,1325587888 +32298,68237,directorial debut,1243545207 +32298,68237,moon,1241181068 +32298,68237,space,1241181068 +32298,68273,musicians,1379410450 +32298,68273,rock and roll,1345057265 +32298,68288,nudity (topless),1400279947 +32298,68319,comic book,1246578385 +32298,68319,franchise,1242242065 +32298,68319,Marvel,1253396566 +32298,68319,military,1344500780 +32298,68319,prequel,1242242077 +32298,68319,revenge,1344500782 +32298,68319,superhero,1282548415 +32298,68324,New York City,1241677404 +32298,68324,nonlinear,1257828214 +32298,68324,nudity (full frontal),1400285659 +32298,68324,prostitution,1241677396 +32298,68324,sex,1241677620 +32298,68347,Latin America,1400616544 +32298,68347,Mexico,1400616544 +32298,68347,nudity (topless),1413926166 +32298,68358,alternate reality,1245278487 +32298,68358,big budget,1244890318 +32298,68358,far future,1246127010 +32298,68358,fast paced,1245055737 +32298,68358,franchise,1306635498 +32298,68358,quick cuts,1244945320 +32298,68358,revenge,1315546315 +32298,68358,shaky camera,1346157500 +32298,68358,space,1241941518 +32298,68358,Star Trek,1241941509 +32298,68358,time travel,1243587761 +32298,68392,nudity (topless),1400279148 +32298,68472,dance,1379411404 +32298,68498,nudity (topless),1407218304 +32298,68522,nature,1243801164 +32298,68522,scenic,1244293534 +32298,68536,movie business,1242769998 +32298,68552,immigrants,1242243005 +32298,68552,nudity (topless),1400280434 +32298,68554,based on a book,1264414446 +32298,68554,Dan Brown,1264414445 +32298,68600,sports,1387430378 +32298,68600,tennis,1387430382 +32298,68612,corruption,1245500918 +32298,68612,gay,1255254504 +32298,68612,homophobia,1244935834 +32298,68612,hypocrisy,1245500924 +32298,68612,politics,1244935835 +32298,68612,queer,1255254504 +32298,68614,not on DVD,1245634491 +32298,68650,multiple storylines,1252992544 +32298,68650,nudity (topless),1400279851 +32298,68650,strippers,1271153845 +32298,68659,road trip,1242949690 +32298,68659,Star Wars,1344216104 +32298,68667,mockumentary,1243257201 +32298,68667,nudity (topless),1400279161 +32298,68667,reality TV,1243257201 +32298,68667,satire,1246452373 +32298,68685,adultery,1245237160 +32298,68685,love triangles,1245237156 +32298,68685,nudity (topless),1400279803 +32298,68791,artificial intelligence,1243137150 +32298,68791,big budget,1391750034 +32298,68791,franchise,1243137238 +32298,68791,post-apocalyptic,1245391586 +32298,68791,robots,1243137150 +32298,68791,sequel,1243137238 +32298,68793,Bechdel Test:Fail,1360222033 +32298,68793,history,1360222018 +32298,68793,monkey,1360222054 +32298,68793,museum,1243137330 +32298,68793,sequel,1243137340 +32298,68793,whimsical,1360222103 +32298,68835,gay,1255253389 +32298,68835,high school,1245556671 +32298,68835,Shakespeare,1245537300 +32298,68835,theater,1245537306 +32298,68838,Broadway,1249499954 +32298,68843,vampires,1259685800 +32298,68848,con artists,1321269171 +32298,68848,heist,1321269166 +32298,68848,narrated,1321269162 +32298,68848,orphans,1321269160 +32298,68848,siblings,1321269179 +32298,68858,Italy,1243257434 +32298,68858,nudity (full frontal),1400617101 +32298,68865,not on DVD,1245630946 +32298,68872,Italy,1245630521 +32298,68872,not on DVD,1245630520 +32298,68872,World War II,1245630520 +32298,68884,nudity (topless),1402211358 +32298,68899,not on DVD,1245630256 +32298,68932,mental illness,1244886750 +32298,68941,nudity (topless),1400692297 +32298,68941,rape,1259796481 +32298,68941,remake,1243543197 +32298,68943,angel,1245629877 +32298,68943,Krakow,1245629877 +32298,68943,Poland,1245629877 +32298,68954,Bechdel Test:Fail,1389987591 +32298,68954,dogs,1247799368 +32298,68954,Pixar,1243766008 +32298,68954,talking animals,1247799374 +32298,68959,anime,1245231037 +32298,68963,BBC Films,1244499152 +32298,68974,not on DVD,1245629623 +32298,69039,19th century,1246567979 +32298,69039,Louisiana,1246567688 +32298,69039,New Orleans,1246567688 +32298,69039,not available from Netflix,1246567667 +32298,69069,cheerleading,1293660422 +32298,69069,nudity (topless),1400280867 +32298,69075,not available from Netflix,1248306612 +32298,69075,not on DVD,1245629191 +32298,69093,made for TV,1248257789 +32298,69122,casino,1247120312 +32298,69122,drinking,1247120319 +32298,69122,drugs,1247120324 +32298,69122,hotel,1247120312 +32298,69122,Las Vegas,1306227354 +32298,69122,nudity (topless),1400283831 +32298,69122,one-liners,1386548988 +32298,69122,strippers,1306227356 +32298,69122,watch the credits,1332124468 +32298,69131,based on a book,1420191633 +32298,69131,Elmore Leonard,1420191633 +32298,69131,nudity (topless),1413924200 +32298,69134,based on a book,1245728873 +32298,69134,Biblical,1245728802 +32298,69134,Christianity,1245728820 +32298,69134,nudity (full frontal),1400285089 +32298,69134,religion,1245728812 +32298,69134,unsimulated sex,1400291039 +32298,69136,India,1245628615 +32298,69136,mistaken identity,1245628615 +32298,69140,18th century,1246313897 +32298,69140,based on a play,1245276202 +32298,69140,BBC produced,1245276290 +32298,69140,cannibalism,1245388276 +32298,69140,Christopher Bond,1246313500 +32298,69140,easily confused with other movie(s) (title),1260175217 +32298,69140,England,1245276211 +32298,69140,London,1245276211 +32298,69140,made for TV,1248256847 +32298,69140,serial killer,1245445403 +32298,69155,jazz,1248849819 +32298,69155,Kansas City,1248849819 +32298,69155,musicians,1379410430 +32298,69155,organized crime,1248849819 +32298,69155,Prohibition,1248849819 +32298,69159,nudity (topless),1406771166 +32298,69187,India,1254122551 +32298,69187,small town,1254122551 +32298,69201,not on DVD,1245628180 +32298,69203,not on DVD,1245628125 +32298,69222,not on DVD,1245627943 +32298,69227,not on DVD,1245627865 +32298,69231,Poland,1245627571 +32298,69243,colonialism,1244657891 +32298,69243,India,1244657882 +32298,69269,Australia,1244845710 +32298,69269,India,1244845710 +32298,69278,based on a TV show,1404301344 +32298,69278,dinosaurs,1244881017 +32298,69278,time travel,1244881017 +32298,69304,colorado,1245210095 +32298,69304,denver,1245210095 +32298,69304,imaginary friend,1245210977 +32298,69306,New York City,1245116255 +32298,69306,remake,1245116255 +32298,69306,subway,1245116241 +32298,69306,terrorism,1245116255 +32298,69306,trains,1245116241 +32298,69324,World War II,1382010824 +32298,69332,not available from Netflix,1247716943 +32298,69339,not available from Netflix,1247716787 +32298,69341,addiction,1246424608 +32298,69341,based on a book,1246424589 +32298,69341,double life,1246756360 +32298,69341,nudity (topless),1400278312 +32298,69341,Robert Louis Stevenson,1246424592 +32298,69341,serial killer,1246424608 +32298,69354,based on a book,1369992357 +32298,69354,England,1246424466 +32298,69354,Nazis,1246424462 +32298,69354,small town,1246424461 +32298,69354,World War II,1246424462 +32298,69358,corruption,1273096464 +32298,69358,drugs,1273096464 +32298,69358,lawyers,1273096464 +32298,69358,single parents,1273096528 +32298,69358,Texas,1273096528 +32298,69358,true story,1273096464 +32298,69358,wrongly accused,1273096464 +32298,69374,not on DVD,1245659402 +32298,69381,police,1246341552 +32298,69381,revenge,1246341552 +32298,69381,undercover cop,1246341552 +32298,69387,based on a book,1246341719 +32298,69387,not on DVD,1246341711 +32298,69394,based on a book,1249048497 +32298,69394,brutal,1249052345 +32298,69394,Iran,1249037916 +32298,69394,Islam,1249048911 +32298,69394,journalism,1249048497 +32298,69394,Middle East,1249037916 +32298,69394,religion,1249048911 +32298,69394,small town,1249048497 +32298,69394,true story,1249048497 +32298,69394,wrongly accused,1249048497 +32298,69406,immigrants,1245537074 +32298,69436,Middle East,1385964215 +32298,69442,not on DVD,1245709987 +32298,69444,not available from Netflix,1248306736 +32298,69444,not on DVD,1245710078 +32298,69446,not available from Netflix,1248306684 +32298,69446,not on DVD,1245710154 +32298,69451,not on DVD,1245743725 +32298,69453,based on a book,1245743881 +32298,69453,dinosaurs,1245743878 +32298,69453,Edgar Rice Burroughs,1245743896 +32298,69453,submarine,1245743885 +32298,69458,boxing,1245808411 +32298,69458,sports,1245808411 +32298,69460,1960s,1245813776 +32298,69460,election,1245813787 +32298,69460,history,1245813782 +32298,69460,John F. Kennedy,1245813769 +32298,69460,politics,1245813776 +32298,69464,not on DVD,1245808702 +32298,69469,made for TV,1248258181 +32298,69481,bombs,1248645681 +32298,69481,Iraq,1245904780 +32298,69481,Iraq War,1246747726 +32298,69481,Middle East,1246747726 +32298,69481,military,1266792254 +32298,69483,death penalty,1245904867 +32298,69483,not on DVD,1245904906 +32298,69485,aviation,1245905010 +32298,69485,not available from Netflix,1248306782 +32298,69485,not on DVD,1245905015 +32298,69487,based on a play,1245905272 +32298,69487,prostitution,1245905055 +32298,69489,World War II,1245905182 +32298,69495,based on a book,1246044957 +32298,69495,gay,1255253919 +32298,69495,queer,1255253919 +32298,69498,1900s,1246045078 +32298,69498,Austria,1246045078 +32298,69498,Vienna,1246045078 +32298,69500,not available from Netflix,1248306899 +32298,69500,not on DVD,1246045153 +32298,69503,not on DVD,1246045233 +32298,69506,nudity (topless),1400278509 +32298,69516,nudity (topless),1400280178 +32298,69518,1930s,1246045785 +32298,69518,Germany,1246045785 +32298,69518,movie business,1246092912 +32298,69518,Munich,1246045785 +32298,69518,pornography,1246045785 +32298,69521,civilians at war,1246794329 +32298,69521,heavy metal,1246794383 +32298,69521,Iraq,1246085292 +32298,69521,Iraq War,1246085305 +32298,69521,Middle East,1246747693 +32298,69521,military,1246085302 +32298,69521,rock and roll,1246794365 +32298,69524,made for TV,1248257860 +32298,69524,not on DVD,1246085584 +32298,69526,based on a TV show,1246086119 +32298,69526,big budget,1391749968 +32298,69526,comic book,1246580288 +32298,69526,Egypt,1349421230 +32298,69526,franchise,1246086119 +32298,69526,military,1349421247 +32298,69526,robots,1246086119 +32298,69529,environmental,1246085771 +32298,69529,nature,1246085770 +32298,69529,scenic,1246085773 +32298,69542,based on a play,1249332724 +32298,69542,mountain climbing,1249332643 +32298,69542,mountains,1249332649 +32298,69542,nature,1249332724 +32298,69559,not available from Netflix,1249048577 +32298,69559,not on DVD,1249048640 +32298,69565,Africa,1344756284 +32298,69565,civil car,1344756284 +32298,69565,hip hop,1344756284 +32298,69565,Sierra Leone,1344756284 +32298,69569,Cold War,1248717081 +32298,69569,military,1248717081 +32298,69574,elementary school,1246567219 +32298,69604,board game,1246691301 +32298,69604,chess,1246691301 +32298,69604,May-December romance,1255334834 +32298,69604,New York City,1246691211 +32298,69604,runaway,1246691198 +32298,69609,Cambodia,1248716844 +32298,69609,prostitution,1248716844 +32298,69611,police,1246741200 +32298,69626,biography,1246741078 +32298,69626,stage magic,1259734594 +32298,69640,1930s,1246775211 +32298,69640,bank robbery,1246942700 +32298,69640,based on a book,1246775211 +32298,69640,gangsters,1246775212 +32298,69640,Great Depression,1246932132 +32298,69640,true story,1246775211 +32298,69644,dinosaurs,1246978641 +32298,69644,franchise,1326375037 +32298,69644,talking animals,1246978641 +32298,69654,made for TV,1248257677 +32298,69654,prison,1248257677 +32298,69654,prison escape,1248257677 +32298,69666,Australia,1250127077 +32298,69674,Mafia,1248079568 +32298,69674,not available from Netflix,1248079657 +32298,69674,organized crime,1248079568 +32298,69674,police,1248079568 +32298,69674,undercover cop,1248079568 +32298,69677,adultery,1247050331 +32298,69677,based on a book,1247050331 +32298,69677,divorce,1247050335 +32298,69677,lawyers,1247050331 +32298,69685,2D animation,1262765117 +32298,69685,based on a TV show,1247052096 +32298,69685,high school,1247052096 +32298,69685,made for TV,1250206227 +32298,69685,MTV,1247052098 +32298,69685,sarcasm,1247052105 +32298,69685,teen,1247052100 +32298,69687,not available from Netflix,1247052259 +32298,69687,not on DVD,1247052259 +32298,69689,island,1247052347 +32298,69689,not available from Netflix,1247052436 +32298,69689,not on DVD,1247052436 +32298,69689,shipwreck,1247052347 +32298,69689,slavery,1247052347 +32298,69689,utopia,1247052347 +32298,69699,not available from Netflix,1247052540 +32298,69701,based on a book,1247052622 +32298,69701,not available from Netflix,1247052639 +32298,69701,not on DVD,1247052639 +32298,69704,remake,1247052699 +32298,69704,zombies,1247052699 +32298,69706,corruption,1247052785 +32298,69706,courtroom,1247052799 +32298,69706,prison,1247052769 +32298,69706,wrongly accused,1247052785 +32298,69708,business,1247052850 +32298,69708,musicians,1379410001 +32298,69712,based on a book,1247052908 +32298,69712,courtroom,1247052908 +32298,69712,lawyers,1247052908 +32298,69712,teen,1247052908 +32298,69714,Bollywood,1247053013 +32298,69720,nudity (topless),1403441141 +32298,69729,based on a book,1247097303 +32298,69729,Jane Austen,1247097303 +32298,69732,anime,1247097582 +32298,69744,con artists,1247183307 +32298,69744,not available from Netflix,1247183330 +32298,69744,not on DVD,1247183330 +32298,69746,comic book,1247183487 +32298,69746,made for TV,1248257708 +32298,69748,based on a TV show,1247183644 +32298,69748,not available from Netflix,1247183626 +32298,69757,IMDB Top 250,1255917973 +32298,69761,not available from Netflix,1247280334 +32298,69766,not available from Netflix,1247280604 +32298,69768,based on a book,1247280640 +32298,69771,based on a play,1247280687 +32298,69771,World War I,1247280687 +32298,69773,writers,1247280747 +32298,69784,gay,1255254324 +32298,69784,male nudity,1412322524 +32298,69784,mockumentary,1247584356 +32298,69784,nudity (full frontal),1400285593 +32298,69784,queer,1412322491 +32298,69784,satire,1273271050 +32298,69784,short,1412268222 +32298,69784,tasteless,1412322339 +32298,69786,movie business,1312426898 +32298,69786,musicians,1379410134 +32298,69788,movie business,1318141250 +32298,69803,not available from Netflix,1248079899 +32298,69805,kidnapping,1247887758 +32298,69805,made for TV,1248257916 +32298,69805,vampires,1247887758 +32298,69818,multiple storylines,1247744369 +32298,69818,suicide,1419172295 +32298,69818,vigilante,1247744369 +32298,69821,nudity (topless),1400303277 +32298,69830,heavy metal,1248079498 +32298,69830,musicians,1379410715 +32298,69830,rock and roll,1248079498 +32298,69844,based on a book,1247800328 +32298,69844,big budget,1302107879 +32298,69844,boarding school,1247910514 +32298,69844,franchise,1247800358 +32298,69844,Harry Potter,1344404485 +32298,69844,magic,1247910514 +32298,69849,American Civil War,1248147971 +32298,69849,based on a book,1248079434 +32298,69849,civil war,1248147971 +32298,69849,history,1248079434 +32298,69849,made for TV,1248256977 +32298,69849,racism,1271835390 +32298,69849,slavery,1298032248 +32298,69860,nudity (topless),1417144588 +32298,69864,boxing,1344756341 +32298,69864,college,1344756340 +32298,69864,sports,1344756341 +32298,69904,ocean,1248080370 +32298,69906,Catholicism,1248080482 +32298,69906,Christianity,1248080482 +32298,69906,exorcism,1248080482 +32298,69906,religion,1248080482 +32298,69908,not available from Netflix,1248080683 +32298,69908,not on DVD,1248080683 +32298,69911,not available from Netflix,1248089787 +32298,69917,hockey,1248090041 +32298,69917,sequel,1248090041 +32298,69917,sports,1248090041 +32298,69919,corruption,1248090278 +32298,69919,Iraq,1248090278 +32298,69919,Iraq War,1248090278 +32298,69919,military,1248090278 +32298,69919,torture,1248090278 +32298,69926,not available from Netflix,1248253805 +32298,69928,based on a TV show,1402484903 +32298,69928,franchise,1350115639 +32298,69928,made for TV,1254911471 +32298,69928,not available from Netflix,1248253927 +32298,69928,not on DVD,1248253927 +32298,69928,puppets,1350115638 +32298,69928,talking animals,1350115638 +32298,69931,mountains,1248254127 +32298,69934,remake,1248254183 +32298,69945,car chase,1248254393 +32298,69945,cars,1248254393 +32298,69945,easily confused with other movie(s) (title),1370159897 +32298,69945,fugitive,1248254393 +32298,69945,hostage,1248254393 +32298,69945,wrongly accused,1248254393 +32298,69947,martial arts,1248254440 +32298,69947,revenge,1248254440 +32298,69949,not available from Netflix,1248305141 +32298,69951,alternate reality,1320991412 +32298,69951,deal with the devil,1248305225 +32298,69951,immortality,1320991380 +32298,69951,surreal,1320991409 +32298,69953,movie business,1248305652 +32298,69953,pornography,1248305652 +32298,69964,military,1248337489 +32298,69971,19th century,1248398818 +32298,69971,biography,1248398818 +32298,69971,classical music,1248398818 +32298,69971,gay,1255254251 +32298,69971,insanity,1248398855 +32298,69971,queer,1255254254 +32298,69971,royalty,1248398818 +32298,69974,serial killer,1248399051 +32298,69974,small town,1248399051 +32298,69979,not available from Netflix,1248490671 +32298,69981,prostitution,1248490783 +32298,69981,true story,1248490783 +32298,69986,not available from Netflix,1248491104 +32298,69986,not on DVD,1248491104 +32298,69988,movie business,1253562019 +32298,69988,pornography,1248507085 +32298,69988,sex,1253562019 +32298,69992,nudity (topless),1400279595 +32298,69995,dysfunctional family,1269162234 +32298,69995,Tokyo,1269162254 +32298,70015,1980s,1259624941 +32298,70015,Canada,1259624941 +32298,70015,college,1259624941 +32298,70015,massacre,1259624941 +32298,70015,Montreal,1259624965 +32298,70015,Quebec,1259624941 +32298,70015,sexism,1259624941 +32298,70015,true story,1259624941 +32298,70032,black comedy,1249047875 +32298,70032,directorial debut,1249047875 +32298,70032,epidemic,1249047875 +32298,70046,painter,1249047675 +32298,70046,serial killer,1249047675 +32298,70046,vampires,1249047674 +32298,70048,stand-up comedy,1249043141 +32298,70050,based on a book,1249499605 +32298,70050,Brat Pack,1249499605 +32298,70050,corruption,1249499603 +32298,70050,Florida,1249499621 +32298,70050,small town,1249499621 +32298,70062,nudity (full frontal),1407102328 +32298,70064,corruption,1249499510 +32298,70064,Louisiana,1249499515 +32298,70064,New Orleans,1249499510 +32298,70064,police,1249499515 +32298,70064,police corruption,1249499510 +32298,70093,based on a book,1249966717 +32298,70093,France,1249966717 +32298,70118,Native Americans,1249500270 +32298,70118,wrongly accused,1249500274 +32298,70121,based on a book,1369992524 +32298,70126,rock and roll,1249500604 +32298,70130,nudity (full frontal),1400284892 +32298,70133,writers,1249500884 +32298,70159,orphans,1249500978 +32298,70175,nudity (topless),1402949819 +32298,70186,Germany,1387275323 +32298,70186,history,1387275323 +32298,70186,made for TV,1387275323 +32298,70186,small town,1387275323 +32298,70197,Middle East,1249966883 +32298,70206,nudity (topless),1400279846 +32298,70208,Hawaii,1249966839 +32298,70227,nudity (topless),1420326668 +32298,70235,nudity (topless),1400565670 +32298,70237,astronauts,1249795794 +32298,70237,history,1249795794 +32298,70237,made for TV,1249795794 +32298,70237,NASA,1249795794 +32298,70237,space,1249795794 +32298,70237,true story,1249795794 +32298,70282,aliens,1249966504 +32298,70286,aliens,1249966621 +32298,70286,apartheid,1387461485 +32298,70286,directorial debut,1321349913 +32298,70286,genetics,1251199051 +32298,70286,heartbreaking,1321349985 +32298,70286,IMDB Top 250,1251198996 +32298,70286,intelligent,1387461482 +32298,70286,mockumentary,1321349910 +32298,70286,satire,1321349919 +32298,70286,segregation,1251199047 +32298,70293,based on a book,1250025693 +32298,70293,biography,1250025693 +32298,70293,food,1250025693 +32298,70305,aliens,1250025564 +32298,70305,based on a book,1250025564 +32298,70318,nudity (topless),1401960075 +32298,70334,based on a TV show,1250421627 +32298,70334,Disney,1250421627 +32298,70334,small town,1250421626 +32298,70334,Tennessee,1250421627 +32298,70342,biography,1250559761 +32298,70342,painter,1250559761 +32298,70342,true story,1250559761 +32298,70361,kidnapping,1250204469 +32298,70418,biography,1257564581 +32298,70418,drugs,1257564363 +32298,70418,made for TV,1257564539 +32298,70418,movie business,1257564579 +32298,70418,musicians,1379410908 +32298,70418,nude black women,1257564566 +32298,70418,racism,1257564576 +32298,70418,segregation,1257564575 +32298,70418,true story,1257564574 +32298,70418,vocalists,1257564690 +32298,70451,true story,1260101771 +32298,70451,World War II,1260101771 +32298,70465,Africa,1255393541 +32298,70465,Johannesburg,1255393542 +32298,70465,South Africa,1255393541 +32298,70488,aviation,1250559986 +32298,70488,jungle,1250559986 +32298,70488,Latin America,1250559986 +32298,70488,made for TV,1250561230 +32298,70488,Peru,1250559986 +32298,70488,South America,1250559986 +32298,70497,1950s,1310248503 +32298,70497,heist,1250561200 +32298,70497,Scotland,1250561205 +32298,70497,true story,1250561200 +32298,70500,Oklahoma,1250659689 +32298,70521,Jane Austen,1250641623 +32298,70521,made for TV,1250641623 +32298,70545,movie business,1250768800 +32298,70559,assassin,1250825508 +32298,70559,Latin America,1250825508 +32298,70559,Mexico,1250825508 +32298,70562,food,1250825591 +32298,70562,Japan,1250825591 +32298,70562,Tokyo,1250825591 +32298,70567,Alfred P. Sloan Feature Film Prize,1343605750 +32298,70567,mental illness,1250825843 +32298,70567,New York City,1250825843 +32298,70587,aliens,1250905931 +32298,70599,based on a book,1270845665 +32298,70599,time travel,1250905971 +32298,70607,nudity (topless),1400279588 +32298,70607,small town,1250906139 +32298,70629,nudity (topless),1400278901 +32298,70641,nude black women,1400615978 +32298,70641,nudity (topless),1400615978 +32298,70656,college,1251281463 +32298,70656,football,1251281463 +32298,70656,free to download,1289740823 +32298,70656,Hulu,1289740823 +32298,70656,sports,1289740823 +32298,70661,family gatherings,1251281640 +32298,70661,funeral,1251281640 +32298,70661,multiple roles,1251281640 +32298,70697,business is the antagonist,1394989572 +32298,70697,talking animals,1251579556 +32298,70703,ocean,1251579923 +32298,70703,seafaring,1251579923 +32298,70708,nudity (topless),1403944940 +32298,70712,not available from Netflix,1251434750 +32298,70712,not on DVD,1251434811 +32298,70728,alter ego,1251579792 +32298,70728,mental illness,1251579792 +32298,70728,prison,1251579792 +32298,70730,hip hop,1251505470 +32298,70730,IMDB bottom 100,1251505470 +32298,70751,made for TV,1344416131 +32298,70751,musicians,1379410763 +32298,70751,rock and roll,1344416131 +32298,70751,vocalists,1344416174 +32298,70797,trains,1251716705 +32298,70800,made for TV,1251716792 +32298,70817,nudity (topless),1400299553 +32298,70824,made for TV,1251831279 +32298,70824,nudity (topless),1418863771 +32298,70824,sequel,1251831261 +32298,70824,serial killer,1251831261 +32298,70828,astronomy,1251831087 +32298,70828,made for TV,1251831087 +32298,70828,science,1251831088 +32298,70828,space,1251831087 +32298,70831,history,1251830994 +32298,70831,made for TV,1251831011 +32298,70831,natural disaster,1251830995 +32298,70831,nature,1251830995 +32298,70831,true story,1251830995 +32298,70831,volcano,1251830995 +32298,70839,based on a book,1251919577 +32298,70839,made for TV,1251919575 +32298,70843,based on a book,1251919589 +32298,70843,made for TV,1251919620 +32298,70862,rock and roll,1251997005 +32298,70867,based on a book,1251997093 +32298,70869,based on a book,1252311018 +32298,70869,made for TV,1251997148 +32298,70877,18th century,1251997198 +32298,70877,based on a book,1251997198 +32298,70887,made for TV,1252102648 +32298,70889,nudity (topless),1413911798 +32298,70891,based on a book,1252311032 +32298,70891,made for TV,1252102710 +32298,70932,Greece,1252534416 +32298,70946,cult film,1278655865 +32298,70946,IMDB bottom 100,1257242030 +32298,70946,sequel,1257242030 +32298,70968,based on a book,1252948350 +32298,70968,dogs,1252948195 +32298,70968,writers,1252948195 +32298,70984,1960s,1252534299 +32298,70984,based on a book,1252534299 +32298,70984,rock and roll,1252534299 +32298,70988,based on a book,1257241876 +32298,70988,biography,1257241876 +32298,70988,movie business,1257241876 +32298,70988,nudity (topless),1400215250 +32298,70990,nudity (topless),1402872878 +32298,70994,sequel,1252618000 +32298,71007,bad science,1369711966 +32298,71007,made for TV,1279109315 +32298,71029,Italy,1348569111 +32298,71029,politics,1348569112 +32298,71029,television,1348569113 +32298,71033,Argentina,1379413840 +32298,71033,based on a book,1268384038 +32298,71033,Latin America,1379413868 +32298,71033,South America,1379413860 +32298,71033,writers,1274919372 +32298,71057,bad ending,1393371680 +32298,71057,creepy,1393371698 +32298,71057,dystopia,1393371711 +32298,71057,post-apocalyptic,1252948056 +32298,71057,robots,1393371702 +32298,71057,whimsical,1393371964 +32298,71096,nudity (topless),1400278396 +32298,71106,bad ending,1387125595 +32298,71106,nerds,1387125605 +32298,71106,time travel,1315545937 +32298,71106,watch the credits,1315546157 +32298,71108,black and white,1268990299 +32298,71108,small town,1252948493 +32298,71112,lesbian,1378364325 +32298,71112,nudity (topless),1400278497 +32298,71114,nudity (topless),1407103217 +32298,71129,comic book,1253038053 +32298,71129,DC Comics,1253038053 +32298,71129,made for TV,1253038053 +32298,71129,superhero,1253038053 +32298,71131,Christianity,1253037829 +32298,71131,gay,1255253008 +32298,71131,homophobia,1253037831 +32298,71131,Iraq War,1253037819 +32298,71131,Kansas,1253037836 +32298,71131,made for TV,1253037819 +32298,71131,military,1253037819 +32298,71131,religion,1253037828 +32298,71135,amnesia,1253038147 +32298,71135,evolution,1316682781 +32298,71135,insanity,1316682799 +32298,71135,intense,1389812060 +32298,71135,mental illness,1316682791 +32298,71135,post-apocalyptic,1317191485 +32298,71135,space,1253038147 +32298,71135,twist ending,1316682781 +32298,71152,based on a book,1253098501 +32298,71152,siblings,1253098501 +32298,71154,disaster,1253098826 +32298,71154,England,1253098845 +32298,71154,flood,1253098845 +32298,71154,London,1253098846 +32298,71154,natural disaster,1253098845 +32298,71154,weather,1253098869 +32298,71156,based on a book,1253167330 +32298,71156,military,1253167330 +32298,71158,immigrants,1253167375 +32298,71160,based on a book,1253167465 +32298,71160,Tolkien,1253270283 +32298,71184,biography,1253255813 +32298,71184,fashion,1253255812 +32298,71201,Colorado,1345789430 +32298,71201,Denver,1345789429 +32298,71205,high school,1320457871 +32298,71211,business,1253311439 +32298,71211,FBI,1253311439 +32298,71211,mental illness,1253311439 +32298,71211,suicide,1419172320 +32298,71211,true story,1253312056 +32298,71239,nudity (topless),1400279318 +32298,71246,immigrants,1253688898 +32298,71246,small town,1253688922 +32298,71248,adultery,1296213416 +32298,71252,franchise,1253688995 +32298,71254,alternate reality,1267487656 +32298,71254,nudity (topless),1409783220 +32298,71254,virtual reality,1267487614 +32298,71264,based on a book,1253688393 +32298,71264,food,1253688392 +32298,71264,inventor,1321082277 +32298,71268,imdb bottom 100,1253788117 +32298,71282,business,1253788200 +32298,71282,farming,1253788200 +32298,71282,food,1253788200 +32298,71285,disability,1256285019 +32298,71285,siblings,1256285019 +32298,71285,twins,1256285019 +32298,71304,vampires,1254123148 +32298,71318,aliens,1322907647 +32298,71327,19th century,1254123072 +32298,71327,England,1254123072 +32298,71327,London,1254123072 +32298,71327,poets,1254123094 +32298,71327,true story,1254123072 +32298,71327,writers,1254123072 +32298,71341,Nazis,1254123257 +32298,71341,revenge,1254123257 +32298,71357,nudity (full frontal),1400285034 +32298,71361,nudity (full frontal),1400284954 +32298,71361,siblings,1287221992 +32298,71372,franchise,1371006885 +32298,71372,nudity (topless),1400279263 +32298,71374,franchise,1371006892 +32298,71374,nudity (topless),1400279469 +32298,71379,found footage,1404920989 +32298,71379,low budget,1256510849 +32298,71390,1970s,1257241600 +32298,71390,Australia,1257241600 +32298,71390,movie business,1257241600 +32298,71418,Mississippi,1254122757 +32298,71418,single parents,1254122757 +32298,71418,suicide,1254122757 +32298,71450,business,1254326650 +32298,71450,economics,1383743342 +32298,71450,politics,1322806517 +32298,71462,animals,1260264925 +32298,71462,business,1260264926 +32298,71462,Japan,1260264926 +32298,71464,black comedy,1370159717 +32298,71464,Judaism,1384393637 +32298,71466,dysfunctional family,1315114491 +32298,71466,great soundtrack,1315114717 +32298,71466,secrets,1315114491 +32298,71466,sentimental,1315114477 +32298,71468,alternate reality,1306052492 +32298,71468,dreams,1306052471 +32298,71468,low budget,1315546439 +32298,71468,surreal,1306052494 +32298,71472,adultery,1254443284 +32298,71472,black and white,1254443284 +32298,71472,revenge,1254443284 +32298,71494,comic book,1254526147 +32298,71500,Halloween,1254625008 +32298,71500,made for TV,1254625008 +32298,71500,multiple storylines,1254625007 +32298,71500,serial killer,1268717847 +32298,71503,nudity (topless),1400279156 +32298,71518,Austin,1254858629 +32298,71518,based on a book,1411179238 +32298,71518,beauty pageant,1320464974 +32298,71518,directorial debut,1411179394 +32298,71518,friendship,1320464935 +32298,71518,heartwarming,1320465831 +32298,71518,inspirational,1320465831 +32298,71518,obscure sports,1411179287 +32298,71518,roller derby,1413913320 +32298,71518,small town,1324631361 +32298,71518,sports,1317951805 +32298,71518,tear jerker,1320465064 +32298,71518,teen,1320464935 +32298,71518,Texas,1320336553 +32298,71520,atheism,1335849401 +32298,71520,good concept,1335849396 +32298,71520,irreligion,1335849430 +32298,71520,irreverent,1335849435 +32298,71520,original,1395812783 +32298,71520,religion,1335849419 +32298,71520,underrated,1385389883 +32298,71522,Buddhism,1255325036 +32298,71530,androids,1254825589 +32298,71530,based on a comic,1408328752 +32298,71530,robots,1254825589 +32298,71535,directorial debut,1360055028 +32298,71535,guns,1348662191 +32298,71535,IMDB Top 250,1255917960 +32298,71535,overrated,1406713412 +32298,71535,post-apocalyptic,1348662162 +32298,71535,road trip,1348662165 +32298,71535,zombies,1254825459 +32298,71537,remake,1254825542 +32298,71542,business,1260247843 +32298,71542,fashion,1254825509 +32298,71550,nudity (topless),1400280091 +32298,71550,private school,1255257137 +32298,71571,college,1255324965 +32298,71571,nudity (topless),1400669913 +32298,71571,serial killer,1255324964 +32298,71573,Antarctica,1255064386 +32298,71573,polar,1368313361 +32298,71575,Mexico,1255064309 +32298,71575,Mexico City,1255064309 +32298,71575,siblings,1255064309 +32298,71575,soccer,1255064309 +32298,71575,sports,1255064309 +32298,71579,1960s,1255064175 +32298,71579,England,1255064175 +32298,71579,London,1255064175 +32298,71579,May-December romance,1255064175 +32298,71579,Nick Hornby,1402479074 +32298,71619,biography,1255257276 +32298,71619,fashion,1255257276 +32298,71619,France,1255257276 +32298,71634,19th century,1255983468 +32298,71634,biography,1255983573 +32298,71634,biology,1268440922 +32298,71634,black and white,1255983468 +32298,71634,earnest,1268440835 +32298,71634,France,1255983467 +32298,71634,genius,1255983482 +32298,71634,history,1255983573 +32298,71634,inspirational,1255983480 +32298,71634,medicine,1277558242 +32298,71634,Oscar (Best Actor),1256149171 +32298,71634,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1256149273 +32298,71634,Oscar (Best Writing - Screenplay Written Directly for the Screen),1256149223 +32298,71634,science,1255983479 +32298,71634,true story,1255983573 +32298,71634,underrated,1406713746 +32298,71638,Beatles,1256437023 +32298,71668,island,1256272171 +32298,71675,Latin America,1255393410 +32298,71675,South America,1255393409 +32298,71675,Uruguay,1255393411 +32298,71688,India,1255451544 +32298,71700,asylum,1255476472 +32298,71707,made for TV,1255569919 +32298,71728,queer,1382135883 +32298,71728,short,1382135883 +32298,71730,biography,1255632647 +32298,71736,nudity (topless),1407213660 +32298,71736,painter,1256057272 +32298,71745,based on a book,1255663540 +32298,71745,monster,1255663540 +32298,71745,whimsical,1396498643 +32298,71765,heavy metal,1255917340 +32298,71765,musicians,1379410475 +32298,71765,rock and roll,1255917340 +32298,71817,business,1279134738 +32298,71823,New York City,1413908258 +32298,71838,revenge,1360480493 +32298,71838,vigilante,1360480479 +32298,71867,based on a book,1256549390 +32298,71876,aviation,1256285096 +32298,71876,biography,1256285096 +32298,71876,true story,1256285096 +32298,71902,nudity (topless),1400280079 +32298,71926,based on a book,1256549339 +32298,71926,single parents,1256549339 +32298,71928,Egypt,1256549309 +32298,71942,aviation,1256549158 +32298,71993,dragons,1394788618 +32298,72011,based on a book,1256840258 +32298,72013,bad parents,1256840395 +32298,72013,based on a book,1256840186 +32298,72013,Charles Dickens,1256840180 +32298,72013,made for TV,1256840180 +32298,72016,Chicago,1256840147 +32298,72016,history,1256840147 +32298,72016,made for TV,1256840147 +32298,72016,narrated,1256840147 +32298,72018,narrated,1256840057 +32298,72018,serial killer,1256840057 +32298,72041,revenge,1256994389 +32298,72043,aliens,1256994834 +32298,72043,made for TV,1256994834 +32298,72043,monster,1256994834 +32298,72043,sequel,1256994834 +32298,72094,biography,1257241399 +32298,72094,soccer,1257241399 +32298,72117,based on a book,1308469371 +32298,72117,Victor Hugo,1308469371 +32298,72129,franchise,1257564403 +32298,72129,serial killer,1306449398 +32298,72129,torture,1306449396 +32298,72142,long,1257340366 +32298,72165,vampires,1257384871 +32298,72167,sequel,1257384837 +32298,72167,vigilante,1378623754 +32298,72171,blaxploitation,1345966338 +32298,72171,guns,1345966368 +32298,72171,martial arts,1345966352 +32298,72171,nude black women,1400619265 +32298,72171,nudity (topless),1400281592 +32298,72171,parody,1345966351 +32298,72171,watch the credits,1345966491 +32298,72176,football,1257468858 +32298,72176,sports,1257468858 +32298,72209,robots,1257468899 +32298,72226,based on a book,1257564072 +32298,72226,Roald Dahl,1257564072 +32298,72226,talking animals,1257564072 +32298,72228,based on a book,1335426994 +32298,72228,biography,1335424427 +32298,72228,biology,1301645693 +32298,72228,Christianity,1335424426 +32298,72228,evolution,1301645687 +32298,72228,history,1335424450 +32298,72228,irreligion,1335424450 +32298,72228,religion,1335424424 +32298,72228,science,1301645689 +32298,72265,based on a book,1258770300 +32298,72294,based on a book,1257901845 +32298,72294,Charles Dickens,1257901845 +32298,72294,Christmas,1257901848 +32298,72308,far future,1257997309 +32298,72308,made for TV,1257997309 +32298,72308,space,1257997309 +32298,72321,made for TV,1257997161 +32298,72330,based on a book,1258087717 +32298,72332,black and white,1258088435 +32298,72332,free to download,1258484646 +32298,72332,narrated,1258088435 +32298,72332,short,1258088435 +32298,72332,surreal,1258484657 +32298,72356,Pixar,1293025552 +32298,72356,short,1293025558 +32298,72367,made for TV,1258174172 +32298,72367,true story,1258174173 +32298,72378,apocalypse,1318273413 +32298,72378,bad plot,1318273403 +32298,72378,big budget,1391749994 +32298,72378,superstition,1262500322 +32298,72386,blindness,1258533337 +32298,72386,disability,1258533337 +32298,72386,nudity (topless),1400281664 +32298,72395,acting debut,1404626053 +32298,72395,based on a book,1258533236 +32298,72395,child abuse,1262211804 +32298,72395,Harlem,1262211817 +32298,72395,New York City,1258533236 +32298,72395,pregnancy,1262211815 +32298,72395,teen pregnancy,1262211811 +32298,72405,New Orleans,1258533658 +32298,72405,police,1258533658 +32298,72407,based on a book,1258533612 +32298,72407,vampires,1258533612 +32298,72479,military,1264483824 +32298,72479,nudity (topless),1400281405 +32298,72491,drugs,1258770267 +32298,72491,police,1258770267 +32298,72524,musicians,1379409943 +32298,72524,rhythm & blues,1258923947 +32298,72524,vocalists,1258923947 +32298,72552,college,1260175382 +32298,72552,England,1260175382 +32298,72554,prison,1260101738 +32298,72612,easily confused with other movie(s) (title),1259301337 +32298,72630,Alfred P. Sloan Feature Film Prize,1259196576 +32298,72632,made for TV,1259196657 +32298,72632,single parents,1259196657 +32298,72634,basketball,1259196801 +32298,72634,high school,1259196801 +32298,72634,sequel,1259196801 +32298,72634,sports,1259196801 +32298,72641,based on a book,1259301179 +32298,72641,football,1259301179 +32298,72641,sports,1259301179 +32298,72641,true story,1259301179 +32298,72694,drugs,1259624321 +32298,72694,psychology,1259624321 +32298,72701,aliens,1259685957 +32298,72712,consumerism,1263613284 +32298,72714,animals,1260101688 +32298,72720,based on a book,1259794249 +32298,72731,afterlife,1259794205 +32298,72731,based on a book,1381569085 +32298,72733,Africa,1259794174 +32298,72733,rugby,1262253212 +32298,72733,South Africa,1259794174 +32298,72733,sports,1259794174 +32298,72737,2D animation,1262764632 +32298,72737,Disney,1262764598 +32298,72737,fairy tale,1392524347 +32298,72737,great soundtrack,1392712812 +32298,72737,jazz,1392524405 +32298,72737,Louisiana,1262764581 +32298,72737,New Orleans,1392524260 +32298,72737,royalty,1392524341 +32298,72737,talking animals,1392524334 +32298,72737,Voodoo,1392524287 +32298,72764,nudity (topless),1400278863 +32298,72764,parody,1260010451 +32298,72764,vampires,1260010451 +32298,72913,communism,1260403297 +32298,72913,Soviet Union,1260403297 +32298,72915,ballet,1387950431 +32298,72915,dance,1387950432 +32298,72919,small town,1260444391 +32298,72947,bad soundtrack,1422330795 +32298,72947,Christmas,1422329919 +32298,72947,coming out,1422330023 +32298,72947,queer,1422329915 +32298,72980,based on a book,1319785977 +32298,72982,based on a book,1262212018 +32298,72982,drugs,1262212004 +32298,72982,Lewis Carroll,1262212021 +32298,72982,made for TV,1262212062 +32298,72982,royalty,1262212002 +32298,72982,slavery,1262212142 +32298,72982,surreal,1262212004 +32298,72998,aliens,1315906801 +32298,72998,anti-war,1315906914 +32298,72998,big budget,1311440014 +32298,72998,imdb top 250,1264762656 +32298,72998,jungle,1315906807 +32298,72998,long,1384945040 +32298,72998,military,1315906799 +32298,72998,mining,1315906800 +32298,72998,nature,1315906814 +32298,72998,racism,1315907125 +32298,72998,scenic,1315906814 +32298,73002,nudity (topless),1400278318 +32298,73017,Arthur Conan Doyle,1369667010 +32298,73017,based on a book,1296555292 +32298,73017,comic book,1310551956 +32298,73017,England,1326258311 +32298,73017,occult,1326258318 +32298,73017,Sherlock Holmes,1310551978 +32298,73017,slow motion,1356595969 +32298,73027,based on a book,1261040332 +32298,73027,Leo Tolstoy,1261040562 +32298,73027,nudity (topless),1400148849 +32298,73027,Russia,1261040332 +32298,73027,writers,1261040340 +32298,73042,based on a TV show,1264762715 +32298,73042,sequel,1264762692 +32298,73049,New York City,1261221728 +32298,73051,business,1262223866 +32298,73051,India,1262223866 +32298,73051,Mumbai,1262223866 +32298,73051,rags to riches,1262223866 +32298,73089,corruption,1262223708 +32298,73089,lawyers,1262223708 +32298,73089,remake,1262223708 +32298,73106,franchise,1263005647 +32298,73106,made for TV,1263005647 +32298,73106,nudity (topless),1400281053 +32298,73114,ocean,1262223141 +32298,73114,true story,1262223141 +32298,73114,World War II,1262223141 +32298,73165,based on a book,1420191499 +32298,73165,Elmore Leonard,1420191499 +32298,73165,made for TV,1420191499 +32298,73211,based on a book,1262223487 +32298,73211,disease,1262225350 +32298,73211,zombies,1262225405 +32298,73224,made for TV,1262223355 +32298,73226,hip hop,1262223334 +32298,73226,made for TV,1262223334 +32298,73245,William Faulkner,1412980413 +32298,73261,based on a book,1262406030 +32298,73261,Ernest Hemingway,1262406030 +32298,73266,based on a book,1262222927 +32298,73268,vampires,1262222999 +32298,73276,Africa,1303797864 +32298,73276,business,1303797550 +32298,73276,climate change,1303797552 +32298,73276,history,1303797555 +32298,73276,mining,1303797557 +32298,73276,nature,1303797558 +32298,73276,New Orleans,1303797719 +32298,73276,Nigeria,1303797864 +32298,73276,oil,1303797560 +32298,73276,politics,1303797561 +32298,73290,dogs,1263257315 +32298,73319,Ireland,1370693011 +32298,73321,books,1412601381 +32298,73321,post-apocalyptic,1262405926 +32298,73323,based on a book,1291921460 +32298,73344,mafia,1262406115 +32298,73344,prison,1262406115 +32298,73386,directorial debut,1403869687 +32298,73386,New York City,1403869687 +32298,73386,Staten Island,1403869687 +32298,73392,business,1263257288 +32298,73401,based on a book,1262647208 +32298,73401,Cairo,1262647207 +32298,73401,Egypt,1262647207 +32298,73413,road trip,1262647134 +32298,73413,single parents,1262647134 +32298,73431,heist,1263926505 +32298,73460,directorial debut,1307580318 +32298,73472,World War II,1262751391 +32298,73488,Japan,1262817698 +32298,73488,vampires,1262817698 +32298,73499,made for TV,1262910677 +32298,73513,India,1262910846 +32298,73513,NASA,1262910846 +32298,73513,small town,1262910846 +32298,73515,high school,1262910908 +32298,73523,Germany,1263021377 +32298,73523,love triangles,1263021377 +32298,73587,restaurant,1268798069 +32298,73590,based on a book,1263779105 +32298,73590,nudity (topless),1400278799 +32298,73617,Latin America,1264483910 +32298,73617,Peru,1264483910 +32298,73617,South America,1264483910 +32298,73641,nudity (topless),1400669809 +32298,73664,dragons,1394788538 +32298,73681,classical music,1263779152 +32298,73708,computers,1263926444 +32298,73708,made for TV,1263926445 +32298,73708,technology,1263926445 +32298,73710,computers,1263926472 +32298,73710,technology,1263926472 +32298,73718,adultery,1263613300 +32298,73813,biology,1263926326 +32298,73813,Christianity,1263926326 +32298,73813,evolution,1263926326 +32298,73813,religion,1263926326 +32298,73813,science,1263926326 +32298,73820,nudity (full frontal),1400285208 +32298,73829,made for TV,1264033668 +32298,73829,monster,1264033668 +32298,73854,Christmas,1264141840 +32298,73854,made for TV,1264141840 +32298,73858,made for TV,1264141778 +32298,73860,Beatles,1264141754 +32298,73881,based on a book,1264209783 +32298,73881,college,1334820751 +32298,73881,friendship,1334820751 +32298,73881,India,1334820751 +32298,73881,inventor,1334820838 +32298,73922,made for TV,1264938322 +32298,73922,politics,1264938323 +32298,73929,based on a book,1265200331 +32298,73929,Biblical,1264599905 +32298,73929,Christianity,1264599905 +32298,73929,religion,1264599905 +32298,73983,nudity (topless),1404657206 +32298,73991,nudity (topless),1399714194 +32298,74056,writers,1294399146 +32298,74086,made for TV,1265084509 +32298,74086,not available from Netflix,1265084744 +32298,74089,based on a play,1265084586 +32298,74089,J.M. Barrie,1265084586 +32298,74089,made for TV,1265084586 +32298,74113,Japan,1265137722 +32298,74113,World War II,1265137722 +32298,74115,based on a poem,1265137782 +32298,74115,made for TV,1265137782 +32298,74139,World War I,1265313080 +32298,74144,based on a book,1382649475 +32298,74144,Dostoyevsky,1382649475 +32298,74148,basketball,1265313043 +32298,74148,high school,1265313044 +32298,74148,Ohio,1265313044 +32298,74148,sports,1265313044 +32298,74152,made for TV,1265312969 +32298,74152,stand-up comedy,1298083273 +32298,74228,ocean,1385025705 +32298,74275,AIDS,1393465550 +32298,74275,black comedy,1393465152 +32298,74275,con artists,1393465562 +32298,74275,frantic,1393466009 +32298,74275,gay,1293027981 +32298,74275,great ending,1393465586 +32298,74275,prison,1393465149 +32298,74275,queer,1393465148 +32298,74275,true story,1393465911 +32298,74275,twist ending,1393465918 +32298,74287,cannibalism,1268227032 +32298,74287,true story,1268227032 +32298,74302,corruption,1267487853 +32298,74302,police,1267487853 +32298,74302,police corruption,1267487852 +32298,74319,business,1270793580 +32298,74319,not available from Netflix,1270793469 +32298,74319,ocean,1270793579 +32298,74319,oil,1270793580 +32298,74319,shipwreck,1270793579 +32298,74319,true story,1270884107 +32298,74324,autism,1405560305 +32298,74324,biography,1266129399 +32298,74324,biology,1405560309 +32298,74324,disability,1266129399 +32298,74324,genius,1405560351 +32298,74324,great acting,1405560448 +32298,74324,inspirational,1405560357 +32298,74324,made for TV,1266129399 +32298,74324,mental illness,1405560359 +32298,74324,science,1266129402 +32298,74324,true story,1405560362 +32298,74382,racism,1266929206 +32298,74431,Islam,1315971932 +32298,74431,religion,1315971932 +32298,74446,Arthur Conan Doyle,1369666970 +32298,74446,based on a book,1369666970 +32298,74448,Arthur Conan Doyle,1369666910 +32298,74448,based on a book,1369666910 +32298,74458,insanity,1338368485 +32298,74458,island,1293298666 +32298,74458,twist ending,1338368484 +32298,74471,Arthur Conan Doyle,1369666991 +32298,74471,based on a book,1369666991 +32298,74473,Arthur Conan Doyle,1369666962 +32298,74484,nudity (topless),1400279872 +32298,74493,mad scientist,1266631452 +32298,74508,based on a book,1266749097 +32298,74508,Jane Austen,1266749096 +32298,74508,made for TV,1266749096 +32298,74512,short,1266749124 +32298,74530,based on a book,1359702680 +32298,74530,Greek mythology,1370317777 +32298,74532,police,1266929124 +32298,74547,World War I,1267487743 +32298,74573,love triangles,1267488363 +32298,74573,siblings,1267488363 +32298,74575,Italy,1267488023 +32298,74575,World War II,1267488023 +32298,74582,based on a book,1337363298 +32298,74582,nudity (topless),1400279408 +32298,74588,black and white,1267487936 +32298,74588,prison,1267487936 +32298,74624,astronomy,1336988810 +32298,74624,atheism,1297975853 +32298,74624,Christianity,1336988864 +32298,74624,Egypt,1267488169 +32298,74624,history,1336988864 +32298,74624,irreligion,1297975799 +32298,74624,mathematics,1336988836 +32298,74624,philosophy,1336988830 +32298,74624,religion,1336988864 +32298,74641,India,1268101761 +32298,74657,black comedy,1269055129 +32298,74657,drugs,1269055120 +32298,74681,black and white,1267488533 +32298,74683,soccer,1267488595 +32298,74683,sports,1267488595 +32298,74685,small town,1267488659 +32298,74688,based on a book,1267488734 +32298,74696,China,1267566010 +32298,74701,England,1267566255 +32298,74706,long,1267566661 +32298,74731,amnesia,1267667649 +32298,74750,found footage,1347176408 +32298,74750,shaky camera,1347176390 +32298,74760,free to download,1267925935 +32298,74760,short,1267925934 +32298,74780,based on a book,1267926051 +32298,74789,alternate reality,1267926195 +32298,74789,based on a book,1267926195 +32298,74789,Lewis Carroll,1267926195 +32298,74789,miniaturization,1384093763 +32298,74789,talking animals,1267926195 +32298,74795,Iraq,1267926292 +32298,74795,Iraq War,1267926292 +32298,74795,Middle East,1267926292 +32298,74795,military,1267926292 +32298,74851,Paris,1268294139 +32298,74864,made for TV,1269055088 +32298,74864,nudity (topless),1400279740 +32298,74886,based on a book,1268384159 +32298,74886,Ukraine,1268384159 +32298,74916,nudity (topless),1400281329 +32298,74944,Brooklyn,1268599298 +32298,74944,New York City,1268599298 +32298,74944,nudity (topless),1400281088 +32298,74944,police,1268599298 +32298,74948,revenge,1268717131 +32298,74967,based on a book,1268717096 +32298,74967,nudity (topless),1400278839 +32298,74967,Pittsburgh,1268717096 +32298,75349,made for TV,1268717574 +32298,75349,nudity (topless),1400278894 +32298,75351,based on a book,1268717664 +32298,75351,journalism,1268717664 +32298,75351,Las Vegas,1268717664 +32298,75351,made for TV,1268717664 +32298,75351,vampires,1268717664 +32298,75362,made for TV,1268869685 +32298,75374,made for TV,1268870237 +32298,75374,nudity (topless),1407226683 +32298,75386,nudity (full frontal),1400285404 +32298,75386,Thailand,1268870551 +32298,75395,wintry,1407118018 +32298,75397,Latin America,1268871410 +32298,75404,zombies,1268979079 +32298,75406,hip hop,1268979111 +32298,75406,made for TV,1268979111 +32298,75406,musicians,1379407576 +32298,75408,made for TV,1268979146 +32298,75414,nudity (topless),1413918425 +32298,75438,kidnapping,1269243554 +32298,75440,2000s,1269244078 +32298,75440,made for TV,1269243603 +32298,75440,politics,1269244067 +32298,75440,satire,1269244064 +32298,75440,US President,1269244064 +32298,75446,1920s,1269243882 +32298,75446,biography,1269243882 +32298,75446,Madrid,1269243882 +32298,75446,nudity (topless),1401588878 +32298,75446,painter,1269243882 +32298,75446,Spain,1269243882 +32298,75446,writers,1269243882 +32298,75803,family gatherings,1269243930 +32298,75803,wedding,1269243930 +32298,75813,drugs,1422366568 +32298,75813,marijuana,1422366570 +32298,75813,multiple roles,1422366563 +32298,75813,philosophy,1422366572 +32298,75813,siblings,1422366573 +32298,75813,twins,1422366565 +32298,75818,Afghanistan,1375619919 +32298,75985,health care,1382011322 +32298,75985,medicine,1382011323 +32298,75992,based on a book,1382649567 +32298,75992,Dostoyevsky,1382649568 +32298,75992,Russia,1382649568 +32298,76060,restaurant,1270884016 +32298,76077,1980s,1334046294 +32298,76077,alternate reality,1334046693 +32298,76077,nudity (topless),1400282789 +32298,76077,time travel,1270932821 +32298,76079,lesbian,1295081772 +32298,76079,nudity (topless),1400281390 +32298,76093,based on a book,1310510066 +32298,76093,dragons,1394788525 +32298,76093,Dreamworks,1307966651 +32298,76093,friendship,1315636660 +32298,76093,heartwarming,1315636667 +32298,76093,vikings,1315636708 +32298,76111,Iran,1316504664 +32298,76111,Middle East,1316504664 +32298,76119,nudity (topless),1400279188 +32298,76134,Arthur Conan Doyle,1369667371 +32298,76134,Sherlock Holmes,1369667371 +32298,76173,quirky,1297632333 +32298,76173,revenge,1297632331 +32298,76175,Greek mythology,1370317891 +32298,76175,remake,1270611544 +32298,76210,corruption,1320145299 +32298,76210,drugs,1422356102 +32298,76210,mental illness,1422356058 +32298,76210,police corruption,1320145310 +32298,76210,superhero,1271024395 +32298,76210,vigilante,1422356055 +32298,76251,based on a comic,1408329027 +32298,76251,brutal,1314985798 +32298,76251,double life,1314986148 +32298,76251,high school,1270883951 +32298,76251,revenge,1314985820 +32298,76251,tasteless,1273270911 +32298,76251,vigilante,1318463418 +32298,76293,mistaken identity,1363249370 +32298,76298,based on a book,1369992440 +32298,76298,Edgar Allan Poe,1271587966 +32298,76298,nudity (full frontal),1411110011 +32298,76317,nudity (topless),1400280340 +32298,76699,AIDS,1399886360 +32298,76753,high school,1271587644 +32298,76753,revenge,1271587644 +32298,76755,small town,1271587725 +32298,76763,musicians,1379409963 +32298,76763,rock and roll,1271587460 +32298,76763,true story,1271587460 +32298,76814,nudity (full frontal),1402112189 +32298,76827,based on a book,1271835679 +32298,76832,board game,1406994656 +32298,76832,nudity (topless),1400278104 +32298,77149,dinosaurs,1369372588 +32298,77149,J. G. Ballard,1387767980 +32298,77149,prehistoric,1369372556 +32298,77154,business,1271835651 +32298,77154,movie business,1271835651 +32298,77177,China,1384392834 +32298,77177,nature,1384392834 +32298,77179,Christianity,1278013400 +32298,77179,religion,1278013399 +32298,77181,business,1311542565 +32298,77181,history,1311542573 +32298,77181,made for TV,1311542576 +32298,77181,PBS,1311542579 +32298,77181,politics,1311542577 +32298,77191,family gatherings,1363759295 +32298,77191,funeral,1363759295 +32298,77191,remake,1363759295 +32298,77208,Africa,1272183278 +32298,77208,apartheid,1272183278 +32298,77208,South Africa,1272183278 +32298,77233,British Columbia,1300577361 +32298,77233,business,1300577361 +32298,77233,Canada,1300577360 +32298,77233,drugs,1300577361 +32298,77233,marijuana,1300577361 +32298,77240,nudity (full frontal),1399718117 +32298,77264,ballet,1379412331 +32298,77264,dance,1379412334 +32298,77266,Africa,1274255310 +32298,77266,based on a book,1274255447 +32298,77266,nudity (topless),1400279607 +32298,77266,South Africa,1274255310 +32298,77291,anthology,1303454690 +32298,77291,nudity (topless),1400279010 +32298,77293,nudity (topless),1414551748 +32298,77303,college,1272337618 +32298,77307,Greece,1380491178 +32298,77307,nudity (full frontal),1400284810 +32298,77307,siblings,1345525597 +32298,77416,nudity (full frontal),1400285560 +32298,77433,based on a book,1273486687 +32298,77433,Biblical,1272877929 +32298,77433,Christianity,1272877933 +32298,77433,religion,1272877934 +32298,77455,graffiti,1383905902 +32298,77455,painter,1306716014 +32298,77479,Catholicism,1402674974 +32298,77479,Christianity,1402674974 +32298,77479,irreligion,1274845266 +32298,77479,religion,1274845266 +32298,77479,stand-up comedy,1402674981 +32298,77561,audience intelligence underestimated,1380779723 +32298,77561,bad plot,1330776224 +32298,77561,comic book,1273370380 +32298,77561,franchise,1370339188 +32298,77561,Marvel,1273370374 +32298,77561,sequel,1273370346 +32298,77561,superhero,1273370374 +32298,77561,watch the credits,1330776477 +32298,77596,Middle East,1273370440 +32298,77658,astronomy,1275438917 +32298,77658,biology,1275438917 +32298,77658,Carl Sagan,1282126851 +32298,77658,earnest,1330922719 +32298,77658,evolution,1275438917 +32298,77658,free to download,1275438943 +32298,77658,history,1275945639 +32298,77658,Hulu,1275438959 +32298,77658,irreligion,1275438917 +32298,77658,made for TV,1275558803 +32298,77658,nature,1303158535 +32298,77658,not a movie,1282616611 +32298,77658,physics,1275438917 +32298,77658,remade,1419785460 +32298,77658,science,1275438917 +32298,77658,TV series,1372987044 +32298,77667,based on a TV show,1273486785 +32298,77667,parody,1273486797 +32298,77667,Saturday Night Live,1386251077 +32298,77772,nudity (topless),1402936863 +32298,77780,made for TV,1274255584 +32298,77780,space,1274255584 +32298,77795,directorial debut,1374406530 +32298,77795,post-apocalyptic,1374406509 +32298,77795,space,1374406530 +32298,77798,remake,1274255509 +32298,77816,religion,1274255453 +32298,77829,based on a book,1277557357 +32298,77829,business,1277557390 +32298,77829,history,1402664135 +32298,77829,politics,1303167739 +32298,77829,youtube,1398493557 +32298,77833,Afghanistan,1283072235 +32298,77833,Middle East,1283073303 +32298,77837,biography,1274354176 +32298,77837,doctors,1328575690 +32298,77837,made for TV,1274354176 +32298,77837,suicide,1328575690 +32298,77837,true story,1274354176 +32298,77843,kidnapping,1308643814 +32298,77843,nudity (topless),1400280878 +32298,77866,archery,1360493504 +32298,77866,England,1274255167 +32298,77866,long,1360493575 +32298,77866,medieval,1360493575 +32298,77866,royalty,1360493525 +32298,77944,advertising,1295871185 +32298,77944,business,1295871185 +32298,77979,Africa,1422231493 +32298,77979,based on a book,1422231491 +32298,77979,child soldiers,1422231491 +32298,77979,civil war,1422231495 +32298,78022,video game adaptation,1274937719 +32298,78034,1970s,1370758436 +32298,78034,England,1369666022 +32298,78034,friendship,1370758432 +32298,78039,marriage,1277557235 +32298,78039,nudity (topless),1400282156 +32298,78039,small town,1296003836 +32298,78088,buried alive,1275558701 +32298,78088,Iraq,1275558701 +32298,78088,Middle East,1275558701 +32298,78103,Africa,1422231298 +32298,78103,based on a book,1422231298 +32298,78103,civil war,1422231298 +32298,78103,genocide,1422231298 +32298,78103,Rwanda,1422231298 +32298,78105,desert,1358061656 +32298,78105,Middle East,1358061657 +32298,78105,royalty,1358061657 +32298,78105,siblings,1358061657 +32298,78105,video game adaptation,1358052507 +32298,78160,not a movie,1295820150 +32298,78160,stand-up comedy,1295820162 +32298,78162,not a movie,1295820139 +32298,78162,politics,1297141923 +32298,78162,stand-up comedy,1319162750 +32298,78174,based on a TV show,1275712919 +32298,78192,Hinduism,1360967617 +32298,78192,Islam,1360967558 +32298,78192,religion,1360967562 +32298,78209,drugs,1345173950 +32298,78209,great soundtrack,1345173982 +32298,78209,musicians,1379407558 +32298,78209,nudity (topless),1400282171 +32298,78218,FBI,1277557090 +32298,78218,terrorism,1277557090 +32298,78266,nudity (topless),1407100370 +32298,78272,nudity (topless),1407111625 +32298,78321,nudity (topless),1406994333 +32298,78321,parody,1277556991 +32298,78332,nudity (topless),1400278948 +32298,78410,dance,1379411841 +32298,78418,biology,1277556893 +32298,78418,history,1277556892 +32298,78418,medicine,1277556892 +32298,78418,science,1277556893 +32298,78445,nudity (topless),1409178717 +32298,78469,bad plot,1350609214 +32298,78469,based on a TV show,1277556788 +32298,78469,CIA,1350609133 +32298,78469,confusing,1350609214 +32298,78469,military,1350609145 +32298,78469,unrealistic,1350609128 +32298,78469,vigilante,1350609145 +32298,78499,big budget,1391750201 +32298,78499,bittersweet,1315825877 +32298,78499,franchise,1315825876 +32298,78499,Oscar (Best Animated Feature),1315826135 +32298,78499,Pixar,1277556760 +32298,78499,torture,1319255688 +32298,78499,toys,1277556760 +32298,78544,not a movie,1295820148 +32298,78544,stand-up comedy,1297141655 +32298,78574,based on a book,1348826843 +32298,78574,drugs,1348826838 +32298,78583,nudity (topless),1400615553 +32298,78612,based on a play,1277209323 +32298,78612,nude black women,1277209517 +32298,78612,nudity (full frontal),1400285522 +32298,78612,slavery,1277209323 +32298,78633,business,1333363151 +32298,78633,corruption,1333363137 +32298,78633,politics,1333363138 +32298,78635,based on a book,1422231401 +32298,78679,1950s,1303360426 +32298,78679,based on a book,1303360426 +32298,78679,nudity (rear),1400284263 +32298,78679,small town,1303360460 +32298,78701,nudity (topless),1400278662 +32298,78703,directorial debut,1382947401 +32298,78746,movie business,1278013548 +32298,78772,based on a book,1285320811 +32298,78772,vampires,1285320811 +32298,78827,nudity (topless),1400279116 +32298,78836,afterlife,1319703965 +32298,78836,nudity (full frontal),1400284856 +32298,78856,biology,1280470546 +32298,78856,business,1280470546 +32298,78856,food,1280470545 +32298,78856,made for TV,1280470545 +32298,78856,science,1280470546 +32298,78909,nudity (topless),1400278515 +32298,78916,nudity (topless),1400657582 +32298,78941,anthology,1400290378 +32298,78941,nudity (full frontal),1400290378 +32298,78941,unsimulated sex,1400290377 +32298,78949,made for TV,1278912551 +32298,78949,writers,1278912552 +32298,78959,Africa,1278912808 +32298,78959,apartheid,1278912808 +32298,78959,racism,1278912808 +32298,78959,segregation,1278912808 +32298,78959,South Africa,1278912808 +32298,78967,based on a book,1278912953 +32298,78967,H.G. Wells,1278912953 +32298,78967,island,1278912953 +32298,78967,mad scientist,1278912953 +32298,78967,shipwreck,1278912953 +32298,78974,made for TV,1278912596 +32298,78976,musicians,1379410756 +32298,78976,rock and roll,1278912687 +32298,79006,movie business,1300577403 +32298,79006,Star Wars,1375797694 +32298,79008,based on a TV show,1279486603 +32298,79008,crude humor,1310280675 +32298,79008,irreverent,1310280676 +32298,79008,made for TV,1280526047 +32298,79057,franchise,1287996584 +32298,79073,musicians,1379411088 +32298,79073,rock and roll,1298452105 +32298,79091,anti-hero,1387281595 +32298,79091,heartwarming,1319094139 +32298,79091,mad scientist,1315631848 +32298,79091,orphans,1319094129 +32298,79132,alternate reality,1279577741 +32298,79132,big budget,1285567946 +32298,79132,complicated,1314336251 +32298,79132,confusing,1387126067 +32298,79132,dreams,1279577719 +32298,79132,IMDB Top 250,1390075980 +32298,79132,intense,1389812134 +32298,79132,slow motion,1356596008 +32298,79132,surreal,1279577691 +32298,79139,car chase,1349763595 +32298,79139,magic,1315023416 +32298,79139,New York City,1347350556 +32298,79139,watch the credits,1347350992 +32298,79203,nudity (full frontal),1400285160 +32298,79207,drugs,1317378376 +32298,79207,New York City,1317378363 +32298,79207,nudity (topless),1400278773 +32298,79207,serial killer,1317378363 +32298,79207,strippers,1317378363 +32298,79224,martial arts,1381719234 +32298,79224,remake,1381719233 +32298,79242,adultery,1368783615 +32298,79242,dysfunctional family,1368783700 +32298,79242,interracial romance,1387320857 +32298,79242,lesbian,1368783658 +32298,79242,nude black women,1371362407 +32298,79242,nudity (topless),1400277585 +32298,79242,pretentious,1395879663 +32298,79242,queer,1368783666 +32298,79249,based on a book,1279875163 +32298,79249,H.G. Wells,1279875163 +32298,79254,nudity (topless),1420330012 +32298,79259,nudity (topless),1400279048 +32298,79287,based on a book,1371268433 +32298,79357,confusing,1387125992 +32298,79357,divorce,1379424823 +32298,79357,immortality,1301368585 +32298,79357,memory,1379424837 +32298,79357,nonlinear,1379424790 +32298,79357,surreal,1379424779 +32298,79400,business,1336434714 +32298,79400,cars,1336434714 +32298,79430,Mormon,1284375398 +32298,79430,politics,1284375398 +32298,79430,queer,1284375445 +32298,79430,religion,1284375398 +32298,79471,AIDS,1393379409 +32298,79471,multiple storylines,1393379409 +32298,79471,nudity (topless),1400278228 +32298,79528,based on a book,1280920268 +32298,79528,Robert Louis Stevenson,1280920268 +32298,79547,serial killer,1281075251 +32298,79570,gambling,1281267414 +32298,79592,buddy movie,1334208526 +32298,79592,police,1334208524 +32298,79592,watch the credits,1334208523 +32298,79603,nudity (full frontal),1407117203 +32298,79627,nudity (topless),1407753029 +32298,79663,journalism,1283072708 +32298,79702,based on a comic,1408329034 +32298,79702,stylized,1318243664 +32298,79702,surreal,1318243663 +32298,79702,video games,1318243662 +32298,79702,whimsical,1318243661 +32298,79741,disability,1289897977 +32298,79760,boxing,1308468864 +32298,79760,sports,1308468863 +32298,79800,nudity (topless),1405461073 +32298,79838,India,1283072479 +32298,79842,Iran,1283072453 +32298,79842,Middle East,1283072453 +32298,79844,Nazis,1282391592 +32298,79844,trains,1282391592 +32298,79844,World War II,1282391592 +32298,79848,nudity (topless),1404657148 +32298,79860,based on a book,1283072328 +32298,79860,prison,1283072344 +32298,79860,psychology,1283072344 +32298,79860,remake,1283072330 +32298,79874,easily confused with other movie(s) (title),1346122410 +32298,79879,nudity (full frontal),1400285738 +32298,79946,consumerism,1283072010 +32298,79946,nudity (topless),1400280728 +32298,79972,nudity (topless),1400278960 +32298,79987,biography,1308730334 +32298,79987,France,1308730334 +32298,79987,nudity (topless),1400279733 +32298,80076,nudity (topless),1401962777 +32298,80126,assassin,1308535705 +32298,80126,Italy,1308535600 +32298,80126,nudity (full frontal),1400285231 +32298,80137,Louisiana,1351734920 +32298,80137,natural disaster,1351734920 +32298,80137,New Orleans,1351734920 +32298,80185,business,1283545438 +32298,80185,business is the antagonist,1283545438 +32298,80185,geology,1381747634 +32298,80185,mining,1293590479 +32298,80195,history,1283576926 +32298,80217,musicians,1392358667 +32298,80217,punk rock,1349594908 +32298,80217,rock and roll,1349594908 +32298,80219,assassin,1346059634 +32298,80219,black comedy,1346059731 +32298,80219,brutal,1382070756 +32298,80219,corruption,1346059787 +32298,80219,drugs,1346059739 +32298,80219,gore,1387397798 +32298,80219,guns,1346059742 +32298,80219,immigrants,1346059744 +32298,80219,nudity (topless),1400282820 +32298,80219,police,1346059787 +32298,80219,politics,1346059787 +32298,80219,revenge,1346059633 +32298,80219,satire,1346059627 +32298,80219,Texas,1346059631 +32298,80222,dance,1383463576 +32298,80235,nudity (full frontal),1407117127 +32298,80281,stand-up comedy,1344237843 +32298,80350,parody,1284375850 +32298,80350,vampires,1284375850 +32298,80363,franchise,1392901292 +32298,80363,post-apocalyptic,1392901094 +32298,80363,zombies,1392901097 +32298,80428,male nudity,1406033522 +32298,80428,nudity (topless),1406033522 +32298,80428,unsimulated sex,1406033522 +32298,80449,nudity (topless),1407224433 +32298,80463,business,1284853448 +32298,80463,computers,1284853511 +32298,80463,Facebook,1310446553 +32298,80463,internet,1310446542 +32298,80463,true story,1297631663 +32298,80489,based on a book,1349159248 +32298,80489,Boston,1311958532 +32298,80489,heist,1311958530 +32298,80489,Massachusetts,1349159303 +32298,80489,police,1349159308 +32298,80502,bugs,1284853394 +32298,80549,Christianity,1318490975 +32298,80549,high school,1291666493 +32298,80549,parody,1318491091 +32298,80551,based on a book,1287043398 +32298,80551,India,1287043405 +32298,80551,Italy,1287043405 +32298,80568,based on a play,1285228065 +32298,80568,Neil Simon,1285228065 +32298,80584,adoption,1285564960 +32298,80584,queer,1285564935 +32298,80586,based on a book,1368073225 +32298,80588,space,1285564921 +32298,80590,business,1285202032 +32298,80615,based on a book,1291666615 +32298,80615,talking animals,1297424433 +32298,80667,actors,1324770257 +32298,80693,based on a book,1349330377 +32298,80693,depression,1349330375 +32298,80693,mental illness,1296272032 +32298,80693,quirky,1349330428 +32298,80693,suicide,1349331012 +32298,80727,pornography,1392703749 +32298,80742,nudity (topless),1403944791 +32298,80775,comic book,1308643071 +32298,80775,small town,1285829780 +32298,80779,New York City,1285829810 +32298,80831,based on a book,1286222668 +32298,80831,remake,1286148841 +32298,80831,serial killer,1315881691 +32298,80831,vampires,1292029455 +32298,80839,horses,1286148869 +32298,80846,supernatural,1357976292 +32298,80848,lesbian,1407099857 +32298,80848,nudity (topless),1407099857 +32298,80862,controversial,1310446511 +32298,80862,Facebook,1310446600 +32298,80862,internet,1310446511 +32298,80866,irreligion,1286377285 +32298,80866,religion,1286377285 +32298,80880,nudity (topless),1400280762 +32298,80903,prehistoric,1369372515 +32298,80906,business,1380841336 +32298,80906,corruption,1380841334 +32298,80906,economics,1383743293 +32298,80906,politics,1380841330 +32298,80917,aliens,1286768926 +32298,80924,based on a book,1286768765 +32298,80924,dogs,1286768765 +32298,80924,remake,1286768765 +32298,80926,based on a book,1394788939 +32298,80926,dragons,1394788939 +32298,80928,stand-up comedy,1315450133 +32298,80939,wrongly accused,1286768793 +32298,80947,Australia,1287469965 +32298,80947,road trip,1287469965 +32298,80969,based on a book,1286768902 +32298,80969,boarding school,1286768902 +32298,80969,England,1286768902 +32298,80980,based on a book,1386242045 +32298,80980,moon,1386242045 +32298,80980,space,1386242045 +32298,81041,nudity (topless),1400278364 +32298,81080,vampires,1387276997 +32298,81083,lesbian,1347427144 +32298,81083,nudity (topless),1400279755 +32298,81083,queer,1347427144 +32298,81132,nudity (rear),1400284273 +32298,81152,nudity (topless),1428096815 +32298,81158,Afghanistan,1321141396 +32298,81158,military,1321141405 +32298,81191,education,1296152462 +32298,81191,teacher,1299354855 +32298,81229,aging,1351930491 +32298,81229,assassin,1345356837 +32298,81229,CIA,1351930162 +32298,81229,conspiracy,1351930269 +32298,81229,espionage,1351930162 +32298,81257,dysfunctional family,1308051832 +32298,81257,revenge,1308051832 +32298,81276,Latin America,1305024133 +32298,81276,politics,1305024133 +32298,81276,South America,1305024133 +32298,81383,nudity (topless),1401960141 +32298,81393,Africa,1387390178 +32298,81393,apartheid,1387390178 +32298,81393,journalism,1387390177 +32298,81393,segregation,1387390177 +32298,81393,South Africa,1387390178 +32298,81417,franchise,1351019590 +32298,81424,prison,1289898159 +32298,81456,love triangles,1289898047 +32298,81495,17th century,1289967600 +32298,81495,royalty,1289967600 +32298,81516,disease,1289897560 +32298,81516,England,1289897560 +32298,81535,franchise,1289898018 +32298,81535,torture,1308000697 +32298,81537,road trip,1289897950 +32298,81562,loneliness,1387319940 +32298,81562,nature,1296151591 +32298,81562,survival,1378624653 +32298,81562,true story,1289897914 +32298,81562,Utah,1292029430 +32298,81562,villain nonexistent or not needed for good story,1356601766 +32298,81564,anti-hero,1387281477 +32298,81564,Dreamworks,1385026150 +32298,81564,gadgets,1316074754 +32298,81564,mad scientist,1316074740 +32298,81564,superhero,1316074726 +32298,81591,ballet,1320480396 +32298,81591,creepy,1320480441 +32298,81591,dance,1289897892 +32298,81591,gruesome,1320480435 +32298,81591,insanity,1320480991 +32298,81591,mental illness,1320480992 +32298,81591,Oscar (Best Actress),1320480421 +32298,81591,psychological,1320480386 +32298,81641,CIA,1297631828 +32298,81641,corruption,1297631828 +32298,81641,history,1297631828 +32298,81641,politics,1297631828 +32298,81688,nudity (topless),1402276511 +32298,81711,Halloween,1289897777 +32298,81711,made for TV,1289897777 +32298,81713,nudity (topless),1407446613 +32298,81731,12th century,1315160033 +32298,81731,England,1315160037 +32298,81731,made for TV,1289897722 +32298,81731,medieval,1348299711 +32298,81731,nudity (topless),1400280075 +32298,81744,video game adaptation,1289897600 +32298,81782,happy ending,1360932409 +32298,81782,trains,1350955288 +32298,81782,true story,1350955540 +32298,81782,villain nonexistent or not needed for good story,1360932416 +32298,81788,prison escape,1349677344 +32298,81788,remake,1297400099 +32298,81791,nudity (topless),1400281449 +32298,81802,nudity (topless),1400278012 +32298,81804,assassin,1290063876 +32298,81817,terrorism,1291436273 +32298,81817,true story,1291436273 +32298,81834,based on a book,1290064042 +32298,81834,boarding school,1290064042 +32298,81834,England,1290064042 +32298,81834,franchise,1290064042 +32298,81834,Harry Potter,1344404356 +32298,81834,magic,1290064042 +32298,81845,disability,1298191585 +32298,81845,England,1298191535 +32298,81845,IMDB Top 250,1298238438 +32298,81845,royalty,1298191535 +32298,81845,true story,1298191535 +32298,81847,based on a book,1369992321 +32298,81847,big budget,1391749402 +32298,81847,Disney,1315637140 +32298,81847,fairy tale,1291921400 +32298,81847,kidnapping,1315807041 +32298,81847,royalty,1315807041 +32298,81880,Irvine Welsh,1386945171 +32298,81898,musicians,1379407623 +32298,81932,boxing,1291436313 +32298,81932,sports,1291436313 +32298,82015,remake,1291436639 +32298,82026,Judaism,1291436600 +32298,82026,religion,1291436600 +32298,82037,Afghanistan,1291436539 +32298,82037,corruption,1297426456 +32298,82037,military,1291436539 +32298,82049,nudity (full frontal),1400284950 +32298,82049,road trip,1396979483 +32298,82053,2000s,1291436376 +32298,82053,corruption,1291436376 +32298,82053,history,1291436376 +32298,82053,politics,1291436376 +32298,82053,true story,1291436376 +32298,82068,nudity (full frontal),1407102103 +32298,82093,nudity (topless),1400280061 +32298,82102,musicians,1379408618 +32298,82102,punk rock,1351733867 +32298,82102,rock and roll,1351733867 +32298,82143,Alaska,1321139928 +32298,82143,nature,1321139930 +32298,82167,nudity (topless),1400282121 +32298,82169,alternate reality,1291435993 +32298,82169,based on a book,1291435993 +32298,82169,C.S. Lewis,1291435993 +32298,82169,dragons,1394788551 +32298,82169,magic,1291435993 +32298,82169,ocean,1344778173 +32298,82169,talking animals,1344778173 +32298,82169,volcano,1344778818 +32298,82169,watch the credits,1344778208 +32298,82173,nudity (topless),1400279893 +32298,82196,based on a book,1412980456 +32298,82196,William Faulkner,1412980451 +32298,82202,Italy,1291666392 +32298,82240,rock and roll,1294399332 +32298,82240,vampires,1294399332 +32298,82242,Christmas,1291921614 +32298,82242,male nudity,1356314133 +32298,82242,Santa Claus,1291921617 +32298,82242,wintry,1390525009 +32298,82300,based on a book,1387124215 +32298,82300,Harlem,1387124215 +32298,82300,New York City,1387124215 +32298,82378,nudity (topless),1400280753 +32298,82420,Africa,1292224386 +32298,82420,Liberia,1292224386 +32298,82447,based on a book,1399053668 +32298,82447,directorial debut,1399053668 +32298,82459,acting debut,1404625801 +32298,82459,remake,1294399559 +32298,82459,revenge,1395698889 +32298,82461,alternate reality,1303044186 +32298,82461,artificial intelligence,1349938305 +32298,82461,computers,1303043765 +32298,82461,cyberpunk,1349938300 +32298,82461,sequel,1293943157 +32298,82461,skydiving,1355138100 +32298,82461,stylized,1349938364 +32298,82461,virtual reality,1349938281 +32298,82499,love triangles,1292745940 +32298,82527,based on a book,1292745866 +32298,82534,business,1292745900 +32298,82589,nudity (full frontal),1400284873 +32298,82673,nudity (topless),1400278782 +32298,82744,revenge,1293199034 +32298,82767,based on a play,1293274136 +32298,82770,nudity (topless),1400278806 +32298,82772,made for TV,1293274060 +32298,82842,education,1294399197 +32298,82854,based on a book,1293584575 +32298,82854,Jonathan Swift,1303333722 +32298,82857,Montana,1294399363 +32298,82928,lesbian,1397709327 +32298,82928,nudity (full frontal),1400285525 +32298,82928,nuns,1387281291 +32298,82934,Cold War,1407711148 +32298,82934,corruption,1295000199 +32298,82934,history,1295000199 +32298,82934,military,1295000199 +32298,82934,Richard Nixon,1407711331 +32298,82934,secrets,1407711157 +32298,82934,Vietnam War,1295000199 +32298,83082,ballet,1379412506 +32298,83082,dance,1379412502 +32298,83132,anime,1319571326 +32298,83134,black comedy,1317190069 +32298,83134,forest,1369709957 +32298,83134,parody,1329608842 +32298,83180,nuclear war,1294399117 +32298,83219,business,1301124043 +32298,83219,movie business,1294399013 +32298,83219,Pixar,1302128249 +32298,83219,technology,1315827630 +32298,83270,business,1344402351 +32298,83270,England,1344402350 +32298,83270,factory,1344402350 +32298,83270,labor unions,1344402350 +32298,83270,true story,1344402350 +32298,83300,Christmas,1294870117 +32298,83349,comic book,1294870182 +32298,83376,history,1296734967 +32298,83417,nudity (topless),1429544359 +32298,83480,14th Century,1372050533 +32298,83506,science,1304499409 +32298,83506,stand-up comedy,1319162987 +32298,83605,nudity (topless),1402211501 +32298,83613,aliens,1315441207 +32298,83613,amnesia,1411824951 +32298,83613,bad plot,1411824928 +32298,83613,boring,1411824928 +32298,83789,nudity (topless),1403443058 +32298,83798,boarding school,1297601444 +32298,83798,nudity (topless),1400279704 +32298,83798,private school,1297601444 +32298,83803,Pixar,1385026539 +32298,83803,short,1385026541 +32298,83823,aliens,1296130068 +32298,83823,based on a play,1300949762 +32298,83823,Gore Vidal,1300949762 +32298,83829,motorcycle,1382073211 +32298,83829,short,1382073211 +32298,83912,mental illness,1296190306 +32298,83912,multiple personalities,1296190315 +32298,83916,based on a play,1296450944 +32298,83976,England,1366945387 +32298,83976,great dialogue,1420807064 +32298,83976,loneliness,1367294070 +32298,83976,road trip,1366945386 +32298,83976,scenic,1371361825 +32298,83976,witty,1382198668 +32298,84047,Germany,1358469990 +32298,84047,nudity (full frontal),1400284964 +32298,84047,true story,1358469990 +32298,84152,based on a book,1379238492 +32298,84152,drugs,1379238277 +32298,84152,transhumanism,1379238395 +32298,84154,artificial intelligence,1320206469 +32298,84154,computers,1320982105 +32298,84154,inventor,1320206469 +32298,84154,science,1320265163 +32298,84154,technology,1296890191 +32298,84189,revenge,1296890047 +32298,84240,Bolivia,1321139766 +32298,84240,business,1321139771 +32298,84262,nudity (topless),1407104050 +32298,84273,free to download,1319786551 +32298,84276,stand-up comedy,1367297929 +32298,84312,franchise,1297675591 +32298,84374,nudity (topless),1400282080 +32298,84387,nudity (topless),1400278830 +32298,84392,lawyers,1302263490 +32298,84502,television,1297899917 +32298,84532,based on a play,1373610990 +32298,84555,William Faulkner,1412980772 +32298,84570,country music,1420190795 +32298,84570,musicians,1420190815 +32298,84601,amnesia,1373593419 +32298,84601,memory,1373593417 +32298,84613,cave,1298525353 +32298,84615,business,1332124102 +32298,84615,drugs,1332124101 +32298,84615,watch the credits,1332124211 +32298,84621,nudity (topless),1400279168 +32298,84660,nudity (topless),1400277919 +32298,84696,doctors,1360502086 +32298,84696,Edinburgh,1360502130 +32298,84696,medicine,1360502086 +32298,84696,Scotland,1360502130 +32298,84696,serial killer,1360501949 +32298,84696,true story,1360502052 +32298,84730,nudity (topless),1402211218 +32298,84768,biography,1382073417 +32298,84770,lawyers,1299113323 +32298,84770,prostitution,1299113323 +32298,84772,aliens,1299113341 +32298,84772,atheism,1319571769 +32298,84772,irreligion,1319571769 +32298,84772,road trip,1319571667 +32298,84772,watch the credits,1336265548 +32298,84847,England,1299113243 +32298,84847,made for TV,1299113243 +32298,84847,not a movie,1368601805 +32298,84855,nudity (topless),1400279248 +32298,84942,nudity (topless),1406996742 +32298,84944,cowboys,1394148394 +32298,84944,desert,1326742468 +32298,84944,small town,1317976437 +32298,84944,talking animals,1317976437 +32298,84954,based on a book,1369992284 +32298,84954,Bechdel Test:Fail,1386592856 +32298,84954,directorial debut,1307076818 +32298,84954,Philip K. Dick,1307076818 +32298,84957,based on a play,1353845179 +32298,84957,Shakespeare,1353845179 +32298,85020,assassin,1358241107 +32298,85020,mentor,1358241220 +32298,85020,remake,1358241148 +32298,85020,revenge,1358241122 +32298,85022,nudity (topless),1400281597 +32298,85056,aliens,1408843704 +32298,85106,nudity (topless),1400278481 +32298,85131,aliens,1300469558 +32298,85131,shaky camera,1350799430 +32298,85190,writers,1300469552 +32298,85213,atheism,1382406079 +32298,85213,Cormac McCarthy,1382406063 +32298,85213,irreligion,1382406079 +32298,85213,religion,1382406065 +32298,85213,suicide,1419172205 +32298,85215,nudity (topless),1400278751 +32298,85273,Ecuador,1300469507 +32298,85273,mining,1300469507 +32298,85273,oil,1300469507 +32298,85273,South America,1300469507 +32298,85275,corruption,1300469457 +32298,85275,election,1382081267 +32298,85275,politics,1300469457 +32298,85334,nudity (topless),1400275734 +32298,85342,Brazil,1308076933 +32298,85342,corruption,1308076907 +32298,85342,Latin America,1308076933 +32298,85342,police,1308076902 +32298,85342,police corruption,1308076905 +32298,85342,South America,1308076933 +32298,85344,nudity (topless),1400278504 +32298,85354,nudity (topless),1400280814 +32298,85367,Hawaii,1300949413 +32298,85394,cave,1301292840 +32298,85394,France,1301292839 +32298,85401,superhero,1320992337 +32298,85401,vigilante,1320992335 +32298,85412,found footage,1347177402 +32298,85412,mockumentary,1316119290 +32298,85412,monster,1347177405 +32298,85414,Chicago,1342500033 +32298,85414,military,1342516819 +32298,85414,terrorism,1342500021 +32298,85414,time loop,1410544478 +32298,85414,time travel,1302073245 +32298,85414,trains,1342516831 +32298,85414,twist ending,1342516828 +32298,85510,asylum,1325588500 +32298,85513,nudity (topless),1413914126 +32298,85542,nudity (topless),1400278565 +32298,85547,pornography,1345065656 +32298,85734,movie business,1301939471 +32298,85736,Pixar,1302040066 +32298,85736,robots,1302040066 +32298,85736,short,1302040066 +32298,85774,cars,1315971848 +32298,85774,sports,1312043901 +32298,85780,parody,1302471708 +32298,85780,Star Wars,1302471708 +32298,85783,Romania,1312194223 +32298,85788,alternate reality,1386387104 +32298,85788,demons,1386387104 +32298,85788,ghosts,1344475610 +32298,85788,haunted house,1344475590 +32298,85788,tense,1386387497 +32298,85881,wrestling,1405985218 +32298,85885,lesbian,1319049989 +32298,85885,nudity (full frontal),1400285255 +32298,86000,New Zealand,1351733958 +32298,86190,assassin,1302945099 +32298,86237,business,1302944906 +32298,86237,history,1302944905 +32298,86237,made for TV,1302944905 +32298,86237,politics,1302944906 +32298,86237,science,1302944906 +32298,86237,technology,1302944906 +32298,86242,nudity (topless),1400278289 +32298,86244,based on a book,1302944655 +32298,86244,drugs,1302944655 +32298,86288,history,1331880943 +32298,86288,made for TV,1331880952 +32298,86288,science,1331880943 +32298,86298,birds,1326332178 +32298,86298,Brazil,1327307768 +32298,86298,Latin America,1327307768 +32298,86298,Rio de Janeiro,1327307768 +32298,86298,South America,1327307768 +32298,86298,talking animals,1326332168 +32298,86300,nudity (full frontal),1400285110 +32298,86320,nudity (topless),1400282221 +32298,86320,siblings,1306861531 +32298,86332,comic book,1348026947 +32298,86332,Marvel,1348026962 +32298,86332,mythology,1348041225 +32298,86332,siblings,1348041366 +32298,86332,superhero,1348041107 +32298,86332,visually appealing,1391320559 +32298,86332,watch the credits,1348041104 +32298,86345,stand-up comedy,1308077430 +32298,86347,stand-up comedy,1316146697 +32298,86355,Ayn Rand,1303619563 +32298,86355,based on a book,1303619563 +32298,86377,stand-up comedy,1308077423 +32298,86416,basketball,1316244197 +32298,86416,made for TV,1316244197 +32298,86416,sports,1316244197 +32298,86449,nudity (topless),1399885172 +32298,86463,nudity (topless),1402505473 +32298,86493,based on a poem,1382073488 +32298,86574,musicians,1379408605 +32298,86574,rock and roll,1345058120 +32298,86576,business,1305024169 +32298,86578,nudity (full frontal),1400284759 +32298,86593,Africa,1319187612 +32298,86593,cats,1319187612 +32298,86593,nature,1319187612 +32298,86628,nudity (topless),1400562633 +32298,86637,nudity (topless),1400278128 +32298,86637,Russia,1389854853 +32298,86644,Brazil,1371968216 +32298,86644,car chase,1371968182 +32298,86644,cars,1304910594 +32298,86644,franchise,1304910594 +32298,86644,Latin America,1371968216 +32298,86644,Rio de Janeiro,1371968204 +32298,86644,South America,1371968216 +32298,86745,farming,1305024399 +32298,86745,made for TV,1305023984 +32298,86745,Minnesota,1305023984 +32298,86745,PBS,1305023984 +32298,86762,nudity (full frontal),1400285097 +32298,86781,based on a play,1307768004 +32298,86781,Middle East,1307768004 +32298,86781,siblings,1307768004 +32298,86781,twins,1307768004 +32298,86829,based on a play,1349504119 +32298,86829,Shakespeare,1349504119 +32298,86833,crude humor,1317881637 +32298,86833,watch the credits,1318912907 +32298,86835,comic book,1355138286 +32298,86835,vampires,1355138300 +32298,86839,politics,1318243466 +32298,86880,anti-hero,1387281691 +32298,86880,franchise,1308109470 +32298,86880,ocean,1347958719 +32298,86880,pirates,1344324443 +32298,86880,revenge,1347958634 +32298,86880,watch the credits,1347959169 +32298,86882,nostalgic,1374568307 +32298,86882,Paris,1311184879 +32298,86882,time travel,1374568178 +32298,86882,writers,1374568204 +32298,86898,1950s,1370177835 +32298,86898,Texas,1370177835 +32298,86911,Bangkok,1332124508 +32298,86911,monkey,1332124525 +32298,86911,Thailand,1305871669 +32298,86911,watch the credits,1332124499 +32298,86955,terrorism,1318643087 +32298,86977,religion,1330411350 +32298,86988,high school,1309469660 +32298,86988,marching bands,1309469666 +32298,86988,poverty,1309469660 +32298,86988,Washington DC,1309469660 +32298,87000,nudity (topless),1407109842 +32298,87004,dance,1379411463 +32298,87006,nudity (topless),1400278338 +32298,87010,nudity (topless),1400278053 +32298,87061,based on a play,1382073019 +32298,87081,cars,1402154411 +32298,87096,nudity (topless),1407447176 +32298,87105,talking animals,1306561088 +32298,87192,aliens,1308121410 +32298,87192,England,1319571562 +32298,87192,London,1319571562 +32298,87197,1920s,1373742504 +32298,87197,China,1373742504 +32298,87197,nudity (topless),1400279065 +32298,87222,China,1358411655 +32298,87222,kung fu,1358411649 +32298,87222,martial arts,1323749906 +32298,87222,talking animals,1319449736 +32298,87229,movie business,1307434977 +32298,87232,1960s,1371210439 +32298,87232,cold war,1330763994 +32298,87232,comic book,1307075612 +32298,87232,ensemble cast,1330763940 +32298,87232,franchise,1307075597 +32298,87232,military,1408327813 +32298,87232,Nazis,1330763947 +32298,87232,superhero,1307075597 +32298,87234,coming of age,1382093424 +32298,87234,high school,1387126697 +32298,87287,movie business,1307435009 +32298,87298,alcoholism,1345182270 +32298,87298,divorce,1345182230 +32298,87298,drugs,1345182270 +32298,87302,nudity (topless),1400277267 +32298,87306,aliens,1348482890 +32298,87306,movie business,1348570132 +32298,87306,small town,1348570132 +32298,87306,trains,1348570133 +32298,87320,terrorism,1307343120 +32298,87322,nudity (topless),1409784103 +32298,87332,nudity (topless),1407226647 +32298,87360,history,1307434903 +32298,87370,Indonesia,1307434798 +32298,87405,high school,1307700453 +32298,87405,love triangles,1307700480 +32298,87405,small town,1307700453 +32298,87430,aliens,1393673409 +32298,87430,big budget,1391750283 +32298,87430,comic book,1307700327 +32298,87430,DC Comics,1393673845 +32298,87430,space,1393673416 +32298,87430,superhero,1393673583 +32298,87449,nudity (full frontal),1400284961 +32298,87485,high school,1315441139 +32298,87520,big budget,1391750424 +32298,87520,cars,1348143603 +32298,87520,franchise,1308443914 +32298,87520,robots,1308443914 +32298,87522,college,1321416638 +32298,87647,nature,1308604044 +32298,87649,Italy,1308604022 +32298,87649,movie business,1308604022 +32298,87660,based on a book,1308603791 +32298,87660,business,1308603791 +32298,87660,made for TV,1308603791 +32298,87660,politics,1308603791 +32298,87660,true story,1308603791 +32298,87785,heist,1350560896 +32298,87790,polyamory,1384390684 +32298,87796,nudity (topless),1407099282 +32298,87869,black comedy,1332124684 +32298,87876,big budget,1391750308 +32298,87876,cars,1309469533 +32298,87876,espionage,1392712517 +32298,87876,oil,1392712549 +32298,87876,Pixar,1315441161 +32298,87876,sequel,1309469533 +32298,87911,nudity (topless),1400278989 +32298,87928,business,1316503585 +32298,87930,journalism,1325641003 +32298,87971,Anton Chekhov,1310451776 +32298,87971,based on a book,1310451734 +32298,87975,based on a TV show,1310544494 +32298,87975,Latin America,1310544494 +32298,87975,made for TV,1310544494 +32298,88001,nudity (topless),1400276857 +32298,88022,lawyers,1387388561 +32298,88067,made for TV,1310102679 +32298,88069,India,1310102575 +32298,88069,mistaken identity,1345188277 +32298,88069,underrated,1406713810 +32298,88071,ballet,1379412320 +32298,88071,dance,1379412321 +32298,88073,history,1310102315 +32298,88089,movie business,1310451876 +32298,88094,musicians,1379409975 +32298,88125,based on a book,1310544541 +32298,88125,franchise,1310544541 +32298,88125,Harry Potter,1344404411 +32298,88125,magic,1325421084 +32298,88127,stand-up comedy,1310544577 +32298,88129,car chase,1344705184 +32298,88129,cars,1317191415 +32298,88129,little dialogue,1346621867 +32298,88129,nudity (topless),1400283208 +32298,88129,slow,1387280708 +32298,88138,19th century,1310748436 +32298,88138,China,1310748436 +32298,88140,america porn,1362400782 +32298,88140,american idiocy,1380781104 +32298,88140,comic book,1310748489 +32298,88140,Marvel,1348127912 +32298,88140,military,1348128073 +32298,88140,Nazis,1348128095 +32298,88140,steampunk,1348128610 +32298,88140,superhero,1348128112 +32298,88140,watch the credits,1348128067 +32298,88140,World War II,1348127903 +32298,88160,nudity (topless),1402873130 +32298,88235,black comedy,1336717082 +32298,88235,directorial debut,1403864375 +32298,88235,Ireland,1336717100 +32298,88235,police,1336717097 +32298,88235,smuggling,1346223796 +32298,88237,Australia,1321416617 +32298,88237,Melbourne,1321416617 +32298,88237,superhero,1321416617 +32298,88282,nudity (topless),1407224630 +32298,88345,Pixar,1385026619 +32298,88345,short,1385026618 +32298,88349,made for TV,1311334175 +32298,88356,based on a TV show,1311334193 +32298,88368,CIA,1311334092 +32298,88368,Guatemala,1311334106 +32298,88368,Latin America,1311334106 +32298,88398,politics,1318141285 +32298,88405,friendship,1345794244 +32298,88405,happy ending,1345794247 +32298,88405,New York City,1345794136 +32298,88405,predictable,1345794169 +32298,88405,sex,1345794138 +32298,88468,dogs,1312043879 +32298,88473,based on a book,1363167088 +32298,88473,F. Scott Fitzgerald,1363167088 +32298,88485,nudity (topless),1400278553 +32298,88543,college,1314690578 +32298,88543,made for TV,1314690578 +32298,88543,rape,1314690578 +32298,88564,history,1312194178 +32298,88564,Romania,1312194178 +32298,88672,heartwarming,1344942239 +32298,88672,siblings,1344942198 +32298,88672,watch the credits,1344942204 +32298,88706,bullying,1387426736 +32298,88706,high school,1387426738 +32298,88706,internet,1387426733 +32298,88724,hip hop,1312925520 +32298,88724,musicians,1379410625 +32298,88744,biology,1313177467 +32298,88744,genetics,1313177466 +32298,88746,high school,1404172533 +32298,88746,small town,1312925348 +32298,88764,blindness,1387276312 +32298,88785,switching places,1313177050 +32298,88788,biography,1320144730 +32298,88788,drugs,1320144730 +32298,88810,based on a book,1313177257 +32298,88810,racism,1313177257 +32298,88810,segregation,1313177257 +32298,88812,nudity (topless),1400281639 +32298,88932,franchise,1315441226 +32298,88954,Christmas,1321330991 +32298,88954,franchise,1321330991 +32298,88954,New York City,1321330991 +32298,88954,nudity (topless),1400280747 +32298,89000,Argentina,1379414228 +32298,89000,Buenos Aires,1379414229 +32298,89000,Latin America,1379414228 +32298,89000,nudity (topless),1401883251 +32298,89000,South America,1379414228 +32298,89030,remake,1358052391 +32298,89030,vampires,1358052425 +32298,89039,Alfred P. Sloan Feature Film Prize,1343605825 +32298,89072,vampires,1382083512 +32298,89074,advertising,1317638797 +32298,89074,business,1314178848 +32298,89085,Israel,1384180382 +32298,89085,Mossad,1314178955 +32298,89085,Nazis,1314178955 +32298,89090,fashion,1322091187 +32298,89090,photography,1322091187 +32298,89100,Vietnam War,1317368585 +32298,89102,economics,1383786721 +32298,89104,androids,1314427600 +32298,89104,post-apocalyptic,1314427600 +32298,89104,robots,1314427599 +32298,89118,doctors,1322441965 +32298,89118,nudity (topless),1403945595 +32298,89164,nudity (full frontal),1403489495 +32298,89190,Bechdel Test:Who Cares,1412613169 +32298,89203,road trip,1317189246 +32298,89244,nudity (topless),1400294785 +32298,89248,based on a book,1412980829 +32298,89248,William Faulkner,1412980829 +32298,89260,monkey,1314676708 +32298,89287,nudity (topless),1400278019 +32298,89302,England,1393298465 +32298,89302,espionage,1393298459 +32298,89305,based on a TV show,1408997287 +32298,89343,religion,1317191709 +32298,89347,nudity (topless),1407100016 +32298,89367,nudity (topless),1400278600 +32298,89369,immigrants,1393298660 +32298,89369,single parents,1393298694 +32298,89375,disability,1317189313 +32298,89377,cars,1315792923 +32298,89386,musicians,1379408481 +32298,89386,rock and roll,1315513160 +32298,89388,based on a book,1389186484 +32298,89427,shark,1315513218 +32298,89470,disease,1315513254 +32298,89470,doctors,1315513264 +32298,89470,medicine,1371498608 +32298,89472,Catholicism,1315715617 +32298,89472,Christianity,1315715617 +32298,89472,religion,1315715617 +32298,89480,directorial debut,1322657740 +32298,89480,nudity (full frontal),1400285614 +32298,89492,baseball,1315715671 +32298,89492,sports,1315715671 +32298,89492,true story,1351341743 +32298,89501,writers,1316951344 +32298,89545,nudity (full frontal),1408363409 +32298,89545,prostitution,1317189427 +32298,89580,Glasgow,1353843582 +32298,89580,Scotland,1353843569 +32298,89638,Ireland,1386632737 +32298,89638,nudity (topless),1400279100 +32298,89650,13th Century,1316063717 +32298,89650,England,1316063717 +32298,89666,North Korea,1316244164 +32298,89674,island,1316244070 +32298,89674,zombies,1316244070 +32298,89714,Africa,1323230651 +32298,89714,apartheid,1323230651 +32298,89714,nudity (topless),1400278182 +32298,89714,segregation,1323230651 +32298,89714,South Africa,1323230651 +32298,89745,bad plot,1351754207 +32298,89745,bad script,1351754207 +32298,89745,big budget,1391749897 +32298,89745,comic book,1316677933 +32298,89745,ensemble cast,1351754162 +32298,89745,franchise,1351754151 +32298,89745,Marvel,1351754154 +32298,89745,New York City,1351754176 +32298,89745,overrated,1384674216 +32298,89745,superhero,1336711142 +32298,89745,watch the credits,1351754166 +32298,89753,based on a book,1316677871 +32298,89753,Cold War,1316677858 +32298,89753,England,1316677878 +32298,89753,espionage,1316677871 +32298,89759,Iran,1316678101 +32298,89759,Middle East,1316678101 +32298,89761,history,1316678158 +32298,89761,psychology,1316678158 +32298,89774,siblings,1360563088 +32298,89774,sports,1360563080 +32298,89804,based on a play,1316951365 +32298,89804,election,1384747565 +32298,89804,politics,1316951365 +32298,89846,board game,1317864903 +32298,89846,chess,1317864903 +32298,89862,nudity (topless),1420543419 +32298,89864,disease,1317189515 +32298,89881,comic book,1387190255 +32298,89881,superhero,1387190248 +32298,89881,Superman,1387190245 +32298,89898,advertising,1317189002 +32298,89898,based on a book,1317189002 +32298,89898,business,1317189002 +32298,89898,Russia,1317189002 +32298,89904,1920s,1317189073 +32298,89904,black and white,1363229111 +32298,89904,movie business,1317189072 +32298,89908,nudity (topless),1400278266 +32298,89930,vigilante,1317188911 +32298,89945,robots,1317188802 +32298,89945,short,1317188802 +32298,89983,androids,1317324127 +32298,89983,robots,1317324127 +32298,89985,made for TV,1317323820 +32298,89985,politics,1317323820 +32298,89997,Iran,1317368538 +32298,89997,lesbian,1317368538 +32298,89997,queer,1317368538 +32298,90005,time travel,1317638033 +32298,90019,nudity (topless),1400277933 +32298,90061,directorial debut,1347949395 +32298,90108,musicians,1419360587 +32298,90108,nudity (topless),1419360587 +32298,90154,revenge,1319176367 +32298,90237,philosophy,1318444362 +32298,90239,movie business,1318444300 +32298,90239,pornography,1318444299 +32298,90249,audience intelligence underestimated,1401436847 +32298,90249,boxing,1392819888 +32298,90249,robots,1318444219 +32298,90249,sports,1392819885 +32298,90264,made for TV,1318444173 +32298,90266,horses,1318444142 +32298,90273,World War II,1318444080 +32298,90286,movie business,1319049812 +32298,90310,inventor,1319049767 +32298,90341,baseball,1319877413 +32298,90341,sports,1319877413 +32298,90343,Christianity,1320097534 +32298,90343,dance,1320097534 +32298,90343,high school,1320097534 +32298,90343,religion,1320097534 +32298,90343,remake,1319176794 +32298,90343,rock and roll,1320097534 +32298,90343,small town,1320097534 +32298,90343,teen,1320097534 +32298,90345,aliens,1319176911 +32298,90345,Antarctica,1319176911 +32298,90345,polar,1368313366 +32298,90350,heavy metal,1319176695 +32298,90350,rock and roll,1319176695 +32298,90374,nudity (topless),1400280955 +32298,90378,kidnapping,1319177432 +32298,90382,nudity (topless),1413926602 +32298,90403,Alexandre Dumas,1319265898 +32298,90403,based on a book,1319265898 +32298,90405,aging,1319176144 +32298,90405,corruption,1319176144 +32298,90405,dystopia,1346052340 +32298,90405,fugitive,1319176144 +32298,90405,immortality,1319176144 +32298,90405,police,1319176144 +32298,90405,police corruption,1319176144 +32298,90413,Australia,1319371072 +32298,90413,based on a book,1319371072 +32298,90413,Catholicism,1319371247 +32298,90413,Christianity,1319371247 +32298,90413,England,1319371072 +32298,90413,immigrants,1319371146 +32298,90413,religion,1319371247 +32298,90413,true story,1319371072 +32298,90421,based on a book,1319371697 +32298,90426,multiple storylines,1393935281 +32298,90426,nudity (topless),1400278680 +32298,90428,nudity (topless),1400279721 +32298,90430,based on a play,1319265863 +32298,90434,assassin,1319371303 +32298,90434,revenge,1319371303 +32298,90439,bank,1319371370 +32298,90439,business,1319371370 +32298,90439,corruption,1319371370 +32298,90469,franchise,1319371377 +32298,90471,drugs,1319371421 +32298,90471,lawyers,1319371421 +32298,90474,journalism,1319439290 +32298,90474,nudity (full frontal),1407112926 +32298,90476,disease,1320144792 +32298,90522,assassin,1319439226 +32298,90522,sequel,1319439226 +32298,90526,China,1319439141 +32298,90526,communism,1319439141 +32298,90526,history,1319439141 +32298,90531,New York City,1319438944 +32298,90531,nudity (topless),1400281824 +32298,90531,siblings,1428752174 +32298,90547,nudity (topless),1400278299 +32298,90549,military,1409001345 +32298,90549,nudity (topless),1409001345 +32298,90556,movie business,1319572189 +32298,90559,television,1319572136 +32298,90578,haunted house,1319682299 +32298,90592,disease,1319715473 +32298,90592,doctors,1319715473 +32298,90592,Oregon,1319715473 +32298,90592,suicide,1319715473 +32298,90594,Italy,1319715417 +32298,90594,queer,1319715417 +32298,90596,aliens,1319715373 +32298,90600,based on a book,1402060663 +32298,90603,Batman,1319715308 +32298,90603,comic book,1319715308 +32298,90603,franchise,1319715308 +32298,90645,Shakespeare,1320145010 +32298,90647,cats,1356589666 +32298,90647,fairy tale,1356589640 +32298,90647,franchise,1320145060 +32298,90647,great soundtrack,1356589755 +32298,90647,Latin America,1356589736 +32298,90647,latin music,1356589676 +32298,90647,parody,1356589643 +32298,90647,talking animals,1356589671 +32298,90649,based on a book,1340786466 +32298,90649,drugs,1340786466 +32298,90649,nudity (topless),1400278856 +32298,90649,true story,1340786466 +32298,90668,nudity (full frontal),1407215390 +32298,90690,based on a book,1322522281 +32298,90706,nudity (topless),1400278359 +32298,90717,heist,1320474878 +32298,90717,New York City,1348390585 +32298,90719,biography,1320474755 +32298,90719,FBI,1320474755 +32298,90746,comic book,1320474556 +32298,90795,nudity (full frontal),1428750789 +32298,90809,Paris,1320830906 +32298,90863,Beatles,1351734233 +32298,90863,musicians,1379407591 +32298,90863,rock and roll,1351734233 +32298,90866,1930s,1320830800 +32298,90866,based on a book,1320830800 +32298,90866,France,1328590415 +32298,90866,heartwarming,1338357312 +32298,90866,movie business,1338357312 +32298,90866,orphans,1338357288 +32298,90866,Paris,1320830800 +32298,90866,robots,1320830800 +32298,90868,based on a book,1320830719 +32298,90868,religion,1320830719 +32298,90870,kidnapping,1320830616 +32298,90873,nudity (topless),1400295784 +32298,90873,rape,1320830557 +32298,90873,revenge,1320830557 +32298,90873,vigilante,1320830557 +32298,90888,Greek mythology,1370317870 +32298,90888,stylized,1349525123 +32298,90890,multiple roles,1320876267 +32298,90890,siblings,1320876267 +32298,90890,twins,1320876267 +32298,90897,military,1320923106 +32298,90899,movie business,1320922980 +32298,90914,Baghdad,1375503329 +32298,90914,Iraq,1375503329 +32298,90914,Middle East,1375503329 +32298,90914,nudity (topless),1400279868 +32298,90943,prison,1345058198 +32298,90963,business,1323022388 +32298,90963,mining,1323022387 +32298,91010,wedding,1321792735 +32298,91035,based on a book,1321793331 +32298,91044,1970s,1321793386 +32298,91044,New York City,1321793386 +32298,91048,nudity (topless),1400279016 +32298,91077,based on a book,1387362215 +32298,91094,based on a TV show,1402484964 +32298,91094,business is the antagonist,1394990606 +32298,91094,franchise,1350115140 +32298,91094,puppets,1350115132 +32298,91094,talking animals,1350115720 +32298,91104,based on a book,1340270791 +32298,91104,vampires,1340270704 +32298,91112,easily confused with other movie(s) (title),1361581403 +32298,91112,nudity (topless),1405124303 +32298,91126,horses,1322091030 +32298,91126,World War I,1322091030 +32298,91128,1950s,1322090943 +32298,91128,based on a book,1322090943 +32298,91128,Caribbean,1322090943 +32298,91128,Hunter S. Thompson,1322090943 +32298,91128,journalism,1322090943 +32298,91128,Latin America,1322090943 +32298,91128,Puerto Rico,1322090943 +32298,91167,politics,1323948210 +32298,91233,Pixar,1385026450 +32298,91233,short,1385026448 +32298,91304,nudity (topless),1402501760 +32298,91323,babysitting,1334389035 +32298,91335,based on a book,1331437366 +32298,91335,talking animals,1331437366 +32298,91360,vocalists,1329428590 +32298,91371,corruption,1322723710 +32298,91371,Los Angeles,1322723710 +32298,91371,police,1322723710 +32298,91371,police corruption,1322723710 +32298,91414,Christmas,1322907331 +32298,91416,Latin America,1322907400 +32298,91416,Mexico,1322907400 +32298,91450,baseball,1323931478 +32298,91450,based on a book,1323931478 +32298,91450,Mexico,1323931478 +32298,91450,sports,1323931478 +32298,91450,true story,1323931478 +32298,91461,assassin,1323931484 +32298,91470,assassin,1323127344 +32298,91483,nudity (topless),1400279232 +32298,91485,sequel,1344756421 +32298,91490,made for TV,1323080426 +32298,91500,based on a book,1323127458 +32298,91500,forest,1369710157 +32298,91500,long,1384944542 +32298,91500,reality TV,1323127458 +32298,91500,television,1323127458 +32298,91505,nudity (topless),1400279120 +32298,91529,Batman,1344164862 +32298,91529,big budget,1391749789 +32298,91529,comic book,1344164863 +32298,91529,franchise,1344164862 +32298,91529,New York City,1355227929 +32298,91529,nuclear bomb,1355227977 +32298,91529,overrated,1385915911 +32298,91529,superhero,1344164863 +32298,91535,franchise,1344756389 +32298,91537,nudity (topless),1400278670 +32298,91540,nudity (topless),1400278851 +32298,91542,Arthur Conan Doyle,1369666832 +32298,91542,Bechdel Test:Fail,1336637665 +32298,91542,long,1336637682 +32298,91560,biography,1323381438 +32298,91595,Mississippi,1373616319 +32298,91595,racism,1373616319 +32298,91595,segregation,1373616319 +32298,91595,small town,1373616319 +32298,91601,nudity (topless),1407208133 +32298,91622,small town,1323931681 +32298,91628,multiple storylines,1323931602 +32298,91630,espionage,1350213893 +32298,91630,franchise,1323931572 +32298,91658,based on a book,1323947973 +32298,91658,long,1384945080 +32298,91658,nudity (topless),1400282983 +32298,91658,remake,1347518801 +32298,91660,aliens,1323947920 +32298,91660,Moscow,1323947920 +32298,91673,nudity (topless),1400675369 +32298,91681,blindness,1387019436 +32298,91681,nudity (topless),1400279631 +32298,91745,obscure sports,1413913271 +32298,91745,Oregon,1413913271 +32298,91745,roller derby,1413913271 +32298,91745,short,1413913271 +32298,91755,politics,1324953833 +32298,91755,US President,1324953833 +32298,91762,lions,1324953916 +32298,91762,nature,1324953916 +32298,91784,Los Angeles,1324388137 +32298,91784,multiple storylines,1324388137 +32298,91789,con artists,1324388046 +32298,91808,lesbian,1324387873 +32298,91808,New York City,1324387873 +32298,91808,queer,1324387873 +32298,91821,based on a TV show,1402484858 +32298,91821,Christmas,1402484857 +32298,91821,franchise,1350115484 +32298,91821,puppets,1350115484 +32298,91821,talking animals,1350115484 +32298,91823,Dreamworks,1345164276 +32298,91823,franchise,1345164276 +32298,91823,not a movie,1345164276 +32298,91823,short,1382083031 +32298,91823,talking animals,1345164276 +32298,91831,Catholicism,1324456951 +32298,91831,Christianity,1324456951 +32298,91831,exorcism,1346185762 +32298,91831,religion,1324456951 +32298,91869,puppets,1324582046 +32298,91873,choir,1324581998 +32298,91890,biography,1324770621 +32298,91890,England,1324770621 +32298,91890,history,1324770621 +32298,91890,Margaret Thatcher,1405756046 +32298,91890,politics,1324770621 +32298,91911,France,1324770449 +32298,91911,history,1324770449 +32298,91911,politics,1324770449 +32298,91911,true story,1324770449 +32298,91935,nudity (topless),1400279003 +32298,91952,painter,1325300408 +32298,91954,nudity (topless),1400278528 +32298,91974,franchise,1354058493 +32298,91974,vampires,1354058493 +32298,91976,wintry,1404477068 +32298,91983,nudity (topless),1400278652 +32298,91997,based on a book,1382667105 +32298,91997,Ernest Hemingway,1382667105 +32298,91997,nudity (topless),1400277943 +32298,92048,corruption,1387425939 +32298,92094,England,1398405447 +32298,92094,Germany,1398406597 +32298,92094,history,1398406594 +32298,92094,physics,1398406595 +32298,92094,science,1398406590 +32298,92094,World War I,1398406589 +32298,92094,youtube,1398406588 +32298,92152,nudity (topless),1401957558 +32298,92192,moon,1383367129 +32298,92192,space,1383367148 +32298,92200,based on a book,1412980062 +32298,92200,William Faulkner,1412980062 +32298,92234,military,1327211530 +32298,92234,segregation,1327211530 +32298,92234,World War II,1327211530 +32298,92243,based on a book,1382082731 +32298,92243,China,1382082731 +32298,92243,World War II,1382082731 +32298,92252,1970s,1326375313 +32298,92252,high school,1326375295 +32298,92252,Houston,1326375295 +32298,92252,jazz,1326375295 +32298,92252,teacher,1326375295 +32298,92252,Texas,1326375295 +32298,92255,nuns,1387281322 +32298,92259,IMDB Top 250,1390075968 +32298,92270,queer,1326603103 +32298,92307,nudity (full frontal),1400285126 +32298,92420,bullying,1345960769 +32298,92420,found footage,1404920815 +32298,92420,shaky camera,1345960783 +32298,92420,telekinesis,1345960849 +32298,92448,nudity (topless),1400278912 +32298,92448,pornography,1387274263 +32298,92453,nudity (topless),1400278491 +32298,92455,politics,1327208831 +32298,92475,computers,1372050785 +32298,92477,directorial debut,1386767008 +32298,92481,Wales,1370692370 +32298,92483,based on a book,1328576007 +32298,92483,disease,1328576038 +32298,92483,medicine,1328576010 +32298,92494,stand-up comedy,1344237202 +32298,92496,stand-up comedy,1345057297 +32298,92498,stand-up comedy,1334813748 +32298,92500,stand-up comedy,1345055751 +32298,92509,amnesia,1327950288 +32298,92509,memory,1327950289 +32298,92518,mecha,1386911706 +32298,92518,robots,1386911769 +32298,92535,stand-up comedy,1330411431 +32298,92648,New York City,1328099988 +32298,92652,nature,1328100047 +32298,92652,politics,1328100046 +32298,92652,small town,1328100046 +32298,92681,based on a book,1328223572 +32298,92681,island,1328223572 +32298,92681,Jules Verne,1328223572 +32298,92694,nudity (topless),1400279986 +32298,92702,country music,1328335185 +32298,92702,musicians,1379409921 +32298,92781,astronomy,1330411185 +32298,92781,New York City,1330411185 +32298,92783,jazz,1334462716 +32298,92783,Latin America,1334462717 +32298,92783,latin music,1334462714 +32298,92783,PBS,1338600590 +32298,92783,rock and roll,1334462715 +32298,92829,sequel,1369711711 +32298,92881,nudity (topless),1413917224 +32298,92887,musicians,1379408624 +32298,92887,rock and roll,1329209659 +32298,92904,AIDS,1329290343 +32298,92904,disease,1329290343 +32298,92904,San Francisco,1329290343 +32298,92944,France,1384266965 +32298,92944,Paris,1384266965 +32298,93006,Harry Potter,1344238101 +32298,93006,parody,1344238101 +32298,93008,Harry Potter,1344237920 +32298,93008,parody,1344237920 +32298,93008,time travel,1344237920 +32298,93040,American Civil War,1331024682 +32298,93040,civil war,1331024681 +32298,93040,history,1331024681 +32298,93142,nude black women,1408859579 +32298,93142,nudity (topless),1408859579 +32298,93172,nudity (full frontal),1400285070 +32298,93191,Christmas,1428841462 +32298,93265,Christianity,1351341937 +32298,93265,police,1351341937 +32298,93265,religion,1351341937 +32298,93270,found footage,1347175965 +32298,93270,high school,1347176017 +32298,93270,nudity (topless),1400277606 +32298,93270,shaky camera,1347175981 +32298,93272,based on a book,1335754183 +32298,93272,business,1390101417 +32298,93272,business is the antagonist,1390101417 +32298,93272,Dr. Seuss,1390100528 +32298,93272,environmental,1390100523 +32298,93272,nature,1390100526 +32298,93272,short,1390101417 +32298,93287,birds,1398143633 +32298,93322,based on a book,1370159334 +32298,93363,based on a book,1331437306 +32298,93363,big budget,1391749499 +32298,93363,Edgar Rice Burroughs,1331437306 +32298,93363,great ending,1352111281 +32298,93363,Mars,1331880179 +32298,93363,twist ending,1411100449 +32298,93404,musicians,1379407869 +32298,93404,rock and roll,1351733740 +32298,93422,remade,1402044184 +32298,93443,hockey,1404124629 +32298,93443,sports,1404124627 +32298,93457,nudity (full frontal),1401882780 +32298,93498,election,1351734183 +32298,93498,history,1351734183 +32298,93498,politics,1351734170 +32298,93502,atheism,1395878490 +32298,93502,Christianity,1395878489 +32298,93502,irreligion,1395878487 +32298,93502,nudity (topless),1400279088 +32298,93502,religion,1395878485 +32298,93502,sacrifice,1395878506 +32298,93510,based on a TV show,1402485006 +32298,93510,drugs,1348396846 +32298,93510,high school,1347520098 +32298,93510,police,1333932091 +32298,93510,undercover cop,1347520155 +32298,93510,watch the credits,1347520373 +32298,93512,siblings,1387426805 +32298,93563,one-liners,1386548938 +32298,93563,prison,1386548925 +32298,93563,prison escape,1387126572 +32298,93563,space,1386548923 +32298,93578,kidnapping,1382083283 +32298,93578,mountain climbing,1382083283 +32298,93578,mountains,1382083283 +32298,93578,Scotland,1382083283 +32298,93700,movie business,1333021086 +32298,93752,Pakistan,1351342395 +32298,93766,Greek mythology,1384580365 +32298,93790,nudity (topless),1402986954 +32298,93790,teacher,1347598493 +32298,93805,Nazis,1346912231 +32298,93831,crude humor,1360153151 +32298,93831,franchise,1348375707 +32298,93831,nudity (topless),1400280983 +32298,93831,reunion,1360483107 +32298,93840,directorial debut,1387430475 +32298,93840,nudity (topless),1400282898 +32298,93840,parody,1346913368 +32298,93855,satire,1344404091 +32298,93865,based on a book,1335599136 +32298,93939,nudity (topless),1401958743 +32298,93980,based on a TV show,1404301364 +32298,94011,nudity (topless),1400278522 +32298,94018,aliens,1338678565 +32298,94018,big budget,1391750226 +32298,94022,nudity (topless),1400278304 +32298,94024,Christianity,1335167632 +32298,94024,religion,1335167631 +32298,94068,nudity (topless),1407112489 +32298,94070,aging,1387278977 +32298,94070,India,1335655811 +32298,94074,musicians,1379409271 +32298,94074,rock and roll,1336013139 +32298,94130,bullying,1387426566 +32298,94142,nudity (topless),1402949764 +32298,94160,based on a poem,1335423589 +32298,94220,pornography,1335598217 +32298,94222,museum,1335598183 +32298,94271,space,1335655816 +32298,94278,nudity (topless),1401883422 +32298,94280,Africa,1336013267 +32298,94280,boarding school,1336013259 +32298,94280,South Africa,1336013256 +32298,94394,based on a book,1421499269 +32298,94394,Nathaniel Hawthorne,1421499269 +32298,94405,kidnapping,1355463683 +32298,94405,police,1355463683 +32298,94405,police corruption,1355463683 +32298,94431,based on a book,1382072989 +32298,94431,dance,1382072989 +32298,94431,George L. Du Maurier,1382072989 +32298,94431,short,1382072906 +32298,94466,made for TV,1372986996 +32298,94466,multiple storylines,1400653751 +32298,94466,not a movie,1372986996 +32298,94466,technology,1381721433 +32298,94466,television,1381740947 +32298,94466,TV series,1372987025 +32298,94469,Australia,1385010212 +32298,94469,dogs,1385010212 +32298,94478,ghosts,1360054625 +32298,94478,vampires,1360054512 +32298,94537,nudity (topless),1400278190 +32298,94653,nudity (topless),1400277202 +32298,94657,dance,1382072896 +32298,94657,short,1382072916 +32298,94729,World War II,1349330866 +32298,94739,climate change,1351342907 +32298,94739,island,1351342907 +32298,94739,natural disaster,1351342907 +32298,94739,nature,1351342907 +32298,94746,nudity (topless),1400279054 +32298,94752,doctors,1381643308 +32298,94772,astronomy,1338096737 +32298,94772,based on a play,1338371207 +32298,94772,biography,1338096731 +32298,94772,history,1338096725 +32298,94772,science,1338096729 +32298,94777,aliens,1338096682 +32298,94777,big budget,1391749929 +32298,94777,franchise,1338096655 +32298,94777,time travel,1338096682 +32298,94780,based on a book,1347350647 +32298,94780,directorial debut,1360046536 +32298,94780,fairy tale,1347350646 +32298,94780,magic,1360046557 +32298,94864,aliens,1338705151 +32298,94864,bad plot,1351680582 +32298,94864,franchise,1351680408 +32298,94864,prequel,1351680400 +32298,94864,religion,1351680581 +32298,94864,unpredictable,1386304789 +32298,94919,nudity (full frontal),1400285082 +32298,94931,nudity (full frontal),1402872485 +32298,94939,drums,1385915533 +32298,94939,musicians,1385915558 +32298,94951,short,1339047221 +32298,94959,coming of age,1371628138 +32298,94959,forest,1371628072 +32298,94959,island,1363076011 +32298,94959,quirky,1347791911 +32298,94959,small town,1347791934 +32298,94985,prison,1428842074 +32298,95058,based on a book,1340770577 +32298,95058,New York City,1340770577 +32298,95058,nudity (full frontal),1400285693 +32298,95064,based on a book,1394187016 +32298,95064,nudity (topless),1400278076 +32298,95069,monkey,1342608184 +32298,95088,heartwarming,1388666215 +32298,95088,journalism,1388666172 +32298,95088,misfits,1388665437 +32298,95088,time travel,1388666175 +32298,95105,circus,1352205231 +32298,95105,talking animals,1351238932 +32298,95167,bears,1408997611 +32298,95167,Pixar,1385446513 +32298,95167,royalty,1351771577 +32298,95167,Scotland,1351771564 +32298,95167,watch the credits,1351772608 +32298,95197,based on a book,1378620577 +32298,95197,France,1378620547 +32298,95197,nudity (topless),1400279340 +32298,95197,Paris,1378620547 +32298,95199,pregnancy,1340405288 +32298,95207,American Civil War,1422230277 +32298,95207,civil war,1422230272 +32298,95207,vampires,1349050007 +32298,95218,ballet,1340669540 +32298,95218,dance,1340669540 +32298,95230,based on a play,1340669511 +32298,95230,Shakespeare,1340669512 +32298,95237,nudity (topless),1425182652 +32298,95294,dance,1342608331 +32298,95302,Arctic,1368313069 +32298,95302,polar,1368313069 +32298,95307,musicians,1379409041 +32298,95307,rock and roll,1360831542 +32298,95311,Pixar,1385026348 +32298,95311,short,1385026345 +32298,95313,Pixar,1341224187 +32298,95352,based on a book,1341224215 +32298,95352,Robert Louis Stevenson,1341224215 +32298,95375,Pixar,1385026600 +32298,95375,short,1385026599 +32298,95377,Pixar,1385026528 +32298,95377,short,1385026530 +32298,95441,buddy movie,1355891699 +32298,95441,crude humor,1355891689 +32298,95441,directorial debut,1354057536 +32298,95441,nudity (topless),1400282203 +32298,95449,Bechdel Test:Fail,1385446441 +32298,95449,dance,1370688430 +32298,95449,nudity (topless),1400281077 +32298,95449,strippers,1370688416 +32298,95461,cars,1342608358 +32298,95488,based on a book,1361796956 +32298,95488,Jack Kerouac,1361796956 +32298,95488,nudity (topless),1400655910 +32298,95488,road trip,1361796956 +32298,95494,ballet,1341299476 +32298,95494,dance,1341299476 +32298,95504,alternate reality,1384388458 +32298,95508,nudity (topless),1400279255 +32298,95508,terrorism,1386910893 +32298,95510,big budget,1391750357 +32298,95510,comic book,1344404283 +32298,95510,double life,1351489649 +32298,95510,jazz club,1381493239 +32298,95510,Marvel,1344404283 +32298,95510,superhero,1344404283 +32298,95510,watch the credits,1351489893 +32298,95539,nudity (topless),1408859631 +32298,95541,short,1382073373 +32298,95543,franchise,1342608519 +32298,95543,ocean,1356605427 +32298,95543,pirates,1356605427 +32298,95543,talking animals,1344308930 +32298,95558,Louisiana,1355867855 +32298,95606,biography,1342607903 +32298,95606,history,1342607903 +32298,95606,made for TV,1342607903 +32298,95606,US President,1342607903 +32298,95654,Pixar,1385026547 +32298,95654,short,1385026544 +32298,95688,nudity (topless),1429093265 +32298,95695,Islam,1344164555 +32298,95695,New York City,1344164555 +32298,95695,religion,1344164555 +32298,95717,based on a book,1354058351 +32298,95717,island,1354058351 +32298,95717,made for TV,1354058351 +32298,95717,Robert Louis Stevenson,1354058351 +32298,95720,aliens,1344164726 +32298,95720,nudity (topless),1400280905 +32298,95744,New York City,1360578753 +32298,95744,nudity (topless),1400279908 +32298,95744,siblings,1360579466 +32298,95748,based on a book,1394789218 +32298,95748,Herman Melville,1394789219 +32298,95750,based on a book,1382073444 +32298,95756,based on a book,1342607790 +32298,95756,Dr. Seuss,1342607790 +32298,95761,based on a play,1371885215 +32298,95761,nudity (full frontal),1400285315 +32298,95765,based on a book,1344164962 +32298,95765,Dr. Seuss,1344164962 +32298,95765,short,1344164962 +32298,95767,based on a book,1430179052 +32298,95830,drums,1387390213 +32298,95830,India,1387390214 +32298,95837,Christmas,1344164771 +32298,95839,based on a book,1344164753 +32298,95839,Charles Dickens,1344164753 +32298,95839,Christmas,1344164753 +32298,95856,Pixar,1344164452 +32298,95856,short,1344164451 +32298,95858,Pixar,1385026532 +32298,95858,short,1385026534 +32298,95873,original,1398246235 +32298,95873,quirky,1379317914 +32298,95873,writers,1379317914 +32298,95875,based on a book,1344164599 +32298,95875,cyberpunk,1344164599 +32298,95875,dystopia,1356684685 +32298,95875,espionage,1356684682 +32298,95875,memory,1344164630 +32298,95875,Philip K. Dick,1344164599 +32298,95875,post-apocalyptic,1356684694 +32298,95875,remake,1344164599 +32298,95875,robots,1356684608 +32298,95939,drinking,1385025298 +32298,95939,drugs,1395545907 +32298,95939,Scotland,1385121091 +32298,95945,nudity (topless),1414531525 +32298,96028,nudity (topless),1400277952 +32298,96034,nudity (topless),1403945710 +32298,96052,Aesop,1344164388 +32298,96052,based on a book,1369992367 +32298,96056,cryptozoology,1344164324 +32298,96056,monster,1344164324 +32298,96058,musicians,1379409665 +32298,96075,England,1361582358 +32298,96075,made for TV,1344164078 +32298,96079,England,1393378456 +32298,96079,franchise,1344163865 +32298,96079,James Bond,1344163864 +32298,96079,London,1393378453 +32298,96079,Scotland,1393378670 +32298,96079,trains,1356851586 +32298,96079,Turkey,1393378676 +32298,96110,election,1360571451 +32298,96110,politics,1360571440 +32298,96110,satire,1360571442 +32298,96181,Nazis,1372837530 +32298,96181,nudity (full frontal),1400285193 +32298,96181,resistance movement,1372837530 +32298,96181,World War II,1372837530 +32298,96252,martial arts,1345373751 +32298,96266,nudity (topless),1400278539 +32298,96281,ghosts,1345357487 +32298,96281,small town,1356167200 +32298,96281,zombies,1345357487 +32298,96286,martial arts,1345373743 +32298,96337,nudity (topless),1400278293 +32298,96370,nudity (topless),1400616183 +32298,96417,corruption,1357041960 +32298,96417,cycling,1386906609 +32298,96417,happy ending,1357041973 +32298,96417,Manhattan,1357041950 +32298,96417,New York City,1357041950 +32298,96417,original,1386906656 +32298,96417,police,1346157776 +32298,96417,police corruption,1357041763 +32298,96432,corruption,1346408274 +32298,96432,nudity (topless),1400280950 +32298,96432,police,1346408274 +32298,96432,police corruption,1346408274 +32298,96448,nudity (full frontal),1400285753 +32298,96488,musicians,1385956750 +32298,96512,London,1346678374 +32298,96530,nudity (topless),1400278343 +32298,96532,astronomy,1351342625 +32298,96532,science,1351342625 +32298,96567,writers,1385201564 +32298,96588,choir,1381584597 +32298,96588,college,1351247471 +32298,96588,musicians,1381584596 +32298,96588,predictable,1381584732 +32298,96588,vocalists,1381584594 +32298,96610,suicide,1357030743 +32298,96610,telekinesis,1357030766 +32298,96610,time travel,1357030745 +32298,96612,nudity (topless),1400280429 +32298,96612,true story,1390843049 +32298,96629,nudity (topless),1400298848 +32298,96631,nudity (topless),1400295404 +32298,96655,Alfred P. Sloan Feature Film Prize,1379246041 +32298,96655,robots,1379246038 +32298,96664,Christianity,1347427985 +32298,96664,Islam,1347427985 +32298,96664,religion,1347427985 +32298,96667,China,1347427721 +32298,96691,franchise,1354058440 +32298,96700,multiple storylines,1393298545 +32298,96700,nudity (topless),1408859034 +32298,96700,remake,1393298545 +32298,96724,musicians,1379410747 +32298,96724,South Africa,1347675432 +32298,96737,corruption,1356595873 +32298,96737,drugs,1354056972 +32298,96737,dystopia,1356595881 +32298,96737,police,1354056972 +32298,96737,police corruption,1356595873 +32298,96737,post-apocalyptic,1354056972 +32298,96737,slow motion,1356595927 +32298,96737,stylized,1356595917 +32298,96751,business,1347882471 +32298,96753,Christianity,1347843788 +32298,96753,college,1347843780 +32298,96753,religion,1347843788 +32298,96755,nudity (topless),1400277924 +32298,96762,Detroit,1347882448 +32298,96762,Michigan,1347882448 +32298,96771,musicians,1379409804 +32298,96811,police,1348128990 +32298,96815,nudity (full frontal),1403933128 +32298,96817,boxing,1348294375 +32298,96817,sports,1348294375 +32298,96821,based on a book,1348294333 +32298,96821,high school,1348294333 +32298,96834,baseball,1348294197 +32298,96834,sports,1348294197 +32298,96849,1960s,1348973877 +32298,96849,musicians,1379410111 +32298,96849,siblings,1348973878 +32298,96849,vocalists,1348973878 +32298,96861,kidnapping,1348973722 +32298,96865,movie business,1348973768 +32298,96868,musicians,1379409683 +32298,96919,cheerleading,1348973554 +32298,96919,college,1348973560 +32298,96919,drugs,1348973554 +32298,96919,nudity (topless),1400274744 +32298,96921,zombies,1348973337 +32298,96923,nudity (topless),1407213332 +32298,96927,college,1348973288 +32298,96941,politics,1348973255 +32298,96941,US President,1348973255 +32298,96943,nudity (topless),1407218008 +32298,96945,based on a book,1423123207 +32298,96945,nudity (topless),1407218446 +32298,96952,environmental,1348973207 +32298,96960,robots,1348973136 +32298,96962,based on a play,1348973088 +32298,96969,small town,1348973055 +32298,96969,writers,1348973055 +32298,96975,high school,1348972932 +32298,96991,based on a play,1387426426 +32298,96991,musicians,1387426426 +32298,96991,rhythm & blues,1387426427 +32298,96991,true story,1387426426 +32298,96991,Vietnam,1348972880 +32298,96991,Vietnam War,1348972848 +32298,96991,vocalists,1348972880 +32298,97002,hip hop,1349070617 +32298,97002,vocalists,1349070617 +32298,97024,nudity (topless),1401587492 +32298,97051,nudity (topless),1400278083 +32298,97059,musicians,1379409060 +32298,97132,urban,1351342085 +32298,97168,Jamaica,1400512841 +32298,97168,musicians,1384392265 +32298,97168,reggae,1384392265 +32298,97172,dogs,1356577831 +32298,97188,found footage,1351248810 +32298,97188,serial killer,1428841921 +32298,97216,nudity (topless),1402284729 +32298,97225,hotel,1359969147 +32298,97225,vampires,1359969147 +32298,97232,nudity (topless),1400279359 +32298,97242,based on a TV show,1386911841 +32298,97242,Doctor Who,1386911827 +32298,97242,time travel,1386911832 +32298,97244,directorial debut,1404172875 +32298,97244,high school,1404172876 +32298,97304,CIA,1354056240 +32298,97304,Iran,1351248650 +32298,97304,Middle East,1351248655 +32298,97304,true story,1351248652 +32298,97306,movie business,1367311417 +32298,97306,nudity (topless),1400282231 +32298,97306,serial killer,1367311406 +32298,97306,writers,1367311398 +32298,97324,Ayn Rand,1351248964 +32298,97324,based on a book,1351136887 +32298,97328,college,1384393002 +32298,97388,France,1350214525 +32298,97388,nudity (topless),1400279125 +32298,97388,royalty,1350214525 +32298,97393,drugs,1356578046 +32298,97395,wrongly accused,1351136791 +32298,97397,politics,1350372683 +32298,97542,movie business,1351238301 +32298,97597,nudity (topless),1429540001 +32298,97639,AIDS,1351238210 +32298,97639,disease,1351238210 +32298,97692,computers,1351238113 +32298,97692,hackers,1351238113 +32298,97692,internet,1351238113 +32298,97694,forest,1351237993 +32298,97715,nudity (topless),1402152077 +32298,97740,siblings,1351237595 +32298,97742,serial killer,1351237528 +32298,97744,Africa,1351237463 +32298,97744,journalism,1351237463 +32298,97752,based on a book,1351237415 +32298,97752,complicated,1384555774 +32298,97752,David Mitchell,1351237415 +32298,97752,multiple roles,1369614902 +32298,97752,multiple storylines,1369614899 +32298,97752,nudity (topless),1400282769 +32298,97755,movie business,1351237317 +32298,97763,suicide,1351237239 +32298,97779,business,1351342774 +32298,97779,computers,1351342774 +32298,97792,nudity (topless),1414552284 +32298,97792,serial killer,1414552284 +32298,97808,nudity (topless),1415093399 +32298,97836,high school,1354057856 +32298,97836,inspirational,1379776058 +32298,97836,teacher,1379776054 +32298,97868,basketball,1351646761 +32298,97868,Lithuania,1351646761 +32298,97868,Olympics,1351646761 +32298,97868,sports,1351646761 +32298,97870,nudity (full frontal),1401959755 +32298,97876,movie business,1351646695 +32298,97882,nudity (topless),1408858561 +32298,97908,coming of age,1428734020 +32298,97908,high school,1428734015 +32298,97908,nudity (topless),1400278906 +32298,97908,prostitution,1428734018 +32298,97913,cars,1362798291 +32298,97913,racing,1362798291 +32298,97913,video games,1356578309 +32298,97921,mental illness,1351931188 +32298,97923,nudity (full frontal),1400284832 +32298,97933,Palestine,1351931142 +32298,97938,acting debut,1404625566 +32298,97938,based on a book,1351931035 +32298,97938,India,1372234805 +32298,97938,island,1372234805 +32298,97938,ocean,1372234770 +32298,97938,pretentious,1395879600 +32298,97938,religion,1372300091 +32298,97938,shipwreck,1372235271 +32298,97938,slow,1372235293 +32298,97938,Yann Martel,1351931035 +32298,97946,post-apocalyptic,1351931009 +32298,97948,football,1351930983 +32298,97948,sports,1351930983 +32298,97957,nudity (topless),1409186144 +32298,97971,Shakespeare,1353438598 +32298,98015,nudity (topless),1400278545 +32298,98017,classical music,1352334795 +32298,98065,board game,1354057083 +32298,98065,chess,1352718938 +32298,98087,London,1353438479 +32298,98087,zombies,1353438479 +32298,98107,nudity (topless),1419100731 +32298,98124,Batman,1412030106 +32298,98154,American Civil War,1354056334 +32298,98154,civil war,1354056333 +32298,98154,history,1354056333 +32298,98154,politics,1354056333 +32298,98154,slavery,1354056334 +32298,98154,US President,1354056333 +32298,98175,New York City,1354058136 +32298,98175,vampires,1354058136 +32298,98193,Hulu,1411179760 +32298,98193,military,1353438303 +32298,98193,rape,1353438303 +32298,98193,youtube,1398493549 +32298,98203,vampires,1353438258 +32298,98211,high school,1353438199 +32298,98211,Shakespeare,1353438625 +32298,98243,based on a book,1369793275 +32298,98243,Santa Claus,1369889619 +32298,98243,watch the credits,1369889495 +32298,98243,whimsical,1369889605 +32298,98296,siblings,1354055815 +32298,98353,Russia,1354055757 +32298,98361,bleak,1379591050 +32298,98361,vampires,1354055669 +32298,98369,military,1354055529 +32298,98373,dance,1354055512 +32298,98373,Florida,1354055512 +32298,98373,franchise,1354055512 +32298,98373,Miami,1354055512 +32298,98381,franchise,1354055413 +32298,98383,movie business,1354055384 +32298,98387,movie business,1354055368 +32298,98391,nudity (topless),1399884969 +32298,98406,college,1354055317 +32298,98406,rape,1354055317 +32298,98409,movie business,1354055254 +32298,98413,movie business,1354055184 +32298,98439,college,1354055144 +32298,98439,football,1354055144 +32298,98439,sports,1354055144 +32298,98443,biography,1354055054 +32298,98443,writers,1354055054 +32298,98445,drugs,1354181915 +32298,98447,high school,1354181877 +32298,98481,nudity (topless),1400278149 +32298,98491,black and white,1392614431 +32298,98491,Disney,1392614003 +32298,98491,short,1382178745 +32298,98491,whimsical,1392614431 +32298,98491,youtube,1392616233 +32298,98583,Latin America,1356589884 +32298,98583,latin music,1356577956 +32298,98583,Mexico,1356589884 +32298,98583,musicians,1379408637 +32298,98795,history,1392527534 +32298,98795,jazz,1392527534 +32298,98795,made for TV,1392527541 +32298,98795,musicians,1392527636 +32298,98795,PBS,1392527534 +32298,98809,based on a book,1355228537 +32298,98809,big budget,1355228748 +32298,98809,franchise,1386943467 +32298,98809,long,1362991204 +32298,98809,magic,1355228554 +32298,98809,New Zealand,1362991236 +32298,98809,scenic,1362991225 +32298,98809,Tolkien,1355228537 +32298,98838,gambling,1384744830 +32298,98838,Las Vegas,1384744829 +32298,98838,nudity (topless),1406663942 +32298,98845,lacrosse,1384999870 +32298,98845,Native Americans,1384999864 +32298,98845,sports,1384999867 +32298,98911,nudity (topless),1407117229 +32298,98961,Afghanistan,1355944610 +32298,98961,assassination,1355944610 +32298,98961,military,1355944610 +32298,98961,Pakistan,1355944610 +32298,98961,terrorism,1355944610 +32298,98991,nudity (topless),1400416311 +32298,99007,based on a book,1370578463 +32298,99007,post-apocalyptic,1409515098 +32298,99007,zombies,1363310571 +32298,99012,nudity (topless),1400278088 +32298,99020,politics,1355944316 +32298,99024,asylum,1355944259 +32298,99024,mental illness,1355944259 +32298,99026,nudity (topless),1430194398 +32298,99041,nudity (topless),1406479583 +32298,99041,religion,1355944210 +32298,99043,based on a book,1356042116 +32298,99043,India,1356042118 +32298,99043,Thomas Hardy,1356042143 +32298,99054,nudity (full frontal),1400284957 +32298,99058,nudity (topless),1400278917 +32298,99068,nudity (topless),1409306056 +32298,99068,serial killer,1356041906 +32298,99068,World War I,1356041906 +32298,99087,soccer,1356041761 +32298,99087,sports,1356041761 +32298,99106,road trip,1356167143 +32298,99114,brutal,1356577604 +32298,99114,long,1367113647 +32298,99114,slavery,1356577722 +32298,99117,nudity (topless),1400280842 +32298,99117,sequel,1356343419 +32298,99126,nudity (full frontal),1407111003 +32298,99145,natural disaster,1372976618 +32298,99145,ocean,1372976618 +32298,99145,Thailand,1372976618 +32298,99149,19th century,1356343397 +32298,99149,based on a book,1356343303 +32298,99149,based on a play,1390076791 +32298,99149,France,1356343397 +32298,99149,great soundtrack,1390076958 +32298,99149,long,1390084434 +32298,99149,police,1390082318 +32298,99149,revolution,1390076808 +32298,99149,Victor Hugo,1356343302 +32298,99178,based on a book,1400668863 +32298,99178,divorce,1400668572 +32298,99178,high school,1382667324 +32298,99178,single parents,1400668572 +32298,99178,small town,1400668571 +32298,99178,writers,1400668510 +32298,99220,aging,1392810240 +32298,99220,based on a play,1405315362 +32298,99220,classical music,1384393100 +32298,99220,directorial debut,1405315362 +32298,99220,musicians,1384393100 +32298,99222,Christmas,1358051674 +32298,99222,nudity (topless),1400278370 +32298,99343,nudity (topless),1429093307 +32298,99345,election,1357176477 +32298,99345,politics,1357176477 +32298,99349,movie business,1356787611 +32298,99437,drugs,1367095973 +32298,99437,quotable,1367096004 +32298,99437,surreal,1367095978 +32298,99437,watch the credits,1367097071 +32298,99439,fashion,1357176354 +32298,99441,nature,1357176314 +32298,99446,fashion,1357176274 +32298,99448,Star Trek,1357176093 +32298,99450,Native Americans,1357176248 +32298,99452,country music,1357176208 +32298,99468,Manhattan,1357176189 +32298,99468,New York City,1357176189 +32298,99468,rape,1357176189 +32298,99468,wrongly accused,1357176189 +32298,99491,Mississippi,1357176144 +32298,99679,nudity (topless),1400278325 +32298,99706,movie business,1400417287 +32298,99728,gangsters,1382761844 +32298,99741,based on a book,1365117019 +32298,99746,nudity (topless),1400278595 +32298,99787,haunted house,1358147130 +32298,99795,prostitution,1358147099 +32298,99811,drums,1385964439 +32298,99811,musicians,1385964437 +32298,99811,rock and roll,1385964437 +32298,99843,Catholicism,1387428397 +32298,99843,child abuse,1387428397 +32298,99843,Christianity,1387428397 +32298,99843,religion,1387428397 +32298,99906,nudity (full frontal),1429540080 +32298,99912,forest,1369793334 +32298,99912,haunted house,1369809494 +32298,99957,nudity (topless),1400279841 +32298,99989,nudity (topless),1400617860 +32298,100008,business,1358941869 +32298,100008,politics,1358941869 +32298,100013,disability,1358941811 +32298,100013,musicians,1379408866 +32298,100046,Africa,1358941753 +32298,100046,Madagascar,1358941753 +32298,100046,nature,1358941727 +32298,100050,aviation,1359453385 +32298,100050,military,1359453385 +32298,100050,nuclear war,1359453385 +32298,100050,World War II,1359453385 +32298,100083,nudity (full frontal),1402153171 +32298,100087,nudity (topless),1421529983 +32298,100089,Star Wars,1387950600 +32298,100155,Iran,1359453266 +32298,100155,Middle East,1359453266 +32298,100159,black comedy,1400685779 +32298,100159,road trip,1400685774 +32298,100163,magic,1369386511 +32298,100163,nudity (topless),1400280858 +32298,100163,steampunk,1369386482 +32298,100169,pornography,1359453184 +32298,100185,male nudity,1407109172 +32298,100185,nudity (full frontal),1400284908 +32298,100185,unsimulated sex,1400286824 +32298,100188,politics,1359501859 +32298,100188,Sweden,1359501859 +32298,100190,poverty,1359501788 +32298,100222,fashion,1359702764 +32298,100238,based on a book,1401588959 +32298,100238,nudity (topless),1401588959 +32298,100246,skateboarding,1360068389 +32298,100287,sports,1360068248 +32298,100289,business,1360068229 +32298,100294,short,1382073042 +32298,100338,Judaism,1360224565 +32298,100338,religion,1360224565 +32298,100342,easily confused with other movie(s) (title),1386248495 +32298,100342,physics,1360224454 +32298,100342,science,1360224454 +32298,100342,Stephen Hawking,1360224454 +32298,100347,writers,1362970615 +32298,100361,gay,1387371225 +32298,100361,queer,1360479824 +32298,100363,franchise,1360479800 +32298,100363,video game adaptation,1360479801 +32298,100365,Africa,1360479724 +32298,100365,gay,1387371246 +32298,100365,politics,1360479724 +32298,100365,queer,1360479724 +32298,100365,Uganda,1360479724 +32298,100383,business,1370674117 +32298,100383,corruption,1370674117 +32298,100383,drugs,1362970626 +32298,100383,nudity (topless),1400281881 +32298,100383,psychology,1370674069 +32298,100383,twist ending,1370674141 +32298,100390,road trip,1366540019 +32298,100436,Israel,1387428733 +32298,100436,Middle East,1392437516 +32298,100440,World War II,1392437610 +32298,100448,election,1360841785 +32298,100448,politics,1360841785 +32298,100450,franchise,1413926253 +32298,100452,nudity (topless),1407472856 +32298,100487,based on a book,1385545107 +32298,100498,CIA,1360841640 +32298,100498,franchise,1360841640 +32298,100498,Russia,1370522232 +32298,100507,college,1370594243 +32298,100507,drinking,1370594243 +32298,100515,Africa,1365049386 +32298,100517,Hinduism,1360967516 +32298,100517,India,1360967516 +32298,100517,religion,1360967515 +32298,100527,North Carolina,1370578450 +32298,100529,nudity (topless),1400416127 +32298,100538,based on a book,1386566455 +32298,100540,television,1361176923 +32298,100553,nature,1361176886 +32298,100556,communism,1390343649 +32298,100556,history,1390343649 +32298,100556,Indonesia,1390343649 +32298,100579,franchise,1361176862 +32298,100579,nudity (full frontal),1400285652 +32298,100581,movie business,1361176840 +32298,100611,aliens,1369666512 +32298,100617,stand-up comedy,1367297889 +32298,100620,nudity (topless),1423124033 +32298,100645,movie business,1361424233 +32298,100651,based on a book,1361863826 +32298,100651,made for TV,1361863825 +32298,100651,Olympics,1361863826 +32298,100651,sports,1361863826 +32298,100651,swimming,1361863826 +32298,100651,true story,1361863826 +32298,100714,Greece,1394014820 +32298,100714,nudity (topless),1400281629 +32298,100719,wrestling,1361863701 +32298,100723,nudity (topless),1400301363 +32298,100737,undercover cop,1385545470 +32298,100745,computers,1361863534 +32298,100745,internet,1361863535 +32298,100745,youtube,1398493585 +32298,100799,doctors,1361863479 +32298,100799,medicine,1361863479 +32298,100838,Christianity,1361863430 +32298,100838,religion,1361863430 +32298,100840,painter,1361863412 +32298,100884,Christianity,1362114590 +32298,100884,Islam,1362114590 +32298,100884,religion,1362114590 +32298,101003,superhero,1362114502 +32298,101003,Superman,1362114502 +32298,101025,fairy tale,1370072419 +32298,101025,giants,1370072463 +32298,101070,Islam,1387296169 +32298,101070,religion,1387296169 +32298,101070,Saudi Arabia,1387296169 +32298,101079,lesbian,1375246440 +32298,101079,nudity (topless),1400278570 +32298,101079,queer,1375246433 +32298,101097,submarine,1362400587 +32298,101106,musicians,1379408663 +32298,101106,rock and roll,1362970570 +32298,101112,big budget,1391750132 +32298,101112,magic,1369399353 +32298,101112,stage magic,1369399353 +32298,101112,whimsical,1369399362 +32298,101133,movie business,1363167444 +32298,101133,San Francisco,1363167436 +32298,101142,inspirational,1379214204 +32298,101142,inventor,1379215063 +32298,101142,prehistoric,1379214219 +32298,101160,Mormon,1363167357 +32298,101160,religion,1363167357 +32298,101180,based on a book,1394789006 +32298,101180,dragons,1394789006 +32298,101180,Herman Melville,1394789006 +32298,101182,superhero,1363167303 +32298,101216,black and white,1363167246 +32298,101216,boxing,1363167246 +32298,101216,sports,1363167246 +32298,101218,fishing,1363167220 +32298,101218,ocean,1363167220 +32298,101220,Detroit,1363167192 +32298,101220,firefighters,1363167192 +32298,101220,Michigan,1363167192 +32298,101224,nudity (topless),1419388274 +32298,101233,based on a play,1363167151 +32298,101233,Tennessee Williams,1363167151 +32298,101235,based on a book,1363166923 +32298,101235,F. Scott Fitzgerald,1363166923 +32298,101237,immigrants,1363166820 +32298,101237,politics,1363166858 +32298,101243,controversial,1401506566 +32298,101243,nudity (full frontal),1400286319 +32298,101243,unsimulated sex,1400286311 +32298,101283,stage magic,1404039937 +32298,101285,drugs,1373428463 +32298,101285,Florida,1400618816 +32298,101285,guns,1373428467 +32298,101285,nudity (topless),1400280890 +32298,101285,twist ending,1372736253 +32298,101329,choir,1363762786 +32298,101329,classical music,1363762785 +32298,101329,musicians,1379410957 +32298,101329,vocalists,1379410957 +32298,101407,Afghanistan,1375619946 +32298,101425,based on a book,1387129543 +32298,101444,natural disaster,1403444333 +32298,101444,Russia,1403444333 +32298,101505,nudity (full frontal),1400284942 +32298,101525,bank robbery,1370578383 +32298,101674,zombies,1365040126 +32298,101678,musicians,1379409561 +32298,101678,rhythm & blues,1365117178 +32298,101680,Colorado,1365117134 +32298,101680,skiing,1365117134 +32298,101680,wintry,1390525203 +32298,101689,musicians,1379409455 +32298,101703,Australia,1365215859 +32298,101703,based on a book,1365215885 +32298,101703,hackers,1365215859 +32298,101703,internet,1365215859 +32298,101703,true story,1365215859 +32298,101715,nudity (topless),1407104704 +32298,101739,remake,1428336245 +32298,101741,amnesia,1374315501 +32298,101741,heist,1374315501 +32298,101741,memory,1374315501 +32298,101741,nudity (full frontal),1400285777 +32298,101741,psychology,1374315466 +32298,101741,revenge,1374315528 +32298,101741,unrealistic,1374315466 +32298,101756,musicians,1381654861 +32298,101756,nudity (topless),1400278378 +32298,101763,nudity (full frontal),1400285086 +32298,101799,nudity (topless),1400278004 +32298,101825,nudity (full frontal),1407110873 +32298,101864,aliens,1374393081 +32298,101864,cloning,1374393207 +32298,101864,post-apocalyptic,1374393247 +32298,101864,space,1374393083 +32298,101891,skateboarding,1366160443 +32298,101891,sports,1366160443 +32298,101893,nudity (topless),1400279301 +32298,101895,baseball,1369709747 +32298,101895,sports,1369709747 +32298,101895,true story,1369709747 +32298,101918,assassin,1384813244 +32298,101918,Islam,1384813244 +32298,101918,Pakistan,1384813243 +32298,101918,politics,1384813243 +32298,101918,religion,1384813243 +32298,101947,musicians,1379409005 +32298,101947,rock and roll,1366160343 +32298,101969,bittersweet,1391175982 +32298,101969,history,1391175183 +32298,101969,inventor,1391175186 +32298,101969,radio,1391175187 +32298,101969,youtube,1390074833 +32298,101973,ensemble cast,1396489304 +32298,101973,multiple storylines,1396488356 +32298,101973,nudity (topless),1400280140 +32298,101973,revenge,1396489129 +32298,101973,suicide,1396488713 +32298,102028,Arctic,1368312788 +32298,102028,bears,1368312788 +32298,102028,nature,1368312788 +32298,102028,polar,1368313112 +32298,102033,Florida,1376456218 +32298,102033,kidnapping,1376307762 +32298,102033,Miami,1376456218 +32298,102051,comic book,1386056119 +32298,102062,musicians,1392437462 +32298,102062,punk rock,1392437462 +32298,102062,rock and roll,1392437462 +32298,102113,nudity (topless),1407096897 +32298,102123,apocalypse,1379144935 +32298,102123,demons,1379144939 +32298,102123,movie business,1379144956 +32298,102125,big budget,1391750539 +32298,102125,comic book,1376731441 +32298,102125,Marvel,1370339382 +32298,102125,superhero,1376731395 +32298,102125,terrorism,1376731411 +32298,102176,Biblical,1367435505 +32298,102176,Christianity,1367435505 +32298,102176,religion,1367435505 +32298,102178,nudity (topless),1403945856 +32298,102194,fugitive,1370501965 +32298,102199,aliens,1367435454 +32298,102217,stand-up comedy,1367435600 +32298,102235,CIA,1368312845 +32298,102235,Osama bin Laden,1368312845 +32298,102235,terrorism,1368312845 +32298,102286,dysfunctional family,1386218778 +32298,102286,hostage,1386218873 +32298,102286,obscure sports,1386219329 +32298,102352,nudity (topless),1400277910 +32298,102354,nudity (topless),1404657604 +32298,102356,nudity (topless),1411824381 +32298,102369,movie business,1391479165 +32298,102407,based on a book,1376307853 +32298,102407,F. Scott Fitzgerald,1376307853 +32298,102445,aliens,1368505522 +32298,102445,based on a TV show,1368505522 +32298,102445,franchise,1368505522 +32298,102445,revenge,1377173234 +32298,102445,space,1368505522 +32298,102445,Star Trek,1368505522 +32298,102497,based on a book,1420191451 +32298,102497,Elmore Leonard,1420191451 +32298,102497,made for TV,1420191451 +32298,102557,nudity (topless),1400278156 +32298,102557,vampires,1380163803 +32298,102604,serial killer,1369387186 +32298,102672,history,1369387142 +32298,102672,New York City,1369387142 +32298,102672,PBS,1369387132 +32298,102684,Bangkok,1369601282 +32298,102684,brutal,1374406217 +32298,102684,revenge,1374406163 +32298,102684,slow,1374406203 +32298,102684,Thailand,1369601282 +32298,102686,franchise,1369601211 +32298,102716,cars,1369601166 +32298,102716,franchise,1370159887 +32298,102720,based on a book,1369709850 +32298,102720,forest,1375899320 +32298,102720,nature,1375899318 +32298,102720,royalty,1375899311 +32298,102720,talking animals,1375899336 +32298,102749,superhero,1369601123 +32298,102758,based on a book,1369665891 +32298,102758,made for TV,1369665890 +32298,102758,Ursula K. Le Guin,1369665890 +32298,102779,television,1369601085 +32298,102783,Tennessee Williams,1370164755 +32298,102800,dance,1428336035 +32298,102802,nudity (topless),1401569942 +32298,102862,urban,1370164615 +32298,102876,musicians,1379410562 +32298,102876,rock and roll,1370164573 +32298,102880,aliens,1379429716 +32298,102880,far future,1379515392 +32298,102880,space,1379515190 +32298,102903,police,1377603072 +32298,102903,police corruption,1377603072 +32298,102903,stage magic,1377603107 +32298,102905,movie business,1370164481 +32298,102905,nudity (topless),1400676732 +32298,102905,pornography,1370164481 +32298,102905,true story,1382171261 +32298,102912,Japan,1370164413 +32298,102912,nuclear war,1370164413 +32298,102912,World War II,1370164413 +32298,102917,Iraq War,1370164355 +32298,102917,journalism,1370164355 +32298,102917,politics,1370164355 +32298,102917,US President,1370164355 +32298,102917,Vietnam War,1370164355 +32298,102974,nudity (topless),1400278282 +32298,102989,Africa,1370501597 +32298,102989,South Africa,1370501598 +32298,102993,coming of age,1381837988 +32298,102993,heartwarming,1381838000 +32298,103027,based on a play,1370735224 +32298,103027,Shakespeare,1370735224 +32298,103030,adoption,1370851065 +32298,103030,queer,1370851060 +32298,103032,unsimulated sex,1400288978 +32298,103042,aliens,1381920001 +32298,103042,big budget,1391749853 +32298,103042,comic book,1370850955 +32298,103042,contrived romance,1381920063 +32298,103042,DC Comics,1381920548 +32298,103042,franchise,1381920547 +32298,103042,military,1381920095 +32298,103042,superhero,1370850955 +32298,103042,Superman,1370850955 +32298,103052,London,1370850846 +32298,103052,New York City,1370850827 +32298,103052,Paris,1370850844 +32298,103066,Manhattan,1370850705 +32298,103066,New York City,1370850705 +32298,103068,politics,1370850672 +32298,103068,US President,1370850672 +32298,103075,brutal,1380879925 +32298,103075,satire,1380879812 +32298,103083,based on a book,1371006303 +32298,103107,musicians,1379410412 +32298,103107,rhythm & blues,1403327000 +32298,103107,vocalists,1371209791 +32298,103116,queer,1371209813 +32298,103118,medicine,1371209840 +32298,103137,true story,1378806531 +32298,103141,Bechdel Test:Who Cares,1385209138 +32298,103141,college,1381308325 +32298,103141,competition,1402879717 +32298,103141,Pixar,1377818237 +32298,103141,sequel,1371498498 +32298,103208,poverty,1371498437 +32298,103212,bad acting,1371529422 +32298,103212,bad script,1371529422 +32298,103212,low budget,1371892363 +32298,103212,nudity (topless),1400277559 +32298,103212,road trip,1371528824 +32298,103219,nudity (topless),1400279031 +32298,103221,nudity (topless),1400278534 +32298,103228,aliens,1371796870 +32298,103228,audience intelligence underestimated,1380779658 +32298,103228,bad acting,1380779853 +32298,103228,bad plot,1380779853 +32298,103228,contrived romance,1406189479 +32298,103228,mecha,1382199655 +32298,103228,robots,1371796870 +32298,103233,Batman,1400777962 +32298,103233,comic book,1400777962 +32298,103233,franchise,1400777962 +32298,103233,superhero,1400778374 +32298,103233,Superman,1400777962 +32298,103235,nudity (full frontal),1421545328 +32298,103249,zombies,1379713496 +32298,103253,cyborgs,1384640412 +32298,103253,dystopia,1384640349 +32298,103253,medicine,1384640383 +32298,103253,military,1384640395 +32298,103253,poverty,1384640395 +32298,103253,robots,1384641746 +32298,103253,satire,1405720245 +32298,103253,underrated,1385389974 +32298,103255,Afghanistan,1375620347 +32298,103255,military,1371881782 +32298,103255,Somalia,1375620347 +32298,103255,Yemen,1375620347 +32298,103273,nudity (topless),1400295934 +32298,103275,Wikileaks,1385232158 +32298,103282,dragons,1394788605 +32298,103288,education,1372138067 +32298,103288,politics,1372138067 +32298,103288,religion,1372138067 +32298,103288,Texas,1377624486 +32298,103306,aliens,1380322529 +32298,103306,great ending,1412269242 +32298,103306,space,1380322528 +32298,103319,stand-up comedy,1372318777 +32298,103335,anti-hero,1387281656 +32298,103335,no plot,1388804926 +32298,103341,aging,1378794914 +32298,103341,aliens,1378794806 +32298,103341,cloning,1378794873 +32298,103341,drinking,1378794802 +32298,103341,drugs,1395545974 +32298,103341,England,1378794856 +32298,103384,based on a TV show,1380865041 +32298,103384,big budget,1391749822 +32298,103384,long,1380865046 +32298,103384,Native Americans,1380864834 +32298,103384,trains,1380864707 +32298,103422,musicians,1379410705 +32298,103422,rock and roll,1372925919 +32298,103444,movie business,1372925857 +32298,103449,lesbian,1403946452 +32298,103449,queer,1403946455 +32298,103452,musicians,1379410265 +32298,103452,politics,1373332739 +32298,103452,Russia,1373332739 +32298,103454,Batman,1384629802 +32298,103465,1970s,1373428920 +32298,103465,politics,1373428922 +32298,103465,prostitution,1373428917 +32298,103465,Sweden,1373428942 +32298,103474,drugs,1373332657 +32298,103483,found footage,1428357730 +32298,103483,nudity (topless),1402987444 +32298,103493,lawyers,1373332457 +32298,103523,nudity (topless),1400278095 +32298,103539,based on a book,1387362150 +32298,103539,drinking,1390028123 +32298,103539,drugs,1390028123 +32298,103539,dysfunctional family,1390028152 +32298,103539,high school,1387362140 +32298,103554,ocean,1373523188 +32298,103554,pirates,1373523188 +32298,103557,Africa,1373523129 +32298,103557,South Africa,1373523132 +32298,103563,journalism,1373598951 +32298,103563,Libya,1373598951 +32298,103572,computers,1373679938 +32298,103572,internet,1373679938 +32298,103572,musicians,1379407664 +32298,103572,technology,1373679938 +32298,103574,pregnancy,1385848069 +32298,103574,teen pregnancy,1385848069 +32298,103590,Russia,1373883556 +32298,103590,Soviet Union,1373883556 +32298,103590,space,1373883556 +32298,103593,Russia,1373883519 +32298,103593,Soviet Union,1373883519 +32298,103593,space,1373883519 +32298,103596,shark,1404858177 +32298,103598,based on a play,1373883458 +32298,103598,Shakespeare,1373883458 +32298,103600,aviation,1373883433 +32298,103606,overrated,1387456114 +32298,103606,writers,1379648092 +32298,103624,San Francisco,1387101181 +32298,103624,true story,1387101185 +32298,103633,drugs,1374315791 +32298,103635,military,1374315769 +32298,103635,space,1374315769 +32298,103651,martial arts,1374315713 +32298,103651,steampunk,1374315709 +32298,103653,zombies,1374315693 +32298,103655,afterlife,1377428290 +32298,103655,police,1374315660 +32298,103665,kung fu,1422421003 +32298,103665,martial arts,1422421001 +32298,103688,exorcism,1381140405 +32298,103688,haunted house,1381140334 +32298,103688,true story,1381140378 +32298,103721,space,1374647144 +32298,103723,sequel,1374647059 +32298,103727,wintry,1409511014 +32298,103739,prehistoric,1374647032 +32298,103751,business,1374646991 +32298,103751,mining,1374646991 +32298,103751,nature,1374646991 +32298,103755,racing,1382414895 +32298,103755,talking animals,1382414895 +32298,103772,comic book,1374806177 +32298,103772,franchise,1374806177 +32298,103772,Japan,1374806177 +32298,103772,martial arts,1382859376 +32298,103772,watch the credits,1382912864 +32298,103784,stage magic,1383331134 +32298,103798,wintry,1390525050 +32298,103808,haunted house,1374983546 +32298,103808,nudity (full frontal),1400285197 +32298,103810,complicated,1383201378 +32298,103810,espionage,1383201452 +32298,103825,corruption,1375066908 +32298,103825,police,1375066902 +32298,103825,police corruption,1375066902 +32298,103861,Afghanistan,1375619755 +32298,103867,Lisbon,1375619695 +32298,103867,Portugal,1375619695 +32298,103871,advertising,1375619550 +32298,103871,business,1375619550 +32298,103871,food,1375619550 +32298,103875,Iran,1375619472 +32298,103875,journalism,1375619472 +32298,103875,Middle East,1375619472 +32298,103875,politics,1375619472 +32298,103877,musicians,1379408835 +32298,103883,CIA,1383220187 +32298,103883,corruption,1383220187 +32298,103883,drugs,1383220191 +32298,103883,military,1383220187 +32298,103883,nudity (topless),1400280189 +32298,103972,nudity (topless),1403443004 +32298,103974,history,1375619263 +32298,103974,politics,1375619263 +32298,103974,US President,1375619263 +32298,103982,Nazis,1375619183 +32298,103982,World War II,1375619183 +32298,103984,nudity (full frontal),1409185816 +32298,103996,male nudity,1400286983 +32298,103996,nudity (full frontal),1400286983 +32298,104019,terrorism,1375899754 +32298,104019,vampires,1375899755 +32298,104041,aliens,1413914084 +32298,104041,hackers,1413914085 +32298,104041,nudity (full frontal),1413914084 +32298,104061,Brooklyn,1375899704 +32298,104061,New York City,1375899703 +32298,104066,Alaska,1375899626 +32298,104066,Canada,1375899626 +32298,104069,stand-up comedy,1375899583 +32298,104074,based on a book,1376029781 +32298,104074,Greek mythology,1384580296 +32298,104074,visually appealing,1387397657 +32298,104076,based on a TV show,1376029752 +32298,104078,based on a TV show,1385716838 +32298,104078,excellent script,1386592194 +32298,104078,great acting,1385716837 +32298,104078,hostage,1385716837 +32298,104078,radio,1385716837 +32298,104089,Alfred P. Sloan Feature Film Prize,1379232050 +32298,104089,artificial intelligence,1379232065 +32298,104089,board game,1376029664 +32298,104089,chess,1376029664 +32298,104103,beauty pageant,1376029508 +32298,104132,zombies,1376307390 +32298,104139,werewolves,1376307340 +32298,104141,based on a comic,1408328731 +32298,104141,Batman,1376307313 +32298,104141,superhero,1376307313 +32298,104144,comic book,1376307273 +32298,104144,superhero,1376307308 +32298,104153,zombies,1376307246 +32298,104155,revenge,1376307218 +32298,104211,drugs,1383354735 +32298,104211,watch the credits,1387117377 +32298,104224,computers,1376457957 +32298,104224,hackers,1376457957 +32298,104241,brutal,1382010043 +32298,104241,superhero,1376457871 +32298,104241,vigilante,1382010043 +32298,104243,aliens,1383212745 +32298,104243,franchise,1378806600 +32298,104243,nudity (topless),1402585627 +32298,104245,aviation,1383478852 +32298,104245,Disney,1376610314 +32298,104245,racing,1383478849 +32298,104272,animal rights,1400648603 +32298,104298,found footage,1376732255 +32298,104303,business,1380854402 +32298,104303,computers,1380854393 +32298,104312,bad plot,1381397180 +32298,104312,based on a book,1381397152 +32298,104312,magic,1381397152 +32298,104319,Africa,1377079966 +32298,104319,Kenya,1377079966 +32298,104319,true story,1377079966 +32298,104323,business,1407637333 +32298,104323,capitalism,1407637307 +32298,104323,corruption,1407637309 +32298,104323,economics,1407637313 +32298,104323,poverty,1377079901 +32298,104323,youtube,1407674100 +32298,104339,directorial debut,1404857904 +32298,104339,movie business,1377079831 +32298,104356,museum,1377079785 +32298,104368,Los Angeles,1377079755 +32298,104370,suicide,1377079697 +32298,104374,bad plot,1388807946 +32298,104374,pretentious,1406109019 +32298,104374,time travel,1377079651 +32298,104376,manga,1377079626 +32298,104379,India,1377079594 +32298,104441,true story,1377425844 +32298,104599,politics,1378232744 +32298,104601,island,1378232234 +32298,104601,nudity (topless),1401883972 +32298,104606,World War II,1378231954 +32298,104608,hospital,1378231780 +32298,104612,stand-up comedy,1378231756 +32298,104636,motorcycle,1378231697 +32298,104638,post-apocalyptic,1378231584 +32298,104644,stand-up comedy,1378231553 +32298,104667,nudity (topless),1430269943 +32298,104669,nudity (full frontal),1400285122 +32298,104671,nudity (topless),1400278173 +32298,104671,vampires,1378364068 +32298,104673,US President,1378363788 +32298,104680,movie business,1378363760 +32298,104721,skateboarding,1378611597 +32298,104721,sports,1378611597 +32298,104726,New York City,1378611559 +32298,104726,politics,1378611559 +32298,104728,musicians,1385004296 +32298,104743,Italy,1378617012 +32298,104743,Mafia,1378623580 +32298,104746,clowns,1378791276 +32298,104748,clowns,1378791267 +32298,104750,clowns,1378791190 +32298,104757,television,1378791184 +32298,104760,cars,1378791053 +32298,104767,China,1378790891 +32298,104767,journalism,1378790890 +32298,104769,clowns,1378790847 +32298,104772,World War II,1378790817 +32298,104841,intense,1389098288 +32298,104841,religion,1389098284 +32298,104841,space,1389098292 +32298,104865,sports,1379320288 +32298,104867,nudity (topless),1418610488 +32298,104875,folk music,1387427371 +32298,104875,musicians,1387427371 +32298,104908,ghosts,1386395735 +32298,104913,1970s,1379319849 +32298,104913,cars,1379319849 +32298,104913,nudity (topless),1403144222 +32298,104913,racing,1379319849 +32298,104913,sports,1379319849 +32298,104913,true story,1379319849 +32298,104925,Mafia,1386288168 +32298,104932,19th century,1379319737 +32298,104932,London,1379319737 +32298,104932,nudity (topless),1400277904 +32298,104932,prostitution,1379319736 +32298,104969,boxing,1379674541 +32298,104969,sports,1379674540 +32298,104975,writers,1379674441 +32298,105001,biology,1379584331 +32298,105001,genetics,1379584331 +32298,105001,science,1379584331 +32298,105011,history,1383590204 +32298,105011,mathematics,1383590203 +32298,105015,nude black women,1400299143 +32298,105015,nudity (topless),1400299144 +32298,105028,nudity (full frontal),1400285049 +32298,105030,history,1379749617 +32298,105030,Native Americans,1379749617 +32298,105037,1990s,1388649555 +32298,105037,great soundtrack,1388649555 +32298,105068,biography,1379982690 +32298,105068,easily confused with other movie(s) (title),1386248506 +32298,105068,physics,1379982690 +32298,105068,science,1379982690 +32298,105086,dance,1379982586 +32298,105089,movie business,1379982553 +32298,105091,movie business,1379982526 +32298,105126,nudity (topless),1400278590 +32298,105128,movie business,1380162882 +32298,105135,revenge,1380162855 +32298,105150,India,1380162791 +32298,105150,movie business,1380162791 +32298,105157,nudity (topless),1400278136 +32298,105163,AIDS,1380260760 +32298,105163,Greece,1380260760 +32298,105165,mutants,1380260728 +32298,105165,post-apocalyptic,1380260721 +32298,105165,time travel,1380260719 +32298,105178,aliens,1380260700 +32298,105193,nudity (full frontal),1407112446 +32298,105197,road trip,1413381124 +32298,105213,directorial debut,1397218142 +32298,105213,May-December romance,1397218163 +32298,105213,nudity (topless),1400280826 +32298,105213,pornography,1397218173 +32298,105227,9/11,1380490691 +32298,105227,history,1380490691 +32298,105227,New York City,1380490691 +32298,105227,terrorism,1380490691 +32298,105254,drugs,1380646843 +32298,105254,nudity (topless),1426539610 +32298,105269,movie business,1380646357 +32298,105271,Louisiana,1380646235 +32298,105288,blackmail,1380790691 +32298,105288,torture,1380790691 +32298,105299,natural disaster,1380838355 +32298,105299,nature,1380838355 +32298,105338,Afghanistan,1381223235 +32298,105345,nudity (topless),1428096776 +32298,105355,lesbian,1387371097 +32298,105355,nudity (full frontal),1400284721 +32298,105355,queer,1387371096 +32298,105355,unsimulated sex,1401506455 +32298,105375,Argentina,1381299342 +32298,105375,Latin America,1381299343 +32298,105375,Nazis,1381299342 +32298,105375,South America,1381299342 +32298,105375,true story,1381299904 +32298,105382,religion,1381298732 +32298,105412,Brazil,1381298672 +32298,105412,Latin America,1381298672 +32298,105412,musicians,1385964911 +32298,105412,Rio de Janeiro,1381298672 +32298,105412,South America,1381298672 +32298,105420,history,1381222862 +32298,105420,hospital,1381222862 +32298,105420,Texas,1381222862 +32298,105420,US President,1381222862 +32298,105423,blindness,1381222690 +32298,105429,economics,1383743184 +32298,105429,poverty,1381298550 +32298,105465,based on a book,1381390582 +32298,105465,Lewis Carroll,1381390582 +32298,105468,food,1389998427 +32298,105468,great acting,1391000944 +32298,105468,inventor,1389998427 +32298,105468,sequel,1381390596 +32298,105468,watch the credits,1391000964 +32298,105470,military,1381561372 +32298,105474,Egypt,1381645903 +32298,105504,hijacking,1381645613 +32298,105504,ocean,1381645613 +32298,105504,pirates,1381645613 +32298,105504,true story,1381645613 +32298,105509,19th century,1381643889 +32298,105509,based on a book,1381643889 +32298,105509,France,1381643889 +32298,105509,Victor Hugo,1381643889 +32298,105526,Cambodia,1381730051 +32298,105529,history,1381729821 +32298,105529,island,1381729821 +32298,105529,military,1381729821 +32298,105538,true story,1381729527 +32298,105540,based on a book,1381729177 +32298,105540,Charles Dickens,1381729177 +32298,105540,Christmas,1381729177 +32298,105540,dogs,1381729177 +32298,105540,talking animals,1381729177 +32298,105560,nudity (topless),1419360875 +32298,105579,post-apocalyptic,1381918250 +32298,105579,zombies,1381918250 +32298,105585,sequel,1381957488 +32298,105593,based on a book,1381957469 +32298,105593,corruption,1381957469 +32298,105593,drugs,1386945466 +32298,105593,Irvine Welsh,1386945438 +32298,105593,male nudity,1395545417 +32298,105593,nudity (topless),1400279712 +32298,105593,police,1381957469 +32298,105593,police corruption,1395545831 +32298,105593,Scotland,1395545584 +32298,105597,based on a play,1385004084 +32298,105597,Shakespeare,1385004084 +32298,105653,prison,1386947202 +32298,105653,prison escape,1389352747 +32298,105653,torture,1389352747 +32298,105720,based on a book,1382293311 +32298,105731,based on a book,1385779999 +32298,105731,remake,1385779999 +32298,105731,Stephen King,1385779999 +32298,105742,Wikileaks,1385232124 +32298,105744,disease,1382354506 +32298,105755,Cormac McCarthy,1382406204 +32298,105755,drugs,1382405815 +32298,105767,gay,1382405781 +32298,105767,queer,1382405781 +32298,105767,religion,1382405781 +32298,105769,based on a book,1386948217 +32298,105769,drugs,1406901390 +32298,105769,Stanislaw Lem,1402060452 +32298,105776,Mars,1382405681 +32298,105776,short,1386947078 +32298,105794,nudity (topless),1400278120 +32298,105799,atheism,1382442823 +32298,105799,irreligion,1382442823 +32298,105799,religion,1382442823 +32298,105799,science,1382442823 +32298,105805,Africa,1383742995 +32298,105805,Democratic Republic of the Congo,1383742995 +32298,105805,poverty,1383742995 +32298,105835,based on a book,1382578609 +32298,105835,doppelganger,1400679849 +32298,105835,Dostoyevsky,1382578609 +32298,105835,surreal,1400679591 +32298,105844,based on a book,1383742889 +32298,105844,slavery,1383742889 +32298,105855,based on a book,1382641090 +32298,105888,economics,1382794946 +32298,105888,Greece,1382794946 +32298,105906,1930s,1383131744 +32298,105906,sports,1383131744 +32298,105915,religion,1382908865 +32298,105952,restaurant,1383131661 +32298,105954,ocean,1386947965 +32298,105968,based on a play,1383131614 +32298,105968,courtroom,1383131615 +32298,105968,evolution,1383131615 +32298,105968,history,1383131627 +32298,105968,religion,1383131614 +32298,105968,science,1383131615 +32298,105968,teacher,1383131615 +32298,105982,nudity (full frontal),1400285100 +32298,105985,space,1383210575 +32298,105987,drugs,1383210548 +32298,105987,LSD,1383210549 +32298,106002,aliens,1391083122 +32298,106002,based on a book,1383366880 +32298,106002,bullying,1391083199 +32298,106002,genocide,1391083180 +32298,106002,military,1391083174 +32298,106002,Orson Scott Card,1383366880 +32298,106002,overpopulation,1391083152 +32298,106002,satire,1391086760 +32298,106002,space,1386948080 +32298,106019,aviation,1383366734 +32298,106022,franchise,1383373475 +32298,106022,Pixar,1383373496 +32298,106022,short,1383366707 +32298,106030,Mars,1383366613 +32298,106032,high school,1383374062 +32298,106032,serial killer,1383373381 +32298,106052,China,1383481830 +32298,106062,boring,1389336286 +32298,106066,1970s,1383541397 +32298,106066,based on a book,1383541397 +32298,106066,boring,1383542905 +32298,106066,Elmore Leonard,1420191090 +32298,106068,Catholicism,1383551887 +32298,106068,Christianity,1383551887 +32298,106068,history,1383551887 +32298,106068,religion,1383551887 +32298,106068,World War II,1383551869 +32298,106072,great ending,1391322084 +32298,106072,siblings,1391322084 +32298,106072,superhero,1384759932 +32298,106072,visually appealing,1391321604 +32298,106072,watch the credits,1391322084 +32298,106074,mathematics,1383590211 +32298,106074,youtube,1383590214 +32298,106076,history,1383590195 +32298,106076,science,1383590194 +32298,106076,technology,1383590193 +32298,106076,youtube,1383590192 +32298,106082,history,1383589345 +32298,106082,science,1383589347 +32298,106082,technology,1383589344 +32298,106082,youtube,1383589348 +32298,106098,history,1383658589 +32298,106098,Islam,1383658589 +32298,106098,religion,1383658589 +32298,106098,science,1383658589 +32298,106098,youtube,1383658589 +32298,106100,AIDS,1396005674 +32298,106100,disease,1406792304 +32298,106107,history,1383694090 +32298,106107,mathematics,1383694090 +32298,106107,science,1383694090 +32298,106107,youtube,1383694090 +32298,106113,musicians,1383727957 +32298,106113,rock and roll,1383727957 +32298,106115,history,1383728344 +32298,106115,science,1383728344 +32298,106115,youtube,1383728344 +32298,106156,England,1383800853 +32298,106156,London,1383800853 +32298,106170,nudity (full frontal),1407101918 +32298,106173,comedians,1383930527 +32298,106173,politics,1383930527 +32298,106200,hurricane,1398250030 +32298,106200,Hurricane Katrina,1398250030 +32298,106200,Louisiana,1398250030 +32298,106200,natural disaster,1398250030 +32298,106200,New Orleans,1398250030 +32298,106208,orphans,1384092344 +32298,106212,atheism,1384092298 +32298,106212,child abuse,1384092298 +32298,106212,irreligion,1384092298 +32298,106212,Israel,1384175551 +32298,106212,Jerusalem,1384175551 +32298,106212,Middle East,1384392744 +32298,106212,religion,1384092297 +32298,106212,science,1384092298 +32298,106212,youtube,1385236469 +32298,106220,stand-up comedy,1384175706 +32298,106230,movie business,1384175654 +32298,106234,based on a book,1384175808 +32298,106234,Charles Dickens,1384175808 +32298,106234,orphans,1384175808 +32298,106236,drinking,1384175750 +32298,106236,wine,1384175750 +32298,106240,talking animals,1386946191 +32298,106240,Thanksgiving,1390473101 +32298,106240,time travel,1386946191 +32298,106240,watch the credits,1390452789 +32298,106256,19th century,1384208026 +32298,106256,based on a book,1384208026 +32298,106256,US President,1384208026 +32298,106268,musicians,1384266913 +32298,106297,dragons,1394788449 +32298,106306,movie business,1384398130 +32298,106310,nudity (topless),1400278069 +32298,106320,vampires,1384516016 +32298,106330,friendship,1406919126 +32298,106330,Las Vegas,1384577971 +32298,106332,Alabama,1384578034 +32298,106332,musicians,1384578034 +32298,106334,based on a play,1388808268 +32298,106334,Shakespeare,1384578080 +32298,106344,parody,1384672947 +32298,106353,aging,1386945998 +32298,106421,San Francisco,1388642570 +32298,106438,based on a book,1389804229 +32298,106438,Catholicism,1407011823 +32298,106438,Christianity,1407011822 +32298,106438,corruption,1407011820 +32298,106438,Ireland,1407011815 +32298,106438,journalism,1407011819 +32298,106438,nuns,1407011818 +32298,106438,religion,1407011816 +32298,106438,true story,1407011814 +32298,106441,based on a book,1385545335 +32298,106441,books,1385545379 +32298,106441,Germany,1385545335 +32298,106441,World War II,1385545335 +32298,106487,based on a book,1385089297 +32298,106487,dystopia,1390461288 +32298,106489,based on a book,1387449238 +32298,106489,dragons,1394788467 +32298,106489,franchise,1389012508 +32298,106489,long,1389012332 +32298,106489,Tolkien,1387449238 +32298,106493,based on a book,1421499187 +32298,106493,Nathaniel Hawthorne,1421499187 +32298,106503,medicine,1385096894 +32298,106503,science,1385096894 +32298,106503,youtube,1385096894 +32298,106519,Wikileaks,1385232110 +32298,106521,time travel,1385295640 +32298,106540,remake,1402044156 +32298,106559,nude black women,1400618594 +32298,106559,nudity (full frontal),1400618594 +32298,106634,based on a play,1385487158 +32298,106642,based on a TV show,1385844287 +32298,106642,Doctor Who,1390175676 +32298,106642,ensemble cast,1390175679 +32298,106642,phone booth,1406946954 +32298,106642,time travel,1390175681 +32298,106682,NASA,1385779796 +32298,106696,royalty,1389352933 +32298,106696,siblings,1403014553 +32298,106696,wintry,1390525080 +32298,106722,Alabama,1385779717 +32298,106722,history,1385779717 +32298,106722,politics,1385779717 +32298,106722,racism,1385779717 +32298,106722,segregation,1385779717 +32298,106745,Albert Camus,1385913824 +32298,106745,based on a book,1385913796 +32298,106766,folk music,1385992383 +32298,106766,Manhattan,1385992383 +32298,106766,musicians,1385992382 +32298,106766,New York City,1385992382 +32298,106782,based on a book,1386045733 +32298,106782,drugs,1406733547 +32298,106782,great soundtrack,1406733899 +32298,106782,long,1406733618 +32298,106782,nudity (full frontal),1406733545 +32298,106782,true story,1386045741 +32298,106785,based on a book,1386045685 +32298,106785,drugs,1386045685 +32298,106839,Africa,1386241423 +32298,106839,biography,1386241423 +32298,106839,South Africa,1386241423 +32298,106870,sequel,1386356503 +32298,106881,nudity (topless),1407225435 +32298,106892,abortion,1386948351 +32298,106892,medicine,1386948351 +32298,106916,con artists,1387390578 +32298,106916,corruption,1387390578 +32298,106916,politics,1387390578 +32298,106918,remake,1387096144 +32298,106920,artificial intelligence,1395800907 +32298,106920,bittersweet,1395800994 +32298,106920,loneliness,1395800888 +32298,106920,original,1395800909 +32298,106920,psychology,1395800972 +32298,106972,queer,1386549765 +32298,106981,based on a book,1386571334 +32298,106983,nudity (topless),1400278922 +32298,106986,based on a book,1386571303 +32298,106986,Christmas,1386571303 +32298,106986,claymation,1386571303 +32298,106986,Santa Claus,1386571303 +32298,107000,history,1386571253 +32298,107000,NASA,1386571254 +32298,107000,space,1386571254 +32298,107002,basketball,1386571226 +32298,107002,sports,1386571226 +32298,107024,hockey,1386660428 +32298,107024,sports,1386660431 +32298,107042,Stephen Sondheim,1386660363 +32298,107052,musicians,1386745000 +32298,107052,punk rock,1386745000 +32298,107052,rock and roll,1386745000 +32298,107069,Afghanistan,1386744802 +32298,107069,true story,1386744802 +32298,107075,based on a book,1386744416 +32298,107075,Charles Dickens,1386744417 +32298,107083,based on a book,1386749276 +32298,107083,heartwarming,1386749276 +32298,107083,high school,1386749276 +32298,107083,loneliness,1386749276 +32298,107083,misfits,1388929922 +32298,107083,queer,1386749276 +32298,107096,business,1386837826 +32298,107096,restaurant,1386837826 +32298,107102,ghosts,1386837807 +32298,107102,haunted house,1386837807 +32298,107102,true story,1386837807 +32298,107106,nudity (topless),1407011244 +32298,107117,corruption,1386906026 +32298,107117,cycling,1386906557 +32298,107117,drugs,1386906026 +32298,107117,sports,1386906026 +32298,107130,Doctor Who,1386911647 +32298,107130,England,1386911647 +32298,107130,movie business,1386911647 +32298,107130,phone booth,1406946984 +32298,107130,true story,1386911647 +32298,107137,ensemble cast,1386922273 +32298,107137,low budget,1386922273 +32298,107137,space,1386922273 +32298,107137,Star Trek,1386922273 +32298,107141,Disney,1386945777 +32298,107141,movie business,1386945777 +32298,107141,true story,1386945777 +32298,107141,writers,1386945777 +32298,107143,religion,1386969579 +32298,107145,aviation,1386969619 +32298,107145,cross dressing,1386969619 +32298,107155,post-apocalyptic,1386991557 +32298,107183,AIDS,1387091808 +32298,107183,disease,1387091808 +32298,107243,soccer,1387320719 +32298,107243,sports,1387320724 +32298,107248,nudity (full frontal),1403015751 +32298,107266,movie business,1387320648 +32298,107299,true story,1387389966 +32298,107309,Caribbean,1387396578 +32298,107309,Cuba,1387396578 +32298,107309,Havana,1387396578 +32298,107309,Latin America,1387396578 +32298,107314,nudity (topless),1400279277 +32298,107314,remake,1387444195 +32298,107314,revenge,1387444194 +32298,107316,mockumentary,1387529305 +32298,107338,based on a book,1387529259 +32298,107348,journalism,1399264659 +32298,107348,sequel,1392434423 +32298,107348,television,1399264660 +32298,107350,medicine,1387584798 +32298,107352,19th century,1387584891 +32298,107352,based on a book,1387584891 +32298,107352,history,1387584891 +32298,107352,US President,1387584891 +32298,107354,Beatles,1387584932 +32298,107354,musicians,1387584932 +32298,107354,rock and roll,1387584932 +32298,107361,boxing,1387643278 +32298,107361,sports,1387643278 +32298,107368,stand-up comedy,1389805063 +32298,107372,nudity (topless),1407216370 +32298,107380,boxing,1387751813 +32298,107380,sports,1387751813 +32298,107382,stand-up comedy,1387751792 +32298,107400,history,1387751765 +32298,107406,post-apocalyptic,1392435104 +32298,107406,trains,1392435104 +32298,107406,wintry,1403014252 +32298,107436,time loop,1411010324 +32298,107447,police,1387956356 +32298,107447,police corruption,1387956356 +32298,107449,based on a TV show,1402484753 +32298,107449,Christmas,1387956405 +32298,107449,puppets,1387956405 +32298,107537,male nudity,1401961146 +32298,107537,nudity (full frontal),1401961146 +32298,107537,unsimulated sex,1400292181 +32298,107541,based on a book,1388201458 +32298,107541,small town,1388201458 +32298,107563,Christmas,1388210492 +32298,107612,Halloween,1388296901 +32298,107612,haunted house,1388296902 +32298,107614,Christmas,1388296830 +32298,107617,drinking,1388625410 +32298,107617,France,1388625410 +32298,107617,wine,1388625410 +32298,107621,Iran,1388625306 +32298,107621,Middle East,1388625306 +32298,107623,musicians,1388625128 +32298,107623,rock and roll,1388625128 +32298,107627,based on a book,1388625044 +32298,107692,aviation,1388624514 +32298,107692,hijacking,1388624514 +32298,107692,true story,1388624514 +32298,107696,musicians,1388624397 +32298,107696,San Diego,1388624397 +32298,107698,Brazil,1388624586 +32298,107698,Latin America,1388624586 +32298,107698,Rio de Janeiro,1388624586 +32298,107698,South America,1388624586 +32298,107700,movie business,1388642204 +32298,107702,boxing,1388642229 +32298,107702,sports,1388642229 +32298,107704,musicians,1388642242 +32298,107710,musicians,1388642328 +32298,107730,politics,1388734199 +32298,107737,nudity (topless),1411110276 +32298,107743,soccer,1388907005 +32298,107743,sports,1388907005 +32298,107754,musicians,1388906960 +32298,107756,divorce,1388906931 +32298,107758,beauty pageant,1388906902 +32298,107769,franchise,1388936747 +32298,107771,vampires,1401579800 +32298,107780,based on a book,1389016063 +32298,107780,cats,1389016079 +32298,107916,biography,1389670109 +32298,107916,fashion,1389670108 +32298,107949,based on a book,1389670090 +32298,107949,Charles Dickens,1389670090 +32298,107949,May-December romance,1389670090 +32298,107960,National Lampoon,1405126632 +32298,107960,nudity (topless),1413926095 +32298,107987,England,1412245754 +32298,107987,royalty,1412245754 +32298,107987,true story,1412245754 +32298,107997,siblings,1420190892 +32298,108016,alternate reality,1421504343 +32298,108016,based on a book,1421504346 +32298,108016,World War II,1421504348 +32298,108052,AIDS,1389667298 +32298,108052,disease,1389667298 +32298,108054,teacher,1389667081 +32298,108076,swimming,1389803551 +32298,108100,corruption,1389803769 +32298,108100,politics,1389803766 +32298,108100,suicide,1389803772 +32298,108143,painter,1389854370 +32298,108146,Alcatraz,1389854335 +32298,108146,zombies,1389854335 +32298,108149,college,1390897369 +32298,108153,mathematics,1389939986 +32298,108156,buddy movie,1390898065 +32298,108156,police,1390898065 +32298,108190,anti-intellectual,1406108636 +32298,108190,based on a book,1390076341 +32298,108190,Bechdel Test:Who Cares,1406099363 +32298,108190,dystopia,1390076341 +32298,108190,long,1406108676 +32298,108190,overrated,1410164348 +32298,108190,pretentious,1406108676 +32298,108190,Veronica Roth,1417086582 +32298,108192,prequel,1402212724 +32298,108243,pregnancy,1390175400 +32298,108271,nudity (topless),1414598913 +32298,108280,nudity (topless),1400277996 +32298,108318,nudity (topless),1407222636 +32298,108445,lesbian,1408363214 +32298,108445,nudity (topless),1408363211 +32298,108445,queer,1408363218 +32298,108491,politics,1390817384 +32298,108493,Israel,1390816612 +32298,108493,Middle East,1390816612 +32298,108493,Palestine,1390816612 +32298,108512,nudity (topless),1401882871 +32298,108522,Nazis,1390816425 +32298,108531,Spanish Civil War,1390816350 +32298,108536,basketball,1390816037 +32298,108536,high school,1390816037 +32298,108536,Indiana,1390816037 +32298,108536,sports,1390816037 +32298,108546,nudity (topless),1407217216 +32298,108548,college,1419045667 +32298,108548,made for TV,1390815954 +32298,108548,not a movie,1419045649 +32298,108548,science,1390815954 +32298,108548,TV series,1390989790 +32298,108571,election,1390897256 +32298,108571,politics,1390897256 +32298,108571,US President,1390897256 +32298,108575,comic book,1390897201 +32298,108577,drugs,1390897160 +32298,108579,nudity (topless),1429819739 +32298,108583,made for TV,1411741084 +32298,108583,overrated,1406713365 +32298,108583,TV series,1392569186 +32298,108601,surfing,1391019132 +32298,108649,Africa,1391019092 +32298,108649,civil war,1391019092 +32298,108649,Liberia,1391019092 +32298,108660,movie business,1391083005 +32298,108660,stage magic,1391083022 +32298,108715,drugs,1406801549 +32298,108715,dysfunctional family,1406801549 +32298,108715,narrated,1406801570 +32298,108727,nudity (full frontal),1400284781 +32298,108727,unsimulated sex,1400292435 +32298,108729,confusing,1402498582 +32298,108729,doppelganger,1400679935 +32298,108729,nudity (topless),1400645403 +32298,108748,Africa,1391347954 +32298,108748,AIDS,1391347954 +32298,108748,child abuse,1391347954 +32298,108748,rape,1391347954 +32298,108748,Zimbabwe,1391347955 +32298,108766,lawyers,1391437320 +32298,108844,Central America,1391625949 +32298,108844,Guatemala,1391625949 +32298,108844,Latin America,1391625949 +32298,108866,musicians,1391734256 +32298,108866,rock and roll,1391734256 +32298,108869,nudity (topless),1400278029 +32298,108885,Spain,1391758978 +32298,108899,nudity (full frontal),1403443731 +32298,108932,inventor,1401580931 +32298,108945,police,1391921350 +32298,108945,remake,1391921350 +32298,108949,heist,1399053817 +32298,108949,twist ending,1399324761 +32298,108953,nudity (topless),1401959495 +32298,108977,made for TV,1422421576 +32298,108977,not a movie,1422421577 +32298,108981,nudity (full frontal),1400292450 +32298,108981,unsimulated sex,1400292450 +32298,108989,based on a play,1392180639 +32298,108989,Louisiana,1392180639 +32298,108989,made for TV,1392180639 +32298,108989,New Orleans,1392180639 +32298,108989,Tennessee Williams,1392180639 +32298,108991,based on a play,1392180606 +32298,108991,Louisiana,1392180606 +32298,108991,made for TV,1392180606 +32298,108991,New Orleans,1392180606 +32298,108991,Tennessee Williams,1392180606 +32298,109021,musicians,1392180537 +32298,109034,short,1392180495 +32298,109038,college,1392180457 +32298,109038,sports,1392180457 +32298,109042,forest,1398308274 +32298,109045,sequel,1392358601 +32298,109045,talking animals,1392358601 +32298,109064,Vietnam War,1393299712 +32298,109153,movie business,1392437161 +32298,109155,movie business,1392446599 +32298,109157,based on a book,1402478075 +32298,109157,Nick Hornby,1402478075 +32298,109157,suicide,1402553159 +32298,109181,poets,1397708656 +32298,109181,writers,1397708710 +32298,109185,cats,1392530036 +32298,109185,trains,1392530039 +32298,109187,hackers,1392530059 +32298,109187,nudity (topless),1405369250 +32298,109191,based on a book,1392568901 +32298,109195,nudity (topless),1400277959 +32298,109201,politics,1392728732 +32298,109239,nudity (full frontal),1400285039 +32298,109241,nudity (topless),1403299398 +32298,109251,Argentina,1392728348 +32298,109251,business,1392728348 +32298,109251,Latin America,1392728348 +32298,109251,politics,1392728348 +32298,109251,poverty,1392728348 +32298,109251,South America,1392728348 +32298,109256,Africa,1392728528 +32298,109256,Ghana,1392728528 +32298,109256,immigrants,1392728528 +32298,109267,nudity (topless),1403930995 +32298,109269,bluegrass,1392728634 +32298,109269,musicians,1392728634 +32298,109269,trains,1392728634 +32298,109277,time travel,1392887464 +32298,109280,mountain climbing,1392887443 +32298,109282,sports,1392887418 +32298,109282,wrestling,1392887418 +32298,109325,climate change,1392887211 +32298,109325,nature,1392887211 +32298,109330,based on a book,1392964855 +32298,109330,Native Americans,1392964855 +32298,109368,movie business,1393095438 +32298,109370,basketball,1393055366 +32298,109370,sports,1393055367 +32298,109372,based on a play,1400556244 +32298,109372,David Mamet,1400556244 +32298,109374,hotel,1393057174 +32298,109374,quirky,1402211909 +32298,109376,dance,1402910654 +32298,109376,great soundtrack,1402910694 +32298,109376,latin music,1402910653 +32298,109388,nudity (full frontal),1403932967 +32298,109397,prison,1393120307 +32298,109399,bad acting,1411154068 +32298,109399,drugs,1405996307 +32298,109399,lesbian,1405996162 +32298,109399,nudity (topless),1406994535 +32298,109399,prison,1405996160 +32298,109399,rape,1405996427 +32298,109444,Islam,1393299542 +32298,109444,religion,1393299542 +32298,109452,Palestine,1393299471 +32298,109455,kidnapping,1393299348 +32298,109487,black hole,1422451329 +32298,109487,long,1422451331 +32298,109487,space,1422451334 +32298,109487,time travel,1422451336 +32298,109487,wormhole,1422451326 +32298,109526,sports,1393543541 +32298,109529,New York City,1393584969 +32298,109529,photography,1393584969 +32298,109580,nudity (topless),1399629304 +32298,109616,AIDS,1393935366 +32298,109621,writers,1393935324 +32298,109665,revenge,1394187891 +32298,109673,nudity (topless),1399233513 +32298,109673,sequel,1402200614 +32298,109687,history,1394299865 +32298,109687,physics,1394299865 +32298,109687,science,1394299866 +32298,109687,Switzerland,1394299865 +32298,109710,nudity (topless),1407217295 +32298,109713,low budget,1394792237 +32298,109713,Star Wars,1394792237 +32298,109726,based on a book,1394792158 +32298,109726,Oscar Wilde,1394792158 +32298,109731,dragons,1394788561 +32298,109731,short,1394788174 +32298,109740,abortion,1411283489 +32298,109740,pregnancy,1411283486 +32298,109740,short,1411290161 +32298,109740,stand-up comedy,1411283480 +32298,109767,aliens,1394788020 +32298,109779,motorcycle,1394787993 +32298,109800,drugs,1394791867 +32298,109806,based on a book,1394791776 +32298,109846,based on a TV show,1394895390 +32298,109846,history,1400753132 +32298,109846,time travel,1394895390 +32298,109848,aliens,1394895417 +32298,109848,male nudity,1403935266 +32298,109848,nudity (full frontal),1403062763 +32298,109848,Scotland,1394895417 +32298,109850,cars,1405315932 +32298,109850,racing,1405315933 +32298,109850,video game adaptation,1394895558 +32298,109862,business,1394985606 +32298,109862,business is the antagonist,1394985606 +32298,109862,Scotland,1394985606 +32298,109864,based on a TV show,1394985435 +32298,109864,police corruption,1406887281 +32298,109895,competition,1402879945 +32298,109895,directorial debut,1401504995 +32298,109895,heartwarming,1401505173 +32298,109895,spelling bee,1400213530 +32298,109897,based on a book,1395071009 +32298,109897,Biblical,1395071009 +32298,109897,Christianity,1395071009 +32298,109897,religion,1395071009 +32298,109902,Louisiana,1395070922 +32298,109902,martial arts,1395070926 +32298,109902,sports,1395070922 +32298,109904,boxing,1395070887 +32298,109904,sports,1395070887 +32298,109921,drugs,1395070825 +32298,109921,queer,1395070825 +32298,109929,military,1395070786 +32298,109929,politics,1412640635 +32298,109929,youtube,1398493571 +32298,109941,cats,1395327153 +32298,109941,short,1395327149 +32298,109965,franchise,1395367854 +32298,110026,prison,1395563106 +32298,110086,nudity (topless),1401568612 +32298,110102,comic book,1395884261 +32298,110102,long,1406769972 +32298,110102,Marvel,1406769341 +32298,110102,superhero,1395884261 +32298,110102,watch the credits,1406769605 +32298,110127,apocalypse,1405051754 +32298,110127,based on a book,1396071912 +32298,110127,Biblical,1396071912 +32298,110127,Christianity,1396071912 +32298,110127,dysfunctional family,1405052806 +32298,110127,flood,1402097695 +32298,110127,long,1404986979 +32298,110127,religion,1396071912 +32298,110130,heist,1400601308 +32298,110130,talking animals,1396071934 +32298,110136,forest,1396072033 +32298,110136,monkey,1396072033 +32298,110138,Africa,1396072059 +32298,110138,Ivory Coast,1396072055 +32298,110194,rock and roll,1396273498 +32298,110198,musicians,1396273432 +32298,110198,rock and roll,1396273432 +32298,110200,movie business,1396273395 +32298,110216,nudity (topless),1400278476 +32298,110242,nudity (full frontal),1399885347 +32298,110273,based on a play,1396524528 +32298,110273,France,1396524528 +32298,110273,Paris,1396524528 +32298,110273,World War II,1396524528 +32298,110295,Greek mythology,1396524444 +32298,110295,mythology,1396524444 +32298,110297,based on a TV show,1402484580 +32298,110297,franchise,1396524359 +32298,110312,stand-up comedy,1396524379 +32298,110350,competition,1402879129 +32298,110368,based on a book,1397021015 +32298,110368,Biblical,1397021015 +32298,110370,based on a book,1397021041 +32298,110370,Biblical,1397021041 +32298,110375,movie business,1396868246 +32298,110387,politics,1396937744 +32298,110407,androids,1400659624 +32298,110407,artificial intelligence,1400659625 +32298,110407,cyborgs,1400659623 +32298,110407,military,1400659621 +32298,110415,terrorism,1397020860 +32298,110419,Israel,1397020831 +32298,110419,Judaism,1397020831 +32298,110419,Palestine,1397020831 +32298,110419,religion,1397020831 +32298,110445,based on a book,1397255986 +32298,110445,con artists,1397255986 +32298,110445,Terry Pratchett,1397255986 +32298,110447,ventriloquist,1397256038 +32298,110449,directorial debut,1397256752 +32298,110449,Florida,1397256173 +32298,110449,road trip,1397256179 +32298,110453,football,1397303447 +32298,110453,sports,1397303447 +32298,110459,nudity (full frontal),1402286598 +32298,110493,police,1397491512 +32298,110501,Indonesia,1402878233 +32298,110501,Jakarta,1402878233 +32298,110531,nudity (topless),1409075226 +32298,110546,musicians,1397752796 +32298,110553,bad acting,1405660297 +32298,110553,bad plot,1405660298 +32298,110553,comic book,1405660234 +32298,110553,double life,1405660234 +32298,110553,franchise,1405660234 +32298,110553,Marvel,1405660234 +32298,110553,superhero,1405660234 +32298,110582,9/11,1397948260 +32298,110582,New York City,1397948260 +32298,110586,black comedy,1403864660 +32298,110586,Catholicism,1403864297 +32298,110586,child abuse,1403864752 +32298,110586,Christianity,1403864288 +32298,110586,Ireland,1397948214 +32298,110586,religion,1403864288 +32298,110586,revenge,1403864621 +32298,110588,basketball,1397948129 +32298,110588,Iran,1397948129 +32298,110588,Middle East,1397948129 +32298,110588,sports,1397948129 +32298,110603,Christianity,1398034536 +32298,110603,religion,1398034536 +32298,110655,bad plot,1403921293 +32298,110655,birds,1398143481 +32298,110655,Brazil,1403921274 +32298,110655,business is the antagonist,1403921383 +32298,110655,jungle,1403921170 +32298,110655,Latin America,1403921274 +32298,110655,South America,1403921274 +32298,110655,talking animals,1398143481 +32298,110678,Alaska,1402879076 +32298,110678,bears,1402879076 +32298,110678,nature,1402879076 +32298,110718,nudity (topless),1406946638 +32298,110730,artificial intelligence,1404465148 +32298,110730,cyborgs,1404465509 +32298,110730,directorial debut,1404465151 +32298,110750,afterlife,1398348125 +32298,110750,based on a book,1398348125 +32298,110771,revenge,1398407312 +32298,110773,haunted house,1398407330 +32298,110773,sequel,1402879355 +32298,110779,small town,1398493835 +32298,110779,Texas,1398493835 +32298,110781,China,1398493806 +32298,110781,sequel,1398493806 +32298,110794,conspiracy,1398681795 +32298,110809,bad acting,1412835206 +32298,110809,based on a book,1398681754 +32298,110809,vampires,1398681754 +32298,110826,police,1398810097 +32298,110826,undercover cop,1398810097 +32298,110899,kidnapping,1399054080 +32298,110921,based on a book,1399054057 +32298,110951,urban,1399053922 +32298,110968,natural disaster,1399053734 +32298,110968,volcano,1399053734 +32298,110984,dinosaurs,1399199553 +32298,111113,college,1403492367 +32298,111113,crude humor,1403492358 +32298,111130,science,1399438590 +32298,111130,short,1399438589 +32298,111130,youtube,1399438599 +32298,111228,journalism,1399714815 +32298,111235,movie business,1399714844 +32298,111237,royalty,1399630157 +32298,111249,England,1402878402 +32298,111287,nudity (topless),1400647456 +32298,111290,Latin America,1399884027 +32298,111290,Mexico,1399884027 +32298,111312,nudity (topless),1399975298 +32298,111312,ocean,1429092579 +32298,111358,corruption,1400148595 +32298,111358,police,1400148595 +32298,111358,police corruption,1400148595 +32298,111358,small town,1400148595 +32298,111358,Texas,1400148595 +32298,111360,drugs,1412740743 +32298,111362,based on a comic,1408328502 +32298,111362,franchise,1400148771 +32298,111362,Marvel,1408327550 +32298,111362,military,1408327825 +32298,111362,mutants,1408327545 +32298,111362,superhero,1400148771 +32298,111362,time travel,1400148771 +32298,111362,watch the credits,1408338323 +32298,111364,bad acting,1408768706 +32298,111364,franchise,1408768733 +32298,111364,Godzilla,1408769698 +32298,111364,military,1408768745 +32298,111364,monster,1408768753 +32298,111373,nudity (full frontal),1400276328 +32298,111387,high school,1400415631 +32298,111387,nudity (topless),1407447877 +32298,111389,drugs,1402878736 +32298,111389,marijuana,1402878736 +32298,111389,nudity (topless),1424998497 +32298,111443,entrepreneurs,1407377731 +32298,111443,food,1407377722 +32298,111443,great soundtrack,1407377722 +32298,111443,latin music,1407378373 +32298,111443,single parents,1407377722 +32298,111451,Oklahoma,1403327545 +32298,111458,Catholicism,1411284163 +32298,111458,Christianity,1411284163 +32298,111458,France,1400652979 +32298,111458,history,1400652980 +32298,111458,mathematics,1411284163 +32298,111458,religion,1411284163 +32298,111458,slow,1411284184 +32298,111460,based on a book,1400513591 +32298,111509,nudity (topless),1403932818 +32298,111529,1980s,1400513478 +32298,111529,AIDS,1400513478 +32298,111544,Australia,1403327578 +32298,111546,Iraq,1403327587 +32298,111546,Middle East,1403327587 +32298,111548,Australia,1400652788 +32298,111553,movie business,1400652750 +32298,111592,movie business,1400879077 +32298,111617,Africa,1405316808 +32298,111622,bad soundtrack,1422330882 +32298,111622,musicians,1413088651 +32298,111622,New York City,1413088771 +32298,111622,pretentious,1413088898 +32298,111644,golf,1401436210 +32298,111644,sports,1401436210 +32298,111659,betrayal,1408336371 +32298,111659,fairy tale,1408336357 +32298,111659,happy ending,1408336443 +32298,111659,narrated,1408336356 +32298,111659,revenge,1408336402 +32298,111659,twist ending,1408336451 +32298,111659,whimsical,1408336365 +32298,111663,nudity (topless),1419388461 +32298,111663,zombies,1401574672 +32298,111726,based on a TV show,1401574455 +32298,111732,Chile,1401574558 +32298,111732,Latin America,1401574558 +32298,111732,nudity (full frontal),1425001437 +32298,111732,South America,1401574558 +32298,111743,New Mexico,1402870672 +32298,111749,nudity (topless),1408363063 +32298,111755,mountains,1401700634 +32298,111759,aliens,1401699699 +32298,111759,based on a book,1410543597 +32298,111759,time loop,1410543616 +32298,111759,time travel,1410543619 +32298,111774,prison,1401700569 +32298,111774,Texas,1401700569 +32298,111774,wrongly accused,1401700568 +32298,111778,Australia,1401781704 +32298,111778,based on a book,1401781704 +32298,111795,baseball,1401781476 +32298,111795,India,1401781476 +32298,111795,sports,1401781476 +32298,111800,high school,1401780875 +32298,111800,queer,1401780875 +32298,111809,trains,1401878921 +32298,111813,business,1401878894 +32298,111813,drugs,1401878894 +32298,111856,aviation,1401963603 +32298,111921,disease,1408337624 +32298,111946,nudity (topless),1419388858 +32298,111995,nudity (topless),1402404916 +32298,112003,nudity (topless),1402404870 +32298,112081,based on a book,1402479704 +32298,112081,H.G. Wells,1402479704 +32298,112085,post-apocalyptic,1402878990 +32298,112089,college,1402632369 +32298,112118,nudity (topless),1402987184 +32298,112138,based on a TV show,1402632055 +32298,112138,college,1402632130 +32298,112138,police,1402632130 +32298,112138,sequel,1402632131 +32298,112138,undercover cop,1402632130 +32298,112165,based on a book,1407216773 +32298,112165,nudity (topless),1407216734 +32298,112175,dragons,1409727456 +32298,112175,sequel,1402843777 +32298,112183,actors,1420796119 +32298,112183,movie business,1420796581 +32298,112183,satire,1420796383 +32298,112183,theater,1420796138 +32298,112193,male nudity,1407114026 +32298,112193,nudity (full frontal),1407114026 +32298,112193,unsimulated sex,1407114026 +32298,112245,bullying,1403104824 +32298,112245,high school,1403104824 +32298,112245,revenge,1403104824 +32298,112255,short,1403104770 +32298,112271,baseball,1403104741 +32298,112271,New York City,1403104741 +32298,112271,sports,1403104741 +32298,112279,zombies,1403215050 +32298,112303,Las Vegas,1403440869 +32298,112309,nudity (topless),1403441003 +32298,112309,prostitution,1403440929 +32298,112320,forest,1403441069 +32298,112334,internet,1403687117 +32298,112338,politics,1403687052 +32298,112342,autism,1403687003 +32298,112367,Africa,1403686915 +32298,112367,boxing,1403686917 +32298,112367,Ghana,1403686912 +32298,112367,sports,1403686909 +32298,112370,franchise,1403686863 +32298,112370,long,1410928480 +32298,112370,ridiculous,1410928535 +32298,112370,robots,1410928504 +32298,112406,Brazil,1404126695 +32298,112406,Latin America,1404126695 +32298,112406,poverty,1404126695 +32298,112406,soccer,1404126695 +32298,112406,South America,1404126695 +32298,112406,sports,1404126695 +32298,112412,siblings,1403869866 +32298,112419,based on a book,1403869905 +32298,112421,musicians,1403946118 +32298,112432,drugs,1403959632 +32298,112432,jazz,1403959632 +32298,112432,musicians,1403959632 +32298,112432,prison,1403959632 +32298,112460,aviation,1413519171 +32298,112460,fire,1413519193 +32298,112460,firefighters,1413519172 +32298,112460,short,1413519171 +32298,112460,watch the credits,1413519172 +32298,112479,movie business,1404465587 +32298,112479,parody,1404465586 +32298,112495,Philadelphia,1404599103 +32298,112506,aliens,1406816767 +32298,112506,alternate reality,1404659542 +32298,112506,based on a book,1404659542 +32298,112506,directorial debut,1404659587 +32298,112506,Philip K. Dick,1404659542 +32298,112506,totalitarianism,1406816749 +32298,112515,directorial debut,1416433385 +32298,112515,haunted house,1416432870 +32298,112515,single parents,1416433385 +32298,112552,musicians,1417087709 +32298,112554,based on a play,1404851977 +32298,112554,religion,1404851977 +32298,112556,based on a book,1417148445 +32298,112556,nudity (topless),1418424202 +32298,112556,wrongly accused,1417148445 +32298,112582,movie business,1404921456 +32298,112591,Africa,1404929307 +32298,112591,musicians,1404929307 +32298,112591,Nigeria,1404929307 +32298,112601,dogs,1405052934 +32298,112623,sequel,1405231737 +32298,112653,baseball,1405325174 +32298,112653,sports,1405325174 +32298,112655,nudity (topless),1407113129 +32298,112733,religion,1405755971 +32298,112733,suicide,1405755971 +32298,112743,England,1405755867 +32298,112743,history,1405755867 +32298,112743,Margaret Thatcher,1405755867 +32298,112743,politics,1405755867 +32298,112790,based on a book,1405852873 +32298,112804,Alfred P. Sloan Feature Film Prize,1418976716 +32298,112804,nudity (topless),1418976703 +32298,112804,reincarnation,1405935618 +32298,112804,watch the credits,1418982286 +32298,112814,Christianity,1405985161 +32298,112814,religion,1405985161 +32298,112814,sports,1405985162 +32298,112814,wrestling,1405985162 +32298,112818,patriotic,1407218919 +32298,112818,satire,1407218903 +32298,112818,sequel,1406007618 +32298,112850,teacher,1406033955 +32298,112852,aliens,1409519618 +32298,112852,Marvel,1416086401 +32298,112852,space,1416086288 +32298,112852,talking animals,1416086285 +32298,112852,watch the credits,1416086391 +32298,112868,aliens,1406177197 +32298,112868,twist ending,1406177197 +32298,112897,franchise,1406272113 +32298,112911,Greek mythology,1413900022 +32298,113035,forest,1406720293 +32298,113035,Ireland,1406720293 +32298,113037,nudity (topless),1406996610 +32298,113043,nudity (topless),1407213875 +32298,113064,great dialogue,1420807080 +32298,113064,Italy,1406832512 +32298,113064,road trip,1406832512 +32298,113064,scenic,1418337955 +32298,113064,sequel,1406832512 +32298,113064,witty,1418337955 +32298,113071,aliens,1406886478 +32298,113089,ocean,1406993950 +32298,113092,Christianity,1406993984 +32298,113092,religion,1406993984 +32298,113103,dance,1407117756 +32298,113103,franchise,1412273927 +32298,113103,Las Vegas,1407117756 +32298,113112,video games,1407084441 +32298,113159,directorial debut,1407203931 +32298,113159,zombies,1407203931 +32298,113207,biography,1410545764 +32298,113207,great soundtrack,1410545765 +32298,113207,long,1408167606 +32298,113207,musicians,1410545767 +32298,113207,rhythm & blues,1410545768 +32298,113214,cars,1407463630 +32298,113214,racing,1407463631 +32298,113214,sports,1407463631 +32298,113232,National Lampoon,1407730829 +32298,113234,based on a book,1407655219 +32298,113252,haunted house,1407730814 +32298,113275,France,1407730761 +32298,113275,restaurant,1407730751 +32298,113282,cycling,1407833805 +32298,113282,mountains,1407833804 +32298,113315,Israel,1422311488 +32298,113315,military,1422311490 +32298,113345,royalty,1430252011 +32298,113345,space,1430252200 +32298,113348,comic book,1408104037 +32298,113348,martial arts,1414373267 +32298,113348,talking animals,1408104036 +32298,113378,bad plot,1411154104 +32298,113378,based on a book,1411010010 +32298,113378,utopia,1411098970 +32298,113394,double life,1408342913 +32298,113394,impostor,1408342920 +32298,113394,siblings,1408342913 +32298,113394,twins,1408342913 +32298,113420,abortion,1408342835 +32298,113420,health care,1408342835 +32298,113420,politics,1408342835 +32298,113432,disease,1408342783 +32298,113453,police,1414541832 +32298,113474,based on a book,1422231716 +32298,113501,cyborgs,1408506972 +32298,113503,nudity (topless),1408506833 +32298,113510,nudity (topless),1408506745 +32298,113557,aliens,1408844650 +32298,113567,dance,1408844160 +32298,113573,black and white,1411901979 +32298,113573,comic book,1408844124 +32298,113573,multiple storylines,1411902018 +32298,113573,nudity (topless),1411902002 +32298,113573,sequel,1408844124 +32298,113573,stylized,1411902005 +32298,113575,writers,1408844472 +32298,113636,business,1409093077 +32298,113636,nature,1409093076 +32298,113636,oil,1409093077 +32298,113670,hostage,1409179856 +32298,113670,massacre,1409179856 +32298,113670,Russia,1409179856 +32298,113696,nudity (topless),1424998028 +32298,113739,space,1409506422 +32298,113746,Oregon,1409668288 +32298,113767,Mexico,1409668177 +32298,113771,forest,1409668089 +32298,113773,Christianity,1409668054 +32298,113773,religion,1409668054 +32298,113775,based on a book,1420191712 +32298,113775,Elmore Leonard,1420191712 +32298,113775,kidnapping,1409668005 +32298,113780,France,1409667963 +32298,113780,Paris,1409667963 +32298,113790,Israel,1409667936 +32298,113790,Middle East,1409667936 +32298,113790,Palestine,1409667936 +32298,113790,politics,1409667941 +32298,113793,movie business,1409667792 +32298,113816,musicians,1409784344 +32298,113831,siblings,1409747610 +32298,113847,advertising,1409919926 +32298,113855,atheism,1409919753 +32298,113855,education,1409919753 +32298,113855,religion,1409919753 +32298,113908,Louisiana,1410096072 +32298,113908,New Orleans,1410096072 +32298,113908,politics,1410096072 +32298,113938,politics,1410165139 +32298,113938,US President,1410165139 +32298,113968,based on a book,1410359587 +32298,113968,Kurt Vonnegut,1410359587 +32298,113976,musicians,1410359786 +32298,113999,1980s,1410359849 +32298,113999,Russia,1410359849 +32298,113999,Soviet Union,1410359849 +32298,114003,Middle East,1410453303 +32298,114003,Syria,1410453303 +32298,114007,based on a book,1410453379 +32298,114009,politics,1410453424 +32298,114013,Ayn Rand,1411826885 +32298,114013,based on a book,1411826885 +32298,114028,mining,1418707268 +32298,114028,queer,1418707268 +32298,114033,disaster,1410603548 +32298,114033,natural disaster,1410603548 +32298,114033,tornado,1410603548 +32298,114066,musicians,1410806892 +32298,114066,rock and roll,1410806962 +32298,114068,television,1410806864 +32298,114074,siblings,1410806784 +32298,114074,suicide,1418982413 +32298,114124,Australia,1410928984 +32298,114124,journalism,1410928984 +32298,114128,small town,1410928943 +32298,114130,based on a book,1410928919 +32298,114130,Jules Verne,1410928919 +32298,114130,ocean,1410928919 +32298,114130,submarine,1410928919 +32298,114170,tattoo,1411110924 +32298,114180,amnesia,1417086403 +32298,114180,based on a book,1411110875 +32298,114180,James Dashner,1417086495 +32298,114180,maze,1411110875 +32298,114184,military,1411285237 +32298,114184,prison,1411285237 +32298,114195,terrorism,1411285135 +32298,114236,conspiracy,1411285065 +32298,114236,politics,1411285065 +32298,114236,US President,1411285065 +32298,114240,easily confused with other movie(s) (title),1411285027 +32298,114242,sequel,1411284824 +32298,114250,based on a play,1411284807 +32298,114254,FBI,1411284777 +32298,114254,history,1411284777 +32298,114277,musicians,1411370588 +32298,114392,nudity (topless),1426538862 +32298,114396,farming,1411824665 +32298,114396,history,1411824642 +32298,114396,politics,1411824643 +32298,114396,poverty,1411824643 +32298,114459,nudity (topless),1413187838 +32298,114486,movie business,1411824514 +32298,114552,based on a book,1411998275 +32298,114552,claymation,1411998275 +32298,114552,stop motion,1411998275 +32298,114552,watch the credits,1418347282 +32298,114563,history,1411998220 +32298,114563,politics,1411998220 +32298,114565,movie business,1411998169 +32298,114601,siblings,1418967369 +32298,114662,based on a book,1412364788 +32298,114670,gruesome,1430167080 +32298,114670,torture,1430167080 +32298,114670,watch the credits,1430169788 +32298,114704,nudity (full frontal),1418624035 +32298,114704,space,1418624035 +32298,114707,based on a book,1413542504 +32298,114707,Christianity,1413542432 +32298,114707,gore,1413542767 +32298,114707,male nudity,1413542431 +32298,114707,nudity (topless),1413542432 +32298,114707,religion,1413542431 +32298,114707,revenge,1413542432 +32298,114758,hackers,1412549964 +32298,114758,kidnapping,1412549964 +32298,114758,nudity (topless),1412549964 +32298,114795,vampires,1413380390 +32298,114805,musicians,1412740940 +32298,114805,rhythm & blues,1412740940 +32298,114818,nudity (topless),1412750891 +32298,114834,nudity (topless),1418693886 +32298,114836,ghosts,1412832629 +32298,114836,trains,1412832629 +32298,114838,nudity (full frontal),1414530115 +32298,114847,artificial intelligence,1413032266 +32298,114847,heartwarming,1413032267 +32298,114847,post-apocalyptic,1413032266 +32298,114847,robots,1412832456 +32298,114849,assassin,1412832412 +32298,114849,kidnapping,1412832412 +32298,114852,based on a book,1412832322 +32298,114852,William Faulkner,1412832322 +32298,114856,based on a book,1412832221 +32298,114909,fish,1413032411 +32298,114909,history,1413032411 +32298,114928,multiple personalities,1413187727 +32298,114928,nudity (topless),1413188011 +32298,114935,great acting,1416822687 +32298,114935,original,1416822691 +32298,114935,Robert Heinlein,1434441918 +32298,114935,time travel,1416822692 +32298,114935,twist ending,1416822694 +32298,114980,musicians,1413168955 +32298,114980,vocalists,1413168955 +32298,114995,Poland,1413168852 +32298,115071,franchise,1413380206 +32298,115122,mockumentary,1420535972 +32298,115122,New Zealand,1420535888 +32298,115122,vampires,1420535970 +32298,115137,musicians,1413520265 +32298,115143,FBI,1413520239 +32298,115143,Islam,1413520239 +32298,115143,religion,1413520239 +32298,115143,terrorism,1413520239 +32298,115145,business,1413520192 +32298,115145,politics,1413520192 +32298,115147,small town,1413520095 +32298,115149,revenge,1421459651 +32298,115151,con artists,1413437473 +32298,115151,nudity (topless),1413437473 +32298,115151,true story,1413437473 +32298,115166,nudity (topless),1419388549 +32298,115203,drugs,1413721449 +32298,115203,marijuana,1413721449 +32298,115210,World War II,1413721340 +32298,115212,dogs,1413721375 +32298,115240,Iceland,1413899937 +32298,115240,road trip,1413899937 +32298,115244,nudity (topless),1413921590 +32298,115291,New Orleans,1413899813 +32298,115403,Islam,1414299819 +32298,115403,religion,1414299819 +32298,115403,siblings,1414299819 +32298,115414,apocalypse,1414299722 +32298,115414,based on a book,1414299701 +32298,115414,Christianity,1414299701 +32298,115414,religion,1414299700 +32298,115423,biography,1414299763 +32298,115423,country music,1414299763 +32298,115423,musicians,1414299762 +32298,115437,blindness,1414299606 +32298,115437,disability,1414299607 +32298,115471,aliens,1414299171 +32298,115538,cycling,1414469148 +32298,115538,drugs,1414469148 +32298,115538,sports,1414469148 +32298,115569,journalism,1418169347 +32298,115569,television,1418324327 +32298,115571,prison,1414469058 +32298,115571,Russia,1414469058 +32298,115617,robots,1414533804 +32298,115617,watch the credits,1420807107 +32298,115667,based on a book,1414718429 +32298,115676,siblings,1414718367 +32298,115678,musicians,1414718310 +32298,115680,directorial debut,1420541979 +32298,115680,time travel,1414718239 +32298,115680,twist ending,1420541979 +32298,115713,artificial intelligence,1415075420 +32298,115713,nudity (full frontal),1432347243 +32298,115713,robots,1435744313 +32298,115775,Africa,1415074904 +32298,115775,corruption,1415074904 +32298,115775,Rwanda,1415074905 +32298,115795,politics,1415074823 +32298,115795,US President,1415074823 +32298,115828,Copenhagen,1415074791 +32298,115828,Denmark,1415074791 +32298,115828,nudity (topless),1415074791 +32298,115907,nudity (topless),1418339348 +32298,116136,made for TV,1420718534 +32298,116136,teacher,1420718535 +32298,116205,nudity (topless),1421504071 +32298,116313,nudity (topless),1425619752 +32298,116590,nudity (topless),1422357016 +32298,116797,based on a book,1416088011 +32298,116797,England,1416088011 +32298,116797,history,1415828248 +32298,116797,mathematics,1416088012 +32298,116797,World War II,1416088011 +32298,116799,based on a book,1416087959 +32298,116799,complicated,1425720366 +32298,116799,drugs,1425720363 +32298,116799,long,1425720368 +32298,116799,nudity (topless),1425720350 +32298,116799,Thomas Pynchon,1416087959 +32298,116823,based on a book,1420718342 +32298,116823,dystopia,1425535450 +32298,116839,divorce,1416087893 +32298,116839,Israel,1416087894 +32298,116839,Judaism,1416087894 +32298,116839,Middle East,1416087894 +32298,116839,religion,1416087893 +32298,116849,teacher,1416086907 +32298,116887,based on a book,1428355429 +32298,116887,Biblical,1428355428 +32298,116887,Egypt,1428355428 +32298,116901,space,1417148556 +32298,116971,nudity (topless),1419359786 +32298,116977,buddy movie,1420197670 +32298,116977,infantile,1420197670 +32298,117123,college,1434945525 +32298,117176,based on a book,1428335961 +32298,117176,science,1428335961 +32298,117186,Mormon,1417087525 +32298,117186,religion,1417087524 +32298,117515,biography,1417087184 +32298,117515,mathematics,1417087183 +32298,117515,World War II,1417087183 +32298,117517,writers,1417087139 +32298,117529,dinosaurs,1417086974 +32298,117529,franchise,1421729562 +32298,117529,island,1417086986 +32298,117590,watch the credits,1418502637 +32298,117692,nudity (topless),1420321654 +32298,117718,nudity (full frontal),1428620102 +32298,117851,franchise,1419650324 +32298,117851,talking animals,1419650354 +32298,117851,watch the credits,1419650324 +32298,117887,based on a book,1430154818 +32298,117887,bears,1430154818 +32298,117887,slapstick,1430154598 +32298,117887,talking animals,1430154570 +32298,118082,black comedy,1423541495 +32298,118082,cats,1423541495 +32298,118082,dogs,1423541507 +32298,118082,mental illness,1423541495 +32298,118082,talking animals,1423541511 +32298,118244,far future,1419786040 +32298,118244,narrated,1419785936 +32298,118244,short,1419785576 +32298,118244,space,1419785576 +32298,118244,youtube,1419785936 +32298,118354,CIA,1421013552 +32298,118354,history,1421013552 +32298,118354,journalism,1421013552 +32298,118684,Christmas,1418325066 +32298,118696,based on a book,1418324049 +32298,118696,dragons,1418324298 +32298,118696,franchise,1418324048 +32298,118696,Tolkien,1418324048 +32298,118700,Alabama,1418325022 +32298,118700,history,1418325022 +32298,118704,musicians,1418324834 +32298,118704,rock and roll,1418324834 +32298,118766,Santa Claus,1418502375 +32298,118792,nudity (topless),1430169300 +32298,118812,Caribbean,1418502326 +32298,118812,Jamaica,1418502326 +32298,118812,musicians,1418502326 +32298,118826,nudity (topless),1418544475 +32298,118872,nudity (topless),1418863535 +32298,118874,nudity (topless),1418610119 +32298,118880,black and white,1418624193 +32298,118880,Iran,1418624193 +32298,118880,Middle East,1418624193 +32298,118880,vampires,1418624193 +32298,118888,stand-up comedy,1418624126 +32298,118896,single parents,1428841411 +32298,118900,based on a book,1418711568 +32298,118900,nudity (topless),1421505951 +32298,118924,cameo-fest,1423056038 +32298,118924,movie business,1423055222 +32298,118924,nudity (topless),1423055200 +32298,118930,stand-up comedy,1418711437 +32298,118970,nudity (topless),1418778933 +32298,118985,painter,1421013510 +32298,118997,bad soundtrack,1422330957 +32298,118997,based on a play,1422330956 +32298,118997,fairy tale,1420973720 +32298,118997,parody,1420973720 +32298,118997,Stephen Sondheim,1420973859 +32298,119137,made for TV,1419045554 +32298,119137,short,1419045596 +32298,119139,made for TV,1419045428 +32298,119139,TV series,1419045428 +32298,119141,assassin,1419100132 +32298,119155,history,1425449446 +32298,119155,museum,1425449446 +32298,119155,slapstick,1425449446 +32298,119155,whimsical,1425449446 +32298,119167,alternate reality,1419172001 +32298,119167,magic,1419172001 +32298,119202,not a movie,1419361289 +32298,119214,poverty,1419361220 +32298,119216,nudity (topless),1419361029 +32298,119224,Christmas,1419360957 +32298,119224,franchise,1419360150 +32298,119224,small town,1419360957 +32298,119627,nudity (topless),1425621111 +32298,119667,nudity (full frontal),1420322585 +32298,119858,Nazis,1419821336 +32298,120246,nudity (topless),1429092719 +32298,120258,Africa,1420100238 +32298,120258,colonialism,1420100238 +32298,120258,England,1420100238 +32298,120258,history,1420100238 +32298,120274,history,1420100160 +32298,120276,nature,1420100103 +32298,120392,alternate reality,1420331218 +32298,120466,Africa,1433394028 +32298,120466,artificial intelligence,1433394028 +32298,120466,Johannesburg,1433394028 +32298,120466,police,1433394028 +32298,120466,robots,1420331103 +32298,120466,South Africa,1433394028 +32298,120478,nature,1420331019 +32298,120578,college,1420330937 +32298,120578,gambling,1420330938 +32298,120578,mathematics,1420330938 +32298,120637,hackers,1423055378 +32298,120799,cyborgs,1420537036 +32298,120799,franchise,1420537036 +32298,120799,robots,1420537036 +32298,120835,hip hop,1420536915 +32298,120835,short,1420536914 +32298,121109,nudity (topless),1428362930 +32298,121111,aliens,1420717453 +32298,121129,parody,1420717354 +32298,121137,nudity (topless),1421500125 +32298,121159,aliens,1420796783 +32298,121171,hockey,1421503476 +32298,121171,Soviet Union,1421503476 +32298,121171,sports,1421503476 +32298,121194,single parents,1421503427 +32298,121225,boxing,1420877123 +32298,121225,sports,1420877123 +32298,121227,movie business,1420877068 +32298,121237,narrated,1420877020 +32298,121239,movie business,1420876972 +32298,121239,pornography,1420876972 +32298,121241,based on a book,1420877275 +32298,121241,based on a play,1420877275 +32298,121241,London,1420877275 +32298,121247,nudity (topless),1420876886 +32298,121271,nudity (topless),1430167746 +32298,121419,Louisiana,1429092406 +32298,121419,New Orleans,1429092406 +32298,121419,nudity (topless),1429092294 +32298,121449,nudity (topless),1429540748 +32298,121811,nudity (topless),1428097604 +32298,122306,nudity (full Frontal),1425000871 +32298,122325,nudity (full frontal),1422638663 +32298,122345,nudity (topless),1428750710 +32298,122882,Australia,1432175249 +32298,122882,desert,1432175248 +32298,122882,franchise,1432175248 +32298,122886,franchise,1421503309 +32298,122886,space,1421503309 +32298,122892,comic book,1421503163 +32298,122892,franchise,1421503163 +32298,122892,Marvel,1421503163 +32298,122892,superhero,1421503163 +32298,122900,comic book,1437409350 +32298,122900,Marvel,1437409337 +32298,122900,superhero,1437409096 +32298,122902,comic book,1421503251 +32298,122902,Marvel,1421503251 +32298,122902,superhero,1421503251 +32298,125107,nudity (topless),1428095607 +32298,125537,business,1421699988 +32298,125537,technology,1421699988 +32298,125565,World War II,1421699843 +32298,125628,politics,1421699792 +32298,125904,high school,1426538615 +32298,125904,nudity (topless),1426538615 +32298,125914,based on a book,1428299706 +32298,125916,based on a book,1424283555 +32298,125916,erotic,1437552547 +32298,125916,nudity (topless),1424283555 +32298,125918,high school,1424403219 +32298,126146,nudity (topless),1425619408 +32298,126389,American Civil War,1422229957 +32298,126389,civil war,1422229969 +32298,126393,nudity (topless),1424998587 +32298,126393,werewolves,1424998587 +32298,126409,folk music,1422229689 +32298,126409,musicians,1422229689 +32298,126426,based on a book,1422332082 +32298,126426,made for TV,1422332082 +32298,126426,space,1422332082 +32298,126426,Stanislaw Lem,1422332082 +32298,126430,World War II,1422332307 +32298,126432,post-apocalyptic,1422332786 +32298,126548,high school,1427733618 +32298,126767,nudity (topless),1430169734 +32298,127096,bad ending,1432261346 +32298,127096,confusing,1432261346 +32298,127096,time travel,1427733533 +32298,127098,stand-up comedy,1427732428 +32298,127108,1950s,1424403307 +32298,127112,archaeology,1427732660 +32298,127112,religion,1427732660 +32298,127116,psychology,1427733167 +32298,127116,science,1427733167 +32298,127122,based on a book,1428207283 +32298,127122,Biblical,1428207283 +32298,127122,Jesus,1428207283 +32298,127122,religion,1428207283 +32298,127126,Korea,1427733499 +32298,127130,college,1427732750 +32298,127138,1980s,1427733010 +32298,127138,New York City,1427733010 +32298,127142,movie business,1423898792 +32298,127144,movie business,1427732576 +32298,127144,National Lampoon,1427732576 +32298,127146,musicians,1428299818 +32298,127146,rock and roll,1428299818 +32298,127150,fashion,1428207185 +32298,127150,hip hop,1428207173 +32298,127152,religion,1428298933 +32298,127152,scientology,1428298933 +32298,127156,polyamory,1427732859 +32298,127156,religion,1427732859 +32298,127158,cancer,1428299252 +32298,127158,disease,1428299252 +32298,127160,football,1427732714 +32298,127160,immigrants,1427732714 +32298,127160,sports,1427732714 +32298,127164,musicians,1427733402 +32298,127164,rhythm & blues,1427733402 +32298,127164,vocalists,1427733402 +32298,127212,history,1428299743 +32298,127212,psychology,1428299743 +32298,127212,science,1428299743 +32298,127214,kidnapping,1427732952 +32298,127218,based on a book,1428299331 +32298,127218,love triangles,1428299331 +32298,127218,post-apocalyptic,1428299331 +32298,127222,nudity (topless),1428748389 +32298,127441,history,1422974552 +32298,127441,Vietnam,1422974552 +32298,127441,Vietnam War,1422974552 +32298,127449,India,1423125763 +32298,127453,Russia,1423125548 +32298,127453,serial killer,1423125546 +32298,127575,Germany,1423125433 +32298,127579,19th century,1423125932 +32298,127579,true story,1423125931 +32298,127583,movie business,1423125305 +32298,127610,drugs,1424286394 +32298,128029,nudity (topless),1430166233 +32298,128031,nudity (topless),1430166704 +32298,128322,rock and roll,1423587629 +32298,128439,road trip,1423898166 +32298,128512,road trip,1424285375 +32298,128520,watch the credits,1430191190 +32298,128520,wedding,1424285347 +32298,128542,Australia,1428300145 +32298,128542,zombies,1428300145 +32298,128552,revenge,1424285061 +32298,128608,19th century,1424284852 +32298,128608,based on a book,1435475655 +32298,128608,France,1424284852 +32298,128610,Latin America,1424284804 +32298,128616,based on a book,1424284697 +32298,128632,nudity (topless),1424284588 +32298,128648,based on a book,1424284514 +32298,128671,Africa,1424284479 +32298,128671,desert,1424284479 +32298,128671,Islam,1424284479 +32298,128671,religion,1424284479 +32298,128673,nudity (topless),1424284221 +32298,128684,musicians,1424284094 +32298,128740,adoption,1424356019 +32298,128832,based on a play,1424355909 +32298,128844,easily confused with other movie(s) (title),1424452882 +32298,128844,time loop,1424452882 +32298,128844,time travel,1424452882 +32298,128975,nudity (topless),1428619203 +32298,128975,sequel,1430178530 +32298,128975,time travel,1428300371 +32298,128975,watch the credits,1430178526 +32298,129080,nudity (topless),1428733951 +32298,129305,nudity (topless),1428751389 +32298,129333,nudity (topless),1431953455 +32298,129393,high school,1425237346 +32298,129393,New Jersey,1425237346 +32298,129393,religion,1425237346 +32298,129428,India,1425237262 +32298,129657,cycling,1425720246 +32298,129657,parkour,1425720250 +32298,129659,small town,1425720160 +32298,129659,sports,1425720160 +32298,129669,lawyers,1425720125 +32298,129673,nudity (topless),1425720077 +32298,129707,resurrection,1426047417 +32298,129818,Boston,1426140082 +32298,129820,high school,1427732929 +32298,129820,robots,1427732929 +32298,130073,boring,1431470591 +32298,130073,fairy tale,1428299191 +32298,130073,narrated,1431471982 +32298,130073,royalty,1431470591 +32298,130075,magic,1428300272 +32298,130075,short,1428300272 +32298,130374,India,1427732461 +32298,130374,rape,1427732461 +32298,130448,remake,1429095292 +32298,130490,based on a book,1427733744 +32298,130490,Veronica Roth,1427733744 +32298,130496,US President,1437551776 +32298,130520,aliens,1430268344 +32298,130520,based on a book,1432313951 +32298,130520,road trip,1432268298 +32298,130634,cars,1428300042 +32298,130634,long,1435737484 +32298,130634,revenge,1428300042 +32298,130634,watch the credits,1435738087 +32298,130788,nudity (topless),1429540476 +32298,130788,true story,1429540524 +32298,130788,World War I,1429540524 +32298,131170,alternate reality,1427732804 +32298,131170,bad ending,1432313672 +32298,131170,post-apocalyptic,1432313626 +32298,131170,short,1432313675 +32298,131586,Africa,1428094576 +32298,131586,Kenya,1428094576 +32298,131586,terrorism,1428094576 +32298,131628,road trip,1428094374 +32298,131630,nudity (topless),1429349718 +32298,131656,talking animals,1428094316 +32298,131730,nudity (topless),1428204823 +32298,131775,lawyers,1428299015 +32298,131816,military,1428288631 +32298,131818,movie business,1428288597 +32298,131850,based on a book,1428358229 +32298,131850,Biblical,1428358229 +32298,131850,Jesus,1428358229 +32298,132046,alternate reality,1437551275 +32298,132070,movie business,1428752807 +32298,132074,baseball,1428752783 +32298,132074,drugs,1428752783 +32298,132074,sports,1428752783 +32298,132122,nudity (topless),1435480037 +32298,132144,based on a book,1428752652 +32298,132144,siblings,1428752653 +32298,132157,sequel,1428840547 +32298,132159,amnesia,1428840529 +32298,132159,siblings,1428840529 +32298,132159,twins,1428840529 +32298,132167,nudity (topless),1429543116 +32298,132169,based on a book,1428840387 +32298,132169,time travel,1428840386 +32298,132333,golf,1429091788 +32298,132333,sports,1429091788 +32298,132354,jazz,1429091759 +32298,132354,musicians,1429091759 +32298,132358,India,1429091708 +32298,132372,France,1429091645 +32298,132372,Nazis,1429091645 +32298,132372,World War II,1429091645 +32298,132381,history,1429203728 +32298,132381,Korea,1429203728 +32298,132424,based on a book,1429350096 +32298,132472,Antarctica,1429538721 +32298,132472,nature,1429538721 +32298,132472,polar,1429538721 +32298,132472,wintry,1429538721 +32298,132478,Estonia,1429538665 +32298,132492,musicians,1429538544 +32298,132494,Iran,1429538595 +32298,132494,sports,1429538595 +32298,132494,wrestling,1429538595 +32298,132496,nudity (topless),1434844310 +32298,132526,apocalypse,1429833428 +32298,132526,based on a book,1429833428 +32298,132526,Biblical,1429833428 +32298,132526,Christianity,1429833428 +32298,132526,cloning,1429833461 +32298,132526,Jesus Christ,1429833429 +32298,132526,religion,1429833428 +32298,132534,food,1429822960 +32298,132534,Latin America,1429822960 +32298,132534,Peru,1429822960 +32298,132534,South America,1429822960 +32298,132547,high school,1429822857 +32298,132590,college,1430155368 +32298,132590,football,1430155368 +32298,132590,sports,1430155368 +32298,132594,royalty,1430155316 +32298,132614,fashion,1430155248 +32298,132616,apocalypse,1430155222 +32298,132616,zombies,1430155222 +32298,132622,books,1430155414 +32298,132622,writers,1430155447 +32298,132624,internet,1430155114 +32298,132626,based on a book,1430155175 +32298,132626,Peter Pan,1430155175 +32298,132658,musicians,1430155080 +32298,132666,movie business,1430155020 +32298,132796,earthquake,1430257709 +32298,132796,natural disaster,1430257708 +32298,132800,nudity (full frontal),1431154861 +32298,132800,television,1431154894 +32298,132888,made for TV,1430302846 +32298,132908,nudity (full frontal),1430912324 +32298,132910,nudity (topless),1430912410 +32298,132912,nudity (full frontal),1430912490 +32298,132914,nudity (full frontal),1430912697 +32298,132922,male nudity,1430914237 +32298,132922,nudity (full frontal),1430914237 +32298,132922,unsimulated sex,1430914237 +32298,133225,Africa,1430911882 +32298,133225,Madagascar,1430911882 +32298,133225,monkey,1430911882 +32298,133225,nature,1430911882 +32298,133295,cocaine,1431155397 +32298,133295,drugs,1431155397 +32298,133295,Florida,1431155397 +32298,133295,Miami,1431155397 +32298,133303,movie business,1431155210 +32298,133303,Star Wars,1431155210 +32298,133307,business,1431155182 +32298,133319,biology,1431173282 +32298,133319,evolution,1431173282 +32298,133319,medicine,1431173282 +32298,133319,science,1431173283 +32298,133321,Mexico,1431173247 +32298,133321,Tijuana,1431173247 +32298,133333,fish,1431173186 +32298,133333,nature,1431173186 +32298,133347,surfing,1436810942 +32298,133381,movie business,1431605799 +32298,133391,high school,1431605772 +32298,133393,stage magic,1431605724 +32298,133407,business,1431605673 +32298,133419,choir,1431605891 +32298,133419,college,1431605891 +32298,133419,directorial debut,1431605943 +32298,133419,musicians,1431605891 +32298,133419,vocalists,1431605891 +32298,133421,Philip K. Dick,1431605593 +32298,133439,farm,1431953274 +32298,133545,great acting,1431952118 +32298,133545,suicide attempt,1431952124 +32298,133583,biography,1437551339 +32298,133583,musicians,1437551338 +32298,133583,vocalists,1437551339 +32298,133638,Africa,1431953154 +32298,133638,narrated,1431953154 +32298,133638,propaganda,1431953154 +32298,133638,Tunisia,1431953154 +32298,133645,based on a book,1431952554 +32298,133675,based on a book,1431952361 +32298,133675,dinosaurs,1431952361 +32298,133675,made for TV,1431952361 +32298,133710,Australia,1432175368 +32298,133710,desert,1432175368 +32298,133729,nudity (topless),1432316221 +32298,133753,high school,1432510422 +32298,133782,zombies,1432510260 +32298,133798,police,1432510227 +32298,133798,Texas,1432510228 +32298,133808,Mormon,1432510113 +32298,133808,religion,1432510113 +32298,133867,high school,1436811006 +32298,134130,Andy Weir,1454053304 +32298,134130,based on a book,1454053304 +32298,134130,Mars,1454053265 +32298,134130,space,1454053265 +32298,134170,martial arts,1437551579 +32298,134170,police,1437551579 +32298,134170,short,1441599368 +32298,134170,time travel,1437551579 +32298,134368,espionage,1436810986 +32298,134519,Latin America,1433394414 +32298,134519,Mexico,1433394414 +32298,134519,South America,1433394414 +32298,134519,television,1433394414 +32298,134521,Brazil,1433394320 +32298,134521,Latin America,1433394332 +32298,134521,Rio de Janeiro,1433394320 +32298,134521,South America,1433394331 +32298,134528,Hawaii,1433394163 +32298,134528,military,1433394163 +32298,134569,prostitution,1434944159 +32298,134775,China,1434029272 +32298,134783,based on a TV show,1434029225 +32298,134785,England,1434029167 +32298,134785,small town,1434029166 +32298,134791,based on a play,1434029116 +32298,134796,Afghanistan,1434029071 +32298,134796,Middle East,1434029071 +32298,134796,Saudi Arabia,1434029071 +32298,134853,Pixar,1435744367 +32298,134881,musicians,1441090019 +32298,134881,rock and roll,1441090019 +32298,134881,true story,1441090019 +32298,135200,strippers,1436811189 +32298,135212,Palestine,1435384988 +32298,135212,short,1435384988 +32298,135627,artificial intelligence,1435384233 +32298,135627,hackers,1435384233 +32298,135859,time travel,1435374704 +32298,135861,crude humor,1441598474 +32298,135861,sequel,1435374637 +32298,136564,based on a play,1435975623 +32298,136564,Scotland,1435975623 +32298,136564,Shakespeare,1435975623 +32298,136598,remake,1454054195 +32298,136598,road trip,1454054195 +32298,136632,dinosaurs,1436106947 +32298,136640,dinosaurs,1436106920 +32298,136640,time travel,1436106920 +32298,136654,based on a book,1436106877 +32298,136660,aviation,1436106848 +32298,136676,jungle,1436106766 +32298,136678,kidnapping,1436106744 +32298,136678,parody,1436106744 +32298,136694,siblings,1436106666 +32298,136754,boxing,1436106529 +32298,136754,sports,1436106529 +32298,136804,dogs,1436106394 +32298,136804,talking animals,1436106393 +32298,136904,Canada,1436106294 +32298,136904,trains,1436106294 +32298,137034,drugs,1436810916 +32298,137034,high school,1436810916 +32298,137337,musicians,1436407840 +32298,137337,rhythm & blues,1436407840 +32298,137337,vocalists,1436407840 +32298,137425,made for TV,1436527021 +32298,138564,New York City,1436891120 +32298,138564,politics,1436891120 +32298,138816,musicians,1437194651 +32298,138816,polka,1437194651 +32298,139327,musicians,1437409789 +32298,139329,musicians,1437409745 +32298,139329,rock and roll,1437409745 +32298,139385,19th century,1454053794 +32298,139628,World War II,1437772936 +32298,140715,hip-hop,1441597579 +32298,140715,musicians,1441597578 +32298,140715,vocalists,1441597579 +32298,141373,Ukraine,1441089084 +32298,141402,Star Trek,1441089024 +32298,141422,feminism,1441088950 +32298,142488,Boston,1454053930 +32298,142488,Catholicism,1454053931 +32298,142488,child abuse,1454053930 +32298,142488,Christianity,1454053930 +32298,142488,Massachusetts,1454053929 +32298,142488,religion,1454053929 +32334,132480,fiction,1439411020 +32360,17,19th century,1272505081 +32360,17,Alan Rickman,1272505075 +32360,17,Ang Lee,1272505146 +32360,17,British,1272505129 +32360,17,costume drama,1272505115 +32360,17,Emma Thompson,1272505089 +32360,17,historical,1272505110 +32360,17,Jane Austen,1272505095 +32360,17,Period,1272505100 +32360,39,1990s,1272505775 +32360,39,Alicia Silverstone,1272505677 +32360,39,Brittany Murphy,1272505686 +32360,39,teen,1272505700 +32360,39,updated classics,1272505696 +32360,223,slackers,1272506069 +32360,260,atmospheric,1272505022 +32360,260,Harrison Ford,1272505017 +32360,266,prohibition,1272505570 +32360,597,Good Romantic Comedies,1272505202 +32360,1196,George Lucas,1272504958 +32360,1196,Harrison Ford,1272504963 +32360,1711,Savannah,1272506404 +32360,1895,1990s,1272507258 +32360,1895,Teen movie,1272507247 +32360,1959,Africa,1272507621 +32360,1959,colonialism,1272507639 +32360,2572,guilty pleasure,1272506286 +32360,2572,Heath Ledger,1272506280 +32360,2572,Julia Stiles,1272506291 +32360,2572,shakespeare,1272506324 +32360,2572,teen,1272506328 +32360,2706,comedy,1272506253 +32360,2706,high school,1272506244 +32360,3578,Rome,1272505618 +32360,4169,alan rickman,1272506146 +32360,4169,British,1272506174 +32360,4169,british comedy,1272506161 +32360,4169,dark comedy,1272506211 +32360,4169,Josh Hartnett,1272506182 +32360,4246,British,1272506107 +32360,4246,Jane Austen,1272506100 +32360,5013,comedy of manners,1272506482 +32360,5013,England,1272506455 +32360,5013,murder mystery,1272506459 +32360,5013,Period piece,1272506465 +32360,6539,adventure,1272505240 +32360,6539,Keira Knightley,1272505231 +32360,6539,magic,1272505248 +32360,6539,Orlando Bloom,1272505285 +32360,6942,Alan Rickman,1272505356 +32360,6942,Bill Nighy,1272505405 +32360,6942,british,1272505326 +32360,6942,christmas,1272505330 +32360,6942,Emma Thompson,1272505368 +32360,6942,great soundtrack,1272505537 +32360,6942,Keira Knightley,1272505333 +32360,6942,Liam Neeson,1272505433 +32360,6942,London,1272505337 +32360,7317,comedy,1272507211 +32360,7458,based on a myth,1272505886 +32360,7458,Brad Pitt,1272505899 +32360,7458,Epic,1272505894 +32360,7458,Eric Bana,1272505868 +32360,7458,Homer,1272505873 +32360,45880,based on a true story,1272504831 +32360,45880,costume drama,1272504856 +32360,45880,France,1272504809 +32360,45880,great soundtrack,1272504868 +32360,45880,historical,1272504861 +32360,45880,isolation,1272504875 +32360,45880,Kirsten Dunst,1272504880 +32360,45880,stylized,1272504843 +32360,56367,high school,1272505997 +32360,56367,teen,1272506003 +32360,69406,Alaska,1272506561 +32360,69406,Ryan Reynolds,1272506587 +32360,69406,Sandra Bullock,1272506572 +32360,70932,Greece,1272506520 +32360,70932,Nia Vardalos,1272506527 +32365,6595,Jeremy Renner,1395067515 +32365,48516,so many f-bombs,1394908428 +32365,60072,bending bullets,1395028270 +32365,91630,best of the series so far,1394908745 +32365,91630,Jeremy Renner,1394908752 +32365,106916,Amy Adams,1394908365 +32365,106916,disjointed plot,1394908390 +32365,106916,Jeremy Renner,1394908360 +32365,106916,lack of development,1394908382 +32405,260,classic,1433679230 +32405,260,Science Fiction,1433679226 +32405,260,space,1433679222 +32405,260,space opera,1433679257 +32442,260,"action, scifi",1433399738 +32442,260,space action,1433399714 +32451,109487,corny,1426683653 +32459,230,housekeeper,1188166811 +32459,230,incest,1188166811 +32459,230,Stephen King,1188166811 +32459,247,Kate Winslet,1188166851 +32459,247,New Zealand,1188166851 +32459,247,Peter Jackson,1188166851 +32459,296,black comedy,1422908400 +32459,296,nonlinear storyline,1422908400 +32459,296,tarantino,1422908400 +32459,372,Winona Ryder,1188166875 +32459,468,Hugh Grant,1188166816 +32459,719,Michael Keaton,1188166868 +32459,838,Gwyneth Paltrow,1188166814 +32459,838,Jane Austen,1188166814 +32459,849,John Carpenter,1188166973 +32459,849,Kurt Russell,1188166973 +32459,1179,Angelica Huston,1188167000 +32459,1179,Annette Bening,1188167000 +32459,1179,John Cusack,1188167000 +32459,1231,astronauts,1188166908 +32459,1231,tom wolfe,1188166908 +32459,1953,Gene Hackman,1188166823 +32459,1953,Oscar (Best Actor),1188166823 +32459,1953,Oscar (Best Picture),1188166823 +32459,5377,Hugh Grant,1188166933 +32459,5377,Nick Hornby,1188166933 +32459,7147,Albert Finney,1188166960 +32459,7147,Coen Brothers,1188166960 +32459,7147,Ewan McGregor,1188166960 +32466,1,Pixar,1137524900 +32466,11,girlie movie,1137528929 +32466,17,Ang Lee,1137528190 +32466,18,Tarantino,1137527324 +32466,29,Jeunet,1137525564 +32466,32,Gilliam,1137524990 +32466,39,teen,1137525570 +32466,52,Woody Allen,1137525587 +32466,74,girlie movie,1137527667 +32466,104,Adam Sandler,1137528166 +32466,215,girlie movie,1137528149 +32466,235,Tim Burton,1137527854 +32466,260,Lucas,1137524728 +32466,296,Tarantino,1137524524 +32466,342,Australian,1137525644 +32466,346,Beatles,1137528956 +32466,348,Woody Allen,1137525611 +32466,364,Disney,1137525637 +32466,468,British,1137525623 +32466,471,coen bros,1137525632 +32466,480,Speilberg,1137526625 +32466,508,Demme,1137525653 +32466,509,girlie movie,1137527356 +32466,524,sports,1137526683 +32466,527,Speilberg,1137524951 +32466,539,girlie movie,1137528210 +32466,587,girlie movie,1137527326 +32466,588,Disney,1137525602 +32466,592,super-hero,1137528991 +32466,593,Demme,1137524969 +32466,595,Disney,1137525606 +32466,597,girlie movie,1137526678 +32466,608,coen bros,1137524502 +32466,750,Kubrick,1137525690 +32466,778,British,1137528255 +32466,903,Hitchcock,1137524993 +32466,904,Hitchcock,1137524558 +32466,908,Hitchcock,1137524925 +32466,919,classic,1137524995 +32466,924,Kubrick,1137526655 +32466,928,Hitchcock,1137524937 +32466,930,Hitchcock,1137524928 +32466,931,Hitchcock,1137526705 +32466,953,classic,1137524921 +32466,965,Hitchcock,1137525676 +32466,1035,classic,1137524983 +32466,1073,classic,1137525737 +32466,1077,Woody Allen,1137524978 +32466,1078,Woody Allen,1137526658 +32466,1080,Gilliam,1137525715 +32466,1097,Speilberg,1137525696 +32466,1101,girlie movie,1137529009 +32466,1131,French,1137528235 +32466,1132,French,1137528241 +32466,1136,Gilliam,1137525151 +32466,1172,Italian,1137527892 +32466,1175,Jeunet,1137525141 +32466,1188,Australian,1137525731 +32466,1196,Lucas,1137524717 +32466,1198,Lucas,1137524700 +32466,1199,Gilliam,1137524685 +32466,1204,classic,1137525707 +32466,1206,Kubrick,1137525684 +32466,1207,classic,1137524823 +32466,1210,Lucas,1137526742 +32466,1211,German,1137527907 +32466,1219,Hitchcock,1137525157 +32466,1224,British,1137528289 +32466,1233,German,1137527885 +32466,1234,classic,1137525163 +32466,1237,Swedish,1137528319 +32466,1245,coen bros,1137525146 +32466,1249,French,1137528272 +32466,1250,classic,1137524808 +32466,1252,classic,1137525748 +32466,1259,Stephen King,1137528324 +32466,1262,classic,1137524814 +32466,1267,classic,1137524788 +32466,1274,Japan,1137527516 +32466,1276,classic,1137525134 +32466,1278,Mel Brooks,1137527948 +32466,1280,Chinese,1137528307 +32466,1282,Disney,1137525755 +32466,1288,Christopher Guest,1137526750 +32466,1291,Lucas,1137525779 +32466,1300,Swedish,1137528301 +32466,1302,sports,1137528275 +32466,1306,German,1137529046 +32466,1307,girlie movie,1137527941 +32466,1345,Stephen King,1137528345 +32466,1387,Speilberg,1137525816 +32466,1393,girlie movie,1137529068 +32466,1394,coen bros,1137525189 +32466,1449,Christopher Guest,1137526804 +32466,1513,teen,1137525826 +32466,1537,Japan,1137525226 +32466,1569,girlie movie,1137526794 +32466,1635,Ang Lee,1137529319 +32466,1639,Kevin Smith,1137526774 +32466,1673,Paul Thomas Anderson,1137528338 +32466,1678,Chinese,1137528367 +32466,1690,Jeunet,1137527403 +32466,1721,girlie movie,1137528411 +32466,1732,coen bros,1137525840 +32466,1777,Adam Sandler,1137528415 +32466,1884,Gilliam,1137525858 +32466,1954,classic,1137525195 +32466,1968,teen,1137525849 +32466,2019,Kurosawa,1137524865 +32466,2028,Speilberg,1137525202 +32466,2065,Woody Allen,1137525185 +32466,2085,Disney,1137526852 +32466,2100,girlie movie,1137528406 +32466,2115,Lucas,1137525867 +32466,2118,Stephen King,1137528441 +32466,2133,teen,1137526827 +32466,2134,teen,1137526861 +32466,2136,Jerry Lewis,1137527929 +32466,2144,teen,1137525945 +32466,2146,teen,1137526857 +32466,2174,Tim Burton,1137528429 +32466,2176,Hitchcock,1150493812 +32466,2178,Hitchcock,1137525924 +32466,2181,Hitchcock,1137526843 +32466,2183,Hitchcock,1137525934 +32466,2184,Hitchcock,1137529987 +32466,2186,Hitchcock,1137525236 +32466,2202,Hitchcock,1137525928 +32466,2203,Hitchcock,1137525208 +32466,2204,Hitchcock,1150493893 +32466,2205,Hitchcock,1137526848 +32466,2245,girlie movie,1137529111 +32466,2247,Demme,1137525939 +32466,2291,Tim Burton,1137528447 +32466,2294,Pixar,1137526874 +32466,2301,Mel Brooks,1137529313 +32466,2324,Italian,1137529372 +32466,2335,Adam Sandler,1137529147 +32466,2355,Pixar,1137525907 +32466,2363,Japan,1137526880 +32466,2365,Japan,1137529127 +32466,2395,Wes Anderson,1137527993 +32466,2409,sports,1137529133 +32466,2410,sports,1137528489 +32466,2411,sports,1137529378 +32466,2572,teen,1137527383 +32466,2628,Lucas,1137526898 +32466,2640,super-hero,1137526901 +32466,2706,teen,1137525316 +32466,2797,girlie movie,1137528541 +32466,2857,Beatles,1137528012 +32466,2863,Beatles,1137528007 +32466,2905,Kurosawa,1137525361 +32466,2915,teen,1137526013 +32466,2918,teen,1137527416 +32466,2942,girlie movie,1137527533 +32466,2946,Beatles,1137528553 +32466,2949,Bond,1137525994 +32466,2952,Paul Thomas Anderson,1137528548 +32466,2968,Gilliam,1137525366 +32466,3000,Miyazaki,1137525352 +32466,3030,Kurosawa,1137525381 +32466,3083,Spanish,1137528534 +32466,3098,sports,1137528613 +32466,3108,Gilliam,1137526034 +32466,3114,Pixar,1137525373 +32466,3160,Paul Thomas Anderson,1137527976 +32466,3210,teen,1137525412 +32466,3252,girlie movie,1137527445 +32466,3255,sports,1137526947 +32466,3359,sports,1137528595 +32466,3360,sports,1137526943 +32466,3363,Lucas,1137524763 +32466,3408,girlie movie,1137528599 +32466,3418,girlie movie,1137528063 +32466,3421,classic,1137524841 +32466,3471,Speilberg,1137526928 +32466,3552,teen,1137526068 +32466,3633,Bond,1137526092 +32466,3635,Bond,1137529740 +32466,3638,Bond,1137527493 +32466,3671,Mel Brooks,1137528638 +32466,3683,coen bros,1137526061 +32466,3688,teen,1137526957 +32466,3793,super-hero,1137528674 +32466,3812,Woody Allen,1137526079 +32466,3911,Christopher Guest,1137525403 +32466,3916,sports,1137526967 +32466,3996,Ang Lee,1137528657 +32466,4014,French,1137528648 +32466,4025,girlie movie,1137527488 +32466,4027,coen bros,1137524858 +32466,4091,Beatles,1137529652 +32466,4103,Speilberg,1137527526 +32466,4144,Chinese,1137528709 +32466,4220,sports,1137528720 +32466,4246,girlie movie,1137526125 +32466,4322,sports,1137528698 +32466,4410,Demme,1137529529 +32466,4440,Chinese,1137528704 +32466,4447,girlie movie,1137527003 +32466,4467,Gilliam,1137526116 +32466,4623,sports,1137527012 +32466,4718,teen,1137526978 +32466,4881,coen bros,1137526152 +32466,4886,Pixar,1137525425 +32466,4902,Spanish,1137528689 +32466,4973,Jeunet,1137524756 +32466,4979,Wes Anderson,1137528790 +32466,4992,girlie movie,1137527478 +32466,5066,girlie movie,1137527624 +32466,5139,sports,1137528747 +32466,5225,Mexican,1137529183 +32466,5267,sports,1137528784 +32466,5291,Kurosawa,1137525498 +32466,5299,girlie movie,1137527064 +32466,5349,super-hero,1137528104 +32466,5378,Lucas,1137526200 +32466,5444,Disney,1137527048 +32466,5602,coen bros,1137527033 +32466,5618,Miyazaki,1137524872 +32466,5620,girlie movie,1137527089 +32466,5639,Japan,1137528763 +32466,5673,Paul Thomas Anderson,1137528094 +32466,5690,Japan,1137527813 +32466,5796,Bond,1137529837 +32466,5872,Bond,1137529769 +32466,5942,girlie movie,1137527653 +32466,5971,Miyazaki,1137524463 +32466,5992,girlie movie,1137528820 +32466,6104,Gilliam,1137527055 +32466,6125,Gilliam,1137527159 +32466,6163,French,1137528814 +32466,6250,Stephen King,1137527609 +32466,6270,Kurosawa,1137527114 +32466,6296,Christopher Guest,1137525489 +32466,6333,super-hero,1137528852 +32466,6350,Miyazaki,1137525453 +32466,6377,Pixar,1137525461 +32466,6440,coen bros,1137525448 +32466,6534,super-hero,1137527615 +32466,6586,teen,1137527460 +32466,6643,Japan,1137528845 +32466,6669,Kurosawa,1137524447 +32466,6773,French,1137528850 +32466,6807,Gilliam,1137526223 +32466,6873,coen bros,1137527136 +32466,6874,Tarantino,1137525476 +32466,6985,French,1137528832 +32466,6993,Woody Allen,1137527123 +32466,7023,Chinese,1137528898 +32466,7090,Chinese,1137528083 +32466,7099,Miyazaki,1137526486 +32466,7167,Australian,1137526476 +32466,7173,girlie movie,1137527567 +32466,7346,teen,1137527184 +32466,7367,coen bros,1137527218 +32466,7373,super-hero,1137527205 +32466,7438,Tarantino,1137525481 +32466,7485,Japan,1137527189 +32466,7925,Kurosawa,1137524775 +32466,8197,French,1137528874 +32466,8529,Speilberg,1137527230 +32466,8607,Japan,1137526502 +32466,8636,super-hero,1137528887 +32466,8961,Pixar,1137525521 +32466,8986,Jerry Lewis,1137527569 +32466,8988,Jerry Lewis,1137526535 +32466,8994,Jerry Lewis,1137799649 +32466,26064,Kurosawa,1154729405 +32466,26662,Miyazaki,1137525527 +32466,26776,Miyazaki,1137525541 +32466,27721,Jeunet,1137526598 +32466,27731,Japan,1137526519 +32466,30793,Tim Burton,1137527597 +32466,30810,Wes Anderson,1137526576 +32466,31079,Japan,1137529274 +32466,32587,super-hero,1137527828 +32466,33493,Lucas,1137526592 +32466,33794,super-hero,1138654376 +32466,36401,Gilliam,1141063429 +32469,4520,80s music,1346077028 +32469,4520,classic 80s cliches,1346077028 +32469,88129,80s music,1319666119 +32477,2021,based on a book,1236157129 +32477,2021,fantasy,1236157569 +32477,2021,test,1236157123 +32477,79132,cobb's wife,1289446852 +32477,79132,dream,1289446829 +32477,79132,Leonardo DiCaprio,1291970756 +32477,79132,music,1289446829 +32477,79132,surreal,1291970747 +32477,79132,thought-provoking,1291970742 +32477,79132,wonderful thoughts,1289446829 +32489,1676,campy,1448588898 +32489,1676,giant space bugs,1448588903 +32489,1676,Robert Heinlein,1448588907 +32489,106642,David Tennant,1448588834 +32489,106642,Doctor Who,1448588837 +32489,106642,Science fiction,1448588831 +32489,106642,time travel,1448588827 +32499,296,must see!,1425376450 +32499,296,uma thurman,1425376450 +32499,296,wes anderson,1425376450 +32507,2500,black comedy,1313914384 +32507,2500,fashion,1313914363 +32507,2500,good soundtrack,1313914456 +32507,2500,hot teenagers,1313914393 +32507,2500,murder,1313914402 +32507,2500,popular kids,1313914446 +32507,2500,writing,1313914417 +32531,260,A must to all geeks in the world,1441475879 +32531,260,"If you haven't seen this movie, you probably haven't seen any movies",1441475894 +32539,4133,Can't remember,1168089226 +32546,58,Massimo Troisi,1338802885 +32546,58,Pablo Neruda,1338802840 +32546,296,Bruce Willis,1292863067 +32546,296,drugs,1292863078 +32546,296,multiple storylines,1292863075 +32546,296,Quentin Tarantino,1292863069 +32546,296,Samuel L. Jackson,1292863073 +32546,2231,card games,1301520486 +32546,2231,Edward Norton,1301520239 +32546,2231,John Dahl,1301520265 +32546,2231,John Malkovich,1301520242 +32546,2231,John Turturro,1301520284 +32546,2231,Matt Damon,1301520246 +32546,2231,narrated,1301520260 +32546,2231,New York,1301520547 +32546,2231,poker,1301520250 +32546,2501,father son relationship,1364404562 +32546,2501,hope,1364404581 +32546,2501,inspirational,1364404576 +32546,2501,patriotic,1364404360 +32546,3949,addiction,1429565639 +32546,3949,depressing,1429565666 +32546,3949,drugs,1429565629 +32546,3949,psychology,1429565670 +32546,4223,Ed Harris,1301785415 +32546,4223,heroic,1301785455 +32546,4223,Joseph Fiennes,1301785475 +32546,4223,Jude Law,1301785407 +32546,4223,Rachel Weisz,1301785426 +32546,4223,Russia,1301785461 +32546,4223,sniper,1301785470 +32546,4223,World War II,1301785452 +32546,4251,Australia,1313408309 +32546,4251,Eric Bana,1313408315 +32546,5421,Catholicism,1359323853 +32546,5421,Christianity,1359323854 +32546,5421,Emile Hirsch,1359323847 +32546,5421,Kieran Culkin,1359323845 +32546,5421,religion,1359324209 +32546,5421,typical coming of age story,1359323856 +32546,5421,William Blake,1359324222 +32546,6385,appallingly dull,1369076754 +32546,6385,boring,1369076686 +32546,6385,family traditions,1369076713 +32546,6385,feminism,1369076706 +32546,6385,heritage,1369076761 +32546,6385,maori,1369076700 +32546,6385,New Zealand,1369076698 +32546,6385,Overrated,1369076730 +32546,6770,canada,1300053227 +32546,6770,Isabel Coixet,1300053210 +32546,6770,terminal illness,1300053215 +32546,6770,thought-provoking,1300053220 +32546,6942,Airport,1260816936 +32546,6942,Alan Rickman,1260816747 +32546,6942,Billy Bob Thornton,1260816749 +32546,6942,british,1260816732 +32546,6942,christmas,1260816804 +32546,6942,Emma Thompson,1260816757 +32546,6942,England,1260816761 +32546,6942,Hugh Grant,1260816743 +32546,6942,Keira Knightley,1260816745 +32546,6942,Liam Neeson,1260816767 +32546,6942,London,1260816855 +32546,6942,love,1260816861 +32546,6942,multiple storylines,1260816739 +32546,6942,Nudity (Topless - Notable),1260816780 +32546,6942,Nudity (Topless),1260816781 +32546,6942,Prime Minister,1260817045 +32546,7256,Andes Mountains,1341997958 +32546,7256,Based on Book,1341998145 +32546,7256,Friendship,1341998379 +32546,7256,Kevin Macdonald,1341998076 +32546,7256,mountain climbing,1341997901 +32546,7256,mountains,1341997921 +32546,7256,near death,1341997917 +32546,7256,Peru,1341997966 +32546,7256,pivotal decision,1341998350 +32546,7256,Reenactment,1341998020 +32546,7256,true story,1341997903 +32546,7843,Marijuana,1241133246 +32546,7843,Moritz Bleibtreu,1241133250 +32546,8981,Clive Owen,1371501251 +32546,8981,Jude Law,1371501250 +32546,8981,Julia Roberts,1371502230 +32546,8981,London,1371501306 +32546,8981,Natalie Portman,1371501249 +32546,8981,Nudity (Rear),1371501316 +32546,27727,atmospheric,1302990187 +32546,27727,complex characters,1302990162 +32546,27727,Germany,1302990172 +32546,27727,intense,1302990167 +32546,27727,love story,1302990202 +32546,27727,suicide attempt,1302990156 +32546,27816,Alexander Polinsky,1294680080 +32546,27816,Corbin Allred,1294680083 +32546,27816,Kirby Heyborne,1294680085 +32546,27816,Larry Bagby,1294680089 +32546,27816,Mormon,1294680067 +32546,27816,religious,1294680039 +32546,27816,religious overtones,1294680216 +32546,27816,Ryan Little,1294680101 +32546,27816,true story,1294680063 +32546,27816,World War II,1294680045 +32546,31420,corruption,1248796903 +32546,31420,Ethan Hawke,1248796916 +32546,31420,Gabriel Byrne,1248796927 +32546,31420,Ja Rule,1248796926 +32546,31420,Laurence Fishburne,1248796916 +32546,31420,Maria Bello,1248796966 +32546,32460,Moritz Bleibtreu,1241133349 +32546,32460,road trip,1241133352 +32546,33660,1930s,1313408225 +32546,33660,Biography,1313408204 +32546,33660,boxing,1313408223 +32546,33660,boxing drama,1313408254 +32546,33660,great depression,1313408230 +32546,33660,husband-wife relationship,1313408273 +32546,33660,Paul Giamatti,1313408242 +32546,33660,Ron Howard,1313408244 +32546,33660,Russell Crowe,1313408234 +32546,34405,action,1244318307 +32546,34405,based on a TV show,1244318271 +32546,34405,Firefly,1244318314 +32546,34405,sci-fi,1244318304 +32546,34405,space,1244318293 +32546,34405,western,1244318295 +32546,39234,Charlize Theron,1303677085 +32546,39234,courtroom,1303677183 +32546,39234,feminism,1303677171 +32546,39234,Michelle Monaghan,1303677100 +32546,39234,mining,1303677140 +32546,39234,sexism,1303677173 +32546,39234,Sissy Spacek,1303677147 +32546,39234,true story,1303677102 +32546,39234,Woody Harrelson,1303677087 +32546,40583,CIA,1241133801 +32546,40583,George Clooney,1241133771 +32546,40583,Matt Damon,1241133773 +32546,40583,middle east,1241133811 +32546,40583,oil,1241133781 +32546,40583,Oscar (Best Supporting Actor),1241133786 +32546,40583,Political,1241133853 +32546,40583,world politics,1241133844 +32546,43376,anti-war,1241133608 +32546,43376,based on a true story,1241133578 +32546,43376,interrogation,1241133618 +32546,43376,Julia Jentsch,1241133650 +32546,43376,resistance movement,1241133584 +32546,43376,White Rose,1241133693 +32546,43376,World War II,1241133573 +32546,48783,Clint Eastwood,1298910368 +32546,48783,iwo jima,1298910370 +32546,48783,World War II,1298910362 +32546,48783,WWII,1298910363 +32546,50064,Beau Bridges,1251497872 +32546,50064,Berlin,1251497957 +32546,50064,Cate Blanchett,1251497826 +32546,50064,George Clooney,1251497814 +32546,50064,Potsdam Conference,1251498105 +32546,50064,Steven Soderbergh,1251497829 +32546,50064,Tobey Maguire,1251498706 +32546,50064,War Criminal,1251499159 +32546,50064,World War II,1251497817 +32546,51931,9/11,1322525958 +32546,51931,adam sandler,1322525956 +32546,51931,Don Cheadle,1322525954 +32546,51931,inspirational,1322526040 +32546,51931,Manhattan,1322525951 +32546,51931,post-traumatic stress disorder,1322525948 +32546,51931,unique,1322525964 +32546,52042,espionage,1381068740 +32546,52042,Nudity (Topless - Notable),1381068828 +32546,52042,Paul Verhoeven,1381068749 +32546,52042,resistance movement,1381068743 +32546,52042,World War II,1381068747 +32546,52952,1980s,1271086804 +32546,52952,England,1271086767 +32546,52952,Gang,1271086923 +32546,52952,nationalism,1271086810 +32546,52952,racism,1271086815 +32546,52952,skinhead,1271086813 +32546,52952,skinheads,1271086823 +32546,53123,good music,1273605218 +32546,53123,Ireland,1273605236 +32546,53123,Oscar (Best Music - Original Song),1273606637 +32546,55069,1980s,1381092137 +32546,55069,abortion,1381092139 +32546,55069,friendship,1381092163 +32546,55069,Golden Palm,1381092140 +32546,55069,Palme d'Or,1381092145 +32546,55247,adapted from:book,1253574389 +32546,55247,Alaska,1253574257 +32546,55247,based on a true story,1253574290 +32546,55247,Emile Hirsch,1253574334 +32546,55247,great soundtrack,1253574303 +32546,55247,Music,1253574274 +32546,55247,road trip,1253574379 +32546,55247,Sean Penn,1253574270 +32546,55247,wilderness,1253574300 +32546,55280,delusion,1303667618 +32546,55280,Emily Mortimer,1303667593 +32546,55280,little town,1303667634 +32546,55280,mental illness,1303667609 +32546,55280,Ryan Gosling,1303667588 +32546,55280,small town,1303667624 +32546,55280,touching,1303667649 +32546,55280,well acted,1303667626 +32546,55603,Antonio Banderas,1261654885 +32546,55603,Colin Hanks,1261654888 +32546,55603,FBI,1261655028 +32546,55603,Meg Ryan,1261654884 +32546,55603,Robbery,1261655007 +32546,55603,Selma Blair,1261654892 +32546,55603,surveillance,1261655051 +32546,55805,Marisa Tomei,1382964911 +32546,55805,non-linear,1382964933 +32546,55805,Philip Seymour Hoffman,1382964904 +32546,55805,Sidney Lumet,1382964909 +32546,55820,Tommy Lee Jones,1318771668 +32546,56782,Daniel Day-Lewis,1315844581 +32546,56782,father-son relationship,1315844584 +32546,56782,mining,1315844614 +32546,56782,oil,1315844618 +32546,56782,Oscar (Best Actor),1315844590 +32546,56782,Oscar (Best Cinematography),1315844595 +32546,56782,religion,1315844621 +32546,58047,cute,1423172412 +32546,58047,father daughter relationship,1423172319 +32546,58047,Isla Fisher,1423172119 +32546,58047,love,1423172429 +32546,58047,marriage,1423172421 +32546,58047,New York,1423172045 +32546,58047,Ryan Reynolds,1423172037 +32546,58490,1930's,1265234217 +32546,58490,1930s,1265234221 +32546,58490,Amy Adams,1265234238 +32546,58490,Bharat Nalluri,1265234242 +32546,58490,Ciarán Hinds,1265234244 +32546,58490,Female Bonding,1265234418 +32546,58490,Frances McDormand,1265234228 +32546,58490,Jazz Music,1265234475 +32546,58490,Mark Strong,1265234252 +32546,58706,Adrian Alonso,1361884358 +32546,58706,Illegal Immigration,1361884473 +32546,58706,Mexican Immigrant,1361884583 +32546,58706,Mexico,1361884460 +32546,58706,mother-son relationship,1361884302 +32546,58706,Patricia Riggen,1361884310 +32546,59315,adapted from:comic,1315170905 +32546,59315,afghanistan,1315170893 +32546,59315,android(s)/cyborg(s),1315170946 +32546,59315,arms dealer,1315170931 +32546,59315,funny,1315170950 +32546,59315,Jeff Bridges,1315170895 +32546,59315,Marvel,1315170898 +32546,59315,Robert Downey Jr,1315170888 +32546,59315,superhero,1315170902 +32546,59387,1920s,1362439202 +32546,59387,fantasy world,1362439194 +32546,59387,imagination,1362439212 +32546,59387,storytelling,1362439198 +32546,59387,surreal,1362439207 +32546,61323,Brad Pitt,1268047301 +32546,61323,cia,1268047315 +32546,61323,Coen Brothers,1268047290 +32546,61323,dark comedy,1268047379 +32546,61323,espionage,1268047318 +32546,61323,George Clooney,1268047293 +32546,61323,John Malkovich,1268047287 +32546,61323,satire,1268047277 +32546,61323,Tilda Swinton,1268047339 +32546,61941,Fairuza Balk,1241132323 +32546,61941,Frances Conroy,1241131579 +32546,61941,Humboldt County California,1241131925 +32546,61941,Jeremy Strong,1241131682 +32546,61941,Marijuana,1241131855 +32546,61941,Wilderness,1241131905 +32546,63082,based on a book,1241217538 +32546,63082,dark side of India,1241217817 +32546,63082,India,1241217569 +32546,63082,Mumbai,1241217582 +32546,63082,music,1241217602 +32546,63082,Oscar (Best Directing),1241217562 +32546,63082,Oscar (Best Editing),1241217565 +32546,63082,Oscar (Best Music - Original Score),1241217546 +32546,63082,Oscar (Best Music - Original Song),1241217559 +32546,63082,Oscar (Best Picture),1241217557 +32546,63082,Oscar (Best Sound),1241217551 +32546,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1241217555 +32546,63113,action,1268047228 +32546,63113,Daniel Craig,1268047183 +32546,63113,James Bond,1268047111 +32546,63113,Judi Dench,1268047199 +32546,63113,plot,1268047187 +32546,63113,revenge,1268047203 +32546,63113,SequelTo:Casino Royale[2006],1268047212 +32546,63113,spy,1268047237 +32546,63113,vengeance,1268047189 +32546,64614,friendship,1429737404 +32546,64614,gangs,1429737381 +32546,64614,hmong,1429737372 +32546,64614,mentor,1429737360 +32546,64614,racist humor,1429737387 +32546,64969,Jim carrey,1268926793 +32546,64969,Motivation,1268927142 +32546,64969,optimism,1268927230 +32546,64969,self-esteem,1268927185 +32546,64969,Zooey Deschanel,1268926814 +32546,65142,Bruno Vanden Broucke,1309188052 +32546,65142,Erik Van Looy,1309188057 +32546,65142,Filip Peeters,1309188073 +32546,65142,Koen De Bouw,1309188070 +32546,65142,Koen De Graeve,1309188055 +32546,65142,Matthias Schoenaerts,1309188062 +32546,65142,Veerle Baetens,1309188065 +32546,66511,rave,1370810751 +32546,66511,techno,1370810614 +32546,69757,artistic,1383085499 +32546,69757,Joseph Gordon-Levitt,1383085485 +32546,69757,Los Angeles,1383085505 +32546,69757,quirky,1383085497 +32546,69757,Zooey Deschanel,1383085487 +32546,71466,Andy Garcia,1378069100 +32546,71466,dysfunctional family,1378069118 +32546,71579,1960s,1421703537 +32546,71579,Carey Mulligan,1421703528 +32546,71579,coming of age,1421703533 +32546,71579,England,1421703541 +32546,71579,London,1421703546 +32546,72142,long,1318112225 +32546,74431,Erkan Can,1318592015 +32546,74488,Colin Farrell,1322525894 +32546,74488,mythology,1322525896 +32546,74789,3D,1268823999 +32546,74789,alternate reality,1268823781 +32546,74789,Anne Hathaway,1268823723 +32546,74789,based on a book,1268823719 +32546,74789,great visuals,1268823771 +32546,74789,Helena Bonham Carter,1268823799 +32546,74789,Johnny Depp,1268823658 +32546,74789,Mia Wasikowska,1268823708 +32546,74789,Stephen Fry,1268823851 +32546,74789,talking animals,1268823788 +32546,74789,Tim Burton,1268823669 +32546,77455,art,1373832761 +32546,77455,graffiti,1373832769 +32546,77455,street art,1373832808 +32546,77455,Thierry Guetta,1373832816 +32546,78039,character development,1389480201 +32546,78039,great performances,1389480150 +32546,78039,Michelle Williams,1389480189 +32546,78039,romance,1389480155 +32546,78039,Ryan Gosling,1389480158 +32546,78039,thought provoking,1389480152 +32546,78574,adapted from:book,1319148464 +32546,78574,cinematography,1319147773 +32546,78574,Jennifer Lawrence,1319148407 +32546,78574,John Hawkes,1319148438 +32546,78574,realism,1319148443 +32546,80463,business,1380641980 +32546,80463,college,1380641985 +32546,80463,computers,1380641974 +32546,81819,Alejandro González Iñárritu,1319931838 +32546,81819,Barcelona,1319930672 +32546,81819,cancer,1319931833 +32546,81819,Javier Bardem,1319930030 +32546,81819,long,1319930022 +32546,81932,Amy Adams,1354491054 +32546,81932,boxing,1354491065 +32546,81932,Christian Bale,1354491051 +32546,81932,drug addiction,1354491134 +32546,81932,Mark Wahlberg,1354491052 +32546,83270,based on a true story,1301863383 +32546,83270,topic:human rights,1301863405 +32546,83270,topic:sexism,1301863407 +32546,86190,beautiful cinematography,1344727007 +32546,86190,Eric Bana,1344727228 +32546,86190,Finland,1344727011 +32546,86190,Germany,1344727032 +32546,86190,great soundtrack,1344727004 +32546,86190,Morocco,1344727013 +32546,86190,Saoirse Ronan,1344727219 +32546,87234,Coming Of Age,1371249476 +32546,87234,First love,1371249465 +32546,87234,great soundtrack,1371249468 +32546,87234,Wales,1371249472 +32546,87869,black comedy,1351974825 +32546,87869,Charlie Day,1351974832 +32546,87869,Colin Farrell,1351974830 +32546,87869,Excessively talky,1351974822 +32546,87869,jason bateman,1351974829 +32546,88129,atmospheric,1362521687 +32546,88129,cinematography,1362521682 +32546,88129,Los Angeles,1362521691 +32546,88129,tense,1362521686 +32546,88129,violence,1362521677 +32546,88744,cheesy,1376174917 +32546,88744,genetics,1376310237 +32546,88744,not realistic superapes,1376174909 +32546,88744,San Francisco,1376310217 +32546,88744,The police had awful tactics,1376174913 +32546,88744,virus,1376310282 +32546,88744,weak third act,1376174914 +32546,88810,1960s,1362094162 +32546,88810,based on a book,1362094311 +32546,88810,Emma Stone,1362094139 +32546,88810,historical,1362094278 +32546,88810,Mississippi,1362094156 +32546,88810,racism,1362094151 +32546,88810,segregation,1362094177 +32546,88810,social commentary,1362094315 +32546,88810,southern US,1362094299 +32546,88810,writer,1362094262 +32546,89030,Anton Yelchin,1341919876 +32546,89030,Colin Farrell,1341919871 +32546,89030,Doesn't take itself seriously,1341920131 +32546,89030,Las Vegas,1341919977 +32546,89030,Remake,1341920008 +32546,89030,vampire,1341919893 +32546,89030,vampires,1341919895 +32546,89753,Cold War,1369086284 +32546,89753,Colin Firth,1369086356 +32546,89753,confusing,1369086321 +32546,89753,confusing plot,1369086382 +32546,89753,convoluted,1369086379 +32546,89753,England,1369086392 +32546,89753,espionage,1369086367 +32546,89753,Gary Oldman,1369086352 +32546,89753,London,1369086397 +32546,89753,slow paced,1369086267 +32546,89753,Spies,1369086280 +32546,90866,1930s,1360541649 +32546,90866,cinematography,1360541633 +32546,90866,fantasy,1360541635 +32546,90866,France,1360541651 +32546,90866,Paris,1360541652 +32546,90866,visually appealing,1360541642 +32546,95218,ballet,1398769964 +32546,95218,dance,1398769972 +32546,95218,documentary,1398769968 +32546,95939,Scotland,1383910512 +32546,95939,whiskey,1383910504 +32546,96079,action,1369692610 +32546,96079,James Bond,1369692600 +32546,96079,London,1369692601 +32546,96606,beautiful cinematography,1411137392 +32546,96606,meditative,1411137388 +32546,96606,music,1411137566 +32546,96606,Ron Fricke,1411137581 +32546,96606,time-lapse,1411137390 +32546,96606,wordless,1411137571 +32546,96667,Ai Weiwei,1371334500 +32546,96667,China,1371334508 +32546,98809,author:J. R. R. Tolkein,1407739698 +32546,98809,fantasy,1407739911 +32546,98809,Ian McKellan,1407739943 +32546,98809,Martin Freeman,1407740144 +32546,98809,Peter Jackson,1407739705 +32546,98809,too much action,1407739860 +32546,98809,unnecessary fight scenes,1407739899 +32551,1094,Transgendered,1140951014 +32551,5445,dvd,1140950990 +32551,5445,future,1140950985 +32558,55995,Angelina Jolie,1215924485 +32562,260,It,1430315571 +32562,260,Never,1430315561 +32562,260,Seen,1430315567 +32565,22,thriller,1368726218 +32565,29,dark,1368725757 +32565,31,inspirational,1368725937 +32565,111,mental illness,1368725974 +32565,157,politics,1368726173 +32565,161,tense,1368726201 +32565,440,politics,1368726173 +32565,474,tense,1368726201 +32565,519,franchise,1368725876 +32565,555,ensemble cast,1368725809 +32565,555,violent,1368726243 +32565,832,tense,1368726201 +32565,832,thriller,1368726218 +32565,861,police,1368726146 +32565,913,black and white,1368725625 +32565,922,black and white,1368725624 +32565,1089,violent,1368726243 +32565,1095,ensemble cast,1368725809 +32565,1206,violent,1368726243 +32565,1214,tense,1368726201 +32565,1228,oscar (best cinematography),1368726106 +32565,1266,oscar (best cinematography),1368726106 +32565,1357,father-son relationship,1368725847 +32565,1464,mystery,1368726006 +32565,1589,ensemble cast,1368725809 +32565,1597,thriller,1368726219 +32565,1610,thriller,1368726219 +32565,1834,mystery,1368726006 +32565,1950,police,1368726147 +32565,1953,oscar (best cinematography),1368726106 +32565,1954,oscar (best cinematography),1368726106 +32565,2024,christianity,1368725703 +32565,2026,high school,1368725911 +32565,2058,tense,1368726201 +32565,2076,dark,1368725757 +32565,2353,thriller,1368726219 +32565,2383,police,1368726146 +32565,2442,mental illness,1368725974 +32565,2490,violent,1368726243 +32565,2500,high school,1368725911 +32565,2734,mental illness,1368725974 +32565,2882,nazis,1368726048 +32565,2888,high school,1368725911 +32565,2919,politics,1368726173 +32565,2959,violent,1368726243 +32565,3044,mystery,1368726006 +32565,3146,stupid,1368726186 +32565,3178,inspirational,1368725937 +32565,3256,tense,1368726201 +32565,3256,thriller,1368726219 +32565,3273,franchise,1368725876 +32565,3362,police,1368726147 +32565,3435,black and white,1368725624 +32565,3440,franchise,1368725876 +32565,3519,nazis,1368726048 +32565,3811,politics,1368726173 +32565,3872,beautifully adapted,1307770994 +32565,3980,inspirational,1368725937 +32565,4019,inspirational,1368725937 +32565,4034,oscar (best cinematography),1368726106 +32565,4306,pixar,1368726133 +32565,4388,stupid,1368726186 +32565,4848,Atmospheric,1294626477 +32565,4848,cinematography,1294626512 +32565,4848,drama,1294626493 +32565,4848,lesbian,1294626490 +32565,4848,nonlinear,1294626469 +32565,4848,sexual,1294626499 +32565,4848,stylized,1294626520 +32565,4974,stupid,1368726186 +32565,5107,nazis,1368726048 +32565,5218,pixar,1368726133 +32565,5363,high school,1368725911 +32565,5785,stupid,1368726186 +32565,6323,mystery,1368726006 +32565,6334,nudity (topless - notable),1368726078 +32565,6537,franchise,1368725876 +32565,6808,nazis,1368726048 +32565,7153,oscar (best cinematography),1368726106 +32565,7371,absolute crap,1297052014 +32565,7371,experimental,1297051986 +32565,7371,flat characters,1297051962 +32565,7371,implausible,1297051939 +32565,7371,unrealistic,1297051923 +32565,8360,pixar,1368726133 +32565,8781,politics,1368726173 +32565,33660,inspirational,1368725937 +32565,38038,pixar,1368726133 +32565,51540,police,1368726146 +32565,53121,franchise,1368725876 +32565,53143,awkward angles,1296063215 +32565,53921,nudity (topless - notable),1368726078 +32565,55290,police,1368726146 +32565,58554,bullying,1295909345 +32565,58554,great acting,1295909363 +32565,58554,raw,1295909294 +32565,58554,tragic,1295909345 +32565,59429,nudity (topless - notable),1368726078 +32565,59784,pixar,1368726133 +32565,63113,franchise,1368725876 +32565,64622,nazis,1368726048 +32565,74458,mystery,1368726006 +32565,83049,childhood,1303960958 +32565,83049,funny,1303960895 +32565,83049,heaven/hell/limbo,1306981288 +32565,83049,Kirstie Alley,1303960913 +32565,83049,nostalgia,1303960895 +32565,83051,Friendship,1306981210 +32565,83051,Growth,1306981230 +32565,83051,Lesbian,1306981181 +32565,83051,Ruby Dee,1306981175 +32565,83051,Womanhood,1306981191 +32565,83115,adventure,1303961201 +32565,83115,childhood,1303961184 +32565,83115,English dubs,1303961153 +32565,83115,evil queen,1303961202 +32565,83115,journey,1303961184 +32565,83115,Norwegian,1303961137 +32565,83115,princess,1303961184 +32589,7173,jennifer aniston,1164840157 +32599,50,short-term memory loss,1368640551 +32599,107,treasure,1368639952 +32599,353,dark hero,1368640210 +32599,592,dark hero,1368640210 +32599,648,mountain climbing,1368640528 +32599,832,conspiracy theory,1368640470 +32599,866,neo-noir,1368640356 +32599,913,noir thriller,1368640001 +32599,1097,stranded,1368640147 +32599,1245,neo-noir,1368640356 +32599,1253,mars,1368640185 +32599,1291,spielberg,1368640592 +32599,1291,treasure,1368639952 +32599,1387,spielberg,1368640592 +32599,1391,mars,1368640186 +32599,1580,conspiracy theory,1368640470 +32599,2022,christian,1368640299 +32599,2022,jesus,1368639920 +32599,2028,spielberg,1368640592 +32599,2115,spielberg,1368640592 +32599,2115,treasure,1368639952 +32599,2353,conspiracy theory,1368640470 +32599,2662,mars,1368640185 +32599,3300,stranded,1368640147 +32599,3623,mountain climbing,1368640529 +32599,3986,mars,1368640186 +32599,4878,short-term memory loss,1368640551 +32599,5445,spielberg,1368640592 +32599,6104,jesus,1368639919 +32599,6539,treasure,1368639952 +32599,7318,jesus,1368639919 +32599,7361,short-term memory loss,1368640551 +32599,7386,christian,1368640299 +32599,8529,stranded,1368640147 +32599,33162,christian,1368640299 +32599,59784,dragon,1368640497 +32599,60753,Violence,1223509421 +32599,63082,bollywood,1368639890 +32643,45720,Meryl Streep,1332947753 +32643,45720,Stanley Tucci,1332947753 +32652,260,have not seen it,1439028156 +32680,1422,fun murder mystery,1138389927 +32680,2947,awesome bond flick; much better than Dr. No,1137456592 +32682,377,Action,1420203883 +32682,377,exciting,1422220034 +32682,377,tense,1422220037 +32682,377,Thriller,1422220030 +32682,1391,aliens,1433678244 +32682,1391,funny,1433678227 +32682,1391,mars,1433678235 +32682,1391,stupid,1433678249 +32682,1584,astronomy,1441386721 +32682,1584,idealism,1441386719 +32682,1584,S.E.T.I.,1441386725 +32682,1584,sci-fi,1441386731 +32682,1584,space travel,1441386714 +32682,2012,Funny,1420203564 +32682,2012,time travel,1420203551 +32682,4370,androids,1441394603 +32682,4370,artificial intelligence,1441394592 +32682,4370,Bittersweet,1441394600 +32682,4370,depressing,1441394605 +32682,4370,dystopia,1441394594 +32682,4370,fairy tale,1441394607 +32682,4370,robots,1441394598 +32682,4370,sci-fi,1441394596 +32682,43560,magic,1452948434 +32682,72356,short film,1422203112 +32682,85414,intelligent,1452949330 +32682,85414,parallel universe,1452949321 +32682,85414,time loop,1452949325 +32682,85414,trains,1452949343 +32682,96367,Car Chase,1420203757 +32682,103596,Bad special effects,1420203819 +32682,103596,trash,1420203829 +32682,111659,fairy tale,1452454712 +32682,111659,good vs evil,1452454731 +32682,111659,visual effects,1452454721 +32682,112290,bad jokes,1420203526 +32682,112290,boring,1420203526 +32682,112290,horrible acting,1420203526 +32682,114180,amnesia,1422219400 +32682,114180,good acting,1422220077 +32682,114180,plot holes,1422219390 +32682,114180,survival,1422219396 +32737,541,cyberpunk,1386615518 +32737,541,dreamlike,1386615530 +32737,541,futuristic,1386615537 +32737,541,robots,1386615525 +32737,541,sci-fi,1386615520 +32737,1682,alternate reality,1386420817 +32737,1682,dreamlike,1386420819 +32737,1682,fantasy,1386420833 +32737,1682,philosophy,1386420822 +32737,2232,mathematics,1388607512 +32737,2232,mindfuck,1388607505 +32737,2232,psychological,1388607499 +32737,2232,psychology,1388607502 +32737,2232,scifi,1388607518 +32737,2762,Atmospheric,1386615432 +32737,2762,Bruce Willis,1386615417 +32737,2762,death,1386615420 +32737,2762,great ending,1386615410 +32737,2762,mindfuck,1386615392 +32737,2762,psychological,1386615405 +32737,2762,psychology,1386615402 +32737,2959,Brad Pitt,1386544726 +32737,2959,complicated,1386544741 +32737,2959,mental illness,1386544738 +32737,2959,philosophy,1386544729 +32737,2959,psychology,1386544732 +32737,2959,twist ending,1389704626 +32737,2959,violence,1386544734 +32737,4993,adapted from:book,1386420590 +32737,4993,based on a book,1386420572 +32737,4993,high fantasy,1386420578 +32737,4993,magic,1386420621 +32737,6902,drugs,1386420740 +32737,6902,funny,1386420716 +32737,6902,life philosophy,1386420730 +32737,6902,road trip,1386420733 +32737,6902,self discovery,1386420736 +32737,47610,magic,1386971556 +32737,47610,romance,1386971550 +32737,47610,twist ending,1386971562 +32737,66097,based on a book,1386971746 +32737,66097,dark fantasy,1386971748 +32737,66097,Surreal,1386971751 +32737,74458,Leonardo DiCaprio,1386420884 +32737,74458,mindfuck,1386420873 +32737,74458,psychological,1386420879 +32737,74458,thought-provoking,1386420881 +32737,81591,Natalie Portman,1388607585 +32737,81591,psychological,1388607573 +32737,81591,surreal,1388607576 +32737,85414,military,1387140405 +32737,85414,mindfuck,1387140394 +32737,85414,parallel universe,1387140388 +32737,85414,romance,1387140399 +32737,85414,time travel,1387140391 +32737,87232,fantasy,1386967000 +32737,87232,superhero,1386967002 +32738,41716,VHS,1137362803 +32740,3992,Italian,1267368093 +32740,51884,immigrants,1232410825 +32740,59549,gay,1231178044 +32740,59549,Gay Character,1231178034 +32740,59549,Gay Lead Character,1231178027 +32740,59549,gay relationship,1231178040 +32740,68954,talking dog,1244307393 +32740,87192,action,1320108644 +32740,87192,aliens,1320108648 +32740,87192,ending,1320108666 +32740,87192,fun,1320108638 +32753,593,action thriller,1423587404 +32753,593,kidnapping,1423587404 +32753,593,suspense,1423587404 +32760,920,classic,1188441132 +32764,143689,70s,1444184471 +32764,143689,blood,1444184526 +32764,143689,cheap,1444184538 +32764,143689,cult,1444184541 +32764,143689,cult classic,1444184545 +32764,143689,exploitation,1444184490 +32764,143689,gore,1444184528 +32764,143689,low budget,1444184536 +32764,143689,murder,1444184513 +32764,143689,murderer,1444184517 +32764,143689,obesity,1444184503 +32764,143689,slasher,1444184467 +32795,32,time travel,1148927414 +32795,924,classic,1148927878 +32795,924,sci-fi,1148927922 +32795,1210,fantasy,1148927402 +32799,47,Brad Pitt,1296068526 +32799,47,disturbing,1296068529 +32799,47,Morgan Freeman,1296068524 +32799,47,police,1296068560 +32799,47,powerful ending,1296068537 +32799,47,psychology,1296068533 +32799,47,religion,1296068562 +32799,47,twist ending,1296068541 +32799,50,complicated,1296068392 +32799,50,Kevin Spacey,1296068190 +32799,50,suspense,1296068187 +32799,50,twist ending,1296068182 +32799,288,dark comedy,1296068771 +32799,288,paranoid,1296068768 +32799,288,psychedelic,1296068767 +32799,288,satire,1296068775 +32799,288,serial killer,1296068764 +32799,288,stylized,1296068763 +32799,296,multiple storylines,1296067866 +32799,296,nonlinear,1296067856 +32799,296,violence,1296067869 +32799,318,Morgan Freeman,1296068028 +32799,318,prison escape,1296068023 +32799,318,twist ending,1296068021 +32799,356,inspirational,1296067897 +32799,356,psychology,1296067890 +32799,356,Tom Hanks,1296067895 +32799,380,Arnold Schwarzenegger,1296068124 +32799,380,comedy,1296068130 +32799,380,funny,1296068121 +32799,380,James Cameron,1296068133 +32799,480,dinosaurs,1296067958 +32799,480,Oscar (Best Effects - Visual Effects),1296067969 +32799,527,depressing,1296068093 +32799,527,disturbing,1296068099 +32799,527,Holocaust,1296068088 +32799,527,Nazis,1296068090 +32799,527,World War II,1296068086 +32799,551,gothic,1297361309 +32799,593,Anthony Hopkins,1296067914 +32799,593,disturbing,1296067921 +32799,593,Horror,1296067918 +32799,593,mental illness,1296067923 +32799,593,Oscar (Best Actor),1296067941 +32799,593,Oscar (Best Actress),1296067942 +32799,593,Oscar (Best Picture),1296067934 +32799,593,psychology,1296067925 +32799,858,Al Pacino,1296068574 +32799,858,Nudity (Topless),1296068581 +32799,858,organized crime,1296068576 +32799,858,robert de niro,1296068579 +32799,924,artificial intelligence,1296068783 +32799,1625,psychological,1296069176 +32799,1625,twist ending,1296069173 +32799,1682,alternate reality,1296068883 +32799,1682,dark comedy,1296068887 +32799,1682,dreamlike,1296068880 +32799,1682,dystopia,1296068876 +32799,1682,Jim Carrey,1296068900 +32799,1682,paranoia,1296068892 +32799,1682,voyeurism,1296068905 +32799,2324,bittersweet,1296069110 +32799,2324,father-son relationship,1296069113 +32799,2324,Holocaust,1296069107 +32799,2324,World War II,1296069117 +32799,2396,romance,1296068725 +32799,2396,Shakespeare,1296068732 +32799,2541,manipulation,1295891589 +32799,2541,Nudity (Topless - Brief),1295891591 +32799,2571,atmospheric,1296068151 +32799,2571,dystopia,1296068147 +32799,2571,Keanu Reeves,1296068153 +32799,2571,martial arts,1296068159 +32799,2571,post-apocalyptic,1296068161 +32799,2571,surreal,1296068163 +32799,2571,virtual reality,1296068166 +32799,2858,black comedy,1296068515 +32799,2858,dark comedy,1296068512 +32799,2858,Nudity (Topless - Notable),1296068508 +32799,2858,surrealism,1296068499 +32799,2959,atmospheric,1297370782 +32799,2959,disturbing,1297370801 +32799,2959,Edward Norton,1297370779 +32799,2959,mental illness,1297370795 +32799,2959,philosophy,1297370784 +32799,2959,psychology,1297370788 +32799,2959,surreal,1297370789 +32799,2959,twist ending,1297370791 +32799,3053,biographical,1296067656 +32799,3053,insanity,1296067653 +32799,3053,mental illness,1296067658 +32799,3250,South America,1296067670 +32799,3250,survival,1296067673 +32799,3793,based on a comic,1296068719 +32799,3793,Comic Book adaption,1296068716 +32799,3793,super-hero,1296068712 +32799,3793,superhero,1296068709 +32799,4226,imdb top 250,1296068668 +32799,4226,investigation,1296068672 +32799,4226,mystery,1296068673 +32799,4226,nonlinear,1296068659 +32799,4226,psychological,1296068655 +32799,4226,psychology,1296068661 +32799,4226,tense,1296068663 +32799,4226,twist ending,1296068662 +32799,5291,rape,1248641215 +32799,5291,sexual abuse,1248641224 +32799,7502,based on a book,1296067242 +32799,7502,military,1296067234 +32799,7502,World War II,1296067238 +32799,27773,disturbing,1295891638 +32799,30749,Africa,1297370547 +32799,30749,genocide,1297370534 +32799,30749,holocaust,1297370553 +32799,30749,racism,1297370558 +32799,30749,true story,1297370564 +32799,30749,United Nations,1297370561 +32799,30816,visually appealing,1296168639 +32799,31696,gothic,1295892838 +32799,31696,heaven and hell,1295892843 +32799,48877,ending twist,1296067685 +32799,48877,violence pornography,1296067689 +32799,57980,cynical,1296104728 +32799,57980,dark comedy,1296104730 +32799,59290,Nudity (Full Frontal),1296069308 +32799,63033,based on a book,1297360167 +32799,63033,blindness,1297360181 +32799,63033,epidemic,1297360183 +32799,64839,sports,1248641321 +32799,73321,beautiful scenery,1295891906 +32799,73321,Denzel Washington,1295891908 +32799,73321,dystopia,1295891894 +32799,78836,beautiful,1320113024 +32799,78836,colourful,1320113039 +32799,78836,drugs,1320113021 +32799,78836,ghosts/afterlife,1320113030 +32799,78836,Mind Games,1320113032 +32799,78836,Nudity (Full Frontal),1320113035 +32799,78836,too long,1320113158 +32799,79132,alternate reality,1296168913 +32799,79132,complicated,1296168916 +32799,79132,Leonardo DiCaprio,1296168918 +32799,79132,multiple realities,1296168922 +32799,79132,visually stunning,1296168926 +32799,79357,nonlinear,1300545053 +32799,81591,atmospheric,1296444439 +32799,81591,ballet,1296172436 +32799,81591,dark,1296444437 +32799,81591,horror,1296444435 +32799,81591,lesbians,1296444442 +32820,1653,beautiful,1452383746 +32820,1653,Ethan Hawke,1452383751 +32820,1653,intelligent,1452383754 +32820,1653,Jude Law,1452383755 +32820,1653,rebellion,1452383747 +32820,1653,science fiction,1452383749 +32820,1653,visually appealing,1452383760 +32820,3798,Harrison Ford,1451482840 +32820,3798,supernatural,1451482831 +32820,30848,John Travolta,1451482241 +32820,30848,Music,1451482265 +32820,30848,New Orleans,1451482256 +32820,30848,Scarlett Johansson,1451482232 +32820,109487,Anne Hathaway,1452383717 +32820,109487,bad dialogue,1452383706 +32820,109487,science fiction,1452383683 +32820,109487,space travel,1452383712 +32823,51662,rape,1292355619 +32830,318,friendship,1433096986 +32830,318,hope,1433096986 +32830,318,wrongful imprisonment,1433096986 +32830,109181,coming of age,1438738192 +32845,260,classic,1253540590 +32845,296,Bruce Willis,1253540075 +32845,296,multiple storylines,1253540061 +32845,296,Samuel L. Jackson,1253540059 +32845,370,Leslie Nielsen,1253540883 +32845,380,Arnold Schwarzenegger,1253540439 +32845,380,funny,1253540448 +32845,380,schwarzenegger,1253540443 +32845,589,Arnold Schwarzenegger,1253540305 +32845,743,Leslie Nielsen,1253540612 +32845,743,slapstick humor,1253540613 +32845,1080,Monty Python,1253540385 +32845,1080,satire,1253540393 +32845,1080,satirical,1253540404 +32845,1125,Inspector Clouseau (series),1253540857 +32845,1125,Peter Sellers,1253540860 +32845,1136,bizarre ending,1253540178 +32845,1136,british comedy,1253540157 +32845,1136,comedy,1253540174 +32845,1136,Monty Python,1253540163 +32845,1196,classic,1253540568 +32845,1210,adventure,1253540552 +32845,1210,classic,1253540547 +32845,2571,Action,1253540982 +32845,2571,cult film,1253540996 +32845,2571,fight scenes,1253540985 +32845,2571,Keanu Reeves,1253540988 +32845,2700,crude humor,1253540645 +32845,2700,satire,1253540651 +32845,2788,British Humor,1253540109 +32845,2788,Monty Python,1253540103 +32845,2788,MontyPython,1253540105 +32845,2843,quirky,1253540266 +32845,2843,upbeat,1253540267 +32845,2843,vivacious,1253540270 +32845,2843,witty,1253540272 +32845,2916,Arnold Schwarzenegger,1253540516 +32845,3836,Clint Eastwood,1253540418 +32845,3836,Seen more than once,1253540423 +32845,3997,Jeremy Irons,1253539992 +32845,4262,Al Pacino,1253540335 +32845,4262,classic,1253540344 +32845,4306,Eddie Murphy,1253540672 +32845,5004,peter sellers,1253540362 +32845,5047,campy,1253540224 +32845,5047,hilarious spoof,1253540212 +32845,5047,ridiculous,1253540218 +32845,6104,British,1253540138 +32845,6104,Monty Python,1253540135 +32845,6807,british comedy,1253540943 +32845,6807,controversial,1253540940 +32845,6807,Monty Python,1253540945 +32845,7073,Inspector Clouseau (series),1253540842 +32845,7073,Peter Sellers,1253540837 +32846,3684,Michelle Pfeiffer,1208737290 +32848,260,fantasy,1439880868 +32848,260,space,1439880858 +32877,5445,too much,1251251137 +32877,8371,space,1251250778 +32877,69640,monotonous,1251250672 +32886,4720,dvd,1138403361 +32886,4720,surprise ending,1138403364 +32898,223,bad acting,1430493519 +32898,223,pompous dialogue,1430493519 +32898,223,situation comedy,1430493519 +32898,125932,animation,1445561020 +32898,125932,fairy tale,1445561038 +32898,125932,fox,1445561044 +32898,125932,hare,1445561052 +32898,125932,medieval,1445561067 +32898,125932,russian,1445561023 +32906,318,twist ending,1443487167 +32906,48780,Christian Bale,1443411640 +32906,48780,great ending,1443487006 +32906,48780,twist ending,1443411651 +32920,260,epic adventure,1430530499 +32920,51662,FATHERS AND SONS,1431308095 +32920,51662,honor,1431308024 +32920,51662,responsibility,1431308051 +32920,51662,society,1431308064 +32920,51662,survival,1431308020 +32920,51662,Tyranny vs. digniity of individual. Personofies debauched nature of tyrants.,1431308109 +32920,97648,a look in the backyards,1431307542 +32920,97648,off beat music,1431307506 +32920,97648,time in history,1431307485 +32933,57910,Nudity (Topless),1216668573 +32933,58103,assassination,1216668474 +32933,58103,secret service,1216668470 +32933,60072,Angelina Jolie,1216668701 +32933,60074,plot twist,1216668746 +32933,60074,Will Smith,1216668742 +32946,55691,absurdism,1419997639 +32946,55691,funny,1419997639 +32946,55691,spanish,1419997639 +32995,6524,greek,1249357168 +32996,1209,cowboy,1433378739 +32996,1209,gunfight,1433378739 +32996,1209,western,1433378739 +33016,39,chick flick,1300146508 +33016,39,high school,1300146513 +33016,39,teen,1300146518 +33016,140,Stockard Channing,1300154934 +33016,199,French,1300504394 +33016,199,musical,1300504392 +33016,1380,musical,1300662197 +33016,2686,multiple storylines,1300148440 +33016,3594,ballet,1300154344 +33016,3882,cheerleading,1300147607 +33016,3882,Kirsten Dunst,1300147614 +33016,4054,ballet,1300154296 +33016,4054,dance,1300154295 +33016,4054,Julia Stiles,1300154298 +33016,4700,Anne Hathaway,1300146619 +33016,4700,Julie Andrews,1300146621 +33016,4700,royalty,1300146624 +33016,4700,teen,1300146630 +33016,6163,plot twist,1300149098 +33016,6332,Adam Lamberg,1300147973 +33016,6332,Hilary Duff,1300147896 +33016,6345,Broadway,1300662223 +33016,6535,Reese Witherspoon,1300150621 +33016,6549,Mandy Moore,1300147211 +33016,6660,ballet,1300504372 +33016,6963,Amish,1300148368 +33016,7154,Kirsten Dunst,1300492599 +33016,7375,Julia Stiles,1300146716 +33016,8580,Bernadette Peters,1328674962 +33016,8580,filmed play,1328674968 +33016,8580,musical,1328674955 +33016,8580,Stephen Sondheim,1328674957 +33016,8643,Hilary Duff,1300146659 +33016,8808,Anne Hathaway,1300146704 +33016,8808,Julie Andrews,1300146702 +33016,26394,ballet,1300504501 +33016,30816,broadway,1300662250 +33016,32289,figure skating,1300147874 +33016,33669,Alexis Bledel,1300146573 +33016,33669,Amber Tamblyn,1300146576 +33016,33669,chick flick,1300146582 +33016,45221,gymnastics,1300147855 +33016,47382,dance,1300154358 +33016,49286,England,1300150731 +33016,55872,Jonathan Rhys Meyers,1300662309 +33016,56949,cliche,1300146760 +33016,56949,insulting to women,1300146768 +33016,66203,insulting,1300150676 +33016,68838,Broadway,1300148185 +33016,70293,france,1300149047 +33016,70293,Meryl Streep,1300149039 +33016,70293,Paris,1300149052 +33016,70932,Greece,1300154621 +33016,80549,Penn Badgley,1300146469 +33016,81591,ballet,1312687829 +33016,81591,Natalie Portman,1312687836 +33016,81591,New York City,1312687840 +33016,88071,ballet,1337992025 +33016,103137,Emma Watson,1381001469 +33016,105563,gymnastics,1386039807 +33032,133389,constipation,1431363814 +33032,133389,old age life,1431363870 +33037,58103,president,1206535738 +33037,58103,secret service,1206535745 +33037,58295,heist,1206535791 +33054,260,Fantasy,1439772412 +33054,260,sci-fi,1439772408 +33083,60397,ABBA,1273177312 +33083,60397,adapted from B'way,1273177320 +33083,60397,music:ABBA,1273177328 +33083,72131,Kenny Ortega,1273177277 +33083,72131,Michael Jackson,1273177265 +33090,2571,action,1453202733 +33090,2571,martial arts,1453202723 +33090,2571,philosophical,1453202728 +33090,65088,Romantic Comedy,1453202656 +33091,714,iggy pop!!!,1171380014 +33115,22,detective,1368645084 +33115,32,atmospheric,1368851266 +33115,32,Brad Pitt,1368851257 +33115,32,Bruce Willis,1368851259 +33115,32,great ending,1368644752 +33115,32,original,1368637886 +33115,32,time travel,1368851255 +33115,32,twist ending,1368851253 +33115,47,great ending,1368644752 +33115,50,Benicio Del Toro,1291059304 +33115,50,caper,1291059290 +33115,50,complicated,1291059286 +33115,50,Dark,1291059285 +33115,50,excellent script,1368638200 +33115,50,funny,1291059301 +33115,50,heist,1291059297 +33115,50,Kevin Spacey,1291059305 +33115,50,organized crime,1291059296 +33115,50,Oscar (Best Supporting Actor),1291059308 +33115,50,Oscar (Best Writing - Screenplay Written Directly for the Screen),1291059312 +33115,50,suspense,1291059279 +33115,50,thriller,1291059293 +33115,50,twist ending,1291059282 +33115,70,campy,1291062246 +33115,70,genre mix,1291062240 +33115,70,gore,1291062224 +33115,70,mixed genre,1291062229 +33115,70,Quentin Tarantino,1291062214 +33115,70,twist ending,1291062219 +33115,70,vampire,1291062216 +33115,70,vampires,1291062217 +33115,110,action,1291057009 +33115,110,Mel Gibson,1291056999 +33115,110,Nudity (Topless),1291057014 +33115,110,Oscar (Best Picture),1291056997 +33115,110,revenge,1291056995 +33115,150,astronauts,1291057064 +33115,150,based on a book,1291057059 +33115,150,based on a true story,1291057037 +33115,150,catastrophe,1291057050 +33115,150,disaster,1291057053 +33115,150,drama,1291057067 +33115,150,moon,1291057044 +33115,150,suspense,1291057055 +33115,150,tense,1291057057 +33115,150,true story,1291057040 +33115,218,unlikely friendships,1368645067 +33115,218,women,1368638604 +33115,231,goofy,1291057447 +33115,231,Jeff Daniels,1291057433 +33115,231,protagonist is an idiot,1291057443 +33115,231,silly,1291057437 +33115,288,brutality,1368641450 +33115,288,dark comedy,1291064735 +33115,288,stylized,1291064732 +33115,288,violence,1291064728 +33115,318,based on a book,1291056977 +33115,318,revenge,1291056985 +33115,318,Stephen King,1291056966 +33115,318,thought-provoking,1291056967 +33115,318,twist ending,1291056969 +33115,344,Dumb,1291057236 +33115,344,goofy,1291057238 +33115,344,silly fun,1291057232 +33115,356,based on a book,1291056868 +33115,356,Oscar (Best Picture),1291056847 +33115,356,romance,1291056845 +33115,364,Children,1291057342 +33115,364,coming of age,1291057335 +33115,364,Disney,1291057337 +33115,364,Disney animated feature,1291057333 +33115,364,father-son relationship,1291057329 +33115,364,musical,1291057324 +33115,377,Action,1291057210 +33115,377,tense,1291057222 +33115,380,action,1291057150 +33115,380,comedy,1291057154 +33115,380,quirky,1291057158 +33115,380,thriller,1291057161 +33115,480,adventure,1291056931 +33115,480,based on a book,1291056943 +33115,480,drama,1291056957 +33115,480,horror,1291056937 +33115,480,sci-fi,1291056952 +33115,480,Steven Spielberg,1291056933 +33115,480,Suspense,1291056947 +33115,480,tense,1291056949 +33115,481,bleak,1291060801 +33115,481,creepy,1291060783 +33115,481,disturbing,1291060798 +33115,481,tense,1291060794 +33115,481,ultra-violence,1291060792 +33115,540,silly,1291061498 +33115,540,suspense,1291061503 +33115,540,thriller,1291061506 +33115,549,musicians,1368638885 +33115,551,animation,1291060655 +33115,551,Christmas,1291060653 +33115,551,claymation,1291060657 +33115,551,gothic,1291060658 +33115,551,musical,1291060660 +33115,551,stop motion,1291060662 +33115,551,Tim Burton,1291060652 +33115,587,supernatural,1368638184 +33115,589,apocalypse,1291057106 +33115,589,Arnold Schwarzenegger,1291057073 +33115,589,dystopia,1291057085 +33115,589,future,1291057093 +33115,589,nuclear war,1291057103 +33115,589,sci-fi,1291057087 +33115,589,time travel,1291057088 +33115,589,violence,1291057090 +33115,593,based on a book,1291056887 +33115,593,cannibalism,1291056914 +33115,593,disturbing,1291056909 +33115,593,excellent script,1368638200 +33115,593,Horror,1291056902 +33115,593,Jodie Foster,1291056898 +33115,593,psychology,1291056917 +33115,593,serial killer,1291056892 +33115,597,chick flick,1291057482 +33115,597,fish out of water,1291057493 +33115,597,girlie movie,1291057491 +33115,597,Good Romantic Comedies,1291057496 +33115,597,romance,1291057485 +33115,597,ROMANTIC,1291057488 +33115,608,black comedy,1291057177 +33115,608,classic,1291057205 +33115,608,Coen Brothers,1291057179 +33115,608,crime,1291057197 +33115,608,crime gone awry,1291057199 +33115,608,dark comedy,1291057181 +33115,608,deadpan,1291057184 +33115,608,murder,1291057201 +33115,608,quirky,1291057192 +33115,608,violent,1291057189 +33115,628,psychology,1291059867 +33115,628,scary,1291059865 +33115,628,suspense,1291059862 +33115,628,Thriller,1291059860 +33115,628,twist ending,1291059861 +33115,724,teen movie,1368638922 +33115,736,unintentionally funny,1291057415 +33115,736,weather,1291057414 +33115,799,supernatural,1368638184 +33115,858,Al Pacino,1291057312 +33115,858,based on a book,1291057297 +33115,858,classic,1291057295 +33115,858,family,1291057302 +33115,858,Mafia,1291057307 +33115,858,melancholy,1291057304 +33115,858,Nudity (Topless),1291057288 +33115,858,organized crime,1291057300 +33115,858,Oscar (Best Picture),1291057291 +33115,858,robert de niro,1291057310 +33115,913,noir thriller,1368638024 +33115,923,masterpiece,1368638119 +33115,924,aliens,1291059428 +33115,924,masterpiece,1368638119 +33115,924,meditative,1291059434 +33115,924,sci-fi,1291059425 +33115,924,Stanley Kubrick,1291059422 +33115,1033,unlikely friendships,1368645067 +33115,1088,dancing,1368644652 +33115,1172,mentor,1368638099 +33115,1179,neo-noir,1368641464 +33115,1206,disturbing,1291064695 +33115,1206,overrated,1291064708 +33115,1214,aliens,1291060328 +33115,1214,horror,1291060330 +33115,1214,suspense,1291060333 +33115,1214,thriller,1291060334 +33115,1215,campy,1291057860 +33115,1215,Cult classic,1291057859 +33115,1215,satirical,1291057855 +33115,1215,time travel,1291057856 +33115,1219,suspenseful,1368638937 +33115,1240,artificial intelligence,1291057663 +33115,1240,future,1291057649 +33115,1240,great soundtrack,1291057660 +33115,1240,sci-fi,1291057652 +33115,1240,tense,1291057654 +33115,1240,time travel,1291057651 +33115,1240,violent,1291057656 +33115,1241,splatter,1368638584 +33115,1245,neo-noir,1368641464 +33115,1248,noir thriller,1368638024 +33115,1258,disturbing,1291061073 +33115,1258,Horror,1291061072 +33115,1258,Nudity (Full Frontal),1291061083 +33115,1258,psychological,1291061080 +33115,1258,Stephen King,1291061069 +33115,1258,violent,1291061070 +33115,1265,alternate reality,1291057699 +33115,1265,existentialism,1291057710 +33115,1265,hilarious,1291057707 +33115,1265,romance,1291057715 +33115,1265,romantic,1291057716 +33115,1265,surreal,1291057704 +33115,1265,time loop,1291057700 +33115,1265,time travel,1291057702 +33115,1270,alternate reality,1291057257 +33115,1270,comedy,1291057255 +33115,1270,future,1291057260 +33115,1270,sci-fi,1291057249 +33115,1270,time travel,1291057250 +33115,1285,teen movie,1368638922 +33115,1305,melancholic,1368637966 +33115,1320,aliens,1291061417 +33115,1320,suspense,1291061420 +33115,1347,death scenes,1291062185 +33115,1347,horror,1291062173 +33115,1347,scary,1291062175 +33115,1350,antichrist,1291061328 +33115,1350,Horror,1291061320 +33115,1350,scary,1291061322 +33115,1350,Suspense,1291061323 +33115,1350,thriller,1291061326 +33115,1387,creepy,1291060811 +33115,1387,monster,1291060817 +33115,1387,ominous,1291060810 +33115,1387,scary,1291060807 +33115,1387,Steven Spielberg,1291060818 +33115,1387,suspenseful,1368638937 +33115,1387,tense,1291060809 +33115,1617,detective,1368645084 +33115,1620,detective,1368645084 +33115,1625,David Fincher,1368851131 +33115,1625,incomprehensible,1368851147 +33115,1625,Michael Douglas,1368851126 +33115,1625,mindfuck,1291058799 +33115,1625,Mystery,1291058805 +33115,1625,Sean Penn,1368851129 +33115,1625,seen it 5 times; twist at end; awesome,1291058794 +33115,1625,the final twist,1291058811 +33115,1625,thriller,1291058790 +33115,1625,twist ending,1291058789 +33115,1644,horror,1291061485 +33115,1644,overshown,1291061488 +33115,1644,suspense,1291061490 +33115,1748,aliens,1291058984 +33115,1748,dark,1291058987 +33115,1748,dark fantasy,1291058975 +33115,1748,dreamlike,1291058976 +33115,1748,hallucinatory,1291058979 +33115,1748,mindfuck,1291058981 +33115,1748,original,1291058990 +33115,1748,sci-fi,1291058983 +33115,1748,steampunk,1291058970 +33115,1748,stylized,1291058972 +33115,1748,surreal,1291058969 +33115,1748,thought-provoking,1291058974 +33115,1754,supernatural,1368638184 +33115,1779,based on a book,1291061533 +33115,1779,Samuel L. Jackson,1291061544 +33115,1779,sci-fi,1291061524 +33115,1779,suspense,1291061541 +33115,1779,time travel,1291061540 +33115,1805,Bill Murray,1368851189 +33115,1805,Kevin Bacon,1368851211 +33115,1805,lesbian,1368851205 +33115,1805,lesbian sex scene,1368851229 +33115,1805,Matt Dillon,1368851219 +33115,1805,Nudity (Topless - Notable),1368851192 +33115,1805,Nudity (Topless),1368851193 +33115,1805,plot twist,1368851199 +33115,1805,surprise ending,1368851197 +33115,1805,twist ending,1368851222 +33115,1968,teen movie,1368638922 +33115,1982,horror,1291061799 +33115,1982,scary as hell,1291061803 +33115,1997,based on a book,1291060705 +33115,1997,BFI modern classic,1291060717 +33115,1997,Classic,1291060711 +33115,1997,horror,1291060701 +33115,1997,scary,1291060710 +33115,2011,sci-fi,1291057678 +33115,2011,time travel,1291057676 +33115,2012,time travel,1291057730 +33115,2076,neo-noir,1368641464 +33115,2144,teen movie,1368638922 +33115,2288,aliens,1291061590 +33115,2288,better than the old version,1291061954 +33115,2288,blood,1291061593 +33115,2288,disturbing,1291061594 +33115,2288,horror,1291061581 +33115,2288,John Carpenter,1368851305 +33115,2288,Kurt Russell,1368851304 +33115,2288,paranoia,1291061583 +33115,2288,shape shifter,1291061585 +33115,2288,violent,1291061588 +33115,2291,original,1368637886 +33115,2420,mentor,1368638099 +33115,2600,Different,1291059357 +33115,2600,mindfuck,1291059360 +33115,2600,multiple realities,1291059358 +33115,2600,strange,1291059362 +33115,2600,surreal,1291059365 +33115,2692,animation,1291057811 +33115,2692,artistic,1291057796 +33115,2692,intense,1291057815 +33115,2692,notable soundtrack,1291057804 +33115,2692,thought-provoking,1291057817 +33115,2692,time travel,1291057823 +33115,2692,visually appealing,1291057807 +33115,2710,"""found footage""",1291060947 +33115,2710,creepy,1291060915 +33115,2710,Handycam,1291060940 +33115,2710,horror,1291060943 +33115,2710,low budget,1291060945 +33115,2710,No Happy End,1291060911 +33115,2710,original,1291060939 +33115,2710,scary,1291060910 +33115,2710,unsteady-cam,1291060931 +33115,2710,Very Effective Horror,1291060929 +33115,2726,noir thriller,1368638024 +33115,2762,ghosts,1291057377 +33115,2762,great ending,1368644752 +33115,2762,horror,1291057362 +33115,2762,mindfuck,1291057365 +33115,2762,psychology,1291057370 +33115,2762,suspense,1291057368 +33115,2762,twist ending,1291057366 +33115,2762,unpredictable,1291057371 +33115,2858,excellent script,1368638200 +33115,2859,musicians,1368638885 +33115,2866,musicians,1368638885 +33115,2915,teen movie,1368638922 +33115,2916,cyberpunk,1368850902 +33115,2916,gore,1368850915 +33115,2916,memory,1368850911 +33115,2916,Nudity (Topless - Brief),1368850904 +33115,2916,Philip K. Dick,1368850880 +33115,2916,sci-fi,1368850899 +33115,2966,melancholic,1368637966 +33115,2997,mindfuck,1291059331 +33115,2997,surreal,1291059328 +33115,2997,surrealism,1291059327 +33115,2997,twist ending,1291059323 +33115,2997,whimsical,1291059325 +33115,3005,detective,1368645084 +33115,3018,creepy,1291060750 +33115,3018,gruesome,1291060752 +33115,3018,humorous,1291060754 +33115,3018,tense,1291060757 +33115,3129,musicians,1368638885 +33115,3176,creepy,1291060766 +33115,3176,disturbing,1291060767 +33115,3176,Matt Damon,1291060763 +33115,3176,obsession,1291060769 +33115,3176,psychology,1291060777 +33115,3176,secrets,1291060771 +33115,3176,very clever,1291060773 +33115,3262,David Lynch,1291061631 +33115,3262,Horror,1291061636 +33115,3262,Interesting,1291061643 +33115,3262,lynch,1291061634 +33115,3262,mysterious,1291061650 +33115,3262,mystery,1291061654 +33115,3262,surreal,1291061638 +33115,3262,whodunnit,1291061671 +33115,3300,anti-hero,1291061409 +33115,3300,sci-fi,1291061400 +33115,3300,suspense,1291061401 +33115,3300,Vin Diesel,1291061398 +33115,3418,women,1368638604 +33115,3476,alternate reality,1291059061 +33115,3476,disturbing,1291059059 +33115,3476,hallucination,1291059038 +33115,3476,insanity,1291059040 +33115,3476,mental illness,1291059037 +33115,3476,Nudity (Topless),1291059034 +33115,3476,surreal,1291059024 +33115,3476,Tim Robbins,1291059049 +33115,3476,twist downer ending,1291059029 +33115,3476,Vietnam War,1291059047 +33115,3499,claustrophobic,1291061692 +33115,3499,drama,1291061695 +33115,3499,horror,1291061683 +33115,3499,OUT FOR REVENGE,1291061699 +33115,3499,scary,1291061701 +33115,3499,Stephen King,1291061685 +33115,3499,suspenseful,1368638937 +33115,3499,tense,1291061686 +33115,3499,thriller,1291061688 +33115,3499,TRAPPED OR CONFINED,1291061689 +33115,3535,grim,1291063877 +33115,3535,insanity,1291063864 +33115,3535,psychology,1291063873 +33115,3535,violence,1291063874 +33115,3791,dancing,1368644652 +33115,4011,twist ending,1291059505 +33115,4018,women,1368638604 +33115,4020,supernatural,1368638184 +33115,4054,dancing,1368644652 +33115,4226,complicated,1291059265 +33115,4226,dark,1291059266 +33115,4226,mystery,1291059270 +33115,4226,nonlinear,1291059256 +33115,4226,paranoid,1291059260 +33115,4226,psychological,1291059259 +33115,4226,tense,1291059263 +33115,4226,twist ending,1291059257 +33115,4437,atmospheric,1291060836 +33115,4437,Dario Argento,1291060834 +33115,4437,witches,1291060847 +33115,4571,dumb but funny,1291057782 +33115,4571,sci-fi,1291057770 +33115,4571,time travel,1291057776 +33115,4720,ghosts,1291059889 +33115,4720,haunted house,1291059888 +33115,4720,predictable,1291059884 +33115,4720,religion,1291059886 +33115,4720,scary,1291059882 +33115,4720,surprise ending,1291059879 +33115,4720,twist ending,1291059880 +33115,4725,creepy,1291060320 +33115,4873,existentialism,1368850748 +33115,4873,philosophy,1368850736 +33115,4873,surreal,1368850744 +33115,4873,thought-provoking,1368850734 +33115,4878,cult film,1368848378 +33115,4878,high school,1368848393 +33115,4878,original,1368637886 +33115,4878,philosophy,1368848388 +33115,4878,sci-fi,1368848382 +33115,4878,thought-provoking,1368848374 +33115,4878,time travel,1368848383 +33115,4878,twist ending,1368848384 +33115,4975,Cameron Diaz,1368851347 +33115,4975,fantasy,1291059085 +33115,4975,mindfuck,1291059072 +33115,4975,Nudity (Topless),1368851355 +33115,4975,Romance,1291059074 +33115,4975,sci-fi,1368851365 +33115,4975,suicide,1368851361 +33115,4975,Tom Cruise,1291059076 +33115,5065,supernatural,1368638184 +33115,5105,creepy,1291060679 +33115,5105,deliberate,1291060682 +33115,5105,Italy,1291060688 +33115,5266,suspenseful,1368638937 +33115,5294,one of the greatest overlooked films,1291063178 +33115,5294,twist ending,1291063170 +33115,5294,Underrated,1291063734 +33115,5528,creepy,1291060871 +33115,5528,dark,1291060870 +33115,5528,psychopaths,1291060878 +33115,5528,stalker,1291060864 +33115,5528,strange story,1291060883 +33115,5679,creepy,1291058340 +33115,5679,disturbing,1291058338 +33115,5679,paranormal,1291058337 +33115,5679,scary,1291058334 +33115,5679,suspense,1291058331 +33115,5679,thriller,1291058333 +33115,5693,dancing,1368644652 +33115,5909,disturbing,1291063045 +33115,5909,violence,1291063037 +33115,6214,brutal,1291063838 +33115,6214,hard to watch,1291063842 +33115,6214,reverse timeline,1291063852 +33115,6323,creepy,1368848137 +33115,6323,dark,1291059952 +33115,6323,suspense,1368848142 +33115,6323,suspenseful,1291059942 +33115,6323,thriller,1291059938 +33115,6323,twist ending,1291059939 +33115,6502,horror,1291061775 +33115,6502,Post apocalyptic,1291061776 +33115,6502,post-apocalyptic,1291061780 +33115,6502,suspense,1291061782 +33115,6502,thriller,1291061784 +33115,6502,Zombie,1291061785 +33115,6537,big budget,1291057843 +33115,6537,car chase,1291057846 +33115,6539,action,1291061358 +33115,6539,adventure,1291061360 +33115,6539,Disney,1291061353 +33115,6539,Johnny Depp,1291061355 +33115,6707,splatter,1368638584 +33115,6774,body horror,1291060614 +33115,6774,cronenberg,1291060625 +33115,6774,David Cronenberg,1291060615 +33115,7235,disturbing,1291063746 +33115,7235,gore,1291063750 +33115,7235,makeup effects,1291063767 +33115,7235,original,1291063767 +33115,7235,Takashi Miike,1291063744 +33115,7235,tense,1291063752 +33115,7254,alternate endings,1291057755 +33115,7254,alternate reality,1291057753 +33115,7254,Ashton Kutcher,1291057751 +33115,7254,intense,1291057758 +33115,7254,Mystery,1291057757 +33115,7254,psychology,1291057749 +33115,7254,scary,1291057742 +33115,7254,sci-fi,1291057744 +33115,7254,suspense,1291057745 +33115,7254,time travel,1291057747 +33115,7256,disturbing,1368850862 +33115,7256,near death,1368850859 +33115,7256,pivotal decision,1368850872 +33115,7256,true story,1368850853 +33115,7387,action,1291061574 +33115,7387,disturbing,1291061576 +33115,7387,George A. Romero,1291061565 +33115,7387,gruesome,1291061566 +33115,7387,horror,1291061568 +33115,7387,zombies,1291061570 +33115,7982,creepy,1291060726 +33115,7982,deliberate,1368851334 +33115,7982,eerie,1291060724 +33115,7982,psychology,1291060727 +33115,7982,tense,1368851339 +33115,8914,clever,1291059225 +33115,8914,Complicated,1291059208 +33115,8914,complicated plot,1291059207 +33115,8914,intellectual,1368850757 +33115,8914,mindfuck,1291059211 +33115,8914,paradox,1291059222 +33115,8914,sci-fi,1291059219 +33115,8914,time travel,1291059217 +33115,8950,creepy,1291058915 +33115,8950,memory,1291058912 +33115,8950,Nudity (Topless - Notable),1291058923 +33115,8950,schizophrenia,1291058910 +33115,8950,twist ending,1291058911 +33115,8957,claustrophobic,1291061389 +33115,8957,clever,1291061391 +33115,8957,Disturbing,1291061370 +33115,8957,gore,1291061385 +33115,8957,Gory,1291061387 +33115,8957,Horror,1291061372 +33115,8957,mindfuck,1291061374 +33115,8957,plot twists,1291061376 +33115,8957,surprise ending,1291061377 +33115,8957,suspense,1291061379 +33115,8957,Thriller,1291061381 +33115,8957,TRAPPED OR CONFINED,1291061382 +33115,8983,Beautiful,1291062137 +33115,8983,overrated,1291062133 +33115,8983,saturated,1291062145 +33115,27351,based on manga,1291058493 +33115,27351,black humor,1291058612 +33115,27351,cult horror,1291058535 +33115,27351,curse,1291058605 +33115,27351,dark humor,1291058558 +33115,27351,decapitation,1291058605 +33115,27351,horror,1291058414 +33115,27351,insanity,1291058526 +33115,27351,obsession,1291058511 +33115,27351,surreal,1291058605 +33115,27351,surrealism,1291058605 +33115,27351,violent,1291058515 +33115,27351,vortex,1291058605 +33115,27491,horror,1291063641 +33115,27491,scary,1291063641 +33115,27491,suspense,1291063641 +33115,27563,black humor,1291063776 +33115,27563,dark comedy,1291063778 +33115,27563,part animated,1291063784 +33115,27563,Takashi Miike,1291063780 +33115,27563,unconventional,1291063786 +33115,27584,comedy,1291062124 +33115,27584,horror,1291062112 +33115,27584,scary,1291062107 +33115,27584,thriller,1291062109 +33115,27584,weird,1291062110 +33115,31658,Hayao Miyazaki,1368851120 +33115,31658,Studio Ghibli,1368851117 +33115,32587,brutality,1368641450 +33115,33683,chase,1291062599 +33115,33683,gore,1291062589 +33115,33683,horror,1291062587 +33115,33683,killer,1291062599 +33115,33683,plot twist,1291062585 +33115,33683,psycho,1291062584 +33115,33834,splatter,1368638584 +33115,34323,boring,1291064161 +33115,34323,overrated,1291064161 +33115,34323,Rob Zombie,1291064082 +33115,34323,talentless,1291064161 +33115,34532,mysterious or thrilling,1291059844 +33115,34532,Twist Ending,1291059842 +33115,35957,non-horror,1291061446 +33115,35957,Renee Zellweger,1291061448 +33115,35957,wes craven thriller,1291061451 +33115,39427,surreal,1291058881 +33115,39427,twist ending,1291058864 +33115,40732,claustrophobic,1291062398 +33115,40732,goretastic,1291062412 +33115,40732,horror,1291062414 +33115,40732,scary,1291062440 +33115,40732,suspense,1291062440 +33115,40732,tense,1291062407 +33115,40732,twist ending,1291062408 +33115,42723,splatter,1368638584 +33115,44555,deliberate,1291061308 +33115,44555,Oscar Winner,1291061276 +33115,44555,slow,1291061297 +33115,44555,spies,1291061290 +33115,44555,Stasi,1291061274 +33115,48043,artistic,1291057893 +33115,48043,atmospheric,1291057880 +33115,48043,cerebral,1291057883 +33115,48043,fountain of youth,1291057885 +33115,48043,love,1291057889 +33115,48043,religion,1291057891 +33115,48043,visually appealing,1291057878 +33115,48231,absurd,1291063653 +33115,48231,black humor,1291063685 +33115,48231,brutal,1291063118 +33115,48231,dark humor,1291063685 +33115,48231,gross,1291063115 +33115,48231,metaphorical,1291063685 +33115,48231,surreal,1291063685 +33115,48231,unusual,1291063685 +33115,48231,violent,1291063685 +33115,48304,brutality,1368641450 +33115,48543,extremely slow build,1291064203 +33115,48543,psychology focus,1291064208 +33115,48543,thriller,1291064229 +33115,48543,twist ending,1291064198 +33115,48780,based on a book,1291059126 +33115,48780,Christian Bale,1368850968 +33115,48780,complicated,1291059124 +33115,48780,dark,1291059122 +33115,48780,David Bowie,1291059131 +33115,48780,Michael Caine,1368850971 +33115,48780,nonlinear,1291059115 +33115,48780,obsession,1291059136 +33115,48780,Scarlett Johansson,1368850974 +33115,48780,steampunk,1291059120 +33115,48780,tense,1291059117 +33115,48780,twist ending,1291059118 +33115,50794,Nudity (Topless),1368848172 +33115,51709,horror,1291061856 +33115,51709,monster,1291061858 +33115,51709,no plot,1291061892 +33115,51709,plotless,1291061886 +33115,51927,creepy,1291060959 +33115,52281,bad script,1291064486 +33115,52281,overhyped,1291064486 +33115,52281,Quentin Tarantino,1291064460 +33115,52281,Robert Rodriguez,1291064461 +33115,52281,teen appeal,1291064486 +33115,53519,bad dialogue,1291064041 +33115,53519,campy,1291064041 +33115,53519,dull,1291064041 +33115,53519,hyped,1291063971 +33115,53519,overhyped,1291064041 +33115,53519,overrated,1291064065 +33115,53519,Quentin Tarantino,1291063968 +33115,53519,slow,1291063965 +33115,53519,testosterone,1291063965 +33115,53519,trite,1291063965 +33115,53953,claustrophobic,1291062482 +33115,53953,horror,1291062499 +33115,53953,scary,1291062505 +33115,54910,dark comedy,1291064353 +33115,54910,dark humor,1291064353 +33115,54910,funny,1291064264 +33115,54910,halloween,1291064353 +33115,54910,horror,1291064373 +33115,54910,mocku horror,1291064353 +33115,54910,mockumentary,1291064353 +33115,54910,satire,1291064353 +33115,54910,sendup,1291064353 +33115,54910,serial killer,1291064353 +33115,54910,slasher,1291064362 +33115,54910,spoof,1291064353 +33115,54910,surprise ending,1291064353 +33115,54910,twist ending,1291064353 +33115,54910,underexposed,1291064353 +33115,54910,underrated,1291064353 +33115,56145,apocalypse,1368851080 +33115,56145,campy,1368851075 +33115,56145,father-son relationship,1368851087 +33115,56145,monster,1291063890 +33115,56145,stephen king,1368851069 +33115,56145,surprise ending,1291063905 +33115,56145,Survival,1368851083 +33115,56145,twist ending,1368851059 +33115,56339,deliberate,1291061621 +33115,56339,horror,1291061615 +33115,56339,paranormal,1291061611 +33115,56339,slow,1291061621 +33115,56339,twist ending,1291061608 +33115,57274,"""found footage""",1291060586 +33115,57274,creepy,1291060574 +33115,57274,despair,1291060584 +33115,57274,Handycam,1291060582 +33115,57274,horror,1291060567 +33115,57274,panic,1291060590 +33115,57274,zombies,1291060592 +33115,58964,blood,1291063159 +33115,58964,chase,1291063719 +33115,58964,extremely violent,1291063157 +33115,58964,gore,1291063152 +33115,58964,killer,1291063719 +33115,58964,New French Extremism,1368851101 +33115,58964,psycho,1291063156 +33115,58964,survival,1291063719 +33115,58964,suspense,1291063719 +33115,58964,torture,1291063154 +33115,61240,adolescence,1291056693 +33115,61240,bittersweet,1291056689 +33115,61240,coming of age,1291056709 +33115,61240,horror,1291056707 +33115,61240,love story,1291056681 +33115,61240,slow,1291056685 +33115,61240,vampire,1291056698 +33115,61240,vampires,1291056700 +33115,62203,disturbing,1291063073 +33115,62203,extremely violent,1291063075 +33115,62203,shocking,1291063078 +33115,62203,torture,1291063080 +33115,63826,campy,1291064452 +33115,63826,nothing original,1291064441 +33115,63826,teen appeal,1291064452 +33115,65642,complicated,1368850940 +33115,65642,grim,1368850951 +33115,65642,less than 300 ratings,1368850955 +33115,65642,not believable,1368850935 +33115,65642,Not enough complicated,1368850932 +33115,65642,time travel,1368850944 +33115,66090,chase,1291063819 +33115,66090,dark,1291063813 +33115,66090,intense,1291063802 +33115,66090,scary,1291063804 +33115,66090,survival,1291063819 +33115,66090,Tense.,1291063807 +33115,66090,twist,1291063808 +33115,66090,underrated,1291063810 +33115,68237,hallucination,1291059103 +33115,68237,interesting,1291059108 +33115,68237,Sci-fi,1291059095 +33115,68237,twist ending,1291059097 +33115,68952,funny,1291058364 +33115,68952,horror,1291058362 +33115,68952,tongue-in-cheek,1291058367 +33115,69122,absurd,1291061833 +33115,69122,awkward,1291061840 +33115,69122,cliche,1291061831 +33115,69122,disappointing,1291061829 +33115,69122,drugs,1291061823 +33115,71135,blood,1291059157 +33115,71135,future,1291059199 +33115,71135,horror,1291059155 +33115,71135,sci-fi,1291059154 +33115,71304,dark comedy,1291061711 +33115,71304,horror,1291061708 +33115,71304,overhyped,1291061721 +33115,71500,anthology,1368850844 +33115,71500,Halloween,1291063132 +33115,71500,linked storylines,1368850840 +33115,71500,multiple storylines,1368850824 +33115,71500,not funny,1368850828 +33115,71500,Scary Halloween Movies,1291063136 +33115,71500,surprisingly good,1291063139 +33115,71535,awkward romance,1291061978 +33115,71535,campy,1291061748 +33115,71535,hollywood,1291061737 +33115,71535,overhyped,1291061728 +33115,71535,teen,1291061744 +33115,71535,weak humor,1291061766 +33115,73211,boring,1368850992 +33115,73211,character driven,1291064426 +33115,73211,disappointing,1368850997 +33115,73211,innovative,1291064426 +33115,73211,intense,1291064426 +33115,73211,mystery,1368851013 +33115,73211,nothing happens,1368850994 +33115,73211,original,1291064426 +33115,73211,twist,1291064426 +33115,73211,well acted,1291064426 +33115,73211,zombies,1368851017 +33115,74228,autism,1368851288 +33115,74228,autistic son,1368851290 +33115,74228,endless loop,1291063607 +33115,74228,mystery,1291063613 +33115,74228,puzzle,1291063615 +33115,74228,strong female lead,1368851283 +33115,74228,time loop,1291063605 +33115,74228,twist ending,1368851279 +33115,74458,boring,1291058946 +33115,74458,insanity,1291058957 +33115,74458,Leonardo DiCaprio,1291058948 +33115,74458,Martin Scorsese,1291058949 +33115,74458,plot twist,1291058951 +33115,74458,Predictable,1291058939 +33115,74458,psychological,1291058954 +33115,74458,too long,1291058942 +33115,74458,twist ending,1291058955 +33115,77795,horror,1291062456 +33115,77795,open ending,1291062458 +33115,79132,big budget,1291056610 +33115,79132,complicated,1291056623 +33115,79132,Leonardo DiCaprio,1291056619 +33115,79132,mindfuck,1291056613 +33115,79132,thought-provoking,1291056631 +33115,79251,atrocity,1291059731 +33115,79251,brutality,1291059696 +33115,79251,dark humor,1291059533 +33115,79251,exploitation,1291059635 +33115,79251,film within a film,1291059794 +33115,79251,gore,1291059668 +33115,79251,hardcore,1291059723 +33115,79251,incest,1291059654 +33115,79251,kidnapping,1291059716 +33115,79251,macabre,1291059762 +33115,79251,mutilation,1291059777 +33115,79251,pedophilia,1291059597 +33115,79251,pornography,1291059771 +33115,79251,rage,1291059692 +33115,79251,sex,1291059783 +33115,79251,snuff,1291059808 +33115,79251,torture,1291059615 +33115,79251,twist ending,1291059530 +33115,79251,violence,1291059549 +33115,79251,violent,1291059544 +33115,92259,feel good movie,1368850555 +33115,92259,soundtrack,1368850562 +33115,93840,bloody,1368850802 +33115,93840,clever,1368850780 +33115,93840,dark comedy,1368850767 +33115,93840,gore,1368850784 +33115,93840,horror comedy,1368850814 +33115,93840,Nudity (Topless),1368850800 +33115,93840,parody,1368850775 +33115,93840,werewolf,1368850790 +33115,94959,love story,1368850619 +33115,94959,romance,1368850625 +33115,94959,romantic,1368850629 +33138,1777,Adam Sandler,1307042862 +33138,2353,espionage,1307042712 +33138,3052,Kevin Smith,1307042588 +33146,260,"sci-fi, groundbreaking in it's time",1441204452 +33188,50601,teen relationships,1183833606 +33203,5378,nerdy,1163476147 +33207,1270,time travel,1169223615 +33207,8950,memory,1162030501 +33232,356,family home,1425669220 +33232,356,homey,1425669220 +33232,356,simple life,1425669220 +33280,104,you're gonna die clown,1406126318 +33280,231,quirky,1406126096 +33280,344,bad ending,1406126119 +33280,4728,funny,1406126350 +33280,4728,Rowan Atkinson,1406126360 +33280,4816,funny,1406126077 +33280,44974,tense,1408028118 +33280,62434,homophobic,1406146094 +33280,62434,watch the credits,1406150695 +33280,63131,Christopher Mintz-Plasse,1406126402 +33280,67734,basic plot,1406144303 +33280,67734,Kristen Stewart,1406144265 +33280,73017,forgettable,1428008690 +33280,78088,gripping,1406235263 +33280,78088,tense,1406235249 +33280,79428,crazy ex is crazy,1406126256 +33280,79428,hilarious,1406126244 +33280,79592,confusing,1406126152 +33280,79592,weak plot,1406126142 +33280,81562,gory,1406235360 +33280,85367,far-fetched,1428220147 +33280,85367,funny,1428189949 +33280,85367,unrealistic plot,1428189939 +33280,88812,funny,1406126197 +33280,88812,Nudity (Topless),1406126190 +33280,91976,watch the credits,1406235312 +33280,94466,not a movie,1407882248 +33280,94466,TV series,1407882254 +33280,94953,happy ending,1406126229 +33280,94953,quirky,1406126223 +33280,101285,artistic,1406929262 +33280,101285,colourful,1406929275 +33280,101285,experimental,1406929290 +33280,101285,visually appealing,1406929270 +33280,102123,hilarious,1408040671 +33280,102760,unpredictable,1442869264 +33280,103228,colours,1406125955 +33280,103228,ending,1406125973 +33280,103228,neon,1406125964 +33280,103228,story,1406125968 +33280,103253,plot convenience,1406235459 +33280,103306,boring,1406929814 +33280,103306,low budget,1406929809 +33280,104841,cinematography,1406235395 +33280,104841,visually appealing,1406235404 +33280,105037,virginity,1406126472 +33280,112481,based on a tv show,1421366736 +33280,112481,British TV,1406235679 +33280,112481,budget,1406235660 +33280,112481,comedy,1421366736 +33280,112481,If you like the TV show,1406235740 +33280,112481,in jokes,1421366736 +33280,112481,you'll like the film,1406235740 +33280,117887,comedy,1423352655 +33280,117887,comical,1423352655 +33280,117887,family,1423352655 +33280,118082,Graphic,1436198172 +33280,119145,action,1424094790 +33280,119145,british comedy,1424094790 +33280,119145,comedy,1424094790 +33280,119145,comic violence,1424094790 +33280,119145,spy,1424094790 +33280,119565,tv show not a film,1421948065 +33280,121231,Creepy,1431127023 +33286,102445,Spock/Uhuru relationship.,1370737034 +33297,6754,vampire,1138983469 +33297,8865,1940's feel,1140395930 +33297,8865,unique look,1140395930 +33297,36401,fairy tales,1138983064 +33318,1197,a love love story,1437324638 +33318,1197,adorable,1437324638 +33318,1197,cute cliche,1437324638 +33338,260,George Lucas,1430224619 +33338,260,scifi cult,1430224607 +33338,1080,Monty Python,1430224971 +33338,6104,british humor,1430225045 +33338,6104,crazy,1430225045 +33338,6104,live,1430225045 +33340,296,cult film,1286201671 +33369,260,classic,1442626841 +33369,260,geek,1442626832 +33369,8640,epic,1442629511 +33369,8640,medieval,1442629504 +33369,116897,madness,1442631414 +33369,116897,stress,1442631401 +33369,142604,halloween,1442782885 +33369,142604,nicolas cage,1442782900 +33381,1357,music,1176765393 +33381,1948,British,1177512649 +33381,3578,Romans,1173212944 +33381,5694,70mm,1175638092 +33381,6107,World War II,1178473747 +33381,7382,for katie,1171234019 +33381,7936,austere,1173392334 +33402,1198,overrated,1389555583 +33402,2395,Wes Anderson,1437588541 +33402,4508,anthropology,1449682828 +33402,4508,apes,1449682835 +33402,4508,science,1449682832 +33402,31437,neglected childen,1437590076 +33402,41769,asperger's,1443367706 +33402,41769,asperger's syndrome,1443367703 +33402,41769,autism,1443367697 +33402,41769,romance,1443367720 +33402,56095,intersex,1340108988 +33402,68269,pointless,1437827243 +33402,70286,unique,1378639093 +33402,71282,corn,1388878349 +33402,71282,food,1388878379 +33402,71282,meat,1388878337 +33402,71462,documentary,1351507261 +33402,72998,predictable,1440440634 +33402,77455,documentary,1351507122 +33402,80969,dystopia,1366239431 +33402,89260,animals,1389555172 +33402,89260,apes,1389555218 +33402,89260,chimp,1389555198 +33402,89260,chimpanzee,1389555203 +33402,89260,experiment,1389555234 +33402,89260,psychology,1389555226 +33402,89260,touching,1389555212 +33402,91325,asperger's,1443367627 +33402,99917,artistic,1380390944 +33402,99917,beautiful,1380390862 +33402,99917,strong female lead,1380391091 +33402,101741,not believable,1365713286 +33402,103228,disappointing,1378640555 +33402,103228,plot holes,1378640570 +33402,103228,silly,1378640583 +33402,103253,cliche characters,1378638908 +33402,103253,damsel in distress,1378638887 +33402,103253,shallow characters,1378638923 +33402,103787,beautiful,1380391037 +33402,103787,strong female lead,1380391051 +33402,103980,pointless,1380390660 +33402,104243,couldn't bear to watch it all,1378638660 +33402,104243,laughable,1378638581 +33402,104243,sexist,1378638705 +33402,104272,animal rights,1388788897 +33402,104312,cliche,1378639177 +33402,104312,cliche characters,1378639198 +33402,104312,plot holes,1378639220 +33402,104374,time travel,1378638776 +33402,104374,touching,1378638822 +33402,104879,cheap symbolism,1380390803 +33402,104879,cliche characters,1380390685 +33402,104879,female characters useless,1380390762 +33402,104879,focus on the white family,1380390777 +33402,104913,based on a true story,1379270718 +33402,104913,great soundtrack,1379270642 +33402,104913,interesting characters,1379270585 +33402,105250,advertising,1390165255 +33402,105250,psychoanalysis,1390165194 +33402,106002,Orson Scott Card,1389555774 +33402,106002,predictable ending,1389555802 +33402,106489,boring,1387532782 +33402,106489,too long,1387532789 +33402,107713,documentary,1388668993 +33402,107713,environment,1388669002 +33402,107713,global warming,1388668981 +33402,107713,meat,1388668981 +33402,107713,vegan,1388668981 +33402,107713,vegetarians,1388668981 +33402,107848,animals,1389044263 +33402,107848,meat,1389044258 +33402,107848,vegan,1389044255 +33402,107848,vegetarian,1389044253 +33402,107980,based on a book,1389479612 +33402,107980,based on a true story,1389479612 +33402,107980,beautiful photography,1389479899 +33402,107980,could have been better,1389479686 +33402,107980,forgiveness,1389479583 +33402,107980,likeable main character,1389479950 +33402,107980,torture,1389479592 +33402,107980,trains,1389479571 +33402,107980,war,1389479589 +33402,107980,WWII,1389479566 +33402,110730,bad acting,1398711483 +33402,110730,impossible science,1398711468 +33402,110730,ridiculous,1398711368 +33402,110730,science is magic,1398711402 +33402,110730,siding with the villain,1398711375 +33402,110730,technophobic,1398711386 +33402,111249,racism,1403077996 +33402,111249,slavery,1403078000 +33402,111659,sleeping beauty,1403078083 +33402,111759,based on a novel,1403077934 +33402,111993,insects,1403083694 +33402,133771,dystopia,1451645529 +33402,139385,frontier,1453401576 +33402,146926,no ending,1449870676 +33402,148626,autism,1453068196 +33402,148626,based on a book,1453068225 +33411,260,epic adventure,1439773573 +33411,260,scifi cult,1439773566 +33418,589,action,1448259674 +33418,589,artificial intelligence,1448259687 +33418,589,dystopia,1448259691 +33418,589,robots,1448259684 +33418,3793,action,1448259292 +33418,3793,interesting,1448259333 +33418,3793,marvel,1448259301 +33418,3793,superhero,1448259282 +33418,4306,animation,1448259366 +33418,4306,comedy,1448259368 +33418,4306,Funny,1448259372 +33418,35836,comedy,1448439685 +33418,35836,funny,1448439694 +33418,35836,steve carell,1448439683 +33418,51662,action,1448439712 +33418,51662,blood,1448439718 +33418,51662,comic book,1448439723 +33418,51662,historical,1448439726 +33418,51662,sword fight,1448439721 +33418,54286,action,1448259639 +33418,54286,conspiracy,1448259658 +33418,54286,espionage,1448259626 +33418,58559,action,1448438846 +33418,58559,Batman,1448438828 +33418,58559,comic book,1448438852 +33418,58559,dark,1448438835 +33418,58559,Heath Ledger,1448438824 +33418,58559,superhero,1448438829 +33418,58559,violent,1448438839 +33418,59315,action,1448963186 +33418,59315,comic book,1448963148 +33418,59315,funny,1448963185 +33418,59315,Marvel,1448963145 +33418,59315,sci-fi,1448963151 +33418,59315,superhero,1448963141 +33418,59315,technology,1448963187 +33418,59369,action,1448439090 +33418,59369,action packed,1448439109 +33418,59369,agent,1448439111 +33418,59369,CIA,1448439099 +33418,59369,crime,1448439113 +33418,59369,father daughter relationship,1448439097 +33418,59369,fight scenes,1448439093 +33418,59369,Liam Neeson,1448439088 +33418,59369,revenge,1448439095 +33418,59369,thriller,1448439091 +33418,60040,comic book,1448963801 +33418,60040,Marvel,1448963806 +33418,60040,superhero,1448963803 +33418,60040,The Avengers,1448963808 +33418,60040,Tim Roth,1448963799 +33418,69122,comedy,1448867151 +33418,69122,funny,1448867162 +33418,69122,Las Vegas,1448867154 +33418,70286,action,1448439551 +33418,70286,aliens,1448439541 +33418,70286,genetics,1448439548 +33418,70286,humor,1448439549 +33418,70286,sci-fi,1448439545 +33418,70286,social commentary,1448439543 +33418,70286,thriller,1448439559 +33418,72998,3d,1448438577 +33418,72998,beautiful scenery,1448438581 +33418,72998,graphic design,1448438579 +33418,72998,revolution,1448438586 +33418,72998,scenic,1448438593 +33418,72998,sci-fi,1448438561 +33418,72998,science fiction,1448438573 +33418,72998,war,1448438566 +33418,77561,action,1448963313 +33418,77561,comic book,1448963309 +33418,77561,Iron Man,1448963248 +33418,77561,Marvel,1448963315 +33418,77561,sci-fi,1448963310 +33418,77561,superhero,1448963251 +33418,81229,action,1448439280 +33418,81229,Bruce Willis,1448439257 +33418,81229,cia,1448439268 +33418,81229,CIA comedy,1448439275 +33418,81229,comedy,1448439288 +33418,81229,spy,1448439262 +33418,86332,action,1448439077 +33418,86332,comic book,1448439069 +33418,86332,funny,1448439063 +33418,86332,Marvel,1448439066 +33418,86332,superhero,1448439060 +33418,86332,The Avengers,1448439075 +33418,87232,action,1448963225 +33418,87232,Jennifer Lawrence,1448963215 +33418,87232,Marvel,1448963212 +33418,87232,sci fi,1448963226 +33418,87232,superhero,1448963203 +33418,87232,X-men,1448963218 +33418,88129,cars,1448258971 +33418,88129,Dark,1448258946 +33418,88129,interesting,1448259034 +33418,88129,violence,1448258995 +33418,88744,action,1448439483 +33418,88744,Animals,1448439517 +33418,88744,bad science,1448439487 +33418,88744,biology,1448439507 +33418,88744,computer animation,1448439495 +33418,88744,experiments gone awry,1448439511 +33418,88744,genetics,1448439477 +33418,88744,sci-fi,1448439481 +33418,88744,special effects,1448439489 +33418,88744,story,1448439506 +33418,88744,thought-provoking,1448439479 +33418,88744,thriller,1448439509 +33418,88744,virus,1448439498 +33418,89745,action,1448439386 +33418,89745,Hulk,1448439379 +33418,89745,Iron Man,1448439376 +33418,89745,Robert Downey Jr.,1448439371 +33418,89745,superhero,1448439373 +33418,89745,superhero team,1448439383 +33418,89745,The Avengers,1448439392 +33418,89745,Thor,1448439395 +33418,91630,action,1448963235 +33418,91630,Tom Cruise,1448963234 +33418,93510,comedy,1448372085 +33418,93510,drugs,1448372072 +33418,93510,funny,1448372081 +33418,93510,high school,1448372075 +33418,93510,parody,1448372087 +33418,93510,police,1448372079 +33418,95720,comedy,1448372231 +33418,95720,funny,1448372230 +33418,95720,parody,1448372232 +33418,96588,college,1448962982 +33418,96588,comedy,1448962989 +33418,96588,Funny,1448962977 +33418,96588,Rebel Wilson,1448962975 +33418,102123,comedy,1448372166 +33418,102123,funny,1448372165 +33418,102123,story,1448372148 +33418,102123,stupid,1448372143 +33418,102125,action,1448439048 +33418,102125,comic book,1448439000 +33418,102125,funny,1448439011 +33418,102125,humour,1448439014 +33418,102125,Iron Man,1448439010 +33418,102125,Marvel,1448438988 +33418,102125,robots,1448439005 +33418,102125,superhero,1448438985 +33418,102125,terrorism,1448438997 +33418,103253,future,1448963667 +33418,103253,medicine,1448963675 +33418,103253,military,1448963669 +33418,103253,robots,1448963676 +33418,103253,science fiction,1448963658 +33418,103253,social commentary,1448963665 +33418,103339,action,1448372281 +33418,103339,intersting,1448372292 +33418,103339,thriller,1448372283 +33418,103372,funny,1448963391 +33418,103372,Melissa McCarthy,1448963391 +33418,103372,Sandra Bullock,1448963393 +33418,108156,buddy movie,1448371974 +33418,108156,comedy,1448371985 +33418,108156,funny,1448371986 +33418,108190,action,1448963103 +33418,108190,dystopia,1448963100 +33418,108190,new society,1448963107 +33418,109487,artificial intelligence,1448438908 +33418,109487,father - child relationship,1448438922 +33418,109487,good science,1448438907 +33418,109487,philosophical issues,1448438913 +33418,109487,sci-fi,1448438895 +33418,109487,science fiction,1448438911 +33418,109487,space,1448438893 +33418,110553,comic book,1448439443 +33418,110553,Emma Stone,1448439435 +33418,110553,sad,1448439439 +33418,110553,superhero,1448439433 +33418,111113,college,1448372338 +33418,111113,comedy,1448372353 +33418,111113,funny,1448372352 +33418,111360,scifi,1448963697 +33418,111360,strong female lead,1448963704 +33418,111364,Bryan Cranston,1448439528 +33418,111364,Godzilla,1448439525 +33418,111364,Monster,1448439530 +33418,111364,special effects,1448439532 +33418,111759,ending,1448439341 +33418,111759,sci-fi,1448439338 +33418,111759,science fiction,1448439353 +33418,111759,Tom Cruise,1448439357 +33418,111759,war,1448439348 +33418,111781,Action,1448439293 +33418,111781,Tom Cruise,1448439295 +33418,112171,action,1448438504 +33418,112171,Denzel Washington,1448438501 +33418,112171,revenge,1448438503 +33418,112171,russian mafia,1448438511 +33418,112171,violent,1448438506 +33418,114180,action,1448439452 +33418,114180,based on a book,1448439449 +33418,114180,survival,1448439457 +33418,114180,teen,1448439455 +33418,114662,Bad acting,1448962876 +33418,114662,insult,1448962934 +33418,114662,Racial,1448962936 +33418,114935,science fiction,1448963605 +33418,114935,thriller,1448963610 +33418,114935,time travel,1448963601 +33418,114935,twist ending,1448963604 +33418,119141,bloody,1448372325 +33418,119141,comedy,1448372315 +33418,119141,funny,1448372314 +33418,119141,goofy,1448372317 +33418,119141,North Korea,1448372320 +33418,119145,action,1448439156 +33418,119145,british,1448439159 +33418,119145,british comedy,1448439180 +33418,119145,comedy,1448439161 +33418,119145,funny,1448439167 +33418,119145,gentlemanly,1448439187 +33418,119145,humour,1448439175 +33418,119145,Parody,1448439149 +33418,119145,spy,1448439145 +33418,119145,spy thriller,1448439154 +33418,119145,violent,1448439152 +33418,120635,action,1448963072 +33418,129354,action,1448438881 +33418,129354,Margot Robbie,1448438884 +33418,129354,predictable,1448438882 +33418,129354,thief,1448438877 +33418,129354,Will Smith,1448438874 +33418,130490,Action,1448963028 +33418,130490,divergent,1448963045 +33418,130490,savior,1448963039 +33418,130490,sci-fi,1448963042 +33418,130490,survival,1448963031 +33418,130490,teen,1448963032 +33418,130490,Young Adult,1448963040 +33418,131013,comedy,1448371916 +33418,131013,funny,1448371927 +33418,134368,action,1448439246 +33418,134368,cia,1448439209 +33418,134368,comedy,1448439237 +33418,134368,paris,1448439233 +33418,135133,interesting,1448259217 +33418,148626,drama,1450332503 +33426,6365,super-hero,1192049634 +33432,541,Philip K. Dick,1385391989 +33432,1199,dark comedy,1385391960 +33432,1199,dystopia,1385391939 +33432,1199,thought-provoking,1385391948 +33432,4878,surreal,1385392019 +33432,4878,thought-provoking,1385392025 +33432,71899,dark comedy,1385391886 +33432,71899,friendship,1385391831 +33432,71899,humorous,1385391841 +33432,71899,lonliness,1385391866 +33432,71899,mental illness,1385391823 +33432,71899,sad,1385391871 +33432,71899,stop motion,1385391875 +33432,128620,"believable, spontaneous acting",1440952424 +33432,128620,thrilling,1440952407 +33437,4975,existentialism,1416793599 +33437,4975,fantasy,1416793606 +33437,4975,future,1416793609 +33437,4975,mindfuck,1416793592 +33437,4975,sci-fi,1416793611 +33437,103042,alien invasion,1416717420 +33437,103042,Over-the-top action.,1416717400 +33437,103042,visually appealing,1416717413 +33437,103721,space,1416716498 +33437,112868,atmospheric,1416620381 +33437,112868,experiment,1416620372 +33437,112868,Interesting Concept,1416620321 +33437,112868,twist ending,1416620387 +33437,114180,Twist Ending,1417394588 +33452,6377,animation,1294904933 +33472,260,father-son relationship,1436743066 +33472,260,good vs evil,1436743057 +33472,119145,action scenes,1436767478 +33472,119145,british,1436767507 +33472,119145,funny,1436767455 +33472,119145,spy gadgets,1436767466 +33501,296,cult film,1437938266 +33501,296,drugs,1437938266 +33501,296,organized crime,1437938266 +33501,3406,Gregory Peck,1437938698 +33501,3406,Napoleanic War,1437938687 +33501,3406,Navy,1437938691 +33501,3406,seafaring,1437938695 +33501,3406,war,1437938707 +33501,6947,action,1437938560 +33501,6947,historical,1437938568 +33501,6947,Napoleanic War,1437938564 +33501,6947,navy,1437938553 +33501,6947,sailing,1437938572 +33501,6947,seafaring,1437938557 +33501,7256,survival,1437939180 +33501,7256,true story,1437939174 +33502,318,friendship,1452184381 +33502,318,hope,1452184296 +33502,318,justice,1452184327 +33502,318,prison,1452184412 +33502,318,prison escape,1452184416 +33502,318,twist ending,1452184375 +33502,1721,catastrophe,1452193558 +33502,1721,Leonardo DiCaprio,1452193544 +33502,1721,love story,1452193550 +33502,1721,music,1452193568 +33502,1721,romance,1452193547 +33502,2324,emotional,1452184632 +33502,2324,father-son relationship,1452184621 +33502,2324,holocaust,1452184704 +33502,2324,optimism,1452184650 +33502,2324,World War II,1452184617 +33502,2671,romance,1452193833 +33502,3967,ballet,1452193761 +33502,3967,coming of age,1452193760 +33502,3967,inspirational,1452193770 +33502,3967,working class,1452193764 +33502,4310,emotional,1452186096 +33502,4310,historical,1452186099 +33502,4310,History,1452186150 +33502,4310,love story,1452186279 +33502,4310,military,1452186202 +33502,4310,realistic,1452186208 +33502,4310,wartime,1452186157 +33502,4310,World War II,1452186087 +33502,4995,biography,1452193297 +33502,4995,genius,1452193275 +33502,4995,intelligent,1452193295 +33502,4995,mathematics,1452193270 +33502,4995,mental illness,1452193278 +33502,4995,schizophrenia,1452193273 +33502,4995,true story,1452193281 +33502,4995,twist ending,1452193289 +33502,5425,aviation,1452186412 +33502,5425,friendship,1452186397 +33502,5425,world war II,1452186356 +33502,6539,adventure,1452192626 +33502,6539,comedy,1452192629 +33502,6539,funny,1452192637 +33502,6539,pirates,1452192632 +33502,30793,chocolate,1452193460 +33502,30793,fantasy,1452193463 +33502,30793,roald dahl,1452193456 +33502,30816,great music,1452187959 +33502,30816,Musical,1452187933 +33502,30816,Romance,1452187936 +33502,40629,based on a book,1452185310 +33502,40629,classic,1452185306 +33502,40629,great soundtrack,1452185278 +33502,40629,Jane Austen,1452185272 +33502,40629,love,1452185303 +33502,40629,relationships,1452185313 +33502,40629,romance,1452185294 +33502,54286,action,1452193353 +33502,54286,cia,1452193359 +33502,54286,Matt Damon,1452193351 +33502,55247,adventure,1452186962 +33502,55247,Alaska,1452186953 +33502,55247,freedom,1452186959 +33502,55247,great soundtrack,1452186941 +33502,55247,psychology,1452186948 +33502,55247,road trip,1452186945 +33502,55247,self discovery,1452186976 +33502,55247,travel,1452186951 +33502,55247,wilderness,1452186992 +33502,74324,autism,1452193216 +33502,74324,biography,1452193224 +33502,74324,genius,1452193233 +33502,74324,mental illness,1452193222 +33502,74324,science,1452193220 +33502,79091,animation,1452187779 +33502,79091,cute,1452187771 +33502,79091,funny,1452187762 +33502,79091,minions,1452187764 +33502,79132,action,1452186620 +33502,79132,alternate reality,1452186562 +33502,79132,clever,1452186590 +33502,79132,complicated,1452186586 +33502,79132,dreams,1452186580 +33502,79132,Leonardo DiCaprio,1452186581 +33502,79132,memory,1452186599 +33502,79132,thought-provoking,1452186580 +33502,79132,twist ending,1452186614 +33502,80586,charming,1452188663 +33502,80586,coming of age,1452188672 +33502,80586,love,1452188641 +33502,80586,trees,1452188654 +33502,91548,life,1452192494 +33502,91548,people,1452192498 +33502,91548,reality,1452192472 +33502,91548,world,1452192474 +33502,92259,based on a true story,1452184562 +33502,92259,friendship,1452184511 +33502,92259,funny,1452184552 +33502,92259,soundtrack,1452184523 +33502,103335,Animation,1452192525 +33502,103335,Minions,1452192531 +33502,106696,animation,1452193619 +33502,106696,beautiful,1452193642 +33502,106696,music,1452193625 +33502,107883,Loneliness,1452192591 +33502,113604,great soundtack,1452193588 +33502,113604,romance,1452193600 +33502,113604,touching,1452193591 +33502,115617,adventure,1452193707 +33502,115617,Animation,1452193687 +33502,115617,family,1452193701 +33502,115617,friendship,1452193695 +33502,115617,funny,1452193691 +33502,115617,robotics,1452193693 +33502,115617,superhero,1452193697 +33502,118702,based on a true story,1452191986 +33502,118702,great challenge,1452191982 +33502,118702,survival,1452191963 +33502,118702,war,1452191967 +33502,118702,war prison,1452191976 +33502,134853,Animation,1452193402 +33502,134853,childhood,1452193398 +33502,134853,creative,1452193396 +33502,134853,emotions,1452193405 +33502,134853,happiness,1452193412 +33502,135887,Animated,1452192358 +33502,135887,Funny,1452192365 +33502,135887,minions,1452192369 +33538,74508,slow paced,1379239890 +33538,100383,slow start,1379155932 +33538,100383,twists,1379155932 +33551,6350,balse,1438155238 +33551,6350,Hayao Miyazaki,1438155203 +33551,6350,Isao Takahata,1438155222 +33557,260,Science Fiction,1431452468 +33557,260,space opera,1431452453 +33558,2762,ghosts,1258402931 +33558,2762,unpredictable,1258402865 +33558,2762,unrealistic,1258402950 +33558,2908,true story,1258143120 +33558,47099,based on a true story,1258143111 +33558,63062,based on a true story,1258143151 +33562,260,scifi,1441828116 +33562,260,space adventure,1441828144 +33566,260,"action, scifi",1439775231 +33566,260,EPIC,1439775219 +33614,3000,adventure,1332229215 +33649,260,classic,1439476588 +33649,260,sci-fi,1439476583 +33685,541,cyberpunk,1230682429 +33685,541,fantasy,1230682426 +33685,541,future,1230682433 +33685,541,sci-fi,1230682423 +33710,260,scifi,1442193714 +33710,260,space,1442193770 +33720,260,genre busting,1438306080 +33720,260,Original,1438306063 +33725,1,Tom Hanks,1241045166 +33725,231,quirky,1285522787 +33725,231,very funny,1285522791 +33725,296,Bruce Willis,1247177164 +33725,296,dark comedy,1247177161 +33725,296,John Travolta,1242231863 +33725,296,stylized,1242231949 +33725,296,thriller,1247177173 +33725,318,revenge,1196174225 +33725,356,comedy,1243925657 +33725,356,Oscar (Best Actor),1243926041 +33725,356,sentimental,1243925641 +33725,356,Tom Hanks,1244358263 +33725,356,trite,1243925698 +33725,356,Vietnam,1243925650 +33725,356,war,1244216725 +33725,858,entertaining,1242589267 +33725,858,exciting,1242591171 +33725,858,interesting,1242584206 +33725,858,Mafia,1242589274 +33725,1089,organized crime,1246295646 +33725,1089,thriller,1246295655 +33725,1089,violence,1246295650 +33725,1089,visceral,1246295641 +33725,1193,depressing,1245020925 +33725,1288,mockumentary,1242233033 +33725,1288,satirical,1242233055 +33725,1288,witty,1242233054 +33725,1344,old,1242584248 +33725,1344,thriller,1242584228 +33725,1721,disaster,1252773571 +33725,2028,action,1245087967 +33725,2028,cinematography,1245087965 +33725,2028,historical,1245087963 +33725,2028,realistic,1245088259 +33725,2028,Tom Hanks,1245087953 +33725,2028,visceral,1245087957 +33725,2379,80s,1245088724 +33725,2379,classic,1245088720 +33725,2379,dumb,1245088728 +33725,2379,not funny,1245088743 +33725,2710,boring,1241998801 +33725,2791,AFI 100 (Movie Quotes),1244991089 +33725,2791,classic,1244991110 +33725,2791,dumb but funny,1244991092 +33725,2791,spoof,1244991116 +33725,2871,gritty,1241584727 +33725,2871,interesting,1241584762 +33725,2871,Thriller,1241584700 +33725,3036,caveman,1242265858 +33725,3036,gritty,1242265876 +33725,3036,historical,1242265899 +33725,3793,comic book,1242192577 +33725,3911,mockumentary,1242231763 +33725,3948,Ben Stiller,1272058902 +33725,4865,Atmospheric,1245988581 +33725,4865,Horror,1245988580 +33725,4865,Johnny Depp,1245988577 +33725,4865,police investigation,1245988575 +33725,4865,serial killer,1245988572 +33725,4865,Thriller,1245988719 +33725,6874,long,1246232926 +33725,7586,forceful,1244237896 +33725,7586,gritty,1244237910 +33725,7586,powerful,1244237903 +33725,7586,sweeping,1244237894 +33725,37731,Elijah Wood,1248196931 +33725,37731,gang brawls,1248196909 +33725,37731,unrealistic,1248196917 +33725,37731,weak plot,1248196939 +33725,37733,disappointing,1244301025 +33725,37733,dumb,1244301035 +33725,37733,overrated,1244301023 +33725,49651,Inspiring,1257618488 +33725,49651,life lessons,1257618512 +33725,49651,sport:boxing,1257618543 +33725,58025,escape,1244349923 +33725,58025,scenery,1244349929 +33725,58025,silly,1244349942 +33725,58162,unfunny,1268782447 +33725,58559,superhero,1222020854 +33725,59727,disturbing,1245911212 +33725,59727,narrow,1245911249 +33725,59727,tense,1245911203 +33725,59727,terrifying,1245911224 +33725,60684,boring,1250210146 +33725,60684,graphic novel,1241667804 +33725,60684,stylized,1250210201 +33725,60684,superficial,1250210159 +33725,60684,too long,1250210185 +33725,60760,bad acting,1245048747 +33725,60760,cheesy,1245048747 +33725,60760,David Duchovny,1245048748 +33725,60760,Gillian Anderson,1245048798 +33725,60760,mystery,1245048785 +33725,60760,romance,1245048772 +33725,60760,thriller,1245048790 +33725,61240,1980s,1243201120 +33725,61240,boring,1244237618 +33725,61240,coming of age,1243201139 +33725,61240,love story,1243201146 +33725,61240,swedish,1243201133 +33725,61240,vampire,1243201129 +33725,62434,dumb,1244358183 +33725,63082,cinematography,1245088527 +33725,63082,good plot,1245088568 +33725,63082,gritty,1245088535 +33725,63082,music,1245088524 +33725,63082,poverty,1245088529 +33725,64614,culture clash,1248248223 +33725,64614,friendship,1248248243 +33725,64614,gangsters,1248248230 +33725,64614,heartwarming,1248248532 +33725,64716,unique,1244575405 +33725,64716,Will Smith,1244575397 +33725,64839,sad,1241981725 +33725,64839,touching,1241981725 +33725,64957,illogical,1243925503 +33725,64957,interesting,1243925514 +33725,64957,life lessons,1243925509 +33725,64957,romance,1243925477 +33725,64957,slow,1243925486 +33725,64957,too long,1243925476 +33725,64957,touching,1243925548 +33725,64983,based on a true story,1248792834 +33725,64983,exciting,1248792842 +33725,64983,history,1248792832 +33725,64983,interesting,1248792854 +33725,65642,time travel,1240970079 +33725,66198,action,1245738351 +33725,66198,Clive Owen,1245738470 +33725,66198,Naomi Watts,1245738469 +33725,66198,realistic,1245738503 +33725,66198,slow,1245738354 +33725,67197,thought-provoking,1259582132 +33725,67408,Cartoon,1242592095 +33725,67408,funny,1242592196 +33725,67734,Jesse Eisenberg,1255322191 +33725,68159,journalism,1242180783 +33725,68159,Russell Crowe,1242177951 +33725,68237,dystopia,1266013760 +33725,68237,interesting,1266013770 +33725,68237,slow paced,1266013751 +33725,68237,space,1266013754 +33725,68358,big budget,1258961499 +33725,68358,dumb,1245444413 +33725,68358,lack of story,1258961487 +33725,68358,not believable,1245444436 +33725,68486,mandarin,1274200407 +33725,68954,cartoon,1258047723 +33725,68954,heartbreaking,1258047740 +33725,69757,inspiring,1268623688 +33725,69757,male perspective,1268623708 +33725,69757,slow,1268623683 +33725,71462,cool,1267465110 +33725,71462,eye opening,1267465501 +33725,71462,inspiring,1267465106 +33725,71462,sad,1267465183 +33725,71462,technology,1267465125 +33725,72011,George Clooney,1270579806 +33725,72011,honest,1270579833 +33725,72011,witty,1270579802 +33725,72226,Bill Murray,1276380369 +33725,72733,Matt Damon,1277822894 +33725,72733,Morgan Freeman,1277822895 +33725,72998,drama,1285006200 +33725,72998,futuristic,1285006183 +33725,72998,james cameron,1268152536 +33725,72998,long,1268152454 +33725,72998,predictable,1280767247 +33725,72998,violent,1276716045 +33725,72998,visually stunning,1268152508 +33725,74545,boring,1280875123 +33725,79242,funny,1285907778 +33725,79242,lesbians,1285907778 +33725,79242,toplist10,1285907778 +33725,79897,slow,1287514208 +33731,260,classic adventure,1436063758 +33731,260,space opera,1436063719 +33771,260,classic sci-fi,1439785349 +33780,60069,Cute!,1433201105 +33780,60069,love story,1433201119 +33780,60069,Oscar (Best Animated Feature),1433201126 +33780,60069,robot love,1433201097 +33780,60069,romance,1433201115 +33780,60069,touching,1433201121 +33780,108190,action,1433201041 +33780,108190,kate winslet,1433201048 +33780,117176,Scientist Love Story,1433200841 +33780,117176,Stephen Hawking,1433200846 +33785,36326,adventure,1420138707 +33785,36326,animation,1420138707 +33785,36326,drama,1420138707 +33785,77339,H.P Lovecraft,1437982805 +33785,89039,Brit Marling,1435735061 +33785,89039,cinematography,1435735068 +33785,91681,mystery,1435734917 +33785,91681,suspence,1435734893 +33785,91681,thriller,1435734878 +33785,109710,adventure,1420899888 +33785,109710,science fiction,1420899823 +33785,109710,video game,1420899829 +33785,109710,videogame,1420899888 +33785,140271,drama,1438972231 +33785,140271,twitter,1438972275 +33802,77658,social commentary,1408901842 +33831,39,teenager,1368731580 +33831,47,surprise ending,1368731963 +33831,47,twist,1368732076 +33831,50,plot twist,1368732040 +33831,50,surprise ending,1368731963 +33831,165,lone hero,1368731641 +33831,208,alone in the world,1368731725 +33831,318,powerful ending,1368731931 +33831,367,goofy,1368732205 +33831,368,con men,1368731869 +33831,589,man versus machine,1368732098 +33831,595,fairy tales,1368731770 +33831,653,fairy tales,1368731770 +33831,1033,unlikely friendships,1368731460 +33831,1091,silly fun,1368731487 +33831,1094,twist,1368732076 +33831,1125,series,1368731609 +33831,1129,lone hero,1368731641 +33831,1179,con men,1368731869 +33831,1197,modern fantasy,1368731827 +33831,1240,man versus machine,1368732098 +33831,1252,complicated,1368731982 +33831,1271,unlikely friendships,1368731459 +33831,1275,awesome soundtrack,1368731505 +33831,1291,series,1368731610 +33831,1374,series,1368731609 +33831,1391,off-beat comedy,1368731681 +33831,1517,goofy,1368732205 +33831,1517,silly fun,1368731487 +33831,1617,complicated,1368731982 +33831,1682,alone in the world,1368731725 +33831,1732,off-beat comedy,1368731680 +33831,1909,series,1368731610 +33831,1918,series,1368731609 +33831,1968,teenager,1368731580 +33831,2002,series,1368731609 +33831,2006,lone hero,1368731641 +33831,2105,alone in the world,1368731725 +33831,2140,alone in the world,1368731725 +33831,2291,fairy tales,1368731770 +33831,2357,road movie,1368732125 +33831,2378,silly fun,1368731487 +33831,2571,man versus machine,1368732098 +33831,2572,teenager,1368731580 +33831,2683,goofy,1368732205 +33831,2706,teenager,1368731580 +33831,2762,plot twist,1368732040 +33831,2791,goofy,1368732205 +33831,2918,teenager,1368731580 +33831,2966,road movie,1368732125 +33831,2997,modern fantasy,1368731827 +33831,3702,lone hero,1368731641 +33831,3702,road movie,1368732125 +33831,3703,lone hero,1368731641 +33831,3994,twist,1368732076 +33831,4027,great soundtrack,1202941846 +33831,4226,plot twist,1368732040 +33831,4963,con men,1368731870 +33831,4979,off-beat comedy,1368731681 +33831,5989,con men,1368731869 +33831,6365,man versus machine,1368732098 +33831,6870,powerful ending,1368731932 +33831,6934,man versus machine,1368732098 +33831,7361,complicated,1368731982 +33831,7361,short-term memory loss,1368732148 +33831,8360,fairy tales,1368731770 +33831,8783,twist ending,1213647813 +33831,8873,road movie,1368732125 +33831,47202,survivor's guilt,1303280645 +33831,48774,alone in the world,1368731725 +33831,49422,Parody,1258970725 +33831,56389,road movie,1292603957 +33831,60069,post-apocalyptic,1250925632 +33831,66665,quirky,1275942945 +33831,66665,road trip,1275942951 +33831,81229,retirement,1313506842 +33831,89470,docufiction,1336992334 +33831,89904,silent movie,1319356412 +33831,110433,espionage,1425648147 +33831,110433,love story,1425648147 +33831,110433,plot twist,1425648147 +33839,60753,prison,1222954301 +33853,260,classic sci-fi,1436114344 +33853,260,space adventure,1436114334 +33856,260,amazing,1444618463 +33856,260,j,1444618404 +33872,2023,action,1186953614 +33872,2023,italian,1186953614 +33872,2023,mafia,1186953614 +33872,7438,action,1186953594 +33872,7438,kung-fu,1186953594 +33880,32,remake of a french film,1140748572 +33880,2640,Comic Book adaption,1140727780 +33880,3693,Cult Classic,1140736989 +33880,3742,Soviet,1140736939 +33896,260,far future,1430497974 +33896,260,Science Fiction,1430497939 +33896,356,adventure,1430498144 +33896,356,responsibility,1430498144 +33896,356,tom hanks,1430498144 +33897,50,conspiracy,1440073220 +33897,50,excellent script,1440073249 +33897,50,heist,1440073223 +33897,50,mindfuck,1440073229 +33897,50,organized crime,1440073217 +33897,50,suspense,1440073214 +33897,50,twist ending,1440073211 +33897,260,sci-fi,1437249918 +33897,260,space,1437250012 +33897,356,life story,1437251428 +33897,356,love story,1437251428 +33897,356,running,1437251428 +33897,1625,plot twist,1437294573 +33897,1625,twist ending,1437294460 +33897,2605,heist,1437294854 +33897,3785,parody,1437640418 +33897,3785,stupid,1437640452 +33897,4448,heist,1437294738 +33897,4963,heist,1437294770 +33897,5266,suspenseful,1437294595 +33897,6323,suspense,1437294451 +33897,6323,twist ending,1437294450 +33897,6378,heist,1437294816 +33897,7827,twist ending,1437295616 +33897,8969,chick flick,1448650987 +33897,74458,twist ending,1437294438 +33897,91474,funny,1440072906 +33897,91474,heist,1440072903 +33897,96610,time travel,1437295340 +33897,102716,action,1438852304 +33897,102716,cars,1438852311 +33897,130634,Paul Walker,1438904301 +33897,134130,Space,1448831720 +33902,6,Al Pacino,1441879953 +33902,6,atmospheric,1441879971 +33902,6,crime,1441879964 +33902,6,great acting,1441879963 +33902,6,realistic,1441879977 +33902,6,realistic action,1441879961 +33902,6,Robert De Niro,1441879954 +33902,6,suspense,1441879959 +33902,6,tense,1441879957 +33902,110,mel gibson,1441760080 +33902,111,atmospheric,1441880457 +33902,111,classic,1441880460 +33902,111,cult film,1441880458 +33902,111,dark,1441880449 +33902,111,disturbing,1441880465 +33902,111,grim,1441880490 +33902,111,loneliness,1441880451 +33902,111,Martin Scorsese,1441880453 +33902,111,mental illness,1441880455 +33902,111,psychology,1441880494 +33902,111,robert de niro,1441880448 +33902,111,social commentary,1441880464 +33902,260,aliens,1441880512 +33902,260,classic,1441880509 +33902,260,classic sci-fi,1441880511 +33902,260,sci-fi,1441880507 +33902,260,space,1441880516 +33902,296,Black comedy,1441761028 +33902,296,crime,1441761035 +33902,296,cult film,1441761025 +33902,296,dark comedy,1441761007 +33902,296,multiple storylines,1441761022 +33902,296,nonlinear,1441761009 +33902,296,Quentin Tarantino,1441761005 +33902,296,quirky,1441761055 +33902,296,Samuel L. Jackson,1441761018 +33902,296,stylized,1441761036 +33902,296,Tarantino,1441761039 +33902,296,Uma Thurman,1441761048 +33902,296,violence,1441761024 +33902,480,action,1441761078 +33902,480,adventure,1441761073 +33902,480,based on a book,1441761086 +33902,480,cloning,1441761084 +33902,480,Dinosaurs,1441761069 +33902,480,genetics,1441761076 +33902,480,Oscar (Best Effects - Visual Effects),1441761080 +33902,480,sci-fi,1441761074 +33902,480,Steven Spielberg,1441761071 +33902,480,Suspense,1441761088 +33902,527,atmospheric,1441761107 +33902,527,classic,1441761113 +33902,527,historical,1441761119 +33902,527,history,1441761118 +33902,527,Liam Neeson,1441761111 +33902,527,Steven Spielberg,1441761116 +33902,527,thought-provoking,1441761106 +33902,628,Richard Gere,1441759989 +33902,741,anime,1441880392 +33902,741,artificial intelligence,1441880394 +33902,741,complex,1441880400 +33902,741,cyberpunk,1441880391 +33902,741,cyborgs,1441880408 +33902,741,hackers,1441880409 +33902,741,Japan,1441880398 +33902,741,philosophical,1441880395 +33902,741,philosophy,1441880413 +33902,741,sci-fi,1441880397 +33902,741,techno-evolution,1441880404 +33902,741,visually appealing,1441880405 +33902,750,black comedy,1441880424 +33902,750,British,1441880443 +33902,750,classic,1441880428 +33902,750,cold war,1441880426 +33902,750,dark comedy,1441880423 +33902,750,nuclear war,1441880430 +33902,750,Peter Sellers,1441880434 +33902,750,Quirky,1441880436 +33902,750,satire,1441880422 +33902,750,satirical,1441880432 +33902,780,apocalypse,1441761141 +33902,780,end of the world,1441761146 +33902,780,sci-fi,1441761142 +33902,780,scifi,1441761155 +33902,780,will smith,1441761134 +33902,858,Al Pacino,1441761409 +33902,858,atmospheric,1441761414 +33902,858,classic,1441761406 +33902,1073,classic,1441879703 +33902,1073,colourful,1441879711 +33902,1073,Gene Wilder,1441879698 +33902,1073,quirky,1441879718 +33902,1073,surreal,1441879700 +33902,1073,Whimsical,1441879697 +33902,1073,witty,1441879707 +33902,1080,Biblical,1441880743 +33902,1080,black comedy,1441880873 +33902,1080,British,1441880726 +33902,1080,british comedy,1441880740 +33902,1080,Christianity,1441880917 +33902,1080,comedy,1441880738 +33902,1080,controversial,1441880729 +33902,1080,hilarious,1441880737 +33902,1080,Monty Python,1441880719 +33902,1080,parody,1441880728 +33902,1080,quotable,1441880919 +33902,1080,religion,1441880732 +33902,1080,satire,1441880723 +33902,1080,satirical,1441880721 +33902,1080,Terry Gilliam,1441880725 +33902,1080,whimsical,1441880741 +33902,1200,action,1441880287 +33902,1200,Alien,1441880286 +33902,1200,aliens,1441880290 +33902,1200,androids,1441880281 +33902,1200,atmospheric,1441880277 +33902,1200,classic,1441880265 +33902,1200,horror,1441880302 +33902,1200,monster,1441880284 +33902,1200,sci-fi,1441880260 +33902,1200,Sigourney Weaver,1441880278 +33902,1200,space,1441880293 +33902,1200,suspense,1441880269 +33902,1200,tense,1441880270 +33902,1214,alien,1441880382 +33902,1214,aliens,1441880339 +33902,1214,androids,1441880374 +33902,1214,atmospheric,1441880349 +33902,1214,classic,1441880355 +33902,1214,dark,1441880366 +33902,1214,futuristic,1441880368 +33902,1214,horror,1441880347 +33902,1214,monster,1441880381 +33902,1214,Ridley Scott,1441880364 +33902,1214,sci-fi,1441880335 +33902,1214,Sigourney Weaver,1441880351 +33902,1214,space,1441880343 +33902,1214,space travel,1441880363 +33902,1214,suspense,1441880352 +33902,1214,tense,1441880357 +33902,1214,thriller,1441880369 +33902,1220,car chase,1441880646 +33902,1220,classic,1441880644 +33902,1220,comedy,1441880660 +33902,1220,great soundtrack,1441880658 +33902,1220,John Belushi,1441880654 +33902,1220,music,1441880651 +33902,1220,notable soundtrack,1441880648 +33902,1220,rhythm & blues,1441880650 +33902,1220,road movie,1441880662 +33902,1263,atmospheric,1441879584 +33902,1263,Christopher Walken,1441879574 +33902,1263,Meryl Streep,1441879587 +33902,1263,Oscar (Best Directing),1441879576 +33902,1263,Oscar (Best Picture),1441879566 +33902,1263,Oscar (Best Supporting Actor),1441879577 +33902,1263,Robert De Niro,1441879572 +33902,1263,Vietnam,1441879562 +33902,1263,Vietnam War,1441879561 +33902,1350,antichrist,1441760362 +33902,1350,apocalypse,1441760363 +33902,1350,horror,1441760367 +33902,1350,Suspense,1441760370 +33902,2403,classic,1441760212 +33902,2403,post-traumatic stress disorder,1441760207 +33902,2403,social commentary,1441760214 +33902,2403,Vietnam war veteran,1441760216 +33902,2571,action,1441761445 +33902,2571,alternate reality,1441761449 +33902,2571,artificial intelligence,1441761447 +33902,2571,atmospheric,1441761466 +33902,2571,Carrie-Anne Moss,1441761484 +33902,2571,computers,1441761464 +33902,2571,cult film,1441761469 +33902,2571,cyberpunk,1441761437 +33902,2571,dystopia,1441761436 +33902,2571,hackers,1441761473 +33902,2571,Keanu Reeves,1441761456 +33902,2571,martial arts,1441761440 +33902,2571,philosophical,1441761458 +33902,2571,philosophy,1441761439 +33902,2571,post apocalyptic,1441761459 +33902,2571,post-apocalyptic,1441761450 +33902,2571,sci-fi,1441761433 +33902,2571,stylized,1441761463 +33902,2571,surreal,1441761452 +33902,2571,thought-provoking,1441761454 +33902,2571,virtual reality,1441761434 +33902,2571,Wachowski Brothers,1441761481 +33902,2700,adult humor,1441760320 +33902,2700,censorship,1441760329 +33902,2700,controversial,1441760342 +33902,2700,crude humor,1441760344 +33902,2700,free speech,1441760324 +33902,2700,funny,1441760333 +33902,2700,irreverent,1441760335 +33902,2700,musical,1441760327 +33902,2700,parody,1441760325 +33902,2700,quirky,1441760331 +33902,2700,satire,1441760321 +33902,2700,satirical,1441760337 +33902,2700,south park,1441760340 +33902,2788,British,1441880677 +33902,2788,British Humor,1441880680 +33902,2788,monty python,1441880674 +33902,2788,sketch comedy,1441880675 +33902,2947,james bond,1441879824 +33902,2959,action,1441880965 +33902,2959,atmospheric,1441880952 +33902,2959,Brad Pitt,1441880933 +33902,2959,classic,1441880964 +33902,2959,complicated,1441880975 +33902,2959,crime,1441880973 +33902,2959,dark,1441880967 +33902,2959,dark comedy,1441880938 +33902,2959,disturbing,1441880949 +33902,2959,mental illness,1441880947 +33902,2959,mindfuck,1441880962 +33902,2959,philosophical,1441880957 +33902,2959,philosophy,1441880945 +33902,2959,psychological,1441880954 +33902,2959,psychology,1441880937 +33902,2959,quirky,1441880959 +33902,2959,satirical,1441880960 +33902,2959,social commentary,1441880940 +33902,2959,stylized,1441880982 +33902,2959,surreal,1441880942 +33902,2959,thought-provoking,1441880950 +33902,2959,twist ending,1441880931 +33902,3421,classic,1441879991 +33902,3421,comedy,1441879983 +33902,3421,Funny,1441879992 +33902,3578,Epic,1441760108 +33902,3578,history,1441760132 +33902,3578,strong score,1441760114 +33902,4262,Al Pacino,1441879438 +33902,4262,atmospheric,1441879447 +33902,4262,classic,1441879444 +33902,4262,drugs,1441879474 +33902,4262,mafia,1441879472 +33902,4262,organized crime,1441879439 +33902,4262,violence,1441879456 +33902,5010,brutal,1441760277 +33902,5010,factual,1441760262 +33902,5010,realistic,1441760290 +33902,5010,true story,1441760287 +33902,5064,revenge,1441879943 +33902,5618,adventure,1441760628 +33902,5618,alternate reality,1441760605 +33902,5618,animation,1441760612 +33902,5618,anime,1441760599 +33902,5618,atmospheric,1441760606 +33902,5618,beautiful,1441760626 +33902,5618,dreamlike,1441760603 +33902,5618,environmental,1441760637 +33902,5618,imagination,1441760635 +33902,5618,imaginative,1441760632 +33902,5618,surreal,1441760609 +33902,5618,whimsical,1441760607 +33902,5785,crazy,1441760575 +33902,5785,Funny,1441760586 +33902,5785,stupid,1441760573 +33902,6365,action,1441880052 +33902,6365,alternate reality,1441880017 +33902,6365,artificial intelligence,1441880032 +33902,6365,cyberpunk,1441880015 +33902,6365,dystopia,1441880020 +33902,6365,existentialism,1441880046 +33902,6365,future,1441880044 +33902,6365,Keanu Reeves,1441880030 +33902,6365,martial arts,1441880029 +33902,6365,Post apocalyptic,1441880025 +33902,6365,post-apocalyptic,1441880018 +33902,6365,sci-fi,1441880023 +33902,6365,technology,1441880037 +33902,6365,thought-provoking,1441880021 +33902,6365,virtual reality,1441880014 +33902,6365,Wachowski Brothers,1441880039 +33902,6807,black comedy,1441880707 +33902,6807,British,1441880689 +33902,6807,british comedy,1441880686 +33902,6807,classic,1441880701 +33902,6807,comedy,1441880697 +33902,6807,controversial,1441880693 +33902,6807,hilarious,1441880704 +33902,6807,John Cleese,1441880702 +33902,6807,Monty Python,1441880685 +33902,6807,Philosophy,1441880694 +33902,6807,ridiculous,1441880695 +33902,6807,satire,1441880688 +33902,6807,silly,1441880705 +33902,6807,sketch comedy,1441880709 +33902,6807,Terry Gilliam,1441880699 +33902,6874,action,1441879358 +33902,6874,assassin,1441879360 +33902,6874,Japan,1441879344 +33902,6874,kung fu,1441879350 +33902,6874,martial arts,1441879337 +33902,6874,masterpiece,1441879375 +33902,6874,nonlinear,1441879339 +33902,6874,Quentin Tarantino,1441879332 +33902,6874,quirky,1441879346 +33902,6874,revenge,1441879366 +33902,6874,stylized,1441879352 +33902,6874,Uma Thurman,1441879336 +33902,6874,visually appealing,1441879355 +33902,6942,boring,1441761977 +33902,6942,vapid,1441761962 +33902,7022,brutal,1441760546 +33902,7022,controversial,1441760542 +33902,7022,dystopia,1441760545 +33902,7022,Japan,1441760540 +33902,7022,satire,1441760548 +33902,7022,social commentary,1441760557 +33902,7022,survival,1441760538 +33902,7022,violence,1441760561 +33902,7318,bible,1441762062 +33902,7318,Christian,1441762118 +33902,7318,Christianity,1441762122 +33902,7318,jesus,1441762035 +33902,7318,Jesus Christ,1441762114 +33902,7318,magic,1441762078 +33902,7318,Mel Gibson,1441762066 +33902,7318,overrated,1441762045 +33902,7318,propaganda,1441762124 +33902,7318,religion,1441762120 +33902,7318,Sadistic,1441762105 +33902,7318,Surprise Octopus,1441762150 +33902,7318,torture,1441762054 +33902,7318,way way way overrated,1441762089 +33902,7438,action,1441760917 +33902,7438,atmospheric,1441760915 +33902,7438,Japan,1441760937 +33902,7438,kung fu,1441760921 +33902,7438,martial arts,1441760911 +33902,7438,Quentin Tarantino,1441760908 +33902,7438,quirky,1441760926 +33902,7438,revenge,1441760909 +33902,7438,stylized,1441760912 +33902,7438,tarantino,1441760928 +33902,7438,twist ending,1441760938 +33902,7438,Uma Thurman,1441760924 +33902,7438,violence,1441760914 +33902,7438,visually appealing,1441760931 +33902,7445,Christopher Walken,1441879314 +33902,7445,Dakota Fanning,1441879321 +33902,7445,Denzel Washington,1441879312 +33902,7445,redemption,1441879304 +33902,7445,revenge,1441879326 +33902,7482,Bruce Lee,1441760867 +33902,7482,kung fu,1441760871 +33902,7482,martial arts,1441760869 +33902,7502,emotional,1441879852 +33902,7502,historical,1441760466 +33902,7502,military,1441879864 +33902,7502,realistic,1441760471 +33902,7502,steven spielberg,1441879842 +33902,7502,though provoking,1441760455 +33902,7502,touching,1441760457 +33902,7502,true story,1441760470 +33902,7502,war,1441879865 +33902,7502,World War II,1441879862 +33902,8361,apocalypse,1441762214 +33902,8361,climate change,1441762197 +33902,8361,Environmental,1441762203 +33902,8361,Post apocalyptic,1441762212 +33902,8361,post-apocalyptic,1441762210 +33902,8361,propaganda,1441762199 +33902,8361,unrealistic,1441762206 +33902,8861,Milla Jovovich,1441879535 +33902,8861,Post apocalyptic,1441879544 +33902,8861,post-apocalyptic,1441879541 +33902,8861,virus,1441879542 +33902,8861,zombies,1441879545 +33902,8874,black comedy,1441879396 +33902,8874,British,1441879403 +33902,8874,british comedy,1441879401 +33902,8874,comedy,1441879414 +33902,8874,dark comedy,1441879407 +33902,8874,dark humor,1441879406 +33902,8874,hilarious,1441879413 +33902,8874,parody,1441879399 +33902,8874,satire,1441879417 +33902,8874,Simon Pegg,1441879398 +33902,8874,spoof,1441879404 +33902,8874,zombie,1441879431 +33902,8874,zombies,1441879429 +33902,8917,hilarious,1441760890 +33902,8917,irreverent,1441760897 +33902,8917,political commentary,1441760888 +33902,8917,politics,1441760899 +33902,8917,satire,1441760886 +33902,26444,douglas adams,1441879648 +33902,26444,sci-fi,1441879662 +33902,26444,whimsical,1441879661 +33902,26444,witty,1441879653 +33902,27156,anime,1441760649 +33902,27156,apocalypse,1441760655 +33902,27156,end of the world,1441760658 +33902,27156,epic,1441760660 +33902,27156,Hideaki Anno,1441760651 +33902,27156,mecha,1441760656 +33902,27156,mental illness,1441760653 +33902,27156,psychology,1441760647 +33902,56174,apocalypse,1441762234 +33902,56174,horror,1441762272 +33902,56174,Post apocalyptic,1441762242 +33902,56174,post-apocalyptic,1441762240 +33902,56174,religion,1441762264 +33902,56174,sci-fi,1441762236 +33902,56174,survival,1441762232 +33902,56174,Will Smith,1441762228 +33902,58559,action,1441879780 +33902,58559,Atmospheric,1441879778 +33902,58559,dark,1441879776 +33902,58559,Gary Oldman,1441879811 +33902,58559,gritty,1441879808 +33902,58559,Heath Ledger,1441879772 +33902,58559,Michael Caine,1441879789 +33902,58559,Morgan Freeman,1441879782 +33902,58559,psychology,1441879784 +33902,58559,stylized,1441879803 +33902,58559,thriller,1441879792 +33902,63072,dark,1441879628 +33902,63072,dystopia,1441879609 +33902,63072,post-apocalyptic,1441879607 +33902,63072,survival,1441879613 +33902,63072,Viggo Mortensen,1441879611 +33902,65514,action,1441760843 +33902,65514,kung fu,1441760842 +33902,65514,martial arts,1441760840 +33902,70533,Hideaki Anno,1441880554 +33902,71379,atmospheric,1441762171 +33902,71379,bad acting,1441762179 +33902,71379,Boring,1441762168 +33902,71379,demon possession,1441762186 +33902,71379,over-hyped,1441762166 +33902,77800,controversial,1441879689 +33902,77800,dark comedy,1441879682 +33902,77800,funny,1441879683 +33902,77800,Satire,1441879687 +33902,79008,crude humor,1441760718 +33902,79008,irreverent,1441760720 +33902,94864,aliens,1441762300 +33902,94864,Idris Elba,1441762355 +33902,94864,plot hole,1441762282 +33902,94864,predictable,1441762292 +33902,94864,pseudo-philosophical,1441762337 +33902,94864,religion,1441762283 +33902,94864,religious overtones,1441762315 +33902,94864,sci-fi,1441762312 +33902,94864,scifi,1441762298 +33902,94864,sequel bait,1441762349 +33902,96079,spies,1441879891 +33902,108583,british,1441760516 +33902,108583,comedy,1441760515 +33902,108583,John Cleese,1441760519 +33902,108583,witty,1441760527 +33902,108979,anime,1441760483 +33902,108979,jazz,1441760491 +33902,108979,sci-fi,1441760493 +33902,108979,space western,1441760497 +33902,108979,Yoko Kanno,1441760503 +33902,112183,alter ego,1441879914 +33902,112183,dark,1441879912 +33902,112183,emma stone,1441879926 +33902,112183,one shot,1441879931 +33902,112183,psychological,1441879910 +33902,112183,satire,1441879908 +33902,112183,single shot,1441879904 +33902,112183,smart,1441879923 +33902,112183,surreal,1441879918 +33902,112290,boring,1441761882 +33902,112290,no plot,1441761867 +33902,112290,overrated,1441761893 +33902,112290,pseudo-intelligent,1441761913 +33902,112852,childish,1441760183 +33902,112852,overrated,1441760168 +33902,122882,non-stop,1453874723 +33902,122882,sci-fi,1453874728 +33902,127152,scientology,1445831772 +33929,260,Popular,1436248110 +33930,7282,comedy,1424978508 +33930,7282,drama,1424978508 +33930,7282,musicians,1424978508 +33945,434,Clint Eastwood,1170492549 +33960,50,fun,1427538766 +33960,50,good actors,1427538766 +33960,50,smart writing,1427538766 +33960,4993,epic adventure,1427552256 +33960,4993,fantasy,1427552249 +33960,4993,tolkien,1427552268 +33960,5952,epic adventure,1427552309 +33960,5952,fantasy world,1427552300 +33960,5952,tolkien,1427552293 +33960,7143,history,1427552357 +33960,7143,Japan,1427552353 +33960,7143,samurai,1427552351 +33975,48780,magic,1199392541 +34012,97,french,1440916843 +34012,260,classic sci-fi,1440509494 +34012,260,cult classic,1440509483 +34012,1036,blockbuster,1440916884 +34012,92259,French,1440916854 +34018,260,lazer,1435828925 +34018,260,Star Wars,1435828914 +34022,260,classic,1433462096 +34022,260,good vs evil,1433462037 +34022,260,sci-fi,1433462063 +34050,77658,Carl Sagan,1434217807 +34050,77658,earnest,1434217818 +34050,77658,evolution,1434217833 +34062,1200,action,1335445820 +34062,1200,aliens,1335445829 +34062,1200,atmospheric,1335445817 +34062,1200,classic,1335445851 +34062,1200,horror,1335445848 +34062,1200,Oscar (Best Effects - Visual Effects),1335445854 +34062,1200,Saturn Award (Best Science Fiction Film),1335445837 +34062,1200,sci-fi,1335445832 +34062,1200,sequel,1335445857 +34062,1200,space,1335445833 +34062,1200,SPACE TRAVEL,1335445835 +34062,1200,tense,1335445859 +34062,1200,violent,1335445863 +34062,2761,1950s,1335599743 +34062,2761,adapted from:book,1335599740 +34062,2761,animation,1335599746 +34062,2761,emotional,1335599731 +34062,2761,Jennifer Aniston,1335599753 +34062,2761,redemption,1335599757 +34062,2761,robot,1335599735 +34062,2761,robots,1335599736 +34062,5952,adapted from:book,1335599702 +34062,5952,based on a book,1335599678 +34062,5952,great soundtrack,1335599715 +34062,5952,high fantasy,1335599687 +34062,5952,multiple storylines,1335599711 +34062,5952,Oscar (Best Effects - Visual Effects),1335599695 +34062,34405,adventure,1335599660 +34062,34405,aliens,1335599648 +34062,34405,based on a TV show,1335599646 +34062,34405,based on tv series,1335599654 +34062,34405,black comedy,1335599623 +34062,34405,dystopia,1335599640 +34062,34405,quirky,1335599628 +34062,34405,sci-fi,1335599630 +34062,34405,space,1335599633 +34062,34405,witty,1335599637 +34062,38061,black comedy,1335600065 +34062,38061,caper,1335600069 +34062,38061,clever,1335600071 +34062,38061,funny,1335600074 +34062,38061,Nudity (Topless),1335600078 +34062,54286,action,1335599818 +34062,54286,espionage,1335599813 +34062,54286,spy thriller,1335599826 +34062,54286,twist ending,1335599823 +34062,66934,anti-hero,1335599785 +34062,66934,great soundtrack,1335599800 +34062,66934,musical,1335599780 +34078,4226,black and white,1433813502 +34078,4226,nonlinear,1433813480 +34078,4226,psychology,1433813484 +34128,148418,bad sci-fi,1449863008 +34128,148488,bad cgi,1449644871 +34128,148488,bad sci-fi,1449644882 +34133,318,classic,1444528144 +34136,7361,forgetting,1225572127 +34156,1234,classic,1442419983 +34156,1234,surprise ending,1442419986 +34156,1234,twist ending,1442419981 +34180,30749,makes me think,1439946507 +34180,30749,real,1439946497 +34180,116797,fun,1439946467 +34180,116797,good,1439946465 +34200,39768,funny,1421612111 +34200,39768,long,1421612111 +34200,39768,too much comic relief,1421612111 +34226,260,drama,1439295525 +34226,260,Science Fiction,1439295536 +34268,2437,prison,1213781227 +34268,5872,torture,1213781565 +34268,33646,Prison,1213781262 +34268,44191,torture,1213781680 +34275,1307,romantic,1453373322 +34275,4896,Fiction,1453373341 +34280,48516,Leonardo DiCaprio,1448025571 +34280,48516,Matt Damon,1448025578 +34284,2959,dark comedy,1373120549 +34284,2959,twist ending,1373120541 +34284,3499,Stephen King,1373120817 +34284,5618,atmospheric,1373119497 +34284,5618,Hayao Miyazaki,1373119492 +34284,5971,Cute,1373119707 +34284,5971,feel good movie,1373119711 +34284,7347,Johnny Depp,1373120688 +34284,7347,psychological,1373120700 +34284,7347,split personality,1373120701 +34284,34532,Twist Ending,1373120733 +34284,66097,dark,1373119940 +34284,74458,atmospheric,1373120573 +34284,74458,psychological,1373120580 +34284,74458,twist ending,1373120578 +34295,6218,high school,1285156376 +34301,260,scifi,1435324287 +34301,260,space western,1435324299 +34334,2804,leg lamp,1292050653 +34334,65588,fantasy,1294227478 +34334,65588,gaming,1294227480 +34334,65588,nerds,1294227483 +34334,65588,niche humor,1294227486 +34334,66934,comedy,1289173456 +34334,66934,joss whedon,1289173456 +34334,66934,musical,1289173423 +34334,66934,Neil Patrick Harris,1289173423 +34334,71057,dark fantasy,1291429373 +34334,71057,dystopia,1291429376 +34334,71057,post-apocalyptic,1291429377 +34334,71057,visually appealing,1291429380 +34334,71468,dark and wonderful,1289173334 +34334,71468,dreams,1289173273 +34334,71468,indie,1289173299 +34334,71468,surreal,1289173266 +34334,71468,visually appealing,1289173353 +34341,260,Boring,1444091305 +34341,260,Overrated,1444091312 +34360,44694,mother-daughter relationship,1427754908 +34360,44694,secrets,1427754912 +34360,81591,music,1427583029 +34360,81591,obsession,1427583017 +34360,116797,code breaking,1427754253 +34360,116797,Computers,1427754237 +34360,116797,cryptography,1427754233 +34360,116797,mathematics,1427754256 +34360,116797,World War II,1427754240 +34361,318,Must Watch,1431512765 +34361,318,To Watch,1431512795 +34361,527,Must Watch,1431512972 +34361,2571,Any Time Watch,1431513400 +34361,2571,Must watch,1431513385 +34381,1078,smart criticism,1339976079 +34381,1136,intelligent,1339977995 +34381,1777,80's fashion,1340079422 +34381,1777,80's music,1340079340 +34381,1777,funny,1340079391 +34381,2357,monotonous,1339976414 +34381,2841,good plot,1339908410 +34381,2841,surprising,1339909308 +34381,2841,surprisingly good,1339909330 +34381,3052,inconsistent,1339975623 +34381,3052,not funny,1339975623 +34381,3996,flying chinese,1340594741 +34381,3996,too many strings,1340594970 +34381,5314,boring,1339977900 +34381,6377,touching,1339978209 +34381,6869,inconsistent,1339976806 +34381,6869,poor acting,1339976821 +34381,6869,poor plot,1339976816 +34381,6874,confusing parody,1339975906 +34381,6879,biased,1339944469 +34381,6879,disappointing,1339944310 +34381,6879,illogical,1339944275 +34381,6879,leftist,1339944222 +34381,6879,politically correct,1339977506 +34381,6879,poor adaptation,1339944200 +34381,7438,confusing parody,1339975953 +34381,7459,inaccurate,1339976910 +34381,7459,inconsistent,1339976884 +34381,7459,poor adaptation,1339976877 +34381,8798,poor ending,1339944650 +34381,8873,false,1340595339 +34381,8873,left wing,1340595312 +34381,8873,leftist,1340595312 +34381,8873,stupid,1340595297 +34381,8873,useless,1340595302 +34381,8917,criticism,1339976160 +34381,8917,hilarious,1339976133 +34381,8917,soundtrack,1339976142 +34381,27797,adventure,1339976977 +34381,27797,exciting,1339977083 +34381,27797,funny,1339976949 +34381,27797,Lazaro Ramos,1339977022 +34381,27797,Lázaro Ramos,1339977004 +34381,40732,character development,1340592999 +34381,40732,pointless,1340592841 +34381,40732,zombies,1340592961 +34381,42011,hilarious,1339978125 +34381,42011,Jim Carrey,1339978129 +34381,44555,amazing plot,1339978051 +34381,44555,communism,1339978079 +34381,47099,beautiful,1339951014 +34381,47099,example,1339951115 +34381,47099,overcoming,1339951087 +34381,47099,willpower,1339951112 +34381,48394,communist,1340593297 +34381,48394,inaccurate,1340593454 +34381,48394,inconsistent,1340593462 +34381,48394,left wing,1340593079 +34381,48394,leftist,1340593066 +34381,48394,malicious,1340593423 +34381,48394,manicheaist,1340593174 +34381,48394,manipulative,1340593443 +34381,48520,adventure-ish,1341125959 +34381,51662,badass,1340595043 +34381,51662,moral,1340595064 +34381,53953,atmospheric,1339909199 +34381,53953,confusing,1339909226 +34381,53953,disappointing,1339909251 +34381,53953,disappointing ending,1339909251 +34381,53953,lame ending,1339908289 +34381,53953,loose ends,1339908516 +34381,54171,atmospheric,1340593540 +34381,54171,atmospherically beautiful,1340593540 +34381,54171,beautiful,1340593501 +34381,54171,scenery,1340593515 +34381,55721,accurate,1339976469 +34381,55721,catchy lines,1339976598 +34381,55726,demagogue,1339977133 +34381,57044,90s,1339977371 +34381,57044,biography,1339977441 +34381,57044,family ties,1339977326 +34381,57044,father-son relationship,1339977309 +34381,57044,funny,1339977287 +34381,57044,music,1339977450 +34381,57044,overcoming obstacles,1339977339 +34381,57044,touching,1339977289 +34381,57368,feeling of helplessness,1339909891 +34381,57368,simulation,1339910040 +34381,57776,glamorization,1339977848 +34381,57776,nutcase,1339977879 +34381,61994,fun,1339977232 +34381,61994,good pace,1339977225 +34381,61994,hilarious,1339977192 +34381,62213,Alessandra Negrini,1339977726 +34381,62213,not funny,1339977627 +34381,62213,poor plot,1339977708 +34381,64997,bad plot,1339908791 +34381,64997,loose ends,1339908773 +34381,65230,sad but good,1339978242 +34381,65230,touching,1339978251 +34381,68157,dead nazis,1339975787 +34381,68157,hilarious,1339975787 +34381,68157,polyglot,1339975695 +34381,79132,dreams,1339910185 +34381,79132,familiar experience,1339910141 +34381,79132,interesting,1339910068 +34381,79132,lucid dreaming,1339910200 +34381,79428,insane,1341126028 +34381,79428,nonsense,1341126044 +34381,85342,accurate,1339976498 +34381,85997,hilarious,1340594605 +34381,85997,LOL,1340594592 +34381,88163,intelligent,1339978304 +34381,92422,atmospheric,1339909398 +34381,92422,very scary,1339909424 +34381,93838,awesome,1345990314 +34381,93838,martial arts,1346000987 +34381,93838,silat,1346000989 +34381,94266,depressing,1345990151 +34381,94266,not funny,1346000760 +34381,94266,too long,1345990136 +34381,133749,broken English,1446177095 +34381,133749,do not watch,1446177083 +34381,133749,fake marketing,1446177081 +34381,133749,waste of time,1446177079 +34381,136598,fun,1447453937 +34381,136598,funny,1447453947 +34399,364,animation,1335395419 +34399,364,Rowan Atkinson,1335395425 +34399,480,based on a book,1335395452 +34399,480,dinosaurs,1335395449 +34399,480,genetics,1335395464 +34399,480,science,1335395459 +34399,480,Steven Spielberg,1335395457 +34399,750,black and white,1335401680 +34399,750,black comedy,1335401658 +34399,750,British,1335401662 +34399,750,cold war,1335401660 +34399,750,dark comedy,1335401656 +34399,750,military,1335401676 +34399,750,nuclear war,1335401653 +34399,750,Quirky,1335401655 +34399,750,satire,1335401665 +34399,750,satirical,1335401667 +34399,750,US president,1335401670 +34399,1079,black comedy,1335401697 +34399,1079,dark comedy,1335401700 +34399,1079,John Cleese,1335401693 +34399,1079,quirky,1335401695 +34399,1080,British,1335401495 +34399,1080,british comedy,1335401510 +34399,1080,controversial,1335401508 +34399,1080,mockumentary,1335401499 +34399,1080,Monty Python,1335401497 +34399,1080,satire,1335401501 +34399,1080,Terry Gilliam,1335401503 +34399,1136,British,1335401519 +34399,1136,british comedy,1335401529 +34399,1136,medieval,1335401525 +34399,1136,Monty Python,1335401521 +34399,1136,satire,1335401522 +34399,2542,black comedy,1335401473 +34399,2542,British,1335401467 +34399,2542,dark comedy,1335401469 +34399,2542,england,1335401487 +34399,2542,marijuana,1335401479 +34399,2542,Nudity (Topless),1335401484 +34399,2542,poker,1335401477 +34399,6502,British,1335401444 +34399,6502,Post apocalyptic,1335401447 +34399,6502,post-apocalyptic,1335401448 +34399,6502,sci-fi,1335401454 +34399,6502,survival,1335401450 +34399,6502,Zombie,1335401452 +34399,6539,adventure,1335395368 +34399,6539,Johnny Depp,1335395381 +34399,6539,pirates,1335395371 +34399,6539,Pixar,1335395373 +34399,6539,Suspense,1335395377 +34399,6539,Zombies,1335395378 +34399,6807,british comedy,1335401541 +34399,6807,controversial,1335401543 +34399,6807,John Cleese,1335401539 +34399,6807,Monty Python,1335401537 +34399,6942,british,1335401364 +34399,6942,England,1335401378 +34399,6942,multiple storylines,1335401369 +34399,6942,Nudity (Topless - Notable),1335401370 +34399,6942,Nudity (Topless),1335401373 +34399,8874,black comedy,1335401555 +34399,8874,break-up,1335401560 +34399,8874,British,1335401559 +34399,8874,british comedy,1335401557 +34399,8874,england,1335401563 +34399,8874,gore,1335401566 +34399,8874,Simon Pegg,1335401553 +34399,8874,zombie,1335401569 +34399,51255,black comedy,1335401714 +34399,51255,British,1335401716 +34399,51255,british comedy,1335401712 +34399,51255,dystopia,1335401718 +34399,51255,parody,1335401710 +34399,51255,Simon Pegg,1335401709 +34399,72998,culture clash,1335395346 +34399,72998,romance,1335395340 +34399,72998,sci-fi,1335395335 +34399,93840,ancient gods,1335395295 +34399,93840,clever,1335395290 +34399,93840,funny,1335395285 +34399,93840,original,1335395283 +34399,93840,original plot,1335395288 +34408,260,classic,1440490229 +34408,260,sci-fi,1440490214 +34412,92259,feel good movie,1429669925 +34412,92259,IMDB Top 250,1429670280 +34412,92259,touching,1429669443 +34424,110,historical,1424032787 +34424,110,mel gibson,1424032775 +34424,110,revenge,1424032779 +34424,110,Scotland,1424032767 +34424,1240,Arnold Schwarzenegger,1424032681 +34424,1240,robots,1424032689 +34424,1240,time travel,1424032693 +34424,1610,russian,1424032635 +34424,1610,sean connery,1424032645 +34424,1610,submarine,1424032660 +34424,3578,action,1424032741 +34424,3578,Rome,1424032720 +34424,3578,Russell Crowe,1424032725 +34424,91529,Batman,1424032548 +34433,260,classic,1438092767 +34433,260,George Lucas,1438092780 +34453,296,action,1328802257 +34453,296,Bruce Willis,1328802286 +34453,296,comedy,1328802262 +34453,296,cult film,1328802275 +34453,296,dark comedy,1328802273 +34453,296,drugs,1328802288 +34453,296,nonlinear,1328802290 +34453,296,organized crime,1328802270 +34453,296,Quentin Tarantino,1328802263 +34453,296,Samuel L. Jackson,1328802266 +34453,296,violence,1328802292 +34453,7502,military,1328882825 +34453,7502,soilders,1328882837 +34453,7502,true story,1328882821 +34453,7502,war,1328882797 +34453,7502,World War II,1328882789 +34453,79132,action,1329931105 +34453,79132,fantasy,1329931120 +34453,79132,Leonardo DiCaprio,1329931099 +34453,79132,philosophy,1329931112 +34453,79132,sci-fi,1329931108 +34453,89840,Assassins,1328802219 +34453,89840,Clive Owen,1328802227 +34453,89840,Jason Statham,1328802214 +34453,91630,action,1328802336 +34453,91630,Brad Bird,1328802344 +34453,91630,spy team,1328802330 +34453,91630,thriller,1328802352 +34453,91630,Tom Cruise,1328802355 +34453,91630,top ten,1328802357 +34482,1687,Bruce Willis,1174720004 +34482,2961,Bruce Willis,1174720134 +34482,8644,Will Smith,1175890361 +34482,45062,Michael Douglas,1174674589 +34541,1917,apocalypse,1243728723 +34541,1917,Billy Bob Thornton,1243728738 +34541,1917,Bruce Willis,1243728728 +34541,1917,humorous,1243728732 +34541,59315,arms dealer,1243728027 +34541,59315,military,1243728015 +34541,59315,Robert Downey Jr,1243728008 +34541,59315,weapons,1243728029 +34559,33794,Christopher Nolan,1448194672 +34559,79132,Christopher Nolan,1448194759 +34578,593,pyschology,1430336023 +34578,593,suspense,1430336023 +34578,593,thiller,1430336023 +34601,1923,dumbest movie ever,1137123135 +34624,260,action,1444266977 +34624,260,classic sci-fi,1444266988 +34624,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1444266970 +34655,260,classic,1435087105 +34655,260,sci-fi,1435087083 +34695,260,Science Fiction,1440370117 +34744,260,epic adventure,1433460974 +34744,260,scifi cult,1433460968 +34756,181,no rec?,1202245780 +34756,393,no rec?,1202686413 +34756,394,less than 300 ratings,1203430337 +34756,395,less than 300 ratings,1203433417 +34756,503,less than 300 ratings,1203430435 +34756,629,less than 300 ratings,1203495958 +34756,666,less than 300 ratings,1203432126 +34756,729,less than 300 ratings,1203431034 +34756,787,less than 300 ratings,1203496013 +34756,810,no rec?,1202686470 +34756,1095,Business,1206686480 +34756,1095,Real Estate,1206686522 +34756,1389,no rec?,1202686487 +34756,1509,less than 300 ratings,1203430926 +34756,1519,less than 300 ratings,1203432159 +34756,1531,less than 300 ratings,1203435165 +34756,1556,no rec?,1202245796 +34756,1656,less than 300 ratings,1203430131 +34756,1672,Law,1206687896 +34756,1675,less than 300 ratings,1203430151 +34756,1707,no rec?,1202686536 +34756,1749,less than 300 ratings,1203430137 +34756,1760,no rec?,1202686566 +34756,1765,less than 300 ratings,1203453400 +34756,1807,less than 300 ratings,1203435232 +34756,1815,less than 300 ratings,1203433406 +34756,2304,less than 300 ratings,1203430033 +34756,2318,What is Happiness?,1206687953 +34756,2358,less than 300 ratings,1203430124 +34756,2382,no rec?,1202686519 +34756,2383,no rec?,1202686496 +34756,2391,What is Happiness?,1206686780 +34756,2538,less than 300 ratings,1203453494 +34756,2555,no rec?,1203498464 +34756,2627,less than 300 ratings,1203431269 +34756,2643,no rec?,1202245801 +34756,2675,less than 300 ratings,1203430156 +34756,2695,less than 300 ratings,1203430308 +34756,2807,no rec?,1202686281 +34756,2864,less than 300 ratings,1203433215 +34756,2984,less than 300 ratings,1203430323 +34756,2994,less than 300 ratings,1204786496 +34756,3020,going postal,1206688061 +34756,3047,less than 300 ratings,1203432038 +34756,3054,no rec?,1202686276 +34756,3065,less than 300 ratings,1203433669 +34756,3121,less than 300 ratings,1203431987 +34756,3147,What is Happiness?,1206687590 +34756,3154,less than 300 ratings,1203435225 +34756,3207,less than 300 ratings,1203430938 +34756,3268,no rec?,1202686419 +34756,3303,less than 300 ratings,1203431192 +34756,3318,less than 300 ratings,1203430456 +34756,3535,business,1206688043 +34756,3535,going postal,1206688031 +34756,3564,no rec?,1202686269 +34756,3586,less than 300 ratings,1203432321 +34756,3593,no rec?,1202702892 +34756,3601,less than 300 ratings,1203433434 +34756,3607,less than 300 ratings,1203433662 +34756,3644,less than 300 ratings,1203432526 +34756,3845,less than 300 ratings,1203432045 +34756,3880,less than 300 ratings,1203430077 +34756,3881,less than 300 ratings,1203435100 +34756,3887,less than 300 ratings,1203433820 +34756,3905,less than 300 ratings,1203432064 +34756,4022,What is Happiness?,1206687428 +34756,4088,less than 300 ratings,1203433452 +34756,4108,less than 300 ratings,1203430473 +34756,4114,less than 300 ratings,1203432411 +34756,4124,no rec?,1203235882 +34756,4171,less than 300 ratings,1203435940 +34756,4173,less than 300 ratings,1203435930 +34756,4243,less than 300 ratings,1203430493 +34756,4303,less than 300 ratings,1203430159 +34756,4314,less than 300 ratings,1203430348 +34756,4348,less than 300 ratings,1203433810 +34756,4363,less than 300 ratings,1203434022 +34756,4451,less than 300 ratings,1203431073 +34756,4458,less than 300 ratings,1203431341 +34756,4491,less than 300 ratings,1204271428 +34756,4796,less than 300 ratings,1203430039 +34756,4804,less than 300 ratings,1203430022 +34756,4805,less than 300 ratings,1203431266 +34756,4824,less than 300 ratings,1203431308 +34756,4851,less than 300 ratings,1203433849 +34756,4881,What is Happiness?,1206687730 +34756,4883,less than 300 ratings,1204271520 +34756,4960,less than 300 ratings,1203430331 +34756,5038,less than 300 ratings,1203430062 +34756,5130,less than 300 ratings,1203433363 +34756,5158,less than 300 ratings,1203430476 +34756,5180,less than 300 ratings,1204786483 +34756,5196,less than 300 ratings,1203433728 +34756,5293,Revenge,1206687836 +34756,5328,less than 300 ratings,1203430020 +34756,5340,less than 300 ratings,1203430328 +34756,5384,less than 300 ratings,1203431992 +34756,5386,less than 300 ratings,1203433651 +34756,5395,less than 300 ratings,1203431188 +34756,5405,less than 300 ratings,1203433424 +34756,5436,less than 300 ratings,1203431003 +34756,5452,no rec?,1202686438 +34756,5457,less than 300 ratings,1203430121 +34756,5464,Revenge,1206687756 +34756,5593,less than 300 ratings,1203432146 +34756,5600,less than 300 ratings,1203430670 +34756,5635,less than 300 ratings,1203432335 +34756,5751,less than 300 ratings,1203433367 +34756,5762,less than 300 ratings,1203432324 +34756,5770,less than 300 ratings,1203431357 +34756,5828,less than 300 ratings,1203433072 +34756,5868,less than 300 ratings,1203432457 +34756,5911,less than 300 ratings,1203432460 +34756,5963,less than 300 ratings,1203453473 +34756,5978,less than 300 ratings,1203433138 +34756,6022,less than 300 ratings,1203435159 +34756,6052,less than 300 ratings,1203433342 +34756,6066,less than 300 ratings,1203430093 +34756,6070,less than 300 ratings,1203432378 +34756,6073,less than 300 ratings,1203433836 +34756,6077,less than 300 ratings,1203432418 +34756,6105,less than 300 ratings,1204271490 +34756,6134,less than 300 ratings,1203430372 +34756,6148,less than 300 ratings,1203433807 +34756,6173,less than 300 ratings,1203431363 +34756,6182,less than 300 ratings,1203431344 +34756,6206,less than 300 ratings,1203433595 +34756,6236,less than 300 ratings,1203432035 +34756,6272,less than 300 ratings,1203433402 +34756,6276,less than 300 ratings,1203432464 +34756,6277,less than 300 ratings,1203433802 +34756,6292,less than 300 ratings,1203453398 +34756,6329,less than 300 ratings,1203431053 +34756,6354,less than 300 ratings,1203435432 +34756,6366,less than 300 ratings,1203431273 +34756,6394,less than 300 ratings,1203433176 +34756,6395,less than 300 ratings,1203430059 +34756,6402,less than 300 ratings,1203453408 +34756,6403,less than 300 ratings,1203432454 +34756,6409,less than 300 ratings,1203430711 +34756,6427,less than 300 ratings,1204786477 +34756,6435,less than 300 ratings,1203433659 +34756,6437,less than 300 ratings,1203433502 +34756,6443,less than 300 ratings,1203433449 +34756,6446,less than 300 ratings,1203431426 +34756,6447,less than 300 ratings,1203433408 +34756,6451,less than 300 ratings,1203430439 +34756,6453,less than 300 ratings,1203430726 +34756,6459,less than 300 ratings,1203430053 +34756,6463,less than 300 ratings,1203453500 +34756,6490,less than 300 ratings,1203433714 +34756,6498,less than 300 ratings,1203430930 +34756,6508,less than 300 ratings,1203430340 +34756,6513,less than 300 ratings,1203433717 +34756,6515,less than 300 ratings,1203431260 +34756,6528,less than 300 ratings,1203432389 +34756,6531,less than 300 ratings,1203435152 +34756,6583,less than 300 ratings,1203430015 +34756,6588,less than 300 ratings,1203430078 +34756,6605,less than 300 ratings,1203430437 +34756,6610,less than 300 ratings,1203431334 +34756,6679,less than 300 ratings,1203430320 +34756,6681,less than 300 ratings,1203433495 +34756,6683,less than 300 ratings,1203496006 +34756,6692,less than 300 ratings,1203432140 +34756,6701,less than 300 ratings,1203433800 +34756,6704,less than 300 ratings,1203435110 +34756,6749,less than 300 ratings,1203430488 +34756,6759,less than 300 ratings,1203433335 +34756,6761,less than 300 ratings,1203435220 +34756,6804,less than 300 ratings,1203431058 +34756,6830,less than 300 ratings,1203433142 +34756,6875,less than 300 ratings,1203429922 +34756,6900,less than 300 ratings,1203430424 +34756,6926,less than 300 ratings,1203433857 +34756,6930,less than 300 ratings,1203433373 +34756,6962,less than 300 ratings,1204786319 +34756,6965,less than 300 ratings,1203435236 +34756,6980,less than 300 ratings,1204271495 +34756,7002,less than 300 ratings,1203495820 +34756,7051,less than 300 ratings,1203432287 +34756,7053,less than 300 ratings,1203435993 +34756,7057,less than 300 ratings,1203430056 +34756,7081,less than 300 ratings,1203433330 +34756,7085,less than 300 ratings,1203430135 +34756,7093,less than 300 ratings,1203430454 +34756,7109,less than 300 ratings,1203433467 +34756,7112,less than 300 ratings,1203431014 +34756,7125,less than 300 ratings,1203430935 +34756,7126,less than 300 ratings,1203496047 +34756,7141,less than 300 ratings,1203433683 +34756,7147,What is Happiness?,1206687613 +34756,7163,Revenge,1206687639 +34756,7167,less than 300 ratings,1203432153 +34756,7180,less than 300 ratings,1203433665 +34756,7181,less than 300 ratings,1203431351 +34756,7194,less than 300 ratings,1203453449 +34756,7196,less than 300 ratings,1203433703 +34756,7197,less than 300 ratings,1203432082 +34756,7199,less than 300 ratings,1203431055 +34756,7201,less than 300 ratings,1204786344 +34756,7205,less than 300 ratings,1203432129 +34756,7227,less than 300 ratings,1203435962 +34756,7251,less than 300 ratings,1203433139 +34756,7260,less than 300 ratings,1203430141 +34756,7277,less than 300 ratings,1203433757 +34756,7279,less than 300 ratings,1203433805 +34756,7288,less than 300 ratings,1203433393 +34756,7309,less than 300 ratings,1203432161 +34756,7330,less than 300 ratings,1203433839 +34756,7383,less than 300 ratings,1203432393 +34756,7398,less than 300 ratings,1203433474 +34756,7414,less than 300 ratings,1203435268 +34756,7418,less than 300 ratings,1203431258 +34756,7474,less than 300 ratings,1203431339 +34756,7479,less than 300 ratings,1203433831 +34756,7488,less than 300 ratings,1203453440 +34756,7561,less than 300 ratings,1203431354 +34756,7563,less than 300 ratings,1203433093 +34756,7583,less than 300 ratings,1203433326 +34756,7620,less than 300 ratings,1203430070 +34756,7625,less than 300 ratings,1203435172 +34756,7645,less than 300 ratings,1203453403 +34756,7675,less than 300 ratings,1203435276 +34756,7697,less than 300 ratings,1203433641 +34756,7702,less than 300 ratings,1203432529 +34756,7787,less than 300 ratings,1203430029 +34756,7790,less than 300 ratings,1203432469 +34756,7818,less than 300 ratings,1203433603 +34756,7822,less than 300 ratings,1203433696 +34756,7828,less than 300 ratings,1203433630 +34756,7839,less than 300 ratings,1203433722 +34756,7847,less than 300 ratings,1203430118 +34756,7872,less than 300 ratings,1203433376 +34756,7884,less than 300 ratings,1203496025 +34756,7895,less than 300 ratings,1203453459 +34756,7901,less than 300 ratings,1203453364 +34756,7912,less than 300 ratings,1203433099 +34756,7914,less than 300 ratings,1203717297 +34756,7918,less than 300 ratings,1203432033 +34756,7923,less than 300 ratings,1203431418 +34756,7946,less than 300 ratings,1203433623 +34756,7949,less than 300 ratings,1203431263 +34756,7992,less than 300 ratings,1203453481 +34756,7993,less than 300 ratings,1204786492 +34756,8017,less than 300 ratings,1203433065 +34756,8056,less than 300 ratings,1203433357 +34756,8057,less than 300 ratings,1204271503 +34756,8117,less than 300 ratings,1203431306 +34756,8123,less than 300 ratings,1203432515 +34756,8127,less than 300 ratings,1203433397 +34756,8131,less than 300 ratings,1203430163 +34756,8190,less than 300 ratings,1203430082 +34756,8191,less than 300 ratings,1203431017 +34756,8201,less than 300 ratings,1203432164 +34756,8202,less than 300 ratings,1203431061 +34756,8206,less than 300 ratings,1203432149 +34756,8221,less than 300 ratings,1203432052 +34756,8227,less than 300 ratings,1203430087 +34756,8232,less than 300 ratings,1203433332 +34756,8236,less than 300 ratings,1203435103 +34756,8257,less than 300 ratings,1203433479 +34756,8261,less than 300 ratings,1203453395 +34756,8272,less than 300 ratings,1203433427 +34756,8294,less than 300 ratings,1203435217 +34756,8302,less than 300 ratings,1204786398 +34756,8334,less than 300 ratings,1203430144 +34756,8365,less than 300 ratings,1203431359 +34756,8375,less than 300 ratings,1204786349 +34756,8385,less than 300 ratings,1203432001 +34756,8395,less than 300 ratings,1203431076 +34756,8422,less than 300 ratings,1203432029 +34756,8423,less than 300 ratings,1203453374 +34756,8460,less than 300 ratings,1203430459 +34756,8478,less than 300 ratings,1203433414 +34756,8480,less than 300 ratings,1203433745 +34756,8481,less than 300 ratings,1203430128 +34756,8486,less than 300 ratings,1203433485 +34756,8487,less than 300 ratings,1203495903 +34756,8504,less than 300 ratings,1203430479 +34756,8520,less than 300 ratings,1204786541 +34756,8522,less than 300 ratings,1204786445 +34756,8524,less than 300 ratings,1203433105 +34756,8529,What is Happiness?,1206687495 +34756,8540,less than 300 ratings,1203431195 +34756,8543,less than 300 ratings,1203717283 +34756,8574,less than 300 ratings,1204271508 +34756,8575,less than 300 ratings,1203717268 +34756,8577,less than 300 ratings,1203433431 +34756,8579,less than 300 ratings,1203433607 +34756,8613,less than 300 ratings,1203433843 +34756,8629,less than 300 ratings,1203431043 +34756,8631,less than 300 ratings,1203431064 +34756,8654,less than 300 ratings,1203433645 +34756,8657,less than 300 ratings,1203431040 +34756,8662,less than 300 ratings,1203430664 +34756,8675,less than 300 ratings,1203496000 +34756,8686,less than 300 ratings,1203433693 +34756,8689,less than 300 ratings,1203432294 +34756,8693,less than 300 ratings,1203433812 +34756,8700,less than 300 ratings,1203430918 +34756,8719,less than 300 ratings,1203435149 +34756,8730,less than 300 ratings,1203430448 +34756,8732,less than 300 ratings,1204786453 +34756,8753,less than 300 ratings,1203430090 +34756,8755,less than 300 ratings,1203435452 +34756,8757,less than 300 ratings,1203433121 +34756,8758,less than 300 ratings,1203433739 +34756,8766,less than 300 ratings,1203433441 +34756,8775,less than 300 ratings,1203433088 +34756,8780,less than 300 ratings,1203433489 +34756,8790,less than 300 ratings,1203433614 +34756,8851,less than 300 ratings,1203431008 +34756,8852,less than 300 ratings,1203433725 +34756,8875,less than 300 ratings,1203431025 +34756,8882,less than 300 ratings,1203430922 +34756,8895,less than 300 ratings,1203453405 +34756,8921,less than 300 ratings,1203432142 +34756,8931,less than 300 ratings,1204786515 +34756,8962,less than 300 ratings,1203433400 +34756,8982,less than 300 ratings,1203431365 +34756,8989,less than 300 ratings,1204786529 +34756,9002,less than 300 ratings,1203432376 +34756,9013,less than 300 ratings,1203433600 +34756,9014,less than 300 ratings,1203433860 +34756,25746,less than 300 ratings,1203433338 +34756,25752,less than 300 ratings,1203431413 +34756,25764,less than 300 ratings,1203430731 +34756,25835,less than 300 ratings,1203430096 +34756,25866,less than 300 ratings,1203430073 +34756,25870,less than 300 ratings,1203431000 +34756,25888,less than 300 ratings,1203453359 +34756,25903,less than 300 ratings,1203433706 +34756,25904,less than 300 ratings,1203430709 +34756,25906,less than 300 ratings,1203433687 +34756,25908,less than 300 ratings,1203433656 +34756,25916,less than 300 ratings,1203432535 +34756,25930,less than 300 ratings,1203717312 +34756,25943,less than 300 ratings,1203433676 +34756,25945,less than 300 ratings,1203431288 +34756,25961,less than 300 ratings,1203433360 +34756,25962,less than 300 ratings,1203431302 +34756,25971,less than 300 ratings,1203717290 +34756,25993,less than 300 ratings,1203430793 +34756,26038,less than 300 ratings,1203432283 +34756,26078,less than 300 ratings,1203430110 +34756,26101,less than 300 ratings,1203431432 +34756,26111,less than 300 ratings,1203430718 +34756,26116,less than 300 ratings,1203435922 +34756,26138,less than 300 ratings,1203433344 +34756,26139,less than 300 ratings,1203431048 +34756,26155,less than 300 ratings,1204786506 +34756,26178,less than 300 ratings,1203430805 +34756,26181,less than 300 ratings,1203430101 +34756,26203,less than 300 ratings,1204786460 +34756,26240,less than 300 ratings,1203430064 +34756,26246,less than 300 ratings,1203431037 +34756,26249,less than 300 ratings,1203430429 +34756,26271,less than 300 ratings,1203430326 +34756,26371,less than 300 ratings,1203433699 +34756,26414,less than 300 ratings,1203433823 +34756,26479,less than 300 ratings,1203433199 +34756,26491,less than 300 ratings,1203430318 +34756,26544,less than 300 ratings,1203433354 +34756,26561,less than 300 ratings,1203430660 +34756,26562,less than 300 ratings,1203430084 +34756,26695,less than 300 ratings,1203430465 +34756,26698,less than 300 ratings,1203433673 +34756,26704,less than 300 ratings,1203430786 +34756,26770,less than 300 ratings,1203430741 +34756,26810,less than 300 ratings,1203453433 +34756,26996,less than 300 ratings,1203433610 +34756,27005,less than 300 ratings,1203433754 +34756,27022,less than 300 ratings,1203430345 +34756,27370,less than 300 ratings,1203433731 +34756,27555,less than 300 ratings,1203430470 +34756,27587,less than 300 ratings,1203433634 +34756,27816,less than 300 ratings,1203430047 +34756,27826,less than 300 ratings,1203430445 +34756,27874,less than 300 ratings,1203433370 +34756,27875,less than 300 ratings,1203433626 +34756,30712,less than 300 ratings,1203430103 +34756,30721,less than 300 ratings,1203433351 +34756,30892,less than 300 ratings,1203430798 +34756,30949,less than 300 ratings,1203435249 +34756,30952,less than 300 ratings,1203433736 +34756,30996,less than 300 ratings,1203431996 +34756,31030,less than 300 ratings,1203496038 +34756,31042,less than 300 ratings,1203433348 +34756,31114,less than 300 ratings,1203430468 +34756,31247,less than 300 ratings,1203435214 +34756,31260,less than 300 ratings,1203430801 +34756,31347,less than 300 ratings,1203432156 +34756,31435,less than 300 ratings,1203431436 +34756,31617,less than 300 ratings,1204271479 +34756,31737,less than 300 ratings,1203431279 +34756,31854,less than 300 ratings,1203433689 +34756,32022,less than 300 ratings,1203430334 +34756,32025,less than 300 ratings,1203431011 +34756,32139,less than 300 ratings,1203430147 +34756,32162,less than 300 ratings,1203433679 +34756,32234,less than 300 ratings,1203431429 +34756,32347,less than 300 ratings,1203433482 +34756,32352,less than 300 ratings,1203433852 +34756,32371,less than 300 ratings,1203430998 +34756,32584,less than 300 ratings,1203430497 +34756,32646,less than 300 ratings,1203453465 +34756,32721,less than 300 ratings,1203431282 +34756,32882,less than 300 ratings,1203433456 +34756,33421,less than 300 ratings,1203717306 +34756,33539,less than 300 ratings,1203435255 +34756,33603,less than 300 ratings,1203431006 +34756,33677,less than 300 ratings,1203432542 +34756,33725,less than 300 ratings,1203430351 +34756,34063,less than 300 ratings,1203435106 +34756,34065,less than 300 ratings,1203433444 +34756,34198,less than 300 ratings,1203430017 +34756,34319,What is Happiness?,1206687804 +34756,34583,less than 300 ratings,1203433648 +34756,35015,less than 300 ratings,1203431030 +34756,36152,less than 300 ratings,1203433412 +34756,36553,less than 300 ratings,1203435162 +34756,38388,less than 300 ratings,1204271077 +34756,39307,less than 300 ratings,1204271028 +34756,40148,less than 300 ratings,1204271034 +34756,40412,less than 300 ratings,1203432436 +34756,40817,less than 300 ratings,1203433206 +34756,40955,less than 300 ratings,1203435284 +34756,40973,less than 300 ratings,1203430025 +34756,40988,less than 300 ratings,1203431045 +34756,41014,less than 300 ratings,1203717275 +34756,41585,less than 300 ratings,1203433742 +34756,41721,less than 300 ratings,1203717262 +34756,41831,less than 300 ratings,1203432136 +34756,42021,less than 300 ratings,1203430481 +34756,43684,less than 300 ratings,1203430115 +34756,43914,less than 300 ratings,1203430426 +34756,44595,less than 300 ratings,1203433617 +34756,44633,less than 300 ratings,1203431028 +34756,44849,less than 300 ratings,1203433620 +34756,44889,less than 300 ratings,1203435211 +34756,45335,less than 300 ratings,1203433389 +34756,45635,less than 300 ratings,1203717255 +34756,45658,less than 300 ratings,1203432339 +34756,45679,less than 300 ratings,1203433592 +34756,46574,less than 300 ratings,1203495827 +34756,46855,less than 300 ratings,1203433492 +34756,47202,less than 300 ratings,1203433854 +34756,47493,less than 300 ratings,1203433438 +34756,47723,less than 300 ratings,1203433826 +34756,47956,less than 300 ratings,1203431070 +34756,47978,less than 300 ratings,1203430431 +34756,48061,less than 300 ratings,1203430943 +34756,48262,less than 300 ratings,1203430734 +34756,48301,less than 300 ratings,1203433637 +34756,48342,less than 300 ratings,1203453487 +34756,48678,less than 300 ratings,1203430442 +34756,48698,less than 300 ratings,1203430721 +34756,48741,less than 300 ratings,1203432950 +34756,48909,less than 300 ratings,1203433499 +34756,49200,less than 300 ratings,1203433386 +34756,49220,less than 300 ratings,1203432414 +34756,49314,going postal,1206688009 +34756,49793,less than 300 ratings,1203430342 +34756,50259,less than 300 ratings,1203430737 +34756,50514,less than 300 ratings,1203430107 +34756,50842,less than 300 ratings,1203430312 +34756,51037,less than 300 ratings,1204271023 +34756,51082,less than 300 ratings,1203432927 +34756,51638,less than 300 ratings,1203433817 +34756,51660,less than 300 ratings,1203432171 +34756,51694,less than 300 ratings,1203717301 +34756,51911,less than 300 ratings,1203433380 +34756,52606,less than 300 ratings,1203433462 +34756,52952,less than 300 ratings,1203430728 +34756,53038,less than 300 ratings,1203433152 +34756,53189,less than 300 ratings,1203453346 +34756,53887,less than 300 ratings,1204271039 +34756,53956,less than 300 ratings,1203430153 +34756,54190,less than 300 ratings,1203453393 +34756,54193,less than 300 ratings,1204271049 +34756,54256,less than 300 ratings,1203430491 +34756,54281,less than 300 ratings,1204786385 +34756,54745,less than 300 ratings,1203432342 +34756,54787,Revenge,1206686376 +34756,54796,less than 300 ratings,1203435169 +34756,54962,less than 300 ratings,1203430808 +34756,55094,less than 300 ratings,1203433760 +34756,55116,less than 300 ratings,1203432939 +34756,55176,less than 300 ratings,1203453370 +34756,55259,less than 300 ratings,1203433598 +34756,55267,less than 300 ratings,1203430306 +34756,55272,less than 300 ratings,1203430485 +34756,55274,less than 300 ratings,1203432931 +34756,55280,less than 300 ratings,1203433172 +34756,55282,less than 300 ratings,1203431285 +34756,55286,less than 300 ratings,1203433846 +34756,55363,less than 300 ratings,1203432922 +34756,55442,less than 300 ratings,1203430723 +34756,55451,less than 300 ratings,1203430421 +34756,55729,less than 300 ratings,1203433750 +34756,55732,less than 300 ratings,1204786363 +34756,55805,less than 300 ratings,1203431021 +34756,55820,going postal,1206688223 +34756,55830,less than 300 ratings,1204271057 +34756,55908,less than 300 ratings,1203431295 +34756,55999,less than 300 ratings,1203432943 +34756,56274,less than 300 ratings,1203433709 +34756,56333,less than 300 ratings,1203432947 +34756,56563,less than 300 ratings,1203432315 +34756,56587,less than 300 ratings,1203453241 +34756,56805,less than 300 ratings,1203432132 +34756,56885,less than 300 ratings,1203431415 +34756,56915,less than 300 ratings,1203430744 +34756,57464,less than 300 ratings,1203432935 +34756,57669,less than 300 ratings,1204786379 +34756,58047,less than 300 ratings,1204271045 +34756,58105,less than 300 ratings,1204271084 +34756,58156,less than 300 ratings,1204786311 +34789,318,atmospheric,1428495361 +34789,318,hope,1428495387 +34789,318,Morgan Freeman,1428495354 +34789,318,prison escape,1428495377 +34789,318,twist ending,1428495372 +34789,912,atmospheric,1428495456 +34789,912,classic romance,1428495453 +34789,912,Oscar (Best Picture),1428495468 +34789,912,Oscar Winner,1428495471 +34789,2324,father-son relationship,1428495854 +34789,2324,Heartwarming,1428495866 +34789,2324,optimism,1428495863 +34789,2324,poignant,1428495883 +34789,2324,Roberto Benigni,1428495848 +34789,2336,female power figure,1428497040 +34789,2336,historical,1428497027 +34789,2336,woman empowering,1428497064 +34789,2336,woman leader,1428497051 +34789,2571,alternate reality,1428495756 +34789,2571,cyberpunk,1428495793 +34789,2571,dark hero,1428495804 +34789,2571,dystopia,1428495765 +34789,2571,fight scenes,1428495785 +34789,2571,martial arts,1428495775 +34789,2571,philosophical,1428495762 +34789,2571,post-apocalyptic,1428495752 +34789,2571,surreal,1428495789 +34789,2571,thought-provoking,1428495797 +34789,3155,Comedy,1428497115 +34789,3155,costume drama,1428497122 +34789,3155,exotic,1428497101 +34789,3155,romantic,1428497100 +34789,3155,royalty,1428497103 +34789,3155,Siam,1428497106 +34789,3578,Epic,1428496652 +34789,3578,family,1428496638 +34789,3578,heroism,1428496629 +34789,3578,history,1428496654 +34789,3578,ideals,1428496645 +34789,3578,Rome,1428496658 +34789,3578,visual,1428496681 +34789,4720,Alejandro Amenábar,1428498013 +34789,4720,atmospheric,1428497953 +34789,4720,beautiful,1428497971 +34789,4720,clever,1428497969 +34789,4720,Isolation,1428497965 +34789,4720,mother-daughter relationships,1428497984 +34789,4720,Nicole Kidman,1428497958 +34789,4720,religion,1428497979 +34789,4720,scary,1428497975 +34789,4720,twist ending,1428497955 +34789,4973,Cute,1428495675 +34789,4973,idealism,1428495714 +34789,4973,quirky,1428495689 +34789,4973,visually appealing,1428495702 +34789,7143,heroic,1428496593 +34789,7143,heroism,1428496586 +34789,7143,historical,1428496574 +34789,7143,Honor,1428496556 +34789,7143,intense,1428496577 +34789,7143,rebellion,1428496567 +34789,7143,samurai,1428496562 +34789,7143,the story,1428496932 +34789,7458,based on a myth,1428496886 +34789,7458,beautiful,1428496893 +34789,7458,epic,1428496890 +34789,7458,full cast,1428496891 +34789,7458,heroic,1428496888 +34789,7458,the story,1428496918 +34789,58154,atmospheric,1428497199 +34789,58154,Henry VIII and Anne Boleyn,1428497166 +34789,58154,historical,1428497158 +34789,58154,Natalie Portman,1428497162 +34789,58154,Scarlett Johansson,1428497164 +34789,58154,scenario,1428497179 +34789,58154,the story,1428497197 +34789,77866,Cate Blanchett,1428496957 +34789,77866,Russell Crowe,1428496957 +34789,77866,the story,1428496963 +34789,79132,alternate reality,1428495914 +34789,79132,Christopher Nolan,1428495981 +34789,79132,clever,1428495979 +34789,79132,ensemble cast,1428495931 +34789,79132,heist,1428495921 +34789,79132,intellectual,1428495939 +34789,79132,Leonardo DiCaprio,1428495924 +34789,79132,mindfuck,1428495913 +34789,79132,philosophy,1428495952 +34789,79132,surreal,1428495926 +34789,79132,thought-provoking,1428495918 +34789,92259,disability,1428496441 +34789,92259,emotional,1428496412 +34789,92259,friendship,1428496409 +34789,92259,rich and poor,1428496415 +34789,130634,happy ending,1428495545 +34789,130634,naive,1428495547 +34830,47,twist ending,1357138003 +34830,260,fantasy,1357083886 +34830,260,sci-fi,1357083883 +34830,296,nonlinear,1357138037 +34830,296,Quentin Tarantino,1357138030 +34830,527,Oscar (Best Picture),1357138010 +34830,555,Quentin Tarantino,1357083859 +34830,1080,Monty Python,1357138056 +34830,1080,satire,1357138059 +34830,1089,nonlinear,1357138022 +34830,1089,Quentin Tarantino,1357083906 +34830,1197,fantasy,1357083914 +34830,1210,fantasy,1357083870 +34830,1210,sci-fi,1357083867 +34830,1210,space,1357083874 +34830,1265,Fantasy,1357138321 +34830,2788,Monty Python,1357138069 +34830,5952,fantasy,1357138076 +34830,6807,Monty Python,1357138051 +34830,6874,revenge,1357138209 +34830,7438,Quentin Tarantino,1357138083 +34830,34405,sci-fi,1357137997 +34830,77455,fake documentary,1360746526 +34830,77951,nazis,1420072060 +34830,77951,peace,1420072060 +34830,77951,world war ii,1420072060 +34830,99594,england,1421711971 +34830,99594,prison,1357407737 +34830,99594,revenge,1357407737 +34830,107675,London,1388579824 +34830,107675,revenge,1388579824 +34830,114277,mental illness,1422697158 +34830,114277,musical,1422697158 +34830,114277,scotland,1422697158 +34832,356,i'm moved,1435025975 +34832,356,it was so impressed,1435025975 +34832,356,tom hanks is my favorite actor,1435025975 +34832,5618,Hayao Miyazaki,1435026039 +34832,5618,It is fantastic,1435026011 +34832,5618,It was so impressive,1435026022 +34834,53125,crap,1194825175 +34838,260,fantasy,1442806409 +34838,260,legendary,1442806353 +34848,27611,MILITARY LIFE,1239359445 +34848,27611,space,1239359438 +34865,2357,faith,1166668599 +34865,2357,love,1166668613 +34865,8740,movielens top pick,1171754536 +34865,110167,galabru,1434833192 +34865,110167,poiret,1434833192 +34865,110167,psychological torment,1434833192 +34888,8533,great ending,1425481366 +34888,8533,romance,1425481347 +34888,8533,Ryan Gosling,1425481356 +34889,260,archetypal,1432143393 +34889,260,scifi,1432143417 +34892,2918,coming of age,1423852712 +34892,6874,martial arts,1423852736 +34901,40732,flesh eating,1453564677 +34901,40732,monsters,1453564656 +34901,51927,dummy,1453564610 +34901,51927,ghost,1453564606 +34950,79879,bollox,1422540581 +34950,79879,crap,1422540581 +34950,79879,shit,1422540581 +34952,260,good science fictional technology,1436050871 +34952,260,Science Fiction,1436050836 +34987,260,space adventure,1442381545 +34987,260,Star Wars,1442381528 +34987,3219,san francisco,1442387333 +34987,144074,dotcom,1444590830 +34987,144074,Internet,1444590848 +34987,144074,mozilla,1444590828 +34987,144074,netscape,1444590826 +34994,50851,cocaine,1220959000 +35007,1704,feel-good,1440137098 +35007,1704,Robin Williams,1440137080 +35007,5014,crying,1440137147 +35011,260,#boring,1437515729 +35011,260,did'nt get it,1437515796 +35011,139515,jane birkin,1437518641 +35011,139515,serge gainsbourg,1437518637 +35014,32,post-apocalyptic,1423429907 +35014,32,sci-fi,1423429911 +35014,32,time travel,1423429884 +35014,32,twist ending,1423429913 +35014,47,serial killer,1423429295 +35014,47,twist ending,1423429293 +35014,50,twist ending,1423429346 +35014,266,Prohibition,1423430520 +35014,266,World War I,1423430483 +35014,1266,western,1423430298 +35014,1617,neo-noir,1423429222 +35014,1617,twist ending,1423429229 +35014,1619,mountain climbing,1423430454 +35014,1619,Tibet,1423430462 +35014,1635,suburbia,1367476623 +35014,2076,suburbia,1367476443 +35014,2132,based on a play,1367477274 +35014,2132,dialogue driven,1367477299 +35014,2132,professor,1367477697 +35014,2245,1980s,1423429499 +35014,2245,Bechdel Test:Pass,1423429477 +35014,2291,gothic,1367476519 +35014,2291,suburbia,1367476481 +35014,2724,wedding,1423470485 +35014,2759,1970s,1367478267 +35014,2759,Watergate,1367478262 +35014,2858,coming of age,1423429408 +35014,2858,midlife crisis,1423429415 +35014,2858,suburbia,1367476318 +35014,2959,mental illness,1423429539 +35014,2959,twist ending,1423429515 +35014,3361,baseball,1423430079 +35014,3418,Bechdel Test:Pass,1423430027 +35014,3418,road movie,1423430054 +35014,3418,road trip,1423430031 +35014,3556,suburbia,1367476376 +35014,4226,memory,1423429184 +35014,4226,twist ending,1423429180 +35014,4901,cia,1423430169 +35014,4901,espionage,1423430172 +35014,4963,caper,1423430000 +35014,4963,heist,1423429990 +35014,4963,las vegas,1423429997 +35014,5464,1930s,1423430273 +35014,5464,organized crime,1423430248 +35014,5812,1950s,1367477057 +35014,5812,1950s housewives,1367477059 +35014,5812,interracial romance,1367477065 +35014,5812,queer,1367477068 +35014,5992,1950s,1367476728 +35014,5992,1950s housewives,1367476716 +35014,5992,nonlinear,1367476820 +35014,5992,queer,1367476850 +35014,5992,suburbia,1367476720 +35014,5992,suicide,1367476796 +35014,5992,Virginia Woolf,1367476894 +35014,6003,cia,1423430338 +35014,6003,television,1423430379 +35014,7458,based on a myth,1423430704 +35014,8914,mindfuck,1423428923 +35014,8914,paradox,1423428919 +35014,8914,time travel,1423428910 +35014,8981,relationships,1423470532 +35014,36517,Africa,1367477893 +35014,36517,conspiracy,1367477899 +35014,38061,Film Noir,1367478526 +35014,38061,Hollywood,1423429803 +35014,38061,meta,1367478534 +35014,38499,1980s,1367477095 +35014,38499,AIDS,1367477133 +35014,38499,angels,1367477160 +35014,38499,closeted homosexual,1367477173 +35014,38499,jewish,1367477137 +35014,38499,mormon,1367477168 +35014,38499,politics,1367477148 +35014,38499,queer,1367477179 +35014,38499,religion,1367477154 +35014,55363,western,1423429951 +35014,56367,Bechdel Test:Pass,1423430670 +35014,56367,high school,1423430651 +35014,56367,pregnancy,1423430653 +35014,57669,assassin,1423430786 +35014,57669,dark comedy,1423430776 +35014,61323,cia,1423430429 +35014,64575,1960s,1367477245 +35014,64575,based on a play,1367477227 +35014,64575,Catholicism,1367477231 +35014,64575,religion,1367477252 +35014,68157,alternate history,1423430153 +35014,68157,Nazis,1423430147 +35014,68157,World War II,1423430144 +35014,68237,artificial intelligence,1423429380 +35014,68237,cloning,1423429386 +35014,68237,Sci-fi,1423429372 +35014,68237,twist ending,1423429382 +35014,72720,1960s,1367476951 +35014,72720,Cuban missile crisis,1367477004 +35014,72720,queer,1367477014 +35014,72720,suicide,1367476984 +35014,89492,baseball,1423430123 +35014,89492,sports,1423430129 +35014,96432,Great Depression,1423430227 +35014,96432,Prohibition,1423430229 +35014,106920,artificial intelligence,1390576658 +35014,109487,space,1423429150 +35014,109487,time travel,1423429142 +35019,3147,drama,1435571083 +35019,3147,Tom Hanks,1435571071 +35019,109487,science fiction,1435571135 +35019,109487,time travel,1435571153 +35025,3,Funniest Movies,1137392925 +35025,16,Martin Scorsese,1137392918 +35025,111,Film Theory & Criticism,1138131502 +35025,111,Martin Scorsese,1137393730 +35025,216,Funniest Movies,1137392910 +35025,296,Quentin Tarantino,1137392799 +35025,318,Stephen King,1137392846 +35025,333,Funniest Movies,1137392944 +35025,413,Funniest Movies,1137393697 +35025,431,Brian DePalma,1137994383 +35025,507,Clint Eastwood,1137393341 +35025,518,Alan Parker,1137994213 +35025,527,Steven Spielberg,1137392933 +35025,599,Sam Peckinpah,1137393348 +35025,858,Francis Ford Copolla,1137393330 +35025,900,Film Theory & Criticism,1140715358 +35025,913,Film Theory & Criticism,1142575654 +35025,923,Film Theory & Criticism,1147359986 +35025,924,Stanley Kubrick,1159112273 +35025,1066,Film Theory & Criticism,1140588238 +35025,1089,Quentin Tarantino,1137392827 +35025,1178,Stanley Kubrick,1137994595 +35025,1194,Funniest Movies,1137392950 +35025,1201,Sergio Leone,1137392767 +35025,1206,Stanley Kubrick,1137994581 +35025,1208,Francis Ford Copolla,1137393704 +35025,1209,Sergio Leone,1137393784 +35025,1213,Martin Scorsese,1137392774 +35025,1215,Sam Raimi,1137393757 +35025,1221,Francis Ford Copolla,1137392700 +35025,1222,Stanley Kubrick,1137393775 +35025,1227,Sergio Leone,1137393410 +35025,1228,Film Theory & Criticism,1138131444 +35025,1228,Martin Scorsese,1137392808 +35025,1252,Film Theory & Criticism,1138131484 +35025,1258,Stanley Kubrick,1137994602 +35025,1259,Stephen King,1137392849 +35025,1266,Clint Eastwood,1137392861 +35025,1298,Alan Parker,1137393789 +35025,1343,Martin Scorsese,1206623224 +35025,1348,Film Theory & Criticism,1139332654 +35025,1387,Steven Spielberg,1137393017 +35025,1459,Clint Eastwood,1137475328 +35025,1617,Film Theory & Criticism,1138131469 +35025,1729,Quentin Tarantino,1137393398 +35025,1732,Funniest Movies,1137393764 +35025,1982,John Carpenter,1137994507 +35025,2022,Martin Scorsese,1137393025 +35025,2023,Francis Ford Copolla,1149572980 +35025,2028,Steven Spielberg,1137393047 +35025,2194,Brian DePalma,1137393472 +35025,2288,John Carpenter,1137393464 +35025,2391,Sam Raimi,1137393840 +35025,2401,Clint Eastwood,1137475323 +35025,2476,Clint Eastwood,1137393447 +35025,2513,Stephen King,1137393455 +35025,2561,Clint Eastwood,1137475354 +35025,2726,Stanley Kubrick,1161188194 +35025,2804,Funniest Movies,1137392981 +35025,2921,Clint Eastwood,1137393901 +35025,2951,Sergio Leone,1137393881 +35025,2976,Martin Scorsese,1137475282 +35025,3147,Stephen King,1137393007 +35025,3253,Funniest Movies,1137393924 +35025,3339,Sam Peckinpah,1137475396 +35025,3342,Alan Parker,1137994190 +35025,3450,Funniest Movies,1137392782 +35025,3471,Steven Spielberg,1137393898 +35025,3498,Alan Parker,1137994234 +35025,3499,Stephen King,1137393513 +35025,3508,Clint Eastwood,1137393032 +35025,3671,Funniest Movies,1137394103 +35025,3681,Sergio Leone,1137392999 +35025,3706,Alan Parker,1137996664 +35025,3726,John Carpenter,1137994500 +35025,3742,Film Theory & Criticism,1138564588 +35025,3827,Clint Eastwood,1137475334 +35025,4002,Funniest Movies,1137393039 +35025,4102,Stand Up,1137392894 +35025,4105,Sam Raimi,1137392992 +35025,4262,Brian DePalma,1137393060 +35025,4308,Film Theory & Criticism,1141319432 +35025,4333,Funniest Movies,1137394020 +35025,4509,Funniest Movies,1137393990 +35025,4577,Brian DePalma,1161188339 +35025,4662,Funniest Movies,1137394075 +35025,4710,Don Siegel,1137393538 +35025,4735,John Carpenter,1137994529 +35025,4855,Don Siegel,1137394056 +35025,5385,Martin Scorsese,1206623515 +35025,5445,Steven Spielberg,1137394069 +35025,5506,Clint Eastwood,1137475339 +35025,5650,Funniest Movies,1137393605 +35025,5878,Film Theory & Criticism,1147359906 +35025,5956,Martin Scorsese,1137475268 +35025,6005,Stand Up,1137393578 +35025,6188,Funniest Movies,1137393589 +35025,6301,Sam Peckinpah,1137475403 +35025,6863,Funniest Movies,1137393599 +35025,6870,Clint Eastwood,1137393319 +35025,6957,Funniest Movies,1137393570 +35025,6987,Film Theory & Criticism,1138861193 +35025,7048,Funniest Movies,1137994327 +35025,7065,Film Theory & Criticism,1138131422 +35025,7419,Martin Scorsese,1137518631 +35025,7438,Quentin Tarantino,1137475169 +35025,7889,Sam Peckinpah,1144166290 +35025,7895,Sam Peckinpah,1137475387 +35025,7896,Sam Peckinpah,1137475192 +35025,7897,Sam Peckinpah,1137953681 +35025,8042,Martin Scorsese,1137475274 +35025,8340,Don Siegel,1137393300 +35025,8636,Sam Raimi,1137475199 +35025,8641,Funniest Movies,1149573033 +35025,8827,Stand Up,1137392887 +35025,26226,Brian DePalma,1161188359 +35025,26294,Sergio Leone,1137475186 +35025,30707,Clint Eastwood,1137392901 +35025,30812,Martin Scorsese,1137475260 +35025,32029,Best of 2005,1137393653 +35025,32587,Best of 2005,1137393140 +35025,33162,Best of 2005,1137393663 +35025,33166,Best of 2005,1137393630 +35025,33660,Best of 2005,1137393133 +35025,33794,Best of 2005,1137393635 +35025,34323,Best of 2005,1137393294 +35025,34534,Best of 2005,1137393641 +35025,34536,Best of 2005,1137393647 +35025,37733,Best of 2005,1137393307 +35025,39234,Best of 2005,1144166388 +35025,39444,Best of 2005,1144166374 +35025,40819,Best of 2005,1144166404 +35025,42725,Funniest Movies,1149572258 +35025,48142,Brian DePalma,1167343169 +35025,48516,Martin Scorsese,1161188432 +35025,48783,Clint Eastwood,1171256455 +35025,64614,Clint Eastwood,1233124131 +35028,260,mystic warriors,1440667470 +35028,260,space epic,1440667439 +35042,590,Oscar (Best Picture),1238774804 +35097,260,good science fictional technology,1442858076 +35097,260,oldie but goodie,1442858084 +35099,50,suspense,1439535984 +35099,50,twist ending,1439535982 +35099,1209,spaghetti western,1439498839 +35099,122902,comic book,1439500856 +35099,122902,Marvel,1439500859 +35102,260,sci-fi,1440502499 +35102,260,space adventure,1440502521 +35102,48774,alfonso cuaron,1440534647 +35125,260,fantasy,1442029129 +35125,260,fun,1442029119 +35143,48394,alternate reality,1253802181 +35143,48394,atmospheric,1253802171 +35143,48394,dark,1253802176 +35143,48394,disturbing,1253802183 +35143,48394,fantasy,1253802169 +35143,48394,imagination,1253802187 +35143,48394,stylized,1253802195 +35143,48394,surreal,1253802197 +35143,48394,violence,1253802203 +35143,48394,war,1253802210 +35143,48394,world war II,1253802205 +35154,3949,CREATIVE,1307426048 +35154,3949,not enough like it,1307426067 +35162,2617,egypt,1311344066 +35162,2617,mummy,1311344077 +35162,2617,Rachel Weisz,1311344079 +35162,2617,treasure hunt,1311344071 +35174,597,romance,1273434686 +35189,47,captivating,1405045626 +35189,47,shocking,1405045651 +35189,50,characters,1405044642 +35189,50,Web of Lies,1405044628 +35189,356,#lifelessons,1407949405 +35189,356,bittersweet,1407949515 +35189,356,cloying,1407949311 +35189,356,schmaltzy,1407949322 +35189,781,Beauty,1405043292 +35189,781,Relationships,1405043943 +35189,1089,crime,1405047275 +35189,1089,ensemble cast,1405047256 +35189,1089,great dialogue,1405047332 +35189,1089,racism,1405047262 +35189,1089,violence,1405047223 +35189,1089,Web of Intrigue,1405047235 +35189,1196,gee-whiz factor,1405045834 +35189,1196,heroes in peril,1405045794 +35189,1198,adventure,1405047430 +35189,1198,AFI 100,1405047690 +35189,1198,atmospheric,1405047553 +35189,1198,classic,1405047720 +35189,1198,Determined Hero,1405047665 +35189,1198,good versus evil,1405047457 +35189,1198,great characters,1405047571 +35189,1198,great soundtrack,1405047608 +35189,1198,indiana jones,1405047445 +35189,1198,Nazis,1405047451 +35189,1198,racism,1405047442 +35189,1198,romance,1405047634 +35189,1198,treasure hunt,1405047600 +35189,1200,action-packed,1405044824 +35189,1200,suspense,1405044863 +35189,1240,dystopic future,1405044766 +35189,1261,Bruce Campbell,1405046954 +35189,1261,dark humor,1405046959 +35189,1261,Great Ending,1405046990 +35189,1285,dark comedy,1407950157 +35189,1285,Quotable,1407950184 +35189,1285,satirical,1407950188 +35189,1285,serial killer,1407950193 +35189,1285,suicide,1407950160 +35189,1295,aimlessness,1407084190 +35189,1295,bittersweet,1407084048 +35189,1295,Daniel Day-Lewis,1407084134 +35189,1295,Juliette Binoche,1407084124 +35189,1295,Lena Olin,1407084164 +35189,1372,cheesy (good),1405046381 +35189,1372,Confronting Xenophobia,1405046303 +35189,1372,Fond Farewell,1405046478 +35189,1372,Friendship,1405046391 +35189,1372,Grand Themes,1405046502 +35189,1372,Nimble Old Guys,1405046457 +35189,1372,sci-fi,1405046532 +35189,1372,Teamwork,1405046441 +35189,1374,Enterprise,1405046088 +35189,1374,Facing Mortality,1405046127 +35189,1374,Friendship,1405045945 +35189,1374,Khan! (distant echo: khan!),1405046064 +35189,1374,Master Villain,1405045905 +35189,1374,sacrifice,1405045969 +35189,1374,sci-fi,1405046004 +35189,1374,space,1405046018 +35189,1374,Star Trek,1405046020 +35189,1374,Teamwork,1405045955 +35189,2692,inventive,1405045353 +35189,2912,unusual editing,1423307953 +35189,2916,cheesy (good),1405045028 +35189,2916,imaginative,1405045137 +35189,3527,action-packed,1405044918 +35189,3527,Bravado,1405044893 +35189,3527,suspenseful,1405044988 +35189,3735,bravery,1405131783 +35189,3735,corruption,1405131725 +35189,3735,determination,1405131898 +35189,3735,disillusionment,1405131860 +35189,3735,idealism,1405131776 +35189,3735,sacrifice,1405131799 +35189,3735,slow start,1405131863 +35189,3972,comedy,1407990768 +35189,3972,Jackie Chan,1407990729 +35189,3972,martial arts,1407990758 +35189,3972,physical comedy,1407990753 +35189,3972,slapstick,1407990788 +35189,3972,Stunts,1407990781 +35189,3996,Allegory,1407947918 +35189,3996,atmospheric,1407947975 +35189,3996,beautifully filmed,1407947870 +35189,3996,dreamlike,1407947875 +35189,3996,fight scenes,1407947878 +35189,3996,martial arts,1407947882 +35189,3996,Myth,1407947885 +35189,3996,strong female characters,1407947947 +35189,3996,the desert,1407947928 +35189,3996,tragic,1407948308 +35189,3996,visually stunning,1407947990 +35189,4846,corny,1407948490 +35189,4846,funny,1407948482 +35189,4846,hilarious martial arts,1407948478 +35189,4846,kung fu,1407948474 +35189,4846,over-the-top action,1407948472 +35189,4928,beautiful actresses,1407188357 +35189,4928,Entitlement,1407188569 +35189,4928,Love-Hate Relationship,1407188136 +35189,4928,satire,1407188474 +35189,4928,Sexual Harassment,1407187014 +35189,4967,Absurdity of War,1407708103 +35189,4967,complex characters,1407708066 +35189,4967,Scathing,1407708021 +35189,4967,social commentary,1407708028 +35189,4967,Starts slow,1407707980 +35189,4967,Strong Finish,1407707991 +35189,5618,coming of age,1405046678 +35189,5618,Heroine,1405046707 +35189,5618,Imaginative,1405046743 +35189,5618,Plucky Determination,1405046758 +35189,5618,Rich Fantasy World,1405046657 +35189,6283,amazing artwork,1413341958 +35189,6283,Animation,1413341965 +35189,6283,bad story,1413342018 +35189,6283,boring,1413341983 +35189,6283,BOUNTY HUNTERS,1413341961 +35189,6283,characters,1413341979 +35189,6283,fight scenes,1413342104 +35189,6283,good score,1413342066 +35189,6283,UNLIKELY HEROES,1413341999 +35189,7256,disturbing,1405203835 +35189,7256,dumbfounding,1405203743 +35189,7256,gripping,1405203729 +35189,7256,harrowing,1405203715 +35189,7256,Near Death Experience,1405203808 +35189,7256,the will to survive,1405203720 +35189,7361,bittersweet,1405857277 +35189,7361,dreamlike,1405857628 +35189,7361,insightful,1405857328 +35189,7361,lovely,1405857612 +35189,7361,romance,1405857375 +35189,7361,sci-fi,1405857380 +35189,7361,surprising,1405857442 +35189,7361,thought-provoking,1405857392 +35189,7361,touching,1405857304 +35189,8874,funny,1405046827 +35189,8874,Great Cast,1405046914 +35189,8874,Parody and Homage,1405046817 +35189,8874,Well-Writen,1405046805 +35189,8950,guilt and redemption,1405045559 +35189,8950,mystery,1405045523 +35189,8950,powerful ending,1405045500 +35189,27773,gratuitous,1405045470 +35189,27773,shocking,1405045456 +35189,27773,shocking ending,1405045456 +35189,27773,stylized,1405045407 +35189,27773,twist ending,1405045392 +35189,34542,eccentricity,1405887953 +35189,47997,satire,1423588172 +35189,47997,social commentary,1423588165 +35189,47997,thin premise,1423588199 +35189,48516,ensemble cast,1407036235 +35189,48516,intrigue,1407036221 +35189,48516,remake,1407036250 +35189,48516,Suspense,1407036228 +35189,48516,too long,1407036242 +35189,48516,twist ending,1407036216 +35189,56921,big acting,1408819050 +35189,56921,character drama,1408819006 +35189,56921,jingoistic,1408818953 +35189,56921,melodrama,1408819076 +35189,56921,space opera,1408819035 +35189,56921,Tense,1408818977 +35189,56921,the road not taken,1408819024 +35189,59336,Chiwetel Ejiofor,1407948365 +35189,59336,combat,1407948368 +35189,59336,far-fetched,1407948424 +35189,59336,illogical,1407948356 +35189,60069,Expression through movement,1405044494 +35189,60069,Inventive,1405044330 +35189,60069,physical comedy,1405044405 +35189,62336,annoying,1413769009 +35189,62336,funny,1413769111 +35189,62336,stylish,1413769000 +35189,62336,surreal,1413769003 +35189,62336,too weird,1413768985 +35189,62336,way over the top,1413769047 +35189,62336,wtf,1413772346 +35189,64839,Hubris,1405044012 +35189,64839,Marisa Tomei Nudity (Again),1405044123 +35189,64839,Terrible Choices by Characters,1405044224 +35189,64839,Tragedy,1405044024 +35189,77596,Claustrophobic,1405815698 +35189,79132,great soundtrack,1405045247 +35189,79132,imaginative,1405045236 +35189,79132,menswear - outstanding,1405045289 +35189,79132,visually appealing,1405045203 +35189,84152,interesting premise,1413735731 +35189,84152,visually appealing,1413735697 +35189,84152,wasted premise potential,1413735736 +35189,85774,Alain Prost,1405047105 +35189,85774,Ayrton Senna,1405047108 +35189,85774,biography,1405051709 +35189,85774,Formula 1 racing,1405047113 +35189,85774,Gripping,1405047064 +35189,85774,National Hero,1405047082 +35189,85774,rivalry,1405047127 +35189,85774,Tragic,1405047076 +35189,85774,Triumph,1405051686 +35189,85774,true story,1405047057 +35189,86142,against all odds,1407947743 +35189,86142,Bushido Code of Honor,1407947133 +35189,86142,feudal japan,1407947066 +35189,86142,horrific violence,1407947152 +35189,86142,samurai,1407947072 +35189,86142,samurai battles,1407947088 +35189,86142,self-sacrifice,1407947114 +35189,86142,surprise tactics,1407947743 +35189,86142,teamwork,1407947099 +35189,86892,action,1406611309 +35189,86892,hard-boiled,1406611275 +35189,87960,enthralling,1422668196 +35189,87960,informative,1422668209 +35189,87960,mind-bending,1422668177 +35189,89804,Bechdel Test:Fail,1407568433 +35189,89804,hard to relate to,1407568492 +35189,89804,loss of innocence,1407568524 +35189,89804,unlikeable characters,1407568504 +35189,89904,dogs,1413004754 +35189,89904,great actors,1413004766 +35189,89904,original,1413004708 +35189,89904,sentimental,1413004797 +35189,89904,silent movie,1413004719 +35189,89904,slow,1413004837 +35189,89904,thin plot,1413004833 +35189,92259,cliche,1406514877 +35189,92259,feel good movie,1406514881 +35189,92259,sexuality,1406514866 +35189,92259,unlikely friendship,1406514899 +35189,93838,awesome martial arts,1407947452 +35189,93838,brutal,1407947448 +35189,93838,drags on,1407947495 +35189,93838,high body count,1407947441 +35189,93838,intense,1407947519 +35189,93838,strong start,1407947551 +35189,93838,thin plot,1407947462 +35189,96079,beautifully filmed,1421547614 +35189,96079,plot,1421547627 +35189,96079,silly,1421547726 +35189,96610,bad makeup,1411220821 +35189,96610,dumb,1411220759 +35189,96610,great ending,1411221319 +35189,100106,creative,1405051920 +35189,100106,philosophy,1405051887 +35189,100106,thought-provoking,1405051899 +35189,100106,wipes nose with hand repeatedly!,1405052919 +35189,102125,funny,1422148682 +35189,102125,ludicrous,1422148750 +35189,102125,Robert Downey Jr.,1422148671 +35189,103228,giant monster,1422828849 +35189,103228,giant robots,1422828839 +35189,103228,Guillermo del Toro,1422828843 +35189,103228,music,1422828852 +35189,103228,Rinko Kikuchi,1422828859 +35189,103228,visually appealing,1422828834 +35189,103439,crime,1414036733 +35189,103439,double-dealing,1414036976 +35189,103439,Good Characters,1414036765 +35189,103439,heist,1414036726 +35189,103439,Intrigue,1414036680 +35189,103439,twists,1414036738 +35189,106489,muddled plot,1415324948 +35189,106489,poor character development,1415325020 +35189,106489,too long,1415324919 +35189,106489,too many plot lines,1415325018 +35189,106782,Amoral,1405990674 +35189,106782,Anti-Hero,1405990784 +35189,106782,Astounding,1405990838 +35189,106782,Darkly Funny,1405990813 +35189,106782,Excess,1405990685 +35189,106782,eye-opening,1405990866 +35189,106782,Long,1405990688 +35189,106782,social commentary,1405990759 +35189,106916,great performances,1430676549 +35189,108983,charming,1423588481 +35189,108983,coming of age,1423588491 +35189,108983,imaginative,1423588483 +35189,109673,ancient naval battles,1427155201 +35189,109673,Greco-Persian War - mythologized,1427155381 +35189,109687,Sciencey,1407623062 +35189,110039,Corny,1407623218 +35189,110039,Formulaic,1407623193 +35189,110039,Japanimation,1407623143 +35189,110039,Visuals,1407623136 +35189,111759,mind-bending,1415324150 +35189,111759,time loop,1415324115 +35189,112852,5 Han Solos,1408818741 +35189,112852,Action,1408818821 +35189,112852,adventure,1408818752 +35189,112852,for kids or adults?,1408818721 +35189,112852,fun at times,1408818869 +35189,112852,Great Visuals,1408818891 +35189,112852,overrated,1408818847 +35189,112852,sexism,1408818843 +35189,112852,Space Sci-Fi,1408818812 +35189,112852,Teamwork,1408818906 +35189,112852,Vin Diesel,1408818769 +35189,112852,violent,1408818835 +35214,119565,nominated golden globe,1447785744 +35214,147120,John le Carré,1447892361 +35214,147120,spy,1447892338 +35231,260,sci-fi,1437327841 +35231,260,space epic,1437327857 +35231,4489,classic,1438285093 +35231,4489,crude humor,1438285093 +35231,4489,disruptive humor,1438285093 +35244,260,classic sci-fi,1441923194 +35244,260,space epic,1441923208 +35264,260,classic,1443466775 +35264,260,space,1443466747 +35266,64622,Nudity (Full Frontal - Notable),1233168854 +35288,85,Nudity (Full Frontal - Notable),1307475812 +35288,215,conversation,1303743486 +35288,215,quirky,1303743482 +35288,215,reflective,1303743478 +35288,357,Romance,1303140944 +35288,539,Tom Hanks,1303140927 +35288,915,feel-good,1303153832 +35288,1036,action,1303140936 +35288,1193,Oscar (Best Picture),1303140905 +35288,1291,Steven Spielberg,1303140919 +35288,1617,Kevin Spacey,1303140976 +35288,1961,dark comedy,1303141038 +35288,1961,Oscar (Best Picture),1303141034 +35288,2716,comedy,1303140962 +35288,3578,Oscar (Best Actor),1303140862 +35288,4226,twist ending,1303141022 +35288,5952,fantasy,1303140888 +35295,49278,paradox,1197847244 +35296,2571,artificial intelligence,1449212769 +35296,2571,cyberpunk,1449212773 +35296,2571,philosophy,1449212764 +35296,2571,sci-fi,1449212755 +35296,2571,virtual reality,1449212757 +35296,8644,artificial intelligence,1449212798 +35296,8644,robots,1449212805 +35296,8644,sci-fi,1449212802 +35296,79132,alternate reality,1449212841 +35296,79132,complicated,1449212853 +35296,79132,Leonardo DiCaprio,1449212847 +35296,79132,sci-fi,1449212850 +35296,79132,thought-provoking,1449212844 +35296,92259,feel good movie,1449212644 +35296,92259,friendship,1449212640 +35296,111781,Action,1449212709 +35296,111781,Tom Cruise,1449212715 +35318,318,atmospheric,1447321220 +35318,318,Morgan Freeman,1447321207 +35318,318,Stephen King,1447321214 +35318,89774,MMA,1447321185 +35318,89774,Tom Hardy,1447321181 +35318,91529,Batman,1447237047 +35318,91529,Christopher Nolan,1447237051 +35318,91529,Tom Hardy,1447237055 +35328,3052,Alan Rickman,1444190808 +35328,3052,Comedy,1444190804 +35328,3052,funny,1444190844 +35328,3052,thought-provoking,1444190822 +35341,2067,Russian revolution,1216145567 +35350,1784,COMEDY,1357338108 +35350,32707,Binoche,1357337018 +35350,44555,director-screenwriter,1357337241 +35358,1089,Quentin Tarantino,1169773023 +35358,2232,mindfuck,1169776718 +35358,2959,mindfuck,1169770800 +35358,2997,mindfuck,1169770884 +35358,4973,France,1169770831 +35358,4975,mindfuck,1169770748 +35358,5902,surreal,1169770840 +35358,7361,Charlie Kaufman,1291684898 +35358,7361,cult film,1291684891 +35358,7361,surreal,1291684887 +35358,7361,thought-provoking,1291684884 +35358,27788,mindfuck,1169770802 +35358,79251,sick,1291683934 +35358,79251,twist ending,1291683946 +35362,260,adventure,1441023997 +35373,410,adolescence,1246288967 +35373,410,Anjelica Huston,1246288998 +35373,410,Barry Sonnenfeld,1246288972 +35373,410,Christina Ricci,1246289027 +35373,410,Christopher Lloyd,1246288952 +35373,410,creepy,1246288989 +35373,410,goth,1246288958 +35373,410,gothic,1246288962 +35373,410,Joan Cusack,1246288932 +35373,410,macabre,1246288985 +35373,410,morbid comedy,1246288929 +35373,410,Raul Julia,1246288918 +35373,2124,Based on a TV show,1246289119 +35373,2124,Christina Ricci,1246289084 +35373,2124,Christopher Lloyd,1246289087 +35373,2124,directorial debut,1246289123 +35373,2124,Family,1246289132 +35373,2124,gothic,1246289130 +35373,2124,horror,1246289162 +35373,2124,impostor,1246289185 +35373,2124,lawyers,1246289229 +35373,2124,mother-son relationship,1246289140 +35373,2124,quirky,1246289225 +35373,2124,Raul Julia,1246289110 +35373,2124,supernatural,1246289222 +35373,2124,sword fight,1246289151 +35373,2124,torture,1246289153 +35393,110,action packed,1424878762 +35393,110,good dialogue,1424878762 +35393,110,nice,1424878762 +35393,457,good screenplay,1424693263 +35393,1287,historical drama,1424693302 +35423,17,based on a book,1404049138 +35423,17,British,1404049092 +35423,17,heartwarming,1404049145 +35423,17,Hugh Grant,1404049099 +35423,17,Jane Austen,1404049109 +35423,17,period film,1404049085 +35423,17,romance,1404049103 +35423,357,British,1404048572 +35423,357,Hugh Grant,1404048575 +35423,2324,bittersweet,1404052656 +35423,2324,father-son relationship,1404052685 +35423,2324,funny,1404052688 +35423,2324,love,1404052692 +35423,2324,sad ending,1404052672 +35423,2324,sentimental,1404052679 +35423,2571,post-apocalyptic,1404043001 +35423,2671,British,1404048110 +35423,2671,Hugh Grant,1404048429 +35423,2671,location,1404048429 +35423,2671,romance,1404048113 +35423,4014,based on a book,1404103568 +35423,4014,Johnny Depp,1404103572 +35423,4014,Quirky,1404103577 +35423,4103,depressing,1404052458 +35423,4103,lonely,1404052502 +35423,4103,sad,1404052584 +35423,4103,separated from parents,1404052492 +35423,4246,British,1404048468 +35423,4246,chick flick,1404048470 +35423,4246,hate love relationship,1404049393 +35423,4246,Jane Austen,1404048473 +35423,4246,romance,1404048479 +35423,4973,cute couples,1404052225 +35423,4973,fun,1404052202 +35423,4973,magic,1404052195 +35423,4973,quirky,1404052180 +35423,4973,romance,1404052190 +35423,4973,stylized,1404052183 +35423,5349,superhero,1404104022 +35423,6218,coming of age,1404103643 +35423,6942,british,1404048540 +35423,6942,great soundtrack,1404048553 +35423,6942,Hugh Grant,1404048547 +35423,6942,Keira Knightley,1404048544 +35423,6942,Romance,1404048550 +35423,7143,martial arts,1404104061 +35423,7169,british actor,1404205653 +35423,7169,hot male actor,1404205640 +35423,7293,funny,1404205411 +35423,7293,happy ending,1404205408 +35423,8636,superhero,1404104329 +35423,8961,Pixar,1404105276 +35423,9010,France,1404052144 +35423,9010,friendship,1404052155 +35423,27523,cute,1404049505 +35423,27523,ending twist,1404049551 +35423,27523,romantic comedy,1404049510 +35423,27815,French Film,1404105078 +35423,27815,Music,1404105078 +35423,27815,Orpan,1404105078 +35423,27869,heartbreaking,1404052781 +35423,27869,won bin,1404052795 +35423,31437,disturbing,1404108741 +35423,31437,lonely,1404108775 +35423,31437,sad kid story,1404108775 +35423,40629,19th century,1404048651 +35423,40629,England,1404048656 +35423,40629,great cinematography,1404048664 +35423,40629,Jane Austen,1404048661 +35423,48394,disturbing,1404052360 +35423,53123,beautiful,1404204740 +35423,53123,bittersweet,1404204717 +35423,53123,charming,1404204724 +35423,53123,great soundtrack,1404204714 +35423,53123,romance,1404204727 +35423,53123,simple,1404204732 +35423,59387,beautiful,1404052275 +35423,59387,cute kid,1404052296 +35423,59387,fantasy,1404052307 +35423,59387,fantasy world,1404052261 +35423,62718,teen,1423925128 +35423,62718,youth,1423925120 +35423,65514,action,1404105286 +35423,65514,martial arts,1404105282 +35423,68358,space,1404103988 +35423,68358,time travel,1404103984 +35423,70521,Jane Austen,1404049294 +35423,70687,quirky,1423925533 +35423,70687,sincere,1423925540 +35423,73017,characters,1404103941 +35423,73319,Ireland,1404205563 +35423,73881,friendship,1404104577 +35423,73881,India,1404104582 +35423,74154,chick flick,1404205535 +35423,74154,set in rome,1404205532 +35423,74624,unrequited love,1404205118 +35423,77240,cinematography,1404047905 +35423,77561,superhero,1404103762 +35423,79572,sisterhood,1424003021 +35423,79702,special FX,1404104300 +35423,80906,business,1404104118 +35423,80906,documentary,1404104115 +35423,81834,British,1404103680 +35423,81847,fairy tale,1404104337 +35423,84716,surreal,1404108425 +35423,85414,time travel,1404103831 +35423,85414,twist ending,1404103834 +35423,85438,beautiful scenery,1404049198 +35423,88129,atmospheric,1404105447 +35423,88163,Emma Stone,1404049588 +35423,88163,funny,1404049605 +35423,88163,Ryan Gosling,1404049602 +35423,89745,all star cast,1404042912 +35423,89745,explosion,1404042912 +35423,89745,fight scene,1404042912 +35423,89745,technology,1404042912 +35423,91630,action,1404103536 +35423,91630,espionage,1404103528 +35423,91630,Romance,1404103532 +35423,91658,predictable,1404110327 +35423,93443,feel good,1423926139 +35423,93988,Just as good as Pride & Prejudice 1995,1404104405 +35423,95510,comic book,1404103513 +35423,95510,Marvel,1404103510 +35423,95510,superhero,1404103503 +35423,97304,great ending,1404105402 +35423,97304,thrilling,1404105402 +35423,97913,animation,1404103849 +35423,97913,disney,1404103845 +35423,97938,great lines,1404104537 +35423,97938,great script,1404104537 +35423,97938,separation,1404104537 +35423,97938,wisdom,1404104537 +35423,98809,adventure,1404103599 +35423,98809,based on a book,1404103603 +35423,98961,military,1404103771 +35423,100714,BORING!,1404107221 +35423,100714,talk only,1404107221 +35423,102125,Marvel,1404103715 +35423,102125,superhero,1404103718 +35423,102445,space,1404103732 +35423,104374,family bonds,1404108085 +35423,104374,fantasy,1404108081 +35423,104374,unusual story,1404108124 +35423,104906,easy,1404053093 +35423,104906,england,1404053040 +35423,104906,fun,1404053091 +35423,104906,handsome actor,1404053120 +35423,104906,Jane Austen,1404053082 +35423,104906,light,1404053082 +35423,104906,prejudice romance,1404053082 +35423,104906,romance,1404053123 +35423,105504,tense,1404103801 +35423,105504,true story,1404103783 +35423,110501,brutal,1404043490 +35423,110501,car chase,1404110945 +35423,110501,complicated fight scene,1404110971 +35423,110501,fight scene,1404043617 +35423,110501,fights,1404043495 +35423,110501,Indonesia,1404043607 +35423,110501,martial arts,1404043485 +35423,110501,yayan ruhian,1404043480 +35423,110882,tom hardy,1410357573 +35423,111364,japan,1404054036 +35423,111364,Monster,1404054021 +35423,112852,action,1410357489 +35423,112852,characters,1410357490 +35423,112852,chris pratt,1410357489 +35423,112852,fun,1410357490 +35423,112852,music,1410357489 +35423,112852,ost,1410357489 +35423,112852,story,1410357489 +35423,128601,pain,1424009982 +35423,128601,tearjerker,1424009970 +35423,128622,crush,1424017847 +35423,128622,love story,1424017843 +35423,140245,feel good,1439044998 +35423,140245,friendship,1439044984 +35423,140245,funny,1439044987 +35423,140245,great scene,1439045071 +35423,140245,relateable,1439045037 +35423,140245,youth,1439045053 +35430,2110,black and white,1360712526 +35430,2110,Steve Martin,1360712517 +35439,395,not at library,1154691753 +35439,7843,not at library,1154691776 +35442,2097,dark,1368031768 +35442,2483,dark,1368031767 +35442,3822,black and white,1368031641 +35442,4432,black and white,1368031641 +35442,5213,christianity,1368031703 +35442,5268,unique,1207376290 +35442,5498,black and white,1368031641 +35442,6260,christianity,1368031703 +35442,6630,christianity,1368031703 +35442,6981,christianity,1368031703 +35442,7260,christianity,1368031703 +35442,8477,black and white,1368031641 +35442,8516,black and white,1368031641 +35442,26003,black and white,1368031641 +35442,26122,dark,1368031768 +35442,27033,dark,1368031767 +35442,31952,dark,1368031768 +35442,46578,road trip,1211781388 +35444,52281,Quinten Tarantino,1177729387 +35450,97,90s,1279089466 +35450,97,cynical,1279089462 +35450,97,french,1279089457 +35450,97,ghetto,1279089485 +35450,97,gritty,1279089442 +35450,97,realistic,1279089451 +35450,97,social commentary,1279089479 +35450,97,still current,1279089447 +35450,97,Vincent Cassel,1279089475 +35450,123,BREAKUPS AND DIVORCES,1279089656 +35450,123,Criterion,1279089639 +35450,123,dreamlike,1279089661 +35450,123,fanciful,1279089642 +35450,123,good music,1279089645 +35450,123,lyrical,1279089667 +35450,123,obsession,1279089653 +35450,123,smuggling,1279089669 +35450,123,urbane,1279089634 +35450,123,wong kar wai,1279089637 +35450,541,atmospheric,1279089605 +35450,541,dreamlike,1279089610 +35450,541,dystopia,1279089616 +35450,541,Harrison Ford,1279089597 +35450,541,Philip K. Dick,1279089599 +35450,541,stylized,1279089595 +35450,850,Tony Leung Chiu Wai,1280800280 +35450,1206,atmospheric,1279239723 +35450,1206,based on a book,1279239741 +35450,1206,quirky,1279239739 +35450,1206,satire,1279239727 +35450,1206,satirical,1279239724 +35450,1206,Stanley Kubrick,1279239732 +35450,1206,stylized,1279239751 +35450,1206,Surrealism,1279239731 +35450,1757,eerie,1279089710 +35450,1757,great soundtrack,1279089707 +35450,1757,moody,1279089725 +35450,1757,motorcycle,1279089730 +35450,1757,stylized,1279089702 +35450,1757,urban,1279089700 +35450,1757,urbane,1279089698 +35450,3083,Spanish,1306468002 +35450,3328,deadpan,1279089523 +35450,3328,flashbacks,1279089561 +35450,3328,hip hop,1279089531 +35450,3328,meditative,1279089526 +35450,3328,melancholy,1279089555 +35450,3328,stylized,1298311174 +35450,3328,television,1279089544 +35450,3328,understated,1279089528 +35450,3328,witty,1298311159 +35450,4027,based on a book,1279089326 +35450,4027,Coen Brothers,1279089315 +35450,4027,George Clooney,1279089337 +35450,4027,great soundtrack,1279089316 +35450,4027,John Goodman,1279089340 +35450,4027,notable soundtrack,1279089349 +35450,4027,Quirky,1279089321 +35450,4027,wired 50 greatest soundtracks,1279089345 +35450,4144,elegant,1282072540 +35450,4144,loneliness,1282072548 +35450,4144,stylized,1282072538 +35450,4144,understated,1282072544 +35450,5995,World War II,1298310023 +35450,8014,Buddhism,1282071092 +35450,8014,episodic,1282071104 +35450,8014,great photograpy,1282071110 +35450,8014,reflective,1282071108 +35450,8014,scenic,1282071107 +35450,8014,wry,1282071137 +35450,8484,World War II,1280864356 +35450,26840,Movielens QuickPick,1280864425 +35450,27266,1960s,1279089263 +35450,27266,androids,1279089234 +35450,27266,enigmatic,1279089221 +35450,27266,erotic,1279089247 +35450,27266,romantic,1279089244 +35450,27266,slow,1279089243 +35450,27266,stylized,1279089214 +35450,27266,time travel,1279089255 +35450,27266,Tony Leung Chiu Wai,1279089223 +35450,27266,trains,1279089249 +35450,27266,Wong Kar Wai,1279089229 +35450,27727,alcoholism,1280786731 +35450,27727,amazing soundtrack,1280786684 +35450,27727,complex characters,1309912470 +35450,27727,rebellion,1280786711 +35450,27727,suicide attempt,1280786718 +35450,27727,wild and fresh,1280786695 +35450,30810,adventure,1279089413 +35450,30810,Bill Murray,1279089384 +35450,30810,comedy,1279089411 +35450,30810,Criterion,1279089397 +35450,30810,great soundtrack,1279089387 +35450,30810,Nudity (Topless),1279089422 +35450,30810,Owen Wilson,1279089404 +35450,30810,quirky,1298311080 +35450,30810,stylized,1279089388 +35450,30810,visually appealing,1298311096 +35450,30810,whimsical,1279089389 +35450,30810,Willem Dafoe,1279089393 +35450,33166,imdb top 250,1279089793 +35450,33166,multiple storylines,1279089768 +35450,33166,Oscar (Best Picture),1279089802 +35450,33166,predictable,1279089760 +35450,33880,deadpan,1298310381 +35450,33880,irreverent,1298310376 +35450,55555,local flavor,1282192818 +35450,55555,turkish music,1282192811 +35450,56782,Daniel Day-Lewis,1306470544 +35450,56782,minimalist,1279089296 +35450,56782,visually appealing,1306470534 +35450,66785,desert,1279089510 +35450,66785,Funny,1276318449 +35450,66785,one of a kind,1279089502 +35450,66785,trains,1279089498 +35450,66785,Weird,1276318455 +35450,71033,Spanish,1306468067 +35450,71899,Philip Seymour Hoffman,1279239800 +35450,77947,triumphant,1298311377 +35450,81591,dance,1293574361 +35450,81591,Darren Aronofsky,1293574338 +35450,81591,madness,1293574329 +35450,81591,Natalie Portman,1293574350 +35450,81591,Vincent Cassel,1293574321 +35452,5110,Nudity (Topless),1237131176 +35452,5110,police,1237131171 +35483,60,based on book,1374384707 +35483,355,Based on a TV show,1374384679 +35483,1032,Disney,1374384652 +35483,1907,Disney,1374384628 +35483,5066,based on a Nicholas Sparks Novel,1374384961 +35483,5066,Romance,1374384972 +35483,8533,Based on Nicholas Sparks Novel,1374384916 +35485,260,darth vader,1444893048 +35485,260,luke skywalker,1444893037 +35485,260,the death star,1444893043 +35487,260,sci-fi,1214534247 +35487,1580,Tommy Lee Jones,1214534165 +35487,1580,Will Smith,1214534161 +35487,4886,animation,1214534195 +35487,4886,Disney,1214534199 +35487,4886,Pixar,1214534192 +35487,5952,based on a book,1214534181 +35507,1717,lousy story,1185983273 +35507,2478,kids movie,1185983289 +35507,4270,good adventure,1185983270 +35507,4975,claustrofobic,1185983275 +35507,6218,standard story but funy,1185983322 +35510,3000,anime,1403902100 +35510,3000,Hayao Miyazaki,1403902090 +35510,3000,Studio Ghibli,1403902102 +35510,3000,surreal,1403902093 +35510,34405,sci-fi,1402419369 +35510,34405,space,1402419362 +35516,260,entertaining,1436604515 +35516,260,good versus evil,1436604530 +35518,6289,Titanic,1184910050 +35524,260,Harrison Ford,1432020110 +35524,260,Mark Hamill,1432020097 +35524,260,Star Wars,1432020087 +35524,54286,action,1432048491 +35524,54286,matt damon,1432048491 +35524,54286,spy,1432048491 +35529,431,redemption,1304161429 +35529,1270,adventure,1304161642 +35555,260,cult classic,1434133800 +35555,260,sci-fi,1434133830 +35555,260,space epic,1434133719 +35555,3300,good concept,1434135639 +35555,3300,Riddick,1434135632 +35555,8371,Riddick,1434137986 +35555,8371,sci-fi,1434137978 +35555,76093,cute,1434138450 +35555,104243,sci-fi,1434138041 +35585,1245,neo-noir,1453437398 +35585,1245,stylized,1453437402 +35585,1245,twists & turns,1453437396 +35585,1617,detective thriller,1453565423 +35585,1617,film noir,1453565435 +35585,1617,great acting,1453565431 +35585,1617,neo-noir,1453565420 +35585,1704,excellent script,1453434823 +35585,1704,feel-good,1453434808 +35585,1704,heartwarming,1453434821 +35585,1704,inspirational,1453434811 +35585,1704,mentor,1453434813 +35585,2395,coming of age,1453432063 +35585,2395,Quirky,1453432069 +35585,3897,bittersweet,1453432196 +35585,3897,coming of age,1453432186 +35585,3897,humorous,1453432190 +35585,3897,understated,1453432199 +35585,5945,road trip,1453431941 +35585,5989,con artists,1453434923 +35585,5989,feel good movie,1453434919 +35585,6867,charming,1453431968 +35585,6867,interesting characters,1453431957 +35585,6867,loneliness,1453431970 +35585,6867,quirky,1453431963 +35585,6867,small town,1453431952 +35585,6867,unlikely friendships,1453431975 +35585,8970,bittersweet,1453437165 +35585,8970,Heartwarming,1453437161 +35585,30707,Bittersweet,1453434555 +35585,38061,fast-paced dialogue,1453841008 +35585,38061,witty,1453841004 +35585,51935,conspiracy,1453584451 +35585,68073,funny,1453432153 +35585,69122,funny,1453562643 +35585,69122,Hilarious,1453562661 +35585,81845,excellent script,1453436683 +35585,81845,feel-good,1453436687 +35585,81845,royalty,1453436692 +35585,96821,bittersweet,1453432321 +35585,96821,character development,1453432318 +35585,96821,coming of age,1453432328 +35585,102993,coming of age,1453432243 +35585,102993,heartwarming,1453432245 +35585,114060,subtlety,1453437312 +35595,260,epic adventure,1430507024 +35595,260,space opera,1430506992 +35599,260,starwars,1444167399 +35599,589,terminator,1444543018 +35599,77561,Iron Man,1444543038 +35599,79132,inception,1444167521 +35599,87232,X-men First,1444543093 +35599,89745,The Avengers,1444542933 +35599,111362,X-men,1444542967 +35613,64034,childish naivity,1421323791 +35613,64034,sad,1421323756 +35613,64034,touching,1421323777 +35613,64034,World War II,1421323805 +35613,120635,action,1421152955 +35613,120635,crime,1421325786 +35614,260,classic,1444461868 +35614,260,sci-fi,1444461864 +35621,17,british,1341136162 +35621,5377,british,1341136201 +35621,5380,british,1341136179 +35621,6942,british,1341187544 +35621,34332,michael angarano,1341186537 +35621,40629,british,1341136169 +35621,49957,british,1341185752 +35621,52975,musical,1341187526 +35621,53956,british,1341187140 +35621,60141,british,1341186434 +35621,63239,musical,1341187351 +35621,68073,british,1341136405 +35621,71579,british,1341136187 +35621,92509,channing tatum,1341185726 +35621,95088,aubrey plaza,1341185351 +35621,95510,andrew garfield,1341554144 +35621,114250,French,1411282544 +35621,114250,Kristin Scott Thomas,1411282572 +35638,356,biography,1364974827 +35638,356,inspirational,1364974811 +35638,356,Tom Hanks,1364974816 +35638,356,vietnam war,1364974819 +35638,468,British,1364994609 +35638,778,addiction,1364975949 +35638,778,black comedy,1364975952 +35638,778,British,1364975962 +35638,778,classic,1364975973 +35638,778,dark comedy,1364975968 +35638,778,drugs,1364975977 +35638,778,great soundtrack,1364975980 +35638,778,social commentary,1364975987 +35638,778,surreal,1364975990 +35638,1046,adolescent gays,1364976778 +35638,1046,cheesy,1364976754 +35638,1046,child abuse,1364976775 +35638,1046,gay romance,1364976772 +35638,1246,bittersweet,1364977467 +35638,1246,coming of age,1364977474 +35638,1246,high school,1364977485 +35638,1246,inspirational,1364977460 +35638,1246,philosophy,1364977462 +35638,1246,Robin Williams,1364977456 +35638,1246,school,1364977483 +35638,1259,1960s,1364977001 +35638,1259,childhood,1364976997 +35638,1259,coming of age,1364976977 +35638,1259,friendship,1364976990 +35638,1259,nostalgic,1364976981 +35638,1259,River Phoenix,1364977012 +35638,1259,Stephen King,1364976986 +35638,1259,wistful,1364977036 +35638,1611,gay,1364978062 +35638,1611,Keanu Reeves,1364978033 +35638,1611,River Phoenix,1364978052 +35638,1611,Shakespeare,1364978036 +35638,1611,updated classics,1364978058 +35638,1734,children,1364976377 +35638,1734,gender identity,1364976407 +35638,1734,queer,1364976382 +35638,1734,smart kids,1364976386 +35638,1734,symbolism,1364976390 +35638,1784,classic,1364974779 +35638,1784,Comedy,1364974744 +35638,1784,Helen Hunt,1364974738 +35638,1784,Jack Nicholson,1364974733 +35638,1784,neurosis,1364974760 +35638,1784,obsessive compulsive disorder,1364974750 +35638,1784,psychology,1364974770 +35638,1784,quirky,1364974785 +35638,1784,relationships,1364974773 +35638,2324,holocaust,1365001229 +35638,2324,sentimental,1365001212 +35638,2324,World War II,1365001200 +35638,2542,black comedy,1364974487 +35638,2542,British,1364974491 +35638,2542,comedy,1364974493 +35638,2542,dark comedy,1364974497 +35638,2542,drugs,1364974526 +35638,2542,funny,1364974521 +35638,2542,Guy Ritchie,1364974501 +35638,2542,hilarious,1364974552 +35638,2542,Jason Statham,1364974503 +35638,2542,marijuana,1364974506 +35638,2542,multiple storylines,1364974512 +35638,2607,adolescence gays,1364976606 +35638,2607,coming of age,1364976617 +35638,2607,coming out,1364976614 +35638,2607,gay,1364976607 +35638,2607,high school,1364976628 +35638,2607,queer,1364976631 +35638,2626,coming of age,1364976813 +35638,2626,coming out,1364976836 +35638,2626,gay,1364976804 +35638,2626,homosexuality,1364976824 +35638,3083,Almodovar,1364976310 +35638,3083,homosexuality,1364976314 +35638,3083,Pedro Almodovar,1364976319 +35638,3083,queer,1364976325 +35638,3083,Spanish,1364976332 +35638,3967,ballet,1364978660 +35638,3967,boxing,1364978656 +35638,3967,british,1364978651 +35638,3967,coming of age,1364978654 +35638,3967,father-son relationship,1364978665 +35638,3967,heartwarming,1364978675 +35638,3967,independent film,1364978680 +35638,3967,self discovery,1364978687 +35638,3967,working class,1364978688 +35638,4147,coming of age,1364977122 +35638,4147,firendship,1364977142 +35638,4147,gay,1364977158 +35638,4147,homosexuality,1364977118 +35638,4147,sexuality,1364977147 +35638,4147,Spanish,1364977151 +35638,4765,child abuse,1364976539 +35638,4765,Paul Dano,1364976524 +35638,5225,bittersweet,1364976075 +35638,5225,coming of age,1364976082 +35638,5225,compassionate,1364976112 +35638,5225,Mexico,1364976092 +35638,5225,quirky,1364976104 +35638,5225,road trip,1364976100 +35638,5225,witty,1364976097 +35638,6244,Bombay,1364975774 +35638,6244,dark side of India,1364975726 +35638,6244,drugs,1364975730 +35638,6244,India,1364975734 +35638,6244,institutions,1364975824 +35638,6244,Mumbai,1364975739 +35638,6244,pimps,1364975744 +35638,6244,poverty,1364975755 +35638,6244,prostitution,1364975790 +35638,6244,runaway,1364975780 +35638,6244,street children,1364975759 +35638,6244,tea,1364975765 +35638,6244,urban,1364975795 +35638,7147,adventure,1364975341 +35638,7147,bittersweet,1364975312 +35638,7147,Coen Brothers,1364975348 +35638,7147,coming of age,1364975357 +35638,7147,dreamlike,1364975297 +35638,7147,fantasy,1364975303 +35638,7147,quirky,1364975317 +35638,7147,reflective,1364975320 +35638,7147,surreal,1364975324 +35638,7147,surrealism,1364975330 +35638,7147,thought-provoking,1364975333 +35638,7147,Tim Burton,1364975352 +35638,7147,twist ending,1364975337 +35638,9010,fantastical imagery,1364975527 +35638,9010,French,1364975520 +35638,9010,Marion Cotillard,1364975515 +35638,9010,sad ending,1364975533 +35638,27261,bisexual,1364977432 +35638,27261,France,1364977416 +35638,27261,French,1364977409 +35638,27261,gay,1364977404 +35638,27261,queer,1364977425 +35638,27826,culture clash,1364978781 +35638,27826,gay,1364978789 +35638,27826,Mother Son relationship,1364978795 +35638,27904,drugs,1364995757 +35638,27904,Keanu Reeves,1364995715 +35638,27904,Philip K. Dick,1364995720 +35638,27904,philosophical,1364995761 +35638,27904,psychology,1364995765 +35638,27904,Robert Downey Jr.,1364995726 +35638,27904,stylized,1364995770 +35638,27904,surreal,1364995732 +35638,27904,visually appealing,1364995737 +35638,31408,bittersweet,1364977089 +35638,31408,coming of age,1364977086 +35638,31408,Gay Lead Character,1364977068 +35638,31408,Germany,1364977081 +35638,33171,controversial,1364976480 +35638,33171,gay,1364976486 +35638,33171,homosexuality,1364976484 +35638,33171,Joseph Gordon-Levitt,1364976472 +35638,33171,queer,1364976491 +35638,33880,bittersweet,1364977640 +35638,33880,divorced,1364977684 +35638,33880,dysfunctional family,1364977676 +35638,33880,independent film,1364977645 +35638,33880,irreverent,1364977650 +35638,33880,multiracial children,1364977711 +35638,33880,multiracial family,1364977700 +35638,33880,quirky,1364977656 +35638,33880,scat fetish,1364977732 +35638,33880,sexual awakening,1364977669 +35638,33880,surreal,1364977722 +35638,39183,1970s,1364977338 +35638,39183,bittersweet,1364977321 +35638,39183,cheesy,1364977309 +35638,39183,cliche,1364977363 +35638,39183,contrived,1364977353 +35638,39183,emotional,1364977326 +35638,39183,homosexuality,1364977315 +35638,39183,melancholy,1364977318 +35638,39183,scenic,1364977330 +35638,39183,sexuality,1364977334 +35638,40870,1970s,1364976287 +35638,40870,brother-brother relationship,1364976274 +35638,40870,coming of age,1364976143 +35638,40870,drugs,1364976283 +35638,40870,father-son relationship,1364976270 +35638,40870,gay,1364976139 +35638,40870,Gay Lead Character,1364976263 +35638,40870,homosexuality,1364976146 +35638,40870,humorous,1364976173 +35638,40870,questioning sexuality,1364976246 +35638,40870,quirky,1364976151 +35638,40870,religion,1364976161 +35638,40870,smoking,1364976250 +35638,45506,birth mark,1364977980 +35638,45506,bullying,1364977931 +35638,45506,child abuse,1364977973 +35638,45506,children,1364977886 +35638,45506,disfigured,1364977985 +35638,45506,dysfunctional family,1364977968 +35638,45506,innocence,1364977945 +35638,45506,loss of innocence,1364977950 +35638,46976,Dustin Hoffman,1364975385 +35638,46976,Emma Thompson,1364975381 +35638,46976,heartbreaking,1364975423 +35638,46976,heartwarming,1364975417 +35638,46976,insanity,1364975430 +35638,46976,Maggie Gyllenhaal,1364975378 +35638,46976,narrated,1364975435 +35638,46976,quirky,1364975440 +35638,46976,schizophrenia,1364975445 +35638,46976,surreal,1364975394 +35638,46976,touching,1364975408 +35638,46976,Will Ferrell,1364975390 +35638,48516,action,1364974596 +35638,48516,atmospheric,1364974590 +35638,48516,Jack Nicholson,1364974583 +35638,48516,Leonardo DiCaprio,1364974581 +35638,48516,psychology,1364974618 +35638,48516,undercover cop,1364974603 +35638,49957,adolescence,1364977210 +35638,49957,beautiful,1364977241 +35638,49957,bittersweet,1364977244 +35638,49957,British,1364977220 +35638,49957,gay,1364977206 +35638,49957,queer,1364977200 +35638,49957,Richard Griffiths,1364977195 +35638,52579,addiction,1364975607 +35638,52579,art,1364975619 +35638,52579,French,1364975623 +35638,52579,great acting,1364975630 +35638,52579,Marion Cotillard,1364975594 +35638,52579,nonlinear,1364975598 +35638,52579,Paris,1364975667 +35638,52579,touching,1364975602 +35638,57669,beautiful scenery,1364974445 +35638,57669,black comedy,1364974405 +35638,57669,british comedy,1364974409 +35638,57669,comedy,1364974412 +35638,57669,dark,1364974420 +35638,57669,dark comedy,1364974416 +35638,57669,drugs,1364974426 +35638,57669,friendship,1364974428 +35638,59995,Andrew Garfield,1364978809 +35638,59995,British,1364978822 +35638,59995,identity,1364978833 +35638,59995,intelligent,1364978830 +35638,59995,sex scenes,1364978842 +35638,63082,compassionate,1364975141 +35638,63082,gritty,1364975178 +35638,63082,India,1364975101 +35638,63082,nonlinear,1364975107 +35638,63082,social commentary,1364975116 +35638,63082,visually appealing,1364975120 +35638,64957,bittersweet,1364975198 +35638,64957,Brad Pitt,1364975212 +35638,64957,episodic,1364975233 +35638,64957,original plot,1364975221 +35638,64957,philosophical,1364975228 +35638,64957,touching,1364975226 +35638,69604,Larry David,1364994946 +35638,79242,comedy,1364978724 +35638,79242,dysfunctional family,1364978710 +35638,79242,father-son relationship,1364978706 +35638,79242,humorous,1364978701 +35638,79242,intelligent,1364978715 +35638,79242,interracial romance,1364978718 +35638,92259,based on a true story,1364974960 +35638,92259,classical music,1364974951 +35638,92259,disability,1364974920 +35638,92259,emotional,1364974923 +35638,92259,feel good movie,1364974925 +35638,92259,friendship,1364974927 +35638,92259,funny,1364974929 +35638,92259,hilarious,1364974931 +35638,92259,paralysis,1364974988 +35638,92259,Personality change,1364974994 +35638,92259,rich and poor,1364974983 +35638,92259,soundtrack,1364975000 +35638,92259,touching,1364975004 +35638,92259,upper class,1364975010 +35638,92259,wheelchair,1364975013 +35638,96821,captivating,1364976940 +35638,96821,character development,1364976960 +35638,96821,coming of age,1364976948 +35638,96821,Emma Watson,1364976905 +35638,96821,touching,1364976953 +35644,296,blood,1429974367 +35644,296,crime,1429974367 +35644,296,quentin tarantino,1429974367 +35644,3785,funny,1429975976 +35644,3785,parody,1429975967 +35644,3785,stupid,1429975974 +35644,100083,cast,1429976087 +35644,100083,crude humor,1429976080 +35644,100083,embarassing scenes,1429976083 +35644,100083,offensive,1429976084 +35644,115617,friendship,1429990159 +35644,115617,funny,1429990162 +35644,115617,inspiring,1429990152 +35670,1968,high school,1225297987 +35676,364,animals,1241822919 +35676,364,Disney,1241822926 +35676,364,lions,1241822431 +35676,364,talking animals,1241822950 +35676,5502,aliens,1241878628 +35676,5502,ridiculous,1241878616 +35676,5502,silly,1241878681 +35676,5502,stupid,1241878613 +35676,33004,based on a book,1241864863 +35676,33004,dolphins,1241864870 +35676,33004,hitchhiker,1241864926 +35676,33004,humor,1241864874 +35676,33004,sarcasm,1241864884 +35676,33004,sci-fi,1241864887 +35676,33004,seen more than once,1241864892 +35676,33004,space,1241864877 +35676,34150,boring,1241823034 +35676,49263,free speech,1241878389 +35676,49263,Nudity (Topless - Brief),1241878384 +35676,49263,Nudity (Topless),1241878381 +35676,62999,lions,1241877232 +35676,62999,setting:Africa,1241877224 +35676,66297,boring,1241905099 +35676,66297,overrated,1241905084 +35676,66297,stupid,1241905907 +35676,66934,too short,1241974386 +35685,260,space adventure,1433151627 +35685,260,space travel,1433151647 +35692,2329,holocaust,1241383830 +35692,2329,Nazis,1241383801 +35692,2329,Neo-Nazis,1241383799 +35692,2329,powerful ending,1241383820 +35692,2329,racism,1241383795 +35692,2329,skinhead,1241383811 +35692,2329,violence,1241383813 +35692,60291,Gonzo journalism,1241298885 +35692,60291,Hunter S. Thompson,1241298882 +35707,2858,coming of age,1363487679 +35707,2858,social commentary,1363487675 +35707,2858,thought-provoking,1363487669 +35714,93479,france,1436341998 +35714,93479,war drama,1436341998 +35714,93479,world war ii,1436341998 +35727,593,1990s,1422222926 +35727,593,serial killer,1422222926 +35727,593,thriller,1422222926 +35729,90430,good acting,1448026787 +35729,90430,social commentary,1448026802 +35758,260,epic,1439797575 +35758,260,sci-fi,1439797563 +35758,260,space,1439797587 +35770,5618,anime,1441177391 +35770,5618,Japan,1441177384 +35770,64993,Makoto Shinkai,1441177530 +35770,64993,visually stunning,1441177550 +35770,85179,Mamoru Hosoda,1441177480 +35840,260,classic sci-fi,1442809984 +35840,260,scifi,1442809953 +35845,70,George Clooney,1291317386 +35845,70,Sexualized violence,1291317397 +35845,70,vampires,1291317399 +35845,170,Angelina Jolie,1291316251 +35845,170,hacking,1291316253 +35845,208,post-apocalyptic,1291317839 +35845,208,steampunk,1291317842 +35845,253,New Orleans,1291317862 +35845,253,vampires,1291317860 +35845,296,Bruce Willis,1291318496 +35845,296,nonlinear,1291318498 +35845,296,Quentin Tarantino,1291318491 +35845,296,Samuel L. Jackson,1291318506 +35845,353,great soundtrack,1291319415 +35845,541,cyberpunk,1291317884 +35845,541,dystopia,1291317886 +35845,648,espionage,1291317747 +35845,1080,Monty Python,1291317970 +35845,1136,Monty Python,1291317465 +35845,1193,depressing,1291317823 +35845,1193,mental illness,1291317802 +35845,1193,psychology,1291317817 +35845,1214,atmospheric,1291317902 +35845,1214,sci-fi,1291317906 +35845,1214,suspense,1291317899 +35845,1241,gore,1291315063 +35845,1241,zombies,1291315051 +35845,1339,erotic,1291319250 +35845,1339,gothic,1291319254 +35845,1339,vampires,1291319245 +35845,1527,campy,1291317922 +35845,1527,sci-fi,1291317930 +35845,1673,dark comedy,1291318742 +35845,1673,drugs,1291318745 +35845,2167,Badass,1291319300 +35845,2167,vampires,1291319294 +35845,2361,campy,1291316685 +35845,2628,Natalie Portman,1291316199 +35845,2762,twist ending,1291317322 +35845,3186,Angelina Jolie,1291316333 +35845,3819,charming,1291319107 +35845,3819,ramen,1291319105 +35845,4226,nonlinear,1291317348 +35845,4226,twist ending,1291317342 +35845,4367,Angelina Jolie,1291316362 +35845,5128,bad acting,1291319382 +35845,5128,soundtrack,1291319374 +35845,5128,Vampires,1291319352 +35845,5489,Klaus Kinski,1291319205 +35845,5489,vampires,1291319213 +35845,5971,Cute,1291315368 +35845,5971,kids and family,1291315394 +35845,6323,confusing,1291317711 +35845,6323,multiple personalities,1291317692 +35845,6323,psychology,1291317705 +35845,6323,twist ending,1291317700 +35845,6564,Angelina Jolie,1291316380 +35845,6711,bittersweet,1291315467 +35845,6711,Scarlett Johansson,1291315430 +35845,6711,tokyo,1291315441 +35845,6731,tense,1291315755 +35845,6731,zombies,1291315744 +35845,6960,raunchy,1291318254 +35845,7265,cineastic,1291317091 +35845,7265,erotic,1291317062 +35845,25771,experimental,1291315616 +35845,25771,mindfuck,1291315621 +35845,25771,surrealism,1291315618 +35845,26467,post-apocalyptic,1291318041 +35845,27317,disturbing,1291317729 +35845,27317,tense,1291317732 +35845,27351,based on manga,1291315682 +35845,27351,dark humor,1291315690 +35845,27351,insanity,1291315668 +35845,27351,surrealism,1291315695 +35845,33683,gore,1291319540 +35845,33683,New French Extremism,1291319685 +35845,33683,plot twist,1291319529 +35845,36535,artsy,1291318607 +35845,36535,broken English,1291318598 +35845,36535,Eugene Hutz,1291318592 +35845,42385,parkour,1291318344 +35845,56367,cult film,1291315907 +35845,56367,witty,1291315911 +35845,58964,New French Extremism,1291319713 +35845,62203,disturbing,1291319503 +35845,62203,extremely violent,1291319509 +35845,62203,probably hardest gore ever,1291319516 +35845,62203,shocking,1291319507 +35845,62434,Sex Comedy,1291319065 +35845,66310,New French Extremism,1291319667 +35845,68157,Nazis,1291316993 +35845,68157,Quentin Tarantino,1291316991 +35845,71700,asylum,1291316838 +35845,71700,rape,1291316848 +35845,73211,innovative,1291316881 +35845,73211,intense,1291316896 +35858,1206,open ending,1294784838 +35858,55820,open ending,1294784476 +35858,71464,open ending,1294784623 +35875,4011,l,1139677524 +35900,106002,True to the book,1383494601 +35918,8644,Sci fi,1200346216 +35918,57528,ridiculously spiritual,1206560506 +35946,260,escapist,1430209085 +35946,260,pulp,1430209047 +35946,260,space opera,1430209063 +35946,59976,dry humor,1430209633 +35946,59976,Italian,1430209656 +35946,59976,neo-realist,1430209646 +35956,6885,serial killer,1225990633 +35956,26007,based on a book,1225990738 +35960,1227,rape,1189946684 +35960,2352,no inspiration.,1369922160 +35960,2352,No vision,1369922160 +35964,296,bloody,1171829892 +35964,296,stylized,1171829892 +35964,296,Tarantino,1171829892 +35964,296,Very violent,1171829892 +35964,34048,aliens,1172618689 +35964,34048,deathray,1172618689 +35964,34048,invasion,1172618689 +35964,34048,single father,1172618689 +35964,34520,blonde,1172618432 +35964,34520,breasts,1172618432 +35964,34520,car chase,1172618432 +35964,34520,Incest,1172618432 +35964,34520,redneck,1172618432 +35964,35957,bazooka,1172618349 +35964,35957,hit by car,1172618349 +35964,35957,homeland security,1172618349 +35964,36519,fetish clothes,1172618226 +35964,36531,snakes,1172618093 +35964,36531,teen movie,1172618093 +35964,36531,voodoo,1172618093 +35964,36531,zombies,1172618093 +35964,40278,war,1138317588 +35964,48780,costume drama,1173488267 +35964,48780,drowning,1173488251 +35964,48780,electricity,1173488185 +35964,48780,surprising ending,1173488185 +35964,48780,teleportation,1173488185 +35964,48877,ending twist,1173572529 +35964,48877,flashbacks,1173572529 +35964,48877,gore,1173572529 +35964,94864,3D version,1344118930 +35964,94864,aliens,1344118983 +35964,94864,character motivation,1344119088 +35964,94864,Charlize Theron,1344118927 +35964,94864,dialogue,1344119157 +35964,94864,Michael Fassbender,1344119070 +35964,94864,Noomi Rapace,1344119005 +35964,94864,Political Correctness,1344119127 +35964,94864,predictable,1344118917 +35964,94864,religious overtones,1344119097 +35964,94864,Ridley Scott,1344119061 +35964,94864,scenography,1344119138 +35964,94864,scifi,1344118922 +35964,94864,sequel bait,1344118947 +35964,133782,dark,1432321723 +35964,133782,family,1432321731 +35964,133782,sad,1432321726 +35974,110,adventure,1345840575 +35974,110,based on a true story,1345840597 +35974,110,british,1345840617 +35974,110,england,1345840612 +35974,110,historical,1345840553 +35974,110,imdb top 250,1345840572 +35974,110,inspirational,1345840599 +35974,110,Mel Gibson,1345840593 +35974,110,Oscar (Best Directing),1345840605 +35974,110,Oscar (Best Picture),1345840589 +35974,110,war,1345840610 +35974,1617,complicated,1383778433 +35974,1617,Drama,1383779550 +35974,1617,imdb top 250,1383779543 +35974,1617,Kevin Spacey,1383778451 +35974,1617,predictable,1383779579 +35974,1617,predictable ending,1383778807 +35974,1617,Russell Crowe,1383778455 +35974,1617,suspense,1383778470 +35974,1732,black comedy,1384645184 +35974,1732,comedy,1384645195 +35974,1732,dark comedy,1384645197 +35974,1732,off-beat comedy,1384645199 +35974,1732,satirical,1384645203 +35974,2395,Nudity (Topless),1341531115 +35974,2858,bittersweet,1347531861 +35974,2858,dark comedy,1347531858 +35974,2858,Kevin Spacey,1347531856 +35974,2858,Nudity (Topless),1347531877 +35974,2858,Oscar (Best Actor),1347531874 +35974,2858,reflective,1347531883 +35974,2858,social commentary,1347531866 +35974,2858,violence,1347531888 +35974,5445,artificial intelligence,1361560815 +35974,5445,based on a book,1361560812 +35974,5445,Milla Jovovich,1361560920 +35974,5445,Steven Spielberg,1361560808 +35974,5445,surveillance,1361560821 +35974,5445,Tom Cruise,1361560807 +35974,5445,violence,1361560818 +35974,6323,dark,1382914803 +35974,6323,psychology,1382914789 +35974,6323,split personality,1382914805 +35974,6323,thriller,1382914797 +35974,6323,twist ending,1382914793 +35974,8950,atmospheric,1343331150 +35974,8950,dark,1343331147 +35974,8950,powerful ending,1343331140 +35974,8950,stylized,1343331152 +35974,8950,twist ending,1343331154 +35974,27020,Angelina Jolie,1341530958 +35974,27020,based on a true story,1341530936 +35974,27020,fast paced,1341530940 +35974,27020,models,1341530961 +35974,27020,Nudity (Full Frontal),1341530932 +35974,27020,Nudity (Topless - Notable),1341530952 +35974,30793,silly fun,1343248341 +35974,33836,bad,1347533369 +35974,33836,Nicole Kidman,1347533344 +35974,33836,Romantic Comedy,1347533362 +35974,33836,witch,1347533348 +35974,44191,based on a book,1346360865 +35974,44191,inspirational,1346360864 +35974,44191,politics,1346360864 +35974,44191,prison,1346360862 +35974,44191,social commentary,1346360861 +35974,44191,thought-provoking,1346360861 +35974,48516,Jack Nicholson,1385214394 +35974,48516,Leonardo DiCaprio,1385214391 +35974,48516,psychology,1385214398 +35974,48516,Stupid ending,1385214412 +35974,51255,british comedy,1385528325 +35974,56167,bad acting,1375807426 +35974,56167,irritating,1375807449 +35974,56167,overacting,1375807428 +35974,56167,Stupid as Hell,1375807425 +35974,58559,action,1343131668 +35974,58559,Atmospheric,1343131671 +35974,58559,Christian Bale,1343131649 +35974,58559,Heath Ledger,1343131653 +35974,58559,imdb top 250,1343131666 +35974,58559,Morgan Freeman,1343131656 +35974,64983,based on a true story,1384569835 +35974,64983,exciting,1384569829 +35974,64983,Tom Cruise,1384569815 +35974,64983,true story,1384569817 +35974,64983,World War II,1384569826 +35974,66798,Aishwarya Rai,1384570292 +35974,71838,enjoyable,1385476761 +35974,71838,Gerard Butler,1385476751 +35974,71838,unrealistic,1385476747 +35974,73290,based on a true story,1364153548 +35974,73290,not enough dramatic,1364153540 +35974,73290,Richard Gere,1364153553 +35974,79702,fight scenes,1344105468 +35974,84189,revenge,1346618255 +35974,84189,torture,1346618262 +35974,85022,Nudity (Full - Male),1341531001 +35974,85736,not a movie,1347870207 +35974,92509,based on a true story,1333191812 +35974,92509,ending kinda ruined it,1333191885 +35974,92509,predictable movie,1333191885 +35974,92509,Rachel McAdams,1333191885 +35974,92509,romance,1333191886 +35974,92509,romantic,1333191885 +35974,95441,crude humor,1376555493 +35974,96821,slow,1389832503 +35974,97921,drama,1387389407 +35974,97921,Jennifer Lawrence,1387389407 +35974,97938,cinematography,1361129622 +35974,97938,Direction,1361129624 +35974,97938,great photograpy,1361129627 +35974,97938,religious overtones,1361129629 +35974,97938,spiritual journey,1361129632 +35974,103042,Allegory: Superman = Christ. His mother - Virgin Mary. Story of Moses,1371730445 +35974,103042,Another Superhero,1371730458 +35974,103042,Over-the-top action.,1371730440 +35974,103042,second half was worse,1371730439 +35974,103042,Superman,1371730461 +35974,104841,3D effects,1383251009 +35974,104841,acting,1383251023 +35974,104841,cinematography,1383250980 +35974,104841,cliche characters,1383251037 +35974,104841,clooney dies,1383250966 +35974,104841,George Clooney,1383250975 +35974,104841,space,1383251003 +35974,104841,visually appealing,1383251029 +35974,104879,acting,1384474681 +35974,104879,focus on the white family,1384474664 +35974,104879,Hugh Jackman,1384474669 +35974,104879,Jake Gyllenhaal,1384474674 +35974,104879,photography,1384474700 +35974,104913,based on a true story,1389727884 +35974,104913,interesting characters,1389727910 +35979,4296,tear-jerker,1199879270 +35980,8949,modern male friendship,1446239571 +35980,8949,Searching,1446239588 +36025,413,comedy,1187412229 +36025,540,thriller,1187412328 +36025,707,drama,1187412277 +36025,1245,must see,1187412415 +36025,1298,musical,1187412320 +36025,1416,musical,1187412415 +36025,1438,thriller,1187412100 +36025,1441,romantic comedy,1187412242 +36025,1587,action,1187412073 +36025,1589,action packed,1187412417 +36025,1590,sci-fi,1187412102 +36025,1779,sci-fi,1187412334 +36025,1883,drama,1187412051 +36025,2405,adventure,1187412186 +36025,2423,comedy,1187412417 +36025,2431,komediodramat,1187412313 +36025,2478,western comedy,1187412162 +36025,2485,romantic comedy,1187412414 +36025,2872,adventure,1187412103 +36025,2951,western,1187412265 +36025,2953,family comedy,1187412127 +36025,3481,Classic,1188166237 +36025,4367,adventure,1187412198 +36025,4878,Cool but freaky,1188166170 +36025,6016,drama,1187412258 +36025,6188,Funny as hell,1188166363 +36025,6373,comedy,1187412249 +36025,6870,drama,1187412208 +36025,8528,Funny as hell,1188166154 +36042,260,classic,1433051573 +36042,260,sci-fi,1433051560 +36042,112552,drums,1433052590 +36042,112552,jazz,1433052590 +36042,112552,music,1433052590 +36042,112552,school drama,1433052590 +36068,2621,wenge,1438273449 +36068,139893,mi yang,1438273476 +36068,139901,cantonese,1438273530 +36068,139901,cathay pacific,1438273522 +36068,139901,hong kong,1438273526 +36068,139901,tvb,1438273532 +36083,94864,best visual effects I've ever seen,1340266743 +36083,94864,Charlize Theron,1340266707 +36083,94864,prequel,1340266813 +36111,260,good vs evil,1442163832 +36111,260,oldie but goodie,1442163837 +36111,260,Science Fiction,1442163771 +36111,260,space action,1442163777 +36123,66509,Adam Sandler,1277387434 +36127,6591,Nudity (Full Frontal - Notable),1173653401 +36133,49651,sport:boxing,1194839126 +36152,57528,myTag1,1428730132 +36152,57528,myTag2,1428730139 +36171,2959,twist ending,1364839215 +36188,3147,drama,1437675284 +36188,3147,prison,1437675282 +36188,3147,social commentary,1437675296 +36188,6874,Quentin Tarantino,1437675376 +36188,6874,stylized,1437675379 +36188,8340,prison escape,1437675344 +36188,116797,cryptography,1437675359 +36196,161,Denzel Washington,1241252638 +36196,161,Gene Hackman,1241252639 +36196,161,submarine,1241252642 +36196,161,Viggo Mortensen,1241252645 +36196,318,friendship,1240998670 +36196,318,Morgan Freeman,1240998658 +36196,318,prison,1240998662 +36196,318,prison escape,1240998664 +36196,318,reflective,1240998666 +36196,318,Stephen King,1240998660 +36196,356,bittersweet,1240999312 +36196,356,comedy,1240999309 +36196,356,drama,1240999310 +36196,356,great acting,1240999314 +36196,356,history,1240999316 +36196,356,Tom Hanks,1240999305 +36196,356,Vietnam,1240999307 +36196,364,animation,1240999136 +36196,364,Disney animated feature,1240999143 +36196,364,father-son relationship,1240999131 +36196,364,fun,1240999134 +36196,364,musical,1240999146 +36196,364,seen more than once,1240999153 +36196,733,Action,1241252689 +36196,733,Ed Harris,1241252682 +36196,733,great soundtrack,1241252701 +36196,733,Hans Zimmer,1241252714 +36196,733,Michael Bay,1241252673 +36196,733,Nicolas Cage,1241252670 +36196,733,Sean Connery,1241252671 +36196,780,action,1248082477 +36196,780,alien invasion,1248082489 +36196,780,conspiracy theory,1248082497 +36196,780,Jeff Goldblum,1248082841 +36196,780,scifi,1248082494 +36196,780,Will Smith,1248082491 +36196,1059,Amazing Cinematography,1240998476 +36196,1059,Baz Luhrmann,1240998472 +36196,1059,Claire Danes,1240998470 +36196,1059,colourful,1286282549 +36196,1059,great soundtrack,1286282545 +36196,1059,Leonardo DiCaprio,1240998492 +36196,1198,action,1240998739 +36196,1198,adventure,1240998741 +36196,1198,comedy,1240998753 +36196,1198,Harrison Ford,1240998743 +36196,1198,indiana jones,1240998746 +36196,1198,treasure,1240998751 +36196,1210,action,1240998633 +36196,1210,adventure,1240998635 +36196,1210,Harrison Ford,1240998618 +36196,1210,sci-fi,1240998622 +36196,1210,Star Wars,1240998620 +36196,1291,Adventure,1240999200 +36196,1291,Harrison Ford,1240999188 +36196,1291,indiana jones,1240999193 +36196,1291,Sean Connery,1240999189 +36196,1371,Enterprise,1241888536 +36196,1371,Leonard Nimoy,1241888505 +36196,1371,Science Fiction,1241888524 +36196,1371,Space,1241888531 +36196,1371,Star Trek,1241888507 +36196,1371,William Shatner,1241888515 +36196,1374,Science Fiction,1241888588 +36196,1374,space,1241888572 +36196,1374,Star Trek,1241888567 +36196,1374,William Shatner,1241888569 +36196,1573,John Woo,1286282654 +36196,1573,Nicholas Cage,1286282659 +36196,1573,ridiculous,1286282662 +36196,1610,action,1240999283 +36196,1610,based on a book,1240999287 +36196,1610,cold war,1240999281 +36196,1610,jack ryan,1240999292 +36196,1610,MIND GAMES,1240999277 +36196,1610,Race against time,1240999276 +36196,1610,Sean Connery,1240999268 +36196,1610,seen more than once,1240999295 +36196,1610,submarine,1240999271 +36196,1610,tense,1240999273 +36196,1610,Tom Clancy,1240999269 +36196,1682,dark comedy,1240998513 +36196,1682,dystopia,1240998516 +36196,1682,Ed Harris,1305569220 +36196,1682,Jim Carrey,1240998511 +36196,1682,social commentary,1240998527 +36196,1917,Billy Bob Thornton,1248082874 +36196,1917,Bruce Willis,1248082871 +36196,1917,space program,1248082879 +36196,1961,autism,1240998709 +36196,1961,Dustin Hoffman,1240998710 +36196,1961,Exceptional Acting,1240998726 +36196,1961,rape,1240998719 +36196,1961,road movie,1240998722 +36196,1961,Tom Cruise,1240998713 +36196,2571,Action,1240998915 +36196,2571,artificial intelligence,1240998917 +36196,2571,atmospheric,1240998918 +36196,2571,computers,1240998920 +36196,2571,cult film,1240998922 +36196,2571,cyberpunk,1240998924 +36196,2571,dystopia,1240998913 +36196,2571,hackers,1240998946 +36196,2571,Keanu Reeves,1240998908 +36196,2571,martial arts,1240998926 +36196,2571,philosophical,1240998939 +36196,2571,sci-fi,1240998930 +36196,2571,stylized,1240998931 +36196,2571,virtual reality,1240998928 +36196,2605,heist,1287241136 +36196,2605,Sean Connery,1287241139 +36196,2762,Atmospheric,1305569656 +36196,2762,Bruce Willis,1305569655 +36196,2762,stylized,1305569654 +36196,2762,twist ending,1305569652 +36196,2762,unique,1305569665 +36196,2763,heist,1287240079 +36196,2763,Pierce Brosnan,1287240075 +36196,2959,Edward Norton,1305569641 +36196,2959,psychology,1305569633 +36196,2959,thought-provoking,1305569631 +36196,2959,twist ending,1305569628 +36196,3831,Craig Ferguson,1246747418 +36196,4027,comedy,1249843278 +36196,4027,George Clooney,1249843263 +36196,4027,great soundtrack,1249843269 +36196,4027,John Goodman,1249843271 +36196,4027,prison escape,1249843266 +36196,4226,cult film,1240998834 +36196,4226,nonlinear,1240998823 +36196,4226,psychology,1305569614 +36196,4226,twist ending,1240998825 +36196,4306,Eddie Murphy,1305569270 +36196,4306,Funny,1305569264 +36196,4306,Mike Myers,1305569262 +36196,4306,parody,1305569263 +36196,4306,satire,1305569269 +36196,4308,Baz Luhrmann,1240998801 +36196,4308,colourful,1240998760 +36196,4308,Ewan McGregor,1240998762 +36196,4308,musical,1240998767 +36196,4308,Nicole Kidman,1240998769 +36196,4308,passionate,1240998775 +36196,4308,seen more than once,1240998779 +36196,4308,sentimental,1240998789 +36196,4308,Sexualized violence,1240998784 +36196,4308,stylized,1240998787 +36196,4993,adventure,1240999112 +36196,4993,atmospheric,1240999114 +36196,4993,awesome soundtrack,1240999116 +36196,4993,high fantasy,1240999110 +36196,4993,Peter Jackson,1240999108 +36196,5388,Al Pacino,1246483740 +36196,5388,Christopher Nolan,1246483744 +36196,5952,adventure,1240999071 +36196,5952,awesome soundtrack,1240999072 +36196,5952,fantasy,1240999064 +36196,5952,Peter Jackson,1240999065 +36196,6249,homophobia,1243796627 +36196,6249,worst films ever,1243796654 +36196,6378,car chase,1252012218 +36196,6378,con men,1252012222 +36196,6378,Edward Norton,1252012214 +36196,6378,great soundtrack,1252012244 +36196,6378,heist,1252012209 +36196,6378,Jason Statham,1252012225 +36196,6378,twists & turns,1252012228 +36196,6942,Alan Rickman,1240998971 +36196,6942,british,1240998973 +36196,6942,ensemble cast,1240998978 +36196,6942,Hugh Grant,1240998957 +36196,6942,Keira Knightley,1240998959 +36196,6942,Liam Neeson,1240998961 +36196,6942,love,1240999000 +36196,6942,multiple storylines,1240998955 +36196,6942,Romance,1240998964 +36196,6942,uplifting,1240998966 +36196,7153,adventure,1240999097 +36196,7153,atmospheric,1240999099 +36196,7153,awesome soundtrack,1240999101 +36196,7153,magic,1240999091 +36196,7153,Peter Jackson,1240999084 +36196,30749,Africa,1240999335 +36196,30749,depressing,1240999338 +36196,30749,ethnic conflict,1240999333 +36196,30749,factual,1240999340 +36196,30749,genocide,1240999342 +36196,30749,history,1240999343 +36196,30749,journalism,1240999349 +36196,30749,propaganda,1240999352 +36196,30749,Tragedy,1240999356 +36196,30749,true story,1240999330 +36196,30749,United Nations,1240999331 +36196,32460,Comedy,1240999167 +36196,32460,Mafia,1240999170 +36196,32460,Moritz Bleibtreu,1240999161 +36196,32460,road trip,1240999163 +36196,36529,arms dealer,1240999021 +36196,36529,Ethan Hawke,1240999019 +36196,36529,Nicolas Cage,1240999008 +36196,36529,poignant,1240999013 +36196,36529,political,1240999010 +36196,36529,World Politics,1240999014 +36196,44195,dark comedy,1240998553 +36196,44195,dark humor,1240998566 +36196,44195,funny,1240998574 +36196,44195,independent film,1240998577 +36196,44195,movie to see,1240998581 +36196,44195,public relations,1240998597 +36196,44195,satire,1305569239 +36196,48780,atmospheric,1305569696 +36196,48780,Christian Bale,1305569697 +36196,48780,steampunk,1305569700 +36196,48780,twist ending,1305569699 +36196,53121,computer animation,1240659406 +36196,54648,cheesy,1241252607 +36196,54648,comedy,1241252594 +36196,54648,kung fu,1241252594 +36196,56174,alone in the world,1240999511 +36196,56174,post-apocalyptic,1240999501 +36196,56174,suspenseful,1240999540 +36196,56174,Will Smith,1240999506 +36196,56174,zombies,1240999508 +36196,58295,heist,1240999415 +36196,58295,Jason Statham,1240999403 +36196,58295,london,1240999405 +36196,58295,Notable Nudity,1240999412 +36196,58295,small time criminals,1240999409 +36196,58803,blackjack,1250018082 +36196,58803,casino,1250018085 +36196,58803,Kevin Spacey,1250018079 +36196,58803,Las Vegas,1250018089 +36196,58803,poker,1250018093 +36196,64249,computer animation,1240659719 +36196,67255,based on a book,1256072703 +36196,67255,computers,1256072693 +36196,67255,dark,1256072696 +36196,67408,3D,1240658841 +36196,67408,animation,1240659768 +36196,67408,computer animation,1240658925 +36196,67408,Dreamworks,1240658992 +36196,68358,future,1243761663 +36196,68358,FX,1242131084 +36196,68358,sci fi,1242131071 +36196,68358,Star Trek,1242131073 +36196,68358,time travel,1242131075 +36196,68358,Unsteady-cam,1243761647 +36196,69654,prison escape,1286282501 +36196,69654,Wentworth Miller,1286282505 +36196,71535,clever,1305568204 +36196,71535,dark comedy,1305568209 +36196,71535,funny,1305568212 +36196,71535,horror,1305568215 +36196,71535,parody,1305568218 +36196,71535,post-apocalyptic,1305568219 +36196,71535,road trip,1305568221 +36196,71535,witty,1305568225 +36196,71535,zombies,1305568232 +36196,72378,apocalypse,1298575667 +36196,72378,John Cusack,1298575664 +36196,72378,So bad it's good,1298575674 +36196,72378,Special Effects,1298575669 +36196,84772,aliens,1305569299 +36196,84772,comedy,1305569302 +36196,84772,geeky,1305569308 +36196,84772,Nick Frost,1305569313 +36196,84772,Simon Pegg,1305569316 +36199,373,J.T. Walsh,1287854163 +36199,81092,screenwriters,1319420254 +36199,81092,screenwriting,1319420260 +36212,260,classic,1439791907 +36212,260,Science Fiction,1439791910 +36212,260,space action,1439791906 +36214,911,audrey hepburn,1139972012 +36214,1262,runaway,1139972055 +36214,8033,audrey hepburn,1139971915 +36219,260,Science Fiction,1436787609 +36219,260,scifi,1436787600 +36253,8910,existentialism,1160007424 +36253,33138,brilliant,1160218521 +36253,39183,gay,1160007329 +36263,260,classic sci-fi,1441363853 +36263,260,good vs evil,1441363867 +36263,260,space adventure,1441363874 +36298,110,Gibson,1219149634 +36298,2324,Benigni,1252690393 +36298,2324,bittersweet,1252690356 +36298,2324,father-son relationship,1252690366 +36298,2324,Holocaust,1252690380 +36298,2324,Italy,1252690390 +36298,2324,maintaining illusion,1252690387 +36298,48032,Benigni,1219149599 +36298,56171,based on a book,1252690057 +36298,56171,fairy tale,1252690052 +36298,56171,fantasy world,1252689958 +36298,56171,Phillip Pullman,1252690075 +36298,56171,talking animals,1252689966 +36298,56171,trilogy,1252690065 +36298,56171,witches,1252690069 +36298,68954,cartoon,1278629455 +36298,68954,children,1278629459 +36298,68954,friendship,1278629467 +36298,68954,talking animals,1278629480 +36306,72998,3d,1262924584 +36306,72998,incredible 3D,1262924587 +36320,87909,terrible acting,1345105166 +36320,87909,terrifying,1345105163 +36341,356,box of chocolate,1421325695 +36341,356,rolig,1421325695 +36341,356,söt,1421325695 +36342,110,mel gibson,1452553915 +36342,64622,Kate Winslet,1450131667 +36343,64614,Clint Eastwood,1375125573 +36343,64614,ending,1375125576 +36353,85414,action,1404921128 +36353,85414,Jake Gyllenhaal,1404921112 +36353,85414,military,1404921116 +36353,85414,parallel universe,1404921104 +36353,85414,powerful ending,1404921123 +36353,85414,terrorism,1404921126 +36353,85414,time travel,1404921108 +36353,85414,twist ending,1404921120 +36367,838,Austen,1243168407 +36367,838,book was better,1243168444 +36367,68358,Star Trek,1243168518 +36392,260,classic,1434413612 +36392,260,epic,1434413605 +36392,260,science fiction,1434413607 +36399,260,adventure,1441980649 +36399,260,epic,1441980636 +36405,53322,Brad Pitt,1186081456 +36406,6881,Japan,1137262043 +36409,260,classic,1441086303 +36409,260,Science Fiction,1441086293 +36426,428,Great movie,1188503713 +36426,1091,funny,1188503697 +36426,2409,not the best rocky,1188503696 +36426,3113,horror,1188503694 +36426,4015,funny,1188503752 +36437,260,"action, scifi",1441130639 +36437,260,classic sci-fi,1441130652 +36437,32587,Action,1441562790 +36437,32587,black comedy,1441562803 +36437,32587,game based,1441562766 +36443,7582,Bette Davis,1168331902 +36443,7582,remade as Rich and Famous,1168331902 +36443,26414,Robert Altman,1168332108 +36443,31584,Holocaust,1168330992 +36443,31584,mothers and daughters,1168331013 +36443,31584,remembrance,1168331005 +36443,31584,women,1168331005 +36443,34608,a classic,1168329331 +36443,34608,women in publishing,1168329315 +36445,260,space,1437927133 +36445,260,stars,1437927121 +36445,112552,drum,1438031022 +36445,112552,inpirational,1438031022 +36445,112552,music,1438031022 +36514,260,space epic,1438997566 +36514,260,underdog story,1438997584 +36515,41566,fantasy world,1442233704 +36515,109487,space physics,1442233672 +36536,52952,England,1446425744 +36536,53956,British,1446425430 +36536,55444,music,1446425569 +36536,55444,rock and roll,1446425567 +36594,59485,documentary,1424627871 +36594,59485,marijuana,1424627871 +36594,59485,war on drugs,1424627871 +36607,593,fairly scary movie. Lasse J,1453287671 +36666,260,good vs evil,1440112538 +36666,260,sci-fi,1440112492 +36666,919,classic,1440113951 +36666,919,Musical,1440113957 +36666,2571,cool,1440113824 +36666,3000,didactic,1440113770 +36676,260,heroic journey,1441989904 +36676,260,Science Fiction,1441989941 +36679,260,awesome,1437353910 +36679,260,scifi cult,1437353921 +36696,1015,talking animals,1441954084 +36714,2722,action,1426740406 +36714,2722,suspense,1426740440 +36718,2,Dynamic CGI Action,1303947323 +36718,10,espionage,1304115690 +36718,19,hilarious,1304009205 +36718,31,gangsters,1304113248 +36718,31,high school,1304113230 +36718,32,dystopia,1303922648 +36718,32,time travel,1303922648 +36718,32,twist ending,1303922648 +36718,47,psychological,1304005352 +36718,47,serial killer,1304005352 +36718,47,twist ending,1304005352 +36718,50,organized crime,1304002734 +36718,50,twist ending,1304002734 +36718,70,plot twist,1303941581 +36718,70,vampires,1303941581 +36718,76,artificial intelligence,1304005373 +36718,76,post-apocalyptic,1304005373 +36718,163,organized crime,1304000984 +36718,173,dystopia,1304082802 +36718,223,black and white,1304006828 +36718,223,hilarious,1304006817 +36718,229,dialogue driven,1303945829 +36718,229,psychological,1303945829 +36718,229,revenge,1303945829 +36718,288,serial killer,1303947242 +36718,293,assassin,1303944419 +36718,293,organized crime,1304002781 +36718,296,multiple storylines,1303939869 +36718,296,nonlinear,1303939869 +36718,296,organized crime,1304003249 +36718,316,aliens,1304005174 +36718,316,space,1304005084 +36718,344,detective,1304005030 +36718,344,hilarious,1303943429 +36718,350,courtroom,1303947849 +36718,353,revenge,1303947869 +36718,370,hilarious,1303948107 +36718,377,claustrophobic,1304005235 +36718,405,immortality,1304117202 +36718,410,gothic,1303947555 +36718,420,police,1304118195 +36718,431,mafia,1303949033 +36718,431,organized crime,1304002914 +36718,434,mountain climbing,1303947152 +36718,435,aliens,1304082360 +36718,454,courtroom,1303947199 +36718,480,Dynamic CGI Action,1304547437 +36718,508,courtroom,1303947672 +36718,520,parody,1303949588 +36718,541,artificial intelligence,1303922542 +36718,541,dystopia,1303922548 +36718,586,christmas,1303947128 +36718,589,artificial intelligence,1303922486 +36718,589,Dynamic CGI Action,1303939308 +36718,589,dystopia,1303922478 +36718,589,time travel,1303922493 +36718,593,psychological,1304005341 +36718,593,serial killer,1304005289 +36718,611,hell,1304113017 +36718,628,courtroom,1304095787 +36718,628,psychological,1304095789 +36718,628,twist ending,1304095788 +36718,694,revenge,1304113319 +36718,724,supernatural,1303948939 +36718,724,teens,1303948939 +36718,778,drugs,1304003166 +36718,785,bowling,1303948587 +36718,802,psychological,1303948234 +36718,802,superhero,1303948234 +36718,805,courtroom,1304112306 +36718,805,racism,1304112306 +36718,832,revenge,1303948002 +36718,891,slasher,1304113753 +36718,891,teens,1304113890 +36718,910,black and white,1304426529 +36718,919,dreamlike,1303947281 +36718,924,artificial intelligence,1303882695 +36718,924,space,1303882654 +36718,1028,dreamlike,1303999925 +36718,1028,surreal,1303999925 +36718,1032,dreamlike,1304169630 +36718,1032,fairy tale,1304169633 +36718,1032,surreal,1304169640 +36718,1047,organized crime,1304002792 +36718,1061,based on a true story,1303949000 +36718,1061,prison,1303948994 +36718,1084,based on a true story,1303948651 +36718,1089,multiple storylines,1303944096 +36718,1089,nonlinear,1303944096 +36718,1089,organized crime,1304003267 +36718,1092,suspense,1303948396 +36718,1097,aliens,1304006639 +36718,1120,based on a true story,1303948770 +36718,1127,aliens,1304002476 +36718,1127,Dynamic CGI Action,1304002476 +36718,1129,dystopia,1303948885 +36718,1129,prison,1303948888 +36718,1193,psychological,1304005655 +36718,1206,dystopia,1303882435 +36718,1206,psychological,1303945154 +36718,1209,atmospheric,1303944299 +36718,1215,time travel,1303948290 +36718,1215,zombies,1303948294 +36718,1232,dialogue driven,1303940488 +36718,1232,dystopia,1303939487 +36718,1232,psychological,1303945436 +36718,1233,claustrophobic,1304603270 +36718,1255,gore,1304082343 +36718,1258,psychological,1303945427 +36718,1265,time travel,1304095937 +36718,1267,politics,1303948793 +36718,1267,psychological,1303948787 +36718,1270,time travel,1304007942 +36718,1275,immortality,1303948544 +36718,1347,slasher,1303949394 +36718,1347,teens,1304112883 +36718,1350,antichrist,1304009590 +36718,1350,religion,1304009586 +36718,1350,supernatural,1304009598 +36718,1371,aliens,1303948752 +36718,1371,space,1303948749 +36718,1373,aliens,1303949308 +36718,1373,space,1303949305 +36718,1374,aliens,1303946936 +36718,1374,space,1303946894 +36718,1375,aliens,1304116997 +36718,1375,space,1304117001 +36718,1376,aliens,1304117146 +36718,1376,space,1304117146 +36718,1377,superhero,1303948310 +36718,1485,courtroom,1303947757 +36718,1515,natural disaster,1304010680 +36718,1544,Dynamic CGI Action,1304547442 +36718,1552,prison,1303948124 +36718,1573,revenge,1303947741 +36718,1584,alien contact,1304006801 +36718,1584,space,1304006802 +36718,1586,military,1303949467 +36718,1597,conspiracy,1303948568 +36718,1616,conspiracy,1304010217 +36718,1625,atmospheric,1303948050 +36718,1625,psychological,1303948045 +36718,1625,twist ending,1303948043 +36718,1645,courtroom,1304006684 +36718,1645,psychological,1304006684 +36718,1645,supernatural,1304006684 +36718,1672,courtroom,1304010198 +36718,1682,dystopia,1303922247 +36718,1722,espionage,1303948279 +36718,1748,Dynamic CGI Action,1303939275 +36718,1748,dystopia,1303922629 +36718,1748,surreal,1303922629 +36718,1779,alien contact,1303943759 +36718,1779,psychological,1303945542 +36718,1799,organized crime,1304012113 +36718,1799,twist ending,1304012105 +36718,1810,courtroom,1304010292 +36718,1884,drugs,1303945724 +36718,1884,road trip,1304111740 +36718,1884,surreal,1303945724 +36718,1916,dialogue driven,1304006864 +36718,1918,martial arts,1303949015 +36718,1918,organized crime,1304002940 +36718,1921,black and white,1303940718 +36718,1921,mathematics,1303939944 +36718,1921,psychological,1303945380 +36718,1921,religion,1303939944 +36718,1923,hilarious,1304005161 +36718,1954,boxing,1303948131 +36718,1954,sports,1304117295 +36718,1961,based on a true story,1304096156 +36718,1961,mental illness,1304096156 +36718,1967,dreamlike,1304006002 +36718,1967,surreal,1304006002 +36718,1969,slasher,1304112813 +36718,1969,teens,1304112926 +36718,1970,slasher,1304112807 +36718,1970,teens,1304112894 +36718,1971,slasher,1304112802 +36718,1972,slasher,1304112768 +36718,1972,teens,1304112888 +36718,1974,slasher,1304010667 +36718,1976,slasher,1304113651 +36718,1977,slasher,1304113658 +36718,1978,slasher,1304113666 +36718,1979,slasher,1304113669 +36718,1980,slasher,1304113676 +36718,1981,slasher,1304113687 +36718,1982,slasher,1304113795 +36718,1982,teens,1304113915 +36718,1983,slasher,1304113726 +36718,1983,teens,1304113877 +36718,1984,slasher,1304113763 +36718,1984,teens,1304113894 +36718,1985,slasher,1304113805 +36718,1985,teens,1304113906 +36718,1986,slasher,1304113729 +36718,1986,teens,1304113880 +36718,1994,supernatural,1303948844 +36718,2003,Christmas,1303948410 +36718,2004,monster,1304010093 +36718,2022,religion,1304538895 +36718,2058,plot twist,1304005798 +36718,2058,psychological,1304005799 +36718,2100,mythology,1303948343 +36718,2100,romance,1303948343 +36718,2107,slasher,1304113739 +36718,2107,teens,1304113883 +36718,2132,dialogue driven,1304002616 +36718,2132,psychological,1304002616 +36718,2134,high school,1304113152 +36718,2134,teens,1304113152 +36718,2140,alternate universe,1304001028 +36718,2174,alternate reality,1304074990 +36718,2174,supernatural,1304074991 +36718,2232,claustrophobic,1304002534 +36718,2232,psychological,1304001784 +36718,2291,dreamlike,1304006596 +36718,2291,fairy tale,1303947491 +36718,2291,surreal,1303947472 +36718,2297,alternate reality,1304010550 +36718,2297,dreamlike,1304010572 +36718,2297,religion,1304010572 +36718,2297,surreal,1304010572 +36718,2321,alternate reality,1303948145 +36718,2321,surreal,1303948140 +36718,2329,prison,1304002355 +36718,2329,racism,1304112411 +36718,2340,supernatural,1304009781 +36718,2353,espionage,1303948069 +36718,2360,dialogue driven,1304012829 +36718,2360,plot twist,1304012820 +36718,2360,psychological,1304012820 +36718,2360,twist ending,1304012809 +36718,2376,espionage,1304116003 +36718,2402,jungle,1304009946 +36718,2407,aliens,1303948459 +36718,2409,sports,1304117272 +36718,2410,sports,1304117308 +36718,2411,sports,1304116938 +36718,2412,sports,1304117287 +36718,2459,slasher,1304118301 +36718,2460,slasher,1304093285 +36718,2483,religion,1304169872 +36718,2483,supernatural,1304169872 +36718,2490,organized crime,1304094697 +36718,2502,hilarious,1303944310 +36718,2539,mafia,1303948871 +36718,2539,organized crime,1304002923 +36718,2539,psychology,1303948867 +36718,2542,multiple storylines,1303940901 +36718,2542,organized crime,1304003246 +36718,2571,artificial intelligence,1303882718 +36718,2571,Dynamic CGI Action,1303938980 +36718,2571,dystopia,1303922384 +36718,2571,martial arts,1303882077 +36718,2571,virtual reality,1303938615 +36718,2594,psychological,1304005645 +36718,2594,surreal,1304005645 +36718,2594,virtual reality,1304005645 +36718,2640,superhero,1304114807 +36718,2641,superhero,1304114809 +36718,2642,super-hero,1304114812 +36718,2642,superhero,1304009799 +36718,2643,superhero,1304114817 +36718,2700,parody,1303949554 +36718,2706,high school,1303947252 +36718,2706,teens,1304111919 +36718,2707,conspiracy,1304009115 +36718,2710,disturbing,1303882526 +36718,2710,mockumentary,1303882526 +36718,2710,supernatural,1304003052 +36718,2710,suspense,1303882526 +36718,2712,atmospheric,1303945738 +36718,2712,psychological,1303945738 +36718,2717,supernatural,1303949267 +36718,2762,psychological,1303945526 +36718,2762,supernatural,1303943908 +36718,2762,twist ending,1303943908 +36718,2827,aliens,1304082324 +36718,2867,vampires,1304012375 +36718,2916,dystopia,1304003199 +36718,2916,virtual reality,1304003199 +36718,2942,dance,1304010693 +36718,2947,espionage,1304115716 +36718,2948,espionage,1303949454 +36718,2949,espionage,1304115427 +36718,2953,Christmas,1303949638 +36718,2959,atmospheric,1303882316 +36718,2959,psychological,1303945174 +36718,2959,twist ending,1303882280 +36718,2985,dystopia,1304005531 +36718,2985,superhero,1304005531 +36718,2987,private detective,1303947415 +36718,2989,espionage,1304115761 +36718,2990,espionage,1304010536 +36718,2991,espionage,1304009972 +36718,2995,Dynamic CGI Action,1304006288 +36718,2995,haunted house,1304006170 +36718,2995,supernatural,1304006158 +36718,2997,plot twist,1303943370 +36718,2997,surreal,1303943370 +36718,3006,based on a true story,1303948857 +36718,3052,parody,1304000962 +36718,3052,religion,1304000962 +36718,3082,espionage,1304116339 +36718,3147,prison,1303947722 +36718,3156,artificial intelligence,1304007162 +36718,3156,dystopia,1304007162 +36718,3160,multiple storylines,1303944391 +36718,3168,road trip,1304009883 +36718,3174,based on a true story,1303949347 +36718,3247,religion,1303949429 +36718,3253,hilarious,1303948265 +36718,3254,hilarious,1304009846 +36718,3262,detective,1304003119 +36718,3262,surreal,1304003119 +36718,3285,island,1304009734 +36718,3396,road trip,1304116914 +36718,3409,supernatural,1304006479 +36718,3448,based on a true story,1303948683 +36718,3471,alien contact,1304001992 +36718,3503,alien contact,1303943887 +36718,3503,psychological,1303945534 +36718,3503,space,1303943887 +36718,3503,twist ending,1303943887 +36718,3510,supernatural,1304006449 +36718,3510,time travel,1304006449 +36718,3513,courtroom,1304005513 +36718,3513,military,1304005513 +36718,3527,aliens,1304118393 +36718,3535,psychological,1303945201 +36718,3535,serial killer,1303942243 +36718,3593,aliens,1304082312 +36718,3593,scientology,1304082297 +36718,3633,espionage,1304115567 +36718,3635,espionage,1304115967 +36718,3638,espionage,1304115338 +36718,3638,space,1304115342 +36718,3639,espionage,1304115588 +36718,3697,aliens,1304118391 +36718,3699,aliens,1304010243 +36718,3704,post-apocalyptic,1304113577 +36718,3793,Dynamic CGI Action,1304117711 +36718,3793,superhero,1304117675 +36718,3826,Dynamic CGI Action,1304006270 +36718,3863,dreamlike,1304002048 +36718,3863,serial killer,1304002048 +36718,3863,surreal,1304002048 +36718,3863,virtual reality,1304002048 +36718,3868,parody,1303949454 +36718,3869,parody,1304010035 +36718,3877,superhero,1304114840 +36718,3889,immortality,1304117218 +36718,3917,hell,1304112995 +36718,3918,hell,1304113085 +36718,3919,hell,1304113003 +36718,3948,hilarious,1303948019 +36718,3949,drugs,1303944128 +36718,3949,psychological,1303945507 +36718,3984,espionage,1304115746 +36718,3988,Christmas,1304009564 +36718,3994,superhero,1304003006 +36718,3994,twist ending,1304003006 +36718,3996,atmospheric,1304001731 +36718,3996,martial arts,1304001727 +36718,4005,espionage,1304116022 +36718,4011,multiple storylines,1303939654 +36718,4011,organized crime,1304003261 +36718,4011,twist ending,1303939654 +36718,4015,hilarious,1304006646 +36718,4022,monologue driven,1304001463 +36718,4022,psychological,1304005049 +36718,4022,stranded,1303947787 +36718,4084,police,1304118200 +36718,4085,police,1304118190 +36718,4214,high school,1304117128 +36718,4214,teens,1304117119 +36718,4226,nonlinear,1303944377 +36718,4226,psychological,1303945500 +36718,4226,twist ending,1303944377 +36718,4226,twists & turns,1303944377 +36718,4238,mental illness,1304112600 +36718,4262,organized crime,1304002932 +36718,4326,based on a true story,1304112394 +36718,4326,racism,1304112394 +36718,4370,artificial intelligence,1303943468 +36718,4370,dystopia,1303943468 +36718,4370,fairy tale,1303943468 +36718,4446,alien invasion,1303945677 +36718,4446,post-apocalyptic,1303945677 +36718,4502,Christmas,1304089115 +36718,4544,artificial intelligence,1304114758 +36718,4545,artificial intelligence,1304114750 +36718,4638,Dynamic CGI Action,1304547432 +36718,4744,monster,1304006055 +36718,4777,black and white,1304002440 +36718,4777,space,1304002440 +36718,4855,revenge,1304082430 +36718,4865,serial killer,1304115143 +36718,4873,dreamlike,1304002668 +36718,4873,drugs,1304002668 +36718,4873,physics,1304002668 +36718,4873,surreal,1304002668 +36718,4878,atmospheric,1303882370 +36718,4878,psychological,1303945164 +36718,4878,surreal,1303882370 +36718,4878,time travel,1303882370 +36718,4887,alternate universe,1303944277 +36718,4887,Dynamic CGI Action,1303944247 +36718,4887,martial arts,1303944247 +36718,4975,psychology,1304002707 +36718,4975,romance,1304002707 +36718,4975,surreal,1304002707 +36718,4975,virtual reality,1304002707 +36718,5054,psychological,1303945226 +36718,5153,disturbing,1303882674 +36718,5153,suspense,1303882674 +36718,5319,twist ending,1304005691 +36718,5319,twists & turns,1304005739 +36718,5349,Dynamic CGI Action,1304117776 +36718,5349,superhero,1304117762 +36718,5388,psychology,1303947023 +36718,5445,dystopia,1303922683 +36718,5476,slasher,1304113749 +36718,5476,teens,1304113886 +36718,5528,psychological,1304012504 +36718,5679,supernatural,1304005552 +36718,5734,disturbing,1304086770 +36718,5735,disturbing,1304089126 +36718,5736,disturbing,1304086781 +36718,5810,based on a true story,1304010029 +36718,5872,espionage,1304116391 +36718,5881,alien contact,1303943809 +36718,5881,romance,1303943816 +36718,5881,space,1303939607 +36718,5903,dystopia,1303922604 +36718,5903,martial arts,1303922604 +36718,5903,post-apocalyptic,1303938844 +36718,5949,gambling,1303944499 +36718,5949,organized crime,1304002881 +36718,5989,based on a true story,1303948691 +36718,6016,multiple storylines,1304006845 +36718,6184,aliens,1304005840 +36718,6214,disturbing,1303944472 +36718,6214,nonlinear,1303944472 +36718,6214,revenge,1303944472 +36718,6242,atmospheric,1303944064 +36718,6242,disturbing,1303944064 +36718,6250,aliens,1304114568 +36718,6281,dialogue driven,1303944197 +36718,6281,serial killer,1303944197 +36718,6323,multiple storylines,1303944956 +36718,6323,serial killer,1303944956 +36718,6323,twist ending,1303944956 +36718,6333,Dynamic CGI Action,1304117749 +36718,6333,superhero,1304117686 +36718,6365,artificial intelligence,1303882711 +36718,6365,Dynamic CGI Action,1303939197 +36718,6365,martial arts,1303882089 +36718,6365,virtual reality,1303938600 +36718,6373,religion,1303949362 +36718,6615,slasher,1304113933 +36718,6618,Dynamic CGI Action,1303938910 +36718,6618,martial arts,1303881698 +36718,6645,dystopia,1304004675 +36718,6645,psychological,1304004675 +36718,6711,atmospheric,1303948216 +36718,6755,mummy,1304034092 +36718,6880,slasher,1304118307 +36718,6934,artificial intelligence,1303940797 +36718,6934,Dynamic CGI Action,1303940797 +36718,6934,martial arts,1303940806 +36718,6934,post-apocalyptic,1303942053 +36718,6934,romance,1303940797 +36718,6934,virtual reality,1303940797 +36718,6957,Christmas,1304074963 +36718,6975,dialogue driven,1303945080 +36718,6975,serial killer,1303945080 +36718,6975,torture,1303945080 +36718,7024,disturbing,1304444899 +36718,7024,torture,1304444899 +36718,7090,atmospheric,1303921890 +36718,7090,martial arts,1303921890 +36718,7235,disturbing,1303882185 +36718,7254,romance,1303943263 +36718,7254,time travel,1303943231 +36718,7254,twist ending,1303943231 +36718,7361,alternate reality,1303942030 +36718,7361,dreamlike,1303944681 +36718,7361,nonlinear,1303941992 +36718,7361,romance,1303941991 +36718,7361,surreal,1303941991 +36718,7460,black and white,1304625592 +36718,7460,dialogue driven,1304625608 +36718,7570,espionage,1304115986 +36718,7573,espionage,1304117023 +36718,7935,dialogue driven,1304011934 +36718,7935,psychological,1304011934 +36718,8014,buddhism,1304169104 +36718,8636,Dynamic CGI Action,1304117783 +36718,8636,superhero,1304117764 +36718,8644,Dynamic CGI Action,1303944976 +36718,8644,dystopia,1303944976 +36718,8810,aliens,1304118402 +36718,8914,dialogue driven,1303944157 +36718,8914,physics,1303944157 +36718,8914,time travel,1303944157 +36718,8950,atmospheric,1303944405 +36718,8950,psychological,1303945491 +36718,8950,twist ending,1303944405 +36718,8957,serial killer,1303942461 +36718,8957,torture,1303942496 +36718,8957,twist ending,1303942602 +36718,26152,superhero,1304116990 +36718,26203,artificial intelligence,1304006806 +36718,26326,psychedelic,1305523014 +36718,26326,religion,1305523014 +36718,26326,surreal,1305523014 +36718,26471,hilarious,1303943609 +36718,26471,stand up,1303943617 +36718,26630,surreal,1304113560 +36718,26934,martial arts,1304006410 +36718,27005,dialogue driven,1303941043 +36718,27005,psychological,1303945248 +36718,27005,twist ending,1303941043 +36718,27482,claustrophobic,1304002552 +36718,27482,psychological,1304002552 +36718,27608,dystopia,1303944545 +36718,27608,mythology,1303944545 +36718,27788,romance,1303941021 +36718,27788,time travel,1303941021 +36718,27904,conspiracy,1304005460 +36718,27904,drugs,1304005460 +36718,27904,surreal,1304005460 +36718,27905,Dynamic CGI Action,1304002221 +36718,27905,martial arts,1304002221 +36718,27905,surreal,1304002221 +36718,30791,hell,1304113054 +36718,31696,hell,1304113107 +36718,31696,supernatural,1304001951 +36718,31804,alternate reality,1303940125 +36718,31804,atmospheric,1303940089 +36718,31804,Dynamic CGI Action,1303940089 +36718,31804,surreal,1303940125 +36718,31804,vampires,1303940089 +36718,31878,Dynamic CGI Action,1303938944 +36718,31878,martial arts,1303882100 +36718,32213,psychological,1304001320 +36718,32415,infection,1304083729 +36718,32587,atmospheric,1304005259 +36718,32587,multiple storylines,1304005252 +36718,32587,superhero,1304005253 +36718,32587,surreal,1304005253 +36718,32979,disturbing,1304459457 +36718,32979,revenge,1304459457 +36718,33004,space,1304006353 +36718,33164,teens,1304113995 +36718,37495,surreal,1303939465 +36718,39446,serial killer,1303942520 +36718,39446,torture,1303942520 +36718,39446,twist ending,1303942520 +36718,43022,hell,1304113038 +36718,45081,atmospheric,1303881861 +36718,45081,blood,1303881861 +36718,45081,Dynamic CGI Action,1303939283 +36718,45499,Dynamic CGI Action,1304117743 +36718,45499,superhero,1304117681 +36718,46530,superhero,1304114825 +36718,47999,religion,1304112032 +36718,48043,alternate reality,1303882250 +36718,48043,atmospheric,1303882329 +36718,48043,buddhism,1304169122 +36718,48043,nonlinear,1303944727 +36718,48043,surreal,1303882250 +36718,48043,twist ending,1303944727 +36718,48082,dreamlike,1304005389 +36718,48082,psychological,1304005389 +36718,48082,surreal,1304005389 +36718,48385,mockumentary,1304002271 +36718,48385,satire,1304002271 +36718,48394,fairy tale,1303944226 +36718,48394,mythology,1303944782 +36718,48394,supernatural,1303944226 +36718,48394,surreal,1303944226 +36718,48394,twist ending,1303944226 +36718,48780,psychological,1304005601 +36718,48780,twist ending,1304005601 +36718,48877,serial killer,1303942539 +36718,48877,torture,1303942539 +36718,48877,twist ending,1303942539 +36718,49272,espionage,1304116418 +36718,50011,dystopia,1304111624 +36718,50011,surreal,1304111624 +36718,50886,religion,1304424456 +36718,50886,terrorism,1304424452 +36718,50886,twist ending,1304424462 +36718,51662,atmospheric,1303882573 +36718,51662,blood,1303882573 +36718,51662,Dynamic CGI Action,1303939095 +36718,52328,physics,1303943710 +36718,52328,psychological,1303945554 +36718,52328,space,1303943710 +36718,52722,Dynamic CGI Action,1304117792 +36718,52722,superhero,1304117767 +36718,52950,atmospheric,1303943103 +36718,52950,Dynamic CGI Action,1303943103 +36718,52950,surreal,1303943103 +36718,52950,vampires,1303943103 +36718,53129,plot twist,1303942449 +36718,53129,serial killer,1303942449 +36718,53183,Dynamic CGI Action,1304005930 +36718,53183,martial arts,1304005918 +36718,53953,claustrophobic,1304002510 +36718,53953,supernatural,1304002510 +36718,54785,slasher,1304113814 +36718,54785,teens,1304113910 +36718,54910,serial killer,1304007921 +36718,54910,twist ending,1304007924 +36718,54962,alternate reality,1304094878 +36718,54962,multiple storylines,1303881792 +36718,54962,twist ending,1303881792 +36718,55577,serial killer,1303942553 +36718,55577,torture,1303942553 +36718,55577,twist ending,1303942553 +36718,55820,plot twist,1303942402 +36718,55820,serial killer,1303942402 +36718,55908,dialogue driven,1304005862 +36718,55908,immortality,1304005913 +36718,55908,philosophical,1304005851 +36718,55908,psychological,1304005870 +36718,56003,dystopia,1303943788 +36718,56003,surreal,1303943788 +36718,56003,time travel,1303943788 +36718,56093,courtroom,1304002588 +36718,56093,dialogue driven,1304002588 +36718,56093,psychology,1304002588 +36718,56174,post-apocalyptic,1304006105 +36718,56174,zombies,1304006107 +36718,56801,aliens,1304118428 +36718,57368,mockumentary,1304001966 +36718,57368,monster,1304001966 +36718,58223,dialogue driven,1303940594 +36718,58223,psychological,1303945338 +36718,58652,aliens,1303943187 +36718,58652,Dynamic CGI Action,1303943187 +36718,59040,angel,1304778209 +36718,59040,cgi,1304778210 +36718,59040,supernatural,1304778210 +36718,59604,torture,1304114957 +36718,59615,aliens,1304118521 +36718,59709,mathematics,1304335387 +36718,59900,hilarious,1303943477 +36718,60040,Dynamic CGI Action,1304006088 +36718,60040,superhero,1304006088 +36718,60069,artificial intelligence,1303922532 +36718,60069,dystopia,1303922515 +36718,60069,space,1304002632 +36718,60074,plot twist,1304006370 +36718,60074,superhero,1304006379 +36718,60609,serial killer,1303943053 +36718,60609,twists & turns,1303943053 +36718,60684,alternate reality,1303922420 +36718,60684,Dynamic CGI Action,1303939317 +36718,60684,dystopia,1303922409 +36718,61136,alien contact,1303943828 +36718,61136,mythology,1304419685 +36718,61136,surreal,1303942376 +36718,62203,disturbing,1303940869 +36718,62203,plot twist,1303942163 +36718,62203,psychological,1303945329 +36718,62203,torture,1303940869 +36718,63113,espionage,1304116446 +36718,63181,gore,1304607721 +36718,63189,atmospheric,1304005498 +36718,63436,serial killer,1303942572 +36718,63436,torture,1303942572 +36718,63436,twist ending,1303942572 +36718,64497,aliens,1304006735 +36718,64497,Dynamic CGI Action,1304006744 +36718,65642,time travel,1303939411 +36718,66783,slasher,1304113641 +36718,67695,hilarious,1303944318 +36718,68237,artificial intelligence,1303922455 +36718,68237,dialogue driven,1303940415 +36718,68237,dystopia,1303922443 +36718,68237,plot twist,1303942182 +36718,68237,psychological,1303945348 +36718,68237,space,1303922465 +36718,68952,supernatural,1303945773 +36718,68952,twist ending,1303945779 +36718,69134,atmospheric,1303943394 +36718,69134,dialogue driven,1303943394 +36718,69134,disturbing,1303943394 +36718,69134,psychological,1303945216 +36718,69275,gore,1303945846 +36718,69275,zombies,1303945846 +36718,69784,mockumentary,1304006869 +36718,69784,satire,1304006872 +36718,69818,mental illness,1304778247 +36718,69818,multiple storylines,1304778230 +36718,70286,alien invasion,1303945708 +36718,70286,Dynamic CGI Action,1303939102 +36718,70286,mockumentary,1303882418 +36718,70410,psychological,1303945317 +36718,70599,romance,1303939426 +36718,70599,time travel,1303939426 +36718,70994,slasher,1304113771 +36718,70994,teens,1304113898 +36718,71372,hell,1304113027 +36718,71374,hell,1304113044 +36718,71468,alternate reality,1304006060 +36718,71468,dreamlike,1304006070 +36718,71468,surreal,1304006062 +36718,71535,post-apocalyptic,1304009261 +36718,71535,zombies,1304009257 +36718,71745,dreamlike,1303944667 +36718,71745,surreal,1303943547 +36718,71838,revenge,1303944427 +36718,72129,serial killer,1303942585 +36718,72129,torture,1303939817 +36718,72129,twist ending,1303941602 +36718,72167,organized crime,1304006941 +36718,72167,revenge,1304006941 +36718,72380,plot twist,1304006913 +36718,72380,twists & turns,1304006913 +36718,72731,serial killer,1304005971 +36718,72731,supernatural,1304005971 +36718,72998,aliens,1304002314 +36718,72998,Dynamic CGI Action,1304002314 +36718,72998,military,1304002314 +36718,73321,post-apocalyptic,1304007125 +36718,73321,twist ending,1304007129 +36718,73929,angel,1305627641 +36718,73929,apocalyptic,1305627641 +36718,73929,religion,1305627641 +36718,74156,conspiracy,1304012153 +36718,74204,mental illness,1304335417 +36718,74204,supernatural,1304335417 +36718,74228,time travel,1303943686 +36718,74228,twist ending,1303943686 +36718,74228,twists & turns,1303943686 +36718,74458,psychological,1303945516 +36718,74458,twist ending,1303943938 +36718,74731,dystopia,1303945758 +36718,74740,claustrophobic,1304006499 +36718,74740,dialogue driven,1304006498 +36718,74740,psychological,1304006498 +36718,75438,claustrophobic,1304005764 +36718,75438,dialogue driven,1304005764 +36718,76175,Dynamic CGI Action,1304169408 +36718,76175,monsters,1304169470 +36718,76272,psychological,1303945109 +36718,76317,plot twist,1304009154 +36718,76317,twist ending,1304009154 +36718,77201,mythology,1303999965 +36718,77427,disturbing,1304006140 +36718,77798,slasher,1304112757 +36718,78128,Dynamic CGI Action,1304082140 +36718,78128,martial arts,1304082140 +36718,78218,psychological,1303945560 +36718,78218,torture,1303943592 +36718,78218,twist ending,1303943592 +36718,78349,claustrophobic,1304006561 +36718,78349,dialogue driven,1304006561 +36718,78349,psychological,1304006561 +36718,78836,buddhism,1304169136 +36718,78836,drugs,1303942796 +36718,78836,plot twist,1303942796 +36718,78836,psychedelic,1304094399 +36718,78836,sexuality,1303942796 +36718,79057,aliens,1304118367 +36718,79132,alternate reality,1303882133 +36718,79132,dreamlike,1303944688 +36718,79132,surreal,1303882133 +36718,79132,suspense,1303939175 +36718,79251,disturbing,1304993717 +36718,79251,twist ending,1304993717 +36718,79357,nonlinear,1303882038 +36718,79357,romance,1303882038 +36718,79357,surreal,1303882038 +36718,79357,time travel,1303882389 +36718,79702,hilarious,1303943993 +36718,79868,plot twist,1303945020 +36718,79868,psychological,1303945020 +36718,79868,surreal,1303945020 +36718,80321,religious,1304417817 +36718,80321,supernatural,1304417842 +36718,80736,disturbing,1304005619 +36718,80736,torture,1304005619 +36718,80831,vampires,1304075004 +36718,80846,supernatural,1304006723 +36718,80846,twist ending,1304006723 +36718,81140,supernatural,1304011684 +36718,81535,serial killer,1303942487 +36718,81535,torture,1303942488 +36718,81535,twist ending,1303942610 +36718,81591,psychological,1304007136 +36718,82244,gambling,1304009237 +36718,82244,organized crime,1304009237 +36718,82244,suicide,1304009237 +36718,82459,revenge,1304011428 +36718,82461,artificial intelligence,1303882771 +36718,82461,atmospheric,1303882771 +36718,82461,colorful,1303944616 +36718,82461,Dynamic CGI Action,1303939294 +36718,82461,virtual reality,1303938573 +36718,82534,corporations,1304011390 +36718,82667,revenge,1303942633 +36718,82667,serial killer,1303942633 +36718,82852,hilarious,1304010924 +36718,83006,philosophy,1304608154 +36718,83006,physics,1303939751 +36718,83349,martial arts,1304419740 +36718,84152,drug,1305971530 +36718,84189,revenge,1304006092 +36718,84189,torture,1304006096 +36718,85056,alien,1304778176 +36718,85056,superhero,1304778176 +36718,85213,atheism,1303881934 +36718,85213,dialogue driven,1303940456 +36718,85213,psychological,1303945187 +36718,85213,religion,1303881934 +36718,85412,mockumentary,1303943642 +36718,85412,monster,1303943642 +36718,85412,mythology,1303944804 +36718,85777,serial killer,1303943030 +36718,85777,twist ending,1303943043 +36718,85777,twists & turns,1303943030 +36718,86233,hilarious,1303943602 +36718,86233,sketch comedy,1303942429 +36730,4973,quirky,1369823612 +36730,63992,Everything,1369823972 +36767,356,encouraging,1425570042 +36767,356,enlightening,1425570042 +36767,356,inspiration for life,1425570042 +36770,260,space,1434700527 +36770,260,space adventure,1434700522 +36770,260,space epic,1434700498 +36770,260,war,1434700513 +36802,112334,documentary,1436267162 +36802,112334,open source,1436267162 +36802,112334,technology,1436267162 +36812,597,girlie movie,1137817514 +36813,260,"space epic, science fiction",1441396664 +36818,260,good vs evil,1444598468 +36818,260,space,1444598415 +36820,296,multiple storylines,1425715078 +36820,296,travolta,1425715078 +36820,296,violent,1425715078 +36822,97,paris,1179824831 +36822,97,still current,1179824814 +36822,1147,Muhammad Ali,1176472748 +36822,2628,Ewan McGregor,1177058183 +36822,2628,Saturn Award (Best Special Effects),1177058144 +36822,2916,Arnold Schwarzenegger,1176361316 +36822,2916,virtual reality,1176361332 +36822,4008,vietnam,1177058197 +36822,5418,Matt Damon,1176472621 +36822,6016,favelas,1178531463 +36822,6016,gangs,1178531478 +36822,8376,steak in the face,1178632289 +36822,31553,videogame like,1181826322 +36822,44195,Lobbyism,1176472786 +36822,53972,stunts,1184154675 +36831,1136,Highly quotable,1168463755 +36848,50,ensemble cast,1307340410 +36848,50,Gabriel Byrne,1307340417 +36848,50,twist ending,1307340409 +36848,5007,dated,1307340738 +36848,5007,Peter Ustinov,1307340721 +36848,5007,Turkey,1307340697 +36848,35836,crude humor,1308024033 +36848,35836,homophobia,1308024058 +36848,35836,Steve Carell,1308024107 +36848,37727,Jodie Foster,1308023627 +36848,37727,unreliable narrators,1308023602 +36883,260,Innovative,1443842420 +36883,260,sci-fi,1443842432 +36890,6304,must see,1233125499 +36890,7784,must see,1233125517 +36890,62792,movie to see,1233125190 +36893,497,Shakespeare,1445051091 +36893,1059,Amazing Cinematography,1445051152 +36893,1059,beautiful,1445051164 +36893,1059,great soundtrack,1445051160 +36893,1059,shakespeare,1445051145 +36893,1059,updated classics,1445051155 +36893,1214,atmospheric,1445051049 +36893,1214,classic,1445051029 +36893,1214,space,1445051039 +36893,1214,space travel,1445051056 +36893,1214,suspenseful,1445051036 +36893,1214,tense,1445051026 +36893,5618,anime,1445050697 +36893,5618,beautiful,1445050708 +36893,5618,fantasy world,1445050702 +36893,5618,Studio Ghibli,1445050693 +36893,27660,animation,1445050872 +36893,27660,cyberpunk,1445050868 +36893,27660,sci-fi,1445050875 +36893,48394,atmospheric,1445050661 +36893,48394,Spain,1445050670 +36893,48394,surreal,1445050657 +36893,48516,gritty,1445050599 +36893,48516,Leonardo DiCaprio,1445050577 +36893,48516,Martin Scorsese,1445050587 +36893,48516,Matt Damon,1445050592 +36893,48516,violence,1445050583 +36893,72998,aliens,1445050951 +36893,72998,cgi,1445050947 +36893,72998,graphic design,1445050957 +36893,72998,music,1445050961 +36893,72998,predictable,1445050968 +36893,72998,sci-fi,1445050940 +36893,72998,visually stunning,1445050976 +36912,44555,East Germany,1304440986 +36912,44555,Germany,1304440977 +36912,44555,Nudity (Topless),1304440981 +36912,44555,spying,1304440991 +36946,353,cult film,1216425362 +36946,4203,Buddy movie,1444248310 +36946,80166,comedy,1300372749 +36946,80860,predictable,1300372684 +36946,80860,sweet,1300372667 +36946,83480,predictable,1300372539 +36946,121029,90's music,1426776024 +36946,121029,documentary,1426776024 +36946,121029,neo classic,1426776024 +36946,130496,Action,1444248240 +36946,130496,Comedy,1444248253 +36946,130496,president,1444248248 +36946,130496,Samuel L Jackosn,1444248260 +36946,130496,US President,1444248264 +36946,132046,Adventure,1444247847 +36946,132046,Disney,1444247853 +36946,132046,For children,1444247851 +36946,132046,Future,1444247844 +36946,132046,sci-fi,1444247841 +36946,132046,Uplifting,1444247858 +36946,132046,visually appealing,1444247837 +36958,98041,music,1448725617 +36958,147398,french,1448725432 +36960,48,Cartoon,1155868574 +36960,4034,drugs,1155868568 +36965,66090,bad ending,1242044200 +36965,66090,plot.,1242044200 +36965,66090,Tense.,1242044200 +36972,4189,jesus,1367909949 +36972,4612,jesus,1367909949 +36972,6683,bollywood,1367909913 +36972,6986,jesus,1367909949 +36972,27255,No progress,1283581045 +36972,27255,Too slow,1283581045 +36972,27255,Views,1283581045 +36989,27797,adventure,1419543712 +36989,27797,Brazil,1419543715 +36989,27797,exciting,1419543757 +36989,27797,funny,1419543718 +36989,27797,Lazaro Ramos,1419543747 +36989,27797,leandra leal,1419543738 +36989,44717,comedy,1419543410 +36989,44717,cordel,1419543449 +36989,44717,Guel Arraes,1419543458 +36989,44717,love,1419543420 +36989,55721,BOPE,1419543623 +36989,55721,brazil,1419543649 +36989,55721,corruption,1419543631 +36989,55721,police,1419543646 +36989,55721,rio de janeiro,1419543609 +36989,55721,social commentary,1419543639 +36989,55721,violence,1419543656 +37007,7090,disappointing,1328432708 +37007,7090,disappointing ending,1328432715 +37007,7090,politics,1328432720 +37007,7090,propaganda,1328432725 +37007,7090,propaganda in disguise,1328432727 +37007,7090,twist ending,1328432769 +37030,110,gore,1358044841 +37030,110,mel gibson,1358044809 +37030,110,overrated,1358044841 +37030,110,too long,1358044841 +37030,356,overrated,1198908536 +37030,899,gene kelley,1295589735 +37030,1573,deep,1295590658 +37030,1573,well choreographed,1295590669 +37030,1590,cheesey,1438138865 +37030,2528,70's,1438138982 +37030,2528,classic,1438138963 +37030,5303,abe vigoda,1358044781 +37030,5303,fairytale,1358044712 +37030,5303,john patrick shanley,1358044746 +37030,5303,message,1358044719 +37030,5303,multiple roles,1358044759 +37030,5303,production design,1358044698 +37030,5303,tom hanks,1358044673 +37030,5303,well constructed,1295589699 +37030,6373,jennifer aniston,1295590011 +37030,6711,atmospheric,1295589639 +37030,34405,adventure,1438139168 +37030,34405,Firefly,1438139158 +37030,34405,great costumes,1438139182 +37030,34405,Joss Whedon,1438139151 +37030,34405,quirky,1438139162 +37030,34405,space,1438139156 +37030,34405,witty,1438139154 +37030,52435,chuck jones,1295589913 +37030,68358,alternate reality,1438139071 +37030,68358,clever,1438139089 +37030,68358,fast paced,1438139117 +37030,68358,new and improved,1438139110 +37030,68358,reboot,1438139085 +37030,68358,"true to the original, only much, much better",1438139105 +37030,68358,visually appealing,1438139052 +37030,70562,well constructed,1295589664 +37030,77240,self-indulgent,1295589587 +37030,89904,john goodman,1377838243 +37030,89904,locations,1377838374 +37030,89904,los angeles,1377838234 +37030,89904,silent movie,1377838253 +37030,89904,silent to talkie transition,1377838361 +37030,89904,veracity,1377838228 +37030,96079,classic,1358044917 +37030,96079,humor,1358044917 +37030,96079,plot,1358044917 +37030,96079,reflection,1358044916 +37030,96079,scenery,1358044917 +37030,97938,Ang Lee,1358044580 +37030,97938,cinematography,1358044580 +37030,97938,religious overtones,1358044614 +37030,97938,Theme,1358044614 +37030,98154,cinematography,1358044473 +37030,98154,claustrophobic,1360551697 +37030,98154,Daniel Day-Lewis,1360551725 +37030,98154,grandiose,1360551664 +37030,98154,sally field,1358044473 +37030,98154,Spielberg,1358044473 +37030,98154,story,1360551725 +37030,98154,Tommy Lee Jones,1358044476 +37030,99114,Leonardo DiCaprio,1387764320 +37030,99114,sadistic,1387764312 +37030,99114,violent,1387764312 +37030,101864,adventure,1438138329 +37030,101864,future,1438138334 +37030,101864,great cinematography,1438138299 +37030,101864,interesting concept,1438138331 +37030,101864,Twist,1438138280 +37030,103228,acting,1388291914 +37030,103228,composer,1388291932 +37030,103228,director,1388291943 +37030,103228,djiwani,1388291826 +37030,103228,effects,1388291914 +37030,103228,music,1388291914 +37030,103228,ROBOTS AND ANDROIDS,1388291914 +37030,103228,score,1388291914 +37030,103228,story,1388291914 +37030,104841,3D,1385192720 +37030,104841,George Clooney,1385192732 +37030,104841,plot,1385192740 +37030,104841,Sandra Bullock,1385192732 +37030,104841,sci-fi,1385192720 +37030,104841,visually stunning,1385192720 +37030,105197,acting,1389910444 +37030,105197,black and white,1389910437 +37030,105197,slow,1389910433 +37030,105355,coming of age,1389910399 +37030,106438,Judy Dench,1388110764 +37030,106438,mare winningham,1388110798 +37030,106438,pacing,1388110816 +37030,106438,story,1388110769 +37030,106782,costumes,1387764450 +37030,106782,Jonah Hill,1387764451 +37030,106782,Leonardo DiCaprio,1387764450 +37030,106782,scorsese,1387764451 +37030,106782,Too Long!,1387764450 +37030,106782,visually appealing,1387764450 +37030,106782,Wall Street,1387764450 +37030,106841,bleak atmosphere,1388292107 +37030,106841,boring,1388292108 +37030,106841,dreary,1388292108 +37030,106841,humorless,1388292107 +37030,106841,Julia Roberts,1388292108 +37030,106841,meryl streep,1388292108 +37030,106916,amy adams,1388817935 +37030,106916,costumes,1388817935 +37030,106916,Jennifer Lawrence,1388817935 +37030,106916,light,1388817935 +37030,106916,soundtrack,1388817935 +37030,106920,acting,1388817815 +37030,106920,arcade fire,1388817816 +37030,106920,bittersweet,1388817815 +37030,106920,joaquin phoenix,1388817815 +37030,106920,letters,1388817816 +37030,106920,off-putting scene,1388817815 +37030,106920,Scarlett Johansson,1388817815 +37030,106920,score,1388817815 +37030,109374,cast,1396136609 +37030,109374,cinematography,1396136556 +37030,109374,quirky,1396136549 +37030,109374,Wes Anderson,1396136545 +37030,109374,whimsical,1396136594 +37030,109487,bad dialogue,1438139366 +37030,109487,good science,1438139341 +37030,109487,grating score,1438139331 +37030,109487,Kip Thorne,1438139391 +37030,109487,"lame, tired people have despoiled the planet theme",1438139561 +37030,109487,sentimental,1438139402 +37030,109487,spectacular CG,1438139352 +37033,53435,Nudity (Topless),1184636171 +37034,527,historical,1450182553 +37034,527,jews,1450182569 +37034,527,true story,1450182563 +37034,5989,crime,1450182967 +37034,5989,feel good movie,1450182973 +37034,5989,smart,1450182980 +37034,44199,bank robbery,1450182791 +37034,44199,good story,1450182799 +37034,44199,intelligent thriller,1450182793 +37034,58803,based on a true story,1450182706 +37034,58803,genius,1450182710 +37034,58803,mathematics,1450182696 +37034,58803,predictable,1450182716 +37034,90439,business,1450182619 +37034,90439,Cynicism,1450182630 +37034,90439,realistic,1450182617 +37034,93721,culinary,1450182645 +37034,93721,food,1450182647 +37034,93721,sushi,1450182650 +37034,110127,not true to the book,1450183061 +37034,111360,bad science,1450182777 +37034,119145,humour,1450182683 +37046,70,campy,1258814040 +37046,70,Harvey Keitel,1258814032 +37046,70,kids,1258814052 +37046,70,Quentin Tarantino,1258813964 +37046,70,Salma Hayek,1258814014 +37046,70,vampires,1258814067 +37046,353,cult film,1278709940 +37046,355,animation remade as live action,1277240064 +37046,355,Based on a TV show,1277240337 +37046,355,Rick Moranis,1277240355 +37046,374,children,1280516765 +37046,374,spoiled,1280516771 +37046,427,obsession,1258814491 +37046,550,Lara Flynn Boyle,1277124748 +37046,784,Jim Carrey,1277238916 +37046,784,Matthew Broderick,1277238919 +37046,784,not funny,1277238941 +37046,784,stalker,1277238935 +37046,1252,Film Noir,1277238723 +37046,1252,Jack Nicholson,1277238726 +37046,1485,jim carrey,1277238528 +37046,1589,cover up,1259258409 +37046,1589,police corruption,1259258415 +37046,1589,Sylvester Stallone,1259258532 +37046,1589,underrated,1259258420 +37046,1606,Tia Carrere,1269699774 +37046,1645,Al Pacino,1277239088 +37046,1923,crude humor,1258821223 +37046,2053,kids,1258826436 +37046,2054,children,1277238490 +37046,2422,children,1277124513 +37046,2422,sequel,1277124434 +37046,2541,manipulation,1259256553 +37046,2701,steampunk,1258813453 +37046,2710,boring,1258813330 +37046,2710,Handycam,1258813342 +37046,2710,low budget,1258813375 +37046,2710,mockumentary,1258813311 +37046,2722,LL Cool J,1258814916 +37046,2722,Renny Harlin,1258814958 +37046,2722,shark,1258814930 +37046,2990,gratuitous violence,1259447471 +37046,3005,Denzel Washington,1277125978 +37046,3033,breaking the fourth wall,1278709477 +37046,3060,music,1258823820 +37046,3101,personality disorder,1277125963 +37046,3176,disturbing,1277239046 +37046,3176,Philip Seymour Hoffman,1277239026 +37046,3176,psychology,1277239023 +37046,3190,evolution,1259443833 +37046,3752,absurd,1277239600 +37046,3752,Jim Carrey,1277239560 +37046,3752,split personality,1277239591 +37046,3825,Maria Bello,1277117847 +37046,3825,Piper Perabo,1277117845 +37046,3949,addiction,1259257451 +37046,3949,dark,1259257447 +37046,3949,disturbing,1259257404 +37046,4018,girlie movie,1277239175 +37046,4148,atmospheric,1258814449 +37046,4148,cannibalism,1258814373 +37046,4148,sequel,1258814414 +37046,4148,torture,1258814385 +37046,4270,Sequel,1277124992 +37046,4558,Ivan Reitman,1277125324 +37046,4823,john cusack,1277125355 +37046,4823,Kate Beckinsale,1277125376 +37046,4823,Romantic Comedy,1277125366 +37046,4865,Atmospheric,1277240474 +37046,5269,awkward,1317755169 +37046,5269,sadomasochistic,1317755166 +37046,5541,parody,1277241407 +37046,6365,ready for sequel,1275411195 +37046,6586,crude humor,1277241548 +37046,6586,sequel,1277241536 +37046,6618,bad acting,1277241834 +37046,6618,bad plot,1277241844 +37046,6678,dystopia,1258812605 +37046,6678,religion,1258812630 +37046,7004,Ivan Reitman,1277109820 +37046,7317,Michelle Trachtenberg,1260569927 +37046,7371,disturbing,1258815240 +37046,7371,experimental,1258815291 +37046,7371,philosophy,1258815262 +37046,7371,social control,1258815255 +37046,7701,predictable,1258815076 +37046,7701,sequel,1258815079 +37046,8376,camp,1278779637 +37046,8376,dull,1278779634 +37046,8376,overrated,1278779642 +37046,8799,Brittany Murphy,1273954064 +37046,8799,Holly Hunter,1273954072 +37046,8799,Kathy Bates,1273954074 +37046,8799,reality TV,1273954059 +37046,27641,slumming,1294590905 +37046,27826,Cary Grant,1279906758 +37046,27826,gay,1279906752 +37046,33145,Amanda Peet,1273336719 +37046,39231,Kirsten Dunst,1278708068 +37046,40966,depravity,1277126655 +37046,40966,freedom of expression,1277126649 +37046,45442,predictable,1258815177 +37046,45442,unrealistic,1258815191 +37046,45447,agnosticism,1259749681 +37046,45447,conspiracy theory,1259749660 +37046,45447,religion,1259749620 +37046,45672,Adam Sandler,1277241277 +37046,45672,Be satisfied with your life little man,1277241266 +37046,45672,cheesy,1277241288 +37046,45722,anti-hero,1275411150 +37046,45722,Keira Knightley,1275411143 +37046,45722,ready for sequel,1275411133 +37046,46965,campy,1258827652 +37046,48997,artistic,1277125517 +37046,48997,cannibalism,1277125525 +37046,48997,sensuality,1277125513 +37046,52722,based on a comic,1277239291 +37046,52722,preachy,1277239244 +37046,54259,Neil Gaiman,1262368940 +37046,60128,Carly Pope,1272568866 +37046,61240,unintentional comedy,1317755271 +37046,69436,bad script,1319656001 +37046,69436,kind of boring,1319656008 +37046,69784,homosexuality,1307012292 +37046,69784,Sacha Baron Cohen,1307012253 +37046,69784,Stupid as Hell,1307012258 +37046,69784,tasteless,1307012266 +37046,69784,unfunny,1307012264 +37046,72998,3d,1263931610 +37046,72998,military,1263931638 +37046,72998,morality,1263931634 +37046,72998,visually stunning,1263931621 +37046,76251,gory,1276022221 +37046,76251,original plot,1276022300 +37046,76251,vigilante,1276022304 +37046,77866,ready for sequel,1275410894 +37046,77866,Rewrite history,1275410928 +37046,78469,Based on a TV show,1277240223 +37046,78469,not only for fans of the original,1277240241 +37046,79132,action,1279879020 +37046,79132,intellectual,1279879032 +37046,79132,questions reality,1279879103 +37046,82242,all-male cast,1294591100 +37046,82242,macabre,1294591127 +37046,82242,male nudity,1294591117 +37046,82242,not just comedy,1294591354 +37046,82242,Xmas theme?,1294591134 +37046,86898,abstract,1328958423 +37046,86898,beautifully filmed,1328958366 +37046,86898,cinematography,1328958360 +37064,55820,hyped,1393353778 +37064,55820,over-rated,1393353765 +37064,73017,cheesy bad,1393353729 +37082,6140,Giallo,1137769811 +37082,6256,Giallo,1137770969 +37082,7115,Giallo,1137769730 +37093,296,crime,1431924032 +37093,296,homage,1431924032 +37093,296,non-linear,1431924032 +37095,6016,disturbing,1451273134 +37095,6016,imdb top 250,1451273154 +37095,6016,multiple storylines,1451273128 +37095,6016,social commentary,1451273144 +37095,48774,social commentary,1451271386 +37095,55908,academia,1451271234 +37095,55908,dialogue driven,1451271215 +37095,55908,Excellent use of dialogue,1451271223 +37095,55908,intellectual,1451271212 +37095,55908,philosophical,1451271209 +37095,55908,psychological,1451271230 +37095,55908,thought-provoking,1451271211 +37095,74458,atmospheric,1451271426 +37095,74458,Leonardo DiCaprio,1451271418 +37095,74458,Martin Scorsese,1451271424 +37095,74458,mindfuck,1451271428 +37095,74458,plot twist,1451271422 +37095,74458,Psychological Thriller,1451271431 +37095,74458,twist ending,1451271415 +37095,106920,meaning of life,1451272657 +37095,106920,sci-fi,1451272653 +37095,106920,science fiction,1451272651 +37099,1350,4,1187728143 +37101,1,Pixar,1403306852 +37101,34,Animal movie,1406421199 +37101,34,children,1406421214 +37101,34,overrated,1406421190 +37101,34,pigs,1406421227 +37101,34,talking animals,1406421234 +37101,141,comedy,1403307239 +37101,141,drag queens,1403307265 +37101,141,gay,1403307228 +37101,141,Gay stereotypes,1403307231 +37101,141,queer,1403307254 +37101,141,Robin Williams,1403307226 +37101,299,Catholicism,1403916070 +37101,299,Christianity,1403916072 +37101,299,funny,1403916078 +37101,299,gay,1403309501 +37101,299,grace,1403309552 +37101,299,love,1403309552 +37101,299,powerful ending,1403309621 +37101,299,queer,1403916091 +37101,299,redemption,1403309552 +37101,299,religion,1403916096 +37101,299,sexual abuse,1403309509 +37101,299,social commentary,1403309701 +37101,316,aliens,1403370147 +37101,316,archaeology,1403370152 +37101,316,guilty pleasure,1403370154 +37101,316,sci-fi,1403370195 +37101,316,science fiction,1403370197 +37101,316,time travel,1403370201 +37101,344,comedy,1403370352 +37101,344,goofy,1403370357 +37101,344,Jim Carrey,1403370341 +37101,345,Australia,1403306294 +37101,345,character development,1403306296 +37101,345,drag queens,1403306465 +37101,345,gay,1403306299 +37101,345,gender identity,1403306301 +37101,345,GLBT,1403306307 +37101,345,hilarious,1403306466 +37101,345,lgbt,1403306311 +37101,345,queer,1403306316 +37101,345,touching,1403306466 +37101,364,animals,1406420803 +37101,364,animated,1406420805 +37101,364,animation,1406420807 +37101,364,Childhood,1406420813 +37101,364,Children,1406420815 +37101,364,coming of age,1406420818 +37101,364,Disney,1406420820 +37101,364,Disney animated feature,1406420823 +37101,364,musical,1406420831 +37101,364,talking animals,1406420839 +37101,367,cartoonish,1403370279 +37101,367,comedy,1403370281 +37101,367,goofy,1403370289 +37101,367,Jim Carrey,1403370263 +37101,367,not funny,1403370296 +37101,500,Robin Williams,1403369925 +37101,541,atmospheric,1403301157 +37101,541,classic,1403301160 +37101,541,cult film,1403301161 +37101,541,cyberpunk,1403301164 +37101,541,dark,1403301197 +37101,541,dystopia,1403301167 +37101,541,future,1403301170 +37101,541,futuristic,1403301172 +37101,541,sci-fi,1403301184 +37101,541,stylized,1403301186 +37101,551,Christmas,1403308344 +37101,551,cult film,1403308357 +37101,551,dark,1403308361 +37101,551,halloween,1403308353 +37101,551,quirky,1403308372 +37101,551,Tim Burton,1403308368 +37101,551,whimsical,1403308376 +37101,588,Robin Williams,1403307163 +37101,593,classic,1403306988 +37101,593,disturbing,1403306990 +37101,593,Horror,1403306993 +37101,593,Jodie Foster,1403306996 +37101,593,psychological,1403307002 +37101,593,psychology,1403307004 +37101,593,serial killer,1403307006 +37101,594,animation,1403369667 +37101,594,childhood classics,1403369670 +37101,594,Disney,1403369674 +37101,594,fairy tale,1403369679 +37101,595,Disney,1403308657 +37101,595,fairy tale,1403308668 +37101,780,action,1403307083 +37101,780,alien invasion,1403307085 +37101,780,aliens,1403307087 +37101,780,disaster,1403307090 +37101,780,sci-fi,1403307100 +37101,780,war,1403307109 +37101,780,Will Smith,1403307045 +37101,788,Eddie Murphy,1403308426 +37101,928,Alfred Hitchcock,1403369007 +37101,928,classic,1403369012 +37101,928,Dark,1403369017 +37101,949,James Dean,1403305600 +37101,968,black and white,1403813283 +37101,968,classic horror,1403813337 +37101,968,creepy,1403813285 +37101,968,disturbing,1403813287 +37101,968,horror,1403813289 +37101,968,visceral,1403813327 +37101,968,zombie,1403813332 +37101,968,zombies,1403813320 +37101,1031,Angela Lansbury,1403306061 +37101,1031,British,1403305966 +37101,1031,family,1403305946 +37101,1031,London,1403305941 +37101,1031,magic,1403305970 +37101,1031,WWII,1403305940 +37101,1046,adolescent gays,1403914864 +37101,1046,cheesy,1403914871 +37101,1046,feel-good,1403914876 +37101,1046,gay,1403914877 +37101,1046,Gay Brits,1403914880 +37101,1046,gay romance,1403914883 +37101,1046,glbt,1403914888 +37101,1046,london,1403914898 +37101,1046,queer,1403914899 +37101,1073,classic,1403308888 +37101,1073,cult film,1403308886 +37101,1073,funny,1403308945 +37101,1073,Gene Wilder,1403308908 +37101,1073,quirky,1403308945 +37101,1073,whimsical,1403308917 +37101,1073,witty,1403308921 +37101,1103,gay subtext,1403300620 +37101,1103,iconic,1403300623 +37101,1103,James Dean,1403300610 +37101,1207,bittersweet,1403301346 +37101,1207,black and white,1403301339 +37101,1207,classic,1403301348 +37101,1207,politics,1403301374 +37101,1207,race issues,1403301375 +37101,1207,social commentary,1403301363 +37101,1219,Alfred Hitchcock,1403301003 +37101,1219,amazing photography,1403301006 +37101,1219,Anthony Perkins,1403301043 +37101,1219,black and white,1403301009 +37101,1219,cinematography,1403301011 +37101,1219,classic,1403301012 +37101,1219,disturbing,1403301014 +37101,1219,great cinematography,1403301016 +37101,1219,Hitchcock,1403301018 +37101,1219,horror,1403301021 +37101,1219,psychology,1403301026 +37101,1219,serial killer,1403301030 +37101,1219,suspense,1403301032 +37101,1219,tense,1403301034 +37101,1219,thriller,1403301035 +37101,1237,atmospheric,1419128779 +37101,1237,black and white,1419128754 +37101,1237,classic,1419128820 +37101,1237,death,1419128757 +37101,1237,dreamlike,1419128786 +37101,1237,existentialism,1419128766 +37101,1237,Ingmar Bergman,1419128768 +37101,1237,medieval,1419128782 +37101,1237,religion,1419128772 +37101,1237,Swedish,1419128724 +37101,1258,classic,1403309132 +37101,1258,cult film,1403309126 +37101,1258,dark,1403309128 +37101,1258,disturbing,1403309130 +37101,1258,Horror,1403309137 +37101,1258,Jack Nicholson,1403309086 +37101,1258,psychological,1403309145 +37101,1258,Shelley Duvall,1403309103 +37101,1258,Stanley Kubrick,1403309110 +37101,1258,Stephen King,1403309108 +37101,1258,suspense,1403309147 +37101,1258,visually appealing,1403309149 +37101,1261,cult classic,1403922516 +37101,1261,cult film,1403922518 +37101,1261,demons,1403922523 +37101,1261,gore,1403922596 +37101,1261,gratuitous violence,1403922596 +37101,1261,horror,1403922529 +37101,1261,over the top,1403922603 +37101,1261,splatter,1403922532 +37101,1261,stylized,1403922545 +37101,1261,tense,1403922548 +37101,1261,violence,1403922755 +37101,1261,zombies,1403922542 +37101,1340,classic,1425261913 +37101,1340,good sequel,1425261882 +37101,1340,gothic,1425261863 +37101,1340,horror,1425261926 +37101,1340,misunderstood character,1425262042 +37101,1340,morality,1425261982 +37101,1340,Scary Movies To See on Halloween,1425261872 +37101,1340,what does it mean to be human,1425262029 +37101,1345,camp,1403368880 +37101,1345,Classic,1403368882 +37101,1345,dark,1403368886 +37101,1345,horror,1403368891 +37101,1345,religion,1403368899 +37101,1345,Stephen King,1403368872 +37101,1345,tense,1403368905 +37101,1356,aliens,1403307722 +37101,1356,cyborgs,1403307728 +37101,1356,Intense,1403307733 +37101,1356,Patrick Stewart,1403307718 +37101,1356,sci-fi,1403307743 +37101,1356,science fiction,1403307746 +37101,1356,space,1403307748 +37101,1356,Star Trek,1403307716 +37101,1356,time travel,1403307752 +37101,1356,Whoopi Goldberg,1403307754 +37101,1527,action,1434410683 +37101,1527,aliens,1434410641 +37101,1527,Bruce Willis,1434410609 +37101,1527,dystopia,1434410654 +37101,1527,dystopic future,1434410639 +37101,1527,futuristic,1434410642 +37101,1527,Milla Jovovich,1434410629 +37101,1527,sci-fi,1434410606 +37101,1580,aliens,1403308532 +37101,1580,comedy,1403308534 +37101,1580,sci-fi,1403308528 +37101,1580,Tommy Lee Jones,1403308552 +37101,1580,Will Smith,1403308525 +37101,1611,bad acting,1437781528 +37101,1611,bad writing,1437781564 +37101,1611,coming of age,1437781509 +37101,1611,gay,1437781465 +37101,1611,Keanu Reeves,1437781501 +37101,1611,love story,1437781583 +37101,1611,narcolepsy,1437781473 +37101,1611,quirky,1437781577 +37101,1611,River Phoenix,1437781494 +37101,1611,sexuality,1437781601 +37101,1653,atmospheric,1403305460 +37101,1653,dystopia,1403305462 +37101,1653,future,1403305464 +37101,1653,futuristic,1403305466 +37101,1653,genetic engineering,1403305468 +37101,1653,genetics,1403305470 +37101,1653,powerful ending,1403305473 +37101,1653,sci-fi,1403305479 +37101,1653,social commentary,1403305506 +37101,1653,thought-provoking,1403305484 +37101,1653,visually appealing,1403305494 +37101,1696,Berlin,1403309432 +37101,1696,concentration camp,1403300362 +37101,1696,forbidden love,1403309352 +37101,1696,gay,1403300267 +37101,1696,Holocaust,1403300377 +37101,1696,love story,1403309341 +37101,1696,tragic,1403309382 +37101,1696,World War II,1403300307 +37101,1721,bittersweet,1403308079 +37101,1721,drama,1403308090 +37101,1721,historical,1403308096 +37101,1721,Leonardo DiCaprio,1403308030 +37101,1721,love story,1403308046 +37101,1721,Nudity (Topless - Notable),1403308052 +37101,1721,Nudity (Topless),1403308053 +37101,1721,romance,1403308059 +37101,1721,true story,1403308067 +37101,1921,atmospheric,1403300451 +37101,1921,black and white,1403300452 +37101,1921,disturbing,1403300454 +37101,1921,existentialism,1403300459 +37101,1921,mathematics,1403300446 +37101,1921,mental illness,1403300448 +37101,1921,psychological,1403300466 +37101,1921,religion,1403300472 +37101,1921,surreal,1403300474 +37101,1921,tense,1403300476 +37101,1921,visually appealing,1403300478 +37101,1982,classic,1445295743 +37101,1982,Classic Horror,1445295323 +37101,1982,halloween,1445295355 +37101,1982,horror,1445295300 +37101,1982,Jamie Lee Curtis,1445295673 +37101,1982,John Carpenter,1445295505 +37101,1982,murder,1445295510 +37101,1982,Nudity (Topless),1445295343 +37101,1982,scary as hell,1445295739 +37101,1982,serial killer,1445295314 +37101,1982,slasher,1445295297 +37101,1982,suspenseful,1445295348 +37101,2010,black and white,1435013432 +37101,2010,Brigitte Helm,1435013480 +37101,2010,classic,1435013377 +37101,2010,dystopia,1435013381 +37101,2010,Fritz Lang,1435013448 +37101,2010,german expressionism,1435013369 +37101,2010,historic,1435013543 +37101,2010,industrial progress,1435013608 +37101,2010,robot,1435013579 +37101,2010,science fiction,1435013372 +37101,2010,silent film,1435013492 +37101,2010,social commentary,1435013561 +37101,2010,visionary,1435013456 +37101,2020,costume drama,1403370950 +37101,2020,emotion!,1403370925 +37101,2161,80s nostalgia,1434910687 +37101,2161,80s synth music,1434910726 +37101,2161,Adventure,1434910627 +37101,2161,Childhood nightmares,1434910772 +37101,2161,dark fantasy,1434910754 +37101,2161,dragon,1434910629 +37101,2161,effects,1434910637 +37101,2161,Fantasy,1434910625 +37101,2161,fantasy world,1434910631 +37101,2161,imagination,1434910731 +37101,2161,racing snail,1434910701 +37101,2161,soundtrack,1434910714 +37101,2161,sphinx,1434910740 +37101,2288,alien,1403301391 +37101,2288,alien invasion,1403301394 +37101,2288,aliens,1403301397 +37101,2288,Antarctica,1403301411 +37101,2288,classic,1403301403 +37101,2288,disturbing,1403301413 +37101,2288,horror,1403301415 +37101,2291,beautifully filmed,1403300430 +37101,2291,cult film,1403300428 +37101,2291,dark,1403300426 +37101,2291,Johnny Depp,1403300408 +37101,2291,quirky,1403300415 +37101,2291,surreal,1403300413 +37101,2355,animated,1406421097 +37101,2355,animation,1406421095 +37101,2355,Disney,1406421103 +37101,2355,Disney animated feature,1406421105 +37101,2355,insects,1406421110 +37101,2355,Pixar,1406421113 +37101,2355,talking animals,1406421116 +37101,2454,classic,1403305530 +37101,2454,Scary Movies To See on Halloween,1403305555 +37101,2454,sci-fi,1403305558 +37101,2454,science fiction,1403305560 +37101,2454,Tragedy,1403305580 +37101,2454,Vincent Price,1403305574 +37101,2550,based on a book,1425261696 +37101,2550,British,1425261671 +37101,2550,character study,1425261373 +37101,2550,classic,1425261681 +37101,2550,dwelling as character,1425261389 +37101,2550,eerie,1425261349 +37101,2550,ghosts,1425261337 +37101,2550,gothic,1425261351 +37101,2550,haunted house,1425261340 +37101,2550,horror,1425261335 +37101,2550,lesbian character,1425261613 +37101,2550,paranormal,1425261343 +37101,2550,psychological,1425261345 +37101,2550,scary,1425261394 +37101,2550,Scary Movies To See on Halloween,1425261376 +37101,2550,supernatural,1425261332 +37101,2550,suspense,1425261347 +37101,2648,based on a book,1424568343 +37101,2648,classic,1424568369 +37101,2648,classic horror,1424568358 +37101,2648,controversial,1424568338 +37101,2648,gothic,1424568336 +37101,2648,Horror,1424568386 +37101,2648,horror classic,1424568362 +37101,2648,mad scientist,1424568340 +37101,2648,Scary Movies To See on Halloween,1424568356 +37101,2648,trailblazing,1424568353 +37101,2657,bisexual,1434908871 +37101,2657,campy,1434908846 +37101,2657,cult classic,1434908825 +37101,2657,cult film,1434908807 +37101,2657,drag,1434908913 +37101,2657,great soundtrack,1434908837 +37101,2657,musical,1434908827 +37101,2657,offbeat,1434909009 +37101,2657,over-rated,1434908958 +37101,2657,overrated,1434908963 +37101,2657,queer,1434908881 +37101,2657,Quirky,1434908801 +37101,2657,sexual discovery,1434909102 +37101,2657,sexuality,1434908857 +37101,2657,weird,1434908897 +37101,2716,classic,1403307639 +37101,2716,ghosts,1403307645 +37101,2716,monsters,1403307649 +37101,2716,New York City,1403307682 +37101,2716,paranormal,1403307654 +37101,2716,quotable,1403307659 +37101,2716,sci-fi,1403307661 +37101,2716,supernatural,1403307664 +37101,2721,Cute,1406420440 +37101,2721,Gay,1406420442 +37101,2721,gay romance,1406420444 +37101,2721,positive portyayal of gay relationships,1406420451 +37101,2721,queer,1406420453 +37101,2762,Atmospheric,1403369160 +37101,2762,Bruce Willis,1403369159 +37101,2762,ghosts,1403369165 +37101,2762,M. Night Shyamalan,1403369167 +37101,2762,psychological,1403369170 +37101,2762,psychology,1403369172 +37101,2762,suspense,1403369174 +37101,2797,comedy,1403369338 +37101,2797,New York City,1403369343 +37101,2797,Tom Hanks,1403369349 +37101,2908,brutal,1403915621 +37101,2908,disturbing,1403915628 +37101,2908,Drama,1403915630 +37101,2908,lgbt,1403915665 +37101,2908,touching,1403915647 +37101,2908,Tragedy,1403915643 +37101,2908,transgender,1403915638 +37101,2987,animation,1403308837 +37101,2987,animation & live action interact,1403308835 +37101,3114,animation,1406421328 +37101,3114,computer animation,1406421330 +37101,3114,Disney,1406421319 +37101,3114,friendship,1406421338 +37101,3114,kids and family,1406421347 +37101,3114,Pixar,1406421323 +37101,3114,toys,1406421359 +37101,3471,abduction,1403305636 +37101,3471,alien,1403305638 +37101,3471,aliens,1403305640 +37101,3471,Classic,1403305642 +37101,3471,extraterrestrial life,1403305645 +37101,3471,music,1403305650 +37101,3471,Sci-fi,1403305664 +37101,3471,space,1403305667 +37101,3471,Steven Spielberg,1403305669 +37101,3471,visually appealing,1403305671 +37101,3793,action,1403308756 +37101,3793,comic book,1403308759 +37101,3793,Hugh Jackman,1403308764 +37101,3793,sci-fi,1403308770 +37101,3793,super-hero,1403308772 +37101,3793,superhero,1403308774 +37101,4014,feel-good,1406422183 +37101,4014,French,1406422180 +37101,4014,Quirky,1406422171 +37101,4022,SURVIVAL,1403307858 +37101,4022,Tom Hanks,1403307838 +37101,4306,pixar,1403308001 +37101,4437,atmospheric,1437837367 +37101,4437,beautiful,1437837478 +37101,4437,cinematography,1437837497 +37101,4437,classic,1437837512 +37101,4437,colorful,1437837550 +37101,4437,crazy music,1437837322 +37101,4437,creepy,1437837196 +37101,4437,Dario Argento,1437837206 +37101,4437,dreamlike,1437837201 +37101,4437,eerie,1437837213 +37101,4437,hallucinatory,1437837388 +37101,4437,horror,1437837193 +37101,4437,Italian horror,1437837317 +37101,4437,Jessica Harper,1437837403 +37101,4437,ominous,1437837391 +37101,4437,scary,1437837523 +37101,4437,soundtrack,1437837604 +37101,4437,stylized,1437837198 +37101,4437,two strip technicolor,1437837379 +37101,4437,WITCHCRAFT,1437837211 +37101,4437,witches,1437837393 +37101,4642,Berlin,1403305399 +37101,4642,bittersweet,1403305402 +37101,4642,cult film,1403305406 +37101,4642,musical,1403305425 +37101,4642,quirky,1403305429 +37101,4642,sexuality,1403305431 +37101,4642,stylized,1403305437 +37101,4642,transgender,1403305434 +37101,4705,comedy,1403307298 +37101,4705,drag queens,1403305772 +37101,4705,French,1403305729 +37101,4705,funny,1403305732 +37101,4705,gay,1403305822 +37101,4705,hilarious,1403305735 +37101,4705,queer,1403305739 +37101,4754,cult,1410129331 +37101,4754,cult film,1410129333 +37101,4754,disturbing,1410129334 +37101,4754,great soundtrack,1410129347 +37101,4754,Nudity (Topless - Notable),1410129370 +37101,4754,pagan,1410129379 +37101,4754,religion,1410129383 +37101,4754,sexual,1410129355 +37101,4754,twist ending,1410129395 +37101,4863,campy,1425260783 +37101,4863,comedy,1425261001 +37101,4863,Divine,1425260803 +37101,4863,Drag Queen,1425260854 +37101,4863,dysfunctional family,1425260815 +37101,4863,female nudity,1425260880 +37101,4863,irreverent,1425260957 +37101,4863,John Waters,1425261170 +37101,4863,male nudity,1425260892 +37101,4863,outrageous,1425260781 +37101,4863,over the top,1425260999 +37101,4863,queer,1425261099 +37101,4863,quirky,1425260778 +37101,4863,rape,1425261092 +37101,4863,raunchy,1425260827 +37101,4863,tragic,1425261119 +37101,4863,weird,1425260780 +37101,4878,cult film,1403301120 +37101,4878,dreamlike,1403301122 +37101,4878,Jake Gyllenhaal,1403301114 +37101,4878,mental illness,1403301125 +37101,4878,psychological,1403301126 +37101,4878,psychology,1403301128 +37101,4878,quirky,1403301130 +37101,4878,sci-fi,1403301132 +37101,4878,social commentary,1403301135 +37101,4878,stylized,1403301137 +37101,4878,surreal,1403301139 +37101,4878,thought-provoking,1403301141 +37101,4878,twist ending,1403301144 +37101,4886,cute,1403308231 +37101,4886,funny,1403308238 +37101,4886,Pixar,1403308204 +37101,4963,action,1403369730 +37101,4963,boring,1403369727 +37101,4963,Brad Pitt,1403369708 +37101,4963,crime,1403369736 +37101,4963,George Clooney,1403369742 +37101,4963,Matt Damon,1403369749 +37101,4973,beautifully filmed,1403301227 +37101,4973,female protagonist,1403301322 +37101,4973,French,1403301322 +37101,4973,imagination,1403301233 +37101,4973,love story,1403301236 +37101,4973,notable soundtrack,1403301239 +37101,4973,Paris,1403301242 +37101,4973,quirky,1403301244 +37101,4973,quirky romantic,1403301322 +37101,4973,romance,1403301246 +37101,4973,romantic,1403301249 +37101,4973,stylized,1403301251 +37101,4973,visually appealing,1403301252 +37101,4973,whimsical,1403301254 +37101,5349,Action,1403308598 +37101,5349,comic book,1403308602 +37101,5349,New York City,1403308608 +37101,5349,super hero,1403308611 +37101,5349,super-hero,1403308613 +37101,5349,superhero,1403308615 +37101,5349,Tobey Maguire,1403308594 +37101,5367,gay,1403301435 +37101,5367,london,1403301448 +37101,5367,love story,1403301500 +37101,5367,quirky,1403301500 +37101,5367,quirky romantic,1403301500 +37101,5367,romantic,1403301501 +37101,5418,boring,1403300958 +37101,5418,Matt Damon,1403300925 +37101,5445,dystopia,1403308981 +37101,5445,future,1403308983 +37101,5445,sci-fi,1403308974 +37101,5445,Tom Cruise,1403308965 +37101,5502,alien,1403369239 +37101,5502,Alien Invasion,1403369241 +37101,5502,atmospheric,1403369244 +37101,5502,Joaquin Phoenix,1403369266 +37101,5502,M. Night Shyamalan,1403369236 +37101,5502,sci-fi,1403369279 +37101,5502,suspenseful,1403369281 +37101,5502,tense,1403369284 +37101,5617,BDSM,1403368608 +37101,5617,dark comedy,1403368618 +37101,5617,Maggie Gyllenhaal,1403368623 +37101,5617,Nudity (Full Frontal - Notable),1403368626 +37101,5617,Nudity (Full Frontal),1403368628 +37101,5617,Nudity (Topless - Notable),1403368630 +37101,5617,quirky,1403368632 +37101,5617,sexuality:BDSM,1403368648 +37101,5618,adventure,1424568074 +37101,5618,animation,1424568043 +37101,5618,anime,1424567979 +37101,5618,dreamlike,1424568026 +37101,5618,fantasy,1424568016 +37101,5618,Hayao Miyazaki,1424567988 +37101,5618,Japan,1424568064 +37101,5618,surreal,1424568049 +37101,5618,whimsical,1424568036 +37101,5991,Bob Fosse,1406422662 +37101,5991,Broadway,1406422459 +37101,5991,classic,1406422462 +37101,5991,murder,1406422472 +37101,5991,musical,1406422442 +37101,5995,Adrien Brody,1403301059 +37101,5995,drama,1403301065 +37101,5995,holocaust,1403301069 +37101,5995,music,1403301075 +37101,5995,musicians,1403301077 +37101,5995,true story,1403301091 +37101,5995,World War II,1403301085 +37101,6377,Ellen Degeneres,1403307944 +37101,6377,family,1403307928 +37101,6377,heartwarming,1403307899 +37101,6377,Pixar,1403307887 +37101,6539,action,1403369849 +37101,6539,adventure,1403369848 +37101,6539,comedy,1403369841 +37101,6539,funny,1403369831 +37101,6539,Johnny Depp,1403369820 +37101,6539,pirates,1403369835 +37101,7116,classic,1410129195 +37101,7116,French,1410129195 +37101,7116,suspense,1410129263 +37101,8360,animation,1406421427 +37101,8360,Eddie Murphy,1406421448 +37101,8360,fairy tale,1406421450 +37101,8360,sequel,1406421399 +37101,8360,talking animals,1406421463 +37101,8644,action,1406421788 +37101,8644,android(s)/cyborg(s),1406421784 +37101,8644,artificial intelligence,1406421780 +37101,8644,dystopia,1406421779 +37101,8644,future,1406421777 +37101,8644,futuristic,1406421775 +37101,8644,robots,1406421766 +37101,8644,sci-fi,1406421760 +37101,8644,thought-provoking,1406421770 +37101,8644,Will Smith,1406421756 +37101,8645,dark,1403301607 +37101,8645,drugs,1403301616 +37101,8645,gritty,1403301618 +37101,8645,INNOCENCE LOST,1403301714 +37101,8645,Latin America,1403301631 +37101,8645,poignant,1403301634 +37101,8645,tense,1403301636 +37101,8665,boring,1403300974 +37101,8665,Matt Damon,1403300967 +37101,8905,Christopher Columbus,1406420001 +37101,8905,drama,1406419997 +37101,8905,historical,1406419985 +37101,8905,Vangelis,1406420025 +37101,8961,animation,1406420710 +37101,8961,family,1406420689 +37101,8961,superhero,1406420702 +37101,8973,Catholicism,1410128839 +37101,8973,child abuse,1410128842 +37101,8973,choir,1410128844 +37101,8973,drag queens,1410128980 +37101,8973,foreign language,1410129031 +37101,8973,Gael García Bernal,1410128778 +37101,8973,Gael Garcia Bernal,1410128833 +37101,8973,gay,1410128980 +37101,8973,irreverent,1410128935 +37101,8973,love,1410128940 +37101,8973,male nudity,1410128997 +37101,8973,Pedro Almodovar,1410128689 +37101,8973,queer,1410128760 +37101,8973,religion,1410128908 +37101,8973,sexuality,1410128758 +37101,8973,spanish,1410128901 +37101,8973,stylized,1410128899 +37101,30707,Bittersweet,1403301546 +37101,30707,dark,1403301548 +37101,30707,drama,1403301550 +37101,30707,emotional,1403301553 +37101,30707,female protagonist,1403301572 +37101,30707,gritty,1403301554 +37101,30707,social commentary,1403301562 +37101,30793,dark,1406421034 +37101,30793,Johnny Depp,1406421009 +37101,30793,quirky,1406421020 +37101,30793,Tim Burton,1406421028 +37101,32898,aliens,1434410522 +37101,32898,black and white,1434410527 +37101,32898,classic,1434410482 +37101,32898,film history,1434410476 +37101,32898,sci-fi,1434410505 +37101,33166,cultural conflict,1403370700 +37101,33166,easily confused with other movie(s) (title),1403370708 +37101,33166,political,1403370726 +37101,33166,race issues,1403370724 +37101,33166,racism,1403370730 +37101,33166,social commentary,1403370735 +37101,34048,alien invasion,1403370062 +37101,34048,aliens,1403370051 +37101,34048,H.G. Wells,1403370070 +37101,34048,remake,1403370048 +37101,34048,sci-fi,1403370075 +37101,34048,Tom Cruise,1403370054 +37101,36401,Adventure,1434851098 +37101,36401,barely tolerable,1434851188 +37101,36401,boring,1434851165 +37101,36401,Dull,1434851167 +37101,36401,fairy tale,1434851100 +37101,36401,fairy tales,1434851090 +37101,36401,Fantasy,1434851062 +37101,36401,Heath Ledger,1434851093 +37101,36401,Matt Damon,1434851071 +37101,36401,not funny,1434851081 +37101,36401,straight guy movie,1434851059 +37101,36401,well shot,1434851219 +37101,38499,Broadway,1403306233 +37101,38499,gay,1403306190 +37101,38499,politics,1403306254 +37101,38499,queer,1403306217 +37101,38499,redemption,1403306207 +37101,38499,religion,1403306210 +37101,38499,religious overtones,1403306204 +37101,38499,touching,1403306212 +37101,41566,adventure,1403371056 +37101,41566,christianity,1403371059 +37101,41566,fantasy,1403371061 +37101,41566,Fantasy World,1403371062 +37101,44665,dark comedy,1403307582 +37101,44665,Josh Hartnett,1403307485 +37101,45499,comic book,1403370613 +37101,45499,Halle Berry,1403370597 +37101,45499,Hugh Jackman,1403370551 +37101,45499,Ian McKellen,1403370597 +37101,45499,mutants,1403370623 +37101,45499,Patrick Stewart,1403370565 +37101,45499,politics,1403370624 +37101,45499,sci-fi,1403370626 +37101,45499,super hero,1403370628 +37101,45499,superhero,1403370630 +37101,45722,action,1406422245 +37101,45722,Adventure,1406422248 +37101,45722,Comedy,1406422252 +37101,45722,funny,1406422258 +37101,45722,Johnny Depp,1406422242 +37101,45722,Keira Knightley,1406422260 +37101,45722,Orlando Bloom,1406422263 +37101,45722,pirates,1406422265 +37101,45722,seafaring,1406422269 +37101,45722,sequel,1406422241 +37101,48082,cute,1403300590 +37101,48082,dreamlike,1403300534 +37101,48082,dreams,1403300536 +37101,48082,fanciful,1403300539 +37101,48082,fantasy,1403300542 +37101,48082,Gael GarcÃ?­a Bernal,1403300590 +37101,48082,love,1403300600 +37101,48082,quirky,1403300548 +37101,48082,romance,1403300550 +37101,48082,stylized,1403300554 +37101,48774,apocalypse,1406420580 +37101,48774,Clive Owen,1406420626 +37101,48774,disturbing,1406420583 +37101,48774,dystopia,1406420585 +37101,48774,future,1406420587 +37101,48774,futuristic,1406420589 +37101,48774,sci-fi,1406420594 +37101,48774,social commentary,1406420596 +37101,48774,survival,1406420598 +37101,48774,thought-provoking,1406420600 +37101,54286,action,1406420907 +37101,54286,assassin,1406420922 +37101,54286,boring,1406420951 +37101,54286,espionage,1406420926 +37101,54286,Matt Damon,1406420886 +37101,54286,spy thriller,1406420935 +37101,55620,Christianity,1403915762 +37101,55620,documentary,1403915791 +37101,55620,gay,1403915763 +37101,55620,religion,1403915768 +37101,60069,dystopia,1403370481 +37101,60069,inspirational,1403370486 +37101,60069,pixar,1403370473 +37101,60069,post-apocalyptic,1403370488 +37101,60069,quirky,1403370490 +37101,60069,robots,1403370492 +37101,60069,romance,1403370493 +37101,60069,Sci-Fi,1403370497 +37101,60069,social commentary,1403370498 +37101,63082,drama,1403371115 +37101,63082,heartwarming,1403371127 +37101,63082,India,1403371105 +37101,63082,love story,1403371129 +37101,63082,social commentary,1403371107 +37101,63082,visually appealing,1403371110 +37101,63876,based on a true story,1406420144 +37101,63876,drama,1406420148 +37101,63876,gay,1406420150 +37101,63876,gay history,1406420162 +37101,63876,glbt,1406420152 +37101,63876,history,1406420170 +37101,63876,James Franco,1406420181 +37101,63876,San Francisco,1406420200 +37101,63876,touching,1406420190 +37101,63876,true story,1406420192 +37101,64957,Brad Pitt,1403300901 +37101,64957,implausible,1403301973 +37101,64957,nonsensical,1403300893 +37101,68358,action,1406421574 +37101,68358,adventure,1406421576 +37101,68358,Chris Pine,1406421571 +37101,68358,sci-fi,1406421579 +37101,68358,space,1406421586 +37101,68358,space travel,1406421588 +37101,68358,Star Trek,1406421556 +37101,68358,time travel,1406421590 +37101,68358,visually appealing,1406421591 +37101,68358,Zachary Quinto,1406421570 +37101,68954,computer animation,1403308311 +37101,68954,friendship,1403308293 +37101,68954,funny,1403308291 +37101,68954,Pixar,1403308279 +37101,68954,talking animals,1403308304 +37101,70286,action,1403369528 +37101,70286,apartheid,1403369516 +37101,70286,mockumentary,1403369544 +37101,70286,obvious subtext,1403369583 +37101,70286,social commentary,1403369599 +37101,74458,insanity,1406419906 +37101,74458,Leonardo DiCaprio,1406419892 +37101,74458,mindfuck,1406419911 +37101,74458,psychological,1406419920 +37101,74458,twist ending,1406419928 +37101,79132,action,1403300646 +37101,79132,convoluted,1403300802 +37101,79132,implausible,1403301951 +37101,79132,nonsensical,1403300802 +37101,91199,gay,1406420308 +37101,91199,Gay Character,1406420310 +37101,91199,Gay Lead Character,1406420312 +37101,91199,gay relationship,1406420313 +37101,91199,gay romance,1406420315 +37101,91199,Nudity (Full Frontal - Brief),1406420319 +37101,110127,Biblical,1435013672 +37101,110127,Dark,1435013843 +37101,110127,Darren Aronofsky,1435013667 +37101,110127,dysfunctional family,1435013795 +37101,110127,fantasy,1435013758 +37101,110127,flood,1435013830 +37101,110127,good cinematography,1435014001 +37101,110127,Russell Crowe,1435013683 +37101,110127,unlikeable characters,1435013823 +37101,115617,action,1434909816 +37101,115617,Animation,1434909721 +37101,115617,Coming of Age,1434909820 +37101,115617,cute,1434909836 +37101,115617,Disney,1434909719 +37101,115617,friendship,1434909736 +37101,115617,funny,1434909766 +37101,115617,japanese influence,1434909797 +37101,115617,robotics,1434909776 +37101,115617,superhero,1434909715 +37101,130628,beautiful cinematography,1434410136 +37101,130628,character development,1434410270 +37101,130628,coming of age story,1434410334 +37101,130628,cute,1434410143 +37101,130628,foreign,1434410161 +37101,130628,friendship,1434410352 +37101,130628,gay,1434410760 +37101,130628,gay romance,1434410112 +37101,130628,lgbt,1434410092 +37101,130628,love story,1434410118 +37101,130628,track and field,1434410218 +37101,132046,Adventure,1435014265 +37101,132046,bad ending,1435014570 +37101,132046,Britt Robertson,1435014527 +37101,132046,Cheesy,1435014560 +37101,132046,George Clooney,1435014195 +37101,132046,ineffective,1435014552 +37101,132046,visually appealing,1435014664 +37124,214,Criterion,1228104478 +37124,495,Criterion,1249690525 +37124,593,Criterion,1229103220 +37124,680,Criterion,1229104234 +37124,681,Criterion,1229105836 +37124,733,Criterion,1228834540 +37124,911,Criterion,1229104866 +37124,928,Criterion,1229106396 +37124,930,Criterion,1229106432 +37124,931,Criterion,1229106415 +37124,947,Criterion,1229106030 +37124,1080,Criterion,1229105017 +37124,1162,Criterion,1229106335 +37124,1164,Criterion,1261234267 +37124,1199,Criterion,1229104755 +37124,1202,Criterion,1229106134 +37124,1212,Criterion,1229105084 +37124,1217,Criterion,1230306846 +37124,1251,Criterion,1261234087 +37124,1260,Criterion,1230306755 +37124,1273,Criterion,1229608423 +37124,1295,Criterion,1229104837 +37124,1329,Criterion,1229104305 +37124,1334,Criterion,1229105505 +37124,1572,Criterion,1229608529 +37124,1639,Criterion,1229103246 +37124,1859,Criterion,1229104643 +37124,1889,Criterion,1229104682 +37124,1917,Criterion,1229104521 +37124,1941,Criterion,1229105347 +37124,1966,Need to add to rym,1242742302 +37124,2019,Criterion,1230306810 +37124,2022,Criterion,1229105184 +37124,2074,Criterion,1229104902 +37124,2131,Criterion,1229104920 +37124,2348,Criterion,1229104146 +37124,2349,Criterion,1229105856 +37124,2351,Criterion,1229104719 +37124,2395,Criterion,1229105102 +37124,2488,Criterion,1229104884 +37124,2551,Criterion,1229104173 +37124,2728,Criterion,1229105815 +37124,2731,Criterion,1228838596 +37124,2788,need to add to rym,1242742262 +37124,2897,Criterion,1229104737 +37124,2905,Criterion,1229104788 +37124,2920,Criterion,1229106527 +37124,2932,Criterion,1261234027 +37124,2933,Criterion,1230001900 +37124,2935,Criterion,1229105782 +37124,2936,Criterion,1229106114 +37124,2968,Criterion,1229104478 +37124,2985,Criterion,1229104211 +37124,3030,Criterion,1229104774 +37124,3075,Criterion,1261234246 +37124,3089,Criterion,1261233763 +37124,3134,Criterion,1229103880 +37124,3338,Criterion,1229104811 +37124,3343,Criterion,1229105273 +37124,3424,Criterion,1229105648 +37124,3461,Criterion,1229104620 +37124,3503,Criterion,1229608394 +37124,3627,Criterion,1229105063 +37124,3645,Criterion,1230306790 +37124,3736,Criterion,1229103800 +37124,3739,Criterion,1229608505 +37124,3929,Criterion,1229105289 +37124,4034,Criterion,1229608144 +37124,4144,Criterion,1229608062 +37124,4194,Criterion,1229105559 +37124,4298,Criterion,1229106052 +37124,4330,Criterion,1229105936 +37124,4334,Criterion,1274446886 +37124,4395,Criterion,1229106008 +37124,4399,Criterion,1229106091 +37124,4419,Criterion,1228834573 +37124,4422,Criterion,1229105726 +37124,4432,Criterion,1298483034 +37124,4433,Criterion,1229105599 +37124,4546,Criterion,1229106364 +37124,4605,Criterion,1229106154 +37124,4687,Criterion,1229106174 +37124,4806,Criterion,1229106311 +37124,4840,Criterion,1230306907 +37124,4914,Criterion,1276360726 +37124,4927,Criterion,1229103435 +37124,4928,Criterion,1229607968 +37124,4979,Criterion,1261234361 +37124,5142,Criterion,1229608009 +37124,5147,Criterion,1228838611 +37124,5187,Criterion,1229608372 +37124,5198,Criterion,1229104261 +37124,5258,Criterion,1229608172 +37124,5291,Criterion,1229607887 +37124,5304,Criterion,1262886597 +37124,5333,Criterion,1229608125 +37124,5373,Criterion,1229608037 +37124,5436,Criterion,1229608218 +37124,5498,Criterion,1229608291 +37124,5560,Criterion,1229103781 +37124,5605,Criterion,1229608338 +37124,5932,Criterion,1230306785 +37124,5937,Criterion,1230955395 +37124,6023,Criterion,1229103182 +37124,6051,Criterion,1229105368 +37124,6123,Criterion,1261233645 +37124,6148,Criterion,1230955483 +37124,6241,Criterion,1231525165 +37124,6467,Criterion,1238295530 +37124,6643,Criterion,1258250983 +37124,6660,Criterion,1229103194 +37124,6666,Criterion,1229105748 +37124,6783,Criterion,1228838631 +37124,6859,Criterion,1229103353 +37124,6920,Criterion,1230306766 +37124,6981,Criterion,1229106250 +37124,6985,Criterion,1229105041 +37124,7013,Criterion,1298482838 +37124,7064,Criterion,1229103921 +37124,7067,Criterion,1229608101 +37124,7071,Criterion,1261233971 +37124,7116,Criterion,1229104440 +37124,7134,Criterion,1229105313 +37124,7135,Criterion,1230306746 +37124,7206,Criterion,1229105972 +37124,7301,Criterion,1243524403 +37124,7333,Criterion,1229103201 +37124,7335,Criterion,1230306636 +37124,7396,Criterion,1230306806 +37124,7484,Criterion,1229105704 +37124,7485,Criterion,1229105407 +37124,7564,Criterion,1229105483 +37124,7577,Criterion,1229105203 +37124,7585,Criterion,1229104189 +37124,7587,Criterion,1230306656 +37124,7748,Criterion,1261234002 +37124,7766,Criterion,1230306643 +37124,7820,Criterion,1261233848 +37124,7924,Criterion,1230306769 +37124,7925,Criterion,1229106071 +37124,7926,Criterion,1228834597 +37124,7937,Criterion,1243524590 +37124,7941,Criterion,1261233891 +37124,7943,Criterion,1262886702 +37124,7979,Criterion,1229608448 +37124,8126,Criterion,1229104123 +37124,8197,Criterion,1276360766 +37124,8199,Criterion,1272209044 +37124,8261,Criterion,1229103166 +37124,8264,Criterion,1229106208 +37124,8295,Criterion,1229104662 +37124,8338,Criterion,1261233800 +37124,8341,Criterion,1229104376 +37124,8602,Criterion,1262886776 +37124,8620,Criterion,1230306794 +37124,8738,Criterion,1262886895 +37124,8739,Criterion,1230960608 +37124,8785,Criterion,1242660380 +37124,8786,Criterion,1261233579 +37124,8797,Criterion,1229106191 +37124,8848,Criterion,1256577027 +37124,25898,Criterion,1229106237 +37124,25923,Criterion,1229104353 +37124,25954,Criterion,1229105142 +37124,25995,Criterion,1229103952 +37124,26003,Criterion,1256576981 +37124,26005,Criterion,1229103964 +37124,26012,Criterion,1229103976 +37124,26049,Criterion,1251584485 +37124,26052,Criterion,1243524525 +37124,26073,Criterion,1255446384 +37124,26082,Criterion,1243524392 +37124,26119,Criterion,1229104046 +37124,26122,Criterion,1261233705 +37124,26131,Criterion,1230306623 +37124,26150,Criterion,1229104415 +37124,26158,Criterion,1229103372 +37124,26159,Criterion,1261233459 +37124,26171,Criterion,1229105990 +37124,26208,Criterion,1231525275 +37124,26222,Criterion,1231525181 +37124,26303,Criterion,1229105461 +37124,26318,Criterion,1229103232 +37124,26366,Criterion,1229103359 +37124,26431,Criterion,1249755236 +37124,30810,Criterion,1229103211 +37124,31545,Criterion,1229106290 +37124,31590,Criterion,1243597606 +37124,31770,Criterion,1228838618 +37124,32179,Criterion,1276360802 +37124,32375,Criterion,1231525222 +37124,32387,Criterion,1261233942 +37124,32525,Criterion,1228104366 +37124,32892,Criterion,1229103241 +37124,37287,Criterion,1229106264 +37124,40833,Criterion,1229103158 +37124,41627,Criterion,1229104016 +37124,42217,Criterion,1260829337 +37124,44587,Criterion,1229104395 +37124,46664,Criterion,1229103466 +37124,46803,Criterion,1230306828 +37124,46855,Criterion,1230306832 +37124,47152,Criterion,1251584569 +37124,49394,Criterion,1251584694 +37124,50477,Criterion,1229105162 +37124,50619,Criterion,1229105122 +37124,60745,Criterion,1229103150 +37124,61279,Criterion,1229105332 +37124,63446,Criterion,1263867647 +37124,63676,Criterion,1243597548 +37124,68874,Criterion,1263867660 +37124,69241,Criterion,1263840203 +37140,1,Animation,1155610344 +37140,1,Pixar,1155610344 +37140,17,Period,1155611701 +37140,17,Regency England,1155611741 +37140,21,Crime,1155611452 +37140,21,mob,1155611452 +37140,32,SF,1155611028 +37140,32,Time Travel,1155611028 +37140,34,Animal,1155611140 +37140,39,Comedy,1155611484 +37140,39,dumb teen,1155611485 +37140,47,Crime,1155611107 +37140,95,action,1155611492 +37140,110,medieval,1155610899 +37140,110,Period,1155610899 +37140,208,post apocalypse,1155611414 +37140,208,SF,1155611414 +37140,260,Space Opera,1155610877 +37140,288,Crime,1155611771 +37140,288,spree,1155611771 +37140,296,Crime,1155610335 +37140,300,somewhat true story,1155612024 +37140,339,identity,1155611465 +37140,339,Romance,1155611464 +37140,357,Comedy,1155611330 +37140,357,wedding ceremony,1155611330 +37140,364,Animation,1155610328 +37140,364,Disney,1155610328 +37140,367,Comedy,1155611211 +37140,377,Action,1155611036 +37140,410,morbid comedy,1155609835 +37140,442,dumb dystopia,1155609846 +37140,457,Action,1155610844 +37140,500,Comedy,1155611178 +37140,527,SC,1155610982 +37140,527,WWII,1155610982 +37140,539,Romance,1155611311 +37140,541,androids,1155611784 +37140,541,SF,1155611784 +37140,587,Fantasy,1155611227 +37140,587,ghosts,1155611304 +37140,588,Animation Disney,1155610319 +37140,593,Horror,1155610817 +37140,595,Animation,1155611061 +37140,595,Disney,1155611061 +37140,597,Romance,1155611165 +37140,597,Whore,1155611165 +37140,608,Crime,1155611007 +37140,733,Action,1155611150 +37140,745,comedy,1186549942 +37140,745,stop motion,1186549942 +37140,780,alien invasion,1155610918 +37140,780,SF,1155610918 +37140,904,identity,1186550458 +37140,904,mystery,1186550441 +37140,904,obsession,1186550441 +37140,904,phobias,1186550458 +37140,904,thriller,1186550441 +37140,904,voyeurism,1186550424 +37140,922,AGE DISPARITY ROMANCE,1186551040 +37140,922,stardom,1186551040 +37140,1073,Fantasy,1155611338 +37140,1148,animation,1186550082 +37140,1148,comedy,1186550082 +37140,1148,penguins,1186550082 +37140,1148,SF,1186550082 +37140,1148,stop motion,1186550082 +37140,1196,Space Opera,1155611050 +37140,1197,fairy tale,1155611353 +37140,1197,Fantasy,1155611353 +37140,1198,Adventure,1155611072 +37140,1200,aliens,1155612044 +37140,1200,SF,1155612044 +37140,1207,lawyer,1186550810 +37140,1210,Space Opera,1155610996 +37140,1212,zither,1186551050 +37140,1214,aliens,1155611756 +37140,1214,SF,1155611756 +37140,1223,claymation,1186550724 +37140,1224,politics,1186551163 +37140,1224,Shakespeare,1186551151 +37140,1234,confidence game,1186550713 +37140,1265,Fantasy,1155611503 +37140,1265,loop,1155611503 +37140,1267,brainwashing,1186551175 +37140,1267,Cold War,1186551178 +37140,1267,Communism,1186551177 +37140,1267,grim humor,1186551201 +37140,1270,SF,1155611118 +37140,1291,Adventure,1155610258 +37140,1580,aliens,1155611363 +37140,1580,SF,1155611363 +37140,1617,conspiracy,1155611442 +37140,1617,Crime,1155610246 +37140,2396,Period,1155612035 +37140,2396,Renaissance,1155612035 +37140,2571,Dystopia,1155610282 +37140,2628,space opera,1155610125 +37140,2692,animation,1186551003 +37140,2692,intense,1186551005 +37140,2716,horror comedy,1155610114 +37140,2762,ghost,1155610099 +37140,3000,anime,1186550979 +37140,3000,industrial progress,1186550979 +37140,3000,nature,1186550979 +37140,3435,crime,1186550209 +37140,3435,film noir,1186550209 +37140,3435,thriller,1186550209 +37140,4226,mystery,1186549922 +37140,4226,psychological,1186549922 +37140,4878,fate,1186550921 +37140,4973,garden gnome,1186550188 +37140,5291,crime,1186550394 +37140,5291,multiple storylines,1186550394 +37140,5291,mystery,1186550394 +37140,5618,animation,1186550169 +37140,5618,anime,1186550169 +37140,5618,childhood,1186550169 +37140,5618,fantasy,1186550169 +37140,5690,anime,1186550499 +37140,5690,childhood,1186550529 +37140,5690,history,1186550529 +37140,5690,tragedy,1186550529 +37140,5690,war,1186550529 +37140,5971,anime,1186550563 +37140,5971,country life,1186550557 +37140,5971,fantasy,1186550586 +37140,5971,nature,1186550587 +37140,6350,adventure,1186550489 +37140,6350,anime,1186550479 +37140,6350,SF,1186550489 +37140,6787,biopic,1186550130 +37140,6787,corruption,1186550130 +37140,6787,politics,1186550130 +37140,6787,true story,1186550130 +37140,7099,alien beings,1186550697 +37140,7099,anime,1186550697 +37140,7099,SF,1186550697 +37140,7099,war,1186550697 +37140,7153,adventure,1186549888 +37140,7153,epic,1186549888 +37140,7153,fantasy,1186549888 +37140,7302,adventure,1186549829 +37140,7302,fantasy,1186549829 +37140,7302,silent,1186549829 +37140,7438,Action,1155610352 +37140,8167,swasbuckler,1186550611 +37140,8961,action,1186550794 +37140,8961,superheroes,1186550794 +37140,26554,Post Apocalypse,1155610601 +37140,30749,heroism,1186550549 +37140,30749,injustice,1186550549 +37140,30749,thriller,1186550549 +37140,30749,war,1186550549 +37140,31658,anime,1186550932 +37140,40966,Scandal period,1155610507 +37140,42730,basketball,1155610558 +37140,42730,Sports,1155610558 +37140,43679,Horror,1155610463 +37140,44225,Fantasy,1155610451 +37140,45722,Adventure,1155612113 +37140,45722,pirates,1155612114 +37140,45728,Comedy,1155612075 +37140,54272,animation,1186549760 +37140,54272,humorous,1186549760 +37166,4027,adventure,1403407388 +37166,4027,funny,1403407402 +37166,4027,George Clooney,1403407391 +37166,4027,great soundtrack,1403407393 +37166,4027,Quirky,1403407398 +37210,185,computers,1441712198 +37210,185,hackers,1441712220 +37210,1483,controversial,1441712061 +37210,1483,distorted sense of reality,1441712053 +37210,1483,disturbing,1441711998 +37210,1483,enigmatic,1441712120 +37210,1483,noir,1441712105 +37210,1483,Nudity (Full Frontal - Notable),1441712092 +37210,1483,Nudity (Full Frontal),1441712057 +37210,1483,sexuality,1441712088 +37210,1483,stylized,1441712115 +37210,2005,adventure,1441743096 +37210,2005,cult film,1441743108 +37210,2005,friendship,1441743101 +37210,3298,scam,1441742767 +37210,3298,Social Engineering,1441742771 +37210,3298,stock market,1441742775 +37210,5954,Edward Norton,1441742964 +37210,6874,bloody,1441744162 +37210,6874,stylized,1441744139 +37210,6874,Uma Thurman,1441744123 +37210,6874,violence,1441744136 +37210,6874,violent,1441744126 +37210,6874,visually appealing,1441744145 +37210,7438,stylized,1441744076 +37210,7438,Uma Thurman,1441743649 +37210,7438,violence,1441744089 +37210,7438,visually appealing,1441744098 +37210,32587,dark,1441743613 +37210,32587,stylized,1441743604 +37210,32587,surreal,1441743616 +37210,89780,easily confused with other movie(s) (title),1441741659 +37210,101864,interesting concept,1443141932 +37210,101864,twists & turns,1443141968 +37210,111362,based on a comic,1441919776 +37210,111362,time travel,1441919751 +37210,111659,fairy tale,1441741896 +37210,111659,twist ending,1441741915 +37210,111659,visual effects,1441741907 +37210,111781,car chase,1443141552 +37210,111781,tedious,1443141483 +37210,116797,hisorically inaccurate,1441954728 +37210,116797,inaccurate,1441954753 +37210,116797,mathematicians,1441954733 +37210,118696,prolonged swordplay,1441919690 +37210,132046,Uplifting,1443141395 +37212,260,EPIC,1431403000 +37212,260,sci-fi,1431402994 +37218,971,Elizabeth Taylor,1429418691 +37218,97921,Jennifer Lawrence,1430035017 +37218,104374,cloying,1430125814 +37218,104374,Rachel McAdams,1430125854 +37218,105355,Nudity (Full Frontal),1431199589 +37218,115713,Nudity (Full Frontal - Notable),1430305061 +37220,1777,funny,1335585563 +37220,6338,funny,1335585515 +37220,7502,World War II,1335585120 +37223,260,action,1438615662 +37223,260,sci-fi,1438615651 +37231,72998,3d,1268298361 +37231,72998,colonialism,1268298340 +37231,72998,graphic design,1268298359 +37231,72998,military,1268298344 +37231,72998,new age,1268298382 +37231,72998,visuals,1268298353 +37231,72998,war,1268298356 +37266,147,Leonardo DiCaprio,1441720958 +37266,1209,ennio morricone,1442050238 +37266,1209,Sergio Leone,1442050235 +37266,4011,brad pitt,1441479848 +37266,4011,british,1441479850 +37266,4011,guy ritchie,1441479853 +37266,4896,Emma Watson,1441479982 +37266,8948,Jude Law,1442001445 +37266,27831,British gangster,1441479681 +37266,41285,Scarlett Johansson,1441479496 +37266,41285,Woody Allen,1441479497 +37266,49272,Daniel Craig,1441479637 +37266,49272,James Bond,1441479633 +37266,62849,Gerard Butler,1441479666 +37266,62849,good soundtrack,1441479663 +37266,62849,Guy Ritchie,1441479660 +37266,68073,Bill Nighy,1441479592 +37266,68073,British,1441479589 +37266,68073,Music,1441479594 +37266,71838,Gerard Butler,1442001683 +37266,73017,Jude Law,1441479706 +37266,73017,Robert Downey Jr.,1441479704 +37266,89804,George Clooney,1442001781 +37266,96079,beautifully filmed,1441479557 +37266,96079,Daniel Craig,1441479561 +37266,96079,James Bond,1441479555 +37266,96079,Scotland,1441479560 +37266,97304,Ben Affleck,1441990471 +37266,97304,Middle East,1441990477 +37319,902,Audrey Hepburn,1360384365 +37327,260,best movie ever,1433628954 +37379,1,animation,1163101260 +37379,1,Pixar,1163101256 +37379,17,Jane Austen,1163368569 +37379,36,death penalty,1163101660 +37379,36,Nun,1163101666 +37379,36,prison,1163101663 +37379,36,Sean Penn,1163101672 +37379,36,true story,1163101668 +37379,47,Brad Pitt,1163368465 +37379,47,crime,1163101358 +37379,47,Kevin Spacey,1163101360 +37379,47,serial killer,1163101356 +37379,253,Brad Pitt,1163101514 +37379,253,Kirsten Dunst,1163368524 +37379,253,Tom Cruise,1163368522 +37379,253,vampire,1163101513 +37379,261,Drama,1163366833 +37379,261,Louisa May Alcott,1163366830 +37379,293,Gary Oldman,1234203762 +37379,293,Natalie Portman,1234203769 +37379,337,Johnny Depp,1163369962 +37379,356,Tom Hanks,1163100902 +37379,380,action,1163101263 +37379,480,action,1163101220 +37379,480,dinosaurs,1163101216 +37379,480,Steven Spielberg,1163101218 +37379,527,drama,1163101166 +37379,527,Holocaust,1163101149 +37379,527,Steven Spielberg,1163101152 +37379,527,true story,1163101159 +37379,527,World War II,1163101156 +37379,527,WWII,1163101169 +37379,589,action,1163101268 +37379,589,sci-fi,1163101270 +37379,593,Anthony Hopkins,1163101122 +37379,593,crime,1163101106 +37379,593,Jodie Foster,1163101110 +37379,648,Action,1163101300 +37379,648,Tom Cruise,1163101303 +37379,750,classic,1163101897 +37379,750,nuclear war,1163101899 +37379,750,Stanley Kubrick,1163101895 +37379,780,action,1163100943 +37379,780,alien invasion,1163100945 +37379,780,aliens,1163100941 +37379,1196,George Lucas,1163368447 +37379,1197,Christopher Guest,1163101471 +37379,1197,fantasy,1163101469 +37379,1197,Quirky,1163101466 +37379,1206,Stanley Kubrick,1163102460 +37379,1207,classic,1163102084 +37379,1207,Gregory Peck,1163102083 +37379,1222,Stanley Kubrick,1208723521 +37379,1222,Vietnam War,1208723516 +37379,1265,Bill Murray,1163101561 +37379,1265,comedy,1163101566 +37379,1265,deja vu,1163101572 +37379,1265,romance,1163101568 +37379,1265,time travel,1163101563 +37379,1288,Christopher Guest,1163100679 +37379,1288,mockumentary,1163100682 +37379,1291,Harrison Ford,1163368554 +37379,1291,Holy Grail,1163368556 +37379,1304,Paul Newman,1163102214 +37379,1304,western,1163102216 +37379,1580,aliens,1163368514 +37379,1580,Tommy Lee Jones,1163101499 +37379,1580,Will Smith,1163101497 +37379,2176,Alfred Hitchcock,1163100809 +37379,2176,Hitchcock,1163100807 +37379,2248,john cusack,1163105143 +37379,2395,quirky,1208380775 +37379,2395,Wes Anderson,1208380762 +37379,2628,fantasy,1163100982 +37379,2628,George Lucas,1163100966 +37379,2628,Lucas,1163100988 +37379,2628,sci-fi,1163100984 +37379,2692,surreal,1163102115 +37379,2692,time travel,1163102117 +37379,2762,Bruce Willis,1163101426 +37379,2762,twist ending,1163101429 +37379,2858,suburbia,1163101372 +37379,2858,surrealism,1163101371 +37379,2959,based on a book,1208723511 +37379,2959,Brad Pitt,1163103770 +37379,2959,Edward Norton,1163103768 +37379,3435,adapted from:book,1256591950 +37379,3435,atmospheric,1256591953 +37379,3435,classic,1256591939 +37379,3435,cynical,1256591966 +37379,3435,film noir,1256591879 +37379,3435,literary adaptation,1256591945 +37379,3435,Los Angeles,1256591958 +37379,3435,snappy dialog,1256591932 +37379,3435,stylized,1256591929 +37379,3435,thriller,1256591936 +37379,3996,Ang Lee,1163103315 +37379,3996,martial arts,1163103313 +37379,4306,animation,1163100915 +37379,4848,surreal,1163104551 +37379,4973,Paris,1163101783 +37379,4973,romance,1163101779 +37379,4973,whimsical,1163101781 +37379,5446,Australia,1163102426 +37379,5459,Tommy Lee Jones,1163101021 +37379,5459,Will Smith,1163101022 +37379,5992,Julianne Moore,1163105323 +37379,5992,Nicole Kidman,1163105321 +37379,6331,spelling bee,1163102158 +37379,6682,1947,1176266146 +37379,6682,Hinduism,1176266184 +37379,6682,independence,1176266156 +37379,6682,India,1176266127 +37379,6682,Islam,1176266179 +37379,6682,Pakistan,1176266131 +37379,6682,Partition,1176266137 +37379,6682,violence,1176266163 +37379,6787,Deep Throat,1163101911 +37379,6787,journalism,1163101909 +37379,6787,Politics,1163101907 +37379,6874,Quentin Tarantino,1163100662 +37379,6874,Tarantino,1163100657 +37379,6874,Uma Thruman,1163100668 +37379,6953,Sean Penn,1163104944 +37379,7361,memory,1163101887 +37379,7361,surreal,1163101885 +37379,7438,Quentin Tarantino,1163104037 +37379,7438,Uma Thruman,1163104040 +37379,7451,High School,1163105384 +37379,8874,zombies,1208723461 +37379,8914,complicated plot,1234410386 +37379,8914,low budget,1234410402 +37379,8914,time travel,1234410380 +37379,8981,disturbing,1163105035 +37379,8981,Jude Law,1163105033 +37379,8981,Natalie Portman,1163105031 +37379,30749,Africa,1163101701 +37379,30749,depressing,1163101713 +37379,30749,Don Cheadle,1163101719 +37379,30749,genocide,1163101698 +37379,30749,true story,1163101730 +37379,30749,United Nations,1163101705 +37379,30749,war,1208723475 +37379,34405,Firefly,1163104129 +37379,35836,Seth Rogen,1208380478 +37379,35836,Steve Carell,1208380465 +37379,37741,Phillip Seymour Hoffman,1163102168 +37379,37741,Truman Capote,1163102166 +37379,44665,Bruce Willis,1208417170 +37379,44665,Morgan Freeman,1208417179 +37379,44665,twist ending,1208417167 +37379,46976,Maggie Gyllenhaal,1208723453 +37379,47610,Edward Norton,1208380915 +37379,47610,Jessica Biel,1208380941 +37379,47610,magic,1208380922 +37379,47610,Paul Giamatti,1208380946 +37379,47610,twist ending,1208380957 +37379,48780,Christian Bale,1163362754 +37379,48780,David Bowie,1208381036 +37379,48780,Hugh Jackman,1163362751 +37379,48780,magic,1163362746 +37379,48780,Michael Caine,1208381029 +37379,48780,Scarlet Johannson,1208381032 +37379,49272,Daniel Craig,1208380406 +37379,49272,James Bond,1208380394 +37379,53125,Johnny Depp,1208380710 +37379,53125,Orlando Bloom,1208380722 +37379,53125,pirates,1208380712 +37379,54272,animation,1208396084 +37379,54272,simpsons,1208396107 +37379,55052,Keira Knightley,1208723498 +37379,55052,romance,1208723503 +37379,55290,kidnapping,1208723493 +37379,55290,Morgan Freeman,1208723486 +37379,57669,Colin Farrell,1255492132 +37379,57669,dark comedy,1255492128 +37379,57669,irish accent,1255492135 +37379,57669,stylized,1255492139 +37379,66934,joss whedon,1243314704 +37379,66934,Nathan Fillion,1243314701 +37379,66934,not a movie,1243314824 +37379,66934,too short,1243314832 +37403,5618,beautiful,1241053076 +37403,5618,dreamlike,1241053081 +37403,6753,inspirational,1241053124 +37411,1690,aliens,1187922558 +37411,1690,horror,1187922558 +37411,1690,space,1187922558 +37411,2657,addictive,1187932722 +37411,5377,FATHERS AND SONS,1187922955 +37411,5377,orphans,1187922955 +37411,5377,realistic,1187922955 +37411,5617,bad ending,1341888280 +37411,5617,perverse,1341889076 +37411,5617,slow paced,1341889121 +37411,5617,too long,1341888280 +37411,5679,fantastic,1187923003 +37411,5679,fate,1187923004 +37411,5679,horror,1187923004 +37411,5679,mystery,1187923003 +37411,5679,suspense,1187923003 +37411,5679,zombies,1187923003 +37411,64957,slow pacing,1247511892 +37411,64957,too long,1247511892 +37411,89470,bland characters,1329581302 +37411,89470,disappointing,1329581343 +37411,89470,lacks contemplative depth,1329581275 +37411,91831,Characters lack depth,1330052374 +37411,91831,Ending,1330052323 +37411,91831,Psychiatry,1330052346 +37411,91831,Science vs Religion,1330052336 +37411,93457,dark,1431300102 +37411,93457,not seen,1431300102 +37411,93457,scary,1431300102 +37411,99724,drugs,1421032780 +37411,99724,jail movie,1425099080 +37411,99724,lgbt,1421032777 +37411,99724,prison,1421032800 +37411,99724,prison codes,1421032797 +37411,99724,sexual harassment,1421032805 +37411,99724,transgender,1421032774 +37411,99724,violence,1421032815 +37411,99724,wrongly convicted,1425099080 +37417,64614,classic car,1248098811 +37417,64614,Clint Eastwood,1248098798 +37417,64614,culture clash,1248098830 +37417,64614,friendship,1248098821 +37417,64614,mentor,1248098827 +37417,64614,murder,1248098837 +37424,38061,Robert Downey Jr,1200796926 +37428,40815,not as good as the others,1170469428 +37441,58559,Batman,1427572775 +37441,58559,comic book,1427572779 +37452,1263,Robert De Niro,1239512538 +37452,3470,Amazing!,1239512592 +37452,58559,so good,1239511203 +37453,29,whimsical,1439786962 +37453,4973,surreal,1439786938 +37453,4973,whimsical,1439786943 +37453,109374,cinematography,1439786910 +37453,109374,visually appealing,1439786916 +37453,109374,Wes Anderson,1439786919 +37453,109374,whimsical,1439786925 +37505,260,future fantasy,1439010185 +37521,47,Morgan Freeman,1311041248 +37521,47,powerful ending,1311041249 +37521,47,psychology,1311041247 +37521,1188,weird,1313047624 +37521,1188,what the fuck?,1313047634 +37521,1535,everything,1308985840 +37521,1535,sad,1308985825 +37521,2721,Cute,1307960854 +37521,2721,Funny,1307960852 +37521,2721,Gay,1307960841 +37521,2721,gay romance,1307960849 +37521,2721,One of my favorites,1307960838 +37521,2721,positive portyayal of gay relationships,1307960844 +37521,2837,Ends up with a girl,1308210246 +37521,2908,gay,1307929428 +37521,2908,homophobia,1307929447 +37521,3786,campy,1307915627 +37521,3786,funny,1307915635 +37521,3786,satire,1307915637 +37521,3786,sexuality,1307915644 +37521,3825,dancing on the bar,1312359349 +37521,3825,plot,1312359371 +37521,3825,romantic comedy,1312359355 +37521,4299,chaucer,1312359235 +37521,4299,historically inaccurate,1312359199 +37521,4299,innuendo,1312359218 +37521,4299,naked Chaucer,1312359210 +37521,5810,Eminem,1312359150 +37521,8957,clever,1311041174 +37521,8957,mindfuck,1311041171 +37521,39183,homosexuality,1307915658 +37521,39183,romance,1307915668 +37521,39183,sexuality,1307915666 +37521,39446,clever,1311041263 +37521,39446,mindfuck,1311041272 +37521,39446,not as good as the first,1311041260 +37521,48744,bisexual,1307230094 +37521,48744,erotic,1307230097 +37521,48744,lesbian,1307230102 +37521,48744,Nudity (Full Frontal - Notable),1307229872 +37521,48744,Nudity (Full Frontal),1307230110 +37521,48744,queer,1307229853 +37521,48744,raunchy,1307230085 +37521,48744,relationships,1307230104 +37521,48744,sex,1307230088 +37521,48744,sexual,1307230090 +37521,48744,social commentary,1307230106 +37521,48744,Underrated,1307229884 +37521,48744,Underrated piece of genius,1307229899 +37521,48744,unsimulated sex scenes,1307229911 +37521,48877,clever,1311041220 +37521,48877,mindfuck,1311041210 +37521,49910,in netflix queue,1313311828 +37521,53953,author:Stephen King,1311041152 +37521,53953,Samuel L. Jackson,1311041144 +37521,53953,scary,1311041146 +37521,55577,clever,1311041297 +37521,55577,mindfuck,1311041290 +37521,55577,Psychological horror,1311041284 +37521,55844,BAD special effects,1313024711 +37521,55844,lesbian,1313024714 +37521,55844,no plot,1313024727 +37521,56757,cannibalism,1305700853 +37521,56757,Johnny Depp,1305700848 +37521,56757,nothing,1305700874 +37521,58998,drugs,1306890291 +37521,58998,Russell Brand,1306890266 +37521,59549,Gay Lead Character,1309598781 +37521,59549,gay relationship,1309598783 +37521,59549,gay romance,1309598785 +37521,59549,gay sex,1309598802 +37521,63436,clever,1311041338 +37521,63436,mindfuck,1311041317 +37521,63436,Psychological horror,1311041310 +37521,69069,Eric Olsen,1315350631 +37521,69069,Nicholas D'Agosto,1315350622 +37521,69069,Nudity (Topless),1315350593 +37521,71518,Drew Barrymore,1313047693 +37521,71518,girl power,1313047696 +37521,71518,lame romance,1313047677 +37521,71518,roller derby,1313047696 +37521,75813,death,1307846084 +37521,75813,violence,1307846093 +37521,75813,weed,1307846097 +37521,81535,clever,1311041378 +37521,81535,mindfuck,1311041387 +37521,81535,too many sequels,1311041367 +37531,260,space opera,1439785394 +37552,1101,but a classic,1149193980 +37552,1101,Cheesy,1149193980 +37552,2012,Not the best seqeul for the classic original.,1149193981 +37552,6315,but it's fun.,1149194156 +37552,6315,Not a great movie,1149194156 +37552,45501,Classic Vince Vaughn,1149302773 +37557,36,religion,1345113029 +37557,50,complicated,1357081078 +37557,50,suspense,1357081078 +37557,110,based on a true story,1358086878 +37557,110,classic,1358086868 +37557,110,historical,1358086889 +37557,110,inspirational,1358086902 +37557,110,Mel Gibson,1358086872 +37557,110,war,1358086876 +37557,165,Bruce Willis,1364592448 +37557,165,predictable,1364592437 +37557,165,Samuel L. Jackson,1364592446 +37557,441,American culture,1345664812 +37557,475,true story,1357082299 +37557,501,british,1371412491 +37557,501,harsh,1371412518 +37557,501,intellectual,1371412504 +37557,501,Mike Leigh,1371412493 +37557,501,social commentary,1371412568 +37557,501,violence,1378315858 +37557,527,based on a true story,1357080807 +37557,527,Nazis,1357080807 +37557,535,dark comedy,1357081273 +37557,535,multiple storylines,1357081273 +37557,608,dark comedy,1357080794 +37557,750,dark comedy,1357080792 +37557,750,satire,1357080793 +37557,750,social commentary,1357080792 +37557,841,atmospheric,1385241049 +37557,841,disturbing,1385241036 +37557,841,ominous,1385241034 +37557,1036,Bruce Willis,1361051434 +37557,1036,humorous,1361051437 +37557,1041,Mike Leigh,1371400526 +37557,1041,Timothy Spall,1371400521 +37557,1089,black comedy,1357080805 +37557,1089,stylized,1357080805 +37557,1111,beautifully filmed,1379704606 +37557,1111,documentary,1379704648 +37557,1111,docventures,1383340366 +37557,1111,French,1379704630 +37557,1120,freedom of expression,1357081349 +37557,1120,social commentary,1357081349 +37557,1175,ddark comedy,1396133049 +37557,1175,surreal,1396133012 +37557,1204,atmospheric,1357081877 +37557,1208,classic,1357082665 +37557,1208,hallucinatory,1357082665 +37557,1208,surreal,1357082665 +37557,1208,war,1357082665 +37557,1214,atmospheric,1357082738 +37557,1214,classic,1357082738 +37557,1214,sci-fi,1357082738 +37557,1230,comedy,1364507776 +37557,1230,thought-provoking,1364507771 +37557,1230,Woody Allen,1364507768 +37557,1233,atmospheric,1357082821 +37557,1233,classic,1357082855 +37557,1233,World War II,1357082855 +37557,1234,complicated,1357081207 +37557,1234,con artists,1357081207 +37557,1241,cult film,1357165089 +37557,1241,ending,1357165089 +37557,1241,gore,1357165089 +37557,1241,lawn mower,1357165089 +37557,1241,Peter Jackson,1357165089 +37557,1255,cult film,1357165035 +37557,1255,Peter Jackson,1357165035 +37557,1258,psychology,1357081272 +37557,1262,true story,1357080796 +37557,1262,World War II,1357080796 +37557,1273,Roberto Benigni,1357080841 +37557,1273,stylized,1357080841 +37557,1293,biography,1357082453 +37557,1701,Woody Allen,1385326891 +37557,1729,Quentin Tarantino,1357082260 +37557,1732,Coen Brothers,1357080483 +37557,1732,dark comedy,1357080485 +37557,1884,drugs,1357082535 +37557,1884,hallucinatory,1357082536 +37557,1884,social commentary,1357082535 +37557,1884,surreal,1357082536 +37557,2019,Akira Kurosawa,1357081272 +37557,2019,classic,1357081272 +37557,2019,samurai,1357081272 +37557,2150,Africa,1364073631 +37557,2150,bittersweet,1364073673 +37557,2150,natives,1364073626 +37557,2150,silly,1364073609 +37557,2206,Alfred Hitchcock,1358593926 +37557,2206,sleepy,1358593942 +37557,2329,social commentary,1357082703 +37557,2329,thought-provoking,1357082703 +37557,2442,biography,1357082403 +37557,2442,classical music,1357082403 +37557,2442,touching,1357082403 +37557,2571,post-apocalyptic,1357080799 +37557,2580,black comedy,1363539396 +37557,2580,comedy,1363539381 +37557,2580,drugs,1363539405 +37557,2580,multiple storylines,1363539385 +37557,2594,mindfuck,1345537436 +37557,2594,unrealistic ending,1345537478 +37557,2791,classic,1357082750 +37557,2791,comedy,1357082774 +37557,2791,Leslie Nielsen,1357082774 +37557,2791,parody,1357082774 +37557,2959,complicated,1357082493 +37557,2959,dark comedy,1357082492 +37557,2959,social commentary,1357082492 +37557,2959,thought-provoking,1357082492 +37557,3160,drugs,1357080798 +37557,3160,multiple storylines,1357080797 +37557,3176,creepy,1376853275 +37557,3176,obsession,1376853311 +37557,3176,psychology,1376853248 +37557,3176,suspense,1376853294 +37557,3362,Al Pacino,1357081006 +37557,3362,dark comedy,1357081006 +37557,3362,true story,1357081006 +37557,3363,American culture,1345574331 +37557,3363,cars,1345574362 +37557,3462,social commentary,1357080801 +37557,3741,atmospheric,1376852483 +37557,3741,Martin Sheen,1376852476 +37557,3741,Terrence Malick,1376852472 +37557,3801,classic,1359925620 +37557,3801,courtroom drama,1359925613 +37557,3801,slow,1359925610 +37557,3910,musical,1344546218 +37557,3911,dogs,1346239243 +37557,4186,Billy Wilder,1360361516 +37557,4278,controversial,1361051470 +37557,4278,Nazis,1361051568 +37557,4278,propaganda,1361051469 +37557,4278,watch at double speed,1361051554 +37557,4326,civil rights,1358280646 +37557,4326,Ku Klux Klan,1358280632 +37557,4326,racism,1358280654 +37557,4326,true story,1358280639 +37557,4519,classic,1365620009 +37557,4519,nostalgic,1365620000 +37557,4803,Clint Eastwood,1361736482 +37557,4803,obsession,1361736476 +37557,5341,freedom of expression,1357081856 +37557,5810,1990s,1363289284 +37557,5810,based on a true story,1363289317 +37557,5810,Brittany Murphey,1363289289 +37557,5810,Eminem,1363289292 +37557,5833,atmospheric,1357587233 +37557,5833,campy,1357587225 +37557,5833,cult,1357587281 +37557,5833,fun,1357587268 +37557,5833,survival,1357587228 +37557,5899,History,1358796098 +37557,5899,true story,1358796082 +37557,5899,war,1358796095 +37557,5945,meaning of life,1345839149 +37557,6104,British,1363895045 +37557,6104,Monty Python,1363895048 +37557,6286,Aki Kaurismäki,1357333111 +37557,6286,atmospheric,1357333096 +37557,6286,deadpan,1357333089 +37557,6286,executed with economy of expression,1357333091 +37557,6286,Finnish,1357333104 +37557,6378,remake,1366564932 +37557,6542,anti-war,1357502267 +37557,6542,cultural customs and traditions,1357502264 +37557,6542,Finnish,1357502259 +37557,6542,nature,1357502313 +37557,6542,Sami,1357502297 +37557,6858,suspense,1357082136 +37557,6874,Quentin Tarantino,1357081921 +37557,6874,stylized violence,1357081921 +37557,7124,documentary,1383340237 +37557,7124,docventures,1383340229 +37557,7147,dreamlike,1361371718 +37557,7147,magic,1361371708 +37557,7147,quirky,1361371715 +37557,7147,surreal,1361371712 +37557,7347,psychological,1379354143 +37557,7347,split personality,1379354134 +37557,7347,suspense,1379354136 +37557,7361,bittersweet,1378315928 +37557,7361,cult film,1378315947 +37557,7361,nonlinear,1378315900 +37557,7361,quirky,1378315918 +37557,7361,surreal,1378315894 +37557,7361,thought-provoking,1378315897 +37557,7438,Quentin Tarantino,1357081900 +37557,7438,stylized violence,1357081900 +37557,8132,simple plot,1345762567 +37557,8641,dog killing,1345576193 +37557,8641,hilarious,1345575931 +37557,8641,stupid,1345576232 +37557,8807,marijuana,1362942081 +37557,8807,race issues,1362942101 +37557,25750,Buster Keaton,1379356878 +37557,25750,silent,1379356870 +37557,25771,mindfuck,1358067999 +37557,25771,surreal,1358067998 +37557,27721,Audrey Tautou,1369068806 +37557,27721,french,1369068817 +37557,27721,Marion Cotillard,1369068826 +37557,27803,emotional,1357081307 +37557,27803,touching,1357081307 +37557,27846,american idiocy,1358709839 +37557,27846,capitalism,1358709913 +37557,27846,corporations,1358709919 +37557,27846,documentary critique,1358709829 +37557,27846,politics,1358709921 +37557,32587,multiple storylines,1357080809 +37557,32587,Quentin Tarantino,1357080809 +37557,32587,stylized,1357080809 +37557,33779,stand-up comedy,1365533009 +37557,38061,black comedy,1346492029 +37557,38061,clever,1346492031 +37557,38061,Robert Downey Jr.,1346492013 +37557,41285,Emily Mortimer,1342443575 +37557,41285,non-hollywood ending,1342443579 +37557,41285,slow,1342443591 +37557,43396,true story,1357081079 +37557,45928,american idiocy,1357081141 +37557,46723,social commentary,1357082621 +37557,46723,visually appealing,1357082621 +37557,49130,Alizée,1369076383 +37557,49130,Marion Cotillard,1369076332 +37557,49130,upbeat music,1369076325 +37557,52037,French,1364591714 +37557,52579,biography,1370543245 +37557,52579,French,1370543211 +37557,52579,Marion Cotillard,1370543213 +37557,52579,nonlinear,1370543228 +37557,52579,touching,1370543215 +37557,53000,disappointing,1355595393 +37557,53000,frustrating to watch,1355595405 +37557,53349,Aborigines,1364569619 +37557,53894,american idiocy,1357081164 +37557,53894,social commentary,1357081164 +37557,54962,alternate reality,1346526001 +37557,54962,bad plot,1346525950 +37557,54962,poor script,1346525991 +37557,54962,stupid,1346525958 +37557,54962,too long,1346525955 +37557,55290,foul language,1358111979 +37557,55290,morality,1358111944 +37557,55290,Morgan Freeman,1358111969 +37557,55830,creativity,1371243760 +37557,55830,quirky,1371243767 +37557,55901,dark comedy,1357081005 +37557,55901,surreal,1357081005 +37557,56333,family drama,1379793354 +37557,56333,good characters,1379793328 +37557,58303,based on a book,1363380249 +37557,58303,Holocaust,1363380259 +37557,58303,thought-provoking,1363380244 +37557,58303,World War II,1363380252 +37557,59118,awkward,1371328049 +37557,59118,bittersweet,1371328060 +37557,59118,British,1371328055 +37557,59118,Mike Leigh,1371400596 +37557,59118,no plot,1371328046 +37557,59273,Steve Buscemi,1358681522 +37557,59387,visually stunning,1355252253 +37557,59908,boring,1359488668 +37557,59908,sympathetic characters,1359488783 +37557,60126,parody,1369118782 +37557,60126,predictable,1369118749 +37557,60126,Steve Carell,1369118761 +37557,61255,Rainn Wilson,1365797634 +37557,62511,Charlie Kaufman,1392497593 +37557,62511,depressing,1392497599 +37557,62511,Philip Seymour Hoffman,1392497580 +37557,62511,quirky,1392497621 +37557,62511,surreal,1392497606 +37557,62511,thought-provoking,1392497609 +37557,63826,nothing original,1358192247 +37557,63826,teen appeal,1358192272 +37557,63876,civil rights,1357081535 +37557,63876,Sean Penn,1357081537 +37557,64701,Bechdel Test:Pass,1376764841 +37557,64701,great acting,1376764850 +37557,64969,few funny scenes,1363807456 +37557,64969,Jim carrey,1363807424 +37557,64969,predictable,1363807465 +37557,64969,Zooey Deschanel,1363807429 +37557,65045,aliens,1357822098 +37557,65045,illogical,1357822176 +37557,65045,stupid,1357822176 +37557,65514,justice,1357082242 +37557,65514,kung fu,1357082242 +37557,65596,based on a true story,1369117079 +37557,65596,prison escape,1369117084 +37557,65596,Vincent Cassel,1369117089 +37557,67997,british,1357933990 +37557,67997,satire,1357933985 +37557,67997,swearing,1357933987 +37557,68157,dark comedy,1357082191 +37557,68237,mindfuck,1395753459 +37557,68237,Sci-fi,1395753478 +37557,69122,absurd,1388181753 +37557,69122,comedy,1388181716 +37557,69122,drugs,1388181760 +37557,69122,fear and loathing in LA was better,1388181915 +37557,69122,watch the credits,1388181774 +37557,71106,funny,1379531659 +37557,71106,surreal,1379531655 +37557,71106,watch the credits,1379531783 +37557,71282,documentary,1383340145 +37557,71282,docventures,1383340142 +37557,72226,based on a book,1388954170 +37557,72226,talking animals,1388954139 +37557,72489,poor lighting,1357079688 +37557,72489,stylized violence,1357079715 +37557,72703,bittersweet,1358026957 +37557,72703,Claire Danes,1358026963 +37557,72714,documentary,1386346074 +37557,72714,hard to watch,1386346076 +37557,72714,thought-provoking,1386346097 +37557,73211,character driven,1369934323 +37557,73211,disappointing,1369934213 +37557,73211,what the fuck did i just watch,1369934248 +37557,73211,zombies,1369934289 +37557,73344,long,1346443613 +37557,74324,animal cruelty,1346353708 +37557,74324,slaughter,1346353706 +37557,74324,social commentary,1357081110 +37557,74324,true story,1357081110 +37557,75983,based on a true story,1369242722 +37557,75983,climbing,1369242772 +37557,77455,docventures,1383340045 +37557,77837,Al Pacino,1357081025 +37557,77837,true story,1357081025 +37557,79057,bad science,1357080535 +37557,79057,childish plot,1357080533 +37557,79987,biography,1368132479 +37557,79987,France,1368132478 +37557,79987,surreal,1368132483 +37557,81385,based on a true story,1395753509 +37557,81385,slow,1395753531 +37557,81385,visually appealing,1395753493 +37557,84392,interesting,1367004889 +37557,86142,samurai,1357080136 +37557,86142,sword fight,1357080133 +37557,86290,american idiocy,1365532576 +37557,86290,freedom of expression,1365532552 +37557,86290,social commentary,1365532559 +37557,86290,thought-provoking,1365532527 +37557,86882,quirky,1357081832 +37557,87298,dark humor,1374436149 +37557,87298,Will Ferrell,1374436145 +37557,89118,disturbing,1385934955 +37557,89118,Pedro Almodovar,1385934968 +37557,89535,Aki KaurismÃ?¤ki,1399757323 +37557,89535,executed with economy of expression,1399757298 +37557,89535,slow,1399757334 +37557,89753,slow paced,1354737447 +37557,89904,original,1393710751 +37557,89904,silly,1393710742 +37557,89904,visually appealing,1393710729 +37557,90600,conspiracy,1361736568 +37557,90600,perfect crime,1361736574 +37557,90910,climbing,1379346386 +37557,91485,dialogue,1357141767 +37557,93894,Finnish,1360520084 +37557,95784,Teuvo Tulio,1347139765 +37557,96150,documentary,1383339998 +37557,96150,docventures,1383340012 +37557,96610,paranormal,1388686182 +37557,96610,visually appealing,1388686191 +37557,97744,Africa,1359227932 +37557,97744,Corruption,1359227926 +37557,97744,guerilla cinema,1359228031 +37557,97744,journalism,1359227928 +37557,97744,Mads Brügger,1359227933 +37557,97744,stranger than fiction,1359228065 +37557,97938,emotional,1364156195 +37557,97938,Slow,1364156135 +37557,97938,surreal,1364156186 +37557,97938,visually appealing,1364156104 +37557,98193,american idiocy,1359661074 +37557,98193,military,1359661078 +37557,98193,rape,1359661080 +37557,98193,social commentary,1359661095 +37557,98193,thought-provoking,1359661103 +37557,98809,beautiful scenery,1357164986 +37557,98809,Peter Jackson,1357164993 +37557,98961,fictional history,1368982715 +37557,99114,epic,1362853983 +37557,99114,Leonardo DiCaprio,1362854004 +37557,99114,Quentin Tarantino,1362853966 +37557,99114,Samuel L. Jackson,1362853996 +37557,99114,Slavery,1362853976 +37557,99114,visually appealing,1362853968 +37557,99305,documentary,1377889979 +37557,99305,docventures,1383340333 +37557,99305,religion,1377889978 +37557,99305,social commentary,1377889979 +37557,99413,zombies,1356990915 +37557,99420,cuba,1357040356 +37557,99420,inventor,1357040380 +37557,99420,poorness,1357040356 +37557,99420,recycling,1357040356 +37557,99760,anthropology,1358031675 +37557,99760,controversial,1358031698 +37557,99760,documentary,1358031676 +37557,99795,documentary,1383339959 +37557,100190,animation,1359489109 +37557,100190,Narrator: Shaun Parkes,1359489208 +37557,100190,poverty,1359489139 +37557,100190,social commentary,1359489129 +37557,100222,shoes,1359569593 +37557,100253,shallow,1359925851 +37557,100253,swedish,1359925899 +37557,100253,sympathetic characters,1359925875 +37557,100253,twins,1359925882 +37557,100406,black and white,1360519862 +37557,100406,controversial,1360519923 +37557,100406,Finnish,1360519849 +37557,100406,provocative,1360519923 +37557,100406,social commentary,1360519845 +37557,100406,thought-provoking,1360519845 +37557,100556,absurd,1384020038 +37557,100556,documentary,1384020038 +37557,100556,hard to watch,1384020058 +37557,100556,surreal,1384020038 +37557,100556,thought provoking,1384020038 +37557,100585,Danish,1361133758 +37557,100585,multiple storylines,1361133760 +37557,100585,relationships,1361133758 +37557,100884,Christianity,1361898530 +37557,100884,Fundamentalism,1361898538 +37557,100884,Islam,1361898517 +37557,100884,social commentary,1361898554 +37557,100884,thought-provoking,1361898549 +37557,101734,black and white,1365236749 +37557,101734,Buster Keaton,1365236737 +37557,101734,Silent,1365236742 +37557,101767,sad,1365362823 +37557,102217,american idiocy,1367396123 +37557,102217,atheism,1367396123 +37557,102217,obscene,1367396150 +37557,102217,provocative,1367396123 +37557,102217,social commentary,1367396123 +37557,102217,thought-provoking,1367396123 +37557,103249,entertaining,1379339526 +37557,103249,zombies,1379339539 +37557,103657,shallow,1374265159 +37557,103980,Woody Allen,1399039976 +37557,104323,documentary,1383340097 +37557,104323,docventures,1383340097 +37557,104581,Iceland,1377975707 +37557,104841,cgi,1395753433 +37557,104841,intense,1395753401 +37557,104841,predictable,1395753414 +37557,104841,visually appealing,1395753383 +37557,104841,visually stunning,1395753396 +37557,104938,biographical,1379346343 +37557,104938,climbing,1379346309 +37557,104938,epic,1379346304 +37557,106062,hidden camera,1399039824 +37557,106062,hilarious,1399039835 +37557,106062,jackass,1399039856 +37557,106062,stupid,1399039841 +37557,106680,documentary,1385654479 +37557,107199,rock climbing,1387118951 +37557,107202,rock climbing,1387119262 +37557,107591,transgender,1388253325 +37579,480,action,1143127333 +37614,91658,mystery,1441361157 +37614,91658,suspense,1441361155 +37637,48738,violent,1426260427 +37637,98809,too long,1419710831 +37640,91529,Christian Bale,1346780120 +37640,91529,Christopher Nolan,1346780126 +37640,91529,Gary Oldman,1346780132 +37640,91529,Joseph Gordon-Levitt,1346780129 +37640,91529,plot twist,1346780138 +37640,91529,trilogy,1346780144 +37651,296,action,1429740263 +37651,296,crime,1429740263 +37651,296,violent,1429740263 +37651,77658,astronomy,1429740334 +37651,77658,Documentary,1429740349 +37656,231,comedy,1444511846 +37656,231,silly,1444511838 +37656,778,addiction,1444511803 +37656,778,Danny Boyle,1444511813 +37656,778,Ewan McGregor,1444511797 +37656,778,great soundtrack,1444511783 +37656,778,Scottish,1444511786 +37656,778,social commentary,1444511795 +37656,2571,philosophical,1444511875 +37656,2571,thought-provoking,1444511887 +37656,2858,bittersweet,1444511916 +37656,2858,loneliness,1444511925 +37656,2858,satirical,1444511921 +37656,2858,social commentary,1444511909 +37656,2858,thought-provoking,1444511903 +37656,2959,mindfuck,1444512045 +37656,2959,philosophy,1444512049 +37656,2959,psychology,1444512053 +37656,2959,social commentary,1444512056 +37656,7361,jim carrey,1444512765 +37656,7361,memory,1444512769 +37656,88129,atmospheric,1444511685 +37656,88129,Carey Mulligan,1444511709 +37656,88129,little dialogue,1444511725 +37656,88129,soundtrack,1444511689 +37656,106100,Matthew McConaughey,1444511962 +37656,106100,social commentary,1444511971 +37656,106920,boring,1444512724 +37656,106920,embarrasing,1444512727 +37656,106920,love,1444512711 +37656,106920,thought-provoking,1444512713 +37661,33162,action,1310594034 +37661,33162,history,1310594025 +37661,33162,horror,1310594038 +37670,296,cult film,1268172061 +37670,296,dark comedy,1268172045 +37670,296,violence,1268172051 +37670,4022,adventure,1419871243 +37670,4022,philosophy,1419871256 +37670,4022,SURVIVAL,1419871240 +37670,5791,art,1426959161 +37670,5791,Biography,1426959156 +37670,5791,historical,1426959165 +37670,5791,mexico,1426959167 +37670,7502,not a movie,1422824708 +37670,46772,amy sedaris,1422824405 +37670,46772,dark comedy,1422824405 +37670,46772,unconventional,1422824405 +37670,48412,adventure,1444153086 +37670,48412,military propaganda,1444153070 +37670,53123,bittersweet,1418768380 +37670,53123,complex characters,1418768389 +37670,53123,good music,1418768378 +37670,53123,great soundtrack,1418768383 +37670,55269,cinematography,1418767961 +37670,55269,dark comedy,1418767954 +37670,55269,SIBLING RELATIONSHIPS,1418767973 +37670,55269,spiritual journey,1418767951 +37670,55269,Train,1418767964 +37670,55814,touching,1444153316 +37670,55814,true story,1444153318 +37670,69275,gore,1427743577 +37670,69275,horror comedy,1427743583 +37670,69275,Norwegian,1427743579 +37670,69275,Zombies,1427743573 +37670,81562,adventure,1418768067 +37670,81562,nature,1418768068 +37670,81562,survival,1418768075 +37670,81562,true story,1418768062 +37670,81562,wilderness,1418768070 +37670,94469,beautiful scenery,1425939244 +37670,94469,dogs,1425939248 +37670,96662,Finnish,1423323875 +37670,96662,music documentary,1423323883 +37670,109374,funny,1420637343 +37670,109374,stylized,1420637334 +37670,109374,visually appealing,1420637330 +37670,111778,adventure,1418768287 +37670,111778,australia,1420637821 +37670,111778,based on a true story,1420637821 +37670,111778,female lead,1418768282 +37670,111778,survival,1418768284 +37670,111778,true story,1418768286 +37670,111778,wilderness,1418768306 +37670,117881,Alzheimer's disease,1426958942 +37670,117881,thought-provoking,1426958982 +37670,118702,survival,1424207313 +37670,118900,female protagonist,1444153217 +37670,118900,hiking,1444153204 +37670,118900,nudity (topless),1444153223 +37683,2324,optimism,1171178155 +37683,2324,World War II,1171178155 +37683,5817,Armenian,1171176079 +37683,5817,genocide,1171176096 +37683,5995,music,1171178086 +37683,6874,Tarantino,1171176831 +37683,7438,Tarantino,1171176848 +37683,27803,euthanasia,1171178025 +37683,27820,great cinematography,1171178061 +37732,58998,Nudity (Full Frontal - Notable),1211702362 +37738,318,"action, morgan freeman",1446508732 +37738,8665,"spy, matt daemon, action",1446508771 +37781,6357,Bing Crosby,1335686335 +37781,6357,Frank Sinatra,1335686334 +37781,6357,jazz,1335686335 +37781,6357,louis armstrong,1335686335 +37781,6357,remake,1335686266 +37781,81020,animation,1333620095 +37781,81020,based on a book,1335684983 +37781,81020,clash of cultures,1333620095 +37781,81020,film within a film,1333620362 +37781,81020,life & death,1335685157 +37781,81020,little dialogue,1335685031 +37781,81020,Mona Achache,1374435293 +37781,81020,music,1333620094 +37781,81020,rebirth,1333620095 +37781,102903,deception,1374431095 +37781,102903,illusions,1374431046 +37781,102903,magic,1374431082 +37781,115065,boy becomes a man,1422576521 +37781,115065,comedy,1422576521 +37781,115065,fantasy,1422576521 +37781,115065,redemption,1422576521 +37781,116803,china,1431427396 +37781,116803,life philosophy,1431427396 +37781,116803,mozi philosophy,1431427396 +37781,116803,personal growth,1431427396 +37781,116803,strong romantic subplot,1431427396 +37781,116803,war strategy,1431427396 +37781,132977,animation,1430563318 +37781,132977,family,1430563318 +37781,132977,magic,1430563318 +37781,132977,talking animals,1430563318 +37787,260,dystopian,1443365414 +37787,260,fantasy,1443365389 +37787,260,Science Fiction,1443365406 +37787,260,space adventure,1443365395 +37828,6539,funny stuff,1435595906 +37828,8360,nice music,1435595875 +37832,1307,funny,1143900328 +37832,2437,well cast,1143900525 +37832,4306,computer animation,1143900317 +37855,1726,Post apocalyptic,1222381116 +37855,8765,In Netflix queue,1186541379 +37855,26554,alone in the world,1222381361 +37859,4308,Ewan McGregor,1353551644 +37859,44195,clever,1353551315 +37859,44195,indie,1353551305 +37859,44195,satire,1353551275 +37859,44195,satirical,1353551305 +37859,44195,secrets,1353551305 +37859,44195,social commentary,1353551305 +37859,58559,Heath Ledger,1353551398 +37859,66371,cello,1353550971 +37859,66371,philosophical,1353550999 +37859,66371,philosophy,1353550981 +37859,97752,Ben Whishaw,1353550763 +37859,97752,cliche,1353550792 +37859,97752,dystopian future,1353550704 +37859,97752,multiple storylines,1353550773 +37859,97752,rebellion,1353550810 +37859,97752,social commentary,1353550828 +37859,97752,social criticism,1353550834 +37859,97752,visually appealing,1353550784 +37889,89629,action,1326337440 +37889,89629,drama,1326337440 +37889,89629,good plot,1326337440 +37896,317,Christmas,1358983914 +37896,317,funny,1358983914 +37896,317,Judge Reinhold,1358983914 +37896,317,Tim Allen,1358983914 +37896,317,whiny kid,1358983946 +37896,837,family friendly,1358983693 +37896,918,halloween scene,1358984062 +37896,918,quirky,1358984051 +37896,2396,topless scene,1358973995 +37896,3086,Christmas,1358983979 +37896,3086,classic,1358983979 +37896,3086,funny,1358983979 +37896,3086,scary,1358984001 +37896,3489,Peter Pan,1358983822 +37896,3489,soundtrack,1358983822 +37896,3489,visually appealing,1358983822 +37896,7045,family friendly,1358983660 +37896,7045,Scary Movies To See on Halloween,1358983660 +37896,7164,Peter Pan,1358983855 +37896,7164,visually appealing,1358983855 +37896,55999,dragged,1358983772 +37896,55999,Jason Bateman,1358983778 +37896,55999,quirky,1358983778 +37896,55999,sad,1358983772 +37923,140176,French Film,1438811482 +37923,140196,juvenile,1438811432 +37923,140196,kids,1438811432 +37924,111266,drama,1437583084 +37924,111266,german,1437583084 +37924,111266,teen,1437583084 +37943,260,luke skywalker,1444396547 +37943,260,these are not the droids you are looking for,1444396529 +37983,260,classic,1433707995 +37983,260,geeky,1433708010 +37983,260,Science Fiction,1433708004 +37983,86377,comedy,1433770982 +37983,86377,humor,1433770978 +37983,86377,stand-up comedy,1433770972 +38001,32,Brad Pitt,1178288701 +38001,32,Bruce Willis,1178288701 +38001,32,Terry Gilliam,1178288701 +38001,32,time travel,1178288701 +38001,50,mindfuck,1179751528 +38001,94,Uma Thurman,1178286779 +38001,170,Angelina Jolie,1179268122 +38001,170,computers,1179751809 +38001,170,hacking,1179268115 +38001,185,hackers,1179306750 +38001,185,hacking,1179306746 +38001,185,Sandra Bullock,1179306749 +38001,260,action,1179751265 +38001,260,space opera,1179751263 +38001,296,Uma Thurman,1178286719 +38001,444,Uma Thurman,1178286683 +38001,540,Sharon Stone,1178289044 +38001,540,voyeurism,1178289052 +38001,627,black comedy,1179267260 +38001,627,Cameron Diaz,1179267260 +38001,708,Uma Thurman,1178286815 +38001,724,teen,1179308582 +38001,724,witchcraft,1179308582 +38001,753,Uma Thurman,1178286749 +38001,1197,pirates,1180100816 +38001,1222,boot camp,1179752710 +38001,1222,indoctrination,1179752710 +38001,1222,suicide,1179752710 +38001,1265,Bill Murray,1179752478 +38001,1265,cards,1178288441 +38001,1265,ice sculpting,1178288441 +38001,1265,time loop,1178288450 +38001,1265,time travel,1178288441 +38001,1270,time travel,1178288591 +38001,1513,high school,1179308261 +38001,1513,Janeane Garofalo,1179308260 +38001,1513,teen,1179308260 +38001,1562,Uma Thurman,1178287078 +38001,1653,Uma Thurman,1178286993 +38001,1704,mathematics,1178282639 +38001,1873,Uma Thurman,1178287123 +38001,1921,mathematics,1178285194 +38001,2020,Uma Thurman,1178286437 +38001,2153,Uma Thurman,1178287058 +38001,2291,ice sculpting,1178288293 +38001,2291,Johnny Depp,1178288293 +38001,2291,Winona Ryder,1178288293 +38001,2463,Bette Midler,1179267724 +38001,2463,comedy,1179267724 +38001,2496,Atomic bomb,1179318553 +38001,2496,Brendan Fraser,1179318523 +38001,2496,teen,1179318526 +38001,2571,Andy Wachowski,1179268159 +38001,2571,hacking,1179268155 +38001,2572,teen,1179308045 +38001,2599,Reese Witherspoon,1179308097 +38001,2634,Brendan Fraser,1179318413 +38001,2752,Bette Midler,1179267751 +38001,2762,mindfuck,1179751523 +38001,2916,Arnold Schwarzenegger,1178287404 +38001,2916,Philip K. Dick,1178287402 +38001,2959,mindfuck,1179751518 +38001,2968,history,1178288789 +38001,2968,Terry Gilliam,1178288789 +38001,2968,Time travel,1178288571 +38001,2989,007,1178289888 +38001,2989,figure skating,1178289870 +38001,2989,James Bond,1178289880 +38001,2991,James Bond,1178476390 +38001,2997,fantasy,1179752771 +38001,3005,Angelina Jolie,1179751803 +38001,3005,detective movie,1179751803 +38001,3129,Uma Thurman,1178287147 +38001,3186,Angelina Jolie,1179751749 +38001,3324,Bette Midler,1179267486 +38001,3324,Black Comedy,1179267491 +38001,3324,Danny DeVito,1179267495 +38001,3557,Uma Thurman,1178286605 +38001,3704,desert,1178477171 +38001,3704,Mel Gibson,1178477171 +38001,3704,motorcycle,1178477171 +38001,3704,Post apocalyptic,1178477171 +38001,3756,Uma Thurman,1178287185 +38001,4152,Uma Thurman,1178287171 +38001,4344,hacking,1179268016 +38001,4344,Halle Berry,1179268020 +38001,4344,John Travolta,1179268016 +38001,4467,Uma Thurman,1178286398 +38001,4571,dumb,1178288757 +38001,4571,History,1178288757 +38001,4571,Keanu Reeves,1178288757 +38001,4571,time travel,1178288757 +38001,4621,babies,1179267901 +38001,4700,teen,1179753071 +38001,4740,hugh laurie,1179318243 +38001,4881,barber,1187160373 +38001,4881,barbershop,1187160373 +38001,4881,black and white,1187160373 +38001,4881,scarlett johansson,1187160373 +38001,4881,teen relationships,1187160373 +38001,4888,Uma Thurman,1178287216 +38001,4993,dwarves,1179752548 +38001,4993,fantasy,1179752553 +38001,4993,magic,1179752553 +38001,4995,mathematics,1178283364 +38001,5316,cryptography,1179752735 +38001,5316,mathematics,1178285085 +38001,5316,World War II,1179752744 +38001,5391,confusing plot,1192435736 +38001,5445,Philip K. Dick,1178288630 +38001,5445,Tom Cruise,1178287396 +38001,5548,Bette Midler,1179267737 +38001,5617,Maggie Gyllenhaal,1179308972 +38001,5617,sexuality,1179752512 +38001,5902,Maggie Gyllenhaal,1179752224 +38001,5902,mindfuck,1179752234 +38001,6122,not funny,1178288118 +38001,6281,phone booth,1179268401 +38001,6351,Uma Thurman,1178287237 +38001,6365,Andy Wachowski,1179268164 +38001,6365,Carrie Ann Moss,1179268167 +38001,6365,hacking,1179268147 +38001,6874,Uma Thurman,1178287002 +38001,6934,Andy Wachowski,1179268161 +38001,6951,cat,1178547029 +38001,6951,fish,1178547029 +38001,6951,Mike Myers,1178546977 +38001,6951,one parent family,1178547029 +38001,6973,Uma Thurman,1178286510 +38001,7163,Philip K. Dick,1178287399 +38001,7163,Uma Thurman,1178287271 +38001,7354,Uma Thurman,1178286620 +38001,7438,Uma Thurman,1178287008 +38001,7487,Uma Thurman,1178286475 +38001,8368,Daniel Radcliffe,1178288614 +38001,8368,Maggie Smith,1178288612 +38001,8368,magic,1178288616 +38001,8368,time travel,1178288622 +38001,8808,teen,1179753068 +38001,8874,zombies,1182779625 +38001,27904,Philip K. Dick,1178287391 +38001,32019,Uma Thurman,1178287291 +38001,33679,Angelina Jolie,1179751792 +38001,33679,spies,1179751792 +38001,36527,mathematics,1178285199 +38001,38061,chaotic,1179266851 +38001,38061,messy,1179266851 +38001,38061,unclear,1179266851 +38001,39449,Meryl Streep,1178546868 +38001,39449,Uma Thurman,1178287035 +38001,39715,teen,1179307706 +38001,39715,voyeurism,1179307706 +38001,42002,Uma Thurman,1178287313 +38001,43836,Steve Martin,1178547381 +38001,44191,fascism,1179752807 +38001,45720,Meryl Streep,1178546839 +38001,45728,Kevin Smith,1178291707 +38001,46578,cute,1179752567 +38001,46578,dysfunctional family,1179752593 +38001,46578,family,1179752567 +38001,46578,family drama,1179752589 +38001,46976,fantasy,1178533588 +38001,46976,Maggie Gyllenhaal,1179308998 +38001,48416,Billy Bob Thornton,1178476739 +38001,49284,life,1178476382 +38001,49284,slow,1178476382 +38001,51662,betrayal,1178287788 +38001,51662,fighting,1178287788 +38001,51662,infidelity,1178287788 +38001,51662,sword fight,1178287788 +38001,52245,figure skating,1188904286 +38001,54736,bomb expert,1192709580 +38001,54736,bombs,1192709580 +38001,54736,explosions,1192709580 +38001,54736,fbi,1192709580 +38001,54736,saudi arabia,1192709580 +38001,54736,terrorism,1192709580 +38004,3362,'70s Pacino,1338010886 +38004,59306,Hilarious,1338011597 +38004,90405,It ends,1341878832 +38004,90405,It starts,1341878841 +38031,260,"imaginary world, characters, story, philosophical",1435663755 +38031,260,sci-fi,1435663728 +38031,260,space action,1435663738 +38031,260,space adventure,1435663763 +38058,260,epic adventure,1442090983 +38058,260,must see,1442091011 +38058,260,Science Fiction,1442091026 +38083,32,sci-fi,1186611561 +38083,50872,great for the kids and adults,1186612006 +38124,260,epic adventure,1432894579 +38124,260,sci-fi,1432894569 +38143,260,Science Fiction,1439482017 +38143,260,Star Wars,1439481999 +38171,47,crime,1447529507 +38171,47,horror,1447529503 +38171,47,mystery,1447529479 +38171,47,psychology,1447529488 +38171,2762,mindfuck,1447529602 +38171,2762,psychology,1447529620 +38171,2762,unpredictable,1447529610 +38173,6746,it's so bad it's actually good,1374402753 +38193,296,Bruce Willis,1348756271 +38193,296,cult film,1348756276 +38193,296,Quentin Tarantino,1348756264 +38193,296,Samuel L. Jackson,1348756266 +38193,296,too long,1348756420 +38193,296,violence,1348756269 +38193,296,You know what they call a Quarter Pounder with cheese in France?,1348756397 +38193,1089,cult film,1348756245 +38193,1089,Quentin Tarantino,1348756237 +38193,1089,violence,1348756240 +38193,2959,based on a book,1348756171 +38193,2959,Brad Pitt,1348756159 +38193,2959,Edward Norton,1348756160 +38193,2959,psychology,1348756164 +38193,2959,social commentary,1348756181 +38193,2959,thought-provoking,1348756178 +38193,2959,violence,1348756216 +38210,5611,honor bullshit,1204814211 +38210,85312,nostalgia,1452379493 +38210,144976,atmospheric,1452377706 +38210,144976,twisted,1452377744 +38210,144976,western,1452377702 +38224,260,scifi cult,1432202533 +38224,260,unrealistic sci-fi,1432202521 +38275,74450,comedy,1401656343 +38275,74450,romance,1401656343 +38275,81932,DRUG ADDICTION,1391967691 +38275,81932,drugs,1391967648 +38275,81932,sports,1391967702 +38275,81932,true story,1391967682 +38275,91500,apocalyptic,1404045999 +38275,91500,catastrophe,1404045999 +38303,296,dark comedy,1426895617 +38303,296,tarantino,1426895617 +38303,296,violent,1426895617 +38303,593,insanity,1437015627 +38303,593,psychological,1437015627 +38303,593,tense,1437015627 +38313,46335,Drifiting,1200155442 +38314,1286,heartwarming,1252466048 +38314,1947,fun movie,1252468625 +38314,3978,believable,1252468667 +38314,3978,good ending,1252468667 +38314,3978,great story,1252468667 +38315,1293,biographical,1190136082 +38315,1293,India,1190136093 +38315,1464,mistery,1190135846 +38315,3224,Abe Kobo,1191417552 +38315,3224,Japan,1191417595 +38315,3503,atmospheric,1190147155 +38315,3949,drugs,1190709316 +38315,4848,art house,1190135903 +38315,4848,dark,1190135899 +38315,4873,metaphysics,1190709509 +38315,8327,Japan,1190135805 +38315,8327,melancholy,1190135810 +38370,260,classic,1440962162 +38370,260,must see,1440962190 +38374,76317,LIam Neeson,1287529441 +38384,110,action,1453224539 +38384,58559,action,1453224498 +38386,1196,sci-fi,1441085853 +38386,115617,cute,1441085876 +38390,53578,clever,1422774646 +38390,53578,enjoyable,1422774646 +38390,53578,hilarious,1422774646 +38390,80584,adoption,1420259046 +38390,80584,feel-good,1420259046 +38390,80584,gay,1420259046 +38390,96079,action,1351292549 +38390,96079,beautiful cinematography,1351292450 +38390,96079,beautifully filmed,1351292469 +38390,96079,chase scenes,1351292558 +38390,96079,Daniel Craig,1351292481 +38390,96079,destruction,1351292508 +38390,96079,focused,1351292528 +38390,96079,plot,1351292542 +38390,96079,sad ending,1351292452 +38425,260,Chato,1432495435 +38429,111360,Scarlett Johansson,1453145430 +38430,89302,England,1400778834 +38430,89302,espionage,1400778836 +38430,89302,jazz,1400778841 +38430,89302,politics,1400778841 +38430,96079,nostalgic,1407930249 +38430,113315,coming of age,1407837917 +38430,113315,dark comedy,1407838006 +38430,113315,kafkaesque,1407837913 +38430,113315,military,1407837917 +38430,113315,satire,1407838056 +38430,122886,Plot Recycling,1451059168 +38446,260,action,1442089818 +38446,260,cult classic,1442089827 +38446,260,scifi,1442089814 +38448,26487,Nudity (Topless),1323329622 +38449,260,fantasy,1441990828 +38449,260,Science Fiction,1441990825 +38450,296,anthology,1420426208 +38450,296,crime,1420426208 +38450,296,non-linear,1420426208 +38450,527,Steven Spielberg,1279115084 +38450,527,true story,1279115079 +38450,527,World War II,1279115073 +38450,1906,endless talking,1213795375 +38450,2806,kidnapping,1212417880 +38450,3847,unwatchable sadism,1147786860 +38450,4477,Valeria Golino,1240848610 +38450,44903,surreal,1303989373 +38450,75440,2000s,1296568484 +38450,75440,bush jokes getting old,1296568457 +38450,75440,made for TV,1296568465 +38450,75440,politics,1296568475 +38450,75440,satire,1296568471 +38450,75440,US President,1296568481 +38450,75440,Will Ferrell,1296568462 +38450,80549,Emma Stone,1288028309 +38450,80549,high school,1288028325 +38450,80549,lies,1288028317 +38450,80549,scheme,1288028314 +38450,80549,sexuality,1288028320 +38450,86559,cannibalism,1304097969 +38450,86559,London,1304097969 +38450,86559,underground,1304097969 +38450,93840,clever,1417380310 +38474,69122,comedy,1286335174 +38474,69122,Las Vegas,1286335169 +38477,2321,seen more than once,1150917427 +38477,6954,quebec,1154298681 +38477,8638,Paris,1154298775 +38477,8836,l'appartement,1154298832 +38477,8836,remake of a french film,1154298823 +38485,3147,death penalty,1430738610 +38485,3147,Tom Hanks,1430738589 +38485,4993,fantasy,1430736876 +38485,4993,J. R. R. Tolkein,1430736885 +38485,60950,barcelona,1430736707 +38485,60950,penelope cruz,1430736707 +38485,60950,setting:spain,1430736707 +38525,260,i wanna be a jedi,1443155251 +38525,260,lightsabers,1443155243 +38525,260,space action,1443155230 +38553,5782,action,1168125025 +38569,589,Best ever,1142004805 +38589,741,anime,1159734531 +38589,924,boring,1159734220 +38589,924,slow,1159734220 +38589,1036,explosions,1159734488 +38589,1199,dystopia,1159734421 +38589,1274,anime,1159734245 +38589,2019,long,1159734734 +38589,2571,sci-fi,1159734634 +38589,2571,virtual reality,1159734636 +38589,2924,martial arts,1159734502 +38589,2997,interesting,1159734363 +38589,3265,explosions,1159734552 +38589,3265,martial arts,1159734552 +38589,3996,martial arts,1159734445 +38589,4993,long,1159734600 +38589,5782,explosions,1159734683 +38589,5782,interesting,1159734683 +38589,5902,boring,1159734233 +38589,5952,boring,1159734622 +38589,5952,long,1159734622 +38589,6350,anime,1159734417 +38589,6539,Johnny Depp,1159734656 +38589,6857,anime,1159734652 +38589,7022,explosions,1159734326 +38589,7022,martial arts,1159734467 +38589,7090,martial arts,1159734555 +38589,7153,boring,1159734608 +38589,7153,long,1159734608 +38589,7361,interesting,1159734515 +38589,7844,martial arts,1159734589 +38589,8795,Long,1159734165 +38589,8874,comedy,1159734745 +38589,8874,zombies,1159734745 +38589,8961,super-hero,1159734563 +38589,26554,apocalypse,1159734706 +38589,26554,interesting,1159734706 +38589,26585,explosions,1159734379 +38589,31878,comedy,1159734584 +38589,31878,martial arts,1159734584 +38589,31878,Stephen Chow,1159734584 +38589,33794,bad camerawork,1159734301 +38589,33794,slow,1159734301 +38601,260,sci-fi,1439082435 +38601,260,space adventure,1439082458 +38640,11,clever dialogue,1257953844 +38657,26981,albert pyun,1429574382 +38657,26981,rhythm,1429574411 +38657,93838,thin plot,1429574681 +38673,104,seen more than once,1150920371 +38673,344,Jim Carrey,1150920389 +38673,6936,Will Ferrell,1150920996 +38689,260,classic,1434753924 +38689,260,Science Fiction,1434753919 +38692,2065,Woody Allen,1449987618 +38692,44195,Aaron Eckhart,1449932391 +38692,44195,dark comedy,1449932393 +38692,44195,dark humor,1449932378 +38692,44195,independent film,1449932404 +38692,44195,Lobbyism,1449932397 +38692,44195,satire,1449932374 +38692,44195,social commentary,1449932376 +38692,73017,choreographic violence,1448907004 +38692,73017,Guy Ritchie,1448907010 +38692,73017,Hans Zimmer,1448907002 +38692,73017,Jude Law,1448906986 +38692,73017,magic/illusion/mysticism,1448906993 +38692,73017,predictable,1448906997 +38692,73017,Robert Downey Jr.,1448906968 +38692,92259,feel good movie,1447957727 +38692,92259,simple,1447957745 +38692,92259,touching,1447957717 +38692,92259,unlikely friendships,1447957736 +38692,145937,emotional,1449932333 +38692,145937,family,1449932324 +38692,145937,melodrama,1449932314 +38692,145937,predictive,1449932348 +38692,145937,tragedy,1449932297 +38699,2263,religion,1177067334 +38699,3018,lovecraft,1177076067 +38699,3981,mars,1177314766 +38699,7984,lovecraft,1177076052 +38699,51662,Frank Miller,1176989045 +38700,318,prison,1452157749 +38700,6016,gangs,1452157688 +38707,3969,twist ending,1235260131 +38721,260,It prettygood,1441328401 +38734,4725,Paras kauhu leffa ikuna!!! Eli best horror ever!,1148691805 +38734,4725,Well Done,1148691808 +38740,260,cult classic,1433429179 +38740,260,sci-fi,1433429153 +38749,541,hungarian sentences,1445805627 +38749,59315,hungarian sentences,1445805598 +38783,414,Africa,1337222831 +38783,414,Basketball in African villiage,1367433903 +38783,414,College basketball,1367433911 +38783,414,comedy,1367433796 +38783,414,funny,1337222831 +38783,414,Kevin Bacon,1337222831 +38783,414,life lessons learned..through humor.,1337222831 +38783,414,sleeper movie,1367433829 +38783,414,unique,1337222830 +38783,6709,action,1367437615 +38783,6709,Antinio Banderas,1367437735 +38783,6709,bizarre,1367437679 +38783,6709,cast,1367437669 +38783,6709,drama,1367437655 +38783,6709,Johnny Depp,1367437723 +38783,6709,plot,1367437641 +38783,6709,Salma Hayek,1367437747 +38783,6709,story line,1367437662 +38783,6709,torture,1367437701 +38800,2324,bittersweet,1293496722 +38800,2324,father-son relationship,1293496718 +38800,2324,heartwarming,1293496725 +38800,2324,Oscar Winner,1293496736 +38800,2324,sentimental,1293496742 +38800,2324,tear jerker,1293496740 +38800,40629,based on a book,1293497312 +38800,40629,Classic,1293497307 +38800,40629,England,1293497303 +38800,40629,Jane Austen,1293497291 +38800,40629,mother daughter relationship,1293497301 +38800,40629,romance,1293497297 +38825,1897,lesbien,1138222170 +38825,7842,culte SF,1138222169 +38826,924,artificial intelligence,1368629973 +38826,62081,artificial intelligence,1368629928 +38836,299,religion,1234651685 +38836,1173,Drama2,1234651751 +38836,2484,Kristy Swanson,1244523324 +38836,8852,70mm,1232915024 +38845,7361,surreal,1160557410 +38846,32,after you watch it you spend hours thinkig about it,1180883165 +38875,53996,defies logic,1192736134 +38875,53996,raped my childhood,1192736096 +38911,260,scifi cult,1436163535 +38911,260,space adventure,1436163573 +38911,296,biblical references,1437102124 +38911,296,crime scene scrubbing,1437102124 +38911,296,drug overdose,1437102124 +38911,356,autism,1436165218 +38911,356,history,1436165218 +38911,356,perfectionist,1436165218 +38914,109487,Christopher Nolan,1431075231 +38914,112623,sci-fi,1431075307 +38949,260,darth vader,1432793969 +38949,260,Overrated,1432793913 +38949,296,conversation,1433675853 +38949,296,different,1433675853 +38949,296,refined,1433675853 +38949,318,highly overrated.,1435035991 +38949,318,hope,1435035991 +38949,318,slow,1435035991 +38949,356,laidback,1432794448 +38949,356,simple,1432794448 +38949,356,spirited,1432794448 +38949,593,mystery,1434398918 +38949,593,suspense,1434398918 +38949,593,thriller,1434398918 +38949,1136,absurd,1435278864 +38957,2,magic board game,1278339208 +38957,44,based on a video game,1232602219 +38957,150,tense,1277472868 +38957,318,rape,1361204401 +38957,349,child killing,1302444969 +38957,393,based on a video game,1253535008 +38957,741,Japan,1145820043 +38957,953,uplifting,1292515726 +38957,1023,short film,1300491542 +38957,1089,tense,1277472769 +38957,1196,To Be Continued,1340373652 +38957,1259,not for emetophobes,1359481605 +38957,1261,To Be Continued,1340373964 +38957,1270,To Be Continued,1340373511 +38957,1387,tense,1277472640 +38957,1391,cow killing,1302273176 +38957,1391,dog killing,1302273172 +38957,1587,To Be Continued,1340373463 +38957,1603,child killing,1302444986 +38957,1721,self-sacrifice,1277475134 +38957,2011,To Be Continued,1340373577 +38957,2019,Japan,1242330828 +38957,2232,survival horror,1277656630 +38957,2455,body horror,1272646204 +38957,2688,rape,1243100926 +38957,2700,creative profanity,1302229762 +38957,2710,"""found footage""",1259156824 +38957,2761,self-sacrifice,1277474877 +38957,2787,anthology,1353355418 +38957,3150,rape,1416939397 +38957,3494,horse killing,1358619099 +38957,3571,real time,1255384828 +38957,4027,cow killing,1302273203 +38957,4993,To Be Continued,1340373711 +38957,5219,based on a video game,1232602252 +38957,5502,tense,1277472820 +38957,5569,rape,1243403799 +38957,5585,trolls,1329245550 +38957,5588,dog killing,1349370351 +38957,5618,Japan,1145820060 +38957,5690,Japan,1152982140 +38957,5816,slow clap,1310949294 +38957,5891,genital mutilation,1296835876 +38957,5891,rape,1243100906 +38957,5891,revenge,1256080610 +38957,5952,To Be Continued,1340373694 +38957,5971,Japan,1152982114 +38957,6214,rape,1280639715 +38957,6214,revenge,1280639720 +38957,6333,self-sacrifice,1277475016 +38957,6365,To Be Continued,1340373608 +38957,6555,"Lucas Belvaux's ""Trilogy""",1276523562 +38957,6711,Japan,1140377806 +38957,6820,dog killing,1278786941 +38957,6874,Japan,1140377828 +38957,6874,revenge,1243403835 +38957,6874,To Be Continued,1340373854 +38957,6890,school shooting,1243403765 +38957,7022,Japan,1146927054 +38957,7024,rape,1297290958 +38957,7024,torture,1297290966 +38957,7143,Japan,1140377855 +38957,7264,"Lucas Belvaux's ""Trilogy""",1276523464 +38957,7295,"Lucas Belvaux's ""Trilogy""",1276523634 +38957,7347,dog killing,1418080370 +38957,7438,revenge,1243403847 +38957,7820,rape,1243404176 +38957,7820,revenge,1243404182 +38957,8638,real time,1268698399 +38957,8831,rape,1294816244 +38957,8906,rape,1301015422 +38957,8947,Japan,1145820091 +38957,31053,rape,1269270817 +38957,31053,school shooting,1243403746 +38957,31878,cat killing,1329425233 +38957,32562,short film,1313523930 +38957,33794,costumed vigilante,1313679299 +38957,36509,rape,1292903820 +38957,40732,tense,1277472558 +38957,40851,magic board game,1278339227 +38957,41571,Japan,1145820099 +38957,44397,dog killing,1349370363 +38957,44397,rape,1349370369 +38957,44974,torture,1276918160 +38957,45210,Boston,1304037018 +38957,45210,self-sacrifice,1277474930 +38957,45442,self-sacrifice,1277475483 +38957,46335,Japan,1151124071 +38957,48516,Boston,1304036989 +38957,48543,dog killing,1279040549 +38957,49123,short film,1339364018 +38957,51662,child killing,1331768297 +38957,51662,rape,1322059673 +38957,52281,The Crazy Babysitter Twins,1271444580 +38957,52319,easily confused with other movie(s) (title),1253534819 +38957,53000,self-sacrifice,1277475214 +38957,53435,genital mutilation,1279932686 +38957,53519,The Crazy Babysitter Twins,1272295262 +38957,54995,The Crazy Babysitter Twins,1271444583 +38957,55176,uplifting,1292515771 +38957,55830,vhs,1371135383 +38957,56607,rape,1256080769 +38957,56612,revenge,1265121589 +38957,57274,"""found footage""",1259156896 +38957,57368,"""found footage""",1259156797 +38957,57393,rape,1297189287 +38957,58287,rape,1243100828 +38957,58287,revenge,1243100847 +38957,58332,"""found footage""",1266273785 +38957,58559,self-sacrifice,1277474770 +38957,59107,school shooting,1243403730 +38957,59315,The Avengers,1273685772 +38957,60040,The Avengers,1273685804 +38957,60766,uplifting,1292515753 +38957,62203,torture,1257344521 +38957,62733,"""found footage""",1259156919 +38957,63181,body horror,1257344358 +38957,66596,raunchy,1304100666 +38957,67255,rape,1279894791 +38957,67459,rape,1268698048 +38957,68157,tense,1277472727 +38957,68472,Japan,1242330737 +38957,68952,cat killing,1278786870 +38957,69134,genital mutilation,1279932707 +38957,70206,cat killing,1329425204 +38957,71460,easily confused with other movie(s) (title),1257343976 +38957,71520,Atheism,1302229727 +38957,71530,boston,1304036896 +38957,71700,rape,1282836730 +38957,71838,antihero,1266527519 +38957,71838,revenge,1266521699 +38957,72356,short film,1300491589 +38957,72395,rape,1268352389 +38957,72628,"""found footage""",1259156643 +38957,72628,cat killing,1278786909 +38957,72925,short film,1339363891 +38957,74750,found footage,1305332992 +38957,75395,survival horror,1277656611 +38957,75395,tense,1277472675 +38957,75414,Giallo,1309128756 +38957,76210,costumed vigilante,1313679278 +38957,76251,costumed vigilante,1313679258 +38957,76832,magic board game,1278339183 +38957,76832,The Crazy Babysitter Twins,1271444587 +38957,77307,cat killing,1278786832 +38957,77307,incest,1278786837 +38957,77307,seclusion,1278786848 +38957,77427,body horror,1272646178 +38957,77561,The Avengers,1273685741 +38957,77798,dog killing,1278977436 +38957,78266,rape,1292903840 +38957,78319,self-sacrifice,1277474618 +38957,78499,tense,1277472589 +38957,79185,boston,1304036924 +38957,79251,rape,1282836625 +38957,79318,uplifting,1292515716 +38957,79702,Aubrey Plaza,1304100779 +38957,79879,Eli Roth,1282447503 +38957,79879,genital mutilation,1282447552 +38957,79879,Gianna Michaels,1282447538 +38957,80141,short film,1339363945 +38957,80219,The Crazy Babysitter Twins,1283875552 +38957,80219,To Be Continued,1340373930 +38957,80489,Boston,1304036949 +38957,80831,flash forward,1308532053 +38957,80891,survival horror,1428544873 +38957,81562,survival horror,1347811395 +38957,81834,genocide,1292948222 +38957,81834,To Be Continued,1340373750 +38957,82366,genital mutilation,1300738952 +38957,82459,horse killing,1358619113 +38957,83803,short film,1305320819 +38957,84189,genital mutilation,1296835852 +38957,84189,rape,1296835838 +38957,84189,revenge,1296835844 +38957,84189,torture,1296836053 +38957,84772,Atheism,1302229661 +38957,84772,creative profanity,1302229711 +38957,84772,dog killing,1302273152 +38957,85259,short film,1300491555 +38957,85316,short film,1300491473 +38957,85401,costumed vigilante,1313679229 +38957,85412,atheism,1329245502 +38957,85412,found footage,1329245486 +38957,85414,parallel universe,1302574396 +38957,85736,short film,1301678770 +38957,85796,child killing,1311989909 +38957,85796,genital mutilation,1311990710 +38957,85796,vigilante,1311989923 +38957,86332,flash forward,1308590009 +38957,86332,The Avengers,1305169068 +38957,86644,PG13_F-Bomb,1308532165 +38957,86826,found footage,1305320645 +38957,87192,child killing,1335701294 +38957,87192,dog killing,1335701287 +38957,88140,The Avengers,1337654035 +38957,88688,anthology,1312647991 +38957,89490,atheism,1325104100 +38957,89490,rape,1325104086 +38957,89745,The Avengers,1337654001 +38957,90374,cat killing,1354959733 +38957,90374,rape,1354957778 +38957,90469,vhs,1371135409 +38957,90624,child killing,1353994498 +38957,90888,genital mutilation,1322015490 +38957,91500,child killing,1332995358 +38957,91658,atheism,1329425134 +38957,91658,cat killing,1329425171 +38957,91658,rape,1329425110 +38957,91658,revenge,1329425116 +38957,91660,dog killing,1334608976 +38957,92058,body horror,1328035036 +38957,92058,genital mutilation,1328035025 +38957,92058,rape,1328035014 +38957,92391,found footage,1326730055 +38957,92420,found footage,1329962861 +38957,92420,revenge,1329962870 +38957,93126,child killing,1330361723 +38957,93126,rape,1330361706 +38957,93126,revenge,1330361712 +38957,93270,found footage,1338402751 +38957,93363,child killing,1331768273 +38957,93510,genital mutilation,1334715848 +38957,93855,child killing,1341954694 +38957,94655,short film,1337615425 +38957,94729,4d,1337789638 +38957,94729,short film,1337789634 +38957,94864,self-sacrifice,1339470750 +38957,95002,easily confused with other movie(s) (title),1339287323 +38957,96239,anthology,1344884361 +38957,96239,genital mutilation,1344884388 +38957,96239,rape,1344884367 +38957,96448,child killing,1346309689 +38957,96448,genital mutilation,1346309699 +38957,96510,dog killing,1347547183 +38957,96588,not for emetophobes,1359481567 +38957,96608,short film,1347132889 +38957,96748,survival horror,1347811375 +38957,96815,anthology,1371135350 +38957,96815,genital mutilation,1371135367 +38957,96815,vhs,1371135372 +38957,97188,Child killing,1414615337 +38957,97752,dog killing,1357758602 +38957,98491,short film,1354228475 +38957,99114,horse killing,1358536462 +38957,100397,Anthology,1417796775 +38957,100397,cat killing,1417796783 +38957,100397,rape,1417796790 +38957,101383,rape,1364266177 +38957,101739,dog killing,1365457070 +38957,102066,Dog killing,1426896851 +38957,102854,rape,1382983013 +38957,103299,genital mutilation,1398969212 +38957,103299,rape,1398969197 +38957,103299,revenge,1398969203 +38957,103483,child killing,1414769942 +38957,103483,dog killing,1414769951 +38957,106022,short film,1383353247 +38957,106464,short film,1384990660 +38957,110457,isolation,1397322816 +38957,110457,survival,1397322812 +38957,110457,survival horror,1397322824 +38957,110459,rape,1397323405 +38957,110459,revenge,1397323410 +38957,112515,Dog killing,1429061778 +38957,117372,dog killing,1429328387 +38957,131464,dog killing,1447702495 +39009,7265,Nudity (Full Frontal - Notable),1162151703 +39012,6935,documentary,1138698156 +39012,6935,media politics,1138698156 +39014,1639,Kevin Smith,1200760553 +39024,2959,Brad Pitt,1425422746 +39024,2959,surreal,1425422763 +39024,2959,twist ending,1425422737 +39035,7265,1960s,1351627912 +39035,7265,erotic,1351627922 +39035,7265,Paris '68,1351627901 +39067,178,dark comedy,1289322363 +39067,474,tense,1368181150 +39067,1206,violent,1368181191 +39067,1357,mental illness,1368180963 +39067,2353,thriller,1368181170 +39067,2762,Atmospheric,1289322440 +39067,2762,Bruce Willis,1289322450 +39067,2762,ghost,1289322816 +39067,2762,M.Night,1289322816 +39067,2762,psychology,1289322403 +39067,2762,touching,1289322774 +39067,2762,twist ending,1286883951 +39067,2985,violent,1368181191 +39067,4306,pixar,1368181044 +39067,5218,pixar,1368181045 +39067,6323,mystery,1368180986 +39067,7153,oscar (best cinematography),1368181030 +39067,8360,pixar,1368181044 +39067,59429,nudity (topless - notable),1368181005 +39067,59784,pixar,1368181044 +39067,64754,test,1289323805 +39067,64754,test1,1289323814 +39067,64754,test12,1289323830 +39067,64754,test32,1289323830 +39067,73881,comedy,1451109478 +39067,73881,education,1451109506 +39067,73881,human nature,1451109500 +39067,74458,mystery,1368180987 +39067,79132,dreams,1286938181 +39067,79132,Leonardo DiCaprio,1286938189 +39067,81932,Christian Bale,1299310332 +39067,81932,war,1299310338 +39067,87222,3d,1309359071 +39067,87222,Chinese factor,1309359077 +39067,97304,Watch Movie,1353587765 +39067,97304,With Friends,1353587837 +39067,104841,bad science,1386660278 +39067,104841,overrated,1386661019 +39067,104841,Simple,1386660968 +39070,293,mental illnesses vs. sanity,1306992693 +39070,293,natalie portman with bob haircut,1306992693 +39070,390,exploitation,1306992565 +39070,390,rock n' roll,1306992584 +39070,1237,dark comedy bits,1306992931 +39070,2959,twist ending,1306992617 +39070,3550,80's goth cult movie,1257279094 +39070,3550,bauhaus!,1257279080 +39070,3550,Bela Lugosi,1257279080 +39070,3550,david bowie,1257279080 +39070,3949,pretentious garbage about good things,1257279250 +39070,3996,touching romance,1306992523 +39070,4226,overrated,1306992288 +39070,4732,fun,1318722305 +39070,4732,Jake Gyllenhaal,1318722403 +39070,4732,quirky,1318722335 +39070,4732,quirky romantic,1318722350 +39070,4878,agnosticism,1306992189 +39070,4878,post-punk soundtrack,1306992189 +39070,5508,post-punk scene,1257279167 +39070,5508,post-punk soundtrack,1257279167 +39070,5508,punk soundtrack,1257279167 +39070,7068,about coincidentia oppositorum,1257278861 +39070,7068,amnesia,1257278861 +39070,7068,anamnesis,1257278861 +39070,7068,catharsis through anamnesis,1257278861 +39070,7068,cerebral,1257278602 +39070,7068,eerie,1257278581 +39070,7068,elegant,1257278587 +39070,7068,hallucinatory,1257278590 +39070,7068,moody,1257278612 +39070,7068,nobody gets that it's based on mircea eliade's fiction,1257278861 +39070,7068,the eternal return,1257278861 +39070,27727,dancing on temple of love,1257279355 +39070,27727,post-punk soundtrack,1306992964 +39070,27727,siouxsie poster,1257278655 +39070,27727,sisters of mercy,1257279355 +39070,27727,the negative ending,1257279378 +39070,45880,new romantic take on historical figures,1257279020 +39070,45880,post-punk soundtrack,1257279020 +39070,48082,siouxsie poster,1257278680 +39070,49961,kaleidoscope,1245621114 +39070,49961,siouxsie poster,1245621114 +39070,52952,skinheads,1257279185 +39070,59519,competition with self,1285073395 +39070,59519,friendship between young adults,1318722555 +39070,59519,post-punk soundtrack,1306992977 +39070,59519,writers at work,1257278674 +39070,59519,young intellectuals,1285073347 +39070,65130,the irony of intellectuals in suburbia,1257279224 +39070,69951,escapism,1306992228 +39070,86320,Alexander Skarsgard,1318722985 +39070,86320,cinematography,1318723007 +39070,86320,Kirsten Dunst,1318722962 +39070,86320,Kirsten Dunst sex scene,1318723061 +39070,86320,sense of futility,1318723026 +39070,86320,they all die in the end,1318723045 +39080,32,dystopia,1210468187 +39080,32,monty-python-related,1210468219 +39080,32,time travel,1210468179 +39080,296,screwball comedy,1435415972 +39080,296,stylish,1435415972 +39080,296,tarantino,1435415972 +39080,1101,aerial dogfights,1179529796 +39080,1199,britain,1210468259 +39080,1199,dystopia,1210468251 +39080,1199,monty-python-related,1210468245 +39080,1233,submarine,1179529903 +39080,1233,U-boat,1179529902 +39080,1233,World War II,1179529903 +39080,2022,christianity,1179636403 +39080,2022,mysticism,1179636403 +39080,2334,rendition,1209581087 +39080,2334,torture,1209581073 +39080,2671,British,1179636546 +39080,3538,British,1179636578 +39080,3753,jingoistic,1179530077 +39080,3753,slanderous,1179530077 +39080,3789,genocide,1179781517 +39080,3789,Holocaust,1179781509 +39080,3967,ballet,1179636683 +39080,3967,British,1179636678 +39080,5421,religion,1208542348 +39080,5817,armenian,1179119788 +39080,5817,denial,1179119790 +39080,5817,genocide,1179119767 +39080,5817,historical,1179119788 +39080,6078,aerial dogfights,1179529739 +39080,6596,merchant-ivory,1210468094 +39080,7980,World War II,1179529845 +39080,8366,christianity,1179636498 +39080,8366,evangelicalism,1179636498 +39080,8366,satire,1179636498 +39080,8366,teen pregnancy,1208542274 +39080,8906,amazon,1210468347 +39080,8906,cannibalism,1210468339 +39080,8906,cult classic,1210468389 +39080,8906,cult-classic,1210468355 +39080,26776,aerial dogfights,1179628050 +39080,26776,anime,1179628050 +39080,27821,Africa,1179636870 +39080,27821,new york city,1179636870 +39080,27821,united nations,1179636870 +39080,27846,capitalism,1208542424 +39080,27846,corporatism,1208542428 +39080,27846,Free to download,1176191667 +39080,30749,Africa,1179636933 +39080,30749,genocide,1179636933 +39080,36517,Africa,1179636822 +39080,36517,conspiracy,1179636822 +39080,36517,pharmaceutical,1179636822 +39080,41566,christianity,1179636463 +39080,42021,merchant-ivory,1210468115 +39080,48319,aerial dogfights,1179529564 +39080,48319,World War I,1179529934 +39080,48774,christianity,1179713483 +39080,48774,dystopia,1179713483 +39080,48774,nativity,1179713483 +39080,48774,sci-fi,1179713483 +39080,57147,dramatic,1210353550 +39080,60950,cliche,1254841806 +39080,108078,complications,1434430929 +39080,108078,french,1434430933 +39080,108078,new york,1434430939 +39080,115617,Animation,1434431482 +39080,115617,funny,1434431492 +39080,115617,manga,1434431475 +39080,115617,robotics,1434431488 +39085,6953,Nonlinear,1238878245 +39123,912,classic,1137146981 +39123,912,Hollywood,1137146981 +39123,1266,hitman,1137146940 +39125,7,relationships,1139446093 +39125,36,death penalty,1139445185 +39125,36,prison,1139445185 +39125,222,high school,1139445841 +39125,222,ireland,1139445841 +39125,249,beethoven,1139445821 +39125,318,prison escape tenacity accountant,1139444520 +39125,357,relationships,1139445625 +39125,500,divorce,1139446079 +39125,500,nanny,1139446079 +39125,527,Holocaust Poland,1139444402 +39125,586,crime,1139445301 +39125,586,latch key kids,1139445301 +39125,587,death,1139445698 +39125,590,native americans,1139445055 +39125,597,hooker,1139445529 +39125,597,john,1139445529 +39125,858,crime,1139445988 +39125,858,family,1139445988 +39125,858,mafia,1139445988 +39125,920,civil war women,1139445092 +39125,924,future,1139446041 +39125,924,future art deco,1139446041 +39125,943,single woman,1139445721 +39125,953,angel,1139446003 +39125,953,Christmas,1139446003 +39125,953,library,1139446015 +39125,1092,crime,1139446047 +39125,1101,airplanes,1139445967 +39125,1101,love,1139445967 +39125,1101,military,1139445967 +39125,1196,space,1139445082 +39125,1198,history archeology,1139444728 +39125,1210,space,1139445782 +39125,1246,friendship,1139445114 +39125,1246,high school,1139445114 +39125,1270,future,1139445103 +39125,1682,TV,1139445122 +39125,1721,love,1139445954 +39125,1721,shipwreck,1139445954 +39125,1962,old age,1139444680 +39125,2115,archeology,1139445046 +39125,2640,superheros,1139445482 +39125,2716,paranormal phenomenon,1139445924 +39125,2803,law school,1139445665 +39125,3448,radio,1139445766 +39125,3820,Thomas the Tank Engine,1139444967 +39125,3996,china mysticism,1139444919 +39125,4014,chocolate,1139445275 +39125,4014,family,1139445275 +39125,4014,tolerance,1139445275 +39125,4034,drugs,1139445749 +39125,4041,military,1139445637 +39125,4246,relationships,1139446144 +39125,4292,union strike women,1139444712 +39125,4361,cross dressing,1139444414 +39125,4427,christmas England history,1139444372 +39125,4809,nuclear power environmental issues,1139444578 +39125,4963,crime,1139445794 +39125,4973,cafe,1139445806 +39125,4973,France,1139445806 +39125,5378,space,1139445487 +39125,6863,high school,1139446120 +39125,8482,wishes,1139444465 +39125,8865,future art deco,1139444855 +39125,8916,ballroom dancing,1139445563 +39125,8916,competition,1139445563 +39125,8916,dancing lessons,1139445563 +39125,8916,midlife crisis,1139445563 +39125,8961,fashion,1139445172 +39125,25891,ghosts reincarnation,1139444301 +39125,30707,boxing women tenacity,1139444694 +39125,33493,space,1139446125 +39125,41571,women japan world war w,1139444775 +39127,260,cult classic,1445705688 +39127,260,EPIC,1445705697 +39127,260,Harrison Ford,1445705682 +39127,7153,epic,1445705622 +39127,7153,great soundtrack,1445705594 +39149,260,Action,1435682626 +39149,260,anime,1435682634 +39149,260,Comedy,1435682607 +39149,260,Nerd,1435682603 +39149,260,Science Fiction,1435682655 +39156,42002,gorgeous wife,1235275952 +39156,43836,clown that turns out to be genious,1235275628 +39156,43836,quick-witted,1235275551 +39156,55820,tediously long,1235278065 +39156,58559,tediously long,1235276533 +39159,78349,group psychology,1447607917 +39159,78349,psychological,1447607925 +39159,115680,thriller,1447608116 +39159,115680,time travel,1447608113 +39159,115680,unique story,1447608110 +39159,144482,Game theory,1447607885 +39161,69253,Minnesota,1253508931 +39208,1372,Star Trek,1159814839 +39208,1372,TOS,1159814839 +39208,1374,Star Trek,1159814823 +39208,1374,TOS,1159814823 +39212,3360,basketball,1243973084 +39212,4007,Charlie Sheen,1243973348 +39212,4776,Ethan Hawke,1243974119 +39212,51662,extremely violent,1243620194 +39216,260,sci-fi,1434824294 +39233,46970,Will Ferrell,1214600340 +39235,6291,Estonian,1183007919 +39259,1968,Thought provoking,1451489609 +39259,96821,depressing,1451489676 +39260,260,birth of great scifi ideas,1442932576 +39260,260,space epic,1442932548 +39273,663,sketch comedy,1144692056 +39273,6643,ozu,1302817570 +39273,36276,french suspense,1140336307 +39273,37729,not as good as ...,1140336666 +39273,44195,satire,1144691948 +39273,46967,Woody Allen classic,1155172373 +39273,48738,James McAvoy,1169724121 +39273,55269,adrien brody,1199720170 +39273,94959,Bill Murray,1339108286 +39273,94959,Bruce Willis,1339108286 +39273,94959,fonts,1339108326 +39273,94959,Jason Schwartzman,1339108301 +39273,94959,Wes Anderson,1339108263 +39293,247,Adolescent fantasy,1446696824 +39293,247,disturbing,1446696807 +39293,247,FANTASY LIFE,1446696843 +39293,247,friendship,1446696830 +39293,247,OPPOSITES ATTRACT,1446696838 +39293,247,surreal,1446696803 +39293,247,surrealism,1446696816 +39293,247,wistful,1446696834 +39293,783,deep,1446696899 +39293,783,Disney Renaissance,1446696885 +39293,783,lust,1446696888 +39293,783,nostalgic,1446696895 +39293,783,soundtrack,1446696922 +39293,1206,depressing,1446696631 +39293,1206,disturbing,1446696581 +39293,1206,psychological,1446696605 +39293,1206,psychology,1446696584 +39293,1206,social commentary,1446696591 +39293,1206,surreal,1446696589 +39293,1206,Surrealism,1446696586 +39293,1285,adolescence is hell,1446696687 +39293,1285,Anti Conformity,1446696706 +39293,1285,Bechdel Test:Pass,1446696702 +39293,1285,black comedy,1446696663 +39293,1285,cynical,1446696678 +39293,1285,dark comedy,1446696667 +39293,1285,dark humor,1446696685 +39293,1285,misfits,1446696712 +39293,1285,satirical,1446696676 +39293,1285,serial killer,1446696694 +39293,1967,dreamlike,1446696511 +39293,1967,fairy tales,1446696521 +39293,1967,fantasy,1446696514 +39293,1967,fantasy world,1446696532 +39293,1967,Nostalgia,1446696535 +39293,1967,surreal,1446696517 +39293,3186,asylum,1446695987 +39293,3186,Borderline Personality Disorder,1446696028 +39293,3186,depression,1446695998 +39293,3186,mental health,1446695993 +39293,3186,Mental Hospital,1446696007 +39293,3186,mental illness,1446695984 +39293,3186,psychology,1446696001 +39293,3556,atmospheric,1446696103 +39293,3556,Bechdel Test:Pass,1446696114 +39293,3556,dreamlike,1446696074 +39293,3556,enigmatic,1446696081 +39293,3556,melancholy,1446696078 +39293,3556,psychology,1446696071 +39293,3556,reflective,1446696094 +39293,3556,sisters,1446696129 +39293,3556,visually appealing,1446696091 +39293,7285,Coming of Age,1446696345 +39293,7285,disturbing,1446696325 +39293,7285,nostalgic,1446696334 +39293,40826,great soundtrack,1446696766 +39293,90578,psychological,1446697016 +39293,90578,twist,1446697013 +39293,90578,twists,1446697018 +39293,116128,Anorexia,1446695882 +39293,116128,Cooking,1446695816 +39293,116128,Eating Disorders,1446695839 +39293,116128,Insanity,1446695820 +39293,121453,insanity,1446697085 +39293,121453,murder,1446697075 +39293,137042,eating disorder,1446695943 +39295,1259,childhood,1434306907 +39295,1259,coming of age,1434306894 +39295,1259,friendship,1434306900 +39295,33585,sex,1434307404 +39295,40815,competition,1434307028 +39295,40815,destiny,1434307015 +39295,40815,fantasy,1434307022 +39295,40815,Good versus evil,1434307012 +39295,40815,harry potter,1434307031 +39295,40815,Magic,1434306998 +39295,40815,teenagers,1434307009 +39295,40815,Wizards,1434307025 +39295,92420,coming of age,1434306946 +39295,92420,flying,1434306942 +39295,92420,supernatural powers,1434306938 +39295,114795,dracula,1434307162 +39295,114795,vampires,1434307165 +39310,33679,funny,1332619397 +39310,33679,husband-wife relationship,1332619434 +39310,33679,romance,1332619449 +39310,45186,action,1332619837 +39310,79132,ending,1332621160 +39310,79132,imaginative,1332621085 +39310,79132,inventive,1332621120 +39310,79132,original plot,1332621131 +39310,79132,soundtrack,1332621099 +39310,79132,story,1332621144 +39310,79132,thought-provoking,1332621062 +39310,79185,fun,1332619276 +39310,79185,stupid,1332619306 +39313,1221,Action,1434836215 +39313,1221,New York Mafia,1434836224 +39317,42718,free jumping,1188245066 +39336,93598,atmosphere,1337035680 +39354,260,nostalgia,1437992216 +39354,260,soundtrack,1437992233 +39354,356,journey,1437993016 +39354,356,success,1437993016 +39354,356,underdog,1437993016 +39354,3115,building bridges,1437995401 +39354,3115,cross dressing,1437995332 +39354,3115,culture clash,1437995381 +39354,3115,discovery,1437995420 +39354,3115,frailty,1437995349 +39354,3115,friendship,1437995344 +39354,3115,homophobia,1437995325 +39354,3115,love,1437995432 +39354,3115,otherness,1437995346 +39354,3115,reconciliation,1437995340 +39354,3115,recovery,1437995416 +39354,4808,disconcerting,1437995740 +39354,4808,psychopathy,1437995680 +39354,4808,tension,1437995694 +39354,54094,acceptance,1437994420 +39354,54094,coming of age,1437994333 +39354,54094,difference,1437994361 +39354,54094,divorce,1437994359 +39354,54094,eccentricity,1437994396 +39354,54094,family,1437994351 +39354,54094,loss,1437994383 +39354,54094,loss of innocence,1437994389 +39354,54094,religion,1437994403 +39354,54094,self discovery,1437994339 +39354,72720,education,1437994485 +39354,72720,experience,1437994528 +39354,72720,friendship,1437994536 +39354,72720,hope,1437994543 +39354,72720,loss,1437994523 +39354,72720,moments to live for,1437994580 +39354,72720,oppression,1437994507 +39354,72720,order,1437994521 +39354,72720,prejudice,1437994511 +39354,72720,the outsider,1437994474 +39354,89753,betrayal,1437994611 +39354,89753,cinematography,1437994603 +39354,89753,duty,1437994631 +39354,89753,loneliness,1437994614 +39354,89753,otherness,1437994623 +39354,96655,family,1437994762 +39354,96655,friendship,1437994788 +39354,96655,growing old,1437994750 +39354,96655,memory,1437994753 +39354,96655,nostalgia,1437994759 +39354,96655,rediscovery,1437994822 +39354,108945,cyborg,1437994891 +39354,108945,human vs machine,1437994904 +39354,108945,military ambition,1437994947 +39354,108945,self-determination,1437994897 +39354,109157,black comedy,1437995556 +39354,109157,friendship,1437995565 +39354,109157,relationships,1437995580 +39354,109157,serendipity,1437995595 +39354,110407,created life,1437995043 +39354,110407,human/machine relationships,1437995066 +39354,110407,loss,1437994996 +39354,110407,otherness,1437995094 +39354,110586,family,1437995211 +39354,110586,loss,1437995217 +39354,110586,reconciliation,1437995232 +39354,110586,sacrifice,1437995189 +39354,114678,acceptance,1437994258 +39354,114678,difference,1437994294 +39354,114678,nostalgia,1437994211 +39354,114678,self-growth,1437994238 +39354,122455,community,1437994136 +39354,122455,irreverent,1437994170 +39354,122455,underdog,1437994132 +39354,139817,friendship,1438103952 +39354,139817,improbability,1438103967 +39354,139817,modernisation,1438103945 +39354,139817,obsession,1438103934 +39354,139817,underdog,1438103939 +39377,7624,cute boys,1137459419 +39386,5225,sexy,1208843493 +39397,5463,i hate Matthew McConaughey,1140390407 +39397,41997,let god's revenge be His,1142729093 +39428,1291,Harrison Ford,1435539202 +39428,1291,treasure,1435539194 +39428,2959,Brad Pitt,1435539231 +39428,2959,classic,1435539240 +39428,2959,twist ending,1435539247 +39429,750,like,1149668581 +39436,1921,mathematics,1149791703 +39486,260,excellent,1440539561 +39486,260,great story,1440539574 +39494,480,adventure,1451525369 +39494,480,Jeff Goldblum,1451525377 +39494,480,Steven Spielberg,1451525366 +39494,480,violence,1451525384 +39494,509,atmospheric,1451525304 +39494,509,beautiful,1451525307 +39494,509,good soundtrack,1451525323 +39494,509,great acting,1451525325 +39494,509,New Zealand,1451525306 +39494,509,Oscar (Best Actress),1451525314 +39494,509,Oscar (Best Supporting Actress),1451525319 +39494,527,atmospheric,1451524412 +39494,527,based on a true story,1451524390 +39494,527,black and white,1451524398 +39494,527,disturbing,1451524406 +39494,527,historical,1451524394 +39494,527,history,1451524402 +39494,527,holocaust,1451524383 +39494,527,humanism,1451524423 +39494,527,Nazis,1451524392 +39494,527,Oscar (Best Picture),1451524403 +39494,527,Steven Spielberg,1451524379 +39494,527,thought-provoking,1451524409 +39494,527,true story,1451524387 +39494,527,World War II,1451524385 +39494,539,chick flick,1451525244 +39494,539,Comedy,1451525252 +39494,539,Meg Ryan,1451525240 +39494,539,Romance,1451525242 +39494,539,romantic comedy,1451525247 +39494,608,Coen Brothers,1451524805 +39494,608,CRIME GONE AWRY,1451524780 +39494,608,dark humor,1451524795 +39494,608,KIDNAPPING,1451524792 +39494,608,murder,1451524776 +39494,608,strong female,1451524785 +39494,608,violent,1451524782 +39494,922,atmospheric,1451525434 +39494,922,black and white,1451525431 +39494,922,film noir,1451525449 +39494,922,Hollywood,1451525458 +39494,922,movie business,1451525452 +39494,922,noir thriller,1451525444 +39494,1185,biography,1451523226 +39494,1185,Daniel Day-Lewis,1451523229 +39494,1228,boxing,1451523846 +39494,1228,boxing drama,1451523917 +39494,1228,character study,1451523914 +39494,1228,domestic violence,1451523911 +39494,1228,Martin Scorsese,1451523850 +39494,1228,Oscar (Best Actor),1451523926 +39494,1228,oscar (best cinematography),1451523929 +39494,1228,photography,1451523874 +39494,1228,Robert De Niro,1451523843 +39494,1228,sport:boxing,1451523862 +39494,1228,visceral,1451523866 +39494,1293,based on a true story,1451525005 +39494,1293,Ben Kingsley,1451525038 +39494,1293,Ben Kingsly,1451525046 +39494,1293,biography,1451525001 +39494,1293,insipiring,1451525023 +39494,1293,Oscar (Best Picture),1451524998 +39494,1299,dramatic,1451524494 +39494,1299,true story,1451524496 +39494,1307,Billy Crystal,1451525218 +39494,1307,chick flick,1451525205 +39494,1307,cute,1451525208 +39494,1307,Good Romantic Comedies,1451525194 +39494,1307,relationships,1451525222 +39494,1387,animal attacks,1451523057 +39494,1387,scary,1451523071 +39494,1387,Steven Spielberg,1451523053 +39494,1387,suspenseful,1451523063 +39494,1387,tense,1451523074 +39494,1394,Coen Brothers,1451524946 +39494,1394,Cult classic,1451524942 +39494,1394,deadpan,1451524939 +39494,1394,goofy,1451524933 +39494,1394,Quirky,1451524944 +39494,1704,Ben Affleck,1451523319 +39494,1704,boston,1451523327 +39494,1704,drama,1451523339 +39494,1704,excellent script,1451523303 +39494,1704,feel-good,1451523343 +39494,1704,friends,1451523336 +39494,1704,great acting,1451523330 +39494,1704,Great Screenplays,1451523311 +39494,1704,heartwarming,1451523332 +39494,1704,imdb top 250,1451523335 +39494,1704,inspirational,1451523308 +39494,1704,Matt Damon,1451523296 +39494,1704,mentor,1451523349 +39494,1704,psychology,1451523301 +39494,1704,thoughtful,1451523322 +39494,1704,university,1451523324 +39494,1732,black comedy,1451524709 +39494,1732,coen brothers,1451524701 +39494,1732,comedy,1451524717 +39494,1732,drugs,1451524728 +39494,1732,Nudity (Full Frontal),1451524750 +39494,1732,Philip Seymour Hoffman,1451524722 +39494,1732,quirky,1451524715 +39494,1732,satirical,1451524712 +39494,1957,inspirational,1451524978 +39494,1957,Olympics,1451524980 +39494,1957,Oscar (Best Picture),1451524983 +39494,1961,dark comedy,1451523272 +39494,1961,Dustin Hoffman,1451523249 +39494,1961,Exceptional Acting,1451523258 +39494,1961,Oscar (Best Actor),1451523262 +39494,1961,Oscar (Best Picture),1451523254 +39494,1961,psychology,1451523277 +39494,3072,funny,1451525150 +39494,3072,humorous,1451525160 +39494,3072,New York,1451525139 +39494,3072,Nicolas Cage,1451525156 +39494,3072,opera,1451525152 +39494,3072,Oscar (Best Supporting Actress),1451525141 +39494,3072,Romantic Comedy,1451525168 +39494,3578,drama,1451525702 +39494,3578,history,1451525698 +39494,3578,Rome,1451525694 +39494,3578,strong score,1451525715 +39494,3578,violence,1451525705 +39494,3578,violent,1451525707 +39494,3578,visual,1451525717 +39494,3755,drama,1451526177 +39494,3897,affectionate,1451523593 +39494,3897,bittersweet,1451523583 +39494,3897,Cameron Crowe,1451523580 +39494,3897,earnest,1451523598 +39494,3897,great soundtrack,1451523564 +39494,3897,humorous,1451523588 +39494,3897,music,1451523556 +39494,3897,nostalgic,1451523576 +39494,3897,Nudity (Topless),1451523570 +39494,3897,philip seymour hoffman,1451523566 +39494,3897,rock and roll,1451523554 +39494,3897,teen,1451523573 +39494,3897,understated,1451523595 +39494,3897,warm,1451523600 +39494,3967,ballet,1451526527 +39494,3967,coming of age,1451526529 +39494,3967,dance,1451526525 +39494,3967,dancing,1451526537 +39494,3967,drama,1451526539 +39494,3967,funny,1451526546 +39494,3967,good soundtrack,1451526551 +39494,3967,heartwarming,1451526542 +39494,3967,independent film,1451526557 +39494,3967,inspirational,1451526544 +39494,3967,realistic,1451526552 +39494,3967,small town,1451526555 +39494,3967,working class,1451526533 +39494,4014,chocolate,1451525563 +39494,4014,food/cooking,1451525554 +39494,4014,Johnny Depp,1451525543 +39494,4014,small town,1451525565 +39494,4022,drama,1451525860 +39494,4022,helen hunt,1451525864 +39494,4022,psychological,1451525857 +39494,4022,Tom Hanks,1451525849 +39494,4022,unique,1451525868 +39494,4027,coen brothers,1451524904 +39494,4027,great soundtrack,1451524907 +39494,4638,dinosaurs,1451526720 +39494,4638,stranded,1451526722 +39494,4995,biography,1451523379 +39494,4995,Drama,1451523392 +39494,4995,inspirational,1451523376 +39494,4995,Jennifer Connelly,1451523400 +39494,4995,Oscar Winner,1451523390 +39494,4995,psychology,1451523369 +39494,5299,chick flick,1451526256 +39494,5299,comedy,1451526247 +39494,5418,assassin,1451525771 +39494,5418,Coldwar,1451525783 +39494,5418,Matt Damon,1451525765 +39494,6218,culture clash,1451526687 +39494,6218,immigrants,1451526693 +39494,6440,Coen Brothers,1451524656 +39494,6440,disturbing,1451524667 +39494,6440,Enigmatic,1451524659 +39494,6440,John Goodman,1451524662 +39494,6711,Bill Murray,1451525932 +39494,6711,boring,1451525962 +39494,6711,complex characters,1451525939 +39494,6711,relationships,1451525942 +39494,8529,comedy,1451526937 +39494,8529,drama,1451526933 +39494,8529,funny,1451526923 +39494,8529,great acting,1451526931 +39494,8529,heartfelt,1451526929 +39494,8529,humorous,1451526925 +39494,8529,original plot,1451526927 +39494,8529,Steven Spielberg,1451526920 +39494,8529,tom hanks,1451526919 +39494,8529,underrated,1451526935 +39494,27815,choir,1451526580 +39494,27815,feel-good,1451526586 +39494,27815,heartwarming,1451526574 +39494,27815,mentor,1451526585 +39494,27815,music,1451526576 +39494,27815,singing,1451526591 +39494,27815,strength through music,1451526595 +39494,30749,based on a true story,1451524462 +39494,30749,drama,1451524452 +39494,30749,journalism,1451524459 +39494,32234,Jane Fonda,1451524264 +39494,32234,Jason Robards,1451524269 +39494,32234,Lillian Hellman,1451524275 +39494,32234,Vanessa Redgrave,1451524271 +39494,39183,beautiful,1451523809 +39494,39183,controversial,1451523812 +39494,39183,emotional,1451523784 +39494,39183,literary adaptation,1451523803 +39494,39183,Oscar (Best Directing),1451523792 +39494,46578,beauty pageant,1451526101 +39494,46578,dysfunctional family,1451526088 +39494,46578,feel-good,1451526122 +39494,46578,independent film,1451526107 +39494,46578,quirky,1451526091 +39494,46578,satire,1451526098 +39494,48385,crude humor,1451526355 +39494,48385,irreverent,1451526374 +39494,48385,Male nudity,1451526366 +39494,48385,mockumentary,1451526357 +39494,48385,Sacha Baron Cohen,1451526362 +39494,49530,journalism,1451526434 +39494,49530,Leonardo DiCaprio,1451526424 +39494,50872,clever,1451526056 +39494,50872,cooking,1451526040 +39494,50872,food/cooking,1451526054 +39494,50872,funny,1451526048 +39494,50872,imagination,1451526052 +39494,54286,assassin,1451524113 +39494,54286,torture,1451524120 +39494,55274,Cate Blanchett,1451523492 +39494,63876,based on a true story,1451523178 +39494,63876,biography,1451523145 +39494,63876,civil rights,1451523147 +39494,63876,drama,1451523172 +39494,63876,gay,1451523136 +39494,63876,gay history,1451523183 +39494,63876,gay rights,1451523151 +39494,63876,history,1451523180 +39494,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1451523165 +39494,63876,politics,1451523139 +39494,63876,San Francisco,1451523155 +39494,63876,Sean Penn,1451523142 +39494,63876,setting:San Francisco,1451523189 +39494,63876,thought-provoking,1451523175 +39494,70293,Amy Adams,1451525506 +39494,70293,cooking,1451525502 +39494,70293,food,1451525501 +39494,70293,france,1451525508 +39494,70293,Julia Child,1451525515 +39494,70293,lighthearted,1451525525 +39494,70293,Meryl Streep,1451525504 +39494,70293,Paris,1451525522 +39494,72998,beautiful scenery,1451524197 +39494,72998,effects,1451524212 +39494,72998,graphic design,1451524200 +39494,72998,visual,1451524210 +39494,72998,visually stunning,1451524204 +39494,81845,based on a true story,1451524295 +39494,81845,cinematography,1451524322 +39494,81845,Colin Firth,1451524300 +39494,81845,complex characters,1451524302 +39494,81845,drama,1451524306 +39494,81845,excellent script,1451524309 +39494,81845,feel-good,1451524315 +39494,81845,friendship,1451524311 +39494,81845,historical,1451524304 +39494,81845,Oscar (Best Picture),1451524298 +39494,99064,ghosts,1451523993 +39494,99064,obsession,1451523994 +39494,99064,vengeful spirit,1451523996 +39494,105504,believable,1451526462 +39494,105504,tom hanks,1451526458 +39494,105504,true story,1451526456 +39494,105844,based on a book,1451524039 +39494,105844,based on a true story,1451524044 +39494,105844,Chiwetel Ejiofor,1451524068 +39494,105844,cinematography,1451524042 +39494,105844,drama,1451524046 +39494,105844,Graphic Violence,1451524037 +39494,105844,slavery,1451524050 +39494,106438,based on a true story,1451523692 +39494,106438,bittersweet,1451523707 +39494,106438,dramatic comedy,1451523701 +39494,106438,Ireland,1451523699 +39494,106438,Judi Dench,1451523693 +39494,109374,cinematography,1451524838 +39494,109374,funny,1451524843 +39494,109374,great dialogue,1451524847 +39494,109374,Hilarious,1451524857 +39494,109374,murder,1451524860 +39494,109374,odd sense of humor,1451524877 +39494,109374,quirky,1451524882 +39494,109374,ridiculous,1451524864 +39494,109374,stylized,1451524842 +39494,109374,visually appealing,1451524836 +39494,109374,whimsical,1451524879 +39494,112183,Academy Award Nominee,1451524582 +39494,112183,Broadway,1451524609 +39494,112183,cinematography,1451524573 +39494,112183,Crazy,1451524597 +39494,112183,dark,1451524617 +39494,112183,Edward Norton,1451524560 +39494,112183,emma stone,1451524594 +39494,112183,great performances,1451524550 +39494,112183,magical realism,1451524557 +39494,112183,music,1451524589 +39494,112183,non-closed ending,1451524625 +39494,112183,photography,1451524628 +39494,112183,psychological,1451524565 +39494,112183,satire,1451524614 +39494,112183,surreal,1451524571 +39494,112183,theater,1451524607 +39494,116797,Benedict Cumberbatch,1451524344 +39494,116797,history,1451524347 +39529,318,classic,1151559387 +39529,608,Coen Brothers,1151559463 +39529,745,Aardman,1151559197 +39529,745,claymation,1151559190 +39529,2712,Stanley Kubrick,1151561673 +39529,3160,Philip Seymour Hoffman,1151559204 +39529,31658,Miyazaki,1151562478 +39532,72,boring,1313999925 +39532,72,cinematography,1314000005 +39532,72,Coming-of-Age,1313999790 +39532,72,Criterion,1313999777 +39532,72,dialogue,1313999909 +39532,72,literate,1314000054 +39532,72,long takes,1313999861 +39532,72,noah baumbach,1314000019 +39532,72,talky,1314000023 +39532,72,unemotional,1313999986 +39532,72,wistful,1314000127 +39532,72,wry,1314000094 +39532,147,addiction,1325128547 +39532,147,based on a true story,1325128551 +39532,147,Catholicism,1325128553 +39532,147,drugs,1325128557 +39532,147,ending,1325128611 +39532,147,escape,1325128559 +39532,147,heroin,1325128560 +39532,147,intense,1325128643 +39532,147,Leonardo DiCaprio,1325128561 +39532,147,male nudity,1325128566 +39532,147,male prostitute,1325128569 +39532,147,masturbation,1325128572 +39532,147,mother-son relationship,1325128576 +39532,147,New York City,1325128579 +39532,147,prostitution,1325128588 +39532,147,school,1325128590 +39532,147,true story,1325128596 +39532,147,WRITER'S LIFE,1325128602 +39532,219,AIDS,1315284991 +39532,219,childhood ignorance,1315285037 +39532,219,coming of age,1315285012 +39532,219,hope,1315285075 +39532,299,Catholicism,1311500030 +39532,299,Christianity,1311500032 +39532,299,gay,1311500016 +39532,299,homosexuality,1311500014 +39532,299,poor neighborhood,1311500372 +39532,299,priest,1311500039 +39532,299,queer,1311500019 +39532,299,religion,1311500045 +39532,299,second half was worse,1311500120 +39532,299,setting:Church,1311500056 +39532,299,sexual abuse,1311500138 +39532,299,sound effects,1311500196 +39532,299,soundtrack,1311500181 +39532,483,1930s,1333877662 +39532,483,child acting,1333877691 +39532,483,coming of age,1333877655 +39532,483,Great Depression,1333877659 +39532,700,bullying,1323282138 +39532,700,cheesy,1323282039 +39532,700,chris owen,1323282024 +39532,700,classic feel,1323282054 +39532,700,Kathy Bates,1323282028 +39532,700,Message,1323282124 +39532,700,normal,1323282031 +39532,700,quirky humor,1323282092 +39532,1046,adolescent gays,1337747241 +39532,1046,cheesy,1337747316 +39532,1046,child abuse,1337747275 +39532,1046,extraneous characters,1337747347 +39532,1046,feel-good,1337747435 +39532,1046,gay,1337747279 +39532,1046,gay romance,1337747292 +39532,1046,london,1337747284 +39532,1046,sexual modesty,1337747402 +39532,1046,soundtrack,1337747546 +39532,1161,based on a book,1339575597 +39532,1161,Germany,1339575602 +39532,1161,literary adaptation,1339575578 +39532,1161,long,1339575642 +39532,1161,magical realism,1339575627 +39532,1161,Nazis,1339575582 +39532,1161,quirky,1339575606 +39532,1161,satirical,1339575613 +39532,1161,symbolism,1339575635 +39532,1206,atmospheric,1343804796 +39532,1206,cult film,1343804789 +39532,1206,dystopia,1343804798 +39532,1206,psychology,1343804801 +39532,1206,social commentary,1343804806 +39532,1206,Surrealism,1343804804 +39532,1246,bittersweet,1325373793 +39532,1246,boarding school,1325373798 +39532,1246,childhood,1325373800 +39532,1246,drama,1325373802 +39532,1246,education,1325373804 +39532,1246,English literature,1325373807 +39532,1246,inspirational,1325373786 +39532,1246,philosophy,1325373821 +39532,1246,Robin Williams,1325373823 +39532,1246,school,1325373825 +39532,1246,school drama,1325373832 +39532,1246,Shakespeare,1325373836 +39532,1246,story,1325373907 +39532,1246,suicide,1325373838 +39532,1246,teaching,1325373893 +39532,1246,teen,1325373841 +39532,1258,adapted from:book,1311500845 +39532,1258,based on a book,1311500730 +39532,1258,not scary,1311500764 +39532,1258,psychological,1311500833 +39532,1258,scene transitions,1311500819 +39532,1258,Stephen King,1311500723 +39532,1405,2D animation,1314859455 +39532,1405,adapted from:TV series,1314859452 +39532,1405,Based on a TV show,1314859460 +39532,1405,based on TV series,1314859466 +39532,1405,buddy movie,1314859608 +39532,1405,dry humor,1314859569 +39532,1405,mike judge,1314859540 +39532,1405,MTV,1314859489 +39532,1405,road trip,1314859490 +39532,1405,stupid,1314859536 +39532,1734,child abuse,1311662229 +39532,1734,children,1311662236 +39532,1734,gender identity,1311662290 +39532,1734,glbt,1311662226 +39532,1734,homophobia,1311662269 +39532,1734,queer,1311662217 +39532,1734,rating,1311663920 +39532,1734,symbolism,1311662346 +39532,1734,transgender,1311662218 +39532,1734,transgendered,1311662221 +39532,1734,transsexual,1311662223 +39532,1734,utopia,1311662374 +39532,1812,bereavement,1315440257 +39532,1812,cheesy,1315440241 +39532,1812,child acting,1315440224 +39532,1812,ending,1315440244 +39532,1812,epilepsy,1315440330 +39532,1812,god,1315440128 +39532,1812,grandfather,1315440357 +39532,1812,Joseph Cross,1315440131 +39532,1812,kid flick,1315440187 +39532,1812,realization,1315440146 +39532,1812,Rosie O'Donnell,1315440136 +39532,1812,searching for god,1315440164 +39532,1860,father-son relationship,1323386035 +39532,1860,lawyers,1323386192 +39532,1860,not intresting enough,1323386214 +39532,1860,time period,1323386062 +39532,1879,adolescence is hell,1311498198 +39532,1879,garden,1311498431 +39532,1879,gay,1311498163 +39532,1879,homosexuality,1311498168 +39532,1879,multiple interpretations,1311498224 +39532,1879,same setting,1311498410 +39532,1879,Suicide,1311499874 +39532,1879,symbolism,1311498274 +39532,2068,bittersweet,1346945540 +39532,2068,disturbing,1346945559 +39532,2068,emotional,1346945561 +39532,2068,Oscar (Best Cinematography),1346945556 +39532,2068,Oscar (Best Foreign Language Film),1346945554 +39532,2068,poignant,1346945548 +39532,2068,swedish,1346945549 +39532,2127,based on a short story,1324999477 +39532,2127,different,1324999574 +39532,2127,divorce,1324999512 +39532,2127,Nudity (Full Frontal - Notable),1324999487 +39532,2127,psychology,1324999538 +39532,2127,sexy,1324999552 +39532,2324,bittersweet,1316037310 +39532,2324,father-son relationship,1316037308 +39532,2324,heartwarming,1316037312 +39532,2324,Holocaust,1316037314 +39532,2324,humane,1316037316 +39532,2324,Italy,1316037318 +39532,2324,love,1316037322 +39532,2324,optimism,1316037327 +39532,2324,Oscar (Best Actor),1316037329 +39532,2324,Oscar (Best Foreign Language Film),1316037306 +39532,2324,Oscar Winner,1316037332 +39532,2324,sentimental,1316037298 +39532,2324,survival,1316037300 +39532,2324,tear jerker,1316037293 +39532,2324,World War II,1316037295 +39532,2329,crime,1315024512 +39532,2329,disturbing,1315024514 +39532,2329,Edward Furlong,1315024592 +39532,2329,Edward Norton,1315024715 +39532,2329,emotional,1315024643 +39532,2329,imdb top 250,1315024641 +39532,2329,Neo-Nazis,1315024619 +39532,2329,powerful ending,1315024597 +39532,2329,prison,1315024611 +39532,2329,racism,1315024603 +39532,2329,skinhead,1315024607 +39532,2329,tense,1315024609 +39532,2329,thought-provoking,1315024634 +39532,2329,Tragedy,1315024650 +39532,2329,violence,1315024631 +39532,2357,alcoholism,1311946226 +39532,2357,bittersweet,1311946359 +39532,2357,bleak,1311946193 +39532,2357,Brazil,1311946221 +39532,2357,emotional,1311946366 +39532,2357,father-son relationship,1311946275 +39532,2357,heartwarming,1311946209 +39532,2357,Latin America,1311946219 +39532,2357,literate,1311946229 +39532,2357,love,1311946368 +39532,2357,orphans,1311946201 +39532,2357,religion,1311946213 +39532,2357,road trip,1311946391 +39532,2357,sound effects,1311946332 +39532,2357,trains,1311946246 +39532,2357,transition,1311946301 +39532,2607,adolescence gays,1318581751 +39532,2607,coming of age,1318581790 +39532,2607,coming out,1318581768 +39532,2607,gay,1318581742 +39532,2963,abuse,1332743277 +39532,2963,domestic violence,1332743244 +39532,2963,dysfunctional family,1332743398 +39532,2963,finding love,1332743422 +39532,2963,real,1332743231 +39532,3179,adapted from:book,1321587900 +39532,3179,alcoholism,1321587983 +39532,3179,based on a book,1321587895 +39532,3179,Catholicism,1321587886 +39532,3179,Ireland,1321587892 +39532,3179,Judaism,1321587881 +39532,3179,Nudity (Full Frontal - Notable),1321587938 +39532,3179,poverty,1321587884 +39532,3415,achronological,1312016463 +39532,3415,childhood,1312015519 +39532,3415,cinematography,1312015710 +39532,3415,collage,1312015580 +39532,3415,dreamlike,1312015569 +39532,3415,enigmatic,1312015517 +39532,3415,lyrical,1312015665 +39532,3415,nostalgic,1312015630 +39532,3415,poetic,1312015539 +39532,3415,reflective,1312015653 +39532,3415,Russian,1312015589 +39532,3415,surreal,1312015559 +39532,3415,visually stunning,1312015515 +39532,3969,abuse,1313522616 +39532,3969,alcoholism,1313522612 +39532,3969,child acting,1313522740 +39532,3969,domestic violence,1313522653 +39532,3969,idealistic,1313522665 +39532,3969,inspirational,1313522662 +39532,3969,inspirational teacher,1313522672 +39532,3969,kevin spacey,1313522676 +39532,3969,las vegas,1313522680 +39532,3969,socially relevant,1313522700 +39532,3969,twist ending,1313522702 +39532,3983,dialogue,1330233154 +39532,3983,family,1330233108 +39532,3983,infidelity,1330233111 +39532,3983,mother-son relationship,1330233115 +39532,3983,realistic,1330233120 +39532,3983,religion,1330233125 +39532,3983,responsibility,1330233132 +39532,3983,SIBLING RELATIONSHIPS,1330233137 +39532,3983,small town,1330233142 +39532,3983,subtle,1330233165 +39532,4297,emotional,1334943073 +39532,4297,feudalism,1334943106 +39532,4297,great acting,1334943054 +39532,4297,immigrants,1334943066 +39532,4297,long,1334943049 +39532,4297,poverty,1334943097 +39532,4297,powerful,1334943084 +39532,4787,genius,1325539107 +39532,4787,happy ending,1325539111 +39532,4787,Jodie Foster,1325539114 +39532,4787,prodigies,1325539116 +39532,4787,single parents,1325539120 +39532,4880,Nudity (Rear),1311393983 +39532,4880,predictable,1311393951 +39532,4880,touching,1311393989 +39532,5237,child acting,1317081543 +39532,5237,entertaining,1317081612 +39532,5237,FIGHTING THE SYSTEM,1317081309 +39532,5237,honor,1317081577 +39532,5237,military academy,1317081319 +39532,5237,one character insight,1317081499 +39532,5237,original plot,1317081526 +39532,5237,philosophical,1317081566 +39532,5237,some cheesy scenes,1317081402 +39532,5237,unrealistic story,1317081440 +39532,5377,british,1315674212 +39532,5377,comedy,1315674229 +39532,5377,coming of age,1315674231 +39532,5377,depression,1315674289 +39532,5377,drama,1315674236 +39532,5377,dysfunctional family,1315674325 +39532,5377,feel-good,1315674240 +39532,5377,funny,1315674242 +39532,5377,heartwarming,1315674244 +39532,5377,narrated,1315674249 +39532,5377,Quirky,1315674246 +39532,5377,relationships,1315674271 +39532,5377,romance,1315674259 +39532,5430,netherlands,1346567819 +39532,5430,nostalgia,1346567843 +39532,5430,pedophilia,1346567831 +39532,5430,taboo relationship,1346567869 +39532,5430,World War II,1346567817 +39532,5873,bad parenting,1315200673 +39532,5873,history,1315200557 +39532,5873,idealistic,1315201790 +39532,5873,Kevin Klein,1315200278 +39532,5873,Message,1315200354 +39532,5873,moral dilemma,1315200343 +39532,5873,prep school,1315200267 +39532,5873,private school,1315200265 +39532,5873,school competition,1315200812 +39532,5873,teaching,1315200369 +39532,5873,Unexpected Ending,1315200263 +39532,6291,brutal,1318999808 +39532,6291,Depressing,1318999760 +39532,6291,disturbing,1318999762 +39532,6291,friendship transcending death,1318999774 +39532,6291,human trafficking,1318999786 +39532,6291,intimate,1318999788 +39532,6291,loyalty vs. betrayal,1318999782 +39532,6291,poverty,1318999825 +39532,6291,Russian,1318999829 +39532,6291,sexual,1318999836 +39532,6291,social commentary,1318999793 +39532,6291,suicide,1318999800 +39532,6291,Swedish,1318999796 +39532,6890,adolescence,1329836909 +39532,6890,austere,1329836913 +39532,6890,cinematography,1329836962 +39532,6890,dialogue,1329836977 +39532,6890,disturbing,1329836919 +39532,6890,high school,1329836930 +39532,6890,massacre,1329836933 +39532,6890,violence in america,1329836949 +39532,6953,death,1332537822 +39532,6953,disconnected,1332537906 +39532,6953,drama,1332537978 +39532,6953,insignificant,1332537938 +39532,6953,life & death,1332537827 +39532,6953,multiple storylines,1332537837 +39532,6953,psychological,1332537849 +39532,6953,religion,1332537854 +39532,6953,revenge,1332537859 +39532,6953,Tragedy,1332537866 +39532,7254,alternate reality,1324613176 +39532,7254,Ashton Kutcher,1324613177 +39532,7254,Bittersweet,1324613179 +39532,7254,child abuse,1324613180 +39532,7254,child acting,1324613236 +39532,7254,drama,1324613229 +39532,7254,love,1324613185 +39532,7254,memory,1324613189 +39532,7254,Mystery,1324613193 +39532,7254,Nudity (Full Frontal - Brief),1324613224 +39532,7254,psychology,1324613199 +39532,7254,romance,1324613215 +39532,7254,sci-fi,1324613208 +39532,7254,science fiction,1324613213 +39532,7254,suspense,1324613204 +39532,7254,thought-provoking,1324613279 +39532,7254,time travel,1324613206 +39532,7254,twist ending,1324613201 +39532,7254,twists & turns,1324613202 +39532,7382,adolescence,1324324656 +39532,7382,childhood,1324324666 +39532,7382,country life,1324324665 +39532,7382,crime,1324324669 +39532,7382,cycling,1324324673 +39532,7382,father-son relationship,1324324676 +39532,7382,friends,1324324679 +39532,7382,from the view of children,1324324681 +39532,7382,historical,1324324686 +39532,7382,Italy,1324324688 +39532,7382,kidnapping,1324324689 +39532,7382,pigs,1324324691 +39532,7382,rural,1324324701 +39532,7382,secrets,1324324704 +39532,7382,siblings,1324324706 +39532,7382,small town,1324324708 +39532,8530,deafness,1311832142 +39532,8530,ending twist,1311832250 +39532,8530,scotland,1311832195 +39532,8620,Criterion,1313827720 +39532,8620,irreverent,1313827794 +39532,8620,not very funny,1313827637 +39532,8620,simple plot,1313827473 +39532,8620,surrealism,1313827419 +39532,8784,acting,1324159849 +39532,8784,coming of age,1324159767 +39532,8784,death of a parent,1324159775 +39532,8784,directorial debut,1324159777 +39532,8784,father-son relationship,1324159783 +39532,8784,friendship,1324159784 +39532,8784,funny,1324159786 +39532,8784,Great Soundtrack,1324159798 +39532,8784,mental illness,1324159806 +39532,8784,motorcycle,1324159814 +39532,8784,Natalie Portman,1324159816 +39532,8784,New Jersey,1324159819 +39532,8784,psychology,1324159821 +39532,8784,quirky,1324159823 +39532,8784,quirky romantic,1324159824 +39532,8784,romance,1324159827 +39532,8784,Zach Braff,1324159832 +39532,8955,crime,1323386480 +39532,8955,Devon Alan,1323386448 +39532,8955,Jamie Bell,1323386350 +39532,8955,lacking emotion,1323386588 +39532,8955,story,1323386618 +39532,8955,violence,1323386649 +39532,26578,cinematography,1336888353 +39532,26578,enclosed space,1336888366 +39532,26578,philosophical,1336888385 +39532,26578,pretentious,1336888464 +39532,26578,solemn,1336888392 +39532,26578,spirituality,1336888425 +39532,26578,the end of the world,1336888372 +39532,26974,Bizarre,1312015334 +39532,26974,collage,1312015397 +39532,26974,death metal,1312015338 +39532,26974,filmed in west nashville,1312015374 +39532,26974,natural disaster,1312015357 +39532,26974,stylized,1312015380 +39532,26974,SUBURBAN DYSFUNCTION,1312015347 +39532,26974,tornado,1312015354 +39532,26974,unscripted parts,1312015443 +39532,26974,youth gone wild,1312015351 +39532,27700,1950s,1337853708 +39532,27700,Andreas Wilson,1337853826 +39532,27700,based on a book,1337853713 +39532,27700,boarding school,1337853716 +39532,27700,bullying,1337853719 +39532,27700,corporal punishment,1337853926 +39532,27700,domestic violence,1337853720 +39532,27700,foreign language,1337853731 +39532,27700,friendship,1337853740 +39532,27700,justice,1337853794 +39532,27700,Mahatma Gandhi,1337853744 +39532,27700,oppression,1337853754 +39532,27700,smoking,1337853759 +39532,27700,soccer,1337853764 +39532,27700,swedish,1337853770 +39532,27700,violence,1337853773 +39532,27700,vivid,1337853862 +39532,27815,boarding school,1321431405 +39532,27815,choir,1321431498 +39532,27815,feel-good,1321431450 +39532,27815,France,1321431470 +39532,27815,French,1321431457 +39532,27815,heartwarming,1321431452 +39532,27815,inspirational,1321431454 +39532,27815,inspiring teacher,1321431475 +39532,27815,music,1321431473 +39532,27815,private school,1321431479 +39532,27815,singing,1321431488 +39532,27815,strength through music,1321431483 +39532,27815,vocalists,1321431485 +39532,27834,austere,1321685569 +39532,27834,bleak,1321685570 +39532,27834,brother-brother relationship,1321685567 +39532,27834,childhood,1321685565 +39532,27834,downbeat,1321685578 +39532,27834,fatherhood,1321685575 +39532,27834,FATHERS AND SONS,1321685580 +39532,27834,gloomy,1321685538 +39532,27834,harsh,1321685586 +39532,27834,INNOCENCE LOST,1321685563 +39532,27834,JOURNEY OF SELF-DISCOVERY,1321685596 +39532,27834,little dialogue,1321685544 +39532,27834,NOT HOLLYWOOD!,1321685662 +39532,27834,poignant,1321685550 +39532,27834,psychology,1321685516 +39532,27834,road trip,1321685518 +39532,27834,secrets,1321685553 +39532,27834,tense,1321685533 +39532,27834,water,1321685536 +39532,32892,Amazing Cinematography,1312688688 +39532,32892,black and white,1312688731 +39532,32892,directorial debut,1312688953 +39532,32892,disjointed plotline,1312688769 +39532,32892,Dreams,1312688705 +39532,32892,Old,1312688700 +39532,32892,Russian,1312688711 +39532,32892,slightly unrealistic,1312688916 +39532,32892,visually appealing,1312688709 +39532,32892,World War II,1312688723 +39532,33288,childhood,1339575543 +39532,33826,Catholic school,1315290782 +39532,33826,child neglect,1315290651 +39532,33826,childhood innocence,1315290739 +39532,33826,coma,1315290716 +39532,33826,death of a parent,1315290679 +39532,33826,dreams,1315290361 +39532,33826,funny parts,1315290623 +39532,33826,hope,1315290413 +39532,33826,indy,1315290358 +39532,33826,marathons,1315290363 +39532,33826,miracles,1315290479 +39532,33826,overdone story,1315290268 +39532,33826,religious identification,1315290461 +39532,33826,running,1315290370 +39532,33826,sentimental,1315290839 +39532,33826,single parent,1315290697 +39532,33826,social interactions,1315290333 +39532,33826,unrealistic,1315290227 +39532,33826,unrealistic dialogue,1315290240 +39532,33826,writing,1315290198 +39532,33880,artistic,1330596888 +39532,33880,bittersweet,1330596886 +39532,33880,FATHERS AND SONS,1330596892 +39532,33880,independent film,1330596895 +39532,33880,quirky,1330596903 +39532,33880,SEXUAL AWAKENING,1330596910 +39532,33880,SUBURBAN DYSFUNCTION,1330596912 +39532,33880,unique,1330596916 +39532,33880,weird,1330596917 +39532,34162,classic,1314000428 +39532,34162,cliche,1314000473 +39532,34162,comedy,1314000420 +39532,34162,ending,1314000500 +39532,34162,funeral,1314000540 +39532,34162,Owen Wilson,1314000590 +39532,34162,predictable,1314000401 +39532,34162,Vince Vaughn,1314000616 +39532,34162,wedding,1314000413 +39532,34162,weddings,1314000410 +39532,34162,Will Ferrell,1314000619 +39532,39183,bittersweet,1324345984 +39532,39183,boring,1324346037 +39532,39183,classic,1324346092 +39532,39183,ending,1324346143 +39532,39183,homosexuality,1324345983 +39532,39183,Oscar (Best Directing),1324346018 +39532,39183,Oscar (Best Picture),1324346015 +39532,39183,pointless,1324346047 +39532,39183,scenic,1324346064 +39532,39183,sexuality,1324346056 +39532,40732,blood,1317419774 +39532,40732,cave,1317419714 +39532,40732,cgi blood,1317419781 +39532,40732,character development,1317419784 +39532,40732,claustrophobic,1317419717 +39532,40732,goretastic,1317419736 +39532,40732,horror,1317419738 +39532,40732,no name actresses,1317419745 +39532,40732,spelunking,1317419801 +39532,40732,tense,1317419750 +39532,40732,twist ending,1317419752 +39532,40732,unmemorable actresses,1317419762 +39532,40732,violence,1317419765 +39532,45508,adolescent psychology,1316156068 +39532,45508,Africa,1316155958 +39532,45508,alcoholism,1316155994 +39532,45508,bereavement,1316156149 +39532,45508,child neglect,1316156033 +39532,45508,divorce,1316156003 +39532,45508,psychology,1316156056 +39532,45508,Swaziland,1316155929 +39532,45508,tics,1316156131 +39532,50514,drama,1327277637 +39532,50514,father daughter relationship,1327277760 +39532,50514,Mads Mikkelsen,1327277695 +39532,50514,marriage,1327277668 +39532,50514,wedding,1327277678 +39532,52952,1980s,1323612600 +39532,52952,bittersweet,1323612601 +39532,52952,bullying,1323612603 +39532,52952,childhood,1323612604 +39532,52952,coming of age,1323612605 +39532,52952,England,1323612628 +39532,52952,friendship,1323612629 +39532,52952,great soundtrack,1323612625 +39532,52952,gritty,1323612620 +39532,52952,INNOCENCE LOST,1323612617 +39532,52952,original skinhead,1323612613 +39532,52952,racism,1323612632 +39532,52952,realistic,1323612634 +39532,52952,suburbia,1323612636 +39532,52952,teenager,1323612639 +39532,52952,tense,1323612644 +39532,52952,urban,1323612658 +39532,53318,alternate reality,1315535831 +39532,53318,art school,1315535837 +39532,53318,art student as protagonist,1315535835 +39532,53318,british,1315535839 +39532,53318,cult film,1315535842 +39532,53318,funny,1315535907 +39532,53318,grocery store,1315535846 +39532,53318,imagination,1315535853 +39532,53318,insomnia,1315535856 +39532,53318,notable nudity,1315535863 +39532,53318,Nudity (Full Frontal),1315535865 +39532,53318,stopping time,1315535874 +39532,53318,strippers,1315535876 +39532,53318,supermarket,1315535878 +39532,53318,surrealism,1315535880 +39532,53318,time,1315535886 +39532,55652,abuse,1319023580 +39532,55652,borstal,1319023870 +39532,55652,disturbing,1319023526 +39532,55652,juvenile deliquent,1319023539 +39532,55652,shocking,1319023483 +39532,55652,story,1319023511 +39532,56339,childhood,1317335844 +39532,56339,creepy,1317335847 +39532,56339,eerie,1317335848 +39532,56339,fairy tale,1317335855 +39532,56339,foreign language,1317335857 +39532,56339,ghosts,1317335876 +39532,56339,ghosts/afterlife,1317335877 +39532,56339,Guillermo del Toro,1317335868 +39532,56339,HAUNTED BY THE PAST,1317335874 +39532,56339,haunted house,1317335926 +39532,56339,horror,1317335879 +39532,56339,husband-wife relationship,1317335888 +39532,56339,imaginary friend,1317335893 +39532,56339,mask,1317335899 +39532,56339,mother-son relationship,1317335903 +39532,56339,not scary enough,1317335949 +39532,56339,orphanage,1317335906 +39532,56339,paranormal,1317335907 +39532,56339,twist ending,1317335916 +39532,57359,dsyfunctional family,1343670036 +39532,58154,atmospheric,1316503102 +39532,58154,based on a book,1316503104 +39532,58154,cinematography,1316503179 +39532,58154,costumes,1316503169 +39532,58154,england,1316503111 +39532,58154,Henry VIII and Anne Boleyn,1316503132 +39532,58154,historical,1316503116 +39532,58154,politics,1316503122 +39532,58154,romance,1316503124 +39532,58154,royalty,1316503114 +39532,58334,bland,1317092859 +39532,58334,boring,1317092893 +39532,58334,not interesting,1317092867 +39532,58334,Nudity (Topless),1317092664 +39532,58334,obsession,1317092746 +39532,58334,psychology,1317092788 +39532,58334,soundtrack,1317092847 +39532,58334,voyeurism,1317092747 +39532,59339,bittersweet,1329711441 +39532,59339,cinematography,1329711502 +39532,59339,harmony korine,1329711460 +39532,59339,original,1329711449 +39532,59339,suicide,1329711438 +39532,59339,surreal,1329711443 +39532,59995,Andrew Garfield,1314687327 +39532,59995,British,1314687239 +39532,59995,bullying,1314687453 +39532,59995,camerawork,1314687664 +39532,59995,confusing plot,1314687218 +39532,59995,dark,1314687309 +39532,59995,depressing,1314687246 +39532,59995,flashbacks,1314687486 +39532,59995,haunting,1314687253 +39532,59995,hot boys,1314687559 +39532,59995,identity,1314687257 +39532,59995,intelligent,1314687359 +39532,59995,John Crowley,1314687349 +39532,59995,living a lie,1314687539 +39532,59995,moving,1314687227 +39532,59995,murder,1314687471 +39532,59995,prison,1314687229 +39532,59995,sex scenes,1314687631 +39532,59995,soundtrack,1314687382 +39532,59995,suicide,1314687233 +39532,62644,autocracy,1315057374 +39532,62644,brainwashing,1315057941 +39532,62644,classroom,1315057217 +39532,62644,dictatorship,1315057214 +39532,62644,discrimination,1315057222 +39532,62644,entertaining,1315057306 +39532,62644,fascism,1315057379 +39532,62644,fast paced,1315057502 +39532,62644,Germany,1315057261 +39532,62644,gloomy,1315057197 +39532,62644,high school,1315057226 +39532,62644,nationalism,1315057209 +39532,62644,Nazis,1315057206 +39532,62644,predictable,1315057295 +39532,62644,psychology,1315057184 +39532,62644,school,1315057187 +39532,62644,social experiment,1315057181 +39532,62644,suicide,1315057916 +39532,62644,unnatached to characters,1315057586 +39532,62644,violence,1315057177 +39532,63082,cinematography,1337056823 +39532,63082,destiny,1337057083 +39532,63082,disengaged,1337057019 +39532,63082,feel-good,1337057101 +39532,63082,gritty,1337056834 +39532,63082,India,1337056832 +39532,63082,music,1337056773 +39532,63082,poverty,1337056911 +39532,63082,social commentary,1337056808 +39532,63082,theme,1337057086 +39532,63082,torture,1337056783 +39532,63082,unrealistic,1337057079 +39532,63082,violence,1337056792 +39532,63436,mindfuck,1338613732 +39532,63436,Psychological horror,1338613727 +39532,63436,serial killer,1338613742 +39532,67186,acting,1324346295 +39532,67186,ghosts,1324346284 +39532,67186,haunted house,1324346281 +39532,67186,sci-fi,1324346291 +39532,67186,story,1324346302 +39532,69757,architecture,1315798900 +39532,69757,artistic,1315798675 +39532,69757,cute,1315798686 +39532,69757,ending,1315798832 +39532,69757,fate,1315799004 +39532,69757,Funny,1315798714 +39532,69757,greeting cards,1315798915 +39532,69757,humor,1315798716 +39532,69757,humorous,1315798718 +39532,69757,intelligent,1315798710 +39532,69757,Joseph Gordon-Levitt,1315798786 +39532,69757,Los Angeles,1315798852 +39532,69757,meaning of love,1315798958 +39532,69757,music,1315798721 +39532,69757,nonlinear,1315798736 +39532,69757,quirky,1315798737 +39532,69757,relationships,1315798741 +39532,69757,romance,1315798739 +39532,69757,slow,1315798754 +39532,69757,stylized,1315798745 +39532,71991,bleak,1336889428 +39532,71991,boarding school,1336889390 +39532,71991,disturbing,1336889415 +39532,71991,gloomy,1336889421 +39532,71991,internet videos,1336889465 +39532,71991,psychology,1336889438 +39532,72041,gore,1318919157 +39532,72041,not scary,1318919132 +39532,72041,revenge,1318919094 +39532,72041,stupid,1318919114 +39532,72694,doesn't live up to its full potential,1329711173 +39532,72694,drugs,1329711178 +39532,72694,Hollywood,1329711180 +39532,72694,Kevin Spacey,1329711183 +39532,72694,Los Angeles,1329711185 +39532,72694,psychology,1329711188 +39532,72694,Robin Williams,1329711191 +39532,74624,ancient civilization,1321588134 +39532,74624,astronomy,1321588140 +39532,74624,atheism,1321588141 +39532,74624,Egypt,1321588146 +39532,74624,historical,1321588199 +39532,74624,hypatia,1321588188 +39532,74624,irreligion,1321588185 +39532,74624,library of alexandria,1321588163 +39532,74624,library setting,1321588169 +39532,74624,mathematics,1321588287 +39532,74624,not intense enough,1321588227 +39532,74624,not interesting,1321588273 +39532,74624,philosophy,1321588173 +39532,74624,rationality,1321588180 +39532,74624,slavery,1321588178 +39532,77875,foster care,1315202775 +39532,78349,claustrophobic,1325539010 +39532,78349,dialogue driven,1325539022 +39532,78349,experiment,1325539026 +39532,78349,group psychology,1325539012 +39532,78349,isolation,1325539014 +39532,78349,logic,1325539020 +39532,78349,psychological,1325539019 +39532,78349,violence,1325539029 +39532,79242,adultery,1313522850 +39532,79242,awkward,1313523095 +39532,79242,college,1313522935 +39532,79242,coming of age,1313522947 +39532,79242,funny,1313522972 +39532,79242,good acting,1313522978 +39532,79242,lesbian,1313522981 +39532,79242,sperm donor,1313523047 +39532,79357,Beauty,1315126697 +39532,79357,chaos,1315126699 +39532,79357,cinematography,1315126701 +39532,79357,coming of age,1315126935 +39532,79357,confusing,1315126709 +39532,79357,Diane Kruger,1315126925 +39532,79357,divorce,1315127040 +39532,79357,flashbacks,1315127456 +39532,79357,immortality,1315126931 +39532,79357,love affair,1315127483 +39532,79357,nonlinear,1315126890 +39532,79357,nostalgia,1315127448 +39532,79357,romance,1315126944 +39532,79357,Sarah Polley,1315126887 +39532,79357,sci-fi,1315126731 +39532,79357,soundtrack,1315127004 +39532,79357,surreal,1315126720 +39532,79357,thought provoking,1315126718 +39532,79357,time travel,1315126758 +39532,79357,Toby Regbo,1315127405 +39532,79357,Viterbi algorithm,1315126865 +39532,79798,artistic,1313647576 +39532,79798,homosexual,1313647578 +39532,79798,mother-son relationship,1313647583 +39532,79798,Xavier Dolan,1324514975 +39532,80584,adoption,1315202734 +39532,80584,queer,1315202732 +39532,80969,atmospheric,1315489042 +39532,80969,based on a book,1315489044 +39532,80969,boarding school,1315489053 +39532,80969,chick flick,1315489034 +39532,80969,children,1315489027 +39532,80969,cinematography,1315489056 +39532,80969,depressing,1315489062 +39532,80969,disturbing,1315489064 +39532,80969,ending,1315489198 +39532,80969,England,1315489160 +39532,80969,great acting,1315489162 +39532,80969,love story,1315489173 +39532,80969,Nudity (Topless - Brief),1315489156 +39532,80969,Organ donor,1315489262 +39532,80969,pornography,1315489149 +39532,80969,sad,1315489147 +39532,80969,sexuality,1315489153 +39532,80969,slow,1315489039 +39532,80969,story,1315489195 +39532,80969,unemotional,1315489135 +39532,81132,bizarre,1344673843 +39532,81132,mindfuck,1344673856 +39532,81132,original,1344673875 +39532,81591,atmospheric,1336969932 +39532,81591,dance,1336969938 +39532,81591,dark,1336969935 +39532,81591,horror,1336969942 +39532,81591,insanity,1336969944 +39532,81591,mental illness,1336969947 +39532,81591,music,1336969951 +39532,81591,New York City,1336969958 +39532,81591,obsession,1336969960 +39532,81591,psychological,1336969963 +39532,81591,surreal,1336969969 +39532,81725,cinematography,1314158670 +39532,81725,family death,1314159022 +39532,81725,hot lead character,1314158939 +39532,81725,plot holes,1314158874 +39532,81725,setting: arctic,1314158752 +39532,82527,Alzheimer's disease,1314588088 +39532,82527,funny,1314588046 +39532,82527,makeup effects,1314588108 +39532,82527,Paul Giamatti,1314588125 +39532,82684,meaningless,1315202862 +39532,82684,no limits,1315202822 +39532,82684,trash,1315202876 +39532,82684,wierd,1315202796 +39532,84096,bob dylan,1344763287 +39532,84096,child acting,1344763226 +39532,84096,coming of age,1344763241 +39532,84096,family dysfunction,1344763278 +39532,84096,irish accent,1344763251 +39532,84273,9/11,1314783596 +39532,84273,capitalism,1314783504 +39532,84273,Conspiracy Theory,1314783515 +39532,84273,monetary policy,1314783650 +39532,84273,presentation,1314783682 +39532,84273,religion,1314783619 +39532,84273,revolution,1314783550 +39532,84273,social commentary,1314783537 +39532,84273,thought-provoking,1314783540 +39532,84273,utopia,1314783560 +39532,85510,characters,1313826695 +39532,85510,Cinematography,1313826550 +39532,85510,ending,1313826922 +39532,85510,lobotomy,1313826555 +39532,85510,Misogyny,1313826632 +39532,85510,Rape Culture,1313826639 +39532,85510,setting:brothel,1313826663 +39532,85510,soundtrack,1313826576 +39532,85510,Special Effects,1313826869 +39532,85510,stylized,1313826670 +39532,85510,Surreal,1313826567 +39532,85510,Zack Snyder,1313826569 +39532,85881,acting,1314585554 +39532,85881,adolescent psychology,1314585568 +39532,85881,Alex Shaffer,1314585519 +39532,85881,Bobby Cannavale's character,1314585634 +39532,85881,Cheesy Soundtrack,1314585533 +39532,85881,child abuse,1314585695 +39532,85881,dimentia,1314585639 +39532,85881,elder care,1314585644 +39532,85881,hot boys,1314585548 +39532,85881,legal system,1314585649 +39532,85881,litigation,1314585653 +39532,85881,Paul Giamatti,1314585672 +39532,85881,realistic wrestling,1314585722 +39532,85881,some events border unrealism,1314585617 +39532,85881,Thomas McCarthy,1314585513 +39532,87485,Bechdel Test:Pass,1314769939 +39532,87485,breast implants,1314770191 +39532,87485,drugs,1314770144 +39532,87485,high school,1314769996 +39532,87485,Jason Segel,1314770024 +39532,87485,not funny enough,1314770225 +39532,87485,Nudity (Topless - Notable),1314770031 +39532,87485,rough humor,1314770065 +39532,87485,sex jokes,1314770046 +39532,87485,swearing,1314770052 +39532,88744,bad dialogue,1314159487 +39532,88744,computer animation,1314159576 +39532,88744,funny parts,1314159701 +39532,88744,genetics,1314159511 +39532,88744,special effects,1314159589 +39532,88744,story,1314159503 +39532,88744,Tom Felton,1314159528 +39532,88744,"too much ""of the"" in title",1314159638 +39532,89028,bad acting,1338355818 +39532,89028,cheesy,1338355850 +39532,89028,folklore,1338355830 +39532,89028,Guillermo del Toro,1338355836 +39532,89028,plot holes,1338355845 +39532,89028,predictable,1338355821 +39532,89028,remake,1338355826 +39532,89047,character driven,1337158829 +39532,89047,dark comedy,1337158855 +39532,89047,Devin Brochu,1337158767 +39532,89047,excellent acting,1337158827 +39532,89047,humor,1337158832 +39532,89047,Joseph Gordon-Levitt,1337158715 +39532,89047,Rainn Wilson,1337158741 +39532,89047,typecasting,1337158818 +39532,89470,all-star cast,1327278166 +39532,89470,apocalypse,1327278175 +39532,89470,Demetri Martin,1327278228 +39532,89470,disappointing,1327278157 +39532,89470,disease,1327278182 +39532,89470,doctors,1327278185 +39532,89470,Hong Kong,1327278189 +39532,89470,lacks contemplative depth,1327278240 +39532,89470,Matt Damon,1327278268 +39532,89470,plausible,1327278247 +39532,89470,thriller,1327278255 +39532,89470,virus,1327278250 +39532,89904,1920s,1329710977 +39532,89904,Best Orig Screenplay,1329710986 +39532,89904,movie business,1329710999 +39532,89904,original,1329711025 +39532,89904,oscar 2012,1329711002 +39532,89904,silent movie,1329711008 +39532,90469,camerawork,1337521403 +39532,90469,horror,1337521406 +39532,91077,Best Adapted Screenplay,1330787617 +39532,91077,coma,1330787639 +39532,91077,emotional,1330787626 +39532,91077,listless,1330787680 +39532,91077,oscar 2012,1330787606 +39532,91505,atmospheric,1336700377 +39532,91505,cinematography,1336700384 +39532,91505,cloning,1336700408 +39532,91505,ethics,1336700417 +39532,91505,nostalgia,1336700398 +39532,94799,cliff hanger,1338908265 +39532,94799,creepy,1338908343 +39532,94799,cult,1338908226 +39532,94799,disturbing,1338908233 +39532,94799,psychological,1338908242 +39532,96110,ending,1344673997 +39532,96110,exaggerated,1344674021 +39532,96110,funny,1344674006 +39532,96110,Will Ferrell,1344673971 +39576,4322,baseball,1146596187 +39593,260,classic sci-fi,1439764339 +39593,260,Overrated,1439764351 +39601,6344,Nudity (Full Frontal - Notable),1242591480 +39601,6344,Nudity (Full Frontal),1242591483 +39603,67,coming of age,1390306342 +39603,121,child abuse,1396362448 +39603,121,paedophilia,1396362461 +39603,121,pedophile,1396362461 +39603,121,sexual abuse,1396362451 +39603,171,AIDS,1393256227 +39603,171,gay,1393256224 +39603,175,AIDS,1390495328 +39603,175,Nudity (Full Frontal),1390495331 +39603,175,teenagers,1390495333 +39603,202,homoerotic subtext,1390828236 +39603,202,homosexuality,1390828236 +39603,219,AIDS,1390306408 +39603,219,coming of age,1390306410 +39603,219,gay romance,1390306457 +39603,302,Daniel Auteuil,1390828040 +39603,302,slow,1390828027 +39603,374,children,1390495295 +39603,374,Macaulay Culkin,1390495296 +39603,388,gay,1390907567 +39603,500,Comedy,1390405146 +39603,500,cross dressing men,1390405163 +39603,500,funny,1390405173 +39603,500,Funny as hell,1397058463 +39603,500,Pierce Brosnan,1390405153 +39603,500,Robin Williams,1390405149 +39603,586,christmas,1390495372 +39603,586,Macaulay Culkin,1390495369 +39603,586,nostalgia,1395654476 +39603,837,children,1390912834 +39603,837,Roald Dahl,1390912832 +39603,837,supernatural,1390912838 +39603,896,Andr? T?chin?,1396342293 +39603,912,atmospheric,1399028804 +39603,912,black and white,1399028808 +39603,912,love,1399028814 +39603,912,romance,1399028817 +39603,1136,70s,1390811817 +39603,1136,John Cleese,1390811783 +39603,1136,Monty Python,1390811775 +39603,1178,Stanley Kubrick,1392742288 +39603,1206,psychology,1395666143 +39603,1206,Stanley Kubrick,1395666141 +39603,1225,18th century,1390814434 +39603,1225,beautiful,1390814462 +39603,1225,classical music,1390814430 +39603,1246,bittersweet,1397058506 +39603,1246,Coming of age,1397058509 +39603,1246,inspirational,1390306485 +39603,1246,philosophy,1390306483 +39603,1246,Robin Williams,1390306481 +39603,1246,suicide,1390306491 +39603,1419,coming of age,1395682686 +39603,1419,Nudity (Full Frontal - Notable),1395682689 +39603,1653,futuristic,1390569802 +39603,1653,genetic engineering,1390569799 +39603,1653,genetics,1390569798 +39603,1653,visually appealing,1390569805 +39603,1704,intellectual,1391432197 +39603,1704,mathematics,1391432172 +39603,1704,Matt Damon,1391432177 +39603,1721,atmospheric,1396617690 +39603,1721,Leonardo DiCaprio,1396617693 +39603,1923,Ben Stiller,1397058546 +39603,1923,sexual,1397058541 +39603,2012,alternate reality,1390395280 +39603,2012,Steven Spielberg,1390395275 +39603,2012,time travel,1390395262 +39603,2054,adventure,1390495175 +39603,2054,children,1390495172 +39603,2054,fantasy,1390495178 +39603,2176,Gay Lead Character,1389868444 +39603,2176,homosexual undertones,1389868436 +39603,2176,James Stewart,1389868450 +39603,2176,long takes,1389868485 +39603,2231,Matt Damon,1391503765 +39603,2626,coming of age,1395406466 +39603,2626,gay,1395406462 +39603,2626,homosexuality,1395406464 +39603,2696,comedy,1390908183 +39603,2696,French,1390908186 +39603,2696,French Film,1390908188 +39603,2696,funny,1390908193 +39603,2696,Jacques Villeret,1396425485 +39603,2696,Thierry Lhermitte,1390908190 +39603,2696,very funny,1390908201 +39603,2730,music,1390213780 +39603,2953,Christmas,1390495382 +39603,2953,Macaulay Culkin,1390495383 +39603,2953,New York,1390495386 +39603,2953,not as good as the first,1395654463 +39603,3134,black and white,1392741758 +39603,3134,lyrical,1392741738 +39603,3247,Choir,1390572056 +39603,3247,Whoopi Goldberg,1390572061 +39603,3248,choir,1390572081 +39603,3248,inspiring teacher,1390572084 +39603,3248,Whoopi Goldberg,1390572079 +39603,3448,Robin Williams,1391596815 +39603,3461,allegory,1391607875 +39603,3461,boys,1391607860 +39603,3461,teenagers,1391607860 +39603,3798,Harrison Ford,1390395466 +39603,3798,supernatural,1390395469 +39603,3798,suspenseful,1390395463 +39603,3800,France,1395846184 +39603,3800,French,1395846184 +39603,3800,French Film,1395846184 +39603,3800,Male Full Frontal Nudity,1395846201 +39603,3800,male nudity,1395846201 +39603,3800,shower scene,1395846218 +39603,3967,coming of age,1392369917 +39603,3967,inspirational,1392369920 +39603,4147,coming of age,1397058613 +39603,4147,gay,1397058620 +39603,4147,Gay Lead Character,1397058637 +39603,4147,homosexual undertones,1397058637 +39603,4147,homosexuality,1397058604 +39603,4147,SEXUAL AWAKENING,1397058615 +39603,4147,sexuality,1397058618 +39603,4147,Spanish,1397058622 +39603,4303,Gay Lead Character,1395759564 +39603,4303,Gay sex,1395759554 +39603,4303,Male Full Frontal Nudity,1395759558 +39603,4303,male nudity,1395759560 +39603,4370,artificial intelligence,1395666113 +39603,4370,dystopia,1395666117 +39603,4370,Steven Spielberg,1395666120 +39603,4381,closeted homosexual,1388750646 +39603,4381,Daniel Auteuil,1388750659 +39603,4381,France,1397058705 +39603,4381,Francis Veber,1391431046 +39603,4381,French,1397058705 +39603,4381,French Film,1397058705 +39603,4381,Gay stereotypes,1391431081 +39603,4381,Gerard Depardieu,1397058713 +39603,4381,homophobia,1391431080 +39603,4381,Thierry Lhermitte,1391431055 +39603,4450,bullying,1391015667 +39603,4450,Nudity (Full Frontal - Notable),1391015653 +39603,4450,Nudity (Full Frontal),1391015661 +39603,4450,rape,1391015665 +39603,4778,Bucharest,1390307422 +39603,4778,child abuse,1390307391 +39603,4778,documentary,1390307385 +39603,4778,Romania,1390307388 +39603,4778,Romanian,1390307386 +39603,4778,street children,1390307396 +39603,4816,ben stiller,1396355544 +39603,4816,David Bowie,1396355549 +39603,4951,boys,1391607827 +39603,4951,feelings about society,1391607814 +39603,4951,remake,1391607810 +39603,4951,teenager,1391607850 +39603,5024,gay relationship,1396342288 +39603,5224,To See,1390307531 +39603,5225,coming of age,1390907521 +39603,5225,Male Full Frontal Nudity,1395759523 +39603,5225,Nudity (Full Frontal - Notable),1390907494 +39603,5225,Nudity (Full Frontal),1390751516 +39603,5225,sexual,1390907516 +39603,5225,sexuality,1390907517 +39603,5225,spanish,1390907519 +39603,5377,coming of age,1397059171 +39603,5430,homosexual undertones,1390554682 +39603,5430,homosexuality,1390554687 +39603,5430,netherlands,1390554695 +39603,5430,nostalgia,1390554701 +39603,5430,pederasty,1390554689 +39603,5430,pedophilia,1390554692 +39603,5430,taboo relationship,1395406146 +39603,5430,World War II,1396362377 +39603,5560,French,1390580235 +39603,5839,boys,1391013174 +39603,5839,coming of age,1391013521 +39603,5839,family relationships,1391013186 +39603,5839,France,1391013227 +39603,5839,French,1391013227 +39603,5839,French Film,1391013227 +39603,5839,nostalgic,1391013174 +39603,5839,Provence,1391013231 +39603,5839,Yves Robert,1391013181 +39603,5840,boys,1391013158 +39603,5840,coming of age,1391013529 +39603,5840,family relationships,1391013480 +39603,5840,France,1391013223 +39603,5840,French,1391013223 +39603,5840,French Film,1391013223 +39603,5840,nostalgic,1391013162 +39603,5840,Provence,1391013223 +39603,6119,adapted from:play,1391506950 +39603,6119,black comedy,1391506918 +39603,6119,Christmas,1391506940 +39603,6119,France,1391506931 +39603,6119,French,1391506931 +39603,6119,French Film,1391506931 +39603,6119,homosexual undertones,1391506978 +39603,6119,queer,1391506966 +39603,6269,child abuse,1395759654 +39603,6269,pedophile,1395759655 +39603,6344,closeted homosexual,1391780189 +39603,6344,male nudity,1391780195 +39603,6344,Nudity (Full Frontal),1391780194 +39603,6483,warning: some people tryed to kill themselves while watching,1391774858 +39603,6539,Orlando Bloom,1390479351 +39603,6684,cute boys,1390812963 +39603,6684,gay,1390813000 +39603,6684,Gay Lead Character,1390812989 +39603,6684,great soundtrack,1390813000 +39603,6684,homosexuality,1390812944 +39603,6684,slow,1390812976 +39603,6684,Venice,1390812949 +39603,6870,Sean Penn,1390395418 +39603,7034,adolescence,1396888346 +39603,7034,coming of age,1395666164 +39603,7034,gay,1396888351 +39603,7034,homosexuality,1396888349 +39603,7034,small town,1396888359 +39603,7034,social commentary,1396888356 +39603,7099,great soundtrack,1390751087 +39603,7099,Hayao Miyazaki,1390751076 +39603,7224,boys,1391430628 +39603,7224,psychiatrist,1391430635 +39603,7265,Nudity (Full Frontal - Notable),1390991611 +39603,7265,Nudity (Full Frontal),1390991607 +39603,7299,interesting cultural conflict via French viewpoint,1388750866 +39603,7299,Pierre Boulanger,1388750891 +39603,7299,sentimental,1388750884 +39603,7458,Brad Pitt,1390479425 +39603,7458,Orlando Bloom,1390479423 +39603,7624,cute boys,1391507269 +39603,7624,Matt Damon,1391507256 +39603,8601,French,1390580248 +39603,8684,Lyon,1391706387 +39603,8938,cross dressing men,1395759625 +39603,8938,gay kiss,1395759601 +39603,8938,Gay Lead Character,1395759602 +39603,8938,gay relationship,1395759604 +39603,8938,gay romance,1395759609 +39603,8938,homosexuality,1395759610 +39603,8938,insanity,1395759607 +39603,8938,Male Full Frontal Nudity,1395759612 +39603,8938,male gaze,1395759613 +39603,8938,male nudity,1395759615 +39603,8938,Nudity (Full - Male),1395759619 +39603,8938,psychology,1395759617 +39603,8950,psychology,1395665571 +39603,8950,twist ending,1395665574 +39603,8973,child abuse,1397058800 +39603,8973,gay,1397058798 +39603,8973,sexuality,1397058804 +39603,8977,Ancient Greece,1390571974 +39603,8977,homosexuality,1390479445 +39603,8977,Nudity (Topless),1390479442 +39603,26109,classic comedy,1390301862 +39603,26109,Claude Rich,1390301879 +39603,26109,French Film,1390301862 +39603,26268,Bernard Blier,1390578486 +39603,26268,Jean Rochefort,1390578456 +39603,26268,Pierre Richard,1390578486 +39603,26268,Yves Robert,1390578469 +39603,26417,France,1391522247 +39603,26417,French,1391522248 +39603,26417,French Film,1391522248 +39603,26599,male full frontal nudity,1390321113 +39603,27368,french,1391675393 +39603,27396,father-son relationship,1391769685 +39603,27396,golf,1391769696 +39603,27706,quirky,1394632063 +39603,27721,Audrey Tautou,1390209791 +39603,27721,gaspard ulliel,1390209791 +39603,27768,Fabrice Luchini,1391706457 +39603,27768,France,1391706452 +39603,27768,French,1391706452 +39603,27768,French Film,1391706452 +39603,31408,boys,1395666257 +39603,31408,coming of age,1395666234 +39603,31408,cute boys,1395666257 +39603,31408,Gay Lead Character,1395666239 +39603,31408,Nudity (Topless),1395666231 +39603,33903,coming of age,1395666179 +39603,33903,psychology,1395666181 +39603,34198,Nudity (Full Frontal),1391780117 +39603,37736,boys,1391676209 +39603,37736,soundtrack,1391676218 +39603,37837,France,1390827958 +39603,37837,French Film,1390827958 +39603,37837,gay,1390827936 +39603,37837,gay friend,1390827980 +39603,37837,gay kiss,1390827980 +39603,37837,Gay Lead Character,1390827936 +39603,37837,holiday,1390827993 +39603,37837,homoerotic subtext,1390827941 +39603,37837,homophobia,1390827936 +39603,37837,homosexual undertones,1390827936 +39603,37837,homosexuality,1390827936 +39603,37837,Valeria Bruni Tedeschi,1390827947 +39603,38499,AIDS,1390400860 +39603,38499,gay,1390400862 +39603,39183,emotional,1395842734 +39603,39183,gay,1395760354 +39603,39183,gay relationship,1395760377 +39603,39183,gay romance,1395760361 +39603,39183,homosexuality,1395760348 +39603,39183,Love story,1395842727 +39603,39183,Nudity (Topless - Notable),1395760350 +39603,39183,romance,1395760352 +39603,39183,sexuality,1395842729 +39603,40414,France,1396871936 +39603,40414,French,1396871936 +39603,40414,French Film,1396871937 +39603,41126,Bertrand Tavernier,1395843187 +39603,41126,France,1395843176 +39603,41126,French,1395843176 +39603,41126,French Film,1395843176 +39603,41126,Lyon,1395843181 +39603,41126,Philippe Noiret,1395843191 +39603,41573,gay,1434367357 +39603,41573,homosexuality,1434367351 +39603,43552,France,1391522285 +39603,43552,French,1391522285 +39603,43552,French Film,1391522285 +39603,43871,computers,1390220028 +39603,43871,Harrison Ford,1390220033 +39603,43871,suspense,1395846144 +39603,44191,dystopia,1399621095 +39603,44191,homosexuality,1396353697 +39603,44199,Bollywood influence,1392888152 +39603,44199,intelligent thriller,1392741018 +39603,44199,Jodie Foster,1392741015 +39603,44199,twist ending,1392741005 +39603,47274,Nudity (Topless - Brief),1395406361 +39603,47997,future,1391696113 +39603,48744,bathtub,1396353831 +39603,48744,bisexual,1396282306 +39603,48744,depression,1396353810 +39603,48744,erection,1396354138 +39603,48744,erotic,1396353815 +39603,48744,gay,1396353820 +39603,48744,gay relationship,1396353803 +39603,48744,heartwarming,1396353816 +39603,48744,homosexuality,1396282308 +39603,48744,New York City,1396353807 +39603,48744,Nudity (Full Frontal - Notable),1390991640 +39603,48744,Nudity (Full Frontal),1390991644 +39603,48744,penis,1396354102 +39603,48744,pornography,1396354109 +39603,48744,queer,1396353824 +39603,48744,unsimulated sex scenes,1390991645 +39603,49422,François Damiens,1390406414 +39603,49735,Gay Lead Character,1395842798 +39603,49951,ancient rome,1399124511 +39603,49951,homosexuality,1399124491 +39603,49951,Male Full Frontal Nudity,1399124502 +39603,49951,male nudity,1399124502 +39603,49951,penis,1399124535 +39603,51007,algeria,1391618703 +39603,51167,father-son relationship,1392145026 +39603,51167,grandmother,1392145019 +39603,51167,Istanbul,1392145037 +39603,51167,Turkey,1392145008 +39603,52037,Albert Dupontel,1390406207 +39603,52037,Piano,1390406199 +39603,52037,Valérie Lemercier,1390406194 +39603,52365,Catherine Deneuve,1390211198 +39603,52365,Michel Aumont,1390554836 +39603,52365,Valerie Lemercier,1390211213 +39603,52694,boys,1392111805 +39603,52694,cute,1392111810 +39603,53956,British,1390482048 +39603,53956,british comedy,1390482049 +39603,53956,Gay Character,1389609772 +39603,53956,male nudity,1390482044 +39603,54328,Daniel Auteuil,1390395549 +39603,54328,French Film,1390395555 +39603,54328,Patrice Leconte,1390395541 +39603,56474,homoerotic,1396355583 +39603,56474,male nudity,1396355585 +39603,56474,masturbation,1396355587 +39603,58534,gay,1402247286 +39603,58534,Gay Character,1402247286 +39603,58534,Gay Interest,1402247286 +39603,58534,Gay Lead Character,1402247286 +39603,58534,gay relationship,1402247286 +39603,58534,gay romance,1402247286 +39603,59705,AIDS,1390237126 +39603,59705,gay,1390237126 +39603,59705,Gay Lead Character,1390237126 +39603,59705,Male Full Frontal Nudity,1390237153 +39603,59705,male nudity,1390237153 +39603,59705,Michel Blanc,1390237153 +39603,59705,music,1390237185 +39603,59705,Nudity (Full Frontal),1390568487 +39603,59705,sad,1390237168 +39603,60408,Dany Boon,1391013897 +39603,60408,France,1391013887 +39603,60408,French,1391013894 +39603,60408,French Film,1391013894 +39603,62250,italy,1396014344 +39603,62250,mafia,1396014343 +39603,62250,organized crime,1396014350 +39603,62434,Nudity (Full Frontal),1395759666 +39603,63082,India,1396021988 +39603,63082,nonlinear,1396021991 +39603,63082,visually appealing,1396021995 +39603,63808,France,1391423031 +39603,63808,French,1391423031 +39603,63808,French Film,1391423031 +39603,63808,high school,1391423019 +39603,63808,Laurent Cantet,1391423016 +39603,63808,Palme d'Or,1390912580 +39603,63808,teen,1390912592 +39603,63808,teenagers,1390912592 +39603,64034,boys,1396340122 +39603,64034,touching,1396340116 +39603,65304,France,1396027517 +39603,65304,French,1396027517 +39603,65304,French Film,1396027517 +39603,66859,boys,1391110890 +39603,66859,cute boys,1391110890 +39603,66859,high school,1391110895 +39603,68135,Zac Efron,1391592775 +39603,68237,artificial intelligence,1390569821 +39603,68237,depressing,1394630879 +39603,68237,dystopia,1394630867 +39603,68237,great soundtrack,1394630885 +39603,68237,melancholy,1394630893 +39603,68237,psychological,1394630881 +39603,68237,psychology,1394630869 +39603,68237,thought-provoking,1394630871 +39603,69027,Alex Lutz,1390406348 +39603,69027,Jean Dujardin,1390406350 +39603,69027,Michel Hazanavicius,1390406352 +39603,69027,parody,1390406359 +39603,69757,artistic,1392626087 +39603,69757,bittersweet,1392626089 +39603,69757,great soundtrack,1392626091 +39603,69757,Joseph Gordon-Levitt,1392626101 +39603,69757,nonlinear,1392626083 +39603,69757,romantic comedy,1392626116 +39603,69757,sad,1392626105 +39603,70670,Lino Ventura,1390577668 +39603,71363,Mulhouse,1390901340 +39603,71619,Audrey Tautou,1390828179 +39603,71619,France,1391706246 +39603,71619,French,1391706253 +39603,71619,French Film,1391706253 +39603,71619,soudtrack,1391706269 +39603,73681,classical music,1392369868 +39603,73804,Alain Delon,1390571944 +39603,77206,brother-brother relationship,1390912783 +39603,77206,Zachary Gordon,1390912777 +39603,78916,gay,1390321035 +39603,78916,gay love,1390321082 +39603,78916,male full frontal nudity,1390321050 +39603,78916,male nudity,1390321061 +39603,78916,Nudity (Full Frontal),1390321048 +39603,78916,shower scene,1390321070 +39603,79541,1950s,1390908114 +39603,79541,boys' school,1390908065 +39603,79541,childhood,1390908056 +39603,79541,children,1390908049 +39603,79541,comedy,1390908073 +39603,79541,France,1390908082 +39603,79541,French Film,1390908078 +39603,79541,Paris,1390908088 +39603,79895,Aswan,1390907875 +39603,79895,Egypt,1390907856 +39603,79895,fantasy world,1390907894 +39603,79895,French,1390907868 +39603,79895,French Film,1390907868 +39603,79994,France,1396424505 +39603,79994,French,1396424505 +39603,79994,French Film,1396424505 +39603,79994,uncomprehensible,1396424547 +39603,80463,computers,1392830737 +39603,81591,classical music,1390051220 +39603,81591,music,1390051220 +39603,85372,Fabrice Luchini,1391604351 +39603,85445,Romania,1390307497 +39603,86578,France,1396537556 +39603,86578,French,1396537556 +39603,86578,French Film,1396537556 +39603,86578,Sara Forestier,1396537570 +39603,87304,homosexuality,1390307589 +39603,90594,Equality,1395760318 +39603,90594,gay,1395760314 +39603,90594,Gay Interest,1395760311 +39603,90594,gay rights,1395760312 +39603,90594,homophobia,1395760310 +39603,90809,boys,1391431137 +39603,90809,France,1391431137 +39603,90809,French,1391431137 +39603,90809,French Film,1391431137 +39603,90809,gender identity,1391431139 +39603,90809,Paris,1391431142 +39603,90866,boys,1392827683 +39603,90866,children,1392827670 +39603,91556,Claude Rich,1390406031 +39603,91556,Fabrice Luchini,1390405981 +39603,91556,France,1391706371 +39603,91556,French,1391706371 +39603,91556,French Film,1390406007 +39603,91556,Lyon,1390405987 +39603,91556,money,1390406018 +39603,91556,Vincent Lindon,1390406000 +39603,91911,France,1390814938 +39603,91911,Nicolas Sarkozy,1390814945 +39603,92010,France,1396282171 +39603,92010,French,1396282172 +39603,92010,French Film,1396282172 +39603,92259,based on a true story,1390569997 +39603,92259,classical music,1390570010 +39603,92259,emotional,1390570002 +39603,92259,feel good movie,1390570004 +39603,92259,France,1396021959 +39603,92259,French,1396021959 +39603,92259,French Film,1396021959 +39603,92259,soundtrack,1390570000 +39603,92954,Gay Lead Character,1390495617 +39603,93128,18th century,1390572128 +39603,93128,Mozart,1390572112 +39603,93134,Fabrice Luchini,1390405944 +39603,93134,France,1390912671 +39603,93134,French Film,1390912671 +39603,93134,Paris,1390912671 +39603,93134,Sandrine Kiberlain,1390912662 +39603,93134,Spain,1390912676 +39603,93892,France,1396424222 +39603,93892,French,1396424223 +39603,93892,French Film,1396424223 +39603,94900,gigolo,1396282324 +39603,94900,male prostitute,1396282326 +39603,95159,black and white,1390554585 +39603,95159,Catholicism,1390554577 +39603,95159,coming of age,1390554528 +39603,95159,friendship between boys,1390554558 +39603,95159,gay,1390554538 +39603,95159,Gay Lead Character,1390554538 +39603,95159,homosexual evangelical church leader,1390554619 +39603,95159,homosexual undertones,1390554612 +39603,95159,homosexuality,1390554597 +39603,95159,pederasty,1390554579 +39603,95754,brother-brother relationship,1391431573 +39603,95754,brothers,1391431573 +39603,95754,gay,1391431574 +39603,95754,Gay Character,1391431574 +39603,95754,gay romance,1391431574 +39603,96501,François Cluzet,1391431189 +39603,96821,coming of age,1390306516 +39603,96821,Gay Character,1390306530 +39603,97304,espionage,1390569965 +39603,97304,Iran,1390569966 +39603,97304,Middle East,1390569972 +39603,97304,thriller,1390569970 +39603,97304,true story,1390569974 +39603,97699,Albert Dupontel,1396342353 +39603,97699,France,1396342363 +39603,97699,French,1396342363 +39603,97699,French Film,1396342363 +39603,98298,Denis Podalydès,1390301029 +39603,98298,Isabelle Adjani,1390301020 +39603,98477,France,1392812328 +39603,98477,French,1392812328 +39603,98477,French Film,1392812328 +39603,98509,France,1397058782 +39603,98509,French,1397058782 +39603,98509,French Film,1397058782 +39603,98509,Gerard Lanvin,1397058788 +39603,98509,Jean-Pierre Darroussin,1397058788 +39603,98985,France,1392484105 +39603,98985,French,1392484105 +39603,98985,French Film,1392484114 +39603,99523,black comedy,1396022155 +39603,99523,France,1396022164 +39603,99523,French,1396022164 +39603,99523,French Film,1396022164 +39603,100131,cute boys,1391769011 +39603,100238,France,1397058753 +39603,100238,French,1397058753 +39603,100238,French Film,1397058753 +39603,100238,photographer,1389690576 +39603,100238,photography,1389690576 +39603,101498,Fabrice Luchini,1390405931 +39603,101498,François Ozon,1391001319 +39603,101498,France,1391001191 +39603,101498,French Film,1391001191 +39603,101973,internet,1391001145 +39603,101973,masturbation,1391001152 +39603,101973,online relationships,1391001121 +39603,102660,Fabrice Luchini,1390406105 +39603,102660,Lambert Wilson,1390406114 +39603,102819,gay,1390386879 +39603,102819,Gay Lead Character,1390386885 +39603,102819,Matt Damon,1390386911 +39603,102819,Michael Douglas,1390386921 +39603,102819,piano,1390386942 +39603,102819,queer,1390386926 +39603,102819,Steven Soderbergh,1390386907 +39603,103030,Equality,1395759863 +39603,103030,Gay Lead Character,1395760244 +39603,103030,gay rights,1395760248 +39603,103030,gay romance,1395760250 +39603,103549,based on play,1433504857 +39603,103549,dialogue driven,1433504867 +39603,103549,France,1391001646 +39603,103549,French,1391001646 +39603,103549,French Film,1391001646 +39603,103549,friendship,1433504899 +39603,103549,funny,1391001646 +39603,103549,homophobia,1399621038 +39603,103549,Paris,1391001657 +39603,103549,Valérie Benguigui,1433504830 +39603,103867,Lisbon,1390840119 +39603,103867,Portugal,1390840650 +39603,103972,Barcelona,1391000809 +39603,103972,death,1391001054 +39603,103972,epidemic,1391001046 +39603,103972,fear,1391001050 +39603,103972,Spain,1391000815 +39603,103972,virus,1391000827 +39603,104283,anime,1390569632 +39603,104283,great soundtrack,1390569623 +39603,104283,Hayao Miyazaki,1390569625 +39603,104283,Japan,1390569627 +39603,104283,music,1390569623 +39603,104423,Music,1390051603 +39603,104423,Pierre Niney,1390051589 +39603,104841,bad science,1390306947 +39603,104841,science,1390306963 +39603,104841,suspense,1390306951 +39603,104841,visually appealing,1390306949 +39603,104841,visually stunning,1390306979 +39603,105246,Audrey Tautou,1391706212 +39603,105246,France,1391706228 +39603,105246,French,1391706228 +39603,105246,French Film,1391706228 +39603,105246,Romain Duris,1391706212 +39603,105504,hijacking,1395655431 +39603,105504,Somalia,1395655453 +39603,105504,suspense,1395655432 +39603,105504,tom hanks,1395655434 +39603,106100,AIDS,1395390072 +39603,106100,topic:AIDS/HIV,1395390060 +39603,106100,topic:homophobia,1395390068 +39603,106405,gay,1395924968 +39603,106405,Gay Interest,1395924967 +39603,106405,homosexuality,1395924968 +39603,106417,gay,1391769580 +39603,106417,Gay Character,1391769606 +39603,106417,gay romance,1391769580 +39603,106417,male nudity,1391769606 +39603,106441,antisemitism,1391175078 +39603,106441,boys,1391175088 +39603,106441,children,1391175088 +39603,106441,setting:Nazi Germany,1391175070 +39603,106452,beautifully filmed,1392985512 +39603,106452,black and white,1392985486 +39603,106489,Orlando Bloom,1390479386 +39603,106727,Albert Dupontel,1396021844 +39603,106782,Leonardo DiCaprio,1390568436 +39603,106782,Nudity (Full Frontal),1390568438 +39603,106916,Park Avenue,1394613006 +39603,106916,soundtrack,1394612990 +39603,106918,Afghanistan,1390300911 +39603,106918,Ben Stiller,1390050844 +39603,106918,David Bowie,1390050761 +39603,106918,Greenland,1390300898 +39603,106918,Iceland,1390300899 +39603,106918,imagination,1395407233 +39603,106918,inspirational,1395407237 +39603,106918,mother-son relationship,1390300933 +39603,106918,New York City,1390300842 +39603,106918,photograph,1390050805 +39603,106918,photographer,1390050777 +39603,106918,photography,1390050777 +39603,106918,remake,1390050788 +39603,106918,travel,1390050831 +39603,106918,visually appealing,1390306994 +39603,106920,artificial intelligence,1394630841 +39603,106920,beautiful,1395666069 +39603,106920,Human Computer Interaction,1394630843 +39603,106920,loneliness,1395666060 +39603,106920,meaning of life,1395336207 +39603,106920,philosophical,1396279009 +39603,106920,psychology,1394630847 +39603,106920,Scarlett Johansson,1395666058 +39603,106920,thought-provoking,1394630849 +39603,107916,actors and acting,1389362330 +39603,107916,biography,1389362280 +39603,107916,biopic,1389362279 +39603,107916,depression,1389372715 +39603,107916,fashion,1389950349 +39603,107916,fashion industry,1389950350 +39603,107916,French,1390481867 +39603,107916,French Film,1390481873 +39603,107916,gay,1389362280 +39603,107916,Gay Character,1389362280 +39603,107916,gay kiss,1389372698 +39603,107916,Gay Lead Character,1389362280 +39603,107916,gay romance,1389362280 +39603,107916,loud music,1389362341 +39603,107916,love,1389372726 +39603,107916,paris,1390051367 +39603,107916,Pierre Niney,1390051543 +39603,107916,rare,1390481856 +39603,108041,actors and acting,1389616544 +39603,108041,coming out,1396864469 +39603,108041,England,1390306903 +39603,108041,France,1390306882 +39603,108041,French Film,1390306856 +39603,108041,Gay Interest,1396021918 +39603,108041,Guillaume Gallienne,1390306867 +39603,108041,homophobia,1396864469 +39603,108041,homosexual undertones,1396021912 +39603,108041,homosexuality,1396021906 +39603,108041,male nudity,1396021934 +39603,108041,man dressed as woman (scene),1389616544 +39603,108041,Spain,1390306899 +39603,108041,Theater,1390765053 +39603,108041,twist ending,1389616592 +39603,108050,Algeria,1434367553 +39603,108050,boys,1434367556 +39603,108052,AIDS,1389617027 +39603,108052,death/fatality,1389617055 +39603,108052,disease,1389617044 +39603,108052,Gay Lead Character,1389617025 +39603,108052,hiv,1389617027 +39603,108052,homosexuality,1389617071 +39603,108052,TV Movie,1389617035 +39603,108190,dystopia,1396863523 +39603,108209,Pierre Niney,1390051529 +39603,108212,fashion,1390346166 +39603,108212,France,1391432427 +39603,108212,French,1391432427 +39603,108212,French Film,1391432427 +39603,108212,gaspard ulliel,1390052044 +39603,108212,gay,1390346171 +39603,108212,Gay Lead Character,1390052037 +39603,108237,France,1391612043 +39603,108237,French,1391612043 +39603,108237,French Film,1391612043 +39603,108237,Jamel Debbouze,1391612033 +39603,108246,Bare chested male,1390571914 +39603,108285,airplane,1433504797 +39603,108285,airport,1390215277 +39603,108285,Algeria,1433504759 +39603,108285,hijacking,1433504776 +39603,108285,islamism,1433504766 +39603,108285,Planes,1390215246 +39603,108285,terrorism,1433504756 +39603,108285,terrorists,1433504748 +39603,108287,boys,1391507098 +39603,108287,Christmas,1391507083 +39603,108287,cute boys,1390215693 +39603,108287,dance,1391507092 +39603,108287,Garrett Clayton,1390215683 +39603,108287,teen,1391507129 +39603,108287,teenagers,1391507129 +39603,108332,based on a book,1390301625 +39603,108332,Claude Rich,1390301606 +39603,108332,Denis PodalydÃ?¨s,1390301304 +39603,108332,Pierre Arditi,1390301304 +39603,108342,1950s,1390302153 +39603,108342,alcoholism,1390302142 +39603,108342,classic comedy,1390302130 +39603,108342,episodic character,1390827676 +39603,108342,France,1390827722 +39603,108342,French New Wave,1390302089 +39603,108342,Henri Verneuil,1390827704 +39603,108342,Jean Gabin,1390827732 +39603,108342,Jean-Paul Belmondo,1390302080 +39603,108342,Normandie,1390302178 +39603,108342,war,1390827749 +39603,108342,World War II,1390827749 +39603,108389,airport,1390415836 +39603,108389,children,1390383201 +39603,108389,cliche,1390415851 +39603,108389,coming of age,1390491349 +39603,108389,france,1434367127 +39603,108389,French,1390415281 +39603,108389,French Film,1390415287 +39603,108389,holiday,1390415828 +39603,108389,Suburbs,1390415326 +39603,108389,teenagers,1390556964 +39603,108389,youth,1434367127 +39603,108395,coming out,1390395173 +39603,108395,French,1390395135 +39603,108395,French Film,1390395156 +39603,108395,gay,1390395136 +39603,108395,Johnny Hallyday,1390578431 +39603,108395,Julie Gayet,1390395187 +39603,108395,lesbian,1390395161 +39603,108422,sex,1390479060 +39603,108425,violence,1390489063 +39603,108445,lesbian,1390552684 +39603,108445,lesbians,1390552684 +39603,108522,Nazis,1390907761 +39603,108546,coming of age,1390812017 +39603,108546,French,1390812051 +39603,108546,French Film,1390812059 +39603,108546,gay,1390812041 +39603,108546,homosexual undertones,1390812036 +39603,108546,tennis,1390812029 +39603,108548,California,1390840702 +39603,108548,geeks,1390812238 +39603,108548,genius,1390812216 +39603,108548,Jim Parsons,1390840732 +39603,108548,nerds,1390812238 +39603,108548,pasadena,1390812245 +39603,108548,physics,1390812209 +39603,108548,roommates,1390840717 +39603,108548,series,1391592755 +39603,108548,TV series,1391592748 +39603,108548,university,1390840713 +39603,108551,Arabic,1390812774 +39603,108551,Claudia Cardinale,1397058427 +39603,108551,closeted homosexual,1390812830 +39603,108551,coming out,1390812847 +39603,108551,France,1390812752 +39603,108551,gay,1390812773 +39603,108551,Gay Lead Character,1390812773 +39603,108551,gay romance,1390812807 +39603,108551,homophobia,1390812762 +39603,108551,male nudity,1390812815 +39603,108551,muslim,1390812877 +39603,108551,Tunisia,1391431605 +39603,108583,comedy,1390900987 +39603,108583,John Cleese,1390900987 +39603,108583,series,1390918178 +39603,108583,tv series,1391591610 +39603,108592,childhood,1390912493 +39603,108592,dysfunctional family,1433504232 +39603,108592,France,1390912441 +39603,108592,French Film,1390912442 +39603,108592,humiliation,1433504640 +39603,108592,husband-wife relationship,1390912480 +39603,108592,mother-son relationship,1433504599 +39603,108592,Nathalie Baye,1390912431 +39603,108592,psychological abuse,1433504695 +39603,108592,psychological torture,1433504681 +39603,108592,psychology,1433504703 +39603,108592,puberty,1433504659 +39603,108592,teenage boy,1433504609 +39603,108592,teenage romance,1433504647 +39603,108647,AGE DISPARITY ROMANCE,1391001576 +39603,108647,France,1391001553 +39603,108647,French,1391001553 +39603,108647,French Film,1391001553 +39603,108647,gay,1391001575 +39603,108647,Pierre Niney,1391001536 +39603,108756,bisexual,1391431974 +39603,108778,France,1391422933 +39603,108778,French,1391422933 +39603,108778,French Film,1391422933 +39603,108778,gay,1391422862 +39603,108778,Gay Character,1391422862 +39603,108778,gay kiss,1391422916 +39603,108778,Gay Lead Character,1391422862 +39603,108778,love,1391422874 +39603,108778,Male Full Frontal Nudity,1391422916 +39603,108778,male nudity,1391422916 +39603,108778,penis,1396282373 +39603,108778,queer,1391422875 +39603,108787,Canada,1391430836 +39603,108787,closeted homosexual,1391430817 +39603,108787,gay,1391430817 +39603,108787,Gay Character,1391430817 +39603,108787,Gay Lead Character,1391430817 +39603,108787,gay romance,1391430817 +39603,108787,quebec,1391430836 +39603,108787,Xavier Dolan,1391430842 +39603,108789,boyfriend boyfriend relationship,1391431361 +39603,108789,French,1391431383 +39603,108789,French Film,1391431383 +39603,108789,gay,1391431361 +39603,108789,Gay Character,1391431361 +39603,108789,Gay Lead Character,1391431361 +39603,108789,gay romance,1391431361 +39603,108789,male nudity,1391431373 +39603,108791,dutch,1391431822 +39603,108791,gay,1391431793 +39603,108791,Gay Character,1391431793 +39603,108791,gay romance,1391431793 +39603,108791,gay teenager,1391431807 +39603,108791,homosexual undertones,1391431756 +39603,108791,male nudity,1391431793 +39603,108791,teenage boy,1391431752 +39603,108791,teenagers,1391431752 +39603,108797,grandparents,1391503700 +39603,108811,France,1391522423 +39603,108811,French,1391522423 +39603,108811,french movie,1391522423 +39603,108825,Jean-Pierre Jeunet,1391590560 +39603,108879,boys,1391693478 +39603,108879,cute boys,1391693478 +39603,108879,Garrett Clayton,1391694596 +39603,108879,teen,1391693478 +39603,108879,teen movie,1391693465 +39603,108879,teenagers,1391693478 +39603,108901,boys,1391769221 +39603,108901,France,1391769182 +39603,108901,French,1391769182 +39603,108901,French Film,1391769182 +39603,108928,cast,1396871994 +39603,109000,France,1392044386 +39603,109000,French,1392044386 +39603,109000,French Film,1392044386 +39603,109000,Jules Sitruk,1392044402 +39603,109000,resistance movement,1392044372 +39603,109000,World War II,1392044366 +39603,109008,based on a book,1392111684 +39603,109008,Catherine Frot,1392111700 +39603,109008,France,1392111693 +39603,109008,French,1392111693 +39603,109008,French Film,1392111693 +39603,109008,Jules Sitruk,1396425613 +39603,109010,boy scouts,1392112102 +39603,109010,boys,1392112102 +39603,109010,France,1392112115 +39603,109010,French,1392112115 +39603,109010,French Film,1392112115 +39603,109010,Jules Sitruk,1392112124 +39603,109027,bad plot,1399454533 +39603,109027,Dany Boon,1392135707 +39603,109027,France,1392135647 +39603,109027,French,1392135647 +39603,109027,French Film,1392135647 +39603,109159,France,1392484046 +39603,109159,French,1392484046 +39603,109159,French Film,1392484047 +39603,109161,Roman Polanski,1399449266 +39603,109241,France,1392653561 +39603,109241,French,1392653561 +39603,109241,French Film,1392653561 +39603,109241,Laurent Lafitte,1392653550 +39603,109241,Omar Sy,1392653550 +39603,109241,Paris,1392653563 +39603,109243,Nicolas Cage,1392653676 +39603,109290,Africa,1392799239 +39603,109290,airplane,1392799248 +39603,109290,Catherine Deneuve,1392799226 +39603,109290,France,1392799218 +39603,109290,French,1392799219 +39603,109290,French Film,1392799219 +39603,109290,Planes,1392799248 +39603,109313,France,1392811634 +39603,109313,French,1392811634 +39603,109313,French Film,1392811634 +39603,109313,gay,1392811620 +39603,109313,Gay Lead Character,1392811620 +39603,109313,gay romance,1392811681 +39603,109313,homosexual undertones,1396425414 +39603,109313,homosexuality,1392811620 +39603,109313,psychiatrist,1392811669 +39603,109313,psychology,1392811669 +39603,109313,queer,1396425413 +39603,109313,transvestism,1392811651 +39603,109357,gay,1392985023 +39603,109357,Gay stereotypes,1392985023 +39603,109357,transgender,1392985027 +39603,109357,transsexuals,1392985028 +39603,109359,gay,1392985133 +39603,109359,Gay Lead Character,1392985133 +39603,109359,gay romance,1392985133 +39603,109359,gerontophilia,1392985142 +39603,109359,homosexual undertones,1396863663 +39603,109359,homosexuality,1396863663 +39603,109359,older man younger man,1392985156 +39603,109359,road trip,1392985172 +39603,109364,French Film,1392992913 +39603,109364,soundtrack,1392992925 +39603,109374,cinematography,1396992533 +39603,109374,eastern europe,1396992535 +39603,109374,Edward Norton,1397032272 +39603,109374,quirky,1396992545 +39603,109374,visually appealing,1396992529 +39603,109461,Dany Boon,1394631564 +39603,109468,France,1393321650 +39603,109468,French,1393321651 +39603,109468,French Film,1393321651 +39603,109470,France,1393321742 +39603,109470,French,1393321742 +39603,109470,French Film,1393321744 +39603,109470,male nudity,1393321748 +39603,109578,airplane,1397031087 +39603,109578,airplane crash,1397031139 +39603,109578,hijacking,1397031124 +39603,109578,thrilling,1397031055 +39603,109783,children,1394632202 +39603,109783,mother daughter relationship,1394632219 +39603,109783,mother-son relationship,1394632212 +39603,109783,school,1394632223 +39603,109796,France,1394732139 +39603,109796,French,1394732139 +39603,109796,French Film,1394732139 +39603,109796,Iraq War,1394732166 +39603,109796,journalism,1394732172 +39603,109796,Omar Sy,1394732149 +39603,109796,Paris,1394732143 +39603,109796,war journalism,1394732177 +39603,109923,Niels Arestrup,1395336011 +39603,109963,France,1395336142 +39603,109963,French,1395336142 +39603,109963,French Film,1395336142 +39603,109963,Niels Arestrup,1395336126 +39603,109963,Thierry Lhermitte,1395336132 +39603,110058,gay,1395664749 +39603,110058,Gay Character,1395664749 +39603,110058,Gay Lead Character,1395664749 +39603,110058,gay romance,1395664756 +39603,110058,homophobia,1395664679 +39603,110058,homosexual undertones,1395664679 +39603,110058,homosexuality,1395664679 +39603,110058,Male Full Frontal Nudity,1395664768 +39603,110058,Nazis,1395664731 +39603,110058,Neo-Nazis,1395664719 +39603,110061,beach,1395666919 +39603,110061,boy nudity,1395666917 +39603,110061,coming of age,1395666916 +39603,110061,mother son relationship,1395666916 +39603,110061,nudity,1395666917 +39603,110063,colonialism,1395842937 +39603,110063,France,1395683789 +39603,110063,French,1395683789 +39603,110063,French Film,1395683789 +39603,110063,Ibrahim Koma,1395842948 +39603,110108,France,1395843095 +39603,110108,French,1395843095 +39603,110108,French Film,1395843095 +39603,110108,Ibrahim Koma,1395843108 +39603,110108,Suburbs,1395843103 +39603,110134,boys,1396027372 +39603,110134,France,1396027358 +39603,110134,French,1396027358 +39603,110134,French Film,1396027358 +39603,110134,orphans,1396027368 +39603,110134,resistance movement,1396027363 +39603,110136,airplane,1396027466 +39603,110136,airplane crash,1396027463 +39603,110136,Amazon,1396027481 +39603,110136,Amazon jungle,1396027485 +39603,110136,forest,1396027481 +39603,110233,France,1396340396 +39603,110233,French,1396340396 +39603,110233,French Film,1396340397 +39603,110233,gay,1396340456 +39603,110233,Gay Lead Character,1396340456 +39603,110233,male,1396340412 +39603,110233,Male Full Frontal Nudity,1396340412 +39603,110233,male nudity,1396340412 +39603,110233,male prostitute,1396340412 +39603,110233,nudity,1396340437 +39603,110233,Nudity (Full Frontal - Notable),1396340431 +39603,110233,Nudity (Full Frontal),1396340431 +39603,110233,Nudity (Rear),1396340431 +39603,110233,Nudity (Topless),1396340431 +39603,110233,penis,1396340448 +39603,110233,pornography,1396353641 +39603,110235,anal sex,1396340680 +39603,110235,gay,1396340593 +39603,110235,Gay Interest,1396340620 +39603,110235,Gay Lead Character,1396340593 +39603,110235,gay relationship,1396340666 +39603,110235,male,1396340610 +39603,110235,Male Full Frontal Nudity,1396340611 +39603,110235,male nudity,1396340610 +39603,110235,male prostitute,1396340610 +39603,110235,Nudity (Full Frontal),1396340633 +39603,110235,penis,1396340639 +39603,110235,prostitution,1396340651 +39603,110273,André Dussollier,1396453316 +39603,110273,Andre Dussolier,1399466454 +39603,110273,Burghart KlauÃ?ner,1396453388 +39603,110273,France,1396453309 +39603,110273,French,1396453309 +39603,110273,French Film,1396453309 +39603,110273,Niels Arestrup,1396453388 +39603,110273,Robert Stadlober,1396453401 +39603,110276,AndrÃ?© Dussollier,1396454199 +39603,110276,France,1396454199 +39603,110276,French,1396454199 +39603,110276,French Film,1396454199 +39603,110278,AndrÃ?© Dussollier,1396454327 +39603,110278,France,1396454312 +39603,110278,French,1396454312 +39603,110278,French Film,1396454312 +39603,110314,Daniel Auteuil,1396541301 +39603,110314,France,1396541295 +39603,110314,French,1396541295 +39603,110314,French Film,1396541295 +39603,110316,based on a play,1396599393 +39603,110316,Daniel Auteuil,1396599411 +39603,110316,France,1396599402 +39603,110316,French,1396599402 +39603,110316,French Film,1396599402 +39603,110377,France,1396860180 +39603,110377,French,1396860180 +39603,110377,French Film,1396860180 +39603,110433,finance,1397059089 +39603,110433,financial crisis,1397059089 +39603,110973,comedy,1399114536 +39603,110973,France,1399114536 +39603,110973,French,1399114536 +39603,110973,French Film,1399114536 +39603,110973,Valerie Lemercier,1399114536 +39603,112070,ghosts,1402410558 +39603,112070,Hollywood,1402410558 +39603,112181,France,1402827533 +39603,112181,French,1402827533 +39603,112181,French Film,1402827533 +39603,112181,not funny,1402827552 +39603,112181,piano,1402827544 +39603,112181,Pierre Arditi,1402827533 +39603,112556,Psychopathy,1421678717 +39603,116797,Alan Turing,1423126836 +39603,116797,code breaking,1423126829 +39603,116797,cryptography,1423126823 +39603,116797,historical inaccuracy,1423126847 +39603,116797,history,1423126833 +39603,116797,homosexuality,1423126826 +39603,116797,informatics,1423126840 +39603,116797,mathematics,1423126831 +39617,637,assassin,1256239701 +39617,637,Funny as hell,1256239701 +39617,637,seen more than once,1256239701 +39641,260,sci-fi,1431302954 +39641,260,Star Wars,1431302941 +39647,784,Ben Stiller,1360517188 +39647,784,boring,1360517177 +39647,784,Jack Black,1360517185 +39647,784,Jim Carrey,1360517173 +39647,784,not funny,1360517170 +39647,1206,classic,1360510266 +39647,1206,cult film,1360510251 +39647,1206,disturbing,1360510255 +39647,1206,psychedelic,1360510263 +39647,1206,satire,1360510253 +39647,1206,Stanley Kubrick,1360510257 +39647,1206,Surrealism,1360510259 +39647,2336,Biography,1360510620 +39647,2336,British,1360510613 +39647,2336,England,1360510610 +39647,2336,historical,1360510608 +39647,2336,monarchy,1360510617 +39647,2501,aeronautics,1360518823 +39647,2501,space program,1360518825 +39647,2501,True Story,1360518817 +39647,2908,rape,1360517458 +39647,2908,Sexualized violence,1360517452 +39647,2908,true story,1360517456 +39647,3556,based on a book,1360516486 +39647,3556,directorial debut,1360516483 +39647,3556,dreamlike,1360516481 +39647,3556,high school,1360516477 +39647,3556,Kirsten Dunst,1360516452 +39647,3556,lyrical,1360516470 +39647,3556,reflective,1360516472 +39647,3556,suicide,1360516474 +39647,3556,visually appealing,1360516467 +39647,3948,comedy,1360516778 +39647,3948,funny moments,1360516765 +39647,3967,ballet,1360516606 +39647,3967,british,1360516608 +39647,3967,dance,1360516625 +39647,3967,england,1360516615 +39647,3967,father-son relationship,1360516623 +39647,3967,heartwarming,1360516620 +39647,3967,self discovery,1360516618 +39647,4720,twist ending,1360518867 +39647,4878,cult film,1360510194 +39647,4878,high school,1360510205 +39647,4878,imdb top 250,1360510199 +39647,4878,mental illness,1360510196 +39647,4878,philosophy,1360510215 +39647,4878,social commentary,1360510219 +39647,4878,stylized,1360510212 +39647,4878,superhero,1360510209 +39647,4878,surreal,1360510189 +39647,4878,thought-provoking,1360510182 +39647,4878,twist ending,1360510208 +39647,4967,No Happy End,1360518002 +39647,4967,want to see again,1360518010 +39647,4967,war,1360517997 +39647,6552,Audrey Tautou,1360517842 +39647,6552,England,1360517828 +39647,6552,illegal immigration,1360517831 +39647,6552,London,1360517815 +39647,6773,French,1360516529 +39647,7139,IMMIGRANT LIFE,1360518050 +39647,7158,Depressing,1366911103 +39647,7158,heartbreaking,1366911105 +39647,7158,Jennifer Connelly,1366911130 +39647,7158,plot,1366911134 +39647,8464,documentary,1360780162 +39647,8873,adventure,1360510683 +39647,8873,Che Guevara,1360510673 +39647,8873,South America,1360510676 +39647,8873,Spanish,1360510679 +39647,8873,true story,1360510681 +39647,27721,Audrey Tautou,1360510562 +39647,27721,Foreign,1360510570 +39647,48043,alternate reality,1360510137 +39647,48043,atmospheric,1360510118 +39647,48043,death,1360510139 +39647,48043,dreamlike,1360510121 +39647,48043,emotional,1360510128 +39647,48043,multiple storylines,1360510131 +39647,48043,Music,1360510116 +39647,48043,religion,1360510122 +39647,48043,thought-provoking,1360510111 +39647,48043,visually appealing,1363637322 +39647,48394,fairy tale,1360510525 +39647,48394,stylized,1360510527 +39647,48394,surreal,1360510529 +39647,48394,twist ending,1360510531 +39647,51662,stylized,1360518679 +39647,59387,beautiful,1360510451 +39647,59387,imagination,1360510480 +39647,59387,suicide,1360510475 +39647,59387,surreal,1360510464 +39647,59387,visually appealing,1360510463 +39647,59387,visually stunning,1360510462 +39647,72226,stop motion,1360518918 +39647,87869,actually funny,1360517243 +39647,89047,character driven,1360518215 +39647,89047,excellent acting,1360518217 +39647,90524,cheesy bad,1360517022 +39647,90524,product placement,1360517035 +39647,90524,unrealistic fighting,1360517033 +39647,98809,stupid fight scenes,1361977403 +39647,99114,Great performances,1361180274 +39647,99114,Leonardo DiCaprio,1361180272 +39647,99114,Quentin Tarantino,1361180267 +39647,99114,Revenge,1361180283 +39647,99114,Samuel L. Jackson,1361180270 +39647,99114,violence,1361180280 +39677,6377,Pixar,1210251506 +39681,235,Johnny Depp,1284151425 +39681,235,Tim Burton,1284151429 +39681,318,based on book,1278354925 +39681,318,classic,1278354941 +39681,318,prison escape,1278354946 +39681,1617,conspiracy,1284067429 +39694,356,tom hanks,1421051105 +39694,103249,Brad Pitt,1421051008 +39694,103249,zombies,1421051001 +39755,47,spannend,1138702515 +39755,1391,funny,1139913370 +39755,1921,math,1138701041 +39755,3751,funny,1139913290 +39755,4226,anders,1138703633 +39755,4995,math,1138701092 +39755,5995,sad,1139913498 +39755,39183,sad,1139913221 +39755,40339,funny,1139913283 +39755,41573,funny,1139913191 +39772,1234,Classic,1140536851 +39772,1380,crap,1140536842 +39772,8914,time travel,1145158479 +39786,260,#fantasy,1438631479 +39786,260,#science,1438631493 +39821,32,time travel,1271348880 +39821,903,switching places,1286710768 +39821,903,twist ending,1286710809 +39821,910,comedy,1286710889 +39821,910,Marilyn Monroe,1286710909 +39821,910,organized crime,1286710920 +39821,910,Quotable,1286710929 +39821,2692,alternate endings,1286710993 +39821,2692,existentialism,1286710997 +39821,2692,Franka Potente,1286711016 +39821,2692,nonlinear,1286711013 +39821,2692,notable soundtrack,1286711027 +39821,2692,surreal,1286711030 +39821,2692,time loop,1286711005 +39821,3503,enigmatic,1286710951 +39821,3503,open ending,1286710972 +39821,3569,explicit sex,1286711336 +39821,3569,jump cuts,1286711356 +39821,3569,Lars von Trier,1286711296 +39821,3569,love story,1286711318 +39821,3569,mental disability,1286711340 +39821,3569,social commentary,1286711301 +39821,3949,disturbing,1286711046 +39821,3949,loneliness,1286711044 +39821,3949,psychology,1286711040 +39821,4878,alternate timeline,1286711376 +39821,4878,atmospheric,1286711374 +39821,4878,cult film,1286711404 +39821,4878,imdb top 250,1286711418 +39821,4878,psychology,1286711372 +39821,4878,teen,1286711386 +39821,5618,alternate reality,1286710837 +39821,5618,anime,1286710848 +39821,5618,dreamlike,1286710868 +39821,5618,hallucinatory,1286710873 +39821,5618,Hayao Miyazaki,1286710841 +39821,5971,Hayao Miyazaki,1286711143 +39821,5971,visually appealing,1286711158 +39821,7317,Michelle Trachtenberg,1271832300 +39821,33171,Joseph Gordon-Levitt,1286711105 +39821,33171,PROSTITUTES,1286711123 +39821,36363,cult film,1286711216 +39821,36363,culture clash,1286711214 +39821,36363,Not available from Netflix,1286711210 +39821,47610,Christian Bale,1307996280 +39821,47610,happy ending,1307996259 +39821,47610,twist ending,1307996256 +39821,48780,Christian Bale,1307996319 +39821,48780,twist ending,1307996321 +39821,55901,erlend's DVDs,1286710686 +39821,55901,library,1286710682 +39821,55901,surreal,1286710691 +39821,60069,artificial intelligence,1286710715 +39821,60069,inspirational,1286710724 +39821,60069,love,1286710749 +39821,60069,Post apocalyptic,1286710706 +39821,60069,romance,1286710747 +39821,60069,Sci-Fi,1286710745 +39821,68157,assassination,1308059588 +39821,68157,Brad Pitt,1308059587 +39821,68157,violence,1308059583 +39821,69134,cinematography,1286711480 +39821,69134,violence,1286711489 +39821,69134,Willem Dafoe,1286711493 +39821,69951,imagination,1286711252 +39821,72998,predictable,1271860587 +39821,72998,visuals,1271860592 +39821,79357,butterfly effect,1286711168 +39821,79357,Diane Kruger,1286711187 +39821,79357,juno temple,1286711182 +39821,79357,love affair,1286711196 +39821,79357,nonlinear,1286711169 +39821,79357,Sarah Polley,1286711191 +39824,33750,civil war,1299352675 +39887,260,sci-fi,1440266475 +39887,260,space adventure,1440266489 +39887,79132,alternate reality,1440267746 +39899,48516,suspense,1442803036 +39903,109487,looong movie,1435262935 +39903,109487,wormhole,1435263015 +39905,260,Harrison Ford,1430460342 +39905,260,Space,1430460339 +39905,356,1970s,1430461087 +39905,356,historical,1430461087 +39905,356,tom hanks,1430461087 +39909,260,Science Fiction,1431626956 +39909,260,Star Wars,1431626922 +39933,1292,Autism,1439931811 +39941,356,great story,1429030988 +39941,356,tom hanks,1429030977 +39941,130634,car chase,1429031152 +39941,130634,explosions,1429031152 +39941,130634,unrealistic,1429031152 +39945,260,future,1431568682 +39945,260,masterpiece,1431568688 +39945,260,sci-fi,1431568679 +39976,260,I fell asleep,1439153936 +39976,260,Yawnfest,1439153913 +40001,1,adventure,1301513212 +40001,1,children,1301513206 +40001,1,family,1301513201 +40001,1,funny,1301513196 +40001,32,adventure,1301511691 +40001,32,post-apocalyptic,1301511682 +40001,32,psychology,1301511695 +40001,32,time travel,1301511675 +40001,32,twist ending,1301511679 +40001,32,violence,1301511700 +40001,110,drama,1301511567 +40001,110,historical,1301511564 +40001,110,inspirational,1301511644 +40001,110,revenge,1301511635 +40001,306,atmospheric,1301507849 +40001,307,atmospheric,1301506332 +40001,307,Beauty,1301506330 +40001,307,HAUNTED BY THE PAST,1301506352 +40001,307,meditative,1301506338 +40001,307,music,1301506342 +40001,500,Robin Williams,1301509669 +40001,587,bittersweet,1301510779 +40001,587,Fantasy,1301510785 +40001,587,ghosts,1301510791 +40001,587,ghosts/afterlife,1301510794 +40001,587,romance,1301510808 +40001,653,adventure,1301511068 +40001,912,atmospheric,1301508144 +40001,912,bittersweet,1301508147 +40001,912,drama,1301508151 +40001,912,romance,1301508169 +40001,912,sentimental,1301508167 +40001,922,satirical,1301513378 +40001,1035,family,1301513593 +40001,1035,music,1301513576 +40001,1035,musical,1301513578 +40001,1097,family,1301507916 +40001,1097,fantasy,1301507922 +40001,1193,Oscar (Best Actor),1301514088 +40001,1193,psychological,1301514083 +40001,1193,psychology,1301514080 +40001,1216,beautiful scenery,1301508988 +40001,1216,dolphins,1301508993 +40001,1216,love story,1301508999 +40001,1216,water,1301509020 +40001,1237,atmospheric,1301509137 +40001,1237,god,1301509148 +40001,1237,religion,1301509143 +40001,1246,bittersweet,1301507892 +40001,1246,drama,1301507898 +40001,1246,friendship,1301507901 +40001,1246,inspirational,1301507888 +40001,1246,philosophy,1301507877 +40001,1246,Robin Williams,1301507880 +40001,1281,anti-war,1301510627 +40001,1281,Nazi Germany,1301510644 +40001,1281,Nazis,1301510636 +40001,1282,classical music,1301507639 +40001,1282,surreal,1301507646 +40001,1573,action,1301510917 +40001,1835,angel,1301508281 +40001,1859,dialogue,1301513233 +40001,1859,HAUNTED BY THE PAST,1301513282 +40001,1859,life,1301513274 +40001,1859,meditative,1301513245 +40001,2297,afterlife,1301508882 +40001,2297,ghosts/afterlife,1301508898 +40001,2297,heaven and hell,1301508891 +40001,2297,philosophy,1301508885 +40001,2297,surreal,1301508882 +40001,3114,funny,1301513064 +40001,3159,classical music,1301507666 +40001,3198,escape,1301514009 +40001,3307,beautiful,1301504867 +40001,3307,Charlie Chaplin,1301504718 +40001,3307,sweet,1301504732 +40001,3310,charity,1301506974 +40001,3310,Dream Sequence,1301506980 +40001,3462,chaplin,1301506763 +40001,3503,atmospheric,1301513480 +40001,3503,dreamlike,1301513534 +40001,3503,meditative,1301513516 +40001,4023,alternative life,1301507398 +40001,4023,life,1301507409 +40001,4023,romance,1301507414 +40001,4226,dreamlike,1301510476 +40001,4226,nonlinear,1301510462 +40001,4226,psychological,1301510463 +40001,4226,psychology,1301510465 +40001,4226,twist ending,1301510470 +40001,4296,bittersweet,1301510445 +40001,4370,Bittersweet,1301508918 +40001,4370,emotional,1301508936 +40001,4874,atmospheric,1301505056 +40001,4874,fantasy,1301505055 +40001,4874,philosophical,1301505775 +40001,4973,atmospheric,1301508408 +40001,4973,beautifully filmed,1301508417 +40001,4973,comedy,1301508416 +40001,4973,great soundtrack,1301508417 +40001,4973,notable soundtrack,1301508422 +40001,4973,surreal,1301508496 +40001,5389,Memorable,1301506187 +40001,6270,childhood,1301504642 +40001,6270,dreamlike,1301504635 +40001,6270,dreams,1301504633 +40001,6270,meditative,1301504672 +40001,6299,birds,1301506541 +40001,6299,Good Documentary,1301506543 +40001,6299,nature,1301506551 +40001,6985,mission from God,1301506697 +40001,6985,religion,1301506702 +40001,7162,based on a book,1301511310 +40001,7162,Jude Law,1301511205 +40001,7162,love story,1301511317 +40001,7162,Romance,1301511210 +40001,7254,alternate reality,1301511421 +40001,7254,child abuse,1301511424 +40001,7254,Mystery,1301511427 +40001,7254,psychology,1301511443 +40001,7254,time travel,1301511438 +40001,8970,bittersweet,1301507180 +40001,8970,drama,1301507168 +40001,8970,fairy tale,1301507210 +40001,8970,fantasy,1301507182 +40001,8970,Heartwarming,1301507186 +40001,8970,romance,1301507190 +40001,8970,true story,1301507196 +40001,26370,Islam,1301505660 +40001,26370,religion,1301505653 +40001,32017,children,1301509552 +40001,34072,beautiful,1301505810 +40001,34072,beautifully filmed,1301505844 +40001,34072,birds,1301505847 +40001,34072,Family,1301505900 +40001,34072,Heartwarming,1301505859 +40001,34072,scenic,1301505893 +40001,34072,survival,1301505905 +40001,45517,children,1301511376 +40001,45517,comedy,1301511378 +40001,45517,emotional,1301511384 +40001,45517,kids and family,1301511386 +40001,46322,friendship,1301510985 +40001,46322,PG-13,1301511004 +40001,46322,PG13,1301511007 +40001,46322,revenge,1301510976 +40001,48394,atmospheric,1301504578 +40001,48394,fairy tale,1301504536 +40001,48394,imagination,1301504540 +40001,48394,psychology,1301504606 +40001,48394,surreal,1301504556 +40001,52722,alter ego,1301513433 +40001,55820,suspense,1301506911 +40001,55820,twist ending,1301506892 +40001,55872,inspirational,1301511589 +40001,55872,love of music,1301511597 +40001,55872,music,1301511591 +40001,55872,power of music,1301511598 +40001,58559,psychology,1301511162 +40001,63082,nonlinear,1301513556 +40001,68954,adventure,1301513042 +40001,68954,friendship,1301513024 +40001,78499,adventure,1301513103 +40001,78499,childhood,1301513109 +40001,78499,children,1301513119 +40001,78499,friendship,1301513148 +40001,78499,visually appealing,1301513126 +40007,296,the best movie ever made. period.,1152974230 +40007,48516,Martin Scorsese,1173278762 +40007,115569,sociopath,1420934105 +40015,2858,Cool but freaky,1155753464 +40052,85774,biography,1318500528 +40055,407,lovecraftian,1146363577 +40091,2010,silent film,1422608826 +40091,7074,Silent,1422703905 +40091,7360,zombies,1422611801 +40091,7728,film noir,1422620182 +40091,8153,art,1422627562 +40091,8153,artist,1422627564 +40091,8153,painter,1422627561 +40091,8153,Van Gogh,1422627567 +40091,8256,Sweden,1422638501 +40091,25744,Satan,1422612297 +40091,25744,Silent,1422612288 +40091,25744,torture,1422612323 +40091,25767,Silent,1422612250 +40091,43832,Neo-silent,1422615443 +40091,49389,Silent,1422703878 +40091,50619,surreal,1422627783 +40091,54196,Neo-silent,1422615524 +40091,57480,Silent,1422703836 +40091,69509,Gang,1423397342 +40091,69509,Long,1423397368 +40091,69509,Master criminals,1423397349 +40091,69509,Paris,1423397353 +40091,69509,Silent,1423397323 +40091,71999,silent,1422623043 +40091,77729,detective,1422611583 +40091,77729,helicopter,1422611589 +40091,77729,murder,1422611577 +40091,77729,police,1422611571 +40091,77729,Stockholm,1422611603 +40091,77729,Swedish,1422611600 +40091,80109,Shakespeare,1422620121 +40091,87415,Silent,1422622033 +40091,89904,Neo-silent,1422615305 +40091,93721,food,1422626204 +40091,93721,sushi,1422626206 +40091,96419,expedition,1422612516 +40091,96419,forest fire,1422612547 +40091,96419,geology,1422612523 +40091,96419,Siberia,1422612532 +40091,96421,silent,1422625893 +40091,100272,Neo-silent,1422615327 +40091,108143,art,1422626256 +40091,108143,painter,1422626255 +40091,108143,painting,1422626259 +40091,114342,relationship drama,1422611513 +40091,114342,skiing,1422611497 +40091,114342,Swedish,1422611482 +40091,120787,Silent,1422637904 +40091,126387,Latvian,1422610970 +40091,126919,black comedy,1422611260 +40091,126919,dark humour,1422611278 +40091,126919,Icelandic,1422611255 +40091,126937,dinosaurs,1422619978 +40091,126937,prehistory,1422619984 +40091,126937,time travel,1422619988 +40091,126951,education,1422622884 +40091,126977,art,1422626103 +40091,126977,artist,1422626110 +40091,126977,painter,1422626275 +40091,126977,painting,1422626108 +40091,127005,stop motion,1422627177 +40091,127019,bicycle,1422637822 +40091,127019,racing,1422637824 +40091,127021,VHS,1422638088 +40092,1060,just broke up with a GF of 3.5 years.,1138008850 +40092,1060,Perfect timing,1138008850 +40093,260,adventure,1431606117 +40093,260,Science Fiction,1431606072 +40093,260,space combat,1431606060 +40093,2167,vampires,1431609417 +40093,3986,futuristic,1434814670 +40093,3986,genetics,1434814667 +40093,3986,science fiction,1434814663 +40093,5445,futuristic,1431715602 +40093,5445,surreal,1431715600 +40093,5445,time travel,1431715616 +40093,6902,life philosophy,1431629890 +40093,6902,self discovery,1431629893 +40093,6902,surreal,1431629924 +40093,7254,horror,1431629340 +40093,7254,psychology,1431629303 +40093,7254,science fiction,1431629284 +40093,7254,time travel,1431629311 +40093,31696,spiritual warfare,1431609536 +40093,41285,senseless,1434849111 +40093,74228,horror,1431713961 +40093,79132,alternate reality,1431629408 +40093,79132,dreams,1431629584 +40093,79132,intellectual,1431629442 +40093,79132,multiple interpretations,1431629575 +40093,79132,science fiction,1431629395 +40093,79132,surreal,1431629609 +40093,79132,thought-provoking,1431629580 +40093,95875,dystopia,1434823621 +40093,95875,future,1434823629 +40093,95875,memory,1434823611 +40093,95875,Sci-fi,1434823615 +40093,95875,science fiction,1434823632 +40093,95875,visually appealing,1434823627 +40093,106642,Science fiction,1431631026 +40093,106642,time travel,1431631006 +40093,106642,TV series,1431631034 +40103,260,blockbuster,1439228650 +40103,260,Original,1439228640 +40129,107,treasure,1368539943 +40129,353,dark hero,1368540027 +40129,380,arnold,1368540073 +40129,485,arnold,1368540073 +40129,589,arnold,1368540073 +40129,592,dark hero,1368540027 +40129,668,bollywood,1368539871 +40129,866,neo-noir,1368540172 +40129,898,screwball comedy,1368540110 +40129,910,screwball comedy,1368540110 +40129,913,noir thriller,1368539967 +40129,1097,stranded,1368539994 +40129,1179,neo-noir,1368540172 +40129,1240,arnold,1368540073 +40129,1248,noir thriller,1368539967 +40129,1291,spielberg,1368540322 +40129,1387,spielberg,1368540323 +40129,1391,mars,1368540007 +40129,1617,neo-noir,1368540172 +40129,1894,stranded,1368539994 +40129,2022,jesus,1368539902 +40129,2028,spielberg,1368540323 +40129,2076,neo-noir,1368540172 +40129,2115,spielberg,1368540323 +40129,2193,dragon,1368540248 +40129,2405,treasure,1368539943 +40129,2916,arnold,1368540073 +40129,3067,screwball comedy,1368540110 +40129,3300,stranded,1368539995 +40129,3566,entirely dialogue,1368540194 +40129,5445,spielberg,1368540322 +40129,6874,dark hero,1368540027 +40129,7013,noir thriller,1368539967 +40129,7318,jesus,1368539902 +40129,7361,short-term memory loss,1368540303 +40129,7386,christian,1368540142 +40129,8529,stranded,1368539994 +40129,63082,editing,1242541081 +40129,63082,nonlinear,1242541037 +40129,63082,screenplay,1242541119 +40129,63113,action,1242541263 +40129,63113,Daniel Craig,1242541215 +40129,63113,Jeffrey Wright,1242541223 +40129,63113,plot,1242541239 +40145,70183,Katherine Heigl,1433868869 +40145,88706,internet,1431072488 +40145,90154,Time paradox,1430471820 +40145,92490,Animated,1430473223 +40145,92490,Barbie,1430473210 +40145,133123,Animated,1430654555 +40145,133123,animation,1431072432 +40145,133123,Barbie,1430654550 +40145,133123,musical,1431072432 +40145,133123,Musicals,1430654559 +40145,133149,animated,1431680340 +40145,133149,barbie,1431680340 +40145,133149,girls,1431680340 +40145,133159,animated,1432291925 +40145,133159,barbie,1432291925 +40145,133159,kids,1432291925 +40145,133177,Danish,1430655556 +40145,133181,danish,1430655642 +40145,133181,Dirch passer,1430655639 +40145,133181,musical,1430655645 +40148,32,time travel,1156714660 +40148,589,apocalypse,1156714678 +40165,260,space action,1444409810 +40165,260,the classic sci fi movie. must see.,1444409790 +40165,60684,Dynamic CGI Action,1444409939 +40165,60684,superhero,1444409942 +40175,65796,Harlock,1453885063 +40175,65796,lejiverse,1453885074 +40175,65796,rintaro,1453885051 +40177,260,classic sci-fi,1439777818 +40177,260,sci-fi,1439777822 +40197,1225,music,1160962046 +40197,2959,violence,1160962027 +40205,2403,messed with the wrong guy,1417301902 +40205,44665,twist ending,1190001353 +40205,71838,antihero,1417301802 +40205,71838,messed with the wrong guy,1417301839 +40205,71838,revenge,1417301793 +40205,71838,vigilante,1417301812 +40208,32,post-apocalyptic,1428092277 +40208,32,sci-fi,1428092283 +40208,32,time travel,1428092279 +40208,236,meg ryan,1428001826 +40208,260,adventure,1427998458 +40208,260,aliens,1427998483 +40208,260,jedi,1427998507 +40208,260,original plot,1427998471 +40208,260,sci-fi,1427998493 +40208,260,space travel,1427998478 +40208,260,starship pilots,1427998461 +40208,339,chemistry between actors,1428001776 +40208,339,Sandra Bullock,1428001768 +40208,357,British,1428068376 +40208,357,Hugh Grant,1428068377 +40208,357,witty,1428068416 +40208,527,overrated,1428069580 +40208,527,simplistic,1428069592 +40208,527,Steven Spielberg,1427998871 +40208,541,artificial intelligence,1428001296 +40208,541,sci-fi,1428001292 +40208,858,melancholy,1427998995 +40208,858,violence,1427999002 +40208,1035,cheesy,1428002499 +40208,1035,oversimplified,1428002524 +40208,1036,thriller,1427999093 +40208,1036,violence,1427999113 +40208,1101,Cheesy,1428001939 +40208,1198,treasure hunt,1427999062 +40208,1233,German,1428230360 +40208,1233,grim,1428230347 +40208,1233,gritty,1428230350 +40208,1281,drags,1428069543 +40208,1281,overrated,1428069551 +40208,1281,simplistic,1428069516 +40208,1500,Minnie Driver,1428515844 +40208,1527,dystopic future,1428067956 +40208,1527,Luc Besson,1428067945 +40208,1527,Milla Jovovich,1428067951 +40208,1527,sci-fi,1428067939 +40208,1527,visually appealing,1428067947 +40208,1541,Meg Ryan,1428001872 +40208,1541,quirky,1428001868 +40208,2671,British,1428068454 +40208,2671,funny,1428068462 +40208,2671,Hugh Grant,1428068456 +40208,2671,Julia Roberts,1428068452 +40208,2805,British,1428069460 +40208,2805,Hugh Grant,1428069465 +40208,2805,mob,1428069470 +40208,2805,twists,1428069462 +40208,3751,aardman,1427999352 +40208,3751,Dreamworks,1427999407 +40208,3751,witty,1427999388 +40208,3751,Yanks vs. Brits,1427999394 +40208,3948,Ben Stiller,1428001450 +40208,3948,comedy,1428001452 +40208,3948,Robert De Niro,1428001445 +40208,3969,inspirational,1428069984 +40208,3969,simplistic,1428069996 +40208,4880,touching,1428069947 +40208,4886,Comedy,1427999451 +40208,4886,funny,1427999462 +40208,4886,Pixar,1427999458 +40208,5218,funny,1427999429 +40208,5303,funny,1428000380 +40208,5303,Meg Ryan,1428000420 +40208,5303,surreal,1428000393 +40208,5303,Tom Hanks,1428000399 +40208,5303,true love,1428000446 +40208,5881,pseudo-intelligent,1428066525 +40208,5881,pseudo-philosophical,1428066522 +40208,5881,space,1428066511 +40208,5881,suicide,1428066518 +40208,5957,funny,1428068169 +40208,5957,great acting,1428068165 +40208,5957,Hugh Grant,1428068130 +40208,5957,Sandra Bullock,1428068129 +40208,6155,battle of the sexes,1428068314 +40208,6155,Kate Hudson,1428068306 +40208,6365,artificial intelligence,1428067367 +40208,6365,drawn out,1428067393 +40208,6365,sci-fi,1428067408 +40208,6377,funny,1427999611 +40208,6377,Pixar,1427999602 +40208,6874,gore,1428230222 +40208,6874,martial arts,1428230149 +40208,6874,meaningless,1428230179 +40208,6874,shallow plot,1428230216 +40208,6874,stylized violence,1428230171 +40208,6874,unnecessary violence,1428230207 +40208,6934,artificial intelligence,1428067699 +40208,6934,conclusion of trilogy,1428067725 +40208,6934,drawn out,1428067662 +40208,6934,martial arts,1428067706 +40208,6934,sci-fi,1428067651 +40208,6934,visually stunning,1428067673 +40208,6942,british,1428068477 +40208,6942,Keira Knightley,1428068481 +40208,7173,Ben Stiller,1428000605 +40208,7173,comedy,1428000607 +40208,7173,funny,1428000650 +40208,7173,jennifer aniston,1428000604 +40208,7173,quirky,1428000636 +40208,7254,alternate reality,1428003403 +40208,7254,flawed,1428003421 +40208,7254,time travel,1428003404 +40208,7437,energetic,1428066587 +40208,7437,funny,1428066611 +40208,7437,great dynamic,1428066665 +40208,7437,hilarious,1428066613 +40208,7437,with a twist,1428067298 +40208,8368,harry potter,1427998673 +40208,8368,Magic,1427998668 +40208,8368,time travel,1427998669 +40208,8368,Wizards,1427998676 +40208,8371,Riddick,1428067505 +40208,8371,sci-fi,1428067507 +40208,8371,shallow plot,1428067533 +40208,8644,artificial intelligence,1428067593 +40208,8644,robots,1428067595 +40208,8644,sci-fi,1428067597 +40208,8644,Will Smith,1428067600 +40208,8961,funny,1428000849 +40208,8961,stylized,1428000844 +40208,27754,friendship,1428438402 +40208,27754,heist,1428438404 +40208,27754,intrigue,1428438398 +40208,31685,funny,1428068283 +40208,31685,Kevin James,1428068277 +40208,31685,story,1428068294 +40208,31685,Will Smith,1428068272 +40208,34405,black comedy,1428178519 +40208,34405,comedy,1428178525 +40208,34405,great dialogue,1428178522 +40208,34405,quirky,1428178513 +40208,34405,sci-fi,1428178502 +40208,34405,space,1428178500 +40208,34405,unlikely hero,1428178548 +40208,35836,steve carell,1428002546 +40208,49286,shallow,1428068960 +40208,49649,fantasy,1428002322 +40208,50954,good story,1428227697 +40208,55267,Emily Blunt,1428067166 +40208,55267,Juliette Binoche,1428067167 +40208,55267,realistic,1428067136 +40208,55267,with a twist,1428067271 +40208,59333,bad acting,1428069200 +40208,59333,Patrick Dempsey,1428069189 +40208,59333,shallow,1428069209 +40208,59985,ironic,1428177614 +40208,59985,Ryan Reynolds,1428177611 +40208,60939,ironic,1428069651 +40208,60939,Kevin Costner,1428069662 +40208,61729,story,1428000529 +40208,61729,surreal,1428000515 +40208,61729,unique,1428000546 +40208,64716,cliche,1428069920 +40208,64716,melancholy,1428069914 +40208,64969,Jim carrey,1428000567 +40208,64969,predictable,1428000583 +40208,66203,Ben Affleck,1428069261 +40208,66203,Jennifer Aniston,1428069264 +40208,66203,superficial,1428069290 +40208,69406,chemistry between actors,1428068212 +40208,69406,funny,1428068229 +40208,69406,Sandra Bullock,1428068208 +40208,70183,comedy,1428001559 +40208,70183,Gerard Butler,1428001553 +40208,70183,good comedy,1428001571 +40208,70183,Katherine Heigl,1428001551 +40208,70183,true story,1428001548 +40208,72378,apocalypse,1428069743 +40208,72378,bad physics,1428069757 +40208,72378,bad science,1428069732 +40208,72378,sci-fi,1428069746 +40208,72378,simplistic,1428069740 +40208,72998,sci-fi,1428352083 +40208,72998,visually stunning,1428352086 +40208,74450,comedy,1428002934 +40208,74530,bad acting,1428002338 +40208,74530,fantasy,1428002335 +40208,75805,breaking taboos,1428001525 +40208,78637,bad sequel,1428002809 +40208,79132,ambiguous ending,1428066177 +40208,79132,mindfuck,1428066145 +40208,79132,sci-fi,1428066122 +40208,79132,surreal,1428066102 +40208,79185,Cameron Diaz,1428069361 +40208,79185,romantic action,1428069403 +40208,79185,spy,1428069364 +40208,79185,Tom Cruise,1428069359 +40208,79185,twists,1428069382 +40208,81784,actors out of character,1428000770 +40208,81784,funny,1428000711 +40208,81784,Harrison Ford,1428000687 +40208,81784,Jeff Goldblum,1428000690 +40208,81784,Rachel McAdams,1428000696 +40208,82009,comeback,1428178209 +40208,82009,Sigourney Weaver,1428178235 +40208,82009,Tim Allen,1428178245 +40208,82009,turning life around,1428178132 +40208,82461,bad acting,1428067462 +40208,82461,bad sequel,1428067483 +40208,82461,daft punk,1428067447 +40208,82461,sci-fi,1428067443 +40208,82461,stylized,1428067467 +40208,82461,virtual reality,1428067450 +40208,84980,dark finnish humor,1428439488 +40208,84980,very finnish,1428439499 +40208,85414,mindfuck,1428066266 +40208,85414,parallel universe,1428066274 +40208,85414,time travel,1428066262 +40208,85565,Ed Westwick,1428177529 +40208,85565,Felicity Jones,1428177490 +40208,85565,overcoming fear,1428177542 +40208,87222,good sequel,1428002777 +40208,87222,kung fu,1428002766 +40208,87522,Julia Roberts,1428178288 +40208,87522,older couple,1428178410 +40208,87522,second chances,1428178271 +40208,87522,Tom Hanks,1428178286 +40208,87522,turning life around,1428178270 +40208,89039,creepy,1428066470 +40208,89039,drags,1428066492 +40208,89039,grungy,1428066451 +40208,89039,Parallels worlds,1428066394 +40208,90405,great idea,1428002647 +40208,90405,plot holes,1428002589 +40208,90405,poorly thought out premise,1428002614 +40208,90405,sci-fi,1428002583 +40208,90405,simplistic,1428002620 +40208,92259,friendship,1428001714 +40208,92259,funny,1428001718 +40208,92259,touching,1428001712 +40208,92314,finnish humor,1428439433 +40208,92335,americanized,1428177374 +40208,92335,beautiful nature,1428177405 +40208,92335,Drew Barrymore,1428177039 +40208,92335,shallow,1428177375 +40208,94953,Jennifer Aniston,1428001214 +40208,94953,modern life story,1428001241 +40208,94953,Paul Rudd,1428001212 +40208,94953,quirky,1428001208 +40208,95875,bad acting,1428067573 +40208,95875,bad remake,1428067575 +40208,95875,Sci-fi,1428067558 +40208,96306,quirky,1428178593 +40208,96306,unlikely hero,1428178594 +40208,96610,gore,1428066197 +40208,96610,original,1428066216 +40208,96610,sci-fi,1428066233 +40208,96610,time travel,1428066199 +40208,97913,funny,1428176673 +40208,97913,plot twist,1428176686 +40208,101864,post-apocalyptic,1428067835 +40208,101864,sci-fi,1428067837 +40208,101864,Tom Cruise,1428067840 +40208,101864,twists & turns,1428067845 +40208,102716,too much,1428002865 +40208,102880,bad acting,1428069805 +40208,102880,good effects,1428069849 +40208,102880,sci-fi,1428069800 +40208,102880,shallow plot,1428069862 +40208,103141,freindship,1428177861 +40208,103228,giant robots,1428068035 +40208,103228,ridiculous,1428068042 +40208,103228,sci-fi,1428068040 +40208,103253,class conflict,1428067757 +40208,103253,cliche characters,1428067778 +40208,103253,Jodie Foster,1428067754 +40208,103253,sci-fi,1428067763 +40208,103253,unnecessary violence,1428067804 +40208,103335,hilarious,1431087311 +40208,104339,Demetri Martin,1428227598 +40208,104339,ironic,1428227611 +40208,104339,Lake Bell,1428227596 +40208,104339,quirky,1428227601 +40208,104339,unlikely hero,1428227600 +40208,104841,bad science,1428065570 +40208,104841,cheesy,1428065586 +40208,104841,drawn out,1428065600 +40208,104841,visually appealing,1428065606 +40208,104906,bad acting,1428176954 +40208,104906,interesting idea,1428176945 +40208,104906,shallow,1428176966 +40208,105211,mature cuple,1428001370 +40208,105213,good idea spoilt by porn,1428003042 +40208,105213,pornography,1428002993 +40208,105213,pornography's influence,1428003008 +40208,105213,social commentary,1428003004 +40208,106918,Ben Stiller,1428000331 +40208,106918,growth,1428000317 +40208,106918,inspirational,1428000323 +40208,111443,comeback,1428178084 +40208,111443,cooking,1428178074 +40208,111443,feel good movie,1428178063 +40208,111759,aliens,1427997869 +40208,111759,original plot,1427997859 +40208,111759,sci-fi,1427997854 +40208,111759,time travel,1427997848 +40208,111759,Tom Cruise,1427997890 +40208,111759,war,1427997878 +40208,112175,authentic,1427999852 +40208,112175,good sequel,1427999874 +40208,112175,good story,1427999822 +40208,112749,Diane Keaton,1428176855 +40208,112749,ironic,1428176897 +40208,112749,Michael Douglas,1428176868 +40208,112749,older couple,1428176877 +40208,112749,second chances,1428176887 +40208,112852,fantasy,1428180586 +40208,112852,friendship,1428180621 +40208,112852,sci-fi,1428180584 +40208,112852,space,1428180577 +40208,112852,surreal,1428180600 +40208,112852,unlikely hero,1428180602 +40208,116797,americanized movie,1427998361 +40208,116797,good acting,1427998361 +40208,116797,hisorically inaccurate,1427998361 +40208,118696,not true to book,1428000922 +40208,118696,unnecessary violence,1428000908 +40208,129337,funny,1428229045 +40208,129337,german,1428229036 +40208,129337,laugh about the past,1428229071 +40208,131822,funny,1428606793 +40208,131822,german,1428606793 +40208,131822,urban,1428606793 +40208,131824,being a man,1428228909 +40208,131824,friendship,1428228927 +40208,131824,funny,1428228916 +40208,131824,german,1428228911 +40208,131920,good acting,1431087085 +40208,131920,great acting,1429810687 +40208,131920,quirky,1431087085 +40208,131920,unlikely heros,1431087085 +40216,318,hope,1450991318 +40216,318,imdb top 250,1450991333 +40216,318,inspirational,1450991308 +40216,356,bittersweet,1450989603 +40216,1682,philosophy,1449598635 +40216,4022,Tom Hanks,1450013724 +40216,47099,based on a true story,1450347441 +40216,47099,inspirational,1450347432 +40216,47099,Motivation,1450347458 +40216,47099,true story,1450347437 +40216,47610,Edward Norton,1450988616 +40216,48780,complicated,1450989197 +40216,48780,mystery,1450989204 +40216,64716,melancholy,1451890938 +40216,68554,Tom Hanks,1450991148 +40216,71899,dark comedy,1449598690 +40216,71899,philosophical,1449598737 +40216,105504,true story,1452608548 +40216,106438,based on a true story,1450013510 +40216,134853,creative,1452970910 +40216,134853,emotions,1452970917 +40216,134853,imaginative,1452970934 +40216,134853,psychology,1452970805 +40234,4226,black and white,1448374167 +40234,4226,mystery,1448374151 +40234,4226,nonlinear,1448374153 +40234,4226,twist ending,1448374156 +40256,260,Overrated,1436877232 +40269,115713,artificial intelligence,1436758439 +40269,115713,sci-fi,1436758442 +40269,115713,thought provoking,1436758445 +40316,1242,Fucked up,1298473396 +40320,260,adventure,1439315445 +40320,260,great story,1439315464 +40320,260,sci-fi,1439315437 +40327,40732,too scary,1435556254 +40327,64716,cry,1435557857 +40327,95449,surprisingly serious,1435557704 +40329,50,Kevin Spacey,1175977800 +40329,194,Harvey Keitel,1173396087 +40329,235,Johnny Depp,1173708068 +40329,235,Tim Burton,1173708034 +40329,296,Quentin Tarantino,1173395940 +40329,337,Johnny Depp,1173707943 +40329,356,Tom Hanks,1173708487 +40329,508,Tom Hanks,1173708463 +40329,509,Harvey Keitel,1173707462 +40329,509,Holly Hunter,1173707455 +40329,509,Jane Campion,1173395631 +40329,1059,Baz Luhrmann,1173395904 +40329,1183,Anthony Minghella,1173395563 +40329,1183,Oscar (Best Cinematography),1173396055 +40329,1466,Johnny Depp,1173707975 +40329,1635,Ang Lee,1173707555 +40329,1884,Johnny Depp,1173707984 +40329,1884,Terry Gilliam,1173707987 +40329,1921,Darren Aronofsky,1173707408 +40329,2291,Johnny Depp,1173708042 +40329,2291,Tim Burton,1173395654 +40329,2858,Kevin Spacey,1173396072 +40329,2858,Sam Mendes,1173395719 +40329,3081,Johnny Depp,1173708061 +40329,3081,Tim Burton,1173708052 +40329,3147,Tom Hanks,1173708494 +40329,3160,Paul Thomas Anderson,1173395624 +40329,3176,Anthony Minghella,1173395528 +40329,3176,Jude Law,1173396102 +40329,3176,Matt Damon,1173396102 +40329,3355,Arturo Perez-Reverte,1173708176 +40329,3355,Johnny Depp,1173708082 +40329,3556,Sofia Coppola,1173395914 +40329,3949,Darren Aronofsky,1173395782 +40329,3996,Ang Lee,1173707568 +40329,4022,Tom Hanks,1173708474 +40329,4235,Alejandro Gonzalez Inarritu,1173707685 +40329,4865,Johnny Depp,1173708077 +40329,4993,Peter Jackson,1173395594 +40329,5464,Jude Law,1173708271 +40329,5464,Oscar (Best Cinematography),1173395201 +40329,5464,Sam Mendes,1173395638 +40329,5464,Tom Hanks,1173396025 +40329,5669,Michael Moore,1173395858 +40329,5952,Peter Jackson,1173395764 +40329,6711,Bill Murray,1173396041 +40329,6711,Sofia Coppola,1173395606 +40329,6870,Sean Penn,1173708385 +40329,6953,Alejandro Gonzalez Inarritu,1173395890 +40329,6953,Sean Penn,1173707718 +40329,7162,Anthony Minghella,1173707846 +40329,7162,Jude Law,1173707846 +40329,7371,Lars Von Trier,1173395848 +40329,7438,Quentin Tarantino,1173395826 +40329,8622,Michael Moore,1173395577 +40329,8622,Politics,1173395115 +40329,8784,Zach Braff,1173395840 +40329,8910,Jude Law,1173707879 +40329,8948,Jude Law,1173707892 +40329,8948,Sienna Miller,1173707899 +40329,8970,Johnny Depp,1173708050 +40329,27266,Wong Kar Wai,1173707203 +40329,27706,Jude Law,1173707860 +40329,27821,Sean Penn,1173708377 +40329,30707,Clint Eastwood,1173395745 +40329,30793,Johnny Depp,1173708004 +40329,30793,Tim Burton,1173708004 +40329,30812,Martin Scorsese,1173707871 +40329,34437,Bill Murray,1173395992 +40329,39183,Ang Lee,1173395660 +40329,45950,Al Gore,1173395585 +40329,46723,Alejandro Gonzalez Inarritu,1173395705 +40329,48385,Sacha Baron Cohen,1173395872 +40362,1272,Leadership,1448918659 +40362,2728,Heroism,1448918581 +40362,3578,Bravery,1448918532 +40362,7143,Action,1448918437 +40400,318,inspirational,1241242101 +40400,318,Morgan Freeman,1241242105 +40400,318,Tim Robbins,1241242084 +40400,506,stylized,1241246685 +40400,592,atmospheric,1241242030 +40400,592,Jack Nicholson,1241242020 +40400,592,stylized,1241242026 +40400,823,beach,1241245490 +40400,823,holiday,1241245459 +40400,823,Six Moral Tales,1241245437 +40400,1193,Jack Nicholson,1241242123 +40400,1208,Oscar (Best Cinematography),1241642708 +40400,1208,surreal,1241642713 +40400,3067,campy,1241241122 +40400,3067,Carmen Maura,1241241118 +40400,4272,made-up language,1246252146 +40400,4272,nonsensical,1246252156 +40400,4272,stylized,1246252126 +40400,4727,silly title,1257932977 +40400,6123,film essay,1241246364 +40400,6366,ballet,1241240939 +40400,6660,Jack Cardiff,1241241002 +40400,6660,technicolor,1241245904 +40400,7164,Neverland,1241243107 +40400,8338,Jack Cardiff,1241245544 +40400,8338,Oscar (Best Cinematography),1241245772 +40400,8338,stylized,1241245579 +40400,8338,technicolor,1241245814 +40400,8477,reference to Vertigo,1241246350 +40400,8917,stupid,1241243210 +40400,26208,Clermont-Ferrand,1241241417 +40400,26208,dialogue driven,1241241472 +40400,26208,Six Moral Tales,1241241451 +40400,26225,Six Moral Tales,1241245401 +40400,27031,experimental,1264315496 +40400,27031,grating soundtrack,1264315544 +40400,27031,one location,1264315483 +40400,27031,structural film,1264315601 +40400,27031,zoom,1264315561 +40400,31188,heresy,1241241817 +40400,31188,multiple storylines,1241241844 +40400,31188,religion,1241241805 +40400,31826,autobiographical,1298092872 +40400,32316,technicolor,1241245925 +40400,32892,Amazing Cinematography,1242194170 +40400,32892,child actor,1242194310 +40400,32892,Dreams,1242194176 +40400,32892,World War II,1242194200 +40400,33072,film essay,1241246403 +40400,39659,allegory,1246250582 +40400,39659,stylized,1246250582 +40400,39886,stilted,1258874818 +40400,47152,childhood,1245477077 +40400,47152,Franco's Spain,1245477087 +40400,47152,imaginary world,1245477098 +40400,47721,childhood,1241241321 +40400,47721,lighthearted,1241241321 +40400,47721,Paris,1241241286 +40400,50594,Czech,1241241890 +40400,50594,hedonist,1241241903 +40400,50594,shock ending,1241241924 +40400,50594,surreal,1241241871 +40400,50909,anti-discrimination,1245734742 +40400,50909,fable,1245734742 +40400,50909,Harry Nilsson,1245734742 +40400,50909,psychedelic,1245734742 +40400,51044,beatles,1243315032 +40400,51044,psycodelic,1243315027 +40400,55369,confessional,1293405949 +40400,60189,amnesia,1241241573 +40400,60189,black and white,1241241601 +40400,60189,historically inaccurate,1241241649 +40400,60189,stylized,1241241601 +40400,60189,supernatural,1241241632 +40400,60189,war,1241241615 +40400,60189,weird,1241241605 +40400,64278,film clips,1241241783 +40400,64278,Film Theory & Criticism,1241241717 +40400,64278,psychoanalysis,1241241679 +40400,64278,Zizek,1241241729 +40400,67665,Canada,1241642967 +40400,67665,concert,1241642975 +40400,67665,documentary,1241642900 +40400,67665,fiasco,1241642991 +40400,67665,middle age,1241642938 +40400,67665,music business,1241642889 +40400,67665,sad,1241642908 +40400,67665,satirical,1241642894 +40400,67665,Spinal Tap influence,1241643015 +40400,67665,thrash metal,1241642844 +40400,67665,touring,1241642981 +40400,70295,autobiographical,1261932907 +40400,70948,1990s,1296529499 +40400,70948,architecture,1296529483 +40400,70948,Conservative Party,1296529518 +40400,70948,lgbt,1296529470 +40400,70948,meditative,1296529353 +40400,70948,part of trilogy,1296529597 +40400,70948,political,1296529611 +40400,70948,reflective,1296529381 +40400,70948,Walter Benjamin,1296529461 +40400,71472,insects,1254553957 +40400,71472,stop-motion,1254553957 +40400,71745,fantasy world,1255758963 +40400,71745,handheld cameras,1255758911 +40400,71745,Mother Son Relationship,1255758963 +40400,71745,stylized,1255758882 +40400,71745,temper tantrums,1255758963 +40400,72156,invocation of trees,1257932811 +40400,72156,journey home,1257932835 +40400,72156,mad scientist,1257932843 +40400,72156,ostrich farm,1257932881 +40400,72156,silly title,1257932894 +40400,72156,stylized,1257932752 +40400,72226,hipster-oriented,1259637256 +40400,72226,stop motion,1259637236 +40400,72405,dark comedy,1259131035 +40400,72405,hallucination,1259131051 +40400,72405,iguana,1259131063 +40400,72653,experimental,1259637407 +40400,72653,non-narrative,1259637424 +40400,74791,stop motion,1270539136 +40400,74791,surreal,1270539161 +40400,74791,whimsical,1270539147 +40409,5064,Falsely Accused,1443466295 +40441,260,EPIC,1434887698 +40454,1,villian hurts toys,1216681687 +40454,32,my favorite reviewers disliked this film: that's when I started to trust them less,1189025433 +40454,47,suitcase of light,1216077725 +40454,57,lovable,1215554653 +40454,190,interesting effort,1189116291 +40454,296,films that shouldn't be edited,1189812840 +40454,296,suitcase of light,1216077751 +40454,337,thankfully uncorny,1191698327 +40454,356,a mess - but a kinda cool mess,1187571809 +40454,358,eh - took me two watches to kinda like it,1190925105 +40454,373,guy who did Last Seduction,1187341894 +40454,589,Schwarzenneger character now controlled by good,1215996311 +40454,592,Jack Nicholson as the Joker,1216902375 +40454,628,making everyone think you're innocent,1189354457 +40454,778,made me feel like I'm not doing nothing - and then the film's over (so quick),1189643203 +40454,778,naming Bond movies during the end credits,1189643203 +40454,912,filmed play who's script was made up on the spot - and it's strangely cinematic,1189963373 +40454,919,King Vidor had something to do with this film,1189025272 +40454,919,wild at heart,1189025229 +40454,922,knowledge of end at beginning,1216077276 +40454,924,apes portrayed as human-precursers,1216439770 +40454,924,fast-forwarding overlong beginnings,1216439770 +40454,931,think of the acting...,1189118201 +40454,1183,no films that have been similarly rated,1215758087 +40454,1240,evil Schwarzenegger character,1215996259 +40454,1245,damn incredible,1187341489 +40454,1245,funny in that Barton Fink way,1187341489 +40454,1285,reason to love film,1215554377 +40454,1298,need to watch whole thing,1187341423 +40454,1305,to leave a kid alone,1189727485 +40454,1380,beauty-school dropout,1215997866 +40454,1416,comes up short I guess,1187341529 +40454,1464,used to not like this,1187342111 +40454,1597,I think there was one really good joke or two,1187557960 +40454,1597,if only Gibson was depressed enough to be just a little smarter than this...,1187557886 +40454,1617,"director of ""8 Mile""",1190434726 +40454,1625,bore,1215997839 +40454,1644,overshown,1215920876 +40454,1682,director overseeing in sky and moon,1215996149 +40454,1883,exceptionally promises,1187341143 +40454,2117,cool and thoughtful mood but still should read book,1187342351 +40454,2297,heaven and hell,1215995883 +40454,2338,white guy with Jamaican/Caribbean accent,1215997617 +40454,2396,how'd they make this so funny?,1189118283 +40454,2431,sometimes not realistic enough,1187341419 +40454,2431,underrated,1187341419 +40454,2435,great script greatly acted,1215555378 +40454,2500,Julie Benz,1215555962 +40454,2500,popular high school girls with very long legs,1215997218 +40454,2542,is it 5/5-worthy?,1188659623 +40454,2542,probably deserves at least as much as Shallow Grave...,1188659723 +40454,2571,"don't trust those who say ""this flick isn't real""",1216681036 +40454,2572,films that shouldn't be edited,1189812721 +40454,2585,cool coincidences,1189727621 +40454,2700,war,1216077339 +40454,2762,the newest version - which edited the ending - is the best!,1188659068 +40454,2790,babyish ending,1215552443 +40454,2836,main character doesn't masturbate,1215998006 +40454,2841,pretty cool,1187341697 +40454,2841,some seemingly unimportant bits,1187341697 +40454,2959,gettin' your pitt out of the head,1189643965 +40454,3037,my god is this good!,1187341773 +40454,3052,proof of Kevin Smith's skill with dialogue,1190806100 +40454,3147,don't you love it when it's the right length?,1189026659 +40454,3285,not one boring mistake,1189643683 +40454,3355,Polanski + Depp make something of cool interest,1187342299 +40454,3418,police or flight?,1189802771 +40454,3720,wow - so much better than Constant Gardener...,1189370174 +40454,3785,Scream's original title,1216077998 +40454,3862,5+ out of 5,1189117587 +40454,3952,no less than a 4.5,1189967269 +40454,3999,don't you love it when it's at least done pretty well?,1187342436 +40454,3999,people say you need to have liked mountain-climbing films to like this -- they're wrong,1188658590 +40454,4300,no less than a 4.5,1189967293 +40454,4329,quirky,1215574607 +40454,4372,the voice-overs here aren't as corny as people say,1190925022 +40454,4621,done well enough,1187342211 +40454,4621,funny parts,1187342211 +40454,4661,repeated song throughout film,1216077699 +40454,4681,divided house,1215995922 +40454,4799,"more queasy than ""funny""",1187356943 +40454,4823,few nice laughs,1189967664 +40454,4873,levitating/flying/ascending/possible abduction,1215995994 +40454,4878,expect school,1189118929 +40454,5120,a subtitle watch,1189802500 +40454,5171,nice enough to see again,1187342381 +40454,5349,a bit old,1188341307 +40454,5363,bore,1215998094 +40454,5424,college people are dumb,1215554183 +40454,5591,monkeys flying around on kites,1216439932 +40454,5591,Thora Birch,1216439932 +40454,5626,a long trip through the seas,1189370281 +40454,5626,completely well-done,1189354902 +40454,5673,the sole incredibly funny Sandler movie,1216442997 +40454,5678,there must be something clever here...,1189968070 +40454,5815,government agencies,1215996969 +40454,5815,special prison,1215996991 +40454,5816,overshown,1215920921 +40454,5942,body/gender-switch,1215997587 +40454,5954,no less than a 4.5,1189967404 +40454,6003,people willing to cheat at first,1189802309 +40454,6008,5+ out of 5,1189812870 +40454,6187,I had my doubts with that anti-Republican talk - but I was just moody,1191271004 +40454,6250,I don't get it: what's there to get? tell me...,1190490309 +40454,6297,it has Eartha Kitt - so that cancels any cheesiness,1190558055 +40454,6365,builds up,1189120134 +40454,6373,not near being a masterpiece,1187341417 +40454,6586,crappy yet better than previous two,1215552607 +40454,6587,can't ever rate it - cuz I can't ever watch the whole thing,1189643763 +40454,6707,I like it when 94 minutes seem long,1190489806 +40454,6744,metaphorically underrated,1187475191 +40454,6744,nice script,1187475211 +40454,6744,two wrongly-judged eighteen-year-olds making love with vampires,1189120047 +40454,6881,parties thrown by outcast children for families,1216443086 +40454,6957,doesn't kid itself,1191271199 +40454,6958,talking stone heads,1216681568 +40454,7013,hunt,1215757474 +40454,7044,unique and purposeful,1216077017 +40454,7054,shall I give it a 4?,1189118633 +40454,7293,"probably not as good as ""Casanova""",1189050596 +40454,7316,horrible.,1216679480 +40454,7318,cross-illusion,1216441847 +40454,7318,The Passion of the Being Tortured (2004),1215919270 +40454,7319,Ow! My ass! indeed - hardly funny,1215553044 +40454,7346,nerds,1215997820 +40454,7361,watch again before hating,1189036627 +40454,7418,that nice documentary there's no reason to watch more than once,1188750106 +40454,7442,book-justice,1191698541 +40454,7442,very cool flick,1189117646 +40454,8369,I'm sure there must be something clever here...,1189559459 +40454,8464,"moment of silence for that corporation prick who said ""we're part of the problem and solution"" and got fired",1190072935 +40454,8512,"""skill is money""",1190557990 +40454,8807,dreams about crushes,1216078193 +40454,8807,no movies that are similarly rated,1216078219 +40454,8874,don't worry (like I did): it's funny,1188750187 +40454,8874,overknown,1217310811 +40454,8917,fast jets,1215996653 +40454,8917,matt damon!,1215996322 +40454,8917,sent to kim jong il,1215997074 +40454,8947,overknown,1215997778 +40454,8959,"""May""-weirdness -- not as good",1189907264 +40454,26148,war,1215996193 +40454,27674,easy fun,1215757337 +40454,27674,mindless,1215757338 +40454,27899,a bit boring - I've seen better documentaries,1191371702 +40454,27899,"at least some of it is ""proven"" with common sense",1191371486 +40454,27912,as if Fox did not have real people and CNN did,1215998053 +40454,30701,I think I should watch this again with subtitles...,1189035885 +40454,30707,4 or 4.5?,1189353868 +40454,31696,humanlike God,1215997917 +40454,32349,5+ out of 5,1189802621 +40454,32349,King Vidor,1189354730 +40454,33832,understated,1189117516 +40454,34319,Shu-up you're a CLONE! I own you shu-up!,1189264312 +40454,34405,spaceships,1216077511 +40454,34405,unexplained Tom Bombadil monster-characters,1216077662 +40454,34523,suicide,1215745238 +40454,34536,"sometimes you just ""don't give them the satisfaction""",1189456665 +40454,35836,2 or 3 hilarious parts - but too boring to see again,1189634297 +40454,37382,bore,1215997885 +40454,40614,medium to low predictability level,1189970110 +40454,42015,why's this rated R? good though,1187396531 +40454,42021,how to rate?,1189119471 +40454,43910,thought-out concert,1189118494 +40454,44613,some nice laughs,1189967573 +40454,45447,"sucky ending / ""off"" parts",1190434639 +40454,45447,watch for a good metaphor or two,1190434639 +40454,45503,complete with metaphors that CAN BE perceived as untrue!,1191500057 +40454,45662,out-of-date,1215997717 +40454,45672,I wouldn't watch more than once - but it made me cry,1189223110 +40454,45732,i'll never watch this,1215573044 +40454,45950,introduction that doesn't say as much as I hoped,1189559543 +40454,47810,did someone cast a spell to make everyone hate this ok flick?,1187357209 +40454,48516,good Scorsese stuff,1187342161 +40454,50685,unfair marriage,1215996032 +40454,51084,nice laughs,1189118547 +40454,51575,Disney (Touchstone),1189970166 +40454,52279,THIS is the nicely acted story with some good moments,1190435496 +40454,52279,"this is what they SAY ""The Notebook"" was",1190435449 +40454,52722,bore,1215997687 +40454,53129,best seen in a theater?,1188659486 +40454,58559,Heath Ledger as the Joker,1216902345 +40470,2321,adultery,1374433664 +40470,2321,touching,1374660360 +40470,2321,whimsical,1374660323 +40470,2571,post-apocalyptic,1373326679 +40470,2571,violence,1373325757 +40470,4226,revenge,1374589764 +40470,4226,violence,1374589760 +40470,7438,revenge,1374586104 +40472,8977,couldn't finish,1154844887 +40504,3,moldy,1143424860 +40504,3,old,1143424860 +40504,527,moving,1143424895 +40504,1101,predictable,1143424846 +40517,1233,Nazis,1301673796 +40517,1233,realistic,1301673791 +40517,1233,war,1301673782 +40517,1233,World War II,1301673778 +40517,5903,action,1308860161 +40517,5903,Christian Bale,1308860151 +40517,5903,drugs,1308860162 +40517,5903,gun fights,1308860154 +40517,5903,martial arts,1308860165 +40517,5903,post-apocalyptic,1308860156 +40517,5903,totalitarianism,1308860157 +40517,5903,violence,1308860159 +40517,5903,visually stunning,1308860171 +40517,7502,military,1301673822 +40517,68237,artificial intelligence,1308859940 +40517,68237,death,1308859966 +40517,68237,drama,1308859970 +40517,68237,future,1308859954 +40517,68237,Kevin Spacey,1308859941 +40517,68237,plot twist,1308859958 +40517,68237,psychological,1308859960 +40517,68237,psychology,1308859937 +40517,68237,Sci-fi,1308859952 +40517,68237,space,1308859945 +40535,48043,Disappointing,1182566142 +40549,260,Animated film,1443776433 +40549,260,good for kids,1443776419 +40552,318,crime,1438802369 +40552,318,prison escape,1438802358 +40557,260,classic sci-fi,1439255029 +40557,260,Highly quotable,1439255040 +40571,59369,action,1426499031 +40571,59369,crime,1426499012 +40571,59369,Liam Neeson,1426499005 +40571,59369,Paris,1426498995 +40571,80126,enigmatic,1352873634 +40571,99633,action,1426497855 +40571,99633,crime,1426497847 +40571,99633,noir thriller,1426497872 +40574,7099,Hayao Miyazaki,1288975735 +40574,47404,not available from Netflix,1296666825 +40574,53519,Quentin Tarantino,1288134910 +40604,260,Outer Space,1441564414 +40604,260,sci-fi,1441564404 +40610,260,good for kids,1436285169 +40611,260,action,1433070362 +40611,260,Action comedy,1433070374 +40611,260,classic,1433070387 +40611,260,sci-fi,1433070392 +40611,260,space,1433070366 +40652,8970,special,1185343207 +40661,54286,action,1422431611 +40661,54286,assassins,1422431611 +40661,54286,spies,1422431611 +40661,112006,adventure,1423167219 +40661,112006,love,1423167219 +40661,112006,princess,1423167219 +40683,260,sci-fi,1439939901 +40683,260,space,1439939905 +40713,260,Science Fiction,1438422478 +40713,260,space travel,1438422501 +40739,356,Oscar (Best Actor),1319937300 +40739,356,Sexuality,1319937280 +40739,364,animation,1319939609 +40739,364,Disney,1319939612 +40739,899,black and white,1362625809 +40739,899,comedy,1361851069 +40739,899,Dance,1361851067 +40739,899,happy,1361851084 +40739,904,imdb top 250,1329001489 +40739,952,Oscar (Best Cinematography),1352746360 +40739,1196,action,1319939656 +40739,1722,murder,1365389739 +40739,1939,veterans,1319946014 +40739,2291,dark,1319941334 +40739,2291,gothic,1319941326 +40739,2324,funny,1361851134 +40739,2324,Holocaust,1361578978 +40739,2355,animation,1319939706 +40739,2355,Disney,1319939703 +40739,2355,Pixar,1319939708 +40739,2565,musical,1319939592 +40739,2947,action,1364769878 +40739,2947,adventure,1364769881 +40739,3755,Action,1363914917 +40739,3755,profanity,1363914977 +40739,4231,Below R,1331518194 +40739,4306,animation,1319939622 +40739,4789,disfigurement,1319941273 +40739,5349,violence,1364769127 +40739,5572,funny,1319939684 +40739,6377,animation,1319939818 +40739,6377,Disney,1319939821 +40739,6377,Pixar,1319939823 +40739,7259,Dance,1319939565 +40739,8370,R,1319937954 +40739,8533,PG-13,1319937153 +40739,30822,very funny,1362625089 +40739,30822,very good,1362625104 +40739,33794,imdb top 250,1329001192 +40739,34540,lesbian,1319941154 +40739,44058,Robin Williams,1319941169 +40739,45720,Below R,1319938432 +40739,45720,fashion,1319938398 +40739,45720,New York,1319938416 +40739,45720,new york city,1319939728 +40739,47610,magic,1319940269 +40739,49824,PG13,1319943243 +40739,50158,dance,1319939660 +40739,50158,dance movie,1319938294 +40739,53996,aliens,1319939672 +40739,53996,robots,1319939675 +40739,55245,Nudity (Topless),1319941020 +40739,55267,large family,1363914839 +40739,58293,disappointing,1319939504 +40739,67788,good clean comedy,1319938499 +40739,67788,shopping,1319938494 +40739,70562,food,1362626041 +40739,72998,beautiful,1319943318 +40739,72998,imdb top 250,1319943331 +40739,72998,scenic,1319943323 +40739,76093,animation,1319939588 +40739,76093,fantasy,1319939585 +40739,77561,action,1364768697 +40739,77561,humor,1364768683 +40739,79293,torture,1370659152 +40739,79293,violent,1370659184 +40739,80551,scenery,1352587350 +40739,80906,politics,1362626422 +40739,81847,Below R,1324388633 +40739,81847,visually appealing,1324388625 +40739,82767,emotional,1368389884 +40739,82767,no nudity,1368389877 +40739,82767,no sex scenes,1368389873 +40739,86298,adventure,1319938107 +40739,86355,business,1364135263 +40739,86355,Government,1364135273 +40739,87232,Cuban missile crisis,1325367967 +40739,87869,R:language,1319942475 +40739,88075,lesbian,1319940578 +40739,88810,feel good movie,1331518078 +40739,88810,segregation,1331518076 +40739,91529,intense,1362628615 +40739,91529,murder,1362627149 +40739,91630,cinematography,1367455680 +40739,91630,cool gadgets,1367455674 +40739,96079,action,1352587304 +40739,96079,beautiful cinematography,1352587288 +40739,96079,beautifully filmed,1352587292 +40739,96079,plot,1352587296 +40739,97913,video games,1353545620 +40739,102125,action,1368389933 +40739,104841,cinematography,1383004000 +40739,104841,overrated,1383004009 +40739,104841,sexist,1383004069 +40739,104841,visually appealing,1383003993 +40739,105504,suspense,1384228702 +40739,105504,true story,1384228699 +40739,110771,Several curse words,1424647481 +40741,1196,force,1441019721 +40741,1196,light saber,1441019726 +40741,1196,sci-fi,1441019719 +40741,133195,hitman,1441019780 +40741,133195,kill,1441019782 +40745,48516,awesome,1202813340 +40780,76716,self injury,1424841426 +40780,79357,butterfly effect,1417326982 +40785,296,AFI #95,1147558113 +40785,909,AFI #93,1147558200 +40785,914,AFI #91,1147558357 +40785,955,AFI #97,1147558029 +40785,1213,AFI #94,1147558144 +40785,1266,AFI #98,1147557930 +40785,1924,after 10 minutes it's unwatchable,1239352421 +40785,1991,awful,1239342521 +40785,1991,stupid,1239342529 +40785,3451,AFI #99,1147557790 +40785,3475,AFI #92,1147558277 +40785,4973,a little boring,1168303189 +40785,4973,but still worth watching,1168303189 +40785,5735,fake,1147215743 +40785,5782,boring start,1155327209 +40785,5782,fantastic end,1155327209 +40785,6482,words cannot explain how horrid this is,1151624774 +40785,6856,AFI #100,1147557733 +40785,7924,guns,1157152565 +40785,26052,the prediction was way off,1156394859 +40785,26094,antonioni,1170432570 +40785,43460,boooooooooooring,1154887807 +40785,45728,hilarious,1153605957 +40785,45728,Kevin Smith,1153605971 +40785,45728,view askew,1153605988 +40785,46970,boring,1166300911 +40794,318,feel-good,1427943919 +40794,318,perseverance,1427943919 +40794,318,underdog,1427943919 +40794,356,americana,1429433814 +40794,356,feel-good,1429433814 +40794,356,great music,1429433814 +40795,260,classic,1439782863 +40795,260,sci-fi,1439782857 +40796,260,space,1435627922 +40796,260,space fight,1435627933 +40796,122882,action,1435628356 +40796,122882,car chase,1435628356 +40796,122882,driving,1435628356 +40837,3897,bad movie,1157549972 +40837,8873,good dialogue,1157549990 +40837,8973,see this,1157586277 +40837,27700,see this,1149976314 +40837,38038,see this,1157586211 +40843,296,amazing,1437652638 +40843,296,dark,1437652629 +40843,112552,intense acting,1437652592 +40870,34323,horror,1436008115 +40870,34323,road movie,1436008115 +40870,34323,trashy,1436008115 +40870,108647,milf,1436037021 +40898,3354,space travel,1174562240 +40898,5267,nothing special,1174562006 +40901,50,heist,1298619136 +40901,50,suspense,1298619124 +40901,50,thriller,1298619122 +40901,50,twist ending,1298619120 +40901,293,hitman,1298619257 +40901,293,Jean Reno,1298619252 +40901,293,Natalie Portman,1298619255 +40901,745,Wallace & Gromit,1298618653 +40901,1213,dark comedy,1417900977 +40901,1213,gritty,1417900994 +40901,1213,mafia,1417900960 +40901,1213,Martin Scorsese,1417900956 +40901,1213,masterpiece,1417900981 +40901,1213,organized crime,1417900973 +40901,1213,robert de niro,1417900971 +40901,1214,aliens,1298618318 +40901,1214,sci-fi,1298618329 +40901,1214,suspense,1298618332 +40901,1214,thriller,1298618334 +40901,1222,military,1300850403 +40901,1222,Stanley Kubrick,1300850393 +40901,1222,Vietnam,1300850401 +40901,1222,wartime,1300850408 +40901,4369,Vin Diesel,1360828674 +40901,5110,drugs,1298618415 +40901,5110,Erik Stolhanske,1298618458 +40901,5110,Jay Chandrasekhar,1298618435 +40901,5110,Nudity (Topless),1298618404 +40901,5110,Paul Soter,1298618444 +40901,5110,police,1298618407 +40901,5110,Steve Lemme,1298618426 +40901,5110,suburbia,1298618409 +40901,5110,Syrup chugging,1298618411 +40901,5669,Michael Moore,1340222364 +40901,5954,Edward Norton,1339389730 +40901,5954,powerful ending,1339389732 +40901,6373,Jennifer Aniston,1360828576 +40901,6373,Jim Carrey,1360828563 +40901,6373,Morgan Freeman,1360828573 +40901,6373,Steve Carell,1360828569 +40901,8641,Steve Carell,1313101723 +40901,8641,Steve Carrell,1313101722 +40901,8641,Will Ferrell,1313101725 +40901,27391,Gay,1364105171 +40901,27391,homosexuality,1364105177 +40901,38061,clever,1336163657 +40901,38061,Robert Downey Jr.,1336163651 +40901,38061,witty,1336163665 +40901,44199,bank robbery,1363648342 +40901,44199,Clive Owen,1363648331 +40901,44199,Denzel Washington,1363648333 +40901,44199,intelligent thriller,1363648335 +40901,44665,Bruce Willis,1304045834 +40901,44665,hitman,1304045842 +40901,44665,Morgan Freeman,1304045831 +40901,44665,organized crime,1304045829 +40901,44665,Revenge,1304045837 +40901,44665,twist ending,1304045828 +40901,47610,Edward Norton,1300849276 +40901,47610,magic,1300849280 +40901,47610,Paul Giamatti,1300849270 +40901,47610,twist ending,1300849273 +40901,48780,Christian Bale,1340222519 +40901,48780,magic,1340222520 +40901,48780,Michael Caine,1340222540 +40901,48780,psychological,1340222522 +40901,48780,Scarlett Johansson,1340222535 +40901,48780,twist ending,1340222524 +40901,51662,Gerard Butler,1313278668 +40901,51662,historical,1313278679 +40901,51662,sword fight,1313278663 +40901,55765,Denzel Washington,1298619159 +40901,55765,Russell Crowe,1298619157 +40901,57669,british comedy,1336163214 +40901,57669,dark comedy,1336163212 +40901,57669,hitman,1336163210 +40901,57669,violent,1336163218 +40901,69481,action,1300850435 +40901,69481,explosions,1300850438 +40901,69481,Iraq War,1300850432 +40901,69481,Middle East,1300850431 +40901,69481,military,1300850444 +40901,69481,thoughtful,1300850447 +40901,69481,thriller,1300850449 +40901,69481,War,1300850451 +40901,79592,Mark Wahlberg,1313101682 +40901,79592,Samuel L Jackson,1313101687 +40901,79592,Will Ferrell,1313101686 +40901,80489,FBI,1304045772 +40901,80489,heist,1304045775 +40901,81562,man vs nature,1335124149 +40901,81562,survival,1335124136 +40901,81562,wilderness,1335124134 +40901,81932,Christian Bale,1304045727 +40901,81932,Mark Wahlberg,1304045715 +40901,81932,sexy redhead,1304045721 +40901,81932,sports,1304045719 +40901,84601,Liam Neeson,1300849026 +40901,85020,Jason Statham,1300845323 +40901,94405,Jason Statham,1372038590 +40901,95510,Andrew Garfield,1360209112 +40901,95510,family friendly,1360209125 +40938,109487,space,1446569790 +40970,527,heartbreaking,1447602793 +40970,105844,eyeopening,1447602804 +40970,134130,Space,1447602609 +40978,36363,cult film,1378244362 +40978,36363,sci-fi,1378244353 +40989,260,adventure,1439826795 +40989,260,sci-fi,1439826786 +40995,1292,subtle,1164063373 +40999,48,Disney Renaissance,1333059735 +40999,364,Disney Renaissance,1333059690 +40999,588,Disney Renaissance,1333059675 +40999,595,Disney Renaissance,1333059621 +40999,783,Disney Renaissance,1333059750 +40999,1566,Disney Renaissance,1333059768 +40999,1907,Disney Renaissance,1333059793 +40999,2081,Disney Renaissance,1333059643 +40999,2687,Disney Renaissance,1333059818 +40999,27156,anime,1234890824 +40999,91094,musical,1333059512 +41020,608,Coen Brothers,1226506224 +41027,293,assassin,1439046140 +41027,293,love story,1439046119 +41027,6350,adventure,1439046187 +41027,6350,animated masterpiece,1439046207 +41027,6350,fantasy,1439046196 +41027,6350,great soundtrack,1439046183 +41027,6350,Studio Ghibli,1439046163 +41086,1779,Michael Crichton,1186590475 +41086,1779,sci-fi,1186590475 +41086,6373,comedy,1186590455 +41086,6373,religion,1186590455 +41086,8622,conspiracy,1186590401 +41102,26492,nothing,1248984573 +41136,5,humorous,1438507539 +41136,5,steve martin,1438507542 +41136,780,action,1438507114 +41136,780,screenplay,1438507142 +41136,780,unity,1438507120 +41136,1721,realistic,1438507307 +41136,1721,survival,1438507323 +41136,1721,true story,1438507294 +41136,4270,adventure,1438507476 +41136,4270,comedy,1438507475 +41136,4270,Rachel Weisz,1438507479 +41136,4700,Anne Hathaway,1438507858 +41136,4700,Julie Andrews,1438507860 +41136,8529,great acting,1438507248 +41136,8529,tom hanks,1438507239 +41136,53121,creativity,1438508046 +41136,65585,Anne Hathaway,1438507908 +41136,65585,kate hudson,1438507913 +41136,70769,heartfelt,1438507392 +41136,70769,touching drama,1438507383 +41136,70769,unpredictability,1438507409 +41136,79132,cerebral,1438506885 +41136,79132,complicated,1438506896 +41136,79132,intellectual,1438506908 +41136,87222,animation,1438507964 +41136,87222,humour,1438508009 +41136,95543,creativity,1438508086 +41136,95543,humor,1438508081 +41136,95543,Manny,1438508075 +41145,1,animation,1430792017 +41145,1,family,1430792017 +41145,1,sci-fi,1430792017 +41145,110,historical,1428108185 +41145,110,mel gibson,1428108185 +41145,110,violence,1428108185 +41145,480,dinosaurs,1427067727 +41145,480,sci-fi,1427067727 +41145,480,steven spielberg,1427067727 +41145,6935,2,1195853098 +41145,6935,coup,1196003635 +41145,44204,unforgetable,1195852532 +41208,260,great story,1439770752 +41208,260,groundbreaking science-fiction,1439770728 +41210,59369,action,1233827460 +41250,109487,spell bound,1436606056 +41250,116797,historical,1436606106 +41251,46970,funny,1156788918 +41251,46970,nascar,1156788904 +41251,46970,will farell,1156788913 +41251,47640,beer,1156788764 +41251,47640,guy movie,1156788774 +41252,29,atmospheric,1308513964 +41252,29,dark fantasy,1308513963 +41252,29,dystopia,1308513967 +41252,29,surreal,1308513966 +41252,50,complicated,1326407057 +41252,50,Kevin Spacey,1326407067 +41252,50,twist ending,1326407080 +41252,293,disturbing,1296172781 +41252,551,atmospheric,1290097727 +41252,551,Tim Burton,1290097720 +41252,593,Anthony Hopkins,1296254294 +41252,593,disturbing,1296254295 +41252,593,psychology,1296254288 +41252,608,Coen Brothers,1340575822 +41252,608,dark comedy,1340575829 +41252,1199,atmospheric,1325118936 +41252,1199,dreamlike,1325118946 +41252,1199,dystopia,1325118933 +41252,1199,satirical,1325118942 +41252,1199,thought-provoking,1325118939 +41252,1206,violence,1318627448 +41252,1222,war,1318627249 +41252,1236,bittersweet,1333488833 +41252,1236,quirky,1333488150 +41252,1236,understated,1333488143 +41252,1246,bittersweet,1296254237 +41252,1246,heartbreaking,1296254242 +41252,1246,philosophy,1296254231 +41252,1748,aliens,1324338124 +41252,1748,atmospheric,1324338110 +41252,1748,dystopia,1324338103 +41252,1748,sci-fi,1324338121 +41252,1748,surreal,1324338108 +41252,2329,disturbing,1296254314 +41252,2329,Edward Norton,1296254306 +41252,2329,powerful ending,1296254308 +41252,2329,thought-provoking,1296254309 +41252,2858,dark comedy,1295909046 +41252,2858,social commentary,1295909045 +41252,2858,surrealism,1295909061 +41252,2858,thought-provoking,1295909043 +41252,2871,rednecks,1295734944 +41252,3949,addiction,1295135251 +41252,3949,depressing,1295135247 +41252,3949,psychology,1295135254 +41252,4144,loneliness,1340575690 +41252,4144,Wong Kar-wai,1340575701 +41252,4308,quirky,1334498862 +41252,4973,beautifully filmed,1335043349 +41252,4973,cute,1340134570 +41252,4973,great soundtrack,1335043370 +41252,4973,romance,1335043359 +41252,4973,surreal,1335043356 +41252,4973,whimsical,1335043354 +41252,5377,Hugh Grant,1339092086 +41252,5608,disturbing,1318712805 +41252,5608,prison,1318712792 +41252,5608,psychology,1318712769 +41252,5772,dialogue,1342821045 +41252,5772,philosophical,1342821042 +41252,5903,Christian Bale,1317745338 +41252,5903,dystopia,1317745340 +41252,5903,guns,1317745351 +41252,5903,totalitarianism,1317745343 +41252,5954,Edward Norton,1296085053 +41252,5954,powerful ending,1296085045 +41252,6197,delusion,1324073802 +41252,6197,gloomy,1324073784 +41252,6197,meditative,1324073938 +41252,6197,mental illness,1324073789 +41252,6197,sad,1324073796 +41252,6197,understated,1324073870 +41252,6323,predictable,1318797969 +41252,6323,psychology,1318797676 +41252,6323,unoriginal,1318798051 +41252,6440,John Goodman,1325550399 +41252,6711,bittersweet,1340575745 +41252,6711,isolation,1340575753 +41252,6711,Japan,1340575742 +41252,6711,relationships,1340575751 +41252,6870,thriller,1343597642 +41252,26662,Hayao Miyazaki,1335043275 +41252,26662,Studio Ghibli,1335043273 +41252,26713,sentimental,1340403474 +41252,26713,Wong Kar-wai,1340403439 +41252,27266,melancholy,1342812609 +41252,27266,Wong Kar-wai,1342812600 +41252,27397,Chan-wook Park,1336082749 +41252,27592,Chan-wook Park,1335480472 +41252,27773,Chan-wook Park,1335653715 +41252,27773,depressing,1335653714 +41252,27773,disturbing,1335653712 +41252,27773,music,1335653724 +41252,27773,stylized,1335653717 +41252,31658,Hayao Miyazaki,1335043263 +41252,31658,Studio Ghibli,1335043261 +41252,33794,Morgan Freeman,1342913404 +41252,40412,British,1325547215 +41252,40412,Drugs,1325547177 +41252,42632,beautiful cinematography,1335740382 +41252,42632,Chan-wook Park,1335740393 +41252,42632,soundtrack,1335740400 +41252,42632,stylized,1335740380 +41252,54962,soundtrack,1344728904 +41252,54962,thought-provoking,1344728209 +41252,55280,cute,1333399614 +41252,55280,Emily Mortimer,1333399565 +41252,55280,I wanted to hug this movie,1333399583 +41252,55280,mental illness,1333399567 +41252,55820,coen brothers,1340575813 +41252,55908,dialogue driven,1340056399 +41252,55908,intellectual,1340056335 +41252,55908,philosophical,1340056333 +41252,55908,thought-provoking,1340056329 +41252,60044,romance,1339366569 +41252,65261,Animation,1335043242 +41252,65261,Hayao Miyazaki,1335043239 +41252,65261,Studio Ghibli,1335043237 +41252,66371,confronting death,1332197169 +41252,66371,japan,1332197137 +41252,68073,main character,1344728425 +41252,68073,Philip Seymour Hoffman,1344728392 +41252,68237,artificial intelligence,1343339669 +41252,68237,Kevin Spacey,1343339658 +41252,68237,psychology,1343339654 +41252,68237,Sci-fi,1343339677 +41252,72720,cinematography,1326154957 +41252,72720,meditative,1326154928 +41252,72720,sad,1326154920 +41252,72720,twist ending,1326154935 +41252,74129,indie,1290018132 +41252,74129,romance,1290018150 +41252,77307,disturbing,1319322399 +41252,77307,parenthood,1319322497 +41252,77307,Rule-making,1319322498 +41252,78266,gore,1323989658 +41252,78266,original plot,1323989673 +41252,78266,rape,1323989653 +41252,78266,weak ending,1323989624 +41252,78836,too long,1339286386 +41252,79139,Nicolas Cage,1292014943 +41252,79139,predictable,1292014955 +41252,80846,plot twist,1292276097 +41252,80917,aliens,1332026276 +41252,80917,nothing happens,1332026278 +41252,81834,Alan Rickman,1295123014 +41252,81834,dark,1295123020 +41252,81834,Emma Watson,1295123001 +41252,81834,Ralph Fiennes,1295123028 +41252,81932,Christian Bale,1297118828 +41252,82744,Billy Bob Thornton,1297024915 +41252,82744,cliche,1297024873 +41252,85213,dialogue driven,1340056362 +41252,85213,Samuel L. Jackson,1340056365 +41252,88129,atmospheric,1322298016 +41252,88129,cinematography,1322298024 +41252,88129,minimalistic,1322298026 +41252,89118,psychology,1325287574 +41252,89904,John Goodman,1335303306 +41252,89904,romance,1335303340 +41252,89904,visually appealing,1335303297 +41252,90057,depressing,1344441257 +41252,90057,mental illness,1344441257 +41252,90405,cheesy,1346365452 +41252,90405,dystopia,1346365439 +41252,90405,plot holes,1346365436 +41252,90405,unintentionally funny,1346365465 +41252,91500,based on a book,1333315128 +41252,91500,social commentary,1333315116 +41252,91529,Christopher Nolan,1343322230 +41252,91529,Predictable,1343322224 +41252,92309,characters,1339887265 +41252,92309,cliche,1339887242 +41252,93512,duplass brothers,1339622289 +41252,93764,Samuel L. Jackson,1334498794 +41252,93790,depressing,1339454345 +41252,93855,dark comedy,1339800729 +41252,93855,hypocrisy,1339800699 +41252,93855,social criticism,1339800670 +41252,93855,violence,1339800839 +41258,1206,cult film,1245459279 +41258,1206,quirky,1245459272 +41258,1380,1950s,1245459216 +41258,1380,Broadway,1245459226 +41258,1380,musical,1245459233 +41258,2115,orientalist,1247342985 +41258,2167,effects,1247343308 +41258,2167,Marvel,1247343293 +41258,2167,vampires,1247343299 +41258,5152,History,1245459021 +41258,5152,Vietnam War,1245459011 +41258,6711,lyrical,1245459332 +41258,6711,Melancholic,1245459329 +41258,6711,nocturnal,1245459330 +41258,6711,reflective,1245459336 +41258,6711,Scarlett Johansson,1245459325 +41258,44191,politics,1245459091 +41258,44191,thought-provoking,1245459101 +41258,46976,surreal,1245459163 +41258,46976,Will Ferrell,1245459126 +41258,60069,love story,1245459074 +41258,60069,Post apocalyptic,1245459067 +41258,68954,touching,1292795711 +41258,70286,intelligent sci-fi,1292795522 +41258,72395,over coming adversity,1292795942 +41258,74458,Predictable,1279480209 +41258,79132,mindfuck,1292795334 +41277,47491,black comedy,1357935823 +41277,47491,cynical,1357935823 +41281,1211,meditative,1390192118 +41281,1211,Spiritual,1390192103 +41281,3090,FIGHTING THE SYSTEM,1390192494 +41281,3090,John Sayles,1390192497 +41281,3090,labor unions,1390192534 +41281,3090,SOCIAL INJUSTICE,1390192514 +41281,7060,great soundtrack,1390192002 +41281,7060,Movie version is about Judas,1390191960 +41281,7060,Rock Opera,1390191975 +41281,7060,Truly awful adaptation,1390191990 +41281,106487,Jennifer Lawrence,1390192241 +41281,106487,revolution,1390192236 +41281,106920,artificial intelligence,1390190825 +41281,106920,joaquin phoenix,1390190786 +41281,106920,Scarlett Johansson,1390190793 +41281,106920,thought-provoking,1390190818 +41281,106920,transhumanism,1390190802 +41298,4226,my favorite movie,1137990385 +41327,541,Philip K. Dick,1154451750 +41327,2232,mindfuck,1154381302 +41327,2232,weird,1154381297 +41327,2355,animation,1154381244 +41327,2355,Disney,1154381249 +41327,2355,Pixar,1154381246 +41327,5445,Philip K. Dick,1154451745 +41327,7163,Philip K. Dick,1154451746 +41327,27904,Philip K. Dick,1154377445 +41327,45722,pirates,1154377439 +41327,45728,Kevin Smith,1154377428 +41327,45728,view askew,1154377426 +41327,60514,3D,1220858024 +41356,293,Action,1443551440 +41356,293,assassin,1443551433 +41356,293,drama,1443551449 +41356,293,French,1443551446 +41356,293,friendship,1443551442 +41356,293,Gary Oldman,1443551436 +41356,293,great acting,1443551454 +41356,293,Jean Reno,1443551429 +41356,293,love story,1443551457 +41356,293,Luc Besson,1443551437 +41356,293,Natalie Portman,1443551432 +41356,293,quirky,1443551460 +41356,541,atmospheric,1443485516 +41356,541,classic,1443485558 +41356,541,cult film,1443485561 +41356,541,cyberpunk,1443485510 +41356,541,dreamlike,1443485535 +41356,541,dystopia,1443485513 +41356,541,great soundtrack,1443485552 +41356,541,Philip K. Dick,1443485522 +41356,541,Ridley Scott,1443485543 +41356,541,stylized,1443485527 +41356,541,Vangelis,1443485546 +41356,1573,action,1443486084 +41356,1573,John Travolta,1443486080 +41356,1573,John Woo,1443486086 +41356,1573,Nicolas Cage,1443486082 +41356,1573,switching places,1443486088 +41356,1590,horror,1444789584 +41356,1590,Scary,1444789577 +41356,1748,alternate reality,1443552018 +41356,1748,atmospheric,1443552032 +41356,1748,dystopia,1443552029 +41356,1748,original,1443552023 +41356,1748,sci-fi,1443552012 +41356,1748,stylized,1443552014 +41356,1748,surreal,1443552007 +41356,1748,thought-provoking,1443552008 +41356,1748,visually appealing,1443552035 +41356,1748,visually stunning,1443552037 +41356,2571,action,1443485604 +41356,2571,alternate reality,1443485614 +41356,2571,atmospheric,1443485624 +41356,2571,Carrie-Anne Moss,1443485645 +41356,2571,computers,1443485622 +41356,2571,cult film,1443485633 +41356,2571,dystopia,1443485597 +41356,2571,hackers,1443485626 +41356,2571,martial arts,1443485601 +41356,2571,sci-fi,1443485593 +41356,2571,science fiction,1443485642 +41356,2571,Special Effects,1443485640 +41356,2571,stylized,1443485619 +41356,2571,surreal,1443485610 +41356,2571,thought-provoking,1443485608 +41356,2571,virtual reality,1443485595 +41356,2916,alternate reality,1443485770 +41356,2916,Arnold Schwarzenegger,1443485755 +41356,2916,dystopia,1443485762 +41356,2916,memory,1443485792 +41356,2916,mutants,1443485772 +41356,2916,original plot,1443485775 +41356,2916,Paul Verhoeven,1443485779 +41356,2916,Philip K. Dick,1443485757 +41356,2916,sci-fi,1443485764 +41356,2916,science fiction,1443485796 +41356,2916,Sharon Stone,1443485783 +41356,2916,Special Effects,1443485786 +41356,2916,virtual reality,1443485760 +41356,4848,amnesia,1443485964 +41356,4848,Atmospheric,1443485936 +41356,4848,dark,1443485942 +41356,4848,David Lynch,1443485932 +41356,4848,drama,1443485991 +41356,4848,dreamlike,1443485938 +41356,4848,Enigmatic,1443485959 +41356,4848,Erotic,1443485974 +41356,4848,hallucinatory,1443485984 +41356,4848,Los Angeles,1443485986 +41356,4848,movie business,1443485969 +41356,4848,mystery,1443485944 +41356,4848,Naomi Watts,1443485967 +41356,4848,nonlinear,1443485934 +41356,4848,sexual,1443485980 +41356,4848,strange,1443485989 +41356,4848,stylized,1443485961 +41356,4848,surreal,1443485930 +41356,4848,surrealism,1443485955 +41356,4848,thriller,1443485976 +41356,4848,twist ending,1443485978 +41356,4848,visually appealing,1443485995 +41356,4848,weird,1443485972 +41356,7361,bittersweet,1443485400 +41356,7361,dreamlike,1443485410 +41356,7361,emotional,1443485426 +41356,7361,jim carrey,1443485393 +41356,7361,Kate Winslet,1443485413 +41356,7361,love,1443485416 +41356,7361,memory,1443485396 +41356,7361,nonlinear,1443485391 +41356,7361,quirky,1443485402 +41356,7361,romance,1443485404 +41356,7361,romantic,1443485429 +41356,7361,surreal,1446508487 +41356,7361,thought-provoking,1443485389 +41356,41285,clever,1443485826 +41356,41285,interesting,1443485843 +41356,41285,love affair,1443485835 +41356,41285,murder mystery,1443485831 +41356,41285,non-hollywood ending,1443485828 +41356,41285,romance,1443485845 +41356,41285,Scarlett Johansson,1443485818 +41356,41285,twist ending,1443485838 +41356,41285,Woody Allen,1443485823 +41356,82461,action choreography,1443486515 +41356,82461,alternate reality,1443486505 +41356,82461,artificial intelligence,1443486530 +41356,82461,atmospheric,1443486513 +41356,82461,computers,1443486503 +41356,82461,cyber,1443486526 +41356,82461,daft punk,1443486468 +41356,82461,futuristic,1443486466 +41356,82461,hot ladies,1443486521 +41356,82461,Jeff Bridges,1443486482 +41356,82461,music,1443486480 +41356,82461,Olivia Wilde,1443486511 +41356,82461,sci-fi,1443486464 +41356,82461,soundtrack,1443486508 +41356,82461,stylized,1443486494 +41356,82461,techno,1443486523 +41356,82461,technology,1443486498 +41356,82461,video games,1443486501 +41356,82461,virtual reality,1443486478 +41356,82461,visually appealing,1443486471 +41356,84152,Bradley Cooper,1443486222 +41356,84152,concept,1443486227 +41356,84152,drugs,1443486234 +41356,84152,entertaining,1443486224 +41356,84152,Robert De Niro,1443486232 +41356,84152,smart,1443486229 +41356,84152,thought provoking,1443486218 +41356,84152,visual effects,1443486284 +41356,84152,visually appealing,1443486216 +41356,114935,time travel,1444789434 +41364,57368,city under attack,1365229075 +41371,26590,gijoe,1442920772 +41371,91632,g.i. joe,1442920668 +41371,91632,gi joe,1442920656 +41371,91632,gijoe,1442920661 +41371,91634,gijoe,1442920721 +41382,1625,Mystery,1446634640 +41382,1625,suspense,1446634618 +41382,2571,Dynamic CGI Action,1446634760 +41382,2571,high-tech,1446634732 +41382,2571,thought-provoking,1446634715 +41383,567,Almodovar,1234131375 +41410,8605,french comedy,1443355555 +41410,8605,humor,1443355546 +41410,27193,french comedy,1443355318 +41410,27193,Funny,1443355359 +41410,80693,depression,1443355243 +41410,80693,mental illness,1443355226 +41410,80693,Mental strenth,1443355079 +41410,80693,Values,1443354979 +41410,106130,1874,1443354743 +41410,106130,19th Century,1443354757 +41410,106130,curious sport,1443354858 +41410,106130,football,1443354490 +41410,106130,Germany,1443354494 +41410,106130,new sport,1443354887 +41416,30749,depressing,1444406364 +41416,30749,genocide,1444406377 +41416,30749,true story,1444406386 +41416,30749,unpleasant to watch,1444406345 +41416,30749,war,1444406405 +41416,86504,unpleasant to watch,1444406299 +41420,26211,drugs,1334315311 +41420,26985,cyberpunk,1334315369 +41420,59026,drugs,1334315409 +41420,84844,mafia,1334315226 +41448,260,sci-fi,1437836855 +41448,260,special effects,1437836869 +41455,110,overrated,1135589075 +41455,1555,Not available from Netflix,1161675613 +41455,2270,Not available from Netflix,1223880095 +41455,3819,not available from Netflix,1353615238 +41455,4998,not available from Netflix,1353615347 +41455,5120,not available from Netflix,1353615461 +41455,5725,Not available from Netflix,1161675623 +41455,5907,Not available from Netflix,1162066525 +41455,6075,Not available from Netflix,1161675619 +41455,6133,Not available from Netflix,1161675626 +41455,6173,For kids,1138172610 +41455,6198,Not available from Netflix,1166125314 +41455,6673,Not available from Netflix,1170017005 +41455,6679,Comedy??,1140486623 +41455,6935,Not available from Netflix,1161675590 +41455,7238,Not available from Netflix,1164444760 +41455,7935,Not available from Netflix,1202722204 +41455,7940,Not available from Netflix,1164444718 +41455,7948,Not available from Netflix,1177836990 +41455,8070,Not available from Netflix,1179042014 +41455,8125,Not available from Netflix,1161675638 +41455,8228,Not available from Netflix,1165799560 +41455,8485,Not available from Netflix,1161675598 +41455,8573,Nonlinear Surrealism,1135936223 +41455,25764,Not available from Netflix,1182030465 +41455,25788,Not available from Netflix,1165799611 +41455,25898,Not available from Netflix,1161675653 +41455,25975,not available from Netflix,1293435571 +41455,25987,not available from Netflix,1325277087 +41455,26252,not available from Netflix,1314780762 +41455,26268,not available from Netflix,1264356648 +41455,26448,not available from Netflix,1249018326 +41455,26560,not available from Netflix,1250578530 +41455,26934,not available from Netflix,1328597788 +41455,27009,not available from Netflix,1269815798 +41455,27216,Not available from Netflix,1248153755 +41455,27523,Not available from Netflix,1164619034 +41455,27636,Not available from Netflix,1192434835 +41455,30701,Not available from Netflix,1185658886 +41455,31435,touching,1139218910 +41455,31545,not available from Netflix,1307741463 +41455,31628,Not available from Netflix,1243797985 +41455,32460,Not available from Netflix,1195931180 +41455,33451,Not available from Netflix,1225660462 +41455,34238,not available from Netflix,1290366400 +41455,34405,Waste of time,1137059965 +41455,36363,Not available from Netflix,1243925603 +41455,37495,not available from Netflix,1270349096 +41455,39183,giddyup,1141636913 +41455,40586,Not available from Netflix,1238285497 +41455,40591,not available from Netflix,1289268411 +41455,41336,Not available from Netflix,1246945451 +41455,41712,not available from Netflix,1283239892 +41455,42351,not available from Netflix,1298743014 +41455,42900,Not available from Netflix,1163379079 +41455,47404,not available from Netflix,1268461410 +41455,48660,not available from Netflix,1265698563 +41455,48909,not available from Netflix,1254381688 +41455,50245,not available from Netflix,1263276423 +41455,51573,not available from Netflix,1288856305 +41455,52237,not available from Netflix,1304799235 +41455,53355,not available from Netflix,1296165075 +41455,54833,not available from Netflix,1277882000 +41455,57543,not available from Netflix,1307305677 +41455,57854,not available from Netflix,1295532626 +41455,59026,Not available from Netflix,1232980907 +41455,60408,Not available from Netflix,1236666353 +41455,60904,not available from Netflix,1275548632 +41455,62049,Not available from Netflix,1224979533 +41455,63329,Not available from Netflix,1231163826 +41455,64321,not available from Netflix,1315033446 +41455,71011,not available from Netflix,1263962642 +41455,71131,not available from Netflix,1283030726 +41455,71141,not available from Netflix,1321110123 +41455,73323,not available from Netflix,1270528866 +41455,77629,not available from Netflix,1284787800 +41455,77846,not available from Netflix,1300172888 +41455,78160,not available from Netflix,1277443244 +41455,79536,not available from Netflix,1286783366 +41455,79578,not available from netflix,1313743925 +41455,82143,not available from Netflix,1326835282 +41455,82926,not available from Netflix,1314430855 +41455,99764,dumb,1420301965 +41455,99764,horrible,1420301957 +41459,260,Harrison Ford,1432473851 +41459,260,starwawars,1432473841 +41460,32,bruce willis,1169859769 +41460,235,Tim Burton,1169867657 +41460,555,tarantino is god,1169859839 +41460,1261,cult classic,1169860093 +41460,4105,off-beat,1169860098 +41460,8917,not exactly pc,1169860260 +41460,8917,Trey Parker,1169860264 +41468,107314,gore,1425152109 +41468,107314,revenge,1425152109 +41468,107314,twist ending,1425152109 +41475,1688,animation,1308493976 +41475,1688,classic,1308494085 +41475,1688,classic animation,1308494084 +41475,1688,cute movie,1308493918 +41475,1688,Dreamworks,1308493931 +41475,1688,funny,1308494040 +41475,1688,NOT A DISNEY,1308493988 +41475,1688,puka,1308494053 +41475,1688,rasputin,1308493953 +41475,1688,Russian revolution,1308494028 +41475,1688,songs,1308493968 +41475,1688,storyline,1308494095 +41475,2006,Anthony Hopkins,1307740441 +41475,2006,Antonio Banderas,1307740443 +41475,2006,California,1307740484 +41475,2006,Catherine Zeta-Jones,1307740445 +41475,2006,dialogue,1307740525 +41475,2006,fencing,1307740460 +41475,2006,Funny,1307740477 +41475,2006,Mexico,1307740456 +41475,2006,remake,1307740471 +41475,2006,Rufus Sewell,1307740452 +41475,2006,stereotypes,1307740524 +41475,2193,characters,1307739894 +41475,2193,fantasy,1307739962 +41475,2193,George Lucas,1307739890 +41475,2193,plot,1307739907 +41475,2193,Special Effects,1307739890 +41475,2193,val kilmer,1307739962 +41475,2193,warwick davis,1307739962 +41475,2193,WITCHCRAFT,1307739962 +41475,2329,disturbing,1307742775 +41475,2329,drama,1307742795 +41475,2329,Edward Norton,1307742771 +41475,2329,emotional,1307742779 +41475,2329,heartbreaking,1307742788 +41475,2329,racism,1307742770 +41475,2329,thought-provoking,1307742767 +41475,2329,Tragedy,1307742804 +41475,2329,violence,1307742765 +41475,5903,action,1307741336 +41475,5903,Christian Bale,1307741293 +41475,5903,gun fights,1307741336 +41475,5903,martial arts,1307741301 +41475,5903,plot twists,1307741297 +41475,5903,thought-provoking,1307741308 +41475,5903,totalitarianism,1307741306 +41475,5903,violence,1307741313 +41475,5971,family,1307742554 +41475,5971,for kids,1307742552 +41475,5971,Hayao Miyazaki,1307742563 +41475,5971,kids and family,1307742556 +41475,5971,slow,1307742572 +41475,5971,Studio Ghibli,1307742565 +41475,6539,adventure,1307740031 +41475,6539,comedy,1307740033 +41475,6539,Disney,1307740042 +41475,6539,funny,1307740030 +41475,6539,Johnny Depp,1307740020 +41475,6539,Orlando Bloom,1307740057 +41475,6539,pirates,1307740023 +41475,6539,sword fight,1307740025 +41475,6874,assassin,1307741203 +41475,6874,Japan,1307741182 +41475,6874,kung fu,1307741198 +41475,6874,Quentin Tarantino,1307741164 +41475,6874,revenge,1307741166 +41475,6874,stylized,1307741176 +41475,6874,violent,1307741186 +41475,6874,visually appealing,1307741191 +41475,27186,Aesop ending,1308494444 +41475,27186,great animation,1308494427 +41475,27186,not only for kids,1308494409 +41475,27773,violent,1307742303 +41475,32300,bad acting,1309211062 +41475,32300,Devon Aoki,1309211083 +41475,32300,fun,1309211035 +41475,32300,Jimmi Simpson,1309211075 +41475,32300,Jordana Brewster,1309211071 +41475,32300,lesbian,1309211029 +41475,32300,not badass,1309211055 +41475,32300,over simplistic,1309211100 +41475,32300,spies,1309211049 +41475,32587,atmospheric,1307741140 +41475,32587,black comedy,1307741120 +41475,32587,corruption,1307741136 +41475,32587,elijah wood,1307741146 +41475,32587,multiple storylines,1307741131 +41475,32587,stylized,1307741122 +41475,32587,violence,1307741124 +41475,33679,Action,1307740917 +41475,33679,Angelina Jolie,1307740876 +41475,33679,Brad Pitt,1307740874 +41475,33679,espionage,1307740879 +41475,33679,funny,1307740880 +41475,33679,murder,1307740885 +41475,33679,predictable movie,1307740927 +41475,33679,protagonist is an assassin,1307740889 +41475,33679,spies,1307740899 +41475,33679,Vince Vaughn,1307740894 +41475,33794,Christian Bale,1307740965 +41475,33794,dark,1307740977 +41475,33794,kinda boring,1307741009 +41475,33794,melancholy,1307740981 +41475,33794,Michael Caine,1307740979 +41475,33794,Morgan Freeman,1307740966 +41475,33794,overly long,1307741009 +41475,33794,superhero,1307740969 +41475,33794,vigilante,1307740984 +41475,35836,crude humor,1307743266 +41475,35836,funny,1307743268 +41475,35836,geeks,1307743270 +41475,35836,hilarious,1307743243 +41475,35836,Judd Apatow,1307743256 +41475,35836,marijuana,1307743264 +41475,35836,Paul Rudd,1307743273 +41475,35836,romantic comedy,1307743261 +41475,35836,Seth Rogen,1307743237 +41475,35836,sex comedy,1307743240 +41475,35836,Steve Carell,1307743239 +41475,35836,virginity,1307743259 +41475,39435,funny,1307740572 +41475,39435,unrealistic,1307740583 +41475,44191,dystopia,1307741225 +41475,44191,England,1307741251 +41475,44191,Natalie Portman,1307741248 +41475,44191,philosophy,1307741245 +41475,44191,politics,1307741227 +41475,44191,revenge,1307741229 +41475,44191,social commentary,1307741235 +41475,44191,terrorism,1307741240 +41475,44191,thought-provoking,1307741232 +41475,44191,torture,1307741273 +41475,51666,gritty,1308492780 +41475,51666,mindfuck,1308492764 +41475,51666,scary,1308492746 +41475,51709,comedy,1308492008 +41475,52973,Katherine Heigl,1307743319 +41475,52973,Seth Rogen,1307743311 +41475,53519,cars,1307741382 +41475,53519,great soundtrack,1307741363 +41475,53519,Quentin Tarantino,1307741365 +41475,53519,slow paced,1307741371 +41475,53519,stylish,1307741374 +41475,53519,violence,1307741377 +41475,54259,accent,1307739737 +41475,54259,acting,1307739724 +41475,54259,actors,1307739724 +41475,54259,adventure,1307739724 +41475,54259,based on a book,1307739816 +41475,54259,charlie cox,1307739711 +41475,54259,fantasy world,1307739711 +41475,54259,humour,1307739711 +41475,54259,Mark Strong,1307739711 +41475,54259,pirates (minor),1307739816 +41475,54259,Robert De Niro,1307739711 +41475,54259,Special Effects,1307739816 +41475,54259,sweet romance,1307739711 +41475,54259,visuals,1307739711 +41475,58559,action,1307741054 +41475,58559,batman's voice,1307741078 +41475,58559,Heath Ledger,1307741025 +41475,58559,madness,1307741054 +41475,58559,music,1307741062 +41475,58559,psychology,1307741029 +41475,58559,Quotes,1307741054 +41475,58559,the joker,1307741054 +41475,58559,violence,1307741054 +41475,58998,good dialogue,1307743198 +41475,58998,Hawaii,1307743205 +41475,58998,hilarious,1307743201 +41475,58998,male nudity,1307743189 +41475,58998,Paul Rudd,1307743203 +41475,58998,surfing,1307743208 +41475,60684,Adaptation,1307740825 +41475,60684,characters,1307740836 +41475,60684,cinematography,1307740822 +41475,60684,dystopia,1307740808 +41475,60684,music,1307740844 +41475,60684,nuclear war,1307740816 +41475,60684,Nudity (Topless),1307740812 +41475,60684,sci-fi,1307740806 +41475,60684,storytelling,1307740814 +41475,60684,superhero,1307740818 +41475,64957,bittersweet,1307742611 +41475,64957,Brad Pitt,1307742607 +41475,64957,cinematography,1307742598 +41475,64957,drama,1307742605 +41475,64957,lengthy,1307742615 +41475,64957,Oscar (Best Effects - Visual Effects),1307742600 +41475,64957,predictable results,1307742661 +41475,64957,southern US,1307742628 +41475,64957,too sentimental,1307742588 +41475,64957,touching,1307742596 +41475,66310,acting,1308492394 +41475,66310,Conception of the world,1308492444 +41475,66310,disturbing,1308492366 +41475,66310,idea is better than the actual film,1308492462 +41475,66310,sickening,1308492366 +41475,66310,violence,1308492383 +41475,66310,Visuals,1308492397 +41475,68791,artificial intelligence,1307742980 +41475,68791,Christian Bale,1307742983 +41475,68791,Helena Bonham Carter,1307743024 +41475,68791,pace,1307742997 +41475,68791,post-apocalyptic,1307742969 +41475,68791,ROBOTS AND ANDROIDS,1307742967 +41475,68791,Sam Worthington,1307742970 +41475,69122,awkward,1307743085 +41475,69122,bad jokes,1307743110 +41475,69122,cliche,1307743060 +41475,69122,disappointing,1307743058 +41475,69122,Las Vegas,1307743073 +41475,69122,Nudity (Topless),1307743064 +41475,69122,plot,1307743099 +41475,69122,plot holes,1307743095 +41475,69122,strippers,1307743075 +41475,69122,structure,1307743127 +41475,69122,Zach Galifianakis,1307743077 +41475,69644,Bill Hader,1307743500 +41475,69644,Comedy,1307743496 +41475,69644,dinosaurs,1307743497 +41475,69644,emotion,1307743494 +41475,69644,franchise,1307743486 +41475,69644,lacks logic,1307743489 +41475,69644,sequel,1307743507 +41475,69644,Simon Pegg,1307743477 +41475,69644,Stereoscopic 3-D,1307743511 +41475,69644,talking animals,1307743492 +41475,70286,action,1307741437 +41475,70286,aliens,1307741440 +41475,70286,atmospheric,1307741478 +41475,70286,directorial debut,1307741438 +41475,70286,heartbreaking,1307741471 +41475,70286,intelligent,1307741463 +41475,70286,justice,1307741461 +41475,70286,mockumentary,1307742156 +41475,70286,role reversal,1307741458 +41475,70286,sci-fi,1307741441 +41475,70286,social commentary,1307741450 +41475,70286,social segregation,1307741451 +41475,70286,violence,1307741454 +41475,73017,adventure,1307740720 +41475,73017,bromantic,1307740754 +41475,73017,dialogue,1307740726 +41475,73017,England,1307740728 +41475,73017,Guy Ritchie,1307740704 +41475,73017,Jude Law,1307740707 +41475,73017,mark strong,1307740739 +41475,73017,mystery,1307740735 +41475,73017,Robert Downey Jr.,1307740710 +41475,73017,Soundtrack,1307740712 +41475,73017,violent,1307740713 +41475,76093,accent,1307742510 +41475,76093,adventure,1307742521 +41475,76093,animation,1307742524 +41475,76093,cute,1307742497 +41475,76093,dragons,1307742523 +41475,76093,fantasy,1307742531 +41475,76093,flying,1307742527 +41475,76093,funny,1307742498 +41475,76093,predictable,1307742516 +41475,76093,soundtrack,1307742501 +41475,76093,vikings,1307742502 +41475,79185,action,1307740645 +41475,79185,action packed,1307740655 +41475,79185,Cameron Diaz,1307740643 +41475,79185,car chase,1307740650 +41475,79185,fun,1307740677 +41475,79185,good versus evil,1307740661 +41475,79185,Peter Sarsgaard,1307740652 +41475,79185,predictable ending,1307740630 +41475,79185,spy,1307740674 +41475,79185,Tom Cruise,1307740634 +41475,79185,unrealistic,1307740637 +41475,79185,USA,1307740638 +41475,81834,Alan Rickman,1307742465 +41475,81834,British,1307742419 +41475,81834,dark,1307742421 +41475,81834,dark fantasy,1307742423 +41475,81834,isolation,1307742402 +41475,81834,lengthy,1307742411 +41475,81834,magic,1307742416 +41475,81834,ron weasley,1307742441 +41475,81834,Rupert Grint,1307742450 +41475,81834,teleportation,1307742397 +41475,81847,deadpan,1308493354 +41475,81847,singing,1308493375 +41475,81847,snarker,1308493360 +41475,86852,acting,1307739212 +41475,86852,actors,1307739212 +41475,86852,Anton Yelchin,1307739212 +41475,86852,humour,1307739212 +41475,86852,Jodie Foster,1307739214 +41475,86852,story,1307739214 +41475,86852,unreal ending,1307739216 +41475,86852,Unreal reactions,1307739216 +41491,260,classic sci-fi,1436836318 +41491,260,space adventure,1436836323 +41498,34048,action packed,1335510414 +41534,64501,inspirational,1285186088 +41544,260,hero's journey,1441403466 +41544,260,sci-fi,1441403455 +41544,3147,compassionate,1441403994 +41544,3147,emotional,1441403982 +41544,3147,great acting,1441403986 +41544,3147,heartwarming,1441403988 +41544,3147,male nudity,1441403999 +41544,3147,Tom Hanks,1441403979 +41544,52328,atmospheric,1441403568 +41544,52328,beautiful effects,1441403574 +41544,52328,cinematography,1441403565 +41544,52328,dark,1441403583 +41544,52328,psychological,1441403571 +41544,52328,psychology,1441403582 +41544,52328,sci-fi,1441403560 +41544,52328,space,1441403562 +41544,52328,visually stunning,1441403578 +41544,71135,future,1441403641 +41544,71135,horror,1441403643 +41544,71135,post-apocalyptic,1441403633 +41544,71135,sci-fi,1441403636 +41544,71135,space travel,1441403635 +41544,71135,twist ending,1441403640 +41544,112183,magical realism,1441403812 +41544,112183,single shot,1441403810 +41570,1644,HOT actress,1346255497 +41570,2541,HOT actress,1346255379 +41570,6218,HOT actress,1328030527 +41570,7346,HOT actress,1328030480 +41570,34150,HOT actress,1403810541 +41570,53464,HOT actress,1403810546 +41570,56167,bollywood,1328030115 +41570,56167,shahrukh khan,1328030265 +41570,58998,HOT actress,1328030490 +41570,71688,bollywood,1328030300 +41570,71688,kareena kapoor,1328030300 +41570,73170,bollywood,1328030707 +41570,73900,bollywood,1328030669 +41570,74154,HOT actress,1328030355 +41570,74426,bollywood,1328030622 +41570,74641,bollywood,1328030429 +41570,74787,bollywood,1328030279 +41570,74787,shahrukh khan,1328030279 +41570,76051,bollywood,1328030325 +41570,76056,bollywood,1328030445 +41570,79769,bollywood,1328030584 +41570,82244,Russian roulette,1328029200 +41570,82244,weak plot,1328029169 +41570,84374,HOT actress,1328030609 +41570,88069,bollywood,1328030512 +41570,88405,HOT actress,1346255462 +41570,96588,HOT actress,1403810386 +41594,109487,Christopher Nolan,1439266524 +41594,109487,space,1439266473 +41594,117533,documentary,1439266813 +41594,139421,rabit,1439266566 +41637,260,sci-fi,1443429767 +41637,260,space,1443429775 +41645,1,animation,1253632651 +41645,1,Pixar,1253632645 +41645,589,sci-fi,1253632661 +41645,1073,Fantasy,1253632720 +41645,1214,sci-fi,1253632916 +41645,1321,werewolf,1253632902 +41645,2987,animation,1253632715 +41645,6377,Pixar,1253632684 +41645,8961,Pixar,1253633078 +41645,68358,sci-fi,1253632753 +41645,70286,sci-fi,1253632699 +41659,96941,not good,1352968543 +41714,3881,who the hell listens to this crap?,1137466187 +41733,1282,2D animation,1435776074 +41733,1282,animation,1435776076 +41733,1282,artistic,1435776078 +41733,1282,classic,1435777384 +41733,1282,classical,1435777381 +41733,1282,classical music,1435776066 +41733,1282,Disney,1435776062 +41733,1282,Fantasy,1435777326 +41733,1282,music,1435777397 +41733,1282,synesthesia,1435777303 +41733,1282,unique,1435777400 +41733,3617,comedy,1438739275 +41733,3617,road trip,1438739272 +41733,3617,Teen movie,1438739278 +41733,55247,atmospheric,1440340515 +41733,55247,bittersweet,1440340514 +41733,55247,coming of age,1440340510 +41733,55247,existential,1440340543 +41733,55247,freedom,1440340511 +41733,55247,self discovery,1440340502 +41733,64716,moving,1448052298 +41733,64716,thought-provoking,1448052291 +41733,64716,unique,1448052302 +41733,75929,brothers,1450524433 +41733,75929,obsession,1450524350 +41733,75929,Possession,1450524346 +41733,75929,thiller,1450524388 +41733,80083,anime,1446402141 +41733,83506,fat jokes,1436094571 +41733,83506,God,1436094659 +41733,83506,inappropriate behaviour,1436094629 +41733,83506,irony,1436094635 +41733,83506,religion,1436094526 +41733,83506,Ricky Gervais,1436094517 +41733,83506,science,1436094510 +41733,83506,sexuality,1436094644 +41733,83506,stand-up comedy,1436094507 +41733,86298,adventure,1447717835 +41733,86298,animation,1447717812 +41733,86298,Brazil,1447717815 +41733,86298,Comedy,1447717825 +41733,86298,Rio de Janeiro,1447717799 +41733,86298,talking animals,1447717840 +41733,103233,animation,1446304807 +41733,103233,based on comic book,1446304951 +41733,103233,based on toy,1446304944 +41733,103233,Corruption,1446304888 +41733,103233,Cyborg,1446304998 +41733,103233,DC,1446304980 +41733,103233,DC Comics,1446304983 +41733,103233,Joker,1446304831 +41733,103233,Justice League,1446304876 +41733,103233,lego,1446304811 +41733,103233,Lex Luthor,1446304848 +41733,103233,PG,1446304862 +41733,103233,Robin,1446304827 +41733,103233,superhero,1446304773 +41733,103233,Superman,1446304823 +41733,103233,supervillain,1446304792 +41733,103233,Two Face,1446304839 +41733,105429,economics,1437400549 +41733,105429,equality,1437400558 +41733,105429,labor,1437400569 +41733,105429,politics,1437400577 +41733,106240,Thanksgiving,1441206981 +41733,106240,time travel,1441206974 +41733,109487,adventure,1445213373 +41733,109487,artificial intelligence,1445213470 +41733,109487,astronomy,1445213420 +41733,109487,black hole,1445213481 +41733,109487,emotional,1445213344 +41733,109487,expedition,1445213347 +41733,109487,exploration,1445213404 +41733,109487,future,1445213335 +41733,109487,interstellar trip,1445213328 +41733,109487,Murphy's Law,1445213322 +41733,109487,relativity,1445213128 +41733,109487,sci-fi,1445213060 +41733,109487,science fiction,1445213070 +41733,109487,settlers,1445213495 +41733,109487,space,1445213490 +41733,109487,space exploration,1445213444 +41733,109487,space travel,1445213466 +41733,109487,spaceships,1445213309 +41733,109487,time paradox,1445213413 +41733,109487,time travel,1445213477 +41733,109487,time-travel,1445213125 +41733,109487,visually appealing,1445213465 +41733,109487,wormhole,1445213479 +41733,115713,cybernetics,1446689223 +41733,115713,Future,1446689225 +41733,115713,Manipulations,1446689214 +41733,115713,pessimistic,1446689258 +41733,115713,philosophical,1446689227 +41733,115713,Psychological,1446689239 +41733,115713,robots,1446689231 +41733,115713,thought provoking,1446689228 +41733,122308,politically incorrect,1436094458 +41733,122308,stand up,1436094444 +41733,122308,stand-up,1436094441 +41733,129199,Average Frustrated Chump,1440423586 +41733,129199,dating,1440423535 +41733,129779,anime,1440511472 +41733,129779,artificial intelligence,1440511687 +41733,129779,cyberpunk,1440511692 +41733,129779,cyborg,1440511459 +41733,129779,sci-fi,1440511695 +41733,131739,batman,1446093185 +41733,131739,betrayal,1446093211 +41733,131739,loyalty,1446093214 +41733,131739,robin,1446093186 +41733,131739,secret society,1446093209 +41733,131739,superhero,1446093156 +41733,131739,Talon,1446093189 +41733,131739,vigilante,1446093181 +41733,135137,arcade,1450234721 +41733,135137,video games,1450234717 +41733,135861,comedy,1445310175 +41733,136604,camp,1445025996 +41733,136604,cheerleader,1445025990 +41733,136604,cheerleading,1445025994 +41733,136604,competition,1445025999 +41733,136604,lesbian,1445026045 +41733,136604,nudity,1445026003 +41733,136604,scholarship,1445026100 +41733,136604,stripper,1445026011 +41733,136604,strippers,1445026009 +41733,136604,teen,1445026031 +41733,138104,friends,1445619804 +41733,138104,monster,1445619770 +41733,138104,superhero,1445619762 +41733,139859,AI,1440515096 +41733,139859,anime,1440515095 +41733,139859,cyborg,1440515093 +41733,139859,japan,1440515166 +41733,139859,Sci-Fi,1440515101 +41733,139859,science fiction,1440515106 +41733,139863,AI,1440554016 +41733,139863,anime,1440554010 +41733,139863,sci-fi,1440554004 +41733,139863,Virus,1440554021 +41733,140367,based on short story,1441633108 +41733,140367,cobra,1441633156 +41733,140367,heroism,1441633058 +41733,140367,mongoose,1441633143 +41733,140367,Rudyard Kipling,1441633130 +41733,140367,snake,1441633155 +41733,140367,The Jungle Book,1441633121 +41733,140553,animation,1440973132 +41733,140565,1D characters,1439283191 +41733,140565,family,1439283151 +41733,140565,friends,1439283161 +41733,140565,kids,1439283156 +41733,140565,rap,1439283172 +41733,140565,singer,1439283168 +41733,141942,pokemon,1441639932 +41733,141970,adventure,1441622853 +41733,141970,pokemon,1441622861 +41733,147923,Comedy,1448668658 +41733,147923,Family Guy,1448668651 +41733,147923,Sketches,1448668655 +41733,147923,Stand-Up,1448668664 +41733,148976,Captain America,1451918601 +41733,148976,hulk,1451918578 +41733,148976,ironman,1451918579 +41733,148976,superhero,1451918564 +41746,2028,World War II,1145322832 +41753,4046,Quakers,1167263418 +41753,36513,Australian,1167269272 +41753,43919,Sophie Monk,1167270945 +41755,318,prison,1212243792 +41755,593,serial killer,1212241889 +41801,17,boring,1197146588 +41801,17,nothing happens,1197146588 +41801,186,comedy,1197145591 +41801,186,Good Romantic Comedies,1197145575 +41801,186,hilarious,1197145609 +41801,261,excellent,1197146471 +41801,261,Kirsten Dunst,1197146471 +41801,261,Louisa May Alcott,1197146471 +41801,261,post-Civil War,1197146471 +41801,261,Winona Ryder,1197146471 +41801,339,Good Romantic Comedies,1197145668 +41801,357,Hugh Grant,1197146814 +41801,440,Kevin Kline,1197145885 +41801,468,not very good,1197146524 +41801,587,Good Romantic Comedies,1197145560 +41801,597,Good Romantic Comedies,1197145630 +41801,838,1800s,1197146749 +41801,838,Gwyneth Paltrow,1197146749 +41801,1307,Good Romantic Comedies,1197145655 +41801,1393,athlets,1197146328 +41801,1393,Tom Cruise,1197146055 +41801,1704,Ben Affleck,1197145438 +41801,1704,Matt Damon,1197145438 +41801,1704,Minnie Driver,1197145470 +41801,1704,Robin Williams,1197145438 +41801,1721,Good Romantic Comedies,1197145645 +41801,1874,true love,1208635711 +41801,2144,John Cusack,1197146779 +41801,2581,Good Romantic Comedies,1197145550 +41801,2671,excellent!,1197145759 +41801,2671,Good Romantic Comedies,1197145759 +41801,2724,Good Romantic Comedies,1197146931 +41801,2978,Matthew Perry,1209950374 +41801,3299,Lisa Kudrow,1192391251 +41801,3299,Meg Ryan,1192391223 +41801,3998,Meg Ryan,1192391143 +41801,4168,Kirsten Dunst,1209951103 +41801,4246,Good Romantic Comedies,1197146954 +41801,4992,Good Romantic Comedies,1197145531 +41801,5303,Meg Ryan,1192380736 +41801,5349,Kirsten Dunst,1197146495 +41801,5620,Good Romantic Comedies,1197145681 +41801,5742,Supreme Court,1197145248 +41801,5742,Walter Matthau,1197145248 +41801,6885,Meg Ryan,1192381007 +41801,7154,Good Romantic Comedies,1197145722 +41801,7315,Meg Ryan,1192380958 +41801,8969,Good Romantic Comedies,1197145706 +41801,34336,Good Romantic Comedies,1197146944 +41801,34336,John Cusack,1197146788 +41801,38798,Cameron Diaz,1197146895 +41801,40629,Keira Knightley,1197146555 +41801,42007,jennifer aniston,1192392911 +41801,47610,Brilliant Film,1192394266 +41801,51903,movie to see,1192332460 +41801,52668,Meg Ryan,1192391100 +41801,54116,Fate,1197145033 +41801,54116,Male Female Relationship,1197145150 +41816,260,action,1434912779 +41816,260,thriller,1434912769 +41819,405,immortals,1173922659 +41819,3889,immortals,1173922680 +41836,260,forbidden love,1436734685 +41836,260,space,1436734674 +41854,1049,adventure,1146963430 +41854,1049,Africa,1146963453 +41854,2791,funny,1179368480 +41854,4321,funny,1179368367 +41854,7293,funny,1179368457 +41854,31685,funny,1146963004 +41854,42197,hysterical in a quirky way,1179368148 +41870,296,action,1425845174 +41870,296,comedy,1425845174 +41870,296,intellectual,1425845174 +41901,296,bruce willis,1422040765 +41901,296,Quentin Tarantino,1422040769 +41901,296,Uma Thurman,1422040777 +41901,593,Anthony Hopkins,1422986746 +41901,593,classic,1422986734 +41901,593,dialogs,1422986767 +41901,858,Al Pacino,1422986636 +41901,858,classic,1422986641 +41901,858,Marlon Brando,1422986634 +41901,904,classic,1422987459 +41901,904,Grace Kelly,1422987440 +41901,904,James Stewart,1422987449 +41901,1227,atmospheric,1422985775 +41901,1227,Robert De Niro,1422985782 +41901,1227,Sergio Leone,1422985762 +41901,1237,death,1422040658 +41901,1237,existentialism,1422040670 +41901,1237,god,1422040687 +41901,1291,Biblical,1422987293 +41901,1291,indiana jones,1422987298 +41901,1291,Sean Connery,1422987296 +41901,2115,action,1422987253 +41901,2115,india,1422987259 +41901,2115,Indiana Jones,1422987241 +41901,2324,father-son relationship,1422985652 +41901,2324,Roberto Benigni,1422985565 +41901,2324,sentimental,1422985644 +41901,2571,dystopia,1422986813 +41901,2571,Keanu Reeves,1422986815 +41901,2571,virtual reality,1422986819 +41901,2671,British,1423157027 +41901,2671,Julia Roberts,1423157024 +41901,2671,romance,1423157021 +41901,2730,atmospheric,1422984934 +41901,2730,music,1422984929 +41901,2730,Stanley Kubrick,1422984923 +41901,2858,coming of age,1422986029 +41901,2858,dark comedy,1422986016 +41901,2858,kevin spacey,1422986016 +41901,2959,disturbing,1422987034 +41901,2959,Edward Norton,1422987024 +41901,2959,satirical,1422987038 +41901,3089,classic,1422986170 +41901,3089,neorealism,1422986172 +41901,3089,Rome,1422986180 +41901,3578,Ridley Scott,1422984983 +41901,3578,Rome,1422984986 +41901,3578,Russell Crowe,1422984980 +41901,4993,Adventure,1422986481 +41901,4993,Magic,1422986483 +41901,4993,tolkien,1422986480 +41901,5952,Adventure,1422986497 +41901,5952,scenic,1422986502 +41901,5952,war,1422986506 +41901,7153,fantasy,1422986531 +41901,7153,great ending,1422986551 +41901,7153,mythology,1422986540 +41901,8950,Christian Bale,1422986896 +41901,8950,dark,1422986898 +41901,8950,guilt,1422986906 +41901,27773,paranoid,1422985930 +41901,27773,revenge,1422985922 +41901,27773,surreal,1422985934 +41901,48516,Jack Nicholson,1422984694 +41901,48516,Leonardo DiCaprio,1422984687 +41901,48516,Martin Scorsese,1422984701 +41901,49130,France,1422984783 +41901,49130,life reflection,1422984831 +41901,49130,Marion Cotillard,1422984779 +41901,58559,action,1422987142 +41901,58559,Heath Ledger,1422987102 +41901,58559,Morgan Freeman,1422987127 +41901,59615,aliens,1422987324 +41901,59615,Cate Blanchett,1422987348 +41901,59615,Harrison Ford,1422987332 +41901,79132,Leonardo DiCaprio,1422985482 +41901,79132,mindfuck,1422985518 +41901,79132,visually appealing,1422985520 +41901,83302,Guillaume Canet,1422986099 +41901,83302,husband-wife relationship,1422986097 +41901,83302,Keira Knightley,1422986094 +41901,92259,disability,1422986587 +41901,92259,funny,1422986598 +41901,92259,rich and poor,1422986592 +41901,99114,Christoph Waltz,1422987539 +41901,99114,funny,1422987530 +41901,99114,Leonardo DiCaprio,1422987527 +41901,103984,Paolo Sorrentino,1422040915 +41901,103984,Roma,1422040840 +41901,103984,Toni Servillo,1422040821 +41901,106918,Ben Stiller,1423156674 +41901,106918,Greenland,1423156655 +41901,106918,Iceland,1423156651 +41901,109374,funny,1422985051 +41901,109374,Ralph Fiennes,1422985044 +41901,109374,Willem Dafoe,1422985077 +41901,109487,ambitious,1422985452 +41901,109487,Matthew McConaughey,1422985428 +41901,109487,relativity,1422985442 +41908,2959,dark comedy,1448099944 +41908,4226,nonlinear,1448099973 +41910,260,Akira Kurosawa,1439762486 +41910,260,classic sci-fi,1439762461 +41918,86578,nudity,1348032392 +41943,260,fantasy,1431336602 +41943,260,sci-fi,1431336609 +41953,111,cult film,1354033605 +41953,111,Martin Scorsese,1354033608 +41953,111,social commentary,1354033602 +41953,247,stylized,1353702088 +41953,247,surreal,1353702083 +41953,247,surrealism,1353702082 +41953,247,visceral,1353702078 +41953,745,animation,1354033746 +41953,1079,dark comedy,1353703178 +41953,1079,dark humor,1353703182 +41953,1079,John Cleese,1353703171 +41953,1079,quirky,1353703185 +41953,1080,Monty Python,1354033667 +41953,1089,nonlinear,1354033640 +41953,1089,organized crime,1354033636 +41953,1089,Quentin Tarantino,1354033638 +41953,1219,Alfred Hitchcock,1354033644 +41953,1219,psychology,1354033646 +41953,1256,Marx Brothers,1354033718 +41953,1258,cult film,1354033633 +41953,1258,psychology,1354033630 +41953,1729,dark comedy,1354033685 +41953,2288,disturbing,1354033600 +41953,2529,post-apocalyptic,1354033650 +41953,2529,twist ending,1354033653 +41953,3030,atmospheric,1354033596 +41953,3546,insanity,1353702162 +41953,3546,psychological thriller,1353702155 +41953,5618,atmospheric,1354033628 +41953,5618,surreal,1354033624 +41953,5662,Dave Foley,1354033569 +41953,6287,Adam Sandler,1354044970 +41953,6713,Satoshi Kon,1354033681 +41953,8188,elegant,1353701935 +41953,27592,stylized,1354033620 +41953,27592,violent,1354033611 +41953,27773,depressing,1353702390 +41953,27773,disturbing,1353702357 +41953,27773,hallucinatory,1353702345 +41953,27773,paranoid,1353702396 +41953,27773,revenge,1353702393 +41953,27773,stylized,1353702395 +41953,27773,twist ending,1353702400 +41953,27773,vengeance,1353702404 +41953,30745,Takashi Miike,1354033711 +41953,31658,Studio Ghibli,1354033715 +41953,52885,anime,1354033657 +41953,55820,coen brothers,1354033663 +41953,58559,Batman,1354033727 +41953,67997,british,1354033698 +41953,67997,politics,1354033700 +41953,67997,satire,1354033695 +41983,318,Morgan Freeman,1433157128 +41983,318,powerful ending,1433157132 +41983,318,reflective,1433157134 +41983,527,holocaust,1433156853 +41983,858,Al Pacino,1433156903 +41983,858,Mafia,1433156905 +41983,858,masterpiece,1433156909 +41983,1240,Action,1433157078 +41983,1240,Arnold Schwarzenegger,1433157071 +41983,1240,artificial intelligence,1433157076 +41983,2762,excellent script,1433157263 +41983,2762,psychology,1433157260 +41983,48516,Leonardo DiCaprio,1433157213 +41983,48516,Martin Scorsese,1433157209 +41983,48516,Matt Damon,1433157216 +41983,48516,undercover cop,1433157208 +41983,58559,Christopher Nolan,1433156752 +41983,68954,adventure,1433157166 +41983,68954,Pixar,1433157164 +41983,73881,aamir khan,1433157023 +41983,73881,friendship,1433157042 +41983,73881,India,1433157015 +41983,79132,alternate reality,1433156820 +41983,79132,Christopher Nolan,1433156802 +41983,79132,Leonardo DiCaprio,1433156810 +41983,79132,thought-provoking,1433156802 +42009,260,comedy,1426671006 +42009,260,fantasy,1426671006 +42009,260,scifi,1426671006 +42014,108977,thriller,1439211616 +42014,113300,hitoshi matsumoto,1446423847 +42014,135991,based on comic book,1439212493 +42014,135991,japanese,1439212483 +42014,140361,hitoshi matsumoto,1446423864 +42016,260,classic sci-fi,1434561576 +42016,260,space,1434561552 +42025,7934,parody,1139894883 +42025,8950,psychology,1139894838 +42036,260,action,1442555478 +42036,260,space adventure,1442555460 +42036,260,space epic,1442555493 +42045,8132,Boxing,1229480740 +42092,45447,bullshit history,1157237229 +42098,2959,surreal,1139271013 +42115,260,action,1433622745 +42115,260,sci-fi,1433622779 +42146,112852,adventure,1428877151 +42146,112852,fantasy,1428877151 +42146,112852,sci-fi,1428877151 +42180,78499,Pixar,1437254234 +42185,48385,satire,1338321113 +42185,48385,social commentary,1338321117 +42193,7981,better than the american version,1171751150 +42193,8640,unbearable,1140897725 +42193,27905,Japanese Madness,1136947773 +42193,33834,mmm... brains...,1139658540 +42193,49396,fucking awesome,1173213448 +42193,49396,Jack Black,1173213464 +42193,49396,rock and roll,1173213393 +42193,70286,aliens,1252372591 +42193,70286,fake documentary,1252372613 +42193,70286,genetics,1252372617 +42193,70286,humor,1252372619 +42193,70286,IMDB Top 250,1252372612 +42193,70286,intelligent sci-fi,1252372594 +42193,70286,segregation,1252372606 +42193,70286,Special Effects,1252372596 +42193,70286,style,1252372628 +42193,70286,weapons,1252372607 +42196,1354,Boring,1149463120 +42196,2661,Nice and campy!,1137515020 +42196,3691,Stupid,1138573390 +42196,4291,"The three ""imagination"" sequences they had when they were stoned ruined the movie.",1138573258 +42196,4359,Was disappointed; thought movie was kind of stupid,1147195662 +42196,6410,No plot!!!,1137602985 +42196,8874,Very British and very funny!,1137267749 +42200,2405,When the Going Gets Tough!,1187518489 +42200,2478,Dusty Bottoms Up!,1187518295 +42200,2872,From the Water to Eternity!,1187518441 +42200,2953,NOT Again!,1187518468 +42200,2953,Oh No,1187518469 +42200,3362,Afternoon you won't forget!,1187518397 +42200,6218,Kick 'em like a girl!,1187518340 +42203,5445,climatic,1139333163 +42203,30749,great cast excellent,1139319251 +42203,34048,book better than movie,1139417054 +42213,1726,nudity (rear),1282605368 +42213,1726,Nudity (Topless),1282605340 +42213,2561,alcoholism,1282604824 +42213,2762,ghosts/afterlife,1282604596 +42213,2762,horror,1282604610 +42213,3994,sexualized violence,1282604686 +42213,45880,nudity (rear),1282605485 +42213,45880,nudity (topless),1282605474 +42213,59333,amoral characters,1282605126 +42213,59333,infidelity,1282605111 +42213,59333,Scotland,1282605166 +42213,59333,wedding theme,1282605173 +42213,69606,amoral characters,1282605016 +42213,69606,unmarried sex,1282604993 +42221,745,Great,1138139397 +42221,1356,Intense,1138139399 +42222,508,loved Tom Hanks,1144039596 +42222,1307,i know every word by heart,1144039635 +42222,1923,fun,1144039628 +42222,2997,different but very good,1144039614 +42222,4306,comedia,1144039638 +42222,4993,way too long,1144039583 +42234,4993,Adventure,1425868563 +42234,4993,based on a book,1425868536 +42234,4993,beautifully filmed,1425868552 +42234,4993,epic,1425868524 +42234,4993,fantasy,1425868518 +42234,4993,Magic,1425868565 +42234,4993,Oscar (Best Cinematography),1425868556 +42234,4993,scenic,1425868529 +42234,4993,wizards,1425868572 +42234,89745,action,1425868655 +42234,89745,ensemble cast,1425868629 +42234,89745,excellent cinematography,1425868640 +42234,89745,fun,1425868653 +42234,89745,Hulk,1425868633 +42234,89745,humor,1425868627 +42234,89745,predictable,1425868645 +42234,89745,superhero,1425868620 +42234,89745,superhero team,1425868648 +42234,89745,visually appealing,1425868637 +42250,40826,broadway,1139455595 +42254,260,space,1434896534 +42254,260,supernatural,1434896584 +42255,1305,classic,1140786508 +42310,129779,artificial intelligence,1432022944 +42310,129779,sci-fi,1432022933 +42374,128360,drama,1425463562 +42374,128360,one-room,1425463562 +42374,128360,tension building,1425463562 +42405,91542,predictable,1380512364 +42405,109487,far too long,1427609988 +42405,113378,plot makes no sense,1427609875 +42405,114007,memory,1422084217 +42405,114180,dystopia,1421558400 +42405,114180,IMAX Digital only,1421558385 +42405,114180,IMAX DMR,1421558387 +42405,114180,plot holes,1421558373 +42405,114180,post-apocalyptic,1421558394 +42405,115149,Keanu Reeves,1427609907 +42405,127319,plot twists,1427610514 +42405,127323,fake imdb rating,1423339928 +42405,127323,plot holes,1423338313 +42422,98361,cinematography,1376763408 +42427,638,Ian Mckellen,1178667054 +42427,1656,Ian Mckellen,1178667073 +42427,2071,Ian Mckellen,1178667096 +42427,2071,Richard Gere,1178667103 +42427,2891,William H. Macy,1178667303 +42427,3793,fameke Jasson,1178667537 +42427,3793,family,1178667537 +42427,3793,Halle Berry,1178667391 +42427,3793,Hugh Jackman,1178667537 +42427,3793,Ian Mckellen,1178667380 +42427,3793,Patrick Stewart,1178667386 +42427,6333,alan Cumming,1178667552 +42427,6333,Fameke Jasson,1178667485 +42427,6333,Halle Berry,1178667485 +42427,6333,Hugh Jackman,1178667485 +42427,6333,Ian Mckellen,1178667485 +42427,6333,Patrick Stewart,1178667460 +42427,8861,Zombies,1178668680 +42427,45499,Fameke Jasson,1178667606 +42427,45499,Hugh Jackman,1178667606 +42427,45499,Ian Mckellen,1178667606 +42427,45499,Magneto,1178667606 +42427,45499,Patrick Stewart,1178667606 +42427,45499,Professor Xavier,1178667606 +42428,150,space,1155995063 +42460,18,multiple storylines,1231198828 +42460,18,Quentin Tarantino,1231198826 +42460,145,action,1231199070 +42460,145,car chase,1231199072 +42460,145,Will Smith,1231199067 +42460,160,gorillas,1160004216 +42460,260,sci-fi,1160004268 +42460,260,space,1160004272 +42460,318,classic,1160005404 +42460,318,prison,1160005396 +42460,648,Action,1160012562 +42460,858,classic,1160013185 +42460,858,Mafia,1160013187 +42460,968,zombies,1160048830 +42460,1262,World War II,1160049276 +42460,1262,WWII,1160049277 +42460,1267,assassination,1160008844 +42460,1267,classic,1160008841 +42460,1466,Mafia,1160006878 +42460,1676,based on a book,1231198987 +42460,1676,satire,1231198988 +42460,1676,space,1231198985 +42460,1994,ghosts,1162074525 +42460,2232,weird,1160011419 +42460,2428,Jon Stewart,1160013314 +42460,2549,video game adaptation,1160010942 +42460,2762,twist ending,1162074671 +42460,2997,dark comedy,1231198786 +42460,2997,surreal,1231198784 +42460,3504,journalism,1160048533 +42460,4034,drugs,1168180324 +42460,4546,kidnapping,1160996999 +42460,4546,Obsession,1160997001 +42460,6874,Tarantino,1160005446 +42460,7451,High School,1160049411 +42460,7451,suprisingly clever,1160049412 +42460,7569,007,1160048951 +42460,7569,james bond,1160048928 +42460,7981,police,1231198705 +42460,7981,undercover cop,1231198707 +42460,27410,Holocaust,1231198168 +42460,27410,World War II,1231198166 +42460,27904,based on a book,1168180535 +42460,27904,Philip K. Dick,1168180533 +42460,27912,journalism,1163105078 +42460,27912,politics,1163105080 +42460,33493,space,1231198931 +42460,33880,quirky,1231198098 +42460,33880,weird,1160011099 +42460,37386,MTV,1160011328 +42460,37386,visually interesting--that's about it,1160011332 +42460,44397,gore,1173211924 +42460,44397,remake,1173211920 +42460,45062,conspiracy,1160048644 +42460,45062,secret service,1160048642 +42460,46965,hilarity,1160004404 +42460,46965,Planes,1160004410 +42460,46965,Snakes,1160004407 +42460,49272,James Bond,1165757377 +42460,55820,coen brothers,1231198601 +42488,261,excellent,1186322392 +42488,1088,musical parodies,1186322386 +42488,1747,confusing,1186322402 +42488,2424,fun,1186322408 +42488,3081,funny,1186322350 +42488,3081,horror,1186322350 +42488,4246,comedy,1186322370 +42488,4246,romance,1186322370 +42491,558,dragon,1368043962 +42491,987,entirely dialogue,1368043926 +42491,1068,noir thriller,1368043645 +42491,1359,arnold,1368043779 +42491,1422,conspiracy theory,1368043943 +42491,1544,spielberg,1368044047 +42491,1693,spielberg,1368044047 +42491,1783,neo-noir,1368043873 +42491,2579,neo-noir,1368043873 +42491,2661,mars,1368043693 +42491,2739,spielberg,1368044047 +42491,2819,conspiracy theory,1368043943 +42491,3153,dragon,1368043962 +42491,3489,spielberg,1368044047 +42491,3698,arnold,1368043779 +42491,3929,marx brothers,1368044073 +42491,3986,arnold,1368043779 +42491,3997,dragon,1368043962 +42491,4091,cheerleading,1368043760 +42491,4189,christian,1368043845 +42491,4189,jesus,1368043558 +42491,4259,entirely dialogue,1368043926 +42491,4370,spielberg,1368044047 +42491,4558,arnold,1368043779 +42491,4783,mountain climbing,1368044014 +42491,4802,screwball comedy,1368043809 +42491,5363,cheerleading,1368043760 +42491,5832,christian,1368043845 +42491,5882,treasure,1368043607 +42491,5893,neo-noir,1368043873 +42491,6254,screwball comedy,1368043810 +42491,6260,christian,1368043845 +42491,6450,stranded,1368043673 +42491,6609,jesus,1368043558 +42491,6683,bollywood,1368043496 +42491,6768,christian,1368043845 +42491,6986,jesus,1368043558 +42491,7004,arnold,1368043779 +42491,7217,noir thriller,1368043645 +42491,7223,noir thriller,1368043645 +42491,7335,noir thriller,1368043645 +42491,7584,screwball comedy,1368043809 +42491,7943,noir thriller,1368043645 +42491,8235,marx brothers,1368044073 +42491,8711,screwball comedy,1368043810 +42491,8796,marx brothers,1368044073 +42491,8972,conspiracy theory,1368043943 +42491,25750,marx brothers,1368044073 +42491,25850,screwball comedy,1368043809 +42491,25927,noir thriller,1368043645 +42491,26398,mars,1368043693 +42491,27822,stranded,1368043673 +42491,34048,spielberg,1368044047 +42491,34536,World War II,1137552613 +42491,42002,mel brooks,1138919484 +42491,43560,dr. seuss,1368043994 +42491,51086,conspiracy theory,1368043943 +42491,55732,mars,1368043693 +42491,56775,conspiracy theory,1368043943 +42491,57951,treasure,1368043607 +42491,66097,dr. seuss,1368043994 +42491,68159,Helen Mirren,1242236328 +42491,68159,Rachel McAdams,1242236347 +42491,68159,Russell Crowe,1242236334 +42491,68554,conspiracy theory,1368043943 +42491,81562,mountain climbing,1368044014 +42491,84601,short-term memory loss,1368044027 +42491,91529,dark hero,1368043712 +42491,91976,stranded,1368043673 +42491,97938,stranded,1368043673 +42518,79357,nonlinear,1369880160 +42518,79357,philosophy,1369880173 +42518,79357,sci-fi,1369880137 +42518,79357,thought provoking,1369880140 +42526,125914,action,1429676175 +42526,125914,comedy,1429676180 +42533,50,Kevin Spacey,1154193836 +42533,260,sci-fi,1154193982 +42533,296,Quentin Tarantino,1154194234 +42533,318,classic,1154193826 +42533,356,Tom Hanks,1154194014 +42533,527,holocaust,1154193844 +42533,593,serial killer,1154193997 +42533,608,Coen Brothers,1154194125 +42533,733,Sean Connery,1154193414 +42533,858,classic,1154193856 +42533,919,classic,1154194025 +42533,1035,classic,1154194216 +42533,1073,classic,1154194088 +42533,1198,indiana jones,1154193932 +42533,1220,John Belushi,1154194192 +42533,1221,classic,1154194045 +42533,1265,Bill Murray,1154194059 +42533,1270,sci-fi,1154193867 +42533,1302,baseball,1154194170 +42533,1307,chick flick,1154194163 +42533,1333,Alfred Hitchcock,1154194102 +42533,1387,classic,1154194200 +42533,1784,Jack Nicholson,1154194007 +42533,1954,boxing,1154194208 +42533,2268,Jack Nicholson,1154193409 +42533,2302,enjoyable,1154193390 +42533,2797,Tom Hanks,1154194150 +42533,3060,classic,1154194054 +42533,3421,John Belushi,1154194136 +42533,3466,Robert Downey Jr,1154194450 +42533,3548,classic,1154194098 +42533,42725,stoner,1154193639 +42534,19,Rhino action :D,1312919607 +42534,19,Stupid as Hell,1312919595 +42534,32,sci-fi,1312918062 +42534,593,mental illness,1312918426 +42534,593,psychology,1312918424 +42534,1203,social commentary,1312918758 +42534,1350,antichrist,1312921003 +42534,2117,post-apocalyptic,1312920520 +42534,2232,bad acting,1312918649 +42534,2232,mathematics,1312918659 +42534,2232,psychological,1312918626 +42534,2313,black and white,1312917561 +42534,2329,powerful ending,1312918259 +42534,2329,racism,1312918248 +42534,2329,skinhead,1312918252 +42534,2700,musical,1312920462 +42534,2700,satire,1312920456 +42534,2710,overrated,1312919537 +42534,2791,classic,1312921480 +42534,2791,Slapstick,1312921478 +42534,2858,dark comedy,1312917594 +42534,2858,social commentary,1312917597 +42534,2959,twist ending,1312921221 +42534,3949,social commentary,1312917714 +42534,4226,nonlinear,1312921177 +42534,4975,surreal,1312921161 +42534,5679,creepy,1312920983 +42534,6796,black,1312918365 +42534,6796,ghetto,1312918346 +42534,6796,social commentary,1312918353 +42534,6874,revenge,1312917933 +42534,7371,artsy,1312918723 +42534,7371,philosophy,1312918713 +42534,8906,cannibals,1312921847 +42534,8906,cult-classic,1312921842 +42534,8906,social commentary,1312921858 +42534,8947,not remotely scary,1312920944 +42534,8947,unintentional comedy,1312920946 +42534,26629,campy,1312920287 +42534,26629,clowns,1312920295 +42534,27773,twist ending,1312918001 +42534,32587,revenge,1312921261 +42534,32587,stylized,1312921236 +42534,32587,surreal,1312921255 +42534,32587,violence,1312921258 +42534,39052,amateur,1312922362 +42534,42723,stupid stereotypes,1312920416 +42534,42723,torture,1312920385 +42534,44195,cigarettes,1312918232 +42534,44195,dark comedy,1312918221 +42534,44195,social commentary,1312918224 +42534,44779,intentionally bad,1312922063 +42534,46578,dark comedy,1312917661 +42534,46578,satire,1312917667 +42534,48394,cgi,1312918487 +42534,48394,surreal,1312918513 +42534,48394,violence,1312918510 +42534,48780,steampunk,1312918023 +42534,51255,british comedy,1312917877 +42534,51255,parody,1312917879 +42534,52952,coming of age,1312918314 +42534,52952,England,1312918295 +42534,52952,original skinhead,1312918289 +42534,52952,realistic,1312918306 +42534,53519,disappointing,1312919579 +42534,53953,boring,1312922095 +42534,54272,based on a TV series,1312920359 +42534,54272,Based on a TV show,1312920353 +42534,55247,based on a true story,1312917699 +42534,55908,acting,1312918583 +42534,55908,entirely dialogue,1312918578 +42534,55908,philosophical,1312918573 +42534,56145,cgi,1312918543 +42534,56145,surprise ending,1312918537 +42534,58554,bullying,1315776177 +42534,60128,unfunny,1312920500 +42534,60461,orphanage,1312921911 +42534,61024,unfunny,1312921407 +42534,61240,swedish,1312918455 +42534,62434,juvenile humor,1312917734 +42534,63131,geeks,1312921436 +42534,64614,Clint Eastwood,1312917488 +42534,64614,culture clash,1312917472 +42534,64614,ending,1312917493 +42534,64614,revenge,1312917477 +42534,64614,sacrifice,1312917481 +42534,64839,realistic,1312917549 +42534,64839,touching,1312917530 +42534,64839,violence,1312917537 +42534,69134,Mental Illness,1312921044 +42534,69784,unfunny,1312920437 +42534,74789,3D,1312921377 +42534,76091,comedic in parts,1312920216 +42534,76091,Korea,1312920253 +42534,76091,mental illness,1312920228 +42534,76091,mother-son relationship,1312920231 +42534,76091,stylized,1312920235 +42534,77307,cat killing,1312921082 +42534,77307,destruction of the nuclear family's model,1312921117 +42534,77307,disturbing,1312921077 +42534,77800,dark comedy,1312917849 +42534,77800,funny,1312917857 +42534,77800,silly,1312917862 +42534,78574,realism,1312920140 +42534,78574,thin story,1301849367 +42534,78574,white trash,1312920128 +42534,78655,amateurish,1312917795 +42534,78655,violence,1312917781 +42534,80219,black comedy,1312917907 +42534,80219,dark comedy,1312917911 +42534,80219,satire,1312917917 +42534,80584,queer,1315776105 +42534,81257,africa,1312920856 +42534,81257,denmark,1312920876 +42534,81257,moral ambiguity,1312920829 +42534,81257,philosophical,1312920820 +42534,81791,boring,1319303094 +42534,82463,bland,1312920093 +42534,82463,middle-aged people,1312919772 +42534,82667,revenge,1312917952 +42534,82667,visually appealing,1312917962 +42534,84601,action,1312918141 +42534,84601,identity theft,1312918137 +42534,86833,flawed characters,1312917647 +42534,86833,poop humor,1312917621 +42560,260,Science Fiction,1441096928 +42560,260,space adventure,1441096955 +42566,4025,enjoyed despite myself,1373942837 +42566,4025,pageant,1373942840 +42566,4025,ridiculous,1373942842 +42583,44849,CGI B/W,1204897748 +42583,55284,conspiracy,1204897666 +42583,60397,Meryl Streep,1251756667 +42583,60397,music:ABBA,1251756657 +42596,1148,british,1441632429 +42596,1148,Clay Animation,1441632420 +42596,1148,robots,1441632445 +42596,1148,Wallace & Gromit,1441632471 +42635,318,hope,1206809569 +42642,17,Jane Austen,1325360643 +42642,47,dark,1325360370 +42642,47,disturbing,1325360390 +42642,47,psychology,1325360360 +42642,308,Kieślowski,1423487366 +42642,308,Three Colors trilogy,1423487410 +42642,308,touching,1423487413 +42642,778,based on a book,1290170775 +42642,778,black comedy,1290170765 +42642,778,British,1290170770 +42642,778,dark comedy,1290170814 +42642,778,imdb top 250,1290170818 +42642,778,Nudity (Full Frontal - Notable),1290170822 +42642,778,Nudity (Full Frontal),1290170796 +42642,778,social commentary,1290170787 +42642,778,violence,1290170799 +42642,778,violent,1290170801 +42642,838,funny,1325360614 +42642,838,Jane Austen,1325360612 +42642,919,dreamlike,1325361006 +42642,919,musical,1325361010 +42642,1183,sentimental,1325361721 +42642,1641,British,1325361690 +42642,1641,funny,1325361693 +42642,1641,touching,1325361687 +42642,1682,dark comedy,1325361018 +42642,1682,social commentary,1325361024 +42642,1729,great soundtrack,1325361488 +42642,1729,Quentin Tarantino,1325361491 +42642,2324,bittersweet,1325361429 +42642,2324,optimism,1325361442 +42642,2324,sad but good,1325361436 +42642,2324,sentimental,1325361432 +42642,2337,soundtrack,1334215383 +42642,2427,atmospheric,1325360328 +42642,2427,melancholy,1325360315 +42642,2427,psychology,1325360323 +42642,2427,reflective,1325360319 +42642,2840,controversial,1325361062 +42642,2840,thriller,1325361072 +42642,2858,black comedy,1325360886 +42642,2858,dark comedy,1325360884 +42642,2858,thought-provoking,1325360879 +42642,2959,disturbing,1325361705 +42642,2959,psychology,1325361708 +42642,2959,thought-provoking,1325361710 +42642,3148,Drama,1325361771 +42642,3261,Bill Pullman,1290171116 +42642,3261,music,1325360339 +42642,3261,quirky humor,1325360344 +42642,3261,relationships,1325360350 +42642,3261,wired 50 greatest soundtracks,1290171126 +42642,3481,90s,1290171797 +42642,3481,actor talks to audience,1290171808 +42642,3481,based on a book,1290171712 +42642,3481,book by Nick Hornby,1290171717 +42642,3481,funny,1290171788 +42642,3481,hilarious,1290171785 +42642,3481,John Cusack,1290171726 +42642,3481,Nick Hornby,1290171728 +42642,3481,relationships,1290171730 +42642,3481,wired 50 greatest soundtracks,1290171734 +42642,3535,insanity,1325360871 +42642,3535,psychology,1325360867 +42642,3538,British,1325451119 +42642,3538,cultural clash,1325451116 +42642,3755,disaster,1325416379 +42642,3755,overrated,1325416383 +42642,3755,search and rescue,1325416395 +42642,3885,friends vs lovers,1290172029 +42642,3885,funny moments,1290172081 +42642,3885,Hillarious comedy,1290172092 +42642,3885,life,1290172100 +42642,3949,dark,1290171157 +42642,3949,disturbing,1290171155 +42642,3949,emotional,1325360405 +42642,3949,social commentary,1290171148 +42642,3996,atmospheric,1325360814 +42642,3996,beautifully filmed,1325360812 +42642,3996,dreamlike,1325360821 +42642,4011,british,1290171080 +42642,4011,cynical,1290171107 +42642,4011,Great dialogue,1290171089 +42642,4011,gypsy accent,1290171101 +42642,4011,Hilarious,1290171092 +42642,4011,Jason Statham,1290171094 +42642,4072,characterization,1389042687 +42642,4072,contemplative,1389042887 +42642,4072,drama,1389042913 +42642,4072,emotions,1389042717 +42642,4072,infidelity,1389042898 +42642,4072,Ingmar Bergman,1389042704 +42642,4072,psychological,1389042909 +42642,4072,realistic,1389042941 +42642,4072,slow,1389042937 +42642,4072,swedish,1389042922 +42642,4144,atmospheric,1387370985 +42642,4144,elegant,1387370996 +42642,4144,intimate,1387371002 +42642,4144,loneliness,1387370999 +42642,4144,melancholic,1387371004 +42642,4144,melancholy,1387371007 +42642,4144,moody,1387371011 +42642,4144,music,1387371014 +42642,4246,British,1325360835 +42642,4246,funny,1325360830 +42642,4246,relationships,1325360840 +42642,4877,funny moments,1290172214 +42642,4877,love vs sex,1290172242 +42642,4877,one night stand,1290172202 +42642,4967,satire,1325360481 +42642,4973,beautifully filmed,1290172295 +42642,4973,fairy tale,1325360998 +42642,4973,feel-good,1290172302 +42642,4973,idealism,1290172319 +42642,4973,inspirational,1290172304 +42642,5632,confrontational,1295111548 +42642,5632,Great: Makes you realize how over-acted most films are.,1295111554 +42642,5632,Ireland,1295111560 +42642,6016,disturbing,1325361757 +42642,6192,Danish,1387053856 +42642,6192,depressing,1387053853 +42642,6192,disability,1387053865 +42642,6192,drama,1387053886 +42642,6192,Mads Mikkelsen,1387053849 +42642,6192,Susanne Bier,1387053859 +42642,6192,touching,1387053876 +42642,6281,dialogue driven,1325361326 +42642,6281,interesting,1325361321 +42642,6711,atmospheric,1325360526 +42642,6711,complex characters,1325360543 +42642,6711,Melancholic,1325360531 +42642,6711,reflective,1325360534 +42642,6711,relationships,1325360537 +42642,6883,BBC Films,1333089021 +42642,6883,biography,1333089024 +42642,6883,CRUMBLING MARRIAGES,1333089074 +42642,6883,melancholy,1333089028 +42642,6883,Sylvia Plath life and suicide,1333089126 +42642,6942,boring,1325450702 +42642,6942,british,1325450695 +42642,6942,Colin Firth,1325450708 +42642,6942,Keira Knightley,1325450710 +42642,6942,multiple storylines,1325450715 +42642,6942,Romance,1325450717 +42642,6953,Alejandro Gonzalez Inarritu,1325360910 +42642,6953,melancholic,1325360919 +42642,6953,psychological,1325360923 +42642,6953,Tragedy,1325360928 +42642,7090,amazing photography,1290171564 +42642,7090,atmospheric,1290171564 +42642,7090,Beautiful,1290171564 +42642,7090,colourful,1290171575 +42642,7090,Epic,1290171578 +42642,7090,passionate,1290171581 +42642,7090,visually appealing,1290171588 +42642,7256,disturbing,1328375254 +42642,7256,mountain climbing,1328375244 +42642,7256,mountains,1328375246 +42642,7256,nature,1328375259 +42642,7256,true story,1328375251 +42642,7352,bittersweet,1290357419 +42642,7352,british comedy,1290357411 +42642,7460,Bill Murray,1391695892 +42642,7460,Cate Blanchett,1391695893 +42642,7460,Steve Coogan,1391695904 +42642,8361,Post apocalyptic,1325416311 +42642,8464,american idiocy,1290172658 +42642,8464,social criticism,1290172695 +42642,8464,social message,1290172661 +42642,8640,Arthurian legend,1325452380 +42642,8640,bullshit history,1325452368 +42642,27786,Dublin,1330698170 +42642,27786,dull,1330698199 +42642,27786,gay,1330698144 +42642,27786,lesbian,1330698145 +42642,27786,no plot,1330698153 +42642,27786,soundtrack,1330698134 +42642,27788,Adrien Brody,1325452135 +42642,27788,confusing,1325452131 +42642,27788,Keira Knightley,1325452133 +42642,27788,makes you think,1325452114 +42642,27788,mental illness,1325452127 +42642,27788,time travel,1325452139 +42642,30803,visual,1387370769 +42642,31956,European,1333175681 +42642,31956,realistic,1333175703 +42642,31956,relationships,1333175692 +42642,38294,beautiful scenery,1290173062 +42642,38294,beautifully filmed,1290173068 +42642,38294,epic,1290173131 +42642,38294,heroic,1290173146 +42642,39231,atmospheric music,1290171641 +42642,39231,freebird,1290171654 +42642,39231,great soundtrack,1290171658 +42642,39231,Kirsten Dunst,1329030922 +42642,39231,life,1290171668 +42642,39231,love,1290171663 +42642,39231,Orlando Bloom,1329030925 +42642,39231,romantic,1290171676 +42642,40629,Jane Austen,1325360448 +42642,40629,relationships,1325360453 +42642,40629,romance,1325360460 +42642,41285,Woody Allen,1325361344 +42642,44555,realisitc acting,1290171966 +42642,44665,twist ending,1325361403 +42642,45079,CRUMBLING MARRIAGES,1333014193 +42642,45079,slow,1333014168 +42642,45501,break-up,1325450652 +42642,45501,relationships,1325450654 +42642,45880,based on a true story,1389949991 +42642,45880,cinematography,1389949908 +42642,45880,costume drama,1389949897 +42642,45880,great soundtrack,1389949908 +42642,45880,historical,1389949977 +42642,45880,historically inaccurate,1389949975 +42642,45880,Kirsten Dunst,1389949908 +42642,45880,royalty,1389949981 +42642,45880,Sofia Coppola,1389950009 +42642,45880,stylized,1389950033 +42642,46723,Alejandro Gonzalez Inarritu,1325360849 +42642,46723,social commentary,1325360860 +42642,46723,visually stunning,1325360861 +42642,47423,independent film,1387370874 +42642,47423,Ryan Gosling,1387370871 +42642,47491,black comedy,1325449860 +42642,47491,cynical,1325449865 +42642,47491,danish,1325449875 +42642,47491,Mads Mikkelsen,1325449852 +42642,48342,conversation,1396207391 +42642,48342,Helena Bonham Carter,1396207368 +42642,48342,intelligent dialogue,1396207380 +42642,48342,less than 300 ratings,1396207366 +42642,48342,realistic,1396207370 +42642,48530,multiple storylines,1333110855 +42642,48530,Norwegian,1333110871 +42642,48530,touching,1333110956 +42642,48696,cynical,1325361380 +42642,48696,dark,1325361378 +42642,48696,disturbing,1325361376 +42642,48696,psychology,1325361361 +42642,48696,reflective,1325361364 +42642,48696,SUBURBAN DYSFUNCTION,1325361369 +42642,48738,dark,1325361474 +42642,48738,violent,1325361459 +42642,49286,Cameron Diaz,1325450571 +42642,49286,Jack Black,1325450575 +42642,49286,Jude Law,1325450568 +42642,49286,Kate Winslet,1325450564 +42642,49286,romantic comedy,1325450562 +42642,49286,sweet,1325450590 +42642,50514,drama,1290364148 +42642,50514,emotional,1290364213 +42642,50514,Mads Mikkelsen,1290364103 +42642,51187,British,1325449933 +42642,53318,british,1333977467 +42642,53318,lovely,1333977565 +42642,54190,Beatles,1391695655 +42642,54190,musical,1391695672 +42642,54190,weak plot,1391695665 +42642,55247,adventure,1325361502 +42642,55247,Alaska,1332521230 +42642,55247,atmospheric,1325361504 +42642,55247,bittersweet,1325361507 +42642,55247,great soundtrack,1332521179 +42642,55247,psychology,1325361511 +42642,55247,road movie,1325361514 +42642,55247,road trip,1325361517 +42642,55247,self discovery,1325361520 +42642,55267,cliche,1329030885 +42642,55267,predictable,1329030874 +42642,55267,sappy,1329030879 +42642,55280,delusion,1329030723 +42642,55280,emotional,1329030706 +42642,55280,mental illness,1329030726 +42642,55280,small town,1329030680 +42642,55280,touching,1329030733 +42642,55280,weird,1329030736 +42642,56941,funny moments,1290172133 +42642,56941,romantic,1290172147 +42642,58425,atmospheric,1325361652 +42642,58425,beautifully filmed,1325361647 +42642,58425,Iceland,1325361657 +42642,58425,music,1325361661 +42642,58425,Sigur Ros,1325361674 +42642,58992,documentary,1331531548 +42642,58992,factual,1331531649 +42642,58992,low-fi concert footage,1331531715 +42642,58992,music,1331531569 +42642,59126,atheism,1290171203 +42642,59126,intelligent,1290171211 +42642,59126,stupidity,1290171224 +42642,60894,Sienna Miller,1325361742 +42642,61024,comedy,1330190573 +42642,61024,James Franco,1330190568 +42642,61206,BORING!,1301512480 +42642,62293,biography,1325452175 +42642,62293,British,1325452158 +42642,62293,Keira Knightley,1325452161 +42642,62293,period piece,1325452164 +42642,62293,romance,1325452170 +42642,62849,Action/Comedy,1325361094 +42642,62849,cool dialogues,1325361097 +42642,62849,funny,1325361093 +42642,64622,Kate Winslet,1325361105 +42642,66665,cute,1331289143 +42642,66665,great soundtrack,1331289116 +42642,66665,humorous,1331289126 +42642,66665,slow,1331289137 +42642,67997,BBC Films,1290171757 +42642,67997,british,1290171758 +42642,67997,cynical,1290171761 +42642,67997,intelligent,1290171769 +42642,67997,satire,1290171876 +42642,67997,swearing,1290171870 +42642,68157,black comedy,1290171917 +42642,68157,Brad Pitt,1290171933 +42642,68157,Quentin Tarantino,1290171927 +42642,68157,satire,1290171938 +42642,68263,contemplative,1325450059 +42642,68263,drama,1325450002 +42642,68263,Gael Garcia Bernal,1325449993 +42642,68263,Michelle Williams,1325449996 +42642,68263,slow,1325449999 +42642,68269,historically inaccurate,1325452209 +42642,68269,stupid,1325452227 +42642,69481,adrenaline junkie,1325361560 +42642,69481,anti-war,1325361569 +42642,69481,thoughtful,1325361565 +42642,69529,documentary,1333892392 +42642,69529,Earth,1333892400 +42642,69529,earth related,1333892415 +42642,69529,inspirational,1333892418 +42642,69529,nature,1333892402 +42642,70567,cliche,1391695567 +42642,70567,emotional,1391695565 +42642,70567,romantic,1391695577 +42642,70567,sweet,1391695574 +42642,71928,intercultural relationship,1331531317 +42642,71928,romantic,1331531384 +42642,71928,slow paced,1331531375 +42642,72378,apocalypse,1325416270 +42642,72378,bad acting,1325449784 +42642,72378,bad science,1325416258 +42642,72378,predictable,1325449792 +42642,72378,stupid,1325449795 +42642,72378,Woody Harrelson,1325416265 +42642,77201,beautiful scenery,1292740736 +42642,77201,Boring,1292740714 +42642,77201,Mads Mikkelsen,1292740742 +42642,77201,minimal dialogue,1388590157 +42642,77201,music,1388590146 +42642,77201,mythology,1292740719 +42642,77201,primarily static camerawork,1388590129 +42642,77201,stylistic,1388590118 +42642,77201,visually appealing,1388590121 +42642,78209,humor,1290358184 +42642,80969,based on a book,1325452405 +42642,80969,depressing,1325452395 +42642,80969,disturbing,1325452402 +42642,81562,adventure,1325449709 +42642,81562,cinematography,1325449722 +42642,81562,loneliness,1325449696 +42642,81562,psychology,1325449703 +42642,81562,slow,1325449706 +42642,81562,soundtrack,1325449715 +42642,81562,wilderness,1325449699 +42642,81880,dark humor,1325451210 +42642,81880,funny,1325451368 +42642,81880,Irvine Welsh,1325451224 +42642,81880,Scottish,1325451252 +42642,81932,Christian Bale,1325449558 +42642,82589,Annette Bening,1331275338 +42642,82589,drama,1331275560 +42642,82589,emotional,1331275288 +42642,82589,multiple storylines,1331275616 +42642,82589,Naomi Watts,1331275272 +42642,82589,Rodrigo García,1331275303 +42642,82589,Samuel L. Jackson,1331275544 +42642,82589,soundtrack,1331275312 +42642,82589,touching,1331275671 +42642,83302,cheating,1325452070 +42642,83302,emotional,1325452074 +42642,83302,Eva Mendes,1325452080 +42642,83302,Keira Knightley,1325452086 +42642,83302,thought-provoking,1325452093 +42642,86320,Drama,1325360966 +42642,86320,Lars von Trier,1325360939 +42642,86320,metaphoric images,1325360969 +42642,86781,disturbing,1325361549 +42642,87234,First love,1331392451 +42642,87234,funny,1331392494 +42642,87234,great soundtrack,1331392469 +42642,87234,Wales,1331392461 +42642,89904,black and white,1391695508 +42642,89904,John Goodman,1391695487 +42642,89904,romance,1391695504 +42642,89904,Stylised,1391695501 +42642,89904,visually appealing,1391695489 +42642,91079,bad portraying,1389947991 +42642,91079,boring,1389947961 +42642,91079,underdeveloped male lead,1389947936 +42642,91976,depressing,1331418049 +42642,91976,Liam Neeson,1331417852 +42642,91976,life & death,1331417927 +42642,91976,man vs. nature,1331417987 +42642,91976,survival,1331418021 +42642,91976,thought provoking,1331418083 +42642,91976,unrealistic,1331418378 +42642,96501,friendship relations,1389975989 +42642,96501,music,1389976032 +42642,96501,relationship problems,1389976019 +42642,96501,soundtrack,1389976028 +42642,96821,amazing soundtrack,1391695192 +42642,96821,bittersweet,1391695217 +42642,96821,coming of age,1391695198 +42642,96821,Emma Watson,1391695201 +42642,96821,music,1391695211 +42642,102792,drama,1391694795 +42642,102792,emotional,1391694801 +42642,102792,music,1391694790 +42642,102792,relationships,1391694809 +42642,102792,tragedy,1391694815 +42642,106920,great performance,1391695128 +42642,106920,meaning of life,1391695124 +42642,106920,Scarlett Johansson,1391695112 +42642,106920,Spike Jonze,1391695110 +42642,106920,thought-provoking,1391695119 +42642,107771,cinematography,1394396845 +42642,107771,idea,1394396807 +42642,107771,Jim Jarmusch,1394396794 +42642,107771,music,1394396818 +42642,107771,poetic,1394396835 +42642,107771,soundtrack,1394396812 +42642,107771,story,1394396799 +42642,107771,Tilda Swinton,1394396827 +42642,107771,vampires,1394396798 +42642,114265,coming of age,1423487488 +42642,114265,Keira Knightley,1423487464 +42642,114265,romantic relationship,1423487484 +42642,114265,Sam Rockwell,1423487467 +42642,126599,comedy,1423551546 +42642,126599,Couple Relations,1423550876 +42642,126599,Humorous,1423551679 +42642,126599,multi story narrative,1423551598 +42642,126599,Multiple Stories,1423550873 +42642,126599,"sex, love, relationships",1423551536 +42642,126599,Sexual Relations,1423550878 +42658,119145,spy,1446778722 +42658,119145,violent,1446778734 +42658,145066,comedy,1445729281 +42658,145066,stand-up comedy,1445729273 +42695,90439,business,1438027459 +42695,90439,finance,1438027459 +42695,90439,trader,1438027459 +42737,965,charming,1187352896 +42737,965,Classic,1187352919 +42737,969,boat,1187353029 +42737,969,charming,1187353029 +42737,969,Katherine Hepburn,1187353029 +42737,3967,ballet,1187352549 +42737,3967,british,1187352549 +42737,3967,coming of age,1187352549 +42737,3967,feel good,1187352549 +42737,4848,dark,1187352492 +42737,4848,david lynch,1187352492 +42737,4848,weird,1187352492 +42737,8622,Guns,1187352603 +42737,8622,Michael Moore,1187352603 +42737,8622,political,1187352603 +42739,260,classic sci-fi,1434940773 +42820,32,original,1368273114 +42820,50,storytelling,1368273234 +42820,111,loneliness,1368274089 +42820,668,criterion,1368274012 +42820,1089,original,1368273114 +42820,1207,classic,1191931071 +42820,1248,criterion,1368274012 +42820,1466,mentor,1368273146 +42820,1704,mentor,1368273146 +42820,2291,original,1368273114 +42820,2335,comedy,1368273188 +42820,2371,comedy,1368273191 +42820,2420,mentor,1368273146 +42820,3421,comedy,1368273188 +42820,3470,criterion,1368274012 +42820,4085,comedy,1368273188 +42820,4226,storytelling,1368273234 +42820,4878,original,1368273114 +42820,5945,loneliness,1368274088 +42820,6188,comedy,1368273191 +42820,6987,criterion,1368274012 +42820,7192,capoeira,1191929761 +42820,7327,criterion,1368274012 +42820,7438,storytelling,1368273234 +42820,8154,criterion,1368274012 +42820,8641,comedy,1368273188 +42820,27801,muay thai,1191929860 +42820,30707,boxing,1298241723 +42820,32587,storytelling,1368273234 +42820,64839,loneliness,1368274088 +42849,260,Boring,1430250306 +42849,356,emotional and heroic,1430250650 +42849,356,fiction,1430250650 +42849,356,funny,1430250650 +42849,593,anibal,1430991514 +42849,593,lambs,1430991514 +42849,593,silence,1430991514 +42880,265,bittersweet,1419157442 +42880,3302,overcome tragedy,1416529901 +42880,7090,beautifully filmed,1419156381 +42880,7090,kung fu,1419156398 +42880,7090,visually appealing,1419156367 +42880,26982,massacre of civilians,1419153918 +42880,26982,revolutionary guerillas,1419153954 +42880,26982,war on drugs,1419153149 +42901,52952,less than 300 ratings,1204248281 +42923,50,organized crime,1258107009 +42923,50,twist ending,1258107025 +42923,293,humane,1258108365 +42923,1293,humane,1258108150 +42923,1293,humanity,1258108150 +42923,1959,humane,1258108204 +42923,1959,romance.,1258108204 +42923,2324,has soul,1258108028 +42923,2324,humane,1258108028 +42923,2692,life choices,1258108081 +42923,3252,humane,1258108229 +42923,3992,has soul,1258107583 +42923,4178,humane,1258108551 +42923,4306,smart,1258107210 +42923,4306,witty,1258107210 +42923,4644,comedy,1258108601 +42923,4644,humane,1258108601 +42923,4644,romance,1258108601 +42923,5991,prison,1258106094 +42923,5995,has soul,1258107401 +42923,5995,timeless idea,1258107401 +42923,6874,nonlinear,1258105508 +42923,7361,humane,1258108296 +42923,57669,comedy,1258105665 +42933,45501,watched 2006,1178515673 +42933,51662,blood,1178515346 +42933,52281,Quinten Tarantino,1178476802 +42938,260,sci fi,1439763476 +42954,6365,artificial intelligence,1449409036 +42954,6365,hacking,1449409054 +42954,6365,philosophy,1449409041 +42954,8644,artificial intelligence,1449409073 +42954,8644,Isaac Asimov,1449409071 +42980,91630,breathtaking,1353006586 +43008,260,hero's journey,1439789289 +43008,260,operatic,1439789263 +43008,260,sci-fi,1439789312 +43008,260,space battle,1439789279 +43021,1907,great soundtrack,1139343752 +43021,2018,mom dies right off the bat!,1139343737 +43021,2078,how can you not love clasic disney?,1139343687 +43021,41571,besutiful cinemotography,1139343861 +43023,741,complex,1173978922 +43023,741,philosophical,1173978922 +43023,741,techno-evolution,1173978922 +43023,1265,cathartic,1173979010 +43023,1265,romantic,1173979010 +43023,1265,thoughtful,1173979010 +43023,6754,vampires,1173976815 +43033,2858,Oscar (Best Picture),1225057702 +43038,98203,bad story,1425643198 +43038,98203,gay,1425643198 +43038,98203,vampires,1425643198 +43050,260,desert planet,1437403307 +43050,260,good vs evil,1437403354 +43050,260,oldie but goodie,1437403351 +43050,260,space action,1437403328 +43050,260,space adventure,1437403339 +43050,260,space opera,1437403272 +43050,356,1960s,1438359315 +43050,356,historical epic,1438359315 +43050,356,main character is simpleminded and has big impact on world,1438359315 +43050,26007,leadership,1438360040 +43050,134853,Lewis Black,1438359187 +43050,134853,Pixar,1438359145 +43050,134853,psychology,1438359153 +43075,260,classic,1436883776 +43075,260,lightsabers,1436883808 +43083,1408,Pre-20th Century Period,1440267566 +43083,81591,atmospheric,1378823046 +43083,81591,Clint Mansell,1378823171 +43083,81591,emotional,1378823114 +43083,81591,ending,1378823076 +43083,81591,intelligent thriller,1378823032 +43083,81591,natalie portman,1378823022 +43083,81591,perfection,1378823069 +43083,81591,psychological,1378823038 +43083,81591,subtle,1378823057 +43087,110,historical,1202775101 +43095,260,1977,1433578200 +43095,260,Star Wars,1433578185 +43099,3535,funny,1276470771 +43099,3535,psychology,1276470677 +43099,6882,aliens,1236759625 +43099,6882,time travel,1236759594 +43099,27773,disturbing,1276472103 +43099,38061,black comedy,1276471966 +43099,38061,good dialogue,1276472036 +43099,54256,cool beans,1236759679 +43112,76093,adventure,1435042449 +43112,76093,cartoon,1435042449 +43112,76093,dragon,1435042449 +43126,260,sci-fi,1439795618 +43126,260,space,1439795608 +43126,260,war,1439795626 +43129,260,Epic Sci-Fi,1441741504 +43129,260,space opera,1441741482 +43131,6963,NR,1198771555 +43137,296,Black comedy,1428616775 +43137,296,drugs,1428616779 +43137,356,Sexuality,1428616394 +43137,480,action,1427178684 +43137,480,Dinosaurs,1427178657 +43137,480,Jeff Goldblum,1427178672 +43137,480,Sam Neill,1427178677 +43137,480,sci-fi,1427178669 +43137,480,science,1427178679 +43137,480,Steven Spielberg,1427178659 +43137,837,magic,1427178703 +43137,1080,black comedy,1427178434 +43137,1080,Christianity,1427178437 +43137,1080,Nudity (Full Frontal),1427178432 +43137,1214,aliens,1427178513 +43137,1214,sci-fi,1427178511 +43137,1214,space,1427178516 +43137,1222,indecent,1433992672 +43137,1222,suicide,1433992687 +43137,1732,drugs,1427178293 +43137,1732,marijuana,1427178296 +43137,1732,Nudity (Full Frontal),1427178290 +43137,3147,male nudity,1427178184 +43137,4027,black comedy,1427178414 +43137,4027,coen brothers,1427178389 +43137,4027,comedy,1427178402 +43137,4027,funny,1427178406 +43137,4027,great soundtrack,1427178391 +43137,4027,Musical,1427178417 +43137,4027,racism,1427178410 +43137,6016,black comedy,1428616500 +43137,6016,drugs,1428616493 +43137,6016,gangs,1427178342 +43137,6874,rape,1428616752 +43137,8957,brutal,1427178562 +43137,8957,clever,1427178545 +43137,8957,Disturbing,1427178556 +43137,8957,gore,1427178547 +43137,8957,serial killer,1427178537 +43137,8957,surprise ending,1427178542 +43137,8957,torture,1427178549 +43137,8957,twist ending,1427178539 +43137,33004,based on a book,1427178466 +43137,33004,bureaucracy,1427178488 +43137,33004,douglas adams,1427178483 +43137,33004,dumbed down,1427178459 +43137,33004,sarcasm,1427178461 +43137,33004,sci-fi,1427178468 +43137,33004,space,1427178470 +43137,33004,whimsical,1427178464 +43137,33004,Zooey Deschanel,1427178473 +43137,41566,alternate reality,1427178643 +43137,41566,alternate universe,1427178623 +43137,41566,based on a book,1427178633 +43137,41566,based on book,1427178629 +43137,41566,C.S. Lewis,1427178611 +43137,41566,christianity,1427178610 +43137,41566,fantasy,1427178607 +43137,41566,fantasy world,1427178644 +43137,41566,good versus evil,1427178617 +43137,41566,magic,1427178614 +43137,41566,mythology,1427178626 +43137,99114,good soundtrack,1427178247 +43137,99114,Leonardo DiCaprio,1427178224 +43137,104243,Nudity (Topless),1435974949 +43137,104841,sci-fi,1430165449 +43137,106918,Ben Stiller,1428616300 +43137,111759,aliens,1428200724 +43137,111759,original plot,1428200726 +43137,111759,Reluctant Hero,1428200743 +43137,111759,sci-fi,1428200721 +43137,111759,time loop,1428200713 +43137,111759,time travel,1428200717 +43137,111759,Tom Cruise,1428200737 +43137,112556,adultery,1428616257 +43156,260,classic sci-fi,1439759206 +43160,260,classic,1439801404 +43160,260,sci-fi,1439801396 +43167,40278,not a war movie.,1139161637 +43168,33166,Disturbing,1278058380 +43228,26157,MST3K,1424834401 +43228,26157,so bad it's good,1424834389 +43306,260,Good enough,1437658193 +43306,260,Not bad,1437658202 +43337,2600,biomorph,1204079724 +43342,837,children,1185925569 +43342,837,dark comedy,1185925569 +43342,837,Roald Dahl,1185925569 +43342,1350,apocalypse,1185925584 +43342,1350,devil,1185926554 +43342,2951,spaghetti western,1185925487 +43342,2997,dark comedy,1185926191 +43342,2997,surreal,1185926163 +43342,3113,apocalypse,1185925536 +43342,3113,devil,1185925536 +43342,3967,coming of age,1185925355 +43342,3967,dance,1185925355 +43342,6218,football,1185925458 +43342,6502,sci-fi,1185925353 +43342,6502,zombies,1185925353 +43342,6870,friendship,1185925461 +43342,6870,murder,1185925461 +43342,6870,paedophilia,1185925461 +43342,7361,individual,1185925884 +43342,7361,melancholy,1185925884 +43342,7361,memory,1185925884 +43342,7361,surreal,1185925770 +43342,8622,Bush bashing,1185925357 +43342,8622,politics,1185925357 +43342,48394,fairy tale,1185925952 +43342,48394,fantasy,1185925952 +43342,48394,individual,1185925952 +43342,48394,Spanish Civil War,1185925952 +43348,260,heroic journey,1435819775 +43348,260,space opera,1435819790 +43353,253,BR,1420978886 +43353,1527,BR,1420983600 +43353,2291,BR,1420984912 +43353,3412,BR,1420985121 +43353,4370,BR,1420984818 +43353,6754,BR,1420985000 +43353,8977,BR,1420985092 +43353,48394,BR,1420984839 +43353,50601,BR,1420983478 +43353,56171,BR,1420984872 +43353,57326,BR,1420983450 +43353,62729,BR,1420983775 +43353,68952,BR,1420983231 +43353,71205,BR,1420984554 +43353,71899,BR,1420977047 +43353,73268,BR,1420983266 +43353,77540,BR,1420983411 +43353,79132,BR,1420983557 +43353,79796,BR,1420985018 +43353,80831,BR,1420984945 +43353,81516,BR,1420984537 +43353,82169,BR,1420984892 +43353,84834,BR,1420985041 +43353,95207,BR,1420983508 +43353,97921,BR,1420983099 +43353,104312,BR,1420983068 +43363,593,beta,1227491780 +43363,67799,To See,1252674230 +43363,69481,To See,1252674191 +43380,1261,dark comedy,1290907870 +43392,111759,Emily Blunt,1406555640 +43392,111759,original plot,1406555649 +43398,18,dark comedy,1298600541 +43398,18,Quentin Tarantino,1298600552 +43398,2009,dystopia,1290208286 +43398,2117,dystopia,1290207974 +43398,2571,dystopia,1298601220 +43398,2571,post-apocalyptic,1290208002 +43398,3949,atmospheric,1290978803 +43398,3949,depressing,1290978784 +43398,3949,imdb top 250,1290978815 +43398,3949,Nudity (Full Frontal - Notable),1290978798 +43398,3949,Nudity (Full Frontal),1290978792 +43398,3949,Nudity (Rear),1290978794 +43398,3949,psychology,1290978775 +43398,4226,nonlinear,1298600909 +43398,4226,psychology,1298600856 +43398,4226,twist ending,1298601181 +43398,7438,Quentin Tarantino,1290208238 +43398,25771,experimental,1291826272 +43398,25771,mindfuck,1291826267 +43398,25771,surreal,1290208044 +43398,27660,cyberpunk,1290208191 +43398,27728,philosophical,1290208249 +43398,27904,surreal,1290208041 +43398,32554,Cyberpunk,1291826620 +43398,32554,Steampunk,1291826610 +43398,37382,fast-cut,1292087773 +43398,40732,twist ending,1298858939 +43398,62336,anime,1291826567 +43398,62336,hallucinatory,1291826572 +43398,62336,mecha,1291826563 +43398,62336,robots,1291826578 +43398,62336,stylish,1291826567 +43398,62336,surreal,1291826564 +43398,62336,weird,1291826575 +43398,66511,club DJ (scene),1291826504 +43398,66511,Drama,1291826510 +43398,66511,Minimal Music,1291826389 +43398,72109,Horror,1291826493 +43398,72109,Trash,1291826497 +43398,72109,violence,1291826535 +43432,546,adapted from:game,1186300862 +43432,546,alternate reality,1186300862 +43432,546,mario,1186300862 +43432,1747,political,1186300653 +43432,2872,adaptation,1186300801 +43432,2872,king arthur,1186300801 +43432,2872,legend,1186300801 +43432,3018,adapted from:book,1186301070 +43432,3018,lovecraftian,1186301070 +43432,3033,barf,1186300651 +43432,3033,funny,1186300651 +43432,3033,parody,1186300651 +43432,5618,animated,1186300732 +43432,5618,anime,1186300732 +43432,7373,adapted from:comic,1186300938 +43432,8622,documentary,1186300766 +43484,4,chick flick,1308558977 +43484,4,revenge,1308558977 +43484,5,Diane Keaton,1305522889 +43484,5,family,1137102574 +43484,5,sequel,1137102574 +43484,5,Steve Martin,1305522889 +43484,5,wedding,1137102574 +43484,7,chick flick,1137102683 +43484,7,remake,1137102683 +43484,16,Las Vegas,1305522197 +43484,16,organized crime,1305522197 +43484,17,British,1137102696 +43484,17,Shakespeare,1137102696 +43484,34,animals,1137102501 +43484,34,talking animals,1308559937 +43484,39,chick flick,1137102553 +43484,39,fashion,1137102553 +43484,39,inspired by Jane Austen,1305521332 +43484,39,teen,1137102553 +43484,45,dark comedy,1137102707 +43484,46,based on a book,1308558125 +43484,52,Woody Allen,1137102635 +43484,101,off-beat comedy,1137102513 +43484,104,golf,1137102604 +43484,104,sports,1137102604 +43484,110,Scotland,1305520857 +43484,141,gay,1137100884 +43484,141,homosexual theme,1137101185 +43484,144,family,1137102533 +43484,144,Irish,1137102533 +43484,180,1990s,1137102626 +43484,180,Kevin Smith,1137102626 +43484,180,teen,1137102626 +43484,186,chick flick,1137102666 +43484,186,pregnancy,1137102666 +43484,186,romantic comedy,1137102666 +43484,222,chick flick,1137102543 +43484,222,Irish,1137102543 +43484,223,Kevin Smith,1137101244 +43484,246,basketball,1305523608 +43484,261,remake,1308558554 +43484,280,Alcatraz,1137102649 +43484,280,prison,1137102649 +43484,296,Tarantino,1137100988 +43484,318,inspirational,1137101607 +43484,337,Leonardo DiCaprio,1305522168 +43484,339,chick flick,1137102739 +43484,342,overrated,1305523299 +43484,345,homosexuality,1305523595 +43484,356,US history,1137102588 +43484,357,chick flick,1137100913 +43484,369,biography,1308558362 +43484,370,screwball,1137102657 +43484,372,1990s,1308556941 +43484,381,alcoholism,1137102735 +43484,424,college basketball,1308556331 +43484,441,1970s,1137101252 +43484,441,teen,1137100909 +43484,454,lawyers,1308559352 +43484,477,biography,1137102730 +43484,477,inspirational,1137102730 +43484,477,rock and roll,1137102730 +43484,477,true story,1137102730 +43484,477,women's lib,1137102730 +43484,480,dinosaur,1305520821 +43484,492,Woody Allen,1137102631 +43484,508,gay lead character,1305521999 +43484,508,homosexual theme,1137103132 +43484,527,holocaust,1137101021 +43484,527,Oscar Best Picture,1137101007 +43484,527,true story,1137101596 +43484,527,World War II,1137101021 +43484,532,dark comedy,1137103209 +43484,539,chick flick,1137103214 +43484,539,romantic comedy,1305521230 +43484,543,quirky,1305523049 +43484,587,overrated,1305521197 +43484,588,Disney,1137102797 +43484,590,American West,1305520918 +43484,590,Native Americans,1305520918 +43484,590,Oscar Best Picture,1137102913 +43484,590,US history,1137102913 +43484,592,superhero,1305520882 +43484,597,overrated,1305521102 +43484,608,dark comedy,1137102991 +43484,638,baby,1137103097 +43484,638,British,1137103097 +43484,778,addiction,1305521602 +43484,778,heroin,1305521602 +43484,805,racism,1137103260 +43484,805,Southern theme,1137103260 +43484,818,sequel,1137103266 +43484,830,divorce,1308559346 +43484,838,British,1137102974 +43484,838,chick flick,1137102974 +43484,838,Jane Austen,1137102974 +43484,852,golf,1305523357 +43484,858,classic,1137100922 +43484,858,mafia,1305521011 +43484,858,mob,1137100922 +43484,898,classic,1137103140 +43484,899,classic Hollywood,1305949278 +43484,899,Debbie Reynolds,1305949278 +43484,899,Gene Kelly,1305949278 +43484,899,set in the 1920s,1305949278 +43484,902,classic,1137102872 +43484,902,New York,1137102872 +43484,903,overrated,1305522949 +43484,904,1950s,1305522411 +43484,904,classic,1137100995 +43484,904,Grace Kelly,1305522411 +43484,904,Hitchcock,1137100995 +43484,904,Jimmy Stewart,1305522411 +43484,908,Cary Grant,1305522500 +43484,908,classic,1137100979 +43484,908,Hitchcock,1137100979 +43484,908,mistaken identity,1305522500 +43484,908,South Dakota,1305522500 +43484,910,classic,1137101474 +43484,910,cross dressing,1305523493 +43484,910,Jack Lemmon,1305523493 +43484,910,Marilyn Monroe,1137101480 +43484,910,Tony Curtis,1305523493 +43484,912,classic,1137100896 +43484,912,World War II,1137101207 +43484,915,chick flick,1137103194 +43484,915,classic,1137103194 +43484,918,classic,1137100961 +43484,919,classic,1137103276 +43484,920,Civil War,1137101302 +43484,920,classic,1137101302 +43484,920,Southern theme,1137101302 +43484,922,classic,1137103252 +43484,922,Hollywood,1137103252 +43484,923,overrated,1305522229 +43484,926,classic,1137102805 +43484,927,chick flick,1137103296 +43484,927,classic,1137103292 +43484,928,classic,1137103188 +43484,928,Hitchcock,1137103188 +43484,930,Nazis,1308558290 +43484,933,Cary Grant,1305949083 +43484,933,classic,1137101711 +43484,933,Grace Kelly,1305949083 +43484,933,heist film,1305949083 +43484,933,Hitchcock,1137101711 +43484,933,Monte Carlo,1305949083 +43484,934,classic,1137103004 +43484,934,wedding,1137103004 +43484,938,French theme,1137103017 +43484,946,classic,1137101702 +43484,946,World War II,1137101702 +43484,947,classic,1137103117 +43484,950,classic,1137101665 +43484,950,detective movie,1305949122 +43484,950,Myrna Loy,1305949122 +43484,950,Nick and Nora Charles,1305949141 +43484,950,William Powell,1305949122 +43484,951,classic,1137103067 +43484,951,newspaper theme,1137103085 +43484,953,Christmas,1137101324 +43484,953,classic,1137100941 +43484,953,Hitchcock,1137101562 +43484,953,inspirational,1137101562 +43484,953,Jimmy Stewart,1305523006 +43484,953,World War II,1137101324 +43484,955,classic,1137102223 +43484,955,romantic comedy,1137102223 +43484,955,screwball,1137102223 +43484,971,classic,1137102882 +43484,971,Tennesse Williams,1137102882 +43484,1020,bobsled,1137102896 +43484,1020,Jamaica,1137102896 +43484,1020,Olympics,1137102896 +43484,1020,sports,1137102896 +43484,1022,Disney,1137102887 +43484,1028,Julie Andrews,1305522902 +43484,1028,musical,1305522916 +43484,1031,British,1137102835 +43484,1035,classic,1137101617 +43484,1035,Julie Andrews,1305522909 +43484,1035,nuns,1305522870 +43484,1035,true story,1137101617 +43484,1035,World War II,1137101617 +43484,1057,Woody Allen,1137102981 +43484,1073,classic,1137101755 +43484,1080,Biblical,1137103107 +43484,1080,satire,1305521885 +43484,1084,classic,1137102858 +43484,1084,violent,1137102858 +43484,1086,classic,1137102942 +43484,1086,Hitchcock,1137102942 +43484,1088,overrated,1305523560 +43484,1090,Oliver Stone,1305522549 +43484,1090,US history,1137103151 +43484,1090,Vietnam War,1137103151 +43484,1101,overrated,1305521782 +43484,1171,politicians,1137102851 +43484,1183,adultery,1305522259 +43484,1183,overrated,1305522258 +43484,1188,Australian,1137101644 +43484,1188,Baz Luhrman,1305949176 +43484,1188,chick flick,1137101644 +43484,1193,Jack Nicholson,1305520411 +43484,1193,mental hospital,1305520422 +43484,1193,mental illness,1305520422 +43484,1204,Middle East,1305523216 +43484,1204,World War II,1305523216 +43484,1207,classic,1137101727 +43484,1207,racism,1305522851 +43484,1207,Southern theme,1137101727 +43484,1208,classic,1137102813 +43484,1208,Vietnam war,1137102813 +43484,1210,sequel,1137103271 +43484,1219,classic,1137103163 +43484,1219,Hitchcock,1137103163 +43484,1219,scary as hell,1305522069 +43484,1221,classic,1137103022 +43484,1221,mob,1137103022 +43484,1225,biography,1305521908 +43484,1225,true story,1137101501 +43484,1230,Diane Keaton,1305522474 +43484,1230,Woody Allen,1305522474 +43484,1231,NASA,1137101446 +43484,1231,space program,1137101446 +43484,1231,true story,1137101446 +43484,1231,US history,1137101446 +43484,1242,African American history,1137101278 +43484,1242,Civil War,1137101278 +43484,1242,inspirational,1137101544 +43484,1242,true story,1137101535 +43484,1246,inspirational,1305522014 +43484,1246,teen,1137102922 +43484,1247,1960s,1137103028 +43484,1247,classic,1137103028 +43484,1250,POWs,1137102209 +43484,1250,true story,1137102209 +43484,1250,World War II,1137102209 +43484,1252,1930s,1305522715 +43484,1252,classic,1137100901 +43484,1252,Los Angeles,1305522715 +43484,1252,mystery,1305522715 +43484,1258,Jack Nicholson,1305521649 +43484,1258,scary as hell,1305521649 +43484,1259,friendship,1308560381 +43484,1262,classic,1137103035 +43484,1262,POWs,1137103035 +43484,1262,Steve McQueen,1305523782 +43484,1262,true story,1137103061 +43484,1262,World War II,1137103035 +43484,1263,Christopher Walken,1305523752 +43484,1263,coal miners,1305523752 +43484,1263,Meryl Streep,1305523752 +43484,1263,Pennsylvania,1305523752 +43484,1263,Vietnam,1305523752 +43484,1267,classic,1137100950 +43484,1267,Cold War,1137101403 +43484,1267,Communism,1137101404 +43484,1268,1980s,1137103169 +43484,1268,teen,1137103169 +43484,1269,classic,1137102820 +43484,1269,screwball comedy,1137102820 +43484,1270,1980s,1137102828 +43484,1270,teen,1137102828 +43484,1271,Southern United States,1308559337 +43484,1271,strong women characters,1308559337 +43484,1272,biography,1137103499 +43484,1272,true story,1137103499 +43484,1272,US history,1137103499 +43484,1272,World War II,1137103499 +43484,1276,Paul Newman,1305523503 +43484,1278,farce,1137103668 +43484,1282,Disney,1137103367 +43484,1284,film noir,1308557415 +43484,1285,dark comedy,1137103404 +43484,1288,classic,1305522523 +43484,1288,farce,1137103630 +43484,1288,parody,1305522529 +43484,1288,rock and roll,1137103635 +43484,1293,biography,1305523840 +43484,1293,India,1305523840 +43484,1293,true story,1305523840 +43484,1302,baseball,1137103375 +43484,1302,sports,1137103375 +43484,1304,friendship,1305522438 +43484,1307,1980s,1137101751 +43484,1307,classic,1137101751 +43484,1363,christmas,1308556984 +43484,1367,Disney,1137103313 +43484,1380,1950s,1137101312 +43484,1380,chick flick,1137100936 +43484,1380,opposites attract,1305522338 +43484,1387,scary,1305521753 +43484,1394,cult film,1305522634 +43484,1394,off-beat comedy,1137103560 +43484,1414,Debbie Reynolds,1305949491 +43484,1414,quirky,1305949491 +43484,1442,biography,1137103518 +43484,1442,Olympics,1137103518 +43484,1442,track and field,1137103518 +43484,1442,true story,1137103518 +43484,1449,farce,1137103643 +43484,1476,biography,1137103543 +43484,1476,true story,1137103543 +43484,1500,dark comedy,1137103396 +43484,1513,1980s,1137103586 +43484,1513,chick flick,1137103586 +43484,1513,teen,1137103586 +43484,1517,screwball,1137103321 +43484,1542,British,1137103336 +43484,1614,homosexuality,1308558098 +43484,1617,1930s,1305521295 +43484,1617,Los Angeles,1305521295 +43484,1617,noir thriller,1305521295 +43484,1629,Ireland,1308558460 +43484,1641,strippers,1305522424 +43484,1658,off-beat comedy,1137103455 +43484,1673,1970s,1305522976 +43484,1673,pornography's influence,1305522976 +43484,1674,Amish,1305523323 +43484,1674,Pennsylvania,1305523323 +43484,1678,Chinese-Americans,1308557968 +43484,1680,British,1137103610 +43484,1704,Ben Affleck,1305521356 +43484,1704,Matt Damon,1305521356 +43484,1711,mystery,1308558436 +43484,1711,Southern United States,1308558433 +43484,1721,chick flick,1137101681 +43484,1721,true story,1137101693 +43484,1747,conspiracy,1308558983 +43484,1760,true story,1137103626 +43484,1777,1980s,1137101742 +43484,1777,chick flick,1137101742 +43484,1804,bank robbers,1308556483 +43484,1804,heist film,1308556483 +43484,1810,1990s,1137103535 +43484,1810,politicians,1137103535 +43484,1836,1970s,1137103447 +43484,1840,basketball,1137103423 +43484,1840,family,1137103423 +43484,1840,sports,1137103423 +43484,1845,off-beat comedy,1137103672 +43484,1866,off-beat comedy,1137103332 +43484,1923,Farrelly Brothers,1305521455 +43484,1936,British,1137102242 +43484,1936,World War II,1137102242 +43484,1939,US history,1137102177 +43484,1939,veterans,1137102177 +43484,1939,World War II,1137102177 +43484,1947,gangs,1137103655 +43484,1947,New York,1137103655 +43484,1947,racism,1137103655 +43484,1948,British,1137103639 +43484,1954,boxing,1137103567 +43484,1954,sports,1137103567 +43484,1955,1970s,1137103437 +43484,1955,divorce,1137103437 +43484,1956,family,1137103479 +43484,1957,1930s,1305949745 +43484,1957,anti-Semitism,1305949745 +43484,1957,Olympics,1305949745 +43484,1957,running,1305949745 +43484,1957,track and field,1305949745 +43484,1962,racism,1137103355 +43484,1962,Southern theme,1137103355 +43484,1968,1980s,1137101198 +43484,1968,Chicago,1305521721 +43484,1968,John Hughes,1305521700 +43484,1968,Molly Ringwald,1305521721 +43484,1968,teen,1137100891 +43484,2014,family,1137103385 +43484,2014,fantasy,1137103385 +43484,2028,US history,1137103595 +43484,2028,World War II,1137103595 +43484,2064,corporate America,1137103577 +43484,2067,history,1137103348 +43484,2067,Russia,1137103348 +43484,2067,Russian revolution,1137103348 +43484,2080,Disney,1137103441 +43484,2081,Disney,1137103463 +43484,2085,Disney,1137103471 +43484,2096,Disney,1137103603 +43484,2100,mermaids,1308559096 +43484,2109,classic,1305949550 +43484,2112,social commentary,1308558256 +43484,2125,chick flick,1137103364 +43484,2125,women's lib,1137103364 +43484,2133,1980s,1137101033 +43484,2133,Chicago,1305949806 +43484,2133,teen,1137100747 +43484,2134,1980s,1137104086 +43484,2134,teen,1137104086 +43484,2144,1980s,1137101469 +43484,2144,chick flick,1137101469 +43484,2144,John Hughes,1305949244 +43484,2144,Molly Ringwald,1305949244 +43484,2144,teen,1137101469 +43484,2145,John Hughes,1308558780 +43484,2145,romantic comedy,1308558780 +43484,2146,1980s,1137104055 +43484,2146,teen,1137104055 +43484,2183,classic,1137100969 +43484,2183,Hitchcock,1137100969 +43484,2194,Kevin Spacey,1305522597 +43484,2194,organized crime,1305522597 +43484,2194,Prohibition,1305522597 +43484,2237,biography,1137104153 +43484,2237,Olympics,1137104153 +43484,2237,sports,1137104153 +43484,2237,track and field,1137104153 +43484,2237,true story,1137104153 +43484,2243,1980s,1137103777 +43484,2243,news industry,1137103777 +43484,2245,1980s,1137102261 +43484,2245,women's lib,1137102261 +43484,2248,1980s,1137104034 +43484,2248,teen,1137104034 +43484,2268,conspiracy,1305522649 +43484,2268,military,1305522649 +43484,2272,cancer,1308558848 +43484,2272,mother-daughter relationships,1308558859 +43484,2321,fantasy,1305522831 +43484,2321,Reese Witherspoon,1305522831 +43484,2324,foreign,1137100947 +43484,2324,holocaust,1137101378 +43484,2324,World War II,1137101378 +43484,2335,football,1137104081 +43484,2335,sports,1137104081 +43484,2336,history,1137101521 +43484,2336,true story,1137101521 +43484,2395,off-beat comedy,1137104022 +43484,2396,overrated,1305521475 +43484,2398,Christmas,1137103900 +43484,2398,classic,1137103900 +43484,2398,holiday,1137103900 +43484,2398,New York,1137103900 +43484,2405,sequel,1137103838 +43484,2407,senior citizens,1305523547 +43484,2409,boxing,1137103965 +43484,2409,sports,1137103965 +43484,2418,father-son relationship,1308558299 +43484,2424,chick flick,1137104180 +43484,2447,1990s,1137104061 +43484,2447,football,1137104067 +43484,2447,sports,1137104067 +43484,2447,teen,1137104061 +43484,2447,Texas,1137104077 +43484,2453,family,1137103769 +43484,2453,inspirational,1137103769 +43484,2469,1950s,1137104005 +43484,2469,1960s,1137104005 +43484,2469,teen,1137104005 +43484,2485,1990s,1137104043 +43484,2485,teen,1137104043 +43484,2494,biography,1137103869 +43484,2494,holocaust,1137103869 +43484,2494,true story,1137103869 +43484,2494,World War II,1137103869 +43484,2502,corporate America,1137103945 +43484,2502,dark comedy,1305522040 +43484,2502,workplace,1137103945 +43484,2518,prostitution,1308556457 +43484,2539,mob,1137103706 +43484,2539,psychology,1308559997 +43484,2572,1990s,1137104189 +43484,2572,teen,1137104189 +43484,2581,chick flick,1137103915 +43484,2599,dark comedy,1137101872 +43484,2599,teen,1137101872 +43484,2612,mother-daughter relationships,1308559827 +43484,2671,British,1137103911 +43484,2671,chick flick,1137103911 +43484,2671,Hugh Grant,1305523151 +43484,2690,British,1137101929 +43484,2706,coming of age,1308557546 +43484,2706,sophomoric,1305521531 +43484,2712,Stanley Kubrick,1308555577 +43484,2729,based on a book,1137103878 +43484,2759,dark comedy,1305949687 +43484,2759,quirky,1305949687 +43484,2759,Richard Nixon,1305949687 +43484,2759,US history,1137101863 +43484,2759,Watergate,1305949687 +43484,2791,farce,1137103684 +43484,2797,1980s,1137103758 +43484,2797,coming of age,1305521952 +43484,2797,New York City,1305521959 +43484,2804,Christmas,1137101855 +43484,2804,classic,1137101855 +43484,2804,coming of age,1305523171 +43484,2805,mob,1137103891 +43484,2858,dark comedy,1137103697 +43484,2870,New York,1137103741 +43484,2890,Gulf War,1137102107 +43484,2890,Middle East,1137102107 +43484,2890,US history,1137102107 +43484,2918,1980s,1137101900 +43484,2918,classic,1305521677 +43484,2918,John Hughes,1305521709 +43484,2918,Matthew Broderick,1305521709 +43484,2918,takes place in Chicago,1305521726 +43484,2918,teen,1137101900 +43484,2926,1960s,1137103819 +43484,2926,rock and roll,1137103820 +43484,2926,teen,1137103825 +43484,2929,Communism,1308558728 +43484,2929,Russia,1308558728 +43484,2929,Socialism,1308558728 +43484,2941,classic,1137104049 +43484,2941,World War II,1137104049 +43484,2971,biography,1137103692 +43484,2971,true story,1137103692 +43484,2997,off-beat comedy,1137103753 +43484,3052,religion,1305522451 +43484,3060,rock and roll,1137103789 +43484,3061,Christmas,1137103834 +43484,3061,classic,1137103834 +43484,3061,holiday,1137103834 +43484,3062,true story,1137103887 +43484,3062,US history,1137103887 +43484,3062,World War II,1137103887 +43484,3076,Jack Lemmon,1308558052 +43484,3076,prostitution,1308558044 +43484,3076,Shirley McLaine,1308558052 +43484,3097,romantic comedy,1308559714 +43484,3098,baseball,1137102001 +43484,3098,inspirational,1137102001 +43484,3098,sports,1137102001 +43484,3114,friendship,1305521578 +43484,3138,baseball,1137104804 +43484,3138,sports,1137104804 +43484,3144,Doris Day,1137104550 +43484,3174,biography,1137104645 +43484,3174,true story,1137104645 +43484,3189,dogs,1137104665 +43484,3196,POWs,1137104797 +43484,3196,World War II,1137104797 +43484,3210,1980s,1137104527 +43484,3210,classic,1137104527 +43484,3210,teen,1137104527 +43484,3253,1990s,1137104869 +43484,3253,rock and roll,1137104869 +43484,3253,teen,1137104869 +43484,3254,Saturday Night Live,1308557033 +43484,3254,teen movie,1308557033 +43484,3255,baseball,1137104597 +43484,3255,sports,1137104597 +43484,3255,women's lib,1137104597 +43484,3255,World War II,1137104597 +43484,3261,1990s,1137104788 +43484,3263,basketball,1137104882 +43484,3263,sports,1137104882 +43484,3264,dark comedy,1137104460 +43484,3270,chick flick,1137104511 +43484,3270,figure skating,1137104511 +43484,3301,mob,1137104890 +43484,3308,1950s,1308557662 +43484,3308,coming of age,1308557662 +43484,3330,coming of age,1308559103 +43484,3330,mental illness,1308559103 +43484,3341,classic,1137104452 +43484,3359,college,1137101812 +43484,3359,cycling,1137101812 +43484,3359,Indiana,1137101812 +43484,3360,basketball,1137101920 +43484,3360,classic,1137101920 +43484,3360,Indiana,1137101920 +43484,3360,inspirational,1137101920 +43484,3360,sports,1137101920 +43484,3361,baseball,1137104479 +43484,3361,sports,1137104479 +43484,3363,1960s,1137104347 +43484,3363,teen,1137104347 +43484,3418,women's lib,1137104822 +43484,3421,1960s,1137104412 +43484,3421,college,1137104412 +43484,3421,farce,1137104412 +43484,3421,fraternity,1137104424 +43484,3448,true story,1137104563 +43484,3448,Vietnam War,1137104563 +43484,3451,1960s,1137104582 +43484,3451,African American history,1137104582 +43484,3451,racism,1137104582 +43484,3478,rock and roll,1308557488 +43484,3499,Stephen King,1308559815 +43484,3504,journalism,1308558337 +43484,3505,Cold War,1137104700 +43484,3507,classic,1137102028 +43484,3512,Chicago,1137104766 +43484,3526,family,1137104738 +43484,3548,classic,1137101785 +43484,3548,New York,1137101785 +43484,3555,remake,1137104851 +43484,3555,submarines,1137104851 +43484,3555,true story,1137104851 +43484,3555,US history,1137104851 +43484,3555,World War II,1137104851 +43484,3565,teen pregnancy,1308555933 +43484,3591,1980s,1137101976 +43484,3594,ballet,1137104488 +43484,3594,chick flick,1137104515 +43484,3594,dance,1137104488 +43484,3594,teen,1137104488 +43484,3606,classic,1137102036 +43484,3606,Gene Kelly,1305949376 +43484,3606,musical,1305949368 +43484,3606,New York,1137102036 +43484,3608,quirky,1305949355 +43484,3608,road trip,1305949355 +43484,3713,civil rights,1308559168 +43484,3713,racism,1308559168 +43484,3755,overrated,1305523811 +43484,3791,1980s,1137104544 +43484,3791,religious theme,1137104544 +43484,3791,teen,1137104543 +43484,3844,chick flick,1137102075 +43484,3844,friendship,1305949215 +43484,3844,mother-daughter relationships,1305949215 +43484,3844,Southern theme,1137102075 +43484,3844,Southern women,1305949215 +43484,3852,New Mexico,1137104815 +43484,3852,off-beat comedy,1137104815 +43484,3868,screwball,1137104671 +43484,3869,screwball,1137104674 +43484,3893,dark comedy,1137104704 +43484,3897,1970s,1137104403 +43484,3897,rock and roll,1137104403 +43484,3897,teen,1137104402 +43484,3911,dogs,1137101794 +43484,3921,1960s,1137104446 +43484,3921,teen,1137104446 +43484,3977,women's lib,1137104497 +43484,3983,family,1137104899 +43484,3989,anti-Semitism,1137104734 +43484,3989,Olympics,1137104734 +43484,3989,terrorism,1137104734 +43484,3989,true story,1137104734 +43484,4003,pregnancy,1308558652 +43484,4007,corporate America,1137104861 +43484,4007,US history,1137104861 +43484,4027,Coen Brothers,1305522184 +43484,4034,drugs,1137104829 +43484,4080,baby,1137104441 +43484,4080,corporate America,1137104441 +43484,4080,women's lib,1137104441 +43484,4246,adapted from:book,1305949771 +43484,4246,chick flick,1137101821 +43484,4246,romance,1305523342 +43484,4291,1980s,1137102015 +43484,4291,women's lib,1137102015 +43484,4308,Australian,1137101955 +43484,4352,1960s,1308556905 +43484,4352,coming of age,1308556905 +43484,4352,friendship,1308556905 +43484,4361,1980s,1137102116 +43484,4361,women's lib,1137102116 +43484,4447,chick flick,1137101933 +43484,4465,rape,1308560094 +43484,4478,Neil Simon,1308557406 +43484,4489,fish out of water,1308557838 +43484,4520,teen comedy,1308555492 +43484,4676,girl scouts,1308556778 +43484,4676,Shelly Long,1308556778 +43484,4681,divorce,1308555950 +43484,4816,farce,1137102269 +43484,4909,Lily Tomlin,1305950697 +43484,4909,satire,1305950697 +43484,4963,better the second time,1305949423 +43484,4963,las vegas,1137102023 +43484,4963,remake,1305949423 +43484,4963,smart action,1305521800 +43484,5060,adapted for television,1305523082 +43484,5060,Korean War,1305523082 +43484,5299,chick flick,1137101984 +43484,5303,quirky,1308558004 +43484,5375,American West,1308558199 +43484,5418,Matt Damon,1305522272 +43484,5437,World War II,1308558487 +43484,5449,remake,1308558376 +43484,5483,biography,1308557942 +43484,5620,romantic comedy,1308559613 +43484,5669,gun control,1305523374 +43484,5669,Michael Moore,1305523385 +43484,5669,social commentary,1305523380 +43484,5989,Leonardo DiCaprio,1305522671 +43484,5989,true story,1137101832 +43484,5995,holocaust,1137102251 +43484,5995,Poland,1137102251 +43484,5995,World War II,1137102251 +43484,6003,biography,1308557824 +43484,6183,classic,1137102052 +43484,6183,Doris Day,1137102052 +43484,6183,New York,1137102052 +43484,6183,Rock Hudson,1305949336 +43484,6188,fraternity,1305950511 +43484,6218,soccer,1137102164 +43484,6218,sports,1137102164 +43484,6218,women's lib,1137102164 +43484,6254,classic,1137102312 +43484,6266,teen movie,1308559525 +43484,6315,football,1308559482 +43484,6357,Grace Kelly,1308558173 +43484,6357,musical,1308558172 +43484,6377,father-son relationship,1305521844 +43484,6377,friendship,1305521851 +43484,6378,remake,1137102415 +43484,6407,Cary Grant,1308558965 +43484,6449,alcoholism,1308556179 +43484,6565,horse racing,1137102467 +43484,6565,sports,1137102467 +43484,6565,true story,1137102467 +43484,6636,coming of age,1308559628 +43484,6636,sexuality,1308559628 +43484,6636,teen movie,1308559628 +43484,6765,Ital,1308560254 +43484,6787,1970s,1308560051 +43484,6787,Watergate,1308560051 +43484,6873,divorce,1308558066 +43484,6979,Cold War,1308559531 +43484,7054,based on a book,1137101944 +43484,7054,classic,1137101944 +43484,7058,classic,1137102421 +43484,7058,family,1137102421 +43484,7082,classic,1137102091 +43484,7082,Doris Day,1137102091 +43484,7085,classic,1137102061 +43484,7085,Doris Day,1137102061 +43484,7085,hypochondria,1305949301 +43484,7085,Rock Hudson,1305949302 +43484,7207,1960s,1308559499 +43484,7207,spring break,1308559499 +43484,7220,adultery,1308555456 +43484,7283,World War II,1308557071 +43484,7293,romantic comedy,1308556693 +43484,7361,confusing,1305522132 +43484,7361,surrealism,1305522132 +43484,7395,classic,1137101846 +43484,7395,family,1137101846 +43484,7395,true story,1137101846 +43484,7398,classic,1137102324 +43484,7398,true story,1137102324 +43484,7479,World War II,1140557391 +43484,7579,British,1137102445 +43484,7579,classic,1137102445 +43484,7579,Jane Austen,1137102445 +43484,7613,set in St. Louis,1140924276 +43484,7716,Steve Martin,1308558545 +43484,7822,Africa,1308558415 +43484,7822,Ava Gardner,1308558415 +43484,7822,Clark Gable,1308558415 +43484,7822,Grace Kelly,1308558415 +43484,7831,classic,1137102290 +43484,7832,classic,1137102096 +43484,7833,classic,1137102474 +43484,7834,classic,1137102286 +43484,7835,classic,1137102477 +43484,7839,Myrna Loy,1308559153 +43484,7839,romantic comedy,1308559153 +43484,7839,William Powell,1308559153 +43484,7916,surfing,1308559316 +43484,7916,teen movie,1308559316 +43484,8187,Doris Day,1305949392 +43484,8187,young love,1305949392 +43484,8366,religious theme,1137102451 +43484,8366,teen,1137102451 +43484,8373,remake,1137102084 +43484,8376,off-beat comedy,1137102523 +43484,8376,teen,1137102436 +43484,8385,advertising,1305949956 +43484,8385,Clark Gable,1305949956 +43484,8385,classic,1137102426 +43484,8385,Doris Day,1137102426 +43484,8493,based on a true story,1308559839 +43484,8493,historical,1308559840 +43484,8611,Grace Kelly,1308559369 +43484,8622,anti-Bush,1137101893 +43484,8622,Michael Moore,1305949648 +43484,8622,terrorism,1137101893 +43484,8622,US history,1137101893 +43484,8636,sequel,1137102483 +43484,8665,Matt Damon,1305523625 +43484,8695,classic,1137101787 +43484,8711,classic,1137101970 +43484,8781,Cold War,1308559134 +43484,8969,chick flick,1137101816 +43484,25797,Broadway,1305520631 +43484,25797,Great Depression,1305520631 +43484,25797,showgirls,1305520631 +43484,25893,based on a true story,1308558446 +43484,25950,Fred Astaire,1305520301 +43484,25950,Ginger Rogers,1305520301 +43484,26025,true story,1305519755 +43484,27821,United Nations,1308558078 +43484,30793,remake,1137102410 +43484,30812,biography,1137102308 +43484,30812,true story,1137102308 +43484,32234,Nazis,1308557958 +43484,32862,1960s,1308559459 +43484,32862,divorce,1308559459 +43484,38798,sisters,1305950705 +43484,40819,biography,1305949039 +43484,40819,country music,1137102149 +43484,40819,Southern theme,1137102149 +43484,40819,true story,1137102149 +43484,44555,Cold War,1308559188 +43484,44555,East Germany,1308559188 +43484,44555,secret police,1308559188 +43484,45950,global warming,1305950002 +43484,45952,aviation,1308559577 +43484,47122,revenge,1308557227 +43484,48516,Leonardo DiCaprio,1305523671 +43484,52973,pregnancy,1305950627 +43484,54503,friendship,1305949839 +43484,56367,teen pregnancy,1305949984 +43484,59258,Amy Poehler,1308559922 +43484,59258,surrogacy,1308559922 +43484,59258,Tina Fey,1308559922 +43484,60289,1930s,1305950639 +43484,60289,Great Depression,1305950639 +43484,61071,friendship,1308557097 +43484,63876,gay rights,1305949928 +43484,63876,San Francisco,1305949935 +43484,63876,true story,1305949941 +43484,63992,vampires,1305950251 +43484,72407,werewolves,1308558330 +43484,75446,Salvador Dali,1308555335 +43484,78370,British,1308555309 +43484,84637,animated,1308557278 +43484,86548,1930s,1305950173 +43484,86548,circus,1305950173 +43484,86548,Great Depression,1305950173 +43484,86548,Reese Witherspoon,1305950173 +43484,86548,Robert Pattinson,1305950173 +43484,86548,romance,1305950173 +43502,1197,must show,1145964801 +43502,1396,must show,1145964810 +43502,2011,must show,1145964858 +43502,2012,must show,1145964915 +43502,2502,must show,1145964798 +43502,2762,twist,1145964832 +43502,2959,twist,1145964658 +43502,3996,overrated,1145964748 +43502,6016,violent,1145964670 +43502,7438,violent,1145964764 +43524,356,american history,1437051126 +43524,356,inspirational,1437051126 +43524,356,mental illness,1437051126 +43559,104,Adam Sandler,1297144668 +43559,104,golf,1297144672 +43559,104,sports,1297144670 +43559,1359,Arnold Schwarzenegger,1294518488 +43559,1359,christmas movie,1294518492 +43559,1359,Xmas theme(?),1294518500 +43559,2335,Adam Sandler,1297144646 +43559,2335,American football,1297144648 +43559,2335,football,1297144659 +43559,2335,sport:American football,1297144654 +43559,2706,high school,1299453278 +43559,2706,Nudity (Topless - Notable),1299453299 +43559,2706,Nudity (Topless),1299453301 +43559,2706,sexuality,1299453289 +43559,2706,teen comedy,1299453305 +43559,2706,Teen movie,1299453318 +43559,2706,virginity,1299453284 +43559,3556,great ending,1300072673 +43559,3556,high school,1300072663 +43559,3556,lyrical,1300072685 +43559,3556,melancholy,1300072677 +43559,3556,psychology,1300072664 +43559,3556,reflective,1300072682 +43559,3556,suburbia,1300072679 +43559,3556,suicide,1300072668 +43559,3556,visually appealing,1300072678 +43559,4247,David Spade,1297144574 +43559,4247,fuck you it's funny,1297144577 +43559,4247,movie to see,1297144578 +43559,4732,stupid :),1297144592 +43559,4878,alternate timeline,1301886644 +43559,4878,cult classic,1301886648 +43559,4878,cult film,1301886649 +43559,4878,high school,1301886653 +43559,4878,mental illness,1301886646 +43559,4878,music,1301886673 +43559,4878,psychology,1301886645 +43559,4878,sci-fi,1301886670 +43559,4878,surreal,1301886666 +43559,4878,thought-provoking,1301886654 +43559,4878,time travel,1301886659 +43559,5449,Adam Sandler,1297144629 +43559,5449,Al Sharpton,1297144623 +43559,5449,Winona Ryder,1297144626 +43559,8528,Ben Stiller,1297144693 +43559,8528,comedy,1297144702 +43559,8528,funny,1297144703 +43559,8528,Funny as hell,1297144705 +43559,8528,Idiotic,1297144699 +43559,8528,seen more than once,1297144706 +43559,8528,sports,1297144707 +43559,8528,Vince Vaughn,1297144695 +43559,8528,wasted potential,1297144711 +43559,8641,Ben Stiller,1297144522 +43559,8641,Judd Apatow movie,1297144513 +43559,8641,Paul Rudd,1297144517 +43559,8641,Seth Rogen,1297144526 +43559,8641,Steve Carell,1297144516 +43559,8641,Steve Carrell,1297144515 +43559,33880,avante garde,1295835277 +43559,33880,bittersweet,1295835281 +43559,33880,deadpan,1295835279 +43559,33880,FATHERS AND SONS,1295835282 +43559,33880,independent film,1295835294 +43559,33880,Indie,1295835297 +43559,33880,irreverent,1295835284 +43559,33880,SEXUAL AWAKENING,1295835292 +43559,33880,unique,1295835289 +43559,33880,weird,1295835290 +43559,52952,coming of age,1298940741 +43559,52952,friendship,1298940745 +43559,52952,tattoo,1298940761 +43559,52952,teenager,1298940758 +43559,55280,delusion,1296939963 +43559,55280,delusional,1296939960 +43559,55280,dork people,1296939966 +43559,55280,emotional,1296939969 +43559,55280,family affair,1296939972 +43559,55280,mental illness,1296939953 +43559,55280,real doll,1296939977 +43559,55280,small town,1296939956 +43559,60756,brother-brother relationship,1297144543 +43559,60756,ending,1297144556 +43559,60756,Highly quotable,1297144552 +43559,60756,let down,1297144549 +43559,60756,movie to see,1297144544 +43559,60756,Seth Rogen,1297144539 +43559,60756,will ferrell,1297144546 +43559,61132,Ben Stiller,1297144483 +43559,61132,Hollywood,1297144499 +43559,61132,irreverent,1297144493 +43559,61132,Jack Black,1297144482 +43559,61132,Robert Downey Jr.,1297144475 +43559,61132,satire,1297144477 +43559,61132,Tom Cruise,1297144486 +43559,61132,Vietnam War,1297144488 +43559,80094,handcam-real style,1294504953 +43559,80350,funny,1295299018 +43559,80350,parody,1295299021 +43559,80350,vampires,1295299020 +43559,80489,action,1295298902 +43559,80489,Criminal = good Police = bad,1295298886 +43559,80489,one dimensional characters except for Affleck. Ending trite.,1295298893 +43559,80489,too much love interest,1295298907 +43559,80549,Emma Stone,1295298931 +43559,80549,funny dialogues,1295298933 +43559,80549,plot,1295298935 +43559,80549,sexuality,1295298943 +43559,80549,typical,1295298938 +43559,80549,Unreal reactions,1295298941 +43559,80846,plot twist,1299453243 +43559,80862,documentary,1295835327 +43559,80862,makes you think,1295835329 +43559,80862,Not what was expected but still good,1295835325 +43559,80862,social networking,1295835331 +43559,81537,drug use,1297144446 +43559,81537,road trip,1297144454 +43559,81537,Robert Downey Jr.,1297144442 +43559,81537,Zach Galifianakis,1297144444 +43559,81834,boring,1290743649 +43559,81834,camping trip,1290743671 +43559,81834,emma watson,1290743679 +43581,47,powerful ending,1333721903 +43581,47,psychology,1333721900 +43581,47,serial killer,1333721876 +43581,318,narrated,1334945384 +43581,318,twist ending,1334945376 +43581,342,wy,1333723276 +43581,2019,samurai,1335959468 +43597,296,dead n****r storage,1420729654 +43597,296,golden watch,1420729654 +43597,296,milkshake,1420729654 +43597,356,bench,1421598671 +43597,356,lieutenant dan,1421598671 +43597,356,shoes,1421598671 +43613,2427,John Travolta,1318129993 +43613,3386,straight drama,1318130138 +43618,356,drama,1437687847 +43618,356,special effects,1437687847 +43618,356,tom hanks,1437687847 +43640,2986,first robots,1228631599 +43644,22,detective,1367831519 +43644,39,teen movie,1367831177 +43644,46,women,1367831052 +43644,218,women,1367831053 +43644,346,musicians,1367831135 +43644,549,musicians,1367831135 +43644,858,masterpiece,1367830703 +43644,950,detective,1367831519 +43644,1033,unlikely friendships,1367831422 +43644,1068,noir thriller,1367830539 +43644,1088,dancing,1367831310 +43644,1188,dancing,1367831310 +43644,1206,masterpiece,1367830703 +43644,1228,masterpiece,1367830703 +43644,1252,masterpiece,1367830704 +43644,1270,sci-fi,1360092480 +43644,1344,suspenseful,1367831244 +43644,1387,suspenseful,1367831244 +43644,1442,mentor,1367830629 +43644,1678,women,1367831053 +43644,1950,detective,1367831519 +43644,1968,teen movie,1367831177 +43644,2019,masterpiece,1367830704 +43644,2144,teen movie,1367831178 +43644,2145,teen movie,1367831177 +43644,2442,musicians,1367831135 +43644,2485,teen movie,1367831177 +43644,2550,supernatural,1367830785 +43644,2716,supernatural,1367830785 +43644,2762,excellent script,1367830867 +43644,2866,musicians,1367831135 +43644,3005,detective,1367831519 +43644,3013,splatter,1367830981 +43644,3018,splatter,1367830981 +43644,3210,teen movie,1367831178 +43644,3418,women,1367831053 +43644,3499,suspenseful,1367831244 +43644,3551,suspenseful,1367831244 +43644,3594,dancing,1367831310 +43644,3692,splatter,1367830982 +43644,3693,splatter,1367830981 +43644,3791,dancing,1367831310 +43644,3798,supernatural,1367830785 +43644,4018,women,1367831052 +43644,4226,great ending,1367831365 +43644,4291,women,1367831053 +43644,4720,supernatural,1367830786 +43644,4902,supernatural,1367830785 +43644,5163,original,1367830314 +43644,5266,suspenseful,1367831244 +43644,5385,musicians,1367831135 +43644,5693,dancing,1367831310 +43644,5820,musicians,1367831135 +43644,6785,dancing,1367831309 +43644,6874,masterpiece,1367830704 +43644,7217,noir thriller,1367830539 +43644,7223,noir thriller,1367830539 +43644,7335,noir thriller,1367830539 +43644,7943,noir thriller,1367830540 +43644,8862,original,1367830315 +43644,25927,noir thriller,1367830540 +43644,27815,mentor,1367830629 +43644,31785,melancholic,1367830429 +43644,44555,excellent script,1367830867 +43644,44709,mentor,1367830629 +43644,47610,great ending,1367831364 +43644,55553,splatter,1367830981 +43644,55908,excellent script,1367830867 +43644,56339,supernatural,1367830786 +43644,66371,mentor,1367830630 +43644,81845,excellent script,1367830867 +43644,87304,melancholic,1367830429 +43645,2640,to Old,1157401085 +43645,5128,vampire,1157401266 +43645,45431,cartoon,1157401340 +43650,111249,romance,1439447668 +43690,286,fbb,1352419948 +43690,286,Muscles,1352419968 +43690,286,Strong Women,1363686327 +43690,286,Sue Price,1352419958 +43690,737,boobs,1352423261 +43690,737,heroine in tight suit,1352423240 +43690,737,superherion,1352423246 +43690,1080,black comedy,1363686185 +43690,1080,British,1363686166 +43690,1080,british comedy,1363686181 +43690,1080,Monty Python,1363686169 +43690,1080,satire,1363686175 +43690,1681,Sheeva,1352422787 +43690,3863,fbb,1352422027 +43690,4666,fbb,1352420606 +43690,4666,Raye Hollitt,1352421750 +43690,6104,British,1363686212 +43690,6104,Monty Python,1363686214 +43690,6104,sketch comedy,1363686217 +43690,6537,Bad ass women,1352425341 +43690,31221,strong female,1352422984 +43690,42721,fangs,1352424692 +43690,42721,female vampire,1352424701 +43690,42721,Nudity (Topless),1352424724 +43690,42721,vampire,1352424731 +43690,43419,Beautiful Woman,1352423151 +43690,43419,Kick-Butt Women,1352423146 +43690,43419,kiss,1352423142 +43690,43928,heroine in tight suit,1352586307 +43690,43928,Kick-Butt Women,1352586303 +43690,45186,Tom Cruise,1363685730 +43690,45732,superheroin,1352423216 +43690,68843,fangs,1352420293 +43690,71302,amazon,1352420830 +43690,72489,extremely gory,1353836814 +43690,72489,martial arts,1353836928 +43690,72489,ninja,1353836803 +43690,72489,ninjas,1353836805 +43690,72489,stylized violence,1353836870 +43690,72489,violence,1353836826 +43690,85334,Nudity (Topless),1363685648 +43707,837,nice movie,1186653733 +43707,1243,Great Movie!,1186653806 +43707,2642,don't want to see,1186653767 +43707,2662,good acting,1186653784 +43707,2840,don't want to see,1186653758 +43712,527,holocaust,1440185866 +43712,1222,masterpiece,1440185435 +43712,2028,WWII,1440185912 +43712,31410,WWII,1440185513 +43712,40278,war,1440185362 +43712,44555,DDR,1440185286 +43712,44555,Stasi,1440185299 +43712,47997,satire,1440185617 +43712,60069,animated,1440185253 +43712,60069,robot,1440185268 +43712,60756,funny,1440185673 +43719,260,sci-fi,1433715972 +43719,260,Star Wars,1433715978 +43719,8228,detective,1433716698 +43719,8228,spies,1433716698 +43719,8228,suspense,1433716698 +43724,969,classic,1141863639 +43724,969,river,1141863639 +43724,3977,:-),1141863662 +43724,34338,Garbage,1146354633 +43726,785,Gross-out,1450582564 +43726,785,silly,1450582571 +43726,1894,Adventure,1450582354 +43726,1894,Comedy,1450582336 +43726,1894,romance,1450582328 +43726,1894,stranded,1450582313 +43726,2502,comedy,1450582591 +43726,2502,crime gone awry,1450582604 +43726,2502,revenge,1450582599 +43726,2502,satire,1450582589 +43726,2671,romance,1450583121 +43726,7293,romantic comedy,1450583106 +43726,7380,adventure,1450582879 +43726,7380,funny,1450582883 +43726,7380,spoof,1450582864 +43726,8528,comedy,1450582504 +43726,8528,funny,1450582513 +43726,8528,hilarious,1450582503 +43726,8860,KIDNAPPING,1450582418 +43726,8860,RACE AGAINST TIME,1450582437 +43726,8860,tense,1450582412 +43726,8860,thriller,1450582432 +43726,32031,family friendly,1450582969 +43726,32031,looks gorgeous,1450582976 +43726,37729,visually appealing,1450582271 +43726,42011,despair,1450582548 +43726,42011,funny,1450582545 +43726,42011,money,1450582547 +43726,42011,robbery,1450582550 +43726,45431,family friendly,1450583055 +43726,45431,Funny,1450583018 +43726,45431,looks gorgeous,1450583024 +43726,45431,witty,1450583041 +43726,51662,stylized,1450582701 +43726,60072,assassin-in-training,1450582467 +43726,60072,plot twist,1450582462 +43726,60072,stylish,1450582478 +43726,60072,stylized violence,1450582476 +43726,60072,unrealistic action,1450582473 +43726,64969,funny,1450582670 +43726,64969,romantic comedy,1450582677 +43726,68952,tongue-in-cheek,1450583073 +43726,81564,funny,1450582907 +43726,81564,witty,1450582912 +43726,81788,jailbreak,1450582140 +43726,81788,thriller,1450582130 +43726,100383,twist ending,1450582755 +43726,109191,fantasy,1450582790 +43726,109191,Romantic,1450582786 +43726,136598,funny,1450582648 +43726,136598,road trip,1450582650 +43732,260,classic sci-fi,1444767928 +43732,260,scifi,1444767920 +43736,2894,unsimulated sex scenes,1258928156 +43736,7976,unsimulated sex scenes,1258927933 +43736,27664,unsimulated sex scenes,1258927952 +43736,48744,unsimulated sex scenes,1258920618 +43768,260,incest,1426953892 +43768,260,space drama,1426953892 +43768,260,white knight,1426953892 +43768,296,classic,1429627723 +43768,296,coke,1429627723 +43768,296,non-linear,1429627723 +43768,356,bland,1431100376 +43768,356,fruitless,1431100376 +43768,356,hateful,1431100376 +43768,480,annoying kids,1432221537 +43768,480,deus ex machina,1432221537 +43768,480,great soundtrack,1432221537 +43768,52885,beautiful animation,1451612600 +43768,52885,boring,1451612629 +43768,52885,dreams,1451612586 +43768,52885,female heroine,1451612617 +43768,52885,psychedellic,1451612594 +43768,52885,surreal,1451612590 +43768,62336,Gainax,1451609952 +43768,62336,surreal,1451609939 +43768,114935,Awesome acting,1431100279 +43776,260,Science Fiction,1438155537 +43776,260,space adventure,1438155494 +43776,356,drama,1438156201 +43776,356,emotional,1438156201 +43776,356,vietnam war,1438156201 +43790,2628,jar jar binks,1277759493 +43822,54286,car chase,1430161668 +43822,54286,spy thriller,1430161658 +43822,54286,suspense,1430161770 +43822,54286,twist ending,1430161710 +43823,94070,inspiring,1453255408 +43836,318,friendship,1447013818 +43836,318,hope,1447013807 +43836,318,Morgan Freeman,1447013815 +43836,318,reflective,1447013802 +43836,318,thought-provoking,1447013796 +43836,356,inspirational,1447013933 +43836,356,meaning of life,1447013925 +43836,356,tom hanks,1447013913 +43836,356,touching,1447013937 +43836,3147,emotional,1447013877 +43836,3147,great acting,1447013879 +43836,3147,Tom Hanks,1447013868 +43860,356,feel-good,1425877780 +43860,356,funny,1425877780 +43860,356,life lessons,1425877780 +43891,260,classic sci-fi,1436607520 +43891,260,space epic,1436607453 +43952,5618,whimsical,1217433621 +43952,5716,incest,1247157217 +43952,44694,incest,1247156877 +43952,64622,Nudity (Full Frontal - Notable),1247156273 +43952,64622,Nudity (Full Frontal),1247156281 +43978,110,Oscar,1211702502 +43978,296,Quentin Tarantino,1211704105 +43978,296,Tarantino,1213035083 +43978,318,prison,1211702349 +43978,26547,Jackie Chan,1211700393 +44024,1704,classic,1448642776 +44024,1704,drama,1448642766 +44024,1704,feel-good,1448642785 +44024,58559,superhero,1448642817 +44024,58559,thriller,1448642812 +44040,260,good vs evil,1432072301 +44040,260,space epic,1432072308 +44040,260,underdog story,1432072316 +44061,4310,War,1164790087 +44066,87804,comedy,1425801199 +44066,87804,finnish,1425801199 +44066,87804,military,1425801199 +44088,128594,romantic,1432373758 +44088,128594,touching,1432373758 +44088,128594,transgender,1432373758 +44105,318,Ali della libertà,1152709159 +44105,908,Intrigo internazionale,1152572375 +44105,913,Il mistero del falco,1147729011 +44105,923,Quarto potere,1147729195 +44105,926,Eva contro Eva,1152709259 +44105,1147,Quando eravamo re,1147729188 +44105,1246,High School,1142027504 +44105,1284,Il grande sonno,1147635096 +44105,1393,funny kid,1139150544 +44105,2203,L'ombra del dubbio,1147635202 +44105,2237,[ITA] No limits,1153215238 +44105,3307,Luci della citta',1147635069 +44105,3435,La fiamma del peccato,1147634485 +44105,3812,Tutto quello che avreste voluto sapere sul sesso ma non avete mai osato chiedere,1152709294 +44105,5782,introvabile,1148328191 +44105,6650,Sangue blu,1147634526 +44105,8516,Scala al paradiso,1147729255 +44105,26704,Stato di grazia,1152709028 +44105,37386,MTV,1140884792 +44105,39183,gay,1139146363 +44105,39183,In Netflix queue,1137699408 +44105,40278,war,1140884930 +44105,40583,ambitious,1140885036 +44105,40583,complicated,1140885038 +44105,40583,world politics,1140885034 +44105,42015,funny,1140885105 +44105,57368,Handycam,1209867878 +44132,77540,dark hero,1425306500 +44132,77540,fantasy,1425306500 +44132,77540,sword and sorcery,1425306500 +44154,260,blockbuster,1436926487 +44154,260,classic sci-fi,1436926463 +44154,260,space epic,1436926476 +44154,108932,cheeky,1436927568 +44154,108932,clever,1436927568 +44154,108932,imaginative,1436927568 +44185,16,gangsters,1249595390 +44185,16,mafia,1249595393 +44185,16,Robert De Niro,1249595398 +44185,18,Bruce Willis,1250530005 +44185,18,dark comedy,1250529973 +44185,18,multiple storylines,1250530012 +44185,18,Quentin Tarantino,1250529958 +44185,18,Tim Roth,1250529964 +44185,19,Jim Carrey,1249472608 +44185,32,Brad Pitt,1248706553 +44185,32,Bruce Willis,1248706553 +44185,32,imdb top 250,1248706561 +44185,32,time travel,1248706554 +44185,32,twist ending,1248706553 +44185,47,Brad Pitt,1248706933 +44185,47,crime,1248706939 +44185,47,imdb top 250,1248706942 +44185,47,investigation,1248706941 +44185,47,Kevin Spacey,1248706938 +44185,47,Morgan Freeman,1248706933 +44185,47,powerful ending,1248706948 +44185,47,religion,1248706943 +44185,47,serial killer,1248706934 +44185,47,twist ending,1248706936 +44185,50,complicated,1248706794 +44185,50,Crime,1248706788 +44185,50,Dark,1248706790 +44185,50,great ending,1248706780 +44185,50,Kevin Spacey,1248706777 +44185,50,mindfuck,1248706778 +44185,50,organized crime,1248706782 +44185,50,Oscar Winner,1248706796 +44185,50,tricky,1248706786 +44185,50,twist ending,1248706777 +44185,110,classic,1248706733 +44185,110,drama,1248706717 +44185,110,england,1248706730 +44185,110,historical,1248706715 +44185,110,imdb top 250,1248706726 +44185,110,Mel Gibson,1248706712 +44185,110,Oscar (Best Picture),1248706722 +44185,110,sword fight,1248706719 +44185,110,war,1248706721 +44185,145,action,1249331555 +44185,145,drugs,1249331569 +44185,145,Miami,1249331558 +44185,145,Michael Bay,1249331556 +44185,145,Will Smith,1249331561 +44185,165,action,1248716763 +44185,165,always watch it when it's on tv,1248716767 +44185,165,Bruce Willis,1248716760 +44185,165,more explosions,1248716781 +44185,165,Samuel L. Jackson,1248716760 +44185,170,Angelina Jolie,1249419781 +44185,170,computers,1249419781 +44185,170,cult film,1249419782 +44185,170,hacking,1249419781 +44185,172,cyberpunk,1249595270 +44185,172,hackers,1249595268 +44185,172,Keanu Reeves,1249595264 +44185,172,Takeshi Kitano,1249595264 +44185,173,Jürgen Prochnow,1249472778 +44185,173,police corruption,1249472783 +44185,173,Sylvester Stallone,1249472778 +44185,253,Antonio Banderas,1248695252 +44185,253,based on a book,1248695256 +44185,253,book was better,1248695259 +44185,253,Brad Pitt,1248695249 +44185,253,Brilliant,1248695264 +44185,253,fantasy,1248695267 +44185,253,Kirsten Dunst,1248695253 +44185,253,Tom Cruise,1248695244 +44185,253,vampire,1248695248 +44185,260,aliens,1248694868 +44185,260,atmospheric,1248694896 +44185,260,fantasy,1248694870 +44185,260,great soundtrack,1248694879 +44185,260,Harrison Ford,1248694868 +44185,260,imdb top 250,1248694892 +44185,260,old FX quality,1248694871 +44185,260,sci-fi,1248694873 +44185,260,space,1248694874 +44185,260,starship pilots,1248694887 +44185,280,Alcatraz,1249602500 +44185,280,Christian Slater,1249602497 +44185,280,corruption,1249602497 +44185,280,Kevin Bacon,1249602507 +44185,293,assassin,1248706324 +44185,293,French,1248706333 +44185,293,Gary Oldman,1248706327 +44185,293,great acting,1248706338 +44185,293,hit men,1248706340 +44185,293,humorous,1248706332 +44185,293,imdb top 250,1248706330 +44185,293,Jean Reno,1248706324 +44185,293,love story,1248706328 +44185,293,Natalie Portman,1248706324 +44185,296,action,1248269124 +44185,296,Black comedy,1248269133 +44185,296,Bruce Willis,1248269103 +44185,296,classic,1248269122 +44185,296,comedy,1248269128 +44185,296,dark comedy,1248269103 +44185,296,drugs,1248269118 +44185,296,nonlinear,1248269109 +44185,296,organized crime,1248269111 +44185,296,Quentin Tarantino,1248269104 +44185,296,Samuel L. Jackson,1248269106 +44185,318,based on a book,1256494208 +44185,318,classic,1256494212 +44185,318,imdb top 250,1256494282 +44185,318,Morgan Freeman,1256494206 +44185,318,prison,1256494210 +44185,318,Tim Robbins,1256494239 +44185,318,twist ending,1256494280 +44185,349,Harrison Ford,1346196460 +44185,349,jack ryan,1346196464 +44185,349,Tom Clancy,1346196461 +44185,356,based on a book,1248694850 +44185,356,bittersweet,1248694832 +44185,356,great soundtrack,1248694834 +44185,356,Oscar (Best Actor),1248694826 +44185,356,Oscar (Best Directing),1248694828 +44185,356,Oscar (Best Effects - Visual Effects),1248694843 +44185,356,psychology,1248694824 +44185,356,romance,1248694846 +44185,356,Tom Hanks,1248694819 +44185,367,Cameron Diaz,1249472572 +44185,367,funny,1249472570 +44185,367,Jim Carrey,1249472565 +44185,442,dystopia,1249472757 +44185,442,hilarious,1249472753 +44185,442,Sandra Bullock,1249472752 +44185,442,Sylvester Stallone,1249472752 +44185,442,Wesley Snipes,1249472752 +44185,466,Charlie Sheen,1249986919 +44185,466,comedy,1249986920 +44185,466,parody,1249986917 +44185,466,watch again,1249986923 +44185,520,comedy,1249986886 +44185,520,funny,1249986889 +44185,520,Mel Brooks,1249986883 +44185,520,parody,1249986894 +44185,520,Patrick Stewart,1249986892 +44185,520,very funny!,1249986899 +44185,527,based on a true story,1248695515 +44185,527,biography,1248695524 +44185,527,depressing,1248695528 +44185,527,disturbing,1248695510 +44185,527,Holocaust,1251098770 +44185,527,Liam Neeson,1251098795 +44185,527,Nazis,1248695523 +44185,527,Oscar (Best Picture),1248695501 +44185,527,Steven Spielberg,1248695501 +44185,527,true story,1248695501 +44185,527,World War II,1251098763 +44185,593,Anthony Hopkins,1248706684 +44185,593,classic,1248706685 +44185,593,crime,1248706695 +44185,593,Hannibal Lecter,1248706681 +44185,593,imdb top 250,1248706692 +44185,593,Jodie Foster,1248706681 +44185,593,Oscar (Best Actor),1248706689 +44185,593,Oscar (Best Picture),1248706690 +44185,593,serial killer,1248706681 +44185,648,Action,1248695588 +44185,648,Based on a TV show,1248695587 +44185,648,Brian De Palma,1248695583 +44185,648,Classic Thriller,1248695584 +44185,648,confusing plot,1248695590 +44185,648,espionage,1248695593 +44185,648,Jean Reno,1248695582 +44185,648,military,1248695602 +44185,648,Tom Cruise,1248695582 +44185,778,crime,1249331774 +44185,778,dark comedy,1249331764 +44185,778,Ewan McGregor,1249331762 +44185,778,great soundtrack,1249331767 +44185,778,heroin,1249331769 +44185,996,action,1249987341 +44185,996,Bruce Willis,1249987336 +44185,996,Christopher Walken,1249987337 +44185,996,killer,1249987366 +44185,996,shooting,1249987366 +44185,1036,action,1249419885 +44185,1036,Alan Rickman,1249419887 +44185,1036,always watch it when it's on tv,1249419889 +44185,1036,Bruce Willis,1249419879 +44185,1036,humorous,1249419880 +44185,1036,lone hero,1249419882 +44185,1061,always watch it when it's on tv,1249602473 +44185,1061,Brad Pitt,1249602467 +44185,1061,Dustin Hoffman,1249602471 +44185,1061,Kevin Bacon,1249602468 +44185,1061,Robert De Niro,1249602466 +44185,1061,true story,1249602477 +44185,1089,crime,1248706652 +44185,1089,cult film,1248706651 +44185,1089,humorous,1248706650 +44185,1089,imdb top 250,1248706653 +44185,1089,nonlinear,1248706655 +44185,1089,notable soundtrack,1248706660 +44185,1089,Quentin Tarantino,1248706648 +44185,1090,Charlie Sheen,1248706974 +44185,1090,horrors of war,1248706980 +44185,1090,imdb top 250,1248706975 +44185,1090,Oliver Stone,1248706970 +44185,1090,Oscar (Best Picture),1248706970 +44185,1090,Oscar (Best Sound),1248706978 +44185,1090,Vietnam War,1248706970 +44185,1097,classic,1249631515 +44185,1097,emotional,1249631510 +44185,1097,Steven Spielberg,1249631510 +44185,1101,Oscar (Best Music - Original Song),1249419067 +44185,1101,Tom Cruise,1249419068 +44185,1101,Val Kilmer,1249419070 +44185,1120,Edward Norton,1249665570 +44185,1120,how world works,1249665579 +44185,1120,pornography,1249665566 +44185,1120,very good,1249665573 +44185,1120,Woody Harrelson,1249665565 +44185,1196,aliens,1248706843 +44185,1196,fantasy,1248706821 +44185,1196,father-son relationship,1248706824 +44185,1196,George Lucas,1248706818 +44185,1196,Harrison Ford,1248706818 +44185,1196,imdb top 250,1248706827 +44185,1196,music,1248706832 +44185,1196,Saturn Award (Best Science Fiction Film),1248706834 +44185,1196,sequel,1248706839 +44185,1196,star wars,1248706820 +44185,1198,adventure,1248706174 +44185,1198,atmospheric,1248706188 +44185,1198,comedy,1248706186 +44185,1198,Harrison Ford,1248706173 +44185,1198,indiana jones,1248706172 +44185,1198,racism,1248706181 +44185,1198,Steven Spielberg,1248706177 +44185,1198,World War II,1248706178 +44185,1208,classic,1249664888 +44185,1208,Francis Ford Coppola,1249664955 +44185,1208,imdb top 250,1249664893 +44185,1208,Marlon Brando,1249664967 +44185,1208,Martin Sheen,1249664955 +44185,1208,Vietnam war,1249664884 +44185,1210,Harrison Ford,1248707148 +44185,1210,imdb top 250,1248707148 +44185,1210,sequel,1248707147 +44185,1213,crime,1248706306 +44185,1213,dark comedy,1248706302 +44185,1213,good dialogue,1248706289 +44185,1213,imdb top 250,1248706300 +44185,1213,Joe Pesci,1248706277 +44185,1213,mafia,1248706245 +44185,1213,organized crime,1248706280 +44185,1213,Ray Liotta,1248706266 +44185,1213,Robert De Niro,1248706237 +44185,1213,violence,1248706297 +44185,1222,anti-war,1248706867 +44185,1222,boot camp,1248706872 +44185,1222,political,1248706881 +44185,1222,Stanley Kubrick,1248706880 +44185,1222,suicide,1248706878 +44185,1222,Vietnam,1248706863 +44185,1222,want to see again,1248706875 +44185,1240,Arnold Schwarzenegger,1248710854 +44185,1240,artificial intelligence,1248710873 +44185,1240,assassin,1248710871 +44185,1240,cyborgs,1248710857 +44185,1240,future,1248710878 +44185,1240,great soundtrack,1248710868 +44185,1240,James Cameron,1248710859 +44185,1240,sci-fi,1248710866 +44185,1240,time travel,1248710864 +44185,1270,adventure,1248695192 +44185,1270,based on a book,1248695198 +44185,1270,Christopher Lloyd,1249631719 +44185,1270,comedy,1248695186 +44185,1270,future,1248695187 +44185,1270,Michael J. Fox,1249631719 +44185,1270,Saturn Award (Best Science Fiction Film),1248695195 +44185,1270,sci-fi,1248695190 +44185,1270,time travel,1248695185 +44185,1370,action,1249599800 +44185,1370,always watch it when it's on tv,1249599801 +44185,1370,Bruce Willis,1249599800 +44185,1370,explosions,1249599811 +44185,1370,fighting,1249599813 +44185,1370,terrorism,1249599818 +44185,1396,hacking,1251461640 +44185,1396,Robert Redford,1251461645 +44185,1466,1970s,1249595361 +44185,1466,Al Pacino,1249595361 +44185,1466,based on a true story,1249595362 +44185,1466,Johnny Depp,1249595364 +44185,1466,Mafia,1249595372 +44185,1466,undercover cop,1249595367 +44185,1485,classic comedy,1249987112 +44185,1485,Funny as hell,1249987113 +44185,1485,jim carrey,1249987104 +44185,1517,Danger is my middle name,1249331361 +44185,1517,James Bond,1249331362 +44185,1517,parody,1249331365 +44185,1527,aliens,1248695440 +44185,1527,Bruce Willis,1248695424 +44185,1527,Chris Tucker,1248695428 +44185,1527,humorous,1248695435 +44185,1527,Luc Besson,1248695424 +44185,1527,Milla Jovovich,1248695424 +44185,1527,parody,1248695433 +44185,1527,sci-fi,1248695445 +44185,1552,Great Actions,1249331509 +44185,1552,Jerry Bruckheimer,1249331501 +44185,1552,John Cusack,1249331499 +44185,1552,John Malkovich,1249331506 +44185,1552,Nicolas Cage,1249331499 +44185,1573,Gina Gershon,1249331539 +44185,1573,John Travolta,1249331531 +44185,1573,John Woo,1249331520 +44185,1573,Nicolas Cage,1249331529 +44185,1608,Harrison Ford,1249419161 +44185,1608,terrorism,1249419166 +44185,1608,Wolfgang Petersen,1249419161 +44185,1645,Al Pacino,1249595310 +44185,1645,deal with the devil,1249595309 +44185,1645,devil,1249595316 +44185,1645,Keanu Reeves,1249595310 +44185,1645,lawyer as protagonist,1249595328 +44185,1645,Nudity (Full Frontal),1249595317 +44185,1645,religion,1249595319 +44185,1645,satan,1249595321 +44185,1676,Alien Invasion,1251461933 +44185,1676,giant space bugs,1251461930 +44185,1676,Nudity (Topless),1251461925 +44185,1676,sci-fi,1251461928 +44185,1676,space,1251461926 +44185,1917,apocalypse,1248695098 +44185,1917,archaeology,1248695095 +44185,1917,bad science,1248695074 +44185,1917,Ben Affleck,1248695093 +44185,1917,big budget,1248695087 +44185,1917,Billy Bob Thornton,1248695088 +44185,1917,Bruce Willis,1248695072 +44185,1917,humorous,1248695078 +44185,1917,long music video,1248695084 +44185,1917,Owen Wilson,1248695081 +44185,1917,space program,1248695083 +44185,1917,stylized,1248695101 +44185,1927,German perspective,1256494449 +44185,1927,imdb top 250,1256494456 +44185,1927,Oscar (Best Directing),1256494444 +44185,1927,Oscar (Best Picture),1256494447 +44185,1927,World War I,1256494460 +44185,1954,Oscar (Best Picture),1249472634 +44185,1954,Sylvester Stallone,1249472637 +44185,1961,Dustin Hoffman,1249419315 +44185,1961,Oscar (Best Actor),1249419316 +44185,1961,Oscar (Best Picture),1249419313 +44185,1961,road movie,1249419322 +44185,1961,Tom Cruise,1249419310 +44185,1961,true story,1249419324 +44185,2000,classic,1248710489 +44185,2000,comedy,1248710487 +44185,2000,Danny Glover,1248710485 +44185,2000,Mel Gibson,1248710485 +44185,2011,Christopher Lloyd,1249631618 +44185,2011,Michael J. Fox,1249631616 +44185,2011,seen more than once,1249631634 +44185,2011,sequel,1249631631 +44185,2011,time travel,1249631636 +44185,2012,Christopher Lloyd,1249631648 +44185,2012,Michael J. Fox,1249631647 +44185,2012,science fiction,1249631651 +44185,2012,seen more than once,1249631658 +44185,2012,sequel,1249631663 +44185,2012,time travel,1249631648 +44185,2028,drama,1248694982 +44185,2028,enormously long battle scene,1248695036 +44185,2028,history,1248695035 +44185,2028,Oscar (Best Cinematography),1248694986 +44185,2028,Oscar (Best Directing),1248694984 +44185,2028,Steven Spielberg,1248694988 +44185,2028,Tom Hanks,1248694980 +44185,2028,Vin Diesel,1248694997 +44185,2028,World War II,1248694991 +44185,2194,Andy Garcia,1248707034 +44185,2194,Brian De Palma,1248707032 +44185,2194,corruption,1248707037 +44185,2194,gangsters,1248707031 +44185,2194,Kevin Costner,1248707028 +44185,2194,police corruption,1248707042 +44185,2194,Prohibition,1248707041 +44185,2194,Robert De Niro,1248707025 +44185,2194,Sean Connery,1248707025 +44185,2324,bittersweet,1251461757 +44185,2324,heartwarming,1251461759 +44185,2324,World War II,1251461762 +44185,2329,disturbing,1248269048 +44185,2329,Edward Norton,1248269048 +44185,2329,emotional,1248269062 +44185,2329,powerful ending,1248269064 +44185,2404,Sylvester Stallone,1249472625 +44185,2409,silvester stalone,1249472671 +44185,2409,sport:boxing,1249472671 +44185,2571,Action,1248706905 +44185,2571,artificial intelligence,1248706906 +44185,2571,computers,1248706908 +44185,2571,cult film,1248706911 +44185,2571,imdb top 250,1248706913 +44185,2571,Keanu Reeves,1248706900 +44185,2571,martial arts,1248706900 +44185,2571,philosophy,1248706920 +44185,2571,virtual reality,1248706903 +44185,2701,Kevin Kline,1249472829 +44185,2701,Will Smith,1249472819 +44185,2706,best comedy,1249331306 +44185,2706,high school,1249331310 +44185,2706,Nudity (Topless - Notable),1249331313 +44185,2762,Bruce Willis,1248710774 +44185,2762,M. Night Shyamalan,1248710775 +44185,2762,twist ending,1248710774 +44185,2791,AFI 100 (Laughs),1251461556 +44185,2791,AFI 100 (Movie Quotes),1251461561 +44185,2791,classic,1251461564 +44185,2791,comedy,1251461565 +44185,2791,Funny as hell,1251461570 +44185,2791,Leslie Nielsen,1251461573 +44185,2791,Parody,1251461568 +44185,2858,black comedy,1248694935 +44185,2858,dark comedy,1248694945 +44185,2858,Kevin Spacey,1248694935 +44185,2858,midlife crisis,1248694942 +44185,2858,Nudity (Topless - Notable),1248694953 +44185,2858,violence,1248694958 +44185,2959,action,1248695151 +44185,2959,atmospheric,1248695150 +44185,2959,based on a book,1248695148 +44185,2959,Brad Pitt,1248695135 +44185,2959,dark comedy,1248695143 +44185,2959,Edward Norton,1248695132 +44185,2959,imdb top 250,1248695154 +44185,2959,psychology,1248695140 +44185,2959,surreal,1248695159 +44185,2959,TERRORISM,1248695156 +44185,2959,twist ending,1248695137 +44185,2959,violence,1248695138 +44185,3052,Comedy,1249372292 +44185,3052,jay and silent bob,1249372286 +44185,3052,satire,1249372295 +44185,3256,adapted from:book,1346196435 +44185,3256,Harrison Ford,1346196428 +44185,3256,jack ryan,1346196429 +44185,3256,Tom Clancy,1346196431 +44185,3301,assassin,1249599927 +44185,3301,Bruce Willis,1249599927 +44185,3301,Matthew Perry,1249599927 +44185,3578,action,1248716577 +44185,3578,drama,1248716602 +44185,3578,imdb top 250,1248716583 +44185,3578,Ridley Scott,1248716596 +44185,3578,Russell Crowe,1248716577 +44185,3578,sword fight,1248716580 +44185,3753,Heath Ledger,1249419126 +44185,3753,Mel Gibson,1249419123 +44185,3753,Roland Emmerich,1249419119 +44185,3793,action,1248710829 +44185,3793,comic book,1248710830 +44185,3793,cult film,1248710837 +44185,3793,sci-fi,1248710834 +44185,3793,super-hero,1248710829 +44185,3868,comedy,1249331402 +44185,3868,Funny as hell,1249987002 +44185,3868,Leslie Nielsen,1249331406 +44185,3868,parody,1249331408 +44185,3869,comedy,1249986976 +44185,3869,I laughed continuosly throughout this film,1249986973 +44185,3869,Leslie Nielsen,1249986973 +44185,3988,Jim Carrey,1249987172 +44185,3988,Xmas theme,1249987172 +44185,3998,Meg Ryan,1249595522 +44185,3998,Russell Crowe,1249595522 +44185,4011,Benicio Del Toro,1248706408 +44185,4011,boxing,1248706405 +44185,4011,Brad Pitt,1248706382 +44185,4011,british,1248706393 +44185,4011,comedy,1248706394 +44185,4011,Crime,1248706396 +44185,4011,dialogue,1248706398 +44185,4011,fighting,1248706400 +44185,4011,funny as hell,1248706401 +44185,4011,gypsy accent,1248706382 +44185,4011,Jason Statham,1248706391 +44185,4011,twist ending,1248706389 +44185,4239,drug trade,1249595469 +44185,4239,drugs,1249595471 +44185,4239,Johnny Depp,1249595462 +44185,4239,Penélope Cruz,1249595473 +44185,4239,Ray Liotta,1249595462 +44185,4239,true story,1249595464 +44185,4262,Al Pacino,1248707087 +44185,4262,classic,1248707101 +44185,4262,corruption,1248707089 +44185,4262,crime,1248707091 +44185,4262,gangster,1248707087 +44185,4262,imdb top 250,1248707094 +44185,4262,mafia,1248707087 +44185,4262,Nudity (Topless - Brief),1248707104 +44185,4262,organized crime,1248707092 +44185,4265,Formula 1 racing,1249472723 +44185,4265,Sylvester Stallone,1249472725 +44185,4344,cool,1249419765 +44185,4344,hacking,1249419759 +44185,4344,Halle Berry,1249419763 +44185,4344,Nudity (Topless - Notable),1249419762 +44185,4369,cars,1249331590 +44185,4369,Paul Walker,1249331590 +44185,4369,racing,1249331590 +44185,4369,street race,1249331592 +44185,4369,Stupid as Hell,1249331597 +44185,4369,Vin Diesel,1249331590 +44185,4993,adventure,1248695391 +44185,4993,based on a book,1248695365 +44185,4993,fantasy,1248695367 +44185,4993,fantasy world,1248695396 +44185,4993,high fantasy,1248695365 +44185,4993,magic,1248695371 +44185,4993,original plot,1248695374 +44185,4993,Oscar (Best Music - Original Score),1248695375 +44185,4993,wizards,1248695394 +44185,5266,crime,1249631461 +44185,5266,Jodie Foster,1249631456 +44185,5349,Action,1249595100 +44185,5349,comic book,1249595097 +44185,5349,Kirsten Dunst,1249595098 +44185,5349,marvel,1249595105 +44185,5349,superhero,1249595094 +44185,5349,Tobey Maguire,1249595103 +44185,5449,Adam Sandler,1251461796 +44185,5449,Winona Ryder,1251461798 +44185,5502,Mel Gibson,1249631433 +44185,5502,ridiculous,1249631441 +44185,5502,stupid,1249631438 +44185,5507,play enough video games and you can become an NSA agent,1249331620 +44185,5507,Samuel L. Jackson,1249331622 +44185,5507,terrible,1249331627 +44185,5507,Vin Diesel,1249331613 +44185,5541,Charlie Sheen,1249986933 +44185,5541,comedy,1249986943 +44185,5541,Jim Abrahams,1249986935 +44185,5541,parody,1249986940 +44185,5541,So funny,1249986939 +44185,5816,based on a book,1250530314 +44185,5816,Emma Watson,1250530327 +44185,5816,fantasy,1250530316 +44185,5816,magic,1250530320 +44185,5816,Wizards,1250530318 +44185,5952,Action,1265146730 +44185,5952,adventure,1265146737 +44185,5952,atmospheric,1265146735 +44185,5952,based on a book,1265146732 +44185,5952,fantasy,1265146733 +44185,5952,high fantasy,1265146743 +44185,5954,Edward Norton,1249665519 +44185,5954,powerful ending,1249665515 +44185,6323,John Cusack,1249651213 +44185,6323,psychology and the nature of reality,1249651226 +44185,6323,Ray Liotta,1249651215 +44185,6323,serial killer,1249651219 +44185,6323,twist ending,1249651217 +44185,6373,comedy,1249987145 +44185,6373,funny,1249987144 +44185,6373,god,1249987154 +44185,6373,Jennifer Aniston,1249987137 +44185,6373,Jim Carrey,1249987139 +44185,6373,Morgan Freeman,1249987142 +44185,6373,seen more than once,1249987150 +44185,6378,cars,1249665624 +44185,6378,Crime,1249665620 +44185,6378,Edward Norton,1249665609 +44185,6378,Great plot,1249665634 +44185,6378,Jason Statham,1249665613 +44185,6378,Mark Wahlberg,1249665611 +44185,6378,robbery,1249665630 +44185,6383,crappy sequel,1251461523 +44185,6874,Quentin Tarantino,1249473047 +44185,6874,Tarantino,1249473044 +44185,6874,Uma Thurman,1249473045 +44185,6874,violence,1249473050 +44185,7007,Bruce Willis,1249599735 +44185,7007,cool dialogues,1249599766 +44185,7007,funny,1249599766 +44185,7007,Halle Berry,1249599740 +44185,7007,jokes,1249599766 +44185,7153,adventure,1248695303 +44185,7153,based on a book,1248695305 +44185,7153,fantasy,1248695304 +44185,7153,high fantasy,1248695307 +44185,7153,imdb top 250,1248695300 +44185,7153,literary adaptation,1248695318 +44185,7153,love,1248695315 +44185,7153,magic,1248695297 +44185,7153,Oscar (Best Music - Original Song),1248695296 +44185,7153,Oscar (Best Picture),1248695296 +44185,7445,action,1249665001 +44185,7445,Christopher Walken,1249664993 +44185,7445,Denzel Washington,1249664992 +44185,7445,kidnapping,1249664996 +44185,8636,action,1249595120 +44185,8636,marvel,1249595118 +44185,8636,sequel,1249595125 +44185,8636,superhero,1249595116 +44185,8665,Matt Damon,1249665237 +44185,8665,realistic action,1249665243 +44185,8665,spy,1249665240 +44185,8957,Danny Glover,1249631894 +44185,8957,mindfuck,1249631914 +44185,8957,movie to see,1249631910 +44185,8957,serial killer,1249631903 +44185,8957,surprise ending,1249631899 +44185,8984,Andy Garcia,1249419562 +44185,8984,Brad Pitt,1249419558 +44185,8984,Catherine Zeta-Jones,1249419558 +44185,8984,confusing,1249419566 +44185,8984,George Clooney,1249419555 +44185,8984,great soundtrack,1249419563 +44185,8984,Julia Roberts,1249419561 +44185,8984,Matt Damon,1249419542 +44185,8984,not as good as the first,1249419552 +44185,8984,Robbery,1249419555 +44185,31685,Andy Tennant,1249472879 +44185,31685,Eva Mendes,1249472884 +44185,31685,king of queens,1249472889 +44185,31685,Will Smith,1249472873 +44185,32029,Bruce Willis,1249599909 +44185,33162,Jerusalem,1251098824 +44185,33162,Liam Neeson,1251098822 +44185,33162,religion,1251098826 +44185,33162,Ridley Scott,1251098828 +44185,33162,Saladin,1251098830 +44185,33162,visually interesting--that's about it,1251098834 +44185,40815,based on a book,1250530243 +44185,40815,fantasy,1250530245 +44185,40815,Gary Oldman,1250530243 +44185,40815,harry potter,1250530250 +44185,40815,magic,1250530252 +44185,40815,Wizards,1250530248 +44185,44665,assassination,1249419924 +44185,44665,Bruce Willis,1249419923 +44185,44665,hitman,1249419926 +44185,44665,Josh Hartnett,1249419947 +44185,44665,Morgan Freeman,1249419927 +44185,44665,twist ending,1249419921 +44185,44972,boring,1251461872 +44185,44972,stupid,1251461867 +44185,47970,nailing hot college chicks,1249372487 +44185,47970,Zach Braff,1249372516 +44185,48516,gangsters,1248706120 +44185,48516,Jack Nicholson,1248706117 +44185,48516,Leonardo DiCaprio,1248706118 +44185,48516,Matt Damon,1248706127 +44185,48516,organized crime,1248706120 +44185,48516,police corruption,1248706117 +44185,48516,undercover cop,1248706123 +44185,49272,007,1249665256 +44185,49272,action,1249665263 +44185,49272,espionage,1249665257 +44185,49272,James Bond,1249665260 +44185,49272,poker,1249665259 +44185,49272,realistic action,1249665266 +44185,49272,spy,1249665268 +44185,53972,bruce willis,1249599840 +44185,53972,comedy,1249599857 +44185,53972,good sequel,1249599853 +44185,53972,hackers,1249599844 +44185,53972,Justin Long,1249599860 +44185,53972,terrorism,1249599845 +44185,53972,unrealistic but well done,1249599848 +44185,53996,based on a comic,1249595217 +44185,53996,enormously long battle scene,1249595214 +44185,53996,giant robots,1249595193 +44185,53996,man versus machine,1249595211 +44185,53996,Special Effects,1249595191 +44185,53996,Steven Spielberg,1249595204 +44185,53996,transformation,1249595208 +44185,54787,Kevin Bacon,1249602532 +44185,54787,revenge,1249602532 +44185,55765,based on a true story,1249595491 +44185,55765,Denzel Washington,1249595491 +44185,55765,gangster,1249595496 +44185,55765,police,1249595499 +44185,55765,Ridley Scott,1249595495 +44185,55765,Russell Crowe,1249595493 +44185,56174,post-apocalyptic,1249472847 +44185,56174,virus,1249472852 +44185,56174,Will Smith,1249472847 +44185,56174,zombies,1249472849 +44185,58559,Batman,1248706079 +44185,58559,Christian Bale,1248706081 +44185,58559,comic book,1248706089 +44185,58559,dark,1248706093 +44185,58559,Heath Ledger,1248706079 +44185,58559,Morgan Freeman,1248706083 +44185,58559,superhero,1248706085 +44185,58803,based on a true story,1249602879 +44185,58803,Jim Sturgess,1249602920 +44185,58803,Kevin Spacey,1249602877 +44185,59369,action,1249419017 +44185,59369,agent,1249419015 +44185,59369,crime,1249419011 +44185,59369,fight scenes,1249419006 +44185,59369,kidnapping,1249419008 +44185,59369,Liam Neeson,1249419006 +44185,60069,Animation,1248706208 +44185,60069,Oscar (Best Animated Feature),1248706218 +44185,60072,Angelina Jolie,1249419817 +44185,60072,assassin,1249419817 +44185,60072,assassin-in-training,1249419826 +44185,60072,bullets,1249419824 +44185,60072,Morgan Freeman,1249419817 +44185,60072,stylish,1249419821 +44185,60074,alcoholic,1249472921 +44185,60074,anti-hero,1249472922 +44185,60074,superhero,1249472916 +44185,60074,Will Smith,1249472916 +44185,60684,plot sucks,1249595057 +44185,60684,too long,1249595051 +44185,61262,Kiefer Sutherland,1250169509 +44185,61465,assassin,1249595541 +44185,61465,Nicolas Cage,1249595538 +44185,62394,Mark Wahlberg,1249665085 +44185,62577,corruption,1249331185 +44185,62577,Greg Kinnear,1249331198 +44185,62577,true story,1249331192 +44185,63113,007 (series),1249419657 +44185,63113,Daniel Craig,1249419659 +44185,63113,James Bond,1249419661 +44185,63113,secret service,1249419664 +44185,64497,aliens,1346196058 +44185,64497,first contact,1346196056 +44185,64497,Keanu Reeves,1346196051 +44185,64614,Clint Eastwood,1248268719 +44185,64614,friendship,1248268747 +44185,64614,mentor,1248268742 +44185,64614,old men,1248268728 +44185,64614,racism,1248268792 +44185,64957,Brad Pitt,1248706044 +44185,64957,drama,1248706044 +44185,64957,life lessons,1248706046 +44185,64983,assassin,1249372189 +44185,64983,based on a true story,1249372188 +44185,64983,Tom Cruise,1249372194 +44185,64983,true story,1249372186 +44185,67197,aliens,1250169478 +44185,67197,end of the world,1250169490 +44185,67197,Nicolas Cage,1250169478 +44185,67197,plot holes,1250169486 +44185,67197,sci-fi,1250169482 +44185,68157,Brad Pitt,1253522316 +44185,68157,Dead Nazis,1253522361 +44185,68157,dialogue,1253522324 +44185,68157,Quentin Tarantino,1253522315 +44185,68157,World War II,1253522331 +44185,68159,journalism,1250856020 +44185,68159,political corruption,1250856025 +44185,68159,protagonist is journalist,1250856020 +44185,68159,Russell Crowe,1250856025 +44185,68319,action,1249472997 +44185,68319,Comic Book adaption,1249472993 +44185,68319,hugh jackman,1249473005 +44185,68319,inconsistent with other movies,1249473000 +44185,68319,Marvel,1249473003 +44185,68319,superhero,1249472993 +44185,68358,funny,1248706448 +44185,68358,future,1249651297 +44185,68358,space travel,1248706440 +44185,68358,Star Trek,1248706434 +44185,68791,action,1248268960 +44185,68791,arnold cgi,1248268961 +44185,68791,artificial intelligence,1248268959 +44185,68791,bad plot,1248268969 +44185,68791,Christian Bale,1248268966 +44185,68791,fighting,1248268984 +44185,68791,futuristic,1248268986 +44185,68791,post-apocalyptic,1248268975 +44185,68791,robots,1248268989 +44185,68791,sci-fi,1248268990 +44185,68954,adventure,1265145766 +44185,68954,computer animation,1265145765 +44185,68954,friendship,1265145769 +44185,68954,heartbreaking,1265145764 +44185,68954,storytelling,1265145771 +44185,69122,comedy,1249331153 +44185,69122,Drinking,1249331139 +44185,69306,Denzel Washington,1256493977 +44185,69306,John Travolta,1256493980 +44185,69306,New York City,1256493982 +44185,69306,terrorism,1256493990 +44185,69306,Tony Scott,1256493988 +44185,69712,Alec Baldwin,1263212515 +44185,69712,Cameron Diaz,1263212514 +44185,69844,Alan Rickman,1248268884 +44185,69844,Comedy,1248268850 +44185,69844,Emma Watson,1248268853 +44185,69844,Ending,1248268876 +44185,69844,magic,1248268870 +44185,69844,shorter than the book,1248268864 +44185,70286,fake documentary,1253188107 +44185,70286,intelligent sci-fi,1253188109 +44185,70286,peter jackson,1253188112 +44185,70286,transformation,1253188117 +44185,70286,weapons,1253188118 +44185,71530,alternate reality,1263212447 +44185,71530,androids,1263212067 +44185,71530,Bruce Willis,1263212052 +44185,71530,future,1263212056 +44185,71530,technology,1263212058 +44185,71910,nice action,1260007112 +44185,72733,Clint Eastwood,1346196161 +44185,72733,Matt Damon,1346196158 +44185,72733,Morgan Freeman,1346196160 +44185,72998,3d,1265145701 +44185,72998,aliens,1265145706 +44185,72998,graphic design,1265145704 +44185,72998,imdb top 250,1265145720 +44185,72998,James Cameron,1265145707 +44185,72998,long,1265145711 +44185,72998,sci-fi,1265145702 +44185,74545,Ending,1280570109 +44185,74545,espionage,1280570102 +44185,74545,Ewan McGregor,1280570100 +44185,74545,Pierce Brosnan,1280570104 +44185,78041,Ashton Kutcher,1286786967 +44185,78041,Katherine Heigl,1286786956 +44185,78218,Carrie-Anne Moss,1297708729 +44185,78218,FBI,1297708710 +44185,78218,Samuel L. Jackson,1297708712 +44185,78218,terrorism,1297708717 +44185,78218,torture,1297708714 +44185,79132,complicated,1285191065 +44185,79132,intellectual,1285191067 +44185,79132,mindfuck,1285191069 +44185,80463,adapted from:book,1286702178 +44185,80463,based on true story,1286702173 +44185,80463,computers,1286702111 +44185,80463,Jesse Eisenberg,1286702152 +44185,80463,loneliness,1286702114 +44185,80463,protagonist is a computer programmer,1286702124 +44185,80463,setting:Harvard University,1286702185 +44185,80463,setting:Palo Alto (CA/USA),1286702187 +44185,80860,funny,1296463293 +44185,80860,Josh Duhamel,1296463280 +44185,80860,Katherine Heigl,1296463280 +44185,81834,based on a book,1291318913 +44185,81834,boring,1291318934 +44185,81834,Emma Watson,1291318916 +44185,82095,boring,1293627164 +44185,82095,just not good,1293627136 +44185,91529,Batman,1346195828 +44185,91529,Christian Bale,1346195837 +44185,91529,Gary Oldman,1346195834 +44185,91529,plot holes,1346195845 +44185,91529,Predictable,1346195842 +44185,94018,alien invasion,1346196019 +44185,94018,bad science,1346196016 +44185,94018,childish,1346196011 +44185,94018,Liam Neeson,1346196025 +44185,94018,Poor Plot,1346196002 +44185,94018,Rihanna,1346196009 +44185,94018,special effects,1346196006 +44194,84152,genius,1442208372 +44194,84152,smart,1442208382 +44197,671,MST3K,1288331532 +44197,1968,1980's cult,1288245014 +44197,1968,coming of age,1288245017 +44197,2328,mysoginistic,1305421468 +44197,2502,Jennifer Aniston,1288332331 +44197,2918,coming of age,1288244945 +44197,2918,genius,1288244948 +44197,2959,action,1288244686 +44197,2959,atmospheric,1288244619 +44197,2959,based on a book,1288244688 +44197,2959,Brad Pitt,1288244635 +44197,2959,crime,1288244691 +44197,2959,dark comedy,1288244643 +44197,2959,disturbing,1288244681 +44197,2959,Edward Norton,1288244630 +44197,2959,imdb top 250,1288244677 +44197,2959,mental illness,1288244683 +44197,2959,philosophy,1288244638 +44197,2959,psychological,1288244652 +44197,2959,quirky,1288244667 +44197,2959,satirical,1288244671 +44197,2959,social commentary,1288244661 +44197,2959,surreal,1288244649 +44197,2959,thought-provoking,1288244664 +44197,2959,twist ending,1288244646 +44197,2959,violence,1288244674 +44197,3481,90s,1288244788 +44197,3481,Catherine Zeta-Jones,1288244793 +44197,3481,Classic,1288244798 +44197,3481,John Cusack,1288244802 +44197,3481,loss,1288244811 +44197,3481,music,1288244809 +44197,3481,Nick Hornby,1288244868 +44197,3481,recovery,1288244813 +44197,3481,relationships,1288244818 +44197,4848,David Lynch,1288333786 +44197,7123,David Cronenberg,1288331349 +44197,7123,dreamlike,1288331362 +44197,7123,surreal,1288331367 +44197,30816,Andrew Lloyd Webber,1288245564 +44197,30816,visually appealing,1288245570 +44197,54281,depression,1288245049 +44197,54281,redemption,1288245053 +44197,54281,Robert Downey Jr.,1288245041 +44197,56367,Ellen Page,1288244899 +44197,56367,excellent script,1288244902 +44197,56757,cannibalism,1288245393 +44197,56757,dark,1288245398 +44197,56757,dark comedy,1288245395 +44197,56757,great cinematography,1288245429 +44197,56757,Johnny Depp,1288245404 +44197,56757,Musical,1288245414 +44197,56757,Tim Burton,1288245412 +44197,56757,violent,1288245424 +44197,56757,visually appealing,1288245417 +44197,66171,weak plot,1288333311 +44197,66596,Comedy,1302669538 +44197,66596,Mystery,1302669562 +44197,66934,Nathan Fillion,1295235970 +44197,71379,demon possession,1288332709 +44197,71379,Handycam,1294146800 +44197,71379,multiple endings,1294146318 +44197,71379,Realism,1294146302 +44197,72378,apocalypse,1288333420 +44197,72378,Danny Glover,1288333393 +44197,72378,FX,1288333413 +44197,72378,John Cusack,1288333399 +44197,72378,Woody Harrelson,1288333389 +44197,79132,ambiguous ending,1288333703 +44197,79132,Ellen Page,1288333671 +44197,79132,Leonardo DiCaprio,1288333665 +44197,79132,Michael Caine,1288333662 +44197,79132,multiple interpretations,1288333694 +44197,79132,surreal,1288333679 +44197,79132,visually appealing,1288333687 +44197,79702,cultural references,1288244726 +44197,79702,music,1288244738 +44197,79702,stylized,1288244739 +44197,79879,Christopher Lloyd,1288331830 +44197,79879,death/fatality,1288331833 +44197,79879,genital mutilation,1288331810 +44197,79879,tits,1288331818 +44214,442,time travel,1350503940 +44214,589,time travel,1350504637 +44214,904,Alfred Hitchcock,1350504672 +44214,1193,Oscar (Best Picture),1350504695 +44214,1193,psychology,1350504698 +44214,1747,satire,1350504604 +44214,2571,sci-fi,1350504429 +44214,2571,virtual reality,1350504426 +44214,2916,sci-fi,1350504629 +44214,2916,virtual reality,1350504626 +44214,2959,dark comedy,1350504489 +44214,2959,psychology,1350504491 +44214,2959,twist ending,1350504493 +44214,4011,Brad Pitt,1350504653 +44214,4226,psychology,1350504422 +44214,4226,twist ending,1350504419 +44214,4776,denzel washington,1350504381 +44214,4776,twist ending,1350504385 +44214,4878,sci-fi,1350504747 +44214,4878,time travel,1350504745 +44214,5046,Philip K. Dick,1350503829 +44214,5171,Tim Burton,1350504128 +44214,5171,time travel,1350504114 +44214,7361,psychology,1350504501 +44214,7361,surreal,1350504503 +44214,8914,sci-fi,1350504680 +44214,8914,time travel,1350504678 +44214,27608,surreal,1350503862 +44214,27660,animation,1350504578 +44214,27660,cyberpunk,1350504575 +44214,27660,sci-fi,1350504573 +44214,38061,dark comedy,1350504443 +44214,42718,action,1350504763 +44214,42718,martial arts,1350504761 +44214,44191,sci-fi,1350504610 +44214,48780,twist ending,1350504408 +44214,49272,action,1350504540 +44214,49272,James Bond,1350504538 +44214,49278,Denzel Washington,1350504510 +44214,49278,time travel,1350504507 +44214,53972,action,1350504724 +44214,53972,bruce willis,1350504726 +44214,54286,action,1350504555 +44214,58559,Batman,1350504526 +44214,59315,sci-fi,1350504475 +44214,59315,superhero,1350504472 +44214,60684,dystopia,1350504583 +44214,60684,sci-fi,1350504581 +44214,68237,psychology,1350504704 +44214,68237,Sci-fi,1350504702 +44214,68237,space,1350504706 +44214,68358,time travel,1350504391 +44214,77561,sci-fi,1350504455 +44214,79132,surreal,1350504484 +44214,79357,surreal,1350504416 +44214,79702,comedy,1350504658 +44214,80489,heist,1350504618 +44214,85414,time travel,1350504642 +44214,95875,cyberpunk,1350503846 +44214,96610,sci-fi,1350504712 +44214,96610,time travel,1350504709 +44258,4646,Good Music,1269661952 +44258,6867,trains,1399687206 +44258,8809,Australia,1256445152 +44258,8809,small town,1256445143 +44258,8809,small towns,1256445155 +44258,33826,dreams,1221450890 +44258,33826,marathons,1221450859 +44258,33826,NA,1221450908 +44258,33826,running,1221450859 +44258,48982,Aardman,1165702404 +44258,48982,Wallace & Gromit,1165702466 +44258,81932,Amy Adams,1451061552 +44258,81932,Christian Bale,1451061547 +44258,81932,family relationships,1451061558 +44258,81932,Mark Wahlberg,1451061549 +44258,81932,sexy redhead,1451061556 +44258,81932,true story,1451061554 +44258,106916,70s,1451061512 +44258,106916,amy adams,1451061482 +44258,106916,based on a true story,1451061486 +44258,106916,Bradley Cooper,1451061490 +44258,106916,Christian Bale,1451061480 +44258,106916,costumes,1451061502 +44258,106916,Louis C.K.,1451061495 +44258,106916,soundtrack,1451061492 +44277,91529,cartoon based,1425328204 +44277,125916,fanstasy,1425328272 +44338,64614,Clint Eastwood,1249067034 +44343,837,good message,1186779188 +44343,837,Great movie,1186779188 +44343,954,great cast excellent,1186779082 +44343,1377,action packed,1186778504 +44343,1377,comic,1186778527 +44343,1907,ok,1186778800 +44343,2046,escapist action,1186779130 +44343,2046,good,1186779130 +44343,2080,childhood classics,1186778693 +44343,2405,okay once,1186778962 +44343,2431,okay once,1186779048 +44343,2478,silly fun,1186778964 +44343,2700,sacrilegous,1273339440 +44343,2951,Great movie,1186779018 +44343,2953,silly but good,1186778963 +44343,3033,silly fun,1186778646 +44343,3087,Bill Murray,1273343205 +44343,3168,drugs,1273342163 +44343,3263,Woody Harrelson,1273342096 +44343,3988,Jim Carrey,1273342303 +44343,4321,juvenile,1273339363 +44343,4367,okay once,1186778960 +44343,4734,juvenile,1273339605 +44343,4896,fantasy,1186778608 +44343,4896,must see,1186778608 +44343,4993,must see,1186835498 +44343,4993,read book first,1186835499 +44343,5903,Amazing Cinematography,1199743989 +44343,5903,Christian Bale,1199744010 +44343,5903,dystopia,1199744002 +44343,5952,must see,1186835512 +44343,5952,read book first,1186835512 +44343,6218,good message,1186778899 +44343,6218,Great movie,1186778899 +44343,6373,good concept,1186779001 +44343,6378,escapist action,1186778777 +44343,6934,Great movie,1186778743 +44343,6934,must see,1186778743 +44343,7153,must see,1186835503 +44343,7153,read book first,1186835503 +44343,8361,propaganda,1273339281 +44343,8622,moore,1273339882 +44343,8807,marijuana,1273342248 +44343,8807,stoner comedy,1273342231 +44343,34405,sci-fi,1199743880 +44343,34405,the man they call jane,1199743884 +44343,39292,propaganda,1273340042 +44343,45447,propaganda,1273339946 +44343,45666,Jack Black,1273343103 +44343,46965,silly,1273342423 +44364,541,noir thriller,1206516223 +44364,1051,intimate,1177193748 +44364,3355,ancient books,1179076633 +44364,3355,devil,1179076614 +44364,3355,satanism,1179076679 +44379,115617,funny,1435804465 +44379,115617,robotics,1435804487 +44407,2497,Too obvious that Robin Wright Penn was attracted to Paul Newman and not Kevin Costner.,1139075591 +44407,8094,Spencer Tracy is the best thing about the movie!,1139074401 +44407,34338,depended on the comedian--Jason Alexander was especially good.,1139074266 +44407,37741,Best Movie of year!,1139074653 +44407,38886,Wonderful writing and Jeff Daniels is wonderful!,1139074108 +44407,39183,Wow!,1139074086 +44407,41566,Very good!,1139074126 +44407,41997,character problems,1139074068 +44416,185,cyber-intimidation,1249417206 +44416,185,praetorians,1249417210 +44416,185,Sandra Bullock,1249417195 +44416,185,thriller,1249417200 +44416,2541,manipulation,1249417247 +44416,2541,Nudity (Topless - Brief),1249417242 +44416,3275,dark humor,1249417125 +44416,3275,Irish,1249417129 +44416,3275,Mafia,1249417127 +44416,3275,Nudity (Topless),1249417121 +44416,3275,silly,1249417135 +44416,3949,addiction,1249417054 +44416,3949,depressing,1249417010 +44416,3949,disturbing,1249417015 +44416,3949,drugs,1249417041 +44416,3949,independent film,1249417022 +44416,3949,loneliness,1249417051 +44416,3949,prostitution,1249417038 +44416,3949,psychology,1249417061 +44416,42725,marijuana,1180643601 +44416,53468,comedy,1249417340 +44416,58998,BREAKUPS AND DIVORCES,1249504886 +44416,58998,Hawaii,1249504860 +44416,58998,Nudity (Full Frontal - Notable),1249504921 +44416,58998,Nudity (Full Frontal),1249504925 +44416,58998,Nudity (Topless - Brief),1249504901 +44416,58998,Nudity (Topless),1249504853 +44416,58998,VACATION ROMANCES,1249504882 +44422,260,tie fighter,1430167196 +44424,318,direction,1433952047 +44424,318,message of hope,1433952047 +44424,318,true story,1433952047 +44424,47099,inspirational,1433954238 +44424,47099,Motivation,1433954230 +44424,47099,true story,1433954247 +44424,105504,SEAL,1433953577 +44424,105504,true story,1433953586 +44429,3178,Denzel Washington,1398980926 +44429,3994,Bruce Willis,1398981068 +44429,107141,true story,1414876546 +44476,96079,beautifully filmed,1352702575 +44476,96079,Jarvier Bardem,1352702539 +44476,96079,villain,1352702549 +44485,260,classic,1437542782 +44485,260,epic adventure,1437542760 +44485,260,Science Fiction,1437542773 +44488,260,future,1439771097 +44488,260,sci-fi,1439771087 +44488,260,space,1439771103 +44488,1732,dark comedy,1439771425 +44488,1732,off-beat comedy,1439771435 +44488,2502,comedy,1439771473 +44488,2502,cult film,1439771479 +44488,34162,comedy,1439772893 +44488,51255,british comedy,1439771714 +44488,70286,aliens,1439772082 +44488,70286,intelligent sci-fi,1439772091 +44488,70286,sci-fi,1439772095 +44488,72998,cliche,1439771960 +44488,72998,cliche after cliche,1439771967 +44488,72998,cliched,1439771971 +44488,72998,predictable,1439771925 +44488,72998,stereotypes,1439771981 +44488,73344,French,1439773757 +44488,91500,dystopia,1439772200 +44488,91500,Steampunk,1439772214 +44488,94864,Incomprehensible,1445820470 +44488,94864,plot hole,1445820436 +44488,94864,predictable,1445820431 +44488,104374,time travel,1439772766 +44488,104841,bad science,1439772065 +44488,104841,physics,1439772050 +44488,106072,Incomprehensible,1439773067 +44488,111759,time travel,1439773199 +44497,111,assassination,1306277963 +44497,111,Classic,1306299804 +44497,111,cult film,1306299802 +44497,111,Martin Scorsese,1306299805 +44497,111,New York City,1306277960 +44497,111,Robert De Niro,1306277950 +44497,111,visceral,1306299797 +44497,319,atmospheric,1306299651 +44497,319,dark comedy,1306299655 +44497,319,directorial debut,1306299673 +44497,319,stylized,1306299658 +44497,319,Underrated,1306299661 +44497,586,alone children,1306279613 +44497,586,children,1306279548 +44497,586,Daniel Stern,1306279566 +44497,586,for kids,1306279590 +44497,586,grown ups,1306279606 +44497,586,homosexuality,1306279551 +44497,586,Joe Pesci,1306279559 +44497,586,Macaulay Culkin,1306279567 +44497,586,pajamas,1306279622 +44497,586,sadistic,1306279550 +44497,587,ditto,1306279707 +44497,587,Patrick Swayze,1306279692 +44497,608,Coen Brothers,1306299612 +44497,608,dark comedy,1306299602 +44497,608,quirky,1306299605 +44497,608,violent,1306299609 +44497,608,witty,1306299607 +44497,778,adapted from:book,1306299448 +44497,778,black comedy,1306299451 +44497,778,British,1306299462 +44497,778,classic,1306299477 +44497,778,crime,1306299474 +44497,778,drugs,1306299487 +44497,778,notable soundtrack,1306299467 +44497,778,social commentary,1306299464 +44497,1213,confrontational,1306300071 +44497,1213,dark comedy,1306300063 +44497,1213,gritty,1306300066 +44497,1213,mafia,1306300060 +44497,1213,Martin Scorsese,1306300069 +44497,1213,narrated,1306300068 +44497,2455,changing species,1306379458 +44497,2455,Jeff Goldblum,1306379446 +44497,2455,mad scientist,1306379456 +44497,2455,romance,1306379452 +44497,2542,black comedy,1306299893 +44497,2542,British,1306299898 +44497,2542,great soundtrack,1306299903 +44497,2542,hilarious,1306299902 +44497,2542,marijuana,1306299908 +44497,2542,organized crime,1306299900 +44497,2959,atmospheric,1306299762 +44497,2959,classic,1306299778 +44497,2959,mental illness,1306299775 +44497,2959,philosophical,1306299773 +44497,2959,social commentary,1306299769 +44497,2959,surreal,1306299768 +44497,3438,animation remade as live action,1306379558 +44497,3438,anthropomorphic,1306379564 +44497,3438,brings up memories,1306379561 +44497,3438,seen more than once,1306379568 +44497,3438,th fly,1306379531 +44497,3949,atmospheric,1306299509 +44497,3949,dark,1306299513 +44497,3949,depressing,1306299505 +44497,3949,disturbing,1306299503 +44497,3949,great acting,1306299511 +44497,3949,psychology,1306299507 +44497,3949,social commentary,1306299515 +44497,3949,visually appealing,1306299520 +44497,4011,british,1306299918 +44497,4011,comedy,1306299920 +44497,4011,ensemble cast,1306299936 +44497,4011,narrated,1306299926 +44497,4011,quirky,1306299924 +44497,4011,stylized,1306299932 +44497,4011,twist ending,1306299930 +44497,4226,black and white,1306299727 +44497,4226,cult film,1306299729 +44497,4226,dreamlike,1306299731 +44497,4226,nonlinear,1306299736 +44497,4226,psychological,1306299733 +44497,4226,stylized,1306299741 +44497,4226,twists & turns,1306299743 +44497,4878,kid dance scene,1306279803 +44497,4878,patrick swayze,1306279793 +44497,4993,Action,1306278335 +44497,4993,adventure,1306278333 +44497,4993,high fantasy,1306278331 +44497,4993,magic,1306278327 +44497,4993,Oscar (Best Cinematography),1306278340 +44497,4993,Oscar (Best Effects - Visual Effects),1306278338 +44497,4993,wizards,1306278330 +44497,6001,Betamax,1306299815 +44497,6001,cynical,1306299817 +44497,6001,NOTHING GOES RIGHT,1306299826 +44497,6001,quirky,1306299824 +44497,6001,satirical,1306299821 +44497,6001,stylized,1306299823 +44497,6188,Luke Wilson,1306280185 +44497,6188,not funny,1306280197 +44497,6188,Nudity (Topless),1306280192 +44497,6188,Vince Vaughn,1306280189 +44497,6377,animation,1309385802 +44497,6377,children,1309385813 +44497,6377,film noir,1309385816 +44497,6377,funny,1309385799 +44497,6377,Pixar,1309385804 +44497,6377,underwater,1309385809 +44497,7153,Action,1306278283 +44497,7153,adventure,1306278280 +44497,7153,fantasy,1306278297 +44497,7153,fantasy world,1306278284 +44497,7153,great soundtrack,1306278286 +44497,7153,high fantasy,1306278289 +44497,7153,imdb top 250,1306278300 +44497,7153,Oscar (Best Directing),1306278304 +44497,7153,Oscar (Best Music - Original Song),1306278292 +44497,7153,Oscar (Best Picture),1306278290 +44497,8950,atmospheric,1306299702 +44497,8950,bleak,1306299700 +44497,8950,creepy,1306299705 +44497,8950,powerful ending,1306299710 +44497,8950,psychodrama,1306299708 +44497,8950,stylized,1306299712 +44497,8950,twist ending,1306299714 +44497,27831,British gangster,1306299946 +44497,27831,drugs,1306299945 +44497,27831,ending,1306299955 +44497,27831,Exquisite plotting.,1306299953 +44497,27831,organized crime,1306299962 +44497,41569,dinosaurs,1306278038 +44497,41569,Peter Jackson,1306278032 +44497,41569,remake,1306278034 +44497,48516,atmospheric,1306300038 +44497,48516,corruption,1306300040 +44497,48516,gangster,1306300042 +44497,48516,Mafia,1306300037 +44497,48516,organized crime,1306300045 +44497,48516,remake,1306300046 +44497,51939,ninja,1306379483 +44497,51939,the fly,1306379475 +44497,53855,strong men with guns,1306279388 +44497,55765,based on a true story,1306300014 +44497,55765,conspiracy,1306300019 +44497,55765,corruption,1306300021 +44497,55765,drugs,1306300022 +44497,55765,gangster,1306300024 +44497,55765,historical,1306300027 +44497,55765,mafia,1306300028 +44497,55820,1980s,1306299578 +44497,55820,coen brothers,1306299570 +44497,55820,dark,1306299574 +44497,55820,suspense,1306299582 +44497,55820,thriller,1306299585 +44497,56782,1920s,1306299555 +44497,56782,father-son relationship,1306299551 +44497,56782,greed,1306299549 +44497,56782,imdb top 250,1306299558 +44497,56782,murder,1306299537 +44497,56782,Oscar (Best Cinematography),1306299540 +44497,56782,visually appealing,1306299545 +44497,57669,black comedy,1306299880 +44497,57669,british comedy,1306299874 +44497,57669,directorial debut,1306299883 +44497,57669,irish accent,1306299872 +44497,57669,weak plot,1306299869 +44497,71429,absurd,1306299856 +44497,71429,Bobcat Goldthwait,1306299844 +44497,71429,slow start,1306299860 +44497,72998,aliens,1306278005 +44497,72998,beautiful scenery,1306277996 +44497,72998,environmental,1306278001 +44497,72998,futuristic,1306278003 +44497,72998,propaganda,1306277998 +44497,72998,racism,1306277992 +44500,17,Alan Rickman,1359658608 +44500,17,Emma Thompson,1359658614 +44500,17,Hugh Grant,1359658600 +44500,17,Kate Winslet,1359658597 +44500,104,Adam Sandler,1344025422 +44500,105,affair,1359403033 +44500,105,bittersweet,1370794999 +44500,105,Meryl Streep,1359403028 +44500,105,sentimental,1359403009 +44500,105,warm,1359403012 +44500,199,bittersweet,1359659326 +44500,199,French,1359659359 +44500,199,Made me cry,1359659353 +44500,199,musical,1359659322 +44500,199,notable soundtrack,1359659345 +44500,208,Kevin Costner,1371496111 +44500,208,Post apocalyptic,1371496118 +44500,208,steampunk,1371496127 +44500,208,stupid,1371496115 +44500,214,harrowing,1339261401 +44500,214,horror of war,1339261348 +44500,214,not black-or-white story,1339261387 +44500,289,Marissa Tomei,1345980599 +44500,289,Robert Downey Jr,1345980595 +44500,339,Bill Pullman,1343931969 +44500,339,chemistry between actors,1343931949 +44500,509,beautiful,1339611225 +44500,509,erotic,1339611218 +44500,509,great acting,1339611230 +44500,509,Harvey Keitel,1349632500 +44500,509,Sam Neill,1349632519 +44500,509,sexuality,1339611234 +44500,539,Bill Pullman,1345574533 +44500,539,father-son relationship,1345574541 +44500,539,girlie movie,1345574556 +44500,597,cinderella,1348593382 +44500,597,girlie movie,1343932003 +44500,597,rags to riches,1348593397 +44500,597,Richard Gere,1348593388 +44500,750,black comedy,1342033274 +44500,750,satire,1342033296 +44500,750,Stanley Kubrick,1342033293 +44500,1088,dance,1370795914 +44500,1088,music,1374678941 +44500,1088,Patrick Swayze,1370795901 +44500,1088,romance,1370795907 +44500,1088,romance boygirl dancing,1370795924 +44500,1183,beautiful scenery,1355247200 +44500,1183,sad but good,1355247226 +44500,1183,Willem Dafoe,1355247190 +44500,1199,futuristic,1371496464 +44500,1199,Robert De Niro,1371496458 +44500,1199,Terry Gilliam,1371496454 +44500,1199,thought-provoking,1371496470 +44500,1203,based on a play,1385580385 +44500,1203,good dialogue,1385580373 +44500,1203,social commentary,1385580377 +44500,1203,thought-provoking,1385580382 +44500,1220,Blues,1385134807 +44500,1220,cult classic,1385134804 +44500,1220,great soundtrack,1385134793 +44500,1220,music,1385134790 +44500,1220,road trip,1385134811 +44500,1220,surreal,1385134802 +44500,1271,generations,1363346276 +44500,1271,Mary Stuart Masterson,1363346247 +44500,1271,Strong Women,1363346311 +44500,1271,women,1363378087 +44500,1276,classic,1347048707 +44500,1276,ESCAPE FROM PRISON,1347048712 +44500,1276,Paul Newman,1347048702 +44500,1292,naive,1369835494 +44500,1292,Peter Sellers,1369835477 +44500,1292,political satire,1369835497 +44500,1300,Swedish,1358101857 +44500,1300,wistful,1358101864 +44500,1304,bittersweet,1345989869 +44500,1304,great acting,1345989872 +44500,1304,Paul Newman,1345989846 +44500,1304,Robert Redford,1345989862 +44500,1304,witty,1345989892 +44500,1339,Gary Oldman,1379268407 +44500,1339,good music,1379268456 +44500,1339,gothic,1379268443 +44500,1339,vampire,1379268437 +44500,1413,bittersweet,1343931813 +44500,1413,chemistry between actors,1343931801 +44500,1834,CONS AND SCAMS,1352920857 +44500,1834,the acting,1352920847 +44500,1912,chemistry between actors,1358101924 +44500,1912,George Clooney,1358101939 +44500,1912,seen more than once,1358101931 +44500,2321,adultery,1369820468 +44500,2321,political,1369815242 +44500,2321,social criticism,1369815229 +44500,2321,Tobey Maguire,1369820451 +44500,2716,Bill Murray,1344025364 +44500,2716,hilarious,1344025379 +44500,3011,depressing,1361301238 +44500,3011,desperation,1361301233 +44500,3011,Sydney Pollack,1361301244 +44500,3081,Christopher Walken,1379268524 +44500,3081,Johnny Depp,1379268521 +44500,3081,Tim Burton,1379268524 +44500,3510,contact with dead,1338319010 +44500,3510,father-son relationship,1338319005 +44500,3510,time travel,1338319018 +44500,4020,cate blanchett,1338318734 +44500,4020,psychic,1338318744 +44500,4037,bad acting,1386449722 +44500,4037,Bechdel Test:Pass,1386449696 +44500,4037,con men,1386449730 +44500,4037,lindsay crouse,1386449722 +44500,4037,predictable,1386449744 +44500,4091,Patrick Dempsey,1349889109 +44500,4128,cute boys,1344025117 +44500,4128,Kiefer Sutherland,1344025093 +44500,4151,Agnès Jaoui,1348584303 +44500,4151,funny,1348584308 +44500,4151,Great,1348584314 +44500,4151,Jean-Pierre Bacri,1348584311 +44500,4151,warm,1348584333 +44500,4285,acting,1353260747 +44500,4285,chemistry,1345982267 +44500,4285,convincing,1345982257 +44500,4285,great actors,1345982283 +44500,5943,cinderella,1347816886 +44500,5943,Ralph Fiennes,1347816863 +44500,6214,constantly rotating filming,1349888893 +44500,6214,disturbing,1349888898 +44500,6214,graphic violence,1349888908 +44500,6214,hard to watch,1349888910 +44500,6214,rape,1349888914 +44500,6502,post-apocalyptic,1345226439 +44500,6502,visually appealing,1345226453 +44500,6502,zombies,1345226451 +44500,6645,conformity,1371496538 +44500,6645,dystopia,1371496531 +44500,6645,surveillance,1371496541 +44500,6885,captivating,1385134572 +44500,6885,erotic,1338313356 +44500,6885,Meg Ryan,1338313381 +44500,6885,New York City,1338313374 +44500,6885,serial killer,1338313368 +44500,6885,sex,1386192299 +44500,6885,symbolism,1338313336 +44500,6885,twist ending,1338313365 +44500,6885,`murder investigation as dating service' (Monica Nolan in Bitch no.36),1338313347 +44500,7034,believable,1358101810 +44500,7034,bittersweet,1358101786 +44500,7034,social commentary,1358101791 +44500,7149,Nancy Meyers,1339174962 +44500,7361,Kate Winslet,1369592815 +44500,7361,surreal,1369592804 +44500,7361,thought-provoking,1369592825 +44500,7386,Biblical,1354040234 +44500,7386,Charlton Heston,1354040215 +44500,7386,Christianity,1354040227 +44500,7386,epic,1354040220 +44500,7386,excellent,1354040243 +44500,7386,movie to see,1354040261 +44500,7386,religion,1354040229 +44500,7386,Yul Brynner,1354040211 +44500,8972,adventure,1359398656 +44500,8972,boring,1359398685 +44500,8972,Christopher Plummer,1359398667 +44500,8972,Harvey Keitel,1359398637 +44500,8972,sufficiently explodey to be good,1359398648 +44500,26554,alone in the world,1371496220 +44500,26554,Empty Planet,1371496217 +44500,26554,interesting,1371496227 +44500,26554,Isolation,1371496229 +44500,26554,last man on earth,1371496214 +44500,27708,Rufus Sewell,1359398038 +44500,30816,Andrew Lloyd Webber,1352906074 +44500,30816,bittersweet,1352906090 +44500,33679,erotic tension,1345980217 +44500,36276,french suspense,1339174900 +44500,36276,Michael Haneke,1339174886 +44500,39183,bittersweet,1345989592 +44500,39183,emotional,1345989605 +44500,39183,Jake Gyllenhaal,1345989618 +44500,39183,sexuality,1345989598 +44500,42007,better than expected,1367434857 +44500,42007,Kevin Costner,1347817172 +44500,42007,Mark Ruffalo,1347817170 +44500,42007,sexy,1347817183 +44500,48696,adultery,1370807725 +44500,48696,disturbing,1370807728 +44500,48696,suburbia,1370807739 +44500,49278,car chase,1338318977 +44500,49278,implausible plot elements,1338318917 +44500,49286,better than expected,1338664951 +44500,49286,chemistry between actors,1367434601 +44500,49286,Rufus Sewell,1367434573 +44500,52604,Anthony Hopkins,1338318819 +44500,52604,Ryan Gosling,1338318822 +44500,53318,notable nudity,1366828252 +44500,53318,quirky,1366828267 +44500,53769,great dialogue,1358883344 +44500,55267,Infidelity,1385328659 +44500,55288,Mark Ruffalo,1370978096 +44500,56006,existentialism,1407615003 +44500,56006,natural dialogue,1407614979 +44500,56006,post-apocalyptic,1407614942 +44500,56006,survival,1407615071 +44500,57669,beautiful scenery,1346867763 +44500,57669,dialogue,1346867735 +44500,57669,friendship,1346867780 +44500,57669,irreverent,1346867746 +44500,58998,Predictable,1345992598 +44500,58998,Russell Brand,1345992571 +44500,58998,silly,1345992590 +44500,61240,atmospheric,1361301415 +44500,61240,swedish,1361301407 +44500,61361,superficial,1407850186 +44500,61361,unlikeable characters,1407850195 +44500,62265,Colin Firth,1379266616 +44500,62265,Jeffery Dean Morgan,1379266620 +44500,62265,not a lot chemistry,1379266634 +44500,62265,Uma Thurman,1379266622 +44500,63113,confusing,1359397923 +44500,63113,Daniel Craig,1359397919 +44500,64957,meaningless,1356542107 +44500,64957,slow,1356542107 +44500,64969,Insulting to Persians,1345969718 +44500,64969,Jim carrey,1345969690 +44500,64969,positive thinking,1345969709 +44500,69253,Harry Connick Jr.,1407874002 +44500,69253,Nice,1407873985 +44500,71928,Bechdel Test:Pass,1379260457 +44500,71928,slow paced,1379260469 +44500,73015,hilarious with heart,1345989028 +44500,73015,Meryl Streep,1345989011 +44500,73015,old people romcom,1345989040 +44500,73015,Steve Martin,1345989045 +44500,75983,climbing,1343937726 +44500,75983,emotional,1343937738 +44500,77795,Bechdel Test:Pass,1371496274 +44500,77795,German,1371496258 +44500,77795,space travel,1371496263 +44500,78349,claustrophobic,1338318693 +44500,78349,cliche characters,1338318689 +44500,78349,cliche dialogue,1338318704 +44500,78349,dialogue driven,1338318696 +44500,78349,experiment,1338318709 +44500,78349,logic,1338318673 +44500,78349,mediocre acting,1338318677 +44500,78349,mindfuck,1338318684 +44500,84601,amnesia,1354391940 +44500,84601,conspiracy,1354391943 +44500,84601,easily confused with other movie(s) (title),1354391931 +44500,84601,paranoia,1354391937 +44500,86590,mikael persbrandt,1361563983 +44500,86590,sad,1361564030 +44500,86590,slow paced,1361564030 +44500,88129,pointless,1390770549 +44500,91500,drama,1338318396 +44500,91500,intense,1349286264 +44500,91500,social commentary,1338318383 +44500,91500,Woody Harrelson,1338318408 +44500,93475,Dominic West,1370031960 +44500,94780,Bechdel Test:Pass,1371496322 +44500,94780,charlize theron,1371496333 +44500,94780,Kristen Stewart,1371496340 +44500,94780,unlikeable characters,1371496314 +44500,94780,visuals,1371496329 +44500,94780,weak plot,1371496310 +44500,94864,Noomi Rapace,1339261181 +44500,94864,plot holes,1385328581 +44500,94931,chemistry between actors,1343326233 +44500,96610,plot holes,1354088799 +44500,96610,time travel,1354088784 +44500,97938,animal:tiger (CGI),1359226809 +44500,97938,cinematography,1359226760 +44500,97938,great photography,1359226784 +44500,97938,ocean,1359226798 +44500,97938,religion,1359226792 +44500,97938,religious overtones,1359226788 +44500,97938,visual effects,1359226822 +44500,98809,cgi,1369592763 +44500,98809,CGI doesn't help an average movie!,1369592736 +44500,98809,unnecessary fight scenes,1369592702 +44500,101864,atmospheric,1379260397 +44500,101864,sci-fi,1379260390 +44500,101864,stylish,1379260377 +44500,101864,twists & turns,1379260387 +44500,102903,deception,1379260271 +44500,102903,entertaining,1379260284 +44500,102903,Mark Ruffalo,1379260266 +44500,102903,stage magic,1379260262 +44500,104879,Hugh jackan,1385062940 +44500,104879,nuanced,1385062956 +44500,104879,realistic action,1385062922 +44500,105504,believable,1390770480 +44500,105504,Good research,1390770505 +44500,105504,Tom Hanks,1390770494 +44521,260,Star Wars,1437667123 +44521,589,Arnold Schwarzenegger,1437703747 +44521,589,James Cameron,1437703743 +44521,1240,Arnold Schwarzenegger,1437703715 +44521,1240,James Cameron,1437703711 +44521,4226,suspense,1437703634 +44521,5618,Japan,1437703411 +44521,5618,Miyazaki,1437703384 +44521,5971,Hayao Miyazaki,1437703467 +44521,5971,Japan,1437703475 +44521,5971,Miyazaki,1437703463 +44521,8644,Will Smith,1437703830 +44521,58559,Christopher Nolan,1441288272 +44521,72998,James Cameron,1437838218 +44521,79132,Christopher Nolan,1437839086 +44521,91529,Christopher Nolan,1437839303 +44521,109487,Christopher Nolan,1437703898 +44521,111759,Tom Cruise,1437853395 +44521,112556,David Fincher,1437704081 +44521,135861,comedy,1437703548 +44521,135861,funny,1437703548 +44521,135861,ted,1437703548 +44550,3683,coen bros,1137501485 +44551,111759,Emily Blunt,1404741365 +44551,111759,original plot,1404741362 +44593,7143,More self-glorification tomfoolery from Cruise,1175328082 +44612,260,classic,1432739881 +44612,260,George Lucas,1432739896 +44612,260,Science Fiction,1432739872 +44612,296,good dialogue,1432740345 +44612,296,quentin tarantino,1432740345 +44612,296,violence,1432740345 +44630,1213,Masterpiece,1433284561 +44630,1222,Vietnam War,1433285095 +44630,112552,Intense,1433284473 +44630,112556,Darkly OTT and Funny,1433284787 +44644,64614,Clint Eastwood,1250013544 +44644,64614,gangsters,1250013550 +44644,64614,racist humor,1250013560 +44644,64614,revenge,1250013558 +44644,64614,sacrifice,1250013563 +44644,91199,faggots,1345744105 +44644,91199,gay,1345744056 +44644,91199,Gay Character,1345744080 +44644,91199,Gay Lead Character,1345744056 +44644,91199,gay romance,1345744080 +44644,91199,nothing,1345744090 +44646,63072,Pointless,1264169208 +44646,63072,The End,1264169208 +44646,63072,The Middle,1264169208 +44646,63072,The Start,1264169223 +44646,68157,long,1264168935 +44646,68157,Quentin Tarantino,1264168893 +44646,68157,vengeance,1264168898 +44653,260,Sci-Fi,1173358186 +44653,799,Death,1173150153 +44653,2572,guilty pleasure,1173210592 +44653,2572,Heath Ledger,1173210600 +44653,2572,K movie,1173210614 +44653,3694,splatter,1173492703 +44653,7361,romance,1173700085 +44653,44555,Oscar Winner,1173150233 +44654,260,classic adventure,1435537098 +44654,117851,family fun,1435537399 +44654,117851,follows madagascar franchise,1435537399 +44654,117851,funny,1435537399 +44666,318,classic,1190505973 +44666,1214,classic,1190505913 +44666,2872,historical,1188725733 +44666,3578,crowe's best,1190505947 +44713,260,Science Fiction,1444130376 +44713,260,sequel,1444130400 +44760,64969,brainwash,1240923174 +44760,64969,Jim carrey,1240921228 +44760,64969,Rhys Darby,1240921214 +44760,83132,Anime,1315743267 +44760,83132,Studio Ghibli,1315743214 +44788,2959,fighting,1437676369 +44788,2959,imaginary friend,1437676369 +44788,2959,twist ending,1437676369 +44788,44191,dystopia,1420927794 +44788,44191,philosophy,1420927810 +44788,44191,social commentary,1420927802 +44788,90405,dystopia,1423349265 +44788,90405,justice,1423349274 +44788,90405,social commentary,1423349268 +44788,109487,thought-provoking,1423349433 +44813,141,comedy,1434309507 +44813,141,Gay stereotypes,1434309505 +44813,141,queer,1434309510 +44813,593,Anthony Hopkins,1434309229 +44813,593,cannibalism,1434309225 +44813,593,creepy,1434309234 +44813,593,crime,1434309209 +44813,593,Hannibal Lecter,1434309207 +44813,593,Hannibal Lector,1434309239 +44813,593,Jodie Foster,1434309200 +44813,593,psychological,1434309214 +44813,593,psychology,1434309194 +44813,593,serial killer,1434309197 +44813,593,suspense,1434309204 +44813,593,suspenseful,1434309236 +44813,1111,beauty,1434309403 +44813,1111,insects,1434309403 +44813,1111,microworld,1434309403 +44813,1219,Alfred Hitchcock,1434309286 +44813,1219,black and white,1434309291 +44813,1219,Hitchcock,1434309283 +44813,1219,mental illness,1434309274 +44813,1219,psychology,1434309276 +44813,1219,serial killer,1434309297 +44813,1219,suspenseful,1434309279 +44813,1219,tense,1434309295 +44813,3499,adapted from:book,1434309733 +44813,3499,claustrophobic,1434309722 +44813,3499,stephen king,1434309720 +44813,3499,suspenseful,1434309726 +44813,3499,tense,1434309724 +44813,5945,Depressing,1434309170 +44813,5945,Jack Nicholson,1434309179 +44813,5945,meaning of life,1434309160 +44813,8957,claustrophobic,1434309347 +44813,8957,clever,1434309333 +44813,8957,detective,1434309345 +44813,8957,mindfuck,1434309336 +44813,8957,original,1434309355 +44813,8957,psychological,1434309358 +44813,8957,serial killer,1434309330 +44813,8957,surprise ending,1434309350 +44813,8957,torture,1434309342 +44813,8957,twist ending,1434309352 +44813,48385,controversial,1434310039 +44813,48385,crude humor,1434310044 +44813,48385,mockumentary,1434310041 +44813,48385,prostitution,1434310053 +44813,48385,racism,1434310047 +44813,48385,road trip,1434310159 +44813,48385,satire,1434310037 +44813,94677,funny,1434310021 +44813,94677,political satire,1434310023 +44813,94677,sacha baron cohen,1434310019 +44813,94677,satire,1434310017 +44815,1089,humorous,1440355280 +44815,1089,Quentin Tarantino,1440355271 +44815,46578,dark comedy,1453581283 +44815,46578,feel-good,1453581295 +44815,46578,independent film,1453581306 +44815,53996,childish,1453580832 +44815,53996,enormously long battle scene,1453580829 +44815,55908,intellectual,1440362480 +44815,55908,thought-provoking,1440362473 +44815,89492,intelligent,1453580677 +44815,106920,romance,1453580737 +44815,108153,mathematics,1453737950 +44815,122886,franchise,1453580894 +44815,122886,Star Wars,1453580903 +44826,1917,adventure,1299527914 +44826,1917,sci-fi,1299527920 +44826,1917,space,1299527885 +44826,1917,space travel,1299527900 +44826,1917,thriller,1299527929 +44826,2322,corny,1299528629 +44826,3032,old,1299528176 +44826,4370,artificial intelligence,1299534690 +44826,4370,emotional,1299534726 +44826,4370,fairy tale,1299534694 +44826,4370,robots,1299534733 +44826,4370,Saturn Award (Best Science Fiction Film),1299534705 +44826,4370,Saturn Award (Best Special Effects),1299534710 +44826,4370,sci-fi,1299534695 +44826,4874,alien,1299534446 +44826,4874,aliens,1299534449 +44826,4874,astronomy,1299534453 +44826,4874,intellectual,1299534479 +44826,4874,no conclusion,1299534438 +44826,4874,philosophical,1299534456 +44826,4874,pretentious,1299534466 +44826,4874,sci-fi,1299534441 +44826,6754,fantasy,1299528818 +44826,6754,gothic,1299528792 +44826,6754,revenge,1299528826 +44826,6754,sci-fi,1299528821 +44826,6754,supernatural,1299528810 +44826,6754,vampires,1299528815 +44826,7147,surreal,1227772942 +44826,7147,surrealism,1227772972 +44826,8644,android(s)/cyborg(s),1299529178 +44826,8644,artificial intelligence,1299529180 +44826,8644,based on a book,1299529184 +44826,8644,future,1299529192 +44826,8644,futuristic,1299529191 +44826,8644,robot,1299529200 +44826,8644,robots,1299529198 +44826,8644,sci-fi,1299529187 +44826,8914,intellectual,1299534878 +44826,8914,low budget,1299534863 +44826,8914,paradox,1299534870 +44826,8914,physics,1299534871 +44826,8914,sci-fi,1299534867 +44826,8914,time travel,1299534866 +44826,8914,too complicated,1299534886 +44826,34319,cloning,1299529120 +44826,34319,future,1299529122 +44826,34319,sci-fi,1299529115 +44826,34319,surreal,1299529132 +44826,34319,thriller,1299529138 +44826,52328,beautiful effects,1299534281 +44826,52328,cinematography,1299534313 +44826,52328,gratuitous violence in a psychological thriller,1299534304 +44826,52328,sci-fi,1299534286 +44826,52328,space,1299534288 +44826,52328,spaceships,1299534290 +44826,52328,suicide attempt,1299534294 +44826,55908,educational,1299534844 +44826,55908,entirely dialogue,1299534813 +44826,55908,evolution,1299534818 +44826,55908,immortality,1299534807 +44826,55908,intellectual,1299534810 +44826,55908,open ending,1299534832 +44826,55908,sci-fi,1299534823 +44826,55908,science fiction,1299534826 +44826,57368,alien monster,1299534229 +44826,57368,city under attack,1299534239 +44826,57368,giant monster,1299534231 +44826,57368,sci-fi,1299534233 +44826,57368,unsteady-cam,1299534258 +44826,58297,apocalypse,1299529009 +44826,58297,cannibalism,1299529016 +44826,58297,girl power,1299528997 +44826,58297,heroine,1299528992 +44826,66171,acting,1299529300 +44826,66171,action,1299529291 +44826,66171,fantasy,1299529240 +44826,66171,heroes,1299529266 +44826,66171,psychic powers,1299529224 +44826,66171,sci-fi,1299529236 +44826,66171,short,1299529319 +44826,66171,twisted ending,1299529286 +44826,66171,x-men wanna-be,1299529279 +44826,66934,anti-hero,1300843496 +44826,66934,musical,1300843475 +44826,66934,sci-fi,1300843480 +44826,66934,short,1300843483 +44826,66934,superhero,1300843493 +44826,68237,artificial intelligence,1299535061 +44826,68237,cloning,1299535058 +44826,68237,robot,1299535051 +44826,68237,Sci-fi,1299535044 +44826,68237,space,1299535053 +44826,68237,technology,1299535069 +44826,68237,twist ending,1299535068 +44826,70286,action,1299534362 +44826,70286,aliens,1299534343 +44826,70286,IMDB Top 250,1299534341 +44826,70286,sci-fi,1299534339 +44826,70286,thriller,1299534359 +44826,72998,aliens,1299535104 +44826,72998,beautiful,1299535106 +44826,72998,beautiful scenery,1299535108 +44826,72998,FIGHTING THE SYSTEM,1299535100 +44826,72998,futuristic,1299535102 +44826,72998,military,1299535111 +44826,72998,mythology,1299535124 +44826,72998,sci-fi,1299535089 +44826,81158,modern warefare,1299479061 +44827,260,heard its good,1431538250 +44827,260,yet to watch,1431538240 +44831,47,twist ending,1427127441 +44831,318,excellent script,1424910786 +44831,318,good acting,1424910786 +44831,318,imdb top 250,1424910786 +44831,356,great story,1422130063 +44831,356,oscar winner,1422130063 +44831,356,tom hanks,1422130063 +44831,593,actors and acting,1424114329 +44831,593,director-screenwriter,1424114329 +44831,593,oscar winner,1424114329 +44831,1178,Stanley Kubrick,1403132123 +44831,1584,Jodie Foster,1424481908 +44831,1584,space travel,1424481916 +44831,1625,David Fincher,1424482547 +44831,1625,psychological,1424482556 +44831,3910,great ending,1425588111 +44831,4848,David Lynch,1424482473 +44831,4848,Mindfuck,1424482483 +44831,4848,Naomi Watts,1424482488 +44831,27803,true story,1426804423 +44831,55814,based on a true story,1424910893 +44831,55814,touching,1424910907 +44831,55908,intelligent,1429914609 +44831,55908,philosophical,1429914568 +44831,55908,thought-provoking,1429914577 +44831,109374,Edward Norton,1403132304 +44831,109487,Christopher Nolan,1424481848 +44831,109487,philosophical issues,1424481887 +44831,109487,space,1427599967 +44831,109487,time travel,1427599960 +44831,114662,Propaganda,1429618794 +44831,117176,biography,1424910735 +44831,117176,emotional,1424910708 +44836,7153,Adventure,1438759952 +44836,7153,fantasy,1438759941 +44836,7153,magic,1438759949 +44836,88125,fantasy,1438759910 +44836,88125,magic,1438759906 +44842,102800,Noah Baumbach,1374809998 +44861,260,classic sci-fi,1444618576 +44861,260,space,1444618567 +44874,215,really romantic,1170530671 +44874,1357,Psychiatry,1170532831 +44874,3127,makes you think,1170533132 +44874,46578,feel good movie,1170530805 +44892,79357,butterfly effect,1280508448 +44892,79357,chaos,1280508448 +44892,79357,love affair,1280508448 +44892,79357,nonlinear,1280508448 +44892,79357,sci-fi,1280508448 +44892,79357,surreal,1280508448 +44892,127096,time travel,1433051387 +44927,4963,casino,1420193479 +44927,4963,theft,1420193479 +44927,4963,thriller,1420193479 +44936,84772,aliens,1440176387 +44936,84772,Atheism,1440176382 +44936,84772,chase,1440176403 +44936,84772,comedy,1440176394 +44936,84772,geeky,1440176389 +44936,84772,Nick Frost,1440176391 +44936,84772,Simon Pegg,1440176384 +44936,114935,mindfuck,1439826500 +44936,114935,time travel,1439826508 +44936,139747,cheers up,1440362571 +44936,139747,NY,1440362579 +44936,139747,romantic,1440362559 +44942,296,bondage,1432259778 +44942,296,dancing,1432259778 +44942,296,r:disturbing violent content including rape,1432259778 +44942,80839,kentucky,1389404194 +44942,94070,gay,1389404122 +44942,105355,homosexuality,1390076669 +44967,44555,Oscar Nom 2007,1177295552 +44974,4963,lustig,1142372088 +44974,36517,A love love story,1142372373 +44974,36517,africa,1142372342 +44974,36517,politics,1142372342 +44997,100553,bbc,1425487316 +44997,100553,documentary,1425487316 +44997,100553,nature,1425487316 +45004,260,great effects for its age,1437592171 +45004,260,hero's journey,1437592120 +45004,55247,adventure,1437592943 +45004,55247,atmospheric,1437592924 +45004,55247,freedom,1437593120 +45004,55247,inspirational,1437592962 +45004,55247,road trip,1437592935 +45004,55247,wilderness,1437592967 +45004,111778,adventure,1437593043 +45004,111778,atmospheric,1437593098 +45004,111778,freedom,1437593115 +45004,111778,wilderness,1437593041 +45029,260,good,1442869561 +45029,260,must see,1442869591 +45074,73198,documentary,1420237369 +45074,73198,short,1420237369 +45074,73198,travelogue,1420237369 +45084,260,amazing,1444744099 +45088,253,horror,1295716854 +45088,253,vampire,1295716846 +45088,337,mental illness,1295724306 +45088,2329,disturbing,1295299696 +45088,2329,rape,1295299674 +45088,2329,violence,1295299683 +45088,4848,Atmospheric,1295716535 +45088,5146,anime,1295423610 +45088,5146,vampire,1295423600 +45088,31952,dark comedy,1295753812 +45088,31952,hungary,1295716518 +45088,31952,symbolism,1295716495 +45088,31952,trains,1295716499 +45088,42738,vampire,1304497286 +45088,79132,alternate reality,1295340743 +45088,79132,Leonardo DiCaprio,1295340747 +45097,260,sci-fi,1436469063 +45097,260,space adventure,1436469072 +45097,260,space epic,1436469088 +45123,59938,Charles Bronson,1279041726 +45123,59938,Cold War,1279041719 +45123,59938,Espianage,1279041731 +45124,116,true story,1183899617 +45124,337,Leonardo DiCaprio,1183811452 +45124,1061,R,1183940897 +45124,1242,R,1183936360 +45124,2204,Hitchcock,1183814758 +45124,2359,PG,1183900134 +45124,2739,Steven Spielberg,1183814949 +45124,3271,PG-13,1183900264 +45124,3951,R,1184010069 +45124,4014,Johny Deep,1183811546 +45124,4225,PG-13,1183897960 +45124,4857,G,1183900044 +45124,4973,R,1183898049 +45124,6016,R,1183898070 +45124,6679,Linux,1183924958 +45124,6708,PG-13,1183897919 +45124,6979,computers,1183817730 +45124,7440,G,1183898351 +45124,8529,Tom Hanks,1183814969 +45124,8730,R,1183899079 +45124,8982,PG,1183898810 +45124,33660,PG-13,1183898393 +45124,33838,PG13,1183900339 +45124,36539,PG-13,1183898582 +45124,39307,PG,1183898613 +45124,39307,underdogs,1183899633 +45124,39441,PG-13,1183898749 +45124,40414,PG-13,1183898526 +45124,40629,PG,1183897941 +45124,42732,PG-13,1183899109 +45124,43333,PG13,1183900344 +45124,43396,PG-13,1183898951 +45124,45666,better than expected,1183899682 +45124,47629,PG-13,1183898769 +45124,47644,rags to riches,1183899601 +45124,48161,PG-13,1183898160 +45124,48738,R,1183898682 +45124,49286,romantic comedy,1183899451 +45124,49910,PG-13,1183899486 +45124,50068,R,1183898013 +45124,50160,PG,1183899017 +45124,50685,PG-13,1183898997 +45124,51080,PG-13,1183898378 +45124,51471,PG,1183898182 +45124,51931,R,1183899046 +45124,52287,kids and family,1183900515 +45124,52604,R,1183898435 +45124,53972,hackers,1183815724 +45143,260,Carrie Fisher,1442869572 +45143,260,classic sci-fi,1442869535 +45143,260,Harrison Ford,1442869564 +45143,260,space epic,1442869548 +45211,260,old,1439887596 +45211,260,Star Wars,1439887584 +45214,260,classic,1439100849 +45214,260,fantasy,1439100841 +45216,260,George Lucas,1441777345 +45216,260,jedi,1441777383 +45216,260,space,1441777341 +45216,778,black comedy,1442748272 +45216,778,dark comedy,1442748269 +45216,778,great soundtrack,1442748278 +45216,778,social commentary,1442748275 +45216,1220,car crashes,1442977461 +45216,1220,classic,1441780125 +45216,1220,comedy,1441780117 +45216,1220,great soundtrack,1441780113 +45216,1220,music,1441780109 +45216,1220,music business,1441780121 +45216,1220,musicians,1441780119 +45216,1220,notable soundtrack,1441780107 +45216,1220,nuns,1441780148 +45216,1220,sunglasses,1441780134 +45216,1257,black comedy,1441780070 +45216,1257,goofy,1441780077 +45216,1257,quirky,1441780068 +45216,1257,silly,1441780078 +45216,1500,anti-hero,1441886401 +45216,1500,dark comedy,1441886412 +45216,1500,dialogue,1441886409 +45216,1500,hit men,1441886405 +45216,1527,action,1441933084 +45216,1527,great cinematography,1441933093 +45216,1527,humorous,1441933073 +45216,1527,satirical,1441933086 +45216,1527,stylized,1441933071 +45216,1527,visual,1441933094 +45216,1527,visually appealing,1441933080 +45216,1527,visually stunning,1441933096 +45216,1968,cult film,1441780054 +45216,2572,comedy,1441778511 +45216,2572,guilty pleasure,1441778518 +45216,2572,Heath Ledger,1441778508 +45216,2572,romantic,1441778513 +45216,2918,breaking the fourth wall,1441780016 +45216,2918,classic,1441780023 +45216,2918,comedy,1441780020 +45216,2918,fun,1441780032 +45216,3052,Comedy,1441778877 +45216,3052,funny,1441778879 +45216,3052,irreverent,1441778883 +45216,3052,jay and silent bob,1441778874 +45216,3052,Kevin Smith,1441778872 +45216,3052,satire,1441778869 +45216,3052,thought-provoking,1441778880 +45216,3052,view askew,1441778887 +45216,4734,guilty pleasure,1441777513 +45216,5508,funny,1441932395 +45216,5508,music business,1441932382 +45216,5508,punk rock,1441932384 +45216,5508,rock and roll,1441932387 +45216,7000,comedy,1441778391 +45216,7000,glib repartee,1441778383 +45216,7000,music,1441778397 +45216,7000,upbeat,1441778317 +45216,8874,anti-hero,1441777640 +45216,8874,black comedy,1441777583 +45216,8874,british comedy,1441777575 +45216,8874,comedy,1441777629 +45216,8874,dark comedy,1441777623 +45216,8874,dark humor,1441777622 +45216,8874,Edgar Wright,1441777633 +45216,8874,funny,1441777642 +45216,8874,hilarious,1441777627 +45216,8874,Nick Frost,1441777636 +45216,8874,Simon Pegg,1441777616 +45216,8874,zom rom com,1441777600 +45216,8874,zombie,1441777625 +45216,8874,zombies,1441777565 +45216,62155,comedy,1441777667 +45216,62155,great soundtrack,1441777659 +45216,62849,funny,1441859566 +45216,62849,good soundtrack,1441859558 +45216,62849,twist ending,1441859558 +45216,79702,awesome soundtrack,1441777737 +45216,79702,comedy,1441777740 +45216,79702,cultural references,1441777712 +45216,79702,Edgar Wright,1441777702 +45216,79702,funny,1441777713 +45216,79702,geeks,1441777732 +45216,79702,music,1441777722 +45216,79702,stylized,1441777708 +45216,79702,visually appealing,1441777705 +45216,79702,whimsical,1441777721 +45216,81804,funny,1441922636 +45216,81804,hit man,1441922631 +45216,81804,romance,1441922639 +45216,85401,black comedy,1442748135 +45216,86574,rock and roll,1441859484 +45216,88380,comedy,1441932577 +45216,88380,funny,1441932558 +45216,88380,quirky,1441932579 +45216,88380,vampires,1441932575 +45216,88380,warewolves,1441932542 +45216,88380,zombies,1441932581 +45216,111443,entrepreneurs,1441859748 +45216,111443,feel good movie,1441859753 +45216,112852,adventure,1441777800 +45216,112852,childish,1441777819 +45216,112852,Chris Pratt,1441777809 +45216,112852,fun,1441777798 +45216,112852,great soundtrack,1441777791 +45216,112852,humorous,1441777826 +45216,112852,Marvel,1441777795 +45216,116738,romance,1441777531 +45216,128542,Australia,1442888476 +45216,128542,boomerang,1442035291 +45216,128542,comedy,1442888584 +45216,128542,funny,1442035280 +45216,128542,humour,1442888454 +45216,128542,mad scientist,1442888509 +45216,128542,zombies,1442888481 +45216,131439,Australian,1441922405 +45216,131439,complex,1441922369 +45216,131439,funny,1441922378 +45216,131439,hit man,1441922393 +45216,131439,murder,1441922413 +45216,131439,plotting,1441922427 +45221,7303,but also a VERY,1375122260 +45221,7303,"POWERFUL ending: one of MOST powerful and EMOTIONAL endings that ""sucks out your insides""",1375122212 +45221,7303,VERY sad ending of a true story movie,1375122212 +45221,90266,amazing what he does with horses,1318422906 +45221,90266,great movie,1318422906 +45221,90266,"well worth watching this amazing ""horse whisperer""",1318422906 +45221,92393,Great special effects,1326730612 +45221,92393,VERY WELL done,1326730612 +45221,92674,Abigail Breslin is FANTASTIC!,1328100226 +45221,92674,good music,1328100226 +45221,92674,great story,1328100226 +45221,93363,giving it 4.5 out of 5.0 stars,1339239955 +45221,93363,MUCH BETTER than I thought,1339239956 +45221,93363,"much better than the 2012 ""The Avengers""",1339239955 +45221,93363,very real-looking,1339239956 +45221,93363,well done,1339239956 +45221,93892,unique romantic comedy,1333979670 +45221,93892,Very funny,1333979670 +45221,94403,and I was surprised that I enjoyed this movie as much as I did; I gave it 4.0 stars out of a possible 5.0 stars,1336404509 +45221,94403,cute,1336404509 +45221,94403,enjoyable,1336404509 +45221,94403,touching in parts,1336404509 +45221,123219,"Also known as title ""Sabotage Agent""",1426679410 +45266,95167,Scotland,1346035531 +45282,44195,dark comedy,1240848270 +45282,44195,dark humor,1240848272 +45282,44195,disappointing,1240848287 +45282,44195,satire,1240848275 +45282,44828,alien invasion,1240848190 +45282,44828,comedy,1240848196 +45282,44828,horror,1240848186 +45282,44828,pseudo-zombies,1240848176 +45282,44828,sci-fi,1240848182 +45282,48997,17th century,1240848321 +45282,48997,artistic,1240848303 +45282,48997,creativity,1240848300 +45282,48997,Nudity (Topless),1240848307 +45282,48997,obsession,1240848363 +45282,48997,serial killer,1240848310 +45282,60684,Worst movie ever!,1240848241 +45298,4145,amazing and overlooked,1137479183 +45298,8199,greatest movie of all time,1137479141 +45300,296,multilayered,1428343892 +45300,296,quentin tarantino,1428343892 +45300,296,violent,1428343892 +45315,296,blood,1434372888 +45315,296,crime,1434372888 +45315,296,quentin tarantino,1434372888 +45318,916,princess,1208311983 +45318,4748,karate,1205111719 +45318,5990,puppetry,1205111737 +45319,260,series,1438721167 +45319,260,Star Wars,1438721131 +45330,185,action,1329059512 +45330,185,computers,1329059537 +45330,185,conspiracy,1329059515 +45330,185,hackers,1329059506 +45330,185,hacking,1329059543 +45330,185,inaccurate,1329059541 +45330,185,praetorians,1329059489 +45330,185,Sandra Bullock,1329059482 +45330,185,simplistic,1329059555 +45330,185,stupid,1329059557 +45330,185,thriller,1329059493 +45330,185,unrealistic,1329059485 +45330,296,Black comedy,1325948248 +45330,296,Bruce Willis,1325948245 +45330,296,imdb top 250,1325948269 +45330,296,multiple storylines,1330244941 +45330,296,nonlinear,1325948273 +45330,296,Quentin Tarantino,1325948254 +45330,296,Samuel L. Jackson,1325948257 +45330,296,stylized,1330244926 +45330,318,based on a book,1243221248 +45330,318,Morgan Freeman,1243221214 +45330,318,prison,1243221239 +45330,318,prison escape,1243221253 +45330,318,Stephen King,1243221226 +45330,537,Australia,1372853419 +45330,537,bathing an a stream,1372853462 +45330,537,Nudity (Full Frontal - Notable),1372853392 +45330,537,posing nude,1372853396 +45330,537,REDBOX,1372853427 +45330,537,skinnydipping,1372853439 +45330,537,The Body,1372853446 +45330,589,Arnold Schwarzenegger,1243221153 +45330,589,future,1243221180 +45330,589,Oscar (Best Effects - Visual Effects),1243221171 +45330,589,sci-fi,1243221163 +45330,805,courtroom drama,1243055947 +45330,805,John Grisham,1243055927 +45330,805,Kevin Spacey,1243055924 +45330,805,Samuel L. Jackson,1243055938 +45330,805,Sandra Bullock,1243055934 +45330,1206,disturbing,1242928321 +45330,1206,Nudity (Full Frontal),1242928329 +45330,1206,Stanley Kubrick,1242927943 +45330,1276,Paul Newman,1245299412 +45330,1276,prison,1245299415 +45330,1408,adapted from:book,1327516918 +45330,1408,cinematography,1327516922 +45330,1408,excellent historical depiction,1327516933 +45330,1412,Helen Mirren,1281089863 +45330,1464,boring,1332098922 +45330,1464,dark,1332098940 +45330,1464,David Lynch,1332098953 +45330,1464,jealousy,1332098991 +45330,1464,Los Angeles,1332098965 +45330,1464,Nudity (Topless - Notable),1332098957 +45330,1464,Nudity (Topless),1332098986 +45330,1464,strange,1332098997 +45330,1617,conspiracy,1243814520 +45330,1617,Danny DeVito,1243814492 +45330,1617,film noir,1243814509 +45330,1617,Kevin Spacey,1243814495 +45330,1617,Kim Basinger,1243814523 +45330,1617,Russell Crowe,1243814498 +45330,1625,Michael Douglas,1182794821 +45330,1653,Uma Thurman,1245311223 +45330,1682,dark comedy,1242929605 +45330,1682,Jim Carrey,1242929585 +45330,1682,original plot,1243221120 +45330,1682,social commentary,1242929589 +45330,1682,stylized,1242929614 +45330,1732,black comedy,1330205546 +45330,1732,Coen Brothers,1330205691 +45330,1732,Jeff Bridges,1330205664 +45330,1732,John Turturro,1330205660 +45330,1732,Nudity (Full Frontal),1330205667 +45330,1732,Philip Seymour Hoffman,1330205672 +45330,1866,cheating,1232861117 +45330,1866,Jews,1232861117 +45330,1866,sexuality,1232861117 +45330,1866,violence,1232861117 +45330,1961,AFI 100 (Cheers),1274811102 +45330,1961,Dustin Hoffman,1274811097 +45330,1961,Oscar (Best Actor),1274811057 +45330,1961,Oscar Winner,1274811063 +45330,1961,Tom Cruise,1274811075 +45330,1961,true story,1274811072 +45330,2268,Jack Nicholson,1247162523 +45330,2268,Kiefer Sutherland,1247162527 +45330,2268,Tom Cruise,1247162514 +45330,2496,Christopher Walken,1287858855 +45330,2948,james bond,1241245213 +45330,2948,Sean Connery,1241245201 +45330,3018,Nudity (Full Frontal),1287859509 +45330,3083,Spanish,1190205708 +45330,3147,compassionate,1374411552 +45330,3147,heartwarming,1374411572 +45330,3147,oscar (best directing),1374411559 +45330,3147,prison,1374411589 +45330,3147,social commentary,1374411568 +45330,3147,Tom Hanks,1374411555 +45330,3614,Nicolas Cage,1374411471 +45330,3614,true love,1374411484 +45330,4011,cynical,1307264483 +45330,4011,multiple storylines,1307264490 +45330,4011,stylized,1307264503 +45330,4014,based on book,1243828342 +45330,4014,food,1243828277 +45330,4014,france,1243828322 +45330,4014,Johnny Depp,1243828271 +45330,4014,small town,1243828336 +45330,4020,cate blanchett,1338050639 +45330,4020,Hilary Swank,1338050634 +45330,4020,Keanu Reeves,1338050626 +45330,4020,Nudity (Topless - Notable),1338050662 +45330,4020,Nudity (Topless),1338050629 +45330,4020,Sam Raimi,1338050650 +45330,4035,gold digger,1201907860 +45330,4035,Nudity (Full Frontal),1201907860 +45330,4239,based on a true story,1326574111 +45330,4239,cocaine,1326574138 +45330,4239,drug trade,1326574164 +45330,4239,drugs,1326574130 +45330,4239,dysfunctional family,1326574135 +45330,4239,father daughter relationship,1326574151 +45330,4239,Johnny Depp,1326574102 +45330,4239,seventies,1326574123 +45330,4239,true story,1326574125 +45330,4239,watched 2007,1326574142 +45330,4616,bad school,1232330892 +45330,4616,turn around,1232330873 +45330,4776,denzel washington,1243053475 +45330,4776,Ethan Hawke,1243053479 +45330,4776,Oscar (Best Actor),1243053492 +45330,5400,Ben Affleck,1325437672 +45330,5477,erotic,1287868291 +45330,5477,nonlinear,1287868299 +45330,5477,Nudity (Full Frontal - Notable),1287868287 +45330,5680,Greg Kinnear,1325253182 +45330,5680,Nudity (Full Frontal),1325253179 +45330,6538,Erotic Thriller,1325964178 +45330,6538,masturbation,1325964203 +45330,6538,Nudity (Full Frontal - Notable),1325964174 +45330,6538,Nudity (Full Frontal),1325964185 +45330,6538,Nudity (Topless - Notable),1325964196 +45330,6539,funny,1275151510 +45330,6539,Johnny Depp,1275151489 +45330,6539,Keira Knightley,1275151492 +45330,6539,Orlando Bloom,1275151496 +45330,6874,Kick-Butt Women,1245283744 +45330,6874,martial arts,1245283740 +45330,6874,nonlinear,1245283755 +45330,6874,Quentin Tarantino,1245283724 +45330,6874,Tarantino,1245283734 +45330,6874,Uma Thurman,1245283727 +45330,6874,violent,1245283730 +45330,7027,Danny Glover,1373795774 +45330,7027,Kevin Costner,1373795764 +45330,7027,Kevin Kline,1373795767 +45330,7150,Farrelly Brothers,1312667441 +45330,7150,Greg Kinnear,1312667436 +45330,7150,Matt Damon,1312667445 +45330,7205,Sean Connery,1326040188 +45330,7381,Bruce Willis,1329064007 +45330,7381,Matthew Perry,1329064009 +45330,7381,mob,1329064013 +45330,7382,adolescence,1333556048 +45330,7382,based on a book,1333556045 +45330,7382,from the view of children,1333556032 +45330,7382,Italy,1333556035 +45330,8526,author:Jules Verne,1329060393 +45330,8526,Jackie Chan,1329060335 +45330,8526,Jules Verne,1329060373 +45330,8526,martial arts,1329060396 +45330,8977,Al Pacino,1275477546 +45330,8977,Angelina Jolie,1275477549 +45330,8977,Anthony Hopkins,1275477531 +45330,8977,based on a true story,1275477619 +45330,8977,bisexual,1275477629 +45330,8977,graphic violence,1275477570 +45330,8977,homosexuality,1275477632 +45330,8977,queer,1275477637 +45330,8977,Val Kilmer,1275477641 +45330,8977,war,1275477539 +45330,27611,MILITARY LIFE,1243222735 +45330,27611,sci-fi,1243222718 +45330,27611,space,1243222740 +45330,27611,tv show,1243222724 +45330,33124,boys' school,1326144096 +45330,33124,Disturbing and moving,1326144168 +45330,33124,Nazi Germany,1326144082 +45330,33124,realistic,1326144080 +45330,33124,World War II,1326144131 +45330,33660,Russell Crowe,1288993845 +45330,36519,car chase,1326529650 +45330,36519,Jason Statham,1326529633 +45330,36519,violence,1326529638 +45330,37475,Robert Redford,1390652982 +45330,37733,Viggo Mortensen,1182801900 +45330,37855,1950's,1274008486 +45330,37855,based on a true story,1274008476 +45330,37855,Laura Dern,1274008458 +45330,37855,Woody Harrelson,1274008466 +45330,42007,cute,1195387309 +45330,42007,girlie movie,1195387309 +45330,44191,dystopia,1274245953 +45330,44191,inspirational,1274245931 +45330,44191,thought-provoking,1274245935 +45330,47099,based on a true story,1288993820 +45330,47099,Will Smith,1288993818 +45330,47810,Nicolas Cage,1325925884 +45330,47810,predictable,1325925890 +45330,47810,to see: horror,1325925899 +45330,47810,unintentional comedy,1325925923 +45330,49130,based on a book,1373795876 +45330,49130,life reflection,1373795870 +45330,49130,Marion Cotillard,1373795865 +45330,49130,Ridley Scott,1373795854 +45330,49130,Russell Crowe,1373795860 +45330,49130,wine and romance,1373795895 +45330,49130,winery,1373795884 +45330,51091,Blues,1197988856 +45330,51091,Southern theme,1197988856 +45330,52281,Gore,1325958133 +45330,52281,grindhouse,1325958125 +45330,52281,Kurt Russell,1325958121 +45330,52281,motorcycle,1325958156 +45330,52281,Quentin Tarantino,1325958117 +45330,52281,rape,1325958147 +45330,52281,Sci-fi,1325958161 +45330,52281,strippers,1325958139 +45330,52281,Tarantino,1325958142 +45330,52281,zombies,1325958135 +45330,52975,Baltimore,1293018317 +45330,52975,Broadway,1293018356 +45330,52975,Christopher Walken,1293018332 +45330,52975,John Travolta,1293018325 +45330,52975,Michelle Pfeiffer,1293018336 +45330,52975,racism,1293018340 +45330,52975,Zac Efron,1293018344 +45330,59369,Liam Neeson,1245813225 +45330,60397,Island,1293018420 +45330,60397,Meryl Streep,1293018411 +45330,60397,Pierce Brosnan,1293018407 +45330,60503,massacre,1327951911 +45330,60503,Soviet Union,1327951922 +45330,60503,World War II,1327951919 +45330,64034,based on a book,1243214314 +45330,64034,Friendship,1243214317 +45330,64034,Holocaust,1243214305 +45330,64034,Nazi,1243214301 +45330,64034,World War II,1243214309 +45330,64614,classic car,1243319362 +45330,64614,Clint Eastwood,1243318994 +45330,64614,Political Correctness,1243320857 +45330,64839,father daughter relationship,1337028425 +45330,64839,touching,1337028434 +45330,66371,confronting death,1329773411 +45330,66371,life & death,1329773414 +45330,66371,understated,1329773422 +45330,66691,Antonio Banderas,1324076225 +45330,66691,Morgan Freeman,1324076227 +45330,68237,artificial intelligence,1328369598 +45330,68237,death,1328369604 +45330,68237,dystopia,1328369594 +45330,68237,great soundtrack,1328369607 +45330,68237,Kevin Spacey,1328369584 +45330,68237,psychology,1328369610 +45330,68237,Sci-fi,1328369586 +45330,68237,space,1328369589 +45330,68237,technology,1328369592 +45330,70286,aliens,1253688478 +45330,70286,directorial debut,1253688470 +45330,70286,humor,1253688474 +45330,70286,redemption,1253688483 +45330,70286,sci-fi,1253688509 +45330,70286,social commentary,1253688451 +45330,70286,South Africa,1253688488 +45330,71254,Gerard Butler,1312754717 +45330,71254,sci-fi,1312754688 +45330,71535,zombies,1287517306 +45330,72641,American Football,1288993702 +45330,72641,kindness of strangers,1288993696 +45330,72641,Sandra Bullock,1288993679 +45330,72641,true story,1288993683 +45330,72998,futuristic,1263238378 +45330,72998,sci-fi,1263238397 +45330,72998,too long,1263238344 +45330,73268,dystopia,1274644145 +45330,73268,Ethan Hawke,1274644141 +45330,73268,human harvesting,1274644150 +45330,73268,Sam Neill,1274644153 +45330,73268,vampires,1274644167 +45330,73268,Willem Dafoe,1274644137 +45330,79695,Bruce Willis,1326008315 +45330,79695,Jet Li,1326008304 +45330,79695,Sylvester Stallone,1326008315 +45330,79695,violence,1326008315 +45330,80219,Nudity (Full Frontal - Notable),1330087430 +45330,80219,Nudity (Topless),1330087344 +45330,80219,Robert De Niro,1330087566 +45330,80219,Steven Seagal,1330087317 +45330,80219,stylized,1330087337 +45330,80219,violent,1330087341 +45330,85354,true story,1314045118 +45330,90746,action,1330074991 +45330,90746,Steven Spielberg,1330073883 +45330,90746,treasure hunt,1330075218 +45334,32,atmospheric,1425674808 +45334,32,complicated,1425674811 +45334,32,dystopia,1425674800 +45334,32,future,1425674805 +45334,32,Post apocalyptic,1425674799 +45334,32,post-apocalyptic,1425674793 +45334,32,psychology,1425674812 +45334,32,sci-fi,1425674803 +45334,170,Angelina Jolie,1440163347 +45334,170,awesome soundtrack,1440163367 +45334,170,cheesy,1440163365 +45334,170,computers,1440163360 +45334,170,cult film,1440163341 +45334,170,cyberpunk,1440163345 +45334,170,geek,1440163356 +45334,170,geeks,1440163374 +45334,170,hacker,1440163358 +45334,170,hackers,1440163336 +45334,170,hacking,1440163337 +45334,170,inaccurate,1440163354 +45334,170,internet,1440163351 +45334,170,video games,1440163370 +45334,442,dumb dystopia,1440163196 +45334,442,dystopia,1440163194 +45334,442,time travel,1440163192 +45334,541,artificial intelligence,1425674667 +45334,541,atmospheric,1425674672 +45334,541,cyberpunk,1425674661 +45334,541,dreamlike,1425674694 +45334,541,dystopia,1425674669 +45334,541,existentialism,1425674691 +45334,541,future,1425674698 +45334,541,futuristic,1425674696 +45334,541,philosophical,1425674678 +45334,541,sci-fi,1425674664 +45334,541,Vangelis,1425674684 +45334,741,anime,1406555223 +45334,741,based on manga,1406555227 +45334,741,comic book,1406555219 +45334,1232,Andrei Tarkovsky,1425676102 +45334,1232,dreamlike,1425676110 +45334,1232,dystopia,1425676096 +45334,1232,nature,1425676117 +45334,1232,philosophical,1425676119 +45334,1232,psychological,1425676113 +45334,1266,Clint Eastwood,1425675705 +45334,2403,action,1425203360 +45334,2542,black comedy,1425676357 +45334,2542,dark comedy,1425676354 +45334,2542,organized crime,1425676359 +45334,2542,Unique,1425676368 +45334,3948,not funny,1406721725 +45334,3948,stupid,1406721722 +45334,4011,Crime,1440163470 +45334,4011,cynical,1440163461 +45334,4011,dark comedy,1440163465 +45334,4011,dark humor,1440163487 +45334,4011,dialogue,1440163478 +45334,4011,Great dialogue,1440163509 +45334,4011,heist,1440163481 +45334,4011,multiple storylines,1440163503 +45334,4011,narrated,1440163482 +45334,4011,organized crime,1440163485 +45334,4011,quirky,1440163471 +45334,4011,stylized,1440163474 +45334,4027,comedy,1440192352 +45334,4027,funny,1440192361 +45334,6016,imdb top 250,1425676247 +45334,6016,multiple storylines,1425676237 +45334,6953,religion,1425202973 +45334,7327,psychoanalysis,1425203252 +45334,7327,psychology,1425203244 +45334,7842,book was better,1406554987 +45334,7842,lengthy,1406555000 +45334,8798,action,1440192593 +45334,8798,assassin,1440192575 +45334,8798,atmospheric,1440192573 +45334,8798,dark,1440192579 +45334,8798,great performances,1440192582 +45334,8798,violent,1440192592 +45334,30825,crude humor,1406721760 +45334,30825,not funny,1406721767 +45334,30825,stupid humor,1406721771 +45334,48043,fountain of youth,1425675427 +45334,48043,inspirational,1425675420 +45334,48043,multiple storylines,1425675458 +45334,48043,nonlinear,1425675440 +45334,48043,religion,1425675415 +45334,48774,adapted from:book,1440162753 +45334,48774,alone in the world,1440162796 +45334,48774,apocalypse,1440162766 +45334,48774,atmospheric,1440162765 +45334,48774,based on a book,1440162745 +45334,48774,cinematography,1440162831 +45334,48774,depressing,1440162823 +45334,48774,dystopia,1440162770 +45334,48774,end of the world,1440162775 +45334,48774,environmental,1440162833 +45334,48774,epidemic,1440162789 +45334,48774,future,1440162768 +45334,48774,futuristic,1440162772 +45334,48774,pregnancy,1440162813 +45334,48774,sci-fi,1440162760 +45334,48774,survival,1440162763 +45334,48774,thriller,1440162825 +45334,48774,visually appealing,1440162777 +45334,55118,overdramatic,1406536745 +45334,55118,racism,1406499421 +45334,55118,rape,1406499794 +45334,59369,Famke Janssen,1440163939 +45334,59369,Maggie Grace,1440163931 +45334,59369,unrealistic,1440163879 +45334,65642,complicated,1425237529 +45334,65642,paradox,1425237535 +45334,65642,time travel,1425237518 +45334,72998,racism,1406537070 +45334,82459,atmospheric,1440163733 +45334,82459,based on a book,1440163731 +45334,82459,dark,1440163738 +45334,82459,justice,1440163744 +45334,82459,predictable,1440163742 +45334,82459,remake,1440163729 +45334,82459,revenge,1440163735 +45334,82459,Western,1440163747 +45334,86190,action,1440192659 +45334,86190,assassin,1427220392 +45334,86190,beautiful cinematography,1427220387 +45334,86190,Cinematography,1427220395 +45334,86190,Saoirse Ronan,1440192656 +45334,86190,strong female lead,1440192673 +45334,86190,surrealism,1425202552 +45334,92259,funny,1425676045 +45334,94466,bad acting,1425677165 +45334,94466,not a movie,1425677075 +45334,96861,Famke Janssen,1440163964 +45334,96861,Maggie Grace,1440163970 +45334,97752,atmospheric,1440162922 +45334,97752,complicated,1440162891 +45334,97752,dystopia,1440162917 +45334,97752,future,1440162925 +45334,97752,great acting,1440162932 +45334,97752,multiple roles,1440162896 +45334,97752,multiple storylines,1440162882 +45334,97752,pretentious,1440162904 +45334,97752,sci-fi,1440162914 +45334,97752,slow paced,1440162940 +45334,97752,visually appealing,1440162921 +45334,97938,religion,1425202626 +45334,97938,religious overtones,1425202647 +45334,97938,spiritual journey,1425202644 +45334,105197,acting,1425203059 +45334,105197,poignant,1425203084 +45334,105197,slow,1425203065 +45334,106920,artificial intelligence,1425202712 +45334,106920,original plot,1425202734 +45334,106920,philosophical,1425202715 +45334,106920,psychology,1425202760 +45334,106920,sci-fi,1425202739 +45334,106920,science fiction,1425202741 +45334,107406,poor plot,1425675033 +45334,109374,cinematography,1440192204 +45334,109374,funny,1440192208 +45334,109374,Hilarious,1440192226 +45334,109374,odd sense of humor,1440192224 +45334,109374,Saoirse Ronan,1440192197 +45334,109374,visually appealing,1440192202 +45334,109487,bad dialogue,1439810932 +45334,115210,war hero,1440163669 +45334,115210,World War II,1440163655 +45334,120635,Forest Whitaker,1440164110 +45334,120635,unnecessary sequel,1440164086 +45336,96811,comraderie,1382184096 +45336,96811,friendship,1382184096 +45355,68954,Pixar,1430438835 +45355,68954,storytelling,1430438843 +45355,68954,talking dog,1430438838 +45355,69122,comedy,1430438778 +45355,116977,comedy,1430438820 +45355,116977,dumb,1430438820 +45355,116977,silly,1430438820 +45381,19,detective,1368026841 +45381,39,teen movie,1368026762 +45381,521,neo-noir,1368026792 +45381,1088,dancing,1368026805 +45381,1206,masterpiece,1368026655 +45381,1620,detective,1368026841 +45381,1950,detective,1368026841 +45381,1968,teen movie,1368026762 +45381,2485,teen movie,1368026762 +45381,4018,women,1368026727 +45381,4973,beautifully filmed,1308770702 +45381,4973,comedy,1308770728 +45381,4973,coming of age,1308770707 +45381,4973,feel-good,1308770726 +45381,4973,imdb top 250,1308770706 +45381,4973,inspirational,1308770724 +45381,4973,narrated,1308770709 +45381,4973,notable soundtrack,1308770714 +45381,4973,quirky,1308770721 +45381,4973,romance,1308770730 +45381,4973,romantic,1308770733 +45381,4973,surreal,1308770698 +45381,4973,whimsical,1308770715 +45381,4979,dark humor,1308831754 +45381,4979,great soundtrack,1308831752 +45381,4979,quirky,1308831750 +45381,4979,Wes Anderson,1308831748 +45381,5628,comedy,1308834417 +45381,5628,France,1308834419 +45381,5628,intelligence,1308834421 +45381,5628,Jean Reno,1308834423 +45381,5628,teenager,1308834415 +45381,6545,1930s,1308769790 +45381,6545,castle,1308769793 +45381,6545,period piece,1308769795 +45381,6545,romance,1308769801 +45381,6545,Rose Byrne,1308769796 +45381,6789,Monica Bellucci,1308769622 +45381,6789,Nudity (Topless),1308769619 +45381,6789,remade,1308769628 +45381,6874,masterpiece,1368026655 +45381,7143,Japan,1309093704 +45381,7143,Tom Cruise,1309093707 +45381,7151,17th century,1308768846 +45381,7151,Art,1308768848 +45381,7151,artists,1308768850 +45381,7151,colourful,1308768856 +45381,7151,costume drama,1308768860 +45381,7151,emotional,1308768862 +45381,7151,History,1308768865 +45381,7151,painter,1308768871 +45381,7151,visually appealing,1308768869 +45381,7361,Jim Carrey,1308768612 +45381,7361,philosophy,1308768617 +45381,7361,psychology,1308768619 +45381,7361,quirky,1308768621 +45381,7361,surrealism,1308768632 +45381,7361,thought-provoking,1308768634 +45381,8684,automatic,1319286942 +45381,8684,reflective,1319286907 +45381,8684,repetitive,1319286926 +45381,8684,Robert Bresson,1319286901 +45381,8684,understated,1319286904 +45381,8833,remake,1308770229 +45381,8833,SOCIAL CLIMBING,1308770232 +45381,8833,upper class,1308770234 +45381,8948,Jude Law,1308833924 +45381,8948,remake,1308833928 +45381,8948,Sienna Miller,1308833933 +45381,8948,womanizing,1308833931 +45381,27706,based on a book,1308769449 +45381,27706,dustin hoffman,1308769454 +45381,27706,Jude Law,1308769458 +45381,27706,quirky,1308769599 +45381,27803,biomedical ethics,1310057464 +45381,27803,emotional,1310057460 +45381,27803,euthanasia,1310057460 +45381,27803,Javier Bardem,1310057466 +45381,27803,meditative,1310057467 +45381,27803,true story,1310057476 +45381,30793,author:Roald Dahl,1308769313 +45381,30793,father-son relationship,1308769345 +45381,30793,Johnny Depp,1308769328 +45381,30793,quirky,1308769340 +45381,30793,remake,1308769337 +45381,38304,biographical,1319202253 +45381,38304,Bob Dylan,1319202238 +45381,38304,character based on real person:Bob Dylan,1319202242 +45381,38304,folk music,1319202229 +45381,38304,scored,1319202249 +45381,40629,great soundtrack,1308771240 +45381,40629,Jane Austen,1308771112 +45381,40629,Keira Knightley,1308771111 +45381,40629,relationships,1308771243 +45381,40629,romance,1308771225 +45381,40819,biography,1308835412 +45381,40819,bittersweet,1308835415 +45381,40819,Joaquin Phoenix,1308835418 +45381,40819,Johnny Cash,1308835410 +45381,40819,music,1308835419 +45381,40819,music business,1308835404 +45381,40819,nostalgic,1308835423 +45381,40819,Reese Witherspoon,1308835402 +45381,40819,touching,1308835425 +45381,40819,true story,1308835398 +45381,42418,17th century,1308834075 +45381,42418,cinematography,1308834054 +45381,42418,Epic,1308834056 +45381,42418,lyrical,1308834061 +45381,42418,meditative,1308834060 +45381,42418,Pocahontas,1308834080 +45381,42418,poetry,1308834065 +45381,42418,sentimental,1308834068 +45381,44195,dark comedy,1341342122 +45381,44195,dark humor,1341342125 +45381,44195,independent film,1341342130 +45381,44195,satire,1341342137 +45381,44195,social commentary,1341342127 +45381,44555,excellent script,1368026683 +45381,44929,artist,1308834106 +45381,44929,Australia,1308834096 +45381,44929,Geoffrey Rush,1308834104 +45381,44929,poetry,1308834098 +45381,44929,pregnancy,1308834113 +45381,45880,cinematography,1308770840 +45381,45880,France,1308770972 +45381,45880,great soundtrack,1308770845 +45381,45880,isolation,1308770977 +45381,45880,Kirsten Dunst,1308770969 +45381,45880,lyrical,1308770845 +45381,45880,stylized,1308770836 +45381,45880,wired 50 greatest soundtracks,1308770838 +45381,47810,Nicolas Cage,1309087383 +45381,47810,predictable,1309087376 +45381,47810,remake,1309087373 +45381,47810,stupid and unnecessary,1309087374 +45381,47810,unintentional comedy,1309087395 +45381,48997,17th century,1308768803 +45381,48997,18th century,1308768805 +45381,48997,artistic,1308768801 +45381,48997,cannibalism,1308768809 +45381,48997,creativity,1308768813 +45381,48997,orgy,1308768818 +45381,49130,France,1308835355 +45381,49130,life reflection,1308835358 +45381,49130,Marion Cotillard,1308835352 +45381,49130,Ridley Scott,1308835362 +45381,49130,upbeat music,1308835365 +45381,49130,winery,1308835351 +45381,49772,Edward Norton,1308771036 +45381,49772,emotional,1308771054 +45381,49772,intellectual,1308771062 +45381,49772,landscape,1308771069 +45381,49772,nuns,1308771049 +45381,49772,orphanage,1308771046 +45381,49772,period piece,1308771043 +45381,49772,remake,1308771071 +45381,49772,science,1308771080 +45381,49772,shanghai,1308771041 +45381,50912,amazing,1308770550 +45381,50912,episodic,1308770550 +45381,50912,Maggie Gyllenhaal,1308770489 +45381,50912,multiple storylines,1308770557 +45381,50912,Natalie Portman,1308770499 +45381,50912,Paris,1308770497 +45381,51084,british,1308835320 +45381,51084,childish,1308835318 +45381,51084,Definite chick flick,1308835309 +45381,51084,Drew Barrymore,1308835323 +45381,51084,parody,1308835328 +45381,51084,previsible,1308835315 +45381,51084,songs,1308835313 +45381,51174,andy warhol,1308832269 +45381,51174,Biography,1308832256 +45381,51174,glamour,1308832262 +45381,51174,pop art,1308832259 +45381,52328,beautiful effects,1308768703 +45381,52328,space,1308768688 +45381,52328,spaceships,1308768685 +45381,53123,bittersweet,1308834877 +45381,53123,charming,1308834875 +45381,53123,complex characters,1308834878 +45381,53123,emotional,1308834882 +45381,53123,great soundtrack,1308834884 +45381,53123,musician,1308834887 +45381,53123,open ending,1308834890 +45381,53123,Unexpected Ending,1308834897 +45381,53123,wired 50 greatest soundtracks,1308834894 +45381,53468,1950s,1312305601 +45381,53468,clever,1312305605 +45381,53468,post-apocalyptic,1312305599 +45381,53468,satire,1312305609 +45381,55052,great cinematography,1308769129 +45381,55052,great soundtrack,1308769124 +45381,55052,heartbreaking,1308769129 +45381,55052,imagination,1308769136 +45381,55052,James McAvoy,1308769166 +45381,55052,Keira Knightley,1308769162 +45381,55052,Period piece,1308769121 +45381,55052,Sexualized violence,1308769115 +45381,55247,Alaska,1308769721 +45381,55247,based on a true story,1308769738 +45381,55247,bittersweet,1308769757 +45381,55247,great soundtrack,1308769756 +45381,55247,imdb top 250,1308769748 +45381,55247,Nudity (Full Frontal),1308769747 +45381,55247,Nudity (Topless - Notable),1308769746 +45381,55247,Nudity (Topless),1308769739 +45381,55247,psychology,1308769737 +45381,55247,self discovery,1308769735 +45381,55814,based on a true story,1308770926 +45381,55814,beautiful,1308770928 +45381,55814,biomedical ethics,1308770933 +45381,55814,disability,1308770951 +45381,55814,flashbacks,1308770932 +45381,55814,foreign language,1308770937 +45381,55814,French,1308770934 +45381,55814,touching,1308770946 +45381,55814,true story,1308770945 +45381,55830,a little predictable,1319286983 +45381,55830,amateur film making,1319286981 +45381,55830,creativity,1319286999 +45381,55830,Mos Def,1319286987 +45381,55830,quirky,1319286985 +45381,55908,excellent script,1368026684 +45381,56169,Hayden Christensen,1308835778 +45381,56169,Jessica Alba,1308835783 +45381,56169,twist ending,1308835785 +45381,56171,children,1308769372 +45381,56171,coming of age,1308769370 +45381,56171,Daniel Craig,1308769374 +45381,56171,religion,1308769379 +45381,56171,steampunk,1308769384 +45381,56174,alone in the world,1308769482 +45381,56174,disease,1308769507 +45381,56174,remake,1308769487 +45381,56174,sci-fi,1308769488 +45381,56174,vampire,1308769509 +45381,56174,virus,1308769514 +45381,56174,Will Smith,1308769514 +45381,56174,zombies,1308769505 +45381,56286,androgyny,1319202290 +45381,56286,Bob Dylan,1319202282 +45381,56286,Cate Blanchett,1319202284 +45381,56286,Heath Ledger,1319202839 +45381,56286,Mindfuck,1319202285 +45381,56286,perfect,1319202819 +45381,56286,surrealism,1319202288 +45381,56389,Jude Law,1308835710 +45381,56389,Natalie Portman,1308835716 +45381,56389,Norah Jones,1308835713 +45381,56389,road movie,1308835717 +45381,56389,soundtrack,1308835719 +45381,56389,visually appealing,1308835727 +45381,58105,based on a book,1308769436 +45381,58105,beautiful,1308769428 +45381,58105,childish,1308769413 +45381,58105,silly,1308769423 +45381,58154,dull,1308769845 +45381,58154,Eddie Redmayne,1308769847 +45381,58154,historical,1308769856 +45381,58154,histrionic,1308769918 +45381,58154,Natalie Portman,1308769858 +45381,58154,romance,1308769866 +45381,58154,Scarlett Johansson,1308769856 +45381,59290,Nudity (Full Frontal),1345478983 +45381,60894,Cillian Murphy,1308833490 +45381,60894,dylan thomas,1308833511 +45381,60894,Keira Knightley,1308833497 +45381,60894,love triangles,1308833513 +45381,60894,poetry,1308833501 +45381,60894,Sienna Miller,1308833498 +45381,60894,writers,1308833503 +45381,60950,bisexual,1308835255 +45381,60950,chick flick,1308835247 +45381,60950,Javier Bardem,1308835257 +45381,60950,Madness,1308835291 +45381,60950,narrated,1308835250 +45381,60950,philosophical,1308835263 +45381,60950,Scarlett Johansson,1308835253 +45381,60950,scenic,1308835260 +45381,60950,Spain,1308835265 +45381,61075,Ben Kingsley,1308770259 +45381,61075,Isabel Coixet,1308770272 +45381,61075,Nudity (Topless - Notable),1308770261 +45381,61075,Penelope Cruz,1308770264 +45381,61075,self-indulgent,1308770254 +45381,62293,biography,1308769997 +45381,62293,British,1308769982 +45381,62293,Dominic Cooper,1308769984 +45381,62293,Keira Knightley,1308769994 +45381,62293,romance,1308770041 +45381,63992,awesome soundtrack,1308769558 +45381,63992,chick flick,1308769536 +45381,63992,high school,1308769567 +45381,63992,romance,1308769570 +45381,63992,Teen movie,1308769533 +45381,63992,teenagers,1308769572 +45381,63992,unintentional comedy,1308769576 +45381,63992,vampires,1308769573 +45381,64034,childish naivity,1308831605 +45381,64034,good acting,1308831596 +45381,64034,irony,1308831602 +45381,64034,touching,1308831611 +45381,64716,atonement,1308835235 +45381,64716,cliche,1308835230 +45381,64716,hopeless love,1308835213 +45381,64716,melancholy,1308835214 +45381,64716,predictable,1308835217 +45381,64716,unique,1308835221 +45381,64716,unrealistic,1308835227 +45381,66870,camera,1308832660 +45381,66870,photography,1308832653 +45381,68073,1960s,1308833728 +45381,68073,British,1308833747 +45381,68073,funny,1308833735 +45381,68073,historically inaccurate,1308833737 +45381,68073,Music,1308833744 +45381,68073,Nick Frost,1325096222 +45381,68073,pirate radio,1308833758 +45381,68073,retro,1325096222 +45381,68073,rock and roll,1308833751 +45381,68073,soundtrack,1308833756 +45381,68269,biographical view,1308770095 +45381,68269,Emily Blunt,1308770100 +45381,68269,historically inaccurate,1308770181 +45381,68269,protagonist is royal,1308770188 +45381,68269,protagonist is young princess & heir,1308770196 +45381,68269,Rupert Friend,1308770107 +45381,68848,Adrien Brody,1308768541 +45381,68848,illogical,1308768528 +45381,68848,interesting characters,1308768538 +45381,68848,narrated,1308768534 +45381,68848,predictable,1308768506 +45381,69757,artistic,1308831410 +45381,69757,Funny,1308831403 +45381,69757,intelligent,1308831397 +45381,69757,music,1308831436 +45381,69757,quirky,1308831399 +45381,69757,Zooey Deschanel,1308831429 +45381,69951,alternate reality,1308835626 +45381,69951,Colin Farrell,1308835621 +45381,69951,Heath Ledger,1308835606 +45381,69951,imaginative,1308835630 +45381,69951,immortality,1308835632 +45381,69951,Johnny Depp,1308835609 +45381,69951,Jude Law,1308835619 +45381,69951,surreal,1308835612 +45381,69951,terry gilliam,1308835615 +45381,69951,tom waits,1308835617 +45381,70093,based on a book,1308832599 +45381,70093,France,1308832506 +45381,70093,Michelle Pfeiffer,1308832597 +45381,70093,Rupert Friend,1308832505 +45381,70293,Amy Adams,1309516317 +45381,70293,biography,1309516328 +45381,70293,inspiring,1309516327 +45381,70293,Meryl Streep,1309516315 +45381,70293,shallow,1309516322 +45381,70344,Emily Watson,1308835499 +45381,70344,Paul Giamatti,1308835497 +45381,70597,quirky,1308832327 +45381,70597,Zooey Deschanel,1308832350 +45381,71327,19th century,1308770757 +45381,71327,Abbie Cornish,1308770752 +45381,71327,artistic,1308770768 +45381,71327,beautiful,1308770773 +45381,71327,Ben Whishaw,1308770751 +45381,71327,character based on a real person:John Keats,1308770776 +45381,71327,poets,1308770759 +45381,71327,romance,1308770761 +45381,71327,true story,1308770785 +45381,71579,1960s,1308831237 +45381,71579,art,1308831250 +45381,71579,biographical,1308831269 +45381,71579,great acting,1308831258 +45381,71579,Paris,1308831256 +45381,71579,predictable,1308831263 +45381,71579,visually appealing,1308831254 +45381,71899,asperger syndrome,1312305404 +45381,71899,black comedy,1312305388 +45381,71899,character study,1312305390 +45381,71899,dark comedy,1312305393 +45381,71899,slow paced,1312305399 +45381,71899,touching,1312305401 +45381,72224,bad humor,1309516469 +45381,72224,stupid,1309516472 +45381,72720,beautiful cinematography,1308771279 +45381,72720,Colin Firth,1308771283 +45381,72720,gay,1308771286 +45381,72720,Julianne Moore,1308771289 +45381,72720,life & death,1308771338 +45381,72720,meditative,1308771337 +45381,72720,reflective,1308771293 +45381,72720,twist ending,1308771298 +45381,72919,Hugh Grant,1308832922 +45381,72919,Marc Lawrence,1308832927 +45381,72919,Sarah Jessica Parker,1308832921 +45381,72919,small town,1308832925 +45381,73027,based on a book,1308833675 +45381,73027,Leo Tolstoy,1308833668 +45381,73027,Russia,1308833671 +45381,73027,writers,1308833672 +45381,74624,ancient civilization,1308834127 +45381,74624,astronomy,1308834130 +45381,74624,Egypt,1308834134 +45381,74624,hypatia,1308834135 +45381,74624,lack of historical context,1308834140 +45381,74624,philosophy,1308834144 +45381,74624,Rachel Weisz,1308834145 +45381,74789,Anne Hathaway,1308769262 +45381,74789,based on a book,1308769268 +45381,74789,beautiful,1308769266 +45381,74789,Johnny Depp,1308769257 +45381,74789,not true to the book,1308769276 +45381,74789,storyline,1308769279 +45381,74789,visually appealing,1308769282 +45381,74789,weird,1308769284 +45381,78039,depressing,1308830868 +45381,78039,drama,1308830863 +45381,78039,great performances,1308830840 +45381,78039,marriage,1308830838 +45381,78039,Michelle Williams,1308830817 +45381,78039,open ending,1308830871 +45381,78039,painful,1308830861 +45381,78039,realism,1308830843 +45381,78039,Ryan Gosling,1308830825 +45381,78039,small town,1308830828 +45381,78039,true to life,1308830832 +45381,79357,butterfly effect,1309516501 +45381,79357,Diane Kruger,1309516504 +45381,79357,romance,1309516506 +45381,79357,surreal,1309516509 +45381,79357,technobabble,1309516581 +45381,80775,comic book,1308832413 +45381,80775,countryside,1308832416 +45381,80775,Dominic Cooper,1308832423 +45381,80775,Gemma Arterton,1308832426 +45381,80775,rock-star,1308832431 +45381,80775,small town,1308832436 +45381,80969,based on a book,1308770384 +45381,80969,depressing,1308770387 +45381,80969,emotional,1308770456 +45381,80969,Keira Knightley,1308770389 +45381,80969,long,1308770400 +45381,80969,sad,1308770393 +45381,81591,creepy,1308768759 +45381,81591,Oscar (Best Actress),1308768738 +45381,81845,based on a true story,1308833533 +45381,81845,complex characters,1308833538 +45381,81845,excellent script,1368026684 +45381,81845,historical,1308833544 +45381,81845,London,1308833535 +45381,85438,adapted from:book,1309443369 +45381,85438,author:Charlotte Brönte,1309443366 +45381,85438,beautifully filmed,1309443365 +45381,85438,Cary Fukunaga,1309443363 +45381,85438,faithful to book,1309443475 +45381,85438,good lead,1309443362 +45381,85438,Mia Wasikowska,1309443356 +45381,85438,Michael Fassbender,1309443354 +45381,86833,bittersweet,1319202150 +45381,86833,flawed characters,1319202153 +45381,86833,Maya Rudolph,1319202142 +45381,86833,poop humor,1319202128 +45381,86833,unlikeable characters,1319202140 +45381,86880,cameo:Judy Dench,1309100085 +45381,86880,cameo:Keith Richards,1309100087 +45381,87222,animation,1309087287 +45381,87222,Chinese factor,1309087305 +45381,87304,melancholic,1368026619 +45381,88129,ambient music,1319202035 +45381,88129,cinematography,1319202031 +45381,88129,minimalistic,1319202014 +45381,88129,Retro 80's Synth Pop,1319202022 +45381,88129,ryan gosling,1319202019 +45381,88129,Strong & Silent Type,1319202028 +45381,88163,Emma Stone,1319201961 +45381,88163,Ryan Gosling,1319201969 +45381,88744,apes,1319202101 +45381,88744,bad script,1319202085 +45381,88744,genetics,1319202098 +45381,88744,James Franco,1319202089 +45381,88744,stereotyped characters,1319202093 +45381,89570,Gus Van Sant,1325368086 +45381,89864,Anna Kendrick,1325109245 +45381,89864,Bryce Dallas Howard,1325109232 +45381,89864,cancer,1325109194 +45381,89864,Joseph Gordon-Levitt,1325109217 +45381,89864,predictable,1325109179 +45381,89864,Seth Rogen,1325109217 +45381,89864,the dog,1325109181 +45381,91104,everything,1325109369 +45381,106766,folk music,1390603433 +45381,106766,surreal,1390603440 +45392,260,sci-fi,1439759747 +45458,2509,Nudity (Topless - Notable),1288353336 +45459,45991,Jack Nicholson,1261251313 +45459,72330,Monica Bellucci,1261251303 +45465,10,bond,1439784497 +45465,10,espionage,1439784500 +45465,10,james bond,1439784493 +45465,10,thriller,1439784503 +45465,1193,jack nicholson,1439784338 +45465,1193,psychological,1439784342 +45465,1704,intellectual,1439784230 +45465,1704,intelligent,1439784235 +45465,2541,Sarah Michelle Gellar,1439784435 +45465,59315,funny,1439784131 +45465,59315,technology,1439784136 +45465,80463,based on true story,1439784193 +45465,80463,business,1439784197 +45465,80463,computers,1439784176 +45465,80463,David Fincher,1439784187 +45465,80463,protagonist is a computer programmer,1439784205 +45465,80463,software developers,1439784179 +45465,91529,Batman,1439784065 +45465,91529,Christopher Nolan,1439784070 +45492,1,animation,1247554120 +45492,1,Pixar,1247554116 +45492,19,Jim Carrey,1247555297 +45492,64,Sandra Bullock,1247553712 +45492,110,medieval,1247554567 +45492,110,Mel Gibson,1247554585 +45492,180,view askew,1247555753 +45492,185,Sandra Bullock,1247553431 +45492,231,Jim Carrey,1247555262 +45492,339,Sandra Bullock,1247553728 +45492,344,Jim Carrey,1247555377 +45492,367,Jim Carrey,1247555258 +45492,368,Mel Gibson,1247554375 +45492,368,poker,1247554392 +45492,491,Drama,1247554684 +45492,491,Mel Gibson,1247554680 +45492,784,black comedy,1247555397 +45492,784,Jim Carrey,1247555394 +45492,805,Sandra Bullock,1247553866 +45492,832,Mel Gibson,1247554655 +45492,1398,Sandra Bullock,1247553819 +45492,1485,jim carrey,1247555343 +45492,1556,Sandra Bullock,1247553860 +45492,1597,drama,1247554675 +45492,1597,Mel Gibson,1247554660 +45492,1608,Harrison Ford,1247555667 +45492,1682,Jim Carrey,1247555303 +45492,1888,Sandra Bullock,1247553989 +45492,1918,action,1247554712 +45492,1918,comedy,1247554710 +45492,1918,Mel Gibson,1247554707 +45492,2000,action,1247554735 +45492,2000,comedy,1247554732 +45492,2000,Mel Gibson,1247554730 +45492,2001,action,1247554649 +45492,2001,comedy,1247554647 +45492,2001,Mel Gibson,1247554642 +45492,2002,Mel Gibson,1247554701 +45492,2273,Jackie Chan,1247554387 +45492,2294,animation,1247554087 +45492,2294,Pixar,1247554090 +45492,2316,magic,1247553769 +45492,2316,Sandra Bullock,1247553767 +45492,2335,Adam Sandler,1247555890 +45492,2375,Tom Hanks,1247555884 +45492,2394,Sandra Bullock,1247553890 +45492,2469,Jim Carrey,1247555368 +45492,2490,action,1247554937 +45492,2490,Mel Gibson,1247554935 +45492,2558,Sandra Bullock,1247553970 +45492,2802,Mel Gibson,1247554717 +45492,2919,Mel Gibson,1247554835 +45492,3109,Mel Gibson,1247554704 +45492,3114,animation,1247554100 +45492,3114,Disney,1247554098 +45492,3114,Pixar,1247554102 +45492,3174,Jim Carrey,1247555317 +45492,3269,Mel Gibson,1247554908 +45492,3534,Sandra Bullock,1247553758 +45492,3702,Mel Gibson,1247554884 +45492,3703,Mel Gibson,1247554857 +45492,3704,Mel Gibson,1247554918 +45492,3705,Mel Gibson,1247554831 +45492,3717,cars,1247555615 +45492,3717,Nicolas Cage,1247555620 +45492,3723,based on a play,1247554748 +45492,3723,Mel Gibson,1247554743 +45492,3751,animation,1247554758 +45492,3751,Dreamworks,1247554760 +45492,3751,Mel Gibson,1247554772 +45492,3752,Jim Carrey,1247555381 +45492,3753,Mel Gibson,1247554561 +45492,3793,comic book,1247555063 +45492,3841,Mel Gibson,1247554794 +45492,3988,Jim Carrey,1247555245 +45492,4000,Mel Gibson,1247554778 +45492,4006,Animation,1247555802 +45492,4006,robots,1247555797 +45492,4018,Mel Gibson,1247554893 +45492,4025,Sandra Bullock,1247553815 +45492,4317,Sandra Bullock,1247553844 +45492,4587,Jim Carrey,1247555284 +45492,4808,remake,1247554010 +45492,4808,Sandra Bullock,1247554006 +45492,4886,animation,1247554130 +45492,4886,Disney,1247554123 +45492,4886,Pixar,1247554126 +45492,4992,Romance,1247555780 +45492,4994,Jim Carrey,1247555366 +45492,5061,Mel Gibson,1247554791 +45492,5152,Mel Gibson,1247554847 +45492,5312,sandra bullock,1247553798 +45492,5415,Sandra Bullock,1247553966 +45492,5502,Mel Gibson,1247554622 +45492,5921,Mel Gibson,1247554945 +45492,5957,Sandra Bullock,1247553994 +45492,6287,Adam Sandler,1247555765 +45492,6373,Jim Carrey,1247555233 +45492,6377,animation,1247554082 +45492,6377,Disney,1247554084 +45492,6377,Pixar,1247554079 +45492,8024,Sandra Bullock,1247553752 +45492,8961,animation,1247554056 +45492,8961,Pixar,1247554047 +45492,27706,jim carrey,1247555321 +45492,32296,Sandra Bullock,1247553367 +45492,42011,Jim Carrey,1247555275 +45492,45668,Sandra Bullock,1247553742 +45492,50872,animation,1247554062 +45492,50872,Disney,1247554065 +45492,50872,pixar,1247554060 +45492,51086,Jim Carrey,1247555402 +45492,51925,Sandra Bullock,1247553717 +45492,58299,Jim Carrey,1247555327 +45492,66385,Kevin Bacon,1247554978 +45492,67295,animation,1247555056 +45497,260,sci-fi,1437782110 +45497,260,space adventure,1437782118 +45523,39,Paul Rudd,1366597253 +45523,170,cheesy bad,1364596778 +45523,288,Oliver Stone,1364596526 +45523,339,Sandra Bullock,1366597311 +45523,1036,Alan Rickman,1366597156 +45523,1095,depressing without being uplifting,1364596699 +45523,1095,Great Performances: Alec Baldwin,1364596699 +45523,1197,Andre the Giant,1364597948 +45523,1197,Heartfelt,1364597948 +45523,1517,Heather Graham,1366597350 +45523,1704,casey affleck,1364597890 +45523,1704,friendship relations,1364597890 +45523,1704,heartwarming,1364597890 +45523,1704,robin williams,1364597890 +45523,1704,tragic childhood,1364597911 +45523,1729,Pam Grier,1364620528 +45523,1729,Quentin Tarantino,1364620528 +45523,1729,Samuel L. Jackson,1364620528 +45523,3441,bittersweet ending,1364597039 +45523,3671,Mel Brooks,1364620411 +45523,3897,Cameron Crowe,1364598424 +45523,3910,depressing without being uplifting,1364619609 +45523,3910,family relationships,1364619609 +45523,3910,Sad ending,1364619609 +45523,3910,Touching,1364619609 +45523,4499,Michael Caine,1364597000 +45523,4816,charmingly stupid,1364598296 +45523,5254,Guillermo del Toro,1364619490 +45523,5254,Ron Perlman,1364619507 +45523,5902,Charlie Kaufman,1364620301 +45523,6157,Awful Soundtrack,1364619452 +45523,6301,bleak atmosphere,1364597631 +45523,6301,disturbing,1364597631 +45523,6301,RAPE & SEXUAL ABUSE,1364597609 +45523,7318,Sadistic,1364619432 +45523,7451,Lindsay Lohan,1364621019 +45523,7451,Lizzy Caplan,1364621019 +45523,7451,Tina Fey,1364621019 +45523,8807,Marijuana,1364619409 +45523,8807,Neil Patrick Harris,1364619409 +45523,34150,Corny,1364620937 +45523,41285,twists and turns,1364620884 +45523,54281,Kat Dennings,1364598126 +45523,55765,bloated,1364596834 +45523,57640,imaginative,1364597254 +45523,57640,Ron Perlman,1364597254 +45523,59126,atheism,1364620180 +45523,59126,Condescending,1364620180 +45523,59126,controversial,1364620198 +45523,59126,smug,1364620198 +45523,60072,silly,1364597222 +45523,60072,unrealistic action,1364597222 +45523,67087,Jason Segel,1364597180 +45523,67087,Paul Rudd,1364597167 +45523,67087,Rashida Jones,1364597180 +45523,76077,John Cusack,1364619788 +45523,80489,Ben Affleck is Director,1364597150 +45523,84374,Ludacris,1364620134 +45523,84374,Natalie Portman,1364620134 +45523,97304,Ben Affleck is Director,1364598040 +45523,97304,tense,1364598040 +45558,926,classic,1375701595 +45558,926,Oscar (Best Picture),1375701588 +45558,926,Oscar (Best Supporting Actor),1375701597 +45558,1206,atmospheric,1375701785 +45558,1206,disturbing,1375701753 +45558,1206,dystopia,1375701751 +45558,1206,prison,1375701807 +45558,1206,social commentary,1375701779 +45558,1206,Stanley Kubrick,1375701766 +45558,1206,stylized,1375701768 +45558,1206,Surrealism,1375701770 +45558,1206,violence,1375701777 +45558,4973,quirky,1375701567 +45558,4973,surreal,1375701576 +45558,64957,cinematography,1375702047 +45558,80969,atmospheric,1375702007 +45558,80969,chick flick,1375702014 +45558,80969,depressing,1375702009 +45558,80969,dystopia,1375702011 +45558,80969,thought-provoking,1375702005 +45558,91077,Hawaii,1375702141 +45558,97752,atmospheric,1375701945 +45558,97752,cannibalism,1375701935 +45558,97752,dystopia,1375701943 +45558,97752,Tom Hanks,1375701931 +45558,97938,cinematography,1375701963 +45558,97938,visually appealing,1375701975 +45565,260,science fantasy,1443545529 +45565,260,space adventure,1443545544 +45596,260,authentic,1444674638 +45596,260,Creative,1444674647 +45600,4720,Nicole Kidman,1345804936 +45600,72998,other planet,1345804863 +45613,32,complicated,1420734427 +45613,32,end of the world,1420734415 +45613,32,great ending,1420734425 +45613,32,imagination,1420734410 +45613,32,mindfuck,1420734412 +45613,32,Post apocalyptic,1420734430 +45613,32,post-apocalyptic,1420734419 +45613,32,sci-fi,1420734436 +45613,32,time travel,1420734421 +45613,47,disturbing,1420734198 +45613,47,horror,1420734176 +45613,47,philosophical,1420734192 +45613,47,violent,1420734201 +45613,50,caper,1420734159 +45613,50,complicated,1420734149 +45613,50,conspiracy,1420734145 +45613,50,excellent script,1420734140 +45613,50,great ending,1420734152 +45613,50,heist,1420734147 +45613,50,storytelling,1420734143 +45613,288,brutality,1420733629 +45613,288,dark comedy,1420733635 +45613,292,epidemic,1424282684 +45613,292,formulaic,1424282690 +45613,471,Coen Brothers,1420733899 +45613,471,quirky,1420733903 +45613,471,whimsical,1420733904 +45613,471,witty,1420733901 +45613,485,breaking the fourth wall,1426122058 +45613,485,campy,1426122070 +45613,485,cheesy,1426122066 +45613,485,fantasy,1426122080 +45613,485,fun,1426122078 +45613,485,movie magic,1426122082 +45613,485,parody,1426122046 +45613,485,quirky,1426122049 +45613,485,ridiculous,1426122063 +45613,485,stupid,1426122098 +45613,593,cannibalism,1420734220 +45613,593,disturbing,1420734222 +45613,593,excellent script,1420734214 +45613,593,great acting,1420734216 +45613,593,Horror,1420734226 +45613,593,strong female lead,1420734228 +45613,608,CRIME GONE AWRY,1420734046 +45613,608,dark comedy,1420734048 +45613,608,dark humor,1420734055 +45613,608,quirky,1420734050 +45613,608,strong female,1420734056 +45613,1196,adventure,1420734902 +45613,1196,modern fantasy,1420734898 +45613,1196,space opera,1420734896 +45613,1196,sword fight,1420734894 +45613,1210,action,1420734935 +45613,1210,sci-fi,1420734925 +45613,1210,space opera,1420734929 +45613,1210,starship pilots,1420734933 +45613,1275,immortality,1420734872 +45613,1275,mentor,1420734874 +45613,1275,sword fight,1420734870 +45613,1394,deadpan,1420733913 +45613,1394,goofy,1420733916 +45613,1394,off-beat comedy,1420733911 +45613,1438,disaster,1424205490 +45613,1438,natural disaster,1424205488 +45613,1527,Bruce Willis,1420733767 +45613,1527,satirical,1420733786 +45613,1527,stylized,1420733784 +45613,1527,surreal,1420733789 +45613,1625,complicated,1420734124 +45613,1625,mindfuck,1420734126 +45613,1625,paranoia,1420734120 +45613,1732,dark comedy,1420733928 +45613,1732,great dialogue,1420733933 +45613,1732,satirical,1420733930 +45613,1748,cerebral,1420734392 +45613,1748,dark fantasy,1420734394 +45613,1748,dystopia,1420734400 +45613,1748,existentialism,1420734387 +45613,1748,sci-fi,1420734403 +45613,1748,thought-provoking,1420734399 +45613,1784,excellent script,1420734537 +45613,2334,prescient,1424122664 +45613,2334,torture,1424124087 +45613,2571,action,1420734377 +45613,2571,alternate reality,1420734369 +45613,2571,dark hero,1420734359 +45613,2571,fantasy,1420734355 +45613,2571,fight scenes,1420734357 +45613,2571,philosophical,1420734363 +45613,2571,philosophy,1420734370 +45613,2571,post-apocalyptic,1420734372 +45613,2571,thought-provoking,1420734366 +45613,2985,cyborgs,1420733839 +45613,2985,dystopia,1420733841 +45613,2985,social commentary,1420733830 +45613,2985,violent,1420733822 +45613,4247,adequate,1425319331 +45613,5219,action,1420733663 +45613,5219,Milla Jovovich,1420733657 +45613,5445,action,1420734337 +45613,5445,corruption,1420734344 +45613,5445,dystopia,1420734330 +45613,5445,police corruption,1420734348 +45613,5445,time loop,1420734339 +45613,5445,violence,1420734342 +45613,5445,wrongly accused,1420734335 +45613,5809,slow,1425571511 +45613,6979,Cold War,1420733885 +45613,6979,computers,1420733877 +45613,6979,hackers,1420733879 +45613,6979,military,1420733887 +45613,6979,nuclear war,1420733881 +45613,7362,good idea but simple realization,1427394661 +45613,8874,anti-hero,1420734585 +45613,8874,dark humor,1420734574 +45613,8874,gore,1420734579 +45613,8874,satire,1420734583 +45613,8874,slackers,1420734588 +45613,8874,violent,1420734581 +45613,8972,action,1420734961 +45613,8972,adventure,1420734957 +45613,8972,conspiracy theory,1420734953 +45613,8972,puzzle solving,1420734956 +45613,8972,secret societies,1420734959 +45613,26751,cat,1420640248 +45613,26751,crispin glover,1420640248 +45613,26751,quirky,1420640248 +45613,31203,quirky characters,1450304137 +45613,33493,mystic warriors,1420734914 +45613,34319,dystopia,1424140861 +45613,34319,freedom,1424140874 +45613,34319,immortality,1424140892 +45613,34319,sci-fi,1424140868 +45613,37384,profanity,1425068970 +45613,37384,watch the credits,1425068977 +45613,37384,workplace,1425068983 +45613,40732,goretastic,1449847488 +45613,42721,poorly directed,1421158292 +45613,42721,unconvincing action scenes,1421158315 +45613,47644,football,1427401436 +45613,47644,underdog,1427401433 +45613,49278,sci-fi,1420734291 +45613,49278,time travel,1420734288 +45613,50601,death of a child,1425075006 +45613,50601,fantasy,1425074994 +45613,50601,hurried ending,1425075009 +45613,51255,action spoof,1420734561 +45613,51255,dark comedy,1420734567 +45613,51255,Funny as hell,1420734564 +45613,51847,disappointing ending,1450296750 +45613,51847,slow moving,1450296145 +45613,54503,crude humor,1420734493 +45613,54503,hilarious,1420734499 +45613,54503,virginity,1420734495 +45613,55820,brutal,1420734008 +45613,55820,Coen Brothers,1420734023 +45613,55820,dark,1420734005 +45613,55820,great acting,1420734021 +45613,55820,hitman,1420734033 +45613,55820,slow paced,1420734011 +45613,57669,assassin,1420733973 +45613,57669,dark comedy,1420733964 +45613,57669,depression,1420733978 +45613,57669,foul language,1420733970 +45613,57669,hitman,1420733991 +45613,57669,irreverent,1420733986 +45613,59022,road trip,1425579968 +45613,59022,satire,1425579977 +45613,59022,sequel,1425579962 +45613,59022,social commentary,1425579986 +45613,59022,stoner comedy,1425579959 +45613,59387,beautiful,1420734847 +45613,59387,beautiful cinematography,1420734861 +45613,59387,cinematography,1420734858 +45613,59387,fantasy world,1420734852 +45613,59387,imagination,1420734854 +45613,59387,storytelling,1420734850 +45613,59387,visually stunning,1420734863 +45613,59561,loose collection of skits,1453309398 +45613,60037,bad ending,1422648239 +45613,60037,Bad Science,1422648006 +45613,60037,disaster,1422648236 +45613,60037,end of the world,1422648011 +45613,60037,survival,1422648254 +45613,60037,weak dialogue,1422648224 +45613,60037,weak story,1422648003 +45613,60037,weak writing,1422648248 +45613,60072,assassin-in-training,1424903421 +45613,60072,brutal violence,1424903418 +45613,60072,gun fu,1424903423 +45613,60072,too much suspension of disbelief,1424903450 +45613,60072,unrealistic action,1424903414 +45613,61024,dumb humor,1422029233 +45613,63131,geeks,1420734523 +45613,63131,role playing game,1420734519 +45613,66198,action,1427134456 +45613,66198,arms dealer,1427134442 +45613,66198,Business is the antagonist,1427135025 +45613,66198,corruption,1427135022 +45613,66198,cover up,1427135015 +45613,66198,idealistic protagonist,1427135009 +45613,66198,justice,1427134445 +45613,66198,no happy ending,1427134996 +45613,68237,artificial intelligence,1420734455 +45613,68237,clones,1420734451 +45613,68237,dystopia,1420734461 +45613,68237,Sci-fi,1420734464 +45613,69757,nonlinear,1423692696 +45613,69757,overrated,1423692690 +45613,71154,disaster,1425492159 +45613,71154,flood,1425492157 +45613,71154,natural disaster,1425492162 +45613,71154,weak cgi,1425492171 +45613,71154,weak plot,1425492179 +45613,73321,action,1423667520 +45613,73321,Denzel Washington,1423667507 +45613,73321,dystopia,1423667505 +45613,73321,post-apocalyptic,1423667501 +45613,73321,survival,1423667515 +45613,76873,Vail Bloom,1453312962 +45613,79293,betrayal,1420734791 +45613,79293,espionage,1420734798 +45613,79293,sleeper agent,1420734795 +45613,79599,gore,1425484904 +45613,79599,quotable,1425484911 +45613,79599,well-cast,1425484918 +45613,80219,brutal,1424114245 +45613,80219,gore,1424114232 +45613,80363,bad plot,1420733683 +45613,80363,Milla Jovovich,1420733688 +45613,80549,great parents,1450213293 +45613,80549,Unreal reactions,1450213306 +45613,80549,witty banter,1450213300 +45613,82095,Alien Invasion,1425394664 +45613,82095,aliens,1425394667 +45613,82095,just not good,1425394658 +45613,82095,tries too hard,1425394685 +45613,82095,unresolved ending,1425395927 +45613,82095,weak screenplay,1425394697 +45613,83613,better than expected,1420733739 +45613,84152,human potential,1420734074 +45613,84152,interesting premise,1420734067 +45613,84152,smart,1420734071 +45613,84152,thought provoking,1420734064 +45613,85131,alien invasion,1420733721 +45613,85131,sci-fi,1420733710 +45613,85131,shaky camera,1420733716 +45613,85401,bitter,1424291174 +45613,89470,apocalypse,1424056602 +45613,89470,bland characters,1424056619 +45613,89470,disease,1424056604 +45613,89470,epidemic,1424056643 +45613,89470,not sensationalist,1424056629 +45613,89470,Realistic,1424056626 +45613,89470,slow,1424056647 +45613,89470,wasted characters,1424056596 +45613,91273,Boring,1427386166 +45613,91273,Fantasy,1427386163 +45613,91273,narrated,1427386187 +45613,91273,Not enough action,1427386155 +45613,91273,oppression,1427386169 +45613,91273,organized crime,1427386176 +45613,91273,post-apocalyptic,1427386171 +45613,91273,slow,1427386178 +45613,91273,unique look,1427386159 +45613,91470,funny,1422569883 +45613,91470,great dialogue,1422569936 +45613,91470,quotable,1422569869 +45613,91470,thoughtful,1422569898 +45613,92507,conspiracy,1424715726 +45613,92507,espionage,1424715734 +45613,92507,on the run,1424715716 +45613,92507,utterly predictable,1424715719 +45613,93563,banter,1427734486 +45613,93563,bland characters,1427734508 +45613,93563,One-Liners,1427734489 +45613,93563,prison escape,1427734487 +45613,93563,stupid ending,1427734511 +45613,93563,unbelievable,1427734500 +45613,93768,adam copeland,1419988345 +45613,93768,great dialogue,1422648744 +45613,93768,light and fluffy,1419988345 +45613,93768,memorable characters,1422648750 +45613,93768,perfect casting,1422648765 +45613,93768,well-crafted,1419988345 +45613,94959,cinematography,1420734804 +45613,94959,dialogue,1420734806 +45613,94959,quirky,1420734813 +45613,96610,clever,1420734317 +45613,96610,dystopia,1420734305 +45613,96610,gore,1420734322 +45613,96610,science fiction,1420734310 +45613,96610,time travel,1420734302 +45613,96821,Captivating,1420815822 +45613,96821,character development,1420815825 +45613,97306,clever,1420733946 +45613,97306,metafiction,1420733950 +45613,97306,Sam Rockwell,1420733948 +45613,97306,witty,1420733953 +45613,97311,competition,1425660291 +45613,97311,funny,1425660227 +45613,97311,great dialogue,1425660310 +45613,97311,quotable,1425660300 +45613,97311,satire,1425660347 +45613,97311,social commentary,1425660222 +45613,97311,well-written,1425660320 +45613,99112,Action,1420734630 +45613,99112,conspiracy,1420734635 +45613,99112,investigation,1420734633 +45613,99112,sniper,1420734631 +45613,99112,without romance,1420734628 +45613,100083,crude humor,1424130142 +45613,100083,embarassing scenes,1424130145 +45613,103228,fun,1420733754 +45613,103228,ridiculous,1420733757 +45613,103228,visually appealing,1420733744 +45613,103249,pandemic,1420733798 +45613,104312,"""inspired"" by a book",1425074946 +45613,104312,bad plot,1425074921 +45613,104312,cliche,1425074927 +45613,104312,fantasy,1425074919 +45613,104312,poor acting,1425074924 +45613,106002,based on a book,1420733693 +45613,106002,Orson Scott Card,1420733698 +45613,106195,atmospheric,1422483717 +45613,106195,no happy ending,1422483735 +45613,106195,Saoirse Ronan,1422483723 +45613,107737,dystopia,1423667216 +45613,107737,gore,1423667208 +45613,109042,fantasy,1424060377 +45613,109042,gore,1424060375 +45613,113218,cheesy fun,1425051662 +45613,113218,comedy,1425051645 +45613,113218,quotable,1425051658 +45613,113218,scifi,1425051642 +45613,113218,strong cast,1425051650 +45613,128488,rapey,1425590271 +45613,128488,slow start,1425590264 +45613,134117,made for tv quality,1453306559 +45613,134117,poor special effects,1453306822 +45613,144760,torture,1447174773 +45634,142090,bleak,1442176636 +45634,142090,crime,1441899203 +45634,142090,dark,1442176624 +45634,142090,portugal,1441899211 +45634,142090,prostitution,1441899207 +45634,142090,realistic,1442176628 +45634,148432,caio,1450533202 +45640,529,They Forgot to Mention that Fisher is an Insane Nazi,1172078785 +45640,536,Lost Classic,1173552455 +45640,536,Silas Marner,1173552455 +45640,536,Touching,1173552455 +45640,920,racist rubbish,1172072141 +45640,936,Dated Humour,1172065845 +45640,1204,Fake History - Don't Believe a Thing,1172075441 +45640,1220,Mission From God,1172070480 +45640,1274,Amazing!,1172081471 +45640,1280,Gong Li,1172993136 +45640,1358,Amazing Classic,1172075077 +45640,1779,Underrated,1172081068 +45640,2972,intimate,1174106886 +45640,3362,John Cazale,1172532413 +45640,3608,Awesome Classic,1172079809 +45640,3735,Longest Tag Ever,1172082407 +45640,4407,Not quite a great history flim-I knew doc rock and he has never been to Salvador-only his friend-he hates stone too,1172093542 +45640,4878,Made-To-Order Cult Movie,1172069768 +45640,5111,Lost Classic,1173611701 +45640,5111,understated,1173611693 +45640,5417,Lost Classic,1172093217 +45640,5810,Eminem is a VICTIM,1172078968 +45640,6713,great movie - idiots leave stupid tags,1173550913 +45640,6713,History,1173550956 +45640,6713,Touching,1173550970 +45640,6993,Overly-Dramatic,1172066987 +45640,7448,Underrated,1172094212 +45640,7587,flat characters,1173159126 +45640,7587,overrated,1173159303 +45640,7587,slow,1173159126 +45640,7925,Star wars but a Million Times Better,1172091053 +45640,8199,lays it on thick,1174106244 +45640,8199,overrated,1174106266 +45640,8207,I didn't find it confusing,1173471414 +45640,26492,incredibly troubled production,1174068004 +45640,27592,amazing!,1173704344 +45640,27592,brutal,1173704344 +45640,27592,dark,1173704344 +45640,27592,violent,1173704344 +45640,27728,Better than the First,1172090851 +45640,32892,Amazing Cinematography,1173278838 +45640,32892,black and white,1173278815 +45640,32892,bleak,1173278807 +45640,32892,Dreams,1173278794 +45640,39381,Intense,1173175376 +45640,44694,dramalama,1174067975 +45640,45183,Heavily Edited For American Audiences,1173343054 +45640,48516,Scorsese Movie with Gimme Shelter,1172069000 +45642,260,Classic,1432972137 +45642,260,Epic,1432972115 +45655,342,dramatic and talk about flat details about life,1161190213 +45664,370,Arma nua,1162374098 +45664,3623,mentiroso,1162374110 +45664,7153,casamento,1162374117 +45664,48322,ass,1162373593 +45668,5903,matrx copy,1380064059 +45686,1036,Alan Rickman,1311895856 +45686,1036,Bruce Willis,1311895770 +45686,1036,ex-wife,1311895907 +45686,1036,skyscraper,1311895939 +45686,1036,thriller,1311895825 +45686,4855,Clint Eastwood,1311896653 +45686,4855,gritty,1311896692 +45686,4855,serial killer,1311896825 +45686,4855,setting:San Francisco,1311896662 +45686,87232,Cuban missile crisis,1311895364 +45686,87232,ineffectual U.S. military,1311895291 +45686,87232,Rose Byrne,1311895307 +45686,87232,superhero,1311894695 +45708,110,classic,1438348444 +45708,110,inspirational,1438348440 +45708,3981,good sci-fi,1438348492 +45708,7318,Christianity,1438348396 +45708,7318,jesus,1438348384 +45708,7318,Jesus Christ,1438348394 +45708,72998,Gnosticism,1438348635 +45708,72998,poor 3d,1438348565 +45708,106489,good values,1438348701 +45708,106489,Tolkien,1438348674 +45708,118696,good values,1438348724 +45708,118696,Tolkien,1438348715 +45727,2527,out of control androids,1425991656 +45727,2594,better than the american version,1425991819 +45727,42351,post-apocalyptic,1304502545 +45727,56145,apocalypse,1244565627 +45727,56145,based on a book,1244565638 +45727,56145,insects,1244565629 +45727,56145,stephen king,1244565621 +45727,112515,creepy book,1425991930 +45729,89864,friendship,1334068143 +45749,1246,prep school,1177802471 +45749,4019,prep school,1177802503 +45749,5873,prep school,1177802452 +45753,32,Brad Pitt,1292121342 +45753,32,Bruce Willis,1292121342 +45753,433,short-term memory loss,1367992256 +45753,521,neo-noir,1367992078 +45753,558,dragon,1367992158 +45753,1068,noir thriller,1367991734 +45753,1203,courtroom drama,1292121297 +45753,1359,arnold,1367991885 +45753,1544,spielberg,1367992273 +45753,1693,spielberg,1367992273 +45753,1783,neo-noir,1367992078 +45753,2661,mars,1367991794 +45753,2739,spielberg,1367992273 +45753,2819,conspiracy theory,1367992131 +45753,3153,dragon,1367992158 +45753,3480,cheerleading,1367991866 +45753,3489,spielberg,1367992273 +45753,3698,arnold,1367991885 +45753,3783,neo-noir,1367992078 +45753,3986,arnold,1367991885 +45753,3997,dragon,1367992158 +45753,4091,cheerleading,1367991866 +45753,4189,christian,1367992031 +45753,4189,jesus,1367991664 +45753,4370,spielberg,1367992273 +45753,4558,arnold,1367991885 +45753,4795,stranded,1367991754 +45753,4802,screwball comedy,1367991975 +45753,5146,dark hero,1367991811 +45753,5832,christian,1367992031 +45753,5882,treasure,1367991693 +45753,5893,neo-noir,1367992078 +45753,5942,cheerleading,1367991866 +45753,6157,dark hero,1367991811 +45753,6254,screwball comedy,1367991975 +45753,6450,stranded,1367991754 +45753,6609,jesus,1367991664 +45753,6768,christian,1367992031 +45753,7004,arnold,1367991885 +45753,7217,noir thriller,1367991735 +45753,7223,noir thriller,1367991735 +45753,7335,noir thriller,1367991735 +45753,7373,dark hero,1367991811 +45753,7584,screwball comedy,1367991975 +45753,7938,jesus,1367991664 +45753,7943,noir thriller,1367991735 +45753,8167,treasure,1367991693 +45753,8711,screwball comedy,1367991975 +45753,8972,conspiracy theory,1367992131 +45753,25850,screwball comedy,1367991975 +45753,25927,noir thriller,1367991735 +45753,26398,mars,1367991794 +45753,27822,stranded,1367991754 +45753,34048,spielberg,1367992273 +45753,44761,neo-noir,1367992078 +45753,52241,short-term memory loss,1367992256 +45753,55118,dark hero,1367991811 +45753,56775,conspiracy theory,1367992131 +45753,57951,treasure,1367991693 +45753,60684,dark hero,1367991811 +45753,68554,conspiracy theory,1367992131 +45753,80729,satire:art world,1292121146 +45753,81562,mountain climbing,1367992224 +45753,84601,short-term memory loss,1367992256 +45753,86880,treasure,1367991693 +45753,91529,dark hero,1367991811 +45753,91976,stranded,1367991754 +45753,95875,mars,1367991794 +45753,97938,stranded,1367991754 +45765,32,future,1439918641 +45765,32,post-apocalyptic,1439918620 +45765,32,sci-fi,1439918625 +45765,32,time travel,1439918617 +45765,541,androids,1439477199 +45765,541,cyberpunk,1439477179 +45765,541,dystopia,1439477193 +45765,541,Philip K. Dick,1439477175 +45765,541,Ridley Scott,1439477185 +45765,608,Coen Brothers,1439545626 +45765,608,dark comedy,1439545618 +45765,608,witty,1439545656 +45765,924,Arthur C. Clarke,1439476976 +45765,924,artificial intelligence,1439476941 +45765,924,confusing ending,1439476969 +45765,924,futuristic,1439476948 +45765,924,masterpiece,1439476938 +45765,924,space,1439476959 +45765,1298,cult film,1440792700 +45765,1298,great soundtrack,1440792699 +45765,1298,hallucinatory,1440792695 +45765,1298,social commentary,1440792691 +45765,2010,dystopia,1439477229 +45765,2010,Fritz Lang,1439477219 +45765,2010,robot,1439477222 +45765,2877,Roger Daltrey,1440792728 +45765,2877,surreal,1440792739 +45765,2877,The Who,1440792725 +45765,5881,space,1439477005 +45765,6832,Harrison Ford,1440879118 +45765,8914,intelligent,1439918687 +45765,8914,paradox,1439918697 +45765,8914,Sci-Fi,1439918676 +45765,8914,time travel,1439918677 +45765,34048,aliens,1440795293 +45765,34048,H.G. Wells,1440795301 +45765,34048,sci-fi,1440795295 +45765,34048,Steven Spielberg,1440795297 +45765,52328,psychological,1439477067 +45765,52328,space,1439477057 +45765,55908,Excellent use of dialogue,1440792239 +45765,55908,philosophical,1440792254 +45765,55908,sci-fi,1440792228 +45765,55908,thought-provoking,1440792225 +45765,65642,paradox,1439918777 +45765,65642,time travel,1439918774 +45765,70286,aliens,1439477089 +45765,70286,intelligent sci-fi,1439477105 +45765,70286,satire,1439477119 +45765,84152,concept,1450039127 +45765,84152,thought provoking,1450039089 +45765,85414,science fiction,1439918824 +45765,85414,time loop,1439918821 +45765,106002,aliens,1440795173 +45765,106002,Orson Scott Card,1440795176 +45765,106002,space,1440795185 +45765,106782,Amoral,1440066947 +45765,106782,Anti-Hero,1440066935 +45765,106782,Wall Street,1440066940 +45765,112852,sci-fi,1440792971 +45765,114662,emotional struggle,1426626266 +45765,114662,intense,1426626266 +45765,114662,strength,1426626266 +45765,122900,San Francisco,1439631349 +45765,122900,sci-fi,1439631302 +45765,122900,special effects,1439631360 +45765,122900,superhero,1439631307 +45765,135137,predictable,1439476869 +45765,135288,photography,1440791904 +45802,103867,lisbon,1446381334 +45802,143969,2015,1446381230 +45802,143969,comedy,1446381209 +45802,143969,germany,1446381218 +45802,143969,hitler,1446381216 +45802,143969,nazi,1446381214 +45811,260,great story,1432878989 +45811,260,inspiring,1432879001 +45811,260,Science Fiction,1432878957 +45811,260,the force,1432878967 +45817,2355,good,1156298010 +45859,924,oppressive soundtrack,1198036409 +45883,1693,too violent,1325463583 +45890,107348,classic,1427094858 +45890,107348,comedy,1427094783 +45890,107348,news,1427094844 +45890,112290,12 years in the making,1427094687 +45890,112290,adulthood,1427094687 +45890,112290,drama,1427094687 +45933,775,Jane Fonda,1281629999 +45933,1178,court,1189760934 +45933,7116,a little dated,1268037040 +45933,7116,Non-violent,1268037040 +45933,7116,one of the most tense and suspenseful movies ever made,1268037040 +45933,7235,extremely violent,1189688500 +45933,56152,satire,1281632830 +45933,73854,Burl Ives,1281632729 +45952,1298,trippy,1189005559 +45952,2116,adventure,1189005592 +45952,2116,fantasy,1189005592 +45952,2313,depressing,1189005547 +45952,2976,good movie,1189005654 +45952,5064,good movie,1189005663 +45952,6870,Great movie,1189005549 +45961,318,Morgan Freeman,1152347753 +45961,904,Hitchcock,1152347717 +45961,1288,Christopher Guest,1152347617 +45961,1320,Too Hollywood,1152347541 +45961,3052,Kevin Smith,1152347711 +45970,131168,Holocaust,1437513655 +46005,260,space combat,1433269663 +46005,260,space opera,1433269659 +46016,3702,car chase,1437096534 +46016,3702,dystopia,1437096532 +46016,3702,post apocalyptic,1437096537 +46016,3702,post-apocalyptic,1437096530 +46016,3702,revenge,1437096541 +46016,48774,apocalypse,1437697616 +46016,48774,dystopia,1437697613 +46016,48774,future,1437697622 +46016,48774,survival,1437697620 +46016,107406,dystopia,1437096462 +46016,107406,dystopian,1437618961 +46016,107406,illogical,1437096469 +46016,107406,post-apocalyptic,1437096459 +46016,107406,trains,1437096467 +46016,114180,dystopia,1437096408 +46016,114180,maze,1437096423 +46016,114180,post-apocalyptic,1437096427 +46016,114180,survival,1437096417 +46026,260,father-son relationship,1439789001 +46026,260,space adventure,1439789076 +46027,260,classic sci-fi,1435900300 +46027,260,sci-fi,1435900280 +46035,5952,fantasy,1291500121 +46035,59369,fight scenes,1291500089 +46061,27773,best of 2005,1162702574 +46066,527,based on a true story,1312109692 +46066,527,disturbing,1312109694 +46066,527,Nazis,1312109684 +46066,527,World War II,1312109690 +46066,589,apocalypse,1312110251 +46066,589,artificial intelligence,1312110246 +46066,589,future,1312110248 +46066,589,time travel,1312110252 +46066,778,drugs,1312177023 +46066,778,Ewan McGregor,1312177018 +46066,866,lesbian,1312177563 +46066,866,mafia,1312177565 +46066,866,murder,1312177572 +46066,866,tense,1312177569 +46066,1206,dystopia,1312110135 +46066,1625,mindfuck,1312107801 +46066,1653,dystopia,1312108389 +46066,1748,creepy,1312177070 +46066,1748,surreal,1312177061 +46066,1884,hallucinatory,1312178007 +46066,1884,Johnny Depp,1312178009 +46066,1884,true story,1312178014 +46066,1909,Gillian Anderson,1312177141 +46066,1909,science fiction,1312177148 +46066,1909,X-Files!!,1312177137 +46066,1997,exorcism,1312108907 +46066,1997,religion,1312108911 +46066,1997,scary,1312108898 +46066,2028,historical,1312109721 +46066,2028,war,1312109731 +46066,2028,World War II,1312109728 +46066,2159,serial killer,1312108948 +46066,2447,Amy Smart,1312177814 +46066,2447,football,1312177824 +46066,2447,high school,1312177803 +46066,2447,James Van Der Beek,1312177801 +46066,2447,Paul Walker,1312177797 +46066,2541,Reese Witherspoon,1312177755 +46066,2541,Ryan Philippe,1312177751 +46066,2596,punk,1312177683 +46066,2908,brutal,1312109408 +46066,2908,transgender,1312109402 +46066,2908,true story,1312109411 +46066,3186,60s,1312109490 +46066,3186,Angelina Jolie,1312109479 +46066,3186,asylum,1312109486 +46066,3186,based on a true story,1312109482 +46066,3186,Brittany Murphy,1312109477 +46066,3186,Clea DuVall,1312109475 +46066,3186,psychology,1312109470 +46066,3186,suicide,1312109505 +46066,3535,Christian Bale,1312177976 +46066,3535,insanity,1312177977 +46066,3535,serial killer,1312177980 +46066,3825,Maria Bello,1312177860 +46066,3825,music,1312177863 +46066,3825,Piper Perabo,1312177854 +46066,4069,Jennifer Lopez,1312177898 +46066,4239,based on a true story,1312109567 +46066,4239,drugs,1312109571 +46066,4239,Johnny Depp,1312109572 +46066,4744,monster,1312108828 +46066,5010,Ewan McGregor,1312109759 +46066,5010,Josh Hartnett,1312109758 +46066,5010,military,1312109772 +46066,5010,war,1312109762 +46066,5294,serial killer,1312109159 +46066,5294,twist ending,1312109151 +46066,5445,dystopia,1312108368 +46066,5445,futuristic,1312108342 +46066,5445,Tom Cruise,1312108320 +46066,5577,adolescence,1312177648 +46066,5577,dark humor,1312177646 +46066,5577,Kieran Culkin,1312177642 +46066,5903,Christian Bale,1312108437 +46066,5903,drugs,1312108458 +46066,5903,dystopia,1312108426 +46066,6003,Sam Rockwell,1312178080 +46066,6502,apocalyptic,1312108556 +46066,7160,based on a true story,1312109321 +46066,7160,Charlize Theron,1312109374 +46066,7160,Christina Ricci,1312109376 +46066,7160,lesbians,1312109358 +46066,7160,murder,1312109279 +46066,27020,Angelina Jolie,1312109529 +46066,27020,drugs,1312109533 +46066,27020,lesbian,1312109531 +46066,27904,surreal,1312178026 +46066,33683,horror,1312109116 +46066,33683,lesbian,1312109114 +46066,34319,cloning,1312110285 +46066,34319,dystopia,1312110287 +46066,34319,Ewan McGregor,1312110284 +46066,34319,future,1312110292 +46066,34319,genetics,1312110289 +46066,34319,multiple roles,1312110303 +46066,34319,Scarlett Johansson,1312110282 +46066,34323,funny,1312109069 +46066,40819,drug abuse,1312109610 +46066,40819,Joaquin Phoenix,1312109602 +46066,40819,music,1312109598 +46066,40819,Reese Witherspoon,1312109600 +46066,43921,Paul Walker,1312177271 +46066,57274,"""found footage""",1312108589 +46066,57274,infection,1312108629 +46066,57274,spanish,1312108610 +46066,57274,virus,1312108602 +46066,60760,Gillian Anderson,1312177168 +46066,62203,disturbing,1312108978 +46066,62203,lesbian subtext,1312108981 +46066,62733,"""found footage""",1312108722 +46066,62733,Jennifer Carpenter,1312108738 +46066,63062,angelina jolie,1312109213 +46066,63062,based on a true story,1312109217 +46066,63062,police corruption,1312109206 +46066,63082,music,1312109641 +46066,63082,romance,1312109643 +46066,69481,military,1312109805 +46066,69481,War,1312109794 +46066,72167,disappointing,1312177226 +46066,74685,Iowa,1312108680 +46066,74685,Radha Mitchell,1312108662 +46066,74685,Timothy Olyphant,1312108659 +46066,77427,disturbing,1312109888 +46066,77427,experiment,1312109877 +46066,77427,sick,1312109873 +46066,79251,disturbing,1312110011 +46066,79251,rape,1312110005 +46066,79251,thought-provoking,1312110017 +46066,79251,violence,1312110024 +46066,80549,Emma Stone,1312177723 +46066,80549,witty,1312177725 +46077,4623,Cleveland,1357631846 +46077,27847,Not questioning the obvious lies,1375595046 +46077,69275,Duct tape,1360046540 +46077,97986,teacher unions terrorizing children,1380049757 +46077,98065,teacher unions terrorizing children,1374473858 +46077,99800,Duct tape,1358141655 +46077,104123,Jason Mewes,1377993127 +46080,920,Clark Gable,1431895191 +46080,920,drama,1431895157 +46080,920,Vivian Leigh,1431895176 +46080,920,war,1431895152 +46080,4973,Paris,1431894795 +46080,4973,romance,1431894825 +46080,50872,animation,1431894749 +46080,50872,cooking,1431894710 +46080,50872,paris,1431894764 +46080,115617,Animation,1431895388 +46080,115617,friendship,1431895374 +46080,115617,superhero,1431895381 +46108,111443,colors,1422069621 +46108,111443,food,1422069621 +46108,111443,happy ending,1422069621 +46124,318,inspirational,1436584348 +46124,318,justice,1436584342 +46124,318,prison escape,1436584334 +46124,318,thought-provoking,1436584344 +46124,73881,friendship,1436584438 +46124,119145,british comedy,1436532954 +46124,119145,spy thriller,1436532958 +46130,1270,time travel,1244688996 +46130,1286,time travel,1244690454 +46130,3510,time travel,1244689279 +46130,4992,time travel,1244689592 +46130,8361,Environmental,1244690009 +46130,8368,harry potter,1244689351 +46130,8643,romance,1244688619 +46130,45668,time travel,1244689728 +46130,49278,time travel,1244689106 +46132,260,Harrison Ford great movies,1444002742 +46132,260,original classic,1444002689 +46147,2683,HEH,1140908588 +46162,260,all-time great,1431248096 +46162,260,space travel,1431248073 +46176,38061,black comedy,1379053632 +46176,38061,crude humor,1379053627 +46176,38061,funny,1379053618 +46198,32168,drama,1429100645 +46198,32168,social criticism,1429100645 +46198,32168,youth,1429100645 +46208,260,classic sci-fi,1441479835 +46208,260,Galaxy,1441479854 +46215,260,sci-fi,1439822377 +46215,260,space epic,1439822384 +46223,3996,amazing photography,1160157326 +46223,7090,amazing photography,1160157274 +46265,260,exciting,1441923407 +46265,260,fighting,1441923393 +46289,60074,plot twist,1231882903 +46311,1,2009 reissue in Stereoscopic 3-D,1306611568 +46311,1,55 movies every kid should see--Entertainment Weekly,1407082526 +46311,1,BD-Video,1407082526 +46311,1,CLV,1238343894 +46311,1,DVD-Video,1313609929 +46311,2,CLV,1339262303 +46311,3,CLV,1233431029 +46311,4,CLV,1417809731 +46311,5,CLV,1417459060 +46311,6,CLV,1339092555 +46311,7,CLV,1339093746 +46311,9,CLV,1417466347 +46311,10,BD-Video,1390854023 +46311,10,CLV,1233427339 +46311,11,CLV,1417385334 +46311,12,BD-R,1374424391 +46311,14,CLV,1403549359 +46311,15,CLV,1406934030 +46311,16,CLV,1339091721 +46311,17,CLV,1339093824 +46311,20,CLV,1403548090 +46311,21,CLV,1339092437 +46311,23,CLV,1339091270 +46311,25,DVD-Video,1237054719 +46311,26,CLV,1237742715 +46311,28,CLV,1339093531 +46311,32,DVD-Video,1143311713 +46311,33,IMAX 3-D,1306604835 +46311,33,Stereoscopic 3-D,1306604835 +46311,34,55 movies every kid should see--Entertainment Weekly,1407082570 +46311,34,CLV,1181423788 +46311,36,CLV,1339092127 +46311,37,BD-R,1306445378 +46311,37,IMAX 3-D,1306603841 +46311,37,Stereoscopic 3-D,1306445379 +46311,41,CLV,1417465287 +46311,41,DVD-RAM,1245183162 +46311,42,CLV,1406934161 +46311,43,CLV,1417465436 +46311,44,BD-Video,1413051829 +46311,44,CLV,1237233101 +46311,45,CLV,1339094123 +46311,46,CLV,1417461398 +46311,47,BD-Video,1390857081 +46311,47,DVD-Video,1318181249 +46311,48,70mm,1142791704 +46311,48,Super 1.85 Blow-Up,1237211126 +46311,50,BD-Video,1258130875 +46311,50,CLV,1274984816 +46311,52,CLV,1339093021 +46311,61,CLV,1427731937 +46311,62,CLV,1421093265 +46311,70,BD-Video,1367687430 +46311,70,CLV,1233421449 +46311,86,CLV,1238354349 +46311,93,CLV,1238348441 +46311,94,CLV,1406933650 +46311,95,CLV,1417455892 +46311,97,BD-R,1413053206 +46311,100,CLV,1406933933 +46311,101,DVD-Video,1182716982 +46311,104,CLV,1406936253 +46311,105,BD-R,1288549509 +46311,110,BD-Video,1405197848 +46311,110,DVD-Video,1182717714 +46311,111,BD-Video,1440873770 +46311,111,Betamax,1238265841 +46311,111,CLV,1238265841 +46311,112,CLV,1375043390 +46311,118,CLV,1427732545 +46311,122,CLV,1417455733 +46311,128,DVD-Video,1236621094 +46311,132,CLV,1403548680 +46311,141,CLV,1421092773 +46311,150,BD-Video,1373683647 +46311,150,CLV,1143404694 +46311,150,IMAX DMR,1306683316 +46311,151,DVD-Video,1237827115 +46311,153,CLV,1339091421 +46311,154,BD-R,1379790703 +46311,154,CLV,1182637172 +46311,156,CLV,1427739144 +46311,158,CLV,1339258638 +46311,159,DVD-Video,1413057852 +46311,160,CLV,1417457188 +46311,161,CLV,1185669769 +46311,162,BD-R,1357844575 +46311,163,CLV,1339259715 +46311,165,CLV,1274975304 +46311,168,CLV,1233077289 +46311,170,DVD-RAM,1246465317 +46311,171,CLV,1421098331 +46311,172,CLV,1339262283 +46311,173,CLV,1417462487 +46311,174,CLV,1417462631 +46311,177,CLV,1339262476 +46311,181,DVD-RAM,1237230688 +46311,182,CLV,1237232849 +46311,193,DVD-Video,1238185741 +46311,196,CLV,1352064870 +46311,196,DVD-RAM,1310658351 +46311,197,CLV,1427742923 +46311,198,DVD-Video,1238261725 +46311,199,BD-R,1379790575 +46311,199,BD-Video,1437944156 +46311,199,DVD-R,1238347163 +46311,199,DVD-RAM,1238347163 +46311,201,CLV,1238269371 +46311,203,CLV,1339263640 +46311,208,CLV,1339263745 +46311,210,CLV,1406940958 +46311,215,DVD-Video,1182636999 +46311,216,CLV,1406933701 +46311,218,CLV,1417455594 +46311,222,CLV,1339091748 +46311,223,CLV,1417456157 +46311,224,CLV,1339092303 +46311,225,CLV,1339092164 +46311,227,CLV,1406935685 +46311,230,CLV,1339259814 +46311,231,CLV,1406935913 +46311,232,DVD-Video,1197239980 +46311,233,DVD-Video,1206384451 +46311,235,CLV,1406935795 +46311,236,CLV,1406936162 +46311,244,VHS,1233431080 +46311,246,CLV,1421095694 +46311,247,DVD-Video,1233434173 +46311,249,CLV,1339262165 +46311,251,CLV,1403548423 +46311,252,CLV,1339262138 +46311,253,CLV,1339262249 +46311,256,CLV,1339092844 +46311,257,CLV,1406936640 +46311,258,CLV,1421093120 +46311,259,CLV,1406936670 +46311,260,55 movies every kid should see--Entertainment Weekly,1407083102 +46311,260,70mm,1274977374 +46311,260,Anamorphic Blow-Up,1407083102 +46311,260,BD-Video,1418405278 +46311,260,Betamax,1238260732 +46311,260,CAV,1274977351 +46311,260,CLV,1238260732 +46311,260,DVD-Video,1418405278 +46311,261,CLV,1421098620 +46311,262,CLV,1237133320 +46311,266,CLV,1339262402 +46311,267,CLV,1417463050 +46311,270,CLV,1427732898 +46311,272,CLV,1339262578 +46311,276,CLV,1403548063 +46311,277,70mm,1142792034 +46311,277,Panavision Super 70,1237211055 +46311,277,Spherical Blow-Up,1237211055 +46311,279,CLV,1237574432 +46311,280,CLV,1339093417 +46311,281,CLV,1339093447 +46311,288,CLV,1417463942 +46311,292,CLV,1237742961 +46311,293,BD-Video,1440873593 +46311,293,DVD-Video,1237055036 +46311,296,BD-Video,1390857057 +46311,296,CLV,1237822505 +46311,299,CLV,1421099312 +46311,300,CLV,1339262996 +46311,303,Betamax,1237823059 +46311,303,CLV,1339093699 +46311,306,BD-R,1405200021 +46311,306,CLV,1426531219 +46311,307,BD-R,1405200004 +46311,307,CLV,1426531600 +46311,308,BD-R,1405200027 +46311,308,CLV,1426531436 +46311,314,CLV,1274983937 +46311,315,CLV,1406937143 +46311,316,CLV,1238260849 +46311,317,CLV,1427736249 +46311,318,BD-Video,1394315059 +46311,318,CLV,1339263283 +46311,319,CLV,1238182780 +46311,327,CLV,1238265624 +46311,328,CLV,1361819599 +46311,329,BD-Video,1339701532 +46311,329,CLV,1238260263 +46311,330,CLV,1417466466 +46311,335,CLV,1427733844 +46311,337,DVD-Video,1238352120 +46311,338,CLV,1417808397 +46311,339,CLV,1417810331 +46311,342,BD-R,1403547307 +46311,344,CLV,1417383933 +46311,345,CLV,1339091201 +46311,348,CLV,1339091626 +46311,349,CLV,1406933984 +46311,350,CLV,1417456378 +46311,352,CLV,1339091790 +46311,352,DVD-Video,1413057876 +46311,353,BD-Video,1396552545 +46311,353,CLV,1339091953 +46311,355,CLV,1339092411 +46311,356,BD-Video,1413055062 +46311,356,CLV,1233084489 +46311,356,DVD-Video,1233084489 +46311,356,IMAX DMR reissue in 2014,1419717912 +46311,357,CLV,1339261443 +46311,358,CLV,1406936299 +46311,361,CLV,1417461774 +46311,364,55 movies every kid should see--Entertainment Weekly,1407082869 +46311,364,70mm,1274981219 +46311,364,BD-Video,1407082870 +46311,364,CAV,1237056116 +46311,364,CLV,1274981219 +46311,364,Dimensionalized 2-D to 3-D for reissue in 2011,1369325841 +46311,364,DVD-Video,1329078369 +46311,364,Super 1.85 Blow-Up,1274981219 +46311,365,70mm,1333992663 +46311,365,Anamorphic Blow-Up,1333992663 +46311,365,ARRI System 765,1333992663 +46311,365,CLV,1237132128 +46311,366,CLV,1339263788 +46311,367,CLV,1237228790 +46311,367,DVD-Video,1318181232 +46311,368,CLV,1339092946 +46311,369,CLV,1427744566 +46311,370,CLV,1339262638 +46311,371,CLV,1339093473 +46311,372,CLV,1339263059 +46311,376,CLV,1417465555 +46311,377,CLV,1238257542 +46311,378,CLV,1417466214 +46311,379,CLV,1339263622 +46311,380,70mm,1142791841 +46311,380,CLV,1238345247 +46311,380,Super-35 Blow-Up,1237210969 +46311,382,CLV,1239033267 +46311,383,CLV,1339263763 +46311,387,CLV,1421102682 +46311,390,DVD-R,1233076157 +46311,391,CLV,1417462114 +46311,393,CLV,1238261855 +46311,405,CLV,1406936384 +46311,407,BD-R,1342717483 +46311,410,CLV,1417385197 +46311,412,BD-R,1423771378 +46311,416,CLV,1182634801 +46311,417,BD-R,1414264804 +46311,420,CLV,1421101175 +46311,423,CLV,1417455277 +46311,424,CLV,1421101311 +46311,425,DVD-Video,1182716185 +46311,426,VHS,1182716569 +46311,427,DVD-Video,1182717125 +46311,428,CLV,1421101569 +46311,431,CLV,1339091703 +46311,434,70mm,1406934010 +46311,434,Anamorphic Blow-Up,1406934010 +46311,434,CLV,1185055235 +46311,435,CLV,1417456765 +46311,436,CLV,1421101998 +46311,440,CLV,1339092085 +46311,441,CLV,1417457575 +46311,442,CLV,1339259685 +46311,448,CLV,1406936044 +46311,451,CLV,1417812047 +46311,454,CLV,1339092391 +46311,454,VHS,1233077180 +46311,455,CLV,1233085720 +46311,458,70mm,1403548041 +46311,458,Anamorphic Blow-Up,1403548041 +46311,458,CLV,1403548041 +46311,459,CLV,1339092457 +46311,464,CLV,1417461055 +46311,471,BD-R,1390854888 +46311,471,CLV,1339092768 +46311,474,70mm,1143142941 +46311,474,Anamorphic Blow-Up,1237210771 +46311,474,DVD-Video,1236611445 +46311,475,CLV,1236613207 +46311,477,CLV,1339094300 +46311,478,CLV,1417462314 +46311,479,CLV,1406936619 +46311,480,55 movies every kid should see--Entertainment Weekly,1407084205 +46311,480,BD-Video,1394315102 +46311,480,CAV,1236621131 +46311,480,Dimensionalized 2-D to 3-D for reissue in 2013,1369329461 +46311,480,IMAX DMR 3-D reissue in 2013,1369074799 +46311,481,CLV,1406940546 +46311,482,CLV,1237049061 +46311,483,CLV,1237050841 +46311,485,70mm,1143142969 +46311,485,Anamorphic Blow-Up,1237210743 +46311,485,DVD-Video,1237053637 +46311,488,CLV,1421098805 +46311,490,CLV,1406937097 +46311,491,CLV,1339092928 +46311,492,DVD-Video,1237227891 +46311,494,CLV,1206384363 +46311,495,DVD-Video,1236613300 +46311,495,VHS,1236613277 +46311,495,VistaVision,1418408453 +46311,497,CLV,1403548737 +46311,500,CLV,1339093336 +46311,504,CLV,1417464137 +46311,506,BD-R,1349373034 +46311,507,CLV,1406937050 +46311,508,BD-R,1394310579 +46311,508,CLV,1339093574 +46311,509,DVD-Video,1237748870 +46311,510,CLV,1237750363 +46311,511,CLV,1417464799 +46311,515,70mm,1339426283 +46311,515,BD-R,1392664530 +46311,515,CLV,1352064697 +46311,515,DVD-R,1237825340 +46311,515,DVD-RAM,1237825340 +46311,515,Super-35 Blow-Up,1339426283 +46311,517,CLV,1406937116 +46311,518,CLV,1339263080 +46311,520,CLV,1339263119 +46311,527,DVD-Video,1237830298 +46311,529,CLV,1339093799 +46311,531,CLV,1274983914 +46311,532,DVD-Video,1238181681 +46311,533,CLV,1339263236 +46311,534,CLV,1339093845 +46311,535,70mm,1278794280 +46311,535,Super-35 Blow-Up,1278794280 +46311,539,BD-R,1394312809 +46311,539,CLV,1339094031 +46311,540,CLV,1339263349 +46311,541,70mm,1242916776 +46311,541,Anamorphic Blow-Up,1237141548 +46311,541,BD-Video,1242916776 +46311,541,CAV,1182714309 +46311,541,VHS,1182714309 +46311,544,CLV,1406940812 +46311,545,Betamax,1342902307 +46311,547,CLV,1421103200 +46311,548,BD-R,1390854924 +46311,548,CLV,1421103596 +46311,551,2006 reissue in Stereoscopic 3-D,1306608487 +46311,551,BD-Video,1422063537 +46311,551,CAV,1237578062 +46311,551,DVD-Video,1422063537 +46311,552,CLV,1417807668 +46311,553,CLV,1339263695 +46311,555,BD-Video,1396552461 +46311,555,CLV,1238345922 +46311,562,CLV,1427743534 +46311,564,CLV,1430147799 +46311,567,CLV,1237048178 +46311,572,CLV,1430147918 +46311,575,CLV,1339262455 +46311,581,DVD-R,1184463821 +46311,581,DVD-RAM,1184463822 +46311,586,55 movies every kid should see--Entertainment Weekly,1407083233 +46311,586,CLV,1339092732 +46311,587,CLV,1339092483 +46311,588,BD-Video,1445023522 +46311,588,CAV,1143320998 +46311,588,DVD-Video,1445023522 +46311,589,70mm,1313697509 +46311,589,BD-Video,1381436043 +46311,589,Cinema Digital Sound,1313697507 +46311,589,CLV,1238267540 +46311,589,DVD-Video,1238267540 +46311,589,Super-35 Blow-Up,1313697511 +46311,590,70mm,1339092040 +46311,590,BD-Video,1415478152 +46311,590,CLV,1339092040 +46311,592,70mm,1143141213 +46311,592,Betamax,1182636213 +46311,592,CLV,1182636214 +46311,592,Spherical Blow-Up,1237208848 +46311,593,BD-Video,1415478099 +46311,593,DVD-Video,1238185862 +46311,594,BD-Video,1255470159 +46311,594,CAV,1238255260 +46311,594,CLV,1238255260 +46311,594,DVD-Video,1238255260 +46311,595,55 movies every kid should see--Entertainment Weekly,1407082622 +46311,595,70mm,1306082902 +46311,595,BD-Video,1407082623 +46311,595,Dimensionalized 2-D to 3-D,1306613991 +46311,595,DVD-Video,1313609183 +46311,595,IMAX,1306082902 +46311,595,Super-35 Blow-Up,1306082902 +46311,596,55 movies every kid should see--Entertainment Weekly,1407082727 +46311,596,BD-Video,1242916852 +46311,596,Betamax,1237749141 +46311,596,CAV,1237749141 +46311,596,DVD-Video,1313609743 +46311,597,CLV,1406937334 +46311,599,70mm,1316721175 +46311,599,Anamorphic Blow-Up,1316721175 +46311,599,BD-R,1316721175 +46311,599,BD-Video,1413057051 +46311,606,CLV,1352060977 +46311,608,DVD-Video,1233075779 +46311,610,BD-R,1323567455 +46311,610,CLV,1233434256 +46311,613,BD-Video,1396552406 +46311,621,BD-R,1379790685 +46311,627,CLV,1427740588 +46311,628,CLV,1339093622 +46311,635,CLV,1421088632 +46311,640,CLV,1427731502 +46311,647,CLV,1339091769 +46311,648,CLV,1339093067 +46311,653,CAV,1403549339 +46311,653,CLV,1197234861 +46311,659,BD-R,1369941134 +46311,661,DVD-RAM,1302803937 +46311,662,CLV,1406936022 +46311,668,BD-R,1384027975 +46311,673,BD-Video,1422063775 +46311,673,CLV,1339263368 +46311,674,BD-R,1437074647 +46311,674,BD-Video,1440873991 +46311,674,DVD-Video,1182635670 +46311,680,BD-R,1445022409 +46311,680,Betamax,1143321665 +46311,680,CLV,1180227379 +46311,685,CLV,1339262265 +46311,688,CLV,1417464275 +46311,692,BD-R,1429814227 +46311,692,CLV,1427742742 +46311,694,CLV,1421103488 +46311,697,DVD-Video,1322326389 +46311,698,DVD-R,1186877256 +46311,702,DVD-Video,1236620159 +46311,704,CLV,1417464982 +46311,707,DVD-RAM,1253208139 +46311,708,CLV,1339094205 +46311,712,CLV,1427739297 +46311,719,CLV,1237573392 +46311,728,CLV,1274974386 +46311,733,CLV,1237827644 +46311,736,CAV,1238346805 +46311,737,DVD-Video,1182635625 +46311,748,CLV,1339258535 +46311,749,BD-R,1440274923 +46311,750,BD-Video,1308501490 +46311,750,CAV,1197234639 +46311,750,DVD-Video,1238259515 +46311,751,DVD-Video,1183247473 +46311,755,BD-R,1445021257 +46311,761,CLV,1339262823 +46311,765,CLV,1417461927 +46311,773,BD-R,1390854545 +46311,775,BD-R,1329075925 +46311,778,BD-Video,1367686993 +46311,780,70mm,1390857013 +46311,780,BD-Video,1390857013 +46311,780,CLV,1236613615 +46311,783,70mm,1142791461 +46311,785,CLV,1406940564 +46311,786,CLV,1198454292 +46311,788,CLV,1339262736 +46311,798,CLV,1417457352 +46311,799,CLV,1339261469 +46311,802,CLV,1406940676 +46311,805,CLV,1339094101 +46311,809,CLV,1421102252 +46311,818,CLV,1417808240 +46311,828,DVD-RAM,1302803917 +46311,830,CLV,1417459480 +46311,832,CLV,1417465116 +46311,836,CLV,1406933889 +46311,838,CLV,1427740438 +46311,841,BD-R,1418405782 +46311,841,Betamax,1239034294 +46311,841,DVD-R,1239034294 +46311,842,CLV,1339263542 +46311,849,CLV,1339259921 +46311,858,BD-Video,1440873833 +46311,858,DVD-Video,1233426321 +46311,858,VHS,1233426355 +46311,860,CLV,1237229260 +46311,861,CLV,1238263871 +46311,875,CLV,1406936917 +46311,879,CLV,1361819351 +46311,880,CLV,1339262212 +46311,882,CLV,1417807650 +46311,898,BD-R,1399750774 +46311,898,CLV,1237748661 +46311,899,55 movies every kid should see--Entertainment Weekly,1407082928 +46311,899,BD-R,1293762546 +46311,899,CLV,1238186275 +46311,900,BD-R,1295721595 +46311,901,Betamax,1233422151 +46311,901,VistaVision,1418407172 +46311,902,BD-R,1298139625 +46311,902,BD-Video,1390857107 +46311,902,CLV,1230651222 +46311,903,70mm,1254510327 +46311,903,BD-Video,1440873280 +46311,903,CLV,1238349533 +46311,903,DVD-RAM,1254510327 +46311,903,DVD-Video,1308504507 +46311,903,VHS,1238349533 +46311,903,VistaVision,1254510327 +46311,904,BD-Video,1440873305 +46311,904,CLV,1237824729 +46311,904,DVD-Video,1308504456 +46311,905,BD-R,1382745811 +46311,905,CLV,1236617260 +46311,907,CLV,1230591640 +46311,908,BD-R,1293762574 +46311,908,CLV,1237578921 +46311,908,VistaVision,1274981955 +46311,909,BD-R,1331229408 +46311,910,55 movies every kid should see--Entertainment Weekly,1407083986 +46311,910,BD-R,1335714668 +46311,911,BD-R,1423772850 +46311,911,DVD-RAM,1281043778 +46311,911,VHS,1184518803 +46311,912,BD-R,1293762227 +46311,912,CAV,1183313012 +46311,912,CLV,1230407087 +46311,912,VHS,1183313013 +46311,913,BD-Video,1405199824 +46311,913,CLV,1237227373 +46311,914,70mm,1274981131 +46311,914,BD-R,1355600868 +46311,914,BD-Video,1440873943 +46311,914,Betamax,1237574391 +46311,914,CLV,1237574391 +46311,914,PAL CLV,1237574391 +46311,914,Super Panavision 70,1274981131 +46311,916,BD-R,1426363370 +46311,916,Betamax,1237827928 +46311,916,CLV,1339263207 +46311,917,BD-R,1396551494 +46311,917,Betamax,1237133344 +46311,918,BD-R,1413054653 +46311,918,CLV,1237229533 +46311,919,55 movies every kid should see--Entertainment Weekly,1407082897 +46311,919,BD-Video,1255470181 +46311,919,CAV,1239033194 +46311,919,CLV,1274985008 +46311,919,DVD-Video,1313607944 +46311,919,IMAX DMR 3-D reissue in 2013,1392667493 +46311,920,70mm,1142792969 +46311,920,BD-R,1426361876 +46311,920,CLV,1233428268 +46311,920,Spherical Blow-Up,1237137892 +46311,921,BD-R,1330291307 +46311,921,CLV,1274981655 +46311,922,DVD-R,1238263715 +46311,922,DVD-RAM,1238263715 +46311,922,DVD-Video,1238263715 +46311,923,CLV,1230579736 +46311,923,DVD-Video,1184520921 +46311,924,70mm,1296680255 +46311,924,BD-Video,1308501509 +46311,924,Betamax,1143312101 +46311,924,CLV,1172525254 +46311,924,DVD-Video,1238259530 +46311,924,Super Panavision 70,1296680255 +46311,926,DVD-R,1143321409 +46311,926,DVD-RAM,1143321409 +46311,927,BD-R,1390855053 +46311,928,BD-R,1289497068 +46311,929,BD-R,1373138702 +46311,929,Betamax,1233084396 +46311,929,CLV,1233084396 +46311,930,BD-R,1363291337 +46311,931,BD-R,1380471731 +46311,931,DVD-R,1238257572 +46311,931,DVD-RAM,1238257572 +46311,932,BD-R,1422062439 +46311,933,BD-R,1381080608 +46311,933,CLV,1238341576 +46311,933,VistaVision,1381080608 +46311,934,BD-R,1369941059 +46311,934,CLV,1426529093 +46311,935,BD-R,1440275412 +46311,935,CAV,1182635584 +46311,935,CLV,1230406892 +46311,936,BD-R,1394313620 +46311,936,CLV,1237578463 +46311,937,BD-R,1342898220 +46311,938,BD-R,1370541988 +46311,938,Betamax,1233425429 +46311,938,CLV,1233425429 +46311,939,BD-R,1405199394 +46311,940,BD-R,1399749123 +46311,940,CAV,1172526610 +46311,940,CLV,1228515083 +46311,940,DVD-R,1172526610 +46311,941,BD-R,1363290200 +46311,942,BD-R,1403547400 +46311,942,CLV,1237054560 +46311,943,BD-R,1395592775 +46311,944,BD-R,1299181480 +46311,945,BD-R,1354824649 +46311,945,CLV,1230591602 +46311,946,BD-R,1365878722 +46311,946,CLV,1238341547 +46311,947,BD-R,1333645152 +46311,948,BD-R,1289496396 +46311,949,BD-R,1307812078 +46311,950,BD-R,1329076018 +46311,950,CLV,1238268562 +46311,951,BD-R,1369940204 +46311,951,CLV,1234037492 +46311,952,70mm,1296677797 +46311,952,Betamax,1232653416 +46311,952,CLV,1230499370 +46311,952,DVD-Video,1143404798 +46311,952,Todd-AO,1296677797 +46311,953,55 movies every kid should see--Entertainment Weekly,1407083716 +46311,953,BD-Video,1415479916 +46311,953,CLV,1369335807 +46311,953,VHS,1236617387 +46311,954,BD-R,1323572896 +46311,955,BD-R,1383506311 +46311,955,CLV,1230651470 +46311,955,DVD-R,1182718635 +46311,956,BD-R,1422063055 +46311,957,BD-R,1311267301 +46311,958,BD-R,1319911570 +46311,958,DVD-Video,1367771665 +46311,959,BD-R,1433634092 +46311,959,DVD-Video,1367770638 +46311,960,BD-R,1360441497 +46311,962,BD-R,1352059964 +46311,962,DVD-Video,1367771593 +46311,965,CLV,1172525363 +46311,965,DVD-Video,1198456145 +46311,967,BD-R,1374424364 +46311,967,DVD-R,1237743036 +46311,967,DVD-RAM,1237743036 +46311,968,2009 reissue in Stereoscopic 3-D,1306611680 +46311,968,BD-R,1293762412 +46311,968,CLV,1339262672 +46311,968,DVD-Video,1237577660 +46311,969,CLV,1274977507 +46311,969,VHS,1143320513 +46311,970,BD-R,1384028847 +46311,971,BD-R,1298139515 +46311,972,DVD-Video,1367770769 +46311,973,BD-R,1352397879 +46311,974,DVD-Video,1367771330 +46311,976,BD-R,1363291498 +46311,982,BD-R,1365879933 +46311,991,CLV,1339092962 +46311,994,BD-R,1399749642 +46311,994,CLV,1339091475 +46311,996,CLV,1339262374 +46311,1003,CLV,1417458695 +46311,1006,CLV,1421101732 +46311,1007,BD-R,1292632028 +46311,1008,BD-R,1423770321 +46311,1009,Betamax,1198455407 +46311,1014,Betamax,1237750514 +46311,1016,DVD-R,1238182462 +46311,1019,DVD-R,1185668204 +46311,1019,VHS,1143312020 +46311,1020,CLV,1421102126 +46311,1021,CLV,1427743711 +46311,1022,BD-Video,1364059754 +46311,1022,CLV,1184520808 +46311,1024,BD-R,1429813937 +46311,1024,Betamax,1238269320 +46311,1025,Betamax,1238264731 +46311,1025,CLV,1274984671 +46311,1027,BD-Video,1396552483 +46311,1027,CLV,1339263110 +46311,1028,55 movies every kid should see--Entertainment Weekly,1407082588 +46311,1028,BD-Video,1394315161 +46311,1028,Betamax,1237228705 +46311,1029,BD-Video,1329078340 +46311,1029,Betamax,1197237481 +46311,1029,CLV,1197237481 +46311,1029,DVD-Video,1329078340 +46311,1030,BD-R,1343327160 +46311,1030,BD-Video,1364059729 +46311,1030,Betamax,1237745983 +46311,1031,BD-Video,1415478306 +46311,1031,DVD-R,1230411562 +46311,1031,DVD-Video,1415478306 +46311,1032,BD-Video,1422063568 +46311,1032,Betamax,1143321112 +46311,1032,CLV,1143321112 +46311,1032,DVD-Video,1422063568 +46311,1034,DVD-Video,1322326410 +46311,1035,55 movies every kid should see--Entertainment Weekly,1407082834 +46311,1035,70mm,1294519614 +46311,1035,BD-Video,1407082834 +46311,1035,Betamax,1238256980 +46311,1035,CLV,1238256980 +46311,1035,DVD-Video,1313608300 +46311,1035,Todd-AO,1294519614 +46311,1036,70mm,1403548990 +46311,1036,Anamorphic Blow-Up,1403548989 +46311,1036,CLV,1186879867 +46311,1037,CLV,1403549164 +46311,1038,CLV,1427743188 +46311,1040,CLV,1427742428 +46311,1041,CLV,1417817708 +46311,1047,CLV,1406936711 +46311,1049,CLV,1339261679 +46311,1050,CLV,1426530706 +46311,1059,BD-Video,1396552515 +46311,1061,CLV,1339093962 +46311,1066,BD-R,1427571276 +46311,1066,CLV,1230591698 +46311,1067,BD-R,1382746537 +46311,1068,BD-R,1414264464 +46311,1069,BD-R,1329076131 +46311,1070,BD-R,1440278097 +46311,1073,55 movies every kid should see--Entertainment Weekly,1407083312 +46311,1073,BD-Video,1378667914 +46311,1073,Betamax,1238354900 +46311,1076,BD-R,1352398587 +46311,1076,Betamax,1236615072 +46311,1076,DVD-R,1236615072 +46311,1076,DVD-RAM,1236615072 +46311,1077,Betamax,1238186649 +46311,1077,DVD-Video,1238186649 +46311,1078,Betamax,1182635500 +46311,1078,DVD-Video,1182635500 +46311,1079,Betamax,1233077482 +46311,1079,DVD-Video,1233077482 +46311,1080,Betamax,1237055748 +46311,1080,VHS,1237055748 +46311,1081,BD-R,1298139789 +46311,1081,Betamax,1238349662 +46311,1081,CLV,1238349662 +46311,1082,BD-R,1440277406 +46311,1082,Betamax,1183247119 +46311,1083,70mm,1283013997 +46311,1083,Anamorphic Blow-Up,1283013997 +46311,1083,BD-R,1369940697 +46311,1083,Betamax,1233430212 +46311,1083,DVD-RAM,1283013997 +46311,1084,DVD-Video,1182716747 +46311,1086,BD-R,1354828442 +46311,1086,CLV,1186879059 +46311,1086,Stereoscopic 3-D,1306601057 +46311,1086,WarnerVision,1306601057 +46311,1088,BD-Video,1367687283 +46311,1089,BD-Video,1367687358 +46311,1089,CLV,1237825875 +46311,1089,DVD-Video,1237825875 +46311,1090,70mm,1143139277 +46311,1090,DVD-Video,1237750087 +46311,1091,Betamax,1238351599 +46311,1091,CLV,1417814420 +46311,1092,BD-Video,1413051767 +46311,1092,DVD-Video,1182635851 +46311,1093,70mm,1313697369 +46311,1093,Anamorphic Blow-Up,1313697369 +46311,1093,Cinema Digital Sound,1313697369 +46311,1093,CLV,1417458364 +46311,1094,BD-R,1413056102 +46311,1094,CLV,1339092006 +46311,1095,CLV,1339092508 +46311,1096,DVD-Video,1238256832 +46311,1097,55 movies every kid should see--Entertainment Weekly,1407083000 +46311,1097,70mm,1339259846 +46311,1097,CLV,1339259846 +46311,1097,Spherical Blow-Up,1339259846 +46311,1097,VHS,1197238395 +46311,1099,BD-R,1390855597 +46311,1099,DVD-RAM,1232732840 +46311,1100,70mm,1143141726 +46311,1100,Anamorphic Blow-Up,1237209969 +46311,1100,Cinema Digital Sound,1237218434 +46311,1100,CLV,1185673861 +46311,1101,70mm,1369075142 +46311,1101,BD-Video,1440873972 +46311,1101,CLV,1238343435 +46311,1101,Dimensionalized 2-D to 3-D for reissue in 2013,1369329076 +46311,1101,IMAX DMR 3-D reissue in 2013,1369075142 +46311,1101,Super-35 Blow-Up,1369075142 +46311,1103,BD-R,1376240999 +46311,1103,DVD-RAM,1278793950 +46311,1104,BD-R,1427571619 +46311,1104,CLV,1238262126 +46311,1120,CLV,1339262786 +46311,1124,VHS,1237600203 +46311,1127,70mm,1143141080 +46311,1127,CLV,1228514948 +46311,1127,DVD-Video,1143319511 +46311,1127,Super-35 Blow-Up,1237208889 +46311,1128,Betamax,1233083946 +46311,1128,DVD-Video,1233083993 +46311,1129,BD-R,1339090499 +46311,1129,Betamax,1198455258 +46311,1129,CLV,1339259914 +46311,1130,BD-R,1339958440 +46311,1130,CLV,1361819095 +46311,1135,CLV,1403548486 +46311,1136,BD-Video,1440873613 +46311,1136,CLV,1237232707 +46311,1136,VHS,1237232707 +46311,1148,CAV,1233429572 +46311,1150,Betamax,1237825966 +46311,1152,BD-R,1401999485 +46311,1152,DVD-Video,1367859294 +46311,1153,BD-R,1440275973 +46311,1154,BD-R,1426364884 +46311,1156,BD-R,1360441322 +46311,1161,70mm,1142799937 +46311,1161,BD-R,1299181153 +46311,1162,CLV,1237828550 +46311,1162,DVD-Video,1237828550 +46311,1171,DVD-Video,1182716387 +46311,1172,BD-R,1390855407 +46311,1172,CLV,1339258695 +46311,1173,DVD-Video,1185127397 +46311,1178,BD-R,1378667748 +46311,1178,DVD-R,1237745357 +46311,1178,DVD-RAM,1237745357 +46311,1178,VHS,1237745357 +46311,1179,CLV,1233430828 +46311,1183,BD-R,1416587191 +46311,1183,CLV,1339259876 +46311,1185,BD-R,1413056085 +46311,1185,CLV,1426526080 +46311,1186,CLV,1238182189 +46311,1186,DVD-Video,1238182189 +46311,1187,CLV,1426528106 +46311,1188,CLV,1427733486 +46311,1189,VHS,1238268525 +46311,1191,CLV,1237226771 +46311,1193,BD-R,1354398143 +46311,1194,Betamax,1386538076 +46311,1196,70mm,1274977428 +46311,1196,Anamorphic Blow-Up,1274977428 +46311,1196,BD-Video,1418405299 +46311,1196,Betamax,1198452715 +46311,1196,CAV,1274977428 +46311,1196,CLV,1198452715 +46311,1196,DVD-Video,1418405298 +46311,1197,55 movies every kid should see--Entertainment Weekly,1407083477 +46311,1197,BD-Video,1413055276 +46311,1197,DVD-Video,1237821832 +46311,1198,55 movies every kid should see--Entertainment Weekly,1407084022 +46311,1198,70mm,1355600574 +46311,1198,Anamorphic Blow-Up,1355600574 +46311,1198,BD-Video,1355600574 +46311,1198,Betamax,1237823720 +46311,1198,CLV,1237823720 +46311,1198,IMAX DMR reissue in 2012,1369077360 +46311,1199,BD-Video,1364059948 +46311,1199,Betamax,1182717743 +46311,1199,DVD-Video,1230329972 +46311,1200,70mm,1274985135 +46311,1200,CAV,1229291428 +46311,1200,CLV,1229291428 +46311,1200,DVD-Video,1143321336 +46311,1200,PAL VHS,1274985135 +46311,1200,Spherical Blow-Up,1274985135 +46311,1201,BD-R,1288549394 +46311,1201,BD-Video,1307029880 +46311,1201,DVD-Video,1313609545 +46311,1202,BD-R,1336663887 +46311,1203,DVD-Video,1143311669 +46311,1204,70mm,1296680011 +46311,1204,BD-R,1369940596 +46311,1204,BD-Video,1440873509 +46311,1204,CLV,1237054598 +46311,1204,Super Panavision 70,1296680011 +46311,1206,BD-Video,1308501529 +46311,1206,Betamax,1185055445 +46311,1206,DVD-Video,1238259543 +46311,1207,55 movies every kid should see--Entertainment Weekly,1407084177 +46311,1207,BD-R,1426365335 +46311,1207,Betamax,1238341659 +46311,1207,DVD-R,1238341659 +46311,1207,DVD-RAM,1238341659 +46311,1208,70mm,1142737402 +46311,1208,Anamorphic Blow-Up,1237140708 +46311,1208,Betamax,1143404671 +46311,1208,DVD-Video,1143404671 +46311,1209,BD-Video,1413057013 +46311,1209,DVD-Video,1237600467 +46311,1209,VHS,1237600467 +46311,1210,70mm,1274977469 +46311,1210,Anamorphic Blow-Up,1274977469 +46311,1210,BD-Video,1418405314 +46311,1210,Betamax,1237826041 +46311,1210,CAV,1274977469 +46311,1210,CLV,1237826041 +46311,1210,DVD-Video,1418405314 +46311,1211,Betamax,1238355142 +46311,1211,CLV,1238355142 +46311,1211,DVD-Video,1238355142 +46311,1212,CLV,1238268784 +46311,1212,DVD-Video,1198456130 +46311,1213,BD-Video,1338052523 +46311,1213,CLV,1233428757 +46311,1214,70mm,1274985098 +46311,1214,Anamorphic Blow-Up,1274985098 +46311,1214,Betamax,1143321196 +46311,1214,CAV,1143321196 +46311,1214,CLV,1228515429 +46311,1214,DVD-Video,1143321196 +46311,1214,PAL VHS,1274985098 +46311,1215,BD-R,1357844671 +46311,1216,70mm,1349372379 +46311,1216,Anamorphic Blow-Up,1349372379 +46311,1216,BD-R,1349372379 +46311,1217,70mm,1274972178 +46311,1217,CLV,1237823937 +46311,1217,DVD-RAM,1274972178 +46311,1218,BD-R,1370542112 +46311,1219,BD-Video,1440873227 +46311,1219,Betamax,1237822365 +46311,1219,CLV,1237822365 +46311,1219,DVD-Video,1308504523 +46311,1220,70mm,1142800252 +46311,1220,Betamax,1182716281 +46311,1220,DVD-Video,1182716281 +46311,1221,BD-Video,1440873845 +46311,1221,DVD-Video,1233426320 +46311,1221,VHS,1233426342 +46311,1222,BD-Video,1308501583 +46311,1222,Betamax,1233422059 +46311,1222,DVD-Video,1238259576 +46311,1223,CAV,1233429548 +46311,1224,CLV,1339262067 +46311,1225,70mm,1143135590 +46311,1225,Anamorphic Blow-Up,1237142598 +46311,1225,DVD-Video,1143401894 +46311,1226,BD-R,1440277576 +46311,1226,DVD-R,1237823158 +46311,1227,Betamax,1237600434 +46311,1227,CLV,1406936978 +46311,1228,Betamax,1237823679 +46311,1228,CAV,1237823679 +46311,1230,DVD-Video,1143404500 +46311,1231,70mm,1143135422 +46311,1231,Betamax,1237826670 +46311,1231,DVD-Video,1237826695 +46311,1231,Spherical Blow-Up,1237142289 +46311,1233,70mm,1440873703 +46311,1233,BD-Video,1440873704 +46311,1233,Betamax,1182716324 +46311,1233,DVD-Video,1182716845 +46311,1234,BD-R,1344530306 +46311,1235,Betamax,1233433180 +46311,1235,DVD-Video,1233433180 +46311,1236,CLV,1238345945 +46311,1237,CLV,1238182050 +46311,1237,DVD-Video,1198456063 +46311,1238,Betamax,1237133625 +46311,1238,CLV,1237133625 +46311,1238,DVD-Video,1237133625 +46311,1240,BD-Video,1443312516 +46311,1240,CLV,1238267583 +46311,1241,DVD-Video,1185673961 +46311,1242,70mm,1426365559 +46311,1242,BD-R,1426365559 +46311,1242,CLV,1233426154 +46311,1242,Spherical Blow-Up,1426365559 +46311,1244,Betamax,1237227864 +46311,1244,DVD-Video,1237227864 +46311,1246,70mm,1363459440 +46311,1246,BD-R,1363459440 +46311,1246,Spherical Blow-Up,1363459440 +46311,1247,Betamax,1233429327 +46311,1247,DVD-Video,1233429339 +46311,1248,BD-R,1323566828 +46311,1248,VHS,1238343664 +46311,1249,DVD-Video,1233076503 +46311,1250,70mm,1290881884 +46311,1250,Anamorphic Blow-Up,1290881884 +46311,1250,BD-R,1290881884 +46311,1250,BD-Video,1440873675 +46311,1250,CLV,1182718490 +46311,1250,DVD-R,1182718490 +46311,1250,DVD-RAM,1182718490 +46311,1251,DVD-Video,1199042348 +46311,1252,BD-R,1385066794 +46311,1252,DVD-R,1230653760 +46311,1253,BD-Video,1319317610 +46311,1253,CLV,1185673757 +46311,1253,DVD-R,1185673757 +46311,1253,DVD-RAM,1185673757 +46311,1253,VHS,1185673757 +46311,1254,BD-R,1305223023 +46311,1255,DVD-Video,1182635058 +46311,1256,55 movies every kid should see--Entertainment Weekly,1440275476 +46311,1256,BD-R,1440275476 +46311,1256,Betamax,1197237248 +46311,1256,DVD-RAM,1274973387 +46311,1257,Betamax,1182637570 +46311,1258,BD-Video,1308501566 +46311,1258,Betamax,1238184239 +46311,1258,DVD-Video,1238259565 +46311,1259,55 movies every kid should see--Entertainment Weekly,1440873538 +46311,1259,BD-Video,1440873538 +46311,1259,DVD-Video,1238258635 +46311,1260,BD-R,1290882055 +46311,1260,DVD-Video,1198455875 +46311,1260,VHS,1237226249 +46311,1261,BD-Video,1383506181 +46311,1261,Betamax,1206384012 +46311,1261,DVD-RAM,1242916391 +46311,1262,CLV,1406940490 +46311,1263,70mm,1142799602 +46311,1263,Anamorphic Blow-Up,1237214691 +46311,1264,Betamax,1186882049 +46311,1264,CLV,1274975335 +46311,1264,DVD-R,1186882049 +46311,1265,DVD-Video,1233431000 +46311,1266,BD-Video,1405197691 +46311,1266,CLV,1339094188 +46311,1266,VHS,1238347732 +46311,1267,BD-R,1323567347 +46311,1267,Betamax,1237227825 +46311,1267,CLV,1406940582 +46311,1269,BD-R,1369940906 +46311,1270,55 movies every kid should see--Entertainment Weekly,1407083765 +46311,1270,70mm,1306093364 +46311,1270,BD-Video,1413056868 +46311,1270,CLV,1339258557 +46311,1270,Spherical Blow-Up,1306093364 +46311,1272,70mm,1293763871 +46311,1272,BD-Video,1294519502 +46311,1272,Dimension-150,1293763871 +46311,1272,DVD-R,1237745436 +46311,1272,DVD-Video,1237745436 +46311,1274,CLV,1172527090 +46311,1274,VHS,1143320923 +46311,1275,70mm,1339262110 +46311,1275,BD-Video,1413051804 +46311,1275,Betamax,1234037232 +46311,1275,CLV,1339262109 +46311,1276,BD-R,1357843977 +46311,1276,Betamax,1185127517 +46311,1277,DVD-Video,1185670885 +46311,1278,55 movies every kid should see--Entertainment Weekly,1407083789 +46311,1278,BD-Video,1390857034 +46311,1278,Betamax,1239034530 +46311,1278,CLV,1274985045 +46311,1278,DVD-Video,1239034530 +46311,1281,BD-R,1293762251 +46311,1281,CLV,1233430046 +46311,1282,70mm,1274976876 +46311,1282,CAV,1233075331 +46311,1282,CLV,1233075331 +46311,1282,Spherical Blow-Up,1237210068 +46311,1283,VHS,1234036075 +46311,1284,BD-R,1376238531 +46311,1284,CLV,1230594067 +46311,1285,Betamax,1233434003 +46311,1285,CLV,1233434003 +46311,1286,DVD-Video,1238256733 +46311,1287,70mm,1331230413 +46311,1287,BD-Video,1331230413 +46311,1287,DVD-R,1230593453 +46311,1287,DVD-RAM,1230593453 +46311,1287,MGM Camera 65,1331230413 +46311,1288,Betamax,1238268924 +46311,1288,DVD-Video,1238268924 +46311,1289,BD-Video,1437942708 +46311,1289,DVD-R,1237052092 +46311,1289,DVD-RAM,1237052092 +46311,1290,Betamax,1238256582 +46311,1291,70mm,1355600632 +46311,1291,Anamorphic Blow-Up,1355600632 +46311,1291,BD-Video,1355600632 +46311,1291,CLV,1236614788 +46311,1292,BD-R,1299181765 +46311,1292,Betamax,1182637099 +46311,1293,70mm,1392664557 +46311,1293,Anamorphic Blow-Up,1392664557 +46311,1293,BD-R,1392664557 +46311,1293,BD-Video,1440873331 +46311,1295,CLV,1403549209 +46311,1296,BD-R,1319912323 +46311,1296,Betamax,1237828092 +46311,1296,CLV,1427736686 +46311,1297,Betamax,1237824586 +46311,1297,DVD-Video,1237824586 +46311,1298,70mm,1142801384 +46311,1298,Anamorphic Blow-Up,1237215667 +46311,1298,Betamax,1237749086 +46311,1299,Betamax,1237048991 +46311,1300,BD-R,1403546779 +46311,1300,Betamax,1237574477 +46311,1300,DVD-RAM,1242916067 +46311,1301,BD-R,1357844267 +46311,1301,CLV,1233084284 +46311,1301,DVD-R,1233084283 +46311,1301,DVD-RAM,1233084284 +46311,1302,BD-R,1416586529 +46311,1302,CLV,1233076709 +46311,1303,CLV,1237227691 +46311,1303,DVD-Video,1237227691 +46311,1303,VHS,1237227691 +46311,1304,BD-R,1399572831 +46311,1304,CLV,1274975752 +46311,1305,BD-R,1422063134 +46311,1305,Betamax,1237745084 +46311,1306,VHS,1238347933 +46311,1307,BD-Video,1367687505 +46311,1307,CLV,1339263806 +46311,1312,DVD-RAM,1369333180 +46311,1317,CLV,1427732721 +46311,1320,70mm,1274985157 +46311,1320,Anamorphic Blow-Up,1274985157 +46311,1320,CLV,1339091251 +46311,1320,PAL VHS,1274985157 +46311,1321,BD-Video,1434846806 +46311,1321,Betamax,1143403472 +46311,1321,CLV,1339258511 +46311,1321,DVD-Video,1349545630 +46311,1321,VHS,1143403482 +46311,1323,ArriVision,1306603368 +46311,1323,Betamax,1143403598 +46311,1323,Stereoscopic 3-D,1306603368 +46311,1329,VHS,1143403994 +46311,1332,Betamax,1182637147 +46311,1333,Betamax,1182713893 +46311,1333,CLV,1182713893 +46311,1333,DVD-Video,1308504536 +46311,1334,BD-R,1311267407 +46311,1334,DVD-R,1182715655 +46311,1334,DVD-RAM,1182715655 +46311,1335,Betamax,1182715751 +46311,1337,BD-R,1289493938 +46311,1339,BD-Video,1306084248 +46311,1339,CAV,1182717464 +46311,1339,CLV,1182717464 +46311,1340,DVD-R,1182718256 +46311,1340,DVD-RAM,1182718256 +46311,1340,DVD-Video,1308504748 +46311,1341,BD-R,1418405760 +46311,1341,DVD-RAM,1274972207 +46311,1342,CLV,1183247197 +46311,1343,CLV,1339091685 +46311,1344,BD-R,1334860215 +46311,1345,BD-Video,1415478131 +46311,1345,CLV,1361820393 +46311,1346,Betamax,1184463004 +46311,1346,CLV,1417456027 +46311,1347,CLV,1339262713 +46311,1347,DVD-Video,1318181199 +46311,1348,BD-R,1289496617 +46311,1348,DVD-Video,1206386260 +46311,1350,CLV,1406937295 +46311,1352,CLV,1437071389 +46311,1356,BD-Video,1339701556 +46311,1356,CLV,1339263478 +46311,1358,BD-Video,1354398228 +46311,1359,CLV,1406936581 +46311,1363,CLV,1417464510 +46311,1367,70mm,1274982100 +46311,1367,Anamorphic Blow-Up,1274982100 +46311,1370,70mm,1143141757 +46311,1370,Anamorphic Blow-Up,1237209990 +46311,1370,CLV,1186880027 +46311,1371,70mm,1406940791 +46311,1371,BD-Video,1418405529 +46311,1371,Betamax,1238260479 +46311,1371,CLV,1406940791 +46311,1372,70mm,1418405688 +46311,1372,BD-Video,1418405688 +46311,1372,DVD-Video,1238260462 +46311,1372,Super-35 Blow-Up,1418405688 +46311,1373,70mm,1418405646 +46311,1373,Anamorphic Blow-Up,1418405646 +46311,1373,BD-Video,1418405646 +46311,1374,70mm,1418405575 +46311,1374,Anamorphic Blow-Up,1418405575 +46311,1374,BD-Video,1418405575 +46311,1374,Betamax,1238260396 +46311,1374,DVD-Video,1238260396 +46311,1375,70mm,1339263435 +46311,1375,Anamorphic Blow-Up,1339263435 +46311,1375,BD-Video,1418405606 +46311,1375,Betamax,1238260414 +46311,1375,CLV,1339263435 +46311,1376,70mm,1339263459 +46311,1376,Anamorphic Blow-Up,1339263459 +46311,1376,BD-Video,1418405620 +46311,1376,Betamax,1238260445 +46311,1376,CLV,1339263459 +46311,1377,CLV,1182636264 +46311,1380,70mm,1142799651 +46311,1380,Anamorphic Blow-Up,1237140499 +46311,1380,BD-Video,1413055303 +46311,1380,Betamax,1233429987 +46311,1381,70mm,1142801275 +46311,1381,Anamorphic Blow-Up,1237141513 +46311,1381,Betamax,1233429993 +46311,1382,CLV,1407019178 +46311,1384,CLV,1426531959 +46311,1385,CLV,1238347421 +46311,1386,BD-R,1437071298 +46311,1387,Betamax,1236619479 +46311,1387,DVD-Video,1236619479 +46311,1388,Betamax,1236619508 +46311,1389,ArriVision,1306603321 +46311,1389,Stereoscopic 3-D,1306603321 +46311,1391,DVD-Video,1237228493 +46311,1393,CLV,1339092822 +46311,1394,BD-Video,1381436144 +46311,1394,Betamax,1237823806 +46311,1394,CLV,1339263011 +46311,1396,DVD-Video,1238187290 +46311,1401,CLV,1406936217 +46311,1405,CLV,1417454590 +46311,1407,BD-Video,1384455696 +46311,1407,CLV,1361819562 +46311,1408,70mm,1339092801 +46311,1408,Anamorphic Blow-Up,1339092801 +46311,1408,CLV,1339092801 +46311,1409,CLV,1406936845 +46311,1410,CLV,1421097650 +46311,1411,70mm,1333992544 +46311,1411,Panavision Super 70,1333992544 +46311,1416,CLV,1339261104 +46311,1419,BD-R,1360442548 +46311,1422,CLV,1417463580 +46311,1427,CLV,1238346129 +46311,1429,CLV,1406936099 +46311,1432,CLV,1417463461 +46311,1438,CAV,1403549313 +46311,1438,CLV,1339259661 +46311,1441,CLV,1426527474 +46311,1441,DVD-Video,1182637307 +46311,1449,CLV,1427743379 +46311,1458,CLV,1427743044 +46311,1459,CLV,1417383740 +46311,1461,CLV,1406940900 +46311,1463,CLV,1437071505 +46311,1466,DVD-Video,1187485261 +46311,1468,CLV,1406933819 +46311,1475,DVD-RAM,1245338037 +46311,1476,CLV,1417464656 +46311,1479,CLV,1406940716 +46311,1485,CLV,1417462875 +46311,1497,CLV,1417458564 +46311,1498,DVD-Video,1236615741 +46311,1500,CLV,1406936234 +46311,1503,CLV,1375040209 +46311,1515,CLV,1417808598 +46311,1517,BD-Video,1384455123 +46311,1517,DVD-Video,1318181276 +46311,1520,CLV,1427739454 +46311,1527,DVD-Video,1233076748 +46311,1533,BD-R,1357842201 +46311,1534,BD-R,1427571905 +46311,1537,CLV,1238182584 +46311,1542,CLV,1421097222 +46311,1544,70mm,1142790606 +46311,1544,CLV,1237225564 +46311,1552,CLV,1417456902 +46311,1561,CLV,1430148239 +46311,1562,CLV,1339258592 +46311,1569,CLV,1339262601 +46311,1572,BD-R,1383506336 +46311,1572,DVD-RAM,1230654673 +46311,1573,DVD-Video,1206387390 +46311,1580,BD-Video,1413055161 +46311,1580,CLV,1237230106 +46311,1581,CLV,1421093492 +46311,1584,BD-Video,1328042068 +46311,1584,CLV,1185069707 +46311,1584,DVD-Video,1185069707 +46311,1587,CLV,1421096264 +46311,1588,CLV,1339261617 +46311,1589,CLV,1417457091 +46311,1591,CLV,1403548508 +46311,1596,CLV,1426527305 +46311,1601,CLV,1406940509 +46311,1603,CLV,1352061334 +46311,1605,DVD-Video,1206384290 +46311,1610,70mm,1440873807 +46311,1610,Anamorphic Blow-Up,1440873807 +46311,1610,BD-Video,1440873807 +46311,1610,DVD-Video,1234040430 +46311,1612,CLV,1421098456 +46311,1614,CLV,1339262186 +46311,1614,VHS,1236610811 +46311,1615,CLV,1406935854 +46311,1615,DVD-Video,1328042711 +46311,1617,DVD-Video,1237052331 +46311,1625,BD-Video,1364059993 +46311,1626,CLV,1406936065 +46311,1635,DVD-Video,1236610329 +46311,1641,CLV,1339261494 +46311,1645,CLV,1339259788 +46311,1653,CLV,1233423780 +46311,1660,DVD-Video,1232746612 +46311,1661,CLV,1403548361 +46311,1663,CLV,1339263500 +46311,1665,CLV,1421092565 +46311,1668,DVD-RAM,1350842635 +46311,1673,DVD-Video,1318181302 +46311,1674,Betamax,1239033101 +46311,1674,DVD-Video,1239033101 +46311,1678,CLV,1406936599 +46311,1680,DVD-Video,1238186801 +46311,1682,CLV,1339263724 +46311,1687,CLV,1406936467 +46311,1688,BD-Video,1422063638 +46311,1690,DVD-Video,1143321230 +46311,1693,BD-R,1360441294 +46311,1694,DVD-Video,1181421577 +46311,1701,DVD-Video,1186262366 +46311,1704,BD-Video,1413055116 +46311,1711,BD-R,1339090471 +46311,1711,CLV,1406936871 +46311,1717,BD-Video,1384455706 +46311,1719,DVD-Video,1238264367 +46311,1721,55 movies every kid should see--Entertainment Weekly,1407084136 +46311,1721,70mm,1369077825 +46311,1721,CLV,1238341448 +46311,1721,Dimensionalized 2-D to 3-D for reissue in 2012,1369326924 +46311,1721,IMAX DMR 3-D reissue in 2012,1369077825 +46311,1721,Super-35 Blow-Up,1369077825 +46311,1722,70mm,1390854046 +46311,1722,Anamorphic Blow-Up,1390854046 +46311,1722,BD-Video,1390854047 +46311,1729,CLV,1406936482 +46311,1732,BD-Video,1434846825 +46311,1744,CLV,1417459750 +46311,1747,DVD-Video,1318181333 +46311,1748,DVD-Video,1185672405 +46311,1767,CLV,1427740719 +46311,1770,BD-R,1370542211 +46311,1770,DVD-R,1181423570 +46311,1770,DVD-RAM,1181423571 +46311,1777,DVD-Video,1318181362 +46311,1785,CLV,1403548113 +46311,1799,DVD-Video,1238263416 +46311,1805,DVD-RAM,1310658047 +46311,1816,DVD-Video,1238346854 +46311,1831,BD-Video,1422063691 +46311,1831,CLV,1375041096 +46311,1834,DVD-Video,1238257377 +46311,1837,CLV,1430148043 +46311,1844,BD-R,1317587279 +46311,1848,BD-R,1333644628 +46311,1876,BD-Video,1413055244 +46311,1882,70mm,1375040416 +46311,1882,CLV,1375040415 +46311,1882,Super-35 Blow-Up,1375040416 +46311,1883,CLV,1406933858 +46311,1884,BD-Video,1434846780 +46311,1884,DVD-Video,1233076250 +46311,1890,BD-R,1370542254 +46311,1894,CLV,1375042382 +46311,1907,70mm,1142790426 +46311,1907,Super-35 Blow-Up,1237219259 +46311,1913,BD-R,1293761425 +46311,1913,DVD-RAM,1289496363 +46311,1917,70mm,1142790471 +46311,1921,DVD-Video,1239034903 +46311,1924,CLV,1198448143 +46311,1924,DVD-RAM,1237749967 +46311,1925,BD-R,1369940495 +46311,1925,DVD-RAM,1238355101 +46311,1926,BD-R,1363291424 +46311,1926,CLV,1369337213 +46311,1927,BD-R,1311265766 +46311,1928,BD-R,1426361808 +46311,1929,BD-R,1357844071 +46311,1931,BD-R,1332441245 +46311,1931,Betamax,1237574090 +46311,1932,BD-R,1299180899 +46311,1933,BD-R,1413054752 +46311,1934,BD-R,1306443458 +46311,1934,VHS,1239034441 +46311,1935,BD-R,1370541790 +46311,1936,BD-R,1426361976 +46311,1938,DVD-R,1237225523 +46311,1938,DVD-RAM,1237225523 +46311,1939,BD-R,1352398051 +46311,1939,CLV,1369939891 +46311,1940,BD-R,1403545895 +46311,1941,DVD-Video,1233432613 +46311,1942,BD-R,1323567401 +46311,1943,CLV,1369939940 +46311,1944,BD-R,1330292696 +46311,1945,BD-R,1343327114 +46311,1946,BD-R,1293762474 +46311,1946,Betamax,1237228679 +46311,1947,55 movies every kid should see--Entertainment Weekly,1407083555 +46311,1947,70mm,1296679973 +46311,1947,DVD-Video,1238351858 +46311,1947,Super Panavision 70,1296679973 +46311,1948,BD-R,1396551149 +46311,1948,CLV,1238342820 +46311,1949,BD-R,1437072279 +46311,1950,BD-R,1401999515 +46311,1951,70mm,1396550500 +46311,1951,Anamorphic Blow-Up,1396550500 +46311,1951,BD-R,1396550500 +46311,1951,DVD-R,1237600098 +46311,1952,DVD-Video,1237230465 +46311,1953,BD-Video,1405197432 +46311,1953,Betamax,1233085838 +46311,1953,CLV,1274975214 +46311,1954,CLV,1375043009 +46311,1955,BD-R,1437071155 +46311,1955,Betamax,1237052179 +46311,1956,Betamax,1237601243 +46311,1956,CLV,1369333246 +46311,1957,70mm,1389556406 +46311,1957,BD-R,1426365481 +46311,1957,Betamax,1230653395 +46311,1957,CLV,1403549186 +46311,1958,Betamax,1238267623 +46311,1958,DVD-Video,1238267623 +46311,1959,70mm,1389563924 +46311,1959,BD-R,1416587142 +46311,1959,Spherical Blow-Up,1389563927 +46311,1960,70mm,1143139157 +46311,1960,Anamorphic Blow-Up,1237208293 +46311,1960,Betamax,1237053689 +46311,1960,DVD-Video,1237053689 +46311,1961,DVD-Video,1237823751 +46311,1962,DVD-Video,1197236970 +46311,1963,Betamax,1238264943 +46311,1964,BD-R,1392663458 +46311,1964,CLV,1237051209 +46311,1965,DVD-Video,1237825824 +46311,1965,VHS,1237825824 +46311,1966,BD-R,1414264784 +46311,1967,BD-R,1309023334 +46311,1967,Betamax,1237052436 +46311,1968,Betamax,1182717847 +46311,1968,DVD-Video,1182717847 +46311,1969,Betamax,1237578263 +46311,1973,Anaglyphic 3-D sequences,1306603714 +46311,1976,3-Depix,1306603081 +46311,1976,Stereoscopic 3-D,1306603081 +46311,1980,Betamax,1233420445 +46311,1982,CAV,1233432425 +46311,1983,Betamax,1233432469 +46311,1984,Betamax,1233432478 +46311,1987,Betamax,1237822210 +46311,1987,CLV,1361819271 +46311,1994,70mm,1142801406 +46311,1994,Anamorphic Blow-Up,1237141433 +46311,1994,DVD-Video,1237750554 +46311,1996,Betamax,1237750569 +46311,1997,70mm,1352063335 +46311,1997,CLV,1352063334 +46311,1997,Spherical Blow-Up,1352063335 +46311,2000,70mm,1143139179 +46311,2000,CLV,1237055295 +46311,2000,Spherical Blow-Up,1237208071 +46311,2001,70mm,1339092880 +46311,2001,Anamorphic Blow-Up,1339092880 +46311,2001,Betamax,1237055331 +46311,2001,CLV,1339092880 +46311,2002,70mm,1143142808 +46311,2002,Anamorphic Blow-Up,1237210476 +46311,2003,70mm,1384455556 +46311,2003,BD-Video,1384455556 +46311,2003,Betamax,1233430567 +46311,2003,DVD-Video,1233430612 +46311,2003,Spherical Blow-Up,1384455556 +46311,2004,70mm,1384455575 +46311,2004,BD-Video,1384455575 +46311,2004,CLV,1352060313 +46311,2004,DVD-Video,1233430576 +46311,2004,Spherical Blow-Up,1384455575 +46311,2005,55 movies every kid should see--Entertainment Weekly,1407083495 +46311,2005,70mm,1384455520 +46311,2005,Anamorphic Blow-Up,1384455520 +46311,2005,BD-Video,1384455520 +46311,2005,DVD-Video,1233428787 +46311,2006,CLV,1237228784 +46311,2009,BD-R,1339089682 +46311,2009,Betamax,1238257165 +46311,2009,DVD-R,1238257165 +46311,2010,BD-R,1290882006 +46311,2010,BD-Video,1337881203 +46311,2010,DVD-Video,1233420991 +46311,2011,70mm,1306093375 +46311,2011,BD-Video,1413056876 +46311,2011,Betamax,1181424503 +46311,2011,CLV,1181424503 +46311,2011,Spherical Blow-Up,1306093375 +46311,2012,70mm,1306093386 +46311,2012,BD-Video,1413056884 +46311,2012,CLV,1339258569 +46311,2012,Spherical Blow-Up,1306093386 +46311,2013,70mm,1369333720 +46311,2013,Anamorphic Blow-Up,1369333720 +46311,2013,BD-R,1422063093 +46311,2013,CLV,1369333720 +46311,2018,BD-Video,1329078291 +46311,2018,Betamax,1182635435 +46311,2018,CLV,1274977743 +46311,2018,DVD-Video,1329078302 +46311,2019,CLV,1238182014 +46311,2019,DVD-Video,1280449219 +46311,2020,Betamax,1185672120 +46311,2021,70mm,1390857783 +46311,2021,Anamorphic Blow-Up,1390857784 +46311,2021,BD-Video,1426364296 +46311,2021,Betamax,1197237665 +46311,2021,CLV,1197237665 +46311,2022,70mm,1143140759 +46311,2022,Spherical Blow-Up,1237208673 +46311,2023,70mm,1440873867 +46311,2023,BD-Video,1440873867 +46311,2023,DVD-Video,1233426318 +46311,2023,Super-35 Blow-Up,1440873866 +46311,2024,CLV,1427742290 +46311,2025,DVD-Video,1237133782 +46311,2025,VHS,1237133782 +46311,2028,DVD-Video,1237829977 +46311,2033,70mm,1391008757 +46311,2033,Super Technirama 70,1391008757 +46311,2034,70mm,1142739680 +46311,2034,Anamorphic Blow-Up,1237140851 +46311,2034,Betamax,1230595366 +46311,2038,Betamax,1183313411 +46311,2040,DVD-RAM,1230654542 +46311,2043,BD-R,1429813878 +46311,2045,CLV,1417458799 +46311,2048,CAV,1233430142 +46311,2048,DVD-RAM,1342126109 +46311,2051,DVD-RAM,1290882370 +46311,2052,CLV,1427732161 +46311,2054,CLV,1430150019 +46311,2060,CLV,1311267575 +46311,2064,CLV,1403548832 +46311,2065,Betamax,1237822646 +46311,2065,DVD-Video,1237822646 +46311,2066,BD-R,1319910214 +46311,2067,70mm,1330803313 +46311,2067,Anamorphic Blow-Up,1330803313 +46311,2067,BD-Video,1330803312 +46311,2067,CLV,1187484411 +46311,2068,BD-R,1328042631 +46311,2068,VHS,1206388032 +46311,2069,Betamax,1238344978 +46311,2069,VHS,1238345002 +46311,2070,BD-R,1311267324 +46311,2070,Betamax,1238267376 +46311,2074,Betamax,1237577773 +46311,2074,DVD-R,1237577773 +46311,2074,DVD-RAM,1237577773 +46311,2075,Betamax,1237230156 +46311,2076,Betamax,1182716216 +46311,2076,CLV,1182716216 +46311,2077,Betamax,1236620623 +46311,2078,DVD-Video,1236621027 +46311,2080,BD-Video,1354398189 +46311,2080,CLV,1237052588 +46311,2080,DVD-Video,1354398189 +46311,2081,55 movies every kid should see--Entertainment Weekly,1407082656 +46311,2081,70mm,1386008366 +46311,2081,BD-Video,1386008366 +46311,2081,Betamax,1237132924 +46311,2081,CAV,1237132924 +46311,2081,Super-35 Blow-Up,1386008366 +46311,2085,CLV,1274982090 +46311,2085,VHS,1143311524 +46311,2087,BD-Video,1384454900 +46311,2087,DVD-Video,1384454900 +46311,2088,Betamax,1237750710 +46311,2088,DVD-Video,1237750710 +46311,2089,BD-Video,1422063501 +46311,2089,DVD-Video,1422063501 +46311,2090,BD-Video,1422063491 +46311,2090,DVD-Video,1422063491 +46311,2091,DVD-RAM,1277659668 +46311,2092,CLV,1237825941 +46311,2093,70mm,1143137610 +46311,2093,Betamax,1237826284 +46311,2093,Spherical Blow-Up,1237207353 +46311,2094,70mm,1339263174 +46311,2094,Anamorphic Blow-Up,1339263174 +46311,2094,CAV,1339263174 +46311,2094,CLV,1237827667 +46311,2095,DVD-R,1238182467 +46311,2096,70mm,1242916864 +46311,2096,BD-Video,1242916864 +46311,2096,CLV,1274984088 +46311,2096,DVD-Video,1313609848 +46311,2096,Super Technirama 70,1242916864 +46311,2097,Betamax,1238256653 +46311,2097,CLV,1238256653 +46311,2098,Betamax,1238256759 +46311,2099,CLV,1319913299 +46311,2100,Betamax,1238257925 +46311,2104,Betamax,1238268024 +46311,2105,70mm,1283013927 +46311,2105,BD-R,1313858977 +46311,2105,Betamax,1238345116 +46311,2105,DVD-RAM,1283013927 +46311,2105,Super Panavision 70,1283013927 +46311,2108,CLV,1403548236 +46311,2108,DVD-Video,1237052340 +46311,2109,Betamax,1236619760 +46311,2110,Betamax,1186259864 +46311,2110,CLV,1369333361 +46311,2114,Betamax,1237743105 +46311,2115,70mm,1355600614 +46311,2115,Anamorphic Blow-Up,1355600614 +46311,2115,BD-Video,1355600614 +46311,2116,BD-R,1443313120 +46311,2117,VHS,1230586717 +46311,2119,BD-R,1426360395 +46311,2119,Betamax,1237229176 +46311,2121,Betamax,1185670538 +46311,2124,CLV,1417384971 +46311,2125,BD-Video,1396552365 +46311,2126,VHS,1238187229 +46311,2130,Betamax,1181422677 +46311,2130,CLV,1426525615 +46311,2131,BD-R,1339958666 +46311,2131,CLV,1430156104 +46311,2132,BD-R,1295723278 +46311,2133,70mm,1426362272 +46311,2133,BD-R,1426362272 +46311,2133,Betamax,1143319739 +46311,2133,Spherical Blow-Up,1426362272 +46311,2134,Betamax,1238351712 +46311,2135,70mm,1296679426 +46311,2135,BD-R,1383506359 +46311,2135,DVD-R,1187483995 +46311,2135,DVD-RAM,1187483995 +46311,2135,Todd-AO,1296679426 +46311,2136,BD-R,1413056759 +46311,2137,Betamax,1184518915 +46311,2138,VHS,1238351370 +46311,2139,BD-Video,1426364732 +46311,2139,Betamax,1238181148 +46311,2139,DVD-Video,1238181148 +46311,2140,70mm,1309023303 +46311,2140,Anamorphic Blow-Up,1309023303 +46311,2140,BD-R,1309023303 +46311,2140,Betamax,1185672440 +46311,2143,BD-Video,1440873207 +46311,2143,Betamax,1237054837 +46311,2145,Betamax,1237821707 +46311,2146,CLV,1437071552 +46311,2147,70mm,1306615291 +46311,2147,Anamorphic Blow-Up,1306615291 +46311,2147,Betamax,1184524118 +46311,2147,DVD-Video,1184524118 +46311,2148,Betamax,1234038731 +46311,2149,Betamax,1234038780 +46311,2150,Betamax,1233426375 +46311,2159,Betamax,1234035620 +46311,2160,BD-Video,1364059968 +46311,2160,Betamax,1237828241 +46311,2160,DVD-Video,1237828241 +46311,2161,BD-Video,1405197750 +46311,2161,Betamax,1237577118 +46311,2161,DVD-Video,1237577118 +46311,2163,Betamax,1181422811 +46311,2163,VHS,1181422811 +46311,2167,BD-Video,1373683761 +46311,2173,VHS,1359927176 +46311,2174,BD-Video,1384455456 +46311,2174,DVD-Video,1182636976 +46311,2176,Betamax,1237828197 +46311,2176,CLV,1237828197 +46311,2176,DVD-Video,1308504440 +46311,2177,DVD-Video,1308504604 +46311,2178,DVD-Video,1308504590 +46311,2179,Betamax,1238343497 +46311,2179,DVD-Video,1308504577 +46311,2180,DVD-Video,1308504564 +46311,2181,DVD-Video,1308504549 +46311,2182,BD-R,1355600837 +46311,2182,DVD-RAM,1253199487 +46311,2183,Betamax,1237227577 +46311,2183,DVD-RAM,1254510219 +46311,2183,DVD-Video,1308504491 +46311,2183,VistaVision,1254510219 +46311,2184,BD-R,1381080582 +46311,2184,Betamax,1238345186 +46311,2184,DVD-RAM,1254509859 +46311,2184,DVD-Video,1308504475 +46311,2184,VistaVision,1254509860 +46311,2185,BD-R,1366316561 +46311,2185,CLV,1234040585 +46311,2186,BD-R,1311267381 +46311,2187,BD-R,1311267354 +46311,2193,70mm,1143141057 +46311,2193,Anamorphic Blow-Up,1237208559 +46311,2193,Betamax,1238354858 +46311,2193,CLV,1238354858 +46311,2194,70mm,1386010886 +46311,2194,Anamorphic Blow-Up,1386010886 +46311,2194,CLV,1238347989 +46311,2200,BD-R,1330292462 +46311,2202,BD-R,1382746148 +46311,2203,DVD-Video,1308504427 +46311,2204,DVD-Video,1308504386 +46311,2205,BD-R,1382747566 +46311,2205,CLV,1237572656 +46311,2206,BD-R,1331229196 +46311,2207,BD-R,1445022890 +46311,2207,DVD-Video,1366479475 +46311,2208,BD-R,1415477796 +46311,2208,DVD-Video,1198455815 +46311,2209,DVD-Video,1366479964 +46311,2210,DVD-Video,1237829004 +46311,2211,DVD-Video,1237829019 +46311,2212,DVD-Video,1366479987 +46311,2214,BD-R,1381080556 +46311,2214,DVD-Video,1366482418 +46311,2215,BD-R,1382747291 +46311,2215,DVD-Video,1366481611 +46311,2216,DVD-Video,1366481878 +46311,2218,DVD-Video,1366482732 +46311,2219,BD-R,1379791429 +46311,2220,BD-R,1382746167 +46311,2220,DVD-Video,1366482746 +46311,2221,BD-R,1367087548 +46311,2221,DVD-Video,1366479949 +46311,2222,DVD-Video,1366482711 +46311,2223,BD-R,1381435660 +46311,2223,DVD-Video,1366480062 +46311,2225,DVD-Video,1366481802 +46311,2226,BD-R,1381080215 +46311,2226,DVD-Video,1366479927 +46311,2227,BD-R,1380471846 +46311,2227,DVD-Video,1366480046 +46311,2240,Betamax,1237574270 +46311,2241,Betamax,1185054797 +46311,2242,Betamax,1233429739 +46311,2243,Betamax,1183236084 +46311,2243,DVD-Video,1183236084 +46311,2245,CLV,1417810462 +46311,2247,Betamax,1237228445 +46311,2247,CLV,1352064514 +46311,2248,BD-Video,1381436129 +46311,2248,Betamax,1237830004 +46311,2248,DVD-Video,1237830004 +46311,2252,CLV,1417461266 +46311,2253,CLV,1339094140 +46311,2255,Betamax,1239034507 +46311,2256,Betamax,1237744793 +46311,2256,Stereoscopic 3-D,1306603028 +46311,2256,StereoVision,1306603028 +46311,2257,Betamax,1237578614 +46311,2259,Betamax,1182714348 +46311,2260,Betamax,1238355418 +46311,2261,Betamax,1237600526 +46311,2261,VHS,1237600526 +46311,2262,Betamax,1143319451 +46311,2262,DVD-Video,1172525967 +46311,2263,CLV,1417814168 +46311,2266,CLV,1421097489 +46311,2267,CLV,1407019225 +46311,2268,BD-Video,1373683628 +46311,2268,CLV,1233076612 +46311,2269,BD-Video,1415478056 +46311,2269,CLV,1406936447 +46311,2273,DVD-Video,1318181378 +46311,2282,BD-R,1342898429 +46311,2283,70mm,1143142172 +46311,2283,Super-35 Blow-Up,1237218644 +46311,2287,BD-R,1298140270 +46311,2287,Betamax,1238268325 +46311,2288,70mm,1339263603 +46311,2288,Anamorphic Blow-Up,1339263604 +46311,2288,Betamax,1238268622 +46311,2288,CLV,1339263603 +46311,2289,CLV,1237750181 +46311,2289,DVD-Video,1318181215 +46311,2290,DVD-Video,1238260826 +46311,2291,55 movies every kid should see--Entertainment Weekly,1407083815 +46311,2291,70mm,1306084288 +46311,2291,BD-Video,1407083816 +46311,2291,Cinema Digital Sound,1306084288 +46311,2291,DVD-Video,1198449391 +46311,2291,Spherical Blow-Up,1306084288 +46311,2294,DVD-Video,1143404572 +46311,2300,BD-R,1365878103 +46311,2300,DVD-R,1237822126 +46311,2300,DVD-RAM,1237822126 +46311,2301,Betamax,1234037555 +46311,2302,CLV,1417817553 +46311,2303,DVD-Video,1237576519 +46311,2311,70mm,1300993448 +46311,2311,Anamorphic Blow-Up,1300993448 +46311,2311,BD-R,1300993448 +46311,2311,BD-Video,1328042052 +46311,2312,Betamax,1184519947 +46311,2313,BD-R,1387067318 +46311,2313,CLV,1369333384 +46311,2313,DVD-R,1198451197 +46311,2314,BD-R,1396550448 +46311,2324,BD-R,1427571380 +46311,2325,DVD-R,1237601293 +46311,2325,DVD-RAM,1237601293 +46311,2329,DVD-Video,1143402541 +46311,2344,Betamax,1237828682 +46311,2344,CLV,1237828682 +46311,2345,VHS,1186877900 +46311,2346,BD-R,1390856928 +46311,2347,Betamax,1237750685 +46311,2347,CLV,1430155081 +46311,2348,Betamax,1238185795 +46311,2349,Betamax,1237231895 +46311,2351,BD-R,1330292619 +46311,2352,BD-R,1426365498 +46311,2359,DVD-Video,1238350759 +46311,2361,CLV,1339262847 +46311,2361,DVD-R,1237749066 +46311,2361,DVD-Video,1318119545 +46311,2362,CLV,1198448308 +46311,2363,BD-R,1309023648 +46311,2364,Betamax,1233426864 +46311,2365,BD-Video,1426364324 +46311,2366,DVD-R,1237050168 +46311,2366,DVD-RAM,1237050168 +46311,2366,DVD-Video,1237050168 +46311,2367,70mm,1331229909 +46311,2367,BD-R,1331229909 +46311,2367,Betamax,1237050241 +46311,2369,Betamax,1186877991 +46311,2370,70mm,1143137275 +46311,2370,Anamorphic Blow-Up,1237207386 +46311,2370,Betamax,1198452039 +46311,2372,Betamax,1233083648 +46311,2373,Betamax,1237825042 +46311,2374,Betamax,1233431125 +46311,2375,70mm,1403548713 +46311,2375,Betamax,1237231942 +46311,2375,CLV,1403548713 +46311,2375,Spherical Blow-Up,1403548713 +46311,2376,BD-Video,1390853967 +46311,2376,Betamax,1238350109 +46311,2376,CLV,1238350109 +46311,2376,VHS,1238350109 +46311,2377,70mm,1329077715 +46311,2377,Anamorphic Blow-Up,1329077715 +46311,2377,BD-R,1329077715 +46311,2379,Betamax,1237750424 +46311,2380,Betamax,1237750430 +46311,2381,Betamax,1237750436 +46311,2382,Betamax,1237750442 +46311,2393,BD-Video,1339701573 +46311,2396,BD-R,1427571401 +46311,2397,CLV,1430151792 +46311,2398,55 movies every kid should see--Entertainment Weekly,1407082948 +46311,2398,BD-Video,1415479860 +46311,2398,CLV,1237231210 +46311,2399,70mm,1143137782 +46311,2399,Anamorphic Blow-Up,1237207636 +46311,2399,Betamax,1237829467 +46311,2401,BD-R,1373139005 +46311,2402,70mm,1417459285 +46311,2402,Anamorphic Blow-Up,1417459285 +46311,2402,Betamax,1237823877 +46311,2402,CLV,1417459285 +46311,2403,BD-Video,1415477937 +46311,2403,CLV,1339261386 +46311,2404,Betamax,1237823856 +46311,2405,Betamax,1236619901 +46311,2406,BD-Video,1415477915 +46311,2407,70mm,1363291302 +46311,2407,BD-R,1363291302 +46311,2407,CLV,1417811730 +46311,2407,Spherical Blow-Up,1363291302 +46311,2408,70mm,1143139717 +46311,2408,Spherical Blow-Up,1237208733 +46311,2410,70mm,1142802479 +46311,2410,Spherical Blow-Up,1237141417 +46311,2411,70mm,1143137658 +46311,2411,Betamax,1237827849 +46311,2411,Spherical Blow-Up,1237207613 +46311,2412,CLV,1375043186 +46311,2413,BD-Video,1405197823 +46311,2413,Betamax,1185055784 +46311,2414,70mm,1421096699 +46311,2414,Betamax,1239034628 +46311,2414,CLV,1421096698 +46311,2414,Spherical Blow-Up,1421096699 +46311,2415,Betamax,1238350189 +46311,2415,CLV,1430158263 +46311,2416,Betamax,1181424427 +46311,2417,Betamax,1233433659 +46311,2419,Betamax,1206384709 +46311,2420,55 movies every kid should see--Entertainment Weekly,1407083864 +46311,2421,Betamax,1236621285 +46311,2423,BD-Video,1415479977 +46311,2423,CLV,1407019287 +46311,2427,DVD-Video,1238268580 +46311,2430,DVD-R,1237230670 +46311,2430,DVD-RAM,1237230670 +46311,2430,DVD-Video,1237050297 +46311,2433,CLV,1421088851 +46311,2449,Betamax,1233422846 +46311,2450,70mm,1309117793 +46311,2450,Betamax,1234039496 +46311,2450,Spherical Blow-Up,1309117793 +46311,2451,Betamax,1233423730 +46311,2453,Betamax,1182717162 +46311,2454,BD-R,1437074291 +46311,2455,Betamax,1233083848 +46311,2455,CLV,1361819686 +46311,2456,Betamax,1233083804 +46311,2457,CLV,1421103308 +46311,2458,Betamax,1143404746 +46311,2459,Betamax,1238268070 +46311,2459,CLV,1238268070 +46311,2460,Betamax,1238268056 +46311,2465,Betamax,1186260078 +46311,2467,70mm,1406940647 +46311,2467,Betamax,1237576383 +46311,2467,CLV,1406940647 +46311,2468,Betamax,1236620841 +46311,2469,Betamax,1237745579 +46311,2469,DVD-Video,1237745579 +46311,2470,CLV,1185670112 +46311,2472,70mm,1143138956 +46311,2472,Anamorphic Blow-Up,1237207912 +46311,2473,Betamax,1238256939 +46311,2474,70mm,1363459495 +46311,2474,BD-R,1363459495 +46311,2474,Spherical Blow-Up,1363459495 +46311,2475,Betamax,1143312338 +46311,2476,Betamax,1233433601 +46311,2476,CLV,1407019065 +46311,2477,Betamax,1233077141 +46311,2477,CLV,1403548601 +46311,2488,BD-R,1415477755 +46311,2488,CLV,1369334061 +46311,2488,DVD-R,1237745551 +46311,2488,DVD-RAM,1237745551 +46311,2495,VHS,1233075618 +46311,2502,DVD-Video,1237579990 +46311,2511,BD-R,1437071990 +46311,2517,Betamax,1184520638 +46311,2519,BD-R,1289493782 +46311,2519,DVD-Video,1366479348 +46311,2520,70mm,1296679531 +46311,2520,BD-R,1427571664 +46311,2520,CLV,1406941080 +46311,2520,Todd-AO,1296679531 +46311,2522,CLV,1406941095 +46311,2523,BD-R,1394313534 +46311,2523,Sensurround,1394313534 +46311,2524,70mm,1369939763 +46311,2524,Anamorphic Blow-Up,1369939763 +46311,2524,CLV,1369939763 +46311,2525,Betamax,1143321582 +46311,2526,DVD-RAM,1254510083 +46311,2527,BD-R,1339089662 +46311,2527,DVD-R,1238351878 +46311,2527,DVD-RAM,1238351878 +46311,2528,70mm,1332441185 +46311,2528,Anamorphic Blow-Up,1332441185 +46311,2528,BD-R,1332441185 +46311,2528,BD-Video,1426364808 +46311,2528,Betamax,1237133672 +46311,2529,BD-Video,1240593984 +46311,2529,DVD-RAM,1237750052 +46311,2529,VHS,1237750052 +46311,2530,BD-Video,1240594003 +46311,2530,DVD-RAM,1230593504 +46311,2531,BD-Video,1240594025 +46311,2531,DVD-RAM,1230593019 +46311,2532,BD-Video,1240594018 +46311,2532,DVD-RAM,1230654585 +46311,2533,BD-Video,1240594009 +46311,2533,DVD-RAM,1232745591 +46311,2535,70mm,1406935750 +46311,2535,BD-R,1433636761 +46311,2535,Betamax,1197239558 +46311,2535,CLV,1406935750 +46311,2535,Sensurround,1433636761 +46311,2537,BD-R,1437071741 +46311,2542,DVD-Video,1237133651 +46311,2550,BD-R,1354828576 +46311,2550,DVD-RAM,1233433304 +46311,2551,Betamax,1186259938 +46311,2551,CLV,1417811820 +46311,2553,BD-R,1354397843 +46311,2553,DVD-R,1238350166 +46311,2553,DVD-RAM,1238350166 +46311,2554,BD-R,1376239495 +46311,2565,70mm,1402582109 +46311,2565,CinemaScope 55,1402582106 +46311,2565,CLV,1237049218 +46311,2571,DVD-Video,1237229014 +46311,2594,DVD-Video,1237601103 +46311,2599,BD-R,1319910167 +46311,2600,DVD-Video,1206384390 +46311,2602,DVD-R,1237230705 +46311,2612,BD-R,1394313180 +46311,2613,BD-R,1373139731 +46311,2613,DVD-RAM,1242916309 +46311,2613,VHS,1237577539 +46311,2616,70mm,1347740686 +46311,2616,BD-R,1347740686 +46311,2616,Cinema Digital Sound,1347740686 +46311,2616,CLV,1417815545 +46311,2616,Super-35 Blow-Up,1347740686 +46311,2622,DVD-Video,1237230595 +46311,2628,BD-Video,1443312542 +46311,2628,Dimensionalized 2-D to 3-D for reissue in 2012,1369326706 +46311,2628,DVD-Video,1443312672 +46311,2633,BD-R,1352396843 +46311,2634,BD-R,1289496267 +46311,2637,BD-R,1354824279 +46311,2640,70mm,1326836573 +46311,2640,Anamorphic Blow-Up,1326836573 +46311,2640,BD-Video,1326836573 +46311,2641,70mm,1326836595 +46311,2641,Anamorphic Blow-Up,1326836595 +46311,2641,BD-Video,1326836595 +46311,2642,70mm,1143135479 +46311,2642,Anamorphic Blow-Up,1237142161 +46311,2642,Betamax,1238264001 +46311,2643,Betamax,1238264010 +46311,2644,DVD-R,1197234676 +46311,2644,DVD-RAM,1197234677 +46311,2646,BD-R,1352397806 +46311,2647,DVD-Video,1308504783 +46311,2648,DVD-R,1233085084 +46311,2648,DVD-RAM,1233085084 +46311,2648,DVD-Video,1308504733 +46311,2649,DVD-R,1238256774 +46311,2649,DVD-RAM,1238256774 +46311,2649,DVD-Video,1308504761 +46311,2650,CLV,1375039166 +46311,2650,DVD-Video,1308504773 +46311,2651,DVD-Video,1308504660 +46311,2652,BD-R,1290879985 +46311,2653,CLV,1375038373 +46311,2654,DVD-R,1239033295 +46311,2654,DVD-RAM,1239033295 +46311,2654,DVD-Video,1308504638 +46311,2655,Betamax,1234039546 +46311,2655,DVD-RAM,1258146853 +46311,2656,BD-R,1311266006 +46311,2657,BD-Video,1414264827 +46311,2657,CLV,1237827747 +46311,2660,BD-R,1311267497 +46311,2660,DVD-R,1238268605 +46311,2660,DVD-RAM,1238268605 +46311,2661,BD-R,1369940829 +46311,2661,DVD-R,1236617210 +46311,2661,DVD-RAM,1236617210 +46311,2661,Stereoscopic 3-D,1306600213 +46311,2662,BD-R,1339090034 +46311,2662,CAV,1407019574 +46311,2663,BD-R,1311267084 +46311,2663,BD-Video,1330803342 +46311,2663,DVD-RAM,1236617191 +46311,2664,DVD-R,1236615694 +46311,2664,DVD-RAM,1236615694 +46311,2665,BD-Video,1330803361 +46311,2665,DVD-R,1197239441 +46311,2665,DVD-RAM,1197239441 +46311,2682,DVD-Video,1237056004 +46311,2683,BD-Video,1384455135 +46311,2686,DVD-Video,1237825083 +46311,2693,DVD-R,1238344564 +46311,2693,DVD-RAM,1238344564 +46311,2699,70mm,1417385556 +46311,2699,CLV,1417385556 +46311,2699,Spherical Blow-Up,1417385556 +46311,2700,VHS,1238257084 +46311,2701,DVD-RAM,1242916352 +46311,2712,BD-Video,1308501599 +46311,2712,DVD-Video,1238259586 +46311,2712,VHS,1206384832 +46311,2716,70mm,1143135788 +46311,2716,Anamorphic Blow-Up,1237142406 +46311,2716,CLV,1233424957 +46311,2726,BD-R,1433635925 +46311,2726,DVD-R,1237049093 +46311,2726,DVD-RAM,1237049093 +46311,2726,VHS,1237049093 +46311,2727,BD-R,1429813787 +46311,2727,DVD-R,1237048957 +46311,2727,VHS,1237048957 +46311,2728,70mm,1308501436 +46311,2728,BD-Video,1308501436 +46311,2728,Betamax,1238257481 +46311,2728,CLV,1238257481 +46311,2728,DVD-Video,1238257481 +46311,2728,Super Technirama 70,1308501436 +46311,2729,BD-Video,1308501465 +46311,2729,Betamax,1237133722 +46311,2729,CLV,1237133722 +46311,2729,DVD-Video,1238259500 +46311,2730,BD-Video,1308501549 +46311,2730,Betamax,1182635755 +46311,2730,DVD-Video,1238259554 +46311,2731,DVD-Video,1172526198 +46311,2732,DVD-Video,1198455762 +46311,2734,Betamax,1237233158 +46311,2734,DVD-Video,1237233168 +46311,2735,Betamax,1233427290 +46311,2736,Betamax,1182718589 +46311,2737,Betamax,1181422451 +46311,2738,Betamax,1185129179 +46311,2739,Betamax,1185056740 +46311,2739,CLV,1339258749 +46311,2740,Betamax,1237049133 +46311,2741,Betamax,1237578570 +46311,2743,Betamax,1237576786 +46311,2745,70mm,1143138614 +46311,2745,Anamorphic Blow-Up,1237207957 +46311,2745,Betamax,1237231525 +46311,2746,70mm,1143138565 +46311,2746,Betamax,1237133397 +46311,2746,CLV,1361820093 +46311,2746,Spherical Blow-Up,1237208025 +46311,2747,BD-R,1367087495 +46311,2747,DVD-Video,1237133417 +46311,2748,Betamax,1143321549 +46311,2749,Betamax,1237233050 +46311,2750,DVD-Video,1237823322 +46311,2751,Betamax,1233421687 +46311,2752,Betamax,1237743071 +46311,2752,CLV,1421100646 +46311,2753,Betamax,1182636917 +46311,2755,Betamax,1237055863 +46311,2755,VHS,1237055863 +46311,2756,Betamax,1238351030 +46311,2757,Betamax,1233084856 +46311,2757,DVD-Video,1233084856 +46311,2758,Betamax,1237750297 +46311,2758,CLV,1237750297 +46311,2761,55 movies every kid should see--Entertainment Weekly,1407082977 +46311,2761,VHS,1236616416 +46311,2764,BD-R,1390854654 +46311,2764,Betamax,1238268977 +46311,2778,CLV,1427733310 +46311,2780,BD-R,1354397647 +46311,2781,CLV,1369334136 +46311,2781,DVD-Video,1238341382 +46311,2782,BD-R,1385067244 +46311,2782,DVD-R,1237749860 +46311,2783,BD-R,1384454698 +46311,2784,BD-R,1323573275 +46311,2785,CLV,1369334100 +46311,2786,Betamax,1233433251 +46311,2788,CLV,1143403920 +46311,2791,BD-Video,1422063739 +46311,2794,BD-Video,1338052784 +46311,2794,Betamax,1237576680 +46311,2795,BD-Video,1405197772 +46311,2795,Betamax,1237576723 +46311,2795,CLV,1403548789 +46311,2797,55 movies every kid should see--Entertainment Weekly,1407083966 +46311,2797,CLV,1417811380 +46311,2797,DVD-Video,1182713004 +46311,2802,CLV,1238267460 +46311,2803,CLV,1339093509 +46311,2804,55 movies every kid should see--Entertainment Weekly,1407083538 +46311,2804,BD-R,1326836160 +46311,2804,BD-Video,1415479958 +46311,2804,Betamax,1184520662 +46311,2804,CLV,1339258668 +46311,2808,BD-R,1342717952 +46311,2808,Cinema Digital Sound,1313697131 +46311,2814,BD-R,1352396453 +46311,2814,DVD-Video,1366479222 +46311,2815,Betamax,1236616321 +46311,2819,BD-R,1331229612 +46311,2823,CLV,1238257748 +46311,2847,BD-R,1305222663 +46311,2848,BD-R,1433637027 +46311,2848,DVD-R,1238344230 +46311,2849,DVD-Video,1237822943 +46311,2851,Betamax,1237829876 +46311,2852,BD-R,1360442344 +46311,2852,Betamax,1238256485 +46311,2853,VHS,1143321148 +46311,2854,DVD-Video,1401998526 +46311,2855,Betamax,1237578298 +46311,2856,DVD-RAM,1253209237 +46311,2857,55 movies every kid should see--Entertainment Weekly,1407083357 +46311,2858,DVD-Video,1143402350 +46311,2859,Betamax,1238261439 +46311,2862,BD-Video,1237047931 +46311,2862,Betamax,1183246947 +46311,2862,DVD-Video,1183246947 +46311,2863,BD-R,1405197083 +46311,2863,Betamax,1233432970 +46311,2863,DVD-R,1233432970 +46311,2866,BD-R,1413051178 +46311,2871,70mm,1319910618 +46311,2871,Anamorphic Blow-Up,1319910618 +46311,2871,BD-R,1319910618 +46311,2872,DVD-Video,1206384270 +46311,2874,CLV,1274982411 +46311,2875,CLV,1339094047 +46311,2877,70mm,1423771769 +46311,2877,BD-R,1423771769 +46311,2877,BD-Video,1426364679 +46311,2877,Betamax,1238343057 +46311,2877,DVD-R,1238343057 +46311,2877,DVD-RAM,1238343057 +46311,2877,Spherical Blow-Up,1423771769 +46311,2878,Betamax,1233434525 +46311,2896,70mm,1142792806 +46311,2898,BD-R,1403547203 +46311,2898,CLV,1185672458 +46311,2899,BD-R,1354396967 +46311,2900,BD-R,1403547238 +46311,2900,VHS,1237232466 +46311,2901,Betamax,1237746150 +46311,2902,Betamax,1237822406 +46311,2903,Betamax,1237822411 +46311,2904,BD-R,1437073163 +46311,2905,CLV,1237829412 +46311,2905,DVD-RAM,1274972032 +46311,2905,DVD-Video,1280449150 +46311,2915,Betamax,1237826824 +46311,2915,CLV,1237826824 +46311,2915,DVD-Video,1237826824 +46311,2916,70mm,1375043570 +46311,2916,BD-Video,1381436071 +46311,2916,CLV,1375043570 +46311,2916,DVD-Video,1238343623 +46311,2916,Spherical Blow-Up,1375043570 +46311,2917,Betamax,1182716493 +46311,2917,DVD-Video,1182716493 +46311,2918,BD-Video,1405197794 +46311,2918,DVD-Video,1233076556 +46311,2919,BD-R,1332441300 +46311,2919,Betamax,1239034117 +46311,2919,CLV,1427736898 +46311,2920,BD-R,1423772993 +46311,2921,BD-R,1288549589 +46311,2922,BD-R,1288549307 +46311,2922,BD-Video,1381436239 +46311,2925,VHS,1185069365 +46311,2927,DVD-Video,1198455546 +46311,2928,70mm,1143136023 +46311,2928,Anamorphic Blow-Up,1237142616 +46311,2928,Betamax,1237824485 +46311,2929,Betamax,1237825134 +46311,2932,70mm,1293761606 +46311,2932,BD-R,1293761606 +46311,2932,Betamax,1185673812 +46311,2932,CLV,1185673812 +46311,2932,Spherical Blow-Up,1293761606 +46311,2933,BD-R,1413054833 +46311,2934,Betamax,1143403626 +46311,2935,BD-R,1295723054 +46311,2936,BD-R,1357842119 +46311,2936,DVD-R,1238263444 +46311,2936,DVD-RAM,1238263444 +46311,2937,BD-R,1377451239 +46311,2937,CLV,1237744658 +46311,2939,BD-R,1319912217 +46311,2940,BD-R,1306443498 +46311,2941,70mm,1274984554 +46311,2941,Betamax,1238257037 +46311,2941,CLV,1274984554 +46311,2941,DVD-Video,1238257037 +46311,2941,Todd-AO,1274984554 +46311,2942,Betamax,1233077916 +46311,2942,DVD-Video,1233077916 +46311,2943,CLV,1236614871 +46311,2944,70mm,1347740546 +46311,2944,BD-R,1347740546 +46311,2944,CLV,1369336511 +46311,2944,Spherical Blow-Up,1347740546 +46311,2945,Betamax,1237230773 +46311,2946,Betamax,1234035540 +46311,2947,BD-Video,1390853697 +46311,2947,Betamax,1233428234 +46311,2947,VHS,1233428234 +46311,2948,BD-Video,1390853679 +46311,2948,Betamax,1233421495 +46311,2948,VHS,1233421495 +46311,2949,BD-Video,1390853663 +46311,2949,Betamax,1197234504 +46311,2949,VHS,1197234504 +46311,2950,70mm,1142800233 +46311,2950,Spherical Blow-Up,1237140969 +46311,2951,BD-R,1288549465 +46311,2953,CLV,1339092743 +46311,2954,DVD-RAM,1237745683 +46311,2955,Betamax,1237745625 +46311,2957,BD-R,1401999649 +46311,2957,DVD-R,1238257441 +46311,2959,BD-Video,1405197552 +46311,2967,BD-R,1299181460 +46311,2968,Betamax,1238340950 +46311,2968,CLV,1238340950 +46311,2968,DVD-Video,1238340950 +46311,2968,VHS,1238340950 +46311,2969,BD-R,1342717786 +46311,2970,BD-Video,1433637505 +46311,2970,Betamax,1233077692 +46311,2970,DVD-Video,1292632225 +46311,2971,Betamax,1143321478 +46311,2973,DVD-Video,1185129068 +46311,2985,CLV,1237827466 +46311,2986,CLV,1237827474 +46311,2987,55 movies every kid should see--Entertainment Weekly,1407083384 +46311,2987,70mm,1274984982 +46311,2987,BD-Video,1422063590 +46311,2987,Betamax,1238354385 +46311,2987,CLV,1274984982 +46311,2987,DVD-Video,1238354385 +46311,2987,Spherical Blow-Up,1274984982 +46311,2989,BD-Video,1390853919 +46311,2989,Betamax,1233084215 +46311,2989,VHS,1233084215 +46311,2990,BD-Video,1390854005 +46311,2990,Betamax,1237055428 +46311,2990,VHS,1237055428 +46311,2991,BD-Video,1390853805 +46311,2991,VHS,1237133473 +46311,2992,VHS,1237824441 +46311,2993,BD-Video,1390853714 +46311,2993,CLV,1238269534 +46311,2993,VHS,1238269534 +46311,2997,DVD-Video,1182637057 +46311,3002,BD-Video,1433637694 +46311,3002,DVD-Video,1292632254 +46311,3011,CLV,1430157897 +46311,3012,DVD-Video,1143407487 +46311,3014,Betamax,1183246399 +46311,3015,Betamax,1185056840 +46311,3016,Betamax,1185128878 +46311,3016,DVD-Video,1185128878 +46311,3017,Betamax,1185128892 +46311,3018,Betamax,1237824528 +46311,3018,VHS,1237824676 +46311,3019,CLV,1197237151 +46311,3019,DVD-Video,1197237151 +46311,3020,CLV,1406935885 +46311,3021,Betamax,1233422129 +46311,3022,DVD-Video,1143407508 +46311,3024,BD-Video,1304788530 +46311,3028,70mm,1369333226 +46311,3028,CLV,1369333226 +46311,3029,Betamax,1237577988 +46311,3030,Betamax,1239034322 +46311,3030,CLV,1239034350 +46311,3030,DVD-RAM,1273768008 +46311,3030,DVD-Video,1280449272 +46311,3032,BD-Video,1258130381 +46311,3032,VHS,1237600151 +46311,3033,70mm,1339263394 +46311,3033,BD-Video,1378667850 +46311,3033,CLV,1339263394 +46311,3033,Super 1.85 Blow-Up,1339263394 +46311,3034,BD-Video,1394315135 +46311,3034,Betamax,1237827422 +46311,3034,CLV,1237827422 +46311,3035,BD-R,1437072490 +46311,3035,CLV,1274981802 +46311,3036,70mm,1142802193 +46311,3036,Anamorphic Blow-Up,1237141341 +46311,3036,Betamax,1237822989 +46311,3036,DVD-Video,1237822989 +46311,3037,70mm,1369332656 +46311,3037,BD-R,1369332656 +46311,3038,BD-R,1293762500 +46311,3039,Betamax,1238344098 +46311,3040,Betamax,1237229351 +46311,3041,Betamax,1237229387 +46311,3042,Betamax,1237229381 +46311,3044,CLV,1339092105 +46311,3047,Betamax,1206384532 +46311,3049,BD-R,1299181227 +46311,3052,DVD-Video,1187484701 +46311,3053,DVD-Video,1237230245 +46311,3058,DVD-RAM,1289496792 +46311,3058,DVD-Video,1366426573 +46311,3060,CLV,1403548211 +46311,3062,70mm,1142793796 +46311,3066,70mm,1142795448 +46311,3066,Anamorphic Blow-Up,1237138777 +46311,3066,CLV,1238343527 +46311,3066,DVD-R,1238343527 +46311,3066,DVD-RAM,1238343527 +46311,3067,VHS,1239033443 +46311,3068,BD-R,1426365457 +46311,3068,Betamax,1238349480 +46311,3068,CLV,1406940918 +46311,3070,Betamax,1143319813 +46311,3070,DVD-Video,1143319813 +46311,3071,Betamax,1238258622 +46311,3072,CLV,1274981747 +46311,3072,DVD-Video,1237232918 +46311,3073,BD-R,1422062262 +46311,3073,Betamax,1237829377 +46311,3074,70mm,1440274993 +46311,3074,BD-R,1440274993 +46311,3074,Betamax,1236619649 +46311,3075,BD-R,1323574226 +46311,3076,BD-R,1323573310 +46311,3076,Betamax,1236615929 +46311,3082,BD-Video,1390854066 +46311,3086,BD-R,1357844722 +46311,3087,Betamax,1238179303 +46311,3087,CLV,1403548905 +46311,3089,BD-R,1298139549 +46311,3090,Betamax,1237228928 +46311,3090,CLV,1237228928 +46311,3091,Betamax,1236621252 +46311,3091,DVD-RAM,1273768356 +46311,3091,DVD-Video,1280448994 +46311,3093,BD-R,1385066754 +46311,3094,BD-R,1319912343 +46311,3094,CLV,1427736523 +46311,3095,BD-R,1339959011 +46311,3097,BD-R,1390857258 +46311,3097,CLV,1238185563 +46311,3098,BD-R,1335714431 +46311,3098,CLV,1406936893 +46311,3099,BD-R,1395592829 +46311,3099,CLV,1369333758 +46311,3100,BD-R,1423772746 +46311,3100,CLV,1339093726 +46311,3101,Betamax,1233076188 +46311,3101,DVD-Video,1233076188 +46311,3102,Betamax,1236619362 +46311,3104,Betamax,1237230492 +46311,3106,CLV,1427744038 +46311,3107,70mm,1143142245 +46311,3107,CLV,1181424543 +46311,3107,Super-35 Blow-Up,1237210245 +46311,3108,DVD-Video,1233077529 +46311,3109,70mm,1430157514 +46311,3109,CLV,1430157513 +46311,3109,Spherical Blow-Up,1430157514 +46311,3110,Betamax,1185127929 +46311,3110,CLV,1369333338 +46311,3111,BD-R,1342717103 +46311,3111,Betamax,1237749892 +46311,3112,Betamax,1143311312 +46311,3114,2009 reissue in Stereoscopic 3-D,1306611580 +46311,3114,BD-Video,1310235430 +46311,3114,DVD-Video,1313609945 +46311,3121,BD-R,1418409343 +46311,3130,70mm,1406933803 +46311,3130,CLV,1406933802 +46311,3130,Super-35 Blow-Up,1406933803 +46311,3133,DVD-Video,1143407445 +46311,3134,Betamax,1233429658 +46311,3134,DVD-Video,1198455672 +46311,3135,Betamax,1233430260 +46311,3138,CLV,1430154033 +46311,3139,BD-R,1335714306 +46311,3140,DVD-Video,1143407346 +46311,3141,70mm,1143142207 +46311,3141,Super-35 Blow-Up,1237218503 +46311,3142,DVD-Video,1238347027 +46311,3143,Betamax,1233434499 +46311,3144,BD-R,1335715658 +46311,3148,BD-R,1427571438 +46311,3151,70mm,1281044231 +46311,3151,CLV,1375038718 +46311,3151,DVD-RAM,1281044231 +46311,3151,Magnifilm,1281044231 +46311,3152,BD-R,1395592811 +46311,3152,BD-Video,1437943182 +46311,3152,DVD-R,1237054104 +46311,3152,DVD-RAM,1237054104 +46311,3153,BD-Video,1330803392 +46311,3153,Betamax,1143312471 +46311,3153,DVD-Video,1233075394 +46311,3156,DVD-RAM,1302803859 +46311,3164,DVD-Video,1237823391 +46311,3165,CLV,1421101427 +46311,3167,BD-R,1360442594 +46311,3167,Betamax,1183247597 +46311,3167,CLV,1430156523 +46311,3168,BD-R,1360442635 +46311,3168,BD-Video,1437943115 +46311,3168,CLV,1406935773 +46311,3168,DVD-RAM,1278793976 +46311,3169,DVD-Video,1206387786 +46311,3171,BD-R,1332441787 +46311,3175,DVD-Video,1233422389 +46311,3194,BD-R,1392664505 +46311,3194,CLV,1238351481 +46311,3197,70mm,1143140814 +46311,3197,Anamorphic Blow-Up,1237208575 +46311,3198,70mm,1142797660 +46311,3198,BD-R,1363290549 +46311,3199,BD-R,1288549542 +46311,3200,BD-R,1360442324 +46311,3201,BD-R,1360442610 +46311,3201,BD-Video,1437943136 +46311,3201,CLV,1233077758 +46311,3202,BD-Video,1433637264 +46311,3202,DVD-Video,1292632078 +46311,3203,Betamax,1185674006 +46311,3203,DVD-Video,1185674006 +46311,3204,Betamax,1182717195 +46311,3205,VHS,1232656351 +46311,3206,CLV,1417810922 +46311,3207,BD-R,1306445503 +46311,3207,DVD-Video,1367689535 +46311,3210,BD-Video,1405197574 +46311,3210,Betamax,1233076110 +46311,3210,DVD-Video,1233076110 +46311,3211,BD-R,1426365587 +46311,3213,DVD-RAM,1230592936 +46311,3214,70mm,1237207513 +46311,3214,Anamorphic Blow-Up,1237207513 +46311,3214,Betamax,1143402414 +46311,3216,DVD-R,1238348496 +46311,3217,BD-R,1440275589 +46311,3219,CLV,1407019312 +46311,3220,BD-R,1431202364 +46311,3220,DVD-RAM,1278793997 +46311,3222,70mm,1143135634 +46311,3223,Betamax,1239034759 +46311,3229,CLV,1406937585 +46311,3231,DVD-Video,1143407312 +46311,3232,DVD-Video,1143407471 +46311,3244,BD-R,1394312980 +46311,3245,BD-R,1385066329 +46311,3246,70mm,1403549242 +46311,3246,CLV,1403549242 +46311,3247,CLV,1417465826 +46311,3248,CLV,1417466200 +46311,3249,CLV,1339092683 +46311,3251,BD-R,1429814779 +46311,3251,Betamax,1143320875 +46311,3252,CLV,1339093766 +46311,3254,CLV,1417809847 +46311,3255,CLV,1417462753 +46311,3256,70mm,1339262765 +46311,3256,Anamorphic Blow-Up,1339262765 +46311,3256,CLV,1339262765 +46311,3257,CLV,1417455472 +46311,3258,CLV,1403548661 +46311,3259,70mm,1333992460 +46311,3259,CLV,1339261333 +46311,3259,Panavision Super 70,1333992460 +46311,3260,70mm,1319912301 +46311,3260,BD-R,1319912301 +46311,3260,CLV,1427732317 +46311,3260,Super-35 Blow-Up,1319912301 +46311,3261,CLV,1406940752 +46311,3261,DVD-Video,1238186306 +46311,3263,CLV,1406940940 +46311,3269,CLV,1233084439 +46311,3272,DVD-Video,1182634850 +46311,3273,BD-Video,1384455714 +46311,3274,CLV,1339263334 +46311,3275,DVD-Video,1182716823 +46311,3280,BD-R,1360443811 +46311,3292,BD-R,1323573017 +46311,3294,Betamax,1198447822 +46311,3296,BD-R,1317587634 +46311,3297,BD-R,1334860506 +46311,3304,VHS,1182716069 +46311,3305,BD-R,1385066959 +46311,3305,DVD-Video,1366427367 +46311,3306,BD-R,1365878128 +46311,3306,CAV,1274978107 +46311,3307,BD-R,1381080252 +46311,3307,CAV,1274978401 +46311,3309,BD-R,1413055534 +46311,3309,CAV,1274978049 +46311,3309,DVD-R,1187484810 +46311,3310,55 movies every kid should see--Entertainment Weekly,1407082782 +46311,3310,BD-R,1374424012 +46311,3310,CAV,1274978068 +46311,3311,BD-R,1440276019 +46311,3313,CLV,1237576656 +46311,3328,DVD-Video,1233424055 +46311,3330,BD-R,1381080392 +46311,3334,BD-R,1390855094 +46311,3334,CLV,1236621476 +46311,3335,CLV,1198448292 +46311,3338,BD-Video,1281278574 +46311,3338,DVD-RAM,1233084162 +46311,3340,CLV,1198448324 +46311,3341,BD-R,1329075994 +46311,3342,Betamax,1182713940 +46311,3343,Betamax,1143403841 +46311,3344,DVD-RAM,1230582533 +46311,3344,VHS,1182715782 +46311,3347,BD-R,1306445759 +46311,3349,BD-R,1363459305 +46311,3350,BD-R,1427572741 +46311,3351,DVD-RAM,1238346972 +46311,3351,VHS,1172525185 +46311,3358,CLV,1427731283 +46311,3359,Betamax,1182717915 +46311,3360,Betamax,1234038158 +46311,3360,CLV,1417812322 +46311,3361,CLV,1406941163 +46311,3362,BD-R,1342717505 +46311,3363,BD-R,1339958971 +46311,3363,Betamax,1143402506 +46311,3363,CLV,1406937175 +46311,3364,BD-R,1334860070 +46311,3365,BD-R,1357841969 +46311,3365,CLV,1238179484 +46311,3365,VistaVision,1357841969 +46311,3368,BD-R,1292631842 +46311,3368,Technirama,1418420632 +46311,3370,CLV,1417814779 +46311,3371,BD-R,1369940312 +46311,3371,DVD-R,1182717029 +46311,3373,BD-R,1423770560 +46311,3373,Betamax,1183236448 +46311,3375,BD-R,1311266334 +46311,3377,DVD-Video,1233432748 +46311,3379,BD-R,1293761121 +46311,3384,BD-R,1370542162 +46311,3385,Betamax,1238350491 +46311,3386,CLV,1236619941 +46311,3390,Betamax,1238182972 +46311,3391,70mm,1143139514 +46311,3391,Betamax,1238354451 +46311,3391,Spherical Blow-Up,1237208242 +46311,3392,CLV,1430152657 +46311,3393,Betamax,1185672854 +46311,3394,Betamax,1182715541 +46311,3395,BD-R,1437071209 +46311,3395,Betamax,1237575633 +46311,3396,55 movies every kid should see--Entertainment Weekly,1407082488 +46311,3396,70mm,1406933454 +46311,3396,Betamax,1237573615 +46311,3396,Spherical Blow-Up,1406933456 +46311,3397,Betamax,1233430164 +46311,3398,BD-R,1422061124 +46311,3398,VHS,1237573694 +46311,3402,Betamax,1238346273 +46311,3403,70mm,1142800497 +46311,3403,Anamorphic Blow-Up,1237141014 +46311,3404,BD-R,1373139159 +46311,3405,BD-R,1336664045 +46311,3412,70mm,1417454462 +46311,3412,Anamorphic Blow-Up,1417454462 +46311,3412,CLV,1417454462 +46311,3413,DVD-Video,1367859281 +46311,3417,BD-R,1376238086 +46311,3417,CLV,1274974419 +46311,3417,VHS,1185669738 +46311,3418,BD-Video,1396552445 +46311,3418,CLV,1339094081 +46311,3420,DVD-Video,1143403869 +46311,3421,BD-Video,1401997065 +46311,3423,Betamax,1237830379 +46311,3423,DVD-Video,1237830379 +46311,3424,Betamax,1187483723 +46311,3424,CLV,1187483723 +46311,3424,DVD-Video,1413057801 +46311,3425,DVD-Video,1237231720 +46311,3426,DVD-Video,1413057831 +46311,3427,VHS,1185127230 +46311,3428,70mm,1369336489 +46311,3428,BD-R,1445019396 +46311,3428,CLV,1369336489 +46311,3430,Betamax,1186261121 +46311,3431,Betamax,1186261158 +46311,3433,Betamax,1186261150 +46311,3435,BD-R,1376238016 +46311,3435,DVD-R,1187485750 +46311,3436,CLV,1421099938 +46311,3438,BD-Video,1413051901 +46311,3439,BD-Video,1413051920 +46311,3440,BD-Video,1413051928 +46311,3441,BD-R,1309023111 +46311,3441,CLV,1403548398 +46311,3442,Betamax,1182635552 +46311,3443,Betamax,1182716883 +46311,3445,BD-R,1382747269 +46311,3445,Betamax,1206384782 +46311,3447,BD-R,1298141930 +46311,3448,70mm,1363459469 +46311,3448,BD-R,1363459469 +46311,3448,CLV,1417812188 +46311,3448,Spherical Blow-Up,1363459469 +46311,3450,CLV,1339092529 +46311,3451,BD-R,1295721642 +46311,3458,Betamax,1182715723 +46311,3459,Betamax,1233429301 +46311,3459,DVD-Video,1233429301 +46311,3461,BD-R,1423771331 +46311,3462,BD-R,1369332929 +46311,3462,CAV,1274978333 +46311,3462,DVD-R,1237231844 +46311,3465,Betamax,1238268252 +46311,3466,CLV,1417461161 +46311,3467,BD-R,1443311489 +46311,3468,BD-R,1426365352 +46311,3468,CLV,1234040488 +46311,3469,BD-R,1426365404 +46311,3469,DVD-RAM,1248884508 +46311,3470,70mm,1273768256 +46311,3470,DVD-RAM,1273768256 +46311,3470,Sovscope 70,1273768256 +46311,3471,70mm,1339089582 +46311,3471,Anamorphic Blow-Up,1339089582 +46311,3471,BD-R,1339089582 +46311,3471,BD-Video,1440873641 +46311,3471,Betamax,1185055497 +46311,3471,CLV,1185055497 +46311,3472,CLV,1369334041 +46311,3475,BD-R,1426363474 +46311,3476,BD-Video,1413051745 +46311,3476,DVD-Video,1236619307 +46311,3478,Betamax,1237052370 +46311,3479,70mm,1143137400 +46311,3479,Anamorphic Blow-Up,1237207255 +46311,3479,Betamax,1237053480 +46311,3479,DVD-Video,1237053479 +46311,3480,Betamax,1237226142 +46311,3487,Betamax,1198449818 +46311,3489,70mm,1375042610 +46311,3489,Anamorphic Blow-Up,1375042611 +46311,3489,CLV,1234038122 +46311,3490,BD-R,1334859839 +46311,3490,DVD-Video,1366482135 +46311,3490,VHS,1234038328 +46311,3492,BD-R,1315078893 +46311,3496,Betamax,1237226561 +46311,3496,CLV,1430151700 +46311,3498,BD-R,1363459357 +46311,3498,CLV,1406936821 +46311,3499,CLV,1237231249 +46311,3500,CLV,1417817419 +46311,3501,BD-R,1342717165 +46311,3502,CLV,1417463717 +46311,3503,70mm,1355602153 +46311,3503,BD-R,1355602153 +46311,3503,CLV,1238256247 +46311,3504,BD-R,1330291330 +46311,3504,CLV,1406937252 +46311,3505,Betamax,1237578658 +46311,3506,Betamax,1237578952 +46311,3506,CLV,1369333679 +46311,3507,BD-R,1423772531 +46311,3508,BD-R,1288549442 +46311,3508,Betamax,1237743010 +46311,3510,DVD-Video,1233085895 +46311,3516,BD-R,1382213711 +46311,3516,CLV,1230593383 +46311,3520,BD-R,1352397829 +46311,3523,Betamax,1238264874 +46311,3524,Betamax,1230591421 +46311,3525,Betamax,1181424360 +46311,3526,CLV,1417813972 +46311,3527,70mm,1143139324 +46311,3527,BD-Video,1258130516 +46311,3527,Spherical Blow-Up,1237208104 +46311,3528,BD-R,1339089788 +46311,3528,CLV,1339093644 +46311,3535,BD-Video,1354398262 +46311,3543,Betamax,1186880248 +46311,3543,DVD-Video,1186880248 +46311,3545,BD-R,1295722714 +46311,3546,BD-R,1290881368 +46311,3548,BD-R,1390855003 +46311,3548,CLV,1181422910 +46311,3548,Technirama,1418420609 +46311,3549,BD-R,1319912173 +46311,3550,BD-R,1379790724 +46311,3550,Betamax,1344725285 +46311,3551,DVD-Video,1237228191 +46311,3552,BD-Video,1338052757 +46311,3556,DVD-Video,1238350245 +46311,3557,CLV,1417812441 +46311,3558,BD-R,1396552139 +46311,3559,BD-R,1369332971 +46311,3559,CLV,1274977809 +46311,3559,VHS,1237056035 +46311,3560,BD-R,1342718067 +46311,3560,VHS,1236613271 +46311,3560,VistaVision,1418408469 +46311,3576,Betamax,1234035949 +46311,3578,DVD-Video,1233425781 +46311,3583,70mm,1391007973 +46311,3583,DVD-R,1230595518 +46311,3583,Super Technirama 70,1391007973 +46311,3584,Betamax,1182717972 +46311,3584,CLV,1421096107 +46311,3585,BD-R,1440275143 +46311,3588,BD-Video,1437943200 +46311,3588,DVD-Video,1237050811 +46311,3590,Betamax,1237225423 +46311,3591,Betamax,1237572995 +46311,3599,BD-R,1329077495 +46311,3600,CLV,1430156410 +46311,3604,BD-R,1319911746 +46311,3604,Technirama,1418421298 +46311,3605,VistaVision,1418407585 +46311,3606,BD-R,1390856600 +46311,3606,CLV,1237600323 +46311,3608,55 movies every kid should see--Entertainment Weekly,1407083184 +46311,3608,Betamax,1237745515 +46311,3611,Betamax,1237829253 +46311,3614,CLV,1403548323 +46311,3615,70mm,1142790390 +46311,3621,BD-R,1331228675 +46311,3622,BD-R,1378665827 +46311,3627,BD-R,1323573243 +46311,3627,DVD-Video,1366425258 +46311,3629,BD-R,1369332910 +46311,3629,CAV,1274978134 +46311,3632,BD-R,1378667665 +46311,3632,CLV,1274978163 +46311,3633,BD-Video,1390853753 +46311,3633,Betamax,1237600261 +46311,3633,VHS,1237600261 +46311,3634,BD-R,1293761528 +46311,3634,Betamax,1238181940 +46311,3635,BD-Video,1390853877 +46311,3635,VHS,1238258123 +46311,3638,BD-Video,1390853898 +46311,3638,VHS,1237232870 +46311,3639,70mm,1142798975 +46311,3639,BD-Video,1390853845 +46311,3639,Betamax,1237227770 +46311,3639,VHS,1237227770 +46311,3640,BD-R,1413049688 +46311,3640,CLV,1274977768 +46311,3640,DVD-RAM,1237050007 +46311,3641,BD-R,1406940304 +46311,3641,CLV,1274977787 +46311,3645,BD-R,1384028665 +46311,3649,Betamax,1143402471 +46311,3650,CLV,1143404303 +46311,3652,Betamax,1341516556 +46311,3653,BD-R,1336664388 +46311,3654,70mm,1339261989 +46311,3654,BD-R,1360441201 +46311,3654,BD-Video,1440873437 +46311,3654,Betamax,1233431937 +46311,3654,CLV,1339261988 +46311,3654,DVD-R,1233431937 +46311,3654,DVD-RAM,1233431937 +46311,3656,BD-R,1376238623 +46311,3657,BD-R,1328042425 +46311,3659,Betamax,1237822850 +46311,3667,Betamax,1237825771 +46311,3668,Betamax,1237828018 +46311,3670,BD-R,1365878742 +46311,3671,BD-Video,1338052740 +46311,3671,CLV,1230500334 +46311,3671,DVD-Video,1182715202 +46311,3675,Betamax,1238354210 +46311,3675,CLV,1369334396 +46311,3675,VistaVision,1369334396 +46311,3676,DVD-RAM,1254345592 +46311,3677,70mm,1242916720 +46311,3677,BD-Video,1242916720 +46311,3677,Todd-AO,1242916720 +46311,3678,BD-R,1365879952 +46311,3681,BD-R,1288549365 +46311,3682,Betamax,1237226918 +46311,3683,Betamax,1182715807 +46311,3683,DVD-Video,1182715807 +46311,3684,Betamax,1206386697 +46311,3684,CLV,1403548191 +46311,3686,70mm,1313697316 +46311,3686,Anamorphic Blow-Up,1313697316 +46311,3686,Cinema Digital Sound,1313697316 +46311,3686,CLV,1233083521 +46311,3687,VHS,1351453393 +46311,3688,CLV,1369333447 +46311,3689,Betamax,1237821194 +46311,3690,Betamax,1237821252 +46311,3692,VHS,1185054989 +46311,3693,VHS,1238343799 +46311,3694,VHS,1238343794 +46311,3696,BD-R,1357844795 +46311,3696,Betamax,1237577567 +46311,3697,70mm,1338052354 +46311,3697,BD-Video,1338052353 +46311,3697,CLV,1339262916 +46311,3697,Spherical Blow-Up,1338052354 +46311,3698,70mm,1143139343 +46311,3698,Betamax,1237828729 +46311,3698,Spherical Blow-Up,1237208278 +46311,3699,70mm,1143136141 +46311,3699,Anamorphic Blow-Up,1237143375 +46311,3699,Betamax,1238260888 +46311,3699,DVD-Video,1238260888 +46311,3700,DVD-Video,1183236338 +46311,3700,VHS,1183236338 +46311,3701,70mm,1143139619 +46311,3701,Super-35 Blow-Up,1237208714 +46311,3702,DVD-Video,1237226471 +46311,3703,70mm,1426364839 +46311,3703,Anamorphic Blow-Up,1426364839 +46311,3703,BD-Video,1426364839 +46311,3703,Betamax,1237826970 +46311,3703,CLV,1237827028 +46311,3703,DVD-Video,1237827028 +46311,3704,70mm,1406936765 +46311,3704,Anamorphic Blow-Up,1406936765 +46311,3704,Betamax,1237226497 +46311,3704,CLV,1406936764 +46311,3705,CLV,1417811573 +46311,3706,Betamax,1143404140 +46311,3707,CLV,1143312534 +46311,3707,VHS,1143312534 +46311,3708,Betamax,1233077095 +46311,3708,CLV,1361819662 +46311,3709,BD-R,1429814246 +46311,3710,Betamax,1143319688 +46311,3710,CLV,1406941061 +46311,3714,CLV,1430149468 +46311,3715,Betamax,1183236826 +46311,3723,CLV,1339262020 +46311,3724,70mm,1142799550 +46311,3724,CLV,1430156630 +46311,3725,BD-R,1365878803 +46311,3726,BD-R,1413049621 +46311,3726,CLV,1417454105 +46311,3727,BD-R,1347734080 +46311,3727,Betamax,1237576956 +46311,3729,BD-R,1401996599 +46311,3729,DVD-RAM,1287682825 +46311,3730,Betamax,1185127165 +46311,3730,DVD-Video,1185127165 +46311,3733,BD-R,1394310561 +46311,3733,Betamax,1237744706 +46311,3734,BD-R,1330291358 +46311,3735,DVD-Video,1238181833 +46311,3736,BD-R,1342898875 +46311,3738,BD-R,1399572688 +46311,3739,BD-R,1413051118 +46311,3739,CLV,1274980586 +46311,3740,70mm,1306082943 +46311,3740,Anamorphic Blow-Up,1306082943 +46311,3740,BD-Video,1306082943 +46311,3740,Betamax,1182713640 +46311,3741,DVD-Video,1182635089 +46311,3742,DVD-R,1230593111 +46311,3742,DVD-Video,1230593111 +46311,3745,DVD-RAM,1245784049 +46311,3751,DVD-Video,1184519906 +46311,3760,Betamax,1236621395 +46311,3760,DVD-Video,1236621395 +46311,3763,Betamax,1206386672 +46311,3763,CLV,1339092361 +46311,3766,Betamax,1237231383 +46311,3767,Betamax,1237231437 +46311,3768,Betamax,1182717232 +46311,3769,Betamax,1238340085 +46311,3769,CLV,1369333808 +46311,3770,Betamax,1197236454 +46311,3771,DVD-Video,1233075443 +46311,3772,BD-R,1387066886 +46311,3775,Betamax,1237227091 +46311,3776,Betamax,1237229969 +46311,3781,BD-R,1373139034 +46311,3782,BD-R,1373139028 +46311,3788,BD-R,1385067087 +46311,3788,Betamax,1182715902 +46311,3788,DVD-R,1184458864 +46311,3789,BD-R,1406940360 +46311,3791,DVD-Video,1233084129 +46311,3792,BD-R,1426362229 +46311,3793,BD-Video,1401997139 +46311,3793,DVD-Video,1401997262 +46311,3798,BD-R,1360442574 +46311,3801,BD-R,1328042517 +46311,3802,CLV,1417459991 +46311,3803,DVD-RAM,1270413562 +46311,3805,Betamax,1237051352 +46311,3806,70mm,1296680461 +46311,3806,Super Panavision 70,1296680461 +46311,3807,Betamax,1238186208 +46311,3807,DVD-Video,1233075428 +46311,3808,BD-R,1373141427 +46311,3808,DVD-RAM,1287683821 +46311,3809,CLV,1403548937 +46311,3810,DVD-Video,1238354329 +46311,3811,BD-R,1401999433 +46311,3811,Betamax,1182717806 +46311,3811,DVD-Video,1182717806 +46311,3812,DVD-Video,1206383908 +46311,3813,DVD-Video,1236615340 +46311,3814,DVD-Video,1237225721 +46311,3816,VHS,1237580074 +46311,3826,BD-R,1344530353 +46311,3833,BD-R,1377451514 +46311,3833,DVD-R,1238178225 +46311,3833,DVD-Video,1237830460 +46311,3836,70mm,1142795354 +46311,3840,CLV,1369333830 +46311,3841,70mm,1406940442 +46311,3841,CLV,1406940441 +46311,3841,Super-35 Blow-Up,1406940442 +46311,3843,Betamax,1238186622 +46311,3845,BD-R,1326835453 +46311,3849,BD-R,1342717865 +46311,3858,DVD-R,1185669262 +46311,3858,DVD-Video,1328042753 +46311,3859,DVD-Video,1206384809 +46311,3864,BD-R,1349372682 +46311,3868,Betamax,1359925519 +46311,3868,CLV,1407019268 +46311,3869,CLV,1339093367 +46311,3870,BD-R,1402000046 +46311,3870,Betamax,1237742831 +46311,3871,Betamax,1238182890 +46311,3871,DVD-Video,1238182890 +46311,3872,BD-R,1333644363 +46311,3872,CLV,1369939965 +46311,3873,BD-R,1307811847 +46311,3874,CLV,1427739674 +46311,3877,70mm,1143136180 +46311,3877,Betamax,1238263949 +46311,3878,BD-R,1289496471 +46311,3892,DVD-Video,1180229011 +46311,3897,BD-Video,1422063757 +46311,3897,DVD-Video,1143321631 +46311,3917,Betamax,1233435614 +46311,3917,CLV,1339262040 +46311,3918,Betamax,1233434591 +46311,3921,BD-R,1336664474 +46311,3922,BD-R,1336664505 +46311,3924,DVD-RAM,1248795549 +46311,3926,DVD-RAM,1238350590 +46311,3926,VHS,1238350590 +46311,3928,DVD-Video,1308501982 +46311,3929,BD-R,1326834304 +46311,3930,DVD-Video,1308504988 +46311,3930,Stereoscopic 3-D,1306601136 +46311,3930,Universal 3-D,1306601136 +46311,3931,DVD-Video,1237830500 +46311,3932,BD-R,1369940565 +46311,3932,DVD-Video,1308504814 +46311,3933,BD-R,1311266993 +46311,3933,DVD-R,1237048933 +46311,3933,DVD-Video,1366426732 +46311,3937,Betamax,1237828634 +46311,3947,BD-R,1336663863 +46311,3949,BD-R,1399750306 +46311,3949,BD-Video,1426364221 +46311,3959,BD-R,1352396347 +46311,3959,DVD-R,1238341018 +46311,3959,DVD-RAM,1238341018 +46311,3961,BD-R,1302804032 +46311,3961,Betamax,1233425324 +46311,3963,70mm,1423771802 +46311,3963,Anamorphic Blow-Up,1423771803 +46311,3963,BD-R,1423770964 +46311,3964,BD-Video,1415478263 +46311,3964,DVD-Video,1415478274 +46311,3965,BD-R,1440277372 +46311,3965,DVD-Video,1367861397 +46311,3966,BD-R,1323574246 +46311,3966,DVD-Video,1367860091 +46311,3970,BD-R,1293762384 +46311,3970,DVD-Video,1381606238 +46311,3981,BD-Video,1328042032 +46311,3983,DVD-Video,1239034391 +46311,3984,BD-Video,1390853776 +46311,3984,VHS,1186879440 +46311,3996,55 movies every kid should see--Entertainment Weekly,1440873478 +46311,3996,BD-Video,1440873478 +46311,4000,Betamax,1182717053 +46311,4001,Betamax,1185056076 +46311,4002,CLV,1237750015 +46311,4003,Betamax,1238183086 +46311,4005,BD-Video,1390853986 +46311,4005,VHS,1237133546 +46311,4008,70mm,1406933841 +46311,4008,Anamorphic Blow-Up,1406933841 +46311,4008,CLV,1406933841 +46311,4009,CLV,1238265502 +46311,4010,Betamax,1182718016 +46311,4022,BD-Video,1415478074 +46311,4027,BD-R,1395592638 +46311,4036,DVD-Video,1238182324 +46311,4037,Betamax,1234038830 +46311,4037,DVD-Video,1234038830 +46311,4039,55 movies every kid should see--Entertainment Weekly,1407082751 +46311,4039,70mm,1407082752 +46311,4039,Anamorphic Blow-Up,1407082752 +46311,4041,Betamax,1237580018 +46311,4041,CLV,1237580019 +46311,4042,70mm,1296678002 +46311,4042,Todd-AO,1296678002 +46311,4043,Betamax,1181422560 +46311,4046,BD-R,1363290605 +46311,4047,70mm,1427743884 +46311,4047,CLV,1427743883 +46311,4047,Spherical Blow-Up,1427743884 +46311,4051,DVD-Video,1366486758 +46311,4061,CLV,1421098956 +46311,4065,BD-R,1307809463 +46311,4078,Betamax,1143402196 +46311,4079,Betamax,1180227815 +46311,4079,DVD-Video,1143402260 +46311,4080,Betamax,1181424053 +46311,4081,Betamax,1181424457 +46311,4082,Betamax,1182635716 +46311,4083,Betamax,1182637544 +46311,4084,CLV,1417454776 +46311,4085,BD-Video,1405197725 +46311,4085,CLV,1339091447 +46311,4085,VHS,1182637638 +46311,4086,Betamax,1182713259 +46311,4087,Betamax,1182713402 +46311,4088,Betamax,1182713512 +46311,4089,Betamax,1182716917 +46311,4092,Betamax,1184519704 +46311,4092,DVD-Video,1184519704 +46311,4093,Betamax,1185127580 +46311,4094,Betamax,1185669804 +46311,4095,70mm,1143139057 +46311,4095,Betamax,1185670438 +46311,4095,Super-35 Blow-Up,1237208259 +46311,4097,Betamax,1186259897 +46311,4099,Betamax,1186260328 +46311,4100,Betamax,1186881982 +46311,4101,Betamax,1187484750 +46311,4103,70mm,1339092330 +46311,4103,CLV,1339092330 +46311,4103,Spherical Blow-Up,1339092330 +46311,4106,Betamax,1206384686 +46311,4108,DVD-Video,1233077726 +46311,4109,Betamax,1233083758 +46311,4111,Betamax,1233422934 +46311,4112,Betamax,1236620779 +46311,4114,VHS,1233428337 +46311,4115,Betamax,1234035995 +46311,4116,Betamax,1234037853 +46311,4117,Betamax,1234038216 +46311,4117,CLV,1234038265 +46311,4118,Betamax,1344720179 +46311,4119,Betamax,1234038972 +46311,4121,70mm,1399750387 +46311,4121,BD-R,1399750386 +46311,4121,Spherical Blow-Up,1399750386 +46311,4122,Betamax,1236616555 +46311,4123,Betamax,1236616870 +46311,4124,Betamax,1236619524 +46311,4126,Betamax,1237055157 +46311,4127,Betamax,1237055950 +46311,4128,70mm,1339262506 +46311,4128,Anamorphic Blow-Up,1339262506 +46311,4128,CLV,1339262506 +46311,4129,Betamax,1237226662 +46311,4129,CLV,1237226662 +46311,4130,Betamax,1237226956 +46311,4131,Betamax,1237227199 +46311,4131,DVD-RAM,1246465484 +46311,4133,Betamax,1237228885 +46311,4135,Betamax,1237232602 +46311,4137,Betamax,1237233019 +46311,4138,Betamax,1237574315 +46311,4139,Betamax,1237578527 +46311,4144,BD-Video,1364059837 +46311,4146,DVD-Video,1237231055 +46311,4174,BD-R,1413056199 +46311,4176,DVD-Video,1280449031 +46311,4178,BD-R,1305222756 +46311,4180,Betamax,1237825271 +46311,4181,BD-R,1423770456 +46311,4183,DVD-Video,1238347237 +46311,4184,BD-R,1328042560 +46311,4185,70mm,1142795850 +46311,4186,DVD-R,1233084609 +46311,4186,DVD-Video,1233084609 +46311,4188,BD-R,1360443914 +46311,4189,70mm,1333992490 +46311,4189,BD-R,1365878828 +46311,4189,DVD-R,1233430389 +46311,4189,DVD-RAM,1233430389 +46311,4189,Ultra Panavision 70,1333992490 +46311,4190,CLV,1274975599 +46311,4190,DVD-Video,1198451748 +46311,4191,BD-R,1363459282 +46311,4192,BD-R,1381080527 +46311,4194,BD-R,1440872569 +46311,4195,BD-R,1386440237 +46311,4195,CLV,1361819118 +46311,4195,DVD-R,1180143674 +46311,4195,DVD-RAM,1246462514 +46311,4196,DVD-RAM,1232739351 +46311,4197,BD-R,1289496423 +46311,4198,Betamax,1182636354 +46311,4201,BD-R,1342717192 +46311,4201,Betamax,1198453834 +46311,4210,70mm,1143138588 +46311,4210,CLV,1237227983 +46311,4210,Super-35 Blow-Up,1237216722 +46311,4211,CLV,1427746709 +46311,4212,BD-R,1330294064 +46311,4214,Betamax,1237826410 +46311,4215,Betamax,1237826444 +46311,4218,Betamax,1237826873 +46311,4218,VHS,1237826873 +46311,4219,Betamax,1342120935 +46311,4221,CLV,1421102911 +46311,4222,Betamax,1183246773 +46311,4223,DVD-Video,1198453974 +46311,4226,DVD-Video,1237230001 +46311,4235,DVD-Video,1143403663 +46311,4239,DVD-Video,1318181397 +46311,4246,BD-Video,1429814920 +46311,4256,DVD-Video,1184463922 +46311,4262,BD-R,1413051308 +46311,4262,BD-Video,1434846958 +46311,4262,CLV,1237830230 +46311,4263,BD-R,1298139662 +46311,4274,70mm,1296679275 +46311,4274,CLV,1230654093 +46311,4274,DVD-RAM,1230654093 +46311,4274,Todd-AO,1296679275 +46311,4275,70mm,1143135151 +46311,4275,Anamorphic Blow-Up,1237142197 +46311,4275,Betamax,1237052231 +46311,4276,BD-R,1323574316 +46311,4280,Betamax,1239033567 +46311,4283,BD-R,1414262781 +46311,4283,CLV,1233076414 +46311,4285,CLV,1421103934 +46311,4290,70mm,1403549017 +46311,4290,CLV,1403549017 +46311,4290,Spherical Blow-Up,1403549017 +46311,4292,Betamax,1237578845 +46311,4292,DVD-Video,1237578845 +46311,4293,Betamax,1238263617 +46311,4294,BD-R,1370541830 +46311,4294,DVD-R,1172525489 +46311,4298,BD-R,1381080301 +46311,4298,DVD-R,1237826644 +46311,4298,DVD-RAM,1237826644 +46311,4306,DVD-Video,1238185761 +46311,4308,DVD-Video,1237572487 +46311,4310,70mm,1142790357 +46311,4316,BD-R,1329078201 +46311,4317,CLV,1417817178 +46311,4318,CLV,1421095982 +46311,4320,DVD-RAM,1245785591 +46311,4321,BD-Video,1373683706 +46311,4322,Betamax,1198449604 +46311,4322,DVD-Video,1198449604 +46311,4325,BD-R,1413052150 +46311,4326,DVD-Video,1237231625 +46311,4327,BD-R,1295721732 +46311,4327,BD-Video,1384455176 +46311,4327,Betamax,1237226891 +46311,4328,BD-Video,1384455032 +46311,4329,BD-R,1357843992 +46311,4330,BD-R,1317587464 +46311,4331,CLV,1238181493 +46311,4333,CLV,1407019495 +46311,4337,70mm,1431202966 +46311,4337,Anamorphic Blow-Up,1431202966 +46311,4337,BD-R,1437074006 +46311,4338,BD-R,1399572670 +46311,4339,Betamax,1238350539 +46311,4339,VHS,1238350539 +46311,4349,Betamax,1184463211 +46311,4349,CLV,1369333608 +46311,4351,70mm,1319913110 +46311,4351,CLV,1237750382 +46311,4351,Super-35 Blow-Up,1319913110 +46311,4353,Betamax,1238347289 +46311,4354,CLV,1406940859 +46311,4355,Betamax,1239034679 +46311,4356,BD-R,1344530427 +46311,4357,CLV,1234039136 +46311,4357,DVD-Video,1234039136 +46311,4358,BD-R,1354397795 +46311,4359,BD-R,1335713863 +46311,4360,BD-R,1326835552 +46311,4361,BD-R,1378667772 +46311,4361,Betamax,1238343167 +46311,4363,70mm,1142795431 +46311,4363,Spherical Blow-Up,1237138744 +46311,4370,DVD-Video,1143313331 +46311,4390,DVD-Video,1182635185 +46311,4392,DVD-Video,1180150038 +46311,4393,DVD-Video,1181421251 +46311,4394,BD-R,1315078717 +46311,4395,BD-R,1360441437 +46311,4396,Betamax,1183247321 +46311,4399,BD-R,1339090143 +46311,4399,Betamax,1350587446 +46311,4400,BD-R,1315079244 +46311,4402,BD-R,1329077685 +46311,4403,BD-R,1385066479 +46311,4404,DVD-Video,1206386320 +46311,4405,DVD-Video,1206386282 +46311,4406,BD-R,1316721144 +46311,4407,Betamax,1237829283 +46311,4408,CLV,1238181574 +46311,4409,DVD-Video,1238182345 +46311,4410,Betamax,1238256688 +46311,4410,DVD-Video,1238256688 +46311,4410,VHS,1238256688 +46311,4413,BD-R,1311266898 +46311,4414,DVD-R,1239033837 +46311,4414,DVD-RAM,1239033837 +46311,4418,Betamax,1238268703 +46311,4419,BD-R,1384028029 +46311,4422,Betamax,1185129001 +46311,4423,BD-R,1332441807 +46311,4424,Betamax,1233422887 +46311,4425,Betamax,1237228541 +46311,4426,BD-R,1306443481 +46311,4427,70mm,1336663914 +46311,4427,BD-R,1336663914 +46311,4428,DVD-Video,1237231280 +46311,4429,BD-R,1376238066 +46311,4429,CLV,1237231745 +46311,4430,CLV,1361819314 +46311,4431,BD-R,1437071780 +46311,4432,BD-R,1293762522 +46311,4433,BD-R,1336664124 +46311,4436,BD-R,1302803393 +46311,4437,DVD-RAM,1238264249 +46311,4438,CLV,1230653810 +46311,4440,Betamax,1233077613 +46311,4442,BD-R,1369332816 +46311,4442,Betamax,1230593589 +46311,4443,70mm,1339443506 +46311,4443,Anamorphic Blow-Up,1339443506 +46311,4443,CLV,1417464410 +46311,4443,Megasound,1339443506 +46311,4445,DVD-Video,1238264773 +46311,4445,IMAX 3-D,1306606257 +46311,4445,Stereoscopic 3-D,1306093417 +46311,4456,ArriVision,1306606938 +46311,4456,nWave 3-D,1306606938 +46311,4456,Stereoscopic 3-D,1306606938 +46311,4458,BD-Video,1237233331 +46311,4459,BD-Video,1237233357 +46311,4460,DVD-Video,1270414716 +46311,4460,Iwerks 3-D,1306606765 +46311,4460,Stereoscopic 3-D,1306606765 +46311,4461,IMAX 3-D,1306606553 +46311,4461,Stereoscopic 3-D,1306606553 +46311,4462,Betamax,1143311864 +46311,4464,Betamax,1143319565 +46311,4465,Betamax,1143319623 +46311,4466,CLV,1406941036 +46311,4467,70mm,1426364459 +46311,4467,BD-Video,1426364460 +46311,4467,DVD-Video,1143319779 +46311,4467,VHS,1199049180 +46311,4470,BD-R,1401999188 +46311,4472,Betamax,1182634766 +46311,4473,Betamax,1230592869 +46311,4473,CLV,1406933615 +46311,4474,70mm,1143139643 +46311,4474,Spherical Blow-Up,1237208752 +46311,4475,DVD-Video,1182636510 +46311,4476,CLV,1182713108 +46311,4477,Betamax,1182713435 +46311,4478,BD-R,1426360729 +46311,4478,Betamax,1182713761 +46311,4479,BD-R,1373139432 +46311,4479,CLV,1426528610 +46311,4480,CLV,1182715668 +46311,4482,Betamax,1182718555 +46311,4485,DVD-Video,1183313266 +46311,4486,Betamax,1185055155 +46311,4489,Betamax,1185057399 +46311,4490,Betamax,1185127893 +46311,4492,Betamax,1185669935 +46311,4492,DVD-Video,1185669936 +46311,4493,Betamax,1185669955 +46311,4496,Betamax,1185671136 +46311,4497,Betamax,1186259791 +46311,4498,Betamax,1186259915 +46311,4498,CLV,1406937234 +46311,4503,Betamax,1206383876 +46311,4508,70mm,1403549051 +46311,4508,BD-R,1416587171 +46311,4508,CLV,1403549051 +46311,4508,Spherical Blow-Up,1403549051 +46311,4509,CLV,1407019033 +46311,4513,Betamax,1234038891 +46311,4514,Betamax,1234039569 +46311,4516,Betamax,1236620453 +46311,4517,Betamax,1237052701 +46311,4518,DVD-Video,1237053530 +46311,4522,Betamax,1237228826 +46311,4522,CLV,1407019158 +46311,4523,Betamax,1237230847 +46311,4527,Betamax,1237577487 +46311,4527,CLV,1237577487 +46311,4528,Betamax,1237579953 +46311,4530,Betamax,1237745815 +46311,4532,Betamax,1237826230 +46311,4533,DVD-RAM,1237826215 +46311,4533,VHS,1237826215 +46311,4534,CLV,1237826318 +46311,4535,BD-Video,1383506205 +46311,4537,Betamax,1237828763 +46311,4537,DVD-Video,1237828763 +46311,4540,Betamax,1237829766 +46311,4541,Betamax,1238181725 +46311,4541,CLV,1238181725 +46311,4543,70mm,1389564437 +46311,4543,Betamax,1238185511 +46311,4543,Super-35 Blow-Up,1389564440 +46311,4546,BD-R,1331229162 +46311,4547,Betamax,1238261633 +46311,4547,DVD-Video,1238261633 +46311,4548,CLV,1417817983 +46311,4550,Betamax,1238264651 +46311,4553,BD-R,1326835942 +46311,4553,Betamax,1238268410 +46311,4556,Betamax,1238344038 +46311,4557,70mm,1319912688 +46311,4557,Anamorphic Blow-Up,1319912688 +46311,4557,CLV,1417807905 +46311,4564,70mm,1427738833 +46311,4564,CLV,1427738833 +46311,4564,Spherical Blow-Up,1427738833 +46311,4565,Betamax,1143403382 +46311,4570,BD-R,1429814052 +46311,4570,CLV,1430149349 +46311,4571,CLV,1339258611 +46311,4572,70mm,1406933738 +46311,4572,CLV,1406933737 +46311,4572,Super-35 Blow-Up,1406933738 +46311,4573,CLV,1427747462 +46311,4575,CLV,1182717936 +46311,4577,70mm,1333655141 +46311,4577,Anamorphic Blow-Up,1333655141 +46311,4577,DVD-Video,1183313287 +46311,4578,Betamax,1184518576 +46311,4580,BD-R,1342717840 +46311,4582,DVD-Video,1186259958 +46311,4583,Betamax,1186882015 +46311,4583,CLV,1186882016 +46311,4585,CLV,1406941385 +46311,4587,DVD-Video,1197239230 +46311,4589,Betamax,1198448362 +46311,4593,CLV,1406941403 +46311,4602,CLV,1233433148 +46311,4607,70mm,1430150321 +46311,4607,CLV,1430150321 +46311,4607,Spherical Blow-Up,1430150321 +46311,4608,CLV,1421100486 +46311,4611,CLV,1417813546 +46311,4616,Betamax,1237054663 +46311,4618,CLV,1339262424 +46311,4622,Betamax,1237226006 +46311,4623,CLV,1407019122 +46311,4626,DVD-Video,1237231134 +46311,4626,VHS,1237231134 +46311,4627,BD-R,1440275375 +46311,4628,Betamax,1237577249 +46311,4628,CLV,1407019246 +46311,4633,CLV,1237744937 +46311,4635,Betamax,1237749022 +46311,4637,Betamax,1237824980 +46311,4641,DVD-Video,1233424917 +46311,4643,BD-Video,1406937364 +46311,4651,Betamax,1237825725 +46311,4654,CLV,1417465698 +46311,4658,Betamax,1237829515 +46311,4658,CLV,1237829515 +46311,4659,Betamax,1237830090 +46311,4661,CLV,1427737339 +46311,4662,Betamax,1238181414 +46311,4664,Betamax,1238184284 +46311,4670,Betamax,1384457691 +46311,4671,BD-R,1403545716 +46311,4673,70mm,1339263567 +46311,4673,Anamorphic Blow-Up,1339263567 +46311,4673,CLV,1339263567 +46311,4675,CLV,1407019475 +46311,4678,BD-R,1326835519 +46311,4679,CLV,1403548921 +46311,4680,DVD-Video,1238348463 +46311,4687,BD-R,1305222844 +46311,4688,CLV,1406933759 +46311,4689,70mm,1142795891 +46311,4689,BD-R,1422060892 +46311,4690,70mm,1369333317 +46311,4690,Betamax,1185127866 +46311,4690,CLV,1369333317 +46311,4690,Spherical Blow-Up,1369333317 +46311,4691,Betamax,1186876646 +46311,4692,Betamax,1234038589 +46311,4692,CLV,1369333406 +46311,4692,DVD-Video,1234038589 +46311,4695,Betamax,1238354422 +46311,4697,Betamax,1182636103 +46311,4697,DVD-Video,1230328989 +46311,4705,CLV,1369333524 +46311,4706,Betamax,1183246859 +46311,4706,CLV,1369333530 +46311,4708,BD-R,1401999984 +46311,4709,70mm,1288549277 +46311,4709,Anamorphic Blow-Up,1288549277 +46311,4709,BD-R,1288549277 +46311,4709,VHS,1237743864 +46311,4712,BD-R,1378667614 +46311,4712,DVD-R,1238354662 +46311,4713,70mm,1142736547 +46311,4713,DVD-Video,1143321691 +46311,4713,Megasound,1237215290 +46311,4713,Spherical Blow-Up,1237215290 +46311,4714,Betamax,1143404618 +46311,4720,BD-R,1416587115 +46311,4731,BD-R,1307810295 +46311,4735,BD-R,1429814268 +46311,4752,DVD-R,1237228035 +46311,4753,Betamax,1238348372 +46311,4754,BD-R,1399750272 +46311,4754,BD-Video,1413057031 +46311,4754,DVD-Video,1238354612 +46311,4767,DVD-Video,1308504048 +46311,4784,DVD-RAM,1245781771 +46311,4785,DVD-R,1233430301 +46311,4786,BD-R,1403545780 +46311,4786,DVD-RAM,1240151213 +46311,4787,CLV,1237132884 +46311,4789,CLV,1237748299 +46311,4789,DVD-R,1237748299 +46311,4789,DVD-RAM,1237748299 +46311,4790,70mm,1142799243 +46311,4790,Anamorphic Blow-Up,1237140000 +46311,4792,BD-R,1352398621 +46311,4792,CLV,1361820192 +46311,4792,DVD-RAM,1218476374 +46311,4792,Illusion-O,1352398621 +46311,4793,DVD-RAM,1237232633 +46311,4796,Technirama,1418420991 +46311,4797,BD-R,1365878763 +46311,4798,BD-R,1423770407 +46311,4799,70mm,1333992582 +46311,4799,BD-R,1365878848 +46311,4799,BD-Video,1426364763 +46311,4799,CLV,1236617295 +46311,4799,DVD-R,1236617295 +46311,4799,Ultra Panavision 70,1333992582 +46311,4800,BD-R,1399749460 +46311,4801,CLV,1369939908 +46311,4802,BD-R,1298139817 +46311,4803,CLV,1369940050 +46311,4804,BD-R,1440872939 +46311,4805,BD-R,1335715494 +46311,4805,Technirama,1418420556 +46311,4806,BD-R,1401999727 +46311,4806,CLV,1238185591 +46311,4806,DVD-RAM,1238185591 +46311,4807,BD-R,1336664416 +46311,4807,Betamax,1238258057 +46311,4808,CLV,1406940883 +46311,4809,BD-R,1392663442 +46311,4809,Betamax,1238185983 +46311,4811,BD-R,1426361061 +46311,4812,70mm,1143138876 +46311,4812,Betamax,1238257244 +46311,4812,Spherical Blow-Up,1237207861 +46311,4825,BD-R,1422061000 +46311,4826,DVD-Video,1182713370 +46311,4827,Betamax,1182716774 +46311,4830,CLV,1406941143 +46311,4831,70mm,1142800285 +46311,4831,Anamorphic Blow-Up,1237140994 +46311,4835,BD-R,1413056527 +46311,4835,CLV,1403549284 +46311,4836,CLV,1430149561 +46311,4837,VHS,1185670359 +46311,4840,BD-R,1332441090 +46311,4841,70mm,1142800307 +46311,4841,Anamorphic Blow-Up,1237141064 +46311,4855,CLV,1406937202 +46311,4857,70mm,1427571345 +46311,4857,Anamorphic Blow-Up,1427571345 +46311,4857,BD-R,1427571345 +46311,4857,CLV,1233076645 +46311,4858,DVD-Video,1233432209 +46311,4859,CLV,1430151001 +46311,4860,Betamax,1354480291 +46311,4861,DVD-Video,1237231493 +46311,4863,DVD-R,1233076455 +46311,4870,BD-R,1357844338 +46311,4871,BD-R,1414264479 +46311,4873,DVD-Video,1238350726 +46311,4874,DVD-Video,1236621231 +46311,4878,BD-Video,1294519575 +46311,4878,DVD-Video,1187485279 +46311,4881,DVD-RAM,1245182682 +46311,4886,Dimensionalized 2-D to 3-D for reissue in 2012,1369328941 +46311,4894,Betamax,1238341056 +46311,4894,DVD-RAM,1254507703 +46311,4896,55 movies every kid should see--Entertainment Weekly,1407083134 +46311,4905,BD-R,1405199929 +46311,4908,Betamax,1237746059 +46311,4911,CLV,1236617971 +46311,4912,70mm,1278793895 +46311,4912,Anamorphic Blow-Up,1278793895 +46311,4912,BD-R,1390855458 +46311,4912,DVD-RAM,1278793894 +46311,4913,DVD-RAM,1287339464 +46311,4914,BD-R,1354824586 +46311,4914,DVD-R,1230651343 +46311,4915,Betamax,1182636528 +46311,4916,BD-R,1299181288 +46311,4916,CLV,1406940609 +46311,4917,BD-R,1349372309 +46311,4917,Betamax,1237226373 +46311,4918,BD-R,1415477580 +46311,4920,DVD-RAM,1344530940 +46311,4921,BD-R,1390857351 +46311,4921,DVD-R,1237133440 +46311,4925,BD-R,1423773142 +46311,4927,BD-R,1293761191 +46311,4927,Betamax,1237054348 +46311,4929,Betamax,1238343918 +46311,4932,Betamax,1197236574 +46311,4932,CLV,1197236574 +46311,4936,70mm,1142800374 +46311,4936,DVD-Video,1206387906 +46311,4936,Spherical Blow-Up,1237140891 +46311,4937,BD-R,1403546979 +46311,4938,Betamax,1181423131 +46311,4939,Betamax,1233076805 +46311,4940,Betamax,1233077246 +46311,4941,CLV,1417459845 +46311,4941,DVD-RAM,1242916265 +46311,4942,DVD-R,1143404270 +46311,4942,DVD-RAM,1143404270 +46311,4943,DVD-RAM,1254508030 +46311,4944,DVD-RAM,1277659835 +46311,4947,CLV,1406936178 +46311,4948,DVD-R,1234040551 +46311,4952,DVD-Video,1366512843 +46311,4953,BD-R,1367084860 +46311,4954,BD-R,1363289927 +46311,4956,BD-R,1302803233 +46311,4956,Betamax,1238262408 +46311,4957,Betamax,1238263183 +46311,4957,CLV,1238263183 +46311,4966,BD-R,1369940752 +46311,4966,DVD-R,1236613519 +46311,4966,DVD-RAM,1236613519 +46311,4969,BD-R,1413051961 +46311,4970,BD-R,1437070373 +46311,4970,DVD-RAM,1277659857 +46311,4971,Betamax,1237233126 +46311,4971,DVD-Video,1237233125 +46311,4972,DVD-RAM,1254507885 +46311,4979,BD-Video,1364059921 +46311,4980,CLV,1339091507 +46311,4984,BD-R,1332441855 +46311,4985,BD-R,1390857370 +46311,4985,Betamax,1238183133 +46311,4985,VHS,1238183133 +46311,4987,BD-R,1349372573 +46311,4987,McNabb 3-D,1306603229 +46311,4987,Stereoscopic 3-D,1306603229 +46311,4993,55 movies every kid should see--Entertainment Weekly,1407083839 +46311,4993,DVD-Video,1237225392 +46311,4994,DVD-Video,1237227020 +46311,4995,DVD-Video,1182636630 +46311,4998,BD-R,1293762664 +46311,4998,Betamax,1186876955 +46311,4999,BD-R,1363459614 +46311,5000,Betamax,1237229478 +46311,5001,BD-R,1415477692 +46311,5003,DVD-R,1237578374 +46311,5003,DVD-RAM,1237578374 +46311,5004,BD-R,1381080180 +46311,5004,CLV,1274982437 +46311,5004,DVD-RAM,1245765269 +46311,5005,BD-R,1422062324 +46311,5007,BD-R,1298140370 +46311,5008,BD-R,1328042538 +46311,5010,BD-Video,1443312495 +46311,5012,Betamax,1239034239 +46311,5015,BD-Video,1338053191 +46311,5017,BD-R,1390856864 +46311,5021,BD-R,1299181375 +46311,5021,CLV,1437071448 +46311,5022,BD-R,1333645106 +46311,5029,CLV,1417456530 +46311,5031,Betamax,1237228255 +46311,5031,DVD-Video,1237228255 +46311,5032,Betamax,1237827976 +46311,5036,BD-R,1379790801 +46311,5036,CLV,1369333289 +46311,5039,70mm,1142800715 +46311,5039,Anamorphic Blow-Up,1237141243 +46311,5039,Betamax,1197234909 +46311,5040,Betamax,1185069202 +46311,5041,Betamax,1233076993 +46311,5042,Betamax,1233084316 +46311,5043,BD-R,1443312753 +46311,5044,Betamax,1233084756 +46311,5045,BD-Video,1339701447 +46311,5045,CLV,1233422366 +46311,5045,DVD-Video,1366513112 +46311,5049,Betamax,1143312284 +46311,5049,CLV,1339258484 +46311,5053,CLV,1406933781 +46311,5054,70mm,1296680655 +46311,5054,BD-R,1437940111 +46311,5054,Betamax,1182717389 +46311,5054,CAV,1230329919 +46311,5054,Spherical Blow-Up,1296680655 +46311,5054,Super Panavision 70,1296680655 +46311,5055,CLV,1406934208 +46311,5056,BD-Video,1433637378 +46311,5056,DVD-Video,1292632059 +46311,5057,BD-R,1405197331 +46311,5058,BD-Video,1433637403 +46311,5058,DVD-Video,1292632131 +46311,5059,BD-Video,1433637667 +46311,5059,DVD-Video,1292632148 +46311,5060,BD-R,1437071844 +46311,5060,CLV,1237226291 +46311,5061,BD-R,1416587220 +46311,5061,Betamax,1237573220 +46311,5061,CLV,1339093390 +46311,5062,BD-R,1293761501 +46311,5062,VHS,1238180553 +46311,5063,Betamax,1237600594 +46311,5063,VistaVision,1418407916 +46311,5072,DVD-Video,1237230322 +46311,5077,CLV,1185128116 +46311,5078,Betamax,1206387876 +46311,5079,BD-R,1399750934 +46311,5085,BD-R,1352396818 +46311,5085,DVD-R,1183247574 +46311,5085,DVD-RAM,1183247574 +46311,5097,BD-R,1396551475 +46311,5099,BD-R,1396551455 +46311,5099,CLV,1369334414 +46311,5100,Betamax,1237227616 +46311,5105,DVD-Video,1187485156 +46311,5113,BD-R,1299181010 +46311,5114,BD-R,1295722778 +46311,5116,BD-R,1396551727 +46311,5117,BD-R,1339089816 +46311,5118,BD-R,1426361130 +46311,5119,BD-R,1332441830 +46311,5120,BD-R,1369332507 +46311,5121,BD-Video,1433637426 +46311,5121,DVD-Video,1292632162 +46311,5122,DVD-RAM,1288547988 +46311,5125,Betamax,1238348198 +46311,5125,CLV,1437071630 +46311,5136,DVD-Video,1238351818 +46311,5142,BD-R,1331229251 +46311,5143,BD-R,1396551649 +46311,5144,BD-R,1357844627 +46311,5145,DVD-Video,1198455854 +46311,5147,DVD-Video,1198456255 +46311,5156,VHS,1182713178 +46311,5158,VHS,1185670233 +46311,5159,BD-Video,1437941372 +46311,5162,Betamax,1236620035 +46311,5162,CLV,1421103823 +46311,5165,Betamax,1387144284 +46311,5167,BD-R,1418406293 +46311,5168,BD-R,1443314671 +46311,5169,BD-R,1323574290 +46311,5169,DVD-Video,1367860185 +46311,5177,BD-R,1392663396 +46311,5177,Betamax,1237226863 +46311,5177,DVD-R,1237226863 +46311,5179,BD-R,1331229692 +46311,5180,VHS,1233430235 +46311,5181,Betamax,1233432708 +46311,5182,Betamax,1233433378 +46311,5183,Betamax,1233433433 +46311,5184,70mm,1365878892 +46311,5184,Anamorphic Blow-Up,1365878892 +46311,5184,BD-R,1365878892 +46311,5184,BD-Video,1437942300 +46311,5184,Betamax,1233434143 +46311,5184,DVD-RAM,1233434143 +46311,5185,Betamax,1234035757 +46311,5187,BD-R,1329075763 +46311,5189,BD-Video,1304788508 +46311,5192,70mm,1142800418 +46311,5192,Anamorphic Blow-Up,1237140950 +46311,5193,70mm,1142800443 +46311,5193,Spherical Blow-Up,1237141105 +46311,5196,70mm,1315078758 +46311,5196,BD-R,1315078758 +46311,5196,Betamax,1237056146 +46311,5197,BD-R,1329078181 +46311,5199,DVD-Video,1237133917 +46311,5202,BD-R,1405197288 +46311,5204,Betamax,1186261036 +46311,5205,BD-R,1323573796 +46311,5206,Betamax,1237572444 +46311,5208,70mm,1142800474 +46311,5208,Anamorphic Blow-Up,1237141047 +46311,5210,Betamax,1230652111 +46311,5225,DVD-Video,1239034052 +46311,5226,Betamax,1143321528 +46311,5227,70mm,1335715898 +46311,5227,BD-R,1335715898 +46311,5227,Super Technirama 70,1335715898 +46311,5228,BD-R,1416586366 +46311,5230,BD-R,1307811790 +46311,5232,BD-R,1437073801 +46311,5233,BD-R,1422061148 +46311,5237,Betamax,1238265662 +46311,5241,BD-R,1426360751 +46311,5242,Betamax,1238181653 +46311,5245,BD-R,1443311784 +46311,5246,Betamax,1238186978 +46311,5247,BD-R,1374423963 +46311,5247,Betamax,1238186972 +46311,5248,Betamax,1238186985 +46311,5249,Betamax,1238257611 +46311,5250,CLV,1437071611 +46311,5253,VHS,1238267413 +46311,5259,DVD-RAM,1253209500 +46311,5262,BD-R,1401996762 +46311,5262,DVD-RAM,1264887855 +46311,5263,BD-R,1399751068 +46311,5263,CLV,1369334119 +46311,5263,DVD-RAM,1264887652 +46311,5275,DVD-Video,1182717082 +46311,5276,Betamax,1185129117 +46311,5276,DVD-Video,1185129117 +46311,5277,Betamax,1206384234 +46311,5278,CLV,1437071587 +46311,5290,BD-R,1354398074 +46311,5290,DVD-RAM,1250526851 +46311,5291,BD-Video,1364059875 +46311,5291,Betamax,1237824347 +46311,5291,DVD-Video,1280449119 +46311,5292,CLV,1369333739 +46311,5296,DVD-Video,1322326240 +46311,5297,DVD-Video,1184463172 +46311,5300,BD-R,1385066425 +46311,5301,BD-R,1369940678 +46311,5301,Betamax,1182713983 +46311,5302,CLV,1369333588 +46311,5303,CLV,1406940527 +46311,5304,BD-R,1371410354 +46311,5304,DVD-R,1237601038 +46311,5305,CLV,1237826101 +46311,5305,DVD-RAM,1237826101 +46311,5308,70mm,1143139419 +46311,5308,Spherical Blow-Up,1237208314 +46311,5310,Betamax,1238344462 +46311,5310,DVD-Video,1238344462 +46311,5311,Betamax,1238351239 +46311,5332,Betamax,1181423148 +46311,5333,BD-R,1360442366 +46311,5334,CLV,1406941337 +46311,5335,Betamax,1185055882 +46311,5335,DVD-Video,1185055882 +46311,5341,CLV,1430154794 +46311,5342,Betamax,1237578762 +46311,5344,Betamax,1238268468 +46311,5349,BD-Video,1413058243 +46311,5349,DVD-Video,1238257683 +46311,5352,DVD-RAM,1274973602 +46311,5353,BD-R,1395592858 +46311,5354,DVD-RAM,1258146055 +46311,5356,DVD-RAM,1233425366 +46311,5358,70mm,1416586467 +46311,5358,BD-R,1416586467 +46311,5358,CLV,1437071427 +46311,5358,Spherical Blow-Up,1416586467 +46311,5359,DVD-Video,1237823837 +46311,5360,Betamax,1238264206 +46311,5366,DVD-R,1238354512 +46311,5366,DVD-RAM,1238354512 +46311,5367,Betamax,1237574180 +46311,5367,DVD-Video,1237574180 +46311,5368,DVD-Video,1198455484 +46311,5369,Betamax,1182713028 +46311,5369,DVD-RAM,1273767682 +46311,5370,Betamax,1182713052 +46311,5372,CLV,1426528765 +46311,5373,BD-R,1373138718 +46311,5374,DVD-RAM,1349545201 +46311,5375,BD-R,1329077928 +46311,5378,BD-Video,1443312577 +46311,5378,DVD-Video,1443312649 +46311,5378,IMAX DMR,1443312577 +46311,5382,BD-R,1440276569 +46311,5383,BD-R,1352396479 +46311,5383,DVD-RAM,1344721705 +46311,5384,BD-R,1339958413 +46311,5385,Betamax,1237054306 +46311,5386,BD-R,1413055726 +46311,5386,VistaVision,1413055726 +46311,5390,DVD-Video,1185128211 +46311,5392,BD-R,1347741375 +46311,5392,Betamax,1183246357 +46311,5394,BD-R,1319912195 +46311,5396,BD-R,1331229743 +46311,5397,DVD-RAM,1237231977 +46311,5398,BD-R,1423772790 +46311,5399,BD-R,1334860396 +46311,5404,BD-R,1403547164 +46311,5410,70mm,1142797118 +46311,5411,BD-R,1323566934 +46311,5413,Betamax,1187483908 +46311,5418,BD-Video,1434846885 +46311,5427,DVD-RAM,1248881917 +46311,5428,Betamax,1184519248 +46311,5433,Betamax,1238186038 +46311,5435,Betamax,1234037894 +46311,5436,BD-R,1329075788 +46311,5437,Betamax,1237227915 +46311,5438,CLV,1407019205 +46311,5439,CLV,1237828880 +46311,5439,VHS,1237828880 +46311,5440,BD-R,1316721124 +46311,5445,DVD-Video,1237231100 +46311,5451,DVD-RAM,1254517794 +46311,5451,DVD-Video,1322326286 +46311,5453,BD-R,1426360703 +46311,5454,CLV,1375042007 +46311,5455,VHS,1237579653 +46311,5459,BD-Video,1413055149 +46311,5464,DVD-Video,1237826936 +46311,5468,BD-R,1293761480 +46311,5468,BD-Video,1330803375 +46311,5469,DVD-R,1233429693 +46311,5470,CLV,1236610680 +46311,5470,DVD-Video,1198455717 +46311,5471,Betamax,1237745749 +46311,5472,BD-R,1395592690 +46311,5472,CLV,1228514351 +46311,5475,BD-R,1331229806 +46311,5481,BD-Video,1384455145 +46311,5489,BD-Video,1433637476 +46311,5489,Betamax,1237579047 +46311,5489,DVD-Video,1292632196 +46311,5490,BD-R,1304786514 +46311,5493,BD-R,1330293990 +46311,5495,DVD-RAM,1274973413 +46311,5497,BD-R,1371410949 +46311,5497,DVD-R,1237742796 +46311,5497,DVD-RAM,1237742796 +46311,5498,CLV,1237824865 +46311,5498,DVD-Video,1280449136 +46311,5499,BD-R,1405198178 +46311,5499,VHS,1237827315 +46311,5500,Betamax,1238343459 +46311,5500,CLV,1238343473 +46311,5500,DVD-Video,1238343459 +46311,5522,70mm,1339089624 +46311,5522,BD-R,1339089624 +46311,5522,Spherical Blow-Up,1339089624 +46311,5522,VHS,1237827905 +46311,5525,BD-R,1396551083 +46311,5530,DVD-Video,1238186127 +46311,5540,BD-R,1369332549 +46311,5540,CLV,1406933966 +46311,5540,DVD-R,1184524173 +46311,5541,CLV,1427745934 +46311,5543,BD-R,1427571458 +46311,5544,BD-R,1437072053 +46311,5544,Betamax,1238340911 +46311,5544,CLV,1274984791 +46311,5544,DVD-RAM,1254517519 +46311,5551,BD-R,1289496644 +46311,5552,BD-R,1290880020 +46311,5553,70mm,1143139388 +46311,5553,Betamax,1238258456 +46311,5553,Spherical Blow-Up,1237208222 +46311,5555,70mm,1142800957 +46311,5555,Anamorphic Blow-Up,1237141260 +46311,5560,BD-R,1333645071 +46311,5560,Betamax,1143312588 +46311,5567,Betamax,1236613571 +46311,5568,Betamax,1236620485 +46311,5569,Betamax,1237053727 +46311,5569,DVD-RAM,1258141884 +46311,5583,DVD-RAM,1289496879 +46311,5583,DVD-Video,1366480208 +46311,5587,Betamax,1234037292 +46311,5588,Betamax,1234037299 +46311,5590,BD-R,1445023036 +46311,5592,VHS,1237232564 +46311,5599,CLV,1238264834 +46311,5599,DVD-Video,1206386352 +46311,5601,BD-R,1422061707 +46311,5602,BD-R,1289493863 +46311,5603,BD-R,1298139930 +46311,5604,BD-R,1394313309 +46311,5604,DVD-RAM,1238178852 +46311,5615,BD-R,1332441367 +46311,5617,DVD-Video,1238181308 +46311,5618,DVD-Video,1238257857 +46311,5619,DVD-Video,1238344901 +46311,5630,DVD-Video,1237824898 +46311,5637,CLV,1233083719 +46311,5638,CLV,1233426928 +46311,5640,BD-R,1342122679 +46311,5642,DVD-RAM,1281043854 +46311,5643,BD-Video,1437942724 +46311,5644,BD-R,1418409582 +46311,5646,70mm,1430154149 +46311,5646,Anamorphic Blow-Up,1430154149 +46311,5646,CLV,1430154149 +46311,5649,BD-R,1289495834 +46311,5651,BD-R,1354828637 +46311,5651,DVD-RAM,1281043984 +46311,5653,BD-Video,1433637192 +46311,5655,CLV,1361819627 +46311,5657,CLV,1406941417 +46311,5660,BD-R,1333645129 +46311,5666,DVD-Video,1237828463 +46311,5679,BD-Video,1413051871 +46311,5684,BD-Video,1437942743 +46311,5686,BD-R,1390855229 +46311,5689,CLV,1406933680 +46311,5690,DVD-Video,1233429930 +46311,5692,Betamax,1237229438 +46311,5692,CLV,1406936729 +46311,5693,Betamax,1237829841 +46311,5694,70mm,1143135461 +46311,5694,Betamax,1238261257 +46311,5694,Spherical Blow-Up,1237142182 +46311,5695,BD-R,1422063159 +46311,5695,Betamax,1238341717 +46311,5696,Betamax,1238348164 +46311,5705,Betamax,1239033952 +46311,5706,BD-R,1357843950 +46311,5706,Betamax,1143311421 +46311,5707,BD-R,1342717122 +46311,5707,Betamax,1143319486 +46311,5712,CLV,1417455129 +46311,5713,BD-R,1289496507 +46311,5715,Betamax,1183246253 +46311,5721,BD-R,1352396404 +46311,5721,Betamax,1184520596 +46311,5723,Betamax,1185069751 +46311,5723,CLV,1185069751 +46311,5726,Betamax,1185673936 +46311,5727,VHS,1186260049 +46311,5728,CLV,1406941369 +46311,5729,Betamax,1198453876 +46311,5731,70mm,1142801182 +46311,5731,Anamorphic Blow-Up,1237215768 +46311,5731,Betamax,1198454268 +46311,5732,Betamax,1206384736 +46311,5733,Betamax,1232747077 +46311,5733,CLV,1339261142 +46311,5741,BD-R,1377451416 +46311,5742,Betamax,1233077313 +46311,5743,Betamax,1233084571 +46311,5743,CLV,1233084571 +46311,5745,Betamax,1233084698 +46311,5745,CLV,1437071527 +46311,5746,BD-R,1292631786 +46311,5746,BD-Video,1304788486 +46311,5747,BD-R,1293761218 +46311,5747,CLV,1427737137 +46311,5750,Betamax,1233427207 +46311,5752,BD-R,1387067189 +46311,5752,Betamax,1233430501 +46311,5759,DVD-RAM,1237052521 +46311,5760,Betamax,1237052644 +46311,5760,CLV,1237052644 +46311,5761,Betamax,1237054901 +46311,5763,BD-R,1354824407 +46311,5764,Betamax,1237133961 +46311,5769,BD-R,1440276166 +46311,5770,VHS,1237573285 +46311,5771,Betamax,1237574227 +46311,5772,BD-R,1399572426 +46311,5774,Betamax,1360618495 +46311,5775,Betamax,1237577860 +46311,5776,BD-R,1426360345 +46311,5776,Betamax,1237600958 +46311,5777,BD-R,1363291443 +46311,5778,Betamax,1237748958 +46311,5779,Betamax,1237749751 +46311,5780,CLV,1339262898 +46311,5794,BD-R,1390854473 +46311,5795,BD-R,1418409431 +46311,5796,70mm,1248882505 +46311,5796,BD-R,1357842169 +46311,5796,DVD-RAM,1248882505 +46311,5797,Betamax,1185068572 +46311,5799,70mm,1296679930 +46311,5799,BD-R,1414263000 +46311,5799,CLV,1414263029 +46311,5799,DVD-R,1414263029 +46311,5799,Super Panavision 70,1296679930 +46311,5800,BD-R,1339958473 +46311,5801,BD-R,1401999546 +46311,5801,Betamax,1237828816 +46311,5802,BD-R,1298139602 +46311,5808,DVD-Video,1238351657 +46311,5825,DVD-R,1237055592 +46311,5825,DVD-Video,1198455832 +46311,5826,DVD-R,1237826735 +46311,5830,BD-R,1347740931 +46311,5830,DVD-R,1237575428 +46311,5830,DVD-RAM,1237575428 +46311,5833,DVD-Video,1187484664 +46311,5836,BD-R,1423771505 +46311,5836,VistaVision,1418407560 +46311,5843,CLV,1421096472 +46311,5846,CLV,1430157363 +46311,5850,BD-R,1302803435 +46311,5850,Betamax,1237826908 +46311,5853,Betamax,1237830132 +46311,5853,DVD-Video,1237830132 +46311,5854,70mm,1407019438 +46311,5854,CLV,1407019437 +46311,5854,Spherical Blow-Up,1407019437 +46311,5859,Betamax,1238257125 +46311,5862,Betamax,1238262313 +46311,5863,Betamax,1238265394 +46311,5865,Betamax,1238265815 +46311,5867,BD-R,1349372207 +46311,5867,Betamax,1238268439 +46311,5867,CLV,1417814275 +46311,5869,BD-R,1371411146 +46311,5872,BD-Video,1390854086 +46311,5878,DVD-Video,1238265527 +46311,5891,Betamax,1236610021 +46311,5893,CLV,1237054152 +46311,5893,DVD-Video,1237054152 +46311,5895,Betamax,1237227123 +46311,5898,Betamax,1238264690 +46311,5899,70mm,1391008501 +46311,5899,CLV,1239034871 +46311,5899,Super Technirama 70,1391008501 +46311,5910,Betamax,1306095292 +46311,5917,70mm,1142800976 +46311,5917,Sensurround Plus,1237215426 +46311,5917,Spherical Blow-Up,1237215426 +46311,5919,Betamax,1143403962 +46311,5921,Betamax,1181422758 +46311,5923,Betamax,1181422975 +46311,5925,Betamax,1182636480 +46311,5926,Betamax,1182637444 +46311,5930,70mm,1142801055 +46311,5932,BD-R,1332441594 +46311,5933,Betamax,1183247279 +46311,5933,CLV,1427737515 +46311,5935,Betamax,1185054954 +46311,5938,BD-R,1445022107 +46311,5940,Betamax,1198447896 +46311,5944,BD-Video,1339701589 +46311,5952,DVD-Video,1318181432 +46311,5956,BD-Video,1413055098 +46311,5960,CLV,1406941113 +46311,5962,CLV,1318516839 +46311,5963,BD-R,1305222722 +46311,5964,CLV,1426526995 +46311,5965,Betamax,1197237380 +46311,5965,DVD-RAM,1270413629 +46311,5967,Technirama,1418420457 +46311,5968,CLV,1417817319 +46311,5972,BD-R,1373139113 +46311,5972,CLV,1274983762 +46311,5974,BD-R,1347733868 +46311,5975,DVD-Video,1238351066 +46311,5975,VistaVision,1418407045 +46311,5977,BD-R,1384028115 +46311,5977,Betamax,1238353428 +46311,5979,DVD-R,1230591801 +46311,5980,BD-R,1295723311 +46311,5983,DVD-RAM,1343326937 +46311,5984,CLV,1238261672 +46311,5986,BD-R,1317587742 +46311,5988,Betamax,1237823086 +46311,5991,BD-Video,1413054988 +46311,5991,DVD-Video,1413054988 +46311,5995,DVD-Video,1237748808 +46311,6001,Betamax,1237050338 +46311,6020,BD-R,1437072034 +46311,6020,Betamax,1143321056 +46311,6020,CLV,1426528509 +46311,6021,Betamax,1143402430 +46311,6023,BD-R,1304786452 +46311,6025,CLV,1403548641 +46311,6031,BD-R,1402000438 +46311,6032,BD-R,1369332531 +46311,6032,Betamax,1237133379 +46311,6033,CLV,1421100331 +46311,6035,DVD-Video,1198455939 +46311,6036,Betamax,1238180612 +46311,6043,DVD-R,1236613146 +46311,6043,DVD-RAM,1236613146 +46311,6044,Betamax,1182715549 +46311,6051,DVD-RAM,1233433094 +46311,6063,DVD-Video,1237229207 +46311,6064,BD-R,1384028591 +46311,6065,BD-R,1319911798 +46311,6073,BD-R,1332441878 +46311,6074,Betamax,1198453864 +46311,6077,BD-R,1413052063 +46311,6078,70mm,1142801228 +46311,6078,Anamorphic Blow-Up,1237141530 +46311,6082,Betamax,1233430653 +46311,6090,Betamax,1237051079 +46311,6094,Betamax,1237056258 +46311,6096,Betamax,1237227272 +46311,6100,Betamax,1237230621 +46311,6100,DVD-Video,1237230621 +46311,6102,Betamax,1237231596 +46311,6104,Betamax,1237232729 +46311,6109,70mm,1389563681 +46311,6109,CLV,1426526583 +46311,6109,Spherical Blow-Up,1389563683 +46311,6114,Betamax,1237745824 +46311,6116,DVD-R,1237749814 +46311,6120,Betamax,1237822805 +46311,6123,BD-R,1332441740 +46311,6127,Betamax,1238185486 +46311,6128,Betamax,1238186423 +46311,6129,Betamax,1238186472 +46311,6131,Betamax,1238256549 +46311,6134,BD-R,1403545678 +46311,6134,Betamax,1238261169 +46311,6135,BD-R,1437071195 +46311,6136,BD-R,1416586628 +46311,6136,Betamax,1238264105 +46311,6139,70mm,1142802526 +46311,6139,Betamax,1238267235 +46311,6139,Spherical Blow-Up,1237141788 +46311,6140,VHS,1238347865 +46311,6143,BD-R,1299181422 +46311,6149,Betamax,1233076856 +46311,6150,BD-R,1413049748 +46311,6150,Betamax,1239033748 +46311,6152,BD-R,1349372598 +46311,6153,Betamax,1239034723 +46311,6157,BD-Video,1384455198 +46311,6168,CLV,1406941016 +46311,6170,55 movies every kid should see--Entertainment Weekly,1407083280 +46311,6170,70mm,1347740751 +46311,6170,BD-R,1347740751 +46311,6170,CLV,1417811178 +46311,6174,CLV,1403548553 +46311,6175,Betamax,1237230234 +46311,6177,Betamax,1237573882 +46311,6177,CLV,1403548532 +46311,6179,Betamax,1237821576 +46311,6179,DVD-Video,1237821576 +46311,6181,BD-R,1445019548 +46311,6183,BD-R,1418409724 +46311,6184,CLV,1237227550 +46311,6197,BD-R,1344530328 +46311,6201,Betamax,1237053416 +46311,6205,CLV,1430151905 +46311,6208,DVD-Video,1366486961 +46311,6225,70mm,1390857428 +46311,6225,BD-R,1390857428 +46311,6225,DVD-RAM,1237050792 +46311,6225,Super Technirama 70,1390857428 +46311,6227,VistaVision,1418407298 +46311,6228,BD-R,1379791395 +46311,6232,70mm,1390854761 +46311,6232,Anamorphic Blow-Up,1390854762 +46311,6232,BD-R,1390854761 +46311,6234,BD-R,1365879887 +46311,6236,VistaVision,1418407143 +46311,6239,BD-R,1392663746 +46311,6239,DVD-RAM,1236620676 +46311,6245,70mm,1418409887 +46311,6245,Anamorphic Blow-Up,1418409887 +46311,6245,BD-R,1418409887 +46311,6245,DVD-R,1238264343 +46311,6245,DVD-RAM,1238264343 +46311,6247,BD-R,1396551171 +46311,6247,Betamax,1239033378 +46311,6247,DVD-RAM,1326834235 +46311,6254,BD-R,1335714647 +46311,6255,70mm,1333992240 +46311,6255,CLV,1182712976 +46311,6255,Dimension-150,1333992240 +46311,6257,DVD-Video,1234040527 +46311,6260,70mm,1142795385 +46311,6260,BD-Video,1331230338 +46311,6260,DVD-R,1237827237 +46311,6270,DVD-Video,1143320976 +46311,6271,BD-R,1378667502 +46311,6271,Betamax,1185673115 +46311,6273,BD-R,1323566855 +46311,6277,CLV,1430155838 +46311,6278,DVD-RAM,1233076377 +46311,6283,BD-R,1326835620 +46311,6289,DVD-RAM,1254345473 +46311,6289,Reality Camera System,1306607094 +46311,6289,Stereoscopic 3-D,1254345510 +46311,6296,DVD-Video,1237230735 +46311,6299,DVD-Video,1238355045 +46311,6301,CLV,1369333783 +46311,6303,70mm,1310658130 +46311,6303,BD-R,1355602125 +46311,6303,CLV,1310658130 +46311,6305,DVD-R,1206387714 +46311,6305,DVD-RAM,1206387714 +46311,6308,Betamax,1237054787 +46311,6308,CLV,1421102564 +46311,6309,CLV,1421100230 +46311,6310,CLV,1237230034 +46311,6316,70mm,1142799813 +46311,6316,Betamax,1239033133 +46311,6327,DVD-RAM,1232738666 +46311,6333,BD-Video,1401997163 +46311,6333,DVD-Video,1239033932 +46311,6345,70mm,1143137077 +46311,6345,Betamax,1184520556 +46311,6345,Super-35 Blow-Up,1237207701 +46311,6346,70mm,1143137959 +46311,6346,BD-R,1373139713 +46311,6346,Super-35 Blow-Up,1237207800 +46311,6347,Betamax,1182636558 +46311,6347,DVD-RAM,1230329113 +46311,6348,Betamax,1198450979 +46311,6349,BD-R,1319912065 +46311,6353,DVD-R,1237827092 +46311,6355,BD-R,1403545517 +46311,6355,CLV,1274981303 +46311,6356,VistaVision,1418407194 +46311,6357,BD-R,1349373157 +46311,6357,CLV,1234037016 +46311,6357,VistaVision,1349373157 +46311,6358,BD-R,1378668027 +46311,6358,CLV,1237051114 +46311,6358,Metrovision Tri-Dee,1306600152 +46311,6358,Stereoscopic 3-D,1306600152 +46311,6365,IMAX DMR,1306683442 +46311,6366,DVD-R,1197234716 +46311,6366,DVD-RAM,1197234716 +46311,6377,55 movies every kid should see--Entertainment Weekly,1407082678 +46311,6377,BD-Video,1364059801 +46311,6377,Dimensionalized 2-D to 3-D for reissue in 2012,1369328599 +46311,6385,DVD-Video,1238351938 +46311,6386,BD-R,1427572515 +46311,6390,Betamax,1238185925 +46311,6390,CLV,1238185925 +46311,6390,DVD-Video,1238185925 +46311,6392,BD-R,1405198202 +46311,6395,DVD-R,1230654933 +46311,6396,BD-R,1354824212 +46311,6396,DVD-R,1186877414 +46311,6396,DVD-Video,1366479378 +46311,6398,70mm,1311265674 +46311,6398,BD-R,1311265674 +46311,6401,BD-R,1443311599 +46311,6403,BD-R,1385067071 +46311,6404,DVD-Video,1198456237 +46311,6405,BD-R,1369940542 +46311,6407,BD-R,1383506381 +46311,6407,Betamax,1238350832 +46311,6410,Betamax,1183247394 +46311,6411,BD-R,1396552192 +46311,6413,70mm,1142800325 +46311,6413,Betamax,1232744333 +46311,6414,BD-R,1369941084 +46311,6417,CLV,1417816791 +46311,6419,CLV,1427746864 +46311,6420,Technirama,1418420499 +46311,6428,70mm,1142795465 +46311,6428,Betamax,1238346885 +46311,6432,BD-R,1401999777 +46311,6440,CLV,1182635790 +46311,6441,70mm,1248884918 +46311,6441,DVD-RAM,1248884918 +46311,6443,70mm,1296677389 +46311,6443,DVD-R,1182713547 +46311,6443,DVD-RAM,1182713547 +46311,6443,DVD-Video,1236609427 +46311,6443,Grandeur,1296677389 +46311,6448,BD-R,1352398652 +46311,6449,BD-R,1437073069 +46311,6452,BD-R,1437073032 +46311,6452,Betamax,1352141845 +46311,6455,BD-R,1311265794 +46311,6460,BD-R,1413055358 +46311,6462,70mm,1142794060 +46311,6470,BD-R,1433635458 +46311,6471,VHS,1186876710 +46311,6472,VHS,1197239859 +46311,6477,BD-R,1403547456 +46311,6478,Betamax,1237055647 +46311,6480,BD-R,1363289824 +46311,6480,Betamax,1238269005 +46311,6481,CLV,1427747220 +46311,6495,BD-R,1304786630 +46311,6497,70mm,1431203072 +46311,6497,Anamorphic Blow-Up,1431203072 +46311,6497,DVD-R,1236616811 +46311,6497,DVD-RAM,1236616811 +46311,6498,70mm,1142796268 +46311,6499,BD-R,1380472093 +46311,6499,CLV,1237601653 +46311,6499,DVD-RAM,1237601653 +46311,6499,DVD-Video,1233430789 +46311,6500,DVD-Video,1366482362 +46311,6502,DVD-Video,1143312132 +46311,6512,70mm,1278794030 +46311,6512,DVD-RAM,1278794030 +46311,6512,Super Technirama 70,1278794030 +46311,6515,BD-R,1369940811 +46311,6516,BD-R,1395592944 +46311,6520,BD-R,1415477893 +46311,6520,VHS,1350850668 +46311,6521,Betamax,1237226983 +46311,6524,BD-R,1331229856 +46311,6525,Betamax,1237579548 +46311,6527,BD-R,1440277596 +46311,6527,CLV,1237830185 +46311,6527,DVD-RAM,1248879741 +46311,6530,DVD-Video,1238267351 +46311,6533,BD-R,1431202012 +46311,6533,VHS,1238352159 +46311,6534,DVD-Video,1234039635 +46311,6537,BD-Video,1258130676 +46311,6538,DVD-Video,1238264465 +46311,6539,55 movies every kid should see--Entertainment Weekly,1407084051 +46311,6541,BD-Video,1384455246 +46311,6560,CLV,1407019104 +46311,6561,BD-R,1319911772 +46311,6562,BD-R,1423773311 +46311,6566,Anaglyphic 3-D sequences,1306607152 +46311,6573,DVD-RAM,1236609273 +46311,6576,BD-R,1329077767 +46311,6578,BD-R,1382213731 +46311,6579,CLV,1237600851 +46311,6581,CLV,1274983379 +46311,6581,DVD-Video,1237822040 +46311,6582,Betamax,1237825670 +46311,6584,DVD-Video,1238352192 +46311,6585,Betamax,1238354281 +46311,6599,BD-R,1384028769 +46311,6601,Betamax,1182713586 +46311,6601,CLV,1430148917 +46311,6610,BD-R,1382747242 +46311,6610,DVD-R,1234038034 +46311,6611,DVD-Video,1198456171 +46311,6613,BD-R,1413049301 +46311,6613,CLV,1430156733 +46311,6613,DVD-RAM,1238178336 +46311,6620,DVD-Video,1143403402 +46311,6626,CLV,1184463857 +46311,6629,70mm,1289496954 +46311,6629,BD-R,1354397869 +46311,6629,DVD-RAM,1289496954 +46311,6629,Natural Vision 3-Dimension,1306600357 +46311,6629,Spherical Blow-Up,1289496954 +46311,6629,Stereoscopic 3-D,1289496954 +46311,6635,DVD-Video,1237823223 +46311,6636,Betamax,1238264149 +46311,6636,DVD-Video,1238264149 +46311,6638,Betamax,1238348317 +46311,6639,BD-R,1418405855 +46311,6639,CLV,1274984938 +46311,6643,BD-R,1426360897 +46311,6643,DVD-R,1238341909 +46311,6645,BD-R,1443314710 +46311,6645,Betamax,1238340196 +46311,6646,70mm,1142793519 +46311,6650,DVD-Video,1198455783 +46311,6656,BD-R,1429814210 +46311,6656,DVD-RAM,1230591832 +46311,6657,BD-R,1311267198 +46311,6658,BD-R,1437074673 +46311,6658,Betamax,1143311467 +46311,6659,CLV,1339094159 +46311,6660,BD-R,1289495290 +46311,6660,DVD-Video,1237825017 +46311,6662,BD-R,1298139693 +46311,6662,Technirama,1418423634 +46311,6663,BD-R,1299181400 +46311,6665,Betamax,1197234693 +46311,6666,Betamax,1186881587 +46311,6666,DVD-Video,1186881587 +46311,6669,DVD-Video,1280448961 +46311,6671,BD-R,1403545695 +46311,6671,CLV,1143404088 +46311,6678,CLV,1233432677 +46311,6680,DVD-RAM,1237133515 +46311,6711,DVD-Video,1237225580 +46311,6713,DVD-Video,1237230924 +46311,6718,Betamax,1233429264 +46311,6719,Betamax,1233433050 +46311,6724,Betamax,1237744724 +46311,6725,70mm,1142799732 +46311,6725,Anamorphic Blow-Up,1237140467 +46311,6727,DVD-Video,1238265708 +46311,6729,BD-R,1319911819 +46311,6729,Betamax,1182716950 +46311,6729,CLV,1182716950 +46311,6731,VHS,1185673279 +46311,6732,70mm,1296679503 +46311,6732,CLV,1237138588 +46311,6732,DVD-R,1237138588 +46311,6732,DVD-RAM,1237138588 +46311,6732,Todd-AO,1296679503 +46311,6733,BD-R,1378668501 +46311,6734,CLV,1403548340 +46311,6735,70mm,1430157727 +46311,6735,CLV,1430157726 +46311,6735,Spherical Blow-Up,1430157727 +46311,6736,BD-R,1354828609 +46311,6736,DVD-RAM,1258140343 +46311,6738,BD-R,1331229990 +46311,6739,BD-R,1413056835 +46311,6741,CLV,1369333865 +46311,6743,BD-R,1390854814 +46311,6743,DVD-Video,1236620877 +46311,6743,VHS,1236620877 +46311,6744,Betamax,1237600398 +46311,6747,BD-R,1311266299 +46311,6748,Betamax,1183236286 +46311,6749,BD-R,1418409513 +46311,6750,DVD-Video,1322326263 +46311,6755,BD-R,1331229334 +46311,6772,BD-R,1390855207 +46311,6774,Betamax,1238349708 +46311,6774,DVD-Video,1238349708 +46311,6777,BD-R,1413056686 +46311,6783,Betamax,1237828483 +46311,6783,DVD-Video,1198456029 +46311,6785,70mm,1274983979 +46311,6785,BD-R,1378668051 +46311,6785,CLV,1274983979 +46311,6785,DVD-R,1238181920 +46311,6785,DVD-RAM,1238181920 +46311,6786,BD-R,1332441121 +46311,6786,Betamax,1237051150 +46311,6787,BD-R,1332441147 +46311,6787,Betamax,1143321503 +46311,6787,CLV,1406933584 +46311,6791,BD-R,1394314469 +46311,6793,CLV,1417814629 +46311,6794,CLV,1421097095 +46311,6795,Betamax,1182714064 +46311,6797,CLV,1339091547 +46311,6798,VHS,1183236628 +46311,6800,70mm,1143138090 +46311,6800,Betamax,1185055828 +46311,6800,Spherical Blow-Up,1237207841 +46311,6803,Betamax,1185128843 +46311,6807,BD-Video,1405197597 +46311,6807,Betamax,1237229311 +46311,6807,DVD-Video,1237232767 +46311,6808,70mm,1369939791 +46311,6808,Anamorphic Blow-Up,1369939791 +46311,6808,BD-R,1399750912 +46311,6808,CLV,1369939791 +46311,6809,Betamax,1238340254 +46311,6809,VHS,1238340254 +46311,6810,CLV,1403548467 +46311,6812,70mm,1421103077 +46311,6812,Anamorphic Blow-Up,1421103077 +46311,6812,CLV,1421103077 +46311,6813,BD-R,1292632002 +46311,6813,CLV,1339261640 +46311,6814,70mm,1143135663 +46311,6814,Spherical Blow-Up,1237216161 +46311,6815,Betamax,1236615568 +46311,6817,BD-R,1373139418 +46311,6820,DVD-Video,1233425506 +46311,6825,CLV,1339261656 +46311,6836,BD-R,1416586790 +46311,6836,DVD-RAM,1209328675 +46311,6836,DVD-Video,1237830480 +46311,6837,BD-R,1376238503 +46311,6848,Betamax,1237050900 +46311,6848,DVD-RAM,1343326894 +46311,6849,70mm,1274983791 +46311,6849,Anamorphic Blow-Up,1274983791 +46311,6849,BD-R,1390856822 +46311,6849,CLV,1238179274 +46311,6852,BD-R,1329077823 +46311,6852,VHS,1236610867 +46311,6854,BD-R,1315078456 +46311,6856,BD-R,1366316224 +46311,6856,CLV,1430158651 +46311,6858,CLV,1237051283 +46311,6858,DVD-Video,1198455797 +46311,6860,CLV,1375042817 +46311,6870,DVD-Video,1237575560 +46311,6874,BD-Video,1338053514 +46311,6885,DVD-Video,1236610997 +46311,6893,BD-R,1363290271 +46311,6894,Betamax,1236610746 +46311,6900,CLV,1406941128 +46311,6903,Betamax,1237056203 +46311,6903,DVD-Video,1237056203 +46311,6906,Betamax,1238268220 +46311,6908,BD-R,1311266032 +46311,6911,70mm,1394314557 +46311,6911,BD-R,1394314557 +46311,6911,Spherical Blow-Up,1394314557 +46311,6916,BD-R,1374423420 +46311,6916,DVD-RAM,1237226823 +46311,6917,Betamax,1237822235 +46311,6934,IMAX DMR,1306683451 +46311,6936,55 movies every kid should see--Entertainment Weekly,1407083021 +46311,6936,BD-Video,1415479833 +46311,6936,DVD-Video,1318181464 +46311,6944,BD-R,1394313820 +46311,6944,CLV,1417458931 +46311,6961,CLV,1185671573 +46311,6966,CLV,1406940464 +46311,6966,DVD-RAM,1254517174 +46311,6967,BD-R,1352398418 +46311,6967,DVD-RAM,1289496721 +46311,6973,CLV,1417459619 +46311,6974,DVD-Video,1233420305 +46311,6975,BD-R,1390854516 +46311,6979,70mm,1143135498 +46311,6979,Betamax,1238351091 +46311,6979,Spherical Blow-Up,1237142128 +46311,6981,DVD-R,1237601195 +46311,6981,DVD-RAM,1237601195 +46311,6982,DVD-Video,1198455643 +46311,6983,BD-R,1334859318 +46311,6984,BD-R,1326836084 +46311,6985,BD-R,1381080337 +46311,6985,DVD-R,1237745273 +46311,6986,BD-Video,1418417552 +46311,6986,DVD-RAM,1232655638 +46311,6986,Two-color Technicolor sequence,1418417553 +46311,6987,BD-R,1317587371 +46311,6987,CLV,1375039709 +46311,6988,CLV,1183236239 +46311,6988,DVD-RAM,1230409347 +46311,6988,DVD-Video,1233430771 +46311,6988,VHS,1183236239 +46311,6989,Betamax,1233429045 +46311,6990,BD-R,1423773935 +46311,6990,Betamax,1233430346 +46311,6990,CLV,1375040735 +46311,6991,70mm,1302803367 +46311,6991,BD-R,1302803367 +46311,6991,Betamax,1233430686 +46311,6991,Super-35 Blow-Up,1302803367 +46311,6992,CLV,1421102410 +46311,6993,Betamax,1233432818 +46311,6993,CLV,1233432818 +46311,6993,DVD-Video,1233432818 +46311,6994,CLV,1421103721 +46311,6997,70mm,1143142739 +46311,6997,Anamorphic Blow-Up,1237210636 +46311,6999,CLV,1417816550 +46311,7000,Cinema Digital Sound,1313697424 +46311,7001,Betamax,1236615711 +46311,7001,DVD-Video,1236615711 +46311,7004,CLV,1417816678 +46311,7007,70mm,1339262357 +46311,7007,Anamorphic Blow-Up,1339262356 +46311,7007,CLV,1339262356 +46311,7008,DVD-Video,1237054243 +46311,7009,CLV,1339092904 +46311,7013,BD-R,1342898903 +46311,7013,DVD-R,1237577593 +46311,7013,DVD-RAM,1237577593 +46311,7014,CLV,1403548957 +46311,7015,CLV,1237600910 +46311,7016,70mm,1143139221 +46311,7016,Anamorphic Blow-Up,1237208053 +46311,7016,Betamax,1237743167 +46311,7017,CLV,1406937020 +46311,7018,CLV,1339093598 +46311,7022,BD-Video,1378667800 +46311,7024,DVD-Video,1237829211 +46311,7027,70mm,1143137800 +46311,7027,Super-35 Blow-Up,1237207420 +46311,7029,Betamax,1237823189 +46311,7033,Betamax,1238181046 +46311,7035,70mm,1143136158 +46311,7035,Betamax,1238262176 +46311,7035,Spherical Blow-Up,1237142389 +46311,7036,Betamax,1238266842 +46311,7039,CLV,1407019541 +46311,7040,DVD-Video,1238341687 +46311,7043,BD-R,1349372545 +46311,7046,70mm,1143139542 +46311,7046,Anamorphic Blow-Up,1237208121 +46311,7046,DVD-Video,1239032951 +46311,7047,70mm,1406940986 +46311,7047,Anamorphic Blow-Up,1406940986 +46311,7047,Betamax,1239034156 +46311,7047,CLV,1406940986 +46311,7050,BD-R,1413055905 +46311,7050,CLV,1230591681 +46311,7051,BD-R,1445019372 +46311,7051,DVD-RAM,1238352137 +46311,7052,BD-R,1405199957 +46311,7055,BD-R,1390857453 +46311,7055,CAV,1369334170 +46311,7055,CLV,1238264582 +46311,7055,DVD-R,1238264582 +46311,7055,DVD-RAM,1238264582 +46311,7056,BD-R,1414264637 +46311,7056,CLV,1274983656 +46311,7056,DVD-RAM,1290882413 +46311,7057,BD-R,1396550557 +46311,7057,CLV,1421092083 +46311,7058,BD-R,1289493970 +46311,7059,BD-R,1329077881 +46311,7060,70mm,1142797336 +46311,7060,Anamorphic Blow-Up,1237214017 +46311,7061,BD-R,1394314254 +46311,7063,BD-Video,1433637352 +46311,7063,Betamax,1143320896 +46311,7063,DVD-Video,1292632182 +46311,7064,CAV,1182636719 +46311,7064,DVD-Video,1198455505 +46311,7065,BD-R,1290882119 +46311,7065,DVD-Video,1233430736 +46311,7067,BD-R,1392663419 +46311,7068,Betamax,1237054399 +46311,7070,BD-R,1313860085 +46311,7071,DVD-Video,1236620182 +46311,7072,BD-R,1333644963 +46311,7073,CLV,1238185696 +46311,7074,DVD-Video,1143407425 +46311,7075,BD-R,1360443938 +46311,7075,VistaVision,1360443939 +46311,7076,BD-Video,1258130015 +46311,7077,BD-R,1380472263 +46311,7079,BD-R,1413049094 +46311,7079,DVD-R,1234039739 +46311,7079,DVD-RAM,1234039739 +46311,7080,BD-R,1319912150 +46311,7081,BD-R,1413049408 +46311,7081,CLV,1274976700 +46311,7084,DVD-Video,1237750114 +46311,7085,BD-R,1403545642 +46311,7086,DVD-Video,1198455974 +46311,7087,BD-R,1399749327 +46311,7087,Betamax,1237745210 +46311,7088,70mm,1142739712 +46311,7088,DVD-Video,1198455524 +46311,7088,Spherical Blow-Up,1237207461 +46311,7089,BD-R,1302803263 +46311,7089,Betamax,1143402136 +46311,7091,BD-R,1423772465 +46311,7091,DVD-RAM,1274972232 +46311,7092,BD-R,1369333124 +46311,7093,CLV,1274975177 +46311,7095,Betamax,1237225279 +46311,7098,BD-R,1315078515 +46311,7100,CLV,1417815051 +46311,7101,CLV,1417458164 +46311,7102,Betamax,1197234759 +46311,7104,70mm,1142799836 +46311,7104,Anamorphic Blow-Up,1237140833 +46311,7104,BD-R,1373139678 +46311,7104,Betamax,1143311931 +46311,7104,CAV,1143311931 +46311,7107,Betamax,1233084647 +46311,7111,70mm,1288548733 +46311,7111,BD-R,1288548733 +46311,7111,Super Panavision 70,1288548733 +46311,7114,BD-R,1369332836 +46311,7116,BD-R,1354397898 +46311,7116,DVD-R,1232739151 +46311,7121,BD-R,1390855499 +46311,7122,BD-R,1299181207 +46311,7122,Betamax,1237050376 +46311,7124,DVD-R,1233429897 +46311,7126,DVD-Video,1236620201 +46311,7127,CLV,1430155244 +46311,7128,BD-R,1381080017 +46311,7128,DVD-R,1238268745 +46311,7128,VHS,1238268745 +46311,7130,BD-R,1334860174 +46311,7131,BD-R,1427571929 +46311,7132,BD-R,1390855568 +46311,7132,DVD-RAM,1273768150 +46311,7133,Betamax,1237230279 +46311,7133,Stereoscopic 3-D,1306603274 +46311,7133,StereoVision,1306603275 +46311,7135,BD-R,1374423681 +46311,7136,DVD-Video,1172526244 +46311,7147,DVD-Video,1182713301 +46311,7153,DVD-Video,1318181448 +46311,7156,BD-R,1381079944 +46311,7157,DVD-RAM,1233434283 +46311,7158,DVD-Video,1234038863 +46311,7166,BD-R,1354828504 +46311,7166,IMAX,1354828505 +46311,7178,CLV,1233430068 +46311,7181,CLV,1369939979 +46311,7182,DVD-RAM,1264887523 +46311,7183,DVD-RAM,1258146639 +46311,7185,Betamax,1237824637 +46311,7190,DVD-Video,1367770406 +46311,7192,CLV,1237600926 +46311,7194,BD-R,1302803764 +46311,7204,BD-R,1418409389 +46311,7205,70mm,1310658099 +46311,7205,Anamorphic Blow-Up,1310658099 +46311,7205,BD-R,1315079020 +46311,7205,CLV,1310658098 +46311,7206,BD-R,1377451599 +46311,7206,BD-Video,1437942906 +46311,7206,Betamax,1358109136 +46311,7207,BD-R,1418409708 +46311,7207,Betamax,1238352302 +46311,7208,BD-R,1378668426 +46311,7208,DVD-R,1197234415 +46311,7208,DVD-RAM,1197234428 +46311,7209,BD-Video,1437942888 +46311,7209,Betamax,1237572871 +46311,7209,DVD-Video,1198455891 +46311,7210,BD-R,1289494750 +46311,7210,CLV,1274981690 +46311,7212,BD-R,1405196983 +46311,7213,BD-R,1363459392 +46311,7214,BD-R,1437074234 +46311,7215,BD-R,1392664467 +46311,7215,CLV,1421091716 +46311,7215,DVD-R,1238341635 +46311,7215,DVD-RAM,1238341635 +46311,7216,BD-R,1437073438 +46311,7217,BD-R,1349373252 +46311,7218,BD-R,1339958775 +46311,7219,BD-R,1333645177 +46311,7222,DVD-Video,1237825179 +46311,7223,BD-R,1329077744 +46311,7223,DVD-Video,1367861123 +46311,7224,BD-R,1366316279 +46311,7225,Betamax,1237822533 +46311,7227,CLV,1430158013 +46311,7228,CLV,1311265423 +46311,7228,VHS,1230403356 +46311,7230,BD-R,1371410968 +46311,7230,DVD-RAM,1277659705 +46311,7231,BD-R,1378665965 +46311,7233,DVD-Video,1367687963 +46311,7234,BD-R,1302803288 +46311,7234,DVD-Video,1198456100 +46311,7235,DVD-RAM,1354397408 +46311,7236,BD-R,1382746648 +46311,7238,DVD-Video,1198455444 +46311,7239,70mm,1252597145 +46311,7239,Anamorphic Blow-Up,1366316256 +46311,7239,BD-R,1366316256 +46311,7239,DVD-RAM,1252597144 +46311,7240,Betamax,1237049974 +46311,7240,CLV,1369333427 +46311,7241,BD-R,1309023047 +46311,7242,Betamax,1183313351 +46311,7242,DVD-Video,1183313351 +46311,7243,BD-R,1380472239 +46311,7243,CLV,1274981098 +46311,7243,DVD-Video,1233430754 +46311,7244,DVD-Video,1366426155 +46311,7245,BD-R,1354398018 +46311,7245,DVD-Video,1366427746 +46311,7247,70mm,1241715577 +46311,7247,BD-R,1395592231 +46311,7247,Betamax,1184520426 +46311,7247,DVD-Video,1241715590 +46311,7247,Super Panavision 70,1241715571 +46311,7250,BD-R,1423772574 +46311,7250,Betamax,1237742926 +46311,7252,BD-R,1379791240 +46311,7253,BD-R,1418406099 +46311,7253,DVD-RAM,1290882239 +46311,7253,VHS,1236617160 +46311,7265,DVD-Video,1197236320 +46311,7271,Betamax,1236621174 +46311,7272,BD-R,1426360861 +46311,7274,Betamax,1237055222 +46311,7275,Betamax,1238348100 +46311,7280,BD-R,1349373326 +46311,7281,BD-R,1416586163 +46311,7283,Betamax,1238264537 +46311,7283,CLV,1369333465 +46311,7284,CLV,1403548302 +46311,7289,DVD-Video,1366482113 +46311,7290,BD-R,1377451215 +46311,7292,Betamax,1182637417 +46311,7300,BD-R,1440872432 +46311,7301,BD-R,1339089728 +46311,7302,CLV,1274978636 +46311,7302,DVD-Video,1197233049 +46311,7303,CLV,1232739210 +46311,7305,VHS,1182714231 +46311,7307,Betamax,1233083590 +46311,7307,DVD-Video,1233083590 +46311,7309,CLV,1274974453 +46311,7309,DVD-Video,1197233075 +46311,7309,Two-color Technicolor,1418417583 +46311,7310,Betamax,1237824412 +46311,7311,BD-R,1394314223 +46311,7325,DVD-Video,1238261141 +46311,7327,CLV,1237745890 +46311,7327,DVD-Video,1237745890 +46311,7328,DVD-RAM,1245785203 +46311,7329,BD-R,1413053371 +46311,7331,Betamax,1238181779 +46311,7332,CLV,1426529215 +46311,7334,DVD-Video,1233421784 +46311,7336,Betamax,1185671660 +46311,7338,DVD-Video,1198456009 +46311,7338,VistaVision,1418408000 +46311,7339,BD-R,1319911988 +46311,7341,70mm,1142792638 +46311,7346,DVD-Video,1233425598 +46311,7358,DVD-Video,1238180400 +46311,7359,Betamax,1238350795 +46311,7361,DVD-Video,1198456285 +46311,7386,70mm,1331230375 +46311,7386,BD-Video,1331230375 +46311,7386,CLV,1238267303 +46311,7386,VistaVision,1331230375 +46311,7387,Betamax,1185673070 +46311,7387,CAV,1185673070 +46311,7389,BD-R,1306445552 +46311,7392,BD-R,1343327137 +46311,7393,Betamax,1238186831 +46311,7394,70mm,1296679383 +46311,7394,DVD-Video,1238269028 +46311,7394,Todd-AO,1296679383 +46311,7396,BD-R,1307809487 +46311,7397,DVD-Video,1181424242 +46311,7402,Betamax,1233084058 +46311,7404,Betamax,1143404399 +46311,7405,BD-R,1405199910 +46311,7406,DVD-Video,1233083877 +46311,7408,BD-R,1342898602 +46311,7408,VHS,1236619270 +46311,7409,DVD-Video,1367688980 +46311,7411,Betamax,1237573564 +46311,7411,VHS,1237573564 +46311,7414,BD-R,1437073673 +46311,7415,BD-R,1437071173 +46311,7416,BD-R,1426360770 +46311,7416,Betamax,1238263761 +46311,7419,Betamax,1143320622 +46311,7419,DVD-Video,1172526976 +46311,7420,BD-R,1440872971 +46311,7438,BD-Video,1338053520 +46311,7439,BD-Video,1396552578 +46311,7458,BD-Video,1328042125 +46311,7460,Betamax,1230579824 +46311,7460,DVD-R,1185056330 +46311,7460,DVD-Video,1185056330 +46311,7474,CLV,1369336430 +46311,7478,Betamax,1238264501 +46311,7478,CLV,1238264501 +46311,7480,Betamax,1238347370 +46311,7482,BD-R,1386441324 +46311,7482,Betamax,1198454138 +46311,7482,CLV,1198454138 +46311,7484,BD-R,1423771695 +46311,7484,DVD-RAM,1233425462 +46311,7485,BD-R,1382746368 +46311,7487,DVD-Video,1234035592 +46311,7492,Betamax,1237228636 +46311,7523,CLV,1417815282 +46311,7560,BD-R,1315078430 +46311,7564,BD-R,1384454858 +46311,7564,Betamax,1237052286 +46311,7564,DVD-R,1237052286 +46311,7565,Stereoscopic 3-D,1306600809 +46311,7565,Tru-Stereo,1306600809 +46311,7569,70mm,1142793019 +46311,7569,BD-Video,1390853735 +46311,7569,VHS,1239034470 +46311,7570,70mm,1390853943 +46311,7570,Anamorphic Blow-Up,1390853943 +46311,7570,BD-Video,1390853943 +46311,7570,Betamax,1237579719 +46311,7570,VHS,1237579719 +46311,7571,BD-R,1399751050 +46311,7573,70mm,1306615065 +46311,7573,Anamorphic Blow-Up,1306615065 +46311,7573,Betamax,1237577076 +46311,7574,BD-R,1315078570 +46311,7579,BD-R,1352396778 +46311,7583,BD-R,1418409628 +46311,7584,BD-R,1369940224 +46311,7585,BD-R,1288548455 +46311,7585,DVD-RAM,1288546851 +46311,7585,DVD-Video,1288546873 +46311,7614,70mm,1274982250 +46311,7614,BD-R,1290882501 +46311,7614,CLV,1237580175 +46311,7614,Todd-AO,1274982250 +46311,7616,Betamax,1182716460 +46311,7616,DVD-Video,1182716460 +46311,7618,CLV,1403549261 +46311,7619,BD-R,1426363342 +46311,7626,CLV,1339263522 +46311,7636,CLV,1339263035 +46311,7638,DVD-Video,1308501674 +46311,7645,VHS,1236616051 +46311,7647,DVD-Video,1237578687 +46311,7650,BD-R,1386440285 +46311,7650,DVD-R,1185069560 +46311,7675,BD-R,1349545330 +46311,7697,BD-R,1319912240 +46311,7698,BD-R,1413054328 +46311,7698,Betamax,1184520340 +46311,7698,CLV,1369939999 +46311,7700,DVD-Video,1198456219 +46311,7705,BD-R,1373139784 +46311,7706,BD-R,1443311293 +46311,7706,Betamax,1143404344 +46311,7706,DVD-R,1143404344 +46311,7706,DVD-RAM,1143404344 +46311,7707,CLV,1427744224 +46311,7708,BD-R,1355600690 +46311,7708,DVD-R,1182636875 +46311,7713,BD-R,1385066613 +46311,7713,Betamax,1184462994 +46311,7713,DVD-RAM,1246465131 +46311,7714,70mm,1355600902 +46311,7714,Anamorphic Blow-Up,1355600902 +46311,7714,BD-R,1355600902 +46311,7714,CLV,1183247010 +46311,7716,Betamax,1237133838 +46311,7719,CLV,1361820308 +46311,7719,DVD-RAM,1253199642 +46311,7720,BD-R,1426362416 +46311,7725,CLV,1406936951 +46311,7727,BD-R,1440872709 +46311,7727,Betamax,1237822288 +46311,7728,BD-R,1376238037 +46311,7730,CLV,1237228963 +46311,7743,70mm,1143137325 +46311,7743,Betamax,1206384555 +46311,7743,Spherical Blow-Up,1237207437 +46311,7748,BD-R,1445022391 +46311,7751,BD-R,1394311409 +46311,7756,DVD-Video,1198455429 +46311,7757,DVD-Video,1233075374 +46311,7761,BD-R,1377451321 +46311,7764,VHS,1197236656 +46311,7766,Betamax,1238269428 +46311,7766,DVD-R,1238269428 +46311,7766,DVD-RAM,1238269428 +46311,7766,DVD-Video,1280449256 +46311,7771,BD-R,1392664728 +46311,7772,BD-R,1385066976 +46311,7772,DVD-R,1238347544 +46311,7781,VHS,1238346791 +46311,7784,CLV,1233424143 +46311,7789,DVD-Video,1238181622 +46311,7790,Betamax,1182716685 +46311,7791,CLV,1407019084 +46311,7792,BD-R,1290882175 +46311,7802,Betamax,1238351173 +46311,7802,CLV,1369940094 +46311,7808,70mm,1293761562 +46311,7808,BD-R,1293761561 +46311,7814,70mm,1142795483 +46311,7814,Anamorphic Blow-Up,1237213734 +46311,7817,BD-R,1399749232 +46311,7820,DVD-Video,1198456190 +46311,7822,BD-R,1445021242 +46311,7826,BD-R,1360443892 +46311,7831,BD-R,1329076050 +46311,7832,BD-R,1329076081 +46311,7833,BD-R,1329076066 +46311,7834,BD-R,1329076036 +46311,7835,BD-R,1329076098 +46311,7836,70mm,1142795504 +46311,7836,BD-Video,1245005088 +46311,7837,VHS,1143312168 +46311,7840,BD-R,1349373209 +46311,7840,DVD-R,1233431149 +46311,7845,CLV,1339263711 +46311,7850,BD-R,1377451072 +46311,7881,BD-R,1385066650 +46311,7881,DVD-RAM,1258140505 +46311,7881,DVD-Video,1366426093 +46311,7882,BD-R,1354396819 +46311,7883,BD-R,1384454713 +46311,7883,DVD-RAM,1246464711 +46311,7885,DVD-RAM,1270158646 +46311,7888,CLV,1234039459 +46311,7888,DVD-RAM,1248793420 +46311,7889,BD-R,1309022938 +46311,7890,BD-R,1433635482 +46311,7891,BD-R,1354824233 +46311,7891,DVD-R,1237053785 +46311,7891,DVD-Video,1318097462 +46311,7892,Betamax,1238262067 +46311,7894,CLV,1233077578 +46311,7895,BD-R,1443312107 +46311,7896,BD-R,1315079100 +46311,7897,Betamax,1182635257 +46311,7900,BD-R,1290880208 +46311,7901,BD-R,1385067278 +46311,7919,DVD-RAM,1273767918 +46311,7919,DVD-Video,1280448885 +46311,7921,Betamax,1186878829 +46311,7922,BD-R,1342717383 +46311,7923,BD-R,1309023086 +46311,7924,DVD-RAM,1273767983 +46311,7924,DVD-Video,1280449237 +46311,7925,DVD-Video,1280448904 +46311,7926,DVD-Video,1280448922 +46311,7933,BD-R,1339958801 +46311,7933,Betamax,1237577432 +46311,7934,DVD-Video,1239034784 +46311,7934,VHS,1239034784 +46311,7937,BD-R,1422061966 +46311,7938,BD-R,1381080411 +46311,7939,BD-R,1422061925 +46311,7939,Betamax,1238269481 +46311,7940,BD-R,1440274841 +46311,7941,BD-R,1422061868 +46311,7941,Betamax,1238186915 +46311,7941,DVD-R,1238186915 +46311,7942,BD-R,1381435689 +46311,7943,BD-R,1386440839 +46311,7944,BD-R,1342717225 +46311,7944,Betamax,1237577607 +46311,7946,BD-R,1299181694 +46311,7947,Betamax,1238347501 +46311,7948,BD-R,1299181714 +46311,7949,BD-R,1440872921 +46311,7958,BD-R,1390855441 +46311,7959,BD-R,1379791450 +46311,7959,DVD-RAM,1238344960 +46311,7979,BD-Video,1437942363 +46311,7980,70mm,1369336453 +46311,7980,CLV,1369336452 +46311,7981,BD-R,1289496217 +46311,7983,Betamax,1183236181 +46311,7983,DVD-Video,1183236181 +46311,7984,Betamax,1233421302 +46311,7989,VHS,1237579095 +46311,7990,BD-Video,1304788414 +46311,7990,Betamax,1237827564 +46311,7991,BD-Video,1304788440 +46311,7991,Betamax,1186260924 +46311,7993,BD-R,1427571586 +46311,7993,DVD-R,1230651668 +46311,7994,CLV,1369334085 +46311,7995,BD-R,1380471710 +46311,8003,BD-R,1354398124 +46311,8003,DVD-RAM,1264887924 +46311,8004,DVD-RAM,1253199551 +46311,8008,BD-R,1403545834 +46311,8008,CLV,1230411912 +46311,8008,DVD-R,1182718537 +46311,8015,BD-R,1373139754 +46311,8015,Betamax,1237748324 +46311,8015,DVD-RAM,1240151316 +46311,8017,BD-R,1323573817 +46311,8033,CLV,1234039433 +46311,8039,BD-R,1352396713 +46311,8042,BD-R,1385066778 +46311,8044,DVD-RAM,1290882454 +46311,8045,Betamax,1233432533 +46311,8056,BD-R,1396551810 +46311,8069,70mm,1347742832 +46311,8069,Anamorphic Blow-Up,1347742832 +46311,8069,BD-R,1347742832 +46311,8092,DVD-RAM,1306444926 +46311,8094,BD-R,1347740568 +46311,8119,Betamax,1185670314 +46311,8122,Betamax,1184524054 +46311,8124,CLV,1421100096 +46311,8125,BD-R,1354824697 +46311,8125,CLV,1274984639 +46311,8125,DVD-RAM,1240151459 +46311,8126,BD-R,1304786651 +46311,8128,BD-R,1431200640 +46311,8128,Betamax,1181422869 +46311,8136,BD-R,1369941267 +46311,8136,DVD-Video,1366427572 +46311,8137,BD-R,1311266066 +46311,8137,DVD-Video,1366486774 +46311,8138,DVD-Video,1366426122 +46311,8143,DVD-RAM,1270415174 +46311,8147,BD-R,1394314206 +46311,8147,DVD-R,1230653459 +46311,8148,BD-R,1426361618 +46311,8149,DVD-RAM,1254352255 +46311,8153,BD-R,1331229386 +46311,8154,BD-R,1374423377 +46311,8167,BD-R,1426362369 +46311,8167,DVD-RAM,1274973435 +46311,8183,Betamax,1198449244 +46311,8188,BD-R,1326834497 +46311,8189,BD-R,1426360946 +46311,8191,70mm,1369336221 +46311,8191,Anamorphic Blow-Up,1369336221 +46311,8191,CLV,1369336221 +46311,8191,DVD-R,1143404461 +46311,8191,DVD-RAM,1143404461 +46311,8194,BD-R,1288549562 +46311,8195,DVD-Video,1198455468 +46311,8196,DVD-R,1182637695 +46311,8196,DVD-RAM,1182637695 +46311,8197,Betamax,1234037452 +46311,8199,Betamax,1238347083 +46311,8199,DVD-R,1238347083 +46311,8199,DVD-RAM,1238347083 +46311,8199,DVD-Video,1198456159 +46311,8202,BD-R,1431201849 +46311,8206,BD-R,1379791371 +46311,8206,CLV,1375038946 +46311,8206,DVD-R,1237575491 +46311,8206,Two-color Technicolor,1418418261 +46311,8207,DVD-Video,1185673267 +46311,8220,DVD-RAM,1264887951 +46311,8222,BD-R,1289497104 +46311,8228,BD-R,1288549231 +46311,8232,CLV,1274978715 +46311,8235,BD-R,1381080282 +46311,8235,DVD-RAM,1290882218 +46311,8235,VHS,1234038532 +46311,8236,BD-R,1384028872 +46311,8238,BD-R,1443311809 +46311,8238,Betamax,1237133073 +46311,8239,DVD-Video,1198456203 +46311,8252,BD-R,1394314682 +46311,8256,BD-R,1352059693 +46311,8262,BD-R,1440872884 +46311,8262,DVD-RAM,1242916035 +46311,8263,BD-R,1342898645 +46311,8264,BD-R,1333645035 +46311,8265,Betamax,1233421199 +46311,8266,Betamax,1237822601 +46311,8268,CLV,1406937069 +46311,8272,70mm,1142795187 +46311,8275,DVD-Video,1143407524 +46311,8291,BD-R,1413052110 +46311,8292,BD-R,1423773087 +46311,8292,DVD-Video,1280448942 +46311,8293,CLV,1417808126 +46311,8294,BD-R,1370541911 +46311,8295,BD-R,1386440732 +46311,8295,Betamax,1237233240 +46311,8295,CLV,1237233240 +46311,8295,DVD-R,1237233240 +46311,8302,BD-R,1366316207 +46311,8330,BD-R,1371410828 +46311,8330,DVD-RAM,1287685064 +46311,8331,BD-R,1390855618 +46311,8331,CLV,1237227543 +46311,8332,BD-R,1416585676 +46311,8334,70mm,1437072658 +46311,8334,Anamorphic Blow-Up,1437072658 +46311,8334,BD-R,1437072658 +46311,8335,BD-R,1422063075 +46311,8336,BD-R,1305222989 +46311,8337,BD-R,1329078241 +46311,8338,DVD-R,1182714119 +46311,8338,DVD-RAM,1182714119 +46311,8340,CLV,1369940034 +46311,8341,BD-R,1326836427 +46311,8360,DVD-Video,1238185766 +46311,8364,DVD-Video,1181423650 +46311,8366,DVD-Video,1237829948 +46311,8368,IMAX DMR,1306683484 +46311,8371,BD-Video,1434846910 +46311,8378,CLV,1339092279 +46311,8379,BD-R,1305222865 +46311,8379,Betamax,1197236612 +46311,8381,BD-R,1329077414 +46311,8384,BD-R,1423770733 +46311,8384,CLV,1369335727 +46311,8393,70mm,1143135808 +46311,8393,Betamax,1233425738 +46311,8395,BD-R,1305222776 +46311,8398,70mm,1296679470 +46311,8398,BD-R,1300993470 +46311,8398,Todd-AO,1296679470 +46311,8403,BD-R,1306445739 +46311,8404,BD-R,1307810554 +46311,8405,DVD-RAM,1245785076 +46311,8410,BD-R,1414263067 +46311,8410,DVD-Video,1367859259 +46311,8420,BD-R,1422060666 +46311,8422,BD-R,1347741419 +46311,8423,BD-R,1445021302 +46311,8424,BD-R,1373138448 +46311,8450,Betamax,1143404553 +46311,8451,BD-R,1369940169 +46311,8460,VHS,1238261209 +46311,8461,Betamax,1197234825 +46311,8461,DVD-RAM,1281044194 +46311,8462,BD-R,1445021075 +46311,8463,BD-R,1440275236 +46311,8464,DVD-Video,1238263793 +46311,8465,BD-R,1426363585 +46311,8477,BD-R,1349379653 +46311,8477,DVD-RAM,1349379653 +46311,8478,CLV,1375037994 +46311,8480,BD-R,1390855115 +46311,8480,DVD-R,1237050784 +46311,8482,BD-R,1329077903 +46311,8483,BD-R,1433636506 +46311,8483,DVD-R,1230651009 +46311,8486,BD-R,1329075836 +46311,8487,BD-R,1423771210 +46311,8491,BD-R,1413055773 +46311,8491,DVD-RAM,1238354252 +46311,8491,VHS,1238354252 +46311,8492,BD-Video,1261873013 +46311,8493,70mm,1421102802 +46311,8493,CLV,1421102802 +46311,8493,Spherical Blow-Up,1421102802 +46311,8494,BD-R,1401999566 +46311,8501,Betamax,1234037652 +46311,8501,DVD-Video,1234037652 +46311,8502,BD-R,1418409851 +46311,8502,CLV,1274975657 +46311,8503,BD-R,1418409246 +46311,8503,VHS,1236617856 +46311,8507,DVD-Video,1233085537 +46311,8511,BD-R,1290882286 +46311,8511,CLV,1274978432 +46311,8512,BD-R,1413053301 +46311,8512,CLV,1339263317 +46311,8516,BD-R,1382747702 +46311,8516,DVD-R,1237229047 +46311,8516,DVD-RAM,1237229047 +46311,8518,BD-R,1365880038 +46311,8518,DVD-RAM,1278793276 +46311,8521,BD-R,1395593014 +46311,8521,DVD-R,1197234380 +46311,8521,DVD-RAM,1197234397 +46311,8522,BD-R,1413049444 +46311,8533,DVD-Video,1318181477 +46311,8541,Betamax,1182715857 +46311,8541,CLV,1417454897 +46311,8542,BD-R,1405198155 +46311,8542,DVD-RAM,1273768222 +46311,8543,BD-R,1323567304 +46311,8571,DVD-RAM,1258146196 +46311,8572,BD-R,1360441593 +46311,8583,BD-R,1293763711 +46311,8583,CLV,1426528966 +46311,8584,BD-R,1369940475 +46311,8591,Betamax,1237748634 +46311,8600,CLV,1143404232 +46311,8601,BD-R,1382746462 +46311,8602,BD-R,1289495315 +46311,8602,DVD-Video,1236620137 +46311,8608,Betamax,1182717005 +46311,8609,DVD-Video,1143407371 +46311,8610,Betamax,1143321452 +46311,8610,DVD-Video,1143321452 +46311,8612,BD-R,1422061725 +46311,8614,CLV,1417813817 +46311,8615,BD-R,1384454775 +46311,8615,DVD-RAM,1237228761 +46311,8617,BD-R,1395592993 +46311,8618,BD-R,1323567274 +46311,8620,BD-R,1354824834 +46311,8622,DVD-Video,1206387733 +46311,8623,Betamax,1237828294 +46311,8625,DVD-R,1237829311 +46311,8625,DVD-RAM,1237829311 +46311,8631,BD-R,1373138985 +46311,8633,70mm,1360441125 +46311,8633,Anamorphic Blow-Up,1360441125 +46311,8633,BD-Video,1360441125 +46311,8633,Betamax,1237054195 +46311,8633,DVD-Video,1237054195 +46311,8636,BD-Video,1405197626 +46311,8636,DVD-Video,1238257669 +46311,8636,IMAX DMR,1306683529 +46311,8638,DVD-Video,1182637006 +46311,8651,70mm,1323573739 +46311,8651,BD-R,1323573739 +46311,8651,Spherical Blow-Up,1323573739 +46311,8657,VistaVision,1418407385 +46311,8660,70mm,1142797689 +46311,8661,70mm,1242916830 +46311,8661,BD-Video,1242916830 +46311,8661,Cinerama,1242916830 +46311,8661,DVD-R,1234039084 +46311,8661,DVD-RAM,1234039085 +46311,8662,BD-R,1330291236 +46311,8662,CLV,1421089150 +46311,8664,Betamax,1237572899 +46311,8669,Betamax,1238261237 +46311,8670,BD-R,1383506514 +46311,8670,DVD-R,1238267833 +46311,8670,DVD-RAM,1238267833 +46311,8675,BD-R,1437073202 +46311,8676,BD-R,1313858933 +46311,8677,DVD-Video,1261873065 +46311,8678,BD-Video,1384455048 +46311,8679,BD-R,1437073182 +46311,8682,70mm,1296679563 +46311,8682,Todd-AO,1296679563 +46311,8683,BD-Video,1384455057 +46311,8684,BD-R,1339089762 +46311,8690,Betamax,1238186574 +46311,8690,DVD-Video,1238186574 +46311,8694,BD-R,1427571306 +46311,8695,BD-R,1396551514 +46311,8701,CLV,1427740216 +46311,8709,Betamax,1234039019 +46311,8711,BD-R,1349373127 +46311,8714,BD-R,1360442168 +46311,8718,BD-R,1354824154 +46311,8718,DVD-R,1238187253 +46311,8722,Betamax,1238346913 +46311,8724,BD-R,1347734196 +46311,8724,DVD-R,1237055077 +46311,8724,Technirama,1418422328 +46311,8725,DVD-Video,1233428695 +46311,8726,DVD-RAM,1237821642 +46311,8726,DVD-Video,1237821642 +46311,8727,CLV,1369940018 +46311,8727,VHS,1185673299 +46311,8728,BD-R,1385067003 +46311,8732,DVD-Video,1182637209 +46311,8735,DVD-RAM,1234036967 +46311,8736,DVD-Video,1237742888 +46311,8738,BD-R,1445022432 +46311,8739,BD-R,1323572815 +46311,8740,Betamax,1237226107 +46311,8740,DVD-Video,1280449013 +46311,8742,Betamax,1237577733 +46311,8748,BD-R,1331229959 +46311,8751,BD-R,1339958731 +46311,8752,BD-R,1433635324 +46311,8754,BD-R,1379790778 +46311,8758,Betamax,1237052020 +46311,8765,BD-R,1333645195 +46311,8767,BD-R,1440275297 +46311,8768,BD-R,1440872769 +46311,8769,BD-R,1405197364 +46311,8769,Betamax,1143312358 +46311,8771,BD-R,1289495018 +46311,8771,DVD-Video,1367859109 +46311,8772,BD-R,1395592673 +46311,8773,BD-R,1311266444 +46311,8773,DVD-Video,1367859027 +46311,8774,BD-R,1311266584 +46311,8774,DVD-Video,1367858848 +46311,8778,BD-R,1311266668 +46311,8778,DVD-Video,1367859117 +46311,8782,DVD-RAM,1258129748 +46311,8785,BD-R,1370541869 +46311,8786,BD-R,1366316306 +46311,8787,DVD-Video,1238340024 +46311,8788,DVD-Video,1238340052 +46311,8789,70mm,1142795078 +46311,8796,BD-R,1363459329 +46311,8796,DVD-R,1233422187 +46311,8796,DVD-RAM,1233422187 +46311,8797,BD-R,1403545580 +46311,8797,VHS,1237743603 +46311,8800,DVD-Video,1185056023 +46311,8804,BD-R,1352396379 +46311,8822,Betamax,1238257293 +46311,8823,Betamax,1238261388 +46311,8827,Betamax,1182713729 +46311,8828,BD-R,1323573761 +46311,8838,BD-R,1354828652 +46311,8839,CLV,1352060647 +46311,8840,BD-R,1388340744 +46311,8848,BD-R,1418409922 +46311,8849,Betamax,1238347447 +46311,8850,BD-R,1381080152 +46311,8851,DVD-RAM,1283015602 +46311,8851,DVD-Video,1238186891 +46311,8852,70mm,1296680120 +46311,8852,DVD-RAM,1237225338 +46311,8852,Super Panavision 70,1296680120 +46311,8856,70mm,1319912103 +46311,8856,BD-R,1319912103 +46311,8865,BD-Video,1415478029 +46311,8872,DVD-RAM,1343326830 +46311,8874,BD-Video,1384455601 +46311,8876,VistaVision,1418407467 +46311,8878,VHS,1354397951 +46311,8882,BD-R,1339090449 +46311,8884,Betamax,1237227736 +46311,8887,CLV,1427734000 +46311,8890,BD-R,1395592608 +46311,8890,DVD-RAM,1277659898 +46311,8896,DVD-RAM,1242916191 +46311,8898,BD-R,1339090180 +46311,8899,VHS,1342902045 +46311,8900,DVD-RAM,1281044030 +46311,8901,Betamax,1233083481 +46311,8903,BD-R,1401996823 +46311,8903,DVD-R,1238267709 +46311,8903,DVD-Video,1238267709 +46311,8905,70mm,1406933559 +46311,8905,Anamorphic Blow-Up,1406933559 +46311,8905,CLV,1406933558 +46311,8914,DVD-Video,1237821803 +46311,8917,DVD-Video,1238266794 +46311,8921,BD-R,1403547482 +46311,8921,VistaVision,1403547482 +46311,8923,70mm,1369940074 +46311,8923,BD-R,1394314330 +46311,8923,Betamax,1238267733 +46311,8923,CLV,1369940074 +46311,8928,BD-R,1347734103 +46311,8928,DVD-RAM,1264887891 +46311,8930,DVD-Video,1233077860 +46311,8932,BD-R,1433636361 +46311,8961,55 movies every kid should see--Entertainment Weekly,1407083423 +46311,8961,BD-R,1395592655 +46311,8961,BD-Video,1422063458 +46311,8961,DVD-Video,1422063458 +46311,8965,BD-Video,1415479936 +46311,8965,IMAX DMR 3-D,1306607423 +46311,8965,Stereoscopic 3-D,1306607423 +46311,8966,DVD-RAM,1374424291 +46311,8974,DVD-RAM,1347743035 +46311,8977,BD-Video,1328042143 +46311,8981,DVD-Video,1322326369 +46311,8990,VistaVision,1418407105 +46311,8991,BD-R,1399750096 +46311,8998,70mm,1329077534 +46311,8998,BD-R,1329077534 +46311,8998,Blow-Up,1329077534 +46311,8999,70mm,1289493826 +46311,8999,BD-R,1289493826 +46311,8999,Blow-Up,1289493826 +46311,9000,BD-R,1329077556 +46311,9002,BD-R,1352398755 +46311,9006,BD-R,1360442289 +46311,9007,BD-R,1360441642 +46311,9008,DVD-Video,1308504826 +46311,9011,BD-R,1347741709 +46311,9014,CLV,1421091410 +46311,9016,Betamax,1238257969 +46311,25735,DVD-RAM,1306697681 +46311,25736,BD-R,1302803475 +46311,25736,DVD-Video,1366427335 +46311,25736,VHS,1232741740 +46311,25738,DVD-RAM,1339091096 +46311,25739,BD-R,1373141255 +46311,25739,CLV,1341249749 +46311,25741,BD-R,1380472285 +46311,25741,DVD-RAM,1370198191 +46311,25743,BD-R,1387657372 +46311,25744,Betamax,1239032876 +46311,25744,DVD-Video,1230585986 +46311,25746,DVD-R,1234039722 +46311,25746,DVD-Video,1366427589 +46311,25746,VHS,1234039705 +46311,25747,BD-R,1403545602 +46311,25747,DVD-R,1387075281 +46311,25748,BD-R,1316887889 +46311,25750,DVD-Video,1181421958 +46311,25751,BD-R,1382746493 +46311,25751,DVD-RAM,1278793616 +46311,25752,BD-R,1422061044 +46311,25752,DVD-RAM,1233420269 +46311,25753,BD-R,1289495345 +46311,25753,DVD-R,1233430422 +46311,25755,BD-R,1385066725 +46311,25755,CLV,1237747319 +46311,25755,DVD-RAM,1289496980 +46311,25755,DVD-Video,1366427533 +46311,25755,Two-color Technicolor sequence,1418417509 +46311,25755,VHS,1237747319 +46311,25757,BD-R,1413056161 +46311,25757,DVD-R,1236619572 +46311,25760,BD-R,1399750510 +46311,25760,DVD-RAM,1366568601 +46311,25762,BD-R,1354398103 +46311,25762,DVD-R,1386535867 +46311,25763,DVD-Video,1198455922 +46311,25764,BD-R,1422062987 +46311,25764,CLV,1274981023 +46311,25764,DVD-R,1183247047 +46311,25764,DVD-RAM,1183247047 +46311,25766,BD-R,1357844013 +46311,25768,BD-R,1418406131 +46311,25769,BD-R,1437074393 +46311,25769,DVD-Video,1181422027 +46311,25773,BD-R,1414264677 +46311,25773,DVD-RAM,1290882434 +46311,25775,BD-R,1405199317 +46311,25777,BD-R,1443311318 +46311,25777,DVD-RAM,1273768083 +46311,25778,BD-R,1413056382 +46311,25783,BD-R,1413055574 +46311,25783,CLV,1375038881 +46311,25783,DVD-R,1232739748 +46311,25783,DVD-RAM,1232739748 +46311,25783,Two-color Technicolor,1418418239 +46311,25786,DVD-R,1366568556 +46311,25786,DVD-Video,1366568580 +46311,25787,BD-R,1309022675 +46311,25788,BD-R,1306445678 +46311,25789,BD-R,1443311931 +46311,25789,CLV,1369336808 +46311,25789,DVD-RAM,1238182937 +46311,25792,BD-R,1298140295 +46311,25793,BD-R,1381080357 +46311,25793,DVD-R,1238348538 +46311,25794,BD-R,1336664147 +46311,25795,BD-R,1396551205 +46311,25795,CLV,1232739423 +46311,25796,BD-R,1354824194 +46311,25796,DVD-RAM,1342118249 +46311,25797,BD-R,1382746406 +46311,25797,DVD-RAM,1252602628 +46311,25798,BD-R,1330292593 +46311,25798,CLV,1375039368 +46311,25798,VHS,1236616968 +46311,25800,BD-R,1339958934 +46311,25801,BD-R,1326835042 +46311,25802,DVD-Video,1237050280 +46311,25803,BD-R,1413056712 +46311,25803,DVD-RAM,1386538883 +46311,25803,DVD-Video,1366426559 +46311,25804,BD-R,1307810804 +46311,25805,BD-R,1355601938 +46311,25806,BD-R,1440274884 +46311,25807,BD-R,1330292571 +46311,25807,CLV,1375039580 +46311,25809,DVD-Video,1367773567 +46311,25811,BD-R,1300993246 +46311,25812,BD-R,1401999820 +46311,25819,BD-R,1384454791 +46311,25819,DVD-R,1237228361 +46311,25820,CLV,1375039568 +46311,25822,DVD-Video,1308504703 +46311,25825,BD-R,1403547758 +46311,25826,BD-R,1373139346 +46311,25827,BD-R,1336663830 +46311,25827,VHS,1237572768 +46311,25828,BD-R,1371411058 +46311,25829,DVD-Video,1366426180 +46311,25830,BD-R,1437074441 +46311,25830,CLV,1274975651 +46311,25831,BD-R,1378665938 +46311,25833,BD-R,1339090554 +46311,25834,BD-R,1399750674 +46311,25834,DVD-R,1306096795 +46311,25835,BD-R,1429813835 +46311,25839,BD-R,1437071883 +46311,25840,BD-R,1426362346 +46311,25840,CLV,1274982558 +46311,25841,BD-R,1403545496 +46311,25841,DVD-R,1238258218 +46311,25842,BD-R,1289494770 +46311,25850,BD-R,1374424177 +46311,25850,CLV,1234037746 +46311,25852,BD-R,1313859054 +46311,25852,DVD-Video,1367860970 +46311,25856,BD-R,1305223113 +46311,25856,CLV,1369939861 +46311,25858,BD-R,1376238130 +46311,25860,BD-R,1440277636 +46311,25864,BD-R,1394313273 +46311,25865,BD-R,1394314275 +46311,25866,BD-R,1376238549 +46311,25866,CLV,1238179412 +46311,25868,BD-R,1329075970 +46311,25870,BD-R,1426361958 +46311,25870,DVD-R,1234035715 +46311,25872,BD-R,1392663614 +46311,25875,BD-R,1323572839 +46311,25878,BD-R,1437071799 +46311,25879,BD-R,1317587310 +46311,25881,BD-R,1437073620 +46311,25884,BD-R,1418406280 +46311,25885,BD-R,1443312883 +46311,25886,BD-R,1405199652 +46311,25890,BD-R,1360441481 +46311,25891,BD-R,1437074173 +46311,25891,CLV,1233434096 +46311,25892,BD-R,1326836221 +46311,25893,BD-R,1445023251 +46311,25894,BD-R,1418409598 +46311,25894,CLV,1369337396 +46311,25898,BD-R,1335716121 +46311,25899,BD-R,1392664485 +46311,25900,BD-R,1289493913 +46311,25901,BD-R,1367087138 +46311,25902,BD-R,1429814496 +46311,25903,BD-R,1437940134 +46311,25903,DVD-R,1237228746 +46311,25904,BD-R,1305222598 +46311,25905,CLV,1237231182 +46311,25911,BD-R,1405198226 +46311,25912,BD-R,1311266839 +46311,25913,BD-R,1354396869 +46311,25913,Betamax,1349377123 +46311,25913,DVD-RAM,1289496814 +46311,25914,DVD-R,1236617654 +46311,25915,BD-R,1307810787 +46311,25916,BD-R,1293762279 +46311,25918,BD-R,1349545313 +46311,25920,BD-R,1426364910 +46311,25923,BD-R,1311265871 +46311,25924,BD-R,1426361834 +46311,25927,BD-R,1329078090 +46311,25927,DVD-Video,1367859951 +46311,25928,BD-R,1319911514 +46311,25929,BD-R,1437073935 +46311,25930,BD-R,1336664102 +46311,25932,BD-R,1386444891 +46311,25934,BD-R,1423770509 +46311,25937,BD-R,1413054673 +46311,25937,CLV,1232742519 +46311,25938,CLV,1233084533 +46311,25940,BD-R,1386441351 +46311,25940,DVD-R,1237052675 +46311,25941,BD-R,1330292662 +46311,25943,BD-R,1359924355 +46311,25944,BD-R,1293763742 +46311,25945,BD-R,1440275279 +46311,25945,DVD-RAM,1289497008 +46311,25946,BD-R,1426362394 +46311,25947,BD-R,1369332773 +46311,25950,BD-R,1422062172 +46311,25951,BD-R,1323574195 +46311,25952,BD-R,1319910242 +46311,25954,BD-R,1405198131 +46311,25954,Betamax,1237601691 +46311,25959,BD-R,1392663476 +46311,25959,DVD-R,1289500981 +46311,25959,DVD-RAM,1289500981 +46311,25960,BD-R,1418406077 +46311,25961,BD-R,1422063368 +46311,25962,BD-R,1331228978 +46311,25963,BD-R,1384028049 +46311,25964,DVD-Video,1280449196 +46311,25965,BD-R,1401996495 +46311,25966,BD-R,1366315994 +46311,25972,BD-R,1319912271 +46311,25972,DVD-RAM,1344530872 +46311,25974,BD-R,1445022908 +46311,25974,CLV,1274982556 +46311,25977,DVD-Video,1308504023 +46311,25979,Columbia 3-D,1306600518 +46311,25979,Stereoscopic 3-D,1306600518 +46311,25980,BD-R,1394314365 +46311,25980,DVD-R,1341516178 +46311,25980,DVD-RAM,1341516178 +46311,25989,BD-R,1431201818 +46311,25989,Betamax,1341511946 +46311,25990,BD-R,1445021093 +46311,25991,BD-R,1399750137 +46311,25993,BD-R,1405198275 +46311,25994,BD-R,1307810626 +46311,25995,BD-R,1347741491 +46311,25996,BD-R,1413054697 +46311,25996,CLV,1274984584 +46311,25996,DVD-RAM,1281044054 +46311,25999,BD-R,1352398682 +46311,26000,BD-R,1384028649 +46311,26001,BD-R,1331229721 +46311,26002,BD-R,1433636197 +46311,26002,DVD-R,1237572711 +46311,26003,BD-R,1405197266 +46311,26005,BD-R,1347741526 +46311,26006,BD-R,1418406317 +46311,26006,VistaVision,1418406377 +46311,26008,VistaVision,1418406737 +46311,26009,BD-R,1394314388 +46311,26010,BD-R,1369940117 +46311,26010,CinemaScope 55,1274974611 +46311,26010,CLV,1274974572 +46311,26010,DVD-R,1306446008 +46311,26010,DVD-RAM,1306446008 +46311,26012,BD-R,1347741542 +46311,26013,BD-R,1309023737 +46311,26019,BD-R,1342898352 +46311,26021,Betamax,1349378813 +46311,26021,CLV,1430148374 +46311,26021,DVD-RAM,1287684620 +46311,26022,BD-R,1339091028 +46311,26025,BD-R,1342898247 +46311,26027,BD-R,1433636604 +46311,26034,BD-R,1440277427 +46311,26035,DVD-RAM,1349545278 +46311,26038,VistaVision,1418407674 +46311,26042,BD-R,1347734293 +46311,26043,BD-R,1416586824 +46311,26043,Technirama,1416587032 +46311,26044,BD-R,1387228873 +46311,26047,BD-R,1440275705 +46311,26047,DVD-R,1349375916 +46311,26049,DVD-Video,1230585919 +46311,26051,BD-R,1426365312 +46311,26052,BD-R,1354828333 +46311,26055,DVD-Video,1198455606 +46311,26062,BD-R,1344529999 +46311,26063,BD-R,1426365275 +46311,26064,DVD-R,1182635008 +46311,26064,DVD-RAM,1182635008 +46311,26064,DVD-Video,1280448841 +46311,26067,BD-R,1399750010 +46311,26070,VHS,1381691153 +46311,26072,BD-R,1413052083 +46311,26076,BD-R,1384028539 +46311,26078,BD-R,1323567428 +46311,26079,BD-R,1331229215 +46311,26079,Betamax,1232737736 +46311,26080,DVD-Video,1366511568 +46311,26083,BD-R,1333644854 +46311,26083,Betamax,1352141228 +46311,26083,CLV,1352141228 +46311,26084,BD-R,1379790982 +46311,26084,CLV,1237573954 +46311,26084,Technirama,1418422092 +46311,26085,70mm,1278793865 +46311,26085,BD-R,1332441262 +46311,26085,CLV,1369336393 +46311,26085,DVD-RAM,1278793865 +46311,26085,Ultra Panavision 70,1278793865 +46311,26090,BD-R,1414262721 +46311,26093,BD-R,1300993222 +46311,26093,Cinerama,1416857649 +46311,26093,DVD-R,1387138984 +46311,26093,DVD-RAM,1387138984 +46311,26094,BD-R,1384028784 +46311,26095,BD-R,1367086383 +46311,26095,Betamax,1306096881 +46311,26096,70mm,1299181638 +46311,26096,Anamorphic Blow-Up,1299181638 +46311,26096,BD-R,1299181638 +46311,26098,DVD-RAM,1344879613 +46311,26099,CLV,1388255954 +46311,26104,BD-R,1369332629 +46311,26111,70mm,1431203327 +46311,26111,Anamorphic Blow-Up,1431203327 +46311,26113,BD-R,1323567375 +46311,26116,BD-R,1445021279 +46311,26116,CLV,1361820288 +46311,26119,BD-R,1344530573 +46311,26119,DVD-Video,1367860596 +46311,26123,BD-R,1332441682 +46311,26125,BD-R,1413053120 +46311,26131,BD-R,1394314425 +46311,26131,DVD-R,1182636402 +46311,26131,DVD-RAM,1182636402 +46311,26133,BD-R,1293763667 +46311,26133,BD-Video,1415478899 +46311,26134,BD-R,1289495869 +46311,26136,70mm,1333992520 +46311,26136,BD-R,1381079896 +46311,26136,DVD-R,1233432360 +46311,26136,DVD-RAM,1233432360 +46311,26136,Ultra Panavision 70,1333992520 +46311,26139,70mm,1278793682 +46311,26139,Anamorphic Blow-Up,1278793681 +46311,26139,DVD-RAM,1278793681 +46311,26139,VHS,1236610914 +46311,26140,BD-R,1384454822 +46311,26141,BD-R,1392663634 +46311,26141,DVD-R,1352578910 +46311,26142,BD-R,1378668190 +46311,26142,DVD-RAM,1237227046 +46311,26144,BD-R,1352059989 +46311,26147,BD-R,1394314293 +46311,26147,DVD-R,1238269067 +46311,26148,BD-R,1365878788 +46311,26150,BD-R,1385066194 +46311,26153,70mm,1296680171 +46311,26153,BD-R,1305223060 +46311,26153,Super Panavision 70,1296680171 +46311,26155,70mm,1333992619 +46311,26155,CLV,1339262329 +46311,26155,DVD-RAM,1236621562 +46311,26155,Ultra Panavision 70,1333992619 +46311,26158,BD-R,1394313580 +46311,26158,Betamax,1230654162 +46311,26158,DVD-R,1230654162 +46311,26159,BD-R,1376238646 +46311,26159,DVD-RAM,1245773712 +46311,26164,DVD-Video,1275148082 +46311,26170,BD-R,1344530709 +46311,26171,70mm,1281555936 +46311,26171,BD-Video,1281555936 +46311,26171,Superpanorama MCS 70,1281555936 +46311,26172,BD-R,1363290390 +46311,26180,BD-R,1433635179 +46311,26183,Betamax,1332445848 +46311,26185,BD-R,1289495892 +46311,26187,BD-Video,1437943097 +46311,26187,DVD-R,1233433484 +46311,26188,BD-R,1443311828 +46311,26189,BD-R,1299180967 +46311,26191,BD-R,1334860195 +46311,26194,BD-R,1299181336 +46311,26197,70mm,1333993108 +46311,26197,Sovscope 70,1333993108 +46311,26199,DVD-R,1199053315 +46311,26204,BD-R,1396550808 +46311,26204,DVD-Video,1367772182 +46311,26205,BD-R,1392663582 +46311,26205,DVD-R,1342124386 +46311,26207,BD-R,1342898277 +46311,26210,BD-R,1394310546 +46311,26213,BD-R,1394314528 +46311,26213,Betamax,1371414999 +46311,26216,BD-R,1426360551 +46311,26219,BD-R,1289495630 +46311,26222,DVD-RAM,1273768194 +46311,26222,DVD-Video,1280448869 +46311,26225,BD-R,1415477271 +46311,26226,Betamax,1234035859 +46311,26227,BD-R,1416587343 +46311,26229,BD-R,1365878864 +46311,26231,DVD-RAM,1281043740 +46311,26242,BD-R,1422060688 +46311,26248,BD-R,1339958513 +46311,26251,BD-R,1326836389 +46311,26252,BD-R,1373139639 +46311,26253,BD-R,1418408803 +46311,26254,BD-R,1381079919 +46311,26257,DVD-Video,1384720561 +46311,26258,DVD-Video,1275148098 +46311,26259,BD-R,1426365516 +46311,26265,CLV,1361819127 +46311,26277,BD-R,1422060829 +46311,26280,BD-Video,1437942938 +46311,26285,Betamax,1185672603 +46311,26285,DVD-Video,1185672603 +46311,26294,BD-R,1423770588 +46311,26294,DVD-R,1237574605 +46311,26295,DVD-Video,1401998110 +46311,26297,BD-R,1357844219 +46311,26299,VHS,1237748388 +46311,26301,Betamax,1237829926 +46311,26301,DVD-RAM,1237829926 +46311,26302,BD-R,1422060851 +46311,26303,Betamax,1238186379 +46311,26303,DVD-R,1238186379 +46311,26306,BD-R,1386440344 +46311,26306,CLV,1361819150 +46311,26313,BD-R,1360442308 +46311,26314,BD-R,1386441296 +46311,26314,DVD-RAM,1306446040 +46311,26318,Betamax,1237747237 +46311,26318,CLV,1237747237 +46311,26320,Spacevision,1306602298 +46311,26320,Stereoscopic 3-D,1306602298 +46311,26320,VHS,1289500813 +46311,26323,Betamax,1233430935 +46311,26324,BD-R,1342898405 +46311,26325,DVD-Video,1342982902 +46311,26325,VHS,1342982902 +46311,26326,DVD-Video,1275148118 +46311,26327,Betamax,1352139991 +46311,26336,DVD-R,1230587127 +46311,26338,BD-R,1394314808 +46311,26338,Betamax,1307812781 +46311,26341,Betamax,1333822648 +46311,26341,CLV,1315336827 +46311,26343,BD-R,1373138612 +46311,26346,BD-R,1378667644 +46311,26346,DVD-RAM,1278793591 +46311,26349,BD-R,1433635306 +46311,26356,CLV,1386620861 +46311,26366,BD-R,1292631881 +46311,26370,BD-R,1347741853 +46311,26370,Betamax,1355616417 +46311,26375,Betamax,1238186073 +46311,26375,DVD-Video,1238186073 +46311,26380,BD-R,1433635591 +46311,26383,DVD-RAM,1287684687 +46311,26386,BD-R,1413053321 +46311,26386,CLV,1369333646 +46311,26387,BD-R,1377451436 +46311,26388,DVD-RAM,1253199705 +46311,26391,BD-R,1307809426 +46311,26391,Betamax,1237577281 +46311,26392,Betamax,1370806523 +46311,26393,Betamax,1238256899 +46311,26395,VHS,1378669412 +46311,26398,70mm,1142742090 +46311,26398,Anamorphic Blow-Up,1237140442 +46311,26398,Betamax,1183247357 +46311,26400,BD-R,1307810206 +46311,26400,VHS,1341516370 +46311,26414,Betamax,1238351536 +46311,26418,Betamax,1306096074 +46311,26422,70mm,1323573599 +46311,26422,BD-R,1323573599 +46311,26422,Spherical Blow-Up,1323573599 +46311,26425,BD-R,1329077316 +46311,26425,Betamax,1236613415 +46311,26431,DVD-Video,1236620223 +46311,26432,Betamax,1370888464 +46311,26432,DVD-RAM,1289496698 +46311,26462,Betamax,1182634586 +46311,26462,DVD-Video,1182634586 +46311,26464,70mm,1237142077 +46311,26464,Anamorphic Blow-Up,1237142077 +46311,26468,Betamax,1309115228 +46311,26476,Betamax,1237230187 +46311,26480,DVD-Video,1388090504 +46311,26485,Betamax,1237828586 +46311,26485,DVD-Video,1237828586 +46311,26486,BD-R,1431202585 +46311,26487,Betamax,1238259933 +46311,26487,CLV,1238259933 +46311,26488,70mm,1143135440 +46311,26488,Anamorphic Blow-Up,1237142216 +46311,26488,Betamax,1238259963 +46311,26490,Betamax,1384460995 +46311,26491,BD-R,1403547219 +46311,26492,Betamax,1238346668 +46311,26492,CLV,1407019521 +46311,26494,DVD-R,1238263122 +46311,26495,Betamax,1239034194 +46311,26495,DVD-R,1239034194 +46311,26495,DVD-RAM,1270414787 +46311,26501,Betamax,1306698080 +46311,26501,CLV,1306698080 +46311,26502,CLV,1232732892 +46311,26504,Betamax,1185055390 +46311,26509,Betamax,1198450996 +46311,26513,BD-R,1437072606 +46311,26513,Betamax,1236610233 +46311,26514,Betamax,1349376729 +46311,26521,Betamax,1237823249 +46311,26523,Betamax,1382215241 +46311,26524,BD-R,1413049767 +46311,26532,Betamax,1332447201 +46311,26538,Betamax,1307812963 +46311,26538,VHS,1307812963 +46311,26544,CLV,1426525925 +46311,26550,VHS,1237231305 +46311,26554,Betamax,1237823127 +46311,26554,VHS,1237823127 +46311,26555,70mm,1403548450 +46311,26555,CLV,1403548449 +46311,26555,Spherical Blow-Up,1403548450 +46311,26559,Betamax,1385068279 +46311,26561,Betamax,1238350297 +46311,26562,70mm,1430158455 +46311,26562,CLV,1430158455 +46311,26562,Spherical Blow-Up,1430158455 +46311,26565,Betamax,1332445870 +46311,26567,Betamax,1185055685 +46311,26574,BD-R,1302803507 +46311,26578,DVD-Video,1237829065 +46311,26582,Betamax,1382829951 +46311,26582,DVD-RAM,1382829951 +46311,26596,BD-R,1390854397 +46311,26600,Betamax,1354480910 +46311,26608,Betamax,1384459719 +46311,26610,Betamax,1386625936 +46311,26616,BD-Video,1433637601 +46311,26616,DVD-Video,1292632237 +46311,26617,CLV,1307030954 +46311,26629,Betamax,1237048913 +46311,26643,DVD-Video,1307029955 +46311,26676,CLV,1421099614 +46311,26680,BD-R,1413051198 +46311,26684,BD-R,1443312832 +46311,26688,CLV,1403548577 +46311,26693,CLV,1387749024 +46311,26694,VHS,1236620716 +46311,26695,CLV,1437071408 +46311,26698,CLV,1427733142 +46311,26699,BD-R,1374424037 +46311,26700,CLV,1403548378 +46311,26704,CLV,1407019455 +46311,26707,VHS,1385068762 +46311,26708,CLV,1385398100 +46311,26710,CLV,1387067850 +46311,26713,BD-R,1390854303 +46311,26719,CLV,1333652808 +46311,26728,CLV,1421098070 +46311,26736,BD-R,1354824327 +46311,26744,CLV,1421095818 +46311,26745,CLV,1406937000 +46311,26750,CLV,1339262945 +46311,26776,DVD-Video,1237821119 +46311,26782,CLV,1417463180 +46311,26791,70mm,1427744756 +46311,26791,Anamorphic Blow-Up,1427744756 +46311,26791,CLV,1427744756 +46311,26796,CLV,1230654241 +46311,26797,CLV,1386620179 +46311,26797,VHS,1386620179 +46311,26854,CLV,1406940474 +46311,26861,BD-R,1326835493 +46311,26861,DVD-RAM,1289496534 +46311,26870,CLV,1406936792 +46311,26903,DVD-R,1238353464 +46311,26903,DVD-RAM,1238353464 +46311,26914,DVD-RAM,1344733091 +46311,26965,DVD-Video,1182717103 +46311,26973,DVD-R,1342458451 +46311,27003,BD-R,1387067407 +46311,27087,BD-R,1349379818 +46311,27338,DVD-R,1234037708 +46311,27455,BD-R,1387658523 +46311,27564,BD-R,1342898770 +46311,27608,BD-Video,1415477981 +46311,27660,DVD-Video,1181420971 +46311,27664,DVD+RW,1333652332 +46311,27706,DVD-Video,1237054966 +46311,27713,DVD-R,1306096175 +46311,27731,DVD-Video,1230653001 +46311,27778,DVD-R,1233425514 +46311,27792,BD-R,1335714341 +46311,27846,DVD-R,1185127690 +46311,27846,DVD-RAM,1185127690 +46311,27888,DVD-RAM,1363290576 +46311,30701,BD-R,1433636825 +46311,30712,BD-R,1392663353 +46311,30742,BD-R,1363289862 +46311,30742,CLV,1426531771 +46311,30781,BD-R,1330292232 +46311,30793,BD-Video,1384455477 +46311,30793,IMAX DMR,1306683659 +46311,30800,BD-R,1387228482 +46311,30808,BD-R,1367087015 +46311,30812,BD-Video,1338052542 +46311,30812,DVD-Video,1181423173 +46311,30861,BD-R,1307810530 +46311,30892,DVD-R,1237743420 +46311,30892,DVD-RAM,1237743420 +46311,30952,VistaVision,1418407806 +46311,30977,BD-R,1429814035 +46311,30977,CLV,1421099162 +46311,31000,Betamax,1238264393 +46311,31004,DVD-Video,1238349988 +46311,31011,Betamax,1236617588 +46311,31030,BD-R,1403545411 +46311,31030,CLV,1426529969 +46311,31035,Betamax,1238267782 +46311,31035,VHS,1238267782 +46311,31038,Betamax,1238187049 +46311,31042,BD-R,1399573702 +46311,31042,DVD-R,1233434561 +46311,31042,DVD-RAM,1233434562 +46311,31047,Betamax,1236620004 +46311,31104,BD-R,1331229762 +46311,31107,Betamax,1237230798 +46311,31116,BD-R,1395592894 +46311,31150,Betamax,1239033210 +46311,31156,DVD-Video,1308502088 +46311,31158,DVD-Video,1308504011 +46311,31160,DVD-Video,1308502056 +46311,31162,DVD-R,1237055612 +46311,31162,DVD-RAM,1237055612 +46311,31221,BD-Video,1384455216 +46311,31221,DVD-Video,1328042685 +46311,31251,Betamax,1236610395 +46311,31251,CLV,1236610395 +46311,31255,70mm,1296680361 +46311,31255,BD-R,1347740499 +46311,31255,CLV,1369336366 +46311,31255,DVD-R,1236610289 +46311,31255,DVD-RAM,1236610289 +46311,31255,Super Panavision 70,1296680361 +46311,31270,VHS,1238268373 +46311,31297,DVD-RAM,1278793404 +46311,31309,BD-R,1339090627 +46311,31337,BD-R,1422063346 +46311,31347,BD-R,1377451177 +46311,31347,CLV,1274973963 +46311,31349,BD-R,1319910192 +46311,31351,BD-R,1373139316 +46311,31353,BD-R,1339958908 +46311,31364,BD-R,1390855309 +46311,31367,CLV,1406933915 +46311,31374,BD-R,1319911538 +46311,31389,BD-R,1437072078 +46311,31429,BD-R,1355600814 +46311,31429,Reality Camera System,1306607516 +46311,31429,Stereoscopic 3-D,1306607517 +46311,31485,BD-R,1426361939 +46311,31485,Betamax,1237822152 +46311,31487,BD-R,1369940270 +46311,31502,Betamax,1237829179 +46311,31522,Betamax,1237228404 +46311,31528,BD-R,1443313150 +46311,31547,BD-Video,1433637639 +46311,31547,DVD-Video,1292632100 +46311,31549,BD-Video,1433637324 +46311,31549,DVD-Video,1292632113 +46311,31553,CLV,1427740060 +46311,31590,BD-R,1316888294 +46311,31594,VistaVision,1418407623 +46311,31598,BD-R,1299181671 +46311,31600,BD-R,1319912505 +46311,31613,DVD-Video,1318098556 +46311,31617,70mm,1391008042 +46311,31617,Super Technirama 70,1391008042 +46311,31645,BD-R,1443313167 +46311,31655,Clear-Vision,1306600286 +46311,31655,Stereoscopic 3-D,1306600286 +46311,31658,BD-R,1316888038 +46311,31658,BD-Video,1422060425 +46311,31658,DVD-RAM,1289496169 +46311,31658,DVD-Video,1422060425 +46311,31660,BD-R,1342717253 +46311,31682,DVD-R,1237578798 +46311,31687,BD-R,1354396945 +46311,31689,DVD-R,1236615278 +46311,31689,DVD-Video,1318710028 +46311,31737,BD-R,1334859286 +46311,31770,BD-R,1334860049 +46311,31826,DVD-R,1367177988 +46311,31826,DVD-RAM,1367177988 +46311,31847,BD-R,1363459595 +46311,31847,CLV,1369335634 +46311,31847,DVD-Video,1367859421 +46311,31851,BD-R,1352396677 +46311,31869,CLV,1369939923 +46311,31921,CLV,1274984010 +46311,31923,70mm,1437074496 +46311,31923,BD-R,1437074496 +46311,31930,BD-R,1370542013 +46311,31934,BD-R,1329078018 +46311,31950,BD-R,1382746774 +46311,31950,DVD-R,1232735972 +46311,31950,DVD-RAM,1246463184 +46311,31973,BD-R,1365880331 +46311,31991,BD-R,1305222700 +46311,32011,DVD-RAM,1347742960 +46311,32031,BD-Video,1360441088 +46311,32031,IMAX DMR,1306683587 +46311,32058,CLV,1406941352 +46311,32060,DVD-R,1230652925 +46311,32078,BD-R,1385066513 +46311,32078,BD-Video,1415479745 +46311,32082,Betamax,1238268188 +46311,32116,Betamax,1237580112 +46311,32128,BD-R,1401999853 +46311,32139,70mm,1296679319 +46311,32139,BD-R,1399750354 +46311,32139,CLV,1369336120 +46311,32139,Todd-AO,1296679319 +46311,32151,BD-R,1311265839 +46311,32160,BD-R,1382746435 +46311,32172,DVD-R,1351185687 +46311,32172,DVD-RAM,1351185688 +46311,32174,BD-R,1295722693 +46311,32179,BD-R,1413055420 +46311,32179,Betamax,1341255159 +46311,32203,Betamax,1333649087 +46311,32261,BD-R,1426362212 +46311,32277,BD-R,1306445783 +46311,32280,BD-R,1300993291 +46311,32291,DVD-Video,1237229950 +46311,32302,DVD-R,1236613686 +46311,32314,DVD-R,1236613449 +46311,32316,BD-R,1317587612 +46311,32329,CLV,1369333695 +46311,32349,CLV,1369939843 +46311,32357,BD-R,1374423747 +46311,32369,DVD-RAM,1288547951 +46311,32371,BD-R,1339958853 +46311,32375,BD-R,1440277544 +46311,32381,BD-R,1390856651 +46311,32383,70mm,1342898508 +46311,32383,Anamorphic Blow-Up,1342898508 +46311,32383,BD-R,1342898492 +46311,32383,CLV,1233076936 +46311,32385,Betamax,1238343128 +46311,32387,BD-R,1354824352 +46311,32419,CLV,1437071487 +46311,32433,BD-R,1392663547 +46311,32442,CLV,1421097948 +46311,32456,DVD-R,1237750596 +46311,32456,DVD-RAM,1237750596 +46311,32469,VistaVision,1418406684 +46311,32483,BD-R,1413056624 +46311,32493,DVD-R,1344881229 +46311,32509,BD-R,1437074129 +46311,32509,Cry Tough,1437074129 +46311,32515,Betamax,1386622132 +46311,32525,BD-R,1426360919 +46311,32525,DVD-RAM,1254351556 +46311,32551,DVD-RAM,1283015514 +46311,32560,BD-R,1309023895 +46311,32582,DVD-R,1236614205 +46311,32587,BD-R,1307810928 +46311,32587,BD-Video,1422063659 +46311,32625,70mm,1296680425 +46311,32625,DVD-RAM,1237052132 +46311,32625,Super Panavision 70,1391006135 +46311,32625,Todd-AO,1369942134 +46311,32627,Betamax,1237826568 +46311,32646,70mm,1143137063 +46311,32646,Spherical Blow-Up,1237207556 +46311,32653,BD-R,1413049223 +46311,32686,DVD-RAM,1306094839 +46311,32719,BD-R,1293761637 +46311,32719,Betamax,1306096254 +46311,32721,70mm,1306092102 +46311,32721,BD-R,1367084941 +46311,32721,Ultra Panavision 70,1306092102 +46311,32728,BD-R,1293761450 +46311,32728,DVD-RAM,1289496751 +46311,32735,BD-Video,1437942521 +46311,32781,70mm,1431202790 +46311,32781,Anamorphic Blow-Up,1431202790 +46311,32781,BD-R,1431202789 +46311,32783,BD-R,1406939937 +46311,32792,BD-R,1437074463 +46311,32811,DVD-Video,1337881375 +46311,32834,BD-R,1433637052 +46311,32844,BD-R,1339090581 +46311,32866,BD-R,1381080490 +46311,32875,BD-R,1323574339 +46311,32875,BD-Video,1437942861 +46311,32882,BD-R,1390854570 +46311,32892,BD-R,1349372993 +46311,32898,BD-R,1380472029 +46311,32898,BD-Video,1390854200 +46311,32898,DVD-Video,1331230078 +46311,32906,BD-R,1433636407 +46311,32923,BD-R,1349373063 +46311,32954,BD-R,1405196878 +46311,32959,BD-R,1385066125 +46311,32999,DVD-R,1238354971 +46311,32999,DVD-RAM,1238354971 +46311,33036,CLV,1369333629 +46311,33049,VistaVision,1418407894 +46311,33072,BD-R,1403547583 +46311,33072,DVD-R,1233074838 +46311,33072,DVD-RAM,1233074838 +46311,33090,DVD-R,1359922051 +46311,33090,DVD-RAM,1359922051 +46311,33113,BD-R,1437072424 +46311,33129,DVD-R,1367090993 +46311,33129,DVD-RAM,1367090993 +46311,33154,DVD-R,1236613900 +46311,33164,BD-Video,1422063621 +46311,33166,BD-Video,1338053170 +46311,33193,BD-R,1382746684 +46311,33226,BD-Video,1437943950 +46311,33237,BD-R,1373139237 +46311,33253,Betamax,1232745517 +46311,33255,BD-R,1383506440 +46311,33261,BD-R,1416586425 +46311,33267,DVD-RAM,1366569228 +46311,33288,BD-R,1334860138 +46311,33312,BD-R,1443311275 +46311,33312,CLV,1369335425 +46311,33480,BD-R,1293762690 +46311,33493,BD-Video,1443312630 +46311,33493,DVD-Video,1443312630 +46311,33507,BD-R,1445022142 +46311,33555,DVD-Video,1308504849 +46311,33587,BD-R,1305223091 +46311,33587,CLV,1375038567 +46311,33608,BD-R,1445022250 +46311,33655,CLV,1358192721 +46311,33681,Anaglyphic 3-D sequences,1306607645 +46311,33681,Reality Camera System,1306607645 +46311,33755,BD-Video,1384455275 +46311,33760,BD-R,1369332675 +46311,33781,BD-R,1336664313 +46311,33794,DVD-Video,1182636244 +46311,33794,IMAX DMR,1306683618 +46311,33801,BD-R,1392664020 +46311,33834,BD-R,1403547737 +46311,33834,DVD-RAM,1310658190 +46311,33852,DVD-Video,1367771452 +46311,33852,three-strip Technicolor,1418418488 +46311,33905,BD-R,1349373183 +46311,33905,DVD-RAM,1288548379 +46311,33914,BD-R,1440277331 +46311,33917,BD-R,1437072630 +46311,33928,DVD-R,1386013708 +46311,33928,DVD-RAM,1386013709 +46311,33974,BD-R,1339089839 +46311,34002,BD-R,1329077632 +46311,34018,BD-R,1399750075 +46311,34018,DVD-RAM,1273768333 +46311,34026,BD-R,1371411126 +46311,34051,BD-R,1349372839 +46311,34051,Betamax,1359922624 +46311,34063,BD-R,1394313643 +46311,34065,BD-R,1333644937 +46311,34072,55 movies every kid should see--Entertainment Weekly,1407083210 +46311,34072,DVD-Video,1237228219 +46311,34115,BD-R,1437073597 +46311,34150,BD-Video,1338050801 +46311,34162,DVD-Video,1318181491 +46311,34177,BD-R,1392663949 +46311,34193,BD-R,1440277389 +46311,34306,BD-R,1433636092 +46311,34319,BD-Video,1422063709 +46311,34338,DVD-R,1181421712 +46311,34353,Betamax,1238346625 +46311,34359,BD-R,1363459412 +46311,34405,BD-Video,1353261944 +46311,34405,DVD-Video,1353261944 +46311,34469,BD-R,1319912747 +46311,34473,BD-R,1437071955 +46311,34517,BD-R,1394314059 +46311,34517,CLV,1361820211 +46311,34542,DVD-RAM,1331229786 +46311,34583,DVD-Video,1237821780 +46311,34583,VHS,1237821780 +46311,34608,BD-R,1394313910 +46311,34643,BD-R,1333644712 +46311,34645,DVD-RAM,1273768114 +46311,34696,BD-R,1379790483 +46311,35008,BD-R,1429814189 +46311,35008,DVD-R,1387132935 +46311,35050,BD-R,1323572985 +46311,35807,BD-R,1431200152 +46311,35853,DVD-Video,1337544830 +46311,36056,BD-R,1423773968 +46311,36056,DVD-RAM,1248793188 +46311,36312,BD-R,1445023015 +46311,36312,CLV,1369335860 +46311,36397,BD-R,1357844411 +46311,36401,BD-R,1344530053 +46311,36401,BD-Video,1367687189 +46311,36426,DVD-Video,1366425705 +46311,36553,BD-R,1373139180 +46311,36752,Betamax,1237826453 +46311,36902,CLV,1344883996 +46311,37211,BD-R,1298139959 +46311,37277,DVD-R,1289497626 +46311,37545,BD-Video,1433637448 +46311,37545,DVD-Video,1292632212 +46311,37626,BD-R,1443314590 +46311,37683,BD-R,1426360325 +46311,37729,BD-Video,1384455491 +46311,37744,BD-R,1377451721 +46311,37785,BD-R,1360444087 +46311,37785,CLV,1369333573 +46311,37976,BD-R,1293762198 +46311,38004,DVD-R,1337881521 +46311,38004,DVD-RAM,1337881521 +46311,38004,DVD-Video,1337881521 +46311,38304,DVD-R,1209331823 +46311,38304,DVD-RAM,1209331893 +46311,38320,BD-R,1416586260 +46311,38384,BD-R,1377451197 +46311,38384,CLV,1274975051 +46311,38583,Betamax,1239033680 +46311,38843,70mm,1273767618 +46311,38843,BD-R,1293761150 +46311,38843,DVD-RAM,1273767618 +46311,38843,Super Technirama 70,1273767618 +46311,38881,DVD-Video,1275149814 +46311,38886,BD-Video,1434846702 +46311,39183,BD-R,1344530180 +46311,39305,DVD-RAM,1351452121 +46311,39305,VistaVision,1418407825 +46311,39398,DVD-R,1230652330 +46311,39421,BD-R,1427571162 +46311,39474,DVD-RAM,1273767894 +46311,39474,DVD-Video,1280449102 +46311,39481,BD-R,1323574360 +46311,39777,BD-R,1399749424 +46311,39777,DVD-RAM,1278793525 +46311,39779,DVD-RAM,1344530805 +46311,39801,DVD-RAM,1342457114 +46311,39941,DVD-Video,1352577774 +46311,40033,BD-R,1354397255 +46311,40033,DVD-R,1289498894 +46311,40033,DVD-RAM,1289498894 +46311,40339,Stereoscopic 3-D,1306607751 +46311,40425,CLV,1388086506 +46311,40457,BD-R,1416587428 +46311,40467,BD-R,1354396489 +46311,40478,BD-R,1416587082 +46311,40478,DVD-RAM,1360618286 +46311,40491,BD-R,1401999170 +46311,40815,IMAX DMR,1306683691 +46311,40828,BD-R,1330292424 +46311,40833,DVD-Video,1230585944 +46311,40988,DVD-R,1234037974 +46311,40988,Stereoscopic 3-D,1306600418 +46311,40988,WarnerVision,1306600418 +46311,41136,Betamax,1232742140 +46311,41226,BD-R,1307810823 +46311,41226,Betamax,1382832209 +46311,41402,DVD-Video,1352142694 +46311,41411,DVD-RAM,1281631498 +46311,41499,BD-R,1429814172 +46311,41523,BD-R,1399573392 +46311,41569,BD-Video,1245005130 +46311,41585,BD-R,1370542034 +46311,41627,BD-R,1347741565 +46311,41691,BD-R,1309022833 +46311,41699,DVD-Video,1232745917 +46311,41767,BD-R,1369332954 +46311,41831,BD-R,1376238410 +46311,41889,BD-R,1387066946 +46311,42002,BD-R,1395592585 +46311,42053,DVD-R,1186881434 +46311,42094,DVD-Video,1198456085 +46311,42217,BD-R,1369941024 +46311,42312,BD-R,1311266805 +46311,42518,BD-R,1390857239 +46311,42518,CLV,1306698159 +46311,42543,DVD-Video,1381692180 +46311,42553,BD-R,1330292490 +46311,42556,BD-R,1377451151 +46311,42556,DVD-RAM,1228514656 +46311,42629,DVD-Video,1240151593 +46311,42681,DVD-R,1230586846 +46311,42681,DVD-RAM,1230586846 +46311,42763,VistaVision,1418408189 +46311,42794,CLV,1363541032 +46311,42886,BD-R,1335714478 +46311,42938,BD-R,1376241185 +46311,42943,Betamax,1373221585 +46311,42952,BD-R,1374424217 +46311,43011,DVD-Video,1232742342 +46311,43039,BD-R,1344530397 +46311,43248,DVD-Video,1366427628 +46311,43383,BD-R,1371411076 +46311,43482,BD-R,1295723034 +46311,43518,DVD-RAM,1306697571 +46311,43567,BD-R,1437940043 +46311,43608,BD-R,1357844524 +46311,43608,DVD-RAM,1248882887 +46311,43628,CLV,1369334336 +46311,43631,BD-R,1395592792 +46311,43635,BD-R,1394313324 +46311,43635,DVD-RAM,1287684598 +46311,43652,DVD-R,1307030617 +46311,43652,DVD-RAM,1307030617 +46311,43682,CLV,1430154566 +46311,43699,BD-R,1381079854 +46311,43699,DVD-R,1387131197 +46311,43762,BD-R,1344530682 +46311,43822,BD-R,1292631975 +46311,43838,Betamax,1386014403 +46311,43883,CLV,1233430136 +46311,43934,IMAX 3-D,1306607799 +46311,43934,Stereoscopic 3-D,1306607799 +46311,44073,BD-R,1339090395 +46311,44100,BD-R,1330291209 +46311,44100,DVD-Video,1367770846 +46311,44153,BD-Video,1306698307 +46311,44168,BD-R,1413054809 +46311,44191,BD-Video,1245005201 +46311,44191,IMAX DMR,1306683717 +46311,44199,DVD-Video,1236615311 +46311,44392,BD-R,1437073417 +46311,44587,BD-R,1381080316 +46311,44587,DVD-RAM,1278793753 +46311,44601,Betamax,1342122045 +46311,44611,DVD-Video,1328042664 +46311,44655,BD-R,1302803696 +46311,44788,DVD-R,1238268866 +46311,44856,CLV,1361820259 +46311,44889,DVD-R,1237825192 +46311,44889,DVD-RAM,1237825192 +46311,44903,DVD-RAM,1309113961 +46311,44947,BD-R,1403545474 +46311,44974,DVD-R,1233432939 +46311,45047,BD-R,1367084789 +46311,45068,BD-R,1431202047 +46311,45170,BD-R,1378668317 +46311,45179,BD-R,1373141297 +46311,45179,CLV,1342121528 +46311,45192,DVD-Video,1341512926 +46311,45194,DVD-Video,1341512932 +46311,45224,BD-R,1289495241 +46311,45329,Betamax,1238256289 +46311,45335,BD-R,1413056400 +46311,45335,CLV,1233084104 +46311,45335,DVD-RAM,1290882392 +46311,45442,IMAX DMR,1306683752 +46311,45499,BD-Video,1401997186 +46311,45499,DVD-Video,1401997186 +46311,45517,BD-Video,1258131333 +46311,45517,DVD-Video,1313609351 +46311,45550,BD-R,1433635712 +46311,45635,DVD-R,1237579145 +46311,45679,BD-R,1323574153 +46311,45691,DVD-Video,1333822319 +46311,45707,BD-R,1433634217 +46311,45707,DVD-RAM,1253213347 +46311,45720,BD-Video,1437940171 +46311,45728,BD-Video,1426364709 +46311,45837,Betamax,1351451219 +46311,45891,BD-R,1423771418 +46311,45891,CLV,1274981393 +46311,45952,DVD-RAM,1385318346 +46311,45969,CLV,1403548162 +46311,45991,DVD-RAM,1370806606 +46311,46105,DVD-RAM,1367084889 +46311,46199,DVD-R,1306092967 +46311,46325,BD-R,1352059672 +46311,46367,CLV,1339093669 +46311,46372,BD-R,1383506458 +46311,46409,BD-R,1433636556 +46311,46457,BD-R,1339089900 +46311,46525,CLV,1349118587 +46311,46525,DVD-R,1384029408 +46311,46525,DVD-RAM,1384029408 +46311,46530,IMAX DMR 3-D,1306608032 +46311,46530,Stereoscopic 3-D sequences,1306608032 +46311,46604,BD-R,1413054632 +46311,46664,BD-R,1305222633 +46311,46664,DVD-Video,1230585897 +46311,46713,BD-R,1440872785 +46311,46716,BD-R,1307810844 +46311,46748,BD-R,1429814011 +46311,46765,DVD-RAM,1342118888 +46311,46803,CLV,1239034599 +46311,46850,DVD-R,1236614298 +46311,46869,BD-R,1326835743 +46311,46948,Stereoscopic 3-D,1306608106 +46311,46972,BD-Video,1423774042 +46311,46972,DVD-Video,1423774042 +46311,46972,IMAX DMR,1306683858 +46311,47005,BD-R,1413054721 +46311,47092,BD-R,1306445528 +46311,47124,IMAX DMR 3-D,1306608196 +46311,47124,Stereoscopic 3-D,1306608196 +46311,47131,DVD-R,1351365851 +46311,47131,DVD-RAM,1351365851 +46311,47146,BD-R,1443311719 +46311,47152,BD-R,1440872493 +46311,47152,Betamax,1307813022 +46311,47165,BD-R,1416587296 +46311,47196,CLV,1274983682 +46311,47196,VistaVision,1418406924 +46311,47239,BD-R,1373139212 +46311,47274,BD-R,1431200670 +46311,47277,BD-R,1376237996 +46311,47287,BD-R,1369941115 +46311,47287,DVD-RAM,1274973457 +46311,47306,BD-R,1415477873 +46311,47330,BD-R,1367084768 +46311,47477,BD-R,1422062146 +46311,47493,BD-R,1405200068 +46311,47493,CLV,1274974542 +46311,47493,DVD-RAM,1278793477 +46311,47566,BD-R,1437073502 +46311,47566,DVD-RAM,1288548404 +46311,47606,BD-R,1360441609 +46311,47615,BD-R,1342898723 +46311,47619,BD-R,1330292269 +46311,47629,BD-R,1427571525 +46311,47707,Technirama,1418422117 +46311,47721,55 movies every kid should see--Entertainment Weekly,1407082702 +46311,47721,BD-R,1426363550 +46311,47721,Betamax,1237824823 +46311,47721,CLV,1274983709 +46311,47723,BD-R,1289494792 +46311,47728,BD-R,1336664076 +46311,47736,BD-R,1306699107 +46311,47740,BD-R,1350584118 +46311,47836,DVD-R,1209332369 +46311,47836,DVD-RAM,1209332369 +46311,47904,BD-R,1382747630 +46311,47935,BD-R,1413056121 +46311,47997,DVD-Video,1236610500 +46311,48035,DVD-RAM,1264887576 +46311,48059,Betamax,1306095556 +46311,48084,BD-R,1374423401 +46311,48123,DVD-RAM,1339091079 +46311,48167,BD-R,1390855377 +46311,48177,BD-R,1360443960 +46311,48198,Betamax,1238261813 +46311,48198,CLV,1238261813 +46311,48268,DVD-R,1340656892 +46311,48268,DVD-RAM,1340656892 +46311,48299,DVD-RAM,1370200951 +46311,48301,BD-R,1363459669 +46311,48301,VHS,1237822008 +46311,48315,BD-R,1399750056 +46311,48315,DVD-RAM,1370889674 +46311,48315,MGM Camera 65,1333992941 +46311,48407,BD-R,1445022757 +46311,48414,IMAX DMR 3-D,1306608420 +46311,48414,Stereoscopic 3-D,1306608420 +46311,48516,BD-Video,1338052509 +46311,48536,BD-R,1352396929 +46311,48560,BD-Video,1434846755 +46311,48567,BD-R,1342717321 +46311,48575,BD-R,1390854732 +46311,48575,DVD-RAM,1246465745 +46311,48642,BD-R,1413049543 +46311,48704,Betamax,1335461825 +46311,48713,DVD-R,1359401413 +46311,48851,BD-R,1290882033 +46311,48851,DVD-Video,1341512862 +46311,48957,BD-R,1403546962 +46311,49007,BD-R,1413055749 +46311,49035,CLV,1309113321 +46311,49079,DVD-RAM,1344530903 +46311,49098,BD-R,1357844544 +46311,49098,DVD-R,1387139514 +46311,49098,DVD-RAM,1387139514 +46311,49200,BD-R,1317587524 +46311,49272,BD-Video,1390854104 +46311,49272,DVD-Video,1183313154 +46311,49274,BD-Video,1413055221 +46311,49274,IMAX DMR,1306683835 +46311,49286,BD-R,1390856578 +46311,49355,BD-R,1316888226 +46311,49389,BD-R,1329077585 +46311,49394,BD-R,1431200578 +46311,49394,DVD-R,1382217423 +46311,49412,BD-R,1440277680 +46311,49422,DVD-RAM,1258138730 +46311,49518,DVD-R,1358112153 +46311,49571,BD-R,1357842028 +46311,49571,CLV,1375039140 +46311,49593,BD-R,1323573156 +46311,49668,DVD-RAM,1240151119 +46311,49691,BD-R,1433634023 +46311,49746,BD-R,1311267027 +46311,49752,BD-R,1367085028 +46311,49754,Betamax,1333659446 +46311,49769,BD-R,1413055928 +46311,49817,VHS,1237749929 +46311,49902,BD-Video,1437942482 +46311,49917,DVD-R,1387071859 +46311,49985,BD-R,1437074349 +46311,50076,BD-R,1413049479 +46311,50076,CLV,1369334198 +46311,50162,DVD-RAM,1230591449 +46311,50229,BD-Video,1437944172 +46311,50229,DVD-R,1239034558 +46311,50245,BD-R,1386440691 +46311,50574,DVD-RAM,1333658648 +46311,50594,BD-R,1385066174 +46311,50615,BD-R,1289495596 +46311,50615,DVD-RAM,1350847197 +46311,50641,BD-R,1330292308 +46311,50658,DVD-R,1237743229 +46311,50685,DVD-RAM,1238350695 +46311,50821,BD-R,1383506559 +46311,50872,BD-Video,1422063433 +46311,50872,DVD-Video,1422063433 +46311,50898,BD-R,1399750990 +46311,50898,BD-Video,1437944112 +46311,50912,BD-Video,1381436264 +46311,50949,BD-R,1363290119 +46311,50970,DVD-R,1237575373 +46311,50970,DVD-RAM,1237575399 +46311,51044,BD-R,1363291470 +46311,51207,VHS,1384459814 +46311,51246,BD-R,1376238663 +46311,51251,DVD-R,1344726047 +46311,51255,BD-Video,1384455667 +46311,51265,BD-R,1431202443 +46311,51287,BD-R,1394310523 +46311,51287,DVD-R,1237226443 +46311,51287,DVD-RAM,1237226443 +46311,51302,Super Technirama 70,1418421056 +46311,51321,BD-R,1384454735 +46311,51321,DVD-RAM,1351450893 +46311,51372,BD-R,1422060752 +46311,51380,BD-Video,1437942503 +46311,51520,Betamax,1385069789 +46311,51617,Betamax,1386532534 +46311,51662,BD-Video,1328042100 +46311,51662,IMAX DMR,1306683881 +46311,51678,BD-R,1406940044 +46311,51698,DVD-RAM,1237054028 +46311,51773,BD-R,1440276056 +46311,51834,BD-Video,1396552387 +46311,51857,BD-R,1333644874 +46311,51894,BD-R,1418409979 +46311,52042,BD-R,1349372425 +46311,52153,VistaVision,1418407741 +46311,52202,BD-R,1384028174 +46311,52202,DVD-R,1342989296 +46311,52202,DVD-RAM,1342989297 +46311,52287,Stereoscopic 3-D,1306608578 +46311,52326,BD-R,1414262540 +46311,52352,BD-R,1437073689 +46311,52435,55 movies every kid should see--Entertainment Weekly,1407082553 +46311,52435,BD-Video,1415479888 +46311,52435,Betamax,1232741838 +46311,52443,BD-R,1355602035 +46311,52528,BD-R,1332441402 +46311,52589,CLV,1361819391 +46311,52660,CLV,1360618061 +46311,52690,BD-R,1413056252 +46311,52722,BD-Video,1405197634 +46311,52722,IMAX DMR,1306683919 +46311,52806,BD-R,1352397748 +46311,52813,BD-R,1443311524 +46311,52831,Betamax,1237228051 +46311,52913,BD-R,1307810966 +46311,53024,DVD-R,1289499857 +46311,53038,BD-R,1307810337 +46311,53066,BD-R,1304786599 +46311,53140,DVD-R,1351452255 +46311,53140,DVD-RAM,1351452255 +46311,53152,BD-R,1440275685 +46311,53152,DVD-RAM,1354481377 +46311,53370,BD-R,1405199980 +46311,53379,BD-R,1323574175 +46311,53443,BD-R,1422062012 +46311,53453,BD-Video,1384456080 +46311,53464,BD-Video,1338050810 +46311,53582,DVD-RAM,1339091126 +46311,53835,BD-R,1366315958 +46311,53853,BD-R,1290882147 +46311,53853,DVD-R,1387131958 +46311,53853,DVD-RAM,1387131958 +46311,53855,BD-R,1440275089 +46311,53880,DVD-RAM,1270413593 +46311,53880,VHS,1370810081 +46311,53887,BD-R,1437074586 +46311,53887,Betamax,1237579602 +46311,53912,DVD-R,1289505701 +46311,53916,BD-R,1323573072 +46311,53919,BD-R,1426361920 +46311,53967,Betamax,1342988873 +46311,53996,BD-Video,1403547951 +46311,53996,IMAX DMR,1306683968 +46311,54001,IMAX DMR 3-D,1306608790 +46311,54001,Stereoscopic 3-D sequences,1306608790 +46311,54020,CLV,1369333661 +46311,54049,Betamax,1355613896 +46311,54176,BD-R,1293761072 +46311,54229,Betamax,1387071998 +46311,54229,VHS,1387071999 +46311,54239,BD-R,1443311422 +46311,54262,BD-R,1369940296 +46311,54272,DVD-RAM,1238186158 +46311,54318,DVD-R,1232735862 +46311,54406,BD-R,1302803336 +46311,54480,BD-R,1347741198 +46311,54493,BD-R,1388083405 +46311,54501,BD-R,1429814517 +46311,54501,DVD-Video,1358105919 +46311,54691,DVD-RAM,1287684711 +46311,54725,BD-R,1363289881 +46311,54833,BD-R,1423771654 +46311,54878,BD-R,1396550858 +46311,54964,BD-R,1394311591 +46311,54964,DVD-R,1309116589 +46311,54995,BD-R,1394310476 +46311,54997,BD-Video,1381436206 +46311,55040,BD-R,1323567533 +46311,55078,BD-R,1306443520 +46311,55106,CLV,1274980656 +46311,55156,DVD-R,1236613801 +46311,55159,VistaVision,1418408531 +46311,55167,BD-Video,1426364598 +46311,55176,BD-R,1349372478 +46311,55290,BD-Video,1437942089 +46311,55360,BD-R,1390855275 +46311,55373,BD-R,1360442724 +46311,55507,70mm,1237138955 +46311,55507,Anamorphic Blow-Up,1237138955 +46311,55553,DVD-RAM,1310658328 +46311,55628,DVD-Video,1366428736 +46311,55671,BD-R,1422063114 +46311,55713,BD-R,1330292643 +46311,55757,Betamax,1333656350 +46311,55820,BD-Video,1370197049 +46311,55895,VistaVision,1418406471 +46311,55995,IMAX DMR 3-D,1306684001 +46311,55995,Stereoscopic 3-D,1306608869 +46311,56015,BD-R,1440278057 +46311,56015,DVD-Video,1367860062 +46311,56067,DVD-Video,1367773948 +46311,56098,BD-R,1401999347 +46311,56174,BD-Video,1378667933 +46311,56174,IMAX DMR,1306684026 +46311,56251,DVD-RAM,1233422252 +46311,56253,BD-R,1315079204 +46311,56350,BD-R,1305223140 +46311,56367,DVD-Video,1236621059 +46311,56379,DVD-RAM,1355613499 +46311,56563,DVD-RAM,1236613977 +46311,56626,CLV,1274978620 +46311,56797,BD-R,1443311212 +46311,56837,DVD-R,1287340425 +46311,56848,CLV,1406940692 +46311,56956,BD-R,1380474936 +46311,56959,BD-R,1385066450 +46311,56959,Stereoscopic 3-D,1369078976 +46311,57041,BD-R,1295723339 +46311,57041,DVD-Video,1366486946 +46311,57223,BD-R,1379790881 +46311,57418,BD-R,1363290524 +46311,57430,Betamax,1387067877 +46311,57473,BD-R,1440277161 +46311,57473,DVD-R,1237825925 +46311,57473,DVD-RAM,1237825925 +46311,57476,BD-R,1379791005 +46311,57478,BD-R,1316887953 +46311,57480,DVD-R,1236616460 +46311,57528,BD-Video,1381436225 +46311,57550,VHS,1237050940 +46311,57690,70mm,1369332579 +46311,57690,Anamorphic Blow-Up,1369332579 +46311,57690,BD-R,1369332579 +46311,57690,CLV,1238184347 +46311,57706,Betamax,1289498664 +46311,57709,BD-R,1385397093 +46311,57772,BD-R,1413051721 +46311,57854,BD-R,1429814127 +46311,57854,Betamax,1307812698 +46311,57910,BD-R,1332441618 +46311,57940,Betamax,1386620266 +46311,57970,Fusion 3-D,1306608931 +46311,57970,IMAX DMR 3-D,1306684068 +46311,57970,Stereoscopic 3-D,1306608931 +46311,58007,DVD-RAM,1281631462 +46311,58059,DVD-Video,1280448977 +46311,58061,DVD-RAM,1278793711 +46311,58105,IMAX DMR,1306684093 +46311,58191,DVD-RAM,1238265867 +46311,58274,BD-R,1374424198 +46311,58295,BD-Video,1437942137 +46311,58365,DVD-RAM,1344881518 +46311,58373,BD-R,1378665901 +46311,58509,BD-R,1390857387 +46311,58559,BD-Video,1242916794 +46311,58559,IMAX DMR,1306684886 +46311,58559,partially photographed in IMAX,1306684915 +46311,58564,BD-R,1298139868 +46311,58576,BD-R,1313858880 +46311,58598,Betamax,1370200664 +46311,58740,CLV,1274980514 +46311,58850,70mm blowup,1370204852 +46311,58850,Betamax,1370204852 +46311,58879,IMAX DMR,1306684119 +46311,58904,Betamax,1306697232 +46311,59037,IMAX DMR,1306684153 +46311,59074,BD-R,1443312062 +46311,59114,BD-R,1394313663 +46311,59126,BD-R,1344530112 +46311,59159,BD-R,1330292551 +46311,59159,CLV,1375039351 +46311,59173,Betamax,1237048896 +46311,59178,DVD-RAM,1344530827 +46311,59180,DVD-RAM,1344530783 +46311,59182,BD-R,1306445717 +46311,59184,BD-R,1307810597 +46311,59188,BD-R,1431200690 +46311,59188,Betamax,1386620541 +46311,59295,DVD-RAM,1270415230 +46311,59315,BD-Video,1440275804 +46311,59463,BD-R,1418409462 +46311,59527,BD-R,1384454755 +46311,59615,BD-Video,1355600651 +46311,59680,CLV,1274980490 +46311,59709,DVD-RAM,1287684796 +46311,59784,IMAX DMR,1306684845 +46311,59810,DVD-RAM,1237824790 +46311,59832,BD-R,1370542063 +46311,59844,Betamax,1344713861 +46311,59846,CLV,1349376392 +46311,59854,BD-R,1437073539 +46311,59861,BD-R,1328042478 +46311,59938,Betamax,1385069968 +46311,59942,BD-R,1392663766 +46311,59945,DVD-Video,1355082103 +46311,59947,Betamax,1370724250 +46311,59954,CLV,1274978602 +46311,59954,DVD-Video,1385396516 +46311,60014,DVD-RAM,1369333201 +46311,60020,DVD-RAM,1274972119 +46311,60040,BD-Video,1434846936 +46311,60069,55 movies every kid should see--Entertainment Weekly,1407082806 +46311,60069,BD-Video,1242916875 +46311,60074,BD-Video,1373683741 +46311,60103,BD-R,1422062131 +46311,60110,BD-R,1313860047 +46311,60137,DVD-RAM,1237823989 +46311,60145,BD-R,1363290024 +46311,60161,DVD-RAM,1233422261 +46311,60179,BD-R,1326835075 +46311,60223,BD-R,1399749395 +46311,60223,DVD-R,1387069960 +46311,60225,BD-R,1309023149 +46311,60227,BD-R,1357844310 +46311,60227,DVD-R,1386533629 +46311,60229,BD-R,1316887855 +46311,60309,BD-R,1307811807 +46311,60311,BD-R,1384028813 +46311,60314,70mm,1296680053 +46311,60314,BD-R,1316721099 +46311,60314,Super Panavision 70,1296680053 +46311,60333,DVD-RAM,1331228646 +46311,60343,BD-R,1440276549 +46311,60353,BD-R,1328042256 +46311,60363,DVD-RAM,1302803655 +46311,60365,BD-R,1341514613 +46311,60365,BD-Video,1415478377 +46311,60376,DVD-R,1387074088 +46311,60382,DVD-RAM,1237827955 +46311,60384,DVD-R,1387143715 +46311,60384,DVD-RAM,1387143715 +46311,60393,DVD-RAM,1238344446 +46311,60484,DVD-RAM,1273767795 +46311,60484,DVD-Video,1280449086 +46311,60487,BD-R,1289497146 +46311,60487,BD-Video,1415478711 +46311,60514,BD-Video,1423774206 +46311,60514,Fusion 3-D,1306610207 +46311,60514,Stereoscopic 3-D,1306610207 +46311,60684,BD-Video,1326835415 +46311,60684,IMAX DMR,1326835415 +46311,60735,BD-R,1307810252 +46311,60990,BD-R,1315078629 +46311,61031,Betamax,1387139597 +46311,61210,DVD-RAM,1242916111 +46311,61267,IMAX DMR 3-D,1306684945 +46311,61267,nWave 3-D,1306610281 +46311,61267,Stereoscopic 3-D,1306610281 +46311,61269,DVD-RAM,1289500467 +46311,61289,BD-R,1305222807 +46311,61357,BD-R,1307810230 +46311,61396,BD-R,1443314692 +46311,61401,BD-Video,1396552626 +46311,61434,BD-R,1413053031 +46311,61451,BD-R,1413053138 +46311,61470,Betamax,1230651102 +46311,61724,BD-R,1349372888 +46311,61934,BD-R,1443311888 +46311,61934,Betamax,1233085741 +46311,61937,BD-R,1347733898 +46311,62081,IMAX DMR,1306684967 +46311,62245,BD-R,1414264302 +46311,62526,BD-R,1437073087 +46311,62526,Betamax,1232742249 +46311,62764,BD-R,1413049336 +46311,62925,BD-R,1406940001 +46311,62956,DVD-RAM,1242916223 +46311,62974,BD-R,1440275662 +46311,62999,IMAX DMR,1306685006 +46311,63062,BD-Video,1381436187 +46311,63113,BD-Video,1390854124 +46311,63121,BD-R,1329075724 +46311,63280,BD-R,1418409558 +46311,63283,BD-R,1382745852 +46311,63617,DVD-RAM,1232734704 +46311,63629,BD-R,1405199633 +46311,63676,BD-R,1445022091 +46311,63688,CLV,1274978651 +46311,63692,DVD-Video,1230584310 +46311,63859,Stereoscopic 3-D,1306610556 +46311,63862,DVD-RAM,1237826472 +46311,63876,BD-Video,1381436166 +46311,63989,BD-R,1376241035 +46311,63989,DVD-R,1232739099 +46311,63989,DVD-RAM,1232739099 +46311,64245,BD-R,1323567023 +46311,64273,BD-R,1413055442 +46311,64283,BD-R,1386440651 +46311,64325,BD-R,1383506478 +46311,64368,Betamax,1237578416 +46311,64368,VHS,1237578416 +46311,64497,BD-Video,1319317618 +46311,64497,IMAX DMR,1306685029 +46311,64508,BD-R,1379790909 +46311,64519,BD-R,1339958825 +46311,64522,BD-R,1347741458 +46311,64522,DVD-RAM,1347742889 +46311,64575,BD-R,1423771635 +46311,64645,BD-R,1388263413 +46311,64897,BD-R,1437072970 +46311,64897,DVD-RAM,1237573127 +46311,64906,BD-R,1443313028 +46311,64921,BD-R,1332441474 +46311,64923,BD-R,1367086973 +46311,64926,BD-R,1443312943 +46311,64930,BD-R,1381080376 +46311,64957,BD-Video,1241715685 +46311,64976,BD-R,1305222576 +46311,64983,DVD-Video,1246373876 +46311,64990,DVD-RAM,1230588485 +46311,64997,BD-R,1344530274 +46311,65025,BD-R,1415477627 +46311,65027,BD-R,1385066565 +46311,65027,DVD-Video,1367859166 +46311,65078,BD-R,1319913065 +46311,65091,CLV,1274978696 +46311,65133,DVD-Video,1232656493 +46311,65135,DVD-Video,1232656500 +46311,65204,DVD-R,1232732416 +46311,65204,DVD-RAM,1232732416 +46311,65227,BD-R,1418409904 +46311,65261,DVD-RAM,1302803894 +46311,65263,BD-R,1427571821 +46311,65267,BD-R,1373138557 +46311,65293,BD-R,1373141384 +46311,65352,DVD-RAM,1250527916 +46311,65518,Betamax,1309117854 +46311,65521,Betamax,1344724812 +46311,65601,Dual-HD Video,1306610730 +46311,65601,Stereoscopic 3-D,1306610730 +46311,65612,Betamax,1232732069 +46311,65702,BD-R,1443313063 +46311,65709,DVD-RAM,1238268885 +46311,65984,BD-R,1413049428 +46311,65984,CLV,1274976779 +46311,66097,BD-Video,1313608500 +46311,66097,DVD-Video,1313608500 +46311,66097,Stereoscopic 3-D,1306610791 +46311,66105,BD-R,1289496028 +46311,66152,BD-R,1357844813 +46311,66152,DVD-RAM,1385318115 +46311,66252,BD-R,1443313184 +46311,66279,BD-R,1390857222 +46311,66339,VistaVision,1418408375 +46311,66539,Betamax,1341072277 +46311,66547,BD-R,1323572917 +46311,66590,VistaVision,1418406504 +46311,66686,DVD-RAM,1344530959 +46311,66758,BD-R,1333644781 +46311,66857,Betamax,1355081874 +46311,66857,DVD-Video,1335462899 +46311,66934,BD-Video,1353261904 +46311,66977,DVD-Video,1335462917 +46311,67073,DVD-RAM,1274973489 +46311,67098,BD-R,1336664292 +46311,67140,BD-R,1390854944 +46311,67140,CLV,1369336794 +46311,67252,DVD-RAM,1264887604 +46311,67267,BD-Video,1381436109 +46311,67408,BD-Video,1258130138 +46311,67408,DVD-Video,1313609638 +46311,67408,IMAX DMR 3-D,1306685212 +46311,67408,Stereoscopic 3-D,1306610887 +46311,67408,Tru 3-D,1306610887 +46311,67464,BD-R,1414264718 +46311,67504,BD-Video,1433637304 +46311,67667,BD-R,1323573038 +46311,67675,CLV,1369337313 +46311,67702,CLV,1274983402 +46311,67704,DVD-RAM,1343327044 +46311,67869,DVD-Video,1375726315 +46311,67878,VistaVision,1418407264 +46311,67890,70mm,1296677972 +46311,67890,Todd-AO,1296677972 +46311,67892,70mm,1296679221 +46311,67892,BD-R,1363290741 +46311,67892,Todd-AO,1296679221 +46311,67929,DVD-RAM,1273767738 +46311,67929,DVD-Video,1280449168 +46311,67931,DVD-RAM,1273768032 +46311,67931,DVD-Video,1280449176 +46311,67949,BD-R,1357844877 +46311,67980,Betamax,1341253673 +46311,68044,BD-R,1433635948 +46311,68069,BD-R,1445019860 +46311,68157,BD-Video,1413054954 +46311,68214,BD-R,1323572860 +46311,68237,DVD-RAM,1313859927 +46311,68254,BD-R,1403545451 +46311,68254,DVD-R,1382221410 +46311,68319,BD-Video,1394315081 +46311,68324,DVD-RAM,1245183310 +46311,68358,BD-Video,1434847000 +46311,68358,IMAX DMR,1306685296 +46311,68474,DVD-Video,1367772275 +46311,68536,BD-Video,1308501624 +46311,68536,DVD-Video,1308501624 +46311,68614,Betamax,1381604473 +46311,68653,BD-R,1317587483 +46311,68793,BD-Video,1423774057 +46311,68793,DVD-Video,1423774057 +46311,68793,IMAX DMR,1306685365 +46311,68872,BD-R,1365880294 +46311,68874,BD-R,1306445016 +46311,68899,BD-R,1316887924 +46311,68919,BD-R,1415477541 +46311,68954,BD-Video,1258131078 +46311,68954,DVD-Video,1313609999 +46311,68954,Stereoscopic 3-D,1306611050 +46311,68956,BD-R,1371410906 +46311,68974,BD-R,1290881689 +46311,68974,DVD-RAM,1290882197 +46311,68976,BD-R,1377451359 +46311,69005,BD-R,1413056365 +46311,69007,BD-R,1413054776 +46311,69042,DVD-Video,1375726342 +46311,69088,DVD-Video,1275149868 +46311,69155,BD-R,1416586346 +46311,69217,DVD-Video,1367773816 +46311,69275,DVD-RAM,1350842607 +46311,69354,BD-R,1399750810 +46311,69356,BD-R,1416586096 +46311,69374,CLV,1426528350 +46311,69429,BD-R,1295723012 +46311,69446,BD-R,1413056814 +46311,69453,BD-R,1347740798 +46311,69453,DVD-RAM,1351186929 +46311,69460,BD-R,1387067466 +46311,69481,BD-Video,1378667877 +46311,69487,BD-R,1396550586 +46311,69498,DVD-RAM,1253213262 +46311,69503,Betamax,1342122880 +46311,69526,BD-Video,1403547967 +46311,69526,IMAX DMR,1306685565 +46311,69526,partially photographed in IMAX,1306685629 +46311,69611,Betamax,1344725468 +46311,69644,Stereoscopic 3-D,1306611120 +46311,69704,Anaglyphic 3-D,1306608348 +46311,69704,Natural Vision [HD],1306608348 +46311,69704,Stereoscopic 3-D,1306608348 +46311,69720,DVD-RAM,1382222541 +46311,69755,DVD-Video,1367774035 +46311,69773,BD-R,1418408850 +46311,69786,DVD-RAM,1322419179 +46311,69788,BD-R,1401996906 +46311,69844,IMAX DMR 3-D,1306611190 +46311,69844,Stereoscopic 3-D sequences,1306611190 +46311,69945,BD-R,1367085063 +46311,69951,BD-R,1349373294 +46311,70050,Betamax,1306095061 +46311,70130,Betamax,1352143403 +46311,70146,DVD-Video,1367772372 +46311,70148,DVD-Video,1367774020 +46311,70155,BD-R,1311266367 +46311,70157,CLV,1341515618 +46311,70286,BD-Video,1373683726 +46311,70295,DVD-RAM,1283013652 +46311,70377,BD-R,1440277249 +46311,70511,DVD-Video,1367774114 +46311,70513,DVD-Video,1367772539 +46311,70531,DVD-Video,1367773927 +46311,70656,DVD-RAM,1270415127 +46311,70689,BD-R,1384028506 +46311,70697,DVD-RAM,1302803839 +46311,70697,In-Three Dimensionalization,1306611302 +46311,70697,Stereoscopic 3-D,1306611302 +46311,70724,BD-R,1390854687 +46311,70792,BD-R,1445019877 +46311,70795,DVD-Video,1367860230 +46311,70871,BD-R,1339959048 +46311,70877,BD-R,1403547777 +46311,70877,CLV,1274981777 +46311,70889,DVD-Video,1433637898 +46311,70961,BD-R,1369940727 +46311,71011,BD-R,1352398777 +46311,71135,DVD-RAM,1302803877 +46311,71168,BD-R,1336664451 +46311,71168,DVD-Video,1401998668 +46311,71170,BD-R,1413054570 +46311,71187,BD-R,1413055500 +46311,71187,CLV,1274977862 +46311,71189,BD-R,1305223199 +46311,71205,DVD-RAM,1310658156 +46311,71243,BD-R,1440277180 +46311,71252,Fusion 3-D,1306611404 +46311,71252,Stereoscopic 3-D,1306611404 +46311,71264,BD-Video,1405197668 +46311,71264,DVD-RAM,1302803670 +46311,71264,DVD-Video,1405197668 +46311,71264,IMAX DMR 3-D,1306685658 +46311,71264,Stereoscopic 3-D,1306611476 +46311,71280,BD-R,1399572611 +46311,71282,DVD-RAM,1277659763 +46311,71302,BD-R,1311266869 +46311,71318,Stereoscopic 3-D,1306611007 +46311,71343,BD-R,1315078539 +46311,71402,VistaVision,1418406426 +46311,71404,DVD-Video,1289498402 +46311,71429,DVD-RAM,1387139576 +46311,71442,BD-R,1309023014 +46311,71448,BD-R,1386440713 +46311,71450,BD-Video,1382213634 +46311,71494,BD-R,1305222912 +46311,71497,BD-R,1386440593 +46311,71535,BD-Video,1378667894 +46311,71545,CLV,1375036967 +46311,71558,BD-R,1360441409 +46311,71560,DVD-Video,1308502151 +46311,71591,BD-R,1360441359 +46311,71634,BD-R,1394314083 +46311,71650,BD-R,1380471987 +46311,71664,DVD-Video,1308504035 +46311,71693,BD-R,1413054862 +46311,71693,BD-Video,1437944135 +46311,71717,BD-R,1330292337 +46311,71740,BD-R,1437070317 +46311,71740,DVD-RAM,1384723852 +46311,71745,BD-Video,1360441063 +46311,71745,IMAX DMR,1306685685 +46311,71762,Betamax,1370810677 +46311,71792,BD-R,1413052996 +46311,71792,CLV,1274977839 +46311,71804,Betamax,1371411900 +46311,71808,VHS,1306093664 +46311,71840,BD-R,1426362323 +46311,71840,CLV,1426529340 +46311,71840,VHS,1341251428 +46311,71865,CLV,1421099487 +46311,71888,Betamax,1381604817 +46311,71970,BD-R,1405199156 +46311,71978,CLV,1358194196 +46311,71980,BD-R,1405199732 +46311,72043,DVD-RAM,1358111884 +46311,72117,BD-R,1357844143 +46311,72131,IMAX DMR,1306685722 +46311,72153,CLV,1417815151 +46311,72161,BD-R,1360442696 +46311,72209,DVD-RAM,1302803956 +46311,72226,55 movies every kid should see--Entertainment Weekly,1407083921 +46311,72226,BD-Video,1426364261 +46311,72226,DVD-RAM,1310658005 +46311,72226,DVD-Video,1426364261 +46311,72294,IMAX DMR 3-D,1306685759 +46311,72294,Stereoscopic 3-D,1306611747 +46311,72298,BD-R,1323567327 +46311,72344,BD-R,1440275568 +46311,72344,DVD-RAM,1385399064 +46311,72344,Two-color Technicolor,1418417375 +46311,72552,Betamax,1367174676 +46311,72583,BD-R,1387067346 +46311,72585,BD-R,1350584091 +46311,72630,BD-Video,1382213666 +46311,72701,DVD-RAM,1302803642 +46311,72737,DVD-RAM,1326834553 +46311,72777,Betamax,1343326981 +46311,72777,CLV,1343327004 +46311,72784,Betamax,1352137643 +46311,72876,BD-R,1311265711 +46311,72897,BD-R,1367087109 +46311,72998,Fusion 3-D,1306611904 +46311,72998,IMAX DMR 3-D,1306685787 +46311,72998,Stereoscopic 3-D,1306611904 +46311,73086,BD-R,1413049205 +46311,73111,BD-R,1443312082 +46311,73114,VistaVision,1418408050 +46311,73117,BD-R,1431202897 +46311,73154,BD-R,1374423810 +46311,73245,BD-R,1315079073 +46311,73256,Betamax,1342982443 +46311,73449,BD-R,1413049596 +46311,73460,BD-R,1300993395 +46311,73469,DVD-R,1359401683 +46311,73494,BD-R,1443314655 +46311,73630,BD-R,1433636574 +46311,73778,BD-R,1423771464 +46311,73790,BD-R,1433635350 +46311,73813,DVD-R,1341252236 +46311,73829,BD-Video,1384455350 +46311,73854,BD-R,1293763620 +46311,73854,BD-Video,1415478406 +46311,73967,BD-R,1305223163 +46311,73981,BD-R,1437073645 +46311,74144,BD-R,1369941296 +46311,74164,BD-R,1317587338 +46311,74266,BD-R,1405199335 +46311,74310,BD-R,1426363496 +46311,74370,DVD-RAM,1270158580 +46311,74436,CLV,1361819294 +46311,74488,DVD-RAM,1278793777 +46311,74547,70mm blowup,1429814398 +46311,74547,BD-R,1429814328 +46311,74575,BD-R,1433635422 +46311,74588,BD-R,1413056602 +46311,74630,BD-R,1352060240 +46311,74630,DVD-R,1385399130 +46311,74630,DVD-RAM,1385399130 +46311,74685,BD-Video,1429814897 +46311,74740,DVD-RAM,1329077469 +46311,74750,DVD-RAM,1283014032 +46311,74789,Dimensionalized 2-D to 3-D,1306612197 +46311,74789,IMAX DMR 3-D,1306685821 +46311,74820,70mm,1333992426 +46311,74820,DVD-R,1335462191 +46311,74820,DVD-RAM,1335462191 +46311,74820,Ultra Panavision 70,1333992426 +46311,74857,VistaVision,1418406605 +46311,74859,BD-R,1323573565 +46311,74870,CLV,1274984766 +46311,74886,BD-R,1355600781 +46311,75351,CLV,1361820169 +46311,75397,BD-R,1433634116 +46311,75425,DVD-RAM,1278793730 +46311,75440,DVD-RAM,1387129814 +46311,75831,BD-R,1392663860 +46311,75831,CLV,1369337187 +46311,75947,Betamax,1358109340 +46311,75981,DVD-Video,1331230106 +46311,75992,BD-R,1423773046 +46311,75994,VistaVision,1418407488 +46311,76077,BD-Video,1413051847 +46311,76079,DVD-RAM,1302803613 +46311,76089,BD-R,1292631929 +46311,76093,55 movies every kid should see--Entertainment Weekly,1440275843 +46311,76093,BD-Video,1440275843 +46311,76093,DVD-Video,1440275843 +46311,76093,IMAX DMR 3-D,1306685856 +46311,76093,Stereoscopic 3-D,1306612291 +46311,76093,Tru 3-D,1306612291 +46311,76145,Dual-HD Video,1306608664 +46311,76145,Stereoscopic 3-D,1306608664 +46311,76173,DVD-RAM,1302803816 +46311,76175,Dimensionalized 2-D to 3-D,1306612996 +46311,76187,CLV,1274983727 +46311,76251,BD-Video,1396552562 +46311,76277,BD-R,1418409810 +46311,76720,DVD-R,1358455314 +46311,76720,DVD-RAM,1358455314 +46311,76722,BD-R,1429813991 +46311,76738,BD-R,1319910076 +46311,76758,BD-R,1349545548 +46311,76811,BD-R,1311267534 +46311,76823,DVD-RAM,1273768286 +46311,76823,DVD-Video,1280449053 +46311,76836,DVD-RAM,1273767847 +46311,76836,DVD-Video,1280449070 +46311,76860,Betamax,1370892584 +46311,77141,BD-R,1394314486 +46311,77141,Betamax,1335463533 +46311,77143,BD-R,1329078044 +46311,77162,BD-R,1431202069 +46311,77162,DVD-RAM,1288548351 +46311,77184,BD-R,1334860438 +46311,77189,BD-R,1437074216 +46311,77204,Betamax,1378671462 +46311,77217,BD-R,1363289902 +46311,77223,BD-R,1413056784 +46311,77291,Betamax,1289502754 +46311,77291,CLV,1318516817 +46311,77362,BD-R,1413051438 +46311,77362,DVD-RAM,1385318623 +46311,77433,Two-color Technicolor sequence,1418417470 +46311,77435,BD-R,1289494716 +46311,77451,BD-R,1437073705 +46311,77455,BD-R,1335715520 +46311,77481,DVD-R,1350848054 +46311,77481,DVD-Video,1366427311 +46311,77491,BD-R,1413049376 +46311,77493,BD-R,1405199807 +46311,77509,DVD-RAM,1343327089 +46311,77561,IMAX DMR,1306685894 +46311,77615,BD-R,1440872533 +46311,77615,DVD-RAM,1309113789 +46311,77721,BD-R,1422061556 +46311,77721,Betamax,1309115856 +46311,77810,DVD-RAM,1347743009 +46311,77835,BD-R,1363291524 +46311,77891,DVD-RAM,1352139198 +46311,77899,BD-R,1445022791 +46311,77921,BD-R,1293762307 +46311,77944,BD-R,1290881339 +46311,77983,BD-R,1399573324 +46311,77983,CLV,1370890053 +46311,77983,DVD-R,1370890053 +46311,78009,BD-R,1440275619 +46311,78009,BD-Video,1437944188 +46311,78039,BD-Video,1384454980 +46311,78071,BD-R,1431200248 +46311,78095,BD-R,1333644896 +46311,78105,IMAX DMR,1306685937 +46311,78111,VistaVision,1418406445 +46311,78224,BD-R,1392663821 +46311,78245,BD-R,1331230028 +46311,78276,Betamax,1342718806 +46311,78295,DVD-R,1350850375 +46311,78332,DVD-RAM,1350841370 +46311,78376,BD-R,1381435815 +46311,78376,DVD-RAM,1377458232 +46311,78405,BD-R,1309023576 +46311,78416,Two-color Technicolor,1418417982 +46311,78418,BD-R,1394314190 +46311,78438,BD-R,1426360591 +46311,78490,BD-R,1367087470 +46311,78499,BD-Video,1310235459 +46311,78499,IMAX DMR 3-D,1306685981 +46311,78499,Stereoscopic 3-D,1306613586 +46311,78517,BD-R,1298140042 +46311,78574,BD-Video,1354398209 +46311,78637,IMAX DMR 3-D,1306685912 +46311,78637,Stereoscopic 3-D,1306613359 +46311,78637,Tru 3-D,1306613359 +46311,78690,BD-R,1413051340 +46311,78690,DVD-RAM,1349378405 +46311,78703,BD-R,1302803177 +46311,78713,BD-R,1328042214 +46311,78715,BD-R,1350842915 +46311,78721,Betamax,1342982349 +46311,78721,VHS,1342982349 +46311,78723,BD-R,1329076218 +46311,78739,BD-R,1331229310 +46311,78748,BD-R,1311265527 +46311,78772,IMAX DMR,1306686012 +46311,78860,BD-R,1406940377 +46311,78893,Dimensionalized 2-D to 3-D,1306613651 +46311,78898,BD-R,1443311635 +46311,78909,DVD-Video,1370198032 +46311,78921,BD-R,1290881964 +46311,78944,DVD-Video,1307813210 +46311,78955,BD-R,1371411162 +46311,78978,BD-R,1388340798 +46311,79003,BD-R,1437071360 +46311,79003,CLV,1369334220 +46311,79038,BD-R,1440274636 +46311,79073,DVD-RAM,1289500666 +46311,79083,BD-R,1440274964 +46311,79091,BD-Video,1415478177 +46311,79091,DVD-Video,1415478200 +46311,79091,Stereoscopic 3-D,1306613710 +46311,79132,BD-Video,1394315020 +46311,79132,IMAX DMR,1306686047 +46311,79207,Betamax,1335464068 +46311,79242,BD-Video,1382213690 +46311,79287,BD-R,1405197932 +46311,79287,DVD-RAM,1387132215 +46311,79321,BD-R,1433635971 +46311,79327,DVD-R,1367521365 +46311,79327,DVD-RAM,1367521365 +46311,79337,BD-R,1443312142 +46311,79395,BD-R,1315078865 +46311,79477,DVD-R,1384723320 +46311,79498,BD-R,1330292512 +46311,79525,BD-R,1335714604 +46311,79528,BD-R,1307810504 +46311,79580,BD-R,1329078137 +46311,79617,DVD-Video,1308504675 +46311,79647,Betamax,1342902763 +46311,79651,BD-R,1333644829 +46311,79656,BD-R,1381435981 +46311,79681,DVD-Video,1308504858 +46311,79711,BD-R,1426361580 +46311,79711,Betamax,1384718634 +46311,79828,BD-R,1376238776 +46311,79879,Dimensionalized 2-D to 3-D,1306614055 +46311,79901,DVD-RAM,1342453697 +46311,79923,BD-R,1403545432 +46311,79955,BD-R,1395592181 +46311,79955,CLV,1352577898 +46311,79996,BD-R,1326835993 +46311,80020,BD-R,1423770758 +46311,80020,CLV,1426530246 +46311,80022,BD-R,1433635877 +46311,80022,Columbia 3-D,1306600666 +46311,80022,Stereoscopic 3-D,1306600034 +46311,80102,BD-R,1347741767 +46311,80102,CLV,1426529008 +46311,80104,BD-R,1445019449 +46311,80107,BD-R,1406937424 +46311,80111,BD-R,1385066378 +46311,80122,Betamax,1377456310 +46311,80144,BD-R,1418406151 +46311,80152,70mm,1391007937 +46311,80152,BD-R,1416585695 +46311,80152,Super Technirama 70,1391007938 +46311,80191,BD-R,1328042368 +46311,80222,Fusion 3-D,1306613904 +46311,80222,Stereoscopic 3-D,1306613904 +46311,80224,BD-R,1422062939 +46311,80226,BD-R,1385068384 +46311,80258,BD-R,1422062109 +46311,80283,BD-R,1293763562 +46311,80285,BD-R,1443312176 +46311,80290,BD-R,1335714703 +46311,80292,VistaVision,1418407238 +46311,80337,BD-R,1300993418 +46311,80363,Fusion 3-D,1306614115 +46311,80363,IMAX Digital only,1306686146 +46311,80363,IMAX DMR 3-D,1306686083 +46311,80363,Stereoscopic 3-D,1306614115 +46311,80400,BD-R,1360442146 +46311,80421,BD-R,1414264557 +46311,80432,BD-R,1378665879 +46311,80494,BD-R,1339958377 +46311,80568,BD-R,1423772647 +46311,80570,BD-R,1326836502 +46311,80574,BD-R,1443312359 +46311,80588,IMAX 3-D,1306606188 +46311,80588,Stereoscopic 3-D,1306606188 +46311,80592,BD-R,1422063242 +46311,80611,BD-R,1330294091 +46311,80615,IMAX DMR 3-D,1306686738 +46311,80615,Stereoscopic 3-D,1306614298 +46311,80617,Dimensionalized 2-D to 3-D,1306613756 +46311,80619,BD-R,1344530624 +46311,80622,BD-R,1306445806 +46311,80639,BD-R,1443314620 +46311,80639,CLV,1306095920 +46311,80661,BD-R,1384028722 +46311,80667,BD-R,1376238293 +46311,80667,DVD-RAM,1367172669 +46311,80701,DVD-R,1359402355 +46311,80715,BD-R,1369332705 +46311,80725,BD-R,1290882478 +46311,80748,BD-R,1369940971 +46311,80799,DVD-RAM,1339091171 +46311,80903,BD-R,1416586202 +46311,80903,DVD-R,1367088400 +46311,80917,BD-R,1289497046 +46311,80954,BD-R,1363459557 +46311,80980,BD-R,1349372251 +46311,81018,BD-R,1333645252 +46311,81061,BD-R,1319912039 +46311,81094,BD-R,1295721696 +46311,81094,Stereoscopic 3-D,1306610125 +46311,81125,BD-R,1376238274 +46311,81132,BD-R,1305222554 +46311,81156,Dimensionalized 2-D to 3-D,1306614450 +46311,81156,Dual-HD Video,1306614450 +46311,81156,Stereoscopic 3-D,1306614450 +46311,81164,Dual-HD Video,1306613486 +46311,81164,Stereoscopic 3-D,1306613486 +46311,81248,Betamax,1367173130 +46311,81270,Dimensionalized 2-D to 3-D,1306614364 +46311,81281,DVD-Video,1322326315 +46311,81396,BD-R,1413055556 +46311,81396,DVD-R,1306095368 +46311,81396,DVD-RAM,1306095368 +46311,81417,IMAX Digital only,1306686785 +46311,81417,IMAX DMR,1306686785 +46311,81443,BD-R,1426361256 +46311,81516,BD-R,1302803586 +46311,81535,Dual-HD Video,1306614494 +46311,81535,Stereoscopic 3-D,1306614494 +46311,81546,BD-R,1418409653 +46311,81548,VistaVision,1418407516 +46311,81564,BD-Video,1413055021 +46311,81564,DVD-Video,1413055021 +46311,81564,IMAX DMR 3-D,1306686822 +46311,81564,Stereoscopic 3-D,1306614541 +46311,81564,Tru 3-D,1306614541 +46311,81583,BD-R,1307811667 +46311,81585,BD-R,1293763542 +46311,81587,BD-R,1326836523 +46311,81589,BD-R,1426365297 +46311,81610,BD-R,1385066910 +46311,81637,BD-R,1395592720 +46311,81637,nWave 3-D,1306613842 +46311,81637,Stereoscopic 3-D,1306613842 +46311,81646,BD-R,1374423458 +46311,81656,DVD-Video,1341512898 +46311,81660,Betamax,1289497590 +46311,81665,DVD-RAM,1309116037 +46311,81681,BD-R,1344530526 +46311,81768,BD-R,1382745764 +46311,81834,DVD-Video,1304786322 +46311,81834,IMAX DMR,1306686845 +46311,81845,BD-Video,1413054930 +46311,81847,BD-Video,1329078407 +46311,81847,DVD-Video,1329078407 +46311,81847,IMAX Digital only,1306686994 +46311,81847,IMAX DMR 3-D,1306686994 +46311,81847,Stereoscopic 3-D,1306614630 +46311,81853,BD-R,1394311553 +46311,81853,DVD-R,1385320813 +46311,81859,BD-R,1374423438 +46311,81910,BD-R,1306089614 +46311,82005,DVD-RAM,1335461472 +46311,82017,BD-R,1401999145 +46311,82017,DVD-RAM,1290882345 +46311,82017,Two-color Technicolor,1418417723 +46311,82032,BD-R,1437070478 +46311,82106,DVD-Video,1351363132 +46311,82123,BD-R,1347734271 +46311,82129,BD-R,1399749361 +46311,82169,Dimensionalized 2-D to 3-D,1306614695 +46311,82182,CLV,1344729684 +46311,82196,BD-R,1437072576 +46311,82283,BD-R,1381602226 +46311,82300,BD-R,1333645017 +46311,82306,BD-R,1378668293 +46311,82306,DVD-RAM,1384461421 +46311,82313,BD-R,1374423625 +46311,82315,BD-R,1390854281 +46311,82461,BD-Video,1310235474 +46311,82461,DVD-Video,1313861763 +46311,82461,Fusion 3-D,1306614794 +46311,82461,IMAX DMR 3-D,1306686888 +46311,82461,Stereoscopic 3-D,1306614794 +46311,82491,BD-R,1443311757 +46311,82564,BD-R,1423773212 +46311,82584,BD-R,1298141949 +46311,82597,BD-R,1347734225 +46311,82747,BD-R,1385066237 +46311,82834,BD-R,1443312305 +46311,82834,Betamax,1333822402 +46311,82854,Dimensionalized 2-D to 3-D,1306614881 +46311,82934,BD-R,1367174815 +46311,82976,BD-R,1433634247 +46311,83056,BD-R,1363459572 +46311,83071,BD-R,1363459638 +46311,83132,BD-R,1357844371 +46311,83134,BD-R,1386015402 +46311,83177,Dual-HD Video,1306614840 +46311,83177,Stereoscopic 3-D,1306614840 +46311,83189,BD-R,1401999390 +46311,83222,VHS,1386014729 +46311,83246,BD-R,1423773985 +46311,83246,DVD-RAM,1350842659 +46311,83320,BD-R,1394312781 +46311,83320,DVD-RAM,1382219502 +46311,83343,BD-R,1387067442 +46311,83349,Dimensionalized 2-D to 3-D,1306614922 +46311,83349,IMAX Digital only,1306686957 +46311,83349,IMAX DMR 3-D,1306686933 +46311,83376,BD-R,1395592203 +46311,83446,CLV,1322326477 +46311,83464,BD-R,1299180931 +46311,83478,BD-R,1298141895 +46311,83525,BD-R,1326835708 +46311,83529,VHS,1342719205 +46311,83531,BD-R,1366316187 +46311,83540,BD-R,1418406051 +46311,83590,BD-R,1399750752 +46311,83590,DVD-RAM,1387225103 +46311,83613,BD-Video,1418405373 +46311,83613,DVD-Video,1418405373 +46311,83613,IMAX Digital only,1330806176 +46311,83613,IMAX DMR,1419709686 +46311,83660,BD-R,1394313974 +46311,83777,DVD-RAM,1384461103 +46311,83801,BD-R,1307812156 +46311,83807,DVD-RAM,1378669231 +46311,83821,BD-R,1379791300 +46311,83825,BD-R,1371411107 +46311,83827,BD-R,1307810678 +46311,83978,BD-R,1429813955 +46311,83978,DVD-RAM,1302803979 +46311,84125,CLV,1352578029 +46311,84137,BD-R,1357844934 +46311,84148,BD-R,1357844503 +46311,84150,BD-R,1370806547 +46311,84230,DVD-R,1306091847 +46311,84230,DVD-RAM,1306091847 +46311,84246,BD-R,1422062887 +46311,84248,BD-R,1363290622 +46311,84258,BD-R,1403545622 +46311,84291,BD-R,1394313213 +46311,84298,BD-R,1426365384 +46311,84302,Betamax,1306089199 +46311,84469,BD-R,1405196905 +46311,84475,BD-R,1342717364 +46311,84479,BD-R,1371415222 +46311,84613,Fusion 3-D,1306614973 +46311,84613,IMAX Digital only,1306687040 +46311,84613,IMAX DMR 3-D,1306687040 +46311,84613,Stereoscopic 3-D,1306614973 +46311,84637,Stereoscopic 3-D,1306615034 +46311,84639,BD-R,1378672563 +46311,84665,BD-R,1379790963 +46311,84686,BD-R,1331230047 +46311,84689,BD-R,1304786482 +46311,84691,BD-R,1304786561 +46311,84714,BD-R,1405199554 +46311,84732,BD-R,1302803208 +46311,84894,BD-R,1401999373 +46311,84894,Betamax,1377458746 +46311,84942,Dual-HD Video,1306615110 +46311,84942,Stereoscopic 3-D,1306615110 +46311,84944,BD-Video,1413055042 +46311,84961,BD-R,1433635440 +46311,84987,BD-R,1423771674 +46311,84987,Betamax,1333822554 +46311,84989,BD-R,1302803744 +46311,85056,IMAX DMR,1306687073 +46311,85131,BD-Video,1426363913 +46311,85133,BD-R,1354824798 +46311,85177,BD-R,1360442667 +46311,85205,BD-R,1415477234 +46311,85205,DVD-RAM,1355616279 +46311,85215,DVD-RAM,1361130741 +46311,85231,BD-R,1399750540 +46311,85261,IMAX DMR 3-D,1306687367 +46311,85261,Stereoscopic 3-D,1306615199 +46311,85309,BD-R,1406937507 +46311,85387,CLV,1306697275 +46311,85394,BD-R,1360441221 +46311,85394,Dual-HD Video,1306615269 +46311,85394,Stereoscopic 3-D,1306615269 +46311,85412,BD-R,1311265930 +46311,85453,BD-R,1427571009 +46311,85476,VistaVision,1418407412 +46311,85505,Stereoscopic 3-D,1369082225 +46311,85510,BD-Video,1394315041 +46311,85510,IMAX DMR 3-D,1330806817 +46311,85544,Betamax,1306096408 +46311,85547,BD-R,1307811827 +46311,85616,BD-R,1354397922 +46311,85618,BD-R,1304788136 +46311,85780,BD-R,1335462674 +46311,85790,BD-R,1342898375 +46311,85861,BD-R,1413051258 +46311,85885,DVD-RAM,1349545229 +46311,85894,BD-R,1373139481 +46311,85896,BD-R,1445019949 +46311,85983,BD-R,1352396428 +46311,86142,BD-R,1306445485 +46311,86204,BD-R,1445021187 +46311,86286,Betamax,1309113409 +46311,86286,VHS,1309113409 +46311,86298,Stereoscopic 3-D,1306615337 +46311,86308,BD-R,1330294113 +46311,86312,BD-R,1307810892 +46311,86314,BD-R,1405199373 +46311,86316,DVD-RAM,1342123017 +46311,86320,BD-R,1326833367 +46311,86332,IMAX Digital only,1306687476 +46311,86332,IMAX DMR 3-D,1306687476 +46311,86347,DVD-RAM,1352143164 +46311,86368,BD-R,1437070288 +46311,86372,BD-R,1344530091 +46311,86377,DVD-R,1352143205 +46311,86418,BD-R,1373141278 +46311,86491,DVD-RAM,1344881668 +46311,86553,BD-R,1413051289 +46311,86553,CLV,1387142601 +46311,86559,BD-R,1334859894 +46311,86620,DVD-R,1306088718 +46311,86620,DVD-RAM,1306088718 +46311,86622,BD-R,1396551317 +46311,86628,BD-R,1334860090 +46311,86628,BD-Video,1381436091 +46311,86644,IMAX DMR,1306687437 +46311,86648,BD-R,1335713829 +46311,86671,BD-R,1431202387 +46311,86675,DVD-R,1344722107 +46311,86675,DVD-RAM,1344722107 +46311,86687,BD-R,1309022871 +46311,86689,BD-R,1437073517 +46311,86723,BD-R,1344881761 +46311,86791,BD-R,1381080235 +46311,86802,BD-R,1384458596 +46311,86835,Dimensionalized 2-D to 3-D,1306615402 +46311,86839,DVD-RAM,1370288032 +46311,86858,BD-R,1399749593 +46311,86858,DVD-RAM,1370888844 +46311,86860,BD-R,1335716149 +46311,86864,BD-R,1358194335 +46311,86880,Fusion 3-D,1306615446 +46311,86880,IMAX DMR 3-D,1306687512 +46311,86880,Stereoscopic 3-D,1306615446 +46311,86894,BD-R,1323566879 +46311,86929,BD-R,1427571700 +46311,86982,BD-R,1429814801 +46311,86985,BD-R,1307812190 +46311,87004,Stereoscopic 3-D,1369324670 +46311,87038,BD-R,1323573125 +46311,87038,DVD-Video,1367861189 +46311,87040,BD-R,1413049650 +46311,87042,BD-R,1317587761 +46311,87085,BD-R,1401999306 +46311,87094,BD-R,1422063031 +46311,87192,BD-R,1379790933 +46311,87216,BD-R,1339089935 +46311,87218,BD-R,1342718200 +46311,87222,IMAX DMR 3-D,1330806668 +46311,87225,BD-R,1374423654 +46311,87227,BD-R,1381080473 +46311,87227,Betamax,1341515426 +46311,87227,DVD-R,1341515426 +46311,87232,BD-Video,1401997205 +46311,87232,DVD-Video,1401997205 +46311,87287,DVD-Video,1337881250 +46311,87290,BD-R,1399573487 +46311,87290,DVD-R,1386444827 +46311,87290,DVD-RAM,1386444827 +46311,87306,BD-Video,1434846979 +46311,87306,IMAX DMR,1330806622 +46311,87415,BD-R,1352398018 +46311,87430,BD-Video,1373683779 +46311,87430,Dimensionalized 2-D to 3-D,1369325214 +46311,87433,BD-R,1309023795 +46311,87518,BD-R,1326833290 +46311,87520,BD-Video,1403547984 +46311,87520,DVD-Video,1403548007 +46311,87520,IMAX DMR 3-D,1330806501 +46311,87522,BD-Video,1437942031 +46311,87558,BD-R,1414262521 +46311,87562,CLV,1370723532 +46311,87595,Two-color Technicolor,1418418011 +46311,87649,DVD-R,1382833410 +46311,87649,DVD-RAM,1382833410 +46311,87662,BD-R,1311266419 +46311,87761,CLV,1373225599 +46311,87763,BD-R,1341253031 +46311,87773,BD-R,1354397626 +46311,87798,BD-R,1360441564 +46311,87876,IMAX DMR 3-D,1330806558 +46311,87878,BD-R,1413051376 +46311,87890,BD-R,1403545763 +46311,87913,BD-R,1392663921 +46311,87919,BD-R,1382747591 +46311,87919,DVD-RAM,1359923745 +46311,87948,BD-R,1352398360 +46311,87954,DVD-RAM,1344876905 +46311,87979,BD-R,1382745895 +46311,87979,DVD-RAM,1341251208 +46311,87979,DVD-Video,1367689258 +46311,87999,DVD-Video,1326836326 +46311,88067,BD-R,1326836132 +46311,88073,DVD-R,1342985664 +46311,88125,IMAX DMR 3-D,1330806380 +46311,88131,BD-R,1357844900 +46311,88135,BD-R,1333644806 +46311,88140,Dimensionalized 2-D to 3-D,1369325387 +46311,88168,BD-R,1443312738 +46311,88267,BD-Video,1329078453 +46311,88267,DVD-Video,1329078453 +46311,88276,BD-R,1422062407 +46311,88278,DVD-RAM,1370198166 +46311,88329,BD-R,1333644662 +46311,88341,BD-R,1344530548 +46311,88356,Stereoscopic 3-D,1369325462 +46311,88374,BD-R,1373138593 +46311,88405,BD-R,1357844751 +46311,88417,Betamax,1335461300 +46311,88419,DVD-RAM,1343326860 +46311,88429,BD-R,1437073052 +46311,88468,Stereoscopic 3-D,1369324281 +46311,88471,BD-R,1394314040 +46311,88491,CLV,1351185870 +46311,88518,BD-R,1369940951 +46311,88591,BD-R,1394312828 +46311,88591,DVD-RAM,1382832115 +46311,88595,BD-R,1332441717 +46311,88646,BD-R,1384028012 +46311,88674,DVD-Video,1318099238 +46311,88744,BD-Video,1406937385 +46311,88754,DVD-RAM,1381691451 +46311,88833,BD-R,1363459532 +46311,88894,BD-R,1317587432 +46311,88932,IMAX Digital only,1419709654 +46311,88932,IMAX DMR,1330806116 +46311,88932,Stereoscopic 3-D,1369325691 +46311,88954,Stereoscopic 3-D,1369326175 +46311,88993,BD-R,1351186634 +46311,89002,Dimensionalized 2-D to 3-D,1369325524 +46311,89014,BD-R,1333818205 +46311,89018,BD-R,1317587681 +46311,89030,Stereoscopic 3-D,1369325584 +46311,89102,BD-R,1341255525 +46311,89164,BD-R,1315079139 +46311,89190,BD-Video,1396552598 +46311,89190,Dimensionalized 2-D to 3-D,1369325601 +46311,89203,BD-R,1353263316 +46311,89329,BD-R,1328042342 +46311,89341,VistaVision,1418408212 +46311,89349,BD-R,1357844192 +46311,89349,DVD-RAM,1358105739 +46311,89373,BD-R,1333655427 +46311,89398,BD-R,1347741687 +46311,89401,BD-R,1440873018 +46311,89406,BD-R,1360441159 +46311,89427,Stereoscopic 3-D,1369325719 +46311,89470,IMAX Digital only,1330806061 +46311,89478,BD-R,1426360826 +46311,89480,DVD-RAM,1354397525 +46311,89485,Stereoscopic 3-D,1369078563 +46311,89492,BD-R,1357844690 +46311,89492,BD-Video,1413055196 +46311,89501,BD-R,1344882096 +46311,89521,DVD-RAM,1387131378 +46311,89535,BD-R,1380471941 +46311,89545,DVD-RAM,1329077656 +46311,89588,BD-R,1440275746 +46311,89607,CLV,1369333895 +46311,89662,BD-R,1319912646 +46311,89707,BD-R,1367086635 +46311,89732,BD-R,1437073305 +46311,89732,DVD-Video,1367858168 +46311,89745,55 movies every kid should see--Entertainment Weekly,1407084115 +46311,89745,BD-Video,1349372163 +46311,89745,Dimensionalized 2-D to 3-D,1369326991 +46311,89745,IMAX Digital only,1369077692 +46311,89747,BD-R,1413056440 +46311,89831,BD-R,1440278020 +46311,89877,BD-R,1353264020 +46311,89883,DVD-RAM,1370892253 +46311,89904,BD-R,1427571491 +46311,89904,BD-Video,1440873752 +46311,89936,DVD-RAM,1333658406 +46311,89939,BD-R,1405199785 +46311,90015,Betamax,1387074266 +46311,90068,DVD-RAM,1387143791 +46311,90106,BD-R,1329078110 +46311,90108,Betamax,1382831569 +46311,90206,BD-R,1440275123 +46311,90206,Betamax,1352140783 +46311,90245,BD-R,1357844595 +46311,90249,IMAX DMR,1330805966 +46311,90403,Stereoscopic 3-D,1369325942 +46311,90424,BD-R,1426361084 +46311,90458,BD-R,1342122107 +46311,90460,Betamax,1332442626 +46311,90488,Betamax,1367523985 +46311,90493,DVD-Video,1366512081 +46311,90495,DVD-Video,1401998548 +46311,90526,IMAX Digital only,1419709358 +46311,90526,IMAX DMR,1330806453 +46311,90537,BD-R,1319913155 +46311,90545,BD-R,1323572940 +46311,90556,DVD-RAM,1340481907 +46311,90570,BD-Video,1433637533 +46311,90596,DVD-R,1370810707 +46311,90647,IMAX DMR 3-D,1330805923 +46311,90664,BD-R,1433633669 +46311,90704,BD-R,1376238592 +46311,90706,BD-R,1445019166 +46311,90719,BD-Video,1434846653 +46311,90746,IMAX Digital only,1330805570 +46311,90746,Stereoscopic 3-D,1369326092 +46311,90748,BD-R,1367091247 +46311,90819,BD-R,1413053085 +46311,90866,BD-Video,1390857128 +46311,90866,Fusion 3-D,1369326429 +46311,90866,Stereoscopic 3-D,1369326402 +46311,90878,BD-R,1413056218 +46311,90888,Dimensionalized 2-D to 3-D,1369326210 +46311,90929,DVD-RAM,1354397311 +46311,91026,BD-R,1344530602 +46311,91028,BD-R,1384458400 +46311,91031,BD-R,1443311677 +46311,91054,BD-R,1445019727 +46311,91056,BD-R,1445019770 +46311,91075,DVD-Video,1367861657 +46311,91094,BD-R,1357844435 +46311,91126,BD-R,1357844766 +46311,91134,BD-Video,1401997041 +46311,91181,BD-R,1413056327 +46311,91191,DVD-RAM,1354397456 +46311,91206,BD-R,1326834209 +46311,91206,BD-Video,1337881124 +46311,91218,CLV,1369337050 +46311,91223,BD-R,1333658143 +46311,91253,BD-R,1326835797 +46311,91304,Betamax,1387140397 +46311,91386,IMAX DMR 3-D,1330805866 +46311,91391,Betamax,1342982163 +46311,91391,DVD-RAM,1342982163 +46311,91393,BD-R,1357844033 +46311,91414,Stereoscopic 3-D,1369326255 +46311,91419,BD-R,1323572962 +46311,91446,VistaVision,1418406582 +46311,91492,BD-R,1329077390 +46311,91494,BD-R,1326835215 +46311,91500,BD-Video,1423774121 +46311,91500,IMAX Digital only,1369078000 +46311,91511,BD-R,1381435741 +46311,91513,BD-R,1401999696 +46311,91515,DVD-Video,1384719477 +46311,91529,BD-Video,1413058020 +46311,91529,IMAX DMR,1369077458 +46311,91535,BD-Video,1373683814 +46311,91535,IMAX Digital only,1369077433 +46311,91540,BD-R,1326836020 +46311,91562,BD-R,1371410864 +46311,91630,IMAX DMR,1330805706 +46311,91658,BD-Video,1373683671 +46311,91660,BD-R,1366316143 +46311,91660,Stereoscopic 3-D,1369326488 +46311,91697,BD-R,1440276650 +46311,91709,BD-R,1351184798 +46311,91715,BD-R,1358108362 +46311,91797,BD-R,1413054307 +46311,91826,BD-R,1382746553 +46311,91840,BD-R,1329077799 +46311,91869,BD-R,1335715955 +46311,91884,BD-R,1427571754 +46311,91886,Stereoscopic 3-D,1369325742 +46311,91890,BD-Video,1434846681 +46311,91919,BD-R,1354396986 +46311,91919,CLV,1344716871 +46311,91929,BD-R,1354397999 +46311,91974,IMAX Digital only,1330805321 +46311,91974,Stereoscopic 3-D,1369326533 +46311,91993,DVD-R,1332442967 +46311,91995,Betamax,1342124629 +46311,91995,Stereoscopic 3-D,1369079087 +46311,92023,BD-R,1384028343 +46311,92169,DVD-RAM,1384112261 +46311,92176,BD-R,1405199770 +46311,92184,BD-R,1329076170 +46311,92188,BD-R,1414264736 +46311,92192,BD-Video,1413057971 +46311,92204,BD-R,1392664152 +46311,92224,BD-R,1416585584 +46311,92231,BD-R,1326836545 +46311,92266,DVD-Video,1366479774 +46311,92268,DVD-Video,1366486666 +46311,92352,BD-R,1344881783 +46311,92357,BD-R,1329077978 +46311,92393,BD-R,1342897657 +46311,92479,BD-R,1413055851 +46311,92514,DVD-Video,1366486683 +46311,92516,DVD-Video,1366486695 +46311,92522,BD-R,1413056345 +46311,92633,BD-R,1437074091 +46311,92670,DVD-Video,1333658178 +46311,92676,BD-R,1405198295 +46311,92681,BD-Video,1423774182 +46311,92681,IMAX DMR 3-D,1330805225 +46311,92681,Stereoscopic 3-D,1369326649 +46311,92719,BD-R,1332441541 +46311,92756,BD-R,1342983736 +46311,92760,DVD-Video,1366486724 +46311,92781,BD-R,1344530027 +46311,92817,BD-R,1363290466 +46311,92819,IMAX Digital only,1419710779 +46311,92819,IMAX DMR 3-D,1330805798 +46311,92845,BD-R,1333644385 +46311,92847,BD-R,1437071865 +46311,92920,BD-R,1335715563 +46311,92923,BD-Video,1396552308 +46311,92935,BD-R,1437074701 +46311,92938,Dimensionalized 2-D to 3-D,1369326741 +46311,92944,Stereoscopic 3-D,1369325978 +46311,93035,BD-R,1423773064 +46311,93181,BD-R,1353263963 +46311,93183,BD-R,1357844474 +46311,93183,DVD-R,1378672647 +46311,93196,Betamax,1387224715 +46311,93217,DVD-RAM,1333820131 +46311,93272,BD-Video,1373683588 +46311,93272,IMAX DMR 3-D,1369078060 +46311,93272,Stereoscopic 3-D,1369326782 +46311,93295,DVD-Video,1367858639 +46311,93328,CLV,1333656027 +46311,93330,CLV,1333655941 +46311,93363,BD-R,1357844355 +46311,93363,Dimensionalized 2-D to 3-D,1419711248 +46311,93363,IMAX DMR 3-D,1369078030 +46311,93367,BD-R,1369332892 +46311,93367,CLV,1341249705 +46311,93408,CLV,1333656011 +46311,93418,CLV,1333655956 +46311,93443,BD-R,1334860112 +46311,93463,BD-R,1384454875 +46311,93484,BD-R,1370543601 +46311,93563,BD-Video,1373683794 +46311,93610,BD-R,1422060920 +46311,93612,BD-R,1423772811 +46311,93665,BD-R,1341254885 +46311,93721,BD-R,1392664772 +46311,93764,BD-R,1339090415 +46311,93766,Dimensionalized 2-D to 3-D,1369326868 +46311,93766,IMAX DMR 3-D,1369077943 +46311,93816,DVD-Video,1366479679 +46311,93834,BD-R,1363290670 +46311,93855,BD-R,1339958354 +46311,93859,BD-R,1344882016 +46311,93865,DVD-Video,1341254708 +46311,93905,BD-R,1341515577 +46311,93907,DVD-R,1387129717 +46311,93907,DVD-RAM,1387129717 +46311,94018,BD-Video,1426364004 +46311,94018,IMAX Digital only,1369077771 +46311,94061,BD-R,1414262698 +46311,94061,Betamax,1353262861 +46311,94061,DVD-R,1353262861 +46311,94144,BD-R,1336664011 +46311,94264,BD-R,1384028149 +46311,94289,BD-R,1367087574 +46311,94306,DVD-Video,1366426073 +46311,94339,BD-R,1342898667 +46311,94365,BD-R,1392664945 +46311,94401,BD-R,1367174783 +46311,94425,BD-R,1373138490 +46311,94433,BD-R,1401999236 +46311,94478,IMAX DMR,1369077654 +46311,94573,BD-R,1351363242 +46311,94666,BD-R,1339958561 +46311,94727,BD-R,1367086404 +46311,94739,BD-R,1369941004 +46311,94750,BD-R,1359922548 +46311,94777,Dimensionalized 2-D to 3-D,1369327028 +46311,94777,IMAX DMR 3-D,1369077618 +46311,94780,BD-Video,1443312457 +46311,94780,DVD-Video,1443312457 +46311,94790,BD-R,1387073494 +46311,94801,BD-R,1440277750 +46311,94803,BD-R,1354828367 +46311,94833,Stereoscopic 3-D,1369326817 +46311,94864,BD-Video,1401997098 +46311,94864,DVD-Video,1401997098 +46311,94864,IMAX DMR 3-D,1369077573 +46311,94864,Stereoscopic 3-D,1369327162 +46311,94931,BD-R,1342898457 +46311,94941,BD-R,1416585565 +46311,94945,BD-R,1339958885 +46311,94957,BD-R,1414264503 +46311,94982,BD-R,1405199534 +46311,95105,IMAX Digital only,1419711540 +46311,95105,Stereoscopic 3-D,1369327128 +46311,95167,BD-Video,1364059778 +46311,95167,Stereoscopic 3-D,1369327287 +46311,95197,BD-R,1342717823 +46311,95205,BD-R,1427572848 +46311,95207,Dimensionalized 2-D to 3-D,1369327202 +46311,95214,BD-R,1342717345 +46311,95307,IMAX Digital only,1419711695 +46311,95307,IMAX DMR,1369077535 +46311,95461,BD-R,1387225750 +46311,95477,BD-R,1342898330 +46311,95510,BD-Video,1413057999 +46311,95510,DVD-Video,1413057999 +46311,95510,IMAX DMR 3-D,1369077501 +46311,95510,Stereoscopic 3-D,1369327944 +46311,95543,Stereoscopic 3-D,1369328027 +46311,95652,DVD-RAM,1344530757 +46311,95652,DVD-Video,1366426270 +46311,95732,DVD-RAM,1386539085 +46311,95735,BD-Video,1437943151 +46311,95744,BD-R,1387658110 +46311,95832,BD-R,1381435717 +46311,95875,IMAX Digital only,1369077399 +46311,96058,BD-R,1413049134 +46311,96079,IMAX DMR,1369076786 +46311,96084,BD-R,1413056643 +46311,96086,BD-R,1344722345 +46311,96144,DVD-Video,1366488908 +46311,96176,BD-R,1369940253 +46311,96223,BD-R,1347741598 +46311,96227,BD-R,1426360484 +46311,96264,BD-R,1350583999 +46311,96281,BD-Video,1373683611 +46311,96281,Stereoscopic 3-D,1369328337 +46311,96304,Stereoscopic 3-D,1369326042 +46311,96448,Stereoscopic 3-D,1369327056 +46311,96451,BD-R,1354482877 +46311,96545,BD-R,1394313605 +46311,96547,DVD-Video,1358108320 +46311,96571,BD-R,1429813680 +46311,96578,DVD-Video,1359401530 +46311,96606,BD-Video,1433637216 +46311,96606,Panavision System 65,1369943602 +46311,96610,BD-Video,1423774139 +46311,96634,BD-R,1387229847 +46311,96667,BD-R,1367086305 +46311,96691,IMAX Digital only,1419712002 +46311,96691,IMAX DMR,1369077288 +46311,96691,Stereoscopic 3-D,1369328480 +46311,96700,BD-R,1347741343 +46311,96710,BD-R,1414264576 +46311,96717,BD-R,1423771485 +46311,96728,70mm,1369943433 +46311,96728,BD-R,1423771614 +46311,96728,Panavision System 65,1369943580 +46311,96737,Stereoscopic 3-D,1369328649 +46311,96762,BD-R,1373139804 +46311,96773,BD-R,1433634287 +46311,96792,BD-R,1415477606 +46311,96792,CLV,1350848715 +46311,96815,BD-R,1352397777 +46311,96821,BD-Video,1423774094 +46311,96901,BD-R,1443311573 +46311,96969,BD-R,1387656594 +46311,96973,BD-R,1443312159 +46311,96983,BD-R,1372099354 +46311,96985,BD-R,1433634382 +46311,97059,Stereoscopic 3-D,1369327986 +46311,97068,BD-R,1418408826 +46311,97070,BD-R,1377457407 +46311,97096,BD-R,1367086997 +46311,97128,BD-Video,1437943165 +46311,97137,BD-R,1406940253 +46311,97139,DVD-RAM,1349545167 +46311,97146,BD-R,1376241161 +46311,97151,BD-R,1349547065 +46311,97172,BD-Video,1369077149 +46311,97172,Dimensionalized 2-D to 3-D,1369328696 +46311,97172,IMAX Digital only,1369077149 +46311,97192,DVD-R,1352143268 +46311,97225,BD-R,1402000405 +46311,97225,Stereoscopic 3-D,1369328619 +46311,97230,BD-R,1379791279 +46311,97246,BD-R,1352396869 +46311,97254,BD-R,1381690022 +46311,97283,DVD-Video,1366425362 +46311,97296,DVD-Video,1366426139 +46311,97304,BD-Video,1426363958 +46311,97308,BD-R,1352398394 +46311,97336,BD-R,1386620710 +46311,97393,BD-R,1369332797 +46311,97455,BD-R,1370288976 +46311,97460,BD-R,1392664575 +46311,97460,CLV,1369337122 +46311,97460,DVD-Video,1366428818 +46311,97462,Dimensionalized 2-D to 3-D,1369325054 +46311,97538,BD-R,1431201670 +46311,97600,BD-R,1426360440 +46311,97643,BD-R,1387658658 +46311,97667,BD-R,1413049844 +46311,97673,BD-R,1384028697 +46311,97701,IMAX Digital only,1369077110 +46311,97709,IMAX Digital only,1419712085 +46311,97713,DVD-RAM,1387139967 +46311,97752,IMAX DMR,1369076985 +46311,97785,Stereoscopic 3-D,1369328740 +46311,97817,Betamax,1370807736 +46311,97819,BD-R,1354398039 +46311,97880,BD-R,1354397556 +46311,97913,BD-Video,1386008321 +46311,97913,Stereoscopic 3-D,1369328761 +46311,97938,IMAX Digital only,1419712418 +46311,97938,IMAX DMR 3-D,1369075661 +46311,97938,Stereoscopic 3-D,1369328795 +46311,97957,BD-R,1390856890 +46311,97966,Dimensionalized 2-D to 3-D,1369328442 +46311,97971,BD-R,1387656988 +46311,98015,BD-R,1354824254 +46311,98019,BD-R,1355601976 +46311,98087,BD-R,1416587362 +46311,98114,DVD-Video,1366488654 +46311,98140,DVD-RAM,1355615003 +46311,98160,BD-R,1354824544 +46311,98171,BD-R,1384028627 +46311,98200,Betamax,1384459065 +46311,98203,IMAX Digital only,1419712374 +46311,98203,IMAX DMR,1369075773 +46311,98213,BD-R,1354397578 +46311,98243,IMAX Digital only,1369075730 +46311,98243,Stereoscopic 3-D,1369328893 +46311,98284,DVD-RAM,1387656845 +46311,98290,BD-R,1360442429 +46311,98296,BD-R,1357843768 +46311,98346,BD-R,1399573412 +46311,98348,BD-R,1413051419 +46311,98373,Stereoscopic 3-D,1369328052 +46311,98376,BD-R,1394313755 +46311,98389,BD-R,1357844456 +46311,98452,BD-R,1396551544 +46311,98456,BD-R,1360441661 +46311,98460,BD-R,1355601874 +46311,98604,BD-Video,1413056914 +46311,98757,BD-Video,1437942198 +46311,98766,BD-R,1387657426 +46311,98788,BD-R,1384112226 +46311,98807,BD-R,1359401379 +46311,98809,48 frames per second,1419712579 +46311,98809,IMAX DMR 3-D,1369075593 +46311,98809,Stereoscopic 3-D,1369328912 +46311,98961,BD-Video,1423774159 +46311,98994,BD-R,1413054889 +46311,99045,IMAX DMR,1419708919 +46311,99056,BD-R,1357844246 +46311,99089,CLV,1369334435 +46311,99108,BD-Video,1387226152 +46311,99114,BD-R,1422061379 +46311,99114,BD-Video,1427572905 +46311,99114,DVD-Video,1427572905 +46311,99143,IMAX Digital only,1419712313 +46311,99143,IMAX DMR 3-D,1369076723 +46311,99143,Stereoscopic 3-D,1369328969 +46311,99147,BD-R,1357844286 +46311,99149,IMAX Digital only,1419712677 +46311,99149,IMAX DMR,1369075479 +46311,99173,BD-R,1437940021 +46311,99246,BD-R,1423770292 +46311,99273,BD-R,1360441625 +46311,99314,BD-R,1396551586 +46311,99314,DVD-RAM,1385318780 +46311,99351,Betamax,1382221038 +46311,99351,DVD-Video,1366512270 +46311,99373,Stereoscopic 3-D,1369323815 +46311,99417,BD-R,1357843908 +46311,99441,IMAX 3-D,1369324822 +46311,99441,Stereoscopic 3-D,1369324822 +46311,99448,BD-R,1387656567 +46311,99450,BD-R,1388082349 +46311,99468,BD-R,1369940366 +46311,99499,Betamax,1360532394 +46311,99560,Technirama,1418420667 +46311,99562,BD-R,1357844171 +46311,99598,BD-R,1406940118 +46311,99604,CLV,1361819063 +46311,99611,BD-R,1445022944 +46311,99687,BD-R,1360441530 +46311,99717,BD-R,1381692345 +46311,99721,Stereoscopic 3-D,1369328989 +46311,99739,Betamax,1386624842 +46311,99815,BD-R,1360442200 +46311,99839,BD-R,1363290640 +46311,99846,BD-R,1392664083 +46311,100032,BD-R,1360443747 +46311,100034,BD-R,1367086847 +46311,100163,IMAX DMR 3-D,1392666259 +46311,100163,Stereoscopic 3-D,1369075192 +46311,100165,BD-R,1370541689 +46311,100229,BD-R,1360442485 +46311,100251,BD-R,1363289954 +46311,100255,BD-R,1406940136 +46311,100411,BD-R,1388085436 +46311,100423,DVD-RAM,1387747862 +46311,100463,CLV,1387228372 +46311,100469,IMAX Digital only,1419712519 +46311,100469,IMAX DMR,1369075542 +46311,100498,IMAX Digital only,1419712902 +46311,100498,IMAX DMR,1369075073 +46311,100505,BD-R,1386441264 +46311,100511,BD-R,1385066310 +46311,100521,Betamax,1367179394 +46311,100577,BD-R,1394312844 +46311,100579,BD-R,1388083634 +46311,100611,Stereoscopic 3-D,1369329105 +46311,100882,IMAX Digital only,1419712852 +46311,100882,IMAX DMR 3-D,1392666306 +46311,101016,BD-R,1369333093 +46311,101018,BD-R,1369332991 +46311,101020,BD-R,1369333063 +46311,101025,IMAX DMR 3-D,1369075013 +46311,101025,Stereoscopic 3-D,1369329130 +46311,101064,BD-R,1384028828 +46311,101076,Dimensionalized 2-D to 3-D,1369329430 +46311,101076,IMAX Digital only,1419713819 +46311,101076,IMAX DMR 3-D,1392666767 +46311,101104,BD-R,1369333027 +46311,101112,IMAX Digital only,1419713768 +46311,101112,IMAX DMR 3-D,1369074955 +46311,101112,Stereoscopic 3-D,1369329153 +46311,101142,Stereoscopic 3-D,1369329408 +46311,101204,CLV,1369337379 +46311,101214,BD-R,1390854632 +46311,101224,DVD-RAM,1387747993 +46311,101239,BD-R,1387129272 +46311,101241,BD-R,1378668007 +46311,101241,DVD-Video,1378671324 +46311,101337,DVD-Video,1366488045 +46311,101339,DVD-Video,1366488354 +46311,101446,BD-R,1384454627 +46311,101450,BD-R,1413052371 +46311,101674,DVD-Video,1401997865 +46311,101726,BD-R,1379790853 +46311,101749,BD-R,1367084706 +46311,101782,BD-R,1367174756 +46311,101812,VistaVision,1418406852 +46311,101827,BD-R,1392663503 +46311,101864,IMAX DMR,1369074642 +46311,101967,BD-R,1381080039 +46311,102028,IMAX 3-D,1369077728 +46311,102088,IMAX Digital only,1419712724 +46311,102113,DVD-RAM,1367090534 +46311,102123,BD-Video,1386008456 +46311,102125,Dimensionalized 2-D to 3-D,1369329491 +46311,102125,IMAX DMR 3-D,1369074571 +46311,102194,BD-Video,1443312479 +46311,102388,BD-R,1401996939 +46311,102407,Stereoscopic 3-D,1369329516 +46311,102445,BD-Video,1426364092 +46311,102445,Dimensionalized 2-D to 3-D,1369329543 +46311,102445,DVD-Video,1426364091 +46311,102445,IMAX DMR 3-D,1369074389 +46311,102445,partially photographed in IMAX,1419714228 +46311,102459,BD-R,1388085946 +46311,102495,BD-R,1388082915 +46311,102509,BD-R,1370542184 +46311,102517,BD-Video,1437943925 +46311,102544,BD-R,1388084235 +46311,102716,IMAX Digital only,1419714269 +46311,102716,IMAX DMR,1392666995 +46311,102747,CLV,1388255387 +46311,102779,BD-R,1388083787 +46311,102779,DVD-RAM,1386445225 +46311,102779,VHS,1386445226 +46311,102819,BD-R,1374423924 +46311,102821,BD-R,1388090624 +46311,102843,BD-R,1387226571 +46311,102880,IMAX Digital only,1419714301 +46311,102880,IMAX DMR,1392667076 +46311,102897,BD-R,1388083566 +46311,102899,BD-R,1388256654 +46311,102963,BD-R,1413054531 +46311,102967,BD-R,1373139872 +46311,103006,BD-R,1414264697 +46311,103006,CLV,1370723559 +46311,103042,Dimensionalized 2-D to 3-D,1419714341 +46311,103042,IMAX DMR 3-D,1392667120 +46311,103103,BD-R,1388256149 +46311,103228,Dimensionalized 2-D to 3-D,1419714759 +46311,103228,IMAX DMR 3-D,1392667301 +46311,103249,BD-Video,1426364186 +46311,103249,Dimensionalized 2-D to 3-D,1419714655 +46311,103249,DVD-Video,1426364186 +46311,103249,IMAX Digital only,1419714655 +46311,103249,IMAX DMR 3-D,1392667148 +46311,103253,IMAX DMR,1392667322 +46311,103288,BD-R,1388254610 +46311,103322,BD-R,1388258432 +46311,103324,BD-R,1388259272 +46311,103335,BD-Video,1415478186 +46311,103335,DVD-Video,1415478206 +46311,103335,IMAX Digital only,1419714387 +46311,103335,IMAX DMR 3-D,1392667214 +46311,103339,IMAX Digital only,1419714691 +46311,103339,IMAX DMR,1392667171 +46311,103361,IMAX Digital only,1419712479 +46311,103361,IMAX DMR,1392666060 +46311,103384,IMAX Digital only,1419714823 +46311,103384,IMAX DMR,1392667244 +46311,103411,BD-R,1403547182 +46311,103525,BD-R,1388088114 +46311,103567,BD-R,1387225411 +46311,103651,IMAX Digital only,1419712196 +46311,103653,BD-R,1440274805 +46311,103739,BD-R,1388082293 +46311,103749,BD-R,1384027933 +46311,103759,BD-R,1423773257 +46311,103813,BD-R,1437073578 +46311,103823,BD-R,1388083341 +46311,103990,VHS,1386014432 +46311,103996,BD-R,1399749192 +46311,104011,BD-R,1388259596 +46311,104026,BD-R,1437073722 +46311,104028,BD-R,1440275896 +46311,104129,IMAX Digital only,1419714723 +46311,104129,IMAX DMR,1392667279 +46311,104132,BD-R,1418410111 +46311,104132,DVD-R,1387144313 +46311,104153,BD-R,1382746701 +46311,104233,BD-R,1418406227 +46311,104243,IMAX Digital only,1419714996 +46311,104243,IMAX DMR,1392667402 +46311,104245,BD-Video,1386008433 +46311,104247,BD-Video,1437943706 +46311,104312,IMAX Digital only,1419714931 +46311,104312,IMAX DMR,1419714970 +46311,104449,BD-R,1387656955 +46311,104459,BD-R,1377451481 +46311,104480,BD-R,1388083603 +46311,104480,BD-Video,1390854221 +46311,104599,BD-R,1388089052 +46311,104627,BD-R,1388258996 +46311,104733,CLV,1388255622 +46311,104817,BD-R,1433635523 +46311,104841,BD-Video,1427573243 +46311,104841,Dimensionalized 2-D to 3-D,1419715240 +46311,104841,IMAX Digital only,1419715240 +46311,104841,IMAX DMR 3-D,1392667557 +46311,104969,BD-R,1422062355 +46311,104969,CLV,1388255744 +46311,105049,CLV,1388255056 +46311,105057,BD-R,1422062093 +46311,105077,BD-R,1431202819 +46311,105091,BD-Video,1387226238 +46311,105111,BD-R,1394313782 +46311,105165,BD-R,1387230261 +46311,105178,DVD-Video,1386535541 +46311,105181,BD-R,1388256622 +46311,105197,BD-Video,1423774228 +46311,105234,DVD-R,1386624130 +46311,105236,Betamax,1382831821 +46311,105248,IMAX Digital only,1419715070 +46311,105248,IMAX DMR 3-D,1392667535 +46311,105279,BD-R,1382746736 +46311,105468,BD-Video,1440275777 +46311,105468,DVD-Video,1440275777 +46311,105504,IMAX Digital only,1419715275 +46311,105504,IMAX DMR,1392667620 +46311,105533,BD-R,1382746668 +46311,105565,BD-R,1382217687 +46311,105720,BD-R,1388259412 +46311,105733,BD-R,1387657559 +46311,105742,BD-R,1426364867 +46311,105746,BD-R,1386440822 +46311,105748,BD-R,1415477669 +46311,105794,BD-R,1387657031 +46311,105801,DVD-Video,1405197404 +46311,105813,BD-R,1429814856 +46311,105837,BD-R,1387658595 +46311,105837,BD-Video,1415479761 +46311,105963,BD-R,1387658617 +46311,106002,BD-Video,1427572970 +46311,106002,DVD-Video,1427572970 +46311,106002,IMAX Digital only,1419715310 +46311,106002,IMAX DMR,1392667840 +46311,106004,BD-R,1388083041 +46311,106022,BD-R,1384028751 +46311,106022,BD-Video,1415478234 +46311,106072,Dimensionalized 2-D to 3-D,1419715364 +46311,106072,IMAX Digital only,1419715364 +46311,106072,IMAX DMR 3-D,1392667875 +46311,106094,BD-R,1387658567 +46311,106188,BD-R,1388256213 +46311,106193,BD-R,1388088357 +46311,106230,BD-R,1386440532 +46311,106243,BD-R,1387658549 +46311,106270,BD-R,1388262257 +46311,106295,BD-R,1385067113 +46311,106332,BD-R,1401996847 +46311,106365,BD-R,1416586581 +46311,106438,BD-Video,1423774013 +46311,106483,BD-R,1422062029 +46311,106487,IMAX DMR,1392667914 +46311,106487,partially photographed in IMAX,1419715404 +46311,106489,48 frames per second,1419715542 +46311,106489,IMAX DMR 3-D,1392667956 +46311,106583,BD-R,1418409447 +46311,106704,BD-R,1386441174 +46311,106722,BD-R,1387067544 +46311,106729,DVD-Video,1388090242 +46311,106768,BD-R,1390855355 +46311,106850,BD-Video,1437943559 +46311,106852,BD-Video,1437943598 +46311,106892,BD-R,1413056554 +46311,106916,BD-Video,1427573214 +46311,106916,DVD-Video,1427573214 +46311,106922,BD-Video,1437943609 +46311,106924,BD-Video,1437943657 +46311,106996,BD-R,1390854710 +46311,106998,BD-Video,1437943937 +46311,107061,VistaVision,1418408580 +46311,107081,BD-Video,1437943666 +46311,107130,BD-R,1413055682 +46311,107141,BD-Video,1415478334 +46311,107157,BD-R,1429814288 +46311,107159,BD-Video,1437943673 +46311,107161,BD-Video,1437943692 +46311,107185,BD-R,1390855136 +46311,107188,BD-Video,1437943718 +46311,107262,BD-Video,1437943747 +46311,107264,BD-Video,1437943730 +46311,107289,DVD-Video,1401998893 +46311,107342,BD-Video,1437943784 +46311,107344,BD-Video,1437943805 +46311,107346,BD-Video,1437943821 +46311,107404,BD-R,1390856977 +46311,107406,BD-Video,1418405409 +46311,107501,BD-R,1416587556 +46311,107662,BD-Video,1437943848 +46311,107700,BD-R,1416587521 +46311,107875,BD-R,1392663997 +46311,107953,IMAX Digital only,1419713898 +46311,107953,IMAX DMR,1392666816 +46311,108005,BD-R,1392664800 +46311,108007,BD-R,1392665327 +46311,108046,65mm,1391005887 +46311,108046,Vitascope,1391004949 +46311,108120,BD-R,1395592732 +46311,108158,BD-R,1392664651 +46311,108188,IMAX Digital only,1419715634 +46311,108188,IMAX DMR,1419715633 +46311,108190,BD-Video,1427572998 +46311,108190,DVD-Video,1427572998 +46311,108190,IMAX Digital only,1419715993 +46311,108190,IMAX DMR,1392668120 +46311,108237,IMAX Digital only,1419711301 +46311,108255,VistaVision,1418408607 +46311,108370,BD-R,1396550655 +46311,108685,BD-R,1443311737 +46311,108689,Dimensionalized 2-D to 3-D,1419715771 +46311,108689,IMAX Digital only,1419715771 +46311,108689,IMAX DMR 3-D,1392668010 +46311,108727,BD-Video,1413056965 +46311,108825,IMAX DMR 3-D,1392667804 +46311,108891,BD-Video,1437943861 +46311,108893,BD-Video,1437943874 +46311,108932,55 movies every kid should see--Entertainment Weekly,1407083444 +46311,108932,BD-Video,1422060467 +46311,108932,DVD-Video,1422060467 +46311,108945,IMAX Digital only,1419715865 +46311,108945,IMAX DMR,1392668078 +46311,108951,BD-R,1437073143 +46311,108981,BD-Video,1413056978 +46311,109017,BD-R,1440278039 +46311,109019,BD-R,1440275024 +46311,109374,BD-Video,1427572940 +46311,109487,BD-Video,1429814972 +46311,109487,DVD-Video,1429814972 +46311,109487,IMAX DMR,1419715712 +46311,109487,partially photographed in IMAX,1419715712 +46311,109533,BD-R,1395592362 +46311,109647,BD-R,1396551677 +46311,109673,Dimensionalized 2-D to 3-D,1419715913 +46311,109673,IMAX Digital only,1419715913 +46311,109673,IMAX DMR 3-D,1419715913 +46311,109708,BD-R,1440275877 +46311,109793,BD-R,1405197312 +46311,109833,BD-R,1406940069 +46311,109846,BD-Video,1415479705 +46311,109846,DVD-Video,1415479705 +46311,109850,Dimensionalized 2-D to 3-D,1419715960 +46311,109850,IMAX Digital only,1419715960 +46311,109850,IMAX DMR 3-D,1419715960 +46311,109891,BD-R,1399572796 +46311,109985,BD-R,1422062055 +46311,110036,Technirama,1418420954 +46311,110048,BD-R,1440276106 +46311,110102,Dimensionalized 2-D to 3-D,1419716036 +46311,110102,IMAX Digital only,1419716036 +46311,110102,IMAX DMR 3-D,1419716036 +46311,110127,IMAX Digital only,1419716176 +46311,110127,IMAX DMR,1419716176 +46311,110155,BD-R,1399750963 +46311,110181,BD-R,1399749262 +46311,110486,BD-R,1443311616 +46311,110537,BD-R,1437073261 +46311,110553,Dimensionalized 2-D to 3-D,1419716528 +46311,110553,IMAX Digital only,1419716528 +46311,110553,IMAX DMR 3-D,1419716528 +46311,110597,BD-R,1399750441 +46311,110599,BD-R,1399750462 +46311,110629,BD-R,1401999410 +46311,110633,BD-R,1401999270 +46311,110718,BD-Video,1429814942 +46311,110730,IMAX Digital only,1419716230 +46311,110730,IMAX DMR,1419716230 +46311,110761,BD-R,1426360670 +46311,110761,Two-color Technicolor,1418418073 +46311,110788,BD-R,1437074631 +46311,110880,BD-R,1399750166 +46311,110916,BD-R,1401999796 +46311,111109,BD-R,1413051481 +46311,111228,BD-R,1402000316 +46311,111233,BD-R,1413051682 +46311,111285,BD-R,1437074329 +46311,111351,BD-Video,1437943910 +46311,111360,IMAX Digital only,1419717698 +46311,111360,IMAX DMR,1419717698 +46311,111360,partially photographed in IMAX,1419717698 +46311,111364,BD-Video,1415479801 +46311,111364,Dimensionalized 2-D to 3-D,1419716578 +46311,111364,DVD-Video,1415479812 +46311,111364,IMAX Digital only,1419716578 +46311,111364,IMAX DMR 3-D,1419716578 +46311,111407,BD-Video,1437944205 +46311,111409,BD-Video,1437943887 +46311,111411,BD-Video,1437943964 +46311,111499,BD-Video,1437943974 +46311,111507,BD-R,1416585723 +46311,111515,BD-Video,1437943992 +46311,111583,BD-R,1443313096 +46311,111632,BD-R,1413049461 +46311,111659,BD-Video,1415479675 +46311,111659,DVD-Video,1415479675 +46311,111659,IMAX Digital only,1419716612 +46311,111659,IMAX DMR 3-D,1419716612 +46311,111667,BD-R,1413053244 +46311,111689,BD-R,1437072011 +46311,111702,BD-R,1413053267 +46311,111743,BD-Video,1433637139 +46311,111743,DVD-Video,1433637139 +46311,111759,Dimensionalized 2-D to 3-D,1419716652 +46311,111759,IMAX Digital only,1419716652 +46311,111759,IMAX DMR 3-D,1419716652 +46311,111793,BD-R,1445022863 +46311,111842,CLV,1430148751 +46311,111868,BD-R,1422063312 +46311,111997,BD-R,1418409371 +46311,112023,BD-R,1405199277 +46311,112060,BD-R,1445019841 +46311,112171,IMAX Digital only,1419717979 +46311,112171,IMAX DMR,1419717979 +46311,112175,IMAX Digital only,1419716706 +46311,112175,IMAX DMR 3-D,1419716706 +46311,112206,BD-R,1405199453 +46311,112247,BD-R,1437074048 +46311,112261,BD-R,1418409687 +46311,112301,BD-R,1413053341 +46311,112328,BD-R,1405199187 +46311,112353,BD-R,1418409938 +46311,112355,BD-R,1406940281 +46311,112370,IMAX Digital only,1419717616 +46311,112370,IMAX DMR 3-D,1419717616 +46311,112370,partially photographed with digital IMAX 3D cameras,1419717616 +46311,112399,BD-R,1426362045 +46311,112467,BD-R,1406940230 +46311,112485,BD-R,1413049275 +46311,112840,BD-R,1431202136 +46311,112852,Dimensionalized 2-D to 3-D,1419717765 +46311,112852,IMAX Digital only,1419717765 +46311,112852,IMAX DMR 3-D,1419717765 +46311,112880,VistaVision,1418407724 +46311,112897,IMAX Digital only,1419717849 +46311,112897,IMAX DMR,1419717849 +46311,112911,Dimensionalized 2-D to 3-D,1419717660 +46311,112911,IMAX Digital only,1419717660 +46311,112911,IMAX DMR 3-D,1419717660 +46311,112955,BD-R,1431202315 +46311,113022,BD-R,1413051653 +46311,113083,BD-R,1413049819 +46311,113126,BD-R,1413053172 +46311,113139,BD-R,1413055481 +46311,113286,BD-R,1440277266 +46311,113348,Dimensionalized 2-D to 3-D,1419717821 +46311,113348,IMAX Digital only,1419717821 +46311,113348,IMAX DMR 3-D,1419717821 +46311,113644,BD-R,1443312043 +46311,113709,BD-R,1433636688 +46311,113800,BD-R,1423773891 +46311,113943,BD-R,1413056585 +46311,113949,BD-R,1414264077 +46311,113955,BD-R,1440276000 +46311,114095,BD-R,1416586711 +46311,114180,IMAX Digital only,1419717948 +46311,114180,IMAX DMR,1419717948 +46311,114252,BD-R,1414263110 +46311,114254,BD-R,1437070961 +46311,114269,BD-Video,1437944423 +46311,114271,BD-Video,1437944466 +46311,114292,BD-R,1440277283 +46311,114573,BD-R,1443311251 +46311,114694,VistaVision,1418407644 +46311,114696,VistaVision,1418406786 +46311,114791,BD-R,1414264763 +46311,114795,IMAX Digital only,1419718060 +46311,114795,IMAX DMR,1419718060 +46311,114799,BD-R,1443312125 +46311,114847,BD-Video,1443312423 +46311,115149,IMAX Digital only,1419718134 +46311,115149,IMAX DMR,1419718134 +46311,115210,IMAX Digital only,1419718102 +46311,115210,IMAX DMR,1419718102 +46311,115479,BD-R,1418409613 +46311,115526,BD-R,1416587277 +46311,115617,IMAX Digital only,1419718196 +46311,115617,IMAX DMR 3-D,1419718196 +46311,115669,IMAX Digital only,1419715124 +46311,115669,IMAX DMR 3-D,1419715124 +46311,115797,BD-R,1418405828 +46311,116014,BD-R,1443312723 +46311,116080,BD-R,1416587448 +46311,116235,BD-R,1416585740 +46311,116295,BD-R,1429814479 +46311,116351,BD-R,1445023091 +46311,116427,BD-R,1418410065 +46311,116429,BD-R,1418410049 +46311,116467,BD-R,1418409827 +46311,116515,BD-R,1443311662 +46311,116529,IMAX Digital only,1419715173 +46311,116529,IMAX DMR 3-D,1419715173 +46311,116543,BD-R,1418410021 +46311,116555,BD-R,1418410094 +46311,116570,BD-R,1418409747 +46311,116584,BD-R,1445023072 +46311,116887,IMAX Digital only,1419718274 +46311,116887,IMAX DMR 3-D,1419718274 +46311,116925,BD-R,1445019821 +46311,117017,BD-Video,1433637237 +46311,117442,IMAX Digital only,1419715817 +46311,117442,IMAX DMR 3-D,1419715817 +46311,117610,VistaVision,1418408168 +46311,117626,BD-R,1422063296 +46311,117640,BD-R,1418409414 +46311,117662,BD-R,1440872472 +46311,117666,BD-R,1422063276 +46311,117690,BD-R,1429814425 +46311,117702,BD-R,1429813765 +46311,117736,BD-R,1440277511 +46311,117746,BD-R,1422061578 +46311,117748,BD-R,1422061424 +46311,117752,BD-R,1422061798 +46311,117851,IMAX Digital only,1419718229 +46311,117851,IMAX DMR 3-D,1419718229 +46311,117966,BD-R,1437071126 +46311,118006,VistaVision,1418407978 +46311,118008,VistaVision,1418407959 +46311,118284,BD-R,1440275438 +46311,118696,48 frames per second,1419718316 +46311,118696,BD-Video,1434846597 +46311,118696,DVD-Video,1434846612 +46311,118696,IMAX Digital only,1419718316 +46311,118696,IMAX DMR 3-D,1419718315 +46311,118704,BD-R,1423771824 +46311,118722,CLV,1427747321 +46311,118748,BD-R,1445022845 +46311,118752,BD-R,1423770910 +46311,118754,BD-R,1423770890 +46311,118997,BD-Video,1433637167 +46311,119143,BD-R,1433635403 +46311,119145,BD-Video,1434846544 +46311,119155,IMAX Digital only,1419718399 +46311,119155,IMAX DMR 3-D,1419718399 +46311,119303,BD-R,1437940065 +46311,119575,BD-R,1423771358 +46311,119583,BD-R,1423771248 +46311,119585,BD-R,1423772665 +46311,119607,BD-R,1429813706 +46311,119655,IMAX Digital only,1419718367 +46311,119655,IMAX DMR 3-D,1419718367 +46311,119973,BD-R,1445023054 +46311,119977,BD-R,1422063387 +46311,120104,BD-R,1422062912 +46311,120436,BD-R,1445022733 +46311,120466,IMAX Digital only,1426360263 +46311,120588,BD-R,1443314568 +46311,120827,CLV,1430152453 +46311,121045,BD-R,1443312280 +46311,121239,BD-R,1423773277 +46311,121338,BD-R,1426360798 +46311,121342,BD-R,1426360370 +46311,121426,BD-R,1423773908 +46311,121620,BD-R,1431202120 +46311,121851,BD-R,1433636621 +46311,121877,BD-R,1423771227 +46311,122064,BD-R,1440277310 +46311,122159,BD-R,1422063180 +46311,122435,BD-R,1440275726 +46311,122591,BD-R,1443311460 +46311,122659,BD-R,1437074565 +46311,122936,BD-R,1423773106 +46311,122954,BD-R,1426363514 +46311,123036,BD-R,1437074615 +46311,123077,BD-R,1440278110 +46311,123133,BD-R,1433635687 +46311,123221,BD-R,1429814149 +46311,123240,BD-R,1445021127 +46311,123296,BD-R,1443312026 +46311,123312,BD-R,1440277654 +46311,123431,BD-R,1422062204 +46311,123473,BD-R,1433636039 +46311,123677,BD-R,1431202415 +46311,123699,BD-R,1443311951 +46311,124025,BD-R,1445021218 +46311,124031,BD-R,1440275393 +46311,124083,BD-R,1440277735 +46311,124174,BD-R,1445019968 +46311,124180,BD-R,1440275357 +46311,124213,BD-R,1422060617 +46311,124220,BD-R,1422060356 +46311,124224,BD-R,1422060606 +46311,124364,BD-R,1431200554 +46311,124462,BD-R,1427572798 +46311,124470,BD-R,1443312802 +46311,124472,BD-R,1440275937 +46311,124611,BD-R,1423770384 +46311,124775,BD-R,1437073884 +46311,124833,BD-R,1445023414 +46311,124905,BD-R,1429814540 +46311,125067,BD-R,1431202523 +46311,125073,BD-R,1437073843 +46311,125095,BD-R,1426361475 +46311,125113,BD-R,1440275262 +46311,125157,BD-R,1437073864 +46311,125189,BD-R,1440872734 +46311,125193,BD-R,1443311976 +46311,125393,BD-R,1433634000 +46311,125483,BD-R,1423773166 +46311,125503,BD-R,1443312787 +46311,125555,BD-R,1426360965 +46311,125596,BD-Video,1437942959 +46311,125599,BD-Video,1437944494 +46311,126811,BD-R,1443312708 +46311,126935,BD-Video,1437944519 +46311,126939,BD-Video,1437944382 +46311,128085,BD-R,1423770668 +46311,128247,BD-R,1426362247 +46311,128642,CLV,1427746337 +46311,130097,BD-R,1429813975 +46311,130101,BD-R,1429814081 +46311,130217,BD-R,1440275339 +46311,130436,BD-R,1433636537 +46311,130482,BD-R,1440277347 +46311,131196,BD-R,1437071344 +46311,131427,BD-R,1431201755 +46311,131588,DVD-Video,1433637874 +46311,131840,BD-R,1443311907 +46311,132052,BD-R,1445022809 +46311,132249,BD-R,1433634139 +46311,132264,BD-R,1433633714 +46311,132282,BD-R,1431202550 +46311,132288,BD-R,1431202844 +46311,132386,BD-R,1440276598 +46311,132438,CLV,1430157792 +46311,132446,BD-R,1431202566 +46311,132569,BD-R,1431200507 +46311,132666,BD-R,1433637107 +46311,132686,BD-R,1433635550 +46311,132690,BD-R,1433635999 +46311,132723,BD-R,1433636022 +46311,132725,BD-R,1433635641 +46311,132727,BD-R,1433635804 +46311,132751,BD-R,1433635380 +46311,132753,BD-R,1433635662 +46311,132846,BD-R,1437073484 +46311,133591,BD-R,1437070430 +46311,133600,BD-R,1437071227 +46311,133628,BD-R,1437071322 +46311,133638,BD-R,1443312980 +46311,133759,BD-R,1440276148 +46311,133909,BD-R,1437073347 +46311,133911,BD-R,1437073384 +46311,133915,BD-R,1437073316 +46311,133919,BD-R,1437073371 +46311,133921,BD-R,1437073360 +46311,133923,BD-R,1437073326 +46311,133925,BD-R,1437073337 +46311,133951,BD-R,1437072991 +46311,133986,BD-R,1443311443 +46311,134006,BD-R,1437073008 +46311,134009,BD-R,1437073221 +46311,134687,BD-R,1437073754 +46311,134689,BD-R,1437073826 +46311,134732,BD-R,1437074191 +46311,134740,BD-R,1437073739 +46311,134745,BD-R,1437074072 +46311,134751,BD-R,1437074421 +46311,134763,BD-R,1437073980 +46311,138634,BD-R,1440276077 +46311,138640,BD-R,1440275161 +46311,138706,BD-R,1440278129 +46311,138726,BD-R,1440872447 +46311,138730,BD-R,1440276683 +46311,138816,BD-Video,1437944576 +46311,138822,BD-R,1440277615 +46311,138837,BD-R,1440277773 +46311,138904,BD-R,1440872513 +46311,140166,BD-R,1440277717 +46311,140419,BD-R,1445023166 +46311,140561,BD-R,1440872812 +46311,140577,BD-R,1440276247 +46311,141271,BD-R,1443311400 +46311,141281,BD-R,1443312001 +46311,141290,BD-R,1443311346 +46311,141329,BD-R,1443311369 +46311,141573,BD-R,1445021108 +46311,141588,BD-R,1445019490 +46311,141592,BD-R,1445019421 +46311,141602,BD-R,1445019915 +46311,141612,BD-R,1445019804 +46311,141628,BD-R,1445019302 +46311,141725,BD-R,1445022479 +46311,142142,BD-R,1443312960 +46311,142751,BD-R,1445023409 +46311,142775,BD-R,1445023204 +46314,8798,Michael Mann,1186751903 +46354,471,coen brothers,1193519281 +46354,1204,extraordinary!!!,1140489857 +46354,1732,coen brothers,1193519220 +46354,2003,still great,1140492778 +46354,3997,Tom Baker was in it,1140489858 +46354,45028,Robert Altman,1163108017 +46354,49272,product placement,1164586587 +46357,260,aliens,1436164867 +46357,260,space adventure,1436164882 +46357,356,love,1436165745 +46357,356,meaning of life,1436165745 +46357,356,respect,1436165745 +46357,105504,SEAL,1447473732 +46357,105504,tom hanks,1447473728 +46357,109374,cinematography,1447473662 +46357,109374,colourful sets,1447473653 +46357,109374,visually appealing,1447473665 +46359,549,classical music,1388964094 +46359,549,nonlinear,1388964097 +46359,904,suspense,1388879590 +46359,1193,powerful ending,1388880055 +46359,1212,Amazing Cinematography,1388879510 +46359,1212,atmospheric,1388879520 +46359,1212,based on a book,1388879531 +46359,1391,stupid,1388879719 +46359,1944,AFI 100,1222058556 +46359,1961,dark comedy,1388880004 +46359,2115,idiot plot,1388961443 +46359,2140,dark fantasy,1388878653 +46359,2193,predictable,1388882493 +46359,2362,so bad it's good,1388881065 +46359,2379,idiot plot,1388961475 +46359,2683,goofy,1388879907 +46359,2683,Gross-out,1388879903 +46359,2683,stupid,1388879916 +46359,2959,dark comedy,1388880682 +46359,3071,AFI 100,1222061266 +46359,3087,Bechdel Test:Pass,1388882646 +46359,3175,hilarious!,1388961641 +46359,3336,World War II,1222058473 +46359,3424,great cinematography,1388963988 +46359,3730,enigmatic,1388961148 +46359,4124,ridiculous,1388879814 +46359,4278,propaganda,1222061071 +46359,4278,World War II,1222061090 +46359,4467,metafiction,1388881029 +46359,4467,unlikeable characters,1388881042 +46359,5459,idiot plot,1388963892 +46359,5903,Amazing Cinematography,1388880117 +46359,5903,dystopia,1388880126 +46359,5903,thought-provoking,1388880132 +46359,5903,visually stunning,1388880134 +46359,6971,World War II,1225158365 +46359,8917,stupid,1388880919 +46359,27899,bad science,1388879635 +46359,27899,"bogus ""experts""",1388879641 +46359,27899,pseudoscience,1388879658 +46359,48780,nonlinear,1388961102 +46359,48780,philosophy,1388961105 +46359,94864,atmospheric,1388964980 +46359,94864,great acting,1388964983 +46359,94864,idiot plot,1388965006 +46359,94864,intelligent,1388965017 +46359,94864,intense,1388964988 +46359,94864,plot hole,1388965022 +46359,94864,predictable,1388965030 +46359,94864,science,1388964992 +46359,101864,idiot plot,1388961365 +46395,2671,love,1425636749 +46395,2671,romance,1425636766 +46400,93840,dark comedy,1358722070 +46400,93840,horror comedy,1358722108 +46400,93840,satire,1358722086 +46400,99114,Quentin Tarantino,1358722307 +46400,99114,Revenge,1358722304 +46400,99114,violence,1358722309 +46409,89745,one of the best comic book movies,1440932324 +46409,102125,iron man is the best avenger,1440932370 +46425,112175,animated,1448938709 +46425,119145,humour,1448939065 +46425,119145,spy,1448939051 +46425,135887,comedy,1448938730 +46425,135887,Funny,1448938727 +46448,38061,satire,1228616805 +46455,31658,dreamlike,1262491413 +46455,31658,fire demon,1262491498 +46455,31658,Wow sophie your hair looks just like starlight.,1262491453 +46455,53788,choreographed shootouts,1394655126 +46455,69481,neutral politics,1268340929 +46455,69481,realistic,1268340778 +46455,69604,Evan Rachel Wood,1259630112 +46455,69604,Larry David,1259630117 +46455,72998,cgi,1262467586 +46455,72998,cliche after cliche,1394648293 +46455,72998,poor dialogue,1262467563 +46455,106236,brolove,1394655047 +46515,260,han solo,1443471846 +46515,260,space adventure,1443471851 +46550,6,great acting,1364766742 +46550,6,suspense,1364766730 +46550,6,tense,1364766731 +46550,319,disturbing,1347395784 +46550,319,macabre,1347395740 +46550,319,music,1347395809 +46550,319,overrated,1347395758 +46550,608,witty,1348255566 +46550,858,atmospheric,1342207642 +46550,858,stylized,1342207639 +46550,904,Alfred Hitchcock,1333044306 +46550,904,mystery,1333044308 +46550,904,suspense,1333044312 +46550,904,tense,1333044311 +46550,908,Alfred Hitchcock,1333044268 +46550,908,Clever,1333044275 +46550,908,mystery,1333044278 +46550,908,suspense,1333044294 +46550,908,thriller,1333044259 +46550,908,witty,1333044264 +46550,1201,atmospheric,1332547594 +46550,1201,Clint Eastwood,1332547565 +46550,1201,music,1347371899 +46550,1203,good dialogue,1332547669 +46550,1203,thought-provoking,1332547675 +46550,1214,horror,1367192269 +46550,1214,suspense,1367192218 +46550,1221,great acting,1342299421 +46550,1221,slow,1342299437 +46550,1246,poetry,1379106475 +46550,1527,futuristic,1352590423 +46550,1748,surreal,1347369387 +46550,1950,acting,1352066730 +46550,2176,Suspense,1333044419 +46550,2932,atmospheric,1331939868 +46550,2932,boring,1331939812 +46550,2932,meditative,1331939879 +46550,2932,overrated,1331939860 +46550,2932,slow,1331939820 +46550,3006,intelligent,1332107096 +46550,3039,implausible plot elements,1364679528 +46550,3911,boring,1339360025 +46550,3911,dogs,1339360034 +46550,4011,stylized,1334353885 +46550,4011,twist ending,1334353863 +46550,4027,soundtrack,1347828887 +46550,4326,Gene Hackman,1333148497 +46550,4326,music,1333148544 +46550,4326,tense,1333148687 +46550,4546,inappropriate music,1342384397 +46550,4967,No Happy End,1358113307 +46550,5989,feel good movie,1359056702 +46550,5989,twists & turns,1359056694 +46550,6530,weird,1343666948 +46550,6902,Gary Oldman,1367172347 +46550,7445,ending,1339802035 +46550,7445,twists & turns,1339802057 +46550,8914,complicated plot,1367849914 +46550,44195,clever,1334954676 +46550,44195,dark comedy,1334954680 +46550,44195,dark humor,1334954682 +46550,44195,funny,1334954692 +46550,48696,psychology,1342475217 +46550,48696,satirical,1342475196 +46550,48738,Forest Whitaker,1333044362 +46550,49278,implausible plot elements,1348344781 +46550,53972,action packed,1332522605 +46550,55280,slow,1355016596 +46550,55908,dialogue driven,1347222276 +46550,55908,entirely dialogue,1347222279 +46550,55908,Excellent use of dialogue,1347222253 +46550,55908,intellectual,1347222255 +46550,55908,intelligent,1347222256 +46550,55908,philosophical,1347222259 +46550,55908,unique,1347222262 +46550,68237,psychology,1339879440 +46550,68237,Sci-fi,1339879437 +46550,68237,twist ending,1339879154 +46550,69757,nonlinear,1341783203 +46550,76251,action,1332700015 +46550,76251,funny,1332700005 +46550,76251,humorous,1332700012 +46550,79057,audience intelligence underestimated,1309567250 +46550,79057,childish plot,1309567254 +46550,84392,a couple of well-thought surprises break the formula,1365887625 +46550,88140,action,1376234359 +46550,88140,cheesy,1376234360 +46550,88140,predictable,1376234362 +46550,89745,visually appealing,1403893415 +46550,90430,satire,1342552624 +46550,91529,bad science,1345841326 +46550,91529,bad script,1345841335 +46550,91529,plot holes,1345841306 +46550,91529,Predictable,1345841296 +46550,91542,great cinematography,1332547529 +46550,91630,visuals,1365978283 +46550,96079,action,1351438461 +46550,96079,beautiful cinematography,1351438457 +46550,97752,complicated,1366413421 +46550,97752,great acting,1366413457 +46550,97752,visually appealing,1366413420 +46550,97921,great characters,1362084783 +46550,102445,Benedict Cumberbatch,1374322118 +46550,103228,bad science,1405205636 +46550,103228,visually appealing,1405205651 +46554,6,overrated,1138354688 +46554,3481,overrated,1188992038 +46554,4720,predictable,1188991908 +46554,6583,Underrated,1226413189 +46554,6874,overrated,1188992212 +46554,8957,unintentionally funny,1188991733 +46554,30707,overrated,1188992112 +46554,30707,predictable,1188992104 +46554,36276,boring,1194736354 +46554,36276,overrated,1194736338 +46554,52241,overrated,1190314903 +46554,52241,underestimates the viewer,1190314848 +46554,52321,Underrated,1196758113 +46554,54286,boring,1205841474 +46554,54286,full of cliches,1205841489 +46576,260,Boring,1438224466 +46576,260,ok,1438224491 +46576,260,too long,1438224474 +46576,7096,music,1438734323 +46576,7096,relaxing,1438734330 +46576,7745,beaultiful,1438734172 +46576,7745,colors,1438734180 +46576,7745,little dialogue,1438734508 +46576,7745,scenic,1438734144 +46576,87004,dance,1438225093 +46576,87004,fun,1438225093 +46576,87004,inspiring,1438225093 +46584,103249,b-movie,1432235576 +46584,103249,disappointing,1432235576 +46584,103249,zombies,1432235576 +46594,356,emotional,1423406599 +46594,356,inspiring,1423406599 +46594,356,purpose in life,1423406599 +46594,5524,summer,1424103875 +46606,457,chase,1370214191 +46606,457,thriller,1370214176 +46606,714,dreamlike,1365462244 +46606,714,great soundtrack,1365462239 +46606,714,Jim Jarmusch,1365462207 +46606,714,melancholy,1365462212 +46606,714,road trip,1365462235 +46606,714,surreal,1365462215 +46606,714,visually appealing,1365462232 +46606,778,dark comedy,1366840705 +46606,778,drugs,1366840693 +46606,778,social commentary,1366840695 +46606,778,surreal,1366840698 +46606,1199,black comedy,1362097267 +46606,1199,dystopia,1362097270 +46606,1199,satirical,1362097282 +46606,1199,surreal,1362097273 +46606,1199,Terry Gilliam,1362097271 +46606,1199,thought-provoking,1362097280 +46606,1222,anti-war,1340229795 +46606,1222,political,1340229819 +46606,1222,Stanley Kubrick,1340229801 +46606,1232,beautifully filmed,1367273688 +46606,1232,dreamlike,1367273690 +46606,1232,dystopia,1367273686 +46606,1232,existentialism,1367273679 +46606,1232,meditative,1367273684 +46606,1232,philosophical,1367273704 +46606,1232,psychological,1367273682 +46606,1232,sci-fi,1367273698 +46606,1274,atmospheric,1351197119 +46606,1274,cyberpunk,1351197048 +46606,1274,dialogue,1351552660 +46606,1274,dreamlike,1351197138 +46606,1274,dystopia,1351197083 +46606,1274,dystopic future,1351197093 +46606,1274,future,1351197090 +46606,1274,hallucinatory,1351197087 +46606,1274,stupid,1351197229 +46606,1274,visually stunning,1351197099 +46606,1350,apocalypse,1364511909 +46606,1350,Christianity,1364511924 +46606,1350,Good ending,1364511915 +46606,1653,Uma Thurman,1336171432 +46606,1682,alternate reality,1362097488 +46606,1682,dystopia,1362097492 +46606,1682,Jim Carrey,1362097483 +46606,1682,social commentary,1362097489 +46606,1690,alien series,1368933774 +46606,1690,aliens,1368933777 +46606,1690,sci-fi,1368933788 +46606,1690,Winona Ryder,1368933782 +46606,1748,dreamlike,1335741341 +46606,1748,dystopia,1335741345 +46606,1748,hallucinatory,1335741353 +46606,1748,Post apocalyptic,1335741360 +46606,1748,sci-fi,1335741366 +46606,1748,surreal,1335741328 +46606,1748,thought-provoking,1335741376 +46606,1834,CONS AND SCAMS,1391408842 +46606,1834,twist ending,1391408847 +46606,1845,Ben Stiller,1367368824 +46606,2117,dystopia,1374016675 +46606,2117,post-apocalyptic,1374016677 +46606,2117,remake,1374016722 +46606,2160,Atmospheric,1343004174 +46606,2160,Dream Sequence,1343004182 +46606,2160,dreamlike,1343004234 +46606,2160,Mia Farrow,1343004202 +46606,2160,Roman Polanski,1343004270 +46606,2160,surreal,1343004224 +46606,2160,WITCHCRAFT,1343004184 +46606,2495,atmospheric,1344980099 +46606,2495,Avant Garde,1344980101 +46606,2495,Dreamlike,1344980091 +46606,2495,psychedelic,1344980106 +46606,2495,Social Commentary,1344980109 +46606,2495,Surreal,1344980094 +46606,2495,surrealism,1344980112 +46606,2495,Trippy,1344980095 +46606,2529,dystopia,1338420916 +46606,2529,far future,1338420920 +46606,2529,post-apocalyptic,1338420933 +46606,2529,social commentary,1338420938 +46606,2529,visually appealing,1338420961 +46606,2580,black comedy,1339617226 +46606,2580,drugs,1339617222 +46606,2580,Sarah Polley,1339617272 +46606,2600,acting,1365632865 +46606,2600,mindfuck,1365632785 +46606,2600,multiple realities,1365632783 +46606,2600,Sci-Fi,1365632795 +46606,2600,surreal,1365632798 +46606,2600,wtf?!,1365632814 +46606,2664,Dana Wynter,1363397613 +46606,2664,END OF THE WORLD,1363397591 +46606,2664,paranoid,1363397638 +46606,2843,humorous,1357185803 +46606,2843,NOTHING GOES RIGHT,1357185806 +46606,2959,anarchy,1335212815 +46606,2959,david fincher,1362105557 +46606,2959,disturbing,1362105528 +46606,2959,Helena Bonham Carter,1362105622 +46606,2959,psychology,1362105522 +46606,2959,social commentary,1335212867 +46606,2959,thought-provoking,1362105532 +46606,2959,twist ending,1362105519 +46606,2997,sexuality,1397355221 +46606,2997,surreal,1397355209 +46606,2997,surrealism,1397355215 +46606,3008,apocalypse,1372033029 +46606,3008,melancholy,1372033032 +46606,3008,social commentary,1372033059 +46606,3044,amnesia,1391487286 +46606,3044,twist ending,1391487288 +46606,3499,based on a book,1364863040 +46606,3499,claustrophobic,1364863030 +46606,3499,horror,1364863035 +46606,3499,Stephen King,1364863031 +46606,3527,aliens,1338330399 +46606,3527,macho,1338330422 +46606,3527,sci-fi,1338330413 +46606,3527,silly,1338330436 +46606,3676,atmospheric,1342995176 +46606,3676,creepy,1342995171 +46606,3676,David Lynch,1342995163 +46606,3676,disturbing,1342995165 +46606,3676,dreamlike,1342995167 +46606,3676,hallucinatory,1342995184 +46606,3676,surreal,1342995190 +46606,3793,based on a comic,1341783998 +46606,3793,marvel,1341784039 +46606,3793,silly,1341784060 +46606,3793,stupid,1341784049 +46606,3793,super-hero,1341784020 +46606,3793,superhero,1341784023 +46606,3910,bjork,1362105940 +46606,3910,great ending,1362105928 +46606,3910,surreal,1362105924 +46606,4873,philosophy,1365461653 +46606,4873,surreal,1365461648 +46606,4873,thought-provoking,1365461650 +46606,4927,atmospheric,1376349893 +46606,4927,disturbing,1376349882 +46606,4927,dreamlike,1376349899 +46606,4927,enigmatic,1376349936 +46606,4927,hallucinatory,1376349886 +46606,5445,artificial intelligence,1339707572 +46606,5445,corruption,1339707574 +46606,5445,dystopia,1339707560 +46606,5445,futuristic,1339707565 +46606,5445,Philip K. Dick,1339707580 +46606,5445,sci-fi,1339707590 +46606,5445,surreal,1339707589 +46606,5885,bad dialogue,1363488270 +46606,5885,cliche,1363488221 +46606,5885,illogical,1363488413 +46606,5885,stereotypes,1363488499 +46606,5885,unfunny,1363488413 +46606,5902,Nicolas Cage,1367368928 +46606,5902,surreal,1367368934 +46606,6440,Coen Brothers,1365383523 +46606,6440,hallucinatory,1365383557 +46606,6902,Gary Oldman,1370163789 +46606,6902,police corruption,1369024420 +46606,6902,road trip,1369024417 +46606,6902,social commentary,1369024435 +46606,6953,melancholic,1340660970 +46606,6953,Naomi Watts,1340660957 +46606,6953,Nonlinear,1340660943 +46606,7123,author:william s. burroughs,1365304206 +46606,7123,disturbing,1365304204 +46606,7123,dreamlike,1365304188 +46606,7123,drugs,1365304200 +46606,7123,hallucinatory,1365304198 +46606,7123,nonlinear,1365304211 +46606,7123,sexual,1365304218 +46606,7123,surreal,1365304192 +46606,7123,weird,1365304196 +46606,7160,90s,1381107023 +46606,7160,Bechdel Test:Pass,1381107095 +46606,7160,Charlize Theron,1381106993 +46606,7160,lesbian,1381107037 +46606,7160,rape,1381107124 +46606,8644,artificial intelligence,1425272309 +46606,8644,robots,1425272313 +46606,8644,sci-fi,1425272328 +46606,8810,Alien,1368042563 +46606,8810,aliens,1368042567 +46606,8950,atmospheric,1362105351 +46606,8950,creepy,1362105354 +46606,8950,powerful ending,1362105349 +46606,8950,psychology,1362105347 +46606,8950,twist ending,1362105345 +46606,26554,alone in the world,1417585356 +46606,26554,apocalypse,1417585351 +46606,26554,Post Apocalypse,1417585366 +46606,26554,post-apocalyptic,1417585345 +46606,31856,anarchism,1357262219 +46606,31856,artsy,1357262259 +46606,31856,capitalism,1357262232 +46606,31856,consumerism,1357262169 +46606,31856,editing,1357262093 +46606,31856,globalisation,1357262177 +46606,31856,music,1357262084 +46606,31856,revolutionary,1357262205 +46606,31856,social commentary,1357262113 +46606,31856,sound editing,1357262270 +46606,39381,soundtrack,1337725017 +46606,44761,directorial debut,1367195171 +46606,44761,film noir,1367195164 +46606,44761,genius,1367195184 +46606,44761,stylized,1367195167 +46606,44761,unconventional,1367195244 +46606,44761,unique,1367195235 +46606,45186,action,1366065963 +46606,45186,unrealistic,1366065960 +46606,48516,police,1362361866 +46606,48774,apocalypse,1335740942 +46606,48774,atmospheric,1335740973 +46606,48774,dystopia,1335740930 +46606,48774,future,1335741043 +46606,48774,thought-provoking,1335741001 +46606,48774,visually appealing,1335741019 +46606,50011,dystopia,1376949625 +46606,50011,metaphorical,1376949627 +46606,50011,surreal,1376949628 +46606,51540,cinematography,1366320608 +46606,51540,David Fincher,1366320595 +46606,51540,stylized,1366320602 +46606,52328,cinematography,1371505550 +46606,52328,dark,1371505557 +46606,55232,post-apocalyptic,1340146955 +46606,55232,stupid,1340146952 +46606,55232,zombies,1340146972 +46606,59387,imagination,1361919080 +46606,59387,surreal,1361919084 +46606,59387,visually appealing,1361919087 +46606,59387,visually stunning,1361919082 +46606,60684,stupid,1361919263 +46606,60684,superhero,1361919246 +46606,63062,angelina jolie,1366929957 +46606,63062,Bechdel Test:Pass,1366929997 +46606,63062,police,1367120191 +46606,63062,police corruption,1366929954 +46606,63062,political,1366929983 +46606,65642,complicated,1391401557 +46606,65642,paradox,1391401521 +46606,65642,time travel,1391401519 +46606,68237,mindfuck,1364414189 +46606,68791,bad acting,1340752519 +46606,68791,effects,1340752455 +46606,68791,FIGHTING THE SYSTEM,1340752451 +46606,68791,futuristic,1340752461 +46606,68791,post-apocalyptic,1340752436 +46606,68791,sci-fi,1340752463 +46606,68791,weak plot,1340752441 +46606,69481,i don't like war movies but this one was quite good,1413506100 +46606,71530,alternate reality,1361406125 +46606,71530,androids,1361406123 +46606,71530,bad science,1361406144 +46606,71530,dystopia,1361406133 +46606,71530,sci-fi,1361406120 +46606,71530,surreal,1361406131 +46606,73168,post-apocalyptic,1412741043 +46606,73168,survival,1412741029 +46606,77455,art,1340652404 +46606,77455,consumerism,1340652409 +46606,77455,ending,1340652422 +46606,77455,graffiti,1340652402 +46606,77455,interviews,1340652412 +46606,77455,Shepard Fairey,1340652415 +46606,77455,smart,1340652419 +46606,77795,German,1428625971 +46606,79357,Jared Leto,1367273503 +46606,79357,nonlinear,1367273474 +46606,79357,surreal,1367273459 +46606,79357,too long,1367273461 +46606,80969,atmospheric,1361915781 +46606,80969,disturbing,1361915809 +46606,80969,dystopia,1361915800 +46606,80969,great acting,1361915796 +46606,80969,thought-provoking,1361915776 +46606,81591,atmospheric,1362105271 +46606,81591,dance,1362105308 +46606,81591,dance movie,1362105305 +46606,81591,dark,1362105267 +46606,81591,Darren Aronofsky,1362105393 +46606,81591,disturbing,1362105282 +46606,81591,Oscar (Best Actress),1362105448 +46606,81591,psychological,1362105215 +46606,81591,stylized,1362105315 +46606,81591,surreal,1362105263 +46606,81591,twist ending,1362105276 +46606,82461,futuristic,1395913697 +46606,82461,sci-fi,1395913698 +46606,82461,virtual reality,1395913705 +46606,82461,visually appealing,1395913685 +46606,84601,conspiracy,1371512597 +46606,84601,identity theft,1371512608 +46606,84601,paranoia,1371512605 +46606,84954,author:Philip K. Dick,1360978063 +46606,84954,Philip K. Dick,1360978059 +46606,84954,surreal,1360978082 +46606,85414,mindfuck,1339714094 +46606,85414,parallel universe,1339714113 +46606,85414,time loop,1339714097 +46606,85414,time travel,1339714104 +46606,85414,twist ending,1339714104 +46606,89072,lame ending,1416976137 +46606,89072,plot holes,1416976126 +46606,90268,post-apocalyptic,1351552520 +46606,90268,sci-fi,1351552541 +46606,90268,survival,1351552579 +46606,91500,dystopia,1362021298 +46606,91500,science fiction,1362021306 +46606,91500,survival,1362021333 +46606,91500,thriller,1362021295 +46606,91658,atmospheric,1367119962 +46606,91658,dark,1367119954 +46606,91658,David Fincher,1367120006 +46606,91658,rape,1367119947 +46606,91658,Rooney Mara,1367119988 +46606,91658,suspense,1367120024 +46606,91658,thriller,1367119970 +46606,93840,conspiracy,1368235215 +46606,93840,plot twist,1368235221 +46606,93855,controversial,1365031124 +46606,93855,dark comedy,1365031116 +46606,93855,social comentary,1365031120 +46606,93855,social criticism,1365031121 +46606,94558,beautiful,1394167315 +46606,94558,experimental,1394167373 +46606,94558,visually appealing,1394167325 +46606,94558,what the hell was that?,1394167339 +46606,94864,aliens,1349732130 +46606,94864,exploration,1349732138 +46606,94864,religious overtones,1349732125 +46606,94864,Ridley Scott,1349732159 +46606,94864,scifi,1349732165 +46606,94864,space travel,1349732161 +46606,94939,anarchism,1380938251 +46606,94939,awesome,1380938153 +46606,94939,drums,1380938128 +46606,94939,music,1380938131 +46606,94939,Underrated,1380938174 +46606,95309,apocalyptic,1427347661 +46606,95309,dark humor,1427347659 +46606,95309,drugs,1427347687 +46606,95309,end of the world,1427347672 +46606,95309,sex,1427347683 +46606,96821,bittersweet,1398136176 +46606,96821,character development,1398136160 +46606,96821,coming of age,1398136154 +46606,96821,Emma Watson,1398136156 +46606,96821,Gay Character,1398136163 +46606,96821,touching,1398136158 +46606,96832,disturbing,1362097002 +46606,96832,genius,1362097007 +46606,96832,mindfuck,1362097008 +46606,96832,surreal,1362097017 +46606,97306,Christopher Walken,1367185781 +46606,97306,Colin Farrell,1367185786 +46606,97306,dark comedy,1367185783 +46606,97752,dystopia,1361905461 +46606,97752,multiple storylines,1361905412 +46606,97752,rebellion,1361905432 +46606,97752,sci-fi,1361905422 +46606,97752,social commentary,1361905426 +46606,97752,visually appealing,1361905417 +46606,98809,beautiful scenery,1362021560 +46606,98809,stupid fight scenes,1362021567 +46606,98961,American propaganda,1364242927 +46606,98961,Inaccurate,1364242933 +46606,99114,Christoph Waltz,1362021496 +46606,99114,Funny,1362021466 +46606,99114,Great performances,1362021470 +46606,99114,Leonardo DiCaprio,1362021452 +46606,99114,Quentin Tarantino,1362021457 +46606,99114,Samuel L. Jackson,1362021454 +46606,99537,memories,1416459409 +46606,99537,psychology,1416459399 +46606,100244,anarchism,1391132316 +46606,100244,anti-corporation,1391132314 +46606,100244,anticapitalism,1391132623 +46606,100244,cliched,1391132424 +46606,100244,Ellen Page,1391132334 +46606,100244,music,1391132413 +46606,101864,dystopia,1395891995 +46606,101864,post-apocalyptic,1395891981 +46606,101864,sci-fi,1395891983 +46606,101864,twists & turns,1395892001 +46606,103306,boring ending,1409796426 +46606,103306,Found footage,1428625822 +46606,104841,cinematography,1389932835 +46606,104841,intense,1389932839 +46606,104841,physics,1389932826 +46606,104841,space,1389932833 +46606,104841,visually appealing,1389932830 +46606,106766,atmospheric,1405653308 +46606,106766,Coen Brothers,1405653305 +46606,106766,folk music,1405653303 +46606,106766,musicians,1405653300 +46606,106920,artificial intelligence,1397307483 +46606,106920,thought-provoking,1397307480 +46606,107771,atmospheric,1394161633 +46606,107771,idea,1394161640 +46606,107771,Jim Jarmusch,1394161626 +46606,107771,music,1394161645 +46606,107771,not really a horror movie,1394161690 +46606,107771,story,1394161628 +46606,107771,vampires,1394161653 +46606,109848,atmospheric,1408770850 +46606,109848,slow,1408770911 +46606,109848,soundtrack,1408770946 +46606,109848,story,1408770971 +46606,109848,twist ending,1408770924 +46606,109848,visually appealing,1408770872 +46606,110407,artificial intelligence,1441658588 +46606,110730,artificial intelligence,1441666088 +46606,110730,nano-technology,1441666125 +46606,110730,poorly thought out ending,1441666106 +46606,111360,drugs,1421192717 +46606,111360,dumb science,1421192746 +46606,111360,Scarlett Johansson,1421192710 +46606,111360,scifi,1421192744 +46606,112421,musicians,1441406921 +46606,114935,mindfuck,1427640735 +46606,114935,time travel,1427640732 +46606,114935,twist ending,1427640737 +46606,115713,AI,1441658441 +46606,115713,artificial intelligence,1441658438 +46606,115713,philosophical,1441658452 +46606,115713,sci-fi,1441658448 +46606,115713,thought provoking,1441658456 +46606,122882,dumb,1441667470 +46606,122882,feminism,1441667486 +46612,75805,really slow,1283544750 +46670,260,EPIC,1444364296 +46670,260,space adventure,1444364298 +46676,318,endurance,1429887216 +46676,318,friendship,1429887216 +46676,318,prison,1429887216 +46676,1721,Kate Winslet,1429887229 +46676,1721,tear jerker,1429887255 +46676,3535,Christian Bale,1429887369 +46676,3535,dark comedy,1429887366 +46676,3535,funny,1429887385 +46676,3535,phil collins soundtrack,1429887398 +46676,4226,cult film,1429887098 +46676,4226,nonlinear,1429887131 +46676,4226,paranoid,1429887091 +46676,4226,twist ending,1429887081 +46722,4973,Foreign,1190152357 +46724,260,action,1436495388 +46724,318,classic,1436495486 +46733,2403,Sylvester Stallone,1433705458 +46733,2403,Vietnam war veteran,1433705464 +46733,4223,sniper,1433705367 +46733,4223,World War II,1433705377 +46733,134515,100 essential female performances,1433515752 +46733,134515,conan,1433515752 +46733,134515,goodfellas ii,1433515752 +46773,32587,comic book,1372962032 +46773,32587,stylized,1372962037 +46773,55363,based on a true story,1362828274 +46773,55363,beautiful scenery,1427148178 +46773,55363,Casey Affleck,1362828260 +46773,55363,visually appealing,1362828266 +46773,58559,Christian Bale,1362828324 +46773,58559,Heath Ledger,1362828326 +46773,58559,music,1362828330 +46773,60684,cinematography,1363522658 +46773,60684,stylized,1363522676 +46773,60684,superhero,1363522662 +46773,91529,Christian Bale,1362828359 +46773,102684,beautifully filmed,1376127761 +46773,102684,great soundtrack,1376127773 +46773,102684,photography,1376127767 +46773,106920,beautiful,1427147970 +46773,106920,thought-provoking,1427147966 +46773,113240,long,1443273976 +46795,260,unseen,1443725410 +46795,318,classic,1443725501 +46795,318,imdb top 250,1443725506 +46808,47,nihilism,1438473582 +46808,111,nihilism,1438473701 +46808,260,Action,1438469660 +46808,260,Adventure,1438469656 +46808,260,sci-fi,1438469646 +46808,260,space action,1438469653 +46808,318,brotherhood,1438471522 +46808,318,friends,1438471509 +46808,318,friendship,1438471517 +46808,318,redemption,1438471503 +46808,356,inspirational,1438469907 +46808,356,over coming adversity,1438469907 +46808,356,thought-provoking,1438469907 +46808,1051,alcoholism,1440743907 +46808,1051,empty,1440743911 +46808,1178,atmosphere,1438472936 +46808,1178,bleak,1438472932 +46808,1178,cynical,1438472925 +46808,1178,morality,1438472922 +46808,1178,war,1438472910 +46808,1178,wwI,1438472924 +46808,1204,atmospheric,1438473030 +46808,1204,cinematography,1438473036 +46808,1204,desert,1438473043 +46808,1204,History,1438473039 +46808,1204,Middle East,1438473033 +46808,1204,World War I,1438473037 +46808,1233,brotherhood,1438472827 +46808,1233,classic,1438472853 +46808,1233,comradery,1438472842 +46808,1233,submarine,1438472857 +46808,1233,war,1438472854 +46808,1233,WWII,1438472850 +46808,1498,American Golden Age,1438470544 +46808,1498,period piece,1438470534 +46808,1674,Character study,1438469991 +46808,2959,existential,1438472333 +46808,2959,nihilism,1438472321 +46808,3275,action,1438471755 +46808,3275,boston,1438471760 +46808,3275,brothers,1438471736 +46808,3275,crime,1438471738 +46808,3275,east coast,1438471758 +46808,3275,mafia,1438471769 +46808,3275,Mission From God,1438471765 +46808,3275,religion,1438471768 +46808,3275,Russian mafia,1438471780 +46808,3275,serial killer,1438471750 +46808,3275,vigilante,1438471743 +46808,3275,vigilantism,1438471741 +46808,8798,aspirational,1438471382 +46808,8798,hitman,1438471333 +46808,8798,some day,1438471389 +46808,8798,taxi cabs,1438471356 +46808,8798,taxi driver,1438471350 +46808,8798,Taxi hijacked,1438471359 +46808,8950,nihilism,1438473564 +46808,37733,complex characters,1438471482 +46808,37733,Redemption,1438471486 +46808,83369,adventure,1438470375 +46808,83369,Prison Break,1438470404 +46808,83369,Russia,1438470381 +46808,83369,Soviet,1438470384 +46808,83369,Survival,1438470378 +46808,83369,True Story,1438470424 +46808,83369,World War II,1438470393 +46808,83369,WWII,1438470389 +46808,88129,atmospheric,1438471282 +46808,88129,autism,1438471284 +46808,88129,cars,1438471286 +46808,88129,character study,1438471305 +46808,88129,cinematography,1438471280 +46808,88129,crime,1438471288 +46808,88129,gansters,1438471291 +46808,88129,imagery,1438471275 +46808,88129,neo-noir,1438471299 +46808,97921,mental illness,1438472023 +46808,97921,overcoming,1438472037 +46808,112290,adulthood,1438472114 +46808,112290,childhood,1438472111 +46808,112290,dysfunctional family,1438472100 +46808,112290,growing up,1438472119 +46808,112290,realism,1438472130 +46808,112515,atmospheric,1438471241 +46808,112515,Greif,1438471223 +46808,112515,insanity,1438471248 +46808,112515,monster,1438471244 +46808,112515,Mother Son,1438471235 +46808,112515,single parents,1438471256 +46808,115713,AI,1438471125 +46808,115713,artificial intelligence,1438471135 +46808,115713,claustrophobic,1438471154 +46808,115713,Drama,1438471156 +46808,115713,Gender Roles,1438471147 +46808,115713,Imagery,1438471178 +46808,115713,philosophical,1438471141 +46808,115713,Plot Twist,1438471144 +46808,115713,sci-fi,1438471137 +46808,115713,Surreal,1438471159 +46808,122882,Action,1438471073 +46808,122882,Desert,1438471082 +46808,122882,Feminism,1438471075 +46808,122882,post apocalypse,1438471079 +46808,122882,Wanderer,1438471099 +46811,8961,animation,1433357927 +46811,8961,science fiction,1433357921 +46811,8961,superhero,1433357925 +46811,69784,mockumentary,1433357393 +46811,79091,minions,1433358048 +46811,79091,nerds,1433358037 +46811,79091,supervillain,1433358009 +46811,81564,animation,1433357978 +46811,81564,funny,1433357989 +46811,81564,supervillain,1433357964 +46835,2571,alternate reality,1420090453 +46835,2571,cyberpunk,1420090426 +46835,2571,dystopia,1420090424 +46835,2571,hackers,1420090444 +46835,2571,Keanu Reeves,1420090435 +46835,2571,philosophy,1420090437 +46835,2571,post-apocalyptic,1420090432 +46835,2571,surreal,1420090441 +46835,2571,thought-provoking,1420090452 +46835,2571,virtual reality,1420090422 +46835,92210,anime,1420090546 +46835,92210,time travel,1420090545 +46835,104841,sandra bullock,1420090595 +46835,112290,Ethan Hawke,1420090898 +46835,112290,realism,1420090898 +46835,114935,mindfuck,1420090402 +46835,114935,science fiction,1420090404 +46835,114935,time travel,1420090400 +46863,260,classic,1444687969 +46863,260,scifi,1444687964 +46881,2,Robin Williams,1181165720 +46881,6,Al Pacino,1181136597 +46881,6,Robert De Niro,1181136597 +46881,9,Jean-Claude Van Damme,1181320916 +46881,10,James Bond,1181139172 +46881,10,Pierce Brosnan,1181139172 +46881,14,Oliver Stone,1181310150 +46881,16,Martin Scorsese,1181135823 +46881,16,Robert De Niro,1181135823 +46881,18,Quentin Tarantino,1181139253 +46881,18,Robert Rodriguez,1181139253 +46881,21,Gene Hackman,1181170959 +46881,23,Sylvester Stallone,1237214390 +46881,25,Nicolas Cage,1181138434 +46881,32,Brad Pitt,1181263429 +46881,32,Bruce Willis,1181133579 +46881,32,Terry Gilliam,1181133579 +46881,36,Sean Penn,1181166287 +46881,44,Nostalgia Critic,1237390296 +46881,45,Joaquin Phoenix,1181423656 +46881,45,Wayne Knight,1181167633 +46881,47,Brad Pitt,1181259667 +46881,47,David Fincher,1181140214 +46881,47,Morgan Freeman,1181259674 +46881,48,Disney,1194202898 +46881,65,Nostalgia Critic,1268937574 +46881,65,not funny,1268938932 +46881,67,Al Pacino,1235063056 +46881,70,Quentin Tarantino,1181142301 +46881,70,Robert Rodriguez,1181142309 +46881,78,Jack Nicholson,1181324562 +46881,78,Sean Penn,1181324562 +46881,86,Ridley Scott,1181323185 +46881,89,Christopher Walken,1181258001 +46881,89,Johnny Depp,1181257995 +46881,92,John Malkovich,1181316259 +46881,100,Al Pacino,1235063081 +46881,105,Clint Eastwood,1235064356 +46881,110,Mel Gibson,1181325558 +46881,111,Martin Scorsese,1181135795 +46881,111,Robert De Niro,1181135795 +46881,112,Jackie Chan,1181269245 +46881,135,submarine,1181262145 +46881,141,Gene Hackman,1181170913 +46881,141,Robin Williams,1181165583 +46881,150,Ron Howard,1181142747 +46881,150,Tom Hanks,1181142746 +46881,153,Tommy Lee Jones,1181343994 +46881,158,Nostalgia Critic,1256877583 +46881,160,Michael Crichton,1194645539 +46881,160,Nostalgia Critic,1257368353 +46881,161,Gene Hackman,1181170659 +46881,161,submarine,1181141280 +46881,163,Robert Rodriguez,1181165514 +46881,165,Bruce Willis,1181094262 +46881,165,Samuel L. Jackson,1181344331 +46881,168,Sean Connery,1181166171 +46881,172,Keanu Reeves,1181135069 +46881,172,Takeshi Kitano,1181262483 +46881,173,Nostalgia Critic,1259609197 +46881,173,Sylvester Stallone,1181159988 +46881,188,Christopher Walken,1181160775 +46881,191,Gary Oldman,1181315642 +46881,193,Paul Verhoeven,1181164997 +46881,194,Forest Whitaker,1181162494 +46881,204,Steven Seagal,1181166398 +46881,205,John Turturro,1181256340 +46881,207,Keanu Reeves,1181325412 +46881,225,Michael Crichton,1194645549 +46881,229,Roman Polanski,1181165932 +46881,231,not funny,1181269912 +46881,235,Johnny Depp,1181142391 +46881,235,Tim Burton,1181142391 +46881,247,Peter Jackson,1181165123 +46881,249,Gary Oldman,1181162697 +46881,253,Brad Pitt,1181263215 +46881,256,Nostalgia Critic,1263481479 +46881,259,Samuel L. Jackson,1181344956 +46881,266,Brad Pitt,1181263458 +46881,270,Ennio Morricone,1181266539 +46881,280,Gary Oldman,1181315373 +46881,282,Liam Neeson,1181164053 +46881,286,Albert Pyun,1235061960 +46881,288,Oliver Stone,1181138341 +46881,288,Tommy Lee Jones,1181343902 +46881,292,Morgan Freeman,1181260485 +46881,292,Wolfgang Petersen,1181333445 +46881,293,Gary Oldman,1181133870 +46881,293,Jean Reno,1181133870 +46881,296,Bruce Willis,1181160136 +46881,296,Christopher Walken,1181160748 +46881,296,Quentin Tarantino,1181137528 +46881,296,Samuel L. Jackson,1181344214 +46881,300,John Turturro,1181163556 +46881,301,Japan,1181177025 +46881,301,Toshiro Mifune,1181177021 +46881,303,Gene Hackman,1181171189 +46881,303,Russell Crowe,1181323801 +46881,303,Sam Raimi,1181323808 +46881,305,Forest Whitaker,1181162597 +46881,315,Sylvester Stallone,1181141832 +46881,318,Morgan Freeman,1181259748 +46881,324,Russell Crowe,1181323678 +46881,327,Nostalgia Critic,1259609181 +46881,329,Star Trek,1181176545 +46881,337,Johnny Depp,1181142818 +46881,338,Russell Crowe,1181323834 +46881,345,Hugo Weaving,1181162998 +46881,347,Roman Polanski,1181165919 +46881,350,Tommy Lee Jones,1181343769 +46881,353,cult film,1181161379 +46881,354,Tommy Lee Jones,1181343827 +46881,356,Tom Hanks,1181143287 +46881,365,Bernardo Bertolucci,1181325274 +46881,365,Keanu Reeves,1181325274 +46881,367,not funny,1188000034 +46881,368,Mel Gibson,1181325662 +46881,377,Keanu Reeves,1181135079 +46881,379,Jean-Claude Van Damme,1181320766 +46881,382,Jack Nicholson,1181163331 +46881,383,Gene Hackman,1181171407 +46881,389,Gerard Depardieu,1181314159 +46881,393,Jean-Claude Van Damme,1181320841 +46881,393,Nostalgia Critic,1237390275 +46881,412,Martin Scorsese,1235069555 +46881,423,Forest Whitaker,1181162538 +46881,423,Tommy Lee Jones,1181343788 +46881,425,Tommy Lee Jones,1181343810 +46881,426,Forest Whitaker,1181142676 +46881,428,Robert De Niro,1181141405 +46881,431,Al Pacino,1181158443 +46881,431,Brian De Palma,1181267109 +46881,431,Sean Penn,1181158443 +46881,434,Sylvester Stallone,1181141340 +46881,442,Sylvester Stallone,1181141218 +46881,454,Gene Hackman,1181171052 +46881,455,Nostalgia Critic,1276722503 +46881,456,Samuel L. Jackson,1181344598 +46881,457,Tommy Lee Jones,1181343708 +46881,458,Gene Hackman,1181171263 +46881,464,Jean-Claude Van Damme,1181320817 +46881,464,Lance Henriksen,1202942727 +46881,465,Oliver Stone,1181139076 +46881,465,Vietnam War,1181139106 +46881,474,Clint Eastwood,1181138969 +46881,474,John Malkovich,1181138969 +46881,474,Wolfgang Petersen,1181332473 +46881,480,Michael Crichton,1194644196 +46881,480,Wayne Knight,1181138832 +46881,485,Nostalgia Critic,1254931548 +46881,493,Samuel L. Jackson,1181344497 +46881,494,Steven Seagal,1181261468 +46881,497,Keanu Reeves,1181325191 +46881,500,not funny,1187995926 +46881,500,Pierce Brosnan,1181143712 +46881,500,Robin Williams,1181143712 +46881,502,Nostalgia Critic,1256877627 +46881,505,Nostalgia Critic,1244037643 +46881,507,Clint Eastwood,1181161007 +46881,508,Tom Hanks,1181167149 +46881,517,Michael Crichton,1194645564 +46881,521,Gary Oldman,1181315584 +46881,522,Russell Crowe,1181323784 +46881,527,Liam Neeson,1181137384 +46881,527,World War II,1181137399 +46881,539,Tom Hanks,1181159610 +46881,541,Ridley Scott,1181136927 +46881,544,Bruce Willis,1181160418 +46881,546,Nostalgia Critic,1237390240 +46881,555,Christopher Walken,1181257591 +46881,555,Gary Oldman,1181257591 +46881,555,Samuel L. Jackson,1181344461 +46881,565,Guillermo del Toro,1190310548 +46881,567,Pedro Almodovar,1236021889 +46881,592,Jack Nicholson,1181142714 +46881,592,Tim Burton,1181142714 +46881,595,Disney,1182481281 +46881,616,Disney,1182478166 +46881,617,Pedro Almodovar,1236022444 +46881,620,Werner Herzog,1181167897 +46881,628,Edward Norton,1181162264 +46881,634,Nostalgia Critic,1276722410 +46881,648,Brian De Palma,1181266931 +46881,648,Jean Reno,1181142058 +46881,650,Morgan Freeman,1181260535 +46881,673,Nostalgia Critic,1237390256 +46881,680,Jean-Luc Godard,1240956839 +46881,697,Keanu Reeves,1181325425 +46881,704,Jean-Claude Van Damme,1181320835 +46881,704,Roger Moore,1181320835 +46881,714,Johnny Depp,1202942555 +46881,714,Lance Henriksen,1202942555 +46881,718,Jean Reno,1181259023 +46881,725,Samuel L. Jackson,1181345089 +46881,733,Nicolas Cage,1181140289 +46881,733,Sean Connery,1181140289 +46881,736,Michael Crichton,1194644065 +46881,736,Nostalgia Critic,1237389888 +46881,736,Philip Seymour Hoffman,1204247127 +46881,737,Nostalgia Critic,1254931561 +46881,738,Gerard Depardieu,1181314400 +46881,745,not a movie,1325189387 +46881,750,Peter Sellers,1181165196 +46881,760,World War II,1181137245 +46881,765,Francis Ford Coppola,1181165704 +46881,765,Robin Williams,1181165700 +46881,780,Nostalgia Critic,1281228289 +46881,781,Bernardo Bertolucci,1181329031 +46881,784,not funny,1181271027 +46881,798,Sylvester Stallone,1181139571 +46881,799,Peter Jackson,1181165112 +46881,802,Forest Whitaker,1181162474 +46881,805,Samuel L. Jackson,1181344228 +46881,810,Nostalgia Critic,1237389977 +46881,827,John Malkovich,1181316095 +46881,832,Mel Gibson,1181325619 +46881,832,Ron Howard,1181173199 +46881,836,Keanu Reeves,1181259439 +46881,836,Morgan Freeman,1181259444 +46881,858,Al Pacino,1181134631 +46881,858,Francis Ford Coppola,1181134474 +46881,858,Marlon Brando,1181134502 +46881,861,Jackie Chan,1181269111 +46881,880,Marlon Brando,1181164208 +46881,885,Gerard Depardieu,1181314493 +46881,920,American Civil War,1181265524 +46881,923,Orson Welles,1181136880 +46881,990,Jean-Claude Van Damme,1181320960 +46881,996,Bruce Willis,1181160378 +46881,996,Christopher Walken,1181257979 +46881,1003,Gene Hackman,1181171276 +46881,1004,Steven Seagal,1181261528 +46881,1006,Gene Hackman,1181171112 +46881,1027,Morgan Freeman,1181260453 +46881,1029,Disney,1182481265 +46881,1036,Bruce Willis,1181094255 +46881,1038,Gerard Depardieu,1181314459 +46881,1040,Gerard Depardieu,1181314430 +46881,1047,Samuel L. Jackson,1181344612 +46881,1057,Edward Norton,1181314830 +46881,1061,Brad Pitt,1181263381 +46881,1061,Robert De Niro,1181137301 +46881,1071,Russell Crowe,1181323731 +46881,1073,Johnny Depp,1181161396 +46881,1080,Monty Python,1181136427 +46881,1084,Gene Hackman,1181170943 +46881,1089,Quentin Tarantino,1181137418 +46881,1090,Forest Whitaker,1181136300 +46881,1090,Oliver Stone,1181136300 +46881,1090,Vietnam War,1181136331 +46881,1092,Paul Verhoeven,1181165030 +46881,1093,Oliver Stone,1181310314 +46881,1095,Al Pacino,1235062891 +46881,1104,Marlon Brando,1181164147 +46881,1114,Christopher Walken,1181257924 +46881,1120,Edward Norton,1181137774 +46881,1125,Peter Sellers,1181165176 +46881,1126,Nostalgia Critic,1276722485 +46881,1131,Gerard Depardieu,1181314180 +46881,1136,Monty Python,1181136451 +46881,1164,Jean-Luc Godard,1240956906 +46881,1190,Pedro Almodovar,1236022518 +46881,1193,Jack Nicholson,1181163181 +46881,1199,Robert De Niro,1181313211 +46881,1199,Terry Gilliam,1181137623 +46881,1200,Lance Henriksen,1181137038 +46881,1201,American Civil War,1181265769 +46881,1201,Clint Eastwood,1181136647 +46881,1201,Ennio Morricone,1181266107 +46881,1201,Sergio Leone,1181166355 +46881,1201,Spaghetti Western,1181265836 +46881,1206,cult film,1181161286 +46881,1208,Francis Ford Coppola,1181134516 +46881,1208,Marlon Brando,1181134516 +46881,1208,Vietnam War,1181162625 +46881,1209,Sergio Leone,1181158885 +46881,1209,Spaghetti Western,1181266022 +46881,1212,Orson Welles,1181164814 +46881,1213,Martin Scorsese,1181139136 +46881,1213,Robert De Niro,1181139136 +46881,1213,Samuel L. Jackson,1181344441 +46881,1214,Ridley Scott,1181137089 +46881,1215,Sam Raimi,1181323961 +46881,1216,Jean Reno,1181258969 +46881,1217,Akira Kurosawa,1181136245 +46881,1217,Japan,1181136244 +46881,1217,Tatsuya Nakadai,1190303964 +46881,1221,Al Pacino,1181134734 +46881,1221,Francis Ford Coppola,1181134734 +46881,1221,Robert De Niro,1181134734 +46881,1222,Vietnam War,1181141043 +46881,1227,Ennio Morricone,1181266203 +46881,1227,Robert De Niro,1181159520 +46881,1227,Sergio Leone,1181165458 +46881,1228,Martin Scorsese,1181164271 +46881,1231,Lance Henriksen,1202942622 +46881,1233,submarine,1181138790 +46881,1233,Wolfgang Petersen,1181332463 +46881,1233,World War II,1181135992 +46881,1240,Lance Henriksen,1181137212 +46881,1242,American Civil War,1181265481 +46881,1242,Morgan Freeman,1181260153 +46881,1243,Gary Oldman,1181315531 +46881,1245,John Turturro,1181256279 +46881,1246,Robin Williams,1181142444 +46881,1248,Orson Welles,1181164824 +46881,1250,World War II,1181168278 +46881,1252,Jack Nicholson,1181139660 +46881,1252,Roman Polanski,1181139660 +46881,1255,cult film,1181220437 +46881,1255,Peter Jackson,1181165064 +46881,1256,Marx Brothers,1181268489 +46881,1258,Jack Nicholson,1181158977 +46881,1261,Sam Raimi,1181323940 +46881,1262,World War II,1181168157 +46881,1263,Christopher Walken,1181135717 +46881,1263,Robert De Niro,1181135717 +46881,1263,Vietnam War,1181170390 +46881,1266,Clint Eastwood,1181136034 +46881,1266,Gene Hackman,1181170600 +46881,1266,Morgan Freeman,1181259855 +46881,1272,World War II,1181168434 +46881,1274,Japan,1181143943 +46881,1275,Sean Connery,1181166082 +46881,1277,Gerard Depardieu,1181159348 +46881,1281,Charlie Chaplin,1182775124 +46881,1282,Disney,1182481244 +46881,1291,Sean Connery,1181138950 +46881,1299,John Malkovich,1181138482 +46881,1299,Vietnam War,1181138482 +46881,1301,cult film,1181097131 +46881,1303,Michael Caine,1181164468 +46881,1303,Sean Connery,1181164468 +46881,1320,David Fincher,1181161725 +46881,1320,Lance Henriksen,1181161757 +46881,1339,Francis Ford Coppola,1181133748 +46881,1339,Gary Oldman,1181133727 +46881,1339,Keanu Reeves,1181133727 +46881,1343,Martin Scorsese,1181135766 +46881,1343,Robert De Niro,1181135766 +46881,1345,Brian De Palma,1181267161 +46881,1347,Johnny Depp,1181143685 +46881,1349,Klaus Kinski,1181163868 +46881,1351,Jack Nicholson,1181324519 +46881,1356,Star Trek,1181176540 +46881,1359,Nostalgia Critic,1237390117 +46881,1370,Bruce Willis,1181141164 +46881,1371,Star Trek,1181176559 +46881,1372,Star Trek,1181176536 +46881,1373,Star Trek,1181176529 +46881,1374,Star Trek,1181176568 +46881,1375,Star Trek,1181176512 +46881,1376,Star Trek,1181176522 +46881,1377,Christopher Walken,1181141515 +46881,1377,Tim Burton,1181141515 +46881,1382,Steven Seagal,1181261563 +46881,1383,Albert Pyun,1235062076 +46881,1385,Steven Seagal,1181141702 +46881,1389,Nostalgia Critic,1276722521 +46881,1391,Jack Nicholson,1181163301 +46881,1391,Pierce Brosnan,1181260734 +46881,1391,Tim Burton,1181163301 +46881,1394,Nicolas Cage,1181164588 +46881,1417,John Malkovich,1181316195 +46881,1426,Nostalgia Critic,1281228251 +46881,1429,Jackie Chan,1181269360 +46881,1438,Pierce Brosnan,1181341343 +46881,1440,Nicolas Cage,1181345071 +46881,1440,Samuel L. Jackson,1181345071 +46881,1459,Clint Eastwood,1181161148 +46881,1459,Gene Hackman,1181171018 +46881,1464,David Lynch,1181310789 +46881,1465,Don Cheadle,1181162091 +46881,1466,Al Pacino,1181136821 +46881,1466,Johnny Depp,1181136823 +46881,1497,Jean-Claude Van Damme,1181320945 +46881,1498,Joaquin Phoenix,1181423626 +46881,1515,Don Cheadle,1181162156 +46881,1515,Tommy Lee Jones,1181344007 +46881,1525,Nostalgia Critic,1254931519 +46881,1526,Robin Williams,1181163944 +46881,1527,Bruce Willis,1181133772 +46881,1527,Gary Oldman,1181139308 +46881,1549,Russell Crowe,1181323821 +46881,1552,John Malkovich,1181139633 +46881,1552,Nicolas Cage,1181139613 +46881,1562,Nostalgia Critic,1237390632 +46881,1566,Disney,1182479494 +46881,1567,Keanu Reeves,1181325350 +46881,1572,Jean-Luc Godard,1240956852 +46881,1573,Nicolas Cage,1181139317 +46881,1580,Tommy Lee Jones,1181343676 +46881,1586,Ridley Scott,1181323289 +46881,1587,Nostalgia Critic,1264157945 +46881,1589,Robert De Niro,1181139605 +46881,1589,Sylvester Stallone,1181139592 +46881,1597,Mel Gibson,1181325638 +46881,1599,Nostalgia Critic,1254931632 +46881,1603,Guillermo del Toro,1190310260 +46881,1608,Gary Oldman,1181162687 +46881,1608,Wolfgang Petersen,1181333499 +46881,1609,Samuel L. Jackson,1181344984 +46881,1610,Sean Connery,1181159143 +46881,1610,submarine,1181159143 +46881,1611,Keanu Reeves,1181325375 +46881,1617,Russell Crowe,1181323636 +46881,1619,Brad Pitt,1181263529 +46881,1620,Morgan Freeman,1181260470 +46881,1625,David Fincher,1181161653 +46881,1626,Steven Seagal,1181143040 +46881,1627,Joaquin Phoenix,1181423671 +46881,1627,Oliver Stone,1181310394 +46881,1627,Sean Penn,1181310394 +46881,1645,Al Pacino,1181134931 +46881,1645,Keanu Reeves,1181134931 +46881,1655,Nostalgia Critic,1281228224 +46881,1660,Samuel L. Jackson,1181344565 +46881,1672,Francis Ford Coppola,1181134853 +46881,1673,Philip Seymour Hoffman,1204246998 +46881,1676,Paul Verhoeven,1181164863 +46881,1679,Nostalgia Critic,1284349216 +46881,1681,Nostalgia Critic,1237390312 +46881,1687,Bruce Willis,1181160355 +46881,1693,Morgan Freeman,1181260297 +46881,1702,Nostalgia Critic,1270855174 +46881,1702,Robin Williams,1181165751 +46881,1704,Robin Williams,1181140914 +46881,1707,Nostalgia Critic,1276722558 +46881,1722,James Bond,1181140115 +46881,1722,Pierce Brosnan,1181140121 +46881,1729,Quentin Tarantino,1181158487 +46881,1729,Robert De Niro,1181163156 +46881,1729,Samuel L. Jackson,1181344578 +46881,1730,Martin Scorsese,1181140677 +46881,1732,John Turturro,1182460207 +46881,1732,Philip Seymour Hoffman,1204247177 +46881,1752,Morgan Freeman,1181260607 +46881,1779,Michael Crichton,1194644471 +46881,1779,Samuel L. Jackson,1181345129 +46881,1784,Jack Nicholson,1181141572 +46881,1785,Christopher Walken,1181257731 +46881,1791,Gene Hackman,1181171355 +46881,1792,Tommy Lee Jones,1181343560 +46881,1799,Christopher Walken,1181257708 +46881,1801,Gerard Depardieu,1181161552 +46881,1801,John Malkovich,1181142112 +46881,1809,Japan,1181135927 +46881,1809,Takeshi Kitano,1181135937 +46881,1812,M. Night Shyamalan,1181325496 +46881,1831,Gary Oldman,1181315624 +46881,1831,Nostalgia Critic,1266503321 +46881,1832,Russell Crowe,1181323743 +46881,1833,Bruce Willis,1181160394 +46881,1835,Nicolas Cage,1182478398 +46881,1844,Pedro Almodovar,1236022470 +46881,1858,Jackie Chan,1181269386 +46881,1876,Morgan Freeman,1181260012 +46881,1881,Nostalgia Critic,1268938027 +46881,1882,Jean Reno,1181134058 +46881,1882,Nostalgia Critic,1237390000 +46881,1883,Don Cheadle,1181162196 +46881,1883,Ennio Morricone,1181266622 +46881,1884,Johnny Depp,1181137630 +46881,1884,Terry Gilliam,1181137640 +46881,1917,Bruce Willis,1181143169 +46881,1918,Mel Gibson,1181325660 +46881,1927,World War I,1181142762 +46881,1945,Marlon Brando,1181164132 +46881,1949,Orson Welles,1181322605 +46881,1953,Gene Hackman,1181170662 +46881,1954,Sylvester Stallone,1181159157 +46881,1958,Jack Nicholson,1181324491 +46881,1960,Bernardo Bertolucci,1181328841 +46881,1960,China,1181328877 +46881,1962,Morgan Freeman,1181260345 +46881,1968,cult film,1181484074 +46881,2000,Mel Gibson,1181325575 +46881,2001,Mel Gibson,1181325645 +46881,2002,Mel Gibson,1181325650 +46881,2013,Gene Hackman,1181171041 +46881,2018,Disney,1182481289 +46881,2019,Akira Kurosawa,1181143955 +46881,2019,Japan,1181143950 +46881,2019,Toshiro Mifune,1181177099 +46881,2020,John Malkovich,1181315971 +46881,2020,Keanu Reeves,1181315971 +46881,2021,David Lynch,1181159221 +46881,2022,Martin Scorsese,1181164307 +46881,2023,Al Pacino,1181134614 +46881,2023,Francis Ford Coppola,1181134614 +46881,2025,Ennio Morricone,1181266496 +46881,2028,Tom Hanks,1181140230 +46881,2028,World War II,1181167057 +46881,2036,Nostalgia Critic,1254931024 +46881,2058,Samuel L. Jackson,1181344238 +46881,2076,David Lynch,1181161811 +46881,2078,Disney,1194230352 +46881,2084,Christian Bale,1181160628 +46881,2094,Timothy Dalton,1181262708 +46881,2114,Francis Ford Coppola,1181315025 +46881,2118,Christopher Walken,1181257466 +46881,2126,Brian De Palma,1181267246 +46881,2126,Nicolas Cage,1181164616 +46881,2143,Ridley Scott,1181323259 +46881,2153,Sean Connery,1181166200 +46881,2160,Roman Polanski,1181165948 +46881,2161,Wolfgang Petersen,1181333425 +46881,2162,Nostalgia Critic,1269471999 +46881,2166,Joaquin Phoenix,1181423469 +46881,2171,Philip Seymour Hoffman,1204247230 +46881,2174,cult film,1181166896 +46881,2174,Tim Burton,1181166891 +46881,2193,Ron Howard,1181166022 +46881,2194,Brian De Palma,1181267079 +46881,2194,Ennio Morricone,1181266325 +46881,2194,Robert De Niro,1181158386 +46881,2194,Sean Connery,1181158386 +46881,2196,Jean-Claude Van Damme,1181320985 +46881,2231,Edward Norton,1181255464 +46881,2231,John Malkovich,1181255464 +46881,2231,John Turturro,1181255444 +46881,2243,Jack Nicholson,1181324399 +46881,2253,Robin Williams,1181165790 +46881,2268,Jack Nicholson,1181163159 +46881,2273,Jackie Chan,1181269131 +46881,2273,not funny,1181269572 +46881,2278,Jean Reno,1181133976 +46881,2278,Robert De Niro,1181133975 +46881,2280,Joaquin Phoenix,1181423536 +46881,2283,Bernardo Bertolucci,1181329017 +46881,2283,John Malkovich,1181316030 +46881,2291,Johnny Depp,1181162326 +46881,2291,Tim Burton,1181162326 +46881,2297,Robin Williams,1181165637 +46881,2304,Daniel Craig,1181310564 +46881,2313,David Lynch,1181161918 +46881,2318,Philip Seymour Hoffman,1204247205 +46881,2324,World War II,1181312746 +46881,2329,Edward Norton,1181136955 +46881,2337,Christian Bale,1235064101 +46881,2340,Brad Pitt,1181263488 +46881,2348,Gary Oldman,1181315542 +46881,2353,Gene Hackman,1181170680 +46881,2373,Ennio Morricone,1181266730 +46881,2373,Nostalgia Critic,1244037738 +46881,2375,Tom Hanks,1181167224 +46881,2376,Christopher Walken,1181137162 +46881,2376,James Bond,1181137149 +46881,2376,Roger Moore,1181137162 +46881,2391,Sam Raimi,1181323969 +46881,2393,Star Trek,1181176550 +46881,2401,Clint Eastwood,1181160994 +46881,2402,Sylvester Stallone,1181140358 +46881,2403,Sylvester Stallone,1181140374 +46881,2404,Sylvester Stallone,1181141897 +46881,2409,Sylvester Stallone,1181159922 +46881,2410,Sylvester Stallone,1181159930 +46881,2411,Sylvester Stallone,1181159972 +46881,2412,Sylvester Stallone,1181159966 +46881,2417,Jack Nicholson,1181324630 +46881,2424,Tom Hanks,1181167235 +46881,2427,Terrence Malick,1181136091 +46881,2427,World War II,1181136091 +46881,2428,Robert Rodriguez,1181143052 +46881,2431,Philip Seymour Hoffman,1204247288 +46881,2431,Robin Williams,1181165745 +46881,2449,Nostalgia Critic,1237390025 +46881,2450,Nostalgia Critic,1237390145 +46881,2454,Vincent Price,1181167514 +46881,2467,Sean Connery,1181138358 +46881,2469,Francis Ford Coppola,1181315155 +46881,2469,Nicolas Cage,1181315155 +46881,2474,Martin Scorsese,1235069531 +46881,2476,Clint Eastwood,1181161105 +46881,2477,Chuck Norris,1181311656 +46881,2490,Mel Gibson,1181325673 +46881,2502,cult film,1181136364 +46881,2505,Joaquin Phoenix,1181423607 +46881,2505,Nicolas Cage,1181423608 +46881,2519,Vincent Price,1181167526 +46881,2527,Michael Crichton,1194645428 +46881,2542,Jason Statham,1205097793 +46881,2561,Clint Eastwood,1181161220 +46881,2571,Hugo Weaving,1181134996 +46881,2571,Keanu Reeves,1181134907 +46881,2582,Jackie Chan,1181269419 +46881,2605,Sean Connery,1181166158 +46881,2628,Liam Neeson,1181137239 +46881,2628,Samuel L. Jackson,1181345027 +46881,2630,Bernardo Bertolucci,1181328948 +46881,2640,Gene Hackman,1181170671 +46881,2640,Marlon Brando,1181143202 +46881,2641,Gene Hackman,1181171313 +46881,2643,Gene Hackman,1181171460 +46881,2643,Menahem Golan,1199988900 +46881,2670,submarine,1181261986 +46881,2670,World War II,1181261986 +46881,2686,Samuel L. Jackson,1181344314 +46881,2687,Disney,1194230868 +46881,2694,not funny,1182475051 +46881,2706,not funny,1181092488 +46881,2719,Liam Neeson,1181164063 +46881,2742,Gerard Depardieu,1181314517 +46881,2745,Ennio Morricone,1181266384 +46881,2748,Menahem Golan,1235060864 +46881,2762,Bruce Willis,1181133671 +46881,2762,M. Night Shyamalan,1181133671 +46881,2763,Pierce Brosnan,1181165266 +46881,2769,Joaquin Phoenix,1181423708 +46881,2780,Vincent Price,1181167539 +46881,2782,Vincent Price,1181262841 +46881,2783,Vincent Price,1181262862 +46881,2785,Vincent Price,1181167553 +46881,2797,Tom Hanks,1181167105 +46881,2807,Jean-Claude Van Damme,1181320642 +46881,2808,Jean-Claude Van Damme,1181320823 +46881,2822,Sean Connery,1181166180 +46881,2826,Michael Crichton,1194644441 +46881,2837,Hugo Weaving,1181163024 +46881,2848,Orson Welles,1181322543 +46881,2849,John Malkovich,1181316016 +46881,2861,Sam Raimi,1181324090 +46881,2872,Liam Neeson,1181316715 +46881,2879,Jackie Chan,1181269399 +46881,2880,Jackie Chan,1181269404 +46881,2881,Tommy Lee Jones,1181343851 +46881,2882,Robin Williams,1181165760 +46881,2889,Russell Crowe,1181323707 +46881,2905,Akira Kurosawa,1181136203 +46881,2905,Japan,1181094766 +46881,2905,Tatsuya Nakadai,1190304079 +46881,2905,Toshiro Mifune,1181177084 +46881,2916,Paul Verhoeven,1181159206 +46881,2921,Clint Eastwood,1181161054 +46881,2922,Clint Eastwood,1181160988 +46881,2924,Jackie Chan,1181269057 +46881,2925,Bernardo Bertolucci,1181328964 +46881,2932,Ennio Morricone,1181266304 +46881,2932,Terrence Malick,1181166712 +46881,2944,World War II,1181139521 +46881,2947,James Bond,1181139151 +46881,2947,Sean Connery,1181139151 +46881,2948,James Bond,1181139236 +46881,2948,Sean Connery,1181139236 +46881,2949,James Bond,1181139510 +46881,2949,Sean Connery,1181139515 +46881,2951,Clint Eastwood,1181141082 +46881,2951,Ennio Morricone,1181266132 +46881,2951,Sergio Leone,1181141082 +46881,2951,Spaghetti Western,1181265898 +46881,2952,Philip Seymour Hoffman,1204247245 +46881,2952,Samuel L. Jackson,1181344660 +46881,2956,Ridley Scott,1181323328 +46881,2959,Brad Pitt,1181263235 +46881,2959,David Fincher,1181136708 +46881,2959,Edward Norton,1181136708 +46881,2961,Bruce Willis,1181160409 +46881,2966,David Lynch,1181161820 +46881,2968,Sean Connery,1181137690 +46881,2968,Terry Gilliam,1181137654 +46881,2970,Klaus Kinski,1181163734 +46881,2970,Werner Herzog,1181163734 +46881,2976,Martin Scorsese,1181135844 +46881,2976,Nicolas Cage,1181135844 +46881,2985,Paul Verhoeven,1181164855 +46881,2989,James Bond,1181163363 +46881,2989,Roger Moore,1181163391 +46881,2990,James Bond,1181140588 +46881,2990,Timothy Dalton,1181140601 +46881,2991,James Bond,1181136518 +46881,2991,Roger Moore,1181136518 +46881,2993,James Bond,1181137190 +46881,2993,Sean Connery,1181137190 +46881,2997,John Malkovich,1181158673 +46881,3000,Hayao Miyazaki,1181136279 +46881,3000,Japan,1181162893 +46881,3000,Studio Ghibli,1181136279 +46881,3002,Werner Herzog,1181163785 +46881,3003,World War II,1181168970 +46881,3006,Al Pacino,1181174180 +46881,3006,Russell Crowe,1181323618 +46881,3015,Michael Crichton,1194645452 +46881,3029,Sylvester Stallone,1237214433 +46881,3030,Akira Kurosawa,1181136007 +46881,3030,Japan,1181136007 +46881,3030,Toshiro Mifune,1181177138 +46881,3050,Forest Whitaker,1181162551 +46881,3053,John Malkovich,1181316160 +46881,3062,John Wayne,1181316372 +46881,3062,Sean Connery,1181166062 +46881,3062,World War II,1181168168 +46881,3066,World War II,1181137172 +46881,3067,Pedro Almodovar,1236022497 +46881,3072,Nicolas Cage,1181164574 +46881,3075,Roman Polanski,1181165877 +46881,3081,Christopher Walken,1181136143 +46881,3081,Johnny Depp,1181136143 +46881,3081,Tim Burton,1181136157 +46881,3082,James Bond,1181141667 +46881,3082,Pierce Brosnan,1181141667 +46881,3083,Pedro Almodovar,1236022343 +46881,3091,Akira Kurosawa,1181143924 +46881,3091,Japan,1181143931 +46881,3091,Tatsuya Nakadai,1190304102 +46881,3092,Toshiro Mifune,1222799877 +46881,3105,Robert De Niro,1181136944 +46881,3105,Robin Williams,1181136944 +46881,3107,Robert De Niro,1181337369 +46881,3107,Ron Howard,1181337369 +46881,3108,Robin Williams,1181165610 +46881,3108,Terry Gilliam,1181165599 +46881,3113,Nostalgia Critic,1265218927 +46881,3115,Philip Seymour Hoffman,1204247252 +46881,3130,Brian De Palma,1181267319 +46881,3130,Bruce Willis,1181260571 +46881,3130,Morgan Freeman,1181260571 +46881,3130,Tom Hanks,1181260571 +46881,3141,Jack Nicholson,1181324614 +46881,3143,Toshiro Mifune,1181176946 +46881,3147,Tom Hanks,1181136638 +46881,3150,Colin Farrell,1181483779 +46881,3156,Robin Williams,1181165652 +46881,3158,China,1181139540 +46881,3159,Disney,1194230841 +46881,3160,Philip Seymour Hoffman,1204247024 +46881,3166,Timothy Dalton,1181262754 +46881,3167,Jack Nicholson,1181324545 +46881,3173,Al Pacino,1181164778 +46881,3173,Oliver Stone,1181164778 +46881,3176,Philip Seymour Hoffman,1204246895 +46881,3190,Francis Ford Coppola,1181315211 +46881,3196,World War II,1181168487 +46881,3200,Jack Nicholson,1181324427 +46881,3201,Jack Nicholson,1181163225 +46881,3202,Werner Herzog,1181167808 +46881,3208,Samuel L. Jackson,1181345113 +46881,3210,Sean Penn,1181261283 +46881,3252,Al Pacino,1181135504 +46881,3254,Christopher Walken,1181142843 +46881,3255,Tom Hanks,1181167129 +46881,3258,Bruce Willis,1181160249 +46881,3262,David Lynch,1181310761 +46881,3267,Robert Rodriguez,1181261049 +46881,3268,Sylvester Stallone,1181320558 +46881,3271,John Malkovich,1181315877 +46881,3301,Bruce Willis,1181160211 +46881,3307,Charlie Chaplin,1182775040 +46881,3309,Charlie Chaplin,1182775279 +46881,3310,Charlie Chaplin,1182775155 +46881,3328,Forest Whitaker,1181093301 +46881,3337,Orson Welles,1181322727 +46881,3354,Brian De Palma,1181267361 +46881,3354,Don Cheadle,1181162147 +46881,3355,Johnny Depp,1181165996 +46881,3355,Roman Polanski,1181165996 +46881,3362,Al Pacino,1181337478 +46881,3365,John Wayne,1181316394 +46881,3372,World War II,1181168709 +46881,3378,John Malkovich,1181315936 +46881,3385,Tom Hanks,1181167246 +46881,3386,Gary Oldman,1181310293 +46881,3386,Oliver Stone,1181310293 +46881,3386,Tommy Lee Jones,1181343670 +46881,3399,Nostalgia Critic,1237390450 +46881,3418,Brad Pitt,1181263405 +46881,3418,Ridley Scott,1181323215 +46881,3420,Al Pacino,1182206455 +46881,3426,Samuel L. Jackson,1181344943 +46881,3427,Clint Eastwood,1235064374 +46881,3431,Menahem Golan,1199989510 +46881,3432,Menahem Golan,1199989525 +46881,3433,Menahem Golan,1199989504 +46881,3434,Menahem Golan,1235060923 +46881,3437,Nostalgia Critic,1254930991 +46881,3438,Nostalgia Critic,1237390759 +46881,3439,Nostalgia Critic,1237390766 +46881,3440,Nostalgia Critic,1237390771 +46881,3444,Jean-Claude Van Damme,1181320899 +46881,3444,Menahem Golan,1199990119 +46881,3445,Tommy Lee Jones,1181343970 +46881,3448,Forest Whitaker,1181158556 +46881,3448,Robin Williams,1181158556 +46881,3448,Vietnam War,1181167269 +46881,3462,Charlie Chaplin,1182775078 +46881,3470,Akira Kurosawa,1181158722 +46881,3471,Lance Henriksen,1202942527 +46881,3489,Nostalgia Critic,1281228266 +46881,3489,Robin Williams,1181165692 +46881,3494,John Wayne,1181316341 +46881,3505,Gene Hackman,1181170826 +46881,3508,Clint Eastwood,1181157050 +46881,3513,Samuel L. Jackson,1181343749 +46881,3513,Tommy Lee Jones,1181343749 +46881,3519,World War II,1181169013 +46881,3526,Keanu Reeves,1181325220 +46881,3526,Ron Howard,1181325220 +46881,3529,Jack Nicholson,1181163244 +46881,3535,Christian Bale,1181133181 +46881,3536,Edward Norton,1181162340 +46881,3547,Gary Oldman,1181315517 +46881,3549,Marlon Brando,1181164158 +46881,3555,submarine,1181168995 +46881,3555,World War II,1181168980 +46881,3557,John Malkovich,1181316070 +46881,3557,Lance Henriksen,1181316070 +46881,3559,Charlie Chaplin,1182775315 +46881,3578,Joaquin Phoenix,1181423227 +46881,3578,Ridley Scott,1181142280 +46881,3578,Russell Crowe,1181323770 +46881,3588,Jack Nicholson,1181324575 +46881,3590,Sylvester Stallone,1237214478 +46881,3593,Forest Whitaker,1181162591 +46881,3593,Nostalgia Critic,1265218746 +46881,3624,Jackie Chan,1181269254 +46881,3624,not funny,1181269493 +46881,3629,Charlie Chaplin,1182775106 +46881,3632,Charlie Chaplin,1182775435 +46881,3633,George Lazenby,1181140487 +46881,3633,James Bond,1181140477 +46881,3635,James Bond,1181140187 +46881,3635,Roger Moore,1181140198 +46881,3638,James Bond,1181140518 +46881,3638,Roger Moore,1181140526 +46881,3639,James Bond,1181140557 +46881,3639,Roger Moore,1181140570 +46881,3640,Charlie Chaplin,1182775449 +46881,3643,World War II,1181169030 +46881,3654,World War II,1181168172 +46881,3676,David Lynch,1181161858 +46881,3681,Clint Eastwood,1181139281 +46881,3681,Ennio Morricone,1181266138 +46881,3681,Klaus Kinski,1235070517 +46881,3681,Sergio Leone,1181139281 +46881,3681,Spaghetti Western,1181265903 +46881,3682,Clint Eastwood,1181144275 +46881,3682,Dirty Harry,1181144275 +46881,3685,Jack Nicholson,1181324444 +46881,3702,Mel Gibson,1181325581 +46881,3703,Mel Gibson,1181325588 +46881,3704,Mel Gibson,1181325681 +46881,3705,Mel Gibson,1181325689 +46881,3717,Nicolas Cage,1181140944 +46881,3723,Ennio Morricone,1181266659 +46881,3727,Lance Henriksen,1202942575 +46881,3730,Francis Ford Coppola,1181170769 +46881,3730,Gene Hackman,1181170769 +46881,3732,Brian De Palma,1181266916 +46881,3735,Al Pacino,1181135549 +46881,3741,Terrence Malick,1181166702 +46881,3744,Christian Bale,1181133065 +46881,3744,Samuel L. Jackson,1181345013 +46881,3749,John Malkovich,1181316182 +46881,3753,Mel Gibson,1181325665 +46881,3755,Wolfgang Petersen,1181333463 +46881,3758,Christopher Walken,1181257943 +46881,3760,George Lazenby,1181315699 +46881,3766,Chuck Norris,1181311675 +46881,3766,Menahem Golan,1199989261 +46881,3767,Chuck Norris,1181311781 +46881,3767,Menahem Golan,1199989270 +46881,3768,Chuck Norris,1181311578 +46881,3768,Menahem Golan,1199989280 +46881,3785,not funny,1181164730 +46881,3810,Samuel L. Jackson,1181345049 +46881,3826,Paul Verhoeven,1181164977 +46881,3827,Clint Eastwood,1181141849 +46881,3827,Tommy Lee Jones,1181343925 +46881,3836,Clint Eastwood,1235064279 +46881,3860,Christopher Walken,1181258018 +46881,3861,Gene Hackman,1181171172 +46881,3861,Keanu Reeves,1181142921 +46881,3891,Jason Statham,1205102558 +46881,3893,Morgan Freeman,1181260109 +46881,3895,Keanu Reeves,1181325454 +46881,3897,Philip Seymour Hoffman,1204246963 +46881,3906,Gene Hackman,1181171007 +46881,3906,Morgan Freeman,1181260394 +46881,3937,Michael Crichton,1194645509 +46881,3946,Michael Caine,1181141000 +46881,3946,Sylvester Stallone,1181140985 +46881,3947,Michael Caine,1181141014 +46881,3948,not funny,1181143268 +46881,3948,Robert De Niro,1181143268 +46881,3950,Colin Farrell,1181482788 +46881,3952,Gary Oldman,1181315387 +46881,3972,Jackie Chan,1181269076 +46881,3980,Robert De Niro,1182479571 +46881,3984,James Bond,1181136837 +46881,3984,Sean Connery,1181136849 +46881,3985,Michael Caine,1235069942 +46881,3985,World War II,1235069997 +46881,3988,Ron Howard,1181166035 +46881,3993,Joaquin Phoenix,1181422688 +46881,3993,Michael Caine,1181422636 +46881,3994,Bruce Willis,1181160122 +46881,3994,M. Night Shyamalan,1181135167 +46881,3994,Samuel L. Jackson,1181344271 +46881,3996,China,1181160521 +46881,3998,Russell Crowe,1181323757 +46881,4001,Chuck Norris,1181311619 +46881,4005,James Bond,1181138407 +46881,4005,Timothy Dalton,1181138415 +46881,4007,Oliver Stone,1181137140 +46881,4008,Oliver Stone,1181167361 +46881,4008,Vietnam War,1181167361 +46881,4009,Oliver Stone,1181310353 +46881,4011,Brad Pitt,1181263002 +46881,4011,Jason Statham,1205097780 +46881,4014,Johnny Depp,1182471997 +46881,4018,Mel Gibson,1181325677 +46881,4019,Sean Connery,1181166100 +46881,4020,Keanu Reeves,1181325107 +46881,4020,Sam Raimi,1181324035 +46881,4022,Tom Hanks,1181142607 +46881,4023,Don Cheadle,1181162184 +46881,4023,Nicolas Cage,1181162181 +46881,4027,John Turturro,1181163529 +46881,4029,Philip Seymour Hoffman,1204247041 +46881,4036,John Malkovich,1181315915 +46881,4042,John Wayne,1181316465 +46881,4043,Christopher Walken,1181257690 +46881,4043,Sean Penn,1181257690 +46881,4044,Chuck Norris,1181311735 +46881,4047,American Civil War,1181265432 +46881,4088,Tommy Lee Jones,1181343939 +46881,4102,not a movie,1316729331 +46881,4103,Christian Bale,1181160579 +46881,4103,John Malkovich,1181315987 +46881,4105,Sam Raimi,1181323951 +46881,4111,Francis Ford Coppola,1181134672 +46881,4113,John Malkovich,1181316001 +46881,4122,Jack Nicholson,1181324473 +46881,4131,John Malkovich,1181316237 +46881,4133,Menahem Golan,1199988866 +46881,4133,Nostalgia Critic,1237390221 +46881,4148,Gary Oldman,1181143025 +46881,4148,Ridley Scott,1181143013 +46881,4152,Gerard Depardieu,1181314064 +46881,4155,Keanu Reeves,1181325441 +46881,4161,Brad Pitt,1181263512 +46881,4164,Samuel L. Jackson,1181344868 +46881,4176,Akira Kurosawa,1181483351 +46881,4176,Japan,1181483351 +46881,4195,Vincent Price,1181139885 +46881,4199,Jean-Claude Van Damme,1181320929 +46881,4200,Jean-Claude Van Damme,1181320937 +46881,4218,Keanu Reeves,1181325247 +46881,4223,World War II,1181168244 +46881,4224,Steven Seagal,1181142362 +46881,4232,Robert Rodriguez,1181165535 +46881,4235,Alejandro Gonzalez Inarritu,1182473938 +46881,4238,Morgan Freeman,1181260408 +46881,4239,Johnny Depp,1181175236 +46881,4259,John Turturro,1181140585 +46881,4262,Al Pacino,1181135495 +46881,4262,Brian De Palma,1181267069 +46881,4265,Sylvester Stallone,1181143318 +46881,4282,Federico Fellini,1266433795 +46881,4310,World War II,1181169053 +46881,4318,Gene Hackman,1181171201 +46881,4326,Gene Hackman,1181170723 +46881,4338,World War II,1181168977 +46881,4344,Don Cheadle,1181162169 +46881,4351,Keanu Reeves,1181259344 +46881,4353,Gene Hackman,1181171379 +46881,4353,Vietnam War,1181171379 +46881,4377,Hugo Weaving,1181163038 +46881,4381,Gerard Depardieu,1181314095 +46881,4383,Jean Reno,1181133994 +46881,4388,not funny,1181164737 +46881,4393,Gene Hackman,1181170864 +46881,4397,Jackie Chan,1181269520 +46881,4403,Vincent Price,1181167572 +46881,4406,John Wayne,1181316378 +46881,4407,Oliver Stone,1181159556 +46881,4411,John Wayne,1181316331 +46881,4436,Brian De Palma,1181267185 +46881,4443,Sean Connery,1181166111 +46881,4444,Chuck Norris,1181311538 +46881,4448,Edward Norton,1181137365 +46881,4448,Marlon Brando,1181137365 +46881,4448,Robert De Niro,1181137365 +46881,4466,Steven Seagal,1181261451 +46881,4467,Terry Gilliam,1181137616 +46881,4473,Gene Hackman,1181170879 +46881,4473,Vietnam War,1181170899 +46881,4479,Forest Whitaker,1181162459 +46881,4484,Gerard Depardieu,1181314079 +46881,4486,Morgan Freeman,1181260503 +46881,4488,Don Cheadle,1181162060 +46881,4488,Sean Penn,1181162060 +46881,4491,Gary Oldman,1181315594 +46881,4498,Clint Eastwood,1181144673 +46881,4498,Dirty Harry,1181144673 +46881,4502,Nostalgia Critic,1263481463 +46881,4506,Ennio Morricone,1181266701 +46881,4506,Roman Polanski,1181165910 +46881,4530,Keanu Reeves,1181325390 +46881,4544,Nostalgia Critic,1244037840 +46881,4545,Nostalgia Critic,1244037833 +46881,4547,Tommy Lee Jones,1181343724 +46881,4556,Gary Oldman,1181315607 +46881,4557,Francis Ford Coppola,1181134697 +46881,4562,Michael Caine,1235070133 +46881,4565,Menahem Golan,1199988811 +46881,4566,Menahem Golan,1199988803 +46881,4571,Keanu Reeves,1181259478 +46881,4572,Ridley Scott,1181323303 +46881,4577,Brian De Palma,1181267123 +46881,4577,Sean Penn,1181167290 +46881,4577,Vietnam War,1181167290 +46881,4580,Albert Pyun,1235062060 +46881,4580,Jean-Claude Van Damme,1181320826 +46881,4580,Menahem Golan,1199989394 +46881,4611,Lance Henriksen,1181260626 +46881,4611,Morgan Freeman,1181260626 +46881,4614,Jean-Claude Van Damme,1181320820 +46881,4616,Morgan Freeman,1181260193 +46881,4620,Sylvester Stallone,1237214513 +46881,4624,Peter Jackson,1181165081 +46881,4628,Francis Ford Coppola,1181315106 +46881,4632,Gene Hackman,1181171218 +46881,4632,Tommy Lee Jones,1181343953 +46881,4640,Japan,1181166624 +46881,4640,Takeshi Kitano,1181166620 +46881,4661,Al Pacino,1235062949 +46881,4673,Sylvester Stallone,1237215953 +46881,4677,Tom Hanks,1181167227 +46881,4683,Nostalgia Critic,1237390591 +46881,4690,Francis Ford Coppola,1181315093 +46881,4701,Jackie Chan,1181269434 +46881,4701,not funny,1181269460 +46881,4704,John Wayne,1181316324 +46881,4710,John Wayne,1181316302 +46881,4714,Clint Eastwood,1181161168 +46881,4717,Jackie Chan,1181269320 +46881,4718,not funny,1181092500 +46881,4721,Colin Farrell,1181483688 +46881,4727,Christian Bale,1181133094 +46881,4727,Nicolas Cage,1181133116 +46881,4735,Jason Statham,1205099771 +46881,4748,Nostalgia Critic,1237390549 +46881,4754,cult film,1181139966 +46881,4771,Keanu Reeves,1181325320 +46881,4785,Klaus Kinski,1181163748 +46881,4789,Brian De Palma,1181267347 +46881,4803,Clint Eastwood,1181161128 +46881,4812,Joaquin Phoenix,1181423692 +46881,4816,not funny,1182778305 +46881,4835,Tommy Lee Jones,1181343695 +46881,4837,Al Pacino,1235063075 +46881,4840,Gerard Depardieu,1181314237 +46881,4842,Christopher Walken,1181257657 +46881,4844,Bruce Willis,1181160156 +46881,4846,wuxia,1181268075 +46881,4848,David Lynch,1181161879 +46881,4855,Clint Eastwood,1181141131 +46881,4855,Dirty Harry,1181141143 +46881,4865,Alan Moore,1181136661 +46881,4865,Johnny Depp,1181136681 +46881,4887,Jason Statham,1205102545 +46881,4889,Gene Hackman,1181170749 +46881,4901,Brad Pitt,1181263265 +46881,4902,Guillermo del Toro,1190310096 +46881,4908,Jean-Luc Godard,1240956975 +46881,4911,Terry Gilliam,1181138849 +46881,4914,Jean-Luc Godard,1240956884 +46881,4916,World War II,1181168614 +46881,4923,World War II,1181168801 +46881,4930,Michael Caine,1235069924 +46881,4932,Brian De Palma,1181267111 +46881,4941,Timothy Dalton,1181262720 +46881,4945,Clint Eastwood,1181144727 +46881,4945,Dirty Harry,1181144731 +46881,4946,Chuck Norris,1181311645 +46881,4947,Clint Eastwood,1235064346 +46881,4949,Chuck Norris,1181311775 +46881,4949,Menahem Golan,1235060642 +46881,4950,Chuck Norris,1181311607 +46881,4955,John Turturro,1181256473 +46881,4957,Clint Eastwood,1181144707 +46881,4957,Dirty Harry,1181144707 +46881,4958,Gene Hackman,1181171093 +46881,4963,Brad Pitt,1181263042 +46881,4979,Gene Hackman,1181170981 +46881,4980,Keanu Reeves,1181325292 +46881,4986,Chuck Norris,1181311723 +46881,4993,Hugo Weaving,1181135238 +46881,4993,Peter Jackson,1181135262 +46881,4995,Ron Howard,1181139714 +46881,4995,Russell Crowe,1194651642 +46881,5001,World War II,1181168919 +46881,5010,Ridley Scott,1181143136 +46881,5014,Sean Penn,1181166290 +46881,5035,Timothy Dalton,1181262735 +46881,5040,Nostalgia Critic,1264157951 +46881,5054,Christopher Walken,1181257751 +46881,5056,Werner Herzog,1181167856 +46881,5058,Werner Herzog,1181134231 +46881,5087,Gerard Depardieu,1181314193 +46881,5088,Gerard Depardieu,1181314224 +46881,5095,Christopher Walken,1181257637 +46881,5107,Bruce Willis,1181160275 +46881,5107,Colin Farrell,1181160271 +46881,5107,World War II,1181160333 +46881,5121,Werner Herzog,1181167831 +46881,5130,Forest Whitaker,1181162517 +46881,5152,Vietnam War,1181170538 +46881,5159,Nostalgia Critic,1237390080 +46881,5164,Nostalgia Critic,1276722536 +46881,5177,Orson Welles,1181322534 +46881,5184,Christopher Walken,1181258074 +46881,5200,Orson Welles,1181322674 +46881,5202,Gerard Depardieu,1181314262 +46881,5203,Vincent Price,1181262829 +46881,5212,Chuck Norris,1181311711 +46881,5216,Pedro Almodovar,1236022512 +46881,5220,Robert De Niro,1181323055 +46881,5243,Jackie Chan,1181269207 +46881,5254,Guillermo del Toro,1190310129 +46881,5265,Edward Norton,1181257311 +46881,5265,Robin Williams,1181165661 +46881,5266,David Fincher,1181141968 +46881,5266,Forest Whitaker,1181132273 +46881,5282,Morgan Freeman,1181260521 +46881,5291,Akira Kurosawa,1181136237 +46881,5291,Japan,1181136237 +46881,5291,Toshiro Mifune,1181176828 +46881,5293,Samuel L. Jackson,1181344822 +46881,5301,Gene Hackman,1181170927 +46881,5303,Tom Hanks,1181167190 +46881,5338,Gene Hackman,1181171419 +46881,5339,Liam Neeson,1181316763 +46881,5349,Sam Raimi,1181323856 +46881,5382,Clint Eastwood,1181161229 +46881,5388,Al Pacino,1181135513 +46881,5388,Robin Williams,1181138904 +46881,5390,Gerard Depardieu,1181314356 +46881,5400,Morgan Freeman,1181259897 +46881,5420,Nicolas Cage,1181139947 +46881,5420,World War II,1181164644 +46881,5431,Jack Nicholson,1181163262 +46881,5432,Chuck Norris,1181311759 +46881,5440,John Wayne,1181316402 +46881,5445,Colin Farrell,1181483607 +46881,5455,John Malkovich,1181316171 +46881,5459,Tommy Lee Jones,1181343976 +46881,5463,Christian Bale,1181133218 +46881,5464,Tom Hanks,1181140305 +46881,5479,Liam Neeson,1181138588 +46881,5479,submarine,1181138559 +46881,5489,Klaus Kinski,1181134176 +46881,5489,Werner Herzog,1181134176 +46881,5498,Akira Kurosawa,1181136224 +46881,5498,Japan,1181136224 +46881,5498,Toshiro Mifune,1181176817 +46881,5502,Joaquin Phoenix,1181325512 +46881,5502,M. Night Shyamalan,1181135126 +46881,5502,Mel Gibson,1181325520 +46881,5504,Robert Rodriguez,1181261074 +46881,5506,Clint Eastwood,1181161193 +46881,5507,Samuel L. Jackson,1181345159 +46881,5528,Robin Williams,1181165575 +46881,5538,Nostalgia Critic,1276722589 +46881,5574,Jason Statham,1205097748 +46881,5585,Nostalgia Critic,1288661682 +46881,5586,Gene Hackman,1181171249 +46881,5597,Nostalgia Critic,1254930904 +46881,5598,Nostalgia Critic,1237390166 +46881,5602,Peter Sellers,1181165216 +46881,5615,Werner Herzog,1181134398 +46881,5618,Hayao Miyazaki,1181159008 +46881,5618,Japan,1181159011 +46881,5618,Studio Ghibli,1181159008 +46881,5621,Jackie Chan,1181269560 +46881,5628,Jean Reno,1181258954 +46881,5630,Edward Norton,1181162354 +46881,5630,Philip Seymour Hoffman,1204247058 +46881,5653,Spaghetti Western,1181311359 +46881,5665,John Malkovich,1181316110 +46881,5673,not funny,1182473194 +46881,5673,Philip Seymour Hoffman,1204247033 +46881,5678,Samuel L. Jackson,1181344885 +46881,5690,Japan,1181166482 +46881,5690,Studio Ghibli,1181166441 +46881,5690,World War II,1192197740 +46881,5708,Gene Hackman,1181171065 +46881,5712,Brian De Palma,1181267133 +46881,5716,Orson Welles,1181322714 +46881,5722,Gerard Depardieu,1181314204 +46881,5730,Menahem Golan,1199988491 +46881,5741,Gerard Depardieu,1181314288 +46881,5747,World War I,1181167959 +46881,5754,Michael Caine,1181310413 +46881,5754,Oliver Stone,1181310413 +46881,5764,Michael Crichton,1194645488 +46881,5777,Christopher Walken,1181258038 +46881,5791,Edward Norton,1181314771 +46881,5796,James Bond,1181142625 +46881,5796,Orson Welles,1181322704 +46881,5796,Peter Sellers,1181142643 +46881,5809,Brian De Palma,1181266954 +46881,5815,Steven Seagal,1181261545 +46881,5842,Gerard Depardieu,1181314442 +46881,5872,James Bond,1181141202 +46881,5872,Pierce Brosnan,1181141202 +46881,5876,Michael Caine,1182479289 +46881,5878,Pedro Almodovar,1236022477 +46881,5898,Albert Pyun,1235062044 +46881,5899,Michael Caine,1199988390 +46881,5902,Nicolas Cage,1181159275 +46881,5903,Christian Bale,1181142366 +46881,5915,Sylvester Stallone,1237214357 +46881,5919,Klaus Kinski,1181163935 +46881,5928,Jack Nicholson,1181324532 +46881,5932,Werner Herzog,1182773635 +46881,5934,Toshiro Mifune,1181176887 +46881,5937,Gerard Depardieu,1181314148 +46881,5944,Star Trek,1181176554 +46881,5945,Jack Nicholson,1181141628 +46881,5952,Hugo Weaving,1181135245 +46881,5952,Peter Jackson,1181135270 +46881,5954,Edward Norton,1181159246 +46881,5954,Philip Seymour Hoffman,1204246986 +46881,5956,Liam Neeson,1181138740 +46881,5956,Martin Scorsese,1181138740 +46881,5964,Gene Hackman,1181171296 +46881,5965,Ridley Scott,1181165399 +46881,5971,Hayao Miyazaki,1181162822 +46881,5971,Japan,1181162906 +46881,5971,Studio Ghibli,1181162808 +46881,5989,Christopher Walken,1181167009 +46881,5989,Tom Hanks,1181167009 +46881,5995,Roman Polanski,1181158907 +46881,5995,World War II,1181168449 +46881,6001,Martin Scorsese,1181140746 +46881,6001,Robert De Niro,1181140746 +46881,6002,Philip Seymour Hoffman,1204247259 +46881,6023,Jean-Luc Godard,1240884802 +46881,6024,Russell Crowe,1181323719 +46881,6038,Keanu Reeves,1181325401 +46881,6059,Al Pacino,1181140338 +46881,6059,Colin Farrell,1181140336 +46881,6067,Colin Farrell,1181483820 +46881,6078,Clint Eastwood,1181161207 +46881,6080,Chuck Norris,1181311746 +46881,6091,Pedro Almodovar,1236022505 +46881,6104,Monty Python,1181136437 +46881,6109,Francis Ford Coppola,1181163906 +46881,6125,not a movie,1302322882 +46881,6143,Peter Sellers,1181165229 +46881,6145,Klaus Kinski,1181163960 +46881,6156,Jackie Chan,1181269164 +46881,6156,not funny,1181270325 +46881,6157,Colin Farrell,1181142479 +46881,6175,Menahem Golan,1199990966 +46881,6179,Liam Neeson,1181316677 +46881,6181,American Civil War,1181265619 +46881,6213,Bruce Willis,1181160425 +46881,6215,Christian Bale,1235064066 +46881,6216,World War II,1181168402 +46881,6219,Tommy Lee Jones,1181343982 +46881,6235,World War II,1181168319 +46881,6238,Gerard Depardieu,1181314384 +46881,6250,Morgan Freeman,1181260589 +46881,6263,Samuel L. Jackson,1181344841 +46881,6270,Akira Kurosawa,1181143894 +46881,6270,Japan,1181143937 +46881,6281,Colin Farrell,1181137757 +46881,6281,Forest Whitaker,1181132387 +46881,6285,Morgan Freeman,1181260362 +46881,6287,Jack Nicholson,1181139803 +46881,6287,John Turturro,1181139821 +46881,6303,Michael Crichton,1194645379 +46881,6319,Gerard Depardieu,1181314476 +46881,6326,Gerard Depardieu,1181314369 +46881,6329,Don Cheadle,1181162118 +46881,6337,Philip Seymour Hoffman,1204246862 +46881,6350,Hayao Miyazaki,1181162753 +46881,6350,Japan,1181162920 +46881,6350,Studio Ghibli,1181162751 +46881,6365,Hugo Weaving,1181134990 +46881,6365,Keanu Reeves,1181134941 +46881,6373,Morgan Freeman,1181259928 +46881,6378,Edward Norton,1181140781 +46881,6378,Jason Statham,1205099712 +46881,6394,John Wayne,1181316314 +46881,6396,Francis Ford Coppola,1181315121 +46881,6422,American Civil War,1181265596 +46881,6424,Sylvester Stallone,1237214517 +46881,6428,Clint Eastwood,1181316447 +46881,6428,Ennio Morricone,1181332393 +46881,6435,World War II,1181169043 +46881,6440,John Turturro,1235999367 +46881,6441,Michael Caine,1181168572 +46881,6441,World War II,1181168574 +46881,6452,Orson Welles,1181322631 +46881,6457,World War II,1181168933 +46881,6458,World War I,1181167951 +46881,6459,World War II,1181168695 +46881,6460,Orson Welles,1181164834 +46881,6464,Nostalgia Critic,1237390339 +46881,6474,John Turturro,1181136062 +46881,6474,World War II,1181264081 +46881,6476,Wolfgang Petersen,1181333368 +46881,6497,Orson Welles,1181322664 +46881,6526,Akira Kurosawa,1181483287 +46881,6526,Japan,1181483338 +46881,6530,Roman Polanski,1181165955 +46881,6539,Johnny Depp,1181137548 +46881,6541,Alan Moore,1181135322 +46881,6541,Sean Connery,1181140649 +46881,6550,John Malkovich,1181316225 +46881,6560,Gene Hackman,1181171435 +46881,6566,Robert Rodriguez,1181261101 +46881,6567,Joaquin Phoenix,1181423543 +46881,6577,Albert Pyun,1235062089 +46881,6595,Colin Farrell,1181140249 +46881,6595,Samuel L. Jackson,1181344363 +46881,6614,Keanu Reeves,1181325165 +46881,6643,Japan,1181159055 +46881,6643,Yasujiro Ozu,1181159066 +46881,6659,cult film,1181140105 +46881,6662,not funny,1263683312 +46881,6662,Peter Sellers,1181158411 +46881,6663,Peter Sellers,1181165203 +46881,6664,Nostalgia Critic,1263481430 +46881,6669,Akira Kurosawa,1181143913 +46881,6669,Japan,1181143933 +46881,6681,Christian Bale,1213019897 +46881,6686,Jackie Chan,1181269538 +46881,6708,Nicolas Cage,1181164543 +46881,6708,Ridley Scott,1181164547 +46881,6709,Johnny Depp,1181140472 +46881,6709,Robert Rodriguez,1181140472 +46881,6721,wuxia,1181268025 +46881,6722,wuxia,1181268135 +46881,6723,wuxia,1181268130 +46881,6733,John Malkovich,1181316085 +46881,6763,not funny,1182778000 +46881,6795,Tommy Lee Jones,1181344092 +46881,6797,Ennio Morricone,1181266345 +46881,6800,Menahem Golan,1235060695 +46881,6800,Sylvester Stallone,1181141325 +46881,6804,Sam Raimi,1181324065 +46881,6807,Monty Python,1181157171 +46881,6808,Clint Eastwood,1181137129 +46881,6808,World War II,1181138193 +46881,6814,Clint Eastwood,1235064496 +46881,6819,Forest Whitaker,1181162568 +46881,6831,Gary Oldman,1181315655 +46881,6841,Forest Whitaker,1181162527 +46881,6843,Gene Hackman,1181171287 +46881,6845,Gary Oldman,1181315566 +46881,6858,Roman Polanski,1181165853 +46881,6870,Clint Eastwood,1181136418 +46881,6870,Sean Penn,1181136418 +46881,6872,Bollocks,1202949339 +46881,6874,Quentin Tarantino,1181136541 +46881,6879,Gene Hackman,1181170842 +46881,6883,Daniel Craig,1181310518 +46881,6888,not funny,1182780314 +46881,6893,Michael Caine,1181422744 +46881,6899,Albert Pyun,1235062115 +46881,6899,Menahem Golan,1199991040 +46881,6902,Gary Oldman,1181315415 +46881,6934,Hugo Weaving,1181135036 +46881,6934,Keanu Reeves,1181135036 +46881,6942,Liam Neeson,1181316780 +46881,6947,Russell Crowe,1194651509 +46881,6950,Ron Howard,1181343547 +46881,6950,Tommy Lee Jones,1181343528 +46881,6953,Alejandro Gonzalez Inarritu,1182474072 +46881,6953,Sean Penn,1181166252 +46881,6959,Michael Crichton,1194645591 +46881,6966,Sam Raimi,1181324076 +46881,6969,Jean Reno,1181258901 +46881,6983,Orson Welles,1181322620 +46881,6997,Jack Nicholson,1181134879 +46881,6998,Tommy Lee Jones,1181343863 +46881,7000,Bruce Willis,1181160284 +46881,7007,Bruce Willis,1181160181 +46881,7008,Bernardo Bertolucci,1181328998 +46881,7011,Pedro Almodovar,1236022431 +46881,7014,Jean-Claude Van Damme,1181320968 +46881,7016,Menahem Golan,1199988472 +46881,7016,Sylvester Stallone,1237215972 +46881,7020,Hugo Weaving,1181323660 +46881,7020,Russell Crowe,1181323660 +46881,7022,Japan,1181135966 +46881,7022,Takeshi Kitano,1181139776 +46881,7025,World War II,1181168892 +46881,7037,Pedro Almodovar,1236022453 +46881,7043,Jean-Luc Godard,1240956691 +46881,7044,David Lynch,1181310689 +46881,7044,Nicolas Cage,1181310689 +46881,7046,Jack Nicholson,1181163316 +46881,7063,Klaus Kinski,1181134119 +46881,7063,Werner Herzog,1181134119 +46881,7069,Roman Polanski,1181165982 +46881,7073,Peter Sellers,1181159597 +46881,7090,wuxia,1181268012 +46881,7091,Marx Brothers,1181268549 +46881,7099,Hayao Miyazaki,1181162834 +46881,7099,Japan,1181162900 +46881,7099,Studio Ghibli,1181162848 +46881,7102,Tom Hanks,1181167181 +46881,7108,Jackie Chan,1181269222 +46881,7109,John Malkovich,1181316045 +46881,7117,Nostalgia Critic,1288661641 +46881,7132,Marx Brothers,1181268506 +46881,7147,Tim Burton,1181158480 +46881,7149,Jack Nicholson,1181324377 +46881,7149,Keanu Reeves,1181324377 +46881,7153,Hugo Weaving,1181135434 +46881,7153,Peter Jackson,1181135434 +46881,7162,American Civil War,1181265515 +46881,7162,Philip Seymour Hoffman,1204247014 +46881,7173,not funny,1182777920 +46881,7173,Philip Seymour Hoffman,1204247294 +46881,7201,Gerard Depardieu,1181314320 +46881,7204,Jack Nicholson,1181324654 +46881,7226,Samuel L. Jackson,1181345004 +46881,7265,Bernardo Bertolucci,1181328976 +46881,7294,Gene Hackman,1181171448 +46881,7307,Paul Verhoeven,1181164920 +46881,7308,Menahem Golan,1235060793 +46881,7313,Nicolas Cage,1181344078 +46881,7313,Tommy Lee Jones,1181344078 +46881,7321,Samuel L. Jackson,1181345143 +46881,7325,not funny,1182778558 +46881,7347,John Turturro,1181256413 +46881,7347,Johnny Depp,1181256401 +46881,7364,Colin Farrell,1181160834 +46881,7367,Tom Hanks,1181167214 +46881,7373,Guillermo del Toro,1190310214 +46881,7377,Don Cheadle,1181162082 +46881,7381,Bruce Willis,1181160465 +46881,7383,Sylvester Stallone,1237214339 +46881,7419,Martin Scorsese,1181164251 +46881,7438,Quentin Tarantino,1181157183 +46881,7438,Samuel L. Jackson,1181344276 +46881,7445,Christopher Walken,1181257616 +46881,7450,Pierce Brosnan,1181165298 +46881,7458,Brad Pitt,1181263545 +46881,7458,Wolfgang Petersen,1181333486 +46881,7477,Sylvester Stallone,1237214439 +46881,7480,Gene Hackman,1181170994 +46881,7481,Wolfgang Petersen,1181333406 +46881,7485,Japan,1181158788 +46881,7485,Yasujiro Ozu,1181158786 +46881,7502,not a movie,1296233237 +46881,7564,Japan,1181159419 +46881,7564,Masaki Kobayashi,1181159419 +46881,7564,Tatsuya Nakadai,1190304125 +46881,7569,James Bond,1181137098 +46881,7569,Sean Connery,1181137107 +46881,7570,James Bond,1181140510 +46881,7570,Roger Moore,1181140508 +46881,7573,James Bond,1181141973 +46881,7573,Sean Connery,1181141979 +46881,7616,Brian De Palma,1181267145 +46881,7636,Brian De Palma,1181267277 +46881,7650,Vincent Price,1181167495 +46881,7669,not a movie,1284390329 +46881,7704,Chuck Norris,1181311562 +46881,7704,Menahem Golan,1199988508 +46881,7706,Marx Brothers,1181268416 +46881,7723,Chuck Norris,1181311665 +46881,7725,Michael Caine,1181261587 +46881,7725,Steven Seagal,1181261587 +46881,7748,Jean-Luc Godard,1240956895 +46881,7749,Jean-Luc Godard,1240956918 +46881,7766,Akira Kurosawa,1181143974 +46881,7766,Japan,1181143959 +46881,7766,Toshiro Mifune,1181177134 +46881,7787,World War II,1181168519 +46881,7814,Orson Welles,1181322688 +46881,7817,Sean Connery,1181166190 +46881,7915,Japan,1181136214 +46881,7919,Akira Kurosawa,1181176924 +46881,7919,Japan,1181176924 +46881,7919,Toshiro Mifune,1181176924 +46881,7924,Akira Kurosawa,1181159038 +46881,7924,Japan,1181159025 +46881,7924,Toshiro Mifune,1181177108 +46881,7925,Akira Kurosawa,1181136573 +46881,7925,Japan,1181136573 +46881,7925,Toshiro Mifune,1181176838 +46881,7926,Akira Kurosawa,1181176962 +46881,7926,Japan,1181176967 +46881,7926,Tatsuya Nakadai,1190304043 +46881,7926,Toshiro Mifune,1181176962 +46881,7933,Marx Brothers,1181268566 +46881,7980,Sean Connery,1181141430 +46881,7980,World War II,1181166114 +46881,7991,Sylvester Stallone,1181166558 +46881,8012,Japan,1181166636 +46881,8012,Takeshi Kitano,1181166639 +46881,8042,Martin Scorsese,1181164264 +46881,8045,Don Cheadle,1181167415 +46881,8045,Vietnam War,1181167415 +46881,8118,Chuck Norris,1181311630 +46881,8118,Menahem Golan,1235060506 +46881,8199,Japan,1181092821 +46881,8252,Francis Ford Coppola,1181315169 +46881,8253,Hayao Miyazaki,1181162740 +46881,8253,Japan,1181162923 +46881,8253,Studio Ghibli,1181162728 +46881,8267,Werner Herzog,1181167881 +46881,8292,Akira Kurosawa,1181176736 +46881,8292,Japan,1181176773 +46881,8292,Toshiro Mifune,1181176981 +46881,8327,Japan,1181166671 +46881,8327,Takeshi Kitano,1181166671 +46881,8340,Clint Eastwood,1181169614 +46881,8365,Daniel Craig,1181310551 +46881,8368,Gary Oldman,1181315507 +46881,8370,Japan,1181157043 +46881,8370,Takeshi Kitano,1181157043 +46881,8373,Christopher Walken,1181257528 +46881,8446,World War II,1181168922 +46881,8484,Japan,1181138996 +46881,8484,Masaki Kobayashi,1181164361 +46881,8484,Tatsuya Nakadai,1190303931 +46881,8484,World War II,1181139040 +46881,8493,World War II,1181168223 +46881,8496,Al Pacino,1235062929 +46881,8504,John Turturro,1181256373 +46881,8511,Charlie Chaplin,1182775296 +46881,8526,Jackie Chan,1181269282 +46881,8526,not funny,1181269487 +46881,8529,Tom Hanks,1181167072 +46881,8542,Marx Brothers,1181268464 +46881,8577,Oliver Stone,1181310334 +46881,8596,Peter Sellers,1181165168 +46881,8598,Gerard Depardieu,1181314417 +46881,8636,Sam Raimi,1181323851 +46881,8667,Colin Farrell,1181483752 +46881,8675,submarine,1181261909 +46881,8675,World War II,1181168731 +46881,8698,Christopher Walken,1181257950 +46881,8734,Marx Brothers,1181268589 +46881,8738,Jean-Luc Godard,1240956933 +46881,8740,Akira Kurosawa,1181176998 +46881,8740,Japan,1181176998 +46881,8740,Toshiro Mifune,1181176998 +46881,8779,Gerard Depardieu,1181314338 +46881,8783,Joaquin Phoenix,1181423343 +46881,8783,M. Night Shyamalan,1181135174 +46881,8785,Japan,1181168113 +46881,8785,Yasujiro Ozu,1181168101 +46881,8810,Lance Henriksen,1181142780 +46881,8858,Menahem Golan,1199988522 +46881,8860,Jason Statham,1205097765 +46881,8903,Jack Nicholson,1181324641 +46881,8905,Gerard Depardieu,1181161521 +46881,8905,Ridley Scott,1181323275 +46881,8908,Joaquin Phoenix,1181423563 +46881,8923,Roman Polanski,1181165963 +46881,8928,Roman Polanski,1181165941 +46881,8939,Robin Williams,1181165626 +46881,8950,Christian Bale,1181160592 +46881,8956,Daniel Craig,1181310530 +46881,8963,Joaquin Phoenix,1181423730 +46881,8963,Sean Penn,1181423730 +46881,8966,Liam Neeson,1181164040 +46881,8968,Don Cheadle,1181162026 +46881,8968,Pierce Brosnan,1181162026 +46881,8970,Johnny Depp,1182460277 +46881,8972,Nicolas Cage,1181142024 +46881,8973,Pedro Almodovar,1236022411 +46881,8977,Colin Farrell,1181160865 +46881,8977,Oliver Stone,1181135570 +46881,8983,wuxia,1181268114 +46881,8984,Brad Pitt,1181263434 +46881,8984,Don Cheadle,1181161965 +46881,25777,Marx Brothers,1181268555 +46881,25927,Orson Welles,1181322565 +46881,25938,John Wayne,1181268308 +46881,25940,Orson Welles,1181322514 +46881,25964,Akira Kurosawa,1224427188 +46881,25964,Toshiro Mifune,1224427188 +46881,25975,Toshiro Mifune,1222799918 +46881,25995,Japan,1181177039 +46881,25995,Toshiro Mifune,1181177039 +46881,25999,Marlon Brando,1181164195 +46881,26002,Orson Welles,1181322576 +46881,26005,Japan,1181177054 +46881,26005,Toshiro Mifune,1181177054 +46881,26012,Japan,1181177063 +46881,26012,Toshiro Mifune,1181176796 +46881,26048,Japan,1224180356 +46881,26048,Masaki Kobayashi,1224180188 +46881,26048,Tatsuya Nakadai,1224180188 +46881,26055,Japan,1181168122 +46881,26055,Yasujiro Ozu,1181168123 +46881,26059,Tatsuya Nakadai,1225104829 +46881,26064,Akira Kurosawa,1181158657 +46881,26064,Japan,1181160049 +46881,26064,Toshiro Mifune,1181176849 +46881,26073,Japan,1224180352 +46881,26073,Masaki Kobayashi,1224180201 +46881,26073,Tatsuya Nakadai,1224180201 +46881,26082,Japan,1181158958 +46881,26082,Masaki Kobayashi,1181158958 +46881,26082,Tatsuya Nakadai,1190303881 +46881,26085,Marlon Brando,1181164100 +46881,26095,Jean-Luc Godard,1266437378 +46881,26133,not a movie,1296235036 +46881,26152,cult film,1181141537 +46881,26174,Jack Nicholson,1181324596 +46881,26181,John Wayne,1181316292 +46881,26195,Jean-Luc Godard,1266437412 +46881,26222,Akira Kurosawa,1181158514 +46881,26222,Japan,1181158514 +46881,26226,Brian De Palma,1181266911 +46881,26226,Robert De Niro,1181266883 +46881,26240,Clint Eastwood,1235064322 +46881,26249,Spaghetti Western,1181311272 +46881,26265,Vincent Price,1225105193 +46881,26294,Spaghetti Western,1181265910 +46881,26302,Al Pacino,1181170792 +46881,26302,Gene Hackman,1181170792 +46881,26303,Brian De Palma,1181267194 +46881,26306,Vincent Price,1181262807 +46881,26349,Gene Hackman,1181170970 +46881,26350,Jack Nicholson,1181163194 +46881,26359,Bernardo Bertolucci,1181328910 +46881,26359,Gerard Depardieu,1181161477 +46881,26359,Robert De Niro,1181161477 +46881,26371,Jack Nicholson,1182203271 +46881,26371,Marlon Brando,1182203271 +46881,26462,Sean Penn,1181166329 +46881,26471,not a movie,1303430912 +46881,26476,Takeshi Kitano,1181262461 +46881,26485,Francis Ford Coppola,1181315009 +46881,26527,Pedro Almodovar,1236022488 +46881,26547,Jackie Chan,1181268737 +46881,26551,Menahem Golan,1235060452 +46881,26599,Pedro Almodovar,1236022463 +46881,26606,China,1181267663 +46881,26616,Klaus Kinski,1235070574 +46881,26616,Werner Herzog,1235070567 +46881,26662,Hayao Miyazaki,1181162815 +46881,26662,Japan,1181162913 +46881,26662,Studio Ghibli,1181162805 +46881,26688,Steven Seagal,1182202571 +46881,26693,Nostalgia Critic,1288661659 +46881,26696,Jean-Claude Van Damme,1235070367 +46881,26704,Gary Oldman,1181315402 +46881,26704,John Turturro,1181256207 +46881,26704,Sean Penn,1181256207 +46881,26746,Steven Seagal,1196642956 +46881,26776,Hayao Miyazaki,1181162866 +46881,26776,Japan,1181162896 +46881,26776,Studio Ghibli,1181162852 +46881,26792,Chuck Norris,1235064162 +46881,26792,Nostalgia Critic,1254932667 +46881,26828,Nostalgia Critic,1284349172 +46881,26840,Japan,1181166651 +46881,26840,Takeshi Kitano,1181166646 +46881,26865,wuxia,1181267771 +46881,26875,Gerard Depardieu,1181314274 +46881,27002,not a movie,1284259677 +46881,27271,Japan,1181157020 +46881,27271,Takeshi Kitano,1181156868 +46881,27408,John Malkovich,1181140328 +46881,27445,Sylvester Stallone,1237214254 +46881,27689,Jean Reno,1181259044 +46881,27721,World War I,1181167984 +46881,27731,Japan,1181166467 +46881,27731,Studio Ghibli,1181166459 +46881,27734,Samuel L. Jackson,1181344925 +46881,27738,not a movie,1303429265 +46881,27741,Japan,1181159073 +46881,27808,not funny,1182475641 +46881,27816,World War II,1181312936 +46881,27821,Sean Penn,1181166302 +46881,27831,Daniel Craig,1181258161 +46881,27904,Keanu Reeves,1181324953 +46881,27922,not a movie,1325192864 +46881,30701,Orson Welles,1181322495 +46881,30707,Clint Eastwood,1181158865 +46881,30707,Morgan Freeman,1181259818 +46881,30749,Don Cheadle,1181136557 +46881,30749,Joaquin Phoenix,1181423522 +46881,30793,Johnny Depp,1181172171 +46881,30793,Tim Burton,1181172238 +46881,30812,Martin Scorsese,1181172998 +46881,30825,not funny,1182778052 +46881,30846,Don Cheadle,1181159293 +46881,30846,Sean Penn,1181159281 +46881,30850,Al Pacino,1181159498 +46881,31053,Bollocks,1202949378 +46881,31083,Jack Nicholson,1181324668 +46881,31116,World War I,1181268882 +46881,31225,Samuel L. Jackson,1181344512 +46881,31410,World War II,1181136771 +46881,31424,Bollocks,1202949352 +46881,31424,Nostalgia Critic,1254931053 +46881,31427,Robert De Niro,1181135899 +46881,31553,Nostalgia Critic,1237390365 +46881,31658,Hayao Miyazaki,1181162768 +46881,31658,Japan,1181162916 +46881,31658,Studio Ghibli,1181162793 +46881,31696,Alan Moore,1181142546 +46881,31696,Keanu Reeves,1181134919 +46881,31867,Tommy Lee Jones,1181343879 +46881,31878,wuxia,1181267874 +46881,31930,Jean-Luc Godard,1240956874 +46881,32029,Bruce Willis,1181159185 +46881,32058,Gene Hackman,1181171122 +46881,32261,World War II,1181168548 +46881,32329,Sylvester Stallone,1237214523 +46881,32383,Francis Ford Coppola,1181315139 +46881,32387,Japan,1181177123 +46881,32387,Tatsuya Nakadai,1224180333 +46881,32387,Toshiro Mifune,1181177123 +46881,32562,not a movie,1316729239 +46881,32587,Bruce Willis,1181133651 +46881,32587,Robert Rodriguez,1181133651 +46881,32627,Sylvester Stallone,1237216004 +46881,32721,World War II,1181170149 +46881,32781,Gene Hackman,1181171235 +46881,32840,not a movie,1315482279 +46881,32882,Marx Brothers,1181268522 +46881,33004,John Malkovich,1181140828 +46881,33036,Clint Eastwood,1235064293 +46881,33158,Samuel L. Jackson,1181345182 +46881,33162,Liam Neeson,1181140719 +46881,33162,Ridley Scott,1181140719 +46881,33166,Don Cheadle,1181136871 +46881,33312,Marx Brothers,1181268402 +46881,33437,Morgan Freeman,1181260275 +46881,33493,Samuel L. Jackson,1181344637 +46881,33660,Ron Howard,1181159105 +46881,33660,Russell Crowe,1181323774 +46881,33679,Brad Pitt,1181263525 +46881,33681,Robert Rodriguez,1181261086 +46881,33794,Christian Bale,1181095675 +46881,33794,Gary Oldman,1181315434 +46881,33794,Liam Neeson,1181138667 +46881,33794,Michael Caine,1181138690 +46881,33794,Morgan Freeman,1181260325 +46881,34002,Marx Brothers,1181268531 +46881,34018,Marx Brothers,1181268573 +46881,34353,Gene Hackman,1181171333 +46881,34520,not funny,1226793948 +46881,34536,World War II,1181168602 +46881,34542,Werner Herzog,1181134133 +46881,34583,Gene Hackman,1181170810 +46881,36401,Terry Gilliam,1181137665 +46881,36519,Jason Statham,1205097746 +46881,36529,Nicolas Cage,1181138389 +46881,36537,Keanu Reeves,1181259420 +46881,36752,Menahem Golan,1235059933 +46881,37211,Marx Brothers,1181268581 +46881,37475,Morgan Freeman,1181260247 +46881,37477,Samuel L. Jackson,1181344347 +46881,37545,Klaus Kinski,1181134206 +46881,37545,Werner Herzog,1181134206 +46881,37729,Tim Burton,1181166870 +46881,37736,Roman Polanski,1181165903 +46881,37741,Philip Seymour Hoffman,1204247006 +46881,38499,not a movie,1284262042 +46881,38992,Al Pacino,1182206511 +46881,39444,Nicolas Cage,1181164557 +46881,39474,Akira Kurosawa,1226373513 +46881,40148,Jason Statham,1205097867 +46881,40414,World War I,1181168020 +46881,40815,Gary Oldman,1181315501 +46881,40819,Joaquin Phoenix,1181423245 +46881,40955,Liam Neeson,1181316733 +46881,40966,John Malkovich,1181316140 +46881,40966,Johnny Depp,1181316140 +46881,41569,Peter Jackson,1181135417 +46881,41627,Japan,1224180347 +46881,41627,Masaki Kobayashi,1221650880 +46881,41627,Tatsuya Nakadai,1225133157 +46881,41627,Toshiro Mifune,1221650850 +46881,41716,Pierce Brosnan,1181165281 +46881,41863,Tommy Lee Jones,1181343586 +46881,41997,Daniel Craig,1181310485 +46881,42217,Japan,1181168107 +46881,42217,Yasujiro Ozu,1181168093 +46881,42418,Christian Bale,1181133167 +46881,42418,Colin Farrell,1181483858 +46881,42418,Terrence Malick,1181166724 +46881,42422,not a movie,1311475994 +46881,42721,Bollocks,1202949347 +46881,42900,Roman Polanski,1181165926 +46881,43376,World War II,1181168479 +46881,43836,Jean Reno,1181134042 +46881,43908,Jason Statham,1205099737 +46881,43912,Samuel L. Jackson,1181344377 +46881,43919,not funny,1259608754 +46881,43936,Bruce Willis,1181160199 +46881,44189,Colin Farrell,1181160849 +46881,44191,Alan Moore,1181135307 +46881,44191,Hugo Weaving,1181135279 +46881,44665,Bruce Willis,1181158264 +46881,44665,Morgan Freeman,1181260175 +46881,44694,Pedro Almodovar,1236022330 +46881,45000,Jean-Luc Godard,1266437391 +46881,45028,Tommy Lee Jones,1181343920 +46881,45186,Philip Seymour Hoffman,1204247281 +46881,45208,Robin Williams,1181165780 +46881,45382,Edward Norton,1181314811 +46881,45440,John Malkovich,1181163485 +46881,45442,Wolfgang Petersen,1181333531 +46881,45447,Jean Reno,1181134024 +46881,45447,Ron Howard,1181142531 +46881,45447,Tom Hanks,1181142531 +46881,45517,Disney,1194202461 +46881,45668,Keanu Reeves,1181325337 +46881,45722,Johnny Depp,1181141930 +46881,45730,M. Night Shyamalan,1181135148 +46881,46322,wuxia,1181267903 +46881,46723,Alejandro Gonzalez Inarritu,1182474043 +46881,46723,Brad Pitt,1181263347 +46881,46772,Philip Seymour Hoffman,1204247271 +46881,46965,Samuel L. Jackson,1181345021 +46881,46972,not funny,1259608693 +46881,46974,Nicolas Cage,1181164632 +46881,46974,Oliver Stone,1181164630 +46881,47044,Colin Farrell,1181483841 +46881,47200,Jason Statham,1205097731 +46881,47254,Jason Statham,1205099722 +46881,47465,Terry Gilliam,1181166813 +46881,47610,Edward Norton,1181162239 +46881,47810,Nicolas Cage,1181179053 +46881,48142,Brian De Palma,1181266979 +46881,48304,Mel Gibson,1181325568 +46881,48319,World War I,1181168006 +46881,48394,Guillermo del Toro,1190310012 +46881,48516,Jack Nicholson,1181156938 +46881,48516,Martin Scorsese,1181156938 +46881,48593,Christopher Walken,1181165735 +46881,48593,Robin Williams,1181165728 +46881,48738,Forest Whitaker,1181092608 +46881,48774,Michael Caine,1181164447 +46881,48780,Christian Bale,1181132964 +46881,48780,Michael Caine,1181164433 +46881,48783,Clint Eastwood,1181160975 +46881,48783,World War II,1181168202 +46881,49130,Ridley Scott,1181323238 +46881,49130,Russell Crowe,1181323693 +46881,49272,Daniel Craig,1181157077 +46881,49272,James Bond,1181157063 +46881,49284,Morgan Freeman,1181260233 +46881,49314,Christian Bale,1181160678 +46881,49649,John Malkovich,1181316209 +46881,49651,Sylvester Stallone,1181159175 +46881,49772,Edward Norton,1181314794 +46881,49822,Robert De Niro,1181255422 +46881,49932,David Lynch,1181161830 +46881,50068,Clint Eastwood,1181156963 +46881,50068,World War II,1181264978 +46881,50151,Samuel L. Jackson,1181345205 +46881,50442,Bruce Willis,1181160236 +46881,50798,not funny,1259608891 +46881,50872,Disney,1194202719 +46881,51077,Nicolas Cage,1182203992 +46881,51091,Samuel L. Jackson,1181344543 +46881,51412,Nicolas Cage,1181171797 +46881,51540,David Fincher,1181156890 +46881,51678,Marlon Brando,1181164184 +46881,51931,Don Cheadle,1181171722 +46881,52042,Paul Verhoeven,1195699412 +46881,52101,Akira Kurosawa,1224427140 +46881,52101,Toshiro Mifune,1224427233 +46881,52281,Quentin Tarantino,1181165332 +46881,52281,Robert Rodriguez,1181165342 +46881,52456,Bruce Willis,1181173168 +46881,52462,cult film,1181244194 +46881,52579,Gerard Depardieu,1199993964 +46881,52722,Sam Raimi,1181323979 +46881,53004,not funny,1182464564 +46881,53125,Johnny Depp,1181159115 +46881,53322,Al Pacino,1181309847 +46881,53322,Brad Pitt,1181309847 +46881,53322,Don Cheadle,1181309847 +46881,53519,Quentin Tarantino,1201320840 +46881,53550,Christian Bale,1187988304 +46881,53550,Werner Herzog,1190304605 +46881,53996,John Turturro,1196102436 +46881,53996,Nostalgia Critic,1237393498 +46881,54513,Don Cheadle,1190315923 +46881,54775,Jason Statham,1205097880 +46881,54997,Christian Bale,1190301888 +46881,54997,Russell Crowe,1194651890 +46881,55073,Steven Seagal,1236352629 +46881,55247,Sean Penn,1194662786 +46881,55257,Bollocks,1202949363 +46881,55272,Joaquin Phoenix,1235070727 +46881,55288,Joaquin Phoenix,1235070700 +46881,55290,Morgan Freeman,1194662819 +46881,55765,Ridley Scott,1194198983 +46881,55765,Russell Crowe,1194199010 +46881,55805,Philip Seymour Hoffman,1204247171 +46881,55820,Tommy Lee Jones,1199993431 +46881,56286,Christian Bale,1213019955 +46881,56333,Philip Seymour Hoffman,1204247144 +46881,56511,Brian De Palma,1235063886 +46881,56775,Nicolas Cage,1203044537 +46881,56788,Philip Seymour Hoffman,1204247197 +46881,56885,Forest Whitaker,1224985404 +46881,57326,Bollocks,1202949332 +46881,57528,Sylvester Stallone,1201321054 +46881,57640,Guillermo del Toro,1234712543 +46881,58059,Akira Kurosawa,1222799626 +46881,58059,Japan,1222799627 +46881,58059,Toshiro Mifune,1222799646 +46881,58078,Forest Whitaker,1224985444 +46881,58103,Forest Whitaker,1224985476 +46881,58295,Jason Statham,1205099696 +46881,58559,Christian Bale,1235063940 +46881,58559,Michael Caine,1235069954 +46881,58576,Jean-Luc Godard,1240956984 +46881,58617,Steven Seagal,1237473685 +46881,59016,Forest Whitaker,1224985172 +46881,60037,M. Night Shyamalan,1235069224 +46881,60484,Akira Kurosawa,1226373491 +46881,60990,Yasujiro Ozu,1224179145 +46881,61248,Jason Statham,1235070246 +46881,61348,not funny,1259608874 +46881,61352,Don Cheadle,1220958769 +46881,61697,Al Pacino,1259610286 +46881,61697,Robert De Niro,1259610297 +46881,61967,Yasujiro Ozu,1223290838 +46881,62299,Bollocks,1224199537 +46881,62669,Masaki Kobayashi,1225106133 +46881,62669,Tatsuya Nakadai,1225106133 +46881,62970,not a movie,1316746910 +46881,63222,Jean-Claude Van Damme,1235070350 +46881,64030,Jason Statham,1235070262 +46881,64231,Wayne Knight,1235064711 +46881,64368,Menahem Golan,1235059918 +46881,64614,Clint Eastwood,1235064533 +46881,64999,The Asylum,1284390273 +46881,65288,Jean-Luc Godard,1240956992 +46881,65552,Jean-Claude Van Damme,1235070394 +46881,66517,Steven Seagal,1236009221 +46881,66584,Lance Henriksen,1236174645 +46881,66584,Steven Seagal,1236174645 +46881,66586,Steven Seagal,1236174954 +46881,66652,Steven Seagal,1236352227 +46881,66798,not funny,1263683287 +46881,66808,Bollocks,1237379784 +46881,66900,Steven Seagal,1237379344 +46881,66902,Steven Seagal,1237379375 +46881,66915,Nostalgia Critic,1237389868 +46881,66934,not a movie,1296235053 +46881,66941,Steven Seagal,1237474369 +46881,67331,Steven Seagal,1238430598 +46881,68073,Philip Seymour Hoffman,1273190877 +46881,68205,Jason Statham,1265226874 +46881,68554,Ron Howard,1256844803 +46881,68554,Tom Hanks,1256844748 +46881,71170,Jean-Luc Godard,1266437707 +46881,72261,Nostalgia Critic,1288661750 +46881,72356,not a movie,1296234949 +46881,72405,Werner Herzog,1259359152 +46881,73759,not a movie,1311475824 +46881,73829,The Asylum,1281225405 +46881,74152,not a movie,1306007594 +46881,77658,not a movie,1282214645 +46881,77854,not a movie,1316729365 +46881,78160,not a movie,1279924098 +46881,78162,not a movie,1279924127 +46881,78544,not a movie,1282696588 +46881,78655,Bollocks,1301539239 +46881,79008,not a movie,1279924116 +46881,80487,Jean-Luc Godard,1284749468 +46881,80505,The Asylum,1285081664 +46881,80928,not a movie,1308778450 +46881,81568,not a movie,1311476086 +46881,81817,not a movie,1315482634 +46881,83506,not a movie,1311476115 +46881,84847,not a movie,1331093669 +46881,85736,not a movie,1302553058 +46881,86345,not a movie,1305147442 +46881,86347,not a movie,1306005008 +46881,86377,not a movie,1305147457 +46881,89840,Jason Statham,1327583404 +46888,112334,depressing,1406833138 +46910,1214,horror,1238772178 +46915,34405,finale,1435626501 +46915,34405,sci-fi,1435626490 +46915,68358,remake,1435626450 +46915,68358,remake better than original version,1435626446 +46946,1245,coen bros,1259181308 +46946,1245,Coen Brothers,1259181305 +46946,1245,Mafia,1259181299 +46946,1245,twists & turns,1259181312 +46946,6440,baffling,1293675873 +46946,6440,Coen Brothers,1293675864 +46946,6440,Enigmatic,1293675866 +46946,8798,Tom Cruise,1272225127 +46946,8914,directorial debut,1250826458 +46946,8914,intellectual,1250826455 +46946,8914,mindfuck,1250826447 +46946,8914,time travel,1250826442 +46946,27005,dialogue driven,1268956828 +46946,27005,Hugo Weaving,1268956833 +46946,27216,Not available from Netflix,1266197271 +46946,31545,Criterion,1301448613 +46946,64575,Meryl Streep,1270090026 +46946,64575,moral ambiguity,1270090029 +46946,64575,no culmination,1270090031 +46946,64575,Philip Seymour Hoffman,1270090024 +46946,71135,amnesia,1292203983 +46946,71135,Dennis Quaid,1292203979 +46946,71135,post-apocalyptic,1292203976 +46946,71135,we've seen this before,1292203989 +46950,555,Christian Slater,1250673510 +46950,555,dialogue,1250673513 +46950,555,Elvis iconography,1250673524 +46950,555,Gary Oldman,1250673500 +46950,555,James Gandolfini,1250673502 +46950,555,Val Kilmer,1250673517 +46950,555,violence,1250673505 +46950,1089,cult film,1250673545 +46950,1089,heist,1250673547 +46950,1089,low budget,1250673549 +46950,1089,nonlinear,1250673553 +46950,1089,organized crime,1250673539 +46950,1089,Quentin Tarantino,1250673536 +46950,1089,stylized,1250673556 +46950,1089,violence,1250673542 +46954,1227,Underrated,1138241787 +46954,6807,Monty Python,1170309470 +46954,6807,Philosophy,1170309478 +46954,48043,cerebral,1172722742 +46954,48043,dreamlike,1172722735 +46965,50,conspiracy,1360970580 +46965,50,ensemble cast,1360970593 +46965,50,organized crime,1360970591 +46965,50,suspense,1360970595 +46965,1527,aliens,1307506998 +46965,1527,bad guyuy,1307507058 +46965,1527,Bruce Willis,1307506969 +46965,1527,campy,1307506994 +46965,1527,humorous,1307506986 +46965,1527,Milla Jovovich,1307506972 +46965,1527,Nudity (Topless - Brief),1307506980 +46965,1527,Nudity (Topless - Notable),1307507058 +46965,1527,race against time,1307506984 +46965,1527,satirical,1307506978 +46965,1527,sci-fi,1307506976 +46965,2580,cliches,1317606119 +46965,2580,creepy William Fichtner,1317606144 +46965,2580,drugs,1317606068 +46965,2580,humorous,1317606070 +46965,2580,Katie Holmes,1317606065 +46965,2580,low violence,1317606175 +46965,2580,multiple storylines,1317606074 +46965,2580,no character development,1317606193 +46965,6538,books,1325805878 +46965,6538,France,1325805887 +46965,6538,Nudity (Full Frontal - Notable),1325805873 +46965,6538,sex scenes,1325805879 +46965,6538,surprise ending,1325805892 +46965,7293,amnesia,1316642512 +46965,7293,anthropomorphized animals,1316642515 +46965,7445,alcoholism,1306978668 +46965,7445,Christopher Walken,1306978555 +46965,7445,Dakota Fanning,1306978562 +46965,7445,Denzel Washington,1306978557 +46965,7445,faith,1306978578 +46965,7445,Suicide,1306978567 +46965,7827,cinematography,1307749116 +46965,7827,corporate espionage,1307749043 +46965,7827,double agents,1307749093 +46965,7827,gadgets,1307749125 +46965,7827,Jeremy Northam,1307749036 +46965,7827,Lucy Liu,1307749039 +46965,7827,mood,1307749119 +46965,7827,soundtrack,1307749135 +46965,7827,twist ending,1307749152 +46965,32587,atmospheric,1350006187 +46965,32587,Bruce Willis,1350006176 +46965,32587,multiple storylines,1350006180 +46965,32587,Quentin Tarantino,1350006179 +46965,32587,stylized,1350006181 +46965,32587,violence,1350006185 +46965,34437,Atmospheric,1385312079 +46965,34437,Bill Murray,1385312082 +46965,34437,downbeat,1385312084 +46965,34437,Nudity (Full Frontal),1385312086 +46965,34437,road trip,1385312094 +46965,47491,cynical,1318895917 +46965,47491,Mads Mikkelsen,1318895909 +46965,47491,Neo-Nazis,1318895924 +46965,47491,small town,1318895911 +46965,47491,Ulrich Thomsen,1318895902 +46965,50794,silly,1325870492 +46965,50794,twist ending,1325870514 +46965,51255,action spoof,1325649267 +46965,51255,british comedy,1325649264 +46965,53318,alternate reality,1360969928 +46965,53318,insomnia,1360969930 +46965,53318,Nudity (Full Frontal),1360969919 +46965,53318,quirky,1360969931 +46965,53318,surreal,1360969935 +46965,53519,car chase,1360533967 +46965,53519,classic car,1360533981 +46965,53519,dialogue,1360533970 +46965,53519,great soundtrack,1360533973 +46965,53519,Kick-Butt Women,1360533976 +46965,54995,Bruce Willis,1360534027 +46965,54995,over the top,1360534030 +46965,54995,Robert Rodriguez,1360534032 +46965,55118,atmospheric,1315964877 +46965,55118,organized crime,1315964875 +46965,55118,Viggo Mortensen,1315964867 +46965,55118,violence,1315964870 +46965,55721,Drugs,1316652293 +46965,55721,Favelas,1316652280 +46965,55721,rio de janeiro,1316652283 +46965,55721,social commentary,1316652289 +46965,55721,special police forces,1316652285 +46965,56060,comedy,1306883243 +46965,56060,music,1306883239 +46965,56060,surreal,1306883228 +46965,56060,trees,1306883235 +46965,58559,Atmospheric,1379027821 +46965,58559,Batman,1379027825 +46965,61240,atmospheric,1326066268 +46965,61240,coming of age,1326066265 +46965,61240,vampire,1326066263 +46965,67267,alan arkin,1306897411 +46965,67267,Christine Jeffs,1306897404 +46965,67267,dark humor,1306897322 +46965,67267,family,1306897322 +46965,67267,funny,1306897280 +46965,67267,quirky,1306897322 +46965,67267,single mother,1306897482 +46965,67267,young mother,1306897475 +46965,71530,androids,1353290442 +46965,71530,future,1353290450 +46965,71530,predictable,1353290445 +46965,71530,special effects,1353290448 +46965,71535,Bill Murray,1325640110 +46965,71535,comedy,1325640113 +46965,71535,funny,1325640116 +46965,73023,Jeff Bridges,1325213361 +46965,73023,unlikely romance,1325213273 +46965,75341,9/11,1317426731 +46965,75341,chemistry,1317426757 +46965,75341,cynical protangonist,1317426764 +46965,75341,drama,1317426761 +46965,75341,Emilie de Ravin,1317426736 +46965,75341,ending sucked,1317426739 +46965,75341,heavy handed ending,1317426745 +46965,75341,Robert Pattinson,1317426747 +46965,76251,coming of age,1379027758 +46965,76251,humorous,1379027751 +46965,76251,quirky,1379027756 +46965,76251,stylized,1379027753 +46965,76251,superhero,1379027752 +46965,79702,based on a comic,1349906744 +46965,79702,funny,1349906730 +46965,79702,hilarious,1349906738 +46965,79702,stylized,1349906732 +46965,79702,visually appealing,1349906734 +46965,81804,Bill Nighy,1326157944 +46965,81804,comedy,1326157944 +46965,81804,Emily Blunt,1326157924 +46965,83134,comdey,1325640451 +46965,83134,Katrina Bowden,1325640504 +46965,83134,satire,1325640445 +46965,83369,gulag,1319583351 +46965,83369,Saoirse Ronan,1319583366 +46965,83369,siberia,1319583359 +46965,84152,Abbie Cornish,1314839736 +46965,84152,Robert De Niro,1314839725 +46965,84152,unfinished storyline,1314839728 +46965,84152,visual effects,1314839731 +46965,84152,visually appealing,1314839730 +46965,84392,accents,1315981613 +46965,84392,contrived,1315981633 +46965,84392,lawyers,1315981597 +46965,84772,aliens,1307565129 +46965,84772,chase,1307565131 +46965,84772,comedy,1307565180 +46965,84772,creative profanity,1307565139 +46965,84772,darwinism vs creationism,1307565142 +46965,84772,dumb cops,1307565196 +46965,84772,geeky,1307565152 +46965,84772,laidback,1307565160 +46965,84772,Nick Frost,1307565148 +46965,84772,roadtrip,1307565165 +46965,84772,Simon Pegg,1307565146 +46965,84950,80s,1307928742 +46965,84950,Collegeparty,1307928701 +46965,84950,comedy,1307928813 +46965,84950,Dan Fogler,1307928785 +46965,84950,Nudity (Topless - Brief),1307928723 +46965,84950,soundtrack,1307928731 +46965,84950,Teresa Palmer,1307928767 +46965,84950,Topher Grace,1307928785 +46965,85025,accents,1315456289 +46965,85025,Donald Sutherland,1315456306 +46965,85025,photography,1315456272 +46965,85025,plot,1315456282 +46965,85025,Roman tactics,1315456295 +46965,85025,Romans,1315456247 +46965,85025,Scotland,1315456252 +46965,86190,beautiful cinematography,1318896362 +46965,86190,Cate Blanchett,1318896378 +46965,86190,character development,1318896400 +46965,86190,great soundtrack,1318896381 +46965,86190,plot holes,1318896390 +46965,86190,Saoirse Ronan,1318896376 +46965,86190,strong female lead,1318896367 +46965,86190,surrealism,1318896375 +46965,86190,The Chemical Brothers,1318896371 +46965,87306,bad physics,1324953353 +46965,87306,bad plot,1324953356 +46965,87306,child actor,1324953379 +46965,87306,cinematography,1324953348 +46965,87306,sci-fi,1324953345 +46965,88129,atmospheric,1325639278 +46965,88129,cinematography,1325639275 +46965,88129,flat characters,1325639313 +46965,88129,little dialogue,1325639286 +46965,88129,soundtrack,1325639282 +46965,88235,black comedy,1327100172 +46965,89305,adolescence,1326317437 +46965,89305,badly written jokes,1326317521 +46965,89305,poor acting,1326317474 +46965,89305,UK culture,1326317542 +46965,89305,unrealistic characters,1326317534 +46965,89480,character development,1318721078 +46965,89480,cold,1318721152 +46965,89480,disturbing sexual scenes,1318721055 +46965,89480,Emily Browning,1318721158 +46965,89480,no character relations,1318721202 +46965,89480,Nudity (Full Frontal),1318721173 +46965,89480,pretentious,1318721114 +46965,89480,Rachael Blake,1318721164 +46965,89862,contemporary language,1353545845 +46965,89862,dirty camera lenses,1353545955 +46965,89862,divergent endings,1353545911 +46965,89862,dreamlike,1353545766 +46965,89862,flashbacks,1353545845 +46965,89862,Nudity (Topless - Brief),1353545848 +46965,89864,Anna Kendrick,1326942853 +46965,89864,cancer,1326942860 +46965,89864,comedy,1326942888 +46965,89864,Joseph Gordon-Levitt,1326942858 +46965,89864,predictable,1326942865 +46965,89864,unrealistic therapist,1326942918 +46965,90600,conspiracy,1352939430 +46965,90600,Nicolaj Coster-Waldau,1352939441 +46965,90600,theft,1352939427 +46965,91500,cheesy,1351911970 +46965,91500,dystopia,1351911957 +46965,91500,science fiction,1351911960 +46965,91500,visually stunning,1351911967 +46965,91500,Woody Harrelson,1351911964 +46965,91542,assassin,1351912071 +46965,91542,comedy,1351912075 +46965,91542,private detective,1351912068 +46965,91542,Robert Downey Jr.,1351912067 +46965,91542,unrealistic,1351912078 +46965,93840,clever,1360971049 +46965,94959,Bill Murray,1360534082 +46965,94959,Bruce Willis,1360534079 +46965,94959,coming of age,1360534109 +46965,94959,Edward Norton,1360534085 +46965,94959,fantasy,1360534089 +46965,94959,quirky,1360534075 +46965,95875,Colin Farrell,1351911824 +46965,95875,Jessica Biel,1351911832 +46965,95875,Kate Beckinsale,1351911829 +46965,95875,plot holes,1351911837 +46965,95875,robots,1351911826 +46965,97752,atmospheric,1379028081 +46965,97752,complicated,1379028084 +46965,97752,philosophy,1379028086 +46965,97752,visually appealing,1379028078 +46965,97938,visually appealing,1379028061 +46965,103554,tense,1389562115 +47016,260,sci-fi,1438127764 +47016,260,space adventure,1438127781 +47017,260,classic,1432543087 +47017,260,father-son relationship,1432543081 +47033,260,sci-fi,1430945636 +47033,260,space,1430945650 +47039,2935,classics,1137842842 +47039,2935,clean,1137842842 +47039,2935,wholesome,1137842842 +47039,3362,Atmospheric,1155201932 +47039,3362,bank,1155201938 +47039,3362,robbery,1155201925 +47039,3362,true story,1155201925 +47039,27808,owned,1143891147 +47039,38061,debut film,1137741350 +47039,38061,funny,1137741350 +47039,38061,robert downey,1137741349 +47039,38061,val kilmer,1137741350 +47040,5772,political,1310185574 +47040,8530,pick-dad,1142225143 +47040,8530,pick-mom,1142225127 +47040,34162,homophobic,1253039028 +47040,66665,John Krasinski,1256567991 +47040,66665,Maya Rudolph,1256567999 +47040,66665,self-important,1256567973 +47040,66665,slow,1256567426 +47040,66665,soundtrack,1256567954 +47040,66665,takes itself too seriously,1256567426 +47057,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1430759472 +47061,112552,drums,1442319847 +47061,112552,jazz,1442319832 +47061,112552,music,1442319837 +47062,288,brutality,1444802455 +47062,288,controversial,1444802440 +47062,288,dark comedy,1444802431 +47062,288,road trip,1444802463 +47062,288,romantic comedy,1444802555 +47062,288,social commentary,1444802517 +47062,1120,freedom of expression,1444805720 +47062,1120,social commentary,1444805726 +47062,2459,slasher,1444806864 +47062,3160,cynical,1444888471 +47062,3160,multiple storylines,1444888465 +47062,3160,religious overtones,1444888490 +47062,3569,dogme95,1444888143 +47062,5508,joy division,1444886088 +47062,5508,new wave,1444886092 +47062,6187,twist-ending,1444887945 +47062,6534,audience intelligence underestimated,1444807039 +47062,6534,superhero,1444807044 +47062,6971,meditative,1444887991 +47062,8874,black comedy,1444802830 +47062,8874,british comedy,1444802833 +47062,8874,dark comedy,1444802839 +47062,8874,zombies,1444802845 +47062,8957,brutal,1444806756 +47062,8957,franchise,1444806771 +47062,8957,gore,1444806763 +47062,8957,torture,1444806750 +47062,26422,music,1444805767 +47062,26599,atmospheric,1444802648 +47062,27251,fantasy,1444802859 +47062,32840,dark humor,1444802913 +47062,41566,christianity,1444888516 +47062,41566,religion,1444888510 +47062,44191,dystopia,1444802955 +47062,44191,revenge,1444802964 +47062,44191,social commentary,1444802943 +47062,44191,thought-provoking,1444802957 +47062,48043,Disappointing,1444806948 +47062,55444,joy division,1444806254 +47062,63992,audience intelligence underestimated,1444806817 +47062,63992,chick flick,1444806799 +47062,63992,Teen movie,1444806802 +47062,67255,dark,1444889059 +47062,67255,investigation,1444889184 +47062,67255,rape and revenge,1444889194 +47062,103075,brutal,1444802761 +47062,103075,dystopia,1444802733 +47062,103075,senseless violence,1444802773 +47062,103075,social commentary,1444802744 +47062,119141,hilarious,1444892547 +47062,119141,satire,1444892595 +47062,144218,canal parade,1444891645 +47062,144218,coming out,1444891804 +47062,144218,gay pride,1444892191 +47062,144218,heist,1444891648 +47062,144218,hilarious,1444892194 +47062,144218,transvestite,1444892183 +47062,144218,transvestites,1444892180 +47066,47,great ending,1368521464 +47066,111,masterpiece,1368521241 +47066,288,brutality,1368521412 +47066,296,masterpiece,1368521241 +47066,318,great ending,1368521464 +47066,904,suspenseful,1368521388 +47066,923,masterpiece,1368521241 +47066,1088,dancing,1368521446 +47066,1161,Nazis,1429083434 +47066,1161,Oscar,1429083419 +47066,1219,suspenseful,1368521388 +47066,1258,masterpiece,1368521241 +47066,1295,Juliette Binoche,1375048814 +47066,1295,milan kundera,1375048759 +47066,1295,prague,1375048705 +47066,1295,prague spring,1375048774 +47066,1537,dancing,1368521446 +47066,3083,women,1368521312 +47066,3677,Iran,1366489282 +47066,3677,music,1366489288 +47066,3677,nature,1366489309 +47066,3677,world,1366489293 +47066,4014,Chocolat,1384468011 +47066,4014,Juliette Binoche,1384467911 +47066,4085,detective,1368521506 +47066,5608,psychology,1332177859 +47066,5608,thought-provoking,1332177873 +47066,5878,friendship,1418945229 +47066,5878,psychology,1418945214 +47066,5878,Tragedy,1418945219 +47066,6910,original,1368133722 +47066,7323,East Germany,1332177738 +47066,32587,brutality,1368521413 +47066,32906,Human being,1342427273 +47066,32906,Partisan,1342427252 +47066,32906,WWII,1342427213 +47066,48682,Stadium,1342427378 +47066,49394,Christ,1352762273 +47066,49394,Satan,1352762233 +47066,49394,Spanish,1352762315 +47066,55442,animation,1342427437 +47066,55442,Islamic Revolution of Iran,1342427415 +47066,62374,Golshifteh Farahani,1352888284 +47066,69761,Farsi,1384961924 +47066,69761,Persian,1384961918 +47066,71108,black and white,1384961526 +47066,71108,cinematograp,1384961441 +47066,71108,ending,1384961409 +47066,71108,human nature,1384961478 +47066,71108,open ending,1384961547 +47066,71108,violence,1384961478 +47066,82934,Cold War,1342427176 +47066,82934,Richard Nixon,1342427082 +47066,82934,Robert Mcnamara,1342427115 +47066,82934,The New York Times,1342427156 +47066,85774,Alain Prost,1437262462 +47066,85774,brazil,1437262444 +47066,85774,drama,1437262438 +47066,85774,Formula 1 racing,1437262429 +47066,89759,Farsi,1384962061 +47066,89759,Iran,1384962107 +47066,89759,open ending,1384962101 +47066,89759,Oscar,1384962075 +47066,89759,Oscar (Best Foreign Language Film),1384962088 +47066,89759,Persian,1384962055 +47066,97304,embassy,1352847254 +47066,97826,Afghanistan,1384961783 +47066,97826,Farsi,1384961727 +47066,97826,Golshifteh Farahani,1384961742 +47066,97826,Persian,1384961721 +47066,97933,Gaza,1359412357 +47066,97933,Israeli/Palestinian conflict,1359412407 +47066,97933,resistance,1359412369 +47066,102753,Ali Mosaffa,1384962010 +47066,102753,French,1384961891 +47066,106452,Jewish,1384961196 +47066,106452,Pawel Pawlikowski,1384961835 +47066,106452,Polish movie,1384961249 +47066,106452,religion,1384961226 +47066,106745,Alber Camus,1385895590 +47066,106745,based on a book,1385895656 +47066,106745,phylosophycal,1385895671 +47093,1,Pixar,1453322633 +47093,1,toys,1453322706 +47093,10,007,1453322568 +47093,10,James Bond,1453322546 +47093,196,alien,1440419606 +47093,196,creature feature,1440419619 +47093,208,Smeat,1170051705 +47093,590,white guilt,1418084332 +47093,595,Disney,1170054601 +47093,778,United Kingdom,1170055963 +47093,858,mafia,1147665720 +47093,858,New York,1418084432 +47093,858,organized crime,1147665723 +47093,858,Oscar (Best Actor),1418084461 +47093,858,Oscar (Best Directing),1418084486 +47093,858,Oscar (Best Picture),1418084467 +47093,1208,Philippines,1261721911 +47093,1208,Vietnam,1261721911 +47093,1208,Vietnam War,1261721911 +47093,1211,Berlin,1258698612 +47093,1211,Deutsch,1258698612 +47093,1211,wall,1258698612 +47093,1221,Lake Tahoe,1147665791 +47093,1221,mafia,1147665791 +47093,1221,New York City,1147665791 +47093,1244,New York,1216435263 +47093,1264,avant garde,1293170082 +47093,1264,Paris,1293170082 +47093,1289,civilization,1261722424 +47093,1289,landscape,1271731474 +47093,1289,nature,1261722424 +47093,1289,Philip Glass,1261722424 +47093,1289,technology,1261722424 +47093,1483,cars,1259641754 +47093,1483,crash,1259641754 +47093,1483,Los Angeles,1259641754 +47093,1483,noir,1259641754 +47093,1483,sex scenes,1259641754 +47093,1483,sexuality,1259641754 +47093,1584,Aricebo,1261721755 +47093,1584,astronomy,1261721755 +47093,1584,Carl Sagan,1261721755 +47093,1584,Scorocco NM,1261721755 +47093,1645,courtroom,1291606703 +47093,1711,Savannah GA,1261370180 +47093,1722,Hong Kong,1360098128 +47093,1722,James Bond,1360098128 +47093,1829,Hong Kong,1418084239 +47093,2022,Peter Gabriel,1179080346 +47093,2023,mafia,1147665922 +47093,2023,New York City,1147665922 +47093,2146,Brat Pack,1241114807 +47093,2146,friendship,1241114786 +47093,2146,Washington DC,1241114791 +47093,2194,Chicago IL,1394668840 +47093,2273,Hong Kong,1383957815 +47093,2416,New York NY,1436674147 +47093,2512,Hokaido,1418084121 +47093,2512,Japan,1418084119 +47093,2563,biography,1296731412 +47093,2563,history,1296731759 +47093,2563,Venice,1296731442 +47093,2730,father son relationship,1264979469 +47093,2730,rags to riches,1264979498 +47093,2730,social climbing,1264979479 +47093,2774,Vancouver BC,1282886075 +47093,2918,Chicago,1311980459 +47093,2934,dance,1170055147 +47093,2934,Gypsy,1170055147 +47093,3072,New York,1261877205 +47093,3081,New York,1448256085 +47093,3081,Tarrytown NY,1448256114 +47093,3359,Bloomington IN,1431404207 +47093,3359,cycling,1431404213 +47093,3359,sports,1431404218 +47093,3707,New York,1418083910 +47093,3967,adolescence,1323057380 +47093,3967,British,1323057380 +47093,3967,dance,1323057380 +47093,3967,identity,1323057380 +47093,3967,United Kingdom,1323057401 +47093,4022,marooned,1261722228 +47093,4037,con men,1146196295 +47093,4037,confidence game,1146196295 +47093,4144,authentic,1261722333 +47093,4144,Fire King Jadite,1261722311 +47093,4144,Hong Kong,1261721662 +47093,4144,loneliness,1261722311 +47093,4253,Lake Superior,1170055231 +47093,4334,Chinese,1241112602 +47093,4334,enlightening,1241112909 +47093,4334,family,1216435139 +47093,4334,intimate,1241112920 +47093,4334,life crisis,1241112651 +47093,4334,modern China,1241113004 +47093,4334,reflective,1241112800 +47093,4334,relationships,1216435139 +47093,4334,resonant,1241112878 +47093,4334,Taipei,1241112829 +47093,4334,Taiwan,1241112827 +47093,4334,warm,1241112821 +47093,4334,wistful,1241112812 +47093,4391,cinematography,1241113195 +47093,4391,food,1241113297 +47093,4391,Hanoi,1241113616 +47093,4391,love,1241113297 +47093,4391,scenic,1241113164 +47093,4391,sensuous,1241113734 +47093,4391,tropical,1241113562 +47093,4391,Vietnam,1241113122 +47093,4529,American Southwest,1261722168 +47093,4529,desert,1261722168 +47093,4975,New York,1261721563 +47093,4978,Australia,1165909643 +47093,4978,Australian,1165909660 +47093,4978,New South Wales,1165909643 +47093,4978,Sydney,1165909643 +47093,5068,Beijing,1418084141 +47093,5068,boys,1229751316 +47093,5068,Chinese,1418084145 +47093,5068,teenagers,1229751316 +47093,5110,slapstick,1305518989 +47093,5110,Vermont,1305518989 +47093,5225,Mexico,1285292579 +47093,5225,sex scenes,1285292650 +47093,5225,sexuality,1285292650 +47093,5325,skateboarding,1408350741 +47093,5643,landscape,1271731577 +47093,5759,bands,1227105404 +47093,5759,cult film,1227105404 +47093,5765,Bugs Bunny,1216434605 +47093,5952,Tolkein,1170053496 +47093,6163,erotomania,1272848611 +47093,6215,Laurel Canyon,1160167749 +47093,6215,Los Angeles,1160167395 +47093,6215,on location,1160167749 +47093,6328,asylum,1239675715 +47093,6328,spring,1239675723 +47093,6328,war,1239675736 +47093,6382,Chinese,1241113811 +47093,6382,friendship,1241113811 +47093,6382,love,1241113811 +47093,6382,music,1241113785 +47093,6382,talent,1241113811 +47093,6382,violin,1241113787 +47093,6668,China,1240500665 +47093,6711,atmospheric,1408340138 +47093,6711,Japan,1408340082 +47093,6711,poignant,1408340091 +47093,6711,urbane,1408340144 +47093,6711,wistful,1408340100 +47093,6874,David Carradine,1306045006 +47093,6874,Uma Thurman,1306045006 +47093,7438,Beijing,1306044961 +47093,7438,Cantonese,1306044961 +47093,7438,David Carradine,1306044961 +47093,7438,Uma Thurman,1306044961 +47093,7745,lush,1241113533 +47093,7745,scenic,1241113596 +47093,7745,sensuous,1241113722 +47093,7745,tropical,1241113593 +47093,7745,Vietnam,1241113530 +47093,7981,Hong Kong,1175203929 +47093,8645,Amaguana,1152948961 +47093,8645,Bogota,1152948937 +47093,8645,Columbia,1152949275 +47093,8645,Equador,1152948937 +47093,8645,Jackson Heights,1152948937 +47093,8645,New York,1152948937 +47093,8645,smuggling,1152949275 +47093,8645,trafficking,1152949275 +47093,8665,book adaptation,1241112160 +47093,8665,espionage,1241112160 +47093,8807,Asian American,1192949153 +47093,32444,dance,1248158715 +47093,32444,Gypsy,1248323591 +47093,33672,Los Angeles,1160166821 +47093,33672,skateboarding,1408350857 +47093,37475,bear,1241111579 +47093,37475,contemporary,1138998230 +47093,37475,Robert Redford,1241111535 +47093,37475,Wyoming,1241111446 +47093,37741,Harper Lee,1143784619 +47093,37741,Manitoba,1143784619 +47093,37741,New York City,1143784619 +47093,37857,animation,1170029778 +47093,37857,brighton beach,1170029679 +47093,37857,claymation,1170029778 +47093,37857,computer animation,1170029778 +47093,37857,neil gaiman,1170029691 +47093,37857,Rotoscope,1170029778 +47093,38886,Brooklyn,1241114336 +47093,38886,New York,1241114227 +47093,38994,England,1160576155 +47093,38994,London,1160576155 +47093,39183,Alberta,1144565604 +47093,39183,Calgary,1144565604 +47093,39183,Wyoming,1144565604 +47093,40819,country music,1141331722 +47093,40819,Johnny Cash,1141331722 +47093,40819,Memphis,1141331722 +47093,40819,Nashville,1141331722 +47093,40819,Oscar nominated,1141331722 +47093,40955,gender identity confusion,1137909534 +47093,40955,Ireland,1137909534 +47093,40955,London,1137909534 +47093,41285,London,1139826805 +47093,41573,American Sign Language,1137910456 +47093,41573,Connecticut,1137910457 +47093,41573,loss,1137910454 +47093,41573,love,1137910455 +47093,41573,Massachusetts,1137910454 +47093,41573,relationships,1137910457 +47093,41575,Hong Kong,1149746636 +47093,41863,desert,1241114001 +47093,41863,immigration,1241114091 +47093,41863,murder,1241114076 +47093,41863,Texas,1241114005 +47093,42004,Arizona,1144899858 +47093,42004,New York,1144899858 +47093,42018,based upon a true story,1146196058 +47093,42018,England,1146196058 +47093,42018,George VI,1146196058 +47093,42018,London,1146196058 +47093,42018,mores,1146196058 +47093,42018,nudity,1146196058 +47093,42018,vaudville,1146196058 +47093,42018,widowhood,1146196058 +47093,42018,Windmill Theater,1146196058 +47093,42018,World War II,1146196058 +47093,42721,vampire,1241109782 +47093,42732,Austria,1141331769 +47093,43396,Bonneville Salt Flats,1144899382 +47093,43396,Invercargill,1144899382 +47093,43396,New Zealand,1144899382 +47093,43910,concert,1146195295 +47093,43910,guitar,1146195295 +47093,43910,harmonica,1146195295 +47093,43910,Nashville,1146195295 +47093,43910,Ryman Theater,1146195295 +47093,43910,Tennessee,1146195295 +47093,44197,courtroom,1147665343 +47093,44197,jury trial,1147665343 +47093,44197,La Cosa Nostra,1147665343 +47093,44197,mafia,1147665343 +47093,44197,New York,1170055397 +47093,44197,organized crime,1147665343 +47093,44197,Rudy Guiliani,1147665343 +47093,44197,true story,1147665343 +47093,44199,bank robbery,1147665482 +47093,44199,heist,1147665482 +47093,44199,New York City,1147665482 +47093,44199,scheme,1147665497 +47093,44204,Johannesburg,1149746556 +47093,44204,Soweto,1149746556 +47093,44555,arts,1177688747 +47093,44555,corruption,1177688747 +47093,44555,Deutsch,1177688682 +47093,44555,Deutschland,1177688682 +47093,44555,Germany,1177688693 +47093,44555,Stasi,1177688747 +47093,44555,suicide,1177688747 +47093,44613,dance,1170055313 +47093,44613,fiction,1241114996 +47093,44613,New York,1241114912 +47093,44613,nonfiction,1241114993 +47093,44613,urban,1241114912 +47093,44761,San Clemente,1152336431 +47093,44761,San Clemente High School,1152336443 +47093,44864,Los Angeles,1147665397 +47093,45028,Garrison Keilor,1155000072 +47093,45210,9/11,1241111748 +47093,45210,aviation,1241111753 +47093,45210,Boston,1241111737 +47093,45210,New York City,1241111735 +47093,45210,Pinewood Studios,1150253564 +47093,45210,terrorism,1241111767 +47093,45447,London,1154999923 +47093,45447,Paris,1154999923 +47093,45517,Disney,1155786821 +47093,45517,Pixar,1155786821 +47093,45672,Culver City,1155786653 +47093,45672,New York,1418084288 +47093,45672,visual design,1418084294 +47093,45720,alliances,1162968200 +47093,45720,career,1418084349 +47093,45720,fashion,1418084341 +47093,45720,New York,1418084343 +47093,45720,Paris,1418084345 +47093,45928,Burbank CA,1273807569 +47093,45928,California,1273807569 +47093,45928,corruption,1273807569 +47093,45928,Detroit MI,1273807569 +47093,45928,engineering,1273807569 +47093,45928,General Motors,1273807656 +47093,45928,George W Bush,1273807676 +47093,45928,innovation,1273807569 +47093,45928,politics,1273807569 +47093,45928,sustainability,1273807569 +47093,45950,Al Gore,1171152159 +47093,45950,climate change,1171152094 +47093,45950,ecology,1171152094 +47093,45950,global warming,1171152053 +47093,45950,issue agenda,1171152159 +47093,45950,politics,1171152159 +47093,45950,sustainability,1171152094 +47093,45950,Washington DC,1171152038 +47093,46974,New York City,1159820134 +47093,47099,Alameda,1172896046 +47093,47099,Oakland,1172896046 +47093,47099,San Francisco,1172896046 +47093,47200,adrenaline junkie,1162968553 +47093,47200,alliances,1162968553 +47093,47200,Los Angeles,1162968553 +47093,47200,stupid,1418084314 +47093,47629,biography,1176076265 +47093,48304,Costa Rica,1169198985 +47093,48304,gore,1418084024 +47093,48304,Honduras,1169198985 +47093,48304,Native Americans,1418084063 +47093,48304,violence,1418084054 +47093,48385,Los Angeles,1169198868 +47093,48385,New York,1169198868 +47093,48385,New York City,1169198868 +47093,48385,Washington DC,1169198868 +47093,48780,Nikolai Tesla,1205486475 +47093,49132,Austin,1170029448 +47093,49132,Dallas,1170029449 +47093,49132,Dixie Chicks,1170029449 +47093,49132,free speech,1170029449 +47093,49132,George W Bush,1170029448 +47093,49132,Iraq War,1170029448 +47093,49132,London,1170029449 +47093,49132,Los Angeles,1170029448 +47093,49132,New York,1170029449 +47093,49132,protest,1170029449 +47093,49132,speech,1170029448 +47093,49132,United Kingdom,1170029448 +47093,49272,Bahamas,1164759696 +47093,49272,Hungary,1164759696 +47093,49272,James Bond,1164759286 +47093,49272,Lake Como,1418084222 +47093,49272,London,1164759696 +47093,49272,Montenegro,1164759696 +47093,49272,poker,1164760086 +47093,49272,St. Johns,1164759696 +47093,49272,Venice,1164759696 +47093,49530,Bedford Falls Production Company,1418084176 +47093,49530,Edward Zwick,1418084166 +47093,49530,London,1170029240 +47093,49530,Maputo,1170029240 +47093,49530,Marshall Hershkovitz,1418084180 +47093,49530,Mozambique,1170029240 +47093,49530,Sierra Leone,1170029240 +47093,49530,South Africa,1170029240 +47093,49530,United Kingdom,1170029240 +47093,49822,Bay of Pigs,1166658108 +47093,49822,Central Intelligence Agency,1166658108 +47093,49822,Cold War,1166658108 +47093,49822,Edwin Wilson,1166658108 +47093,49822,history,1166658108 +47093,49822,New York,1166658108 +47093,49822,United States,1166658108 +47093,49822,Washington DC,1166658108 +47093,49961,Cavendish Hotel,1173736106 +47093,49961,East Sussex,1173736106 +47093,49961,Eastbourne,1173736106 +47093,49961,England,1173736106 +47093,49961,Hampstead,1173736106 +47093,49961,Hampstead Heath,1173736106 +47093,49961,Haverstock Arms,1173736106 +47093,49961,Haverstock Hill,1173736106 +47093,49961,London,1173736106 +47093,49961,Parliament Hill,1173736106 +47093,49961,Royal Parade,1173736106 +47093,49961,United Kingdom,1173736106 +47093,50872,food,1192949295 +47093,50872,Pixar,1192949295 +47093,51418,Apple,1176003402 +47093,51418,King's Crossing,1176003384 +47093,51418,London,1176003384 +47093,51418,Macintosh,1176003402 +47093,51471,England,1241115142 +47093,51471,history,1418083973 +47093,51471,London,1176003449 +47093,51471,parliament,1241115060 +47093,51471,political drama,1241115074 +47093,51471,slavery,1176003491 +47093,51931,Manhattan,1177689018 +47093,51931,New York,1177689018 +47093,51931,post-traumatic stress disorder,1177689018 +47093,52767,7 Up,1418083885 +47093,53123,London,1205487422 +47093,53123,United Kingdom,1205487422 +47093,53894,corruption,1184273754 +47093,53894,Cuba,1184273754 +47093,53894,health care,1184273754 +47093,53894,insurance,1184273754 +47093,53894,politics,1184273754 +47093,54190,Beatles,1241110318 +47093,54190,Beatles soundtrack,1241110424 +47093,54190,Julie Taymor,1241110342 +47093,54190,rock and roll,1418083940 +47093,54286,book adaptation,1241112091 +47093,58047,New York,1260365725 +47093,58803,blackjack,1241110092 +47093,58803,book adaptation,1241110072 +47093,58803,embellished,1241110604 +47093,58803,fiction,1418083872 +47093,58803,gambling,1241109827 +47093,58803,Massachusetts Institute of Technology,1241109811 +47093,58803,nonfiction,1241109984 +47093,58803,title sequence,1241110147 +47093,59369,espionage,1260365528 +47093,59369,Paris,1260365528 +47093,60069,Pixar,1222569783 +47093,61160,shallow,1241113873 +47093,61246,campy,1316402610 +47093,61246,Tucson AZ,1316402596 +47093,61357,African American,1253456968 +47093,61357,Cinema Verité,1253456968 +47093,61357,Hurricane Katrina,1253456968 +47093,61357,New Orleans,1253456968 +47093,61357,United States,1253456968 +47093,62344,Connecticut,1227418512 +47093,62344,depression,1227418512 +47093,62344,family dynamics,1227418512 +47093,62344,grief,1227418511 +47093,62344,relationships,1227418512 +47093,62344,Stamford CT,1227418512 +47093,62434,Kevin Smith,1241112278 +47093,62434,light-hearted,1224733808 +47093,62434,Monroeville,1224733808 +47093,62434,Pennsylvania,1224733808 +47093,62434,Pittsburgh,1224733808 +47093,62434,winter,1224733808 +47093,63082,Bollywood influence,1241114709 +47093,63082,book adaptation,1241114535 +47093,63082,India,1241114738 +47093,63082,Mumbai,1241114511 +47093,63082,poverty,1241114758 +47093,63113,James Bond,1453322336 +47093,64034,Holocaust,1229222361 +47093,64034,irony,1229222196 +47093,64034,Nazi,1229222196 +47093,64034,Nazi Germany,1229222196 +47093,64701,France,1230793983 +47093,68073,British,1261369535 +47093,68073,North Sea,1261369535 +47093,68848,caper,1250859280 +47093,69481,explosions,1262117410 +47093,69481,Iraq War,1262117410 +47093,70286,improbable,1259641522 +47093,70286,South Africa,1259641522 +47093,70286,white guilt,1418084359 +47093,71282,Michael Pollan,1261370338 +47093,71466,sentimental,1325739130 +47093,72998,3D,1262112121 +47093,72998,bad science,1262112438 +47093,72998,effects,1262112330 +47093,72998,graphic design,1262112330 +47093,72998,IMAX,1262112121 +47093,72998,informatics,1262112330 +47093,72998,white guilt,1262112464 +47093,74324,autism,1287250327 +47093,74324,genius,1287250327 +47093,80185,geology,1287181951 +47093,80185,Marcellus Shale,1287181951 +47093,80185,petroleum,1287181951 +47093,80185,road trip,1287181951 +47093,80185,travelogue,1287181951 +47093,81191,education,1295846118 +47093,81191,heartbreaking,1295932015 +47093,81191,literacy,1295932015 +47093,81191,schools,1295846118 +47093,81191,teachers,1295932015 +47093,81191,unions,1295932015 +47093,81229,unbelievable,1292921439 +47093,81229,Washington DC,1292921439 +47093,81562,Blue John Canyon,1418083855 +47093,81562,Utah,1298172942 +47093,81562,wilderness,1298172917 +47093,82459,justice,1293519544 +47093,82459,New Mexico,1293519505 +47093,82459,remake,1293481391 +47093,82459,Texas,1293519510 +47093,85020,espionage,1306036227 +47093,85020,New Orleans,1306036227 +47093,90374,Nudity (Topless - Brief),1324638494 +47093,90374,sex,1324638493 +47093,90374,sexuality,1324638494 +47093,90374,Sexualized violence,1324638489 +47093,90374,weak ending,1324638534 +47093,90439,career,1324638719 +47093,90439,financial crisis,1324638674 +47093,90439,identity crisis,1324638906 +47093,90439,New York City,1324638852 +47093,90439,suspense,1324638782 +47093,91529,bizarre,1353508081 +47093,91529,convoluted,1353508081 +47093,91529,dystopia,1353508081 +47093,91529,New York City,1353508081 +47093,91529,surreal,1353508081 +47093,91658,architecture,1332963000 +47093,91658,female warriors,1332963000 +47093,91658,feminism,1332963000 +47093,91658,hacker,1332963000 +47093,91658,plot hole,1332963000 +47093,91658,Stockholm,1332963000 +47093,91658,superficial,1332963000 +47093,91658,Sweden,1332963000 +47093,94070,India,1429920485 +47093,94070,"Jaipur, Rajasthan IN",1429920642 +47093,94959,coming of age,1437794115 +47093,94959,dialogue,1437794205 +47093,94959,quirky,1437794242 +47093,94959,stylized,1437794248 +47093,96079,cinematography,1360094675 +47093,96079,James Bond,1360094675 +47093,96079,locations,1360094675 +47093,96079,London,1360094675 +47093,96079,Scotland,1360094675 +47093,96079,Shanghai,1360094675 +47093,96079,Turkey,1360094675 +47093,97306,Joshua Tree National Park,1353879400 +47093,97860,architecture,1357444365 +47093,97860,cinematography,1357444365 +47093,97860,gore,1357444365 +47093,97860,gritty,1357444365 +47093,97860,guns,1357444365 +47093,97860,New Orleans,1357444365 +47093,97860,violence,1357444365 +47093,97923,alcoholism,1356320030 +47093,97923,Atlanta,1356320043 +47093,97923,Georgia,1356320048 +47093,97923,verisimilitude,1356320010 +47093,97938,Montreal,1362525244 +47093,97938,Pondicherry,1362525244 +47093,97938,Taipei,1362525244 +47093,98154,historically inaccurate,1362927893 +47093,98154,Oscar 2013,1362927922 +47093,98154,US Civil War,1362927953 +47093,98961,fictional history,1364391092 +47093,98961,inaccurate,1364391092 +47093,98961,intel,1364391089 +47093,98961,military,1364391079 +47093,98961,Pakistan,1364391071 +47093,98961,United States,1364391116 +47093,98961,war,1364391139 +47093,100383,insider trading,1362928043 +47093,100383,New York,1362928023 +47093,100714,Greece,1376697213 +47093,102088,Foshan,1380856146 +47093,102088,Guangdong,1380856146 +47093,102088,history,1380856555 +47093,102088,history epic,1380856146 +47093,102088,Hong Kong,1380856146 +47093,102088,Ip Man,1380856146 +47093,102088,war,1380856146 +47093,102123,Hollywood,1376697161 +47093,102123,Hollywood CA,1376697161 +47093,103539,Athens GA,1380856371 +47093,103539,Atlanta GA,1380856371 +47093,103624,Oakland CA,1378452341 +47093,103624,Oscar Grant,1378452364 +47093,104841,bad science,1397662304 +47093,104841,cheesy,1397662309 +47093,104841,cinematography,1397662258 +47093,104841,Lake Powell AZ,1397662258 +47093,104841,space program,1397662258 +47093,105359,adolescence,1420833857 +47093,105359,alcoholism,1420833857 +47093,105359,mother daughter relationship,1420833857 +47093,106438,atheism,1395890679 +47093,106438,Christianity,1395890679 +47093,106438,corruption,1395890679 +47093,106438,Ireland,1395890679 +47093,106438,Washington DC,1395890679 +47093,106766,New York City,1394828812 +47093,106841,Great Plains,1394828760 +47093,106841,Oklahoma,1394828760 +47093,106920,architecture,1392527181 +47093,106920,Los Angeles,1392528282 +47093,106920,love,1392528272 +47093,106920,modern architecture,1392527181 +47093,106920,psychology,1392528272 +47093,106920,Shanghai,1392527181 +47093,106920,singularity,1392528244 +47093,106920,trains,1392527181 +47093,106920,transit,1392527181 +47093,106920,travel,1392527181 +47093,107069,Navy SEALs,1395890805 +47093,109487,Alberta,1422871919 +47093,109487,astronomy,1422872050 +47093,109487,bad science,1422872033 +47093,109487,corny,1422872144 +47093,109487,Hans Zimmer,1422872135 +47093,109487,Iceland,1422871912 +47093,109487,physics,1422872126 +47093,109487,relativity,1422872064 +47093,109487,space,1422872026 +47093,109487,time travel,1422872158 +47093,110730,artificial intelligence,1417292871 +47093,110730,consciousness,1417292920 +47093,110730,contrived,1417292906 +47093,110730,impossible science,1417292864 +47093,110730,Los Angeles,1417292806 +47093,110730,New Mexico,1417292806 +47093,110730,science is magic,1417292855 +47093,110730,technophobia,1417292954 +47093,111443,Austin,1408335975 +47093,111443,entrepreneurs,1406590930 +47093,111443,food,1406590935 +47093,111443,Los Angeles,1408336026 +47093,111443,Miami,1408335975 +47093,111443,road trip,1408336039 +47093,111443,Twitter,1408335975 +47093,111443,venture,1406590937 +47093,111622,bittersweet,1408335763 +47093,111622,music,1408335763 +47093,111622,New York,1408335763 +47093,111622,trite,1408335760 +47093,112316,Americana,1405204132 +47093,112316,biography,1405204149 +47093,112316,history,1405204169 +47093,112316,music,1405204136 +47093,112316,New Jersey,1405204197 +47093,112316,quartet,1405204144 +47093,112552,Academy Award Nominee,1428810945 +47093,112552,intense,1428911112 +47093,112552,jazz,1428810959 +47093,112552,musicians,1428810574 +47093,112552,New York,1428911103 +47093,114662,Morocco,1427860810 +47093,114662,Persian Gulf War II,1427860801 +47093,114662,post-traumatic stress disorder,1427860654 +47093,115149,dog killing,1418083814 +47093,115149,New York,1418083698 +47093,115713,artificial intelligence,1435034700 +47093,115713,cybernetics,1435034799 +47093,115713,nudity (full frontal),1435034696 +47093,115713,technology,1435034709 +47093,115713,thriller,1435034783 +47093,116161,Academy Award Nominee,1424405027 +47093,116161,competition,1424404925 +47093,116161,history,1424404937 +47093,116161,Pennsylvania,1424404772 +47093,116161,social status,1424404930 +47093,116161,sport,1424405048 +47093,116161,wrestling,1424405042 +47093,116797,Alan Turing,1427860324 +47093,116797,autism,1427860934 +47093,116797,cryptography,1427861048 +47093,116797,genius,1427861059 +47093,116797,history,1427861061 +47093,116797,homosexuality,1427860961 +47093,116797,informatics,1427861059 +47093,116797,London,1427861057 +47093,116797,war,1427861064 +47093,116797,World War II,1427860273 +47093,116823,Atlanta GA,1424551927 +47093,116823,bad science,1424551898 +47093,116823,false notes,1424551879 +47093,116823,Paris,1424551917 +47093,116841,"Amman, Jordan",1418084923 +47093,116841,history,1418085061 +47093,116841,iran,1421964779 +47093,116841,journalism,1421964779 +47093,116841,prison,1421964779 +47093,116841,"Tehran, Iran",1418084944 +47093,117466,Canary Islands,1453611273 +47093,117466,Herman Melville,1453611292 +47093,117466,Moby Dick,1453611286 +47093,117466,whale oil,1453611310 +47093,117466,whaling,1453611306 +47093,117881,Alzheimer's disease,1428810763 +47093,117881,Columbia University,1428810820 +47093,117881,New York,1428810778 +47093,118700,Academy Award Nominee,1424405089 +47093,118700,Alabama,1424405082 +47093,118700,history,1424405086 +47093,118700,police brutality,1424404704 +47093,118700,racism,1424404637 +47093,118898,1981,1424551814 +47093,118898,Detroit,1424551781 +47093,118898,enterprise,1424551836 +47093,118898,entrepreneur,1424551838 +47093,118898,New York,1424551785 +47093,118900,California,1425183968 +47093,118900,cinematography,1425184674 +47093,118900,coping,1425184028 +47093,118900,discovery,1425184722 +47093,118900,grief,1425184020 +47093,118900,hiking,1425183970 +47093,118900,vistas,1425184680 +47093,123947,grief,1425184097 +47093,123947,Los Angeles,1425184121 +47093,123947,post-traumatic stress disorder,1425184658 +47093,123947,trauma,1425184100 +47093,127136,journalism,1430601854 +47093,129428,India,1429921106 +47093,129428,"Jaipur, Rajasthan IN",1429921108 +47093,129659,Los Angeles,1429916930 +47093,129659,McFarland CA,1429916919 +47093,129659,sports,1429917001 +47093,130452,Brooklyn NY,1435034593 +47093,130452,career,1435034638 +47093,130452,deception,1435034579 +47093,130452,success,1435034634 +47093,131796,arts,1434320492 +47093,131796,Austria,1434343770 +47093,131796,Gustav Klimt,1434343783 +47093,131796,Holocaust,1434343850 +47093,131796,Jews,1434343865 +47093,131796,Los Angeles,1434343710 +47093,131796,Nazi,1434343859 +47093,131796,painting,1434343884 +47093,131796,Vienna,1434343779 +47093,134130,Hungary,1451953084 +47093,134130,Mars,1451952979 +47093,134130,NASA,1451952975 +47093,134130,space travel,1451953066 +47093,134851,aging,1434232972 +47093,134851,Brooklyn,1434345043 +47093,134851,home,1434343906 +47093,134851,miscegenation,1434343902 +47093,134851,New York,1434343904 +47093,134851,real estate,1434343912 +47093,134853,bittersweet,1444508645 +47093,134853,childhood,1435034431 +47093,134853,coming of age,1444508597 +47093,134853,happiness,1434233176 +47093,134853,introspective,1444508632 +47093,134853,Pixar,1435034418 +47093,134853,psychology,1435034449 +47093,134853,sadness,1444508648 +47093,134853,San Francisco,1435034422 +47093,134881,Beach Boys,1434320338 +47093,134881,biography,1434320349 +47093,134881,Brian Wilson,1434320340 +47093,134881,genius,1434320342 +47093,134881,history,1435034380 +47093,136020,Bechdel test: fail,1453322186 +47093,136020,James Bond,1447024087 +47093,136020,London,1453322212 +47093,136020,Mexico City,1453322209 +47093,136020,Rome,1453322216 +47093,136020,"Tangier, Morocco",1453322215 +47093,136562,Apple,1448138192 +47093,136562,Steve Jobs,1448138173 +47093,139415,Bechdel Test:Fail,1441409485 +47093,143385,1957,1448776333 +47093,143385,Berlin,1448776344 +47093,143385,Central Intelligence Agency,1448775662 +47093,143385,Cold War,1448775623 +47093,143385,history,1448776350 +47093,143385,New York,1448776342 +47093,145839,football,1453585500 +47093,145839,medicine,1453611161 +47093,145839,National Football League,1453585496 +47093,145839,neuroscience,1453611146 +47093,145839,Pittsburgh PA,1453611116 +47097,7000,Really not that bad,1141121117 +47097,34338,Good but not that good,1140081772 +47097,37386,MTV,1145311218 +47097,39400,Joel Schumacher could have made a better movie!,1139912711 +47109,26354,grindhouse,1421677611 +47109,26354,japanese,1421677611 +47109,26354,martial arts flick,1421677611 +47109,27304,japanese,1422355876 +47109,27304,prison,1422355876 +47109,27304,revenge,1422355876 +47109,106906,b-movie,1420551328 +47109,106906,japanese,1420551328 +47109,106906,kaiju,1420551328 +47117,7254,intense,1247032659 +47117,7254,nudity,1247032639 +47117,8369,Agatha Christie-like,1247705563 +47117,8369,gore,1247705559 +47117,8970,fairy tale,1246731451 +47117,8970,heartwarming,1246731441 +47117,46976,quirky,1346659568 +47117,46976,surreal,1346659553 +47117,46976,touching,1346659578 +47117,69122,comedy,1272996793 +47117,86412,inspirational,1346649477 +47117,91500,based on a book,1333305688 +47117,91500,dystopia,1333305658 +47155,4022,WANT TO SEE,1451442062 +47173,48516,ensemble cast,1367575972 +47173,48516,suspense,1367575951 +47173,48516,twist ending,1367575995 +47173,48516,undercover cop,1367575991 +47173,55247,animals,1367576353 +47173,55247,inspirational,1367576339 +47173,55247,self discovery,1367576348 +47173,55247,true story,1367576349 +47173,96811,Jake Gyllenhaal,1432294405 +47173,115569,Jake Gyllenhaal,1432294733 +47200,260,sci-fi,1435895193 +47200,260,Star Wars,1435895198 +47202,1617,detective thriller,1437494473 +47202,1617,great acting,1437494451 +47202,1617,Kevin Spacey,1437494454 +47202,1617,neo-noir,1437494470 +47202,3949,atmospheric,1437494394 +47202,3949,based on a book,1437494388 +47202,3949,oscar (best directing),1437494380 +47202,3949,psychology,1437494364 +47202,3949,social commentary,1437494362 +47202,92259,based on a true story,1437494525 +47202,92259,feel good movie,1437494522 +47202,92259,friendship,1437494519 +47204,71468,alternate reality,1437510184 +47204,103667,quirky,1393559621 +47217,50,imdb top 250,1433316043 +47217,50,Kevin Spacey,1433316028 +47217,50,mindfuck,1433316020 +47224,99149,from novel,1423200438 +47224,99149,historical,1423200438 +47224,99149,musical,1423200438 +47251,7090,amazing photography,1145379702 +47251,7579,British,1145374679 +47251,7579,classic,1145374677 +47251,7579,Jane Austen,1145374675 +47251,8253,Hayao Miyazaki,1145913400 +47251,40629,Awful Remake,1145374665 +47251,40629,unnecessary,1145374671 +47251,41566,brilliant,1145394899 +47251,41566,Christian,1145394893 +47251,42011,a Hollywood political message,1145379584 +47251,42011,funny,1145379587 +47253,5995,holocaust,1137972371 +47253,6235,true story,1137273990 +47253,7256,true story,1137274016 +47282,1148,cute,1147894398 +47288,82244,circle shooting,1430042699 +47288,82244,gambling,1430042699 +47288,82244,games,1430042699 +47292,74458,twist ending,1433145254 +47292,109487,sci-fi,1433145229 +47296,91500,Strong female,1451067995 +47296,91529,encourage,1451068026 +47296,112556,amazing,1451067966 +47297,597,Julia Roberts,1160604741 +47297,597,pygmalion,1160604741 +47297,597,Richard Gere,1160604741 +47297,1479,adventure,1160604878 +47297,1479,elisabeth shue,1161980085 +47297,1479,international,1160604878 +47297,1479,science,1160604878 +47297,1479,spy,1161979919 +47297,1479,val kilmer,1161979919 +47297,1527,Bruce Willis,1160604701 +47297,1527,futuristic,1160604701 +47297,1527,Milla Jovovich,1160604701 +47297,1625,psychological,1160606408 +47297,3275,vigilante,1160606492 +47297,6754,Dark,1160654155 +47297,6754,fantacy,1160654155 +47297,6754,lichen,1160654155 +47297,6754,vampire,1160654155 +47297,8914,Deep,1160604809 +47297,8914,philosopical,1160604809 +47297,8914,sci-fi,1160604809 +47297,8914,time travel,1160604809 +47309,7483,Road Movie,1158521017 +47309,36517,Fernando Meirelles,1158519694 +47316,44555,Nudity (Topless - Brief),1186837101 +47335,32,brad pitt,1449834859 +47335,32,dystopia,1449834862 +47335,32,post-apocalyptic,1449834856 +47335,32,psychology,1449834864 +47335,32,Terry Gilliam,1449834867 +47335,32,time loop,1449834873 +47335,32,time travel,1449834852 +47335,1199,atmospheric,1449834805 +47335,1199,dystopia,1449834801 +47335,1199,surreal,1449834828 +47335,1199,Terry Gilliam,1449834812 +47335,1199,thought-provoking,1449834807 +47335,1199,weird,1449834815 +47335,1653,dystopia,1449834902 +47335,1653,intelligent,1449834912 +47335,1653,social commentary,1449834924 +47335,1653,thought-provoking,1449834905 +47335,1653,Uma Thurman,1449834916 +47335,53125,action,1449834312 +47335,53125,comedy,1449834286 +47335,53125,Johnny Depp,1449834291 +47335,70286,intelligent,1449834368 +47335,70286,mockumentary,1449834376 +47335,70286,unique,1449834360 +47335,79132,alternate reality,1449834733 +47335,79132,dreams,1449834738 +47335,79132,intellectual,1449834741 +47335,79132,Leonardo DiCaprio,1449834751 +47335,79132,sci-fi,1449834743 +47335,79132,surreal,1449834735 +47335,79132,thought-provoking,1449834758 +47335,111759,action,1449834638 +47335,111759,original plot,1449834640 +47335,111759,Reluctant Hero,1449834643 +47335,111759,repeating day,1449834656 +47335,111759,time loop,1449834628 +47335,111759,time travel,1449834652 +47351,107406,illogical,1451872003 +47351,107406,poor plot,1451871997 +47362,260,EPIC,1444431623 +47362,260,good science fiction,1444431648 +47362,260,good vs evil,1444431640 +47362,260,Science Fiction,1444431634 +47396,1263,Oscar (Best Picture),1360170994 +47396,1263,surreal,1360171005 +47396,1263,Vietnam War,1360171008 +47396,96811,cinematography,1360171026 +47396,96811,Jake Gyllenhaal,1360171031 +47396,96811,police,1360171020 +47427,141118,funny,1440556742 +47427,141118,love,1440556738 +47454,31555,Whistling boogers from outer space,1190160408 +47454,42723,tits and power tools,1174780339 +47454,48394,fantasy,1175211823 +47454,48394,world war II,1175211823 +47462,924,ade geia,1162179934 +47462,1251,surreal-Panos,1162180247 +47462,1263,surreal-Panos,1162180321 +47462,1682,surreal-Panos,1162179869 +47462,1754,should've got more attention brilliant,1162091409 +47462,2291,surreal-Panos,1162180008 +47462,2959,surreal-Panos,1162180278 +47462,2997,surreal-Panos,1162180214 +47462,4973,surreal-Panos,1162180147 +47462,7090,surreal-Panos,1162179823 +47462,7361,surreal-Panos,1162179855 +47462,7371,surreal-Panos,1162180017 +47462,7445,angry denzel,1144848363 +47462,8254,surreal-Panos,1162179718 +47462,8620,surreal-Panos,1162179846 +47465,54999,Clive Owen,1226750431 +47482,113275,beautiful,1433622019 +47482,113275,enjoyable,1433622019 +47482,113275,great soundtrack,1433622019 +47500,260,classic sci-fi,1442145309 +47500,260,entertaining,1442145322 +47529,1,Watched,1417736680 +47529,296,Watched,1417847104 +47529,356,Watched,1418028385 +47529,588,Watched,1417736095 +47529,595,Watched,1417736126 +47529,1080,Watched,1417937383 +47529,1136,Watched,1417851469 +47529,1193,Watched,1417770735 +47529,1200,Watched,1417770834 +47529,1214,Watched,1417770825 +47529,1320,Watched,1417770937 +47529,1566,Watched,1417736207 +47529,1907,Watched,1417736146 +47529,2081,Watched,1417736113 +47529,2288,Watched,1417770815 +47529,2340,watched,1417842982 +47529,2355,Watched,1417736275 +47529,2542,Watched,1417828103 +47529,2571,Watched,1417771015 +47529,2692,Watched,1417771067 +47529,2694,Watched,1417736467 +47529,2762,Watched,1417771163 +47529,2959,Watched,1417770756 +47529,3275,Watched,1418027641 +47529,3300,Watched,1417770894 +47529,3462,Watched,1417851284 +47529,3489,Watched,1417736832 +47529,3578,Watched,1418070268 +47529,3793,Watched,1418070354 +47529,3897,Watched,1418070200 +47529,3949,Watched,1417846758 +47529,3988,Watched,1417736492 +47529,3996,Watched,1417850378 +47529,4011,Watched,1417828093 +47529,4016,Watched,1417736257 +47529,4226,Watch,1418070299 +47529,4306,Watched,1417736692 +47529,4878,Watched,1417849687 +47529,4886,Watched,1417736284 +47529,4901,Watched,1417851635 +47529,4963,Watched,1418070438 +47529,4993,Watched,1417851430 +47529,5218,Watched,1417736328 +47529,5219,Watched,1418076982 +47529,5291,Watched,1417770674 +47529,5418,Watched,1417851598 +47529,5445,Watched,1417771098 +47529,5952,Watched,1417851339 +47529,5989,Watched,1418089731 +47529,6365,Watched,1418070492 +47529,6377,Watched,1417736311 +47529,6502,Watched,1418076632 +47529,6539,Watched,1418070390 +47529,6708,Watched,1418089859 +47529,6754,Watched,1417749312 +47529,6874,Watched,1417847000 +47529,6936,Watched,1417736448 +47529,7147,Watched,1418028243 +47529,7153,Watched,1417850535 +47529,7361,Watched,1417850306 +47529,7438,Watched,1417846982 +47529,8360,Watched,1417829164 +47529,8665,Watched,1417851615 +47529,8810,Watched,1417770977 +47529,8861,Watched,1418076949 +47529,8874,Watched,1417847045 +47529,8961,Watched,1417736752 +47529,8965,Watched,1417736502 +47529,25741,Watched,1417770691 +47529,27831,Watched,1417851124 +47529,30793,Watched,1417737159 +47529,31696,Watched,1418076537 +47529,32587,Watched,1417850578 +47529,33615,Watched,1417736351 +47529,36529,Watched,1417851060 +47529,41285,Watched,1418028354 +47529,41912,Watched,1417851810 +47529,42738,Watched,1418076402 +47529,43928,Watched,1418438626 +47529,44191,Watched,1417851505 +47529,44195,Watched,1418027834 +47529,45517,Watched,1417737525 +47529,46578,Watched,1417851147 +47529,46972,Watched,1418027508 +47529,47610,Watched,1417771151 +47529,48394,Watched,1417828057 +47529,48516,Watched,1417850287 +47529,48780,Watched,1417771133 +47529,50872,Watched,1417736622 +47529,52281,Watched,1417850597 +47529,53000,Watched,1418076609 +47529,53121,Watched,1417830009 +47529,53519,Watched,1417850617 +47529,54286,Watched,1417851588 +47529,54910,Watched,1418428828 +47529,54995,Watched,1417850629 +47529,55232,Watched,1418076481 +47529,55247,Watched,1417851767 +47529,56782,Watched,1418077053 +47529,58299,Watched,1417736510 +47529,58964,Watched,1417735917 +47529,59387,Watched,1417834102 +47529,59784,Watched,1417736724 +47529,60069,Watched,1417824274 +47529,61240,Watched,1417851534 +47529,62999,Watched,1417736395 +47529,63859,Watched,1417736812 +47529,65088,Watched,1418027490 +47529,65682,Watched,1418076439 +47529,66097,Watched,1417850969 +47529,67408,Watched,1417735952 +47529,68237,Watched,1418027699 +47529,68793,Watched,1418027531 +47529,68954,Watched,1417736644 +47529,69122,Watched,1417850927 +47529,70286,Watched,1417850430 +47529,71535,Watched,1417847076 +47529,71899,Watched,1418076914 +47529,72226,Watched,1417851077 +47529,74458,Watched,1417771194 +47529,74789,Watched,1417737241 +47529,76093,Watched,1417736707 +47529,76175,Watched,1418083710 +47529,78637,Watched,1417840001 +47529,79057,Watched,1418034218 +47529,79091,Watched,1417737052 +47529,79132,Watched,1417771056 +47529,80363,Watched,1418076467 +47529,81564,Watched,1417736744 +47529,81591,Watched,1417851240 +47529,81847,Watched,1417736057 +47529,85510,Watched,1418076797 +47529,86298,Watched,1417737557 +47529,89745,Watched,1417850347 +47529,90405,Watched,1418438448 +47529,91974,Watched,1418076856 +47529,94780,Watched,1417737375 +47529,94864,Watched,1417770878 +47529,95105,Watched,1417736413 +47529,95167,Watched,1417743442 +47529,96610,Watched,1417771086 +47529,96691,Watched,1418076754 +47529,97913,Watched,1417736570 +47529,98361,Watched,1417770107 +47529,99114,Watched,1417850407 +47529,100163,Watched,1418077374 +47529,101025,Watched,1417737364 +47529,101112,Watched,1417737332 +47529,103141,Watched,1417737116 +47529,103335,Watched,1417737081 +47529,103574,Watched,1418417195 +47529,104243,Watched,1417770948 +47529,106696,Watched,1417736020 +47529,107997,Watched,1418417280 +47529,109374,Watched,1417851489 +47529,110655,Watched,1417737575 +47529,111659,Watched,1417737342 +47529,114704,Watched,1417937454 +47529,114707,Watched,1417770485 +47529,114847,Watched,1417770453 +47529,116397,Watched,1417770250 +47529,117107,Watched,1417770177 +47546,97938,God's existance,1430733952 +47546,97938,visually appealing,1430733939 +47546,97938,wisdom,1430733971 +47546,109487,artificial intelligence,1430733821 +47546,109487,Christopher Nolan,1430733784 +47546,109487,Hans Zimmer,1430733805 +47546,109487,Masterpiece,1430733845 +47546,112556,extraordinary couple,1430734145 +47546,112556,rigirous,1430734145 +47546,112556,thrilling,1430734145 +47558,2676,schweigen der lämmer trifft gorillas im nebel,1137261272 +47561,260,classic,1439824694 +47561,260,space opera,1439824706 +47561,741,cyberpunk,1439824904 +47561,136449,cyberpunk,1439824891 +47567,260,popular,1441983143 +47567,260,sci-fi,1441983147 +47633,76251,soundtrack,1284969660 +47653,5791,Biography,1448845534 +47653,6957,surprisingly funny,1448845583 +47654,105869,bittersweet,1429741090 +47654,105869,historical,1429741100 +47654,105869,lgbt,1429741094 +47654,105869,murder,1429741104 +47676,260,fantasy,1442702871 +47676,260,"sf,science fiction",1442702901 +47687,61132,Ben Stiller,1441662397 +47687,61132,Jack Black,1441662414 +47687,61132,Robert Downey Jr.,1441662394 +47687,61132,satire,1441662400 +47687,61132,Tom Cruise,1441662416 +47687,69122,comedy,1441661834 +47687,94677,funny,1441662450 +47687,94677,political satire,1441662446 +47687,94677,sacha baron cohen,1441662448 +47687,94677,satire,1441662444 +47687,103596,trash,1441743598 +47687,111781,Action,1442525636 +47687,111781,Tom Cruise,1442525639 +47687,113345,awful script,1441662492 +47709,367,corpal,1369806932 +47709,1276,the south,1369806210 +47709,1836,Chloe Sevigny,1369771583 +47709,2085,animation,1369807082 +47709,3052,funny,1369806361 +47709,3052,religion,1369806353 +47709,3081,dark,1369771713 +47709,3081,surreal,1369771717 +47709,3535,humorous,1369771799 +47709,3535,satire,1369771780 +47709,3535,violence,1369771771 +47709,3949,depressing,1369771872 +47709,3949,disturbing,1369771876 +47709,3949,vivid,1369771879 +47709,5971,cute,1376712429 +47709,5971,sad,1376712419 +47709,6792,russian,1369807706 +47709,7064,dark,1375070644 +47709,7334,Woody Allen,1375070169 +47709,8273,fast-moving,1369770802 +47709,8273,passionate,1369770798 +47709,31522,feminism,1433566263 +47709,31522,post-war,1433566259 +47709,36535,slow,1376865334 +47709,48997,based on a book,1369771822 +47709,67255,edgy,1369807191 +47709,67255,violence,1369807184 +47709,86066,dark humor,1433565961 +47709,86066,deadpan,1369807656 +47709,86066,funny,1369807653 +47709,86066,police,1433565961 +47709,86066,russia,1433565961 +47709,86066,satire,1369807665 +47709,86066,surreal,1369807662 +47709,98017,classical music,1369808610 +47709,98017,drama,1369808635 +47709,98017,philip seymour hoffman,1369808624 +47709,100344,advertising,1369770707 +47709,100344,comedy,1369770701 +47709,100344,funny,1369770728 +47709,100344,thought-provoking,1369770735 +47709,100344,unexpected,1369770714 +47709,103137,Poor acting,1388461123 +47709,104841,Cheesy,1388431518 +47709,104841,Space,1388431498 +47709,104841,Visually appealing,1388431508 +47709,105197,limited perspective,1388431609 +47709,105197,Middle America,1388431587 +47709,106920,loneliness,1396390870 +47709,106920,sci-fi,1396390844 +47716,68486,beautiful scenery,1428163767 +47716,68486,dark hero,1428163767 +47716,68486,easygoing,1428163767 +47725,483,Not on dvd,1218821603 +47725,846,Not on DVD,1218820878 +47725,2952,gem,1254282657 +47725,48516,Martin Scorsese,1254282640 +47725,48516,remake,1218650701 +47725,57669,violent,1254282651 +47733,260,sci-fi,1444088091 +47749,110,freedom,1244427157 +47749,110,war,1244427231 +47749,110,war strategy,1244427226 +47749,111,guns,1244423595 +47749,117,to see,1244476019 +47749,318,jailbreak,1244427431 +47749,318,sentimental,1244427342 +47749,780,alien invasion,1244422495 +47749,780,aliens,1244422493 +47749,780,sci-fi,1244422541 +47749,780,seen more than once,1244422560 +47749,780,war,1244422581 +47749,858,crime,1246064138 +47749,858,mature,1246064107 +47749,1206,disturbing,1242577391 +47749,1206,irreverent,1242577371 +47749,1208,far out,1244423172 +47749,1387,seen more than once,1240963358 +47749,1721,historic disaster,1242928988 +47749,1884,biopic,1244476697 +47749,1884,fragmented,1244477106 +47749,1884,humorous,1244476746 +47749,1884,satirical,1244476737 +47749,1917,apocalypse,1244422650 +47749,2028,violent,1244427048 +47749,2571,dystopia,1244477463 +47749,2571,meta society,1240964511 +47749,2571,sci fi,1240964446 +47749,2571,seen more than once,1240963363 +47749,2571,technology,1240964468 +47749,2959,seen more than once,1240963345 +47749,3052,trivial,1242576773 +47749,3535,business,1244475644 +47749,3535,fun,1244476085 +47749,3535,funny,1244476080 +47749,3535,going postal,1244475633 +47749,3535,humorous,1244475687 +47749,3535,insanity,1244475599 +47749,3535,lulz,1244475630 +47749,3535,new york,1244475701 +47749,3535,psychology,1244475660 +47749,4006,80's animation,1244565770 +47749,4006,80's music,1244565715 +47749,4006,Animation,1244565670 +47749,4006,bittunes,1252102448 +47749,4006,humour,1252102530 +47749,4006,mood,1252102534 +47749,4006,slow,1244565591 +47749,4006,stupid,1244565602 +47749,4006,ugly,1244565591 +47749,4034,seen more than once,1240963383 +47749,4310,big budget,1244422687 +47749,4310,War,1244422677 +47749,4741,nostalgic,1240963381 +47749,4741,witty,1240963381 +47749,4878,satirical,1252101085 +47749,4878,social commentary,1252101057 +47749,4979,seen more than once,1240963378 +47749,4993,seen more than once,1240963360 +47749,5952,seen more than once,1240963361 +47749,26007,black and white,1244566558 +47749,26007,funny,1244566965 +47749,26007,old,1244566417 +47749,26007,slightly retarded,1244566531 +47749,26974,death metal,1240963355 +47749,26974,glue sniffing,1240963356 +47749,26974,stoner rock,1240963356 +47749,27611,better than the old version,1244566101 +47749,27660,animation,1240963336 +47749,31410,imdb top 250,1242576979 +47749,31410,trivial,1242576947 +47749,31658,anti-war,1266433065 +47749,31658,war,1266433052 +47749,33725,dj,1244475553 +47749,33725,drugs,1244475556 +47749,34411,documentary,1243566658 +47749,34411,politics,1243566712 +47749,44974,claustrophobic,1242577043 +47749,44974,controversial,1242576875 +47749,45447,agnosticism,1242576414 +47749,45447,controversial,1242576490 +47749,46335,awesome,1244566228 +47749,46335,Drifiting,1244566252 +47749,46335,drifting,1244566293 +47749,46335,fantasy,1244566268 +47749,46347,bland,1244566388 +47749,46347,high school,1240963374 +47749,50601,fantasy,1244568270 +47749,51662,aggressive,1244422939 +47749,51662,light,1244423036 +47749,51662,macho,1244427115 +47749,51662,shallow,1244423028 +47749,51662,superficial,1244423033 +47749,51662,war,1244422977 +47749,52952,suburbia,1252101263 +47749,52952,urban,1252101274 +47749,54075,medieval,1240963342 +47749,55269,seen more than once,1240963343 +47749,55820,craftyness,1286633459 +47749,55820,DIY,1241361287 +47749,55820,macgyver,1241361268 +47749,57502,abstract,1246063363 +47749,57502,pale,1246063345 +47749,58297,apocalypse,1244568367 +47749,58297,cannibalism,1244568362 +47749,58297,futuristic,1244568384 +47749,58297,laid back,1244568442 +47749,58297,sci-fi,1244568390 +47749,58559,harsh,1240964566 +47749,58803,poker,1223688240 +47749,59126,funny,1240963377 +47749,59615,aliens,1242696280 +47749,59615,dirt,1242697395 +47749,59615,indiana jones,1244422419 +47749,59615,nuclear bomb,1242696286 +47749,59615,silly,1244422395 +47749,59615,Steven Spielberg,1242696293 +47749,60069,children,1242577541 +47749,60069,ecology,1242577552 +47749,60069,love story,1242577532 +47749,60069,pixar,1242577538 +47749,60069,Sci-Fi,1242577600 +47749,60069,social commentary,1242577604 +47749,60293,coming of age,1246062921 +47749,60293,dealing,1246062852 +47749,60293,depression,1246062988 +47749,60293,drugs,1246062860 +47749,60293,hip-hop,1246062868 +47749,60293,linear,1246063980 +47749,60293,new york,1246062874 +47749,60293,psychiatry,1246062910 +47749,60293,sex,1246062903 +47749,60293,slow,1246062973 +47749,60293,teens,1246062882 +47749,61257,consumerism,1246062451 +47749,61257,politics,1246062453 +47749,61257,taxes,1246062467 +47749,63992,vampires,1259867397 +47749,64285,funny,1244567130 +47749,64285,love,1244567113 +47749,66665,humorous,1259242170 +47749,66665,philosophical,1259242109 +47749,66665,quirky,1259242118 +47749,66665,searching,1259242050 +47749,66665,smart dialogues,1259241979 +47749,66665,soundtrack,1259242035 +47749,66665,sweet,1259242125 +47749,67255,computers,1244477319 +47749,67255,cool,1244477277 +47749,67255,dark,1244477178 +47749,67255,hackers,1260400152 +47749,68358,linear,1242864517 +47749,68358,sci-fi,1242864591 +47749,68554,agnosticism,1242575921 +47749,68554,controversial,1242576527 +47749,69844,disappointing,1250017493 +47749,69844,fantasy,1250017526 +47749,69844,funny,1250017512 +47749,69844,magic,1250017520 +47749,70533,Mechs,1264198494 +47749,71057,post-apocalyptic,1256520456 +47749,71057,predictable,1256520451 +47749,71057,robots,1256520475 +47749,71057,Simple,1256520437 +47749,71135,amnesia,1257813557 +47749,71135,blood,1257815155 +47749,71135,space,1257813566 +47749,71254,action,1258896141 +47749,71254,killing,1258896163 +47749,71254,light plot,1258896245 +47749,71254,mindcontrol,1258896191 +47749,71254,rave,1258896208 +47749,71254,sci-fi,1258896403 +47749,71254,virtual life,1258896110 +47749,72998,3d,1271792838 +47749,72998,military,1271792905 +47749,72998,sci-fi,1271792842 +47749,76738,bigtalk,1294714379 +47749,80463,computers,1300933854 +47749,87232,fantasy,1308688420 +47749,87232,prequel,1308688394 +47749,87232,show off,1308688496 +47749,87232,thin dialogue,1308688561 +47749,89774,touching,1330637149 +47757,231,So dumb it's funny,1179441313 +47757,8529,Catherine Zeta Jones,1179439132 +47757,8529,funny,1179439137 +47757,8529,one of the best movies ever,1179439108 +47757,8529,Steven Spielberg,1179439127 +47757,8529,Tom Hanks,1179439129 +47757,33836,Bewitched,1179441288 +47757,33836,Cute,1179441288 +47757,33836,Fiction,1179441288 +47757,33836,Nicole Kidman,1179441288 +47757,33836,Romantic Comedy,1179441288 +47757,33836,Will Ferrell,1179441231 +47757,45501,break-up,1178578412 +47768,260,classic,1444853800 +47768,260,sci-fi,1444853779 +47780,92259,funny,1436648766 +47793,1732,crime,1441862966 +47793,1732,dark comedy,1441862948 +47793,1732,great dialogue,1441862950 +47793,1732,violence,1441862967 +47794,260,classic sci-fi,1442097730 +47794,260,hero's journey,1442097709 +47803,48711,Christianity,1443534037 +47803,48711,Football,1443534043 +47806,260,classic,1439793426 +47806,260,sci-fi,1439793414 +47806,260,space,1439793403 +47808,3706,an undiscovered classic,1167702921 +47840,3883,Florida Film Festival Winner,1226837312 +47840,4788,Oscar (Best Foreign Language Film),1226837656 +47854,60684,social commentary,1443911046 +47854,60684,superhero,1443911042 +47854,60684,too long,1443911035 +47854,60684,visually appealing,1443911055 +47854,109487,beautiful,1423782380 +47854,109487,thrilling,1423782380 +47854,109487,twist ending,1423782380 +47854,109971,comedy,1427236906 +47854,109971,easygoing,1427236906 +47854,109971,spanish language,1427236906 +47854,113604,drama,1439947755 +47854,113604,touching,1439947751 +47854,115713,artificial intelligence,1443911126 +47854,115713,plot twist,1443911133 +47854,115713,thought provoking,1443911129 +47854,117529,Chris Pratt,1439949169 +47854,117529,exciting,1439949176 +47854,129354,unexpected end,1443911099 +47887,260,Harrison Ford,1444424617 +47887,260,Science Fiction,1444424607 +47897,32,original,1368790139 +47897,50,excellent script,1368790189 +47897,233,art house,1368790301 +47897,318,powerful ending,1368790404 +47897,356,life,1368790337 +47897,913,noir thriller,1368790157 +47897,1089,original,1368790139 +47897,1199,cerebral,1368790319 +47897,1199,visually stunning,1368790217 +47897,1213,stylish,1368790202 +47897,1249,stylish,1368790202 +47897,1527,visually stunning,1368790217 +47897,1954,fighting,1368790422 +47897,2076,art house,1368790300 +47897,2076,strange,1368790448 +47897,2140,wizards,1368790521 +47897,2193,wizards,1368790521 +47897,2291,original,1368790139 +47897,2353,conspiracy theory,1368790273 +47897,2410,fighting,1368790422 +47897,2858,excellent script,1368790188 +47897,2997,strange,1368790448 +47897,3114,original,1368790139 +47897,3476,strange,1368790448 +47897,3676,art house,1368790300 +47897,3996,visually stunning,1368790217 +47897,4226,complex,1368790257 +47897,4226,complicated plot,1368790354 +47897,5902,intellectual,1368790435 +47897,5945,life,1368790337 +47897,5952,wizards,1368790521 +47897,7153,wizards,1368790521 +47897,36535,better than expected from trailer,1182655574 +47897,44761,and unwatchable,1182655655 +47897,44761,pretentious,1182655655 +47897,44761,unbelievable,1182655655 +47897,79132,cerebral,1368790319 +47897,102903,stupid ending,1382700182 +47919,27397,War,1138029159 +47922,4088,Nudity (Topless - Notable),1171701830 +47922,5996,Nudity (Full Frontal - Notable),1171702536 +47922,6016,Nudity (Topless - Brief),1171652326 +47932,4776,ClearPlay,1254175592 +47932,4776,denzel washington,1254175583 +47932,4776,Ethan Hawke,1254175585 +47932,4776,Oscar (Best Actor),1254175601 +47932,4776,police,1254175616 +47932,4776,police corruption,1254175613 +47932,4776,To See,1254175608 +47932,6502,horror,1254174534 +47932,6502,pseudo-zombies,1254174541 +47932,6502,Zombie,1254174546 +47932,6502,zombies,1254174547 +47932,30707,boxing,1254174431 +47932,30707,Clint Eastwood,1254174427 +47932,30707,dark,1254174439 +47932,30707,drama,1254174434 +47932,30707,Hilary Swank,1254174479 +47932,41863,culture clash,1254175268 +47932,41863,death,1254175272 +47932,41863,Tommy Lee Jones,1254175264 +47932,42004,complex characters,1254174651 +47932,42004,cultural conflict,1254174690 +47932,42004,drugs,1254174702 +47932,42004,family bonds,1254174656 +47932,42004,sexuality,1254174683 +47932,42004,transgender,1254174677 +47932,42004,transsexuals,1254174679 +47932,48043,Darren Aronofsky,1254175513 +47932,48043,death,1254175493 +47932,48043,dreamlike,1254175492 +47932,48043,Music,1254175562 +47932,48043,sci-fi,1254175552 +47932,48043,time travel,1254175564 +47932,55765,corruption,1254174338 +47932,55765,Denzel Washington,1254174295 +47932,55765,drugs,1254174340 +47932,55765,Josh Brolin,1254174321 +47932,55765,Ridley Scott,1254174301 +47932,55765,Russell Crowe,1254174326 +47932,55765,true story,1254174332 +47932,57669,dark comedy,1254174141 +47932,57669,drama and commedy,1254174161 +47932,57669,drugs,1254174148 +47932,57669,friendship,1254174168 +47932,64197,dark,1254175715 +47932,64197,easily confused with other movie(s) (title),1254175720 +47932,64197,Ireland,1254175707 +47932,64197,true story,1254175710 +47932,64839,Aronofski,1254174830 +47932,64839,Character study,1254174835 +47932,64839,movie to see,1254174852 +47932,64839,sad,1254174875 +47932,64839,sport:professional wrestling,1254174877 +47932,64839,sports,1254174897 +47932,64839,touching,1254174880 +47932,68237,clones,1254174021 +47932,68237,dystopia,1254174012 +47932,68237,Sci-fi,1254173998 +47944,44195,Potential Oscar Nom,1167942937 +47944,44555,Oscar Nom 2007,1171658419 +47944,44694,Oscar Nom 2007,1169603373 +47944,44694,Potential Oscar Nom,1167942763 +47944,44974,Potential Oscar Nom,1169222857 +47944,45210,Oscar Nom 2007,1169603369 +47944,45210,Potential Oscar Nom,1167943150 +47944,45517,Oscar Nom 2007,1169603395 +47944,45517,Potential Oscar Nom,1167943109 +47944,45672,Oscar Nom 2007,1169603637 +47944,45720,Oscar Nom 2007,1169603429 +47944,45720,Potential Oscar Nom,1167942925 +47944,45880,Oscar Nom 2007,1169603433 +47944,45880,Potential Oscar Nom,1169222714 +47944,45928,Potential Oscar Nom,1169518048 +47944,45950,Oscar Nom 2007,1169603380 +47944,45950,Potential Oscar Nom,1168792421 +47944,46578,Oscar Nom 2007,1169603417 +47944,46578,Potential Oscar Nom,1167942955 +47944,46723,Oscar Nom 2007,1169603390 +47944,46723,Potential Oscar Nom,1167942817 +47944,46850,Potential Oscar Nom,1168792429 +47944,46948,Oscar Nom 2007,1169603436 +47944,46948,Potential Oscar Nom,1167943124 +47944,46974,Potential Oscar Nom,1167943158 +47944,46976,Potential Oscar Nom,1168874015 +47944,47099,Oscar Nom 2007,1169603419 +47944,47099,Potential Oscar Nom,1167942800 +47944,47423,Oscar Nom 2007,1169603408 +47944,47423,Potential Oscar Nom,1167943228 +47944,47610,Oscar Nom 2007,1169603588 +47944,47950,Potential Oscar Nom,1168792458 +47944,47999,Oscar Nom 2007,1171658432 +47944,48043,Potential Oscar Nom,1168792477 +47944,48142,Oscar Nom 2007,1169603573 +47944,48304,Oscar Nom 2007,1169603388 +47944,48304,Potential Oscar Nom,1169222755 +47944,48385,Oscar Nom 2007,1169603392 +47944,48385,Potential Oscar Nom,1167942820 +47944,48394,Oscar Nom 2007,1169603342 +47944,48394,Potential Oscar Nom,1169222728 +47944,48516,Oscar Nom 2007,1169603350 +47944,48516,Potential Oscar Nom,1167942726 +47944,48696,Oscar Nom 2007,1169603414 +47944,48696,Potential Oscar Nom,1167942766 +47944,48738,Oscar Nom 2007,1169603337 +47944,48738,Potential Oscar Nom,1167942982 +47944,48774,Oscar Nom 2007,1169603354 +47944,48774,Potential Oscar Nom,1169064130 +47944,48780,Oscar Nom 2007,1169603360 +47944,48780,Potential Oscar Nom,1167942810 +47944,48783,Oscar Nom 2007,1169603382 +47944,48783,Potential Oscar Nom,1167942773 +47944,49132,Potential Oscar Nom,1169518036 +47944,49220,Potential Oscar Nom,1168792451 +47944,49272,Potential Oscar Nom,1168792395 +47944,49274,Oscar Nom 2007,1169603431 +47944,49274,Potential Oscar Nom,1167942842 +47944,49280,Potential Oscar Nom,1167942782 +47944,49530,Oscar Nom 2007,1169603356 +47944,49530,Potential Oscar Nom,1167942768 +47944,49772,Potential Oscar Nom,1169035880 +47944,49822,Potential Oscar Nom,1167942794 +47944,49824,Oscar Nom 2007,1169603401 +47944,49824,Potential Oscar Nom,1167942758 +47944,49961,Oscar Nom 2007,1173473829 +47944,50005,Oscar Nom 2007,1173473840 +47944,50064,Oscar Nom 2007,1169603439 +47944,50064,Potential Oscar Nom,1169222430 +47944,50068,Oscar Nom 2007,1169603345 +47944,50068,Potential Oscar Nom,1169218824 +47944,50160,Potential Oscar Nom,1167943033 +47944,50274,Oscar Nom 2007,1171658427 +47948,318,highly quotable,1424874997 +47948,318,morgan freeman,1424874997 +47948,318,vicissitude,1424874997 +47957,260,classic,1440923682 +47957,260,space epic,1440923713 +47973,6,amazing cast,1270820833 +47973,6,gunfight,1270820886 +47973,6,philosophy,1270820886 +47973,6,tragic end,1270820886 +47973,110,british,1270820340 +47973,110,epic,1270820322 +47973,110,freedom,1270820322 +47973,110,inspirational,1270820411 +47973,110,inspirational ending,1270820635 +47973,110,Mel Gibson,1270820322 +47973,110,scottish,1270820340 +47973,150,Gary Sinise,1270820263 +47973,150,inspirational ending,1270820627 +47973,150,Tom Hanks,1270820247 +47973,356,historical,1270820780 +47973,356,inspirational,1270820780 +47973,356,tall tale,1270820780 +47973,524,football,1270820185 +47973,524,inspirational ending,1270821432 +47973,524,notre dame,1270820185 +47973,524,sports,1270820185 +47973,590,civil war,1270820611 +47973,590,indian,1270820611 +47973,590,love story,1270820611 +47973,590,native american,1270820611 +47973,590,western,1270821633 +47973,1197,amazing cast,1270821405 +47973,1197,cult,1270821405 +47973,1197,medieval,1270821405 +47973,2028,philosophy,1270821523 +47973,2028,violent,1270821523 +47973,2028,WWII,1270821523 +47973,2571,good vs. evil,1270821225 +47973,2571,keeanu reeves,1270821226 +47973,2571,philosophy,1270820144 +47973,2571,rebellious,1270821284 +47973,2571,special effects,1270821284 +47973,2571,Wachowski Brothers,1270821311 +47973,2959,brad pitt,1270820563 +47973,2959,cynical,1270820563 +47973,2959,dark,1270820563 +47973,2959,plot twist,1270820728 +47973,2959,psychology,1270820563 +47973,2959,rebellious,1270820563 +47973,2959,social commentary,1270820563 +47973,3255,amazing cast,1270821010 +47973,3255,nostalgic,1270821011 +47973,3255,sibling rivalry,1270821022 +47973,3255,women,1270821011 +47973,4022,love story,1270820374 +47973,4022,man vs. nature,1270821114 +47973,4022,philosophy,1270820374 +47973,4022,Tom Hanks,1270820374 +47973,4262,cuba,1270821727 +47973,4262,incest,1270821727 +47973,4262,miami,1270821727 +47973,4262,tragic ending,1270821709 +47973,4262,violent,1270821727 +47973,6365,keeanu reeves,1270821171 +47973,6365,martial arts,1270821191 +47973,6365,mindbender,1270821171 +47973,6365,philosophy,1270820122 +47973,6365,rebellious,1270821291 +47973,6365,special effects,1270821171 +47973,6365,Wachowski Brothers,1270821304 +47973,44191,dark,1270821893 +47973,44191,philosophy,1270821913 +47973,44191,rebellious,1270821893 +47973,44191,revenge,1270821892 +47973,44191,social commentary,1270821893 +47973,44191,torture,1270821902 +47973,58559,christian bale,1270820471 +47973,58559,dark,1270820453 +47973,58559,thriller,1270820453 +47973,58559,violent,1270821083 +47997,2947,007,1447031594 +47997,2947,action,1447031597 +47997,2947,Bond,1447031592 +47997,2947,james bond,1447031590 +47997,2947,Sean Connery,1447031596 +47997,2947,Spy Thriller,1447031599 +47997,4007,business,1447031766 +47997,4007,corporate America,1447031772 +47997,4007,Michael Douglas,1447031758 +47997,4007,stock market,1447031759 +47997,4007,US history,1447031767 +47997,49272,007,1447031550 +47997,49272,Daniel Craig,1447031555 +47997,49272,espionage,1447031544 +47997,49272,James Bond,1447031538 +47997,49272,poker,1447031552 +47997,49272,spies,1447031562 +47997,49272,spy,1447031560 +47997,102407,1920s,1447031657 +47997,102407,beautiful,1447031660 +47997,102407,F. Scott Fitzgerald,1447031669 +47997,102407,Leonardo DiCaprio,1447031654 +47997,106782,Funny,1447031821 +47997,106782,Leonardo DiCaprio,1447031812 +47997,106782,Martin Scorsese,1447031814 +47997,106782,Nudity (Full Frontal),1447031819 +47997,106782,Nudity (Topless),1447031841 +47997,106782,prostitution,1447031830 +47997,106782,Stock Market,1447031831 +47997,106782,Wall Street,1447031825 +48027,3569,controversial,1296502903 +48027,3569,explicit sex,1296502915 +48027,3569,Lars von Trier,1296502908 +48027,3569,satire,1296502911 +48027,3569,weird,1296502921 +48027,27822,boring,1296503160 +48027,27822,low budget,1296503153 +48027,27822,No Happy End,1296503110 +48027,27822,originality,1296503182 +48027,27822,sharks,1296503191 +48027,27822,unique,1296503187 +48027,44694,focused,1296502714 +48027,44694,gay,1296502721 +48027,44694,incest,1296502692 +48027,44694,Pedro Almodovar,1296502677 +48027,44694,Penelope Cruz,1296502658 +48027,44694,Spain,1296502661 +48044,50,Dark,1376794379 +48044,50,suspense,1376794365 +48044,50,twist ending,1376794366 +48044,293,Luc Besson,1376791603 +48044,296,classic,1376794552 +48044,296,cult film,1376794554 +48044,296,multiple storylines,1376794559 +48044,296,nonlinear,1376794556 +48044,296,Quentin Tarantino,1376794550 +48044,296,stylized,1376794551 +48044,380,action,1376881424 +48044,380,funny,1376881419 +48044,423,action,1376922096 +48044,423,pacing,1376922108 +48044,608,Coen Brothers,1376793994 +48044,608,dark comedy,1376794019 +48044,608,quirky,1376794027 +48044,608,violent,1376794012 +48044,1095,too much dialogue,1376881351 +48044,1527,futuristic,1376791282 +48044,1527,great cinematography,1376791280 +48044,1527,imaginative,1376863023 +48044,1527,sci-fi,1376791278 +48044,1527,surreal,1376791276 +48044,1527,visually appealing,1376791275 +48044,1958,James L. Brooks,1376795758 +48044,2076,suburbia,1376791050 +48044,2396,Shakespeare,1376796699 +48044,2571,cyberpunk,1376862994 +48044,2571,stylized,1376862998 +48044,2571,surreal,1376862999 +48044,2571,thought-provoking,1376863000 +48044,3213,Batman,1376795931 +48044,3503,aliens,1376794875 +48044,3503,atmospheric,1376794876 +48044,3503,cerebral,1376794874 +48044,3503,dreamlike,1376794878 +48044,3503,little dialogue,1376794898 +48044,3503,meditative,1376794880 +48044,3503,sci-fi,1376794882 +48044,3503,stylized,1376794884 +48044,3503,surreal,1376794958 +48044,4027,Coen Brothers,1376794155 +48044,4027,great soundtrack,1377142477 +48044,4027,Quirky,1376794157 +48044,4144,atmospheric,1376879298 +48044,4144,confusing,1376879320 +48044,4144,loneliness,1376879302 +48044,4144,melancholic,1376879303 +48044,4144,moody,1376879304 +48044,4144,music,1376880304 +48044,4144,stylized,1376879296 +48044,4239,drug trafficking,1376861220 +48044,4239,Johnny Depp,1376861232 +48044,4239,Penélope Cruz,1376861242 +48044,4239,violence,1376861228 +48044,4614,mystical,1376792560 +48044,4848,Atmospheric,1376790990 +48044,4848,David Lynch,1376791003 +48044,4848,dreamlike,1376790993 +48044,4848,lesbian,1376791002 +48044,4848,nonlinear,1376790994 +48044,4848,surreal,1376790999 +48044,4848,visually appealing,1376790997 +48044,4878,cult film,1376863129 +48044,4878,quirky,1376863135 +48044,4878,stylized,1376863120 +48044,4881,black and white,1376794107 +48044,4881,Coen Brothers,1376794104 +48044,4881,great cinematography,1376794061 +48044,4881,noir,1376794063 +48044,4881,slow,1376794096 +48044,4881,unusual,1376794066 +48044,5617,black comedy,1376791112 +48044,5617,dark comedy,1376791115 +48044,5617,erotic,1376791117 +48044,5617,quirky,1376791121 +48044,5673,Paul Thomas Anderson,1376791135 +48044,5673,Philip Seymour Hoffman,1376791138 +48044,5673,weird,1376791139 +48044,38061,black comedy,1382927747 +48044,38061,dark comedy,1382927750 +48044,38061,Robert Downey Jr.,1382927769 +48044,38061,satire,1382927773 +48044,38061,witty,1382927796 +48044,46335,modern,1376792468 +48044,46335,stylish,1376792453 +48044,46335,Tokyo,1376792461 +48044,53464,silver surfer,1376795859 +48044,60684,comic book,1376862945 +48044,60684,gore,1376862952 +48044,60684,story,1376862975 +48044,60684,stylized,1376862982 +48044,60684,violence,1376862950 +48044,60684,visually appealing,1376862983 +48044,70286,bleak,1376863073 +48044,71464,coen brothers,1376794120 +48044,71464,dark comedy,1376794124 +48044,71464,slow,1376794128 +48044,77307,disturbing,1376860288 +48044,77307,dystopia,1376860286 +48044,77307,isolation,1376860290 +48044,77307,Nudity (Full Frontal),1376860292 +48044,77307,oppression,1376860284 +48044,77307,sex,1376860282 +48044,77307,violence,1376860347 +48044,79132,surreal,1376863105 +48044,79132,visually appealing,1376863106 +48044,85510,Cinematography,1376862834 +48044,85510,stylized,1376862823 +48044,85510,Surreal,1376862826 +48044,85510,thin story,1376862899 +48044,85510,visually stunning,1376862828 +48044,87304,Beautiful Woman,1376801581 +48044,87304,melancholy,1376801555 +48044,87304,Melanie Laurent,1376801634 +48044,88129,atmospheric,1376794395 +48044,88129,cinematography,1376794398 +48044,88129,Dark,1376794413 +48044,88129,great soundtrack,1376794399 +48044,88129,violence,1376794407 +48044,98809,based on a book,1376862877 +48044,104841,cinematography,1381710962 +48044,104841,space,1381710955 +48067,593,cannibalism,1421007146 +48067,593,classic,1421007146 +48067,593,psychothriller,1421007146 +48072,111,cult film,1439743797 +48072,111,dark,1439743794 +48072,111,loneliness,1439743791 +48072,111,Martin Scorsese,1439743788 +48072,541,cult film,1439744037 +48072,541,cyberpunk,1439744020 +48072,541,existentialism,1439744029 +48072,541,neo-noir,1439744039 +48072,541,Philip K. Dick,1439744024 +48072,541,philosophical,1439744034 +48072,541,Ridley Scott,1439744042 +48072,541,sci-fi,1439744022 +48072,750,black comedy,1439743538 +48072,750,classic,1439743541 +48072,750,George C. Scott,1451916853 +48072,750,Peter Sellers,1439743546 +48072,750,Stanley Kubrick,1439743533 +48072,903,Alfred Hitchcock,1439743584 +48072,904,Alfred Hitchcock,1439743628 +48072,904,classic,1439743638 +48072,904,suspense,1439743631 +48072,923,black and white,1439743753 +48072,923,classic,1439743750 +48072,923,non-linear,1439743776 +48072,923,Orson Welles,1439743748 +48072,1080,british comedy,1452005090 +48072,1080,Monty Python,1452004870 +48072,1136,comedy,1449688023 +48072,1136,Monty Python,1449721305 +48072,1136,satire,1449721313 +48072,1136,surreal,1449721332 +48072,1201,atmospheric,1439743970 +48072,1201,classic,1439743972 +48072,1201,Clint Eastwood,1439743965 +48072,1201,music,1439743976 +48072,1201,Sergio Leone,1439743963 +48072,1201,spaghetti western,1439743960 +48072,1203,classic,1439743832 +48072,1203,good dialogue,1439743815 +48072,1203,group psychology,1439743837 +48072,1203,Henry Fonda,1439743845 +48072,1208,classic,1439743720 +48072,1208,Dark,1439743718 +48072,1208,psychological,1439743725 +48072,1208,surreal,1439743727 +48072,1232,Andrei Tarkovsky,1439743998 +48072,1232,beautifully filmed,1439744008 +48072,1232,existentialism,1439743990 +48072,1232,meditative,1439743992 +48072,1232,philosophical,1439743993 +48072,1237,black and white,1439743669 +48072,1237,existentialism,1439743660 +48072,1237,Ingmar Bergman,1439743658 +48072,1237,philosophical,1439743687 +48072,1258,atmospheric,1439801670 +48072,1258,cult film,1439801672 +48072,1258,Stanley Kubrick,1439801666 +48072,1259,classic,1439799246 +48072,1259,nostalgic,1439799240 +48072,1259,poignant,1439799244 +48072,1259,River Phoenix,1439799250 +48072,1260,black and white,1451917009 +48072,1260,Peter Lorre,1451917002 +48072,1265,Bill Murray,1439744434 +48072,1265,surreal,1439744440 +48072,1289,cinematography,1439744157 +48072,1289,meditative,1439744154 +48072,1289,Philip Glass,1439744145 +48072,1295,Milan Kundera,1439744107 +48072,1295,philosophical,1439744130 +48072,1295,reflective,1439744129 +48072,1732,coen brothers,1439743895 +48072,1732,cult film,1439743899 +48072,1732,dark comedy,1439743897 +48072,2186,Alfred Hitchcock,1451916705 +48072,2186,suspense,1451916721 +48072,2731,black and white,1439743939 +48072,2731,Francois Truffaut,1439743936 +48072,2731,french new wave,1451797956 +48072,2732,atmospheric,1440039214 +48072,2732,Francois Truffaut,1440039228 +48072,2732,french new wave,1440039217 +48072,2732,reflective,1440039210 +48072,4144,atmospheric,1439745917 +48072,4144,loneliness,1439745922 +48072,4144,melancholic,1439745919 +48072,4144,music,1439745925 +48072,4144,Wong Kar Wai,1439745926 +48072,4334,Edward Yang,1439743873 +48072,4334,reflective,1439743858 +48072,4878,music,1439745104 +48072,5147,Ingmar Bergman,1439743570 +48072,5147,meditative,1439743574 +48072,5291,Akira Kurosawa,1439743603 +48072,5291,black and white,1439743611 +48072,5291,multiple storylines,1439743606 +48072,5291,nonlinear,1439743608 +48072,5291,Toshiro Mifune,1449721529 +48072,6711,Amazing Cinematography,1439744079 +48072,6711,atmospheric,1439744057 +48072,6711,Bill Murray,1439744053 +48072,6711,Japan,1439744060 +48072,6711,loneliness,1439744077 +48072,6711,Melancholic,1439744062 +48072,6711,music,1439744087 +48072,6711,reflective,1439744065 +48072,6711,tokyo,1451969961 +48072,6783,bourgeoisie,1451916687 +48072,6783,satire,1451916682 +48072,7587,atmospheric,1451965951 +48072,7924,Akira Kurosawa,1450202916 +48072,7924,atmospheric,1450202914 +48072,7924,film noir,1450202945 +48072,7924,Japan,1450202921 +48072,7924,moody,1450202940 +48072,7924,noir,1450202935 +48072,7924,OBSESSIVE QUESTS,1450202936 +48072,7924,Takashi Shimura,1451916788 +48072,7924,tense,1451916798 +48072,7924,Tokyo,1450202927 +48072,7924,Toshiro Mifune,1450202924 +48072,8914,time travel,1451821491 +48072,26840,okinawa,1451488836 +48072,26840,Takeshi Kitano,1451488807 +48072,56367,Ellen Page is so gay,1451917376 +48072,74545,atmospheric,1440050252 +48072,89753,atmospheric,1451969942 +48072,89753,Beautifully shot,1439744600 +48072,89753,Cold War,1439744597 +48072,89753,espionage,1439744595 +48072,89753,John de Carre,1439744624 +48072,96079,beautifully filmed,1439744754 +48072,96079,cinematography,1439744756 +48072,99917,atmospheric,1451663008 +48072,99917,Beautiful,1451663018 +48072,99917,existentialism,1451662997 +48072,116799,dialogue-driven,1451876765 +48072,116799,neo-noir,1451876758 +48072,116799,Paul Thomas Anderson,1451876771 +48072,116799,Thomas Pynchon,1451876769 +48072,116799,visually appealing,1451876762 +48072,122882,Bechdel Test:Pass,1449722066 +48072,122882,cinematography,1449721957 +48072,122882,dystopian,1449721941 +48072,127114,conversational,1451137606 +48072,127114,philosophical,1451137608 +48072,135288,Beautiful Shots,1440257436 +48072,135288,character,1440257523 +48072,135288,Ian McKellen,1440257334 +48072,136020,Bechtel test:fail,1449721364 +48072,142386,Cinematography,1442420773 +48072,142386,Kung Fu,1442420770 +48072,142386,Poetic,1442420772 +48072,149706,Japan,1451666733 +48083,296,action,1290950030 +48083,296,assassin,1290950033 +48083,296,atmospheric,1290950037 +48083,296,Black comedy,1290950040 +48083,296,Bruce Willis,1290950042 +48083,296,dark comedy,1290950046 +48083,296,imdb top 250,1290950056 +48083,296,multiple storylines,1290950051 +48083,296,nonlinear,1290950053 +48083,296,quirky,1290950066 +48083,296,stylized,1290950068 +48083,50740,instant view,1290950004 +48083,50740,The Up Series,1290950011 +48084,1584,aliens,1448817769 +48084,1584,existentialism,1448817782 +48084,1584,future,1448817777 +48084,1584,inspirational,1448817773 +48084,1584,outer space,1448817764 +48084,1584,sci-fi,1448817759 +48084,1584,science,1448817770 +48084,1584,science fiction,1448817762 +48084,1584,space,1448817772 +48084,1584,space travel,1448817767 +48084,79357,flashbacks,1448816417 +48084,79357,nonlinear,1448816207 +48084,79357,plot,1448816223 +48084,79357,sci-fi,1448816418 +48084,79357,storytelling,1448816217 +48084,79357,surreal,1448816210 +48084,79357,time travel,1448816224 +48084,84954,Changing fate,1448817820 +48084,84954,fate,1448817796 +48084,84954,free will,1448817798 +48084,84954,sci-fi,1448817809 +48084,84954,surreal,1448817810 +48084,97752,gay,1448816301 +48084,97752,Hugo Weaving,1448816288 +48084,97752,multiple storylines,1448816259 +48084,97752,philosophy,1448816268 +48084,97752,sci-fi,1448816265 +48084,97752,social criticism,1448816281 +48084,97752,thought-provoking,1448816269 +48084,97752,visually appealing,1448816261 +48087,431,mafia,1339669525 +48087,431,organized crime,1339669522 +48087,628,psychology,1339669455 +48087,1206,cult film,1339669282 +48087,2329,prison,1339669395 +48087,2580,comedy,1339669563 +48087,2959,badass,1339669237 +48087,2959,fighting,1339669237 +48087,2959,psychological,1339669237 +48087,3948,comedy,1339669483 +48087,4776,bad cop,1339668812 +48087,4776,twist ending,1339668812 +48087,4993,high fantasy,1339669051 +48087,4993,long movie,1339669042 +48087,5445,dystopia,1339669546 +48087,5952,high fantasy,1339669005 +48087,5952,long movie,1339669034 +48087,6333,superhero,1339669415 +48087,7153,high fantasy,1339669014 +48087,7153,long movie,1339669057 +48087,7445,revenge,1339669481 +48087,7482,bruce lee,1339669249 +48087,7482,martial arts,1339669249 +48087,7981,inspirational,1339669573 +48087,8370,revenge,1339669508 +48087,8665,assassin,1339669294 +48087,8665,conspiracy,1339669291 +48087,8665,espionage,1339669286 +48087,8805,funny,1335163790 +48087,8805,nonsense,1339669375 +48087,27611,based on a TV show,1339669438 +48087,27773,classic,1339668890 +48087,30707,Hillbilly,1340398972 +48087,30707,morgan freeman commentary,1340398958 +48087,30707,slow paced,1340398997 +48087,33794,superhero,1339669320 +48087,34162,PUA,1339668271 +48087,44191,badass,1339668632 +48087,44191,uprising,1339668632 +48087,48385,comedy,1339669304 +48087,48385,satire,1339669310 +48087,52952,bullying,1340726488 +48087,52952,childhood,1340726490 +48087,53996,sci-fi,1339668772 +48087,54503,classic,1339668832 +48087,58559,superhero,1339669265 +48087,65514,chinese culture,1339669099 +48087,65514,martial arts,1339669100 +48087,65514,wing chun,1339669100 +48087,79132,keeps you wondering,1339669177 +48087,79132,sci fi,1339669177 +48087,94405,jason statham,1340129816 +48143,50,Kevin Spacey,1436080966 +48143,50,storytelling,1436080971 +48143,50,suspense,1436080963 +48143,50,twist ending,1436080961 +48143,260,awesome,1435033435 +48143,260,hero,1435033431 +48143,1215,bruce campbell,1435395194 +48143,1215,cult classic,1435395186 +48143,1215,horror-humour,1435395214 +48143,1215,TIME TRAVEL,1435395188 +48143,2490,revenge,1436203627 +48143,2968,time travel,1436356754 +48143,3052,Comedy,1436203887 +48143,3052,Matt Damon,1436203889 +48143,3052,satire,1436203881 +48143,3068,courtroom drama,1435246646 +48143,3068,Paul Newman,1435246636 +48143,3068,Sidney Lumet,1435246643 +48143,53956,british comedy,1436349902 +48143,53956,dark comedy,1436349899 +48143,55908,dialogue driven,1435394833 +48143,55908,intelligent,1435394846 +48143,61323,Coen Brothers,1435899315 +48143,61323,dark comedy,1435899317 +48143,61323,George Clooney,1435899329 +48143,91658,David Fincher,1436203317 +48143,91658,mystery,1436203325 +48143,91658,serial killer,1436203337 +48149,260,awesome,1437338154 +48149,260,awesome soundtrack,1437338150 +48149,260,jedi,1437338139 +48149,260,space adventure,1437338130 +48153,6671,inspirational,1177902884 +48189,44195,funny,1439159337 +48189,44195,lobbying,1439159354 +48189,44195,politics,1439159364 +48189,44195,propaganda,1439159344 +48189,122902,series reboot,1439159133 +48198,6482,words cannot explain how horrid this is,1170086100 +48198,51662,Classical Studies,1176854132 +48198,51662,homoerotic,1176854145 +48213,25,melancholic,1426924547 +48213,25,Nicolas Cage,1426924553 +48213,1732,black comedy,1426924505 +48213,1732,coen brothers,1426924493 +48213,3174,absurdism,1426924763 +48213,3174,comedians,1426924763 +48213,3174,jim carrey,1426924763 +48221,567,Almodovar,1206522081 +48222,351,jazz,1318968002 +48222,538,thought provoking,1243219991 +48222,38038,parody,1243219920 +48222,38038,quirky,1243219918 +48222,38038,Wallace & Gromit,1243219922 +48222,77240,self-indulgent,1290055540 +48222,103253,exo-skeleton,1395469773 +48222,103253,Ham fisted,1395469766 +48222,103253,Jodie Foster,1395469782 +48251,112183,lisergic,1427466639 +48251,112183,mental health,1427466639 +48251,112183,theater,1427466639 +48266,4995,mathematics,1443598907 +48266,4995,schizophrenia,1443598908 +48269,2416,over the top,1446444888 +48269,3339,violent,1446444822 +48269,6966,black comedy,1446449628 +48269,6966,parody,1446449623 +48269,6966,Sam Raimi,1446449611 +48285,260,fantasy,1438312058 +48285,260,sci-fi,1438312047 +48285,112552,drama,1438312291 +48285,112552,intense,1438312291 +48285,112552,music,1438312291 +48315,2728,Historical,1432684139 +48315,2728,roman empire,1432684143 +48315,3578,historical,1432684192 +48315,3578,Roman empire,1432684206 +48315,4995,game theory,1432683913 +48315,4995,John Nash,1432683904 +48315,4995,mathematics,1432683882 +48315,5995,dramatic,1432684025 +48315,7254,psychology,1432683784 +48315,7458,ancient greece,1432684246 +48315,7458,Greek tragedy,1432684259 +48315,64957,philosophical,1432683805 +48315,116797,Alan Turing,1432683955 +48315,116797,Computers,1432683948 +48315,116797,cryptography,1432683943 +48328,260,classic sci-fi,1438021150 +48328,260,great visual effects,1438021172 +48339,296,cult film,1433285338 +48339,296,great casting...,1433285338 +48339,296,very funny,1433285338 +48345,112556,drama,1420834951 +48345,112556,mystery,1420834951 +48345,112556,thriller,1420834951 +48370,260,Epic,1430650278 +48370,260,Special effects,1430650291 +48388,6016,Brazil,1279750444 +48388,6016,disturbing,1279750423 +48388,6016,drugs,1279750410 +48388,6016,foreign,1279750435 +48388,6016,sexy,1279750415 +48388,37386,dystopia,1279750033 +48388,37386,dystopic future,1279750033 +48388,37386,female warriors,1279750022 +48388,37386,Post apocalyptic,1279749997 +48388,50912,French,1279750167 +48388,50912,multiple storylines,1279750194 +48388,50912,natalie portman,1279750158 +48388,50912,Paris,1279750186 +48388,56174,based on a book,1279750289 +48388,56174,religion,1279750303 +48388,56174,vampire,1279750275 +48388,56174,zombies,1279750283 +48388,73321,books,1279750332 +48388,73321,mila kunis,1279750325 +48388,73321,thought provoking,1279750338 +48388,73321,twist ending,1279750344 +48405,19,Jim Carrey,1244757107 +48405,32,Bruce Willis,1244755531 +48405,110,action,1244758482 +48405,110,classic,1244758491 +48405,110,war,1244758482 +48405,165,action,1244755618 +48405,165,Bruce Willis,1244755607 +48405,165,Samuel L. Jackson,1244755627 +48405,260,sci-fi,1244755241 +48405,344,comedy,1244757285 +48405,344,Jim Carrey,1244757240 +48405,377,Action,1244756073 +48405,377,Keanu Reeves,1244756059 +48405,551,Tim Burton,1244755466 +48405,589,action,1244755278 +48405,589,Arnold Schwarzenegger,1244755270 +48405,589,sci-fi,1244755273 +48405,592,Batman,1244755424 +48405,592,Tim Burton,1244755428 +48405,593,Hannibal Lecter,1244754976 +48405,597,chick flick,1244756229 +48405,597,girlie movie,1244756234 +48405,597,Julia Roberts,1244756215 +48405,745,Aardman,1244757913 +48405,745,claymation,1244757928 +48405,745,comedy,1244757923 +48405,745,Wallace & Gromit,1244757919 +48405,750,black and white,1244758587 +48405,750,classic,1244758578 +48405,750,nuclear war,1244758620 +48405,750,Peter Sellers,1244758626 +48405,778,great soundtrack,1244756388 +48405,858,Action,1244755853 +48405,858,Al Pacino,1244755823 +48405,858,classic,1244755827 +48405,858,crime,1244755864 +48405,858,drama,1244755855 +48405,858,Mafia,1244755830 +48405,858,organized crime,1244755831 +48405,924,sci-fi,1244755209 +48405,1023,Disney,1244757585 +48405,1023,Pooh,1244757577 +48405,1023,Wolfgang Reitherman,1244757583 +48405,1025,classic,1244757700 +48405,1025,Disney,1244757686 +48405,1025,Wolfgang Reitherman,1244757718 +48405,1036,action,1244755577 +48405,1036,Bruce Willis,1244755574 +48405,1036,lone hero,1244755580 +48405,1080,Monty Python,1244757047 +48405,1136,Monty Python,1244755030 +48405,1148,Aardman,1244757823 +48405,1148,claymation,1244757837 +48405,1148,Wallace & Gromit,1244757840 +48405,1196,sci-fi,1244755253 +48405,1198,action,1244756822 +48405,1198,Harrison Ford,1244756790 +48405,1198,indiana jones,1244756792 +48405,1200,action,1244755782 +48405,1200,imdb top 250,1244755787 +48405,1200,sci-fi,1244755781 +48405,1210,sci-fi,1244755265 +48405,1223,Aardman,1244758894 +48405,1223,claymation,1244758897 +48405,1223,Wallace & Gromit,1244758905 +48405,1240,Action,1244809496 +48405,1240,Arnold Schwarzenegger,1244809495 +48405,1240,Michael Biehn,1244809520 +48405,1253,science fiction,1367431407 +48405,1301,science fiction,1367431407 +48405,1370,action,1244755568 +48405,1370,Bruce Willis,1244755563 +48405,1371,sci-fi,1244758020 +48405,1371,Star Trek,1244758025 +48405,1374,Leonard Nimoy,1244757986 +48405,1374,sci-fi,1244757975 +48405,1374,Star Trek,1244757969 +48405,1517,Mike Myers,1244757170 +48405,1517,parody,1244757172 +48405,1517,spoof,1244757175 +48405,1527,Bruce Willis,1244755592 +48405,1527,Milla Jovovich,1244755590 +48405,1653,science fiction,1367431407 +48405,1682,Jim Carrey,1244757195 +48405,1884,Terry Gilliam,1244755493 +48405,2028,action,1244758365 +48405,2028,war,1244758370 +48405,2078,classic,1244757458 +48405,2078,Disney,1244757447 +48405,2078,Wolfgang Reitherman,1244757493 +48405,2085,Classic,1244757745 +48405,2085,Disney,1244757725 +48405,2085,Wolfgang Reitherman,1244757743 +48405,2291,fantasy,1244755453 +48405,2291,Johnny Depp,1244755448 +48405,2291,Tim Burton,1244755450 +48405,2311,science fiction,1367431407 +48405,2329,Edward Norton,1244758546 +48405,2329,racism,1244758535 +48405,2571,sci-fi,1244755061 +48405,2640,super hero,1367431456 +48405,2640,superheroes,1367431443 +48405,2723,super hero,1367431456 +48405,2723,superheroes,1367431443 +48405,2762,twist ending,1244755549 +48405,2947,Bond,1244755171 +48405,2947,Sean Connery,1244755175 +48405,3034,classic,1244757640 +48405,3034,Disney,1244757608 +48405,3034,easily confused with other movie(s) (title),1244757673 +48405,3034,Wolfgang Reitherman,1244757650 +48405,3052,Comedy,1244758849 +48405,3052,religion,1244758841 +48405,3052,satire,1244758834 +48405,3354,science fiction,1367431407 +48405,3527,action,1244758059 +48405,3527,aliens,1244758104 +48405,3527,Arnold Schwarzenegger,1244758032 +48405,3527,classic,1244758057 +48405,3527,sci-fi,1244758095 +48405,3635,Bond,1244755232 +48405,3793,action,1244755714 +48405,3793,Hugh Jackman,1244755694 +48405,3793,superhero,1244755731 +48405,4011,Brad Pitt,1244754921 +48405,4148,Hannibal Lecter,1244756944 +48405,4148,serial killer,1244756957 +48405,4210,Hannibal Lecter,1244756915 +48405,4262,Al Pacino,1244755008 +48405,5349,superheroes,1367431443 +48405,5630,Anthony Hopkins,1244756840 +48405,5630,Hannibal Lecter,1244756836 +48405,5630,serial killer,1244756852 +48405,6157,super hero,1367431456 +48405,6323,twist ending,1301271053 +48405,6534,super hero,1367431456 +48405,6537,action,1244809485 +48405,6537,Arnold Schwarzenegger,1244809487 +48405,6743,easily confused with other movie(s) (title),1244757415 +48405,6807,Monty Python,1244757016 +48405,7153,fantasy,1244758640 +48405,7373,action,1244758196 +48405,7373,Ron Perlman,1244758202 +48405,7373,super hero,1367431456 +48405,7373,superheroes,1367431443 +48405,8576,comedy,1244759075 +48405,8636,superheroes,1367431443 +48405,8961,Pixar,1244758269 +48405,26614,easily confused with other movie(s) (title),1244758880 +48405,33794,batman,1244755309 +48405,38038,Aardman,1244757879 +48405,38038,claymation,1244757881 +48405,38038,Wallace & Gromit,1244757886 +48405,51662,action,1244758411 +48405,51662,atmospheric,1244758437 +48405,51662,epic,1244758411 +48405,51662,Nudity (Topless),1244758420 +48405,51662,stylized,1244758435 +48405,51662,war,1244758411 +48405,53125,confusing,1337611655 +48405,53125,Johnny Depp,1337611656 +48405,56757,Depp & Burton,1302371294 +48405,56757,England,1302371299 +48405,56757,gothic,1302371301 +48405,56757,Musical,1302371280 +48405,56757,serial killer,1302371286 +48405,56757,violent,1302371329 +48405,57640,action,1244758187 +48405,57640,Ron Perlman,1244758166 +48405,57640,superhero,1244758138 +48405,58559,Batman,1244755193 +48405,59315,superheroes,1367431443 +48405,60040,Tim Roth,1365804073 +48405,60684,super hero,1367431457 +48405,61394,comedy,1244758735 +48405,61394,satire,1244758738 +48405,65642,Nudity (Topless),1245866213 +48405,65642,time travel,1245866233 +48405,68237,science fiction,1367431407 +48405,68358,sci-fi,1244755075 +48405,81847,songs,1325813448 +48405,89281,Awful Cinematography,1319670689 +48405,89281,Awful Editing,1319670684 +48405,89281,Awful Sound,1319670687 +48405,89281,So bad it's hard to watch,1319670682 +48405,89745,Marvel Cinematic Universe,1449450997 +48405,111659,Angelina Jolie,1439839786 +48405,111659,fairy tale,1439839784 +48405,111659,visual effects,1439839782 +48412,410,creepy,1143948260 +48412,595,nice,1143948212 +48412,1079,Humorous,1143948238 +48412,1215,cheesy (good),1143948165 +48412,1682,paranoia,1143948182 +48412,2249,Goofy,1143949128 +48412,2249,Mob,1143949132 +48412,2394,Biblical,1143948447 +48412,2805,Mob,1143948414 +48412,2997,weird,1143948106 +48412,3095,Dramatic,1143948400 +48412,5349,Comic book,1143949263 +48412,6333,comic book,1143949269 +48412,6378,remake,1143948298 +48412,8961,family,1143948282 +48416,260,good vs evil,1435862366 +48416,260,oldie but goodie,1435862356 +48444,73017,Guy Ritchie,1275247083 +48446,50,complicated,1241692165 +48446,50,great ending,1241692160 +48446,50,mindfuck,1241692170 +48446,50,twist ending,1241692176 +48446,97,black and white,1241692660 +48446,97,racism,1241692675 +48446,97,social commentary,1241692677 +48446,97,Vincent Cassel,1241692669 +48446,1136,absurd,1241692791 +48446,1136,Biblical,1241692807 +48446,1136,bizarre ending,1241692777 +48446,1136,hilarious,1241692758 +48446,1136,medieval,1241692802 +48446,1136,Monty Python,1241692794 +48446,1136,no ending,1241692782 +48446,1136,parody,1241692786 +48446,1206,based on a book,1296229488 +48446,1206,Brilliant Film,1236703405 +48446,1206,cult film,1241692366 +48446,1206,disturbing,1241692379 +48446,1206,dystopia,1241692381 +48446,1206,Freedom,1236703405 +48446,1206,great soundtrack,1241692358 +48446,1206,imdb top 250,1296229493 +48446,1206,music,1296229471 +48446,1206,prison,1296229495 +48446,1206,social commentary,1296229498 +48446,1206,Stanley Kubrick,1296229479 +48446,1206,stylized,1241692370 +48446,1206,violence in america,1236703410 +48446,1256,Marx Brothers,1241692398 +48446,1464,disturbing,1241692243 +48446,1464,strange,1241692251 +48446,1732,comedy,1241692950 +48446,1732,cult film,1241692946 +48446,1732,Good scenario,1241692955 +48446,1732,great dialogue,1241692941 +48446,1732,Jeff Bridges,1241692930 +48446,4262,Al Pacino,1241692204 +48446,5608,based on a true story,1241692324 +48446,5608,frightfully good,1241692335 +48446,5608,psychology,1241692340 +48446,6143,empty scenario,1241692611 +48446,6143,nothing original,1241692607 +48446,6874,blood,1241692414 +48446,6874,empty scenario,1241692457 +48446,6954,talk,1241692642 +48446,7323,german movie,1241692906 +48446,7323,great soundtrack,1241692900 +48446,8327,downbeat,1241692475 +48446,8327,melancholy,1241692480 +48446,27368,briliant,1236706607 +48446,27368,comedy,1236706607 +48446,27368,french,1236706607 +48446,37741,talk,1241692544 +48446,44555,breathtaking,1241692841 +48446,44555,Human,1241692852 +48446,44555,Nudity (Topless - Brief),1241692825 +48446,44555,Nudity (Topless),1241692824 +48446,46578,dysfunctional family,1241692863 +48446,46578,feel-good,1241692869 +48446,46578,heartwarming,1241692878 +48446,46578,road movie,1241692875 +48446,49422,Absurd,1241692734 +48446,49422,French,1241692742 +48446,49422,Jean Dujardin,1241692730 +48446,49422,Parody,1241692738 +48446,49856,cold screenplay,1241692523 +48446,49856,little dialogues,1241692512 +48446,49856,oppression,1241692501 +48446,55247,great soundtrack,1241692301 +48446,55247,Music,1241692283 +48446,55247,nature wildlife,1241692297 +48446,55247,self discovery,1241692307 +48446,65418,empty scenario,1241692563 +48446,65418,no soundtrack,1241692569 +48446,71156,Jeff Bridges,1296344512 +48446,73344,Complicated plot,1295994477 +48446,73344,Great actors,1295994499 +48446,73344,Psychology,1295994473 +48446,79185,boring,1296344416 +48446,79185,cliché,1296344414 +48446,79185,lame humour,1296344380 +48446,79185,lame plot,1296344378 +48446,79185,predictable ending,1296344400 +48446,79185,soundtrack,1296344428 +48446,79185,stupid,1296344374 +48446,79185,tango,1296344437 +48446,79185,Tom Cruise,1296344407 +48446,81591,dance,1296229409 +48446,81591,dark,1296229414 +48446,81591,natalie portman,1296229400 +48446,81591,sex,1296229420 +48461,368,Mel Gibson,1220251438 +48471,174,tacos,1152504076 +48489,260,adventure,1442227480 +48489,260,space,1442227486 +48492,493,Los Angeles,1220231276 +48492,1060,Jon Favreau,1220230849 +48492,1464,David Lynch,1220231253 +48492,2336,England,1220230905 +48492,2580,Rave,1220231181 +48492,2596,punk,1220231308 +48492,2596,salt lake city,1220231308 +48492,44199,Too predictable,1206840159 +48518,26567,Bad movie but Great Soundtrack!,1156536237 +48526,1035,great musical,1138594019 +48526,1197,funny,1138593994 +48526,1405,idiotic,1138594307 +48526,1405,stupid,1138594307 +48526,4857,Musical,1138594424 +48526,4993,Overrated,1138593671 +48526,5618,anime,1138594087 +48526,5618,fantasy,1138594087 +48526,5618,hayao miyazaki,1138594087 +48526,5952,overrated,1138593677 +48526,6218,Funny,1138593591 +48526,6218,great,1138593591 +48526,6385,boring,1138593602 +48526,32582,beautiful,1138755909 +48526,34072,beautiful,1138594687 +48526,34405,FANTASTIC,1138594669 +48526,34405,firefly,1138594669 +48526,40815,great,1138594568 +48526,40815,not as good as the others,1138594568 +48526,40826,excellent,1138594582 +48526,40826,SAD,1138594582 +48526,41566,okay,1138594546 +48526,41566,overrated,1138594546 +48526,42002,hilarious,1138594597 +48542,3916,sports,1147195545 +48542,4085,Eddie Murphy,1147195966 +48542,33660,boxing,1147195514 +48544,302,bloody,1313083690 +48544,778,Ewan McGregor,1219147756 +48544,4973,Audrrey Tatou,1200863593 +48544,4973,french movie,1200863602 +48544,4973,romance,1285526065 +48544,4973,special,1200863613 +48544,4973,surreal,1285526051 +48544,7323,romance,1285105974 +48544,27721,Romance,1285526042 +48544,36535,beautiful scenery,1208974995 +48544,36535,elijah wood,1208974991 +48544,51174,glamour,1214475955 +48544,54190,musical,1208416125 +48544,54190,rock and roll,1208416137 +48544,56757,gothic,1205778590 +48544,56757,great cinematography,1205778581 +48544,59725,based on a book,1219149122 +48544,59725,fashion,1219149095 +48544,59725,New York City,1219149117 +48544,62644,gloomy,1250468298 +48555,77206,growing up,1423849191 +48555,77206,kid,1423849191 +48555,77206,looser,1423849191 +48588,53322,Funny,1451955429 +48588,53322,great cast,1451955442 +48588,53996,too busy,1451955475 +48588,58559,too violent,1451955515 +48588,115713,science fiction,1451955414 +48588,115713,technology,1451955408 +48588,122886,science fiction,1451955357 +48593,4344,ClearPlay,1204408100 +48610,27317,disturbing,1439778128 +48610,27317,ominous,1439778135 +48615,260,"action, scifi",1436565270 +48615,260,quotable,1436565285 +48617,45442,SEE IN IMAX,1148218874 +48623,260,action,1433831670 +48623,260,sci-fi,1433831662 +48652,260,Science Fiction,1440759215 +48652,260,Star Wars,1440759202 +48661,86882,Paris,1448834583 +48661,86882,thought-provoking,1448834586 +48661,86882,witty,1448834594 +48661,115713,sci-fi,1448834535 +48661,115713,thought provoking,1448834542 +48684,2959,brilliant,1287560662 +48684,2959,surreal,1287560662 +48698,260,action,1439395790 +48698,260,space adventure,1439395782 +48734,356,bubba gump,1423503894 +48734,356,chocolate,1423503894 +48734,356,lt dan,1423503894 +48734,6390,adapted from B'way,1423509147 +48734,6390,great dancing,1423509154 +48752,2278,action thriller,1430657393 +48752,2278,mafia,1430657393 +48752,2278,secret agent,1430657393 +48757,3148,charlize theron,1172636171 +48772,260,Science Fiction,1430512190 +48772,260,space,1430512197 +48789,33896,cannibalism,1179074102 +48802,260,masterpiece,1434200764 +48802,260,millenium falcon,1434200791 +48820,59369,awesome thrilling suspense,1438200880 +48820,91529,awesome dialogues,1438200925 +48820,91529,joker batman,1438200914 +48870,296,action,1448062468 +48870,296,dark comedy,1448062477 +48870,527,historical,1448062538 +48870,527,jews,1448062533 +48870,527,World War II,1448062524 +48870,858,classic,1448062730 +48870,858,Mafia,1448062709 +48870,858,robert de niro,1448062725 +48870,904,Alfred Hitchcock,1448062759 +48870,904,Grace Kelly,1448062778 +48870,904,James Stewart,1448062767 +48870,904,mystery,1448062806 +48870,910,classic,1448062391 +48870,910,Marilyn Monroe,1448062412 +48870,910,screwball comedy,1448062403 +48870,1221,Al Pacino,1448062740 +48870,1221,Robert De Niro,1448062743 +48870,31410,German,1448062512 +48870,31410,history,1448062504 +48870,31410,World War II,1448062500 +48873,49396,comedy,1261610179 +48873,49396,funny,1261610161 +48873,49396,Jack Black,1261610151 +48873,49396,Kyle Gass,1261610164 +48873,65882,psychological,1261610054 +48873,65882,Twist Ending,1261610090 +48873,68952,annoying characters,1261609941 +48873,68952,full of cliches,1261609953 +48873,68952,Justin Long,1261609986 +48873,68952,Lorna Raver,1261609996 +48873,68952,poor acting,1261609959 +48873,68952,Predictable movie,1261609967 +48873,68952,repetitive,1261609968 +48873,68952,Sam Raimi,1261609972 +48873,72998,too long,1261548741 +48890,260,fantasy,1434217008 +48890,260,suspensful,1434217029 +48896,58559,Heath Ledger,1449764648 +48896,142374,Post-Apocalyptic,1449764584 +48906,120799,action,1440019029 +48906,134368,comedy,1440019130 +48908,22,thriller,1372849554 +48908,29,dark,1372847957 +48908,111,mental illness,1372848476 +48908,157,politics,1372849467 +48908,161,tense,1372849524 +48908,216,stupid,1372849486 +48908,440,politics,1372849467 +48908,474,tense,1372849524 +48908,519,franchise,1372848275 +48908,555,ensemble cast,1372848136 +48908,832,tense,1372849524 +48908,832,thriller,1372849554 +48908,861,police,1372849433 +48908,913,black and white,1372847759 +48908,922,black and white,1372847759 +48908,1089,violent,1372849579 +48908,1095,ensemble cast,1372848136 +48908,1175,dark,1372847957 +48908,1199,dark comedy,1372860870 +48908,1199,dystopia,1372860857 +48908,1199,satire,1372860882 +48908,1199,surreal,1372860860 +48908,1206,dystopia,1278598763 +48908,1206,social commentary,1278598770 +48908,1214,tense,1372849524 +48908,1248,black and white,1372847759 +48908,1262,ensemble cast,1372848136 +48908,1357,father-son relationship,1372848247 +48908,1357,mental illness,1372848475 +48908,1390,politics,1372849467 +48908,1396,ensemble cast,1372848136 +48908,1464,mystery,1372848529 +48908,1589,ensemble cast,1372848136 +48908,1682,dystopia,1372860337 +48908,1682,social commentary,1372860332 +48908,1834,mystery,1372848528 +48908,1945,black and white,1372847759 +48908,1950,police,1372849433 +48908,2024,christianity,1372847856 +48908,2026,high school,1372848336 +48908,2058,tense,1372849524 +48908,2076,dark,1372847957 +48908,2117,dystopia,1372860168 +48908,2117,George Orwell,1372860172 +48908,2117,totalitarianism,1372860164 +48908,2335,stupid,1372849486 +48908,2383,police,1372849433 +48908,2490,violent,1372849579 +48908,2500,high school,1372848336 +48908,2571,artificial intelligence,1278598627 +48908,2571,dystopia,1278598658 +48908,2571,philosophical,1278598653 +48908,2571,virtual reality,1278598634 +48908,2882,nazis,1372848600 +48908,2888,high school,1372848336 +48908,2944,ensemble cast,1372848136 +48908,2959,violent,1372849579 +48908,2985,violent,1372849579 +48908,3146,stupid,1372849486 +48908,3178,inspirational,1372848387 +48908,3273,franchise,1372848275 +48908,3300,sci-fi,1372862276 +48908,3435,black and white,1372847758 +48908,3440,franchise,1372848275 +48908,3468,black and white,1372847759 +48908,3519,nazis,1372848601 +48908,3683,dark,1372847957 +48908,3980,inspirational,1372848387 +48908,4019,inspirational,1372848387 +48908,4388,stupid,1372849486 +48908,4865,mystery,1372848529 +48908,4896,children,1372861887 +48908,4896,fantasy,1372861885 +48908,4896,magic,1372861880 +48908,4974,stupid,1372849486 +48908,5107,nazis,1372848601 +48908,5363,high school,1372848336 +48908,5785,stupid,1372849486 +48908,5816,based on a book,1372862046 +48908,5816,children,1372862031 +48908,5816,fantasy,1372862022 +48908,5816,magic,1372862024 +48908,5903,dystopia,1278599055 +48908,5903,totalitarianism,1278599063 +48908,6323,mystery,1372848529 +48908,6537,franchise,1372848275 +48908,6808,nazis,1372848601 +48908,7160,mental illness,1372848475 +48908,8781,politics,1372849467 +48908,33166,multiple storylines,1372860282 +48908,33166,social commentary,1372860273 +48908,33493,dark,1372862107 +48908,33493,Star Wars,1372862097 +48908,33660,inspirational,1372848387 +48908,40815,dark,1372861818 +48908,40815,fantasy,1372861778 +48908,40815,magic,1372861807 +48908,44191,dystopia,1278598399 +48908,44191,Natalie Portman,1278598593 +48908,44195,dark comedy,1372861739 +48908,44195,social commentary,1372861733 +48908,48516,organized crime,1372861688 +48908,48516,psychology,1372861699 +48908,48774,dystopia,1278598707 +48908,49272,James Bond,1372861645 +48908,51662,atmospheric,1372861223 +48908,51662,Frank Miller,1372861232 +48908,51662,stylized,1372861225 +48908,53121,franchise,1372848275 +48908,63082,cinematography,1372860514 +48908,63082,nonlinear,1372860511 +48908,63082,social commentary,1372860504 +48908,63113,franchise,1372848275 +48908,64622,nazis,1372848601 +48908,67255,based on a book,1372860812 +48908,67255,dark,1372860797 +48908,67255,hackers,1372860772 +48908,70286,sci-fi,1372862226 +48908,70286,social commentary,1372862224 +48908,74458,mystery,1372848529 +48908,89745,action packed,1372861437 +48908,89745,ensemble cast,1372861459 +48908,89745,predictable,1372861370 +48908,89745,superhero,1372861483 +48908,91658,based on a book,1372860676 +48908,91658,hacking,1372860681 +48908,91658,mystery,1372860689 +48908,91658,remake,1372860698 +48908,97921,cliche,1372860570 +48908,97921,Robert De Niro,1372860631 +48908,97921,romantic comedy,1372860614 +48908,97938,cinematography,1372860403 +48908,97938,spiritual journey,1372860422 +48908,97938,surreal,1372860436 +48908,99917,sci-fi,1372860003 +48908,102445,space,1372859903 +48908,102445,Star Trek,1372859899 +48941,47044,Michael Mann,1232812787 +48949,4022,boring,1274595854 +48950,47,twist ending,1271715553 +48950,208,post-apocalyptic,1271715847 +48950,208,water,1271715862 +48950,260,Star Wars,1271715260 +48950,316,conlang,1271715636 +48950,316,Egypt,1271715623 +48950,318,prison,1271716181 +48950,318,Stephen King,1271716187 +48950,318,twist ending,1271716170 +48950,344,Jim Carrey,1271715472 +48950,356,Tom Hanks,1271715222 +48950,364,Disney,1271715597 +48950,367,Jim Carrey,1271715669 +48950,527,black and white,1271715375 +48950,527,jews,1271715375 +48950,527,moving,1271715375 +48950,527,Nazis,1271715375 +48950,541,Harrison Ford,1271715942 +48950,595,Disney,1271715584 +48950,680,poetry,1395627280 +48950,912,black and white,1271716239 +48950,912,classic,1271716224 +48950,912,Humphrey Bogart,1271716270 +48950,912,World War II,1271716267 +48950,1040,anarchism,1379616020 +48950,1040,autism,1379616042 +48950,1040,Greenwich,1379616051 +48950,1040,Joseph Conrad,1379616009 +48950,1040,London,1379616056 +48950,1040,terrorism,1379616033 +48950,1172,cinema,1330458656 +48950,1172,Sicily,1330458643 +48950,1196,sci-fi,1271715486 +48950,1196,star wars,1271715412 +48950,1198,indiana jones,1271715450 +48950,1210,Star Wars,1271715306 +48950,1214,Sigourney Weaver,1271715905 +48950,1214,thriller,1271715905 +48950,1232,black and white and color,1347316425 +48950,1232,boring,1347316347 +48950,1232,incomprehensible,1347316378 +48950,1232,long,1347316304 +48950,1232,ruins,1347316392 +48950,1232,water,1347316404 +48950,1270,back to the future,1271715545 +48950,1270,DeLorean,1271715545 +48950,1271,Ku Klux Klan,1393690816 +48950,1271,murder,1393690915 +48950,1271,nursing home,1393690845 +48950,1271,old age,1393690837 +48950,1271,southern US,1393690805 +48950,1271,tomboy,1393690787 +48950,1291,Austria,1271715830 +48950,1291,indiana jones,1271715804 +48950,1291,nazis,1271715830 +48950,1291,Venice,1271715830 +48950,1580,Will Smith,1271715704 +48950,1817,Jon Bon Jovi,1393104930 +48950,1817,old flame,1393104943 +48950,1817,waitress,1393104921 +48950,2009,Charlton Heston,1335139933 +48950,2009,concubine,1335139966 +48950,2009,food,1335139846 +48950,2009,funky music,1335139951 +48950,2009,Malthusianism,1335139910 +48950,2009,overpopulation,1335139919 +48950,2009,suicide,1335139981 +48950,2235,Albert Grimaldi,1384620197 +48950,2235,history,1384620161 +48950,2235,Irish Americans,1384620170 +48950,2235,Irish Catholics,1384620181 +48950,2235,Mexico,1384620152 +48950,2322,junkyard,1344291738 +48950,2322,Wooden acting,1344291723 +48950,2571,sci-fi,1271715490 +48950,2628,abuse,1271715756 +48950,2628,Star Wars,1271715756 +48950,2657,shadow cast,1389053080 +48950,2717,New Year's Eve,1386811575 +48950,2717,New York City,1386811575 +48950,2717,Who Ya gonna call????????????,1386811280 +48950,2851,Farrah Fawcett,1272154312 +48950,2851,overpopulation,1272154326 +48950,2951,Almería,1271716483 +48950,3051,Beverly Hills,1393106846 +48950,3051,crazy mother,1393106895 +48950,3051,mother daughter relationship,1393106796 +48950,3051,mother-daughter relationship,1393106820 +48950,3051,mother-daughter relationships,1393106803 +48950,3051,Natalie Portman,1393106784 +48950,3051,teenage girl,1393106830 +48950,3196,comedians,1276643763 +48950,3245,black and white,1278978122 +48950,3245,Castro,1278978122 +48950,3245,communists,1278978122 +48950,3245,Cuba,1278978122 +48950,3245,infrared,1278978122 +48950,3245,Soviet Union,1278978122 +48950,3245,traveling,1278978122 +48950,3441,Cuba,1321401460 +48950,3441,guerrillas,1321401460 +48950,3441,Guinness record,1321401375 +48950,3441,Soviet Union,1321401460 +48950,3441,violence,1321401460 +48950,3498,Giorgio Moroder,1384818771 +48950,3498,Istanbul,1384818743 +48950,3498,prison,1384818758 +48950,3498,Turkey,1384818735 +48950,3578,Rome,1271715794 +48950,3683,Motown,1382392660 +48950,3745,aliens,1413846281 +48950,3745,cliche,1413846254 +48950,3745,space opera,1413846294 +48950,4226,memory,1271715996 +48950,4443,High Noon,1375820807 +48950,4443,space western,1375820797 +48950,4443,western,1375820797 +48950,4939,Philadelphia experiment,1272154261 +48950,5196,clemence,1381598563 +48950,5196,fascism,1381598544 +48950,5196,historic footage,1381598597 +48950,5196,historical epic,1381598587 +48950,5196,libya,1381598520 +48950,5196,mass scenes,1381598622 +48950,5196,Oliver Reed,1381598529 +48950,5316,cryptography,1382392404 +48950,5316,espionage,1382392434 +48950,5316,Kate Winslet,1382392514 +48950,5316,nerds,1382392448 +48950,5316,Saffron Burrows,1382392501 +48950,5316,World War II,1382392481 +48950,5682,Auschwitz,1382134476 +48950,5682,corpses,1382134537 +48950,5682,Jews,1382134524 +48950,5682,nazi villains,1382134508 +48950,5682,Nazis,1382134498 +48950,5952,Tolkien,1271715878 +48950,6041,Catholicism,1368984526 +48950,6041,conscience,1368984585 +48950,6041,engineers,1368984604 +48950,6041,euthanasia,1368984518 +48950,6041,Jesuit,1368984545 +48950,6041,Nazi Germany,1368984510 +48950,6041,Nazis,1368984495 +48950,6041,Rome,1368984479 +48950,6041,self-sacrifice,1368984585 +48950,6442,Catholicism,1409484173 +48950,6442,faith,1409484209 +48950,6442,infidelity,1409484183 +48950,6442,Second Spanish Republic,1409484135 +48950,6442,sister sister relationship,1409484246 +48950,6442,transgender,1409484194 +48950,6442,Zarzuela,1409484231 +48950,6801,envy,1361145818 +48950,6801,gore,1361145849 +48950,6801,greed,1361145818 +48950,6801,Madrid,1361145834 +48950,6801,violence,1361145859 +48950,7054,Elizabeth Taylor,1242004767 +48950,7307,ambiguous,1289687639 +48950,7307,mandrake,1289687639 +48950,7307,Nudity (Full Frontal),1289687588 +48950,7307,Renaissance,1289687639 +48950,7307,Saint Martin,1289687639 +48950,7307,war,1289687639 +48950,8865,dirigibles,1242004289 +48950,8965,children,1341861381 +48950,8965,elfs,1341861371 +48950,8965,roller coaster,1341861392 +48950,8965,uncanny valley,1341861353 +48950,26359,long,1380756598 +48950,26359,long movie,1380756616 +48950,26359,peasants,1380756641 +48950,27193,Marseilles,1388495818 +48950,27193,Paris,1388495807 +48950,27193,stupid police,1388495825 +48950,27711,assassin,1393289708 +48950,27711,CIA,1393289749 +48950,27711,Hong Kong,1393289737 +48950,27711,Japan,1393289725 +48950,27711,martial arts,1393289693 +48950,27711,Rome,1393289729 +48950,27711,Spain,1393289719 +48950,30749,civil war,1271716356 +48950,30749,genocide,1271716359 +48950,30749,Jean Reno,1271716350 +48950,31617,Peñíscola,1271716455 +48950,32392,Almeria,1272670136 +48950,32392,Bilbao,1272670146 +48950,32392,Clint Eastwood,1272670136 +48950,32392,Constantino Romero,1272670146 +48950,32392,Cuban whore,1272670136 +48950,32392,losers,1272670064 +48950,32392,nostalgia,1272670136 +48950,32392,Pogues,1272670136 +48950,32392,redundant,1272670064 +48950,32392,spaghetti western,1272670136 +48950,33893,Alex de la Iglesia,1276643877 +48950,33893,department store,1276643877 +48950,33893,Kira Miró,1276643877 +48950,33893,ugly woman,1276643877 +48950,33994,Amsterdam,1399333594 +48950,33994,business trip,1399333627 +48950,33994,canal,1399333668 +48950,33994,child,1399333636 +48950,33994,killer,1399333616 +48950,33994,mute,1399333598 +48950,33994,police,1399333657 +48950,33994,suspense,1399333608 +48950,35807,alcohol,1356568883 +48950,35807,AMERICANS ABROAD,1356568883 +48950,35807,army,1356568883 +48950,35807,geisha,1356568883 +48950,35807,Japan,1356568883 +48950,35807,makeup effects,1356568899 +48950,35807,occupation,1356568782 +48950,35807,Okinawa,1356568782 +48950,35807,United States,1356568883 +48950,42335,actors,1346456341 +48950,42335,birthday,1346456435 +48950,42335,Elena Anaya,1346456411 +48950,42335,family,1346456341 +48950,42335,incest,1346456367 +48950,42335,infidelity,1346456341 +48950,42335,villa,1346456453 +48950,43822,Vicente Blasco Ibáñez,1280609734 +48950,43822,World War I,1280609735 +48950,46457,cynical,1289687491 +48950,46457,Jersey,1289687490 +48950,46457,Nazis,1289687490 +48950,46457,spy,1289687490 +48950,48780,Nicola Tesla,1416074501 +48950,49412,confusing title,1276643664 +48950,54276,Catherine Zeta-Jones,1415667892 +48950,54276,predictable,1415667906 +48950,54426,communism,1305761992 +48950,54426,politics,1305761992 +48950,54426,revolution,1305761992 +48950,54426,Romania,1305761992 +48950,54426,sad,1305761992 +48950,55069,abortion,1276643000 +48950,55069,Bucharest,1276643012 +48950,55069,Romania,1276643005 +48950,56702,knights,1330904510 +48950,56702,middle ages,1330904510 +48950,56702,Valencia,1330904510 +48950,56702,virginity,1330904510 +48950,57183,children,1303654175 +48950,57183,Dyslexia,1303654149 +48950,57183,education,1303654188 +48950,57183,synesthesia,1303654162 +48950,58933,bad acting,1300579307 +48950,58933,Bollywood,1300579307 +48950,58933,canal,1300579307 +48950,58933,Dostoyevsky,1300579307 +48950,58933,idiot characters,1300579307 +48950,58933,musical,1300579307 +48950,62250,Camorra,1427845311 +48950,62250,children,1427845324 +48950,62250,Naples,1427845304 +48950,62250,violence,1427845318 +48950,67422,language barrier,1330465153 +48950,67422,military,1330465153 +48950,67422,NATO,1330465153 +48950,67422,nerd,1330465115 +48950,67422,Romania,1330465110 +48950,67422,village,1330465153 +48950,68495,incest,1343606003 +48950,68495,lesbian,1343605958 +48950,68495,lesbians,1343605958 +48950,68495,Romania,1343605917 +48950,69406,absurd,1420933240 +48950,69406,Alaska,1420933212 +48950,69406,immigration,1420933282 +48950,69757,architecture,1419214618 +48950,69757,no happy ending,1419214633 +48950,70315,Argentina,1343479532 +48950,70315,Bilbao,1343479338 +48950,70315,friendship,1343479507 +48950,70315,friendship relations,1343479518 +48950,70315,love,1343479349 +48950,70920,love,1340652526 +48950,70920,Maria P. Petruolo,1340652557 +48950,70970,ethics,1326845620 +48950,70970,euthanasia,1326845620 +48950,70970,intellectual,1326845649 +48950,70970,Jewish friend,1326845604 +48950,70970,Kristallnacht,1326845591 +48950,70970,Nazi Germany,1326845567 +48950,70970,Nazis,1326845576 +48950,70970,SS,1326845632 +48950,71530,Bruce Willis,1276643724 +48950,71688,bhangra,1402358677 +48950,71688,Himachal Pradesh,1402358650 +48950,71688,manic pixie dream girl,1402358710 +48950,71688,overacting,1402358694 +48950,71688,sikh,1402358727 +48950,71688,train,1402358658 +48950,71973,Christianity,1422830851 +48950,71973,debate,1422830905 +48950,71973,Islam,1422830796 +48950,71973,Senegal,1422830892 +48950,71973,slavery,1422830800 +48950,71973,slow,1422830898 +48950,71999,constructivism,1427336854 +48950,71999,jelousy,1427336837 +48950,71999,Mars,1427336817 +48950,71999,rebellion,1427336867 +48950,71999,silent,1427336806 +48950,71999,Soviet Union,1427336814 +48950,72554,ETA,1276386000 +48950,72554,Luis Tosar,1276386035 +48950,72554,Spain,1276386034 +48950,72931,loop,1364489960 +48950,72931,nudity,1364489952 +48950,72931,video,1364489947 +48950,73317,gold digger,1338737768 +48950,73317,Mormon,1338737716 +48950,73317,Red Western,1338737706 +48950,73317,Romanian,1338737568 +48950,73317,Romanian-speaking black,1338737735 +48950,73317,Transylvania,1338737781 +48950,73317,Western,1338737696 +48950,73639,bank robbery,1294350590 +48950,73639,indians,1294350590 +48950,73639,Red Western,1294350504 +48950,73639,Synthesizer,1294350579 +48950,73987,Hungarians,1294350276 +48950,73987,Red Western,1294350182 +48950,73987,Transylvania,1294350201 +48950,74789,3d,1272153990 +48950,74789,weird,1272153990 +48950,77143,Caesar,1280775680 +48950,77143,Cleopatra,1280775680 +48950,77143,egyptian,1280775680 +48950,77143,Peplum,1280775681 +48950,77143,Roman empire,1280775681 +48950,77143,Vivien Leigh,1280775681 +48950,77307,cicada,1344702821 +48950,77307,family relationships,1344702843 +48950,77307,idiolect,1344702562 +48950,77307,incest,1344702530 +48950,77307,isolation,1344702550 +48950,77307,Self-Mutilation,1344702867 +48950,77307,summer,1344702602 +48950,77829,Augusto Pinochet,1347834205 +48950,77829,capitalism,1347835178 +48950,77829,Chile,1347834205 +48950,77829,crony capitalism,1347834205 +48950,77829,Douglas Rumsfeld,1347834205 +48950,77829,Katrina,1347835155 +48950,77829,Margaret Thatcher,1347834205 +48950,77829,Ronald Reagan,1347834205 +48950,78142,choral,1279574986 +48950,78142,communists,1279574986 +48950,78142,long,1279574986 +48950,78142,Sicilian,1279574986 +48950,78142,Sicily,1279574986 +48950,78192,arson,1276643319 +48950,78192,Gujarat,1276643313 +48950,78192,guns,1276643376 +48950,78192,Hinduism,1276643331 +48950,78192,Islam,1276643351 +48950,78192,Islamophobia,1276643361 +48950,78196,accountants,1276126064 +48950,78196,Bollywood,1276125982 +48950,78196,Bombay,1276126064 +48950,78196,motorcycle,1276126064 +48950,78196,romantic comedy,1276126083 +48950,78251,Alicja Bachleda-Curus,1282089497 +48950,78251,Berlin wall,1282089497 +48950,78251,East Germany,1282089497 +48950,78251,road movie,1282089497 +48950,78381,Andalusia,1276385413 +48950,78381,Federico García Lorca,1276385402 +48950,78381,Spain,1276385402 +48950,78408,amnesia,1277319739 +48950,78408,ARRANGED MARRIAGES,1277319667 +48950,78408,blonde,1277319653 +48950,78408,Bollywood,1277319634 +48950,78408,dance,1277319640 +48950,78408,Islamophobia,1277319722 +48950,78408,London,1277319794 +48950,78408,long,1277319689 +48950,78408,taxi,1277319657 +48950,78408,wedding,1277319779 +48950,78410,Bollywood,1277319275 +48950,78410,children,1277319353 +48950,78410,dance,1277319291 +48950,78410,formulaic,1277319285 +48950,78410,Tacones lejanos,1277319309 +48950,78410,talent contest,1277319323 +48950,78986,execution,1280610683 +48950,78986,Franco's Spain,1280610681 +48950,78986,Tristán Ulloa,1280610682 +48950,80566,fireworks,1287848533 +48950,80566,Peñíscola,1287848533 +48950,80566,rocket,1287848533 +48950,81427,americans save the world,1326155518 +48950,81427,Bucharest,1326155423 +48950,81427,house,1326155546 +48950,81427,Nudity (Topless),1326155478 +48950,81427,slow motion,1326155534 +48950,81427,stereotypes,1326155499 +48950,81427,Steven Seagal,1326155485 +48950,81806,dracula,1304878082 +48950,81806,history,1304878066 +48950,81806,Romania,1304878058 +48950,81847,singing,1449450853 +48950,82447,enemy,1403298146 +48950,82447,Red Dawn,1403298166 +48950,82447,survivalist,1403298190 +48950,82454,germans,1292373431 +48950,82454,Gregory Peck,1292373431 +48950,82454,guerilla warfare,1292373431 +48950,82454,guerrillas,1292373431 +48950,82454,russians,1292373431 +48950,82454,Soviet Union,1292373431 +48950,82454,World War II,1292373431 +48950,82454,WWII,1292373431 +48950,82595,communism,1314035805 +48950,82595,documentary,1314035805 +48950,82595,history,1314035804 +48950,82595,Jews,1314035805 +48950,82595,robbery,1314035805 +48950,82595,Romania,1314035808 +48950,82931,1970s,1301612671 +48950,82931,circus,1301612679 +48950,82931,clowns,1301612786 +48950,82931,gratuitous violence,1301612705 +48950,82931,nostalgia,1301612660 +48950,82931,Raphael,1301612747 +48950,82931,sadomasochistic,1301612774 +48950,82931,Spanish Civil War,1301612758 +48950,82931,Valle de los Caídos,1301612717 +48950,82931,violence,1301612693 +48950,83082,young love,1397516773 +48950,83789,Speed Dating,1321833497 +48950,84240,Bolivia,1297624653 +48950,84240,Columbus,1297624653 +48950,84240,Preachy,1297624652 +48950,84240,privatization,1297624653 +48950,84240,Quechua,1297624652 +48950,84240,Water,1297624653 +48950,84436,actors and acting,1300579083 +48950,84436,Elsa Pataky,1300579083 +48950,84436,love,1300579082 +48950,84436,theme park,1300579083 +48950,84436,UNREQUITED LOVE,1300579083 +48950,84436,Valencia,1300579083 +48950,84734,chalet,1301612617 +48950,84734,conservative,1301612536 +48950,84734,Lisbon,1301612520 +48950,84734,Madrid,1301612524 +48950,84734,old men,1301612600 +48950,84734,widow,1301612580 +48950,84734,yeye,1301612557 +48950,84736,arabs,1299025796 +48950,84736,desert,1299025796 +48950,84736,hospitality,1299025796 +48950,84736,politics,1299025796 +48950,84736,Rambo,1299025796 +48950,84736,Tuareg,1299025796 +48950,85442,abortion,1312832027 +48950,85442,history,1312831152 +48950,85442,natalism,1312832027 +48950,85445,car,1312831250 +48950,85445,communism,1312831250 +48950,85445,Dacia,1312831250 +48950,85445,history,1312831250 +48950,85445,Romania,1312831253 +48950,85783,capitalism,1312831389 +48950,85783,communism,1312831389 +48950,85783,corruption,1312831389 +48950,85783,privatization,1312831404 +48950,85783,Romania,1312831392 +48950,85785,Gipsy,1312831314 +48950,85785,Romania,1312831272 +48950,85785,romanian poverty,1312831289 +48950,85785,snow,1312831314 +48950,86408,Campania,1312834833 +48950,86408,Italy,1312834848 +48950,86408,Milan,1312834879 +48950,86408,Naples,1312834848 +48950,86408,postman,1312834861 +48950,86408,remake,1312834917 +48950,86408,stereotypes,1312834899 +48950,86434,Catholicism,1352762671 +48950,86434,Islam,1352762671 +48950,86434,Istanbul,1352762644 +48950,86434,muezzin,1352762671 +48950,86434,shy person,1352762684 +48950,86508,teenage girl,1382134054 +48950,86508,weapons,1382134076 +48950,86508,yakuza,1382134067 +48950,86709,cooking,1330458926 +48950,86709,Peru,1330458926 +48950,86892,child thief,1408039639 +48950,86892,Chinese mafia,1408039578 +48950,86892,thai,1408039591 +48950,86892,violence,1408039549 +48950,86970,BORING!,1318894935 +48950,86970,cars,1318894935 +48950,86970,India,1318894935 +48950,86970,rural,1318894935 +48950,88055,China,1373123503 +48950,88055,Industrial setting,1373123506 +48950,88055,steel mill,1373123525 +48950,88055,translation,1373123503 +48950,88448,Miliki,1315780939 +48950,88448,Spanish Civil War,1315780936 +48950,88448,Theater,1315780954 +48950,88564,archive footage,1322438791 +48950,88564,bad sound,1322438813 +48950,88564,Nicolae Ceausescu,1322438771 +48950,88564,Romania,1322438775 +48950,88785,Olivia Wilde,1384213404 +48950,88785,swearing,1384213392 +48950,88785,switching places,1384213382 +48950,88901,cooking,1314923349 +48950,88901,Ferran Adriá,1314923339 +48950,88901,food,1314923345 +48950,88901,innovation,1314923370 +48950,88901,restaurant,1314923407 +48950,88901,Spain,1314923385 +48950,89554,bachelorhood,1317947309 +48950,89554,Barcelona,1317947194 +48950,89554,Bollywood,1317947194 +48950,89554,Costa Brava,1317947274 +48950,89554,Flamenco,1317947194 +48950,89554,road trip,1317947308 +48950,89554,Ronda,1317947194 +48950,89554,Seville,1317947194 +48950,89554,Spain,1317947194 +48950,89554,tomatina,1317947194 +48950,89759,Alzheimer's disease,1375821636 +48950,89759,Poor People,1375821636 +48950,89759,veil,1375821636 +48950,89900,autopsy,1363824043 +48950,89900,long,1363824024 +48950,90127,Cuba Libre,1319158876 +48950,90127,drugs,1319159002 +48950,90127,islam,1319158919 +48950,90127,judge,1319159002 +48950,90127,Madrid,1319158859 +48950,90127,police,1319158967 +48950,90127,terrorism,1319158938 +48950,90183,balloon,1326845141 +48950,90183,blonde,1326845195 +48950,90183,comic book,1326845099 +48950,90183,crusaders,1326845152 +48950,90183,Grail,1326845325 +48950,90183,heavy metal,1326845180 +48950,90183,knights,1326845132 +48950,90183,middle ages,1326845132 +48950,90183,revolt,1326845165 +48950,90339,Isis,1326844507 +48950,90339,Pompeii,1326844439 +48950,90339,Romans,1326844494 +48950,90339,silent,1326844465 +48950,90339,Special Effects,1326844474 +48950,90339,TOGA,1326844456 +48950,90339,volcano,1326844485 +48950,90397,spaghetti western,1324607846 +48950,90497,Basque,1323732370 +48950,90497,competitive sport,1323732433 +48950,90497,documentary,1323732403 +48950,90497,improvisation,1323732391 +48950,90497,poetry,1323732377 +48950,90533,France,1410395002 +48950,90533,French Revolution,1410395034 +48950,90533,history,1410395013 +48950,90533,long,1410394990 +48950,90890,adoption,1406587021 +48950,90890,Al Pacino,1406586989 +48950,90890,jewish family,1406587037 +48950,90890,Mallorca,1406586982 +48950,90890,product placement,1406586997 +48950,90890,Santiago Segura,1406586964 +48950,90890,twins,1406587003 +48950,91533,history,1323732217 +48950,91533,peplum,1323732245 +48950,91533,Romania,1323732205 +48950,91533,Romans,1323732232 +48950,91624,mischief,1338940585 +48950,91624,sequel,1338940406 +48950,91624,South Africa,1338940536 +48950,91624,time travel,1338940523 +48950,91624,witch,1338940550 +48950,91683,bicycle,1324607933 +48950,91683,communism,1324608022 +48950,91683,Curgir,1324607922 +48950,91683,factory,1324607940 +48950,91683,light bulb,1324607975 +48950,91683,matress,1324607958 +48950,91683,nostalgia,1324607895 +48950,91683,nostalgic,1324607910 +48950,91683,Romania,1324607907 +48950,91683,sewing machine,1324607989 +48950,91683,sport shoes,1324608002 +48950,91890,Falklands War,1326565038 +48950,91890,IRA,1326564974 +48950,91890,old age,1326565019 +48950,91970,architecture,1325466443 +48950,91970,Argentina,1325466373 +48950,91970,CLASS DIFFERENCES,1325466389 +48950,91970,design,1325466414 +48950,91970,glasses,1325466483 +48950,91970,Le Corbusier,1325466430 +48950,91970,snob,1325466403 +48950,91970,surprise ending,1325466455 +48950,92335,boring,1384620427 +48950,92335,eskimos,1384620418 +48950,92335,ice,1384620445 +48950,92968,alcohol abuse,1330458426 +48950,92968,art,1330458426 +48950,92968,collage,1330458426 +48950,92968,Romania,1330458339 +48950,92968,tramp,1330458426 +48950,92968,trash,1330458426 +48950,92980,Arturo Perez-Reverte,1332719305 +48950,92980,Bosnia,1332719283 +48950,92980,journalism,1332719337 +48950,92980,Sarajevo,1332719300 +48950,92980,war,1332719291 +48950,92980,war journalism,1332719321 +48950,94545,Andalusia,1338738520 +48950,94545,feral kid,1338738460 +48950,94545,guerrillas,1338738439 +48950,94545,nature,1338738471 +48950,94545,shepard,1338738490 +48950,94545,Sierra Morena,1338738513 +48950,94545,wolves,1338738449 +48950,94677,Seville,1344784393 +48950,94780,boring,1426472832 +48950,94810,Butler,1340060997 +48950,94810,cats,1340060985 +48950,94810,child actor,1340060939 +48950,94810,Daniel Brühl,1340060898 +48950,94810,Lluís Homar,1340060911 +48950,94810,robots,1340060923 +48950,94810,Saab,1340060959 +48950,94810,smoking,1340060969 +48950,94810,snow,1340060948 +48950,94817,aged woman,1341269846 +48950,94817,coach,1341269823 +48950,94817,product placement,1341269784 +48950,94817,radio,1341269801 +48950,94817,seduction,1341269788 +48950,94817,unemployment,1341269813 +48950,94817,war of the sexes,1341269856 +48950,94819,Atatürk,1338738148 +48950,94819,Greco-Turkish War,1338737932 +48950,94819,Turkey,1338737940 +48950,94819,Veracruz,1338737949 +48950,94900,bollywood,1341270111 +48950,94900,gigolo,1341270032 +48950,94900,Indian,1341270032 +48950,94900,London,1341270032 +48950,94900,male prostitute,1341270052 +48950,94900,orphan,1341270097 +48950,95300,AGE DISPARITY ROMANCE,1342716987 +48950,95300,Federico Moccia,1342716283 +48950,95300,Rome,1342716976 +48950,95302,arctic,1342717098 +48950,95302,aviation,1342717088 +48950,95302,Soviet Union,1342717108 +48950,95302,World War II,1342717080 +48950,95615,Louis de Funès,1342031340 +48950,95615,miser,1342031313 +48950,95615,Moliére,1342031283 +48950,95615,Theater,1342031298 +48950,95615,Uderzo,1342031304 +48950,95949,commitment,1346456227 +48950,95949,living with parents,1346456202 +48950,95949,maturity,1346456140 +48950,95949,Rome,1346456236 +48950,96121,characters too old,1395361747 +48950,96121,only married people would enjoy this,1395361750 +48950,96181,Commandos,1346456080 +48950,96181,female warriors,1346456096 +48950,96181,French Resistance,1346456002 +48950,96181,nazi villains,1346456043 +48950,96181,Nazis,1346456033 +48950,96181,resistance movement,1346456018 +48950,96181,treason,1346456061 +48950,96585,adapted from:play,1346971874 +48950,96585,Lope de Vega,1346971864 +48950,96585,Siglo de Oro,1346971924 +48950,96585,silly woman,1346971894 +48950,96585,smart woman,1346971886 +48950,96585,sword fight,1346971904 +48950,96585,verse,1346971854 +48950,96603,Cuba,1347099588 +48950,96603,exile,1347099589 +48950,96603,family,1347099589 +48950,96603,home movie,1347099588 +48950,96603,nostalgia,1347099589 +48950,96603,nostalgic,1347099589 +48950,96603,Nostalgic Childhood,1347099588 +48950,96603,poverty,1347099589 +48950,96755,Barcelona,1347836537 +48950,96755,Elsa Pataky,1347836418 +48950,96755,episodic,1347836408 +48950,96755,gay marriage,1347836531 +48950,96755,in-vitro fecundation,1347836408 +48950,96755,infidelity,1347836408 +48950,96805,religion,1348436062 +48950,96805,Seville,1348436062 +48950,96805,video game,1348436062 +48950,97115,emigration,1349217005 +48950,97115,Franco's Spain,1349217115 +48950,97115,Germany,1349217005 +48950,97115,immigrants,1349217005 +48950,97115,Nuremberg,1349217052 +48950,97115,Spain,1349217052 +48950,97115,working class,1349217052 +48950,97304,1970s,1353794379 +48950,97304,cia,1353794379 +48950,97304,diplomat,1353794379 +48950,97304,Iran,1353794379 +48950,97304,Istanbul,1353794341 +48950,97688,Avila,1350828352 +48950,97688,Ávila,1350828273 +48950,97688,carpet,1350828364 +48950,97688,foreign,1350828342 +48950,97688,infidelity,1350828384 +48950,97688,Istanbul,1350828289 +48950,97688,pregnancy,1350828308 +48950,97688,sex,1350828328 +48950,97688,Turkey,1350828299 +48950,98587,Caesar,1354576213 +48950,98587,Camorra,1354576121 +48950,98587,dialect,1354576090 +48950,98587,mafia,1354576121 +48950,98587,prison,1354576168 +48950,98587,Shakespeare,1354576150 +48950,98587,Theater,1354576159 +48950,99041,bisexual,1355880344 +48950,99041,blog,1355880321 +48950,99041,cancer,1355880370 +48950,99041,evangelical,1355880291 +48950,99041,lesbian,1355880334 +48950,99041,Nudity (Topless),1355880262 +48950,99041,parent-children relationship,1355880357 +48950,99041,sex,1355880312 +48950,99041,teenage girl,1355880278 +48950,99114,long,1359242721 +48950,99114,slow motion,1359242729 +48950,99114,violence,1359242710 +48950,99798,absurd,1358124386 +48950,99798,hospital,1358124395 +48950,99798,Romania,1358124367 +48950,99817,lesbian,1409271609 +48950,99817,mental illness,1409271621 +48950,99817,nuns,1409271633 +48950,99817,orphans,1409271574 +48950,99817,religion,1409271562 +48950,99817,Romania,1409271595 +48950,99817,Romanian poverty,1409271558 +48950,99817,winter,1409271647 +48950,100268,Gracita Morales,1359932992 +48950,100268,Jose Luis Lopez Vazquez,1359933013 +48950,100268,parody,1359933035 +48950,100268,vampires,1359933026 +48950,100272,1920s,1359934178 +48950,100272,Andalusia,1359934170 +48950,100272,black and white,1359934233 +48950,100272,bullfighting,1359934190 +48950,100272,cock,1359934214 +48950,100272,Flamenco,1359934259 +48950,100272,midgets,1359934200 +48950,100272,rooster,1359934211 +48950,100272,silent,1359934244 +48950,100272,Snow White,1359934161 +48950,100302,visually appealing,1419426453 +48950,100492,Bedouin,1360800460 +48950,100492,desert,1360800460 +48950,100492,French Legion,1360800325 +48950,100492,Morocco,1360800460 +48950,100492,Rif,1360800460 +48950,101058,mute,1362179970 +48950,101058,romance,1362179919 +48950,101058,superhero,1362179942 +48950,101058,superhero team,1362179932 +48950,101076,guns,1384213747 +48950,101076,hooah,1384213649 +48950,101076,North Korea,1384213726 +48950,101076,nuclear war,1384213695 +48950,101076,Pakistan,1384213672 +48950,101086,chavs,1362333828 +48950,101086,customized car,1362333795 +48950,101086,fame,1362333865 +48950,101086,friendship,1362333794 +48950,101086,Madrid,1362333798 +48950,101086,quest for fame,1362333874 +48950,101086,teenage girl,1362333817 +48950,101086,texting,1362333911 +48950,101264,cellphone scene,1363392678 +48950,101264,elevator,1363392618 +48950,101264,lift,1363392628 +48950,101264,low budget,1363392585 +48950,101264,Romania,1363392607 +48950,101264,teen,1363392650 +48950,101264,teenage girl,1363392642 +48950,101264,teenagers,1363392657 +48950,101264,tense,1363392694 +48950,101470,Cervantes,1364344059 +48950,101470,Geraldine Chaplin,1364344227 +48950,101470,Loarre,1364344209 +48950,101470,Miguel de Cervantes,1364344078 +48950,101470,Shakespeare,1364344092 +48950,101470,Shakespearean references,1364344108 +48950,101470,William Shakespeare,1364344126 +48950,101765,curse,1375820430 +48950,101765,Kenya,1375820374 +48950,101765,Moscow,1375820379 +48950,101765,romantic comedy,1375820415 +48950,101765,travel,1375820416 +48950,101920,Osaka,1365977876 +48950,101920,pinku eiga,1365977929 +48950,101920,pornography,1365977886 +48950,101920,roman porno,1365977910 +48950,101942,cancer,1412108749 +48950,101942,gay,1412108689 +48950,101942,infidelity,1412108703 +48950,101942,italian bittersweet romance,1412108649 +48950,101942,Italy,1412108641 +48950,101942,lemon,1412108710 +48950,101942,villa,1412108722 +48950,101942,wedding,1412108660 +48950,101942,widower,1412108735 +48950,102190,racism,1408476220 +48950,102190,remake,1408476239 +48950,102190,stepmother,1408476244 +48950,102190,submarine,1408476214 +48950,102421,billiard,1368386228 +48950,102421,women,1368386215 +48950,103050,relationships,1370809822 +48950,103052,feminist,1370810829 +48950,103052,London,1370810829 +48950,103052,New York City,1370810828 +48950,103052,Paris,1370810829 +48950,103091,Alps,1371076177 +48950,103091,Bhutan,1371076183 +48950,103091,Blackberry,1371076127 +48950,103091,capitalism,1371076127 +48950,103091,internet addiction,1371076127 +48950,103091,interviews,1371076206 +48950,103091,no answers,1371076399 +48950,103091,Patagonia,1371076177 +48950,103091,questions,1371076196 +48950,103091,Reuters,1371076385 +48950,103091,switzerland,1371076127 +48950,103091,time,1371076062 +48950,103091,time management,1371076062 +48950,103091,time-lapse,1371076063 +48950,103171,Berlin,1371333657 +48950,103171,break-up,1371333753 +48950,103171,buddy movie,1371333723 +48950,103171,company,1371333765 +48950,103171,Frankfurt,1371333691 +48950,103171,german movie,1371333637 +48950,103171,Germany,1371333614 +48950,103171,lesbian character,1371333795 +48950,103171,relationships,1371333708 +48950,103171,road movie,1371333732 +48950,103749,closeted homosexual,1374618918 +48950,103749,defeat,1374618917 +48950,103749,doctors,1374618918 +48950,103749,Nazis,1374618918 +48950,103749,submarine,1374618918 +48950,103749,war crimes,1374618918 +48950,104054,politics,1375821119 +48950,104054,redhead,1375821119 +48950,104054,western,1375821119 +48950,104508,cuisine,1432392432 +48950,104508,restaurant,1432392408 +48950,104508,threesome,1432392418 +48950,104583,animation,1377980524 +48950,104583,McDonalds,1377980552 +48950,104583,Oscar Winner,1377980540 +48950,104583,product placement,1377980524 +48950,104583,product placement overkill,1377980543 +48950,104606,german soldier,1378077820 +48950,104606,looters,1378077854 +48950,104606,Netherlands,1378077820 +48950,104606,resistance movement,1378077867 +48950,104606,Romania,1378077820 +48950,104841,intense,1385849799 +48950,104841,suspense,1385849860 +48950,104841,zero gravity,1385849857 +48950,104913,accident,1381096899 +48950,104913,Formula 1 racing,1381096825 +48950,104913,makeup effects,1381096899 +48950,104920,cinema,1379263772 +48950,104920,Cyprus,1379263806 +48950,104920,rural,1379263772 +48950,104920,television,1379263772 +48950,105375,Argentina,1381098160 +48950,105375,doctor-patient relationship,1381098145 +48950,105375,dolls,1381098233 +48950,105375,ethics of science,1381098218 +48950,105375,eugenics,1381098203 +48950,105375,German History,1381098183 +48950,105375,landscape,1381098129 +48950,105375,Nazis,1381098144 +48950,105375,Patagonia,1381098152 +48950,105377,Argentina,1381099620 +48950,105377,flat characters,1381099703 +48950,105377,Madrid,1381099615 +48950,105377,old age,1381099664 +48950,105377,Peron,1381099620 +48950,105377,politics,1381099620 +48950,105377,propaganda,1381099640 +48950,105499,Christianity,1381597588 +48950,105499,dutch,1381597658 +48950,105499,Non-violent,1381597639 +48950,105499,samurai,1381597599 +48950,105499,violence,1381597618 +48950,105742,American spy,1382913119 +48950,105742,Berlin,1382913042 +48950,105742,computer hacker,1382913035 +48950,105742,ego,1382913089 +48950,105742,Kenya,1382913052 +48950,105742,paranoia,1382913128 +48950,105742,Self-referential,1382913083 +48950,105742,white hair,1382913139 +48950,105742,Wikileaks,1382913010 +48950,106147,gender identity,1383781488 +48950,106147,GENDER-BENDING,1383781494 +48950,106147,house renovations,1383781549 +48950,106147,men and women,1383781534 +48950,106147,role reversal,1383781502 +48950,106491,costumes,1388495115 +48950,106491,dutch,1388495152 +48950,106491,fantasy,1388495129 +48950,106782,drugs,1390759027 +48950,106782,greed,1390759050 +48950,106782,greedy,1390759050 +48950,106782,long,1390759009 +48950,106782,midgets,1390759120 +48950,106782,Nudity (Full Frontal),1390759168 +48950,106782,prostitution,1390759161 +48950,106782,Swiss bank,1390759149 +48950,106988,Andalusia,1386522351 +48950,106988,family,1386522360 +48950,106988,gross,1386522343 +48950,106990,bombing,1386522720 +48950,106990,documentary,1386522720 +48950,106990,Malta,1386522763 +48950,106990,propaganda,1386522721 +48950,106990,real footage,1386522753 +48950,106990,short,1386522720 +48950,106990,short film,1386522721 +48950,106990,war,1386522721 +48950,106990,World War II,1386522730 +48950,107217,Albert Einstein,1387150274 +48950,107217,Art Nouveau,1387150253 +48950,107217,German accent,1387150294 +48950,107217,Klimt,1387150226 +48950,107217,Nazis,1387150303 +48950,107217,toys,1387150325 +48950,107217,TOYS COME TO LIFE,1387150325 +48950,107217,Vienna,1387150221 +48950,107243,bad luck,1387237836 +48950,107243,football,1387237796 +48950,107243,Night,1387237908 +48950,107243,Paris,1387237908 +48950,107243,soccer,1387237857 +48950,107406,Korean,1401027774 +48950,107406,Metropolis,1401027758 +48950,107406,plot holes,1401027738 +48950,107406,snow,1401027715 +48950,107406,social commentary,1401027784 +48950,107406,train,1401027724 +48950,107406,trains,1401027750 +48950,108510,ARO,1390661852 +48950,108510,factory,1390661974 +48950,108510,factory workers,1390662041 +48950,108510,Julio Iglesias,1390661966 +48950,108510,Romania,1390661941 +48950,108510,secretary,1390662017 +48950,108510,Spanish language,1390661958 +48950,108510,sperm donor,1390661997 +48950,108885,Basque,1391722365 +48950,108885,ETA,1391722379 +48950,108885,friendship,1391722395 +48950,108885,Madrid,1391722423 +48950,108885,Pamplona,1391722438 +48950,108885,Spain,1391722483 +48950,108885,terrorism,1391722388 +48950,108885,Willy Toledo,1391722447 +48950,108928,American propaganda,1418345580 +48950,108928,art,1418345617 +48950,108928,Soviet rival,1418345594 +48950,108928,WWII,1418345610 +48950,109027,Albania,1424559760 +48950,109027,Christian freak,1424559731 +48950,109027,Dany Boon,1424559702 +48950,109027,divorce,1424559724 +48950,109027,France,1424559681 +48950,109027,Greece,1424559753 +48950,109027,Slovenia,1424559757 +48950,109027,violence,1424559717 +48950,109321,creationism,1392854935 +48950,109321,painting,1392854889 +48950,109321,social criticism,1392854917 +48950,109321,Venice,1392854905 +48950,109487,drone,1416267594 +48950,109487,Monsters Inc,1416267588 +48950,109487,robot,1416267601 +48950,109487,wave,1416267622 +48950,109492,ghetto,1393462552 +48950,109492,Holocaust,1393462671 +48950,109492,Jewish,1393462571 +48950,109492,long,1393462583 +48950,109492,moral ambiguity,1393462684 +48950,109492,Nazis,1393462570 +48950,109492,prisoners,1393462662 +48950,109492,Rome,1393462535 +48950,109492,Theresienstadt,1393462504 +48950,109492,unscripted parts,1393462617 +48950,109492,Vienna,1393462535 +48950,109596,Alzheimer's disease,1393690241 +48950,109596,amnesia,1393690278 +48950,109596,fraud,1393690225 +48950,109596,nursing home,1393690264 +48950,109596,old age,1393690210 +48950,109736,19th century,1394410469 +48950,109736,biography,1394410527 +48950,109736,feminism,1394410469 +48950,109736,prison,1394410503 +48950,109736,prison drama,1394410503 +48950,109736,Spain,1394410469 +48950,109736,women,1394410519 +48950,109738,Almería,1394411055 +48950,109738,Almeria,1394411062 +48950,109738,AMERICANS ABROAD,1394411010 +48950,109738,bandit,1394411023 +48950,109738,Mexico,1394410991 +48950,109738,peasants,1394411135 +48950,109738,poverty,1394411135 +48950,109738,religion,1394411110 +48950,109738,revolution,1394410991 +48950,109786,Andalusia,1394666231 +48950,109786,death,1394666190 +48950,109786,family,1394666193 +48950,109786,neighbors,1394666209 +48950,109786,smoking,1394666221 +48950,109971,Andalusia,1395363380 +48950,109971,Basque,1395363371 +48950,109971,regionalism,1395363388 +48950,109971,stereotypes,1395363422 +48950,109971,violence,1395363518 +48950,109971,wedding,1395363532 +48950,110497,Central Asia,1397515216 +48950,110497,desert,1397515226 +48950,110497,heroism,1397515296 +48950,110497,Muslim warriors,1397515307 +48950,110497,Red Army,1397515208 +48950,110497,Red Western,1397515454 +48950,110497,remake,1397515172 +48950,110497,siege,1397515241 +48950,110771,Bahamas,1424653196 +48950,110771,histrionic,1424653185 +48950,110771,not funny,1424653191 +48950,110771,predictable,1424653189 +48950,110895,art,1398988091 +48950,110895,critic,1398988129 +48950,110895,Goya,1398988064 +48950,110895,painting,1398988081 +48950,110895,Spain,1398988073 +48950,111614,dog,1401028593 +48950,111614,parasite,1401028631 +48950,111614,parrot,1401028597 +48950,111614,villa,1401028615 +48950,112185,history,1402882015 +48950,112185,Lisbon,1402881944 +48950,112185,Madrid,1402881948 +48950,112185,Spanish culture,1402882031 +48950,112185,sword fight,1402881994 +48950,112185,Theater,1402881969 +48950,112185,theatre,1402881986 +48950,112185,theatrical people/inside the theatre or cinema/actors & acting,1402881969 +48950,112299,French Resistance,1403297772 +48950,112299,german soldier,1403297845 +48950,112299,Paratroopers,1403297811 +48950,112299,pastor,1403297830 +48950,112299,Provence,1403297822 +48950,112299,sequel,1403297885 +48950,112299,Shibboleth,1403297783 +48950,112299,ww2,1403297873 +48950,112299,WWII,1403297873 +48950,112404,army,1416074073 +48950,112404,CIA,1416074067 +48950,112404,Communism,1416074044 +48950,112404,hero,1416074094 +48950,112404,idealism,1416074101 +48950,112404,misleading,1416074226 +48950,112404,Poland,1416074033 +48950,112404,sensationalistic,1416074221 +48950,112404,Soviet Union,1416074062 +48950,112404,texting while driving,1416074084 +48950,112404,Warsaw Pact,1416074109 +48950,112603,asexuality,1405042769 +48950,112603,bikini,1405042725 +48950,112603,Peret,1405042730 +48950,112603,vaudeville,1405042752 +48950,112606,beach,1405043315 +48950,112606,hypocrisy,1405043385 +48950,112606,murder mystery,1405043306 +48950,112606,upper class,1405043337 +48950,112606,youth,1405043322 +48950,112992,Madrid,1406585998 +48950,112992,nightclub,1406586029 +48950,112992,police,1406586053 +48950,112992,small town,1406585991 +48950,112992,suspense,1406586039 +48950,112999,Andalusia,1406588819 +48950,112999,chase,1406588798 +48950,112999,child in peril,1406588784 +48950,112999,Cuéntame,1406588846 +48950,112999,Flamenco,1406588810 +48950,112999,girl,1406588768 +48950,112999,road movie,1406588754 +48950,113001,brothers,1406589560 +48950,113001,family,1406589549 +48950,113001,football,1406589521 +48950,113001,pregnancy,1406589538 +48950,113001,retarded,1406589586 +48950,113001,wedding,1406589528 +48950,113128,medicine,1407107967 +48950,113128,propaganda,1407107995 +48950,113128,Spain,1407107944 +48950,113128,Spanish Civil War,1407107952 +48950,113205,algeria,1407355813 +48950,113205,family,1407355908 +48950,113205,France,1407355805 +48950,113205,immigrants,1407355921 +48950,113205,Islam,1407355823 +48950,113205,Italian,1407355859 +48950,113205,Maserati,1407355838 +48950,113205,racism,1407355790 +48950,113205,Ramadan,1407355832 +48950,113205,self-hatred,1407355901 +48950,113254,balloon,1407711934 +48950,113254,Bedouin,1407711941 +48950,113254,child,1407711983 +48950,113254,France,1407711950 +48950,113254,giraffes,1407711923 +48950,113254,slavery,1407711913 +48950,113254,unhistorical,1407711967 +48950,113315,army,1434899374 +48950,113315,Boredom,1434899367 +48950,113315,bureaucracy,1434899382 +48950,113315,Israel,1434899359 +48950,113315,woman soldier,1434899391 +48950,113851,cocaine,1409858905 +48950,113851,drug trade,1409858775 +48950,113851,Gibraltar,1409858799 +48950,113851,hashish,1409858895 +48950,113851,helicopters,1409858815 +48950,113851,Morocco,1409858791 +48950,113851,offboard,1409858831 +48950,113851,police,1409858874 +48950,113851,police corruption,1409858882 +48950,113851,Spain,1409858782 +48950,114795,historically inaccurate,1414373185 +48950,114795,Turkey,1414373199 +48950,114814,bodyguard,1412725144 +48950,114814,cameo-fest,1412725067 +48950,114814,cameos,1412725057 +48950,114814,conspiracy,1412725134 +48950,114814,cops,1412725127 +48950,114814,ecology,1412725084 +48950,114814,freaks,1412725104 +48950,114814,Nudity (Topless),1412725162 +48950,114814,parody,1412725118 +48950,114814,racism,1412725183 +48950,114814,Rape,1412725094 +48950,114814,tacky,1412725045 +48950,115233,architecture,1413768269 +48950,115233,Berlin,1413768269 +48950,115233,East Germany,1413768269 +48950,115233,German perspective,1413768269 +48950,115233,politics,1413768269 +48950,115233,urban,1413768269 +48950,115412,aunt,1414107038 +48950,115412,evil,1414107023 +48950,115412,Madrid,1414107047 +48950,115412,naive characters,1414106997 +48950,115412,office,1414107011 +48950,115766,bridge,1414975093 +48950,115766,child soldiers,1414975059 +48950,115766,Franka Potente,1414975076 +48950,115766,Nazi Germany,1414975067 +48950,115766,teacher student relationship,1414975086 +48950,115766,teenager,1414975051 +48950,117344,children,1421634417 +48950,117344,forest,1421634421 +48950,117344,monster,1421634398 +48950,117344,Norway,1421634395 +48950,117344,Viking,1421634406 +48950,118770,cattle,1418346000 +48950,118770,neighbor,1418346007 +48950,118770,pioneer,1418345985 +48950,118770,Wild West,1418345995 +48950,118862,Antisemitism,1418487230 +48950,118862,comedy,1418487248 +48950,118862,Communist Romania,1418487204 +48950,118862,heist,1418487211 +48950,118862,histrionic,1418487262 +48950,118862,Jew,1418487222 +48950,118862,Monica Bârladeanu,1418487193 +48950,118862,Romania,1418487206 +48950,118864,absurd dialogue,1418487418 +48950,118864,fickle woman,1418487386 +48950,118864,friend,1418487374 +48950,118864,ghost,1418487366 +48950,118864,jinks,1418487402 +48950,118864,servants,1418487398 +48950,118940,animation,1424568615 +48950,118940,computer music,1424568623 +48950,118940,dance,1424568633 +48950,118940,music,1424568619 +48950,118940,repetition,1424568647 +48950,119332,black and white,1419432923 +48950,119332,found footage,1419432914 +48950,119332,George Lucas,1419432903 +48950,119332,short film,1419432882 +48950,120110,boring,1419858684 +48950,120110,desert,1419858643 +48950,120110,nature,1419858649 +48950,120110,Pampa,1419858632 +48950,120110,unexplained,1419858679 +48950,121025,comedy,1420572872 +48950,121025,gay,1420572847 +48950,121025,police,1420572876 +48950,121025,whodunnit,1420572854 +48950,121157,cliche,1448811192 +48950,121157,Indiana Jones,1448811205 +48950,121157,parrot,1448811195 +48950,121157,Peru,1448811189 +48950,123225,based in real facts,1425089900 +48950,123225,casino,1425089909 +48950,123225,Chinese,1425089922 +48950,123225,roulette,1425089906 +48950,123225,Spain,1425089913 +48950,123949,communism,1421371526 +48950,123949,emigration,1421371505 +48950,123949,mathematics,1421371478 +48950,123949,Romania,1421371481 +48950,123949,secret police,1421371495 +48950,123949,treason,1421371485 +48950,126428,Basque,1422230593 +48950,126428,beret,1422230607 +48950,126428,Catholic,1422230600 +48950,126428,dance,1422230750 +48950,126428,industry,1422230621 +48950,126428,nature,1422230615 +48950,126428,sculpture,1422230636 +48950,126428,sea,1422230624 +48950,127390,Family Guy,1422832425 +48950,127390,parody,1422832431 +48950,127390,Star Wars,1422832416 +48950,128157,absurd,1423439856 +48950,128157,choral,1423439842 +48950,130532,art,1426985635 +48950,130532,beach,1426985639 +48950,130532,black and white,1426985676 +48950,130532,death,1426985623 +48950,130532,old age,1427072526 +48950,130532,Rome,1426985627 +48950,130532,tramway,1426985649 +48950,131031,Barcelona,1427641562 +48950,131031,exploitation,1427641559 +48950,131031,female football,1427641577 +48950,131031,football,1427641548 +48950,131031,Rome,1427641564 +48950,131031,shorts,1427641571 +48950,131031,soccer,1427641556 +48950,131031,transvestite,1427641589 +48950,132134,gay,1428710319 +48950,132134,teenager,1428710317 +48950,132134,veteran,1428710327 +48950,134328,Chinese,1433028842 +48950,134328,Dance Dance Revolution,1433028839 +48950,134328,Japanese,1433028845 +48950,134328,mall,1433028847 +48950,134328,Santiago Segura,1433028831 +48950,134804,Berlin,1433979805 +48950,134804,Lebanese,1433979837 +48950,134804,minor,1433979816 +48950,134804,trial,1433979812 +48950,134804,tribunal,1433979809 +48950,134804,Turkish,1433979835 +48950,134847,ghost,1434224271 +48950,134847,high school,1434224276 +48950,134847,stereotypes,1434224675 +48950,134896,festival,1434411604 +48950,134896,Madrid,1434411580 +48950,134896,operetta,1434411587 +48950,134896,rich old man,1434411597 +48950,134896,zarzuela,1434411584 +48950,135442,dance,1439248067 +48950,135442,graveyard,1439248077 +48950,135442,music,1439248070 +48950,135442,skeleton,1439248064 +48950,135917,Anarchist,1435360388 +48950,135917,bullfight,1435360395 +48950,135917,Communist,1435360384 +48950,135917,disguise,1435360401 +48950,135917,Spanish Civil War,1435360367 +48950,135917,war,1435360370 +48950,136842,class war,1436008883 +48950,136842,death,1436008877 +48950,136842,time,1436008875 +48950,136844,action,1436015870 +48950,136844,mafia,1436015877 +48950,136844,shooting,1436015875 +48950,136844,Uganda,1436015880 +48950,136844,voice over,1436015892 +48950,136848,Goa,1436023341 +48950,136848,infidelity,1436023296 +48950,136848,long,1436023289 +48950,136848,too long,1436023292 +48950,136848,typewriter,1436023328 +48950,136848,writer's block,1436023305 +48950,137715,Barcelona,1436485946 +48950,137715,gipsy,1436486019 +48950,137715,impersonator,1436486023 +48950,137715,inappropriate soundtrack,1436486165 +48950,137715,Madrid,1436485948 +48950,137715,monarchy,1436485930 +48950,137715,product placement,1436486030 +48950,137715,road movie,1436485955 +48950,137715,toilet humor,1436486017 +48950,137715,Vitoria,1436485942 +48950,140178,boxing,1438727127 +48950,140178,con man,1438727148 +48950,140178,football,1438727134 +48950,140178,Madrid,1438727130 +48950,140178,naive,1438727152 +48950,140178,soccer,1438727137 +48950,140539,animation,1439246829 +48950,140539,color,1439246845 +48950,140539,Pierrot,1439246833 +48950,140541,electricity,1439246978 +48950,140541,hotel,1439246981 +48950,140541,silent,1439247000 +48950,140541,special effects,1439246993 +48950,140541,stop motion,1439246984 +48950,140543,documentary,1439247134 +48950,140543,flower,1439247136 +48950,140543,time lapse,1439247145 +48950,140545,animation,1439247345 +48950,140545,black and white,1439247363 +48950,140545,clown,1439247356 +48950,140547,dance,1439248251 +48950,140547,Lumiére,1439248229 +48950,140547,marionette,1439248239 +48950,140547,skeleton,1439248246 +48950,140549,cloth,1439248498 +48950,140549,color,1439248486 +48950,140549,dance,1439248484 +48950,140551,head,1439249035 +48950,140551,multiple exposition,1439249030 +48950,140553,animation,1439249288 +48950,140555,caveman,1439249654 +48950,140555,dinosaur,1439249652 +48950,140555,stop motion,1439249647 +48950,140557,animation,1439249794 +48950,140557,autism,1439249783 +48950,140557,children's drawings,1439249791 +48950,141466,bestialism,1442532696 +48950,141466,donkey,1442532698 +48950,141466,feminism,1442532693 +48950,141466,lesbianism,1442532585 +48950,141466,orgy,1442532578 +48950,141466,preaching,1442532596 +48950,141466,preachy,1442532690 +48950,141466,rape,1442532567 +48950,141466,sadism,1442532700 +48950,141466,simulation,1442532688 +48950,141466,topless,1442532644 +48950,143315,family,1448813575 +48950,143315,Fascism,1448813585 +48950,143315,gay,1448813578 +48950,143315,social class,1448813598 +48950,143452,Bilbao,1443895828 +48950,143452,drugs,1443895824 +48950,143452,heroin,1443895830 +48950,143452,holdup,1443895855 +48950,143452,homosexual,1443895842 +48950,143452,injection,1443896006 +48950,143452,jail,1443895837 +48950,143452,police,1443895834 +48950,143452,press,1443895858 +48950,143452,prison,1443895881 +48950,143452,sequel,1444004434 +48950,143452,state terrorism,1443895874 +48950,143452,voiceover,1443895899 +48950,143515,corpse,1452820963 +48950,143515,death,1452821994 +48950,143515,Eisenstein,1452820949 +48950,143515,gay,1452820967 +48950,143515,Mexico,1452820954 +48950,143515,multiscreen,1452821008 +48950,143515,mummy,1452820960 +48950,143515,room,1452821019 +48950,143515,Soviet,1452820972 +48950,143515,tracking shot,1452821966 +48950,143515,Upton Sinclair,1452821979 +48950,144738,Laibach,1445296241 +48950,144738,metal detector,1445296124 +48950,144738,neighbor,1445296149 +48950,144738,Robin Hood,1445296137 +48950,144738,Romania,1445296117 +48950,144738,strange ending,1445296162 +48950,144738,treasure,1445296120 +48950,144740,copla,1445297201 +48950,144740,gipsy,1445297210 +48950,144740,Havana,1445297216 +48950,144740,immigrants,1445297287 +48950,144740,musical,1445297204 +48950,144740,Seville,1445297213 +48950,144740,ship,1445297289 +48950,146198,Camorra,1448829712 +48950,146198,countryside,1448829741 +48950,146198,loser,1448829732 +48950,146303,couple,1446853829 +48950,146303,Golden Gate,1446853835 +48950,146303,jinx,1446853824 +48950,146303,luck,1446853821 +48950,146303,San Francisco,1446853818 +48950,148380,Berlin,1449451619 +48950,148380,marriage of convenience,1449451616 +48950,148380,neighbour,1449451602 +48950,148380,taxes,1449451599 +48950,150922,Blue Division,1453074978 +48950,150922,Eastern Front,1453074997 +48950,150922,Freemason,1453075010 +48950,150922,Nazis,1453074983 +48950,150922,Russia,1453074993 +48950,150922,snow,1453075000 +48950,150922,Soviet Union,1453074990 +48950,150922,Spain,1453074967 +48950,150922,whodunit,1453075004 +48950,150922,WW2,1453075029 +48974,260,far future,1430452594 +48974,260,space,1430452576 +48974,45666,comedy,1430454916 +48974,45666,quirky,1430454916 +48974,45666,screwball,1430454916 +48986,50,storytelling,1367690983 +48986,1248,criterion,1367690997 +48986,2420,mentor,1367690953 +48986,2421,mentor,1367690953 +48986,3146,comedy,1367690966 +48986,4019,mentor,1367690953 +48986,4816,comedy,1367690966 +48986,4878,original,1367690931 +48986,6016,storytelling,1367690983 +48986,6188,comedy,1367690966 +48986,6953,storytelling,1367690984 +48986,7003,atmosphere,1250696762 +48986,7003,cinematography,1250696800 +48986,7003,steampunk,1250696828 +48986,7099,setting,1277503488 +48986,8125,criterion,1367690997 +48986,8154,criterion,1367690997 +48986,8641,comedy,1367690966 +48986,62304,art,1333198426 +48986,62304,surreal,1333198421 +48986,62304,tales,1333198458 +48986,71899,loneliness,1367691010 +48986,96610,original,1367690931 +49015,541,based on a book,1210004257 +49015,541,cyberpunk,1210004263 +49021,253,based on a book,1426353044 +49021,2125,chick flick,1449630199 +49021,2125,Drew Barrymore,1449630202 +49021,2125,fairy tale,1449630197 +49021,2125,love story,1449630203 +49021,2125,romance,1449630195 +49021,2762,bruce willis,1426353031 +49021,2762,horror,1426353031 +49021,2762,twist ending,1426353031 +49021,48516,complicated plot,1449628515 +49021,48516,Leonardo DiCaprio,1449628506 +49021,48516,Matt Damon,1449628511 +49021,48516,twist ending,1449628517 +49021,48516,violence,1449628523 +49021,49530,Leonardo DiCaprio,1426353411 +49021,54259,adventure,1449629308 +49021,54259,based on a book,1449629317 +49021,54259,british,1449629313 +49021,54259,fairy tale,1449629315 +49021,54259,fantasy,1449629302 +49021,54259,fantasy world,1449629310 +49021,54259,Robert De Niro,1449629304 +49021,54259,romance,1449629306 +49021,54259,whimsical,1449629311 +49021,70567,Hugh Dancy,1426352869 +49021,85414,science fiction,1419180520 +49021,85414,time loop,1419180517 +49021,85414,time travel,1419180522 +49021,85414,twist ending,1419180514 +49021,90405,dystopia,1449628611 +49021,90405,original,1449628619 +49021,90405,sci-fi,1449628615 +49021,90405,social commentary,1449628606 +49021,90405,thought-provoking,1449628604 +49021,96610,complicated,1419180559 +49021,96610,sci-fi,1419180551 +49021,96610,time travel,1419180555 +49021,101864,interesting concept,1426352922 +49021,101864,post-apocalyptic,1426352912 +49021,101864,sci-fi,1426352919 +49021,101864,twists & turns,1426352916 +49021,106920,masterbation,1449628662 +49021,115713,artificial intelligence,1449628288 +49021,115713,Mind Bending,1449628323 +49021,115713,Nudity,1449628313 +49021,115713,Nudity (Full Frontal - Notable),1449628316 +49021,115713,nudity (full frontal),1449628308 +49021,115713,philosophical,1449628297 +49021,115713,plot twist,1449628293 +49021,115713,Psychological,1449628301 +49021,115713,sci-fi,1449628290 +49021,115713,thought provoking,1449628295 +49021,115713,thriller,1449628325 +49021,115713,visual effects,1449628321 +49047,527,exploitative,1427987919 +49047,527,grief porn,1427987919 +49047,527,gross,1427987919 +49047,116495,family,1427991795 +49047,116495,gender,1427991782 +49047,116495,gender transition,1427991788 +49047,116495,parenting,1427991798 +49047,116495,trans,1427991769 +49047,116495,transgender,1427991775 +49062,63082,drama,1453263008 +49062,63082,India,1453262996 +49062,63082,romance,1453262991 +49062,131724,documentary,1453263166 +49062,150856,documentary,1453263209 +49074,293,quirky,1278711720 +49074,500,Robin Williams,1278711688 +49074,589,time travel,1278711630 +49074,1036,based on a book,1278711780 +49074,1380,musical,1278711738 +49074,1380,rock and roll,1278711742 +49074,1726,Post apocalyptic,1278711666 +49074,1726,post-apocalyptic,1278711677 +49074,2147,no dialogue,1278711797 +49074,2571,post-apocalyptic,1278711696 +49074,5991,musical,1278711526 +49074,6942,Romance,1278711484 +49074,30810,quirky,1278711725 +49074,55269,road trip,1278711514 +49074,63072,post-apocalyptic,1278711654 +49074,71106,sci-fi,1278711769 +49074,71106,time travel,1278711762 +49090,277,christmas,1187139035 +49090,914,classic,1187139030 +49090,1688,Disney animated feature,1187139330 +49090,1894,chick flick,1187139248 +49090,1907,Cartoons,1187139118 +49090,2080,cartoon,1187139020 +49090,2125,fairy-tale,1187139191 +49090,2384,comedy for kids,1187139216 +49090,2485,chick flick,1187139202 +49090,2863,beatles,1187139270 +49090,2953,comedy for kids,1187139164 +49090,3916,football,1187139150 +49090,4310,historical,1187139131 +49090,4447,comedy,1187139096 +49090,4992,chick flick,1187139421 +49090,5377,comedy,1187139059 +49090,5502,horror,1187139047 +49090,5528,horror,1187139297 +49090,5620,chick flick,1187139398 +49090,5679,horror,1187139077 +49090,6378,action-packed,1187139091 +49090,7147,fantasy,1187139069 +49090,33660,boxing drama,1187139446 +49090,39183,Gay Cowboy,1187139366 +49090,45499,action-packed,1187139382 +49098,47,serial killer,1368335308 +49098,1132,Nudity (Full Frontal),1368335164 +49098,1264,Nudity (Topless),1368335132 +49098,1327,haunted house,1369110259 +49098,2575,Nudity (Full Frontal - Notable),1368335249 +49098,3275,serial killer,1368335107 +49098,3472,devil,1369110220 +49098,3472,witch,1369110217 +49098,5210,zombie,1369110303 +49098,5210,zombies,1369110307 +49098,5891,Nudity (Full Frontal - Notable),1368419065 +49098,6291,disturbing,1369109921 +49098,7937,Nudity (Topless - Notable),1368335225 +49098,33085,ghosts,1369110268 +49098,44903,to see: horror,1369110285 +49098,69720,horror,1369110329 +49098,70046,serial killer,1369110343 +49098,76251,dark comedy,1369109870 +49098,84764,occult,1368419135 +49098,87232,fantasy,1368882885 +49098,87232,superhero,1368882891 +49098,93838,brutal,1369109937 +49098,101674,gore,1369110241 +49098,101674,satanism,1369110236 +49112,77966,automotive,1428543198 +49112,77966,documentary,1428543198 +49112,77966,top gear,1428543198 +49117,59295,bad science,1261126409 +49117,59295,creationism,1261126381 +49117,59295,misinformation,1261126313 +49117,59295,onesided,1261126374 +49117,59295,propaganda,1261126370 +49117,72998,ecology,1263758866 +49117,72998,morality,1263758860 +49117,72998,plot,1263758871 +49117,78266,childhood issues,1294355740 +49117,78266,genetics,1294355710 +49117,78266,Unjustified twists,1294355734 +49117,78266,weak ending,1294355736 +49117,79132,unpredictable,1282179633 +49117,128600,lynching,1424831625 +49117,128600,moral ambiguity,1424831625 +49117,128600,thought-provoking,1424831625 +49119,32139,1,1152528479 +49134,27831,British gangster,1152853874 +49140,67997,politics,1250139822 +49140,67997,satire,1250139827 +49151,260,fantastic,1432731267 +49151,260,Science Fiction,1432731258 +49159,318,friendship,1437955516 +49159,318,hope,1437955516 +49159,318,prison,1437955516 +49160,785,sports,1287502819 +49160,1285,normal,1287502587 +49167,5971,adventure,1434446804 +49167,5971,anime,1434446804 +49167,5971,cartoon,1434446804 +49262,648,plot twists,1453344244 +49262,648,Tom Cruise,1453344246 +49262,1721,bittersweet,1453344174 +49262,1721,romance,1453344162 +49262,54286,action,1453344262 +49263,318,drama,1421630280 +49263,318,morgan freeman,1421630280 +49263,318,prison escape,1421630280 +49267,68954,computer animation,1247735776 +49267,68954,Pixar,1247735784 +49273,356,based on a book,1243539197 +49273,356,classic,1243539181 +49273,356,comedy,1243539208 +49273,356,history,1243539217 +49273,356,Oscar (Best Effects - Visual Effects),1243539191 +49273,356,Oscar (Best Picture),1243539185 +49273,3000,anime,1243539142 +49273,3000,Hayao Miyazaki,1243539149 +49273,4235,brother-brother relationship,1243539305 +49273,4235,imdb top 250,1243539279 +49273,4235,multiple storylines,1243539274 +49273,4235,Nudity (Topless - Brief),1243539290 +49273,48394,atmospheric,1243539067 +49273,48394,fantasy,1243539063 +49273,48394,imdb top 250,1243539075 +49273,48394,Oscar (Best Cinematography),1243539049 +49273,48394,twist ending,1243539035 +49287,260,space epic,1442674859 +49309,1172,forgettable,1423107351 +49309,1172,heartfelt,1423107351 +49309,1172,meh,1423107351 +49309,3089,family,1421973419 +49309,3089,morality,1421973419 +49309,3089,poverty,1421973419 +49312,1035,musical,1431886832 +49312,1035,seen more than once,1431886855 +49312,2762,enigmatic,1431886903 +49312,2762,twist ending,1431886892 +49313,1,Pixar,1139612080 +49313,2,Joe Johnston,1139760498 +49313,2,Robin Williams,1139760498 +49313,19,Jim Carrey,1139739834 +49313,19,Steve Oedekerk,1139739834 +49313,32,Bruce Willis,1139662510 +49313,32,Joseph Melito,1139662510 +49313,32,Terry Gilliam,1139662510 +49313,34,Chris Noonan,1139662662 +49313,48,Eric Goldberg,1139560375 +49313,48,Mike Gabriel,1139560375 +49313,110,Mel Gibson,1139499977 +49313,145,Matrin Lawrecne,1139611184 +49313,145,Michael Bay,1139611184 +49313,145,Will Smith,1139611184 +49313,158,Brad Silberling,1139560306 +49313,185,Irwin Winkler,1139739748 +49313,185,Sandra Bullock,1139739748 +49313,231,Jeff Daniels,1139662698 +49313,231,Jim Carrey,1139662698 +49313,260,Alec Guinnes,1139559761 +49313,260,George Lucas,1139559761 +49313,260,Harrison Ford,1139559761 +49313,260,Mark Hamill,1139559761 +49313,296,John Travolta,1139500227 +49313,296,Quentin Tarantino,1139500227 +49313,296,Samuel L.Jackson,1139500227 +49313,318,Frank Darabont,1139499530 +49313,318,Morgan Freeman,1139499530 +49313,318,Tim Robbins,1139499530 +49313,329,Gene Roddenberry,1139610060 +49313,344,Jim Carrey,1139662540 +49313,344,Tom Shadyac,1139662540 +49313,356,Robert Zemeckis,1139499886 +49313,356,Tom Hanks,1139499886 +49313,367,Chuck Russell,1139662720 +49313,367,Jim Carrey,1139662720 +49313,370,Peter Segal,1139560498 +49313,377,Jan de Bont,1139662456 +49313,377,Keanu Reeves,1139662465 +49313,380,Arnold Schwarzenegger,1139662411 +49313,380,James Cameron,1139662411 +49313,434,Renny Harlin,1139760598 +49313,434,Sylvester Stallone,1139760598 +49313,442,Marco Brambilla,1139559457 +49313,442,Sylvester Stallone,1139559457 +49313,442,Wesley Snipes,1139559457 +49313,466,Charlie Sheen,1139498016 +49313,480,Steven Spielberg,1139662344 +49313,500,Chris Columbus,1139675730 +49313,500,Robin Williams,1139675730 +49313,527,Liam Neeson,1139498621 +49313,527,Steven Spielberg,1139498621 +49313,539,Meg Ryan,1139760422 +49313,539,Nora Ephron,1139760422 +49313,539,Tom Hanks,1139760422 +49313,589,James Cameron,1139612013 +49313,590,Kevin Costner,1139662380 +49313,592,Jack Nicholson,1139498421 +49313,592,Tim Burton,1139498421 +49313,595,Gary Trousdale,1139662636 +49313,595,Kirk Wise Disney,1139662636 +49313,648,Brian De Palma,1139498016 +49313,648,Tom Cruise,1139498016 +49313,736,Bill Paxton,1139760468 +49313,736,Helen Hunt,1139760469 +49313,736,Jan de Bont,1139760469 +49313,741,Mamoru Oshii,1139677806 +49313,745,Bob Baker,1139498206 +49313,745,Nick Park,1139498206 +49313,780,Bill Pullman,1139610035 +49313,780,Roland Emmerich,1139610035 +49313,788,Eddie Murphy,1139760625 +49313,788,Tom Shadyac,1139760625 +49313,836,Andrew Davis,1139677873 +49313,836,Keanu Reeves,1139677873 +49313,836,Morgan Freeman,1139677873 +49313,919,Judy Garland,1139759732 +49313,919,Victor Fleming,1139759732 +49313,924,Stanley Kubrick,1139559412 +49313,1035,Robert Wise,1139677441 +49313,1036,Bruce Willis,1139612256 +49313,1036,John McTiernan,1139612256 +49313,1059,Baz Luhrmann,1139741006 +49313,1059,Claire Danes,1139741019 +49313,1059,Leonardo DiCaprio,1139741006 +49313,1073,Gene Wilder,1139559593 +49313,1073,Mel Stuart,1139559593 +49313,1080,Terry Jones,1139560268 +49313,1089,Quentin Tarantino,1139559385 +49313,1097,Henry Thomas,1139662751 +49313,1097,Steven Spielberg,1139662751 +49313,1136,Terry Gilliam,1139612188 +49313,1136,Terry Jones,1139612188 +49313,1148,Bob Baker,1139610690 +49313,1148,Nick Park,1139610690 +49313,1196,George Lucas,1139560545 +49313,1196,Harrison Ford,1139560545 +49313,1196,Mark Hamill,1139560545 +49313,1200,James Cameron,1144838167 +49313,1200,Sigourney Weaver,1144838167 +49313,1210,George Lucas,1139559855 +49313,1210,Harrison Ford,1139559855 +49313,1210,Mark Hamill,1139559855 +49313,1214,Ridley Scott,1139612156 +49313,1215,Bruce Campbell,1139498843 +49313,1215,Sam Raimi,1139498843 +49313,1219,Alfred Hitchcock,1139499001 +49313,1219,Anthony Perkins,1139499001 +49313,1222,Matthew Modine,1139759864 +49313,1222,Stanley Kubrick,1139759864 +49313,1223,Nick Park,1139745876 +49313,1240,Arnold Schwarzenegger,1139609964 +49313,1240,James Cameron,1139609964 +49313,1258,Stanley Kubrick,1139560141 +49313,1263,Michael Cimino,1139499196 +49313,1263,Robert De Niro,1139499172 +49313,1270,Christopher Lloyd,1139612063 +49313,1270,Michael J. Fox,1139612063 +49313,1270,Robert Zemeckis,1139612063 +49313,1274,Katsuhiro Ãâ€?tomo,1139674719 +49313,1282,Disney,1139740966 +49313,1291,Harrison Ford,1139560241 +49313,1291,Steven Spielberg,1139560241 +49313,1298,Alan Parker,1139677399 +49313,1342,Bernard Rose,1139741255 +49313,1347,Robert Englund,1139677590 +49313,1347,Wes Craven,1139677590 +49313,1356,Jonathan Frakes,1139674314 +49313,1356,Patrick Stewart,1139674314 +49313,1367,Stephen Herek,1139677616 +49313,1371,DeForest Kelley,1139741163 +49313,1371,Leonard Nimoy,1139741163 +49313,1371,Robert Wise,1139741163 +49313,1371,William Shatner,1139741163 +49313,1372,Nicholas Meyer,1139745780 +49313,1372,William Shatner,1139745780 +49313,1374,Gene Roddenberry,1139498016 +49313,1375,Gene Roddenberry,1139559731 +49313,1376,Gene Roddenberry,1139560289 +49313,1380,John Travolta,1139499224 +49313,1380,Randal Kleiser,1139499224 +49313,1407,Wes Craven,1139560446 +49313,1517,Jay Roach,1139745738 +49313,1517,Mike Myers,1139745738 +49313,1544,Steven Spielberg,1139500445 +49313,1552,Nicolas Cage,1139559662 +49313,1552,Simon West,1139559662 +49313,1556,Jan de Bont,1139739364 +49313,1556,Sandra Bullock,1139739364 +49313,1573,John Travolta,1139739796 +49313,1573,John Woo,1139739796 +49313,1573,Nicolas Cage,1139739796 +49313,1580,Barry Sonnenfeld,1139500304 +49313,1580,Tommy Lee Jones,1139500304 +49313,1580,Will Smith,1139500304 +49313,1641,Peter Cattaneo,1139610739 +49313,1641,RRobert Carlyle,1139610738 +49313,1676,Paul Verhoeven,1139759640 +49313,1682,Jim Carrey,1139498969 +49313,1682,Peter Weir,1139498969 +49313,1704,Ben Affleck(written by),1139612349 +49313,1704,Gus Van Sant,1139612349 +49313,1704,Matt Damon(written by),1139612349 +49313,1704,Robin Williams,1139612349 +49313,1721,James Cameron,1139559792 +49313,1722,Pierce Brosnan,1139499248 +49313,1876,Elijah Wood,1139759499 +49313,1876,Mimi Leder,1139759499 +49313,1876,Robert Duvall,1139759499 +49313,1876,Téa Leoni,1139759499 +49313,1907,Barry Cook,1139674776 +49313,1907,Tony Bancroft,1139674776 +49313,1917,Bruce Willis,1139500386 +49313,1917,Michael Bay,1139500386 +49313,2001,Richard Donner,1139560473 +49313,2003,Joe Dante,1139610659 +49313,2011,Christopher Lloyd,1139676992 +49313,2011,Michael J. Fox,1139676992 +49313,2011,Robert Zemeckis,1139676992 +49313,2012,Christopher Lloyd,1139739714 +49313,2012,Michael J. Fox,1139739714 +49313,2012,Robert Zemeckis,1139739713 +49313,2019,Akira Kurosawa,1139610211 +49313,2028,Steven Spielberg,1139498452 +49313,2028,Tom Hanks,1139498452 +49313,2053,Randal Kleiser,1139673932 +49313,2053,Rick Moranis,1139673932 +49313,2054,Joe Johnston,1139560459 +49313,2115,Harrison Ford,1139739653 +49313,2115,Steven Spielberg,1139739653 +49313,2116,Directed by Ralph Bakshi,1139677080 +49313,2167,Stephen Norrington,1139675003 +49313,2167,Wesley Snipes,1139675022 +49313,2174,Tim Burton,1139560156 +49313,2193,Ron Howard,1139740506 +49313,2193,Val Kilmer,1139740506 +49313,2193,Warwick Davis,1139740506 +49313,2291,Johnny Depp,1139498727 +49313,2291,Tim Burton,1139498710 +49313,2329,Edward Norton,1139611935 +49313,2329,Tony Kaye,1139611935 +49313,2393,Jonathan Frakes,1139739191 +49313,2393,Patrick Stewart,1139739191 +49313,2431,Robin Williams,1139676853 +49313,2431,Tom Shadyac,1139676854 +49313,2571,Andy Wachowski,1139611870 +49313,2571,Larry Wachkowski,1139611870 +49313,2617,Stephen Sommers,1139560438 +49313,2628,Ewan McGregor,1139739493 +49313,2628,George Lucas,1139739493 +49313,2628,Liam Neeson,1139739493 +49313,2657,Jim Sharman,1139560279 +49313,2662,Byron Haskin,1139499429 +49313,2662,Gene Barry,1139499429 +49313,2671,Hugh Grant,1139500350 +49313,2677,Wim Wenders,1139739230 +49313,2683,Heather Graham,1139610163 +49313,2683,Jay Roach,1139610163 +49313,2683,Mike Myers,1139610163 +49313,2700,Trey Parker,1139560354 +49313,2701,Barry Sonnenfeld,1139559816 +49313,2701,Will Smith,1139559816 +49313,2706,Paul Weitz,1139560386 +49313,2716,Bill Murray,1139559628 +49313,2716,Ivan Reitman,1139559628 +49313,2746,Frank Oz,1139676813 +49313,2747,Jonathan Haze,1139740791 +49313,2747,Roger Corman,1139740791 +49313,2762,Bruce Willis,1139498684 +49313,2762,Haley Joel Osment,1139498684 +49313,2762,M.Night Shyamalan,1139498684 +49313,2797,Penny Marshall,1139831729 +49313,2797,Tom Hanks,1139831729 +49313,2890,David O. Russell,1139676771 +49313,2890,George Clooney,1139676770 +49313,2890,Mark Wahlberg,1139676771 +49313,2953,Chris Columbus,1139740856 +49313,2953,Macaulay Culkin,1139740856 +49313,2959,Brad Pitt,1139500162 +49313,2959,David Fincher,1139500162 +49313,2959,Edward Norton,1139500162 +49313,2985,Paul Verhoeven,1139559535 +49313,2985,Peter Weller,1139559535 +49313,2987,Robert Zemeckis,1139673987 +49313,3033,Mel Brooks,1139499826 +49313,3054,Kunihiko Yuyama,1139674638 +49313,3054,Michael Haigney,1139674638 +49313,3147,Frank Darabont,1139560178 +49313,3147,Tom Hanks,1139560178 +49313,3176,Anthony Minghella,1139674078 +49313,3176,Gwyneth Paltrow,1139674078 +49313,3176,Jude Law,1139674078 +49313,3176,Matt Damon,1139674078 +49313,3448,Barry Levinson,1139559490 +49313,3448,Robin Williams,1139559490 +49313,3578,Connie Nielsen,1144838011 +49313,3578,Joaquin Phoenix,1144838011 +49313,3578,Ridley Scott,1144838011 +49313,3578,Russell Crowe,1144838011 +49313,3744,John Singleton,1139674963 +49313,3744,Samuel L.Jackson,1139674963 +49313,3751,Nick Park,1139676432 +49313,3751,Peter Lord,1139676432 +49313,3753,Mel Gibson,1139500077 +49313,3753,Roland Emmerich,1139500077 +49313,3785,Keenen Ivory Wayans,1139676690 +49313,3793,Bryan Singer,1139674548 +49313,3910,Björk,1142976055 +49313,3910,Lars von Trier,1142976055 +49313,3948,Ben Stiller,1139498482 +49313,3948,Robert De Niro,1139498482 +49313,3949,Darren Aronofsky,1139676383 +49313,3949,Ellen Burstyn,1139676383 +49313,3949,Jared Leto,1139676383 +49313,3972,Chia-Liang Liu,1139745698 +49313,3972,Jackie Chan,1139745698 +49313,3977,Shit,1139498420 +49313,3988,Jim Carrey,1139676665 +49313,3988,Ron Howard,1139676665 +49313,3994,Bruce Willis,1139759423 +49313,3994,M. Night Shyamalan,1139759424 +49313,3994,Samuel L.Jackson,1139759423 +49313,3996,Ang Lee,1139674480 +49313,4015,Ashton Kutcher,1139761236 +49313,4015,Danny Leiner,1139761236 +49313,4015,Seann William Scott,1139761236 +49313,4018,Mel Gibson,1139611422 +49313,4018,Nancy Meyers,1139611438 +49313,4027,George Clooney,1139676310 +49313,4027,Joel Coen,1139676310 +49313,4027,John Turturro,1139676343 +49313,4034,Steven Soderbergh,1139560191 +49313,4105,Bruce Campbell,1139560210 +49313,4105,Sam Raimi,1139560210 +49313,4148,Anthony Hopkins,1139611609 +49313,4148,Ridley Scott,1139611609 +49313,4164,Kasi Lemmons,1139674911 +49313,4164,Samuel L.Jackson,1139674911 +49313,4235,Alejandro González Iñárritu,1139745493 +49313,4246,Colin Firth,1139760813 +49313,4246,Hugh Grant,1139760813 +49313,4246,Renée Zellweger,1139760813 +49313,4246,Sharon Maguire,1139760813 +49313,4306,Dreamworks,1139612095 +49313,4367,Angelina Jolie,1139611753 +49313,4367,Simon West,1139611753 +49313,4370,Haley Joel Osment,1139676513 +49313,4370,Steven Spielberg,1139676513 +49313,4446,Hironobu Sakaguchi,1139745626 +49313,4446,Moto Sakakibara (co-director),1139745626 +49313,4638,Joe Johnston,1139761168 +49313,4638,Sam Neill,1139761168 +49313,4701,Brett Ratner,1139676621 +49313,4701,Chris Tucker,1139676621 +49313,4701,Jackie Chan,1139676621 +49313,4728,Jerry Zucker,1139611681 +49313,4886,Pixar,1139559364 +49313,4887,James Wong,1139742670 +49313,4887,Jet Li,1139742670 +49313,4890,Bobby Farrelly,1139761086 +49313,4890,Gwyneth Paltrow,1139761128 +49313,4890,Jack Black,1139761086 +49313,4890,Peter Farrelly,1139761086 +49313,4896,Chris Columbus,1139499557 +49313,4963,Steven Soderbergh,1139559870 +49313,4973,Audrey Tautou,1139500020 +49313,4973,Jean-Pierre Jeunet,1139500020 +49313,4975,Cameron Crowe,1139676171 +49313,4975,Tom Cruise,1139676171 +49313,4993,Ian McKellen,1139499673 +49313,4993,Peter Jackson,1139499673 +49313,5010,Ewan McGregor,1139611011 +49313,5010,Josh Hartnett,1139611011 +49313,5010,Ridley Scott,1139611011 +49313,5047,Steve Oedekerk,1139674176 +49313,5128,Aaliyah,1139742851 +49313,5128,Michael Rymer,1139742851 +49313,5128,Stuart Townsend,1139742862 +49313,5218,Carlos Saldanha (co-director),1139675917 +49313,5218,Chris Wedge,1139675917 +49313,5220,Eddie Murphy,1139742707 +49313,5220,Robert De Niro,1139742707 +49313,5220,Tom Dey,1139742707 +49313,5254,Guillermo del Toro,1139611373 +49313,5254,Wesleys Snipes,1139611373 +49313,5349,Sam Raimi,1139740293 +49313,5349,Tobey Maguire,1139740293 +49313,5377,Hugh Grant,1139675877 +49313,5377,Nick Hornby,1139675876 +49313,5378,Ewan McGregor,1139500047 +49313,5378,George Lucas,1139500047 +49313,5400,Ben Affleck,1139760994 +49313,5400,Morgan Freeman,1139760994 +49313,5400,Phil Alden Robinson,1139760994 +49313,5418,Matt Damon,1139499473 +49313,5445,Steven Spielberg,1139560337 +49313,5459,Barry Sonnenfeld,1139611723 +49313,5459,Tommy Lee Jones,1139611723 +49313,5459,Will Smith,1139611723 +49313,5464,Sam Mendes,1139760709 +49313,5464,Tom Hanks,1139760709 +49313,5464,Tyler Hoechlin,1139760709 +49313,5502,Joaquin Phoenix,1139674859 +49313,5502,M. Night Shyamalan,1139674839 +49313,5502,Mel Gibson,1139674839 +49313,5618,Hayao Miyazaki,1139610919 +49313,5669,Michael Moore,1139559909 +49313,5803,Betty Thomas,1139675580 +49313,5803,Eddie Murphy,1139675580 +49313,5803,Owen Wilson,1139675580 +49313,5816,Chris Columbus,1139676072 +49313,5872,Lee Tamahori,1139611407 +49313,5872,Pierce Brosnan,1139611407 +49313,5944,Brent Spiner,1142976022 +49313,5944,Jonathan Frakes,1142976023 +49313,5944,LeVar Burton,1142976023 +49313,5944,Patrick Stewart,1142976023 +49313,5944,Stuart Baird,1142976023 +49313,5952,Peter Jackson,1139560255 +49313,5956,Cameron Diaz,1139760878 +49313,5956,Daniel Day-Lewis,1139760878 +49313,5956,Leonardo DiCaprio,1139760878 +49313,5956,Martin Scorsese,1139760878 +49313,5971,Hayao Miyazaki,1139742590 +49313,5989,Steven Spielberg,1139675994 +49313,5989,Tom Hanks,1139675994 +49313,6016,Fernando Meirelles,1139559966 +49313,6016,Kátia Lund (co-director),1139559966 +49313,6213,Antoine Fuqua,1150528219 +49313,6213,Bruce Willis,1150528219 +49313,6213,Monica Bellucci,1150528219 +49313,6287,Adam SAndler,1139762096 +49313,6287,Jack Nicholson,1139762096 +49313,6287,Peter Segal,1139762096 +49313,6294,Paul Hunter,1139762196 +49313,6294,Seann William Scott,1139762196 +49313,6294,Yun-Fat Chow,1139762196 +49313,6333,Bryan Singer,1139663258 +49313,6365,Andy Wachowski,1139760947 +49313,6365,Keanu Reeves,1139760947 +49313,6365,Larry Wachkowski,1139760947 +49313,6373,Jim Carrey,1139676220 +49313,6373,Tom Shadyac,1139676220 +49313,6377,Pixar,1139499637 +49313,6378,Charlize Theron,1139761694 +49313,6378,F. Gary Gray,1139761694 +49313,6378,Mark Wahlberg,1139761694 +49313,6534,Ang Lee,1139762063 +49313,6534,Eric Bana,1139762063 +49313,6539,Gore Verbinski,1139559713 +49313,6539,Johnny Depp,1139559699 +49313,6539,Orlando Bloom,1139559699 +49313,6541,Sean Connery,1139745662 +49313,6541,Stephen Norrington,1139745662 +49313,6615,Ken Kirzinger,1139762273 +49313,6615,Robert Englund,1139762273 +49313,6615,Ronny Yu,1139762273 +49313,6664,Arnold Schwarzenegger,1139742531 +49313,6664,Mark L. Lester,1139742531 +49313,6709,Antonio Banderas,1139761877 +49313,6709,Johnny Depp,1139761877 +49313,6709,Robert Rodriguez,1139761877 +49313,6709,Salma Hayek,1139761877 +49313,6711,Bill Murray,1139675962 +49313,6711,Sofia Coppola,1139675962 +49313,6863,Jack Black,1139676138 +49313,6863,Richard Linklater,1139676138 +49313,6874,Quentin Tarantino,1139759957 +49313,6874,Uma Thruman,1139759957 +49313,6934,Andy Wachowski,1139611334 +49313,6934,Larry Wachkowski,1139611334 +49313,6936,Jon Favreau,1139611136 +49313,6936,Will Ferrel,1139611136 +49313,6947,Peter Weir,1139760266 +49313,6947,Russel Crowe,1139760266 +49313,6953,Alejandro González Iñárritu,1139611078 +49313,6953,Sean Penn,1139611078 +49313,7090,Jet Li,1139760108 +49313,7090,Yimou Zhang,1139760108 +49313,7143,Edward Zwick,1139760313 +49313,7143,Ken Watanabe,1139760313 +49313,7143,Tom Cruise,1139760313 +49313,7147,Ewan McGregor,1139610869 +49313,7147,Tim Burton,1139610869 +49313,7153,Peter Jackson,1139611813 +49313,7254,Ashton Kutcher,1139760230 +49313,7254,Eric Bress,1139760179 +49313,7254,J.Mackye Gruber,1139760230 +49313,7323,Daniel Brühl,1139761601 +49313,7323,Katrin Saß,1139761601 +49313,7323,Wolfgang Becker,1139761601 +49313,7325,Ben Stiller,1139761976 +49313,7325,Owen Wilson,1139761976 +49313,7325,Todd Phillips,1139761976 +49313,7360,Zack Snyder,1139761635 +49313,7361,Jim Carrey,1139610968 +49313,7361,Kate Winslet,1139610968 +49313,7361,Michel Gondry,1139610968 +49313,7367,Ethan Coen,1139761944 +49313,7367,Joel Coen,1139761944 +49313,7367,Tom Hanks,1139761944 +49313,7371,Lars von Trier,1139741693 +49313,7371,Nicole Kidman,1139741693 +49313,7373,Guillermo del Toro,1139760382 +49313,7373,John Hurt,1139760382 +49313,7373,Ron Perlman,1139760382 +49313,7438,Quentin Tarantino,1139759937 +49313,7438,Uma Thruman,1139759937 +49313,7448,Barry Levinsoon,1150495351 +49313,7448,Ben Stiller,1150495351 +49313,7448,Jack Black,1150495351 +49313,7458,Brad Pitt,1139762002 +49313,7458,Wolfgang Petersen,1139762002 +49313,7482,Bruce Lee,1139761553 +49313,7482,Robert Clouse,1139761553 +49313,7649,Bruce Boxleitner,1139816450 +49313,7649,Michael Vejar,1139816450 +49313,8360,Dreamworks,1139559989 +49313,8361,Dennis Quaid,1139739418 +49313,8361,Jake Gyllenhaal,1139739418 +49313,8361,Roland Emmerich,1139739418 +49313,8368,Alfonso Cuarón,1139611095 +49313,8370,Takeshi Kitano,1139741617 +49313,8371,David Twohy,1139761830 +49313,8371,vVin Diesel,1139761830 +49313,8622,Michael Moore,1139611022 +49313,8636,Sam Raimi,1139611989 +49313,8636,Tobey Maguire,1139611989 +49313,8665,Matt Damon,1139676057 +49313,8665,Paul Greengrass,1139560016 +49313,8810,Shit,1139499350 +49313,8861,Alexander Witt,1139762140 +49313,8861,Milla Jovovich,1139762140 +49313,8873,Walter Salles,1139675500 +49313,8874,Edgar Wright,1139760012 +49313,8874,Kate Ashfield,1139760012 +49313,8874,Nick Frost,1139760012 +49313,8874,Simon Pegg,1139760012 +49313,8961,Pixar,1139611908 +49313,8970,Freddie Highmore,1139760065 +49313,8970,Johnny Depp,1139760065 +49313,8970,Kate Winslet,1139760065 +49313,8970,Marc Forster,1139760065 +49313,8983,Yimou Zhang,1139741583 +49313,27905,japanese,1139559210 +49313,30707,Clint Eastwood,1139677984 +49313,30707,Hilary Swank,1139677984 +49313,30793,Freddie Highmore,1139745836 +49313,30793,Johnny Depp,1139745836 +49313,30793,Tim Burton,1139745836 +49313,31804,Konstantin Khabensky,1145016198 +49313,31804,Timur Bekmambetov,1145016198 +49313,31804,Valeri Zolotukhin,1145016198 +49313,31804,Vladimir Menshov,1145016198 +49313,31878,Stephen Chow,1139674147 +49313,32587,Frank Miller,1139610812 +49313,32587,Quentin Tarantino (special guest director),1139610812 +49313,32587,Robert Rodriguez,1139610812 +49313,33004,Garth Jennings,1139741662 +49313,33004,Martin Freeman,1139741662 +49313,33493,Ewan McGregor,1139610835 +49313,33493,George Lucas,1139610835 +49313,33495,Jesse Dylan,1144930274 +49313,33495,Mike Ditka,1144930274 +49313,33495,Robert Duvall,1144930274 +49313,33495,Wyll Ferrell,1144930274 +49313,33794,Christopher Nolan,1139560567 +49313,34048,Steven Spielberg,1139499446 +49313,34048,Tom Cruise,1139499446 +49313,36509,Bruce Hunt. Cole Hauser,1145016134 +49313,36509,Eddie Cibrian,1145016134 +49313,36509,Morris Chestnut,1145016134 +49313,38038,Nick Park,1139663455 +49313,38038,Steve Box,1139663455 +49313,38798,Anson Mount,1144929674 +49313,38798,Cameron Diaz,1144929674 +49313,38798,Curtis Hanson,1144929674 +49313,38798,Shirley MacLaine,1144929790 +49313,39052,Samuli Torssonen,1139559237 +49313,40815,Mike Newell,1139611843 +49313,41566,Andrew Adamson,1139612119 +49313,41569,Peter Jackson,1139560130 +49313,42011,Jim Carrey,1139559256 +49320,26152,super-hero,1144716477 +49326,296,bad language,1441084610 +49326,296,bruce willis,1441084589 +49326,296,violence,1441084626 +49326,5459,adventurous,1440998723 +49326,5459,comedy,1440998684 +49326,5459,sci-fi,1441004240 +49326,63082,comedy,1441084758 +49326,63082,feel-good,1441084749 +49326,63082,strong storyline,1441084736 +49326,112171,action,1441084463 +49326,112171,Denzel Washington,1441084470 +49326,112171,violent,1441084492 +49358,47,In Netflix queue,1147577503 +49358,327,based on a comic,1243435004 +49358,327,craptacular,1243435006 +49358,327,Lori Petty,1243435015 +49358,327,Malcolm McDowell,1243435013 +49358,616,Disney animated feature,1243435275 +49358,1046,adolescent gays,1243435194 +49358,1046,gay,1243435191 +49358,1046,gay romance,1243435192 +49358,1123,politics,1243448571 +49358,1123,theme:politics,1243448574 +49358,1189,Errol Morris,1243435710 +49358,1199,black comedy,1243434848 +49358,1199,dark comedy,1243434847 +49358,1199,dystopia,1243434852 +49358,1199,satire,1243434855 +49358,1199,satirical,1243434857 +49358,1199,thought-provoking,1243434859 +49358,1233,In Netflix queue,1147577400 +49358,1235,Cult Classic,1243435101 +49358,1235,dark comedy,1243435116 +49358,1235,humorous,1243435111 +49358,1235,quirky,1243435112 +49358,1243,based on a play,1243435023 +49358,1243,Gary Oldman,1243435026 +49358,1243,Richard Dreyfuss,1243435028 +49358,1259,In Netflix queue,1147577345 +49358,1358,In Netflix queue,1147577459 +49358,1438,predictable movie,1243435329 +49358,1438,utter shit,1243435332 +49358,1509,lesbian,1243436513 +49358,1509,Teddy Award,1243436508 +49358,1748,In Netflix queue,1147577816 +49358,1970,franchise,1243435398 +49358,1970,slasher,1243435401 +49358,1971,franchise,1243435434 +49358,1971,Sequel fever,1243435436 +49358,1971,slasher,1243435432 +49358,1972,franchise,1243435439 +49358,1972,slasher,1243435441 +49358,2064,In Netflix queue,1147577737 +49358,2329,crime,1243434803 +49358,2329,Edward Norton,1243434774 +49358,2329,powerful ending,1243434781 +49358,2329,racism,1243434791 +49358,2329,rape,1243434797 +49358,2329,thought-provoking,1243434784 +49358,2378,franchise,1243435485 +49358,2379,franchise,1243435462 +49358,2380,franchise,1243435477 +49358,2381,franchise,1243435471 +49358,2382,franchise,1243435467 +49358,2383,franchise,1243435465 +49358,2384,comedy for kids,1243435299 +49358,2384,dumb,1243435293 +49358,2542,In Netflix queue,1147577133 +49358,2607,In Netflix queue,1147577909 +49358,2706,gross but funny,1243435244 +49358,2706,Gross-out,1243435247 +49358,2706,stupid,1243435255 +49358,2858,In Netflix queue,1147577395 +49358,3362,black comedy,1243448864 +49358,3429,quirky,1243448853 +49358,3498,In Netflix queue,1140187276 +49358,3524,Dudley Moore,1243435278 +49358,3911,In Netflix queue,1147577382 +49358,3949,In Netflix queue,1147577430 +49358,4226,cult film,1243435039 +49358,4226,disjointed timeline,1243435042 +49358,4226,Mindfuck,1243435046 +49358,4226,twist ending,1243435051 +49358,4235,In Netflix queue,1147577420 +49358,4241,best pokemon movie,1243435448 +49358,4241,Video game connection,1243435450 +49358,4621,babies,1243435383 +49358,4621,prime time stupid family movie,1243435388 +49358,4621,Talking Babies,1243435391 +49358,4642,campy,1243435086 +49358,4642,cult film,1243435088 +49358,4642,sexuality,1243435090 +49358,4642,transgender,1243435092 +49358,4718,sequel,1243435265 +49358,4884,Gay,1243435150 +49358,4973,quirky,1243448816 +49358,4973,romance,1243448821 +49358,4979,In Netflix queue,1147577744 +49358,5147,Ingmar Bergman,1243436550 +49358,5147,meditative,1243436552 +49358,5379,anti-Semitism,1243434840 +49358,5617,In Netflix queue,1147577507 +49358,5832,propaganda,1243435371 +49358,5832,religion,1243435379 +49358,5971,In Netflix queue,1147577151 +49358,6584,Woody Allen,1243435168 +49358,6620,Artistic,1243434811 +49358,6620,cancer,1243434814 +49358,6620,comic books,1243434812 +49358,6856,patriotic,1243435555 +49358,6951,adapted from:book,1243435309 +49358,6951,Crappy Remake,1243435312 +49358,6951,violently stupid,1243435315 +49358,7090,In Netflix queue,1147577170 +49358,7566,In Netflix queue,1140187207 +49358,8125,atmospheric,1243436580 +49358,8253,In Netflix queue,1147577437 +49358,8507,cult film,1243448894 +49358,8607,In Netflix queue,1140187271 +49358,8622,In Netflix queue,1147577831 +49358,8784,In Netflix queue,1147577731 +49358,8874,black comedy,1243434974 +49358,8874,england,1243434994 +49358,8874,offbeat,1243434992 +49358,8874,parody,1243434979 +49358,8874,Simon Pegg,1243434978 +49358,8874,spoof,1243434989 +49358,8874,zombie,1243434982 +49358,25762,Tod Browning,1243434674 +49358,25940,atmospheric,1243448523 +49358,25940,FEMMES FATALES,1243448518 +49358,26524,Oscar (Best Documentary Feature),1243435160 +49358,26729,subgenre:MakingOf (movie),1243448484 +49358,27773,In Netflix queue,1147577492 +49358,46850,crossword puzzles,1243435178 +49358,46850,documentary,1243435181 +49358,46850,gay propaganda,1243435184 +49358,52435,adapted from:book,1243435825 +49358,52767,7n Up (series),1243434759 +49358,54881,arcade,1243435060 +49358,54881,documentary,1243435057 +49358,54881,father daughter relationship,1243435073 +49358,54881,father-son relationship,1243435066 +49358,54881,quirky subculture,1243435078 +49358,59549,coming out,1243434559 +49358,59549,gay,1243434556 +49358,59549,Gay Character,1243434544 +49358,59549,Gay Lead Character,1243434546 +49358,59549,gay relationship,1243434547 +49358,59549,gay romance,1243434549 +49358,59549,homosexuality,1243434551 +49358,59549,surfing,1243434554 +49358,60766,Oscar (Best Documentary Feature),1243448655 +49378,260,"Cheesy space opera, classic",1436604947 +49378,260,good vs evil,1436604966 +49393,71133,Acting,1253088959 +49393,71133,Action Scenes,1253088959 +49393,71133,The Movie,1253088894 +49407,5152,Ganska tam krigsrulle,1142212406 +49427,551,ghosts,1426725097 +49427,551,Halloween,1426725093 +49427,551,Tim Burton,1426725070 +49427,6016,brazil,1426725394 +49427,6016,imdb top 250,1426725400 +49427,55721,corruption,1426726286 +49435,27773,brutal,1447605972 +49435,27773,depressing,1447606015 +49435,27773,disturbing,1447605959 +49435,27773,great soundtrack,1447605949 +49435,27773,incest,1447605965 +49435,27773,stylized,1447605969 +49435,27773,twist ending,1447605988 +49435,27773,violent,1447605981 +49450,296,masterpiece,1446719132 +49471,260,space action,1433262931 +49471,260,space adventure,1433262916 +49471,7099,fantasy world,1433263453 +49471,7099,Studio Ghibli,1433263445 +49505,44665,violent,1188937838 +49514,260,jedi,1432377911 +49514,260,space,1432377892 +49527,260,classic sci-fi,1439762142 +49527,260,scifi cult,1439762149 +49546,296,classic,1430833864 +49546,296,cult film,1430833861 +49546,296,drugs,1430833857 +49546,296,Quentin Tarantino,1430833854 +49546,608,black comedy,1430833815 +49546,608,Coen Brothers,1430833805 +49546,608,Steve Buscemi,1430833827 +49550,260,sci-fi,1151025730 +49550,318,prison,1151026001 +49550,589,action,1151025738 +49550,589,sci-fi,1151025737 +49550,1196,sci-fi,1151025918 +49550,1210,sci-fi,1151025734 +49550,1240,sci-fi,1151026183 +49550,1242,Civil War,1151025769 +49550,1610,submarine,1151026094 +49550,2028,World War II,1151026078 +49550,4993,fantasy,1151026069 +49550,5349,comic book,1151025855 +49550,5952,fantasy,1151026071 +49550,6333,comic book,1151025859 +49550,7153,fantasy,1151025640 +49550,8636,comic book,1151025764 +49550,32587,comic book,1151025824 +49550,33794,comic book,1151025814 +49550,45499,comic book,1151025880 +49559,663,Big Pharmaceutical,1334656917 +49559,813,Animal sidekick,1332466768 +49559,813,Bill Murray,1332466100 +49559,813,Comedy,1332466105 +49559,56805,John C. Reilly,1334655560 +49559,69481,addiction,1332799490 +49559,69481,anti-war,1332799559 +49559,69481,bomb disarming suspense,1332799582 +49559,69481,Iraq War,1332799522 +49559,69481,Middle East,1332799524 +49559,69481,War,1332799509 +49559,73017,Comedy,1334720574 +49559,84152,Bradley Cooper,1333379699 +49559,84152,drugs,1333379794 +49559,84152,suspense,1333379779 +49559,84152,visually appealing,1333379707 +49559,93574,Creepy,1334552886 +49559,93574,Mystery,1334552873 +49559,93574,Speculation,1334553030 +49592,107,treasure,1368316599 +49592,1291,treasure,1368316598 +49592,2022,jesus,1368316588 +49592,2115,treasure,1368316598 +49592,2232,psychology,1352736092 +49592,2288,aliens,1352734221 +49592,2288,disturbing,1352734218 +49592,2405,treasure,1368316598 +49592,2617,treasure,1368316598 +49592,2871,gritty,1352734029 +49592,2871,suspense,1352734032 +49592,3552,Bill Murray,1352734044 +49592,4367,based on a video game,1352734821 +49592,7254,sci-fi,1352734591 +49592,7254,time travel,1352734588 +49592,7318,jesus,1368316587 +49592,8644,sci-fi,1352734124 +49592,8784,psychology,1352734090 +49592,8874,british comedy,1352733774 +49592,8874,zombies,1352733760 +49592,8950,disturbing,1352736906 +49592,8950,psychology,1352736908 +49592,8950,twist ending,1352736910 +49592,51255,british comedy,1352735565 +49592,54286,espionage,1352733969 +49592,56367,cult film,1352733979 +49592,79132,alternate reality,1352734185 +49592,79132,sci-fi,1352734189 +49613,5418,action packed,1381101069 +49613,5418,matt damon!,1381101069 +49622,6503,murder,1187107077 +49631,4646,netflixbacklist,1216074867 +49631,6486,netflix,1164315270 +49631,6844,netflixbacklist,1216074829 +49631,7137,netflixbacklist,1216074897 +49631,7932,netflixbacklist,1216074923 +49631,26094,netflix,1164315196 +49631,26094,netflixbacklist,1216074782 +49634,79132,action,1439185005 +49634,79132,dreams,1439184997 +49634,79132,intellectual,1439184954 +49634,79132,sci-fi,1439185013 +49634,79132,science fiction,1439185017 +49642,4002,between two pillows,1204083337 +49642,4002,people train,1204083337 +49642,4002,shower curtain rings,1204083337 +49642,4002,thanksgiving,1204083337 +49674,72998,long,1265569738 +49674,72998,race issues,1265569747 +49674,72998,racism,1265569761 +49674,72998,revolution,1265569695 +49674,72998,war,1265569707 +49691,1927,imdb top 250,1179244328 +49693,10,ITS AN OK MOVIE IF YOU LIKE JAMES BOUND.,1157559825 +49697,58334,psychological,1438704016 +49697,84120,Philosophy,1434910543 +49697,118706,Capitalism,1422552806 +49697,139415,philosophy,1449521005 +49714,1912,comedy romance,1395914722 +49714,2268,fdbdshgfhv,1395915144 +49714,3105,Good Romantic Comedies,1398932100 +49714,3578,Action thriller,1398931915 +49714,3624,Great movie,1398932070 +49714,3916,dramatic irony,1398931937 +49714,94777,action,1398932120 +49714,99058,comedy,1398932084 +49714,99813,action packed,1398932021 +49714,99813,Amazing Cinematography,1398932020 +49735,21,funny!,1227705750 +49735,21,Gene Hackman,1227705665 +49735,21,Hilarious!,1227705709 +49735,21,hollywood,1227705750 +49735,21,John Travolta,1227705663 +49735,21,mafia,1227705661 +49735,21,satire,1227705750 +49735,21,satire:Hollywood insiders,1227705668 +49735,296,ultra-violence,1155055446 +49735,858,classic,1166826724 +49735,920,Civil War,1166826722 +49735,923,Amazing Cinematography,1227705805 +49735,923,atmospheric,1227705778 +49735,923,Biography,1227705781 +49735,923,black and white,1227705784 +49735,923,Film Theory & Criticism,1227705801 +49735,923,newspaper theme,1227705793 +49735,923,Orson Welles,1227705790 +49735,923,seen more than once,1227705797 +49735,930,Alfred Hitchcock,1166826708 +49735,994,Isabella Rossellini,1155055390 +49735,1089,ultra-violence,1155055501 +49735,1089,violence,1155055477 +49735,1183,adultery,1227705346 +49735,1183,love story,1227705344 +49735,1183,lust,1227705371 +49735,1183,very sad,1227705356 +49735,1183,war,1227705371 +49735,1204,amazing c,1227705824 +49735,1204,atmospheric,1227705571 +49735,1204,awesome soundtrack,1227705637 +49735,1204,biography,1227705628 +49735,1204,desert,1227705577 +49735,1204,Middle East,1227705590 +49735,1204,War,1227705575 +49735,1212,Amazing Cinematography,1227705509 +49735,1212,atmospheric,1227705490 +49735,1212,classic,1166826691 +49735,1212,Criterion,1227705555 +49735,1212,joseph cotton,1227705549 +49735,1212,noir thriller,1227705527 +49735,1212,Orson Welles,1227705497 +49735,1212,photography,1227705500 +49735,1212,vienna,1227705505 +49735,1212,WWII,1227705495 +49735,1213,Martin Scorsese,1166826720 +49735,1266,bleak,1227705465 +49735,1266,clint eastwood,1227705079 +49735,1266,genre:western noir,1227705474 +49735,1266,great acting,1227705453 +49735,1266,gritty,1227705432 +49735,1266,revenge,1227705425 +49735,1266,revisionist western,1227705469 +49735,1266,western,1227705427 +49735,1945,Marlon Brando,1166826704 +49735,4870,Notable Nudity,1155055707 +49735,5364,adultery,1227705282 +49735,5364,lust,1227705271 +49735,5364,Nudity (Topless - Notable),1227705284 +49735,5364,sensual,1227705286 +49735,5364,sexy,1227705279 +49735,6993,adultery,1227705926 +49735,6993,Woody Allen,1227705922 +49735,6993,Woody Allen classic,1227705927 +49735,59731,cheating,1227703034 +49735,97057,adventure,1422139509 +49735,97057,exploration,1422139509 +49735,97057,ocean,1422139509 +49736,356,tom hanks,1442685494 +49736,356,touching,1442685504 +49736,88125,Daniel Radcliffe,1442685634 +49736,88125,epic,1442685645 +49736,88125,magic,1442685628 +49807,93988,gentlemanly,1431965506 +49807,93988,historical,1431965506 +49807,93988,romance,1431965506 +49820,107406,class society,1435091756 +49820,107406,dystopia,1435091756 +49820,107406,inequality,1435091756 +49828,62336,anime,1426985039 +49828,62336,japanese,1426985039 +49828,62336,silly,1426985039 +49828,62336,surreal,1426985039 +49835,593,psychology,1453915659 +49835,1645,psychology,1453590993 +49835,33679,romantic comedy,1453590618 +49835,82202,Italy,1453590553 +49835,82202,Paul Bettany,1453590571 +49835,82202,Seen 2013,1453590565 +49835,92259,based on a true story,1453590829 +49835,92259,emotional,1453590820 +49835,92259,friendship,1453590817 +49835,92259,hilarious,1453590860 +49835,92259,inspirational,1453590832 +49835,92259,social reform,1453590854 +49835,92259,soundtrack,1453590861 +49835,95441,crude humor,1453590713 +49835,95441,not funny,1453590690 +49835,95441,pointless,1453590685 +49835,106696,music,1453590746 +49835,106696,musical,1453590765 +49835,116823,based on a book,1453590901 +49835,130490,Action,1453590950 +49835,130490,sci-fi,1453590963 +49835,130490,Special effects,1453590946 +49847,8973,Catholicism,1151627402 +49865,1198,Adventure,1441307753 +49865,1198,Journey,1441307747 +49865,4993,Epic,1441307773 +49865,4993,epic adventure,1441307775 +49865,4993,Fantasy,1441307766 +49865,4993,Journey,1441307769 +49870,1234,great,1143403562 +49870,102123,stupid,1386477285 +49870,106062,stupid,1393729814 +49871,70,gore,1337263067 +49871,70,splatter,1337263083 +49871,70,vampires,1337263061 +49871,168,Arthurian legend,1337437486 +49871,318,reflective,1335960933 +49871,318,thought-provoking,1335960935 +49871,593,investigation,1335960877 +49871,593,psychology,1335960872 +49871,593,suspense,1335960866 +49871,1127,Ed Harris,1335960535 +49871,1127,first contact,1335960509 +49871,1127,James Cameron,1335960522 +49871,1127,Michael Biehn,1335960538 +49871,1127,sci-fi,1335960495 +49871,1249,action,1335961051 +49871,1249,atmospheric,1335961054 +49871,1249,cynical,1335961058 +49871,1249,Spy,1335961062 +49871,1249,tense,1335961065 +49871,1264,opera,1335961010 +49871,1584,future,1337609768 +49871,1584,idealism,1337609758 +49871,1584,inspirational,1337609776 +49871,1584,mathematics,1337609745 +49871,1584,religion,1337609734 +49871,1584,sci-fi,1337609712 +49871,1584,science,1337609721 +49871,1610,cia,1335964574 +49871,1610,MIND GAMES,1335964568 +49871,1653,genetics,1363980148 +49871,1653,sci-fi,1363980189 +49871,1653,thought-provoking,1363980167 +49871,1849,adapted from:comic,1337437305 +49871,1849,Arthurian legend,1337437296 +49871,1849,King Arthur,1337437299 +49871,2571,alternate reality,1332807073 +49871,2571,cult film,1332807076 +49871,2571,cyberpunk,1332807066 +49871,2571,philosophy,1332807043 +49871,2571,sci-fi,1332807028 +49871,2616,comic book,1333816735 +49871,2686,history,1335960966 +49871,2686,music,1335960958 +49871,2686,musicians,1335960961 +49871,2872,based on a book,1337437434 +49871,2872,King Arthur,1337437415 +49871,2872,magic,1337437424 +49871,2872,medieval,1337437417 +49871,2872,Myth,1337437427 +49871,2872,wizards,1337437440 +49871,2947,espionage,1335964547 +49871,2947,james bond,1335964537 +49871,2947,spy,1335964544 +49871,2947,Spy Thriller,1335964541 +49871,3668,based on a play,1340208488 +49871,3668,Shakespeare,1340208479 +49871,3730,claustrophobic,1335960772 +49871,3730,espionage,1335960770 +49871,3730,Francis Ford Coppola,1335960754 +49871,3730,Spy,1335960761 +49871,3910,slow,1339177115 +49871,4036,Vampire,1358253723 +49871,4226,amnesia,1335960717 +49871,4226,complicated,1335960712 +49871,4226,dreamlike,1335960707 +49871,4226,nonlinear,1335960704 +49871,4226,psychological,1335960697 +49871,4226,stylized,1335960702 +49871,4226,twist ending,1335960699 +49871,4226,twists & turns,1335960721 +49871,4308,musical,1333820626 +49871,4308,stylized,1333820623 +49871,4873,philosophy,1338210547 +49871,4873,thought-provoking,1338210549 +49871,5095,macbeth,1340208401 +49871,5095,Shakespeare adaptation,1340208412 +49871,5219,adapted from:game,1335637544 +49871,5219,video game adaptation,1335637533 +49871,5418,espionage,1335964464 +49871,5418,Matt Damon,1335964468 +49871,5418,memory,1335964471 +49871,5418,spy,1335964451 +49871,5418,thriller,1335964455 +49871,5991,musical,1333816816 +49871,6874,action,1335961135 +49871,6874,nonlinear,1335961130 +49871,6874,violence,1335961138 +49871,6874,violent,1335961146 +49871,7438,action,1335961090 +49871,7438,atmospheric,1335961119 +49871,7438,crime,1335961105 +49871,7438,violent,1335961075 +49871,7438,visually appealing,1335961114 +49871,8644,action,1337609658 +49871,8644,android(s)/cyborg(s),1337609623 +49871,8644,Dynamic CGI Action,1337609663 +49871,8644,futuristic,1337609613 +49871,8644,Isaac Asimov,1337609643 +49871,8644,sci-fi,1337609610 +49871,27036,Arthurian legend,1337437462 +49871,27036,medieval,1337437466 +49871,30850,adapted from:play,1337987766 +49871,30850,Shakespeare,1337987770 +49871,32280,Brecht,1352054494 +49871,42738,action,1337263036 +49871,42738,gory,1337263022 +49871,42738,gothic,1337263001 +49871,42738,vampires,1337262997 +49871,49272,espionage,1335964514 +49871,49272,James Bond,1335964504 +49871,49272,spies,1335964520 +49871,49272,torture,1335964506 +49871,53131,vampires,1337262925 +49871,67255,dark,1337986013 +49871,67255,investigation,1337986004 +49871,67255,suspense,1337986002 +49871,70286,action,1335960595 +49871,70286,atmospheric,1335960627 +49871,70286,humor,1335960620 +49871,70286,mockumentary,1335960598 +49871,70286,peter jackson,1335960588 +49871,70286,sci-fi,1335960581 +49871,72998,aliens,1335960469 +49871,72998,environmental,1335960453 +49871,72998,futuristic,1335960456 +49871,72998,military,1335960464 +49871,72998,mythology,1335960459 +49871,72998,sci-fi,1335960451 +49871,79132,alternate reality,1335960649 +49871,79132,complicated,1335960651 +49871,79132,dreamlike,1335960654 +49871,79132,fantasy,1335960646 +49871,79132,Michael Caine,1335960656 +49871,79132,Paris,1335960671 +49871,79132,philosophy,1335960659 +49871,79132,sci-fi,1335960637 +49871,79132,surreal,1335960638 +49871,79132,thought-provoking,1335960641 +49871,79132,visually appealing,1335960669 +49871,79185,Cameron Diaz,1336927882 +49871,79185,contrived,1336927893 +49871,79185,predictable ending,1336927862 +49871,79185,soundtrack,1336927890 +49871,79185,spy,1336927874 +49871,79185,stupid,1336927869 +49871,79185,Tom Cruise,1336927885 +49871,79185,unrealistic,1336927860 +49871,79293,bad ending,1335964617 +49871,79293,espionage,1335964613 +49871,79293,spy,1335964629 +49871,79293,thriller,1335964651 +49871,79293,unrealistic,1335964624 +49871,81591,dance,1335960824 +49871,81591,dark,1335960821 +49871,81591,psychological,1335960831 +49871,86190,action,1335964433 +49871,86190,assassin,1335964414 +49871,86190,strong female lead,1335964424 +49871,86190,surrealism,1335964421 +49871,86320,cinematography,1340119212 +49871,86320,depression,1340119240 +49871,86320,slow,1340119189 +49871,86882,bittersweet,1340289131 +49871,86882,philosophical,1340289117 +49871,86882,quirky,1340289105 +49871,86882,thought-provoking,1340289102 +49871,86882,time travel,1340289119 +49871,86882,witty,1340289123 +49871,86882,writers,1340289139 +49871,87306,aliens,1335960559 +49871,87306,sci-fi,1335960551 +49871,87306,Steven Spielberg,1335960567 +49871,92420,found footage,1338384346 +49871,92420,sci-fi,1338384333 +49871,93982,Poe,1352671051 +49871,94772,adapted from:play,1337987283 +49871,94772,biography,1337987478 +49871,94772,Brecht,1352054645 +49871,94772,historical,1337987546 +49871,94772,history,1337987366 +49871,94772,science,1337987394 +49880,6,guns,1137190082 +49880,29,dark,1368450817 +49880,32,historiograpghy and time travel,1368404695 +49880,47,sins,1137190128 +49880,111,dark,1368450817 +49880,519,franchise,1368450886 +49880,593,FBI,1368404849 +49880,608,snow,1137190085 +49880,1196,father-son relationship,1368404771 +49880,1214,spaceship,1137189986 +49880,1240,time travel,1368405133 +49880,1287,christianity,1368450790 +49880,1589,ensemble cast,1368450841 +49880,1590,space travel,1368405346 +49880,1610,Marine Corps,1368404888 +49880,1779,time travel,1368405163 +49880,2115,father-son relationship,1368450868 +49880,2288,aliens space science,1144764935 +49880,2389,remake,1137189351 +49880,2571,simulated reality,1368405064 +49880,2672,simulated reality,1368404963 +49880,2672,simulation,1368404963 +49880,3271,steinbeck,1368405248 +49880,3273,franchise,1368450887 +49880,3440,franchise,1368450886 +49880,3863,dreams,1368404918 +49880,4226,memory,1137189340 +49880,4643,time travel,1368405206 +49880,6537,franchise,1368450886 +49880,7817,vortex,1368404584 +49880,26491,nazi paradoy,1368404716 +49880,26704,Ireland,1368404989 +49880,27660,anime,1165889158 +49880,31696,cosmogony,1368405089 +49880,33794,comic,1164339837 +49880,33794,dark,1164339860 +49880,33794,league of shadows,1164339860 +49880,36517,International Relationships,1165888873 +49880,44191,facism,1165889360 +49880,44191,politics,1165889360 +49880,44191,terrorism,1165889360 +49880,46967,erlend's DVDs,1175046765 +49880,53121,franchise,1368450887 +49880,63113,franchise,1368450886 +49880,64497,nanobots,1252624082 +49880,74740,Walls closing over,1305763703 +49880,94864,dreams,1368405048 +49880,94864,space travel,1368405048 +49880,112623,apocalyptic,1406752096 +49880,112623,speaking-animal,1406752079 +49891,8772,John le Carre,1220422725 +49892,30749,great cast excellent,1144013609 +49897,4878,schizophrenia,1389445939 +49897,4878,sleep walking,1389445909 +49897,4975,lucid dreaming,1407490866 +49897,72919,Bad acting,1388997229 +49897,77455,Banksy,1389445428 +49897,77455,hand-held camera,1389445404 +49897,77455,philosophy of art,1389445541 +49897,77455,social commentary,1389445624 +49897,77455,street art,1389445575 +49897,85367,made me laugh,1370066050 +49897,85367,parody: horror film episodes,1370069024 +49897,85367,satire: plastic surgery,1370067453 +49897,85367,word play,1370067453 +49897,89759,social commentary,1430458563 +49897,93740,Ewan McGregor,1407655187 +49897,93740,Funny,1407655231 +49897,93740,Love story,1407655334 +49897,94466,social commentary,1403453110 +49897,97186,social commentary,1388005450 +49897,97186,sport business,1388005648 +49897,103075,childish,1387008387 +49897,103075,sexist,1387008415 +49897,104879,imprisonment,1403439606 +49897,104879,multi-dimensional characters,1403439703 +49897,104879,social commentary,1403439476 +49897,104879,taking justice into own hands,1403439543 +49897,107883,Loneliness,1438493677 +49897,110873,black comedy,1406746918 +49950,508,Legal Drama,1199976699 +49950,1213,Mafia,1199977351 +49950,1361,Legal Documentary,1199938502 +49950,1393,Sports Comedy,1199937923 +49950,1676,Alien Invasion,1199976466 +49950,1682,social commentary,1199938212 +49950,2019,Underdog Triumph,1199976158 +49950,2427,Terrence Malick,1199976119 +49950,2916,Sci Fi,1199937950 +49950,3006,docudrama,1199976220 +49950,3147,Stephen King,1199938340 +49950,8464,Anti-Corporation,1199938293 +49950,44199,Spike Lee,1199976726 +49950,45447,Tom Hanks,1199976540 +49950,47894,civil war,1199939210 +49950,47894,ireland,1199939218 +49950,53894,political commentary,1199939802 +49950,53996,Block,1199976676 +49950,55247,book adaptation,1199981649 +49950,56174,zombies,1199936856 +49968,48516,Action,1431455739 +49968,98491,love,1431455799 +49978,671,hillarious,1185949173 +49978,720,awesome,1185949018 +49978,1907,family,1185949084 +49978,3785,funny,1185949027 +49978,3826,action,1185949155 +49978,3916,chick flick,1185949190 +49978,4262,Uplifting,1185949100 +49978,4270,poor sequel,1185949164 +49978,4310,historical epic,1185949127 +49978,4310,historically inaccurate,1185949127 +49978,4447,tasteless,1185949066 +49978,5679,Poorly Acted,1185948962 +49978,6502,awesome,1185949144 +49978,6934,poor sequel,1185949043 +49978,7147,fantasy,1185948965 +49978,53000,zombies,1185949336 +49985,1215,humorous,1193439857 +49985,1241,campy,1193440010 +49985,1241,zombies,1193440013 +49985,1261,humorous,1193439882 +49985,1261,My movies,1193439878 +49985,2291,burton,1193440277 +49985,2918,best movie ever made,1193440430 +49985,4105,Bruce Campbell,1193439850 +49985,4105,masterpiece,1193439855 +49985,4553,humorous,1193439914 +49985,4553,satirical,1193439917 +49985,4878,quirky,1193440159 +49985,6539,Johnny Depp,1193440090 +49985,45722,Adventure,1193440030 +49985,45722,better than original,1193440023 +49985,53125,Johnny Depp,1193440076 +49985,53125,pirates,1193440073 +49990,260,Alien jibberish,1434499688 +49990,260,hero's journey,1434499778 +49990,260,Male cast,1434499800 +49990,260,Sound effects,1434499769 +50002,260,Sci-Fi,1183963691 +50012,356,emotional,1447628234 +50012,356,feel-good,1447628214 +50012,356,Funny,1447628221 +50012,356,great acting,1447628224 +50012,356,great soundtrack,1447628228 +50012,356,heartwarming,1447628232 +50012,356,historical,1447628211 +50012,356,inspirational,1447628196 +50012,356,inspiring,1447628225 +50012,356,Oscar (Best Picture),1447628200 +50012,356,tom hanks,1447628216 +50012,356,Vietnam,1447628193 +50012,778,addiction,1447628137 +50012,778,British,1447628146 +50012,778,crime,1447628154 +50012,778,dark comedy,1447628126 +50012,778,drugs,1447628156 +50012,778,great soundtrack,1447628142 +50012,778,narrated,1447628152 +50012,1246,heartbreaking,1447628385 +50012,1246,poetry,1447628380 +50012,1270,1950s,1447628349 +50012,1270,alternate reality,1447628361 +50012,1270,classic,1447628356 +50012,1270,Funny,1447628354 +50012,1270,sci-fi,1447628345 +50012,1270,time travel,1447628342 +50012,1270,whimsical,1447628359 +50012,122882,apocalyptic,1447628333 +50012,122882,Colourful apocalypse,1447628330 +50012,122882,dystopian,1447628325 +50012,122882,post apocalypse,1447628321 +50012,122882,post-apocalyptic,1447628319 +50012,122882,visually appealing,1447628323 +50017,260,EPIC,1430353254 +50017,260,space opera,1430353269 +50017,1291,Harrison Ford,1430353367 +50033,260,adventure,1439106002 +50033,260,sci-fi,1439105985 +50060,4159,Kevin Costner,1163646926 +50060,6617,Kevin Costner,1163646888 +50060,96863,dark,1379438241 +50060,97311,adult,1379438300 +50061,260,Not my thing,1433323860 +50061,260,sci-fi,1433323839 +50061,117964,british history,1434243584 +50061,117964,dark hero,1434243584 +50061,117964,hardship,1434243584 +50083,260,geeky,1441545582 +50083,260,space epic,1441545559 +50089,1089,o melhor d todos. uma historia inteira dentro de um galpão,1142862507 +50089,2360,dogma,1203348663 +50089,2360,voto de castidade.,1203348663 +50089,3788,muitas cores! mistério,1147024462 +50089,8981,disturbing,1145126148 +50089,36517,Direção impecável,1147023460 +50089,37736,fotografia demais!,1147024165 +50089,44191,1984,1157277596 +50089,45720,Meryl Streep,1161639395 +50089,45720,perfect,1161639395 +50090,260,cinnamon buns,1435285288 +50106,260,Science Fiction,1439139779 +50106,260,Star Wars,1439139770 +50108,6470,John Wayne,1337175734 +50123,32,post-apocalyptic,1418345812 +50123,32,time travel,1418345810 +50123,32,twist ending,1418345815 +50123,111,robert de niro,1422181351 +50123,909,Jack Lemmon,1422082995 +50123,913,noir thriller,1421120255 +50123,922,atmospheric,1420328441 +50123,922,eerie,1420328435 +50123,928,Alfred Hitchcock,1421694317 +50123,930,Alfred Hitchcock,1419116485 +50123,930,Ingrid Bergman,1419116481 +50123,1173,dark comedy,1429996512 +50123,1173,stylized,1429996515 +50123,1234,classic,1419115804 +50123,1234,Paul Newman,1419115799 +50123,1234,Robert Redford,1419115802 +50123,1234,surprise ending,1419115809 +50123,1237,afterlife,1421119369 +50123,1237,death,1421119362 +50123,1269,dark comedy,1419117027 +50123,1269,screwball comedy,1419117032 +50123,1287,christianity,1422087552 +50123,2010,silent film,1418345743 +50123,2329,disturbing,1418254496 +50123,2329,Neo-Nazis,1418254489 +50123,2329,racism,1418254474 +50123,2529,social commentary,1422644788 +50123,2970,OBSESSIVE QUESTS,1420929453 +50123,3030,samurai,1423359529 +50123,3030,sword fighting,1423359533 +50123,3075,black and white,1419630858 +50123,3075,eerie,1419630853 +50123,3075,insanity,1419630850 +50123,3075,loneliness,1419630841 +50123,3075,MENTAL ILLNESS,1419630866 +50123,3075,paranoid,1419630844 +50123,3075,rape,1419630847 +50123,3201,confrontational,1419284160 +50123,3201,rebellion,1419284158 +50123,3317,adultery,1422173557 +50123,3435,film noir,1420413084 +50123,3476,hallucination,1422218274 +50123,3476,surreal,1422218271 +50123,3481,jack black,1429996330 +50123,3801,courtroom drama,1421515574 +50123,4189,christian,1427306039 +50123,4189,jesus,1427306037 +50123,4546,disturbing,1419634400 +50123,4546,kidnapping,1419634398 +50123,4612,christianity,1425498590 +50123,4612,jesus,1425498593 +50123,4754,cult,1419631167 +50123,4754,cult film,1419631156 +50123,4754,disturbing,1419631164 +50123,4754,enigmatic,1419631161 +50123,4754,pagan,1419631158 +50123,4754,sexual,1419631198 +50123,4754,twist ending,1419631200 +50123,4975,surreal,1422218404 +50123,5008,twist ending,1419202128 +50123,5120,adultery,1419371511 +50123,5120,small cast,1419371515 +50123,6002,twist ending,1420842810 +50123,6063,loneliness,1430259755 +50123,6301,disturbing,1421693447 +50123,6301,harsh,1421693453 +50123,6301,moral ambiguity,1421693445 +50123,6301,rape,1421693450 +50123,6301,Sexualized violence,1421693459 +50123,6530,hallucinatory,1419630817 +50123,6530,mental illness,1419630814 +50123,6609,jesus,1427236305 +50123,6774,creepy,1429996690 +50123,6774,James Woods,1429996679 +50123,6774,surreal,1429996685 +50123,6774,weird,1429996693 +50123,6890,disturbing,1418168976 +50123,6890,enigmatic,1418168978 +50123,6890,violence in america,1418168968 +50123,7013,creepy,1421452326 +50123,7063,dreamlike,1420850628 +50123,7063,insanity,1420850630 +50123,7063,megalomania,1420850633 +50123,7063,stylized,1420850625 +50123,7820,Christianity,1420845678 +50123,7820,Criterion,1420845696 +50123,7820,disturbing,1420845681 +50123,7820,medieval,1420845685 +50123,7820,miracle,1420929292 +50123,7820,psychology,1420845691 +50123,7820,rape,1420845694 +50123,7820,religion,1420845687 +50123,7925,Japan,1420930802 +50123,7925,samurai,1420930799 +50123,8338,stylized,1420846874 +50123,8620,Criterion,1423434242 +50123,8620,surrealism,1423434234 +50123,8914,indie,1422823534 +50123,8914,low budget,1422823530 +50123,26326,surreal,1423610204 +50123,26326,symbolism,1423610203 +50123,26326,weird,1423610208 +50123,26587,understated,1421119630 +50123,26875,Roman Polanski,1427339947 +50123,33880,independent film,1420843193 +50123,33880,Indie,1420843211 +50123,33880,quirky,1420843196 +50123,33880,weird,1420843201 +50123,44937,black market,1418254705 +50123,44937,despicable character,1418254712 +50123,47610,19th century,1423609900 +50123,47793,mumblecore,1420244095 +50123,48696,adultery,1418345549 +50123,48696,dark,1418345560 +50123,48696,disturbing,1418345556 +50123,48696,psychology,1418345552 +50123,56782,religion,1428345985 +50123,56782,visually appealing,1428345982 +50123,62511,meta,1420843035 +50123,62511,Meta Referential,1420843038 +50123,62511,world within a world,1420843042 +50123,64575,great acting,1418253331 +50123,64575,moral ambiguity,1418253274 +50123,64575,thought-provoking,1418253262 +50123,68237,isolation,1418345780 +50123,82173,quirky,1420843256 +50123,93512,signs,1420243966 +50123,93512,unravelling emotional issues,1420243969 +50123,96829,pedophilia,1418253221 +50123,96829,surprise endings,1418253237 +50123,105499,Christianity,1420844276 +50123,109374,quirky,1421279617 +50123,109374,visually appealing,1421279633 +50123,109374,Wes Anderson,1421279630 +50123,109374,whimsical,1421279637 +50123,113793,movie business,1422060374 +50123,115143,crappy,1422043020 +50123,115143,FBI,1419204038 +50123,115143,GANGSTA,1420929374 +50123,115143,niggers,1422043020 +50123,115143,one sided,1419631077 +50123,115143,religion,1419204035 +50123,115143,terrorism,1419204034 +50123,115143,whiny,1422043020 +50123,118248,cia,1421189343 +50123,118248,revenge,1421189343 +50123,118248,undercover cop,1421189343 +50123,118898,failing business,1423356833 +50123,118898,gang war,1423356833 +50123,118898,gangster,1423356833 +50123,126599,marriage,1422742943 +50123,126599,sex,1422742943 +50123,126599,suburban dysfunction,1422742943 +50125,7090,japanese,1423432508 +50125,7090,samurai,1423432508 +50125,7090,sword fight,1423432508 +50125,113345,sci-fi,1427668445 +50125,113345,special effects,1427668445 +50125,113345,war,1427668445 +50133,32,time travel,1159189483 +50133,296,Tarantino,1159189403 +50133,318,prison,1159189393 +50133,318,Stephen King,1159189391 +50133,1208,Francis Ford Copolla,1159189284 +50133,1208,war,1159189283 +50133,2762,twist ending,1159189412 +50133,3578,Rome,1159189516 +50133,3578,Russell Crowe,1159189518 +50133,5445,Philip K. Dick,1159189361 +50133,5445,Steven Spielberg,1159189362 +50133,7361,Charlie Kaufman,1159189515 +50133,7361,surreal,1159189511 +50155,47099,San Francisco,1244681377 +50155,47099,Will Smith,1244681381 +50155,64575,Catholicism,1244681288 +50155,64575,Christianity,1244681295 +50155,64575,religion,1244681311 +50155,64614,Clint Eastwood,1244681242 +50155,64614,culture clash,1244681232 +50155,64716,Immoral,1242508513 +50155,64716,suicide,1242508539 +50155,64716,Will Smith,1242508513 +50155,64957,child abandonment,1242507898 +50155,64957,illogical,1242507898 +50155,65230,animal:dog,1242508250 +50155,65230,Marriage,1242508250 +50155,65230,prioritize family over career,1242508278 +50155,68358,Leonard Nimoy,1242508132 +50155,68358,space,1242508132 +50155,68358,Spok and Uhura turbolift scene,1242508131 +50155,68358,Star Trek,1242508131 +50164,4011,Brad Pitt,1403332410 +50164,4011,complicated,1403332431 +50164,4011,Crime,1403332433 +50164,4011,England,1403332441 +50164,4011,gangster,1403332429 +50164,4011,Guy Ritchie,1403332412 +50164,4011,Jason Statham,1403332437 +50164,4011,multiple storylines,1403332417 +50164,4011,twist ending,1403332421 +50194,90746,3D effects,1330206261 +50194,90746,action right from the start to the very end,1330206256 +50224,260,slinge blade,1434720328 +50224,260,stand by me,1434720317 +50244,6299,migration,1165668045 +50253,260,sci-fi,1439757723 +50253,260,space epic,1439757735 +50254,31804,girlie movie,1149504076 +50278,1653,dystopia,1333999056 +50278,1653,intelligent,1333999052 +50278,1653,sci-fi,1333999048 +50278,1653,thought-provoking,1333999046 +50278,1653,visually appealing,1333999042 +50278,4226,complicated,1333999318 +50278,4226,psychological,1333999309 +50278,4226,twist ending,1333999308 +50278,8914,intellectual,1333999164 +50278,8914,low budget,1333999172 +50278,8914,physics,1333999179 +50278,8914,sci-fi,1333999149 +50278,8914,thought-provoking,1333999151 +50278,8914,time travel,1333999143 +50278,79132,sci-fi,1333999344 +50278,79132,surreal,1333999352 +50278,79132,thought-provoking,1333999338 +50278,79132,thriller,1333999355 +50278,85414,thriller,1333999377 +50278,85414,time travel,1333999367 +50278,85414,twist ending,1333999369 +50291,260,classic sci-fi,1432407104 +50291,260,father-son relationship,1432407090 +50291,260,good vs evil,1432407099 +50291,260,sci-fi,1432407063 +50291,296,disjointed timeline,1432896938 +50291,296,fiction,1432896938 +50291,296,taratino,1432896938 +50297,4993,Fantasy,1139888096 +50297,8582,politics,1139887999 +50297,27850,egomaniacs,1139888029 +50304,1721,Kathy Bates,1196730391 +50304,5952,magic,1196728661 +50304,48774,humanity,1196768357 +50327,296,clever,1436053614 +50327,296,funny,1436053614 +50327,296,quirky,1436053614 +50353,4881,Coen Brothers,1159151847 +50371,1258,Stanley Kubrick,1208419733 +50371,27727,fatih akin,1208419598 +50373,260,good vs evil,1421541678 +50373,260,knights,1421541678 +50373,260,sci-fi,1421541678 +50403,31737,police,1424023842 +50403,31737,psychological,1424023842 +50403,31737,suspense,1424023842 +50403,90929,amazing photography,1424785667 +50403,90929,beautiful,1424785667 +50403,90929,great photography,1424785667 +50423,260,iconic,1435011323 +50423,260,Science Fiction,1435011335 +50458,3081,Fantasy,1230891232 +50458,3081,Johnny Depp,1230891237 +50458,3081,Tim Burton,1230891235 +50467,8982,Beautiful story.,1138579836 +50467,30749,Very emotional true story. Very eye opening.,1138579872 +50490,50,short-term memory loss,1368440682 +50490,107,treasure,1368440457 +50490,150,mars,1368440503 +50490,353,dark hero,1368440521 +50490,380,arnold,1368440550 +50490,485,arnold,1368440551 +50490,521,noir thriller,1368440474 +50490,589,arnold,1368440550 +50490,592,dark hero,1368440521 +50490,648,mountain climbing,1368440668 +50490,668,bollywood,1368440420 +50490,832,conspiracy theory,1368440628 +50490,866,neo-noir,1368440598 +50490,898,screwball comedy,1368440567 +50490,910,screwball comedy,1368440567 +50490,1097,stranded,1368440488 +50490,1240,arnold,1368440550 +50490,1245,neo-noir,1368440598 +50490,1270,spielberg,1368440696 +50490,1291,treasure,1368440457 +50490,1387,spielberg,1368440696 +50490,1391,mars,1368440504 +50490,1580,conspiracy theory,1368440629 +50490,1783,noir thriller,1368440474 +50490,1895,cheerleading,1368440538 +50490,2022,christian,1368440585 +50490,2022,jesus,1368440440 +50490,2115,treasure,1368440457 +50490,2116,dr. seuss,1368440656 +50490,2143,dragon,1368440641 +50490,2353,conspiracy theory,1368440629 +50490,2571,dark hero,1368440521 +50490,2617,treasure,1368440457 +50490,2662,mars,1368440503 +50490,2726,noir thriller,1368440474 +50490,2840,jesus,1368440439 +50490,2916,arnold,1368440550 +50490,3067,screwball comedy,1368440567 +50490,3623,mountain climbing,1368440668 +50490,3986,mars,1368440504 +50490,4896,dr. seuss,1368440655 +50490,5135,bollywood,1368440420 +50490,6377,short-term memory loss,1368440682 +50490,6539,treasure,1368440457 +50490,6662,marx brothers,1368440709 +50490,6873,screwball comedy,1368440567 +50490,6874,dark hero,1368440521 +50490,7090,dragon,1368440642 +50490,7318,jesus,1368440439 +50490,7361,short-term memory loss,1368440682 +50490,7386,christian,1368440585 +50490,8622,conspiracy theory,1368440629 +50490,8983,dragon,1368440642 +50490,33162,christian,1368440584 +50490,51884,bollywood,1368440420 +50490,59784,dragon,1368440642 +50490,63082,bollywood,1368440420 +50490,88744,genetics,1314091593 +50490,88744,James Franco,1314091595 +50490,88744,story,1314091600 +50495,1,children,1329851978 +50495,1,computer animation,1329852012 +50495,1,family,1329851980 +50495,1,funny,1329851993 +50495,1,Pixar,1329851958 +50495,1,Tom Hanks,1329852023 +50495,1,toys,1329852028 +50495,318,based on a book,1329852228 +50495,318,crime,1329852242 +50495,318,inspirational,1329852236 +50495,318,prison escape,1329852218 +50495,318,sexuality,1329852230 +50495,318,twist ending,1329852224 +50512,2028,epic,1439140967 +50512,2028,historical,1439140974 +50512,6333,sci-fi,1439140912 +50512,6333,superhero,1439140919 +50512,65514,bruce lee master,1439140825 +50512,65514,Donnie Yen,1439140811 +50512,65514,kungfu,1439140841 +50512,132796,earthquake,1439140868 +50512,132796,natural disaster,1439140891 +50515,260,adventure,1442849118 +50515,260,classic,1442849111 +50515,260,sci-fi,1442849103 +50515,260,space adventure,1442849121 +50526,8980,overrated,1137706863 +50526,27266,boring,1137706357 +50526,27266,dark,1137706357 +50526,27266,plotless,1139364618 +50526,27266,slow,1137706357 +50526,37733,overrated,1138846401 +50526,41566,boring,1137706909 +50532,101,Bill Murray,1146573106 +50532,101,Wes Anderson,1146573051 +50532,1586,Demi Moore,1151415024 +50532,2353,Gene Hackman,1151414692 +50532,2395,Bill Murray,1146573128 +50532,2395,Wes Anderson,1146573013 +50532,3088,Jimmy Stewart,1151414901 +50532,3994,Bruce Willis,1146616848 +50532,3994,M. Night Shyamalan,1146616848 +50532,4979,Bill Murray,1146573127 +50532,4979,Wes Anderson,1146573039 +50532,8376,Jared Hess,1150513176 +50532,27790,British,1146571424 +50532,27790,feel-good,1146571424 +50532,30810,Bill Murray,1146573130 +50532,30810,Wes Anderson,1146573069 +50532,40819,Nashville,1146571560 +50532,41997,Steven Spielberg,1146602715 +50532,45666,Jack Black,1150512945 +50532,45666,Jared Hess,1150512945 +50532,45666,Napoleon Dynamite,1150512945 +50545,32587,want it,1196733941 +50553,260,fantasy action,1439604013 +50553,260,sci-fi,1439604020 +50554,260,star,1441730893 +50554,260,wars,1441730897 +50601,527,holocaust,1429754793 +50601,527,World War II,1429754797 +50608,2005,Sloth,1154987967 +50608,7285,piercings,1149657815 +50608,7285,teen,1149657811 +50608,27592,vengeance,1149668626 +50608,27773,vengeance,1149668650 +50608,33585,just sex,1154937876 +50631,364,infantil,1155969433 +50631,468,sencilla,1155970812 +50631,2699,terror,1155969409 +50635,56174,great acting,1208243596 +50635,56174,perfect entertainment,1208243576 +50648,4993,adapted from:book,1330135686 +50648,4993,atmospheric,1330135682 +50648,4993,fantasy,1330135688 +50648,4993,Oscar (Best Cinematography),1330135690 +50651,260,good story,1443539985 +50651,260,good versus evil,1443539987 +50651,260,good vs evil,1443539989 +50651,260,horror,1443539929 +50651,260,suspensful,1443539927 +50651,260,thriller,1443539924 +50651,53953,supernatural,1443540557 +50651,54259,Gay stereotypes,1443540463 +50651,56145,apocalypse,1443540524 +50651,56145,atmospheric,1443540528 +50651,56145,psychological,1443540515 +50651,56145,stephen king,1443540536 +50651,56145,surprise ending,1443540513 +50651,56145,twist ending,1443540506 +50651,71057,creepy,1443540631 +50651,71057,dark fantasy,1443540640 +50651,71057,good versus evil,1443540651 +50651,71057,post-apocalyptic,1443540626 +50651,71057,surreal,1443540628 +50651,81564,anti-hero,1443540990 +50651,86332,adapted from:comic,1443540963 +50651,86332,Marvel,1443540938 +50651,86332,mythology,1443540970 +50651,86332,Tom Hiddleston,1443540943 +50651,93840,clever,1443540330 +50651,93840,dark comedy,1443540412 +50651,93840,excellent cinematography,1443540351 +50651,93840,meta,1443540362 +50651,93840,original,1443540388 +50651,93840,original plot,1443540370 +50651,93840,plot twist,1443540339 +50651,93840,suspense,1443540379 +50651,93840,weird,1443540398 +50699,64957,Brad Pitt,1242218687 +50699,68205,gore,1260005399 +50699,68205,stupid,1260005406 +50699,68358,big budget,1242218710 +50699,68358,FX,1242218702 +50699,68358,sci fi,1242218707 +50699,68358,Star Trek,1242218698 +50699,71248,Jason Bateman,1260005274 +50699,71248,Mila Kunis,1260005270 +50699,72998,blue indians in space,1261061040 +50699,72998,effects,1261061019 +50701,260,Science Fiction,1434339931 +50701,260,space action,1434339958 +50708,260,old,1442321061 +50708,260,sci fi,1442321047 +50711,2983,brainwashing,1180094119 +50711,2983,cold war,1180094106 +50711,2983,spies,1180094091 +50712,1270,time travel,1144718109 +50712,4033,politics,1147729230 +50725,1186,Golden Palm,1234507367 +50725,1247,classic,1234507969 +50754,84152,concept,1304206365 +50754,84152,doesn't resist to some cliches,1304206407 +50754,84152,lifeless supporting characters,1304206401 +50754,84152,moral,1304206411 +50754,84152,unfinished storyline,1304206370 +50762,32,original,1368306685 +50762,39,teen movie,1368306910 +50762,46,women,1368306871 +50762,50,excellent script,1368306806 +50762,111,masterpiece,1368306770 +50762,218,women,1368306871 +50762,288,brutality,1368306946 +50762,296,masterpiece,1368306770 +50762,549,musicians,1368306890 +50762,587,supernatural,1368306790 +50762,724,teen movie,1368306910 +50762,904,suspenseful,1368306930 +50762,905,screwball comedy,1368307064 +50762,910,screwball comedy,1368307064 +50762,913,noir thriller,1368306733 +50762,923,masterpiece,1368306770 +50762,1088,dancing,1368306985 +50762,1089,original,1368306685 +50762,1188,dancing,1368306985 +50762,1213,masterpiece,1368306770 +50762,1219,suspenseful,1368306930 +50762,1245,neo-noir,1368306965 +50762,1248,noir thriller,1368306733 +50762,1249,stylish,1368306821 +50762,1264,stylish,1368306821 +50762,1285,teen movie,1368306910 +50762,1305,melancholic,1368306713 +50762,1387,suspenseful,1368306930 +50762,1537,dancing,1368306985 +50762,1617,detective,1368307028 +50762,1617,neo-noir,1368306965 +50762,1678,women,1368306871 +50762,1704,excellent script,1368306806 +50762,1704,mentor,1368306751 +50762,1719,melancholic,1368306713 +50762,1968,teen movie,1368306910 +50762,2144,teen movie,1368306910 +50762,2291,original,1368306685 +50762,2420,mentor,1368306751 +50762,2859,musicians,1368306889 +50762,2863,musicians,1368306889 +50762,2866,musicians,1368306889 +50762,2890,caper,1138569601 +50762,2890,iraq,1138569601 +50762,2915,teen movie,1368306910 +50762,3083,women,1368306871 +50762,3129,musicians,1368306890 +50762,3418,women,1368306871 +50762,3578,Rome,1168829889 +50762,3791,dancing,1368306985 +50762,4018,women,1368306871 +50762,4085,detective,1368307028 +50762,5266,suspenseful,1368306930 +50762,5693,dancing,1368306985 +50762,53123,musicians,1368306889 +50796,260,fantasy,1437531713 +50796,260,sci-fi,1437531700 +50817,2502,satire,1378519020 +50817,8798,Jamie Foxx,1378519704 +50817,51255,action spoof,1378518979 +50817,51255,black comedy,1378518979 +50828,293,assassin,1245658934 +50828,293,beautiful,1245658936 +50828,293,crime,1245658947 +50828,293,drama,1245658950 +50828,293,French,1245658952 +50828,293,great acting,1245658960 +50828,293,hit men,1245658939 +50828,293,hitman,1245658940 +50828,293,love story,1245658942 +50828,293,murder,1245658944 +50828,293,Natalie Portman,1245658957 +50828,293,quirky,1245658954 +50828,296,action,1245657785 +50828,296,assassin,1245657783 +50828,296,Black comedy,1245657752 +50828,296,Bruce Willis,1245657757 +50828,296,dark comedy,1245657754 +50828,296,drugs,1245657787 +50828,296,Mafia,1245657778 +50828,296,multiple storylines,1245657771 +50828,296,nonlinear,1245657775 +50828,296,organized crime,1245657773 +50828,296,Quentin Tarantino,1245657762 +50828,296,quirky,1245657801 +50828,296,Samuel L. Jackson,1245657768 +50828,296,stylized,1245657804 +50828,296,suprisingly clever,1245657791 +50828,296,violence,1245657797 +50828,665,1990s,1245658320 +50828,665,Golden Palm,1245658313 +50828,665,World War II,1245658304 +50828,665,Yugoslavia,1245658302 +50828,743,Leslie Nielsen,1245658116 +50828,743,slapstick humor,1245658119 +50828,743,spoof,1245658129 +50828,778,addiction,1245659148 +50828,778,black comedy,1245659128 +50828,778,British,1245659143 +50828,778,child abuse,1245659159 +50828,778,crime,1245659146 +50828,778,dark comedy,1245659140 +50828,778,heroin,1245659131 +50828,778,soccer,1245659134 +50828,778,violence,1245659136 +50828,903,Alfred Hitchcock,1245657548 +50828,903,Atmospheric,1245657542 +50828,903,classic,1245657544 +50828,903,HAUNTED BY THE PAST,1245657530 +50828,903,Hitchcock,1245657546 +50828,903,identity,1245657554 +50828,903,melancholy,1245657538 +50828,903,obsession,1245657552 +50828,903,paranoid,1245657522 +50828,903,switching places,1245657535 +50828,922,atmospheric,1245657658 +50828,922,black comedy,1245657631 +50828,922,classic,1245657635 +50828,922,dark,1245657653 +50828,922,noir thriller,1245657627 +50828,922,satirical,1245657644 +50828,1148,Aardman studios,1245658790 +50828,1148,animated,1245658792 +50828,1148,animation,1245658794 +50828,1148,Clay Animation,1245658810 +50828,1148,claymation,1245658805 +50828,1148,robots,1245658773 +50828,1148,stop motion,1245658802 +50828,1240,Arnold Schwarzenegger,1245658245 +50828,1240,cyborgs,1245658257 +50828,1240,future,1245658260 +50828,1240,James Cameron,1245658248 +50828,1240,robots,1245658273 +50828,1240,sci-fi,1245658251 +50828,1240,time travel,1245658252 +50828,1258,based on a book,1245657715 +50828,1258,cult film,1245657735 +50828,1258,disturbing,1245657709 +50828,1258,dreamlike,1245657705 +50828,1258,ghosts,1245657708 +50828,1258,Jack Nicholson,1245657682 +50828,1258,Nudity (Full Frontal),1245657725 +50828,1258,Stanley Kubrick,1245657680 +50828,1258,Stephen King,1245657688 +50828,1279,episodic,1245657923 +50828,1279,humorous,1245657916 +50828,1279,Jim Jarmusch,1245657897 +50828,1279,multiple locations,1245657912 +50828,1279,multiple storylines,1245657899 +50828,1279,quirky,1245657903 +50828,1279,talky,1245657908 +50828,2360,family,1245658843 +50828,2360,father-son relationship,1245658868 +50828,2360,letters,1245658848 +50828,2360,low budget,1245658850 +50828,2360,racism,1245658853 +50828,2360,secrets,1245658858 +50828,3160,melancholy,1245657280 +50828,3160,multiple storylines,1245657277 +50828,3160,Philip Seymour Hoffman,1245657268 +50828,3160,racism,1245657300 +50828,3160,Tom Cruise,1245657273 +50828,3569,explicit sex,1245657334 +50828,3569,Lars von Trier,1245657320 +50828,3569,mental disability,1245657327 +50828,3569,mental illness,1245657330 +50828,3569,social commentary,1245657324 +50828,3949,addiction,1245659075 +50828,3949,based on a book,1245659077 +50828,3949,cinematography,1245659080 +50828,3949,dark,1245659073 +50828,3949,depressing,1245659068 +50828,3949,disturbing,1245659070 +50828,3949,drug abuse,1245659063 +50828,3949,DRUG ADDICTION,1245659065 +50828,3949,drugs,1245659095 +50828,3949,heroin,1245659060 +50828,3949,loneliness,1245659091 +50828,3949,prostitution,1245659088 +50828,3949,psychology,1245659057 +50828,3949,social commentary,1245659055 +50828,4848,Atmospheric,1245657947 +50828,4848,CRIME GONE AWRY,1245657944 +50828,4848,David Lynch,1245657942 +50828,4848,dreamlike,1245657981 +50828,4848,Enigmatic,1245657967 +50828,4848,hallucinatory,1245657971 +50828,4848,lesbian,1245657973 +50828,4848,nonlinear,1245657951 +50828,4848,Nudity (Full Frontal - Notable),1245657955 +50828,4848,surreal,1245657957 +50828,4848,surrealism,1245657958 +50828,4848,thriller,1245657961 +50828,6538,books,1245659257 +50828,6538,drinking,1245659263 +50828,6538,imagination,1245659250 +50828,6538,sex scenes,1245659245 +50828,6538,surprise ending,1245659243 +50828,6538,WRITER'S LIFE,1245659237 +50828,6538,wtf,1245659272 +50828,7371,america,1245657396 +50828,7371,art house,1245657394 +50828,7371,artsy,1245657414 +50828,7371,disturbing,1245657390 +50828,7371,drama,1245657387 +50828,7371,experimental,1245657381 +50828,7371,Groundbreaking,1245657385 +50828,7371,Lars von Trier,1245657365 +50828,7371,Nicole Kidman,1245657363 +50828,7371,philosophy,1245657368 +50828,7371,political,1245657371 +50828,7371,social control,1245657375 +50828,7371,Underrated,1245657373 +50828,7946,Elizabeth Taylor,1245657240 +50828,7946,John Huston,1245657226 +50828,7946,less than 300 ratings,1245657245 +50828,7946,Marlon Brando,1245657235 +50828,8360,animation,1245658215 +50828,8360,computer animation,1245658184 +50828,8360,Disney,1245658200 +50828,8360,Dreamworks,1245658197 +50828,8360,Eddie Murphy,1245658193 +50828,8360,parody,1245658188 +50828,8360,talking animals,1245658186 +50828,30803,empty house,1245657504 +50828,30803,Ki-duk Kim,1245657431 +50828,30803,Kim Ki-duk,1245657467 +50828,30803,quiet,1245657474 +50828,30803,Romantic and sweet,1245657495 +50828,30803,STAR-CROSSED LOVERS,1245657482 +50828,30803,stylized,1245657486 +50828,30803,understated,1245657450 +50828,30803,very little dialogue,1245657435 +50828,30803,visual,1245657445 +50828,38304,Bob Dylan,1245658606 +50828,38304,Martin Scorsese,1245658610 +50828,41285,clever,1245658036 +50828,41285,Disturbing,1245658039 +50828,41285,love affair,1245658030 +50828,41285,murder mystery,1245658027 +50828,41285,non-hollywood ending,1245658009 +50828,41285,Scarlett Johansson,1245658044 +50828,41285,tennis,1245658020 +50828,41285,wealth,1245658024 +50828,41285,Woody Allen,1245658016 +50828,44555,communism,1245658069 +50828,44555,corruption,1245658073 +50828,44555,East Germany,1245658066 +50828,44555,Germany,1245658062 +50828,44555,spying,1245658076 +50828,44555,Stasi,1245658081 +50828,44555,suicide,1245658084 +50828,44555,surveillance,1245658089 +50828,44555,voyeurism,1245658078 +50828,44633,mental illness,1245659009 +50828,44633,music documentary,1245659004 +50828,44633,Outcast Artist,1245659007 +50828,47491,Anders Thomas Jensen,1245658660 +50828,47491,black comedy,1245658685 +50828,47491,Neo-Nazis,1245658667 +50828,47491,rural,1245658671 +50828,47491,small town,1245658679 +50828,47491,trees,1245658682 +50828,55269,cinematography,1245658378 +50828,55269,dark comedy,1245658367 +50828,55269,family dynamics,1245658364 +50828,55269,spiritual journey,1245658355 +50828,55269,train trip,1245658353 +50828,55269,Wes Anderson,1245658351 +50828,55820,BOUNTY HUNTERS,1245657850 +50828,55820,coen brothers,1245657880 +50828,55820,great acting,1245657827 +50828,55820,hitchhiker,1245657871 +50828,55820,Oscar Best Picture,1245657857 +50828,55820,slow pacing,1245657838 +50828,55820,thriller,1245657840 +50828,55820,twist ending,1245657833 +50828,69140,adapted from:play,1245657587 +50828,69140,based on a play,1245657591 +50828,69140,cannibalism,1245657595 +50828,69140,serial killer,1245657602 +50831,112552,excellent acting,1426337064 +50831,112552,intense,1426337064 +50831,112552,twists & turns,1426337064 +50841,64983,no matter what role it is i will not change my persona everybody worships 'the cruise',1249699006 +50841,64983,Tom Cruise,1249698989 +50843,2712,dreams,1297617780 +50843,27773,twist ending,1297617732 +50843,48394,alternate reality,1297617705 +50843,48394,Spanish,1297617698 +50843,52952,england,1297618287 +50854,1173,Peter Greenaway,1352678324 +50866,296,classic,1433709347 +50866,296,interesting,1433709347 +50866,296,tarantino,1433709347 +50867,1199,atmospheric,1272764447 +50867,1199,black comedy,1272764502 +50867,1199,dreamlike,1272764500 +50867,1199,quirky,1272764464 +50867,1199,Robert De Niro,1272764505 +50867,1199,satirical,1272764492 +50867,1199,sci-fi,1272764517 +50867,1199,stylized,1272764471 +50867,1199,surreal,1272764466 +50867,1199,Terry Gilliam,1272764507 +50867,1199,thought-provoking,1272764469 +50867,6502,futuristic,1272764211 +50867,6502,post-apocalyptic,1272764243 +50867,6502,stylized,1272764214 +50867,6502,visually appealing,1272764218 +50867,48394,alternate reality,1272764381 +50867,48394,atmospheric,1272764375 +50867,48394,bittersweet,1272764377 +50867,48394,surreal,1272764367 +50880,1249,stylish,1423488672 +50880,6283,anime,1415791193 +50880,6283,sci-fi,1415791200 +50880,90690,bootlegging,1423431410 +50880,90690,historical,1423431410 +50880,90690,prohibition,1423431410 +50880,109487,good science,1427581813 +50880,109487,Michael Caine,1427581803 +50880,109487,physics,1427581832 +50880,109487,sci-fi,1427581800 +50880,114935,science fiction,1439590682 +50880,114935,time travel,1439590677 +50880,114935,twist ending,1439590679 +50880,116821,comedy,1415884632 +50880,116821,music industry,1415887698 +50880,116821,satire,1415887689 +50880,116821,teen idol,1429459968 +50880,119145,british comedy,1436041375 +50880,119145,gentlemanly,1436041369 +50880,119145,Michael Caine,1436041381 +50880,119145,spy thriller,1436041372 +50880,122882,action,1445794574 +50880,122882,desert,1445794565 +50880,122882,post apocalyptic,1445794556 +50880,122882,sci-fi,1445794547 +50880,134256,bank robbery,1433017735 +50880,134256,comedy,1433017691 +50880,134256,crime,1433017693 +50880,134256,drinking,1433017705 +50880,134256,lapland,1433017696 +50880,134256,pregnancy,1433017957 +50905,260,Science Fiction,1435089342 +50905,260,space,1435089348 +50905,318,drama,1435093626 +50905,318,friendship,1435093626 +50905,318,prison escape,1435093626 +50906,904,Classic,1159383955 +50936,866,atmospheric,1444252730 +50936,866,neo-noir,1444252743 +50936,866,stylized,1444252726 +50936,46976,existentialism,1440882293 +50936,46976,Maggie Gyllenhaal,1440882308 +50936,58334,growing up,1452638512 +50936,58334,Sophia Myles,1452638541 +50936,89039,Brit Marling,1451859723 +50936,90795,corruption,1422108831 +50936,90795,politics,1422108831 +50936,90795,society,1422108831 +50936,97938,cinematography,1434307613 +50936,97938,emotional,1434307625 +50936,98126,corruption,1429305116 +50936,98126,politics,1429305116 +50936,98126,selfishness,1429305116 +50936,103235,con artists,1429458611 +50936,103235,rescuer becomes victim,1429458582 +50936,103980,narcissism,1428100594 +50936,110586,despair,1428100961 +50936,110586,suicide by proxy,1428100852 +50936,110882,responsible,1428869486 +50936,112804,believer,1433714651 +50936,117881,existential,1427491671 +50936,117881,family,1427491683 +50936,117881,mother and daughter,1427491792 +50936,127202,loss,1451686697 +50973,803,relationships,1368130931 +50973,1442,mentor,1368130478 +50973,2095,family,1368131258 +50973,2195,comedy,1368130517 +50973,2707,great ending,1368131280 +50973,3646,comedy,1368130518 +50973,3674,family,1368131258 +50973,4226,great ending,1368131280 +50973,4387,action,1368130821 +50973,4565,action,1368130821 +50973,4658,weird,1368131071 +50973,4776,great acting,1368131117 +50973,4887,action,1368130821 +50973,5250,comedy,1368130517 +50973,5313,action,1368130821 +50973,5546,horror,1368131231 +50973,5682,dramatic,1368130795 +50973,5942,comedy,1368130517 +50973,6063,weird,1368131071 +50973,6270,visually appealing,1368131094 +50973,6777,dramatic,1368130795 +50973,6910,original,1368130395 +50973,7486,relationships,1368130931 +50973,7572,dramatic,1368130795 +50973,8531,comedy,1368130518 +50973,8862,original,1368130394 +50973,33158,action,1368130821 +50973,34530,comedy,1368130518 +50973,44199,great ending,1368131280 +50973,45003,horror,1368131231 +50973,45730,storytelling,1368130561 +50973,47610,great ending,1368131280 +50973,47970,relationships,1368130931 +50973,58492,relationships,1368130931 +50973,64993,loneliness,1368130691 +50973,65577,story,1368131318 +50973,66097,storytelling,1368130561 +50973,82242,original,1368130395 +50973,85179,anime,1349476642 +50973,85179,anime cliches,1349476648 +50973,85179,computers,1349476650 +50973,85179,disaster,1349476693 +50973,85179,family,1349476697 +50973,85179,hacking,1349476653 +50973,85179,Japanese,1349476665 +50973,85179,netflix,1349476688 +50973,85179,Oz,1349476782 +50973,85179,virtual reality,1349476658 +50973,90647,story,1368131318 +50973,94266,relationships,1368130931 +50973,95875,action,1368130821 +50973,98809,storytelling,1368130561 +50973,98961,dramatic,1368130795 +50982,260,George Lucas,1438200148 +50982,260,sci-fi,1438200140 +51017,1610,cold war,1441317724 +51017,1610,sean connery,1441317709 +51017,1610,thriller,1441317702 +51017,2571,character arc,1441317056 +51017,2571,coo,1441317015 +51017,2571,dramatic,1441317003 +51017,2571,thought-provoking,1441316995 +51017,5033,British secret service,1441317623 +51017,5033,Romance,1441317591 +51017,5033,Russia,1441317635 +51017,5033,Sean Connery,1441317669 +51017,6959,Historical,1441317229 +51017,6959,Middle-ages,1441317237 +51017,6959,Romance,1441317208 +51017,8581,Microsoft,1441462459 +51017,53993,Better than I expected,1441317903 +51017,53993,family,1441317913 +51017,53993,Funny,1441317877 +51017,53993,Inspirational,1441317871 +51017,53993,Political satire,1441317883 +51017,56587,death,1441317848 +51017,56587,inspirational,1441317840 +51017,68954,Adult problems,1441462786 +51017,68954,heartbreaking,1441462808 +51017,68954,weird,1441462765 +51017,87194,Father-son conflict,1441317807 +51017,87194,Inspirational,1441317798 +51017,87194,Tracel,1441317816 +51017,109487,father-daughter conflict,1441317301 +51017,109487,philosophical issues,1441317312 +51017,109487,sci-fi,1441317324 +51017,111759,good vs evil,1441317147 +51017,111759,Reluctant Hero,1441317114 +51017,111759,time travel,1441317121 +51045,7327,Favorite,1403462738 +51058,32596,horrible,1139280063 +51059,296,action,1428068459 +51059,296,irony,1428068459 +51059,296,psychological,1428068459 +51066,50,imdb top 250,1191862858 +51066,1092,Erotic,1183487168 +51066,54503,OverHyped,1198536287 +51069,53894,Michael Moore,1185238797 +51086,778,British,1297887174 +51086,778,dark comedy,1297887185 +51086,778,drugs,1297887207 +51086,778,great soundtrack,1297887182 +51086,778,Nudity (Full Frontal - Notable),1297887197 +51086,2959,Brad Pitt,1297887317 +51086,2959,dark comedy,1297887298 +51086,2959,philosophy,1297887306 +51086,2959,psychology,1297887304 +51086,2959,quirky,1297887312 +51086,2959,twist ending,1297887300 +51086,2959,violence,1297887308 +51086,3967,british,1297885012 +51086,3967,drama,1297885015 +51086,3967,funny,1297885017 +51086,3967,working class,1297885022 +51086,5995,drama,1297884978 +51086,6874,nonlinear,1297887363 +51086,6874,Quentin Tarantino,1297887349 +51086,6874,quirky,1297887357 +51086,6874,violence,1297887354 +51086,7438,action,1297887388 +51086,7438,kung fu,1297887399 +51086,7438,martial arts,1297887401 +51086,7438,Quentin Tarantino,1297887380 +51086,7438,quirky,1297887383 +51086,7438,Samuel L. Jackson,1297887395 +51086,7669,drama,1297885034 +51086,27801,action,1297885040 +51086,27801,buddhism,1297885046 +51086,27801,motorcycle,1297885052 +51086,43396,based on a true story,1297887260 +51086,43396,dreams,1297887273 +51086,43396,motorcycle,1297887256 +51086,43396,new zealand,1297887258 +51086,60069,quirky,1297884932 +51086,60069,Sci-Fi,1297884924 +51086,77561,action,1297884945 +51086,77561,Marvel,1297884950 +51086,77561,sci-fi,1297884962 +51086,77561,superhero,1297884954 +51086,81845,based on a true story,1297884796 +51086,81845,drama,1297884802 +51087,122892,Hulk,1436194156 +51094,923,Amazing Cinematography,1449081600 +51094,923,atmospheric,1449081627 +51094,923,cinematography,1449081620 +51094,923,enigmatic,1449081607 +51094,923,Innovative,1449081608 +51094,923,masterpiece,1449081595 +51094,4011,stylized,1448914667 +51104,2730,historical,1438176711 +51104,2730,music,1438176715 +51104,2730,Stanley Kubrick,1438176701 +51104,6874,blood,1438176681 +51104,6874,Quentin Tarantino,1438176673 +51104,6874,violence,1438176679 +51123,799,cliche,1138398759 +51123,2877,Rock Opera,1137201058 +51123,7266,Silly Monsters,1137102405 +51123,37857,Fantasy World,1137499448 +51123,72332,black and white,1258513441 +51123,72332,Caleb Foss,1259640477 +51123,72332,Chelsea Martin,1264660130 +51123,72332,Chris Frahme,1264660131 +51123,72332,free to download,1258513434 +51123,72332,narrated,1258513452 +51123,72332,Shane Sheehy,1264660137 +51123,72332,short,1258513439 +51123,72332,surreal,1258513429 +51159,50,Crime,1201813663 +51159,50,Keser Soze,1201813689 +51159,50,Kevin Spacey,1201813626 +51159,50,suspense,1201813676 +51159,50,whodunnit,1201813697 +51159,260,George Lucas,1201814648 +51159,260,Harrison Ford,1201814648 +51159,260,Pinnacle Film,1201814628 +51159,296,dialogue,1201814511 +51159,457,Harrison Ford,1201814584 +51159,480,CGI,1201815062 +51159,480,genetics,1201814433 +51159,480,groundbreaking effects,1201814388 +51159,480,Jeff Goldblum,1201814425 +51159,589,Arnold Schwarzenegger,1201815026 +51159,589,CGI,1201815051 +51159,589,groundbreaking effects,1201815026 +51159,589,James Cameron,1201815026 +51159,592,Comic Book,1201814672 +51159,592,Tim Burton,1201814672 +51159,593,Hannibal Lector,1201814523 +51159,913,author:Dashiell Hammett,1201821221 +51159,913,classic,1201821374 +51159,913,gunsel,1201821333 +51159,913,Humphrey Bogart,1201821235 +51159,913,Peter Lorre,1201821248 +51159,1196,George Lucas,1201822546 +51159,1198,Harrison Ford,1201822462 +51159,1198,Spielberg,1201822462 +51159,1237,Criterion,1240950820 +51159,1237,Death,1240950806 +51159,1237,existentialism,1240950812 +51159,1237,Ingmar Bergman,1240950802 +51159,1244,awesome soundtrack,1240868151 +51159,1244,black and white,1240868121 +51159,1244,comedy,1240868143 +51159,1244,literate,1240868140 +51159,1244,New York City,1240868129 +51159,1244,relationships,1240868161 +51159,1244,Woody Allen,1240868126 +51159,1284,author:Raymond Chandler,1201821450 +51159,1284,Bogart & Bacall,1201821446 +51159,1284,classic,1201821433 +51159,1284,Humphrey Bogart,1201821442 +51159,1408,cinematography,1240868383 +51159,1408,Daniel Day-Lewis,1240868255 +51159,1408,Michael Mann,1240868251 +51159,1408,soundtrack,1240868383 +51159,2560,cannibalism,1240868565 +51159,2959,Stylish,1201813813 +51159,3629,Charlie Chaplin,1240868435 +51159,3629,comedy,1240868441 +51159,3793,Comic Book adaption,1201822483 +51159,4226,backwards,1201813734 +51159,4226,Twist,1201813747 +51159,5147,Bibi Andersson,1240950654 +51159,5147,Criterion,1240950630 +51159,5147,Gunnar Björnstrand,1240950642 +51159,5147,Ingmar Bergman,1240950633 +51159,5147,Ingrid Thulin,1240950671 +51159,5147,Max von Sydow,1240950649 +51159,5268,Hal Hartley,1240929599 +51159,5268,Robert John Burke,1240929626 +51159,5268,Sarah Polley,1240929612 +51159,7153,Tolkien,1201822619 +51159,48516,Jack Nicholson,1201813966 +51159,48516,Martin Scorsese,1201813837 +51159,48516,organized crime,1201813852 +51159,54503,Michael Cera,1201814342 +51159,55820,Coen Brothers,1240950883 +51159,55820,Cormac McCarthy,1240950885 +51159,55820,Javier Bardem,1240950916 +51159,55820,Josh Brolin,1240950992 +51159,58297,sadistic,1220888204 +51159,59037,Christina Ricci,1240868502 +51159,59037,Emile Hirsch,1240868504 +51164,32853,asdasd,1185094524 +51164,32853,sdasd,1185094518 +51175,260,awesome,1434379846 +51175,260,classic sci-fi,1434379841 +51175,260,fantasy action,1434379857 +51175,260,legendary,1434379850 +51242,97921,Jennifer Lawrence,1377580057 +51242,106916,Jennifer Lawrence,1387605442 +51242,112290,Richard Linklater,1406433247 +51274,115617,adventure,1434068048 +51274,115617,animation,1434068048 +51274,115617,screenwriting,1434068048 +51279,1200,space,1239238467 +51287,72998,futuristic,1263045781 +51287,72998,graphic design,1263045786 +51287,72998,James Cameron,1263045778 +51287,72998,sci-fi,1263045769 +51287,72998,too long,1263045801 +51287,72998,visual,1263045791 +51297,2571,philosophical,1430036498 +51297,2571,thought-provoking,1430036509 +51299,260,classic,1440805458 +51299,260,Science Fiction,1440805466 +51353,7451,High School,1241374949 +51353,37857,animation,1241815812 +51353,37857,fantasy,1241815819 +51353,64993,anime,1230552249 +51353,68319,comic book,1241815968 +51353,68319,Comic Book adaption,1241815973 +51353,68319,sequel,1241815966 +51369,733,homelist1,1196424132 +51369,1527,homelist1,1196424124 +51369,3578,homelist1,1196424128 +51369,7143,homelist1,1196424113 +51369,33794,homelist1,1196424120 +51396,260,classic,1439770269 +51396,260,sci-fi,1439770263 +51397,60684,dystopia,1313276708 +51397,60684,sci-fi,1313276711 +51397,60684,superhero,1313276700 +51411,318,narrated,1425942391 +51416,260,cult classic,1436208603 +51416,260,sci-fi,1436208545 +51416,60904,based on a book,1436462077 +51416,60904,russian,1436462077 +51416,60904,social commentary,1436462077 +51418,586,creativity,1343598800 +51418,586,hilarious,1343598800 +51418,586,humor,1343598800 +51418,5952,fantasy,1343598950 +51418,5952,heroism,1343598941 +51418,5952,sword fight,1343598918 +51429,260,heroic journey,1443541387 +51429,260,intangled characters,1443541432 +51429,260,redemption,1443541412 +51429,102800,greta gerwig,1443777281 +51436,260,classic sci-fi,1441583792 +51436,260,good vs evil,1441583784 +51436,260,science fantasy,1441583774 +51436,260,space opera,1441583811 +51436,122882,action,1441584017 +51436,122882,dystopian,1441584019 +51436,122882,feminism,1441584021 +51436,122882,post apocalypse,1441584015 +51441,1,animated,1361761723 +51441,1,animation,1361761719 +51441,1,comedy,1361761725 +51441,1,Disney,1361761729 +51441,1,Pixar,1361761728 +51441,39,Paul Rudd,1361765748 +51441,344,Jim Carrey,1361844648 +51441,344,Jim Carrey being Jim Carrey,1361844652 +51441,1197,classic,1325540889 +51441,1197,comedy,1325540884 +51441,1197,fairy tale,1325540892 +51441,1197,fantasy,1325540894 +51441,1197,funny,1325540895 +51441,1197,quirky,1325540901 +51441,1197,romance,1325540903 +51441,1197,witty,1325540905 +51441,2355,animation,1361761761 +51441,2355,Disney,1361761764 +51441,2761,animation,1362115334 +51441,2774,christina cox,1325537185 +51441,2774,lgbt,1325537161 +51441,2774,Netflix Streaming,1325537180 +51441,2774,sexuality,1325537166 +51441,2774,story,1325537176 +51441,2774,Vancouver BC,1325537187 +51441,2804,Best Christmas movie,1325540816 +51441,2804,chick flick,1325540819 +51441,2804,Christmas,1325540822 +51441,2804,christmas movie,1325540824 +51441,2804,classic,1325540826 +51441,2804,classic christmas tale,1325540829 +51441,2804,Funniest Movies,1325540836 +51441,2804,imdb top 250,1325540842 +51441,2804,Xmas theme,1325540846 +51441,3752,seen at the cinema,1361844609 +51441,3988,Dr. Seuss,1361766833 +51441,3988,Jim Carrey,1361766834 +51441,3988,Xmas theme,1361766840 +51441,5092,Amanda Bynes,1361843983 +51441,5222,lesbian,1361854656 +51441,5222,New York City,1361927842 +51441,5377,adapted from:book,1325539014 +51441,5377,based on a book,1325539019 +51441,5377,british,1325539021 +51441,5377,british comedy,1325539024 +51441,5377,chick flick,1325539026 +51441,5377,comedy,1325539028 +51441,5377,coming of age,1325539030 +51441,5377,drama,1325539032 +51441,5377,dysfunctional family,1325539034 +51441,5377,funny,1325539038 +51441,5377,heartwarming,1325539040 +51441,5377,Hugh Grant,1325539042 +51441,5377,narrated,1325539043 +51441,5377,Quirky,1325539045 +51441,5377,relationships,1325539047 +51441,5377,romance,1325539048 +51441,5377,romantic,1325539050 +51441,5618,Studio Ghibli,1362028042 +51441,6942,airport,1325538948 +51441,6942,Billy Bob Thornton,1325538951 +51441,6942,british,1325538954 +51441,6942,christmas,1325538957 +51441,6942,directorial debut,1325538959 +51441,6942,England,1325538962 +51441,6942,ensemble cast,1325538964 +51441,6942,family,1325538967 +51441,6942,funny,1325538970 +51441,6942,great soundtrack,1325538972 +51441,6942,Hugh Grant,1325538974 +51441,6942,Keira Knightley,1325538977 +51441,6942,London,1325538979 +51441,6942,love,1325538981 +51441,6942,multiple storylines,1325538982 +51441,6942,Nudity (Topless - Notable),1325538985 +51441,6942,Nudity (Topless),1325538989 +51441,6942,Romance,1325538992 +51441,6942,romantic,1325538995 +51441,6942,witty,1325538998 +51441,7034,coming of age,1407995451 +51441,7034,lesbian,1407995447 +51441,8376,awkward,1325539209 +51441,8376,camp,1325539212 +51441,8376,comedy,1325539216 +51441,8376,geek,1325539218 +51441,8376,high school,1325539222 +51441,8376,independent film,1325539225 +51441,8376,Jon Heder,1325539249 +51441,8965,Christmas,1361766912 +51441,35836,comedy,1325539464 +51441,35836,crude humor,1325539468 +51441,35836,funny,1325539466 +51441,35836,hilarious,1325539472 +51441,35836,homophobia,1325539460 +51441,35836,Paul Rudd,1325539479 +51441,35836,romance,1325539480 +51441,35836,romantic comedy,1325539482 +51441,35836,Seth Rogen,1325539484 +51441,35836,Steve Carell,1325539487 +51441,37384,homophobic,1361845648 +51441,39183,Anne Hathaway,1361928131 +51441,40815,adventure,1325988985 +51441,40815,England,1325988979 +51441,40815,harry potter,1325988961 +51441,40815,magic,1325988964 +51441,40815,teenagers,1325988974 +51441,42958,Bradley Whitford,1325538908 +51441,42958,Charlie Ray,1325538882 +51441,42958,children,1325538872 +51441,42958,comedy,1325538876 +51441,42958,Cynthia Nixon,1325538912 +51441,42958,FIRST LOVE,1325538885 +51441,42958,Josh Hutcherson,1325538880 +51441,42958,Mark Levin,1325538926 +51441,42958,Romantic,1325538903 +51441,42958,Willie Garson,1325538922 +51441,44193,Amanda Bynes,1361764628 +51441,45499,Ellen Page,1361840944 +51441,46970,Gay Character,1361844732 +51441,46970,Sacha Baron Cohen,1361844746 +51441,46970,Will Ferrell,1361844725 +51441,50872,animation,1361761919 +51441,50872,cooking,1361761918 +51441,50872,Disney,1361761921 +51441,50872,food,1361761925 +51441,50872,pixar,1361761934 +51441,52973,Apatow productions,1325539415 +51441,52973,Jason Segel,1325539417 +51441,52973,Judd Apatow,1325539420 +51441,52973,Paul Rudd,1325539432 +51441,52973,Seth Rogen,1325539430 +51441,52973,Steve Carell,1325539435 +51441,54001,author:J. K. Rowling,1325724946 +51441,54001,Daniel Radcliffe,1325724957 +51441,54001,Emma Watson,1325724952 +51441,54001,Helena Bonham Carter,1325724959 +51441,54001,magic,1325724962 +51441,54001,not true to the book,1325541075 +51441,54001,too short,1325541082 +51441,54734,Amanda Bynes,1361765098 +51441,54734,amanda bynes acting,1361765092 +51441,55245,Jessica Alba,1361766110 +51441,56367,bittersweet,1325539065 +51441,56367,comedy,1325539068 +51441,56367,cult film,1325539071 +51441,56367,Ellen Page,1325539073 +51441,56367,excellent script,1325539075 +51441,56367,great soundtrack,1325539078 +51441,56367,high school,1325539080 +51441,56367,High school life,1325539083 +51441,56367,hilarious,1325539084 +51441,56367,humor,1325539087 +51441,56367,humorous,1325539090 +51441,56367,imdb top 250,1325539100 +51441,56367,independent film,1325539110 +51441,56367,Michael Cera,1325539126 +51441,56367,notable soundtrack,1325539129 +51441,56367,pregnancy,1325539131 +51441,56367,teen,1325539134 +51441,56367,teenager,1325539136 +51441,56367,witty,1325539138 +51441,58998,Apatow productions,1325539344 +51441,58998,comedy,1325539350 +51441,58998,good dialogue,1325539352 +51441,58998,hilarious,1325539355 +51441,58998,romance,1325539364 +51441,59022,Neil Patrick Harris,1361845803 +51441,59258,Amy Poehler,1361766000 +51441,59258,Tina Fey,1361766002 +51441,59900,Adam Sandler,1326053690 +51441,60756,comedy,1326403328 +51441,60756,funny,1326403326 +51441,60756,Ken Jeong,1326403323 +51441,60756,will ferrell,1326403317 +51441,61348,parody,1326053651 +51441,62434,humor,1325539565 +51441,62434,Seth Rogen,1325539572 +51441,62434,Sexual Humor,1325539577 +51441,63131,Christopher Mintz-Plasse,1325539291 +51441,63131,comedy,1325539295 +51441,63131,Elizabeth Banks,1325539300 +51441,63131,funny,1325539302 +51441,63131,Jane Lynch,1325539304 +51441,63131,Ken Jeong,1325539307 +51441,63131,Paul Rudd,1325539317 +51441,63131,Seann William Scott,1325539319 +51441,63131,silly,1325539322 +51441,63393,Alyson Stoner,1361765298 +51441,63393,Demi Lovato,1361765294 +51441,65261,Studio Ghibli,1362115191 +51441,65585,Anne Hathaway,1361852452 +51441,66509,Seth Rogen,1362334269 +51441,67087,Andy Samberg,1325539604 +51441,67087,comedy,1325539608 +51441,67087,friendship,1325539611 +51441,67087,Jason Segel,1325539614 +51441,69069,Gay Character,1361852271 +51441,69069,Nudity (Topless),1361852273 +51441,69122,comedy,1325540743 +51441,69122,funny,1325540746 +51441,69122,Zach Galifianakis,1325540764 +51441,69844,Comedy,1325541038 +51441,69844,English,1325541040 +51441,69844,fantasy,1325541042 +51441,69844,franchise,1325541044 +51441,69844,funny,1325541046 +51441,69844,harry potter,1325541047 +51441,69844,Helena Bonham Carter,1325541049 +51441,69844,high school,1325541051 +51441,69844,magic,1325541054 +51441,69844,romance,1325541057 +51441,69844,teenagers,1325541062 +51441,71248,Kristen Wiig,1361845577 +51441,71248,Mila Kunis,1361845575 +51441,80549,Amanda Bynes,1361765660 +51441,80549,Emma Stone,1361765663 +51441,80549,Gay Lead Character,1361765652 +51441,80549,silly,1361765657 +51441,80858,Kristen Bell,1361852403 +51441,81834,Alan Rickman,1325540994 +51441,81834,British,1325540997 +51441,81834,England,1325541000 +51441,81834,Harry Potter,1325541003 +51441,81834,Helena Bonham Carter,1325541005 +51441,81834,London,1325541008 +51441,81834,magic,1325541011 +51441,86833,Judd Apatow,1361765964 +51441,88125,author:J. K. Rowling,1325540927 +51441,88125,Daniel Radcliffe,1325540929 +51441,88125,David Yates,1325540931 +51441,88125,Emma Watson,1325540934 +51441,88125,epic,1325540936 +51441,88125,fantasy,1325540938 +51441,88125,franchise,1325540940 +51441,88125,great acting,1325540941 +51441,88125,great cinematography,1325540943 +51441,88125,magic,1325540946 +51441,88125,Ralph Fiennes,1325540949 +51441,88125,Rupert Grint,1325540951 +51441,88125,top-notch special effects,1325540956 +51441,88405,Mila Kunis,1361854615 +51441,88405,Woody Harrelson,1361854611 +51441,89864,Anna Kendrick,1362334067 +51441,89864,Joseph Gordon-Levitt,1362334070 +51441,90866,Sacha Baron Cohen,1362027968 +51441,91658,long,1325988928 +51441,91658,rape,1325988909 +51441,91658,remake of a Swedish film,1325988914 +51441,93550,cute,1425458121 +51441,93550,happy ending,1425458123 +51441,93550,lesbian,1425458119 +51441,93550,lgbt,1425458127 +51441,95088,aubrey plaza,1361928707 +51441,95441,Mila Kunis,1361845399 +51441,95510,Emma Stone,1361840874 +51441,96588,Anna Kendrick,1361765621 +51441,96588,Funny,1361765623 +51441,97913,animation,1361761671 +51441,97913,disney,1361761669 +51441,97921,Jennifer Lawrence,1362334035 +51441,99007,comedic horror,1361761411 +51441,99007,romance,1361761415 +51441,99007,Well Plotted,1361761416 +51441,99114,Funny,1361761352 +51441,99114,Quentin Tarantino,1361761358 +51441,102989,friendship,1425452701 +51441,102989,race issues,1425452701 +51441,102989,teen,1425452701 +51451,1784,Jack Nicholson,1393508114 +51451,2473,positive thinking,1392240435 +51451,61323,Comedy,1392221581 +51451,61323,dark comedy,1392221586 +51451,61323,George Clooney,1392221593 +51451,61323,stupidity,1392221604 +51451,61323,weird,1392221610 +51451,106918,inspirational,1392150208 +51451,106918,positive thinking,1392150225 +51451,106920,artificial intelligence,1393508032 +51451,106920,bittersweet,1393508017 +51451,106920,love,1393508020 +51451,106920,meaning of life,1393508023 +51451,106920,original,1393508055 +51451,106920,philosophical,1393508028 +51451,106920,psychology,1393508026 +51451,106920,thought-provoking,1393508046 +51458,1,exciting plot,1426962331 +51458,1,funny lines,1426962331 +51458,1,touching story,1426962331 +51458,296,exceptional choice of music,1425403250 +51458,296,incoherent,1425403250 +51458,296,meaningless violence,1425403250 +51458,318,exciting plot,1426109097 +51458,318,great performances,1426109097 +51458,318,outstanding scenario,1426109097 +51486,260,mythology,1444683493 +51486,260,sci-fi,1444683499 +51512,1059,Baz Luhrmann,1256858638 +51512,6743,NOT DISNEY,1256859651 +51513,318,author:stephen king,1429930758 +51513,318,librarians,1429930758 +51513,318,prison escape,1429930758 +51513,356,robert zemeckis,1423426486 +51513,356,tom hanks,1423426486 +51513,356,vietnam war,1423426486 +51513,593,fbi,1427058411 +51513,593,horror,1427058411 +51513,593,jonathan demme,1427058411 +51513,2947,corny,1345909960 +51513,3096,remake,1416078448 +51513,77795,swiss,1313739113 +51513,94466,not a movie,1423426410 +51513,94466,tv series,1423426419 +51526,44555,East Germany,1439795949 +51526,44555,freedom of expression,1439795955 +51526,44555,Germany,1439795957 +51526,44555,Stasi,1439795952 +51526,114028,lgbt,1439795863 +51526,114028,queer,1439795861 +51532,4878,time travel,1157848658 +51532,6297,children,1153563242 +51557,7445,bodyguard,1427974819 +51557,7445,denzel washington,1427974819 +51557,7445,really long,1427974819 +51557,61323,dark comedy,1427968470 +51557,61323,funny,1427968474 +51557,61323,twists & turns,1427968481 +51577,19,goofy,1368305481 +51577,170,geek,1368305294 +51577,173,cyborgs,1368305312 +51577,289,destiny,1368305126 +51577,356,destiny,1368305126 +51577,367,goofy,1368305481 +51577,480,effects,1368305402 +51577,480,special effects,1368305427 +51577,539,destiny,1368305126 +51577,541,visual,1368305079 +51577,595,fairy tales,1368305200 +51577,736,special effects,1368305427 +51577,750,absurd,1368305279 +51577,805,vigilantism,1368305383 +51577,1033,unlikely friendships,1368305020 +51577,1079,absurd,1368305279 +51577,1080,absurd,1368305279 +51577,1127,effects,1368305402 +51577,1136,off-beat comedy,1368305177 +51577,1199,visual,1368305079 +51577,1206,short-term memory loss,1368305464 +51577,1243,absurd,1353480086 +51577,1243,based on a play,1353480091 +51577,1243,metafiction,1353480079 +51577,1243,quirky,1353480083 +51577,1243,smart comedy,1353480097 +51577,1288,absurd,1368305279 +51577,1391,off-beat comedy,1368305177 +51577,1527,visual,1368305079 +51577,1732,off-beat comedy,1368305177 +51577,1921,metaphysics,1368305506 +51577,2022,christian,1368305153 +51577,2022,jesus,1368305057 +51577,2291,fairy tales,1368305200 +51577,2297,metaphysics,1368305506 +51577,2455,effects,1368305402 +51577,2571,effects,1368305402 +51577,2571,visual,1368305079 +51577,2628,special effects,1368305427 +51577,2692,German,1378505992 +51577,2692,nonlinear,1378505981 +51577,2692,notable soundtrack,1378506016 +51577,2692,surreal,1378506011 +51577,2692,thought-provoking,1378506013 +51577,2746,broadway,1368305331 +51577,2791,goofy,1368305481 +51577,2840,jesus,1368305057 +51577,2997,absurd,1368305279 +51577,2997,metaphysics,1368305506 +51577,2997,modern fantasy,1368305223 +51577,3020,vigilantism,1368305383 +51577,3052,jesus,1368305057 +51577,3471,effects,1368305402 +51577,3545,broadway,1368305331 +51577,3604,broadway,1368305331 +51577,3793,special effects,1368305427 +51577,3963,broadway,1368305331 +51577,4011,heist,1378506042 +51577,4011,multiple storylines,1378506033 +51577,4011,twist ending,1378506031 +51577,4027,notable soundtrack,1378506058 +51577,4027,Quirky,1378506055 +51577,4855,vigilantism,1368305383 +51577,4878,metaphysics,1368305506 +51577,4878,short-term memory loss,1368305464 +51577,4941,So bad it's good,1353391976 +51577,4979,off-beat comedy,1368305177 +51577,4993,atmospheric,1378506087 +51577,4993,fantasy,1378506084 +51577,7318,jesus,1368305057 +51577,7361,short-term memory loss,1368305464 +51577,7386,christian,1368305153 +51577,7614,broadway,1368305331 +51577,8360,fairy tales,1368305200 +51577,8366,christian,1368305153 +51577,32587,visual,1368305079 +51577,33162,christian,1368305153 +51577,33794,vigilantism,1368305383 +51577,46976,destiny,1368305126 +51577,49824,broadway,1368305331 +51577,66934,anti-hero,1378506142 +51577,66934,bittersweet,1378506139 +51577,66934,low budget,1378506150 +51577,69842,ending,1353391216 +51577,69842,romanticisation of an abusive relationship,1353391283 +51577,69842,story,1353391214 +51577,74553,Atmospheric,1378506199 +51577,81591,dark,1378525767 +51577,81591,psychological,1378525782 +51577,81591,surreal,1378525769 +51577,84716,surreal,1378505069 +51577,98809,beautiful scenery,1378505936 +51577,98809,fantasy,1378505940 +51577,98809,music,1378505966 +51580,539,intolerable chick flick,1136863324 +51580,2004,Wacky,1136862054 +51580,2036,unrealistic kid's movie,1136863217 +51580,4142,propaganda,1140053103 +51580,4642,Very interesting,1153581777 +51580,5421,typical coming of age story,1153457283 +51580,5577,dramedy,1141437359 +51580,5832,propaganda,1140053102 +51580,8533,tolerable chick flick,1136863193 +51580,8917,puppets,1136862248 +51580,8949,overrated,1136862412 +51580,30749,Genocide,1140051265 +51580,31658,overrated,1136862659 +51580,36537,Indie,1140051669 +51580,37731,gang brawls,1153188562 +51580,38038,underrated,1136862476 +51580,39408,propaganda,1141528797 +51580,41566,propaganda,1141194750 +51583,260,Alternate reality,1436206226 +51583,260,good vs evil,1436206247 +51594,260,Can watch this every couple of years and enjoy it every time.,1439773767 +51594,260,"Memories, going to the theater to watch this huge movie as a kid and having my mind blown by everything in the movie.",1439773727 +51600,70,Quentin Tarantino,1216133462 +51607,260,classic adventure,1440287142 +51607,260,classic sci-fi,1440287165 +51609,33415,barnaby metschurat,1423353491 +51609,33415,fatih akin,1423353491 +51609,33415,moritz bleibtreu,1423353491 +51609,108410,alekos sakellarios,1422574936 +51609,108410,orestis makris,1422574936 +51609,108410,papagiannopoulos,1422574936 +51609,108410,papamichael,1422574936 +51609,108410,vougiouklaki,1422574936 +51609,108413,aliki vougiouklaki,1420808042 +51609,108413,dimitris papamichael,1420808042 +51609,108413,greek,1420808042 +51609,108413,greek 60's,1420808042 +51609,108413,lambros konstantaras,1420808042 +51609,108473,alekos sakellarios,1421701628 +51609,108473,greek,1421701628 +51609,108473,jenny karezi,1421701628 +51609,108473,mimis fotopoulos,1421701628 +51609,108473,vasilis avlonitis,1421701628 +51609,129857,french,1426196589 +51609,129857,romance,1426196596 +51641,4993,fell asleep,1139430266 +51641,4993,overrated,1139430266 +51641,4993,way too long,1139430266 +51641,5669,propaganda,1139769801 +51641,5878,Almodovar,1179706634 +51641,5952,overrated,1139430232 +51641,5952,way too long,1139430232 +51641,34162,way too long,1139672816 +51644,318,Morgan Freeman,1430735449 +51644,318,twist ending,1430735445 +51644,4993,fantasy,1430735522 +51644,4993,great soundtrack,1430735528 +51644,4993,Oscar (Best Cinematography),1430735537 +51678,3147,Tom Hanks,1137194502 +51678,4945,Clint Eastwood,1137194508 +51678,43396,Anthony Hopkins,1139330103 +51678,43869,for the kids,1140450082 +51678,43926,for the kids,1140450049 +51681,296,conversation,1420970810 +51681,296,exciting,1420970810 +51681,296,quentin tarantino,1420970810 +51681,1805,twist ending,1433855961 +51681,44761,children acting like adults,1432609632 +51681,45672,Be satisfied with your life little man,1178223565 +51681,49272,realistic,1338039001 +51681,78349,dialogue driven,1451285576 +51681,81564,funny,1433859048 +51681,84152,human potential,1433770783 +51681,84152,thought provoking,1433770792 +51681,92259,touching,1337015483 +51681,109487,Anne Hathaway,1426425953 +51681,109487,Christopher Nolan,1426425919 +51681,109487,Masterpiece,1426426040 +51681,109487,sentimental,1426425893 +51681,109487,thought-provoking,1426425953 +51681,115713,artificial intelligence,1432391304 +51681,119145,fighting choreografy,1433166297 +51681,119145,Parody,1433166304 +51682,117887,for child,1428986735 +51696,80489,smart thinking,1438279453 +51696,80489,strategy,1438279450 +51697,260,space,1431908387 +51697,260,trilogy,1431908384 +51734,593,disturbing,1302243347 +51734,593,mental illness,1302243370 +51734,593,psychology,1302243353 +51734,593,serial killer,1302243362 +51734,593,suspense,1302243356 +51734,3030,atmospheric,1191240207 +51745,3623,John Woo,1171309968 +51762,112183,magical realism,1442507072 +51762,112183,satire,1442507075 +51762,114074,heartfelt,1442507012 +51762,114074,tender,1442507001 +51762,115569,psychothriller,1442507093 +51762,115569,sociopath,1442507085 +51762,117176,emotional,1442507035 +51762,117176,True story,1442507040 +51762,122882,dystopian,1442507104 +51762,122882,non-stop,1442507112 +51795,65465,Dustin Hoffman,1246712716 +51795,65465,Emma Thompson,1246712713 +51797,260,philosophy,1444964818 +51811,6539,funny,1294978433 +51811,6539,Johnny Depp,1294978404 +51811,6539,Keira Knightley,1294978437 +51811,6539,pirates,1294978450 +51811,6539,sword fight,1294978410 +51811,56949,Katherine Heigl,1294978975 +51811,69406,Betty White,1294978940 +51811,69406,chemistry between actors,1294978947 +51811,69406,Ryan Reynolds,1294978933 +51826,260,chewbacca,1434380202 +51826,260,classic sci-fi,1434380180 +51878,2490,action,1383860717 +51882,7317,road trip,1239793726 +51915,122886,Plot Recycling,1453305178 +51920,296,Black comedy,1417981967 +51920,296,bruce willis,1417982000 +51920,296,comedy,1417981991 +51920,296,cult film,1417981973 +51920,296,dialogue,1417981988 +51920,296,great soundtrack,1417982004 +51920,296,hit men,1417982007 +51920,296,nonlinear,1417981964 +51920,296,notable soundtrack,1417981982 +51920,296,Quentin Tarantino,1417981960 +51920,296,storytelling,1417981994 +51920,296,stylized,1417981970 +51920,3265,Chow Yun Fat,1417982402 +51920,3265,heroic bloodshed,1417982397 +51920,3265,John Woo,1417982400 +51920,4027,George Clooney,1417981727 +51920,4027,great soundtrack,1417981736 +51920,4255,Tom Green,1417982870 +51920,4881,Coen Brothers,1417981677 +51920,4881,great cinematography,1417981682 +51920,6440,Coen Brothers,1417981649 +51920,6440,Enigmatic,1417981667 +51920,6440,John Goodman,1417981655 +51920,26393,William Friedkin,1418062245 +51920,53519,Kurt Russell,1417982043 +51920,57669,dark comedy,1417984304 +51920,57669,stylized,1417984309 +51920,82667,byung-hun Lee,1417982352 +51920,82667,Korea,1417982340 +51920,83525,Takeshi Kitano,1417982281 +51920,96079,cinematography,1417981797 +51920,96079,Roger Deakins,1417981841 +51920,96728,cinematography,1417981625 +51920,96728,great performances,1417981616 +51920,96728,Paul Thomas Anderson,1417981629 +51920,103688,Christianity,1418062323 +51920,103688,exorcism,1418062332 +51920,103688,predictable,1418062335 +51920,104218,Adam Sandler,1417981920 +51920,104879,Roger Deakins,1417981897 +51920,107406,Joon-ho Bong,1417982215 +51920,107406,social commentary,1417982217 +51920,110603,Christianity,1418064074 +51920,110603,religious propaganda,1417978989 +51948,58933,bad acting,1378761039 +51948,59784,lip synchronized,1379162057 +51962,260,good vs evil,1442975867 +51962,260,sci-fi,1442975840 +51962,260,space adventure,1442975860 +51994,1210,George Lucas,1445495272 +51994,1210,Star Wars,1445495267 +51994,2571,artificial intelligence,1445495116 +51994,2571,cyberpunk,1445495108 +51994,2571,dystopia,1445495125 +51994,2571,virtual reality,1445495103 +51994,3578,heroism,1445495236 +51994,3578,Rome,1445495218 +51994,3578,sword fight,1445495224 +51994,4973,beautifully filmed,1445495425 +51994,4973,Paris,1445495430 +51994,4973,quirky,1445495427 +51994,7153,Adventure,1445495168 +51994,7153,atmospheric,1445495187 +51994,7153,fantasy,1445495166 +51994,7153,mythology,1445495179 +52033,16,based on a book,1411564165 +52033,16,casino,1411564170 +52033,16,corruption,1411564158 +52033,16,gangster,1411564160 +52033,16,Great Ensemble Cast,1411564176 +52033,16,great performances,1411564146 +52033,16,mafia,1411564136 +52033,16,Martin Scorsese,1411564145 +52033,16,Nudity (Rear),1411564142 +52033,16,Nudity (Topless - Brief),1411564144 +52033,16,organized crime,1411564181 +52033,16,Robert De Niro,1411564140 +52033,16,violence,1411564184 +52033,16,violent,1411564185 +52033,256,Arnold Schwarzenegger,1411565456 +52033,256,Danny DeVito,1411565451 +52033,256,easygoing,1411565460 +52033,256,Nostalgia Critic,1411565465 +52033,256,pregnant man,1411565462 +52033,318,atmospheric,1411564925 +52033,318,classic,1411564926 +52033,318,crime,1411564928 +52033,318,friendship,1411564929 +52033,318,inspirational,1411564931 +52033,318,prison,1411564932 +52033,318,prison escape,1411564942 +52033,318,psychology,1411564939 +52033,318,reflective,1411564937 +52033,318,revenge,1411564934 +52033,318,thought-provoking,1411564920 +52033,318,twist ending,1411564922 +52033,318,violence,1411564936 +52033,356,biography,1411564897 +52033,356,inspirational,1411564906 +52033,428,al pacino,1411564458 +52033,428,DeNiro,1411564462 +52033,428,father-son relationship,1411564464 +52033,428,Great movie,1411564467 +52033,428,organized crime,1411564472 +52033,428,USA,1411564473 +52033,1213,adapted from:book,1411564210 +52033,1213,based on a book,1411564212 +52033,1213,biography,1411564215 +52033,1213,crime,1411564216 +52033,1213,dark comedy,1411564220 +52033,1213,disturbing,1411564221 +52033,1213,gangs,1411564223 +52033,1213,gangsters,1411564225 +52033,1213,imdb top 250,1411564226 +52033,1213,mafia,1411564227 +52033,1213,Martin Scorsese,1411564230 +52033,1213,Oscar (Best Supporting Actor),1411564231 +52033,1227,atmospheric,1411564371 +52033,1227,Nudity (Full Frontal),1411564380 +52033,1227,Nudity (Rear),1411564382 +52033,1227,Nudity (Topless - Brief),1411564383 +52033,1227,organized crime,1411564385 +52033,1227,Prohibition,1411564387 +52033,1227,rape,1411564400 +52033,1227,Underrated,1411564395 +52033,1580,Will Smith,1411565567 +52033,3897,1970s,1411565049 +52033,3897,coming of age,1411565033 +52033,3897,great soundtrack,1411565034 +52033,3897,humorous,1411565036 +52033,3897,music,1411565030 +52033,3897,Nudity (Topless),1411565041 +52033,3897,rock and roll,1411565044 +52033,3897,teen,1411565046 +52033,4022,adventure,1411565143 +52033,4022,cars,1411565147 +52033,4022,loneliness,1411565145 +52033,4022,psychological,1411565155 +52033,4022,spiritual journey,1411565160 +52033,4022,stranded,1411565161 +52033,4022,SURVIVAL,1411565157 +52033,4995,based on a book,1411564783 +52033,4995,based on a true story,1411564784 +52033,4995,biography,1411564787 +52033,4995,college,1411564790 +52033,4995,Drama,1411564792 +52033,4995,Education,1411564794 +52033,4995,history,1411564795 +52033,4995,insanity,1411564797 +52033,4995,inspirational,1411564782 +52033,4995,mathematics,1411564778 +52033,4995,romance,1411564771 +52033,4995,true story,1411564761 +52033,4995,twist ending,1411564763 +52033,7004,arnold,1411565429 +52033,7004,Arnold Schwarzenegger,1411565427 +52033,7004,undercover cop,1411565433 +52033,7004,Who is your daddy and what does he do?,1411565436 +52033,59369,thriller,1411564629 +52033,69122,absurd,1411565854 +52033,69122,comedy,1411565852 +52033,69122,drugs,1411565856 +52033,69122,funny,1411565858 +52033,69122,hotel,1411565850 +52033,69122,Las Vegas,1411565848 +52033,69122,Nudity (Topless),1411565847 +52033,69122,strippers,1411565861 +52033,85367,Adam Sandler,1411566452 +52033,85367,funny,1411566457 +52033,85367,Hawaii,1411566459 +52033,85367,lies,1411566460 +52033,85367,plastic surgery,1411566464 +52033,85367,satire: plastic surgery,1411566467 +52033,85367,unrealistic characters,1411566469 +52033,85367,unrealistic plot,1411566471 +52033,86644,audience intelligence underestimated,1411565908 +52033,86644,car chase,1411565911 +52033,86644,Dwayne Johnson,1411565914 +52033,86644,Paul Walker,1411565902 +52033,105653,Arnold Schwarzenegger,1411565533 +52033,105653,Escape,1411565538 +52033,105653,Sylvester Stallone,1411565540 +52033,105653,torture,1411565542 +52033,106918,Ben Stiller,1411566174 +52033,106918,David Bowie,1411566183 +52033,106918,Iceland,1411566186 +52033,106918,imagination,1411566187 +52033,106918,inspirational,1411566189 +52033,106918,New York City,1411566191 +52033,106918,remake,1411566195 +52033,106918,surreal,1411566199 +52033,106918,visually appealing,1411566198 +52033,112370,Special Effects,1411566026 +52033,112370,Too Long,1411566018 +52052,56174,based on a book,1294087209 +52052,69122,Zach Galifianakis,1293912439 +52052,82242,christmas,1293912162 +52062,260,epic adventure,1435608970 +52062,260,sci-fi,1435608985 +52062,356,classic,1435614000 +52062,356,family,1435614000 +52062,356,narrative,1435614000 +52111,260,space epic,1436712462 +52111,260,space opera,1436712456 +52149,260,classic sci-fi,1437538680 +52149,260,EPIC,1437538701 +52149,260,legendary,1437538673 +52151,96821,amazing soundtrack,1453654885 +52151,96821,depression,1453654920 +52151,96821,music,1453654932 +52151,96821,relatable,1453654895 +52170,260,fantasy,1442419491 +52170,260,scifi,1442419498 +52178,26242,allegorical,1137233223 +52197,44665,Nudity (Topless),1161195557 +52201,1552,Nicolas Cage,1273073002 +52201,6957,Billy Bob Thornton,1273073182 +52201,6957,drunkenness,1273073195 +52201,6957,heist,1273073192 +52201,6957,Lauren Graham,1273073187 +52212,43684,No sequel or spin off,1294946392 +52212,43684,Simon baker,1294946418 +52212,43684,The chemistry between the two lead actors,1294946382 +52212,43684,The perception that all black people dont want to date white boys,1294946414 +52217,1136,awesome,1191528263 +52217,4226,Backwards. memory,1191528276 +52217,7361,seen more than once,1191528319 +52234,292,Gross,1137374901 +52234,2054,Bit Corny,1137374968 +52234,2054,Good Oldskool Movie,1137374968 +52243,6264,Whales!,1155120826 +52243,85334,The snake,1300647802 +52256,27773,twist ending,1446603190 +52258,260,coming of age,1438443246 +52258,260,space adventure,1438443233 +52258,750,black comedy,1438845231 +52258,750,nuclear bomb,1438845260 +52258,750,satire,1438845250 +52258,1136,1970s humour,1438845341 +52258,1136,british comedy,1438845345 +52258,1136,doune,1438845322 +52258,1233,realisitc,1438845403 +52258,1233,tense drama,1438845395 +52258,3671,satire,1438845314 +52258,3814,comedy,1438845277 +52258,3814,russia,1438845285 +52258,3814,satire,1438845290 +52258,3814,witty,1438845273 +52279,296,black humor,1442762029 +52279,6874,black humor,1442762009 +52283,260,"battle scenes,",1436687208 +52283,260,universe,1436687223 +52296,296,Quentin Tarantino,1242489950 +52296,780,Will Smith,1242489602 +52296,8873,che guevara,1242999705 +52296,55247,soundtrack,1243504733 +52362,50,twist ending,1291892143 +52362,296,action,1291892646 +52362,296,Black comedy,1291892648 +52362,296,cult film,1291892650 +52362,296,drugs,1291892657 +52362,296,Quentin Tarantino,1291890745 +52362,296,rape,1291892664 +52362,296,violence,1291892661 +52362,364,coming of age,1291890903 +52362,595,Disney,1291890911 +52362,805,based on a book,1291892453 +52362,805,rape,1291892442 +52362,805,Southern theme,1291892447 +52362,1136,Monty Python,1291890992 +52362,1136,parody,1291890988 +52362,1298,cult film,1291892405 +52362,1298,dreamlike,1291892408 +52362,1298,drugs,1291892413 +52362,1298,Musical,1291892416 +52362,1298,rape,1291892419 +52362,1298,surreal,1291892403 +52362,1464,David Lynch,1291891170 +52362,1527,dystopia,1291891492 +52362,1653,dystopia,1291891578 +52362,1653,sci-fi,1291891584 +52362,1732,black comedy,1291891923 +52362,1732,drugs,1291891936 +52362,1732,marijuana,1291891931 +52362,2028,World War II,1291890918 +52362,2329,disturbing,1291892171 +52362,2329,rape,1291892176 +52362,2571,cyberpunk,1291891429 +52362,2571,dystopia,1291891434 +52362,2571,surreal,1291890836 +52362,2688,John Travolta,1291892592 +52362,2688,rape,1291892589 +52362,2692,surreal,1291892041 +52362,2959,mental illness,1291891815 +52362,2959,surreal,1291891822 +52362,2959,twist ending,1291891820 +52362,2997,dark comedy,1291891859 +52362,2997,mindfuck,1291891864 +52362,2997,surreal,1291891847 +52362,3262,David Lynch,1291891346 +52362,3262,drugs,1291891350 +52362,3262,surreal,1291891356 +52362,3418,Action,1291892567 +52362,3418,rape,1291892559 +52362,3418,women's lib,1291892563 +52362,4226,dark,1291891551 +52362,4226,twist ending,1291891544 +52362,4345,Alan Cumming,1291890574 +52362,4848,dark,1291891271 +52362,4848,David Lynch,1291891265 +52362,4848,surreal,1291891279 +52362,4878,cult film,1291891766 +52362,4878,mental illness,1291891771 +52362,4878,sci-fi,1291891787 +52362,4878,surreal,1291891779 +52362,6874,action,1291892344 +52362,6874,nonlinear,1291892331 +52362,6874,Quentin Tarantino,1291892327 +52362,6874,quirky,1291892336 +52362,6874,rape,1291892315 +52362,6874,violence,1291892340 +52362,7361,cult film,1291891993 +52362,7361,surreal,1291891996 +52362,30810,wes anderson,1291891905 +52362,34405,cult film,1291891651 +52362,34405,dystopia,1291891637 +52362,34405,joss whedon,1291891631 +52362,34405,sci-fi,1291891642 +52362,34405,witty,1291891645 +52362,44191,dark,1291891731 +52362,44191,dystopia,1291891719 +52362,66934,joss whedon,1291891671 +52362,66934,musical,1291891679 +52377,48304,Nudity (Topless),1186043377 +52380,5989,based on a true story,1440767025 +52380,5989,drama,1440767016 +52380,5989,smart,1440767022 +52381,260,action,1430896200 +52381,260,classic,1430896209 +52381,260,sci-fi,1430896192 +52381,260,space,1430896217 +52424,260,cult classic,1438204021 +52424,260,space epic,1438203975 +52429,1231,true story,1137734167 +52429,3989,true story,1137734393 +52429,34542,documentary,1139204819 +52450,2858,bittersweet,1328339161 +52450,2858,black comedy,1328339083 +52450,2858,coming of age,1328339184 +52450,2858,dark comedy,1328339087 +52450,2858,drugs,1328339126 +52450,2858,imdb top 250,1328339131 +52450,2858,Kevin Spacey,1328339158 +52450,2858,Oscar (Best Cinematography),1328339134 +52450,2858,Oscar (Best Picture),1328339116 +52450,2858,reflective,1328339099 +52450,2858,satirical,1328339093 +52450,2858,social commentary,1328339174 +52450,2858,surrealism,1328339138 +52450,2858,thought-provoking,1328339095 +52450,2858,violence,1328339178 +52467,260,fantasy,1439773106 +52467,260,sci-fi,1439773102 +52488,63082,India,1230580710 +52495,260,fantasy,1439775450 +52495,260,sci-fi,1439775444 +52502,260,classic,1430944492 +52502,260,Science Fiction,1430944475 +52502,4848,drama,1431002335 +52502,4848,sad,1431002335 +52502,4848,twists & turns,1431002335 +52550,260,classic sci-fi,1437486328 +52550,260,cool,1437486303 +52554,6,Al Pacino,1355490209 +52554,6,Natalie Portman,1355490204 +52554,6,Robert De Niro,1355490198 +52554,6,suspense,1355490225 +52554,1068,noir thriller,1367815198 +52554,1307,Billy Crystal,1343380714 +52554,1307,chick flick,1343380690 +52554,1307,cute,1343380700 +52554,1307,meg ryan,1343380710 +52554,1307,romance,1343380719 +52554,2194,foul language,1351735774 +52554,2843,music,1301441420 +52554,2933,melancholic,1367815134 +52554,5163,original,1367815022 +52554,7217,noir thriller,1367815199 +52554,7223,noir thriller,1367815199 +52554,7335,noir thriller,1367815198 +52554,7943,noir thriller,1367815199 +52554,25927,noir thriller,1367815199 +52554,31785,melancholic,1367815134 +52554,64993,melancholic,1367815134 +52554,82242,original,1367815022 +52554,87304,melancholic,1367815134 +52554,96610,plot holes,1351736049 +52565,50,twist ending,1161873015 +52590,1090,vietnam,1428541134 +52590,1090,war,1428541127 +52590,7502,war,1428541181 +52590,7502,world war II,1428541184 +52590,130490,action,1428541166 +52590,130490,divergent,1428541166 +52590,130490,science fiction,1428541166 +52612,260,oldie but goodie,1430366300 +52612,260,scifi,1430366235 +52612,117533,documentary,1430366493 +52612,117533,homeland security,1430366493 +52612,117533,socially relevant,1430366493 +52644,70567,social commentary\,1302821033 +52644,88237,schizophrenia,1322035430 +52644,88237,surreal,1322035431 +52644,89678,historical fiction,1433545232 +52644,89678,jane austen,1433545232 +52644,89678,romance,1433545232 +52644,89678,social commentary,1433545232 +52646,3594,dance,1157119821 +52646,7165,dance,1157119858 +52646,7259,Dance,1157119778 +52647,89745,fiction,1338406420 +52682,1225,art,1304569043 +52682,1225,drama,1304569004 +52682,1225,envy,1304569039 +52682,1225,jealousy,1304569034 +52682,1265,alternate reality,1304569266 +52682,1265,existentialism,1304569283 +52682,1265,feel-good,1304569280 +52682,1265,funny,1304569271 +52682,1265,hilarious,1304569260 +52682,1265,romance,1304569275 +52682,1265,small town,1304569277 +52682,1265,time loop,1304569256 +52682,1265,time travel,1304569251 +52682,1280,depressing,1365128170 +52682,1580,bugs,1365127163 +52682,1580,cockroaches,1365127169 +52682,1580,gore,1365127139 +52682,1580,sci-fi,1365127178 +52682,1584,aliens,1372126297 +52682,1584,existentialism,1372126293 +52682,1584,religion,1372126310 +52682,1584,sci-fi,1372126290 +52682,1732,unlikeable characters,1374245791 +52682,1732,unsympathetic characters,1374245805 +52682,1732,violence,1374245817 +52682,33004,end of the world,1365128008 +52682,33004,humor,1365128006 +52682,33004,sci-fi,1365127991 +52682,33004,whimsical,1365127993 +52682,46976,fantasy,1304590066 +52682,46976,modern fantasy,1304590056 +52682,46976,storytelling,1304590083 +52682,48780,art,1304569129 +52682,48780,artists,1304569126 +52682,53956,brother-brother relationship,1365126633 +52682,53956,dark comedy,1365126626 +52682,53956,farce,1365126618 +52682,62344,wedding,1365126828 +52682,63859,dog,1365127323 +52682,63859,heartwarming,1365127346 +52682,63859,hollywood ending,1365127355 +52682,63859,predictable,1365127334 +52682,63859,superhero,1365127352 +52682,70286,aliens,1372125335 +52682,70286,gore,1372125354 +52682,70286,sci-fi,1372125319 +52682,70286,too much action,1374195446 +52682,70286,violence,1372125298 +52682,72998,boring protagonist,1374195341 +52682,72998,flat characters,1374195289 +52682,72998,plot makes no sense,1374195275 +52682,73017,bromance,1365129218 +52682,73017,predictable,1365129211 +52682,73017,Robert Downey Jr.,1365129203 +52682,77561,adapted from:comic,1365127006 +52682,77561,bad sequel,1365126986 +52682,77561,based on a comic,1365127004 +52682,77561,comic book,1365126924 +52682,77561,disappointing sequel,1365126959 +52682,77561,disappointing successor,1365126980 +52682,77561,lesser sequel,1365126971 +52682,77561,Robert Downey Jr.,1365126917 +52682,79702,video games,1374245977 +52682,81564,animation,1365127219 +52682,81564,anti-hero,1365127221 +52682,81564,bad guy turns good,1365127251 +52682,81564,feel good movie,1365127205 +52682,81564,funny,1365127291 +52682,81564,heel face turn,1365127280 +52682,81564,romance,1365127211 +52682,81564,superhero,1365127227 +52682,81564,superheroes,1365127208 +52682,81847,animation,1365127379 +52682,81847,fairy tale,1365127386 +52682,81847,weak villain,1365127440 +52682,86332,comic book,1304568598 +52682,86332,father-son relationship,1304568557 +52682,86332,funny,1304568231 +52682,86332,gods,1304568591 +52682,86332,Kat Dennings,1304568585 +52682,86332,Marvel,1304568602 +52682,86332,mythology,1304568589 +52682,86332,present,1304568248 +52682,86332,sibling rivalry,1304568563 +52682,86332,superhero,1304568573 +52682,87232,bromance,1365128641 +52682,87232,friendship,1365128657 +52682,87232,Marvel,1365128632 +52682,87232,superhero,1365128627 +52682,88140,comic book,1365128589 +52682,88140,Marvel,1365128587 +52682,88140,superhero,1365128595 +52682,88744,james franco,1374245191 +52682,89745,Comedy,1365127070 +52682,89745,comic book,1365127057 +52682,89745,Robert Downey Jr.,1365127060 +52682,91529,happy ending,1365128730 +52682,91529,long,1365128740 +52682,91529,sacrifice,1365128756 +52682,91529,superhero,1365128759 +52682,91542,no plot,1365129165 +52682,91542,Robert Downey Jr.,1365128822 +52682,91542,too much action,1365129155 +52682,102125,Iron Man,1366964967 +52682,102125,Marvel,1366964995 +52682,102125,Robert Downey Jr.,1366964963 +52682,102125,superhero,1366964985 +52682,102127,Jane Austen,1366963782 +52688,60333,To See,1222245919 +52691,4369,action,1216342514 +52691,4369,cars,1216342514 +52691,4369,racing,1216342514 +52691,4369,street race,1216342514 +52691,49272,action,1216342476 +52691,49272,franchise,1216342476 +52691,49272,james bond,1216342476 +52691,49272,spy,1216342476 +52708,260,classic,1440997522 +52708,260,classic sci-fi,1440997521 +52708,260,cult classic,1440997527 +52708,589,action,1440997331 +52708,589,classic,1440997327 +52708,589,cyborgs,1440997330 +52708,589,dystopia,1440997323 +52708,589,man versus machine,1440997338 +52708,589,robots,1440997335 +52708,589,time travel,1440997320 +52708,589,violence,1440997343 +52708,858,classic,1440997466 +52708,858,italian mafia,1440997458 +52708,858,melancholy,1440997455 +52708,858,robert de niro,1440997459 +52708,1221,Al Pacino,1440997435 +52708,1221,classic,1440997428 +52708,1221,Mafia,1440997432 +52708,1221,organized crime,1440997426 +52708,1221,Robert De Niro,1440997438 +52708,1221,violence,1440997430 +52708,2028,historical,1440997486 +52708,2028,violent,1440997482 +52708,2028,war,1440997480 +52708,2028,war movie,1440997491 +52708,2028,World War II,1440997487 +52708,2028,wwii,1440997477 +52708,3863,alternate reality,1440996597 +52708,3863,atmospheric,1440996610 +52708,3863,beautiful scenery,1440996609 +52708,3863,dreamlike,1440996587 +52708,3863,dreams,1440996589 +52708,3863,horror,1440996595 +52708,3863,psychological,1440996591 +52708,3863,stylized,1440996604 +52708,3863,surreal,1440996606 +52708,3863,unique,1440996593 +52708,3863,virtual reality,1440996601 +52708,3863,visually stunning,1440996599 +52708,4027,country,1440997612 +52708,5225,beautiful,1440998251 +52708,5225,coming of age,1440998245 +52708,5225,Erotic,1440998242 +52708,5225,Nudity (Full Frontal - Notable),1440998256 +52708,5225,Nudity (Full Frontal),1440998249 +52708,5225,sexual,1440998244 +52708,5266,survival,1440996692 +52708,5266,suspenseful,1440996690 +52708,6323,creepy,1440996668 +52708,6323,multiple personalities,1440996672 +52708,6323,mystery,1440996680 +52708,6323,psychology,1440996676 +52708,6323,split personality,1440996667 +52708,6323,surreal,1440996671 +52708,6323,suspense,1440996665 +52708,6323,suspenseful,1440996675 +52708,33164,alone,1440997153 +52708,33164,creepy,1440997158 +52708,33164,ghost town,1440997156 +52708,33164,vacated,1440997155 +52708,33679,espionage,1440997829 +52708,33679,spies,1440997832 +52708,39183,beautiful,1440998200 +52708,39183,controversial,1440998206 +52708,39183,forbidden love,1440998204 +52708,39183,homosexuality,1440998207 +52708,39183,sexuality,1440998198 +52708,40732,cave,1440997049 +52708,40732,claustrophobic,1440997050 +52708,40732,suspense,1440997053 +52708,40732,tense,1440997054 +52708,44665,gangsters,1440996873 +52708,44665,hitman,1440996877 +52708,44665,horse racing,1440996884 +52708,44665,organized crime,1440996878 +52708,44974,claustrophobic,1440997185 +52708,44974,controversial,1440997181 +52708,44974,disturbing,1440997186 +52708,44974,intense,1440997192 +52708,44974,psychology,1440997173 +52708,44974,sexual abuse,1440997176 +52708,44974,suspenseful,1440997194 +52708,44974,thriller,1440997190 +52708,49961,lesbian,1440997926 +52708,49961,loneliness,1440997924 +52708,49961,manipulation,1440997922 +52708,49961,obsession,1440997917 +52708,49961,secrets,1440997930 +52708,49961,sexuality,1440997934 +52708,50912,multiple storylines,1440997668 +52708,50912,romance,1440997670 +52708,50912,romantic,1440997672 +52708,52328,isolation,1440996443 +52708,52328,physics,1440996455 +52708,52328,psychological,1440996457 +52708,52328,psychology,1440996456 +52708,52328,space,1440996440 +52708,56095,lgbt,1440997262 +52708,56095,lgbtq,1440997264 +52708,56095,lgbtqia,1440997267 +52708,56095,minority,1440997269 +52708,56095,queer,1440997253 +52708,56095,sexuality,1440997270 +52708,56095,trans,1440997252 +52708,56095,transgender,1440997254 +52708,56095,transsexual,1440997256 +52708,57274,atmospheric,1440997023 +52708,57274,contamination,1440997010 +52708,57274,creepy,1440997028 +52708,57274,despair,1440997012 +52708,57274,Foreign,1440997026 +52708,57274,found footage,1440997014 +52708,57274,horror,1440997031 +52708,57274,infection,1440997020 +52708,57274,isolation,1440997024 +52708,57274,panic,1440997007 +52708,57274,quarantine,1440997008 +52708,57274,spanish,1440997016 +52708,57274,virus,1440997029 +52708,59727,disturbing,1440997078 +52708,59727,little dialogue,1440997080 +52708,59727,terrifying,1440997077 +52708,63033,blindness,1440998680 +52708,63033,epidemic,1440998683 +52708,63033,good concept,1440998681 +52708,63062,mother-son relationship,1440997756 +52708,63062,wrongly accused,1440997754 +52708,66097,alternate reality,1440997900 +52708,66097,alternate universe,1440997898 +52708,66097,creepy,1440997895 +52708,66097,dystopia,1440997897 +52708,69122,bachelor party,1440996721 +52708,69122,drinking,1440996733 +52708,69122,drugs,1440996725 +52708,69122,guy flick,1440996742 +52708,69122,masculinity,1440996755 +52708,69122,partying,1440996747 +52708,69122,smoking,1440996729 +52708,71057,creepy,1440997872 +52708,71057,dark fantasy,1440997867 +52708,71057,dystopia,1440997865 +52708,71057,post-apocalyptic,1440997861 +52708,71057,Simple,1440997875 +52708,71057,surreal,1440997880 +52708,71057,survival,1440997869 +52708,71057,visually appealing,1440997863 +52708,72998,connection,1440996245 +52708,72998,earth,1440996244 +52708,72998,environmental,1440997390 +52708,72998,guns,1440996251 +52708,72998,military,1440996262 +52708,72998,nature,1440996243 +52708,72998,racism,1440997383 +52708,72998,spirit,1440996240 +52708,72998,spiritual,1440996241 +52708,72998,tree,1440996247 +52708,72998,war,1440996270 +52708,79132,alternate reality,1440996386 +52708,79132,dream,1440996345 +52708,79132,dreaming,1440996347 +52708,79132,dreams,1440996342 +52708,79132,intellectual,1440996354 +52708,79132,memory,1440996358 +52708,79132,memory loss,1440996365 +52708,79132,philosophy,1440996343 +52708,79132,questions reality,1440996391 +52708,79132,reality,1440996382 +52708,79132,sentimental,1440996374 +52708,79132,short-term memory loss,1440996362 +52708,79132,surreal,1440996349 +52708,79132,suspense,1440996346 +52708,79132,time,1440996369 +52708,79293,assassination,1440997807 +52708,79293,espionage,1440997805 +52708,79293,spy,1440997813 +52708,79293,thriller,1440997810 +52708,79293,unrealistic,1440997815 +52708,80463,complex characters,1440996903 +52708,80463,hacking,1440996910 +52708,80463,internet,1440996912 +52708,80463,loneliness,1440996902 +52708,80549,sexuality,1440997779 +52708,80549,virginity,1440997775 +52708,80551,About rich people without real problems,1440997967 +52708,80551,whiney protagonist,1440997963 +52708,88744,thought-provoking,1440997360 +52708,94864,aliens,1440996485 +52708,94864,god,1440996490 +52708,94864,higher purpose,1440996505 +52708,94864,intense,1440996489 +52708,94864,meaning,1440996502 +52708,94864,purpose,1440996503 +52708,94864,self-sacrifice,1440996488 +52708,94864,space,1440996494 +52708,94864,space travel,1440996493 +52708,101864,adventure,1440996531 +52708,101864,cloning,1440996529 +52708,101864,future,1440996527 +52708,101864,interesting concept,1440996533 +52708,101864,memory loss,1440996537 +52708,101864,post-apocalyptic,1440996524 +52708,101864,sentimental,1440996541 +52708,103253,cyborgs,1440996557 +52708,103253,military,1440996561 +52708,103253,unnecessary violence,1440996568 +52708,104374,dreaming,1440995573 +52708,104374,forgetting,1440995563 +52708,104374,loss,1440995566 +52708,104374,memory,1440995560 +52708,104374,time,1440995558 +52708,104841,solitude,1440996298 +52708,104841,space,1440996294 +52708,108727,sexuality,1440998228 +52708,108727,unsimulated sex,1440998227 +52708,109578,airplane,1440996990 +52708,109578,thrilling,1440996988 +52708,110730,love,1440996800 +52708,111360,drugs,1440996779 +52708,111360,intense,1440996785 +52708,111360,strong female lead,1440996771 +52708,111360,transhumanist,1440996782 +52708,116489,arab,1440997714 +52708,116489,conflict,1440997717 +52708,116489,idealist,1440997729 +52708,116489,idealistic,1440997730 +52708,116489,israel,1440997721 +52708,116489,muslim,1440997718 +52708,116489,palestine,1440997719 +52708,117529,adventure,1440997408 +52708,117529,danger,1440997402 +52708,117529,dinosaurs,1440997410 +52708,117529,Experiment Gone Awry,1440997405 +52709,29,dystopia,1168526498 +52709,4092,androids,1168526564 +52728,3081,Johnny Depp,1289692383 +52728,3081,Tim Burton,1289692380 +52737,2058,ok,1323719006 +52754,260,action,1443210274 +52754,260,fairy tale,1443210281 +52754,260,sci-fi,1443210243 +52754,1279,humorous,1443215755 +52754,1279,multiple storylines,1443215752 +52754,1279,quirky,1443215761 +52754,1921,black and white,1443215675 +52754,1921,existentialism,1443215677 +52754,1921,great soundtrack,1443215686 +52754,1921,hallucinatory,1443215683 +52754,1921,mathematics,1443215673 +52754,1921,psychology,1443215679 +52754,1921,stylized,1443215689 +52754,2712,disturbing,1443215666 +52754,2712,dreamlike,1443215653 +52754,2712,psychological,1443215662 +52754,2712,sexuality,1443215656 +52754,2712,surreal,1443215659 +52754,3328,assassin,1443215455 +52754,3328,great soundtrack,1443215462 +52754,3328,Jim Jarmusch,1443215445 +52754,3328,quirky,1443215458 +52754,3328,samurai,1443215453 +52754,3328,stylized,1443215443 +52754,3949,addiction,1443216395 +52754,3949,cinematography,1443216410 +52754,3949,depressing,1443216395 +52754,3949,disturbing,1443216391 +52754,3949,drugs,1443216390 +52754,3949,emotional,1443216402 +52754,3949,intense,1443216413 +52754,3949,visually appealing,1443216402 +52754,4873,dreamlike,1443215789 +52754,4873,dreams,1443215781 +52754,4873,existentialism,1443215783 +52754,4873,philosophy,1443215775 +52754,4873,stylized,1443215786 +52754,4873,surreal,1443215778 +52754,4873,thought-provoking,1443215779 +52754,6807,black comedy,1443215815 +52754,6807,british comedy,1443215803 +52754,6807,ridiculous,1443215807 +52754,7371,artsy,1443215835 +52754,7371,cult film,1443215832 +52754,7371,disturbing,1443215821 +52754,7371,experimental,1443215824 +52754,7371,philosophical,1443215826 +52754,7371,philosophy,1443215831 +52754,7371,social commentary,1443215828 +52754,33493,sci-fi,1443216229 +52754,33493,space,1443216227 +52754,34048,based on a book,1443216473 +52754,34048,cliche,1443216466 +52754,34048,sci-fi,1443216477 +52754,34048,weak ending,1443216463 +52754,46976,humorous,1443215741 +52754,46976,narrated,1443215721 +52754,46976,quirky,1443215727 +52754,46976,storytelling,1443215734 +52754,46976,surreal,1443215719 +52754,46976,writing,1443215732 +52754,48774,atmospheric,1443215848 +52754,48774,dystopia,1443215847 +52754,48774,sci-fi,1443215853 +52754,48774,survival,1443215851 +52754,48774,thought-provoking,1443215859 +52754,48774,visually appealing,1443215861 +52754,53996,franchise,1443216555 +52754,53996,teen,1443216565 +52754,54999,ridiculous,1443215707 +52754,59369,predictable,1443216503 +52754,59369,unrealistic,1443216512 +52754,59387,beautiful,1443216256 +52754,59387,cinematography,1443216270 +52754,59387,great soundtrack,1443216603 +52754,59387,imagination,1443216259 +52754,59387,story-in-a-story,1443216261 +52754,59387,storytelling,1443216263 +52754,59387,surreal,1443216257 +52754,59387,visually stunning,1443216256 +52754,61236,animated,1443216150 +52754,61236,history,1443216160 +52754,61236,memory,1443216165 +52754,61236,thought-provoking,1443216152 +52754,61236,touching,1443216155 +52754,73321,Bible,1443216530 +52754,73321,Christianity,1443216529 +52754,73321,faith,1443216542 +52754,73321,post-apocalyptic,1443216535 +52754,79357,cinematography,1443215619 +52754,79357,nonlinear,1443215642 +52754,79357,philosophy,1443215629 +52754,79357,romance,1443215629 +52754,79357,surreal,1443215617 +52754,79357,thought provoking,1443215620 +52754,87192,black comedy,1443216141 +52754,90430,good acting,1443216420 +52754,90430,satire,1443216422 +52754,115713,artificial intelligence,1443216192 +52754,115713,consciousness,1443216212 +52754,115713,futuristic,1443216203 +52754,115713,philosophical,1443216198 +52754,115713,plot twist,1443216207 +52754,115713,sci-fi,1443216193 +52754,115713,thought provoking,1443216195 +52793,318,good acting,1423822454 +52793,318,great performances,1423822454 +52793,318,prison escape,1423822454 +52793,858,crime,1437058508 +52793,858,great actor,1437058508 +52793,858,mafia,1437058508 +52793,1732,girls,1428326630 +52795,86880,just so so !,1434638235 +52795,86880,like johnny depp but it is a little too much,1434638235 +52795,86880,still looking for the next one,1434638235 +52815,25,melancholic,1368398538 +52815,43,historical,1368399002 +52815,110,revolution,1368399084 +52815,218,friendship,1368398971 +52815,247,friendship,1368398971 +52815,272,revolution,1368399084 +52815,589,man versus machine,1368399261 +52815,991,historical,1368399002 +52815,1028,children,1368399341 +52815,1090,war movie,1368398587 +52815,1240,man versus machine,1368399260 +52815,1271,friendship,1368398971 +52815,1274,tokyo,1368399288 +52815,1291,series,1368398684 +52815,1345,bullying,1368399112 +52815,1374,series,1368398684 +52815,1693,historical,1368399002 +52815,1719,melancholic,1368398538 +52815,1918,series,1368398684 +52815,1960,revolution,1368399083 +52815,1962,friendship,1368398971 +52815,2002,series,1368398684 +52815,2006,sword fighting,1368398786 +52815,2028,war movie,1368398588 +52815,2087,children,1368399341 +52815,2352,friendship,1368398971 +52815,2363,tokyo,1368399289 +52815,2420,bullying,1368399112 +52815,2571,man versus machine,1368399260 +52815,2640,superheroes,1368398657 +52815,2723,superheroes,1368398657 +52815,2944,wwii,1368398916 +52815,3000,japanese,1368399366 +52815,3066,wwii,1368398916 +52815,3157,family,1368398698 +52815,3196,wwii,1368398916 +52815,3448,war movie,1368398587 +52815,3578,historical,1368399002 +52815,3836,wwii,1368398916 +52815,4886,children,1368399341 +52815,5349,superheroes,1368398657 +52815,6365,man versus machine,1368399261 +52815,6934,man versus machine,1368399261 +52815,6934,revolution,1368399084 +52815,7143,japanese,1368399366 +52815,8636,superheroes,1368398657 +52815,8961,children,1368399341 +52815,33162,historical,1368399002 +52815,45499,superheroes,1368398657 +52815,59315,superheroes,1368398657 +52815,74275,homosexual,1293842114 +52815,80463,business,1288501641 +52815,80463,college,1288501641 +52815,80463,fame,1288501641 +52815,80463,friendship,1288501596 +52815,82534,family,1311474009 +52815,82534,work,1311474009 +52815,86355,business,1344953322 +52815,86355,Capitalism,1303718434 +52815,86355,Government,1344953322 +52815,86355,Independence,1303718439 +52815,86355,Individualism,1303718467 +52815,86355,Objectivism,1303718416 +52815,86546,college,1356640813 +52815,86546,growth,1356640814 +52815,86546,may december romance,1356640814 +52815,92420,supernatural powers,1331347171 +52815,92420,teenage angst,1331347171 +52815,97324,ayn rand,1350109518 +52815,97324,business,1355549322 +52815,97324,Capitalism,1350109518 +52815,97324,free will,1355549292 +52815,97324,Government,1350109517 +52815,97324,individualism,1350109517 +52815,97324,looters,1350109517 +52815,97324,money,1355549309 +52815,97324,moochers,1350109517 +52815,97324,objectivism,1350109517 +52815,97324,redistribution,1355549335 +52815,97324,socialism,1350109517 +52815,97913,retro,1361743752 +52815,99530,anime based,1357271363 +52815,99530,hero,1357271363 +52815,99530,Japan,1357271363 +52815,99530,samuri,1357271363 +52815,99530,war,1357271363 +52815,105713,Comedy,1382242581 +52815,105713,Misfit,1382242604 +52815,105713,Stalking,1382242593 +52818,260,Star Wars,1441124309 +52818,260,starwars,1441124315 +52832,1101,gay,1138641889 +52842,296,Quentin Tarantino,1236243093 +52881,260,classic,1437123629 +52881,260,Science Fiction,1437123625 +52889,29,surreal,1225245786 +52889,1732,dark comedy,1225245837 +52889,2997,surrealism,1225245881 +52889,3949,drugs,1225245713 +52889,4011,Brad Pitt,1225245935 +52889,6874,Quentin Tarantino,1225245914 +52889,60069,pixar,1225245732 +52890,8154,marcello mastroianni,1287238865 +52890,8456,psychological thriller,1289743922 +52890,8456,sexy protagonist,1289743905 +52890,26150,Andrei Tarkovsky,1286711144 +52890,26150,Criterion,1286711155 +52890,26150,long,1286711126 +52890,26150,masterpiece,1286711123 +52896,6985,breathtaking,1237060605 +52896,7361,i'd like to live in this movie,1237060140 +52896,44555,breathtaking,1237060235 +52900,260,classic,1442354655 +52900,260,sci-fi,1442354632 +52916,8477,narrated,1179690631 +52945,5952,overrated,1198440364 +52945,112976,comedy,1427977882 +52945,112976,mockumentary,1427977882 +52945,112976,stand up,1427977882 +52963,1,animated,1285014825 +52963,1,animation,1285014815 +52963,1,buddy movie,1285014833 +52963,1,children,1285014830 +52963,1,clever,1285014854 +52963,1,time travel,1285014839 +52963,1,witty,1285014844 +52963,780,alien invasion,1285014885 +52963,780,apocalypse,1285014881 +52963,780,conspiracy theory,1285014888 +52963,780,war,1285014897 +52963,780,Will Smith,1285014904 +52963,48394,alternate reality,1285014970 +52963,48394,disturbing,1285014974 +52963,48394,surreal,1285014987 +52963,48394,twist ending,1285014982 +52963,48394,violence,1285014985 +52968,60069,pixar,1216600715 +52974,6323,John Cusack,1207087013 +52974,8640,bullshit history,1206052611 +52974,49766,espionage,1339472402 +52974,55284,nonlinear,1327572842 +52974,59295,science,1335216604 +52974,72949,bad acting,1330753210 +52974,74131,family drama,1281855287 +52974,74131,overcoming obstacles,1281855381 +52974,74131,science,1281855272 +52974,76175,3D version,1270712652 +52974,80969,depressing,1327299486 +52974,89470,medicine,1328234293 +52974,89492,iconoclast,1326961866 +52974,90738,assassin,1328257922 +52974,90738,espionage,1328257798 +52974,90738,spy thriller,1328257812 +52974,91886,true story,1326971633 +52974,92234,George Lucas,1326973294 +52974,92234,transcendent,1340181762 +52974,92483,based on true story,1327225949 +52974,92483,Harry Connick Jr,1327263618 +52974,92483,medicine,1327226114 +52974,92483,overcoming obstacles,1327228565 +52974,92483,science,1327228546 +52974,92483,transcendent,1327226031 +52997,52328,Danny Boyle,1442791250 +52997,52328,killer on the loose,1442791245 +52997,55820,Cormac McCarthy,1442791201 +52997,55820,thriller,1442791197 +52997,88129,atmospheric,1442790999 +52997,88129,great soundtrack,1442790991 +52997,93838,action,1442791047 +52997,93838,martial arts,1442791044 +52997,93838,thin plot,1442791051 +52997,107406,post-apocalyptic,1442791112 +52997,107406,tilda swinton,1442791117 +52997,109487,Christopher Nolan,1442791225 +52997,109487,sci-fi,1442791231 +52997,122882,action,1442791064 +52997,122882,badass,1442791083 +52997,122882,post apocalypse,1442791072 +53002,260,classic,1431424846 +53002,260,space,1431424850 +53012,103688,exorcism,1387951572 +53012,103688,haunted house,1387951597 +53012,103688,homage,1387951579 +53012,103688,Horror,1387951590 +53012,103688,James Wan,1387951565 +53012,103688,true story,1387951538 +53020,260,Jedi,1437281384 +53020,260,Light sabre,1437281401 +53020,356,american history,1437281892 +53020,356,box of chocolates,1437281892 +53020,356,funny,1437281892 +53030,6,Bank Heist,1299298945 +53030,433,short-term memory loss,1368038922 +53030,805,Matthew McConaughey,1300479088 +53030,1359,arnold,1368038693 +53030,1422,conspiracy theory,1368038836 +53030,1544,spielberg,1368038951 +53030,1693,spielberg,1368038951 +53030,2579,neo-noir,1368038786 +53030,2739,spielberg,1368038951 +53030,3489,spielberg,1368038951 +53030,3698,arnold,1368038692 +53030,3783,neo-noir,1368038786 +53030,3986,arnold,1368038693 +53030,4189,christian,1368038733 +53030,4189,jesus,1368038510 +53030,4370,spielberg,1368038951 +53030,4558,arnold,1368038693 +53030,5146,dark hero,1368038652 +53030,5882,treasure,1368038557 +53030,6609,jesus,1368038510 +53030,7004,arnold,1368038693 +53030,7223,noir thriller,1368038583 +53030,7943,noir thriller,1368038583 +53030,27822,stranded,1368038599 +53030,34048,spielberg,1368038951 +53030,57951,treasure,1368038557 +53030,81562,mountain climbing,1368038903 +53030,84601,short-term memory loss,1368038922 +53030,91976,stranded,1368038599 +53030,97938,stranded,1368038598 +53031,5618,anime,1439289227 +53031,5618,Hayao Miyazaki,1439289238 +53031,5618,Studio Ghibli,1439289229 +53031,112552,drama,1439288722 +53031,112552,education,1439288731 +53031,112552,musicians,1439288737 +53031,114700,crime,1439288792 +53031,114700,drama,1439288789 +53031,114700,growing up,1439288779 +53031,134368,comedy,1439288849 +53031,134368,espionage,1439288853 +53031,134368,melissa mccarthy,1439288845 +53092,122886,franchise,1453694258 +53092,122886,space,1453694260 +53092,122886,Star Wars,1453694262 +53105,260,good science fiction,1433054910 +53107,260,clasic,1440450079 +53107,260,George Lucas,1440450068 +53107,3967,musical,1440450523 +53134,5,childhood classics,1187750007 +53134,5,steve martin,1187750014 +53134,1748,innovative,1187750040 +53134,2023,Classic,1187750025 +53134,3948,comedy,1187750048 +53134,3948,in-laws,1187750051 +53166,508,great acting,1139195062 +53166,508,loved Tom Hanks,1139195062 +53166,2997,different but very good,1139195093 +53166,4306,great for the kids and adults,1139195077 +53166,4306,very funny,1139195077 +53168,4161,Brad Pitt,1243932989 +53169,260,EPIC,1434881956 +53169,260,hero's journey,1434881967 +53171,3186,60s,1335816692 +53171,3186,asylum,1335816718 +53171,3186,based on a true story,1335816722 +53171,3186,girlie movie,1335816703 +53171,3186,mental illness,1335816706 +53171,3186,psychiatry,1335816734 +53171,3186,psychology,1335816732 +53171,3186,rated-R,1335816738 +53171,3186,suicide,1335816713 +53171,3186,true story,1335816748 +53171,3186,winona ryder,1335816698 +53171,4865,Nudity (Full Frontal),1336266390 +53171,4865,Nudity (Topless),1336266392 +53171,5992,based on a book,1335812826 +53171,5992,claire danes,1335812831 +53171,5992,intellectual,1335812816 +53171,5992,lgbt,1335812837 +53171,5992,mental illness,1335812810 +53171,5992,music,1335812844 +53171,5992,Nicole Kidman,1335812761 +53171,5992,nonlinear,1335812805 +53171,5992,queer,1335812859 +53171,5992,suicide,1335812793 +53171,5992,updated classics,1335812790 +53171,5992,Virginia Woolf,1335812757 +53171,7034,adolescence,1335924582 +53171,7034,homosexuality,1335924584 +53171,7034,lesbian,1335924586 +53171,7034,mother daughter relationship,1335924673 +53171,7034,queer,1335924647 +53171,7034,quirky,1335924650 +53171,7034,small town,1335924588 +53171,30707,Clint Eastwood,1335813211 +53171,30707,Hilary Swank,1335813152 +53171,30707,Morgan Freeman,1335813207 +53171,30707,social commentary,1335813201 +53171,30707,sports,1335813222 +53171,39446,clever,1335919931 +53171,39446,suspense,1335919944 +53171,42004,christianity,1335927181 +53171,42004,cultural conflict,1335927188 +53171,42004,drugs,1335927195 +53171,42004,dysfunctional family,1335927227 +53171,42004,gender identity,1335927191 +53171,42004,male nudity,1335927210 +53171,42004,queer,1335927236 +53171,42004,quirky,1335927240 +53171,42004,roadtrip,1335927201 +53171,42004,sexuality,1335927207 +53171,42004,transgender,1335927176 +53171,42004,transsexuals,1335927198 +53171,44974,disturbing,1369386344 +53171,44974,intense,1369386328 +53171,44974,sexual abuse,1369386323 +53171,44974,visually appealing,1369386341 +53171,49961,adultery,1335816876 +53171,49961,BBC Films,1335816894 +53171,49961,England,1335816903 +53171,49961,lesbian,1335816878 +53171,49961,obsession,1335816885 +53171,49961,secrets,1335816888 +53171,49961,sexuality,1335816890 +53171,50183,Catholicism,1346303460 +53171,50183,controversial,1346303445 +53171,50183,erotic,1346303463 +53171,50183,Forbidden Love,1346303468 +53171,50183,lesbian,1346303430 +53171,50183,school,1346303454 +53171,50183,unconventional,1346303433 +53171,55280,BORING!,1335819108 +53171,55280,Emily Mortimer,1335819097 +53171,55280,emotional,1335820020 +53171,55280,mental illness,1335819094 +53171,55280,psychology,1335819112 +53171,55280,Ryan Gosling,1335820022 +53171,55280,small town,1335819117 +53171,55280,sweet,1335820027 +53171,55280,weird,1335819115 +53171,61240,adolescence,1335907773 +53171,61240,swedish,1335907776 +53171,61240,unintentional comedy,1335907779 +53171,61240,vampire,1335907784 +53171,64575,moral ambiguity,1369350420 +53171,71429,depressing,1336000113 +53171,71429,Robin Williams,1336000120 +53171,71429,suicide,1336000110 +53171,80831,remake,1336266256 +53171,83798,boarding school,1369350174 +53171,83798,cinematography,1369350171 +53171,83798,Eva Green,1369350179 +53171,83798,lesbian,1369350196 +53171,83798,script,1369350167 +53171,83798,taboo relationship,1369350195 +53171,85788,Leigh Whannell,1336208399 +53171,85788,Rose Byrne,1336208403 +53171,86320,beautiful,1336438720 +53171,86320,Drama,1336438733 +53171,90376,emotional,1369386665 +53171,106696,music,1401854780 +53171,106696,sisters,1401854783 +53178,49,circus,1199227181 +53178,203,Crossdressing,1199227304 +53178,203,queer,1199237063 +53178,327,comic book,1199227303 +53178,1259,coming of age,1199237135 +53178,1268,rebel,1199227324 +53178,1611,coming of age,1199237288 +53178,1611,rebellion,1199237283 +53178,1967,muppets,1199227678 +53178,2005,treasure,1199237581 +53178,6705,clubs,1199227533 +53178,6705,drugs,1199227523 +53178,8366,satire,1199227302 +53178,48394,imagination,1199227360 +53180,33564,Marcello Mastroianni,1243470796 +53184,260,awesome,1436466656 +53184,117533,must see,1436466761 +53184,117533,nsa,1436466761 +53184,117533,surveillance,1436466761 +53189,6721,kung fu,1285033506 +53224,110,action,1428799216 +53224,1198,adventure,1428799241 +53224,1201,drama,1428799228 +53253,6,Al Pacino,1364143002 +53253,6,great acting,1364143010 +53253,6,Robert De Niro,1364142994 +53253,1136,Monty Python,1363923868 +53253,1136,satire,1363923873 +53253,1339,Bruce Willis,1364151168 +53253,1339,Gary Oldman,1364151162 +53253,1358,Billy Bob Thornton,1364868290 +53253,3252,Al Pacino,1364868321 +53253,3252,Philip Seymour Hoffman,1364868331 +53253,3949,great acting,1363913570 +53253,3949,visually appealing,1363913556 +53253,4914,French New Wave,1364149344 +53253,4975,remake,1363922529 +53253,26326,surreal,1364096559 +53282,4473,Gene Hackman,1239935797 +53282,55442,chick flick,1214887658 +53282,60037,entertaining for the wrong reasons,1213731775 +53283,260,sci-fi,1436240801 +53283,260,Science Fiction,1436240819 +53283,260,space action,1436240810 +53283,260,Star Wars,1436240828 +53288,81957,lesbians,1373435037 +53294,57421,gore,1262834597 +53294,73431,Christopher Walken,1263864065 +53294,73431,Morgan Freeman,1263864058 +53326,260,classic sci-fi,1444964643 +53326,260,space adventure,1444964616 +53330,3851,comedy,1208862683 +53338,260,Don't waste your time.,1440277414 +53338,260,Why?,1440277447 +53342,27523,Weird at first - but stick with it,1330435380 +53342,69934,Watch the original - You will thank me,1330466301 +53383,18,dark comedy,1450597437 +53383,18,hotel,1450597442 +53383,318,inspirational,1434031843 +53383,318,prison,1434031832 +53383,356,biographical,1433520356 +53383,356,didactic,1433520356 +53383,356,stupid hero,1433520356 +53383,858,classic,1434201160 +53383,858,complicated,1434201208 +53383,858,crime,1434201153 +53383,858,Mafia,1434201149 +53383,858,masterpiece,1434201168 +53383,858,organized crime,1434201182 +53383,1246,Coming of age,1450598526 +53383,1246,Drama,1450598493 +53383,1246,education,1450598501 +53383,1246,English literature,1450598480 +53383,1246,friendship,1450598522 +53383,1246,inspirational,1450598411 +53383,1246,philosophy,1450598409 +53383,1246,poetry,1450598470 +53383,1246,Robin Williams,1450598416 +53383,1246,school,1450598476 +53383,1246,suicide,1450598510 +53383,1246,teacher,1450598539 +53383,1246,teen,1450598535 +53383,2959,atmospheric,1433957250 +53383,2959,Brad Pitt,1433957230 +53383,2959,dark comedy,1433957243 +53383,2959,fighting,1433957265 +53383,2959,surreal,1433957219 +53383,2959,twist ending,1433957224 +53383,3949,addiction,1434098137 +53383,3949,atmospheric,1434098146 +53383,3949,depressing,1434098129 +53383,3949,drugs,1434098123 +53383,3949,emotional,1434098152 +53383,3949,Nudity (Full Frontal),1434098195 +53383,3949,psychological,1434098206 +53383,3949,psychology,1434098131 +53383,3969,change the world,1436123952 +53383,3969,idealistic,1436123963 +53383,3969,inspirational,1436123919 +53383,3969,las vegas,1436123966 +53383,3969,sad,1436123956 +53383,4226,complicated,1434093496 +53383,4226,death,1433957161 +53383,4226,great ending,1433957128 +53383,4226,memory,1433957120 +53383,4226,memory loss,1434093485 +53383,4226,mental illness,1434093476 +53383,4226,mystery,1433957146 +53383,4226,nonlinear,1433957089 +53383,4226,paranoid,1433957141 +53383,4226,psychological,1434093462 +53383,4226,psychology,1433957113 +53383,4226,stylized,1433957154 +53383,4226,tense,1434093502 +53383,4226,twist ending,1433957134 +53383,4308,colourful,1451243961 +53383,4308,lyrical,1451243979 +53383,4308,musical,1451243949 +53383,4308,stylized,1451243945 +53383,4454,free to download,1451410819 +53383,4454,imagination,1451410839 +53383,4454,short,1451410810 +53383,4973,feel-good,1433519957 +53383,4995,biography,1434093392 +53383,4995,Education,1434093418 +53383,4995,genius,1434093414 +53383,4995,inspirational,1434093394 +53383,4995,intelligent,1434093422 +53383,4995,math,1434093375 +53383,4995,mathematics,1434093366 +53383,4995,mental illness,1434093402 +53383,4995,psychology,1434093362 +53383,4995,true story,1434093385 +53383,5459,comedy,1436123614 +53383,5459,conspiracy,1436123666 +53383,5459,Rosario Dawson,1436123608 +53383,5459,sequel,1436123643 +53383,5459,Will Smith,1436123611 +53383,6902,life lessons,1450598119 +53383,6902,life philosophy,1450598102 +53383,6902,road trip,1450598095 +53383,6902,romantic,1450598137 +53383,6902,self discovery,1450598110 +53383,6902,surreal,1450598107 +53383,8533,CLASS DIFFERENCES,1434093693 +53383,8533,FIRST LOVE,1434093671 +53383,8533,great ending,1434093552 +53383,8533,life choices,1434093663 +53383,8533,memories,1434093561 +53383,8533,memory loss,1434093549 +53383,8533,sad,1434093659 +53383,8533,sentimental,1434093565 +53383,9010,bet,1446652409 +53383,9010,cross-sex friendship,1446652712 +53383,9010,dare,1446652912 +53383,9010,escapist ending,1446652652 +53383,9010,France,1446652663 +53383,9010,Marion Cotillard,1446653229 +53383,9010,wager,1446652434 +53383,32840,black and white,1453574628 +53383,32840,short,1453574603 +53383,32840,strange,1453574647 +53383,33004,absurd,1434545135 +53383,33004,alien invasion,1434545157 +53383,33004,aliens,1434545139 +53383,33004,apocalypse,1434545153 +53383,33004,based on a book,1434545177 +53383,33004,british comedy,1434545162 +53383,33004,comedy,1434545122 +53383,33004,end of the world,1434545142 +53383,33004,humor,1434545132 +53383,33004,post-apocalyptic,1434545129 +53383,33004,sarcasm,1434545125 +53383,33004,sci-fi,1434545117 +53383,33004,space,1434545180 +53383,33004,space travel,1434545172 +53383,33004,whimsical,1434545205 +53383,33004,witty,1434545187 +53383,48043,atmospheric,1434031479 +53383,48043,death,1434031522 +53383,48043,love,1434031472 +53383,48043,philosophical,1434031501 +53383,48043,religion,1434031512 +53383,48043,surreal,1434031495 +53383,49278,detective,1434031745 +53383,49278,sci-fi,1434031728 +53383,51086,amnesia,1446699411 +53383,51086,conspiracy theory,1446660467 +53383,51086,memory loss,1446660502 +53383,51086,psychology,1446660464 +53383,60069,adventure,1451760756 +53383,60069,animated,1451760696 +53383,60069,Animation,1451760741 +53383,60069,artificial intelligence,1451760666 +53383,60069,consumerism,1451760855 +53383,60069,cute,1451760722 +53383,60069,dystopia,1451760657 +53383,60069,ecology,1451760793 +53383,60069,emotional,1451760844 +53383,60069,environmental,1451760841 +53383,60069,family,1451760781 +53383,60069,funny,1451760776 +53383,60069,Future,1451760768 +53383,60069,human versus computer,1451760788 +53383,60069,inspirational,1451760772 +53383,60069,last man on earth,1451760751 +53383,60069,love story,1451760703 +53383,60069,Post apocalyptic,1451760762 +53383,60069,post-apocalyptic,1451760823 +53383,60069,robot,1451760810 +53383,60069,robot love,1451760805 +53383,60069,robots,1451760645 +53383,60069,romance,1451760700 +53383,60069,Sci-Fi,1451760672 +53383,60069,space,1451760813 +53383,60904,Russian,1450597983 +53383,63062,angelina jolie,1452974875 +53383,63062,based on a true story,1452974871 +53383,63062,Clint Eastwood,1452974883 +53383,63062,complicated plot,1452975122 +53383,63062,John Malkovich,1452974941 +53383,63062,mother-son relationship,1452974890 +53383,63062,police,1452974947 +53383,63062,police corruption,1452974880 +53383,63062,political,1452974936 +53383,63062,unpredictable,1452975154 +53383,63062,wrongly accused,1452974930 +53383,63082,dark side of India,1433520038 +53383,63082,destiny,1433997677 +53383,63082,dreamlike,1433997689 +53383,63082,feel-good,1433997637 +53383,63082,fortune,1433997802 +53383,63082,India,1433520022 +53383,63082,love,1433520028 +53383,63082,love story,1433520046 +53383,63082,touching,1433997647 +53383,64034,childhood,1446652057 +53383,64034,childish naivity,1446651885 +53383,64034,fake,1446652040 +53383,64034,Friendship,1446651876 +53383,64034,from the view of children,1446652147 +53383,64034,irony,1446651889 +53383,64034,Nazi Germany,1446651914 +53383,64034,Nazis,1446651926 +53383,64034,sad,1446651871 +53383,64034,touching,1446651892 +53383,64034,World War II,1446651864 +53383,64716,hopeless love,1436123758 +53383,64716,melancholy,1436123727 +53383,64716,Rosario Dawson,1436123781 +53383,64716,suicide,1436123744 +53383,64716,unique,1436123736 +53383,64716,Will Smith,1436123721 +53383,69757,feelings,1433957584 +53383,69757,Funny,1433957524 +53383,69757,nonlinear,1433957517 +53383,69757,relationships,1433957454 +53383,69757,touching,1433957688 +53383,69757,Zooey Deschanel,1433957473 +53383,72011,airplane,1453109058 +53383,72011,airport,1453109046 +53383,72011,business,1453109070 +53383,72011,George Clooney,1453109120 +53383,72011,love story,1453109092 +53383,72011,self discovery,1453109089 +53383,72011,thoughtful,1453109062 +53383,72011,travel,1453109067 +53383,72011,witty,1453109171 +53383,72998,3d,1434031249 +53383,72998,aliens,1434031262 +53383,72998,beautiful,1434031301 +53383,72998,beautiful scenery,1434031272 +53383,72998,effects,1434031283 +53383,72998,graphic design,1434031266 +53383,72998,sci-fi,1434031237 +53383,72998,special effects,1434031297 +53383,74727,Soviet Union,1450598295 +53383,74868,debauchery,1444569937 +53383,74868,England,1444569909 +53383,74868,magic,1444569899 +53383,74868,mentoring,1444569886 +53383,79357,butterfly effect,1434031352 +53383,79357,coming of age,1434031389 +53383,79357,flashbacks,1434031408 +53383,79357,memory,1434031421 +53383,79357,nonlinear,1434031341 +53383,79357,philosophy,1434031401 +53383,79357,surreal,1434031344 +53383,79357,thought provoking,1434031379 +53383,80969,atmospheric,1436124088 +53383,80969,Carey Mulligan,1436124136 +53383,80969,clinic,1437547170 +53383,80969,cynical,1436124119 +53383,80969,depressing,1436124072 +53383,80969,disturbing,1436124195 +53383,80969,dystopia,1436124177 +53383,80969,emotional,1436124140 +53383,80969,great acting,1436124123 +53383,80969,Keira Knightley,1436124082 +53383,80969,love story,1436124100 +53383,80969,love triangles,1437547131 +53383,80969,Organ donor,1436124212 +53383,80969,sad,1436124079 +53383,80969,sexuality,1436124117 +53383,80969,slow,1436124108 +53383,80969,thought-provoking,1436124094 +53383,80969,true love,1436124067 +53383,85414,parallel universe,1434031644 +53383,85414,science fiction,1434031681 +53383,85414,time loop,1434031683 +53383,85414,time travel,1434031649 +53383,90578,psychological,1450012133 +53383,92259,disability,1433520401 +53383,92259,emotional,1433520375 +53383,92259,feel good movie,1433520373 +53383,92259,Francois Cluzet,1442742422 +53383,92259,friendship,1433520366 +53383,92259,funny,1433520382 +53383,92259,rich and poor,1433520408 +53383,92259,sexuality,1433520389 +53383,92259,touching,1433520378 +53383,94466,dystopia,1451233424 +53383,94466,future,1451233482 +53383,94466,Science fiction,1451233442 +53383,94466,social commentary,1451233436 +53383,94466,technology,1451233459 +53383,94466,technophobic,1451233499 +53383,94466,thought-provoking,1451233449 +53383,94466,tv series,1451233406 +53383,97938,animals,1434031914 +53383,97938,ocean,1434031894 +53383,97938,religion,1434031898 +53383,97938,spiritual journey,1434031910 +53383,97938,wisdom,1434031921 +53383,102407,1920s,1451243371 +53383,102407,anachronistic music,1451243460 +53383,102407,Carey Mulligan,1451243836 +53383,102407,colorful,1451243969 +53383,102407,contemporary music,1451243419 +53383,102407,dance,1451243610 +53383,102407,disappointing,1451246327 +53383,102407,Leonardo DiCaprio,1451243331 +53383,102407,manerred,1451243687 +53383,102407,Modern music,1451243428 +53383,102407,motivating,1451244211 +53383,102407,New York City,1451243466 +53383,102407,stylized,1451243383 +53383,102407,succeed,1451246358 +53383,102407,though hardship to the stars,1451246401 +53383,102407,visually appealing,1451243756 +53383,102407,vulgarity,1451243580 +53383,102407,wall street,1451243360 +53383,105355,homosexuality,1434098408 +53383,105355,lesbian,1434098400 +53383,105355,nudity (full frontal),1434098426 +53383,105355,realism,1434098435 +53383,105355,unsimulated sex,1434098423 +53383,105355,visually appealing,1434098403 +53383,106100,AIDS,1433997840 +53383,106100,death,1433997853 +53383,106100,disease,1433997846 +53383,106100,Matthew McConaughey,1433997835 +53383,106100,Texas,1433997866 +53383,106100,transgender,1433997874 +53383,106100,witty dialogue,1433997894 +53383,106918,Ben Stiller,1433957383 +53383,106918,imagination,1433957381 +53383,106918,travel,1433957371 +53383,109487,good science,1433269044 +53383,109487,long,1433269059 +53383,109487,physics,1433269018 +53383,109487,sci-fi,1433269003 +53383,109487,time travel,1433269035 +53383,109487,time-travel,1433269014 +53383,112183,Edward Norton,1433268277 +53383,112183,great performances,1433268252 +53383,112183,music,1433268361 +53383,112183,psychological,1433268297 +53383,112183,theater,1433268301 +53383,112552,education,1434089984 +53383,112552,good acting,1434089976 +53383,112552,jazz,1434089938 +53383,112552,jazz music,1434089978 +53383,112552,motivation,1434089987 +53383,112552,music,1434089962 +53383,112552,psychological,1434089967 +53383,112552,Tense,1434089960 +53383,112552,whiplash,1434090004 +53383,116897,argentina,1450597323 +53383,116897,dark humor,1450597063 +53383,116897,Excellent acting,1450597065 +53383,116897,multiple short stories,1450597509 +53383,116897,Spain,1450597342 +53383,116897,tales,1450597742 +53383,116897,texas,1450597682 +53383,116897,violence,1450597081 +53383,116897,wedding scene,1450597649 +53383,134368,comdey,1434089641 +53383,134853,bittersweet,1451761033 +53383,134853,brain,1451761045 +53383,134853,childhood,1451760893 +53383,134853,coming of age,1451760903 +53383,134853,creative,1451760914 +53383,134853,emotional,1451760935 +53383,134853,emotions,1451760920 +53383,134853,family,1451760923 +53383,134853,fun,1451761041 +53383,134853,funny,1451760910 +53383,134853,girl,1451760977 +53383,134853,hockey,1451760980 +53383,134853,imaginative,1451760886 +53383,134853,kids,1451760944 +53383,134853,memory,1451760946 +53383,134853,pre-teen,1451760971 +53383,134853,psychology,1451760888 +53383,140110,Anne Hathaway,1444569610 +53383,140110,feminist,1444569792 +53383,140110,predictable,1444569762 +53383,140110,Robert De Niro,1444569720 +53405,1247,classic,1157947037 +53405,1673,Paul Thomas Anderson,1155010836 +53405,2132,Mike Nichols,1158934754 +53405,2952,Paul Thomas Anderson,1155010821 +53405,3160,Paul Thomas Anderson,1155010832 +53405,5673,Paul Thomas Anderson,1155010829 +53405,6385,Overrated,1155353701 +53405,6709,Robert Rodriguez,1155161009 +53405,6953,Nonlinear,1155162309 +53405,7318,way way way overrated,1155160982 +53405,8740,movielens top pick,1172291482 +53405,8958,almost too long,1155162241 +53405,8958,overrated,1155162228 +53405,26082,movielens top pick,1172291505 +53405,67087,Jason Segel,1242327866 +53405,67087,Paul Rudd,1242327862 +53405,67408,3D,1242327947 +53405,67408,Animation,1242327950 +53405,67408,Seth Rogen,1242327979 +53405,67408,Will Arnett,1242327966 +53405,67695,Anna Faris,1242327925 +53405,67695,Bad direction,1242327894 +53405,67695,Jody Hill,1242327928 +53405,67695,Seth Rogen,1242327899 +53405,68205,Amy Smart,1242328755 +53405,68205,Jason Statham,1242328751 +53405,68358,action,1242327815 +53405,68358,adventure,1242327818 +53405,68358,remake better than original version,1242327848 +53405,68358,Star Trek,1242327808 +53405,68358,time travel,1242327833 +53409,1199,Trilogy of the Imagination,1163220043 +53409,2968,Gilliam,1163220138 +53409,2968,Trilogy of the Imagination,1163220039 +53409,4467,Trilogy of the Imagination,1163220065 +53409,4911,Gilliam,1163220167 +53409,5909,Takashi Miike,1163219591 +53409,47465,Gilliam,1163220186 +53419,7153,The third part of the best movie ever!!!!,1140042289 +53436,922,Billy Wilder,1159972840 +53436,3435,Wilder,1159972783 +53436,5618,fantasy,1159972649 +53436,8874,horror,1234192996 +53436,55830,well intentioned,1296347157 +53444,858,classic,1434711668 +53444,858,Mafia,1434711660 +53444,858,organized crime,1434711665 +53444,7153,fantasy,1434711706 +53444,7153,multiple storylines,1434711697 +53453,111384,crime,1445815546 +53453,111384,revenge,1445815542 +53453,113862,great soundtrack,1445815616 +53453,113862,stylized,1445815814 +53453,113862,unexplained,1445815620 +53463,6218,India,1159200275 +53477,10,Bond,1157948810 +53477,6934,virtual reality,1157948828 +53481,260,sci-fi,1441426894 +53481,260,space adventure,1441426904 +53486,260,Science Fiction,1437730170 +53486,260,space,1437730176 +53489,6957,black comedy,1262591703 +53489,6957,Christmas,1262591708 +53489,6957,heist,1262591711 +53495,7502,steven spielberg,1450654734 +53495,7502,violence,1450654783 +53495,7502,World War II,1450654764 +53495,58559,action,1450654695 +53495,58559,Batman,1450654683 +53495,58559,Christian Bale,1450654688 +53495,58559,violence,1450654699 +53495,92259,based on a true story,1450654931 +53495,92259,comedy,1450654937 +53495,92259,French,1450654921 +53495,92259,french comedy,1450654925 +53495,92259,friendship,1450654917 +53495,135133,violence,1450654877 +53496,260,acao,1430685592 +53496,260,aventura,1430685596 +53496,260,jedi,1430685582 +53496,260,starwars,1430685570 +53540,52,Mira Sorvino,1446961515 +53540,58,beautifully filmed,1446959344 +53540,58,italian bittersweet romance,1446959337 +53540,428,coming of age,1446959436 +53540,428,Robert De Niro,1446959430 +53540,1077,slapstick,1446959999 +53540,1077,social commentary,1446960013 +53540,1077,Woody Allen,1446959978 +53540,1193,emotional,1446959770 +53540,1193,jack nicholson,1446959766 +53540,1193,powerful ending,1446959781 +53540,1193,social satire,1446959778 +53540,1216,Italian,1446959363 +53540,1231,astronauts,1446959575 +53540,1231,Great Music Score,1446959601 +53540,1231,true story,1446959578 +53540,1302,inspirational,1446962095 +53540,1302,Kevin Costner,1446962062 +53540,1513,guilty pleasure,1446961557 +53540,1513,high school,1446961551 +53540,1513,Janeane Garofalo,1446961554 +53540,1513,Lisa Kudrow,1446961575 +53540,1513,Mira Sorvino,1446961565 +53540,1513,unlikely favorites,1446961582 +53540,2858,bittersweet,1446960445 +53540,2858,dark comedy,1446960463 +53540,2858,Nudity (Topless),1446960440 +53540,2858,powerful ending,1446960455 +53540,2858,sexuality,1446960461 +53540,2915,notable music,1446960992 +53540,2915,teen movie,1446960959 +53540,3168,classic,1446960889 +53540,3168,Jack Nicholson,1446960877 +53540,3168,notable soundtrack,1446960880 +53540,3168,social commentary,1446960884 +53540,3421,classic,1446960097 +53540,3812,vaguely embarrassing 70s take on sex,1446961755 +53540,3812,Woody Allen,1446961757 +53540,4816,David Bowie,1446960258 +53540,4816,mindless one liners,1446960266 +53540,5267,inspirational,1446962048 +53540,5673,bittersweet,1446960376 +53540,5673,Philip Seymour Hoffman,1446960381 +53540,5673,weird,1446960392 +53540,5715,Great Music Score,1446959555 +53540,5715,Rick Wakeman,1446959536 +53540,5796,great score,1446961665 +53540,5796,original score,1446961679 +53540,6565,inspirational,1446960673 +53540,6565,overcoming adversity,1446960764 +53540,6565,true story,1446960671 +53540,27002,NASA,1446959101 +53540,27002,space,1446959086 +53540,27002,Tom Hanks,1446959095 +53540,27002,true story,1446959081 +53540,33660,inspirational,1446960695 +53540,33660,overcoming adversity,1446960735 +53540,33660,true story,1446960692 +53540,43396,Anthony Hopkins,1446960783 +53540,43396,based on a true story,1446960799 +53540,43396,dreams,1446960795 +53540,43396,true story,1446960787 +53540,46970,Sacha Baron Cohen,1446960326 +53540,48516,Jack Nicholson,1446961024 +53540,48516,Leonardo DiCaprio,1446961022 +53540,48516,Mark Wahlberg,1446961032 +53540,48516,Martin Scorsese,1446961027 +53540,65230,drama and commedy,1446959934 +53540,65230,sad but good,1446959887 +53540,79132,Ellen Page,1446961187 +53540,79132,Leonardo DiCaprio,1446961197 +53540,86815,inspiring,1446960608 +53540,86815,surfing,1446960617 +53540,86815,true story,1446960612 +53540,91653,Animals,1446959846 +53540,91653,feel-good,1446959856 +53540,91653,Matt Damon,1446959853 +53540,91653,Scarlett Johansson,1446959851 +53540,97921,Jennifer Lawrence,1446960496 +53540,97921,Robert De Niro,1446960502 +53540,97921,serious topics,1446960522 +53540,134326,Italian,1446961365 +53540,134326,Ornella Muti,1446961338 +53540,144376,good acting,1446962346 +53540,144376,well edited,1446962354 +53543,204,nude beach,1286060662 +53543,204,satellite,1286060662 +53543,204,train,1286060663 +53543,471,business,1288926021 +53543,471,corruption,1288926032 +53543,471,Drama,1288926036 +53543,553,unfaithfulness,1318300305 +53543,648,action,1317178996 +53543,648,CIA,1317179059 +53543,648,heist,1317179562 +53543,648,mole,1317178989 +53543,648,prequel,1317179098 +53543,648,suspense,1317178994 +53543,648,train,1317179036 +53543,704,competition,1289678163 +53543,704,friendship,1289678294 +53543,704,Golden Dragon,1289678155 +53543,704,intrigue,1289678193 +53543,704,kickboxing,1289678176 +53543,704,New York,1289678106 +53543,704,orphans,1289678243 +53543,704,pirates,1289678128 +53543,704,stowaway,1289678121 +53543,704,street children,1289678260 +53543,704,street fighting,1289678302 +53543,704,Tibet,1289678090 +53543,704,underdog,1289678234 +53543,704,violence,1289678322 +53543,786,alligators,1288500272 +53543,786,animal attacks,1288500272 +53543,786,arms dealer,1288500272 +53543,786,backdoor,1288500271 +53543,786,defense contractors,1288500272 +53543,786,gay night club,1288500191 +53543,786,Mafia,1288500200 +53543,786,parachute,1288500272 +53543,786,sci-fi,1288500272 +53543,786,suicide,1288500184 +53543,786,treason,1288500272 +53543,786,Witness Protection,1288500174 +53543,838,comedy,1288926956 +53543,838,England,1288926145 +53543,838,Romance,1288926138 +53543,838,satire,1288926131 +53543,838,Victorian era,1288926160 +53543,930,Cary Grant,1300376187 +53543,930,espionage,1299736953 +53543,930,Ingrid Bergman,1300376189 +53543,930,romance,1299736875 +53543,930,seduction,1299737072 +53543,930,spy,1299736892 +53543,986,artist,1301197185 +53543,986,Canada,1301197143 +53543,986,car crash,1301197300 +53543,986,death,1301197152 +53543,986,divorce,1301197258 +53543,986,environmental,1301197239 +53543,986,environmentalist,1301197227 +53543,986,flying,1301197185 +53543,986,Geese,1301197148 +53543,986,hospital,1301197321 +53543,986,inspirational,1301197130 +53543,986,inventor,1301197185 +53543,986,New Zealand,1301197140 +53543,986,orphan,1301197156 +53543,986,sculpture,1301197358 +53543,986,separation,1301197267 +53543,986,showering,1301197436 +53543,986,teen,1301197385 +53543,986,ultralight,1301197205 +53543,1207,courtroom drama,1287795395 +53543,1207,disobedience,1287795382 +53543,1207,jury trial,1287795334 +53543,1207,lawyer,1287795456 +53543,1207,racism,1287795345 +53543,1207,single parent,1287795437 +53543,1207,southern,1287795421 +53543,1224,adapted from:play,1296588152 +53543,1224,agincourt,1296588304 +53543,1224,gritty,1296588459 +53543,1224,historical,1296588162 +53543,1224,patriotic,1296588406 +53543,1224,play adaptation,1296588368 +53543,1224,playwright:Shakespeare,1296588359 +53543,1224,politics,1296588177 +53543,1224,Shakespeare,1296588165 +53543,1224,stirring,1296588406 +53543,1224,war,1296588180 +53543,1234,30s,1304224087 +53543,1234,artistic,1304224248 +53543,1234,betting,1304224154 +53543,1234,con artists,1304224117 +53543,1234,depression,1304224122 +53543,1234,gambling,1304224140 +53543,1234,grifting,1304224203 +53543,1234,murder,1304224730 +53543,1234,nudity,1304224347 +53543,1234,planning,1304224384 +53543,1234,poker,1304224138 +53543,1234,setting:Chicago,1304224831 +53543,1234,team,1304224380 +53543,1234,theater - musical,1304224100 +53543,1234,twist ending,1304224838 +53543,1249,action,1312555607 +53543,1249,assassin,1312555610 +53543,1249,assassin-in-training,1312555616 +53543,1249,crime,1312555618 +53543,1249,drugs,1312555694 +53543,1249,French,1312555672 +53543,1249,murder,1312555701 +53543,1249,Nudity (Topless - Brief),1312555600 +53543,1249,realism,1312555630 +53543,1249,romance,1312555640 +53543,1249,Spy,1312555645 +53543,1687,assasin,1307848626 +53543,1687,cold hearted,1307848714 +53543,1687,disguise,1307848700 +53543,1687,IRA,1307848677 +53543,1687,revenge,1307848660 +53543,1687,russian mofia,1307848655 +53543,1727,unfaithfulness,1318300338 +53543,1833,autism,1307848222 +53543,1833,corruption,1307848838 +53543,1833,friendship,1307848382 +53543,1833,murder,1307848377 +53543,1833,protection,1307848365 +53543,1833,regrets,1307848345 +53543,1949,corruption,1289445697 +53543,1949,execution,1289445625 +53543,1949,Honor,1289445629 +53543,1949,intrigue,1289445675 +53543,1949,state religion,1289445719 +53543,1957,religious convictions,1287884836 +53543,2324,comedy,1318300817 +53543,2324,foreign,1318300831 +53543,2324,Holocaust,1318300790 +53543,2324,sad but good,1318300804 +53543,3519,assasination,1287795764 +53543,3519,Chetnik,1287795677 +53543,3519,Nudity (Topless),1287796406 +53543,3519,Partisans,1287795697 +53543,3519,Unrealistic,1287795871 +53543,3519,Yugoslavia,1287795657 +53543,3879,betrayal,1310319695 +53543,3879,Gambling Club,1310319525 +53543,3879,Hong Kong,1310319740 +53543,3879,Intrigue,1310319636 +53543,3879,New York,1310319577 +53543,3879,Nudity,1310319510 +53543,3879,over-the-top action,1310319678 +53543,3879,refugee,1310319660 +53543,3879,Sex Club,1310319540 +53543,3879,slavery,1310319722 +53543,3879,Special Operations,1310319436 +53543,3879,U.N.,1310319443 +53543,3879,United Nations,1310319452 +53543,3985,assassination,1309315952 +53543,3985,behind enemy lines,1309315889 +53543,3985,espionage,1309315914 +53543,3985,kidnapping,1309315881 +53543,3985,Paratroopers,1309315906 +53543,3985,redemption,1309316035 +53543,3985,romance,1309315924 +53543,3985,spies,1309316043 +53543,3985,SS,1309316058 +53543,3985,treason,1309315961 +53543,4046,Civil War,1286328958 +53543,4046,comedy,1286328958 +53543,4046,Romance,1286328958 +53543,4187,60s,1288658239 +53543,4187,Catholic,1288658217 +53543,4187,Chapel,1288658104 +53543,4187,Construction,1288658099 +53543,4187,drinking,1288658259 +53543,4187,God provides,1288658119 +53543,4187,kindness,1288658150 +53543,4187,Religious,1288658081 +53543,4187,Singing,1288658092 +53543,4187,slow,1288658308 +53543,4632,assasination plot,1288499993 +53543,4632,Berlin,1288499976 +53543,4632,cold war,1288499920 +53543,4632,escaped prisoner,1288500061 +53543,4632,intrigue,1288499933 +53543,4632,murder,1288500014 +53543,4632,Nazi,1288500039 +53543,4632,on the run,1288500089 +53543,5064,adapted from:book,1291528842 +53543,5064,based on a book,1291528846 +53543,5064,betrayal,1291528503 +53543,5064,infidelity,1291528670 +53543,5064,jealousy,1291528667 +53543,5064,prison,1291528493 +53543,5064,religion,1291528599 +53543,5064,religious overtones,1291528593 +53543,5064,revenge,1291528482 +53543,5064,tunnel escape,1291528618 +53543,5507,action sports,1287293857 +53543,5507,pole dancer,1287293912 +53543,5507,rock music,1287293923 +53543,5507,snowboard,1287294042 +53543,5507,terrorism,1287294020 +53543,5507,Vin Diesel,1287293833 +53543,5507,Whore,1287293989 +53543,5628,action,1307846723 +53543,5628,comedy,1307847242 +53543,5628,France,1307846729 +53543,5628,golf,1307847282 +53543,5628,intelligence,1307847272 +53543,5628,Japan,1307846726 +53543,5628,night club,1307847317 +53543,5628,Police,1307846732 +53543,5628,teenager,1307847251 +53543,5628,undercover,1307847093 +53543,5628,yakuza,1307846753 +53543,6777,courtroom,1300891629 +53543,6777,ethics,1300891694 +53543,6777,historical,1300891603 +53543,6777,legal defense,1300891639 +53543,6777,morality,1300891683 +53543,6777,patriotism,1300891616 +53543,6777,Politics,1300891587 +53543,6777,Post WWII,1300891575 +53543,6777,war,1300891565 +53543,6777,WWII,1300891570 +53543,6808,spies,1287795920 +53543,7159,Army Dental Corps,1290658733 +53543,7159,behind enemy lines,1290658839 +53543,7159,British,1290658722 +53543,7159,foolish,1290658794 +53543,7159,France,1290658741 +53543,7159,funny,1290658803 +53543,7159,personalities,1290658855 +53543,7159,witty,1290658815 +53543,7159,WWII,1290658713 +53543,7386,Hollywood artistic license,1287294286 +53543,7477,blizzard,1305735026 +53543,7477,drunkenness,1305735234 +53543,7477,FBI,1305734979 +53543,7477,gruesome,1305735354 +53543,7477,ice fishing,1305735250 +53543,7477,imposter,1305735299 +53543,7477,murder,1305735035 +53543,7477,overcoming own demons,1305735197 +53543,7477,police,1305734972 +53543,7477,psychiatric hospital,1305735334 +53543,7477,serial killer,1305735002 +53543,7477,thriller,1305735066 +53543,7477,Wyoming,1305734995 +53543,8591,1940s,1295067846 +53543,8591,1980s,1295067846 +53543,8591,action,1295067584 +53543,8591,cheesy,1295067577 +53543,8591,experimental,1295067620 +53543,8591,Navy,1295067599 +53543,8591,radar,1295067602 +53543,8591,romance,1295067587 +53543,8591,sci-fi,1295067554 +53543,8591,Special Effects,1295068082 +53543,8591,time travel,1295067638 +53543,8591,USN,1295067629 +53543,8591,World War II,1295067626 +53543,8982,Ben Tibber,1298960157 +53543,8982,Bulgaria,1298960147 +53543,8982,Communism,1298960494 +53543,8982,Europe,1298960687 +53543,8982,friendship,1298960260 +53543,8982,Growth,1298960289 +53543,8982,James Caviezel,1298960160 +53543,8982,Joan Plowright,1298960163 +53543,8982,Journey,1298960264 +53543,8982,Post WWII,1298960243 +53543,8982,work camp,1298960255 +53543,26760,circus,1286924983 +53543,26760,drive,1286924933 +53543,26760,guts,1286924933 +53543,26760,rebellion,1286924952 +53543,26760,romance,1286924975 +53543,31116,Academy Award,1306686689 +53543,31116,Appalachian,1306686719 +53543,31116,drinking,1306686651 +53543,31116,drunkenness,1306686651 +53543,31116,famer,1306686708 +53543,31116,Gary Cooper,1306686729 +53543,31116,hero,1306686626 +53543,31116,pacifist,1306686699 +53543,31116,religious,1306686670 +53543,31116,WWI. pacificsm,1306686621 +53543,31309,immoral,1285012411 +53543,32017,children,1287292998 +53543,32017,family,1287292827 +53543,32017,fish out of water,1287292852 +53543,32017,growth,1287293022 +53543,32017,ninja,1287292921 +53543,32017,Personalities,1287292970 +53543,32017,Vin Diesel,1287292786 +53543,36519,car chase,1333385177 +53543,36519,grand theft auto,1333385168 +53543,36519,mugging,1333385155 +53543,40414,Christmas,1301197922 +53543,40414,World War I,1301197917 +53543,48600,based on a book,1287294222 +53543,48600,Hollywood artistic license,1287294194 +53543,48600,romantic,1287294202 +53543,48711,christian,1287293479 +53543,48711,coach,1287293603 +53543,48711,determination,1287293657 +53543,48711,growth,1287293585 +53543,48711,independent film,1287293523 +53543,48711,infertility,1287293575 +53543,48711,private school,1287293542 +53543,48711,teacher,1287293608 +53543,49524,based on a book,1287294111 +53543,49524,Biblical,1287294107 +53543,49524,Christianity,1287294105 +53543,49524,Christmas,1287294101 +53543,49524,Jesus,1287294114 +53543,49524,Jesus Christ,1287294116 +53543,49524,Nativity,1287294125 +53543,52591,Assassin,1293510747 +53543,52591,camping,1293510765 +53543,52591,escaped prisoner,1293510818 +53543,52591,father/son,1293510877 +53543,52591,nudity (rear),1293510754 +53543,52591,predictable,1293511166 +53543,52591,romance,1293510853 +53543,52591,team,1293510894 +53543,57353,diamonds,1307847694 +53543,57353,heist,1307847638 +53543,57353,interview,1307847716 +53543,57353,news story,1307847710 +53543,57353,theif,1307847642 +53543,59295,christianity,1287885670 +53543,59295,creationism,1287885625 +53543,59295,evolution,1287885700 +53543,59295,intelligent design,1287885680 +53543,59295,movie to see,1287885687 +53543,59295,religion,1288278996 +53543,59295,science,1287885715 +53543,64114,anger,1287293405 +53543,64114,Christian,1287293332 +53543,64114,faith,1287293376 +53543,64114,firefighters,1287293360 +53543,64114,flirting,1287293432 +53543,64114,growth,1287293369 +53543,64114,relationships,1287293387 +53543,64114,religion,1287293322 +53543,64983,assassination,1294726685 +53543,64983,based on a true story,1294726662 +53543,64983,coup,1294726996 +53543,64983,execution,1294726718 +53543,64983,Germany,1294727065 +53543,64983,history,1294726669 +53543,64983,leadership,1294726736 +53543,64983,resistance movement,1294726917 +53543,64983,sad,1294726728 +53543,64983,tragic,1294727087 +53543,64983,Treason,1294726656 +53543,64983,true story,1294727082 +53543,64983,World War II,1294727058 +53543,66198,arms dealer,1287292648 +53543,66198,banking,1287292237 +53543,66198,corruption,1287292749 +53543,66198,cover up,1287292601 +53543,66198,international,1287292338 +53543,66198,justice,1287292561 +53543,66198,swearing,1287292221 +53543,66198,vigilante,1287292301 +53543,66385,hero,1301197879 +53543,66385,Marine Corps,1301197887 +53543,66385,respect,1301197875 +53543,72258,dog,1287293802 +53543,72258,drunk,1287293813 +53543,72258,police,1287293807 +53543,72949,anger,1287293234 +53543,72949,Christian,1287293088 +53543,72949,drought,1287293175 +53543,72949,drunkenness,1287293219 +53543,72949,faith,1287293051 +53543,72949,family,1287293059 +53543,72949,farming,1287293077 +53543,72949,growth,1287293055 +53543,72949,hope,1287293298 +53543,72949,love,1287293291 +53543,72949,miracles,1301250810 +53543,72949,preaching,1287293081 +53543,72949,redemption,1301250821 +53543,72949,Scottish,1287293137 +53543,72949,South Africa,1287293071 +53543,73321,Bible,1310557896 +53543,73321,cannibalism,1310601611 +53543,73321,Christianity,1310557903 +53543,73321,community,1310601515 +53543,73321,drought,1310558045 +53543,73321,post war,1310601561 +53543,73321,post-apocalyptic,1310558041 +53543,73321,rape (implied),1310601590 +53543,73321,religious,1310557920 +53543,73321,survival,1310558060 +53543,73321,thought provoking,1310557944 +53543,73321,warlord,1310601902 +53543,74580,action,1306678016 +53543,74580,babysitting,1306678053 +53543,74580,children,1306678042 +53543,74580,Jackie Chan,1306678034 +53543,74580,relationships,1306678206 +53543,74580,Russians,1306678191 +53543,74580,spies,1306678045 +53543,74851,blood,1307847778 +53543,74851,drugs,1307847782 +53543,74851,espionage,1307847552 +53543,74851,intelligence,1307847530 +53543,74851,paris,1307847493 +53543,74851,romance,1307847753 +53543,74851,sad ending,1307847762 +53543,74851,unorthodox,1307847516 +53543,74851,violence,1307847503 +53543,77658,religion,1301197534 +53543,77951,assasination,1289311886 +53543,77951,execution,1289311916 +53543,77951,Germany,1289311902 +53543,77951,hanging,1289311921 +53543,77951,intelligence operations,1289311986 +53543,77951,Lutheran,1289311880 +53543,77951,pastor,1289311958 +53543,77951,resistance movement,1289311942 +53543,77951,romance,1289311860 +53543,77951,WWII,1289311872 +53543,79293,action,1305735863 +53543,79293,betrayal,1305735840 +53543,79293,cia,1305735843 +53543,79293,espionage,1305735846 +53543,79293,North Korea,1305736164 +53543,79293,Russians,1305736108 +53543,79293,spy,1305735870 +53543,79293,thriller,1305735858 +53543,79293,torture,1305736146 +53543,79578,advertising,1301197776 +53543,79578,executive,1301197791 +53543,79578,Helsinki,1301197749 +53543,79578,naturalist,1301197760 +53543,79578,Wilderness,1301197756 +53543,81782,based on a true story,1305735597 +53543,81782,Denzel Washington,1305735587 +53543,81782,family issues,1305736194 +53543,81782,Pennsylvania,1305735625 +53543,81782,trains,1305735615 +53543,81782,union,1305736212 +53554,260,fantasy that can be hoped to be real,1445019241 +53554,260,good mix of martial arts and technology,1445019223 +53561,50440,Killer Creature,1302594482 +53569,61160,encouraging,1312519696 +53569,61160,movies about love,1312519696 +53569,61160,violent silly,1312519696 +53596,953,Christmas,1428696738 +53596,953,imdb top 250,1428696753 +53632,4002,Sir John Candy,1212274817 +53632,4010,Sir John Candy,1212274753 +53699,208,Kevin Costner,1245744995 +53699,337,Johnny Depp,1271120919 +53699,837,clever,1273512065 +53699,837,dark comedy,1273512059 +53699,1136,parody,1271899810 +53699,1136,satirical,1271899808 +53699,1246,inspirational,1368862351 +53699,2572,Heath Ledger,1271121141 +53699,2580,black comedy,1273427922 +53699,2858,dark comedy,1271120823 +53699,2858,sexuality,1271120820 +53699,2858,social commentary,1271120815 +53699,2858,thought-provoking,1271120816 +53699,2997,Catherine Keener,1275410949 +53699,2997,dark comedy,1275410893 +53699,2997,surreal,1275410887 +53699,3418,Brad Pitt,1406174603 +53699,3418,feminism,1406174601 +53699,3418,Geena Davis,1414212950 +53699,3418,Susan Sarandon,1414212928 +53699,4014,Johnny Depp,1245745126 +53699,4014,Quirky,1245745128 +53699,4033,Kevin Costner,1245745076 +53699,4454,claymation,1274806671 +53699,4454,imagination,1274806662 +53699,4454,social commentary,1274806659 +53699,4641,dark comedy,1406175428 +53699,4878,psychology,1271120883 +53699,4878,surreal,1271120885 +53699,4878,thought-provoking,1271120891 +53699,4973,beautifully filmed,1245745157 +53699,4973,quirky,1245745169 +53699,4973,stylized,1271120468 +53699,4973,visually appealing,1271120480 +53699,4979,dark comedy,1274806048 +53699,4979,quirky,1274806053 +53699,4979,stylized,1274806050 +53699,5611,Heath Ledger,1271121085 +53699,6711,Amazing Cinematography,1286584816 +53699,6711,atmospheric,1286584818 +53699,6711,poignant,1286584822 +53699,7151,good soundtrack,1245745653 +53699,7151,visually appealing,1259192395 +53699,7361,philosophy,1271898163 +53699,7361,thought-provoking,1271898160 +53699,8784,Natalie Portman,1271898316 +53699,8784,psychology,1271898324 +53699,8784,quirky,1271898322 +53699,8784,romance,1271898326 +53699,40278,Jake Gyllenhaal,1271120858 +53699,51662,male nudity,1245744910 +53699,54190,Beatles,1245745834 +53699,56367,cult film,1406175473 +53699,56367,excellent script,1406175471 +53699,56367,great soundtrack,1406175469 +53699,56715,black comedy,1371142356 +53699,59126,atheism,1252208738 +53699,59126,Bill Maher,1252208735 +53699,59126,Documentary,1252208730 +53699,59126,intelligent,1252208741 +53699,59126,thought-provoking,1252208727 +53699,60397,Meryl Streep,1245788010 +53699,66665,great soundtrack,1271120781 +53699,66665,philosophical,1271120759 +53699,66665,Sam Mendes,1249003694 +53699,67267,witty,1252209045 +53699,69757,artistic,1271121172 +53699,69757,intelligent,1271121175 +53699,72605,Jake Gyllenhaal,1271120749 +53699,72605,Natalie Portman,1271120743 +53708,117881,beautiful,1434125379 +53708,117881,motivated,1434125379 +53708,117881,very moving,1434125379 +53715,58559,Batman,1217168676 +53725,50,twist ending,1273869680 +53735,68194,Leeds,1279554458 +53745,82463,Mike Leigh,1299869801 +53756,260,epic,1421105821 +53756,260,exciting,1421105821 +53756,260,galactic,1421105821 +53757,2959,edward norton,1363566555 +53757,2959,long,1363566563 +53757,77307,disturbing,1363566670 +53757,78039,sad,1363567621 +53762,296,classic,1313043636 +53762,296,dark comedy,1313043601 +53762,296,drugs,1313043636 +53762,296,multiple storylines,1313043636 +53762,296,organized crime,1313043636 +53762,296,quentin tarantino,1313043636 +53762,296,quirkey,1313043636 +53762,318,classic,1313043545 +53762,318,imdb top 250,1313043584 +53762,318,reflective,1313043578 +53762,318,thought-provoking,1313043562 +53762,318,twist ending,1313043567 +53762,8533,romance,1313043798 +53762,8533,ryan gosling,1313043798 +53762,8981,infidelity,1313044508 +53762,8981,romance,1313044508 +53762,8981,sex,1313044508 +53762,47423,addiction,1313043692 +53762,47423,clever lines,1313043692 +53762,47423,drugs,1313043692 +53762,47423,independent film,1313043692 +53762,47423,ryan gosling,1313043691 +53762,47423,slow,1313043703 +53762,47423,unresolved,1313043703 +53762,60950,artists,1313043753 +53762,60950,friendship,1313043754 +53762,60950,philosophical,1313043753 +53762,60950,romance,1313043754 +53762,60950,sexuality,1313043754 +53762,74573,adam scott,1313044324 +53762,74573,black comedy,1313044344 +53762,74573,brittany snow,1313044319 +53762,74573,infidelity,1313044334 +53762,74573,love triangles,1313044352 +53762,74573,sex,1313044356 +53776,37731,england,1298957353 +53797,32,Post apocalyptic,1241386328 +53797,32,time travel,1241386328 +53797,76,post apocalyptic,1144528033 +53797,1175,Post apocalyptic,1241386347 +53797,1748,Post apocalyptic,1241386342 +53797,2117,Post apocalyptic,1241386330 +53797,2571,post apocalyptic,1144528108 +53797,3264,dark comedy,1241386337 +53797,3264,vampire,1241386337 +53797,3702,post apocalyptic,1241386356 +53797,3704,post apocalyptic,1241386357 +53797,5219,video game adaptation,1208517327 +53797,5219,zombies,1208517323 +53797,6365,Post apocalyptic,1144526865 +53797,6502,Post apocalyptic,1241386331 +53797,6934,Post apocalyptic,1144526875 +53797,8361,Post apocalyptic,1241386346 +53797,8810,Alien,1241386333 +53797,8874,Zombies,1144526254 +53797,37386,Post apocalyptic,1144526871 +53797,45447,adventure,1241386340 +53797,47997,Fun scifi,1172772427 +53797,54259,fairy tale romance,1195513862 +53797,55553,Zombies,1241386336 +53797,56174,Post apocalyptic,1241386349 +53797,56174,post-apocalyptic,1241386388 +53797,56174,Zombie dogs,1241386378 +53797,59615,adventure,1241945527 +53797,59615,Aliens,1241945512 +53797,59615,indiana jones,1241945534 +53797,59615,ridiculous end,1241945543 +53797,59615,silly,1241945507 +53797,60069,Post apocalyptic,1226265638 +53803,8836,remake of a french film,1167732804 +53803,40629,Not as good as miniseries,1206299367 +53821,1393,famous line,1445358232 +53821,1722,James Bond,1445358288 +53829,260,Harrison Ford,1441734515 +53829,260,R2-D2,1441734497 +53838,112556,clever,1421592549 +53838,112556,intense,1421592549 +53838,112556,psychothriller,1421592549 +53848,198,sci-fi,1187654954 +53848,546,comedy,1187655249 +53848,2424,romance,1187654961 +53848,3033,comedy,1187654946 +53848,3755,drama,1187654975 +53848,3785,comedy,1187655004 +53848,4367,Adventure,1187655135 +53848,4896,fantasy,1187654925 +53848,5618,Fantasy,1187655025 +53848,6373,comedy,1187655149 +53848,6378,action,1187655015 +53848,7147,fantasy,1187654994 +53877,2395,sic transit gloria,1207512222 +53910,225,Michael Crichton,1139005318 +53910,303,Russell Crowe,1142187253 +53910,338,Russell Crowe,1142187257 +53910,480,Michael Crichton,1139005210 +53910,517,Michael Crichton,1139005345 +53910,736,Michael Crichton,1139005286 +53910,1617,Russell Crowe,1142187244 +53910,1779,Michael Crichton,1139005145 +53910,2826,Michael Crichton,1139005250 +53910,2889,Russell Crowe,1142187266 +53910,3006,Russell Crowe,1142187241 +53910,3578,Russell Crowe,1142187237 +53910,3998,Russell Crowe,1142187263 +53910,4995,Russell Crowe,1142187216 +53910,6303,Michael Crichton,1139005399 +53910,6947,Russell Crowe,1142187226 +53910,6959,Michael Crichton,1139005183 +53910,33660,Russell Crowe,1142187234 +53912,6957,want to see again,1180250876 +53937,115713,AI,1443680960 +53937,115713,sci-fi,1443680965 +53937,135887,animated,1443680935 +53937,135887,comedy,1443680939 +54010,546,Action,1185858929 +54010,546,Adventure,1185858929 +54010,546,Fantasy,1185861343 +54010,546,Game,1185861343 +54010,546,sci-fi,1185861343 +54010,3668,Drama,1185859117 +54010,3668,Romance,1185859117 +54010,4975,Drama,1185857454 +54010,4975,Romance,1185857454 +54010,4975,Thriller,1185857454 +54010,5254,Action,1185859014 +54010,5254,Thriller,1185859014 +54010,38388,Drama,1185860473 +54010,38388,Soccer,1185860473 +54010,45499,Action,1185859095 +54015,260,"space opera, science fiction, serial",1435085873 +54015,318,drama,1435085938 +54015,318,great ending,1435085962 +54015,318,Morgan Freeman,1435085959 +54015,318,Stephen King,1435085955 +54015,858,Al Pacino,1435085990 +54015,858,classic,1435086000 +54015,858,Mafia,1435085985 +54015,858,Marlon Brando,1435085988 +54015,858,organized crime,1435085993 +54026,260,Science Fiction,1441383885 +54026,260,story,1441383896 +54049,260,awesome,1436833506 +54049,260,awesome soundtrack,1436833510 +54049,260,Cool,1436833527 +54059,33880,trash,1198459093 +54059,39402,gay,1254935950 +54059,48082,crap,1173654118 +54059,54503,LMAO,1198799872 +54122,162,qube,1137678065 +54122,608,qube,1137678032 +54122,1299,photography,1137264112 +54122,4027,qube,1137678121 +54122,4641,qube,1137678009 +54122,5528,photography,1137689799 +54122,6380,qube,1137678604 +54122,6672,photography,1137689886 +54122,6945,qube,1147532512 +54122,27878,photography,1137678179 +54122,27878,qube,1147532496 +54122,30707,qube,1137678280 +54122,30749,qube,1137678444 +54122,33166,qube,1137678088 +54122,34542,qube,1147532476 +54135,1,Pixar,1314562155 +54135,1,witty,1314562184 +54135,32,Brad Pitt,1314561968 +54135,32,remake,1314561985 +54135,32,time travel,1314561971 +54135,32,twist ending,1314561976 +54135,47,Brad Pitt,1329602121 +54135,47,disturbing,1329602131 +54135,47,Kevin Spacey,1329602170 +54135,47,religion,1329602137 +54135,110,slow,1314639908 +54135,153,Jim Carrey,1314639325 +54135,153,Val Kilmer,1314639328 +54135,231,goofy,1322948325 +54135,231,Jim Carrey,1322948321 +54135,231,road trip,1322948347 +54135,231,stupid,1322948323 +54135,231,toilet humor,1322948337 +54135,260,Harrison Ford,1314638351 +54135,260,Star Wars,1314638360 +54135,296,dark comedy,1314562356 +54135,296,drugs,1314562365 +54135,296,nonlinear,1314562374 +54135,296,obfuscated,1314562430 +54135,296,Quentin Tarantino,1314562355 +54135,296,Samuel L. Jackson,1314562357 +54135,344,very funny,1314638798 +54135,356,bittersweet,1314562678 +54135,356,comedy,1314562680 +54135,356,inspirational,1314562682 +54135,367,hilarious,1314562616 +54135,380,Arnold Schwarzenegger,1314639394 +54135,380,espionage,1314639400 +54135,380,funny,1314639403 +54135,380,shallow plot,1314639413 +54135,589,Arnold Schwarzenegger,1314561697 +54135,589,computers,1314561704 +54135,589,robots,1314561706 +54135,589,Suspense,1314561737 +54135,590,bittersweet,1314562805 +54135,590,culture clash,1314562799 +54135,590,historical,1314562803 +54135,592,Jack Nicholson,1325172839 +54135,592,superhero,1325172855 +54135,592,Tim Burton,1325172842 +54135,780,predictable,1314639887 +54135,924,slow,1314639824 +54135,924,Stanley Kubrick,1314639822 +54135,1080,British,1328170558 +54135,1080,controversial,1328170583 +54135,1080,hilarious,1328170560 +54135,1080,Nudity (Full Frontal),1328170569 +54135,1080,parody,1328170562 +54135,1136,hilarious,1314638426 +54135,1136,slow,1314638436 +54135,1148,claymation,1314638820 +54135,1148,hilarious,1314638832 +54135,1196,Harrison Ford,1314638327 +54135,1196,Star Wars,1314638339 +54135,1206,cult film,1314638604 +54135,1206,disturbing,1314638598 +54135,1206,psychological,1314638603 +54135,1206,Stanley Kubrick,1314638594 +54135,1210,Harrison Ford,1314638315 +54135,1210,Star Wars,1314638305 +54135,1220,car chase,1314638670 +54135,1220,classic,1314638673 +54135,1220,notable soundtrack,1314638668 +54135,1220,rhythm & blues,1314638666 +54135,1240,Arnold Schwarzenegger,1314562194 +54135,1240,robots,1314562201 +54135,1240,romance,1314562208 +54135,1258,disturbing,1314638927 +54135,1258,Jack Nicholson,1314638913 +54135,1258,psychological,1314638921 +54135,1258,Stanley Kubrick,1314638922 +54135,1270,time travel,1314562872 +54135,1291,Harrison Ford,1314639092 +54135,1291,Nazis,1314639097 +54135,1293,political,1314562666 +54135,1391,Jack Nicholson,1314639975 +54135,1391,stupid,1314639979 +54135,1573,John Travolta,1314639797 +54135,1573,Nicolas Cage,1314639796 +54135,1573,ridiculous,1314639804 +54135,1732,bowling,1314562851 +54135,1732,cult film,1314562827 +54135,1732,funny,1314562824 +54135,1732,lazy,1314562846 +54135,2011,time travel,1314562867 +54135,2012,time travel,1314562859 +54135,2115,action,1314639076 +54135,2115,adventure,1314639078 +54135,2115,Harrison Ford,1314639072 +54135,2294,dreamworks,1314639930 +54135,2294,funny,1314639923 +54135,2355,Pixar,1314639285 +54135,2571,martial arts,1314562595 +54135,2571,philosophical,1314562601 +54135,2571,virtual reality,1314562600 +54135,2628,Star Wars,1314639507 +54135,2959,Brad Pitt,1314562697 +54135,2959,psychology,1314562699 +54135,2959,twist ending,1314562700 +54135,2959,violence,1314562714 +54135,2997,black comedy,1328170604 +54135,2997,dark comedy,1328170607 +54135,2997,John Malkovich,1314561887 +54135,2997,surrealism,1314561838 +54135,3114,Pixar,1314562106 +54135,3827,Clint Eastwood,1314639612 +54135,3827,slow,1314639608 +54135,4226,nonlinear,1314561561 +54135,4226,psychology,1314561564 +54135,4226,twist ending,1314561573 +54135,4306,brainless,1314639877 +54135,4306,funny,1314639871 +54135,4701,Jackie Chan,1314638934 +54135,4701,martial arts,1314638937 +54135,4886,Comedy,1314638981 +54135,4886,Pixar,1314638985 +54135,4896,harry potter,1314639739 +54135,4993,epic,1314639716 +54135,4993,slow,1314639714 +54135,5218,annoying,1314639896 +54135,5349,action,1314639594 +54135,5349,comic book,1314639575 +54135,5349,predictable,1314639601 +54135,5378,Natalie Portman,1314638894 +54135,5378,Star Wars,1314638900 +54135,5388,Al Pacino,1314638465 +54135,5388,Christopher Nolan,1314638459 +54135,5388,corruption,1314638469 +54135,5388,institutions,1314638476 +54135,5388,remake,1314638462 +54135,5445,predictable,1314639629 +54135,5445,time travel,1314639673 +54135,5618,dreamlike,1314562226 +54135,5618,Hayao Miyazaki,1314562221 +54135,5618,Studio Ghibli,1314562219 +54135,5816,harry potter,1314639767 +54135,5816,predictable,1314639776 +54135,5952,ensemble cast,1314639704 +54135,5952,epic,1314639694 +54135,5971,Cute,1314561756 +54135,5971,feel good movie,1314561769 +54135,5971,Hayao Miyazaki,1314561766 +54135,5971,slow,1314561774 +54135,5971,Studio Ghibli,1314561759 +54135,5989,con artists,1316109690 +54135,5989,Leonardo DiCaprio,1316109683 +54135,6365,alternate reality,1314639009 +54135,6365,cyberpunk,1314639006 +54135,6365,virtual reality,1314639000 +54135,6537,action,1314638251 +54135,6537,android(s)/cyborg(s),1314638262 +54135,6537,Arnold Schwarzenegger,1314638247 +54135,6537,Nudity (Rear),1314640202 +54135,6537,Nudity (Topless),1314640198 +54135,6934,Philosophical,1314638448 +54135,6934,virtual reality,1314638445 +54135,7153,ensemble cast,1314639061 +54135,7153,epic,1314639055 +54135,7153,fantasy,1314639057 +54135,8360,brainless,1314639844 +54135,8360,funny,1314639835 +54135,8368,Daniel Radcliffe,1314638528 +54135,8368,Emma Watson,1314638525 +54135,8368,harry potter,1314638521 +54135,8526,martial arts,1314639812 +54135,8914,complicated plot,1314561505 +54135,8914,Deep,1314561510 +54135,8914,intellectual,1314561512 +54135,8914,mindfuck,1314561517 +54135,8914,slow,1314561524 +54135,8914,time travel,1314561514 +54135,8961,animation,1314639122 +54135,8961,Pixar,1314639118 +54135,33493,good versus evil,1314638389 +54135,33493,Star Wars,1314638379 +54135,33679,Angelina Jolie,1314638968 +54135,33679,Brad Pitt,1314638970 +54135,33679,espionage,1314561398 +54135,33679,funny,1314561401 +54135,33679,Kick-Butt Women,1314561432 +54135,33679,spies,1314561389 +54135,33794,atmospheric,1314638779 +54135,33794,philosophical,1314638789 +54135,36529,arms dealer,1314639018 +54135,36529,corruption,1314639038 +54135,36529,Nicolas Cage,1314639019 +54135,37386,Charlize Theron,1314639989 +54135,37386,predictable,1314639994 +54135,40815,emma watson,1314639755 +54135,40815,Good versus evil,1314639748 +54135,40815,harry potter,1314639746 +54135,44191,Natalie Portman,1314639368 +54135,44191,politics,1314639369 +54135,44191,social commentary,1314639371 +54135,48516,corruption,1314638590 +54135,48516,Leonardo DiCaprio,1314638573 +54135,48780,based on a book,1314562470 +54135,48780,Christian Bale,1314562458 +54135,48780,enigmatic,1314562481 +54135,48780,Michael Caine,1314562461 +54135,48780,nonlinear,1314562456 +54135,48780,romance,1314562489 +54135,48780,Scarlett Johansson,1314562531 +54135,48780,twist ending,1314562455 +54135,50872,animation,1314562338 +54135,50872,pixar,1314562333 +54135,50872,rats,1314562346 +54135,50872,talking animals,1314562343 +54135,51662,atmospheric,1314639347 +54135,51662,hilarious,1314639355 +54135,51662,stylized,1314639344 +54135,54001,Emma Watson,1314639130 +54135,54001,harry potter,1314639133 +54135,58559,Madness,1314562767 +54135,58559,vigilante,1314562772 +54135,60069,beautiful scenery,1314562078 +54135,60069,inspirational,1314562072 +54135,60069,robots,1314562064 +54135,60684,cold war,1314562035 +54135,60684,comic book,1314562043 +54135,65642,murder,1314290345 +54135,65642,Not enough complicated,1314290318 +54135,65642,time travel,1314290324 +54135,68157,Brad Pitt,1314638480 +54135,68157,Nazis,1314638496 +54135,68157,Quentin Tarantino,1314638486 +54135,68157,World War II,1314638501 +54135,68237,bad pacing,1314562554 +54135,68237,technology,1314562544 +54135,68237,twist ending,1314562542 +54135,68954,bittersweet,1314562893 +54135,68954,Pixar,1314562878 +54135,68954,predictable,1314562880 +54135,69844,Emma Watson,1314639217 +54135,69844,harry potter,1314639169 +54135,69844,high school,1314639221 +54135,70286,evil humans,1314562735 +54135,70286,mockumentary,1314562737 +54135,70286,role reversal,1314562727 +54135,70286,social commentary,1314562740 +54135,73321,Bible,1314638614 +54135,73321,Christianity,1314638619 +54135,73321,future,1314638653 +54135,73321,post-apocalyptic,1314638630 +54135,73321,twist ending,1314638650 +54135,74458,Leonardo DiCaprio,1314638404 +54135,74458,psychological,1314638406 +54135,74458,twist ending,1314638410 +54135,78499,bittersweet,1314561475 +54135,78499,children,1314561492 +54135,78499,franchise,1314561481 +54135,78499,visually appealing,1314561465 +54135,79132,action,1314561680 +54135,79132,ensemble cast,1314561669 +54135,79132,thought-provoking,1314561615 +54135,79132,visually appealing,1314561613 +54135,81834,Daniel Radcliffe,1314638561 +54135,81834,Emma Watson,1314638547 +54135,81834,Harry Potter,1314638534 +54135,81847,fairy tale,1314638287 +54135,81847,songs,1314638280 +54135,81847,visually appealing,1314638298 +54135,85414,dumbed down,1322160731 +54135,85414,Jake Gyllenhaal,1322160799 +54135,85414,mindfuck,1322160738 +54135,85414,parallel universe,1322160740 +54135,85414,plot holes,1322160742 +54135,85414,time loop,1322160757 +54135,86332,mindless fun,1314638866 +54135,86332,Natalie Portman,1314638854 +54135,86835,cliche,1315491386 +54135,87192,aliens,1325975121 +54135,87192,drugs,1325975174 +54135,87192,oldschoolish,1325975124 +54135,87192,rap,1325975147 +54135,88125,atmospheric,1325172824 +54135,88125,Daniel Radcliffe,1325172809 +54135,88125,Emma Watson,1325172803 +54135,88125,unintentionally funny ending,1325172830 +54135,88744,realistic,1314562268 +54147,2858,reflective,1441725080 +54147,2858,thought-provoking,1441725072 +54147,8874,parody,1441725110 +54161,112183,magical realism,1423499080 +54166,260,Epic,1433262577 +54166,260,Good music,1433262550 +54166,260,Inventive,1433262561 +54173,8014,bittersweet,1181607015 +54173,52604,adultery,1182383501 +54173,52604,courtroom drama,1182383519 +54173,52604,murder,1182383504 +54173,52604,murder mystery,1182383517 +54188,296,action,1438040810 +54188,296,golden watch,1438040817 +54188,296,nonlinear,1438040848 +54212,1682,Jim Carrey,1283366754 +54212,36529,Nicolas Cage,1283366788 +54212,46723,multiple storylines,1284215138 +54251,208,apocalypse,1249785345 +54251,208,big budget,1249785342 +54251,208,gyrocopter,1249785358 +54251,208,Kevin Costner,1278828065 +54251,208,post-apocalyptic,1249785361 +54251,208,steampunk,1249785364 +54251,208,stupid,1249785366 +54251,590,Kevin Costner,1280107954 +54251,784,misunderstood,1261714809 +54251,1178,military court,1257591072 +54251,1178,Stanley Kubrick,1257591035 +54251,1178,world war I,1257591059 +54251,1233,classic,1250910483 +54251,1233,claustrophobic,1250910481 +54251,1233,grim,1250999795 +54251,1233,gritty,1250910480 +54251,1233,long,1250999801 +54251,1233,Nazis,1250999807 +54251,1233,No Happy End,1250910475 +54251,1233,ocean,1250910477 +54251,1233,submarine,1250910445 +54251,1233,tense,1250910448 +54251,1233,too long,1250910448 +54251,1233,underwater,1250910471 +54251,1233,war,1250910444 +54251,1233,Wolfgang Petersen,1250999797 +54251,1233,World War II,1250910442 +54251,1262,classic,1251085885 +54251,1262,forceful,1251085883 +54251,1262,gritty,1251085910 +54251,1262,imdb top 250,1251085891 +54251,1262,POWs,1251085894 +54251,1262,prison break,1251085887 +54251,1262,prison escape,1251085889 +54251,1262,tense,1251085899 +54251,1262,true story,1251085905 +54251,1262,War,1251085901 +54251,1262,World War II,1251085900 +54251,1262,WWII,1251085903 +54251,1562,Arnold Schwarzenegger,1257691729 +54251,1562,one liners,1257691734 +54251,1609,High school,1260232813 +54251,1609,Murder,1260232792 +54251,1609,Russian roulette,1260232772 +54251,1609,Teacher,1260232800 +54251,1690,Ron Perlman,1258778249 +54251,1726,Underrated,1257692532 +54251,1732,Coen Brothers,1257679611 +54251,1732,dark comedy,1257679615 +54251,1732,satirical,1257679620 +54251,2202,claustrophobic,1256517632 +54251,2202,Single set,1256517636 +54251,2212,fullscreen,1250913647 +54251,2212,poor audio,1250913637 +54251,3676,disturbing,1256884482 +54251,3676,dreamlike,1256884479 +54251,3676,enigmatic,1256884452 +54251,3676,Insane,1256884467 +54251,3676,ominous,1256884472 +54251,3676,prententiously obscure,1256884456 +54251,4902,ghosts,1259477143 +54251,4902,orphanage,1259477148 +54251,4902,orphans,1259477146 +54251,4902,paired with:Pan's Labyrinth,1259477151 +54251,4902,Spanish Civil War,1259477157 +54251,4902,War,1259477160 +54251,5120,games,1256003609 +54251,5120,imdb top 250,1256003600 +54251,5120,intelligent,1256003625 +54251,5120,maze,1256003603 +54251,5120,Michael Caine,1256003615 +54251,5120,small cast,1256003619 +54251,5771,creative kills,1259481656 +54251,5771,mine,1259481634 +54251,5771,miners,1259481647 +54251,5771,unresolved,1259481696 +54251,5771,valentine's day,1259481675 +54251,5782,easily confused with other movie(s) (title),1266196504 +54251,5898,Bad acting,1256005592 +54251,5898,Bad swordplay,1256005610 +54251,5898,Face split in half,1256006116 +54251,5898,Heart ripped out,1256005859 +54251,5898,Knee in groin,1256005749 +54251,5898,Laserdisc,1256005553 +54251,5898,Nudity,1256005765 +54251,5898,Resurrection,1256005853 +54251,5898,Torture,1256006122 +54251,5898,Triple sword,1256005868 +54251,6774,bondage,1256803815 +54251,6774,hallucinations,1256803921 +54251,6774,masochism,1256803847 +54251,6774,porn,1256803810 +54251,6774,television,1256803856 +54251,8128,Criterion,1268725184 +54251,8363,bad acting,1249521041 +54251,8363,disgusting,1249521047 +54251,8363,snoop dogg,1249521051 +54251,8363,so bad it's funny,1249521035 +54251,30749,Africa,1260541431 +54251,30749,ethnic conflict,1260541429 +54251,30749,genocide,1260541427 +54251,30749,racism,1260541434 +54251,30749,survival,1260541439 +54251,30749,United Nations,1260541433 +54251,30749,war,1260541437 +54251,31410,Adolf Hitler,1251001468 +54251,31410,Berlin,1251001467 +54251,31410,Biography,1251001465 +54251,31410,bleak,1251001464 +54251,31410,controversial,1251001469 +54251,31410,end of war,1251001463 +54251,31410,factual,1251001460 +54251,31410,German,1251001470 +54251,31410,Germany,1251001471 +54251,31410,history,1251001455 +54251,31410,imdb top 250,1251001439 +54251,31410,Nazi Germany,1251001473 +54251,31410,suicide,1251001475 +54251,39446,not as good as the first,1259313224 +54251,55278,Jude Law,1278829906 +54251,55278,Michael Caine,1278829904 +54251,55278,remake is a complete rewrite,1278829900 +54251,55908,dialogue,1265810455 +54251,55908,entirely dialogue,1265810450 +54251,55908,philosophical,1265810446 +54251,55908,thought-provoking,1265810448 +54251,59126,atheism,1251065873 +54251,59126,Bill Maher,1251065871 +54251,59126,intellectual,1251065877 +54251,59126,intelligent,1251065875 +54251,59126,irreligion,1251065881 +54251,59126,irreverent,1251065879 +54251,59126,thought-provoking,1251065883 +54251,59915,Fecal Incontinence,1256518057 +54251,59915,Karma,1256523138 +54251,60753,prison,1270965353 +54251,60753,wrongful imprisonment,1270965370 +54251,62912,generic,1256803763 +54251,63072,cannibalism,1284613241 +54251,63072,dystopia,1284613239 +54251,63072,man is man's worst enemy,1284613282 +54251,63072,Pointless,1284613264 +54251,63072,post-apocalyptic,1284613236 +54251,65216,World War II,1248571957 +54251,65642,complicated,1249862191 +54251,65642,plot wending,1249862197 +54251,65802,stupid,1257795112 +54251,65802,unfunny,1257795110 +54251,66140,Claustrophobic,1256517554 +54251,66140,Serial Killer,1256517513 +54251,66140,Single set,1256517523 +54251,66140,Small cast,1256517528 +54251,66140,unrealistic,1256517573 +54251,66427,actor playing self,1259484852 +54251,66427,B-movie,1259485124 +54251,66427,Bruce Campbell,1259485157 +54251,66427,chainsaws,1259485155 +54251,66427,corny,1259484895 +54251,66427,fake movies,1259484869 +54251,66427,guns,1259484878 +54251,66427,insular,1259484952 +54251,66427,repeated jokes,1259484780 +54251,66427,self-reference,1259484840 +54251,66427,sophomoric,1259484796 +54251,66427,spoof,1259484948 +54251,66427,straight to DVD,1259484932 +54251,68554,science,1286739418 +54251,68554,Tom Hanks,1286739405 +54251,68554,unrealistic,1286739426 +54251,69134,genital mutilation,1268567319 +54251,69134,masturbation,1268567339 +54251,69134,sex,1268567342 +54251,69280,bad acting,1257795166 +54251,69280,designer clothes,1257795231 +54251,69280,middle school,1257795182 +54251,69280,rip off,1257795157 +54251,69280,shopping,1257795234 +54251,69280,uninspired,1257795217 +54251,70286,aliens,1260191576 +54251,70286,alternate history,1260191575 +54251,70286,genetics,1260191564 +54251,70286,IMDB Top 250,1260191569 +54251,70286,improbable,1260191552 +54251,70286,shaky cam,1260191530 +54251,70286,social commentary,1260191592 +54251,70286,South Africa,1260191585 +54251,70728,defecating into hand,1268567284 +54251,70728,male nudity,1268571239 +54251,71057,simple,1260018496 +54251,71057,young target audience,1260018486 +54251,71379,Boring,1271663178 +54251,71379,low budget,1271663180 +54251,71379,not scary,1271663182 +54251,71379,slow,1271663191 +54251,73321,Denzel Washington,1284013475 +54251,73321,Gary Oldman,1284013462 +54251,73321,Mila Kunis,1284013472 +54251,73321,slow paced,1284013477 +54251,73321,thought-provoking,1284013502 +54251,79091,funny,1279265374 +54251,79091,young target audience,1279265359 +54251,79132,Christopher Nolan,1280029808 +54251,79132,Hans Zimmer,1280029814 +54251,79132,unpredictable,1280029799 +54273,2313,freaks,1148412471 +54273,4276,Albert Brooks,1345725521 +54273,4776,Notable Nudity,1150223990 +54273,71464,coen brothers,1345591683 +54273,71464,Minnesota,1345591663 +54296,260,space epic,1431642791 +54324,741,anime,1447361897 +54324,741,artificial intelligence,1447361899 +54324,741,complex,1447361905 +54324,741,cyberpunk,1447361895 +54324,741,hackers,1447361908 +54324,741,philosophical,1447361915 +54324,741,philosophy,1447361903 +54324,741,sci-fi,1447361901 +54324,741,techno-evolution,1447361911 +54324,924,artificial intelligence,1447362011 +54324,924,atmospheric,1447362018 +54324,924,cult film,1447362027 +54324,924,future,1447362029 +54324,924,masterpiece,1447362020 +54324,924,philosophical,1447362016 +54324,924,robots,1447362033 +54324,924,sci-fi,1447362013 +54324,924,Stanley Kubrick,1447362024 +54324,1704,excellent script,1447361958 +54324,1704,inspirational,1447361960 +54324,1704,intellectual,1447361967 +54324,1704,intelligent,1447361954 +54324,1704,mentor,1447361945 +54324,1704,psychology,1447361955 +54324,1704,thoughtful,1447361965 +54324,1704,university,1447361963 +54324,2571,atmospheric,1447361815 +54324,2571,cyberpunk,1447361840 +54324,2571,dystopia,1447361798 +54324,2571,Futuristic,1447361829 +54324,2571,hackers,1447361811 +54324,2571,post apocalyptic,1447361802 +54324,2571,sci-fi,1447361792 +54324,2571,thought-provoking,1447361838 +54324,2959,atmospheric,1447362226 +54324,2959,dark,1447362236 +54324,2959,dark comedy,1447362217 +54324,2959,philosophical,1447362230 +54324,2959,philosophy,1447362220 +54324,2959,psychological,1447362228 +54324,2959,psychology,1447362216 +54324,2959,satirical,1447362233 +54324,2959,social commentary,1447362219 +54324,2959,thought-provoking,1447362224 +54324,2959,twist ending,1447362214 +54324,2959,violent,1447362243 +54324,3000,fantasy,1447361745 +54324,3752,absurd,1447362198 +54324,3752,comedy,1447362194 +54324,3752,split personality,1447362196 +54324,5445,artificial intelligence,1447869514 +54324,5445,future,1447869510 +54324,5445,Philip K. Dick,1447869508 +54324,5445,sci-fi,1447869515 +54324,5903,Christian Bale,1447362061 +54324,5903,dystopia,1447362059 +54324,5903,fascism,1447362071 +54324,5903,sci-fi,1447362069 +54324,5903,thought-provoking,1447362064 +54324,6618,comedy,1447865575 +54324,6618,kung fu,1447865564 +54324,6618,soccer,1447865566 +54324,7153,atmospheric,1447362253 +54324,7153,epic,1447362265 +54324,7153,epic adventure,1447362263 +54324,7153,fantasy,1447362247 +54324,7153,fantasy world,1447362255 +54324,7153,high fantasy,1447362251 +54324,7153,magic,1447362270 +54324,7153,mythology,1447362259 +54324,7153,Tolkien,1447362256 +54324,8961,superhero,1447361724 +54324,27660,cyberpunk,1447361939 +54324,31878,Chinese Humor,1447865555 +54324,31878,comedy,1447865546 +54324,31878,kung fu,1447865537 +54324,31878,Stephen Chow,1447865539 +54324,34405,adventure,1447868640 +54324,34405,black comedy,1447868636 +54324,34405,dystopia,1447868630 +54324,34405,Firefly,1447868633 +54324,34405,Joss Whedon,1447868644 +54324,34405,sci-fi,1447868628 +54324,48394,alternate reality,1447362285 +54324,48394,atmospheric,1447362276 +54324,48394,fantasy,1447362277 +54324,48394,fascism,1447362291 +54324,48394,psychology,1447362282 +54324,64614,Clint Eastwood,1447362083 +54324,64614,gangs,1447362117 +54324,64614,gangsters,1447362115 +54324,64614,life & death,1447362110 +54324,64614,mentor,1447362108 +54324,64614,patriotic,1447362121 +54324,64614,racist humor,1447362104 +54324,64614,redemption,1447362107 +54324,65514,kung fu,1447361865 +54324,65514,martial arts,1447361863 +54324,65514,Wing Chun,1447361870 +54324,68358,action,1447362172 +54324,68358,adventure,1447362175 +54324,68358,sci-fi,1447362170 +54324,68358,space travel,1447362178 +54324,68358,Star Trek,1447362165 +54324,68358,time travel,1447362167 +54324,70286,action,1447362138 +54324,70286,aliens,1447362126 +54324,70286,alternate history,1447362146 +54324,70286,atmospheric,1447362140 +54324,70286,humor,1447362133 +54324,70286,intelligent,1447362142 +54324,70286,intelligent sci-fi,1447362130 +54324,70286,satire,1447362151 +54324,70286,sci-fi,1447362129 +54324,70286,segregation,1447362157 +54324,70286,Special Effects,1447362148 +54324,102445,adventure,1447362318 +54324,102445,science fiction,1447362319 +54324,102445,space,1447362311 +54324,102445,Star Trek,1447362308 +54324,104374,family bonds,1447361853 +54324,104374,time travel,1447362045 +54324,104374,touching,1447361851 +54324,109487,Christopher Nolan,1447361975 +54324,109487,Masterpiece,1447361995 +54324,109487,relativity,1447361979 +54324,109487,sci-fi,1447361973 +54324,109487,sentimental,1447361992 +54324,109487,thought-provoking,1447361981 +54324,109487,time travel,1447361985 +54324,115617,pixar,1447361711 +54324,115617,sci-fi,1447361706 +54343,5218,joy,1435567827 +54343,5218,mamut,1435567814 +54351,1,pixar,1141943365 +54351,32,Terry Gilliam,1141946717 +54351,101,Wes Anderson,1141950804 +54351,123,Wong Kar Wai,1141950915 +54351,296,Quentin Tarantino,1141945626 +54351,306,Krzysztof Kieslowski,1141946329 +54351,318,Frank Darabont,1141945043 +54351,318,Stephen King,1141945079 +54351,543,Thomas Schlamme,1141946749 +54351,750,Stanley Kubrick,1141943998 +54351,858,Francis Ford Copolla,1141944008 +54351,903,Alfred Hitchcock,1141946732 +54351,904,Alfred Hitchcock,1141946623 +54351,905,Frank Capra,1141946448 +54351,909,Billy Wilder,1141947832 +54351,923,Orson Welles,1141945917 +54351,924,Stanley Kubrick,1141950464 +54351,928,Alfred Hitchcock,1141946653 +54351,930,Alfred Hitchcock,1141945990 +54351,949,Elia Kazan,1141950881 +54351,955,Howard Hawks,1141950502 +54351,1104,Elia Kazan,1141947743 +54351,1104,Marlon Brando,1141947743 +54351,1193,Milos Forman,1141944846 +54351,1199,Terry Gilliam,1141948458 +54351,1206,Stanley Kubrick,1141947957 +54351,1208,Francis Ford Copolla,1141946139 +54351,1209,Sergio Leone,1141946179 +54351,1212,Carol Reed,1141944994 +54351,1217,Akira Kurosawa,1141945667 +54351,1221,Francis Ford Copolla,1141944890 +54351,1228,Martin Scorsese,1141946066 +54351,1230,Woody Allen,1141948259 +54351,1237,Ingmar Bergman,1141947041 +54351,1244,Woody Allen,1141948039 +54351,1247,Mike Nichols,1141946364 +54351,1248,Orson Welles,1141946042 +54351,1251,Federico Fellini,1141950424 +54351,1252,Roman Polanski,1141943344 +54351,1256,Leo McCarey,1141948112 +54351,1265,Bill Murray,1141951244 +54351,1265,Harold Ramis,1141951230 +54351,1273,Jim Jarmusch,1141950664 +54351,1280,Yimou Zhang,1141946166 +54351,1284,Howard Hawks,1141945906 +54351,1285,Michael Lehmann,1141946694 +54351,1288,Rob Reiner,1141946927 +54351,1333,Alfred Hitchcock,1141946725 +54351,1358,Billy Bob Thornton,1141946758 +54351,1394,Coen Brothers,1141950768 +54351,1673,PT Anderson,1141946560 +54351,1945,Elia Kazan,1141945953 +54351,1945,Marlon Brando,1141945961 +54351,1960,Bernardo Bertolucci,1141950831 +54351,2010,Fritz Lang,1141947710 +54351,2019,Akira Kurosawa,1141943708 +54351,2132,Mike Nichols,1141948400 +54351,2329,Tony Kaye,1141946662 +54351,2351,Federico Fellini,1141948520 +54351,2657,Jim Sharman,1141946633 +54351,2692,Tom Tykwer,1141946569 +54351,2726,Stanley Kubrick,1141945818 +54351,2731,Francois Truffaut,1141945736 +54351,2732,Francois Truffaut,1141951201 +54351,2858,Sam Mendes,1141945646 +54351,2859,Jonathan Demme,1141948138 +54351,2859,music,1141948138 +54351,2966,David Lynch,1141948216 +54351,3002,Werner Herzog,1141950899 +54351,3022,Buster Keaton,1141945867 +54351,3030,Akira Kurosawa,1141944035 +54351,3081,Tim Burton,1141946606 +54351,3089,Vittorio De Sica,1141946006 +54351,3114,Pixar,1141950887 +54351,3134,Jean Renoir,1141946261 +54351,3152,Peter Bogdanovich,1141950336 +54351,3160,Philip Seymour Hoffman,1141946683 +54351,3160,PT Anderson,1141946681 +54351,3307,Charles Chaplin,1141945762 +54351,3481,Stephen Frears,1141950590 +54351,3629,Charles Chaplin,1141945972 +54351,3996,Ang Lee,1141947913 +54351,4027,Coen Bros,1141950566 +54351,4034,Steven Soderbergh,1141946595 +54351,4144,Wong Kar Wai,1141948388 +54351,4226,Christopher Nolan,1141943524 +54351,4641,Terry Zwigoff,1141950322 +54351,4848,David Lynch,1141951258 +54351,4881,Coen Brothers,1141950758 +54351,4886,Pixar,1141946772 +54351,4928,Luis Bunuel,1141947786 +54351,4973,Jean-Pierre Jeunet,1141943558 +54351,5147,Ingmar Bergman,1141945105 +54351,5225,Alfonso Cuaron,1141948499 +54351,5291,Akira Kurosawa,1141943659 +54351,5446,Phillip Noyce,1141947980 +54351,5618,Hayao Miyazaki,1141944981 +54351,5902,Charlie Kaufman,1141948438 +54351,5995,Roman Polanski,1141946119 +54351,6016,Fernando Meirelles,1141943448 +54351,6023,Jean-Luc Godard,1141950451 +54351,6270,Akira Kurosawa,1141947857 +54351,6331,Documentary,1141945063 +54351,6368,Documentary,1141948270 +54351,6380,Andrew Jarecki,1141946022 +54351,6509,Rainer Werner Fassbinder,1142005015 +54351,6611,Vittorio De Sica,1141948189 +54351,6666,Luis Bunuel,1141950376 +54351,6783,Jean Renoir,1141947808 +54351,6858,Roman Polanski,1141948475 +54351,6985,Carl Theodor Dreyer,1141948086 +54351,6987,Robert Wiene,1141946057 +54351,7043,Jean-Luc Godard,1141948315 +54351,7063,Werner Herzog,1141948177 +54351,7067,Federico Fellini,1141950516 +54351,7089,Federico Fellini,1141950932 +54351,7090,Yimou Zhang,1141948165 +54351,7135,Francois Truffaut,1141947761 +54351,7215,Howard Hawks,1141946386 +54351,7234,Federico Fellini,1141947998 +54351,7327,Ingmar Bergman,1141947725 +54351,7361,Charlie Kaufman,1141943594 +54351,7396,Ingmar Bergman,1141948053 +54351,7932,Marc Singer,1141946198 +54351,7937,Ingmar Bergman,1141948023 +54351,7938,Ingmar Bergman,1141950798 +54351,7939,Ingmar Bergman,1141948242 +54351,7941,Ingmar Bergman,1141948359 +54351,8154,Federico Fellini,1141947946 +54351,8199,Kenji Mizoguchi,1141945712 +54351,8239,Luis Bunuel,1141950631 +54351,8477,Chris Marker,1141950730 +54351,8609,Buster Keaton,1141950708 +54351,8848,Federico Fellini,1141947902 +54351,8949,Alexander Payne,1141948326 +54351,8961,Pixar,1141945023 +54351,9018,Documentary,1141950293 +54351,26151,Robert Bresson,1141950619 +54351,26662,Hayao Miyazaki,1141945145 +54351,27266,Wong Kar Wai,1141951004 +54351,30803,Ki-duk Kim,1141946911 +54351,33794,Christopher Nolan,1141946411 +54351,34542,Werner Herzog,1141948339 +54351,37741,Bennett Miller,1141943488 +54351,38061,Shane Black,1141947879 +54351,39292,George Clooney,1141943433 +54351,40819,James Mangold,1141946089 +54351,40819,music,1141946095 +54351,43460,Michael Winterbottom,1142017412 +54364,318,meesa,1172625463 +54364,588,hard to rate (personal),1175210996 +54365,4,characters,1335562009 +54365,47,atmospheric,1331390822 +54365,47,ending,1331390835 +54365,47,investigation,1331390841 +54365,47,serial killer,1331390817 +54365,339,cute romance,1336822723 +54365,339,predictable,1336822714 +54365,509,disability,1341001652 +54365,509,stylized,1341001662 +54365,1029,friendship,1320408654 +54365,1029,overcoming fears,1320408742 +54365,1029,social exclusion,1320408642 +54365,1175,black comedy,1320407507 +54365,2268,courtroom drama,1325886454 +54365,2612,mother daughter relationship,1320407628 +54365,2612,too long,1320407639 +54365,2700,adult humor,1320407037 +54365,2700,quirky,1320407063 +54365,2700,satire,1320407026 +54365,2959,dark comedy,1320406366 +54365,2959,Edward Norton,1320406350 +54365,2959,violence,1320406391 +54365,2977,lucas black,1331068523 +54365,3160,melancholy,1320418539 +54365,3535,boring,1412508635 +54365,3949,addiction,1320407344 +54365,3949,depressing,1320407309 +54365,3949,drugs,1320407289 +54365,3949,loneliness,1320407328 +54365,4226,mystery,1328702998 +54365,4226,nonlinear,1328702957 +54365,4973,Audrey Tautou,1320406277 +54365,4973,beautifully filmed,1320406206 +54365,4973,feel-good,1320406310 +54365,4973,great soundtrack,1320406160 +54365,4973,romance,1320406143 +54365,4975,depressing,1320408341 +54365,4978,characters,1354310706 +54365,4978,realistic relationships,1354310757 +54365,4993,atmospheric,1320405615 +54365,4993,cast,1320405677 +54365,4993,great soundtrack,1320405628 +54365,5269,domineering mother,1339872127 +54365,5269,Isabelle Huppert,1339872139 +54365,5530,It's cheeky,1337450794 +54365,5617,quirky,1320407137 +54365,5617,sexuality,1320407124 +54365,5630,acting,1358275708 +54365,5630,Anthony Hopkins,1358275633 +54365,5630,cast,1358275737 +54365,5630,Edward Norton,1358275624 +54365,5630,Emily Watson,1358275670 +54365,5630,Hannibal Lecter,1358275642 +54365,6192,depressing,1320604337 +54365,6879,overly happy ending,1326566615 +54365,6879,Rachel Weisz,1326566582 +54365,6927,Nicole Kidman,1360436722 +54365,6953,melancholy,1320405894 +54365,6953,Naomi Watts,1320405915 +54365,6953,right/wrong,1321997418 +54365,7361,bittersweet,1320405772 +54365,7361,Charlie Kaufman,1335733434 +54365,7361,Elijah Wood,1320405787 +54365,7361,Kirsten Dunst,1320405796 +54365,7361,romance,1320405815 +54365,7371,dark,1339276702 +54365,7371,depressing,1339276704 +54365,7371,disturbing,1339276699 +54365,7371,Nicole Kidman,1339276711 +54365,8860,tense,1331935141 +54365,9010,cruel characters,1335967425 +54365,9010,romance,1335967479 +54365,27866,Matthew Macfadyen,1345233661 +54365,33004,bad adaptation,1320408171 +54365,33004,comedy,1320408206 +54365,33004,Martin Freeman,1320408216 +54365,33004,Zooey Deschanel,1320408186 +54365,33880,music,1329141095 +54365,35836,Steve Carell,1320418867 +54365,37384,negative gay jokes,1331391028 +54365,39183,emotional,1339885948 +54365,44555,characters,1320406521 +54365,44555,human potential,1320406624 +54365,44555,real human being & a real hero,1320406789 +54365,44555,resistance,1320406688 +54365,44555,tense,1320406472 +54365,45732,stupid,1331716392 +54365,45880,atmospheric,1371373977 +54365,47491,black comedy,1320604690 +54365,47491,cynical,1320604688 +54365,47491,Mads Mikkelsen,1335098752 +54365,47491,quirky,1320604753 +54365,47491,thought-provoking,1320604753 +54365,47610,predictable,1332959653 +54365,47610,romance,1332959720 +54365,48304,acting,1350510609 +54365,48304,atmospheric,1350510593 +54365,48304,cinematography,1350510593 +54365,48783,flag-raising photograph,1334007288 +54365,48783,iwo jima,1334007283 +54365,52281,Robert Rodriguez,1335098616 +54365,52579,great acting,1320418062 +54365,52579,Marion Cotillard,1323876984 +54365,52579,touching,1320418042 +54365,53123,musical,1342511733 +54365,53519,disappointing,1335098502 +54365,53519,slow paced,1335098499 +54365,54962,multiple storylines,1343766153 +54365,54995,crude humor,1335098328 +54365,54995,over the top,1335098363 +54365,54995,Robert Rodriguez,1335098349 +54365,55052,great cinematography,1344329426 +54365,55069,abortion,1340552917 +54365,55069,bleak,1340552910 +54365,55069,friendship,1340552913 +54365,55247,bittersweet,1320405734 +54365,55363,beautiful scenery,1358183889 +54365,55363,Casey Affleck,1358183938 +54365,55363,Sam Rockwell,1358183952 +54365,55363,visually appealing,1358183903 +54365,55451,good acting,1366751443 +54365,55732,adoption,1366544411 +54365,55732,feel-good,1366544495 +54365,57669,dark comedy,1334444989 +54365,57669,friendship,1334444991 +54365,57669,irish accent,1334444992 +54365,57669,stylized,1334444994 +54365,59118,bittersweet,1338661353 +54365,59118,darker undertones,1338661378 +54365,59118,no plot,1338661389 +54365,59118,uncomfortable,1338661444 +54365,59339,diego luna,1320418353 +54365,59339,sad people,1320418365 +54365,59339,surreal,1320418384 +54365,60069,cute,1320408047 +54365,60069,great soundtrack,1320407979 +54365,60069,post-apocalyptic,1320408022 +54365,60069,romance,1320407988 +54365,60069,satire,1320408115 +54365,60684,cinematography,1322434903 +54365,60684,comic book,1322434900 +54365,61073,bad acting,1337382667 +54365,61073,bad story,1337382683 +54365,61073,unnecessary nudity,1337382741 +54365,62511,Charlie Kaufman,1343766226 +54365,62511,confusing,1320405455 +54365,62511,depressing,1320405487 +54365,62511,Philip Seymour Hoffman,1343766244 +54365,62511,Samantha Morton,1343766232 +54365,62511,surreal,1320405472 +54365,62511,thought-provoking,1320405437 +54365,63072,No Explanation,1342813495 +54365,63072,slow paced,1342813497 +54365,66371,beautiful scenery,1366317907 +54365,66371,nonsensical wife character,1366317897 +54365,67255,adapted from:book,1326930111 +54365,67255,investigation,1326930068 +54365,67255,rape,1326930073 +54365,69757,cheesy,1334445167 +54365,72479,casualties,1339276008 +54365,72479,military,1339276011 +54365,72479,Samantha Morton,1339276017 +54365,72720,Colin Firth,1320418627 +54365,72720,Julianne Moore,1320418651 +54365,72720,sad,1320418644 +54365,73027,Helen Mirren,1335705537 +54365,73027,love,1335705537 +54365,73323,corruption,1329052369 +54365,77240,characters,1321749049 +54365,77240,cinematography,1321749024 +54365,77240,ending,1321749065 +54365,77240,slow paced,1321749138 +54365,78039,Michelle Williams,1330445491 +54365,78039,realism,1330445498 +54365,78499,boring,1320407906 +54365,78499,overrated,1320407913 +54365,78499,story,1320407924 +54365,78574,cinematography,1320407405 +54365,79091,heartwarming,1339276103 +54365,79091,predictable,1339276044 +54365,80693,bittersweet,1373832126 +54365,80693,soundtrack,1373832143 +54365,81639,Philip Seymour Hoffman,1366146961 +54365,81639,touching story,1366146946 +54365,81791,loneliness,1329140862 +54365,81791,sparse dialog,1329140828 +54365,82242,bad parenting,1356214141 +54365,82242,Finnish,1356214034 +54365,82242,humour,1356214016 +54365,82242,male nudity,1356214064 +54365,82242,Santa Claus,1356214050 +54365,82463,depressing,1323472433 +54365,82463,loneliness,1323472450 +54365,82767,Aaron Eckhart,1340552729 +54365,82767,death of child,1340552805 +54365,82767,emotional,1340552746 +54365,82767,Nicole Kidman,1340552710 +54365,84954,simple ending,1325186269 +54365,84954,trivial,1325186299 +54365,86320,Charlotte Gainsbourg,1324136507 +54365,86320,cinematography,1324136505 +54365,86320,Kirsten Dunst,1324136510 +54365,86817,shallow characters,1347143792 +54365,86898,cinematography,1320406858 +54365,86898,coming of age,1320406891 +54365,86898,thought-provoking,1320406816 +54365,88129,atmospheric,1321997285 +54365,88129,Carey Mulligan,1321997303 +54365,88129,cinematography,1321997294 +54365,88129,falling in love,1321997341 +54365,88129,music,1321997322 +54365,88129,violence,1321997312 +54365,88672,Earnest protagonist,1367957292 +54365,88672,feel-good,1367957268 +54365,88672,funny,1367957268 +54365,88810,feel good movie,1332605685 +54365,88810,racism,1332605675 +54365,89470,Kate Winslet,1338407158 +54365,89745,comic book,1336410499 +54365,89745,no plot,1336822861 +54365,89745,overrated,1336822865 +54365,89745,shallow,1336822889 +54365,89745,silly,1336822884 +54365,89745,superhero team,1336410525 +54365,90249,boxing,1326061310 +54365,90249,corny,1326061296 +54365,90249,father-son relationship,1326061324 +54365,90249,robots,1326061326 +54365,90357,abuse,1337382603 +54365,90357,losing control,1337382597 +54365,90357,personal demons,1337382596 +54365,90405,cheesy,1333629330 +54365,90405,plot holes,1333629314 +54365,90405,unintentionally funny,1333629317 +54365,91077,Shailene Woodley,1330374957 +54365,91134,based on true story,1334674161 +54365,91134,Michelle Williams,1334674123 +54365,91529,Anne Hathaway,1346871543 +54365,91529,Michael Caine,1346871592 +54365,91529,plot holes,1346871533 +54365,91622,alcoholism,1360760279 +54365,91622,depressing,1360760229 +54365,91622,depression,1360760279 +54365,91622,unfulfilling,1360760202 +54365,91658,remake,1329052470 +54365,93326,predictable,1339276505 +54365,93740,vapid,1378025763 +54365,93831,sexist,1338381438 +54365,93831,sexual assault on men is ok attitude,1338381506 +54365,93840,funny,1356909412 +54365,93840,witty,1356909440 +54365,94780,boring,1350760212 +54365,94780,too long,1350760224 +54365,96821,atmospheric,1365369167 +54365,96821,captivating,1365369146 +54365,96991,Aborigines,1366494216 +54365,96991,bad acting,1366493576 +54365,96991,bad dialogue,1366493597 +54365,96991,parodylike,1366494160 +54365,96991,ridiculously cliche,1366494121 +54365,96991,singing,1366494190 +54365,97304,suspenseful,1361802885 +54365,97870,humor,1359409104 +54365,97870,John Hawkes,1359409042 +54365,97870,relationships,1359409177 +54365,97870,sexuality,1359409057 +54365,97921,Bradley Cooper,1361651228 +54365,97921,mental illness,1361651255 +54365,97938,boring,1361814933 +54365,98056,beautiful,1361739034 +54365,98056,cinematography,1361739157 +54365,98056,death,1361739100 +54365,98056,emotional,1361739184 +54365,98056,slow,1361739147 +54365,99114,female character only a weak object that needs to be rescued,1359285497 +54365,99114,great performances,1359285017 +54365,99114,Leonardo DiCaprio,1359285033 +54365,99114,revenge,1359285531 +54365,100714,honest,1421443510 +54365,118202,climate change,1452695625 +54365,118202,Documentary,1452695629 +54365,118202,Informative,1452695617 +54365,118202,meat consumption,1452695640 +54365,118202,veganism,1452695645 +54379,2060,Matt Stone,1253551982 +54379,2060,Trey Parker,1253551977 +54379,4936,high school,1255971824 +54379,4936,Irene Cara,1255971831 +54379,4936,music,1255971805 +54379,4936,teens,1255971821 +54379,7451,Amanda Seyfried,1253551902 +54379,7451,Amy Poehler,1253551910 +54379,7451,High School,1253551961 +54379,7451,Lindsay Lohan,1253551914 +54379,7451,revenge,1253551939 +54379,7451,Tina Fey,1253551925 +54379,8528,Ben Stiller,1254088127 +54379,8528,obscure sports,1254088125 +54379,58559,Heath Ledger,1253388457 +54379,60684,alternate reality,1254071481 +54379,60684,based on a comic,1254071476 +54379,60684,social commentary,1254071518 +54379,60684,storytelling,1254071491 +54379,64032,Reese Witherspoon,1254088077 +54379,64032,Vince Vaughn,1254088089 +54379,70286,alternate history,1254070021 +54379,70286,social commentary,1254069989 +54379,70286,Special Effects,1254069999 +54379,72998,3d,1262116648 +54379,72998,too long,1262116646 +54379,72998,visual,1262116654 +54384,56782,DDL,1452381386 +54384,56782,intense,1452381403 +54403,7,great cast,1317021232 +54403,7,Harrison Ford,1317021217 +54403,7,romance,1320828054 +54403,17,based on a book,1403668555 +54403,17,British,1403668569 +54403,17,Hugh Grant,1403668550 +54403,17,Jane Austen,1403668547 +54403,17,romantic,1403668566 +54403,17,Shakespeare,1403668573 +54403,39,Alicia Silverstone,1405706206 +54403,39,Jane Austen,1405706202 +54403,39,Paul Rudd,1405706209 +54403,57,dysfunctional family,1378585074 +54403,57,Robert Downey Jr,1378585071 +54403,339,Bill Pullman,1320828303 +54403,339,chick flick,1320828301 +54403,339,coma,1320828304 +54403,339,cute romance,1320828306 +54403,339,frivolous,1320828321 +54403,339,mistaken identity,1320828294 +54403,339,Romance,1320828297 +54403,339,Sandra Bullock,1320828296 +54403,339,sweet,1320828318 +54403,520,Cary Elwes,1371005764 +54403,539,chick flick,1322365882 +54403,539,fate,1322365901 +54403,539,father-son relationship,1322365880 +54403,539,Meg Ryan,1322365876 +54403,539,predictable,1322365890 +54403,539,Romance,1322365878 +54403,539,romantic comedy,1322365869 +54403,539,seen more than once,1322365868 +54403,539,single father,1322365860 +54403,539,single parents,1322365862 +54403,587,Demi Moore,1399759702 +54403,587,ghosts/afterlife,1399759718 +54403,587,love story,1399759710 +54403,587,passionate,1399759705 +54403,587,Patrick Swayze,1399759704 +54403,587,romance,1399759713 +54403,587,supernatural,1399759695 +54403,593,cannibalism,1317023872 +54403,593,Hannibal Lecter,1317023862 +54403,593,Jodie Foster,1317023866 +54403,593,psychology,1317023858 +54403,593,serial killer,1317023854 +54403,720,british comedy,1344977146 +54403,720,claymation,1344977133 +54403,720,comedy,1344977145 +54403,720,Creative production,1344977135 +54403,720,Wallace & Gromit,1344977151 +54403,838,Gwyneth Paltrow,1403668599 +54403,838,Jane Austen,1403668601 +54403,916,Audrey Hepburn,1320828958 +54403,916,classic,1320828955 +54403,916,Gregory Peck,1320828956 +54403,916,protagonist is young princess & heir,1320828951 +54403,932,Cary Grant,1320828910 +54403,932,classic love story,1320828917 +54403,932,Deborah Kerr,1320828911 +54403,1835,angel,1322365038 +54403,1835,Meg Ryan,1322365030 +54403,1835,Nicholas Cage,1322365024 +54403,1959,Africa,1401508899 +54403,1959,colonialism,1401508917 +54403,1959,drama,1401508919 +54403,1959,love story,1401508923 +54403,1959,Meryl Streep,1401508904 +54403,1959,Oscar (Best Cinematography),1401508903 +54403,1959,Oscar (Best Picture),1401508902 +54403,1959,Robert Redford,1401508906 +54403,1959,romance,1401508908 +54403,1961,dark comedy,1353223886 +54403,1961,Dustin Hoffman,1353223876 +54403,1961,Exceptional Acting,1353223881 +54403,1961,Tom Cruise,1353223874 +54403,1962,based on a play,1339224132 +54403,1962,Oscar (Best Picture),1339224137 +54403,1962,Southern theme,1339224128 +54403,1967,crude humor,1399688248 +54403,1967,David Bowie,1399688240 +54403,1967,fantasy,1399688261 +54403,1967,Jennifer Connelly,1399688245 +54403,1967,muppets,1399688241 +54403,1967,music,1399688265 +54403,1967,musical,1399688252 +54403,2167,Marvel,1348102247 +54403,2167,vampires,1348102248 +54403,2413,adapted from:game,1391831356 +54403,2413,Based on Boardgame,1391831393 +54403,2413,hilarious,1391831364 +54403,2413,unreliable narrators,1391831373 +54403,2485,Freddie Prinze Jr.,1320828436 +54403,2485,Rachael Leigh Cook,1320828438 +54403,2485,remake,1320828431 +54403,2485,shakespeare,1320828424 +54403,2641,based on a comic,1399689074 +54403,2641,Christopher Reeve,1399689071 +54403,2641,DC Comics,1399689084 +54403,2641,double life,1399689079 +54403,2641,superhero,1399689069 +54403,2641,Superman,1399689091 +54403,2829,Andie MacDowell,1392440773 +54403,2888,guilty pleasure,1399761119 +54403,3097,James Stewart,1408333183 +54403,3097,remade,1408333188 +54403,3269,Can't remember,1322368322 +54403,3269,Mel Gibson,1322368325 +54403,3270,chick flick,1322365958 +54403,3270,Good Romantic Comedies,1322365956 +54403,3270,sport:figure skating,1322365965 +54403,3300,aliens,1358868031 +54403,3300,anti-hero,1358868026 +54403,3751,so many puns,1417932748 +54403,3967,british,1318396222 +54403,3967,father-son relationship,1318396225 +54403,3967,self discovery,1318396216 +54403,3968,Brendan Fraser,1393217897 +54403,3968,Elizabeth Hurley,1393217907 +54403,3968,nice message,1393217912 +54403,4296,Ali MacGraw,1399759793 +54403,4296,bittersweet,1399759783 +54403,4296,Romance,1399759791 +54403,4296,Ryan O'Neal,1399759784 +54403,4296,sentimental,1399759789 +54403,4296,tear-jerker,1399759786 +54403,4361,cross dressing,1394949194 +54403,4361,Dustin Hoffman,1394949189 +54403,4992,Hugh Jackman,1413949207 +54403,5618,Hayao Miyazaki,1348002887 +54403,5618,Studio Ghibli,1348002886 +54403,5957,Hugh Grant,1320827854 +54403,5957,no chemistry,1320827860 +54403,5957,Sandra Bullock,1320827855 +54403,6155,chick flick,1320828020 +54403,6155,extreme product placement,1320828027 +54403,6533,Barbara Striesand,1394949287 +54403,6533,Madeline Kahn,1394949332 +54403,6533,Screwball Comedy,1394949291 +54403,6593,being a kid again,1322449946 +54403,6593,switching places,1322449950 +54403,6668,family bonds,1320829035 +54403,6668,Florida Film Festival Winner Best International Feature Film Audience Award 2001,1320829038 +54403,6668,quiet,1320829059 +54403,6668,village,1320829043 +54403,7064,atmospheric,1401513157 +54403,7064,eerie,1401513155 +54403,7064,fairy tale,1401513161 +54403,7064,Jean Cocteau,1401513159 +54403,7260,comedy romance,1321922724 +54403,7260,homophobia,1321922718 +54403,7260,low budget,1321922727 +54403,7260,religious oppression,1321922713 +54403,7375,double life,1322366732 +54403,7375,royal pretends to be commoner,1322366722 +54403,7386,Biblical,1402207979 +54403,7386,Charlton Heston,1402207981 +54403,7386,Yul Brynner,1402208014 +54403,7444,Child as Adult,1320828353 +54403,7444,created for teens,1320828359 +54403,7454,atmospheric,1348102658 +54403,7454,gothic,1348102660 +54403,7454,Hugh Jackman,1348102649 +54403,7454,steampunk,1348102651 +54403,7454,vampires,1348102654 +54403,7454,werewolves,1348102653 +54403,8983,amazing photography,1419062936 +54403,8983,Zhang Yimou,1419062946 +54403,25870,angelic intervention,1322365187 +54403,25870,fate vs. free will,1322365207 +54403,25870,ghosts/afterlife,1322365203 +54403,25870,SUPERNATURAL ROMANCE,1322365193 +54403,27834,bleak,1371407571 +54403,27834,brother-brother relationship,1371407567 +54403,27834,downbeat,1371408141 +54403,27834,fatherhood,1371407562 +54403,27834,JOURNEY OF SELF-DISCOVERY,1371407559 +54403,27834,poignant,1371408130 +54403,27834,psychology,1371407577 +54403,27834,road trip,1371407575 +54403,27834,secrets,1371407573 +54403,27834,tense,1371407556 +54403,27834,Venice Film Festival Winner,1371408145 +54403,30816,Andrew Lloyd Webber,1378585435 +54403,30816,Gerard Butler,1378585438 +54403,30816,Romance,1378585458 +54403,30816,visually appealing,1378585440 +54403,30820,great acting,1372399834 +54403,30820,honest,1372399205 +54403,30820,Kevin Bacon,1372399188 +54403,30820,mental imbalance,1372399201 +54403,30820,paedophilia,1372399193 +54403,30820,sexuality,1372399199 +54403,31685,Eva Mendes,1399689190 +54403,31685,Kevin James,1399689180 +54403,31685,romantic comedy,1399689183 +54403,31685,Will Smith,1399689192 +54403,33815,single parents,1322449921 +54403,33836,Based on a TV show,1391373199 +54403,33836,Nicole Kidman,1391373203 +54403,33836,Steve Carell,1391373206 +54403,33836,Will Ferrell,1391373208 +54403,44191,dark,1317021335 +54403,44191,inspirational,1317021325 +54403,44191,politics,1317021338 +54403,44191,revenge,1317021342 +54403,44191,social commentary,1317021329 +54403,44191,thought-provoking,1317021327 +54403,44204,turning a new leaf,1395627082 +54403,44613,Antonio Banderas,1320828555 +54403,44613,based on a true story,1320828551 +54403,44613,Dance,1320828577 +54403,44613,teacher student relationship,1320828563 +54403,44665,Bruce Willis,1359927815 +54403,44665,mistaken identity,1359927820 +54403,44665,Morgan Freeman,1359927813 +54403,44665,twist ending,1359927811 +54403,45730,M. Night Shyamalan,1342047945 +54403,47491,black comedy,1329809256 +54403,47491,foreign language,1329809265 +54403,47491,Mads Mikkelsen,1381623528 +54403,47491,Neo-Nazis,1329809261 +54403,47491,rural,1329809258 +54403,47491,thought-provoking,1329809274 +54403,48600,Christianity,1402208660 +54403,48600,Hollywood artistic license,1402208665 +54403,48600,romantic,1402208673 +54403,50954,body exchange,1318396762 +54403,51077,based on a comic,1344976729 +54403,51077,Marvel,1344976737 +54403,51077,Nicolas Cage,1344976732 +54403,51575,hilarious,1422682487 +54403,51575,John C. McGinley,1422682514 +54403,51575,road trip,1422682696 +54403,55280,heartwarming,1381624274 +54403,55280,mental illness,1381624271 +54403,55280,psychology,1381624264 +54403,55280,Ryan Gosling,1381624260 +54403,55280,small town,1381624262 +54403,56941,waste of time,1317021177 +54403,59333,Scotland,1320828081 +54403,61240,atmospheric,1372391442 +54403,61240,based on a book,1372391474 +54403,61240,bittersweet,1372391426 +54403,61240,serial killer,1372391470 +54403,61240,vampire,1372391418 +54403,61240,violence,1372391464 +54403,62265,Colin Firth,1320827787 +54403,62265,Isabella Rossellini,1320827793 +54403,62265,Jeffery Dean Morgan,1320827789 +54403,62265,Uma Thurman,1320827792 +54403,64716,atonement,1317021088 +54403,64716,moving,1317021105 +54403,64716,Will Smith,1317021092 +54403,65731,serial killer,1318803826 +54403,66203,adapted from:book,1320828816 +54403,68135,being a kid again,1318396733 +54403,68135,geeks,1318396730 +54403,68135,high school,1318396705 +54403,68135,Matthew Perry,1318396720 +54403,68135,parent-children relationship,1318396746 +54403,68135,redemption,1318396713 +54403,68135,Zac Efron,1318396702 +54403,69140,based on a play,1399092790 +54403,69140,BBC produced,1399092762 +54403,69140,serial killer,1399092788 +54403,71670,annoying charactor,1361928072 +54403,71670,Bradley Cooper,1361928065 +54403,71670,Sandra Bullock,1381623985 +54403,71670,stupid as hell,1381623976 +54403,72919,Hugh Grant,1322367999 +54403,72919,Sarah Jessica Parker,1322368001 +54403,74275,based on a true story,1321922674 +54403,74275,Con Artist,1321922677 +54403,74275,Ewan McGregor,1321922671 +54403,78264,pregnancy,1318623780 +54403,78266,experiments gone awry,1399690703 +54403,78266,genetics,1399690701 +54403,78266,weak ending,1399690699 +54403,80846,excellent cinematography,1342048154 +54403,80846,good acting,1342048145 +54403,80846,M. Night Shyamalan,1342048139 +54403,80846,plot twist,1342048148 +54403,80846,supernatural,1342048166 +54403,80846,twist ending,1342048150 +54403,82169,alternate reality,1322365563 +54403,82169,based on a book,1322365566 +54403,82169,Christian allegory,1322365550 +54403,82169,dragons,1322365557 +54403,82169,sword and sorcery,1322365572 +54403,82722,author:Patricia MacLachlan,1407697806 +54403,82722,based on book,1407697809 +54403,85438,bad chemistry,1375752859 +54403,85438,Cary Fukunaga,1375752965 +54403,85438,gothic,1375752834 +54403,85438,Jamie Bell,1375752843 +54403,85438,Mia Wasikowska,1375752229 +54403,85438,Michael Fassbender,1375752846 +54403,86332,mythology,1317021264 +54403,89864,cancer,1319603723 +54403,89864,current,1319603733 +54403,89864,disease,1319603726 +54403,89864,top ten,1319603729 +54403,91529,Anne Hathaway,1344743902 +54403,91529,Batman,1344743910 +54403,91529,Christian Bale,1344743911 +54403,91529,comic book,1344743913 +54403,91529,dark,1344743915 +54403,91529,Hans Zimmer,1344743922 +54403,91529,Joseph Gordon-Levitt,1344743906 +54403,91529,Michael Caine,1344743928 +54403,91529,Morgan Freeman,1344743917 +54403,91529,superhero,1344743904 +54403,92259,based on a true story,1374735378 +54403,92259,friendship,1374735370 +54403,92259,soundtrack,1374735363 +54403,92270,documentary,1441529764 +54403,92270,transgender,1441529728 +54403,96281,ghosts,1347152895 +54403,96281,stop motion,1347152891 +54403,96281,zombies,1347152893 +54403,98809,adapted from:book,1359927895 +54403,98809,beautiful scenery,1359927886 +54403,98809,big budget,1359927904 +54403,98809,fantasy world,1359927892 +54403,98809,Ian McKellen,1359927888 +54403,98809,magic,1359927890 +54403,98809,New Zealand,1359927896 +54403,98809,Tolkien,1359927900 +54403,100527,eye candy galore,1378524481 +54403,100527,North Carolina,1378524484 +54403,101112,Fantasy,1372381833 +54403,101112,feigned innocence,1372381835 +54403,101112,Funny,1372381856 +54403,101112,James Franco,1372381831 +54403,101112,magic,1372381845 +54403,101112,Mila Kunis,1372381811 +54403,101112,Rachel Weisz,1372381838 +54403,101112,stage magic,1372381822 +54403,101112,strong women,1372381824 +54403,101112,visually stunning,1372381827 +54403,101112,whimsical,1372381849 +54403,101112,Zach Braff,1372381829 +54403,103042,comic book,1372040591 +54403,103042,identity crisis,1372040601 +54403,103042,Over-the-top action.,1372040579 +54403,103042,Superman,1372040596 +54403,103042,visually appealing,1372040594 +54403,103315,Anton Yelchin,1408934518 +54403,103315,based on a book,1408934520 +54403,103315,black comedy,1408934517 +54403,103315,quirky,1408934527 +54403,103315,Willem Dafoe,1408934525 +54403,103731,bad acting,1374556284 +54403,103731,it has no saving graces,1422682182 +54403,103731,Richard Lewis Warren,1374556349 +54403,103731,the worst acting I've ever seen,1374556310 +54403,103731,worst movie ever!,1422682182 +54403,104906,Jane Austen,1406433143 +54403,104906,romance,1406433145 +54403,106072,superhero,1384664557 +54403,106072,Tom Hiddleston,1384664553 +54403,106489,dragon,1388969826 +54403,106489,Tolkien,1388969837 +54403,110102,Captain America,1396757644 +54403,110102,Chris Evans,1396757629 +54403,110102,comic book,1396757641 +54403,110102,Marvel Cinematic Universe,1396757631 +54403,110102,Nazis,1396757639 +54403,110102,Scarlett Johansson,1396757634 +54403,110102,superhero,1396757636 +54403,127433,coming-of-age,1423342646 +54403,127433,murder,1423342646 +54403,127433,teenage gang,1423342646 +54410,83086,good soundtrack,1379102232 +54410,88179,Unexpected Ending,1379102203 +54410,92509,captivating,1379102095 +54410,92509,surprisingly good,1379102095 +54410,100714,beautiful,1379101422 +54410,100714,Ethan Hawke,1379101423 +54410,100714,Greece,1379101438 +54410,100714,honest,1379101429 +54410,100714,Julie Delpy,1379101424 +54410,100714,phylosophycal,1379101426 +54410,100714,romance,1379101432 +54410,100714,unique,1379101435 +54410,101577,romance,1379102266 +54410,102903,Unexpected Ending,1379101296 +54410,103372,many comedy actors,1379101129 +54410,103372,Melissa McCarthy,1379101159 +54410,103655,police,1379101243 +54410,103801,cheating,1379101911 +54410,103801,woman - man friendship,1379101862 +54413,356,tom hanks,1431655622 +54413,356,very moving,1431655622 +54413,356,wwii,1431655622 +54413,1960,China,1431655645 +54415,296,fast-paced,1436062110 +54415,296,iconic,1436062110 +54415,296,stylish,1436062110 +54437,74553,animation,1297463420 +54465,7256,3,1211261701 +54465,8783,vw,1137946585 +54465,52281,Quinten Tarantino,1177574056 +54495,296,classic,1420995377 +54495,296,multiple stories,1420995377 +54495,296,violence,1420995377 +54495,318,escape,1438684221 +54495,318,friendship,1438684221 +54495,318,jail,1438684221 +54495,6548,Nudity (Topless),1164732869 +54500,2198,On server,1143829926 +54504,68358,plot twist,1244216515 +54504,68358,sci-fi,1244216501 +54504,68358,Star Trek,1244216495 +54504,68358,time travel,1244216507 +54520,3980,Nudity (Topless - Brief),1201355383 +54534,44929,Nudity (Topless),1224600082 +54549,1027,medieval,1282995934 +54551,65682,werewolves,1266351237 +54565,1204,test,1425601556 +54565,3000,miyazaki,1425601587 +54577,1347,intersting,1199845092 +54577,2405,river,1190622052 +54577,2405,When the Going Gets Tough!,1190622045 +54577,2662,classic,1192071949 +54577,2762,2323232,1192068273 +54577,50872,setting:Paris,1190623112 +54578,260,classic sci-fi,1444298305 +54578,260,pop culture must,1444298322 +54589,3556,psychology,1357740412 +54638,1281,satire,1162872264 +54643,132456,Boman Irani,1453237208 +54643,141702,Ajay Devgan,1453237358 +54643,141702,Police Brutality,1453237386 +54643,141702,Tabu,1453237362 +54643,141702,Thriller,1453237375 +54673,5989,intelligent,1443270219 +54673,5989,Steven Spielberg,1443270112 +54673,5989,twists & turns,1443270108 +54673,7254,psychology,1443602890 +54673,42723,revenge,1443270662 +54673,96829,falsely accused,1453062384 +54673,96829,painful to watch,1453062391 +54673,103075,interesting concept,1443272098 +54673,104879,absorbing,1443278592 +54673,104879,thriller,1443686399 +54673,114494,social engineering,1443269893 +54673,114494,twists & turns,1443269863 +54674,76093,animation,1437811726 +54674,76093,Dreamworks,1437811721 +54697,30816,adapted from B'way,1346674252 +54697,30816,Andrew Lloyd Webber,1346674251 +54697,30816,Emmy Rossum,1346674248 +54697,30816,Gerard Butler,1346674232 +54697,30816,Joel Schumacher,1346674243 +54697,30816,Minnie Driver,1346674263 +54697,30816,playwright:Andrew Lloyd Webber,1346674237 +54697,30816,visually appealing,1346674241 +54697,60397,Amanda Seyfried,1346674185 +54697,60397,based on a play,1346674156 +54697,60397,Colin Firth,1346674150 +54697,60397,Meryl Streep,1346674192 +54697,60397,Middle Age Romance,1346674143 +54697,60397,music:ABBA,1346674132 +54697,60397,Paternity,1346674171 +54697,60397,Pierce Brosnan,1346674137 +54697,60397,Single Mother,1346674174 +54697,60397,Stellan SkarsgÃ¥rd,1346674198 +54725,260,Science Fiction,1437360770 +54725,260,space adventure,1437360779 +54725,77846,controversial,1437361351 +54725,77846,good dialogue,1437361351 +54725,77846,one room,1437361351 +54725,106642,science fiction,1438136900 +54725,106642,space,1438136900 +54725,106642,time travel,1438136900 +54743,260,goerge lucas,1433672142 +54743,260,sci-fi,1433672142 +54743,260,star wars,1433672142 +54748,247,coming of age,1188751580 +54748,838,cottage,1188751483 +54748,1179,new nior,1188751624 +54748,1231,awesome,1188751577 +54748,1953,action classic,1188751502 +54748,1994,80s,1188751594 +54748,2391,noir,1188751708 +54748,2478,comedy,1188751765 +54748,3362,awesome,1188751778 +54748,3967,coming of age,1188751746 +54748,4310,blockbuster,1188751718 +54748,4447,comedy,1188751677 +54748,4848,surrealism,1188751710 +54748,6378,action,1188751668 +54748,8622,documentary,1188751743 +54748,32587,comic book,1188751646 +54765,260,classic,1454005045 +54765,260,sci-fi,1454005058 +54765,260,Star Wars,1454005040 +54785,468,drama,1187954170 +54785,475,drama,1187954101 +54785,1025,animation,1187954472 +54785,1025,fantasy,1187954460 +54785,1047,thriller,1187954125 +54785,1249,action,1187954087 +54785,1377,action martial-arts revenge,1187953919 +54785,1589,corruption,1187954415 +54785,1690,sci-fi,1187953964 +54785,1747,politics,1187954030 +54785,2424,romcom,1187954048 +54785,2951,spaghetti western,1187954394 +54785,2976,ambulance,1187954546 +54785,2976,drama,1187954546 +54785,2976,drugs,1187954546 +54785,3752,comedy,1187954227 +54785,4246,romcom,1187954003 +54785,4270,adventure,1187954299 +54785,4310,wartime,1187954241 +54785,4367,adventure,1187954324 +54785,5377,drama,1187954194 +54785,5618,adventure,1187954262 +54785,6016,crime,1187954360 +54785,6373,gods,1187954377 +54785,8622,political,1187954281 +54806,33639,musical,1151859557 +54806,33639,see again,1151859546 +54806,33639,to rent,1151859534 +54806,33639,to-rent,1151859571 +54820,260,too long,1439053167 +54820,260,unrealistic sci-fi,1439053184 +54825,260,sequel,1439806538 +54825,260,space adventure,1439806531 +54842,1196,classic,1427970594 +54842,1196,sci-fi,1427970581 +54842,1196,space,1427970572 +54843,7153,fantasy,1286803851 +54843,7153,Peter Jackson,1286803860 +54843,7153,trilogy,1286803835 +54845,1527,sci-fi,1447379403 +54845,2324,sad ending,1447329682 +54854,4246,a very good movie...you have to see,1141921152 +54854,8969,excelent!!!,1141921217 +54854,8969,like the first,1141921217 +54855,69757,artistic,1291500743 +54855,69757,humorous,1291500748 +54855,69757,indie music,1291500745 +54855,69757,quirky,1291500735 +54858,31,high school,1427857815 +54858,31,inspirational,1427857819 +54858,293,assassin,1428131812 +54858,293,great acting,1428131808 +54858,293,hitman,1428131800 +54858,293,police corruption,1428131796 +54858,296,dark comedy,1428211599 +54858,296,not worth your time,1432617720 +54858,296,over fucking rated,1428211505 +54858,296,overrated,1428211492 +54858,296,Quentin Tarantino,1428211601 +54858,296,quentin tarantino is a bad director,1432617720 +54858,593,excellent script,1427946406 +54858,593,Jodie Foster,1427946398 +54858,593,psychology,1427946394 +54858,593,serial killer,1427946392 +54858,593,suspense,1427946402 +54858,1266,over fucking rated,1432616078 +54858,1266,overrated,1432616103 +54858,1584,Jodie Foster,1427336174 +54858,1586,Demi Moore,1426514242 +54858,1586,underrated,1426514238 +54858,1968,cult film,1432009512 +54858,2268,great performances,1432266187 +54858,2329,unsatisfying ending,1427524060 +54858,2542,multiple storylines,1435224227 +54858,2599,black comedy,1434941390 +54858,2599,Reese Witherspoon,1434941397 +54858,2797,Child as Adult,1427348370 +54858,2797,Tom Hanks,1427348373 +54858,2858,great acting,1432023310 +54858,2858,kevin spacey,1432023300 +54858,2959,thought-provoking,1419817413 +54858,2959,twist ending,1419817417 +54858,3535,bad,1433335056 +54858,3535,overrated,1433335075 +54858,3535,worst movie,1433335051 +54858,3980,based on a true story,1432626140 +54858,3980,military,1432626101 +54858,3980,Navy,1432626091 +54858,4878,pseudo intellectual shit movie,1434599613 +54858,5903,choreographic violence,1428137880 +54858,5903,martial arts,1428137874 +54858,5903,stylized violence,1428137883 +54858,48774,apocalypse,1434956730 +54858,48774,Clive Owen,1434956737 +54858,48774,survival,1434956732 +54858,48774,thought-provoking,1434956743 +54858,48780,enigmatic,1419817599 +54858,48780,great ending,1419817611 +54858,48780,twist ending,1419817593 +54858,48780,twists & turns,1419817609 +54858,94864,need a sequel,1434694393 +54858,112852,Action,1433423057 +54858,112852,fun,1433423039 +54858,112852,great soundtrack,1433423034 +54858,112852,Great Visuals,1433423047 +54858,112852,sci-fi,1433423068 +54858,112852,talking animals,1433423038 +54858,116797,cryptography,1420862573 +54858,116797,homosexuality,1420862561 +54858,134130,scientific,1450227503 +54858,134130,Survival Instinct,1450227508 +54858,134853,overrated,1436477245 +54862,318,bad ending,1270201242 +54862,3354,death,1270719832 +54862,3504,Nudity (Topless - Brief),1270718734 +54862,3504,Oscar (Best Actor),1270718715 +54862,3504,Oscar (Best Actress),1270718718 +54862,3504,Oscar (Best Supporting Actress),1270718711 +54862,3504,want to see again,1270718726 +54862,8957,Disturbing,1270719269 +54862,8957,Sick,1270719255 +54862,8965,animation,1270929793 +54862,8965,big budget,1270929807 +54862,8965,Christian,1270929802 +54862,8965,Christmas,1270929791 +54862,8965,family,1270929801 +54862,8965,Tom Hanks,1270929787 +54862,27618,starts well but fails you in the middle till the end,1270368216 +54862,44761,film noir,1270673839 +54862,44761,low budget,1270673757 +54862,47997,decline of civilization,1270718615 +54862,47997,future,1270718621 +54862,47997,prophetic,1270718658 +54862,47997,space,1270718612 +54862,59256,sex with the enemy,1270120246 +54862,60072,action,1270913533 +54862,60072,assassin,1270913462 +54862,60072,brutal violence,1270913388 +54862,60072,gun fu,1270913498 +54862,60072,murder,1270913474 +54862,60072,plot twist,1270913549 +54862,60072,stylized violence,1270913519 +54862,60072,TOO much violence,1270913419 +54862,60072,twist,1270913539 +54862,60074,Amazing!,1270913695 +54862,60074,anti-hero,1270913656 +54862,60074,bad ending,1270913607 +54862,60074,better than expected,1270913620 +54862,60074,Charlize Theron,1270913624 +54862,60074,innovative,1270913668 +54862,60074,movie to see,1270913633 +54862,60074,plot twist,1270913636 +54862,60074,superhero,1270913640 +54862,60074,Will Smith,1270913731 +54862,60516,enjoyable,1270913597 +54862,60516,good laughs,1270913591 +54862,65567,twist,1270196420 +54862,65567,Unexpected Ending,1270196449 +54870,1721,based on a true story,1347409200 +54870,1721,romance,1347409202 +54870,80551,India,1347409178 +54877,1206,dystopia,1433337657 +54877,1206,social commentary,1433337698 +54877,1206,stanley kubrick,1433337656 +54877,1210,aliens,1433337446 +54877,1210,George Lucas,1433337439 +54877,1210,great soundtrack,1433337451 +54877,1210,Harrison Ford,1433337437 +54877,1210,sci-fi,1433337432 +54877,1210,space,1433337436 +54877,1210,Star Wars,1433337434 +54877,2959,social commentary,1433337582 +54877,4586,apartheid,1433337046 +54877,6502,great soundtrack,1433337292 +54877,7153,based on a book,1433337536 +54877,7153,epic adventure,1433337553 +54877,7153,fantasy,1433337531 +54877,7153,great ending,1433337538 +54877,7153,high fantasy,1433337559 +54877,7153,lord of the rings,1433337555 +54877,7153,multiple storylines,1433337567 +54877,7153,Tolkien,1433337563 +54877,30749,genocide,1433337187 +54877,30749,history,1433337190 +54877,30749,Rwanda,1433337196 +54877,49265,Rwanda,1433337462 +54877,49265,Rwanda Genocide,1433337468 +54906,318,inspirational,1440974533 +54906,8873,adventure,1440974632 +54906,55247,based on a true story,1440974609 +54906,63082,dark side of India,1440974575 +54906,63082,feel-good,1440974039 +54906,63082,India,1440974019 +54906,63082,social commentary,1440974562 +54906,97938,great photograpy,1440974588 +54906,97938,visually appealing,1440974585 +54906,100553,documentary,1441152668 +54906,100553,nature,1441152672 +54906,100553,wildlife,1441152670 +54906,101739,horror,1441152618 +54906,109487,sci-fi,1440974800 +54906,109487,thought-provoking,1440974805 +54906,109487,time-travel,1440974803 +54916,5791,art,1159073763 +54916,5791,historical,1159073758 +54916,5791,Nudity (Topless),1159073736 +54916,38038,claymation,1140229873 +54916,40583,complex,1140229815 +54918,260,Science Fiction,1439692360 +54918,260,space action,1439692351 +54919,260,classic sci-fi,1439772533 +54919,260,practical effects,1439772575 +54931,97648,choppy style,1434452751 +54931,97648,gritty,1434452751 +54931,97648,realistic,1434452751 +54933,260,sci-fi,1434833407 +54933,260,star wars,1434833403 +54935,1641,unemployment,1446548887 +54935,2671,funny,1446205960 +54935,2671,Good Romantic Comedies,1446205950 +54935,2671,Hugh Grant,1446205955 +54935,2671,romance,1446205952 +54935,2858,excellent script,1446205636 +54935,2858,imdb top 250,1446205651 +54935,2858,social commentary,1446205627 +54935,2858,thought-provoking,1446205647 +54935,4034,DRUG TRADE,1446205726 +54935,4034,oscar (best cinematography),1446205720 +54935,4034,politics,1446205717 +54935,4034,social commentary,1446205716 +54935,5483,biography,1446300072 +54935,6942,funny,1446205900 +54935,6942,Hugh Grant,1446205916 +54935,6942,witty,1446205928 +54935,7361,beautiful,1446205767 +54935,7361,bittersweet,1446205776 +54935,7361,emotional,1446205792 +54935,7361,imdb top 250,1446205794 +54935,7361,relationships,1446205787 +54935,7361,romance,1446205788 +54935,7361,thought-provoking,1446205754 +54935,46976,destiny,1446299890 +54935,46976,heartbreaking,1446299926 +54935,46976,heartwarming,1446299863 +54935,46976,modern fantasy,1446299853 +54935,46976,quirky romantic,1446299894 +54935,46976,romance,1446299917 +54935,46976,writers,1446299879 +54935,46976,writing,1446299881 +54935,47099,based on a true story,1446205567 +54935,47099,inspirational,1446205579 +54935,47099,true story,1446205586 +54935,48394,surreal,1446461167 +54935,82534,unemployment,1446548850 +54935,92420,clever,1446205859 +54935,115713,cybernetics,1446461148 +54935,115713,robots,1446461143 +54935,115713,sci-fi,1446461131 +54935,115713,Surreal,1446461139 +54962,858,dark,1446276842 +54962,858,Ego booster,1446276836 +54963,63082,KBC,1451193755 +54963,115713,AI,1451193710 +54963,122892,all super hero at one place,1451193886 +54980,586,childhood classics,1265577422 +54980,586,Macaulay Culkin,1265577406 +54980,2012,steampunk,1265576408 +54980,2012,time travel,1265576403 +54980,44191,based on a comic,1265575277 +54980,44191,Natalie Portman,1265575298 +54980,44191,politics,1265575281 +54980,44191,thought-provoking,1265575286 +54980,66934,Neil Patrick Harris,1265575320 +54980,69757,Joseph Gordon-Levitt,1265599908 +54981,1827,propaganda,1193158812 +54981,2064,propaganda,1193158796 +54981,4142,propaganda,1193159253 +54981,5669,propaganda,1193158761 +54981,8361,propaganda,1193158899 +54981,8464,propaganda,1193159062 +54981,8622,propaganda,1193158774 +54981,27912,propaganda,1193158980 +54981,39408,propaganda,1193159249 +54981,45928,propaganda,1193158923 +54981,45950,propaganda,1193158866 +54981,53894,propaganda,1193158740 +54993,541,cool tech,1427910541 +54993,2716,funny,1427910094 +54993,2716,great cast,1427910125 +54993,2716,Sigourney Weaver,1427910113 +54993,112556,adultery,1427910039 +54993,112556,femme fatale,1427910039 +54993,112556,surprise ending,1427910039 +55029,2395,affectionate,1418246836 +55029,2395,bittersweet,1418246810 +55029,2395,coming of age,1418246842 +55029,2395,witty,1418246818 +55030,260,birth of great scifi ideas,1436423734 +55030,260,sci-fi,1436423715 +55049,260,death star,1437897358 +55049,260,Star Wars,1437897349 +55061,6953,psychological,1228872675 +55063,318,inspirational,1431423949 +55063,318,intelligent,1431423949 +55063,318,morgan freeman,1431423949 +55063,778,dark comedy,1431423882 +55063,778,social commentary,1431423896 +55063,60069,funny,1431423805 +55063,60069,Sci-Fi,1431423835 +55063,60069,social commentary,1431423794 +55074,239,father-son relationship,1299655393 +55074,318,prison,1299654911 +55074,593,psychology,1299654405 +55074,765,comedy,1299655415 +55074,765,drama,1299655419 +55074,765,Robin Williams,1299655407 +55074,934,Steve Martin,1299654683 +55074,1089,cult film,1299654951 +55074,1089,nonlinear,1299654954 +55074,1089,Quentin Tarantino,1299654957 +55074,1197,comedy,1299654379 +55074,1213,Martin Scorsese,1299654647 +55074,1213,organized crime,1299654643 +55074,1213,Robert De Niro,1299654652 +55074,1265,surreal,1299655216 +55074,1358,mental illness,1299655310 +55074,1358,small town,1299655313 +55074,1777,1980s,1299654886 +55074,1777,chick flick,1299654879 +55074,1777,funny,1299654889 +55074,1923,comedy,1299655306 +55074,1923,sexual,1299655303 +55074,2028,Steven Spielberg,1299654933 +55074,2028,Tom Hanks,1299654940 +55074,2028,World War II,1299654944 +55074,2174,alternate reality,1299655548 +55074,2174,Tim Burton,1299655545 +55074,2478,comedy,1299654857 +55074,2478,parody,1299654854 +55074,2478,quirky,1299654861 +55074,2571,post-apocalyptic,1299655057 +55074,2571,virtual reality,1299655053 +55074,2581,high school,1299655523 +55074,2918,comedy,1299655461 +55074,2918,High School,1299655445 +55074,2918,teen,1299655466 +55074,2959,surreal,1299654679 +55074,3105,Robert De Niro,1299655269 +55074,3105,Robin Williams,1299655284 +55074,3147,prison,1299654640 +55074,3250,South America,1299654780 +55074,3250,survival,1299654777 +55074,3510,father-son relationship,1299655429 +55074,4226,nonlinear,1299654989 +55074,5418,action,1299654760 +55074,5418,conspiracy,1299654752 +55074,5690,Studio Ghibli,1299655221 +55074,5952,Action,1299655068 +55074,5952,fantasy,1299655065 +55074,5952,multiple storylines,1299655063 +55074,6874,Quentin Tarantino,1299654625 +55074,7293,Comedy,1299655498 +55074,7293,funny,1299655495 +55074,7387,zombies,1299654518 +55074,7438,Quentin Tarantino,1299654368 +55074,8665,conspiracy,1299655261 +55074,8949,dark comedy,1299654391 +55074,8949,friendship,1299654400 +55074,8949,midlife crisis,1299654450 +55074,35836,comedy,1299654806 +55074,35836,Nudity (Topless - Notable),1299654811 +55074,46578,dark comedy,1299655343 +55074,46578,social commentary,1299655347 +55074,46578,twist ending,1299655354 +55074,48516,organized crime,1299654697 +55074,52973,drugs,1299654610 +55074,52973,marijuana,1299654604 +55074,56367,comedy,1299655076 +55074,56367,High school life,1299655166 +55074,61024,comedy,1299654977 +55074,61024,drugs,1299654979 +55074,61024,Stoner Movie,1299654972 +55074,63131,comedy,1299654572 +55074,63131,social commentary,1299654583 +55074,64614,clint eastwood,1301434279 +55074,64614,culture clash,1301434283 +55074,64614,gangsters,1301434263 +55074,65261,Animation,1299654967 +55074,65261,Studio Ghibli,1299654963 +55074,68157,Quentin Tarantino,1299654635 +55074,68157,satire,1299654632 +55074,69122,comedy,1299655201 +55074,69122,drugs,1299655204 +55074,69122,Las Vegas,1299655209 +55074,71535,comedy,1299654525 +55074,71535,post-apocalyptic,1299654539 +55074,71535,zombies,1299654530 +55074,71899,animation,1299655048 +55074,71899,friendship,1299655046 +55074,71899,mental illness,1299655043 +55074,79132,alternate reality,1299655364 +55074,79132,sci-fi,1299655368 +55074,79132,surreal,1299655361 +55074,80463,dark comedy,1299113159 +55074,81562,adventure,1299654850 +55074,81562,loneliness,1299654826 +55074,81562,true story,1299654846 +55078,442,taco bell,1161553098 +55078,648,confusing,1161553135 +55078,1584,open ending,1161553108 +55081,912,classic,1444582836 +55081,4993,tolkien,1444582865 +55087,44,set design,1297556982 +55087,1391,smart,1273354460 +55087,3328,intentionally funny,1210709561 +55087,4850,over expositive,1205869996 +55087,5294,dumbest twist ever,1215892398 +55087,5299,second half was better!,1245295317 +55087,5523,design,1272661484 +55087,6058,slapstick,1206144827 +55087,6966,funny,1270145847 +55087,7371,village,1204066467 +55087,8369,corny,1205617144 +55087,8369,corny to the max,1205617177 +55087,8369,just terrible,1205620180 +55087,8369,one-liners,1205617220 +55087,8369,only three characters with any stand-out qualities or background story,1205617309 +55087,8810,inconsistent with itself,1206561120 +55087,27109,slow,1296264227 +55087,31685,cute,1208724021 +55087,45672,cheesy,1245296166 +55087,45672,nonsensical,1245310647 +55087,45672,obvious,1245310575 +55087,45672,slapstick,1245296188 +55087,45672,unbalanced,1245310581 +55087,48394,fantasy world,1210376002 +55087,48394,world war II,1210376002 +55087,52806,boring,1338547987 +55087,53000,brainless splatter,1226786902 +55087,61350,sequel hook,1339110836 +55087,74458,Predictable,1339415613 +55122,260,action adventure,1425098135 +55122,260,classic film,1425098135 +55122,260,sci-fi,1425098135 +55131,260,action,1437457010 +55131,260,police,1437457021 +55139,4034,Katie,1180270958 +55163,110,hair style,1423882510 +55163,110,scotland,1423882510 +55163,110,sword fight,1423882510 +55163,589,arnold schwarzenegger,1424756916 +55163,589,man versus machine,1424756916 +55163,589,r:violence,1424756916 +55164,750,based on a book,1251534075 +55164,750,cold war,1251534055 +55164,750,dark comedy,1251534049 +55164,750,nuclear war,1251534045 +55164,750,Quirky,1251534059 +55164,750,satire,1251534062 +55164,750,Stanley Kubrick,1251534068 +55164,750,war,1251534065 +55164,1200,action,1251534398 +55164,1200,aliens,1251534383 +55164,1200,atmospheric,1251534402 +55164,1200,military,1251534394 +55164,1200,monster,1251534396 +55164,1200,Oscar (Best Effects - Visual Effects),1251534412 +55164,1200,sci-fi,1251534389 +55164,1200,SPACE TRAVEL,1251534387 +55164,1200,tense,1251534406 +55164,1200,violent,1251534392 +55164,1676,adapted from:book,1251533911 +55164,1676,Alien Invasion,1251533865 +55164,1676,aliens,1251533883 +55164,1676,campy,1251533887 +55164,1676,deadpan,1251533890 +55164,1676,future,1251533869 +55164,1676,giant space bugs,1251533877 +55164,1676,military,1251533872 +55164,1676,sci-fi,1251533901 +55164,1676,space,1251533897 +55164,1682,dark comedy,1251534480 +55164,1682,dreamlike,1251534482 +55164,1682,dystopia,1251534478 +55164,1682,social commentary,1251534473 +55164,1682,stylized,1251534475 +55164,2019,action,1251533935 +55164,2019,Akira Kurosawa,1251533931 +55164,2019,atmospheric,1251533937 +55164,2019,classic,1251533956 +55164,2019,CULTURE CLASH,1251533959 +55164,2019,epic,1251533940 +55164,2019,samurai,1251533944 +55164,2019,stylized,1251533946 +55164,2287,ants,1251534419 +55164,2287,Scary Movies To See on Halloween,1251534431 +55164,2287,sci-fi,1251534422 +55164,2287,wilhelm,1251534431 +55164,2321,black and white,1251534456 +55164,2321,poignant,1251534453 +55164,2321,satire,1251534443 +55164,2321,stylized,1251534447 +55164,2321,surreal,1251534444 +55164,2321,time travel,1251534459 +55164,2664,1950s,1251693312 +55164,2664,aliens,1251693308 +55164,2664,END OF THE WORLD,1251693306 +55164,2664,EVIL ALIENS,1251693303 +55164,2664,sci-fi,1251693318 +55164,6016,Brazil,1251534116 +55164,6016,disturbing,1251534133 +55164,6016,drugs,1251534154 +55164,6016,stylized,1251534125 +55164,6016,violence,1251534119 +55164,6711,Amazing Cinematography,1251534001 +55164,6711,atmospheric,1251533982 +55164,6711,bittersweet,1251534015 +55164,6711,isolation,1251534005 +55164,6711,Japan,1251533987 +55164,6711,Oscar Nominee: Director,1251534010 +55164,6711,reflective,1251534000 +55164,6711,Scarlett Johansson,1251533990 +55164,7022,dreams,1251534368 +55164,7022,explosions,1251534355 +55164,7022,goretastic,1251534358 +55164,7022,island,1251534371 +55164,7022,survival,1251534360 +55164,7022,violent,1251534365 +55164,7022,weapons,1251534364 +55164,7099,adventure,1251749977 +55164,7099,alien beings,1251749940 +55164,7099,Miyazaki,1251749951 +55164,7099,post-apocalyptic,1251749951 +55164,7099,sci-fi,1251749943 +55164,7099,strong female lead,1251749946 +55164,7099,war,1251749972 +55164,8914,clever,1251534238 +55164,8914,Complicated,1251534240 +55164,8914,complicated plot,1251534236 +55164,8914,Deep,1251534264 +55164,8914,low budget,1251534246 +55164,8914,mindfuck,1251534248 +55164,8914,physics,1251534256 +55164,8914,sci-fi,1251534250 +55164,8914,time travel,1251534260 +55164,44191,action,1251534290 +55164,44191,dystopia,1251534278 +55164,44191,homophobia,1251534295 +55164,44191,inspirational,1251534288 +55164,44191,justice,1251534286 +55164,44191,politics,1251534272 +55164,44191,sci-fi,1251534269 +55164,44191,super-hero,1251534270 +55164,44191,thought-provoking,1251534275 +55164,44191,vigilantism,1251534281 +55164,44555,East Germany,1251464126 +55164,44555,freedom of expression,1251464097 +55164,44555,Nudity (Topless - Brief),1251464132 +55164,44555,Nudity (Topless),1251464134 +55164,44555,spying,1251464115 +55164,44555,surveillance,1251464111 +55164,52328,Cillian Murphy,1251534315 +55164,52328,sci-fi,1251534305 +55164,52328,spaceships,1251534307 +55164,65261,Animation,1251534195 +55164,65261,environmental,1251534231 +55164,65261,friendship,1251534202 +55164,65261,Ghibli,1251534222 +55164,65261,Hayao Miyazaki,1251534225 +55164,70286,aliens,1251534161 +55164,70286,genetics,1251534165 +55164,70286,intelligent sci-fi,1251534167 +55164,70286,justice,1251534174 +55164,70286,redemption,1251534171 +55164,70286,Special Effects,1251534176 +55164,70286,weapons,1251534178 +55168,260,sci-fi,1440869530 +55168,260,Science Fiction,1440869576 +55168,57368,first person view,1442593749 +55168,101060,first person view,1442593942 +55168,142509,first person shooter,1442594229 +55179,260,sci-fi,1436531776 +55179,260,starwars,1436531756 +55212,102903,illusions,1430063414 +55212,116797,suspense,1430058576 +55212,116797,thriller,1430058588 +55221,318,classic,1322552099 +55221,318,Morgan Freeman,1322552106 +55221,318,Stephen King,1322552092 +55221,318,thought-provoking,1322552102 +55221,318,twist ending,1322552094 +55221,1682,alternate reality,1314430345 +55221,1682,dark comedy,1314430344 +55221,1682,drama,1314430348 +55221,1682,dreamlike,1314430352 +55221,1682,dystopia,1314430356 +55221,1682,fantasy,1314430358 +55221,1682,INNOCENCE LOST,1314430360 +55221,1682,island,1314430363 +55221,1682,Jim Carrey,1314430340 +55221,1682,melancholy,1314430367 +55221,1682,paranoia,1314430370 +55221,1682,philosophy,1314430372 +55221,1682,Saturn Award (Best Writing),1314430375 +55221,1682,slavery,1314430377 +55221,1682,small town,1314430379 +55221,1682,social commentary,1314430382 +55221,1682,stylized,1314430386 +55221,1682,surveillance,1314430388 +55221,1682,voyeurism,1314430390 +55221,1682,witty,1314430392 +55221,3307,silent movie,1340703215 +55221,6711,atmospheric,1314430165 +55221,6711,Bill Murray,1314430163 +55221,6711,bittersweet,1314430190 +55221,6711,complex characters,1314430191 +55221,6711,friendship,1314430193 +55221,6711,intelligent,1314430184 +55221,6711,Japan,1314430186 +55221,6711,poignant,1314430177 +55221,6711,reflective,1314430180 +55221,6711,Scarlett Johansson,1314430173 +55221,6711,tokyo,1314430200 +55221,6711,very clever,1314430197 +55221,8640,Clive Owen,1341156801 +55221,8640,Jerry Bruckheimer,1341156798 +55221,8640,Keira Knightley,1341156796 +55221,8640,medieval,1341156800 +55221,31410,disturbing,1361546515 +55221,31410,Nazis,1361546524 +55221,31410,Nudity (Topless),1361546511 +55221,31410,suicide,1361546505 +55221,33162,Eva Green,1341156762 +55221,33162,Liam Neeson,1341156763 +55221,33162,Ridley Scott,1341156761 +55221,46976,Will Ferrell,1449747699 +55221,58627,hollywood cheese,1352960140 +55221,58627,inspirational,1352960143 +55221,58627,plot holes,1352960138 +55221,60069,adventure,1314430325 +55221,60069,Animation,1314430324 +55221,60069,artificial intelligence,1314430327 +55221,60069,beautiful scenery,1314430282 +55221,60069,dark,1314430284 +55221,60069,dystopia,1314430279 +55221,60069,family,1314430321 +55221,60069,Future,1314430286 +55221,60069,imdb top 250,1314430316 +55221,60069,inspirational,1314430318 +55221,60069,pixar,1314430276 +55221,60069,Post apocalyptic,1314430297 +55221,60069,post-apocalyptic,1314430295 +55221,60069,quirky,1314430300 +55221,60069,robots,1314430311 +55221,60069,romance,1314430303 +55221,60069,Sci-Fi,1314430305 +55221,60069,social commentary,1314430306 +55221,60069,space,1314430310 +55221,60625,western,1322552142 +55221,61240,adapted from:book,1324363703 +55221,61240,atmospheric,1324363694 +55221,61240,based on a book,1324363698 +55221,61240,Beautiful,1324363699 +55221,61240,bittersweet,1324363702 +55221,61240,dark,1324363706 +55221,61240,imdb top 250,1324363710 +55221,68288,Nudity (Topless),1352960209 +55221,68288,weak ending,1352960212 +55221,71535,Bill Murray,1331555367 +55221,74450,Taylor Swift,1390398896 +55221,78574,adapted from:book,1331556840 +55221,78574,cinematography,1331556843 +55221,78574,realism,1331556852 +55221,78574,thriller,1331556846 +55221,79684,cute,1314431200 +55221,79684,Emma Stone,1314431189 +55221,79684,Kieran Culkin,1314431198 +55221,79684,lame dialogues,1314431204 +55221,79684,Lisa Kudrow,1314431192 +55221,79684,Ryan Reynolds,1314431207 +55221,85179,anime,1314430607 +55221,85179,anime cliches,1314430573 +55221,85179,Japanese,1314430594 +55221,85414,Michelle Monaghan,1341156959 +55221,86347,06/11,1314430500 +55221,86347,hilarious,1314430506 +55221,86347,lighthearted,1314430508 +55221,86347,Louis C.K.,1314430494 +55221,86347,not a movie,1314430490 +55221,86347,stand-up comedy,1314430492 +55221,86377,not a movie,1314430444 +55221,86377,stand-up comedy,1314430446 +55221,89090,fashion,1324432907 +55221,89090,photography,1324432908 +55221,89492,baseball,1324433088 +55221,89492,Baseball. Drama. Comedy. Based on a true story.,1324433123 +55221,89492,Brad Pitt,1324433098 +55221,89492,Jonah Hill,1324433091 +55221,89492,math,1324433083 +55221,89492,Philip Seymour Hoffman,1324433089 +55221,89492,well acted,1324433118 +55221,89492,winning,1324433120 +55221,89774,Jennifer Morrison,1324296992 +55221,90266,amazing what he does with horses,1324432648 +55221,90266,horses,1324432643 +55221,90266,"well worth watching this amazing ""horse whisperer""",1324432638 +55221,90345,alien invasion,1329036957 +55221,90345,aliens,1329036950 +55221,90345,Mary Elizabeth Winstead,1329036992 +55221,90345,sci-fi,1329036953 +55221,90376,tilda swinton,1361371952 +55221,90866,3D,1324296834 +55221,90866,adapted from:book,1324296837 +55221,90866,android(s)/cyborg(s),1324296839 +55221,90866,based on a book,1324296843 +55221,90866,Chloë Grace Moretz,1324296847 +55221,90866,Martin Scorsese,1324296851 +55221,91046,Amber Heard,1352960084 +55221,91094,cameo-fest,1324363791 +55221,91094,dancing,1324363780 +55221,91094,good once but doesn't stand up to further viewing,1324363787 +55221,91094,puppets,1324363781 +55221,92439,coming of age,1404651023 +55221,92439,depressing,1404651012 +55221,92439,depression,1404651017 +55221,92439,Emma Roberts,1404651021 +55221,93272,Taylor Swift,1390398838 +55221,93363,adapted from:book,1331555072 +55221,93363,author:Edgar Rice Burroughs,1331555079 +55221,93363,based on a book,1331555082 +55221,93363,Edgar Rice Burroughs,1331555085 +55221,95088,aubrey plaza,1344915355 +55221,95088,feel good,1353939716 +55221,95088,social angst,1353939719 +55221,96821,character development,1361546679 +55221,96821,depression,1361546684 +55221,96821,Emma Watson,1361546677 +55221,96821,Suicide,1361546672 +55221,102880,aliens,1402827717 +55221,102880,boring,1402827723 +55221,102880,far future,1402827711 +55221,102880,future,1402827714 +55221,102880,sci-fi,1402827706 +55221,111759,aliens,1402266814 +55221,111759,Emily Blunt,1402266807 +55221,111759,time loop,1402266802 +55221,111759,time travel,1402266826 +55221,111759,Tom Cruise,1402266818 +55223,96020,Medianeras,1447177944 +55229,4978,hw drama,1247755723 +55229,6002,PS Hoffman,1359036970 +55229,31035,nuclear war,1183659548 +55229,52241,Potential Oscar Nom 2008,1183659603 +55229,56782,Cinematography,1357505834 +55229,56782,Daniel Day-Lewis,1357505812 +55229,56782,Darkness,1357505839 +55229,56782,P.T. Anderson,1357505824 +55229,64839,awesome performance,1247755963 +55229,64839,Character study,1247755935 +55229,65465,Dustin Hoffman,1247755825 +55229,65465,Emma Thompson,1247755826 +55229,65465,weak screenplay,1247755855 +55229,66200,Joaquin Phoenix,1247755652 +55229,73023,Jeff Bridges,1279099520 +55229,86852,good acting,1357506003 +55229,86852,story,1357505997 +55229,99114,C. Waltz,1357671854 +55229,99114,Over the top,1357671873 +55229,99114,too long,1357671842 +55244,3480,high school,1310651325 +55258,47,atmospheric,1451944060 +55258,47,psychological,1451944072 +55258,47,psychology,1451944074 +55258,47,twist ending,1451944052 +55258,2571,philosophy,1451944316 +55258,2571,sci-fi,1451944291 +55258,2571,virtual reality,1451944294 +55258,45003,horror,1451944808 +55258,64957,David Fincher,1451944009 +55258,64957,philosophical,1451944017 +55258,71379,not scary,1451943899 +55258,71379,over-hyped,1451943906 +55258,74458,atmospheric,1451944491 +55258,74458,Leonardo DiCaprio,1451944483 +55258,74458,mindfuck,1451944485 +55258,74458,psychological,1451944478 +55258,74458,twist ending,1451944480 +55258,92259,feel good movie,1451943965 +55258,92259,friendship,1451943957 +55258,92259,funny,1451943973 +55258,94959,cinematography,1451944384 +55258,94959,Edward Norton,1451944391 +55258,94959,original,1451944400 +55258,94959,stylized,1451944386 +55258,94959,Wes Anderson,1451944381 +55258,109374,amazing storytelling,1451944336 +55258,109374,cinematography,1451944328 +55258,109374,great dialogue,1451944339 +55258,109374,stylized,1451944341 +55258,109374,visually appealing,1451944326 +55258,109374,Wes Anderson,1451944377 +55259,1288,deadpan,1240856937 +55259,2427,lyrical,1240857033 +55259,2427,reflective,1240857030 +55259,2427,thruthful,1240857046 +55259,3030,Over the top,1240856991 +55259,3741,atmospheric,1240857071 +55259,3741,Cinematography,1240857089 +55259,3741,non-judgemental,1240857108 +55262,260,classic sci-fi,1436147980 +55262,260,space western,1436147990 +55262,134853,cerebral,1436148257 +55262,134853,melancholic,1436148257 +55262,134853,uplifting,1436148257 +55282,2628,childish,1356310042 +55282,88140,no character development.,1356310642 +55282,88140,no plot,1356310642 +55285,29,dark fairytale,1185760041 +55285,288,psychedelic,1185762451 +55285,1268,Christian Slater,1185760476 +55285,2161,Classic,1185760527 +55285,3949,drugs,1185760461 +55285,48394,bittersweet,1185760514 +55285,52281,funny!,1185760565 +55295,260,mysticism,1444851903 +55295,260,universe,1444851924 +55296,140505,hoen,1451120135 +55321,260,futuristic,1439796557 +55321,260,sci-fi,1439796566 +55331,44195,spin,1165113925 +55332,1270,Michael J. Fox,1252319235 +55332,5349,Willem Dafoe,1252319370 +55334,260,"action, scifi",1431495260 +55351,293,great acting,1440812865 +55351,293,hitman,1440812861 +55351,296,Quentin Tarantino,1440812901 +55351,296,Uma Thurman,1440812895 +55351,1089,dark comedy,1440812920 +55351,1089,Quentin Tarantino,1440812914 +55351,71535,dark comedy,1440812958 +55351,71535,Woody Harrelson,1440812961 +55351,83134,satire,1440812982 +55386,1060,90s,1284985452 +55386,1060,great dialogue,1284985421 +55386,1060,Jon Favreau,1284985441 +55386,1060,Perfect timing,1284985430 +55386,1060,Vince Vaughn,1284985434 +55386,2810,distorted reality,1369583850 +55386,4015,complete garbage,1322762427 +55386,4015,stupid,1322762405 +55386,5954,Edward Norton,1318266203 +55386,5954,Philip Seymour Hoffman,1318266201 +55386,30803,cerebral,1368629338 +55386,30803,magic realism,1368629345 +55386,30803,very little dialogue,1368629322 +55386,30803,visual,1368629342 +55386,55820,coen brothers,1331066766 +55386,55820,dark,1331066787 +55386,55820,great acting,1331066769 +55386,55820,violent,1331066777 +55386,58376,Biased,1322517513 +55386,58376,Bullshit,1322517511 +55386,58376,Conspiracy Theory,1322517519 +55386,58376,inaccurate,1322517515 +55386,58376,Lies,1322517509 +55386,67087,bromance,1284985517 +55386,67087,Jason Segel,1284985505 +55386,67087,Paul Rudd,1284985508 +55386,68237,Sam Rockwell,1369583903 +55386,72226,Bill Murray,1283782025 +55386,77800,ridiculous,1325698542 +55386,77800,silly,1325698519 +55386,78836,beautiful,1368629198 +55386,78836,camerawork,1368629195 +55386,78836,psychedelic,1368629220 +55386,78836,too long,1368629191 +55386,79132,visually appealing,1331065672 +55386,83976,Steve Coogan,1325698343 +55386,86190,beautiful cinematography,1331065447 +55386,86190,great soundtrack,1331065455 +55386,86190,strong female lead,1331065458 +55386,88129,atmospheric,1331066732 +55386,88129,cinematography,1331066736 +55386,88129,great soundtrack,1331066749 +55386,88129,violence,1331066746 +55386,88129,visually appealing,1331066744 +55386,89470,Matt Damon,1331065422 +55386,89470,plausible,1331065416 +55386,89470,virus,1331065425 +55386,97230,enlightening,1368629547 +55386,97230,Film Theory & Criticism,1368629554 +55386,97230,Keanu Reeves,1368629561 +55386,97230,movie business,1368629557 +55386,97326,great soundtrack,1368629444 +55386,97326,Neo-realism,1368629455 +55386,97326,Plan B,1368629478 +55386,102469,good acting,1368629073 +55386,102469,good pacing,1368629104 +55420,364,Elton John,1160604170 +55430,2571,salvation,1428739170 +55430,2571,virtual reality,1428739170 +55430,2571,war,1428739170 +55430,95875,agent/assassin with false memories/amnesia,1428739008 +55430,110730,artificial intelligence,1428738651 +55430,112171,time control,1428739203 +55439,4993,based on book,1446388476 +55439,4993,science fiction,1446388508 +55439,5995,classical music,1446388419 +55439,5995,Oscar Winner,1446388416 +55439,5995,Roman Polanski,1446388411 +55444,3994,My favorite movie of all time,1150793642 +55457,70208,twist ending,1382254835 +55457,70208,unoriginal,1382254828 +55457,91500,dystopia,1376223395 +55457,97913,animation,1377326933 +55457,97913,conspiracy,1377326930 +55457,97913,video games,1377326927 +55457,103253,dystopia,1376223418 +55461,1025,Disney,1153433245 +55461,7438,Quentin Tarantino,1153433585 +55474,260,futuristic,1437170181 +55479,1721,bad acting,1432425961 +55479,1721,based on true story,1432425961 +55479,1721,cliche,1432425961 +55479,1721,tragic drama.,1432425961 +55531,2959,dark comedy,1428866849 +55531,2959,mental illness,1428866845 +55531,2959,psychology,1428866846 +55531,2959,twist ending,1428866839 +55531,5218,animated,1428866541 +55531,5218,animation,1428866535 +55531,5218,Ray Romano,1428866548 +55531,58559,Batman,1428866469 +55531,58559,dark,1428866503 +55531,110730,artificial intelligence,1428866915 +55531,110730,computers,1428866915 +55531,110730,genius,1428866915 +55531,116797,Alan Turing,1428866714 +55531,116797,autism,1428866721 +55531,116797,cryptography,1428866709 +55531,116797,homosexuality,1428866725 +55531,116797,Keira Knightley,1428866724 +55531,116797,mathematics,1428866713 +55531,116797,World War II,1428866711 +55575,110,too long,1438540498 +55575,260,classic,1437790693 +55575,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1437790703 +55575,296,crime,1438526942 +55575,296,good music,1438526942 +55575,296,quentin tarantino,1438526942 +55575,102123,stupid,1439612881 +55581,260,action,1438394906 +55581,260,space epic,1438394836 +55581,480,adventure,1438396412 +55581,480,sci-fi,1438396412 +55581,480,thriller,1438396412 +55621,42584,idealism,1345182144 +55621,42584,Masonic messages,1345182144 +55659,356,feel-good,1434061558 +55659,356,oscar (best picture),1434061558 +55659,356,united states,1434061558 +55667,260,entertaining,1441922690 +55701,4069,Jennifer Lopez,1429972788 +55701,5299,comedy,1429972121 +55701,5299,wedding,1429972130 +55701,5418,action,1429972353 +55701,5418,Matt Damon,1429972369 +55701,45720,chickflick,1429972501 +55701,45720,Meryl Streep,1429972486 +55701,56949,Katherine Heigl,1429972754 +55701,69406,Sandra Bullock,1429972711 +55704,260,Star Wars,1442930482 +55704,260,wars,1442930488 +55718,50872,animation,1429801397 +55718,50872,cooking,1429801411 +55718,50872,paris,1429801407 +55718,68954,computer animation,1429801382 +55718,68954,feel good movie,1429801369 +55718,68954,Pixar,1429801358 +55736,1247,older woman younger man,1251176051 +55736,2657,music,1243630223 +55736,2746,music,1243630249 +55736,2746,rick moranis,1243630260 +55736,2959,Helena Bonham Carter,1243630734 +55736,2959,marla singer,1243630722 +55736,2959,twist ending,1243630712 +55736,4641,high school,1243630669 +55736,4641,older man younger woman,1251176114 +55736,4641,Steve Buscemi,1243630581 +55736,5014,crying,1243630694 +55736,5855,boring,1243630436 +55736,5855,soundtrack,1243630409 +55736,7084,romance,1243630532 +55736,7084,Woody Allen,1243630541 +55736,70293,boring,1251507965 +55741,71838,gadgets,1296919155 +55741,71838,technology,1296919155 +55741,71838,twist,1296919155 +55771,1090,willem defoe,1137419425 +55771,1207,Gregory Peck,1144778026 +55789,74228,time loop,1453646731 +55789,74228,twist ending,1453646739 +55806,58559,superhero,1217776541 +55832,34162,comedy,1424108508 +55832,102686,Bradley Cooper,1424108435 +55834,260,space,1436860014 +55835,47,psychology,1231292358 +55835,44191,dystopia,1231292299 +55844,551,weak story,1348995241 +55844,902,I have difficulty cheering for a hooker,1348895976 +55844,910,Jack Lemmon,1348995014 +55844,910,Marilyn Monroe,1348995046 +55844,910,Tony Curtis,1348995032 +55844,943,I love the depth of love achieved without any physicality,1348895941 +55844,955,Katherine Hepburn,1348994950 +55844,955,Talks too much.,1348994965 +55844,1246,Coming of age,1348896622 +55844,1777,80's Soundtrack,1348896309 +55844,1777,Drew/Adam chemistry,1348896339 +55844,2100,John Candy,1348896234 +55844,2100,Saturday Night Live,1348896255 +55844,3072,Family values.,1348896077 +55844,3072,Follow your heart.,1348896162 +55844,3072,Italian-American culture,1348896078 +55844,3072,Multi-generational respect,1348896136 +55844,3072,Self-discovery,1348896106 +55844,4995,Education,1348996567 +55844,7293,chemistry between actors,1348995514 +55844,7293,walrus,1348995530 +55844,7916,fake surfing,1349648833 +55844,7916,James Darren,1349648792 +55844,7916,Parents made to look stupid,1349648877 +55844,7916,Sandra Dee,1349648729 +55844,7916,surf culture,1349648820 +55844,71745,Wrong colors,1348995929 +55855,318,inspirational,1432507132 +55855,318,redemption,1432507079 +55855,318,twist ending,1432507125 +55855,3000,Hayao Miyazaki,1432506882 +55855,6942,Alan Rickman,1432507215 +55855,31658,fantasy,1432506921 +55855,95088,magical realism,1432507350 +55855,95088,misfits,1432507367 +55855,95088,Understated charm,1432507362 +55855,104374,Bill Nighy,1432507316 +55855,104374,charming,1432507314 +55855,104374,touch of magic,1432507307 +55855,115617,futuristic,1432507052 +55855,115617,heartwarming,1432507052 +55855,115617,imaginative,1432507052 +55861,1307,meg ryan,1177200609 +55882,112093,coming of age,1422650565 +55882,112093,drama,1422650565 +55882,112093,independent film,1422650565 +55882,116951,stand-up comedy,1416162794 +55882,128812,art,1424299113 +55882,128812,documentary,1424299099 +55882,128812,film making,1424299106 +55882,128812,marketing,1424299112 +55891,27866,amazing ending,1265059345 +55891,27866,boring beginning,1265059323 +55891,55247,great soundtrack,1265058743 +55891,55247,road movie,1265058757 +55891,56367,annoying soundtrack,1265059405 +55898,1704,genius,1439247600 +55898,1704,inspirational,1439247590 +55898,1704,intellectual,1439247607 +55898,1704,Robin Williams,1439247596 +55898,1704,university,1439247604 +55898,1961,Dustin Hoffman,1439247559 +55898,4995,genius,1439247672 +55898,4995,inspirational,1439247654 +55898,4995,intelligent,1439247657 +55898,4995,math,1439247659 +55898,4995,mathematics,1439247651 +55898,4995,nobel prize,1439247665 +55898,4995,psychology,1439247647 +55898,8961,Adventure,1439300062 +55898,8961,comedy,1439300053 +55898,8961,family,1439300041 +55898,8961,Oscar (Best Animated Feature),1439300070 +55899,750,nuclear war,1148253927 +55947,750,cold war,1226230454 +55947,750,dark comedy,1226230439 +55947,750,satire,1226230466 +55947,750,Stanley Kubrick,1226230442 +55947,778,black comedy,1226230582 +55947,778,imdb top 250,1226230555 +55947,1222,Vietnam War,1222049571 +55947,1610,cold war,1222049475 +55947,48774,apocalypse,1226230992 +55947,48774,dystopia,1226230983 +55947,48774,end of the world,1226230975 +55947,48774,imdb top 250,1226230981 +55947,48774,war,1226230978 +55955,260,sci-fi,1437628058 +55955,260,space action,1437628067 +55956,39292,censorship,1439499064 +55956,39292,cerebral,1439499040 +55956,39292,historical,1439499071 +55956,39292,journalism,1439499030 +55956,39292,political,1439499075 +55956,39292,politics,1439499068 +55956,39292,suspense,1439499080 +55956,39292,thought-provoking,1439499052 +55956,39292,visually appealing,1439499050 +55956,71033,foreign language,1439485917 +55956,131724,television series,1440768076 +55961,761,enjoyable,1429770962 +55961,761,so bad it's good,1429770903 +55961,1287,Oscar (Best Picture),1429771676 +55961,1287,propaganda,1429771713 +55961,4815,boring,1429771636 +55961,4941,comic feel,1429770762 +55961,4941,So bad it's good,1429770686 +55961,5389,boring,1429771598 +55961,5903,dystopia,1429771037 +55961,5903,post-apocalyptic,1429771054 +55961,8666,ridiculous villain,1429771739 +55961,31950,curse,1429771096 +55961,31950,logic vs superstition,1429771136 +55961,31950,suspense,1429771157 +55961,31950,witchcraft,1429771082 +55961,34405,martial arts,1429771247 +55961,51084,cheesy,1429771958 +55961,81512,depressing,1429772180 +55961,82202,lazy writing,1429771882 +55961,94864,plot hole,1429770869 +55961,94864,religion,1429770855 +55961,94864,underrated,1429770846 +55961,95105,forgettable,1429772157 +55961,96737,Action,1429772230 +55961,98239,implausible,1429772037 +55961,98239,us propaganda,1429772052 +55961,99917,blunt,1429772104 +55961,101088,stylish,1429772127 +55961,106030,isolation,1429771308 +55961,108689,poorly written,1429772016 +55961,110882,dialogue driven,1429771445 +55961,110882,one man show,1429771373 +55961,110882,strong performance,1429771407 +55961,132128,cults,1429770329 +55961,132128,desaturated palette,1429770377 +55961,132128,kidnapping,1429770340 +55961,132128,surreal,1429770541 +55961,132128,twist,1429770421 +55961,132128,twist ending,1429770535 +55961,132567,college,1429770147 +55961,132567,dark comedy,1429770064 +55961,132567,weed,1429770089 +55961,141550,bullying,1440972450 +55961,141550,revenge,1440972464 +55961,141550,school,1440972427 +55987,260,adventure,1437996266 +55987,260,space,1437996256 +55990,260,sci-fi,1284738843 +55990,541,sci-fi,1284738906 +55990,1274,anime,1284744327 +55990,1274,cyberpunk,1284744332 +55990,1274,scifi,1284744334 +55990,5069,anime,1284744367 +55990,5069,Fantasy,1284744375 +55990,5069,mecha,1284744369 +55990,6283,anime,1284744351 +55990,8464,documentary,1284744564 +55990,8464,propaganda,1284744573 +55990,31184,anime,1284744422 +55990,31660,anime,1284744388 +55990,31660,steampunk,1284744394 +55990,37830,anime,1284744433 +55990,37830,final fantasy,1284744439 +55990,42163,documentary,1284744554 +55990,52885,anime,1284744307 +55990,52885,dreamlike,1284744311 +55990,52885,psychedellic,1284744313 +55990,62336,anime,1284744244 +55990,62336,cult film,1284744273 +55990,62336,mecha,1284744281 +55990,62336,rock and roll,1284744290 +55990,62336,stylish,1284744292 +55990,62336,surreal,1284744248 +55990,71057,dark fantasy,1284744457 +55990,71057,sci-fi,1284744455 +55994,293,Luc Besson,1151527790 +55994,1216,Luc Besson,1151527808 +55994,1527,Luc Besson,1151527819 +55994,4225,australian,1151527492 +55994,4225,comedy,1151527492 +56032,7762,intelligent,1210541608 +56048,47,atmospheric,1451834761 +56048,47,biblical,1451834711 +56048,47,brad pitt,1451834772 +56048,47,crime,1451834762 +56048,47,dark,1451834758 +56048,47,David Fincher,1451834709 +56048,47,detective,1451834712 +56048,47,disturbing,1451834774 +56048,47,drama,1451834719 +56048,47,great ending,1451834756 +56048,47,greed,1451834743 +56048,47,grim,1451834742 +56048,47,Gwyneth Paltrow,1451834715 +56048,47,horror,1451834751 +56048,47,imdb top 250,1451834720 +56048,47,investigation,1451834745 +56048,47,Kevin Spacey,1451834754 +56048,47,morgan freeman,1451834768 +56048,47,mystery,1451834746 +56048,47,philosophical,1451834749 +56048,47,police,1451834707 +56048,47,powerful ending,1451834759 +56048,47,psychological,1451834752 +56048,47,psychology,1451834769 +56048,47,religion,1451834748 +56048,47,serial killer,1451834764 +56048,47,thriller,1451834717 +56048,47,twist ending,1451834766 +56048,47,twists & turns,1451834705 +56048,47,violent,1451834704 +56048,48,animation,1451835036 +56048,48,Disney,1451835035 +56048,48,Disney animated feature,1451835038 +56048,296,1990s,1451836050 +56048,296,achronological,1451835943 +56048,296,action,1451835801 +56048,296,action packed,1451835944 +56048,296,aggressive,1451836260 +56048,296,amazing,1451836262 +56048,296,amazing dialogues,1451835949 +56048,296,anthology,1451835953 +56048,296,assassin,1451835880 +56048,296,atmospheric,1451835886 +56048,296,AWESOME,1451835917 +56048,296,bad ass,1451835956 +56048,296,bad language,1451836014 +56048,296,bad-ass,1451836263 +56048,296,bible,1451836265 +56048,296,biblical references,1451836269 +56048,296,big boys with guns,1451836281 +56048,296,big name actors,1451836073 +56048,296,Black comedy,1451835874 +56048,296,black humor,1451835908 +56048,296,black humour,1451836074 +56048,296,blood,1451835936 +56048,296,blood splatters,1451835915 +56048,296,bloody,1451835994 +56048,296,bruce willis,1451835804 +56048,296,brutality,1451836272 +56048,296,casual violence,1451836076 +56048,296,character development,1451836078 +56048,296,characters,1451836051 +56048,296,classic,1451835808 +56048,296,classic movie,1451836079 +56048,296,coke,1451836081 +56048,296,comedy,1451835889 +56048,296,conversation,1451836053 +56048,296,cool,1451835842 +56048,296,cool style,1451836083 +56048,296,crime,1451835797 +56048,296,crime scene scrubbing,1451836085 +56048,296,cult,1451835824 +56048,296,cult classic,1451836054 +56048,296,cult film,1451835862 +56048,296,dance,1451836111 +56048,296,dancing,1451836011 +56048,296,dark,1451835836 +56048,296,dark comedy,1451835783 +56048,296,dark humor,1451835895 +56048,296,dialogue,1451835830 +56048,296,different,1451836113 +56048,296,diner,1451836115 +56048,296,disjointed timeline,1451836013 +56048,296,disturbing,1451836122 +56048,296,drama,1451836364 +56048,296,drug overdose,1451836213 +56048,296,drugs,1451835872 +56048,296,drugs & music,1451836215 +56048,296,ensemble cast,1451835992 +56048,296,entertaining,1451836042 +56048,296,entirely dialogue,1451835976 +56048,296,episodic,1451836033 +56048,296,exciting,1451835977 +56048,296,fast paced,1451836007 +56048,296,fast-paced,1451836039 +56048,296,film noir,1451836216 +56048,296,film-noir,1451836218 +56048,296,foul language,1451836274 +56048,296,fun,1451835971 +56048,296,funny,1451835894 +56048,296,gangster,1451835897 +56048,296,gangsters,1451835834 +56048,296,genius,1451836219 +56048,296,golden watch,1451836029 +56048,296,good dialogue,1451835890 +56048,296,good music,1451835828 +56048,296,gore,1451836022 +56048,296,great acting,1451836024 +56048,296,great dialogue,1451835841 +56048,296,great soundtrack,1451835892 +56048,296,gritty,1451835979 +56048,296,guns,1451835919 +56048,296,Harvey Keitel,1451836275 +56048,296,heroin,1451836270 +56048,296,Highly quotable,1451835837 +56048,296,hit men,1451835839 +56048,296,hitman,1451836026 +56048,296,homosexuality,1451836221 +56048,296,humour,1451836222 +56048,296,iconic,1451836028 +56048,296,imdb top 250,1451835825 +56048,296,innovative,1451836224 +56048,296,intellectual,1451836225 +56048,296,intelligent,1451836017 +56048,296,intense,1451835844 +56048,296,interesting,1451835937 +56048,296,intertwining storylines,1451836227 +56048,296,interwoven storylines,1451836229 +56048,296,ironic,1451836032 +56048,296,irony,1451836034 +56048,296,John Travolta,1451835882 +56048,296,killer-as-protagonist,1451836231 +56048,296,los angeles,1451836232 +56048,296,Mafia,1451835850 +56048,296,masterpiece,1451835875 +56048,296,meaningless violence,1451836234 +56048,296,milkshake,1451836236 +56048,296,mobster,1451836237 +56048,296,mobsters,1451836239 +56048,296,monologue,1451836248 +56048,296,motherfucker,1451836016 +56048,296,multiple stories,1451836249 +56048,296,multiple storylines,1451835870 +56048,296,neo-noir,1451835916 +56048,296,noir,1451835845 +56048,296,non-linear,1451835817 +56048,296,non-linear timeline,1451836251 +56048,296,nonlinear,1451835784 +56048,296,nonlinear narrative,1451836057 +56048,296,nonlinear storyline,1451836371 +56048,296,nonlinear timeline,1451836394 +56048,296,notable soundtrack,1451835900 +56048,296,offensive,1451836402 +56048,296,organised crime,1451836405 +56048,296,organized crime,1451835811 +56048,296,original,1451835940 +56048,296,original plot,1451836021 +56048,296,out of order,1451836368 +56048,296,parody,1451836315 +56048,296,philosophical,1451836067 +56048,296,pop culture references,1451836009 +56048,296,psychological,1451836315 +56048,296,pulp,1451835934 +56048,296,Quentin Tarantino,1451835781 +56048,296,quirky,1451835813 +56048,296,Quotable,1451835906 +56048,296,r:disturbing violent content including rape,1451836072 +56048,296,r:disturbing violent images,1451836357 +56048,296,r:graphic sexuality,1451836325 +56048,296,r:some violence,1451836322 +56048,296,r:strong bloody violence,1451836319 +56048,296,r:strong language,1451836044 +56048,296,r:sustained strong stylized violence,1451836317 +56048,296,r:violence,1451835991 +56048,296,random,1451836046 +56048,296,rape,1451835973 +56048,296,retro,1451836048 +56048,296,Roger Avary,1451836068 +56048,296,royal with cheese,1451836320 +56048,296,Samuel L. Jackson,1451835796 +56048,296,sarcasm,1451836323 +56048,296,satire,1451836327 +56048,296,sexy,1451836358 +56048,296,smart writing,1451836406 +56048,296,sophisticated,1451836283 +56048,296,soundtrack,1451836006 +56048,296,splatter,1451836293 +56048,296,storytelling,1451835884 +56048,296,stylish,1451835831 +56048,296,stylized,1451835807 +56048,296,suspense,1451836070 +56048,296,Tarantino,1451835805 +56048,296,thought-provoking,1451836408 +56048,296,thriller,1451835968 +56048,296,travolta,1451835966 +56048,296,twist ending,1451836409 +56048,296,Uma Thurman,1451835876 +56048,296,unique,1451836411 +56048,296,unpredictable,1451836279 +56048,296,unusual,1451836412 +56048,296,very funny,1451836020 +56048,296,violence,1451835859 +56048,296,violent,1451835814 +56048,296,witty,1451835996 +56048,586,Catherine O'Hara,1451834690 +56048,586,childhood classics,1451834675 +56048,586,christmas,1451834672 +56048,586,Daniel Stern,1451834692 +56048,586,family,1451834677 +56048,586,for kids,1451834684 +56048,586,funny,1451834688 +56048,586,Macaulay Culkin,1451834678 +56048,586,nostalgia,1451834674 +56048,586,traps,1451834686 +56048,1193,based on a book,1451835710 +56048,1193,classic,1451835714 +56048,1193,depressing,1451835712 +56048,1193,drama,1451835713 +56048,1193,emotional,1451835700 +56048,1193,jack nicholson,1451835693 +56048,1193,mental hospital,1451835708 +56048,1193,mental illness,1451835694 +56048,1193,Oscar (Best Actor),1451835707 +56048,1193,Oscar (Best Directing),1451835718 +56048,1193,Oscar (Best Picture),1451835703 +56048,1193,powerful ending,1451835705 +56048,1193,psychological,1451835699 +56048,1193,psychology,1451835695 +56048,1193,social satire,1451835704 +56048,1193,violence,1451835715 +56048,1271,based on a book,1451834200 +56048,1271,friendship,1451834209 +56048,1271,heartwarming,1451834195 +56048,1271,ku klux klan,1451834204 +56048,1271,Mary-Louise Parker,1451834211 +56048,1271,racism,1451834208 +56048,1271,train,1451834206 +56048,1271,unlikely friendships,1451834198 +56048,1997,based on a book,1451833558 +56048,1997,biblical,1451833549 +56048,1997,Catholicism,1451833564 +56048,1997,Christianity,1451833529 +56048,1997,Classic,1451833576 +56048,1997,controversial,1451833553 +56048,1997,creepy,1451833539 +56048,1997,cult,1451833547 +56048,1997,demons,1451833572 +56048,1997,exorcism,1451833523 +56048,1997,horror,1451833540 +56048,1997,imdb top 250,1451833578 +56048,1997,possession,1451833535 +56048,1997,religion,1451833531 +56048,1997,satanism,1451833556 +56048,1997,scary,1451833574 +56048,2186,Alfred Hitchcock,1451833615 +56048,2186,great concept,1451833617 +56048,2186,murder,1451833619 +56048,2186,tennis,1451833623 +56048,2186,trains,1451833625 +56048,2357,alcoholism,1451834250 +56048,2357,bittersweet,1451788413 +56048,2357,bleak,1451834261 +56048,2357,brazil,1451834236 +56048,2357,compassionate,1451834253 +56048,2357,emotional,1451834259 +56048,2357,faith,1451788445 +56048,2357,father-son relationship,1451834262 +56048,2357,heartwarming,1451788435 +56048,2357,literate,1451834264 +56048,2357,orphans,1451834241 +56048,2357,Rio de Janeiro,1451834243 +56048,2357,road trip,1451834239 +56048,2357,South America,1451834244 +56048,2357,UNLIKELY FRIENDSHIPS,1451788453 +56048,2357,Walter Salles,1451834246 +56048,2959,action,1451834319 +56048,2959,atmospheric,1451834351 +56048,2959,based on a book,1451834363 +56048,2959,Brad Pitt,1451834288 +56048,2959,Chuck Palahniuk,1451834326 +56048,2959,classic,1451834343 +56048,2959,complicated,1451834341 +56048,2959,crime,1451834372 +56048,2959,dark,1451834371 +56048,2959,dark comedy,1451834293 +56048,2959,David Fincher,1451834366 +56048,2959,disturbing,1451834317 +56048,2959,Edward Norton,1451834287 +56048,2959,fighting,1451834320 +56048,2959,helena bonham carter,1451834334 +56048,2959,imaginary friend,1451834337 +56048,2959,imdb top 250,1451834332 +56048,2959,mental illness,1451834302 +56048,2959,mindfuck,1451834305 +56048,2959,narrated,1451834329 +56048,2959,Palahnuik,1451834328 +56048,2959,philosophical,1451834361 +56048,2959,philosophy,1451834298 +56048,2959,powerful ending,1451834368 +56048,2959,psychological,1451834355 +56048,2959,psychology,1451834285 +56048,2959,quirky,1451834316 +56048,2959,satirical,1451834364 +56048,2959,social commentary,1451834295 +56048,2959,stylized,1451834335 +56048,2959,surreal,1451834296 +56048,2959,thought-provoking,1451834304 +56048,2959,twist,1451834339 +56048,2959,twist ending,1451834283 +56048,2959,violence,1451834300 +56048,2959,violent,1451834353 +56048,3176,1950s,1451834158 +56048,3176,based on a book,1451834151 +56048,3176,Cate Blanchett,1451834157 +56048,3176,creepy,1451834132 +56048,3176,crime,1451834160 +56048,3176,disturbing,1451834121 +56048,3176,great acting,1451834144 +56048,3176,great cast,1451834148 +56048,3176,Gwyneth Paltrow,1451834140 +56048,3176,italy,1451834138 +56048,3176,Jude Law,1451834120 +56048,3176,Matt Damon,1451834117 +56048,3176,murder,1451834136 +56048,3176,obsession,1451834135 +56048,3176,Philip Seymour Hoffman,1451834134 +56048,3176,psychology,1451834116 +56048,3176,secrets,1451834155 +56048,3176,serial killer,1451834123 +56048,3176,suspense,1451834150 +56048,4720,afterlife,1451834962 +56048,4720,Alejandro Amenábar,1451834971 +56048,4720,alternate reality,1451834969 +56048,4720,atmospheric,1451834949 +56048,4720,beautiful,1451834966 +56048,4720,Beautiful Woman,1451834975 +56048,4720,Bible,1451834973 +56048,4720,claustrophobic,1451834964 +56048,4720,clever,1451834978 +56048,4720,dark,1451834979 +56048,4720,death,1451834983 +56048,4720,Drama,1451834982 +56048,4720,ghosts,1451834947 +56048,4720,gothic,1451834965 +56048,4720,haunted house,1451834954 +56048,4720,Horror,1451834950 +56048,4720,Isolation,1451834980 +56048,4720,mother-daughter relationships,1451834976 +56048,4720,Nicole Kidman,1451834952 +56048,4720,religion,1451834986 +56048,4720,scary,1451834968 +56048,4720,supernatural,1451834959 +56048,4720,surprise ending,1451834960 +56048,4720,twist ending,1451834946 +56048,4973,atmospheric,1451835459 +56048,4973,Audrey Tautou,1451835469 +56048,4973,beautiful,1451835489 +56048,4973,beautifully filmed,1451835425 +56048,4973,comedy,1451835457 +56048,4973,coming of age,1451835480 +56048,4973,cult film,1451835467 +56048,4973,drama,1451835585 +56048,4973,fairy tale,1451835464 +56048,4973,feel good movie,1451835485 +56048,4973,feel-good,1451835428 +56048,4973,female protagonist,1451835494 +56048,4973,France,1451835478 +56048,4973,French,1451835462 +56048,4973,french movie,1451835486 +56048,4973,great cinematography,1451835491 +56048,4973,great soundtrack,1451835453 +56048,4973,idealism,1451835458 +56048,4973,imagination,1451835475 +56048,4973,imdb top 250,1451835477 +56048,4973,inspirational,1451835460 +56048,4973,Jean-Pierre Jeunet,1451835587 +56048,4973,love,1451835482 +56048,4973,love story,1451835505 +56048,4973,modern fantasy,1451835493 +56048,4973,music,1451835473 +56048,4973,narrated,1451835584 +56048,4973,notable soundtrack,1451835455 +56048,4973,Paris,1451835430 +56048,4973,quirky,1451835427 +56048,4973,quirky romantic,1451835504 +56048,4973,romance,1451835450 +56048,4973,romantic,1451835474 +56048,4973,romantic but not cheesy,1451835497 +56048,4973,stylized,1451835452 +56048,4973,surreal,1451835447 +56048,4973,sweet,1451835483 +56048,4973,visually appealing,1451835466 +56048,4973,whimsical,1451835445 +56048,4995,based on a book,1451835119 +56048,4995,based on a true story,1451835117 +56048,4995,biography,1451835111 +56048,4995,college,1451835122 +56048,4995,Drama,1451835127 +56048,4995,Education,1451835128 +56048,4995,game theory,1451835133 +56048,4995,genius,1451835096 +56048,4995,insanity,1451835116 +56048,4995,inspirational,1451835105 +56048,4995,intelligent,1451835102 +56048,4995,Jennifer Connelly,1451835131 +56048,4995,math,1451835110 +56048,4995,mathematics,1451835091 +56048,4995,mental illness,1451835108 +56048,4995,nobel prize,1451835130 +56048,4995,Oscar (Best Directing),1451835120 +56048,4995,Oscar (Best Picture),1451835114 +56048,4995,Oscar (Best Supporting Actress),1451835123 +56048,4995,Oscar Winner,1451835126 +56048,4995,psychology,1451835091 +56048,4995,romance,1451835125 +56048,4995,Russell Crowe,1451835100 +56048,4995,schizophrenia,1451835093 +56048,4995,scientist,1451835134 +56048,4995,true story,1451835104 +56048,4995,twist ending,1451835113 +56048,6323,Amanda Peet,1451835656 +56048,6323,confusing,1451835652 +56048,6323,creepy,1451835665 +56048,6323,dark,1451835651 +56048,6323,John Cusack,1451835668 +56048,6323,multiple personalities,1451835675 +56048,6323,multiple storylines,1451835678 +56048,6323,mystery,1451835660 +56048,6323,predictable,1451835673 +56048,6323,psychology,1451835658 +56048,6323,Ray Liotta,1451835649 +56048,6323,serial killer,1451835682 +56048,6323,silly,1451835647 +56048,6323,split personality,1451835663 +56048,6323,surreal,1451835667 +56048,6323,suspense,1451835680 +56048,6323,suspenseful,1451835683 +56048,6323,thriller,1451835677 +56048,6323,twist ending,1451835662 +56048,7254,alternate endings,1451835287 +56048,7254,alternate reality,1451835213 +56048,7254,Ashton Kutcher,1451835225 +56048,7254,Bittersweet,1451835289 +56048,7254,Child abuse,1451835232 +56048,7254,intense,1451835235 +56048,7254,love,1451835290 +56048,7254,memory,1451835233 +56048,7254,Mystery,1451835222 +56048,7254,psychology,1451835214 +56048,7254,romance,1451835291 +56048,7254,sci-fi,1451835219 +56048,7254,science fiction,1451835229 +56048,7254,suspense,1451835221 +56048,7254,thought-provoking,1451835237 +56048,7254,time travel,1451835212 +56048,7254,twist ending,1451835215 +56048,7254,twists & turns,1451835231 +56048,30820,child abuse,1451835315 +56048,30820,could go farther,1451835325 +56048,30820,disturbing,1451835316 +56048,30820,Disturbing and moving,1451835313 +56048,30820,honest,1451835306 +56048,30820,Kevin Bacon,1451835314 +56048,30820,mental health,1451835319 +56048,30820,paedophilia,1451835308 +56048,30820,pedophile,1451835321 +56048,44555,Berlin,1451836443 +56048,44555,breathtaking,1451836450 +56048,44555,character development,1451836476 +56048,44555,Cold War,1451836447 +56048,44555,communism,1451836457 +56048,44555,complex characters,1451836436 +56048,44555,director-screenwriter,1451836468 +56048,44555,drama,1451836444 +56048,44555,East Germany,1451836421 +56048,44555,excellent script,1451836439 +56048,44555,Florian Henckel von Donnersmarck,1451836470 +56048,44555,foreign,1451836465 +56048,44555,freedom of expression,1451836432 +56048,44555,german,1451836452 +56048,44555,Germany,1451836434 +56048,44555,great acting,1451836453 +56048,44555,historical,1451836446 +56048,44555,Nudity (Topless),1451836455 +56048,44555,Oscar Winner,1451836473 +56048,44555,psychology,1451836474 +56048,44555,realisitc acting,1451836463 +56048,44555,spies,1451836462 +56048,44555,spying,1451836423 +56048,44555,Stasi,1451836430 +56048,44555,subtle performances,1451836467 +56048,44555,surveillance,1451836433 +56048,44555,suspense,1451836441 +56048,44555,Ulrich Mühe,1451836459 +56048,48780,atmospheric,1451833935 +56048,48780,based on a book,1451833956 +56048,48780,Christian Bale,1451833928 +56048,48780,Christoper Nolan,1451833997 +56048,48780,Christopher Nolan,1451833971 +56048,48780,complicated,1451833937 +56048,48780,dark,1451833946 +56048,48780,David Bowie,1451833974 +56048,48780,enigmatic,1451833958 +56048,48780,ensemble cast,1451833981 +56048,48780,great ending,1451833972 +56048,48780,Hugh Jackman,1451833942 +56048,48780,illusionist,1451834000 +56048,48780,magic,1451833930 +56048,48780,magician,1451834012 +56048,48780,Michael Caine,1451833940 +56048,48780,mystery,1451833948 +56048,48780,Nicola Tesla,1451833993 +56048,48780,nonlinear,1451833932 +56048,48780,obsession,1451833968 +56048,48780,philosophy,1451834002 +56048,48780,psychological,1451833952 +56048,48780,revenge,1451833969 +56048,48780,rivalry,1451833979 +56048,48780,romance,1451833995 +56048,48780,sacrifice,1451834006 +56048,48780,Scarlett Johansson,1451833933 +56048,48780,sci-fi,1451833976 +56048,48780,secrets,1451834004 +56048,48780,stage magic,1451834008 +56048,48780,steampunk,1451833950 +56048,48780,storytelling,1451834011 +56048,48780,teleportation,1451833990 +56048,48780,tense,1451833991 +56048,48780,tesla,1451834009 +56048,48780,thriller,1451833954 +56048,48780,twist ending,1451833925 +56048,48780,twists & turns,1451833978 +56048,58803,based on a book,1451835178 +56048,58803,based on a true story,1451835181 +56048,58803,blackjack,1451835171 +56048,58803,casino,1451835173 +56048,58803,con artists,1451835194 +56048,58803,gambling,1451835179 +56048,58803,genius,1451835204 +56048,58803,Kevin Spacey,1451835174 +56048,58803,Las Vegas,1451835176 +56048,58803,Massachusetts Institute of Technology,1451835195 +56048,58803,mathematics,1451835170 +56048,58803,predictable,1451835201 +56048,74458,asylum,1451833866 +56048,74458,atmospheric,1451833862 +56048,74458,Ben Kingsley,1451833876 +56048,74458,cinematography,1451833894 +56048,74458,ending twist,1451833863 +56048,74458,insanity,1451833857 +56048,74458,intense,1451833879 +56048,74458,island,1451833896 +56048,74458,Leonardo DiCaprio,1451788626 +56048,74458,Mark Ruffalo,1451833892 +56048,74458,Martin Scorsese,1451833860 +56048,74458,Mental Institution,1451833887 +56048,74458,mentali illness,1451833917 +56048,74458,Michelle Williams,1451833913 +56048,74458,mindfuck,1451833865 +56048,74458,mystery,1451833858 +56048,74458,nazis,1451833909 +56048,74458,plot twist,1451788618 +56048,74458,Predictable,1451833905 +56048,74458,psychological,1451788622 +56048,74458,Psychological Thriller,1451788629 +56048,74458,reality or imagination?,1451833903 +56048,74458,sad,1451833918 +56048,74458,story,1451833901 +56048,74458,stylized,1451833877 +56048,74458,surreal,1451833882 +56048,74458,thought-provoking,1451833870 +56048,74458,too long,1451833898 +56048,74458,twist ending,1451788624 +56048,74458,twisted ending,1451833873 +56048,74458,World War II,1451833915 +56048,79132,action,1451833654 +56048,79132,alternate reality,1451833631 +56048,79132,ambiguous ending,1451833736 +56048,79132,big budget,1451833734 +56048,79132,cerebral,1451833707 +56048,79132,Christopher Nolan,1451833663 +56048,79132,Cillian Murphy,1451833819 +56048,79132,cinematography,1451833744 +56048,79132,clever,1451833668 +56048,79132,complex,1451833850 +56048,79132,complicated,1451833648 +56048,79132,confusing plot,1451833771 +56048,79132,drama,1451833726 +56048,79132,dream,1451833746 +56048,79132,dream within a dream,1451833741 +56048,79132,dreamlike,1451833657 +56048,79132,dreams,1451833651 +56048,79132,editing,1451833774 +56048,79132,Ellen Page,1451833695 +56048,79132,ending,1451833815 +56048,79132,ensemble cast,1451833722 +56048,79132,fantasy,1451833731 +56048,79132,great cast,1451833776 +56048,79132,great soundtrack,1451833706 +56048,79132,Hans Zimmer,1451833748 +56048,79132,heist,1451833691 +56048,79132,imagination,1451833814 +56048,79132,imaginative,1451833846 +56048,79132,imdb top 250,1451833820 +56048,79132,intellectual,1451833659 +56048,79132,Intelligent scifi,1451833764 +56048,79132,Intense,1451833712 +56048,79132,interesting,1451833766 +56048,79132,Joseph Gordon-Levitt,1451833700 +56048,79132,Ken Watanabe,1451833831 +56048,79132,Leonardo DiCaprio,1451833639 +56048,79132,long,1451833761 +56048,79132,makes you think,1451833751 +56048,79132,Marion Cotillard,1451833833 +56048,79132,memory,1451833714 +56048,79132,Michael Caine,1451833711 +56048,79132,mind games,1451833835 +56048,79132,mindfuck,1451833640 +56048,79132,multiple interpretations,1451833698 +56048,79132,multiple realities,1451833843 +56048,79132,music,1451833758 +56048,79132,open ending,1451833756 +56048,79132,original,1451833754 +56048,79132,original plot,1451833844 +56048,79132,philosophy,1451833666 +56048,79132,plot twist,1451833822 +56048,79132,predictable,1451833812 +56048,79132,psychological,1451833709 +56048,79132,psychology,1451833720 +56048,79132,questions reality,1451833786 +56048,79132,sci-fi,1451833642 +56048,79132,science fiction,1451833728 +56048,79132,soundtrack,1451833749 +56048,79132,special effects,1451833826 +56048,79132,subconscious,1451833788 +56048,79132,surreal,1451833637 +56048,79132,suspense,1451833692 +56048,79132,thought-provoking,1451833634 +56048,79132,thriller,1451833724 +56048,79132,Tom Hardy,1451833810 +56048,79132,too much explaining,1451833783 +56048,79132,twist ending,1451833665 +56048,79132,unpredictable,1451833732 +56048,79132,visually appealing,1451833633 +56048,79132,visually stunning,1451833738 +56048,79132,weightlessness,1451833848 +56048,81845,1930s,1451834627 +56048,81845,based on a true story,1451834598 +56048,81845,cinematography,1451834644 +56048,81845,Colin Firth,1451834611 +56048,81845,complex characters,1451834612 +56048,81845,disability,1451834607 +56048,81845,drama,1451834615 +56048,81845,emotional,1451834605 +56048,81845,England,1451834616 +56048,81845,excellent script,1451834619 +56048,81845,father-son relationship,1451834651 +56048,81845,feel-good,1451834609 +56048,81845,friendship,1451834606 +56048,81845,Geoffrey Rush,1451834641 +56048,81845,great performances,1451834623 +56048,81845,Guy Pearce,1451834664 +56048,81845,Helena Bonham Carter,1451834621 +56048,81845,historical,1451834614 +56048,81845,IMDB Top 250,1451834646 +56048,81845,inspirational,1451834648 +56048,81845,king,1451834654 +56048,81845,London,1451834666 +56048,81845,Oscar (Best Picture),1451834600 +56048,81845,politics,1451834643 +56048,81845,royalty,1451834650 +56048,81845,stammering,1451834625 +56048,81845,therapy,1451834647 +56048,81845,true story,1451834608 +56048,81845,United Kingdom,1451834662 +56048,81845,war,1451834636 +56048,89356,argentina,1451834218 +56048,89356,comedy,1451834219 +56048,89356,darin,1451834221 +56048,89356,Ricardo Darín,1451834222 +56048,89356,Sebastián Borensztein,1451834224 +56048,89356,Un cuento chino,1451834228 +56048,89864,Anna Kendrick,1451835621 +56048,89864,cancer,1451835611 +56048,89864,cliche,1451835635 +56048,89864,comedy,1451835640 +56048,89864,disease,1451835639 +56048,89864,drugs,1451835617 +56048,89864,emotional,1451835612 +56048,89864,friendship,1451835637 +56048,89864,funny scenes,1451835616 +56048,89864,honest,1451835620 +56048,89864,humor,1451835614 +56048,89864,Joseph Gordon-Levitt,1451835607 +56048,89864,predictable,1451835627 +56048,89864,Seth Rogen,1451835609 +56048,89864,touching,1451835618 +56048,89864,unrealistic therapist,1451835633 +56048,92954,homophobia,1451834909 +56048,92954,homosexuality and religion,1451834931 +56048,92954,LGBT,1451834892 +56048,92954,mother-son relationship,1451834894 +56048,96845,Brazil,1451834999 +56048,130630,Brazil,1451834427 +56048,130630,Germany,1451834420 +56048,130630,LGBT,1451834418 +56048,130630,romance,1451834443 +56048,130630,sibling relationship,1451834591 +56048,133581,homophobia,1451835394 +56048,133581,Mariana Rondón,1451835344 +56048,133581,South America,1451835359 +56051,296,funny,1433720561 +56051,296,original,1433720561 +56051,296,twisted,1433720561 +56051,2318,child abuse,1434224209 +56051,2318,dysfunctional family,1434224204 +56051,2318,loneliness,1434224222 +56051,2318,sexuality,1434224173 +56051,74458,intence,1433720480 +56051,74458,psychedelic,1433720472 +56051,74458,psychological,1433720405 +56051,74458,twisted ending,1433720498 +56061,19,Stupid as Hell,1287616181 +56061,47,atmospheric,1287614881 +56061,47,psychology,1287614884 +56061,50,Kevin Spacey,1287614243 +56061,50,twist ending,1287614240 +56061,153,franchise beaten to death,1287616213 +56061,153,Stupid as Hell,1287616187 +56061,260,EPIC,1287614582 +56061,260,great soundtrack,1288733509 +56061,260,sci-fi,1287614570 +56061,260,Star Wars,1287614564 +56061,296,atmospheric,1287615089 +56061,296,nonlinear,1287615084 +56061,344,Stupid as Hell,1287616176 +56061,524,inspirational,1287614893 +56061,597,Julia Roberts is stupid ugly and can't act,1287616398 +56061,904,Alfred Hitchcock,1287615060 +56061,904,tense,1287615056 +56061,919,based on a book,1287607702 +56061,1073,based on a book,1287607698 +56061,1073,Fantasy,1287607691 +56061,1073,surreal,1287607695 +56061,1097,Steven Spielberg,1288735080 +56061,1130,classic horror,1294524901 +56061,1130,werewolves,1294524853 +56061,1136,spoof,1288733788 +56061,1196,EPIC,1287614591 +56061,1196,sci-fi,1287614420 +56061,1196,Star Wars,1287614591 +56061,1197,fairy tale,1287615113 +56061,1198,great soundtrack,1288733634 +56061,1198,Steven Spielberg,1288733643 +56061,1210,EPIC,1287614600 +56061,1210,great soundtrack,1288733525 +56061,1210,sci-fi,1287614416 +56061,1210,Star Wars,1287614600 +56061,1219,Alfred Hitchcock,1287615095 +56061,1219,psychology,1287615098 +56061,1258,atmospheric,1287614829 +56061,1258,Jack Nicholson,1287614817 +56061,1258,paranormal,1287614863 +56061,1258,psychological,1287614822 +56061,1258,Stephen King,1287614668 +56061,1268,1980s,1289058041 +56061,1268,censorship,1289057971 +56061,1268,Christian Slater,1289058037 +56061,1268,FCC,1289058025 +56061,1268,rebellion,1289057998 +56061,1268,rock and roll,1289058050 +56061,1278,Incorrectly rated as Horror,1313381880 +56061,1298,surreal,1287615191 +56061,1347,freddy krueger,1287615240 +56061,1347,horror,1287615235 +56061,1374,great soundtrack,1288733486 +56061,1374,sci-fi,1287614493 +56061,1374,Star Trek,1287614512 +56061,1405,franchise beaten to death,1287616219 +56061,1405,Stupid as Hell,1287616218 +56061,1569,Julia Roberts,1287616520 +56061,1663,Bill Murray,1287614433 +56061,1663,comedy,1287614437 +56061,1958,Jack Nicholson,1288733331 +56061,1958,sentimental,1288733346 +56061,1958,tear jerker,1288733340 +56061,1984,franchise beaten to death,1287616309 +56061,1984,Stupid as Hell,1287616309 +56061,2176,atmospheric,1287614900 +56061,2176,clever dialogue,1287614924 +56061,2176,tense,1287614924 +56061,2232,original,1287712629 +56061,2232,paranoia,1287712633 +56061,2288,disturbing,1287607770 +56061,2288,horror,1287607787 +56061,2288,Influenced by H.P. Lovecraft,1287607910 +56061,2288,John Carpenter,1288733287 +56061,2288,lovecraft,1288733291 +56061,2288,lovecraftian,1288733293 +56061,2288,paranoia,1288733296 +56061,2455,horror,1287615818 +56061,2455,mad scientist,1287615813 +56061,2455,sci-fi,1287615816 +56061,2502,quirky,1287615218 +56061,2502,satire,1287615215 +56061,2550,ghosts,1287615584 +56061,2550,horror,1287615586 +56061,2550,paranormal,1287615631 +56061,2550,psychological,1287615631 +56061,2550,suspense,1287615630 +56061,2554,evil children,1317852225 +56061,2640,comic book,1287614296 +56061,2640,great soundtrack,1288733390 +56061,2640,sci-fi,1287614292 +56061,2640,superhero,1287614288 +56061,2716,Bill Murray,1288734016 +56061,2716,classic,1288734040 +56061,2716,Dan Aykroyd,1288734019 +56061,2716,quotable,1288734045 +56061,2795,classic comedy,1288732820 +56061,2795,comedy,1287607744 +56061,2795,Nudity (Topless),1287607747 +56061,2803,Julia Roberts,1287616503 +56061,2804,classic,1288735174 +56061,2804,Funniest Movies,1288735185 +56061,2959,Edward Norton,1288734062 +56061,2959,philosophy,1288734072 +56061,2959,psychology,1288734066 +56061,2959,social commentary,1288734077 +56061,2959,thought-provoking,1288734076 +56061,2959,twist ending,1288734075 +56061,2968,history,1287614278 +56061,2968,time travel,1287614275 +56061,3626,Nudity (Full Frontal - Notable),1288293780 +56061,3626,Nudity (Full Frontal),1288293777 +56061,3639,James Bond,1287615269 +56061,3758,alien abduction,1289068579 +56061,3758,creepy,1289068614 +56061,3758,paranoia,1289068614 +56061,3758,surreal,1289068579 +56061,3948,Ben Stiller,1288733775 +56061,3948,Robert De Niro,1288733772 +56061,3960,Stupid Ending,1288019131 +56061,4105,Bruce Campbell,1288734391 +56061,4105,Cult classic,1288734383 +56061,4105,dark humor,1288734385 +56061,4161,Julia Roberts,1287616496 +56061,4533,Nudity (Full Frontal - Notable),1287615029 +56061,4533,satirical,1287615048 +56061,4533,zombies,1287615037 +56061,4833,atmospheric,1287609049 +56061,4833,haunted house,1287609046 +56061,4833,melancholy,1287609037 +56061,4993,atmospheric,1287615303 +56061,4993,great soundtrack,1288733885 +56061,4993,Oscar (Best Cinematography),1287615298 +56061,5679,disturbing,1287614992 +56061,5679,horror,1287615002 +56061,5679,mystery,1287614998 +56061,5679,paranormal,1287615016 +56061,5731,Nudity (Full Frontal),1287609676 +56061,5731,paranormal,1287609666 +56061,5731,rape,1287609683 +56061,5797,atmospheric,1287609493 +56061,5797,dreamlike,1287609485 +56061,5797,stylized,1287609489 +56061,5952,atmospheric,1287615316 +56061,5952,great soundtrack,1288733862 +56061,5952,multiple storylines,1287615319 +56061,6242,better than the american version,1287614952 +56061,6242,gritty,1287614975 +56061,6731,paranoid,1287609091 +56061,6731,tense,1287609098 +56061,6731,zombie,1287609079 +56061,6731,zombies,1287609082 +56061,7001,disturbing,1287615471 +56061,7117,franchise beaten to death,1287616268 +56061,7117,Stupid as Hell,1287616268 +56061,7152,Incorrectly rated as Horror,1313381318 +56061,7153,atmospheric,1287615311 +56061,7153,great soundtrack,1288733874 +56061,7153,multiple storylines,1287615307 +56061,7713,sexuality,1287609018 +56061,8372,franchise beaten to death,1287616298 +56061,8372,Stupid as Hell,1287616298 +56061,8874,British,1287614779 +56061,8874,comedy,1287614783 +56061,8874,Simon Pegg,1287614799 +56061,8874,zombies,1287614775 +56061,8939,Robin Williams,1289067272 +56061,26398,conspiracy,1289070192 +56061,26398,survival,1289070211 +56061,26606,ghosts,1287609060 +56061,26606,Nudity (Full Frontal - Notable),1287609068 +56061,26702,not horror,1292442593 +56061,26702,weak characters,1292370176 +56061,26702,weak plot,1292370080 +56061,27402,Cthulhu,1288823080 +56061,27402,H.P. Lovecraft,1288823241 +56061,27402,Innsmouth,1288823119 +56061,27402,Lovecraftian mythology,1288823244 +56061,27461,boring characters,1295108821 +56061,27461,poor acting,1295108821 +56061,27772,atmospheric,1287615376 +56061,27772,better than the american version,1287615400 +56061,27772,gritty,1287615376 +56061,27772,mystery,1287615376 +56061,27772,paranormal,1287615376 +56061,30825,Ben Stiller,1288733760 +56061,30825,Dustin Hoffman,1288733765 +56061,30825,Robert De Niro,1288733763 +56061,32587,atmospheric,1287614649 +56061,32587,gritty,1288733550 +56061,32587,multiple storylines,1287614614 +56061,33493,great soundtrack,1288733500 +56061,41716,Black Comedy,1289058179 +56061,41716,quirky,1289058187 +56061,43011,H.P. Lovecraft,1287610961 +56061,43011,Lovecraftian mythology,1287610966 +56061,43832,H.P. Lovecraft,1287609002 +56061,44238,franchise beaten to death,1287616263 +56061,44238,Stupid as Hell,1287616262 +56061,45003,Original version of USA 2008 remake,1299998176 +56061,47099,bittersweet,1287615069 +56061,51255,action spoof,1288733934 +56061,51255,black comedy,1288733936 +56061,51255,Edgar Wright,1288733950 +56061,51255,Simon Pegg,1288733942 +56061,53468,comedy,1287609136 +56061,53468,zombies,1287609132 +56061,54503,comedy,1287614454 +56061,54503,Emma Stone,1287614389 +56061,54503,friendship,1287614457 +56061,54995,zombies,1287615202 +56061,56145,lovecraftian,1319847640 +56061,58559,Atmospheric,1288735114 +56061,58559,dark,1288735111 +56061,58559,stylized,1288735124 +56061,59315,Robert Downey Jr.,1287615438 +56061,59315,sci-fi,1287615447 +56061,59315,superhero,1287615444 +56061,59369,revenge,1288733411 +56061,59715,Yet another crappy Hollywood remake,1299998275 +56061,63826,zombies,1287609288 +56061,64983,based on a true story,1287607729 +56061,64983,history,1287607723 +56061,64983,World War II,1287607713 +56061,66544,Alec Baldwin,1287850265 +56061,68157,satire,1287615540 +56061,68157,tense,1287615515 +56061,68157,World War II,1287615520 +56061,68237,psychology,1287615252 +56061,68237,Sci-fi,1287615249 +56061,68237,twist ending,1288733839 +56061,68358,great soundtrack,1288733476 +56061,68358,sci-fi,1287614547 +56061,68358,Star Trek,1287614526 +56061,68358,time travel,1287614541 +56061,69784,Stupid as Hell,1287616248 +56061,70286,peter jackson,1288735058 +56061,70286,social commentary,1288735044 +56061,70286,unique,1288735066 +56061,71535,dark comedy,1287607679 +56061,71535,post-apocalyptic,1287607682 +56061,71535,zombies,1287607685 +56061,74458,atmospheric,1287614661 +56061,74458,psychological,1287614657 +56061,74795,Unjustified Invasion,1296071438 +56061,77561,Robert Downey Jr.,1287615462 +56061,77561,sci-fi,1287615462 +56061,77561,superhero,1287615462 +56061,77820,not funny,1287616280 +56061,77843,clever plot,1288721209 +56061,77843,kidnapping,1288721241 +56061,77843,ransom,1288721277 +56061,80549,Emma Stone,1288020202 +56061,83585,Remake,1295555910 +56061,94864,aliens,1351703319 +56061,94864,Good ending,1351703321 +56061,94864,self-sacrifice,1351703328 +56061,94864,set design,1351703330 +56067,29,atmospheric,1281216523 +56067,29,beautiful,1281216518 +56067,29,dark fantasy,1281216528 +56067,29,dystopia,1281216527 +56067,29,steampunk,1281216532 +56067,541,cyberpunk,1249782460 +56067,541,futuristic,1249782468 +56067,589,apocalypse,1274048721 +56067,589,artificial intelligence,1274048717 +56067,1175,Post apocalyptic,1191917944 +56067,1218,heroic bloodshed,1218110902 +56067,1273,feel-good,1193263378 +56067,1590,hell,1259522380 +56067,1917,excellent soundscore,1218110713 +56067,2074,perversion,1223587938 +56067,2360,dogme95,1293639713 +56067,2840,religious theme,1249782440 +56067,2841,annoying characters,1256394626 +56067,3265,heroic bloodshed,1218110894 +56067,3593,scientologist,1279382740 +56067,4448,predictable,1250101848 +56067,4808,remake,1201443068 +56067,4865,Atmospheric,1265456911 +56067,4973,beautifully filmed,1281216570 +56067,4973,excellent soundscore,1218110779 +56067,4973,feel-good,1281216572 +56067,4973,stylized,1281216575 +56067,4973,visually appealing,1281216577 +56067,6291,social commentary,1268607327 +56067,6902,surreal,1305473441 +56067,7134,post-apocalyptic,1191869623 +56067,8910,philosophy,1255220004 +56067,8914,clever,1288396774 +56067,8950,powerful ending,1287786036 +56067,34292,post-apocalyptic,1280612086 +56067,41285,immoral,1200663022 +56067,48043,artistic,1274048689 +56067,48043,atmospheric,1274048678 +56067,48043,dreamlike,1274048676 +56067,48043,excellent soundscore,1274048674 +56067,48043,visually appealing,1274048680 +56067,48780,obsession,1200215158 +56067,51917,unsatisfying,1293408535 +56067,52458,rear window clone,1193558709 +56067,53000,frustrating to watch,1202593208 +56067,53996,based on a comic,1193558751 +56067,55247,self discovery,1265456121 +56067,55363,excellent soundscore,1218110747 +56067,56145,ending,1249782209 +56067,56145,pessimistic,1249782238 +56067,58078,life & death,1305473211 +56067,58078,life choices,1305473214 +56067,58595,mumblecore,1227255545 +56067,59387,beautiful,1252711308 +56067,59387,imagination,1252711326 +56067,59727,disturbing,1224367954 +56067,59727,little dialogue,1287234729 +56067,59727,serial killers,1224367979 +56067,59727,tense,1224368012 +56067,59727,terrifying,1287234735 +56067,60037,mass hysteria,1226078189 +56067,60753,prison,1219504029 +56067,61073,embarassed to watch,1224973786 +56067,61240,Beautiful,1266791274 +56067,62203,ending,1249653753 +56067,62203,shocking,1249653716 +56067,63072,dystopia,1275224833 +56067,63072,post-apocalyptic,1275224839 +56067,64839,Character study,1294595121 +56067,64839,identity crisis,1294595106 +56067,64839,touching,1294595115 +56067,65216,poor editing,1250418898 +56067,68923,ending,1249653968 +56067,68952,annoying characters,1256394541 +56067,69134,beautiful scenery,1265448393 +56067,69134,cinematography,1265448401 +56067,69526,bad plot,1255219906 +56067,69526,plot holes,1255219899 +56067,70183,ridiculous end,1287785819 +56067,71838,ending kinda ruined it,1279975689 +56067,72235,excellent soundscore,1264334652 +56067,72235,like a poem,1264334783 +56067,72235,little dialogue,1264334783 +56067,73017,Atmospheric,1275224891 +56067,73321,dystopia,1280051347 +56067,73321,post-apocalyptic,1280051349 +56067,73321,Stylistic,1280051356 +56067,74131,science,1305473099 +56067,75341,heavy handed ending,1284328815 +56067,75395,tense,1290276111 +56067,77201,mythology,1275224792 +56067,77201,stylistic,1275224783 +56067,77596,Claustrophobic,1297593432 +56067,77596,tense,1297593435 +56067,79132,excellent soundscore,1292067500 +56067,79132,visually appealing,1292067469 +56067,84775,colored by traumatic childhood,1304859643 +56076,260,classic sci-fi,1439083157 +56076,260,space adventure,1439083169 +56087,904,Alfred Hitchcock,1269770823 +56087,904,James Stewart,1269770826 +56087,904,photography,1269770834 +56087,908,Alfred Hitchcock,1269770767 +56087,908,aviation,1269770770 +56087,908,imdb top 250,1269770778 +56087,908,trains,1269770792 +56087,908,visually appealing,1269770797 +56087,908,witty,1269770799 +56087,1199,dystopia,1269771345 +56087,1210,Star Wars,1269771807 +56087,1281,Charlie Chaplin,1269771163 +56087,3307,Charlie Chaplin,1269770961 +56087,3307,silent movie,1269770968 +56087,3629,Charlie Chaplin,1269771115 +56087,71057,alchemy,1269770561 +56087,71057,Crispin Glover,1269770559 +56087,71057,dark fantasy,1269770537 +56087,71057,dystopia,1269770531 +56087,71057,giant robots,1269770534 +56087,71057,post-apocalyptic,1269770554 +56087,71057,predictable,1269770528 +56093,22,detective,1368639132 +56093,22,suspenseful,1368638988 +56093,25,melancholic,1368638623 +56093,32,original,1368638598 +56093,46,women,1368638892 +56093,50,excellent script,1368638799 +56093,111,masterpiece,1368638747 +56093,218,women,1368638892 +56093,288,brutality,1368639011 +56093,318,great ending,1368639075 +56093,549,musicians,1368638919 +56093,587,supernatural,1368638779 +56093,724,teen movie,1368638955 +56093,866,neo-noir,1368639034 +56093,866,stylish,1368638828 +56093,898,screwball comedy,1368639163 +56093,904,suspenseful,1368638988 +56093,910,screwball comedy,1368639163 +56093,913,noir thriller,1368638689 +56093,923,masterpiece,1368638747 +56093,924,masterpiece,1368638747 +56093,1088,dancing,1368639054 +56093,1089,original,1368638598 +56093,1172,mentor,1368638729 +56093,1179,neo-noir,1368639034 +56093,1188,dancing,1368639053 +56093,1219,suspenseful,1368638988 +56093,1259,unlikely friendships,1368639106 +56093,1305,melancholic,1368638623 +56093,1307,unlikely friendships,1368639106 +56093,1387,suspenseful,1368638989 +56093,1466,mentor,1368638729 +56093,1617,detective,1368639133 +56093,1678,women,1368638892 +56093,1704,mentor,1368638728 +56093,1719,melancholic,1368638623 +56093,1754,supernatural,1368638779 +56093,1783,noir thriller,1368638689 +56093,2076,neo-noir,1368639035 +56093,2291,original,1368638598 +56093,2420,mentor,1368638729 +56093,2762,great ending,1368639075 +56093,2841,supernatural,1368638779 +56093,2858,excellent script,1368638799 +56093,2859,musicians,1368638918 +56093,2863,musicians,1368638919 +56093,2866,musicians,1368638919 +56093,3005,detective,1368639133 +56093,3067,screwball comedy,1368639163 +56093,3083,women,1368638893 +56093,3418,women,1368638893 +56093,3499,suspenseful,1368638988 +56093,3791,dancing,1368639053 +56093,4020,supernatural,1368638779 +56093,4054,dancing,1368639053 +56093,4144,melancholic,1368638623 +56093,4878,original,1368638598 +56093,4978,The Mother Of Connect-The-Dots Flix (Grand Canyon/Crash/ETC),1185389840 +56093,5065,supernatural,1368638779 +56093,5693,dancing,1368639054 +56093,6707,splatter,1368638874 +56093,42723,splatter,1368638874 +56093,48304,brutality,1368639011 +56093,53123,musicians,1368638919 +56105,491,Drama,1453811560 +56105,491,Mystery,1453811560 +56105,55908,Excellent use of dialogue,1453811628 +56105,55908,Mystery,1453811614 +56105,151459,Action,1453811462 +56105,151459,Non-fiction,1453811485 +56105,151459,Thriller,1453811458 +56105,151459,War,1453811469 +56114,43871,shit,1147102227 +56152,47,mystery,1435699763 +56152,47,psychology,1435699716 +56152,47,twist ending,1435699711 +56152,593,blood,1435502214 +56152,593,horror,1435502214 +56152,593,kill,1435502214 +56152,109487,Christopher Nolan,1426700328 +56152,109487,Matthew McConaughey,1426700312 +56152,109487,time-travel,1426700332 +56222,99917,trippy,1439783960 +56226,8961,Pixar,1209406702 +56256,39,teen movie,1373548051 +56256,296,masterpiece,1373547624 +56256,587,supernatural,1373547694 +56256,593,excellent script,1373547737 +56256,1033,unlikely friendships,1373548283 +56256,1088,dancing,1373548203 +56256,1172,mentor,1373547572 +56256,1213,masterpiece,1373547624 +56256,1213,stylish,1373547853 +56256,1219,suspenseful,1373548103 +56256,1271,unlikely friendships,1373548283 +56256,1305,melancholic,1373547364 +56256,1307,unlikely friendships,1373548283 +56256,1387,suspenseful,1373548103 +56256,1537,dancing,1373548203 +56256,1784,excellent script,1373547737 +56256,1968,teen movie,1373548051 +56256,2145,high school,1184187242 +56256,2194,excellent script,1373547737 +56256,2291,original,1373547218 +56256,2762,great ending,1373548236 +56256,2863,musicians,1373548011 +56256,2866,musicians,1373548011 +56256,3067,screwball comedy,1373548389 +56256,3418,women,1373547968 +56256,3791,dancing,1373548203 +56256,4018,women,1373547968 +56256,5693,dancing,1373548203 +56256,7153,great ending,1373548236 +56256,48304,brutality,1373548139 +56285,162,documentary,1186249394 +56285,750,AFI 100 (Laughs),1186249531 +56285,750,dark comedy,1186249550 +56285,909,classic,1186249214 +56285,909,comedy,1186248851 +56285,952,70mm,1186249239 +56285,1078,comedy,1186248946 +56285,1225,drama,1186249167 +56285,1230,comedy,1186249201 +56285,1230,woody allen,1186249201 +56285,1247,AFI 100 (Laughs),1186249595 +56285,1247,comedy,1186249601 +56285,2662,classic,1186248848 +56285,2729,drama,1186249642 +56285,2858,comedy,1186249111 +56285,2858,midlife crisis,1186249111 +56285,3683,drama,1186249583 +56285,4995,Biography,1186249254 +56285,4995,schizophrenia,1186249272 +56285,5225,comedy,1186248918 +56285,5288,documentary,1186249368 +56285,5288,nuclear,1186249363 +56285,5528,suspense,1186248902 +56285,5669,documentary,1186249374 +56285,8528,comedy,1186249475 +56285,8528,dumb,1186249475 +56285,27899,documentary,1186249358 +56285,33154,documentary,1186249416 +56323,62155,great soundtrack,1450299126 +56323,80693,mental illness,1450299009 +56323,113604,great soundtack,1450299161 +56344,2858,cheerleading,1426266536 +56344,2858,horrible acting,1426266536 +56344,2858,social drama,1426266536 +56352,296,action packed,1437285970 +56352,296,entertaining,1437285970 +56352,296,overrated,1437285970 +56371,260,oldie but goodie,1431285670 +56371,260,scifi cult,1431285651 +56396,47,psychology,1244857104 +56396,47,twist ending,1244857106 +56396,111,cult film,1244857215 +56396,223,Kevin Smith,1244857188 +56396,223,quirky,1244857186 +56396,296,dark comedy,1244857132 +56396,296,nonlinear,1244857137 +56396,527,Oscar (Best Picture),1244857114 +56396,778,based on a book,1244857101 +56396,778,dark comedy,1244857091 +56396,778,drugs,1244857099 +56396,1093,rock and roll,1244857395 +56396,1208,surreal,1244857191 +56396,1214,aliens,1244857196 +56396,1240,time travel,1244857210 +56396,1247,classic,1244857171 +56396,1247,comedy,1244857167 +56396,1247,coming of age,1244857169 +56396,1320,aliens,1244857432 +56396,1320,survival,1244857430 +56396,1921,mental illness,1244857356 +56396,1968,cult film,1244857412 +56396,1997,Classic,1244857182 +56396,2076,atmospheric,1244857231 +56396,2288,aliens,1244857344 +56396,2542,dark comedy,1244857267 +56396,2710,low budget,1244857324 +56396,2959,dark comedy,1244857177 +56396,2959,psychology,1244857178 +56396,3703,post-apocalyptic,1244857249 +56396,4226,psychology,1244857262 +56396,4641,high school,1244857283 +56396,4720,twist ending,1244857476 +56396,4734,parody,1244857379 +56396,4848,surrealism,1244857145 +56396,4878,time travel,1244857290 +56396,6711,atmospheric,1244857158 +56396,6711,Bill Murray,1244857156 +56396,6863,Jack Black,1244857461 +56396,8874,zombies,1244857457 +56396,43832,H.P. Lovecraft,1244857302 +56396,52666,Michael Haneke,1244857419 +56396,52973,marijuana,1244857374 +56396,55820,coen brothers,1244857142 +56396,58998,drugs,1244857384 +56396,61240,vampire,1244857270 +56396,61240,vampires,1244857272 +56397,1527,its just genious,1253377605 +56505,48043,Disappointing,1183279578 +56505,48043,Walked out,1183279612 +56517,1,adventure,1137501822 +56517,1,animation,1137501822 +56517,1,comedy,1137501822 +56517,1,family,1137501822 +56517,1,fantasy,1137501822 +56517,1,John Lasseter,1137501822 +56517,1,USA,1137501822 +56517,36,book,1137502065 +56517,36,crime,1137501499 +56517,36,drama,1137501499 +56517,36,Tim Robbins,1137501499 +56517,36,UK,1137501499 +56517,36,USA,1137501499 +56517,47,crime,1137501594 +56517,47,David Fincher,1137501594 +56517,47,drama,1137501594 +56517,47,mystery,1137501594 +56517,47,thriller,1137501594 +56517,47,USA,1137501594 +56517,253,book,1137502199 +56517,253,drama,1137501530 +56517,253,fantasy,1137502199 +56517,253,horror,1137501530 +56517,253,Neil Jordan,1137501530 +56517,253,USA,1137501530 +56517,260,action,1137501619 +56517,260,adventure,1137501619 +56517,260,fantasy,1137501619 +56517,260,George Lucas,1137501619 +56517,260,sci-fi,1137501619 +56517,260,USA,1137501619 +56517,296,crime,1137501551 +56517,296,drama,1137501551 +56517,296,Quentin Tarantino,1137501551 +56517,296,USA,1137501551 +56517,356,book,1137502538 +56517,356,comedy,1137502538 +56517,356,drama,1137502538 +56517,356,Robert Zemeckis,1137502538 +56517,356,USA,1137502538 +56517,457,action,1137502588 +56517,457,Andrew Davis,1137502588 +56517,457,crime,1137502588 +56517,457,thriller,1137502588 +56517,457,TV,1137502588 +56517,457,USA,1137502588 +56517,480,action,1137502719 +56517,480,adventure,1137502719 +56517,480,book,1137502719 +56517,480,drama,1137502719 +56517,480,horror,1137502719 +56517,480,sci-fi,1137502719 +56517,480,Steven Spielberg,1137502719 +56517,480,USA,1137502719 +56517,527,biography,1137502816 +56517,527,book,1137502816 +56517,527,drama,1137502816 +56517,527,history,1137502816 +56517,527,Steven Spielberg,1137502816 +56517,527,USA,1137502816 +56517,527,war,1137502816 +56517,589,action,1137502950 +56517,589,France,1137502950 +56517,589,James Cameron,1137502950 +56517,589,sci-fi,1137502950 +56517,589,thriller,1137502950 +56517,589,USA,1137502950 +56517,593,book,1137502858 +56517,593,crime,1137502858 +56517,593,Jonathan Demme,1137502858 +56517,593,thriller,1137502858 +56517,593,USA,1137502858 +56517,858,book,1137502618 +56517,858,crime,1137502618 +56517,858,drama,1137502618 +56517,858,Francis Ford Coppola,1137502618 +56517,858,USA,1137502618 +56517,899,comedy,1137502917 +56517,899,Gene Kelly,1137502917 +56517,899,musical,1137502917 +56517,899,romance,1137502917 +56517,899,Stanley Donen,1137502917 +56517,899,USA,1137502917 +56517,908,adventure,1137502786 +56517,908,Alfred Hitchcock,1137502787 +56517,908,mystery,1137502787 +56517,908,thriller,1137502787 +56517,908,USA,1137502787 +56517,912,drama,1137502335 +56517,912,Michael Curtiz,1137502335 +56517,912,play,1137502335 +56517,912,romance,1137502335 +56517,912,USA,1137502400 +56517,913,book,1137502757 +56517,913,film-noir,1137502757 +56517,913,John Huston,1137502757 +56517,913,mystery,1137502757 +56517,913,USA,1137502757 +56517,923,drama,1137502367 +56517,923,mystery,1137502367 +56517,923,Orson Welles,1137502367 +56517,923,USA,1137502367 +56517,924,adventure,1137502308 +56517,924,sci-fi,1137502308 +56517,924,Stanley Kubrick,1137502308 +56517,924,UK,1137502425 +56517,924,USA,1137502425 +56517,953,drama,1137502678 +56517,953,family,1137502678 +56517,953,fantasy,1137502678 +56517,953,Frank Capra,1137502678 +56517,953,romance,1137502678 +56517,953,story,1137502678 +56517,953,USA,1137502678 +56517,1036,action,1137502488 +56517,1036,book,1137502450 +56517,1036,crime,1137502488 +56517,1036,John McTiernan,1137502450 +56517,1036,thriller,1137502488 +56517,1036,USA,1137502488 +56517,1089,crime,1137503419 +56517,1089,drama,1137503419 +56517,1089,Quentin Tarantino,1137503419 +56517,1089,thriller,1137503419 +56517,1089,USA,1137503419 +56517,1090,action,1137503287 +56517,1090,drama,1137503287 +56517,1090,Oliver Stone,1137503287 +56517,1090,USA,1137503287 +56517,1090,war,1137503287 +56517,1097,drama,1137503173 +56517,1097,family,1137503173 +56517,1097,fantasy,1137503173 +56517,1097,sci-fi,1137503173 +56517,1097,Steven Spielberg,1137503173 +56517,1097,USA,1137503173 +56517,1193,book,1137503258 +56517,1193,drama,1137503258 +56517,1193,Milos Forman,1137503258 +56517,1193,USA,1137503258 +56517,1196,action,1137503483 +56517,1196,adventure,1137503483 +56517,1196,fantasy,1137503483 +56517,1196,Irvin Kershner,1137503483 +56517,1196,sci-fi,1137503483 +56517,1196,USA,1137503483 +56517,1198,action,1137503384 +56517,1198,adventure,1137503384 +56517,1198,romance,1137503384 +56517,1198,Steven Spielberg,1137503385 +56517,1198,USA,1137503385 +56517,1203,crime,1137501636 +56517,1203,drama,1137501333 +56517,1203,Sidney Lumet,1137501333 +56517,1203,USA,1137501333 +56517,1207,book,1137503520 +56517,1207,drama,1137503521 +56517,1207,Robert Mulligan,1137503520 +56517,1207,USA,1137503521 +56517,1208,action,1137503029 +56517,1208,adventure,1137503029 +56517,1208,drama,1137503030 +56517,1208,Francis Ford Coppola,1137503030 +56517,1208,USA,1137503030 +56517,1208,war,1137503029 +56517,1209,action,1137503221 +56517,1209,drama,1137503222 +56517,1209,Italy,1137503222 +56517,1209,Sergio Leone,1137503221 +56517,1209,USA,1137503222 +56517,1209,western,1137503221 +56517,1210,action,1137503449 +56517,1210,adventure,1137503449 +56517,1210,fantasy,1137503449 +56517,1210,Richard Marquand,1137503449 +56517,1210,sci-fi,1137503449 +56517,1210,USA,1137503449 +56517,1213,biography,1137503194 +56517,1213,book,1137503194 +56517,1213,crime,1137503194 +56517,1213,drama,1137503194 +56517,1213,Martin Scorsese,1137503194 +56517,1214,horror,1137502992 +56517,1214,Ridley Scott,1137502992 +56517,1214,sci-fi,1137502992 +56517,1214,thriller,1137502992 +56517,1214,UK,1137502992 +56517,1215,action,1137503062 +56517,1215,adventure,1137503062 +56517,1215,comedy,1137503062 +56517,1215,fantasy,1137503062 +56517,1215,horror,1137503062 +56517,1215,Sam Raimi,1137503062 +56517,1215,USA,1137503062 +56517,1219,Alfred Hitchcock,1137503309 +56517,1219,book,1137503309 +56517,1219,horror,1137503309 +56517,1219,thriller,1137503309 +56517,1219,USA,1137503309 +56517,1220,action,1137503096 +56517,1220,comedy,1137503097 +56517,1220,John Landis,1137503096 +56517,1220,musical,1137503097 +56517,1220,TV,1137503096 +56517,1220,USA,1137503097 +56517,2951,action,1137501406 +56517,2951,Italy,1137501428 +56517,2951,Sergio Leone,1137501406 +56517,2951,Spain,1137501428 +56517,2951,West Germany,1137501428 +56517,2951,western,1137501406 +56517,3006,article,1137502165 +56517,3006,drama,1137500887 +56517,3006,Michael Mann,1137500887 +56517,3006,thriller,1137500887 +56517,3006,USA,1137500887 +56517,3499,drama,1137501388 +56517,3499,horror,1137501388 +56517,3499,Rob Reiner,1137501388 +56517,3499,thriller,1137501388 +56517,3499,USA,1137501388 +56517,3681,action,1137500926 +56517,3681,drama,1137500926 +56517,3681,Italy,1137500926 +56517,3681,Monaco,1137501107 +56517,3681,Sergio Leone,1137500926 +56517,3681,Spain,1137501107 +56517,3681,thriller,1137500926 +56517,3681,West Germany,1137501107 +56517,3681,western,1137500926 +56517,5989,biography,1137501679 +56517,5989,book,1137502008 +56517,5989,crime,1137501031 +56517,5989,drama,1137501032 +56517,5989,Steven Spielberg,1137501032 +56517,5989,USA,1137501032 +56517,6333,action,1137500346 +56517,6333,Bryan Singer,1137500183 +56517,6333,comic book,1137500333 +56517,6333,fantasy,1137500365 +56517,6333,sci-fi,1137500371 +56517,6333,thriller,1137501867 +56517,6333,USA,1137500729 +56517,6787,Alan J. Pakula,1137500941 +56517,6787,book,1137501952 +56517,6787,drama,1137500941 +56517,6787,history,1137501650 +56517,6787,thriller,1137500941 +56517,6787,USA,1137500941 +56517,6796,crime,1137500565 +56517,6796,drama,1137500565 +56517,6796,John Singleton,1137500171 +56517,6796,USA,1137500801 +56517,6870,Clint Eastwood,1137500972 +56517,6870,drama,1137500972 +56517,6870,mystery,1137500972 +56517,6870,USA,1137500972 +56517,7361,drama,1137500584 +56517,7361,Michel Gondry,1137500178 +56517,7361,romance,1137500584 +56517,7361,sci-fi,1137500584 +56517,7361,USA,1137500758 +56517,7438,action,1137500617 +56517,7438,adventure,1137501766 +56517,7438,drama,1137500617 +56517,7438,Quentin Tarantino,1137500173 +56517,7438,thriller,1137500617 +56517,7438,USA,1137500707 +56517,8464,documentary,1137501359 +56517,8464,Morgan Spurlock,1137501359 +56517,8464,USA,1137501359 +56517,27741,drama,1137500648 +56517,27741,Japan,1137500685 +56517,27741,Yoji Yamada,1137500248 +56517,27838,drama,1137500438 +56517,27838,Jacob Aaron Estes,1137500156 +56517,27838,USA,1137500780 +56522,260,ahead of its time,1441741655 +56522,260,Innovative,1441741615 +56525,593,criminal mind,1423161667 +56525,593,suspenseful,1423161667 +56525,593,thriller,1423161667 +56525,59418,distrubing,1423201198 +56525,117551,coming of age,1417043394 +56529,260,inspiring,1436054754 +56529,260,Oscar (Best Music - Original Score),1436054742 +56561,47,Brad Pitt,1378324157 +56561,47,great ending,1378324167 +56561,47,Kevin Spacey,1378324159 +56561,47,Morgan Freeman,1378324165 +56561,47,serial killer,1378324169 +56561,47,twist ending,1378324171 +56561,110,Oscar (Best Picture),1378324225 +56561,480,adventure,1378324192 +56561,480,cloning,1378324208 +56561,480,dinosaurs,1378324194 +56561,480,Oscar (Best Effects - Visual Effects),1378324196 +56561,480,sci-fi,1378324197 +56561,480,Steven Spielberg,1378324202 +56561,480,Suspense,1378324210 +56561,480,thriller,1378324212 +56561,3578,action,1378324427 +56561,3578,drama,1378324429 +56561,3578,imdb top 250,1378324424 +56561,3578,Oscar (Best Effects - Visual Effects),1378324434 +56561,3578,Oscar (Best Picture),1378324423 +56561,3578,Ridley Scott,1378324320 +56595,1569,girlie movie,1288626494 +56595,4246,chick flick,1273007108 +56595,6155,chick flick,1273006980 +56595,6155,Matthew McConaughey,1273006980 +56595,8373,thriller,1273007864 +56595,40629,19th century,1273007357 +56595,40629,chick flick,1273007368 +56595,44004,chick flick,1273006910 +56595,44004,Matthew McConaughey,1273007127 +56595,56941,Gerard Butler,1273009880 +56595,58107,dance,1273010399 +56595,70183,Gerard Butler,1273009748 +56595,74154,chick flick,1273007393 +56606,260,science fantasy,1442257030 +56606,260,space adventure,1442257019 +56610,110,Biography,1424139941 +56610,110,inspirational,1424139935 +56610,110,mel gibson,1424139914 +56610,110,Oscar (Best Cinematography),1424139931 +56610,110,Oscar (Best Picture),1424139922 +56610,2324,holocaust,1426449446 +56610,2959,action,1424141658 +56610,2959,Brad Pitt,1424141620 +56610,2959,disturbing,1424141645 +56610,2959,Edward Norton,1424141673 +56610,2959,mental illness,1424141647 +56610,2959,philosophical,1424141655 +56610,2959,social commentary,1424141669 +56610,71838,revenge,1424140081 +56636,137337,alcoholism,1439253571 +56636,137337,depression,1439253563 +56651,480,based on a book,1267892083 +56681,3897,journalism,1338907964 +56681,3897,music,1338907965 +56681,3897,Nudity (Topless - Notable),1338907971 +56681,3897,Nudity (Topless),1338907970 +56681,3897,Philip Seymour Hoffman,1338907973 +56681,3897,rock and roll,1338907975 +56681,3897,teen,1338907993 +56681,3897,wired 50 greatest soundtracks,1338907990 +56681,7502,French Film,1339367851 +56681,7502,military,1339367807 +56681,7502,pro american,1339367847 +56681,7502,pro military,1339367835 +56681,7502,war,1339367829 +56681,7502,World War II,1339367832 +56681,38061,black comedy,1344194222 +56681,38061,clever,1344194237 +56681,38061,comedy,1344194239 +56681,38061,dark comedy,1344194221 +56681,38061,Film Noir,1344194229 +56681,38061,Robert Downey Jr.,1344194245 +56681,38061,satire,1344194231 +56681,38061,witty,1344194249 +56681,78039,boring,1338244718 +56681,78039,CRUMBLING MARRIAGES,1338244715 +56681,78039,Michelle Williams,1338244733 +56681,78039,realism,1338244726 +56681,78039,Ryan Gosling,1338244734 +56681,78039,slow moving plot,1338244706 +56681,78039,unlikeable characters,1338244702 +56681,89864,cancer,1338908074 +56681,89864,disease,1338908077 +56681,89864,forgettable,1338908058 +56681,89864,Hollywood drama,1338908060 +56681,89864,Joseph Gordon-Levitt,1338908052 +56681,89864,predictable,1338908056 +56681,89864,Seth Rogen,1338908051 +56681,90405,cheesy,1342018152 +56681,90405,dystopia,1342018171 +56681,90405,mediocre,1342018282 +56681,90405,plot holes,1342018148 +56681,90405,sci-fi,1342018179 +56681,90405,shallow,1342018282 +56681,90405,tries too hard,1342018282 +56681,90405,weak plot,1342018282 +56688,147,drugs,1442943557 +56688,147,intense,1442943534 +56688,260,"action, scifi",1442943290 +56688,260,space adventure,1442943300 +56688,4995,college,1442944295 +56688,4995,mathematics,1442944277 +56688,4995,nobel prize,1442944286 +56688,4995,Russell Crowe,1442944303 +56692,296,unconventional,1366925350 +56692,1089,directing,1366925387 +56692,1089,too brutal,1366925403 +56692,2858,everything,1366925571 +56692,2858,performances,1366925572 +56692,2858,story,1366925571 +56696,111921,based on a book,1428637105 +56696,111921,romance,1428637105 +56696,111921,shailene woodley,1428637105 +56697,2521,airport,1351440115 +56697,2521,aviation,1351440106 +56697,2947,james bond,1351440460 +56697,2949,james bond,1351440786 +56697,2959,dark comedy,1351440558 +56697,2989,James Bond,1351440887 +56697,4262,organized crime,1351440509 +56697,5226,Nudity (Full Frontal - Notable),1351440248 +56697,5226,Nudity (Topless),1351440254 +56697,49272,James Bond,1351440619 +56708,53125,Won't bother to watch,1186957014 +56715,551,danny elfman,1209514686 +56715,551,Danny Elfman score,1209514721 +56715,8254,Arizona,1209485722 +56715,8254,desert,1209485735 +56715,8254,Eskimo,1209485809 +56715,8254,Vincent Gallo,1209485703 +56715,37729,Danny Elfman score,1209514750 +56729,272,biopic,1169954424 +56729,272,costume drama,1169954409 +56731,260,lots of space fighting drama,1438821109 +56755,260,classic sci-fi,1441366725 +56768,51255,Funny as hell,1245080497 +56789,260,oldie but goodie,1433271007 +56789,260,space action,1433271014 +56842,247,surrealism,1137263955 +56842,296,dialogue,1137264005 +56842,296,non-linear,1420200445 +56842,296,violence,1420200445 +56842,527,Holocaust,1137344946 +56842,599,revisionist,1137264024 +56842,599,violence,1137264800 +56842,750,dark comedy,1137264089 +56842,912,dialogue,1137264102 +56842,923,welles,1137263973 +56842,924,visionary,1137264121 +56842,954,politics,1137345028 +56842,968,zombies,1137345035 +56842,1090,vietnam,1137345050 +56842,1095,stage,1137264451 +56842,1104,stage,1137345073 +56842,1204,epic,1137264228 +56842,1222,Kubrick,1137470107 +56842,1222,Vietnam,1137470107 +56842,1223,short,1137264478 +56842,1225,music,1137264439 +56842,1248,welles,1137264403 +56842,1251,dreams,1137264359 +56842,1941,stage,1137264380 +56842,1949,stage,1137264388 +56842,2010,visionary,1137344622 +56842,2285,surrealism,1137264507 +56842,2342,music,1137264520 +56842,2936,movies about movies,1198333968 +56842,3089,neorealism,1137344529 +56842,3468,intense,1137344786 +56842,3504,infidelity,1137344737 +56842,3504,television,1137344737 +56842,4427,stage,1137344760 +56842,5139,baseball,1137264734 +56842,6230,baseball,1137264753 +56842,7086,stage,1137344814 +56842,7135,new wave,1137344826 +56842,8650,stage,1137344851 +56842,40583,ambitious,1137344437 +56886,260,trilogy,1433101869 +56886,7011,Pedro Almodovar,1433105817 +56886,33264,Béla Tarr,1433106387 +56886,33264,Hungarian,1433106410 +56886,33264,long,1433106391 +56886,134383,documentary,1433104428 +56886,134383,georgia,1433104418 +56886,134389,1980s,1433106327 +56886,134389,Hungarian,1433106308 +56937,586,family,1447007594 +56937,586,funny,1447007753 +56937,2953,funny,1447007689 +56937,5096,lol,1447007644 +56937,5349,Action,1447007944 +56937,5816,adventure,1447007822 +56956,1953,car chase,1185910475 +56956,3785,silly but good,1185910569 +56956,3916,very good,1185910721 +56956,3967,ballet,1185910688 +56956,3967,dancing,1185910688 +56956,4262,chainsaw,1185910663 +56956,4262,classic,1185910663 +56956,4262,guns,1185910663 +56956,4270,exciting,1185910709 +56956,4310,LOVE TRIANGLES,1185910629 +56956,4447,pink,1185910605 +56956,4975,weird,1185910744 +56956,5377,british comedy,1185910506 +56956,5679,scary as hell,1185910558 +56956,6934,revolutionary,1185910545 +56956,7147,dreamlike,1185910517 +56956,8622,makes you think,1185910699 +56960,799,Ghosts,1139688367 +56960,2762,Ghosts,1137892672 +56960,3081,fairy tales,1139289956 +56960,6041,holocaust,1142308578 +56960,6950,West,1140374418 +56960,8370,Kitano,1138500225 +56960,27783,Jews,1140103408 +56960,30850,Jews,1140103432 +56960,30850,Venice,1138595649 +56960,31162,biographical,1140103357 +56960,33903,revolution,1139358517 +56960,34532,New Orleans,1137892501 +56960,35957,Airplane,1140384972 +56960,36401,fairy tales,1139289767 +56968,2019,Akira Kurosawa,1446571146 +56968,2019,atmospheric,1446571150 +56968,2019,historical,1446571159 +56968,2019,stylized,1446571154 +56968,2395,clever,1446571479 +56968,2395,coming of age,1446571464 +56968,2395,deadpan,1446571459 +56968,2395,high school,1446571469 +56968,2395,private school,1446571472 +56968,2395,stylized,1446571482 +56968,2395,Wes Anderson,1446571454 +56968,3081,19th century,1446570601 +56968,3081,atmospheric,1446570597 +56968,3081,Johnny Depp,1446570591 +56968,3081,quirky,1446570605 +56968,3081,visually appealing,1446570595 +56968,3489,pirates,1446570645 +56968,3489,visually appealing,1446570646 +56968,57669,ambiguous ending,1446132344 +56968,57669,beautiful scenery,1446132329 +56968,57669,Brendan Gleeson,1446132326 +56968,57669,dark comedy,1446132322 +56968,57669,irish accent,1446132334 +56968,57669,stylized,1446132331 +56977,5577,Coming of Age,1347124615 +57023,260,space action,1439877457 +57027,2,Lebbat,1146925453 +57027,2541,Lebbat,1146925544 +57038,45447,bullshit history,1160438083 +57078,260,Fantasy,1444069922 +57078,260,space action,1444069945 +57083,318,great acting,1438585571 +57083,318,psychology,1438585580 +57083,6188,college,1438585639 +57083,6188,fraternity,1438585628 +57083,6188,not funny,1438585633 +57083,86320,apocalypse,1438585440 +57083,86320,beautiful,1438585458 +57083,86320,beautiful music,1438585488 +57083,86320,big themes,1438585467 +57083,86320,cinematography,1438585493 +57083,86320,depression,1438585418 +57083,86320,Drama,1438585479 +57083,86320,end of the world,1438585448 +57083,86320,introspective,1438585430 +57083,86320,Kirsten Dunst,1438585411 +57083,86320,Lars von Trier,1438585414 +57083,86320,Magic realism,1438585461 +57083,86320,metaphors,1438585485 +57083,86320,sense of futility,1438585491 +57083,86320,siblings,1438585469 +57083,86320,sisters,1438585425 +57084,924,artificial intelligence,1433748935 +57084,924,future,1433748969 +57084,924,sci-fi,1433748898 +57084,924,Stanley Kubrick,1433748938 +57084,924,visually appealing,1433748950 +57084,106920,artificial intelligence,1433748764 +57084,106920,beautiful,1433748799 +57084,106920,boring,1433748777 +57084,106920,embarrasing,1433748805 +57084,106920,excellent acting,1433748834 +57084,106920,Future truth,1433748708 +57084,106920,Human Computer Interaction,1433748792 +57084,106920,sci-fi,1433748670 +57084,106920,thought-provoking,1433748689 +57090,296,multiple storylines,1313071163 +57090,296,nonlinear,1313071173 +57090,589,the best terminator,1297564723 +57090,593,Anthony Hopkins,1313071129 +57090,593,best movie villain,1313071117 +57090,608,camerawork,1295924787 +57090,608,Coen Brothers,1295924796 +57090,608,irritating,1295924779 +57090,805,Kevin Spacey,1299347350 +57090,805,ridiculous bomb disposal scene,1299347318 +57090,1029,drunk hallucination,1297565086 +57090,1209,great soundtrack,1297279694 +57090,1321,David Naughton,1312070404 +57090,1321,Funny,1312070256 +57090,1321,Griffin Dunne,1312070365 +57090,1321,Jenny Agutter,1312070423 +57090,1377,cat women,1295060103 +57090,1394,cute baby,1304546911 +57090,1876,Leelee Sobieski,1294944542 +57090,2046,childhood classic,1313070996 +57090,2078,great soundtrack,1297565188 +57090,2701,theme song,1304547379 +57090,2712,Leelee Sobieski,1294944443 +57090,2959,anarchism,1313071424 +57090,2959,multiple dissociative personality disorder,1313071388 +57090,4105,funny,1312070168 +57090,4105,so bad it's good,1312070212 +57090,4105,tree rape,1312070186 +57090,4128,camp,1294873951 +57090,4128,so bad it's good,1294873939 +57090,4519,my favourite kids movie,1297564955 +57090,4558,so bad it's good,1297564844 +57090,5038,classic,1313071308 +57090,5069,beautiful artwork,1297566037 +57090,5069,The Series Was Better,1297566008 +57090,6283,amazing artwork,1297566086 +57090,7254,alternate reality,1294873878 +57090,7254,Ashton Kutcher,1294873836 +57090,7254,stupid,1294873847 +57090,8966,interesting,1312070070 +57090,8966,John Lithgow,1312070090 +57090,8966,Liam Neeson,1312070069 +57090,26614,easily confused with other movie(s) (title),1296616187 +57090,27156,Epic,1313071268 +57090,27156,Final fight of Asuka Langley Soryu,1313071254 +57090,32554,3 short stories,1297606885 +57090,32554,3rd story not as good as the first two,1297606915 +57090,32554,different directors and styles,1297607033 +57090,32554,fantastic animation,1297606949 +57090,32554,maker of akira,1297607045 +57090,32587,graphic novel,1313071033 +57090,32587,Jessica Alba,1313071054 +57090,36527,anthony hopkins,1309036136 +57090,36527,jake gyllenhaal,1309036157 +57090,45668,bad acting,1296615415 +57090,45668,bad premise,1296615430 +57090,45668,Sandra Bullock,1296615599 +57090,51575,everything else,1304547172 +57090,51575,William H. Macy,1304547161 +57090,60979,good animation,1295484600 +57090,60979,no overarching plot,1295484632 +57090,63992,dumb,1295924536 +57090,63992,formulaic,1295924518 +57090,70046,anthology,1297912113 +57090,70046,classic,1297912122 +57090,70046,slow paced,1297912135 +57090,70533,amazing artwork,1297469870 +57090,70533,not new,1297469838 +57090,72407,dumb,1295924572 +57090,72407,formulaic,1295924558 +57090,78772,dumb,1295924623 +57090,78772,formulaic,1295924634 +57090,80281,funny songs,1304892268 +57090,80281,not as good as part troll,1304892288 +57090,84187,amazing artwork,1297525862 +57090,84187,slightly changed story from original,1297525837 +57102,741,anime,1166800848 +57102,1274,anime,1166800434 +57102,2810,anime,1166800892 +57102,3000,anime,1166799537 +57102,3000,Studio Ghibli,1166799553 +57102,4850,anime,1167604816 +57102,5069,anime,1166800307 +57102,5072,anime,1166800482 +57102,5146,anime,1166800187 +57102,5618,anime,1166799495 +57102,5618,Studio Ghibli,1166799501 +57102,5690,anime,1166799702 +57102,5971,anime,1166799699 +57102,5971,Studio Ghibli,1166800750 +57102,6283,anime,1166799967 +57102,6350,anime,1166799681 +57102,6350,Studio Ghibli,1166800143 +57102,6713,anime,1166799920 +57102,6857,anime,1167604555 +57102,7099,anime,1166799617 +57102,7099,Studio Ghibli,1166799887 +57102,7118,anime,1167604739 +57102,8157,anime,1166801195 +57102,8253,anime,1166799685 +57102,8426,anime,1166800248 +57102,8607,anime,1166800758 +57102,26662,anime,1166799928 +57102,26662,Studio Ghibli,1166799953 +57102,26776,anime,1166799670 +57102,26776,Studio Ghibli,1166799668 +57102,27660,anime,1166800551 +57102,27728,anime,1166801435 +57102,27731,anime,1166799691 +57102,27731,Studio Ghibli,1166800833 +57102,31184,anime,1167604612 +57102,31658,anime,1166799694 +57102,31658,Studio Ghibli,1166799696 +57102,31660,anime,1166800447 +57102,37830,anime,1166800582 +57115,539,chick flick,1205831220 +57115,539,Meg Ryan,1205831215 +57115,597,prince charming,1205831150 +57115,2125,chick flick,1205830660 +57115,2125,comedy,1205830013 +57115,2125,lovely,1205830662 +57115,2125,repeat watch,1205830008 +57115,2125,romance,1205830011 +57115,3409,great,1205831610 +57115,3409,premonition,1205831617 +57115,4823,few nice laughs,1205830262 +57115,4823,john cusack,1205830252 +57115,4823,wedding,1205830257 +57115,4992,girlie movie,1205831666 +57115,8643,Hilary Duff,1205830652 +57115,8808,teen,1205831561 +57115,43917,dogs,1205829978 +57117,3074,Robert Redford,1216484352 +57117,3367,Great Ensemble Cast,1220517889 +57117,3737,Kirk Douglas,1216485617 +57117,3947,Michael Caine,1220511068 +57117,4363,Cliff Robertson,1220510295 +57117,4363,Michael Caine,1220510152 +57117,4824,Jerry Garcia,1217021499 +57117,5115,John Wayne,1220518366 +57117,5115,Kirk Douglas,1220518366 +57117,6409,Jimmy Stewart,1216483231 +57117,6437,Great movie,1216483142 +57117,6451,Robert Redford,1216484265 +57117,7205,Candice Bergen,1216487378 +57117,7205,Sean Connery,1216487378 +57117,7410,Robert Ludlam,1217716782 +57117,8700,Excellent just excellent,1216482961 +57117,26138,Sean Connery,1217017983 +57117,59850,action,1429514920 +57117,59850,charles bronson,1429514920 +57117,59850,mystery,1429514920 +57120,48678,awesome,1236227806 +57131,1,Cartoon,1202263448 +57131,260,Star Wars,1202262459 +57131,837,funny and interesting,1202258764 +57131,919,Some where over the rainbow,1202259016 +57131,1013,twins separated at birth,1202258736 +57131,1064,Cartoon,1202263859 +57131,1196,Star Wars,1202262456 +57131,1210,Star Wars,1202262452 +57131,1221,Too much talking,1202262020 +57131,1429,Lots of fighting,1202258850 +57131,2018,cartoon,1202262282 +57131,2018,cute,1202262282 +57131,2018,Disney animated feature,1202258772 +57131,2080,Cartoon,1202263536 +57131,2087,Cartoon,1202262573 +57131,2096,Cartoon,1202262466 +57131,2125,Cartoon,1202262656 +57131,2141,Cartoon,1202262668 +57131,2572,Teen movie,1202261249 +57131,3159,Boring,1202262714 +57131,3159,Cartoon,1202262704 +57131,4306,Cartoon,1202262490 +57131,4306,Funny,1202262490 +57131,4886,cartoon,1202262394 +57131,4886,cute,1202262395 +57131,5971,Cartoon,1202262127 +57131,5971,Cute,1202262114 +57131,5971,Totoro,1202262114 +57131,6377,cartoon,1202262421 +57131,6377,fish,1202259043 +57131,6377,lost child,1202259029 +57131,7064,Cartoon,1202263053 +57131,7069,Shakespeare,1202260518 +57131,8360,Cartoon,1202262478 +57131,8360,Funny,1202262478 +57131,8961,cartoon,1202262407 +57131,8961,cute,1202262407 +57131,8961,Disney animated feature,1202258851 +57131,8961,funny,1202258865 +57131,8961,supernatural,1202258865 +57131,31193,Cartoon,1202262650 +57131,40629,Romantic and sweet,1202258825 +57131,44022,Cartoon,1202263771 +57131,45106,Hugh Grant,1202263876 +57131,45106,Mandy Moore,1202263876 +57131,45431,Cartoon,1202262950 +57131,45431,Funny,1202262950 +57131,50806,Very funny!,1202264442 +57131,50872,a clever chef rat,1202258807 +57131,50872,cute. cartoon,1202262377 +57131,50872,funny,1202259895 +57131,54272,Cartoon,1202263616 +57131,56367,About a girl,1202258669 +57142,112552,good music,1424678093 +57142,112552,intense,1424678093 +57142,112552,psychological,1424678093 +57153,260,incest,1436111779 +57153,260,space,1436111769 +57153,55442,culture clash,1436112082 +57153,55442,feminism,1436112082 +57153,55442,growing up,1436112082 +57165,1320,alien series,1160894037 +57196,8606,avant garde,1177722819 +57196,8606,beat generation,1177722831 +57196,8606,jack kerouac,1177722847 +57196,8606,short film,1177722859 +57196,26082,japanese,1174405702 +57214,356,vietnam war,1301490960 +57219,1,Pixar,1289858327 +57219,1,witty,1289858334 +57219,39,Classic,1289860686 +57219,39,Comedy,1289860690 +57219,39,high school,1289860680 +57219,39,Paul Rudd,1289860693 +57219,47,Brad Pitt,1289857899 +57219,47,Kevin Spacey,1289857897 +57219,47,Morgan Freeman,1289857892 +57219,47,twist ending,1289857895 +57219,62,feel-good,1289859660 +57219,62,sappy,1289859649 +57219,70,George Clooney,1289861305 +57219,70,horror,1289861311 +57219,70,intense,1289861313 +57219,70,Quentin Tarantino,1289861301 +57219,70,Robert Rodriguez,1289861306 +57219,70,vampires,1289861303 +57219,112,amazing fight choreography,1289859607 +57219,112,bad dub,1289859599 +57219,112,Jackie Chan,1289859597 +57219,112,kung fu,1289859603 +57219,112,martial arts,1289859601 +57219,153,Jim Carrey,1289860825 +57219,153,Nicole Kidman,1289860831 +57219,223,good dialogue,1289860048 +57219,223,Kevin Smith,1289860043 +57219,223,minimalist,1289860051 +57219,223,view askew,1289860046 +57219,231,Buddy movie,1289860005 +57219,231,Jeff Daniels,1289859994 +57219,231,Jim Carrey,1289859996 +57219,231,protagonist is an idiot,1289860002 +57219,231,silly,1289859998 +57219,260,Harrison Ford,1289860289 +57219,457,chase,1289860913 +57219,457,Tommy Lee Jones,1289860910 +57219,480,dinosaurs,1289861001 +57219,480,Jeff Goldblum,1289861009 +57219,551,beautiful,1289857944 +57219,551,gothic,1289857929 +57219,551,halloween,1289857931 +57219,551,Tim Burton,1289857925 +57219,551,whimsical,1289857926 +57219,555,Christian Slater,1289860952 +57219,555,Patricia Arquette,1289860948 +57219,588,adventure,1289858316 +57219,588,musical,1289858307 +57219,592,Jack Nicholson,1289861203 +57219,592,Tim Burton,1289861206 +57219,593,Anthony Hopkins,1289860966 +57219,593,Jodie Foster,1289860969 +57219,594,childhood classics,1289859018 +57219,594,classic,1289859016 +57219,661,fantasy,1289859783 +57219,673,nostalgic,1289859493 +57219,736,Cary Elwes,1289858953 +57219,780,Will Smith,1289860506 +57219,899,Dance,1289859505 +57219,899,enjoyable,1289859508 +57219,1022,enchanting. loved it!,1289858233 +57219,1022,fairy tale,1289858232 +57219,1022,own,1289858227 +57219,1073,surreal,1289860178 +57219,1073,whimsical,1289860180 +57219,1080,British,1289859669 +57219,1080,controversial,1289859675 +57219,1080,satire,1289859671 +57219,1136,medieval,1289858577 +57219,1136,Monty Python,1289858579 +57219,1136,parody,1289858573 +57219,1136,satire,1289858575 +57219,1198,adventure,1289858429 +57219,1198,archaeology,1289858427 +57219,1198,Harrison Ford,1289858423 +57219,1214,aliens,1289861070 +57219,1214,Sigourney Weaver,1289861065 +57219,1214,slow,1289861077 +57219,1291,archaeology,1289858752 +57219,1291,Harrison Ford,1289858749 +57219,1291,Holy Grail,1289858747 +57219,1291,Sean Connery,1289858758 +57219,1377,Danny DeVito,1289861050 +57219,1377,Tim Burton,1289861047 +57219,1380,classic,1289858799 +57219,1380,great soundtrack,1289858805 +57219,1380,John Travolta,1289858801 +57219,1391,ensemble cast,1289859707 +57219,1391,funny,1289859701 +57219,1391,Tim Burton,1289859705 +57219,1405,stupid,1289860818 +57219,1517,Elizabeth Hurley,1289859452 +57219,1517,Mike Myers,1289859446 +57219,1517,Will Ferrell,1289859449 +57219,1562,Alicia Silverstone,1289860847 +57219,1562,George Clooney,1289860845 +57219,1580,Tommy Lee Jones,1289857978 +57219,1580,Will Smith,1289857980 +57219,1729,great plot,1289858108 +57219,1729,Quentin Tarantino,1289858100 +57219,1729,Samuel L. Jackson,1289858101 +57219,1732,John Goodman,1289858854 +57219,1732,quirky,1289858842 +57219,2081,childhood,1289858022 +57219,2115,adventure,1289858510 +57219,2115,archaeology,1289858501 +57219,2115,Harrison Ford,1289858512 +57219,2115,Kate Capshaw,1289858536 +57219,2122,creepy kids,1289860753 +57219,2122,Stephen King,1289860754 +57219,2122,youth gone wild,1289860757 +57219,2273,Jackie Chan,1289859583 +57219,2273,martial arts,1289859584 +57219,2324,bittersweet,1289858081 +57219,2324,tear jerker,1289858077 +57219,2355,Pixar,1289860762 +57219,2413,Tim Curry,1289859298 +57219,2478,goofy,1289858354 +57219,2478,silly fun,1289858357 +57219,2478,upbeat,1289858359 +57219,2683,Gross-out,1289859430 +57219,2683,Mike Myers,1289859434 +57219,2683,Will Ferrell,1289859424 +57219,2700,adult humor,1289860309 +57219,2700,censorship,1289860302 +57219,2700,controversial,1289860301 +57219,2700,parody,1289860305 +57219,2700,satire,1289860307 +57219,2701,steampunk,1289861117 +57219,2701,Will Smith,1289861109 +57219,2716,comedy,1289859975 +57219,2716,mystery,1289859977 +57219,2716,paranormal,1289859967 +57219,2716,Sigourney Weaver,1289859969 +57219,3034,classic,1289858399 +57219,3034,easily confused with other movie(s) (title),1289858404 +57219,3034,medieval,1289858414 +57219,3052,Kevin Smith,1289860594 +57219,3114,abandonment,1289860271 +57219,3114,Pixar,1289860275 +57219,3255,madonna,1289859736 +57219,3255,nostalgic,1289859742 +57219,3255,Tom Hanks,1289859740 +57219,4015,Ashton Kutcher,1289858815 +57219,4015,Jennifer Garner,1289858820 +57219,4015,Seann William Scott,1289858819 +57219,4015,silly,1289858829 +57219,4306,Cameron Diaz,1289859038 +57219,4306,comedy,1289859046 +57219,4306,Eddie Murphy,1289859040 +57219,4306,satire,1289859034 +57219,4646,Clive Owen,1289858785 +57219,4646,Helen Mirren,1289858787 +57219,4646,Underrated,1289858790 +57219,4701,Chris Tucker,1289859571 +57219,4701,Jackie Chan,1289859569 +57219,4701,martial arts,1289859574 +57219,4734,ensemble cast,1289860495 +57219,4734,Kevin Smith,1289860491 +57219,4734,Stoner Movie,1289860488 +57219,4734,view askew,1289860489 +57219,4878,thought-provoking,1289861179 +57219,4886,Billy Crystal,1289858587 +57219,4886,door to the different world,1289858597 +57219,4886,John Goodman,1289858588 +57219,4886,Pixar,1289858590 +57219,4890,Gwenth Paltrow,1289859558 +57219,4890,Jack Black,1289859553 +57219,4890,moralistic,1289859561 +57219,4896,harry potter,1289859859 +57219,4896,magic,1289859867 +57219,4993,beautifully filmed,1289858740 +57219,4993,ensemble cast,1289858737 +57219,4993,fantasy,1289858735 +57219,5218,John Leguizamo,1289859101 +57219,5419,animation remade as live action,1289860337 +57219,5444,Cute!,1289858048 +57219,5444,family,1289858041 +57219,5459,first was much better,1289858689 +57219,5459,Johnny Knoxville,1289858679 +57219,5459,Lara Flynn Boyle,1289858681 +57219,5459,Tommy Lee Jones,1289858673 +57219,5459,Will Smith,1289858670 +57219,5481,Beyoncé Knowles,1289860928 +57219,5481,crude,1289860931 +57219,5481,jumped the shark,1289860923 +57219,5481,sex jokes,1289860926 +57219,5502,eerie,1289859521 +57219,5502,Joaquin Phoenix,1289859523 +57219,5502,Mel Gibson,1289859526 +57219,5502,ridiculous,1289859516 +57219,5572,Cedric the Entertainer,1289859414 +57219,5816,fantasy,1289860532 +57219,5816,harry potter,1289860528 +57219,5952,ensemble cast,1289858716 +57219,5952,fantasy,1289858711 +57219,5995,Adrien Brody,1289858548 +57219,5995,beautiful,1289858556 +57219,5995,poignant,1289858553 +57219,6373,Jim Carrey,1289860116 +57219,6373,Morgan Freeman,1289860117 +57219,6377,classic,1289858152 +57219,6377,Pixar,1289858163 +57219,6377,seen more than once,1289858156 +57219,6807,ridiculous,1289860477 +57219,6807,satire,1289860471 +57219,6936,silly,1289859291 +57219,6936,Will Ferrell,1289859288 +57219,7147,stylized,1289860806 +57219,7147,surreal,1289860804 +57219,7147,Tim Burton,1289860799 +57219,7153,ensemble cast,1289858729 +57219,7153,fantasy,1289858725 +57219,7373,Guillermo del Toro,1289859847 +57219,7373,steampunk,1289859849 +57219,7451,suprisingly clever,1289859071 +57219,7454,frantic,1289861135 +57219,7454,Hugh Jackman,1289861132 +57219,7454,Kate Beckinsale,1289861127 +57219,7454,moronic,1289861124 +57219,8361,catastrophe,1289860608 +57219,8361,inaccurate,1289860612 +57219,8361,Post apocalyptic,1289860605 +57219,8361,propaganda,1289860602 +57219,8368,better than the book,1289859172 +57219,8368,harry potter,1289859164 +57219,8368,magic,1289859165 +57219,8376,boring,1289861166 +57219,8376,overrated,1289861159 +57219,8533,covers a lifespan,1289859637 +57219,8533,memory loss,1289859629 +57219,8533,sad,1289859627 +57219,8641,Steve Carrell,1289860866 +57219,8644,artificial intelligence,1289860522 +57219,8644,Will Smith,1289860514 +57219,8783,Atmospheric,1289858905 +57219,8783,secrets,1289858919 +57219,8783,Sigourney Weaver,1289858917 +57219,8807,Buddy movie,1289859926 +57219,8807,high brow stupidity,1289859921 +57219,8807,John Cho,1289859915 +57219,8807,shenanigans,1289859924 +57219,8874,Simon Pegg,1289861141 +57219,8874,slackers,1289861146 +57219,8874,stupid,1289861153 +57219,8874,zombies,1289861142 +57219,8961,Pixar,1289858770 +57219,8961,Samuel L. Jackson,1289858774 +57219,8961,superhero,1289858772 +57219,8974,silly,1289859478 +57219,8974,SpongeBob!,1289859482 +57219,26403,author:J. R. R. Tolkein,1289944686 +57219,26403,cheesy,1289944684 +57219,26492,Rod Serling,1289860190 +57219,26492,vignettes,1289860191 +57219,30793,dark,1289860099 +57219,30793,father-son relationship,1289860109 +57219,30793,Johnny Depp,1289860087 +57219,30793,remake,1289860101 +57219,30793,silly fun,1289860092 +57219,30793,Tim Burton,1289860090 +57219,32031,Poor plot development,1289860394 +57219,33794,Christian Bale,1289858277 +57219,33794,Morgan Freeman,1289858273 +57219,33794,vigilante,1289858282 +57219,34072,beautifully filmed,1289858703 +57219,34072,morgan freeman,1289858704 +57219,34072,penguins,1289858697 +57219,34072,very moving,1289858699 +57219,35836,Steve Carell,1289860938 +57219,37729,Danny Elfman score,1289860021 +57219,37729,Depp & Burton,1289860017 +57219,37729,Helena Bonham Carter,1289860013 +57219,37729,Johnny Depp,1289860015 +57219,37857,alternate reality,1289859688 +57219,37857,visually appealing,1289859685 +57219,40815,dragons,1289859908 +57219,40815,fantasy,1289859900 +57219,40815,harry potter,1289859902 +57219,41566,adventure,1289860061 +57219,41566,C.S. Lewis,1289860059 +57219,41566,fantasy,1289860064 +57219,44022,Comedy,1289859096 +57219,44022,John Leguizamo,1289859089 +57219,45431,better than expected,1289860444 +57219,45431,dreamworks animation,1289860440 +57219,45431,Steve Carell,1289860437 +57219,45447,conspiracy theory,1289860626 +57219,45447,Tom Hanks,1289860621 +57219,45517,Owen Wilson,1289859365 +57219,45517,Pixar,1289859350 +57219,45517,villain nonexistent or not needed for good story,1289859356 +57219,45728,Kevin Smith,1289860027 +57219,45728,pop culture references,1289860037 +57219,45728,view askew,1289860030 +57219,46578,drugs,1289858011 +57219,46578,funny,1289858009 +57219,46578,satire,1289858005 +57219,48385,overrated,1289861198 +57219,48394,atmospheric,1289857914 +57219,48394,bittersweet,1289857912 +57219,50601,hurried ending,1289860786 +57219,50872,pixar,1289860418 +57219,51255,Simon Pegg,1289861224 +57219,51255,stupid,1289861232 +57219,52973,Jason Segel,1289859762 +57219,52973,Paul Rudd,1289859765 +57219,52973,Seth Rogen,1289859766 +57219,52973,sophomoric,1289859770 +57219,53121,bad sequel,1289859539 +57219,53121,John Cleese,1289859544 +57219,53121,Mike Myers,1289859545 +57219,53974,Mandy Moore,1289860893 +57219,53974,Robin Williams,1289860894 +57219,54001,harry potter,1289859201 +57219,54001,Helena Bonham Carter,1289859188 +57219,54001,magic,1289859205 +57219,54190,Beatles,1289861213 +57219,54190,Beatles soundtrack,1289861215 +57219,54259,atmospheric,1289857835 +57219,54259,fairy tale,1289857831 +57219,54259,fairy tale romance,1289857828 +57219,54272,cameo:Tom Hanks,1289858383 +57219,54272,simpsons,1289858375 +57219,54503,Seth Rogen,1289860880 +57219,54995,Josh Brolin,1290364226 +57219,54995,over the top,1290364232 +57219,54995,Robert Rodriguez,1290364223 +57219,54995,splatter,1290364230 +57219,54995,zombies,1290364228 +57219,54997,Christian Bale,1289859458 +57219,56152,Disney almost making fun of itself,1289859263 +57219,56152,fairy tale,1289859267 +57219,56152,Musical,1289859269 +57219,56174,alone in the world,1289859802 +57219,56174,Post apocalyptic,1289859799 +57219,56174,survival,1289859797 +57219,56174,underwhelming ending,1289859793 +57219,56174,Will Smith,1289859795 +57219,56587,Jack Nicholson,1289860779 +57219,56587,Morgan Freeman,1289860777 +57219,56587,Weak screenplay,1289860773 +57219,56757,Helena Bonham Carter,1289858997 +57219,56757,Musical,1289858973 +57219,56757,Tim Burton,1289858975 +57219,57640,Guillermo del Toro,1289859135 +57219,57640,not as good as the first,1289859148 +57219,58299,Jim Carrey,1289859813 +57219,58299,Steve Carell,1289859818 +57219,58299,world inside another world,1289859816 +57219,58306,history,1289858617 +57219,58490,Amy Adams,1289859053 +57219,58490,Frances McDormand,1289859051 +57219,58490,Lee Pace,1289859056 +57219,58559,Christian Bale,1289858207 +57219,58559,Morgan Freeman,1289858205 +57219,58839,comedy,1289859716 +57219,58839,George Clooney,1289859713 +57219,58839,historical,1289859719 +57219,59018,humanity,1289858868 +57219,59501,Ben Barnes,1289860733 +57219,59501,Caspian's accent,1289860745 +57219,59501,not true to the book,1289860713 +57219,59501,romance,1289860722 +57219,59615,aliens,1289858481 +57219,59615,archaeology,1289858491 +57219,59615,Harrison Ford,1289858476 +57219,59615,indiana jones,1289858477 +57219,59615,worse than predecessors,1289858482 +57219,59784,Jackie Chan,1289859749 +57219,59784,martial arts,1289859752 +57219,59784,Seth Rogen,1289859750 +57219,60069,adventure,1289857811 +57219,60069,robots,1289857801 +57219,60069,social commentary,1289857804 +57219,60074,anti-hero,1289860550 +57219,60074,bad ending,1289860548 +57219,60074,bad script,1289860542 +57219,60074,derailed by twist,1289860543 +57219,60074,Jason Bateman,1289860553 +57219,60074,not as good as I expected,1289860545 +57219,60074,Will Smith,1289860555 +57219,60161,Based on a TV show,1289859240 +57219,60161,david cross,1289859243 +57219,60161,intelligent humor,1289859244 +57219,60609,cat and mouse,1289858195 +57219,60609,good and evil,1289858193 +57219,61024,James Franco,1289860429 +57219,61024,Seth Rogen,1289860425 +57219,61024,Stoner Movie,1289860430 +57219,61255,anti-hero,1289860383 +57219,61255,Rainn Wilson,1289860381 +57219,61729,Ricky Gervais,1289860568 +57219,61729,Téa Leoni,1289860575 +57219,62956,futurama,1289859986 +57219,63859,comic sidekick,1289859395 +57219,63859,Miley Cyrus,1289859386 +57219,64034,Friendship,1289858248 +57219,64034,touching,1289858255 +57219,64034,Vera Farmiga,1289858257 +57219,64614,culture clash,1289859222 +57219,64614,ending,1289859216 +57219,64614,sacrifice,1289859228 +57219,67695,Angry,1289861248 +57219,67695,Anna Faris,1289861238 +57219,67695,Hateful,1289861240 +57219,67695,mean-spirited,1289861250 +57219,67695,Seth Rogen,1289861246 +57219,67695,Walked out/didn't finish,1289861242 +57219,68135,redemption,1289860144 +57219,68135,Zac Efron,1289860139 +57219,68358,action,1289857844 +57219,68358,adventure,1289857846 +57219,68358,Winona Ryder,1289857864 +57219,68554,mystery,1289857727 +57219,68554,not faithful to the book,1289857721 +57219,68554,Tom Hanks,1289857740 +57219,68554,unrealistic,1289857734 +57219,68954,adventure,1289858940 +57219,68954,Pixar,1289858938 +57219,68954,slow,1289858932 +57219,68954,touching,1289858936 +57219,69122,disappointing,1289859939 +57219,69122,Ed Helms,1289859948 +57219,69844,Alan Rickman,1289859884 +57219,69844,disappointing,1289859877 +57219,69844,fantasy,1289859885 +57219,69844,harry potter,1289859887 +57219,69844,Helena Bonham Carter,1289859882 +57219,69844,romance,1289859880 +57219,70286,intelligent sci-fi,1289858183 +57219,70286,thoughtful,1289858177 +57219,70286,unique,1289858179 +57219,71254,gratuitous violence,1289861017 +57219,71535,ending,1289860166 +57219,71535,Woody Harrelson,1289860160 +57219,71535,zombies,1289860158 +57261,2959,atmospheric,1443105348 +57261,2959,dark comedy,1443105325 +57261,2959,Edward Norton,1443105329 +57261,2959,mindfuck,1443105348 +57261,2959,philosophical,1443105333 +57261,2959,psychology,1443105327 +57261,2959,twist ending,1443105321 +57261,89492,based on a true story,1443105455 +57261,89492,Educational,1443105462 +57261,89492,great acting,1443105451 +57261,89492,intelligent,1443105453 +57261,89492,math,1443105447 +57305,104239,documentary,1420067971 +57305,104239,farming,1420067971 +57305,104239,food,1420067971 +57320,260,scifi cult,1430841585 +57320,260,space,1430841592 +57330,260,classic sci-fi,1439816669 +57330,260,space epic,1439816674 +57346,7153,Adventure,1448795275 +57346,95510,action,1448795262 +57370,22,thriller,1372713381 +57370,29,dark,1372710269 +57370,70,Better first half,1362347199 +57370,70,campy,1362347210 +57370,111,dark,1372710269 +57370,111,mental illness,1372710413 +57370,157,politics,1372712735 +57370,161,tense,1372713339 +57370,216,stupid,1372712861 +57370,440,politics,1372712736 +57370,474,tense,1372713339 +57370,519,franchise,1372710355 +57370,555,ensemble cast,1372710300 +57370,555,violent,1372714222 +57370,832,tense,1372713339 +57370,832,thriller,1372713381 +57370,861,police,1372712675 +57370,1089,violent,1372714222 +57370,1095,ensemble cast,1372710300 +57370,1206,violent,1372714222 +57370,1214,tense,1372713339 +57370,1262,ensemble cast,1372710300 +57370,1287,christianity,1372710255 +57370,1390,politics,1372712736 +57370,1396,ensemble cast,1372710300 +57370,1464,mystery,1372710423 +57370,1589,ensemble cast,1372710300 +57370,1597,thriller,1372713381 +57370,1610,thriller,1372713381 +57370,1950,police,1372712675 +57370,2024,christianity,1372710255 +57370,2026,high school,1372710380 +57370,2058,tense,1372713339 +57370,2076,dark,1372710269 +57370,2082,inspirational,1372710401 +57370,2335,stupid,1372712861 +57370,2353,thriller,1372713381 +57370,2383,police,1372712675 +57370,2490,violent,1372714222 +57370,2500,high school,1372710380 +57370,2882,nazis,1372711663 +57370,2888,high school,1372710380 +57370,2919,politics,1372712735 +57370,2944,ensemble cast,1372710300 +57370,2959,violent,1372714222 +57370,2985,violent,1372714222 +57370,3146,stupid,1372712861 +57370,3178,inspirational,1372710401 +57370,3256,tense,1372713339 +57370,3256,thriller,1372713381 +57370,3273,franchise,1372710356 +57370,3362,police,1372712675 +57370,3440,franchise,1372710355 +57370,3519,nazis,1372711663 +57370,3683,dark,1372710269 +57370,3811,politics,1372712735 +57370,3911,Christopher Guest,1362347325 +57370,3911,quirky,1362347332 +57370,4306,pixar,1372712649 +57370,4388,stupid,1372712861 +57370,4754,christianity,1372710255 +57370,4865,dark,1372710269 +57370,4865,mystery,1372710423 +57370,4974,stupid,1372712861 +57370,5107,nazis,1372711663 +57370,5218,pixar,1372712649 +57370,5363,high school,1372710380 +57370,5444,pixar,1372712649 +57370,5785,stupid,1372712861 +57370,5902,based on a book,1362347462 +57370,5902,Charlie Kaufman,1362347453 +57370,6537,franchise,1372710355 +57370,7160,mental illness,1372710413 +57370,8360,pixar,1372712649 +57370,8781,politics,1372712736 +57370,38038,pixar,1372712649 +57370,51540,police,1372712675 +57370,53121,franchise,1372710356 +57370,55290,police,1372712675 +57370,59784,pixar,1372712649 +57370,63113,franchise,1372710355 +57370,64622,nazis,1372711663 +57370,74458,mystery,1372710423 +57370,77854,David Cross,1362347302 +57370,77854,imaginative,1362347288 +57370,77854,Michel Gondry,1362347291 +57370,77854,Underrated Director,1362347295 +57370,92008,fight choreography,1362347404 +57370,92008,unglamorized spy film,1362347407 +57436,2908,transgender,1239551351 +57437,103235,beautifully tragic,1446427940 +57437,103669,meditative,1446427907 +57439,882,noHun,1441393266 +57439,1297,noHun,1442004591 +57439,71341,horror,1443992464 +57439,71341,low-budget,1443992448 +57439,83258,noHun,1437766513 +57439,96845,clever,1452113244 +57439,99112,sniper,1436206330 +57439,99112,without romance,1436206340 +57439,104431,low-budget,1443386490 +57439,109074,noHun,1436554934 +57439,111931,brutality,1441054250 +57439,111931,fight,1441054237 +57439,112087,noHun,1441565049 +57439,114246,serial killer,1435604729 +57439,114246,violence,1435604723 +57439,115887,sniper,1435062175 +57439,120112,noHun,1436649798 +57439,127252,noHUN,1435346795 +57439,128536,Hungary,1435042591 +57439,130956,serial killer,1440365884 +57439,130956,USSR,1440365833 +57439,135188,noHUN,1435085172 +57439,135294,duel,1434739463 +57439,135294,sniper,1434739445 +57439,135294,WW2,1434739439 +57439,136752,noHun,1440619985 +57439,139655,boring,1442260492 +57439,140725,guns,1440619158 +57439,140725,kids,1440619145 +57439,140820,love story,1442611009 +57439,140820,low-budget,1442610998 +57439,141755,noHun,1441304232 +57481,356,amarica,1434446457 +57481,356,hippies,1434446457 +57481,356,vietnam war,1434446457 +57490,296,Quentin Tarantino,1304265351 +57490,296,"the ""n"" word",1304265321 +57490,597,misogyny,1304265580 +57490,597,sexism,1304265611 +57490,788,Eddie Murphy,1304266230 +57490,788,fatphobia,1304266216 +57490,926,Bechdel Test:Pass,1249982648 +57490,926,Bette Davis,1249982671 +57490,1214,Sigourney Weaver,1342281048 +57490,1222,Bechdel Test:Fail,1304266085 +57490,1222,Vincent D'Onofrio,1304266106 +57490,1222,war,1304266098 +57490,1232,existentialism,1275611973 +57490,1232,slow,1275610980 +57490,2076,atmospheric,1340462911 +57490,2076,David Lynch,1340462907 +57490,2076,Kyle MacLachlan,1340462933 +57490,2132,Elizabeth Taylor,1339205063 +57490,2132,great performances,1339205066 +57490,2810,misogyny,1304010812 +57490,2810,RAPE & SEXUAL ABUSE,1304010784 +57490,2959,based on a book,1249982237 +57490,2959,dark comedy,1249982233 +57490,2959,philosophy,1249982220 +57490,2959,surreal,1249982222 +57490,2959,twist ending,1249982224 +57490,3262,atmospheric,1340462870 +57490,3262,David Lynch,1340462863 +57490,3262,surreal,1340462873 +57490,3546,Bette Davis,1339205045 +57490,3550,atmospheric,1344156892 +57490,3550,Catherine Deneuve,1344156905 +57490,3550,david bowie,1344156911 +57490,3550,stylized,1344156885 +57490,3550,Susan Sarandon,1344156915 +57490,4816,David Bowie,1247215299 +57490,4816,mindless one liners,1249981912 +57490,4816,quirky,1249981901 +57490,4816,spoof,1249981903 +57490,4973,beautifully filmed,1249982681 +57490,4973,comedy,1249982684 +57490,4973,idealism,1249982687 +57490,4973,quirky,1249982691 +57490,4973,romantic but not cheesy,1249982704 +57490,4973,stylized,1249982695 +57490,4973,whimsical,1249982693 +57490,4979,quirky,1249982102 +57490,4979,stylized,1249982097 +57490,5971,feel good movie,1264004167 +57490,5971,nature,1264004164 +57490,6291,social commentary,1278638653 +57490,6711,dismissive of the foreign culture,1304267249 +57490,7044,David Lynch,1344200218 +57490,7044,Laura Dern,1344200227 +57490,7044,wild and fresh,1344200236 +57490,7361,break-up,1304266557 +57490,7361,dreamlike,1304266585 +57490,7361,imagination,1304266627 +57490,7361,relationships,1304266536 +57490,7361,surrealism,1304266590 +57490,8910,existentialism,1249982130 +57490,8910,funny,1249982164 +57490,8910,mindless one liners,1249982178 +57490,8910,quirky good,1249982134 +57490,8910,satire,1249982139 +57490,8910,stylized,1249982153 +57490,8910,whimsical,1249982142 +57490,25750,Buster Keaton,1312354951 +57490,27397,Chan-wook Park,1278223201 +57490,27592,Chan-wook Park,1278199428 +57490,27843,Biography,1279305770 +57490,27843,chile,1279305706 +57490,27843,South America,1279305687 +57490,31364,korean,1451607633 +57490,31413,drugs,1423611331 +57490,31413,germany,1423611331 +57490,31413,mental health,1423611331 +57490,31696,Keanu Reeves,1381193757 +57490,31696,tilda swinton,1381193768 +57490,32587,misogyny,1304267393 +57490,32587,Quentin Tarantino,1304267361 +57490,32587,violence,1304267397 +57490,32587,violence against women,1304267384 +57490,33794,batman,1342828171 +57490,33794,big budget,1342828207 +57490,44555,complex characters,1344317962 +57490,52604,Ryan Gosling,1343106693 +57490,54503,Emma Stone,1264004356 +57490,55280,heartwarming,1342927789 +57490,55280,Ryan Gosling,1342927777 +57490,56367,feel good movie,1264004108 +57490,56367,feel-good,1264004112 +57490,58559,Batman,1249981959 +57490,58559,big budget,1249981974 +57490,58559,explosions,1249982014 +57490,58559,overrated,1304267588 +57490,58559,violence,1304267563 +57490,58559,violent,1304267566 +57490,59315,military,1249982047 +57490,59387,beautiful,1249982248 +57490,59387,stunning,1249982253 +57490,59387,stylized,1249982278 +57490,59387,visually stunning,1249982256 +57490,61240,based on a book,1269662334 +57490,61250,Anna Faris,1255213131 +57490,61250,dumb blonde,1255213153 +57490,61250,Emma Stone,1255213141 +57490,61250,Kat Dennings,1255213135 +57490,61994,brazil,1420941628 +57490,61994,slapstick,1420941628 +57490,61994,stylized,1420941628 +57490,67255,Gary Stu,1293301894 +57490,70728,Tom Hardy,1429586240 +57490,71518,Drew Barrymore,1263339879 +57490,71518,Ellen Page,1263339876 +57490,71518,Juliette Lewis,1263339873 +57490,71518,Kristen Wiig,1263339883 +57490,71535,Abigail Breslin,1255213073 +57490,71535,Emma Stone,1255213063 +57490,71535,funny,1255213077 +57490,73323,Gary Stu,1293301940 +57490,74458,ending twist,1270341454 +57490,74458,plot twist,1270341443 +57490,74458,psychological,1270341439 +57490,79132,big budget,1284824576 +57490,79702,Kieran Culkin,1288417616 +57490,79702,stylized,1288417621 +57490,79860,bad remake,1345079587 +57490,79860,nazi as good guy,1345080088 +57490,79860,racist,1345080075 +57490,80549,Emma Stone,1293171050 +57490,80831,remake,1345080642 +57490,80831,remake of a Swedish film,1293171099 +57490,80831,remake of Let The Right One In (2008),1293171106 +57490,80831,watered down,1345080696 +57490,81564,anti-hero,1353038581 +57490,81564,feel good movie,1353038572 +57490,81564,funny,1353038575 +57490,81564,heartwarming,1353038557 +57490,81845,Colin Firth,1304265010 +57490,81845,feel-good,1304264975 +57490,81845,friendship,1304264969 +57490,84863,drama,1419996532 +57490,84863,internet,1419996532 +57490,84863,lesbian,1419996532 +57490,84952,japanese,1304001476 +57490,85342,Brazil,1329850999 +57490,85342,foreign language,1329850986 +57490,85342,Latin America,1329850983 +57490,85510,Misogyny,1303512192 +57490,85510,misogyny disguised as empowerment,1344842632 +57490,85510,Rape Culture,1303512209 +57490,88129,atmospheric,1342973423 +57490,88129,ryan gosling,1342973428 +57490,88163,Ryan Gosling,1342911951 +57490,88163,Steve Carell,1342911948 +57490,89804,Ryan Gosling,1343178810 +57490,90376,tilda swinton,1330030962 +57490,94478,noncohesive,1355074027 +57490,95058,bad acting,1355082359 +57490,95058,Robert Pattinson,1355082348 +57490,95088,aubrey plaza,1384733707 +57490,95088,Jake Johnson,1384733696 +57490,95088,loose ends,1384733691 +57490,96281,Clever,1352851912 +57490,97957,great performances,1352900620 +57490,102123,James Franco,1381191392 +57490,102123,Jonah Hill,1381191421 +57490,102123,Seth Rogen,1381191397 +57490,103137,zeitgeist,1378440468 +57490,112183,Edward Norton,1429586333 +57490,121485,brazil,1420993543 +57490,121485,lesbian,1420993549 +57490,121485,literature,1421693614 +57490,121485,poetry,1420993554 +57490,121485,rio de janeiro,1421693614 +57500,260,futuristic,1432301185 +57500,260,space action,1432301208 +57503,1203,black and white,1427558779 +57503,1203,courtroom drama,1427558793 +57503,1203,dialog,1427558802 +57503,2571,conspiracy,1427558865 +57503,2571,sci-fi,1427558847 +57503,2571,visual effects,1427558871 +57503,109487,black hole,1427558822 +57503,109487,space,1427558818 +57503,109487,voyage,1427558826 +57518,260,awesome,1432484618 +57518,260,Science Fiction,1432484603 +57524,55577,the best movie ever made,1200169854 +57524,56174,another adaptation of _Iam Legend_,1200169591 +57529,260,combat,1441755495 +57529,260,space,1441755480 +57579,6218,predictable,1157921318 +57587,58156,ABA,1204503667 +57587,58156,Basketball,1204503653 +57587,62198,Biography,1223878595 +57587,62198,christianity,1223878610 +57587,62198,evangelism,1223878621 +57587,62198,religion,1223878580 +57587,62198,scam,1223878586 +57605,1232,dialogue driven,1435682733 +57605,1232,existentialism,1435682717 +57605,1232,philosophical,1435682723 +57605,1232,psychological,1435682724 +57605,1232,Totalitarianism,1435682748 +57605,2502,must show,1435879634 +57605,3481,music,1435879403 +57605,3481,relationships,1435879413 +57616,595,National Film Registry,1252278593 +57616,595,Oscar (Best Music - Original Score),1252278589 +57616,595,Oscar (Best Music - Original Song),1252278601 +57616,1464,atmospheric,1252711248 +57616,1464,disturbing,1252711245 +57616,1464,Nudity (Topless - Notable),1252711209 +57616,1464,Nudity (Topless),1252711202 +57616,1464,Patricia Arquette,1252711213 +57616,1464,strange,1252711242 +57616,1464,Surreal,1252711239 +57616,4069,Matthew McConaughey,1252687409 +57616,4105,Bruce Campbell,1252687285 +57616,4105,dark humor,1252687290 +57616,5313,Dwayne Johnson,1252703091 +57616,31424,Tara Reid,1262890838 +57616,49274,Hugh Jackman,1252702407 +57616,53993,Biblical,1252702726 +57616,53993,Steve Carell,1252702714 +57616,58103,multiple storylines,1252702795 +57616,65802,Kevin James,1252703125 +57616,66934,joss whedon,1252358071 +57616,66934,parody,1252358081 +57616,68237,Sam Rockwell,1252686908 +57616,68237,Sci-fi,1252686912 +57616,68237,space,1252686916 +57616,68659,Seth Rogen,1252711877 +57616,69451,Bruce Campbell,1252711446 +57616,69451,horror,1252711453 +57616,69451,sci-fi,1252711455 +57629,121231,"horror, creepy",1437469006 +57633,1287,historical,1297609001 +57633,1287,long,1297608980 +57633,3245,Capitalism,1297607524 +57633,3245,communism,1297607490 +57633,3245,Fascism,1297607519 +57633,3245,Fidel,1297607507 +57633,3245,Imperialism,1297607530 +57633,3245,People,1297607511 +57633,3245,Revolution,1297607515 +57633,3245,Socialist Cuba,1297607504 +57633,3245,Soviet Union,1297607498 +57633,3245,The Empire,1297607544 +57633,3245,US,1297607549 +57633,7024,fascism,1297609160 +57663,260,exciting,1441669890 +57663,260,fantasy,1441669871 +57666,260,classic,1434909131 +57666,260,exciting,1434909141 +57666,260,very good,1434909158 +57703,508,courtroom,1332986456 +57703,508,Denzel Washington,1332986485 +57703,508,Tom Hanks,1332986483 +57703,508,too 90's,1332986537 +57703,628,courtroom,1328045565 +57703,628,Edward Norton,1328045556 +57703,628,Richard Gere,1328045558 +57703,628,twist ending,1328045571 +57703,2231,Edward Norton,1330048686 +57703,2231,John Malkovich,1330048689 +57703,2231,Matt Damon,1330048685 +57703,2231,poker,1330048691 +57703,2268,chick flick,1313809460 +57703,2762,horror,1311997459 +57703,2762,mindfuck,1311997470 +57703,2762,psychology,1311997486 +57703,2762,twist ending,1311997464 +57703,3421,John Belushi,1324430305 +57703,3552,Bill Murray,1324430347 +57703,3552,Chevy Chase,1324430345 +57703,4720,Horror,1332202257 +57703,4995,Russell Crowe,1324430059 +57703,5110,Syrup chugging,1324430464 +57703,7502,not a movie,1328400482 +57703,8641,Will Ferrell,1324430415 +57703,48780,great ending,1295135267 +57703,48780,twist ending,1295135263 +57703,54997,Christian Bale,1324429968 +57703,54997,Russell Crowe,1324429964 +57703,55247,stupidity,1362186332 +57703,55290,Casey Affleck,1324437743 +57703,55290,Morgan Freeman,1324437745 +57703,55765,based on a true story,1296696916 +57703,55765,Russell Crowe,1296696908 +57703,60756,Highly quotable,1324430436 +57703,71670,corny,1324430214 +57703,71670,Sandra Bullock,1324430217 +57703,71670,stupid as hell,1324430212 +57703,72998,beautiful,1324430507 +57703,74458,plot twist,1295135244 +57703,74458,twist ending,1295135211 +57703,79132,thought-provoking,1295135298 +57703,85342,foreign language,1326836424 +57703,89492,Philip Seymour Hoffman,1325906131 +57703,89492,sports,1325906128 +57745,260,computer,1438700243 +57745,260,intelligence,1438700260 +57760,345,Drag,1351520311 +57773,1466,Al Pacino,1245451314 +57773,1466,Mafia,1245451281 +57773,1466,undercover cop,1245451287 +57773,2194,historically inaccurate,1245451384 +57773,2194,mafia,1245451377 +57773,2329,powerful ending,1245451429 +57773,2329,thought-provoking,1245451431 +57773,2541,manipulation,1292285703 +57773,2541,Ryan Philippe,1292285713 +57773,2959,psychology,1245451483 +57773,52952,skinhead,1250387932 +57773,53024,cult,1292355327 +57797,1221,Oscar (Best Picture),1388048922 +57839,5618,anime,1451922890 +57839,5971,anime,1451922405 +57841,296,Bruce Willis,1277219944 +57841,296,pop culture references,1277219971 +57841,296,quirky,1277219960 +57841,5810,eminem,1276372429 +57841,53996,enormously long battle scene,1274392276 +57841,53996,Shia LaBeouf,1274392309 +57841,53996,silly,1274392273 +57841,58559,dark,1274038009 +57841,58559,heath ledger,1274038014 +57841,59315,Robert Downey Jr.,1274038032 +57841,59315,superhero,1274038076 +57841,68157,gore,1274392230 +57841,68157,Quentin Tarantino,1276372205 +57841,76251,cursing,1276271909 +57854,61240,atmospheric,1448656444 +57854,61240,swedish,1448656441 +57854,71379,demon possession,1451847634 +57854,71379,Handycam,1451847627 +57854,83134,absurd,1453579672 +57854,83134,funny,1453579664 +57854,83134,parody,1453579665 +57854,85788,clever twists,1451847662 +57854,85788,ghosts,1451847665 +57854,85788,scary,1451847671 +57854,85788,tense,1451847668 +57854,92422,atmospheric,1451847708 +57854,92422,ghosts,1451847715 +57854,92422,haunted house,1451847713 +57854,103688,haunted house,1451847681 +57854,103688,Horror,1451847684 +57854,118702,survival,1451847916 +57854,122884,father-daughter relationship,1451847923 +57875,48516,action,1437814263 +57875,48516,good Scorsese stuff,1437814160 +57875,48516,Great movie,1437814138 +57875,48516,Jack Nicholson,1437814234 +57875,48516,Leonardo DiCaprio,1437814175 +57875,48516,Mafia,1437814273 +57875,48516,Mark Wahlberg,1437814195 +57875,48516,Matt Damon,1437814186 +57875,110553,Andrew Garfield,1437814358 +57875,110553,costumed vigilante,1437814424 +57875,110553,Emma Stone,1437814362 +57875,110553,Romance,1437814414 +57875,110553,Sacrifice,1437814398 +57875,110553,superhero,1437814375 +57875,122882,action,1437814490 +57875,122882,Amazing Car Design,1437814555 +57875,122882,car chase,1437814565 +57875,122882,charlize theron,1437814483 +57875,122882,Great Movie,1437814603 +57875,122882,great soundtrack,1437814506 +57875,122882,post apocalyptic,1437814530 +57875,122882,special effects,1437814514 +57875,122882,Tom Hardy,1437814479 +57875,122882,violence,1437814496 +57966,6711,Bill Murray,1339906955 +57973,5465,dark,1446090596 +57973,5465,great soundtrack,1446090591 +57973,79702,awesome soundtrack,1446090471 +57973,79702,quirky,1446090463 +57973,79702,stylized,1446090456 +57973,81591,atmospheric,1451716553 +57973,81591,dark,1451716556 +57973,81591,psychological,1451716550 +57973,81591,surreal,1451716566 +57973,94959,Bill Murray,1446090187 +57973,94959,bittersweet,1446090208 +57973,94959,cinematography,1446090196 +57973,94959,coming of age,1446090191 +57973,94959,dreamlike,1446090194 +57973,94959,Edward Norton,1446090183 +57973,94959,quirky,1446090177 +57973,94959,stylized,1446090185 +57973,94959,surreal,1446090198 +57973,94959,Wes Anderson,1446090174 +58014,54736,FBI,1219684580 +58014,54736,middle east,1219684558 +58019,74789,based on a book,1436580974 +58019,74789,fantasy,1436580969 +58019,74789,Johnny Depp,1436580964 +58019,74789,Mia Wasikowska,1436580977 +58019,85438,depressing,1436546948 +58019,85438,historical,1436546948 +58019,85438,mia wasikowska,1436546948 +58019,114277,lovely,1436547009 +58019,114277,musical,1436547017 +58019,114277,scotland,1436547043 +58021,5060,the show is better,1158180658 +58050,4720,claustrophobic,1286789892 +58050,4720,gothic,1286789879 +58050,4720,Nicole Kidman,1286789902 +58085,117881,alzheimer's,1435699588 +58085,117881,drama,1435699588 +58085,117881,family,1435699588 +58151,524,inspirational,1451785938 +58151,3753,historical,1451785916 +58151,3753,history,1451785920 +58151,3916,Character development,1451786022 +58151,3916,Character study,1451786004 +58151,3916,good story,1451785976 +58151,3916,inspirational,1451785969 +58151,3916,inspiring,1451785972 +58151,4995,based on a true story,1451786692 +58151,4995,Drama,1451786695 +58151,4995,inspirational,1451786681 +58151,4995,intelligent,1451786686 +58151,4995,true story,1451786684 +58151,6565,inspirational,1451786161 +58151,7147,adventure,1451786054 +58151,7147,dreamlike,1451786048 +58151,7147,imagination,1451786052 +58151,7147,surreal,1451786046 +58151,7147,thought-provoking,1451786057 +58151,8970,bittersweet,1451786131 +58151,8970,Heartwarming,1451786127 +58151,33660,Biography,1451786177 +58151,33660,inspirational,1451786173 +58151,80839,overcoming odds,1451786203 +58151,106918,inspirational,1451786075 +58151,106918,positive thinking,1451786086 +58151,106918,travel,1451786081 +58151,107141,true story,1451786149 +58151,117176,emotional,1451786241 +58151,117176,True story,1451786243 +58176,260,darth vader,1432023855 +58176,260,fantasy,1432023855 +58176,260,jedi,1432023855 +58176,5349,Action,1432023732 +58176,5349,superhero,1432023727 +58176,58559,Atmospheric,1432023771 +58176,58559,Heath Ledger,1432023760 +58176,58559,Joker,1432023792 +58176,58559,violence,1432023768 +58199,4226,Reverse,1141780794 +58199,4226,Twist,1141780794 +58211,318,drama,1433867307 +58211,318,prison escape,1433867307 +58211,318,struggle,1433867307 +58214,2478,comedy,1189135547 +58214,4367,action,1189135566 +58251,215,romance,1443897071 +58251,60069,Animation,1443897032 +58251,72998,sci-fi,1443897091 +58252,163,action,1146094252 +58252,3160,existential,1146094271 +58260,260,good vs evil,1443906065 +58287,113862,great soundtrack,1438740713 +58287,113862,stylized,1438740734 +58287,113862,unexplained,1438740729 +58298,59018,immigrants,1212182194 +58315,1203,very good,1380385255 +58329,260,captivating,1439767771 +58329,260,groundbreaking science-fiction,1439767852 +58332,260,classic,1440874267 +58332,260,old,1440874275 +58378,3328,witty,1297343652 +58386,260,futuristic,1439159954 +58386,260,sci-fi,1439159938 +58386,1246,bittersweet,1439160212 +58386,1246,High School,1439160197 +58386,1246,philosophy,1439160188 +58386,1246,poetry,1439160205 +58386,1246,school,1439160200 +58386,1246,suicide,1439160191 +58386,1246,teen,1439160207 +58386,96821,bittersweet,1439160122 +58386,96821,coming of age,1439160130 +58386,96821,depression,1439160133 +58386,96821,high school,1439160127 +58386,111387,high school,1439160049 +58399,53123,Music,1288666705 +58410,43932,this is just shit..haha,1166033650 +58429,260,Science Fiction,1442097141 +58429,260,space adventure,1442097148 +58435,2947,007,1163798067 +58435,2947,james bond,1163798063 +58435,5378,sci-fi,1163798062 +58439,3029,Billy Dee Williams,1300208387 +58439,3029,Rutger Hauer,1300208361 +58439,3029,terrorism,1300208368 +58439,4437,giallo,1300207929 +58439,4574,martial arts,1300209074 +58439,4574,Revenge,1300209057 +58439,4574,Rutger Hauer,1300209050 +58439,4636,action,1300209441 +58439,4636,classic,1300209450 +58439,4636,Dolph Lundgren,1300209414 +58439,4636,Louis Gossett Jr.,1300209423 +58439,4752,Gore,1300208810 +58439,4752,William Lustig,1300208806 +58439,7307,Rutger Hauer,1300208582 +58439,57873,action,1300209355 +58439,57873,Dolph Lundgren,1300209343 +58439,57873,sci-fi,1300209362 +58445,253,vampires,1416194975 +58445,508,AIDs,1416194015 +58445,508,death,1416194030 +58445,508,dramatic,1416194026 +58445,508,homophobia,1416194008 +58445,508,injustice,1416193915 +58445,2607,coming of age,1416195137 +58445,2607,queer,1416195144 +58445,7023,gay relationship,1416194796 +58445,7023,marriage,1416194777 +58445,7023,sham marriage,1416194849 +58445,7023,wedding reception,1416194809 +58445,33171,homosexuality,1416195032 +58445,40870,coming of age,1416194420 +58445,40870,ECCENTRIC FAMILIES,1416194417 +58445,40870,homosexuality,1416194425 +58445,40870,queer,1416194422 +58445,42004,complex characters,1416194644 +58445,42004,cultural conflict,1416194643 +58445,42004,drugs,1416194646 +58445,42004,queer,1416194654 +58445,42004,roadtrip,1416194648 +58445,42004,transgender,1416194637 +58445,42004,transsexuals,1416194640 +58445,46578,dark comedy,1416194566 +58445,46578,dysfunctional family,1416194580 +58445,46578,funny,1416194582 +58445,46578,gay,1416194604 +58445,46578,Gay Character,1416194599 +58445,46578,satire,1416194588 +58445,46578,social commentary,1416194575 +58445,63876,civil rights,1416193785 +58445,63876,gay history,1416193733 +58445,63876,gay rights,1416193792 +58445,63876,homophobia,1416193780 +58445,72720,based on a book,1416194287 +58445,72720,suicide,1416194280 +58445,102819,boy toy,1416193619 +58445,102819,manipulation,1416193608 +58445,102819,pianist,1416193597 +58445,102819,plastic surgery,1416193584 +58445,102819,showbusiness,1416193648 +58445,106100,death,1416194189 +58445,106100,FDA,1416194148 +58445,106100,transgender,1416194181 +58445,114074,adultery,1417682886 +58445,114074,depression,1417682818 +58445,114074,scuba diving,1417682866 +58445,114074,siblings,1417682897 +58445,114074,suicide,1417682784 +58445,114074,twins,1417682762 +58445,117061,couple,1416193334 +58445,117061,high school,1416193251 +58445,117061,kissing,1416193372 +58445,117061,relationship,1416193285 +58445,117061,teacher,1416193268 +58451,60948,California,1314435866 +58451,60948,France,1314435866 +58459,780,unlikely but fun,1431632089 +58459,31374,brenda de banzie outstanding,1431632434 +58462,3668,Oscar (Best Cinematography),1175369165 +58462,27584,stupid,1211245695 +58467,260,galactic war,1442777423 +58467,260,good versus evil,1442777438 +58467,260,laser pistol,1442777495 +58539,260,classic sci-fi,1439487059 +58539,260,space adventure,1439487070 +58573,63194,amazing,1449869515 +58581,50,complicated,1226876073 +58581,50,conspiracy,1226876070 +58581,50,Kevin Spacey,1226876060 +58581,50,organized crime,1226876063 +58581,50,Oscar (Best Supporting Actor),1226876066 +58581,70,Quentin Tarantino,1226874951 +58581,70,vampires,1226874953 +58581,150,space,1226875028 +58581,150,Tom Hanks,1226875024 +58581,296,dark comedy,1226874984 +58581,296,organized crime,1226874976 +58581,318,based on a book,1226875007 +58581,318,prison,1226875005 +58581,356,psychology,1226874981 +58581,356,Tom Hanks,1226874987 +58581,480,Steven Spielberg,1226874999 +58581,1625,psychological,1226870299 +58581,1721,true story,1226875602 +58597,28,19th century,1449385034 +58597,28,adapted from:book,1449385020 +58597,28,Amanda Root,1449385005 +58597,28,Ciarán Hinds,1449385010 +58597,28,Jane Austen,1449384993 +58597,28,setting:England,1449385027 +58597,282,communication,1449392774 +58597,282,drama,1449392756 +58597,282,Jodie Foster,1449392721 +58597,282,language,1449392770 +58597,282,Liam Neeson,1449392730 +58597,282,Natasha Richardson,1449392767 +58597,282,speech therapy,1449392736 +58597,282,twins,1449392761 +58597,728,based on a book,1449387196 +58597,728,comedy,1449387217 +58597,728,Ian McKellen,1449387214 +58597,728,Joanna Lumley,1449387258 +58597,728,Kate Beckinsale,1449387207 +58597,728,parody,1449387242 +58597,728,setting:rural England,1449387224 +58597,728,Stephen Fry,1449387210 +58597,943,bittersweet,1449387062 +58597,943,black and white,1449387064 +58597,943,Gene Tierney,1449387078 +58597,943,Rex Harrison,1449387081 +58597,943,romance,1449387066 +58597,1031,Angela Lansbury,1449395519 +58597,1031,animation & live action interact,1449395543 +58597,1031,Bechdel Test:Pass (barely),1449395536 +58597,1031,British,1449395502 +58597,1031,David Tomlinson,1449395571 +58597,1031,Disney,1449395504 +58597,1031,family,1449395562 +58597,1031,live action/animation,1449395546 +58597,1031,London,1449395523 +58597,1031,magic,1449395499 +58597,1031,musical,1449395509 +58597,1031,Roddy McDowall,1449395576 +58597,1031,setting:England,1449395528 +58597,1031,setting:London (UK),1449395531 +58597,1031,setting:WWII,1449395538 +58597,1073,based on a book,1449393659 +58597,1073,better than the remake,1449393701 +58597,1073,candy,1449393657 +58597,1073,children's movie,1449393751 +58597,1073,chocolate,1449393655 +58597,1073,classic,1449393649 +58597,1073,family,1449393753 +58597,1073,family movie,1449393755 +58597,1073,fantasy,1449393669 +58597,1073,Gene Wilder,1449393646 +58597,1073,musical,1449393678 +58597,1073,whimsical,1449393671 +58597,1307,Billy Crystal,1449384662 +58597,1307,Bruno Kirby,1449384682 +58597,1307,Carrie Fisher,1449384680 +58597,1307,famous scene,1449384698 +58597,1307,Meg Ryan,1449384665 +58597,1307,New York,1449384687 +58597,1307,Nora Ephron,1449384675 +58597,1307,romantic comedy,1449384671 +58597,1721,overrated,1449384712 +58597,2171,Boston,1449943662 +58597,2171,great soundtrack,1449943637 +58597,2171,Hope Davis,1449943652 +58597,2171,Philip Seymour Hoffman,1449943640 +58597,2171,romantic comedy,1449943677 +58597,2621,China,1449393838 +58597,2621,Chinese,1449393934 +58597,2621,communism,1449393919 +58597,2621,corruption,1449393985 +58597,2621,Cultural Revolution,1449393836 +58597,2621,Down to the Countryside Movement,1449393917 +58597,2621,drama,1449393921 +58597,2621,Mandarin,1449393840 +58597,2621,patriotism,1449393941 +58597,2621,rural,1449393930 +58597,3244,based on play,1449384635 +58597,3244,Marsha Mason,1449384608 +58597,3244,Neil Simon,1449384630 +58597,3244,New York,1449384647 +58597,3244,Richard Dreyfuss,1449384611 +58597,3270,competition,1449386862 +58597,3270,guilty pleasure,1449386799 +58597,3270,ice skating,1449386859 +58597,3270,romance,1449386865 +58597,3296,famous song,1449387150 +58597,3296,Lulu,1449387137 +58597,3296,school,1449387120 +58597,3296,setting:England,1449387127 +58597,3296,Sidney Poitier,1449387135 +58597,3296,teacher,1449387113 +58597,3296,teacher changing lives,1449387109 +58597,3594,ballet,1449386884 +58597,3594,guilty pleasure,1449386816 +58597,3594,school,1449386892 +58597,4194,black and white,1449384570 +58597,4194,Emeric Pressburger,1449384560 +58597,4194,Michael Powell,1449384557 +58597,4194,Powell and Pressburger,1449384566 +58597,4194,Roger Livesy,1449384579 +58597,4194,Wendy Hiller,1449384577 +58597,4356,classic,1449394906 +58597,4356,cruise,1449394936 +58597,4356,famous scene,1449394930 +58597,4356,gold-digger,1449394901 +58597,4356,iconic scene,1449394927 +58597,4356,Jane Russell,1449394895 +58597,4356,Marilyn Monroe,1449394888 +58597,4356,musical,1449394908 +58597,4356,romantic comedy,1449394912 +58597,4795,Cary Grant,1449394544 +58597,4795,children,1449394562 +58597,4795,island,1449394559 +58597,4795,Leslie Caron,1449394546 +58597,4795,romantic comedy,1449394569 +58597,4795,stranded,1449394558 +58597,4795,World War II,1449394584 +58597,4798,Cary Grant,1449384425 +58597,4798,Ingrid Bergman,1449384419 +58597,4798,romantic comedy,1449384437 +58597,5060,Donald Sutherland,1449385341 +58597,5060,Elliott Gould,1449385337 +58597,5060,Robert Altman,1449385326 +58597,5060,sexism,1449385302 +58597,5060,Tom Skerritt,1449385347 +58597,5354,Goldie Hawn,1449384330 +58597,5354,Ingrid Bergman,1449384308 +58597,5354,romantic comedy,1449384373 +58597,5354,Walter Matthau,1449384327 +58597,5372,19th century,1449394229 +58597,5372,Bechdel Test:Pass,1449394214 +58597,5372,Doris Day,1449394207 +58597,5372,drag,1449394315 +58597,5372,gender roles,1449394371 +58597,5372,historical figure,1449394267 +58597,5372,Howard Keel,1449394257 +58597,5372,musical,1449394218 +58597,5372,romantic comedy,1449394368 +58597,5372,Western,1449394241 +58597,5372,Wild West,1449394246 +58597,5387,domestic violence,1449392828 +58597,5387,drama,1449392834 +58597,5387,guilty pleasure,1449392797 +58597,5387,jennifer lopez,1449392806 +58597,5387,revenge,1449392832 +58597,5387,spousal abuse,1449392831 +58597,5470,19th century,1449384530 +58597,5470,based on a play,1449384459 +58597,5470,British,1449384516 +58597,5470,comedy,1449384485 +58597,5470,Oscar Wilde,1449384470 +58597,6810,domestic violence,1449392570 +58597,6810,guilty pleasure,1449392558 +58597,6810,Julia Roberts,1449392574 +58597,6810,sociopath,1449392568 +58597,6810,suspense,1449392597 +58597,6810,thriller,1449392598 +58597,7167,Australia,1449393545 +58597,7167,culture clash,1449393564 +58597,7167,drama,1449393555 +58597,7167,Toni Collette,1449393577 +58597,25993,Agnes Moorehead,1449394125 +58597,25993,Douglas Sirk,1449394076 +58597,25993,Jane Wyman,1449394087 +58597,25993,melodrama,1449394080 +58597,25993,melodramatic,1449394082 +58597,25993,Rock Hudson,1449394085 +58597,25993,romance,1449394133 +58597,26084,Americana,1449385481 +58597,26084,Buddy Hackett,1449385462 +58597,26084,classic,1449385435 +58597,26084,comedy,1449385431 +58597,26084,con artist,1449385497 +58597,26084,Hermoine Gingold,1449385459 +58597,26084,Iowa,1449385508 +58597,26084,musical,1449385425 +58597,26084,Robert Preston,1449385444 +58597,26084,romance,1449385429 +58597,26084,Shirley Jones,1449385453 +58597,26084,small town,1449385494 +58597,47382,dance,1449386839 +58597,47382,guilty pleasure,1449386838 +58597,47382,romance,1449386842 +58597,77919,Deborah Kerr,1449393116 +58597,77919,drama,1449393150 +58597,77919,Edith Evans,1449393125 +58597,77919,governess,1449393137 +58597,77919,Hayley Mills,1449393120 +58597,77919,John Mills,1449393123 +58597,77919,setting:England,1449393131 +58597,77919,troubled child,1449393153 +58597,148288,acting,1449386511 +58597,148288,adapted from short story,1449386445 +58597,148288,American Playhouse,1449386425 +58597,148288,Christopher Walken,1449386412 +58597,148288,community theater,1449386490 +58597,148288,hidden gem,1449386464 +58597,148288,Kurt Vonnegut,1449386450 +58597,148288,romantic comedy,1449386501 +58597,148288,Susan Sarandon,1449386415 +58597,148288,theater,1449386509 +58597,148294,doctor,1449393400 +58597,148294,Glenda Jackson,1449393394 +58597,148294,hospital,1449393443 +58597,148294,mature romance,1449393425 +58597,148294,romantic comedy,1449393391 +58597,148294,Walter Matthau,1449393398 +58597,148382,Cinderella,1449470404 +58597,148382,disguise,1449470488 +58597,148382,fairy godmother,1449470463 +58597,148382,fairy tale,1449470387 +58597,148382,family,1449470527 +58597,148382,fashion,1449470395 +58597,148382,fashion designer,1449470452 +58597,148382,France,1449470391 +58597,148382,Jennifer Grey,1449470371 +58597,148382,magic,1449470490 +58597,148382,makeover,1449470476 +58597,148382,modern fairy tale,1449470385 +58597,148382,Paris,1449470390 +58597,148382,physical transformation,1449470496 +58597,148382,Rob Lowe,1449470367 +58597,148382,romance,1449470529 +58597,148382,romantic comedy,1449470374 +58597,148382,secret identity,1449470486 +58597,148382,shoes,1449470454 +58598,48,Disney,1398955378 +58598,48,Disney Renaissance,1398955390 +58598,48,Native Americans,1398955415 +58598,48,princess series,1398955516 +58598,48,romance,1398955525 +58598,48,soundtrack,1398955403 +58598,48,stereotypes,1398955487 +58598,364,Disney,1398954962 +58598,364,Disney Renaissance,1398954968 +58598,364,musical,1398954991 +58598,364,soundtrack,1398954978 +58598,588,Disney,1398954862 +58598,588,Disney Renaissance,1398954852 +58598,588,genie,1398954894 +58598,588,soundtrack,1398954907 +58598,593,Anthony Hopkins,1398953611 +58598,595,Disney,1398955036 +58598,595,Disney Renaissance,1398955048 +58598,595,France,1398955136 +58598,595,princess series,1398955061 +58598,595,romance,1398955156 +58598,595,soundtrack,1398955148 +58598,783,Disney,1398955602 +58598,783,Disney Renaissance,1398955555 +58598,783,France,1398955623 +58598,783,notre dame,1398955648 +58598,783,soundtrack,1398955674 +58598,783,Victor Hugo,1398955595 +58598,1566,Disney,1398954441 +58598,1566,Disney Renaissance,1398954627 +58598,1566,Michael Bolton,1398954432 +58598,1566,mythology,1398954655 +58598,1566,soundtrack,1398954669 +58598,1907,Chinese culture,1398955348 +58598,1907,Disney,1398955281 +58598,1907,Disney Renaissance,1398955274 +58598,1907,female director,1398955328 +58598,1907,soundtrack,1398955290 +58598,2081,Disney,1398954302 +58598,2081,Disney Renaissance,1398954754 +58598,2081,princess series,1398954139 +58598,2081,soundtrack,1398954178 +58598,2687,Disney,1398954345 +58598,2687,Disney Renaissance,1398954728 +58598,2687,Phil Collins,1398954338 +58598,2687,soundtrack,1398954355 +58598,5618,self recognition,1398952815 +58598,73713,french,1398953530 +58598,73713,humorous,1398953274 +58598,73713,life philosophy,1398953287 +58598,79132,alternate reality,1398953082 +58598,79132,dreamlike,1398953102 +58598,79132,imaginative,1398953036 +58598,79132,philosophy of life,1398953161 +58598,81020,artistic,1398953925 +58598,81020,french,1398953788 +58598,81020,life & death,1398953864 +58598,81020,life philosophy,1398953808 +58598,81020,montage,1398953948 +58598,81020,soundtrack,1398953848 +58598,81847,Disney,1398954224 +58598,81847,musical,1398954272 +58598,81847,princess series,1398954286 +58598,81847,soundtrack,1398954247 +58604,111781,action,1438348246 +58604,111781,adventure,1438348246 +58604,111781,thriller,1438348246 +58604,116797,Alan Turing,1443769515 +58604,116797,computer science,1443769562 +58604,116797,Computers,1443769523 +58604,116797,crossword puzzle,1443769371 +58604,116797,mathematics,1443769593 +58604,116797,spies,1443769549 +58610,67695,Anna Faris,1302417052 +58610,67695,dark comedy,1302417040 +58610,67695,mean-spirited,1302417057 +58610,67695,Racism,1302417045 +58610,67695,Seth Rogen,1302417031 +58615,2571,classic,1442185088 +58615,2571,sci-fi,1442185062 +58620,117895,trilogy part 2,1448910055 +58620,147024,Bhai ki movie,1448909888 +58625,1882,action,1422963800 +58625,1882,adventure,1422963800 +58625,1882,pg-13,1422963800 +58625,124867,action,1422963920 +58637,1361,Legal Documentary,1219171019 +58637,3949,My DVDs,1207251699 +58663,260,George Lucas,1440969692 +58663,260,sci fi,1440969675 +58663,2858,black comedy,1440970286 +58663,2858,coming of age,1440970289 +58663,2858,dark comedy,1440970272 +58663,2858,great acting,1440970293 +58663,2858,kevin spacey,1440970275 +58663,2858,midlife crisis,1440970284 +58663,2858,sexuality,1440970292 +58663,2858,social commentary,1440970280 +58663,2858,surrealism,1440970282 +58663,2858,thought-provoking,1440970274 +58663,112183,alter ego,1440970210 +58663,112183,Broadway,1440970214 +58663,112183,dark,1440970212 +58663,112183,Edward Norton,1440970190 +58663,112183,great performances,1440970176 +58663,112183,magical realism,1440970193 +58663,112183,Michael Keaton,1440970177 +58663,112183,movie business,1440970215 +58663,112183,pretentious,1440970219 +58663,112183,psychological,1440970203 +58663,112183,satire,1440970201 +58663,112183,single shot,1440970191 +58663,112183,theater,1440970206 +58687,36529,Nicholas Cage,1147446816 +58745,260,sci-fi,1441993550 +58745,260,space action,1441993545 +58746,1290,one of the most romantic kisses in films,1143505281 +58746,1290,romance,1143505394 +58746,1290,teens,1143505394 +58746,2248,Romance,1143505507 +58746,2248,teens,1143505507 +58756,260,+scifi,1434125891 +58756,260,drama,1434125895 +58767,19,dumb,1450996213 +58767,19,Jim Carrey,1450996206 +58767,215,bittersweet,1356147410 +58767,215,conversation,1356147412 +58767,215,ethan hawke,1356147414 +58767,215,Julie Delpy,1356147463 +58767,215,minimalist,1356147419 +58767,215,one day,1356147436 +58767,215,poignant,1356147433 +58767,215,romantic,1356147430 +58767,215,trains,1356147425 +58767,215,Vienna,1356147422 +58767,215,witty,1356147423 +58767,344,Dumb,1450996192 +58767,344,Jim Carrey,1450996188 +58767,541,based on a book,1332570166 +58767,541,classic,1332570222 +58767,541,cyberpunk,1332570178 +58767,541,dystopia,1332570171 +58767,541,Harrison Ford,1332570154 +58767,541,imdb top 250,1333949271 +58767,541,Philip K. Dick,1332570149 +58767,555,Brad Pitt,1355045377 +58767,555,Christian Slater,1355045395 +58767,555,Christopher Walken,1355045359 +58767,555,drugs,1355045450 +58767,555,intense,1355045370 +58767,555,Patricia Arquette,1355045431 +58767,555,romance,1355045363 +58767,555,showdown,1355045391 +58767,555,violence,1355045365 +58767,784,not funny,1450995865 +58767,910,Jack Lemmon,1433217490 +58767,910,Marilyn Monroe,1433217487 +58767,910,screwball comedy,1433217483 +58767,1095,Al Pacino,1382503399 +58767,1095,Alec Baldwin,1382503395 +58767,1095,Business,1382503425 +58767,1095,depressing without being uplifting,1382503403 +58767,1095,Jack Lemmon,1382503393 +58767,1095,Kevin Spacey,1382503420 +58767,1095,Real Estate,1382503422 +58767,1230,Woody Allen,1382503022 +58767,1249,music,1407829313 +58767,1274,cyberpunk,1411267895 +58767,1274,dystopia,1411267897 +58767,1274,gore,1411267901 +58767,1292,funny,1356073776 +58767,1292,Peter Sellers,1356073762 +58767,1292,political satire,1356073765 +58767,1292,protagonist is an idiot,1356073768 +58767,1292,television,1356073804 +58767,1292,watch the credits,1356073787 +58767,1292,weird ending,1356073791 +58767,1584,existentialism,1382503084 +58767,1584,idealism,1382503092 +58767,1584,inspirational,1382503090 +58767,1584,Jodie Foster,1382503063 +58767,1584,Matthew McConaughey,1382503065 +58767,1584,sci-fi,1382503069 +58767,1584,science,1382503079 +58767,1584,space travel,1382503068 +58767,1610,based on a book,1407907458 +58767,1610,Sean Connery,1407907449 +58767,1610,submarine,1407907452 +58767,1625,complicated,1382503916 +58767,1625,Michael Douglas,1382503904 +58767,1625,mindfuck,1382503913 +58767,1625,paranoia,1382503925 +58767,1625,psychological,1382503906 +58767,1625,surprise ending,1382503909 +58767,1953,70's new york,1419375703 +58767,1953,gritty,1419375691 +58767,1953,surveillance,1419375728 +58767,2232,weird,1408348206 +58767,2395,Bill Murray,1288346009 +58767,2395,bittersweet,1288346009 +58767,2395,Jason Schwartzman,1291166575 +58767,2395,literate,1288346009 +58767,2395,Olivia Williams,1288346028 +58767,2395,Wes Anderson,1288346009 +58767,2542,british,1433224042 +58767,2542,dark comedy,1433224056 +58767,2542,organized crime,1433224058 +58767,2580,black comedy,1333442408 +58767,2580,comedy,1333442415 +58767,2580,Desmond Askew,1333442472 +58767,2580,drugs,1333442430 +58767,2580,Katie Holmes,1333442434 +58767,2580,multiple storylines,1333442417 +58767,2580,no character development,1333442494 +58767,2580,Timothy Olyphant,1333442420 +58767,2600,alternate reality,1382503261 +58767,2600,David Cronenberg,1382503276 +58767,2600,Good Romantic Comedies,1382503273 +58767,2600,Jennifer Jason Leigh,1382503307 +58767,2600,Jude Law,1382503284 +58767,2600,mindfuck,1382503263 +58767,2600,Sci-Fi,1382503270 +58767,2600,surreal,1382503258 +58767,2600,virtual reality,1382503260 +58767,2600,willem dafoe,1382503288 +58767,2672,alternate reality,1382504160 +58767,2672,simulated reality,1382504156 +58767,2672,virtual reality,1382504159 +58767,2712,atmospheric,1382503343 +58767,2712,notable soundtrack,1382503341 +58767,2712,sexuality,1382503357 +58767,2712,Stanley Kubrick,1382503336 +58767,2712,Tom Cruise,1382503337 +58767,2858,black comedy,1281354999 +58767,2858,Kevin Spacey,1281355011 +58767,2858,satirical,1281354999 +58767,2858,thought-provoking,1281354999 +58767,3000,anime,1287085408 +58767,3160,multiple storylines,1281380340 +58767,3481,Jack Black,1347737810 +58767,3481,John Cusack,1347737811 +58767,3481,music,1347737815 +58767,3481,record store,1347737817 +58767,3569,dogme95,1419987869 +58767,3569,Lars von Trier,1419987807 +58767,3569,weird,1419987817 +58767,3633,George Lazenby,1412832668 +58767,4292,small town,1348285493 +58767,4292,Union,1348285485 +58767,4979,Ben Stiller,1288346110 +58767,4979,Bill Murray,1288346083 +58767,4979,great soundtrack,1288346083 +58767,4979,Gwyneth Paltrow,1288346110 +58767,4979,narrated,1288346083 +58767,4979,Owen Wilson,1288346064 +58767,4979,Wes Anderson,1288346083 +58767,4979,witty,1288346083 +58767,5046,Gary Sinise,1422594658 +58767,5046,Philip K. Dick,1422594654 +58767,5617,dark comedy,1337741837 +58767,5617,James Spader,1337741875 +58767,5617,Maggie Gyllenhaal,1337741892 +58767,5617,relationships,1337741923 +58767,5617,sexuality,1337741953 +58767,5617,Steven Shainberg,1337741904 +58767,5617,weird,1337741826 +58767,5669,documentary,1382504783 +58767,5669,Michael Moore,1382504797 +58767,5903,Christian Bale,1382503195 +58767,5903,dystopia,1382503192 +58767,5903,predictable,1382503208 +58767,5903,sci-fi,1382503212 +58767,5903,totalitarianism,1382503193 +58767,5903,violence,1382503230 +58767,5971,cartoon,1315970771 +58767,5971,great soundtrack,1315970761 +58767,5971,Hayao Miyazaki,1315970761 +58767,6620,Acting,1340594233 +58767,6620,Artistic,1340594225 +58767,6620,cancer,1340594245 +58767,6620,comic books,1340594243 +58767,6620,nerdy,1340594227 +58767,6620,Paul Giamatti,1340594235 +58767,6620,Shari Springer Berman,1340594238 +58767,6620,weird,1340594255 +58767,6645,consumerism,1382504244 +58767,6645,dystopia,1382504233 +58767,6645,eugenics,1382504260 +58767,6645,George Lucas,1382504238 +58767,6645,great cinematography,1382504236 +58767,6645,medicine,1382504266 +58767,6645,sci-fi,1382504251 +58767,6645,surveillance,1382504253 +58767,6708,con artists,1348028809 +58767,6708,crime,1348028768 +58767,6708,Exceptional Acting,1348028770 +58767,6708,father daughter relationship,1348028772 +58767,6708,Nicolas Cage,1348028762 +58767,6708,obsessive compulsive disorder,1348028764 +58767,6708,sad ending,1348028801 +58767,6708,twist ending,1348028757 +58767,6953,nonlinear,1281332817 +58767,6953,psychological,1281332861 +58767,6953,remake,1281332870 +58767,7199,Bob Odenkirk,1450995310 +58767,7199,David Cross,1450995312 +58767,7199,ghosts,1450995258 +58767,7199,relationships,1450995323 +58767,7199,secrets,1450995326 +58767,7573,Sean Connery,1412832636 +58767,7573,terrible bond,1412832633 +58767,7827,corporate espionage,1412470898 +58767,7827,cyberpunk,1412470883 +58767,7827,Lucy Liu,1412470886 +58767,7827,predictable ending,1412470889 +58767,7827,twist ending,1412470887 +58767,8638,emotional,1356157015 +58767,8638,Ethan Hawke,1356157013 +58767,8638,Julie Delpy,1356157081 +58767,8638,minimalist,1356157028 +58767,8638,Paris,1356157029 +58767,8638,philosophical,1356157032 +58767,8638,Richard Linklater,1356157073 +58767,8638,romantic,1356157041 +58767,8638,sequel,1356157038 +58767,8638,writers,1356157036 +58767,27788,Adrien Brody,1382503948 +58767,27788,confusing,1382503959 +58767,27788,Keira Knightley,1382503950 +58767,27788,makes you think,1382503952 +58767,27788,mental hospital,1382503964 +58767,27788,mental illness,1382503985 +58767,27788,twist ending,1382504021 +58767,27800,Daft Punk,1382503489 +58767,27800,music,1382503487 +58767,27821,awful accent,1407553787 +58767,27831,British,1298941924 +58767,27831,Daniel Craig,1298941924 +58767,27831,ending,1298941921 +58767,27831,overrated,1298941926 +58767,30810,Bill Murray,1291166550 +58767,30810,Wes Anderson,1291166550 +58767,33903,complex relationships,1337741746 +58767,33903,Daniel Brühl,1337741672 +58767,33903,Hans Weingartner,1337741733 +58767,33903,heavy-handed,1337741700 +58767,33903,idealism,1337741718 +58767,33903,idealistic,1337741709 +58767,33903,interesting concept,1337741756 +58767,33903,thought-provoking,1337741742 +58767,34437,Atmospheric,1337747169 +58767,34437,Bill Murray,1337747171 +58767,34437,bittersweet,1337747195 +58767,34437,great soundtrack,1337747176 +58767,34437,meditative,1337747179 +58767,34552,Bill Nighy,1411277186 +58767,34552,dialogue,1411277217 +58767,34552,heavy-handed,1411277184 +58767,34552,Kelly Macdonald,1411277192 +58767,34552,moving,1411277214 +58767,35957,Cillian Murphy,1407826988 +58767,35957,Rachel McAdams,1407826989 +58767,35957,weak ending,1407826991 +58767,36517,conspiracy,1407949371 +58767,36517,great cinematography,1407949360 +58767,36517,preachy,1407949366 +58767,36517,social commentary,1407949362 +58767,38886,1980s,1337741998 +58767,38886,depressing,1337742001 +58767,38886,divorce,1337742003 +58767,38886,drama,1337742025 +58767,38886,dysfunctional family,1337742007 +58767,38886,high squirm factor,1337742005 +58767,38886,Jeff Daniels,1337742093 +58767,38886,New York City,1337742010 +58767,38886,smart comedy,1337741992 +58767,38886,weird,1337742015 +58767,38886,writers,1337742018 +58767,41285,clever,1348295249 +58767,41285,Emily Mortimer,1348295254 +58767,41285,interesting,1348295258 +58767,41285,London,1348295256 +58767,41285,murder,1348295260 +58767,41285,non-hollywood ending,1348295240 +58767,41285,romance,1348295268 +58767,41285,Scarlett Johansson,1348295242 +58767,41285,slow,1348295262 +58767,41285,tennis,1348295244 +58767,41285,Woody Allen,1348295243 +58767,43652,Zach Galifianakis,1274692505 +58767,44694,female power,1356152288 +58767,44694,generations,1356152352 +58767,44694,ghosts,1356152351 +58767,44694,Nudity (Topless - Brief),1356147491 +58767,44694,Pedro Almodóvar,1356147496 +58767,44694,Pedro Almodovar,1356147495 +58767,44694,sexual abuse,1356152085 +58767,44694,Spain,1356147502 +58767,44694,superstition,1356152364 +58767,44694,visually appealing,1356152367 +58767,48744,controversial,1422595001 +58767,48744,depression,1422594993 +58767,48744,queer,1422595023 +58767,50594,collage,1382503140 +58767,50594,Czech,1382503113 +58767,50594,strange,1382503143 +58767,50594,surreal,1382503112 +58767,50641,japanese,1382502981 +58767,50641,strangely compelling,1382502974 +58767,50641,weird,1382502977 +58767,51255,Simon Pegg,1407481154 +58767,51255,slow start,1407481164 +58767,51255,surreal,1407481176 +58767,51255,twists & turns,1407481178 +58767,51412,bad ending,1422594705 +58767,51412,Philip K. Dick,1422594698 +58767,52885,animation,1390205716 +58767,52885,dreamlike,1390205676 +58767,52885,dreams,1390205679 +58767,52885,music,1390205692 +58767,52885,surreal,1390205672 +58767,52885,Tokyo,1390205708 +58767,53123,Music,1422599727 +58767,53123,musicians,1422599712 +58767,55269,Adrien Brody,1291166295 +58767,55269,cinematography,1291166295 +58767,55269,Wes Anderson,1291166295 +58767,55286,Benicio Del Toro,1432705214 +58767,55765,Denzel Washington,1368248470 +58767,55820,coen brothers,1332570303 +58767,55820,twist ending,1332570312 +58767,58554,Estonia,1382503557 +58767,59369,fight scenes,1408261213 +58767,59369,Liam Neeson,1408261215 +58767,59369,realistic,1408261219 +58767,62374,Golshifteh Farahani,1407539979 +58767,62374,Mark Strong,1407539973 +58767,62374,Russell Crowe,1407539978 +58767,62374,slow paced,1407539981 +58767,63082,based on a book,1332570344 +58767,63082,cinematography,1332570342 +58767,63082,feel-good,1332570348 +58767,63082,India,1332570340 +58767,63082,music,1332570369 +58767,63082,nonlinear,1332570366 +58767,65418,bad luck,1382504388 +58767,65418,no soundtrack,1382504409 +58767,65418,non-hollywood,1382504396 +58767,65418,realism,1382504399 +58767,65642,complicated,1339525360 +58767,65642,downbeat,1339525349 +58767,65642,grim,1339525350 +58767,65642,humor,1339525353 +58767,65642,Nacho Vigalondo,1339525356 +58767,65642,Nudity (Topless),1339525363 +58767,65642,paradox,1339525329 +58767,66371,beautiful scenery,1295866702 +58767,66371,calm,1295866692 +58767,66371,emotional,1295866666 +58767,66371,friendship,1295866671 +58767,66371,japan,1295866673 +58767,66371,life & death,1295866684 +58767,69757,artistic,1287544370 +58767,69757,intelligent,1287544370 +58767,69757,quirky,1287544370 +58767,69757,Zooey Deschanel,1287544370 +58767,71033,Spanish,1368247955 +58767,71057,disappointing,1340258213 +58767,71057,dystopia,1340258196 +58767,71057,Elijah Wood,1340258188 +58767,71057,predictable,1280910417 +58767,71057,visually appealing,1340258198 +58767,71211,offbeat,1434755627 +58767,73211,bad science,1382503817 +58767,73211,innovative,1382503783 +58767,73211,mystery,1382503811 +58767,73211,zombies,1382503787 +58767,74458,action,1274692418 +58767,74458,ending twist,1274692415 +58767,74458,Predictable,1274692403 +58767,74458,psychological,1274692413 +58767,74458,story,1274692429 +58767,74458,too long,1274692404 +58767,74851,characters,1407376843 +58767,74851,John Travolta,1407376849 +58767,74851,too much violence,1407376855 +58767,77800,Benedict Cumberbatch,1412478502 +58767,77800,Chris Morris,1412478507 +58767,77800,dark comedy,1412478491 +58767,77800,Documentary Style,1412478499 +58767,77800,funny,1412478494 +58767,77800,Satire,1412478490 +58767,79293,action,1407379127 +58767,79293,Angelina Jolie,1407379126 +58767,79293,spy,1407379134 +58767,81788,crime,1297155376 +58767,81788,Elizabeth Banks,1297155439 +58767,81788,good ending,1297155390 +58767,81788,Pittsburgh,1297155410 +58767,81788,sad,1297155399 +58767,81788,thriller,1297155390 +58767,83132,Anime,1340594351 +58767,83132,beautiful,1340594334 +58767,83132,bittersweet,1340594346 +58767,83132,Japan,1340594337 +58767,83132,Studio Ghibli,1340594355 +58767,86190,beautiful cinematography,1407472031 +58767,86190,Bechdel Test:Pass,1407472054 +58767,86190,Cate Blanchett,1407472023 +58767,86190,cinematography,1407472030 +58767,86190,ending,1407472046 +58767,86190,ending twist,1407472045 +58767,86190,great soundtrack,1407472029 +58767,86190,strong female lead,1407472026 +58767,86190,surrealism,1407472027 +58767,86642,Unpredictable,1368247492 +58767,88129,atmospheric,1407472119 +58767,88129,ryan gosling,1407472120 +58767,88672,Paul Rudd,1411267749 +58767,88672,Steve Coogan,1411267767 +58767,88672,watch the credits,1411267762 +58767,90376,cinematography,1431758954 +58767,90376,disjointed,1431758963 +58767,90376,disturbing,1431758894 +58767,90376,insanity,1431758961 +58767,90376,Lynne Ramsay,1431758913 +58767,90376,nihilism,1431758896 +58767,90376,psychological,1431758892 +58767,90376,soundtrack,1431758978 +58767,90376,tilda swinton,1431758898 +58767,90376,unfitting soundtrack,1431758982 +58767,90376,violence,1431758984 +58767,92420,Josh Trank,1337741372 +58767,92420,predictable ending,1337741397 +58767,92420,sci-fi,1337741340 +58767,92420,strange,1337741352 +58767,93512,Jason Segel,1340582220 +58767,93512,signs,1340582215 +58767,93512,unravelling emotional issues,1340582211 +58767,93721,documentary,1351368801 +58767,93721,Gourmet,1351368788 +58767,93721,Japan,1351368791 +58767,93721,minimalist,1351368792 +58767,93721,sushi,1351368795 +58767,93721,Tokyo,1351368798 +58767,94959,Bill Murray,1382503735 +58767,94959,Edward Norton,1382503734 +58767,94959,Wes Anderson,1382503732 +58767,95875,dystopia,1382504298 +58767,95875,espionage,1382504301 +58767,95875,memory,1382504304 +58767,95875,Philip K. Dick,1382504289 +58767,95875,Sci-fi,1382504295 +58767,95875,visually appealing,1382504296 +58767,96079,James Bond,1382504444 +58767,96079,Javier Bardem,1382504491 +58767,96610,Bruce Willis,1382503624 +58767,96610,Joseph Gordon-Levitt,1382503640 +58767,96610,organized crime,1382503622 +58767,96610,sci-fi,1382503653 +58767,96610,time travel,1382503651 +58767,96737,Dystopia,1422594863 +58767,96737,gore,1422594898 +58767,96737,Karl Urban,1422594874 +58767,96737,Olivia Thirlby,1422594886 +58767,96737,post-apocalyptic,1422594869 +58767,96737,Slow Motion,1422594895 +58767,96737,violence,1422594890 +58767,96821,based on a book,1407473072 +58767,96821,Emma Watson,1407473053 +58767,96821,overrated,1407473057 +58767,96821,plot twist,1407473065 +58767,96821,Suicide,1407473061 +58767,96829,hard to watch,1406348424 +58767,96829,Mads Mikkelsen,1406348429 +58767,96829,painful to watch,1406348422 +58767,96829,pedophilia,1406348433 +58767,96861,Famke Janssen,1408262567 +58767,96861,predictable,1408262525 +58767,96861,unnecessary sequel,1408262526 +58767,97744,Corruption,1382503854 +58767,97744,journalism,1382503856 +58767,97744,Mads Brügger,1382503858 +58767,97752,atmospheric,1386555985 +58767,97752,complicated,1386555996 +58767,97752,Doona Bae,1386556038 +58767,97752,multiple storylines,1386555999 +58767,97752,sci-fi,1386555988 +58767,97752,Tom Hanks,1386556005 +58767,98975,Body Horror,1412464141 +58767,98975,social commentary,1412464142 +58767,99112,conspiracy,1407487276 +58767,99112,framed,1407487271 +58767,99112,slow start,1407481098 +58767,99112,tedious,1407480960 +58767,99112,Tom Cruise,1407487259 +58767,99112,without romance,1407487264 +58767,102125,action,1368247350 +58767,102125,audience intelligence underestimated,1368247337 +58767,102125,bad science,1368247341 +58767,102125,cgi,1368247353 +58767,102125,childish,1368247326 +58767,102125,Gwyneth Paltrow,1368247384 +58767,102125,Robert Downey Jr.,1368247330 +58767,103980,A Streetcar Named Desire,1408947357 +58767,103980,acting,1408947352 +58767,103980,Cate Blanchett,1408947324 +58767,103980,depressing,1408947320 +58767,103980,pointless,1408947340 +58767,103980,Woody Allen,1408947353 +58767,103980,writing,1408947355 +58767,104374,bad plot,1419317694 +58767,104374,Bill Nighy,1419317665 +58767,104374,cliche,1419317684 +58767,104374,time travel,1419317659 +58767,104841,bad science,1388653693 +58767,104841,cinematography,1388653695 +58767,104841,physics,1388653706 +58767,104841,space,1388653702 +58767,104841,zero gravity,1388653720 +58767,105355,Bechdel Test:Pass,1408431824 +58767,105355,bittersweet,1408431771 +58767,105355,lesbian,1408431812 +58767,105355,loneliness,1408431779 +58767,105355,slow,1408431786 +58767,105355,too long,1408431775 +58767,105801,Disneyworld,1420779919 +58767,105801,hidden cameras,1420779912 +58767,105801,low budget,1420779914 +58767,106438,Judi Dench,1411267953 +58767,106438,Steve Coogan,1411267962 +58767,106920,artificial intelligence,1390205609 +58767,106920,joaquin phoenix,1390205604 +58767,106920,loneliness,1390205626 +58767,106920,Scarlett Johansson,1390205631 +58767,106920,thought-provoking,1390205620 +58767,106920,transhumanism,1390205615 +58767,107406,chris evans,1413082882 +58767,107406,dystopia,1413082881 +58767,107406,illogical,1413082879 +58767,107406,Korean,1413082921 +58767,107406,plot holes,1413082874 +58767,107406,poor plot,1413082876 +58767,107406,post-apocalyptic,1413082885 +58767,107406,social commentary,1413082889 +58767,107406,story,1413082911 +58767,107406,stupid plot,1413082877 +58767,109187,meaning of life,1422595058 +58767,109187,surreal,1422595052 +58767,109187,Terry Gilliam,1422595100 +58767,109487,Christopher Nolan,1450995396 +58767,109487,good science bad science,1450995423 +58767,109487,Hans Zimmer,1450995412 +58767,109487,Matthew McConaughey,1450995415 +58767,109487,physics,1450995404 +58767,109487,relativity,1450995400 +58767,109487,sci-fi,1450995393 +58767,109487,space,1450995391 +58767,109487,thought-provoking,1450995402 +58767,109487,time-travel,1450995398 +58767,109578,9/11 reference,1407544952 +58767,109578,bad physics,1407546191 +58767,109578,Liam Neeson,1407544954 +58767,109578,Scoot McNairy,1407544944 +58767,109578,thrilling,1407544956 +58767,112245,bullying,1414292690 +58767,112245,ending,1414292701 +58767,112245,high school,1414292691 +58767,112245,Matt Johnson,1414292727 +58767,112245,revenge,1414292691 +58767,112556,Ben Affleck,1413267529 +58767,112556,meticulous,1413267524 +58767,112556,Narration,1413267571 +58767,112556,Predictable Twist,1413267518 +58767,112556,unpredictable,1413267586 +58767,112852,childish,1408432463 +58767,112852,Marvel Cinematic Universe,1408432452 +58767,112852,sexism,1408432457 +58767,112852,space,1408432495 +58767,112852,talking animals,1408432530 +58767,112852,Vin Diesel,1408432454 +58767,114007,Amnesia,1420774632 +58767,114007,Colin Firth,1420774622 +58767,114007,ending,1420774637 +58767,114007,Nicole Kidman,1420774624 +58767,114074,Bill Hader,1412046273 +58767,114074,Kristen Wiig,1412046267 +58767,114074,relationships,1412046291 +58767,114074,suicide,1412046305 +58767,114847,artificial intelligence,1422594818 +58767,114847,consciousness,1422594829 +58767,114847,post-apocalyptic,1422594820 +58767,115713,artificial intelligence,1432698581 +58767,115713,nudity (full frontal),1432698585 +58767,120466,artificial intelligence,1432698540 +58767,120466,cyberpunk,1432698555 +58767,120466,robots,1432698515 +58767,122886,Adam Driver,1451533170 +58767,122886,Carrie Fisher,1451533244 +58767,122886,Daisy Ridley,1451533236 +58767,122886,Fan service,1451533166 +58767,122886,Harrison Ford,1451533249 +58767,122886,Lupita Nyong'o,1451533241 +58767,122886,Mark Hamill,1451533246 +58767,122886,space,1451533255 +58767,122886,Star Wars,1451533260 +58774,296,Black comedy,1353852156 +58774,296,dark comedy,1353852159 +58774,296,multiple storylines,1353852175 +58774,296,violence,1353852169 +58774,97304,Ben Affleck,1353852046 +58774,97304,suspenseful,1353852054 +58774,97304,true story,1353852065 +58779,593,thriller,1169925494 +58787,714,beautiful,1322078255 +58787,714,melancholy,1322078237 +58787,714,surreal,1322078245 +58787,1208,surreal,1322078786 +58787,3925,atmospheric,1322078321 +58795,260,Class sci-fi,1441593603 +58795,260,Mystical space epic,1441593617 +58812,37240,To watch,1440330906 +58823,260,sci-fi,1439850848 +58823,260,space opera,1439850841 +58823,59315,comic book,1439851580 +58832,44195,rent,1163971324 +58832,45447,rent,1163971384 +58835,19,crazy,1279641763 +58835,19,Jim Carrey,1279641765 +58835,19,over the top,1279641769 +58835,32,time travel,1281049614 +58835,32,violence,1281049620 +58835,50,Benicio Del Toro,1326314528 +58835,50,ensemble cast,1326314535 +58835,50,heist,1326314538 +58835,50,Kevin Spacey,1326314525 +58835,50,organized crime,1326314541 +58835,50,suspense,1326314543 +58835,50,twist ending,1326314546 +58835,110,historical,1277247619 +58835,110,Mel Gibson,1277247597 +58835,110,revenge,1277247605 +58835,116,archive footage,1279641806 +58835,116,Biography,1279641802 +58835,116,Glenn Close,1279641829 +58835,116,Kenneth Branagh,1279641824 +58835,116,World War II,1279641815 +58835,153,franchise,1279656353 +58835,153,Jim Carrey,1279656375 +58835,153,sequel,1279656368 +58835,165,always watch it when it's on tv,1240875643 +58835,165,bmf,1282764299 +58835,165,Bruce Willis,1240875803 +58835,165,heist,1282764308 +58835,165,hollywood at its best,1282764358 +58835,165,Jeremy Irons,1240875783 +58835,165,New York City,1251567711 +58835,165,Samuel L. Jackson,1282764316 +58835,165,terrorism,1282764322 +58835,165,thriller,1282764324 +58835,208,apocalypse,1272587778 +58835,208,post-apocalyptic,1272587784 +58835,208,steampunk,1272587788 +58835,231,Gross-out,1279642394 +58835,231,Jim Carrey,1279642381 +58835,231,not funny,1279642399 +58835,231,road trip,1279642387 +58835,231,silly,1279642385 +58835,231,stupid,1279642382 +58835,260,aliens,1239149238 +58835,293,assassins,1240875965 +58835,293,disturbing,1294276152 +58835,293,friendship,1282763575 +58835,293,Gary Oldman,1240875947 +58835,293,great acting,1294276145 +58835,293,hitman,1282763586 +58835,293,humorous,1282763564 +58835,293,Jean Reno,1240875949 +58835,293,Luc Besson,1240875978 +58835,293,Natalie Portman,1240875952 +58835,344,Dumb,1279656305 +58835,344,Gross-out,1279643283 +58835,344,Jim Carrey,1279643271 +58835,344,sex jokes,1279643287 +58835,435,alien invasion,1279641921 +58835,435,aliens,1279641902 +58835,435,Dan Aykroyd,1279641895 +58835,435,stupid,1279641889 +58835,446,Child abuse,1272744889 +58835,446,Gong Li,1272744917 +58835,446,Leslie Cheung,1272744897 +58835,448,airplane crash,1251567669 +58835,448,cheating death,1251567691 +58835,448,depression,1282764173 +58835,448,Isabella Rossellini,1251567679 +58835,448,Jeff Bridges,1272588165 +58835,448,psychology,1251567685 +58835,454,John Grisham,1284337812 +58835,454,lawyer as protagonist,1284337803 +58835,454,lawyers,1284337805 +58835,454,Tom Cruise,1284337808 +58835,466,Charlie Sheen,1279642082 +58835,466,over the top,1279642135 +58835,466,silly,1279642092 +58835,541,artificial intelligence,1281049371 +58835,541,atmospheric,1281049369 +58835,541,based on a book,1281049453 +58835,541,cyberpunk,1281049444 +58835,541,melancholy,1281049431 +58835,541,narrated,1281049438 +58835,541,Philip K. Dick,1281049423 +58835,541,sci-fi,1281049421 +58835,587,girlie movie,1279659703 +58835,587,Whoopi Goldberg,1279657083 +58835,590,based on a book,1277248895 +58835,590,based on book,1277248889 +58835,590,bittersweet,1277248899 +58835,590,civil war,1277248902 +58835,590,indians,1272587751 +58835,590,Kevin Costner,1277248886 +58835,590,western,1272587739 +58835,745,claymation,1279641605 +58835,745,stop motion,1279641616 +58835,780,alien invasion,1279133980 +58835,780,apocalypse,1279133984 +58835,780,aviation,1279134212 +58835,780,stupid,1279134204 +58835,780,Will Smith,1279133994 +58835,788,Crappy Remake,1279642740 +58835,788,Eddie Murphy,1279642735 +58835,788,remake,1279642745 +58835,924,aliens,1239149319 +58835,924,artificial intelligence,1281049396 +58835,924,atmospheric,1281049400 +58835,924,meditative,1281049601 +58835,924,Stanley Kubrick,1281049408 +58835,949,brothers,1324914513 +58835,949,siblings,1324914523 +58835,1061,always watch it when it's on tv,1240875727 +58835,1127,aliens,1239149852 +58835,1148,animated,1279641742 +58835,1148,animation,1279641748 +58835,1148,british,1279641739 +58835,1148,Clay Animation,1279641750 +58835,1148,stop motion,1279641731 +58835,1148,stop-motion,1279641719 +58835,1148,Wallace & Gromit,1279641728 +58835,1161,disturbing,1279641675 +58835,1161,literary adaptation,1279641653 +58835,1161,Volker Schlöndorff,1279641648 +58835,1161,World War II,1279641667 +58835,1183,beautiful scenery,1279657064 +58835,1183,long,1240876071 +58835,1183,Ralph Fiennes,1240876104 +58835,1183,sentimental,1279133908 +58835,1183,World War I,1240876091 +58835,1183,WWII,1240876093 +58835,1196,aliens,1239149290 +58835,1210,aliens,1239149302 +58835,1212,black and white,1287348961 +58835,1212,music,1287348953 +58835,1212,Orson Welles,1287348891 +58835,1259,autumnal,1240876468 +58835,1259,coming of age,1240876450 +58835,1259,friendship,1240876460 +58835,1259,Kiefer Sutherland,1240876475 +58835,1259,River Phoenix,1240876478 +58835,1265,Bill Murray,1272744813 +58835,1265,feel-good,1272744821 +58835,1265,romance,1272744826 +58835,1265,time loop,1272744808 +58835,1265,time travel,1272744810 +58835,1269,Cary Grant,1251567809 +58835,1269,dark comedy,1251567765 +58835,1269,Everyone has a crazy Aunt. But two?,1282764777 +58835,1269,Frank Capra,1282764784 +58835,1269,frantic,1282764787 +58835,1269,hysterical,1282764790 +58835,1269,murder,1282764794 +58835,1269,screwball comedy,1251567795 +58835,1287,chariot race,1240875891 +58835,1287,christianity,1416593332 +58835,1287,forgiveness,1282764105 +58835,1287,friendship,1282764144 +58835,1287,good music,1251567757 +58835,1287,great cinematography,1282763984 +58835,1287,historical epic,1416593313 +58835,1287,loyalty vs. betrayal,1282764033 +58835,1287,Oscar (Best Picture),1416593336 +58835,1287,redemption,1282764114 +58835,1287,Roman empire,1282764045 +58835,1289,civilization,1282763613 +58835,1289,landscape,1282763611 +58835,1289,no dialogue,1239148677 +58835,1289,Philip Glass,1251567574 +58835,1289,phillip glass score,1251567570 +58835,1301,a great science fiction movie,1240876801 +58835,1301,aliens,1240876778 +58835,1301,cult film,1240876776 +58835,1301,intellectual,1240876782 +58835,1301,Leslie Nielsen,1240876786 +58835,1301,Shakespeare sort of,1240876794 +58835,1320,franchise,1279643244 +58835,1320,sequel,1279643240 +58835,1343,horror,1279656851 +58835,1343,Nick Nolte,1279656883 +58835,1343,over-the-top ending,1279656869 +58835,1343,remake,1279656847 +58835,1343,Robert De Niro,1279656880 +58835,1343,scary,1279656874 +58835,1343,stalker,1279656876 +58835,1348,classic,1279232787 +58835,1348,F.W. Murnau,1279232789 +58835,1348,german expressionism,1279232783 +58835,1562,franchise,1279643101 +58835,1562,George Clooney,1279642994 +58835,1562,silly,1279643017 +58835,1584,aliens,1239149774 +58835,1586,Demi Moore,1279642188 +58835,1608,america porn,1279656318 +58835,1608,Gary Oldman,1279656324 +58835,1608,Harrison Ford,1279656330 +58835,1608,terrorism,1279656333 +58835,1653,dystopia,1240875579 +58835,1653,dystopic future,1251567636 +58835,1653,Ethan Hawke,1251567653 +58835,1653,genetic engineering,1282764822 +58835,1653,genetic selection,1282764819 +58835,1653,genetics,1282764825 +58835,1653,rebellion,1251567647 +58835,1653,sci-fi,1251567643 +58835,1653,space travel,1281049482 +58835,1653,Uma Thurman,1240875600 +58835,1676,satire,1277246513 +58835,1721,atmospheric,1240876355 +58835,1721,based on a true story,1277247652 +58835,1721,bittersweet,1240876347 +58835,1721,disaster,1277247648 +58835,1721,Kate Winslet,1240876364 +58835,1721,Leonardo DiCaprio,1240876362 +58835,1721,sentimental,1240876324 +58835,1721,true story,1240876326 +58835,2012,70mm,1244459837 +58835,2012,alternate reality,1277248287 +58835,2012,alternate universe,1272587704 +58835,2012,Michael J. Fox,1277248295 +58835,2012,science fiction,1244459853 +58835,2012,steampunk,1272587712 +58835,2012,time travel,1244459841 +58835,2012,trains,1277248276 +58835,2012,western,1272587709 +58835,2021,aliens,1239149789 +58835,2046,aliens,1240876720 +58835,2232,Kammerspiel,1281050031 +58835,2232,low budget,1281050081 +58835,2232,mathematics,1281049772 +58835,2232,psychology,1281050067 +58835,2572,Heath Ledger,1240876373 +58835,2628,franchise,1294276136 +58835,2628,Natalie Portman,1294276125 +58835,2628,sequel,1294276127 +58835,2642,bad plot,1279642787 +58835,2642,bad script,1279642791 +58835,2642,Christopher Reeve,1279642796 +58835,2642,double life,1279642798 +58835,2642,franchise,1279642772 +58835,2643,bad plot,1279642815 +58835,2643,Christopher Reeve,1279642828 +58835,2643,nuclear weapons,1279642818 +58835,2643,plot holes,1279642822 +58835,2643,superhero,1279642824 +58835,2644,based on a book,1279232760 +58835,2644,Classic,1279232734 +58835,2644,concert,1279232733 +58835,2644,good versus evil,1279232739 +58835,2644,hypnosis,1279232746 +58835,2706,dumb,1279642942 +58835,2706,sexualized,1279642982 +58835,2706,stupid,1279642946 +58835,2762,Atmospheric,1240876502 +58835,2762,Bruce Willis,1240876516 +58835,2762,ghosts/afterlife,1240876523 +58835,2762,mindfuck,1240876525 +58835,2762,psychology,1281049891 +58835,2762,sad but good,1281049877 +58835,2762,somber,1240876508 +58835,2762,twist ending,1240876512 +58835,2858,coming of age,1282765100 +58835,2858,dark comedy,1282765098 +58835,2858,homosexuality,1282765102 +58835,2858,Kevin Spacey,1282765092 +58835,2858,midlife crisis,1282765107 +58835,2858,narrated,1282765109 +58835,2858,reflective,1282765113 +58835,2858,social commentary,1282765116 +58835,2858,surrealism,1282765120 +58835,3008,atmospheric,1293660721 +58835,3008,end of the world,1293660717 +58835,3008,Sandra Oh,1293660725 +58835,3022,American Civil War,1272744854 +58835,3022,Civil War,1272744837 +58835,3022,farce,1272744843 +58835,3022,Funny as Hell,1272744840 +58835,3022,trains,1272744847 +58835,3114,cgi,1279642698 +58835,3114,Pixar,1279642701 +58835,3114,sequel,1279642708 +58835,3175,aliens,1239149706 +58835,3265,Chow Yun Fat,1240876738 +58835,3265,John Woo,1227136525 +58835,3265,Tony Leung Chiu Wai,1240876740 +58835,3503,alien contact,1281050279 +58835,3503,aliens,1239149217 +58835,3503,atmospheric,1281050285 +58835,3503,meditative,1281050294 +58835,3503,too slow,1281050269 +58835,3593,aliens,1279641413 +58835,3593,BAD special effects,1279133302 +58835,3593,Forest Whitaker,1240876279 +58835,3593,Golden Raspberry (Worst Picture),1240876290 +58835,3593,John Travolta,1240876268 +58835,3593,religion,1279641442 +58835,3593,scientologist,1240876245 +58835,3593,stupid,1240876263 +58835,3593,unbearable,1240876294 +58835,3593,waste of celluloid,1240876247 +58835,3819,charming,1272744660 +58835,3819,food,1272744662 +58835,3819,humorous,1272744665 +58835,3819,ramen,1272744676 +58835,3819,sexy,1272744668 +58835,3826,illogical,1279133893 +58835,3826,Kevin Bacon,1279133878 +58835,3826,Sexualized violence,1279133884 +58835,3827,Clint Eastwood,1279131067 +58835,3827,space,1279131061 +58835,3827,space program,1279131064 +58835,3827,Tommy Lee Jones,1279131072 +58835,3994,atmospheric,1282765134 +58835,3994,Bruce Willis,1282765139 +58835,3994,eerie,1282765177 +58835,3994,father-son relationship,1282765155 +58835,3994,M. Night Shyamalan,1282765173 +58835,3994,Samuel L. Jackson,1282765143 +58835,3994,somber,1282765148 +58835,3994,twist ending,1282765151 +58835,3994,understated,1282765129 +58835,3996,atmospheric,1277762653 +58835,3996,beautiful,1277762692 +58835,3996,beautifully filmed,1277762681 +58835,3996,china,1277762684 +58835,3996,crime,1277762699 +58835,3996,martial arts,1277762710 +58835,3996,stylized,1277762713 +58835,4155,Charlize Theron,1290562532 +58835,4155,cliche,1290562523 +58835,4155,Keanu Reeves,1290562481 +58835,4241,best pokemon movie,1240876192 +58835,4241,video game adaptation,1240876186 +58835,4265,boring plot,1279657019 +58835,4265,predictable,1279657035 +58835,4308,music business,1279642599 +58835,4308,musical,1279642617 +58835,4308,Nicole Kidman,1279642607 +58835,4370,artificial intelligence,1279656511 +58835,4370,depressing,1279656520 +58835,4370,disturbing,1279656524 +58835,4370,dystopia,1279656515 +58835,4370,ending kinda ruined it,1279656553 +58835,4370,Stanley Kubrick,1279656540 +58835,4370,Steven Spielberg,1279656531 +58835,4419,Douglas Sirk,1338308792 +58835,4419,Rock Hudson,1338308790 +58835,4679,hilarious,1293579290 +58835,4679,John Candy,1293579294 +58835,4679,Macaulay Culkin,1293579297 +58835,4874,aliens,1239149699 +58835,4878,alternate timeline,1281049498 +58835,4878,atmospheric,1281049501 +58835,4878,mental illness,1281049514 +58835,4878,time travel,1281049509 +58835,4975,Cameron Diaz,1326314581 +58835,4975,mindfuck,1290195007 +58835,4975,New York City,1290195076 +58835,4975,psychology,1290194998 +58835,4975,remake,1326314592 +58835,4975,science fiction,1290195033 +58835,4975,Tom Cruise,1290194993 +58835,5265,Edward Norton,1289334439 +58835,5265,Robin Williams,1289334443 +58835,5378,franchise,1294276088 +58835,5378,Natalie Portman,1294276072 +58835,5378,sequel,1294276069 +58835,5445,dystopia,1281050111 +58835,5445,Philip K. Dick,1281050121 +58835,5445,Steven Spielberg,1281050139 +58835,5445,Tom Cruise,1281050134 +58835,5465,Berlinale 2002,1227134710 +58835,5618,fairy tale,1240876010 +58835,5738,disgusting,1279641404 +58835,5971,anime,1288569991 +58835,5971,feel good movie,1288569977 +58835,5971,for kids,1288569909 +58835,5971,great soundtrack,1288569984 +58835,5971,Hayao Miyazaki,1288569889 +58835,5971,Studio Ghibli,1288569988 +58835,5971,too simple plot,1288569962 +58835,5989,based on a book,1279134184 +58835,5989,biography,1279134130 +58835,5989,con artists,1279134134 +58835,5989,feel good movie,1279134145 +58835,5989,Leonardo DiCaprio,1279134175 +58835,5989,Tom Hanks,1279134151 +58835,5989,true story,1279134161 +58835,6016,crime,1279656914 +58835,6016,drugs,1279656917 +58835,6016,true story,1279656926 +58835,6264,bad science,1277247391 +58835,6264,stupid plot,1279642271 +58835,6264,unrealistic,1277247382 +58835,6522,fishing,1227136992 +58835,6579,berlin,1251567535 +58835,6579,Billy Wilder,1272587959 +58835,6579,Cold War,1272587972 +58835,6579,Funny as hell,1279658300 +58835,6579,germany,1272587967 +58835,6579,James Cagney,1279658240 +58835,6874,martial arts,1277247339 +58835,6874,nonlinear,1279642044 +58835,6874,overrated,1240876752 +58835,6874,Quentin Tarantino,1279642066 +58835,6874,rape,1279642058 +58835,6874,revenge,1279642048 +58835,6874,stylized,1279642033 +58835,6874,Uma Thurman,1277247336 +58835,7034,coming of age,1279130268 +58835,7034,friendship,1279130269 +58835,7034,quirky,1279130264 +58835,7034,small town,1279130276 +58835,7034,social commentary,1279130288 +58835,7254,alternate endings,1279131372 +58835,7254,Ashton Kutcher,1279131380 +58835,7254,child abuse,1279131484 +58835,7254,math,1279131390 +58835,7254,mathematics,1279131393 +58835,7254,suspense,1279131436 +58835,7254,time travel,1279131434 +58835,7361,bittersweet,1278027446 +58835,7361,Jim Carrey,1278027471 +58835,7361,melancholy,1278027476 +58835,7361,New York City,1278027479 +58835,7361,nonlinear,1278027455 +58835,7361,philosophy,1279133851 +58835,7361,quirky,1279133852 +58835,7361,surreal,1278027491 +58835,7382,1970s,1293660793 +58835,7382,adolescence,1293660775 +58835,7382,father-son relationship,1293660780 +58835,7382,friends,1293660788 +58835,7438,Quentin Tarantino,1279642285 +58835,7438,stylized,1277247286 +58835,7438,Uma Thurman,1277247289 +58835,7486,argentina,1282763676 +58835,7486,Astor Piazzolla,1240875826 +58835,7486,atmospheric,1240875830 +58835,7486,bittersweet,1282763683 +58835,7486,Buenos Aires,1282763692 +58835,7486,gay,1282763694 +58835,7486,jealousy,1282763698 +58835,7486,loneliness,1282763702 +58835,7486,melancholy,1240875832 +58835,7486,on-off relationship,1282763721 +58835,7486,soccer,1282763704 +58835,7486,some elements of a road movie,1240875870 +58835,7486,wong kar wai,1282763707 +58835,7786,musical,1272744643 +58835,7786,overtone singing,1282764930 +58835,7786,tradition,1282764964 +58835,7786,Tuvan throat singing,1282764911 +58835,7981,Anthony Wong Chau-Sang,1282763640 +58835,7981,better than the american version,1240875904 +58835,7981,hong kong,1240875906 +58835,7981,Tony Leung Chiu Wai,1240875907 +58835,7981,undercover cop,1240875909 +58835,7982,atmospheric,1242950943 +58835,7982,claustrophobic,1242950947 +58835,7982,eerie,1242950952 +58835,7982,goth,1242950955 +58835,7982,modern fairytale,1279657914 +58835,7982,psychology,1282763815 +58835,8019,atmospheric,1240876700 +58835,8128,based on a true story,1279657095 +58835,8128,boarding school,1279657092 +58835,8640,bullshit history,1277247265 +58835,8640,Clive Owen,1277247244 +58835,8640,Jerry Bruckheimer,1277247254 +58835,8640,Keira Knightley,1277247251 +58835,8793,torture,1227136951 +58835,8811,Yu-Gi-Oh!,1240876173 +58835,8939,memory,1290194949 +58835,8939,Robin Williams,1290194922 +58835,8950,bleak,1282763420 +58835,8950,Christian Bale,1272588105 +58835,8950,creepy,1282763435 +58835,8950,eerie,1272588126 +58835,8950,grim,1282763431 +58835,8950,imaginary friend,1272588132 +58835,8950,insomnia,1282763442 +58835,8950,memory,1272588108 +58835,8950,ominous,1282763471 +58835,8950,post-traumatic stress disorder,1282763482 +58835,8950,psychology,1272588113 +58835,8950,puzzle,1282763532 +58835,8950,twist ending,1272588110 +58835,8957,claustrophobic,1326314453 +58835,8957,gore,1326314448 +58835,8957,gothic,1326314468 +58835,8957,mindfuck,1326314481 +58835,8957,serial killer,1326314454 +58835,8957,Thriller,1326314487 +58835,8957,torture,1326314457 +58835,8957,twist ending,1326314459 +58835,26840,Japan,1240876414 +58835,26840,Takeshi Kitano,1240876423 +58835,26840,yakuza,1240876421 +58835,26947,Kim Bodnia,1406581930 +58835,26947,Mads Mikkelsen,1406581928 +58835,26947,Nicolas Winding Refn,1406581923 +58835,27397,friendship,1293659318 +58835,27397,nonlinear,1293659322 +58835,27773,based on comic,1279641021 +58835,27773,boring,1279641100 +58835,27773,Chan-wook Park,1279641024 +58835,27773,depressing,1279641033 +58835,27773,disturbing,1279641014 +58835,27773,hallucinatory,1279641036 +58835,27773,incest,1279641040 +58835,27773,music,1279641048 +58835,27773,paranoid,1279641052 +58835,27773,revenge,1279641016 +58835,27773,stylized,1279641065 +58835,27773,twist ending,1279641070 +58835,27773,vengeance,1279641074 +58835,27773,violent,1279641078 +58835,27904,Keanu Reeves,1264134087 +58835,27904,Philip K. Dick,1264134081 +58835,27904,Robert Downey Jr.,1264134091 +58835,31364,police investigation,1227135324 +58835,31364,serial killer,1227135297 +58835,31437,abandonment,1282763257 +58835,31437,based on a true story,1272588054 +58835,31437,children,1272588067 +58835,31437,Japan,1282763317 +58835,31437,meditative,1272588061 +58835,31437,siblings,1272588042 +58835,31437,solidarity,1282763393 +58835,31437,Tokyo,1272588058 +58835,31437,understated,1272588048 +58835,31878,soccer,1227189712 +58835,32025,Berlinale 2004,1227135972 +58835,32239,aliens,1227135130 +58835,32239,Crazy Guy,1227135151 +58835,33493,Natalie Portman,1294276096 +58835,33493,sequel,1294276094 +58835,34811,Mads Mikkelsen,1406581945 +58835,34811,Nicolas Winding Refn,1406581944 +58835,38499,AIDS,1277247792 +58835,38499,Al Pacino,1277247779 +58835,38499,based on a play,1277247783 +58835,38499,Broadway,1277247798 +58835,38499,closeted homosexual,1277247773 +58835,38499,Meryl Streep,1277247777 +58835,39183,1970s,1277248233 +58835,39183,bittersweet,1272587643 +58835,39183,cowboys,1272587655 +58835,39183,Heath Ledger,1272587645 +58835,39183,homosexuality,1293665901 +58835,39183,Love story,1279129765 +58835,39183,melancholy,1272587650 +58835,39183,music,1272587666 +58835,39183,romance,1279129774 +58835,39444,archery,1251567502 +58835,39444,depressing,1272587993 +58835,39444,divorce,1239148536 +58835,39444,dysfunctional family,1282763839 +58835,39444,feel good movie,1279658078 +58835,39444,Michael Caine,1272588014 +58835,39444,Nicolas Cage,1282763851 +58835,41285,Disturbing,1260989432 +58835,41285,non-hollywood ending,1260989429 +58835,42723,brutal,1277247113 +58835,42723,chainsaw,1277247088 +58835,42723,controversial,1279641127 +58835,42723,Disgusting,1277247123 +58835,42723,disturbing,1277247109 +58835,42723,goretastic,1277247080 +58835,42723,gruesome,1279641147 +58835,42723,horror,1279641154 +58835,42723,stupid stereotypes,1277247083 +58835,42723,torture,1277247102 +58835,42723,twisted,1279641177 +58835,42723,violence pornography,1279133457 +58835,44191,dystopia,1294276256 +58835,44191,Natalie Portman,1294276242 +58835,44191,politics,1294276250 +58835,44191,revenge,1294276246 +58835,46156,dark comedy,1304291561 +58835,47099,based on a true story,1277247489 +58835,47099,true story,1277247516 +58835,47099,Will Smith,1277247508 +58835,47200,Jason Statham,1277246547 +58835,48394,atmospheric,1240876562 +58835,48394,bittersweet,1240876559 +58835,48394,fairy tale,1240876552 +58835,48394,surreal,1240876555 +58835,48394,twist ending,1284337962 +58835,48394,violence,1240876574 +58835,48394,world war II,1240876579 +58835,48516,atmospheric,1279642470 +58835,48516,Leonardo DiCaprio,1279642418 +58835,48516,Matt Damon,1279642421 +58835,48516,remake,1279642414 +58835,48774,atmospheric,1281049530 +58835,48774,based on a book,1281049549 +58835,48774,christianity,1281049577 +58835,48774,Clive Owen,1281049539 +58835,48774,dystopia,1281049531 +58835,48774,Michael Caine,1281049540 +58835,50514,father daughter relationship,1401838374 +58835,50514,Mads Mikkelsen,1401838368 +58835,50514,music,1401838379 +58835,51255,the greater good,1240876746 +58835,51562,aliens,1239149828 +58835,51562,SF,1240876678 +58835,51931,9/11,1272744745 +58835,51931,adam sandler,1272744781 +58835,51931,depression,1272744753 +58835,51931,Don Cheadle,1272744749 +58835,51931,sad,1272744772 +58835,51931,unique,1272744774 +58835,52328,beautiful effects,1281049697 +58835,52328,Danny Boyle,1281049646 +58835,52328,great soundtrack,1281049660 +58835,52579,biopic,1279133643 +58835,52579,Gerard Depardieu,1279133651 +58835,52967,unfaithfulness,1279641867 +58835,53161,mental hospital,1279133804 +58835,53161,mental illness,1279133800 +58835,53592,piano,1289333639 +58835,53592,World War II,1289333623 +58835,54341,bad script,1279642658 +58835,54341,gay,1279642638 +58835,54999,carrots,1227136714 +58835,55276,George Clooney,1326882794 +58835,55276,Tilda Swinton,1326882811 +58835,55451,Bechdel Test:Pass,1401838168 +58835,55451,Hugh Dancy,1401838171 +58835,55768,computer animation,1277247448 +58835,55768,Dreamworks,1277247451 +58835,55768,ending kinda ruined it,1279656387 +58835,55768,illogical,1240876690 +58835,55844,BAD special effects,1279133408 +58835,55844,lesbian,1279133417 +58835,55844,no plot,1279133439 +58835,55844,Nudity (Topless),1279640993 +58835,56174,depressing,1279134113 +58835,56174,post-apocalyptic,1279134085 +58835,56174,underwhelming ending,1279134269 +58835,56174,vampire,1279134292 +58835,56174,virus,1279134296 +58835,56174,Will Smith,1279134104 +58835,56174,zombies,1279134101 +58835,56931,Anthony Wong Chau-Sang,1295435389 +58835,56931,Francis Ng,1295435399 +58835,56931,Suet Lam,1295435409 +58835,57504,classical music,1279753265 +58835,57504,friendship,1279753067 +58835,57504,japanese,1279753278 +58835,57504,time travel,1279753065 +58835,58303,Holocaust,1240876145 +58835,58303,true story,1240876132 +58835,58303,World War II,1279656941 +58835,58559,Atmospheric,1264134248 +58835,58559,Batman,1277248842 +58835,58559,Christian Bale,1264134244 +58835,58559,comic book,1277248858 +58835,58559,dark,1264134237 +58835,58559,Gary Oldman,1264134240 +58835,58559,Heath Ledger,1264134227 +58835,58559,Michael Caine,1264134268 +58835,58559,Morgan Freeman,1264134272 +58835,58559,serial killer,1282764475 +58835,58559,superhero,1277248868 +58835,59315,funny,1288570186 +58835,59315,Jeff Bridges,1288570169 +58835,59315,Robert Downey Jr.,1288570160 +58835,59315,sci-fi,1288570207 +58835,59387,1920s,1277762539 +58835,59387,beautiful cinematography,1284337864 +58835,59387,imagination,1284337844 +58835,59387,mask,1277762565 +58835,59387,metafilm,1284337878 +58835,59387,story-in-a-story,1277762552 +58835,59387,suicide attempt,1284337835 +58835,59387,surreal,1277762533 +58835,59387,visually stunning,1277762530 +58835,60069,artificial intelligence,1282764407 +58835,60069,Cute!,1282764419 +58835,60069,last man on earth,1282764414 +58835,60069,pixar,1282764399 +58835,60069,post-apocalyptic,1282764410 +58835,60069,Sci-Fi,1282764425 +58835,60074,alcoholic,1279130932 +58835,60074,bad ending,1279130885 +58835,60074,bad script,1279130883 +58835,60074,mentor/trainer,1279130944 +58835,60074,plot twist,1279130920 +58835,60074,Will Smith,1279130908 +58835,60566,eerie,1289933279 +58835,60566,midlife crisis,1289933572 +58835,60566,neo-noir,1289933572 +58835,60566,Nudity (Full Frontal - Brief),1289935298 +58835,60647,Kate Mara,1226774553 +58835,60735,Berlinale 2007,1227135399 +58835,61236,good ending,1282764725 +58835,61236,post-traumatic stress disorder,1282764743 +58835,61236,very moving,1282764711 +58835,61240,atmospheric,1300831885 +58835,61240,coming of age,1300831873 +58835,61240,friendship relations,1300831881 +58835,61240,serial killer,1300831877 +58835,63436,Julie Benz,1279133338 +58835,63436,violence pornography,1279133331 +58835,64942,Berlinale 2007,1230330527 +58835,66097,3D,1277248799 +58835,66097,3D version,1277248803 +58835,66097,alternate reality,1277248780 +58835,66097,alternate universe,1277248747 +58835,66097,animation,1277248758 +58835,66097,based on a book,1277248761 +58835,66097,dark,1277248764 +58835,66097,fairy tale,1277248766 +58835,66097,stop motion,1277248788 +58835,68237,cloning,1280958635 +58835,68237,corporate culture,1280958638 +58835,68237,dystopia,1281049203 +58835,68237,Kevin Spacey,1280958645 +58835,68237,psychology,1281049210 +58835,68237,Sci-fi,1281049218 +58835,68237,SF,1280958672 +58835,68237,technology,1281049223 +58835,69122,great soundtrack,1252103321 +58835,69122,Las Vegas,1252103395 +58835,69122,one liners,1277248953 +58835,69604,chess,1260989519 +58835,69604,Larry David,1260989516 +58835,69604,May-December romance,1260989547 +58835,69604,New York City,1260989536 +58835,69604,runaway,1260989526 +58835,69995,dysfunctional family,1290034446 +58835,69995,foreign language,1290034442 +58835,70286,action,1281049328 +58835,70286,atmospheric,1281049347 +58835,70286,cgi,1281049331 +58835,70286,genetics,1281049349 +58835,70286,redemption,1281049326 +58835,70286,sci-fi,1281049320 +58835,70286,social commentary,1281049322 +58835,70567,Hugh Dancy,1401838293 +58835,70567,New York City,1401838299 +58835,70567,Rose Byrne,1401838291 +58835,71252,gore,1277247136 +58835,71252,premonition,1277247132 +58835,71252,violence pornography,1279133233 +58835,71838,antihero,1277762168 +58835,71838,Gerard Butler,1277762163 +58835,71838,Jamie Foxx,1277762172 +58835,71838,revenge,1277762183 +58835,72129,franchise,1279641700 +58835,72129,violence pornography,1279133379 +58835,72378,audience intelligence underestimated,1279131913 +58835,72378,bad plot,1272742037 +58835,72378,bad science,1272742048 +58835,72378,cgi,1279641209 +58835,72378,coincidences,1279133200 +58835,72378,Danny Glover,1279641221 +58835,72378,destruction pornographie,1279133524 +58835,72378,future,1279641231 +58835,72378,John Cusack,1272742077 +58835,72378,kitsch,1279133253 +58835,72378,Roland Emmerich,1277247183 +58835,72378,sci-fi,1279641247 +58835,72378,science fiction,1272742052 +58835,72378,thriller,1279641259 +58835,72378,Woody Harrelson,1272742083 +58835,72998,aliens,1279642900 +58835,72998,bad plot,1279643207 +58835,72998,bad script,1279643214 +58835,72998,beautiful scenery,1279642904 +58835,72998,military,1279129205 +58835,74553,2D animation,1279658185 +58835,74553,art,1279134644 +58835,74553,magic,1279134651 +58835,74553,medieval,1282763773 +58835,74553,nature,1279134650 +58835,74553,vikings,1282763769 +58835,75341,shocking ending,1378689914 +58835,75341,sibling relationship,1378689909 +58835,76079,bland,1284336356 +58835,76079,disappointing,1284336359 +58835,76079,predictable,1284336451 +58835,76079,unoriginal,1284336485 +58835,77201,beautiful scenery,1401838391 +58835,77201,Mads Mikkelsen,1401838396 +58835,77201,mythology,1401838401 +58835,77201,thought-provoking,1401838405 +58835,77201,visually appealing,1401838406 +58835,77719,Volker Schlöndorff,1279641627 +58835,77981,Berlinale 2008,1277246244 +58835,77981,Johnnie To,1277246219 +58835,77981,Simon Yam,1277246222 +58835,78344,Berlinale 2008,1277246290 +58835,79132,great soundtrack,1326314568 +58835,79132,Leonardo DiCaprio,1282741540 +58835,79132,Michael Caine,1282741559 +58835,79132,mindfuck,1326314557 +58835,79132,sci-fi,1326314559 +58835,79132,surreal,1282741567 +58835,79132,visually appealing,1282741531 +58835,79505,road trip,1282766199 +58835,80831,remake,1293660571 +58835,80831,remake of a Swedish film,1293660563 +58835,80831,remake of Let The Right One In (2008),1293660558 +58835,81591,atmospheric,1324915316 +58835,81591,Natalie Portman,1324915314 +58835,81591,psychological,1324915330 +58835,81591,surreal,1324915325 +58835,84952,revenge,1313324182 +58835,84952,vengeance,1313324180 +58835,84952,youth,1313324235 +58835,91529,Michael Caine,1358294622 +58835,91529,New York City,1358294617 +58835,91529,plot twist,1358294615 +58835,94466,dark,1401839701 +58835,94466,dystopia,1401839697 +58835,94466,technology,1401839705 +58835,99917,artistic,1384711083 +58835,99917,emotionally captivating,1384711086 +58835,99917,sci-fi,1384711079 +58835,99917,strong female lead,1384711076 +58835,109487,Christopher Nolan,1416590282 +58882,204,Steven Seagal,1208039908 +58882,377,Sandra Bullock,1208039771 +58882,587,Good Romantic Comedies,1208039856 +58882,963,Danny Kaye,1208039823 +58882,1284,Bogart & Bacall,1208039866 +58882,5008,author:Agatha Christie,1208039898 +58882,5008,courtroom drama,1208039903 +58882,5008,great old movie,1208039900 +58882,6808,eastwood,1208039716 +58882,7762,espionage,1208039735 +58882,8033,Audrey Hepburn,1251581394 +58882,8033,caper,1251581398 +58886,296,crime,1427173606 +58886,296,cult,1427173606 +58886,296,multiple storylines,1427173606 +58896,2291,Tim Burton,1158646429 +58898,1653,flawless,1137560964 +58898,1653,homages,1137560964 +58898,1653,visual,1137560964 +58898,39183,gay,1137370850 +58950,318,great ending,1440923072 +58950,318,heartwarming,1440923088 +58950,318,inspirational,1440923078 +58950,318,prison escape,1440923101 +58950,318,thought-provoking,1440923065 +58950,47099,inspirational,1440923637 +58950,47099,Motivation,1440923643 +58950,68237,slow paced,1440922325 +58950,109848,slow,1440923041 +58966,1215,action,1137600120 +58966,1215,comedy,1137600120 +58966,1215,england,1137600120 +58966,1215,horror,1137600120 +58966,1215,zombies,1137600120 +58973,52,Woody Allen,1170365242 +58973,104,Adam Sandler,1170364608 +58973,275,Steve Martin,1170361815 +58973,586,Macaulay Culkin,1170359225 +58973,661,animation,1170357708 +58973,661,based on book,1170357708 +58973,661,Disney,1170357708 +58973,661,Tim Burton,1170357708 +58973,719,Michael Keaton,1170361868 +58973,736,Helen Hunt,1170359148 +58973,799,Michael J. Fox,1170441903 +58973,839,sequel,1170688692 +58973,1059,Claire Danes,1170357579 +58973,1059,Leonardo DiCaprio,1170357579 +58973,1127,sci-fi,1170357487 +58973,1240,Arnold Schwarzenegger,1170361915 +58973,1347,Johnny Depp,1170441599 +58973,1409,John Travolta,1170441613 +58973,1552,Steve Buscemi,1170359441 +58973,1629,Janeane Garofalo,1170359548 +58973,1682,Jim Carrey,1170362237 +58973,1784,Helen Hunt,1170362158 +58973,1784,Jack Nicholson,1170362158 +58973,1884,Benicio Del Toro,1170358456 +58973,1884,Terry Gilliam,1170358456 +58973,1888,Harry Connick Jr.,1170442595 +58973,1947,musical,1170430999 +58973,2018,Disney,1170430880 +58973,2053,sequel,1170442446 +58973,2105,sci-fi,1170357752 +58973,2110,Steve Martin,1170358163 +58973,2114,based on book,1170357288 +58973,2144,80's classic,1170357302 +58973,2174,Michael Keaton,1170361970 +58973,2174,Wynona Ryder,1170361970 +58973,2291,Johnny Depp,1170358339 +58973,2291,Tim Burton,1170358339 +58973,2291,Winona Ryder,1170358339 +58973,2297,Robin Williams,1170360282 +58973,2333,Brendan Fraser,1170441475 +58973,2333,Ian McKellan,1170441475 +58973,2471,sequel,1170441753 +58973,3157,Michael J. Fox,1170441667 +58973,3258,Goldie Hawn,1170442285 +58973,3355,Johnny Depp,1170442479 +58973,3793,based on comic book,1170357595 +58973,3809,Bill Murray,1170365318 +58973,3821,sequel,1170442502 +58973,4015,Ashton Kutcher,1170430971 +58973,4027,George Clooney,1170361947 +58973,4054,dance movie,1170359409 +58973,4054,Julia Stiles,1170359409 +58973,4343,sci-fi,1170430871 +58973,4344,Halle Berry,1170359292 +58973,4344,Hugh Jackman,1170359292 +58973,4388,sequel,1170441866 +58973,4489,Eddie Murphy,1170357547 +58973,4641,indie,1170364902 +58973,4642,John Cameron Mitchell,1170442227 +58973,4678,80's classic,1170357730 +58973,4678,Weird Al,1170357730 +58973,4720,Nicole Kidman,1170364455 +58973,4774,Ben Foster,1170444120 +58973,4774,Tim Allen,1170444120 +58973,4865,Johnny Depp,1170365393 +58973,4898,Helena Bonham Carter,1170359179 +58973,4898,Steve Martin,1170359179 +58973,4994,Jim Carrey,1170442640 +58973,5349,based on comic book,1170357313 +58973,5505,Jake Gyllenhaal,1170441579 +58973,5505,Jennifer Aniston,1170441579 +58973,5673,Adam Sandler,1170364808 +58973,5693,John Travolta,1170441743 +58973,5882,Michael J. Fox,1170359506 +58973,6188,Jeremy Piven,1170357406 +58973,6188,Luke Wilson,1170357406 +58973,6188,Will Ferrell,1170357405 +58973,6378,Edward Norton,1170444200 +58973,6502,Cillian Murphy,1170357819 +58973,6645,sci-fi,1170441056 +58973,6832,Harrison Ford,1170359618 +58973,6863,Jack Black,1170357421 +58973,6936,Will Ferrell,1170357779 +58973,6957,Billy Bob Thornton,1170441513 +58973,7101,Michael J. Fox,1170359111 +58973,7347,Johnny Depp,1170359570 +58973,8641,Steve Carrell,1170365331 +58973,8641,Will Ferrell,1170365331 +58973,8784,New Jersey,1170362106 +58973,8784,Zach Braff,1170362106 +58973,8813,Mark Ruffalo,1170358754 +58973,30793,Johnny Depp,1170357170 +58973,30822,Dennis Quaid,1170357234 +58973,30822,indie,1170357234 +58973,30822,Scarlett Johnasson,1170357234 +58973,30822,Topher Grace,1170357234 +58973,32598,Nick Hornby,1170444154 +58973,33836,Nicole Kidman,1170442559 +58973,33836,Will Ferrell,1170442559 +58973,34153,documentary,1170442417 +58973,35836,Steve Carell,1170357958 +58973,35957,Cillian Murphy,1170441760 +58973,42002,re-make,1170359128 +58973,45440,indie,1170359194 +58973,45672,Adam Sandler,1170441372 +58973,46530,based on comic book,1170357460 +58973,49286,Jack Black,1170359262 +58973,49286,Kate Winslet,1170359262 +58973,50158,dance movie,1170362095 +58999,260,sci-fi,1442328558 +58999,260,space,1442328576 +59008,260,sci-fi,1439240541 +59008,260,space opera,1439240528 +59011,527,Heroism,1390058164 +59011,589,dystopic future,1390058275 +59011,589,humor,1390058245 +59011,589,tension,1390058245 +59011,858,acting,1390058503 +59011,1201,classic,1390058476 +59011,1201,tension,1390058476 +59011,1265,coming of age,1390058406 +59011,1307,classic,1364657814 +59011,46976,heroism,1364658016 +59011,46976,Maggie Gyllenhaal,1364658016 +59011,64622,Nudity (Full Frontal),1364657916 +59011,73314,Follow your dream,1431314029 +59011,73314,Hunter Weeks,1431313976 +59011,73314,Segway,1431313952 +59011,133385,Time travel,1431313427 +59027,292,sdf,1143490565 +59035,1,Pixar,1400944952 +59035,293,assassin,1435953707 +59035,293,awkward romance,1435953785 +59035,293,French,1435953684 +59035,293,Gary Oldman,1435953655 +59035,293,great acting,1435953691 +59035,293,hitman,1435953709 +59035,293,Jean Reno,1435953644 +59035,293,love story,1439177951 +59035,293,Luc Besson,1435953728 +59035,293,Natalie Portman,1435953646 +59035,293,quirky,1435953830 +59035,293,unique,1435953744 +59035,318,hope,1426004413 +59035,318,inspirational,1400944918 +59035,318,Morgan Freeman,1400944895 +59035,318,plot twist,1426004413 +59035,318,prison,1400944912 +59035,318,renewal,1426004413 +59035,318,Stephen King,1400946024 +59035,318,thought-provoking,1400944906 +59035,318,twist ending,1400944901 +59035,593,Anthony Hopkins,1400931884 +59035,593,Hannibal Lecter,1400931884 +59035,593,high intelligence,1400931915 +59035,593,Jodie Foster,1400931894 +59035,593,psychology,1400931961 +59035,593,serial killer,1400931944 +59035,1225,biography,1400930319 +59035,1225,F. Murray Abraham,1400930487 +59035,1225,Mozart,1400930345 +59035,1225,true story,1400930438 +59035,1580,alien,1439177653 +59035,1580,aliens,1439177657 +59035,1580,comedy,1439177647 +59035,1580,sci-fi,1439177652 +59035,1580,Tommy Lee Jones,1439177646 +59035,1580,Will Smith,1439177644 +59035,1682,dark comedy,1403450390 +59035,1682,Jim Carrey,1403450365 +59035,1682,meta,1403450451 +59035,2288,aliens,1400946830 +59035,2288,Antarctica,1400946973 +59035,2288,John Carpenter,1400946799 +59035,2288,Kurt Russell,1400946863 +59035,3006,Al Pacino,1403450239 +59035,3006,Russell Crowe,1403450266 +59035,3006,tobacco,1403450254 +59035,3006,true story,1403450284 +59035,3623,action,1439178039 +59035,3623,espionage,1439178102 +59035,3623,mountain climbing,1439178003 +59035,3623,Tom Cruise,1439177999 +59035,3623,unnecessary sequel,1439178080 +59035,4016,ageism,1400931500 +59035,4016,disney but still great,1400931352 +59035,4016,funny,1400931474 +59035,4016,llama,1400931333 +59035,4016,South America,1400931333 +59035,4886,disruptive,1400929857 +59035,4886,Oscar (Best Picture),1400929888 +59035,4886,Pixar,1400929833 +59035,4886,touching,1400929833 +59035,4957,Dirty Harry,1408110094 +59035,5459,comedy,1439177609 +59035,5459,sequel,1439177621 +59035,5459,Tommy Lee Jones,1439177607 +59035,5459,Will Smith,1439177605 +59035,5618,anime,1426004312 +59035,5618,atmospheric,1426004333 +59035,5618,fantasy,1426004330 +59035,5618,Hayao Miyazaki,1426004304 +59035,5630,Anthony Hopkins,1400944572 +59035,5630,Hannibal Lecter,1400944578 +59035,6323,psychology,1400944379 +59035,6323,split personality,1400944374 +59035,6323,twist ending,1400944364 +59035,6377,Pixar,1400944437 +59035,6874,cultural blender,1400945432 +59035,6874,Quentin Tarantino,1400945330 +59035,6874,violence,1400945336 +59035,7022,brutality,1400929485 +59035,7022,isolation,1400929737 +59035,7022,social commentary,1400929456 +59035,7022,survival horror,1400929695 +59035,7022,Takeshi Kitano,1400929456 +59035,7022,violence,1400929485 +59035,8961,disruptive,1400929248 +59035,8961,innovative,1400929098 +59035,8961,Jazz,1400929016 +59035,8961,Pixar,1400929045 +59035,8961,superhero,1400928991 +59035,27704,bad sequel,1400930109 +59035,27704,revenge,1400930020 +59035,34532,surreal,1400944291 +59035,34532,twist ending,1400944271 +59035,34532,voodoo,1447999687 +59035,48319,airplane,1400944829 +59035,48319,courage,1400944857 +59035,48319,romance,1400944841 +59035,48319,World War I,1400944721 +59035,49280,Robert Kennedy,1401451538 +59035,60069,Pixar,1403431376 +59035,60069,post-apocalyptic,1403431456 +59035,79132,Christopher Nolan,1400932555 +59035,79132,dream,1400932376 +59035,79132,dreamlike,1400932376 +59035,79132,Leonardo DiCaprio,1400932599 +59035,79132,surreal,1400932445 +59035,79132,thought-provoking,1400932531 +59035,79132,twist ending,1400932661 +59035,79132,visually appealing,1400932503 +59035,89753,cold war,1410967392 +59035,89753,England,1411000923 +59035,89753,espionage,1410967551 +59035,89753,Gary Oldman,1410967323 +59035,89753,spies,1410967441 +59035,94777,aliens,1439177277 +59035,94777,funny,1439177280 +59035,94777,science fiction,1439177426 +59035,94777,time travel,1439177270 +59035,94777,Tommy Lee Jones,1439177438 +59035,94777,Touching ending,1439177548 +59035,94777,Will Smith,1439177279 +59035,95441,boring,1400932873 +59035,95441,overrated,1400932884 +59035,95441,predictable,1400932832 +59035,97304,anti-hero,1400945838 +59035,97304,Iran,1400945849 +59035,97304,suspenseful,1400945887 +59035,97304,true story,1400945855 +59035,99114,Quentin Tarantino,1400945229 +59035,99114,Samuel L. Jackson,1400945219 +59035,99114,too long,1400945990 +59035,99114,western,1400945259 +59035,111486,sociopath,1400945571 +59035,111486,violence,1400945575 +59035,111759,based on a novel,1428478588 +59035,111759,Emily Blunt,1428478545 +59035,111759,future,1428478580 +59035,111759,sci-fi,1428478549 +59035,111759,time loop,1428478538 +59035,111759,time travel,1428478573 +59035,111759,Tom Cruise,1428478542 +59056,260,father-son relationship,1432511748 +59056,260,John Williams music,1432511751 +59056,260,sci-fi,1432511707 +59056,260,Science Fiction,1432511710 +59056,260,space,1432511723 +59074,40629,love this movie,1307905669 +59077,260,c3po,1172205186 +59077,48394,Potential Oscar Nom,1172204988 +59087,102165,English,1421558589 +59091,1831,mimi rogers,1140030878 +59091,7523,mimi rogers,1140030861 +59150,2324,father-son relationship,1430998515 +59150,2324,holocaust,1430998500 +59150,2324,survival,1430998506 +59163,113741,mind bending,1442186241 +59163,113741,parallel universe,1442186224 +59164,58228,blaxploitation,1420692287 +59164,58228,comedy classic,1420692287 +59164,58228,multiple roles,1420692287 +59164,120610,heavy metal,1421903358 +59164,120610,snl alumns,1421903358 +59164,120610,stand up comedy,1421903358 +59174,260,action,1436125468 +59174,260,awesome,1436125477 +59188,68157,violence - too much for me!!,1268871962 +59223,260,racing,1437576944 +59223,260,space adventure,1437576934 +59225,33158,Samuel L. Jackson,1189377271 +59230,260,sci-fi,1432926595 +59230,260,space,1432926602 +59257,19,Jim Carrey,1426802361 +59257,70,Quentin Tarantino,1443721548 +59257,70,Salma Hayek,1443721546 +59257,110,mel gibson,1426769305 +59257,153,Nicole Kidman,1426795412 +59257,153,Val Kilmer,1426795421 +59257,165,action,1426787686 +59257,165,bruce willis,1426787681 +59257,165,Samuel L. Jackson,1426787683 +59257,231,jim carrey,1426788274 +59257,253,horror,1426801979 +59257,296,quentin tarantino,1427354880 +59257,296,samuel l. jackson,1427354880 +59257,296,uma thurman,1427354880 +59257,300,John Turturro,1426802536 +59257,318,Morgan Freeman,1442526167 +59257,318,Tim Robbins,1442526170 +59257,329,Star Trek,1426795312 +59257,344,Jim Carrey,1426787651 +59257,356,robert zemeckis,1428091165 +59257,356,robin wright penn,1428091165 +59257,356,tom hanks,1426787484 +59257,370,Leslie Nielsen,1426803600 +59257,442,Sylvester Stallone,1426802897 +59257,457,Harrison Ford,1426770533 +59257,457,suspense,1426770539 +59257,475,Daniel Day-Lewis,1443732703 +59257,475,Emma Thompson,1443735075 +59257,508,Denzel Washington,1426802803 +59257,508,tom hanks,1426802807 +59257,541,Harrison Ford,1426771091 +59257,541,Philip K. Dick,1426771099 +59257,541,sci-fi,1426771102 +59257,551,Tim Burton,1426802664 +59257,593,anthony hopkins,1426715205 +59257,593,jodie foster,1426715205 +59257,593,psychothriller,1426715205 +59257,595,Disney,1426787758 +59257,653,Sean Connery,1426803523 +59257,832,Mel Gibson,1426770553 +59257,908,Alfred Hitchcock,1426951660 +59257,908,Cary Grant,1426951661 +59257,924,artificial intelligence,1426802174 +59257,924,sci-fi,1426802172 +59257,953,James Stewart,1426803786 +59257,1073,Gene Wilder,1426795452 +59257,1097,sci-fi,1426802036 +59257,1097,Steven Spielberg,1426802032 +59257,1101,aviation,1426802481 +59257,1193,jack nicholson,1442526203 +59257,1198,Harrison Ford,1426770519 +59257,1213,Martin Scorsese,1426802135 +59257,1213,robert de niro,1426802132 +59257,1220,John Belushi,1426802688 +59257,1247,Dustin Hoffman,1426803128 +59257,1278,Gene Wilder,1426803405 +59257,1356,sci-fi,1426802712 +59257,1356,Star Trek,1426802707 +59257,1356,time travel,1426802709 +59257,1374,Star Trek,1426803297 +59257,1377,Tim Burton,1426804302 +59257,1485,classic comedy,1426770395 +59257,1485,jim carrey,1426770388 +59257,1544,Steven Spielberg,1426803810 +59257,1552,John Malkovich,1426803912 +59257,1608,Harrison Ford,1426803765 +59257,1653,Jude Law,1426771081 +59257,1653,sci-fi,1426771074 +59257,1923,sexual,1426788332 +59257,1954,Sylvester Stallone,1426803747 +59257,1961,Oscar (Best Actor),1426802075 +59257,2000,Mel Gibson,1426802985 +59257,2001,Mel Gibson,1426804035 +59257,2080,Disney,1426952552 +59257,2194,Sean Connery,1426803372 +59257,2291,Depp & Burton,1426802432 +59257,2291,Johnny Depp,1426802423 +59257,2291,Tim Burton,1426802424 +59257,2470,Paul Hogan,1426951996 +59257,2471,Paul Hogan,1426951981 +59257,2599,Matthew Broderick,1426804057 +59257,2617,Brendan Fraser,1426803055 +59257,2628,Liam Neeson,1426788404 +59257,2628,Natalie Portman,1426788414 +59257,2628,space,1426788418 +59257,2640,Gene Hackman,1426803338 +59257,2701,Will Smith,1426952410 +59257,2707,Jeff Bridges,1442350481 +59257,2791,Leslie Nielsen,1426802831 +59257,2916,Arnold Schwarzenegger,1426802579 +59257,2987,Christopher Lloyd,1426802323 +59257,2987,Robert Zemeckis,1426802321 +59257,3081,Johnny Depp,1426804235 +59257,3081,Tim Burton,1426804231 +59257,3102,Jeff Bridges,1439677459 +59257,3448,Robin Williams,1426952197 +59257,3489,Robin Williams,1427308227 +59257,3699,Jeff Bridges,1427049054 +59257,3801,James Stewart,1440518573 +59257,4306,comedy,1426770246 +59257,4306,Funny,1426770253 +59257,4638,Sam Neill,1427052123 +59257,4808,Jeff Bridges,1440023602 +59257,4975,sci-fi,1440616847 +59257,4975,Thriller,1440616858 +59257,5046,Gary Sinise,1442526296 +59257,5046,Philip K. Dick,1442526297 +59257,5378,Natalie Portman,1426788446 +59257,5378,Samuel L. Jackson,1426788450 +59257,5378,Star Wars,1426788444 +59257,5445,artificial intelligence,1426770900 +59257,5445,Philip K. Dick,1426770919 +59257,5445,sci-fi,1426770897 +59257,5445,spielberg,1426770903 +59257,5445,Steven Spielberg,1426770913 +59257,5445,time travel,1426770925 +59257,5618,Japan,1427049599 +59257,5679,Naomi Watts,1427307804 +59257,5989,Leonardo DiCaprio,1426802957 +59257,5989,Steven Spielberg,1426802961 +59257,5989,Tom Hanks,1426802959 +59257,6166,Walter Matthau,1437034559 +59257,6365,virtual reality,1426803174 +59257,6539,johnny depp,1426802200 +59257,6711,Bill Murray,1426803446 +59257,6711,Scarlett Johansson,1426803444 +59257,6750,Christina Ricci,1442330505 +59257,6750,Woody Allen,1442330488 +59257,7361,jim carrey,1426771182 +59257,7438,Quentin Tarantino,1426802916 +59257,8373,Nicole Kidman,1427413749 +59257,8665,Matt Damon,1426788167 +59257,8874,Edgar Wright,1426952378 +59257,8874,Simon Pegg,1426952375 +59257,26252,Walter Matthau,1437034524 +59257,30848,Scarlett Johansson,1427570427 +59257,31420,Ethan Hawke,1447625742 +59257,31420,Laurence Fishburne,1447625745 +59257,31420,Maria Bello,1447625741 +59257,34048,Steven Spielberg,1427048669 +59257,41285,Scarlett Johansson,1427408668 +59257,41569,Naomi Watts,1427048616 +59257,41569,Peter Jackson,1427048608 +59257,44058,Holly Hunter,1442500293 +59257,44058,Robin Williams,1442500282 +59257,44058,Woody Harrelson,1442500298 +59257,44191,Hugo Weaving,1426804120 +59257,44191,Natalie Portman,1426804117 +59257,46967,magic,1427570546 +59257,46967,Scarlett Johansson,1427570542 +59257,46967,Woody Allen,1427570539 +59257,48738,Forest Whitaker,1427408338 +59257,49272,James Bond,1426804417 +59257,54286,Matt Damon,1426788158 +59257,56174,Richard Matheson,1427052172 +59257,56174,Will Smith,1427052165 +59257,56367,Ellen Page,1426952746 +59257,58154,Natalie Portman,1427570491 +59257,58154,Scarlett Johansson,1427570493 +59257,59418,Ellen Page,1442334198 +59257,60950,Scarlett Johansson,1427413686 +59257,61401,Samuel L. Jackson,1427570594 +59257,61401,Scarlett Johansson,1427570592 +59257,63062,Clint Eastwood,1427413712 +59257,64983,Tom Cruise,1444306429 +59257,68157,Christoph Waltz,1426884798 +59257,68157,Diane Kruger,1426884784 +59257,69122,Zach Galifianakis,1427051534 +59257,73017,Jude Law,1427408127 +59257,73017,Robert Downey Jr.,1427408125 +59257,73017,Sherlock Holmes,1427408128 +59257,80864,Naomi Watts,1442330412 +59257,81591,creepy,1437771232 +59257,81591,Mila Kunis,1437771212 +59257,81591,Natalie Portman,1437771204 +59257,81591,Oscar (Best Actress),1437771218 +59257,83067,Amber Heard,1438593644 +59257,85414,parallel universe,1426770943 +59257,85414,science fiction,1426770954 +59257,85414,time travel,1426770949 +59257,90522,Rosamund Pike,1427355139 +59257,90522,Rowan Atkinson,1427355121 +59257,91542,Robert Downey Jr.,1427057214 +59257,91542,sherlock holmes,1427057228 +59257,91622,Charlize Theron,1426790296 +59257,91653,Scarlett Johansson,1427579718 +59257,96693,Amy Adams,1427920504 +59257,96693,Clint Eastwood,1427920506 +59257,98154,Daniel Day-Lewis,1438696023 +59257,98154,great script,1438696057 +59257,98154,Steven Spielberg,1438696033 +59257,98585,Scarlett Johansson,1438374109 +59257,98809,Martin Freeman,1426787946 +59257,100302,Kirsten Dunst,1436783731 +59257,100302,visually appealing,1436783719 +59257,101088,beautiful,1438028144 +59257,101088,dark,1438028166 +59257,101088,erotic,1438028148 +59257,101088,Mia Wasikowska,1438028153 +59257,101088,thriller,1438028159 +59257,101112,Michelle Williams,1438176830 +59257,101112,Mila Kunis,1438176811 +59257,101362,Gerard Butler,1433407052 +59257,101765,Diane Kruger,1426884763 +59257,101864,aliens,1426771049 +59257,101864,sci-fi,1426771036 +59257,103228,Idris Elba,1427048596 +59257,106489,Martin Freeman,1426787955 +59257,109191,Jessica Brown Findlay,1447794956 +59257,109191,Romantic,1447794924 +59257,111661,Kirsten Dunst,1436777290 +59257,112070,Julianne Moore,1438349237 +59257,112070,Mia Wasikowska,1438349262 +59257,112556,Rosamund Pike,1427354802 +59257,113378,Jeff Bridges,1438809954 +59257,113378,Meryl Streep,1438809957 +59257,116797,Alan Turing,1432029648 +59257,116797,Benedict Cumberbatch,1432029644 +59257,116797,Computers,1432029653 +59257,116797,cryptography,1432029656 +59257,117529,dinosaurs,1444853558 +59257,118696,Martin Freeman,1426787921 +59257,118696,Peter Jackson,1426787907 +59257,119655,Jeff Bridges,1444604356 +59257,122886,Star Wars,1426770111 +59257,126575,action,1447608255 +59257,126575,salma hayek,1447608257 +59257,129937,liam neeson,1439841327 +59257,132046,Hugh Laurie,1432807784 +59257,133782,Slow,1444978885 +59257,133782,zombies,1444948651 +59257,143319,James Stewart,1443709291 +59329,1653,dystopia,1278366540 +59329,1653,genetics,1278366722 +59329,1653,powerful ending,1278366653 +59329,1653,suicide,1278366648 +59329,1748,aliens,1278366842 +59329,1748,creepy,1278366846 +59329,1748,dystopia,1278366848 +59329,1748,mindfuck,1278366851 +59329,6214,constantly rotating filming,1265478621 +59329,6214,graphic violence,1265478615 +59329,6214,hard to watch,1265478610 +59329,27441,daemons,1282391422 +59329,27441,gore,1282391422 +59329,27441,samurai,1282391422 +59329,27441,vampires,1282391422 +59329,33615,animation,1282500856 +59329,33615,funny,1282500878 +59329,34319,cloning,1278367010 +59329,34319,dystopia,1278367001 +59329,34319,genetics,1278367004 +59329,50601,hurried ending,1293488616 +59329,52952,coming of age,1279581347 +59329,52952,great soundtrack,1279581404 +59329,52952,racism,1279581357 +59329,52952,reggae,1279581373 +59329,53993,humorous,1293911468 +59329,53993,Morgan Freeman,1293911445 +59329,55247,isolation,1264363648 +59329,55247,psychology,1264363648 +59329,60069,artificial intelligence,1282340046 +59329,60069,dystopia,1282340060 +59329,60069,inspirational,1282391477 +59329,60069,post-apocalyptic,1282340056 +59329,60069,quirky,1282391481 +59329,60069,robots,1282340046 +59329,60069,social commentary,1282391487 +59329,62336,hallucinatory,1291379647 +59329,62336,rock and roll,1291379577 +59329,68237,isolation,1264363565 +59329,68237,psychology,1264363665 +59329,68954,touching,1282500777 +59329,69757,artistic,1281877548 +59329,69757,humor,1281877553 +59329,69951,fantasy,1275477014 +59329,69951,Heath Ledger,1275476997 +59329,69951,imagination,1275477012 +59329,69951,Johnny Depp,1275476998 +59329,69951,surreal,1275477001 +59329,69951,terry gilliam,1275477002 +59329,70286,aliens,1278366150 +59329,70286,genetics,1278366150 +59329,70286,xenophobia,1278366150 +59329,70599,fate,1278374096 +59329,70599,sad,1278374108 +59329,70599,time travel,1278374133 +59329,71156,humorous,1278366894 +59329,71205,cliche,1275240488 +59329,71520,bad acting,1279747805 +59329,71520,Contrived.,1279747808 +59329,71520,man in the sky,1279747811 +59329,71520,not funny,1279747829 +59329,71520,religion,1279747800 +59329,71520,riddled with cliché,1279747818 +59329,71745,Coming of age,1279747954 +59329,71745,fantasy world,1279747947 +59329,71745,imagination,1279747952 +59329,72998,predictable,1275240459 +59329,73268,dystopia,1278366809 +59329,73268,genetics,1278366809 +59329,73268,vampires,1278366809 +59329,73488,daemons,1282391423 +59329,73488,gore,1282391423 +59329,73488,samurai,1282391423 +59329,73488,vampires,1282391423 +59329,76093,toothless is just like my cat,1282340307 +59329,76718,Special effects,1292846493 +59329,79357,butterfly effect,1291379397 +59329,79357,Jared Leto,1291379380 +59329,79357,sci-fi,1291379383 +59329,79357,surreal,1291379391 +59335,260,Inspires youth,1440123767 +59335,260,represents technology advance,1440123614 +59335,109487,philosophical issues,1440718425 +59335,109487,time-travel,1440718441 +59338,1,animation,1147410824 +59338,1,Disney,1147449942 +59338,1,Pixar,1147410822 +59338,1,toys,1147449940 +59338,5,family,1147409796 +59338,5,pregnancy,1147409794 +59338,5,wedding,1147449768 +59338,36,prison,1147409127 +59338,47,crime,1147409062 +59338,47,serial killer,1147409061 +59338,111,Classic,1147449930 +59338,111,cult film,1147449931 +59338,141,comedy,1147449720 +59338,141,gay,1147449722 +59338,150,space,1147410777 +59338,150,space program,1147410779 +59338,150,true story,1147410778 +59338,153,comic book,1147409040 +59338,153,superhero,1147409038 +59338,158,family,1147408924 +59338,158,ghost,1147408919 +59338,163,action,1147449579 +59338,163,romance,1147449580 +59338,208,very boring,1147409033 +59338,223,good dialogue,1147449543 +59338,260,fantasy,1147410798 +59338,260,sci-fi,1147410796 +59338,260,space,1147449919 +59338,318,prison,1147409023 +59338,342,comedy,1147450138 +59338,342,weddings,1147450137 +59338,344,Dumb,1147408961 +59338,344,goofy,1147408960 +59338,353,romance,1147449753 +59338,357,wedding,1147450340 +59338,380,action,1147410817 +59338,435,snl,1147449747 +59338,466,comedy,1147449802 +59338,466,cool,1147449803 +59338,480,action,1147449817 +59338,480,adventure,1147449819 +59338,480,dinosaurs,1147410758 +59338,527,holocaust,1147410579 +59338,541,androids,1147411478 +59338,541,sci-fi,1147411476 +59338,551,Christmas,1147450140 +59338,586,christmas,1147450094 +59338,586,family,1147450095 +59338,589,action,1147410807 +59338,589,robots,1147410809 +59338,589,sci-fi,1147449934 +59338,590,Oscar (Best Picture),1147410790 +59338,592,action,1147410773 +59338,592,comic book,1147449706 +59338,592,superhero,1147410771 +59338,593,cannibalism,1147410763 +59338,593,crime,1147449908 +59338,593,serial killer,1147410764 +59338,594,Disney,1147411641 +59338,594,fairy tale,1147449911 +59338,596,Children,1147449868 +59338,596,Disney,1147409673 +59338,596,fantasy,1147449867 +59338,673,toons,1147409662 +59338,750,classic,1147409660 +59338,750,nuclear war,1147409657 +59338,750,Stanley Kubrick,1147409659 +59338,780,aliens,1147409019 +59338,858,classic,1147410635 +59338,858,Mafia,1147410636 +59338,914,family,1147411637 +59338,919,classic,1147411380 +59338,919,witch,1147411383 +59338,924,classic,1147449555 +59338,940,Classic,1147411512 +59338,953,Christmas,1147411430 +59338,953,classic,1147411429 +59338,953,family,1147411427 +59338,1035,classic,1147411413 +59338,1035,family,1147411412 +59338,1035,Oscar (Best Picture),1147411415 +59338,1036,action,1147450712 +59338,1073,classic,1147409013 +59338,1084,classic,1147409639 +59338,1084,violent,1147409641 +59338,1088,dance,1147409630 +59338,1088,music,1147409627 +59338,1097,aliens,1147450063 +59338,1097,family,1147450062 +59338,1136,Fun,1147412690 +59338,1136,hilarious,1147412692 +59338,1178,military,1147410659 +59338,1196,fantasy,1147412304 +59338,1196,sci-fi,1147412306 +59338,1196,space,1147412303 +59338,1198,archaeology,1147450530 +59338,1200,space,1147450655 +59338,1201,spaghetti western,1147450716 +59338,1206,Stanley Kubrick,1147409592 +59338,1210,fantasy,1147449663 +59338,1210,sci-fi,1147449664 +59338,1210,space,1147449666 +59338,1214,sci-fi,1147450684 +59338,1214,space,1147450682 +59338,1219,psychology,1147411575 +59338,1222,guerra,1147449790 +59338,1222,Vietnam,1147449791 +59338,1225,music,1147411596 +59338,1225,Oscar (Best Picture),1147449539 +59338,1240,Action,1147449937 +59338,1240,sci-fi,1147412700 +59338,1253,aliens,1147411393 +59338,1253,classic,1147411395 +59338,1266,western,1147411312 +59338,1270,adventure,1147412500 +59338,1270,sci-fi,1147412501 +59338,1270,time travel,1147412499 +59338,1282,Disney,1147411360 +59338,1291,archaeology,1147449598 +59338,1321,werewolves,1147411317 +59338,1333,birds,1147411623 +59338,1333,classic,1147449725 +59338,1339,My DVDs,1147409567 +59338,1339,vampire,1147409564 +59338,1347,horror,1147449853 +59338,1367,Disney,1147409557 +59338,1387,animal attacks,1147409551 +59338,1387,classic,1147409549 +59338,1387,shark,1147409548 +59338,1396,computers,1147409539 +59338,1396,must show,1147409541 +59338,1513,comedy,1147450367 +59338,1513,fashion,1147450369 +59338,1527,sci-fi,1147409500 +59338,1584,outer space,1147450270 +59338,1639,romantic,1147451915 +59338,1682,TV,1147409478 +59338,1704,genius,1147409465 +59338,1732,bowling,1147411584 +59338,1747,fun,1147409473 +59338,1748,fantasy,1147409413 +59338,1748,sci-fi,1147409415 +59338,1909,aliens,1147409395 +59338,1909,conspiracy,1147409393 +59338,1909,scifi,1147449979 +59338,1953,drugs,1147409385 +59338,1953,Oscar (Best Actor),1147409387 +59338,1953,Oscar (Best Picture),1147409383 +59338,1954,boxing,1147409380 +59338,1954,Oscar (Best Picture),1147409382 +59338,1954,sports,1147409379 +59338,1968,80s,1147449577 +59338,1968,teen,1147449576 +59338,1997,possession,1147409369 +59338,1997,scary,1147450066 +59338,2019,samurai,1147410629 +59338,2078,classic,1147411342 +59338,2078,Disney,1147411344 +59338,2081,Disney,1147450122 +59338,2115,action,1147449814 +59338,2115,archaeology,1147449815 +59338,2160,Antichrist,1147450161 +59338,2160,Atmospheric,1147450165 +59338,2160,satan,1147412229 +59338,2160,satanism,1147450162 +59338,2176,classic,1147411471 +59338,2183,classic,1147411686 +59338,2313,freaks,1147410490 +59338,2324,holocaust,1147409322 +59338,2324,Italian,1147409324 +59338,2329,neo Nazi,1147450547 +59338,2329,racism,1147450545 +59338,2334,terrorism,1147410489 +59338,2335,sports,1147410474 +59338,2355,animation,1147450250 +59338,2355,Disney,1147450251 +59338,2355,Pixar,1147450249 +59338,2366,action,1147411631 +59338,2366,adventure,1147411634 +59338,2366,classic,1147411632 +59338,2398,Christmas,1147411434 +59338,2398,classic,1147411437 +59338,2398,Santa Claus,1147411438 +59338,2412,boxing,1147410440 +59338,2423,christmas,1147410438 +59338,2423,humor,1147410436 +59338,2431,doctors,1147410419 +59338,2455,better than the old version,1147449777 +59338,2571,sci-fi,1147412431 +59338,2572,romantic,1147409266 +59338,2572,teen,1147409264 +59338,2617,mummy,1147409269 +59338,2628,fantasy,1147450379 +59338,2640,comic book,1147409274 +59338,2640,fantasy,1147449926 +59338,2640,superhero,1147409272 +59338,2716,ghosts,1147412679 +59338,2717,comedy,1147410370 +59338,2717,Ghosts,1147410372 +59338,2728,Rome,1147449915 +59338,2762,ghosts,1147450188 +59338,2791,aviation,1147450018 +59338,2797,1980s,1147409276 +59338,2797,family,1147409278 +59338,2858,surrealism,1147412801 +59338,2908,Drama,1147410356 +59338,2908,gay,1147410354 +59338,2918,80s,1147449775 +59338,2918,teen,1147449773 +59338,2919,journalism,1147410349 +59338,2948,007,1147410328 +59338,2951,spaghetti western,1147450771 +59338,2959,surreal,1147449590 +59338,2959,violence,1147409279 +59338,2997,surreal,1147450243 +59338,2997,surrealism,1147450240 +59338,3000,anime,1147450725 +59338,3030,samurai,1147410640 +59338,3033,spoof,1147409284 +59338,3061,Christmas,1147411498 +59338,3061,classic,1147411503 +59338,3061,holiday,1147411500 +59338,3081,Dark,1147449678 +59338,3114,cgi,1147412469 +59338,3114,Disney,1147412468 +59338,3114,Pixar,1147412466 +59338,3114,very good but the first was better,1147450201 +59338,3175,spoof,1147409285 +59338,3273,slasher,1147410251 +59338,3363,teen,1147450020 +59338,3409,premonition,1147449159 +59338,3424,racism,1147410227 +59338,3441,war,1147410200 +59338,3471,aliens,1147450264 +59338,3508,classic,1147410170 +59338,3508,western,1147410169 +59338,3617,funny,1147449643 +59338,3617,road trip,1147449642 +59338,3623,action,1147408934 +59338,3623,Great Actions,1147449839 +59338,3639,007,1147410134 +59338,3717,cars,1147410089 +59338,3740,scifi cult,1147410084 +59338,3740,surreal,1147410086 +59338,3869,comedy,1147410046 +59338,3869,I laughed continuosly throughout this film,1147410049 +59338,3869,screwball,1147410061 +59338,3882,cheerleading,1147410028 +59338,3897,music,1147412765 +59338,3949,drugs,1147450888 +59338,3994,superhero,1147450428 +59338,3996,china,1147450058 +59338,3996,martial arts,1147409222 +59338,4014,chocolate,1147450259 +59338,4025,pageant,1147409993 +59338,4027,changed my opinion on 2nd viewing,1147449860 +59338,4226,memory,1147412455 +59338,4226,mystery,1147449612 +59338,4226,nonlinear,1147412457 +59338,4270,fun,1147412004 +59338,4270,mummy,1147412003 +59338,4306,animation,1147409191 +59338,4306,comedia,1147409194 +59338,4306,fairy tale,1147409192 +59338,4306,satire,1147450177 +59338,4310,History,1147409962 +59338,4310,War,1147409961 +59338,4344,cool,1147409951 +59338,4571,excellent!,1147409947 +59338,4571,time travel,1147409945 +59338,4718,funny,1147409918 +59338,4718,teen,1147409919 +59338,4720,ghosts,1147450355 +59338,4720,surprise ending,1147450357 +59338,4855,crime,1147479387 +59338,4878,psychology,1147449671 +59338,4878,time travel,1147449673 +59338,4886,Disney,1147450131 +59338,4886,Pixar,1147450129 +59338,4896,magic,1147409184 +59338,4963,crime,1147450143 +59338,4973,romance,1147410620 +59338,4993,fantasy,1147449825 +59338,4995,intelligent,1147409158 +59338,4995,math,1147409156 +59338,4995,Oscar (Best Picture),1147409162 +59338,4995,psychology,1147449559 +59338,4995,schizophrenia,1147449560 +59338,5010,Drama,1147450247 +59338,5266,crime,1147409888 +59338,5291,samurai,1147410643 +59338,5377,books,1147449684 +59338,5418,memory,1147449730 +59338,5418,spy,1147449728 +59338,5444,Disney,1147409874 +59338,5445,future,1147409146 +59338,5618,anime,1147450191 +59338,5669,documentary,1147409137 +59338,5669,guns,1147449570 +59338,5816,magic,1147409134 +59338,5872,007,1147409870 +59338,5902,very good,1147450233 +59338,5952,fantasy,1147449828 +59338,5989,crime,1147412708 +59338,5989,true story,1147449740 +59338,5991,murder,1147411373 +59338,5991,Oscar (Best Picture),1147411371 +59338,6016,Brazil,1147410649 +59338,6016,crime,1147450050 +59338,6016,drugs,1147410650 +59338,6058,violent,1147449161 +59338,6188,Funniest Movies,1147450153 +59338,6188,very funny,1147450155 +59338,6333,comic book,1147412440 +59338,6333,sci-fi,1147412444 +59338,6333,super-hero,1147412443 +59338,6377,animation,1147450336 +59338,6377,Disney,1147450335 +59338,6377,Pixar,1147450334 +59338,6378,remake,1147409863 +59338,6539,action,1147450359 +59338,6539,adventure,1147412537 +59338,6539,Disney,1147450361 +59338,6539,pirates,1147412536 +59338,6979,Cold War,1147449963 +59338,6979,computers,1147409845 +59338,6986,classic,1147411297 +59338,7090,amazing photography,1147449795 +59338,7090,extremely interesting. Like an ancient tragedy.,1147449800 +59338,7090,martial arts,1147449797 +59338,7147,Fantasy,1147450037 +59338,7147,surrealism,1147412719 +59338,7153,fantasy,1147449601 +59338,7153,Oscar (Best Picture),1147449603 +59338,7361,memory,1147449588 +59338,7361,surreal,1147449586 +59338,7579,classic,1147411608 +59338,8167,classic,1147411447 +59338,8360,animation,1147449902 +59338,8360,fable,1147449904 +59338,8360,fairy tale,1147449900 +59338,8376,teen,1147412111 +59338,8464,documentary,1147449921 +59338,8581,geeks,1147449629 +59338,8636,comic book,1147412542 +59338,8636,super-hero,1147412543 +59338,8874,zombies,1147450170 +59338,8958,great acting,1147449640 +59338,8961,family,1147449808 +59338,8961,Pixar,1147449804 +59338,8961,super-hero,1147449806 +59338,8983,Beautiful,1147450100 +59338,8983,martial arts,1147450097 +59338,8983,spectacular action scenes,1147450098 +59338,26242,master piece,1147412564 +59338,26242,thriller,1147449584 +59338,26865,martial arts,1147450731 +59338,27773,revenge,1147450975 +59338,27905,japanese,1147449682 +59338,30707,boxing,1147449615 +59338,30707,drama,1147449623 +59338,30707,Oscar (Best Picture),1147449620 +59338,30749,Genocide,1147411545 +59338,30749,great cast excellent,1147411547 +59338,30810,great,1147412029 +59338,30810,ocean,1147450118 +59338,31658,anime,1147450748 +59338,32587,artistic,1147412490 +59338,32587,comic book,1147412489 +59338,33437,movie to see,1147412528 +59338,33493,fantasy,1147409836 +59338,33493,sci-fi,1147450372 +59338,33493,space,1147409834 +59338,33615,funny,1147449991 +59338,33660,boxing,1147450567 +59338,33660,true story,1147450576 +59338,33794,action,1147409808 +59338,33794,dark,1147409807 +59338,33794,DC,1147449713 +59338,33794,super-hero,1147449711 +59338,33794,superheros,1147409826 +59338,34405,action,1147412308 +59338,34405,scifi,1147450556 +59338,37830,cgi,1147411011 +59338,37830,videogame,1147411010 +59338,37857,Fantasy World,1147411788 +59338,38038,rabbits,1147450212 +59338,39446,gore,1147411832 +59338,39446,needles,1147449890 +59338,40629,Classic,1147411486 +59338,40629,historic,1147449874 +59338,40815,magic,1147450082 +59338,40851,board game,1147411024 +59338,40851,outer space,1147411026 +59338,41285,interesting,1147411655 +59338,41566,fantasy,1147449741 +59338,41569,adventure,1147412578 +59338,41569,monkey,1147412580 +59338,41997,terrorism,1147412318 +59338,42011,funny,1147411847 +59338,44191,comic book,1147449668 +59338,44191,revenge,1147449670 +59362,106195,coming of age,1423975278 +59362,106195,post-apocalyptic,1423975332 +59362,106195,war,1423975304 +59364,72603,Animation,1428201516 +59364,72603,christmas,1428201495 +59364,72603,Dreamworks,1428201544 +59364,72603,Family,1428201520 +59364,72603,holiday,1428201498 +59364,72603,TV movie,1428201491 +59364,112552,Damien Chazelle,1428201593 +59364,112552,jazz,1428201628 +59364,112552,jazz music,1428201632 +59364,112552,Miles Teller,1428201605 +59364,112552,Oscars,1428201647 +59364,117590,action,1428194424 +59364,117590,comedy,1428194424 +59364,117590,crime,1428194424 +59364,128097,cynical,1428924907 +59364,128097,cynicism,1428924907 +59364,128097,dark comedy,1428924907 +59368,32,atmospheric,1424034818 +59368,32,bruce willis,1424034807 +59368,32,complicated,1424034814 +59368,32,dystopia,1424034810 +59368,32,post-apocalyptic,1424034804 +59368,32,psychology,1424034812 +59368,32,time travel,1424034801 +59368,32,twist ending,1424034803 +59368,36,dialogues,1424035033 +59368,36,rape,1424035020 +59368,47,brad pitt,1424029780 +59368,47,disturbing,1424029778 +59368,47,Kevin Spacey,1424029783 +59368,47,mystery,1424029793 +59368,47,powerful ending,1424029785 +59368,47,twist ending,1424029774 +59368,47,twists & turns,1424029791 +59368,110,action,1424028495 +59368,110,inspirational,1424028510 +59368,110,mel gibson,1424028486 +59368,110,Nudity (Topless),1424028518 +59368,110,revenge,1424028499 +59368,110,Scotland,1424028505 +59368,110,sexual violence,1424030348 +59368,110,stupid love story,1424030359 +59368,260,adventure,1424034734 +59368,260,Star Wars,1424034730 +59368,293,assassin,1424030227 +59368,293,friendship,1424030254 +59368,293,Gary Oldman,1424030232 +59368,293,great acting,1424030234 +59368,293,hitman,1424030229 +59368,293,imdb top 250,1424030264 +59368,293,Jean Reno,1424030225 +59368,293,love story,1424030238 +59368,293,Luc Besson,1424030244 +59368,293,organized crime,1424030252 +59368,293,touching,1424030248 +59368,296,assassin,1424030593 +59368,296,atmospheric,1424030610 +59368,296,bruce willis,1424030577 +59368,296,dark comedy,1424030580 +59368,296,dialogue,1424030614 +59368,296,multiple storylines,1424030584 +59368,296,nonlinear,1424030586 +59368,296,Quentin Tarantino,1424030572 +59368,296,Samuel L. Jackson,1424030574 +59368,296,stylized,1424030589 +59368,356,bittersweet,1424028430 +59368,356,comedy,1424028439 +59368,356,emotional,1424028445 +59368,356,inspirational,1424028452 +59368,356,tom hanks,1424028422 +59368,527,atmospheric,1424034202 +59368,527,black and white,1424034206 +59368,527,Ralph Fiennes,1424034226 +59368,527,Steven Spielberg,1424034191 +59368,527,thought-provoking,1424034200 +59368,541,androids,1424035512 +59368,541,atmospheric,1424035516 +59368,541,cyberpunk,1424035504 +59368,541,dreamlike,1424035528 +59368,541,dystopia,1424035506 +59368,541,neo-noir,1424035524 +59368,541,stylized,1424035514 +59368,586,childhood classics,1424031877 +59368,586,christmas,1424031871 +59368,586,family,1424031879 +59368,586,nostalgia,1424031874 +59368,593,Anthony Hopkins,1424034466 +59368,593,gothic,1424034485 +59368,593,great acting,1424034477 +59368,593,Hannibal Lecter,1424034500 +59368,593,psychology,1424034463 +59368,593,romance,1424034509 +59368,593,tense,1424034487 +59368,628,courtroom drama,1424033317 +59368,628,edward norton,1424033311 +59368,628,Richard Gere,1424033320 +59368,628,twist ending,1424033313 +59368,858,Al Pacino,1424031368 +59368,858,great acting,1424031374 +59368,858,Mafia,1424031369 +59368,858,melancholy,1424031380 +59368,858,organized crime,1424031377 +59368,858,robert de niro,1424031382 +59368,1036,action,1424034866 +59368,1036,Alan Rickman,1424034871 +59368,1036,Bruce Willis,1424034863 +59368,1036,humorous,1424034868 +59368,1036,tense,1424034875 +59368,1080,Monty Python,1424034648 +59368,1080,satire,1424034660 +59368,1088,cheesy,1424031674 +59368,1088,Patrick Swayze,1424031667 +59368,1148,claymation,1424031986 +59368,1148,Wallace & Gromit,1424031982 +59368,1196,dark,1424030655 +59368,1196,fantasy,1424030662 +59368,1196,great soundtrack,1424030643 +59368,1196,modern fantasy,1424030665 +59368,1196,space opera,1424030661 +59368,1196,Star Wars,1424030637 +59368,1220,classic,1424029226 +59368,1220,comedy,1424029237 +59368,1220,music,1424029222 +59368,1220,Neo-Nazis,1424029241 +59368,1220,notable soundtrack,1424029229 +59368,1221,Al Pacino,1424031712 +59368,1221,Mafia,1424031718 +59368,1221,Robert De Niro,1424031714 +59368,1222,anti-war,1424033845 +59368,1222,dialogue,1424033848 +59368,1233,claustrophobic,1424033514 +59368,1233,tense,1424033516 +59368,1258,atmospheric,1424029192 +59368,1258,disturbing,1424029195 +59368,1258,dreamlike,1424029201 +59368,1258,jack nicholson,1424029185 +59368,1258,psychological,1424029187 +59368,1258,Stephen King,1424029190 +59368,1265,alternate reality,1424032175 +59368,1265,Bill Murray,1424032169 +59368,1265,character development,1424032188 +59368,1265,Fantasy,1424032185 +59368,1265,original plot,1424032179 +59368,1265,surreal,1424032172 +59368,1265,time loop,1424032171 +59368,1584,first contact,1424034029 +59368,1584,inspirational,1424034026 +59368,1584,space travel,1424034037 +59368,1625,atmospheric,1424028280 +59368,1625,michael douglas,1424028277 +59368,1625,Mystery,1424028275 +59368,1625,neo-noir,1424028291 +59368,1625,psychological,1424028273 +59368,1625,twist ending,1424028271 +59368,1653,dystopia,1424033909 +59368,1653,dystopic future,1424033920 +59368,1653,future,1424033936 +59368,1653,genetics,1424033911 +59368,1653,intelligent,1424033924 +59368,1653,powerful ending,1424033914 +59368,1653,realistic sci/fi,1424033928 +59368,1653,rebellion,1424033932 +59368,1653,thought-provoking,1424033917 +59368,1676,military,1424030719 +59368,1676,Neil Patrick Harris,1424030736 +59368,1676,satire,1424030703 +59368,1676,social commentary,1424030710 +59368,1682,alternate reality,1424035263 +59368,1682,dreamlike,1424035268 +59368,1682,dystopia,1424035260 +59368,1682,Jim Carrey,1424035254 +59368,1682,paranoia,1424035270 +59368,1682,stylized,1424035265 +59368,1682,surreal,1424035278 +59368,2010,german expressionism,1424035474 +59368,2291,dark comedy,1424030833 +59368,2291,dreamlike,1424030840 +59368,2291,fairy tale,1424030838 +59368,2291,Gothic,1424030835 +59368,2291,Johnny Depp,1424030828 +59368,2291,love story,1424030852 +59368,2291,modern fantasy,1424030845 +59368,2291,surreal,1424030832 +59368,2291,Tim Burton,1424030830 +59368,2329,edward norton,1424030762 +59368,2329,Neo-Nazis,1424030772 +59368,2329,racism,1424030765 +59368,2329,skinhead,1424030770 +59368,2329,thought-provoking,1424030767 +59368,2329,violence,1424030807 +59368,2539,mafia,1424031832 +59368,2539,Robert De Niro,1424031834 +59368,2541,manipulation,1424034134 +59368,2541,Mind Games,1424034139 +59368,2541,Seduction,1424034141 +59368,2571,alternate reality,1424033781 +59368,2571,atmospheric,1424033791 +59368,2571,cyberpunk,1424033770 +59368,2571,dystopia,1424033768 +59368,2571,fight scenes,1424033797 +59368,2571,hackers,1424033800 +59368,2571,Keanu Reeves,1424033778 +59368,2571,post apocalyptic,1424033784 +59368,2571,sci-fi,1424033764 +59368,2571,stylized,1424033786 +59368,2571,surreal,1424033772 +59368,2571,thought-provoking,1424033788 +59368,2571,virtual reality,1424033766 +59368,2571,Wachowski Brothers,1424033803 +59368,2692,alternate endings,1424035064 +59368,2692,artistic,1424035068 +59368,2692,intense,1424035070 +59368,2692,surreal,1424035066 +59368,2692,thought-provoking,1424035073 +59368,2700,satire,1424031909 +59368,2858,bittersweet,1424030406 +59368,2858,dark comedy,1424030389 +59368,2858,great acting,1424030401 +59368,2858,kevin spacey,1424030391 +59368,2858,loneliness,1424030427 +59368,2858,multiple storylines,1424030430 +59368,2858,surrealism,1424030393 +59368,2959,dark comedy,1424030154 +59368,2959,Edward Norton,1424030150 +59368,2959,narrated,1424030168 +59368,2959,psychology,1424030152 +59368,2959,social commentary,1424030160 +59368,2959,surreal,1424030162 +59368,2959,thought-provoking,1424030165 +59368,2959,twist ending,1424030148 +59368,3020,Crazy,1424030016 +59368,3020,dark comedy,1424030001 +59368,3020,Michael Douglas,1424029989 +59368,3173,Al Pacino,1424032273 +59368,3173,American football,1424032268 +59368,3173,gore,1424032281 +59368,3535,Christian Bale,1424031283 +59368,3535,dark comedy,1424031287 +59368,3861,American football,1424030492 +59368,3861,comedy,1424030521 +59368,3861,Keanu Reeves,1424030501 +59368,3863,alternate reality,1424032222 +59368,3863,atmospheric,1424032228 +59368,3863,dreamlike,1424032238 +59368,3863,dreams,1424032236 +59368,3863,gore,1424032231 +59368,3863,stylized,1424032224 +59368,3863,surreal,1424032219 +59368,3863,virtual reality,1424032227 +59368,3868,Leslie Nielsen,1424029901 +59368,3868,parody,1424029902 +59368,3868,slapstick,1424029905 +59368,3916,american football,1424031044 +59368,3916,good story,1424031053 +59368,3916,inspirational,1424031064 +59368,3916,inspiring,1424031056 +59368,3916,racism,1424031046 +59368,3968,Brendan Fraser,1424032970 +59368,3968,what if,1424032976 +59368,3999,stupid characters,1424031433 +59368,4387,action,1424031756 +59368,4387,Jet Li,1424031753 +59368,4643,dystopia,1424031599 +59368,4643,evolution,1424031598 +59368,4643,post-apocalyptic,1424031595 +59368,4643,rebellion,1424031608 +59368,4643,remake,1424031604 +59368,4878,dreamlike,1424028167 +59368,4878,mindfuck,1424028189 +59368,4878,mystery,1424028192 +59368,4878,surreal,1424028159 +59368,4878,thought-provoking,1424028162 +59368,4878,time travel,1424028145 +59368,4878,twist ending,1424028179 +59368,4963,ensemble cast,1424032631 +59368,4963,feel good movie,1424032629 +59368,4963,heist,1424032621 +59368,4993,Adventure,1424031236 +59368,4993,atmospheric,1424031239 +59368,4993,beautifully filmed,1424031242 +59368,4993,ensemble cast,1424031249 +59368,4993,fantasy,1424031221 +59368,4993,high fantasy,1424031224 +59368,5094,remake,1424029965 +59368,5418,action,1424031947 +59368,5418,assassin,1424031949 +59368,5418,conspiracy,1424031952 +59368,5418,espionage,1424031943 +59368,5418,spy,1424031945 +59368,5502,Alien Invasion,1424033970 +59368,5502,atmospheric,1424033978 +59368,5502,m. night shyamalan,1424033967 +59368,5502,Mel Gibson,1424033974 +59368,5502,tense,1424033982 +59368,5522,dystopia,1424029934 +59368,5541,Charlie Sheen,1424031189 +59368,5541,parody,1424031190 +59368,5541,slapstick,1424031202 +59368,5903,bullet ballet,1424033018 +59368,5903,Christian Bale,1424033001 +59368,5903,dystopia,1424032997 +59368,5903,gun fu,1424033022 +59368,5903,post-apocalyptic,1424033003 +59368,5903,revolution,1424033015 +59368,5903,thought-provoking,1424033006 +59368,5903,totalitarianism,1424032999 +59368,5952,ensemble cast,1424031791 +59368,5952,fantasy,1424031779 +59368,5952,high fantasy,1424031782 +59368,6281,Colin Farrell,1424033674 +59368,6281,dialogue driven,1424033676 +59368,6287,Adam SAndler,1424031337 +59368,6287,Jack Nicholson,1424031335 +59368,6287,twist ending,1424031351 +59368,6874,assassin,1424032586 +59368,6874,dark hero,1424032579 +59368,6874,Quentin Tarantino,1424032556 +59368,6874,rape,1424032589 +59368,6874,revenge,1424032573 +59368,6874,stylized,1424032577 +59368,7090,amazing photography,1424034318 +59368,7090,Beautiful,1424034336 +59368,7090,China,1424034324 +59368,7090,cinematography,1424034340 +59368,7090,Jet Li,1424034329 +59368,7090,martial arts,1424034315 +59368,7090,visually appealing,1424034320 +59368,7147,adventure,1424033884 +59368,7147,bittersweet,1424033878 +59368,7147,dreamlike,1424033873 +59368,7147,reflective,1424033887 +59368,7147,surreal,1424033876 +59368,7147,surrealism,1424033881 +59368,7361,alternate reality,1424033735 +59368,7361,bittersweet,1424033706 +59368,7361,dreamlike,1424033722 +59368,7361,imagination,1424033719 +59368,7361,jim carrey,1424033707 +59368,7361,memory,1424033715 +59368,7361,romance,1424033712 +59368,7361,surreal,1424033702 +59368,8665,amnesia,1424034080 +59368,8665,espionage,1424034074 +59368,8665,International,1424034087 +59368,8665,realistic action,1424034084 +59368,8665,spy,1424034076 +59368,26294,Terence Hill,1424035117 +59368,30793,fantasy,1424029827 +59368,30793,Johnny Depp,1424029823 +59368,30793,quirky,1424029832 +59368,32587,Action,1424028708 +59368,32587,artistic,1424028704 +59368,32587,atmospheric,1424028696 +59368,32587,black comedy,1424028700 +59368,32587,Bruce Willis,1424028697 +59368,32587,comic book,1424028694 +59368,32587,Frank Miller,1424028715 +59368,32587,multiple storylines,1424028688 +59368,32587,Neo-noir,1424029163 +59368,32587,Quentin Tarantino,1424028692 +59368,32587,revenge,1424028731 +59368,32587,romance,1424029165 +59368,32587,stylized,1424028690 +59368,32587,superhero,1424028751 +59368,32587,surrealism,1424028706 +59368,33493,dark,1424029097 +59368,33493,Hayden Christensen,1424029105 +59368,33493,prequel,1424029117 +59368,33493,Star Wars,1424029094 +59368,37729,black comedy,1424034945 +59368,37729,dark,1424034948 +59368,37729,gothic,1424034940 +59368,37729,visually appealing,1424034942 +59368,37731,extremely violent,1424032804 +59368,37731,gang brawls,1424032815 +59368,37731,skin heads,1424032827 +59368,37731,sub culture,1424032843 +59368,38038,claymation,1424032025 +59368,38038,comedy,1424032032 +59368,38038,Wallace & Gromit,1424032030 +59368,44191,comic book,1424028599 +59368,44191,dark,1424028611 +59368,44191,dystopia,1424028594 +59368,44191,Hugo Weaving,1424028632 +59368,44191,inspirational,1424028605 +59368,44191,revenge,1424028607 +59368,44191,romance,1424028646 +59368,44191,super-hero,1424028621 +59368,44191,thought-provoking,1424028597 +59368,48385,controversial,1424032455 +59368,48385,mockumentary,1424032526 +59368,48385,Sacha Baron Cohen,1424032524 +59368,48385,satire,1424032453 +59368,48385,social commentary,1424032458 +59368,48394,atmospheric,1424033348 +59368,48394,bittersweet,1424033351 +59368,48394,brutality,1424033365 +59368,48394,dark,1424033362 +59368,48394,fantasy,1424033353 +59368,48394,gore,1424033368 +59368,48394,stylized,1424033356 +59368,48394,surreal,1424033346 +59368,48394,torture,1424033371 +59368,48394,visually appealing,1424033360 +59368,49272,action,1424035190 +59368,49272,espionage,1424035185 +59368,49272,James Bond,1424035183 +59368,49272,poker,1424035188 +59368,50872,cooking,1424033172 +59368,50872,pixar,1424033168 +59368,51662,action,1424033407 +59368,51662,artistic,1424033417 +59368,51662,atmospheric,1424033391 +59368,51662,comic book,1424033394 +59368,51662,rape,1424033397 +59368,51662,stylized,1424033389 +59368,51662,sword fight,1424033406 +59368,55442,animation,1424032901 +59368,55442,black and white,1424032905 +59368,55442,politics,1424032899 +59368,55442,punk,1424032910 +59368,55442,revolution,1424032914 +59368,55442,social commentary,1424032903 +59368,56757,dark comedy,1424029438 +59368,56757,gothic,1424029441 +59368,56757,Johnny Depp,1424029427 +59368,56757,Musical,1424029434 +59368,56757,Sacha Baron Cohen,1424029452 +59368,56757,Tim Burton,1424029429 +59368,57669,assassin,1424027844 +59368,57669,atmospheric,1424027938 +59368,57669,black comedy,1424027833 +59368,57669,dark comedy,1424027820 +59368,57669,hitman,1424027824 +59368,57669,imdb top 250,1424027934 +59368,57669,Ralph Fiennes,1424027862 +59368,57669,twist ending,1424027947 +59368,60069,dystopia,1424028933 +59368,60069,inspirational,1424029047 +59368,60069,pixar,1424028931 +59368,60069,Post apocalyptic,1424029036 +59368,60069,robots,1424029050 +59368,60684,alternate reality,1424030287 +59368,60684,comic book,1424030285 +59368,60684,dystopia,1424030281 +59368,60684,sexual violence,1424030307 +59368,60684,storytelling,1424030294 +59368,60684,stylized,1424030291 +59368,60684,superhero,1424030283 +59368,61240,atmospheric,1424029626 +59368,61240,slow,1424029619 +59368,61240,strange,1424029630 +59368,61240,vampire,1424029510 +59368,61240,vampires,1424029508 +59368,63082,bollywood,1424032415 +59368,63082,destiny,1424032426 +59368,63082,dreamlike,1424032420 +59368,63082,nonlinear,1424032411 +59368,63082,social commentary,1424032412 +59368,68157,alternate history,1424029289 +59368,68157,black comedy,1424029282 +59368,68157,Christoph Waltz,1424029284 +59368,68157,dark comedy,1424029286 +59368,68157,dialogue,1424029319 +59368,68157,Diane Kruger,1424029300 +59368,68157,great acting,1424029317 +59368,68157,Michael Fassbender,1424029321 +59368,68157,Nazis,1424029276 +59368,68157,Quentin Tarantino,1424029271 +59368,68157,satire,1424029279 +59368,68157,slow paced,1424029304 +59368,68157,unusual plot structure,1424029311 +59368,69951,alternate reality,1424033074 +59368,69951,Colin Farrell,1424033076 +59368,69951,deal with the devil,1424033070 +59368,69951,devil,1424033079 +59368,69951,fantasy,1424033072 +59368,69951,imaginative,1424033082 +59368,69951,immortality,1424033068 +59368,69951,surreal,1424033062 +59368,72641,American Football,1424033130 +59368,72641,feel good,1424033132 +59368,72641,inspirational,1424033135 +59368,72641,Sandra Bullock,1424033125 +59368,72641,touching,1424033143 +59368,79091,anti-hero,1424029869 +59368,79091,heartwarming,1424029858 +59368,79091,mad scientist,1424029860 +59368,79091,minions,1424029871 +59368,79091,orphans,1424029867 +59368,79091,pixar,1424029864 +59368,79132,alternate reality,1424028330 +59368,79132,Christopher Nolan,1424028355 +59368,79132,dreamlike,1424028339 +59368,79132,fantasy,1424028369 +59368,79132,Michael Caine,1424028361 +59368,79132,surreal,1424028332 +59368,79132,visually appealing,1424028375 +59368,81591,atmospheric,1424032057 +59368,81591,ballet,1424032065 +59368,81591,dark,1424032062 +59368,81591,psychological,1424032059 +59368,81591,surreal,1424032068 +59368,85510,abuse,1424032110 +59368,85510,lobotomy,1424032101 +59368,85510,Rape Culture,1424032116 +59368,85510,reality or imagination?,1424032108 +59368,85510,stylized,1424032098 +59368,85510,Surreal,1424032096 +59368,89745,comic book,1424030094 +59368,89745,Joss Whedon,1424030097 +59368,89745,Marvel,1424030088 +59368,89745,MCU,1424030086 +59368,89745,Robert Downey Jr.,1424030077 +59368,89745,Samuel L. Jackson,1424030105 +59368,89745,superhero,1424030078 +59368,89745,Tom Hiddleston,1424030115 +59368,89745,visually appealing,1424030095 +59368,90866,clockwork devices,1424032351 +59368,90866,fantasy,1424032347 +59368,90866,heartwarming,1424032353 +59368,90866,Sacha Baron Cohen,1424032344 +59368,90866,visually appealing,1424032343 +59368,91529,Batman,1424030975 +59368,91529,Christian Bale,1424030972 +59368,91529,dark hero,1424031000 +59368,91529,ending,1424031007 +59368,91529,Gary Oldman,1424030984 +59368,91529,intense,1424031017 +59368,91529,Joseph Gordon-Levitt,1424030980 +59368,91529,Michael Caine,1424030982 +59368,91529,non comprehensive characters,1424030969 +59368,91529,political commentary,1424031014 +59368,91529,superhero,1424030978 +59368,91529,Tom Hardy,1424031002 +59368,92259,emotional,1424034424 +59368,92259,feel good movie,1424034417 +59368,92259,friendship,1424034414 +59368,92259,touching,1424034420 +59368,95510,Andrew Garfield,1424032762 +59368,95510,Marvel,1424032765 +59368,95510,superhero,1424032775 +59368,97752,atmospheric,1424028010 +59368,97752,dystopia,1424028015 +59368,97752,great acting,1424028028 +59368,97752,multiple roles,1424028026 +59368,97752,multiple storylines,1424028008 +59368,97752,rebellion,1424028021 +59368,99114,Christoph Waltz,1424034547 +59368,99114,Great performances,1424034575 +59368,99114,Jamie Foxx,1424034572 +59368,99114,Quentin Tarantino,1424034545 +59368,99114,Revenge,1424034554 +59368,99114,western,1424034561 +59368,102903,illusions,1424034368 +59368,102903,magic,1424034365 +59368,106072,Joss Whedon,1424031116 +59368,106072,Marvel Cinematic Universe,1424031087 +59368,106072,MCU,1424031096 +59368,106072,superhero,1424031083 +59368,106072,Tom Hiddleston,1424031099 +59368,112852,Chris Pratt,1424031154 +59368,112852,fantasy,1424031159 +59368,112852,great soundtrack,1424031139 +59368,112852,Marvel,1424031141 +59368,112852,Marvel Cinematic Universe,1424031136 +59368,112852,space opera,1424031163 +59368,112852,talking animals,1424031147 +59368,112852,Teamwork,1424031155 +59368,112852,Vin Diesel,1424031150 +59368,113573,comic book,1424028830 +59368,113573,Frank Miller,1424028827 +59368,113573,neo-noir,1424029142 +59368,113573,stylized,1424028844 +59368,118189,Bud Spencer,1424032703 +59368,118189,Terence Hill,1424032711 +59385,2420,mentor,1415297503 +59385,90127,action,1421344945 +59385,90127,police corruption,1421344945 +59385,90127,thriller,1421344945 +59385,95167,charming,1354012461 +59385,95167,predictable,1354012444 +59385,95167,visuals,1354012453 +59422,1479,adventure,1242808358 +59430,1923,Ben Stiller,1317559824 +59430,1923,Farrelly Brothers,1317559819 +59430,1923,hilarious,1317559810 +59430,1923,Matt Dillon,1317559827 +59430,4238,Morgan Freeman,1317560034 +59430,44199,bank robbery,1317560240 +59430,44199,Clive Owen,1317560237 +59430,44199,Denzel Washington,1317560235 +59430,44199,intelligent thriller,1317560234 +59430,44199,twist ending,1317560241 +59430,87869,actually funny,1317559752 +59430,87869,black comedy,1317559729 +59430,87869,Excessively talky,1317559756 +59430,87869,jason bateman,1317559737 +59430,87869,Jennifer Aniston,1317559768 +59430,92420,clever,1338495429 +59430,92420,coming of age,1338495426 +59430,92420,supernatural powers,1338495421 +59430,92420,teenage angst,1338495433 +59431,5312,Ryan Gosling,1208709469 +59453,356,family,1435521935 +59453,356,feel-good,1435521935 +59453,356,must see,1435521935 +59489,8273,Penelope Cruz,1205255277 +59493,5418,want to see again,1196737201 +59493,8665,kickass,1196737206 +59506,1682,philosophy,1447461770 +59506,1682,stylized,1447461774 +59506,2357,emotional,1447468977 +59506,2692,alternate endings,1447462537 +59506,2692,existentialism,1447462561 +59506,2692,nonlinear,1447462540 +59506,2692,original,1447462535 +59506,2692,surreal,1447462544 +59506,2692,thought-provoking,1447462566 +59506,4878,philosophy,1447462582 +59506,4878,stylized,1447462590 +59506,4878,surreal,1447462581 +59506,4963,plot twist,1447462223 +59506,6323,mystery,1448332063 +59506,6323,psychology,1448332082 +59506,6323,suspense,1448332069 +59506,6323,twist ending,1448332058 +59506,7323,East Germany,1448801427 +59506,7361,nonlinear,1447462621 +59506,7361,psychology,1447462615 +59506,7361,surreal,1447462612 +59506,7371,cult film,1447461886 +59506,7371,disturbing,1447461881 +59506,7371,philosophical,1447461890 +59506,8014,buddhism,1447456185 +59506,8014,great photograpy,1447456193 +59506,8014,reflective,1447456182 +59506,33794,dark,1447462312 +59506,33794,philosophical,1447462308 +59506,44555,Germany,1447461964 +59506,44555,suspense,1447461969 +59506,53996,sexist,1447468837 +59506,58559,Atmospheric,1447462270 +59506,58559,psychology,1447462274 +59506,58559,thriller,1447462286 +59506,64614,morality,1450038882 +59506,78349,dialogue driven,1450039049 +59506,78349,psychological,1450039054 +59506,79357,nonlinear,1447462641 +59506,79357,philosophy,1447462648 +59506,79357,surreal,1447462644 +59506,79702,funny,1447514724 +59506,79702,stylized,1447514716 +59506,79702,visually appealing,1447514719 +59506,89118,identity,1448801702 +59506,89759,Iran,1447461996 +59506,89759,realism,1447461999 +59506,91529,dark hero,1447463076 +59506,91529,intense,1447463079 +59506,97304,suspenseful,1447553760 +59506,97304,thriller,1447553763 +59506,103228,fun,1447468786 +59506,103228,visually appealing,1447468786 +59506,104841,beautiful,1453674866 +59506,104841,cinematography,1453674855 +59506,104841,intense,1453674858 +59506,104841,space,1453674838 +59506,104841,visually appealing,1453674853 +59506,107406,poor plot,1447462794 +59506,112183,cinematography,1447462906 +59506,112183,dark,1447462907 +59506,112552,motivation,1447462879 +59506,116897,dark humor,1449537122 +59506,119145,british comedy,1447462170 +59506,119145,Parody,1447462167 +59506,122882,non-stop,1447462738 +59506,122882,visually appealing,1447462748 +59506,122886,space,1452554036 +59524,57370,Katie Holmes,1219438231 +59554,132622,8,1440817412 +59578,92079,bbc produced,1432948306 +59578,92079,history,1432948306 +59578,92079,holocaust,1432948306 +59601,8784,coming of age,1347799561 +59601,8784,directorial debut,1347799564 +59601,8784,Great Soundtrack,1347799557 +59601,8784,Natalie Portman,1347799559 +59601,8784,quirky romantic,1347799568 +59601,8784,wired 50 greatest soundtracks,1347799570 +59601,8784,Zach Braff,1347799566 +59603,50,suspense,1419202373 +59603,50,twist ending,1419202370 +59603,1203,courtroom,1419202280 +59603,1203,courtroom drama,1419202276 +59603,1203,good dialogue,1419202268 +59603,1203,social commentary,1419202307 +59603,1203,thought-provoking,1419202292 +59603,1704,genius,1419201886 +59603,1704,mathematics,1419201849 +59603,2542,dark comedy,1419202438 +59603,2542,great soundtrack,1419202462 +59603,2542,Guy Ritchie,1419202434 +59603,2542,stylish,1419202450 +59603,3005,detective,1419203331 +59603,3005,serial killer,1419203338 +59603,5319,Argentina,1420587821 +59603,5319,Ricardo Darin,1420587818 +59603,5319,scam,1420587973 +59603,5319,trick,1420588124 +59603,5319,twist ending,1420587812 +59603,6323,multiple personalities,1419203275 +59603,6323,multiple storylines,1419203282 +59603,6323,mystery,1419203260 +59603,6323,psychology,1419203262 +59603,6323,serial killer,1419203265 +59603,6323,suspense,1419203270 +59603,6323,twist ending,1419203257 +59603,6870,crime,1419250473 +59603,6870,mystery,1419250467 +59603,6870,twist ending,1419250469 +59603,51255,black comedy,1419202766 +59603,51255,british comedy,1419202766 +59603,51255,parody,1419202799 +59603,51255,Simon Pegg,1419202803 +59603,51255,twists & turns,1419202783 +59603,51540,based on a true story,1419250423 +59603,51540,detective,1419250429 +59603,51540,investigation,1419250427 +59603,51540,police,1419250424 +59603,51540,serial killer,1419250417 +59603,52604,courtroom drama,1419201799 +59603,52604,murder mystery,1419201795 +59603,52604,twist ending,1419201777 +59603,71033,Argentina,1420587721 +59603,71033,excellent acting,1420587758 +59603,71033,excellent script,1420587724 +59603,71033,revenge,1420587726 +59603,71033,Ricardo Darin,1420587740 +59603,116897,dark humor,1427945642 +59611,260,classic sci-fi,1439781816 +59611,260,franchise,1439781838 +59613,344,Dumb,1446756507 +59613,344,goofy,1446756485 +59613,344,Jim Carrey,1446756418 +59613,344,Stupid as Hell,1446756518 +59613,1527,Bruce Willis,1405866388 +59613,1527,sci-fi,1405866396 +59613,2762,twist ending,1395696176 +59613,32587,multiple storylines,1395696075 +59613,54995,zombies,1397954026 +59613,76093,animation,1398624708 +59613,78499,Tom Hanks,1398624618 +59613,81018,1950s,1398068563 +59613,81018,silent movie,1398068546 +59613,81564,superhero,1398032938 +59613,81847,animation,1398624839 +59613,83132,Anime,1406649941 +59613,83132,Studio Ghibli,1406649972 +59613,97913,animation,1399423075 +59613,97913,disney,1399423088 +59613,98491,animation,1398624531 +59613,98491,black and white,1398624541 +59613,98809,based on a book,1405866433 +59613,98809,fantasy,1405866418 +59613,103141,comedy,1398032979 +59616,4881,Coen Brothers,1226188625 +59616,5618,anime. miyazaki,1225710820 +59616,5618,fantasy,1225710792 +59658,260,good vs evil,1436539905 +59658,260,Space,1436539898 +59679,260,futuristic,1436403662 +59679,260,sci-fi,1436403649 +59689,1217,soporific,1265596163 +59756,356,bad acting,1369981098 +59756,356,dumb,1369981139 +59756,356,terrible plot,1369981119 +59756,86355,bad acting,1369980857 +59762,29,surreal,1157816050 +59762,316,space,1158238929 +59762,519,cyborgs,1158239985 +59762,1210,sci-fi,1158238768 +59762,1210,space,1158238761 +59762,1214,sci-fi,1157816426 +59762,1214,space,1157816424 +59762,1274,anime,1158239474 +59762,1274,comic book,1157816076 +59762,1748,fantasy,1157816027 +59762,1748,sci-fi,1157816023 +59762,2117,Post apocalyptic,1158239624 +59762,2985,cyborgs,1158240121 +59762,5618,anime,1157816053 +59762,5903,dystopia,1157816068 +59762,6333,comic book,1158238931 +59762,6539,adventure,1157816660 +59762,7090,martial arts,1157816324 +59762,7153,fantasy,1157627409 +59762,7482,Bruce Lee,1157816574 +59762,8253,anime,1159736100 +59762,8360,animation,1157816056 +59762,33794,dark,1158239467 +59762,34319,future,1158239452 +59762,34319,scifi,1158238921 +59762,44761,film noir,1157816480 +59785,260,epic adventure,1435089173 +59785,260,fairy tale,1435089026 +59785,260,magic,1435089182 +59785,260,space,1435089037 +59785,296,cult film,1435699917 +59785,296,gangster,1435699917 +59785,296,multiple storylines,1435699917 +59785,356,biography,1435089674 +59785,356,comedy,1435089674 +59785,356,vietnam war,1435089674 +59794,19,detective,1368363470 +59794,32,great ending,1368363442 +59794,50,excellent script,1368363290 +59794,111,masterpiece,1368363257 +59794,288,brutality,1368363398 +59794,296,masterpiece,1368363258 +59794,593,excellent script,1368363290 +59794,924,masterpiece,1368363258 +59794,1088,dancing,1368363422 +59794,1249,stylish,1368363308 +59794,1307,unlikely friendships,1368363455 +59794,1537,dancing,1368363422 +59794,2291,original,1368363179 +59794,2420,mentor,1368363236 +59794,2762,great ending,1368363442 +59794,3418,women,1368363334 +59794,3791,dancing,1368363422 +59794,5266,suspenseful,1368363386 +59794,68358,adventure,1243688637 +59794,68358,big budget,1243688693 +59794,68358,leadership,1243688664 +59794,68358,sci-fi,1243688631 +59794,68358,space,1243688654 +59794,68358,Star Trek,1243688676 +59802,260,clever names,1441899854 +59802,260,geeky,1441899868 +59805,115617,animation,1438773700 +59805,115617,robot,1438773700 +59805,115617,super-hero,1438773700 +59860,111759,Tom Cruise,1424443324 +59860,115210,Brad Pitt,1424443386 +59863,32,post-apocalyptic,1283026711 +59863,32,psychology,1283026715 +59863,32,time travel,1283026704 +59863,47,psychology,1283027605 +59863,47,serial killer,1283027602 +59863,47,twist ending,1283027609 +59863,50,Kevin Spacey,1283027517 +59863,50,twist ending,1283027522 +59863,231,Jim Carrey,1283027683 +59863,296,Quentin Tarantino,1283028089 +59863,318,twist ending,1283028121 +59863,356,Tom Hanks,1283028098 +59863,364,animation,1283027644 +59863,377,Keanu Reeves,1283027568 +59863,593,serial killer,1283028106 +59863,597,Julia Roberts,1283027670 +59863,648,espionage,1283027596 +59863,858,Mafia,1283027616 +59863,924,sci-fi,1283026889 +59863,924,space,1283026899 +59863,1196,sci-fi,1283027538 +59863,1196,space,1283027541 +59863,1197,fantasy,1283027757 +59863,1198,indiana jones,1283027582 +59863,1198,Steven Spielberg,1283027579 +59863,1291,indiana jones,1283027815 +59863,1527,Bruce Willis,1283027911 +59863,1527,sci-fi,1283027914 +59863,1580,aliens,1283027696 +59863,1617,conspiracy,1283027850 +59863,1617,Kevin Spacey,1283027847 +59863,1617,twist ending,1283027853 +59863,1704,psychology,1283027895 +59863,1704,Robin Williams,1283027899 +59863,1961,psychology,1283027926 +59863,2355,animation,1283027179 +59863,2355,Pixar,1283027173 +59863,2571,virtual reality,1283027505 +59863,2572,comedy,1283026831 +59863,2572,high school,1283026826 +59863,2572,romance,1283026835 +59863,2628,sci-fi,1283027771 +59863,2628,space,1283027775 +59863,2762,Bruce Willis,1283027655 +59863,2762,psychology,1283027659 +59863,2826,Antonio Banderas,1283026775 +59863,2826,fantasy,1283026744 +59863,2826,Michael Crichton,1283026754 +59863,2826,Myth,1283026749 +59863,2858,dark comedy,1283027553 +59863,2959,dark comedy,1283027724 +59863,2959,psychology,1283027727 +59863,2959,surreal,1283027731 +59863,3578,Rome,1283027798 +59863,4993,based on a book,1283027745 +59863,4993,fantasy,1283027740 +59863,5952,fantasy,1283027829 +59863,5954,Edward Norton,1283026969 +59863,6502,sci-fi,1283026988 +59863,6953,psychological,1283026939 +59863,35836,comedy,1283027092 +59863,51662,comic book,1283027040 +59863,72378,John Cusack,1283026910 +59875,1046,adolescent gays,1179088733 +59875,1046,Gay,1179088742 +59875,1046,london,1179088739 +59875,7615,Homosexuality,1179061267 +59894,6711,overrated,1195175702 +59904,1100,action,1188320722 +59904,1100,car,1188320722 +59904,1100,Tom Cruise,1188320722 +59904,1298,guitar,1188320615 +59904,1298,music,1188320615 +59904,1298,pinkfloyd,1188320615 +59904,1298,rock,1188320615 +59904,1556,Keanu Reeves,1188320811 +59904,1556,speed,1188320811 +59904,2384,animation,1188320755 +59904,2384,babe,1188320755 +59904,2384,children,1188320755 +59904,2384,comedy,1188320755 +59904,2384,pg,1188320755 +59904,2409,balboa,1188320787 +59904,2409,boxing,1188320787 +59904,2409,rocky,1188320787 +59904,2409,Sylvester Stallone,1188320787 +59904,6373,bruce,1188320680 +59904,6373,comedy,1188320680 +59904,6373,Jim Carrey,1188320680 +59904,8798,action,1188320699 +59904,8798,arnold,1188320699 +59904,8798,drama,1188320700 +59904,8798,governator,1188320699 +59916,1732,https://movielens.org/explore?tag=coen%20brothers&sortBy=tagScore,1433890948 +59935,276,Boy,1187035903 +59935,276,Family,1187035903 +59935,276,Matchmaking,1187035903 +59935,276,Prostitution,1187035903 +59935,276,Treehouse,1187035903 +59935,1587,comic book,1187036052 +59935,2405,river,1187036090 +59935,2478,compadres,1187036035 +59935,2872,sword,1187036067 +59935,2953,comedy,1187036083 +59935,3362,bank robbery,1187036061 +59935,3967,Friendship Between Boys,1187035823 +59935,3967,Gay Character,1187035823 +59935,3967,Inspiration,1187035823 +59935,3967,London,1187035823 +59935,3967,Motivation,1187035823 +59935,4270,Architecture,1187035945 +59935,4270,Art,1187035945 +59935,4270,No Opening Credits,1187035945 +59935,4270,Sword And Fantasy,1187035945 +59935,4270,Tommy Gun,1187035945 +59935,4367,game,1187036096 +59935,4975,Death,1187036000 +59935,4975,No Opening Credits,1187036000 +59935,4975,No Title At Beginning,1187036000 +59935,4975,Remake,1187036000 +59935,4975,Skyscraper,1187036000 +59935,8622,Documentary,1187035731 +59935,8622,Michael Moore,1187035760 +59946,198,Angela Bassett,1442366382 +59946,198,cyberpunk,1442366361 +59946,198,Ralph Fiennes,1442366376 +59946,198,sci-fi,1442366371 +59946,198,Science Fiction,1442366367 +59946,198,virtual reality,1442366398 +59946,79592,buddy movie,1442426666 +59946,93510,drugs,1442367447 +59946,93510,funny,1442367452 +59946,93510,meta,1442367456 +59946,93510,self-aware,1442367458 +59946,107406,dystopian,1442366433 +59946,107406,post-apocalyptic,1442366429 +59946,107406,surreal,1442366440 +59946,112138,meta,1442426643 +59946,112138,Self-referential,1442426637 +59970,6,imdb top 250,1344510057 +59970,6,Natalie Portman,1344510060 +59970,6,Val Kilmer,1344510064 +59970,94,friendship relations,1343004751 +59970,94,Natalie Portman,1343004743 +59970,208,adventure,1333321581 +59970,208,Kevin Costner,1333321578 +59970,208,post-apocalyptic,1333321574 +59970,208,survival,1333321588 +59970,266,Brad Pitt,1342344537 +59970,266,emotional,1342344539 +59970,266,great acting,1342344533 +59970,266,intense,1342344550 +59970,266,Oscar (Best Cinematography),1342344545 +59970,266,Romance,1342344543 +59970,293,friendship,1342946193 +59970,293,Gary Oldman,1342946183 +59970,293,great acting,1342946166 +59970,293,Jean Reno,1342946173 +59970,293,love story,1342946197 +59970,293,Natalie Portman,1342946169 +59970,296,john travolta,1426920988 +59970,296,quentin tarantino,1426920988 +59970,296,samuel l. jackson,1426920988 +59970,333,Chris Farley,1344928202 +59970,333,Funniest Movies,1344928204 +59970,333,Tom Cruise,1344928197 +59970,333,very funny,1344928209 +59970,368,Mel Gibson,1344927909 +59970,628,Edward Norton,1343557179 +59970,628,thought-provoking,1343557182 +59970,736,Philip Seymour Hoffman,1333322134 +59970,736,unintentionally funny,1333322141 +59970,1101,AFI 100 (Movie Quotes),1344928334 +59970,1101,Oscar Winner,1344928322 +59970,1101,Tom Cruise,1344928324 +59970,1101,Val Kilmer,1344928327 +59970,1101,wired 50 greatest soundtracks,1344928330 +59970,1214,outdated,1341018312 +59970,1214,Ridley Scott,1341018222 +59970,1608,Gary Oldman,1343173620 +59970,1608,Harrison Ford,1343173618 +59970,2000,Buddy movie,1333432390 +59970,2000,Mel Gibson,1333432383 +59970,2231,Edward Norton,1343998043 +59970,2231,Matt Damon,1343998046 +59970,2236,sentimental,1343640462 +59970,2236,tear jerker,1343640447 +59970,2324,bittersweet,1344927716 +59970,2324,comedy,1344927719 +59970,2324,emotional,1344927723 +59970,2324,foreign language,1344927739 +59970,2324,poignant,1344927743 +59970,2329,Edward Norton,1343115154 +59970,2329,thought-provoking,1343115162 +59970,2340,Anthony Hopkins,1343399420 +59970,2340,Brad Pitt,1343368811 +59970,2478,humorous,1342484001 +59970,2478,Martin Short,1342483995 +59970,2617,Rachel Weisz,1344594949 +59970,2701,Will Smith,1343174772 +59970,2716,AFI 100 (Laughs),1333322225 +59970,2716,Bill Murray,1333322216 +59970,2716,comedy,1333322222 +59970,2716,ghosts,1333322219 +59970,2716,paranormal,1333322231 +59970,2716,quotable,1333322229 +59970,2797,AFI 100 (Laughs),1344927465 +59970,2797,Tom Hanks,1344927458 +59970,2959,Brad Pitt,1344928490 +59970,2959,dark comedy,1344928481 +59970,2959,Edward Norton,1344928484 +59970,2959,philosophy,1344928487 +59970,3565,Ashley Judd,1343640417 +59970,3565,Natalie Portman,1343640420 +59970,3565,social commentary,1343640423 +59970,3624,Owen Wilson,1344927937 +59970,4776,denzel washington,1333432482 +59970,4776,Oscar (Best Actor),1333432487 +59970,4901,Brad Pitt,1333321041 +59970,4975,Tom Cruise,1344777666 +59970,5378,adventure,1333321366 +59970,5378,alien,1333321370 +59970,5378,heroism,1333321383 +59970,5378,Natalie Portman,1333321361 +59970,5378,romance,1333321376 +59970,5418,adapted from:book,1333321087 +59970,5418,assassin,1333321082 +59970,5418,Matt Damon,1333321069 +59970,5445,dystopia,1342484528 +59970,5445,Steven Spielberg,1342484524 +59970,5445,Tom Cruise,1342484526 +59970,5463,Christian Bale,1333321605 +59970,5463,dragons,1333321608 +59970,5463,Matthew McConaughey,1333321609 +59970,5463,Post apocalyptic,1333321611 +59970,5464,Tom Hanks,1342490223 +59970,5903,Christian Bale,1341216276 +59970,5903,revolution,1341216281 +59970,6879,Rachel Weisz,1344594971 +59970,7143,historical,1333334492 +59970,7143,Honor,1333334489 +59970,7143,intense,1333334484 +59970,7143,rebellion,1333334495 +59970,7143,Tom Cruise,1333334486 +59970,7162,great acting,1342513313 +59970,7162,Jude Law,1342513291 +59970,7162,Natalie Portman,1342513274 +59970,7162,Renee Zellweger,1342513285 +59970,7454,Hugh Jackman,1339468209 +59970,8371,shallow plot,1333321443 +59970,8371,Vin Diesel,1333321437 +59970,8644,dystopia,1333321512 +59970,8644,funny,1333321514 +59970,8644,thought provoking,1333321519 +59970,8644,Will Smith,1333321507 +59970,8784,Great Soundtrack,1333323688 +59970,8784,Natalie Portman,1333323682 +59970,8784,wired 50 greatest soundtracks,1333323692 +59970,8981,Clive Owen,1343640573 +59970,8981,good acting,1343640585 +59970,8981,Jude Law,1343640564 +59970,8981,Natalie Portman,1343640562 +59970,8981,romance,1343640581 +59970,8984,Brad Pitt,1339468168 +59970,8984,George Clooney,1339468170 +59970,8984,Matt Damon,1339468173 +59970,27821,Nicole Kidman,1333321162 +59970,27821,Sean Penn,1333321166 +59970,32587,Bruce Willis,1345198444 +59970,32587,comic book,1345198439 +59970,32587,disturbing,1345198428 +59970,32587,imdb top 250,1345198450 +59970,33493,great soundtrack,1342480984 +59970,33493,Natalie Portman,1333321407 +59970,34162,Owen Wilson,1333322315 +59970,34162,Vince Vaughn,1333322312 +59970,34162,Will Ferrell,1333322313 +59970,34319,dystopia,1333321538 +59970,34319,freedom,1333321547 +59970,34319,Steve Buscemi,1333321550 +59970,35836,homophobia,1333322372 +59970,35836,Paul Rudd,1333322367 +59970,35836,romance,1333322376 +59970,35836,Seth Rogen,1333322361 +59970,35836,Steve Carell,1333322359 +59970,44191,dystopia,1333321211 +59970,44191,England,1333321238 +59970,44191,imdb top 250,1333321220 +59970,44191,Natalie Portman,1333321207 +59970,44191,prison,1333321203 +59970,44191,revenge,1333321200 +59970,44191,thought-provoking,1333321214 +59970,44199,Denzel Washington,1333432529 +59970,46578,comedy,1341129241 +59970,46578,inspirational,1341129236 +59970,46970,Sacha Baron Cohen,1339468196 +59970,46970,Will Ferrell,1339468192 +59970,46976,touching,1333323716 +59970,46976,Will Ferrell,1333323714 +59970,51935,Kate Mara,1339467584 +59970,51935,revenge,1339467589 +59970,52604,Anthony Hopkins,1343639950 +59970,52604,Ryan Gosling,1343639941 +59970,54281,Anton Yelchin,1354320797 +59970,54281,Robert Downey Jr.,1354320801 +59970,54503,hilarious,1333322391 +59970,54503,Michael Cera,1333322385 +59970,54503,Seth Rogen,1333322386 +59970,55247,coming of age,1333323592 +59970,55247,great soundtrack,1333323590 +59970,55247,imdb top 250,1333323580 +59970,55247,Nudity (Full Frontal),1333323576 +59970,55247,Nudity (Topless - Notable),1333323578 +59970,55363,Brad Pitt,1343988671 +59970,55363,excellent soundscore,1343988685 +59970,55363,movielens top pick,1343988681 +59970,55363,Sam Rockwell,1343988676 +59970,55765,Denzel Washington,1333432460 +59970,55765,Ridley Scott,1333432461 +59970,55765,Russell Crowe,1333432458 +59970,55908,Excellent use of dialogue,1344509520 +59970,55908,thought-provoking,1344509525 +59970,55908,Underrated,1344509530 +59970,57669,imdb top 250,1340975009 +59970,58998,good dialogue,1333322468 +59970,60753,prison,1342783247 +59970,60753,Val Kilmer,1342783244 +59970,61255,Rainn Wilson,1341551199 +59970,63072,Charlize Theron,1343175094 +59970,63072,Soundtrack,1343175108 +59970,63072,survival,1343175106 +59970,63072,Viggo Mortensen,1343175095 +59970,64839,love story,1357255040 +59970,64839,relationships,1357255044 +59970,64839,sports,1357255049 +59970,64839,touching,1357255031 +59970,67087,Jason Segel,1333322485 +59970,67087,Paul Rudd,1333322489 +59970,67734,Bill Hader,1354320774 +59970,67734,Jesse Eisenberg,1354320770 +59970,67734,Kristen Stewart,1354320769 +59970,67734,Romance,1354320777 +59970,67784,Kristen Stewart,1354320741 +59970,67784,sweet,1354320743 +59970,68237,great soundtrack,1344509581 +59970,68237,Sam Rockwell,1344509566 +59970,70286,heartbreaking,1333321286 +59970,70286,IMDB Top 250,1333321278 +59970,70286,intelligent,1333321281 +59970,70286,justice,1333321284 +59970,70286,peter jackson,1333321276 +59970,71535,Bill Murray,1341551144 +59970,71535,dark comedy,1341551141 +59970,71535,emma stone,1341551151 +59970,72011,George Clooney,1333323636 +59970,72011,Nudity (Rear),1333323638 +59970,72605,Natalie Portman,1342480950 +59970,72998,imdb top 250,1336115844 +59970,72998,romance,1336115832 +59970,76293,James Franco,1351299981 +59970,76293,Steve Carell,1351299972 +59970,76293,Tina Fey,1351299966 +59970,78039,Ryan Gosling,1333359733 +59970,78039,unlikeable characters,1333359740 +59970,79357,coming of age,1344509477 +59970,79357,immortality,1344509491 +59970,79357,nonlinear,1344509472 +59970,79357,romance,1344509464 +59970,79357,soundtrack,1344509480 +59970,79357,thought provoking,1344509469 +59970,81591,Natalie Portman,1342480899 +59970,82447,Australia,1350664050 +59970,82447,raw,1350664056 +59970,82447,romance,1350664052 +59970,84374,Ashton Kutcher,1342483418 +59970,84374,cute,1342483426 +59970,84374,Natalie Portman,1342483415 +59970,84601,Liam Neeson,1333321124 +59970,84954,love story,1340780437 +59970,84954,Romance,1340780434 +59970,84954,story,1340780452 +59970,86332,Chris Hemsworth,1342483483 +59970,86332,Natalie Portman,1342483468 +59970,87270,Natalie Portman,1343640599 +59970,87529,james franco,1342483520 +59970,87529,Natalie Portman,1342483523 +59970,89047,excellent acting,1343034355 +59970,89047,Joseph Gordon-Levitt,1343034330 +59970,89047,Natalie Portman,1343034345 +59970,89804,George Clooney,1333344239 +59970,89804,Ryan Gosling,1333344245 +59970,89864,funny scenes,1343124360 +59970,89864,Joseph Gordon-Levitt,1343124356 +59970,89864,touching,1343124363 +59970,91077,emotional,1342073801 +59970,91077,George Clooney,1342073787 +59970,91077,intelligent,1342073792 +59970,91199,gay,1344414269 +59970,91199,gay relationship,1344414285 +59970,91199,gay romance,1344414273 +59970,91500,adapted from:book,1333322656 +59970,91500,dystopia,1333322644 +59970,91500,Jennifer Lawrence,1333322629 +59970,91500,top ten,1333322639 +59970,91500,Woody Harrelson,1333322636 +59970,91529,Christopher Nolan,1342946756 +59970,91529,Gary Oldman,1342946759 +59970,91630,comedic moments,1340779876 +59970,91630,Romance,1340779880 +59970,91630,Simon pegg,1340779874 +59970,91630,visuals,1340779883 +59970,92259,emotional,1343124295 +59970,92259,hilarious,1343124297 +59970,92259,soundtrack,1343124282 +59970,92259,touching,1343124285 +59970,93512,Jason Segel,1340431947 +59970,94266,Emily Blunt,1349324877 +59970,94266,funny!,1349324879 +59970,94266,Jason Segal,1349324874 +59970,94266,sweet and romantic,1349324883 +59970,94864,technology,1340779781 +59970,94896,Jack Black,1342490341 +59970,94959,Bill Murray,1340779836 +59970,95088,aubrey plaza,1351299857 +59970,95088,feel good,1351299868 +59970,95088,Jake Johnson,1351299854 +59970,95088,touching,1351299864 +59970,95088,Understated charm,1351299859 +59970,95309,Keira Knightley,1351299897 +59970,95309,romantic plot,1351299900 +59970,95309,Steve Carell,1351299902 +59970,97311,Hugh Jackman,1351299804 +59970,97311,Olivia Wilde,1351299794 +59970,97921,Bradley Cooper,1358970265 +59970,97921,Jennifer Lawrence,1358970267 +59970,97923,Denzel Washington,1356442631 +59970,97923,Don Cheadle,1356442634 +59987,32,post-apocalyptic,1319330406 +59987,32,time travel,1319330411 +59987,3735,cops,1275801875 +59987,32587,Action,1287726423 +59987,32587,black comedy,1287726420 +59987,32587,Bruce Willis,1287726404 +59987,32587,dark,1287726429 +59987,32587,multiple storylines,1287726408 +59987,32587,superhero,1287726432 +59987,32587,violence,1287726415 +59987,33794,atmospheric,1287726552 +59987,33794,batman,1287726541 +59987,33794,dark,1287726544 +59987,33794,superhero,1287726547 +59987,33794,thought-provoking,1287726555 +59987,33794,vigilante,1287726557 +59987,58559,action,1287726449 +59987,58559,serial killer,1287726453 +59987,58559,superhero,1287726470 +59987,58559,thriller,1287726458 +59987,58559,vigilante,1287726455 +59987,58559,violent,1287726461 +59987,60074,alcoholic,1287726625 +59987,60074,anti-hero,1287726622 +59987,60074,Below R,1287726636 +59987,60074,Jason Bateman,1287726630 +59987,60074,not as good as I expected,1287726613 +59987,60074,superhero,1287726618 +59987,60074,Will Smith,1287726620 +59987,60684,alternate history,1287726487 +59987,60684,alternate reality,1287726490 +59987,60684,cinematography,1287726511 +59987,60684,dystopia,1287726494 +59987,60684,Nudity (Topless),1287726496 +59987,60684,social commentary,1287726508 +59987,60684,superhero,1287726500 +59987,60684,suspense,1287726506 +59991,2334,cliche dialogue,1140409116 +59991,3707,Scary,1136769271 +59991,33166,poignant,1140409152 +60008,260,fantasy action,1437411922 +60008,260,sci-fi,1437411912 +60008,122882,feminist,1437412280 +60008,122882,martyrdom,1437412280 +60008,122882,post-apocalyptic,1437412280 +60036,16,gangsters,1446993619 +60036,16,hysterical wife,1446995752 +60036,318,atmospheric,1422779855 +60036,318,freedom,1422779874 +60036,858,boring,1422782184 +60036,1203,group psychology,1422781547 +60036,1206,Nudity (Full Frontal),1423564863 +60036,1222,dialogue,1422781425 +60036,1222,Vincent D'Onofrio,1422781434 +60036,1645,Al Pacino,1422780186 +60036,1645,Nudity (Full Frontal - Notable),1422780213 +60036,1645,Nudity (Full Frontal),1422780192 +60036,2028,war,1422782218 +60036,2028,war movie,1422782225 +60036,2232,intense,1422780135 +60036,2232,psychological,1422780126 +60036,2232,psychology,1422780130 +60036,2502,comedy,1422781591 +60036,2502,hilarious,1422781608 +60036,2502,quotable,1422781560 +60036,2502,satire,1422781589 +60036,2502,terrific,1422781582 +60036,2502,workplace,1422781597 +60036,2571,philosophical,1422781299 +60036,2571,philosophy,1422781287 +60036,2692,Franka Potente,1422781151 +60036,2692,intense,1422781132 +60036,2707,Jeff Bridges,1427142269 +60036,2858,Nudity (Topless),1422780007 +60036,2858,sexuality,1422779984 +60036,2959,atmospheric,1422781024 +60036,2959,helena bonham carter,1422781066 +60036,2959,mindfuck,1422781068 +60036,2959,philosophical,1422781046 +60036,2959,philosophy,1422781020 +60036,3006,Al Pacino,1422780956 +60036,3020,Michael Douglas,1422780825 +60036,3147,great acting,1422780331 +60036,3730,boring,1422782311 +60036,3730,slow,1422782306 +60036,4776,corruption,1422781379 +60036,4776,denzel washington,1422781345 +60036,4776,Ethan Hawke,1422781368 +60036,4776,Nudity (Topless),1422781348 +60036,4776,police corruption,1422781358 +60036,4878,funny,1447169584 +60036,4878,jake gyllenhaal,1447169545 +60036,4878,teen,1447169567 +60036,5296,Cameron Diaz,1422782255 +60036,5954,Edward Norton,1422780502 +60036,5954,hot girls,1422780542 +60036,8529,boring,1423931931 +60036,8529,inauthentic,1423931926 +60036,8529,predictable,1423931901 +60036,8529,silly propaganda,1423931929 +60036,8529,unrealistic,1423931922 +60036,30793,Johnny Depp,1422782113 +60036,33585,ejaculation,1422792560 +60036,33585,erection,1422792596 +60036,33585,Explicit,1422792529 +60036,33585,full frontal nudity,1422792543 +60036,33585,nudity (full frontal),1422792544 +60036,33585,real sex,1422792541 +60036,33585,sex,1422792524 +60036,33585,unsimulated sex,1422792526 +60036,33585,unsimulated sex scenes,1422792539 +60036,44199,Denzel Washington,1422780760 +60036,44199,intelligent thriller,1422780801 +60036,44199,Nazis,1422780770 +60036,44199,quotable,1422781121 +60036,44555,freedom of expression,1423564904 +60036,48385,crude humor,1422780423 +60036,48385,funny,1422780439 +60036,48385,Nudity (Full Frontal - Notable),1422780436 +60036,48385,Nudity (Full Frontal),1422780454 +60036,48385,satire,1422780416 +60036,49272,poker,1422781788 +60036,64614,gangs,1430037948 +60036,64614,gangsters,1430037991 +60036,64614,revenge,1430037977 +60036,66511,great soundtrack,1422781521 +60036,66511,male nudity,1422781516 +60036,66511,paul kalkbrenner,1422781504 +60036,68157,Nazis,1422780787 +60036,68157,revenge,1422780236 +60036,68157,vengeance,1422780253 +60036,78266,predictable,1422782000 +60036,79132,clever,1422780636 +60036,79132,intellectual,1422780649 +60036,79132,mindfuck,1422780613 +60036,79132,philosophy,1422780619 +60036,80219,gore,1422781201 +60036,80219,Jessica Alba,1422781248 +60036,80219,Michelle Rodriguez,1422781244 +60036,80219,Nudity,1422781210 +60036,80219,Nudity (Full Frontal - Notable),1422781206 +60036,80219,Nudity (Topless),1422781213 +60036,80463,nerds,1422780735 +60036,92259,emotional,1423575988 +60036,92259,touching,1423575985 +60036,95441,crude humor,1422781838 +60036,95441,Mila Kunis,1422781816 +60036,101243,blowjob,1423593680 +60036,101243,controversial,1423593649 +60036,101243,ejaculation,1423593693 +60036,101243,erection,1423593700 +60036,101243,female nudity,1423593655 +60036,101243,male nudity,1423593714 +60036,101243,nudity (full frontal),1423593662 +60036,101243,teenage girl,1423593670 +60036,101243,Unsimulated Sex,1423593638 +60036,104879,Hugh Jackman,1422781957 +60036,104879,Jake Gyllenhaal,1422781960 +60036,106920,boring,1422779435 +60036,106920,mustache,1422782158 +60036,106920,predictable,1422779444 +60036,106920,unrealistic,1422779642 +60036,107537,male nudity,1422779677 +60036,107537,nudity (full frontal),1422779673 +60036,107537,sexuality,1422780382 +60036,107537,unsimulated sex,1422779670 +60036,112193,ejaculation,1426351040 +60036,112193,erection,1426351042 +60036,112193,male nudity,1426351019 +60036,112193,nudity (full frontal),1426351021 +60036,112193,sexuality,1426351023 +60036,112193,unsimulated sex,1426351025 +60036,115122,not funny,1426340461 +60052,296,classic,1438029895 +60052,296,quentin tarantino,1438029895 +60052,296,violent,1438029895 +60052,454,based on a book,1437529792 +60052,454,Tom Cruise,1437529798 +60052,593,drama,1437351822 +60052,593,horror,1437351822 +60052,593,suspense,1437351822 +60052,1060,90s,1439929039 +60052,1060,bars,1439929562 +60052,1060,Breakup,1439929088 +60052,1060,heartbreak,1439929112 +60052,1060,Relationships,1439929528 +60052,1060,vegas,1439929007 +60052,1089,crime,1437710345 +60052,1089,flashback,1437710354 +60052,1089,gangster,1437710392 +60052,1089,heist,1437710387 +60052,1089,imbd top 250,1437710423 +60052,1089,Quentin Tarantino,1437710340 +60052,1089,violent,1437710373 +60052,1597,amnesia,1441905219 +60052,1597,assassin,1441905160 +60052,1597,brainwashing,1441905003 +60052,1597,conspiracy,1441905004 +60052,1597,Julia Roberts,1441905009 +60052,1597,Mel Gibson,1441905007 +60052,1597,mental hospital,1441905020 +60052,1597,murder mystery,1441905065 +60052,1597,Patrick Stewart,1441905081 +60052,1597,secret agency,1441905200 +60052,1597,thought-provoking,1441905017 +60052,2539,funny,1438222291 +60052,2539,gangster,1438222281 +60052,2539,mafia,1438222270 +60052,2539,Robert De Niro,1438222273 +60052,2791,absurd,1437620285 +60052,2791,classic,1437620256 +60052,2791,funny,1437620277 +60052,2791,Parody,1437620253 +60052,2791,Slapstick,1437620266 +60052,2841,Crazy,1450831885 +60052,2841,ghosts,1450831789 +60052,2841,Kevin Bacon,1450831812 +60052,2841,Murder,1450831798 +60052,2841,original and creepy.,1450831878 +60052,2841,supernatural,1450831854 +60052,2841,surprisingly good,1450831848 +60052,2841,suspense,1450831860 +60052,3624,fight scenes,1439930961 +60052,3624,Jackie Chan,1439930936 +60052,3624,kidnapping,1439930964 +60052,3624,martial arts,1439930931 +60052,3624,Western Comedy,1439930947 +60052,4623,baseball,1453158856 +60052,4623,Charlie sheen,1453158831 +60052,4975,Cameron Diaz,1439963669 +60052,4975,Dream,1439963627 +60052,4975,fantasy,1439963686 +60052,4975,future,1439963683 +60052,4975,lucid dreaming,1439963620 +60052,4975,mindfuck,1439963640 +60052,4975,nonlinear,1439963724 +60052,4975,Nudity (Topless),1439963651 +60052,4975,Penelope Cruz,1439963658 +60052,4975,psychology,1439963612 +60052,4975,science fiction,1439963691 +60052,4975,suicide,1439963672 +60052,4975,surreal,1439963617 +60052,4975,Tom Cruise,1439963655 +60052,6016,based on a true story,1441770856 +60052,6016,brazil,1441770899 +60052,6016,crime,1441770907 +60052,6016,disturbing,1441770919 +60052,6016,drugs,1441770904 +60052,6016,gangs,1441770916 +60052,6016,imdb top 250,1441770930 +60052,6016,multiple storylines,1441770890 +60052,6016,powerful ending,1441770945 +60052,6016,social commentary,1441770938 +60052,6016,true story,1441770922 +60052,6016,violence,1441770913 +60052,7458,Mythology,1437530725 +60052,7458,War,1437530759 +60052,70728,alter ego,1439865788 +60052,70728,Based on a true story,1439865749 +60052,70728,prison,1439865776 +60052,70728,violent,1439865765 +60052,77427,abduction,1437704327 +60052,77427,bad acting,1437704294 +60052,77427,experiment,1437704324 +60052,77427,gross out,1437704308 +60052,102194,betrayal,1440181922 +60052,102194,coming of age,1440181824 +60052,102194,fugitive,1440181819 +60052,102194,good acting,1440181854 +60052,102194,Matthew McConaughey,1440181831 +60052,102194,murder,1440181913 +60052,102194,netflix,1440181895 +60052,102194,powerful,1440181837 +60052,102194,well acted,1440181851 +60052,104303,Apple,1453500713 +60052,104303,business,1453500784 +60052,104303,computers,1453500738 +60052,104303,historically inaccurate,1453500750 +60052,104303,history,1453500756 +60052,104303,steve jobs,1453500720 +60052,104303,technology,1453500747 +60052,105468,animation,1437354328 +60052,105468,comedy,1437354359 +60052,105468,sequel,1437354349 +60052,110286,autism,1437619674 +60052,110286,crime,1437619683 +60052,110286,game,1437619596 +60052,110286,gore,1437619724 +60052,110286,greed,1437619591 +60052,110286,money,1437619694 +60052,111443,cooking,1437787650 +60052,111443,not funny,1437791194 +60052,111443,slow,1437791177 +60052,112911,Bad acting,1439000581 +60052,112911,Bad dialogue,1439000835 +60052,112911,Predictable,1439000596 +60052,115713,artificial intelligence,1438190101 +60052,115713,consciousness,1438190173 +60052,115713,Contemplative,1438190177 +60052,115713,cybernetics,1438190169 +60052,115713,Future,1438190179 +60052,115713,futuristic,1438190160 +60052,115713,Man Versus Machine,1438190185 +60052,115713,Mind Bending,1438190200 +60052,115713,nudity (full frontal),1438190115 +60052,115713,philosophical,1438190157 +60052,115713,plot twist,1438190121 +60052,115713,thought provoking,1438190153 +60052,115713,thriller,1438190163 +60052,132128,crazy,1437783521 +60052,132128,cults,1437783322 +60052,132128,psychiatrist,1437783558 +60052,132128,psycological,1437783377 +60052,132128,religion,1437783431 +60052,132128,twist ending,1437783401 +60052,134393,Crude humor,1438030024 +60052,134393,Funny,1438030055 +60052,134393,John cena,1438030009 +60052,134393,Long,1438030106 +60052,134393,Romantic comedy,1438030079 +60052,134393,Slow,1438029995 +60052,137367,Based on a true story,1438196739 +60052,137367,Convict,1438190865 +60052,137367,Hostage,1438191307 +60052,137367,Murder,1438190836 +60052,137367,Neo nazi,1438190436 +60052,137367,Racism,1438190592 +60052,137367,White sepremacist,1438190400 +60052,140715,Biography,1440182123 +60052,140715,biopic,1440182128 +60052,140715,black culture,1440182278 +60052,140715,documentary,1440182146 +60052,140715,dr. dre,1440182161 +60052,140715,Easy e,1440182174 +60052,140715,ice cube,1440182167 +60052,140715,music culture,1440182157 +60052,140715,n.w.a,1440182187 +60052,140715,police brutality,1440182267 +60052,140715,rap music,1440182136 +60052,140715,rappers,1440182133 +60052,140715,true story,1440182150 +60052,140715,west coast rap,1440182262 +60058,31658,and this isn't at all how i pictured most of the characters,1171827914 +60058,31658,good but i'm a big fan of the book's author,1171827914 +60061,2706,comedy,1437758444 +60061,2706,high school,1437758444 +60061,2706,teenager,1437758444 +60090,115534,shit,1423087886 +60090,117549,documentary,1421626923 +60090,117549,handycam,1421626923 +60090,117549,possession,1421626923 +60090,121196,conspiracy,1427668569 +60090,121196,good versus evil,1427668569 +60090,121196,possession,1427668569 +60137,4878,surreal,1220745666 +60142,260,adventure,1433086343 +60142,260,Science Fiction,1433086357 +60145,307,atmospheric,1254987915 +60145,56339,imaginary friend,1227703732 +60149,1247,coming of age,1268689376 +60149,4896,adapted from:book,1403703811 +60149,4896,based on a book,1403703760 +60149,4896,Christmas,1403703799 +60149,4896,dogs,1403703787 +60149,4896,dragons,1403703773 +60149,4896,family,1403703802 +60149,4896,fantasy,1403703762 +60149,4896,good versus evil,1403703777 +60149,4896,halloween,1403703779 +60149,44195,satire,1161542429 +60149,55765,Nudity (Topless - Brief),1201029782 +60149,60072,Angelina Jolie,1236128987 +60149,60072,assassin,1236128984 +60149,60072,bullets,1236129006 +60149,60072,Morgan Freeman,1236128993 +60149,99114,Leonardo DiCaprio,1363709675 +60149,99114,love,1363709670 +60149,110102,action,1401118006 +60149,111362,Added,1401979509 +60149,111362,Michael Fassbender,1401979503 +60154,6934,Sci-Fi,1188655951 +60154,32587,Sci-Fi,1188655961 +60166,2894,BDSM,1238790967 +60166,2894,Bondage,1238790967 +60166,2894,Domination,1238790967 +60166,2894,Gag,1238790967 +60166,2894,Handcuffs,1238790967 +60166,2894,Ropes,1238790967 +60166,2894,Submission,1238790967 +60166,2894,Tied,1238790967 +60166,5984,BDSM,1238790703 +60166,5984,Blindfold,1238790820 +60166,5984,Bondage,1238790739 +60166,5984,Domination,1238790739 +60166,5984,Fetish,1238793630 +60166,5984,Gag,1238790820 +60166,5984,Spanked,1238790739 +60166,5984,Submission,1238790770 +60166,5984,Tied,1238790739 +60166,6950,blindfold,1238793744 +60166,6950,Gag,1238793760 +60166,6950,Tied,1238793773 +60166,6950,Tommy Lee Jones,1238793749 +60181,95776,infantilism,1421353293 +60181,95776,rachael leigh cook,1421353293 +60181,95776,rachael sexy,1421353293 +60189,1707,Horrible Sequel,1137437671 +60189,32587,artistic,1137438190 +60191,1617,film noir,1265069976 +60191,2302,comedy,1265069918 +60191,2302,Marisa Tomei,1265069909 +60191,72011,George Clooney,1265069741 +60201,37386,yeah but damn is she hot,1145180782 +60213,260,good vs evil,1442460518 +60213,260,space adventure,1442460500 +60213,7219,BD-R,1442460737 +60225,27513,austrian,1426877994 +60225,27513,disturbing,1426877994 +60225,27513,independent,1426877994 +60225,31123,comedy,1428070792 +60225,31123,crazy,1428070792 +60225,31123,french,1428070792 +60225,48231,amon tobin,1431804671 +60225,48231,disturbing,1431804671 +60225,48231,hungarian,1431804671 +60225,61108,history,1420574658 +60225,61108,horror,1420574658 +60225,61108,jakubisko,1420574658 +60233,720,Creative production,1186767993 +60233,1028,classic,1186791253 +60233,1197,Classic,1186769198 +60233,1394,creative,1186798384 +60233,3916,Character study,1186768315 +60233,3916,Excellent,1186768315 +60233,6934,Action,1186767964 +60233,6934,Philosophical,1186767964 +60233,6934,Sci-Fi,1186767964 +60233,8852,classic,1186774206 +60233,34536,inspirational,1186769260 +60233,34536,realistic,1186769260 +60243,593,original plot,1422897698 +60243,593,serial killer,1422897698 +60243,593,thriller,1422897698 +60307,58154,politics,1239365140 +60307,73017,boring script,1265492312 +60320,55098,Rakesh Omprakash Mehra,1401253220 +60320,55098,social cause,1401253210 +60320,68157,Brad Pitt,1401253674 +60320,68157,IMDB Top 250,1401253692 +60320,68157,Quentin Tarantino,1401253672 +60320,68157,World War II,1401253683 +60320,73881,college,1401253308 +60320,73881,friendship,1401253323 +60320,73881,inspirational,1401253393 +60321,260,luke skywalker,1434008004 +60321,260,Science Fiction,1434007993 +60331,260,future,1432380277 +60331,260,universe,1432380290 +60331,260,war,1432380301 +60332,3479,ending,1287647899 +60332,27773,disturbing,1280968550 +60332,27773,Korean,1280968570 +60332,27773,stylized,1280968557 +60332,32300,parody,1261662032 +60332,51412,Philip K. Dick,1311729292 +60332,53769,unresolved,1261709885 +60332,76251,comic book,1276137456 +60332,76251,superhero,1276137458 +60332,81229,duct taped mouths,1375407610 +60332,83158,clever,1374815146 +60332,83158,surreal,1374815146 +60332,89753,confusing,1398477415 +60332,89753,slow paced,1398477410 +60332,90647,ending,1337236332 +60332,92106,happy ending,1369783022 +60332,93563,banter,1374814958 +60348,260,Classic,1442727463 +60348,260,Fun,1442727596 +60358,2959,action,1425174314 +60358,2959,social commentary,1425174314 +60358,2959,surreal,1425174314 +60358,94466,not a movie,1425174509 +60358,94466,tv series,1425174511 +60373,260,cult classic,1430774277 +60373,260,lightsabers,1430774355 +60373,260,space,1430774348 +60390,41912,Swedish,1310730067 +60392,260,Science Fiction,1438729154 +60392,260,space adventure,1438729143 +60392,904,amateur detective,1438730656 +60392,904,Grace Kelly,1438730645 +60392,904,mystery,1438730638 +60392,2082,hockey,1438729555 +60392,49649,bad acting,1438731034 +60392,49649,based on a book,1438731041 +60392,49649,cliche,1438731021 +60392,49649,dragons,1438731037 +60392,49649,fantasy,1438731038 +60392,49649,predictable,1438731024 +60392,140182,crime,1438729894 +60392,140182,politics,1438729902 +60395,50,complicated,1244996563 +60395,50,Crime,1244996567 +60395,50,heist,1244996573 +60395,50,Kevin Spacey,1244996561 +60395,50,mindfuck,1244996558 +60395,50,thriller,1270819163 +60395,50,twist ending,1244996556 +60395,116,anti-Semitism,1257388434 +60395,116,germany,1257388432 +60395,116,Holocaust,1257388429 +60395,116,nazis,1257388444 +60395,181,retarted,1245107393 +60395,305,Cher,1245117624 +60395,305,Forest Whitaker,1245117611 +60395,305,Julia Roberts,1245117620 +60395,305,Nudity (Full Frontal),1245117614 +60395,467,Nudity (Topless - Notable),1244996770 +60395,467,Nudity (Topless),1244996771 +60395,520,Mel Brooks,1245071882 +60395,520,Mel Brooks movie,1245071896 +60395,520,parody,1245071886 +60395,520,Patrick Stewart,1245071886 +60395,520,spoof,1245071887 +60395,593,cannibalism,1245071018 +60395,593,torture,1245071023 +60395,639,Nudity (Topless),1244996800 +60395,696,lesbian,1265059833 +60395,762,Ving Rhames,1276241098 +60395,762,watched it for the boobs,1276241094 +60395,787,FEWER than 300 ratings,1267483393 +60395,858,crime,1245072580 +60395,858,Mafia,1245072563 +60395,858,Nudity (Topless),1245072567 +60395,1201,spaghetti western,1245070931 +60395,1206,Nudity (Full Frontal),1245070772 +60395,1206,rape,1245070762 +60395,1206,Sexualized violence,1245070758 +60395,1215,Cult classic,1244996321 +60395,1215,cult film,1244996324 +60395,1215,Evil Dead Series,1272482003 +60395,1215,Nudity (Topless - Brief),1244996334 +60395,1215,satirical,1244996325 +60395,1215,time travel,1244996329 +60395,1215,zombie,1244996334 +60395,1215,zombies,1244996334 +60395,1217,Shakespeare,1275034280 +60395,1233,deutsch,1257388337 +60395,1233,German,1257388326 +60395,1245,coen bros,1244996060 +60395,1245,Coen Brothers,1244996045 +60395,1245,crime,1244996067 +60395,1245,Mafia,1244996050 +60395,1245,twists & turns,1244996054 +60395,1261,Evil Dead Series,1272482020 +60395,1265,Bill Murray,1245337422 +60395,1278,farce,1245071856 +60395,1278,Gene Wilder,1245071852 +60395,1278,parody,1245071858 +60395,1278,Quotable,1245071863 +60395,1278,spoof,1245071861 +60395,1392,disgusting,1257453627 +60395,1495,retarded,1245107370 +60395,1967,Coming-of-Age,1245097275 +60395,2064,liberal propaganda,1248045601 +60395,2064,Michael Moore,1248045795 +60395,2232,mathematics,1245070810 +60395,2232,mindfuck,1245070798 +60395,2232,plot point:solving riddles/puzzles,1245070806 +60395,2232,survival horror,1245070795 +60395,2232,thriller,1270819203 +60395,2579,Christopher Nolan,1265062266 +60395,2579,out of order,1265062269 +60395,2607,gay,1265062098 +60395,2908,gay,1244997123 +60395,2908,homophobia,1244997114 +60395,2908,lesbian,1244997106 +60395,2908,rape,1244997103 +60395,2908,Sexualized violence,1244997119 +60395,2917,Nudity (Full Frontal - Notable),1244997079 +60395,2917,Nudity (Full Frontal),1244997080 +60395,2917,sexy,1244997087 +60395,2918,Matthew Broderick,1245337414 +60395,2959,Edward Norton,1244996610 +60395,2959,philosophy,1244996605 +60395,2959,twist ending,1244996606 +60395,3018,Nudity (Full Frontal - Notable),1282921819 +60395,3033,Mel Brooks,1245071820 +60395,3033,parody,1245071822 +60395,3033,spoof,1245071825 +60395,3378,John Malkovich,1257389028 +60395,3489,Julia Roberts,1245117594 +60395,3601,FEWER than 300 ratings,1266443464 +60395,3671,Gene Wilder,1245071812 +60395,3671,Highly quotable,1245071795 +60395,3671,Mel Brooks,1245071793 +60395,3671,parody,1245071799 +60395,3671,satirical,1245071807 +60395,3688,childish,1244996434 +60395,3688,cult film,1244996420 +60395,3688,Nudity (Full Frontal - Notable),1244996425 +60395,3688,Nudity (Full Frontal),1244996426 +60395,3793,Patrick Stewart,1267354563 +60395,3809,Bill Murray,1257388017 +60395,4011,pigs,1298754687 +60395,4105,Evil Dead Series,1272482044 +60395,4105,rape,1282921846 +60395,4128,adolescence,1283469124 +60395,4128,horror,1283469107 +60395,4128,Kiefer Sutherland,1283469118 +60395,4148,cannibalism,1244996212 +60395,4148,CANNIBALS,1244996211 +60395,4148,torture,1244996170 +60395,4214,Notable Nudity,1244996395 +60395,4214,Nudity (Full Frontal - Notable),1244996390 +60395,4226,cerebral,1244996543 +60395,4226,cult film,1244996521 +60395,4226,Mindfuck,1244996527 +60395,4226,non-linear,1244996539 +60395,4226,short-term memory loss,1244996536 +60395,4226,twist ending,1244996531 +60395,4370,Sucks big time!,1285193237 +60395,4370,too long,1285193231 +60395,4571,circle k,1283469057 +60395,4571,dumb but funny,1283469052 +60395,4571,George Carlin,1283469033 +60395,4571,Keanu Reeves,1283469031 +60395,4571,time travel,1283469028 +60395,4571,well-done time travel,1283469043 +60395,4769,Holocaust,1257388413 +60395,4776,Notable Nudity,1265060593 +60395,4796,FEWER than 300 ratings,1267483423 +60395,4816,ben stiller,1245118235 +60395,4816,farce,1245118247 +60395,4816,mindless one liners,1245118253 +60395,4816,seen more than once,1245118238 +60395,4816,spoof,1245118241 +60395,4816,Will Ferrell,1245118236 +60395,4873,metaphysics,1266376935 +60395,4873,philosophy,1266376943 +60395,4878,mindfuck,1257389556 +60395,4960,FEWER than 300 ratings,1267483471 +60395,4963,caper,1244996698 +60395,4963,heist,1244996692 +60395,4975,Cameron Diaz,1266377074 +60395,4980,time travel,1283469014 +60395,4995,economics,1266024095 +60395,5014,crying,1266376684 +60395,5014,disability,1266376689 +60395,5038,dragon,1246614997 +60395,5038,FEWER than 300 ratings,1267353608 +60395,5038,good versus evil,1246615000 +60395,5038,James Earl Jones,1246615002 +60395,5038,time travel,1246614992 +60395,5130,FEWER than 300 ratings,1281761000 +60395,5130,Forest Whitaker,1247609306 +60395,5135,child abuse,1245629011 +60395,5135,pedophile,1245629020 +60395,5630,Edward Norton,1245070967 +60395,5630,Hannibal Lecter,1283391195 +60395,5630,torture,1245070983 +60395,5669,anti-Bush,1248045351 +60395,5669,Bush bashing,1248045356 +60395,5669,liberal propaganda,1248045343 +60395,5669,Michael Moore,1248045345 +60395,5878,rape,1266376409 +60395,6269,child abuse,1244996082 +60395,6269,pedophile,1244996022 +60395,6283,adult swim,1247657846 +60395,6296,eugene levy,1247658228 +60395,6296,mockumentary,1247658236 +60395,6296,satire,1247658241 +60395,6323,twist ending,1279937080 +60395,6378,con men,1244996628 +60395,6378,Crime,1244996633 +60395,6378,Edward Norton,1244996625 +60395,6378,Heist,1244996642 +60395,6378,robbery,1244996637 +60395,6402,FEWER than 300 ratings,1267353648 +60395,6409,FEWER than 300 ratings,1267353908 +60395,6942,Billy Bob Thornton,1266443890 +60395,6942,Nudity (Topless - Notable),1266443895 +60395,6942,Nudity (Topless),1266443897 +60395,6942,obscene,1266443961 +60395,7024,torture,1283391236 +60395,7034,homosexuality,1244997160 +60395,7034,lesbian,1244997159 +60395,7081,FEWER than 300 ratings,1266443561 +60395,7217,FEWER than 300 ratings,1267483333 +60395,7219,FEWER than 300 ratings,1267483406 +60395,7254,Child abuse,1244921887 +60395,7260,FEWER than 300 ratings,1266443600 +60395,7445,Christopher Walken,1283391170 +60395,7445,Torture,1283391163 +60395,7583,FEWER than 300 ratings,1266443595 +60395,7766,Shakespeare,1257389698 +60395,7822,FEWER than 300 ratings,1266443614 +60395,8191,FEWER than 300 ratings,1267353977 +60395,8202,FEWER than 300 ratings,1267354289 +60395,8232,FEWER than 300 ratings,1298755057 +60395,8257,FEWER than 300 ratings,1267354311 +60395,8376,geek,1245118293 +60395,8376,Jon Heder,1245118276 +60395,8376,nerds,1245118283 +60395,8376,off-beat comedy,1245118296 +60395,8579,FEWER than 300 ratings,1267483351 +60395,8622,iraq,1266617127 +60395,8622,Iraq War,1266617126 +60395,8622,liberal propaganda,1248045321 +60395,8622,michael moore,1248045313 +60395,8657,FEWER than 300 ratings,1267354406 +60395,8757,FEWER than 300 ratings,1267354376 +60395,8882,FEWER than 300 ratings,1267483274 +60395,8948,Nudity (Rear),1245107289 +60395,8948,Nudity (Topless),1245107283 +60395,8948,womanizing,1245107325 +60395,8961,alter ego,1267354494 +60395,8961,comic book,1267354490 +60395,8961,imdb top 250,1267354507 +60395,8961,Samuel L. Jackson,1267354501 +60395,8961,stylized,1267354498 +60395,8984,heist,1244996753 +60395,8984,not as good as the first,1244996740 +60395,8985,Jessica Biel,1246462237 +60395,8985,Marvel,1246462233 +60395,8985,Wesley Snipes,1246462226 +60395,9013,FEWER than 300 ratings,1266443427 +60395,25750,silent,1244923988 +60395,25764,FEWER than 300 ratings,1298755067 +60395,25835,FEWER than 300 ratings,1266443486 +60395,25866,FEWER than 300 ratings,1266443419 +60395,25904,FEWER than 300 ratings,1267353989 +60395,25908,FEWER than 300 ratings,1267483342 +60395,25911,FEWER than 300 ratings,1267353712 +60395,25916,FEWER than 300 ratings,1267483376 +60395,25943,FEWER than 300 ratings,1267354386 +60395,25961,FEWER than 300 ratings,1298755077 +60395,26078,FEWER than 300 ratings,1267353816 +60395,26111,FEWER than 300 ratings,1267353924 +60395,26113,FEWER than 300 ratings,1267354418 +60395,26138,FEWER than 300 ratings,1267483431 +60395,26249,FEWER than 300 ratings,1267483360 +60395,26386,Hitchcock parody,1245071915 +60395,26386,Mel Brooks,1245071911 +60395,26386,parody,1245071916 +60395,26386,spoof,1245071918 +60395,26599,closeted homosexual,1247189774 +60395,26599,male nudity,1247189780 +60395,26599,queer,1247189787 +60395,26599,transsexuals,1247189774 +60395,26649,FEWER than 300 ratings,1266443607 +60395,26770,FEWER than 300 ratings,1266443494 +60395,27022,FEWER than 300 ratings,1267353897 +60395,27376,FEWER than 300 ratings,1267353938 +60395,27482,bad sequel,1265060668 +60395,27482,sequel,1265060669 +60395,30712,FEWER than 300 ratings,1267354266 +60395,30721,FEWER than 300 ratings,1266443536 +60395,30820,child abuse,1260224303 +60395,30820,could go farther,1260224321 +60395,30820,paedophilia,1260224307 +60395,30820,pedophile,1260224309 +60395,31260,FEWER than 300 ratings,1267483413 +60395,31410,Adolf Hitler,1257388354 +60395,31410,anti-Semitism,1257388366 +60395,31410,deutsch,1257388388 +60395,31410,disturbing,1257388363 +60395,31410,German,1257388358 +60395,31410,Germany,1257388356 +60395,31410,Nudity (Topless),1257388360 +60395,31410,suicide,1257388368 +60395,31878,slapstick,1282415296 +60395,32371,FEWER than 300 ratings,1267354323 +60395,32419,Mandy Patinkin,1275144632 +60395,32469,FEWER than 300 ratings,1267354354 +60395,33004,John Malkovich,1261593708 +60395,33004,Zooey Deschanel,1261593700 +60395,33451,FEWER than 300 ratings,1267354279 +60395,33451,Not available from Netflix,1244996959 +60395,34583,FEWER than 300 ratings,1298754960 +60395,35836,marijuana,1245337455 +60395,35836,Nudity (Topless - Notable),1245337453 +60395,35836,Nudity (Topless),1245337444 +60395,35836,profanity,1245337463 +60395,35836,Steve Carell,1247524355 +60395,40148,FEWER than 300 ratings,1298754896 +60395,40148,ray liotta,1298754919 +60395,40278,iraq,1266617150 +60395,40988,FEWER than 300 ratings,1266443544 +60395,41569,Jack Black,1267611684 +60395,41585,FEWER than 300 ratings,1267354301 +60395,41724,consumerism,1248045053 +60395,41724,economics,1248045036 +60395,41724,liberal propaganda,1248045015 +60395,41831,FEWER than 300 ratings,1267354395 +60395,42718,parkour,1245071169 +60395,42718,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1245071178 +60395,42723,torture,1283391144 +60395,43652,Zach Galifianakis,1275144844 +60395,44191,torture,1283391259 +60395,45499,adapted from:comic,1267354588 +60395,45499,Patrick Stewart,1267354582 +60395,45679,FEWER than 300 ratings,1267353951 +60395,45950,liberal propaganda,1248045379 +60395,45950,propaganda,1248045383 +60395,46559,George Bush,1283391219 +60395,46559,torture,1283391216 +60395,46664,FEWER than 300 ratings,1298754984 +60395,46855,FEWER than 300 ratings,1266443410 +60395,47723,FEWER than 300 ratings,1267354333 +60395,48741,liberal propaganda,1248045284 +60395,49272,parkour,1245071155 +60395,49272,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1245107178 +60395,49272,torture,1245071114 +60395,49278,paradox,1270819053 +60395,49278,val kilmer,1270819071 +60395,50514,FEWER than 300 ratings,1267354368 +60395,50804,cannibalism; uncomfortable; crime; serial killer;,1244996202 +60395,51638,FEWER than 300 ratings,1267353965 +60395,53038,FEWER than 300 ratings,1267483483 +60395,53322,Heist,1244996721 +60395,53322,smart,1244996724 +60395,53894,american idiocy,1248045562 +60395,53894,insurance,1248045574 +60395,53894,liberal propaganda,1248045551 +60395,53894,Michael Moore,1248045558 +60395,54190,FEWER than 300 ratings,1266443451 +60395,54256,FEWER than 300 ratings,1266443552 +60395,54286,torture,1283391275 +60395,54796,FEWER than 300 ratings,1266443440 +60395,55116,FEWER than 300 ratings,1267483324 +60395,55176,FEWER than 300 ratings,1266443567 +60395,55290,child abuse,1245628911 +60395,55290,multilayered,1245628921 +60395,55290,pedophile,1245628925 +60395,55895,FEWER than 300 ratings,1267353730 +60395,55895,Humphrey Bogart,1267353728 +60395,55999,FEWER than 300 ratings,1266443626 +60395,56145,antichristian,1248045227 +60395,56145,liberal propaganda,1248045222 +60395,56788,liberal propaganda,1248045204 +60395,56885,FEWER than 300 ratings,1266443501 +60395,57669,foul language,1247266595 +60395,57669,imdb top 250,1247266589 +60395,57669,irish accent,1247266584 +60395,58301,Tim Roth,1283391337 +60395,58301,Torture,1283391334 +60395,58306,FEWER than 300 ratings,1266443619 +60395,59369,cynical,1245882767 +60395,59369,Liam Neeson,1245882761 +60395,60020,Jet Li,1277950704 +60395,63082,based on a book,1283391324 +60395,63082,feel-good,1283391319 +60395,63082,India,1283391308 +60395,63082,nonlinear,1283391315 +60395,63082,poverty,1283391311 +60395,63082,torture,1245071086 +60395,63222,Jean-Claude Van Damme,1245107265 +60395,63433,FEWER than 300 ratings,1267483386 +60395,64497,liberal propaganda,1248045265 +60395,66544,Alec Baldwin,1270819152 +60395,67255,biblical references,1267353773 +60395,67255,dark,1267353777 +60395,67665,Canada,1261037092 +60395,68319,Patrick Stewart,1267354544 +60395,68319,too long,1267354541 +60395,68358,Bechdel Test:Pass (technically but not really),1282316289 +60395,68358,Star Trek,1245118704 +60395,68848,Adrien Brody,1276712405 +60395,68848,con artists,1245337383 +60395,68952,cat killing,1282921770 +60395,68952,cgi,1282921768 +60395,69324,World War II,1267611666 +60395,69481,anti-war,1266024193 +60395,69481,Iraq,1266024188 +60395,69481,Iraq War,1266617107 +60395,69481,Middle East,1266024191 +60395,69481,War,1266024184 +60395,71129,FEWER than 300 ratings,1267354347 +60395,71282,liberal propaganda,1258242688 +60395,72167,disappointing,1267030978 +60395,72167,vigilante,1260222358 +60395,72395,child abuse,1260773747 +60395,72395,teen pregnancy,1260773750 +60395,72998,incredible 3D,1261943100 +60395,72998,too long,1261943115 +60395,73323,sequel,1276045156 +60395,74458,Martin Scorsese,1279936705 +60395,74458,too long,1279936716 +60395,76175,3d,1276241049 +60395,76175,3D version,1276241054 +60395,76175,existentialism,1276241073 +60395,76175,Liam Neeson,1276241058 +60395,76175,philosophy,1276241068 +60395,76251,Nicolas Cage,1276307986 +60395,76251,vigilante,1276307983 +60395,77307,cat killing,1282921748 +60395,77307,incest,1282921740 +60395,77359,FEWER than 300 ratings,1298754971 +60395,78218,torture,1283391099 +60395,78266,Adrien Brody,1276712379 +60395,79293,Bechdel Test:Pass (technically but not really),1282314189 +60395,79553,bad plot,1284430430 +60395,81932,big hair,1298754654 +60395,81932,Mark Wahlberg,1298754636 +60395,81932,pigs,1298754658 +60395,81932,prostitution,1298754620 +60442,1748,aliens,1384019929 +60442,1748,cult film,1384019932 +60442,1748,dark,1384019934 +60442,1748,dystopia,1384019917 +60442,1748,sci-fi,1384019935 +60442,1748,surreal,1384019936 +60442,49396,comedy,1289122641 +60442,49396,metal,1289122645 +60442,49396,rocn and roll,1289122661 +60442,49396,satire,1289122668 +60442,79274,Batman,1294859712 +60442,103249,plot holes,1379883357 +60442,103306,hard science fiction,1383941642 +60442,103306,visually stunning,1383941638 +60442,104243,aliens,1404070261 +60442,104243,space western,1404070258 +60442,104243,Vin Diesel,1404070263 +60472,42783,love story,1284831457 +60472,42783,Sergei Parajanov,1284831452 +60472,42783,visually stunning,1284831460 +60472,47423,boring,1299493288 +60472,47423,overrated,1299493282 +60472,47423,Ryan Gosling,1299493284 +60472,71464,bad ending,1287558379 +60472,71464,black humour,1287558354 +60472,71464,coen brothers,1287558324 +60472,71464,dark comedy,1287558346 +60472,71464,faith,1287558334 +60472,71464,great ending,1287558342 +60472,71464,Jewish,1287558320 +60472,71464,judaism,1287558339 +60472,71464,Philosophical,1287558313 +60472,71464,slow,1287558367 +60472,71464,suburbia,1287558371 +60472,78574,authenticity,1299493243 +60472,78574,characters,1299493235 +60472,78574,cultural authenticity,1299493265 +60472,78574,family relationships,1299493260 +60472,78574,Jennifer Lawrence,1299493249 +60472,78574,realism,1299493231 +60472,78574,sound effects,1299493252 +60482,218,Women's lib,1137581383 +60482,344,Jim Carrey being Jim Carrey,1139544738 +60482,1135,Women's Lib,1137581091 +60482,4270,fun,1139544895 +60482,4296,tear-jerker,1137581629 +60482,6196,gratuitous,1139545630 +60482,8167,classic,1137580134 +60482,8640,Slightly more historically acurate than most tellings,1139545090 +60482,8984,confusing plot,1139544550 +60482,27821,African Atrocities,1137581450 +60509,260,fantasy action,1441648878 +60509,260,great movie,1441648926 +60509,260,Science Fiction,1441648860 +60514,920,boring,1277928410 +60514,920,dated,1277928439 +60514,1183,boring,1277928459 +60514,1183,sentimental,1277928464 +60514,1183,war,1277928468 +60514,1562,camp,1277928269 +60514,1562,cheesy,1277928276 +60514,1562,terrible dialogue,1277928331 +60514,2437,Gay Lead Character,1277928577 +60514,2437,Jude Law,1277928585 +60514,2437,queer,1277928592 +60514,2437,Stephen Fry,1277928582 +60514,2437,topic:Oscar Wilde,1277928572 +60514,2448,predictable,1277928217 +60514,2628,fantasy,1277928747 +60514,2628,Samuel L. Jackson,1277928823 +60514,2628,sci-fi,1277928753 +60514,2628,space,1277928749 +60514,2628,Star Wars,1277928756 +60514,2628,terrible dialogue,1277928792 +60514,2628,terrible director,1277928785 +60514,3260,boring,1277928355 +60514,4467,Eric Idle,1277928095 +60514,4467,fantasy,1277928091 +60514,4467,Terry Gilliam,1277928086 +60514,4467,Trilogy of the Imagination,1277928106 +60514,4467,Uma Thurman,1277928109 +60514,8783,Atmospheric,1280253150 +60514,34405,Whedonesque,1280041340 +60514,54290,Why the terrorists hate us,1255930122 +60514,94959,delightful,1373230066 +60514,107130,bbc,1424066962 +60514,107130,doctor who,1424066962 +60514,107130,television industry,1424066962 +60519,733,Own,1139633268 +60519,1408,Own,1139632970 +60519,5902,Own,1139633175 +60520,296,dark comedy,1305076604 +60520,296,multiple storylines,1305076612 +60520,296,nonlinear,1305076614 +60520,1089,cult film,1305077855 +60520,1089,ensemble cast,1305077858 +60520,1089,nonlinear,1305077853 +60520,1089,notable soundtrack,1305077869 +60520,1089,religion,1305077861 +60534,260,1970s,1442796188 +60534,260,annimation,1442796162 +60539,2024,christianity,1368274195 +60539,34153,on hold,1138650140 +60571,27884,scrabble,1326945436 +60571,84952,japan academy prize winner,1328033904 +60571,84952,japanese,1328033898 +60571,84952,revenge,1328033895 +60571,84952,vengeance,1328033900 +60571,84952,youth,1328033902 +60573,260,not trek,1437780923 +60573,260,star,1437780913 +60573,260,wars,1437780917 +60580,260,classic,1441979650 +60637,364,animation,1375566907 +60637,364,coming of age,1375566976 +60637,364,Disney,1375566911 +60637,364,father-son relationship,1375566930 +60637,364,lions,1375566918 +60637,364,Oscar (Best Music - Original Song),1375566921 +60637,4823,Good Romantic Comedies,1375565878 +60637,4823,john cusack,1375565886 +60637,4823,Kate Beckinsale,1375565883 +60637,35836,comedy,1373399697 +60637,35836,funny,1373399693 +60637,35836,Steve Carell,1373399712 +60637,38061,funny,1373399745 +60637,70183,comedy,1376528294 +60637,70183,entertaining,1376528296 +60637,70183,Gerard Butler,1376528289 +60637,70183,Katherine Heigl,1376528291 +60637,76093,animation,1433015850 +60637,76093,dragons,1433015810 +60637,76093,Excellent Animation,1433015832 +60637,76093,fantasy,1433015819 +60637,76093,funny,1433015803 +60637,106749,dramatic,1421711018 +60637,106749,message of hope,1421711018 +60637,106749,nostalgic,1421711018 +60637,109853,cute!,1420836781 +60637,109853,easygoing,1420836781 +60637,109853,romantic comedy,1420836781 +60637,111680,bittersweet,1423355292 +60637,111680,nostalgia,1423355292 +60637,111680,romance,1423355292 +60637,116453,downbeat,1422440783 +60637,116453,silly woman,1422440783 +60637,116453,weird,1422440783 +60667,260,sci-fi,1437031108 +60667,260,space action,1437031119 +60667,260,special effects,1437031158 +60699,3949,addiction,1440966329 +60699,3949,drugs,1440966317 +60699,95441,Mila Kunis,1440966366 +60699,95441,Seth MacFarlane,1440966363 +60699,98809,adventure,1440966293 +60699,98809,magic,1440966299 +60722,45175,foreign,1160001341 +60734,527,atmospheric,1453588111 +60734,6870,mystery,1453019750 +60734,6870,thriller,1453019746 +60734,68157,alternate history,1453019700 +60734,68157,Christoph Waltz,1453019710 +60734,68157,dialogue,1453019689 +60734,90600,mystery,1453019806 +60734,97304,suspenseful,1453588036 +60734,97304,thriller,1453588043 +60734,99114,BOUNTY HUNTERS,1453019655 +60734,99114,good soundtrack,1453019657 +60734,99114,slavery,1453019642 +60734,99114,Soundtrack,1453019670 +60734,99114,violence,1453019649 +60734,99114,visually appealing,1453019673 +60734,99114,western,1453019645 +60734,104879,absorbing,1453019839 +60734,104879,atmospheric,1453019828 +60734,104879,mystery,1453019830 +60734,104879,thriller,1453019824 +60734,105504,suspense,1453588053 +60734,105504,tense,1453588056 +60734,106441,books,1453588152 +60734,106441,touching,1453588150 +60734,112556,annoying,1453019780 +60734,112556,thriller,1453019788 +60734,112556,unpredictable,1453019769 +60734,116897,black comedy,1453672694 +60734,116897,dark humor,1453672686 +60734,128360,Dialogue,1453019609 +60734,128360,tension building,1453019619 +60734,128360,Western,1453019606 +60734,143385,Cold War,1453588009 +60734,143385,Historical,1453588025 +60743,16,20060407,1144396544 +60743,16,robert de niro,1144396554 +60743,16,scorcese,1144396564 +60769,79796,ambush,1282119832 +60769,79796,England,1282119814 +60769,79796,Romans,1282119676 +60769,79796,violent,1282119644 +60769,91007,dark,1427089602 +60769,91007,television,1427089602 +60769,91007,violent,1427089602 +60774,1297,the gravy stain came out,1159150540 +60834,1252,atmospheric,1427390602 +60834,1252,cynical,1427390621 +60834,1252,Film Noir,1427390609 +60834,1252,noir thriller,1427390617 +60834,1252,Roman Polanski,1427390635 +60856,858,Mafia,1439563601 +60856,858,Marlon Brando,1439563589 +60856,4993,fantasy,1439563767 +60866,593,cannibalism,1289217691 +60866,593,crime,1289217671 +60866,593,disturbing,1289217662 +60866,593,psychology,1289217681 +60866,593,serial killer,1289217683 +60866,2671,afternoon section,1289217918 +60866,2671,girlie movie,1289217897 +60866,2671,Hugh Grant,1289217894 +60866,2671,Overrated,1289217906 +60866,2671,romance,1289217910 +60866,4975,existentialism,1289217034 +60866,4975,mindfuck,1289217039 +60866,4975,psychology,1289217069 +60866,4975,surreal,1289217044 +60866,5952,adventure,1289217553 +60866,5952,atmospheric,1289217575 +60866,5952,fantasy world,1289217559 +60866,5952,great soundtrack,1289217568 +60866,5952,high fantasy,1289217561 +60866,6155,Matthew McConaughey,1289218049 +60866,6155,not funny,1289218028 +60866,8531,black men dressed up like white women,1289217609 +60868,858,Al Pacino,1436291914 +60868,858,classic,1436291919 +60868,858,great acting,1436291922 +60868,858,Mafia,1436291912 +60868,858,masterpiece,1436291924 +60868,858,organized crime,1436291917 +60868,2726,heist,1436637136 +60868,2726,noir thriller,1436637140 +60868,57695,mental illness,1436372947 +60868,57695,schizophrenia,1436372934 +60873,1212,classic,1154018105 +60873,1212,My favourite of all,1154018102 +60878,293,Gary Oldman,1187712228 +60878,293,Jean Reno,1187712228 +60878,293,sniper,1187712228 +60878,345,transgender,1187710385 +60878,345,transvestites,1187710385 +60878,413,comedy,1187709448 +60878,540,erotic,1187709478 +60878,540,mystery,1187709478 +60878,540,suspense,1187709478 +60878,707,cult film,1187709472 +60878,954,classic,1187709557 +60878,999,cherlize theron,1187710022 +60878,1100,car chase,1187709597 +60878,1100,race,1187709597 +60878,1100,racing,1187709597 +60878,1245,drama,1187709537 +60878,1245,gangsters,1187709548 +60878,1298,cult film,1187709474 +60878,1298,music,1187709474 +60878,1416,musical,1187709575 +60878,1441,drama,1187709452 +60878,1441,love story,1187709452 +60878,1673,70s,1187712354 +60878,1673,pornography's influence,1187712354 +60878,1779,sci-fi,1187709484 +60878,1916,Christina Ricci,1187712149 +60878,1916,Vincent Gallo,1187712149 +60878,2125,fairy tale,1187709610 +60878,2423,comedy,1187709440 +60878,2423,holiday,1187709440 +60878,2428,horror,1187709530 +60878,2858,cheerleading,1187710802 +60878,2858,Lolita-fetish,1187710802 +60878,2858,midlife crisis,1187710802 +60878,2951,western,1187709499 +60878,3214,bicycling,1187710826 +60878,3214,Kevin Costner,1187710826 +60878,3535,adapted from:book,1187711867 +60878,3649,gigolo,1187710897 +60878,3649,prostitution,1187710897 +60878,3649,Richard Gere,1187710897 +60878,4713,sensory deprivation,1187710672 +60878,4973,Audrrey Tatou,1187710726 +60878,5666,college,1187712303 +60878,5666,drinking,1187712303 +60878,5666,drugs,1187712303 +60878,5666,violence,1187712303 +60878,6070,Erotic,1187712468 +60878,6373,fantasy,1187709464 +60878,6373,sci-fi,1187709455 +60878,7024,domination,1187712426 +60878,7024,sadism,1187712427 +60878,7024,torture,1187712427 +60878,7173,Ben Stiller,1187710626 +60878,7173,jennifer aniston,1187710626 +60878,7193,Andrew Dice Clay,1187710342 +60878,8798,action,1187709509 +60889,1921,black and white,1252710999 +60889,1921,music,1252711008 +60916,35957,Weak ending -- would be nice to see the girl arrested or at least questioned at the end,1137656038 +60918,2329,edward furlong,1150236148 +60933,34437,Bill Murray,1453823146 +60933,34437,bittersweet,1453823162 +60933,34437,melancholic,1453823152 +60933,34437,road trip,1453823164 +60942,16,DeNiro,1137715220 +60942,16,gangster,1137715220 +60942,16,Pesci,1137715220 +60942,16,Vegas,1137715220 +60942,94,Portman,1147041846 +60942,110,brutal,1137715183 +60942,110,drama,1137715183 +60942,110,epic,1137715183 +60942,223,hillarious,1137715438 +60942,223,Kevin Smith,1137715438 +60942,253,Anne Rice,1147052832 +60942,333,Chris Farley,1147655702 +60942,428,DeNiro,1147657086 +60942,454,lawyer,1147052811 +60942,493,O-Dog,1147657070 +60942,494,Harrison Ford,1147053444 +60942,543,head movie,1147656072 +60942,832,GIVE ME BACK MY SON!,1147053477 +60942,1042,boy band,1147655599 +60942,1080,funny,1147053235 +60942,1092,Erotic,1147655939 +60942,1211,Nick Cave and the Bad Seeds,1198876694 +60942,1219,classic,1147041357 +60942,1252,Nicholson,1147042011 +60942,1258,Nicholson,1147053673 +60942,1270,DeLorean,1147052666 +60942,1302,Costner sucks,1147655548 +60942,1343,scorsese,1147655535 +60942,1407,fun movie,1147053297 +60942,1485,blooper reel,1147053461 +60942,1784,Nicholson,1147041967 +60942,2005,Sloth,1147655905 +60942,2118,Christopher Walken,1147053702 +60942,2447,MTV,1147656795 +60942,2976,ambulance,1147656555 +60942,2976,Nicolas Cage,1147656555 +60942,2987,Jessica Rabit...Yeah baby!,1147053048 +60942,3105,DeNiro,1147656418 +60942,3147,loooooooooooooong,1147053646 +60942,3499,Stephen King,1137715451 +60942,3752,Farelly Brothers,1147656388 +60942,3911,mockumentary,1147041982 +60942,4306,animation,1137715297 +60942,5292,hillarious,1137715097 +60942,5292,hockey,1137715097 +60942,5464,organized crime,1147656245 +60942,7293,Sandler,1147041890 +60942,31689,pornalicious,1143406077 +60942,46578,hilarious!,1159149545 +60942,48385,Los Angeles,1175197506 +60979,260,franchise,1436805677 +60979,260,sci fi,1436805667 +60979,27317,Slow build,1436806738 +60979,35636,awkward romance,1436806127 +60979,35636,plot holes,1436806127 +60979,35636,so bad it's good,1436806127 +60979,52722,So bad it's good,1436806402 +60979,86898,too much religion,1436964287 +60981,1193,Jack Nicholson,1316411421 +60981,1194,hippie,1312575495 +60981,1194,marijuana,1312575487 +60981,1194,stoner comedy,1312575489 +60981,1288,classic,1312485255 +60981,1288,cult,1312485298 +60981,1288,mockumentary,1312485286 +60981,1288,rock and roll,1312485280 +60981,1288,witty,1312485275 +60981,1884,based on a book,1312729198 +60981,1884,drugs,1312729179 +60981,1884,Hunter S. Thompson,1312729156 +60981,1884,Johnny Depp,1312729159 +60981,1884,satirical,1312729186 +60981,1884,social commentary,1312729188 +60981,2019,atmospheric,1299966432 +60981,2019,black and white,1299966459 +60981,2019,samurai,1299966422 +60981,2019,western,1299966438 +60981,2288,aliens,1319229446 +60981,2288,horror,1319229448 +60981,2288,Kurt Russell,1319229456 +60981,2288,shape shifter,1319229464 +60981,2571,cyberpunk,1299966770 +60981,2571,martial arts,1299966752 +60981,2571,philosophical,1299966767 +60981,2571,post-apocalyptic,1299966785 +60981,2571,surreal,1299966756 +60981,2571,thought-provoking,1299966761 +60981,3052,Comedy,1318944998 +60981,3052,Kevin Smith,1318944984 +60981,3052,satire,1318944987 +60981,3074,atmospheric,1319480831 +60981,3074,bleak,1319480836 +60981,3074,gritty,1319480838 +60981,3074,mountain man,1319480843 +60981,3074,Robert Redford,1319480847 +60981,3074,wilderness,1319480844 +60981,3081,Christopher Walken,1299965957 +60981,3081,gothic,1299965960 +60981,3081,Johnny Depp,1299965949 +60981,3081,Tim Burton,1299965945 +60981,3578,Rome,1313177801 +60981,3578,Russell Crowe,1313177766 +60981,3578,shallow plot,1313177742 +60981,3578,violent,1313177758 +60981,4624,black comedy,1312574946 +60981,4624,drugs,1312575001 +60981,4624,gross,1312574994 +60981,4624,Peter Jackson,1312574959 +60981,4624,surreal,1312574964 +60981,5747,atmospheric,1313177846 +60981,5747,World War I,1313177839 +60981,6188,Luke Wilson,1312575401 +60981,6188,quirky,1312575410 +60981,6188,Will Ferrell,1312575402 +60981,6755,B-movie,1299966222 +60981,6755,Bruce Campbell,1299966185 +60981,6755,quirky,1299966213 +60981,6947,historical,1312666453 +60981,6947,Russell Crowe,1312666488 +60981,6947,tallships,1312666451 +60981,8376,camp,1312574606 +60981,8376,high school,1312574637 +60981,8376,nerds,1312574613 +60981,8376,quirky,1312574649 +60981,8376,quotable,1312574616 +60981,8376,random,1312574626 +60981,8376,seen more than once,1312574630 +60981,8865,dieselpunk,1312582877 +60981,8865,overly stylised,1312582884 +60981,8865,underdeveloped plot,1312620586 +60981,8917,political commentary,1312575057 +60981,8917,politics,1312575049 +60981,8917,puppets,1312575061 +60981,8917,stupid,1312575046 +60981,26082,bleak,1312753413 +60981,26082,cinematography,1312753434 +60981,26082,Samurai,1312753402 +60981,31658,animation,1300189221 +60981,31658,anime,1300189215 +60981,31658,magic,1300189230 +60981,31658,war,1300189255 +60981,31658,wizards,1300189257 +60981,31660,atmospheric,1300301950 +60981,31660,steampunk,1300301922 +60981,32587,black comedy,1299966008 +60981,32587,stylized,1299965998 +60981,34405,black comedy,1299264464 +60981,34405,Space Western,1299264453 +60981,59143,Documentary,1316349871 +60981,59143,drugs,1316349819 +60981,59143,Marijuana,1316349853 +60981,59143,stand-up comedy,1316349828 +60981,71057,dark fantasy,1312572883 +60981,71057,Lame Ending,1312572924 +60981,71057,post-apocalyptic,1312572887 +60981,71057,visually appealing,1312572908 +60981,71156,humorous,1318795304 +60981,71156,PSYCHIC ABILITIES,1318795298 +60981,71156,weak ending,1318795271 +60981,71535,Bill Murray,1299966057 +60981,71535,post-apocalyptic,1299966092 +60981,71535,zombies,1299966062 +60981,74553,animation,1316455163 +60981,74553,Atmospheric,1316455150 +60981,74553,fantasy,1316455128 +60981,74553,Ireland,1316455143 +60981,74553,medieval,1316455136 +60981,74553,Underdeveloped,1316455186 +61016,260,endeavour,1438570604 +61016,260,epic,1438570584 +61016,260,galactic,1438570572 +61016,260,quest,1438570582 +61016,260,space adventure,1438570576 +61016,5952,Epic,1438571185 +61016,122882,post apocalyptic,1438570965 +61016,122882,quest,1438570965 +61016,122882,revenge as motive,1438570965 +61029,91529,dark,1345539518 +61029,91529,fantasy,1345539518 +61048,4993,middle earth,1199544453 +61048,54276,chef,1199544283 +61048,54276,cooking,1199544283 +61082,260,good vs evil,1433722255 +61082,260,Science Fiction,1433722240 +61108,260,action,1440631566 +61108,260,classic,1440631582 +61108,260,sci-fi,1440631561 +61108,260,space opera,1440631573 +61123,111,Classic,1335748662 +61123,111,Martin Scorsese,1335748649 +61123,111,New York City,1335748651 +61123,111,Robert De Niro,1335748650 +61123,111,social commentary,1335748654 +61123,480,based on a book,1335747803 +61123,480,dinosaurs,1335747788 +61123,480,genetics,1335747794 +61123,480,sci-fi,1335747792 +61123,480,science,1335747808 +61123,480,Steven Spielberg,1335747789 +61123,2730,18th century,1341764628 +61123,2730,Kubrick,1341764567 +61123,2730,Stanley Kubrick,1341764550 +61123,3949,atmospheric,1337042972 +61123,3949,dark,1337042971 +61123,3949,drugs,1337042962 +61123,3949,loneliness,1337042964 +61123,3949,psychology,1337042965 +61123,3949,social commentary,1337042967 +61123,4713,drugs,1341764660 +61123,4713,ominous,1341764663 +61123,4713,psychedelic,1341764661 +61123,4713,science fiction,1341764668 +61123,4713,trippy,1341764666 +61123,5608,based on a true story,1335747874 +61123,5608,mass behavior,1335747875 +61123,5608,psychological,1335747880 +61123,5608,psychology,1335747876 +61123,5608,thought-provoking,1335747884 +61123,8582,business,1344213687 +61123,8582,Chomsky,1344213658 +61123,8582,corruption,1344213668 +61123,8582,documentary,1344213670 +61123,8582,intelligent,1344213696 +61123,8582,propaganda,1344213663 +61123,8582,war,1344213666 +61123,44761,clever,1335747977 +61123,44761,detective movie,1335747982 +61123,44761,film noir,1335747979 +61123,44761,genius,1335747993 +61123,44761,murder,1335747997 +61123,44761,stylized,1335747999 +61123,77658,astronomy,1335748382 +61123,77658,atheism,1335748414 +61123,77658,biology,1335748389 +61123,77658,Carl Sagan,1335748408 +61123,77658,earnest,1335748420 +61123,77658,enlightening,1335748418 +61123,77658,evolution,1335748394 +61123,77658,irreligion,1335748396 +61123,77658,nature,1335748399 +61123,77658,physics,1335748387 +61123,77658,science,1335748385 +61123,89745,Mark Ruffalo,1338248942 +61123,89745,predictable,1338248957 +61123,89745,Robert Downey Jr.,1338248907 +61123,89745,Scarlett Johansson,1338248948 +61123,89745,superhero,1338248913 +61123,91529,Batman,1344042039 +61123,91529,Christian Bale,1344042037 +61123,91529,Christopher Nolan,1344042032 +61123,91529,Morgan Freeman,1344042043 +61123,91529,unsatisfying ending,1344042028 +61123,92058,body horror,1335748576 +61123,92058,genital mutilation,1335748571 +61135,260,sci-fi,1432644098 +61135,260,space opera,1432644084 +61145,260,awesome,1442097376 +61162,138036,slight romance,1451711946 +61162,138036,spy,1451711931 +61162,138036,stylish,1451711940 +61178,29,dark fantasy,1295251006 +61178,29,surreal,1295251011 +61178,589,action,1250693308 +61178,589,assassin,1250693327 +61178,589,classic,1252873269 +61178,589,computers,1252873272 +61178,589,cyborgs,1250693313 +61178,589,dystopia,1250693289 +61178,589,END OF THE WORLD,1250693340 +61178,589,future,1252873273 +61178,924,based on a book,1252873233 +61178,924,cerebral,1252873238 +61178,924,cult film,1250693409 +61178,924,Mindfuck,1250693415 +61178,924,sci-fi,1250693432 +61178,924,Stanley Kubrick,1250693399 +61178,924,Stoner Movie,1250693402 +61178,924,surreal,1250693406 +61178,1175,dark humor,1295251061 +61178,1175,quirky,1295251058 +61178,1199,atmospheric,1270858012 +61178,1199,bureaucracy,1270858041 +61178,1199,dystopia,1270858034 +61178,1199,hallucinatory,1270858050 +61178,1199,surreal,1270858026 +61178,1199,Terry Gilliam,1270858018 +61178,1218,Chow Yun Fat,1295248426 +61178,1240,Action,1250693118 +61178,1240,Arnold Schwarzenegger,1250693125 +61178,1240,assassin,1250693171 +61178,1240,dystopic future,1250693129 +61178,1240,murder,1250693183 +61178,1240,Saturn Award (Best Science Fiction Film),1250693132 +61178,1240,Thriller,1250693188 +61178,1240,time travel,1250693145 +61178,1263,Christopher Walken,1250693560 +61178,1263,imdb top 250,1250693554 +61178,1263,Oscar (Best Directing),1250693548 +61178,1263,Oscar (Best Supporting Actor),1250693550 +61178,1263,surreal,1250693537 +61178,1263,unique,1252873254 +61178,1961,psychiatry,1227018643 +61178,2019,Akira Kurosawa,1295248307 +61178,2019,black and white,1295248334 +61178,2019,epic,1295248303 +61178,2019,Japan,1295248327 +61178,2019,samurai,1295248329 +61178,2019,toshiro mifune,1295248320 +61178,2288,aliens,1267452937 +61178,2288,Antarctica,1267452939 +61178,2288,horror,1267452961 +61178,2288,John Carpenter,1267452944 +61178,2288,Kurt Russell,1267452947 +61178,2288,paranoia,1267452964 +61178,2288,remake,1267452968 +61178,2571,Action,1270857912 +61178,2571,atmospheric,1270857929 +61178,2571,cyberpunk,1270857934 +61178,2571,dystopia,1270857945 +61178,2571,Keanu Reeves,1270857948 +61178,2571,sci-fi,1270857916 +61178,2571,virtual reality,1270857940 +61178,2959,Brad Pitt,1270858118 +61178,2959,disturbing,1270858133 +61178,2959,Edward Norton,1270858122 +61178,2959,social commentary,1270858138 +61178,2959,twist ending,1270858126 +61178,3022,Buster Keaton,1254162692 +61178,3527,action,1270857883 +61178,3527,Arnold Schwarzenegger,1270857873 +61178,3527,dialogue,1270857854 +61178,3527,hunting,1270857861 +61178,3527,military,1270857835 +61178,3527,sci-fi,1270857819 +61178,3527,violent,1270857825 +61178,3527,weapons,1270857812 +61178,3993,psychiatry,1252873257 +61178,4874,aliens,1252082876 +61178,4874,DVD-Video,1252082870 +61178,4874,philosophical,1252082830 +61178,4874,psychiatrist,1252082798 +61178,5026,18th century,1295918442 +61178,5026,martial arts,1295918429 +61178,5196,arabs,1313436075 +61178,5196,Betamax,1313436220 +61178,5196,colonialism,1313436128 +61178,5196,Irene Papas,1313436211 +61178,5196,less than 300 ratings,1313436226 +61178,5196,libya,1313436053 +61178,5196,national liberation,1313436166 +61178,5196,Oliver Reed,1313436086 +61178,5196,resistance movement,1313436198 +61178,5903,dystopia,1270858232 +61178,6104,Monty Python,1277404362 +61178,6104,sketch comedy,1277404372 +61178,6515,fugitive,1276610194 +61178,6689,army,1261505254 +61178,6689,Shia LaBeouf,1261505243 +61178,7022,brutal,1295248502 +61178,7022,survival,1295248510 +61178,7022,Takeshi Kitano,1295248512 +61178,7773,High school violence,1255880931 +61178,7773,R,1255880945 +61178,7773,To See,1255880935 +61178,8372,good animation,1258760002 +61178,8372,Jennifer Love Hewitt,1258759984 +61178,8640,Arthurian legend,1270857667 +61178,8640,battle,1270857674 +61178,8640,knights,1270857657 +61178,8640,pagan,1270857692 +61178,8894,killer whale,1277181915 +61178,26082,Criterion,1254162775 +61178,26082,Japan,1254162803 +61178,26082,Masaki Kobayashi,1254162791 +61178,26082,Samurai,1254162784 +61178,26082,suicide,1254162781 +61178,26082,tense,1254162800 +61178,26082,To See,1254162820 +61178,26241,controversial,1272889030 +61178,26241,Ken Russell,1269182281 +61178,26241,Vanessa Redgrave,1272889040 +61178,26681,John Woo,1295248466 +61178,26934,insane,1303334089 +61178,27109,revenge,1254860545 +61178,27109,samurai,1254860551 +61178,27731,sttrange story,1284928956 +61178,27905,confusing,1295820826 +61178,27905,visually appealing,1295820816 +61178,47200,action packed,1271457356 +61178,47200,adrenaline,1270857569 +61178,47200,sexism and stupidity,1252873219 +61178,47200,stupid,1271457371 +61178,48394,atmospheric,1270858165 +61178,48394,fascism,1270858198 +61178,48394,visually appealing,1270858187 +61178,48682,cross dressing,1277396293 +61178,48682,Iran,1277396266 +61178,51255,action,1270858353 +61178,51255,black comedy,1270858333 +61178,51255,Simon Pegg,1270858336 +61178,53189,misfits,1314006287 +61178,54995,zombies,1274909343 +61178,56788,afghanistan,1297727633 +61178,56788,based on a true story,1297727665 +61178,56788,cold war,1297727623 +61178,56788,politics,1297727677 +61178,58379,bela b,1303684324 +61178,58379,black humour,1303684359 +61178,58379,mobbing,1303684483 +61178,58379,music,1303684420 +61178,58379,violence,1303684395 +61178,59900,exaggerated,1269299432 +61178,59900,Israeli/Palestinian conflict,1269299409 +61178,59900,over the top,1269299423 +61178,60389,warpigs,1258401124 +61178,64716,very slow,1270945110 +61178,65261,anime,1284928739 +61178,65261,Ghibli,1284928745 +61178,65261,hand drawn,1284928763 +61178,65261,Hayao Miyazaki,1284928748 +61178,65261,strange story,1284928753 +61178,68205,fast paced,1271462472 +61178,68205,stupid,1271462490 +61178,73211,disease,1276030266 +61178,85412,conspiracy,1308647481 +61178,85412,mockumentary,1308647464 +61178,85412,norwegian,1308647405 +61178,85412,scandinavia,1308647410 +61178,85412,trolls,1308647414 +61178,86432,algeria,1313842899 +61178,86432,national liberation,1313843629 +61200,3300,anti-hero,1276590797 +61200,3300,Riddick,1276590818 +61200,4256,molly parker,1313995342 +61200,4256,prostitution,1313995350 +61200,47970,Zach Braff,1279618660 +61200,48385,borat,1273147563 +61200,48385,pamela anderson,1273147573 +61200,48385,sacha baron cohen,1273147569 +61200,48520,Dane Cook,1277378333 +61200,54503,comedy,1277130638 +61200,54503,Michael Cera,1277130611 +61200,54503,Seth Rogen,1277130618 +61200,55205,dialogue driven,1272982325 +61200,55205,sienna miller,1272982325 +61200,55205,Steve Buscemi,1272982329 +61200,72169,Chris Rock,1273147475 +61200,72169,Documentary,1273147494 +61200,72169,Weaves,1273147479 +61200,73321,Mila Kunis,1277285389 +61200,73321,post-apocalyptic,1277285383 +61200,73321,Stylistic,1277285409 +61200,75341,Emilie de Ravin,1277285302 +61200,75341,heavy handed ending,1277285256 +61200,75341,Pierce Brosnan,1277285319 +61200,75813,Edward Norton,1276590745 +61200,76251,funny,1273829611 +61200,76251,humor,1273829658 +61200,76251,superhero,1273829641 +61200,76251,vigilante,1273829609 +61200,80489,Ben Affleck,1309757033 +61200,81932,Christian Bale,1309756955 +61200,81932,Terrible fight scenes,1309756974 +61200,86293,funny,1312706337 +61200,86293,russel brand,1312706332 +61200,86332,Kat Dennings,1317039252 +61200,86332,Natalie Portman,1317039239 +61200,106782,unsatisfying ending,1390150274 +61200,106920,Human Computer Interaction,1390150196 +61200,106920,Scarlett Johansson,1390150189 +61229,260,Science Fiction,1443286445 +61229,260,space,1443286454 +61250,88140,superhero,1432973150 +61250,88140,The Avengers,1432973187 +61250,95510,bad follow-up,1433855220 +61250,95510,based on a comic,1433855220 +61250,95510,popcorn movie,1433855220 +61261,93422,comedy,1426966631 +61261,93422,happy ending,1426966631 +61261,93422,québécois,1426966631 +61261,112552,drama,1425139517 +61261,112552,good music,1425139517 +61261,112552,jazz,1425139517 +61268,94864,aliens,1343641316 +61268,94864,character motivation,1343641388 +61268,94864,Michael Fassbender,1343641324 +61268,94864,Ridley Scott,1343641404 +61268,94864,scifi,1343641361 +61285,4565,Can't remember,1185879179 +61286,6942,british,1253457493 +61287,6867,quirky,1299277197 +61292,260,sci-fi,1439798505 +61292,260,space epic,1439798513 +61307,2571,hackers,1442107980 +61307,2571,sci-fi,1442107972 +61310,260,classic sci-fi,1435923734 +61310,260,space,1435923720 +61310,296,art,1436881697 +61310,296,tarantino,1436881697 +61310,296,witty,1436881697 +61310,356,biography,1435933197 +61310,356,funny,1435933197 +61310,356,witty,1435933197 +61319,260,cult classic,1441317453 +61319,260,sci-fi,1441317446 +61325,5500,musical,1206325957 +61325,5500,punny,1206325957 +61325,5500,Val Kilmer,1206325957 +61325,53318,british,1206339553 +61325,53318,grocery store,1206339160 +61325,53318,insomnia,1206339114 +61325,53318,Nudity (Full Frontal),1206339146 +61325,53318,stopping time,1206339114 +61325,53318,surrealism,1206339134 +61325,53318,time,1206339144 +61325,55908,entirely dialogue,1206325860 +61325,55908,one set,1206325860 +61332,1231,NASA,1451353000 +61332,1231,space program,1451353004 +61332,2501,space,1451353093 +61332,110407,artificial intelligence,1451231844 +61332,110407,Turing test,1451231850 +61332,115713,artificial intelligence,1451232023 +61332,115713,turing test,1451232033 +61332,116797,Alan Turing,1451231953 +61332,116797,computer science,1451231959 +61332,116797,cryptography,1451231979 +61354,260,adventure,1436162416 +61354,260,comedy,1436162466 +61354,260,coming of age,1436162388 +61354,260,friendship,1436162397 +61354,260,oldie but goodie,1436162434 +61354,260,underdog story,1436162443 +61364,4725,Paras kauhu leffa ikuna!!! Eli best horror ever!,1137262368 +61399,6754,Owned,1198257789 +61405,5839,family relationships,1371005846 +61405,5839,Provence,1371005805 +61405,27156,sci-fi,1371006074 +61405,32657,ecological,1371005907 +61415,617,Bibliothek,1147897530 +61431,340,Kevin Pederast,1191578282 +61431,1175,This Would Have Been Funnier If It Was A Horror Film,1148377492 +61431,1208,'Oh The Whore-ror!',1191578946 +61431,1247,'Wow Mrs. Robinson Your Porridge Is Just Right!',1199786611 +61431,1345,'Carrie I Don't Wanna Rain On Your Parade But That's Not Fruit Punch',1199785915 +61431,1372,'Oh Spock! Oh Jim! Oh Bones!' WTF!? Et Tu Herr Doktor? Heil!,1199790882 +61431,1502,Of Course It's Rigid! The Dude's In Full Rigor!,1188135822 +61431,1508,All Of A Sudden You Feel Guilty About Bangin' Yer Own Daughter Why Stop Now?,1188135567 +61431,1554,Ewe Mean Sausage McHoody With Eggs,1193727390 +61431,1674,'I Guess Repression Does Have It's Moments After All',1199792429 +61431,2076,'It's Not Where Your Dreams Take You But Who You Take In Your Dreams' hahaha!,1199793444 +61431,2087,'And Just What Do You Think You're Doing Mr. Smeee?',1199188531 +61431,2202,You Mean It's Over Inflated!,1165907597 +61431,2268,'That's All An Inmate Wants...Simple Pleasures',1199790165 +61431,2275,Guy Pierce With Dweeb Focals,1188136958 +61431,2359,'Didn't This Already Happen To Bernie?',1199794908 +61431,2745,Was The Mission About Finding A Position?,1156514051 +61431,3030,You Only Got 2 Bullets. I Have A Sword. You Will Miss. I Won't.,1188306068 +61431,3101,'Hey Dan Do You Mind Having Rabbit Stew For A Pick-Me-Up?',1199788802 +61431,3148,the book was bettah,1238916171 +61431,3192,Great Anti-Abortion Film,1188134662 +61431,3471,'Stop Banging The Doorbell I'm Landscaping My Kitchen Sink!',1199787451 +61431,3660,'I Can't Get That Theme Song Out Of My Head',1188137145 +61431,3709,Perfect Use Of Johnny & Santo's 1 Hit Wonder,1188137075 +61431,3755,'On A Steel Horse I Ride I'm Wanted (waaaanteeddd) Dead Or Alive',1199789321 +61431,4719,The 5-Second Rule Never Applies Near Animals Or In Zoos,1148368037 +61431,4975,Re-Fried For U.S.,1229209625 +61431,4978,The Mother Of Connect-The-Dots Flix (Grand Canyon/Crash/ETC),1148369277 +61431,5319,'Don't Watch 'Criminal' Totally Butchered',1206392290 +61431,5807,'Yeah The Test Audience Thought That Was A Better Title...More Upbeat',1199789719 +61431,5956,'Know Why I Like Butchering Pigs? It's Like Killing Cops But Without The Jail Time',1199793962 +61431,5992,even crazy people like to be asked out,1238908120 +61431,5995,'The What?!',1199789851 +61431,6286,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1165479239 +61431,6294,With A Name Like Chew Yer Fat A Crossover Is Not Possible,1141047000 +61431,6301,Even Dweebs Go Psycho If You Keep Making Fun Of Their Glasses,1165481066 +61431,6511,"'H Christ!""",1199787732 +61431,6656,'Why Is Everyone Running Around With Puppets Up Their A**?!',1199791485 +61431,6708,'Alison Lohman Stole The Whole Damn Film',1199793030 +61431,6713,Animated Woody Allen Film...If He Made One,1188135930 +61431,6914,'I Have Never Had Any Foreign Relations With That Woman Hillary Lewinsky',1199790341 +61431,6963,...'Livin' In An Amish Paradise',1199187737 +61431,7143,'The Ninja Assault Gets A 3peat',1200134352 +61431,7442,"Just Great. Now Every1 Knows Ewan Is ""Hooded""",1188134551 +61431,7828,'And When The Germans Came Over The Ridge They Suddenly Went Blind!',1199788455 +61431,7925,'Is That What He Called It?',1193728039 +61431,8295,Wasn't That Human Played By Ice-T?,1156513899 +61431,8367,If The Director Doesn't Care 2 Flesh Out A Film Why The Hell Should I Care What Happens 2 The Characters?,1176529526 +61431,8369,More Like Plothunters Or Why Did I Watch This?,1188136463 +61431,8505,'Is That What She Calls It?',1191582075 +61431,8720,Loved The Mouse Wake-Up,1188134779 +61431,8862,9ine Queens Was A Better Title...& Film,1188135170 +61431,8919,Hmmm I Wonder How Many Counselors Do Their Jobs Like That!,1188134965 +61431,26413,'That's Where You Enter From Behind After A Running Jump',1199791846 +61431,26464,Just Another F***ing A-Hole!,1187511672 +61431,26688,He Loses All Credibility When He Runs LOL!,1186998030 +61431,26696,Cynthia(Deborah Rennard) Was The Only Performer To Watch In This Drek! More Like L I O N A S S!,1187509170 +61431,26840,Takeshi Definitely Beat This Genre To The Ground,1150518353 +61431,27432,Fight For Your Dreams Because People Are Dying For Theirs,1148368904 +61431,27664,A Married Couples Excuse To Shag On Film,1187004006 +61431,27689,Merde!,1188133235 +61431,27846,Like Michael Crichton Sez Help Stop Gene Patenting! Or Sooner Than Later You Won't Even Own Your Cells!,1165480194 +61431,27904,Zoom In & Slo-Mo The Porking Scene With Ridin' Winona,1187004162 +61431,31410,'You Know What They Say About Short Men With Little Toes',1199187528 +61431,31617,'This Is My Gun. I Love To Touch My Gun. Touch My Gun.',1191583169 +61431,32582,A Deadhead With A Parrot Fetish,1148353209 +61431,32600,Tailoring Would Be Back In Style If More Women Appreciated Clothes In THAT Way!,1148369586 +61431,33358,Mrs. Jones Distracted Me The Whole Movie,1188134400 +61431,33592,Being Prostituted By Your Husband Is Never Romantic!,1187510295 +61431,33649,Wonderful Asian Film That Shows Why We Shouldn't Hide Who We Really Are,1150520390 +61431,33817,Emily Blunt Is Sooo Very... She Was Amazing In Irresistable,1150520196 +61431,33823,Please Stop Re-Frying Books That Suck Donkey D***!,1150520053 +61431,34271,We All Gotta Have A Dream,1140487034 +61431,34323,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1150519782 +61431,34338,When It Comes Down To It Toilet Humor Always S(m)ells,1148374124 +61431,34437,It's The Journey Not The Destination That We Should Enjoy,1148369890 +61431,34542,Never Ever Discuss Your Lack Of Game To Wild Bears!,1140487310 +61431,35957,Never Trust Euro-Looking A-Holes @ The Airport.Com,1140487180 +61431,36517,'There's A Lotta These At Used Book Stores...Hmmm I Wonder Why It Sucks That Bad',1199188139 +61431,36529,I Don't Think Arms Dealers Look Anything Like Nick Cage,1140486341 +61431,36535,Where Can I Learn To Speak English Like That?,1188136779 +61431,36537,Teen Induced Angst Overdose,1140486260 +61431,37380,Half-Assed Productions,1140485781 +61431,37386,How Come Charlize Can Play A Serial Killer But She Can't Show More Skin Oh Come On!,1150518639 +61431,37729,Tim Burton Hits Another One Out Of The Cemetery,1140486102 +61431,37731,They Made This Already And It Was Titled: Football Factory It's Way Better Than This Re-Hash,1193728738 +61431,37853,Millions Of Dollars In Drugs Or One Hot Girlfriend...You Choose,1148369786 +61431,37855,Brighton Beach Memoirs & Juliana Moore,1219796563 +61431,37857,No Wonder Carneys Love The Life,1148370339 +61431,38188,What's Really Scary Is That There's People Like That In Real Life!,1150519367 +61431,38992,Isn't Renee Russo Like 100 Years Old? Matt! What Were You Thinking?,1150518853 +61431,39183,Cow Pokin' In Them Thar Hills,1186154729 +61431,39414,Steve Martin Is Scraping The Bottom HARD!,1146301137 +61431,39427,I Just Kept Hearing Massive Attack After The Car Accident,1188135701 +61431,40414,But What Did They Do After New Years: Resolve To Kill ALL My Enemies,1165480787 +61431,41285,It Just Goes To Show Ya Once The Ring Goes On It's Just Leftovers,1148354134 +61431,41571,"Years Of Degredation And Humiliation And They Sell Your ""Mizuage"" To The Creepiest Keymaster",1148371021 +61431,41617,Even Princesses Want To Have Pig Sex Now & Again...& Again,1148353739 +61431,41997,Stop Killing Each Other You're Neighbors!,1148354481 +61431,42004,It's Not Just A Phase It's Really A Way Of Life,1150518086 +61431,42018,When You're Stressed Out Nudity Works Wonders For Your Nerves,1150517966 +61431,42418,No Matter What Century It Is Jungle Fever Is Very Contagious!,1148369725 +61431,42718,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1156513281 +61431,42721,I Guess Nude Terminators Can't Kill A Really Bad Film,1150517835 +61431,42723,Oh No This Film Doesn't Promote Murder & Suffering It Just Encourages It!,1150517733 +61431,42725,Nick Swardson Should Have Been Lead His Timing Was Sic!,1150517472 +61431,42728,The Whole Tromeo & Juliet Threw Me Off But Thank Gawd They Didn't Talk Like Bill The Spear Shaker,1176530851 +61431,42734,What If The Big Bad Wolf & Grandma Were Swapping Spit?,1148353447 +61431,43556,An Orifice & A Gentle Hand Refried For '06,1148353063 +61431,43928,Read All The Negative Reviews & Save 2 Hours Of Your Life!,1141692018 +61431,44511,'Lemme Get This Straight. You Have No Idea Who You Are But You Wanna Be Famous?',1199794647 +61431,44759,If I See One More Roast Beef Sandwich You Will Smell My Reaction,1149799301 +61431,45062,"Obviously Hillary Had A Different Meaning For ""Secret Service""",1148352677 +61431,45186,Ethan Hunt Should Stop Hogging The Screen!,1148354318 +61431,45431,'Priceline Negotiator!',1199794753 +61431,45442,The Power Of The P,1188306816 +61431,45730,Believe In Your Ability To See Stoopid Plotlines,1187003728 +61431,45732,Not Even Uma Could Save This Dizaster! Wanda Yikes!,1165907790 +61431,46322,It's Not Size Of Your Stick But Why You Keep On Swingin' It!,1165479704 +61431,46530,'So How Did Lois Survive Date Nite?',1193728929 +61431,46967,A Comedy Version Of Matchpoint,1187003403 +61431,48043,You Would Do Anything In The Universe To Get Rachael Weisz Back As Well,1165476318 +61431,48304,Or How The Last Of The Mohican Killed The Predator Escaping From The Thunderdome,1176535724 +61431,48385,'I Want To Meke Romance Explosion On Her Stomatch!',1187001882 +61431,48412,Kevin Cockner & Asstin Goocher Guarding Each Others Happy Holes,1187002415 +61431,48516,You Know It's Bad If It's Been Reheated...Again,1161836644 +61431,48520,No Amount Of Silly Cone Can Save A Steaming Pile Of Shitzu Like This,1165477489 +61431,48698,my child let me show you how firm my faith is,1217408238 +61431,48744,'Double Fudge Bus',1191582293 +61431,49265,Rwanda Genocide,1207014192 +61431,49265,Rwandan Genocide,1207014268 +61431,49272,Bond Would Never Ever Be Caught Driving A Frikkin FORD,1165476615 +61431,49278,Oh The Things I Could Do If Snow White Were A Console,1165476513 +61431,49314,What Happens To Batman When He Loses The Wayne Fortune,1168059331 +61431,49347,'There's Shit In The Meat!',1187001712 +61431,49961,'I Had No Idea That You Were A F****** Vampire!',1187000189 +61431,50068,It's Biased When Watanabe Uses A 45 And Kills Himself,1170300799 +61431,50442,Just In Timber Cake Must Die!,1173260824 +61431,50872,Pixar's Formula Starting To Get Stale,1186153979 +61431,51037,'It's Just Hostel 3 With Better Actors',1197282577 +61431,51255,It Just Keeps Getting Better,1186999031 +61431,51412,What's Up With The Da Vinci Hair Do,1186999362 +61431,51418,Not Another Mingella Stretcher! We Hates Them!,1187511268 +61431,51709,After The Reveal The Story Went Back Down And Never Came Up Again,1186998382 +61431,51935,It's 1 Part Bad Memories 1 Part Double Cross Add A Twist Of Slime & Lots Of Good Vibrations!,1174855661 +61431,52328,'Please Tell Me We Brought The Lighter...Please',1191581576 +61431,52456,'Don't Look Into Berry's Headlights She'll Turn You Into Wood',1194992870 +61431,52458,Rear Pwnage,1193918552 +61431,52460,Karl Urban Needs To Pick Better Projects & He Needs 2 Pick-Up His Sword,1188134115 +61431,52604,Lecter Remarries & Kills His Insulting Wife & Butts Heds With Hotshot D.A.,1188042854 +61431,52717,'I'll Give You 10 Seconds Head Start...10!',1191581786 +61431,52867,'Saving Silverman Part Deux',1191581396 +61431,53123,'Take This Sinking Boat & Point It Home You Hoover Fixer Sucker Guuuyyy!',1199885878 +61431,53318,'Why Yes I Would So Love To Sketch Nudes In Costco!',1196498942 +61431,53464,'What I Really Wanna Know Is...Does Alba Get Sooper Nekkid?',1194991142 +61431,53550,'And So The Bear And Little Deiter Went Off Into The Mountains & Lived Like Homosexual Bears',1199187008 +61431,53894,'Now If Only Dubya Could Wash Me Whites,1195640679 +61431,54004,Chuck & Buck...,1191580885 +61431,54270,'More Like Skankwalkers',1194992200 +61431,54276,Mostly Martha Will Always Be The Best. Aron Eckhart? Ninja Pleaze!,1186997193 +61431,54503,Super De-Formed,1189042159 +61431,54736,'Don't Cry Jen I Promise We'll Kill Them All',1191580366 +61431,54775,The Director Should Be Be Shot...In The Mouth!,1188041420 +61431,54999,'Why Is My Arm Wet? Oh It's Just A Crushed Baby',1199889777 +61431,55080,'STFU!',1191580496 +61431,55272,'The Other Movie Did It's Job...This Must Be The Wrong Movie',1192489069 +61431,55276,'I Love You Anna!',1192488421 +61431,55282,30 Daze Of Shite,1193085952 +61431,55284,'Show Me The Money! I Can't Hear You Haji Scream Louder!',1194991588 +61431,55391,A Bad Copy Of Departed Which Was A Re-Hash Of Infernal Affairs,1202026161 +61431,55820,'Heads Or Tails...Call It',1196503294 +61431,55830,I felt sweded,1215128958 +61431,55995,'I Will Give My Kingdom For A Great Piece Of TWAT!',1195525979 +61431,56001,'I Don't Care If You Have Cholera It's Still Heads Or Tails...Call It',1196499629 +61431,56286,'Cate Dylan Hmmm...',1197883893 +61431,56757,'Oh Edward! A Mr. Todd Would Like You To Cut His Hair',1199185652 +61431,56775,'It Should Have Been Kept A Secret',1199185967 +61431,56801,'AKA: I Will Never Get Those 2 Hours Back...Ever',1199710528 +61431,57368,blair gojira project,1213609009 +61431,57951,we can do this easy or we can do this reeal easy it's called magic hour,1217406951 +61431,58103,brain bang,1215128769 +61431,59731,that's what he keeps asking for,1229201756 +61431,60037,of course you keep seeing dead people...they're all dying!,1229202588 +61431,60333,not another herzog schwarzenneger egomentary,1229201978 +61431,60760,...that it's finally over,1229202331 +61431,60937,it's too bad Brendan can't shake the Encino Man syndrome,1223745417 +61431,61705,didja know there's a black police ociffer on our block? oh man there goes the neighborhood,1223745792 +61431,61705, ,1223745792 +61431,63033,'stop wanking,1240825557 +61431,63033,or you'll go...too late',1240825557 +61431,64497,all your vagine are belong to us!,1230691189 +61431,64575,P.S.H as a priest? oh you know he's guilty!,1230695028 +61431,64839,mickey 'the stretch' rourke,1232242585 +61431,64957,you mean he gets to go back inside the...oh lucky,1230690252 +61431,64983,no matter what role it is i will not change my persona everybody worships 'the cruise',1230690589 +61431,67197,shame on them!,1238921785 +61431,68554,angles and deadlines,1244786767 +61431,68650,crash re-hashed,1244786690 +61431,68791,good first try for MCG,1243812391 +61431,68791,should have been longer to really flesh out the feeling of bleakness and give a sense of a last hope more action more global feel,1243812391 +61431,69526,better method AI,1246147545 +61431,69526,needed more autobots,1246147544 +61431,69526,stop using useless characters for filler,1246147545 +61431,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1246918226 +61431,69640,melvin pervo didn't commit suicide he just offed hiself 'cleaning' his barrel,1246916553 +61431,71838,"""Tonite",1256783703 +61431,71838,Act From,1256783703 +61431,71838,"Hell!""",1256783703 +61431,71838,We,1256783703 +61439,260,classic sci-fi,1438218277 +61439,260,Science Fiction,1438218269 +61439,111743,funny,1438218374 +61444,105257,documentary,1434367149 +61444,105257,holland,1434367149 +61444,105257,nature,1434367149 +61444,134381,language difference,1433614576 +61444,134381,mother daughter relationship,1433614576 +61444,134381,pregnancy,1433614576 +61447,122892,a.i.,1430795551 +61447,122892,comics,1430795551 +61447,122892,marvel,1430795551 +61460,1721,emotional,1431129659 +61460,1721,"powerful ending: one of most powerful and emotional endings that ""sucks out your insides""",1431129659 +61460,1721,romantic,1431129659 +61471,260,fantasy,1443813014 +61471,260,space,1443813040 +61476,2329,neo Nazi,1416055122 +61476,2329,Neo-Nazis,1416055138 +61476,2329,prison,1416055183 +61476,2329,racism,1416055127 +61476,2329,skinhead,1416055133 +61476,5608,brutal,1416055048 +61476,5608,prison,1416055040 +61476,5608,psychology,1416055029 +61476,33646,Prison,1416055766 +61476,45672,Adam Sandler,1416055965 +61476,45672,comedy,1416055979 +61476,54503,comedy,1416055583 +61476,54503,drinking,1416055595 +61476,54503,friendship,1416055592 +61476,54503,high school,1416055584 +61476,54503,HIGH SCHOOL LIFE,1416055610 +61476,54503,nerds,1416055603 +61476,54503,Teen movie,1416055598 +61476,62644,classroom,1416055082 +61476,62644,fascism,1416055084 +61476,62644,psychology,1416055077 +61476,62644,social experiment,1416055073 +61476,63072,dark,1416089087 +61476,63072,post-apocalyptic,1416089081 +61476,63072,survival,1416089088 +61476,71535,comedy,1416055527 +61476,71535,dark comedy,1416055511 +61476,71535,funny,1416055532 +61476,71535,teen,1416055539 +61476,71535,zombies,1416055504 +61476,72554,prison,1416055092 +61476,94677,satire,1416055783 +61476,96110,Will Ferrell,1416055656 +61476,96110,Zach Galifianakis,1416055653 +61492,2762,m. night shyamalan,1137454707 +61492,3994,m. night shyamalan,1137454705 +61492,5502,m. night shyamalan,1137454724 +61492,8783,m. night shyamalan,1137454742 +61499,10,007,1139672971 +61499,10,Bond,1139672971 +61499,15,Pirate,1139235977 +61499,50,complot,1175448436 +61499,231,very funny,1170007021 +61499,434,Harlin,1170007391 +61499,480,dinosaurs,1139874636 +61499,592,super-hero,1139874372 +61499,1047,assassins,1182005134 +61499,1517,hillarious,1173299830 +61499,1517,parody,1173299897 +61499,1552,Jerry Bruckheimer,1171132316 +61499,1552,prison,1171132322 +61499,1876,world end,1141477038 +61499,1917,world end,1140006753 +61499,2028,history,1175448317 +61499,2329,avi,1140006971 +61499,2571,avi,1140006239 +61499,2571,MF,1140006239 +61499,2706,teen,1140007002 +61499,2947,007,1138385576 +61499,2947,Bond,1138385576 +61499,2948,007,1137996839 +61499,2948,Bond,1137996839 +61499,2949,007,1139672888 +61499,2949,Bond,1139672888 +61499,2990,007,1139672859 +61499,2990,Bond,1139672859 +61499,2991,007,1140214209 +61499,2991,Bond,1140214209 +61499,2993,007,1137757559 +61499,2993,Bond,1137757559 +61499,3082,007,1137757513 +61499,3082,Bond,1137757513 +61499,3301,mob,1140006853 +61499,3301,Nudity (Topless - Notable),1175448814 +61499,3702,post-apocalyptic,1232040142 +61499,3703,post-apocalyptic,1232040130 +61499,3704,post-apocalyptic,1232040137 +61499,3717,cars,1139874176 +61499,3916,sports,1170006901 +61499,3977,MF,1140007522 +61499,3984,007,1138626860 +61499,3984,Bond,1138626860 +61499,4161,avi,1140007583 +61499,4265,Harlin,1139235896 +61499,4344,cool,1137273084 +61499,4369,cars,1139874202 +61499,4701,funny,1175448458 +61499,4701,martial arts,1175448454 +61499,4718,teen,1140007010 +61499,4848,wierd story,1141603183 +61499,4896,Magic,1146999778 +61499,4901,espionage,1170006768 +61499,4963,casino,1175448294 +61499,5283,avi,1140006888 +61499,5283,teen,1140006888 +61499,5349,super-hero,1140005800 +61499,5445,avi,1140007565 +61499,5481,parody,1173299870 +61499,5574,cars,1139874118 +61499,5574,France,1139236203 +61499,5816,Magic,1146999769 +61499,5872,007,1137757572 +61499,5872,Bond,1137757572 +61499,5872,svcd,1140005942 +61499,6014,avi,1140006367 +61499,6155,avi,1140006149 +61499,6157,svcd,1140007386 +61499,6185,avi,1140006037 +61499,6265,avi,1140007455 +61499,6323,psychology,1175448548 +61499,6323,twist ending,1175448539 +61499,6333,avi,1140006910 +61499,6333,super-hero,1139131763 +61499,6365,avi,1140007482 +61499,6365,MF,1140006242 +61499,6373,avi,1140007292 +61499,6378,cars,1142715684 +61499,6378,remake,1142715686 +61499,6383,Cars,1140005908 +61499,6383,svcd,1140005908 +61499,6539,Pirate,1139236042 +61499,6586,svcd,1140007352 +61499,6586,teen,1140007066 +61499,6754,vampire,1147725541 +61499,6874,MF,1140007503 +61499,6893,cars,1142715682 +61499,6934,avi,1140006236 +61499,6934,MF,1140006236 +61499,7048,very funny,1170007045 +61499,7346,avi,1140006489 +61499,7346,teen,1140006489 +61499,7381,avi,1140006846 +61499,7381,mob,1140006852 +61499,7569,007,1139672921 +61499,7569,Bond,1139672921 +61499,8368,Magic,1146999774 +61499,8376,teen,1142089931 +61499,8604,avi,1140006411 +61499,8604,cars,1140006411 +61499,8604,France,1139874043 +61499,8605,Cars,1140006425 +61499,8605,France,1139236264 +61499,8605,svcd,1140006425 +61499,8972,svcd,1140006378 +61499,8972,treasure,1140006354 +61499,27193,cars,1146661649 +61499,27193,France,1146661649 +61499,30707,avi,1140005982 +61499,30825,avi,1140006289 +61499,31696,avi,1140007331 +61499,31804,vampire,1147877577 +61499,33004,avi,1140006516 +61499,33679,avi,1140006315 +61499,34319,avi,1140006558 +61499,34319,cloning,1140006558 +61499,34532,avi,1140006809 +61499,36519,cars,1139874127 +61499,36519,France,1139236196 +61499,39052,amature,1137965941 +61499,39052,avi,1140006779 +61499,39052,Free to download,1140425342 +61499,40815,magic,1147190904 +61499,41997,terrorism,1141770684 +61499,41997,true story,1141770713 +61499,42723,disturbing,1219679589 +61499,42738,vampire,1148331167 +61499,43744,Lesbian,1148331444 +61499,44022,funny,1170007245 +61499,49526,Nudity (Topless),1184785979 +61499,53129,serial killer,1197112481 +61499,58295,based on a true story,1224185747 +61499,59022,Nudity (Topless),1219679500 +61499,59501,based on a book,1219679473 +61499,59501,fantasy,1219679470 +61499,59615,archaeology,1213034603 +61499,60074,superhero,1227117202 +61499,62394,video game adaptation,1232039991 +61499,62434,Sex Comedy,1232905748 +61524,260,action,1444432894 +61524,260,sci-fi,1444432904 +61545,78321,everything,1279415638 +61558,527,drama,1424342465 +61558,527,Nazis,1424342473 +61558,4041,Debra Winger,1424342365 +61558,4041,love,1424342323 +61558,4041,Richard Gere,1424342305 +61558,4995,Education,1424343335 +61558,4995,genius,1424343342 +61558,4995,intelligent,1424343321 +61558,4995,math,1424343319 +61558,8644,artificial intelligence,1424343431 +61558,8644,future,1424343440 +61558,8644,robot,1424343439 +61558,8644,Will Smith,1424343435 +61558,59315,comic book,1424342597 +61558,59315,superhero,1424343151 +61558,72998,futuristic,1424342542 +61558,72998,sci-fi,1424342551 +61558,77561,action,1424343183 +61558,77561,based on a comic,1424343180 +61558,77561,Iron Man,1424343188 +61558,77561,superhero,1424343177 +61558,102125,comic book,1424343272 +61558,102125,Iron Man,1424343265 +61558,102125,Marvel,1424343264 +61558,102125,robots,1424343262 +61558,102125,superhero,1424343259 +61589,50798,awful,1179599821 +61602,260,classic,1439309024 +61602,260,Lightsaber,1439309007 +61624,1276,Paul Newman,1264452088 +61624,1333,Alfred Hitchcock,1264452161 +61624,8984,George Clooney,1264452111 +61624,56757,Johnny Depp,1264452144 +61636,110,historical,1431003204 +61636,110,war,1431003211 +61636,589,future,1431003185 +61636,589,time travel,1431003171 +61636,593,investigation,1431003790 +61636,593,psychological,1431003793 +61636,593,psychology,1431003777 +61636,68157,Dead Nazis,1431003305 +61636,68157,World War II,1431003286 +61636,109487,good science,1431003236 +61636,109487,philosophical issues,1431003256 +61677,16,Martin Scorsese,1154020134 +61693,3247,creative plot,1433020963 +61693,3247,unique,1433020963 +61693,3247,witty dialogue,1433020963 +61717,750,dark comedy,1232170365 +61717,27721,World War I,1232791277 +61717,44555,spying,1232169645 +61722,1089,overrated,1147925684 +61722,27808,wretched,1144881499 +61722,45081,unintentionally funny,1147925577 +61725,1923,Cameron Diaz,1282803496 +61725,2987,cartoon-reality crossover,1283490591 +61725,2987,live action/animation,1283490575 +61725,7075,Danny Kaye,1283826774 +61725,7075,physical comedy,1283826834 +61725,7075,singing,1283826826 +61725,31923,Michael York,1283826881 +61725,31923,witty,1283826891 +61730,260,"action, scifi",1435561090 +61730,260,futuristic,1435561098 +61734,77455,entertaining,1433742466 +61734,77455,funny,1433742466 +61734,77455,poignant,1433742466 +61747,293,director's cut is better,1271012789 +61747,541,director's cut is better,1271012820 +61747,7438,better than first part,1271012588 +61747,7438,stylized,1271012597 +61747,7438,Tarantino,1271012601 +61749,163,action,1144571120 +61749,4886,animated,1144571151 +61754,541,cyberpunk,1250503532 +61754,541,dystopia,1250503532 +61754,3703,apocalypse,1275473257 +61754,3703,post apocalypse,1275473245 +61754,3703,Post apocalyptic,1250503395 +61754,3703,post-apocalyptic,1250503375 +61754,7360,Post apocalyptic,1250503451 +61754,7360,post-apocalyptic,1250503439 +61759,924,sci-fi,1342005617 +61759,5954,Edward Norton,1342006056 +61759,5954,psychology,1342006062 +61763,5152,realistic,1321011783 +61763,5152,True to book,1321011164 +61763,5152,well acted,1321011800 +61763,87306,Effects,1321871271 +61763,87306,storyline,1321871310 +61763,87306,Uneven performances,1321871333 +61773,260,Amazing cast for one of the most successful sci-fi of the history of cinema. An epic story,1435950071 +61795,2887,action,1171137207 +61795,2887,comedy,1171137207 +61795,2887,Dennis Rodman,1171137207 +61795,5255,Crossdressing,1169592339 +61795,49130,romance,1169158579 +61809,32,Brad Pitt,1225282577 +61809,32,Bruce Willis,1225282574 +61809,32,sci-fi,1225233157 +61809,32,time travel,1225282571 +61809,47,Brad Pitt,1225282619 +61809,47,Morgan Freeman,1225282622 +61809,47,psychology,1225282618 +61809,47,serial killer,1225282616 +61809,253,based on a book,1225282593 +61809,253,Brad Pitt,1225282596 +61809,253,fantasy,1225282595 +61809,253,Tom Cruise,1225282601 +61809,253,vampire,1225282599 +61809,253,vampires,1225282598 +61809,337,Johnny Depp,1225281912 +61809,858,Al Pacino,1225282478 +61809,858,Mafia,1225282476 +61809,858,organized crime,1225282481 +61809,1221,mafia,1225282265 +61809,1221,organized crime,1225282264 +61809,1464,David Lynch,1225279974 +61809,1464,Surreal,1225279969 +61809,1466,Johnny Depp,1225281889 +61809,1466,Mafia,1225281891 +61809,1645,Al Pacino,1225282081 +61809,1645,Keanu Reeves,1225282083 +61809,1884,drugs,1225281897 +61809,1884,Johnny Depp,1225281894 +61809,2021,based on a book,1225279929 +61809,2021,David Lynch,1225279939 +61809,2021,fantasy,1225279937 +61809,2021,sci-fi,1225279932 +61809,2167,comic book,1225281261 +61809,2167,Marvel,1225281256 +61809,2167,vampire,1225281263 +61809,2167,vampires,1225281254 +61809,2167,Wesley Snipes,1225281265 +61809,2291,Johnny Depp,1225282025 +61809,2329,Edward Norton,1225233283 +61809,2542,dark comedy,1225282425 +61809,2542,drugs,1225282429 +61809,2542,organized crime,1225282424 +61809,2762,Bruce Willis,1225408386 +61809,2762,M. Night Shyamalan,1225408392 +61809,2762,psychology,1225408384 +61809,2959,Brad Pitt,1225233242 +61809,2959,Edward Norton,1225233237 +61809,2959,psychology,1225233230 +61809,3005,Angelina Jolie,1225408179 +61809,3081,Fantasy,1225282018 +61809,3081,Johnny Depp,1225282015 +61809,3186,Angelina Jolie,1225408122 +61809,3186,psychology,1225408106 +61809,3186,winona ryder,1225408130 +61809,3355,Johnny Depp,1225281999 +61809,3355,Roman Polanski,1225282005 +61809,3355,satanism,1225282003 +61809,3702,post-apocalyptic,1225375729 +61809,3703,Mel Gibson,1225375725 +61809,3703,post-apocalyptic,1225375723 +61809,3717,Action,1225408143 +61809,3717,Angelina Jolie,1225408140 +61809,3717,cars,1225408141 +61809,3717,crime,1225408146 +61809,3717,Nicolas Cage,1225408144 +61809,3793,comic book,1225281197 +61809,3793,marvel,1225281198 +61809,3793,sci-fi,1225281200 +61809,3793,superhero,1225281195 +61809,4011,Brad Pitt,1225282671 +61809,4011,Crime,1225282675 +61809,4011,Guy Ritchie,1225282673 +61809,4011,Jason Statham,1225282680 +61809,4014,Johnny Depp,1225282021 +61809,4239,drugs,1225281903 +61809,4239,Johnny Depp,1225281902 +61809,4262,Al Pacino,1225282505 +61809,4262,drugs,1225282499 +61809,4262,mafia,1225282503 +61809,4262,organized crime,1225282496 +61809,4699,Angelina Jolie,1225408228 +61809,4699,Antonio Banderas,1225408230 +61809,4848,nonlinear,1225279834 +61809,4848,surreal,1225279828 +61809,4865,Johnny Depp,1225282009 +61809,4865,serial killer,1225282011 +61809,4963,Brad Pitt,1225282637 +61809,4963,George Clooney,1225282645 +61809,4963,heist,1225282639 +61809,4963,Matt Damon,1225282643 +61809,5254,comic book,1225281284 +61809,5254,Marvel,1225281286 +61809,5254,vampire,1225281290 +61809,5254,vampires,1225281288 +61809,5254,Wesley Snipes,1225281294 +61809,5464,organized crime,1225375688 +61809,5618,Studio Ghibli,1225282405 +61809,7044,David Lynch,1225279885 +61809,7044,Golden Palm,1225279880 +61809,7044,Nicolas Cage,1225279877 +61809,7439,marvel,1225281355 +61809,8636,comic book,1225281179 +61809,8636,marvel,1225281181 +61809,8636,superhero,1225281178 +61809,8950,Mafia,1225375586 +61809,8950,psychology,1225375584 +61809,8985,Jessica Biel,1225281316 +61809,8985,Marvel,1225281310 +61809,8985,vampire,1225281313 +61809,8985,vampires,1225281312 +61809,26007,based on a book,1225282239 +61809,26007,rare,1225282225 +61809,27020,Angelina Jolie,1225408345 +61809,30749,true story,1225282391 +61809,31221,comic book,1225281145 +61809,31221,Jennifer Garner,1225281150 +61809,31221,marvel,1225281143 +61809,31221,superhero,1225281141 +61809,31696,comic book,1225282065 +61809,31696,Keanu Reeves,1225282072 +61809,33679,Action,1225282701 +61809,33679,Angelina Jolie,1225282700 +61809,33679,Brad Pitt,1225282697 +61809,33679,espionage,1225282698 +61809,34150,Marvel,1225281058 +61809,34150,superhero,1225281056 +61809,45499,comic book,1225281228 +61809,45499,Marvel,1225281230 +61809,45499,sci-fi,1225281234 +61809,45499,superhero,1225281225 +61809,48997,serial killer,1225282183 +61809,49822,Angelina Jolie,1225408202 +61809,51077,Comic Book,1225281336 +61809,51077,Marvel,1225281338 +61809,51077,Nicolas Cage,1225281339 +61809,52722,comic book,1225281111 +61809,52722,Marvel,1225281113 +61809,52722,superhero,1225281109 +61809,53464,Marvel,1225281077 +61809,53464,superheroes,1225281082 +61809,56757,Johnny Depp,1225233851 +61809,58559,Batman,1225375596 +61809,58559,superhero,1225375598 +61809,59315,comic book,1225282331 +61809,59315,Marvel,1225282328 +61809,59315,superhero,1225282333 +61809,60069,pixar,1225282408 +61809,60069,space,1225282410 +61809,60684,author:Alan Moore,1237460841 +61809,60684,comic book,1237460836 +61809,62394,computer game,1225281045 +61809,68157,Quentin Tarantino,1260738068 +61809,68157,satire,1260738076 +61809,68157,World War II,1260738073 +61821,73232,missing daughter,1424183062 +61821,73232,mother,1424183085 +61917,36,death penalty,1145534566 +61917,318,Gefaengnisfilm,1139349578 +61917,1203,low budget,1145918565 +61917,1233,No Happy End,1140379994 +61917,1265,Bill Murray,1138462528 +61917,2360,low budget,1145918544 +61917,2710,low budget,1145918517 +61917,2710,No Happy End,1140379974 +61917,2810,anime,1139950416 +61917,3000,anime,1139950172 +61917,3147,death penalty,1145534621 +61917,3910,death penalty,1145534594 +61917,4103,unrealistic crap,1140131015 +61917,4446,anime,1139950468 +61917,4967,No Happy End,1140379924 +61917,5015,death penalty,1147465932 +61917,5134,Gefaengnisfilm,1139349553 +61917,5618,anime,1139950161 +61917,5690,anime,1139950387 +61917,6711,Bill Murray,1138462327 +61917,7099,anime,1139950197 +61917,7459,Gefaengnisfilm,1139349482 +61917,7460,Bill Murray,1138462385 +61917,8607,anime,1139950478 +61917,26662,anime,1139950135 +61917,27822,No Happy End,1143321214 +61917,30810,Bill Murray,1138462299 +61917,31660,anime,1139950224 +61917,34437,Bill Murray,1138462350 +61917,37741,death penalty,1145534517 +61933,260,classic,1440316946 +61933,260,sci-fi,1440316936 +61970,6122,Stand up Comedy,1214333699 +61972,3104,Funniest Action Movie Ever,1270693171 +61991,235,Underrated piece of genius,1148338329 +61991,780,cheese,1148338341 +61991,780,cheesy,1148338349 +61991,8959,Magnificent,1148338528 +61991,44761,pretentious garbage about good things,1148338419 +61991,115713,futuristic,1424115732 +61991,115713,gender roles,1424115732 +61991,115713,robots,1424115732 +62056,2387,dark comedy,1155080700 +62066,1721,atmospheric,1246576732 +62066,1721,bittersweet,1246576734 +62066,1721,Leonardo DiCaprio,1246576736 +62066,1721,love,1246576741 +62066,1721,Nudity (Topless - Notable),1246576743 +62066,1721,Oscar (Best Picture),1246576746 +62066,1721,romance,1246576749 +62066,4028,Aidan Quinn,1326852914 +62066,4028,American roots music,1326852911 +62066,4028,Appalachia,1326852918 +62066,4028,Appalachian mountains,1326852910 +62066,4028,backwoods,1326852920 +62066,7293,Adam Sandler,1246852842 +62066,7293,amnesia,1246852845 +62066,7293,Comedy,1246852847 +62066,7293,Drew Barrymore,1246852858 +62066,7293,memory loss,1246852865 +62066,7293,Romance,1246852871 +62066,8861,Milla Jovovich,1247345000 +62066,8861,plot point:bio-medical danger,1247345016 +62066,8861,Post apocalyptic,1247345023 +62066,8861,post-apocalyptic,1247344950 +62066,8861,video game adaptation,1247344957 +62066,8861,virus,1247345025 +62066,8861,zombies,1247344953 +62066,33166,confusing,1327061649 +62066,48304,Mel Gibson,1326853568 +62066,52973,absolutely hilarious,1246576538 +62066,52973,drugs,1246576542 +62066,52973,growing up,1246576544 +62066,52973,Katherine Heigl,1246576545 +62066,52973,Las Vegas,1246576547 +62066,52973,Los Angeles,1246576555 +62066,52973,marijuana,1246576564 +62066,52973,Nudity (Topless - Brief),1246576569 +62066,52973,Nudity (Topless),1246576574 +62066,52973,Paul Rudd,1246576578 +62066,52973,pregnancy,1246576583 +62066,52973,Seth Rogan,1246576586 +62066,54503,crude humor,1326853115 +62066,54503,Emma Stone,1326853117 +62066,54503,Michael Cera,1326853119 +62066,58998,Apatow productions,1326853032 +62066,58998,comedy,1326853036 +62066,58998,good dialogue,1326853037 +62066,58998,Hawaii,1326853042 +62066,58998,hilarious,1326853040 +62066,72737,bland characters,1326853416 +62066,73321,beautiful scenery,1326853511 +62066,73321,post-apocalyptic,1326853516 +62066,73321,survival,1326853526 +62066,73321,thought-provoking,1326853519 +62066,73321,twist ending,1326853528 +62066,73321,visually appealing,1326853532 +62066,88810,Bechdel Test:Pass,1327061560 +62066,88810,Emma Stone,1327061557 +62066,88810,racism,1327061569 +62066,88810,segregation,1327061571 +62066,90471,chris evans,1327061456 +62066,90471,david and goliath,1327061315 +62066,90471,depressing,1327061330 +62066,90471,drugs,1327061311 +62066,90471,inspirational,1327061432 +62066,90471,inspiring,1327061374 +62066,90471,lawyers,1327061302 +62066,90471,sad ending,1327061340 +62066,90471,true story,1327061304 +62066,90471,underdog,1327061322 +62066,92420,clever,1332065069 +62066,92420,sci-fi,1332065074 +62066,92420,telekenisis,1332065080 +62073,1,animation,1430887659 +62073,1,comedy,1430887659 +62073,1,kids,1430887659 +62073,58559,Heath Ledger,1430887761 +62073,79132,alternate reality,1430887504 +62073,79132,blockbuster,1430887539 +62073,97648,crime,1430887583 +62073,97648,hindi,1430887578 +62073,112556,psychothriller,1430887683 +62076,7440,Very moving. The extent to which it was scripted (Especially the principle's lines) bothered me some,1145019008 +62082,52975,great music,1439721322 +62082,88810,touching,1439721240 +62104,260,sci-fi,1439781553 +62104,260,space adventure,1439781565 +62121,4361,Funny as hell,1196787170 +62140,4979,dark comedy,1368622331 +62140,4979,quirky,1368622336 +62140,68157,dark comedy,1368622355 +62153,4310,Action,1188314100 +62153,4310,War,1188314100 +62153,4447,Comedy,1188314122 +62153,5618,Animation,1188314117 +62153,5618,Fantasy,1188314117 +62180,5952,Epic,1444574899 +62180,5952,fantasy,1444574886 +62180,5952,great soundtrack,1444574903 +62180,5952,high fantasy,1444574890 +62180,49530,Civil War,1444575032 +62180,49530,Jennifer Connelly,1444575024 +62180,49530,Leonardo DiCaprio,1444575020 +62180,49530,Loved Jennifer Connelly!,1444575052 +62180,79132,cerebral,1444574982 +62180,79132,Christopher Nolan,1444574927 +62180,79132,Leonardo DiCaprio,1444574934 +62180,79132,thought-provoking,1444574935 +62198,2712,atmospheric,1274233413 +62198,2712,dreamlike,1274233410 +62198,2712,Nicole Kidman,1274233433 +62198,2712,Stanley Kubrick,1274233416 +62198,2712,thriller,1274233401 +62198,2712,Tom Cruise,1274233395 +62207,593,fear,1437485391 +62207,593,psychedelic,1437485391 +62207,593,psychothriller,1437485391 +62207,5608,frightfully good,1287318173 +62207,5608,mass behavior,1287318176 +62207,5608,over-the-top ending,1287318146 +62207,5608,true story,1287318179 +62207,68358,beginning,1242994386 +62215,916,Audrey Hepburn,1329962461 +62215,916,black and white,1329962500 +62215,916,classic,1329962467 +62215,916,Gregory Peck,1329962459 +62215,916,imdb top 250,1329962478 +62215,916,Italy,1329962481 +62215,916,love story,1329962469 +62215,916,National Film Registry,1329962486 +62215,916,need to own,1329962471 +62215,916,romantic comedy,1329962476 +62215,916,Rome,1329962490 +62215,916,royalty,1329962474 +62215,916,slapstick,1329962495 +62215,916,zest for life,1329962497 +62215,4246,based on a book,1329961923 +62215,4246,British,1329961921 +62215,4246,Hugh Grant,1329961906 +62215,4246,Jane Austen,1329961911 +62215,4246,romantic comedy,1329961917 +62215,8533,chick flick,1304661651 +62215,8533,sentimental,1304661663 +62215,55872,Freddie Highmore,1328493391 +62215,55872,inspirational,1328493389 +62215,55872,love of music,1328493386 +62215,55872,power of music,1328493382 +62215,55872,uplifting and compelling,1328661957 +62220,87806,adoption,1427385505 +62220,87806,family,1427385505 +62220,87806,uplifting,1427385505 +62293,1221,Mafia,1164728316 +62293,2023,Mafia,1164728325 +62310,152,Christopher Walken,1186863359 +62310,152,drug abuse,1186863359 +62310,152,philosophical,1186863359 +62310,152,stylized,1186863359 +62310,152,vampires,1186863359 +62310,600,crime,1186862835 +62310,600,media,1186862835 +62310,665,too long,1186863619 +62310,1237,dialogue,1186864057 +62310,3036,ice age,1186862667 +62310,3036,Ron Perlman,1186862700 +62310,3276,quirky,1186862993 +62310,3704,cool cars,1201502413 +62310,4267,different perspectives,1186862737 +62310,4993,Peter Jackson,1186862869 +62310,7286,great dialogue,1186862545 +62310,7502,war,1296914983 +62310,7502,World War II,1296914968 +62310,27033,Ernst-Hugo JäregÃ¥rd,1296915090 +62310,27033,horror comedy,1296915029 +62310,53468,zombies,1216533657 +62310,79132,dreamlike,1296915255 +62322,306,desert island flicks,1149761868 +62363,5932,Werner Herzog,1389651184 +62363,7071,depressing,1389651136 +62379,4011,brad pitt,1440216724 +62379,4011,comedy,1440216731 +62379,4011,dark comedy,1440216758 +62379,4011,dark humor,1440216745 +62379,4011,stylized,1440216756 +62379,4022,island,1440216852 +62379,4022,man vs. nature,1440216841 +62379,4022,SURVIVAL,1440216836 +62379,4022,Tom Hanks,1440216831 +62379,51935,conspiracy,1440216937 +62379,51935,Mark Wahlberg,1440216939 +62379,51935,sniper,1440216935 +62395,18,multiple storylines,1186589758 +62395,1245,Coen Brothers,1186589719 +62395,1245,gangster,1186589719 +62395,2116,book was better,1186589759 +62395,2384,Cute!,1186589757 +62410,349,Suspance,1448941830 +62410,91542,thriller,1448941976 +62410,97938,cinematography,1448941937 +62414,260,aliens,1438243911 +62414,260,Science Fiction,1438243901 +62456,427,Bill Paxton,1241433201 +62456,427,DVD-Video,1241433160 +62456,427,erotic thriller,1241433187 +62456,427,Kurtwood Smith,1241433181 +62456,427,Nudity (Topless - Notable),1241433206 +62456,427,skipped this sick story,1241433215 +62456,67734,funny,1241432565 +62458,858,classic,1434639323 +62458,858,mafia,1434639323 +62458,858,organized crime,1434639323 +62458,2571,action,1427713002 +62458,2571,adventure,1427713002 +62458,2571,fantasy,1427713002 +62458,119655,adventure,1427712973 +62458,119655,fantasy,1427712983 +62464,260,action,1442839409 +62468,1220,Blues,1148262046 +62468,1220,Chicago,1148261995 +62468,1220,John Belushi,1148262046 +62485,150,Good Movie,1158447457 +62485,3424,seen more than once,1158448110 +62485,5445,Good Movie,1158447441 +62488,3087,new york,1169831741 +62489,260,Science Fiction,1442475853 +62489,260,Star Wars,1442475859 +62492,150766,Biography,1452874200 +62492,150766,Kirtan,1452874203 +62492,150766,Music,1452874207 +62492,150766,Spiritual,1452874194 +62526,260,adventure,1439705506 +62526,260,space,1439705500 +62537,1653,dystopia,1449878488 +62537,1653,Ethan Hawke,1449878495 +62537,1653,genetic engineering,1449878492 +62537,1653,neo-noir,1449878531 +62537,1653,suicide,1449878505 +62537,3949,addiction,1449012495 +62537,3949,depressing,1449012483 +62537,3949,drugs,1449012486 +62537,3949,heroin,1449012501 +62537,3949,independent film,1449012512 +62537,6197,based on a book,1449012966 +62537,6197,gloomy,1449012947 +62537,6197,mental illness,1449012944 +62537,7123,David Cronenberg,1449012821 +62537,7123,disturbing,1449012824 +62537,7123,dreamlike,1449012819 +62537,34437,Atmospheric,1449012575 +62537,34437,Bill Murray,1449012570 +62537,34437,bittersweet,1449012577 +62537,34437,Nudity (Full Frontal),1449012579 +62537,34437,quirky,1449012572 +62537,34437,road trip,1449012581 +62537,47465,dreamlike,1449012850 +62537,47465,symbolic,1449012863 +62537,47465,Terry Gilliam,1449012845 +62537,55820,atmospheric,1449012400 +62537,55820,based on a book,1449012394 +62537,55820,dark,1449012381 +62537,55820,great acting,1449012384 +62537,55820,tension,1449012406 +62537,55820,twist ending,1449012391 +62537,69134,atmospheric,1449011029 +62537,69134,disturbing,1449011032 +62537,69134,Mental Illness,1449011035 +62537,69134,psychology,1449011040 +62537,69134,weird,1449011026 +62537,69134,Willem Dafoe,1449011037 +62554,260,action,1436358570 +62554,260,scifi,1436358581 +62565,5013,Dark,1149707600 +62565,31804,Valeri Zolotukhin,1149707902 +62574,2858,coming of age,1300160105 +62574,2858,Nudity (Topless),1300160099 +62574,2858,Oscar (Best Actor),1300160112 +62574,2858,Oscar (Best Cinematography),1300160119 +62574,2858,Oscar (Best Directing),1300160123 +62574,2858,Oscar (Best Picture),1300160115 +62590,2527,cyborgs,1362283847 +62590,2527,downbeat,1362283940 +62590,2527,sci-fi,1362283811 +62590,2728,cinematography,1361599519 +62590,2728,slow pace,1361599483 +62590,96737,bad dialogue,1360467815 +62590,97913,boring,1361335311 +62590,99149,cinematography,1369460063 +62590,99149,emotional,1369460063 +62590,106489,adventure,1401517051 +62590,106489,dragons,1401517069 +62590,106489,epic,1401517001 +62590,106489,fantasy,1401516996 +62590,106489,Tolkien,1401517012 +62590,106489,too long,1401517059 +62594,260,fantasy,1443520866 +62594,260,Space Saga,1443520883 +62633,4993,action,1431465733 +62633,4993,classic,1431465733 +62633,4993,legend,1431465733 +62633,77561,Jarvis,1431468586 +62633,77561,Robert Downey Jr.,1431468538 +62633,77561,Scarlett Johansson,1431468534 +62633,77561,sci-fi,1431468602 +62686,4823,John Cusack,1317235883 +62686,7375,Julia Stiles,1317236156 +62702,66097,animation,1240885535 +62702,66097,author:Neil Gaiman,1240885548 +62702,66097,plot,1240885526 +62702,66097,Stereoscopic 3-D,1240885542 +62714,260,classic sci-fi,1431875284 +62714,260,special effects,1431875294 +62718,1653,genetics,1306726588 +62718,1653,intelligent,1306726588 +62718,1653,Jude Law,1306726588 +62718,1653,plot,1306726588 +62718,5772,philosophical,1441673876 +62718,7254,twist ending,1306729206 +62718,7254,twists & turns,1306729206 +62718,27608,stylized,1310083843 +62718,27608,surreal,1310083843 +62718,37386,Charlize Theron,1306729522 +62718,37386,revolution,1306729522 +62718,43928,Kurt Wimmer,1306729478 +62718,43928,stylized,1306729478 +62718,43928,visually appealing,1306729478 +62718,43928,visually stunning,1306729478 +62718,55908,intelligent,1306353764 +62718,55908,sci-fi,1306353764 +62718,55908,smart,1306353747 +62718,58783,cinematography,1306368143 +62718,58783,dialogue,1306368118 +62718,58783,schizophrenia,1306368096 +62718,58783,Tim Roth,1306368164 +62718,72380,messy,1310271144 +62718,72380,pointless,1310271144 +62718,84152,smart,1310004718 +62718,84152,visually appealing,1310004616 +62718,85342,narrated,1324266963 +62718,93982,artistic,1343096371 +62718,93982,James McTeigue,1343096360 +62718,93982,poetry,1343096335 +62769,296,dark comedy,1448130066 +62769,296,Quentin Tarantino,1448130068 +62769,1261,Bruce Campbell,1448130248 +62769,1261,Sam Raimi,1448130255 +62769,2076,David Lynch,1448129254 +62769,2076,lynch,1448129244 +62769,2710,suspense,1448131078 +62769,27773,Chan-Wook Park,1448129356 +62769,27773,korean,1448129385 +62769,27773,twist ending,1448129373 +62786,2692,existentialism,1394318742 +62786,2692,nonlinear,1394318744 +62786,2692,thought-provoking,1394318752 +62786,7090,visually appealing,1394318929 +62786,26159,Bechdel Test:Fail,1394322406 +62786,26159,cult film,1394322422 +62786,26159,weird,1394322398 +62786,26159,yakuza,1394322418 +62786,27773,revenge,1394318872 +62786,27773,twist ending,1394318874 +62786,106916,amy adams,1394318611 +62786,106916,Bechdel Test:Pass,1394318628 +62786,106916,Christian Bale,1394318614 +62786,106916,con artists,1394318635 +62786,106916,Jennifer Lawrence,1394318653 +62786,106916,Jeremy Renner,1394318616 +62786,106916,long,1394318638 +62786,106916,politics,1394318646 +62788,4993,overrated,1142073678 +62788,7153,Overrated,1142073645 +62800,260,fiction,1435253306 +62800,260,serendipity,1435253314 +62808,1198,classic,1433861572 +62808,1198,comedy,1433861574 +62808,1198,imdb top 250,1433861559 +62813,6,cliched,1419216052 +62813,6,dumbed down,1419216024 +62813,6,hollywoodization,1419216095 +62813,6,lame,1419216008 +62813,32,annoying characters,1407537970 +62813,32,Brad Pitt,1407537960 +62813,50,conspiracy,1390965099 +62813,50,twist ending,1380410271 +62813,50,violence,1390965134 +62813,349,bad acting,1419414769 +62813,349,boring,1419414755 +62813,474,formulaic,1410823267 +62813,474,Garbage,1410823243 +62813,529,boring,1417904713 +62813,805,bad acting,1406420729 +62813,805,caricatured,1406421290 +62813,805,hollywoodization,1406421101 +62813,805,irritating,1406421167 +62813,805,Kevin Spacey,1406421197 +62813,805,morally simplistic,1406421187 +62813,805,Samuel L. Jackson,1406421205 +62813,805,smart-ass characters,1406420549 +62813,805,wisecracking characters,1406420702 +62813,1214,horror,1391547848 +62813,1214,violence,1391547872 +62813,1620,cliched,1407641911 +62813,1620,predictable,1398572169 +62813,1620,unbelievable,1398572169 +62813,1625,Mystery,1390881946 +62813,1625,psychological,1390881940 +62813,1625,Sean Penn,1390881932 +62813,1625,suspense,1390881937 +62813,1625,Unrealistic Ending,1390881919 +62813,1682,fatuous,1417922691 +62813,1682,plot holes,1380419582 +62813,1682,stupid,1380419582 +62813,1682,unbelievable,1380419581 +62813,1821,interesting characters,1407629920 +62813,1821,Paul Rudd,1407629870 +62813,1821,unusual story,1407629901 +62813,1834,contrived,1392773163 +62813,1834,idiot hero,1392773139 +62813,1834,implausible,1392772978 +62813,1834,preposterous premise,1407797396 +62813,1834,ridiculous plot,1392772978 +62813,1834,terrible acting,1392772978 +62813,1834,unbelievable,1392772978 +62813,2231,Edward Norton,1380420037 +62813,2842,Plot holes,1452057616 +62813,2842,stupid dialog,1452057641 +62813,3044,Kenneth Branagh,1391305477 +62813,3044,twist ending,1391305485 +62813,3505,conspiracy,1391554219 +62813,3505,espionage,1391554230 +62813,3505,Kevin Costner,1391554202 +62813,3505,political corruption,1391554233 +62813,3505,slow start,1391554303 +62813,3505,suspense,1391554238 +62813,3505,thriller,1391554212 +62813,3505,twist ending,1391554208 +62813,3510,caricatured,1417895709 +62813,3510,Cliched,1417895167 +62813,3510,Dumbed down,1417895405 +62813,3510,Schmaltzy,1417895327 +62813,3510,time travel,1417895263 +62813,3510,typical hollywood crap,1417895165 +62813,3952,cheesy ending,1419756545 +62813,4342,heartwarming,1407630115 +62813,4342,non-stereotypical,1406419428 +62813,4342,positive,1406419532 +62813,4848,Atmospheric,1392577147 +62813,4848,incoherent,1392577299 +62813,4848,inconclusive,1392577299 +62813,4848,mystery,1392577137 +62813,4848,nonlinear,1392577131 +62813,4848,pointless,1392577565 +62813,4848,twist ending,1392577207 +62813,4963,silly,1407814728 +62813,4963,unrealistic,1407814737 +62813,5445,action,1380410620 +62813,5445,futuristic,1380410629 +62813,5445,mystery,1380410632 +62813,5445,surreal,1380410654 +62813,5445,time travel,1380410659 +62813,6787,conspiracy,1390965180 +62813,6787,suspense,1390965196 +62813,7018,idiot culprit,1407641692 +62813,7018,ridiculous ending,1407629483 +62813,7018,Unengaging characters,1407629536 +62813,44665,instant romance,1419223959 +62813,44665,wisecracking characters,1419223870 +62813,45062,Cliches,1389493283 +62813,45062,gunfights,1389493322 +62813,49278,bogus science,1417904460 +62813,49278,contrived,1417904457 +62813,49278,implausible,1417904455 +62813,49278,preposterous premise,1417904459 +62813,49278,ridiculous plot,1417904452 +62813,49278,silly,1417904463 +62813,52604,ending,1406417648 +62813,52604,suspense,1406417651 +62813,55908,bad acting,1380410181 +62813,55908,boring,1389413546 +62813,55908,intellectual,1380409839 +62813,55908,philosophical,1380409966 +62813,55908,poor script,1380410182 +62813,55908,unlikeable characters,1380410182 +62813,89804,politics,1417933284 +62813,89804,suspense,1417933272 +62813,97752,action,1389413492 +62813,97752,chase scenes,1389413420 +62813,97752,complicated,1389413255 +62813,97752,fight scenes,1389413432 +62813,97752,Jim Sturgess,1389413457 +62813,97752,length,1389413447 +62813,97752,multiple storylines,1389413277 +62813,97752,thought-provoking,1389413283 +62813,103253,boring,1407641483 +62813,103253,typical hollywood crap,1407641566 +62855,4873,philosophy,1149434990 +62865,356,Inspiring,1449377378 +62865,2959,Mystery Thriller,1449377357 +62879,586,Christmas,1165075499 +62879,1245,film noir,1155912733 +62879,2083,Christmas,1165075457 +62879,2083,muppets,1165075458 +62879,2804,Christmas,1165075435 +62879,6957,Christmas,1165075450 +62879,8966,Peter Sarsgaard,1156258503 +62879,26462,Sean Penn,1166197140 +62879,27904,Philip K. Dick,1155912558 +62879,44761,film noir,1155912514 +62879,44761,high school,1155912519 +62879,46970,dissapointing,1166195708 +62879,46970,nascar,1166195706 +62879,46970,Will Ferrell,1166195704 +62879,48412,don't forget to see,1165074980 +62879,48520,don't forget to see,1165075005 +62879,49347,don't forget to see,1165075028 +62903,858,Tamil,1423303979 +62903,48516,Tamil,1423304003 +62918,1097,sci-fi,1160160390 +62918,1148,Parks,1160160355 +62928,260,classic sci-fi,1441130848 +62928,260,fantasy,1441130861 +62932,1298,intelligent,1187384052 +62932,1587,simple,1187383980 +62932,2872,Interesting,1187383992 +62932,2953,funny,1187384001 +62932,4367,exciting,1187384018 +62932,6373,Motivation,1187384034 +62959,55132,Gays,1312543484 +62959,55132,Hebrew,1312543458 +62959,55132,Israel,1312543455 +62959,55132,Tel Aviv,1312543469 +62959,58381,Hebrew,1312454377 +62959,58381,Israel,1312454369 +62959,88680,children,1435817675 +62959,88680,Hebrew,1312453769 +62959,88680,Israel,1312453707 +62959,88680,Kibbutz,1312453716 +62959,88701,Hebrew,1312543211 +62959,88701,Israel,1312543207 +62959,88701,Mossad,1312543232 +62959,88701,Nazis,1312543214 +63028,27773,crazy awsome,1170108852 +63031,106920,bittersweet,1426250240 +63031,106920,psychology,1426250258 +63031,106920,romance,1426250264 +63031,111362,Hugh Jackman,1426250296 +63031,111362,Marvel,1426250294 +63031,111362,X-men,1426250289 +63042,7382,from the view of children,1211207627 +63042,68358,Zachary Quinto,1242729882 +63060,3977,Shit,1161625419 +63060,7153,Peter Jackson,1161625410 +63062,2231,Matt Damon,1299479804 +63062,2231,poker,1299479806 +63062,8784,Great Soundtrack,1299476593 +63062,8784,Natalie Portman,1299476579 +63062,30707,Clint Eastwood,1299476991 +63062,30707,Morgan Freeman,1299476994 +63062,44974,controversial,1306569082 +63062,44974,disturbing,1306569076 +63062,44974,suspenseful,1306569088 +63062,55247,based on a book,1299476549 +63062,55247,great soundtrack,1299476553 +63062,55247,self discovery,1299476539 +63062,56788,afghanistan,1306569174 +63062,56788,arms dealer,1306569183 +63062,56788,based on a true story,1306569141 +63062,56788,CIA,1306569158 +63062,56788,cold war,1306569133 +63062,81562,danny boyle,1299476497 +63062,81562,James Franco,1299476496 +63062,81562,true story,1299476500 +63062,81562,wilderness,1299476519 +63062,81591,Natalie Portman,1299476679 +63062,81932,Amy Adams,1299476972 +63062,81932,boxing,1299476976 +63062,81932,Christian Bale,1299476962 +63062,82053,corruption,1299476426 +63062,82053,politics,1299476425 +63062,82053,true story,1299476420 +63062,82459,Matt Damon,1299477053 +63062,86345,stand-up comedy,1306569366 +63062,86377,stand-up comedy,1306569347 +63062,87096,Sex Addict,1306569004 +63062,87096,strippers,1306569004 +63062,87096,therapy,1306569014 +63063,50,Kevin Spacey,1269660535 +63063,50,suspense,1269660542 +63063,50,twist ending,1269660539 +63063,296,Samuel L. Jackson,1269810994 +63063,7346,Elisha Cuthbert,1269660114 +63063,27326,Aishwarya Rai,1269810977 +63063,55908,dialogue driven,1270697291 +63063,55908,Excellent use of dialogue,1270697288 +63063,55908,Underrated,1270697305 +63063,72011,George Clooney,1270835834 +63063,72011,loneliness,1270835838 +63063,73017,Robert Downey Jr.,1269660154 +63063,73017,Sherlock Holmes,1269660164 +63063,74156,Mel Gibson,1270012617 +63091,260,Science Fiction,1434363142 +63091,260,space adventure,1434363150 +63091,3471,parapsychology,1451839056 +63091,3471,silly,1451839043 +63091,34405,Firefly,1451832388 +63091,34405,great dialogue,1451832418 +63091,34405,space,1451832410 +63091,34405,space western,1451832408 +63091,34405,witty,1451832392 +63091,58627,cliché,1451838880 +63091,101864,sci-fi,1451832598 +63091,101864,Tom Cruise,1451832586 +63091,101864,twists & turns,1451832592 +63091,112852,childish,1451838908 +63091,112852,sci-fi,1451838911 +63091,112852,space,1451838913 +63091,112852,Vin Diesel,1451838932 +63092,260,masterpiece,1439800207 +63092,260,Science Fiction,1439800189 +63097,260,classic sci-fi,1439849124 +63097,260,exciting,1439849119 +63114,260,sci-fi,1438949482 +63114,260,space adventure,1438949497 +63123,64614,racism,1436733170 +63123,64614,social drama,1436733170 +63123,64614,veteran,1436733170 +63123,111759,action,1436733200 +63123,111759,science fiction,1436733195 +63123,111759,time loop,1436733187 +63125,111364,special effects,1449451038 +63125,111364,story,1449451028 +63125,117529,adventure,1449450984 +63125,117529,Irrfan Khan,1449450962 +63125,117529,sci-fi,1449450973 +63140,7162,Romanian landscape,1314214511 +63151,260,Science Fiction,1440702432 +63151,260,space travel,1440702443 +63205,96430,fantasy,1351536787 +63205,96430,heartwarming,1351536787 +63217,1,animation,1306926135 +63217,1,fantasy,1306926130 +63217,1,Pixar,1306926133 +63217,47,dark,1306930201 +63217,47,disturbing,1306930291 +63217,47,thriller,1306930308 +63217,101,off-beat comedy,1307009664 +63217,101,Wes Anderson,1307009667 +63217,110,action,1431114505 +63217,110,historically inaccurate,1431114505 +63217,110,uprising,1431114505 +63217,208,post-apocalyptic,1306930611 +63217,208,sci-fi,1306930614 +63217,208,survival,1306930626 +63217,223,Dialogue Driven,1306930837 +63217,223,view askew,1306930797 +63217,253,based on a book,1306877984 +63217,253,fantasy,1306877977 +63217,253,vampires,1306877982 +63217,353,comic book,1307889681 +63217,353,Fantasy,1307889678 +63217,353,romance,1307889686 +63217,364,animation,1306930320 +63217,364,Disney,1306930333 +63217,364,musical,1306930330 +63217,471,Coen Brothers,1306929883 +63217,471,Comedy,1306929902 +63217,471,Fantasy,1306929888 +63217,480,action,1306930153 +63217,480,based on a book,1306930144 +63217,480,dinosaurs,1306930148 +63217,480,family,1422909254 +63217,480,pseudoscience,1422909254 +63217,551,atmospheric,1306923974 +63217,551,Christmas,1306923968 +63217,551,Tim Burton,1306923963 +63217,588,Action,1306930179 +63217,588,animation,1306930181 +63217,588,Disney,1306930184 +63217,595,animation,1306930346 +63217,595,Disney,1306930348 +63217,595,fairy tale,1306930344 +63217,741,anime,1306922841 +63217,741,cyberpunk,1306922836 +63217,741,sci-fi,1306922840 +63217,919,based on a book,1306926154 +63217,919,fantasy,1306926151 +63217,919,musical,1306926160 +63217,1032,animation,1307008484 +63217,1032,based on a book,1307008492 +63217,1032,surreal,1307008494 +63217,1080,British,1306922906 +63217,1080,Monty Python,1306922909 +63217,1080,satire,1306922912 +63217,1097,drama,1306930521 +63217,1097,fantasy,1306930512 +63217,1097,sci-fi,1306930517 +63217,1148,animation,1307439343 +63217,1148,british,1307439349 +63217,1148,comedy,1307439346 +63217,1197,based on a book,1306922157 +63217,1197,comedy,1306922154 +63217,1197,fantasy,1306922152 +63217,1202,British,1307440743 +63217,1202,cult film,1307440746 +63217,1202,dark comedy,1307440740 +63217,1259,based on a book,1306923121 +63217,1259,coming of age,1306923128 +63217,1259,friendship,1306923124 +63217,1274,animation,1307440213 +63217,1274,cyberpunk,1307440208 +63217,1274,post-apocalyptic,1307440216 +63217,1527,dystopia,1306877419 +63217,1527,sci-fi,1306877413 +63217,1527,surreal,1306877417 +63217,1580,action,1306930376 +63217,1580,comedy,1306930374 +63217,1580,sci-fi,1306930378 +63217,1721,CLASS DIFFERENCES,1306930498 +63217,1721,drama,1306930419 +63217,1721,romance,1306930422 +63217,1732,crime,1307439989 +63217,1732,Cult classic,1307439917 +63217,1732,cult film,1307439905 +63217,1732,dark comedy,1307439894 +63217,1967,Adventure,1307008070 +63217,1967,fantasy,1307008053 +63217,1967,surreal,1307008055 +63217,2138,animation,1306926048 +63217,2138,atmospheric,1306926054 +63217,2138,based on a book,1306926051 +63217,2140,classic,1306876838 +63217,2140,dark,1306876835 +63217,2140,fantasy,1306876831 +63217,2143,fairy tale,1307008735 +63217,2143,fantasy,1307008732 +63217,2143,romance,1307008737 +63217,2174,comedy,1307889638 +63217,2174,cult film,1307889647 +63217,2174,Tim Burton,1307889645 +63217,2193,fantasy,1307889942 +63217,2291,dark comedy,1306925766 +63217,2291,fantasy,1306925769 +63217,2291,surreal,1306925771 +63217,2313,atmospheric,1307440283 +63217,2313,based on a book,1307440275 +63217,2313,drama,1307440280 +63217,2395,Bill Murray,1306876906 +63217,2395,coming of age,1306876908 +63217,2395,quirky,1306876903 +63217,2628,action,1306930540 +63217,2628,fantasy,1306930537 +63217,2628,sci-fi,1306930543 +63217,2683,parody,1306930688 +63217,2683,spoof,1306930676 +63217,2683,time travel,1306930665 +63217,2706,comedy,1306930783 +63217,2706,high school,1306930787 +63217,2706,sexuality,1306930789 +63217,2716,action,1306925975 +63217,2716,Fantasy,1306925972 +63217,2716,ghosts,1306925991 +63217,2716,New York City,1306925986 +63217,2762,Atmospheric,1306923422 +63217,2762,ghosts,1306923416 +63217,2762,psychological,1306923410 +63217,2762,psychology,1306923398 +63217,2762,twist ending,1306923405 +63217,2918,1980s,1306924280 +63217,2918,coming of age,1306924284 +63217,2918,High School,1306924271 +63217,2987,animation,1307438810 +63217,2987,childhood classics,1307438907 +63217,2987,fantasy,1307438804 +63217,2987,live action/animation,1307438876 +63217,3052,Comedy,1307888843 +63217,3052,satire,1307888845 +63217,3052,view askew,1307888840 +63217,3081,Dark,1307889400 +63217,3081,Fantasy,1307889397 +63217,3081,Tim Burton,1307889406 +63217,3114,animation,1307008807 +63217,3114,Disney,1307008810 +63217,3114,Pixar,1307008799 +63217,3581,90s club culture,1307448399 +63217,3581,British,1307448387 +63217,3581,friendship,1307448390 +63217,3671,Mel Brooks,1307441110 +63217,3671,satire,1307441127 +63217,3671,western,1307441123 +63217,3793,action,1306926551 +63217,3793,comic book,1306926565 +63217,3793,superhero,1306926568 +63217,3897,INNOCENCE LOST,1307008699 +63217,3897,journalism,1307008675 +63217,3897,music,1307008689 +63217,4011,british,1307439725 +63217,4011,comedy,1307439721 +63217,4011,organized crime,1307439719 +63217,4103,based on a book,1306924261 +63217,4103,based on a true story,1306924258 +63217,4103,Steven Spielberg,1306924254 +63217,4226,nonlinear,1306922067 +63217,4226,psychology,1306922062 +63217,4226,twist ending,1306922065 +63217,4446,alien invasion,1307216221 +63217,4446,post-apocalyptic,1307216211 +63217,4446,sci-fi,1307216214 +63217,4571,comedy,1307438624 +63217,4571,sci-fi,1307438626 +63217,4571,time travel,1307438632 +63217,4754,atmospheric,1307448299 +63217,4754,cult film,1307448296 +63217,4754,disturbing,1307448292 +63217,4865,comic book,1306930004 +63217,4865,gothic,1306930034 +63217,4865,Thriller,1306930048 +63217,4878,psychology,1306922792 +63217,4878,sci-fi,1306922795 +63217,4878,surreal,1306922798 +63217,4979,dark comedy,1307009783 +63217,4979,dysfunctional family,1307009812 +63217,4979,Wes Anderson,1307009789 +63217,4993,based on a book,1306876859 +63217,4993,fantasy,1306876853 +63217,4993,Oscar (Best Cinematography),1306876856 +63217,5072,animation,1307888893 +63217,5072,anime,1307888899 +63217,5349,Action,1307009516 +63217,5349,comic book,1307009520 +63217,5349,superhero,1307009523 +63217,5378,action,1307008154 +63217,5378,fantasy,1307008151 +63217,5378,sci-fi,1307008157 +63217,5679,disturbing,1307008381 +63217,5679,fantasy,1307008378 +63217,5679,remake,1307008389 +63217,5952,based on a book,1306876876 +63217,5952,fantasy,1306876872 +63217,5952,multiple storylines,1306876874 +63217,6242,atmospheric,1306926460 +63217,6242,disturbing,1306926446 +63217,6242,psychological,1306926505 +63217,6283,anime,1306922782 +63217,6283,humorous,1306922777 +63217,6283,sci-fi,1306922766 +63217,6328,asylum,1306876961 +63217,6328,spring,1306876963 +63217,6328,war,1306876965 +63217,6377,animation,1306924593 +63217,6377,friendship,1306924589 +63217,6377,Pixar,1306924580 +63217,6502,British,1306925946 +63217,6502,post-apocalyptic,1306925943 +63217,6502,zombies,1306925950 +63217,6711,atmospheric,1307441024 +63217,6711,friendship,1307441019 +63217,6711,reflective,1307441031 +63217,6820,werewolves,1307889207 +63217,6882,Action,1307888999 +63217,6882,time travel,1307888984 +63217,6942,british,1306877461 +63217,6942,christmas,1306877468 +63217,6942,multiple storylines,1306877450 +63217,6942,Nudity (Topless),1306877474 +63217,6942,Romance,1306877453 +63217,7147,based on a book,1306924414 +63217,7147,fantasy,1306924411 +63217,7147,surreal,1306924418 +63217,7153,fantasy,1306876865 +63217,7153,multiple storylines,1306876867 +63217,7153,Oscar (Best Picture),1306876869 +63217,8019,atmospheric,1307889076 +63217,8607,anime,1306923235 +63217,8607,father daughter relationship,1306923234 +63217,8607,Japan,1306923240 +63217,8607,Satoshi Kon,1306923227 +63217,8784,friendship,1307440641 +63217,8784,romance,1307440659 +63217,8961,action,1306923304 +63217,8961,Pixar,1306923312 +63217,8961,superhero,1306923307 +63217,9010,friendship,1307440838 +63217,9010,romance,1307440841 +63217,27660,animation,1306877791 +63217,27660,anime,1306877796 +63217,27660,cyberpunk,1306877789 +63217,27660,sci-fi,1306877799 +63217,27772,fantasy,1307008517 +63217,27772,horror,1307008579 +63217,27772,paranormal,1307008524 +63217,30793,based on a book,1307890188 +63217,30793,fantasy,1307890183 +63217,30793,Tim Burton,1307890191 +63217,30810,comedy,1307009752 +63217,30810,dark,1307009759 +63217,30810,Wes Anderson,1307009761 +63217,31408,bittersweet,1306876957 +63217,31408,coming of age,1306876954 +63217,31408,Nudity (Topless),1306876952 +63217,31658,based on a book,1306922135 +63217,31658,fantasy,1306922133 +63217,31658,Studio Ghibli,1306922138 +63217,32587,atmospheric,1306924074 +63217,32587,multiple storylines,1306924065 +63217,32587,surreal,1306924071 +63217,34048,action,1307439256 +63217,34048,based on a book,1307439252 +63217,34048,sci-fi,1307439258 +63217,34405,dystopia,1306876923 +63217,34405,sci-fi,1306876916 +63217,34405,social commentary,1306876910 +63217,37729,animation,1307314118 +63217,37729,dark,1307314121 +63217,37729,Tim Burton,1307314124 +63217,37830,based on video game,1307007930 +63217,37830,Dynamic CGI Action,1307007914 +63217,39183,based on a book,1307875648 +63217,39183,romance,1307875651 +63217,39183,sexuality,1307875653 +63217,42002,Broadway,1307008025 +63217,42002,mel brooks,1307008010 +63217,42002,Remake,1307008023 +63217,42213,uplifting,1307448186 +63217,44191,comic book,1306876935 +63217,44191,sci-fi,1306876936 +63217,45728,Kevin Smith,1306926207 +63217,45728,sequel,1306926202 +63217,45728,view askew,1306926181 +63217,46578,dark comedy,1306924928 +63217,46578,road trip,1306924932 +63217,46578,satire,1306924948 +63217,48394,fantasy,1306922688 +63217,48394,Oscar (Best Cinematography),1306922705 +63217,48394,psychology,1306922690 +63217,48394,surreal,1306922708 +63217,49422,Absurd,1306876943 +63217,49422,French,1306876939 +63217,49422,Michel Hazanavicius,1306876946 +63217,51662,action,1307889770 +63217,51662,atmospheric,1307889775 +63217,51662,comic book,1307889772 +63217,52435,based on a book,1306923724 +63217,52435,Christmas,1306923729 +63217,52435,narrated,1306923748 +63217,52973,Judd Apatow,1307889310 +63217,52973,pregnancy,1307889266 +63217,53519,car chase,1307889699 +63217,53519,Quentin Tarantino,1307889693 +63217,53519,stylized,1307889702 +63217,55269,dark comedy,1307009849 +63217,55269,road trip,1307009852 +63217,55269,Wes Anderson,1307009854 +63217,55908,cult film,1306876885 +63217,55908,psychological,1306876883 +63217,55908,sci-fi,1306876881 +63217,56367,comedy,1307008755 +63217,56367,high school,1307008752 +63217,56367,pregnancy,1307008758 +63217,56757,dark,1307008417 +63217,56757,dark comedy,1307008414 +63217,56757,musical,1307008426 +63217,56757,Tim Burton,1307008434 +63217,57274,atmospheric,1306925927 +63217,57274,horror,1306925924 +63217,57274,zombies,1306925932 +63217,58998,Apatow productions,1306926406 +63217,58998,comedy,1306926354 +63217,58998,romance,1306926334 +63217,61024,comedy,1307890090 +63217,61240,atmospheric,1306922593 +63217,61240,based on a book,1306922577 +63217,61240,coming of age,1306922579 +63217,61240,serial killer,1306922575 +63217,61240,vampires,1306922586 +63217,63082,based on a book,1306923433 +63217,63082,Oscar (Best Picture),1306923437 +63217,63082,romance,1306923444 +63217,63131,comedy,1306877914 +63217,63131,geeks,1306877923 +63217,63131,Seann William Scott,1306877921 +63217,63131,social commentary,1306877911 +63217,63433,aliens,1306876849 +63217,63433,made for TV,1306876844 +63217,63433,space,1306876846 +63217,64957,Based On Short Story,1307889560 +63217,64957,drama,1307889470 +63217,64957,romance,1307889477 +63217,65261,anime,1306923367 +63217,65261,friendship,1306923362 +63217,65261,Studio Ghibli,1306923365 +63217,66097,animation,1307008086 +63217,66097,based on a book,1307008090 +63217,66097,Surreal,1307008092 +63217,67734,Romance,1306929964 +63217,68073,British,1306924962 +63217,68073,Music,1306924965 +63217,68073,radio,1306924974 +63217,68358,action,1306876927 +63217,68358,sci-fi,1306876929 +63217,68358,time travel,1306876925 +63217,68952,funny,1307890032 +63217,68952,horror,1307890034 +63217,68952,supernatural,1307890023 +63217,68954,friendship,1306922610 +63217,68954,Pixar,1306922607 +63217,68954,romance,1306922614 +63217,69951,escapism,1307875537 +63217,69951,fantasy,1307875504 +63217,69951,surreal,1307875514 +63217,71535,dark comedy,1306923928 +63217,71535,post-apocalyptic,1306923931 +63217,71535,zombies,1306923936 +63217,72171,blaxploitation,1306877812 +63217,72171,exploration,1306877860 +63217,72171,parody,1306877815 +63217,72226,animation,1306922813 +63217,72226,based on a book,1306922816 +63217,72226,Wes Anderson,1306922826 +63217,74458,atmospheric,1307441251 +63217,74458,psychological,1307441247 +63217,74458,stylized,1307441260 +63217,74754,Philip Haldiman,1306876887 +63217,74754,terrible acting,1306876896 +63217,74754,unintentional comedy,1306876894 +63217,74789,based on a book,1307008467 +63217,74789,fantasy,1307008469 +63217,74789,Tim Burton,1307008471 +63217,74916,Dark comedy,1307010259 +63217,74916,Romance,1307010259 +63217,76251,action,1306923762 +63217,76251,high school,1306923759 +63217,76251,superhero,1306923764 +63217,78209,Comedy,1307008645 +63217,78499,adventure,1307008820 +63217,78499,animation,1306922421 +63217,78499,friendship,1307008830 +63217,78499,Pixar,1306922424 +63217,78499,tense,1307008827 +63217,78499,Tom Hanks,1306922426 +63217,79132,alternate reality,1306876970 +63217,79132,fantasy,1306876967 +63217,79132,sci-fi,1306876972 +63217,79702,fantasy,1306923377 +63217,79702,fight scenes,1306923380 +63217,79702,stylized,1306923384 +63217,80846,supernatural,1307439043 +63217,82459,remake,1325115912 +63217,82459,Western,1325115908 +63217,86487,mini series,1318115595 +63217,87234,Coming Of Age,1320250511 +63217,95309,apocalyptic,1352683560 +63251,260,classic,1437312581 +63251,260,must see,1437312589 +63251,260,sci-fi,1437312577 +63251,356,classic,1437313514 +63251,356,comedy,1437313514 +63251,356,must see,1437313514 +63252,260,hero's journey,1438197731 +63252,260,Science Fiction,1438197709 +63252,260,space adventure,1438197738 +63283,260,Cool,1436346677 +63283,260,too long,1436346695 +63286,65772,emotional,1438006697 +63286,65772,exciting,1438006697 +63286,65772,plot twist,1438006697 +63297,2594,Nudity (Topless - Notable),1309666563 +63297,2594,Nudity (Topless),1309666570 +63297,4973,female protagonist,1309667095 +63297,5618,childhood,1309666443 +63297,26326,sexuality,1309665957 +63297,26326,unique,1309665893 +63297,81591,female protagonist,1309667053 +63297,81591,sex,1309667005 +63301,48780,Christopher Nolan,1433914428 +63301,48780,mystery,1433914442 +63301,94466,future,1433914290 +63301,94466,technology,1433914288 +63301,94466,well constructed,1433914294 +63301,105246,beautiful,1433914193 +63301,105246,great performances,1433914193 +63301,105246,touching,1433914193 +63336,59725,romance,1212870955 +63339,39,Amy Heckerling,1346697368 +63339,269,Echo Park,1346698814 +63339,269,girl gangs,1346698796 +63339,282,Jodie Foster,1346698761 +63339,1271,lesbian,1346698498 +63339,1447,Tupac Shakur,1346698449 +63339,1509,lesbian,1346534175 +63339,2108,satire:Hollywood insiders,1346698354 +63339,2361,disturbing,1346697135 +63339,2761,robots,1346697936 +63339,2774,lesbian,1346697920 +63339,3186,based on a true story,1346700464 +63339,3289,China,1346700438 +63339,3476,nonlinear,1346700396 +63339,3476,twist ending,1346700399 +63339,3679,music documentary,1346700374 +63339,3679,punk rock,1346700381 +63339,3679,rock and roll,1346700379 +63339,3833,mad scientist,1346700326 +63339,3914,Gay,1346700308 +63339,4477,Pee-Wee Herman,1346697779 +63339,4571,comedy,1346697740 +63339,4571,time travel,1346697744 +63339,4597,Christian Slater,1346700121 +63339,4642,based on a play,1346700100 +63339,4642,cult film,1346700084 +63339,4863,Divine,1346700017 +63339,4863,John Waters,1346700017 +63339,4998,Tony Curtis,1346699986 +63339,5266,Jodie Foster,1346697676 +63339,5481,Beyonce cameo,1346696166 +63339,6269,foster child,1346699852 +63339,6464,Kenan and Kel,1346699559 +63339,6748,David Cronenberg,1346699506 +63339,7033,Michael J. Fox,1346697591 +63339,7160,based on a true story,1346699438 +63339,7160,serial killer,1346699432 +63339,7340,gender-queer,1346699406 +63339,33649,Chinese culture,1346699303 +63339,33649,lesbian,1346699278 +63339,33649,queer,1346699282 +63339,49278,Denzel Washington,1346699193 +63339,49278,time travel,1346699191 +63339,49735,Gay Lead Character,1346534984 +63339,73321,post-apocalyptic,1346696754 +63361,1288,mockumentary,1137109382 +63361,3645,newspaper theme,1137109481 +63376,379,Jean-Claude Van Damme,1335531647 +63384,260,EPIC,1444530963 +63384,260,sci-fi,1444530976 +63400,36,death,1137344628 +63400,36,institutions,1137344628 +63400,36,prison,1137344628 +63400,53,immigrants,1145505592 +63400,190,environment,1137344090 +63400,190,food,1137344090 +63400,233,death,1137344122 +63400,233,mystery,1137344122 +63400,233,romance,1137344122 +63400,321,communism,1139076445 +63400,321,cuba,1139076445 +63400,321,homophobia,1139076445 +63400,448,accident,1137344862 +63400,448,death,1137344862 +63400,448,Isabella Rossellini,1137344862 +63400,448,Jeff Bridges,1137344862 +63400,448,psychology,1137344862 +63400,529,baseball,1138079846 +63400,529,chess,1138079846 +63400,750,apocolypse,1137344765 +63400,750,nuclear,1137344765 +63400,880,pointless,1170647255 +63400,912,nazi,1137344601 +63400,994,Isabella Rossellini,1145505560 +63400,994,Tony Shalub,1145505559 +63400,1077,technology,1137344092 +63400,1080,Jesus,1137345013 +63400,1080,middle east,1137345013 +63400,1080,religion,1137345013 +63400,1096,holocaust,1138080488 +63400,1096,jewish,1138080488 +63400,1096,nazi,1138080488 +63400,1136,chivalry,1137344071 +63400,1136,middle ages,1137344071 +63400,1136,religion,1137344071 +63400,1193,institutions,1137344086 +63400,1193,rebellion,1137345241 +63400,1250,Alec Guiness,1137735233 +63400,1250,Geneva Conventions,1137735233 +63400,1265,Bill Murray,1137344117 +63400,1271,the old south,1166105821 +63400,1283,death,1137771777 +63400,1283,guns,1137771777 +63400,1283,Joseph McCarthy,1137771777 +63400,1288,Christopher Guest,1137344097 +63400,1288,cult,1137344097 +63400,1288,Harry Shearer,1137344097 +63400,1288,metal,1137344097 +63400,1288,rock,1137344097 +63400,1449,Christopher Guest,1137344062 +63400,1649,lions,1143559974 +63400,1649,moles,1143559975 +63400,1649,robots,1143559975 +63400,1649,shrubbery,1143559975 +63400,1653,genetic engineering,1137344879 +63400,1653,institutions,1137344879 +63400,1653,rebellion,1137344879 +63400,1747,dustin hoffman,1156772304 +63400,1747,politics,1156772304 +63400,1901,gay,1137344130 +63400,1901,homophobia,1137344130 +63400,1901,politics,1137344130 +63400,1964,jane fonda,1143089906 +63400,2031,greed,1137345795 +63400,2064,capitalism,1137344180 +63400,2064,Michael Moore,1137345201 +63400,2064,workers,1137344180 +63400,2064,workplace,1137344180 +63400,2105,anti-atheist,1155480931 +63400,2329,holocaust,1137344239 +63400,2329,nazi,1137344239 +63400,2329,skinhead,1137344239 +63400,2358,kosovo,1163347845 +63400,2502,technology,1137344083 +63400,2502,workplace,1137344083 +63400,2542,sting,1143002537 +63400,2542,violence,1143002537 +63400,2697,England,1137345090 +63400,2697,islam,1137345090 +63400,2697,muslim,1137345090 +63400,2697,Om Puri,1137345090 +63400,2697,rebellion,1137345106 +63400,2890,comedy,1137345742 +63400,2890,death,1137345742 +63400,2890,George Clooney,1137345742 +63400,2890,middle east,1137345742 +63400,3008,apocolypse,1137344111 +63400,3008,romance,1137344111 +63400,3037,Dustin Hoffman,1137344955 +63400,3037,holocaust,1137344955 +63400,3037,native americans,1137344955 +63400,3148,abortion,1137345297 +63400,3148,orphans,1137345297 +63400,3362,Al Pacino,1137947747 +63400,3362,bank,1137947747 +63400,3362,death,1137947747 +63400,3379,death,1140105970 +63400,3379,Gregory Peck,1140105970 +63400,3379,nuclear,1140105970 +63400,3379,war,1140105970 +63400,3476,The Jacket,1145456727 +63400,3679,institutions,1137344705 +63400,3679,punk rock,1137344705 +63400,3679,rebellion,1137344705 +63400,4008,activist,1137344320 +63400,4008,institutions,1137344320 +63400,4008,vietnam,1137344321 +63400,4008,war,1137344321 +63400,4226,accident,1137344075 +63400,4226,death,1137344075 +63400,4226,homocide,1137344075 +63400,4226,memory,1137344075 +63400,4553,environmentalism,1229788752 +63400,4773,procrastination,1137344916 +63400,4773,workplace,1137344916 +63400,4809,death,1139540736 +63400,4809,nuclear,1139540736 +63400,4813,death,1140273678 +63400,4813,spaceships,1140273678 +63400,4830,liberal,1137341799 +63400,4830,prison,1137341799 +63400,4873,cartoon,1137344058 +63400,4873,Ethan Hawke,1137344058 +63400,4873,Richard Linklater,1137344058 +63400,4967,comedy,1137345136 +63400,4967,ethnic conflict,1137345136 +63400,4967,war,1137345136 +63400,5101,dirty,1138809248 +63400,5101,foul,1138809248 +63400,5101,New Orleans,1138809276 +63400,5288,institutions,1137344177 +63400,5288,nuclear,1137344177 +63400,5288,propaganda,1137344177 +63400,5288,war,1137344177 +63400,5619,assassination,1137344068 +63400,5619,capitalism,1137344068 +63400,5619,south america,1137344068 +63400,5619,vietnam,1137344068 +63400,5619,war,1137344068 +63400,5669,clique,1137344548 +63400,5669,death,1137344548 +63400,5669,guns,1137344548 +63400,5669,institutions,1137344548 +63400,5669,Michael Moore,1137345177 +63400,5669,war,1137344548 +63400,5812,homophobia,1145457002 +63400,5812,racism,1145457002 +63400,5812,sexism,1145457002 +63400,5817,denial,1137344279 +63400,5817,ethnic conflict,1137344279 +63400,5817,holocaust,1137344279 +63400,5817,Turkey,1137344279 +63400,5817,war,1137344279 +63400,6235,holocaust,1137344786 +63400,6235,nazi,1137344786 +63400,6676,native americans,1137344933 +63400,6676,rebellion,1137344933 +63400,6775,capitalism,1137344109 +63400,6775,workers,1137344109 +63400,6775,workplace,1137344109 +63400,6935,capitalism,1137344182 +63400,6935,Chavez,1137344182 +63400,6935,coup,1137344182 +63400,6935,neoliberalism,1137344182 +63400,6935,south america,1137344182 +63400,6935,Venezuela,1137344182 +63400,7334,blacklisting,1138722246 +63400,7334,joseph mccarthy,1138722246 +63400,7334,woody allen,1138722246 +63400,7489,comedy,1137344078 +63400,7489,holocaust,1137344078 +63400,7489,institutions,1137344078 +63400,7489,nazi,1137344078 +63400,7560,Henry Fonda,1137852464 +63400,7560,Joseph McCarthy,1137852464 +63400,7560,nuclear,1137852464 +63400,8147,medications,1139631074 +63400,8582,institutions,1137344104 +63400,8582,middle east,1137344104 +63400,8582,politics,1137344104 +63400,8582,rebellion,1137344732 +63400,8582,war,1137344104 +63400,8622,iraq,1137384970 +63400,8622,Michael Moore,1137345214 +63400,8622,politics,1137344120 +63400,8622,terrorism,1137344120 +63400,8622,war,1137344120 +63400,8951,abortion,1137344066 +63400,8951,choice,1137344066 +63400,8951,crime,1137344066 +63400,8987,Karl Rove,1137344174 +63400,8987,politics,1137344174 +63400,8987,Republicans,1137344174 +63400,26629,Dickies,1144335681 +63400,26819,overpopulation,1139630627 +63400,26819,prison,1139630627 +63400,27397,korea,1139284182 +63400,27788,Jacob's Ladder,1145456690 +63400,27846,capitalism,1137344133 +63400,27846,politics,1137344133 +63400,30749,ethnic conflict,1137344115 +63400,30749,holocaust,1137344115 +63400,30749,war,1137344115 +63400,33154,capitalism,1137344125 +63400,33154,economics,1137344125 +63400,33154,investing,1137344125 +63400,36276,typically french,1156772510 +63400,36527,family,1144335600 +63400,37240,death,1139784387 +63400,37240,iraq,1139784387 +63400,37240,nuclear,1139784387 +63400,37240,politics,1139784387 +63400,37240,war,1139784387 +63400,39292,blacklisting,1138722289 +63400,39292,joseph mccarthy,1138722289 +63400,41527,israel,1145199940 +63400,41527,palestine,1145199940 +63400,41527,suicide,1145199940 +63400,46559,afghanistan,1151945626 +63400,46559,british,1151945626 +63400,46559,camp x-ray,1151945626 +63400,46559,gitmo,1151945626 +63400,46559,torture,1151945626 +63400,48394,fascism,1169048039 +63400,48394,spanish civil war,1169048039 +63400,55069,abortion,1202138801 +63400,64614,ageism,1232811433 +63437,2858,Oscar (Best Picture),1215814745 +63456,393,video game adaptation,1198545362 +63485,422,thriller,1367830645 +63485,747,stupid,1367830555 +63485,999,ensemble cast,1367830026 +63485,1069,mystery,1367830246 +63485,1096,mental illness,1367830187 +63485,1957,inspirational,1367830151 +63485,2097,dark,1367829936 +63485,2431,inspirational,1367830151 +63485,2443,ensemble cast,1367830026 +63485,2461,franchise,1367830090 +63485,2483,dark,1367829935 +63485,2806,high school,1367830123 +63485,3015,tense,1367830600 +63485,3071,inspirational,1367830151 +63485,3230,nazis,1367830276 +63485,3427,police,1367830472 +63485,3505,thriller,1367830644 +63485,3690,franchise,1367830090 +63485,3822,black and white,1367829801 +63485,4029,ensemble cast,1367830026 +63485,4043,father-son relationship,1367830076 +63485,4068,high school,1367830123 +63485,4212,mystery,1367830246 +63485,4251,violent,1367830669 +63485,4336,tense,1367830600 +63485,4347,nazis,1367830278 +63485,4640,violent,1367830669 +63485,4655,politics,1367830512 +63485,4661,thriller,1367830645 +63485,4769,nazis,1367830278 +63485,4814,thriller,1367830644 +63485,4845,stupid,1367830555 +63485,4947,police,1367830472 +63485,4969,mystery,1367830246 +63485,5267,inspirational,1367830150 +63485,5434,tense,1367830600 +63485,5498,black and white,1367829801 +63485,5501,stupid,1367830555 +63485,5564,high school,1367830122 +63485,5570,tense,1367830600 +63485,5585,stupid,1367830554 +63485,5642,police,1367830473 +63485,5993,politics,1367830512 +63485,6185,police,1367830473 +63485,6216,nazis,1367830278 +63485,6260,christianity,1367829866 +63485,6371,franchise,1367830090 +63485,6630,christianity,1367829867 +63485,6639,tense,1367830600 +63485,6639,thriller,1367830645 +63485,6875,nudity (topless - notable),1367830299 +63485,6896,nazis,1367830278 +63485,6981,christianity,1367829867 +63485,7223,mystery,1367830246 +63485,7235,violent,1367830669 +63485,7241,nazis,1367830277 +63485,7260,christianity,1367829867 +63485,7831,mystery,1367830246 +63485,7834,mystery,1367830247 +63485,8207,tense,1367830600 +63485,8207,thriller,1367830644 +63485,25769,father-son relationship,1367830077 +63485,26003,black and white,1367829802 +63485,26078,politics,1367830512 +63485,26122,dark,1367829936 +63485,26269,father-son relationship,1367830077 +63485,27033,dark,1367829935 +63485,27700,violent,1367830669 +63485,31225,inspirational,1367830151 +63485,31367,Charlie Sheen,1247084063 +63485,31367,Kristy Swanson,1247084065 +63485,31952,dark,1367829936 +63485,41285,clever,1247084153 +63485,41285,Greek tragedy,1247084181 +63485,41285,non-hollywood ending,1247084171 +63485,41285,Scarlett Johansson,1247084162 +63485,44193,high school,1367830123 +63485,44665,twist ending,1247083924 +63485,46967,A Comedy Version Of Matchpoint,1247084308 +63485,46967,Scarlett Johansson,1247084315 +63485,50798,stupid,1367830555 +63485,57528,violent,1367830669 +63485,57532,stupid,1367830555 +63485,62792,police,1367830473 +63485,63436,franchise,1367830090 +63485,67923,franchise,1367830090 +63485,74677,politics,1367830512 +63485,78637,franchise,1367830090 +63485,87304,father-son relationship,1367830077 +63485,99114,violent,1367830669 +63487,260,geeky,1444455219 +63487,260,interesting,1444455238 +63494,260,good vs evil,1442276300 +63494,260,oldie but goodie,1442276304 +63494,110771,funny,1442276372 +63494,110771,surprisingly good,1442276367 +63534,1201,classic,1421942049 +63534,1201,shooting,1421942049 +63534,1201,western,1421942049 +63534,109850,cars,1421962965 +63534,109850,racing,1421962953 +63563,260,Cult,1431051564 +63563,260,Science Fiction,1431051554 +63563,260,Star Wars,1431051545 +63570,260,awesome,1439849838 +63570,260,scifi cult,1439849849 +63582,260,classic,1433180893 +63582,260,sci-fi,1433180900 +63597,223,Kevin Smith,1296606657 +63597,223,low budget,1296606660 +63597,2959,Brad Pitt,1296606056 +63597,45728,Kevin Smith,1296606674 +63625,912,Classic,1433611452 +63625,912,Historic,1433611446 +63625,1172,Classic,1433611465 +63626,480,Dinosaurs,1439793309 +63626,480,genetics,1439793330 +63626,480,Jeff Goldblum,1439793316 +63626,480,Sam Neill,1439793325 +63626,1206,cult film,1439793272 +63626,1206,dystopia,1439793274 +63626,1206,quirky,1439793287 +63626,1206,violent,1439793289 +63626,2710,creepy,1439792921 +63626,2710,found footage,1439792914 +63626,2710,Handycam,1439792917 +63626,2710,horror,1439792926 +63626,2710,low budget,1439792923 +63626,3535,comical violence,1439793255 +63626,3535,dark comedy,1439793247 +63626,3535,insanity,1439793245 +63626,71379,demon possession,1439792954 +63626,71379,low budget,1439792947 +63626,71379,Realism,1439792956 +63626,93805,alternate history,1439792850 +63626,93805,Nazis,1439792833 +63626,93805,UFOS,1439792840 +63626,112515,monster,1439793399 +63626,113565,found footage,1439792745 +63626,117529,Chris Pratt,1439793429 +63626,117529,dinosaurs,1439793426 +63626,117529,science,1439793435 +63626,122882,dystopian,1439793355 +63626,122882,post apocalypse,1439793357 +63638,260,classic,1434594853 +63638,260,Science Fiction,1434594844 +63638,115617,cute,1434595008 +63638,115617,disney,1434595008 +63638,115617,family,1434595008 +63644,1086,classic,1452209988 +63644,1086,detective,1452209999 +63644,1086,suspense,1452209994 +63644,2201,murder,1452296715 +63679,593,psychological,1429429002 +63679,4963,heist,1429428949 +63679,4963,las vegas,1429428941 +63693,296,classic,1209448840 +63693,344,hilarious,1209448736 +63693,367,classic,1209448881 +63693,377,action,1209448764 +63693,380,action,1209448747 +63693,832,action,1209448837 +63693,1101,action,1209448754 +63693,1136,hilarious,1209448857 +63693,1393,hilarious,1209448905 +63693,2683,hilarious,1209448718 +63693,2762,suspense,1209448779 +63693,3752,hilarious,1209448870 +63693,3897,music,1209448729 +63693,4011,hilarious,1209448770 +63693,4344,action,1209448761 +63693,5445,action,1209448863 +63693,6188,hilarious,1209448850 +63693,6365,action,1209448875 +63693,6378,action,1209448910 +63693,6539,action,1209448846 +63693,6595,action,1209448832 +63693,8641,hilarious,1209448724 +63693,8908,action,1209448893 +63693,33794,action,1209448706 +63693,35836,hilarious,1209448742 +63693,46578,hilarious,1209448888 +63693,49272,action,1209448700 +63693,54503,hilarious,1209448686 +63693,56367,hilarious,1209448900 +63711,4644,bruno ganz,1156182766 +63711,5051,but lighter,1143015263 +63711,5051,not as good as other dogme films,1143015258 +63711,5878,just almodovar,1156183324 +63711,27636,berlin,1156182885 +63711,33722,Judy Dench,1156182970 +63712,44191,dystopia,1439795088 +63739,260,jedi,1438445561 +63739,260,lightsabers,1438445567 +63763,260,space action,1437781656 +63763,260,tight story,1437781689 +63763,356,20th century current events,1437782003 +63763,356,bildungsroman,1437782003 +63763,356,charming,1437782003 +63765,370,crazy,1435079503 +63765,370,fast-paced,1435079503 +63765,370,funny,1435079503 +63765,468,funny,1435096819 +63765,3983,realistic,1446924623 +63765,4014,Childish,1446581021 +63765,6870,child abuse,1446418691 +63765,47860,medieval,1451157082 +63765,51084,1980s,1435096695 +63765,51084,Hugh Grant,1435096720 +63765,95761,disturbing,1446412995 +63765,95761,ending sucked,1446413024 +63765,95761,violent,1446413064 +63765,102194,good acting,1446414980 +63765,112946,obscenity,1435096970 +63765,112946,silly,1435096987 +63784,162,artist mind,1247319396 +63784,162,comic book,1247319395 +63784,1580,plot twist,1247319468 +63787,88163,Emma Stone,1441183691 +63787,88163,funny,1441183699 +63818,296,caper,1421780214 +63818,296,crime,1421780214 +63818,296,interwoven storylines,1421780214 +63825,260,adventure,1437578878 +63825,260,sci-fi,1437578859 +63827,8972,puzzle,1348372750 +63827,8972,puzzling,1348372932 +63827,8972,treasure hunt,1348372737 +63827,48780,complicated,1337123363 +63827,48780,twist ending,1337123329 +63827,56775,puzzle,1348372789 +63827,56775,puzzle solving,1348372819 +63827,56775,treasure hunt,1348372776 +63827,79132,complicated,1350256539 +63827,79132,complicated plot,1350256549 +63827,79132,plot,1350256621 +63827,79132,surreal,1350256579 +63827,79132,suspense,1350256588 +63827,79132,thought-provoking,1350256605 +63839,3264,campy,1352960711 +63839,27741,Japan,1439836490 +63839,109489,amish,1438270371 +63839,109489,female heroine,1438270371 +63839,109489,plot twist,1438270371 +63839,140715,black culture,1439831323 +63839,140715,black_culture,1439831182 +63839,140715,death row records,1439831343 +63839,140715,dr. dre,1439831334 +63839,140715,dr_dre,1439831086 +63839,140715,gang_violence,1439831182 +63839,140715,ice cube,1439831332 +63839,140715,ice_cube,1439831082 +63839,140715,music culture,1439831319 +63839,140715,music_business,1439831182 +63839,140715,police brutality,1439831329 +63839,140715,police_brutality,1439831122 +63839,140715,rags_to_riches,1439831122 +63839,140715,rap music,1439831374 +63839,140715,rapper,1439831065 +63839,140715,rappers,1439831067 +63839,140715,social activism,1439831381 +63839,140715,social justice,1439831377 +63839,140715,social_activism,1439831090 +63839,140715,social_justice,1439831075 +63839,140715,west coast rap,1439831337 +63839,140715,west_coast_rap,1439831129 +63855,4973,Paris,1440172553 +63855,78499,Pixar,1440172581 +63873,94466,not a movie,1397973306 +63874,866,Exotic Thriller,1188934637 +63874,1179,Dramatic,1188934580 +63874,1911,Family Comedy,1188934751 +63874,2871,Thriller,1188934547 +63874,3752,Comedy,1188934664 +63874,3916,Drama,1188934772 +63874,4262,Mobb Action,1188934729 +63874,4270,action Adventure,1188934764 +63874,4848,psychological Thriller,1188934715 +63874,5679,Horror,1188934594 +63874,6378,adventureous,1188934658 +63874,7147,FANTASY LIFE,1188934505 +63874,32587,Action thriller,1188934612 +63878,1729,soundtrack,1327335101 +63878,2707,children,1246314056 +63878,2707,crazy ending,1246314025 +63878,2707,Jeff Bridges,1246314027 +63878,3275,Mafia,1245974083 +63878,3275,Mission From God,1245974116 +63878,3275,open ending,1245974109 +63878,3275,organized crime,1245974089 +63878,3275,vigilantism,1245974077 +63878,3275,Willem Dafoe,1245974079 +63878,3535,1980s,1251994154 +63878,3535,based on a book,1251994146 +63878,3535,Christian Bale,1251994143 +63878,4262,atmospheric,1327335055 +63878,4262,soundtrack,1327335065 +63878,64839,Darren Aronofsky,1245963829 +63878,64957,Cate Blanchett,1245963857 +63878,68358,action,1245963709 +63878,68358,future,1245963702 +63878,68358,sci-fi,1245963711 +63878,68358,space travel,1245963705 +63878,68358,time travel,1245963697 +63878,68791,action,1245963770 +63878,68791,artificial intelligence,1245963761 +63878,68791,Christian Bale,1245963756 +63878,68791,post-apocalyptic,1245963754 +63878,68791,robots,1245963764 +63878,68791,sci-fi,1245963767 +63878,70286,fake documentary,1256503353 +63878,72998,immersive,1262783023 +63878,76251,high school,1282744374 +63878,76251,not funny,1282744393 +63878,76251,superhero,1282744389 +63878,79357,Beauty,1299278311 +63878,79357,plot,1299278301 +63878,79357,surreal,1299278305 +63878,80463,protagonist is a computer programmer,1290880189 +63878,80489,Ben Affleck,1297343820 +63878,81591,Darren Aronofsky,1294572124 +63878,81591,Soundtrack,1294572120 +63878,89745,silly,1346193247 +63878,89745,superhero,1346193244 +63878,89804,dialogue,1327334450 +63878,91529,Christian Bale,1345998598 +63878,91529,Christopher Nolan,1345998601 +63878,94864,3D version,1346193145 +63878,94864,Bechdel Test:Pass,1346193130 +63878,94864,religious overtones,1346193142 +63878,94864,scifi,1346193148 +63878,94864,self-sacrifice,1346193138 +63878,94864,technology,1346193151 +63878,98809,stretched out,1357067995 +63878,98809,too long,1357067991 +63939,236,tasse de chocolat,1143046717 +63939,49130,wine and romance,1184537004 +63939,50792,sweet and romantic,1184536965 +63959,1101,girlie movie,1138024567 +63978,1,pixar,1432345046 +63978,1,tim allen,1432345046 +63978,1,tom hanks,1432345046 +63978,260,darth vader,1430456555 +63978,260,lightsaber duel,1430456555 +63978,260,star wars,1430456555 +63978,541,cyberpunk,1445383366 +63978,552,Kiefer Sutherland,1402073923 +63978,1136,classic,1442200602 +63978,1136,excellent dialogue,1442200605 +63978,1136,satire,1442200611 +63978,1136,satirical,1442200595 +63978,1246,bittersweet,1442200705 +63978,1246,inspirational,1435077288 +63978,1246,philosophy,1435077213 +63978,1246,Quotable,1435077225 +63978,1246,Robin Williams,1435077215 +63978,1272,biography,1435077199 +63978,1272,true story,1435077201 +63978,1566,wrong. so wrong,1402082814 +63978,2571,action,1435076912 +63978,2571,alternate reality,1435076903 +63978,2571,artificial intelligence,1435076907 +63978,2571,future dystopias,1433195107 +63978,2571,great special effects,1433195107 +63978,2571,pg-13:sci-fi action violence,1433195107 +63978,2571,philosophy,1435076901 +63978,2571,post apocalyptic,1435076914 +63978,2571,sci-fi,1435076898 +63978,2571,Special Effects,1435076923 +63978,2571,thought-provoking,1435076910 +63978,2918,classic,1435077035 +63978,3175,parody,1447051345 +63978,3535,insanity,1432345356 +63978,3535,psychological,1432345359 +63978,3535,psychology,1432345353 +63978,4022,adventure,1435077087 +63978,4022,philosophy,1435077099 +63978,4022,psychological,1435077089 +63978,4022,Tom Hanks,1435077084 +63978,4963,crime,1402073588 +63978,4963,George clooney,1402073549 +63978,4963,good remake,1402073573 +63978,4963,las vegas,1402073559 +63978,4963,Matt Damon,1435076863 +63978,4963,plot twist,1402073619 +63978,4963,witty,1435076870 +63978,5380,bad acting,1402080034 +63978,6936,comedy,1435076810 +63978,6936,Will Ferrell,1435076807 +63978,45208,cheesy,1402074010 +63978,45208,robin williams,1402074000 +63978,45431,based on comic,1402073446 +63978,45431,below r,1402073413 +63978,45431,dreamworks,1402073422 +63978,45431,pixar,1402073401 +63978,45431,talking animals,1402073430 +63978,45447,Tom Hanks,1451524222 +63978,45447,treasure hunt,1451524212 +63978,54286,assassin,1435077311 +63978,54286,cia,1435077314 +63978,54286,conspiracy,1435077309 +63978,54286,espionage,1435077302 +63978,54286,great plot,1435077316 +63978,54286,Matt Damon,1435077304 +63978,54286,twist ending,1435077307 +63978,56757,dark,1447051235 +63978,56757,dark comedy,1447051217 +63978,56757,great cinematography,1447051239 +63978,56757,Johnny Depp,1447051219 +63978,56757,Musical,1447051226 +63978,56757,serial killer,1447051232 +63978,79132,alternate reality,1433195411 +63978,79132,Christopher Nolan,1435077451 +63978,79132,clever,1433195400 +63978,79132,complicated,1433195388 +63978,79132,heist,1433195394 +63978,79132,intellectual,1433195397 +63978,79132,multiple interpretations,1433195428 +63978,79132,psychological,1433195435 +63978,79132,psychology,1433195433 +63978,79132,thought-provoking,1433195385 +63978,79132,visually appealing,1433195415 +63978,84152,addium,1430456737 +63978,84152,smart drugs,1430456764 +63978,87232,Marvel,1435077131 +63978,87232,superhero,1435077120 +63978,87232,visually appealing,1435077128 +63978,87232,X-men,1435077126 +63978,88125,epic,1435077151 +63978,88125,great acting,1435077158 +63978,88125,great cinematography,1435077154 +63978,88140,Marvel,1435077056 +63978,88140,Marvel Cinematic Universe,1435077059 +63978,88140,superhero,1435077050 +63978,88140,world war ii,1435077053 +63978,89745,excellent cinematography,1435076993 +63978,89745,great humor,1435076986 +63978,89745,Marvel,1435076978 +63978,89745,superhero,1435076976 +63978,89745,visually appealing,1435076980 +63978,97913,worse than expected,1402082655 +63978,103141,Disney,1402080239 +63978,104074,author: rick riordan,1402073686 +63978,104074,green mythology,1402073697 +63978,104074,not faithful to the book,1402073704 +63978,104074,visually appealing,1402073719 +63978,106918,inspirational,1435077173 +63978,106918,scenic,1435077181 +63978,109487,good science,1433195193 +63978,109487,physics,1433195181 +63978,109487,relativity,1433195170 +63978,109487,science fiction,1433195177 +63978,109487,thought-provoking,1433195172 +63978,119141,Dictatorship,1430457230 +63978,119141,hateuscuztheyaintus,1430457217 +63978,119141,satire,1430457228 +63978,122892,epic battle,1430834652 +63978,122892,Marvel,1430834618 +63978,122892,superhero,1430834623 +63990,912,seen more than once,1163701072 +63990,920,freakin fabulous,1163737076 +63990,926,fabulous,1163700389 +63990,1086,seen more than once,1163699826 +63990,1207,seen more than once,1163700326 +63990,1213,seen more than once,1163699914 +63990,1265,seen more than once,1163703816 +63990,1610,seen more than once,1163700246 +63990,2194,seen more than once,1163700215 +63990,3088,classical,1163699949 +63990,3510,seen more than once,1163700797 +63990,5064,fabulous,1163737135 +63990,6870,powerful,1163702432 +63990,26116,fabulous,1163703637 +63990,45720,fabulous,1163737200 +63990,48516,way too long,1163700090 +63991,82150,bizarre,1448754077 +63991,82150,quirky,1448754072 +64019,103439,heat,1430222856 +64019,103439,necklace,1430222856 +64019,103439,top stars,1430222856 +64019,105340,father daughter relationship,1424759309 +64019,105340,touching story,1424759309 +64019,105340,watch with dad,1424759309 +64022,260,Star Wars,1438486824 +64043,145,Just for fun.,1151108156 +64043,6322,Predictable and unoriginal.,1151108142 +64050,260,sci-fi,1435606006 +64050,260,space opera,1435606012 +64051,2076,overrated,1433903908 +64051,4848,confusing,1433903883 +64051,108729,good acting,1433903852 +64086,11,politics,1216312151 +64086,70,vampires,1216359096 +64086,370,Comedy,1216312207 +64086,784,Comedy,1216312226 +64086,784,Jim Carrey,1216312221 +64086,1136,hilarious,1216310942 +64086,1219,serial killer,1216310911 +64086,1234,Oscar (Best Picture),1216310874 +64086,1245,Coen Brothers,1216310726 +64086,1370,action,1216311907 +64086,1370,Bruce Willis,1216311910 +64086,1387,Steven Spielberg,1216311359 +64086,2194,Gangster,1216311217 +64086,2726,imdb top 250,1216310886 +64086,2726,Stanley Kubrick,1216310889 +64086,3052,Kevin Smith,1216311408 +64086,3147,Stephen King,1216311500 +64086,3176,Matt Damon,1216311549 +64086,3176,murder,1216311552 +64086,3253,comedy,1216311588 +64086,3755,thriller,1216312133 +64086,3948,Ben Stiller,1216311393 +64086,3948,comedy,1216311395 +64086,4235,Nudity (Topless - Brief),1216310870 +64086,4235,violence,1216310865 +64086,5481,hilarious,1216311947 +64086,5481,parody,1216311949 +64086,5502,M. Night Shyamalan,1216311438 +64086,5679,horror,1216311929 +64086,6365,Larry Wachkowski,1216311574 +64086,6502,post-apocalyptic,1216311779 +64086,6502,zombies,1216311777 +64086,6863,Jack Black,1216311769 +64086,6863,rock and roll,1216311771 +64086,6870,Oscar (Best Actor),1216311838 +64086,8874,zombies,1216311364 +64086,8961,Pixar,1216311449 +64086,31364,disturbing,1216310937 +64086,33679,Shooting and shooting,1216311644 +64086,48774,Clive Owen,1216312200 +64086,52281,Quentin Tarantino,1216311028 +64086,52722,comic book,1216312114 +64086,52722,Marvel,1216312110 +64086,53000,post-apocalyptic,1216359128 +64094,34319,Micheal Bay,1302004440 +64094,79720,No Momentum,1302001436 +64099,66691,heist,1437518270 +64114,260,action,1439757671 +64114,260,sci-fi,1439757650 +64114,260,space action,1439757660 +64117,260,Science Fiction,1440953544 +64117,260,space,1440953536 +64144,52281,serial killer,1182811562 +64163,231,carey,1170847696 +64163,231,Fantastic!,1170847696 +64163,231,hilarious,1170847696 +64163,231,jim carrey,1170847707 +64163,1097,Aliens,1170847799 +64163,1097,fabulus,1170847793 +64163,1097,Steven Spielberg,1170847798 +64163,49132,Austin,1170847595 +64163,49132,George W Bush,1170847592 +64163,49132,mustsee,1170847566 +64163,49132,my recommendation,1170847576 +64163,49132,protest,1170847599 +64169,1175,alternate reality,1291982893 +64169,1175,atmospheric,1291982898 +64169,1175,Black comedy,1291982896 +64169,1175,cannibalism,1291982922 +64169,1175,dark humor,1291982913 +64169,1175,French,1291982901 +64169,1416,Argentina,1291982740 +64169,1416,based on a play,1291982742 +64169,1416,history,1291982754 +64169,1416,Madonna,1291982706 +64169,1416,music,1291982758 +64169,1416,musical,1291982699 +64169,1416,politics,1291982761 +64169,1416,true story,1291982789 +64169,2288,thought-out,1289321030 +64169,4439,addiction,1291910790 +64169,4439,Berlin,1291910794 +64169,4439,David Bowie,1291910793 +64169,4439,drug abuse,1291910798 +64169,4439,drugs,1291910801 +64169,4439,heroin,1291910818 +64169,4439,prostitution,1291910807 +64169,4439,true story,1291910809 +64169,4553,aliens,1291899679 +64169,4553,conspiracy,1291899689 +64169,4553,consumerism,1291899692 +64169,4553,humorous,1291899752 +64169,4553,John Carpenter,1291899749 +64169,4553,satirical,1291899745 +64169,4553,sci-fi,1291899853 +64169,4928,AGE DISPARITY ROMANCE,1291982337 +64169,4928,cheating,1291982346 +64169,4928,manipulation,1291982353 +64169,4928,satirical,1291982370 +64169,5291,philosophy,1287179797 +64169,5541,aviation,1291982515 +64169,5541,comedy,1291982493 +64169,5541,humor,1291982491 +64169,6136,boring,1291853168 +64169,6136,nonsensical,1291853221 +64169,6714,cute girls,1287179678 +64169,6714,sword fight,1287179694 +64169,7022,basketball,1354791966 +64169,7022,controversial,1354791947 +64169,7022,dreams,1354791987 +64169,7022,satire,1354791951 +64169,7022,Takeshi Kitano,1354791956 +64169,8033,comedy,1291982254 +64169,8033,heist,1291982203 +64169,26944,homeless,1424213931 +64169,26944,love,1424213931 +64169,26944,prostitute,1424213931 +64169,27178,cute girls,1291903554 +64169,27178,Fatih Akin,1291903587 +64169,27178,funny,1291903575 +64169,27178,travel,1291903562 +64169,27727,alcoholism,1291982268 +64169,27727,atmospheric,1291982296 +64169,27727,complex characters,1291982294 +64169,27727,Fatih Akin,1291982271 +64169,27727,Germany,1291982275 +64169,27727,immigrants,1291982277 +64169,27727,love story,1291982283 +64169,27727,suicide attempt,1291982290 +64169,27727,tragic,1291982305 +64169,31952,dark comedy,1291903645 +64169,31952,hungary,1291903678 +64169,31952,mystery,1291903665 +64169,31952,subterranean,1291903683 +64169,31952,subway,1291903690 +64169,31952,surreal,1291903659 +64169,31952,symbolism,1291903686 +64169,33004,absurd,1428621447 +64169,33004,sarcasm,1428621464 +64169,33539,David Attenborough,1291035600 +64169,38159,The Decalogue series,1291903501 +64169,38159,thought-provoking,1291903505 +64169,39869,1930s,1291982392 +64169,39869,Lars von Trier,1291982381 +64169,39869,political,1291982433 +64169,39869,racism,1291982432 +64169,39869,Slavery,1291982455 +64169,39869,stylish,1291982459 +64169,39869,thought-provoking,1291982472 +64169,39869,village,1291982463 +64169,42938,comedy,1291910773 +64169,45722,action,1291982959 +64169,45722,Adventure,1291982956 +64169,45722,Comedy,1291982949 +64169,45722,funny,1291982951 +64169,45722,ghosts/afterlife,1291983007 +64169,45722,pirates,1291982969 +64169,45722,romantic,1291982972 +64169,45722,seafaring,1291983055 +64169,45722,treasure,1291983051 +64169,46952,crazy,1288224129 +64169,46952,human drama,1288224120 +64169,46952,humor,1288224108 +64169,49932,atmospheric,1429088755 +64169,49932,David Lynch,1429088743 +64169,49932,surreal,1429088741 +64169,54997,naive,1363693429 +64169,54997,ridiculous,1363693425 +64169,56093,bad philoshphy,1291903293 +64169,56093,nonsense,1291903341 +64169,56093,too long,1291903307 +64169,60585,Psychological,1291911815 +64169,68791,action,1291813518 +64169,68791,arnold cgi,1291813647 +64169,68791,artificial intelligence,1291813638 +64169,68791,cgi,1291813551 +64169,68791,cheesy morals,1291813580 +64169,68791,effects,1291813553 +64169,68791,futuristic,1291813565 +64169,68791,McG,1291813692 +64169,68791,robots,1291813511 +64169,68791,ROBOTS AND ANDROIDS,1291813630 +64169,68791,sci-fi,1291813514 +64169,68791,sequel,1291813588 +64169,69134,disturbing,1424347037 +64169,69134,Lars von Trier,1424347014 +64169,69134,Mental Illness,1424347025 +64169,71106,Chris O'Dowd,1425995651 +64169,71106,funny,1425995646 +64169,71106,nerds,1425995644 +64169,71106,sci-fi,1425995648 +64169,71106,time travel,1425995642 +64169,73881,bad acting,1291903417 +64169,73881,extremely stupid humor,1291903413 +64169,73881,horrible plot,1291903455 +64169,74484,hot actresses,1291035227 +64169,74727,classic,1291903178 +64169,74727,comedy,1291903180 +64169,74727,quotable,1291903163 +64169,74727,Soviet Union,1291903174 +64169,74727,undercover cop,1291903168 +64169,76087,Betrayal,1429088428 +64169,76087,Bulgaria,1429088281 +64169,76087,Drama,1429088378 +64169,76087,Love Story,1429088401 +64169,76087,Mystery,1429088345 +64169,76087,Noir,1429088460 +64169,76087,USSR,1429088310 +64169,77800,controversial,1425158267 +64169,77800,dark comedy,1425158262 +64169,77800,Satire,1425158270 +64169,78499,Alive toys,1288715540 +64169,80917,aliens,1292111804 +64169,80917,boring,1427989902 +64169,80917,Misrepresented,1292111797 +64169,80917,no action,1292111852 +64169,80917,nonsensical,1292111819 +64169,80917,nothing happens,1427989890 +64169,80917,romance,1427989858 +64169,80917,social commentary,1427989865 +64169,90430,Christopher Waltz,1429088812 +64169,90430,good acting,1429088793 +64169,90430,real life,1429088808 +64169,90430,satire,1429088798 +64169,90430,social satire,1429088823 +64169,94466,dark,1424551385 +64169,94466,dystopia,1424551381 +64169,94466,satire,1424551387 +64169,94466,technology,1424551383 +64169,94466,tv series,1424551376 +64169,95720,aliens,1356005242 +64169,97306,Christopher Walken,1359112694 +64169,97306,dark comedy,1359112699 +64169,97306,Extreme Violence,1359112702 +64169,97306,Sam Rockwell,1359112706 +64169,97306,screenplay,1359112730 +64169,97306,Woody Harrelson,1359112715 +64169,99114,19th century,1364903139 +64169,99114,BOUNTY HUNTERS,1364903135 +64169,99114,drama,1364903146 +64169,99114,good soundtrack,1364903066 +64169,99114,Great performances,1364903093 +64169,99114,Humour,1364903209 +64169,99114,Over the top,1364903164 +64169,99114,Slavery,1364903087 +64169,99114,Soundtrack,1364903128 +64169,99114,Spaghetti Western,1364903076 +64169,99114,violence,1364903080 +64169,99114,visually appealing,1364903110 +64169,99114,western,1364903084 +64169,103228,aliens,1425944766 +64169,103228,fun,1425944752 +64169,103228,giant monster,1425944760 +64169,103228,giant robots,1425944747 +64169,103228,Guillermo del Toro,1425944779 +64169,103228,Kaiju,1425944764 +64169,103228,mecha,1425944783 +64169,103228,robots,1425944754 +64169,103228,sci-fi,1425944756 +64169,103228,visually appealing,1425944777 +64169,106782,3-hours of sex and drugs,1429088935 +64169,106782,drugs,1429088975 +64169,107406,dystopia,1429088654 +64169,107406,post-apocalyptic,1429088651 +64169,107406,surreal,1429088688 +64169,107406,train,1429088674 +64176,293,pedo,1192396071 +64176,546,failure,1187520933 +64176,954,classic,1187520938 +64176,1012,classic,1187521046 +64176,1665,english comedy,1187521097 +64176,2701,steampunk,1187520858 +64176,3033,parody,1187520841 +64176,3978,magical negro,1196929373 +64176,3979,hell,1187521194 +64176,4254,Australian,1187521387 +64176,4396,racing,1187521330 +64176,4725,psychology,1190040734 +64176,5146,bad,1187521478 +64176,5254,vampires,1187521030 +64176,5444,Disney animated feature,1187521036 +64176,6157,heroic,1187521027 +64176,7147,sad,1187520899 +64176,7147,tall tale,1187520919 +64176,7361,paradox,1200240827 +64176,7438,excessive violence,1187520829 +64176,8810,sappy,1187521287 +64176,8957,surprise ending,1187521145 +64176,36529,clandestine,1187521252 +64176,39446,dissapointing,1187521500 +64176,44555,corruption,1187580862 +64176,45728,hilarious,1187521455 +64176,46970,southern comedy,1187521506 +64176,48304,epic adventure,1187521605 +64176,50068,world war 2,1187521658 +64176,51662,epic,1187521351 +64179,35836,joke,1137126271 +64181,5618,anime,1425096649 +64181,5618,Hayao Miyazaki,1425096653 +64181,5618,Studio Ghibli,1425096651 +64211,410,stupid,1142278548 +64211,919,classic,1142278557 +64211,924,classic,1142279100 +64211,924,Kubrick,1142279098 +64211,1217,Kurosawa,1142278609 +64211,1253,classic,1142279072 +64211,2010,classic,1142278658 +64211,3435,classic,1142278844 +64211,7728,dad's in the courtroom,1142278925 +64214,4873,philosophy,1137982526 +64214,6775,jamaica,1137982859 +64214,8966,sex,1137982551 +64214,27790,inspirational,1137982687 +64214,27790,money,1137982687 +64214,31658,Miyazaki,1137982824 +64214,33004,humor,1137982798 +64214,33004,sci-fi,1137982798 +64214,33794,action,1137982628 +64214,36529,arms dealer,1138586404 +64214,36529,war,1138586404 +64240,4995,mathematics,1430727224 +64240,4995,psychology,1430727220 +64240,74458,psychological,1430728503 +64240,109487,interesting ideea,1430727256 +64240,109487,time-travel,1430727262 +64240,111759,time loop,1431250502 +64240,111759,time travel,1431250507 +64240,112556,mindfuck,1430733789 +64258,18,4,1186787698 +64258,23,2.5,1186787951 +64258,29,2.5,1186787932 +64258,32,3,1186787268 +64258,36,2,1186788303 +64258,47,3.5,1186787532 +64258,50,3,1186787276 +64258,59,1.5,1186790470 +64258,82,2.5,1186787955 +64258,83,3,1186787293 +64258,97,3.5,1186787572 +64258,110,1,1186791025 +64258,116,2.5,1186787958 +64258,184,2,1186788268 +64258,223,4,1186787705 +64258,290,3,1186787168 +64258,306,4,1186787737 +64258,307,2.5,1186787793 +64258,308,3.5,1186787511 +64258,319,3,1186787203 +64258,322,2.5,1186787805 +64258,356,2,1186788292 +64258,367,3,1186787327 +64258,380,1,1186790487 +64258,514,1.5,1186790352 +64258,541,2,1186788314 +64258,587,3,1186787357 +64258,590,3.5,1186787605 +64258,593,2.5,1186787824 +64258,608,3,1186787360 +64258,665,3,1186787273 +64258,666,2,1186788324 +64258,714,4,1186787703 +64258,741,2,1186788290 +64258,750,3,1186787369 +64258,760,3.5,1186787514 +64258,866,3,1186787760 +64258,904,3,1186787193 +64258,908,4,1186787677 +64258,923,2.5,1186787938 +64258,924,2,1186790317 +64258,928,3,1186787197 +64258,931,2.5,1186787811 +64258,996,1,1186791001 +64258,1060,1,1186790974 +64258,1080,2.5,1186787858 +64258,1089,4,1186787660 +64258,1093,2,1186788300 +64258,1120,3.5,1186787551 +64258,1176,2.5,1186787913 +64258,1190,3,1186787233 +64258,1193,4,1186787675 +64258,1198,1,1186791066 +64258,1206,2.5,1186787928 +64258,1213,3.5,1186787585 +64258,1219,3.5,1186787544 +64258,1221,3,1186787354 +64258,1227,2.5,1186787841 +64258,1230,2,1186788317 +64258,1231,2.5,1186787835 +64258,1232,4,1186787739 +64258,1236,2,1186787963 +64258,1237,4,1186787650 +64258,1244,3,1186787329 +64258,1265,3,1186787351 +64258,1295,4,1186787733 +64258,1305,2.5,1186787838 +64258,1354,3.5,1186787613 +64258,1405,3,1186787766 +64258,1447,2,1186788288 +64258,1464,3.5,1186787569 +64258,1476,3.5,1186787547 +64258,1617,2.5,1186787883 +64258,1619,1,1186790977 +64258,1625,4,1186787692 +64258,1645,3,1186787372 +64258,1653,1.5,1186790449 +64258,1682,2,1186788232 +64258,1704,1.5,1186790435 +64258,1732,2.5,1186787948 +64258,1748,3,1186787377 +64258,1809,2.5,1186787908 +64258,1844,3,1186787332 +64258,1884,3.5,1186787587 +64258,1889,2.5,1186787888 +64258,1921,3,1186787191 +64258,1923,2,1186788235 +64258,1952,3.5,1186787559 +64258,1961,1.5,1186790355 +64258,2010,2.5,1186787863 +64258,2019,4,1186787652 +64258,2058,1,1186790989 +64258,2231,2.5,1186787832 +64258,2318,3.5,1186787576 +64258,2324,2.5,1186787871 +64258,2340,1,1186790995 +64258,2357,3,1186787381 +64258,2391,2.5,1186787821 +64258,2395,2,1186788248 +64258,2442,1,1186791007 +64258,2488,3,1186787188 +64258,2502,2.5,1186787848 +64258,2542,4,1186787687 +64258,2580,1.5,1186790445 +64258,2600,3,1186787365 +64258,2677,4,1186787708 +64258,2692,3,1186787199 +64258,2700,4,1186787745 +64258,2706,3.5,1186787626 +64258,2762,2,1186788243 +64258,2765,1,1186791119 +64258,2833,2,1186788272 +64258,2858,3,1186787776 +64258,2862,1,1186791022 +64258,2908,3.5,1186787616 +64258,2916,3,1186787236 +64258,2943,2.5,1186787891 +64258,2952,1,1186790488 +64258,2966,1.5,1186790336 +64258,2976,3,1186787388 +64258,3052,3.5,1186787600 +64258,3081,2.5,1186787818 +64258,3127,2,1186788285 +64258,3147,1.5,1186790433 +64258,3158,1,1186791012 +64258,3176,3,1186787220 +64258,3251,3.5,1186787628 +64258,3252,1,1186790979 +64258,3266,1,1186790998 +64258,3301,1.5,1186790322 +64258,3320,2.5,1186787861 +64258,3342,3,1186787763 +64258,3357,4,1186787700 +64258,3503,3.5,1186787518 +64258,3518,1.5,1186790460 +64258,3535,2,1186788321 +64258,3539,2,1186788295 +64258,3560,2,1186788276 +64258,3677,3,1186787773 +64258,3683,2.5,1186787940 +64258,3706,3.5,1186787622 +64258,3751,2,1186788308 +64258,3783,2.5,1186787918 +64258,3819,2,1186788238 +64258,3863,3,1186787384 +64258,3896,2.5,1186787790 +64258,3906,4,1186787730 +64258,3910,2.5,1186787916 +64258,3925,1.5,1186790332 +64258,3948,1.5,1186790358 +64258,3989,3,1186787180 +64258,3993,3.5,1186787541 +64258,3996,2.5,1186787922 +64258,4011,2.5,1186787816 +64258,4144,3,1186787338 +64258,4146,4,1186787681 +64258,4148,3,1186787349 +64258,4226,3,1186787323 +64258,4235,1,1186791116 +64258,4261,2,1186788274 +64258,4306,3,1186787207 +64258,4312,2.5,1186787894 +64258,4378,2.5,1186787826 +64258,4380,4,1186787664 +64258,4641,2.5,1186787897 +64258,4711,3,1186787229 +64258,4873,1.5,1186790327 +64258,4874,1.5,1186790368 +64258,4886,3,1186787320 +64258,4954,3,1186787297 +64258,4993,1.5,1186790362 +64258,5051,1,1186791003 +64258,5225,4,1186787726 +64258,5266,2,1186788265 +64258,5319,2.5,1186787855 +64258,5339,2,1186788280 +64258,5378,1.5,1186790339 +64258,5388,1.5,1186790377 +64258,5617,1.5,1186790349 +64258,5618,4,1186787742 +64258,5669,3.5,1186787619 +64258,5792,3.5,1186787536 +64258,5839,3,1186787300 +64258,5840,1,1186790991 +64258,5932,3,1186787386 +64258,5949,1.5,1186790374 +64258,5954,2,1186788327 +64258,5956,2.5,1186787906 +64258,5989,2,1186788312 +64258,6003,2.5,1186787925 +64258,6016,2.5,1186787935 +64258,6235,3,1186787367 +64258,6272,1.5,1186790452 +64258,6344,2.5,1186787961 +64258,6539,2,1186788260 +64258,6672,s,1269424620 +64258,6893,2.5,1186787886 +64258,6935,2,1186788255 +64258,6978,1.5,1186790345 +64258,6984,3,1186787217 +64258,7034,3,1186787205 +64258,7042,1.5,1186790481 +64258,7256,3,1186787264 +64258,7385,3.5,1186787503 +64258,7460,3.5,1186787610 +64258,7791,1.5,1186790371 +64258,7884,1,1186791010 +64258,7932,3.5,1186787601 +64258,7934,4,1186787723 +64258,7976,3,1186787335 +64258,8360,4,1186787645 +64258,8464,2.5,1186787808 +64258,8582,3.5,1186787563 +64258,8622,3.5,1186787590 +64258,8873,3,1186787316 +64258,8907,4,1186787648 +64258,8914,1,1186790986 +64258,8950,3.5,1186787567 +64258,8961,1.5,1186790430 +64258,8979,3.5,1186787582 +64258,26606,1.5,1186790479 +64258,27722,4,1186787690 +64258,27912,3,1186787185 +64258,30803,3,1186787784 +64258,31162,1.5,1186790365 +64258,31410,1.5,1186790467 +64258,31658,3,1186787346 +64258,31660,3,1186787210 +64258,32587,2,1186788245 +64258,33585,3.5,1186787631 +64258,33903,1.5,1186790463 +64258,37240,4,1186787728 +64258,37729,2,1186788305 +64258,38159,s,1269424281 +64258,41997,3.5,1186787554 +64258,45722,2,1186788262 +64258,48516,3,1186787374 +64258,51540,3.5,1186787499 +64258,52328,3,1186787215 +64258,53322,Las Vegas,1184279362 +64263,318,escape from prison,1439018254 +64263,318,prison,1439018254 +64263,2329,racism,1438954617 +64263,2918,day off,1438954589 +64263,2918,ferrari,1439018062 +64263,2918,principal,1439018178 +64263,2918,school life,1439018062 +64265,223,surreal,1281255262 +64265,296,dark comedy,1281254737 +64265,296,multiple storylines,1281264739 +64265,296,nonlinear,1281254807 +64265,2959,dark comedy,1281255150 +64265,2959,psychology,1281255164 +64265,2959,surreal,1281255154 +64265,4855,revenge,1281255822 +64265,7361,nonlinear,1281254771 +64265,54503,friendship,1281255131 +64267,5388,Al Pacino,1294213586 +64267,5388,Christopher Nolan,1294213586 +64267,5388,remake,1294213586 +64267,5388,Robin Williams,1294213586 +64267,78499,Pixar,1294206656 +64314,104,Adam Sandler,1338884044 +64314,107,treasure,1368300503 +64314,216,Adam Sandler,1338919262 +64314,353,dark hero,1368300637 +64314,380,arnold,1368309318 +64314,485,arnold,1368309318 +64314,589,arnold,1368309318 +64314,648,confusing,1354999788 +64314,648,predictable,1354999790 +64314,648,Tom Cruise,1354999797 +64314,951,entirely dialogue,1368325652 +64314,1240,arnold,1368309318 +64314,1291,spielberg,1368325847 +64314,1291,treasure,1368300503 +64314,1387,spielberg,1368325847 +64314,1391,mars,1368300616 +64314,1617,neo-noir,1368325540 +64314,1894,stranded,1368300595 +64314,2022,christian,1368320528 +64314,2022,jesus,1368300484 +64314,2028,spielberg,1368325847 +64314,2115,spielberg,1368325847 +64314,2115,treasure,1368300503 +64314,2353,conspiracy theory,1368325755 +64314,2617,treasure,1368300503 +64314,2686,beautiful music,1332808267 +64314,2694,Adam Sandler,1338919000 +64314,2916,arnold,1368309318 +64314,3300,stranded,1368300595 +64314,3994,M. Night Shyamalan,1374267055 +64314,3994,storytelling,1374267062 +64314,5135,bollywood,1368300469 +64314,5445,spielberg,1368325847 +64314,5577,Kieran Culkin,1339087189 +64314,6266,Colin Firth,1341552411 +64314,6266,everything else,1341552416 +64314,6287,Adam Sandler,1338918993 +64314,6377,short-term memory loss,1368325830 +64314,6502,Cillian Murphy,1326892433 +64314,6502,post-apocalyptic,1326892431 +64314,6539,treasure,1368300503 +64314,6874,dark hero,1368300637 +64314,7293,Adam Sandler,1338918964 +64314,7318,jesus,1368300484 +64314,7361,short-term memory loss,1368325830 +64314,7386,christian,1368320528 +64314,8361,apocalypse,1369959491 +64314,8361,catastrophe,1369959487 +64314,8361,end of the world,1369959494 +64314,8361,Jake Gyllenhaal,1369959483 +64314,8361,natural disaster,1369959485 +64314,8366,christian,1368320528 +64314,8529,stranded,1368300595 +64314,8950,Christian Bale,1344752975 +64314,27808,Adam Sandler,1338919137 +64314,33646,Adam Sandler,1338919316 +64314,38061,Robert Downey Jr.,1338961298 +64314,39183,Heath Ledger,1345384299 +64314,44761,Joseph Gordon-Levitt,1323153938 +64314,45186,Philip Seymour Hoffman,1355035436 +64314,45186,Tom Cruise,1355035438 +64314,45672,Adam Sandler,1338919147 +64314,48780,Christian Bale,1333350218 +64314,48780,Michael Caine,1333350227 +64314,51694,Benedict Cumberbatch,1328980979 +64314,51694,James McAvoy,1328980987 +64314,52328,Cillian Murphy,1332777803 +64314,54004,Adam Sandler,1338919187 +64314,54281,Funny,1326346845 +64314,54281,Robert Downey Jr.,1339631148 +64314,54745,good acting,1323147839 +64314,54745,good soundtrack,1323147339 +64314,54745,high school,1323147351 +64314,54745,the stuttering is mostly annoying,1323147345 +64314,58293,historically inaccurate,1323190691 +64314,58297,cheesy,1354347176 +64314,58297,heroine in tight suit,1354347183 +64314,58297,it's a mess,1354347208 +64314,58297,unintentional comedy,1354347151 +64314,58297,unrealistic,1354347161 +64314,58347,James McAvoy,1338503647 +64314,58347,Peter Dinklage,1338503650 +64314,58347,really stupid,1338504655 +64314,58559,Christian Bale,1339139311 +64314,58559,Gary Oldman,1339139331 +64314,58559,Heath Ledger,1339139308 +64314,59315,Robert Downey Jr.,1321849485 +64314,59784,dragon,1368325772 +64314,59900,Adam Sandler,1338919142 +64314,63082,bollywood,1368300469 +64314,63113,007,1355195187 +64314,63113,Daniel Craig,1338706400 +64314,65088,Adam Sandler,1338919007 +64314,67734,Kristen Stewart,1323065806 +64314,67734,Kristen Wiig,1323065825 +64314,70286,social commentary,1344579676 +64314,70695,awful,1343716701 +64314,71535,Abigail Breslin,1339631316 +64314,72165,execution,1345334541 +64314,74416,beautifully filmed,1326170804 +64314,74416,coming of age,1325867980 +64314,74416,Michael Fassbender,1325867983 +64314,79224,Jackie Chan,1326421673 +64314,79224,Jaden Smith,1326421667 +64314,79224,predictable,1326421685 +64314,82202,bland,1333495292 +64314,82202,predictable,1333495285 +64314,85414,Jake Gyllenhaal,1344062402 +64314,85414,mindfuck,1344062406 +64314,85510,audience intelligence underestimated,1339026114 +64314,85510,ridiculous,1339026175 +64314,85510,stupid,1339026175 +64314,85734,filmmakers,1371860697 +64314,85734,interviews,1371860708 +64314,86837,bad acting,1339907421 +64314,87304,dogs,1323243342 +64314,87304,Ewan McGregor,1323243321 +64314,87304,great acting,1323243336 +64314,87304,homosexuality,1323243331 +64314,87304,Melanie Laurent,1323243328 +64314,87430,audience intelligence underestimated,1355115629 +64314,87430,Boring,1355115635 +64314,87430,CGI,1355115653 +64314,87430,Ryan Reynolds,1355115639 +64314,88810,Viola Davis,1325137212 +64314,89470,apocalypse,1339543219 +64314,89470,Gwyneth Paltrow,1339543230 +64314,89470,Jude Law,1339543225 +64314,89470,Kate Winslet,1339543215 +64314,89745,ensemble cast,1355092389 +64314,89745,fun,1338601108 +64314,89745,Jeremy Renner,1355092363 +64314,89745,Robert Downey Jr.,1338600201 +64314,89745,superhero,1338600207 +64314,89864,Joseph Gordon-Levitt,1326821304 +64314,89864,Seth Rogen,1326821308 +64314,89864,Skeletor,1326821349 +64314,89904,dogs,1333398491 +64314,89904,Jean Dujardin,1333398480 +64314,89904,Uggie,1333398506 +64314,89904,visually appealing,1333398554 +64314,90890,Adam Sandler,1338919119 +64314,91094,Amy Adams,1338233593 +64314,91094,Bret McKenzie,1338233629 +64314,91094,cameo-fest,1338233582 +64314,91134,Michelle Williams,1332732831 +64314,91529,Anne Hathaway,1343707401 +64314,91529,Cast,1343707428 +64314,91529,Christian Bale,1343707383 +64314,91529,Gary Oldman,1343707380 +64314,91529,Joseph Gordon-Levitt,1343707414 +64314,91529,Michael Caine,1343707385 +64314,91529,Tom Hardy,1343707395 +64314,91535,Jeremy Renner,1355092299 +64314,91535,Rachel Weisz,1355092311 +64314,91542,Bromance,1326411391 +64314,91542,Funny,1326411455 +64314,91542,Jude Law,1326411414 +64314,91542,Robert Downey Jr.,1326411386 +64314,91630,comedic moments,1355034856 +64314,91630,Jeremy Renner,1355034868 +64314,91630,Simon pegg,1355034853 +64314,91630,Tom Cruise,1355034859 +64314,91658,corruption,1338883037 +64314,91658,Daniel Craig,1338882992 +64314,91658,David Fincher,1338883005 +64314,91658,good acting,1338883010 +64314,91658,hacking,1338883050 +64314,91658,journalism,1338883029 +64314,91658,remake,1338883043 +64314,91658,Rooney Mara,1338882992 +64314,91658,suspense,1338883015 +64314,92481,Benedict Cumberbatch,1327218011 +64314,92481,Scenery,1327218067 +64314,93270,destruction,1371858374 +64314,93270,stupidity,1371858368 +64314,93270,unlikeable characters,1371858382 +64314,93641,Benedict Cumberbatch,1332740335 +64314,93641,Great acting,1332740326 +64314,94933,based on a true story,1338943271 +64314,94933,jews,1433039665 +64314,94933,nazis,1433039665 +64314,94933,sports,1433039665 +64314,95167,Bechdel Test:Pass,1355462719 +64314,95491,Dan Byrd,1341257963 +64314,95491,score:Andrew Bird,1341258002 +64314,95491,Sountrack,1341257970 +64314,95578,colombia,1433040276 +64314,96079,Daniel Craig,1355116033 +64314,96917,Jennifer Lawrence,1371858324 +64314,96917,predictable,1371858321 +64314,97921,Bradley Cooper,1371858434 +64314,97921,cured by love/hope,1371858469 +64314,97921,dark humor,1371858481 +64314,97921,Jennifer Lawrence,1371858444 +64314,97921,Robert De Niro,1371858423 +64314,99728,Corny,1371858232 +64314,99728,corny narration,1371858245 +64314,99728,no character depth,1371858242 +64314,100843,funny,1390063170 +64314,100843,Tom Schilling,1390063189 +64314,102850,cheesy,1369868869 +64314,102850,tv movie,1369868865 +64316,260,classic,1435440516 +64316,260,space epic,1435440500 +64389,260,space opera,1439794247 +64429,2706,funny tits,1317654908 +64450,4993,fantasy,1198109035 +64450,5971,great soundtrack,1198109011 +64450,5971,Japan,1198109016 +64464,34405,firefly,1140307909 +64464,37741,death penalty,1140308234 +64464,37741,prison,1140308234 +64464,37741,writers,1140308234 +64464,38886,divorce,1140308062 +64464,38886,teenagers,1140308062 +64464,38886,writers,1140308062 +64464,39414,based on book,1140308181 +64464,39414,failed romance,1140308181 +64464,40819,biography,1140308119 +64464,40819,johnny cash,1140308119 +64464,40819,music,1140308119 +64464,41285,Greek tragedy,1140308388 +64464,41569,remake,1140308374 +64464,41569,too many dinosaurs,1140308374 +64464,41573,Too many cliches,1140308406 +64464,41716,assassin,1140308016 +64464,41716,great cinematography,1140308016 +64464,42007,The Graduate,1140308398 +64502,367,comedy,1442451186 +64502,1172,classical,1442451247 +64502,2571,fantasy,1442451206 +64502,5995,classical,1442451261 +64502,6016,crime,1442451335 +64503,260,critically acclaimed,1437932756 +64503,260,Science Fiction,1437932763 +64503,80551,strong female presence,1438023607 +64504,296,atmospheric,1343520143 +64504,296,dark comedy,1343520140 +64504,296,drugs,1343520154 +64504,296,multiple storylines,1343520161 +64504,296,organized crime,1343520151 +64504,296,Quentin Tarantino,1343520160 +64504,296,Samuel L. Jackson,1343520156 +64504,296,stylized,1343520158 +64504,1298,animation,1343524653 +64504,1298,artistic,1343524649 +64504,1298,drugs,1343524644 +64504,1298,great soundtrack,1343524666 +64504,1298,loneliness,1343524663 +64504,1298,music,1343524646 +64504,1298,surreal,1343524658 +64504,1298,World War II,1343524660 +64504,2146,1980s,1343519882 +64504,2146,80's classic,1343519885 +64504,2146,Brat Pack,1343519888 +64504,2146,Emilio Estevez,1343519896 +64504,2146,friends with issues,1343519904 +64504,2146,friendship,1343519891 +64504,2146,Nudity (Topless - Brief),1343519906 +64504,2146,Rob Lowe,1343519894 +64504,2146,teen,1343519901 +64504,2146,Washington DC,1343519898 +64504,91529,Anne Hathaway,1343520037 +64504,91529,Bane's voice,1343520047 +64504,91529,Batman,1343520040 +64504,91529,Christian Bale,1343520043 +64504,91529,Christopher Nolan,1343520045 +64504,91529,ending,1343520051 +64504,91529,Gary Oldman,1343520049 +64504,91529,intense,1343520054 +64504,91529,Joseph Gordon-Levitt,1343520056 +64504,95510,Andrew Garfield,1343520086 +64504,95510,Martin Sheen,1343520094 +64504,95510,Reboot,1343520104 +64504,95510,Spider-Man,1343520091 +64504,95510,watch the credits,1343520099 +64519,260,starwars,1437455516 +64519,260,starwars - a new hope,1437455572 +64519,260,TV,1437455530 +64522,61240,quirky,1431269108 +64522,114392,feminist,1438434189 +64522,114392,historical fiction,1438434189 +64522,114392,western,1438434189 +64522,118880,quirky,1431269416 +64522,131796,jewish,1431269215 +64522,131796,nazi,1431269215 +64522,131796,world war 2,1431269215 +64527,111,Harvey Keitel,1225390306 +64527,111,Jodie Foster,1225390306 +64527,111,Peter Boyle,1225390306 +64527,111,Robert De Niro,1225390306 +64527,593,Anthony Hopkins,1226016850 +64527,593,Jodie Foster,1226016850 +64527,593,Oscar (Best Actor),1226016850 +64527,593,Oscar (Best Actress),1226016850 +64527,593,Oscar (Best Directing),1226016850 +64527,599,Ben Johnson,1225390141 +64527,599,Edmond O'Brien,1225390141 +64527,599,Ernest Borgnine,1225390142 +64527,599,Robert Ryan,1225390141 +64527,599,Sam Peckinpah,1225390142 +64527,599,Warren Oates,1225390141 +64527,599,William Holden,1225390141 +64527,608,Francis McDormand,1225391013 +64527,608,William H. Macy,1225391013 +64527,1147,spike lee,1225390336 +64527,1208,Dennis Hopper,1225390589 +64527,1208,Francis Ford Coppola,1225390589 +64527,1208,Frederic Forrest,1225390589 +64527,1208,Laurence Fishburne,1225390627 +64527,1208,Marlon Brando,1225390589 +64527,1208,Martin Sheen,1225390589 +64527,1208,Robert Duvall,1225390627 +64527,1212,Alida Valli,1225244217 +64527,1212,Carol Reed,1225244217 +64527,1212,Joseph Cotton,1225244217 +64527,1212,Orson Welles,1225244217 +64527,1230,Diane Keaton,1225390449 +64527,1247,Anne Bancroft,1225391250 +64527,1247,Dustin Hoffman,1225391251 +64527,1247,Katherine Ross,1225391250 +64527,1247,Mike Nichols,1225391250 +64527,1247,Plastics,1225391251 +64527,1248,Charlton Heston,1225244879 +64527,1248,Janet Leigh,1225244879 +64527,1258,Jack Nicholson,1226016389 +64527,1258,Scatman Crothers,1226016389 +64527,1258,Shelley Duvall,1226016389 +64527,1258,Stanley Kubrick,1226016389 +64527,1333,Jessica Tandy,1226017039 +64527,1333,Rod Taylor,1226017039 +64527,1333,Suzanne Pleshette,1226017114 +64527,1333,Tippi Hedren,1226017039 +64527,1333,Veronica Cartright,1226017114 +64527,1952,Brenda Vaccaro,1225391084 +64527,1952,Dustin Hoffman,1225391084 +64527,1952,Jon Voight,1225391084 +64527,1952,Sylvia Miles,1225391084 +64527,2599,Alaxander Payne,1226019214 +64527,2599,Matthew Broderick,1226019234 +64527,2599,Reese Witherspoon,1226019214 +64527,2726,Sterling Hayden,1225244771 +64527,2904,Joan Crawford,1226017197 +64527,2904,Louis Milestone,1226017197 +64527,2904,Walter Huston,1226017197 +64527,4426,Albert Decker,1225245351 +64527,4426,Ralph Meeker,1225245351 +64527,4426,Robert Aldrich,1225245351 +64527,4432,Elmer Bernstein,1225388020 +64527,4432,James Wong Howe,1225388020 +64527,4432,Tony Curtis,1225388020 +64527,5177,Agnes Moorehead,1225245507 +64527,5177,Bernard Herrmann,1225245507 +64527,5177,Joseph Cotton,1225245507 +64527,5177,RKO,1225245507 +64527,5177,Tim Holt,1225245507 +64527,6001,Sandra Bernhard,1225390754 +64527,6273,Gloria Grahame,1225245215 +64527,6273,Humphrey Bogart,1225245215 +64527,7013,Charles Laughton,1225245058 +64527,7013,Lillian Gish,1225245058 +64527,7013,Robert Mitchum,1225245058 +64527,7013,Shelley Winters,1225245084 +64527,7038,Calista Flockhart,1225392500 +64527,7038,Cameron Diaz,1225392500 +64527,7038,Glenn Close,1225392500 +64527,7038,Holly Hunter,1225392500 +64527,7038,Kathy Baker,1225392500 +64527,7038,Rodrigo Garcia,1225392500 +64527,7038,Valeria Golino,1225392500 +64527,7221,Frank Capra,1226016038 +64527,7221,Jean Harlow,1226016038 +64527,7221,Loretta Young,1226016038 +64527,7221,Robert Williams,1226016038 +64527,7302,Douglas Fairbanks Sr,1225244684 +64527,7335,Richard Widmark,1225244553 +64527,7335,Thelma Ritter,1225244553 +64527,7675,Charles Laughton,1226015904 +64527,7675,Margaret O' Brian,1226015904 +64527,7675,Robert Young,1226015904 +64527,7924,atmospheric,1225244002 +64527,7924,Japan,1225244005 +64527,7924,police,1225244016 +64527,8206,Fay Wray,1226018407 +64527,8206,Glenda Farrell,1226018407 +64527,8206,Lionel Atwell,1226018407 +64527,8206,Michael Curtiz,1226018407 +64527,8232,Myrna Loy,1225389742 +64527,8232,William Powell,1225389742 +64527,8257,George Murphy,1225389917 +64527,8257,James Whitmore,1225389917 +64527,8257,Ricardo Montalban,1225389917 +64527,8257,Van Johnson,1225389917 +64527,8422,Ann Sheridan,1226019653 +64527,8422,Betty Field,1226019653 +64527,8422,Charles Coburn,1226019653 +64527,8422,Erich Wolfgang Korngold,1226019653 +64527,8422,Robert Cummings,1226019653 +64527,8422,Ronald Reagan,1226019653 +64527,8422,Sam Wood,1226019653 +64527,9011,Jennifer Jones,1225390813 +64527,9011,Joseph Cotton,1225390813 +64527,25755,Lon Chaney,1225390872 +64527,25762,Joan Crawford,1226015799 +64527,25762,Lon Chaney,1226015799 +64527,25762,Tod Browning,1226015826 +64527,25947,Edgar Kennedy,1225244354 +64527,25947,Linda Darnell,1225244354 +64527,25947,Preston Sturges,1225244354 +64527,25947,Rex Harrison,1225244354 +64527,26138,Ian Bannen,1226015469 +64527,26138,Ossie Davis,1226015469 +64527,26138,Sidney Lumet,1226015469 +64527,31104,Carol Kane,1226019444 +64527,31104,Doris Roberts,1226019444 +64527,31104,Joan Micklin Silver,1226019490 +64527,32234,Jane Fonda,1225390712 +64527,32234,Jason Robards,1225390712 +64527,32234,Lillian Hellman,1225390712 +64527,32234,Vanessa Redgrave,1225390712 +64527,32369,Jack Palance,1225389586 +64527,32369,Richard Widmark,1225389586 +64527,32369,Zero Mostel,1225389586 +64527,37736,Roman Polanski,1226015948 +64527,44168,James Stewart,1225388107 +64527,44168,Janet Leigh,1225388107 +64527,44168,Millard Mitchell,1225389477 +64527,44168,Ralph Meeker,1225388107 +64527,44168,Robert Ryan,1225388107 +64527,45679,Kim Hunter,1226016278 +64527,45679,Mark Robson,1226016278 +64527,45679,Tom Conway,1226016278 +64527,45679,Val Lewton,1226016278 +64539,123,amelie-esque,1284957550 +64539,190,stark,1284957582 +64539,523,florida romance,1284957579 +64539,1147,vibrant,1284957591 +64539,1484,snarky,1284957557 +64539,1897,lisbeen,1149535629 +64539,2583,non-obvious,1284957556 +64539,3283,passionate,1284957573 +64539,3795,modern,1284957559 +64539,5225,three pillows,1284957537 +64539,6294,chopra,1284957539 +64539,6466,interacial romance,1284957575 +64539,6638,truly dazzling,1284957586 +64539,7096,art study,1284957577 +64539,7419,perfect,1284957534 +64539,7487,sexy,1284957562 +64539,8332,potsmoking children,1284957584 +64539,27722,new favorite movie,1284957571 +64539,37733,bullshit rape scene,1284957567 +64539,39398,annoying,1284957543 +64563,2922,shooting,1137505723 +64563,3996,flying,1137505739 +64563,33166,relationships,1140441499 +64578,260,all time favorite,1441983036 +64578,260,classic adventure,1441983000 +64596,2571,post apocalyptic,1174986001 +64620,77561,Robert Downey Jr.,1452944708 +64620,86332,Chris Hemsworth,1452944597 +64620,89745,Chris Evans,1452944457 +64620,89745,great humor,1452944459 +64620,89745,Hulk,1452944432 +64620,89745,humorous,1452944438 +64620,89745,Iron Man,1452944424 +64620,89745,Mark Ruffalo,1452944454 +64620,89745,Robert Downey Jr.,1452944429 +64620,89745,The Avengers,1452944427 +64620,89745,Tom Hiddleston,1452944442 +64620,106072,Chris Hemsworth,1452944654 +64620,106072,Marvel Cinematic Universe,1452944659 +64620,122892,Action,1452944564 +64620,122892,Hulk,1452944567 +64620,122892,technology,1452944554 +64620,122892,The Avengers,1452944562 +64620,122900,Michael Douglas,1452944507 +64620,122900,sci-fi,1452944514 +64620,122900,visual effects,1452944498 +64620,134368,comedy,1452944341 +64620,134368,melissa mccarthy,1452944346 +64638,318,prison escape,1426132952 +64638,8636,action,1426132996 +64638,8636,superhero,1426132994 +64656,260,adventure,1427478109 +64656,260,epic,1427478109 +64656,260,sci-fi,1427478109 +64674,2010,Expressionism,1433038702 +64674,2010,german expressionism,1433038723 +64674,2916,virtual reality,1433038884 +64674,7759,beauty,1433038205 +64674,7759,Only movie can express,1433038260 +64681,608,Quirky,1179031045 +64692,8644,AI,1436792898 +64692,109487,Great Animation Work,1436792731 +64692,130634,Thirlling Climax,1436792821 +64707,1242,classic,1138729763 +64707,3147,drama,1138729786 +64707,4886,Disney,1139440151 +64707,26662,Miyazaki,1139440545 +64710,356,classic,1428271965 +64720,47491,heartwarming,1286865874 +64720,47491,sad but good,1286865905 +64745,260,fantasy,1444170769 +64745,260,Science Fiction,1444170763 +64749,260,legendary,1439787289 +64749,260,space epic,1439787264 +64756,1175,svart humor,1137150363 +64756,3703,dystopi,1137150355 +64767,260,action,1432725293 +64767,260,sci-fi,1432725285 +64819,588,animation,1323808397 +64819,916,comedy,1323807690 +64819,916,Oscar (Best Actress),1323807690 +64819,916,romance,1323807690 +64819,971,Elizabeth Taylor,1323808842 +64819,971,Paul Newman,1323808840 +64819,1104,Marlon Brando,1323808899 +64819,1104,Oscar (Best Actress),1323808895 +64819,1136,comedy,1323808116 +64819,2125,romance,1323808302 +64819,2132,Elizabeth Taylor,1323808766 +64819,2132,Oscar (Best Actress),1323808764 +64819,4306,animation,1323808346 +64819,4306,comedy,1323808346 +64819,4306,fairy tale,1323808346 +64819,5218,animation,1323808484 +64819,5218,comedy,1323808484 +64819,5299,comedy,1323808442 +64819,5299,family,1323808442 +64819,5299,romance,1323808442 +64819,6936,Christmas,1323808563 +64819,6936,comedy,1323808563 +64819,6936,Will Ferrell,1323808563 +64819,8366,Mary-Louise Parker,1323807935 +64819,8464,documentary,1323808374 +64819,9010,French,1323807770 +64819,9010,Marion Cotillard,1323807763 +64819,34162,comedy,1323808506 +64819,34162,romance,1323808506 +64819,48774,based on a book,1323805484 +64819,48774,dystopia,1323805447 +64819,49286,Kate Winslet,1323806113 +64819,49286,romance,1323806083 +64819,54259,comedy,1323808253 +64819,54259,fairy tale,1323808253 +64819,54259,romance,1323808262 +64819,64622,based on book,1323806175 +64819,64622,Kate Winslet,1323806175 +64819,64622,Oscar (Best Actress),1323806192 +64819,64622,World War II,1323806175 +64819,65130,ruined marriage,1323806008 +64819,78039,drama,1323805920 +64819,78039,ruined marriage,1323805920 +64819,80969,based on a book,1323805474 +64819,80969,dystopia,1323805456 +64819,86882,BD,1327424685 +64819,86882,BOriginal Screenplay,1327424685 +64819,86882,BP,1327424685 +64819,86882,Oscar nom,1327424685 +64819,86898,BD,1327424368 +64819,86898,Oscar nom: BP,1327424368 +64819,88810,BAs,1327424566 +64819,88810,BSAr2,1327424566 +64819,88810,Oscar nom: BP,1327424566 +64819,89369,BAr,1327424847 +64819,89369,Oscar nom,1327424847 +64819,89492,BAdapted Screenplay,1327424757 +64819,89492,BAr,1327424757 +64819,89492,BP,1327424757 +64819,89492,BSAr,1327424757 +64819,89492,comedy,1323805422 +64819,89492,Oscar nom,1327424757 +64819,89753,BAdapted Screenplay,1327424903 +64819,89753,BAr,1327424903 +64819,89753,Oscar nom,1327424903 +64819,89759,BFLF,1327426494 +64819,89759,BOriginal Screenplay,1327425628 +64819,89759,Oscar nom,1327425627 +64819,89804,BAdapted Screenplay,1327425588 +64819,89804,Oscar nom,1327425588 +64819,89904,BAr,1327424292 +64819,89904,Best Orig Screenplay,1327424292 +64819,89904,BP,1327424292 +64819,89904,BSAs,1327424292 +64819,89904,Oscar nom,1327424292 +64819,90439,BOriginal Screenplay,1327425565 +64819,90439,Oscar nom,1327425565 +64819,90866,BAdapted Screenplay,1327424619 +64819,90866,BD,1327424619 +64819,90866,Oscar nom: BP,1327424619 +64819,91077,BAr,1327424431 +64819,91077,BD,1327424431 +64819,91077,Best Adapted Screenplay,1327424431 +64819,91077,Oscar nom: BP,1327424431 +64819,91126,BP,1327424804 +64819,91126,Oscar nom,1327424804 +64819,91134,BAs,1327425132 +64819,91134,BSAr,1327425132 +64819,91134,Oscar nom,1327425132 +64819,91325,BSAr,1327424491 +64819,91325,Oscar nom: BP,1327424491 +64819,91542,2012,1325778622 +64819,91622,2012,1325778613 +64819,91658,BAs,1327425033 +64819,91658,Oscar nom,1327425033 +64819,91673,BAs,1327424966 +64819,91673,BSAr,1327424991 +64819,91673,Oscar nom,1327424966 +64819,91890,BAs,1327425060 +64819,91890,Oscar nom,1327425060 +64851,59369,predictable,1425198953 +64851,80463,Mark Zuckerberg,1425198899 +64851,106782,Stock Brokers,1425198868 +64864,260,classic sci-fi,1431884190 +64864,260,space opera,1431884174 +64864,112552,great performances,1431884445 +64864,112552,great soundtrack,1431884445 +64864,112552,gripping,1431884445 +64864,112552,jazz,1431884716 +64864,112552,music,1431884723 +64864,112552,musicians,1431884719 +64864,112552,Tense,1431884721 +64872,2683,baby,1167786061 +64872,2683,yeah,1167786061 +64872,3535,yuppies,1167786533 +64872,38188,real people,1154706871 +64911,1193,Blasphemy,1431757660 +64911,1193,psychological,1431762490 +64911,1968,cliche,1431759500 +64911,1968,coming of age,1431759517 +64911,7139,Brilliant acting,1431496094 +64911,7139,Touching,1431496157 +64911,7139,Uplifting human drama,1431496139 +64911,97306,Blasphemy,1431757852 +64911,97306,Extreme Violence,1431757814 +64915,2360,dogma,1159832203 +64916,417,PG13,1217269611 +64916,705,R (Language),1217269548 +64916,1132,PG,1217260442 +64916,1202,R,1219791783 +64916,1224,PG13,1147714894 +64916,1307,R,1219792175 +64916,1633,R,1145301452 +64916,2336,R,1155770453 +64916,2357,R,1145302481 +64916,2579,R,1145386670 +64916,2692,R,1155770418 +64916,2708,PG,1217269478 +64916,3271,PG13,1156183701 +64916,3338,G,1177966446 +64916,3609,NR,1156183728 +64916,4144,PG,1217261295 +64916,4245,PG,1213050783 +64916,4322,PG,1145386595 +64916,4347,PG13,1217260586 +64916,4769,PG,1177966420 +64916,4772,R,1217261403 +64916,4840,PG,1217269327 +64916,5013,R,1217261518 +64916,5135,R,1162228139 +64916,5319,R,1145041012 +64916,5365,PG13,1217269693 +64916,5417,R,1147715009 +64916,5446,PG,1174490600 +64916,5516,R,1145041611 +64916,5607,R,1217260563 +64916,5632,R,1162228121 +64916,5633,R,1217261477 +64916,5747,PG,1156183741 +64916,5812,R,1145041432 +64916,5820,PG,1177966573 +64916,5876,R,1147820141 +64916,5890,R,1174490215 +64916,5995,R,1177966609 +64916,6041,NR,1182795604 +64916,6056,R,1217261240 +64916,6160,PG13,1177966675 +64916,6195,PG13,1174490578 +64916,6216,R,1145040922 +64916,6235,R,1145301200 +64916,6268,R,1169504494 +64916,6269,R,1180730067 +64916,6327,R,1145893273 +64916,6370,R,1145041429 +64916,6382,PG,1145300924 +64916,6542,PG13,1162228105 +64916,6545,R,1145653599 +64916,6552,R,1145040968 +64916,6555,R,1146762632 +64916,6668,G,1217260406 +64916,6672,NR,1179251098 +64916,6711,R,1150738004 +64916,6760,R,1147907582 +64916,6770,R,1147288385 +64916,6773,PG13,1217261441 +64916,6776,PG,1217261317 +64916,6787,PG,1156183765 +64916,6867,R,1145893208 +64916,6898,R,1217261457 +64916,6935,NR,1166645097 +64916,6945,NR (PG),1150738117 +64916,6954,R,1145041492 +64916,6963,NR,1182795570 +64916,7177,PG13,1174490306 +64916,7199,R,1174490743 +64916,7285,R,1217261557 +64916,7298,R,1146762350 +64916,7299,R,1145040988 +64916,7323,R,1147715126 +64916,7349,R,1169504549 +64916,7382,R,1145302118 +64916,7440,G,1177966557 +64916,7489,PG13,1145301271 +64916,7767,R,1147820168 +64916,7773,R,1149021264 +64916,7981,R,1149021288 +64916,8011,NR,1150738053 +64916,8370,R,1150738082 +64916,8573,PG13,1170359849 +64916,8873,R,1149021332 +64916,8930,NR,1165364101 +64916,8943,R,1145041437 +64916,8971,PG,1146762516 +64916,9018,NR,1150737997 +64916,26111,PG13,1199837615 +64916,26131,NR,1164836986 +64916,27410,R,1202254663 +64916,27721,R,1145040960 +64916,27741,NR,1164836854 +64916,27768,R,1145041475 +64916,27783,NR,1169505223 +64916,27803,PG13,1174490185 +64916,27812,R,1217261364 +64916,27834,NR (PG),1164839502 +64916,27878,R,1162228058 +64916,30749,PG13,1174490175 +64916,30803,R,1146591437 +64916,31410,R,1145040930 +64916,31437,PG13,1182795510 +64916,31702,PG13,1146591462 +64916,31952,R,1177966813 +64916,32025,R,1147715049 +64916,32170,R,1169505100 +64916,32770,R,1169505082 +64916,33358,PG13,1169504476 +64916,33688,PG,1146762469 +64916,33819,R,1150737971 +64916,33838,PG13,1177966653 +64916,33903,R,1149021315 +64916,34148,NR (R),1199838585 +64916,34155,R,1179251654 +64916,34271,R,1145040994 +64916,34528,R,1145041462 +64916,36276,R,1179251586 +64916,36517,R,1147820136 +64916,37240,PG13,1164837954 +64916,37475,PG13,1147288439 +64916,37741,R,1145040910 +64916,37855,PG13,1169072931 +64916,38600,R,1164838301 +64916,38798,PG13,1169504515 +64916,39292,PG,1177966624 +64916,39381,R,1164838242 +64916,39444,R,1177966709 +64916,39886,R,1170359883 +64916,40010,R,1179251620 +64916,40412,NR (R),1179251258 +64916,40414,PG13,1164838224 +64916,40870,NR,1162928936 +64916,41527,PG13,1179251566 +64916,41721,Australian,1165364035 +64916,41721,PG13,1165364033 +64916,41863,R,1174490321 +64916,42197,R,1199838238 +64916,42632,R,1165363827 +64916,43333,PG13,1164836824 +64916,43376,NR,1166645146 +64916,43396,PG13,1156183795 +64916,43910,PG,1199837119 +64916,44191,R,1147288538 +64916,44195,R,1160417161 +64916,44199,R,1179251423 +64916,44204,R,1165363932 +64916,44555,R,1174490290 +64916,44694,R,1164837743 +64916,44709,PG,1164837978 +64916,44761,R,1170360016 +64916,44828,R,1169504878 +64916,44937,R,1177966794 +64916,45210,R,1163448338 +64916,45517,G,1165364008 +64916,45658,PG13,1174490953 +64916,45928,PG,1162228178 +64916,46322,PG13,1160417151 +64916,46559,R,1166644987 +64916,46578,R,1162927530 +64916,46723,R,1170359019 +64916,46850,PG,1164837762 +64916,46976,PG13,1164837723 +64916,47099,PG13,1170801625 +64916,47423,R,1162928986 +64916,47610,PG13,1162928740 +64916,47629,PG13,1170801487 +64916,47644,PG,1164838433 +64916,47894,NR (R),1187285678 +64916,48043,PG13,1165363961 +64916,48082,R,1162929017 +64916,48304,R,1202255281 +64916,48385,R,1164838013 +64916,48394,R,1169072955 +64916,48516,R,1160417014 +64916,48598,R,1179251015 +64916,48738,R,1166644969 +64916,48780,PG13,1162228201 +64916,48783,R,1164837997 +64916,48879,PG13,1179251439 +64916,48982,PG,1165363928 +64916,49132,NR,1174490532 +64916,49220,PG13,1164838894 +64916,49272,PG13,1164837930 +64916,49278,PG13,1165363792 +64916,49280,R,1165363854 +64916,49284,R,1179251372 +64916,49530,R,1166645003 +64916,49772,PG13,1174490456 +64916,49822,R,1169504430 +64916,49824,PG13,1170801607 +64916,49932,R,1185405955 +64916,50068,R,1170801497 +64916,50160,PG,1179251303 +64916,50274,R,1179251409 +64916,50514,R,1199838119 +64916,50601,PG,1174490408 +64916,50872,G,1183746034 +64916,51007,R,1213050429 +64916,51080,PG13,1174490367 +64916,51255,R,1179251044 +64916,51471,PG,1179251206 +64916,51540,R,1179251274 +64916,51705,PG13,1202256037 +64916,51709,R,1215546894 +64916,51884,PG13,1177966733 +64916,51931,R,1179251495 +64916,52241,R,1177093544 +64916,52458,PG13,1179251075 +64916,52604,R,1179251174 +64916,52885,R,1199838608 +64916,52967,NR,1199837194 +64916,53123,R,1185405932 +64916,53550,PG13,1199837245 +64916,54190,PG13,1202256249 +64916,54259,PG13,1199837263 +64916,54272,PG13,1187285619 +64916,54286,PG13,1187285633 +64916,54736,R,1202256236 +64916,54881,PG13,1202256510 +64916,55052,R,1199837277 +64916,55094,R,1215546431 +64916,55110,PG13,1202256162 +64916,55247,R,1344887499 +64916,55269,R,1199838187 +64916,55276,R,1199837100 +64916,55280,PG13,1199837904 +64916,55286,R,1206560224 +64916,55290,R,1199838054 +64916,55442,PG13,1217260149 +64916,55444,R,1199837870 +64916,55451,PG13,1202256268 +64916,55687,PG13,1217260210 +64916,55765,R,1199838126 +64916,55805,R,1213050049 +64916,55814,PG13,1202255953 +64916,55820,R,1199837163 +64916,55830,PG13,1217260181 +64916,55908,NR,1199838511 +64916,56333,R,1213050035 +64916,56367,PG13,1199837129 +64916,56607,R,1213050040 +64916,56788,R,1199837888 +64916,56885,PG13,1217260108 +64916,57243,PG13,1217269987 +64916,57353,PG13,1215546385 +64916,57669,R,1377028032 +64916,58303,R,1377028043 +64916,58490,PG13,1217260277 +64916,58559,PG13,1217260235 +64916,58879,PG13,1215546527 +64916,59018,PG13,1215546513 +64916,59141,PG13,1268253268 +64916,59784,PG,1377028063 +64916,60069,G,1215546473 +64916,60684,R,1344888419 +64916,61132,R,1219792029 +64916,61236,R,1344887812 +64916,63082,R,1344888097 +64916,64620,R,1344887606 +64916,66665,R,1268253082 +64916,67255,R,1344887857 +64916,69481,R,1344887777 +64916,69757,PG13,1344888124 +64916,71033,R,1344888326 +64916,72011,R,1344887844 +64916,74458,R,1344888388 +64916,77455,R,1344887946 +64916,80906,PG13,1344887681 +64916,80969,R,1311387141 +64916,81562,R,1344888343 +64916,81932,R,1344887993 +64916,84152,PG13,1344887650 +64916,85774,PG13,1344887899 +64916,86781,R,1344888016 +64916,88129,R,1344888365 +64916,89864,R,1344888306 +64916,92259,rated-R,1377027981 +64916,97304,R,1377028260 +64916,97921,R,1402070431 +64973,1025,King Arthur,1187549657 +64973,2478,Steve Martin,1187549565 +64973,2951,Western,1187549615 +64973,3362,Hostage Situation,1187549577 +64973,4367,Video Game Adaptation,1187549599 +64979,288,serial killer,1435956952 +64979,3418,strong woman,1427076021 +64979,33683,gore,1427075956 +64979,97957,blood.,1427075904 +64979,97957,dark comedy,1435957217 +64979,97957,twisted,1427075935 +64979,99721,remake,1418105675 +64979,102802,Rob Zombie,1427075568 +64979,106868,lesbian,1427075880 +64979,106868,plot twist,1427075884 +64980,260,scifi,1431491944 +64980,260,space,1431491952 +64995,750,Stanley Kubrick,1393985959 +64995,1193,Milos Forman,1393985870 +64995,1201,Ennio Morricone,1393986552 +64995,1201,Sergio Leone,1393986563 +64995,1206,Stanley Kubrick,1393985810 +64995,1209,Ennio Morricone,1393986337 +64995,1209,Sergio Leone,1393986321 +64995,1222,Stanley Kubrick,1393985777 +64995,1225,Milos Forman,1393985997 +64995,1227,Ennio Morricone,1393986587 +64995,1227,Sergio Leone,1393986590 +64995,1258,Stanley Kubrick,1393985729 +64995,1615,Anthony Hopkins,1393985931 +64995,3252,Al Pacino,1393988254 +64995,5646,Milos Forman,1393986291 +64995,43396,Anthony Hopkins,1393986126 +64995,52604,Anthony Hopkins,1393986210 +65049,260,action,1443200372 +65049,260,sci-fi,1443200364 +65056,260,"action, scifi",1443076887 +65063,6683,foreign,1192842320 +65063,6683,lesbian,1192842325 +65067,1584,sci-fi,1388490924 +65135,6502,zombies,1375585094 +65144,73914,great stars,1338311472 +65144,73914,language,1338311472 +65144,73914,plenty of action,1338311473 +65165,356,based on a book,1438594231 +65165,356,sentimental,1438594231 +65165,356,vietnam war,1438594231 +65165,648,confusing,1170907751 +65165,648,confusing plot,1170907740 +65165,648,memorable sequence,1170907757 +65165,3949,heroin,1170908655 +65165,6453,docufiction,1214106499 +65165,6453,man vs. nature,1214106559 +65165,34319,freedom,1139423187 +65165,34319,slavery,1139423187 +65165,49286,Not so cheesy,1173939420 +65171,26285,John Carpenter,1167758369 +65182,260,classic,1440511790 +65182,260,sci-fi,1440511781 +65225,81845,complex characters,1452269072 +65225,81845,drama,1452269079 +65225,81845,politics,1452269084 +65226,260,friendship,1437246671 +65226,260,great soundtrack,1437246691 +65226,260,sci-fi,1437246656 +65226,260,space,1437246665 +65226,81845,disability,1437276666 +65226,81845,royalty,1437276666 +65226,81845,teacher,1437276666 +65291,2028,patriotic,1436701463 +65291,2571,religious,1436701399 +65299,7569,james bond,1171513821 +65299,48780,Hugh Jackman,1171513814 +65319,108932,awesome,1420931525 +65319,108932,beautiful,1420931525 +65319,108932,nostalgia,1420931525 +65342,109487,Christopher Nolan,1426283926 +65360,260,"action, scifi",1435599802 +65360,260,space adventure,1435599822 +65363,173,I AM THE LAW,1299172733 +65363,3328,hip hop,1299192158 +65363,79132,soundtrack,1299171382 +65386,6118,intellectually stimulating,1436822638 +65386,6118,Krzysztof Kieslowski,1436822630 +65386,106452,oscar winner,1436822606 +65386,106452,poland,1436822606 +65386,106452,soul searching,1436822606 +65387,1,almost favorite,1142363426 +65387,28,j netflix,1356078355 +65387,34,Favorite,1143160048 +65387,34,own,1143160048 +65387,82,j netflix,1330415575 +65387,150,almost favorite,1143019321 +65387,213,j netflix,1378976398 +65387,300,almost favorite,1143160022 +65387,356,Favorite,1143195706 +65387,364,Favorite,1142439340 +65387,364,own,1142292241 +65387,515,j netflix,1391847782 +65387,527,Favorite,1142363494 +65387,588,own,1143018965 +65387,594,almost favorite,1142292400 +65387,594,own,1142439430 +65387,595,almost favorite,1142291139 +65387,595,own,1142439402 +65387,650,j netflix,1373356059 +65387,903,Alfred Hitchcock,1143018852 +65387,903,almost favorite,1143018694 +65387,904,Alfred Hitchcock,1142292494 +65387,908,Alfred Hitchcock,1142438491 +65387,910,Favorite,1142723396 +65387,913,Favorite,1142438788 +65387,919,almost favorite,1142363569 +65387,919,own,1142363569 +65387,920,Favorite,1142534078 +65387,920,own,1142534330 +65387,928,Alfred Hitchcock,1143095310 +65387,930,Alfred Hitchcock,1142438608 +65387,933,Alfred Hitchcock,1142438756 +65387,937,almost favorite,1149092954 +65387,943,almost favorite,1142438941 +65387,955,Favorite,1142723543 +65387,1022,own,1144859185 +65387,1035,almost favorite,1143352021 +65387,1035,own,1143352021 +65387,1078,j netflix,1386750126 +65387,1198,Favorite,1142363402 +65387,1219,Alfred Hitchcock,1142292365 +65387,1219,almost favorite,1142292362 +65387,1225,Favorite,1142291086 +65387,1234,almost favorite,1142292419 +65387,1269,almost favorite,1142438656 +65387,1281,j netflix,1361435413 +65387,1282,almost favorite,1143265328 +65387,1617,almost favorite,1142533847 +65387,1721,almost favorite,1143018622 +65387,1721,own,1143018891 +65387,1925,j netflix,1378192096 +65387,1939,almost favorite,1143018259 +65387,1960,j netflix,1330415090 +65387,2028,almost favorite,1143159863 +65387,2081,almost favorite,1143351921 +65387,2081,own,1143351921 +65387,2186,Alfred Hitchcock,1142438710 +65387,2203,Alfred Hitchcock,1143095531 +65387,2203,almost favorite,1143095531 +65387,2788,j netflix,1391847868 +65387,3114,almost favorite,1142438955 +65387,3159,j netflix,1231473294 +65387,3507,almost favorite,1142533871 +65387,3751,almost favorite,1142291162 +65387,4016,almost favorite,1144942066 +65387,4103,almost favorite,1143481491 +65387,4306,almost favorite,1142292382 +65387,4306,own,1142439419 +65387,4308,almost favorite,1174286786 +65387,4308,own,1174286413 +65387,4326,almost favorite,1143352058 +65387,4330,j netflix,1232937076 +65387,4359,almost favorite,1143720244 +65387,4795,j netflix,1199008414 +65387,4806,j netflix,1391595066 +65387,4886,own,1142363462 +65387,5026,j netflix,1381652098 +65387,5291,j netflix,1268033985 +65387,5679,almost favorite,1143160105 +65387,5991,almost favorite,1143720749 +65387,5991,own,1143720775 +65387,6377,Favorite,1142290712 +65387,6377,own,1142292231 +65387,6539,almost favorite,1143159842 +65387,6539,own,1143159842 +65387,6762,j netflix,1378977465 +65387,8235,j netflix,1219668810 +65387,25767,j netflix,1386751337 +65387,25868,j netflix,1177899297 +65387,26051,j netflix,1400058463 +65387,32179,j netflix,1220373940 +65387,42728,j netflix,1330416294 +65387,43039,j netflix,1347700550 +65387,49272,j netflix,1375945747 +65387,55280,j netflix,1221042498 +65387,55830,j netflix,1378977809 +65387,56350,j netflix,1287623339 +65387,60126,j netflix,1258590750 +65387,60758,j netflix,1365752558 +65387,60894,j netflix,1272505373 +65387,62293,j netflix,1229067441 +65387,65577,j netflix,1347701371 +65387,67267,j netflix,1337929716 +65387,69849,j netflix,1268033936 +65387,71057,j netflix,1287623609 +65387,71184,j netflix,1313996861 +65387,71327,j netflix,1330416222 +65387,71695,j netflix,1373355878 +65387,71876,j netflix,1263001981 +65387,72737,j netflix,1313997101 +65387,73017,j netflix,1263001181 +65387,74458,j netflix,1373355302 +65387,74868,j netflix,1347701298 +65387,75446,j netflix,1381652288 +65387,77455,j netflix,1330415655 +65387,79091,j netflix,1373355367 +65387,79132,j netflix,1313996718 +65387,79139,j netflix,1386753663 +65387,81845,j netflix,1302166722 +65387,82459,j netflix,1330415436 +65387,86880,j netflix,1411723479 +65387,89904,j netflix,1330415596 +65387,93988,j netflix,1386750270 +65387,96079,j netflix,1378976172 +65387,96488,j netflix,1381651207 +65387,96829,j netflix,1386750402 +65387,98961,j netflix,1365751750 +65387,106920,j netflix,1395819398 +65387,109374,j netflix,1402124925 +65390,1704,friends,1450197529 +65390,1704,math,1450197516 +65390,1704,science,1450197520 +65390,4995,crazy,1450197489 +65390,4995,math,1450197477 +65390,4995,science,1450197481 +65451,260,Could be happening in a remote galaxy....,1437588696 +65451,1240,time machine,1437588892 +65456,1704,mathematics,1449971988 +65473,58422,hardship,1452775121 +65545,18,Quentin Tarantino,1187574371 +65545,18,Robert Rodriguez,1187574372 +65545,70,Danny Trejo,1187574877 +65545,70,great use of music,1187574373 +65545,70,Quentin Tarantino,1187574373 +65545,70,Robert Rodriguez,1187574373 +65545,70,vampire,1187574373 +65545,70,vampires,1187574373 +65545,70,violence,1187574373 +65545,163,crime,1187574183 +65545,163,Danny Trejo,1187574840 +65545,163,organized crime,1187574183 +65545,163,Robert Rodriguez,1187574183 +65545,163,violence,1187574183 +65545,296,crime,1187569731 +65545,296,drugs,1187569731 +65545,296,great use of music,1187572913 +65545,296,organized crime,1187569731 +65545,296,Quentin Tarantino,1187569731 +65545,296,Samuel L. Jackson,1187569731 +65545,296,Tarantino,1187569731 +65545,296,Tim Roth,1187569731 +65545,608,Coen Brothers,1187572058 +65545,608,crime,1187572058 +65545,608,Frances McDormand,1187572058 +65545,608,Steve Buscemi,1187572058 +65545,608,William H. Macy,1187572058 +65545,750,George C. Scott,1187576168 +65545,750,Peter Sellers,1187576168 +65545,750,satirical,1187576168 +65545,750,Stanley Kubrick,1187576168 +65545,858,Al Pacino,1187576443 +65545,858,crime,1187576443 +65545,858,Francis Ford Coppola,1187576443 +65545,858,Mario Puzo,1187576443 +65545,858,Marlon Brando,1187576443 +65545,858,organized crime,1187576443 +65545,858,Robert Duvall,1187576443 +65545,1213,crime,1187569298 +65545,1213,organized crime,1187569298 +65545,1213,Robert De Niro,1187569297 +65545,1213,violence,1187569297 +65545,1732,Coen Brothers,1187571317 +65545,1732,crime,1187571483 +65545,1732,great use of music,1187572892 +65545,1732,Jeff Bridges,1187571317 +65545,1732,John Goodman,1187571316 +65545,1732,mistaken identity,1187571483 +65545,1732,Steve Buscemi,1187571317 +65545,1965,Alex Cox,1187572510 +65545,1965,macguffin,1187572541 +65545,1965,surreal,1187572509 +65545,2428,aliens,1187575205 +65545,2428,Robert Rodriguez,1187575205 +65545,3267,crime,1187574180 +65545,3267,drugs,1187574180 +65545,3267,low budget,1187574180 +65545,3267,mistaken identity,1187574180 +65545,3267,organized crime,1187574180 +65545,3267,Robert Rodriguez,1187574180 +65545,3267,violence,1187574180 +65545,3683,Coen Brothers,1187571758 +65545,3683,crime,1187571758 +65545,3683,frances mcdormand,1187571758 +65545,4232,Danny Trejo,1187574918 +65545,4232,Mike Judge,1187575663 +65545,4232,Robert Rodriguez,1187574918 +65545,4262,Al Pacino,1187568544 +65545,4262,crime,1187568543 +65545,4262,drugs,1187568543 +65545,4262,violence,1187568543 +65545,4848,David Lynch,1187568379 +65545,4848,Surreal,1187568475 +65545,5504,Danny Trejo,1187575218 +65545,5504,Mike Judge,1187575683 +65545,5504,Robert Rodriguez,1187575207 +65545,6440,Coen Brothers,1187571661 +65545,6440,John Goodman,1187571661 +65545,6440,writers,1187571661 +65545,6440,writing,1187571661 +65545,6566,Danny Trejo,1187575713 +65545,6566,Mike Judge,1187575713 +65545,6566,Robert Rodriguez,1187575713 +65545,6709,Danny Trejo,1187574895 +65545,6709,Robert Rodriguez,1187574895 +65545,6709,violence,1187574895 +65545,32587,Benicio Del Toro,1187574178 +65545,32587,comic book,1187574178 +65545,32587,crime,1187574178 +65545,32587,Frank Miller,1187574178 +65545,32587,Mickey Rourke,1187574178 +65545,32587,Quentin Tarantino,1187574178 +65545,32587,Robert Rodriguez,1187574178 +65545,32587,Rutger Hauer,1187574178 +65545,32587,violence,1187574178 +65545,33681,Robert Rodriguiz,1187575238 +65545,48304,deus ex machina,1187569030 +65545,48516,crime,1187576301 +65545,48516,Martin Scorsese,1187576301 +65545,48516,organized crime,1187576301 +65545,51080,Chris Cooper,1187569588 +65545,51080,crime,1187569588 +65545,51091,Samuel L. Jackson,1187569132 +65545,52281,Danny Trejo,1187574814 +65545,52281,Quentin Tarantino,1187574176 +65545,52281,Robert Rodriguez,1187574176 +65545,52281,violence,1187574176 +65545,52281,zombies,1187574176 +65574,93838,brutal,1339759211 +65574,110882,claustrophobic,1424125607 +65574,110882,driving,1424125607 +65574,110882,good dialogue,1424125607 +65574,120934,afghanistan,1427312114 +65574,120934,documentary,1427312114 +65574,120934,war,1427312114 +65574,130856,Documentary,1427312548 +65574,130856,Iraq,1427312542 +65574,130856,Marines,1427312567 +65574,130856,War,1427312543 +65614,593,great acting,1435980034 +65614,1219,creepy,1435980054 +65614,1219,tense,1435980050 +65614,1374,sci-fi,1435980070 +65614,1387,animal:shark,1437696795 +65614,1387,ocean,1437696758 +65614,1387,shark,1437696791 +65614,1387,shark-attacks,1437696761 +65614,1387,TERROR IN THE WATER,1437696787 +65614,1387,will keep you away from the water,1437696779 +65614,2858,sexuality,1435980250 +65614,2959,atmospheric,1437615965 +65614,2959,dark comedy,1437616100 +65614,2959,psychology,1437615955 +65614,4878,stylized,1435980180 +65614,5630,psychology,1435980011 +65614,122882,feminism,1435979925 +65614,122882,feminist,1437534454 +65614,122882,visually appealing,1435979930 +65631,55820,great acting,1207613623 +65690,7254,Ashton Kutcher,1162414816 +65724,4721,As historicaly correct as Germany winning WW2,1140389056 +65724,4721,but still a fun movie.,1140389056 +65724,7376,"The Rocks ""finest"" work need I say more?",1140389511 +65724,31221,Try not to mistake this for an episode of Alias,1140389595 +65724,32025,Mossad,1142686944 +65724,35836,dumb,1137217440 +65727,260,good vs evil,1442493452 +65727,260,original trilogy,1442493572 +65787,53,in netflix queue,1447383863 +65787,58,perrot library,1253152242 +65787,67,perrot library,1252813125 +65787,156,in netflix queue,1312994825 +65787,175,in netflix queue,1447195866 +65787,187,perrot library,1252710157 +65787,199,perrot library,1253151798 +65787,213,perrot library,1253155638 +65787,232,perrot library,1253156097 +65787,281,perrot library,1252812660 +65787,363,In Netflix queue,1312992096 +65787,363,perrot library,1313164773 +65787,431,perrot library,1255144937 +65787,446,perrot library,1253151731 +65787,639,In Netflix queue,1312848548 +65787,659,perrot library,1253151698 +65787,697,In Netflix queue,1312999584 +65787,697,Vincent D'Onofrio,1255574924 +65787,714,perrot library,1252632336 +65787,918,perrot library,1255144723 +65787,933,perrot library,1255067380 +65787,937,perrot library,1251840174 +65787,982,perrot library,1252629967 +65787,1016,in netflix queue,1447384500 +65787,1038,perrot library,1252813165 +65787,1051,perrot library,1252630150 +65787,1076,In Netflix queue,1312576454 +65787,1082,not available from Netflix streaming,1378928507 +65787,1120,In Netflix queue,1312578314 +65787,1185,perrot library,1256158146 +65787,1199,perrot library,1255067078 +65787,1217,perrot library,1253141809 +65787,1235,perrot library,1255067186 +65787,1237,perrot library,1253142466 +65787,1251,perrot library,1253142331 +65787,1259,In Netflix queue,1312994198 +65787,1259,perrot library,1313166312 +65787,1270,imdb top 250,1352347209 +65787,1270,in netflix queue,1447387217 +65787,1270,not available from Netflix streaming,1352347209 +65787,1270,perrot library,1313166363 +65787,1345,In Netflix queue,1312576670 +65787,1350,In Netflix queue,1312994510 +65787,1353,In Netflix queue,1312849218 +65787,1363,perrot library,1252630930 +65787,1401,In Netflix queue,1312578354 +65787,1413,In Netflix queue,1312578158 +65787,1413,Vincent D'Onofrio,1312578158 +65787,1459,In Netflix queue,1447387953 +65787,1465,In Netflix queue,1447388082 +65787,1477,in netflix queue,1447388203 +65787,1605,In Netflix queue,1312848499 +65787,1624,In Netflix queue,1312578395 +65787,1635,perrot library,1252812640 +65787,1648,perrot library,1252710137 +65787,1650,In Netflix queue,1312576630 +65787,1660,perrot library,1256156313 +65787,1683,perrot library,1256160219 +65787,1684,perrot library,1252643985 +65787,1834,In Netflix queue,1312998699 +65787,1913,In Netflix queue,1312993560 +65787,1913,perrot library,1313165491 +65787,2066,In Netflix queue,1312923160 +65787,2070,In Netflix queue,1312576558 +65787,2181,perrot library,1251839995 +65787,2188,in netflix queue,1312848446 +65787,2272,In Netflix queue,1312993992 +65787,2272,perrot library,1252812692 +65787,2295,in netflix queue,1312847782 +65787,2310,perrot library,1255144745 +65787,2314,perrot library,1255145818 +65787,2324,imdb top 250,1352347288 +65787,2324,In Netflix queue,1312994480 +65787,2324,perrot library,1253151855 +65787,2360,In Netflix queue,1312576499 +65787,2361,In Netflix queue,1312847972 +65787,2417,netflix streaming,1312849055 +65787,2475,In Netflix queue,1312577014 +65787,2482,perrot library,1252629994 +65787,2491,in netflix queue,1312849271 +65787,2519,perrot library,1251840233 +65787,2538,perrot library,1252630897 +65787,2726,Netflix Streaming,1312845887 +65787,2730,perrot library,1256156377 +65787,2731,In Netflix queue,1312998299 +65787,2731,perrot library,1253141790 +65787,2732,in netflix queue,1312998319 +65787,2732,perrot library,1253155878 +65787,2774,Netflix Streaming,1312846505 +65787,2788,perrot library,1252632189 +65787,2805,perrot library,1252812389 +65787,2858,In Netflix queue,1447384029 +65787,2858,jcl to buy,1447202338 +65787,2859,perrot library,1254430045 +65787,2871,In Netflix queue,1313009903 +65787,2871,perrot library,1255067025 +65787,2929,In Netflix queue,1312993591 +65787,2929,perrot library,1313165534 +65787,2952,In Netflix queue,1312577238 +65787,2959,in netflix queue,1447384104 +65787,2959,jcl to buy,1181075056 +65787,2961,perrot library,1255146047 +65787,2968,perrot library,1255145225 +65787,3030,perrot library,1253141755 +65787,3051,perrot library,1252813236 +65787,3104,perrot library,1255992981 +65787,3116,perrot library,1252813392 +65787,3135,perrot library,1252629703 +65787,3171,perrot library,1251425173 +65787,3181,perrot library,1255146857 +65787,3200,not available from Netflix streaming,1378929281 +65787,3266,In Netflix queue,1312991795 +65787,3266,perrot library,1252630439 +65787,3420,netflix streaming,1312847679 +65787,3422,In Netflix queue,1312994950 +65787,3423,In Netflix queue,1312578387 +65787,3470,In Netflix queue,1447384833 +65787,3546,In Netflix queue,1312993870 +65787,3546,perrot library,1313165564 +65787,3547,In Netflix queue,1312994697 +65787,3681,perrot library,1253142316 +65787,3741,not available from Netflix streaming,1378928282 +65787,3747,netflix streaming,1312847455 +65787,3789,perrot library,1251426681 +65787,3813,perrot library,1252630019 +65787,3819,perrot library,1253151679 +65787,3836,perrot library,1255067112 +65787,3845,perrot library,1252644022 +65787,3872,In Netflix queue,1312847384 +65787,3929,perrot library,1255067321 +65787,4014,perrot library,1255067172 +65787,4024,In Netflix queue,1313009831 +65787,4259,perrot library,1252813037 +65787,4276,perrot library,1252630134 +65787,4300,perrot library,1252630363 +65787,4346,perrot library,1252813517 +65787,4349,perrot library,1255569479 +65787,4356,perrot library,1255144701 +65787,4357,Netflix Streaming,1312846548 +65787,4407,in netflix queue,1312847344 +65787,4517,In Netflix queue,1312847640 +65787,4646,perrot library,1252629752 +65787,4649,Netflix Streaming,1312848331 +65787,4708,perrot library,1251425543 +65787,4849,perrot library,1252813180 +65787,4851,perrot library,1252813108 +65787,4874,In Netflix queue,1312994538 +65787,4874,perrot library,1313180718 +65787,4888,perrot library,1252812724 +65787,4977,perrot library,1253156204 +65787,4978,In Netflix queue,1312993442 +65787,4978,perrot library,1252629650 +65787,5095,perrot library,1256160237 +65787,5120,perrot library,1255067002 +65787,5310,In Netflix queue,1312849398 +65787,5316,perrot library,1252812848 +65787,5319,perrot library,1253155657 +65787,5329,In Netflix queue,1312577290 +65787,5341,In netflix queue,1447387845 +65787,5383,In Netflix queue,1312847287 +65787,5392,perrot library,1255067488 +65787,5397,perrot library,1256160087 +65787,5435,perrot library,1252628714 +65787,5530,perrot library,1252813444 +65787,5617,jcl to buy,1447383933 +65787,5618,imdb top 250,1352347149 +65787,5618,not available from Netflix streaming,1352347149 +65787,5618,perrot library,1253151757 +65787,5625,perrot library,1252812786 +65787,5772,perrot library,1252632390 +65787,5788,in netflix queue,1312994389 +65787,5788,perrot library,1255066951 +65787,5881,In Netflix queue,1312994899 +65787,5881,perrot library,1313181509 +65787,5955,perrot library,1252812560 +65787,5993,perrot library,1255145504 +65787,6162,perrot library,1252813000 +65787,6184,In Netflix queue,1312994883 +65787,6184,perrot library,1313181476 +65787,6197,perrot library,1255144637 +65787,6202,perrot library,1253156079 +65787,6216,perrot library,1253155809 +65787,6268,perrot library,1255144612 +65787,6271,not available from Netflix streaming,1378928359 +65787,6351,perrot library,1252813367 +65787,6430,in netflix queue,1312847503 +65787,6433,perrot library,1253141828 +65787,6618,perrot library,1255467495 +65787,6770,perrot library,1252629503 +65787,6827,In netflix queue,1447383749 +65787,6919,perrot library,1285346311 +65787,6927,perrot library,1252813343 +65787,7001,In Netflix queue,1312847581 +65787,7013,perrot library,1256158240 +65787,7023,perrot library,1252632128 +65787,7051,perrot library,1251426143 +65787,7060,perrot library,1252644089 +65787,7090,imdb top 250,1379217681 +65787,7090,not available from Netflix streaming,1379217681 +65787,7090,perrot library,1252628555 +65787,7132,perrot library,1255067296 +65787,7152,perrot library,1252813466 +65787,7164,perrot library,1255145592 +65787,7208,perrot library,1252629106 +65787,7209,In Netflix queue,1312577718 +65787,7229,perrot library,1252813423 +65787,7234,perrot library,1253142276 +65787,7263,perrot library,1254430321 +65787,7318,In Netflix queue,1312994611 +65787,7318,perrot library,1313181110 +65787,7323,perrot library,1255067507 +65787,7347,In Netflix queue,1312997999 +65787,7347,perrot library,1313182007 +65787,7445,in netflix queue,1312992553 +65787,7445,perrot library,1252812879 +65787,7460,In Netflix queue,1312994842 +65787,7460,perrot library,1252710209 +65787,7480,in netflix queue,1447383183 +65787,7585,perrot library,1252644050 +65787,7669,perrot library,1255146747 +65787,7888,perrot library,1252632163 +65787,7980,perrot library,1255404900 +65787,7981,not available from Netflix streaming,1379217346 +65787,7981,perrot library,1253152284 +65787,8033,perrot library,1251425448 +65787,8154,in netflix queue,1447384915 +65787,8332,not available from Netflix streaming,1378928577 +65787,8370,perrot library,1252628433 +65787,8397,in netflix queue,1312847999 +65787,8529,In Netflix queue,1312992681 +65787,8529,perrot library,1252813093 +65787,8639,perrot library,1252813286 +65787,8670,perrot library,1251426403 +65787,8675,perrot library,1252629010 +65787,8711,in netflix queue,1313081299 +65787,8711,perrot library,1255067341 +65787,8809,in netflix queue,1312998838 +65787,8809,perrot library,1252629562 +65787,8920,perrot library,1252632030 +65787,8955,perrot library,1252629542 +65787,8973,perrot library,1253155937 +65787,8983,perrot library,1253152212 +65787,25750,perrot library,1252632061 +65787,25777,In Netflix queue,1312577340 +65787,25788,in netflix queue,1447388279 +65787,25870,perrot library,1255147122 +65787,25940,In Netflix queue,1312577937 +65787,25963,not available from Netflix,1312909522 +65787,25963,not perrot library,1252632091 +65787,26012,perrot library,1252632109 +65787,26055,perrot library,1251426290 +65787,26078,In Netflix queue,1312847155 +65787,26082,perrot library,1253141733 +65787,26085,perrot library,1255144920 +65787,26094,In Netflix queue,1312847001 +65787,26116,In Netflix queue,1312993887 +65787,26116,perrot library,1255066974 +65787,26237,in Netflix queue,1312577813 +65787,26294,perrot library,1255467158 +65787,26375,perrot library,1252630035 +65787,26749,not available from Netflix,1312923854 +65787,26749,not perrot library,1255468434 +65787,27721,perrot library,1253156115 +65787,27773,imdb top 250,1379217455 +65787,27773,Netflix streaming,1447387269 +65787,27792,perrot library,1252813069 +65787,27884,perrot library,1255404650 +65787,27904,perrot library,1255067130 +65787,30822,perrot library,1255145171 +65787,30848,In Netflix queue,1312998763 +65787,30848,perrot library,1252629920 +65787,31042,perrot library,1252629583 +65787,31162,perrot library,1255145052 +65787,31658,imdb top 250,1379217739 +65787,31658,not available from Netflix streaming,1379217739 +65787,31689,perrot library,1255144574 +65787,31878,In Netflix queue,1312992586 +65787,31878,perrot library,1252628454 +65787,32029,perrot library,1255570174 +65787,32261,In Netflix queue,1312576386 +65787,33136,In Netflix queue,1312998466 +65787,33138,perrot library,1252629678 +65787,33649,in netflix queue,1312998058 +65787,33649,perrot library,1313182308 +65787,33725,perrot library,1252629601 +65787,33838,perrot library,1252629127 +65787,34072,perrot library,1255144966 +65787,34155,perrot library,1253151714 +65787,36537,In Netflix queue,1312994026 +65787,36537,perrot library,1255575151 +65787,36537,Vincent D'Onofrio,1255575078 +65787,37475,perrot library,1255067405 +65787,37731,perrot library,1255145008 +65787,40574,perrot library,1255467964 +65787,40952,perrot library,1252813262 +65787,41226,not available from Netflix streaming,1378928784 +65787,42197,perrot library,1252629394 +65787,42602,perrot library,1255146880 +65787,42732,In Netflix queue,1312994564 +65787,42732,perrot library,1313180756 +65787,43460,in netflix queue,1312994784 +65787,43460,perrot library,1255144763 +65787,43560,In Netflix queue,1312993425 +65787,43560,perrot library,1313165279 +65787,43677,perrot library,1255147192 +65787,43708,In Netflix queue,1312577310 +65787,44555,imdb top 250,1352347518 +65787,44555,not available from Netflix streaming,1352347518 +65787,44555,perrot library,1352347518 +65787,45028,perrot library,1255145137 +65787,45720,perrot library,1255145331 +65787,45880,perrot library,1255145422 +65787,46772,perrot library,1255468134 +65787,46974,In Netflix queue,1312999378 +65787,47261,perrot library,1255145931 +65787,48304,In Netflix queue,1312994632 +65787,48304,perrot library,1255145191 +65787,48385,in netflix queue,1312992653 +65787,48385,perrot library,1255145240 +65787,48394,imdb top 250,1379217781 +65787,48394,not available from Netflix streaming,1379217780 +65787,48394,perrot library,1253151817 +65787,48560,in netflix queue,1312994045 +65787,48560,perrot library,1313166131 +65787,49347,perrot library,1255145355 +65787,49793,perrot library,1255145696 +65787,49824,in netflix queue,1312997963 +65787,49824,perrot library,1255145730 +65787,49910,in netflix queue,1312998014 +65787,49910,perrot library,1313182020 +65787,49957,perrot library,1255145371 +65787,50064,perrot library,1255145893 +65787,50149,perrot library,1255146092 +65787,50162,In Netflix queue,1312847872 +65787,50685,In Netflix queue,1312998966 +65787,50685,perrot library,1255145089 +65787,50794,perrot library,1255145635 +65787,51174,In Netflix queue,1312999403 +65787,51412,In Netflix queue,1312993521 +65787,51412,perrot library,1313165426 +65787,51834,perrot library,1255145295 +65787,51931,perrot library,1252629773 +65787,52287,perrot library,1255145522 +65787,52579,In Netflix queue,1312999428 +65787,52604,perrot library,1255145712 +65787,52722,perrot library,1255146032 +65787,53123,In Netflix queue,1312998401 +65787,53123,perrot library,1255067424 +65787,53125,perrot library,1255145620 +65787,53447,perrot library,1255144594 +65787,53464,perrot library,1255145874 +65787,53827,perrot library,1255146837 +65787,53894,perrot library,1254430006 +65787,53996,perrot library,1255145662 +65787,54190,perrot library,1255145026 +65787,54272,perrot library,1255145204 +65787,54278,perrot library,1255146112 +65787,54284,In Netflix queue,1312576767 +65787,55052,perrot library,1255144987 +65787,55069,perrot library,1252628600 +65787,55267,perrot library,1255145149 +65787,55286,perrot library,1255144675 +65787,55451,perrot library,1255144786 +65787,55814,perrot library,1255404683 +65787,56286,perrot library,1255144657 +65787,56333,in netflix queue,1312993955 +65787,56333,perrot library,1255147163 +65787,56339,perrot library,1255404752 +65787,56805,perrot library,1255145677 +65787,56885,perrot library,1255147250 +65787,57526,perrot library,1255146076 +65787,57640,perrot library,1251426208 +65787,58191,perrot library,1254430148 +65787,58365,perrot library,1255146936 +65787,58490,In Netflix queue,1312998984 +65787,58494,perrot library,1255145479 +65787,59336,perrot library,1255067360 +65787,59725,perrot library,1255146007 +65787,59784,in netflix queue,1312992602 +65787,59784,perrot library,1313165137 +65787,60069,imdb top 250,1352347350 +65787,60069,not available from Netflix streaming,1352347350 +65787,60069,perrot library,1255404725 +65787,60072,In Netflix queue,1312991776 +65787,60072,perrot library,1313163863 +65787,60137,perrot library,1252630308 +65787,60503,perrot library,1252549405 +65787,60566,netflix streaming,1312847052 +65787,60760,perrot library,1255468210 +65787,60950,In Netflix queue,1312998815 +65787,60950,perrot library,1255404790 +65787,61236,in netflix queue,1312991652 +65787,61236,perrot library,1251427227 +65787,61240,imdb top 250,1379218506 +65787,61240,In Netflix queue,1379218506 +65787,61323,perrot library,1255467593 +65787,61352,perrot library,1255405691 +65787,61707,perrot library,1253223763 +65787,62157,perrot library,1252547056 +65787,62293,perrot library,1256160131 +65787,62434,perrot library,1255467616 +65787,62437,perrot library,1255467342 +65787,62511,perrot library,1255466872 +65787,62577,perrot library,1255569666 +65787,63072,in netflix queue,1312993477 +65787,63072,perrot library,1313165380 +65787,63131,in netflix queue,1312993912 +65787,63131,perrot library,1255067097 +65787,63808,In Netflix queue,1312991704 +65787,63808,perrot library,1251425317 +65787,63853,perrot library,1255145268 +65787,64197,Netflix Streaming,1312584433 +65787,64285,netflix streaming,1312846021 +65787,64501,perrot library,1255467477 +65787,64622,perrot library,1255467194 +65787,64716,In Netflix queue,1312991598 +65787,64716,perrot library,1313163543 +65787,65465,In Netflix queue,1312998447 +65787,65465,perrot library,1255405589 +65787,65596,Netflix Streaming,1312923300 +65787,65660,Netflix Streaming,1312846096 +65787,65810,perrot library,1255467841 +65787,66200,perrot library,1252546906 +65787,66371,In Netflix queue,1312583828 +65787,66371,perrot library,1313166709 +65787,66744,in netflix queue,1312585378 +65787,66762,Netflix Streaming,1312585715 +65787,66934,netflix streaming,1312846397 +65787,67197,In Netflix queue,1312992489 +65787,67197,perrot library,1255468067 +65787,67223,In Netflix queue,1312577457 +65787,67223,perrot library,1313164802 +65787,67267,In Netflix queue,1312997936 +65787,67267,perrot library,1313181904 +65787,67508,Netflix Streaming,1312846073 +65787,67620,perrot library,1255467289 +65787,67734,In Netflix queue,1312994986 +65787,67734,perrot library,1313181662 +65787,67792,In Netflix queue,1312585139 +65787,67801,In Netflix queue,1312584934 +65787,68073,In Netflix queue,1312994757 +65787,68073,perrot library,1313181381 +65787,68159,perrot library,1251426771 +65787,68237,In Netflix queue,1312584254 +65787,68237,perrot library,1313181555 +65787,68347,perrot library,1255469000 +65787,68358,in netflix queue,1447195224 +65787,68442,netflix streaming,1312847915 +65787,68444,perrot library,1251427338 +65787,68498,Netflix Streaming,1312845709 +65787,68674,Netflix Streaming,1312584846 +65787,68932,In Netflix queue,1312997981 +65787,68932,perrot library,1313181966 +65787,68954,In Netflix queue,1312583840 +65787,68954,perrot library,1313163478 +65787,68967,Netflix Streaming,1312584559 +65787,69122,imdb top 250,1379218424 +65787,69122,not available from Netflix streaming,1379218424 +65787,69372,perrot library,1255468301 +65787,69394,netflix streaming,1312845984 +65787,69458,In Netflix queue,1312577506 +65787,69604,In Netflix queue,1312845542 +65787,69604,perrot library,1313182381 +65787,69784,In Netflix queue,1312845656 +65787,69988,Netflix Streaming,1312846158 +65787,70342,Netflix Streaming,1312584572 +65787,70344,netflix streaming,1312585335 +65787,70643,In Netflix queue,1312585240 +65787,70706,perrot library,1255468257 +65787,71057,perrot library,1295022927 +65787,71108,not available from Netflix streaming,1365385934 +65787,71211,In Netflix queue,1312583933 +65787,71211,perrot library,1313165329 +65787,71246,netflix streaming,1312584884 +65787,71327,in netflix queue,1312585287 +65787,71429,Netflix Streaming,1312584756 +65787,71438,Netflix Streaming,1312584514 +65787,71450,Netflix Streaming,1312584667 +65787,71542,netflix streaming,1312846123 +65787,71691,perrot library,1255468407 +65787,71745,In Netflix queue,1312584794 +65787,71823,netflix streaming,1312585652 +65787,71838,Netflix Streaming,1312585559 +65787,71876,In Netflix queue,1312845599 +65787,72011,In Netflix queue,1312583854 +65787,72226,In Netflix queue,1312991623 +65787,72226,perrot library,1313163625 +65787,72249,In Netflix queue,1312923570 +65787,72378,in netflix queue,1312994672 +65787,72378,perrot library,1313181312 +65787,72386,In Netflix queue,1312995646 +65787,72386,perrot library,1313181771 +65787,72395,netflix streaming,1312846423 +65787,72720,Netflix streaming,1447194429 +65787,72720,perrot library,1313181816 +65787,72733,In Netflix queue,1312992446 +65787,72733,perrot library,1313164968 +65787,73015,In Netflix queue,1312992537 +65787,73015,perrot library,1313164919 +65787,73027,not available from Netflix streaming,1365647781 +65787,73321,not available from Netflix streaming,1365386461 +65787,73523,Netflix Streaming,1312923607 +65787,74458,Netflix Streaming,1312584461 +65787,74791,In Netflix queue,1365389759 +65787,74795,In Netflix queue,1312585046 +65787,76293,In Netflix queue,1312992519 +65787,76293,perrot library,1313164886 +65787,76763,In Netflix queue,1312995588 +65787,76763,perrot library,1313181722 +65787,78039,In Netflix queue,1312577757 +65787,78039,perrot library,1313166445 +65787,78574,Netflix Streaming,1312923802 +65787,78681,In Netflix queue,1312845767 +65787,79132,imdb top 250,1352346821 +65787,79132,not available from Netflix streaming,1352346821 +65787,79242,netflix streaming,1447383441 +65787,79293,In Netflix queue,1312991754 +65787,79293,perrot library,1313163847 +65787,79299,In Netflix queue,1312923504 +65787,79702,In Netflix queue,1312995074 +65787,81018,in netflix queue,1312585418 +65787,81018,perrot library,1313166644 +65787,81229,In Netflix queue,1312992473 +65787,81229,perrot library,1313165013 +65787,81845,perrot library,1313163415 +65787,82463,In Netflix queue,1312584623 +65787,82463,perrot library,1313166569 +65787,82527,in netflix queue,1312994367 +65787,82527,perrot library,1313166496 +65787,83270,In Netflix queue,1312994436 +65787,83270,perrot library,1313163284 +65787,83349,in netflix queue,1312994329 +65787,83349,perrot library,1313166409 +65787,83976,netflix streaming,1447383546 +65787,86882,in netflix queue,1447195975 +65787,87304,Netflix streaming,1447196094 +65787,88744,In netflix queue,1447382850 +65787,88746,in netflix queue,1447383019 +65787,89774,imdb top 250,1379217849 +65787,89774,not available from Netflix streaming,1379217849 +65787,89864,in netflix queue,1447383410 +65787,91529,imdb top 250,1352347118 +65787,91529,not available from Netflix streaming,1352347118 +65802,377,bomb,1242093875 +65802,377,explosions,1242093863 +65802,377,Sandra Bullock,1242093856 +65802,8870,bad ending,1242093963 +65802,63853,aboregines,1242037225 +65802,63853,World War II,1242037235 +65802,64034,based on a book,1242037099 +65802,64034,World War II,1242037096 +65802,64575,Meryl Streep,1242037126 +65802,66297,sci fi,1242037208 +65818,364,Disney,1436615770 +65818,364,Family,1436615747 +65818,858,Francis Ford Coppola,1436616122 +65845,260,good vs evil,1439795125 +65845,260,sci-fi,1439795104 +65845,260,space adventure,1439795109 +65856,59369,CIA,1235285631 +65856,59369,kidnapping,1235285680 +65856,77658,Carl Sagan,1285258156 +65859,296,classic,1430778101 +65859,296,Quentin Tarantino,1430778092 +65859,296,violence,1430778104 +65859,4993,tolkien,1430778145 +65860,260,i don't know much about it,1443584561 +65865,134368,action,1437739286 +65865,134368,boring,1437739286 +65865,134368,comedy,1437739286 +65887,6,In The Nucleus,1155597901 +65887,542,paulie shore,1154460107 +65887,1036,In The Nucleus,1155597949 +65887,1200,In The Nucleus,1155597969 +65887,1240,In The Nucleus,1155597930 +65891,141,comedy,1440980962 +65891,1183,poignantly interwoven music and storytelling,1440980844 +65891,57183,convincing child actor,1440983048 +65893,260,future,1433717430 +65893,260,futuristic,1433717434 +65893,260,sci-fi,1433717428 +65893,260,timeless,1433717435 +65907,99114,action packed,1433598497 +65907,99114,gunfight,1433598497 +65907,99114,western,1433598497 +65908,32,great ending,1368379066 +65908,32,original,1368296701 +65908,50,great acting,1368378954 +65908,70,cult classic,1368378986 +65908,81,Detroit,1186353827 +65908,150,dramatic,1368378805 +65908,204,action,1368378839 +65908,232,relationships,1368378864 +65908,296,storytelling,1368296752 +65908,318,great acting,1368378954 +65908,318,great ending,1368379066 +65908,508,dramatic,1368378806 +65908,593,great acting,1368378954 +65908,858,great acting,1368378954 +65908,858,oscar (best directing),1368296802 +65908,913,talky,1368379099 +65908,922,talky,1368379099 +65908,1016,family,1368379035 +65908,1172,mentor,1368296721 +65908,1185,cerebral,1368379183 +65908,1199,weird,1368378889 +65908,1210,great ending,1368379066 +65908,1248,criterion,1368296771 +65908,1260,talky,1368379099 +65908,1299,dramatic,1368378806 +65908,1307,relationships,1368378864 +65908,1466,mentor,1368296721 +65908,1527,visually appealing,1368378910 +65908,1552,action,1368378839 +65908,1608,action,1368378839 +65908,1617,great acting,1368378954 +65908,1623,horror,1368379012 +65908,1639,relationships,1368378864 +65908,1704,mentor,1368296721 +65908,1748,cerebral,1368379183 +65908,1952,loneliness,1368296784 +65908,1991,horror,1368379012 +65908,2076,weird,1368378890 +65908,2108,story,1368379135 +65908,2167,action,1368378839 +65908,2194,oscar (best directing),1368296802 +65908,2315,horror,1368379012 +65908,2371,comedy,1368296738 +65908,2394,story,1368379135 +65908,2420,mentor,1368296721 +65908,2460,horror,1368379012 +65908,2762,great ending,1368379066 +65908,2858,great acting,1368378954 +65908,3006,dramatic,1368378805 +65908,3147,oscar (best directing),1368296802 +65908,3157,family,1368379035 +65908,3421,comedy,1368296738 +65908,3462,talky,1368379099 +65908,3470,criterion,1368296771 +65908,3740,cult classic,1368378986 +65908,3849,noir,1137547371 +65908,4128,cult classic,1368378986 +65908,4226,storytelling,1368296752 +65908,4725,horror,1368379012 +65908,4848,visually appealing,1368378910 +65908,4878,cerebral,1368379183 +65908,4878,original,1368296702 +65908,4878,weird,1368378890 +65908,5452,family,1368379035 +65908,5930,70mm,1207035482 +65908,5945,loneliness,1368296784 +65908,6188,comedy,1368296738 +65908,6223,drugs,1187948756 +65908,6579,berlin,1232095801 +65908,6579,coke,1232095801 +65908,6579,communism,1232095801 +65908,6579,germany,1232095755 +65908,6987,criterion,1368296771 +65908,7147,story,1368379135 +65908,7438,storytelling,1368296752 +65908,7581,classic,1137401204 +65908,7581,libertarian,1137401186 +65908,8252,New York City,1186353759 +65908,8507,classic,1138482970 +65908,8641,comedy,1368296738 +65908,8981,relationships,1368378864 +65908,32587,storytelling,1368296752 +65908,37729,visually appealing,1368378910 +65908,41285,londo,1137970103 +65908,42011,sequel,1138483239 +65908,43871,shit,1146447429 +65908,45447,shit,1148257245 +65908,48516,original,1368296702 +65908,54286,espionage,1188085387 +65908,59016,James Ellroy,1214842845 +65908,59016,Keanu Reeves,1214842819 +65908,59016,LAPD,1214842845 +65908,59016,Los Anges,1214842845 +65908,60684,visually appealing,1368378910 +65908,64839,loneliness,1368296784 +65908,79132,cerebral,1368379183 +65908,87306,instant classic,1316995666 +65911,47394,québécois,1226261406 +65917,26842,golden harvest,1372875517 +65917,26842,kung fu,1372875523 +65917,26842,martial arts,1372875521 +65917,26842,michelle yeoh,1372875543 +65917,102367,heroic bloodshed,1372875717 +65917,102367,Hongkong,1372875710 +66022,260,"""retrofitted"" future",1443251583 +66022,260,space adventure,1443251552 +66026,293,complex relationship,1297971616 +66026,293,disturbing,1297971649 +66026,293,great acting,1297971631 +66026,293,quirky,1297971571 +66026,1197,fantasy,1297971543 +66026,1197,funny,1297971546 +66026,1197,romance,1297971548 +66026,1197,witty,1297971557 +66026,2101,Native Americans,1425430025 +66026,3996,beautifully filmed,1297971675 +66026,3996,dreamlike,1297971668 +66026,3996,quiet romance,1297971687 +66026,5417,Inuit,1425617295 +66026,38886,divorce,1297971441 +66026,38886,dysfunctional family,1297971444 +66026,38886,interesting,1297971482 +66026,38886,realistic family dynamic,1297971469 +66026,40583,Alexander Siddig,1297971296 +66026,40583,complicated,1297971268 +66026,40583,confrontational,1297971281 +66026,40583,Political,1297971265 +66026,40583,world politics,1297971271 +66026,53827,emotional healing,1297971352 +66026,53827,intense,1297971368 +66026,77947,film industry,1424657581 +66026,77947,india,1424657581 +66026,77947,Marathi,1305777741 +66026,77947,social commentary,1305777824 +66026,85108,Native Americans,1425429611 +66026,92352,Native Americans,1425431609 +66026,106165,bees,1424670332 +66026,111544,Aborigines,1425433033 +66026,117314,drugs,1424670172 +66026,129034,emotional,1426299637 +66026,129034,prison,1426299637 +66026,129034,redemption,1426299637 +66026,129036,anthropology,1424658462 +66026,129036,Bakhtiari,1424658456 +66026,129036,documentary,1424658466 +66026,129530,Documentary,1425433385 +66026,129530,gaza,1425434065 +66026,129530,hip hop,1425434065 +66026,129530,Palestine,1425433367 +66026,129530,Palestinians,1425433373 +66026,129530,west bank,1425434065 +66029,318,Oscar Nominee,1431541286 +66029,5952,sci-fi,1431541309 +66032,6934,virtual reality,1182928921 +66037,260,have not seen it,1444441272 +66037,260,Not my thing,1444441248 +66074,1,friendship,1431716267 +66074,318,innocent person on the run,1431719987 +66074,318,prison escape,1431719987 +66074,318,survival,1431719987 +66074,2501,inspirational,1431720160 +66074,2501,science,1431720154 +66093,260,classic,1444170904 +66093,260,Cool,1444170888 +66096,56801,predalien,1282781871 +66096,56801,what AVP should have been,1282781880 +66138,1721,atmospheric,1293578279 +66138,1721,bittersweet,1293578281 +66138,1721,catastrophe,1293578282 +66138,3668,beautiful,1293578112 +66138,3668,Franco Zeffirelli,1293578089 +66138,3668,Romance,1293578085 +66138,3668,Shakespeare,1293578081 +66138,7147,adventure,1293577970 +66138,7147,bittersweet,1293577968 +66138,7147,coming of age,1293577965 +66138,7147,dreamlike,1293577966 +66138,7147,fantasy,1293577963 +66138,7147,imagination,1293577977 +66138,7147,quirky,1293577974 +66138,7147,reflective,1293577981 +66138,7147,romance,1293577980 +66138,7147,surreal,1293577982 +66138,7147,surrealism,1293577983 +66138,7147,Tim Burton,1293577971 +66138,69951,fantasy,1293577731 +66138,69951,Johnny Depp,1293577734 +66138,69951,surreal,1293577729 +66138,71327,19th century,1293575539 +66138,71327,artistic,1293575539 +66138,71327,poets,1293575539 +66138,71327,romance,1293578015 +66138,71327,romantic,1293575539 +66138,71327,sad,1293575539 +66138,71745,Coming of age,1293577879 +66138,71745,fantasy world,1293577881 +66138,71745,imagination,1293577884 +66138,71745,Soundtrack,1293577886 +66138,71745,stylized,1293577889 +66138,71745,touching,1293577890 +66150,4881,narrated,1319835314 +66150,6502,great soundtrack,1289275217 +66150,46976,narrated,1253504764 +66150,53318,Nudity (Full Frontal),1280641251 +66150,67197,religious overtones,1257652779 +66150,71033,Academy Award - Best Foreign Film,1271039829 +66150,76251,great soundtrack,1289275197 +66150,80969,depressing,1296441738 +66150,80969,sad,1296441738 +66155,260,classic sci-fi,1439158830 +66155,260,space,1439158838 +66170,6770,isabel coixet,1244009325 +66170,27783,daniel burman,1252124879 +66225,1704,inspirational,1424253116 +66225,76093,animated,1424253062 +66240,1200,sci-fi,1292347219 +66240,1200,space,1292347227 +66251,260,cult,1439796356 +66251,260,scifi,1439796345 +66251,260,space,1439796360 +66253,2692,hindi,1451282969 +66270,837,Cute!,1189469537 +66270,915,originals are best,1189469585 +66270,954,wonderfully warm and amusing,1189469514 +66270,955,wonderfully warm and amusing,1189469616 +66270,1025,Disney,1189469548 +66270,1243,so funny!,1189469634 +66270,1416,why do they make good shows into bad movies?,1189469497 +66270,1438,predictable movie,1189469976 +66270,1620,great book okay movie,1189469575 +66270,1907,disney was really reaching for material,1189469342 +66270,2125,awww,1189469484 +66270,2485,comedy,1189469523 +66270,2642,good series,1189469593 +66270,2863,comedy,1189469624 +66270,2872,stop ruining the arthur legend!,1189469430 +66270,3252,one of the best movies ever,1189469389 +66270,4310,war drama,1189469358 +66270,4447,comedy,1189469317 +66270,5064,great movie,1189469652 +66270,5444,Cute!,1189469691 +66270,6218,Cute!,1189469418 +66270,6373,very funny!,1189469468 +66270,30812,surprisingly good!,1189469680 +66270,35836,stupid.,1189469665 +66271,260,action,1436004403 +66271,260,classic sci-fi,1436004416 +66271,260,fantasy,1436004427 +66271,260,fantasy action,1436004435 +66271,260,sci-fi,1436004408 +66271,260,Science Fiction,1436004413 +66271,122882,action,1436004869 +66271,122882,comedy action,1436004869 +66271,122882,satisfying ending,1436004869 +66271,137593,funny,1436767760 +66271,137593,gangsters,1436767760 +66271,137593,revenge,1436767760 +66272,5989,based on a book,1254126894 +66298,367,comedy,1358753241 +66298,367,Jim Carrey,1358753229 +66298,367,superhero,1358753233 +66298,2248,comedy,1358753376 +66298,2248,great soundtrack,1358753376 +66298,2248,high school,1358753376 +66298,3911,bt,1358752672 +66298,3911,tuyen,1358752672 +66298,3911,yeu,1358752672 +66301,55280,comedy-drama,1341769858 +66301,55280,cute,1341769862 +66301,55280,emotional,1341769871 +66301,55280,feel-good,1341769874 +66301,55280,mental illness,1341769867 +66301,55280,PG13,1341769875 +66301,55280,psychology,1341769878 +66301,55280,sweet,1341769880 +66301,67087,bromance,1341763507 +66301,67087,brother-brother relationship,1341763511 +66301,67087,comedy,1341763514 +66301,67087,friendship,1341763516 +66301,67087,likeable,1341763522 +66301,67087,Paul Rudd,1341763531 +66301,67087,wedding,1341763535 +66301,69122,comedy,1341763377 +66301,69122,Drinking,1341763437 +66301,69122,drugs,1341763439 +66301,69122,flashbacks,1341763441 +66301,69122,funny,1341763407 +66301,69122,Great ending,1341763444 +66301,69122,Hilarious,1341763427 +66301,69122,Las Vegas,1341763435 +66301,69122,plot holes,1341763419 +66301,69122,police,1341763450 +66301,69122,Zach Galifianakis,1341763434 +66306,50,Benicio Del Toro,1286522697 +66306,50,funny,1286522709 +66306,50,Kevin Spacey,1286522691 +66306,50,twist ending,1286522694 +66306,799,cheesy,1287053094 +66306,799,cliche,1287053073 +66306,799,not horror,1287053125 +66306,1732,classic,1286522964 +66306,1732,comedy,1286522940 +66306,1732,Cult classic,1286522957 +66306,1732,cult film,1286522959 +66306,1732,dark comedy,1286522955 +66306,1732,Julianne Moore,1286522949 +66306,1732,Philip Seymour Hoffman,1286522945 +66306,1732,quirky,1286522954 +66306,2005,1980s,1286522873 +66306,2005,80s,1286522875 +66306,2005,funny classic,1286522843 +66306,2005,pirates,1286522846 +66306,2600,Jennifer Jason Leigh,1311677413 +66306,2672,crap ending,1311646975 +66306,2858,dark comedy,1286522976 +66306,2858,Kevin Spacey,1286522978 +66306,2858,midlife crisis,1286522981 +66306,2858,surrealism,1286522994 +66306,2858,thought-provoking,1286522989 +66306,2959,Brad Pitt,1286522887 +66306,2959,dark comedy,1286522889 +66306,2959,Edward Norton,1286522885 +66306,3499,James Caan,1292750791 +66306,4226,mystery,1286522820 +66306,4226,nonlinear,1286522821 +66306,4226,psychological,1286522824 +66306,4226,stylized,1286522818 +66306,4226,tense,1286522826 +66306,4226,twist ending,1286522811 +66306,4661,Ellen Barkin,1310014151 +66306,4679,Gaby Hoffman,1293648027 +66306,4679,John Candy,1293647996 +66306,4679,Macaulay Culkin,1293647998 +66306,4878,alternate timeline,1286522922 +66306,4878,dreamlike,1286522915 +66306,4878,thought-provoking,1286522920 +66306,5893,Bill Pullman,1286761687 +66306,5893,Linda Fiorentino,1286761685 +66306,5893,Peter Berg,1286761683 +66306,5954,Edward Norton,1286926254 +66306,5954,Philip Seymour Hoffman,1286926257 +66306,7158,Ben Kingsley,1286501044 +66306,7158,Jennifer Connelly,1286501046 +66306,7321,Andy Garcia,1286989427 +66306,7321,Ashley Judd,1286989421 +66306,7321,police,1286989434 +66306,7321,Samuel L. Jackson,1286989425 +66306,7460,black and white,1292742366 +66306,7460,deadpan,1292742379 +66306,7460,dialogue,1292742378 +66306,7460,iggy pop,1292742359 +66306,7460,no plot,1292742356 +66306,7460,Steve Buscemi,1292742384 +66306,27046,Ashley Laurence,1286913494 +66306,27046,Cuba Gooding Jr.,1286913491 +66306,27831,daniel craig,1287083621 +66306,27831,Sienna Miller,1287083638 +66306,33794,adapted from:comic,1286697485 +66306,33794,based on a comic,1286697271 +66306,33794,based on comic,1286697274 +66306,33794,Christian Bale,1286697234 +66306,33794,Christopher Nolan,1286697438 +66306,33794,Morgan Freeman,1286697407 +66306,33794,super-hero,1286697483 +66306,33794,superhero,1286697481 +66306,36517,Africa,1286949738 +66306,36517,conspiracy,1286949794 +66306,36517,Rachel Weisz,1286949790 +66306,40148,just not good,1307773190 +66306,43921,Paul Walker,1287051875 +66306,43921,Vera Farmiga,1287051871 +66306,44191,dystopia,1286523010 +66306,44191,inspirational,1286523045 +66306,44191,Natalie Portman,1286523013 +66306,44191,thought-provoking,1286523016 +66306,48543,my addition to ML,1233965580 +66306,48543,serial killer,1233965567 +66306,48543,twist ending,1233965552 +66306,48780,Christian Bale,1286523110 +66306,48780,Christoper Nolan,1286523129 +66306,48780,David Bowie,1286523127 +66306,48780,Hugh Jackman,1286523124 +66306,48780,Michael Caine,1286523122 +66306,48780,obsession,1286523137 +66306,48780,Scarlett Johansson,1286523118 +66306,48780,twist ending,1286523120 +66306,54116,waste of 95 minutes,1232701152 +66306,54272,comedy,1286522727 +66306,54272,humorous,1286522729 +66306,54272,simpsons,1286522730 +66306,55118,male nudity,1287379335 +66306,55118,Naomi Watts,1287379296 +66306,55118,Viggo Mortensen,1287379290 +66306,55276,Drama,1286831432 +66306,55276,George Clooney,1286831024 +66306,55276,Slow pacing,1286831018 +66306,55820,coen brothers,1291262045 +66306,55820,great acting,1291262048 +66306,55820,Javier Bardem,1291262074 +66306,59126,atheism,1286522770 +66306,59126,Documentary,1286522768 +66306,59126,intellectual,1286522764 +66306,59126,intelligent,1286522756 +66306,59126,irreverent,1286522759 +66306,59126,thought-provoking,1286522761 +66306,59369,action,1286523069 +66306,59369,fight scenes,1286523067 +66306,59369,Liam Neeson,1286523061 +66306,59369,realistic,1286523075 +66306,59369,thriller,1286523063 +66306,60479,Katherine Cunningham-Eves,1286949939 +66306,61024,James Franco,1286522782 +66306,61024,Seth Rogen,1286522796 +66306,61024,Stoner Movie,1286522794 +66306,63033,epidemic,1287379654 +66306,63033,Julianne Moore,1287379612 +66306,65642,time travel,1287120141 +66306,68237,dystopia,1291245799 +66306,68237,isolation,1291245810 +66306,68237,twist ending,1291245807 +66306,72380,Cameron Diaz,1286522646 +66306,72380,Frank Langella,1286522656 +66306,72380,this was a Twilight Zone episode,1286522641 +66306,72731,fantasy,1288629225 +66306,72731,horrible,1288629211 +66306,72731,lame,1288629202 +66306,72731,Rachel Weisz,1288629221 +66306,72731,too long,1288629204 +66306,73321,slow paced,1286340060 +66306,74228,atmospheric,1286865314 +66306,74228,Christopher Smith,1286865310 +66306,74228,Melissa George,1286865319 +66306,74228,mystery,1286865331 +66306,74228,Surreal,1286865325 +66306,74944,Don Cheadle,1291269841 +66306,74944,Ethan Hawke,1291269839 +66306,74944,Richard Gere,1291269843 +66306,77846,Edward James Olmos,1292737215 +66306,77846,Jack Lemmon,1292737215 +66306,78088,buried alive,1290841897 +66306,78088,Ryan Reynolds,1290841878 +66306,78679,Bill Pullman,1286532247 +66306,78679,Jessica Alba,1286532243 +66306,78679,Kate Hudson,1286532241 +66306,80321,Andrew Howard,1291767582 +66306,80321,Ian Duncan,1291767582 +66306,80321,religious,1291767754 +66306,80321,Tess Panzer,1291767582 +66306,81495,based on a true story,1291324198 +66306,81495,Julie Delpy,1291324273 +66306,81788,Elizabeth Banks,1308020518 +66306,81788,Russell Crowe,1308020515 +66306,82095,Brittany Daniel,1291761942 +66306,82095,Eric Balfour,1291761538 +66306,82095,just not good,1291761576 +66306,82095,Scottie Thompson,1291761537 +66306,82244,Emmanuelle Chriqui,1293647869 +66306,84601,Diane Kruger,1308020461 +66306,84601,Liam Neeson,1308020463 +66371,7669,Colin Firth,1446137640 +66388,750,black and white,1421350405 +66388,750,black comedy,1421350359 +66388,750,nuclear war,1421350374 +66388,750,satire,1421350397 +66388,750,satirical,1421350384 +66388,1196,adventure,1421352762 +66388,1196,fantasy,1421352766 +66388,1196,George Lucas,1421352779 +66388,1196,great soundtrack,1421352773 +66388,1196,modern fantasy,1421352747 +66388,1196,music,1421352757 +66388,1196,robots,1421352741 +66388,1196,sci-fi,1421352734 +66388,1196,space,1421352752 +66388,1196,Star Wars,1421352738 +66388,1196,sword fight,1421352760 +66388,1527,dystopic future,1421350881 +66388,1527,futuristic,1421350858 +66388,1527,love,1421351110 +66388,1527,platitude,1421351063 +66388,1527,sci-fi,1421350853 +66388,1527,silly,1421351023 +66388,1721,atmospheric,1421351440 +66388,1721,catastrophe,1421351438 +66388,1721,drama,1421351423 +66388,1721,historical,1421351413 +66388,1721,love story,1421351451 +66388,1721,romance,1421351427 +66388,1721,sentimental,1421351449 +66388,2297,alternate reality,1421350569 +66388,2297,heaven and hell,1421350547 +66388,2297,imaginative,1421350571 +66388,2297,philosophy,1421350555 +66388,2297,Robin Williams,1421350563 +66388,2297,suicide,1421350543 +66388,2297,surreal,1421350537 +66388,3275,dark humor,1421353141 +66388,3275,religion,1421353135 +66388,3275,stylized,1421353149 +66388,4973,France,1421352678 +66388,4973,French,1421352694 +66388,4973,love,1421352703 +66388,4973,Paris,1421352698 +66388,4973,romance,1421352690 +66388,4973,romantic,1421352682 +66388,5952,atmospheric,1421350499 +66388,5952,based on a book,1421350494 +66388,5952,Epic,1421350480 +66388,5952,fantasy,1421350446 +66388,5952,fantasy world,1421350451 +66388,5952,great soundtrack,1421350485 +66388,5952,magic,1421350454 +66388,5952,Peter Jackson,1421350514 +66388,5952,tolkien,1421350475 +66388,5952,wizards,1421350501 +66388,5971,Cute,1421352889 +66388,5971,fantasy,1421352919 +66388,5971,feel good movie,1421352895 +66388,5971,Hayao Miyazaki,1421352916 +66388,5971,spirits,1421352913 +66388,6539,adventure,1421350727 +66388,6539,comedy,1421350719 +66388,6539,fantasy,1421350745 +66388,6539,funny,1421350693 +66388,6539,johnny depp,1421350716 +66388,6539,magic,1421350701 +66388,6539,pirates,1421350689 +66388,6539,romance,1421350703 +66388,6539,soundtrack,1421350765 +66388,6539,sword fight,1421350725 +66388,6539,treasure,1421350688 +66388,72998,bad science,1421351292 +66388,72998,ecology,1421351157 +66388,72998,environmental,1421351144 +66388,72998,graphic design,1421351149 +66388,72998,idiot characters,1421351275 +66388,72998,music,1421351163 +66388,72998,platitude,1421351344 +66388,72998,romance,1421351132 +66388,72998,sci-fi,1421351139 +66388,73268,dystopia,1421353235 +66388,73268,dystopic future,1421353242 +66388,73268,plague,1421353239 +66388,73268,vampires,1421353232 +66388,94777,aliens,1421350611 +66388,94777,crazy,1421350649 +66388,94777,funny,1421350653 +66388,94777,memory,1421350613 +66388,94777,time travel,1421350601 +66388,94777,Will Smith,1421350606 +66388,106642,David Tennant,1421350811 +66388,106642,Doctor Who,1421350800 +66388,106642,sci-fi,1421350810 +66388,106642,setting:Gallifrey,1421350821 +66388,106642,time travel,1421350803 +66388,109487,ambitious,1421349999 +66388,109487,atmosphere,1421351768 +66388,109487,"bad science for physisist, well",1421351690 +66388,109487,epic,1421351574 +66388,109487,Good OST,1421351619 +66388,109487,Hans Zimmer,1421349962 +66388,109487,love,1421351628 +66388,109487,Masterpiece,1421350291 +66388,109487,physics,1421349976 +66388,109487,relativity,1421350278 +66388,109487,sentimental,1421350261 +66388,109487,sincerity,1421351811 +66388,109487,sounds,1421349966 +66388,109487,soundtrack,1421351561 +66388,109487,space,1421349983 +66388,109487,thought-provoking,1421350285 +66388,109487,time-travel,1421350255 +66388,109487,unreal feelengs,1421351735 +66388,109487,wormhole,1421349971 +66413,44555,imdb top 250,1231069946 +66427,4011,brad pitt,1424016344 +66427,4011,british,1424016355 +66427,4011,comedy,1424016353 +66473,2572,Cliché,1325182646 +66477,48394,spanish civil war,1220151249 +66477,68358,Leonard Nimoy,1242572584 +66477,68358,sci fi,1242572567 +66477,68358,Star Trek,1242572563 +66493,1269,dark comedy,1437915575 +66493,1269,insanity,1437915579 +66493,34437,Atmospheric,1437915905 +66493,34437,Bill Murray,1437915901 +66493,34437,bittersweet,1437915907 +66493,34437,melancholic,1437915899 +66493,99110,Lizzy Caplan,1437915625 +66496,46322,Martial Arts,1169352267 +66504,260,adventure,1436192034 +66504,260,sci-fi,1436192026 +66558,32,dystopia,1298695190 +66558,32,psychology,1298695201 +66558,32,time travel,1298695196 +66558,97,black and white,1267317591 +66558,97,gritty,1267317597 +66558,97,social commentary,1267317600 +66558,500,San Francisco,1207434602 +66558,541,atmospheric,1264919580 +66558,541,cyberpunk,1264919576 +66558,541,futuristic,1264919584 +66558,541,stylized,1264919587 +66558,902,Audrey Hepburn,1265701521 +66558,902,stereotypes,1265701512 +66558,904,claustrophobic,1270881184 +66558,904,tense,1270881161 +66558,904,voyeurism,1270881158 +66558,916,Audrey Hepburn,1264284488 +66558,916,Italy,1264284490 +66558,916,Rome,1264284502 +66558,922,black comedy,1274593730 +66558,922,dark,1274593732 +66558,922,satirical,1274593735 +66558,930,Ingrid Bergman,1267755326 +66558,1005,sports,1207514077 +66558,1073,surreal,1260944689 +66558,1073,whimsical,1260944687 +66558,1086,MIND GAMES,1272094516 +66558,1092,San Francisco,1207434699 +66558,1178,anti-war,1272938966 +66558,1193,emotional,1260944929 +66558,1203,courtroom drama,1266194960 +66558,1203,good dialogue,1266194951 +66558,1203,social commentary,1266194953 +66558,1617,conspiracy,1300000250 +66558,1617,film noir,1300000240 +66558,2042,sports,1207514083 +66558,2065,bittersweet,1301442523 +66558,2082,sports,1207514087 +66558,2567,San Francisco,1207434538 +66558,2959,philosophy,1260945035 +66558,2959,psychology,1260945011 +66558,2959,satirical,1260945019 +66558,2959,social commentary,1260945014 +66558,2959,surreal,1260945039 +66558,2959,thought-provoking,1260945028 +66558,2959,twist ending,1260945016 +66558,3067,campy,1287859280 +66558,3608,funny as hell,1260944756 +66558,3608,Pee Wee Herman,1260944759 +66558,3786,campy,1295404013 +66558,3786,satire,1295404016 +66558,3786,satirical,1295404018 +66558,3788,artistic,1267840091 +66558,3788,atmospheric,1267840094 +66558,3788,eerie,1267840098 +66558,3788,meditative,1267840102 +66558,3788,photography,1267840106 +66558,3788,stylized,1267840109 +66558,4069,San Francisco,1207434370 +66558,4073,San Francisco,1207434228 +66558,4155,San Francisco,1207434407 +66558,4226,nonlinear,1298695244 +66558,4226,psychology,1298695246 +66558,4226,tense,1298695248 +66558,4359,Marilyn Monroe,1299350885 +66558,4700,San Francisco,1207434349 +66558,4741,friendship,1264123859 +66558,4741,politics,1264123849 +66558,4741,social criticism,1264123855 +66558,4741,witty,1264123853 +66558,4848,dreamlike,1260944770 +66558,4848,mindfuck,1260944768 +66558,4848,surreal,1260944772 +66558,4878,dreamlike,1260945091 +66558,4878,mindfuck,1260945104 +66558,4878,surreal,1260945080 +66558,4878,time travel,1260945087 +66558,4973,feel-good,1240876673 +66558,4973,Paris,1240876665 +66558,4973,quirky,1240876656 +66558,4973,surreal,1240876663 +66558,4973,whimsical,1240876661 +66558,5102,sports,1207514056 +66558,5103,sports,1207514098 +66558,5151,San Francisco,1207434172 +66558,5296,San Francisco,1207434012 +66558,5890,compassionate,1271033522 +66558,5890,eccentricity,1271033528 +66558,5890,quirky,1271033534 +66558,5890,upbeat,1271033537 +66558,6016,stylized,1301177760 +66558,6016,violence,1301177766 +66558,6291,forceful,1290562525 +66558,6291,social commentary,1290562529 +66558,7090,amazing photography,1260944974 +66558,7090,Beautiful,1260944983 +66558,7090,colourful,1260944986 +66558,7090,visually appealing,1260944992 +66558,7361,imagination,1240876551 +66558,7361,philosophy,1240876537 +66558,7361,quirky,1240876540 +66558,7361,surreal,1240876532 +66558,7438,stylized,1260944787 +66558,7438,Uma Thurman,1260944784 +66558,7438,violent,1260944793 +66558,7648,San Francisco,1207434487 +66558,8638,great dialogue,1276720651 +66558,8638,minimalist,1276720648 +66558,8638,Paris,1276720643 +66558,8638,real time,1276720646 +66558,8638,romantic,1276720641 +66558,8950,eerie,1263938397 +66558,8950,grim,1263938399 +66558,8950,stylized,1263938389 +66558,8983,Beautiful,1250814537 +66558,8983,overrated,1250814543 +66558,27611,humanity,1272524201 +66558,27611,politics,1272524208 +66558,27674,multiple storylines,1264123829 +66558,27815,feel-good,1286692318 +66558,27815,heartwarming,1286692307 +66558,33585,just sex,1292138979 +66558,33585,waste of time and money to see this,1292138983 +66558,33903,politics,1260945052 +66558,36525,San Francisco,1207434038 +66558,39183,beautiful,1264894796 +66558,39183,bittersweet,1264894798 +66558,39183,Heath Ledger,1264894801 +66558,39183,music,1264894807 +66558,44191,politics,1260944732 +66558,44191,thought-provoking,1260944720 +66558,44555,voyeurism,1274593791 +66558,44761,clever,1260945138 +66558,44761,Joseph Gordon-Levitt,1260945135 +66558,44761,neo noir,1260945132 +66558,44761,stylized,1260945127 +66558,45720,Emily Blunt,1295404101 +66558,48043,atmospheric,1266824291 +66558,48043,dreamlike,1266824289 +66558,48043,visually appealing,1266824299 +66558,49132,protest,1279996674 +66558,51540,stylized,1288567741 +66558,51540,Too long,1288567727 +66558,52241,Joseph Gordon-Levitt,1241474158 +66558,53123,dublin,1241474213 +66558,53123,good music,1241474210 +66558,53123,romance,1241474228 +66558,53996,enormously long battle scene,1242761247 +66558,54259,magic realism,1241474283 +66558,54999,Clive Owen,1241473937 +66558,54999,satire,1241473957 +66558,55094,Tommy Lee Jones,1286951754 +66558,55118,bloody,1276218828 +66558,55118,violent,1276218836 +66558,55269,dark comedy,1265701553 +66558,56367,notable soundtrack,1241474525 +66558,56367,witty,1241474527 +66558,56671,imgination,1265320275 +66558,56671,road trip,1265320271 +66558,56671,Zooey Deschanel,1265320267 +66558,57669,dark comedy,1264894837 +66558,57669,friendship,1264894841 +66558,57669,stylized,1264894845 +66558,59387,beautiful,1255655294 +66558,59387,surreal,1255655300 +66558,59387,visually stunning,1255655298 +66558,59655,Patti Smith is a goddess,1301028746 +66558,60037,entertaining for the wrong reasons,1289086805 +66558,60072,Angelina Jolie,1241474595 +66558,60072,brutal violence,1241474601 +66558,60072,plot twist,1241474587 +66558,60293,Josh Peck,1242446027 +66558,61132,parody,1246140094 +66558,61132,Robert Downey Jr.,1246140089 +66558,61132,satire,1246140079 +66558,61132,Tom Cruise,1246140082 +66558,62265,Uma Thurman,1264123711 +66558,62511,Charlie Kaufman,1241474445 +66558,63033,good concept,1302155523 +66558,63033,poorly realized,1302155527 +66558,63082,music,1240876700 +66558,63876,history,1241474365 +66558,63876,politics,1241474377 +66558,63876,San Francisco,1241474353 +66558,63992,so bad it's good,1295404069 +66558,63992,unintentional comedy,1295404072 +66558,64622,Kate Winslet,1240875819 +66558,64969,Zooey Deschanel,1243755316 +66558,65130,disillusionment,1271473078 +66558,65130,Kate Winslet,1271473056 +66558,65130,life philosophy,1271473059 +66558,65802,stupid,1246140048 +66558,66097,animation,1263330669 +66558,66097,creepy,1263330680 +66558,66097,stop motion,1263330675 +66558,66097,Surreal,1263330673 +66558,66665,quirky,1260944556 +66558,66665,searching,1260944576 +66558,66665,smart dialogues,1260944558 +66558,67267,Emily Blunt,1260412408 +66558,67408,Contrived plot,1262653560 +66558,68073,1960s,1277335505 +66558,68073,Music,1277335512 +66558,68073,rock and roll,1277335514 +66558,68073,soundtrack,1277335517 +66558,68073,Tom Sturridge,1277335519 +66558,68135,being a kid again,1264123787 +66558,68135,Michelle Trachtenberg,1264123776 +66558,68157,gore,1276498839 +66558,68157,satire,1276498858 +66558,68157,tense,1276498857 +66558,68157,violence,1276498848 +66558,68159,the ending,1355032147 +66558,68358,lack of development,1260748231 +66558,68358,lack of story,1260748234 +66558,68522,beautiful scenery,1276498689 +66558,68522,boring,1276498692 +66558,68522,long,1276498694 +66558,68522,nature,1276498704 +66558,68954,heartbreaking,1262653695 +66558,68954,Pixar,1262653713 +66558,68954,sweet,1262653719 +66558,69122,disappointing,1269538974 +66558,69122,no plot,1269538976 +66558,69306,too simple plot,1261272902 +66558,69757,Joseph Gordon-Levitt,1262653638 +66558,69784,satire,1264919682 +66558,69784,social commentary,1264919684 +66558,70286,aliens,1262653734 +66558,70286,social commentary,1262653747 +66558,70293,boring,1262653762 +66558,70293,Meryl Streep,1262653769 +66558,70599,book is better,1275634053 +66558,70599,time travel,1275634061 +66558,71057,dark fantasy,1264919464 +66558,71057,Elijah Wood,1264919455 +66558,71057,interesting animation style,1264919439 +66558,71057,post-apocalyptic,1264919443 +66558,71057,visually appealing,1264919446 +66558,71108,bad ending,1288079507 +66558,71108,beautiful photography,1288079520 +66558,71108,ending,1288079515 +66558,71108,TOO LONG,1288079512 +66558,71205,Megan Fox,1270940118 +66558,71205,ridiculous,1270940110 +66558,71211,awkward,1269754437 +66558,71248,Jason Bateman,1271724275 +66558,71248,Kristen Wiig,1271724279 +66558,71248,Mila Kunis,1271724277 +66558,71282,informative,1260748373 +66558,71282,investigative journalism,1260748376 +66558,71327,based on a true story,1265961597 +66558,71327,poets,1265961614 +66558,71464,Philosophical,1267129231 +66558,71518,Drew Barrymore,1264575588 +66558,71518,Ellen Page,1264575590 +66558,71518,Juliette Lewis,1264575593 +66558,71518,Kristen Wiig,1264575597 +66558,71520,Direction,1266524366 +66558,71520,not funny,1266524385 +66558,71520,poor script,1266524369 +66558,71520,religion,1266524359 +66558,71520,Tina Fey,1266524354 +66558,71520,trite,1266524375 +66558,71535,gore,1265237717 +66558,71535,Jesse Eisenberg,1265237702 +66558,71745,fantasy world,1258241577 +66558,71745,stylized,1258241584 +66558,71899,character study,1278022469 +66558,71899,friendship,1278022460 +66558,71899,poignant,1278022463 +66558,71899,touching,1278022465 +66558,71926,Clive Owen,1264894723 +66558,71928,scenery,1297493017 +66558,72011,loneliness,1268552764 +66558,72011,thoughtful,1295404052 +66558,72226,stop motion,1269418092 +66558,72395,Gabourey Sidibe,1269126287 +66558,72407,bad acting,1269294370 +66558,72407,bad cgi,1269294372 +66558,72407,campy,1269294376 +66558,72407,unintentional comedy,1269294380 +66558,72407,vampires,1269294383 +66558,72479,Samantha Morton,1286348195 +66558,72605,Bailee Madison,1271917795 +66558,72641,based on a true story,1271817660 +66558,72720,beautiful cinematography,1282196066 +66558,72720,meditative,1282196077 +66558,72731,horrible,1272180148 +66558,72731,lame,1272180151 +66558,72731,pointless,1272180156 +66558,72731,too long,1272180158 +66558,73820,clever banter,1313353219 +66558,74677,Message,1273881763 +66558,74789,alternate reality,1275634108 +66558,74789,visually appealing,1275634099 +66558,74789,visuals,1275634116 +66558,74789,weird,1275634111 +66558,76079,Amanda Seyfried,1284954604 +66558,76293,Tina Fey,1283981974 +66558,77455,Banksy,1292746735 +66558,78039,unlikeable characters,1315546099 +66558,78772,awesome soundtrack,1296971004 +66558,79132,alternate reality,1283021440 +66558,79132,clever,1283021445 +66558,79132,complicated,1283021443 +66558,79132,dreams,1283021448 +66558,79132,surreal,1283021452 +66558,79132,visually appealing,1283021454 +66558,79293,Angelina Jolie,1295513264 +66558,79293,double agents,1295513268 +66558,79684,Emma Stone,1295905457 +66558,79702,cultural references,1294089311 +66558,79702,fight scenes,1294089329 +66558,79702,monotonous,1294089400 +66558,79702,music,1294089342 +66558,79702,shallow relationships,1294089320 +66558,79702,stylized,1294089361 +66558,79702,unlikable characters,1294089349 +66558,79702,video games,1294089358 +66558,79702,videogame like,1294089317 +66558,80126,boring,1375506825 +66558,80126,slow,1375506807 +66558,80489,acting,1295130716 +66558,80549,Emma Stone,1293141234 +66558,80551,About rich people without real problems,1293000300 +66558,80551,Every foreigner is a wiseman,1293000379 +66558,80551,Female middle-age angst,1293000384 +66558,80551,Leaves rich handsome man meets new rich handsome man,1293000390 +66558,80551,overlong,1293000395 +66558,80551,preachy,1293000407 +66558,80551,whiney protagonist,1293000410 +66558,80858,dumb,1313592147 +66558,80917,bad dialogue,1309063375 +66558,80917,boring,1309063378 +66558,80917,nonsensical,1309063383 +66558,80917,nothing happens,1309063403 +66558,80917,unsympathetic characters,1309063391 +66558,82167,Likeable main character,1301680658 +66558,84152,childish,1323498535 +66558,84152,concept,1323498519 +66558,84374,predictable,1314507110 +66558,84954,superficial,1313648598 +66558,85056,the dog,1360647150 +66558,85401,violent,1313353191 +66558,85414,plot makes no sense,1312093139 +66558,86190,beautiful cinematography,1325536113 +66558,86190,Cate Blanchett,1325536105 +66558,86190,plot holes,1325536119 +66558,86190,surrealism,1325536090 +66558,86190,The Chemical Brothers,1325536100 +66558,86190,Wonderland,1325536093 +66558,86332,predictable,1317019117 +66558,86882,thought-provoking,1323055673 +66558,86882,whimsical,1323055666 +66558,87192,ending,1327212351 +66558,87304,heartwarming,1323068846 +66558,87304,made me cry,1323068844 +66558,87304,unique story,1323068841 +66558,87304,voice over montages,1323068837 +66558,87306,trite,1328769219 +66558,87869,weak ending,1324538853 +66558,88129,atmospheric,1318656356 +66558,88129,lack of character,1318656360 +66558,88129,no depth,1318656364 +66558,88129,nothing much,1318656374 +66558,88129,violence,1318656370 +66558,88405,predictable,1321429250 +66558,88405,singing,1321429252 +66558,89745,predictable,1350934684 +66558,89745,unsatisfying,1350934681 +66558,89804,dialogue,1341638578 +66558,89804,intrigue,1341638576 +66558,89864,predictable,1323580023 +66558,90374,weak ending,1328510490 +66558,90430,forced,1352620527 +66558,91094,weak plot,1331507510 +66558,91104,everything,1353134679 +66558,91104,nothing happens,1353134671 +66558,91104,unintentionally funny,1353134675 +66558,91500,lack of character development,1339295911 +66558,91976,open ending,1357537408 +66558,92008,Cliches,1338613642 +66558,92008,Direction,1338613644 +66558,92008,Screenplay,1338613647 +66558,95449,"a ""fragment"" rather than a story",1353787489 +66558,95449,bad acting,1353787487 +66558,97306,Christopher Walken,1361604083 +66558,97306,Extreme Violence,1361604091 +66558,97306,great cast,1361604087 +66558,97306,metafiction,1361604102 +66558,97938,cinematography,1369691827 +66558,97938,religion,1369691840 +66558,97938,Slow,1369691834 +66558,97938,visually appealing,1369691829 +66558,99996,ending,1375761602 +66558,100383,twist,1375592905 +66558,102445,predictable,1384240383 +66558,103042,long fight scenes,1391325621 +66558,104211,watch the credits,1387674162 +66558,106487,Jennifer Lawrence,1385625582 +66592,296,classic,1432650971 +66592,296,quentin tarantino,1432650971 +66592,296,violence,1432650971 +66596,114554,anime,1431767955 +66596,114554,isao takahata,1431767955 +66596,114554,studio ghibli,1431767955 +66630,260,classic,1439194700 +66630,260,must see,1439194708 +66643,117533,computers,1444673255 +66643,117533,documentary,1444673250 +66643,117533,edward snowden,1444673252 +66643,117533,nsa,1444673253 +66643,117533,privacy,1444673247 +66643,117533,security,1444673260 +66643,117533,spying,1444673272 +66643,117533,surveillance,1444673258 +66643,117533,thought provoking,1444673262 +66643,117533,top documentary,1444673274 +66643,117533,whistleblower,1444673271 +66666,62,A great homage to great teachers who educate through living what they think and feel.,1140137645 +66666,314,All I remember about this movie is that Jamie was a seal. And something about the mother being a unicorn... unless I have my Irish movies messed up.,1140135284 +66666,420,even worse than the second.,1140390522 +66666,420,Sadly,1140390522 +66666,440,A presidential look-alike takes over as Commander in Chief and uses his time in office to work for the little people.,1140136126 +66666,520,Funny when your 10. Less funny when your not.,1140368717 +66666,541,Had a hard time following the plot of the movie.,1140074516 +66666,608,a keen eye for crime and an instinct as a soon-to-be mother to stay one step ahead of all the brainless midwesterners around her.,1140073816 +66666,608,William H. Macy puts forward perhaps his best performance of all time as a miserably unpersuasive Minnesotan car salesman who tries to stage his wife's kidnapping to pay off his debts. Frances McDormand plays the wholesome cop who blends wit,1140073829 +66666,788,Huhcülees! Huhcülees!... And I don't remember much of the rest.,1140137520 +66666,1292,A wonderful satire address the importance American society has placed on cultural savvy and political connectedness over intellect/critical thinking.,1140076166 +66666,1721,someone got paid off in order for this to pass as PG-13,1140390297 +66666,1739,Gee-bus. This was an awful film. Then again,1140134160 +66666,1739,the first one was terrible,1140134160 +66666,1739,too,1140134160 +66666,1739,when watched in your teens.,1140134160 +66666,2003,Theme song was a bit too childish.,1140135025 +66666,2036,The thought of an unlimited shopping spree for toys made up for everything else.,1140368794 +66666,2124,cara mia,1140138083 +66666,2324,Heartwarming,1140075541 +66666,2407,but that pool scene was repeated way too many times.,1140134861 +66666,2407,Ok,1140134861 +66666,2407,we get the point. Old people become outhful again. Great idea,1140134861 +66666,2700,The most clever dirty movie ever made.,1140135808 +66666,3108,could've been great but too long,1141277419 +66666,3735,Pacino delivers a passionate performance as a NYC detective who holds his own after learning that not everything is as it seems in his profession.,1140073136 +66666,3969,Not nearly as oscar-worthy as they hyped it up to be.,1140390737 +66666,4084,but his supporting cast was made too quirky in this movie (gun crazy Rosewood really took away from the wit of the movie).,1140137832 +66666,4084,Eddie Murphy is brilliant as always,1140137832 +66666,4816,One of the most overrated comedies of all time and one of the first films I walked out in the middle of.,1140075022 +66666,5670,An important lesson about how hard it is to keep up the act of being funny.,1140077768 +66666,7084,Playing the role of Woody Allen in this film in high school helps you appreciate the hilarity ensuing from loving while empathizing with the heart wrenching reality of being an overly sensitive romantic.,1140075890 +66666,7440,but I would love to take a road trip down to the school to see the memorial.,1140077391 +66666,7440,Very moving. The extent to which it was scripted (Especially the principle's lines) bothered me some,1140077359 +66666,7445,WAY too long.,1140135429 +66666,8528,40 year old virgin,1140134266 +66666,8528,and whatever other horribly overrated movies I've grouped this with.,1140134266 +66666,8528,See Zoolander,1140134266 +66666,35836,One of the most overrated comedies of all time,1140074958 +66666,35836,right next to zoolander.,1140074958 +66691,63082,action,1439949324 +66691,63082,drama,1439949350 +66691,63082,music,1439949333 +66691,63082,romance,1439949368 +66691,115617,action,1439949424 +66691,115617,comedy,1439949409 +66691,115617,fun,1439949413 +66691,115617,happy ending,1439949447 +66693,32,time travel,1405376470 +66693,47,Morgan Freeman,1405460155 +66693,185,strong female lead,1421862161 +66693,260,great soundtrack,1405453929 +66693,260,soundtrack,1405456898 +66693,316,wormhole,1407714558 +66693,344,Jim Carrey,1405460399 +66693,349,jack ryan,1405524627 +66693,367,Jim Carrey,1405367888 +66693,442,cryonics,1405378484 +66693,442,cryonics is not time travel,1405460681 +66693,590,multilingual,1410651179 +66693,593,Jodie Foster,1405816237 +66693,593,strong female lead,1421861537 +66693,741,anime,1405549789 +66693,823,intellectual,1421967447 +66693,837,strong female lead,1421951212 +66693,1111,documentary,1405455027 +66693,1196,great soundtrack,1405453933 +66693,1196,soundtrack,1405456914 +66693,1198,Harrison Ford,1405372548 +66693,1198,Nazis,1405372551 +66693,1198,religion,1405481354 +66693,1200,horror,1405429752 +66693,1210,great soundtrack,1405453937 +66693,1210,soundtrack,1405456904 +66693,1214,horror,1405429745 +66693,1240,time travel,1405376514 +66693,1279,multilingual,1410726481 +66693,1279,Roberto Benigni,1410726500 +66693,1339,Winona Ryder,1423924340 +66693,1387,dialogue,1405429404 +66693,1387,horror,1405429290 +66693,1485,jim carrey,1405460502 +66693,1566,soundtrack,1405610597 +66693,1584,Jodie Foster,1405816157 +66693,1584,religion,1421863238 +66693,1584,strong female lead,1421861575 +66693,1586,strong female lead,1421862495 +66693,1610,jack ryan,1405524624 +66693,1894,Comedy,1423080471 +66693,1907,strong female lead,1421861492 +66693,2006,x-vu,1436109756 +66693,2011,time travel,1405378713 +66693,2028,Nazis,1405457178 +66693,2078,soundtrack,1405480316 +66693,2571,geeky,1405649424 +66693,2571,soundtrack,1405454334 +66693,2617,horror,1405435901 +66693,2628,soundtrack,1405453951 +66693,2918,bullshitting,1421074107 +66693,3000,anime,1405549364 +66693,3052,Alan Rickman,1405465907 +66693,3052,religion,1405449697 +66693,3054,anime,1405649112 +66693,3247,choir,1424380350 +66693,3256,jack ryan,1405524630 +66693,3408,strong female lead,1421862095 +66693,3471,x-astier,1449954016 +66693,3986,x-anael,1436109359 +66693,4025,Sandra Bullock,1421863002 +66693,4025,strong female lead,1421862982 +66693,4084,bullshitting,1421074132 +66693,4085,bullshitting,1421074117 +66693,4085,dialogue,1410884085 +66693,4223,Nazis,1405457087 +66693,4299,Alan Tudyk,1405630390 +66693,4508,x-vu,1453755152 +66693,4519,x-vu,1453235074 +66693,4874,sci-fi,1428855182 +66693,4901,nonlinear,1407326830 +66693,4992,time travel,1405463222 +66693,5010,x-anael,1436109364 +66693,5121,multilingual,1408294544 +66693,5378,soundtrack,1405454253 +66693,5400,jack ryan,1405524635 +66693,5722,Pierre Richard,1405634880 +66693,5748,Lino Ventura,1408514590 +66693,5971,anime,1405549347 +66693,6238,x-vu,1436109738 +66693,6281,x-anael,1436109352 +66693,6299,documentary,1405367799 +66693,6365,geeky,1405649434 +66693,6373,Jim Carrey,1405431054 +66693,6373,Morgan Freeman,1405431039 +66693,6373,religion,1405431047 +66693,6539,soundtrack,1405453513 +66693,6564,x-vu,1436109744 +66693,6714,strong female lead,1421862543 +66693,6874,Quentin Tarantino,1405446731 +66693,6874,strong female lead,1421862629 +66693,6934,geeky,1405649429 +66693,7090,x-vu,1436109751 +66693,7361,nonlinear,1405460440 +66693,7373,nazis,1405459848 +66693,7438,Quentin Tarantino,1405446807 +66693,7438,strong female lead,1421862688 +66693,8368,time travel,1405376491 +66693,8448,Pierre Richard,1405634933 +66693,8477,time travel,1435522290 +66693,8666,strong female lead,1421862021 +66693,8915,strong female lead,1421861895 +66693,25929,magic,1423924757 +66693,26109,dialogue,1405374360 +66693,26109,Lino Ventura,1408514581 +66693,26152,nanar,1420281122 +66693,26208,intellectual,1421967404 +66693,26268,Pierre Richard,1405634872 +66693,26903,anime,1405649075 +66693,27368,Christian Clavier,1405438008 +66693,27368,Edouard Baer,1405477876 +66693,27368,ensemble cast,1405477917 +66693,27660,geeky,1405649438 +66693,30707,strong female lead,1421861911 +66693,31221,strong female lead,1421862348 +66693,31696,religion,1405449700 +66693,32025,multilingual,1409265380 +66693,32296,Sandra Bullock,1421862364 +66693,32296,strong female lead,1421862363 +66693,32840,short,1405605877 +66693,33493,great soundtrack,1405454264 +66693,33493,soundtrack,1405456910 +66693,33836,upbeat,1408739690 +66693,34405,Alan Tudyk,1405630455 +66693,34405,ensemble cast,1405630700 +66693,36289,Christian Clavier,1405477949 +66693,36289,torture,1421862882 +66693,43836,Steve Martin,1410631522 +66693,43836,stupid accent,1410712048 +66693,45134,Bernard Blier,1448799462 +66693,45134,x-telerama-dialogues,1448799422 +66693,45503,x-var,1445705876 +66693,45668,time travel,1405463194 +66693,45722,soundtrack,1405453524 +66693,46723,multilingual,1405603938 +66693,47394,multilingual,1405603907 +66693,47452,strong female lead,1433700367 +66693,47452,wing chun,1433093192 +66693,49085,multilingual,1405728589 +66693,49085,strong female lead,1421862222 +66693,49284,Morgan Freeman,1405431025 +66693,49822,x-dad,1436109459 +66693,51705,slow,1417015435 +66693,52885,anime,1421588247 +66693,52995,wing chun,1431083120 +66693,53125,soundtrack,1405453528 +66693,53993,Morgan Freeman,1405469460 +66693,53993,religion,1405469462 +66693,53996,comedy,1405433412 +66693,53996,soundtrack,1405455059 +66693,54745,Anna Kendrick,1405477052 +66693,55908,intellectual,1421967714 +66693,56174,horror,1405429886 +66693,57504,time travel,1422610905 +66693,57543,short,1405605825 +66693,59369,torture,1406902838 +66693,59615,comedy,1422297758 +66693,59667,x-vu,1436109718 +66693,62081,x-vu,1436109726 +66693,62336,anime,1405549100 +66693,64969,Jim carrey,1405460394 +66693,65514,Wing Chun,1431083158 +66693,66639,strong female lead,1422610860 +66693,66934,geeky,1405649311 +66693,68157,cruelty,1433700266 +66693,68157,Quentin Tarantino,1405446802 +66693,68358,time travel,1405376381 +66693,71535,zombies,1405605640 +66693,72104,short,1405605870 +66693,72630,x-Alain Damasio,1436109696 +66693,72733,Morgan Freeman,1405367618 +66693,72998,scenery porn,1420280769 +66693,73321,religion,1405634016 +66693,73804,Clovis Cornillac,1405477980 +66693,78469,x-vu,1436109732 +66693,78893,bad soundtrack,1405367845 +66693,79091,slow start,1436045724 +66693,79293,strong female lead,1421861615 +66693,79553,wing chun,1431083176 +66693,79684,Emma Stone,1405477546 +66693,80549,dialogue,1405374317 +66693,80549,Emma Stone,1405367920 +66693,80549,strong female lead,1421861776 +66693,80834,strong female lead,1421861681 +66693,80917,not really multilingual,1410699962 +66693,81981,Pierre Richard,1405634857 +66693,83134,Alan Tudyk,1405630415 +66693,84954,"Bechdel:Hi, is the floor open?",1428844237 +66693,84954,religion,1428843969 +66693,85179,anime,1405549246 +66693,85179,geeky,1405649029 +66693,85179,soundtrack,1405454122 +66693,86345,not a documentary,1405368110 +66693,86347,not a documentary,1405368099 +66693,86377,not a documentary,1405368131 +66693,86377,stand-up comedy,1405373396 +66693,86880,soundtrack,1405453519 +66693,88140,Nazis,1405430018 +66693,88163,Emma Stone,1405477466 +66693,88163,Ryan Gosling,1405477479 +66693,88810,Emma Stone,1405477538 +66693,88810,strong female lead,1421862135 +66693,91233,short,1405605821 +66693,92494,not a documentary,1405604467 +66693,92496,not a documentary,1405604494 +66693,92498,not a documentary,1405604455 +66693,92500,not a documentary,1405604462 +66693,92535,not a documentary,1405368117 +66693,93805,Nazis,1405372621 +66693,93840,Fran Kranz,1405630213 +66693,93840,horror,1405367500 +66693,94777,time travel,1405376451 +66693,95311,short,1405605866 +66693,95510,dialogue,1405374409 +66693,95510,Emma Stone,1405477498 +66693,95858,short,1405605873 +66693,96588,Anna Kendrick,1405477222 +66693,97665,Edouard Baer,1405477866 +66693,97913,geeky,1405477386 +66693,97913,soundtrack,1405453602 +66693,98275,dialogue,1406051380 +66693,98491,short,1405605829 +66693,99114,Quentin Tarantino,1427654245 +66693,99343,multilingual,1405629828 +66693,99343,nonlinear,1408193462 +66693,99728,Emma Stone,1405477490 +66693,100302,gravity fantasy,1420280416 +66693,101498,intellectual,1436014091 +66693,101527,multilingual,1409531644 +66693,102070,horror,1405429780 +66693,102088,wing chun,1431083200 +66693,103027,ensemble cast,1405630880 +66693,103027,Fran Kranz,1405630185 +66693,103085,dialogue,1405457993 +66693,103085,strong female lead,1421861709 +66693,103249,zombies,1405383879 +66693,103372,Sandra Bullock,1405379418 +66693,103372,strong female lead,1421861843 +66693,103655,RIPD,1414007754 +66693,103665,wing chun,1431083166 +66693,104069,not a documentary,1405368125 +66693,104841,strong female lead,1421861741 +66693,104879,x-vu,1436109711 +66693,106072,Natalie Portman,1428774049 +66693,107069,Mark Wahlberg,1405463977 +66693,108041,x-yann,1450637212 +66693,108188,Jack Ryan,1405524639 +66693,108190,strong female lead,1421861558 +66693,109487,time travel,1421588189 +66693,109487,time-travel,1421588107 +66693,110445,geeky,1409010861 +66693,110553,dialogue,1405374399 +66693,110553,Emma Stone,1405477503 +66693,111360,Morgan Freeman,1408490052 +66693,111360,strong female lead,1421862175 +66693,111362,time travel,1433485184 +66693,111659,strong female lead,1421862030 +66693,113041,added,1406897794 +66693,113043,added,1406897853 +66693,113045,added,1406897887 +66693,113080,added,1406898428 +66693,113080,multilingual,1406898425 +66693,113256,added,1407712065 +66693,113263,added,1407712356 +66693,113380,added,1408137872 +66693,113380,multilingual,1408138169 +66693,113507,added,1408489607 +66693,113507,Lino Ventura,1408514570 +66693,113692,added,1409325244 +66693,113692,dialogue,1409325279 +66693,113692,Lino Ventura,1409325248 +66693,114847,x-anael,1436109370 +66693,115617,geeky,1433605509 +66693,116901,added,1416093037 +66693,116903,gravity fantasy,1420280491 +66693,116905,gravity fantasy,1420280447 +66693,116905,scenery porn,1420280751 +66693,117468,added,1416773956 +66693,117470,added,1416774076 +66693,117472,added,1416774124 +66693,117535,added,1417020501 +66693,117537,added,1417024185 +66693,117537,Alexandre Astier,1417024202 +66693,117539,added,1417024367 +66693,117539,Alexandre Astier,1417024375 +66693,117539,geeky,1417024854 +66693,117541,added,1417024581 +66693,117543,added,1417024644 +66693,117545,added,1417024707 +66693,117545,Alexandre Astier,1417024926 +66693,117883,added,1417382478 +66693,122886,strong female lead,1453234900 +66693,130058,Jean-Pierre Marielle,1428756202 +66693,131710,Lisa Jakub,1436134033 +66693,131962,bad dialogue,1428349290 +66693,132374,x-not,1436109321 +66693,133185,multilingual,1430676199 +66693,133185,sign language,1430673486 +66693,133309,wing chun,1431083124 +66693,133657,dialogue,1431896008 +66693,135296,x-arnold,1436109312 +66693,135296,x-not,1436109307 +66693,139148,x-var,1445978843 +66693,145514,x-mom,1453754097 +66693,150696,x-mom,1453235264 +66703,1240,vehicle,1442861840 +66703,2997,Charlie Kaufman,1444107197 +66703,2997,mindfuck,1444107205 +66703,5902,Charlie Kaufman,1444105959 +66703,5902,dark comedy,1444105991 +66703,5902,meryl streep,1444105970 +66703,5902,narrated,1444106008 +66703,5902,Nicolas Cage,1444105956 +66703,5902,Spike Jonze,1444105965 +66703,5902,writing process,1444106013 +66724,260,classic,1439786867 +66724,260,must see,1439786896 +66724,260,space,1439786882 +66732,1,computer animation,1433533200 +66732,1,good cartoon chindren,1433533217 +66732,1,pixar,1433533206 +66732,260,cult classic,1433532761 +66732,260,Science Fiction,1433532727 +66732,260,space,1433532750 +66732,260,special effects,1433532739 +66732,356,drama,1433533192 +66732,356,history,1433533192 +66732,356,melodrama,1433533192 +66732,858,family,1433533487 +66732,858,Mafia,1433533457 +66732,858,Marlon Brando,1433533483 +66732,858,organized crime,1433533470 +66732,858,Oscar (Best Picture),1433533477 +66732,858,violence,1433533475 +66732,2294,computer animation,1433533275 +66732,2294,dreamworks,1433533267 +66732,2355,Animated,1433533248 +66732,2355,Pixar,1433533241 +66732,4886,Animation,1433533096 +66732,4886,good cartoon children,1433533125 +66732,4886,hilarious,1433533120 +66732,4886,pixar,1433533112 +66733,65,Pauly Shore,1268486827 +66733,542,Pauly Shore,1268486793 +66733,1858,Jackie Chan,1268487113 +66733,1858,kung fu,1268487116 +66733,2879,Jackie Chan,1268487025 +66733,2879,kung fu,1268487095 +66733,2880,Jackie Chan,1268487188 +66733,2880,kung fu,1268487188 +66733,2924,Jackie Chan,1268487000 +66733,3243,Pauly Shore,1268486808 +66733,3629,Charlie Chaplin,1268486979 +66733,3972,Jackie Chan,1268487331 +66733,3972,kung fu,1268487333 +66733,5243,kung fu,1268487221 +66733,6286,Aki Kaurismäki,1268486935 +66733,26413,Jackie Chan,1268487472 +66733,26413,kung fu,1268487472 +66733,26547,Jackie Chan,1268487010 +66733,26776,Hayao Miyazaki,1268486867 +66733,26776,Studio Ghibli,1268486864 +66733,31658,Hayao Miyazaki,1268486954 +66733,31658,Studio Ghibli,1268486580 +66733,42946,Jackie Chan,1268487443 +66733,42946,kung fu,1268487443 +66733,73569,Jackie Chan,1268487256 +66733,73569,kung fu,1268487261 +66736,1196,best of the originals,1138661281 +66736,2302,good grits,1138661231 +66736,5060,Old and funny,1138661213 +66750,4306,pixar,1425203226 +66750,109487,black hole,1425203285 +66750,109487,Christopher Nolan,1425203243 +66750,109487,science fiction,1425203255 +66750,119145,action,1429970162 +66750,119145,comedy,1429970162 +66750,119145,samuel l. jackson,1429970162 +66793,2006,Banderas,1153201699 +66797,260,Alternate reality,1442089502 +66797,260,good story,1442089490 +66887,2377,vampires,1206838869 +66887,69526,long,1298655989 +66888,778,United Kingdom,1202753829 +66888,4440,very good,1202753985 +66922,2302,show me,1137984446 +66928,261,loved it,1187848116 +66928,1022,enchanting. loved it!,1187848161 +66928,2023,amazing!,1187848099 +66928,2080,family fun,1187848138 +66928,4246,so funny and romantic!,1187848074 +66963,122886,Exploited,1453551993 +66963,122886,Fan service,1453551960 +66963,122886,Plot Recycling,1453551954 +66963,122886,unoriginal,1453551977 +66964,260,family film,1442265369 +66964,260,futuristic,1442265363 +66966,4159,not to be taken seriously,1188267261 +66993,260,classic,1439789401 +66993,260,sci-fi,1439789382 +66993,260,space,1439789394 +67023,858,italy,1446139116 +67023,3000,anime,1444932528 +67023,5618,supernatural,1444932565 +67023,132650,japanes,1447022693 +67023,132650,japanese,1447022698 +67048,380,action,1162969147 +67048,858,Oscar (Best Picture),1162970779 +67052,260,Alec Guinness,1437468575 +67052,260,Anthony Daniels,1437468601 +67052,260,Carrie Fisher,1437468084 +67052,260,David Prowse,1437468565 +67052,260,Denis Lawson,1437468651 +67052,260,George Lucas,1437468066 +67052,260,Harrison Ford,1437468118 +67052,260,James Earl Jones,1437468129 +67052,260,John Williams,1437468051 +67052,260,Kenny Baker,1437468610 +67052,260,Mark Hamill,1437468078 +67052,260,Peter Cushing,1437468148 +67052,260,Peter Mayhew,1437468624 +67052,260,Star Wars,1437468715 +67052,1196,Alec Guinness,1437469560 +67052,1196,Anthony Daniels,1437469518 +67052,1196,Billy Dee Williams,1437469497 +67052,1196,Carrie Fisher,1437469478 +67052,1196,David Prowse,1437469493 +67052,1196,Denis Lawson,1437469585 +67052,1196,Frank Oz,1437469556 +67052,1196,Harrison Ford,1437469469 +67052,1196,Irvin Kershner,1437469407 +67052,1196,James Earl Jones,1437469541 +67052,1196,Jeremy Bulloch,1437469576 +67052,1196,John Williams,1437469346 +67052,1196,Kenny Baker,1437469550 +67052,1196,Mark Hamill,1437469465 +67052,1196,Peter Mayhew,1437469530 +67052,1196,sequel,1437469428 +67052,1196,Star Wars,1437469357 +67052,2394,Brenda Chapman,1437468798 +67052,2687,Phil Collins,1437468841 +67052,3578,atmospheric,1437476491 +67052,3578,bad pacing,1437482902 +67052,3578,Connie Nielsen,1437473584 +67052,3578,Djimon Hounsou,1437476220 +67052,3578,Hans Zimmer,1437474710 +67052,3578,Joaquin Phoenix,1437480674 +67052,3578,lengthy,1437476489 +67052,3578,Lisa Gerrard,1437482846 +67052,3578,Richard Harris,1437474715 +67052,3578,Ridley Scott,1437480692 +67052,3578,Russell Crowe,1437474717 +67052,3578,strong score,1437476321 +67052,111443,John Favreau,1437469279 +67052,117529,Bryce Dallas Howard,1437470176 +67052,117529,Chris Pratt,1437470172 +67052,117529,Colin Trevorrow,1437470170 +67052,122886,Anthony Daniels,1437469100 +67052,122886,Carrie Fisher,1437469089 +67052,122886,Harrison Ford,1437469072 +67052,122886,John Boyega,1437469080 +67052,122886,Mark Hamill,1437469060 +67052,122886,Star Wars,1437469048 +67059,260,sci-fi,1438902101 +67059,260,space opera,1438902119 +67059,74624,Alejandro Amenábar,1438904954 +67059,98491,short,1438910169 +67064,260,EPIC,1431954312 +67064,260,great soundtrack,1431954337 +67064,296,good dialogue,1431954555 +67064,296,great soundtrack,1431954555 +67064,296,non-linear,1431954555 +67073,296,gangster,1427213194 +67073,296,organized crime,1427213194 +67073,296,original plot,1427213194 +67076,109487,good scenario,1427456813 +67076,109487,profetic,1427456813 +67076,109487,smart,1427456813 +67084,593,classic,1428276426 +67084,593,screenplay,1428276464 +67084,593,thriller,1428276411 +67086,172,cyberpunk,1219593757 +67086,198,cyberpunk,1219593729 +67086,541,cyberpunk,1219593823 +67086,2571,cyberpunk,1219593926 +67086,6934,cyberpunk,1219593953 +67095,260,classic,1435737433 +67095,260,robots,1435737446 +67095,260,sci-fi,1435737442 +67095,50872,cooking,1435742030 +67095,50872,food,1435742030 +67095,50872,paris,1435742030 +67095,96935,ghost,1451461728 +67095,96935,haunting,1451461862 +67095,96935,hong-kong,1451461796 +67095,96935,paranormal,1451461789 +67095,96935,romance,1451461714 +67095,96935,widow,1451461866 +67107,44,fighting,1368057398 +67107,95,action packed,1368057003 +67107,145,good action,1368056939 +67107,161,tom clancy,1368057320 +67107,377,action packed,1368057003 +67107,377,good action,1368056939 +67107,434,action packed,1368057003 +67107,442,good action,1368056939 +67107,454,tom clancy,1368057320 +67107,494,tom clancy,1368057320 +67107,733,action packed,1368057003 +67107,733,good action,1368056939 +67107,780,big budget,1368057360 +67107,1036,action packed,1368057003 +67107,1036,good action,1368056939 +67107,1101,cool,1368057469 +67107,1359,arnold,1368057034 +67107,1573,action packed,1368057003 +67107,1608,tom clancy,1368057320 +67107,1682,alone in the world,1368057341 +67107,1769,realistic action,1368057229 +67107,1876,big budget,1368057360 +67107,1909,series,1368057086 +67107,2000,good action,1368056939 +67107,2105,alone in the world,1368057341 +67107,2403,realistic action,1368057229 +67107,2640,super hero,1368057257 +67107,2640,superheroes,1368057057 +67107,3444,fight scenes,1368056965 +67107,3444,fighting,1368057398 +67107,3698,arnold,1368057034 +67107,3972,fighting,1368057399 +67107,3986,arnold,1368057034 +67107,4387,action,1368057445 +67107,4558,arnold,1368057034 +67107,4565,action,1368057445 +67107,4887,action,1368057445 +67107,4887,fight scenes,1368056965 +67107,4963,cool,1368057469 +67107,5010,realistic action,1368057229 +67107,5349,superheroes,1368057057 +67107,5882,treasure,1368057113 +67107,6157,dark hero,1368056887 +67107,6157,super hero,1368057257 +67107,6378,fast paced,1368056915 +67107,6534,super hero,1368057257 +67107,7004,arnold,1368057034 +67107,7373,dark hero,1368056887 +67107,7482,fight scenes,1368056965 +67107,7649,series,1368057086 +67107,8636,superheroes,1368057057 +67107,8983,amazing photography,1368057496 +67107,27611,series,1368057086 +67107,32596,treasure,1368057113 +67107,33158,action,1368057445 +67107,33437,fighting,1368057399 +67107,34072,amazing photography,1368057496 +67107,56921,series,1368057086 +67107,59315,superheroes,1368057056 +67107,60684,dark hero,1368056887 +67107,65982,action,1282953636 +67107,86880,treasure,1368057113 +67107,90746,treasure,1368057113 +67107,91529,dark hero,1368056887 +67107,95875,action,1368057445 +67108,2571,gamechanger,1442741482 +67108,4963,awesome heist,1442741511 +67124,79132,cartoon,1423477897 +67124,79132,computer,1423477902 +67124,79132,game,1423477899 +67142,260,classic sci-fi,1435110892 +67142,260,fantasy,1435110881 +67204,96923,dumb,1420580817 +67204,96923,horrible,1420580817 +67204,96923,unwatchable,1420580817 +67204,117374,family drama,1424634641 +67204,117374,sad,1424634641 +67204,117374,self-referential,1424634641 +67204,120803,comedy,1425665355 +67204,120803,silent,1425665355 +67204,120803,static,1425665355 +67254,260,special effects,1430560826 +67254,260,spectacular,1430560813 +67254,4226,mystery,1430732318 +67254,4226,paranoid,1430732325 +67254,79132,dreamlike,1430732355 +67254,79132,surreal,1430732357 +67254,92259,charming,1430732411 +67254,92259,optimistic,1430732411 +67254,92259,positive,1430732411 +67255,104861,rape,1438862179 +67259,50,unexpected,1246549596 +67259,1193,break human spirit,1246549690 +67259,44555,standup for beleifs,1246549867 +67261,260,darth vader,1442783013 +67261,260,sci-fi,1442782981 +67261,260,space epic,1442782992 +67300,3355,ancient books,1311776777 +67300,3355,devil,1311776774 +67300,3355,Mystery,1311776771 +67300,3355,rare books,1311776763 +67300,3355,Roman Polanski,1311776769 +67300,3355,satanism,1311776767 +67300,3355,story,1311776788 +67351,3949,drugs,1213403924 +67351,42725,marijuana,1213403915 +67351,58998,drugs,1212974078 +67362,260,adventure,1435898821 +67362,260,Cool,1435898816 +67362,953,christmas,1435900057 +67362,953,leaves you smiling,1435900057 +67362,953,love,1435900057 +67371,72378,the ending spoils this,1286037874 +67371,72378,the special effects,1286037874 +67371,72998,an old rehased story line,1286038001 +67371,72998,theeffects,1286038001 +67377,47,disturbing,1366546518 +67377,968,disturbing,1366547490 +67377,968,horror,1366547488 +67377,968,zombies,1366547486 +67377,1089,Quentin Tarantino,1366546286 +67377,1199,dark comedy,1366546673 +67377,1200,sci-fi,1366546790 +67377,1214,sci-fi,1366546304 +67377,1258,psychology,1366546902 +67377,1261,atmospheric,1366549154 +67377,1261,dark comedy,1366549150 +67377,1288,mockumentary,1366546620 +67377,1500,dark comedy,1366547751 +67377,1748,atmospheric,1366548490 +67377,2288,disturbing,1366546404 +67377,2502,satire,1366547248 +67377,2761,animation,1366547697 +67377,3114,animation,1366547707 +67377,3114,Pixar,1366547705 +67377,3476,disturbing,1366551030 +67377,4105,cult film,1366547453 +67377,4720,atmospheric,1366547547 +67377,4720,ghosts,1366547542 +67377,4720,twist ending,1366547545 +67377,4902,dark,1366550871 +67377,4902,ghosts,1366550875 +67377,5903,dystopia,1366547441 +67377,5903,sci-fi,1366547443 +67377,6502,atmospheric,1366549597 +67377,6502,post-apocalyptic,1366549592 +67377,6502,sci-fi,1366549599 +67377,7022,dystopia,1366549547 +67377,7022,survival,1366549558 +67377,7132,comedy,1366546456 +67377,7387,zombies,1366547432 +67377,8961,comic book,1366548346 +67377,8961,Pixar,1366548348 +67377,34405,space,1366546896 +67377,40226,awesome,1366553377 +67377,48043,atmospheric,1366551313 +67377,51662,atmospheric,1366547391 +67377,54259,atmospheric,1366549365 +67377,54259,fantasy,1366549368 +67377,55820,twist ending,1366546883 +67377,56339,fairy tale,1366549180 +67377,56339,ghosts,1366549182 +67377,57274,atmospheric,1366550858 +67377,60069,pixar,1366546475 +67377,60069,post-apocalyptic,1366546472 +67377,68237,psychology,1366546764 +67377,68237,Sci-fi,1366546761 +67377,69122,comedy,1366548478 +67377,71535,dark comedy,1366548424 +67377,71535,post-apocalyptic,1366548426 +67377,71535,zombies,1366548428 +67377,74228,atmospheric,1366552821 +67377,74228,Surreal,1366552818 +67377,74228,twist ending,1366552815 +67377,78499,animation,1366546537 +67377,78499,Pixar,1366546540 +67377,79702,stylized,1366547684 +67377,83134,satire,1366550922 +67377,88125,fantasy,1366547067 +67377,89745,comic book,1366546662 +67377,93840,dark comedy,1366549142 +67377,93840,satire,1366549145 +67409,745,Aardman,1242474069 +67409,953,fantasy,1242469114 +67409,1148,Aardman,1242474062 +67409,1210,adventure,1242468929 +67409,1210,Harrison Ford,1242468929 +67409,1210,Star wars,1242468929 +67409,1291,adventure,1242468798 +67409,1291,Harrison Ford,1242468764 +67409,3000,Hayao Miyazaki,1242468245 +67409,5690,death,1242471324 +67409,5690,sad,1242471324 +67409,5690,Studio Ghibli,1242471287 +67409,5690,tear jerker,1242471324 +67409,5690,war,1242471324 +67409,5971,anime,1242469600 +67409,5971,Studio Ghibli,1242469611 +67409,6350,adventure,1242471190 +67409,6350,Studio Ghibli,1242471147 +67409,7099,adventure,1242471208 +67409,7099,classic,1242471208 +67409,7099,strong female lead,1242471260 +67409,7099,Studio Ghibli,1242471175 +67409,8253,Hayao Miyazaki,1242471627 +67409,26662,coming of age,1242471244 +67409,26662,strong female lead,1242471244 +67409,26662,Studio Ghibli,1242471221 +67409,26776,adventure,1242469718 +67409,26776,animation,1242469718 +67409,26776,anime,1242469718 +67409,26776,anime. miyazaki,1242469718 +67409,26776,Studio Ghibli,1242469733 +67409,27731,Studio Ghibli,1242469961 +67409,31658,anime,1242469626 +67409,31658,Studio Ghibli,1242469571 +67409,37729,Tim Burton,1242470060 +67409,38038,Aardman,1242469777 +67409,38038,animation,1242469770 +67409,55872,music,1242468116 +67409,57504,Anime,1242469807 +67409,59784,action,1242469945 +67409,59784,comedy,1242469945 +67409,59784,Jack Black,1242469945 +67409,61160,action,1242470846 +67409,61160,adventure,1242470846 +67409,61160,animation,1242470846 +67409,61160,star wars,1242470846 +67409,65261,Hayao Miyazaki,1242470431 +67409,68319,Comic Book adaption,1242472812 +67409,68319,Marvel,1242472866 +67409,68319,superhero,1242472825 +67412,29,weird,1368392750 +67412,32,great ending,1368392893 +67412,47,great ending,1368392893 +67412,50,great acting,1368392794 +67412,50,storytelling,1368392443 +67412,70,cult classic,1368392828 +67412,111,loneliness,1368392493 +67412,150,dramatic,1368392674 +67412,169,family,1368392866 +67412,204,action,1368392692 +67412,232,relationships,1368392723 +67412,296,storytelling,1368392443 +67412,318,great acting,1368392793 +67412,356,classic,1422208132 +67412,356,good dialogue,1422208132 +67412,356,heartwarming,1422208132 +67412,455,family,1368392866 +67412,593,anthony hopkins,1423077378 +67412,593,based on a book,1423077378 +67412,593,great acting,1368392793 +67412,593,thriller,1423077378 +67412,804,relationships,1368392723 +67412,858,great acting,1368392793 +67412,1015,family,1368392866 +67412,1016,family,1368392866 +67412,1089,original,1368392296 +67412,1172,mentor,1368392360 +67412,1175,weird,1368392750 +67412,1199,weird,1368392750 +67412,1231,true story,1435611279 +67412,1255,cult classic,1368392828 +67412,1307,relationships,1368392723 +67412,1527,visually appealing,1368392780 +67412,1552,action,1368392692 +67412,1608,action,1368392692 +67412,1617,great acting,1368392793 +67412,1623,horror,1368392853 +67412,1639,relationships,1368392723 +67412,1704,mentor,1368392360 +67412,1722,action,1368392692 +67412,1748,cerebral,1368392949 +67412,1921,visually appealing,1368392780 +67412,1991,horror,1368392853 +67412,2076,weird,1368392750 +67412,2167,action,1368392692 +67412,2262,relationships,1368392723 +67412,2291,original,1368392296 +67412,2315,horror,1368392853 +67412,2321,stylized,1415568528 +67412,2420,mentor,1368392360 +67412,2460,horror,1368392853 +67412,2762,great ending,1368392893 +67412,2858,great acting,1368392793 +67412,3006,dramatic,1368392674 +67412,3018,horror,1368392853 +67412,3157,family,1368392866 +67412,3421,comedy,1368392426 +67412,3986,action,1368392692 +67412,4226,storytelling,1368392443 +67412,4725,horror,1368392853 +67412,4848,visually appealing,1368392780 +67412,4878,cerebral,1368392949 +67412,4878,original,1368392296 +67412,4878,weird,1368392750 +67412,5452,family,1368392866 +67412,5945,loneliness,1368392493 +67412,6188,comedy,1368392426 +67412,7000,idiotic,1435082859 +67412,8641,comedy,1368392426 +67412,8981,relationships,1368392723 +67412,27468,bad acting,1367789400 +67412,27468,poor dialogue,1367789400 +67412,32587,storytelling,1368392443 +67412,48043,dreamlike,1416172232 +67412,48043,visually appealing,1416172180 +67412,68358,sci-fi,1243285152 +67412,68358,time travel,1243285132 +67412,79132,cerebral,1368392949 +67412,93475,atmospheric,1368824575 +67412,93475,suspense,1368824575 +67412,93475,twist ending,1368824575 +67412,93563,stupid ending,1369598937 +67412,94466,dark,1451148132 +67412,94466,dystopia,1451148107 +67412,94466,technology,1451148128 +67412,94466,tv series,1451148144 +67412,94466,well constructed,1451148118 +67412,105211,dialogue,1393223380 +67412,105211,warm,1393223380 +67412,105213,akward,1394650360 +67412,106002,worse than the book,1394187731 +67412,106195,atmospheric,1397334797 +67412,106782,true story,1394187901 +67412,107406,illogical,1411335673 +67412,107406,poor plot,1411335673 +67412,107406,visually interesting--that's about it,1411335673 +67412,108190,bad writing,1407617502 +67412,108190,plot holes,1407617523 +67412,109374,cinematography,1398463798 +67412,109374,great dialogue,1398463798 +67412,109374,witty!,1398463798 +67412,113345,awful script,1436993280 +67412,113345,Deus ex machina,1436993329 +67412,113345,disappointing,1436993369 +67412,120799,Awful camera work,1444552431 +67412,120799,B-movie,1444552459 +67412,120799,inferior sequel,1444552399 +67427,2704,stunning,1447263441 +67440,296,hitman,1420842150 +67440,296,non-linear,1420842150 +67440,296,tarantino,1420842150 +67451,102445,action,1438464872 +67451,102445,j.j. abrams,1438464872 +67451,102445,sci-fi,1438464872 +67451,106920,Spike Jonze,1438464585 +67453,7361,surreal,1144709910 +67453,27803,emotional,1144709789 +67453,40583,shallow,1141652544 +67453,40629,cute,1141652115 +67453,40629,unnecessary,1141652115 +67470,1241,awesome zombie flick,1252858032 +67470,1241,cult film,1252858030 +67470,1241,lawn mower,1252858032 +67470,1252,Film Noir,1278984056 +67470,1252,Jack Nicholson,1278984065 +67470,1265,alternate universe,1253656335 +67470,1265,Bill Murray,1253656317 +67470,1265,surreal,1253656326 +67470,1265,time loop,1253656320 +67470,1590,horror,1306155414 +67470,1748,dystopia,1279244962 +67470,1748,Kiefer Sutherland,1279244968 +67470,1748,Post apocalyptic,1279244964 +67470,3706,acting and story,1278941106 +67470,3706,Mickey Rourke,1278941102 +67470,3706,Robert De Niro,1278941091 +67470,3706,Voodoo,1278941100 +67470,7827,Lucy Liu,1253734832 +67470,7827,predictable ending,1253734829 +67470,7827,scenery,1253734842 +67470,8784,cliché ending,1304453623 +67470,57274,"""found footage""",1279120631 +67470,57274,Handycam,1279120630 +67470,57274,virus,1279120635 +67470,57274,zombies,1279120645 +67470,64614,heartwarming,1249924976 +67470,64614,style,1249924999 +67470,67267,funny,1252857557 +67470,67267,sad,1252857573 +67470,68157,alternate history,1252857498 +67470,68157,Brad Pitt,1252857491 +67470,68157,Dead Nazis,1252857483 +67470,68157,dialogue,1252857484 +67470,68157,insults audience's intelligence,1252857498 +67470,68157,Quentin Tarantino,1252857495 +67470,68157,World War II,1252857488 +67470,71135,Antje Traue,1264791768 +67470,71135,post-apocalyptic,1264791771 +67470,71135,space,1264791777 +67470,73321,Christianity,1279067860 +67470,73321,Denzel Washington,1279067853 +67470,73321,post-apocalyptic,1279067855 +67470,73321,Stylistic,1279067877 +67470,73344,Tahar Rahim,1267413374 +67470,78218,Samuel L. Jackson,1278514835 +67470,78218,terrorism,1278514832 +67470,78218,torture,1278514825 +67470,90746,3D effects,1320590466 +67470,90746,Daniel Craig,1320590494 +67470,90746,Good adaptation,1320590515 +67470,90746,Repetitive,1320590483 +67470,90746,Simon Pegg,1320590498 +67476,260,Science Fiction,1434363653 +67476,3089,classic,1434363849 +67478,3052,Alan Rickman,1176540447 +67490,260,cult classic,1443687746 +67490,260,sci-fi,1443687748 +67544,7025,action,1401040340 +67544,7025,adventure,1401040343 +67544,7025,drama,1401040329 +67544,7025,history,1401040335 +67544,7025,horror,1401040320 +67544,7025,romance,1401040325 +67544,7025,slasher,1401040353 +67544,7025,spiders,1401040357 +67544,7025,STAR-CROSSED LOVERS,1401040375 +67544,7025,war,1401040332 +67545,589,Arnold Schwarzenegger,1241282560 +67545,589,James Cameron,1241282583 +67545,589,Linda Hamilton,1241282566 +67545,589,narrated,1241282588 +67545,589,script,1241282571 +67545,589,special effects,1241282576 +67545,6787,www.thestopbutton.com,1152675129 +67545,61401,Dan Lauria,1241282736 +67545,61401,Eva Mendes,1241282719 +67545,61401,Gabriel Macht,1241282709 +67545,61401,Samuel L. Jackson,1241282732 +67545,61401,Sarah Paulson,1241282716 +67545,61401,Scarlett Johansson,1241282729 +67545,67734,Jesse Eisenberg,1241282780 +67545,67734,Kristen Stewart,1241282767 +67545,67734,Ryan Reynolds,1241282775 +67545,68159,Helen Mirren,1241282934 +67545,116313,in real time,1431541839 +67545,116313,los angeles,1431541839 +67545,116313,romantic comedy,1431541839 +67576,3176,Gwyneth Paltrow,1301715429 +67576,3176,Jude Law,1301715415 +67576,3707,Nudity (Rear),1301284184 +67576,3707,Nudity (Topless),1301284182 +67576,3707,sexy food,1301284180 +67576,5984,BDSM,1301785972 +67576,5984,Blindfold,1301785976 +67576,5984,Bondage,1301785990 +67576,5984,Domination,1301785971 +67576,5984,Fetish,1301785980 +67576,5984,Gag,1301785974 +67576,5984,Spanked,1301785983 +67576,5984,Submission,1301785988 +67576,5984,Tied,1301785981 +67576,5984,Udo Kier,1301785978 +67576,7155,Nudity (Topless - Notable),1334013574 +67576,7155,Nudity (Topless),1334013570 +67576,39421,Nudity (Topless),1334013436 +67576,39421,porn,1334013433 +67576,48780,based on a book,1301715225 +67576,48780,twist ending,1301715231 +67576,53318,notable nudity,1301196436 +67576,53318,Nudity (Full Frontal),1301196425 +67586,4246,romantic comedy,1248860198 +67612,1967,David Bowie,1339725198 +67624,260,Science Fiction,1442174255 +67624,260,Star Wars,1442174263 +67630,2028,action,1445281454 +67630,2028,disturbing,1445281477 +67630,2028,drama,1445281453 +67630,2028,gritty,1445281462 +67630,2028,historical,1445281434 +67630,2028,history,1445281458 +67630,2028,horrors of war,1445281442 +67630,2028,realistic,1445281439 +67630,2028,violent,1445281478 +67630,2028,war,1445281432 +67630,4816,goofy,1445281937 +67630,4816,satire,1445281949 +67630,4816,stupid,1445281912 +67630,4816,vulgar,1445281902 +67630,4816,Will Ferrell,1445281927 +67630,4878,complicated,1445281296 +67630,4878,dark,1445281207 +67630,4878,jake gyllenhaal,1445281187 +67630,4878,thought-provoking,1445281152 +67630,4878,twist ending,1445281271 +67630,4878,weird,1445281158 +67630,8528,quoteable,1445282012 +67630,8528,slapstick,1445282005 +67630,8528,vulgar,1445281966 +67630,8641,stupid,1445281868 +67630,8641,vulgar,1445281863 +67630,8917,asanine,1445281827 +67630,8917,racist humor,1445281810 +67630,8917,stupid,1445281783 +67630,8917,vulgar,1445281818 +67630,69481,Iraq War,1445281397 +67630,69481,Jeremy Renner,1445281387 +67630,69481,realistic,1445281391 +67630,69481,thoughtful,1445281411 +67630,69481,war,1445281403 +67630,74789,Johnny Depp,1446819875 +67630,74789,Tim Burton,1446819884 +67630,79132,action,1445280897 +67630,79132,complicated,1445280886 +67630,79132,intellectual,1445280901 +67630,79132,Joseph Gordon-Levitt,1445280910 +67630,79132,multiple interpretations,1445280907 +67630,79132,psychological,1445280918 +67630,79132,thought-provoking,1445280883 +67630,79132,twist ending,1445280891 +67630,85414,intelligent,1445280968 +67630,85414,interesting,1445280978 +67630,85414,Jake Gyllenhaal,1445280957 +67630,85414,science fiction,1445280954 +67630,85414,suspense,1445280965 +67630,86332,awkward,1445282221 +67630,86332,funny,1445282225 +67630,86332,Kat Dennings,1445282208 +67630,86332,Marvel,1445282228 +67630,86332,predictable,1445282234 +67630,86332,quotable,1445282255 +67630,102125,action,1445282341 +67630,102125,funny,1445282345 +67630,102125,Gwyneth Paltrow,1445282331 +67630,102125,ludicrous,1445282369 +67630,102125,Marvel,1445282352 +67630,102125,predictable,1445282338 +67630,102125,Robert Downey Jr.,1445282326 +67630,102125,robots,1445282356 +67630,103384,Funny,1445306955 +67630,103384,gritty,1445306966 +67630,103384,Johnny Depp,1445306945 +67630,103384,Western,1445307077 +67630,106072,awkward,1445282292 +67630,106072,Kat Dennings,1445282271 +67630,106072,quotable,1445282299 +67630,106072,sidekick,1445282277 +67630,110730,artificial intelligence,1445306913 +67630,110730,Johnny Depp,1445306923 +67630,110730,Morgan Freeman,1445306920 +67630,111759,action,1445307250 +67630,111759,repeating day,1445307258 +67630,111759,sci-fi,1445307235 +67630,111759,science fiction,1445307269 +67630,111759,Tom Cruise,1445307242 +67630,112171,action,1445280220 +67630,112171,cliché,1445280716 +67630,112171,Denzel Washington,1445280719 +67630,112171,revenge,1445280705 +67630,112171,violent,1445280709 +67630,114060,character development,1445280581 +67630,114060,crime,1445280621 +67630,114060,plot twist,1445280632 +67630,114060,subtlety,1445280556 +67630,114060,Tom Hardy,1445280559 +67630,114060,violence,1445280614 +67630,115569,Character Development,1445281076 +67630,115569,dark,1445281036 +67630,115569,Jake Gyllenhaal,1445281033 +67630,115713,Drama,1445627478 +67630,115713,pseudo-profound,1445627427 +67630,117851,humorous,1445280675 +67630,117851,puns,1445280494 +67630,117851,quotable,1445280429 +67630,117851,talking animals,1445280346 +67630,130520,cute,1445280328 +67630,130520,happy,1445280471 +67630,135887,Animated,1445280369 +67630,135887,slapstick,1445280392 +67637,260,Animated film,1439699619 +67665,260,commercial,1443852911 +67665,260,space action,1443852880 +67681,260,action,1439142993 +67681,260,sci-fi,1439143010 +67681,260,space,1439143011 +67695,8528,See Zoolander,1151603231 +67700,260,Not my thing,1436235142 +67700,260,Overrated,1436235128 +67707,296,storytelling,1368405140 +67707,858,oscar (best directing),1368405178 +67707,1089,original,1368405074 +67707,1172,mentor,1368405088 +67707,1242,Oscar (Best Cinematography),1319687283 +67707,1952,loneliness,1368405162 +67707,2291,original,1368405074 +67707,3105,dramatic,1368405186 +67707,3114,original,1368405074 +67707,3986,action,1368405201 +67707,5995,dramatic,1368405186 +67707,7327,criterion,1368405151 +67707,8779,just so so !,1323310238 +67708,260,classic,1452481406 +67708,260,sci-fi,1452481401 +67708,260,Star Wars,1452481404 +67708,141890,Africa,1452481170 +67708,141890,Child Soldiers,1452481172 +67720,5881,George Clooney,1341257790 +67720,5881,philosophy,1341257795 +67720,5881,sci-fi,1341257788 +67720,5881,space,1341257780 +67720,5881,Steven Soderbergh,1341257785 +67725,3104,ex-cop,1230910356 +67725,4992,Hugh Jackman,1241281885 +67725,4992,Meg Ryan,1241281887 +67725,4992,time travel,1241281882 +67725,49278,time travel,1230999264 +67725,68159,lame ending,1243695726 +67725,68159,Russell Crowe,1243695735 +67737,103,Forgettable,1173989453 +67737,246,Basketball,1174003721 +67737,246,Chicago,1174003816 +67737,246,Poverty,1174003816 +67737,248,Sinbad,1173943795 +67737,393,Horrid Cast,1173927114 +67737,393,Kylie Minogue,1173927122 +67737,424,Shaquille O'Neal,1173992598 +67737,460,Ted Danson,1173990807 +67737,470,Bernie Mac,1173927227 +67737,489,Ted Danson,1173944121 +67737,504,Ray Liotta,1173989715 +67737,667,Sucks big time!,1173989802 +67737,692,Mario Van Peebles,1173990738 +67737,700,Owatonna MN,1173989314 +67737,765,Francis Ford Coppola,1173817608 +67737,885,Acid Movie,1173992518 +67737,885,Gérard Depardieu,1173992518 +67737,885,Haley Joel Osment,1173992518 +67737,885,Whoopi Goldberg,1173992518 +67737,968,George A. Romero,1174542589 +67737,968,Race issues,1174542589 +67737,1298,Acid movie that sucks,1174005740 +67737,1599,garbage,1173992741 +67737,1599,Horrible,1173992741 +67737,1599,Richard Roundtree,1173992741 +67737,1599,Shaquille O'Neal,1173992741 +67737,1599,superman spinoff,1173992741 +67737,1606,Sorbo,1173989247 +67737,1739,Hilariously Bad,1173992399 +67737,1739,Hulk Hogan,1173992399 +67737,1739,Loni Anderson,1173992399 +67737,1744,Firefighters,1173992299 +67737,1744,Howie Long,1173992299 +67737,1839,Vin Diesel,1173991930 +67737,1984,Ruined the franchise,1173988240 +67737,1984,WTF,1173988240 +67737,2084,Christian Bale,1173988253 +67737,2152,Not again!,1173990485 +67737,2275,Retarded,1173990758 +67737,2451,Demons,1173990306 +67737,2451,Eye in Hand,1173990306 +67737,2451,Hell,1173990306 +67737,2451,Metal,1173990306 +67737,2451,Stephen Dorff,1173990306 +67737,2642,Richard Pryor,1173817486 +67737,2900,George A. Romero,1173988012 +67737,2955,Ernie Hudson,1173818743 +67737,3029,Billy Dee Williams,1173988362 +67737,3029,Rutger Hauer,1173988362 +67737,3029,Stallone,1173988362 +67737,3432,Badass,1174247278 +67737,3432,Charles Bronson,1174247299 +67737,3432,Gangs,1174247278 +67737,3432,Rocket launcher,1174247278 +67737,3669,Camp,1173992862 +67737,3669,Cheese,1173992861 +67737,3669,Horror,1173992862 +67737,3669,John Ritter,1173992862 +67737,3669,Television Industry,1173992862 +67737,3680,L.A.,1174631046 +67737,3680,Megadeth,1174631046 +67737,3680,Metal,1174631046 +67737,3680,Vodka binge,1174631046 +67737,3680,W.A.S.P.,1174631046 +67737,3710,Action,1173988184 +67737,3710,Albert Leong,1173988184 +67737,3710,Carl Weathers,1173988184 +67737,3710,Craig T. Nelson,1173988184 +67737,3710,Detroit,1173988184 +67737,3710,Front Flip Over Taxi,1173988184 +67737,3710,Police,1173988184 +67737,3710,Sharon Stone,1173988184 +67737,3710,Vanity,1173988184 +67737,3742,1905 Revolution,1174003947 +67737,3742,Baby Carriage odown the steps,1174003947 +67737,3742,Mother Russia,1174003947 +67737,3805,George A. Romero,1174542507 +67737,3961,Toilet Monster,1173990097 +67737,4089,Cheech Marin,1173989511 +67737,4089,Daniel Stern,1173989511 +67737,4089,Deportation,1173989557 +67737,4089,Mexico,1173989557 +67737,4089,Tacos and Beer,1173989557 +67737,4089,Whas Happening!,1173989557 +67737,4126,Brett Easton Ellis,1173989158 +67737,4133,Dolph Lundgren,1173944226 +67737,4441,Disgrace,1173828039 +67737,4444,Chuck norris,1173818276 +67737,4574,Rutger Hauer,1173992450 +67737,4630,Hulk,1174247512 +67737,4630,Hulk Hogan,1174247512 +67737,4630,Pro Wrestling,1174247512 +67737,4630,Television Industry,1174247512 +67737,4630,"Tiny ""Zeus"" Lister",1174247512 +67737,4636,Boring,1173989675 +67737,4636,Crap,1173989675 +67737,4636,Dolph Lundgren,1173989675 +67737,4636,Garbage,1173989675 +67737,4636,Horrible,1173989675 +67737,4636,Poorly made,1173989675 +67737,4636,Stupid,1173989675 +67737,4636,Sucks,1173989675 +67737,4683,I love the powerglove,1173991869 +67737,4714,Clint Eastwood,1174336556 +67737,4714,Friggin Orangutan,1174336556 +67737,4714,Street Fighting,1174336556 +67737,5382,Clint Eastwood,1174335872 +67737,5382,Friggin Orangutan,1174335872 +67737,5382,Incredible,1174335872 +67737,5382,Street Fighting,1174335872 +67737,5385,The Band,1174004231 +67737,5443,No Please god no!,1173993677 +67737,5454,Wayans,1173990186 +67737,5694,Sylvester Stallone,1173988402 +67737,5735,Stupid,1174631223 +67737,5735,THE CHAIR!!!!!!!,1174631223 +67737,5810,Purple Rain Rip-off,1174695423 +67737,6005,Stupid hick crap,1174630928 +67737,6319,Gérard Depardieu,1173990462 +67737,6483,Guarini is a goon,1173989996 +67737,6483,hard to watch,1173989996 +67737,6483,Hilarious audio commentary,1173989996 +67737,6483,Homosexual,1173989996 +67737,6483,stupid,1173989996 +67737,6539,WAY too long,1174719028 +67737,6625,Beer: The Breakfast of champions,1173992646 +67737,6625,Rollerblading with fireworks,1173992646 +67737,6705,Super Funny,1173992691 +67737,6731,George A. Romero,1174542611 +67737,6774,David Cronnenberg,1173817789 +67737,6796,Ice Cube,1174004028 +67737,6872,Uwe Boll Sucks,1173989731 +67737,6995,Arnold Schwarzenegger,1174247373 +67737,6995,Cheese,1174247373 +67737,7036,Penis in background,1174109712 +67737,7225,Docu-drama,1174631177 +67737,7225,Funniest movie ever made,1173990367 +67737,7259,Camp,1173992583 +67737,7259,Cheese,1173992583 +67737,7259,Lame,1173992583 +67737,7259,Terrible,1173992583 +67737,7280,Barrel Throwing,1173827727 +67737,7310,Weak,1173990325 +67737,7387,George A. Romero,1174542540 +67737,7492,Christianity,1174694984 +67737,7492,George A. Romero,1174542293 +67737,7492,John Amplas,1174542293 +67737,7492,Legend,1174542293 +67737,7492,Suspenseful,1174542293 +67737,7492,Tom Savini,1174542293 +67737,7492,Vampires,1174542293 +67737,7704,Chuck Norris,1173993153 +67737,7892,Crotch Ripped Off,1173927144 +67737,7932,DJ Shadow,1174630963 +67737,7932,Homeless,1174630957 +67737,7991,David Carradine,1174695056 +67737,7991,Machine Gun Joe,1174695065 +67737,7991,Sylvester Stallone,1174695045 +67737,8225,Tom Savini,1174542567 +67737,8642,"""No high heels on the hardwood floors!""",1174004701 +67737,8643,Hilary Duff,1173989883 +67737,8849,Amazing Soundtrack,1174004779 +67737,8849,black and white,1174004779 +67737,8849,Prince,1174004779 +67737,8849,Stupidly funny,1174004779 +67737,8946,Really Bad,1173992547 +67737,8978,Botox,1173989930 +67737,26513,Sucks big time!,1173991520 +67737,26828,Horribly Awesome,1174348941 +67737,26828,Hulk Hogan,1174348941 +67737,26828,Mother Love,1174348941 +67737,26828,Thanatos!,1174348941 +67737,27801,Good stunts. . . Crappy movie,1174719007 +67737,27801,Poop,1173829273 +67737,31221,Dogshit,1175333112 +67737,31422,Hell naw,1173993492 +67737,31422,Ice Cube,1173993492 +67737,31424,Uwe Boll Sucks,1173990351 +67737,31867,This is my happy face,1173993428 +67737,32022,I heel toe on Uday's house,1174004539 +67737,32022,misguided,1173993452 +67737,32022,no point,1173993452 +67737,33685,Why?,1174004675 +67737,33966,Bobo,1174348790 +67737,33966,Burt Reynolds,1174348790 +67737,33966,Children,1174348790 +67737,33966,Diamond Dallas Page,1174348790 +67737,33966,Henry Winkler,1174348790 +67737,33966,I'm Devon Butler!,1174348790 +67737,34542,Funny as hell,1174631071 +67737,42721,Uwe Boll Sucks,1173989109 +67737,44788,No arguement,1174631198 +67737,46347,Black Metal,1174004663 +67737,46347,Dio,1174004663 +67737,46530,Sucks big time!,1174630873 +67737,51662,Too much slow motion!,1174004516 +67755,6957,absolutely hilarious dark comedy,1147399038 +67759,2324,humanism,1447656557 +67759,2324,World War II,1447656561 +67759,80586,love,1447656504 +67759,96821,music,1447656526 +67759,96821,suicide,1447656531 +67759,96821,youth,1447656521 +67759,112290,childhood,1447656494 +67759,112290,growing up,1447656487 +67759,112290,life,1447656480 +67759,112290,youth,1447656478 +67776,356,gay,1421155204 +67776,356,queer mystery,1421155204 +67776,356,transgender folklore,1421155204 +67792,1509,lesbian,1227108144 +67792,1611,River Phoenix,1227114881 +67792,2875,Jodie Foster,1227108909 +67792,4537,River Phoenix,1227109660 +67801,110,mel gibson,1440790668 +67801,260,Disappointing Fight between Obi Wan and Vader,1440789374 +67801,260,great universe,1440789363 +67801,318,twist ending,1440790252 +67801,628,acting debut,1440790308 +67801,628,edward norton,1440789954 +67801,628,Edward Norton unbelievably good,1440790324 +67801,628,psychology,1440789951 +67801,628,twist ending,1440789952 +67801,1193,jack nicholson,1442257420 +67801,1193,mental illness,1442257422 +67801,1197,fantasy,1442721820 +67801,1197,funny,1442721823 +67801,1197,imdb top 250,1442721833 +67801,1197,medieval,1442721842 +67801,1197,Quirky,1442721827 +67801,1197,revenge,1442721840 +67801,1197,romance,1442721844 +67801,1197,sword fight,1442721826 +67801,1197,torture,1442721831 +67801,2959,Edward Norton,1440789933 +67801,2959,psychological,1440789942 +67801,2959,social commentary,1440789938 +67801,2959,twist ending,1440789937 +67801,3535,Christian Bale,1440789996 +67801,3535,dark comedy,1440789998 +67801,3535,funny,1440790000 +67801,3535,psychology,1440789987 +67801,4878,jake gyllenhaal,1440890433 +67801,4878,mental illness,1440890422 +67801,4878,quirky,1440890428 +67801,4878,sci-fi,1440890424 +67801,4878,thought-provoking,1440890419 +67801,4878,time travel,1440890417 +67801,4995,bullshit,1442275037 +67801,4995,Did not happen like this,1442275035 +67801,4995,False story,1442275024 +67801,5618,Oscar (Best Animated Feature),1441149324 +67801,5954,Edward Norton,1441042271 +67801,5954,powerful ending,1441042269 +67801,38061,black comedy,1450240516 +67801,38061,clever,1450240518 +67801,38061,dark comedy,1450240522 +67801,38061,Film Noir,1450240525 +67801,38061,funny,1450240519 +67801,38061,Michelle Monaghan,1450240539 +67801,38061,Nudity (Topless),1450240529 +67801,38061,plot twist,1450240549 +67801,38061,witty,1450240514 +67801,53318,insomnia,1442276223 +67801,53318,quirky,1442276228 +67801,69757,humor,1440790099 +67801,69757,quirky,1440790088 +67801,72011,loneliness,1440790120 +67801,72011,thoughtful,1440790125 +67801,72171,parody,1441292941 +67801,74754,Tommy Wiseau,1441042397 +67801,74754,unintentional comedy,1441042394 +67801,81932,Christian Bale,1441292976 +67801,81932,true story,1441292979 +67801,92259,friendship,1440790073 +67801,92259,funny,1440790377 +67801,106920,artificial intelligence,1442257315 +67801,106920,psychology,1442257318 +67801,106920,quirky,1442257321 +67801,106920,Spike Jonze,1442257369 +67801,106920,thought-provoking,1442257317 +67801,107348,stupid but funny,1449797910 +67801,108729,good acting,1442366515 +67801,108729,Jake Gyllenhaal,1442366507 +67801,108729,mindfuck,1442366508 +67801,108729,nudity (topless),1442366521 +67801,108729,Psychological,1442366505 +67801,108729,tense,1442366512 +67801,109848,atmospheric,1442376631 +67801,109848,nudity (full frontal),1442376626 +67801,109848,Scarlett Johansson,1442376629 +67801,111384,indie,1442257472 +67801,112290,12 years in the making,1441293247 +67801,113829,alternate reality,1442534338 +67801,119856,"""it wasn't expecially large, but it felt hard""",1442275420 +67801,119856,"it wasn't especially large, but it felt hard",1442275476 +67801,129514,brutally honest,1441340410 +67801,129514,funny,1441340413 +67801,129514,George Carlin,1441340422 +67801,129514,social commentary,1441340414 +67801,134130,matt damon,1446853569 +67801,134130,Space,1446853571 +67801,139644,dialogue,1450830276 +67804,1196,sci-fi,1431538391 +67804,1275,sword fight,1431538414 +67804,7153,fantasy,1431538370 +67804,7153,fantasy world,1431538378 +67804,7153,wizards,1431538376 +67819,260,classic sci-fi,1440439337 +67819,260,space action,1440439346 +67834,22,thriller,1368563143 +67834,31,inspirational,1368562859 +67834,111,mental illness,1368562892 +67834,161,tense,1368563122 +67834,296,brutality,1420667797 +67834,296,cult film,1420667797 +67834,296,gangster,1420667797 +67834,440,politics,1368563089 +67834,832,tense,1368563121 +67834,832,thriller,1368563143 +67834,861,police,1368563074 +67834,886,Adam Sandler,1233303020 +67834,903,imdb top 250,1233311140 +67834,1089,violent,1368563159 +67834,1095,ensemble cast,1368562748 +67834,1175,dark,1368562708 +67834,1206,violent,1368563159 +67834,1214,tense,1368563121 +67834,1228,oscar (best cinematography),1368562966 +67834,1262,ensemble cast,1368562748 +67834,1302,father-son relationship,1368562785 +67834,1357,father-son relationship,1368562785 +67834,1390,politics,1368563089 +67834,1396,ensemble cast,1368562748 +67834,1464,mystery,1368562912 +67834,1589,ensemble cast,1368562748 +67834,1610,thriller,1368563143 +67834,1713,predictable,1388513467 +67834,1950,police,1368563074 +67834,1954,oscar (best cinematography),1368562966 +67834,2024,christianity,1368562645 +67834,2026,high school,1368562831 +67834,2058,tense,1368563122 +67834,2076,dark,1368562709 +67834,2082,inspirational,1368562858 +67834,2166,psychological,1389294096 +67834,2166,surprise ending,1389294096 +67834,2324,Original Dramatic Score),1226005123 +67834,2324,Oscar (Best Actor in a Leading Role),1226005123 +67834,2324,Oscar (Best Foreign Language Film),1226005123 +67834,2324,Oscar (Best Music,1226005123 +67834,2324,Roberto Benigni,1226005057 +67834,2353,thriller,1368563143 +67834,2383,police,1368563074 +67834,2500,high school,1368562831 +67834,2734,mental illness,1368562892 +67834,2882,nazis,1368562929 +67834,2888,high school,1368562831 +67834,2959,violent,1368563159 +67834,3044,mystery,1368562911 +67834,3178,inspirational,1368562859 +67834,3256,tense,1368563122 +67834,3256,thriller,1368563143 +67834,3468,black and white,1368562576 +67834,3519,nazis,1368562929 +67834,3683,dark,1368562708 +67834,3911,awkward,1388009191 +67834,3911,nerds,1388009204 +67834,3980,inspirational,1368562859 +67834,4019,inspirational,1368562858 +67834,4034,oscar (best cinematography),1368562966 +67834,4880,father-son relationship,1326564453 +67834,5107,nazis,1368562929 +67834,5363,high school,1368562831 +67834,5445,Tom Cruise,1226005276 +67834,5502,Mel Gibson,1230848833 +67834,5785,stupid,1368563106 +67834,5791,Edward Norton,1226005905 +67834,5873,history,1285527880 +67834,5873,Unexpected Ending,1285527880 +67834,5989,father-son relationship,1368562785 +67834,6323,mystery,1368562911 +67834,6378,Edward Norton,1226005811 +67834,6808,nazis,1368562929 +67834,7153,oscar (best cinematography),1368562966 +67834,7160,mental illness,1368562892 +67834,7377,soundtrack,1336496395 +67834,8784,soundtrack,1225396258 +67834,8784,Zach Braff,1225396251 +67834,33660,inspirational,1368562859 +67834,36539,comedy,1233311938 +67834,36539,Paul Reiser,1233311938 +67834,36539,Peter Falk,1233311929 +67834,40681,bad ending,1332189229 +67834,41136,atmospheric,1393855402 +67834,41136,brutal,1393855401 +67834,41136,vengeance,1393855402 +67834,45525,Bill Murray,1226005450 +67834,48412,emotional,1262721050 +67834,48412,Kevin Costner,1262721050 +67834,48744,homosexuality,1341747547 +67834,48744,sexuality,1341747547 +67834,50011,dark,1424219662 +67834,50011,dystopia,1424219708 +67834,50011,Funny,1424219650 +67834,50011,metaphorical,1424219704 +67834,50011,open end,1424219690 +67834,50011,strange,1424219657 +67834,51080,predictable,1359390307 +67834,51080,unrealistic,1359390306 +67834,53769,atmospheric,1246758243 +67834,53769,bittersweet,1246758240 +67834,53769,loneliness,1246758235 +67834,54259,fairy tale,1225396109 +67834,55247,great soundtrack,1233312138 +67834,55280,community,1335733709 +67834,55280,love,1335733709 +67834,55280,psychology,1335733709 +67834,55290,police,1368563074 +67834,56367,funny,1325988294 +67834,56367,growing up,1325988294 +67834,56367,inimitable,1325988294 +67834,56367,pregnancy,1325988294 +67834,58103,unrealistic time lapse,1330152178 +67834,59429,nudity (topless - notable),1368562947 +67834,62792,Edward Norton,1233242721 +67834,63033,psychological,1334861951 +67834,64622,nazis,1368562929 +67834,66665,Alexi Murdoch,1255903541 +67834,66665,great soundtrack,1255903570 +67834,66665,home,1255903541 +67834,66665,humorous,1255903541 +67834,66665,philosophical,1255903541 +67834,66665,searching,1255903541 +67834,68954,father-son relationship,1368562785 +67834,73290,simple plot,1394483467 +67834,74458,mystery,1368562912 +67834,74944,depressing,1381566873 +67834,74944,gangsters,1381566873 +67834,75985,brutal,1304161569 +67834,81819,cancer,1341168193 +67834,81819,ghosts,1341168193 +67834,81819,paranormal,1341168193 +67834,85414,twist ending,1327575422 +67834,85881,honesty,1406183335 +67834,85881,money,1406183335 +67834,88163,surprising,1334645631 +67834,88163,unpredictable,1334645630 +67834,89492,baseball,1328272732 +67834,89492,true story,1328272746 +67834,89804,loyalty,1343368967 +67834,89804,Ryan Gosling,1343369010 +67834,89804,trust,1343368923 +67834,89804,twists & turns,1343368967 +67834,90249,ending,1328000708 +67834,90249,predictable,1328000685 +67834,90430,psychology,1328471928 +67834,90430,real life,1328471927 +67834,93363,funny moments,1342786506 +67834,94959,Bruce Willis,1357767442 +67834,94959,funny moments,1357767442 +67834,94959,growing up,1357767474 +67834,94959,romantic,1357767442 +67834,95875,double agents,1358576868 +67834,95875,hot girls!,1358576868 +67834,96821,depression,1380601373 +67834,96821,music,1380601393 +67834,96821,poetic,1380601373 +67834,96821,RAPE & SEXUAL ABUSE,1380601373 +67834,97752,characters,1365103835 +67834,97752,complicated,1365103835 +67834,97921,humorous,1379833973 +67834,97921,Straightforward,1379833973 +67834,99114,funny scenes,1385794705 +67834,99114,slavery,1385794704 +67834,101142,family,1381955674 +67834,101142,hope,1381955674 +67834,101142,strengths,1381955674 +67834,101142,team spirit,1381955702 +67834,102993,coming of age,1381411681 +67834,103339,tense,1389249967 +67834,103339,unrealistic,1389249967 +67834,104841,George Clooney,1399490879 +67834,104841,Sandra Bullock,1399490879 +67834,106918,scenic,1394260003 +67834,106918,soundtrack,1394260003 +67834,109042,Doom Metal,1393710361 +67834,109487,artificial intelligence,1430419537 +67834,109487,Christopher Nolan,1430419523 +67834,109487,interesting ideea,1430419553 +67834,109487,sentimental,1430419534 +67834,109487,sounds,1430419562 +67834,109487,space,1430419526 +67834,109487,thought-provoking,1430419548 +67834,109487,time-travel,1430419529 +67834,111622,bittersweet,1423344644 +67834,111622,music,1423344640 +67834,111622,new york,1423344647 +67834,111622,soundtrack,1423344650 +67834,112171,brutality,1420755640 +67834,112171,invincible,1420755618 +67834,112171,revenge,1420755624 +67834,112171,russian mafia,1420755612 +67834,112171,violent,1420755651 +67834,115713,artificial intelligence,1445892192 +67834,115713,philosophical,1445892217 +67834,115713,robots,1445892208 +67834,115713,sci-fi,1445892195 +67834,124859,risk taker,1428161278 +67834,124859,suspenseful,1428161281 +67854,260,oldie but goodie,1439855817 +67854,260,sci-fi,1439855798 +67866,106450,anti hero protagonist,1384960706 +67874,110036,horror,1438129795 +67874,110036,surreal,1438129795 +67874,110036,vampires,1438129795 +67874,130040,hong kong,1437501963 +67874,130040,horror,1437501963 +67874,130040,surreal,1437501963 +67874,134853,animation,1436864293 +67874,134853,comedy,1436864293 +67874,134853,drama,1436864293 +67879,318,best-movie,1422863563 +67879,318,hope,1422863566 +67879,318,prison,1422958465 +67879,318,stephan king,1422863545 +67879,1732,sarcasm,1422959302 +67879,2028,war,1422958715 +67879,7502,war,1422958565 +67879,49276,prison,1422958519 +67879,102407,hope,1422959520 +67879,102407,quotes,1422959497 +67888,260,cult classic,1434405308 +67892,4993,gandalf,1430462794 +67892,4993,gollum,1430462794 +67892,4993,hobbits,1430462794 +67892,7143,Honor,1430463411 +67892,7143,martial arts,1430463399 +67892,94677,Political comedy,1430463353 +67892,94677,political satire,1430463373 +67892,127146,Nirvana Rockstar,1430463129 +67892,127146,Rockstar true story,1430463147 +67892,130492,Ayushmann Khurana,1430463050 +67892,130492,Marriage comedy,1430463081 +67892,132950,mumbai underworld,1430463684 +67892,132952,Patriotism,1430463749 +67892,132954,autobiography of a yogi,1430464055 +67892,132954,kriya yoga,1430464079 +67892,132954,kriyayoga,1430464065 +67892,132954,yogananda,1430464038 +67926,1673,Porn industry,1376169653 +67926,1921,black and white,1379414307 +67926,1921,mathematics,1379414319 +67926,1921,psychology,1379414324 +67926,1921,visually appealing,1379414327 +67926,2959,action,1379414429 +67926,2959,adventure,1379414431 +67926,2959,based on a book,1379414411 +67926,2959,philosophy,1379414414 +67926,2959,psychological,1379414416 +67926,2959,psychology,1379414422 +67926,2959,social commentary,1379414423 +67926,2959,violence,1379414404 +67926,4226,dark,1379414450 +67926,4226,dreamlike,1379414458 +67926,4226,great ending,1379414490 +67926,4226,narrated,1379414469 +67926,4226,nonlinear,1379414452 +67926,4226,plot twist,1379414492 +67926,4226,stylized,1379414462 +67926,4226,tense,1379414467 +67926,4878,complicated,1379414378 +67926,4878,dreamlike,1379414381 +67926,4878,mental illness,1379414383 +67926,4878,philosophy,1379414385 +67926,4878,satire,1379414391 +67926,4878,sci-fi,1379414367 +67926,4878,social commentary,1379414387 +67926,4878,surreal,1379414393 +67926,4878,time travel,1379414364 +67926,4878,twist ending,1379414371 +67926,8914,complicated plot,1379414233 +67926,8914,debüt,1379414288 +67926,8914,directorial debut,1379414268 +67926,8914,engineers,1379414291 +67926,8914,intelligent,1379414236 +67926,8914,low budget,1379414261 +67926,8914,mindfuck,1379414238 +67926,8914,thought-provoking,1379414248 +67926,8950,atmospheric,1379414530 +67926,8950,dark,1379414531 +67926,8950,powerful ending,1379414516 +67926,8950,psychological,1379414518 +67926,8950,psychology,1379414528 +67926,8950,schizophrenia,1379414541 +67926,8950,twist ending,1379414536 +67926,48780,atmospheric,1379414565 +67926,48780,based on a book,1379414566 +67926,48780,complicated,1379414581 +67926,48780,magic,1379414584 +67926,48780,nonlinear,1379414588 +67926,48780,revenge,1379414593 +67926,48780,romance,1379414596 +67926,48780,twist ending,1379414603 +67926,79132,action,1379414614 +67926,79132,alternate reality,1379414616 +67926,79132,drama,1379414618 +67926,79132,dreamlike,1379414620 +67926,79132,ensemble cast,1379414622 +67926,79132,great soundtrack,1379414624 +67926,79132,heist,1379414626 +67926,79132,imdb top 250,1379414629 +67926,79132,music,1379414631 +67926,79132,philosophy,1379414636 +67926,79132,plot twist,1379414641 +67926,79132,psychological,1379414644 +67926,79132,sci-fi,1379414647 +67926,79132,surreal,1379414649 +67926,79132,suspense,1379414651 +67926,79132,visually appealing,1379414653 +67926,85414,action,1379414685 +67926,85414,happy ending,1379414688 +67926,85414,Jake Gyllenhaal,1379414679 +67926,85414,military,1379414692 +67926,85414,romance,1379414700 +67926,85414,suspense,1379414702 +67926,85414,terrorism,1379414705 +67926,85414,time loop,1379414707 +67926,85414,time travel,1379414709 +67929,1193,drama,1430775507 +67929,1193,mental illness,1430775516 +67929,1193,psychology,1430775527 +67929,1193,social satire,1430775520 +67929,1258,disturbing,1430777585 +67929,1258,dreamlike,1430777599 +67929,1258,jack nicholson,1430777580 +67929,1258,suspense,1430777592 +67929,7371,cult film,1430777520 +67929,7371,philosophical,1430777526 +67929,7371,social control,1430777532 +67929,86320,claustrophobic,1430777958 +67929,86320,introspective,1430777976 +67929,86320,Magic realism,1430777965 +67929,86320,photography,1430777970 +67945,22,thriller,1368343054 +67945,29,dark,1368342094 +67945,111,dark,1368342094 +67945,161,tense,1368343001 +67945,216,stupid,1368342876 +67945,440,politics,1368342815 +67945,474,tense,1368343001 +67945,519,franchise,1368342205 +67945,555,violent,1368343090 +67945,760,World War II,1165521029 +67945,832,tense,1368343001 +67945,832,thriller,1368343054 +67945,861,police,1368342662 +67945,913,black and white,1368341949 +67945,922,black and white,1368341949 +67945,946,nazis,1368342490 +67945,1089,violent,1368343091 +67945,1104,mental illness,1368342334 +67945,1206,violent,1368343090 +67945,1214,tense,1368343001 +67945,1228,oscar (best cinematography),1368342535 +67945,1248,black and white,1368341949 +67945,1266,oscar (best cinematography),1368342535 +67945,1390,politics,1368342815 +67945,1464,mystery,1368342423 +67945,1597,thriller,1368343054 +67945,1610,thriller,1368343054 +67945,1945,black and white,1368341948 +67945,1950,police,1368342662 +67945,1953,oscar (best cinematography),1368342535 +67945,2024,christianity,1368342045 +67945,2026,high school,1368342229 +67945,2058,tense,1368343001 +67945,2076,dark,1368342094 +67945,2335,stupid,1368342876 +67945,2353,thriller,1368343054 +67945,2383,police,1368342662 +67945,2490,violent,1368343090 +67945,2500,high school,1368342230 +67945,2882,nazis,1368342490 +67945,2888,high school,1368342229 +67945,2919,politics,1368342815 +67945,2959,violent,1368343091 +67945,2985,violent,1368343091 +67945,2997,science fiction,1318414919 +67945,3146,stupid,1368342876 +67945,3256,tense,1368343001 +67945,3256,thriller,1368343054 +67945,3362,police,1368342662 +67945,3435,black and white,1368341948 +67945,3440,franchise,1368342205 +67945,3519,nazis,1368342490 +67945,3683,dark,1368342094 +67945,4388,stupid,1368342876 +67945,4865,dark,1368342094 +67945,4865,mystery,1368342423 +67945,4974,stupid,1368342876 +67945,5106,high school,1368342230 +67945,5107,nazis,1368342490 +67945,5363,high school,1368342229 +67945,5785,stupid,1368342876 +67945,5989,father-son relationship,1368342185 +67945,6537,franchise,1368342205 +67945,6808,nazis,1368342490 +67945,7160,mental illness,1368342334 +67945,8781,politics,1368342815 +67945,33660,inspirational,1368342305 +67945,51540,police,1368342662 +67945,53121,franchise,1368342205 +67945,55290,police,1368342662 +67945,55908,christianity,1368342045 +67945,59429,nudity (topless - notable),1368342508 +67945,63113,franchise,1368342204 +67945,64622,nazis,1368342490 +67945,74458,mystery,1368342423 +67945,112623,action,1415567193 +67945,112623,apocalyptic,1415567189 +67945,112623,sci-fi,1415567185 +67945,113216,action,1407451810 +67945,113216,crime,1407451814 +67945,113216,korean,1407451808 +67945,113216,thriller,1407451825 +67951,110,Mel Gibson,1140581615 +67951,208,better than everybody thinks,1140581507 +67951,303,Russell Crowe,1144551654 +67951,2231,Edward Norton,1159197891 +67951,2231,poker,1140581718 +67951,2301,Mel Brooks,1162787078 +67951,2329,Edward Norton,1140581584 +67951,2889,Russell Crowe,1159197938 +67951,2890,George Clooney,1159197971 +67951,2959,Edward Norton,1140581656 +67951,2997,Charlie Kaufman,1159197906 +67951,3578,Russell Crowe,1159197857 +67951,3671,Mel Brooks,1155743683 +67951,4299,Shannyn Sossamon is hot,1140581468 +67951,4995,Russell Crowe,1159197832 +67951,5903,Christian Bale,1159198022 +67951,6711,Bill Murray,1140581701 +67951,6947,Russell Crowe,1159197934 +67951,7361,Charlie Kaufman,1162787136 +67951,8376,horrible,1142806661 +67951,8950,Christian Bale,1163055820 +67951,30810,Bill Murray,1140581698 +67951,33660,Russell Crowe,1159197843 +67951,33794,Christian Bale,1159197821 +67951,39292,George Clooney,1159198092 +67951,41716,Pierce Brosnan,1159197885 +67951,45186,Tom Cruise,1146863958 +67951,47610,Edward Norton,1159198071 +67951,48780,Christian Bale,1162396974 +67951,98961,American propaganda,1358198008 +67955,953,classic,1221397818 +67955,1394,Coen Brothers,1221401767 +67955,4027,Coen Bro,1221400479 +67955,64497,Wooden acting,1245176186 +67990,780,action packed,1337635422 +67990,780,Jeff Goldblum,1337635422 +67990,780,sci-fi,1337635423 +67990,6870,Dramatic,1337638175 +67990,6870,mystery,1337638175 +67990,6870,Sean Penn,1337638174 +67990,48780,predictable ending,1337656563 +67990,89745,Hulk graphics,1337626343 +67990,89745,humor,1337626352 +68012,48304,history,1452283858 +68012,48304,Native Americans,1452283865 +68012,48304,survival,1452283860 +68012,85342,José Padilha,1452283674 +68012,85342,Wagner Moura,1452283662 +68012,99112,detective,1452283709 +68012,99145,family,1452283723 +68012,99145,real story,1452283727 +68035,1580,action,1382881665 +68035,1580,comedy,1382881662 +68035,1580,sci-fi,1382881655 +68035,1580,Will Smith,1382881659 +68053,260,cult,1440976643 +68053,260,scifi,1440976640 +68053,2377,Nudity (Full Frontal - Notable),1440979994 +68053,2730,atmospheric,1440980631 +68053,2730,cinematography,1440980642 +68053,2730,Kubrick,1440980644 +68053,2730,music,1440980639 +68053,2730,photography,1440980633 +68053,2730,Stanley Kubrick,1440980628 +68053,2916,Arnold Schwarzenegger,1440980841 +68053,2916,conspiracy,1440980843 +68053,2916,memory,1440980848 +68053,3272,drugs,1440978657 +68053,3527,survival,1440978911 +68053,3527,violent,1440978909 +68053,3527,weapons,1440978913 +68053,3704,lone hero,1440978433 +68053,3704,post-apocalyptic,1440978431 +68053,4878,cult film,1440978207 +68053,4878,high school,1440978213 +68053,4878,mental illness,1440978193 +68053,4878,original,1440978202 +68053,4878,psychology,1440978198 +68053,4878,surreal,1440978197 +68053,4878,thought-provoking,1440978200 +68053,4878,time travel,1440978195 +68053,4878,twist ending,1440978206 +68053,5528,bizarre,1440979938 +68053,5528,creepy,1440979933 +68053,5528,dark,1440979929 +68053,5528,psychotic tendencies,1440979935 +68053,5528,Robin Williams,1440979924 +68053,5528,stalker,1440979927 +68053,5528,strange story,1440979926 +68053,5528,suspense,1440979931 +68053,7361,dreamlike,1440978181 +68053,7361,imagination,1440978176 +68053,7361,memory,1440978167 +68053,7361,psychology,1440978171 +68053,7361,romance,1440978169 +68053,7361,surreal,1440978164 +68053,7361,surrealism,1440978178 +68053,7361,thought-provoking,1440978162 +68053,8950,atmospheric,1440978471 +68053,8950,Christian Bale,1440978466 +68053,8950,creepy,1440978469 +68053,8950,dark,1440978473 +68053,8950,disturbing,1440978477 +68053,8950,powerful ending,1440978475 +68053,8950,psychology,1440978463 +68053,8950,twist ending,1440978461 +68053,26840,Japan,1440980568 +68053,26840,Takeshi Kitano,1440980564 +68053,26840,yakuza,1440980566 +68053,33340,yakuza,1440980491 +68053,39183,bittersweet,1440977674 +68053,39183,controversial,1440977679 +68053,39183,emotional,1440977665 +68053,39183,melancholy,1440977668 +68053,39183,scenic,1440977676 +68053,39183,sexuality,1440977672 +68053,51255,action spoof,1440979895 +68053,51255,police,1440979897 +68053,51255,Simon Pegg,1440979891 +68053,65642,complicated,1440977985 +68053,65642,grim,1440977979 +68053,65642,paradox,1440977981 +68053,65642,time travel,1440977982 +68053,73211,disease,1441059671 +68053,73211,simple,1441059678 +68053,73211,zombies,1441059669 +68053,79702,cultural references,1440979612 +68053,79702,fight scenes,1440979610 +68053,79702,funny,1440979605 +68053,79702,stylized,1440979602 +68053,79702,visually appealing,1440979607 +68053,82667,crazy,1440978575 +68053,82667,disturbing,1440978579 +68053,82667,Korea,1440978573 +68053,82667,murder,1440978577 +68053,82667,revenge,1440978565 +68053,82667,serial killer,1440978571 +68053,82667,torture,1440978569 +68053,83525,Japan,1440980537 +68053,83525,organized crime,1440980539 +68053,83525,Takeshi Kitano,1440980535 +68053,95088,social angst,1440978089 +68053,95088,Understated charm,1440978085 +68053,96966,Xavier Dolan,1440978315 +68053,103849,organized crime,1440978540 +68053,104231,China,1440980110 +68053,104231,cops,1440980107 +68053,104231,drug trade,1440980109 +68053,106766,atmospheric,1440980602 +68053,106766,depressing,1440980606 +68053,106766,Oscar Isaac,1440980604 +68053,106920,beautiful,1440978123 +68053,106920,loneliness,1440978119 +68053,106920,meaning of life,1440978126 +68053,106920,original,1440978130 +68053,106920,original plot,1440978128 +68053,106920,psychology,1440978117 +68053,106920,sad,1440978133 +68053,106920,thought-provoking,1440978114 +68053,108729,confusing,1440980393 +68053,108729,Jake Gyllenhaal,1440980397 +68053,108729,mindfuck,1440980400 +68053,108729,Psychological,1440980395 +68053,110611,soundtrack,1440980059 +68053,111387,high school,1440980463 +68053,111759,time loop,1440980171 +68053,111759,Tom Cruise,1440980173 +68053,113741,intelligent,1440977936 +68053,113741,mind bending,1440977931 +68053,113741,mystery,1440977938 +68053,113741,parallel universe,1440977933 +68053,113741,psychothriller,1440977935 +68053,114246,detective,1440978394 +68053,114246,noir thriller,1440978397 +68053,114246,serial killer,1440978395 +68053,114662,gritty,1440978012 +68053,114662,military,1440978014 +68053,114662,sniper,1440978018 +68053,114662,war hero,1440978010 +68053,115149,Action,1440978953 +68053,115149,Hitman,1440978955 +68053,115149,Revenge,1440978951 +68053,119126,Gore,1440979799 +68053,119126,Psychopathy,1440979795 +68053,119126,Serial killer,1440979797 +68053,120466,die antwoord,1440977883 +68053,120466,entertaining,1440977896 +68053,120466,police,1440977890 +68053,120466,Sharlto Copley,1440977891 +68053,120466,violence,1440977893 +68053,121231,Creepy,1440978053 +68053,121231,great soundtrack,1440978057 +68053,121231,minimalist,1440978058 +68053,121231,Psychological,1440978065 +68053,121231,Retro,1440978061 +68053,121231,Supernatural,1440978063 +68053,125916,based on a book,1440979023 +68053,125916,BDSM,1440979018 +68053,125916,book,1440979021 +68053,125916,erotic,1440979014 +68053,135850,Takashi Miike,1440977639 +68053,135850,Tokyo,1440977635 +68053,135850,Yakuza,1440977632 +68142,46578,dark comedy,1444311110 +68149,260,entertaining,1432943026 +68149,260,good characters,1432943044 +68149,356,creative,1432944436 +68149,356,date movie,1432944436 +68149,356,thoughtful,1432944436 +68149,4019,inspirational,1432944460 +68149,6377,family,1432944370 +68149,6377,father-son relationship,1432944377 +68149,6377,heartwarming,1432944375 +68191,45672,depressing,1381698242 +68191,103335,humour,1380394035 +68227,6222,Nudity (Full Frontal - Notable),1173132688 +68250,260,sci-fi,1442809731 +68250,109487,sci-fi,1442809982 +68250,109487,time-travel,1442809995 +68253,92535,comedy,1427501979 +68253,92535,english,1427501979 +68253,92535,louis c.k.,1427501979 +68259,260,Han Solo,1438958967 +68259,260,Let the force be with you,1438958991 +68259,260,Princess Leya,1438958978 +68269,104309,China,1376782755 +68269,104309,Tiananmen Square,1376782748 +68275,37731,extremely violent,1168868791 +68289,671,weak,1187537280 +68289,707,noir thriller,1187537670 +68289,954,drama,1187537768 +68289,1245,Coen Brothers,1187537748 +68289,1245,crime,1187537748 +68289,1441,comedy,1187537571 +68289,1587,action,1187537395 +68289,1589,crime,1187537696 +68289,1883,left wing,1187537381 +68289,2125,romance,1187537726 +68289,2405,adventure,1187537475 +68289,2405,comedy,1187537475 +68289,2478,comedy,1187537358 +68289,2872,medieval tale,1187537437 +68289,2951,spaghetti western,1187537647 +68289,3263,basketball,1187537791 +68289,3263,comedy,1187537790 +68289,3916,football,1187537306 +68289,3916,High School,1187537306 +68289,3967,coming of age,1187537181 +68289,4270,action,1187537245 +68289,4270,adventure,1187537245 +68289,4270,comedy,1187537245 +68289,4367,action,1187537490 +68289,4367,adventure,1187537490 +68289,6016,drama,1187537608 +68289,6016,foreign,1187537608 +68289,6016,true story,1187537608 +68289,8622,fable,1187537184 +68289,8798,action,1187537634 +68289,8798,drama,1187537634 +68299,4223,WWII,1426777437 +68299,44555,East Germany,1426777620 +68299,109487,black holes,1426778507 +68299,109487,interstellar trip,1426778507 +68299,109487,physics,1426777192 +68299,109487,relativity,1426778507 +68307,16,Joe Pesci,1365834323 +68307,16,Las Vegas,1365834306 +68307,16,Martin Scorsese,1365834335 +68307,16,Robert De Niro,1376192734 +68307,16,Sharon Stone,1376192727 +68307,25,Alcoholism,1367650741 +68307,25,Elisabeth Shue,1370754646 +68307,25,Nicolas Cage,1367650741 +68307,31,Highschool,1368679657 +68307,31,Michelle Pfeiffer,1367564250 +68307,39,Alicia Silverstone,1367564274 +68307,39,Brittany Murphy,1368679242 +68307,39,Highschool,1368679230 +68307,104,Adam Sandler,1367564057 +68307,104,Bob Barker,1367564074 +68307,104,Carl Weathers,1371095335 +68307,104,Golf,1367564074 +68307,105,Based on a Book,1370150369 +68307,105,Clint Eastwood,1370150336 +68307,105,Meryl Streep,1370150346 +68307,110,Mel Gibson,1367815918 +68307,111,Jodie Foster,1369198378 +68307,111,Prostitution,1369198395 +68307,111,Robert De Niro,1376192922 +68307,132,Chazz Palminteri,1368249588 +68307,132,Linda Fiorentino,1368249569 +68307,132,Sex,1368249569 +68307,147,Basketball,1369197331 +68307,147,Bruno Kirby,1369197252 +68307,147,Drug Addiction,1369197323 +68307,147,Ernie Hudson,1369197290 +68307,147,Juliette Lewis,1369197262 +68307,147,Leonardo DiCaprio,1369197213 +68307,147,Lorraine Bracco,1369197229 +68307,147,Mark Wahlberg,1369197238 +68307,147,Michael Imperioli,1369197282 +68307,150,Tom Hanks,1367815851 +68307,170,Angelina Jolie,1368943340 +68307,170,Computers,1368943359 +68307,170,Hacking,1368943372 +68307,185,Computers,1370753799 +68307,185,Sandra Bullock,1367650395 +68307,216,Adam Sandler,1367564629 +68307,216,School,1371095750 +68307,225,Demi Moore,1367564552 +68307,225,Michael Douglas,1367564552 +68307,225,Sexual Harassment,1368680795 +68307,231,Jeff Daniels,1371095061 +68307,231,Jim Carrey,1374725597 +68307,231,Teri Garr,1371095073 +68307,252,Meg Ryan,1370755871 +68307,252,Tim Robbins,1370755866 +68307,252,Walter Matthau,1370755881 +68307,276,Ed Harris,1367650630 +68307,276,Melanie Griffith,1367650630 +68307,282,Jodie Foster,1367650650 +68307,282,Liam Neeson,1368944888 +68307,282,Natasha Richardson,1368944901 +68307,303,Gene Hackman,1370755034 +68307,303,Leonardo DiCaprio,1370755050 +68307,303,Russell Crowe,1370755042 +68307,303,Sharon Stone,1365812615 +68307,303,Western,1370755061 +68307,318,Morgan Freeman,1376192635 +68307,318,Prison,1368248054 +68307,318,Tim Robbins,1368248065 +68307,337,Johnny Depp,1371192098 +68307,337,Juliette Lewis,1371192114 +68307,337,Leonardo DiCaprio,1371192105 +68307,337,Mary Steenburgen,1371192124 +68307,344,Jim Carrey,1367815816 +68307,344,Tone Loc,1371095117 +68307,350,Courtroom,1368680883 +68307,350,Law,1368680873 +68307,350,Mary-Louise Parker,1368680836 +68307,350,Susan Sarandon,1368680819 +68307,350,Tommy Lee Jones,1368680825 +68307,356,Gary Sinise,1368249166 +68307,356,Robin Wright Penn,1368249179 +68307,356,Sally Field,1367564566 +68307,356,Tom Hanks,1367564566 +68307,356,Vietnam War,1369198625 +68307,377,Dennis Hopper,1370756093 +68307,377,Keanu Reeves,1370756101 +68307,377,Sandra Bullock,1370756109 +68307,381,Alcoholism,1370755820 +68307,381,Andy Garcia,1370755792 +68307,381,Meg Ryan,1367650241 +68307,381,Philip Seymour Hoffman,1370755809 +68307,431,Al Pacino,1376192666 +68307,431,Penelope Ann Miller,1376192693 +68307,431,Sean Penn,1376192676 +68307,431,Viggo Mortensen,1376192707 +68307,432,Billy Crystal,1369196696 +68307,432,Daniel Stern,1369196723 +68307,432,Jack Palance,1369196715 +68307,432,Jon Lovitz,1369196705 +68307,500,Robin Williams,1367650407 +68307,500,Sally Field,1367650407 +68307,527,World War 2,1371096197 +68307,539,Meg Ryan,1370755633 +68307,539,Rosie O'Donnell,1370755643 +68307,539,Tom Hanks,1370755626 +68307,540,Sharon Stone,1365812589 +68307,540,Tom Berenger,1368249647 +68307,540,Voyeurism,1368249666 +68307,540,William Baldwin,1368249633 +68307,586,Catherine O'Hara,1368943908 +68307,586,Christmas,1368943922 +68307,586,Daniel Stern,1368943897 +68307,586,Joe Pesci,1367564047 +68307,586,John Heard,1368943884 +68307,586,Macaulay Culkin,1367564047 +68307,589,Arnold Schwarzenegger,1368943431 +68307,589,Edward Furlong,1368943451 +68307,589,Linda Hamilton,1368943443 +68307,592,Comic Book,1371094135 +68307,592,Jack Nicholson,1371094116 +68307,592,Kim Basinger,1371094124 +68307,592,Michael Keaton,1371094109 +68307,594,Animated,1369284053 +68307,596,Animated Classic,1368681874 +68307,597,Classic Romance,1368678859 +68307,597,Jason Alexander,1368678851 +68307,597,Julia Roberts,1367563783 +68307,597,Prostitution,1368678877 +68307,597,Richard Gere,1367563792 +68307,616,Animated,1369283892 +68307,640,Chazz Palminteri,1368249703 +68307,640,Sharon Stone,1368249713 +68307,674,Jane Fonda,1365812175 +68307,674,Sci-Fi,1369197022 +68307,674,Sex,1369197050 +68307,733,Alcatraz,1367816282 +68307,733,Ed Harris,1370756141 +68307,733,Nicolas Cage,1370756135 +68307,733,Sean Connery,1370756128 +68307,736,Bill Paxton,1370757097 +68307,736,Cary Elwes,1370757108 +68307,736,Helen Hunt,1367651013 +68307,736,Philip Seymour Hoffman,1370757117 +68307,736,Tornadoes,1370757128 +68307,762,Demi Moore,1368680735 +68307,785,Bill Murray,1371095014 +68307,785,Bowling,1371095031 +68307,785,Randy Quaid,1371095022 +68307,785,Woody Harrelson,1371095006 +68307,786,Arnold Schwarzenegger,1367650908 +68307,866,Gina Gershon,1369196520 +68307,866,Jennifer Tilly,1369196531 +68307,891,Donald Pleasence,1370754384 +68307,891,Horror,1370754389 +68307,919,Bert Lahr,1370756494 +68307,919,Classic,1370756445 +68307,919,Jack Haley,1370756483 +68307,919,Judy Garland,1370756455 +68307,919,Musical,1370756449 +68307,919,Ray Bolger,1370756470 +68307,932,Cary Grant,1370150476 +68307,932,Classic,1370150503 +68307,932,Deborah Kerr,1370150484 +68307,932,Romance,1370150493 +68307,1013,Brian Keith,1368678958 +68307,1013,Classic,1368678980 +68307,1013,Hayley Mills,1367563887 +68307,1013,Maureen O'Hara,1368678943 +68307,1013,Summer Camp,1369196487 +68307,1014,Hayley Mills,1367563823 +68307,1018,Hayley Mills,1369284245 +68307,1022,Animated,1369284030 +68307,1029,Animated Classic,1368681897 +68307,1032,Animated,1369284127 +68307,1035,Christopher Plummer,1370150140 +68307,1035,Classic,1370150181 +68307,1035,Julie Andrews,1370150126 +68307,1035,Musical,1370150151 +68307,1088,Cynthia Rhodes,1369198178 +68307,1088,Dancing,1369198141 +68307,1088,Jennifer Grey,1369198166 +68307,1088,Patrick Swayze,1369198148 +68307,1091,Andrew McCarthy,1371095646 +68307,1092,Michael Douglas,1365835040 +68307,1092,Sex,1368249515 +68307,1092,Sharon Stone,1365812559 +68307,1097,Classic,1368682376 +68307,1097,Drew Barrymore,1368682346 +68307,1097,Extra-Terrestrials,1368682371 +68307,1101,Meg Ryan,1370756072 +68307,1101,Tim Robbins,1370756066 +68307,1101,Tom Cruise,1370756037 +68307,1101,Tom Skerritt,1370756057 +68307,1101,Val Kilmer,1370756045 +68307,1120,Courtney Love,1367563876 +68307,1120,Edward Norton,1368679304 +68307,1120,Larry Flynt,1368679295 +68307,1120,Woody Harrelson,1367563866 +68307,1124,Dabney Coleman,1376192390 +68307,1124,Father - Daughter Relationship,1370754798 +68307,1124,Henry Fonda,1370754814 +68307,1124,Jane Fonda,1370754822 +68307,1124,Katharine Hepburn,1370754808 +68307,1191,Documentary,1368680296 +68307,1191,Madonna,1368680274 +68307,1191,Music,1368680346 +68307,1191,Sandra Bernhard,1368680330 +68307,1191,Warren Beatty,1368680313 +68307,1193,Christopher Lloyd,1376192600 +68307,1193,Christopher Walken,1376192599 +68307,1193,Classic,1368250541 +68307,1193,Danny DeVito,1376192608 +68307,1193,Jack Nicholson,1376192591 +68307,1193,Louise Fletcher,1368250562 +68307,1193,Mental Hospital,1369198926 +68307,1193,Psychology,1369198941 +68307,1194,Cheech Marin,1371095878 +68307,1194,Marijuana,1371095897 +68307,1194,Tommy Chong,1371095871 +68307,1201,Clint Eastwood,1376192965 +68307,1213,Debi Mazar,1376192836 +68307,1213,Joe Pesci,1376192814 +68307,1213,Lorraine Bracco,1376192824 +68307,1213,Michael Imperioli,1376192858 +68307,1213,Ray Liotta,1376192808 +68307,1213,Robert De Niro,1376192801 +68307,1213,Samuel L. Jackson,1376192868 +68307,1228,Cathy Moriarty,1376192896 +68307,1228,Joe Pesci,1376192907 +68307,1228,Robert De Niro,1376192902 +68307,1240,Arnold Schwarzenegger,1376193141 +68307,1240,Linda Hamilton,1376193147 +68307,1258,Jack Nicholson,1367650333 +68307,1258,Stephen King,1367650334 +68307,1266,Clint Eastwood,1376192937 +68307,1266,Gene Hackman,1376192943 +68307,1266,Morgan Freeman,1376192950 +68307,1270,Christopher Lloyd,1368248761 +68307,1270,Classic,1368681250 +68307,1270,Crispin Glover,1368248761 +68307,1270,Lea Thompson,1368248761 +68307,1270,Michael J. Fox,1367650187 +68307,1270,Time Travel,1368248803 +68307,1271,Jessica Tandy,1367650893 +68307,1271,Kathy Bates,1367650893 +68307,1271,Mary Stuart Masterson,1368248338 +68307,1271,Mary-Louise Parker,1368248352 +68307,1307,Billy Crystal,1370755936 +68307,1307,Bruno Kirby,1370755961 +68307,1307,Carrie Fisher,1370755951 +68307,1307,Meg Ryan,1370755943 +68307,1358,Dwight Yoakam,1376192576 +68307,1358,John Ritter,1376192561 +68307,1385,Battleship,1368680660 +68307,1385,Erika Eleniak,1368680636 +68307,1385,Gary Busey,1368680616 +68307,1385,Steven Seagal,1368680593 +68307,1385,Tommy Lee Jones,1368680601 +68307,1405,animated,1365812536 +68307,1431,Chris Farley,1369200082 +68307,1441,Aidan Quinn,1370755517 +68307,1441,Johnny Depp,1367564641 +68307,1441,Julianne Moore,1370755527 +68307,1441,Mary Stuart Masterson,1370755508 +68307,1441,Mental Illness,1370755552 +68307,1466,Al Pacino,1376192760 +68307,1466,Anne Heche,1376192775 +68307,1466,Bruno Kirby,1376192767 +68307,1466,Johnny Depp,1376192753 +68307,1485,Jim Carrey,1367814293 +68307,1517,Mike Myers,1367815867 +68307,1586,Demi Moore,1367650867 +68307,1777,Adam Sandler,1367650233 +68307,1777,Billy Idol,1368680232 +68307,1777,Drew Barrymore,1368680216 +68307,1784,Cuba Gooding Jr.,1370755135 +68307,1784,Greg Kinnear,1370755128 +68307,1784,Helen Hunt,1367564688 +68307,1784,Jack Nicholson,1367564687 +68307,1784,Obsessive Compulsive Disorder,1367564688 +68307,1923,Ben Stiller,1374725490 +68307,1923,Cameron Diaz,1374725502 +68307,1923,Jeffrey Tambor,1371094972 +68307,1923,Markie Post,1371094980 +68307,1923,Matt Dillon,1371094952 +68307,1954,Boxing,1368679447 +68307,1954,Burgess Meredith,1368944139 +68307,1954,Burt Young,1368944131 +68307,1954,Carl Weathers,1368944122 +68307,1954,Classic,1368679455 +68307,1954,Sylvester Stallone,1368679426 +68307,1954,Talia Shire,1368679443 +68307,1958,Debra Winger,1367563623 +68307,1958,Jack Nicholson,1376192361 +68307,1958,Mother - Daughter Relationship,1370756389 +68307,1958,Shirley MacLaine,1376192369 +68307,1961,psychology,1365812604 +68307,1961,Tom Cruise,1376192441 +68307,1962,Dan Aykroyd,1369197763 +68307,1962,Jessica Tandy,1376192409 +68307,1962,Morgan Freeman,1376192417 +68307,1964,Donald Sutherland,1369375888 +68307,1964,Jane Fonda,1369375895 +68307,1964,Prostitution,1369375913 +68307,1982,Classic Horror,1368679570 +68307,1982,Donald Pleasence,1368679562 +68307,1982,Halloween,1368679610 +68307,1982,Jamie Lee Curtis,1368679549 +68307,1982,Michael Myers,1368679593 +68307,1983,Donald Pleasence,1370754212 +68307,1983,Horror,1370754223 +68307,1983,Jamie Lee Curtis,1370754201 +68307,1984,Horror,1370754294 +68307,1985,Donald Pleasence,1370754327 +68307,1985,Horror,1370754331 +68307,1986,Donald Pleasence,1370754352 +68307,1986,Horror,1370754355 +68307,2005,Classic Children's Adventure,1369196800 +68307,2005,Corey Feldman,1369196823 +68307,2005,Kerri Green,1369196853 +68307,2005,Martha Plimpton,1369196841 +68307,2005,Pirates,1369196878 +68307,2005,Sean Astin,1369196814 +68307,2018,Animated Classic,1368681953 +68307,2048,Animated,1368682060 +68307,2054,Rick Moranis,1368249944 +68307,2072,Tom Hanks,1367650213 +68307,2078,Animated,1369283940 +68307,2080,Animated Classic,1368682015 +68307,2085,Animated,1369283997 +68307,2087,Animated Classic,1368682087 +68307,2096,Animated,1369284075 +68307,2100,Darryl Hannah,1367816173 +68307,2100,Mermaids,1367816201 +68307,2100,Tom Hanks,1367816173 +68307,2107,Horror,1370754410 +68307,2107,Jamie Lee Curtis,1370754406 +68307,2107,LL Cool J,1370754454 +68307,2132,Elizabeth Taylor,1368250627 +68307,2139,Animated,1369284156 +68307,2141,Animated,1368682121 +68307,2145,Andrew McCarthy,1368248584 +68307,2145,Annie Potts,1368248570 +68307,2145,Molly Ringwald,1367563803 +68307,2145,Prom,1368681178 +68307,2174,Alec Baldwin,1368944544 +68307,2174,Catherine O'Hara,1368944577 +68307,2174,Geena Davis,1368944566 +68307,2174,Ghosts,1368944605 +68307,2174,Michael Keaton,1368944559 +68307,2174,The Afterlife,1368944614 +68307,2174,Tim Burton,1368944590 +68307,2174,Winona Ryder,1365812518 +68307,2268,Demi Moore,1376193084 +68307,2268,Jack Nicholson,1376193096 +68307,2268,Kevin Bacon,1376193113 +68307,2268,Kiefer Sutherland,1376193121 +68307,2268,Tom Cruise,1376193091 +68307,2291,Dianne Wiest,1368944675 +68307,2291,Johnny Depp,1367650499 +68307,2291,Tim Burton,1368944694 +68307,2291,Vincent Price,1368944684 +68307,2291,Winona Ryder,1367650499 +68307,2294,Animated,1368249483 +68307,2296,Chazz Palminteri,1371095200 +68307,2296,Eva Mendes,1371095188 +68307,2296,Loni Anderson,1371095166 +68307,2296,Molly Shannon,1371095176 +68307,2296,Richard Grieco,1371095152 +68307,2296,Will Ferrell,1367650661 +68307,2302,Courtroom,1370753920 +68307,2302,Joe Pesci,1367815065 +68307,2302,Law,1370753644 +68307,2302,Marisa Tomei,1367815065 +68307,2302,Ralph Macchio,1367815065 +68307,2310,Sharon Stone,1368248519 +68307,2335,Adam Sandler,1371095269 +68307,2335,Football,1371095314 +68307,2335,Henry Winkler,1371095287 +68307,2335,Kathy Bates,1371095277 +68307,2335,Rob Schneider,1371095298 +68307,2355,Animated,1369182511 +68307,2369,Madonna,1365812506 +68307,2375,Shelley Long,1367650442 +68307,2375,Tom Hanks,1367650442 +68307,2409,Boxing,1368944090 +68307,2409,Burgess Meredith,1368944082 +68307,2409,Burt Young,1368944057 +68307,2409,Carl Weathers,1368944072 +68307,2409,Sylvester Stallone,1368944048 +68307,2409,Talia Shire,1368944064 +68307,2410,Boxing,1368944222 +68307,2410,Burgess Meredith,1368944195 +68307,2410,Burt Young,1368944178 +68307,2410,Carl Weathers,1368944170 +68307,2410,Hulk Hogan,1368944214 +68307,2410,Mr. T,1368944205 +68307,2410,Sylvester Stallone,1368944162 +68307,2410,Talia Shire,1368944187 +68307,2411,Boxing,1368944308 +68307,2411,Brigitte Nielsen,1368944293 +68307,2411,Burt Young,1368944269 +68307,2411,Carl Weathers,1368944259 +68307,2411,Dolph Lundgren,1368944301 +68307,2411,Sylvester Stallone,1368944253 +68307,2411,Talia Shire,1368944276 +68307,2412,Boxing,1368944389 +68307,2412,Burgess Meredith,1368944381 +68307,2412,Burt Young,1368944366 +68307,2412,Sage Stallone,1368944358 +68307,2412,Sylvester Stallone,1368944347 +68307,2412,Talia Shire,1368944373 +68307,2416,Rodney Dangerfield,1368248851 +68307,2420,Elisabeth Shue,1369285004 +68307,2420,Karate,1369284984 +68307,2420,Pat Morita,1367564008 +68307,2420,Ralph Macchio,1367564008 +68307,2421,Karate,1369285037 +68307,2421,Pat Morita,1369285022 +68307,2421,Ralph Macchio,1369285015 +68307,2422,Karate,1369285092 +68307,2422,Pat Morita,1369285073 +68307,2422,Ralph Macchio,1369285066 +68307,2423,Beverly D'Angelo,1368945028 +68307,2423,Chevy Chase,1368945017 +68307,2423,Christmas,1368945048 +68307,2423,Juliette Lewis,1368945039 +68307,2424,Dabney Coleman,1370755695 +68307,2424,Greg Kinnear,1370755680 +68307,2424,Meg Ryan,1370755688 +68307,2424,Tom Hanks,1370755672 +68307,2432,Divorce,1367650306 +68307,2432,Ed Harris,1371704615 +68307,2432,Julia Roberts,1367650275 +68307,2432,Susan Sarandon,1367650266 +68307,2478,Chevy Chase,1368945085 +68307,2478,Jon Lovitz,1371095622 +68307,2478,Martin Short,1368945104 +68307,2478,Steve Martin,1368945093 +68307,2504,Courtney Love,1367815807 +68307,2513,Stephen King,1367814980 +68307,2571,Keanu Reeves,1368246669 +68307,2581,Drew Barrymore,1368246646 +68307,2616,Al Pacino,1371094163 +68307,2616,Catherine O'Hara,1371094215 +68307,2616,Comic Book,1371094250 +68307,2616,Dick Van Dyke,1371094201 +68307,2616,Dustin Hoffman,1371094175 +68307,2616,James Caan,1371094231 +68307,2616,Kathy Bates,1371094190 +68307,2616,Madonna,1367650934 +68307,2616,Warren Beatty,1367650934 +68307,2694,Adam Sandler,1376191770 +68307,2694,Kristy Swanson,1368681392 +68307,2694,Rob Schneider,1376191762 +68307,2694,Steve Buscemi,1368681404 +68307,2716,Annie Potts,1368248626 +68307,2716,Bill Murray,1368248626 +68307,2716,Classic,1368681233 +68307,2716,Dan Aykroyd,1368248626 +68307,2716,Ernie Hudson,1368248647 +68307,2716,Ghosts,1368248695 +68307,2716,Harold Ramis,1368248673 +68307,2716,Paranormal,1368681222 +68307,2716,Rick Moranis,1368248647 +68307,2716,Sigourney Weaver,1368248660 +68307,2739,Oprah Winfrey,1369197803 +68307,2739,Whoopi Goldberg,1369197791 +68307,2757,Jessica Lange,1368250469 +68307,2772,Edward Furlong,1370152060 +68307,2772,KISS,1370152076 +68307,2795,Beverly D'Angelo,1368678583 +68307,2795,Chevy Chase,1368678564 +68307,2795,Randy Quaid,1368678592 +68307,2795,Road Trip,1368678627 +68307,2797,Elizabeth Perkins,1369196270 +68307,2797,Tom Hanks,1367650947 +68307,2804,Christmas,1368246607 +68307,2926,Deborah Harry,1370152347 +68307,2926,Ricki Lake,1370152355 +68307,2959,Brad Pitt,1369200288 +68307,2959,Edward Norton,1369200281 +68307,2959,Helena Bonham Carter,1369200299 +68307,2959,Jared Leto,1369200308 +68307,2959,Meat Loaf,1369200319 +68307,2987,Bob Hoskins,1367650587 +68307,3039,Dan Aykroyd,1371704454 +68307,3039,Don Ameche,1371704470 +68307,3039,Eddie Murphy,1371704461 +68307,3039,Jamie Lee Curtis,1371704480 +68307,3076,Jack Lemmon,1368249094 +68307,3076,Prostitution,1368249109 +68307,3076,Shirley MacLaine,1368249094 +68307,3103,Illiteracy,1367814484 +68307,3103,Jane Fonda,1367814418 +68307,3103,Robert De Niro,1367814418 +68307,3105,Robert De Niro,1376192462 +68307,3105,Robin Williams,1376192456 +68307,3146,Amy Poehler,1371095235 +68307,3146,Norm MacDonald,1371095249 +68307,3146,Rob Schneider,1371095222 +68307,3168,Classic,1365835173 +68307,3168,Dennis Hopper,1365834848 +68307,3168,Hippies,1365835183 +68307,3168,Jack Nicholson,1365834828 +68307,3168,Peter Fonda,1365834841 +68307,3186,Angelina Jolie,1365834206 +68307,3186,Borderline Personality Disorder,1369199043 +68307,3186,Brittany Murphy,1365834235 +68307,3186,Clea DuVall,1368250374 +68307,3186,Jared Leto,1368250404 +68307,3186,Mental Hospital,1369199030 +68307,3186,Sanity,1369199102 +68307,3186,Suicide,1369199064 +68307,3186,Vanessa Redgrave,1368250393 +68307,3186,Whoopi Goldberg,1365834225 +68307,3186,Winona Ryder,1365834212 +68307,3247,Choir,1368678755 +68307,3247,Classic Comedy,1368678740 +68307,3247,Convent,1368678777 +68307,3247,Kathy Najimy,1368678727 +68307,3247,Maggie Smith,1368678714 +68307,3247,Nuns,1368678745 +68307,3247,Whoopi Goldberg,1367563680 +68307,3251,Jane Fonda,1369285882 +68307,3253,Alice Cooper,1371095847 +68307,3253,Chris Farley,1371095817 +68307,3253,Dana Carvey,1371095789 +68307,3253,Ed O'Neill,1371095838 +68307,3253,Meat Loaf,1371095826 +68307,3253,Mike Myers,1371095783 +68307,3253,Rob Lowe,1371095796 +68307,3253,Tia Carrere,1371095804 +68307,3255,baseball,1365834471 +68307,3255,Geena Davis,1365834489 +68307,3255,Madonna,1365812393 +68307,3255,Rosie O'Donnell,1365834481 +68307,3255,Tom Hanks,1365834502 +68307,3299,Diane Keaton,1370755993 +68307,3299,Lisa Kudrow,1370756000 +68307,3299,Meg Ryan,1370756006 +68307,3299,Walter Matthau,1370755986 +68307,3360,Barbara Hershey,1369197402 +68307,3360,Basketball,1369197410 +68307,3360,Coaching,1369197421 +68307,3360,Dennis Hopper,1369197391 +68307,3360,Gene Hackman,1369197374 +68307,3391,Madonna,1376192180 +68307,3450,Ann-Margret,1371192422 +68307,3450,Burgess Meredith,1371192413 +68307,3450,Jack Lemmon,1371192396 +68307,3450,Walter Matthau,1371192405 +68307,3477,Liv Tyler,1367650918 +68307,3478,Lou Diamond Phillips,1371191960 +68307,3480,Charlie Sheen,1370753862 +68307,3480,Corey Haim,1370753848 +68307,3480,Kerri Green,1370753855 +68307,3480,Winona Ryder,1370753867 +68307,3499,Kathy Bates,1367650461 +68307,3499,Stephen King,1367650461 +68307,3524,A Drunk,1368946267 +68307,3524,Dudley Moore,1367650575 +68307,3524,Liza Minnelli,1368946245 +68307,3526,Dianne Wiest,1369196902 +68307,3526,Joaquin Phoenix,1369196949 +68307,3526,Keanu Reeves,1369196937 +68307,3526,Martha Plimpton,1369196929 +68307,3526,Mary Steenburgen,1367650385 +68307,3526,Parenthood,1369196960 +68307,3526,Rick Moranis,1369196914 +68307,3526,Steve Martin,1367650385 +68307,3534,Elizabeth Perkins,1370757274 +68307,3534,Sandra Bullock,1368680012 +68307,3534,Viggo Mortensen,1370757287 +68307,3556,James Woods,1371191351 +68307,3556,Kathleen Turner,1371191368 +68307,3556,Kirsten Dunst,1371191359 +68307,3556,Suicide,1371191375 +68307,3591,Michael Keaton,1376192259 +68307,3591,Teri Garr,1371095693 +68307,3608,Pee-Wee Herman,1367564483 +68307,3709,Horror,1367816244 +68307,3709,Stephen King,1367816244 +68307,3752,Jim Carrey,1371094854 +68307,3752,Multiple Personality Disorder,1371094888 +68307,3752,Renee Zellweger,1371094864 +68307,3786,Cathy Moriarty,1368679831 +68307,3786,Clea DuVall,1368679805 +68307,3786,Natasha Lyonne,1368679821 +68307,3824,Richard Gere,1368945214 +68307,3824,Winona Ryder,1368945222 +68307,3835,Alicia Silverstone,1367564260 +68307,3835,Cary Elwes,1368249762 +68307,3835,Obsession,1368249771 +68307,3844,Dolly Parton,1367651106 +68307,3844,Julia Roberts,1367651106 +68307,3844,Olympia Dukakis,1367651106 +68307,3844,Sally Field,1367651106 +68307,4002,John Candy,1376192315 +68307,4002,Kevin Bacon,1376192304 +68307,4002,Steve Martin,1376192327 +68307,4018,Helen Hunt,1376192086 +68307,4018,Marisa Tomei,1376192110 +68307,4018,Mel Gibson,1376192096 +68307,4025,Candice Bergen,1376192146 +68307,4025,Michael Caine,1376192134 +68307,4025,Sandra Bullock,1376192155 +68307,4039,Aileen Quinn,1367815574 +68307,4039,Albert Finney,1367815574 +68307,4039,Ann Reinking,1367815460 +68307,4039,Carol Burnett,1367815416 +68307,4039,Tim Curry,1367815460 +68307,4080,Diane Keaton,1376191833 +68307,4203,Don Johnson,1370756282 +68307,4203,Mickey Rourke,1370756275 +68307,4203,Tia Carrere,1370756290 +68307,4205,Bob Hoskins,1367563945 +68307,4205,Cher,1367563945 +68307,4205,Christina Ricci,1367563946 +68307,4205,Winona Ryder,1367563946 +68307,4291,Dabney Coleman,1370754883 +68307,4291,Dolly Parton,1370754876 +68307,4291,Jane Fonda,1370754861 +68307,4291,Lily Tomlin,1370754869 +68307,4291,Sexism,1370754900 +68307,4292,Beau Bridges,1369375810 +68307,4292,Sally Field,1368681674 +68307,4292,Unions,1369375794 +68307,4296,Ali MacGraw,1370150430 +68307,4296,Romance,1370150442 +68307,4296,Ryan O'Neal,1370150416 +68307,4296,Ryan Phillippe,1370150416 +68307,4306,Animated,1369182555 +68307,4321,Billy Crystal,1369196594 +68307,4321,Bruno Kirby,1369196625 +68307,4321,Daniel Stern,1369196603 +68307,4321,Jack Palance,1369196613 +68307,4321,Mid-life Crisis,1369196660 +68307,4389,Boarding School,1368249009 +68307,4389,Jessica Pare,1368248978 +68307,4389,Mischa Barton,1368248978 +68307,4389,Piper Perabo,1368248987 +68307,4471,A Drunk,1368946225 +68307,4471,Dudley Moore,1368946185 +68307,4471,Liza Minnelli,1368946201 +68307,4474,Barbara Hershey,1367564317 +68307,4474,Bette Midler,1367564317 +68307,4474,Friendship,1367815382 +68307,4474,John Heard,1368248306 +68307,4477,Circus,1370757002 +68307,4477,Pee-Wee Herman,1370756998 +68307,4486,Morgan Freeman,1370757228 +68307,4489,Eddie Murphy,1376192275 +68307,4509,John Candy,1367564107 +68307,4520,Carol Kane,1368681048 +68307,4520,Corey Feldman,1367650700 +68307,4520,Corey Haim,1367650700 +68307,4520,Drivers License,1368681070 +68307,4520,Heather Graham,1368681088 +68307,4545,Robots,1367816266 +68307,4558,Arnold Schwarzenegger,1367651034 +68307,4558,Danny DeVito,1367651034 +68307,4571,Alex Winter,1368681270 +68307,4571,George Carlin,1368681300 +68307,4571,History,1368681309 +68307,4571,Keanu Reeves,1367564287 +68307,4571,Time Travel,1368681331 +68307,4585,Christopher Lloyd,1368945790 +68307,4585,Mental Patients,1368945829 +68307,4585,Michael Keaton,1367564206 +68307,4585,Peter Boyle,1368945779 +68307,4599,Dennis Quaid,1368679355 +68307,4599,Jerry Lee Lewis,1368679379 +68307,4599,Winona Ryder,1367564117 +68307,4621,John Travolta,1368946015 +68307,4621,Kirstie Alley,1368946026 +68307,4621,Olympia Dukakis,1368946035 +68307,4677,Tom Hanks,1367651047 +68307,4678,David Bowie,1371095599 +68307,4678,Fran Drescher,1371095591 +68307,4678,Weird Al Yankovic,1371095581 +68307,4679,John Candy,1367563494 +68307,4679,Macaulay Culkin,1376191801 +68307,4770,Diane Lane,1371873534 +68307,4770,Leelee Sobieski,1371873524 +68307,4787,Being Gifted,1368944819 +68307,4787,Debi Mazar,1370754093 +68307,4787,Dianne Wiest,1368944757 +68307,4787,Harry Connick Jr.,1368944744 +68307,4787,Jodie Foster,1367563974 +68307,4809,Cher,1368681607 +68307,4809,Meryl Streep,1368681604 +68307,4809,Nuclear Power Plant,1368681642 +68307,4809,Unions,1369375839 +68307,4810,mental hospital,1365834405 +68307,4810,mental illness,1365834399 +68307,4810,Mental Institution,1365834415 +68307,4810,psychology,1365812628 +68307,4814,Brittany Murphy,1367564236 +68307,4814,Michael Douglas,1367564236 +68307,4834,Cheech Marin,1371095929 +68307,4834,Tommy Chong,1371095921 +68307,4867,Drew Barrymore,1367650600 +68307,4886,Animated,1369182495 +68307,4920,Bette Davis,1368679707 +68307,4920,Psychiatry,1368679750 +68307,4969,Black & White,1369375295 +68307,4969,Mystery,1369375304 +68307,4995,Based On A True Story,1367815347 +68307,4995,Jennifer Connelly,1365834701 +68307,4995,Mathematics,1367815312 +68307,4995,Ron Howard,1365834709 +68307,4995,Russell Crowe,1365834690 +68307,4995,Schizophrenia,1367815290 +68307,5002,Animated,1370152994 +68307,5111,Elijah Wood,1368249831 +68307,5111,Macaulay Culkin,1368249831 +68307,5161,Richard Gere,1367650784 +68307,5161,Sharon Stone,1367650784 +68307,5218,Animated,1369182519 +68307,5303,Lloyd Bridges,1370755731 +68307,5303,Meg Ryan,1370755746 +68307,5303,Tom Hanks,1370755739 +68307,5308,Classic Comedy,1368678661 +68307,5308,Nancy Travis,1376192240 +68307,5308,Steve Guttenberg,1376192220 +68307,5308,Ted Danson,1376192210 +68307,5308,Tom Selleck,1376192201 +68307,5309,Nancy Travis,1368946151 +68307,5309,Steve Guttenberg,1368946136 +68307,5309,Ted Danson,1368946126 +68307,5309,Tom Selleck,1368946117 +68307,5349,Comic Book,1371093959 +68307,5349,Kirsten Dunst,1371093939 +68307,5349,Tobey Maguire,1371093929 +68307,5349,Willem Dafoe,1371093952 +68307,5449,Adam Sandler,1371094767 +68307,5449,Rob Schneider,1371094813 +68307,5449,Steve Buscemi,1371094787 +68307,5449,Winona Ryder,1371094775 +68307,5476,Busta Rhymes,1370754488 +68307,5476,Horror,1370754512 +68307,5476,Jamie Lee Curtis,1370754495 +68307,5476,Tyra Banks,1370754507 +68307,5528,Robin Williams,1367650609 +68307,5589,Alan Arkin,1369196308 +68307,5589,Bill Paxton,1369196318 +68307,5589,Diane Lane,1369196325 +68307,5589,Elizabeth Perkins,1369196339 +68307,5589,Summer Camp,1369196368 +68307,5610,Friendship,1368680992 +68307,5610,Geoffrey Rush,1368680968 +68307,5610,Goldie Hawn,1367650562 +68307,5610,Groupies,1368680937 +68307,5610,Susan Sarandon,1367650562 +68307,5657,Carol Kane,1365835136 +68307,5657,Dennis Hopper,1365835082 +68307,5657,Hippies,1365812475 +68307,5657,Kiefer Sutherland,1365835090 +68307,5673,Adam Sandler,1367650344 +68307,5673,Philip Seymour Hoffman,1370757071 +68307,5896,Cathy Moriarty,1370149705 +68307,5963,Audrey Hepburn,1368249039 +68307,5963,Shirley MacLaine,1367650513 +68307,5970,Anna Chlumsky,1367564499 +68307,5970,Dan Aykroyd,1368248479 +68307,5970,Jamie Lee Curtis,1368248490 +68307,5970,Macaulay Culkin,1367564509 +68307,5992,Julianne Moore,1367650816 +68307,5992,Meryl Streep,1367650818 +68307,6090,Ghosts,1369376312 +68307,6090,James Caan,1369376251 +68307,6090,Jeff Bridges,1369376260 +68307,6090,Sally Field,1367564520 +68307,6220,Crispin Glover,1370753964 +68307,6220,Rats,1370753972 +68307,6287,Adam Sandler,1367815831 +68307,6287,Jack Nicholson,1367815831 +68307,6287,Marisa Tomei,1371094834 +68307,6320,Bette Midler,1368246714 +68307,6320,Woody Allen,1368246714 +68307,6321,Bette Midler,1367564438 +68307,6321,John Goodman,1368248276 +68307,6321,Mother - Daughter Relationship,1368943818 +68307,6321,Trini Alvarado,1368943843 +68307,6377,Animated,1369182481 +68307,6423,Dolly Parton,1367564448 +68307,6537,Arnold Schwarzenegger,1368943507 +68307,6539,Geoffrey Rush,1369182754 +68307,6539,Johnny Depp,1369182743 +68307,6539,Keira Knightley,1369182771 +68307,6539,Orlando Bloom,1369182763 +68307,6539,Pirates,1369182779 +68307,6593,Jamie Lee Curtis,1370755351 +68307,6593,Lindsay Lohan,1370755359 +68307,6619,Brittany Murphy,1368680103 +68307,6619,Dakota Fanning,1368680110 +68307,6745,Cheech Marin,1368248232 +68307,7036,Highschool,1368681143 +68307,7036,Michael J. Fox,1367650256 +68307,7036,Werewolves,1368681133 +68307,7119,Advertising,1368945930 +68307,7119,Darryl Hannah,1368945897 +68307,7119,Dudley Moore,1368945888 +68307,7119,Mental Patients,1368945947 +68307,7119,Paul Reiser,1368945908 +68307,7154,Julia Roberts,1368246658 +68307,7160,Charlize Theron,1369197152 +68307,7160,Christina Ricci,1369197161 +68307,7160,Prostitution,1369197186 +68307,7316,Lindsay Lohan,1368681010 +68307,7493,Joanne Woodward,1369198764 +68307,7493,Multiple Personality Disorder,1369198784 +68307,7493,Psychiatry,1369198809 +68307,7493,Psychology,1369198800 +68307,7701,John Travolta,1368946070 +68307,7701,Kirstie Alley,1368946078 +68307,7701,Olympia Dukakis,1368946087 +68307,8169,Hume Cronyn,1368682400 +68307,8169,Jessica Tandy,1368682409 +68307,8340,Clint Eastwood,1376192648 +68307,8464,Documentary,1368945408 +68307,8464,Fast Food,1368945373 +68307,8464,McDonald's,1368945385 +68307,8464,Morgan Spurlock,1368945362 +68307,8492,Alastair Sim,1367814758 +68307,8492,Christmas,1367814831 +68307,8492,Classic,1369199706 +68307,8492,Scrooge,1367814805 +68307,8529,Tom Hanks,1368246683 +68307,8614,Goldie Hawn,1368680184 +68307,8614,Kurt Russell,1368680177 +68307,8623,Steve Martin,1368246635 +68307,8636,Comic Book,1371094000 +68307,8636,Kirsten Dunst,1371093993 +68307,8636,Tobey Maguire,1371093985 +68307,8718,Mental Institution,1369198893 +68307,8718,Olivia de Havilland,1368250499 +68307,8718,Psychiatry,1369198861 +68307,8978,Christmas,1369199428 +68307,9005,Alien Abduction,1368682494 +68307,26133,Animated,1369199681 +68307,26133,Christmas,1369199690 +68307,26133,Classic,1369199686 +68307,26680,Amy Locane,1370152404 +68307,26680,Johnny Depp,1370152394 +68307,26693,Horror,1369375461 +68307,26693,Stephen King,1367815162 +68307,26700,British,1369181950 +68307,26700,Convent,1369181942 +68307,26700,Eric Idle,1369181914 +68307,26700,Nuns,1369181906 +68307,26700,Robbie Coltrane,1369181924 +68307,27020,Angelina Jolie,1368679944 +68307,27246,Chloe Sevigny,1368247965 +68307,27246,Ellen Degeneres,1368247931 +68307,27246,Lesbianism,1369376354 +68307,27246,Michelle Williams,1368247982 +68307,27246,Sharon Stone,1368247931 +68307,27246,Vanessa Redgrave,1368247949 +68307,27786,Lesbianism,1371093576 +68307,27873,Documentary,1369283655 +68307,30707,Clint Eastwood,1376192529 +68307,30707,Hilary Swank,1376192536 +68307,30707,Morgan Freeman,1376192543 +68307,30894,EVP,1368945686 +68307,30894,Grief & Loss,1368945731 +68307,30894,Michael Keaton,1368945662 +68307,33499,Jane Fonda,1367650641 +68307,33499,Jennifer Lopez,1376192013 +68307,33499,Wanda Sykes,1369285920 +68307,33660,Renee Zellweger,1376192511 +68307,33660,Russell Crowe,1376192498 +68307,37729,Animated,1369182357 +68307,37729,Tim Burton,1369182363 +68307,41571,Geishas,1368250053 +68307,42732,Queen Latifah,1367814307 +68307,45672,Adam Sandler,1371094506 +68307,45672,Christopher Walken,1371094529 +68307,45672,David Hasselhoff,1371094542 +68307,45672,Henry Winkler,1371094552 +68307,45672,James Earl Jones,1371094605 +68307,45672,Jonah Hill,1371094587 +68307,45672,Julie Kavner,1371094569 +68307,45672,Kate Beckinsale,1371094517 +68307,45672,Rob Schneider,1371094624 +68307,45672,Sean Astin,1371094577 +68307,45726,Kate Hudson,1371094691 +68307,45726,Matt Dillon,1371094680 +68307,45726,Michael Douglas,1371094699 +68307,45726,Owen Wilson,1371094669 +68307,45726,Seth Rogen,1371094707 +68307,46578,Abigail Breslin,1367650677 +68307,46578,Alan Arkin,1368250273 +68307,46578,Greg Kinnear,1368250215 +68307,46578,Road Trip,1368250283 +68307,46578,Steve Carell,1368250254 +68307,46578,Toni Collette,1368250226 +68307,46970,Elvis Costello,1371095429 +68307,46970,Jane Lynch,1371095399 +68307,46970,John C. Reilly,1371095539 +68307,46970,Molly Shannon,1371095415 +68307,46970,Nascar,1371095444 +68307,46970,Will Ferrell,1371095391 +68307,47099,Will Smith,1376192483 +68307,48704,Peter Boyle,1369375713 +68307,48704,Sylvester Stallone,1369375698 +68307,48704,Unions,1369375746 +68307,48997,Based On A Book,1368250097 +68307,49123,Christmas,1369375602 +68307,49274,Animated,1369182641 +68307,49282,Christmas,1368679101 +68307,49282,Danny DeVito,1368679079 +68307,49282,Matthew Broderick,1368679089 +68307,49651,Boxing,1368944458 +68307,49651,Burt Young,1368944449 +68307,49651,Sylvester Stallone,1368944441 +68307,50872,Animated,1369182463 +68307,51077,Eva Mendes,1370756920 +68307,51077,Nicolas Cage,1370756914 +68307,51077,Peter Fonda,1370756931 +68307,52245,Amy Poehler,1371095356 +68307,52245,Figure Skating,1371095371 +68307,52245,Will Ferrell,1371095348 +68307,52435,Animated,1369199663 +68307,52435,Christmas,1369199671 +68307,52435,Classic,1369199667 +68307,52722,Comic Book,1371094075 +68307,52722,Kirsten Dunst,1371094042 +68307,52722,Thomas Haden Church,1371094068 +68307,52722,Tobey Maguire,1371094034 +68307,52722,Topher Grace,1371094051 +68307,52973,Eva Mendes,1371096103 +68307,52973,Jessica Alba,1371096082 +68307,52973,Joanna Kerns,1371096065 +68307,52973,Jonah Hill,1371096053 +68307,52973,Katherine Heigl,1371096044 +68307,52973,Pregnancy,1371096130 +68307,52973,Ryan Seacrest,1371096115 +68307,52973,Seth Rogen,1371096036 +68307,52973,Steve Carrell,1371096096 +68307,53002,Cary Elwes,1368680075 +68307,53002,Felicity Huffman,1367650853 +68307,53002,Jane Fonda,1367650854 +68307,53002,Lindsay Lohan,1367650854 +68307,53827,Child Abuse,1369198710 +68307,53827,Joanne Woodward,1369198667 +68307,53827,Multiple Personality Disorder,1369198727 +68307,53827,Psychiatry,1369198696 +68307,53827,Psychology,1369198687 +68307,53827,Sally Field,1369198659 +68307,54272,Animated,1370150959 +68307,54785,Horror,1365835215 +68307,55768,Animated,1369182627 +68307,56174,Will Smith,1367650794 +68307,56367,Ellen Page,1367650766 +68307,56367,Teen Pregnancy,1367650766 +68307,58806,Dennis Quaid,1370754705 +68307,58806,Ellen Page,1370754695 +68307,58806,Sarah Jessica Parker,1371192502 +68307,58806,Thomas Haden Church,1371192494 +68307,58816,Gymnastics,1369375669 +68307,58816,Lesbianism,1370753338 +68307,59258,Amy Poehler,1367815901 +68307,59258,Tina Fey,1367815901 +68307,59421,Cameron Diaz,1376191984 +68307,59900,Adam Sandler,1368249879 +68307,60040,Comic Book,1371093843 +68307,60040,Edward Norton,1371093851 +68307,60040,Liv Tyler,1371093857 +68307,60040,Lou Ferrigno,1371093877 +68307,60040,Robert Downey Jr.,1371093897 +68307,60487,Animated,1369199620 +68307,60487,Classic,1369199625 +68307,60487,Halloween,1369199630 +68307,60756,John C. Reilly,1371095476 +68307,60756,Mary Steenburgen,1371095489 +68307,60756,Seth Rogen,1371095498 +68307,60756,Will Ferrell,1371095461 +68307,61361,Annette Bening,1369197949 +68307,61361,Bette Midler,1369197994 +68307,61361,Candice Bergen,1369197985 +68307,61361,Carrie Fisher,1369198016 +68307,61361,Cloris Leachman,1369198005 +68307,61361,Debi Mazar,1369198028 +68307,61361,Debra Messing,1369197966 +68307,61361,Eva Mendes,1369197958 +68307,61361,Jada Pinkett Smith,1369197976 +68307,61361,Meg Ryan,1369197934 +68307,62553,Alicia Keys,1368248395 +68307,62553,Bees,1368248415 +68307,62553,Dakota Fanning,1367563740 +68307,62553,Jennifer Hudson,1368248395 +68307,62553,Queen Latifah,1367563761 +68307,63540,Dogs,1370149503 +68307,63540,Jamie Lee Curtis,1370149524 +68307,63540,Piper Perabo,1370149513 +68307,66097,Animated,1369182387 +68307,69122,Bachelor Party,1368678264 +68307,73854,Christmas,1369199354 +68307,75990,Randy Quaid,1369376109 +68307,75990,Richard Dreyfuss,1369376098 +68307,79242,Annette Bening,1369197868 +68307,79242,Julianne Moore,1369197860 +68307,79695,Arnold Schwarzenegger,1369181358 +68307,79695,Bruce Willis,1369181369 +68307,79695,Dolph Lundgren,1369181324 +68307,79695,Eric Roberts,1369181337 +68307,79695,Jet Li,1369181315 +68307,79695,Mickey Rourke,1369181349 +68307,79695,Sylvester Stallone,1369181307 +68307,82459,Jeff Bridges,1376192994 +68307,82459,Matt Damon,1376193005 +68307,85367,Adam Sandler,1369459084 +68307,85367,Jennifer Aniston,1376192053 +68307,85367,Nicole Kidman,1369459104 +68307,85399,Martin Lawrence,1369376164 +68307,86911,Bachelor Party,1368678224 +68307,87306,Elle Fanning,1368682467 +68307,87430,Comic Book,1373429758 +68307,88744,Apes,1367816301 +68307,90647,Animated,1375330785 +68307,91485,Arnold Schwarzenegger,1369181421 +68307,91485,Bruce Willis,1369181430 +68307,91485,Chuck Norris,1369181459 +68307,91485,Dolph Lundgren,1369181474 +68307,91485,Jean-Claude Van Damme,1369181451 +68307,91485,Jet Li,1369181465 +68307,91485,Sylvester Stallone,1369181438 +68307,91529,Anne Hathaway,1371093765 +68307,91529,Christian Bale,1371093745 +68307,91529,Comic Book,1371093784 +68307,91529,Michael Caine,1371093755 +68307,91873,Choir,1368681735 +68307,91873,Dolly Parton,1368247798 +68307,91873,Kris Kristofferson,1368247838 +68307,91873,Queen Latifah,1368247822 +68307,95105,Animated,1369181273 +68307,95441,Mark Wahlberg,1367651068 +68307,95441,Mila Kunis,1367651068 +68307,95441,Ray Romano,1371095994 +68307,95441,Seth MacFarlane,1371095968 +68307,95441,Ted Danson,1371096002 +68307,95441,Tom Skerritt,1371095986 +68307,95510,Comic Book,1369181206 +68307,95510,Denis Leary,1369181196 +68307,95510,Martin Sheen,1369181184 +68307,95510,Sally Field,1369181177 +68307,95543,Animated,1369181238 +68307,95875,Colin Farrell,1369181686 +68307,95875,Jessica Biel,1369181704 +68307,95875,Kate Beckinsale,1369181695 +68307,96281,Animated,1367814366 +68307,96693,Amy Adams,1368943720 +68307,96693,Baseball,1368943755 +68307,96693,Clint Eastwood,1368943712 +68307,96693,Father - Daughter Relationship,1368943705 +68307,96693,John Goodman,1368943730 +68307,96693,Justin Timberlake,1368943742 +68307,97172,Animated,1368945157 +68307,97172,Tim Burton,1368945165 +68307,97225,Animated,1369181538 +68307,97752,Halle Berry,1371273713 +68307,97752,Hugh Grant,1371273731 +68307,97752,Susan Sarandon,1371273723 +68307,97752,Tom Hanks,1371273706 +68307,99106,Barbra Streisand,1368943025 +68307,99106,Road Trip,1368943034 +68307,99106,Seth Rogen,1368247762 +68307,99112,Tom Cruise,1368942936 +68307,99912,Horror,1369283243 +68307,99912,Jessica Chastain,1369283257 +68307,99957,Catherine Zeta-Jones,1369195984 +68307,99957,Mark Wahlberg,1369195967 +68307,99957,Politics,1369196009 +68307,99957,Russell Crowe,1369195976 +68307,101362,Ashley Judd,1376191601 +68307,101362,Gratuitous Violence,1376191663 +68307,101362,Morgan Freeman,1376191637 +68312,8970,very good,1176378683 +68321,589,time travel,1217982107 +68321,54962,alternate reality,1206843854 +68321,56145,stephen king,1217981945 +68321,57326,Uwe Boll Sucks,1214279636 +68321,58559,superhero,1217981997 +68328,1059,Amazing Cinematography,1430179838 +68328,1059,colourful,1430179855 +68328,1059,shakespeare,1430179849 +68328,76093,action,1430180184 +68328,76093,cute,1430180175 +68328,76093,friendship,1430180166 +68328,94959,cinematography,1430180238 +68328,94959,surreal,1430180240 +68328,94959,Wes Anderson,1430180250 +68328,115617,friendship,1430180105 +68328,115617,inspiring,1430180109 +68335,356,drama,1437472793 +68335,356,sad but good,1437472793 +68335,356,touching,1437472793 +68344,150,space,1301195696 +68344,260,fantasy,1301195317 +68344,260,sci-fi,1301195319 +68344,260,space,1301195321 +68344,364,animation,1301195127 +68344,364,Disney,1301195130 +68344,376,meryl streep,1301195560 +68344,593,Oscar (Best Picture),1301195827 +68344,595,animation,1301195669 +68344,595,Disney,1301195671 +68344,595,fairy tale,1301195666 +68344,909,classic,1301197737 +68344,916,classic,1301197901 +68344,916,Oscar (Best Actress),1301197895 +68344,916,romance,1301197898 +68344,1031,magic,1301195882 +68344,1036,action,1301197015 +68344,1036,based on a book,1301197007 +68344,1036,Bruce Willis,1301197010 +68344,1080,based on a book,1301198132 +68344,1080,Monty Python,1301198135 +68344,1080,satire,1301198137 +68344,1136,Monty Python,1301195597 +68344,1148,comedy,1301195413 +68344,1197,comedy,1301195565 +68344,1197,fantasy,1301195563 +68344,1198,comedy,1301195764 +68344,1209,classic,1301197517 +68344,1209,Spaghetti Western,1301197513 +68344,1270,based on a book,1301197276 +68344,1270,Steven Spielberg,1301197274 +68344,1270,time travel,1301197272 +68344,1608,Harrison Ford,1301198637 +68344,1608,secret service,1301198640 +68344,1608,terrorism,1301198635 +68344,1695,true story,1301195243 +68344,1907,animation,1301195584 +68344,1907,Disney,1301195588 +68344,1907,musical,1301195586 +68344,2019,action,1301195306 +68344,2019,samurai,1301195304 +68344,2329,thought-provoking,1301195292 +68344,2501,space,1301197193 +68344,2501,space program,1301197197 +68344,2501,True Story,1301197190 +68344,2883,Zooey Deschanel,1301195222 +68344,2959,dark comedy,1301195728 +68344,2959,twist ending,1301195732 +68344,3006,true story,1301195805 +68344,3030,imdb top 250,1301195324 +68344,3408,based on a true story,1301195839 +68344,3408,Oscar (Best Actress),1301195842 +68344,3408,social commentary,1301195837 +68344,3418,Action,1301195824 +68344,3717,Action,1301195649 +68344,3755,Action,1301195879 +68344,3916,based on a true story,1301195757 +68344,4027,based on a book,1301199203 +68344,4027,Coen Brothers,1301199196 +68344,4027,comedy,1301199200 +68344,4308,musical,1301195593 +68344,4308,quirky,1301195590 +68344,4993,fantasy,1301195782 +68344,4993,Oscar (Best Cinematography),1301195786 +68344,5064,fantasy,1301195656 +68344,5400,Morgan Freeman,1301195749 +68344,5618,animation,1301195311 +68344,5618,anime,1301195314 +68344,5618,fantasy,1301196075 +68344,5952,fantasy,1301195771 +68344,6093,animation,1301195626 +68344,6093,fantasy,1301195624 +68344,6350,anime,1301195664 +68344,6350,sci-fi,1301195662 +68344,6377,animation,1301196693 +68344,6377,Disney,1301196695 +68344,6377,Pixar,1301196691 +68344,6378,action,1301198579 +68344,6378,Edward Norton,1301198584 +68344,6378,heist,1301198582 +68344,7139,immigrants,1301198380 +68344,7139,Ireland,1301198410 +68344,7139,Irish,1301198387 +68344,7143,historical,1301199022 +68344,7143,martial arts,1301199023 +68344,7143,samurai,1301199020 +68344,7153,Oscar (Best Picture),1301195780 +68344,7361,nonlinear,1301197846 +68344,7361,psychology,1301197841 +68344,7361,surreal,1301197844 +68344,7458,Action,1301198727 +68344,7458,Brad Pitt,1301198732 +68344,7458,War,1301198730 +68344,8712,black and white,1301197780 +68344,8961,animation,1301196721 +68344,8961,Pixar,1301196719 +68344,8961,superhero,1301196730 +68344,8970,fairy tale,1301197036 +68344,8970,Johnny Depp,1301197038 +68344,8970,romance,1301197041 +68344,30749,based on a true story,1301195725 +68344,30749,true story,1301195723 +68344,33004,based on a book,1301198775 +68344,33004,post-apocalyptic,1301198772 +68344,33004,space,1301198778 +68344,34405,space,1301195555 +68344,38061,dark comedy,1301195788 +68344,40826,drugs,1301199281 +68344,40826,musical,1301199279 +68344,40826,rock and roll,1301199283 +68344,44195,based on a book,1301198033 +68344,44195,dark comedy,1301198029 +68344,44195,satire,1301198041 +68344,45210,based on a true story,1301197248 +68344,45210,terrorism,1301197243 +68344,45210,true story,1301197245 +68344,45728,Comedy,1301198200 +68344,45728,Kevin Smith,1301198202 +68344,45728,marijuana,1301195981 +68344,45728,view askew,1301198198 +68344,48982,animation,1301195815 +68344,48982,Dreamworks,1301195818 +68344,49530,Africa,1301196981 +68344,49530,corruption,1301196977 +68344,49530,journalism,1301196974 +68344,50872,animation,1301196605 +68344,50872,Disney,1301196610 +68344,50872,pixar,1301196608 +68344,51662,action,1301198746 +68344,51662,atmospheric,1301198751 +68344,51662,comic book,1301198748 +68344,54001,fantasy,1301195189 +68344,54001,magic,1301195192 +68344,54001,wizards,1301195812 +68344,54259,based on a book,1301197223 +68344,54259,comedy,1301197221 +68344,54259,fairy tale,1301197218 +68344,54286,based on a book,1301198085 +68344,54286,espionage,1301198081 +68344,54286,twist ending,1301198087 +68344,54881,quirky,1301196416 +68344,54881,video games,1301196443 +68344,56152,Disney,1301195976 +68344,56152,Musical,1301195973 +68344,56757,Musical,1301195252 +68344,59315,comic book,1301196750 +68344,59315,Marvel,1301196744 +68344,59315,superhero,1301196771 +68344,60069,Animation,1301195486 +68344,60069,pixar,1301195491 +68344,60141,british,1301199057 +68344,60141,comedy,1301199055 +68344,60141,school,1301199053 +68344,60397,Meryl Streep,1301195620 +68344,60397,Musical,1301195617 +68344,63082,Oscar (Best Picture),1301196295 +68344,63992,vampires,1301195889 +68344,67788,adapted from:book,1301199166 +68344,67788,feel-good,1301199162 +68344,67788,romance,1301199164 +68344,68954,disney,1301195501 +68344,68954,Pixar,1301195499 +68344,70286,sci-fi,1301196661 +68344,70286,social commentary,1301196659 +68344,72356,Pixar,1301195582 +68344,72407,vampires,1301195892 +68344,72737,animation,1301195569 +68344,72737,Disney,1301195571 +68344,72737,thought-provoking,1301195567 +68344,73000,Daniel Day-Lewis,1301198988 +68344,73000,SeeAlso:All That Jazz (1979),1301198971 +68344,73017,martial arts,1301195113 +68344,74324,autism,1301195408 +68344,76093,animation,1301195633 +68344,76093,fantasy,1301195631 +68344,76251,action,1301197071 +68344,76251,comic book,1301197073 +68344,76251,superhero,1301197076 +68344,78499,animation,1301195524 +68344,78499,Pixar,1301195516 +68344,78772,vampires,1301195884 +68344,79091,animation,1301195820 +68344,79132,sci-fi,1301195628 +68344,79702,fantasy,1301196830 +68344,79702,quirky,1301196832 +68344,79702,stylized,1301196836 +68344,80463,dark comedy,1301195398 +68344,80463,true story,1301196068 +68344,81191,education,1301195496 +68344,81834,magic,1301195644 +68344,81845,based on a true story,1301195708 +68344,81845,Oscar (Best Picture),1301195714 +68344,83349,Cameron Diaz,1301198888 +68344,83349,comic book,1301198892 +68344,83349,parody,1301198890 +68363,2579,Underrated,1182199370 +68389,62434,Amateur Porn,1241127100 +68389,62434,Kevin Smith,1241127095 +68389,62434,racist humor,1241127135 +68389,62434,Seth Rogen,1241127115 +68389,62434,Sex Comedy,1241127119 +68389,62434,Sexual Humor,1241127121 +68389,62434,Star Wars,1241127124 +68389,62434,watch the credits,1241127126 +68402,7348,movies to watch,1154861212 +68404,5991,Masterpiece,1443528439 +68404,63853,bored,1443528618 +68404,99114,classic,1443528529 +68404,99114,Quentin Tarantino,1443528554 +68406,260,"epic, good vs evil",1441030743 +68406,260,"galactic, sci-fi",1441030734 +68421,203,appreciating diversity,1195229098 +68421,1732,Coen Bros.,1195228996 +68421,3911,documentary critique,1195229005 +68421,4326,1960's Jim Crow,1195229214 +68421,4326,Corruption,1195229243 +68421,4326,KKK,1195229243 +68421,4903,Warning: Dead Children,1195228974 +68421,6614,Kevin Kline,1195229040 +68421,6614,Tracy Ullman,1195229050 +68421,8464,Want to drop the fast-food habit?,1195229118 +68421,53894,documentary critique,1195229152 +68421,53894,Michael Moore,1195229145 +68511,364,coming of age,1241375248 +68511,364,inspirational,1241375339 +68511,1073,surreal,1241375145 +68511,3594,dance,1241376297 +68511,5952,fantasy,1241375071 +68511,5952,magic,1241375066 +68511,6942,multiple storylines,1241375826 +68511,26562,dance,1241376478 +68511,31658,whimsical,1241375118 +68569,2959,hughbar,1434716232 +68569,60684,hughbar,1434716219 +68569,77800,funny,1434716332 +68569,77800,hughbar,1434716037 +68569,77800,political satire,1434716332 +68569,77800,sad,1434716332 +68569,79132,hughbar,1434716207 +68569,79702,hughbar,1434716194 +68569,81229,hughbar,1434716152 +68569,84392,hughbar,1434716126 +68569,93363,hughbar,1434716111 +68569,94959,hughbar,1434716173 +68569,103228,hughbar,1434716137 +68569,106782,hughbar,1434716162 +68579,260,action,1435785848 +68579,260,"sc-fi,",1435785821 +68579,260,sci-fi,1435785840 +68590,78574,cinematography,1294184455 +68606,318,Top 10 Movies,1191097282 +68617,260,Science Fiction,1438717555 +68617,260,space,1438717581 +68617,337,bittersweet,1450430151 +68617,337,Leonardo DiCaprio,1450430125 +68617,356,great acting,1438718070 +68617,356,masterpiece,1438718070 +68617,356,touching,1438718070 +68617,3147,great acting,1438719010 +68617,3147,heartwarming,1438719013 +68617,3147,Michael Clarke Duncan,1438719045 +68617,3147,social commentary,1438719052 +68617,3147,Tom Hanks,1438719041 +68617,33166,multiple storylines,1438743369 +68617,33166,relationships,1438743362 +68617,33166,social commentary,1438743343 +68617,33166,twist ending,1438743350 +68617,81845,Helena Bonham Carter,1438718521 +68617,98491,romance,1447739004 +68617,98491,short,1447738996 +68654,7206,Jacques Tati,1153734983 +68660,146501,gay,1449533216 +68740,4973,https://movielens.org/explore?tag=beautifully%20filmed&sortBy=tagScore,1448924663 +68740,4973,https://movielens.org/explore?tag=french&sortBy=tagScore,1448924650 +68740,4973,https://movielens.org/explore?tag=inspirational&sortBy=tagScore,1448924653 +68740,4973,https://movielens.org/explore?tag=quirky&sortBy=tagScore,1448924660 +68740,53123,charming,1448925332 +68740,53123,good music,1448925313 +68740,53123,great soundtrack,1448925386 +68740,53123,Ireland,1448925303 +68740,53123,sweet,1448925319 +68740,64957,Brad Pitt,1448924312 +68740,64957,https://movielens.org/explore?tag=long&sortBy=tagScore,1448924240 +68740,89904,https://movielens.org/explore?tag=dogs&sortBy=tagScore,1448924615 +68740,89904,https://movielens.org/explore?tag=oscar%20(best%20picture)&sortBy=tagScore,1448924622 +68740,89904,https://movielens.org/explore?tag=romance&sortBy=tagScore,1448924609 +68740,94959,https://movielens.org/explore?tag=bittersweet&sortBy=tagScore,1448924702 +68740,94959,https://movielens.org/explore?tag=cinematography&sortBy=tagScore,1448924694 +68740,94959,https://movielens.org/explore?tag=funny&sortBy=tagScore,1448924698 +68740,94959,https://movielens.org/explore?tag=original&sortBy=tagScore,1448924705 +68740,102194,https://movielens.org/explore?tag=good%20acting&sortBy=tagScore,1448924736 +68740,109374,https://movielens.org/explore?tag=amazing%20storytelling&sortBy=tagScore,1448924552 +68740,109374,https://movielens.org/explore?tag=great%20dialogue&sortBy=tagScore,1448924565 +68740,109374,https://movielens.org/explore?tag=wes%20anderson&sortBy=tagScore,1448924578 +68740,115828,independent,1448925181 +68740,115828,romance,1448925213 +68741,32,DVD,1138582087 +68741,48,Cartoon,1137641037 +68741,48,Disney,1137641037 +68741,150,astronauts,1137640223 +68741,150,based on a true story,1137640223 +68741,150,drive in,1138582073 +68741,150,Outer space,1137642183 +68741,480,Drive In,1138582059 +68741,539,chick flick,1138582165 +68741,587,chick flick,1138582127 +68741,588,cartoon,1137640518 +68741,588,Disney,1137640518 +68741,595,Cartoon,1137640519 +68741,595,Disney,1137640519 +68741,608,overrated,1137640166 +68741,653,Dragons,1137640510 +68741,802,Good music,1137640556 +68741,1097,Aliens,1137640509 +68741,1441,Favorite,1137640513 +68741,1573,Drive In,1137642497 +68741,1591,comic book,1137640229 +68741,1727,chick flick,1137640160 +68741,1727,horrible,1137640160 +68741,1727,horses,1137640160 +68741,1835,Good music,1137640512 +68741,1917,Outer space,1137640518 +68741,2054,kids,1137640264 +68741,2140,Puppets,1137640511 +68741,2253,dream like,1137640235 +68741,2446,Good ads bad movie,1137641020 +68741,2600,Alternate Reality,1137642483 +68741,3388,bigfoot,1137640255 +68741,3388,family,1137640249 +68741,3949,drugs,1137640204 +68741,5620,AMC 24,1137642204 +68741,5881,horrible,1137640176 +68741,5943,AMC 24,1137640336 +68741,5957,AMC 24,1137642214 +68741,6058,tv,1170815663 +68741,6212,Jacksonville,1198380159 +68741,6212,TV,1198380159 +68741,6250,as-seen-on-tv,1184541098 +68741,6250,Stephen King,1184541071 +68741,6323,Liz,1138243679 +68741,6323,Pittsburgh,1138243679 +68741,6323,Rose,1138243679 +68741,6936,better the second time,1230797102 +68741,6936,good songs,1230797110 +68741,8529,airport,1137640372 +68741,8529,DVD,1137640393 +68741,8641,DVD,1137989604 +68741,33815,Movies 8,1137642475 +68741,37733,Movies 8,1137642503 +68741,37739,golf,1137640070 +68741,37844,competition,1137640133 +68741,39307,horses,1137640094 +68741,39307,kids,1137640094 +68741,39307,not a love story,1137640094 +68741,39390,FAMU,1137640142 +68741,40581,Movies 8,1138243597 +68741,40614,Movies 8,1138331124 +68741,40614,predictable,1138331133 +68741,40629,chick flick,1137639335 +68741,40629,classic,1137639335 +68741,40629,historic,1137639335 +68741,40629,Movies 8,1138243619 +68741,40629,Rose,1138243619 +68741,40851,game,1197006209 +68741,40851,good sequel,1197006209 +68741,40851,Outer space,1197006209 +68741,40851,sequel,1197006209 +68741,40962,Movies 8,1141872144 +68741,40964,Movies 8,1138499499 +68741,40964,predictable,1138582024 +68741,41569,Movies 8,1140583115 +68741,42009,Movies 8,1139366801 +68741,42013,Movies 8,1139977420 +68741,42732,Movies 8,1143350255 +68741,43871,dvd,1176081717 +68741,43919,Movies 8,1146017496 +68741,43919,stupid,1146017496 +68741,44195,blockbuster,1170815654 +68741,44195,DVD,1170815654 +68741,44397,Movies 8,1146625089 +68741,45081,dollar,1150256893 +68741,45081,Movies 8,1150256902 +68741,45208,Movies 8,1151720970 +68741,45431,Drive-In,1150257017 +68741,45431,Opening Weekend,1148264353 +68741,45431,Regal,1148264329 +68741,45499,Drive-In,1150256984 +68741,45499,Opening Weekend,1150256991 +68741,46723,movies 6,1173234967 +68741,46976,Opening Weekend,1163466024 +68741,46976,Tallahassee Regal,1163466024 +68741,47261,predictable,1173235074 +68741,47261,rental dvd,1173235103 +68741,48414,Movies 8,1166340921 +68741,48593,dvd,1197593367 +68741,48593,jacksonville,1197593367 +68741,48593,redbox,1197593356 +68741,50149,movies 8,1173234959 +68741,50792,DVD,1197005582 +68741,50872,tinseltown,1183258391 +68741,50923,movies 8,1176081684 +68741,51086,dvd,1197005560 +68741,51086,jacksonville,1197593397 +68741,51086,redbox,1197005560 +68741,51927,dvd,1197005526 +68741,51927,jacksonville,1197593401 +68741,51927,redbox,1197005526 +68741,51931,dvd,1197593265 +68741,51931,jacksonville,1197593400 +68741,51931,redbox,1197593265 +68741,52458,dvd,1197593618 +68741,52458,jacksonville,1197593618 +68741,52458,redbox,1197593618 +68741,52712,jacksonville,1199656479 +68741,52712,redbox,1199656486 +68741,53993,dvd,1197005489 +68741,53993,redbox,1197005489 +68741,54272,jacksonville,1188363748 +68741,54272,regal,1188363748 +68741,54278,dvd,1198380122 +68741,54278,jacksonville,1198380128 +68741,54278,redbox,1198380122 +68741,55259,dvd,1207803666 +68741,55259,Jacksonville,1207803666 +68741,55259,redbox,1207803666 +68741,55999,dvd,1207118454 +68741,55999,Jacksonville,1207118454 +68741,55999,Redbox,1207117595 +68741,56174,dvd,1207118357 +68741,56174,Jacksonville,1207118338 +68741,56174,Redbox,1207118338 +68741,56174,weak,1207118358 +68741,56176,dvd,1207803632 +68741,56176,jacksonville,1207803632 +68741,56176,redbox,1207803633 +68741,56339,jacksonville,1210981209 +68741,56339,redbox,1210981200 +68741,57370,jacksonville,1210981427 +68741,57370,redbox,1210981427 +68741,57370,unlikeable characters,1210981440 +68741,58156,awful,1213170484 +68741,58156,DVD,1213170484 +68741,58156,jacksonville,1213170484 +68741,58156,redbox,1213170484 +68741,58246,death,1435803582 +68741,58246,family,1435803589 +68741,58246,John Cusack,1435803606 +68741,58246,military,1435803576 +68741,58246,roadtrip,1435803587 +68741,58299,dvd,1230797393 +68741,58299,florence,1230797393 +68741,58299,let down,1230797557 +68741,58299,redbox,1230797393 +68741,59018,cincinnati,1225243684 +68741,59018,redbox,1225243684 +68741,59315,dvd,1230798971 +68741,59315,florence,1230798971 +68741,59315,redbox,1230798971 +68741,59501,dvd,1230797680 +68741,59501,florence,1230797680 +68741,59501,redbox,1230797680 +68741,59727,dvd,1230798700 +68741,59727,florence,1230798700 +68741,59727,let down,1230798700 +68741,59727,redbox,1230798700 +68741,59784,AMC,1212978146 +68741,59784,free,1212978146 +68741,59784,Jacksonville,1212978145 +68741,59784,Pre-Screening,1212978146 +68741,59784,Regency,1212978146 +68741,59784,Theatre,1212978146 +68741,59900,dvd,1230798873 +68741,59900,florence,1230798873 +68741,59900,redbox,1230798873 +68741,60074,better than expected,1230798753 +68741,60074,danberry,1230797253 +68741,60074,florence,1230797257 +68741,60126,dvd,1230798147 +68741,60126,florence,1230798147 +68741,60126,great quotes,1230798156 +68741,60126,redbox,1230798147 +68741,60756,dvd,1230797615 +68741,60756,florence,1230797615 +68741,60756,let down,1230797615 +68741,60756,redbox,1230797603 +68741,61024,cincinnati,1232585185 +68741,61024,indiana,1232585194 +68741,61024,live truck,1232585194 +68741,61024,redbox,1232585194 +68741,63131,cincinnati,1232585359 +68741,63131,dollar saver,1232585359 +68741,63131,florence,1232585359 +68741,63131,tuesday,1232585359 +68741,64497,cincinnati,1232585272 +68741,64497,dollar saver,1232585272 +68741,64497,florence,1232585272 +68741,64497,tuesday,1232585272 +68741,64716,florence,1240449089 +68741,64716,redbox,1240449089 +68741,65802,dollar saver,1240448554 +68741,65802,florence,1240448554 +68741,65802,wednesday,1240448554 +68741,67197,dvd,1249886712 +68741,67197,florence,1249886712 +68741,67197,redbox,1249886712 +68741,68793,danberry,1249886750 +68741,68793,florence,1249886750 +68741,70159,dvd,1257304135 +68741,70159,florence,1257304117 +68741,70159,redbox,1257304117 +68741,70293,dvd,1271489302 +68741,70293,florence,1271489302 +68741,70293,redbox,1271489302 +68741,73042,Cincinnati,1268890532 +68741,73042,Dollar Saver,1268890532 +68741,73042,Florence,1268890532 +68741,74789,3D,1268890548 +68741,74789,Cincinnati,1268890570 +68741,74789,IMAX,1268890570 +68741,74789,Mushie,1268890570 +68741,74789,Newport on the Levee,1268890570 +68774,260,the classic sci fi movie. must see.,1434039616 +68774,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1434039641 +68792,87304,unique story,1436399497 +68865,47,Kevin Spacey,1338860990 +68865,47,twist ending,1338861008 +68865,2291,Johnny Depp,1338861240 +68865,2762,twist ending,1338861102 +68865,3994,twist ending,1338861092 +68865,5502,sci-fi,1338861146 +68865,8783,twist ending,1338861132 +68880,3176,creepy,1422869275 +68880,3176,disturbing,1422869269 +68880,53953,Stephen King,1293570660 +68880,61108,alternative history,1420458635 +68880,61108,historical,1420458635 +68880,61108,jakubisko,1420458635 +68880,72787,midlife crisis,1422869177 +68880,72787,over the top,1422869177 +68880,72787,zombies,1422869177 +68880,82240,gothic,1443114918 +68880,82240,rock and roll,1443114920 +68880,82240,Vampires,1443114915 +68880,113225,emma stone,1424680325 +68880,113225,magic,1424680325 +68880,113225,skepticism,1424680325 +68880,115713,artificial intelligence,1435430814 +68880,115713,nudity (full frontal),1435430825 +68880,115713,philosophical,1435430821 +68880,115713,thought provoking,1435430819 +68890,76093,animation,1426103997 +68890,76093,friendship,1426104007 +68890,87520,robots,1426104036 +68890,87520,sci-fi,1426104032 +68891,8581,computers,1397861769 +68891,8581,non-fiction,1397861763 +68891,37731,Elijah Wood,1391978667 +68891,37731,england,1391978673 +68891,37731,football,1391978677 +68891,44555,Cold War,1386273718 +68891,44555,East Germany,1386273704 +68891,44555,historical,1386273731 +68891,44555,Oscar (Best Foreign Language Film),1386273727 +68891,79357,confusing,1388628195 +68891,79357,immortality,1388628232 +68891,79357,love affair,1388628215 +68891,79357,romance,1388628237 +68891,79357,sci-fi,1388628201 +68891,79357,storytelling,1388628205 +68891,79357,surreal,1388628200 +68891,79357,thought provoking,1388628271 +68891,84772,chase,1407093936 +68891,84772,nerds,1407093910 +68891,84772,Nick Frost,1407093886 +68891,84772,roadtrip,1407093892 +68891,84772,Seth Rogen,1407093924 +68891,84772,Simon Pegg,1407093871 +68891,84772,supernatural powers,1407093928 +68891,89492,baseball,1405713764 +68891,89492,Brad Pitt,1405713792 +68891,89492,Jonah Hill,1405713790 +68891,92920,wilderness,1408983949 +68891,97304,heroism,1367703621 +68891,97304,politics,1367703633 +68891,97304,true story,1367703614 +68891,98154,biography,1375461257 +68891,98154,Daniel Day-Lewis,1375461289 +68891,98154,historically inaccurate,1375461233 +68891,98154,history,1375461310 +68891,98154,Joseph Gordon-Levitt,1375461228 +68891,98154,patriotic,1375461236 +68891,99114,Funny,1366074433 +68891,99114,Great performances,1366074427 +68891,99114,Samuel L. Jackson,1366074408 +68891,99114,violence,1366074420 +68891,99117,Leslie Mann,1376808083 +68891,99117,Paul Rudd,1376808086 +68891,99117,sequel,1376808095 +68891,102123,demons,1388725526 +68891,102123,hilarious,1388725533 +68891,102123,Immature,1388725544 +68891,102123,Michael Cera,1388725503 +68891,102123,movie business,1388725555 +68891,102123,stupid,1388725510 +68891,102194,coming of age,1381797751 +68891,102194,Matthew McConaughey,1381797745 +68891,102194,supporting characters,1381797743 +68891,102445,predictable,1381699626 +68891,102445,Simon Pegg,1381699619 +68891,104303,Ashton Kutcher,1397861718 +68891,104303,business,1397861725 +68891,104303,computers,1397861733 +68891,104303,history,1397861722 +68891,104374,Domhnall Gleeson,1395701633 +68891,104374,fantasy,1395701620 +68891,104374,happiness,1395701647 +68891,104374,Rachel McAdams,1395701648 +68891,104374,time travel,1395701602 +68891,104841,bad science,1390782402 +68891,104841,cheesy,1390782410 +68891,104841,George Clooney,1390782422 +68891,104841,overrated,1390782397 +68891,104841,religion,1390782406 +68891,104841,sandra bullock,1390782423 +68891,104841,sci-fi,1390782417 +68891,104841,space,1390782431 +68891,106753,HÃ¥kan Hellström,1385929725 +68891,108932,awesome,1405168190 +68891,108932,Batman,1405168181 +68891,108932,Morgan Freeman,1405168184 +68891,109578,9/11 reference,1409268451 +68891,109578,airplane,1409268447 +68891,109578,hijacking,1409268433 +68891,109578,Liam Neeson,1409268426 +68891,109578,terrorism,1409268443 +68891,109578,thrilling,1409268459 +68930,50,crazy,1430468239 +68930,50,psychothriller,1430468239 +68930,50,unexpected ending,1430468239 +68930,318,clever,1426140293 +68930,318,genius,1426140293 +68930,318,thilling,1426140293 +68930,1198,action,1420503714 +68930,1198,exciting,1420503714 +68930,1198,mystery,1420503714 +68934,8533,Romance,1196008315 +68934,8533,The most romantic,1196008221 +68937,1438,disaster,1186604395 +68937,1883,politics,1186604419 +68937,2478,SNL,1186604413 +68937,6218,sports,1186604387 +68937,6870,Oscar,1186604406 +68949,57528,lots of blood,1226843404 +68949,57528,lots of guns,1226843404 +68949,57528,no dialogue,1226843404 +68949,57528,No story line,1226843404 +68949,66068,legal,1234188585 +68949,66068,paedophilia,1234188547 +68949,66068,true story,1234188547 +68950,47,atmospheric,1452188559 +68950,47,brad pitt,1452188543 +68950,47,dark,1452188554 +68950,47,disturbing,1452188545 +68950,47,horror,1452188550 +68950,47,powerful ending,1452188557 +68950,47,psychology,1452188541 +68950,47,twist ending,1452188538 +68950,47,violent,1452188548 +68950,260,George Lucas,1440345273 +68950,260,Science Fiction,1440345261 +68950,260,scifi cult,1440345287 +68950,260,space action,1440345309 +68950,283,great soundtrack,1452285259 +68950,551,atmospheric,1452284796 +68950,551,cult film,1452284798 +68950,551,dark,1452284774 +68950,551,gothic,1452284772 +68950,551,humorous,1452284784 +68950,551,musical,1452284794 +68950,551,surreal,1452284806 +68950,608,black comedy,1452286144 +68950,608,Coen Brothers,1452286141 +68950,608,dark comedy,1452286139 +68950,608,dark humor,1452286151 +68950,778,black comedy,1452284904 +68950,778,British,1452284909 +68950,778,drug abuse,1452284921 +68950,778,great soundtrack,1452284901 +68950,778,social commentary,1452284906 +68950,1077,dystopia,1452284250 +68950,1077,futuristic,1452284253 +68950,1077,time travel,1452284256 +68950,1077,Woody Allen,1452284249 +68950,1104,mental illness,1452285857 +68950,1104,Oscar (Best Actress),1452285851 +68950,1682,alternate reality,1452283941 +68950,1682,dark comedy,1452283930 +68950,1682,dystopia,1452283932 +68950,1779,sci-fi,1451248016 +68950,1884,satirical,1452285025 +68950,1884,social commentary,1452285015 +68950,1884,surreal,1452285010 +68950,2291,cult film,1452284882 +68950,2291,dark,1452284893 +68950,2291,dark comedy,1452284888 +68950,2291,surreal,1452284886 +68950,2495,atmospheric,1452256828 +68950,2495,Surreal,1452256820 +68950,2529,dystopia,1452284456 +68950,2529,original,1452284439 +68950,2529,post-apocalyptic,1452284442 +68950,2529,science fiction,1452284448 +68950,2529,social commentary,1452284444 +68950,2529,twist ending,1452284446 +68950,2542,black comedy,1452285174 +68950,2542,dark comedy,1452285181 +68950,2542,organized crime,1452285173 +68950,2843,humorous,1452284645 +68950,2843,kusturica,1452284650 +68950,2843,music,1452284657 +68950,2916,cult film,1452978492 +68950,2916,cyberpunk,1452978477 +68950,2916,dystopia,1452978480 +68950,2916,original plot,1452978491 +68950,2916,sci-fi,1452978483 +68950,2959,atmospheric,1452284086 +68950,2959,Brad Pitt,1452188580 +68950,2959,complicated,1452188597 +68950,2959,dark,1452284090 +68950,2959,dark comedy,1452188582 +68950,2959,disturbing,1452188587 +68950,2959,mental illness,1452188590 +68950,2959,mindfuck,1452284078 +68950,2959,philosophical,1452284074 +68950,2959,powerful ending,1452188599 +68950,2959,psychological,1452284071 +68950,2959,psychology,1452188576 +68950,2959,social commentary,1452284069 +68950,2959,surreal,1452188585 +68950,2959,thought-provoking,1452284082 +68950,2959,twist ending,1452188575 +68950,3471,aliens,1452362076 +68950,3471,first contact,1452362080 +68950,3471,sci-fi,1452362078 +68950,3471,space,1452362084 +68950,3471,Steven Spielberg,1452362082 +68950,3569,controversial,1452286043 +68950,3569,Lars von Trier,1452286034 +68950,3569,social commentary,1452286038 +68950,3569,weird,1452286041 +68950,3702,dystopia,1452284317 +68950,3702,post apocalyptic,1452284320 +68950,3702,post-apocalyptic,1452284327 +68950,3910,disturbing,1452285936 +68950,3910,great ending,1452285919 +68950,3910,great music,1452285941 +68950,3910,Lars von Trier,1452285912 +68950,3910,musical,1452285923 +68950,4226,complicated,1452188502 +68950,4226,complicated plot,1452188525 +68950,4226,cult film,1452188530 +68950,4226,Mindfuck,1452188505 +68950,4226,narrated,1452188513 +68950,4226,nonlinear,1452188493 +68950,4226,paranoia,1452188523 +68950,4226,psychological,1452188500 +68950,4226,psychology,1452188497 +68950,4226,twist ending,1452188495 +68950,4226,violence,1452188520 +68950,4973,atmospheric,1452284699 +68950,4973,beautifully filmed,1452284687 +68950,4973,cult film,1452284704 +68950,4973,feel-good,1452284691 +68950,4973,great soundtrack,1452284696 +68950,4973,surreal,1452284693 +68950,4993,Adventure,1452284713 +68950,4993,beautifully filmed,1452284717 +68950,4993,mythology,1452284730 +68950,4993,tolkien,1452284719 +68950,6971,atmospheric,1452286049 +68950,6971,dreamlike,1452286052 +68950,6971,Lars von Trier,1452286054 +68950,7371,artsy,1452286003 +68950,7371,cult film,1452285994 +68950,7371,disturbing,1452285991 +68950,7371,experimental,1452285982 +68950,7371,Lars von Trier,1452285989 +68950,7371,philosophical,1452285983 +68950,7371,social commentary,1452285985 +68950,32587,artistic,1451673916 +68950,32587,atmospheric,1451673898 +68950,32587,black comedy,1451673903 +68950,32587,Bruce Willis,1451673907 +68950,32587,cannibalism,1451673928 +68950,32587,comic book,1451673905 +68950,32587,imdb top 250,1451673948 +68950,32587,multiple storylines,1451673895 +68950,32587,narrated,1451673949 +68950,32587,Quentin Tarantino,1451673896 +68950,32587,revenge,1451673932 +68950,32587,violence,1451673910 +68950,32587,violent,1451673920 +68950,57528,lots of blood,1452978321 +68950,68237,artificial intelligence,1452284151 +68950,68237,dystopia,1452284153 +68950,68237,future,1452284169 +68950,68237,psychological,1452284165 +68950,68237,psychology,1452284149 +68950,68237,Sci-fi,1452284146 +68950,68237,space,1452284148 +68950,68237,technology,1452284178 +68950,68237,twist ending,1452284156 +68950,72641,based on a true story,1452188392 +68950,72641,Sandra Bullock,1452188384 +68950,72641,sports,1452188395 +68950,72641,true story,1452188400 +68950,86320,apocalypse,1452286015 +68950,86320,beautiful,1452286011 +68950,86320,end of the world,1452286026 +68950,86320,Lars von Trier,1452286012 +68950,106782,Amoral,1452285073 +68950,106782,Funny,1452285063 +68950,106782,Leonardo DiCaprio,1452285057 +68950,106782,Martin Scorsese,1452285055 +68950,106782,true story,1452285060 +68950,106782,visually appealing,1452285067 +68950,122886,Exploited,1451127185 +68950,122886,Fan service,1451127191 +68950,122886,Plot Recycling,1451127175 +68950,122886,Star Wars,1451127199 +68958,6385,Overrated,1137718765 +68960,4033,politics,1172878066 +68992,318,VHS,1137998249 +68997,32587,Quentin Tarantino,1236870941 +69002,260,Harrison Ford,1434745945 +69002,260,sci-fi,1434745914 +69016,1244,moving inspire,1272118027 +69016,74946,comdey english,1272118155 +69031,260,space epic,1436152250 +69031,260,space opera,1436152246 +69033,260,force,1439794763 +69033,260,galactic,1439794775 +69033,260,lightsabers,1439794785 +69033,260,luke skywalker,1439794795 +69050,260,atmospheric,1452451963 +69050,318,great acting,1452451725 +69050,924,artificial intelligence,1452451590 +69050,924,atmospheric,1452451596 +69050,924,meditative,1452451600 +69050,924,visually appealing,1452451606 +69050,1653,future,1452451693 +69050,1974,cheesy,1452452314 +69050,1974,slow,1452452317 +69050,2628,bad acting,1452451507 +69050,2628,Jar Jar Binks,1452451496 +69050,4973,feel-good,1452451801 +69050,4973,visually appealing,1452451788 +69050,48043,thought-provoking,1452451469 +69050,48043,visually appealing,1452451457 +69050,94959,cinematography,1452451892 +69050,94959,quirky,1452451838 +69050,115713,philosophical,1452451655 +69050,115713,thriller,1452451660 +69050,122886,Plot Recycling,1452451543 +69055,2706,comedy,1437764909 +69055,2706,Nudity (Topless),1437764928 +69055,2706,sexuality,1437764912 +69055,3688,Nudity (Full Frontal - Notable),1437764951 +69055,3688,Nudity (Full Frontal),1437764948 +69055,5477,Nudity (Full Frontal - Notable),1437765163 +69055,5477,Nudity (Full Frontal),1437765172 +69055,7346,Nudity (Topless),1437764895 +69055,7346,pornography,1437764893 +69055,33585,sex,1437765616 +69055,47525,intimate,1437765678 +69055,47525,male nudity,1437765691 +69055,47525,nudity (topless),1437765680 +69055,64622,Nudity (Full Frontal - Notable),1437766020 +69055,64622,Nudity (Full Frontal),1437766027 +69055,80549,sexuality,1437765021 +69055,89480,Nudity (Full Frontal),1437765829 +69055,106782,Nudity (Full Frontal),1437764844 +69055,125916,erotic,1437764759 +69055,125916,nudity (topless),1437764796 +69056,589,AI,1423494502 +69056,1198,trawell,1423494527 +69182,1721,love story,1207205895 +69182,2501,research,1207205589 +69207,733,great soundtrack,1435399300 +69221,2706,stiffler,1250527720 +69236,260,sci-fi,1432067052 +69236,260,space,1432067060 +69264,356,endearing,1432256371 +69264,356,funny,1432256371 +69264,356,heartwarming,1432256371 +69280,47,psychological,1437866527 +69280,47,serial killer,1437866518 +69280,50,great ending,1437866468 +69280,50,mindfuck,1437866476 +69280,50,organized crime,1437866472 +69280,50,twist ending,1437866461 +69280,288,psychedelic,1453877230 +69280,593,crime,1441342115 +69280,593,serial killer,1441342109 +69280,904,Alfred Hitchcock,1441342193 +69280,904,amateur detective,1441342206 +69280,904,obsession,1441342204 +69280,1092,thriller,1437867229 +69280,1258,Stephen King,1441341902 +69280,1345,stephen king,1453876560 +69280,1825,college student,1437866421 +69280,1825,drama,1437866421 +69280,1825,strip club,1437866421 +69280,2268,great performances,1437867057 +69280,2353,exciting,1437865940 +69280,2353,hackers,1437865932 +69280,2353,thriller,1437865926 +69280,2707,crazy ending,1453323044 +69280,2959,thought-provoking,1453877147 +69280,2959,twist ending,1453877144 +69280,3535,insanity,1453877199 +69280,3535,serial killer,1453877202 +69280,4226,plot twist,1453620936 +69280,4226,twist ending,1453620923 +69280,6063,psychological,1453876495 +69280,81562,survival,1441341164 +69280,81562,true story,1441341156 +69280,113565,christianity,1438064710 +69280,113565,found footage,1438060562 +69280,113565,horror,1438064721 +69280,130636,Internet,1453621867 +69280,130636,social media,1453621870 +69280,140247,plot twist,1453322982 +69281,8273,Comedy??,1250992160 +69281,8273,romance,1250992160 +69281,8273,spanish lanuage,1250992160 +69294,93510,especially when they are hella high.,1338070325 +69294,93510,straight hilarious,1338070325 +69300,261,Adapted from the books by Louisa May Alcott,1191547419 +69300,543,Mike Myers,1191590455 +69300,1028,Based on a Book,1191592698 +69300,1240,cyborgs,1191593916 +69300,1848,Based and a book,1191749206 +69300,1881,cartoon,1191549829 +69300,2114,Based on the book by S.E. Hinton,1191592273 +69300,3175,Allen Rickman,1191551618 +69300,3968,Brendon Fraser,1191591875 +69300,3988,Based on the book by Dr. Seuss,1191592119 +69300,4270,"Dwayne ""The Rock"" Johnson",1191550194 +69300,4306,Based on a book,1191553988 +69300,4720,Ghosts,1191553820 +69300,5349,based on a marvel comic book,1191591115 +69300,6379,Eliza Dushku,1191642058 +69300,6942,Allen Rickman,1191551707 +69300,7247,Dick Van Dyke,1191593376 +69300,7376,based on the life of Buford Pusser,1191547742 +69300,7454,Vampires,1191592602 +69300,37380,loosely based on a computer game,1191547657 +69300,44613,Based on the life of Pierre Dulane,1191547564 +69300,48161,"Dwayne ""The Rock"" Johnson",1191551508 +69303,3462,chaplin,1265916707 +69314,6617,Kevin Costner,1180263854 +69320,130686,deconstruction,1446626523 +69320,130686,movie magic,1446626534 +69320,146688,clairvoyant,1452605129 +69320,146688,FBI,1452605138 +69320,146688,serial killer,1452605144 +69329,260,ROBOTS AND ANDROIDS,1439750956 +69329,260,space,1439750961 +69343,260,classic,1441205589 +69343,260,geeky,1441205584 +69360,260,Adventurous,1441743945 +69360,69134,Awful,1441744730 +69363,2571,sci-fi,1433094573 +69363,79132,clever,1433094537 +69363,79132,visually appealing,1433094526 +69391,260,classic,1438730230 +69391,260,sci-fi,1438730236 +69391,356,classic,1438732644 +69391,356,friendship,1438732644 +69391,356,romance,1438732644 +69410,260,a never ending story,1437950366 +69410,260,disguised classic western,1437950399 +69413,6881,quirky,1277879304 +69416,849,thriller,1188274135 +69416,1091,dumb,1188274458 +69416,1091,funny,1188274459 +69416,1091,stupid,1188274459 +69416,1717,scream,1188274305 +69416,2116,sleep,1188274464 +69416,2391,teenagers,1188274224 +69416,2409,boxing,1188274462 +69416,2409,nostalgic,1188274461 +69416,2409,sports,1188274460 +69416,3263,basketball,1188274423 +69416,3263,funny,1188274423 +69416,3617,lame,1188274295 +69416,3785,corny,1188274162 +69416,3916,hope,1188274292 +69416,4447,blonde,1188274214 +69416,5377,romantic,1188274128 +69416,5679,scary as hell,1188274156 +69416,6373,amusing,1188274386 +69416,6378,twists & turns,1188274213 +69416,6870,weak,1188274369 +69416,6934,technology,1188274147 +69416,7147,deep,1188274128 +69416,7147,thought-provoking,1188274128 +69416,8622,documentary,1188274336 +69416,8622,good,1188274336 +69416,8622,realistic,1188274336 +69416,8644,Action,1188274405 +69416,8644,fight,1188274406 +69416,8644,robot,1188274406 +69420,107406,destruction of enviroment,1420621319 +69420,107406,fantasy,1420621319 +69420,107406,innovative,1420621319 +69459,260,cult classic,1441780029 +69459,260,space epic,1441780041 +69474,90866,Ben Kingsley,1452805715 +69474,90866,France,1452805748 +69474,90866,Jude Law,1452805756 +69474,90866,Martin Scorsese,1452805720 +69474,103384,Helena Bonham Carter,1452805903 +69474,103384,Johnny Depp,1452805896 +69474,108825,children movie,1452805541 +69474,116897,argentina,1452806415 +69474,116897,black comedy,1452806419 +69474,116897,Damián Szifrón,1452806423 +69474,116897,dark comedy,1452806425 +69474,116897,dark humor,1452806412 +69474,116897,Ricardo Darín,1452806426 +69509,26782,musical,1137704783 +69509,34072,animals,1137704856 +69509,34072,documenatary,1137704856 +69509,38038,animation,1137704745 +69509,40819,musical,1137704524 +69509,40826,musical,1137704685 +69509,41997,history,1137704583 +69509,41997,modern,1137704583 +69547,296,drugs,1421451165 +69547,296,quotes,1421451165 +69547,296,violence,1421451165 +69547,32657,http://www.tu.tv/videos/el-hombre-que-plantaba-arboles,1271713620 +69547,63062,angelina jolie,1230291451 +69547,69448,Kusturica,1274658266 +69547,84772,aliens,1338938691 +69547,84772,anti-religion,1338938691 +69547,84772,atheism,1338938716 +69547,84772,evolution,1338938716 +69547,84772,humor,1338938716 +69547,85056,the dog,1338769670 +69547,102675,disturbing,1421452092 +69547,102675,ice-cream,1421452109 +69547,102675,illness,1421452120 +69547,114707,predictable,1421607413 +69552,316,action,1424638307 +69552,316,aliens,1424638307 +69552,316,ancient egyptians,1424638307 +69553,26707,dark comedy,1420832233 +69553,26707,french,1420832233 +69553,26707,grumpy old lady,1420832233 +69553,38376,dysfunctional family,1425134414 +69553,38376,grandfather,1425134414 +69553,38376,white lies,1425134414 +69553,70201,dry humor,1426538750 +69553,70201,london,1426538750 +69553,70201,mike leigh,1426538750 +69558,260,awesome,1264372221 +69558,441,drugs,1264370159 +69558,441,high school,1264370159 +69558,441,Highly quotable,1264370159 +69558,441,LIVIN,1264370159 +69558,553,Highly quotable,1264372174 +69558,553,western,1264372174 +69558,1196,awesome,1264372208 +69558,1197,quotable,1264374219 +69558,1210,awesome,1264372197 +69558,1285,Quotable,1264372387 +69558,1290,CLASS DIFFERENCES,1264372267 +69558,1307,romantic comedy,1264369924 +69558,1307,Romantic Speech,1264369924 +69558,1835,quotable,1264373845 +69558,2572,Heath Ledger,1264370802 +69558,2572,Joseph Gordon-Levitt,1264370802 +69558,2572,Julia Stiles,1264370802 +69558,3949,addiction,1264374199 +69558,4849,Albert Brooks,1264370678 +69558,4849,Desmond Harrington,1264370678 +69558,4849,family,1264370678 +69558,4849,forgiveness,1264370678 +69558,4849,friendship,1264370678 +69558,4849,Leelee Sobieski,1264370677 +69558,5696,cowboys,1264374001 +69558,5784,Desmond Harrington,1264370569 +69558,6093,unicorns,1264372355 +69558,6646,addiction,1264372154 +69558,7361,"""meet me in montauk""",1264372552 +69558,42725,pot smoking,1264372462 +69558,42725,Quotable,1264372432 +69558,42725,video games,1264372462 +69558,44929,addiction,1264373872 +69558,44929,poetry,1264373872 +69558,46970,Highly quotable,1264374026 +69558,46970,Will Ferrell,1264374026 +69558,52088,friendship,1264373829 +69558,52088,Justin Long,1264373829 +69558,52088,ms,1264373828 +69558,52088,romance,1264373829 +69558,52088,trailer park,1264373829 +69558,54503,Bill Hader,1264374117 +69558,54503,friendship,1264374117 +69558,54503,high school,1264374117 +69558,54503,Highly quotable,1264374117 +69558,54503,Jonah Hill,1264374117 +69558,54503,Michael Cera,1264374117 +69558,54503,party,1264374117 +69558,54503,Seth Rogen,1264374117 +69558,54503,virginity,1264374117 +69558,56671,dancing,1264372509 +69558,56671,imgination,1264372509 +69558,56671,road trip,1264372509 +69558,56671,romance,1264372509 +69558,56715,Tom Waits,1264373969 +69558,56949,Katherine Heigl,1264370882 +69558,56949,romantic comedy,1264370882 +69558,60756,Highly quotable,1264374133 +69558,60756,Will Ferrell,1264374133 +69558,66203,Jennifer Aniston,1264371360 +69558,66203,Justin Long,1264371360 +69558,66203,romance,1264371360 +69558,67087,Andy Samberg,1264371433 +69558,67087,Jason Segel,1264371433 +69558,67087,Paul Rudd,1264371433 +69558,69757,artistic,1264373946 +69558,69757,Joseph Gordon-Levitt,1264373946 +69558,69757,Zooey Deschanel,1264373946 +69558,70567,asperger syndrome,1264373910 +69558,70567,hugh dancy,1264373922 +69558,70567,romance,1264373910 +69560,260,classic,1440966940 +69560,260,fun,1440966943 +69560,260,sci-fi,1440966951 +69566,7285,adolescence,1441990518 +69566,7285,teen,1441990509 +69566,111387,high school,1441990484 +69566,111387,teen,1441990490 +69569,86,ocean adventure,1423958919 +69569,86,sailboat,1423958909 +69569,86,sailing,1423958886 +69569,520,hilarious,1420935614 +69569,1197,brilliant humor,1420935545 +69569,27700,based on a true story,1388746944 +69569,27700,civil disobedience,1388746944 +69569,55247,inspirational,1388746822 +69569,91233,short,1421115895 +69569,129299,beautiful music,1426381963 +69569,129299,beautiful screenplay,1424912237 +69569,129299,classical music,1424912202 +69569,129299,old fashioned,1426381963 +69569,129299,oldfashioned,1424912177 +69569,129299,true story,1426381963 +69637,367,funny,1139354786 +69637,551,dvd,1140391966 +69637,3252,Al Pacino,1201638376 +69637,3252,Oscar (Best Actor),1201638373 +69637,3527,action,1139499221 +69637,3697,action,1139500230 +69637,4896,magic,1138583795 +69637,5459,funny,1139443493 +69637,5816,magic,1138583781 +69637,6373,funny,1139354147 +69637,6539,action,1138620521 +69637,6753,classic,1139353695 +69637,8368,magic,1138583733 +69637,8372,funny,1138634791 +69637,8810,action,1138729883 +69637,8916,good,1139353806 +69637,8949,Fairly Bad,1139353064 +69637,8958,musical,1139500487 +69637,8965,good,1139787684 +69637,8970,country music,1138730099 +69637,8974,funny,1138729745 +69637,27706,sad but much good,1138620906 +69637,30707,drama,1139500458 +69637,30749,Classic,1139352952 +69637,30793,Tim Burton,1139354395 +69637,30822,dvd,1139352899 +69637,31410,Adolf Hitler,1167659876 +69637,31410,good,1139353338 +69637,33493,space,1138729994 +69637,33615,good,1139354522 +69637,34048,action,1139354593 +69637,34150,action,1139354897 +69637,34319,action,1140392016 +69637,40815,magic,1138583471 +69637,41566,witch,1138583511 +69637,41569,monster,1138583528 +69637,42011,funny,1139499133 +69637,54001,magic,1201638461 +69705,17,chick flick,1343219938 +69705,17,hugh grant,1343219975 +69705,17,romance,1343219946 +69705,17,shakespeare,1343219961 +69705,316,aliens,1343220477 +69705,316,archaeology,1343220479 +69705,316,military,1343220508 +69705,316,mythology,1343220486 +69705,316,time travel,1343220484 +69705,589,apocalypse,1343220437 +69705,589,Arnold Schwarzenegger,1343220431 +69705,589,artificial intelligence,1343220439 +69705,589,future,1343220446 +69705,589,narrated,1343220467 +69705,589,time travel,1343220453 +69705,1183,chick flick,1343220127 +69705,1183,love story,1343220109 +69705,1183,sentimental,1343220119 +69705,4446,aliens,1343220052 +69705,4446,visually stunning,1343220074 +69705,4446,weak characters,1343220082 +69705,8969,chick flick,1343220023 +69705,8969,Renee Zellweger,1343220006 +69705,48043,alternate reality,1440773700 +69705,48043,artistic,1440773685 +69705,48043,atmospheric,1440773654 +69705,48043,dreamlike,1440773651 +69705,48043,fountain of youth,1440773691 +69705,48043,immortality,1440773659 +69705,48043,multiple storylines,1440773668 +69705,48043,nonlinear,1440773707 +69705,48043,sci-fi,1440773697 +69705,48043,surreal,1440773670 +69705,48043,time travel,1440773725 +69705,48082,can't identify with hero,1440816096 +69705,48082,fanciful,1440816071 +69705,48082,quirky,1440816067 +69705,48082,unusual,1440816104 +69705,55908,evolution,1343220267 +69705,55908,immortality,1343220233 +69705,55908,intellectual,1343220263 +69705,55908,science fiction,1343220252 +69705,55908,underrated,1343220258 +69705,79357,cinematography,1440604365 +69705,79357,nonlinear,1440604301 +69705,79357,sci-fi,1440604340 +69705,79357,surreal,1440604385 +69705,79357,time travel,1440604317 +69705,85414,military,1343220836 +69705,85414,parallel universe,1343220833 +69705,85414,time loop,1343220827 +69705,85414,time travel,1343220825 +69705,85414,twist ending,1343220846 +69705,90746,animation,1426133133 +69705,90746,comic book,1426133161 +69705,90746,motion capture,1426133147 +69705,90746,treasure hunt,1426133135 +69705,111759,aliens,1404417903 +69705,111759,comic book,1404417919 +69705,111759,future,1404417898 +69705,111759,original plot,1404417914 +69705,111759,sci-fi,1404417906 +69705,111759,time loop,1404417910 +69705,111759,time travel,1404417912 +69705,111759,Tom Cruise,1404417894 +69705,112460,animation,1422160503 +69705,112460,disney,1422160503 +69705,112460,planes,1422160503 +69705,114935,science fiction,1432011821 +69705,114935,time travel,1432011815 +69714,7090,Beautiful,1141400153 +69742,50,suspense,1212184654 +69759,364,animation,1435114620 +69759,924,sci-fi,1435114675 +69777,260,"If you haven't seen this movie, you probably haven't seen any movies",1440518873 +69777,260,Movie magic,1440518884 +69784,91826,affair,1341707848 +69784,91826,Coming of Age,1341707825 +69784,91826,jealousy,1341707860 +69784,91826,Private All Girls School,1341707836 +69784,94959,Cat,1341707498 +69784,94959,Harvey Keitel,1341707476 +69784,94959,Stolen Library Books,1341707491 +69784,94959,Wes Anderson,1341707463 +69784,95167,Kick-Butt Women,1341707715 +69784,95167,No Marriage at the End,1341707742 +69800,296,Black comedy,1432675946 +69800,296,cult film,1432675959 +69800,296,drugs,1432675943 +69800,296,good dialogue,1432675970 +69800,296,nonlinear,1432675985 +69800,296,notable soundtrack,1432675967 +69800,296,Quentin Tarantino,1432675996 +69800,296,quirky,1432675992 +69800,296,Samuel L. Jackson,1432675957 +69800,296,Uma Thurman,1432675936 +69800,2076,mystery,1432676175 +69800,2076,neo-noir,1432676161 +69800,4848,art house,1432676106 +69800,4848,dark,1432676097 +69800,4848,disturbing,1432676088 +69800,4848,dreamlike,1432676094 +69800,4848,hallucinatory,1432676103 +69800,4848,Mindfuck,1432676081 +69800,4848,mystery,1432676078 +69800,4848,nonlinear,1432676092 +69800,4848,strange,1432676111 +69800,4848,surreal,1432676089 +69800,4848,visually appealing,1432676099 +69807,260,classic sci-fi,1440682784 +69807,260,cult classic,1440682790 +69807,260,space adventure,1440682799 +69832,1127,lengthy,1398979638 +69832,1127,storyline,1398979638 +69836,293,Natalie Portman,1440985458 +69836,68554,Ewan McGregor,1440985603 +69836,68554,not faithful to the book,1440985593 +69847,260,action,1430587075 +69847,260,sci-fi,1430587069 +69865,2959,dark comedy,1315843490 +69865,2959,twist ending,1315843496 +69914,50,ensemble cast,1241406224 +69914,50,great ending,1241406226 +69914,50,Kevin Spacey,1241406217 +69914,50,twist ending,1241406234 +69914,293,Action,1243066834 +69914,293,assassin,1243066832 +69914,293,Gary Oldman,1243066836 +69914,293,great acting,1243066846 +69914,293,Jean Reno,1243066837 +69914,293,Natalie Portman,1243066840 +69914,318,drama,1242345472 +69914,318,thought-provoking,1242345464 +69914,318,twist ending,1242345458 +69914,1073,classic,1241382310 +69914,1073,Gene Wilder,1241382312 +69914,1073,Heartwarming,1241382316 +69914,1073,Quotable,1241382326 +69914,1073,whimsical,1241382318 +69914,4027,Coen Brothers,1241406257 +69914,4027,George Clooney,1241406259 +69914,4649,goofy,1241382553 +69914,4649,irreverent,1241382567 +69914,4649,satirical,1241382549 +69914,4649,silly,1241382551 +69914,4816,ben stiller,1241382254 +69914,4816,farce,1241382261 +69914,4816,goofy,1241382264 +69914,4816,mindless one liners,1241382273 +69914,4973,beautifully filmed,1243051136 +69914,4973,feel-good,1243051140 +69914,4973,imdb top 250,1243051148 +69914,4973,quirky,1243051134 +69914,4973,romance,1243051143 +69914,4973,surreal,1243051144 +69914,7836,1960s,1241382343 +69914,7836,Inspiring,1241382364 +69914,7836,Oscar (Best Documentary Feature),1241382351 +69914,7836,rock and roll,1241382354 +69914,68358,action,1242709625 +69914,68358,adventure,1242709627 +69930,8874,hilarious,1233625188 +69930,8874,Simon Pegg,1233625194 +69930,8874,zombies,1233625178 +69961,1721,Leonardo DiCaprio,1450113460 +69961,1721,love story,1450113481 +69961,1721,music,1450113470 +69961,1721,romance,1450113473 +69961,54272,animation,1450113411 +69961,54272,comedy,1450113407 +69961,54272,hilarious,1450113417 +69961,54272,simpsons,1450113413 +69964,356,psychology,1333586107 +69973,96281,fantasy,1348529669 +69973,96281,ghosts,1348529699 +69973,96281,stop motion,1348529694 +69973,96281,zombies,1348529704 +69986,1,Pixar,1161289625 +69986,50,tricky,1161289686 +69986,110,Mel Gibson,1161289642 +69986,150,space,1161289733 +69986,150,true story,1161289442 +69986,153,comic book,1161289723 +69986,165,action,1161289836 +69986,296,Tarantino,1161289609 +69986,318,classic,1161289990 +69986,364,Disney,1161289828 +69986,377,action,1161289620 +69986,480,action,1161289787 +69986,588,Disney,1161289775 +69986,590,Kevin Costner,1161289935 +69986,592,comic book,1161289798 +69986,593,crime,1161289671 +69986,648,Action,1161289611 +69986,736,action,1161289921 +69986,1036,action,1161290133 +69986,1201,spaghetti western,1161296809 +69986,1210,sci-fi,1161289632 +69986,1220,john belushi,1161289406 +69986,2028,World War II,1161289714 +69986,2571,sci-fi,1161289768 +69986,2716,Bill Murray,1161290021 +69986,2795,National Lampoon,1161290097 +69986,2797,tom hanks,1161289420 +69986,2804,Christmas,1161290128 +69986,2858,surrealism,1161289805 +69986,2922,spaghetti western,1161296811 +69986,2997,surrealism,1161289895 +69986,3421,John Belushi,1161289969 +69986,3508,eastwood,1161290067 +69986,3671,Mel Brooks,1161290054 +69986,3681,spaghetti western,1161296807 +69986,4034,drugs,1161289773 +69986,4085,Eddie Murphy,1161290041 +69986,4886,Pixar,1161289866 +69986,4963,crime,1161289692 +69986,4993,fantasy,1161289604 +69986,5349,comic book,1161289823 +69986,5445,future,1161289818 +69986,6377,Pixar,1161289914 +69986,7153,fantasy,1161289602 +69986,8636,super-hero,1161289653 +69986,33493,sci-fi,1161289596 +69986,33794,dark,1161289599 +70000,260,adventure,1423520315 +70000,260,epic,1423520315 +70000,260,soft sci-fi,1423520315 +70000,1924,so bad it's funny,1423519232 +70000,1924,so bad it's good,1423519229 +70000,2288,paranoia,1423636481 +70005,2782,gothic,1244407250 +70005,2782,Vincent Price,1244407256 +70005,5105,atmospheric,1242747283 +70005,5105,creepy,1242747266 +70005,5105,Donald Sutherland,1242747270 +70005,5105,Julie Christie,1242747274 +70005,5165,ZOMBIES,1242590199 +70005,6774,David Cronenberg,1241628248 +70005,6774,James Woods,1241628231 +70005,6774,surreal,1241628236 +70005,6774,visceral,1241628241 +70005,7068,dreamlike,1279364438 +70005,7068,hallucinatory,1279364421 +70005,44191,teen,1282859688 +70005,56786,Dusan Makavejev,1279797231 +70011,260,iconic,1439791856 +70018,49530,horrific violence,1171742564 +70018,49530,possibly scarring,1171742582 +70070,51662,action packed,1427285855 +70070,104879,mystery,1428772462 +70070,104879,pyschothriller,1428772462 +70070,104879,thriller,1428772462 +70070,115569,entertaining,1428121763 +70070,115569,psychothriller,1428121763 +70070,115569,thriller,1428121763 +70070,115617,entertaining,1427203795 +70070,115617,good story,1427203795 +70070,115617,inspiring,1427203795 +70070,130634,extreme action,1429593876 +70070,130634,mindblowing,1429593876 +70070,130634,tribute,1429593876 +70172,260,classic sci-fi,1441071812 +70172,260,future fantasy,1441071805 +70172,260,sci-fi,1441071794 +70172,260,space adventure,1441071789 +70174,81,underrated,1139068661 +70174,4979,brilliant,1139068608 +70174,4979,love,1139068608 +70174,4979,moving,1139068608 +70174,4979,seen more than once,1200695209 +70174,4979,witty,1139068608 +70174,5060,plots are for the weak,1137367430 +70183,1120,1990s,1452228673 +70183,1120,biopic,1452228676 +70183,1120,drama,1452228712 +70183,1120,freedom of expression,1452228666 +70183,1120,Woody Harrelson,1452228697 +70183,1625,David Fincher,1452375099 +70183,1625,neo-noir,1452375088 +70183,1625,plot twist,1452375076 +70183,1625,surprise ending,1452375081 +70183,1704,boston,1452227860 +70183,1704,great acting,1452227846 +70183,1704,Gus Van Sant,1452227835 +70183,1704,imdb top 250,1452227831 +70183,1704,inspirational,1452227848 +70183,1704,psychology,1452227841 +70183,1704,Robin Williams,1452227819 +70183,1704,simplistic,1452227928 +70183,1884,biographical view,1452375031 +70183,1884,Christina Ricci,1452375013 +70183,1884,comedy,1452375026 +70183,1884,drugs,1452374990 +70183,1884,frantic,1452375058 +70183,1884,Johnny Depp,1452375007 +70183,1884,psychedelic,1452375002 +70183,1884,road trip,1452374981 +70183,1884,Terry Gilliam,1452374978 +70183,2739,intelligent,1452374873 +70183,2739,strong female character,1452374828 +70183,2739,Whoopi Goldberg,1452374845 +70183,3148,charlize theron,1452374945 +70183,3148,literature,1452374909 +70183,3148,modern classic,1452374916 +70183,3148,Tobey Maguire,1452374932 +70183,3186,60s,1452374795 +70183,3186,based on a true story,1452374768 +70183,3186,book was better,1452374810 +70183,3186,dumbed down,1452374786 +70183,3186,girlie movie,1452374774 +70183,3186,psychiatry,1452374765 +70183,3186,winona ryder,1452374760 +70183,3420,1979,1452374588 +70183,3420,Al Pacino,1452374574 +70183,3420,drama,1452374591 +70183,3420,You're Out of Order! Pacino is great.,1452374585 +70183,7160,based on a true story,1452229025 +70183,7160,Charlize Theron,1452229052 +70183,7160,descent into crime,1452229068 +70183,7160,forbidden love,1452229031 +70183,7160,lesbian,1452229018 +70183,7160,serial killer,1452229021 +70183,7160,shocking with a purpose,1452229045 +70183,7361,cult film,1452227492 +70183,7361,imagination,1452227531 +70183,7361,love,1452227504 +70183,7361,sci-fi,1452227514 +70183,7361,surreal,1452227481 +70183,7361,thought-provoking,1452227539 +70183,7618,Anthony Hopkins,1452228775 +70183,7618,based on a true story,1452228781 +70183,7618,Robert Downey Jr.,1452228757 +70183,27904,animation,1452229978 +70183,27904,based on a book,1452229922 +70183,27904,conspiracy,1452230030 +70183,27904,drug abuse,1452229986 +70183,27904,Keanu Reeves,1452229935 +70183,27904,Nudity (Animated),1452230058 +70183,27904,paranoia,1452229931 +70183,27904,plot,1452229956 +70183,27904,psychology,1452229972 +70183,27904,Robert Downey Jr.,1452229974 +70183,27904,sci-fi,1452229927 +70183,27904,twist ending,1452230042 +70183,27904,visually appealing,1452229939 +70183,27904,Woody Harrelson,1452230024 +70183,32840,crafty,1452228334 +70183,32840,dark humor,1452228281 +70183,32840,strangely beautiful,1452228320 +70183,32840,Tim Burton,1452228290 +70183,37741,biopic,1452228921 +70183,37741,death penalty,1452228926 +70183,37741,eccentricity,1452228956 +70183,37741,great performances,1452228936 +70183,37741,homosexuality,1452228932 +70183,37741,slow-moving,1452228965 +70183,37741,writers at work,1452228949 +70183,46976,emma thompson,1452227612 +70183,46976,love,1452227606 +70183,46976,Maggie Gyllenhaal,1452227617 +70183,46976,modern fantasy,1452227599 +70183,46976,narrated,1452227628 +70183,46976,quirky,1452227588 +70183,84772,aliens,1452374666 +70183,84772,anti-religion,1452374726 +70183,84772,Area 51,1452374684 +70183,84772,Bill Hader,1452374694 +70183,84772,creative profanity,1452374678 +70183,84772,nerds,1452374717 +70183,84772,Seth Rogen,1452374669 +70183,84772,Simon Pegg,1452374732 +70183,84772,story,1452374689 +70183,91658,based on a book,1452228497 +70183,91658,cinematography,1452228520 +70183,91658,conspiracy theory,1452228515 +70183,91658,corruption,1452228555 +70183,91658,dark,1452228506 +70183,91658,feminism,1452228536 +70183,91658,Nudity (Topless),1452228544 +70183,91658,Rooney Mara,1452228510 +70183,91658,strong female lead,1452228501 +70183,91658,thriller,1452228564 +70183,91658,twist ending,1452228523 +70183,140711,absurd,1452229293 +70183,140711,fresh storyline,1452229378 +70183,140711,Kristen Stewart,1452229296 +70183,140711,off beat comedy,1452229321 +70183,140711,special effects,1452229355 +70184,293,dark protagonist,1441394193 +70184,293,gritty,1441394165 +70187,260,classic sci-fi,1436102719 +70187,260,space epic,1436102691 +70189,1206,ohsoso,1138609448 +70212,101360,ending kinda ruined it,1373438920 +70212,102481,better than expected,1387347851 +70237,83613,bland,1435199359 +70237,83613,boring,1435199359 +70237,83613,poorly written script,1435199359 +70243,7817,hot pants,1137540935 +70243,42725,stoner,1137540294 +70243,49272,product placement,1215554357 +70243,65261,animation,1257639015 +70243,65261,Liam Neeson,1257639023 +70243,71535,atlanta,1257638935 +70243,71535,clowns,1257638956 +70243,71535,zombies,1257638931 +70245,84844,Russian,1299208141 +70264,93363,Mars,1451408574 +70278,260,fantasy,1436787938 +70278,260,Star Wars,1436787992 +70278,260,universe,1436787978 +70278,858,Mafia,1436788290 +70320,260,meh,1442726560 +70320,260,ok,1442726563 +70339,593,ill,1141217098 +70339,593,inteligent mind,1141217098 +70350,60291,Hunter S. Thompson,1227214027 +70368,296,black comedy,1420231849 +70368,296,drama,1420231849 +70368,296,violence,1420231849 +70368,3062,World War II,1207332336 +70368,71520,Ricky Gervais,1280076550 +70368,76077,Mötley Crüe,1280096812 +70368,126548,Mae Whitman,1434908474 +70370,111,Robert De Niro,1335261344 +70370,141,Robin Williams,1446922199 +70370,296,entirely dialogue,1368375634 +70370,353,dark hero,1368375605 +70370,480,Jeff Goldblum,1418495255 +70370,553,great acting,1355160386 +70370,553,Highly quotable,1355160392 +70370,553,Val Kilmer,1355160389 +70370,555,highly quotable,1368375739 +70370,590,based on a book,1358691837 +70370,592,dark hero,1368375605 +70370,750,dark comedy,1420821924 +70370,750,Peter Sellers,1420821922 +70370,750,Quirky,1420821927 +70370,750,satire,1420821928 +70370,858,highly quotable,1368375739 +70370,922,film noir,1422038005 +70370,923,Highly quotable,1421952266 +70370,953,Heartwarming,1417454960 +70370,953,James Stewart,1417454957 +70370,1197,imdb top 250,1439582353 +70370,1199,black comedy,1423163643 +70370,1199,dark comedy,1423163644 +70370,1199,dystopia,1423163639 +70370,1199,quirky,1423163662 +70370,1199,surreal,1423163641 +70370,1199,thought-provoking,1423163646 +70370,1199,visually appealing,1423163649 +70370,1204,atmospheric,1392889638 +70370,1204,Middle East,1392889645 +70370,1210,highly quotable,1368375739 +70370,1220,Dan Aykroyd,1424611951 +70370,1220,John Belushi,1424611949 +70370,1220,notable soundtrack,1424611944 +70370,1220,rhythm & blues,1424611947 +70370,1220,Saturday Night Live,1424611953 +70370,1221,highly quotable,1368375739 +70370,1231,Ed Harris,1392378888 +70370,1231,too long,1392378863 +70370,1233,best war films,1368375649 +70370,1240,highly quotable,1368375739 +70370,1246,English literature,1439049727 +70370,1246,inspirational,1439049718 +70370,1246,Robert Sean Leonard,1439049731 +70370,1246,Robin Williams,1439049729 +70370,1246,suicide,1439049721 +70370,1247,coming of age,1416906008 +70370,1247,Dustin Hoffman,1416906001 +70370,1247,notable soundtrack,1416905998 +70370,1249,cynical,1420432038 +70370,1249,stylish,1420432039 +70370,1262,best war films,1368375649 +70370,1265,Bill Murray,1430483352 +70370,1265,romance,1430483361 +70370,1265,time loop,1430483353 +70370,1278,Gene Wilder,1423242874 +70370,1293,Oscar (Best Picture),1423329513 +70370,1391,mars,1368375682 +70370,1513,Janeane Garofalo,1418568746 +70370,1682,dark comedy,1432749458 +70370,1682,dreamlike,1432749461 +70370,1682,social commentary,1432749459 +70370,1682,witty,1432749469 +70370,1707,Horrible Sequel,1351134156 +70370,1924,Bela Lugosi,1422809739 +70370,1962,Morgan Freeman,1445785944 +70370,2009,atmospheric,1417085305 +70370,2174,black comedy,1421347120 +70370,2174,claymation,1421347129 +70370,2174,weird,1421347132 +70370,2176,James Stewart,1377948406 +70370,2176,long takes,1377948403 +70370,2186,great concept,1419714610 +70370,2324,emotional,1422730216 +70370,2324,Roberto Benigni,1422730243 +70370,2324,tear jerker,1422730227 +70370,2395,Bill Murray,1440177077 +70370,2395,deadpan,1440177074 +70370,2644,Bela Lugosi,1419598200 +70370,2662,mars,1368375682 +70370,2797,80's,1435040663 +70370,2797,Tom Hanks,1435040653 +70370,2944,best war films,1368375649 +70370,3039,accurate,1436093933 +70370,3039,Dan Aykroyd,1436093920 +70370,3105,based on a true story,1355150120 +70370,3340,Bela Lugosi,1421593929 +70370,3340,Edward D. Wood Jr.,1421593934 +70370,3469,FIGHTING THE SYSTEM,1335023976 +70370,3469,great performances,1335023978 +70370,3469,imdb top 250,1335023982 +70370,3469,Spencer Tracy,1335024011 +70370,3544,better than expected,1416703963 +70370,3735,Al Pacino,1452365477 +70370,3735,true story,1452365480 +70370,3801,courtroom drama,1416680539 +70370,4027,great soundtrack,1368381847 +70370,4187,Religious,1336819607 +70370,4720,Alejandro Amenábar,1439309467 +70370,4720,Nicole Kidman,1439309237 +70370,4720,twist ending,1439309235 +70370,5010,best war films,1368375649 +70370,5147,reflective,1422737602 +70370,5152,best war films,1368375649 +70370,5341,freedom of expression,1417170277 +70370,5341,stand-up comedy,1417170279 +70370,6460,Anthony Perkins,1432580221 +70370,6664,Nostalgia Critic,1335975204 +70370,6979,Cold War,1416825148 +70370,7143,Tom Cruise,1142020653 +70370,7153,adapted from:book,1347824157 +70370,7153,imdb top 250,1347824169 +70370,7348,looks interesting -- plot,1347420340 +70370,8984,Catherine Zeta-Jones,1351133993 +70370,8984,Julia Roberts,1351133997 +70370,26242,tense,1335007495 +70370,30810,Bill Murray,1449408299 +70370,30810,great soundtrack,1449408306 +70370,30810,Nudity (Topless),1449408326 +70370,30810,Owen Wilson,1449408310 +70370,30810,quirky,1449408302 +70370,30810,stylized,1449408308 +70370,30810,visually appealing,1449408305 +70370,30810,Wes Anderson,1449408301 +70370,30810,whimsical,1449408304 +70370,32562,claymation,1392631549 +70370,38061,clever,1348086264 +70370,38061,Robert Downey Jr.,1348086255 +70370,38061,val kilmer,1348086254 +70370,44555,Stasi,1424428671 +70370,44665,Bruce Willis,1348419696 +70370,44665,Morgan Freeman,1348419699 +70370,44665,seen more than once,1348419706 +70370,51540,David Fincher,1448738275 +70370,51540,Jake Gyllenhaal,1448738272 +70370,53318,british,1335378231 +70370,55814,French,1448289328 +70370,55814,touching,1448289326 +70370,55820,Tommy Lee Jones,1367363321 +70370,58162,dylan moran,1356590714 +70370,58162,predictable,1356590704 +70370,58162,Simon Pegg,1356590711 +70370,60753,Val Kilmer,1347398112 +70370,65230,Owen Wilson,1407607961 +70370,65261,Hayao Miyazaki,1392746567 +70370,65261,strange story,1392746569 +70370,65261,Studio Ghibli,1392746565 +70370,69481,best war films,1368375649 +70370,71057,predictable,1377631980 +70370,71057,weak characters,1377631982 +70370,71108,ending,1333912556 +70370,71108,german village,1333912587 +70370,71108,thought-provoking,1333912580 +70370,71450,awful truth,1351714432 +70370,71450,Michael Moore,1351714428 +70370,72378,bad science,1426991624 +70370,72998,predictable,1415556507 +70370,74553,animation,1444812788 +70370,74553,Atmospheric,1444812782 +70370,74553,beautiful,1444812776 +70370,74553,stylized,1444812778 +70370,77427,disturbing,1347999075 +70370,77455,art,1334051017 +70370,79132,Joseph Gordon-Levitt,1431199443 +70370,79132,Leonardo DiCaprio,1431199446 +70370,79132,Michael Caine,1431199441 +70370,79132,visually appealing,1431199437 +70370,84601,Liam Neeson,1358418478 +70370,84954,Bechdel Test:Fail,1439146888 +70370,84954,Emily Blunt,1439146877 +70370,84954,Matt Damon,1439146878 +70370,84954,Philip K. Dick,1439146880 +70370,85213,existentialism,1338325622 +70370,85213,Samuel L. Jackson,1338325626 +70370,85213,Tommy Lee Jones,1338325625 +70370,85213,unnecessary music,1338325676 +70370,89864,predictable,1368361185 +70370,91529,Christian Bale,1353352462 +70370,91529,Morgan Freeman,1353352466 +70370,93212,Thief and Cop,1451250556 +70370,94018,Rihanna,1344298544 +70370,94018,special effects,1344298820 +70370,94959,1960s,1451079552 +70370,94959,Bill Murray,1451079536 +70370,94959,Bruce Willis,1451079547 +70370,94959,Edward Norton,1451079539 +70370,94959,quirky,1451079541 +70370,94959,Wes Anderson,1451079534 +70370,94959,wilderness,1451079550 +70370,96496,better than expected,1351134322 +70370,96496,Joe Flanigan,1351134316 +70370,96496,predictable,1351134324 +70370,96610,bad science,1353373164 +70370,96610,clever,1353373191 +70370,97938,cinematography,1356458222 +70370,99764,surreal,1451587396 +70370,101962,tearjerker,1422123460 +70370,103335,crude humor,1384596642 +70370,103341,slow start,1391426388 +70370,103341,unpredictable,1391426407 +70370,103688,1970s,1414357649 +70370,103688,cliche,1414357650 +70370,103688,predictable,1414357653 +70370,104841,cinematography,1392795131 +70370,104908,serial killer,1414268048 +70370,104908,time travel,1414268042 +70370,105844,based on a book,1447081128 +70370,105844,based on a true story,1447081119 +70370,105844,cinematography,1447081123 +70370,106782,Funny,1416614196 +70370,106782,Martin Scorsese,1416614192 +70370,106782,sloppy editing,1416614182 +70370,106920,artificial intelligence,1408954988 +70370,106920,loneliness,1408955001 +70370,106920,predictable,1408955016 +70370,106920,thought-provoking,1408954994 +70370,108583,british,1445773549 +70370,108583,John Cleese,1445773545 +70370,108583,not a movie,1445773542 +70370,108583,tv series,1445773543 +70370,108583,witty,1445773548 +70370,109374,visually appealing,1422209501 +70370,109487,Matthew McConaughey,1428856263 +70370,109487,Michael Caine,1428856275 +70370,109487,time-travel,1428856266 +70370,111659,sleeping beauty,1411240471 +70370,111659,visual effects,1411240462 +70370,111759,aliens,1430417016 +70370,111759,based on a novel,1430417020 +70370,111759,time loop,1430417008 +70370,112552,J.K. Simmons,1427570207 +70370,112552,jazz,1427570211 +70370,112552,Tense,1427570210 +70370,115149,Keanu Reeves,1421525736 +70370,115569,dark,1448228074 +70370,115569,gripping,1448228085 +70370,115569,Jake Gyllenhaal,1448228076 +70370,116797,Alan Turing,1430512986 +70370,116797,Benedict Cumberbatch,1430512990 +70370,116797,cryptography,1430512984 +70370,117438,beautiful,1444507319 +70370,117438,Studio Ghibli,1444507327 +70370,119145,colin firth,1436103317 +70370,119145,Michael Caine,1436103318 +70370,119145,Parody,1436103331 +70370,122886,BB-8,1450960733 +70370,122886,Carrie Fisher,1450960747 +70370,122886,Harrison Ford,1450960739 +70370,122886,J.J. Abrams,1450960741 +70370,122886,Mark Hamill,1450960738 +70370,122886,Plot Recycling,1450960723 +70370,128360,Quentin Tarantino,1453101183 +70370,134130,based on book,1444482670 +70370,135518,predicable,1449347168 +70378,260,cult classic,1439801388 +70378,260,sci-fi,1439801380 +70420,109374,funny,1421079555 +70420,109374,intriguing,1421079555 +70420,109374,quirky,1421079555 +70422,4993,Arwen,1296467280 +70422,4993,dwarfs,1296467300 +70422,4993,elfs,1296467293 +70422,4993,fantasy,1296467341 +70423,260,sci-fi,1439849184 +70423,260,space adventure,1439849182 +70433,260,Science Fiction,1433858750 +70433,260,space action,1433858759 +70449,260,classic sci-fi,1434751746 +70449,260,sci-fi,1434751741 +70454,551,Tim Burton,1374541903 +70454,4993,fantasy,1374541446 +70454,5952,fantasy,1374541426 +70454,6016,social commentary,1374541502 +70454,86332,comic book,1374541550 +70454,86898,surreal,1374541601 +70454,97172,Tim Burton,1374541780 +70454,98809,adventure,1374541726 +70454,98809,based on a book,1374541719 +70460,260,Science Fiction,1434958512 +70460,260,space adventure,1434958525 +70483,924,Stanley Kubrick,1168409499 +70492,260,space action,1440524529 +70492,260,Star Wars,1440524540 +70524,198,dark,1186847011 +70524,198,sci-fi,1186847011 +70524,198,virtual reality,1186847011 +70524,247,boring,1186847084 +70524,247,romance,1186847084 +70524,541,great soundtrack,1186932219 +70524,724,magic,1186847100 +70524,724,teenagers,1186847100 +70524,1206,overrated,1186997053 +70524,1243,boring,1186847540 +70524,1729,great plot,1186846974 +70524,1729,violence,1186846974 +70524,2116,psychedelic,1186847454 +70524,2951,western,1186847395 +70524,2953,boring,1186847310 +70524,2953,stupid,1186847310 +70524,4262,mafia,1186847270 +70524,4848,lynch,1186847226 +70524,4848,strange,1186847226 +70524,4848,unique,1186847225 +70524,5679,horror,1186847185 +70524,5679,stupid,1186847185 +70524,7147,storytelling,1186847131 +70524,7147,warm-hearted,1186847131 +70524,7438,stylish,1186846937 +70524,7438,violence,1186846937 +70524,8970,boring,1186847538 +70585,260,adventure,1430170473 +70585,260,darth vader,1430170475 +70585,260,epic adventure,1430170470 +70585,260,fantasy,1430170429 +70585,260,space opera,1430170463 +70585,115617,adventure,1430405215 +70585,115617,animation,1430405215 +70585,115617,sci-fi,1430405215 +70604,5617,bdsm,1443399104 +70604,5617,happy end,1443399158 +70604,5617,Maggie Gyllenhaal,1443399108 +70604,66934,musical,1443398908 +70604,66934,twist ending,1443398884 +70604,109487,Matthew McConaughey,1443398957 +70604,109487,space,1443398952 +70604,109487,too much crying,1443398983 +70604,112421,black comedy,1443399015 +70604,112421,Michael Fassbender,1443399003 +70605,53827,child abuse,1424828674 +70605,53827,mental illness,1424828674 +70605,53827,multiple personality,1424828674 +70605,89030,not as good as the first,1425531877 +70605,89030,remake,1425531877 +70605,89030,stupid,1425531877 +70605,113696,disappointing,1426317082 +70605,113696,drama,1426317082 +70605,113696,mental illness,1426317082 +70614,260,"sf,science fiction",1431774511 +70614,260,space,1431774524 +70635,1208,Dark,1426433919 +70635,1208,surreal,1426433914 +70635,1237,death,1426433935 +70635,1237,existentialism,1426433937 +70696,97,black and white,1423838105 +70696,162,artist mind,1439048498 +70696,162,comic book,1439048565 +70696,162,counterculture,1439048557 +70696,162,deliberate,1439048525 +70696,162,documentary,1439048531 +70696,162,quirky,1439048539 +70696,162,raunchy,1439048552 +70696,162,sexual,1439048555 +70696,162,wry,1439048511 +70696,166,cult film,1423838231 +70696,166,surreal,1423838229 +70696,172,cyberpunk,1447851888 +70696,172,dystopia,1447851886 +70696,318,justice,1423842410 +70696,356,bittersweet,1439048457 +70696,356,emotional,1439048461 +70696,380,espionage,1439048342 +70696,380,spies,1439048330 +70696,380,terrorism,1439048348 +70696,541,cyberpunk,1423839567 +70696,541,dystopia,1423839559 +70696,541,existentialism,1423839564 +70696,541,philosophical,1423839571 +70696,541,stylized,1423839569 +70696,588,fairy tale,1439048274 +70696,588,kids and family,1439048284 +70696,588,musical,1439048290 +70696,592,action,1439048166 +70696,592,atmospheric,1439048139 +70696,592,stylized,1439048134 +70696,592,superhero,1439048174 +70696,592,tense,1439048159 +70696,595,fairy tale,1439048377 +70696,595,fairy tales,1439048388 +70696,595,kids and family,1440161129 +70696,610,sci-fi,1426537908 +70696,714,great soundtrack,1424256698 +70696,714,hallucinatory,1424256689 +70696,714,melancholy,1424256693 +70696,714,surreal,1424256691 +70696,735,dark comedy,1423838304 +70696,735,dreamlike,1423838297 +70696,735,stylized,1423838303 +70696,908,AFI #40,1423840829 +70696,908,AFI 100,1423840823 +70696,908,imdb top 250,1423840831 +70696,1194,marijuana,1426534976 +70696,1194,weed,1426534975 +70696,1209,atmospheric,1424869384 +70696,1209,imdb top 250,1423841161 +70696,1209,spaghetti western,1423841152 +70696,1209,stylized,1424869386 +70696,1209,western,1423841159 +70696,1212,atmospheric,1423841097 +70696,1217,atmospheric,1423837764 +70696,1252,100 Greatest Movies,1423841058 +70696,1252,AFI 100 (Movie Quotes),1423841053 +70696,1252,cynical,1423841039 +70696,1252,dark,1423841047 +70696,1252,imdb top 250,1423840667 +70696,1252,National Film Registry,1423841055 +70696,1261,demons,1423841169 +70696,1281,AFI 100 (Laughs),1423840926 +70696,1281,imdb top 250,1423840644 +70696,1281,National Film Registry,1423840930 +70696,1281,top 250 IMDB,1423840626 +70696,1281,World War 2,1423840937 +70696,1281,World War II,1423840924 +70696,1284,100 Greatest Movies,1423840969 +70696,1284,imdb top 250,1423840976 +70696,1284,top 250 IMDB,1423840973 +70696,1285,black comedy,1425146892 +70696,1285,cult film,1425146889 +70696,1285,satirical,1425146880 +70696,1285,snappy dialog,1425146964 +70696,1288,mockumentary,1442103326 +70696,1298,cult film,1424256377 +70696,1298,dreamlike,1424256375 +70696,1298,drugs,1424256371 +70696,1298,hallucinatory,1424256383 +70696,1298,surreal,1424256378 +70696,1721,bittersweet,1439048425 +70696,1721,chick flick,1439048445 +70696,1721,drama,1439048443 +70696,1721,love story,1439048436 +70696,1721,romance,1439048438 +70696,1721,sentimental,1439048428 +70696,1748,alternate reality,1447852127 +70696,1748,atmospheric,1447852083 +70696,1748,creepy,1447852089 +70696,1748,cult film,1447852099 +70696,1748,dark,1447852118 +70696,1748,dark fantasy,1447852078 +70696,1748,dreamlike,1447852102 +70696,1748,dystopia,1447852087 +70696,1748,existentialism,1447852122 +70696,1748,film noir,1447852091 +70696,1748,mindfuck,1447852104 +70696,1748,Neo-noir,1447852129 +70696,1748,philosophy,1447852111 +70696,1748,Post apocalyptic,1447852108 +70696,1748,post-apocalyptic,1447852106 +70696,1748,sci-fi,1447852081 +70696,1748,steampunk,1447852096 +70696,1748,stylized,1447852093 +70696,1748,surreal,1447852079 +70696,1748,thought-provoking,1447852085 +70696,1748,visually appealing,1447852124 +70696,1748,visually stunning,1447852131 +70696,1757,stylized,1425147338 +70696,1809,A non-typical story leads to a fine ending,1423842006 +70696,1809,art,1423841990 +70696,1809,art house,1423841992 +70696,1809,japan,1423841986 +70696,1965,aliens,1441493001 +70696,1965,black comedy,1441492995 +70696,1965,cult classic,1441492997 +70696,1965,dark comedy,1441492991 +70696,1965,dark humor,1443536257 +70696,1965,futuristic,1443536434 +70696,1965,macguffin,1443536263 +70696,1965,punk,1441492993 +70696,1965,punks,1443536439 +70696,1965,surreal,1441492998 +70696,2132,Oscar (Best Actress),1423840802 +70696,2303,Atmospheric,1437400629 +70696,2303,multiple storylines,1437400640 +70696,2303,politics,1437400636 +70696,2313,Atmospheric,1437399788 +70696,2313,black and white,1437399786 +70696,2313,depressing,1437399797 +70696,2313,melancholic,1437399794 +70696,2313,stylized,1437399801 +70696,2360,low budget,1423840892 +70696,2360,masterpiece,1423840894 +70696,2511,cynical,1423840949 +70696,2511,satirical,1423840959 +70696,2579,neo-noir,1423838815 +70696,2788,monty python,1423832461 +70696,3108,deep,1440091110 +70696,3108,insanity,1440091117 +70696,3108,mental illness,1440091108 +70696,3108,psychiatry,1440091128 +70696,3108,unusual,1440091124 +70696,3435,100 Greatest Movies,1423840706 +70696,3435,AFI 100,1423840700 +70696,3435,AFI 100 (Thrills),1423840703 +70696,3435,top 250 IMDB,1423840692 +70696,3462,anti-authoritarian,1440083770 +70696,3508,western,1440160749 +70696,3521,quirky,1423842144 +70696,3521,talky,1423842125 +70696,3521,wry,1423842165 +70696,3578,action,1439048478 +70696,3578,drama,1439048475 +70696,3676,Atmospheric,1423832230 +70696,3676,black and white,1423832253 +70696,3676,cult film,1423832233 +70696,3676,dreamlike,1423832240 +70696,3676,hallucinatory,1423832242 +70696,3676,surreal,1423832237 +70696,3752,absurd,1443535731 +70696,4105,cult film,1423842796 +70696,4128,cult classic,1440192630 +70696,4128,cult film,1440192633 +70696,4437,hallucinatory,1423846105 +70696,4437,stylized,1423846110 +70696,4447,girlie movie,1443535777 +70696,4713,psychedelic,1423839689 +70696,4713,trippy,1423839691 +70696,5477,complicated,1443536836 +70696,5477,disturbing,1443536827 +70696,5477,nonlinear,1443536816 +70696,5477,surreal,1443536828 +70696,6223,addiction,1423846335 +70696,6270,meditative,1423846082 +70696,6305,dystopia,1423841490 +70696,6344,Iceland,1423841765 +70696,6708,obsessive compulsive disorder,1447851388 +70696,6708,Quirky,1447851391 +70696,6708,twist ending,1447851384 +70696,6711,Amazing Cinematography,1423839031 +70696,6711,atmospheric,1423839017 +70696,6711,Melancholic,1423839032 +70696,6773,bizarre,1423836954 +70696,6773,stylized,1423836951 +70696,6807,ridiculous,1423832473 +70696,6902,funny,1424256521 +70696,6902,life philosophy,1424256514 +70696,6902,mindfuck,1424256517 +70696,6902,self discovery,1424256518 +70696,6902,surreal,1424256516 +70696,6934,alternate reality,1447851800 +70696,6934,apocalypse,1447851785 +70696,6934,cyberpunk,1447851795 +70696,6934,man versus machine,1447851789 +70696,6934,Philosophical,1447851792 +70696,6934,visually stunning,1447851804 +70696,6987,expressionism,1440161044 +70696,6987,psychology,1440161053 +70696,6987,sleepwalking,1440161055 +70696,6987,surreal,1440161029 +70696,6987,twist ending,1440161050 +70696,7013,AFI 100 (Thrills),1423840760 +70696,7013,BFI classic,1423840757 +70696,7013,imdb top 250,1423840782 +70696,7013,National Film Registry,1423840768 +70696,7235,confrontational,1440160997 +70696,7235,disturbing,1440160971 +70696,7235,Insane,1440160999 +70696,7235,ironic,1440161002 +70696,7235,Japanese,1440161012 +70696,7235,quirky,1440161008 +70696,7235,stylized,1440160968 +70696,7235,tense,1440160974 +70696,7365,dark humor,1423841392 +70696,7365,eccentricity,1423841394 +70696,7365,follow your dreams,1423841417 +70696,7365,Iceland,1423841395 +70696,7365,psychiatry,1423841407 +70696,7365,small town,1423841411 +70696,7365,wintry,1423841399 +70696,7419,anxiety,1426537604 +70696,7419,black comedy,1423836316 +70696,7419,dark comedy,1423836313 +70696,7419,surreal,1442102761 +70696,7481,aliens,1440160876 +70696,7502,pro military,1423842773 +70696,7502,war,1423842764 +70696,7502,World War II,1423842761 +70696,8014,Atmospheric,1423841463 +70696,8014,Calm,1423841473 +70696,8784,mental illness,1423839109 +70696,8914,complicated plot,1424256234 +70696,8914,Deep,1424256251 +70696,8914,dialogue driven,1424256248 +70696,8914,mindfuck,1424256238 +70696,8914,thought-provoking,1424256241 +70696,26082,Samurai,1423841294 +70696,26082,slow,1423841299 +70696,26082,suicide,1423841296 +70696,26119,tense,1447851491 +70696,26285,alien,1440192837 +70696,26285,cult film,1440192827 +70696,26285,parody,1440192833 +70696,26285,scifi,1440192825 +70696,26285,surreal,1440192842 +70696,26285,unique,1440192839 +70696,26550,VHS,1440193306 +70696,26550,visually stunning,1440193310 +70696,26593,B-movie,1440192042 +70696,26593,cheesy (good),1440191916 +70696,26810,atheism,1440192686 +70696,26810,B-movie,1440192702 +70696,26810,black comedy,1440192690 +70696,26810,cult film,1440192697 +70696,26810,dark comedy,1440192694 +70696,26810,irreligion,1440192692 +70696,26810,quirky,1440192704 +70696,26810,tense,1440192684 +70696,26974,Bizarre,1423838392 +70696,26974,stoner rock,1423838396 +70696,27320,Surreal,1443537013 +70696,27674,black comedy,1424256592 +70696,27674,dark comedy,1424256594 +70696,27674,multiple storylines,1424256595 +70696,27815,inspirational,1443535047 +70696,27834,psychology,1423838888 +70696,27850,capitalism,1423842983 +70696,30803,magic realism,1423842023 +70696,30803,visual,1423842026 +70696,31807,Twisted Ending,1424256625 +70696,32239,aliens,1442103393 +70696,32239,Crazy Guy,1442103371 +70696,33004,post-apocalyptic,1423841583 +70696,33004,sarcasm,1423841575 +70696,33004,sci-fi,1423841579 +70696,33004,space travel,1423841586 +70696,33004,witty,1423841576 +70696,33794,atmospheric,1441733811 +70696,33794,dark,1441733808 +70696,33794,melancholy,1441733816 +70696,33794,stylized,1441733818 +70696,33880,weird,1423836991 +70696,37382,comic book,1443441118 +70696,40412,Drugs,1423838032 +70696,40586,black and white,1423836281 +70696,40586,dreamlike,1440193107 +70696,40586,surreal,1440193105 +70696,45728,crude humor,1440084605 +70696,45728,dialogue driven,1440084593 +70696,45728,slackers,1440084597 +70696,45728,workplace,1440084613 +70696,47446,insanity,1447523218 +70696,47997,dystopia,1423842855 +70696,47997,satire,1423842857 +70696,48543,psychology focus,1437400214 +70696,51662,military,1440091209 +70696,53161,insanity,1423845908 +70696,53318,alternate reality,1423839285 +70696,53318,cult film,1423839292 +70696,53318,imagination,1423839287 +70696,53318,surreal,1423839289 +70696,53318,surrealism,1423839283 +70696,54171,atmospheric,1443537097 +70696,54171,atmospherically beautiful,1443537052 +70696,54171,surreal,1443537095 +70696,55207,artsy,1440089778 +70696,55207,insomnia,1440089789 +70696,55207,surreal,1440089791 +70696,55247,atmospheric,1424684824 +70696,55247,psychology,1424684827 +70696,55247,road trip,1424684822 +70696,56715,cult film,1423845825 +70696,56715,quirky,1423845831 +70696,56782,morality,1423842101 +70696,58376,Conspiracy Theory,1440160601 +70696,58376,eye-opening,1440160590 +70696,59126,atheism,1440160636 +70696,59126,daring,1440160681 +70696,59126,intellectual,1440160644 +70696,59126,intelligent,1440160642 +70696,59126,skepticism,1440160652 +70696,59126,thought-provoking,1440160640 +70696,64839,identity crisis,1426538357 +70696,64839,realistic,1426538364 +70696,65037,twist ending,1425056645 +70696,65642,complicated,1423839267 +70696,65642,paradox,1423839271 +70696,65642,plot wending,1423839269 +70696,68954,children,1443534455 +70696,69529,environmental,1440084859 +70696,70286,atmospheric,1443534644 +70696,70286,genetics,1443534651 +70696,70286,humor,1443534639 +70696,71106,nerds,1443537435 +70696,71282,corporations,1423843011 +70696,71282,vegetarians,1423843008 +70696,72694,psychology,1424256445 +70696,74228,atmospheric,1445042617 +70696,74228,puzzle,1445042625 +70696,74228,sci fi,1445042632 +70696,74228,scifi,1445042634 +70696,74228,Surreal,1445042614 +70696,74228,time loop,1445042628 +70696,74228,time travel,1445042619 +70696,74228,twist ending,1445042621 +70696,74228,twists & turns,1445042623 +70696,74324,mental illness,1443535027 +70696,74791,surreal,1440084826 +70696,74791,whimsical,1440084838 +70696,77307,dystopia,1423845756 +70696,77455,art,1439048589 +70696,77658,astronomy,1439048642 +70696,77658,evolution,1439048633 +70696,77658,irreligion,1426531147 +70696,77658,physics,1439048635 +70696,77658,science,1423842533 +70696,77800,dark comedy,1440091889 +70696,77800,Documentary Style,1440091903 +70696,77800,ridiculous,1440091897 +70696,77800,social commentary,1440091916 +70696,78746,cult classic,1440192660 +70696,80374,absurd,1423832374 +70696,80862,thought-provoking,1426534820 +70696,80862,true story,1426534822 +70696,81847,disney,1445042872 +70696,81847,musical,1445042859 +70696,81847,singing,1445042857 +70696,82150,beautiful visuals,1443537246 +70696,82150,great cinematography,1443537252 +70696,82150,surreal,1443537248 +70696,82931,violence,1423845367 +70696,83803,short,1440165119 +70696,84944,hallucinatory,1443534314 +70696,84944,quirky style,1443534317 +70696,85179,anime,1443535071 +70696,86377,stand-up comedy,1424685933 +70696,86781,disturbing,1425076636 +70696,86781,nonlinear,1425076632 +70696,86781,slow,1425076641 +70696,86781,twist ending,1425076634 +70696,86781,Unexpected Ending,1425076643 +70696,88129,visually appealing,1441733844 +70696,88345,short,1447851743 +70696,89759,realistic,1442102995 +70696,90947,depression,1423838908 +70696,92535,black comedy,1423842293 +70696,92535,stand-up comedy,1423842305 +70696,93432,vegan,1423843333 +70696,93721,documentary,1423841237 +70696,95088,misfits,1423839211 +70696,95237,slasher,1443536669 +70696,95237,surreal,1447851557 +70696,95654,short,1440158389 +70696,96020,modern life,1425801854 +70696,96821,awkward situations,1423845462 +70696,96821,plot twist,1423845466 +70696,96821,Suicide,1423845459 +70696,97648,entertaining,1425234279 +70696,97984,surreal,1442103153 +70696,99030,weird,1423836894 +70696,99437,nonlinear,1424686449 +70696,99437,surreal,1424686447 +70696,99675,realistic,1439048085 +70696,99764,moving,1445042491 +70696,99764,philosopical,1445042489 +70696,99764,surreal,1445042488 +70696,100383,drugs,1442103497 +70696,100383,psychology,1442103499 +70696,100383,twist ending,1442103495 +70696,101741,Mindfuck,1426538799 +70696,102066,slow,1443441077 +70696,102800,black-and-white,1423837008 +70696,103341,slow start,1423841618 +70696,103667,black and white justice,1424686399 +70696,103667,black and white morals,1424686404 +70696,103667,comic book feel,1424686406 +70696,103667,fantasy,1424686410 +70696,103667,quirky,1424686408 +70696,103685,experimental,1423832135 +70696,103685,psychedelic,1423832138 +70696,103685,weird,1426534702 +70696,105355,bittersweet,1442102936 +70696,105355,slow,1442102885 +70696,105355,too long,1442102899 +70696,105801,absurd,1441200644 +70696,105801,surreal,1441200646 +70696,107771,atmospheric,1425147061 +70696,107771,visually stunning,1425147066 +70696,108977,psychological,1423841944 +70696,111235,Dune,1440083953 +70696,111235,sci-fi,1440083947 +70696,111235,visuals,1440083945 +70696,112006,animated short,1445042825 +70696,112006,love,1445042827 +70696,112006,princess,1445042830 +70696,112183,alter ego,1424335448 +70696,112183,dark,1424686181 +70696,112183,great performances,1424335449 +70696,112183,magical realism,1424335440 +70696,112183,pretentious,1424686189 +70696,112183,psychological,1424335455 +70696,112183,satire,1424686179 +70696,112183,single shot,1424686175 +70696,112183,smart,1424686184 +70696,112421,black comedy,1447852169 +70696,112421,mental illness,1447852166 +70696,112421,soundtrack,1447852175 +70696,112623,apocalyptic,1443534726 +70696,112623,genetics,1443534730 +70696,112868,twist ending,1447851511 +70696,113252,gory,1440084921 +70696,113252,Visually Appealing,1440084897 +70696,113741,mind bending,1423841809 +70696,114082,short,1440165229 +70696,115122,mockumentary,1447851424 +70696,115122,vampires,1447851448 +70696,115203,cannabis,1423843859 +70696,115203,drugs,1423843862 +70696,115203,marijuana,1423843860 +70696,116227,atmospheric,1425321790 +70696,116227,good dialogue,1425321790 +70696,116227,ussr,1425321790 +70696,116855,gay romance,1425234217 +70696,116897,dark humor,1426174513 +70696,120466,AI,1447851269 +70696,120466,artificial intelligence,1447851245 +70696,120466,cyberpunk,1447851247 +70696,120466,future,1447851257 +70696,120466,robots,1447851249 +70696,120466,sci-fi,1447851267 +70696,120466,science fiction,1447851259 +70696,120466,thought provoking,1447851264 +70696,128506,cats,1430995879 +70696,128506,very funny,1430995879 +70696,128506,weird,1430995879 +70696,128671,real,1437399339 +70696,128671,somber,1437399337 +70696,130840,lovecraftian,1440161187 +70696,130840,slow build,1440161188 +70696,134170,B-movie,1440192584 +70696,134170,retro-futuristic,1440192587 +70696,134170,ridiculous,1440192576 +70696,134170,so bad it's good,1440192590 +70696,141544,post-apocalyptic,1442103452 +70719,413,stupid,1189011944 +70719,707,excellent for its time,1189012068 +70719,1298,good music,1189012068 +70719,1438,Very interesting,1189011762 +70719,1441,dumb but funny,1189012022 +70719,1590,Scary,1189011782 +70719,1883,Good Romantic Comedies,1189011760 +70719,2313,compassionate,1189011763 +70719,2478,corny,1189011703 +70719,2872,mindblowing,1189011803 +70719,2951,excellent,1189012037 +70719,2953,okay once,1189011884 +70719,3273,Stupid as Hell,1189012080 +70719,3698,exciting,1189011914 +70719,4367,sucky,1189011884 +70719,6373,good,1189012021 +70719,6870,very good,1189011898 +70719,8798,violent,1189012021 +70727,480,dinosaurs,1137957404 +70727,1262,World War II,1137957271 +70727,2081,animation,1137957262 +70727,2081,Disney,1137957262 +70727,6331,Fun to watch,1137710149 +70730,260,action,1441948690 +70730,260,sci-fi,1441948700 +70748,260,space,1433117983 +70748,260,space combat,1433117987 +70781,608,quirky but good,1137898027 +70781,858,old school mob,1137894823 +70781,1258,crazy scary,1137898010 +70781,1299,tear jerker,1137897994 +70781,2114,pony boy curtis,1137894860 +70781,2502,hilarious,1137898143 +70781,3039,comedy classic,1137898669 +70781,7438,so so sequel,1137898052 +70781,8958,almost too long,1137897797 +70781,30749,tear jerker,1137894808 +70781,40278,what's the point?,1137897687 +70817,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1287627267 +70827,4356,In Netflix queue,1168033985 +70842,120138,alien,1420536663 +70842,120138,hindi,1420536663 +70842,120138,social awarness,1420536663 +70867,260,Classic Movie,1440632844 +70867,260,oldschool,1440632862 +70913,260,sci-fi,1440731736 +70913,260,space epic,1440731742 +70917,260,Popular,1431522346 +70917,260,Science Fiction,1431522331 +70931,260,Epic,1440362508 +70931,260,sci-fi,1440362512 +70934,260,adventure,1435527471 +70934,260,great soundtrack,1435527455 +70934,260,inspiring,1435527435 +70958,260,adventure,1439756702 +70958,260,classic,1439756692 +70958,260,epic,1439756534 +70958,260,sci-fi,1439756697 +70969,307,atmospheric,1247721172 +70969,307,meditative,1247721152 +70985,593,psychological,1441545231 +70985,26662,anime,1441544094 +70985,26662,coming of age,1441544102 +70985,26662,feel-good,1441544105 +70985,26662,innocent,1441544072 +70985,26662,strong female lead,1441544120 +70985,26662,Studio Ghibli,1441544091 +70985,26662,witch,1441544133 +70985,26662,young romance,1441544073 +70985,44974,strong female lead,1441545941 +70985,88810,strong female lead,1441545201 +70987,103606,first love,1445737835 +70987,103606,relationships,1445737841 +70987,103606,writers,1445737809 +71009,342,ummarti2006,1204266331 +71009,1880,Hulu,1271904178 +71009,4226,twist ending,1193885674 +71009,27816,Hulu,1271904218 +71009,56079,Hulu,1271904156 +71009,76210,superhero,1271227549 +71009,76210,Woody Harrelson,1271227549 +71011,1246,Carpe Diem,1444678658 +71011,1259,adventure,1444678549 +71011,2959,manhood,1444678157 +71011,3949,addiction,1444678198 +71011,3949,disturbing,1444678250 +71011,79132,cognitive psychology,1444677692 +71011,81562,mountain climbing,1444678033 +71011,81562,true story,1444678022 +71060,318,twist ending,1330892442 +71060,541,sci-fi,1330892460 +71060,5952,fantasy,1330892453 +71082,82461,conspiracy theory,1422654643 +71082,82461,parent-children relationship,1422654643 +71082,82461,visually interesting--that's about it,1422654643 +71087,1923,hilarious,1139653862 +71087,1923,Overrated,1139653865 +71087,2683,happy,1137118338 +71108,7090,passionate,1259679692 +71108,7090,visual appealing,1259679653 +71108,7090,visually appealing,1259679657 +71124,45503,life crisis,1429467553 +71124,45503,meditation,1429467553 +71124,45503,mentor/trainer,1429467553 +71125,148848,Documentary,1450241129 +71125,148848,Phsycedelic Rock,1450241177 +71125,148848,psychedelic rock,1450241080 +71178,3897,sex drugs and rnr..what more could you want,1137469007 +71178,5533,sad,1137469312 +71178,5950,dull,1137469399 +71178,6551,follow it closely,1137469515 +71178,6704,ever heard of columbine,1137469575 +71183,1127,classic sci fi,1285039880 +71223,2628,George Lucas,1434465110 +71223,2628,Natalie Portman,1434465112 +71223,2628,Star Wars,1434465104 +71223,6902,life philosophy,1434465036 +71223,6902,surreal,1434465044 +71223,109487,philosophical issues,1434464961 +71223,109487,physics,1434464956 +71223,109487,sci-fi,1434464965 +71223,109487,space,1434464947 +71224,2329,Edward Norton,1260935796 +71224,2329,politics,1260935801 +71224,6016,based on a true story,1260935837 +71224,6016,drugs,1260935841 +71224,6016,multiple storylines,1260935834 +71261,372,Ethan Hawke,1295823250 +71261,3536,Jenna Elfman,1295826925 +71261,6192,Danish,1295819242 +71261,7444,Mark Ruffalo,1295750092 +71261,9010,Marion Cotillard,1295817077 +71261,65130,Kate Winslet,1295749863 +71261,71248,Jason Bateman,1295818936 +71261,71248,Mila Kunis,1295818936 +71268,296,good dialogue,1420945877 +71268,296,intersecting lives,1420945877 +71268,296,non-linear,1420945877 +71268,2318,dark,1313210404 +71268,2318,dark comedy,1313210379 +71268,2318,dark humor,1313210383 +71268,2318,Philip Seymour Hoffman,1313210389 +71268,2318,social commentary,1313210393 +71268,79357,Beauty,1313211095 +71268,79357,butterfly effect,1313211092 +71268,79357,cinematography,1313211089 +71268,79357,confusing,1313211098 +71268,79357,immortality,1313211087 +71268,79357,Jared Leto,1313211084 +71268,79357,nonlinear,1313211078 +71268,79357,style over substance,1313211104 +71268,79357,surreal,1313211075 +71268,103801,improvised,1400198737 +71269,260,classic,1437684257 +71269,260,space opera,1437684211 +71299,32,dystopia,1420662836 +71299,296,bible,1425671370 +71299,296,guns,1425671370 +71299,296,money,1425671370 +71299,356,box of chocolate,1426796591 +71299,356,running,1426796591 +71299,356,shrimp,1426796591 +71299,593,manipulation,1427479296 +71299,593,psychological thriller,1427479296 +71299,593,serial killer,1427479296 +71299,1199,dystopia,1420662822 +71299,4559,switching places,1433962220 +71299,27611,choices,1426796830 +71299,27611,destiny,1426796872 +71299,27611,sci-fi,1426796748 +71299,27611,space,1426796884 +71299,42004,dysfunctional family,1434057354 +71299,42004,road trip,1434057375 +71299,42004,transgender,1434057348 +71301,260,"imaginary world, characters, story, philosophical",1434575843 +71301,260,sci-fi,1434575817 +71301,356,drama,1434576449 +71301,356,motivation,1434576449 +71301,356,oscar winner,1434576449 +71322,2393,starship pilots,1329793614 +71322,2490,Back,1329795335 +71322,2490,Java,1329802288 +71322,2694,Daddy,1329795370 +71322,2694,Fun,1329795370 +71322,3499,jaguar,1329802678 +71322,7153,2003,1330584617 +71322,7153,fantasy world,1330584590 +71322,7153,Lord of the Rings,1330584654 +71322,7153,Oscar (Best Picture),1330584581 +71345,736,storm,1281156839 +71345,736,tornados,1281156846 +71370,2028,realistic,1144683943 +71371,1,Pixar,1374098355 +71371,277,Christmas,1374169781 +71371,1136,satire,1374169826 +71371,1220,Chicago,1374169890 +71371,3814,Woody Allen,1374117030 +71371,4973,Paris,1374169763 +71371,5991,Chicago,1374177274 +71371,6377,Pixar,1374098321 +71371,6993,Woody Allen,1374117193 +71371,7099,environmental,1374177346 +71371,8961,Pixar,1374098376 +71371,50872,pixar,1374098364 +71371,60069,Pixar,1374098334 +71371,69529,environmental,1374177359 +71371,69529,more style than substance,1374155706 +71371,86882,Paris,1374174382 +71378,1408,Adventure,1151765689 +71378,2470,adventure,1151765672 +71408,356,comedy,1436613483 +71408,356,motivation,1436613483 +71408,356,psychological,1436613483 +71419,7387,zombies,1172088954 +71423,165,always watch it when it's on tv,1320422249 +71423,165,Bruce Willis,1320422242 +71423,377,bomb,1320422354 +71423,377,explosions,1320422358 +71423,377,Thriller,1320422362 +71423,1287,historical epic,1320422151 +71423,1287,redemption,1320422165 +71423,1287,rome,1320422146 +71423,3578,Rome,1320422184 +71423,3578,sword fight,1320422188 +71423,34153,documentary,1320422027 +71423,60069,beautiful scenery,1320421422 +71423,60069,great soundtrack,1320421436 +71423,60069,inspirational,1320421433 +71423,60069,pixar,1320421442 +71423,80864,not funny,1320422997 +71423,80864,Woody Allen,1320423001 +71426,260,cult classic,1433948882 +71426,260,space action,1433948901 +71430,76829,gay,1271423833 +71430,76829,gay romance,1271423774 +71442,1,adventure,1349629673 +71442,1721,Oscar (Best Picture),1349629681 +71442,50601,fantasy,1349629564 +71442,54190,Beatles,1349629544 +71442,54190,rock and roll,1349629547 +71442,59594,black comedy,1349629516 +71442,59594,John Cusack,1349629497 +71453,2858,suburbia,1210948195 +71479,115713,artificial intelligence,1437385050 +71479,115713,protagonist dies,1437385050 +71479,115713,psychological,1437385050 +71479,120799,action,1435939541 +71479,120799,robots,1435939541 +71479,120799,time-travel,1435939541 +71479,122882,action,1438356062 +71479,122882,car stunts,1438356062 +71479,122882,postapocalyptic,1438356062 +71481,1370,Bruce Willis,1194803029 +71481,52644,R,1194802885 +71482,106782,Funny,1446552384 +71482,106782,Leonardo DiCaprio,1446552378 +71482,106782,Wall Street,1446552389 +71483,6377,animation,1439047853 +71483,6377,Pixar,1439047850 +71483,7981,better than the american version,1439047899 +71483,7981,Hong Kong,1439047885 +71483,7981,police,1439047887 +71483,7981,story,1439047894 +71483,7981,undercover cop,1439047881 +71483,45081,blood,1439048047 +71483,45081,dark,1439048038 +71483,45081,disturbing,1439048044 +71586,260,adventure,1252005504 +71586,260,fantasy,1252005509 +71586,260,Harrison Ford,1252005500 +71586,260,jedi,1252005520 +71586,260,sword fight,1252005523 +71586,589,apocalypse,1252005839 +71586,589,Arnold Schwarzenegger,1252005841 +71586,1210,boba fett,1252005167 +71586,1210,Harrison Ford,1252005144 +71586,1210,jedi,1252005188 +71586,1210,Star Wars,1252005154 +71586,2360,family,1252005665 +71586,2360,secrets,1252005675 +71586,4027,American roots music,1252004993 +71586,4027,bluegrass,1252004990 +71586,4027,Coen Brothers,1252005009 +71586,4027,odyssey,1252004930 +71586,7099,adventure,1252005703 +71586,7099,fantasy,1252005713 +71586,7099,fantasy world,1252005710 +71586,7099,Hayao Miyazaki,1252005715 +71586,7099,post-apocalyptic,1252005720 +71586,34048,book was better,1252005360 +71586,34048,Dakota Fanning,1252005402 +71586,34048,H.G. Wells,1252005351 +71586,34048,Steven Spielberg,1252005338 +71586,34048,Tom Cruise,1252005341 +71586,40819,Johnny Cash,1252005067 +71586,40819,music,1252005073 +71586,40819,true story,1252005081 +71586,59655,independent woman,1435700789 +71586,59655,poetry,1435700789 +71586,59655,punk rock,1435700789 +71586,64229,blues,1252003744 +71586,64229,chess label,1252004645 +71586,64229,chicago,1252003780 +71586,64229,chuck berry,1252003922 +71586,64229,etta james,1252003821 +71586,64229,little walter,1252003780 +71586,64229,muddy waters,1252003780 +71586,70286,mutation,1253039110 +71586,82703,germany,1437689348 +71586,82703,hot girls!,1437689348 +71586,82703,vampires,1437689348 +71603,57910,vagina dentata,1209039464 +71633,260,action,1436880175 +71633,260,sci-fi,1436880170 +71637,296,AWESOME,1226150073 +71637,27866,Nudity (Topless),1226150236 +71638,1653,drama,1444018760 +71638,1653,dystopia,1444018749 +71638,1653,future,1444018772 +71638,1653,futuristic,1444018755 +71638,1653,powerful ending,1444018769 +71638,1653,rebellion,1444018765 +71638,1653,sci-fi,1444018751 +71638,1653,science fiction,1444018762 +71638,1653,space travel,1444018768 +71638,1653,thought-provoking,1444018774 +71638,1653,visually appealing,1444018777 +71638,34405,action,1444009329 +71638,34405,adventure,1444009342 +71638,34405,black comedy,1444009311 +71638,34405,comedy,1444009344 +71638,34405,dystopia,1444009320 +71638,34405,ensemble cast,1444009332 +71638,34405,Firefly,1444009318 +71638,34405,funny,1444009337 +71638,34405,great dialogue,1444009339 +71638,34405,Joss Whedon,1444009313 +71638,34405,Nathan Fillion,1444009335 +71638,34405,quirky,1444009322 +71638,34405,sci-fi,1444009307 +71638,34405,social commentary,1444009317 +71638,34405,space,1444009309 +71638,34405,SPACE TRAVEL,1444009324 +71638,34405,space western,1444009315 +71638,34405,witty,1444009325 +71638,78703,original,1444010578 +71638,94466,drama,1444009255 +71638,94466,Science fiction,1444009248 +71638,94466,tv series,1444009258 +71638,94466,well constructed,1444009251 +71646,27773,disturbing,1216708476 +71684,7439,blood,1439952231 +71691,5066,love,1437805523 +71691,5066,sweet and romantic,1437805517 +71696,111,Martin Scorsese,1266074089 +71696,923,Amazing Cinematography,1266074130 +71696,923,Orson Welles,1266074124 +71696,923,seen more than once,1266074145 +71696,924,Stanley Kubrick,1266074114 +71696,1193,Jack Nicholson,1266074308 +71696,1193,Oscar (Best Picture),1266074311 +71696,2959,satirical,1266074229 +71696,2959,social commentary,1266074231 +71696,2959,thought-provoking,1266074234 +71696,33004,John Malkovich,1266074249 +71696,56174,zombies,1266074301 +71696,72011,George Clooney,1266074483 +71696,72011,Jason Reitman,1266074487 +71700,6679,Linux,1435520511 +71700,8368,fantasy,1435577291 +71700,8368,Gary Oldman,1435577288 +71700,8368,harry potter,1435577279 +71700,8368,idealistic,1435577295 +71700,8368,Magic,1435577282 +71700,8368,time travel,1435577285 +71700,8368,Wizards,1435577290 +71700,104879,absorbing,1435700921 +71700,104879,acting,1435700894 +71700,104879,atmospheric,1435700919 +71700,104879,great ending,1435700898 +71700,104879,realistic action,1435700910 +71700,104879,tasteful,1435700913 +71700,104879,thriller,1435700903 +71700,106782,3-hours of sex and drugs,1435577050 +71700,106782,based on a true story,1435577031 +71700,106782,drugs,1435577043 +71700,106782,Funny,1435577033 +71700,106782,Leonardo DiCaprio,1435577017 +71700,106782,Nudity (Full Frontal),1435577027 +71700,106782,Nudity (Topless),1435577036 +71700,106782,visually appealing,1435577039 +71700,106782,Wall Street,1435577041 +71700,111360,drugs,1435576889 +71700,111360,dumb science,1435576884 +71700,111360,Scarlett Johansson,1435576861 +71700,111360,strong female lead,1435576882 +71700,111360,woman lead,1435576875 +71700,112171,Denzel Washington,1435576910 +71700,112940,counterespionage,1435577630 +71700,115680,thriller,1435518477 +71700,115680,time travel,1435518467 +71700,115680,twist ending,1435518472 +71700,115680,unexpected ending,1435518855 +71700,115680,unique story,1435518855 +71700,116797,Alan Turing,1435518944 +71700,116797,autism,1435519011 +71700,116797,Benedict Cumberbatch,1435518972 +71700,116797,code breaking,1435518954 +71700,116797,Computers,1435518974 +71700,116797,cryptography,1435518948 +71700,116797,England,1435519013 +71700,116797,genius,1435518989 +71700,116797,historical inaccuracy,1435519006 +71700,116797,history,1435518984 +71700,116797,homosexuality,1435518982 +71700,116797,informatics,1435518963 +71700,116797,Keira Knightley,1435518991 +71700,116797,mathematics,1435518952 +71700,116797,World War II,1435518970 +71700,119145,british,1435689488 +71700,119145,british comedy,1435689479 +71700,119145,fighting choreografy,1435689483 +71700,119145,gentlemanly,1435689461 +71700,119145,Parody,1435689468 +71700,119145,spy,1435689470 +71700,119145,spy thriller,1435689486 +71700,119145,violent,1435689474 +71712,541,film noir,1433706787 +71712,541,Harrison Ford,1433706779 +71712,541,philosophical,1433706796 +71712,541,sci-fi,1433706772 +71712,2571,action,1433706838 +71712,2571,dark hero,1433706899 +71712,2571,martial arts,1433706858 +71712,2571,thought-provoking,1433706849 +71727,260,Carrie Fisher,1199657879 +71727,260,Harrison Ford,1199657879 +71727,260,Mark Hamill,1199657879 +71727,260,Peter Cushing,1199657879 +71727,520,Mel Brooks movie,1199657052 +71727,788,Eddie Murphy,1199659814 +71727,788,Jada Pinkett Smith,1199659814 +71727,788,James Coburn,1199659814 +71727,788,Larry Miller,1199659814 +71727,1079,Jamie Lee Curtis,1199657507 +71727,1079,John Cleese,1199657508 +71727,1079,Kevin Kline,1199657508 +71727,1079,Michael Palin,1199657508 +71727,1136,Eric Idle,1199658287 +71727,1136,Graham Chapman,1199658288 +71727,1136,John Cleese,1199658287 +71727,1136,Michael Palin,1199658287 +71727,1136,Terry Gilliam,1199658287 +71727,1136,Terry Jones,1199658287 +71727,1196,Carrie Fisher,1199657830 +71727,1196,Harrison Ford,1199657830 +71727,1196,Mark Hamill,1199657830 +71727,1198,Denholm Elliott,1199658776 +71727,1198,Harrison Ford,1199657966 +71727,1198,John Rhys-Davies,1199658776 +71727,1198,Karen Allen,1199658776 +71727,1198,Paul Freeman,1199658776 +71727,1210,Carrie Fisher,1199657954 +71727,1210,Harrison Ford,1199657268 +71727,1210,Mark Hamill,1199657954 +71727,1278,Cloris Leachman,1199658733 +71727,1278,Gene Wilder,1199658732 +71727,1278,Madeline Kahn,1199658733 +71727,1278,Marty Feldman,1199658732 +71727,1278,Mel Brooks movie,1199656607 +71727,1278,Peter Boyle,1199658732 +71727,1278,Teri Garr,1199658732 +71727,1291,Alison Doody,1199659998 +71727,1291,Denholm Elliott,1199659998 +71727,1291,Harrison Ford,1199659998 +71727,1291,John Rhys-Davies,1199659998 +71727,1291,Julian Glover,1199659998 +71727,1291,Michael Byrne,1199659998 +71727,1291,River Phoenix,1199659998 +71727,1291,Sean Connery,1199659998 +71727,2115,Amrish Puri,1199660027 +71727,2115,Harrison Ford,1199660027 +71727,2115,Jonathan Ke Quan,1199660027 +71727,2115,Kate Capshaw,1199660027 +71727,2115,Roshan Seth,1199660027 +71727,2571,Carrie-Anne Moss,1199658803 +71727,2571,Gloria Foster,1199658804 +71727,2571,Hugo Weaving,1199658804 +71727,2571,Joe Pantoliano,1199658804 +71727,2571,Keanu Reeves,1199657306 +71727,2571,Laurence Fishburne,1199657314 +71727,2571,Paul Goddard,1199658803 +71727,2571,Wachowski brothers movie,1199657327 +71727,3039,Dan Aykroyd,1199659675 +71727,3039,Denholm Elliott,1199659675 +71727,3039,Don Ameche,1199659675 +71727,3039,Eddie Murphy,1199659675 +71727,3039,Jamie Lee Curtis,1199659675 +71727,3039,Ralph Bellamy,1199659675 +71727,3481,Catherine Zeta-Jones,1199659465 +71727,3481,Iben Hjejle,1199659465 +71727,3481,Jack Black,1199659466 +71727,3481,John Cusack,1199659466 +71727,3481,Todd Louiso,1199659466 +71727,3671,Cleavon Little,1199658918 +71727,3671,David Huddleston,1199658917 +71727,3671,Gene Wilder,1199658917 +71727,3671,Harvey Korman,1199658918 +71727,3671,Madeline Kahn,1199658918 +71727,3671,Mel Brooks movie,1199656628 +71727,3671,Slim Pickens,1199658918 +71727,4085,Bronson Pinchot,1199659704 +71727,4085,Eddie Murphy,1199659704 +71727,4085,John Ashton,1199659704 +71727,4085,Judge Reinhold,1199659704 +71727,4085,Lisa Eilbacher,1199659704 +71727,4149,Jack Black,1199657039 +71727,4306,Cameron Diaz,1199659846 +71727,4306,Conrad Vernon,1199659846 +71727,4306,Eddie Murphy,1199659846 +71727,4306,Jim Cummings,1199659845 +71727,4306,John Lithgow,1199659845 +71727,4306,Mike Myers,1199659845 +71727,4306,Vincent Cassel,1199659846 +71727,4489,Arsenio Hall,1199659739 +71727,4489,Eddie Murphy,1199659739 +71727,4489,James Earl Jones,1199659739 +71727,4489,John Amos,1199659739 +71727,4890,Gwyneth Paltrow,1199659565 +71727,4890,Jack Black,1199659565 +71727,4890,Jason Alexander,1199659565 +71727,4890,Joe Viterelli,1199659565 +71727,4890,Rene Kirby,1199659565 +71727,4963,Andy Garcia,1199658230 +71727,4963,Bernie Mac,1199658230 +71727,4963,Brad Pitt,1199658230 +71727,4963,Carl Reiner,1199658230 +71727,4963,Casey Affleck,1199658230 +71727,4963,Don Cheadle,1199659383 +71727,4963,Elliott Gould,1199658230 +71727,4963,George Clooney,1199658230 +71727,4963,Julia Roberts,1199658230 +71727,4963,Matt Damon,1199658230 +71727,4963,Scott Caan,1199658230 +71727,5025,Jack Black,1199656952 +71727,5296,Cameron Diaz,1199659612 +71727,5296,Christina Applegate,1199659612 +71727,5296,Jason Bateman,1199659612 +71727,5296,Parker Posey,1199659612 +71727,5296,Selma Blair,1199659612 +71727,5296,Thomas Jane,1199659612 +71727,5803,Eddie Murphy,1199659768 +71727,5803,Famke Janssen,1199659768 +71727,5803,Malcolm McDowell,1199659768 +71727,5803,Owen Wilson,1199659768 +71727,5952,Andy Serkis,1199658338 +71727,5952,Bernard Hill,1199658338 +71727,5952,Billy Boyd,1199658338 +71727,5952,Brad Dourif,1199658338 +71727,5952,Cate Blanchett,1199658338 +71727,5952,Christopher Lee,1199658338 +71727,5952,David Wenham,1199658338 +71727,5952,Dominic Monaghan,1199658338 +71727,5952,Elijah Wood,1199658338 +71727,5952,Ian McKellen,1199658338 +71727,5952,John Rhys-Davies,1199658338 +71727,5952,Karl Urban,1199658338 +71727,5952,Miranda Otto,1199658338 +71727,5952,Orlando Bloom,1199658338 +71727,5952,Sean Astin,1199658338 +71727,5952,Viggo Mortensen,1199658338 +71727,6502,Brendan Gleeson,1199658948 +71727,6502,Christopher Eccleston,1199658948 +71727,6502,Cillian Murphy,1199658948 +71727,6502,Danny Boyle movie,1199657675 +71727,6502,Megan Burns,1199658948 +71727,6502,Naomie Harris,1199658948 +71727,6502,Noah Huntley,1199658948 +71727,6502,Ricci Harnett,1199658948 +71727,6502,Stuart McQuarrie,1199658948 +71727,6539,Johnny Depp,1199658096 +71727,6539,Keira Knightly,1199658096 +71727,6539,Orlando Bloom,1199658096 +71727,6863,Jack Black,1199656788 +71727,6936,Will Ferrell,1199656985 +71727,7153,Andy Serkis,1199658389 +71727,7153,Bernard Hill,1199658389 +71727,7153,Billy Boyd,1199658389 +71727,7153,Cate Blanchett,1199658389 +71727,7153,David Wenham,1199658389 +71727,7153,Dominic Monaghan,1199658389 +71727,7153,Elijah Wood,1199658389 +71727,7153,Hugo Weaving,1199658389 +71727,7153,Ian Holm,1199658389 +71727,7153,Ian McKellen,1199658389 +71727,7153,John Rhys-Davies,1199658389 +71727,7153,Karl Urban,1199658389 +71727,7153,Liv Tyler,1199658389 +71727,7153,Miranda Otto,1199658389 +71727,7153,Orlando Bloom,1199658389 +71727,7153,Sean Astin,1199658389 +71727,7153,Sean Bean,1199658389 +71727,7153,Viggo Mortensen,1199658389 +71727,8360,Antonio Banderas,1199658023 +71727,8360,Cameron Diaz,1199658023 +71727,8360,Eddie Murphy,1199658023 +71727,8360,John Cleese,1199658023 +71727,8360,Mike Myers,1199658023 +71727,8641,Christina Applegate,1199657584 +71727,8641,Fred Willard,1199657584 +71727,8641,Judd Apatow movie,1199660253 +71727,8641,Paul Rudd,1199657584 +71727,8641,Steve Carell,1199657584 +71727,8641,Will Ferrell,1199656660 +71727,8874,Kate Ashfield,1199659036 +71727,8874,Lucy Davis,1199659036 +71727,8874,Nick Frost,1199657782 +71727,8874,Simon Pegg,1199657782 +71727,8984,Andy Garcia,1199659206 +71727,8984,Bernie Mac,1199659206 +71727,8984,Brad Pitt,1199659206 +71727,8984,Carl Reiner,1199659206 +71727,8984,Casey Affleck,1199659206 +71727,8984,Catherine Zeta-Jones,1199659206 +71727,8984,Don Cheadle,1199659206 +71727,8984,Elliott Gould,1199659206 +71727,8984,George Clooney,1199659206 +71727,8984,Julia Roberts,1199659206 +71727,8984,Matt Damon,1199659206 +71727,8984,Robbie Coltrane,1199659206 +71727,8984,Scott Caan,1199659206 +71727,8984,Vincent Cassel,1199659206 +71727,35836,Catherine Keener,1199657639 +71727,35836,Elizabeth Banks,1199657639 +71727,35836,Judd Apatow movie,1199656685 +71727,35836,Paul Rudd,1199657639 +71727,35836,Romany Malco,1199657639 +71727,35836,Seth Rogen,1199657639 +71727,35836,Steve Carell,1199657639 +71727,45722,Johnny Depp,1199658141 +71727,45722,Keira Knightley,1199658141 +71727,45722,Orlando Bloom,1199658141 +71727,46578,Steve Carell,1199656848 +71727,46970,Amy Adams,1199658982 +71727,46970,Gary Cole,1199658982 +71727,46970,John C. Reilly,1199658982 +71727,46970,Judd Apatow movie,1199660230 +71727,46970,Leslie Bibb,1199658982 +71727,46970,Michael Clarke Duncan,1199658982 +71727,46970,Sacha Baron Cohen,1199657232 +71727,46970,Will Ferrell,1199657197 +71727,48385,Sacha Baron Cohen,1199656928 +71727,49286,Cameron Diaz,1199659495 +71727,49286,Jack Black,1199659495 +71727,49286,Jude Law,1199659495 +71727,49286,Kate Winslet,1199659495 +71727,49286,Rufus Sewell,1199659495 +71727,49396,Jack Black,1199659542 +71727,49396,Kyle Gass,1199659542 +71727,51255,Bill Bailey,1199658893 +71727,51255,Jim Broadbent,1199658893 +71727,51255,Nick Frost,1199657460 +71727,51255,Paddy Considine,1199658893 +71727,51255,Simon Pegg,1199657451 +71727,51255,Timothy Dalton,1199658893 +71727,51931,Adam Sandler,1199659161 +71727,51931,Don Cheadle,1199659161 +71727,51931,Donald Sutherland,1199659161 +71727,51931,Jada Pinkett Smith,1199659161 +71727,51931,Liv Tyler,1199659161 +71727,51931,Saffron Burrows,1199659161 +71727,52973,Charlyne Yi,1199658857 +71727,52973,Harold Ramis,1199658857 +71727,52973,Jason Segel,1199658857 +71727,52973,Jay Baruchel,1199658857 +71727,52973,Jonah Hill,1199657412 +71727,52973,Judd Apatow movie,1199656472 +71727,52973,Katherine Heigl,1199657406 +71727,52973,Leslie Mann,1199658857 +71727,52973,Martin Starr,1199658857 +71727,52973,Paul Rudd,1199658857 +71727,52973,Seth Rogen,1199656436 +71727,54503,Bill Hader,1199657742 +71727,54503,Christopher Mintz-Plasse,1199657742 +71727,54503,Emma Stone,1199657742 +71727,54503,Jonah Hill,1199656751 +71727,54503,Judd Apatow movie,1199656751 +71727,54503,Martha MacIsaac,1199657742 +71727,54503,Michael Cera,1199657742 +71727,54503,Seth Rogen,1199656751 +71727,56805,Judd Apatow movie,1199660319 +71728,1375,fiction,1161160951 +71740,296,great lines,1423511482 +71740,296,non-linear,1423511482 +71740,296,spaghetti western,1423511482 +71740,318,good acting,1425665123 +71740,318,morgan freeman,1425665123 +71740,318,touching story,1425665123 +71740,356,good acting,1424375518 +71740,356,mental disability,1424375518 +71740,356,tom hanks,1424375518 +71740,924,artificial intelligence,1424807116 +71740,924,atmospheric,1424807129 +71740,924,masterpiece,1424807099 +71740,924,music,1424807136 +71740,924,robots,1424807114 +71740,924,sci-fi,1424807104 +71740,924,soundtrack,1424807110 +71740,924,space,1424807121 +71740,924,visually appealing,1424807126 +71740,1204,History,1427045227 +71740,1204,World War I,1427045224 +71740,1287,christianity,1427045184 +71740,1287,Roman empire,1427045190 +71740,1584,Carl Sagan,1424807217 +71740,1584,mathematics,1424807204 +71740,1584,sci-fi,1424807195 +71740,1584,science,1424807198 +71740,1584,science fiction,1424807210 +71740,1590,dark,1425123900 +71740,1590,horror,1425123913 +71740,1653,atmospheric,1424807241 +71740,1653,powerful ending,1424807253 +71740,1653,sci-fi,1424807245 +71740,1653,visually appealing,1424807249 +71740,1721,catastrophe,1425334049 +71740,1876,science,1425123252 +71740,2730,music,1424807387 +71740,2730,photography,1424807376 +71740,4443,atmospheric,1425679202 +71740,4443,Future,1425679149 +71740,5881,space,1424807163 +71740,6041,disturbing,1424807609 +71740,6041,Music,1424807595 +71740,6041,Nazi Germany,1424807580 +71740,6264,bad science,1425123232 +71740,6365,thought-provoking,1425664997 +71740,33781,good acting,1426189422 +71740,33781,Peter Ustinov,1426189445 +71740,33781,Religion,1426189510 +71740,58293,historically inaccurate,1425333905 +71740,59126,skepticism,1425680538 +71740,65225,bad science,1425680605 +71740,72998,effects,1425455009 +71740,72998,visual,1425455002 +71740,84273,bad science,1425680646 +71740,84273,superstition,1425680648 +71740,94864,bad science,1425215163 +71740,106920,artificial intelligence,1425075143 +71740,106920,beautiful,1425075165 +71740,106920,philosophical,1425075151 +71740,106920,Scarlett Johansson,1425075145 +71740,106920,sci-fi,1425075162 +71740,106920,science fiction,1425075159 +71740,106920,thought-provoking,1425075167 +71740,106920,transhumanism,1425075154 +71740,111360,absurd,1425678912 +71740,111360,bad science,1425678834 +71740,111360,dumb science,1425678814 +71740,113573,dark,1428686855 +71740,113573,stylized,1428686841 +71740,114662,Bad acting,1424375280 +71740,114847,realistic,1424806972 +71740,114847,science,1424806963 +71740,114847,sensitive,1424806949 +71740,115713,philosophical,1434209813 +71740,115713,sci-fi,1434209809 +71740,115713,sensitive,1434209804 +71740,115713,thought provoking,1434209806 +71740,115713,thriller,1434209815 +71740,120466,robots,1426934437 +71740,120466,Sharlto Copley,1426934404 +71740,120466,Touching,1426934447 +71740,122882,action,1432544451 +71740,122882,adventure,1432544441 +71740,122882,dystopian,1432544447 +71740,122882,non-stop,1432544438 +71740,122882,special effects,1432544434 +71740,122882,violence,1431977754 +71740,122882,visually appealing,1431977752 +71740,132796,Bad acting,1433667106 +71740,132796,Doomsday,1433667100 +71777,31410,Germany,1154211208 +71778,69654,conspiracy,1437150674 +71778,69654,prison escape,1437150674 +71778,69654,suspense,1437150674 +71778,115713,artificial intelligence,1432174816 +71778,115713,mystery,1432174816 +71778,115713,robots,1432174816 +71779,1753,drugs,1452046001 +71779,1753,marijuana,1452046007 +71779,1753,stoner comedy,1452046004 +71792,2324,emotional,1448938386 +71792,2324,Heartwarming,1448938405 +71792,2324,World War II,1448938402 +71836,73290,animals,1420337495 +71836,73290,family,1420337495 +71836,73290,sad but good,1420337495 +71863,97,social commentary,1446576328 +71863,296,Black comedy,1446576600 +71863,296,good dialogue,1446576629 +71863,296,multiple storylines,1446576600 +71863,296,stylized,1446576618 +71863,593,investigation,1446577822 +71863,593,serial killer,1446577805 +71863,593,suspense,1446577809 +71863,593,thriller,1446577757 +71863,1206,based on a book,1446579144 +71863,1206,cult film,1446579123 +71863,1206,dystopia,1446579117 +71863,1206,satire,1446579133 +71863,1206,satirical,1446579148 +71863,1206,social commentary,1446579138 +71863,1206,stylized,1446579128 +71863,1206,Surrealism,1446579135 +71863,1241,cult classic,1446579444 +71863,1241,cult film,1446579451 +71863,1241,gore,1446579457 +71863,1241,lawn mower,1446579455 +71863,1241,New Zealand,1446579460 +71863,1241,zombies,1446579453 +71863,2329,edward norton,1446577134 +71863,2959,based on a book,1446577660 +71863,2959,dark comedy,1446577634 +71863,2959,Edward Norton,1446577622 +71863,2959,satirical,1446577663 +71863,2959,social commentary,1446577654 +71863,2959,surreal,1446577639 +71863,2959,thought-provoking,1446577648 +71863,3018,cult classic,1446579379 +71863,3018,humorous,1446579376 +71863,3693,troma,1446579275 +71863,4848,surreal,1446576380 +71863,6016,based on a true story,1446576229 +71863,6016,black comedy,1446576255 +71863,6016,gangs,1446576243 +71863,6016,multiple storylines,1446576299 +71863,37495,surreal,1446666087 +71863,44191,dystopia,1446577275 +71863,44191,revenge,1446577310 +71863,44191,revolution,1446577295 +71863,44191,sci-fi,1446577287 +71863,48774,dystopia,1446577200 +71863,54995,crude humor,1446579584 +71863,54995,grindhouse,1446579574 +71863,54995,sex scene,1446579593 +71863,54995,splatter,1446579593 +71863,54995,zombies,1446579593 +71863,57669,black comedy,1446576995 +71863,57669,dark comedy,1446576992 +71863,67255,based on a book,1446576529 +71863,67255,suspense,1446576529 +71863,68157,alternate history,1446577547 +71863,68157,black comedy,1446577539 +71863,68157,dark comedy,1446577543 +71863,68157,Quentin Tarantino,1446577532 +71863,68157,satire,1446577535 +71863,97306,clever,1446577937 +71863,97306,Dark Comedy,1446577924 +71863,97306,great cast,1446577941 +71863,97306,metafiction,1446577939 +71863,118082,black comedy,1446667423 +71863,134170,8o's,1446579875 +71863,134170,parody,1446579875 +71863,134170,ridiculous,1446579876 +71873,32,thriller,1180639053 +71876,1,Engaging,1180085428 +71876,902,classic,1177711928 +71876,919,Classic. Enduring. Ever fresh.,1297719924 +71876,2351,Classic!,1180085407 +71876,2366,Brody's nose in the kiss more dangerous than the beast!,1140555052 +71876,33166,Dialog & characters ring true despite pat coincidence & stereotyping,1140555466 +71876,39183,Arresting concept & setting;their attraction/confusion/angst is understated but affecting,1140643731 +71876,40583,Almost made me prefer being blown away to having a fingernail pulled.,1140555839 +71876,40819,Music & acting pull you in; fine contrast between June born to show biz vs Cash new & somewhat battered by it.,1140558494 +71876,42004,enlightening,1177711809 +71876,45720,Streep strong & funny,1177712037 +71876,61323,Coen Bros,1235687428 +71876,64957,touching,1231522151 +71876,78574,Realistic. Strong.,1297720003 +71878,16,casino,1451403400 +71878,16,corruption,1451403396 +71878,16,gangsters,1451403394 +71878,16,Mafia,1451403378 +71878,16,narrated,1451403389 +71878,16,organized crime,1451403385 +71878,16,violent,1451403384 +71878,170,campy,1440173781 +71878,260,hero's journey,1439776703 +71878,260,Science Fiction,1439776693 +71878,541,artificial intelligence,1440173148 +71878,541,cyberpunk,1440173132 +71878,541,neo-noir,1440173149 +71878,541,sci-fi,1440173132 +71878,741,anime,1440173742 +71878,741,artificial intelligence,1440173743 +71878,741,cyberpunk,1440173739 +71878,741,Japan,1440173756 +71878,741,sci-fi,1440173751 +71878,904,murder,1440273850 +71878,904,mystery,1440273847 +71878,904,voyeurism,1440273843 +71878,908,Film Noir,1440274069 +71878,911,Paris,1440274022 +71878,911,surprise ending,1440274029 +71878,911,twist ending,1440274027 +71878,913,black and white,1440273719 +71878,1215,anti-hero,1440173837 +71878,1215,black comedy,1440173834 +71878,1215,campy,1440173808 +71878,1215,claymation,1440173819 +71878,1215,cult classic,1440173806 +71878,1215,zombies,1440173823 +71878,1235,Cat Stevens,1440180856 +71878,1235,dark comedy,1440180817 +71878,1235,May-December romance,1440180856 +71878,1235,suicide,1440180869 +71878,1252,Film Noir,1440273785 +71878,1252,incest,1440273804 +71878,1252,Los Angeles,1440273793 +71878,1252,private detective,1440273789 +71878,1617,film noir,1439825422 +71878,1617,neo-noir,1439825413 +71878,2948,james bond,1440274334 +71878,3435,adultery,1440273763 +71878,3435,black and white,1440273750 +71878,3435,film noir,1440273751 +71878,3435,murder,1440273765 +71878,3994,superhero,1440267302 +71878,3994,twist ending,1440267310 +71878,4973,French,1439776855 +71878,5463,dragons,1440608736 +71878,5463,post-apocalyptic,1440608733 +71878,5528,stalker,1440274148 +71878,6755,Elvis iconography,1440173862 +71878,6755,mummy,1440173851 +71878,6867,depression,1440180893 +71878,6867,dwarf,1440135484 +71878,6867,Little person,1440180981 +71878,6867,loneliness,1440135491 +71878,6867,small town,1440135498 +71878,6867,trains,1440135496 +71878,6936,Little people,1440184142 +71878,7460,black and white,1440172790 +71878,7460,dialogue driven,1440172846 +71878,7460,minimalist,1440172827 +71878,7460,no plot,1440172827 +71878,7460,smoking,1440172814 +71878,33779,stand-up comedy,1440135602 +71878,34405,based on a TV show,1440180689 +71878,34405,sci-fi,1440180695 +71878,34405,space western,1440180716 +71878,44761,film noir,1439825452 +71878,44761,neo-noir,1439825456 +71878,44761,slang,1439825475 +71878,52328,disappointing ending,1445816454 +71878,52328,great soundtrack,1445816432 +71878,57669,Little person,1440181027 +71878,59387,beautiful,1440273483 +71878,59387,cinematography,1440273433 +71878,59387,story-in-a-story,1440273445 +71878,59387,suicide,1440273471 +71878,59387,suicide attempt,1440273436 +71878,59387,surreal,1440273455 +71878,59387,visually appealing,1440273442 +71878,59387,visually stunning,1440273481 +71878,61240,adolescence,1440273607 +71878,61240,bullying,1440273611 +71878,61240,dark,1440273615 +71878,61240,vampire,1440273594 +71878,63222,Bank robbery,1440267506 +71878,63222,hostages,1440267494 +71878,68237,artificial intelligence,1440173076 +71878,68237,clones,1440173102 +71878,68237,cloning,1447456240 +71878,68237,Sci-fi,1440173070 +71878,72714,vegan,1442259037 +71878,79895,french,1439776915 +71878,82461,daft punk,1439790991 +71878,82461,soundtrack,1439790988 +71878,88129,cinematography,1440177771 +71878,88129,great soundtrack,1440177777 +71878,89535,french,1439780096 +71878,89535,illegal immigration,1439780085 +71878,89753,Cold War,1440273652 +71878,89753,espionage,1440273652 +71878,89753,slow paced,1440273658 +71878,89753,Spies,1440273655 +71878,90809,French Film,1439777013 +71878,90809,gender identity,1439777015 +71878,92259,based on a true story,1440267699 +71878,92259,disability,1440267699 +71878,92259,rich and poor,1440267699 +71878,92259,unlikely friendships,1440267699 +71878,92643,french,1439776942 +71878,92643,protagonist is a teacher,1439776960 +71878,92643,school,1439776954 +71878,93432,vegan,1442259030 +71878,93840,dark comedy,1445806353 +71878,93840,original plot,1445806356 +71878,93840,plot twist,1445806359 +71878,93840,satire,1445806369 +71878,97306,Dark Comedy,1440172960 +71878,97306,great cast,1440172983 +71878,101739,remake,1451423671 +71878,106072,comic book,1440168325 +71878,106072,Marvel Cinematic Universe,1440168290 +71878,106072,superhero,1440168319 +71878,106920,artificial intelligence,1439790939 +71878,106920,transhumanism,1439790945 +71878,107713,vegan,1442259041 +71878,107848,vegan,1442259019 +71878,108583,not a movie,1441210963 +71878,109687,physics,1447456175 +71878,111759,aliens,1445906929 +71878,111759,repeating day,1445907017 +71878,111759,sci-fi,1445906920 +71878,111759,time loop,1445906917 +71878,111759,time travel,1445906923 +71878,111781,Action,1450248651 +71878,111781,car chase,1450248649 +71878,111781,espionage,1450248654 +71878,112852,comic book,1440168346 +71878,112852,great soundtrack,1439791026 +71878,112852,Marvel Cinematic Universe,1440168349 +71878,112852,science fiction,1440168353 +71878,115122,mockumentary,1440273565 +71878,115122,vampires,1440273567 +71878,115713,artificial intelligence,1440173622 +71878,115713,sci-fi,1440173654 +71878,115713,turing test,1440173643 +71878,121231,horror,1445816307 +71878,122886,action,1451236897 +71878,122886,Fan service,1451236874 +71878,122886,space,1451236900 +71878,122886,Star Wars,1451236844 +71878,122900,comic book,1449647760 +71878,122900,heist,1449647769 +71878,122900,Marvel,1449647756 +71878,122900,sci-fi,1449647761 +71878,122900,superhero,1449647757 +71878,128542,Australia,1445806262 +71878,128542,zombies,1445806262 +71878,129013,Stand-up comedy,1440135565 +71878,138036,spy,1448867449 +71878,138036,unlikely friendships,1448867474 +71878,139644,cartel,1453656057 +71878,139644,CIA,1453656074 +71878,139644,FBI,1453656076 +71878,139644,revenge,1453656088 +71878,140816,Christmas,1451024737 +71878,140816,Los Angeles,1451024733 +71878,140816,transexual,1451024730 +71896,2571,Animated Action,1445503496 +71896,2571,Great Music,1445503515 +71914,4713,EXPERIMENTS GONE AWRY,1234995265 +71914,4713,sensory deprivation,1234995257 +71914,4713,trippy,1234995252 +71945,6243,Horror,1426902976 +71945,6243,japanese horror,1426902883 +71945,6243,Onryo-dead girl,1426902871 +71945,6243,Sadako Yamamura,1426902955 +71945,32743,Onryo,1426967853 +71945,32743,Sadako Yamamura,1426967833 +71945,96588,Rebel Wilson,1422809489 +71945,105769,dystpoia,1422809925 +71945,118880,Ana Lily Amirpour,1427527324 +71945,118880,Antihero,1427527304 +71945,118880,black and white,1427527312 +71945,118880,Goth skater Persian hijab wearing vampire girl,1427526948 +71945,118880,spaghetti western,1427526992 +71945,118880,vampires,1427526973 +71945,125630,comedy,1422676262 +71945,125630,gangster,1422676262 +71945,125630,street gangs,1422676262 +71945,127585,psychological horror,1423011237 +71945,127585,psychological thriller,1423011192 +71945,129913,ghost,1426276769 +71945,129913,horror,1426276775 +71945,129913,Samara Morgan,1426276730 +71945,129913,samara morgan's video goes viral,1426618270 +71945,129913,segue between the ring and the ring two,1426618270 +71945,129913,short,1426618270 +71945,130640,onryo-dead girl,1427579376 +71945,130640,sadako yamamura,1427579376 +71945,130640,vengeful ghost,1427579376 +71945,132048,revenge,1428470311 +71945,132048,vengeful spirit,1428470302 +71951,8366,too much religion,1142021285 +71983,1485,comedy,1157820260 +71983,1485,jim carrey,1157820163 +71983,6377,animation,1157820301 +71983,6377,Pixar,1157820170 +71993,107,treasure,1367693491 +71993,256,arnold,1367693596 +71993,380,arnold,1367693596 +71993,485,arnold,1367693596 +71993,589,arnold,1367693596 +71993,592,dark hero,1367693558 +71993,898,screwball comedy,1367694600 +71993,904,voyeurism,1137737142 +71993,905,screwball comedy,1367694600 +71993,947,screwball comedy,1367694600 +71993,1069,noir thriller,1367693509 +71993,1179,neo-noir,1367694644 +71993,1221,sequel,1137737081 +71993,1240,arnold,1367693596 +71993,1252,noir thriller,1367693509 +71993,1284,noir thriller,1367693509 +71993,1285,cheerleading,1367693582 +71993,1291,treasure,1367693491 +71993,1387,spielberg,1367694763 +71993,1391,mars,1367693539 +71993,1617,neo-noir,1367694644 +71993,2022,jesus,1367693459 +71993,2028,spielberg,1367694763 +71993,2193,dragon,1367694697 +71993,2205,screwball comedy,1367694600 +71993,2447,cheerleading,1367693582 +71993,2571,dark hero,1367693559 +71993,2662,mars,1367693539 +71993,2803,conspiracy theory,1367694681 +71993,2916,arnold,1367693596 +71993,2935,screwball comedy,1367694601 +71993,2937,screwball comedy,1367694601 +71993,2950,stranded,1367693527 +71993,3250,mountain climbing,1367694726 +71993,3264,cheerleading,1367693582 +71993,3435,noir thriller,1367693509 +71993,3468,pool,1137737106 +71993,3683,neo-noir,1367694644 +71993,3786,cheerleading,1367693582 +71993,3861,cheerleading,1367693582 +71993,4142,christian,1367694624 +71993,4974,cheerleading,1367693582 +71993,5017,noir thriller,1367693509 +71993,5445,spielberg,1367694763 +71993,5463,dragon,1367694697 +71993,5989,spielberg,1367694763 +71993,6377,short-term memory loss,1367694746 +71993,6539,treasure,1367693491 +71993,6696,bollywood,1367693443 +71993,6787,Politics,1137737083 +71993,7060,jesus,1367693459 +71993,7293,short-term memory loss,1367694746 +71993,7318,jesus,1367693459 +71993,7361,memory,1137737282 +71993,7728,noir thriller,1367693509 +71993,8529,stranded,1367693527 +71993,30707,dark hero,1367693559 +71993,56775,treasure,1367693491 +71993,59784,dragon,1367694697 +71993,76093,dragon,1367694697 +71995,5956,Victorian era,1318294669 +71995,73017,Victorian era,1318294651 +72024,296,classic,1427493112 +72024,296,funny,1427493112 +72024,296,violent,1427493112 +72033,39,Alicia Silverstone,1307367753 +72033,39,romance,1307367761 +72033,39,seen more than once,1307367747 +72033,39,silly,1307367766 +72033,260,classic,1307382760 +72033,260,George Lucas,1307382773 +72033,260,good versus evil,1307382757 +72033,260,Harrison Ford,1307382777 +72033,260,sci-fi,1307382744 +72033,260,space,1307382745 +72033,260,SPACE TRAVEL,1307382747 +72033,262,based on a book,1307373524 +72033,262,boarding school,1307373353 +72033,262,Class Differences,1307373433 +72033,262,imagination,1307373553 +72033,262,orphan,1307373454 +72033,262,riches to rags,1307373472 +72033,293,Action,1307373271 +72033,293,assassin,1307373258 +72033,293,corruption,1307373268 +72033,293,friendship,1307373274 +72033,293,great acting,1307373285 +72033,293,hitman,1307373283 +72033,293,quirky,1307373266 +72033,352,Brooklyn,1307471587 +72033,352,Child's Point Of View,1307471675 +72033,352,Poverty,1307471593 +72033,356,bittersweet,1307372869 +72033,356,classic,1307372888 +72033,356,history,1307372874 +72033,356,inspirational,1307372889 +72033,356,romance,1307372907 +72033,356,Tom Hanks,1307372883 +72033,356,vietnam war,1307372898 +72033,531,hypochondria,1307373716 +72033,531,magic,1307373721 +72033,531,mansion,1307373806 +72033,531,secret,1307373822 +72033,531,shut in,1307373769 +72033,593,psychological,1307372992 +72033,593,psychology,1307373011 +72033,593,serial killer,1307372977 +72033,593,suspense,1307372980 +72033,1213,crime,1307381362 +72033,1213,gangsters,1307381383 +72033,1213,gritty,1307381367 +72033,1213,mafia,1307381363 +72033,1213,Martin Scorsese,1307381366 +72033,1213,organized crime,1307381372 +72033,1213,Ray Liotta,1307381354 +72033,1257,black comedy,1307375161 +72033,1257,cult film,1307375194 +72033,1257,depression,1307375087 +72033,1257,exchange student,1307375093 +72033,1257,quirky,1307375179 +72033,1257,surreal,1307375162 +72033,1270,1980s,1307367678 +72033,1270,adventure,1307367677 +72033,1270,based on a book,1307367697 +72033,1270,quirky,1307367683 +72033,1270,time travel,1307367682 +72033,1270,whimsical,1307367710 +72033,1285,Anti Conformity,1307374860 +72033,1285,black comedy,1307374748 +72033,1285,Christian Slater,1307374958 +72033,1285,clique,1307374774 +72033,1285,cult film,1307374670 +72033,1285,cynical,1307374672 +72033,1285,misfits,1307375009 +72033,1285,peer pressure,1307374969 +72033,1285,popularity,1307374723 +72033,1285,teen angst,1307374860 +72033,1290,80s,1307376112 +72033,1290,CLASS DIFFERENCES,1307376122 +72033,1290,classic '80s,1307376114 +72033,1290,coming of age,1307376169 +72033,1290,John Hughes,1307376115 +72033,1290,Mary Stuart Masterson,1307376132 +72033,1290,tomboy,1307376134 +72033,1290,wrong side of the tracks,1307376151 +72033,1916,bowling,1307371964 +72033,1916,Christina Ricci,1307371875 +72033,1916,kidnapping,1307371957 +72033,1916,quirky,1307371914 +72033,1916,wry,1307371917 +72033,2144,80's,1307373062 +72033,2144,80's classic,1307373059 +72033,2144,chick flick,1307373068 +72033,2144,dorks,1307374183 +72033,2144,exchange student,1307374236 +72033,2144,first love,1307374270 +72033,2144,John Hughes,1307373076 +72033,2144,nerds,1307374187 +72033,2144,seen more than once,1307373050 +72033,2144,suburbia,1307374334 +72033,2144,sweet,1307373080 +72033,2144,teen angst,1307373045 +72033,2144,wedding,1307373083 +72033,2145,80's,1307373192 +72033,2145,Andrew Dice Clay,1307373196 +72033,2145,Andrew McCarthy,1307373217 +72033,2145,Brat Pack,1307373175 +72033,2145,CLASS DIFFERENCES,1307373169 +72033,2145,Jon Cryer,1307373159 +72033,2145,UNREQUITED LOVE,1307373122 +72033,2248,1980s,1307434595 +72033,2248,John Cusack,1307434596 +72033,2248,Overrated,1307434590 +72033,2291,cult film,1307375823 +72033,2291,fairy tale,1307375815 +72033,2291,fantasy,1307375816 +72033,2291,fish out of water,1307376063 +72033,2291,loneliness,1307376063 +72033,2291,modern fantasy,1307375818 +72033,2291,quirky,1307375817 +72033,2291,suburbia,1307376063 +72033,2291,surreal,1307375826 +72033,2329,Edward Norton,1307375655 +72033,2329,intolerance,1307375919 +72033,2329,Neo-Nazis,1307375653 +72033,2329,racial tension,1307375890 +72033,2329,racism,1307375666 +72033,2329,skinhead,1307375646 +72033,2329,tense,1307375650 +72033,2329,thought-provoking,1307375668 +72033,2502,corporate America,1307370127 +72033,2502,hilarious,1307370085 +72033,2502,Jennifer Aniston,1307370096 +72033,2502,quotable,1307370091 +72033,2541,Betrayal,1307477555 +72033,2541,Femme Fatale,1307477640 +72033,2541,great soundtrack,1307474554 +72033,2541,manipulation,1307474547 +72033,2541,Mind Games,1307477622 +72033,2541,Ryan Philippe,1307474561 +72033,2541,Seduction,1307477565 +72033,2804,1940's,1307382264 +72033,2804,Bully,1307382294 +72033,2804,Christmas,1307382227 +72033,2804,coming of age,1307382218 +72033,2804,nostalgic,1307382386 +72033,2804,school,1307382386 +72033,2858,black comedy,1307370620 +72033,2858,coming of age,1307370618 +72033,2858,dreams,1307370622 +72033,2858,Kevin Spacey,1307370616 +72033,2858,midlife crisis,1307370636 +72033,2858,social commentary,1307370612 +72033,2858,thought-provoking,1307370613 +72033,2915,1980s,1307367616 +72033,2915,coming of age,1307367618 +72033,2915,prostitution,1307367625 +72033,2918,80s,1307367545 +72033,2918,breaks the fourth wall,1307373935 +72033,2918,classic,1307367456 +72033,2918,coming of age,1307367415 +72033,2918,fun,1307367429 +72033,2918,John Hughes,1307367421 +72033,2918,Matthew Broderick,1307373848 +72033,2918,nostalgia,1307368307 +72033,2918,seen more than once,1307367437 +72033,2918,slackers,1307367443 +72033,2918,takes place in Chicago,1307367530 +72033,2918,truancy,1307373974 +72033,3210,1980s,1307382584 +72033,3210,classic,1307382587 +72033,3210,high school,1307382562 +72033,3210,Jennifer Jason Leigh,1307382566 +72033,3210,Nicolas Cage,1307382568 +72033,3210,Sean Penn,1307382576 +72033,3210,virginity,1307382546 +72033,3480,bully,1307374534 +72033,3480,charlie sheen,1307374603 +72033,3480,coming of age,1307374450 +72033,3480,corey haim,1307374411 +72033,3480,high school,1307374521 +72033,3480,nerd,1307374457 +72033,3480,underdog,1307374444 +72033,3535,bloodlust,1307375453 +72033,3535,Christian Bale,1307375377 +72033,3535,drug use,1307375526 +72033,3535,grim,1307375396 +72033,3535,insanity,1307375379 +72033,3535,materialism,1307375600 +72033,3535,yuppies,1307375607 +72033,3897,Zooey Deschanel,1307385730 +72033,4262,action,1307381419 +72033,4262,Al Pacino,1307381398 +72033,4262,classic,1307381404 +72033,4262,corruption,1307381405 +72033,4262,crime,1307381418 +72033,4262,drugs,1307381402 +72033,4262,gangsters,1307381408 +72033,4262,mafia,1307381401 +72033,4262,organized crime,1307381399 +72033,4262,violence,1307381426 +72033,4878,atmospheric,1307368005 +72033,4878,cult film,1307368032 +72033,4878,dreamlike,1307368003 +72033,4878,great soundtrack,1307367994 +72033,4878,music,1307368018 +72033,4878,psychology,1307368006 +72033,4878,thought-provoking,1307368009 +72033,4896,based on a book,1307385656 +72033,4896,fantasy,1307385646 +72033,4896,magic,1307385648 +72033,4896,orphan,1307385679 +72033,4896,Wizards,1307385651 +72033,5294,Bill Paxton,1307372458 +72033,5294,dumbest twist ever,1307372441 +72033,5294,serial killer,1307372464 +72033,6291,Depressing,1307926755 +72033,6291,human trafficking,1307926759 +72033,6291,prostitution,1307926745 +72033,6870,child abuse,1307470183 +72033,6870,Childhood Friends,1307470475 +72033,6870,crime,1307470152 +72033,6870,Dark,1307470155 +72033,6870,family,1307470211 +72033,6870,friendship,1307470215 +72033,6870,great acting,1307470201 +72033,6870,mystery,1307470197 +72033,6870,Police,1307470511 +72033,6870,thriller,1307470149 +72033,6870,tragic,1307470534 +72033,6870,twist ending,1307470162 +72033,6870,working class,1307470497 +72033,7451,suprisingly clever,1307367895 +72033,8784,Great Soundtrack,1307370733 +72033,8784,quirky,1307370737 +72033,8784,Zach Braff,1307370722 +72033,26662,feel-good,1307433494 +72033,26662,magic,1307433497 +72033,26662,Studio Ghibli,1307433496 +72033,26662,witch,1307433499 +72033,27338,Keira Knightley,1307382707 +72033,27338,Thora Birch,1307382706 +72033,27773,depressing,1307374370 +72033,27773,disturbing,1307374373 +72033,27773,Korea,1307374382 +72033,27773,revenge,1307374375 +72033,27773,twist ending,1307374366 +72033,27773,vengeance,1307374376 +72033,27838,bullying,1307470235 +72033,27838,drama,1307470419 +72033,27838,peer pressure,1307470394 +72033,27838,Revenge,1307470288 +72033,27838,Rory Culkin,1307470246 +72033,30803,quirky,1307672519 +72033,30803,understated,1307672527 +72033,30803,very little dialogue,1307672530 +72033,30810,adventure,1307371765 +72033,30810,deadpan,1307371762 +72033,30810,funny,1307371777 +72033,30810,quirky,1307371741 +72033,30810,whimsical,1307371731 +72033,31658,Studio Ghibli,1307433408 +72033,56367,Ellen Page,1307375213 +72033,74228,atmospheric,1307468302 +72033,74228,autism,1307468341 +72033,74228,grim,1307468295 +72033,74228,mystery,1307468294 +72033,74228,strong female lead,1307468321 +72033,74228,Surreal,1307468292 +72033,74228,twists & turns,1307468353 +72033,80549,bad reputation,1307367856 +72033,85788,cliche,1307372559 +72049,97,classique,1438173424 +72049,97,vincent cassel,1438173424 +72049,97,violence,1438173424 +72055,260,robots,1441592562 +72055,260,sci-fi,1441592553 +72068,260,George Lucas,1437000955 +72068,260,starwars,1437000940 +72068,1900,brother sister relationship,1437107499 +72068,1900,sad,1437107475 +72068,1900,siblings,1437107491 +72068,2361,cult film,1437105893 +72068,117533,big brother,1437004053 +72068,117533,documentary,1437004053 +72068,117533,privacy,1437004053 +72075,1446,wonderful child,1171744557 +72107,50,Benicio Del Toro,1366049792 +72107,50,caper,1366049818 +72107,50,Crime,1366049797 +72107,50,Dark,1366049799 +72107,50,ensemble cast,1366049795 +72107,50,heist,1366049816 +72107,50,imdb top 250,1366049823 +72107,50,Kevin Spacey,1366049789 +72107,50,mindfuck,1366049812 +72107,50,organized crime,1366049802 +72107,50,suspense,1366049804 +72107,50,twist ending,1366049807 +72107,50,twists & turns,1366049809 +72107,333,Brian Dennehy,1366050086 +72107,333,Chris Farley,1366050075 +72107,333,Funniest Movies,1366050078 +72107,333,salesmen,1366050080 +72107,333,seen more than once,1366050083 +72107,1378,fighting,1366049488 +72107,1378,guns,1366049490 +72107,1378,Kiefer Sutherland,1366049523 +72107,1378,Lou Diamond Phillips,1366049519 +72107,1378,shootout,1366049494 +72107,1378,western,1366049514 +72107,1449,Christopher Guest,1366049744 +72107,1449,David Cross,1366049746 +72107,1449,funny,1366049765 +72107,1449,humorous,1366049762 +72107,1449,mockumentary,1366049748 +72107,1449,quirky,1366049754 +72107,1449,witty,1366049758 +72107,1792,detective,1366049847 +72107,1792,great chase scenes,1366049850 +72107,1792,Tommy Lee Jones,1366049852 +72107,3039,Eddie Murphy,1366049986 +72107,3039,hilarious,1366050006 +72107,3039,implausible plot elements,1366050010 +72107,3039,poverty,1366049993 +72107,3039,racism,1366050001 +72107,3039,rags to riches,1366050015 +72107,3263,90s,1366049572 +72107,3263,basketball,1366049558 +72107,3263,comedy,1366049561 +72107,3263,fun,1366049553 +72107,3263,funny,1366049556 +72107,3263,joke,1366049564 +72107,3263,sport:basketball,1366049549 +72107,3263,sports,1366049545 +72107,3263,sports competition,1366049547 +72107,3263,Wesley Snipes,1366049541 +72107,3263,Woody Harrelson,1366049543 +72107,3809,Bill Murray,1366049441 +72107,3809,good dialogue,1366049388 +72107,3809,psychiatrist as protagonist,1366049449 +72107,3809,psychiatry,1366049445 +72107,4776,corruption,1366049871 +72107,4776,denzel washington,1366049869 +72107,4776,detective thriller,1366049889 +72107,4776,Ethan Hawke,1366049937 +72107,4776,Oscar (Best Actor),1366049942 +72107,4776,police corruption,1366049874 +72107,4776,riveting,1366049876 +72107,4776,twist ending,1366049880 +72107,4776,violent yet uplifting,1366049953 +72107,55272,1980s,1366049713 +72107,55272,drugs,1366049697 +72107,55272,gangsters,1366049700 +72107,55272,Joaquin Phoenix,1366049682 +72107,55272,Mark Wahlberg,1366049694 +72107,55272,New York City,1366049710 +72107,55272,nightclub,1366049680 +72107,55272,siblings,1366049725 +72107,57368,"""found footage""",1366056511 +72107,57368,city under attack,1366056513 +72107,57368,New York City,1366056516 +72107,57368,shaky camera,1366056527 +72107,57368,shallow,1366056524 +72107,57949,Cedric the Entertainer,1366049658 +72107,57949,family,1366049622 +72107,57949,Martin Lawrence,1366049607 +72107,57949,predictable,1366049640 +72107,80489,action,1366050053 +72107,80489,bank robbery,1366050051 +72107,80489,Ben Affleck,1366050037 +72107,80489,Boston,1366050063 +72107,80489,FBI,1366050058 +72107,80489,heist,1366050042 +72107,80489,police,1366050048 +72107,80489,unlikeable characters,1366050040 +72107,80489,violence,1366050045 +72160,296,black comedy,1428009150 +72160,296,claustrophobic,1428009150 +72160,296,non-linear,1428009150 +72200,5618,anime,1412379184 +72200,5618,fantasy,1412379193 +72200,5618,Hayao Miyazaki,1412379191 +72200,5618,Studio Ghibli,1412379188 +72200,8914,clever,1408806525 +72200,8914,Complicated,1408806556 +72200,8914,complicated plot,1408806522 +72200,8914,intelligent,1408806546 +72200,8914,low budget,1408806539 +72200,8914,mindfuck,1408806551 +72200,8914,Sci-Fi,1408806541 +72200,8914,time travel,1408806500 +72200,112788,cameron diaz,1412379119 +72200,112788,comedy,1412379153 +72200,112788,Jason Segel,1412379113 +72200,112788,sex,1412379123 +72200,116905,anime,1416096254 +72200,116905,Sakasama no Patema,1416096461 +72200,116905,scifi,1416096271 +72200,116905,Yasuhiro Yoshiura,1416096314 +72200,116907,food,1416096380 +72203,356,faith,1425335021 +72203,356,funny,1425335021 +72203,356,love,1425335021 +72207,253,existentialism,1436284328 +72209,1305,loneliness,1376838561 +72210,140110,Robert De Niro,1451687709 +72223,31878,martial arts,1349197239 +72223,31878,overrated,1349197237 +72223,42723,brutal,1349116142 +72223,42723,stupid stereotypes,1349116138 +72223,42723,violence pornography,1349116145 +72252,457,action,1441583577 +72252,457,Harrison Ford,1441583571 +72252,2403,Action,1441583653 +72252,2403,Sylvester Stallone,1441583645 +72266,260,scifi action,1442051233 +72302,6,too long,1182285986 +72302,47,Kevin Spacey,1156389730 +72302,50,Kevin Spacey,1156389731 +72302,76,Philip K. Dick,1156390519 +72302,190,food,1156390706 +72302,232,food,1156390671 +72302,265,food,1156390672 +72302,356,Tom Hanks,1156390837 +72302,356,Vietnam,1163937394 +72302,364,Animation,1156389852 +72302,364,baptism,1139533524 +72302,441,Texas,1156389682 +72302,471,Coen Brothers,1156389379 +72302,480,Steven Spielberg,1156390552 +72302,508,Oscar (Best Actor),1156390841 +72302,508,Tom Hanks,1156390912 +72302,527,Holocaust,1156390543 +72302,527,Steven Spielberg,1156390545 +72302,527,World War II,1156390963 +72302,537,Notable Nudity,1153942175 +72302,539,chick flick,1156390896 +72302,539,Meg Ryan,1156390892 +72302,539,Tom Hanks,1156390844 +72302,541,Philip K. Dick,1156390509 +72302,551,Christmas,1451099748 +72302,551,Halloween,1451099755 +72302,608,Coen Brothers,1150810568 +72302,608,Minnesota,1150810696 +72302,800,texas,1156389622 +72302,900,Oscar (Best Picture),1156390197 +72302,905,Oscar (Best Picture),1156390371 +72302,909,AFI #93,1156390376 +72302,909,Oscar (Best Picture),1156390378 +72302,911,Paris,1213123259 +72302,912,Oscar (Best Picture),1156390150 +72302,912,World War II,1156390952 +72302,914,AFI #91,1156390211 +72302,920,Oscar (Best Actress),1156390207 +72302,920,Oscar (Best Picture),1156390205 +72302,926,Oscar (Best Picture),1156390195 +72302,938,Oscar (Best Picture),1156390204 +72302,952,Oscar (Best Picture),1156390360 +72302,969,AFI #17,1156389579 +72302,969,Humphrey Bogart,1156389573 +72302,969,Katherine Hepburn,1156389580 +72302,969,missionary,1156389583 +72302,969,Oscar (Best Actor),1156389576 +72302,971,Tennessee Williams,1150811128 +72302,994,food,1156390686 +72302,1035,Oscar (Best Directing),1156390986 +72302,1035,Oscar (Best Picture),1156390166 +72302,1035,World War II,1156390973 +72302,1080,Monty Python,1156389944 +72302,1090,Oscar (Best Picture),1156390232 +72302,1097,Steven Spielberg,1156390559 +72302,1103,AFI 100,1230043359 +72302,1104,Tennessee Williams,1150811120 +72302,1136,Monty Python,1156389992 +72302,1183,Oscar (Best Picture),1156390350 +72302,1193,Oscar (Best Picture),1156390161 +72302,1204,Oscar (Best Picture),1156390208 +72302,1221,Oscar (Best Picture),1156390155 +72302,1222,Vietnam,1163937397 +72302,1230,new york city,1139533446 +72302,1230,Oscar (Best Picture),1156390145 +72302,1234,Oscar (Best Picture),1156390168 +72302,1245,Coen Brothers,1156389354 +72302,1250,Best War Films,1139533454 +72302,1250,Oscar (Best Picture),1156390148 +72302,1250,World War II,1156390949 +72302,1262,World War II,1156390953 +72302,1263,Oscar (Best Picture),1156390176 +72302,1263,Vietnam,1163937386 +72302,1266,Oscar (Best Picture),1156390352 +72302,1272,Oscar (Best Picture),1156390229 +72302,1280,very good,1156390690 +72302,1287,Oscar (Best Picture),1156390199 +72302,1291,Holy Grail,1156389895 +72302,1293,Oscar (Best Picture),1156390153 +72302,1394,Coen Brothers,1156389328 +72302,1544,Steven Spielberg,1156390574 +72302,1617,Kevin Spacey,1156389724 +72302,1732,bowling,1156389479 +72302,1732,Coen Brothers,1156389301 +72302,1925,Oscar (Best Picture),1156390349 +72302,1927,AFI #54,1156390336 +72302,1927,Oscar (Best Picture),1156390338 +72302,1929,Oscar (Best Picture),1156390358 +72302,1931,AFI #86,1156390323 +72302,1931,Clark Gable,1156390325 +72302,1931,Oscar (Best Picture),1156390322 +72302,1932,Oscar (Best Picture),1156390362 +72302,1933,Oscar (Best Picture),1156390348 +72302,1933,Oscar (Best Supporting Actor),1156390366 +72302,1935,Oscar (Best Cinematography),1156390328 +72302,1935,Oscar (Best Picture),1156390329 +72302,1935,Oscar (Best Supporting Actor),1156390327 +72302,1937,Oscar (Best Actor),1156390191 +72302,1938,Oscar (Best Picture),1156390381 +72302,1939,Oscar (Best Picture),1156390374 +72302,1940,Oscar (Best Picture),1156390363 +72302,1940,Oscar (Best Supporting Actress),1156390364 +72302,1942,Oscar (Best Picture),1156390384 +72302,1944,AFI #52,1156390387 +72302,1944,Oscar (Best Picture),1156390385 +72302,1945,Oscar (Best Picture),1156390370 +72302,1947,Oscar (Best Picture),1156390236 +72302,1948,Oscar (Best Picture),1156390357 +72302,1949,Oscar (Best Picture),1156390159 +72302,1950,Oscar (Best Picture),1156390332 +72302,1951,Oscar (Best Picture),1156390193 +72302,1953,Oscar (Best Picture),1156390379 +72302,1954,Oscar (Best Picture),1156390189 +72302,1955,Oscar (Best Picture),1156390181 +72302,1956,Oscar (Best Picture),1156390185 +72302,1957,Oscar (Best Picture),1156390172 +72302,1958,Oscar (Best Picture),1156390234 +72302,1959,Oscar (Best Picture),1156390228 +72302,1960,Oscar (Best Picture),1156390183 +72302,1961,Oscar (Best Picture),1156390187 +72302,1962,Oscar (Best Picture),1156390201 +72302,2028,Steven Spielberg,1156390538 +72302,2028,Tom Hanks,1156390541 +72302,2028,World War II,1156390539 +72302,2058,Kevin Spacey,1156389733 +72302,2115,Harrison Ford,1156390549 +72302,2324,Holocaust,1156390958 +72302,2330,Texas,1156389618 +72302,2375,Tom Hanks,1156390854 +72302,2395,Quirky,1145461469 +72302,2395,Wes Anderson,1145461473 +72302,2396,Oscar (Best Picture),1156390164 +72302,2424,Tom Hanks,1156390889 +72302,2491,food,1156390705 +72302,2788,Monty Python,1156390015 +72302,2797,Tom Hanks,1156390834 +72302,2916,Philip K. Dick,1156390516 +72302,3099,Oscar (Best Supporting Actress),1175982006 +72302,3147,Tom Hanks,1156390794 +72302,3385,John Candy,1156390857 +72302,3385,Tom Hanks,1156390792 +72302,3450,Minnesota,1150811056 +72302,3683,Coen Brothers,1156389311 +72302,3819,food,1156390688 +72302,3996,Ang Lee,1156390115 +72302,4014,food,1156390699 +72302,4022,Tom Hanks,1156390810 +72302,4027,Coen Brothers,1156389337 +72302,4113,Tennessee Williams,1150811125 +72302,4232,Austin,1153942274 +72302,4370,Steven Spielberg,1156390575 +72302,4677,Tom Hanks,1156390852 +72302,4881,Coen Brothers,1156389318 +72302,4973,France,1156389526 +72302,4973,Paris,1156389522 +72302,5046,Philip K. Dick,1156390521 +72302,5083,Erotic,1156390703 +72302,5225,coming of age,1139533648 +72302,5445,Philip K. Dick,1156390512 +72302,5445,Steven Spielberg,1156390514 +72302,5464,Tom Hanks,1156390839 +72302,5525,food,1156390684 +72302,5902,Charlie Kaufman,1156389504 +72302,5989,Tom Hanks,1156390925 +72302,5991,Oscar (Best Picture),1156390174 +72302,6187,Capital Punishment,1156389794 +72302,6187,Kevin Spacey,1156389782 +72302,6187,Texas,1156389752 +72302,6440,Coen Brothers,1156389365 +72302,6452,Tennessee Williams,1150811123 +72302,6768,Luther,1249350138 +72302,6768,Lutheran,1249350139 +72302,6768,religion,1249350141 +72302,6787,Politics,1156389512 +72302,6791,Eucharist,1156390645 +72302,6791,Food,1156390629 +72302,6807,Monty Python,1156389939 +72302,6936,Will Ferrell,1156389205 +72302,7060,christian,1151338733 +72302,7102,Tom Hanks,1156390848 +72302,7153,Oscar (Best Picture),1156389244 +72302,7156,Vietnam,1163937278 +72302,7163,Philip K. Dick,1156390517 +72302,7318,Christian,1151338722 +72302,7367,Coen Brothers,1156389404 +72302,7367,Tom Hanks,1156390851 +72302,7377,Kevin Spacey,1156389739 +72302,7379,Texas,1151337584 +72302,7388,St. Francis,1190298765 +72302,8362,Lutheran,1160485212 +72302,8459,19th century,1150567102 +72302,8459,Oscar (Best Actress),1150567097 +72302,8464,documentary,1155781783 +72302,8464,Food,1156390682 +72302,8464,McDonalds,1156390443 +72302,8529,Tom Hanks,1156390845 +72302,26386,Hitchcock parody,1182286678 +72302,26386,Mel Brooks,1182286682 +72302,27904,Philip K. Dick,1156390500 +72302,33672,skateboarding,1184709678 +72302,34072,documentary,1158009435 +72302,36535,quirky,1322575494 +72302,41569,endless unrealistic action,1139533396 +72302,41569,too slow,1139533351 +72302,41863,Texas,1151337631 +72302,41997,Steven Spielberg,1156390588 +72302,44195,satire,1164679903 +72302,45028,Minnesota,1150810548 +72302,45028,Musical,1150810582 +72302,46723,Nudity (Full Frontal),1179803218 +72302,50872,paris,1213123297 +72302,51705,Audrey Tautou,1253581404 +72302,51705,French,1253581400 +72302,59795,Christianity,1227848046 +72302,59795,Christmas,1227848039 +72302,59795,Clergy,1227848054 +72302,64614,Lutheran,1249350034 +72302,66097,based on a book,1290950807 +72302,92259,French,1444448074 +72302,92259,friendship,1444448063 +72302,93287,birding,1453259277 +72302,93287,birds,1453259283 +72302,93287,nature,1453259285 +72302,93498,campaign manager,1342621716 +72302,106841,bleak atmosphere,1446386527 +72302,106841,family drama,1446386553 +72302,106841,meryl streep,1446386549 +72302,106841,mother daughter relationship,1446386547 +72302,106841,secrets,1446386558 +72302,112183,magical realism,1448144181 +72302,113751,Birding,1453259235 +72302,143385,CIA,1447677019 +72302,143385,Cold War,1447677016 +72302,143385,Historical,1447677011 +72302,143385,KGB,1447677021 +72303,134130,based on book,1453829687 +72303,134130,cheesy ending,1453829727 +72303,134130,geeky,1453829714 +72303,134130,space travel,1453829701 +72306,2571,ahead of its time,1440335913 +72306,58559,classic,1440335887 +72310,7773,R,1243891999 +72317,858,classic,1446510577 +72317,858,crime,1446510588 +72317,858,Mafia,1446510569 +72317,858,masterpiece,1446510585 +72317,858,organized crime,1446510580 +72317,58559,based on a comic,1446510530 +72317,58559,Batman,1446510522 +72317,58559,dark,1446510514 +72317,58559,Morgan Freeman,1446510508 +72320,2860,Martin Lawrence,1218236971 +72321,260,Not my thing,1432468305 +72321,260,too long,1432468332 +72321,356,fun,1432469370 +72321,356,great humor,1432469370 +72321,356,inspirational,1432469370 +72321,2959,mindfuck,1432472062 +72321,89745,excellent acting,1432469233 +72321,89745,great humor,1432469241 +72339,91542,cheesy,1387715978 +72342,260,sci-fi,1442083228 +72342,260,space adventure,1442083239 +72353,260,classic,1439778665 +72353,260,sci-fi,1439778703 +72382,260,adventure,1436118564 +72382,260,space,1436118556 +72435,32,excellent,1169931827 +72435,32,time travel,1169931837 +72435,70,vampires,1171326181 +72435,76,artificial intelligence,1170158555 +72435,150,space,1169944981 +72435,173,dystopia,1176338229 +72435,173,police,1176338235 +72435,247,based on a true story,1174957603 +72435,247,disturbing,1174957497 +72435,247,lesbian,1174957471 +72435,247,surreal,1174957479 +72435,288,annoying,1169932987 +72435,288,serial killer,1169932989 +72435,288,violence,1169932998 +72435,318,justice,1169931842 +72435,367,superhero,1169932853 +72435,480,genetics,1169932787 +72435,541,Best Movies Ever,1169867916 +72435,541,memory,1169932673 +72435,589,apocalypse,1169932447 +72435,589,classic,1169932444 +72435,733,terrorism,1170538026 +72435,748,aliens,1170157882 +72435,780,action,1169932903 +72435,799,ghosts,1170070340 +72435,799,serial killer,1170070340 +72435,924,artificial intelligence,1169945239 +72435,1127,ocean,1176245483 +72435,1127,Underwater,1176245485 +72435,1175,dystopia,1171256248 +72435,1175,Post apocalyptic,1171256256 +72435,1206,brainwashing,1169932617 +72435,1206,narrated,1169932630 +72435,1206,violence,1169932625 +72435,1208,chaos,1169932358 +72435,1214,classic,1169932373 +72435,1215,zombies,1169932885 +72435,1240,time-travel,1169945113 +72435,1258,psychological,1169932541 +72435,1320,aliens,1170157820 +72435,1350,religion,1170172863 +72435,1464,disturbing,1178895685 +72435,1464,surreal,1178895682 +72435,1580,action,1169945064 +72435,1580,aliens,1169945064 +72435,1584,aliens,1172666817 +72435,1584,boring,1172666877 +72435,1584,religion,1172666866 +72435,1584,ridiculous,1172666833 +72435,1584,slow,1172666901 +72435,1584,too long,1172666918 +72435,1584,unrealistic,1172666845 +72435,1590,classic,1169932145 +72435,1653,boring,1170366760 +72435,1653,dystopia,1170366766 +72435,1653,genetics,1170366751 +72435,1676,aliens,1170158642 +72435,1748,aliens,1169932655 +72435,1876,catastrophe,1170158236 +72435,1921,black and white,1170006729 +72435,1921,great soundtrack,1170006731 +72435,1921,mathematics,1170006748 +72435,2021,classic,1169932254 +72435,2021,must see,1169932247 +72435,2117,dystopia,1170155986 +72435,2118,time travel,1170172820 +72435,2288,aliens,1170155501 +72435,2428,aliens,1176338008 +72435,2454,mad scientist,1169932859 +72435,2571,virtual reality,1169932596 +72435,2579,black and white,1176787982 +72435,2600,virtual reality,1169932096 +72435,2672,virtual reality,1169867897 +72435,2710,low budget,1188817551 +72435,2710,mimics documentary-style,1188817575 +72435,2710,scary,1188817557 +72435,2710,Very Effective Horror,1188817562 +72435,2712,sexuality,1171324929 +72435,2712,voyeurism,1171324923 +72435,2762,ghosts,1169932504 +72435,2808,cyborgs,1169932839 +72435,2959,psychology,1169932164 +72435,2985,dystopia,1170157535 +72435,2985,robots,1170157543 +72435,3052,religion,1169931095 +72435,3262,drugs,1178895507 +72435,3262,murder,1178895526 +72435,3262,surreal,1178895549 +72435,3503,aliens,1170155482 +72435,3510,time travel,1169932823 +72435,3527,aliens,1170156156 +72435,3593,aliens,1171346810 +72435,3676,cryptic,1169932180 +72435,3677,no dialogue,1170010419 +72435,3677,non-verbal,1170010428 +72435,3686,ghosts,1170158330 +72435,3697,aliens,1176338457 +72435,3698,Dystopia,1171347499 +72435,3702,post apocalyptic,1169932780 +72435,3703,dystopia,1170156067 +72435,3986,genetics,1170010904 +72435,3994,comics,1170156952 +72435,4226,psychology,1169946245 +72435,4310,unwatchable,1171326033 +72435,4333,twisted,1169932911 +72435,4343,aliens,1176337816 +72435,4370,robots,1170157732 +72435,4713,annoying,1170281661 +72435,4713,drugs,1170281648 +72435,4725,psychology,1170173596 +72435,4725,serial killer,1170173596 +72435,4725,Well Done,1170173583 +72435,4848,cryptic,1178895594 +72435,4848,mystery,1178895587 +72435,4848,surreal,1178895579 +72435,4874,aliens,1170169860 +72435,4878,time travel,1169932271 +72435,4973,marvelous,1169932728 +72435,4993,music,1169931938 +72435,4993,must see,1169931938 +72435,4993,Tolkien,1169931909 +72435,4995,matemathic,1169933285 +72435,4995,psychology,1169933296 +72435,5046,aliens,1176334851 +72435,5046,powerful ending,1176334844 +72435,5171,time travel,1176338551 +72435,5445,somewhat predictable but interesting,1176301635 +72435,5445,time travel,1176301625 +72435,5608,psychology,1169932070 +72435,5666,gay,1174957410 +72435,5881,aliens,1170158579 +72435,5903,dystopia,1170155774 +72435,5952,must see,1169931922 +72435,5952,Tolkien,1169931895 +72435,6078,Cold War,1170158293 +72435,6078,really bad,1170158278 +72435,6214,hard to watch,1169931948 +72435,6305,dystopia,1170156140 +72435,6323,psychology,1171504074 +72435,6323,serial killer,1171504081 +72435,6323,twist ending,1171504093 +72435,6502,zombies,1169932745 +72435,6537,time travel,1170158654 +72435,6774,television,1169932416 +72435,6874,kid flick,1196127233 +72435,6874,overrated,1196127221 +72435,7153,must see,1170023180 +72435,7153,Tolkien,1170023180 +72435,7254,time travel,1170023320 +72435,7361,memory,1170461700 +72435,7382,crime,1189630737 +72435,7382,from the view of children,1189630740 +72435,7438,overrated,1196127278 +72435,7984,lovecraft,1189172501 +72435,8014,Atmospheric,1190318498 +72435,8014,bittersweet,1190318493 +72435,8014,buddhist,1190318488 +72435,8327,love,1176409880 +72435,8327,surreal,1176409890 +72435,8485,religion,1172238389 +72435,8529,boring,1172583002 +72435,8529,Didn't finish,1172583016 +72435,8529,silly propaganda,1172582995 +72435,8644,artificial intelligence,1169932816 +72435,8861,computer game,1170158504 +72435,8861,zombies,1170158486 +72435,8914,complicated plot,1171586097 +72435,8914,time travel,1171586046 +72435,8950,memory,1169931868 +72435,8950,must see!,1169931872 +72435,8950,powerful ending,1169931870 +72435,26152,superhero,1169932905 +72435,26285,aliens,1171324629 +72435,26285,let there be light,1171324622 +72435,26554,apocalypse,1173749136 +72435,26554,death,1173749156 +72435,27773,vengeance,1189805337 +72435,27773,very hard movie,1189805404 +72435,27834,psychology,1170072096 +72435,30749,ethnic conflict,1178895455 +72435,31410,disturbing,1172433127 +72435,31410,history,1172433114 +72435,31410,war,1172433123 +72435,32587,violence,1169932529 +72435,33154,corruption,1171814819 +72435,33154,economics,1171814824 +72435,33493,franchise,1176333129 +72435,33493,space opera,1176333115 +72435,33679,espionage,1169932894 +72435,34048,aliens,1170158683 +72435,34405,aliens,1170011270 +72435,37240,politics,1169932383 +72435,37386,genetics,1170157767 +72435,44191,anarchy,1176329314 +72435,44761,annoying,1171473373 +72435,44761,Didn't finish,1171473406 +72435,48043,death,1171414591 +72435,48043,religion,1171414601 +72435,48082,dreams,1173989758 +72435,48082,psychology,1173989773 +72435,48082,stylized,1173989729 +72435,48082,surreal,1173989790 +72435,48304,violence,1169932706 +72435,48516,violence,1170729168 +72435,48774,distopia,1170808551 +72435,48774,end of the world,1170808564 +72435,49278,time travel,1195405591 +72435,50068,War in the eye of enemy,1189075940 +72435,51540,Too long,1189696415 +72435,52281,2 movies in 1,1179655380 +72435,52281,boring,1179655325 +72435,52281,Didn't finish,1179655397 +72435,52281,ridiculous,1179655363 +72435,52281,tried to be funny and failed,1179655343 +72435,52281,zombies,1179655321 +72435,52328,space,1189279678 +72435,54259,magical aging/immortality,1188881334 +72452,736,fast cars,1285702845 +72457,5872,bad puns,1356904436 +72457,32587,visually appealing,1440676238 +72457,59615,aliens,1356816753 +72457,59615,John Hurt,1356816741 +72457,90866,visually appealing,1440676125 +72457,111443,feel good movie,1439574674 +72457,114935,time loop,1441788988 +72457,119802,annie m.g. schmidt,1420222878 +72457,119802,cat,1420222878 +72457,119802,children's novel,1420222878 +72461,589,Hasta La Vista,1171818238 +72461,3755,George Clooney,1171818172 +72461,48394,Parallels,1171818414 +72470,58306,history,1451580554 +72470,61026,Epic,1451580473 +72470,61026,war,1451580476 +72470,68486,war,1451580505 +72470,105844,drama,1451580884 +72470,107980,drama,1451580630 +72470,107980,history,1451580615 +72470,116797,Benedict Cumberbatch,1451580748 +72470,116797,Computers,1451580737 +72470,116797,cryptography,1451580741 +72470,116797,historical,1451580752 +72470,116797,mathematics,1451580735 +72476,8981,Clive Owen,1285725907 +72476,8981,Jude Law,1285725875 +72476,8981,Julia Roberts,1285725878 +72476,8981,Natalie Portman,1285725881 +72526,96610,Bruce Willis,1440359785 +72526,96610,time travel,1440359764 +72560,2571,matrix,1438415603 +72560,5218,cartoon,1438415581 +72562,356,ethics,1447254067 +72562,2571,"science fiction, computers, future",1447253252 +72562,6721,"Wong Fei Hung, 黃飛鴻,china",1447253367 +72562,7143,"japan, ideas, martial arts",1447253304 +72562,26606,"romantic, taoism, china",1447253425 +72566,256,light,1138108635 +72566,256,silly,1138108635 +72566,748,Sheeny,1139345145 +72566,1175,French,1138105583 +72566,1175,fun,1138105583 +72566,1175,quirky,1138105583 +72566,1175,unusual,1138105583 +72566,6378,bubblegum,1138105556 +72566,6378,fun,1138105556 +72566,6378,remake,1138105556 +72566,38798,chick flick,1138116392 +72584,257,Wow!,1171944776 +72584,324,Gay and Straight,1160714854 +72584,324,Must see!,1160714854 +72584,324,socially relevant,1171680065 +72584,541,ahead of it's time,1171681105 +72584,910,black and white,1171680260 +72584,910,classic,1171680260 +72584,910,Comedy,1171680260 +72584,912,Drama,1171680966 +72584,912,humorous,1171680966 +72584,1073,Whimsical,1171679918 +72584,1081,comedy musical,1171679962 +72584,2099,Musical,1171680182 +72584,2353,fast paced,1160715854 +72584,2683,Cute,1160714596 +72584,3028,comedy musical,1171680035 +72584,3388,great ending,1160714631 +72584,3408,Drama,1171680925 +72584,3408,socially relevant,1171680925 +72584,3969,drama,1171680371 +72584,3969,socially relevant,1171680371 +72584,4184,classic,1171681186 +72584,4427,comedy,1172727150 +72584,4555,socially relevant,1171680011 +72584,4799,Comedy,1171680535 +72584,4799,Slapstick,1171680535 +72584,4804,Comedy,1171680315 +72584,4804,Drama,1171680315 +72584,4804,Favorite,1171680315 +72584,4857,seen more than once,1171680890 +72584,4857,socially relevant,1171680890 +72584,4886,Comedy,1171680450 +72584,4886,Favorites,1171680450 +72584,4886,seen more than once,1171680450 +72584,7004,Cute!,1160717095 +72584,7190,classic,1171680496 +72584,7190,Drama,1171680495 +72584,26422,Must see!,1160720482 +72587,260,great soundtrack,1441823213 +72587,260,masterpiece,1441823220 +72595,546,funny b-class fantasy,1186683180 +72595,720,Great movie,1186682758 +72595,1120,okay once,1186682664 +72595,1587,Arnie's best movie ever!,1186682924 +72595,2405,okay,1186682968 +72595,2701,okay once,1186682629 +72595,2872,good movie,1186682959 +72595,2951,amazing western,1186683055 +72595,3113,not so good,1186683217 +72595,3826,good movie from Depp,1186682877 +72595,4015,okay once,1186683307 +72595,4246,okay,1186682556 +72595,4343,Funny when your 10. Less funny when your not.,1186683337 +72595,4367,okay once,1186682984 +72595,4446,great animation,1186683117 +72595,4975,interesting movie,1186682897 +72595,5502,quite good thriller,1186682697 +72595,5679,okay once,1186682772 +72595,6016,Interesting,1186683136 +72595,6373,quite okay,1186683001 +72595,6934,good scifi,1186682738 +72595,7147,Great Movie!,1186682714 +72595,7438,from Tarantino,1186682632 +72595,7438,masterpiece,1186682632 +72595,33493,not the best from the saga,1186682823 +72600,110586,despair,1423642759 +72600,110586,irish,1423642759 +72600,110586,religion,1423642759 +72611,3760,Samuel L. Broncowitz,1419984219 +72611,4121,80's cult movie,1433099300 +72611,4121,miniaturization,1433099158 +72611,4121,trapped in a human body,1433099190 +72611,94466,dystopia,1420090177 +72611,94466,technology,1420090163 +72611,94466,tv series,1420090172 +72611,114244,dining club,1419953291 +72611,114244,oxford,1419953330 +72611,114244,oxford university,1419953284 +72611,114673,absurd humor,1412383978 +72611,114673,director cameo,1412383978 +72611,114673,one word title,1412383978 +72611,116913,french,1416107602 +72611,116913,spy,1416107588 +72611,116913,WWII,1416107125 +72611,116915,giallo,1416107820 +72611,116915,superstition,1416107865 +72611,133897,pessimism,1432598878 +72611,133897,poetry,1432598802 +72611,133897,romanticism,1432598857 +72611,145064,corruption,1445728650 +72611,145064,organized crime,1445728634 +72611,145064,rome,1445728598 +72627,260,dialogue,1443772102 +72627,260,drama,1443772188 +72627,260,organized crime,1443772085 +72627,260,Oscar Winner,1443772157 +72662,1221,Al Pacino,1424068783 +72662,2959,psychology,1424068840 +72662,2959,thought-provoking,1424068844 +72662,49272,James Bond,1424069081 +72662,54286,Matt Damon,1424069105 +72662,54286,spy thriller,1424069116 +72675,1090,war,1448646623 +72719,6187,pacifistas,1159912590 +72728,6711,Bill Murray,1165201072 +72728,6711,Scarlett Johansson,1165201076 +72736,7361,psychology,1448005173 +72736,7361,thought-provoking,1448005167 +72736,55908,intellectual,1448005042 +72736,55908,philosophical,1448005040 +72736,55908,thought-provoking,1448005052 +72736,64034,childish naivity,1448005537 +72736,64034,Friendship,1448005534 +72736,64034,touching,1448005532 +72737,2571,action packed,1425312981 +72737,2571,epic,1425312981 +72737,2571,philosophical,1425312981 +72739,260,CGI,1442338184 +72739,260,cult classic,1442338149 +72739,260,universe,1442338160 +72771,5952,Epic,1440045712 +72771,5952,war,1440045724 +72846,260,The beginning of a classic saga. Good vs evil extraordinaire,1440721446 +72851,1196,science fiction,1450035544 +72851,1954,drama,1450035838 +72851,7153,action-packed,1450035444 +72879,3052,Alan Rickman,1295686059 +72879,3052,Ben Affleck,1295686081 +72879,3052,Catholicism,1295686083 +72879,3052,Janeane Garofalo,1295686086 +72879,3052,Kevin Smith,1295686045 +72879,3052,Matt Damon,1295686061 +72879,3052,religion,1295686051 +72879,3052,satire,1295686049 +72879,3545,queer,1295685918 +72879,3786,campy,1295685876 +72879,3786,Clea DuVall,1295685868 +72879,3786,coming of age,1295685860 +72879,3786,cute,1295685883 +72879,3786,lesbian,1295685861 +72879,3786,queer,1295685863 +72879,3786,sexuality,1295685872 +72879,39183,controversial,1295685980 +72879,39183,emotional,1295685982 +72879,39183,homosexuality,1295685985 +72879,39183,Love story,1295685987 +72879,39183,Oscar (Best Directing),1295685998 +72879,39183,Oscar (Best Picture),1295686001 +72879,39183,sexuality,1295685990 +72884,26,Nudity (Topless),1328983618 +72884,85414,mindfuck,1328983432 +72884,85414,time loop,1328983417 +72884,85414,twist ending,1328983361 +72884,116161,bad ending,1439038887 +72893,260,action,1433611142 +72893,260,space,1433611147 +72900,260,lucas auteurism,1438903485 +72900,260,"most succesful of the three films that spielberg, lucas, and milius made their bet about for 1977",1438903524 +72913,7502,historical,1438863984 +72913,7502,realistic,1438863982 +72913,7502,war,1438863976 +72913,94466,dark,1438863944 +72913,94466,satire,1438863954 +72913,94466,technology,1438863956 +72913,94466,tv series,1438863949 +72925,260,action,1433073150 +72925,260,"battle scenes,",1433073376 +72925,260,fantasy,1433073368 +72985,4226,OBSESSIVE QUESTS,1174518210 +72988,260,adventure,1435634537 +72988,260,sci-fi,1435634519 +72999,260,iconic,1431816104 +72999,260,love it,1431816117 +73000,3968,Brendan Fraser,1449839657 +73000,3968,Elizabeth Hurley,1449839661 +73015,1784,funny,1142360293 +73015,2683,stupid,1139864029 +73015,3793,super-hero,1139864044 +73015,5991,classic,1142360306 +73017,34314,mumblecore,1433005270 +73017,34314,natural dialogue,1433005282 +73017,34314,post-college,1433005274 +73017,92259,best actor,1433005248 +73017,92259,feel good movie,1433005239 +73017,92259,French,1433005243 +73023,27611,MILITARY LIFE,1230930548 +73029,50,organized crime,1234724465 +73029,1527,sci-fi,1234724533 +73029,5445,Steven Spielberg,1234724555 +73029,5445,time travel,1234724568 +73029,56788,politics,1234724632 +73044,47,Spacey: Excellent....Pitt: Brilliant....Freeman: Wow. A wonderful movie. Must must watch,1164038800 +73044,110,A very touching movie. Great role played by Mel Gibson as William Wallace,1164038386 +73044,318,excellent and worth while.,1164038189 +73044,318,great movie,1164038189 +73044,377,Full of adrenaline. A must watch heart pumping movie,1164038462 +73044,589,Probably the best sci-fi film ever made,1164037627 +73044,592,as good as Batman Begins,1164038331 +73044,592,Exellent Movie,1164038331 +73044,648,by far the best pick out of the three,1164038594 +73044,858,Im gonna make him an offer he can't refuse. A true masterpiece,1164038990 +73044,1196,could carry on but i might end up spoilin it for you,1164038547 +73044,1196,just great,1164038547 +73044,2571,Mr Anderson,1164038925 +73044,2571,we are glad you took the red pill,1164038925 +73044,2717,Who Ya gonna call????????????,1164037516 +73044,2858,Kevin Spacey was on a roll,1164038873 +73044,4878,A very touching movie,1164037545 +73044,7153,An excellent trilogy,1164039253 +73044,48516,Di Caprio and Damon at their finest. A must watch film!!!!,1164038076 +73063,55726,1970s,1307380156 +73063,55726,Brazil,1307380101 +73063,55726,Jewish,1307380092 +73063,55726,Jewish South America,1307380173 +73063,55726,Judaism,1307380149 +73063,89085,1960s,1323372788 +73063,89085,Cold war,1323372465 +73063,89085,east berlin,1323372494 +73063,89085,east germany,1323372499 +73063,89085,espionage,1323372811 +73063,89085,Israel,1323372783 +73063,89085,spy,1323372816 +73070,293,acting,1388083053 +73070,293,Jean Reno,1388083047 +73070,480,action,1388086053 +73070,480,sci-fi,1388086059 +73070,1127,effects,1388082921 +73070,1127,sci-fi,1388082892 +73070,1580,acting,1388082815 +73070,1580,action,1388082799 +73070,1580,sci-fi,1388082807 +73070,1704,acting,1388085067 +73070,1704,inspirational,1388085059 +73070,1704,Robin Williams,1388085054 +73070,1918,action,1388083073 +73070,1918,funny,1388083075 +73070,1918,sequel,1388083146 +73070,1918,series,1388083084 +73070,1961,acting,1388085007 +73070,1961,Dustin Hoffman,1388085009 +73070,1961,funny,1388085007 +73070,2000,action,1388083167 +73070,2000,funny,1388083172 +73070,2000,series,1388083182 +73070,2002,action,1388083110 +73070,2002,funny,1388083112 +73070,2002,police,1388083123 +73070,2002,sequel,1388083107 +73070,2692,alternate endings,1388082608 +73070,2692,artistic,1388082616 +73070,2692,German,1388082623 +73070,2692,nonlinear,1388082627 +73070,3969,corny,1388082694 +73070,3969,overrated,1388082660 +73070,3969,thought-provoking,1388082688 +73070,4544,sequel,1388085400 +73070,4545,funny,1388085384 +73070,4545,kindness,1388085360 +73070,4553,predictable,1388085124 +73070,5459,comedy,1388082714 +73070,5459,sci-fi,1388082776 +73070,5459,sequel,1388082743 +73070,72998,effects,1388082951 +73070,72998,predictable,1388083022 +73070,72998,sci-fi,1388082943 +73070,79333,comedy,1422840895 +73070,79333,crime,1422840895 +73070,79333,russian,1422840895 +73070,109596,age,1423446140 +73070,109596,comedy,1423446140 +73070,109596,friendship,1423446140 +73083,260,adventure,1444706463 +73083,260,Star Wars,1444706448 +73111,68522,beautiful scenery,1246562624 +73111,68522,nature,1246562626 +73111,68522,scenic,1246562629 +73111,68954,Pixar,1246562487 +73132,2571,action,1425974432 +73132,2571,fantasy,1425974432 +73132,2571,thriller,1425974432 +73147,1258,fantastic atmosphere,1200206216 +73160,260,the start of special effects,1435433510 +73160,260,who knew,1435433488 +73191,260,darth vader,1431438054 +73191,260,robots,1431434931 +73191,260,space,1431434921 +73191,260,war,1431434927 +73214,22,thriller,1368675399 +73214,29,dark,1368287470 +73214,31,inspirational,1368287753 +73214,111,dark,1368287470 +73214,157,politics,1368675314 +73214,161,tense,1368675381 +73214,216,stupid,1368675364 +73214,474,tense,1368675381 +73214,519,franchise,1368287685 +73214,555,violent,1368675425 +73214,832,tense,1368675381 +73214,861,police,1368675279 +73214,946,nazis,1368287979 +73214,1089,violent,1368675425 +73214,1095,ensemble cast,1368287581 +73214,1175,dark,1368287470 +73214,1206,violent,1368675425 +73214,1214,tense,1368675381 +73214,1287,christianity,1368287414 +73214,1357,father-son relationship,1368287664 +73214,1390,politics,1368675314 +73214,1396,ensemble cast,1368287581 +73214,1464,mystery,1368287902 +73214,1597,thriller,1368675399 +73214,1834,mystery,1368287902 +73214,1950,police,1368675279 +73214,2024,christianity,1368287415 +73214,2026,high school,1368287724 +73214,2058,tense,1368675381 +73214,2076,dark,1368287470 +73214,2353,thriller,1368675400 +73214,2383,police,1368675279 +73214,2442,mental illness,1368287831 +73214,2490,violent,1368675425 +73214,2882,nazis,1368287979 +73214,2959,violent,1368675425 +73214,2985,violent,1368675425 +73214,3146,stupid,1368675364 +73214,3256,tense,1368675381 +73214,3256,thriller,1368675399 +73214,3273,franchise,1368287685 +73214,3440,franchise,1368287685 +73214,3683,dark,1368287470 +73214,3980,inspirational,1368287753 +73214,4018,bad execution,1287880120 +73214,4018,Great idea,1287880126 +73214,4235,gael garcia bernal,1240078551 +73214,4246,bad luck,1287879773 +73214,4388,stupid,1368675364 +73214,4865,dark,1368287470 +73214,4865,mystery,1368287902 +73214,4878,80's,1321925706 +73214,4974,stupid,1368675364 +73214,5107,nazis,1368287979 +73214,5299,Nia Vardalos,1287879836 +73214,5363,high school,1368287724 +73214,5785,stupid,1368675364 +73214,5989,father-son relationship,1368287664 +73214,6155,Matthew McConaughey,1287879885 +73214,6323,mystery,1368287902 +73214,6537,franchise,1368287685 +73214,6663,slapstick,1206575515 +73214,6808,nazis,1368287979 +73214,7160,mental illness,1368287831 +73214,7321,New Idea,1248145777 +73214,7321,police investigation,1248145805 +73214,8781,politics,1368675314 +73214,31685,cute,1287880668 +73214,31685,men being taught how to woo,1287880652 +73214,31685,mentor/trainer,1287880657 +73214,39444,depressing,1238962578 +73214,40819,Reese Witherspoon,1362167379 +73214,44004,Matthew McConaughey,1287879913 +73214,44004,Sarah Jessica Parker,1287879921 +73214,44004,Zooey Deschanel,1287879918 +73214,45720,Emily Blunt,1287879701 +73214,45720,Stanley Tucci,1287879712 +73214,51540,police,1368675279 +73214,53121,franchise,1368287685 +73214,59429,nudity (topless - notable),1368288031 +73214,59727,disturbing,1239242808 +73214,63113,franchise,1368287685 +73214,64622,nazis,1368287979 +73214,64716,Will Smith,1231012600 +73214,70293,Amy Adams,1287879633 +73214,70293,boring,1287879594 +73214,70293,cooking,1287879599 +73214,70293,inspiring,1287879622 +73214,70293,Stanley Tucci,1287879643 +73214,72393,Mila Jovovich,1320109810 +73214,74458,boring,1281547157 +73214,74458,insanity,1281547199 +73214,74458,Leonardo DiCaprio,1281547149 +73214,74458,Mark Ruffalo,1281547187 +73214,74458,mystery,1368287902 +73214,74458,plot twist,1281547174 +73214,74458,Predictable,1281547123 +73214,74458,psychological,1281547180 +73214,74458,too long,1281547208 +73214,81591,psychological,1298422236 +73214,81591,repressed sexuality,1298422242 +73214,86833,Bechdel Test: pass,1368156274 +73214,86833,depressing,1368156295 +73214,87270,imperfect relationships,1313018328 +73214,87270,Lisa Kudrow,1313018293 +73214,87270,Natalie Portman,1313018299 +73214,92938,Goofy,1329861490 +73214,94266,depressing,1362924944 +73214,94266,funny!,1362924954 +73214,94266,good acting,1362924957 +73214,94777,time travel,1362925204 +73214,102407,disappointing,1378702570 +73214,105211,depressing,1397187749 +73214,109374,funny,1409274763 +73214,109374,quirky,1409274749 +73214,109374,visually appealing,1409274772 +73244,70,brothers,1449382371 +73244,70,campy,1449382362 +73244,70,George Clooney,1449382340 +73244,70,gore,1449382346 +73244,70,Harvey Keitel,1449382374 +73244,70,hostage,1449382376 +73244,70,intense,1449382378 +73244,70,mexico,1449382344 +73244,70,Nudity (Topless - Brief),1449382369 +73244,70,plot twist,1449382380 +73244,70,Quentin Tarantino,1449382310 +73244,70,Salma Hayek,1449382349 +73244,70,splatter,1449382342 +73244,70,strippers,1449382360 +73244,70,Tarantino,1449382364 +73244,70,twist ending,1449382324 +73244,70,vampires,1449382319 +73244,70,violence,1449382326 +73244,293,assassin,1432607716 +73244,293,assassins,1432607751 +73244,293,corruption,1432607740 +73244,293,crime,1432607737 +73244,293,Gary Oldman,1432607722 +73244,293,Guns,1432607756 +73244,293,hitman,1432607718 +73244,293,Natalie Portman,1432607713 +73244,293,organized crime,1432607749 +73244,293,police corruption,1432607744 +73244,293,quirky,1432607725 +73244,296,disturbing,1422939773 +73244,296,non-linear,1422939773 +73244,296,quentin tarantino,1422939773 +73244,318,morgan freeman,1427006250 +73244,318,overrated,1427006250 +73244,318,prison,1427006250 +73244,356,americana,1423546697 +73244,356,mental illness,1423546697 +73244,356,tom hanks,1423546697 +73244,357,British,1423197736 +73244,357,Comedy,1423197746 +73244,357,funeral,1423197758 +73244,357,Hugh Grant,1423197739 +73244,357,Rowan Atkinson,1423197753 +73244,357,wedding,1423197743 +73244,588,animation,1435548285 +73244,588,artistic,1435548314 +73244,588,comedy,1435548326 +73244,588,Disney,1435548278 +73244,588,Fantasy,1435548317 +73244,588,funny,1435548303 +73244,588,good versus evil,1435548321 +73244,588,kids and family,1435548324 +73244,588,middle east,1435548306 +73244,588,musical,1435548281 +73244,588,rags to riches,1435548329 +73244,588,Robin Williams,1435548288 +73244,593,psychological,1425654785 +73244,593,psychopath,1425654785 +73244,593,serial killer,1425654785 +73244,678,easily confused with other movie(s) (title),1331141793 +73244,1207,adapted from:book,1429416447 +73244,1207,based on a book,1429416444 +73244,1207,Harper Lee,1429416455 +73244,1207,lawyer,1429416433 +73244,1207,racism,1429416419 +73244,1207,social commentary,1429416428 +73244,1225,classical music,1450024359 +73244,1225,history,1450024373 +73244,1225,Mozart,1450024361 +73244,1225,music,1450024357 +73244,1307,Billy Crystal,1429500526 +73244,1307,friendship,1429500529 +73244,1307,meg ryan,1429500519 +73244,1307,relationships,1429500515 +73244,1680,alternate reality,1442728961 +73244,1680,alternate universe,1442728943 +73244,1680,British,1442728958 +73244,1680,Gwyneth Paltrow,1442728959 +73244,1680,London,1442728973 +73244,1688,animation,1432729561 +73244,1688,Russia,1432729564 +73244,1688,Russian revolution,1432729567 +73244,1876,apocalypse,1435807688 +73244,1876,astronomy,1435807693 +73244,1876,catastrophe,1435807695 +73244,1876,disaster,1435807698 +73244,1876,natural disaster,1435807691 +73244,2081,Disney,1453138082 +73244,2081,mermaid,1453138090 +73244,2081,teenage rebellion,1453138103 +73244,2161,Adventure,1440647487 +73244,2161,dark fantasy,1440647510 +73244,2161,dragon,1440647487 +73244,2161,effects,1440647489 +73244,2161,Fantasy,1440647484 +73244,2161,fantasy world,1440647487 +73244,2161,imagination,1440647492 +73244,2161,racing snail,1440647504 +73244,2161,soundtrack,1440647499 +73244,2161,sphinx,1440647513 +73244,2161,story,1440647508 +73244,2916,arnold,1435290208 +73244,2916,Arnold Schwarzenegger,1435290214 +73244,2916,campy,1435290269 +73244,2916,conspiracy,1435290236 +73244,2916,dystopia,1435290222 +73244,2916,gore,1435290276 +73244,2916,mars,1435290239 +73244,2916,mutants,1435290247 +73244,2916,original plot,1435290257 +73244,2916,Paul Verhoeven,1435290264 +73244,2916,Sci Fi,1435290261 +73244,2916,sci-fi,1435290231 +73244,2916,science fiction,1435290249 +73244,2916,space travel,1435290244 +73244,2916,terrorism,1435290253 +73244,3535,1980s,1433732449 +73244,3535,Christian Bale,1433732416 +73244,3535,comical violence,1433732446 +73244,3535,Disturbing,1433732435 +73244,3535,humorous,1433732420 +73244,3535,insanity,1433732413 +73244,3535,murder,1433732452 +73244,3535,new york,1433732433 +73244,3535,Reese Witherspoon,1433732455 +73244,3535,serial killer,1433732418 +73244,3535,violence,1433732423 +73244,3535,yuppies,1433732440 +73244,3994,Bruce Willis,1431239437 +73244,3994,comics,1431239448 +73244,3994,m. night shyamalan,1431239439 +73244,3994,Samuel L. Jackson,1431239441 +73244,3994,superhero,1431239434 +73244,3994,unique,1431239453 +73244,4022,helen hunt,1423376345 +73244,4022,island,1423376329 +73244,4022,loneliness,1423376326 +73244,4022,Robert Zemeckis,1423376343 +73244,4022,SURVIVAL,1423376315 +73244,4022,Tom Hanks,1423376311 +73244,4783,boat,1451327438 +73244,4783,documentary,1451327424 +73244,4783,ice,1451327427 +73244,5418,action,1448175529 +73244,5418,amnesia,1448175539 +73244,5418,assassin,1448175537 +73244,5418,car chase,1448175541 +73244,5418,conspiracy,1448175544 +73244,5418,espionage,1448175526 +73244,5418,Matt Damon,1448175524 +73244,5418,memory,1448175568 +73244,5418,memory loss,1448175570 +73244,5418,mystery,1448175562 +73244,5418,spy,1448175531 +73244,5418,spying,1448175549 +73244,5418,survival,1448175559 +73244,5418,thriller,1448175535 +73244,5903,bullet ballet,1431619944 +73244,5903,choreographic violence,1431619950 +73244,5903,Christian Bale,1431619913 +73244,5903,dystopia,1431619911 +73244,5903,gun fu,1431619941 +73244,5903,gunfight,1431619937 +73244,5903,guns,1431619946 +73244,5903,martial arts,1431619939 +73244,5903,post-apocalyptic,1431619918 +73244,5903,revolution,1431619930 +73244,5903,stylized violence,1431619952 +73244,5903,totalitarianism,1431619916 +73244,5903,violence,1431619955 +73244,6308,art,1428291839 +73244,6308,unfocused,1428291825 +73244,6308,weird,1428291835 +73244,7178,based on a book,1430232257 +73244,7178,Robert Redford,1430232302 +73244,7178,weird,1430232264 +73244,7293,Adam Sandler,1448175598 +73244,7293,amnesia,1448175609 +73244,7293,date movie,1448175621 +73244,7293,Drew Barrymore,1448175601 +73244,7293,happy ending,1448175611 +73244,7293,Hawaii,1448175624 +73244,7293,memory loss,1448175619 +73244,7293,Romance,1448175614 +73244,7293,short-term memory loss,1448175617 +73244,7373,comic book,1436151499 +73244,7373,dark hero,1436151505 +73244,7373,fighting,1436151521 +73244,7373,Guillermo del Toro,1436151497 +73244,7373,nazis,1436151511 +73244,7373,occult,1436151519 +73244,7373,occult technology,1436151502 +73244,7373,super hero,1436151528 +73244,7373,superhero,1436151495 +73244,7373,superheroes,1436151530 +73244,8781,brainwashing,1431919279 +73244,8781,Denzel Washington,1431919276 +73244,8781,politics,1431919273 +73244,8972,conspiracy theory,1436756775 +73244,8972,secret societies,1436756780 +73244,8972,treasure hunt,1436756777 +73244,30812,aviation,1450024315 +73244,30812,biopic,1450024318 +73244,30812,Cate Blanchett,1450024324 +73244,30812,Howard Hughes,1450024329 +73244,30812,Leonardo DiCaprio,1450024309 +73244,30812,Martin Scorsese,1450024311 +73244,30812,mental illness,1450024321 +73244,30812,movie business,1450024327 +73244,33166,Brendan Fraser,1429154197 +73244,33166,cultural conflict,1429154178 +73244,33166,easily confused with other movie(s) (title),1429154195 +73244,33166,ensemble cast,1429154187 +73244,33166,los angeles,1429154201 +73244,33166,multiple storylines,1429154161 +73244,33166,Nudity (Topless),1429154192 +73244,33166,race issues,1429154181 +73244,33166,racism,1429154176 +73244,33166,Sandra Bullock,1429154184 +73244,33166,social commentary,1429154164 +73244,39421,easily confused with other movie(s) (title),1356415117 +73244,41566,alternate reality,1437927043 +73244,41566,alternate universe,1437927101 +73244,41566,based on a book,1437927069 +73244,41566,based on book,1437927072 +73244,41566,C.S. Lewis,1437927051 +73244,41566,children,1437927092 +73244,41566,Christian,1437927085 +73244,41566,christianity,1437927039 +73244,41566,fantasy,1437927034 +73244,41566,fantasy world,1437927037 +73244,41566,good versus evil,1437927041 +73244,41566,lion,1437927110 +73244,41566,magic,1437927045 +73244,41566,mythology,1437927096 +73244,41566,scenic,1437927099 +73244,41566,talking animals,1437927088 +73244,41566,witch,1437927067 +73244,56775,conspiracy theory,1447603558 +73244,56775,Nicolas Cage,1447603563 +73244,56775,puzzle solving,1447603569 +73244,56775,treasure,1447603560 +73244,56775,treasure hunt,1447603556 +73244,59501,based on a book,1439175303 +73244,59501,C.S. Lewis,1439175312 +73244,59501,fantasy,1439175308 +73244,59501,narnia,1439175305 +73244,59501,not true to the book,1439175314 +73244,60069,adventure,1437660576 +73244,60069,animated,1437660572 +73244,60069,Animation,1437660535 +73244,60069,artificial intelligence,1437660559 +73244,60069,Comedy,1437660614 +73244,60069,consumerism,1437660604 +73244,60069,cute,1437660595 +73244,60069,Cute!,1437660588 +73244,60069,dystopia,1437660534 +73244,60069,ecology,1437660599 +73244,60069,emotional,1437660582 +73244,60069,environment,1437660607 +73244,60069,funny,1437660568 +73244,60069,Future,1437660580 +73244,60069,human versus computer,1437660612 +73244,60069,last man on earth,1437660602 +73244,60069,love story,1437660573 +73244,60069,pixar,1437660529 +73244,60069,Post apocalyptic,1437660550 +73244,60069,post-apocalyptic,1437660556 +73244,60069,robots,1437660531 +73244,60069,romance,1437660553 +73244,60069,Sci-Fi,1437660543 +73244,60069,social commentary,1437660539 +73244,60069,space,1437660547 +73244,63992,based on a book,1425958881 +73244,63992,chick flick,1425958901 +73244,63992,fantasy,1425958896 +73244,63992,high school,1425958891 +73244,63992,Kristen Stewart,1425958913 +73244,63992,Robert Pattinson,1425958928 +73244,63992,romance,1425958910 +73244,63992,Teen movie,1425958875 +73244,63992,teenagers,1425958932 +73244,63992,Vampire Human Love,1425958886 +73244,63992,vampires,1425958867 +73244,72714,biased,1336512011 +73244,77206,slapstick humor,1338491468 +73244,77206,stupid comedy,1338491468 +73244,82169,alternate reality,1439437166 +73244,82169,based on a book,1439437168 +73244,82169,C.S. Lewis,1439437185 +73244,82169,Christian allegory,1439437182 +73244,82169,dragons,1439437172 +73244,82169,magic,1439437177 +73244,82169,Narnia,1439437180 +73244,82169,talking animals,1439437174 +73244,88179,Anne Hathaway,1429792158 +73244,88179,friendship,1429792165 +73244,88179,long term romance,1429792173 +73244,91323,mindless,1336144771 +73244,91628,feel-good,1341282679 +73244,91628,New York City,1341282678 +73244,92938,mindless,1339918550 +73244,92938,Superhero,1339918518 +73244,94015,eyebrows,1343448596 +73244,94015,Julia Roberts,1343448596 +73244,97921,Bradley Cooper,1422939837 +73244,97921,cliche,1422939874 +73244,97921,dance,1422939883 +73244,97921,Jennifer Lawrence,1422939821 +73244,97921,mental illness,1422939825 +73244,97921,Philadelphia,1422939893 +73244,97921,Robert De Niro,1422939846 +73244,99114,BOUNTY HUNTERS,1431919202 +73244,99114,funny,1431919156 +73244,99114,Jamie Foxx,1431919166 +73244,99114,Jonah Hill,1431919183 +73244,99114,ku klux klan,1431919206 +73244,99114,Leonardo DiCaprio,1431919135 +73244,99114,Over the top,1431919174 +73244,99114,Quentin Tarantino,1431919133 +73244,99114,racism,1431919210 +73244,99114,Revenge,1431919153 +73244,99114,Samuel L. Jackson,1431919148 +73244,99114,slavery,1431919158 +73244,99114,Spaghetti Western,1431919161 +73244,99114,violence,1431919151 +73244,99114,violent,1431919168 +73244,103027,dissonant dialogue,1433732362 +73244,103027,Joss Whedon,1433732339 +73244,103027,Shakespeare,1433732370 +73244,103249,action,1440505017 +73244,103249,Brad Pitt,1440505008 +73244,103249,horror,1440505022 +73244,103249,Israel,1440505014 +73244,103249,pandemic,1440505006 +73244,103249,zombies,1440505004 +73244,103335,family,1374207203 +73244,108190,based on a book,1427681976 +73244,108190,dystopia,1427681965 +73244,108190,female protagonist,1427681969 +73244,109487,Anne Hathaway,1430631264 +73244,109487,artificial intelligence,1430631307 +73244,109487,black hole,1430631330 +73244,109487,Christopher Nolan,1430631236 +73244,109487,good science,1430631270 +73244,109487,love,1430631356 +73244,109487,Matthew McConaughey,1430631246 +73244,109487,Michael Caine,1430631310 +73244,109487,physics,1430631272 +73244,109487,relativity,1430631248 +73244,109487,sci-fi,1430631260 +73244,109487,science fiction,1430631321 +73244,109487,sounds,1430631285 +73244,109487,space,1430631239 +73244,109487,space travel,1430631348 +73244,109487,time travel,1430631275 +73244,109487,time-travel,1430631243 +73244,109487,wormhole,1430631257 +73244,110675,romance,1433214511 +73244,110675,telepathy,1433214507 +73244,110675,unique,1433214515 +73244,111921,cancer,1408250185 +73244,111921,death,1408250185 +73244,111921,teenage romance,1408250185 +73244,112556,adultery,1436677272 +73244,112556,based on a book,1436677275 +73244,112556,Ben Affleck,1436677245 +73244,112556,Infidelity,1436677282 +73244,112556,meticulous,1436677266 +73244,112556,mindfuck,1436677240 +73244,112556,murder,1436677262 +73244,112556,Neal Patrick Harris,1436677270 +73244,112556,Psychopathy,1436677242 +73244,112556,unpredictable,1436677236 +73244,114662,Bradley Cooper,1435477416 +73244,114662,War,1435477411 +73244,114662,war hero,1435477419 +73244,115147,drug dealer,1427006389 +73244,115147,family dynamics,1427006431 +73244,115147,first love,1427006400 +73244,115569,dark,1435030495 +73244,115569,Jake Gyllenhaal,1435030498 +73244,115569,journalism,1435030510 +73244,115569,los angeles,1435030514 +73244,115569,news,1435030523 +73244,115617,Animation,1433128051 +73244,115617,Disney,1433128049 +73244,115617,friendship,1433128055 +73244,115617,robotics,1433128060 +73244,116823,dystopia,1427006292 +73244,116823,fashion,1427006313 +73244,116823,Inspirational Speeches,1427006300 +73244,116823,Jennifer Lawrence,1427006318 +73244,116823,revolution,1427006308 +73244,116887,Christian Bale,1427681923 +73244,116887,Ridley Scott,1427681919 +73244,130490,Action,1430078061 +73244,130490,dystopia,1430078068 +73244,130490,savior,1430078071 +73244,132480,harrison ford,1442124022 +73244,132480,romance,1442123986 +73244,132480,sci-fi,1442124014 +73244,134587,boring,1433651896 +73244,134587,music,1433651888 +73244,134587,no plot,1433651914 +73244,134853,Animation,1445187345 +73244,134853,bittersweet,1445187355 +73244,134853,coming of age,1445187347 +73244,134853,creative,1445187350 +73244,134853,emotional,1445187372 +73244,134853,emotions,1445187359 +73244,134853,family,1445187370 +73244,134853,funny,1445187367 +73244,134853,imaginative,1445187357 +73244,134853,introspective,1445187362 +73244,134853,psychology,1445187341 +73244,134853,San Francisco,1445187349 +73244,134853,thought provoking,1445187365 +73244,135133,2015,1449501373 +73244,135133,love story,1449501434 +73244,135133,politics,1449501417 +73244,145839,NFL,1453153347 +73244,145839,true story,1453153341 +73244,145839,Will Smith,1453153343 +73244,149594,Bible,1451274045 +73244,149594,Christian,1451274026 +73244,149594,creationism,1451274038 +73249,7099,post-apocalyptic,1375344658 +73249,7099,sci-fi,1375344659 +73249,57274,zombies,1250934168 +73249,102481,product placement,1381125125 +73249,108188,Bad computing,1389968422 +73249,108188,Handwaving,1389968412 +73249,108188,Jingoism,1389968448 +73273,153,AMMAction,1171124491 +73273,1958,AMMDrama,1171124471 +73273,1958,Nudity (Topless - Brief),1171124509 +73273,2513,AMMHorror,1171124437 +73273,47610,AMMChickFlicks,1171125271 +73273,47610,Edward Norton,1171133774 +73283,110102,superhero,1442593332 +73283,110102,thriller,1442593338 +73286,223,Kevin Smith,1140466551 +73286,223,surreal,1140466551 +73286,345,Australia,1140464827 +73286,345,disco,1140464827 +73286,345,GLBT,1140464827 +73286,1200,intense,1140464923 +73286,1200,scifi,1140464923 +73286,1220,classic,1140466535 +73286,1220,I know it by heart,1140466535 +73286,1220,surreal,1140466535 +73286,2232,intense,1140466598 +73286,2232,scifi cult,1140466598 +73286,2253,cult,1140466706 +73286,2253,Joan Cusack,1140466706 +73286,2253,Robin Williams,1140466706 +73286,2253,surreal,1140466706 +73286,2681,scifi cult,1140466727 +73286,2681,surreal,1140466727 +73286,2681,William Shatner,1140466727 +73286,3070,80s,1140464782 +73286,3070,scifi cult,1140464782 +73286,3070,surreal,1140464782 +73286,3527,Arnold,1140466688 +73286,3527,Big Boys with Guns,1140466688 +73286,3527,scifi cult,1140466688 +73286,3671,classic,1140466520 +73286,3671,I know it by heart,1140466520 +73286,3671,Mel Brooks,1140466520 +73286,3740,scifi cult,1140465169 +73286,3740,surreal,1140465169 +73286,5187,from novel,1140466660 +73286,5187,spies,1140466660 +73286,5187,Walter Matthau,1140466660 +73286,7991,scifi cult,1139334212 +73286,26285,scifi cult,1140466620 +73286,26285,surreal,1140466608 +73286,59392,based on a tv show,1271920229 +73286,59392,boring are the bOri,1271920248 +73286,59392,finish of storyline,1271920229 +73286,59392,sci-fi,1271920229 +73286,60674,based on a tv show,1271920129 +73286,60674,finish of storyline,1271920129 +73286,60674,i'm my own grandpa,1271920167 +73286,60674,martin wood,1271920129 +73286,60674,paradox,1271920159 +73286,60674,sci-fi,1271920129 +73286,60674,stargate,1271920129 +73286,60674,time travel,1271920159 +73289,31698,comedy,1435835249 +73289,31698,fiction,1435835249 +73289,31698,sequel,1435835249 +73302,3361,dialogue driven,1335916893 +73302,6993,comedy,1335999383 +73302,6993,dialogue driven,1335999383 +73302,6993,great soundtrack,1335999393 +73307,59784,Kung Fu,1219308409 +73335,260,#hansolo,1437256205 +73335,260,#starwars,1437256195 +73338,260,80s,1440721342 +73338,260,Star Wars,1440721332 +73352,50,Kevin Spacey,1451964399 +73352,50,storytelling,1451964411 +73352,50,suspense,1451964401 +73352,50,twist ending,1451964398 +73352,648,Action,1449770271 +73352,648,espionage,1449770264 +73352,648,Tom Cruise,1449770276 +73352,902,1960s,1453222667 +73352,902,audrey hepburn,1453222618 +73352,902,classic,1453222617 +73352,902,elegant,1453222615 +73352,902,New York,1453222622 +73352,924,confusing ending,1451965564 +73352,924,futuristic,1451965545 +73352,924,music,1451965529 +73352,924,slow,1451965559 +73352,924,Stanley Kubrick,1451965535 +73352,1210,action,1451779729 +73352,1210,adventure,1451779731 +73352,1210,great soundtrack,1451779734 +73352,1210,Harrison Ford,1451779725 +73352,1210,sci-fi,1451779727 +73352,1210,Star Wars,1451779726 +73352,1259,1960s,1453006248 +73352,1259,55 movies every kid should see--Entertainment Weekly,1453006292 +73352,1259,based on a book,1453006245 +73352,1259,childhood,1453006242 +73352,1259,coming of age,1453006236 +73352,1259,friendship,1453006238 +73352,1259,imdb top 250,1453006295 +73352,1259,INNOCENCE LOST,1453006250 +73352,1259,Stephen King,1453006254 +73352,1784,comedy,1450409111 +73352,1784,Jack Nicholson,1450409109 +73352,1784,Oscar Winner,1450409122 +73352,2028,Tom Hanks,1449461006 +73352,2231,John Malkovich,1451789145 +73352,2231,Matt Damon,1451789138 +73352,2231,poker,1451789135 +73352,45186,Tom Cruise,1450652234 +73352,69757,architecture,1450242722 +73352,69757,artistic,1450242505 +73352,69757,chick flick,1450242583 +73352,69757,Funny,1450242497 +73352,69757,great soundtrack,1450242519 +73352,69757,inspiring,1450242766 +73352,69757,Joseph Gordon-Levitt,1450242741 +73352,69757,love,1450242726 +73352,69757,Marc Webb,1450242531 +73352,69757,music,1450242512 +73352,69757,no happy ending,1450242592 +73352,69757,Zooey Deschanel,1450242737 +73352,71520,Atheism,1451965314 +73352,88810,1960s,1452834329 +73352,88810,Emma Stone,1452834317 +73352,88810,feel good movie,1452834331 +73352,88810,great acting,1452834322 +73352,88810,racism,1452834315 +73352,88810,segregation,1452834319 +73352,88810,social commentary,1452834321 +73352,96829,hard to watch,1453080688 +73352,96829,painful to watch,1453080686 +73352,104374,Bill Nighy,1452834692 +73352,104374,charming,1452834686 +73352,104374,family,1452834742 +73352,104374,family bonds,1452834707 +73352,104374,family relationships,1452834694 +73352,104374,father son relationship,1452834701 +73352,104374,happiness,1452834696 +73352,104374,life,1452834728 +73352,104374,love,1452834698 +73352,104374,original,1452834705 +73352,104374,Rachel McAdams,1452834690 +73352,104374,romance,1452834703 +73352,104374,sweet!,1452834741 +73352,104374,time travel,1452834685 +73352,104374,touching,1452834708 +73352,111622,bittersweet,1451965855 +73352,111622,friendship,1451965860 +73352,111622,music,1451965852 +73352,111622,new york,1451965857 +73352,111622,soundtrack,1451965859 +73352,123947,trauma,1452577026 +73352,139644,cartel,1452998602 +73352,139644,emily blunt,1452998600 +73352,139644,revenge,1452998593 +73352,151599,crowd funding,1453694405 +73352,151599,Documentary,1453694494 +73352,151599,inspirational,1453694496 +73378,1291,Nazis,1158129124 +73388,89745,Captain America,1428480514 +73388,89745,predictable,1428480460 +73388,89745,Scarlett Johansson,1428480488 +73388,89745,Tom Hiddleston,1428480506 +73388,110102,Black Widow,1428480363 +73388,110102,Nick Fury,1428480393 +73430,57274,atmospheric,1384612989 +73430,57274,horror,1384612973 +73431,15,treasure,1367610668 +73431,107,treasure,1367610668 +73431,256,arnold,1367610759 +73431,353,dark hero,1367610730 +73431,380,arnold,1367610758 +73431,485,arnold,1367610759 +73431,589,arnold,1367610758 +73431,592,dark hero,1367610730 +73431,1069,noir thriller,1367610684 +73431,1179,neo-noir,1367610797 +73431,1240,arnold,1367610758 +73431,1252,noir thriller,1367610684 +73431,1284,noir thriller,1367610684 +73431,1285,cheerleading,1367610746 +73431,1291,spielberg,1367610920 +73431,1291,treasure,1367610668 +73431,1377,dark hero,1367610730 +73431,1387,spielberg,1367610920 +73431,1391,mars,1367610717 +73431,1396,conspiracy theory,1367610839 +73431,1615,stranded,1367610702 +73431,1617,neo-noir,1367610797 +73431,1646,mars,1367610717 +73431,1894,stranded,1367610702 +73431,2028,spielberg,1367610920 +73431,2115,spielberg,1367610920 +73431,2193,dragon,1367610855 +73431,2353,conspiracy theory,1367610839 +73431,2571,dark hero,1367610730 +73431,2707,conspiracy theory,1367610839 +73431,2803,conspiracy theory,1367610839 +73431,2916,arnold,1367610758 +73431,2935,screwball comedy,1367610775 +73431,2950,stranded,1367610702 +73431,3250,mountain climbing,1367610889 +73431,3435,noir thriller,1367610684 +73431,3683,neo-noir,1367610797 +73431,3786,cheerleading,1367610746 +73431,4638,stranded,1367610702 +73431,4848,short-term memory loss,1367610905 +73431,4881,neo-noir,1367610797 +73431,5017,noir thriller,1367610684 +73431,5388,short-term memory loss,1367610905 +73431,5445,spielberg,1367610920 +73431,5463,dragon,1367610855 +73431,5989,spielberg,1367610920 +73431,6377,short-term memory loss,1367610905 +73431,6539,treasure,1367610668 +73431,7293,short-term memory loss,1367610905 +73431,7482,dragon,1367610856 +73431,7728,noir thriller,1367610684 +73431,8529,stranded,1367610702 +73431,8636,dark hero,1367610730 +73431,27773,short-term memory loss,1367610905 +73431,53125,treasure,1367610668 +73431,53318,nothing better than this,1285999795 +73431,56775,treasure,1367610668 +73431,76093,dragon,1367610855 +73434,1199,atmospheric,1297708113 +73434,1199,black comedy,1297708108 +73434,1199,dark comedy,1297708107 +73434,1199,dreamlike,1297708115 +73434,1199,dystopia,1297708105 +73434,1228,boxing,1297708141 +73434,2278,intelligent,1297708159 +73434,2278,Jean Reno,1297708163 +73434,2278,Robert De Niro,1297708160 +73434,3882,cheerleading,1297708021 +73434,3882,Eliza Dushku,1297708026 +73434,3882,Eyecandy,1297708029 +73434,3882,guilty pleasure,1297708028 +73434,3882,inspiring sports movie,1297708038 +73434,3882,Kirsten Dunst,1297708022 +73434,4068,cheerleaders,1297707993 +73434,4068,crime,1297707997 +73434,8874,black comedy,1297708295 +73434,8874,british comedy,1297708296 +73434,8874,Simon Pegg,1297708289 +73434,8874,zombies,1297708300 +73434,51255,black comedy,1297708265 +73434,51255,british comedy,1297708273 +73434,51255,Simon Pegg,1297708267 +73434,73017,Atmospheric,1297708210 +73434,73017,martial arts,1297708211 +73434,73017,mystery,1297708206 +73434,73017,Robert Downey Jr.,1297708204 +73434,73017,Sherlock Holmes,1297708202 +73434,81591,atmospheric,1297707439 +73434,81591,ballet,1297707414 +73434,81591,creepy,1297707441 +73434,81591,dance,1297707437 +73434,81591,Darren Aronofsky,1297707417 +73434,81591,horror,1297707427 +73434,81591,Natalie Portman,1297707418 +73434,81591,psychological,1297707425 +73434,81591,visceral,1297707447 +73434,81591,Winona Ryder,1297707420 +73437,260,action,1443856046 +73437,260,adventure,1443856049 +73437,260,sci-fi,1443856035 +73443,912,Film Noir,1148319418 +73443,1394,classic,1148319988 +73443,1394,coen bros,1148319988 +73443,2019,classic,1148319787 +73443,2019,influencial,1148319788 +73443,7915,Samurai Fiction,1148713992 +73445,7502,war,1443819558 +73445,7502,World War II,1443819554 +73448,5128,Aaliyah,1148514167 +73448,5128,Stuart Townsend,1148514197 +73461,260,Science Fiction,1438511887 +73461,260,special effects,1438511866 +73479,7947,alcoholism,1206577648 +73479,7947,classic,1206577589 +73479,7947,typical John Houston,1206577648 +73479,58293,interesting concept,1206577536 +73489,47610,Paul Giamatti,1176166897 +73563,551,This is my absolute favourite movie ever.,1137105465 +73563,920,I love this movie,1137105587 +73563,1183,myeh,1137105511 +73563,2657,<3,1137105802 +73563,4226,crazy ass movie,1137105614 +73563,5069,Another BIG favourite,1137108825 +73563,5784,bad...but so good...lolz,1137107017 +73563,5971,best ever,1137108740 +73563,5981,bwahaha love it,1137106533 +73563,7360,<3,1137105875 +73563,30793,original is better..,1158910090 +73563,41571,so amazing,1137108452 +73563,43932,japanese version is the shit,1159769978 +73563,43932,this is just shit..haha,1159769978 +73563,47810,stupid and unnecessary,1159769994 +73590,260,hero's journey,1441989328 +73590,260,sci-fi,1441989309 +73600,260,Joseph Campbell,1439762661 +73600,260,sci-fi,1439762671 +73634,4973,Excellent story,1200567640 +73634,4973,music,1200567640 +73634,4973,photography - simply excellent movie!,1200567640 +73634,54259,Example how can you ruin excellent book,1200566283 +73639,111,loneliness,1440286449 +73639,111,prostitution,1440286517 +73639,111,vigilante,1440286466 +73639,541,cyberpunk,1440286797 +73639,541,existentialism,1440286818 +73639,1464,dreamlike,1440285960 +73639,1464,dreams,1440428574 +73639,1464,jealousy,1440289585 +73639,1464,mystery,1440289570 +73639,1464,nonlinear,1440289576 +73639,1464,Nudity (Topless),1440428564 +73639,1464,psychological,1440428607 +73639,1464,surreal,1440289565 +73639,2579,neo-noir,1445814892 +73639,2579,psychology,1445814904 +73639,2579,Twist Ending,1445814888 +73639,2959,mental illness,1440324251 +73639,2959,plot twist,1440324225 +73639,2959,social commentary,1440324244 +73639,2959,twist ending,1440324264 +73639,3262,domestic violence,1440323518 +73639,3262,drugs,1440323533 +73639,3262,multiple personality,1440323797 +73639,3262,murder,1440323865 +73639,3262,nudity (topless),1440323883 +73639,3262,supernatural,1440323711 +73639,3262,surreal,1440323907 +73639,3556,enigmatic,1440289180 +73639,3556,high school,1440289106 +73639,3556,psychology,1440289171 +73639,3623,action,1440428252 +73639,3623,espionage,1440428255 +73639,4226,nonlinear,1440322466 +73639,4226,paranoid,1440322458 +73639,4848,amnesia,1440289713 +73639,4848,dreamlike,1440286029 +73639,4848,Erotic,1440286008 +73639,4848,hallucinatory,1440286004 +73639,4848,lesbian,1440289672 +73639,4848,mystery,1440289677 +73639,4848,nonlinear,1440289668 +73639,4848,twist ending,1440286013 +73639,4873,dreams,1440289497 +73639,4873,philosophy,1440289487 +73639,4873,thought-provoking,1440289490 +73639,4878,hallucinatory,1440286713 +73639,4878,mindfuck,1440286690 +73639,4878,teen,1440286705 +73639,5881,erotic,1440287433 +73639,5881,existentialism,1440287303 +73639,5881,hallucination,1440287291 +73639,5881,mindfuck,1440287351 +73639,5881,space,1440287231 +73639,5995,holocaust,1440322173 +73639,5995,Poland,1440322184 +73639,7254,time travel,1440289442 +73639,7265,erotic,1440288887 +73639,7265,Incest,1440288919 +73639,7265,Paris,1440288893 +73639,7327,psychological,1440287952 +73639,7327,psychology,1440287933 +73639,45186,action,1440428325 +73639,45186,espionage,1440428322 +73639,46723,Japan,1440289225 +73639,46723,Morocco,1440289212 +73639,46723,multiple storylines,1440289253 +73639,46723,Murder,1440289241 +73639,48780,illusionism,1445990512 +73639,48780,illusionist,1445990503 +73639,48780,magician,1445990507 +73639,48780,non-linear,1445990625 +73639,48780,nonlinear,1445990462 +73639,48780,revenge,1445990471 +73639,48780,sci-fi,1445990479 +73639,48780,untrustworthy narrator,1445990558 +73639,53996,action,1440322707 +73639,53996,aliens,1440322721 +73639,53996,giant robots,1440322694 +73639,53996,military,1440322716 +73639,53996,robots,1440322698 +73639,55995,CG animation,1440287771 +73639,55995,seductress,1440287761 +73639,57532,stupid,1440322644 +73639,59387,story-in-a-story,1440322115 +73639,59387,visually appealing,1440322078 +73639,60684,social commentary,1440289766 +73639,60684,vigilante,1440289841 +73639,60684,vigilantism,1440289781 +73639,64614,ageism,1440288144 +73639,64614,racist humor,1440288134 +73639,68667,TV,1440287086 +73639,69757,bittersweet,1440288281 +73639,69757,cynicism,1440288291 +73639,74458,asylum,1440322347 +73639,74458,mystery,1440322398 +73639,74458,plot twist,1440322380 +73639,74458,psychological,1440322367 +73639,74458,Psychological Thriller,1440322353 +73639,74458,twist ending,1440322372 +73639,78836,afterlife,1440288416 +73639,78836,brotherhood,1440288667 +73639,78836,drugs,1440288420 +73639,78836,erotic,1440288464 +73639,78836,nightlife,1440288704 +73639,78836,orphanhood,1440288779 +73639,78836,Tokyo,1440288687 +73639,79132,action,1440322519 +73639,79132,alternate reality,1440322593 +73639,79132,dreamlike,1440322530 +73639,79132,dreams,1440322524 +73639,79132,mindfuck,1440322512 +73639,79132,suspense,1440322541 +73639,81591,ballet,1440324034 +73639,81591,dance,1440324037 +73639,81591,erotic,1440324100 +73639,81591,hallucination,1440324075 +73639,81591,lesbian,1440324090 +73639,81591,mental illness,1440324183 +73639,81591,psychological,1440323993 +73639,82461,futuristic,1440286914 +73639,82461,scenic,1440286938 +73639,82461,video games,1440286886 +73639,86880,mermaid,1440287816 +73639,86880,pirates,1440287875 +73639,86880,siren,1440287857 +73639,88140,american idiocy,1440288002 +73639,88140,cheesy,1440287993 +73639,88140,military,1440288007 +73639,93892,Chronic shyness,1440286608 +73639,93892,shyness,1440286612 +73639,94558,80s,1440323278 +73639,94558,drugs,1440323271 +73639,94558,escape,1440323414 +73639,94558,imprisonment,1440323256 +73639,94558,new age,1440322808 +73639,94558,sci-fi,1440323311 +73639,94558,supernatural,1440322865 +73639,94558,visually appealing,1440323395 +73639,97752,dystopia,1440289357 +73639,97752,multiple roles,1440289363 +73639,97752,multiple storylines,1440289349 +73639,97752,rebellion,1440289405 +73639,97950,Action,1440287001 +73639,97950,kung fu,1440286988 +73639,97950,martial arts,1440286993 +73639,100163,Witches,1440287514 +73639,102407,1920s,1440442361 +73639,104841,cheesy,1440286391 +73639,104841,space,1440286366 +73639,104841,suspense,1440286351 +73639,109487,sci-fi,1440325501 +73639,109487,space,1440325444 +73639,109487,time travel,1440325457 +73639,109487,time-travel,1440325439 +73639,109848,aliens,1440289001 +73639,109848,atmospheric,1440288960 +73639,109848,Scotland,1440289017 +73639,109848,slow,1440288969 +73639,115713,artificial intelligence,1440288193 +73639,115713,isolation,1440288238 +73639,115713,nudity (full frontal),1440288216 +73639,115713,robots,1440288208 +73642,40815,Magic,1139462219 +73669,2034,evil robot,1242883106 +73669,2105,classic,1242883073 +73669,2105,computer animation,1242883059 +73669,2105,computer game,1242883070 +73669,2105,computers,1242883074 +73669,2105,cyberpunk,1242883050 +73669,2105,original plot,1242883053 +73669,2105,video game,1242883077 +73669,2105,videogame,1242883062 +73669,2105,virtual reality,1242883054 +73669,42197,Nudity (Topless),1176417290 +73669,55255,Nudity (Full Frontal),1242882409 +73669,55255,Radha Mitchell,1242882403 +73669,60069,dystopia,1242871643 +73669,60069,robots,1242871654 +73697,1411,Shakespeare,1193401320 +73697,7773,At Rogers Video,1153060913 +73697,8375,At Rogers Video,1153061045 +73697,8844,Not at RV or BB,1153061280 +73697,8982,At Rogers Video,1153060954 +73697,27816,At Rogers Video,1153060863 +73697,27879,Not at RV or BB,1153061356 +73697,37240,At Rogers Video,1153061807 +73697,37731,Not at RV or BB,1153061514 +73697,43460,Not at RV or BB,1153061691 +73700,480,Dinosaurs,1279415729 +73737,260,"Classic, Space epic",1441667258 +73742,2762,creative,1438193745 +73742,2762,excellent,1438193745 +73742,2762,indian director,1438193745 +73765,58998,Hawaii,1430871971 +73765,58998,Jason Segel,1430871965 +73765,58998,LA,1430871987 +73765,69122,bachelor party,1430872009 +73765,69122,Vegas,1430872001 +73765,87869,dark humor,1430872022 +73800,55908,dialogue driven,1434447967 +73800,55908,Excellent use of dialogue,1434447974 +73800,55908,intellectual,1434447963 +73800,55908,philosophical,1434447960 +73800,55908,thought-provoking,1434447969 +73804,150,space program,1137631509 +73804,150,true story,1137631509 +73804,1094,England,1137631491 +73804,1094,IRA,1137631491 +73804,1094,Ireland,1137631491 +73804,1094,Transgendered,1137631491 +73804,5060,POWs,1137631490 +73804,5060,World War II,1137631490 +73810,203,transsexuals,1154634387 +73834,104,Adam Sandler,1444358636 +73834,104,comedy,1444358643 +73834,104,golf,1444358638 +73834,104,sports,1444358641 +73834,104,Underdog,1444358645 +73834,1580,action,1444358404 +73834,1580,alien,1444358414 +73834,1580,aliens,1444358386 +73834,1580,buddy movie,1444358408 +73834,1580,comedy,1444358398 +73834,1580,conspiracy theory,1444358401 +73834,1580,plot twist,1444358410 +73834,1580,sci-fi,1444358396 +73834,1580,Tommy Lee Jones,1444358393 +73834,1580,Will Smith,1444358389 +73834,2335,Adam Sandler,1444358660 +73834,2335,American football,1444358666 +73834,2335,comedy,1444358657 +73834,2335,football,1444358664 +73834,2335,sport:American football,1444358667 +73834,2335,sports,1444358669 +73834,2335,stupid,1444358658 +73834,5449,Adam Sandler,1444358336 +73834,5449,funny,1444358354 +73834,5449,silly,1444358341 +73834,5459,aliens,1444358499 +73834,5459,comedy,1444358490 +73834,5459,sci-fi,1444358498 +73834,5459,Tommy Lee Jones,1444358492 +73834,5459,Will Smith,1444358489 +73834,6016,amazing photography,1444358602 +73834,6016,atmospheric,1444358589 +73834,6016,based on a true story,1444358569 +73834,6016,black comedy,1444358593 +73834,6016,brazil,1444358559 +73834,6016,coming of age,1444358594 +73834,6016,crime,1444358573 +73834,6016,disturbing,1444358582 +73834,6016,drugs,1444358561 +73834,6016,gangs,1444358577 +73834,6016,gangsters,1444358591 +73834,6016,imdb top 250,1444358597 +73834,6016,multiple storylines,1444358566 +73834,6016,Portuguese,1444358609 +73834,6016,powerful ending,1444358607 +73834,6016,Rio de Janeiro,1444358599 +73834,6016,social commentary,1444358604 +73834,6016,South America,1444358586 +73834,6016,stylized,1444358579 +73834,6016,true story,1444358583 +73834,6016,violence,1444358574 +73834,6464,Kenan and Kel,1444358788 +73834,6464,silly,1444358798 +73834,8528,Ben Stiller,1444358690 +73834,8528,comedy,1444358696 +73834,8528,hilarious,1444358692 +73834,8528,Idiotic,1444358694 +73834,8528,obscure sports,1444358688 +73834,8528,sports,1444358695 +73834,8528,Vince Vaughn,1444358686 +73834,8531,comedy,1444358865 +73834,60516,Eddie Murphy,1444358517 +73834,60516,enjoyable,1444358514 +73834,60516,good laughs,1444358515 +73834,94777,aliens,1444358460 +73834,94777,crazy,1444358473 +73834,94777,funny,1444358464 +73834,94777,science fiction,1444358468 +73834,94777,time travel,1444358457 +73834,94777,Will Smith,1444358462 +73834,143853,Kenan and Kel,1444359786 +73834,143853,silly,1444359780 +73858,47,serial killer,1416157641 +73858,50,1990s,1418699288 +73858,50,ensemble cast,1418699240 +73858,50,heist,1418699269 +73858,50,suspense,1418699247 +73858,170,campy,1425990200 +73858,170,cyberpunk,1425990208 +73858,170,rollerblading,1425990277 +73858,180,1990s,1416157553 +73858,180,good dialogue,1416157541 +73858,390,1960s,1418614280 +73858,390,campy,1418614240 +73858,390,exploitation,1418614255 +73858,390,quotable,1418614244 +73858,390,sexploitation,1418614253 +73858,527,holocaust,1425181550 +73858,527,Nazis,1425181559 +73858,527,World War II,1425181556 +73858,527,WWII,1425181553 +73858,541,1980s,1429449430 +73858,541,atmospheric,1429449615 +73858,541,cyberpunk,1429449607 +73858,541,dark,1429449412 +73858,541,film noir,1429449598 +73858,541,neo-noir,1429449600 +73858,541,sci-fi,1429449427 +73858,922,1950s,1424059972 +73858,922,black and white,1424059929 +73858,922,film noir,1424059925 +73858,922,Hollywood,1424059932 +73858,922,Los Angeles,1424059946 +73858,1031,1970s,1416158703 +73858,1031,Disney,1416158687 +73858,1031,musical,1416158677 +73858,1089,heist,1417658956 +73858,1089,violent,1417658947 +73858,1206,psychology,1422157335 +73858,1206,stylized,1422157342 +73858,1206,surreal,1422157360 +73858,1212,1940s,1422330582 +73858,1212,film noir,1422330540 +73858,1212,mystery,1422330563 +73858,1212,vienna,1422330542 +73858,1228,black and white,1422068109 +73858,1228,boxing,1422068100 +73858,1228,stylized,1422068106 +73858,1573,corny,1416159304 +73858,1590,horror,1416159782 +73858,1590,space,1416159784 +73858,1785,crime,1416159207 +73858,1785,drugs,1416159228 +73858,1785,NYC,1416159216 +73858,2010,science fiction,1422539722 +73858,2019,16th century,1424125974 +73858,2019,black and white,1424125985 +73858,2019,Japan,1424125947 +73858,2019,Kurosawa,1424125940 +73858,2019,samurai,1424125934 +73858,2074,arthouse,1428544969 +73858,2074,BDSM,1428544842 +73858,2074,Nazis,1428544930 +73858,2074,sadomasochistic,1428544819 +73858,2074,sexuality,1428544920 +73858,2074,surreal,1428544809 +73858,2144,high school,1416155518 +73858,2144,racist,1416155510 +73858,2144,teen movie,1416155515 +73858,2194,period drama,1416159370 +73858,2470,1980s,1420845664 +73858,2470,New York City,1420845653 +73858,2470,transphobia,1420845635 +73858,2712,atmospheric,1419827022 +73858,2712,paranoia,1419827028 +73858,2712,sexuality,1419826947 +73858,2712,surreal,1419826997 +73858,2712,surrealism,1419827004 +73858,2712,thriller,1419827020 +73858,2797,1980s,1416155621 +73858,2858,loneliness,1419651430 +73858,2858,sexuality,1419651424 +73858,2858,suburbia,1419651407 +73858,2858,surrealism,1419651424 +73858,3000,anime,1416797337 +73858,3000,anti-war,1417964099 +73858,3000,fantasy,1416797357 +73858,3000,historical fantasy,1416797445 +73858,3000,Studio Ghibli,1416797331 +73858,3070,1980s,1430615395 +73858,3070,campy,1430615382 +73858,3070,comedy,1430615385 +73858,3070,sci-fi,1430615390 +73858,3089,Italian,1424232043 +73858,3089,Italy,1424232059 +73858,3089,Ladri di biciclette,1424232039 +73858,3089,postwar,1424232051 +73858,3089,Rome,1424232057 +73858,3362,1970s,1429364437 +73858,3362,heist,1429364414 +73858,3362,LGBT,1429364391 +73858,3362,NYC,1429364446 +73858,3362,sexuality,1429364425 +73858,3462,black and white,1423235139 +73858,3462,blue collar,1423235156 +73858,3462,communism,1423235099 +73858,3462,Great Depression,1423235109 +73858,3462,industrialization,1423235133 +73858,3503,aliens,1424294528 +73858,3503,dreamlike,1424294504 +73858,3503,psychological,1424294502 +73858,3503,Russian,1424294509 +73858,3503,sci-fi,1424294512 +73858,3503,space,1424294506 +73858,3591,1980s,1420845501 +73858,3591,John Hughes,1420845542 +73858,3591,misogyny,1420845524 +73858,3671,western,1428806076 +73858,3700,1980s,1430057696 +73858,3700,aliens,1430057698 +73858,3700,black lead,1430057681 +73858,3700,Harlem,1430057706 +73858,3700,NYC,1430057709 +73858,3700,sci-fi,1430057693 +73858,3729,1970s,1425484357 +73858,3729,blaxploitation,1425484338 +73858,3729,crime,1425484318 +73858,3729,nyc,1425484326 +73858,3742,Communism,1422058849 +73858,3742,Propaganda,1422058838 +73858,3742,silent movie,1422058834 +73858,4002,holiday themed,1416158990 +73858,4002,travel,1416159001 +73858,4553,campy,1430876196 +73858,4553,dystopia,1430876194 +73858,4553,sci-fi,1430876190 +73858,4878,1980s,1434253493 +73858,4878,mental illness,1434253472 +73858,4878,surreal,1434253479 +73858,4878,teen,1434253509 +73858,5410,1970s,1416158799 +73858,5410,botany,1416158792 +73858,5410,environment,1416158771 +73858,5410,far future,1416158815 +73858,5673,surreal,1416158439 +73858,6016,brazil,1418437044 +73858,6016,crime,1418437070 +73858,6016,drugs,1418437090 +73858,6016,gangs,1418437083 +73858,6016,multiple storylines,1418437144 +73858,6016,poverty,1418437113 +73858,6016,South America,1418437067 +73858,6643,Old age,1417836176 +73858,7063,conquistador,1416157961 +73858,7063,South America,1416157920 +73858,7063,violent,1416157970 +73858,7444,woman lead,1416155790 +73858,8783,cult,1420845849 +73858,8783,suspense,1420845845 +73858,8783,twist ending,1420845841 +73858,25771,1920s,1426123058 +73858,25771,black and white,1426123061 +73858,25771,dreams,1426123053 +73858,25771,short,1426123050 +73858,25771,surreal,1426123055 +73858,25771,surrealism,1426123045 +73858,26974,surreal,1416157855 +73858,27773,animal cruelty,1416712999 +73858,31658,anime,1417402498 +73858,31658,fantasy,1417402507 +73858,41573,christmas,1417391047 +73858,41573,cliched,1417391087 +73858,41573,corny,1417391086 +73858,41573,family,1417391050 +73858,41573,unbelievable,1417391078 +73858,48780,19th century,1425314641 +73858,48780,dark,1425314657 +73858,48780,revenge,1425314655 +73858,48780,thriller,1425314652 +73858,50912,vignettes,1440293801 +73858,56367,high school,1416157891 +73858,56367,pregnancy,1416157883 +73858,56367,teen pregnancy,1416157880 +73858,56782,oil,1416159707 +73858,56782,Oscar Nominee: Adapted Screenplay,1416159738 +73858,56782,religion,1416159717 +73858,57504,time travel,1416158522 +73858,62511,surreal,1416158594 +73858,62511,world within a world,1416158618 +73858,64034,World War II,1416159823 +73858,83182,skits,1416157807 +73858,83182,surreal,1416157823 +73858,85179,anime,1416158479 +73858,85179,hacking,1416158468 +73858,85179,virtual reality,1416158463 +73858,86973,China,1416159582 +73858,86973,war,1416159592 +73858,86973,world war ii,1416159576 +73858,94896,black comedy,1420846074 +73858,94896,funeral home,1420846086 +73858,94896,mockumentary,1420846197 +73858,94896,Texas,1420846112 +73858,96728,religion,1416158550 +73858,106782,crime,1416159650 +73858,106782,sinister,1416159642 +73858,106916,1970s,1416159259 +73858,107141,Disney,1416158886 +73858,107141,period drama,1416158949 +73858,107141,true story,1416158895 +73858,107406,surreal,1416155925 +73858,107406,train,1416155903 +73858,107707,motorbike,1416155842 +73858,107707,musical,1416155854 +73858,109487,corny,1417388935 +73858,109487,physics,1417389045 +73858,109487,sentimental,1417388914 +73858,109487,space,1417388909 +73858,109487,time-travel,1417388912 +73858,111360,drugs,1416155730 +73858,111360,woman lead,1416155763 +73858,114335,romance,1430269675 +73858,114335,short,1430269662 +73858,114335,surreal,1430269660 +73858,116797,historical inaccuracy,1419632783 +73858,116797,LGBT,1419632788 +73858,116797,World War II,1419632797 +73858,116945,France,1416159171 +73858,116945,French,1416159172 +73858,116945,gypsy,1420845826 +73858,116945,Korkoro,1416159147 +73858,116945,romani,1420845826 +73858,116945,World War II,1416159157 +73858,116947,crime,1416159505 +73858,116947,ireland,1422157551 +73858,116947,mobster,1422157551 +73858,119145,british comedy,1428190844 +73858,119145,offbeat,1428190827 +73858,119145,spy thriller,1428190831 +73858,122882,action,1432599555 +73858,122882,chase,1432599576 +73858,122882,desert,1432599561 +73858,122882,feminism,1432599540 +73858,122882,violence,1432599553 +73858,143385,CIA,1445044031 +73858,143385,Coen Brothers,1445044058 +73858,143385,Cold War,1445043869 +73858,143385,Historical,1445044007 +73858,143385,KGB,1445044032 +73858,143385,Political Thriller,1445043935 +73867,63082,Oscar (Best Picture),1246179555 +73904,1,Pixar,1249841627 +73904,172,cyberpunk,1249842945 +73904,296,Quentin Tarantino,1249841547 +73904,356,Oscar (Best Picture),1249841529 +73904,593,psychology,1249841542 +73904,741,cyberpunk,1249843820 +73904,1275,Sean Connery,1249841022 +73904,1396,computers,1249841062 +73904,1396,heist,1249842961 +73904,1500,assassin,1249842739 +73904,1639,Kevin Smith,1249842756 +73904,2115,Indiana Jones,1249841014 +73904,2196,Hark Tsui,1249837959 +73904,2196,Jean-Claude Van Damme,1249837964 +73904,2403,action,1249841034 +73904,3977,Bill Murray,1249842636 +73904,6711,atmospheric,1249843021 +73904,6711,Bill Murray,1249843016 +73904,6711,Japan,1249843024 +73904,6722,Hark Tsui,1249838366 +73904,6722,Jet Li,1249838362 +73904,7007,Bruce Willis,1249838854 +73904,26746,Steven Seagal,1249837736 +73904,26898,Sexualized violence,1249840603 +73904,49272,James Bond,1249841288 +73904,54881,documentary,1249843112 +73908,260,fantasy,1430613577 +73908,260,joseph campbell's study of mythology influenced,1430613607 +73908,260,space opera,1430613584 +73908,117533,current events,1430613764 +73908,117533,documentary,1430613764 +73908,117533,government,1430613764 +73911,260,sci-fi,1440970841 +73911,260,space opera,1440970828 +73914,32,adventure,1439237190 +73914,32,bruce willis,1439237178 +73914,32,mindfuck,1439237185 +73914,32,Terry Gilliam,1439237173 +73914,70,cult classic,1439237648 +73914,70,Quentin Tarantino,1439237621 +73914,70,Robert Rodriguez,1439237644 +73914,70,Tarantino,1439237630 +73914,70,twist ending,1439237633 +73914,1193,jack nicholson,1439237224 +73914,3793,action,1439237413 +73914,3793,comic book,1439237410 +73914,4226,cult film,1439237346 +73914,4226,dark,1439237350 +73914,4226,nonlinear,1439237355 +73914,4226,stylized,1439237352 +73914,4226,twist ending,1439237358 +73914,4306,animation,1439237317 +73914,4306,Eddie Murphy,1439237328 +73914,4896,Christmas,1439237515 +73914,4896,harry potter,1439237509 +73914,4896,school drama,1439237505 +73914,7153,fantasy,1439237279 +73914,7153,fantasy world,1439237284 +73914,7153,lord of the rings,1439237290 +73914,7153,Peter Jackson,1439237271 +73914,32587,Bruce Willis,1439237544 +73914,32587,brutality,1439237563 +73914,32587,dark,1439237560 +73914,32587,multiple storylines,1439237576 +73914,32587,Quentin Tarantino,1439237556 +73914,32587,surrealism,1439237549 +73914,32587,visually appealing,1439237572 +73914,111781,Action,1439237463 +73914,111781,Tom Cruise,1439237457 +73922,6,Al Pacino,1231337335 +73922,6,imdb top 250,1231337329 +73922,6,Robert De Niro,1231337339 +73922,527,Holocaust,1231337779 +73922,527,true story,1231337769 +73922,527,World War II,1231337776 +73922,5388,Al Pacino,1231337232 +73922,6874,imdb top 250,1231337836 +73922,6953,Nonlinear,1231337592 +73922,6953,psychological,1231337605 +73922,8491,50's & 60's,1231337426 +73922,63436,Confused,1231336112 +73942,40278,not a war movie.,1150589212 +73952,48780,mystery,1443006262 +73952,48780,thriller,1443006256 +73952,79132,science fiction,1443006143 +73952,79132,suspense,1443006164 +74011,260,blowyourmind,1444494402 +74011,260,classic,1444494385 +74025,1291,Sean Connery was the best part,1137123569 +74027,55555,death,1228012485 +74027,55555,prison,1228012481 +74030,1880,children,1153829397 +74047,1562,Arnold Schwarzenegger,1263745426 +74047,1562,Batman,1263745426 +74047,1562,George Clooney,1263745426 +74047,1562,Joel Schumacher,1263745426 +74047,1562,Uma Thurman,1263745426 +74047,3082,James Bond,1263745647 +74056,40629,classic,1448282132 +74056,40629,romance,1448282174 +74059,137563,giant wasp,1436384491 +74059,137563,practical effects,1436384491 +74059,137563,small cast,1436384491 +74060,733,Nicolas Cage,1182785077 +74060,912,AFI #2,1182089476 +74060,1269,Cary Grant,1182864761 +74060,1269,murder,1182864721 +74060,1291,Steven Spielberg,1182785176 +74060,1584,Jodie Foster,1184251043 +74060,1584,outer space,1184251046 +74060,2995,bad acting,1184151218 +74060,3791,Kevin Bacon,1184150748 +74060,3979,Adam Sandler,1184151034 +74060,5265,Robin Williams,1184151203 +74060,6157,Ben Affleck,1184148430 +74060,7318,violent,1184148617 +74060,46976,Maggie Gyllenhaal,1184147478 +74060,47970,Zack Braff,1182089401 +74060,50068,Clint Eastwood,1182783789 +74060,50068,War in the eye of enemy,1182783781 +74060,50068,World War II,1182783765 +74060,53894,documentary,1183709422 +74060,53894,health care,1183709417 +74060,53894,Michael Moore,1183709412 +74073,90405,reflective,1341325618 +74073,90405,sci-fi,1341325632 +74073,90405,social commentary,1341325616 +74075,260,space adventure,1437746099 +74075,260,war,1437746138 +74075,1219,Alfred Hitchcock,1437766900 +74075,1219,suspenseful,1437766905 +74075,1219,thriller,1437766917 +74075,2502,comedy,1437860110 +74075,2502,satire,1437860136 +74075,4973,beautifully filmed,1437746615 +74075,4973,feel-good,1437746654 +74075,4973,French,1437746636 +74075,4973,great soundtrack,1437746621 +74075,4973,Paris,1437746644 +74075,4973,quirky,1437746630 +74075,6711,atmospheric,1437768332 +74075,6711,Bill Murray,1437768326 +74075,6711,bittersweet,1437768339 +74075,6711,Scarlett Johansson,1437768328 +74075,60126,espionage,1437768500 +74075,60126,Steve Carell,1437768491 +74075,74787,bollywood,1437748380 +74075,74787,sad,1437748380 +74075,74787,touching,1437748380 +74075,91653,Family,1451080284 +74075,91653,feel-good,1451080275 +74075,91653,Matt Damon,1451080280 +74075,91653,Scarlett Johansson,1451080277 +74075,95309,Keira Knightley,1452591596 +74075,95309,Steve Carell,1452591600 +74075,106002,aliens,1439821841 +74075,106002,military,1439821817 +74075,106002,space,1439821814 +74075,106002,war,1439821831 +74075,106920,artificial intelligence,1437872220 +74075,106920,beautiful,1437872241 +74075,106920,bittersweet,1437872227 +74075,106920,quirky,1437872274 +74075,106920,sad,1437872256 +74075,106920,Scarlett Johansson,1437872224 +74075,106920,science fiction,1437872253 +74075,106920,thought-provoking,1437872222 +74075,115617,Animation,1437767854 +74075,115617,funny,1437767849 +74075,115713,artificial intelligence,1438242913 +74075,115713,philosophical,1438242919 +74075,115713,technology,1438242930 +74075,115713,thought provoking,1438242916 +74075,115713,thriller,1438242956 +74075,117533,edward snowden,1437851585 +74075,117533,espionage,1437851642 +74075,117533,nonfiction,1437851604 +74075,117533,nsa,1437851611 +74075,119145,british,1450734870 +74075,119145,self-aware,1450734926 +74075,119145,spy,1450734868 +74075,127098,comedy,1437925249 +74075,127098,Louis C.K.,1437925254 +74075,127098,stand-up comedy,1437925244 +74075,134853,Animation,1450036855 +74075,134853,childhood,1450036849 +74075,134853,coming of age,1450036852 +74075,134853,family,1450036843 +74075,134853,Pixar,1450036814 +74075,134853,psychology,1450036845 +74079,260,i am your father,1439288367 +74079,260,oldie but goodie,1439288355 +74144,260,future,1437022869 +74144,260,sci-fi,1437022878 +74144,260,Science Fiction,1437022862 +74144,135887,animation,1438331927 +74144,135887,children,1438331927 +74144,135887,comedy,1438331927 +74158,1221,Amazing sequel,1138976680 +74165,25,melancholic,1368526005 +74165,32,original,1368525952 +74165,34,Hugo Weaving,1174415094 +74165,39,teen movie,1368526407 +74165,50,excellent script,1368526204 +74165,111,masterpiece,1368526125 +74165,296,masterpiece,1368526125 +74165,345,Hugo Weaving,1174415133 +74165,549,musicians,1368526372 +74165,587,supernatural,1368526180 +74165,593,excellent script,1368526203 +74165,724,teen movie,1368526408 +74165,735,splatter,1368526261 +74165,799,supernatural,1368526181 +74165,866,stylish,1368526232 +74165,923,masterpiece,1368526125 +74165,924,masterpiece,1368526125 +74165,1089,original,1368525952 +74165,1213,masterpiece,1368526125 +74165,1213,stylish,1368526232 +74165,1248,noir thriller,1368526043 +74165,1249,stylish,1368526232 +74165,1258,masterpiece,1368526126 +74165,1285,teen movie,1368526407 +74165,1466,mentor,1368526104 +74165,1704,mentor,1368526103 +74165,2144,teen movie,1368526408 +74165,2194,excellent script,1368526204 +74165,2291,original,1368525952 +74165,2384,Hugo Weaving,1174415092 +74165,2420,mentor,1368526104 +74165,2571,Hugo Weaving,1174414959 +74165,2837,Hugo Weaving,1174415364 +74165,2858,excellent script,1368526203 +74165,2866,musicians,1368526371 +74165,2915,teen movie,1368526408 +74165,3083,women,1368526309 +74165,3129,musicians,1368526371 +74165,3418,women,1368526309 +74165,4018,women,1368526309 +74165,4020,supernatural,1368526181 +74165,4377,Hugo Weaving,1174415056 +74165,4993,Hugo Weaving,1174415019 +74165,5065,supernatural,1368526180 +74165,5952,Hugo Weaving,1174415017 +74165,6365,Hugo Weaving,1174414962 +74165,6731,splatter,1368526261 +74165,6934,Hugo Weaving,1174414960 +74165,33834,splatter,1368526261 +74165,42723,splatter,1368526261 +74165,44191,Hugo Weaving,1174247490 +74165,44191,Natalie Portman,1174247504 +74165,49274,Hugo Weaving,1174415182 +74165,53123,musicians,1368526371 +74173,260,old sci-fi,1439801943 +74189,39183,Heath Ledger,1165244568 +74205,260,space opera,1439833232 +74205,260,throwback,1439833242 +74214,59369,action packed,1448260340 +74214,59369,bryan mills dialogue delivery,1448260412 +74214,59369,dialogues,1448260441 +74214,59369,father daughter relationship,1448260328 +74214,59369,Liam Neeson,1448260302 +74214,91529,Anne Hathaway,1448260246 +74214,91529,Bane's voice,1448260175 +74214,91529,Batman,1448260195 +74214,91529,Batman voice,1448260201 +74214,91529,Christopher Nolan,1448260262 +74214,91529,Gary Oldman,1448260230 +74214,91529,Hans Zimmer,1448260269 +74214,91529,Michael Caine,1448260208 +74214,91529,Morgan Freeman,1448260239 +74214,104841,3D,1448260488 +74214,104841,3D effects,1448260492 +74214,104841,cinematography,1448260470 +74214,104841,George Clooney,1448260481 +74214,104841,sandra bullock,1448260473 +74214,104841,space,1448260466 +74214,104841,visually stunning,1448260478 +74234,260,sci-fi,1433353617 +74236,260,galactic empire,1443413143 +74236,260,space adventure,1443412590 +74275,175,AIDS,1208721723 +74275,318,classic,1211481429 +74275,1676,satire,1208721955 +74275,2571,popular philosophy,1208721523 +74275,7151,painter,1208722789 +74275,7347,schizophrenia,1208722652 +74275,7976,White Trash,1208721778 +74275,8014,culture clash,1208721609 +74275,8950,schizophrenia,1208721677 +74275,27773,incest,1208722094 +74275,39183,homosexuality,1208721827 +74275,46578,disfunctional family,1208722175 +74275,48696,suburbia,1208721482 +74275,52952,skinhead,1208721460 +74275,53447,murder,1208722381 +74275,53447,skateboarding,1208722381 +74275,53519,grindhouse,1208722566 +74275,55052,regrets,1208721894 +74275,55094,Iraq War,1208722476 +74275,55094,murder,1208722476 +74275,55442,Iran,1208722698 +74275,55553,genetics,1208722591 +74275,56333,DEATH OF A PARENT,1208722067 +74275,56333,family drama,1208722044 +74281,665,Emir Kusturica,1180958318 +74281,48043,Darren Aronofsky,1180958198 +74285,74458,psychological,1430413256 +74285,74458,twisted ending,1430413268 +74285,84954,futuristic,1430413300 +74285,84954,sci-fi,1430413300 +74285,84954,sexy leading actresses,1430413300 +74289,3969,change the world,1438704441 +74289,3969,idealistic,1438704444 +74289,3969,inspirational,1438704438 +74289,3996,atmospheric,1438704111 +74289,3996,beautifully filmed,1438704109 +74289,3996,Kung Fu,1438704107 +74289,3996,martial arts,1438704104 +74289,4144,atmospheric,1438704856 +74289,4144,elegant,1438704872 +74289,4144,melancholic,1438704859 +74289,4144,melancholy,1438704866 +74289,4144,music,1438704867 +74289,4144,Wong Kar Wai,1438704870 +74289,4873,existentialism,1438704709 +74289,4873,metaphysics,1438704713 +74289,4873,philosophy,1438704700 +74289,4873,surreal,1438704716 +74289,5444,family,1438704517 +74289,6377,animation,1438704183 +74289,6377,funny,1438704188 +74289,6377,Pixar,1438704181 +74289,6536,animation,1438799957 +74289,6536,efects,1438799971 +74289,6536,story,1438799976 +74289,8638,dialogue,1438704596 +74289,8638,great dialogue,1438704606 +74289,8638,minimalist,1438704598 +74289,8638,Paris,1438704592 +74289,8638,philosophical,1438704609 +74289,8638,Richard Linklater,1438704617 +74289,8638,romance,1438704605 +74289,8638,romantic,1438704594 +74289,27266,atmospheric,1438705188 +74289,27266,melancholy,1438705181 +74289,27266,Wong Kar-wai,1438705185 +74289,52806,dragons,1439050518 +74289,52806,fantasy,1439050510 +74289,52806,fantasy world,1439050521 +74289,52806,magic,1439050517 +74289,52806,Studio Ghibli,1439050524 +74289,58299,happy ending,1438705302 +74289,58299,world inside another world,1438705305 +74289,65261,Animation,1438714993 +74289,65261,anime,1438714990 +74289,73664,dragons,1439043188 +74289,73664,fantasy,1439043191 +74289,76093,action,1438704031 +74289,76093,adventure,1438704034 +74289,76093,animation,1438704022 +74289,76093,dragons,1438704010 +74289,76093,Excellent Animation,1438704036 +74289,76093,fantasy,1438704018 +74289,78105,action,1438705234 +74289,78105,adventure,1438705229 +74289,78105,Ben Kingsley,1438705247 +74289,78105,fantasy,1438705232 +74289,78105,Jake Gyllenhaal,1438705238 +74289,78105,kingdoms,1438705255 +74289,78105,persia,1438705240 +74289,78105,Special Effects,1438705251 +74289,98809,adventure,1438704625 +74289,98809,beautiful scenery,1438704635 +74289,98809,fantasy,1438704630 +74289,98809,fantasy world,1438704628 +74289,106489,adventure,1438704899 +74289,106489,fantasy,1438704904 +74289,115664,animated,1438706890 +74292,45730,fairy tale,1167450666 +74293,1258,jack nicholson,1169585420 +74293,88140,america porn,1346105686 +74293,88140,cheesy,1346105689 +74364,180,jason lee,1142749635 +74364,919,tecnicolor,1142749673 +74364,8950,creepy,1142749647 +74401,105769,meta,1418896172 +74401,105769,philosophical,1418896183 +74401,105769,trippy,1418896175 +74401,112515,Australia,1405860130 +74401,112515,creepy kid,1405860130 +74401,112515,mother-son relationship,1405860168 +74401,112759,Australian,1405764287 +74401,112759,prison,1405764311 +74401,112759,wildlife,1405764311 +74401,113250,dark comedy,1407680614 +74401,113250,revenge,1407680632 +74401,113252,gory,1407680839 +74401,113252,haunted house,1407853195 +74401,113252,horror comedy,1407680854 +74401,113252,New Zealand,1407680817 +74401,113252,Paranormal,1407680822 +74401,116138,corruption,1429457246 +74401,116138,politics,1429457241 +74401,123119,documentary,1430640735 +74401,123119,greenland,1430640740 +74401,123119,philosophy,1430640752 +74421,260,fighting,1434956349 +74421,260,space,1434956345 +74421,112290,childhood,1434956595 +74421,112290,growing up,1434956595 +74421,112290,life,1434956595 +74428,73017,steampunk,1381922354 +74428,86882,romance,1382191186 +74428,104913,based on a true story,1381751241 +74455,27706,DVD,1137288500 +74462,47,Kevin Spacey,1146043830 +74462,50,Kevin Spacey,1146043854 +74462,805,Kevin Spacey,1146044010 +74462,1617,Kevin Spacey,1146043840 +74462,2058,Kevin Spacey,1146043825 +74462,2858,Kevin Spacey,1146043808 +74462,4874,Kevin Spacey,1146043905 +74462,6187,Kevin Spacey,1146043941 +74465,318,imdb top 250,1424704868 +74465,318,inspirational,1424704856 +74528,912,noir,1221247866 +74528,92180,eastern europe,1421526563 +74528,92180,immigrants,1421526563 +74528,92180,road movie,1421526563 +74545,7297,norway,1171393739 +74545,7297,swedish,1171393739 +74545,27773,Korean,1405204789 +74572,260,action,1438101802 +74572,260,sci-fi,1438101777 +74595,50,complicated,1408571725 +74595,50,Kevin Spacey,1408571721 +74595,50,twist ending,1408571718 +74595,1674,Harrison Ford,1408571589 +74648,150,Accuracy,1298187783 +74648,150,based on a true story,1298187764 +74648,150,moon,1298187817 +74648,150,NASA,1298187800 +74648,150,space,1298187798 +74648,150,Tom Hanks,1298187757 +74648,150,true story,1298187809 +74648,356,historical,1298189425 +74648,356,inspirational,1298189398 +74648,356,quirky,1298189409 +74648,356,Tom Hanks,1298189385 +74648,356,vietnam war,1298189379 +74648,502,growth,1298189101 +74648,502,martial arts,1298189048 +74648,502,teen angst,1298189071 +74648,750,black comedy,1298188771 +74648,750,classic,1298188775 +74648,750,dark comedy,1298188765 +74648,750,military,1298188780 +74648,750,politics,1298188782 +74648,750,satire,1298188768 +74648,750,Stanley Kubrick,1298188766 +74648,904,Alfred Hitchcock,1298188421 +74648,904,claustrophobic,1298188434 +74648,904,suspense,1298188428 +74648,904,voyeurism,1298188440 +74648,923,Amazing Cinematography,1298188224 +74648,923,Orson Welles,1298188228 +74648,1203,classic,1298188392 +74648,1203,courtroom drama,1298188345 +74648,1203,good dialogue,1298188349 +74648,1203,low budget,1298188370 +74648,1204,cinematography,1298188189 +74648,1204,historical,1298188174 +74648,1204,Middle East,1298188180 +74648,1204,true story,1298188204 +74648,1204,World War I,1298188199 +74648,1289,gets better as it goes,1298188970 +74648,1289,no dialogue,1298188950 +74648,1289,no narrative,1298188948 +74648,1293,accurate,1298188054 +74648,1293,India,1298188113 +74648,1293,Oscar (Best Actor),1298188139 +74648,1293,Oscar (Best Directing),1298188136 +74648,1293,Oscar (Best Picture),1298188133 +74648,1297,college,1298187630 +74648,1297,engineering,1298187625 +74648,1297,Popcorn,1298187623 +74648,1297,revenge,1298187617 +74648,1297,science,1298187605 +74648,1297,smart comedy,1298187602 +74648,1297,Val Kilmer,1298187619 +74648,1297,witty,1298187609 +74648,1704,genius,1298189490 +74648,1704,Great Screenplays,1298189505 +74648,1704,inspirational,1298189497 +74648,1704,Robin Williams,1298189500 +74648,1938,addiction,1298188275 +74648,1938,alcoholism,1298188277 +74648,1938,matter-of-fact,1298188288 +74648,1945,Marlon Brando,1298188309 +74648,1945,overrated,1298188307 +74648,2134,John Hughes,1298187710 +74648,2134,Robert Downey Jr,1298187706 +74648,2134,Robert Downey Jr.,1298187699 +74648,2183,Alfred Hitchcock,1298188516 +74648,2183,classic,1298188528 +74648,2183,Hitchcock,1298188521 +74648,2183,James Stewart,1298188519 +74648,2210,Alfred Hitchcock,1298188503 +74648,2210,black and white,1298188492 +74648,2420,classic,1298189169 +74648,2420,martial arts,1298189178 +74648,2420,Ralph Macchio,1298189216 +74648,2420,underdog,1298189173 +74648,2763,art,1298187316 +74648,2763,Caper,1298187274 +74648,2763,heist,1298187312 +74648,2763,intelligent thriller,1298187267 +74648,2763,painting,1298187305 +74648,2763,plot holes,1298187279 +74648,4022,spiritual journey,1298187928 +74648,4022,Tom Hanks,1298187951 +74648,5266,Forest Whitaker,1298187405 +74648,5266,Jodie Foster,1298187400 +74648,5266,seen at the cinema,1298187427 +74648,5266,thriller,1298187418 +74648,5785,simply: why???,1298188924 +74648,39292,historical,1298188707 +74648,39292,history,1298188708 +74648,39292,Robert Downey Jr.,1298188713 +74648,64620,based on a true story,1298188662 +74648,64620,history,1298188677 +74648,64620,politics,1298188667 +74648,64620,true story,1298188670 +74648,64620,US President,1298188688 +74648,79224,Jackie Chan,1298189254 +74648,79224,martial arts,1298189248 +74648,79224,remake,1298189244 +74648,80463,dark comedy,1298186061 +74648,80463,inaccurate,1298186038 +74648,80463,software developers,1298186049 +74653,1291,Adventure,1437591885 +74653,48043,artistic,1437591919 +74653,48043,dreamlike,1437591910 +74653,48043,immortality,1437591915 +74653,48043,Music,1437591916 +74653,48043,visually appealing,1437591912 +74655,68237,clones,1430848120 +74655,68237,cloning,1430848133 +74655,68237,future,1430848132 +74655,68237,Kevin Spacey,1430848114 +74655,79132,dreamlike,1430848092 +74655,79132,mindfuck,1430848081 +74662,94,Portman,1181012180 +74662,7141,In Netflix queue,1183393684 +74670,46723,Inarritu,1178620989 +74779,318,Morgan Freeman,1364709024 +74779,318,Stephen King,1364709026 +74779,318,twist ending,1364709028 +74779,2571,alternate reality,1388533828 +74779,2571,philosophy,1388533852 +74779,2571,post-apocalyptic,1388533834 +74779,2571,surreal,1388533838 +74779,2571,thought-provoking,1388533843 +74779,2858,surrealism,1403739286 +74779,2858,thought-provoking,1403739283 +74779,2959,dark,1403739127 +74779,2959,dark comedy,1364709080 +74779,2959,disturbing,1364709099 +74779,2959,Edward Norton,1364709068 +74779,2959,mental illness,1403739100 +74779,2959,mindfuck,1403739116 +74779,2959,philosophy,1364709073 +74779,2959,psychological,1364709077 +74779,2959,psychology,1364709070 +74779,2959,quirky,1403739110 +74779,2959,surreal,1364709087 +74779,2959,thought-provoking,1403739107 +74779,2959,violence,1364709085 +74779,2959,violent,1403739139 +74784,1198,adventure,1300626221 +74784,1198,comedy,1300626245 +74784,1198,good versus evil,1300626232 +74784,1198,Harrison Ford,1300626238 +74784,1958,sentimental,1306672103 +74784,1958,tear jerker,1306672100 +74784,4993,Action,1300626158 +74784,4993,adventure,1300626155 +74784,4993,fantasy,1300626130 +74784,4993,scenic,1300626169 +74784,26947,drugs,1300626030 +74784,26947,open ending,1300626036 +74784,55290,morality,1310220277 +74784,55290,twist,1310220279 +74784,57368,Handycam,1308921103 +74784,65514,foreign language,1284790523 +74784,77658,made for TV,1284790156 +74784,77658,physics,1284790199 +74805,527,biopic,1233877228 +74805,527,historical,1233877484 +74805,527,Holocaust,1233877235 +74805,527,WWII,1233877506 +74805,1203,courtroom drama,1233614673 +74805,1215,ancient book,1233747594 +74805,1215,black comedy,1233874723 +74805,1215,campy,1233747619 +74805,1215,cult horror,1233862551 +74805,1215,dark humor,1233747594 +74805,1215,demon possession,1233862551 +74805,1215,demons,1233747594 +74805,1215,evil spirits,1233862551 +74805,1215,heroic,1233862551 +74805,1215,isolation,1233862551 +74805,1215,Necronomicon,1233862551 +74805,1215,occult,1233862551 +74805,1215,possession,1233862551 +74805,1215,undead,1233874822 +74805,1215,wilderness,1233862551 +74805,1261,ancient book,1233747513 +74805,1261,black comedy,1233874736 +74805,1261,cult horror,1233862515 +74805,1261,dark humor,1233747513 +74805,1261,demon possession,1233747513 +74805,1261,demons,1233747513 +74805,1261,evil spirits,1233862516 +74805,1261,heroic,1233862516 +74805,1261,isolation,1233862516 +74805,1261,Necronomicon,1233747513 +74805,1261,occult,1233862516 +74805,1261,possession,1233862516 +74805,1261,undead,1233874809 +74805,1261,wilderness,1233862516 +74805,1645,antichrist,1233881877 +74805,1645,courtroom drama,1233882057 +74805,1645,demons,1233881877 +74805,1645,devil,1233881877 +74805,1645,fallen angel,1233882412 +74805,1645,lucifer,1233882399 +74805,1645,occult,1233881893 +74805,1645,satan,1233881877 +74805,1645,sin,1233881877 +74805,1645,temptation,1233881877 +74805,2560,legend,1233876628 +74805,2560,survival,1233618118 +74805,2560,unconventional,1233876574 +74805,2560,vampires,1233876574 +74805,2560,wendigo,1233876628 +74805,2560,wilderness,1233618118 +74805,3074,atmospheric,1233505194 +74805,3074,isolationist,1233514098 +74805,3074,survivalist,1233504272 +74805,3074,wilderness,1233504245 +74805,3108,chivalrous,1233505371 +74805,3108,compassionate,1233505380 +74805,3108,quest,1233505408 +74805,4105,ancient book,1233514048 +74805,4105,black comedy,1233874749 +74805,4105,campy,1233862564 +74805,4105,cult horror,1233512469 +74805,4105,dark humor,1233862564 +74805,4105,demon possession,1233862460 +74805,4105,demons,1233514048 +74805,4105,evil spirits,1233514048 +74805,4105,heroic,1233514048 +74805,4105,isolation,1233514048 +74805,4105,Necronomicon,1233862564 +74805,4105,occult,1233514048 +74805,4105,possession,1233514048 +74805,4105,stylish,1233862564 +74805,4105,undead,1233876120 +74805,4105,wilderness,1233514048 +74805,5673,happiness,1233747183 +74805,5673,love,1233747183 +74805,6511,biopic,1233877586 +74805,6511,epic,1233505548 +74805,6511,gospel,1233945202 +74805,6511,historical,1233877586 +74805,6511,Jesus Christ,1233505548 +74805,6511,transcendental,1233505548 +74805,6511,truth,1233945202 +74805,8874,black comedy,1233874674 +74805,8874,dark humor,1233747705 +74805,8874,spoof,1233747688 +74805,8874,undead,1233874674 +74805,8874,zombies,1233747655 +74805,8985,vampires,1233877101 +74805,31696,spiritual warfare,1233507339 +74805,47999,another gospel,1233944222 +74805,47999,false gospel,1233945247 +74805,47999,false prophets,1233945239 +74805,47999,false teachers,1233945239 +74805,47999,fanaticism,1233945328 +74805,47999,radical,1233945338 +74805,48678,atypical,1233940405 +74805,48678,excessive,1233939651 +74805,48678,repulsive,1233939748 +74805,65126,holy bloodline,1233874262 +74806,42958,upper west side,1393138152 +74816,260,Popular,1440260222 +74816,260,space adventure,1440260232 +74866,52952,coming of age,1301716471 +74925,260,mythology,1437134554 +74925,260,sci-fi,1437134536 +74933,260,classic,1437667807 +74933,260,scifi,1437667805 +74995,589,action,1432498478 +74995,589,apocalypse,1432498511 +74995,589,artificial intelligence,1432498468 +74995,589,computers,1432498513 +74995,589,cyborgs,1432498476 +74995,589,dystopia,1432498448 +74995,589,future,1432498477 +74995,589,nuclear war,1432498470 +74995,589,sci-fi,1432498505 +74995,589,Suspense,1432498510 +74995,589,time travel,1432498480 +74995,1240,Action,1432498554 +74995,1240,artificial intelligence,1432498552 +74995,1240,future,1432498566 +74995,1240,time travel,1432498560 +74995,4993,Adventure,1432498648 +74995,4993,high fantasy,1432498654 +74995,4993,music,1432498651 +74995,4993,tolkien,1432498646 +74995,4993,wizards,1432498645 +74995,109848,nudity (full frontal),1432500697 +74995,109848,Scarlett Johansson,1432500700 +74995,110407,artificial intelligence,1432500577 +74995,111360,fast paced action,1432500511 +74995,111360,Scarlett Johansson,1432500502 +74995,111360,scifi,1432500507 +74995,112556,mindfuck,1435529777 +74995,112556,Psychopathy,1435529775 +74995,112556,unpredictable,1435529773 +74995,114935,time travel,1435432834 +74995,114935,twist ending,1435432837 +75005,260,Boring,1440137374 +75005,260,old,1440137386 +75019,104,adam sandler,1318706504 +75019,608,overrated,1318706739 +75019,1103,overrated,1318706182 +75019,2502,that fat nerd is just annoying,1318706118 +75019,8528,seen it before,1318706449 +75019,47640,Just stupid,1318706536 +75019,52973,overrated,1318706470 +75019,55820,overrated,1318706705 +75019,61024,Exellent first half,1318706053 +75019,61024,terrible ending,1318706042 +75019,76251,Gore!!!,1318706275 +75019,76251,sort of honest,1318706296 +75019,78209,Lame everything,1318706227 +75052,260,cult classic,1439435158 +75052,260,sci-fi,1439435142 +75052,6283,humorous,1440188330 +75052,6283,sci-fi,1440188322 +75052,27156,psychology,1440177516 +75052,31658,anime,1440188539 +75052,31658,Hayao Miyazaki,1440188560 +75052,31658,romance,1440188573 +75052,31658,Studio Ghibli,1440188544 +75052,61236,animated,1440188749 +75052,61236,psychological,1440188693 +75052,61236,thought-provoking,1440188699 +75052,61236,war,1440188734 +75052,84187,anime,1440188777 +75052,140074,antichrist,1440189407 +75056,546,video game adaptation,1441337458 +75057,5669,Charlton Heston,1254300640 +75057,5669,propaganda,1254300629 +75057,7502,Mini-Series' are extended TV movies. Get over it.,1296771375 +75057,7502,World War II,1297773274 +75057,8622,politics,1254300606 +75057,8622,propaganda,1254300602 +75057,8622,social commentary,1254300608 +75057,27002,Mini-Series' are extended TV movies. Get over it.,1296771487 +75057,53894,liberal propaganda,1254300555 +75057,53894,Michael Moore,1254300558 +75057,53894,propaganda,1254300560 +75057,58376,Biased,1297470891 +75057,58376,Bullshit,1297470888 +75057,58376,Conspiracy Theory,1297470835 +75057,58376,Fiction,1297470837 +75057,58376,inaccurate,1297470895 +75057,58376,Lies,1297470897 +75057,65225,Conspiracy Theory,1297470918 +75057,65225,Fiction,1297470928 +75057,74795,conspiracy theory,1303629576 +75057,74795,Left-Wing Propaganda,1303629592 +75057,74795,Propaganda,1303629565 +75057,84273,Conspiracy Theory,1297470813 +75057,84273,Fiction,1297470816 +75061,778,black comedy,1443305544 +75061,778,dark comedy,1443305543 +75061,778,Ewan McGregor,1443305576 +75061,1120,Edward Norton,1442220345 +75061,1258,psychological,1443895377 +75061,1917,apocalypse,1442697705 +75061,1917,Ben Affleck,1442697695 +75061,1917,disaster,1442697703 +75061,1961,Tom Cruise,1443895397 +75061,2396,Ben Affleck,1444236492 +75061,2396,British,1444236506 +75061,2396,Colin Firth,1444236536 +75061,2396,Joseph Fiennes,1444236519 +75061,2396,Oscar (Best Picture),1444236489 +75061,3979,Adam Sandler,1442699035 +75061,4039,classic,1442402418 +75061,4226,Christopher Nolan,1443304029 +75061,4226,Guy Pearce,1443304047 +75061,4226,Mindfuck,1443303983 +75061,4226,plot twist,1443304032 +75061,4226,twist ending,1443303987 +75061,5266,Kristen Stewart,1442402113 +75061,5266,thriller,1442402106 +75061,5445,sci-fi,1444237045 +75061,5445,Tom Cruise,1444237065 +75061,5747,friendship,1442402176 +75061,6266,Colin Firth,1444236720 +75061,7442,Ewan McGregor,1442402231 +75061,8640,Clive Owen,1444236291 +75061,8640,Keira Knightley,1444236298 +75061,8914,clever,1442826162 +75061,8914,complex,1442826181 +75061,8914,complicated plot,1442826192 +75061,8914,intellectual,1442826169 +75061,8914,intelligent,1442826178 +75061,8914,mindfuck,1442826157 +75061,8914,science,1442826175 +75061,8914,thought-provoking,1442826172 +75061,8914,time travel,1442826158 +75061,8969,Colin Firth,1443302942 +75061,8973,Catholicism,1439680393 +75061,8973,child abuse,1439680405 +75061,27032,Jackie Chan,1442600408 +75061,41285,clever,1445721221 +75061,41285,Jonathan Rhys Meyers,1445721230 +75061,41285,Matthew Goode,1445721244 +75061,41285,Scarlett Johansson,1445721220 +75061,41285,twist ending,1445721230 +75061,48522,Ewan McGregor,1442402969 +75061,48522,spy,1442402973 +75061,51037,Greg Kinnear,1442402071 +75061,51037,Jim Caviezel,1442402076 +75061,51037,plot twist,1442402059 +75061,51037,psychological,1442402067 +75061,52606,Simon Pegg,1444233919 +75061,53123,bittersweet,1442599415 +75061,53138,Noah Wyle,1442600117 +75061,53140,Noah Wyle,1442600091 +75061,53550,Christian Bale,1444237284 +75061,55250,"Dwayne ""The Rock"" Johnson",1444237113 +75061,55250,Dwayne Johnson,1444237105 +75061,57147,Ewan McGregor,1442698227 +75061,57147,moral dilemma,1442698227 +75061,58162,british,1442698271 +75061,58162,Simon Pegg,1442698267 +75061,58293,historically inaccurate,1442698044 +75061,59118,British,1442402441 +75061,59118,difficult protagonist,1442402450 +75061,59118,no plot,1442402437 +75061,59118,uncomfortable,1442402460 +75061,59995,Andrew Garfield,1442402354 +75061,60040,Edward Norton,1442599813 +75061,68135,Matthew Perry,1444235943 +75061,72483,Jesse McCartney,1443301395 +75061,74228,mystery,1442402559 +75061,74228,puzzle,1442402566 +75061,74228,Surreal,1442402557 +75061,74228,time loop,1442402558 +75061,74228,twist ending,1442402563 +75061,74275,Ewan McGregor,1442402328 +75061,80489,Ben Affleck,1445716608 +75061,81845,Colin Firth,1444119811 +75061,81845,Guy Pearce,1444119845 +75061,81845,Oscar (Best Picture),1444119816 +75061,83086,good soundtrack,1441564827 +75061,83086,musical,1442402384 +75061,83086,xtina,1442402392 +75061,89305,adolescence,1442402295 +75061,89305,friendship,1442402299 +75061,102993,coming of age,1442010064 +75061,102993,Sam Rockwell,1442010066 +75061,103048,coming of age,1442402272 +75061,103655,Jeff Bridges,1446315606 +75061,103655,Mary-Louise Parker,1446315612 +75061,112868,twist ending,1442402692 +75061,114007,british,1442402028 +75061,114007,Colin Firth,1442402026 +75061,114007,Nicole Kidman,1442402024 +75061,114007,Psychological Thriller,1442402039 +75061,140797,Japanese,1440668532 +75061,141446,French,1440668771 +75061,142546,Biopic,1442686965 +75061,142546,brilliant,1442687003 +75061,142546,Filipino,1442687006 +75061,142546,Foreign,1442687008 +75061,142546,History,1442686993 +75061,142546,John Arcilla,1442686994 +75061,142546,Philippines,1442686988 +75061,142546,witty,1442686996 +75061,142558,French,1442696534 +75061,142564,Japan,1442697150 +75071,5218,cartoon,1227393447 +75084,110,classic,1428161027 +75084,110,historical,1428161036 +75084,110,inspirational,1428160999 +75084,110,Oscar (Best Picture),1428161050 +75084,110,sword fight,1428161046 +75084,110,war,1428161040 +75084,356,inspirational,1428161149 +75084,356,tom hanks,1428161149 +75084,356,very funny,1428161149 +75084,116797,code breaking,1428161106 +75084,116797,Computers,1428161109 +75084,116797,cryptography,1428161094 +75084,116797,genius,1428161102 +75084,116797,mathematics,1428161097 +75094,45517,kids and family,1208032361 +75160,1210,bah,1155082282 +75161,2571,Action,1293577807 +75161,2571,alternate reality,1293577808 +75161,2571,artificial intelligence,1293577803 +75161,2571,Keanu Reeves,1293577797 +75161,2571,martial arts,1293577821 +75161,2571,philosophical,1293577819 +75161,2571,sci-fi,1293577813 +75161,2571,surreal,1293577816 +75161,2571,thought-provoking,1293577815 +75161,58998,hilarious,1293731273 +75161,58998,Kristen Bell,1293731261 +75161,58998,Nudity (Topless),1293731265 +75161,67087,bromance,1293731285 +75161,67087,Jason Segel,1293731302 +75161,67087,likeable,1293731297 +75161,67087,Paul Rudd,1293731304 +75171,1303,India,1201685490 +75178,60069,robot love,1451221505 +75224,69757,hipster,1324126330 +75228,5952,Myth,1436944038 +75228,98809,Action,1436944128 +75228,98809,Myth,1436944141 +75246,87520,Intellienge artificial,1429886998 +75246,89745,superhero team,1429887039 +75265,59369,fight scenes,1447676782 +75265,59369,findAndKillYou,1447676750 +75265,59369,Liam Neeson,1447676771 +75265,59369,thriller,1447676777 +75267,48516,fact-twisting,1422112059 +75267,48516,great acting,1422112059 +75267,48516,thriller,1422112059 +75267,58559,adventure,1421076705 +75267,58559,comic book,1421076705 +75267,58559,drama,1421076705 +75267,59315,comic book,1424008375 +75267,59315,fast paced,1424008375 +75267,59315,funny,1424008375 +75279,737,heroine in tight suit,1181583406 +75279,1391,stupid,1181496483 +75279,1391,two hours of suck,1181496478 +75279,3826,Paul Verhoeven,1181496690 +75279,4308,lavish,1181493096 +75279,4308,musical,1181493104 +75279,4308,stylized,1181493098 +75279,5858,aliens,1181497574 +75279,5858,atmospheric,1181497546 +75279,5858,old people,1181497557 +75279,5858,slow,1181497546 +75279,6157,heroine in tight suit,1181583410 +75279,6503,two hours of suck,1181496600 +75279,6537,heroine in tight suit,1181583413 +75279,6564,computer game,1181495805 +75279,6754,heroine in tight suit,1181583414 +75279,6754,vampires,1181492938 +75279,6754,werewolves,1181492899 +75279,6872,computer game,1181495725 +75279,6872,video game adaptation,1181495737 +75279,6872,videogame,1181495731 +75279,7454,heroine in tight suit,1181583407 +75279,8368,childish,1181497054 +75279,8464,McDonalds,1181497522 +75279,8464,must see,1181497523 +75279,31221,heroine in tight suit,1181583408 +75279,31424,video game adaptation,1181496297 +75279,34150,boring,1182016212 +75279,37386,heroine in tight suit,1181583411 +75279,37386,lush,1181496185 +75279,37386,utopia,1181496163 +75279,40732,ending lame,1181495385 +75279,42721,heroine in tight suit,1181583404 +75279,42721,videogame,1181495428 +75279,42738,heroine in tight suit,1181583415 +75279,42738,vampires,1181492935 +75279,42738,werewolves,1181492898 +75279,43928,comic book,1181493386 +75279,43928,feminist,1181493413 +75279,43928,flashy,1181497510 +75279,43928,sci-fi,1181493393 +75279,43928,stylized,1181497512 +75279,45447,batman clues,1181496761 +75279,46965,quotable,1181496050 +75279,48385,United States,1181497447 +75279,51662,comic,1181494851 +75279,51662,gratuitous,1181494843 +75279,51662,quotable,1181494859 +75279,53125,crap,1181492263 +75279,53125,Johnny Depp,1181492254 +75279,53125,pirates,1181492251 +75279,58559,Batman,1217616280 +75279,61323,dildo,1229115593 +75283,55721,too much violence,1260262398 +75283,55946,Robert Redford,1259495839 +75283,58803,Black Jack,1259499431 +75283,58803,Kevin Spacey,1259499431 +75303,2858,beautiful,1442469492 +75303,2858,inspiring,1442469485 +75303,2858,thought-provoking,1442469499 +75303,4886,animated,1442469523 +75303,4886,funny,1442469516 +75337,50,comedy,1449895229 +75347,2,comedy,1437996783 +75347,2,fiction,1437996783 +75347,2,thrill,1437996783 +75347,260,comic book style,1437898751 +75347,260,geeky,1437898758 +75363,3307,Charlie Chaplin,1383920392 +75363,3307,slapstick,1383920398 +75368,19,Jim Carrey,1303834592 +75368,110,historical,1303845489 +75368,110,medieval,1303845477 +75368,475,Ireland,1303835738 +75368,475,prison,1303835748 +75368,2232,psychological,1303845691 +75368,2232,weird,1303845695 +75368,2712,enigmatic,1303845621 +75368,3252,Al Pacino,1304003687 +75368,4993,fantasy world,1303845380 +75368,6214,Monica Bellucci,1304092113 +75368,6502,epidemic,1304028664 +75368,6502,survival,1304028659 +75368,7458,historical epic,1304003656 +75368,8977,ancient civilization,1304027388 +75368,8977,Ancient Greece,1304027408 +75368,33794,great cast,1304024177 +75368,34375,great soundtrack,1304150382 +75368,71108,TOO LONG,1303833867 +75368,71466,Andy Garcia,1306158353 +75391,4975,psychology,1196351829 +75411,94466,drama,1429968012 +75411,94466,near future,1429968012 +75411,94466,pseudoscience,1429968012 +75412,7566,available at CML,1176459141 +75420,1,adventure,1440326829 +75420,47,atmospheric,1440325705 +75420,47,captivating,1440504922 +75420,47,dark,1440325713 +75420,47,disturbing,1440325711 +75420,47,gorgeous cinematography,1443254514 +75420,111,atmospheric,1440324750 +75420,111,psychology,1440324763 +75420,111,robert de niro,1440324742 +75420,111,social commentary,1440324756 +75420,111,visceral,1441472740 +75420,123,cinematography,1442752001 +75420,123,dreamlike,1442750868 +75420,123,reflective,1442750862 +75420,123,scenic,1442752018 +75420,123,urbane,1442750944 +75420,215,atmospheric,1444557402 +75420,215,bittersweet,1444557373 +75420,215,cinematography,1444557408 +75420,215,dialogue,1444557371 +75420,215,intelligent,1444557361 +75420,215,poignant,1444557381 +75420,215,reflective,1444557359 +75420,215,romantic,1444557364 +75420,215,thought-provoking,1444557376 +75420,260,adventure,1440326102 +75420,260,atmospheric,1441473566 +75420,260,fantasy,1440326104 +75420,260,sci-fi,1440326093 +75420,260,Science Fiction,1440326095 +75420,260,space,1440326097 +75420,260,space adventure,1440326100 +75420,296,multiple storylines,1440324774 +75420,296,nonlinear,1440324772 +75420,318,atmospheric,1440324513 +75420,318,reflective,1440324526 +75420,318,sentimental,1440324521 +75420,356,conservatism,1442827728 +75420,356,conservative,1442827735 +75420,541,atmospheric,1440325117 +75420,541,cyberpunk,1440325142 +75420,541,dreamlike,1440325129 +75420,541,dystopia,1440325131 +75420,541,existentialism,1440325121 +75420,541,film noir,1440325154 +75420,541,future,1440325147 +75420,541,futuristic,1440325155 +75420,541,great cinematography,1440325163 +75420,541,neo-noir,1440325125 +75420,541,sci-fi,1440325141 +75420,541,stylized,1440325146 +75420,593,disturbing,1440325426 +75420,608,atmospheric,1443254470 +75420,608,black comedy,1440325776 +75420,608,dark comedy,1440325772 +75420,608,quirky,1440325778 +75420,608,snow,1443254436 +75420,608,strong female,1440325762 +75420,608,witty,1440325780 +75420,714,atmospheric,1443254878 +75420,714,black and white,1440326029 +75420,714,bleak,1441473533 +75420,714,dreamlike,1440326039 +75420,714,surreal,1440326034 +75420,714,visually appealing,1440326031 +75420,750,black comedy,1440325799 +75420,750,dark comedy,1440325798 +75420,750,satire,1441473250 +75420,750,satirical,1440325808 +75420,858,atmospheric,1440324540 +75420,858,great acting,1440324535 +75420,903,Atmospheric,1440324825 +75420,903,obsession,1440324823 +75420,903,twist ending,1440324835 +75420,904,claustrophobic,1440324851 +75420,912,atmospheric,1440325850 +75420,922,atmospheric,1440325076 +75420,922,film noir,1440325077 +75420,923,Amazing Cinematography,1440325265 +75420,923,Innovative,1440504485 +75420,923,Story worth telling,1440504499 +75420,924,atmospheric,1440324919 +75420,924,cinematography,1440324923 +75420,924,meditative,1440500303 +75420,924,philosophical,1440324917 +75420,924,sci-fi,1440500313 +75420,924,surreal,1440500297 +75420,924,visually appealing,1440324921 +75420,968,ominous,1440325337 +75420,1196,adventure,1440326069 +75420,1196,atmospheric,1443254904 +75420,1196,cinematography,1443254913 +75420,1196,fantasy,1440326068 +75420,1196,sci-fi,1440326064 +75420,1196,space,1440326066 +75420,1201,Clint Eastwood,1440324787 +75420,1201,Ennio Morricone,1440324795 +75420,1203,good dialogue,1440325383 +75420,1203,group psychology,1440325393 +75420,1203,thought-provoking,1440325389 +75420,1208,Dark,1440324903 +75420,1208,surreal,1440324900 +75420,1210,adventure,1440324597 +75420,1212,atmospheric,1440325827 +75420,1212,cinematography,1440325836 +75420,1212,film noir,1440325834 +75420,1212,great cinematography,1440325826 +75420,1213,good dialogue,1440324695 +75420,1213,Joe Pesci,1440504866 +75420,1213,robert de niro,1440504862 +75420,1214,atmospheric,1440325215 +75420,1214,dark,1440325211 +75420,1214,space,1440325221 +75420,1219,tense,1440500442 +75420,1221,great acting,1440324579 +75420,1228,Robert De Niro,1440325681 +75420,1230,funny,1440325998 +75420,1230,quirky,1440325995 +75420,1230,relationships,1440325997 +75420,1230,witty,1440326002 +75420,1232,meditative,1440325236 +75420,1248,atmospheric,1440324351 +75420,1251,cinematography,1443253078 +75420,1251,dreams,1440325594 +75420,1251,surreal,1440325592 +75420,1252,atmospheric,1440325503 +75420,1252,bleak,1440325514 +75420,1252,cynical,1440325509 +75420,1252,dark,1440500516 +75420,1252,Film Noir,1440325501 +75420,1252,mystery,1440325511 +75420,1252,somber,1440504552 +75420,1252,twists & turns,1440504537 +75420,1258,atmospheric,1440324656 +75420,1258,disturbing,1440324659 +75420,1258,dreamlike,1440324666 +75420,1260,atmospheric,1440325676 +75420,1274,post-apocalyptic,1440324864 +75420,1274,visually stunning,1440324860 +75420,1464,atmospheric,1440325172 +75420,1464,dreamlike,1440325178 +75420,1464,strange,1440325174 +75420,1464,surreal,1440325170 +75420,2010,marxist,1440859052 +75420,2010,social commentary,1440859056 +75420,2010,visionary,1440325441 +75420,2019,Amazing Cinematography,1441472952 +75420,2019,atmospheric,1440325064 +75420,2019,epic,1440325049 +75420,2019,historical,1440325055 +75420,2019,samurai,1440325043 +75420,2019,stylized,1440325070 +75420,2093,creepy,1441473414 +75420,2160,Atmospheric,1440325527 +75420,2160,Dream Sequence,1440325540 +75420,2288,disturbing,1440325312 +75420,2288,horror,1440325320 +75420,2288,paranoia,1440325299 +75420,2363,allegory,1440505078 +75420,2363,anti-war,1440325938 +75420,2363,giant monster,1440325934 +75420,2363,Godzilla,1441473374 +75420,2364,Godzilla,1440326847 +75420,2502,satire,1441472976 +75420,2959,atmospheric,1440324458 +75420,2959,social commentary,1440324467 +75420,3000,adventure,1440325884 +75420,3000,atmospheric,1443254750 +75420,3000,dark,1443254759 +75420,3000,environmental,1440325882 +75420,3000,fantasy,1440325886 +75420,3000,fantasy world,1440325875 +75420,3000,Hayao Miyazaki,1440325873 +75420,3000,Studio Ghibli,1440325872 +75420,3000,surreal,1440325880 +75420,3355,atmospheric,1441472661 +75420,3355,bad ending,1440324452 +75420,3355,Mystery,1440324447 +75420,3355,satanism,1440326584 +75420,3365,cinematography,1441473275 +75420,3435,film noir,1440325341 +75420,3503,atmospheric,1440326077 +75420,3503,dreamlike,1440326078 +75420,3503,enigmatic,1441473587 +75420,3503,meditative,1440326081 +75420,3503,psychological,1440326085 +75420,3730,atmospheric,1443254832 +75420,3730,ominous,1441473467 +75420,3730,paranoia,1440325986 +75420,4144,atmospheric,1441513876 +75420,4144,loneliness,1442752086 +75420,4144,melancholy,1441513886 +75420,4144,moody,1441513890 +75420,4226,cerebral,1440325571 +75420,4226,complicated,1440325552 +75420,4226,dark,1440325589 +75420,4226,dreamlike,1440325557 +75420,4226,Good story,1440504602 +75420,4226,memory,1440325549 +75420,4226,Mindfuck,1440325562 +75420,4226,mystery,1440325564 +75420,4226,non-linear,1440325579 +75420,4226,nonlinear,1440325544 +75420,4226,plot twist,1440325575 +75420,4226,psychological,1440325551 +75420,4226,psychology,1440325547 +75420,4226,story,1440504594 +75420,4226,storytelling,1440504606 +75420,4226,tense,1440325559 +75420,4226,twist ending,1440325546 +75420,4226,twists & turns,1440504579 +75420,4848,Atmospheric,1440324999 +75420,4848,dark,1440324993 +75420,4848,disturbing,1440324958 +75420,4848,dreamlike,1440324951 +75420,4848,Mindfuck,1440324956 +75420,4848,mystery,1440324962 +75420,4848,surreal,1440324948 +75420,4848,surrealism,1440324967 +75420,4878,dreamlike,1440326133 +75420,4878,surreal,1440326130 +75420,4973,atmospheric,1442134856 +75420,4973,beautifully filmed,1442134835 +75420,4973,fairy tale,1442134853 +75420,4973,feel-good,1442690325 +75420,4973,great soundtrack,1442134849 +75420,4973,notable soundtrack,1442134851 +75420,4973,surreal,1442134845 +75420,5291,multiple storylines,1440326046 +75420,5291,nonlinear,1440326047 +75420,5618,amazing artwork,1441473691 +75420,5618,atmospheric,1440326209 +75420,5618,beautiful,1440326216 +75420,5618,colourful,1441473689 +75420,5618,dreamlike,1440326206 +75420,5618,extraordinary!!!,1441473726 +75420,5618,fairy tale,1440504649 +75420,5618,fantasy,1440326205 +75420,5618,fun,1441473714 +75420,5618,Hayao Miyazaki,1440326203 +75420,5618,imaginative,1440326226 +75420,5618,Studio Ghibli,1440326201 +75420,5618,surreal,1440326210 +75420,5690,anti-war,1440325648 +75420,5690,poignant,1440325652 +75420,5690,Studio Ghibli,1440325646 +75420,5971,feel-good,1440504782 +75420,5971,Hayao Miyazaki,1440325898 +75420,5971,nature,1440325909 +75420,5971,Studio Ghibli,1440325896 +75420,5971,visually appealing,1440325900 +75420,6016,amazing cinematography,1443254794 +75420,6016,atmospheric,1440326022 +75420,6016,cinematography,1443254789 +75420,6016,stylized,1440326018 +75420,6350,adventure,1440326159 +75420,6350,beautiful,1440505888 +75420,6350,fantasy,1440326166 +75420,6350,fantasy world,1443254981 +75420,6350,fun,1441473645 +75420,6350,Hayao Miyazaki,1440326157 +75420,6350,imagination,1440505881 +75420,6350,Studio Ghibli,1440326155 +75420,6350,visually appealing,1440326168 +75420,6711,Amazing Cinematography,1441622909 +75420,6711,atmospheric,1441622891 +75420,6711,bittersweet,1441622897 +75420,6711,friendship,1441622930 +75420,6711,great cinematograhy,1441622944 +75420,6711,isolation,1441622907 +75420,6711,Japan,1441622895 +75420,6711,loneliness,1441622917 +75420,6711,Melancholic,1441622898 +75420,6711,nocturnal,1441622940 +75420,6711,poignant,1441622919 +75420,6711,reflective,1441622903 +75420,6711,relationships,1441622921 +75420,6711,romance,1441622954 +75420,6711,stylized,1441622951 +75420,6711,tokyo,1442752050 +75420,6711,urbane,1442752058 +75420,6711,visually appealing,1441622926 +75420,6783,class issues,1440505056 +75420,6783,satire,1440505059 +75420,6987,atmospheric,1443427563 +75420,6987,surreal,1443361757 +75420,7068,hallucinatory,1440325377 +75420,7099,environmental,1440326185 +75420,7099,fantasy,1440505871 +75420,7099,Hayao Miyazaki,1440326177 +75420,7099,strong female lead,1440326182 +75420,7099,Studio Ghibli,1440326176 +75420,7361,beautiful,1440325104 +75420,7361,bittersweet,1440325089 +75420,7361,dreamlike,1440325098 +75420,7361,emotional,1440328139 +75420,7361,fantasy,1440325107 +75420,7361,melancholy,1440325101 +75420,7361,nonlinear,1440328158 +75420,7361,romance,1440328148 +75420,7361,surreal,1440325084 +75420,7361,surrealism,1440325096 +75420,7361,thought-provoking,1440325086 +75420,7387,social commentary,1440325286 +75420,8125,atmospheric,1440325621 +75420,8638,atmospheric,1444636363 +75420,8638,cinematography,1444636359 +75420,8638,emotional,1444636343 +75420,8638,philosophical,1444636338 +75420,8638,romance,1444636336 +75420,26082,Samurai,1440325631 +75420,26082,tense,1440325640 +75420,27773,depressing,1440325960 +75420,27773,disturbing,1440325955 +75420,27773,hallucinatory,1440325969 +75420,27773,stylized,1440325957 +75420,27773,surreal,1440325972 +75420,27773,twist ending,1440325975 +75420,33794,atmospheric,1440324376 +75420,33794,batman,1440324366 +75420,33794,dark,1440324368 +75420,34150,boring,1442827499 +75420,34542,bears,1442118825 +75420,45499,Dynamic CGI Action,1442827563 +75420,46651,Fugazi,1440326803 +75420,46651,musicians,1440326808 +75420,51662,boring,1440505615 +75420,51662,not very good,1440505660 +75420,51662,shallow,1440505629 +75420,51662,stylized,1440324480 +75420,53996,sexist,1442827118 +75420,55820,atmospheric,1440504283 +75420,55820,dark,1440325742 +75420,56782,Daniel Day-Lewis,1440325726 +75420,58559,Atmospheric,1440324388 +75420,58559,cinematography,1443254356 +75420,58559,dark,1440326621 +75420,58559,gritty,1440324396 +75420,61240,adolescence,1440328170 +75420,61240,atmospheric,1440324678 +75420,61240,bittersweet,1440324674 +75420,61240,dark,1440324683 +75420,61240,strange,1440324681 +75420,69526,cgi,1442827075 +75420,69526,silly,1440326713 +75420,69526,Special Effects,1442827081 +75420,72489,boring,1442827384 +75420,72489,poor plot,1442827392 +75420,80831,dark,1440326608 +75420,87520,big budget,1442827623 +75420,87520,childish,1442827629 +75420,87520,FX,1442827636 +75420,87520,trite,1442827610 +75420,88129,atmospheric,1440325474 +75420,88129,cinematography,1440325477 +75420,88129,Ryan Gosling,1440325495 +75420,88129,visually appealing,1440325481 +75420,99764,philosopical,1440909462 +75420,100714,atmospheric,1444636327 +75420,100714,beautiful,1444636389 +75420,100714,cinematography,1444636323 +75420,100714,honest,1444636303 +75420,100714,philosophical,1444636383 +75420,111364,bland hero,1441473393 +75420,111364,Godzilla,1441473387 +75422,356,emotional,1424964827 +75422,356,lifetime movie,1424964827 +75422,356,love story,1424964827 +75422,39234,amber heard,1358282230 +75422,59258,Amy Poehler,1369330025 +75422,59258,friendship,1369330048 +75422,59258,tina fey,1369330013 +75422,66511,paul kalkbrenner,1361311436 +75422,90057,madness,1337603924 +75422,95558,child's perspective,1367684451 +75422,95558,emotional,1367684451 +75422,95558,father daughter relationship,1367684452 +75422,95558,great acting,1367684452 +75422,95558,Louisiana,1367684452 +75422,96417,bike messengers,1357684792 +75422,96417,Joseph Gordon-Levitt,1357684754 +75422,96417,Michael Shannon,1357684755 +75422,96417,New Yo,1357684772 +75422,96728,confusing,1368535845 +75422,96728,disturbing,1368535975 +75422,96728,disturbing music,1368536012 +75422,96728,not audience friendly,1368535832 +75422,99110,bad acting,1379421808 +75422,99110,Lizzy Caplan,1379421821 +75422,99502,Amber Heard,1357484754 +75422,99502,drugs,1357484783 +75422,99502,high school,1357484738 +75422,99502,homosexuality,1357484792 +75422,100083,offensive,1368216001 +75422,102378,adapted from:book,1368103364 +75422,102378,advertising,1368103364 +75422,102378,Amber Heard,1368103364 +75422,102378,New York City,1368103377 +75422,102378,unlikeable characters,1368103441 +75422,102800,greta gerwig,1394941852 +75439,6539,action,1450625411 +75439,6539,adventure,1450625369 +75439,6539,comedy,1450625379 +75439,6874,action,1450625472 +75439,6874,martial arts,1450625529 +75439,6874,violent,1450625529 +75463,26,based on a play,1309942163 +75463,26,Shakespeare,1309942158 +75463,26,Shakespearean,1309942159 +75463,58,italian bittersweet romance,1309942031 +75463,58,poetry,1309942035 +75463,58,poets,1309942037 +75463,58,writers,1309942038 +75463,58,writing,1309942045 +75463,597,Julia Roberts,1309898028 +75463,1059,Claire Danes,1309897870 +75463,1059,Leonardo DiCaprio,1309897856 +75463,1059,updated classics,1309897860 +75463,1377,Michelle Pfeiffer,1310303148 +75463,2291,dark comedy,1309934660 +75463,2291,Johnny Depp,1309934669 +75463,2291,love story,1309934673 +75463,2324,heartwarming,1309942101 +75463,2324,Holocaust,1309942097 +75463,2324,optimism,1309942107 +75463,2324,World War II,1309942094 +75463,2396,colin firth,1310302984 +75463,2396,Gwyneth Paltrow,1310302982 +75463,2396,love story,1310302998 +75463,2396,Oscar (Best Picture),1310302980 +75463,2396,overrated,1310302992 +75463,2396,Period,1310303006 +75463,2396,romance,1310302987 +75463,2396,Shakespeare,1310302979 +75463,3186,based on a true story,1310303239 +75463,3186,mental illness,1310303261 +75463,3186,Oscar (Best Supporting Actress),1310303243 +75463,3186,suicide,1310303272 +75463,3186,true story,1310303256 +75463,3186,winona ryder,1310303246 +75463,3545,Berlin,1310302715 +75463,3545,classic,1310302717 +75463,3545,Germany,1310302718 +75463,3545,Liza Minelli,1310302742 +75463,3545,Nazi Germany,1310302731 +75463,3545,Oscar (Best Cinematography),1310302752 +75463,3545,Oscar (Best Directing),1310302747 +75463,3545,World War II,1310302730 +75463,3854,based on a true story,1309941924 +75463,3854,Germany,1309941926 +75463,3854,Holocaust,1309941918 +75463,3854,lesbian,1309941921 +75463,3854,Nazis,1309941922 +75463,4306,animation,1309898097 +75463,4389,cliche,1309932024 +75463,4389,dark,1309932030 +75463,4389,erotic,1309932016 +75463,4389,lesbian,1309932008 +75463,4389,lesbians hiding their identities,1309932011 +75463,5349,Kirsten Dunst,1309898324 +75463,5349,super hero,1309898318 +75463,5952,high fantasy,1309898141 +75463,5952,imdb top 250,1309898132 +75463,5952,Oscar (Best Effects - Visual Effects),1309898135 +75463,7669,19th century,1309898609 +75463,7669,Colin Firth,1309898612 +75463,7669,Jane Austen,1309898599 +75463,7669,period drama,1309898601 +75463,7669,romantic,1309898606 +75463,44191,dark,1310302915 +75463,44191,historical,1310302919 +75463,44191,imdb top 250,1310302917 +75463,44191,inspirational,1310302928 +75463,44191,Natalie Portman,1310302904 +75463,44191,political,1310302924 +75463,44191,politics,1310302902 +75463,44191,thought-provoking,1310302908 +75463,50183,Erin Kelly,1309931968 +75463,50183,erotic,1309931949 +75463,50183,Forbidden Love,1309931963 +75463,50183,lesbian,1309931957 +75463,53972,bruce willis,1309949191 +75463,53972,unrealistic,1309949186 +75463,59000,Patton Oswalt,1309897505 +75463,59000,Winona Ryder,1309897500 +75463,69712,Cameron Diaz,1309898561 +75463,72998,aliens,1309897902 +75463,72998,imdb top 250,1309897899 +75463,72998,sci-fi,1309897889 +75463,88075,lesbian,1310302885 +75463,88075,plot,1310302889 +75478,4023,characters,1329349779 +75478,4023,ending,1329349779 +75478,4023,plot,1329349779 +75478,4973,Audrey Tautou,1329349791 +75478,4973,characters,1329349791 +75478,4973,costumes,1329349791 +75478,4973,plot,1329349791 +75478,4973,set design,1329349791 +75478,6660,characters,1329620610 +75478,6660,costumes,1329620610 +75478,6660,music,1329620610 +75478,6660,set design,1329620610 +75478,6660,storyline,1329620610 +75478,89039,characters,1329621095 +75478,89039,ending,1329621095 +75478,89039,music,1329621095 +75488,27604,japan,1176292382 +75504,71057,incredible,1265927597 +75504,71057,intelegent,1265927615 +75504,71057,unique,1265927606 +75508,260,classic sci-fi,1434413997 +75508,260,epic adventure,1434414028 +75551,8912,beautiful women,1141589308 +75551,73808,coincidences,1359063177 +75551,73808,Dark,1359063173 +75551,73808,Korean,1359063167 +75551,85774,biography,1359149085 +75551,85774,long,1359149091 +75556,33880,overrated,1140929687 +75556,47610,Edward No,1240898314 +75556,102364,bad acting,1431578562 +75556,102364,bad movie,1431578562 +75556,102364,waste of time,1431578562 +75562,93988,opposites attract,1422066344 +75562,93988,romance,1422066344 +75562,93988,tv miniseries,1422066344 +75592,260,scifi,1441636281 +75592,260,space action,1441636302 +75653,6283,anime,1231730210 +75664,50,short-term memory loss,1368664796 +75664,107,treasure,1368664254 +75664,150,stranded,1368664377 +75664,208,dark hero,1368664453 +75664,380,arnold,1368664513 +75664,440,conspiracy theory,1368664688 +75664,485,arnold,1368664513 +75664,521,noir thriller,1368664330 +75664,589,arnold,1368664513 +75664,592,dark hero,1368664453 +75664,757,Redux: 2008,1378175415 +75664,757,wuxia,1378175382 +75664,866,neo-noir,1368664617 +75664,898,screwball comedy,1368664560 +75664,905,screwball comedy,1368664559 +75664,910,screwball comedy,1368664560 +75664,913,noir thriller,1368664330 +75664,950,screwball comedy,1368664560 +75664,1097,stranded,1368664377 +75664,1179,neo-noir,1368664617 +75664,1206,short-term memory loss,1368664796 +75664,1240,arnold,1368664513 +75664,1245,neo-noir,1368664617 +75664,1248,noir thriller,1368664330 +75664,1253,mars,1368664415 +75664,1285,cheerleading,1368664494 +75664,1291,spielberg,1368664819 +75664,1291,treasure,1368664254 +75664,1387,spielberg,1368664819 +75664,1391,mars,1368664415 +75664,1396,conspiracy theory,1368664689 +75664,1617,neo-noir,1368664617 +75664,1617,short-term memory loss,1368664796 +75664,1783,noir thriller,1368664330 +75664,1894,stranded,1368664377 +75664,2022,christian,1368664598 +75664,2028,spielberg,1368664819 +75664,2076,neo-noir,1368664617 +75664,2115,spielberg,1368664819 +75664,2115,treasure,1368664254 +75664,2193,dragon,1368664727 +75664,2278,car chase,1236542783 +75664,2353,conspiracy theory,1368664689 +75664,2405,treasure,1368664254 +75664,2571,dark hero,1368664453 +75664,2662,mars,1368664415 +75664,2726,noir thriller,1368664330 +75664,2916,arnold,1368664513 +75664,3264,cheerleading,1368664494 +75664,3300,stranded,1368664377 +75664,4638,stranded,1368664377 +75664,4878,short-term memory loss,1368664796 +75664,5135,bollywood,1368664180 +75664,5445,spielberg,1368664819 +75664,6218,bollywood,1368664180 +75664,6377,short-term memory loss,1368664796 +75664,6539,treasure,1368664254 +75664,6873,screwball comedy,1368664560 +75664,6874,dark hero,1368664453 +75664,7013,noir thriller,1368664330 +75664,7113,magical realism,1179081329 +75664,7361,short-term memory loss,1368664796 +75664,7386,christian,1368664598 +75664,8366,christian,1368664598 +75664,8529,stranded,1368664377 +75664,8622,conspiracy theory,1368664688 +75664,27790,Ebert Ten Best List,1153522549 +75664,33162,christian,1368664598 +75664,33171,Ind Spirit Nom Best Dir,1142292763 +75664,33880,Ebert Best Ten List,1153522664 +75664,34528,Ebert Ten Best List,1153522636 +75664,39886,Ebert Best Ten List,1153522699 +75664,39886,ISA nomination Screenplay & Supp Actress,1142292919 +75664,48696,ironic title,1179066257 +75664,51884,bollywood,1368664180 +75664,63082,bollywood,1368664180 +75664,67801,Criterion,1279402352 +75664,67801,well-made,1279402131 +75670,260,good action fantasy,1438632389 +75670,260,space travel,1438632445 +75682,318,framed for crimes,1435734139 +75682,318,prison,1435734139 +75682,318,revenge,1435734139 +75682,2918,1980s,1435733947 +75682,2918,80s,1435733959 +75682,2918,comedy,1435733969 +75682,49272,James Bond,1435733798 +75682,49272,spy,1435733811 +75682,54286,action,1435733854 +75682,54286,spy thriller,1435733858 +75682,54286,thriller,1435733864 +75695,356,AMAZING!,1299522310 +75695,356,nothing,1299522313 +75717,260,Boring,1443175881 +75717,260,wtf,1443175890 +75721,48516,too violent,1174798907 +75726,570,1920s,1379793975 +75726,570,anti-Semitism,1379794011 +75726,570,social commentary,1379794074 +75726,570,socialism,1379794156 +75726,570,working class,1379793993 +75726,1041,realism,1282332892 +75726,1199,Terry Gilliam,1239256882 +75726,1390,Dan Aykroyd,1303588191 +75726,1390,Jack Lemmon,1303588191 +75726,1390,James Garner,1303588190 +75726,1516,black comedy,1408653954 +75726,1516,politics,1408653966 +75726,1542,miners,1282492431 +75726,1596,realism,1370960000 +75726,1596,realistic,1370960009 +75726,3108,Terry Gilliam,1239256736 +75726,3271,Farming,1370549007 +75726,3271,Poverty,1370548990 +75726,3271,Rural,1370549014 +75726,3271,The Depression,1370548979 +75726,3271,Tragic,1370549044 +75726,3911,dogs,1418852638 +75726,3911,mockumentary,1418852630 +75726,4019,F. Murray Abraham,1395525692 +75726,4563,childish,1393190419 +75726,4834,unfunny,1373135733 +75726,5447,realism,1306684406 +75726,5447,social commentary,1306684406 +75726,5669,Michael Moore,1239256901 +75726,7934,mockumentary,1282333042 +75726,8582,politics,1409058607 +75726,8951,realism,1282332851 +75726,26597,physical comedy,1388065366 +75726,26597,satire,1388065314 +75726,26754,satire,1361211537 +75726,27780,Christmas,1365872588 +75726,27780,slapstick,1365872561 +75726,27780,trains,1365872580 +75726,27780,Wittgenstein,1365872553 +75726,43460,metafilm,1282333080 +75726,43914,bad soundtrack,1372447221 +75726,46231,drugs,1371670116 +75726,47417,Donald Sutherland,1406666164 +75726,47417,Historical References,1406666110 +75726,47417,politics,1406666014 +75726,47417,Ralph Fiennes,1406666157 +75726,47417,satire,1406666050 +75726,47417,unclear message,1406666138 +75726,47417,Underrated,1406666056 +75726,47540,bad acting,1378066354 +75726,47540,ridiculous,1378066141 +75726,47540,Robert Gustafsson,1378066153 +75726,47540,Weak screenplay,1378066192 +75726,52672,mockumentary,1411932221 +75726,55156,democracy,1282749213 +75726,58432,unclear plot,1369666146 +75726,61240,bullying,1294564342 +75726,65259,realism,1397508944 +75726,68288,Couldn't keep interest,1375542712 +75726,71429,dark comedy,1387358416 +75726,71450,economics,1364680068 +75726,71450,politics,1364680062 +75726,71450,sentimental,1364680027 +75726,73822,realistic,1383599910 +75726,73822,TV Movie,1383599933 +75726,73822,working class,1383599919 +75726,83330,Alan Rickman,1303198023 +75726,83330,Ian McKellen,1303198000 +75726,83330,royalty,1303198110 +75726,83330,World War I,1303197926 +75726,90350,superficial,1376077083 +75726,90350,talking heads,1376077063 +75726,90350,unfocused,1376077112 +75726,94122,uncritical,1407440983 +75726,94122,unengaging,1407441132 +75726,96612,good casting,1369688052 +75726,96815,gratuitous sex,1366407683 +75726,98013,far fetched,1376858159 +75726,98378,homosexuality,1362170702 +75726,98378,politics,1362170713 +75726,98836,Bill Murray,1390000155 +75726,98836,Laura Linney,1390000224 +75726,99217,James Gandolfini,1373131083 +75726,99217,rock and roll,1373131068 +75726,99217,too long,1373131040 +75726,99574,disappointing ending,1387667155 +75726,99574,poverty,1387667166 +75726,99675,immigrants,1361482206 +75726,99675,realistic,1361482166 +75726,99675,unemployment,1361482222 +75726,99675,working class,1361482166 +75726,99906,Nudity (Full Frontal),1412017731 +75726,99906,slow paced,1412017745 +75726,99906,visually appealing,1412017753 +75726,100188,politics,1359484553 +75726,100564,farce,1361291698 +75726,100840,adultery,1361825241 +75726,100840,artist,1361825241 +75726,100840,mental illness,1361825241 +75726,100840,musician,1361825370 +75726,100840,sentimental,1361825401 +75726,100951,ironic,1362070947 +75726,101864,aliens,1365858449 +75726,101864,bad script,1365858468 +75726,101864,cliche,1365858428 +75726,101864,future,1365858506 +75726,101864,Morgan Freeman,1365858515 +75726,101864,sentimental,1365858493 +75726,101864,Tom Cruise,1365858477 +75726,101908,Nudity (Full Frontal),1365967926 +75726,101908,thought-provoking,1365967941 +75726,101954,Donald Sutherland,1366302096 +75726,102802,inventive,1374785721 +75726,103032,Drugs,1370684700 +75726,103032,gritty,1370985419 +75726,103032,Homelessness,1370684710 +75726,103032,Sex,1370684753 +75726,103032,Stefan Jarl,1370684738 +75726,103032,Stockholm,1370684727 +75726,103032,Youth,1370684718 +75726,103081,Black Sabbath,1370985244 +75726,103081,divorce,1370985369 +75726,103081,drugs,1370985235 +75726,103081,marriage,1370985258 +75726,103308,celebrity,1372370050 +75726,103308,Fredrik Lindström,1372166070 +75726,103308,Fredrik Lindstroem,1372370002 +75726,103308,media,1372370042 +75726,103308,thought-provoking,1372166060 +75726,103368,based on a book,1372604672 +75726,103368,predictable,1372604607 +75726,103465,1970s,1373016002 +75726,103465,politics,1373016017 +75726,103465,prostitution,1373016024 +75726,103465,realistic,1373016035 +75726,103619,feel-good,1374149427 +75726,103619,golf,1374149409 +75726,104155,bad casting,1378034428 +75726,104155,dissapointing,1378034383 +75726,104155,weak plot,1378034403 +75726,104301,mental illness,1376735773 +75726,104301,Nudity (Full Frontal),1376735873 +75726,104301,Venice,1376735898 +75726,104303,bad soundtrack,1387055279 +75726,104841,pointless,1387384902 +75726,104841,suspense,1387384916 +75726,105323,divorce,1380914291 +75726,105323,Stockholm,1380914278 +75726,106048,realistic,1383429178 +75726,106048,TV Movie,1383427475 +75726,106438,bad soundtrack,1398946493 +75726,107702,sentimental,1397739144 +75726,107980,slow paced,1403357709 +75726,108401,scary,1390408833 +75726,108401,stereotypes,1390408851 +75726,108401,unclear ending,1390408878 +75726,109187,surreal,1406147285 +75726,109472,far fetched,1412193466 +75726,109963,politics,1401052718 +75726,109963,satire,1401052734 +75726,111111,Jan Troell,1399314891 +75726,111443,predictable,1412342437 +75726,112297,mockumentary,1403280678 +75726,112399,mental illness,1403709680 +75726,112399,photography,1403709687 +75726,112479,Burt Reynolds,1404415390 +75726,112479,Chevy Chase,1404415138 +75726,112479,low budget,1404414746 +75726,112479,silly,1404414763 +75726,112479,Vinnie Jones,1404415072 +75726,112689,disturbing,1411506502 +75726,113857,cold war,1409945160 +75726,113857,Dean Reed,1409945138 +75726,113857,East Germany,1409945183 +75726,113974,relationships,1410205804 +75726,114164,politics,1410969874 +75726,144060,pointless,1444572551 +75727,260,adventure,1431510696 +75727,260,scifi,1431510681 +75740,20,money,1186476189 +75740,23,kill,1186476192 +75740,373,red,1186476279 +75740,428,mafia,1186476110 +75740,546,gane,1186476048 +75740,628,primal,1186476335 +75740,955,baby,1186476191 +75740,1100,racing,1186476037 +75740,1242,glory,1186476337 +75740,1277,cyrano,1186476190 +75740,1377,batman,1186476332 +75740,1587,conan,1186475986 +75740,2126,cage,1186476087 +75740,2841,scary,1186476099 +75740,2863,musical,1186476187 +75740,2953,home alone,1186475983 +75740,2976,dead,1186476257 +75740,3044,dead,1186476190 +75740,3081,headless,1186476335 +75740,3263,basketball,1186476055 +75740,3543,diner,1186476268 +75740,4015,funny,1186476244 +75740,4367,tomb,1186475993 +75740,4896,harry,1186476337 +75740,5378,star,1186476334 +75740,6373,bruce,1186476009 +75755,260,fun,1441698374 +75755,260,Monomyth,1441698348 +75755,4135,1980's,1441698739 +75755,4135,Coming of Age,1441698801 +75755,4135,Monsters,1441698720 +75755,4135,Offensive,1441698727 +75755,4135,Rude,1441698732 +75769,44,So bad it's good,1241236763 +75769,70,Sexualized violence,1241235131 +75769,112,amazing fight choreography,1241236601 +75769,141,Gay stereotypes,1241236517 +75769,231,Gross-out,1241235307 +75769,296,Sexualized violence,1241235496 +75769,296,Walked out/didn't finish,1241235496 +75769,344,Gross-out,1241235261 +75769,353,Sexualized violence,1241234702 +75769,520,Gross-out,1241235390 +75769,532,John Waters,1168533149 +75769,541,Sexualized violence,1241234768 +75769,593,Sexualized violence,1241234726 +75769,720,Aardman,1241234479 +75769,745,Aardman,1241234483 +75769,785,Gross-out,1241235275 +75769,788,Walked out/didn't finish,1241235220 +75769,924,Dull,1241235905 +75769,1092,Sexualized violence,1241234784 +75769,1148,Aardman,1241234473 +75769,1573,John Woo,1241236876 +75769,1732,dark comedy,1241236483 +75769,1760,Alan Cumming,1168533330 +75769,2232,wtf,1241236459 +75769,2353,Will Smith,1241236686 +75769,2505,Sexualized violence,1241234796 +75769,2571,amazing fight choreography,1241234623 +75769,2683,Gross-out,1241236289 +75769,2706,Gross-out,1241236293 +75769,2762,M. Night Shyamalan,1173844983 +75769,2791,Gross-out,1241235324 +75769,2841,Sexualized violence,1241234733 +75769,2907,Will Ferrell,1241234506 +75769,2908,Sexualized violence,1241234753 +75769,3113,Sexualized violence,1241234801 +75769,3147,Stephen King,1241235530 +75769,3160,multiple storylines,1241236223 +75769,3623,John Woo,1241236771 +75769,3751,aardman,1241236901 +75769,3785,Gross-out,1241235241 +75769,3793,amazing fight choreography,1241234441 +75769,3826,Sexualized violence,1241235857 +75769,3948,Gross-out,1241235269 +75769,3981,Dull,1241235932 +75769,3988,Walked out/didn't finish,1241235160 +75769,3993,Sexualized violence,1241234709 +75769,3994,M. Night Shyamalan,1173844989 +75769,3994,Sexualized violence,1241234737 +75769,4033,Walked out/didn't finish,1241235359 +75769,4034,Walked out/didn't finish,1241235355 +75769,4128,So bad it's good,1241236785 +75769,4308,Sexualized violence,1241234604 +75769,4367,Schizo-cam,1241235843 +75769,4447,Gay stereotypes,1241235182 +75769,4465,Sexualized violence,1241234779 +75769,4699,Walked out/didn't finish,1241235230 +75769,4815,Stephen King,1241235439 +75769,4975,wtf,1241236183 +75769,4979,dark comedy,1241234546 +75769,5065,Dull,1241236125 +75769,5225,sexy,1185232946 +75769,5444,heartbreaking,1243909893 +75769,5502,M. Night Shyamalan,1173844986 +75769,5617,BDSM,1160157610 +75769,5902,wtf,1241235573 +75769,6058,Walked out/didn't finish,1241235121 +75769,6283,Sexualized violence,1241234759 +75769,6333,amazing fight choreography,1241234424 +75769,6502,Sexualized violence,1241234679 +75769,6538,wtf,1241236201 +75769,6713,heartbreaking,1243909887 +75769,6857,Sexualized violence,1241234809 +75769,6874,amazing fight choreography,1241234697 +75769,6874,Sexualized violence,1241234697 +75769,6914,BDSM,1160157596 +75769,6942,multiple storylines,1241234627 +75769,6953,Nonlinear,1241236053 +75769,6957,Gross-out,1241235469 +75769,7099,Studio Ghibli,1241236624 +75769,7346,Walked out/didn't finish,1241235136 +75769,7347,Stephen King,1241235476 +75769,7360,Gratuitous,1241235995 +75769,7360,zombie,1241235453 +75769,7361,heartbreaking,1243909906 +75769,7458,Schizo-cam,1241235917 +75769,8644,Will Smith,1241236642 +75769,8783,M. Night Shyamalan,1173844992 +75769,8807,Walked out/didn't finish,1262279157 +75769,8917,Gross-out,1241236156 +75769,8983,Sexualized violence,1241234805 +75769,8983,Walked out/didn't finish,1241235147 +75769,26242,Dull,1241235877 +75769,27491,wtf,1241235283 +75769,30810,wtf,1241236235 +75769,33166,Sexualized violence,1241234684 +75769,33437,Sexualized violence,1241236071 +75769,33834,zombie,1241236789 +75769,37386,dystopia,1242451495 +75769,37830,amazing fight choreography,1241236680 +75769,38038,Aardman,1241234488 +75769,40870,glbt,1175001871 +75769,40870,good direction,1175001879 +75769,42018,Dull,1241235970 +75769,42732,Queen Latifah,1241236404 +75769,44191,Sexualized violence,1241234774 +75769,44195,dark comedy,1241234501 +75769,44759,Sexualized violence,1241234763 +75769,45186,damsel in distress,1183868988 +75769,45635,Sexualized violence,1241235946 +75769,45635,Walked out/didn't finish,1241235214 +75769,45666,Walked out/didn't finish,1241235209 +75769,45730,M. Night Shyamalan,1173844980 +75769,46965,Sexualized violence,1241234716 +75769,46976,heartbreaking,1243909689 +75769,46976,Will Ferrell,1241234520 +75769,51086,Sexualized violence,1241234791 +75769,51662,gratuitous,1241234746 +75769,51662,homoerotic,1174751599 +75769,51662,sexualized violence,1241234746 +75769,51925,Idiot ball,1241236104 +75769,51925,Nonlinear,1241236104 +75769,54259,Gay stereotypes,1241236587 +75769,54286,Schizo-cam,1241236283 +75769,55052,Sexualized violence,1241236148 +75769,55282,Gratuitous,1241236552 +75769,56757,gratuitous,1200690151 +75769,56757,Musical,1200690158 +75769,58803,based on a true story,1207776377 +75769,58803,gambling,1207776377 +75769,58803,strong start weak finish,1207776377 +75769,60072,gratuitous,1241235340 +75769,60072,Walked out/didn't finish,1241235340 +75769,61323,dark comedy,1241238707 +75769,62434,Gross-out,1241236570 +75769,62434,racist,1241236570 +75769,63113,Schizo-cam,1241236088 +75769,67695,Angry,1241234247 +75769,67695,Bad direction,1241234252 +75769,67695,Hateful,1241234265 +75769,67695,Racism,1241234249 +75769,67695,Seth Rogen,1241234244 +75769,67695,Unlikable protagonist,1241234260 +75769,67695,Walked out/didn't finish,1241235226 +75769,68319,bad cgi,1241584035 +75769,68358,badass,1242017732 +75769,68358,reboot,1242017730 +75769,68954,heartbreaking,1243909622 +75769,72378,So bad it's good,1260664309 +75772,356,love lt. dan,1137613983 +75772,356,very powerfulll..; tom hanks very big...,1137613958 +75772,780,scenario stupid will smith too bad...,1137614048 +75772,30793,degented original,1138400412 +75772,34319,pub,1138614876 +75772,41569,big,1143914575 +75772,41569,monkey,1143914607 +75802,750,cold war,1432694052 +75802,750,satire,1432694079 +75802,109487,physics,1432694104 +75802,109687,physics,1432694188 +75852,1704,drama,1447838931 +75852,27611,sci-fi,1447838910 +75853,260,sci-fi,1437761678 +75853,260,space adventure,1437761667 +75854,1732,coen brothers,1441523287 +75854,1732,comedy,1441523275 +75854,1732,crime,1441523300 +75854,1732,cult film,1441523267 +75854,1732,dark comedy,1441523269 +75854,1732,great dialogue,1441523281 +75854,1732,off-beat comedy,1441523296 +75854,1732,quirky,1441523278 +75854,1732,Steve Buscemi,1441523285 +75854,112183,cinematography,1441523343 +75854,112183,dark,1441523331 +75854,112183,great performances,1441523320 +75854,112183,psychological,1441523329 +75854,112183,satire,1441523325 +75854,112183,single shot,1441523322 +75854,112183,smart,1441523347 +75854,112183,surreal,1441523340 +75860,65514,China,1444630522 +75860,110102,action,1444630498 +75864,50,twist ending,1251152517 +75864,70,cult film,1251152704 +75864,6322,plot twist,1251152693 +75878,1162,Favorites,1137766125 +75878,1230,Favorites,1137765052 +75878,1230,Own,1137765563 +75878,1292,Favorites,1137765071 +75878,1292,Own,1137765576 +75878,1409,Favorites,1137765096 +75878,1721,Favorites,1137766004 +75878,1721,Own,1137766004 +75878,2109,Favorites,1137765083 +75878,2249,Own,1137893694 +75878,2316,Favorites,1137764988 +75878,2316,Own,1137766027 +75878,2571,Favorites,1137766017 +75878,2571,Own,1137766017 +75878,2762,Favorites,1137765913 +75878,2762,Own,1137765913 +75878,2917,Favorites,1137765591 +75878,2942,Favorites,1137765607 +75878,3915,Own,1137780436 +75878,4027,Favorites,1137765896 +75878,4027,Own,1137765925 +75878,4310,Own,1137780816 +75878,4720,Favorites,1137780397 +75878,4720,Own,1137780397 +75878,5103,Own,1137893920 +75878,5464,Favorites,1137766086 +75878,5464,Own,1137766086 +75878,5618,Favorites,1137765991 +75878,5618,Own,1137765991 +75878,5816,Own,1137766057 +75878,6385,Own,1137766092 +75878,32587,Own,1137780461 +75878,33660,Own,1137766051 +75878,33794,Favorites,1137765517 +75878,40819,ToSee,1137780671 +75878,41285,ToSee,1137780632 +75878,41571,ToSee,1137780693 +75878,41997,ToSee,1137865854 +75878,42738,ToSee,1138026255 +75878,42740,ToSee,1137851943 +75974,6938,big wave,1160681362 +75974,6938,surfing,1160681362 +75974,48780,ummarti2006,1161615435 +75995,46976,movie to sees,1184052552 +76020,260,a boy grows into a Jedi,1439936508 +76020,260,good against evil,1439936477 +76020,260,protection of the universe,1439936486 +76031,5064,revenge,1159006257 +76035,48660,romance,1305647220 +76044,2424,bookshop,1424776076 +76044,2424,comedy,1424776067 +76044,2424,happy ending,1424776083 +76044,2424,Romance,1424776062 +76044,2424,romantic comedy,1424776070 +76047,260,futuristic,1440122891 +76047,260,space,1440122725 +76047,1127,sci-fi,1440123919 +76047,1527,futuristic,1440123970 +76047,7361,thought-provoking,1440123951 +76047,34405,cult film,1440124123 +76047,34405,SPACE TRAVEL,1440124127 +76047,74458,twist ending,1440123880 +76047,85414,time travel,1440124578 +76047,101864,dystopia,1440124031 +76047,101864,technology,1440124040 +76049,47,serial killer,1219512122 +76051,32587,my dvds,1149161283 +76069,88,comedy,1186930845 +76069,1012,classic,1186931080 +76069,1717,horror,1186930663 +76069,1959,oldschool,1186930786 +76069,2116,fantasy,1186930761 +76069,2505,Sucks big time!,1186931017 +76069,2600,sci-fi,1186930750 +76069,3617,comedy,1186930657 +76069,3752,comedy,1186930606 +76069,3785,comedy,1186930581 +76069,3826,sci-fi,1186930647 +76069,4015,hilarious,1186930948 +76069,4262,classic,1186930626 +76069,4367,hot girls!,1186930704 +76069,4848,crap,1186930613 +76069,4975,crap,1186930667 +76069,5444,kids,1186931070 +76069,5679,horror,1186930571 +76069,6157,jennifer garner,1186931091 +76069,6378,action packed,1186930594 +76069,6934,sci-fi,1186930560 +76069,6953,darama,1186931025 +76069,7147,fairy tales,1186930548 +76069,8622,documentary,1186930642 +76069,8970,fantasy,1186930933 +76070,109425,cute,1430088734 +76070,109425,family,1430088734 +76070,109425,short films,1430088734 +76099,2947,Bond,1188558149 +76099,2947,old,1188558149 +76099,4246,chick movie,1188558147 +76099,4246,romance,1188558147 +76099,4310,history,1188558244 +76099,4447,pink,1188558236 +76099,32587,comics based,1188558192 +76105,593,crime,1424803347 +76105,593,horror,1424803347 +76105,593,psychological,1424803347 +76128,58559,batman,1437447452 +76128,58559,christopher nolan,1437447452 +76128,58559,villain:the joker,1437447452 +76130,260,drama,1431209492 +76130,260,sci-fi,1431209479 +76130,260,space,1431209475 +76138,5059,man vs. nature,1174475779 +76140,260,action,1443946876 +76140,260,love story,1443946873 +76140,260,sci-fi,1443946880 +76140,260,USA,1443946884 +76153,260,sci-fi,1444437483 +76154,260,classic,1444672042 +76154,260,Science Fiction,1444672033 +76154,260,space,1444672053 +76203,41569,adventure,1138766553 +76237,608,Coen brothers,1175954694 +76237,45880,costume drama,1175954579 +76246,924,artificial intelligence,1452885079 +76246,924,atmospheric,1452885083 +76246,924,Oscar (Best Effects - Visual Effects),1452885092 +76246,924,philosophical,1452885086 +76246,924,sci-fi,1452885096 +76246,924,soundtrack,1452885095 +76246,924,space travel,1452885090 +76246,8783,Atmospheric,1443370269 +76246,8783,Original Soundtrack,1443370263 +76246,8783,thought-provoking,1443370280 +76246,8783,twist ending,1443370281 +76246,48774,apocalypse,1448656824 +76246,48774,atmospheric,1448656822 +76246,48774,depressing,1448656833 +76246,48774,disturbing,1448656836 +76246,48774,dystopia,1448656826 +76246,48774,end of the world,1448656843 +76246,48774,visually appealing,1448656830 +76246,48774,war,1448656849 +76246,71450,capitalism,1445893116 +76246,109487,Good OST,1417280289 +76246,109487,good science,1417280319 +76246,109487,relativity,1417280316 +76246,109487,sounds,1417280329 +76246,109487,space,1417280311 +76246,109487,spectacle,1417280328 +76246,109487,thought-provoking,1417280321 +76246,115210,Tanks,1422185441 +76246,134130,scientific,1448656781 +76246,134130,Space,1448656776 +76246,134130,space travel,1448656779 +76247,260,action,1434610920 +76247,260,fantasy,1434610906 +76248,260,good vs evil,1444541763 +76248,260,sci-fi,1444541757 +76248,3578,history,1444542690 +76248,3578,Man Movie,1444542677 +76248,4226,mystery,1444542804 +76248,4226,twist ending,1444542797 +76259,260,classic,1441071893 +76259,260,Good music,1441071937 +76259,260,sci-fi,1441071925 +76263,380,striptease,1318563119 +76263,380,thong,1318563104 +76263,762,thong,1318459710 +76263,1092,sex scenes,1318561874 +76263,1464,blonde,1318462194 +76263,1464,Nudity (Topless),1318462194 +76263,1783,blonde,1318460169 +76263,1970,blonde,1318462116 +76263,2586,blonde,1318460069 +76263,2586,thong,1318460069 +76263,2762,Bruce Willis is dead,1324597779 +76263,3064,blonde,1318462092 +76263,3064,thong,1318460957 +76263,3355,thong,1318561601 +76263,4848,blonde,1318462214 +76263,4985,blonde,1318458887 +76263,4985,chick fight,1318458979 +76263,5298,blonde,1318462130 +76263,5298,Nudity (Rear),1318460325 +76263,5298,Nudity (Topless),1318460325 +76263,7346,blonde,1318462225 +76263,7346,thong,1318461034 +76263,7984,blonde,1318462162 +76263,7984,thong,1318459362 +76263,8783,twist ending,1327026597 +76263,31165,blonde,1318460025 +76263,31165,thong,1318460025 +76263,88160,Nudity,1318560035 +76265,260,amazing,1434719886 +76278,780,alien invasion,1270939831 +76278,780,aliens,1270939833 +76278,780,apocalypse,1270939813 +76278,780,sci-fi,1270939816 +76278,780,war,1270939825 +76278,780,Will Smith,1270939821 +76278,1196,Harrison Ford,1270940228 +76278,1196,sci-fi,1270940228 +76278,1196,space,1270940235 +76278,1196,star wars,1270940234 +76278,1213,dark comedy,1270940432 +76278,1213,mafia,1270940428 +76278,1213,Martin Scorsese,1270940424 +76278,1213,organized crime,1270940419 +76278,1213,Robert De Niro,1270940420 +76278,1213,Samuel L. Jackson,1270940421 +76278,2028,Vin Diesel,1270939942 +76278,2028,violent,1270939929 +76278,2028,World War II,1270939927 +76278,2571,dystopia,1270939886 +76278,2571,philosophy,1270939903 +76278,2571,post apocalyptic,1270939890 +76278,2571,post-apocalyptic,1270939896 +76278,2571,sci-fi,1270939894 +76278,3753,revolution,1270939859 +76278,3753,war,1270939861 +76278,4226,amnesia,1270940265 +76278,4226,paranoia,1270940254 +76278,4226,paranoid,1270940256 +76278,4226,psychological,1270940249 +76278,4226,revenge,1270940269 +76278,4226,twist ending,1270940273 +76278,4993,adventure,1270940214 +76278,4993,based on a book,1270940215 +76278,4993,fantasy,1270940217 +76278,4993,high fantasy,1270940219 +76278,4993,magic,1270940221 +76278,5222,lesbian,1271882704 +76278,5418,adapted from:book,1270940344 +76278,5418,assassin,1270940337 +76278,5418,based on a book,1270940340 +76278,5418,espionage,1270940321 +76278,5418,Matt Damon,1270940322 +76278,5418,Robert Ludlum,1270940325 +76278,5418,spy,1270940326 +76278,5418,spying,1270940330 +76278,5418,survival,1270940333 +76278,5418,thriller,1270940348 +76278,5952,Action,1270940177 +76278,5952,adapted from:book,1270940175 +76278,5952,fantasy,1270940165 +76278,5952,fantasy world,1270940168 +76278,5952,high fantasy,1270940162 +76278,5952,magic,1270940179 +76278,5952,multiple storylines,1270940170 +76278,5952,war,1270940182 +76278,7153,adapted from:book,1270940209 +76278,7153,adventure,1270940193 +76278,7153,fantasy,1270940197 +76278,7153,fantasy world,1270940206 +76278,7153,high fantasy,1270940200 +76278,7153,magic,1270940199 +76278,7153,war,1270940203 +76278,8665,assassin,1270940407 +76278,8665,car chase,1270940387 +76278,8665,cia,1270940402 +76278,8665,Franka Potente,1270940411 +76278,8665,International,1270940399 +76278,8665,Julia Stiles,1270940414 +76278,8665,realistic action,1270940395 +76278,8665,spy,1270940391 +76278,8784,Natalie Portman,1271882822 +76278,8784,Zach Braff,1271882825 +76278,27611,sci-fi,1271816267 +76278,27611,space,1271816268 +76278,38388,Soccer,1270939638 +76278,38388,sport:soccer football,1270939641 +76278,42732,Alicia Witt,1270939695 +76278,42732,Queen Latifah,1270939686 +76278,54286,assassin,1270940375 +76278,54286,based on a book,1270940373 +76278,54286,cia,1270940370 +76278,54286,Matt Damon,1270940354 +76278,54286,spies,1270940364 +76278,54286,spy,1270940367 +76278,54286,spy thriller,1270940358 +76278,54286,torture,1270940378 +76278,54286,twist ending,1270940361 +76278,56174,alone in the world,1270939763 +76278,56174,based on a book,1270939761 +76278,56174,post-apocalyptic,1270939752 +76278,56174,sci-fi,1270939758 +76278,56174,Will Smith,1270939755 +76278,56174,zombies,1270939756 +76278,56908,Mandy Moore,1270940723 +76278,58047,Isla Fisher,1271882650 +76278,58559,action,1270940132 +76278,58559,Batman,1270940130 +76278,58559,Morgan Freeman,1270940133 +76278,58559,superhero,1270940137 +76278,58559,vigilantism,1270940140 +76278,60069,dystopia,1270940456 +76278,60069,love story,1270940460 +76278,60069,Post apocalyptic,1270940441 +76278,60069,post-apocalyptic,1270940448 +76278,60069,robots,1270940449 +76278,60069,Sci-Fi,1270940445 +76278,60069,space,1270940454 +76278,66203,Ben Affleck,1270940063 +76278,66203,Drew Barrymore,1270940066 +76278,66203,Jennifer Aniston,1270940069 +76278,66203,romantic comedy,1270940078 +76278,66203,Scarlett Johansson,1270940074 +76278,66203,scarlett johansson's boobs,1270940076 +76278,67087,brother-brother relationship,1270939600 +76278,67087,comedy,1270939591 +76278,67087,friendship,1270939588 +76278,68194,English football,1270939616 +76278,68194,soccer,1270939622 +76278,68194,sport:soccer football,1270939625 +76278,69757,Zooey Deschanel,1270940046 +76278,70567,romance,1270940738 +76278,70567,Rose Byrne,1270940735 +76278,71579,adultery,1270939658 +76278,71579,England,1270939663 +76278,71579,London,1270939660 +76278,72378,sci-fi,1271816145 +76278,72378,thriller,1271816146 +76328,7570,007,1156348180 +76330,1037,Can't remember,1170435327 +76330,1527,autowash,1143286285 +76330,1527,multipass,1143286289 +76330,2359,phone booth,1143402831 +76330,2571,phone booth,1143402877 +76330,3130,underrated,1143402600 +76330,4571,phone booth,1143402870 +76330,6281,phone booth,1143402887 +76330,27808,better than I expected,1143125229 +76336,99530,anime,1422824943 +76336,99530,kenshin,1422824943 +76336,99530,samurai,1422824943 +76351,26130,absurdism,1431731213 +76351,26130,dark comedy,1431731213 +76351,26130,farce,1431731213 +76351,115130,chess,1437783684 +76351,115130,mental illness,1437783684 +76351,115130,social realism,1437783684 +76369,2,Robin Williams,1397839622 +76369,199,Catherine Deneuve,1397839002 +76369,199,Golden Palm,1397839020 +76369,199,marriage,1397839010 +76369,199,passionate,1397839007 +76369,199,pregnancy,1397839031 +76369,199,sweet,1397839027 +76369,593,cannibalism,1422566571 +76369,593,Hannibal Lecter,1422566559 +76369,593,Horror,1422566574 +76369,593,investigation,1422566595 +76369,593,psychological,1422566598 +76369,593,serial killer,1422566602 +76369,593,violent,1422566563 +76369,912,Nazis,1401657121 +76369,912,Oscar (Best Picture),1401657112 +76369,920,classic,1397995261 +76369,920,Oscar (Best Actress),1397995252 +76369,920,Oscar (Best Cinematography),1397995248 +76369,920,Oscar (Best Directing),1397995255 +76369,920,Oscar (Best Picture),1397995250 +76369,920,Oscar (Best Supporting Actress),1397995258 +76369,923,black and white,1426011894 +76369,923,classic,1426011891 +76369,923,masterpiece,1426011889 +76369,1046,Gay,1424634405 +76369,1046,good humor,1424634499 +76369,1104,Marlon Brando,1398183451 +76369,1104,Oscar (Best Actress),1398183448 +76369,1104,Tennessee Williams,1398183454 +76369,1172,Italian,1422175394 +76369,1172,nostalgic,1422175387 +76369,1235,heartwarming,1434394768 +76369,1464,David Lynch,1422098149 +76369,1464,dreamlike,1422098158 +76369,1702,Robin Williams,1397839539 +76369,2291,Johnny Depp,1397830640 +76369,2291,Tim Burton,1397830645 +76369,2324,funny,1422215509 +76369,2324,holocaust,1422215494 +76369,2324,Italy,1422215513 +76369,2324,sentimental,1422215500 +76369,2571,kung fu,1397994740 +76369,2571,violence,1397994736 +76369,2797,New York City,1401739640 +76369,2862,Helen Mirren,1425833098 +76369,3072,New York City,1450015793 +76369,3075,Roman Polanski,1401638203 +76369,3307,blindness,1420981884 +76369,3307,Charlie Chaplin,1420981873 +76369,3307,silent movie,1420981893 +76369,3524,Liza Minnelli,1401646582 +76369,3545,Berlin,1398068887 +76369,3545,Oscar (Best Cinematography),1398068880 +76369,3545,Oscar (Best Directing),1398068877 +76369,3545,pregnancy,1398068891 +76369,4148,Anthony Hopkins,1422806322 +76369,4148,cannibalism,1422806326 +76369,4148,serial killer,1422806333 +76369,4274,big budget,1398193278 +76369,4274,Elizabeth Taylor,1398193269 +76369,4274,Oscar (Best Cinematography),1398193273 +76369,4306,Dreamworks,1397841195 +76369,4306,pixar,1397841197 +76369,4308,great soundtrack,1397839084 +76369,4310,historical,1397832817 +76369,5008,Marlene Dietrich,1438805568 +76369,5630,Anthony Hopkins,1422816310 +76369,5630,Hannibal Lecter,1422816316 +76369,8957,psychological,1398193345 +76369,8957,surprise ending,1398193342 +76369,27834,psychology,1398196266 +76369,27834,Venice Film Festival Winner,1398196273 +76369,31431,pointless,1398193948 +76369,45720,Meryl Streep,1398194795 +76369,49286,Jude Law,1401657169 +76369,52579,French,1401570740 +76369,52579,Oscar 2007,1401570757 +76369,53123,Oscar (Best Music - Original Song),1403449037 +76369,56389,road movie,1425832758 +76369,56389,soundtrack,1425832761 +76369,60069,emotional,1398192875 +76369,60069,pixar,1398192872 +76369,60069,robots,1398192880 +76369,60397,Meryl Streep,1397839209 +76369,60397,music:ABBA,1397839206 +76369,62434,Sexual Humor,1397831650 +76369,65721,history,1398196328 +76369,68690,Louis Garrel,1418572681 +76369,69027,Jean Dujardin,1420143715 +76369,78349,group psychology,1398193693 +76369,78349,mindfuck,1398193721 +76369,81456,gay,1397994223 +76369,81456,stylized,1397994233 +76369,81456,Xavier Dolan,1397994238 +76369,86898,Brad Pitt,1397984974 +76369,86898,dinosaurs,1397984979 +76369,88810,racism,1423159796 +76369,94070,gay,1397831560 +76369,94070,India,1397830505 +76369,94780,boring,1397831193 +76369,100017,gay romance,1422097930 +76369,101942,cancer,1440361640 +76369,101942,gay,1440361643 +76369,101942,Italy,1440361647 +76369,103980,Woody Allen,1426442187 +76369,105835,surreal,1401570632 +76369,106452,beautifully filmed,1424980757 +76369,106452,black and white,1424980760 +76369,106782,Leonardo DiCaprio,1422396832 +76369,106782,prostitution,1422396837 +76369,106782,Stock Market,1422396840 +76369,107771,atmospheric,1436474381 +76369,107771,vampires,1436474400 +76369,107916,fashion,1397831336 +76369,107916,gay,1397831323 +76369,108212,French,1418572377 +76369,108212,gay,1418572369 +76369,109374,beetween the wars,1398183379 +76369,109374,funny,1398183371 +76369,112070,Hollywood,1420219460 +76369,112290,Ethan Hawke,1418572038 +76369,116138,Andrey Zvyagintsev,1422097353 +76369,118896,Xavier Dolan,1422566714 +76369,118968,19th century,1418672278 +76369,118968,beautiful,1419971679 +76369,118968,slow motion,1419971679 +76369,120216,multicultural,1419972589 +76369,120284,animation,1421777856 +76369,120284,depression,1420983501 +76369,120284,life story,1421777856 +76369,122886,Harrison Ford,1450522234 +76369,126385,izrael,1422097852 +76369,126385,smart,1422097843 +76369,126387,drama,1423045424 +76369,126387,gambling,1423045424 +76369,126387,Latvian,1423045475 +76369,126387,teenager,1423045424 +76369,129428,India,1425832648 +76369,134368,feminist,1437825159 +76369,137337,alcoholism,1445794537 +76369,137337,depression,1445794533 +76369,137337,musicians,1445794541 +76369,139713,sexuality,1437825538 +76372,260,Science Fiction,1441800570 +76372,260,space adventure,1441800554 +76385,741,anime,1167182060 +76393,260,Disappointing Fight between Obi Wan and Vader,1440180088 +76393,260,great soundtrack,1440180024 +76398,260,EPIC,1439291208 +76398,260,tale,1439291235 +76401,2706,gross but funny,1137562543 +76411,89610,gay sex,1390753566 +76411,89610,male nudity,1390753582 +76411,100487,magic,1390753050 +76411,100487,special effects,1390753057 +76417,61729,funny,1243395552 +76417,61729,ghosts,1243395536 +76417,61729,Ricky Gervais,1243395533 +76417,67734,funny,1243395312 +76417,67734,Jesse Eisenberg,1243395315 +76417,67734,Kristen Stewart,1243395344 +76417,67734,Ryan Reynolds,1243395340 +76417,68319,Comic Book adaption,1243395479 +76417,68319,hugh jackman,1243395465 +76417,68319,Ryan Reynolds,1243395455 +76417,68319,Storytelling,1243395468 +76417,68319,superhero,1243395457 +76417,68358,Anton Yelchin,1243395252 +76417,68358,murder,1243395230 +76417,68358,plot twist,1243395213 +76417,68358,Star Trek,1243395207 +76417,68358,time travel,1243395226 +76417,68358,Zachary Quinto,1243395264 +76417,68791,Anton Yelchin,1243395390 +76417,68791,Christian Bale,1243395403 +76417,68791,franchise,1243395411 +76417,68791,new composer,1243395421 +76417,68791,robots,1243395409 +76417,68791,sequel,1243395415 +76430,4874,intellectual,1370746316 +76430,4874,Kevin Spacey,1370746316 +76430,4874,sci-fi,1370746316 +76440,546,Mario,1185856783 +76440,1556,Boat,1185856839 +76440,1801,Iron Mask,1185856770 +76440,2384,Babe,1185856803 +76440,2409,Rocky,1185856840 +76440,3988,Grinch,1185856811 +76450,5418,cool,1428788261 +76450,58559,exciting,1428788290 +76526,1757,hongkong style,1137540625 +76528,7018,courtroom,1212357649 +76537,67734,bordering on girly,1269989366 +76537,67734,funny,1269989370 +76537,67734,Jesse Eisenberg,1269989361 +76537,67734,Kristen Stewart,1269989357 +76537,67734,pot cookies,1269989364 +76537,71535,"""Nut up or shut up""",1269989283 +76537,71535,Bill Murray,1269989280 +76537,71535,clowns,1269989299 +76537,71535,comedy,1269989301 +76537,71535,ending,1269989306 +76537,71535,funny,1269989303 +76537,71535,hot chick,1269989315 +76537,71535,Not enough zombies,1269989285 +76537,71535,post-apocalyptic,1269989289 +76537,71535,Woody Harrelson,1269989296 +76537,71535,zombies,1269989294 +76538,260,good vs evil,1431415757 +76538,260,jedi,1431415770 +76538,260,Science Fiction,1431415732 +76538,260,space,1431415744 +76538,367,cartoonish,1444332469 +76538,367,comedy,1444332472 +76538,367,hilarious,1444332475 +76538,588,adventure,1444721548 +76538,588,animation,1444721533 +76538,588,comedy,1444721554 +76538,588,funny,1444721538 +76538,588,genie,1444721547 +76538,588,middle east,1444721540 +76538,588,musical,1444721531 +76538,588,Robin Williams,1444721535 +76538,595,affectionate,1444645316 +76538,595,Animation,1444645304 +76538,595,beautiful,1444645309 +76538,595,childhood classic,1444645345 +76538,595,Disney,1444645302 +76538,595,France,1444645409 +76538,595,gentle,1444645313 +76538,595,heartwarming,1444645307 +76538,595,heroine,1444645328 +76538,595,humorous,1444645311 +76538,595,Playlist,1444645379 +76538,595,story,1444645386 +76538,595,whimsical,1444645401 +76538,1206,Adaptation,1444645170 +76538,1206,adapted from:book,1444645106 +76538,1206,Anthony Burgess,1444645118 +76538,1206,based on a book,1444645226 +76538,1206,Beethoven,1444645078 +76538,1206,classic,1444645242 +76538,1206,Direction,1444645091 +76538,1206,director-screenwriter,1444645186 +76538,1206,disturbing,1444645027 +76538,1206,dystopia,1444645024 +76538,1206,good soundtrack,1444645065 +76538,1206,great music,1444645066 +76538,1206,great soundtrack,1444645211 +76538,1206,literary adaptation,1444645140 +76538,1206,masterpiece,1444645219 +76538,1206,Nudity (Full Frontal),1444645048 +76538,1206,overrated,1444645144 +76538,1206,psychology,1444645029 +76538,1206,social commentary,1444645035 +76538,1206,soundtrack,1444645125 +76538,1206,stanley kubrick,1444645022 +76538,1206,the book was better,1444645135 +76538,1206,use of music,1444645256 +76538,1206,violent,1444645033 +76538,1244,beautiful,1444844176 +76538,1244,black and white,1444844113 +76538,1244,classic,1444844137 +76538,1244,comedy,1444844208 +76538,1244,Gershwin,1444844183 +76538,1244,humorous,1444844195 +76538,1244,intellecutal,1444844155 +76538,1244,literate,1444844142 +76538,1244,love,1444844170 +76538,1244,new york,1444844120 +76538,1244,new york city,1444844109 +76538,1244,relationships,1444844123 +76538,1244,satire,1444844148 +76538,1244,talky,1444844192 +76538,1244,Woody Allen,1444844133 +76538,1244,writers,1444844158 +76538,1653,atmospheric,1431417793 +76538,1653,directorial debut,1431417778 +76538,1653,dystopia,1431417717 +76538,1653,dystopic future,1431417739 +76538,1653,Ethan Hawke,1431417746 +76538,1653,future,1431417734 +76538,1653,genetic engineering,1431417732 +76538,1653,genetic selection,1431417742 +76538,1653,genetics,1431417722 +76538,1653,intelligent,1431417751 +76538,1653,Jude Law,1431417744 +76538,1653,rebellion,1431417748 +76538,1653,sci-fi,1431417718 +76538,1653,science fiction,1431417753 +76538,1653,space travel,1431417791 +76538,1653,suicide,1431417776 +76538,1653,thought-provoking,1431417728 +76538,1653,Uma Thurman,1431417725 +76538,1653,visually appealing,1431417736 +76538,2700,adult humor,1444644937 +76538,2700,controversial,1444644945 +76538,2700,crude humor,1444644955 +76538,2700,funny,1444644950 +76538,2700,irreverent,1444644952 +76538,2700,musical,1444644946 +76538,2700,parody,1444644939 +76538,2700,quirky,1444644949 +76538,2700,satire,1444644941 +76538,2791,absurd,1444644457 +76538,2791,airport,1444644485 +76538,2791,aviation,1444644478 +76538,2791,classic,1444644463 +76538,2791,comedy,1444644467 +76538,2791,David Zucker,1444644481 +76538,2791,dumb but funny,1444644545 +76538,2791,farce,1444644468 +76538,2791,flying,1444644581 +76538,2791,funny,1444644470 +76538,2791,Jerry Zucker,1444644483 +76538,2791,joke after joke,1444644595 +76538,2791,Julie Hagerty,1444644561 +76538,2791,Leslie Nielsen,1444644455 +76538,2791,Lloyd Bridges,1444644527 +76538,2791,mocks black stereotypes,1444644555 +76538,2791,outdated,1444644510 +76538,2791,over the top,1444644500 +76538,2791,Parody,1444644457 +76538,2791,quotable,1444644539 +76538,2791,silly,1444644503 +76538,2791,Slapstick,1444644461 +76538,2791,spoof,1444644465 +76538,2791,war,1444644583 +76538,2858,bittersweet,1431417932 +76538,2858,Oscar (Best Actor),1431417941 +76538,2858,Oscar (Best Picture),1431417937 +76538,2858,sexuality,1431417926 +76538,2858,social commentary,1431417929 +76538,2858,thought-provoking,1431417924 +76538,4446,great animation,1431418965 +76538,4446,sci-fi,1431418936 +76538,4446,storyline,1431418954 +76538,4446,visually stunning,1431418932 +76538,4446,weak characters,1431418943 +76538,4446,weak plot,1431418979 +76538,6060,better than I expected,1444332632 +76538,6060,cute,1444332635 +76538,8372,Bill Murray,1444333225 +76538,8372,franchise beaten to death,1444333215 +76538,8372,Stupid as Hell,1444333219 +76538,8372,terrible animation,1444333247 +76538,8372,terrible plot,1444333245 +76538,8372,terrible script,1444333267 +76538,8981,based on a play,1444730065 +76538,8981,good acting,1444730069 +76538,8981,London,1444730058 +76538,8981,Natalie Portman,1444730055 +76538,27611,Artificial Intelligence,1431418142 +76538,27611,bad acting,1431418323 +76538,27611,choices,1431418287 +76538,27611,complex,1431418112 +76538,27611,cybernetic creatures,1431418275 +76538,27611,cybernetics,1431418274 +76538,27611,Edward James Olmos,1431418309 +76538,27611,genre-bending,1431418300 +76538,27611,humanity,1431418109 +76538,27611,intense,1431418234 +76538,27611,Mary McDonnell,1431418305 +76538,27611,military,1431418205 +76538,27611,MILITARY LIFE,1431418206 +76538,27611,moral dilemmas,1431418197 +76538,27611,mysticism,1431418298 +76538,27611,mythology,1431418269 +76538,27611,philosophical,1431418160 +76538,27611,political,1431418102 +76538,27611,politics,1431418100 +76538,27611,post-apocalyptic,1431418209 +76538,27611,remake,1431418212 +76538,27611,robots,1431418128 +76538,27611,Ron Moore,1431418314 +76538,27611,sci-fi,1431418090 +76538,27611,space,1431418093 +76538,27611,space opera,1431418294 +76538,27611,thought-provoking,1431418114 +76538,27611,visually appealing,1431418105 +76538,47997,dark comedy,1444333461 +76538,47997,decline of civilization,1444333468 +76538,47997,dystopia,1444333452 +76538,47997,future,1444333474 +76538,47997,Justin Long,1444333496 +76538,47997,Luke Wilson,1444333491 +76538,47997,satire,1444333455 +76538,47997,social commentary,1444333457 +76538,47997,thought provoking,1444333470 +76538,47997,Underrated,1444333466 +76538,48593,comedy,1444332562 +76538,48593,election,1444332566 +76538,48593,politics,1444332545 +76538,48593,Robin Williams,1444332577 +76538,51084,cheesy,1444333111 +76538,51084,music,1444333086 +76538,51084,original music,1444333094 +76538,51084,songs,1444333099 +76538,53953,atmospheric,1444644681 +76538,53953,author:Stephen King,1444644686 +76538,53953,based on a book,1444644800 +76538,53953,boring,1444644665 +76538,53953,claustrophobic,1444644644 +76538,53953,disappointing,1444644671 +76538,53953,disappointing ending,1444644721 +76538,53953,horror,1444644759 +76538,53953,Hotel,1444644651 +76538,53953,John Cusack,1444644649 +76538,53953,lame ending,1444644699 +76538,53953,loose ends,1444644746 +76538,53953,Mikael Håfström,1444644787 +76538,53953,paranormal,1444644682 +76538,53953,psychological,1444644765 +76538,53953,Samuel L. Jackson,1444644659 +76538,53953,scary,1444644654 +76538,53953,setting:hotel,1444644732 +76538,53953,Stephen King,1444644644 +76538,53953,supernatural,1444644646 +76538,53953,unexplained,1444644797 +76538,58559,Atmospheric,1444722152 +76538,58559,Christopher Nolan,1444722148 +76538,58559,dark,1444722150 +76538,58559,gritty,1444722160 +76538,58559,Heath Ledger,1444722145 +76538,58559,stylized,1444722156 +76538,59258,Amy Poehler,1444332757 +76538,59258,Dax Shepard,1444332771 +76538,59258,Greg Kinnear,1444332777 +76538,59258,Philadelphia,1444332764 +76538,59258,pregnancy,1444332780 +76538,59258,Romany Malco,1444332766 +76538,59258,Steve Martin,1444332774 +76538,59258,Tina Fey,1444332754 +76538,59258,Will Forte,1444332768 +76538,60950,Barcelona,1444730097 +76538,60950,love,1444730110 +76538,60950,philosophical,1444730102 +76538,60950,relationships,1444730112 +76538,60950,romance,1444730108 +76538,60950,Scarlett Johansson,1444730091 +76538,60950,scenic,1444730105 +76538,60950,sexuality,1444730093 +76538,60950,visually appealing,1444730118 +76538,60950,Woody Allen,1444730094 +76538,62434,humor,1444333428 +76538,62434,Kevin Smith,1444333417 +76538,62434,Nudity (Topless),1444333420 +76538,62434,Sex Comedy,1444333430 +76538,62434,Sexual Humor,1444333415 +76538,68237,alter ego,1431417640 +76538,68237,artificial intelligence,1431417569 +76538,68237,clones,1431417587 +76538,68237,cloning,1431417562 +76538,68237,corporate culture,1431417684 +76538,68237,death,1431417626 +76538,68237,depressing,1431417646 +76538,68237,dialogue driven,1431417634 +76538,68237,directorial debut,1431417656 +76538,68237,drama,1431417676 +76538,68237,Duncan Jones,1431417637 +76538,68237,dystopia,1431417549 +76538,68237,future,1431417579 +76538,68237,great soundtrack,1431417671 +76538,68237,hallucination,1431417644 +76538,68237,interesting,1431417679 +76538,68237,isolation,1431417669 +76538,68237,Kevin Spacey,1431417615 +76538,68237,melancholy,1431417674 +76538,68237,mindfuck,1431417687 +76538,68237,moon,1431417664 +76538,68237,plot twist,1431417599 +76538,68237,psychological,1431417596 +76538,68237,psychology,1431417545 +76538,68237,robot,1431417682 +76538,68237,Sam Rockwell,1431417553 +76538,68237,Sci-fi,1431417541 +76538,68237,science,1431417576 +76538,68237,science fiction,1431417654 +76538,68237,slow paced,1431417623 +76538,68237,solitude,1431417662 +76538,68237,space,1431417659 +76538,68237,technology,1431417631 +76538,68237,thought-provoking,1431417573 +76538,68237,twist ending,1431417556 +76538,79132,action,1444721701 +76538,79132,alternate reality,1444721685 +76538,79132,ambiguous ending,1444721789 +76538,79132,cerebral,1444721802 +76538,79132,Christopher Nolan,1444721707 +76538,79132,cinematography,1444721745 +76538,79132,clever,1444721781 +76538,79132,complicated,1444721697 +76538,79132,Ellen Page,1444721714 +76538,79132,great cast,1444721844 +76538,79132,great soundtrack,1444721766 +76538,79132,heist,1444721794 +76538,79132,imaginative,1444721810 +76538,79132,intellectual,1444721705 +76538,79132,Intense,1444721738 +76538,79132,interesting,1444721814 +76538,79132,Joseph Gordon-Levitt,1444721719 +76538,79132,Ken Watanabe,1444721755 +76538,79132,Leonardo DiCaprio,1444721692 +76538,79132,makes you think,1444721752 +76538,79132,Michael Caine,1444721717 +76538,79132,mind games,1444721819 +76538,79132,mindfuck,1444721695 +76538,79132,multiple interpretations,1444721722 +76538,79132,music,1444721749 +76538,79132,original,1444721812 +76538,79132,original plot,1444721817 +76538,79132,philosophy,1444721710 +76538,79132,psychological,1444721785 +76538,79132,psychology,1444721726 +76538,79132,questions reality,1444721847 +76538,79132,sci-fi,1444721699 +76538,79132,science fiction,1444721762 +76538,79132,soundtrack,1444721747 +76538,79132,special effects,1444721826 +76538,79132,subconscious,1444721852 +76538,79132,surreal,1444721688 +76538,79132,suspense,1444721735 +76538,79132,thought-provoking,1444721690 +76538,79132,thriller,1444721799 +76538,79132,Tom Hardy,1444721830 +76538,79132,twist ending,1444721780 +76538,79132,unpredictable,1444721732 +76538,79132,visually appealing,1444721686 +76538,79132,visually stunning,1444721744 +76538,79702,artistic,1431420138 +76538,79702,awesome soundtrack,1431420114 +76538,79702,based on a comic,1431420084 +76538,79702,cinematography,1431420241 +76538,79702,comedy,1431420117 +76538,79702,comic book,1431420191 +76538,79702,cultural references,1431420066 +76538,79702,Edgar Wright,1431420103 +76538,79702,fast-paced,1431420141 +76538,79702,fight scenes,1431420064 +76538,79702,funny,1431420071 +76538,79702,geek,1431420134 +76538,79702,geeks,1431420106 +76538,79702,geeky,1431420087 +76538,79702,great sound,1431420202 +76538,79702,hilarious,1431420102 +76538,79702,hipsters,1431420123 +76538,79702,innovative,1431420150 +76538,79702,Jason Schwartzman,1431420120 +76538,79702,Mary Elizabeth Winstead,1431420157 +76538,79702,Michael Cera,1431420061 +76538,79702,music,1431420090 +76538,79702,quirky,1431420068 +76538,79702,soundtrack,1431420152 +76538,79702,stylized,1431420056 +76538,79702,surreal,1431420085 +76538,79702,video games,1431420054 +76538,79702,videogame like,1431420175 +76538,79702,visually appealing,1431420059 +76538,79702,whimsical,1431420093 +76538,81591,atmospheric,1431419055 +76538,81591,ballet,1431419215 +76538,81591,camerawork,1431419291 +76538,81591,Cinematography,1431419134 +76538,81591,classical music,1431419131 +76538,81591,creepy,1431419202 +76538,81591,dark,1431419041 +76538,81591,disturbing,1431419079 +76538,81591,emotional,1431419235 +76538,81591,erotic,1431419169 +76538,81591,horror,1431419204 +76538,81591,intelligent thriller,1431419174 +76538,81591,Mila Kunis,1431419052 +76538,81591,mindfuck,1431419144 +76538,81591,music,1431419213 +76538,81591,Natalie Portman,1431419037 +76538,81591,New York City,1431419096 +76538,81591,Oscar (Best Actress),1431419092 +76538,81591,Oscar Nominee: Best Picture,1431419278 +76538,81591,Oscar Nominee: Cinematography,1431419279 +76538,81591,Oscar Nominee: Director,1431419130 +76538,81591,Oscar Nominee: Editing,1431419281 +76538,81591,protagonist is a dancer,1431419241 +76538,81591,protagonist is a performer,1431419244 +76538,81591,psychological,1431419039 +76538,81591,psychology,1431419237 +76538,81591,surreal,1431419050 +76538,81591,thriller,1431419069 +76538,81591,twist ending,1431419090 +76538,81591,visceral,1431419072 +76538,81591,Winona Ryder,1431419107 +76538,87192,black comedy,1444332721 +76538,87192,British,1444332726 +76538,87192,England,1444332724 +76538,87192,gangsters,1444332734 +76538,87192,Nick Frost,1444332729 +76538,91094,Amy Adams,1444332692 +76538,91094,cameo-fest,1444332672 +76538,91094,comeback,1444332674 +76538,91094,dancing,1444332696 +76538,91094,Jason Segel,1444332665 +76538,91094,muppets,1444332667 +76538,91094,musical,1444332661 +76538,91094,nostalgic,1444332709 +76538,91094,puppets,1444332678 +76538,91094,setting:LA,1444332687 +76538,91094,weak plot,1444332683 +76538,91529,Christopher Nolan,1444722087 +76538,91529,dark,1444722095 +76538,91529,intense,1444722102 +76538,91529,political commentary,1444722115 +76538,91529,Tom Hardy,1444722124 +76538,93510,based on a TV show,1444333385 +76538,93510,cameo,1444333362 +76538,93510,Cameos,1444333350 +76538,93510,Channing Tatum,1444333304 +76538,93510,comedy,1444333368 +76538,93510,dick jokes,1444333366 +76538,93510,drugs,1444333314 +76538,93510,funny,1444333311 +76538,93510,high school,1444333293 +76538,93510,hilarious,1444333371 +76538,93510,Johnny Depp,1444333332 +76538,93510,Jonah Hill,1444333301 +76538,93510,kids these days,1444333382 +76538,93510,meta,1444333306 +76538,93510,overuse of profanity,1444333353 +76538,93510,parody,1444333308 +76538,93510,police,1444333321 +76538,93510,self-aware,1444333299 +76538,93510,silly,1444333397 +76538,93510,undercover cops,1444333320 +76538,93510,weed,1444333339 +76538,94466,dark,1431417348 +76538,94466,dystopia,1431417339 +76538,94466,not a movie,1431417371 +76538,94466,satire,1431417368 +76538,94466,social commentary,1431417335 +76538,94466,tv series,1431417374 +76538,94677,funny,1444332797 +76538,94677,political satire,1444332793 +76538,94677,sacha baron cohen,1444332795 +76538,94677,satire,1444332791 +76538,95441,Boston,1444333160 +76538,95441,CG animation,1444333164 +76538,95441,cocaine,1444333179 +76538,95441,Comedy,1444333143 +76538,95441,crude humor,1444333157 +76538,95441,directorial debut,1444333169 +76538,95441,Funny,1444333145 +76538,95441,Mila Kunis,1444333137 +76538,95441,predictable,1444333153 +76538,106918,Ben Stiller,1444332996 +76538,106918,Greenland,1444333055 +76538,106918,growth,1444333041 +76538,106918,Iceland,1444333009 +76538,106918,imagination,1444332984 +76538,106918,inspirational,1444332979 +76538,106918,mother-son relationship,1444333022 +76538,106918,New York City,1444333003 +76538,106918,photography,1444332997 +76538,106918,positive thinking,1444333000 +76538,106918,romance,1444333032 +76538,106918,scenic,1444332986 +76538,106918,surreal,1444332988 +76538,106918,travel,1444333006 +76538,106918,USA,1444333025 +76538,106918,visually appealing,1444332981 +76538,107348,bad sequel,1444332607 +76538,109374,amazing storytelling,1431419692 +76538,109374,cast,1431419694 +76538,109374,cinematography,1431419652 +76538,109374,eastern europe,1431419668 +76538,109374,funny,1431419657 +76538,109374,great dialogue,1431419666 +76538,109374,Hilarious,1431419698 +76538,109374,hotel,1431419678 +76538,109374,last will,1431419770 +76538,109374,murder,1431419771 +76538,109374,odd sense of humor,1431419744 +76538,109374,on the run,1431419778 +76538,109374,quirky,1431419655 +76538,109374,ridiculous,1431419706 +76538,109374,stylized,1431419659 +76538,109374,visually appealing,1431419649 +76538,109374,whimsical,1431419670 +76538,109374,witty,1431419751 +76538,111113,boring,1444644873 +76538,111113,college,1444644851 +76538,111113,crude,1444644856 +76538,111113,crude humor,1444644846 +76538,111113,dave franco,1444644864 +76538,111113,funny,1444644861 +76538,111113,Nicholas Stoller,1444644876 +76538,111113,stupid,1444644883 +76538,111113,well cast,1444644859 +76538,111113,Zac Efron,1444644848 +76538,112852,Action,1444724134 +76538,112852,adventure,1444724127 +76538,112852,characters with individual goals,1444724143 +76538,112852,Chris Pratt,1444724132 +76538,112852,fun,1444724129 +76538,112852,great soundtrack,1444724121 +76538,112852,Great Visuals,1444724138 +76538,112852,groot,1444724161 +76538,112852,humorous,1444724153 +76538,112852,sci-fi,1444724125 +76538,112852,space,1444724123 +76538,112852,Teamwork,1444724147 +76538,115617,personal loss,1431417865 +76538,115617,robots,1431417865 +76538,115617,technology,1431417865 +76538,119141,bloody,1444332895 +76538,119141,bromance,1444332928 +76538,119141,comedy,1444332884 +76538,119141,crude,1444332823 +76538,119141,Dictatorship,1444332926 +76538,119141,Evan Goldberg,1444332930 +76538,119141,funny,1444332889 +76538,119141,goofy,1444332905 +76538,119141,gorey,1444332855 +76538,119141,gratuitous,1444332851 +76538,119141,James Franco,1444332816 +76538,119141,Katy Perry,1444332912 +76538,119141,North Korea,1444332918 +76538,119141,overacting,1444332877 +76538,119141,Propaganda,1444332875 +76538,119141,satire,1444332827 +76538,119141,Seth Rogen,1444332818 +76538,119141,violent,1444332858 +76538,134853,Amy Poehler,1444644358 +76538,134853,Animation,1444644293 +76538,134853,beautiful,1444644339 +76538,134853,bittersweet,1444644305 +76538,134853,childhood,1444644291 +76538,134853,coming of age,1444644319 +76538,134853,creative,1444644298 +76538,134853,cute,1444644398 +76538,134853,emotional,1444644312 +76538,134853,emotions,1444644300 +76538,134853,fun,1444644356 +76538,134853,funny,1444644323 +76538,134853,happiness,1444644317 +76538,134853,hockey,1444644347 +76538,134853,imaginative,1444644303 +76538,134853,introspective,1444644307 +76538,134853,Pixar,1444644285 +76538,134853,psychology,1444644288 +76538,134853,sadness,1444644309 +76538,134853,San Francisco,1444644296 +76538,134853,surprisingly dark,1444644369 +76538,134853,thought provoking,1444644315 +76577,260,george lucas,1422379667 +76577,260,sci-fi,1422379667 +76577,260,starwars,1422379667 +76577,480,dinosaurs,1424881011 +76577,480,mistakes,1424881011 +76577,480,scary,1424881011 +76577,593,cannibalism,1424098620 +76577,593,psychological,1424098620 +76577,593,thriller,1424098620 +76577,1713,mouse,1422891962 +76577,1967,dreamlike,1424881088 +76577,1967,fantasy,1424881080 +76577,1967,puppets,1424881075 +76577,6377,pixar,1422891754 +76577,45361,ghost,1423375935 +76577,45361,plot twist,1423375963 +76577,45361,rape,1423375932 +76577,83219,Pixar,1422891744 +76577,103315,demons,1423270857 +76577,110130,comedy,1424881125 +76577,110130,squirrels,1424881133 +76577,110445,discworld,1422387710 +76577,115871,hastur,1423440237 +76577,115871,lovecraft,1423440233 +76577,115871,the king in yellow,1423440228 +76577,115871,witch,1423440244 +76577,117549,alzheimer's,1422386312 +76577,117549,horror,1422386298 +76577,117549,possession,1422386288 +76577,117549,thriller,1422386296 +76577,127859,bodysnatcher,1423271070 +76577,127859,demon,1423271067 +76577,127859,monster,1423271064 +76603,260,classic sci-fi,1433527579 +76603,260,space epic,1433527570 +76603,356,epic,1433531492 +76603,356,great soundtrack,1433531492 +76603,356,period drama,1433531492 +76603,3284,Esoteric,1433531330 +76603,6440,Coen Brothers,1433531405 +76603,6440,John Goodman,1433531408 +76603,6440,John Turturro,1433531438 +76603,6440,quirky,1433531417 +76603,6947,great soundtrack,1433784828 +76603,7099,long,1433787141 +76603,7099,Studio Ghibli,1433787150 +76603,109487,Hans Zimmer,1433781679 +76603,109487,science fiction,1433781688 +76603,109487,sentimental,1433781667 +76603,109487,thought-provoking,1433781696 +76634,98,want to own,1175716480 +76678,99114,brutal,1435204973 +76678,99114,Leonardo DiCaprio,1435204957 +76678,99114,slavery,1435204915 +76678,106072,action,1435203286 +76678,106072,fantasy,1435203286 +76678,106072,special effects,1435203286 +76683,193,Nudity (Full Frontal),1421192072 +76683,347,erotic,1420411121 +76683,1844,Nudity (Topless),1419716254 +76683,2712,Erotic,1420836777 +76683,2712,Nudity (Full Frontal - Notable),1420836742 +76683,2712,sexual,1420836779 +76683,2712,sexuality,1420836745 +76683,5346,erotic,1420411087 +76683,101285,drugs,1419716203 +76683,101285,James Franco,1419716206 +76683,101285,Look at my shit!,1419716185 +76683,101285,sexual,1419716200 +76683,112070,drama,1420318910 +76683,112070,emotional,1420318910 +76683,112070,sad,1420318910 +76683,112421,black comedy,1421590840 +76683,112421,funny,1421590840 +76683,112421,hipster,1421590840 +76703,127196,real life,1453088591 +76715,173,comic book,1315781416 +76715,173,dystopia,1315781406 +76715,173,I AM THE LAW,1315781418 +76715,173,police corruption,1315781408 +76715,173,Sylvester Stallone,1315781410 +76715,296,drugs,1291707781 +76715,296,Quentin Tarantino,1291707779 +76715,296,Samuel L. Jackson,1291707776 +76715,555,Brad Pitt,1295571320 +76715,555,Christian Slater,1295571317 +76715,555,Christopher Walken,1295571319 +76715,555,violence,1295571323 +76715,610,Adult Animation,1307237998 +76715,610,drugs,1307238017 +76715,610,good versus evil,1307238002 +76715,610,Nudity (Topless),1307238017 +76715,610,sci-fi,1307237999 +76715,610,spaceflight,1307238001 +76715,610,surreal,1307238004 +76715,1215,adventure,1307235808 +76715,1215,Arnold Schwarzenegger,1307235786 +76715,1215,black comedy,1307235778 +76715,1215,Bruce Campbell,1307235768 +76715,1215,claymation,1307235809 +76715,1215,cult film,1307235793 +76715,1215,fantasy,1307235812 +76715,1215,horror,1307235811 +76715,1215,Nudity (Topless - Brief),1307235791 +76715,1215,Sam Raimi,1307235820 +76715,1261,black comedy,1307235835 +76715,1261,Bruce Campbell,1307235828 +76715,1261,campy,1307235832 +76715,1261,demons,1307235830 +76715,1331,not a horror,1301280470 +76715,1673,1970s,1307335686 +76715,1673,drugs,1307335684 +76715,1673,Mark Wahlberg,1307335699 +76715,1673,movie business,1307335697 +76715,1673,multiple storylines,1307335695 +76715,1673,Nudity (Topless - Notable),1307335682 +76715,1673,Philip Seymour Hoffman,1307335692 +76715,1673,pornography,1307335688 +76715,1732,black comedy,1295499220 +76715,1732,dark comedy,1295499225 +76715,1732,drugs,1295499223 +76715,1732,Jeff Bridges,1295499244 +76715,1732,Steve Buscemi,1295499252 +76715,2459,cannibalism,1291851920 +76715,2459,disturbing,1291851922 +76715,2459,grindhouse,1291851939 +76715,2459,gruesome,1291851952 +76715,2459,low budget,1291851941 +76715,2459,NIGHTMARE VACATIONS,1291851946 +76715,2502,comedy,1295570915 +76715,2502,crime gone awry,1295570913 +76715,2502,Jennifer Aniston,1295570909 +76715,2502,mike judge,1295570910 +76715,2502,quirky,1295570918 +76715,2502,rebellion,1295570919 +76715,2502,slackers,1295570921 +76715,2502,workplace,1295570928 +76715,3202,midgets,1341035797 +76715,3202,weird,1341035797 +76715,3202,Werner Herzog,1341035797 +76715,3253,Based on a TV show,1295571039 +76715,3253,Dana Carvey,1295571031 +76715,3253,Funniest Movies,1295571033 +76715,3253,rock and roll,1295571035 +76715,3253,teen,1295571037 +76715,3253,want to see again,1295571042 +76715,3424,pointless,1375151370 +76715,3424,spike lee,1375151374 +76715,3847,nazis,1306966301 +76715,3847,over the top,1306966336 +76715,3847,unwatchable sadism,1306966309 +76715,4105,Bruce Campbell,1291851806 +76715,4105,campy,1291851823 +76715,4105,controversial,1291851866 +76715,4105,Cult classic,1291851813 +76715,4105,dark humor,1291851843 +76715,4105,Lovecraftian mythology,1291851847 +76715,4105,low budget,1291851853 +76715,4105,rape,1291851857 +76715,4105,zombies,1291851808 +76715,4678,Michael Richards,1295571065 +76715,4678,Weird Al,1295571064 +76715,6587,Ben Affleck,1294874045 +76715,6587,Christopher Walken,1294874055 +76715,6587,Dull. Incoherent. Childish.,1294874060 +76715,6587,Golden Raspberry (Worst Actor),1294874048 +76715,6587,imdb bottom 100,1294874077 +76715,6587,Jennifer Lopez,1294874056 +76715,6587,Unfunny,1294874072 +76715,6804,really cheesy.,1307235752 +76715,6804,Sam Raimi,1307235679 +76715,6804,slapstick,1307235749 +76715,7439,adapted from:comic,1294874148 +76715,7439,John Travolta,1294874153 +76715,7439,marvel,1294874150 +76715,7439,senseless violence,1294874144 +76715,7439,superhero,1294874157 +76715,7439,Thomas Jane,1294874159 +76715,43011,occult,1298874124 +76715,44199,Clive Owen,1295571404 +76715,44199,heist,1295571406 +76715,44199,Nazis,1295571407 +76715,44199,twist ending,1295571411 +76715,44199,Willem Dafoe,1295571414 +76715,45666,Jack Black,1295571139 +76715,45666,Napoleon Dynamite,1295571157 +76715,45666,silly,1295571137 +76715,48516,gangsters,1295571364 +76715,48516,Jack Nicholson,1295571358 +76715,48516,Leonardo DiCaprio,1295571360 +76715,48516,Martin Scorsese,1295571368 +76715,48516,organized crime,1295571369 +76715,48516,remake,1295571363 +76715,48516,undercover cop,1295571371 +76715,49396,devil,1291852944 +76715,49396,fucking awesome,1291852941 +76715,49396,Jack Black,1291852919 +76715,49396,Kyle Gass,1291852924 +76715,49396,metal,1291852928 +76715,49396,music,1291852925 +76715,49396,rock and roll,1291852932 +76715,51251,grindhouse,1343891516 +76715,51251,low budget,1343891516 +76715,51251,violent,1343891516 +76715,52495,Dustin Hoffman,1300824014 +76715,52831,Bruce Campbell,1297284295 +76715,52831,murder,1297284303 +76715,54256,Andy Samberg,1295571089 +76715,54758,interesting,1340003768 +76715,54758,really long,1340003760 +76715,60756,brother-brother relationship,1295499420 +76715,60756,funny,1295499416 +76715,60756,Highly quotable,1295499419 +76715,60756,John C. Reilly,1295499410 +76715,60756,Seth Rogen,1295499413 +76715,60756,will ferrell,1295499412 +76715,61073,Dennis Hopper,1294873995 +76715,61073,Nudity (Full Frontal),1294873999 +76715,61073,Quentin Tarantino,1294874001 +76715,68952,cat killing,1291852093 +76715,68952,funny,1291852052 +76715,68952,horror,1291852060 +76715,68952,occult,1291852101 +76715,68952,old school horror,1291852080 +76715,68952,poor acting,1291852097 +76715,68952,Sam Raimi,1291852082 +76715,69436,bad script,1295125032 +76715,69436,disappointment,1295125044 +76715,69436,Jack Black,1295125030 +76715,69436,kind of boring,1295125041 +76715,69436,Michael Cera,1295125024 +76715,69784,dicks,1295852796 +76715,69784,gay,1295852794 +76715,69784,homosexuality,1295852786 +76715,69784,not funny,1295852789 +76715,69784,Nudity (Full Frontal),1295852788 +76715,69784,Sacha Baron Cohen,1295852792 +76715,69784,Stupid as Hell,1295852800 +76715,69784,unfunny,1295852802 +76715,71248,adultery,1295499379 +76715,71248,Ben Affleck,1295499367 +76715,71248,Gene Simmons,1295499369 +76715,71248,Jason Bateman,1295499378 +76715,71248,Mike Judge,1295499376 +76715,71248,Mila Kunis,1295499385 +76715,71248,mila kunis is so damn hot,1295499374 +76715,74458,cinematography,1343891787 +76715,74458,nazis,1343891774 +76715,74458,psychological,1343891795 +76715,74458,twist ending,1343891765 +76715,74541,drugs,1296456214 +76715,74541,funny,1296456252 +76715,74541,John Dunsworth,1296456194 +76715,74541,John Paul Tremblay,1296456204 +76715,74541,Mike Clattenburg,1296456205 +76715,74541,Mike Smith,1296456210 +76715,74541,Robb Wells,1296456208 +76715,74541,Swearing,1296456235 +76715,75440,bush jokes getting old,1295853439 +76715,75440,Will Ferrell,1295853444 +76715,79702,Michael Cera,1295124988 +76715,79702,unlikable characters,1295124998 +76715,80139,Chris Pontias,1291851724 +76715,80139,Johnny Knoxville,1291851724 +76715,80139,male nudity,1291851726 +76715,80139,poop,1291851726 +76715,80139,Steve-O,1291851724 +76715,80846,excellent cinematography,1307238062 +76715,80846,plot twist,1307238058 +76715,80846,supernatural,1307238064 +76715,81537,drug use,1291851590 +76715,81537,movie reference jokes,1291851590 +76715,81537,Pink Floyd,1291851590 +76715,81537,road trip,1291851457 +76715,81537,Robert Downey Jr.,1291851450 +76715,81537,Zach Galifianakis,1291851452 +76715,84395,Anthony Hopkins,1306966172 +76715,84395,exorcism,1306966172 +76715,84395,suspenseful,1306966172 +76715,84764,beer,1298873469 +76715,84764,boobs,1300223056 +76715,84764,drug use,1298873469 +76715,84764,motorcycle,1300222939 +76715,84764,occult,1298873469 +76715,89028,bad acting,1315780484 +76715,89028,cheesy,1343354132 +76715,89028,plot holes,1343354140 +76715,89028,predictable,1315780484 +76715,89745,cgi,1339726793 +76715,89745,comic book,1339726766 +76715,89745,fast paced,1339726785 +76715,89745,humorous,1339726769 +76715,89745,Marvel,1339726788 +76715,89745,stylized violence,1339726790 +76715,89745,visually stunning,1339726789 +76715,91658,atheism,1340260552 +76715,91658,rape,1340260540 +76715,92422,better than expected,1339726724 +76715,92422,ghosts/afterlife,1339726725 +76715,92422,Old Dark House,1339726721 +76715,94864,aliens,1340260419 +76715,94864,best visual effects I've ever seen,1340260427 +76715,94864,prequel,1340260443 +76715,94864,scifi,1340260439 +76732,215,reminded me of thoughts I had when I was that age,1142743943 +76732,1193,surprisingly good,1140070713 +76732,1193,timeless themes,1140070713 +76732,1207,meaning lost in adaptation,1139380931 +76732,6024,tried to be funny and failed,1139773277 +76732,7318,very well made,1138335791 +76732,7328,did i miss something?,1140328557 +76732,7449,incoherent,1137825483 +76732,7449,pointless,1137825483 +76732,7449,predictable,1137825483 +76732,32582,i don't like documentaries,1139635506 +76732,33644,pointless,1137825686 +76732,35836,smart humor,1140071176 +76732,45499,preview was better,1161498818 +76735,17,Alan Rickman,1264517779 +76735,17,Emma Thompson,1264517788 +76735,17,Hugh Grant,1264517785 +76735,513,George Lucas,1247585550 +76735,513,radio,1247585562 +76735,904,Alfred Hitchcock,1249994416 +76735,904,Grace Kelly,1249994457 +76735,904,James Stewart,1249994408 +76735,904,voyeurism,1249994442 +76735,993,Matthew Broderick,1249327389 +76735,993,Patricia Arquette,1249327387 +76735,993,science,1249327394 +76735,1212,atmospheric,1297652246 +76735,1212,music,1297652241 +76735,1212,Orson Welles,1297652232 +76735,1278,black and white,1248889102 +76735,1278,comedy,1248889105 +76735,1278,Gene Wilder,1248889117 +76735,1278,Mel Brooks,1248889135 +76735,1278,parody,1248889149 +76735,1278,Peter Boyle,1248889151 +76735,1278,spoof,1248889189 +76735,1386,harpoon,1335887550 +76735,2117,John Hurt,1257262066 +76735,2117,Nudity (Full Frontal),1257262092 +76735,2732,atmospheric,1245675815 +76735,2732,based on a book,1245675818 +76735,2732,bittersweet,1245675829 +76735,2732,Francois Truffaut,1245675843 +76735,2732,talky,1245675886 +76735,3022,black and white,1248889306 +76735,3022,Buster Keaton,1248889310 +76735,3022,comedy,1248889320 +76735,3022,trains,1248889382 +76735,3307,Charlie Chaplin,1249913226 +76735,3307,comedy,1249913298 +76735,4055,Donald Sutherland,1249064172 +76735,4055,John Ritter,1249064174 +76735,4055,Neve Campbell,1249064183 +76735,4055,Tracey Ullman,1249064166 +76735,4055,William H. Macy,1249064202 +76735,4159,Christian Slater,1246970314 +76735,4159,Kevin Costner,1246970320 +76735,4159,Kurt Russell,1246970310 +76735,4428,John Huston,1304615903 +76735,4876,Tony Shalhoub,1251133937 +76735,4879,Minnie Driver,1330956660 +76735,5235,Rutger Hauer,1246772568 +76735,5446,Australia,1246423387 +76735,5446,Kenneth Branagh,1246423408 +76735,5809,Antonio Banderas,1241530475 +76735,5809,Brian De Palma,1241530628 +76735,5809,Nudity (Full Frontal),1250627753 +76735,5809,Peter Coyote,1241530510 +76735,5809,Rebecca Romijn-Stamos,1241530514 +76735,7132,Marx Brothers,1248889238 +76735,7132,opera,1248889245 +76735,7216,Humphrey Bogart,1251922625 +76735,7265,Bernardo Bertolucci,1248902728 +76735,7265,Eva Green,1248902829 +76735,7265,incest,1248902814 +76735,7265,Nudity (Full Frontal),1248902805 +76735,7265,Paris,1248902788 +76735,8542,Marx Brothers,1248889277 +76735,26731,David Mamet,1243003554 +76735,26731,Joe Mantegna,1243003590 +76735,26731,William H. Macy,1243003601 +76735,26758,Gérard Depardieu,1242825150 +76735,26758,music,1242825148 +76735,33660,boxing,1245675628 +76735,33660,Paul Giamatti,1245675677 +76735,33660,poverty,1245675683 +76735,33660,radio,1245675689 +76735,33660,Renée Zellweger,1245675698 +76735,33660,Ron Howard,1245675703 +76735,33660,Russell Crowe,1245675706 +76735,33660,true story,1245675720 +76735,34099,Christian Slater,1248188292 +76735,34099,suicide,1248188288 +76735,47306,atmospheric,1248728357 +76735,47306,heartwarming,1248728368 +76735,47306,lyrical,1248728377 +76735,47306,stylized,1248728396 +76735,47725,Luc Besson,1256301475 +76735,50872,animation,1248188428 +76735,50872,cooking,1248188435 +76735,50872,Disney,1248188438 +76735,50872,food,1248188445 +76735,50872,France,1248188451 +76735,50872,Janeane Garofalo,1248188470 +76735,50872,Pixar animation,1248188489 +76735,50872,restaurant,1248188499 +76735,51037,amnesia,1245675757 +76735,51037,Greg Kinnear,1245675766 +76735,51037,Jeremy Sisto,1245675768 +76735,51037,Joe Pantoliano,1245675771 +76735,51037,paranoia,1245675780 +76735,51037,survival,1245675784 +76735,51084,Drew Barrymore,1250276908 +76735,51084,Hugh Grant,1250276905 +76735,53138,action,1248875709 +76735,53138,adventure,1248875713 +76735,53138,archaeology,1248875651 +76735,53138,Bob Newhart,1248875664 +76735,53318,british,1246423327 +76735,53318,Nudity (Full Frontal),1246423346 +76735,53318,surrealism,1246423360 +76735,53318,time,1246423363 +76735,53476,physical comedy,1247492818 +76735,54276,Catherine Zeta-Jones,1246896059 +76735,54276,remake,1246896086 +76735,54372,based on a book,1246423216 +76735,54372,French,1246423226 +76735,54372,murder mystery,1246423243 +76735,54372,mystery,1246423247 +76735,54372,Nudity (Full Frontal),1246423256 +76735,54372,thriller,1246423264 +76735,57147,Ewan McGregor,1245267233 +76735,57147,Woody Allen,1250627655 +76735,58297,apocalypse,1242419555 +76735,58297,cannibalism,1242419547 +76735,58297,post-apocalyptic,1242419562 +76735,59336,David Mamet,1257261959 +76735,59369,action,1241446049 +76735,59369,car chase,1241446069 +76735,59369,CIA,1250188785 +76735,59369,Liam Neeson,1241446035 +76735,59369,Paris,1241446106 +76735,59369,thriller,1241446055 +76735,60069,Animation,1242670175 +76735,60069,dystopia,1242670204 +76735,60069,earth,1242670207 +76735,60069,ecology,1242670183 +76735,60069,environment,1242670186 +76735,60069,love,1242670188 +76735,60069,pixar,1242670131 +76735,60069,robots,1242670148 +76735,60069,Sci-Fi,1242670193 +76735,60069,space,1242670195 +76735,61035,bleak,1248875804 +76735,61035,Stellan SkarsgÃ¥rd,1248875787 +76735,61035,Stellan SkarsgÃ¥rd,1248875789 +76735,62849,Guy Ritchie,1251026698 +76735,65685,books,1249064251 +76735,65685,Brendan Fraser,1249064235 +76735,65685,Helen Mirren,1249064240 +76735,65817,boat,1246772698 +76735,65817,Nudity (Full Frontal),1246772648 +76735,65817,ocean,1246772660 +76735,65868,Paris Hilton,1246772537 +76735,65868,Paul Sorvino,1246772540 +76735,67734,nihilism,1252677457 +76735,68237,clones,1247492728 +76735,68237,moon,1247492741 +76735,68237,Sam Rockwell,1250627852 +76735,68237,solitude,1247492744 +76735,68237,space,1247492747 +76735,68793,history,1243889699 +76735,68793,museum,1243889708 +76735,68954,adventure,1244810376 +76735,68954,dreams,1244810379 +76735,68954,Pixar,1244810330 +76735,69406,immigrants,1246422852 +76735,69542,Michael Biehn,1249327330 +76735,69542,mountain climbing,1249327344 +76735,69644,lacks logic,1246970271 +76735,69757,Joseph Gordon-Levitt,1250626994 +76735,71695,cinematography,1330899406 +76735,73268,Ethan Hawke,1264607768 +76735,73268,Sam Neill,1264607763 +76735,73268,vampires,1264607760 +76735,73268,Willem Dafoe,1264607756 +76735,74452,Benicio Del Toro,1268071768 +76735,93201,Bruce Campbell,1330699979 +76735,93201,hockey,1330701283 +76735,93201,skating,1330701272 +76735,93201,slapstick,1330701308 +76735,94864,Idris Elba,1339293104 +76735,96610,Joseph Gordon-Levitt,1350410930 +76735,97913,Sarah Silverman,1353948260 +76735,102090,nontraditional villain,1428434232 +76735,102090,radiation,1428434232 +76735,102090,science,1428434232 +76735,102399,alternate endings,1426603356 +76735,102399,love triangle,1426603356 +76735,102399,multiple storylines,1426603356 +76759,17,Emma Thompson,1396153427 +76759,17,Hugh Grant,1396153436 +76759,497,Emma Thompson,1396154886 +76759,551,johnny depp,1396154664 +76759,551,Tim Burton,1396154673 +76759,597,Julia Roberts,1396154165 +76759,911,Audrey Hepburn,1396153523 +76759,911,surprise ending,1396153527 +76759,1035,Julie Andrews,1396154943 +76759,1079,black comedy,1396154775 +76759,1079,Oscar (Best Supporting Actor),1396154778 +76759,1079,quirky,1396154781 +76759,1079,seen more than once,1396154783 +76759,1080,controversial,1396154639 +76759,1080,parody,1396154634 +76759,1080,satire,1396154637 +76759,1081,Bechdel Test:Pass,1396154988 +76759,1081,cross dressing women,1396154978 +76759,1081,Julie Andrews,1396154980 +76759,1081,queer,1396154982 +76759,1197,Cult classic,1396154188 +76759,1197,fantasy,1396154182 +76759,1197,funny,1396154186 +76759,1197,quirky,1396154184 +76759,1197,romance,1396154190 +76759,1197,witty,1396154192 +76759,1527,Nudity (Topless - Notable),1396154288 +76759,1527,parody,1396154284 +76759,2324,bittersweet,1396154835 +76759,2324,funny,1396154837 +76759,2324,Oscar (Best Foreign Language Film),1396154822 +76759,2324,Oscar Winner,1396154824 +76759,2324,whimsical,1396154827 +76759,2324,World War II,1396154832 +76759,2406,Romance,1396154909 +76759,2671,Hugh Grant,1396155072 +76759,2671,Julia Roberts,1396155070 +76759,2716,Sigourney Weaver,1396154227 +76759,3408,Julia Roberts,1396154867 +76759,3996,crime,1396154316 +76759,3996,murder,1396154313 +76759,6539,Johnny Depp,1396154368 +76759,30793,Johnny Depp,1396154726 +76759,30793,remake,1396154732 +76759,30793,roald dahl,1396154734 +76759,46976,Emma Thompson,1396153588 +76759,46976,Maggie Gyllenhaal,1396153594 +76759,74789,Johnny Depp,1396154762 +76759,86546,may december romance,1396155333 +76759,86546,professor,1396155327 +76768,1036,thriller,1349275355 +76768,1203,low budget,1349218217 +76768,1370,bad sequel,1349275373 +76768,1370,inferior sequel,1349275370 +76768,1370,Renny Harlin,1349275379 +76768,2916,Philip K. Dick,1349344971 +76768,32587,black comedy,1349275283 +76768,32587,Quentin Tarantino,1349275291 +76768,34405,dystopia,1349344341 +76768,34405,quirky,1349344343 +76768,34405,social commentary,1349344347 +76768,60471,Australia,1349463197 +76768,60471,Giant animal,1349463179 +76781,1196,asd,1343123790 +76781,1196,ds,1343123790 +76781,1196,sd,1343123790 +76819,2313,Anthony Hopkins,1415981735 +76819,2313,based on a true story,1415981720 +76819,2313,Biography,1415981713 +76819,2313,historical,1415981729 +76819,5791,Biography,1415981633 +76819,5791,bisexual,1415981617 +76819,5791,disability,1415981626 +76819,97923,religious overtones,1397849067 +76819,109487,exploration,1430087727 +76819,109487,planets,1430087732 +76822,33004,absurd,1419420217 +76822,33004,philosophical,1419420279 +76822,33004,sarcasm,1419420214 +76822,33004,sci-fi,1419420181 +76822,33004,whimsical,1419420204 +76851,1695,Art,1147144998 +76851,1695,period drama,1147145002 +76861,318,inspirational,1431062122 +76861,318,Morgan Freeman,1431061766 +76861,318,prison escape,1431062119 +76861,318,twist ending,1431061776 +76872,2485,fun,1182109314 +76872,2485,teen,1182109112 +76880,296,cult,1429384456 +76880,296,drugs,1429384456 +76880,296,independent,1429384456 +76880,318,elevating,1433358177 +76880,318,spiritual,1433358177 +76880,318,touching,1433358177 +76894,32,atmospheric,1260505588 +76894,32,Bruce Willis,1260505563 +76894,32,dystopia,1260505565 +76894,32,future,1260505586 +76894,32,post-apocalyptic,1260505567 +76894,32,psychology,1260505582 +76894,32,sci-fi,1260505577 +76894,32,time travel,1260505569 +76894,32,twist ending,1260505568 +76894,50,Benicio Del Toro,1260505701 +76894,50,ensemble cast,1260505695 +76894,50,funny,1260505698 +76894,1199,black comedy,1260505658 +76894,1199,classic,1260505672 +76894,1199,dark comedy,1260505657 +76894,1199,dreamlike,1260505648 +76894,1199,dystopia,1260505654 +76894,1199,Robert De Niro,1260505679 +76894,1199,satirical,1260505674 +76894,1199,Terry Gilliam,1260505649 +76894,1199,thought-provoking,1260505652 +76894,4226,amnesia,1260505634 +76894,4226,cerebral,1260505631 +76894,4226,dreamlike,1260505635 +76894,4226,investigation,1260505637 +76894,4226,memory,1260505629 +76894,4226,Mindfuck,1260505627 +76894,4226,nonlinear,1260505623 +76894,4226,psychological,1260505642 +76894,4226,twist ending,1260505625 +76894,5954,crime,1260505409 +76894,5954,drugs,1260505397 +76894,5954,Edward Norton,1260505413 +76894,5954,Philip Seymour Hoffman,1260505400 +76894,5954,spike lee,1260505398 +76894,53318,boobs,1260505890 +76894,60753,prison,1260505543 +76894,60753,Val Kilmer,1260505546 +76894,60753,Violence,1260505548 +76894,71468,alternate reality,1260505852 +76913,778,addiction,1452621299 +76913,778,black comedy,1452621292 +76913,778,dark comedy,1452621287 +76913,778,drugs,1452621289 +76913,778,Ewan McGregor,1452621296 +76913,778,great soundtrack,1452621304 +76913,2019,Akira Kurosawa,1452620454 +76913,2019,atmospheric,1452620465 +76913,2019,classic,1452620470 +76913,2019,epic,1452620457 +76913,2019,Japan,1452620462 +76913,2019,masterpiece,1452620469 +76913,2019,samurai,1452620451 +76913,2019,toshiro mifune,1452620473 +76913,4239,cocaine,1452621373 +76913,4239,drugs,1452621365 +76913,4239,Johnny Depp,1452621369 +76913,4262,Al Pacino,1452621447 +76913,4262,atmospheric,1452621466 +76913,4262,classic,1452621460 +76913,4262,drugs,1452621455 +76913,4262,mafia,1452621452 +76913,4262,organized crime,1452621450 +76913,4262,violence,1452621458 +76913,7361,bittersweet,1452620534 +76913,7361,nonlinear,1452620530 +76913,7361,quirky,1452620538 +76913,7361,surreal,1452620524 +76913,7361,thought-provoking,1452620528 +76913,56367,comedy,1452620408 +76913,56367,Ellen Page,1452620403 +76913,56367,excellent script,1452620416 +76913,56367,independent film,1452620425 +76913,56367,notable soundtrack,1452620412 +76913,56367,witty,1452620406 +76913,69757,artistic,1452620351 +76913,69757,intelligent,1452620356 +76913,69757,Joseph Gordon-Levitt,1452620348 +76913,69757,music,1452620364 +76913,69757,nonlinear,1452620362 +76913,134130,mars,1452620305 +76913,134130,sci-fi,1452620301 +76913,134130,Space,1452620294 +76929,457,Great Movie!,1150486478 +76942,260,"imaginary world, characters, story, philosophical",1436680217 +76942,260,script,1436680177 +76942,135518,meaning of life,1436680885 +76942,135518,philosophical,1436680885 +76942,135518,sci-fi,1436680885 +76972,2424,Comedy Romance,1186867318 +76972,4246,comedy romance,1186867315 +76972,7438,Action,1186867317 +77029,648,Tom Cruise,1452422171 +77029,4226,AMNESIA,1452091679 +77029,4226,Christopher Nolan,1452091670 +77029,4226,Mindfuck,1452422008 +77029,4226,nonlinear,1452422014 +77029,4226,psychology,1452422054 +77029,4226,twist ending,1452091658 +77029,4226,twists & turns,1452422024 +77029,6874,Quentin Tarantino,1452092364 +77029,6874,rape,1452092382 +77029,48516,Leonardo DiCaprio,1452421940 +77029,48516,Martin Scorsese,1452421943 +77029,48516,twist ending,1452421963 +77029,79132,Christopher Nolan,1452091576 +77029,79132,great soundtrack,1452091620 +77029,79132,sci-fi,1452091593 +77029,79132,suspense,1452091626 +77029,79132,twist ending,1452091609 +77029,86332,comic book,1452422245 +77029,86332,Marvel,1452422233 +77029,86332,Marvel Cinematic Universe,1452422241 +77029,86332,predictable,1452422257 +77029,86332,superhero,1452422237 +77029,102125,Iron Man,1452422299 +77029,102125,Marvel,1452422290 +77029,102125,Marvel Cinematic Universe,1452422317 +77029,102125,predictable,1452422312 +77029,102125,superhero,1452422287 +77029,112556,David Fincher,1452423781 +77029,112556,mindfuck,1452423762 +77029,112556,thriller,1452423774 +77029,112556,unpredictable,1452423767 +77077,97938,Artsy,1364098576 +77077,97938,Slow,1364098576 +77106,110,Mel Gibson,1331421282 +77106,1321,atmospheric,1327093117 +77106,1321,Jenny Agutter,1327093114 +77106,4235,dead dogs,1331887274 +77106,4848,Enigmatic,1330217889 +77106,4848,mystery,1330217887 +77106,4848,Nudity (Full Frontal - Notable),1330217892 +77106,4848,Nudity (Full Frontal),1330217896 +77106,4848,sexual,1330217900 +77106,4848,surreal,1330217902 +77106,4979,Bill Murray,1330813595 +77106,4979,great soundtrack,1330813592 +77106,4979,new york,1330813596 +77106,4979,Owen Wilson,1330813601 +77106,4979,Wes Anderson,1330813605 +77106,5377,Nick Hornby,1331500263 +77106,30810,Bill Murray,1330788141 +77106,60213,david cross,1334443990 +77106,61206,great sound,1327228882 +77106,61206,turn it up,1327228900 +77106,61206,voyeurism,1327228922 +77106,72733,lacks tension,1334447154 +77106,79897,anticlimactic,1323846649 +77106,79897,Bill Murray,1323846692 +77106,83798,inane,1321867050 +77106,83798,lesbian,1321867078 +77106,83798,maria valverde,1321867112 +77106,88129,flat characters,1329901800 +77124,260,Science Fiction,1443892127 +77124,260,space adventure,1443892131 +77124,4995,Oscar (Best Picture),1443892176 +77124,4995,true story,1443892169 +77141,5780,black comedy,1451632177 +77141,5780,campy,1451632143 +77141,6920,heist,1451632525 +77141,8484,World War II,1451631979 +77154,260,HEROIC MISSION,1435216730 +77154,260,war,1435216698 +77159,35,entirely dialogue,1368323423 +77159,50,short-term memory loss,1368323519 +77159,107,treasure,1368323206 +77159,353,dark hero,1368323310 +77159,380,arnold,1368323344 +77159,485,arnold,1368323344 +77159,521,noir thriller,1368323226 +77159,589,arnold,1368323344 +77159,592,dark hero,1368323310 +77159,866,neo-noir,1368323399 +77159,898,screwball comedy,1368323364 +77159,905,screwball comedy,1368323364 +77159,910,screwball comedy,1368323364 +77159,927,entirely dialogue,1368323423 +77159,951,entirely dialogue,1368323423 +77159,1077,marx brothers,1368323560 +77159,1078,marx brothers,1368323560 +77159,1206,short-term memory loss,1368323519 +77159,1240,arnold,1368323344 +77159,1248,noir thriller,1368323226 +77159,1270,spielberg,1368323536 +77159,1281,marx brothers,1368323560 +77159,1291,spielberg,1368323536 +77159,1291,treasure,1368323206 +77159,1387,spielberg,1368323536 +77159,1391,mars,1368323278 +77159,1396,conspiracy theory,1368323442 +77159,1580,conspiracy theory,1368323442 +77159,1894,stranded,1368323257 +77159,2022,christian,1368323384 +77159,2022,jesus,1368323174 +77159,2028,spielberg,1368323536 +77159,2076,neo-noir,1368323399 +77159,2115,spielberg,1368323536 +77159,2115,treasure,1368323206 +77159,2617,treasure,1368323206 +77159,2662,mars,1368323277 +77159,2916,arnold,1368323344 +77159,3022,marx brothers,1368323560 +77159,3052,jesus,1368323174 +77159,3300,stranded,1368323257 +77159,3307,marx brothers,1368323560 +77159,3623,mountain climbing,1368323501 +77159,3996,dragon,1368323461 +77159,4638,stranded,1368323257 +77159,4878,short-term memory loss,1368323519 +77159,5135,bollywood,1368323148 +77159,5445,spielberg,1368323536 +77159,6662,marx brothers,1368323560 +77159,6874,dark hero,1368323311 +77159,7013,noir thriller,1368323226 +77159,7090,dragon,1368323461 +77159,7162,depressing,1139245999 +77159,7318,jesus,1368323174 +77159,7361,short-term memory loss,1368323519 +77159,7386,christian,1368323384 +77159,8361,mountain climbing,1368323501 +77159,8529,stranded,1368323257 +77159,8622,conspiracy theory,1368323442 +77159,33162,christian,1368323384 +77159,35836,cute,1139895825 +77159,35836,funny,1139895825 +77159,35836,nerd,1139895825 +77159,42418,beautiful,1139636231 +77159,42418,poignant,1139636287 +77159,51884,bollywood,1368323148 +77159,59784,dragon,1368323461 +77167,260,space opera,1430686626 +77167,260,special effects,1430686648 +77182,6542,Finnish,1235426469 +77182,6542,Sami,1235426486 +77192,186,hugh grant,1145561559 +77192,186,romantic comedy,1145561560 +77192,316,sci-fi,1145561586 +77192,1380,classic,1145561556 +77192,1380,John Travolta,1145561554 +77192,44191,comic book,1145561614 +77194,41997,Disappointing,1174234375 +77194,41997,unexpected classic from Spielberg,1174234210 +77194,43919,Not funny,1174234912 +77197,260,romance,1432615144 +77197,260,Science Fiction,1432615134 +77210,7011,Almodovar,1154321544 +77232,260,action,1437682491 +77232,260,adventure,1437682501 +77232,318,crime,1437682819 +77232,318,prison,1437682806 +77241,260,fun,1437866742 +77241,260,oldie but goodie,1437866758 +77243,246,documentary,1260485443 +77243,2710,camera-motion-sickness,1389046562 +77243,68358,camera-motion-sickness,1389046596 +77243,106918,camera-motion-sickness,1389046508 +77262,784,misunderstood,1205995713 +77262,784,underrated,1205995684 +77262,1320,underrated,1205995520 +77262,2717,underrated,1205995645 +77262,8376,great use of music,1205995083 +77262,57532,Films that made me mad,1257949482 +77287,260,heist,1435245715 +77287,260,robbery,1435245708 +77288,260,galactic,1433564164 +77288,260,sci-fi,1433564152 +77288,260,space,1433564170 +77298,103384,Johnny Depp,1415737831 +77298,105211,James Gandolfini,1415738704 +77298,105504,tense,1415737650 +77298,105504,tom hanks,1415737645 +77298,105504,true story,1415737641 +77298,106438,dramatic comedy,1415737199 +77298,106438,Ireland,1415737191 +77298,106438,Judi Dench,1415737187 +77298,106438,religion,1415737196 +77298,106841,meryl streep,1415738652 +77309,2140,Betamax,1197579181 +77331,527,based on a true story,1447011709 +77331,527,based on book,1447011697 +77331,527,Steven Spielberg,1447011707 +77334,1683,Helena Bonham Carter Oscar-nomination role,1137389205 +77339,440,comedy,1449519137 +77339,440,Kevin Kline,1449519156 +77339,440,politics,1449519135 +77339,440,Sigourney Weaver,1449519159 +77350,1,American Animation,1437092829 +77350,318,Like Most,1437092633 +77358,71838,Questioning Morality,1297381042 +77368,260,space,1443112974 +77368,260,space adventure,1443112971 +77368,260,space epic,1443112967 +77375,87876,not funny,1312309861 +77380,97,90s,1270919711 +77380,97,black and white,1249744384 +77380,97,confrontational,1270919721 +77380,97,french,1249744388 +77380,97,gritty,1249744391 +77380,97,verlan,1249744395 +77380,296,dark comedy,1244767367 +77380,296,nonlinear,1244767350 +77380,296,violence,1244767360 +77380,390,campy,1248735296 +77380,390,cars,1248735335 +77380,390,hallucinatory,1248735299 +77380,390,murder,1248735329 +77380,390,quotable,1248735293 +77380,390,trashy,1248735318 +77380,390,Tura Satana,1248735353 +77380,581,factual,1272029557 +77380,608,black comedy,1248735391 +77380,608,Coen Brothers,1248735378 +77380,608,dark comedy,1248735369 +77380,608,Minnesota,1248735385 +77380,608,quirky,1248735380 +77380,608,strong female,1248735382 +77380,766,andy warhol,1249742476 +77380,766,artist,1249742489 +77380,766,mental illness,1249742502 +77380,778,black comedy,1244767450 +77380,931,mental hospital,1209033289 +77380,931,overture,1209033280 +77380,931,sexual harrassment,1209033263 +77380,1041,melodramatic,1241474296 +77380,1077,dystopia,1275334291 +77380,1077,slapstick,1275334254 +77380,1077,surreal,1275334278 +77380,1077,witty,1275334267 +77380,1077,Woody Allen,1275334280 +77380,1078,incoherent,1275578510 +77380,1078,neurotic,1275578523 +77380,1078,Not Woody's best,1275578488 +77380,1078,slapstick,1275578515 +77380,1080,controversial,1249741945 +77380,1080,Monty Python,1249741932 +77380,1080,quotable,1249741939 +77380,1080,satire,1249741933 +77380,1089,ensemble cast,1244767398 +77380,1089,violence,1244767388 +77380,1103,gay subtext,1248736032 +77380,1103,iconic,1248736071 +77380,1103,quotable,1248736068 +77380,1103,youth,1248736042 +77380,1148,animated,1271119576 +77380,1148,british,1271119588 +77380,1148,gentle,1271119583 +77380,1148,Wallace & Gromit,1271119594 +77380,1175,cannibalism,1276466676 +77380,1202,black comedy,1248734250 +77380,1202,Englishness,1248734271 +77380,1202,quoteable,1248734299 +77380,1202,Social class,1248734265 +77380,1202,wistful,1248734291 +77380,1202,wry,1248734294 +77380,1206,dystopia,1248735413 +77380,1206,nadsat,1248735422 +77380,1219,classic,1248734687 +77380,1219,great cinematography,1270919043 +77380,1223,gentle,1270919782 +77380,1230,neurosis,1262822419 +77380,1230,screwball,1262822422 +77380,1267,Cold War,1256418627 +77380,1267,Political,1256418630 +77380,1267,politics,1256418632 +77380,1268,censorship,1343681967 +77380,1268,high school,1240861769 +77380,1268,rebel,1240861776 +77380,1268,teenage,1248734642 +77380,1285,adolescence is hell,1240862021 +77380,1285,black comedy,1240862012 +77380,1285,cult film,1240862018 +77380,1285,cynical,1240862033 +77380,1285,high school,1240862024 +77380,1285,irreverent,1270919239 +77380,1285,quotable,1248735174 +77380,1285,snappy dialog,1240862029 +77380,1509,blah,1209982827 +77380,1940,anti-Semitism,1270919793 +77380,1940,brave,1270919804 +77380,1940,journalism,1270919809 +77380,1940,political,1270919800 +77380,1968,1980's cult,1248735709 +77380,1968,coming of age,1248735693 +77380,1968,high school,1248735702 +77380,2282,John Waters,1249741783 +77380,2282,Parody of Art World,1249741772 +77380,2282,photography,1249741791 +77380,2671,chick flick,1240862245 +77380,2671,divorced from reality,1272114414 +77380,2671,girlie movie,1272114379 +77380,2692,German,1248734597 +77380,2692,intense,1248734592 +77380,2700,adult humor,1249076485 +77380,2700,free speech,1249076482 +77380,2700,satire,1249076487 +77380,2750,childhood,1292087438 +77380,2750,music,1292087444 +77380,2750,New York,1292087424 +77380,2750,nostalgic,1292087379 +77380,2750,vignettes,1292087450 +77380,2750,Woody Allen,1292087376 +77380,2959,thinks it's cleverer than it is,1270919402 +77380,3094,gay,1252958947 +77380,3094,merchant ivory,1252958938 +77380,3186,60s,1248735247 +77380,3186,Angelina Jolie,1240862071 +77380,3186,Clea DuVall,1240862080 +77380,3186,girlie movie,1248735222 +77380,3186,psychiatry,1240862090 +77380,3545,Berlin,1248735566 +77380,3545,love triangle,1248735579 +77380,3545,queer,1248735561 +77380,3545,wistful,1270919486 +77380,3786,campy,1248735615 +77380,3786,Clea DuVall,1248735618 +77380,3786,coming of age,1248735620 +77380,3786,cute,1248735623 +77380,3786,good soundtrack,1248735642 +77380,3786,lesbian,1248735654 +77380,3786,satirical,1248735627 +77380,3786,sexuality,1248735625 +77380,3786,stereotypes,1248735633 +77380,3812,neurotic,1275403441 +77380,3812,vaguely embarrassing 70s take on sex,1275403461 +77380,3812,Woody Allen,1275403469 +77380,3851,margaret cho,1249742429 +77380,3851,race,1249742438 +77380,3851,sexuality,1249742449 +77380,3851,stand-up,1249742434 +77380,3858,campy,1248735479 +77380,3858,cinema terrorism,1248735462 +77380,3858,filmmaking,1248735455 +77380,3858,irreverent,1248735476 +77380,3858,John Waters,1240922777 +77380,3858,queer,1248735497 +77380,3858,quotable,1248735515 +77380,3949,depressing,1244767498 +77380,3949,hysterical,1244767488 +77380,3949,melodramatic,1342237153 +77380,3949,way over the top,1244767479 +77380,4246,chick flick,1240862199 +77380,4246,fake english accent,1251109243 +77380,4246,girlie movie,1240862206 +77380,4246,romantic comedy,1240862203 +77380,4308,appalling,1157807872 +77380,4308,courtesan,1240862339 +77380,4308,Nicole Kidman,1240862314 +77380,4308,sentimental,1240862324 +77380,4308,stylized,1240862319 +77380,4381,comedy,1248692173 +77380,4381,French,1248692254 +77380,4381,irreverent,1248692242 +77380,4641,adolescence,1248735272 +77380,4641,bittersweet,1248735275 +77380,4641,coming of age,1248735264 +77380,4641,loses its way,1270919369 +77380,4641,quirky,1248735267 +77380,4642,bittersweet,1248735139 +77380,4642,cult film,1240861993 +77380,4642,fantastic accent,1248735108 +77380,4642,musical,1248735121 +77380,4642,poignant,1240861989 +77380,4642,queer,1240861987 +77380,4642,quoteable,1248735113 +77380,4642,transgender,1270919219 +77380,4727,utterly fails to do justice to the book,1272114287 +77380,4741,1970s,1248735925 +77380,4741,friendship,1248735929 +77380,4741,scandinavian,1271119669 +77380,4741,social criticism,1271119662 +77380,4741,tender,1248735948 +77380,4754,atmospheric,1271119493 +77380,4754,cult film,1240864454 +77380,4754,disturbing,1271119488 +77380,4754,enigmatic,1240864460 +77380,4754,proper british horror,1271119523 +77380,4878,alternate timeline,1244767547 +77380,4878,hallucinatory,1244767525 +77380,4878,mental illness,1244767522 +77380,4884,hasidim,1272075539 +77380,4884,Jewish,1272075365 +77380,4884,lgbt,1272075363 +77380,4884,thoughtful,1272075382 +77380,4973,beautifully filmed,1240922885 +77380,4973,comedy,1244767830 +77380,4973,coming of age,1244767835 +77380,4973,Paris,1244767844 +77380,4973,stylized,1244767821 +77380,5222,neurotic new yorkers,1331517823 +77380,5418,action,1248692545 +77380,5618,Japan,1271119858 +77380,5618,weird,1261699476 +77380,5721,Chaim Potok,1314651944 +77380,5721,father-son relationship,1314651914 +77380,5721,friendship,1314651925 +77380,5721,Judaism,1314651887 +77380,6291,brutal,1248734843 +77380,6291,child prostitution,1240861919 +77380,6291,Depressing,1240861910 +77380,6291,disturbing,1248734856 +77380,6291,forceful,1240861904 +77380,6291,friendship transcending death,1248734831 +77380,6291,prostitution,1240861916 +77380,6291,social commentary,1248734823 +77380,6291,starry-eyed,1240861890 +77380,6705,campy,1249741851 +77380,6705,club kids,1249741814 +77380,6705,dance music,1249741864 +77380,6705,drugs,1249741836 +77380,6705,murder,1249741831 +77380,6705,new york,1249741818 +77380,6762,hebrew,1276044104 +77380,6762,israeli,1276044039 +77380,6762,simple,1276044056 +77380,6762,soldiers,1276044074 +77380,6762,touching,1278714428 +77380,6762,tragedy,1276044053 +77380,6762,war zone,1276044048 +77380,6874,martial arts,1249742356 +77380,6874,violence,1249742346 +77380,6874,violent,1249742344 +77380,6956,lesbian,1271119328 +77380,7022,brutal,1248735744 +77380,7022,Japan,1240862680 +77380,7022,martial arts,1240862691 +77380,7022,violent,1248735737 +77380,7034,adolescence,1240861600 +77380,7034,coming of age,1240861619 +77380,7034,quirky,1240861638 +77380,7130,cynical,1272029361 +77380,7130,other side of the 60s,1272029340 +77380,7130,ruined woman,1272029351 +77380,7130,wry,1272029378 +77380,7153,fantasy,1240862449 +77380,7153,fantasy world,1240862444 +77380,7153,high fantasy,1240862439 +77380,7153,Peter Jackson,1240862426 +77380,7153,stylized,1240862428 +77380,7153,war,1240862453 +77380,7323,Berlin,1270919336 +77380,7323,DDR,1270919323 +77380,7323,East Germany,1270919318 +77380,7323,maintaining illusion,1270919302 +77380,7323,Ostalgie,1270919291 +77380,7340,cross dressing,1256686833 +77380,7340,cross dressing women,1256686831 +77380,7340,high school,1256686836 +77380,7349,family bonds,1272029429 +77380,7349,human,1272029442 +77380,7349,israel,1272029459 +77380,7349,sensitive,1272029453 +77380,7361,schmaltzy,1244767717 +77380,7451,based on a book,1240861510 +77380,7451,High School,1240861473 +77380,7451,innocence lost,1240861500 +77380,7451,suprisingly clever,1240861487 +77380,7474,groundbreaking,1355432145 +77380,7474,lgbt,1355432198 +77380,7474,melodramatic,1355432157 +77380,7474,stagey,1355432167 +77380,7486,wistful,1270919748 +77380,8376,high school,1249741919 +77380,8376,nerds,1249741897 +77380,8376,off-beat comedy,1249741899 +77380,8376,quotable,1248638035 +77380,8464,documentary,1248736009 +77380,8464,entertaining,1271119817 +77380,8464,McDonalds,1271119784 +77380,8528,hilarious,1251287599 +77380,8665,Franka Potente,1248692497 +77380,8665,kickass,1248692485 +77380,8665,Matt Damon,1248692500 +77380,8807,asians,1241474075 +77380,8807,high brow stupidity,1241474079 +77380,8807,John Cho,1241474062 +77380,8807,Neil Patrick Harris,1241474065 +77380,8872,John Waters,1240922810 +77380,8910,blunt existentialism,1241374010 +77380,8910,existentialism,1241374012 +77380,8974,silly,1275334367 +77380,25777,Groucho Marx,1311887190 +77380,27246,better than it sounds from the title,1337661266 +77380,27397,cold war,1248735062 +77380,27397,DMZ,1248735008 +77380,27397,dprk,1270918785 +77380,27397,friendship,1248735029 +77380,27397,korea,1240872154 +77380,27397,Korean War,1248735018 +77380,27397,tension,1248735021 +77380,27397,tragedy,1248735038 +77380,27523,cute,1248734740 +77380,27523,korean,1248734754 +77380,27523,original not remake,1248734780 +77380,27523,romantic comedy,1248734745 +77380,27523,screwball,1248734750 +77380,27722,asia,1249742199 +77380,27722,bereavement,1249742264 +77380,27722,communication problems,1270919552 +77380,27722,dreamlike,1249742209 +77380,27722,meditative,1249742183 +77380,27722,mysterious,1249742249 +77380,27722,relationships,1249742213 +77380,27722,thailand,1249742234 +77380,27773,disturbing,1240862644 +77380,27773,incest,1240862640 +77380,27773,Korean,1240862629 +77380,27801,Best fighting and stunts ever,1240861826 +77380,27801,chase,1240861849 +77380,27801,fighting,1248734710 +77380,27801,martial arts,1240861831 +77380,27801,muay thai,1270919065 +77380,27904,confusing when not necessary,1242608583 +77380,27904,interesting concept - bad execution,1242608588 +77380,30803,korean,1261713324 +77380,30803,silent,1261713349 +77380,30803,understated,1261713356 +77380,30867,cool animated sequence,1248734943 +77380,30867,friendship,1248734883 +77380,30867,fun,1248734935 +77380,30867,gothic lolita,1248734895 +77380,30867,japanese,1248734879 +77380,30867,motorcycle,1248734914 +77380,31682,messy,1272029074 +77380,32840,short,1319064001 +77380,33615,Ben Stiller,1249742041 +77380,33615,comedy,1249742044 +77380,33615,Sacha Baron Cohen,1249742038 +77380,33615,surprisingly witty,1249742052 +77380,33679,Angelina Jolie,1241477078 +77380,33817,betrayal,1331472920 +77380,33817,disturbing,1331472889 +77380,33817,manipulation,1331472901 +77380,33880,horrible.,1157805227 +77380,33903,thoughtful,1270919828 +77380,36535,beautiful scenery,1240861541 +77380,36535,colourful,1244112764 +77380,36535,Eugene Hutz,1244112748 +77380,36535,judaica,1244112781 +77380,38086,boarding school,1271119230 +77380,38086,bullying,1271119235 +77380,38086,drama,1271119239 +77380,38086,evil,1271119223 +77380,38086,high school,1241129560 +77380,38086,horror,1271119243 +77380,38086,korean,1271119261 +77380,39183,beautiful,1245002040 +77380,39183,bittersweet,1248735671 +77380,39183,intimate,1245002049 +77380,40337,hasidim,1322508966 +77380,40337,israel,1322508930 +77380,40337,Jerusalem,1322508944 +77380,40337,Jewish,1322508951 +77380,40337,religion,1322508958 +77380,40337,Sukkot,1322508927 +77380,41997,Israel,1314414791 +77380,42632,beautiful cinematography,1249742325 +77380,42632,child murder,1240862500 +77380,42632,disturbing,1249742303 +77380,42632,quirky,1240862503 +77380,42632,revenge,1270919573 +77380,42632,violent,1270919568 +77380,43744,cute,1249742373 +77380,43744,lesbian,1249742377 +77380,43744,London,1249742395 +77380,43744,Romance,1249742380 +77380,44191,ideologically suspect,1248735894 +77380,44788,censorship,1248734159 +77380,44788,documentary,1248734153 +77380,44788,Hollywood,1248734161 +77380,44788,social commentary,1248734166 +77380,44974,Ellen Page,1240862056 +77380,44974,intense,1270919267 +77380,44974,psychology,1270919272 +77380,45440,art school,1248735788 +77380,45440,black comedy,1248735774 +77380,45440,disillusionment,1248735783 +77380,45440,Misanthropic,1248735778 +77380,46578,dark comedy,1249742106 +77380,46578,dysfunctional family,1249742096 +77380,46912,atmospheric,1244767283 +77380,46912,dreamlike,1248734371 +77380,46912,korean,1248734356 +77380,46912,lesbian,1248734409 +77380,46912,suicide,1248734384 +77380,46912,teenage,1248734391 +77380,46976,Maggie Gyllenhaal,1249076439 +77380,47518,college,1248735831 +77380,47518,dude comedy,1248735830 +77380,47518,light,1248735819 +77380,47518,silly,1248735826 +77380,47518,slackers,1248735839 +77380,47810,remake,1157804957 +77380,47810,sacrilege,1157804957 +77380,47810,unnecessary,1157804957 +77380,48744,depression,1240861675 +77380,48744,feel good,1240861678 +77380,48744,irreverent,1240861683 +77380,48744,New York City,1248734571 +77380,48744,queer,1248734574 +77380,49272,Daniel Craig,1248692572 +77380,49272,espionage,1314400260 +77380,51255,british comedy,1249744351 +77380,51255,never gets old,1287150894 +77380,51255,police,1249744357 +77380,51255,urban/rural tension,1270919695 +77380,51694,unlikeable,1272114437 +77380,52952,gritty,1271119688 +77380,52952,INNOCENCE LOST,1271119694 +77380,54272,animation,1271119956 +77380,54272,comedy,1249076525 +77380,54272,funny,1271119965 +77380,54281,incoherent,1343177044 +77380,54286,action,1248692527 +77380,54286,Matt Damon,1248692524 +77380,55442,animation,1249741730 +77380,55844,incoherent,1342236538 +77380,55844,obnoxious,1342236530 +77380,56367,adoption,1248638073 +77380,56367,cult film,1240861950 +77380,56367,Ellen Page,1240861940 +77380,56367,excellent script,1244767300 +77380,56367,hilarious,1240861944 +77380,56367,pregnancy,1240861947 +77380,56367,quotable,1248638055 +77380,56367,witty,1244767321 +77380,56479,cinderella story gone wrong,1272029193 +77380,56479,drugs,1272029164 +77380,56479,murder,1272029181 +77380,56479,should accompany the fictionalisation,1272029260 +77380,56479,tragic,1272029158 +77380,56757,Johnny Depp,1249076422 +77380,56757,Sacha Baron Cohen,1249076417 +77380,56757,violent,1249076411 +77380,58576,inscrutable,1271119294 +77380,58998,dracula,1248733875 +77380,58998,Hawaii,1248733924 +77380,58998,Jason Segel,1248733929 +77380,58998,Russell Brand,1248733946 +77380,59900,ridiculous,1357594495 +77380,61240,black humour,1249742165 +77380,61240,meditative,1249742156 +77380,61240,swedish,1249742150 +77380,63113,action,1314396169 +77380,63113,Daniel Craig,1240861748 +77380,63113,secret service,1314396187 +77380,63113,spy,1240861739 +77380,63876,biography,1244112675 +77380,63876,gay,1249742022 +77380,63876,politics,1244112695 +77380,63876,San Francisco,1249742018 +77380,65709,comedy,1249076380 +77380,65709,john waters,1249076389 +77380,65709,stand-up,1249076385 +77380,66934,joss whedon,1270918822 +77380,66934,Neil Patrick Harris,1241560800 +77380,67087,bromantic,1270919178 +77380,67087,friendship,1248692756 +77380,67087,gay friendly,1270919191 +77380,67087,likeable,1248692771 +77380,67087,masculinity,1248692749 +77380,67247,documentary,1331681418 +77380,67247,Down's syndrome,1331681493 +77380,67247,family,1331681435 +77380,67247,growing up,1331681462 +77380,67247,Judaism,1331681430 +77380,68159,journalism,1241373516 +77380,68159,political corruption,1249076465 +77380,68159,protagonist is journalist,1241373523 +77380,68314,goofy,1355433554 +77380,68314,Korean,1355433537 +77380,68314,lgbt,1355433545 +77380,68314,manga adaptation,1355433573 +77380,68886,light,1272028193 +77380,68886,marriage,1272028188 +77380,69784,Sacha Baron Cohen,1247700165 +77380,70637,arab family,1271119146 +77380,70637,coming out,1272028093 +77380,70637,drama,1271119127 +77380,70637,family,1271119124 +77380,70637,lesbian,1271119121 +77380,70898,family,1296955192 +77380,70898,lightly-sketched,1296955224 +77380,70898,quarter life crisis,1296955186 +77380,70898,terrible message,1296955219 +77380,71205,ridiculous,1268689631 +77380,71205,sexy,1268689627 +77380,71464,black humour,1259801857 +77380,71464,Bleak,1259801832 +77380,71464,coen brothers,1276044188 +77380,71464,Ethan Coen,1259801787 +77380,71464,Jewish,1259801810 +77380,71464,Joel Coen,1259801790 +77380,71464,Michael Stuhlbarg,1259801792 +77380,71464,oy vey,1315587768 +77380,71464,Philosophical,1259801841 +77380,71464,Suburbs,1259801827 +77380,71745,not really for kids,1271119556 +77380,72011,corporate america,1270918881 +77380,72011,likeable,1270918892 +77380,72011,thoughtful,1270918871 +77380,72011,witty,1270918867 +77380,72720,beautiful cinematography,1270918709 +77380,72720,meditative,1270918725 +77380,72720,sad,1270918730 +77380,72720,twist ending,1270918718 +77380,72731,grisly,1269471269 +77380,72731,horrible,1269471260 +77380,72731,Peter Jackson,1269471318 +77380,72731,pointless,1269471348 +77380,72731,schmaltz,1269471302 +77380,72731,too long,1269471338 +77380,73015,gentle,1270919612 +77380,73015,old people romcom,1270919598 +77380,73708,apple,1272028001 +77380,73708,fandom,1272028008 +77380,73708,some of these people need to get a grip,1272028020 +77380,74275,black comedy,1269469559 +77380,74275,frantic,1269469585 +77380,74275,glib,1269469808 +77380,74275,psych!,1269469626 +77380,77240,adultery,1272200002 +77380,77240,family portrait,1272200023 +77380,77240,italy,1272199940 +77380,77240,melodrama,1272199935 +77380,77240,slow-moving,1272199978 +77380,77240,society people,1272199972 +77380,77240,tilda swinton,1272199931 +77380,77800,dark comedy,1324432015 +77380,78209,great lines,1280666288 +77380,78209,silly,1280666255 +77380,79702,cultural references,1287150999 +77380,79702,cute,1287150916 +77380,79702,funny,1287151018 +77380,79702,geeky,1282836883 +77380,79702,hipsters,1287151040 +77380,79702,Jason Schwartzman,1309288657 +77380,79702,quirky,1309288673 +77380,79946,consumerism,1311899250 +77380,79946,deception,1311899273 +77380,79946,ethical dilemma,1311899246 +77380,79946,great premise,1311899234 +77380,79946,money,1311900113 +77380,79946,secret identity,1311899281 +77380,79987,biopic,1285182032 +77380,79987,chanson,1285182067 +77380,79987,france,1285182075 +77380,79987,incoherent,1285182040 +77380,79987,music,1285182072 +77380,79987,personal,1285182057 +77380,79987,surreal,1285182027 +77380,81305,forbidden love,1309569431 +77380,81305,haredi,1309569419 +77380,81305,hebrew,1309569440 +77380,81305,israeli,1309569443 +77380,81305,subtle,1309569438 +77380,81845,class,1299116287 +77380,81845,historical,1299116279 +77380,81845,nation,1299116284 +77380,84601,Bournealike,1307792282 +77380,84772,geeky,1299116138 +77380,84772,referential,1299116146 +77380,84772,uk-usa,1299116248 +77380,87234,Dsyfunction,1311004542 +77380,87234,First love,1311004526 +77380,87234,Human weakness,1311004520 +77380,87234,Teenagers,1311004514 +77380,87234,Wales,1311004503 +77380,88766,antisemitism,1314643582 +77380,88766,beautifully acted,1314643332 +77380,88766,Judaism,1314643360 +77380,88766,portrait of a family,1314643602 +77380,88766,Sholom Aleichem,1314643306 +77380,88766,shtetl,1314643573 +77380,88766,Yiddish,1314643289 +77380,89085,Israel,1339613945 +77380,89753,Beautifully shot,1316640726 +77380,89753,Cold War,1316640745 +77380,89753,Double agent,1316640764 +77380,89753,London,1316640730 +77380,89753,MI6,1316640740 +77380,89753,seventies,1316640734 +77380,89753,Sparingly told,1316640795 +77380,89753,Spies,1316640757 +77380,89804,intrigue,1321915814 +77380,89804,politics,1321915824 +77380,89804,scandal,1321915819 +77380,90630,america,1331681255 +77380,90630,feminism,1331681265 +77380,90630,media,1331681217 +77380,90630,polemic,1331681344 +77380,90630,politics,1331681261 +77380,90630,poor use of statistics undermines its correct argument,1331681247 +77380,90630,representation,1331681224 +77380,90630,talking heads,1331681332 +77380,91199,atmospheric,1336404222 +77380,91199,bittersweet,1336404245 +77380,91199,England,1336404255 +77380,91199,meditative,1336404229 +77380,91658,Good adaptation,1339727236 +77380,91658,Sweden,1339727244 +77380,93510,awesome johnny depp cameo,1333497212 +77380,93510,hilarious,1333494557 +77380,93510,kids these days,1333494592 +77380,93510,meta,1333494601 +77380,93510,self-aware,1333494569 +77380,93510,undercover cops,1333494582 +77380,93550,lgbt,1355432008 +77380,93550,surprisingly cute,1355432016 +77380,93550,thai,1355432002 +77380,94677,goofy,1337727697 +77380,94677,sacha baron cohen,1337727654 +77380,94677,satire,1337727686 +77380,96610,telekinesis,1349736134 +77380,96655,family,1363114607 +77380,96655,future,1363114581 +77380,96655,gentle,1363114575 +77380,96655,memory,1363114587 +77380,98933,Hebrew,1355431715 +77380,98933,Israeli,1355431659 +77380,98933,lgbt,1355431729 +77380,98933,sequel,1355431654 +77380,102905,70s,1370125614 +77380,102905,based on a true story,1370125653 +77380,102905,biopic,1370125606 +77380,102905,domestic violence,1370125624 +77380,102905,porn,1370125618 +77421,413,rock and roll,1186182428 +77421,546,bob-ombs,1186182502 +77421,836,keanu reeves,1186182516 +77421,915,audrey hepburn,1186182651 +77421,1025,classic,1186182556 +77421,1100,nascar,1186182468 +77421,1441,johnny depp,1186182407 +77421,2485,high school,1186182485 +77421,2600,video game,1186182527 +77421,2840,religious,1186182660 +77421,3988,jim carrey,1186182542 +77421,6016,brazil,1186182447 +77421,6373,jim carrey,1186182434 +77421,7254,ashton kutcher,1186182640 +77421,8970,fairy tales,1186182704 +77428,194,Harvey Keitel,1297985393 +77428,194,Paul Auster,1297985387 +77428,293,plot,1297096830 +77428,293,unlikely,1297096826 +77428,307,classical music,1338333875 +77428,307,existential,1338333969 +77428,307,Juliette Binoche,1338333932 +77428,307,lyrical,1338333880 +77428,307,meditative,1338333910 +77428,307,photography,1338333904 +77428,308,not as dreamy,1346851877 +77428,457,overrated,1296772888 +77428,457,plot,1296772882 +77428,457,predictable,1296772905 +77428,506,author:Virginia Woolf,1299881565 +77428,506,gender,1299881576 +77428,506,stylized,1299881590 +77428,506,Tilda Swinton,1299880351 +77428,506,transgender,1299881581 +77428,541,dystopia,1297107994 +77428,541,sci-fi,1297107997 +77428,549,"""eccentric genius""",1357911717 +77428,549,prententious bullshit,1357911643 +77428,593,Anthony Hopkins,1297599602 +77428,593,Hannibal Lecter,1297599609 +77428,608,absurd,1306625992 +77428,608,black comedy,1306625954 +77428,608,Coen Brothers,1306626006 +77428,608,dry humor,1306625982 +77428,608,Oh ja,1306625967 +77428,608,quirky,1306625960 +77428,628,courtroom drama,1297597205 +77428,628,thriller,1297597208 +77428,628,twist ending,1297597214 +77428,680,too cerebral,1312906574 +77428,741,anime,1307119357 +77428,741,artificial intelligence,1307119331 +77428,741,based on a manga,1307119404 +77428,741,complex,1307119373 +77428,741,philosophy,1307119340 +77428,741,sci-fi,1307119369 +77428,778,drugs,1378770322 +77428,908,Alfred Hitchcock,1302215058 +77428,908,Jovial tone,1302215049 +77428,908,suspense,1302215069 +77428,908,thriller,1302215065 +77428,908,witty,1302215079 +77428,910,Billy Wilder,1372202966 +77428,913,overrated,1304210105 +77428,973,pro american,1395953685 +77428,1086,Alfred Hitchcock,1302562255 +77428,1086,based on a play,1302562298 +77428,1086,classic,1302562291 +77428,1086,Hitchcock at his best,1302562275 +77428,1086,suspense,1302562309 +77428,1095,based on a play,1377644585 +77428,1095,dialogue driven,1377644621 +77428,1176,enigmatic,1346283364 +77428,1176,Irene Jacob,1346283404 +77428,1176,Krzysztof Kieslowski,1346283415 +77428,1176,lyrical,1346283369 +77428,1176,singular,1346283418 +77428,1176,surreal,1346283433 +77428,1186,great acting,1322268687 +77428,1186,sexuality,1322268669 +77428,1203,Classic,1316472386 +77428,1203,courtroom drama,1316472403 +77428,1203,growing suspense,1316472455 +77428,1203,racism,1316472394 +77428,1204,weird!,1346851743 +77428,1209,atmospheric,1297096149 +77428,1209,classic,1297096125 +77428,1209,Ennio Morricone,1297096131 +77428,1209,genre-defining,1297096167 +77428,1209,Sergio Leone,1297096136 +77428,1209,tense,1297096156 +77428,1212,atmospheric,1299539753 +77428,1212,film noir,1299539776 +77428,1212,Orson Welles,1299539762 +77428,1232,dreamlike,1325722689 +77428,1232,dystopia,1325722573 +77428,1232,existentialism,1325722582 +77428,1232,gloomy,1325722684 +77428,1232,meditative,1325722694 +77428,1232,nature,1325722586 +77428,1232,reflective,1325722602 +77428,1234,caper,1320965656 +77428,1234,classic,1320965660 +77428,1234,con artists,1320965665 +77428,1234,jovial,1320965685 +77428,1234,Paul Newman,1320965671 +77428,1234,Robert Redford,1320965676 +77428,1237,dreamlike,1324817385 +77428,1237,existentialism,1324817358 +77428,1237,Ingmar Bergman,1324817364 +77428,1237,medieval,1324817368 +77428,1237,The black plague,1324817393 +77428,1245,Coen Brothers,1305305319 +77428,1245,gangsters,1305305314 +77428,1245,hard boiled main character,1305305355 +77428,1245,twists & turns,1305305368 +77428,1251,meta,1296732269 +77428,1258,enclosed space,1328740747 +77428,1276,Paul Newman,1374280956 +77428,1279,humorous,1297985333 +77428,1279,Jim Jarmusch,1297985313 +77428,1279,quirky,1297985337 +77428,1279,Roberto Benigni,1297985303 +77428,1279,Tom Waits,1297985322 +77428,1354,Emily Watson,1349991830 +77428,1354,sanity,1349991946 +77428,1354,Scotland,1349991838 +77428,1354,tragedy,1349991921 +77428,1464,atmospheric,1297079880 +77428,1464,clever,1297079874 +77428,1464,David Lynch,1297079908 +77428,1464,dreamlike,1297079895 +77428,1464,jealousy,1297079889 +77428,1464,nonlinear,1297079899 +77428,1464,strange,1297079871 +77428,1732,black comedy,1333449718 +77428,1732,Coen Brothers,1333449707 +77428,1732,comedy,1333449710 +77428,1732,cult film,1333449702 +77428,1834,cliched,1281648607 +77428,1834,cliched plot,1281648612 +77428,1834,the acting,1281648587 +77428,1834,the plot,1281648593 +77428,1859,colors,1347973458 +77428,1921,snorricam,1280079693 +77428,1945,communism,1377472905 +77428,1945,Marlon Brando,1377472914 +77428,1953,atmospheric,1346619923 +77428,1953,crime,1346619993 +77428,1953,New York,1346619974 +77428,1953,soundtrack,1346619986 +77428,1953,thriller,1346619996 +77428,1966,Criterion,1378074424 +77428,1966,dialouge,1378074433 +77428,1966,New York City,1378074413 +77428,1966,upper class,1378074418 +77428,1968,pølla,1382469411 +77428,1968,that will be all,1382469418 +77428,2068,bittersweet,1326391536 +77428,2068,Ingmar Bergman,1326391557 +77428,2068,metaphysical,1326391549 +77428,2176,long takes,1302648493 +77428,2176,not one of Hitchcock's best,1302648474 +77428,2183,Alfred Hitchcock,1302479023 +77428,2183,James Stewart,1302479016 +77428,2183,the plot and style seems outdated in this Hitchcock,1302479002 +77428,2186,bad plot,1296762363 +77428,2194,post-modern,1385010052 +77428,2204,adventure,1380488496 +77428,2289,Crime,1374057633 +77428,2289,deadpan,1374057617 +77428,2289,Meta,1374057646 +77428,2289,Robert Altman,1374057626 +77428,2318,dark comedy,1297080727 +77428,2318,loneliness,1297080747 +77428,2318,sexual deviant,1297080756 +77428,2318,sexuality,1297080734 +77428,2353,espionage,1303923781 +77428,2353,surveillance,1303923788 +77428,2353,very Hollywood,1303923846 +77428,2353,wrongly accused,1303923819 +77428,2502,dialogue,1293485055 +77428,2511,deadpan,1348236102 +77428,2511,Elliott Gould,1348236111 +77428,2511,satirical,1348236120 +77428,2542,funny,1297096334 +77428,2542,Guy Ritchie,1297096353 +77428,2542,snappy dialouge,1297096343 +77428,2571,dystopia,1303687146 +77428,2571,Hollywood style acion,1303828146 +77428,2571,philosophy,1303828120 +77428,2571,Post apocalyptic,1303828107 +77428,2571,slow motion,1303828178 +77428,2571,stylized,1303828167 +77428,2571,virtual reality,1303828114 +77428,2580,comedy,1297895282 +77428,2580,drugs,1297895299 +77428,2580,multiple storylines,1297895292 +77428,2594,dark,1294229916 +77428,2594,mindfuck,1294229920 +77428,2594,too explicit ending,1294229936 +77428,2599,dead pan,1379634202 +77428,2599,sexuality,1379634206 +77428,2600,the dialouge just doesn't sound right,1301430219 +77428,2600,the plot,1301484406 +77428,2628,franchise,1303828536 +77428,2644,abrupt ending,1308179101 +77428,2644,seems outdated,1308179125 +77428,2644,very slowpaced,1308179120 +77428,2708,Eric Rohmer,1361565401 +77428,2710,low budget,1297376763 +77428,2726,heist,1357065509 +77428,2726,Stanley Kubrick,1357065441 +77428,2729,lacks edge,1315665465 +77428,2729,obsession,1315665425 +77428,2729,paranoia,1315665435 +77428,2729,Peter Sellers,1315665414 +77428,2730,18th century,1315503493 +77428,2730,aristocracy,1315503493 +77428,2730,Oscar (Best Cinematography),1315503816 +77428,2730,Period piece,1338219723 +77428,2730,solemn,1315503807 +77428,2730,Stanley Kubrick,1315503468 +77428,2730,wry,1315503861 +77428,2731,Francois Truffaut,1354325024 +77428,2731,new wave,1354325018 +77428,2731,Paris,1354325029 +77428,2800,but mostly for kids,1303422309 +77428,2800,very nice,1303422309 +77428,2810,distorted reality,1312074079 +77428,2810,has some plot problems,1312074066 +77428,2871,not very subtle,1352335148 +77428,2933,Paris,1349950676 +77428,2944,anti-hero,1320162297 +77428,2944,classic,1320162303 +77428,2959,classic,1297080826 +77428,2959,clever,1297080805 +77428,2959,David Fincher,1297080843 +77428,2959,good adaptation of the book,1297080811 +77428,2959,philosophy,1297080796 +77428,2959,social commentary,1297080802 +77428,2959,visually appealing,1297080838 +77428,2973,banal philosophy,1350767801 +77428,2973,ending,1350767806 +77428,2983,the ending,1359053716 +77428,2997,dark comedy,1297108004 +77428,2997,surreal,1297108007 +77428,3000,adventure,1323217111 +77428,3000,ambiguous character alignments,1323217103 +77428,3000,dark,1323217135 +77428,3000,Hayao Miyazaki,1323217126 +77428,3000,Studio Ghibli,1323217118 +77428,3000,surreal,1323217107 +77428,3019,Trainspotting minus the good parts,1333300089 +77428,3068,courtroom drama,1380066636 +77428,3198,terrible ending,1356050917 +77428,3246,Denzel Washington,1298469669 +77428,3246,Islam,1298469673 +77428,3246,Malcolm X,1298469678 +77428,3266,alternative,1283104422 +77428,3266,metafilm,1283104408 +77428,3317,the ending sucks,1298847969 +77428,3317,the plot is all over the place,1298848117 +77428,3317,writer,1298847979 +77428,3355,B-movie,1379941527 +77428,3415,Andrei Tarkovsky,1330278041 +77428,3415,enigmatic,1330275785 +77428,3415,lyrical,1330275824 +77428,3415,ontology,1330275807 +77428,3415,poetic,1330275810 +77428,3415,visually stunning,1330275817 +77428,3435,film noir,1322404771 +77428,3481,overrated,1299531549 +77428,3481,talks directly to the camera,1299531595 +77428,3634,politics,1377985404 +77428,3634,Thriller,1377985399 +77428,3730,(too) slow-paced,1293556561 +77428,3730,ending was better than the rest,1293556510 +77428,3735,Al Pacino,1381384995 +77428,3735,New York City,1381384979 +77428,3735,Sidney Lumet,1381384987 +77428,3801,classic,1316465395 +77428,3801,courtroom,1316465368 +77428,3801,James Stewart,1316465377 +77428,4011,british,1297095658 +77428,4011,clever,1297095705 +77428,4011,crime,1297095647 +77428,4011,dialogue,1297095654 +77428,4011,ensemble cast,1297095700 +77428,4011,Guy Ritchie,1297095666 +77428,4011,gypsy accent,1297095676 +77428,4011,multiple storylines,1297095685 +77428,4011,stylized,1297095695 +77428,4210,outdated,1304553395 +77428,4211,aristocracy,1322323555 +77428,4211,over the top,1322323785 +77428,4212,Agatha Christie,1359676328 +77428,4212,Peter Ustinov,1359676313 +77428,4226,black and white,1297079779 +77428,4226,complicated,1297079812 +77428,4226,cult film,1297079821 +77428,4226,genius,1297079804 +77428,4226,memory,1297079784 +77428,4226,twists & turns,1297079791 +77428,4298,caper,1357567734 +77428,4298,cinematography,1357567769 +77428,4298,crime,1357567777 +77428,4298,Criterion,1357567741 +77428,4298,heist,1357567729 +77428,4298,Jules Dassin,1357567725 +77428,4298,Paris,1357567751 +77428,4298,tense,1357567747 +77428,4327,too moralistic,1319037811 +77428,4432,Criterion,1379623694 +77428,4432,Film Noir,1379623704 +77428,4454,cliche,1282138519 +77428,4840,Criterion,1354124296 +77428,4840,Francois Truffaut,1354124291 +77428,4840,Gerad Depardieu,1354124303 +77428,4848,David Lynch,1297079690 +77428,4848,dreamlike,1297079699 +77428,4848,mystery,1297079731 +77428,4848,nonlinear,1297079738 +77428,4848,phantasmagoric,1297079725 +77428,4848,sexual,1297079742 +77428,4848,surreal,1297079694 +77428,4848,thriller,1297079759 +77428,4848,visually appeling,1297079754 +77428,4873,lucid dreaming,1297079475 +77428,4873,philosophy,1297079460 +77428,4873,quirky,1297079507 +77428,4873,rotoscope,1297079448 +77428,4873,stylized,1297079469 +77428,4881,looses alot of momentum in 2nd half,1345745298 +77428,4888,based on a play,1315991930 +77428,4888,Ethan Hawke,1315991953 +77428,4888,minimalist,1315991947 +77428,4888,Richard Linklater,1315991943 +77428,4888,talky,1315991934 +77428,4888,tense,1315991936 +77428,4914,deadpan,1355695065 +77428,4914,French New Wave,1355695083 +77428,4914,Jean-Luc Godard,1355695077 +77428,4914,væska,1377378118 +77428,4932,has a sort of Lynchian mix of kitsch and horror,1319495713 +77428,4932,sexual,1319495799 +77428,4969,Agatha Christie,1305585918 +77428,4969,classic,1305585910 +77428,4969,crime,1305585961 +77428,4969,funny,1305585980 +77428,4969,suspense,1305585930 +77428,4969,whodunit,1305585906 +77428,4975,the ending,1280146588 +77428,4978,not mystery or thriller!,1321574051 +77428,5008,a little over the top at times,1329353338 +77428,5008,Charles Laughton,1329348825 +77428,5008,courtroom drama,1329353373 +77428,5008,crime,1329353363 +77428,5008,Sir Wilfrid Robarts,1329348817 +77428,5120,psychopaths,1321555881 +77428,5146,anime,1339717969 +77428,5146,vampire,1339717986 +77428,5225,road trip,1370299199 +77428,5225,sexuality,1370299207 +77428,5291,multiple storylines,1320951450 +77428,5291,nonlinear,1320951454 +77428,5304,Criterion,1356128133 +77428,5304,gritty,1356128144 +77428,5304,Neo-Realism,1356128153 +77428,5304,Roberto Rosselini,1356128141 +77428,5378,doesn't have any of the right 'feel',1303828634 +77428,5378,terrible acting,1303828604 +77428,5391,pretentious bullshit,1318551495 +77428,5464,bad ending,1309217130 +77428,5464,Hollywood,1309217038 +77428,5477,erotic,1336430863 +77428,5477,nonlinear,1336430869 +77428,5477,surreal,1336430858 +77428,5515,absurd,1297095752 +77428,5515,cynical,1297095749 +77428,5515,dark,1297095764 +77428,5515,satirical,1297095777 +77428,5515,stylized,1297095732 +77428,5515,surreal,1297095735 +77428,5602,Mrs. Wilberforce,1280875120 +77428,5602,Peter Sellers,1280875132 +77428,5618,alternate reality,1349645200 +77428,5618,dreamlike,1349645205 +77428,5686,experimental,1296678369 +77428,5686,meta,1296608393 +77428,5686,no cuts,1296608491 +77428,5707,Paul Newman,1380325758 +77428,5712,Brian De Palma,1385448201 +77428,5712,Criterion,1385448204 +77428,5712,postmodern,1385448218 +77428,5792,talky but with no substance,1322350702 +77428,5792,tries to be quirky,1322350633 +77428,5867,heist,1373030734 +77428,5867,soundtrack,1373030728 +77428,5902,Charlie Kaufman,1297081081 +77428,5902,clever,1297081148 +77428,5902,dark comedy,1297081052 +77428,5902,Nicolas Cage,1297081128 +77428,5902,quirky,1297081061 +77428,5902,Spike Jonze,1297081066 +77428,5971,(mostly) for kids,1296595676 +77428,6271,easygoing,1351730331 +77428,6271,filmmaking,1351730339 +77428,6271,humorous,1351730347 +77428,6279,gambling,1357065690 +77428,6279,heist,1357065693 +77428,6279,too american,1357065700 +77428,6286,amnesia,1301609886 +77428,6286,Finnish,1301609874 +77428,6288,doesn't really know if it's a teen or a crime movie,1299631699 +77428,6288,unlikely,1299632628 +77428,6322,cliched,1281400088 +77428,6322,plot twist,1281400090 +77428,6350,moralizing,1311469438 +77428,6378,corny,1357091459 +77428,6378,heist,1357091453 +77428,6433,poetic,1356105923 +77428,6433,stream-of-conciousness,1356105935 +77428,6460,Franz Kafka,1312238697 +77428,6460,Orson Welles,1312238691 +77428,6541,B-movie,1328014839 +77428,6708,the ending spoils this,1281120011 +77428,6724,con artists,1372203043 +77428,6724,Tatum O'Neal,1372203091 +77428,6780,horribly edited,1311519618 +77428,6780,not very scientific,1311521528 +77428,6780,too anecdotic,1311519584 +77428,6783,bourgeoisie,1346152296 +77428,6783,class,1346152278 +77428,6783,comedy,1346152335 +77428,6783,Jean Renoir,1346152272 +77428,6783,slapstick,1346152330 +77428,6787,conspiracy,1298597798 +77428,6787,History,1298597790 +77428,6787,Journalism,1298597785 +77428,6787,the end,1298597815 +77428,6787,thriller,1298597809 +77428,6787,Watergate,1298597793 +77428,6857,anime,1297096204 +77428,6857,stylized,1297096256 +77428,6893,english humor,1357211373 +77428,6893,heist,1357211538 +77428,6920,heist,1355845163 +77428,6920,heist scene,1355845168 +77428,6920,pale,1355845177 +77428,6920,tense,1355845173 +77428,6932,daaamn,1403209581 +77428,6932,iii. var lige ved at se den igen. troede det var ca. en okay tre-en-halve,1403209582 +77428,6932,unbelievably badly written,1340923865 +77428,6934,bad ending,1303923744 +77428,7013,adventure,1347833864 +77428,7013,dreamlike,1347833790 +77428,7013,eerie,1347833775 +77428,7013,Robert Mitchum,1347833771 +77428,7044,black comedy,1297095497 +77428,7044,David Lynch,1297095528 +77428,7044,surreal,1297095533 +77428,7068,cerebral,1323993033 +77428,7076,too long,1347317812 +77428,7123,hallucinatory,1297416862 +77428,7123,nonlinear,1297416890 +77428,7123,surreal,1297416880 +77428,7123,William S. Burroughs,1297416876 +77428,7134,Criterion,1353173884 +77428,7134,fantasy,1353173893 +77428,7134,Lars von Trier,1353173880 +77428,7134,other-wordly,1353174772 +77428,7134,surreal,1353173888 +77428,7134,Thriller,1353173903 +77428,7135,bittersweet,1352850172 +77428,7135,comedy,1352850193 +77428,7135,Criterion,1352850180 +77428,7135,François Truffaut,1352850153 +77428,7135,jovial,1352850165 +77428,7135,Marie Dubois,1352850412 +77428,7135,new wave,1352850162 +77428,7136,Criterion,1353630812 +77428,7136,Francois Truffaut,1353630825 +77428,7136,light,1355352934 +77428,7158,characters,1299370315 +77428,7158,extremely unlikely in every sense,1299370299 +77428,7158,plot,1299370013 +77428,7158,plot doesn't make any sense,1299370264 +77428,7265,boheme,1294767667 +77428,7265,incest,1294767636 +77428,7265,Paris '68,1294767624 +77428,7327,austere,1325626089 +77428,7327,enigmatic,1325626067 +77428,7327,experimental,1325626111 +77428,7327,Ingmar Bergman,1325626076 +77428,7327,sexual,1325626082 +77428,7371,art house,1297118856 +77428,7371,experimental,1297118849 +77428,7371,Lars von Trier,1297118844 +77428,7371,meta,1297118931 +77428,7371,narrated,1297118852 +77428,7371,philosophical,1297118876 +77428,7371,social commentary,1297118837 +77428,7484,cinéma vérité,1323135357 +77428,7502,World War II,1297096865 +77428,7505,black comedy,1297079967 +77428,7505,comedy,1297079957 +77428,7505,eerie,1297079977 +77428,7505,Ernst-Hugo JäregÃ¥rd,1297079949 +77428,7505,Lars von Trier,1297079930 +77428,7505,surreal,1297080240 +77428,7560,Anxiety provoking!,1380150225 +77428,7761,Francois Truffaut,1377219788 +77428,7762,british,1365447624 +77428,7932,documentary,1348929998 +77428,7936,Ingmar Bergman,1373030660 +77428,7936,Liv Ullmann,1373030668 +77428,7936,Max von Sydow,1373030677 +77428,7940,Ingmar Bergman,1341709191 +77428,8207,assasin,1377875616 +77428,8207,Southern Europe,1377875892 +77428,8207,suspense,1377875622 +77428,8340,prison,1306599272 +77428,8340,prison escape,1306599277 +77428,8684,overrated,1345509057 +77428,8724,long,1321832061 +77428,8724,reflective,1321832064 +77428,8784,cliché ending,1296514472 +77428,8807,Stoner Movie,1287683040 +77428,8862,but they're not very clever,1300320956 +77428,8862,has the usual plot twists,1300320956 +77428,8862,takes too long to get into the plot,1300319757 +77428,8914,indie,1292892500 +77428,8914,low budget,1292892235 +77428,8950,plot,1280079851 +77428,8984,not as good as the first,1328014945 +77428,8984,the plot just sucks,1328014964 +77428,25898,a little too long,1325462574 +77428,25898,bleak,1325462530 +77428,25898,Carl Theodor Dreyer,1325462535 +77428,25902,Criterion,1378159606 +77428,25902,Ingmar Bergman,1378159764 +77428,26078,Otto Preminger,1385973555 +77428,26138,Sidney Lumet,1380047819 +77428,26360,François Truffaut,1352664862 +77428,26360,jovial,1352931376 +77428,26578,Andrei Tarkovsky,1325985308 +77428,26578,cinematography,1325985356 +77428,26578,enclosed space,1325985313 +77428,26578,philosophy,1325985320 +77428,26578,solemn,1325985335 +77428,26578,the end of the world,1325985324 +77428,26796,classical music,1347033085 +77428,26939,Aki Kaurismäki,1303484594 +77428,26939,the dark comedy seems mostly just dark,1303484635 +77428,26947,ambiguous ending,1281811903 +77428,27223,Freaks,1298218546 +77428,27223,French,1298218464 +77428,27223,Great acting,1298218476 +77428,27223,Grey,1298218665 +77428,27223,Repressed sexuality,1298218489 +77428,27223,slow paced,1298218530 +77428,27223,small town,1298218460 +77428,27408,Hitman,1314454964 +77428,27408,Italy,1314454960 +77428,27506,sensous,1349363948 +77428,27674,improbable,1295379468 +77428,27674,style over substance,1295379508 +77428,27728,animation,1307124216 +77428,27728,anime,1307124205 +77428,27728,atmospheric,1307124227 +77428,27728,crime,1307124209 +77428,27728,dialouge driven,1307124233 +77428,27728,more plotline than the first,1307124265 +77428,27773,absurd,1303948122 +77428,27773,Chan-Wook Park,1303948083 +77428,27773,disturbing,1303948109 +77428,27773,Korean,1303948097 +77428,27773,stylized,1303948094 +77428,27773,tense,1303948119 +77428,27773,twist ending,1303948089 +77428,27773,vengeance,1303948105 +77428,27904,drugs,1297079566 +77428,27904,Philip K. Dick,1297079546 +77428,27904,rotoscope,1297079558 +77428,27904,sci-fi,1297079576 +77428,27904,surreal,1297079563 +77428,27904,surveillance,1297079572 +77428,27904,visually appealing,1297079590 +77428,31658,you know it,1367345925 +77428,31963,Criterion,1353630526 +77428,31963,Francois Truffaut,1353630548 +77428,32179,the plot is ridiculous,1359676248 +77428,32196,B-movie,1379354354 +77428,33072,art,1338652577 +77428,33072,Criterion,1338652610 +77428,33072,forgery,1338652570 +77428,33072,fraud,1338652568 +77428,33072,magic,1338652602 +77428,33072,Orson Welles,1311364641 +77428,33861,kitsch,1318168127 +77428,34338,they just talk about this crappy joke,1319754207 +77428,34542,mental illness,1339430448 +77428,34542,Werner Herzog,1339430457 +77428,36517,cliché,1294951521 +77428,38886,awkward,1298893290 +77428,38886,divorce,1298893316 +77428,38886,Noah Baumbach,1298893342 +77428,38886,quirky,1298893282 +77428,38886,smart comedy,1298893295 +77428,38886,unlikeable characters,1298893307 +77428,39292,cerebral,1298545600 +77428,39292,George Clooney,1298545609 +77428,39292,Historical,1298545628 +77428,39292,McCarthyism,1298545618 +77428,39292,Politics,1298545633 +77428,39292,Suspense,1298545637 +77428,39941,flashbacks,1355435154 +77428,40148,clever,1297079675 +77428,40148,cryptic,1297079642 +77428,40148,existentialism,1297079653 +77428,40148,Guy Ritchie,1297079626 +77428,40148,psychology,1297079617 +77428,40148,ray liotta,1297079633 +77428,40148,visually appealing,1297079608 +77428,41716,banal moral,1304378467 +77428,41716,doesn't make the plot believable,1304378506 +77428,41716,not really black comedy,1304377772 +77428,41716,Pierce Brosnan,1304378355 +77428,41716,the ending is the worst part,1304378538 +77428,42632,brutality,1322070324 +77428,42632,stylized,1322070333 +77428,42632,violent,1322070330 +77428,43897,airships,1340841064 +77428,43897,culture,1340841075 +77428,43897,documentary,1340841083 +77428,43897,rain forest,1340841100 +77428,43897,singular,1340841072 +77428,43897,South America,1340841094 +77428,43897,sudden outbursts of enormous beauty,1340841359 +77428,43897,Werner Herzog,1340841069 +77428,44761,classic noir in high school enviroment,1297081012 +77428,44761,clever,1292249009 +77428,44761,dialogue,1292249003 +77428,44761,drugs,1297080995 +77428,44761,genius,1297081018 +77428,44761,slang,1297080958 +77428,44761,stylized,1297080963 +77428,45440,cliche,1290718128 +77428,45440,plot,1290718133 +77428,45728,bad sequel,1294268803 +77428,46156,dark comedy,1304466676 +77428,46156,drama and action flick,1304466825 +77428,46156,drama or an action flick,1304466781 +77428,46156,too explicit moral,1304466754 +77428,46156,tries to be both black comedy,1304466825 +77428,47446,french,1293919777 +77428,47446,slow paced,1293919791 +77428,47997,dumb,1293497619 +77428,47997,puerile,1293497627 +77428,48229,Charlotte Gainsbourg,1298384660 +77428,48229,Insanity,1298384681 +77428,48229,too concrete,1298384863 +77428,48696,ending,1334097628 +77428,49961,Judi Dench,1333663590 +77428,49961,obsession,1333663608 +77428,49961,sexuality,1333663604 +77428,51255,incredibly predictable,1303145012 +77428,51255,puerile,1303145042 +77428,51540,David Fincher,1297081170 +77428,51540,detective,1297081178 +77428,51540,investigation,1297081187 +77428,51540,obsession,1297081194 +77428,51540,serial killer,1297081211 +77428,52604,twist,1297589450 +77428,52952,skinhead,1329692310 +77428,54372,atmospheric,1317253493 +77428,54745,the stuttering is mostly annoying,1298901681 +77428,55276,corporate espionage,1298193234 +77428,55276,George C,1298193240 +77428,55276,Sydney Pollack,1298193262 +77428,55276,Tilda Swin,1298193247 +77428,55290,a little to american,1330222052 +77428,55444,Anton Corbijn,1302278340 +77428,55444,Joy Division,1302278354 +77428,55444,suicide,1302278374 +77428,55820,texas,1336868551 +77428,55901,surreal,1280080126 +77428,56060,repetition,1374963500 +77428,56060,surreal,1374963387 +77428,56715,Tom Waits,1280094472 +77428,56782,Daniel Day-Lewis,1297095606 +77428,56782,great characters and acting,1297095581 +77428,56782,oil,1297095610 +77428,56782,Paul Thomas Anderson,1297095597 +77428,56782,visually appealing,1297095616 +77428,58998,actually quite good,1313358467 +77428,59387,metafilm,1281659420 +77428,59387,postmodern,1281659467 +77428,59387,stylized,1281659429 +77428,59387,visually appealing,1281659458 +77428,60333,philosophical,1339367642 +77428,60333,Werner Herzog,1339367634 +77428,60950,extremely cliché in all aspects,1294767733 +77428,60950,flat characters,1294767709 +77428,60950,plot,1294767703 +77428,61024,buddy movie,1297095998 +77428,61024,comedy,1297095992 +77428,61024,one of the best of it's genre,1297096018 +77428,61024,Stoner Movie,1297095981 +77428,61024,weed,1297095983 +77428,61240,atmospheric,1299711560 +77428,61240,bittersweet,1299715625 +77428,61240,grotesque,1299715599 +77428,61240,swedish,1299711567 +77428,61240,touching,1299711554 +77428,61240,vampires,1299715610 +77428,63072,post-apocalyptic,1280270039 +77428,63113,all action,1291032951 +77428,63113,plot,1291032961 +77428,64575,Amy Adams,1299023838 +77428,64575,based on play,1299023850 +77428,64575,Catholicism,1299023865 +77428,64575,dialogue driven,1299023895 +77428,64575,Drama,1299023810 +77428,64575,extremely well played,1299023875 +77428,64575,Meryl Streep,1299023842 +77428,64575,moral ambiguity,1299023818 +77428,64575,Philip Seymour Hoffman,1299023826 +77428,64620,Frank Langella,1298545675 +77428,64620,Journalism,1298545686 +77428,64620,Politics,1298545680 +77428,64620,Richard Nixon,1298545692 +77428,64620,Suspense,1298545698 +77428,64622,english with german accent!,1350423203 +77428,64957,Cate Blanc,1305411659 +77428,64957,cinematography,1305411632 +77428,64957,Stunning visual effects,1305411646 +77428,64957,Tilda Swinton,1305411667 +77428,64957,too sentimental,1305411685 +77428,66744,stylized,1293583236 +77428,66785,not very much of a plot,1319198894 +77428,66785,way too much action,1319198738 +77428,67193,crime,1298205211 +77428,67193,hollywood style,1298205395 +77428,67193,love story,1298205201 +77428,67193,predictably unpredictable,1298205333 +77428,68159,the ending,1302175621 +77428,68159,the whole plot is a cliché,1302175656 +77428,68237,drama,1293492638 +77428,68237,not really a thriller,1293492624 +77428,68237,plot holes,1293492704 +77428,69134,atmospheric,1328740219 +77428,69134,Christianity,1328740183 +77428,69134,cinematography,1328740204 +77428,69134,enigmatic,1328740222 +77428,69134,Lars von Trier,1328740189 +77428,69134,psychology,1328740213 +77428,69134,surreal,1328740231 +77428,69988,comedy,1306109894 +77428,69988,drama,1306109899 +77428,69988,friendship,1306109848 +77428,69988,great acting,1306109841 +77428,69988,indie,1306109812 +77428,69988,low budget,1306109877 +77428,69988,realistic,1306109835 +77428,69988,sexuality,1306109852 +77428,70927,alot of bad ones,1297106163 +77428,70927,Lars von Trier,1297106151 +77428,70927,short movies,1297106141 +77428,71429,absurd,1296683751 +77428,71429,idea is better than the actual film,1296684843 +77428,71429,slow start,1296682673 +77428,71453,Georges Franju,1361565207 +77428,71453,Paris,1361565197 +77428,71464,black comedy,1298578461 +77428,71464,black humour,1298578455 +77428,71464,Coen brothers,1298578492 +77428,71464,hilarious,1298578478 +77428,71464,Jewish,1298578473 +77428,71464,suburbia,1298578487 +77428,71464,Yiddish,1298578500 +77428,71550,predictable,1292877098 +77428,71745,bittersweet,1297081275 +77428,71745,Spike Jonze,1297081261 +77428,71745,stylized,1297081242 +77428,71745,surreal,1297081281 +77428,71745,visually,1297081249 +77428,72226,Bill Murray,1297080930 +77428,72226,bittersweet,1297080897 +77428,72226,family issues,1297080901 +77428,72226,quirky,1297080926 +77428,72226,stop motion,1297080909 +77428,72226,visually appealing,1297080921 +77428,72226,Wes Anderson,1297080890 +77428,72703,a little corny at times,1306435233 +77428,72703,Christian McKay,1306435223 +77428,72703,Orson Welles,1306435265 +77428,72703,Richard Linklater,1306435201 +77428,72703,Zac Efron,1306435238 +77428,72852,birds,1361565228 +77428,74275,comedy,1301570878 +77428,76079,visual style,1291579628 +77428,76173,a little moralistic,1329072768 +77428,77240,extremely aesthic,1322358397 +77428,77293,ridiculous,1379623742 +77428,78349,over the top,1308428035 +77428,79073,Johnny Depp,1296780319 +77428,79073,the doors,1296780327 +77428,79073,used before footage,1296780337 +77428,79357,nonlinear,1291592293 +77428,79357,plot,1291593223 +77428,79357,style over substance,1291592306 +77428,79702,based on a graphic novel,1294398638 +77428,79702,Michael Cera,1294398510 +77428,79702,monotonous,1294398478 +77428,79702,quirky,1294398522 +77428,79702,stylized,1294398495 +77428,79720,Crime,1298288191 +77428,79720,Crime Family,1298288201 +77428,79720,Guy Pearce,1298288188 +77428,80553,poorly realized film,1341698620 +77428,81591,ballet,1298322541 +77428,81591,Darren Aronofsky,1298322573 +77428,81591,eerie,1298322562 +77428,81591,horror,1294767597 +77428,81591,Natalie Portman,1298322547 +77428,81591,repressed sexuality,1298322558 +77428,81932,Christian Bale,1299009501 +77428,82459,Matt Damon,1298832036 +77428,82459,not very Coen-y,1298832344 +77428,82459,Western,1298832022 +77428,83827,brain damage,1325191986 +77428,83827,documentary,1325192011 +77428,83827,existentialism,1325192000 +77428,83827,gender identity,1325192023 +77428,84392,cliché,1306075239 +77428,84601,not original in any sense,1311431080 +77428,84601,the genre at it's worst,1311431095 +77428,85412,boring,1304033255 +77428,85412,doesn't add anything new to the genre,1304033248 +77428,85414,EVERYTHING about this movie is awful,1311863538 +77428,85414,plot makes no sense,1311863549 +77428,85414,pseudo-intelligent,1311863599 +77428,85438,Romanticism,1379941450 +77428,86142,action,1311003776 +77428,86142,feudal japan,1311003772 +77428,86142,japan,1311003766 +77428,86142,slow-paced,1311003780 +77428,86279,cinematography,1323821122 +77428,86279,documentary,1323821084 +77428,86279,eerie,1323821108 +77428,86279,meditative,1323821210 +77428,86279,phantasmagorical,1323821307 +77428,86279,surreal,1323821219 +77428,86320,beautiful,1307368173 +77428,86320,Charlotte Gainsbourg,1307368164 +77428,86320,cinematography,1307368179 +77428,86320,Drama,1307368140 +77428,86320,Lars von Trier,1307368128 +77428,86320,Magic realism,1307368150 +77428,86320,siblings,1307368131 +77428,86320,sisters,1307368135 +77428,86590,cinematography,1328116307 +77428,86590,Drama,1328116300 +77428,86590,Simon Staho,1328116297 +77428,86642,Drama,1312760883 +77428,86642,Indie,1312760870 +77428,86642,Mystery,1312760873 +77428,86642,Realist,1312760865 +77428,86882,Painfully banal,1326848233 +77428,86882,Stupid,1326848136 +77428,88129,atmospheric,1320163105 +77428,88129,Los Angeles,1334332017 +77428,88129,Synth pop,1320163116 +77428,89118,cinematography,1323905794 +77428,89118,ego,1323905820 +77428,89118,Pedro Almodovar,1323905777 +77428,89118,psychology,1323905809 +77428,89118,sexuality,1323905750 +77428,89480,Emily Browning,1357952389 +77428,89480,sexuality,1357952393 +77428,89846,chess,1319584009 +77428,89846,psychosis,1319584019 +77428,89864,Hollywood drama,1324340081 +77428,89864,predictable,1324340067 +77428,89904,the whole doesn't add up to more than it's parts,1340402383 +77428,90374,cinematography,1339845767 +77428,90374,Disturbing,1339845520 +77428,90374,Elizabeth Olsen,1339845438 +77428,90374,John Hawkes,1339845425 +77428,90374,mesmerizing,1339845827 +77428,90374,Thriller,1339845477 +77428,90439,business,1377557550 +77428,90531,frustration,1341011667 +77428,90531,self-destruction,1341011678 +77428,90746,Americanized,1330777767 +77428,90746,Repetitive,1330777774 +77428,91035,Emily Brontë,1341010278 +77428,91035,Kaya Scodelario,1341010264 +77428,91035,moors,1341010440 +77428,91035,poetic,1341010305 +77428,91035,tactile,1341010423 +77428,91529,reactionary,1343147520 +77428,92152,sexuality,1334529013 +77428,94126,cinematography,1337117630 +77428,94126,Crime,1337117601 +77428,94126,drama,1337117609 +77428,94126,Drugs,1337117591 +77428,96488,Detroit,1349364001 +77428,96488,Sixto Rodriguez,1349363991 +77428,97860,not too much of a plot,1359327387 +77428,100165,Adventure,1379354300 +77428,100165,jovial,1379354304 +77428,100165,Thor Heyerdahl,1379354279 +77428,101285,Harmony Korine,1369827682 +77428,101285,James Franco,1369827676 +77428,101285,repetition,1374963533 +77428,101285,sexual,1374963541 +77428,102684,soundtrack,1374447760 +77428,104841,a lot of really bad,1382760978 +77428,104841,alot of really good,1382760978 +77428,104841,cliche characters,1382760955 +77428,104841,sexist,1382760947 +77455,49037,Polish,1232936178 +77463,27172,cheesy,1421758641 +77463,27172,musical,1421758641 +77463,27172,religion,1421758641 +77463,86091,ballet,1420797973 +77463,86091,christmas,1420797973 +77463,86091,dance,1420797973 +77463,93191,christmas,1420152359 +77463,93191,comedy,1420152359 +77463,93191,family,1420152359 +77463,95482,disney,1423488776 +77463,95482,singing,1423488776 +77463,95482,songs,1423488776 +77503,6879,making everyone think you're innocent,1189368506 +77504,1,animation,1422605756 +77504,1,friendship,1422605756 +77504,1,toys,1422605756 +77504,2,animals,1412378107 +77504,2,based on a book,1412378113 +77504,2,magic board game,1412378138 +77504,2,monkey,1412378144 +77504,2,Robin Williams,1412378104 +77504,2,time travel,1412378117 +77504,34,adventure,1412378232 +77504,34,Animal movie,1412378228 +77504,34,animals,1412378225 +77504,34,overrated,1412378222 +77504,34,talking animals,1412378234 +77504,34,villain nonexistent or not needed for good story,1412378237 +77504,356,dense,1421026840 +77504,356,meaning of life,1421026840 +77504,356,vietnam war,1421026840 +77504,380,action,1412378695 +77504,380,Arnold Schwarzenegger,1412378656 +77504,380,espionage,1412378659 +77504,380,funny,1412378676 +77504,380,James Cameron,1412378690 +77504,380,racism,1412378661 +77504,380,ridiculous,1412378697 +77504,380,terrorism,1412378669 +77504,380,violence,1412378663 +77504,527,holocaust,1425678705 +77504,527,hope,1425678705 +77504,527,humanist,1425678705 +77504,551,Tim Burton,1413840138 +77504,595,18th century,1412378087 +77504,595,animation,1412378060 +77504,595,classic,1412378063 +77504,595,Disney animated feature,1412378066 +77504,595,humorous,1412378071 +77504,595,kids and family,1412378076 +77504,595,Oscar (Best Music - Original Score),1412378080 +77504,595,romance,1412378086 +77504,1022,2D animation,1412378182 +77504,1022,animated,1412378161 +77504,1022,children cartoon,1412378166 +77504,1022,fairy tale,1412378174 +77504,1025,Cartoon,1412377129 +77504,1025,children,1412377131 +77504,1025,classic,1412377133 +77504,1025,Disney,1412377136 +77504,1025,King Arthur,1412377113 +77504,1025,magic,1412377120 +77504,1707,Horrible Sequel,1413839998 +77504,1707,not as good as the first,1413840000 +77504,2078,bears,1412377177 +77504,2078,great soundtrack,1412377192 +77504,2087,based on a book,1412377463 +77504,2087,Peter Pan,1412377487 +77504,2087,pirates,1412377478 +77504,2087,sword fight,1412377480 +77504,2096,dragons,1412377527 +77504,2571,artificial intelligence,1430847067 +77504,2571,dystopia,1430847067 +77504,2571,sci-fi,1430847067 +77504,2761,cold war,1413840383 +77504,2761,emotional,1413840384 +77504,2761,mother-son relationship,1413840391 +77504,2761,Vin Diesel,1413840386 +77504,3489,father-son relationship,1412377874 +77504,3489,Nostalgia Critic,1412377867 +77504,3489,Steven Spielberg,1412377879 +77504,3996,atmospheric,1421028148 +77504,3996,China,1397762659 +77504,3996,visually stunning,1421028160 +77504,4366,adventure,1412377045 +77504,4366,Atlantis,1412377042 +77504,4366,Disney animated feature,1412377048 +77504,4366,steampunk,1412377037 +77504,4366,unrealistic characters,1412377058 +77504,6365,cyberpunk,1412378454 +77504,6539,adventure,1399174859 +77504,6539,Disney,1399174815 +77504,6539,funny,1399174821 +77504,6539,ghosts,1399174869 +77504,6539,Johnny Depp,1399174862 +77504,6539,pirates,1399174811 +77504,6539,thriller,1399174836 +77504,6934,apocalypse,1412378484 +77504,6934,cyberpunk,1412378481 +77504,6934,Philosophical,1412378479 +77504,6934,Romance,1412378488 +77504,6934,sequel,1412378476 +77504,6934,virtual reality,1412378486 +77504,26403,2D animation,1412378270 +77504,26403,adapted from:book,1412378267 +77504,26403,animation,1412378260 +77504,26403,dragon,1412378274 +77504,26403,swords,1412378278 +77504,27619,funny,1412377380 +77504,31658,dreamlike,1430851167 +77504,31658,fantasy world,1430851170 +77504,31658,Hayao Miyazaki,1430851165 +77504,31658,steampunk,1430851162 +77504,31658,Studio Ghibli,1430851161 +77504,31658,stylized,1430851195 +77504,31658,wizards,1430851188 +77504,31698,annoying,1413839959 +77504,31698,sequel,1413839968 +77504,31698,the dog,1413839978 +77504,33615,anthropomorphic,1412377322 +77504,33615,Dreamworks,1412377328 +77504,33615,freedom,1412377333 +77504,33615,lemurs,1412377341 +77504,33615,lions,1412377343 +77504,33615,penguins,1412377336 +77504,41569,adventure,1430850210 +77504,41569,stylized,1430850216 +77504,45074,computer animation,1412377235 +77504,45074,father-son relationship,1412377237 +77504,45074,fish out of water,1412377246 +77504,49737,archaeology,1413842097 +77504,49737,China,1413842086 +77504,49737,Hee-seon Kim,1413842092 +77504,49737,Jackie Chan,1413842082 +77504,50005,cinematography,1430849823 +77504,50601,bullying,1412378000 +77504,50601,fantasy,1412378025 +77504,50601,hurried ending,1412378022 +77504,50601,sad,1412378028 +77504,50601,teen relationships,1412377998 +77504,50601,weak directing,1412378017 +77504,55999,children,1412377965 +77504,55999,death,1412377962 +77504,55999,drama,1412377939 +77504,55999,fantasy,1412377934 +77504,55999,magic,1412377909 +77504,55999,movie to see,1412377929 +77504,55999,Natalie Portman,1412377905 +77504,55999,sad,1412377943 +77504,56171,anti-religion,1430850835 +77504,56171,fantasy world,1430850842 +77504,56171,magic,1430850838 +77504,56171,Parallel universe,1430850833 +77504,56171,steampunk,1430850826 +77504,56949,Katherine Heigl,1451230071 +77504,58154,atmospheric,1451230246 +77504,58154,historical,1451230241 +77504,58154,Natalie Portman,1451230236 +77504,59315,Robert Downey Jr.,1421027583 +77504,59315,superhero,1421027551 +77504,64997,bad plot,1413839180 +77504,64997,based on a book,1413839183 +77504,64997,easily confused with other movie(s) (title),1413839190 +77504,64997,H.G. Wells,1413839199 +77504,66097,alone in the world,1412378391 +77504,66097,based on a book,1412378373 +77504,66097,fantasy world,1412378385 +77504,66097,gothic,1412378367 +77504,66097,storytelling,1412378381 +77504,66097,Surreal,1412378358 +77504,66097,visually stunning,1412378370 +77504,66371,beautiful scenery,1445642797 +77504,66371,life & death,1445642802 +77504,71057,creepy,1399174651 +77504,71057,dark fantasy,1399174657 +77504,71057,dystopia,1399174646 +77504,71057,predictable,1399174676 +77504,71057,sci-fi,1399174689 +77504,71057,surreal,1399174677 +77504,71057,survival,1399174685 +77504,71876,biography,1421028231 +77504,72356,not a movie,1413840224 +77504,72356,short,1413840220 +77504,79242,dysfunctional family,1430847313 +77504,79242,good acting,1430847304 +77504,79242,lesbian,1430847292 +77504,79242,Mark Ruffalo,1430847318 +77504,81834,based on a book,1421028071 +77504,81834,Daniel Radcliffe,1421028090 +77504,82202,Angelina Jolie,1413839539 +77504,82202,chemistry between actors,1413839541 +77504,82202,dialogue,1413839551 +77504,82202,Italy,1413839583 +77504,82202,Johnny Depp,1413839536 +77504,82202,predictable,1413839552 +77504,82202,sexual tension,1413839575 +77504,82202,Venice,1413839589 +77504,82854,based on a book,1413839292 +77504,82854,few funny scenes,1413839286 +77504,82854,Jonathan Swift,1413839289 +77504,85397,cliche,1413839321 +77504,85397,little red riding hood,1413839350 +77504,85397,love triangle,1413839345 +77504,85397,romance,1413839337 +77504,85397,sexuality,1413839329 +77504,88345,short,1413840415 +77504,90866,visually appealing,1421028429 +77504,92944,France,1413842108 +77504,92944,Paris,1413842109 +77504,93240,dealing with death,1413840566 +77504,93240,Hollow Earth,1413840564 +77504,94780,beautiful cinematography,1412377765 +77504,94780,boring,1412377751 +77504,94780,evil queen,1412377806 +77504,94780,fairy tale,1412377803 +77504,94780,Kristen Stewart,1412377749 +77504,94780,magic,1412377782 +77504,94780,too long,1412377753 +77504,94780,twist on classic story,1412377799 +77504,94780,unlikeable characters,1412377759 +77504,94780,visually stunning,1412377789 +77504,94780,weak plot,1412377761 +77504,95309,dark humor,1451230376 +77504,95309,Keira Knightley,1451230375 +77504,95309,road trip,1451230366 +77504,95309,Steve Carell,1451230358 +77504,95309,surprisingly touching,1451230368 +77504,97936,author:Leo Tolstoy,1451230297 +77504,97936,costumes,1451230306 +77504,97936,Jude Law,1451230327 +77504,97936,kiera knightley,1451230314 +77504,97936,Russia,1451230300 +77504,100527,boring,1430847464 +77504,101864,aliens,1412376534 +77504,101864,cloning,1412376557 +77504,101864,dystopia,1412376503 +77504,101864,sentimental,1412376520 +77504,102903,audience intelligence underestimated,1413839387 +77504,102903,Jesse Eisenberg,1413839390 +77504,102903,Mark Ruffalo,1413839452 +77504,102903,Morgan Freeman,1413839380 +77504,102903,stage magic,1413839445 +77504,102903,stupid ending,1413839462 +77504,103366,Agata Buzek,1451231851 +77504,104312,bad plot,1413839070 +77504,104312,based on a book,1413839064 +77504,104312,cliche,1413839055 +77504,104312,cliche characters,1413839067 +77504,104312,magic,1413839075 +77504,104312,plot holes,1413839056 +77504,107953,audience intelligence underestimated,1413842061 +77504,107953,continuity problems,1413842063 +77504,109374,cinematography,1430849615 +77504,109374,eastern europe,1430849598 +77504,109374,funny,1430849602 +77504,109374,stylized,1430849606 +77504,109374,visually appealing,1430849594 +77504,111659,Angelina Jolie,1412377591 +77504,111659,bad acting,1412377587 +77504,111659,Disney,1412377652 +77504,111659,happy ending,1412377628 +77504,111659,visual effects,1412377605 +77504,114552,cheese,1412376643 +77504,114552,father-daughter relationship,1412376612 +77504,114552,stop-motion,1412376619 +77504,114552,trolls,1412376636 +77504,130490,Action,1430849704 +77504,134853,Pixar,1451229374 +77504,134853,psychology,1451229379 +77504,135887,banana,1451229830 +77528,537,great story,1187210467 +77528,1078,Not Woody's best,1187210594 +77528,1173,Beautiful use of color,1187210792 +77528,1209,Great spaghetti epic,1187210885 +77528,1218,Good asian violence flick,1187210953 +77528,1295,Makes you think about the light and heavy,1187210628 +77528,1298,animation,1187210280 +77528,1298,great music,1187210280 +77528,1344,scary villain,1187210377 +77528,1344,somewhat dated thriller,1187210377 +77528,2505,blah movie about snuff,1187210582 +77528,2951,spaghetti western,1187210259 +77528,3070,fun story and adventures,1187210449 +77528,3706,acting and story,1187210995 +77528,3706,Great lines,1187210995 +77528,4351,Entertaining for not asking too much of Keanu,1187210679 +77528,5225,great story,1187210537 +77528,5225,temperature raising,1187210537 +77528,5254,Does not improve on Blade,1187210604 +77528,6016,black comedy,1187210240 +77528,6016,great soundtrack,1187210240 +77528,6953,overly tangled,1187210567 +77528,6953,somewhat entertaining,1187210567 +77528,7160,Charlize nails Wuornos,1187210967 +77528,30810,Stick with Rushmore & The Tennenbaums,1187210869 +77528,48516,Good remake of the original,1187210658 +77540,110,Biography,1433456904 +77540,110,drama,1433456896 +77540,110,historical,1433456889 +77540,110,Scotland,1433456892 +77540,110,sword fight,1433456905 +77540,110,war,1433456894 +77540,253,anne rice,1433656890 +77540,253,Antonio Banderas,1433656877 +77540,253,atmospheric,1433656893 +77540,253,based on a book,1433656873 +77540,253,brad pitt,1433656875 +77540,253,cult classic,1433656885 +77540,253,fantasy,1433656887 +77540,253,gothic,1433656892 +77540,253,horror,1433656900 +77540,253,tom cruise,1433656882 +77540,253,vampires,1433656871 +77540,527,based on a true story,1433456831 +77540,527,holocaust,1433456809 +77540,527,World War II,1433456818 +77540,593,Anthony Hopkins,1433458046 +77540,593,based on a book,1433458011 +77540,593,investigation,1433458034 +77540,593,psychological,1433457996 +77540,593,psychology,1433458002 +77540,593,serial killer,1433457997 +77540,593,suspense,1433458015 +77540,1196,great soundtrack,1433437647 +77540,1196,sci-fi,1433437607 +77540,1196,space,1433437634 +77540,1196,Star Wars,1433437616 +77540,1206,psychological,1433459473 +77540,1206,psychology,1433459470 +77540,1210,great soundtrack,1433437840 +77540,1210,sci-fi,1433437688 +77540,1210,space,1433437846 +77540,1210,Star Wars,1433437843 +77540,1237,atmospheric,1433474953 +77540,1237,death,1433474945 +77540,1237,existentialism,1433474947 +77540,1237,religion,1433474951 +77540,1246,education,1433461158 +77540,1246,English literature,1433461145 +77540,1246,inspirational,1433461143 +77540,1246,philosophy,1433461139 +77540,1246,suicide,1433461151 +77540,1645,Al Pacino,1433458433 +77540,1645,lawyers,1433458448 +77540,1645,psychological,1433458440 +77540,1645,psychology,1433458458 +77540,1645,Religion,1433458442 +77540,2125,Drew Barrymore,1433656701 +77540,2125,historically inaccurate,1433656704 +77540,2125,love story,1433656695 +77540,2125,romance,1433656697 +77540,2125,royalty,1433656706 +77540,2467,based on a book,1433457911 +77540,2467,investigation,1433457916 +77540,2467,medieval,1433457918 +77540,2467,religion,1433457914 +77540,2467,Umberto Eco,1433457923 +77540,3342,drama,1433456593 +77540,3342,psychology,1433456559 +77540,3342,vietnam war,1433456547 +77540,4014,chocolate,1433656653 +77540,4014,colourful,1433656651 +77540,4014,food/cooking,1433656643 +77540,4014,france,1433656647 +77540,4014,Johnny Depp,1433656639 +77540,4014,magic realism,1433656658 +77540,4878,philosophy,1433456161 +77540,4878,psychology,1433456157 +77540,4878,sci-fi,1433456167 +77540,4878,time travel,1433456155 +77540,4993,adapted from:book,1433457576 +77540,4993,Adventure,1433457068 +77540,4993,based on book,1433457081 +77540,4993,fantasy world,1433457071 +77540,4993,great soundtrack,1433457064 +77540,4993,mythology,1433457092 +77540,4993,Tolkein,1433457096 +77540,4993,tolkien,1433457065 +77540,5791,Amazing Cinematography,1433657430 +77540,5791,antonio banderas,1433657444 +77540,5791,artist,1433657421 +77540,5791,Biography,1433657397 +77540,5791,Frida Kahlo,1433657440 +77540,5791,historical,1433657401 +77540,5791,history,1433657449 +77540,5791,Latin America,1433657410 +77540,5791,mexico,1433657400 +77540,5791,photograph,1433657433 +77540,5791,romance,1433657414 +77540,5791,spain,1433657424 +77540,5952,Adventure,1433457024 +77540,5952,based on a book,1433457030 +77540,5952,fantasy,1433457019 +77540,5952,great soundtrack,1433457044 +77540,5952,mythology,1433457041 +77540,5952,tolkien,1433457033 +77540,5952,war,1433457027 +77540,6708,crime,1433458307 +77540,6708,obsessive compulsive disorder,1433458309 +77540,6807,classic,1433458893 +77540,6807,comedy,1433458890 +77540,6807,controversial,1433458888 +77540,6807,Monty Python,1433458882 +77540,6807,Philosophy,1433458886 +77540,7147,based on a book,1433455816 +77540,7147,surreal,1433455810 +77540,7147,surrealism,1433455818 +77540,7153,Adventure,1433456988 +77540,7153,epic adventure,1433456998 +77540,7153,high fantasy,1433456991 +77540,7153,mystic warriors,1433456995 +77540,7153,mythology,1433456976 +77540,7153,Tolkien,1433456977 +77540,7153,war,1433456983 +77540,7320,Dance,1436988609 +77540,7320,Latin America,1436988618 +77540,7320,latin music,1436988614 +77540,8533,beautiful scenery,1433657519 +77540,8533,memories,1433657510 +77540,8533,Rachel McAdams,1433657504 +77540,8533,romance,1433657500 +77540,8533,romantic,1433657530 +77540,8533,Ryan Gosling,1433657502 +77540,8533,sentimental,1433657506 +77540,27706,Adventure,1433457860 +77540,27706,based on a book,1433457857 +77540,27706,dark comedy,1433457868 +77540,27706,narrated,1433457861 +77540,46578,dark comedy,1433461244 +77540,46578,family,1433461245 +77540,46578,inspirational,1433461250 +77540,46578,philosophy,1433461263 +77540,46578,road movie,1433461255 +77540,46578,satire,1433461253 +77540,48394,fantasy,1433455481 +77540,48394,psychology,1433455483 +77540,48394,Spanish Civil War,1433455474 +77540,48394,surreal,1433455519 +77540,50068,japan,1433456754 +77540,50068,war,1433456772 +77540,50068,World War II,1433456752 +77540,63033,based on a book,1433461027 +77540,63033,blindness,1433461033 +77540,63033,epidemic,1433461035 +77540,63033,psychological,1433461023 +77540,63033,Saramago,1433461042 +77540,63082,based on a book,1433455742 +77540,63082,emotional,1433455753 +77540,63082,India,1433455726 +77540,64957,drama,1433455785 +77540,64957,life & death,1433455771 +77540,64957,philosophical,1433455768 +77540,69134,atmospheric,1433459230 +77540,69134,beautiful scenery,1433459250 +77540,69134,cinematography,1433459241 +77540,69134,Lars von Trier,1433459192 +77540,69134,psychological,1433459237 +77540,69134,psychology,1433459234 +77540,69134,tension,1433459239 +77540,73319,Amy Adams,1436988328 +77540,73319,Ireland,1436988331 +77540,74624,historical,1433461122 +77540,74624,philosophy,1433461107 +77540,74624,rationality,1433461109 +77540,74624,religion,1433461120 +77540,80969,based on a book,1433563178 +77540,80969,cinematography,1433563250 +77540,80969,depressing,1433563185 +77540,80969,emotional,1433563196 +77540,80969,kazuo ishiguro,1433563271 +77540,80969,mortality,1433563218 +77540,80969,philosophy,1433563338 +77540,80969,psychology,1433563312 +77540,88179,Anne Hathaway,1436987980 +77540,88179,emotional,1436987995 +77540,88179,friendship,1436988010 +77540,88179,romance,1436987998 +77540,90376,disturbing,1433460578 +77540,90376,family,1433460586 +77540,90376,psychological,1433460575 +77540,90430,escalating tension,1433563983 +77540,90430,good acting,1433563968 +77540,90430,psychology,1433563948 +77540,90430,Roman Polanski,1433563933 +77540,90430,social commentary,1433563962 +77540,97752,multiple roles,1433456303 +77540,97752,philosophy,1433456279 +77540,97752,sci-fi,1433456265 +77540,97921,humorous,1433657346 +77540,97921,mental illness,1433657349 +77540,97921,romance,1433657343 +77540,97938,religion,1433455606 +77540,97938,Survival,1433455667 +77540,98809,adventure,1433457106 +77540,98809,based on a book,1433457124 +77540,98809,fantasy world,1433457110 +77540,98809,Tolkien,1433457108 +77540,103059,biographical,1433460924 +77540,103059,drama,1433460925 +77540,103059,Eichmann in Jerusalem: A Report on the Banality of Evil,1433460929 +77540,103059,Hannah Arendt,1433460927 +77540,103059,Holocaust,1433460928 +77540,103059,philosophy,1433460931 +77540,104879,acting,1433657606 +77540,104879,atmospheric,1433657619 +77540,104879,great ending,1433657621 +77540,104879,Hugh Jackman,1433657612 +77540,104879,Jake Gyllenhaal,1433657614 +77540,104879,photography,1433657608 +77540,104879,thriller,1433657617 +77540,106489,adventure,1433457172 +77540,106489,Tolkien,1433457168 +77540,109374,cinematography,1433456476 +77540,109374,funny,1433456465 +77540,109374,visually appealing,1433456473 +77540,118702,survival,1433554257 +77540,118702,war,1433554260 +77540,122882,action,1433442122 +77540,122882,post-apocalyptic,1433442122 +77540,122882,sci-fi,1433442122 +77540,127294,brazilian movie,1434257805 +77540,127294,criminal,1434257805 +77540,127294,social behavior,1434257805 +77575,356,awarded oscar,1425801573 +77575,356,boxoffice success,1425801573 +77575,356,mainstream,1425801573 +77575,59369,action,1425359301 +77575,59369,agent,1425359289 +77575,59369,espionage,1425359298 +77575,59369,Liam Neeson,1425359333 +77575,59369,thriller,1425359338 +77619,31685,Funny as hell,1317179463 +77619,31685,original,1317179463 +77622,94325,Scenic,1430223465 +77622,94325,Simple,1430223470 +77622,94325,Sweet,1430223468 +77622,130634,car chase,1430223402 +77622,130634,drama,1430223402 +77622,130634,hot actor,1430223402 +77691,144138,Musical,1444619033 +77710,2890,George Clooney,1167225492 +77710,49278,Denzel Washington,1166185808 +77723,163,Antonio Banderas!,1279377310 +77754,296,quirky,1137656323 +77754,296,Tarantino,1137656328 +77801,47610,Edward Norton,1242106063 +77801,47610,happy ending,1242106097 +77801,47610,romance,1242106073 +77801,47610,sex scene,1242106075 +77801,47610,stage magic,1242106080 +77801,47610,surprise ending,1242106085 +77801,47610,twist ending,1242106077 +77812,260,"sci-fi, space",1439801011 +77818,230,Horror,1188168485 +77818,277,family,1188168459 +77818,277,holiday,1188168459 +77818,2080,kids romantic comedy cartoon,1188168433 +77818,5377,romantic comedy,1188168512 +77818,7147,romance,1188168520 +77838,232,Ang Lee,1300362293 +77838,232,cooking,1300362308 +77838,232,food/cooking,1300362303 +77838,318,atmospheric,1291302797 +77838,318,friendship,1291302729 +77838,356,bittersweet,1291478409 +77838,356,comedy,1291478430 +77838,356,inspirational,1291478433 +77838,356,Oscar (Best Picture),1291478415 +77838,356,Tom Hanks,1291478418 +77838,838,Jane Austen,1292538880 +77838,838,Romance,1292538893 +77838,902,1960s,1292538971 +77838,1296,elegant,1292538931 +77838,1296,OPPOSITES ATTRACT,1292538937 +77838,2541,R,1296329016 +77838,3198,awful music,1291476144 +77838,3198,Dustin Hoffman,1291476158 +77838,3198,Franklin J. Schaffner,1291476241 +77838,3198,Steve McQueen,1291476160 +77838,3578,history,1291477299 +77838,3578,Oscar (Best Actor),1291477309 +77838,3578,Russell Crowe,1291477302 +77838,3578,violence,1291477316 +77838,3578,violent,1291477321 +77838,3910,great music,1300892403 +77838,3910,tearjerking,1300892406 +77838,4022,busom buddy with a volleyball,1291478079 +77838,4022,must see,1291478084 +77838,4022,philosophy,1291478096 +77838,4022,SURVIVAL,1291478067 +77838,4022,Tom Hanks,1291478064 +77838,4848,dark,1291477254 +77838,4848,disturbing,1291477273 +77838,4848,lesbian,1291477251 +77838,4848,stylized,1291477280 +77838,4848,surrealism,1291477287 +77838,4973,beautifully filmed,1291477799 +77838,4973,great soundtrack,1291477817 +77838,4973,idealism,1291477821 +77838,4973,inspirational,1291477817 +77838,4973,notable soundtrack,1291477807 +77838,5066,corny,1294611619 +77838,5066,Romance,1294611626 +77838,5066,sweet and romantic,1294611612 +77838,5066,weepy,1294611645 +77838,5989,feel good movie,1291478113 +77838,5989,Leonardo DiCaprio,1291478103 +77838,5989,Tom Hanks,1291478108 +77838,5989,twists & turns,1291478110 +77838,5995,classical music,1291476984 +77838,6947,Russell Crowe,1291477181 +77838,7090,atmospheric,1304723189 +77838,7090,Chinese,1304723193 +77838,7090,Epic,1304723198 +77838,7090,martial arts,1304723187 +77838,7090,visually appealing,1304723184 +77838,7320,Dance,1291478394 +77838,7438,atmospheric,1297857855 +77838,7438,Quentin Tarantino,1297857852 +77838,7438,stylized,1297857860 +77838,7579,Jane Austen,1293749828 +77838,7579,What's with the American accents???,1293749824 +77838,7981,foreign language,1299684680 +77838,8970,drama,1294611097 +77838,8970,Heartwarming,1294611091 +77838,8970,Johnny Depp,1300993319 +77838,8970,Peter Pan,1294611061 +77838,9010,escapist ending,1291478780 +77838,9010,fantastical imagery,1291478776 +77838,9010,Marion Cotillard,1291478790 +77838,40629,18th century,1291478256 +77838,40629,England,1291478268 +77838,40629,great soundtrack,1291478293 +77838,40629,Jane Austen,1291478272 +77838,40629,Keira Knightley,1291478245 +77838,40629,love,1291478276 +77838,40629,romance,1291478252 +77838,40629,scenery,1291478333 +77838,45447,Audrey Tautou,1291477466 +77838,45447,book is better,1291477473 +77838,45447,Tom Hanks,1291477462 +77838,45720,Anne Hathaway,1291478915 +77838,45720,fashion,1291478918 +77838,45720,Meryl Streep,1291478907 +77838,46578,dark comedy,1291478833 +77838,46578,funny,1291478829 +77838,46578,satire,1291478809 +77838,46723,brilliant,1300892491 +77838,46723,multiple storylines,1300892470 +77838,46723,Nudity (Full Frontal - Notable),1300892478 +77838,46723,Nudity (Full Frontal),1300892480 +77838,46723,R,1300892484 +77838,46723,social commentary,1300892473 +77838,51834,Jane Austen,1292538858 +77838,51834,romance,1292538861 +77838,53123,musical,1299143307 +77838,53123,Oscar (Best Music - Original Song),1299143310 +77838,53123,wired 50 greatest soundtracks,1299143316 +77838,54190,Beatles,1291478721 +77838,54190,Beatles soundtrack,1291478727 +77838,54190,The Beatles,1291478688 +77838,55052,emotional,1291479065 +77838,55052,great soundtrack,1294010237 +77838,55052,heartbreaking,1294010228 +77838,55052,Joe Wright,1291479204 +77838,55052,Keira Knightley,1291479058 +77838,55052,romance,1291479092 +77838,55052,Sexualized violence,1294010217 +77838,55247,atmospheric,1297436995 +77838,55247,self discovery,1297436998 +77838,55814,beautiful,1297437167 +77838,55814,foreign language,1297437160 +77838,55814,great cinematography,1297437170 +77838,55814,paralysis,1297437164 +77838,55814,touching,1297437172 +77838,55820,suspense,1300892632 +77838,55820,twist ending,1300892625 +77838,56757,great cinematography,1322330285 +77838,56757,Johnny Depp,1322330281 +77838,56757,Musical,1322330291 +77838,56949,romantic comedy,1292618139 +77838,58154,historical,1294009533 +77838,58154,Natalie Portman,1294009527 +77838,58154,Scarlett Johansson,1294009530 +77838,60069,artificial intelligence,1291477991 +77838,60069,Post apocalyptic,1291477985 +77838,60069,romance,1291477965 +77838,62293,18th century,1294009681 +77838,62293,British,1294009680 +77838,62293,Keira Knightley,1294009675 +77838,63082,violence,1291314168 +77838,63992,based on a book,1297692986 +77838,63992,good soundtrack,1297692974 +77838,63992,visually appealing,1297692996 +77838,64701,Elsa Zylberstein,1297422329 +77838,64701,great acting,1297422282 +77838,64701,hollywood ending,1297422333 +77838,64701,perfect script,1297422287 +77838,64957,Brad Pitt,1291477897 +77838,64957,musical,1291477782 +77838,64957,touching,1291477894 +77838,68073,British,1291478608 +77838,68073,funny,1291478610 +77838,68073,Music,1291478663 +77838,68073,rock and roll,1291478595 +77838,68954,dreams,1291478051 +77838,68954,friendship,1291478054 +77838,68954,predictable,1291478043 +77838,68954,touching,1291478049 +77838,69122,disappointing,1295876000 +77838,69644,2D characters,1305631959 +77838,69644,lacks logic,1305631923 +77838,69644,scenery,1305631930 +77838,69644,sequel,1305631964 +77838,69644,Simon Pegg,1305631955 +77838,69757,music,1299143345 +77838,69757,overrated,1299143338 +77838,70521,distasteful,1300893279 +77838,72407,awesome soundtrack,1297693052 +77838,72407,bad acting,1297693042 +77838,72407,bad cgi,1297693279 +77838,72407,dumb,1297693277 +77838,72407,so stupid,1297693046 +77838,72998,beautiful scenery,1291478033 +77838,72998,futuristic,1291478021 +77838,72998,predictable,1291478023 +77838,74508,Jane Austen,1292538816 +77838,74789,Johnny Depp,1300892302 +77838,74789,visually appealing,1300892291 +77838,75341,heavy handed ending,1291478157 +77838,75341,philosophical,1291478225 +77838,75341,Robert Pattinson,1291478164 +77838,76077,acting,1295875978 +77838,76077,few nice laughs,1295875985 +77838,76077,seen it before,1295875971 +77838,76093,dragons,1291478012 +77838,76093,fantasy,1300892719 +77838,76093,friendship,1300892722 +77838,76093,predictable,1291478002 +77838,77307,abstract,1311106596 +77838,77307,Christos Stergioglou,1305751012 +77838,77307,disturbing,1305750892 +77838,77307,incest,1305742585 +77838,78574,boring,1297028795 +77838,78574,cultural authenticity,1297028800 +77838,78574,not believable,1297028809 +77838,78574,thin story,1297028815 +77838,78772,awesome soundtrack,1297693038 +77838,78772,dumb,1297693034 +77838,80463,dark comedy,1297692887 +77838,80463,nerds,1297692944 +77838,80463,writing,1297692878 +77838,80549,funny,1310750074 +77838,80693,funny,1297692031 +77838,80693,obvious,1297692037 +77838,80969,Confusing if you haven't read the book,1297436948 +77838,81564,anti-hero,1305649249 +77838,81564,funny,1305649245 +77838,81591,alter ego,1300892551 +77838,81591,atmospheric,1300892543 +77838,81591,creepy,1293749190 +77838,81591,dance,1293749198 +77838,81591,dark,1311106647 +77838,81591,madness,1293749192 +77838,81591,Natalie Portman,1293749169 +77838,81591,Oscar (Best Actress),1311106653 +77838,81591,sex,1311106634 +77838,81788,good ending,1299684031 +77838,81788,Russell Crowe,1299684029 +77838,81834,boring,1291302352 +77838,81834,Daniel Radcliffe,1291302362 +77838,81834,Emma Watson,1291302371 +77838,81845,Colin Firth,1296213516 +77838,81845,Helena Bonham Carter,1297028906 +77838,81845,therapy,1297028917 +77838,81847,singing,1300892680 +77838,81949,Elijah Wood,1306312146 +77838,82167,female nudity,1295721057 +77838,82767,Nicole Kidman,1297028987 +77838,83349,Cameron Diaz,1300289500 +77838,83349,parody,1300289504 +77838,84954,Emily Blunt,1305322967 +77838,85438,beautiful scenery,1304724067 +77838,85438,beautifully filmed,1304724071 +77838,86190,great soundtrack,1322338382 +77838,86190,plot holes,1322338388 +77838,86190,The Chemical Brothers,1322338378 +77838,86298,music,1305318707 +77838,86548,animal abuse,1322329826 +77838,86548,Reese Witherspoon,1322329820 +77838,86548,Robert Pattinson,1322329818 +77838,86548,romance,1322329822 +77838,88163,adultery,1322329729 +77838,88163,Emma Stone,1322329709 +77838,88163,love,1322329718 +77838,88163,PG-13,1322329738 +77838,106487,acting,1386173391 +77838,106487,excellent script,1386173401 +77838,106487,Jennifer Lawrence,1386173396 +77841,163,Steve Buscemi,1328223374 +77841,356,Gary Sinise,1328304045 +77841,464,Lance Henriksen,1319483958 +77841,480,Jeff Goldblum,1328396279 +77841,891,Donald Pleasence,1328325617 +77841,891,Paul Rudd,1328325604 +77841,1127,Michael Biehn,1328152794 +77841,1127,Underrated,1328152815 +77841,1128,creepy,1319653553 +77841,1128,Hal Holbrook,1319653559 +77841,1200,ensemble cast,1328153256 +77841,1200,James Cameron,1328153266 +77841,1222,anti-war,1328304858 +77841,1222,R. Lee Ermey,1328304844 +77841,1320,David Fincher,1328153303 +77841,1552,Steve Buscemi,1328196765 +77841,1562,Arnold Schwarzenegger,1328154742 +77841,1562,franchise killer,1328154735 +77841,1562,Uma Thurman,1328154749 +77841,1673,Burt Reynolds,1328156070 +77841,1673,ensemble cast,1328156049 +77841,1673,John C. Reilly,1328156062 +77841,1690,franchise killer,1328153243 +77841,1690,Ron Perlman,1328153229 +77841,1732,classic,1328155275 +77841,1732,great soundtrack,1328155267 +77841,1732,Jeff Bridges,1328155249 +77841,1732,John Goodman,1328155258 +77841,1772,bad idea,1319484518 +77841,1970,best of the franchise,1319485407 +77841,2413,DVD:alternate endings,1328195924 +77841,2413,Tim Curry,1328195916 +77841,2716,Bill Murray,1328311126 +77841,2716,classic,1328311126 +77841,2791,Leslie Nielsen,1328153069 +77841,2995,Geoffrey Rush,1328327672 +77841,3147,Michael Clarke Duncan,1328316511 +77841,3147,Sam Rockwell,1328316495 +77841,3264,Paul Reubens,1328156778 +77841,3275,Norman Reedus,1328156140 +77841,3275,Sean Patrick Flanery,1328156148 +77841,3275,Willem Dafoe,1328156154 +77841,3676,weird,1319485568 +77841,4006,Michael Bay free,1319484271 +77841,4876,characters,1319653373 +77841,4876,ghosts,1319653367 +77841,4876,Matthew Lillard,1319653351 +77841,4876,stupid,1319653341 +77841,4876,Tony Shalhoub,1319653358 +77841,5254,Ron Perlman,1328155780 +77841,5294,Bill Paxton,1319485541 +77841,5294,directorial debut,1319485533 +77841,5294,one of the greatest overlooked films,1328304189 +77841,5294,original,1319485556 +77841,5294,Powers Boothe,1328304228 +77841,6157,Colin Farrell,1328209795 +77841,6323,Alfred Molina,1328328333 +77841,6323,John Hawkes,1328328333 +77841,6755,Bruce Campbell,1319652524 +77841,6755,Ossie Davis,1319652531 +77841,6755,Underrated,1319652546 +77841,7360,Ving Rhames,1319483208 +77841,7361,Mark Ruffalo,1328286706 +77841,7361,Tom Wilkinson,1328286714 +77841,7373,Ron Perlman,1328326692 +77841,7438,David Carradine,1328398736 +77841,8501,Rutger Hauer,1328327023 +77841,8641,cameos,1328153796 +77841,8641,hillarious,1328153774 +77841,8641,Steve Carell,1328153788 +77841,8810,disappointing,1319483784 +77841,8810,dull,1319483799 +77841,8810,Lance Henriksen,1319483777 +77841,8907,generic,1319653590 +77841,27706,dark comedy,1319484175 +77841,31424,so bad it's good,1328153445 +77841,31424,stupid,1328153453 +77841,32019,The Rock,1328154851 +77841,33004,Sam Rockwell,1328327088 +77841,33085,remake,1328153734 +77841,34323,Best of 2005,1328223866 +77841,34323,Bill Moseley,1328223849 +77841,34323,William Forsythe,1328223860 +77841,36401,Heath Ledger,1328156694 +77841,36401,interesting idea had great potential,1328156703 +77841,36401,Terry Gilliam,1328156686 +77841,38061,funny,1319482526 +77841,38061,Robert Downey Jr.,1319482512 +77841,45431,generic,1319652591 +77841,45431,uninspired,1319652584 +77841,45517,Paul Newman,1319483289 +77841,47997,Luke Wilson,1328328412 +77841,47997,Underrated,1328328403 +77841,48516,Mark Wahlberg,1328223104 +77841,48516,twist ending,1328223114 +77841,52281,Death Proof,1328151477 +77841,52281,fake trailers,1319484349 +77841,52281,Kurt Russell,1319484342 +77841,52281,planet terror,1319484329 +77841,52722,emo peter parker,1319483551 +77841,52722,rushed,1319483570 +77841,53000,Jeremy Renner,1316998444 +77841,53121,Dreamworks,1319652508 +77841,53519,Kurt Russell,1319651711 +77841,53519,too long,1319651725 +77841,54001,Gary Oldman,1328326200 +77841,54001,Imelda Staunton,1328326210 +77841,54001,too short,1328326219 +77841,54785,poorly executed,1328325557 +77841,54785,Rob Zombie,1328325528 +77841,54910,bad final act,1328155039 +77841,54910,mockumentary,1328155021 +77841,54910,nathan baesel,1328155013 +77841,54995,Michael Biehn,1319652419 +77841,54995,over the top,1319652430 +77841,54997,Ben Foster,1319483089 +77841,54997,must see,1319483107 +77841,54997,western,1319483096 +77841,57640,improved sequel,1328326714 +77841,57640,Ron Perlman,1328326704 +77841,57669,ambiguous ending,1319483898 +77841,57669,Colin Farrell,1319483876 +77841,57669,hillarious,1319483845 +77841,57669,midgets,1319483850 +77841,57669,Ralph Fiennes,1319483881 +77841,58559,Aaron Eckhart,1328209971 +77841,58559,ensemble cast,1328209949 +77841,58559,Gary Oldman,1328209971 +77841,58559,Heath Ledger,1328209956 +77841,58998,ensemble cast,1319484597 +77841,58998,Paul Rudd,1319484591 +77841,60037,entertaining for the wrong reasons,1328325891 +77841,60037,John Leguizamo,1328325859 +77841,60037,killer wind,1328325846 +77841,60037,Mark Wahlberg,1328325846 +77841,60037,weak writing,1328325879 +77841,60037,Zooey Deschanel,1328325867 +77841,60074,Jason Bateman,1319485280 +77841,60074,plot twist,1319485273 +77841,60074,Will Smith,1319485285 +77841,60684,Jackie Earle Haley,1319483419 +77841,60684,Jeffrey Dean Morgan,1319483428 +77841,60684,Malin Akerman,1319483487 +77841,60684,Matthew Goode,1319483494 +77841,60684,Underrated,1319483408 +77841,61132,fake trailers,1319484681 +77841,61132,Robert Downey Jr.,1319484667 +77841,61323,Brad Pitt,1319483711 +77841,61323,ensemble cast,1319483721 +77841,61323,J.K. Simmons,1319483705 +77841,61678,Danny McBride,1328303780 +77841,61678,Underrated,1328303788 +77841,67087,J.K. Simmons,1328328119 +77841,67087,Jason Segel,1328328132 +77841,67087,Paul Rudd,1328328132 +77841,68157,Christoph Waltz,1328329406 +77841,68157,Michael Fassbender,1328329406 +77841,68237,one man show,1319484629 +77841,68237,Sam Rockwell,1319484619 +77841,68319,Liev Schreiber,1319652269 +77841,68319,ruined deadpool,1319652278 +77841,68319,Ryan Reynolds,1319652296 +77841,68319,stupid,1328151881 +77841,69122,Ed Helms,1328325779 +77841,69122,overrated,1328325785 +77841,69122,Zach Galifianakis,1328325773 +77841,69481,intense,1319485367 +77841,69481,Jeremy Renner,1319485359 +77841,69844,Jim Broadbent,1328326186 +77841,69844,Michael Gambon,1328326186 +77841,69951,Christopher Plummer,1328328521 +77841,69951,Heath Ledger,1328328521 +77841,69951,Tom Waits,1328328521 +77841,71057,beautiful,1328152691 +77841,71057,dull,1328152699 +77841,71535,Bill Murray,1319484135 +77841,71535,Jesse Eisenberg,1319484141 +77841,71732,Dominic Monaghan,1328328183 +77841,71732,overlooked,1328328191 +77841,71732,Ron Perlman,1328328183 +77841,72165,John C Reilly,1328195322 +77841,72165,Josh Hutcherson,1328195335 +77841,72171,Michael Jai White,1328155632 +77841,72171,parody,1328155632 +77841,72226,Bill Murray,1328293261 +77841,72226,George Clooney,1328293261 +77841,72226,Wes Anderson,1328293261 +77841,72226,Willem Dafoe,1328293261 +77841,72378,disaster,1316998388 +77841,72998,CGI,1328154252 +77841,72998,overrated,1328154237 +77841,73017,dialogue,1319484018 +77841,73017,Jude Law,1319484032 +77841,73017,Robert Downey Jr.,1319484024 +77841,73017,supporting characters,1319484038 +77841,73321,bad ending,1328156097 +77841,73321,Gary Oldman,1328156104 +77841,74458,Mark Ruffalo,1319484538 +77841,74458,twist ending,1319484550 +77841,76251,Chloe Moretz,1319485071 +77841,76251,great soundtrack,1319485049 +77841,76251,Nicolas Cage,1319485055 +77841,77191,bad remake,1328218967 +77841,77191,Chris Rock,1328218961 +77841,77191,Danny Glover,1328218943 +77841,77191,Martin Lawrence,1328218961 +77841,77191,Peter Dinklage,1328218943 +77841,77561,Sam Rockwell,1328391499 +77841,77561,Wasted villain,1328391506 +77841,78499,pixar,1319484708 +77841,78499,tear jerker,1319484694 +77841,78499,visually appealing,1319484705 +77841,79132,Joseph Gordon-Levitt,1328328812 +77841,79132,Leonardo DiCaprio,1328328812 +77841,79132,Michael Caine,1328328819 +77841,79132,Tom Hardy,1328328812 +77841,79428,Paul Rudd,1328224417 +77841,79428,Steve Carell,1328224407 +77841,79428,Zach Galifianakis,1328224417 +77841,79702,awesome soundtrack,1319653115 +77841,79702,fight scenes,1319653125 +77841,79702,Underrated,1319653091 +77841,79702,video games,1319653099 +77841,79897,overlooked performances,1328308902 +77841,79897,Robert Duvall,1328308911 +77841,80463,Armie Hammer,1319485239 +77841,80463,Jesse Eisenberg,1319485233 +77841,80463,trent reznor,1319485226 +77841,81591,lesbians,1319485626 +77841,81845,Colin Firth,1319651808 +77841,81845,overrated,1328151360 +77841,81932,Christian Bale,1328295572 +77841,81932,ensemble cast,1328295581 +77841,82459,beautiful,1319653883 +77841,82459,Jeff Bridges,1319653883 +77841,82459,Matt Damon,1319653883 +77841,83613,Daniel Craig,1328197364 +77841,83613,disappointing,1328197377 +77841,83613,Sam Rockwell,1328197370 +77841,86833,Kristen Wiig,1328156517 +77841,86833,Melissa McCarthy,1328156505 +77841,87304,Christopher Plummer,1328154975 +77841,87869,Charlie Day,1328327419 +77841,87869,Colin Farrell,1328327407 +77841,87869,Jason Bateman,1328327398 +77841,88125,Alan Rickman,1328326092 +77841,88125,end of a series,1328326120 +77841,88125,Ralph Fiennes,1328326098 +77841,88129,Albert Brooks,1328284512 +77841,88129,best of 2011,1328284526 +77841,88129,great soundtrack,1328284541 +77841,88129,Ryan Gosling,1328284502 +77841,88812,Aziz Ansari,1328152424 +77841,88812,disappointing,1328152412 +77841,89030,Colin Farrell,1328304621 +77841,89030,David Tennant,1328304613 +77841,89281,best worst movie,1328155481 +77841,89281,so bad it's awesome,1328155470 +77841,89470,great soundtrack,1328197000 +77841,89470,Matt Damon,1328197007 +77841,89470,realistic,1328196993 +77841,89804,Paul Giamatti,1328328388 +77841,89804,Phillip Seymour Hoffman,1328328388 +77841,89804,Ryan Gosling,1328328388 +77841,89864,Joseph Gordon-Levitt,1328152520 +77841,89864,touching,1328152529 +77841,90866,Ben Kingsley,1328327828 +77841,90866,Martin Scorsese,1328327850 +77841,90866,Sacha Baron Cohen,1328327839 +77841,91658,Rooney Mara,1328151064 +77841,91658,Stellan Skarsgard,1328151064 +77841,92192,hillarious,1328153961 +77848,260,action,1432746356 +77848,260,aliens,1432746452 +77848,260,sci-fi,1432746341 +77848,260,space travel,1432746393 +77848,260,war,1432746380 +77848,7153,Adventure,1432746561 +77848,7153,fantasy,1432746524 +77848,7153,war,1432746529 +77856,260,sci-fi,1436053461 +77856,260,space adventure,1436053477 +77903,260,Not my thing,1430653671 +77904,260,action,1434118493 +77904,260,romance,1434118504 +77904,260,sci-fi,1434118508 +77905,223,New Jersey,1245021473 +77905,314,ancestors,1245006445 +77905,314,child's wisdom,1245006568 +77905,314,family,1245006478 +77905,314,heritage,1245006474 +77905,314,Irish,1245006421 +77905,314,legends,1245006537 +77905,314,mythology,1245006434 +77905,314,seals,1245006711 +77905,314,selkies,1245006515 +77905,314,simple living,1245006491 +77905,314,wisdom,1245006456 +77905,674,bizarre,1245020472 +77905,674,campy,1245020374 +77905,674,Duran Duran,1245020385 +77905,674,funny,1245020402 +77905,674,ridiculous,1245020447 +77905,778,Scotland,1245011350 +77905,778,Scottish,1245011340 +77905,945,ballroom dancing,1245013995 +77905,945,Hollywood Classic,1245013981 +77905,1032,based on a book,1245041360 +77905,1032,classic,1245041341 +77905,1032,Disney,1245041295 +77905,1032,Lewis Carroll,1245041301 +77905,1032,the book was better,1245041316 +77905,1088,dance,1245014262 +77905,1206,the book was better,1245011381 +77905,1225,biographical,1258655405 +77905,1225,genius,1258655398 +77905,1225,historical,1258655416 +77905,1225,music,1258655396 +77905,1277,clever,1245011463 +77905,1277,French,1245011440 +77905,1277,romance,1245011477 +77905,1277,witty,1245011459 +77905,1279,multilingual,1245007719 +77905,1279,multiple locations,1245007754 +77905,1449,Christopher Guest,1245040820 +77905,1449,community theater,1245040800 +77905,1449,mockumentary,1245040832 +77905,1449,satirical,1245040843 +77905,1639,bisexuality,1245021382 +77905,2083,Jim Henson,1245041241 +77905,2083,muppets,1245041232 +77905,2106,inspiring,1245014060 +77905,2106,resistance movement,1245014093 +77905,2106,swing dancing,1245014038 +77905,2106,World War II,1245014107 +77905,2106,youth,1245014075 +77905,2336,period dance scene,1245013361 +77905,2337,glam,1245013839 +77905,2671,dumb chick flick,1245012162 +77905,2858,thought-provoking,1245012013 +77905,3396,funny,1245041158 +77905,3396,Jim Henson,1245041143 +77905,3396,Kermit the Frog,1245041165 +77905,3396,muppets,1245041147 +77905,3396,The Rainbow Connection,1245041180 +77905,3397,funny,1245041111 +77905,3397,Jim Henson,1245041095 +77905,3397,muppets,1245041100 +77905,3398,Jim Henson,1245041033 +77905,3398,muppets,1245041039 +77905,3408,environmental,1245014395 +77905,3408,environmental justice,1245014411 +77905,3408,strong women,1245014422 +77905,3786,funny,1245019930 +77905,3786,satirical,1245019914 +77905,3949,cinematography,1245011269 +77905,3949,depressing without being uplifting,1245011295 +77905,3949,incredibly depressing,1245011271 +77905,3967,dance,1245012407 +77905,3967,funny,1245012392 +77905,3967,good soundtrack,1245012443 +77905,3967,heartwarming,1245012381 +77905,3967,homophobia,1245012369 +77905,3967,triumphant,1245012356 +77905,3967,uplifting,1245012420 +77905,4014,Juliette Binoche,1245008008 +77905,4027,American roots music,1245020814 +77905,4027,bluegrass,1245020820 +77905,4028,Aidan Quinn,1245021120 +77905,4028,American roots music,1245020872 +77905,4028,Appalachia,1245020884 +77905,4028,Appalachian mountains,1245020891 +77905,4028,backwoods,1245021161 +77905,4028,drama,1245020906 +77905,4028,lesbian subplot,1245020920 +77905,4028,musicologist,1245020899 +77905,4028,musicology,1245020878 +77905,4028,pioneering woman,1245021023 +77905,4028,racial issues subplot,1245020954 +77905,4028,romance,1245020910 +77905,4028,singing,1245020989 +77905,4028,strong woman,1245021014 +77905,4028,Taj Mahal (singer),1245020967 +77905,4642,queer,1245008155 +77905,4705,comedy,1245009211 +77905,4705,contrasting lifestyles,1245009272 +77905,4705,French,1245009280 +77905,4705,hilarious,1245009216 +77905,4705,liberal vs. uptight conservative,1245009338 +77905,4705,queer,1245009225 +77905,4848,lesbian,1245011098 +77905,4848,obscured plot,1245011186 +77905,4848,pretentious,1245011103 +77905,4878,freaky bunny,1245011968 +77905,4878,satirical,1245011983 +77905,4878,thought-provoking,1245011953 +77905,5013,murder mystery,1245012111 +77905,5051,Danish,1245007245 +77905,5051,earnest,1245007534 +77905,5051,foreign,1245007255 +77905,5051,heartwarming,1245007288 +77905,5051,Italian,1245007251 +77905,5051,low-budget,1245007265 +77905,5051,romance,1245007578 +77905,5051,tragicomic,1245007562 +77905,5051,well-developed characters,1245007628 +77905,5135,humorous,1245013450 +77905,5269,disturbing in a bad way,1245013216 +77905,5269,French,1245013249 +77905,5269,incest,1245013234 +77905,5461,betrayal,1245013611 +77905,5461,codependence,1245013697 +77905,5461,coming of age,1245013681 +77905,5461,female friendship,1245013542 +77905,5461,female relationship dynamics,1245013590 +77905,5461,finding inner strength,1245013734 +77905,5461,friendship,1245013532 +77905,5461,growing up,1245013616 +77905,5461,London,1245013646 +77905,5461,realistic,1245013792 +77905,5461,self-identity,1245013719 +77905,5461,toxic relationship,1245013774 +77905,5613,campy,1245020738 +77905,5613,dark comedy,1245020743 +77905,5613,madcap,1245020749 +77905,5791,bisexuality,1245009819 +77905,6093,America (the band),1245007125 +77905,6093,Jimmy Webb,1245007134 +77905,6163,Audrey Tautou,1245021275 +77905,6163,twisted,1245021282 +77905,6218,female friendship,1245013511 +77905,6218,friendship,1245013500 +77905,6296,Christopher Guest,1245040963 +77905,6385,destiny,1245006189 +77905,6385,family traditions,1245006127 +77905,6385,feminist,1245006170 +77905,6385,heritage,1245006096 +77905,6385,New Zealand,1245013888 +77905,6385,rebellion,1245006160 +77905,7164,based on book,1245041443 +77905,7164,imaginative,1245041462 +77905,7164,J.M. Barrie,1245041430 +77905,7164,Peter Pan,1245041472 +77905,8225,horror,1245009534 +77905,8784,New Jersey,1245021514 +77905,26009,Buddhism,1245008337 +77905,26009,Buddhist monk,1245008350 +77905,26009,Burma,1245008203 +77905,26009,devotion,1245008294 +77905,26009,harp,1245008316 +77905,26009,Japanese,1245008240 +77905,26009,music,1245008255 +77905,26009,Myanmar,1245008209 +77905,26009,soldiers,1245008359 +77905,26009,strength through music,1245008266 +77905,26009,World War II,1245008227 +77905,27815,boys' school,1245009458 +77905,27815,French,1245009388 +77905,27815,heartwarming,1245009394 +77905,27815,inspiring teacher,1245009432 +77905,27815,music,1245009420 +77905,27815,singing,1245009445 +77905,27815,strength through music,1245009410 +77905,32025,multilingual,1245010252 +77905,33639,adorable,1245012224 +77905,33639,documentary,1245012212 +77905,33639,heartwarming,1245012206 +77905,33639,joy of dancing,1245012307 +77905,33639,leaves you smiling,1245012259 +77905,33639,real kids,1245012274 +77905,33639,realistic,1245012195 +77905,36401,adventure,1245040470 +77905,36401,fairy tales,1245040481 +77905,36401,fantasy,1245040476 +77905,40629,period dance scene,1245013395 +77905,42418,Native American language,1245017517 +77905,42728,arranged marriage,1245011769 +77905,42728,based on legendary literature,1245011748 +77905,42728,Celtic legend,1245011604 +77905,42728,Cornwall,1245011633 +77905,42728,Ireland,1245011629 +77905,42728,legend,1245011583 +77905,42728,romance,1245011577 +77905,52579,Edith Piaf,1245041783 +77905,52838,animal rights,1245009904 +77905,52838,animal shelters,1245009914 +77905,52838,quirky,1245009874 +77905,52838,rescue dogs,1245009908 +77905,52838,satirical,1245009944 +77905,53123,bittersweet,1245010539 +77905,53123,busking,1245010711 +77905,53123,Dublin,1245010607 +77905,53123,Grafton Street,1245010723 +77905,53123,immigrant,1245010584 +77905,53123,inspiring,1245010625 +77905,53123,Ireland,1245010574 +77905,53123,Irish,1245010569 +77905,53123,low-budget,1245010526 +77905,53123,realistic,1245010547 +77905,53123,strength through music,1245010512 +77905,55814,appreciating life,1245006911 +77905,55814,brainstem stroke,1245006944 +77905,55814,French,1245006969 +77905,55814,locked-in syndrome,1245006852 +77905,55814,overcoming obstacles,1245006901 +77905,55814,speech therapist,1245006879 +77905,55814,speech therapy,1245006874 +77905,55814,speech-language pathology,1245006864 +77905,55872,holes in the plot,1258654056 +77905,55872,Kaki King,1258654148 +77905,55872,poorly realized,1258654093 +77905,55872,unreal dialogue,1258653991 +77905,62344,realistic,1245010819 +77905,64575,Bronx,1245019676 +77905,64575,riveting,1245019734 +77905,64575,suspicion,1245019778 +77905,64575,thought-provoking,1245019662 +77905,65130,disillusionment,1245010957 +77905,65130,Repressed woman,1453585750 +77905,65418,bad luck,1258654825 +77905,65418,cruelty of strangers,1258654751 +77905,65418,dog,1258654635 +77905,65418,dreams,1258654829 +77905,65418,good samaritan,1258654729 +77905,65418,kindness of strangers,1258654737 +77905,65418,owner & dog relationship,1258654775 +77905,65418,selfless decision,1258654712 +77905,65418,slice of life,1258654625 +77905,69574,difficulties during childhood,1258653710 +77905,69574,learning to accept yourself,1258653728 +77905,69574,surprise twist,1258653753 +77905,72998,environmental,1286659584 +77905,72998,honoring nature,1286659571 +77905,72998,imaginative,1286659608 +77905,72998,strong female characters,1286659636 +77905,133645,1950s society,1453585365 +77905,133645,based on a book,1453585420 +77905,133645,cate blanchett,1453585474 +77905,133645,Lesbian,1453583679 +77905,133645,Patricia Heismith,1453583709 +77905,133645,queer women,1453585457 +77905,133645,Repressed woman,1453585346 +77905,133645,romance,1453585466 +77927,593,disturbing,1305723951 +77927,593,serial killer,1305723948 +77927,1089,gore,1325610525 +77927,1670,War,1325610318 +77927,2959,Edward Norton,1305724001 +77927,2959,psychology,1305724003 +77927,4380,incest,1324626133 +77927,4380,loneliness,1324626138 +77927,4380,male nudity,1324626147 +77927,5528,psychopaths,1305723874 +77927,5528,psychotic tendencies,1305723876 +77927,5617,controversial,1396296290 +77927,5617,erotic,1396296287 +77927,5617,Nudity (Full Frontal - Notable),1396296282 +77927,5617,Nudity (Full Frontal),1396296285 +77927,5617,Nudity (Topless - Notable),1396296300 +77927,5617,quirky,1396296281 +77927,5617,sex,1396296277 +77927,5617,sexuality,1396296279 +77927,5617,sexuality:BDSM,1396296292 +77927,5617,sexy,1396296295 +77927,6063,disturbing,1324628734 +77927,6063,loneliness,1324628738 +77927,6063,psychological,1324628740 +77927,6214,brutal,1325533731 +77927,6214,disturbing,1355006626 +77927,6214,graphic violence,1325533733 +77927,6214,Nudity (Full Frontal - Notable),1325533564 +77927,6214,Nudity (Full Frontal),1325533568 +77927,6214,rape,1355006632 +77927,6214,reverse timeline,1355006607 +77927,6323,serial killer,1305724151 +77927,7254,alternate reality,1305725772 +77927,7976,Nudity (Full Frontal),1306475301 +77927,7976,pornography,1306475296 +77927,7976,teenagers,1306475931 +77927,7976,unsimulated sex scenes,1306475113 +77927,8950,bleak,1305723815 +77927,8950,Christian Bale,1305723814 +77927,8950,dark,1305723826 +77927,8950,powerful ending,1305723817 +77927,8950,psychology,1305723820 +77927,8950,schizophrenia,1305723821 +77927,30820,honest,1305725079 +77927,33893,comedy,1305725965 +77927,37720,better than expected,1325141516 +77927,37720,Exceptional Acting,1325141487 +77927,44974,disturbing,1325609525 +77927,44974,intense,1325609529 +77927,44974,psychology,1325609533 +77927,44974,suspenseful,1325609513 +77927,44974,tense,1325609540 +77927,59369,CIA,1324628644 +77927,59369,cliche,1324628650 +77927,59369,espionage,1324628656 +77927,69134,cinematography,1305723287 +77927,69134,dialogue driven,1305723301 +77927,69134,disturbing,1305723297 +77927,69134,Lars von Trier,1324627477 +77927,69134,Mental Illness,1324627474 +77927,69134,Nudity (Full Frontal),1305723282 +77927,69134,psychological,1305723291 +77927,69134,psychology,1305723290 +77927,69134,Strange,1305723294 +77927,69134,weird,1305723295 +77927,69134,Willem Dafoe,1324627468 +77927,74944,Don Cheadle,1307257970 +77927,74944,Richard Gere,1307257972 +77927,81591,creepy,1305723389 +77927,81591,dark,1305723391 +77927,81591,erotic,1396296426 +77927,81591,mental illness,1396296437 +77927,81591,psychological,1305723392 +77927,81591,thriller,1305723406 +77927,81591,visceral,1305723404 +77927,82202,Angelina Jolie,1326077186 +77927,82202,Johnny Depp,1326077269 +77927,82202,Predictable,1326077239 +77927,89774,Boxing story,1325610233 +77927,89774,Nick Nolte,1325610228 +77927,93598,Bland,1360490134 +77927,93598,Child pornography,1360490081 +77927,93598,Pedophilia,1360490041 +77927,93598,Slow,1360490094 +77927,96467,Tongue in cheek,1360490297 +77927,96467,Unique,1360490321 +77927,97923,alcoholism,1355006156 +77927,97923,Denzel Washington,1355006096 +77927,97923,Don Cheadle,1355006139 +77927,97923,John Goodman,1355006094 +77927,99114,Leonardo DiCaprio,1361936741 +77927,99114,Samuel L. Jackson,1361936754 +77948,1,3D,1173686898 +77948,1288,documentary,1173686909 +77948,4979,lots of characters,1173686933 +77949,172,cyberpunk,1137504766 +77949,215,special,1137504386 +77949,293,need to buy,1137956890 +77949,296,disjointed timeline,1419970978 +77949,296,intelligent,1419970978 +77949,296,metafiction,1419970978 +77949,296,need to buy,1137956924 +77949,296,noir,1419970978 +77949,296,thought-provoking,1419970978 +77949,296,thoughtful,1419970978 +77949,296,violent,1419970978 +77949,350,rewatch for rating,1167295651 +77949,353,cult film,1137504399 +77949,356,special,1137503935 +77949,364,hard to rate (personal),1137503825 +77949,520,rewatch for rating,1167295685 +77949,551,need to buy,1137957367 +77949,551,special,1137504141 +77949,588,hard to rate (personal),1137503796 +77949,608,need to buy,1137957337 +77949,778,need to buy,1137957000 +77949,903,rewatch for rating,1167295328 +77949,1208,need to buy,1137957187 +77949,1222,need to buy,1137956803 +77949,1241,cult film,1137503597 +77949,1241,hard to rate,1137503597 +77949,1246,special,1137503929 +77949,1250,rewatch for rating,1167295499 +77949,1255,cult film,1137503561 +77949,1255,hard to rate,1137503520 +77949,1282,hard to rate,1137503643 +77949,1282,not a film,1137503643 +77949,1784,need to buy,1137957214 +77949,1961,need to buy,1137957395 +77949,2174,cult film,1137503605 +77949,2174,hard to rate,1137503605 +77949,2193,rewatch for rating,1167295557 +77949,2657,cult film,1137503719 +77949,2657,hard to rate,1137503719 +77949,2700,hard to rate,1137503738 +77949,2710,rewatch for rating,1201389435 +77949,2762,need to buy,1137957427 +77949,2858,special,1137503909 +77949,2959,special,1137503943 +77949,2997,need to buy,1137957231 +77949,3053,special,1137504456 +77949,3081,special,1137504285 +77949,3159,hard to rate,1137503658 +77949,3159,not a film,1137503658 +77949,3462,chaplin,1137503709 +77949,3462,hard to rate,1137503709 +77949,3702,rewatch for rating,1201389375 +77949,3802,cyberpunk,1137504742 +77949,3910,special,1137503925 +77949,4027,special,1137504220 +77949,4146,special,1137504002 +77949,4223,need to buy,1137956784 +77949,4226,special,1137504205 +77949,4308,special,1137504028 +77949,4848,special,1137504212 +77949,4967,special,1137504015 +77949,4973,special,1137503904 +77949,5266,drop rating to 4?,1167293101 +77949,5669,need to buy,1137956759 +77949,5785,never want to see,1137503678 +77949,5971,need to buy,1137956855 +77949,5995,need to buy,1137956878 +77949,6639,rewatch for rating,1167294897 +77949,6774,hard to rate (personal),1137503769 +77949,6867,special,1137504280 +77949,6874,need to buy,1137956822 +77949,7022,hard to rate,1137503535 +77949,7034,special,1137504266 +77949,8783,special,1137504662 +77949,8784,special,1137504080 +77949,8970,need to buy,1137957072 +77949,8970,special,1137504075 +77949,36529,special,1137504351 +77949,37240,rewatch for rating,1167295276 +77949,40629,need to buy,1137957119 +77950,39414,Steve Martin Is Scraping The Bottom HARD!,1147147233 +77957,3477,music,1260217589 +77957,3477,teen,1260217600 +77957,4878,dreamlike,1260217690 +77957,4878,hallucinatory,1260217695 +77957,4878,imdb top 250,1260217697 +77957,4878,psychology,1260217675 +77957,4878,satirical,1260217701 +77957,4878,sci-fi,1260217703 +77957,4878,surreal,1260217688 +77957,4878,teen,1260217683 +77957,4878,thought-provoking,1260217679 +77957,4878,time travel,1260217681 +77963,1041,Timothy Spall,1367700869 +77963,3330,1920's,1367699437 +77963,3330,1930's,1367699437 +77963,3330,depression,1367699437 +77963,3330,Depression-era,1367699437 +77963,3330,father-son relationship,1367699437 +77963,3741,AFI 100,1367702685 +77963,3741,Badlands,1367702360 +77963,3741,based on a true story,1367702593 +77963,3741,crime sprees,1367702633 +77963,3741,female narrator,1367702593 +77963,3741,Martin Sheen,1367702360 +77963,3741,murder,1367702360 +77963,3741,Sissy Spacek,1367702360 +77963,3741,sociopath,1367702593 +77963,3741,teenagers,1367702360 +77963,4811,England,1367699893 +77963,4811,London,1367699893 +77963,4811,mods and rockers,1367699893 +77963,4835,Appalachia,1367700140 +77963,4835,coal miners,1367700140 +77963,4835,Sissy Spacek,1367700161 +77963,5508,1970's,1367699637 +77963,5508,1980's,1367699637 +77963,5508,England,1367699637 +77963,5508,Joy Division,1367699637 +77963,5508,Manchester,1367699637 +77963,5508,nightclub,1367699637 +77963,5508,punk rock,1367699637 +77963,6291,child trafficking,1367699074 +77963,6291,children,1367699074 +77963,6291,Estonia,1367699266 +77963,47629,British royal family,1367700281 +77963,47629,House of Windsor,1367700281 +77963,47629,Meryl Streep,1367700286 +77963,47629,Michael Sheen,1367700286 +77963,59995,BAFTA Award Winner,1367701760 +77963,59995,child murder,1367701353 +77963,59995,James Bulger murder,1367701541 +77963,59995,new identity,1367701707 +77963,59995,witness protection,1367701746 +77963,68194,1970s,1367700694 +77963,68194,Colm Meany,1367700578 +77963,68194,English Premier League,1367700609 +77963,68194,Michael Sheen,1367700558 +77963,68194,Timothy Spall,1367700558 +77963,74696,documentary,1367725151 +77963,74696,factory workers,1367725151 +77963,74696,family dynamics,1367725204 +77963,74696,poor,1367725158 +77963,74696,rural China,1367725255 +77963,74696,working conditions,1367725282 +77991,3157,bad,1176034784 +78022,260,classic,1444512449 +78022,260,sci-fi,1444512428 +78032,58559,Cool,1265160898 +78032,58559,Heath Ledger,1265160913 +78032,72378,exciting,1265160699 +78035,318,atmospheric,1315296045 +78035,318,classic,1315296045 +78035,318,drama,1315296084 +78035,318,friendship,1315296033 +78035,318,imdb top 250,1315296038 +78035,318,Morgan Freeman,1315295956 +78035,318,prison escape,1315295954 +78035,318,Stephen King,1315296006 +78035,318,thought-provoking,1315296014 +78035,318,twist ending,1315296070 +78035,916,Audrey Hepburn,1315476656 +78035,916,black and white,1315476726 +78035,916,classic,1315476660 +78035,916,Italy,1315476696 +78035,916,Oscar (Best Actress),1315476670 +78035,916,positive,1315476782 +78035,916,zest for life,1315476812 +78035,1193,emotional,1315354642 +78035,1193,Jack Nicholson,1315354604 +78035,1193,mental illness,1315354610 +78035,1193,Oscar (Best Actor),1315354628 +78035,1193,Oscar (Best Actress),1315354628 +78035,1193,Oscar (Best Picture),1315354628 +78035,1193,psychology,1315354636 +78035,1279,Jim Jarmusch,1315300285 +78035,1279,Winona Ryder,1315300303 +78035,1680,alternate reality,1315297096 +78035,1680,alternate universe,1315297097 +78035,1680,British,1315297093 +78035,1680,great concept,1315297091 +78035,1680,Gwyneth Paltrow,1315297087 +78035,1680,London,1315297081 +78035,1680,nonlinear,1315297114 +78035,1682,alternate reality,1315295801 +78035,1682,Jim Carrey,1315295784 +78035,1682,paranoia,1315295822 +78035,1682,philosophy,1315295792 +78035,1784,Jack Nicholson,1315354694 +78035,1784,Oscar Winner,1315355017 +78035,1784,positive,1315354719 +78035,2232,existentialism,1315994568 +78035,2232,mathematics,1315994551 +78035,2959,Edward Norton,1315354653 +78035,2959,mental illness,1315354676 +78035,2959,philosophy,1315354658 +78035,2959,psychology,1315354664 +78035,2959,thought-provoking,1315354667 +78035,3285,travel,1315994501 +78035,3285,utopia,1315994499 +78035,3437,motorcycle,1315299461 +78035,4203,bikers,1315299391 +78035,4203,Buddy movie,1315299407 +78035,4203,friendship,1315299404 +78035,4203,motorcycle,1315299394 +78035,4369,racing,1315299177 +78035,4369,street race,1315299171 +78035,4369,Vin Diesel,1315299175 +78035,4975,Cameron Diaz,1315297354 +78035,4975,existentialism,1315297350 +78035,4975,mindfuck,1315297348 +78035,4975,psychology,1315297346 +78035,4975,Thriller,1315297342 +78035,5219,action,1315346683 +78035,5219,Milla Jovovich,1315346665 +78035,5282,Morgan Freeman,1315346352 +78035,5324,Angelina Jolie,1315347122 +78035,5324,boring,1315347173 +78035,5574,action,1315298085 +78035,5574,car chase,1315298083 +78035,5574,Jason Statham,1315298068 +78035,6057,motorcycle,1315299474 +78035,6287,Adam Sandler,1315352870 +78035,6287,Jack Nicholson,1315352874 +78035,6287,positive,1315352983 +78035,6867,loneliness,1315300053 +78035,7149,boring,1315477089 +78035,7149,Jack Nicholson,1315477058 +78035,7149,Keanu Reaves,1315477063 +78035,7175,motorcycle,1315299072 +78035,7317,europe,1316763161 +78035,7317,road trip,1316763170 +78035,7362,Angelina Jolie,1315346869 +78035,7362,good idea but simple realization,1315346900 +78035,7362,thriller,1315346946 +78035,7445,Dakota Fanning,1315344046 +78035,7445,Denzel Washington,1315344052 +78035,7445,great cinematography,1315344072 +78035,8529,funny,1315298484 +78035,8529,Steven Spielberg,1315298475 +78035,27808,Adam Sandler,1315352904 +78035,30707,boxing,1315299813 +78035,30707,boxing drama,1315299819 +78035,30707,Clint Eastwood,1315299829 +78035,30707,drama,1315299821 +78035,30707,Hilary Swank,1315299961 +78035,30707,Morgan Freeman,1315299836 +78035,30707,Oscar (Best Actress),1315345909 +78035,30707,Oscar (Best Picture),1315345901 +78035,30707,Oscar Winner,1315345914 +78035,32460,Comedy,1315299598 +78035,32460,friendship,1315299604 +78035,32460,German,1315299590 +78035,32460,Moritz Bleibtreu,1315299596 +78035,32460,road trip,1315299603 +78035,32460,sad ending,1315299610 +78035,32460,Til Schweiger,1315300350 +78035,39231,atmospheric music,1315346405 +78035,39231,life,1315346421 +78035,39231,relaxing,1315346467 +78035,40629,England,1315355190 +78035,40629,great acting,1315355271 +78035,40629,great cinematography,1315355292 +78035,43396,Anthony Hopkins,1319077419 +78035,43396,based on a true story,1319077413 +78035,43396,emotional,1319077429 +78035,43396,motorcycle,1319077424 +78035,43396,speed,1319077425 +78035,44665,Morgan Freeman,1315346175 +78035,44665,thriller,1315346221 +78035,44665,twist ending,1315346179 +78035,44929,Australia,1315298293 +78035,46335,cars,1315299336 +78035,46335,Drifiting,1315299341 +78035,46335,Japan,1315299345 +78035,46335,racing,1315299347 +78035,46335,street race,1315299352 +78035,46335,Tokyo,1315299323 +78035,46335,Vin Diesel,1315299325 +78035,47200,action packed,1315994614 +78035,47200,adrenaline junkie,1315994605 +78035,47200,Jason Statham,1315994597 +78035,49278,Denzel Washington,1315344237 +78035,49284,life,1315346237 +78035,49284,Morgan Freeman,1315346232 +78035,51077,Eva Mendes,1315299268 +78035,51077,motorcycle,1315299262 +78035,51077,Nicolas Cage,1315299252 +78035,51077,plain storyline,1315299264 +78035,51077,unrealistic,1315299276 +78035,53318,alternate reality,1315297158 +78035,53318,british,1315297164 +78035,55100,Paul Rudd,1315343956 +78035,55255,Morgan Freeman,1315346261 +78035,55255,too simple plot,1315346330 +78035,55290,Casey Affleck,1315346091 +78035,55290,detective,1315346141 +78035,55290,morality,1315346150 +78035,55290,Morgan Freeman,1315346100 +78035,55290,twist,1315346155 +78035,56145,Stephen King,1315355449 +78035,56389,boring,1315297640 +78035,56389,Natalie Portman,1315297641 +78035,56389,road movie,1315297644 +78035,56941,best love story,1315344433 +78035,56941,Gerard Butler,1315344399 +78035,56941,Hilary Swank,1315344393 +78035,58047,Ryan Reynolds,1315296831 +78035,58622,boxing,1319077318 +78035,58622,funny,1319077326 +78035,58806,ClearPlay,1323229654 +78035,58806,Ellen Page,1323229615 +78035,58806,father daughter relationship,1323229658 +78035,58806,Sarah Jessica Parker,1323229621 +78035,59784,hillarious,1315348069 +78035,63062,angelina jolie,1315344484 +78035,63062,based on a true story,1315344499 +78035,63062,Clint Eastwood,1315344499 +78035,63082,India,1315300142 +78035,63082,Stupid as Hell,1315300182 +78035,64030,action,1315299219 +78035,64030,cars,1315299216 +78035,64030,Jason Statham,1315299207 +78035,71670,Sandra Bullock,1315343710 +78035,71670,stupid as hell,1315343769 +78035,72694,Kevin Spacey,1315353105 +78035,74458,insanity,1315355079 +78035,74458,longwinded,1315355164 +78035,74458,Mental Institution,1315355075 +78035,74458,Predictable,1315355059 +78035,79428,hilarious,1315344171 +78035,79428,Paul Rudd,1315344118 +78035,80463,computers,1315300225 +78035,80463,friendship,1315300258 +78035,80463,hacking,1315300255 +78035,80463,internet,1315300270 +78035,80463,Jesse Eisenberg,1315300245 +78035,80693,mental illness,1315476611 +78035,84152,entertaining,1315378585 +78035,84152,human potential,1315378566 +78035,84152,thought provoking,1315378547 +78035,84374,Natalie Portman,1315296770 +78035,85367,Adam Sandler,1315350709 +78035,85367,funny,1315350728 +78035,85367,Jennifer Aniston,1315350721 +78035,85367,Nicole Kidman,1315350715 +78035,85774,Formula 1 racing,1315476985 +78043,4725,Haunting,1337156132 +78043,7982,Turnabout,1337156164 +78043,45003,Eerie,1337156109 +78043,80844,Involving,1337156066 +78046,8910,existentialism,1330415261 +78049,5420,Nicolas Cage,1270849670 +78049,7158,heartbreaking,1273704350 +78049,7158,sad but good,1273704344 +78049,44974,Ellen Page,1269875273 +78049,50794,gruesome,1273788530 +78049,50794,Ryan Reynolds,1273788522 +78049,50794,Violently silly,1273788525 +78049,52281,Quentin Tarantino,1276544455 +78049,52281,rape,1276544468 +78049,52281,Robert Rodriguez,1276544458 +78049,52281,serial killer,1276544477 +78049,52281,zombies,1276544481 +78049,53519,Quentin Tarantino,1272230627 +78049,54274,torture,1276544419 +78049,74458,insanity,1292527366 +78049,74458,Leonardo DiCaprio,1292527349 +78049,74458,plot twist,1292527353 +78049,74458,psychological,1292527356 +78049,74458,twist ending,1292527359 +78050,131850,#jesus,1428671081 +78050,131850,gospel,1428671081 +78050,131850,salvation,1428671081 +78069,3578,action,1442628820 +78069,3578,drama,1442628825 +78069,7153,magic,1442628801 +78069,7153,stylized,1442628808 +78084,2028,historical,1441707988 +78084,2028,war,1441707980 +78084,2028,World War II,1441707968 +78100,3677,scenic,1366372502 +78100,3677,time-lapse,1366372507 +78100,60382,unanswered questions,1437895829 +78100,89759,tense,1350077745 +78100,108248,skiing,1390140341 +78100,137337,lots of bad quality footage,1437898148 +78117,1449,affectionate,1244042470 +78117,1449,Christopher Guest,1244042460 +78117,1449,Parker Posey,1244042463 +78117,60397,Amanda Seyfried,1244042313 +78117,60397,Meryl Streep,1244042290 +78117,60397,music:ABBA,1244042293 +78117,60397,Stellan SkarsgÃ¥rd,1244042297 +78152,6711,Amazing Cinematography,1442140240 +78152,6711,intelligent,1442140251 +78152,6711,poignant,1442140249 +78152,6711,visually appealing,1442140255 +78152,119145,action,1441951654 +78152,119145,gentlemanly,1441951649 +78152,119145,spy,1441951650 +78152,119145,spy thriller,1441951660 +78152,119145,violent,1441951647 +78191,4973,french,1190668543 +78198,6385,maori,1165239122 +78213,110,mel gibson down grade,1144612272 +78213,2640,comic book,1144611278 +78213,2858,overrated,1144611717 +78213,3897,slightly too long,1144611297 +78228,4873,animated,1439515131 +78228,4873,existentialism,1439515136 +78228,4873,metaphysics,1439515116 +78228,4873,philosophy,1439515122 +78228,4873,quirky,1439515138 +78228,4873,surreal,1439515120 +78228,4873,thought-provoking,1439515118 +78228,4873,visually stunning,1439515132 +78228,5618,hallucinatory,1439515236 +78228,5971,great soundtrack,1439515264 +78228,5971,visually appealing,1439515261 +78228,52885,atmospheric,1439515197 +78228,52885,confusing,1439515199 +78228,52885,dreams,1439515189 +78228,52885,philosophical,1439515191 +78228,52885,psychedellic,1439515194 +78228,52885,surreal,1439515183 +78228,78836,drugs,1439515073 +78228,78836,Nudity (Full Frontal),1439515071 +78228,78836,psychedelic,1439515077 +78228,81132,mindfuck,1439515970 +78228,81132,satire,1439515988 +78228,89862,dirty camera lenses,1439515910 +78228,89862,nudity (topless),1439515920 +78242,16,imdb top 250,1430586974 +78242,16,Joe Pesci,1430586971 +78242,16,robert de niro,1430586963 +78242,47,atmospheric,1425341508 +78242,47,brad pitt,1425341497 +78242,47,dark,1425341506 +78242,47,disturbing,1425341498 +78242,47,investigation,1425341510 +78242,47,Kevin Spacey,1425341501 +78242,47,morgan freeman,1425341490 +78242,47,mystery,1425341521 +78242,47,powerful ending,1425341504 +78242,47,psychological,1425341519 +78242,47,psychology,1425341493 +78242,47,serial killer,1425341486 +78242,47,twist ending,1425341488 +78242,246,basketball,1332072422 +78242,260,adventure,1423751824 +78242,260,aliens,1423751829 +78242,260,atmospheric,1423751837 +78242,260,classic,1423751826 +78242,260,fantasy,1423751822 +78242,260,great soundtrack,1423751840 +78242,260,Harrison Ford,1423751820 +78242,260,robots,1423751833 +78242,260,sci-fi,1423751816 +78242,260,soundtrack,1423751853 +78242,260,space,1423751817 +78242,260,space travel,1423751843 +78242,260,stylized,1423751845 +78242,296,quentin tarantino,1420579324 +78242,296,unpredictable,1420579324 +78242,296,violence,1420579324 +78242,318,frank darabont,1423351816 +78242,318,morgan freeman,1423351816 +78242,318,narrated,1423351816 +78242,541,artificial intelligence,1422491020 +78242,541,dreamlike,1422491031 +78242,541,dystopia,1422491012 +78242,541,existentialism,1422491027 +78242,541,future,1422491018 +78242,541,philosophical,1422491035 +78242,541,sci-fi,1422491010 +78242,541,stylized,1422491023 +78242,555,Christopher Walken,1420578893 +78242,555,ensemble cast,1420579085 +78242,555,Patricia Arquette,1420578867 +78242,555,Quentin Tarantino,1420578973 +78242,555,shooting,1420578899 +78242,555,violence,1420578878 +78242,555,violent,1420578981 +78242,608,based on a true story,1420766157 +78242,608,murder,1420766152 +78242,903,Alfred Hitchcock,1424292751 +78242,903,Atmospheric,1424292760 +78242,903,imdb top 250,1424292775 +78242,903,James Stewart,1424292765 +78242,903,melancholy,1424292788 +78242,903,obsession,1424292772 +78242,903,paranoid,1424292768 +78242,903,Pychological,1424292859 +78242,903,twist ending,1424292763 +78242,903,Zizek's pick,1424292804 +78242,909,Billy Wilder,1426425896 +78242,924,artificial intelligence,1423958530 +78242,924,atmospheric,1423958533 +78242,924,cult film,1423958544 +78242,924,philosophical,1423958538 +78242,924,sci-fi,1423958525 +78242,924,Stanley Kubrick,1423958528 +78242,924,surreal,1423958541 +78242,1089,ensemble cast,1420741149 +78242,1089,gangster,1420741161 +78242,1089,imdb top 250,1420741175 +78242,1089,nonlinear,1420741139 +78242,1089,Quentin Tarantino,1420741137 +78242,1089,stylized,1420741152 +78242,1089,undercover cop,1420741168 +78242,1089,violence,1420741142 +78242,1178,anti-war,1427649821 +78242,1178,cynical,1427649825 +78242,1178,military,1427649819 +78242,1178,Stanley Kubrick,1427649822 +78242,1178,world war I,1427649831 +78242,1193,depressing,1420756508 +78242,1193,drama,1420756518 +78242,1193,emotional,1420756506 +78242,1193,mental illness,1420756500 +78242,1193,psychology,1420756502 +78242,1193,social satire,1420756534 +78242,1196,adventure,1423761104 +78242,1196,classic,1423761110 +78242,1196,fantasy,1423761106 +78242,1196,father-son relationship,1423761118 +78242,1196,great soundtrack,1423761112 +78242,1196,modern fantasy,1423761127 +78242,1196,music,1423761122 +78242,1196,robots,1423761108 +78242,1196,sci-fi,1423761099 +78242,1196,space,1423761101 +78242,1208,military,1421020075 +78242,1208,sound editing,1421020094 +78242,1208,Vietnam war,1421020063 +78242,1208,war,1421020066 +78242,1209,classic,1425503125 +78242,1209,ennio morricone,1425503120 +78242,1209,Sergio Leone,1425503116 +78242,1209,spaghetti western,1425503131 +78242,1219,Alfred Hitchcock,1420677761 +78242,1219,mental illness,1420677775 +78242,1219,psychology,1420677765 +78242,1219,suspenseful,1420677763 +78242,1228,black and white,1422478451 +78242,1228,Martin Scorsese,1422478448 +78242,1228,Robert De Niro,1422478445 +78242,1228,stylized,1422478453 +78242,1234,Paul Newman,1429864105 +78242,1234,twist ending,1429864104 +78242,1237,atmospheric,1442433648 +78242,1237,death,1442433641 +78242,1237,existentialism,1442433638 +78242,1237,Ingmar Bergman,1442433643 +78242,1247,coming of age,1420904993 +78242,1247,Dustin Hoffman,1420904993 +78242,1247,great ending,1420907054 +78242,1252,Film Noir,1420750702 +78242,1252,Jack Nicholson,1420750694 +78242,1252,Roman Polanski,1420750698 +78242,1258,jack nicholson,1422150026 +78242,1258,psychological,1422150028 +78242,1258,Stanley Kubrick,1422150017 +78242,1258,suspense,1422150038 +78242,1263,Robert De Niro,1430587062 +78242,1464,atmospheric,1448234868 +78242,1464,David Lynch,1448234866 +78242,1464,disturbing,1448234872 +78242,1464,dreamlike,1448234882 +78242,1464,mindfuck,1448234885 +78242,1464,mystery,1448234859 +78242,1464,nonlinear,1448234884 +78242,1464,psychological,1448234889 +78242,1464,strange,1448234870 +78242,1464,surreal,1448234864 +78242,1732,coen brothers,1429694416 +78242,1732,cult film,1429694421 +78242,1732,dark comedy,1429694418 +78242,1732,great dialogue,1429694442 +78242,2076,atmospheric,1420656560 +78242,2076,dark,1420656544 +78242,2076,David Lynch,1420656553 +78242,2076,disturbing,1420656556 +78242,2076,dreamlike,1420656613 +78242,2076,hallucinatory,1420656604 +78242,2076,neo-noir,1420656551 +78242,2076,quirky,1420656606 +78242,2076,sexuality,1420656569 +78242,2076,surreal,1420656562 +78242,2076,weird,1420656546 +78242,2076,zizek's pick,1424296259 +78242,2288,disturbing,1423881954 +78242,2288,horror,1423881951 +78242,2288,intersubjectivity,1423882072 +78242,2288,paranoia,1423881943 +78242,2288,Psychological,1423882442 +78242,2288,shape shifter,1423881947 +78242,2288,Solipsism,1423882099 +78242,2571,alternate reality,1420762866 +78242,2571,artificial intelligence,1420762868 +78242,2571,dystopia,1420762846 +78242,2571,martial arts,1420762863 +78242,2571,philosophical,1420762873 +78242,2571,philosophy,1420762849 +78242,2571,post apocalyptic,1420762871 +78242,2571,post-apocalyptic,1420762858 +78242,2571,sci-fi,1420762843 +78242,2571,stylized,1420762876 +78242,2571,surreal,1420762852 +78242,2571,virtual reality,1420762842 +78242,4235,brother-brother relationship,1400967006 +78242,4235,dogs,1400966999 +78242,4235,drama,1400967009 +78242,4235,imdb top 250,1400966993 +78242,4235,independent film,1400967016 +78242,4235,multiple storylines,1400966991 +78242,4235,Nudity (Topless - Brief),1400966995 +78242,4235,violence,1400967025 +78242,4553,conspiracy,1423944667 +78242,4553,cult film,1423944662 +78242,4553,dystopia,1423944671 +78242,4553,sci-fi,1423944664 +78242,4553,Zizek's pick,1423944688 +78242,4848,amnesia,1424771665 +78242,4848,Atmospheric,1424771642 +78242,4848,dark,1424771649 +78242,4848,David Lynch,1424771639 +78242,4848,disturbing,1424771647 +78242,4848,dreamlike,1424771644 +78242,4848,Enigmatic,1424771676 +78242,4848,Mindfuck,1424771651 +78242,4848,nonlinear,1424771640 +78242,4848,surreal,1424771637 +78242,4848,surrealism,1424771660 +78242,4848,twist ending,1424771683 +78242,4848,visually appealing,1424771672 +78242,4967,Oscar (Best Foreign Language Film),1389392918 +78242,4967,thought-provoking,1389392910 +78242,4993,Adventure,1423441733 +78242,4993,beautifully filmed,1423441744 +78242,4993,ensemble cast,1423441782 +78242,4993,fantasy,1423441730 +78242,4993,great soundtrack,1423441807 +78242,4993,imdb top 250,1423441820 +78242,4993,Magic,1423441736 +78242,4993,Oscar (Best Cinematography),1423441775 +78242,5377,friendship,1388866322 +78242,5377,heartwarming,1388866316 +78242,5378,futuristic,1423789037 +78242,5378,Natalie Portman,1423789027 +78242,5378,Samuel L. Jackson,1423789031 +78242,5378,sci-fi,1423789022 +78242,5952,Epic,1423529876 +78242,5952,fantasy,1423529863 +78242,5952,mythology,1423529873 +78242,6187,Kevin Spacey,1437233448 +78242,6187,Lacan,1437233477 +78242,6187,Phantasy,1437233486 +78242,6187,Psychology,1437233473 +78242,6187,thought-provoking,1437233450 +78242,6440,Enigmatic,1446985775 +78242,6440,hallucinatory,1446985785 +78242,6440,quirky,1446985779 +78242,6993,E. E. Cummings,1443629960 +78242,6993,Michael Caine,1443629980 +78242,27773,brutal,1423366999 +78242,27773,depressing,1423366976 +78242,27773,disturbing,1423366952 +78242,27773,hallucinatory,1423366981 +78242,27773,revenge,1423366959 +78242,27773,stylized,1423366962 +78242,27773,surreal,1423366997 +78242,27773,twist ending,1423366957 +78242,27773,vengeance,1423366965 +78242,33493,dark,1423870405 +78242,33493,fantasy,1423870414 +78242,33493,great soundtrack,1423870412 +78242,33493,Natalie Portman,1423870407 +78242,36517,rachel weisz,1448470019 +78242,49272,espionage,1447753241 +78242,52042,double life,1375035655 +78242,52042,World War II,1375035652 +78242,64278,Film Theory & Criticism,1399165080 +78242,64278,psychoanalysis,1399165073 +78242,64278,Zizek,1399165071 +78242,69757,artistic,1425235897 +78242,69757,bittersweet,1425235911 +78242,69757,Funny,1425235914 +78242,69757,humor,1425235908 +78242,69757,humorous,1425235915 +78242,69757,intelligent,1425235900 +78242,69757,Joseph Gordon-Levitt,1425235895 +78242,69757,music,1425235913 +78242,69757,nonlinear,1425235909 +78242,69757,quirky,1425235898 +78242,69757,relationships,1425235903 +78242,69757,romance,1425235901 +78242,69757,Zooey Deschanel,1425235893 +78242,77233,cannabis,1438703322 +78242,77233,conspiracy,1438703324 +78242,77233,drugs,1438703320 +78242,77233,marijuana,1438703328 +78242,77233,provocative,1438703331 +78242,81132,bizarre,1419638589 +78242,81132,mindfuck,1419638587 +78242,81132,satire,1419638607 +78242,84120,Bertrand Russell,1411830432 +78242,84120,Cambridge,1411830530 +78242,84120,Language,1411830446 +78242,84120,Ludwig Wittgenstein,1411830396 +78242,84120,Philosophy,1411830440 +78242,84120,production,1411830487 +78242,84120,quirky,1411830458 +78242,84120,theatrical acting,1411830512 +78242,84944,animation,1423238113 +78242,84944,great voice acting,1423238108 +78242,84944,hallucinatory,1423238110 +78242,84944,Johnny Depp,1423238116 +78242,84944,spaghetti western,1423238118 +78242,88129,heist,1423357067 +78242,88129,Ryan Gosling,1423357054 +78242,89864,Anna Kendrick,1425167801 +78242,89864,cancer,1425167798 +78242,89864,friendship,1425167807 +78242,89864,Joseph Gordon-Levitt,1425167792 +78242,89864,Seth Rogen,1425167795 +78242,89864,unrealistic therapist,1425167820 +78242,96610,bad science,1389365155 +78242,96610,plot holes,1389365167 +78242,97306,Christopher Walken,1422927633 +78242,97306,Colin Farrell,1422927637 +78242,97306,Dark Comedy,1422927630 +78242,97306,witty,1422927654 +78242,97306,Woody Harrelson,1422927640 +78242,97921,best actress,1389185536 +78242,97921,father-son relationship,1389185436 +78242,97921,Jennifer Lawrence,1389185460 +78242,97921,oscar,1389185540 +78242,97921,Robert De Niro,1389185418 +78242,97921,romance,1389185426 +78242,98961,propaganda,1389220348 +78242,99114,Leonardo DiCaprio,1389138555 +78242,99114,music,1389138569 +78242,99114,Quentin Tarantino,1389138538 +78242,99114,Samuel L. Jackson,1389138535 +78242,99114,violence,1389138558 +78242,99114,visually appealing,1389138564 +78242,99917,artistic,1431472322 +78242,99917,atmospheric,1431472339 +78242,99917,emotionally captivating,1431472319 +78242,99917,Shane Carruth,1431472314 +78242,99917,visually appealing,1431472370 +78242,100714,boring,1390585938 +78242,101895,baseball,1389128484 +78242,101895,history,1389128547 +78242,101895,segregation,1389128532 +78242,101895,true story,1389128494 +78242,102407,acting,1388875336 +78242,102407,adaptation,1388875271 +78242,102407,anachronism,1388875260 +78242,102407,cinematography,1388875332 +78242,102407,F. Scott Fitzgerald,1388875398 +78242,102407,good adaptation,1388875349 +78242,102407,Leonardo DiCaprio,1388875363 +78242,102407,New York City,1388875283 +78242,102686,comedy,1389123002 +78242,102686,drugs,1389123050 +78242,102686,friendship,1389122308 +78242,102686,Zach Galifianakis,1389122270 +78242,104841,bad science,1388350183 +78242,104841,cinematography,1388350232 +78242,104841,space,1388350231 +78242,104841,visually appealing,1388350209 +78242,105504,suspense,1389652868 +78242,106100,Jared Leto,1392330806 +78242,106841,family drama,1392407254 +78242,106841,Julia Roberts,1392406923 +78242,106841,meryl streep,1392406922 +78242,106841,mother daughter relationship,1392406956 +78242,106841,secrets,1392406934 +78242,106916,bittersweet,1389735138 +78242,106916,Bradley Cooper,1389735120 +78242,106916,Christian Bale,1389735127 +78242,106916,Jennifer Lawrence,1389735131 +78242,106916,Louis C.K.,1389735144 +78242,106920,artificial intelligence,1389819022 +78242,106920,bad sciene,1389819110 +78242,106920,Human Computer Interaction,1389819075 +78242,106920,loneliness,1389819187 +78242,106920,psychology,1389819059 +78242,106920,Scarlett Johansson,1389819029 +78242,106920,thought-provoking,1389820221 +78242,106920,transhumanism,1389819036 +78242,107619,black & white,1388326832 +78242,107619,Iran,1388327492 +78242,107619,Iranian,1388327496 +78242,107619,psychology,1388326847 +78242,107619,women,1388326866 +78242,107621,bad ending,1388327197 +78242,107621,story,1388327220 +78242,107643,acting,1388434531 +78242,107643,adaptation,1388434522 +78242,107643,Bahram Tavakoli,1391630422 +78242,107643,cinematography,1388434513 +78242,107771,Art,1423705650 +78242,107771,atmospheric,1423705531 +78242,107771,Criticism,1423705606 +78242,107771,depression,1423705671 +78242,107771,Jim Jarmusch,1423705533 +78242,107771,music,1423705539 +78242,107771,Society,1423705659 +78242,107771,Tilda Swinton,1423705542 +78242,107771,visually stunning,1423705536 +78242,108132,Bahman Ghobadi,1391630349 +78242,108132,Behrouz Vossoughi,1389812533 +78242,108132,Monica Bellucci,1389812549 +78242,108132,surreal,1389812561 +78242,108134,religion,1389812734 +78242,108729,confusing,1422868141 +78242,108729,Isabella Rossellini,1422868191 +78242,108729,mental illness,1422868143 +78242,108729,Psychological,1422868216 +78242,108729,Subconsciousness,1422868178 +78242,108729,Symbolic,1422868236 +78242,109487,Anne Hathaway,1417650280 +78242,109487,Christopher Nolan,1417650277 +78242,109487,Matthew McConaughey,1417650285 +78242,109487,philosophical issues,1417650311 +78242,109487,sounds,1417650350 +78242,109487,thought-provoking,1417650322 +78242,109848,Alienation,1425131210 +78242,109848,aliens,1425131179 +78242,109848,Feminism,1425130917 +78242,109848,great ending,1425130938 +78242,109848,Kubrick-like,1425132049 +78242,109848,prostitution,1425131074 +78242,109848,Psychological,1425130915 +78242,109848,rape,1425131056 +78242,109848,Scarlett Johansson,1425131170 +78242,109848,sexual identitiy,1425131000 +78242,109848,Symbollic,1425130915 +78242,109848,visually appealing,1425130928 +78242,110771,bad acting,1407007499 +78242,110771,Cameron Diaz,1407007513 +78242,110771,not funny,1407007488 +78242,110771,ridiculous,1407007407 +78242,110771,ridiculous characters,1407007416 +78242,110771,ridiculous end,1407007429 +78242,110771,unrealistic,1407007440 +78242,110882,one man show,1437233612 +78242,110882,unique,1437233608 +78242,111031,Lacan,1399242312 +78242,111031,Zizek,1399242291 +78242,111622,bittersweet,1413536817 +78242,111622,friendship,1413536847 +78242,111622,Mark Ruffalo,1413536863 +78242,111622,music,1413536820 +78242,111622,New York,1413536815 +78242,111622,relationships,1413536838 +78242,111622,soundtrack,1413536827 +78242,111759,Emily Blunt,1418169667 +78242,111759,ending,1418169687 +78242,111759,sci-fi,1418169684 +78242,111759,time loop,1418169662 +78242,111759,Tom Cruise,1418169670 +78242,111759,war,1418169690 +78242,112290,growing up,1415142473 +78242,112290,pseudo-intelligent,1415142487 +78242,112290,realism,1415142484 +78242,112556,Ben Affleck,1416612353 +78242,112556,David Fincher,1416612340 +78242,112556,marriage,1416612369 +78242,112556,Predictable Twist,1416612384 +78242,112556,Psychopathy,1416612350 +78242,112556,puzzles,1416612479 +78242,112804,Astrid Bergès-Frisbey,1419608595 +78242,112804,reincarnation,1419608431 +78242,112804,watch the credits,1419608556 +78242,113207,long,1421505662 +78242,114265,coming of age,1423232153 +78242,114265,Keira Knightley,1423232154 +78242,114265,Relationship,1423232186 +78242,114265,Sam Rockwell,1423232157 +78242,114662,Propaganda,1424575666 +78242,116797,Alan Turing,1424212914 +78242,116797,Benedict Cumberbatch,1424212920 +78242,117881,Alzheimer's disease,1421305237 +78242,117881,Julianne Moore,1421305113 +78242,118814,cinematography,1423349334 +78242,118814,Comedy,1423349268 +78242,118814,Romance,1423349260 +78242,118814,whimsical,1423349293 +78242,118997,Anna Kendrick,1423348994 +78242,118997,Emily Blunt,1423349018 +78242,118997,fairy tale,1423349026 +78242,118997,Fantasy,1423349071 +78242,118997,Johnny Depp,1423349003 +78242,118997,Musical,1423349055 +78242,118997,Oscar nomination,1423349093 +78242,119141,Comdey,1419515081 +78242,119141,Dictatorship,1419515089 +78242,119141,North Korea,1419515096 +78242,119141,Propaganda,1419515075 +78242,119655,Misogyny,1427298670 +78242,119655,witch,1427298604 +78242,122938,Emmigration,1421181734 +78242,122938,Iran,1421181720 +78242,122938,Signle location,1421181777 +78242,125916,BDSM,1425164718 +78242,125916,sexual objectification,1425164737 +78255,296,crime,1429398919 +78255,296,cult film,1429398919 +78255,296,quentin tarantino,1429398919 +78263,89745,corny humor,1337180274 +78263,89745,nice visuals,1337180269 +78263,91500,shaky camera,1337180620 +78265,172,Henry Rollins,1311810260 +78265,172,Keanu Reeves,1311810249 +78265,208,apocalypse,1311810279 +78265,208,dystopia,1311810284 +78265,208,Kevin Costner,1311810277 +78265,208,post-apocalyptic,1311810287 +78265,529,Ben Kingsley,1311985448 +78265,529,Laurence Fishburne,1311985447 +78265,529,prodigy,1311985453 +78265,1556,Jason Patric,1311812340 +78265,1556,Sandra Bullock,1311812338 +78265,1556,Willem Dafoe,1311812375 +78265,1617,film noir,1311810700 +78265,1617,Kevin Spacey,1311810696 +78265,1617,Russell Crowe,1311810697 +78265,1617,suspense,1311810693 +78265,1625,David Fincher,1311810952 +78265,1625,Michael Douglas,1311810942 +78265,1625,mindfuck,1311810944 +78265,1625,psychological,1311810946 +78265,1625,suspense,1311810949 +78265,1625,thriller,1311810947 +78265,1625,twist ending,1311810950 +78265,1645,Al Pacino,1311811570 +78265,1645,Charlize Theron,1311811572 +78265,1645,courtroom,1311811574 +78265,1645,Keanu Reeves,1311811569 +78265,1645,psychological,1311811582 +78265,1645,thought-provoking,1311811580 +78265,1754,Denzel Washington,1311811543 +78265,1754,John Goodman,1311811546 +78265,1834,con artists,1311810904 +78265,1834,CONS AND SCAMS,1311810927 +78265,1834,Steve Martin,1311810919 +78265,2125,Anjelica Huston,1311812199 +78265,2125,chick flick,1311812202 +78265,2125,Drew Barrymore,1311812196 +78265,2125,fairy tale,1311812198 +78265,2707,conspiracy,1311811452 +78265,2707,Jeff Bridges,1311811234 +78265,2841,Kevin Bacon,1311811503 +78265,2979,Jerry O' Connell,1311810428 +78265,2979,Sean Patrick Flanery,1311810416 +78265,3160,ensemble cast,1311810809 +78265,3160,multiple storylines,1311810811 +78265,3160,Philip Seymour Hoffman,1311810796 +78265,3160,stylized,1311810800 +78265,3160,Tom Cruise,1311810798 +78265,3176,Cate Blanchett,1311869711 +78265,3176,creepy,1311869713 +78265,3176,disturbing,1311869699 +78265,3176,Gwyneth Paltrow,1311869704 +78265,3176,Jude Law,1311869701 +78265,3176,Matt Damon,1311869702 +78265,3176,Philip Seymour Hoffman,1311869705 +78265,3176,psychology,1311869707 +78265,3176,serial killer,1311869708 +78265,3316,Ben Affleck,1311812296 +78265,3316,Charlize Theron,1311812301 +78265,3316,Christmas,1311812318 +78265,3476,alternate reality,1311811740 +78265,3476,Tim Robbins,1311811732 +78265,3476,Vietnam War,1311811734 +78265,3706,Mickey Rourke,1311811614 +78265,3706,Robert De Niro,1311811612 +78265,3798,Harrison Ford,1311811528 +78265,3798,infidelity,1311811525 +78265,4975,Cameron Diaz,1311878623 +78265,4975,mindfuck,1311878627 +78265,4975,psychology,1311878635 +78265,4975,sci-fi,1311878634 +78265,4975,Thriller,1311878631 +78265,4975,Tom Cruise,1311878629 +78265,5046,Gary Sinise,1311812458 +78265,5046,Madeleine Stowe,1311812459 +78265,5046,mistaken identity,1311812461 +78265,5046,Philip K. Dick,1311812468 +78265,5046,powerful ending,1311812462 +78265,5046,wrongly accused,1311812465 +78265,5266,David Fincher,1311810975 +78265,5266,Jodie Foster,1311810976 +78265,5266,survival,1311810984 +78265,5528,Robin Williams,1311878712 +78265,5630,Anthony Hopkins,1311812245 +78265,5630,Edward Norton,1311812247 +78265,5630,Harvey Keitel,1311812250 +78265,5630,Philip Seymour Hoffman,1311812252 +78265,5630,psychology,1311812259 +78265,5630,Ralph Fiennes,1311812253 +78265,5630,serial killer,1311812255 +78265,6281,Colin Farrell,1311811206 +78265,6281,Kiefer Sutherland,1311811204 +78265,6281,Philip K. Dick,1311811213 +78265,6281,secrets,1311811211 +78265,6323,Amanda Peet,1311811465 +78265,6323,confusing,1311811468 +78265,6323,John Cusack,1311811466 +78265,6323,multiple storylines,1311811474 +78265,6323,surreal,1311811477 +78265,6323,suspenseful,1311811480 +78265,6323,twist ending,1311811482 +78265,6870,Clint Eastwood,1311810739 +78265,6870,Sean Penn,1311810744 +78265,7147,surreal,1311879022 +78265,7147,surrealism,1311879025 +78265,7147,Tim Burton,1311879024 +78265,7158,Ben Kingsley,1311810759 +78265,7158,Jennifer Connelly,1311810757 +78265,7158,misunderstanding,1311810765 +78265,7163,Ben Affleck,1311810180 +78265,7163,Philip K. Dick,1311810178 +78265,7163,sci-fi,1311810184 +78265,8948,Jude Law,1311810361 +78265,8950,Christian Bale,1311810858 +78265,8950,Mafia,1311810862 +78265,8950,psychodrama,1311810870 +78265,34319,dystopia,1311810205 +78265,34319,Ewan McGregor,1311810210 +78265,34319,Scarlett Johansson,1311810211 +78265,34319,thriller,1311810216 +78265,51412,author:Philip K. Dick,1311810088 +78265,51412,Julianne Moore,1311810096 +78265,51412,Nicolas Cage,1311810130 +78265,51412,Philip K. Dick,1311810098 +78265,51412,plot twist,1311810100 +78265,51412,psychic powers,1311810102 +78265,51412,supernatural powers,1311810105 +78265,51412,time travel,1311810136 +78265,55290,Ben Affleck,1311810719 +78265,55290,Casey Affleck,1311810716 +78265,55290,Morgan Freeman,1311810726 +78265,55290,police investigation,1311810730 +78265,55820,Tommy Lee Jones,1311812991 +78265,67197,end of the world,1311812492 +78265,67197,Nicolas Cage,1311812489 +78265,71530,Bruce Willis,1311810229 +78265,71530,dystopia,1311810230 +78265,71530,robots,1311810232 +78265,71530,sci-fi,1311810234 +78265,71902,Anne Heche,1311810332 +78265,71902,Ashton Kutcher,1311810334 +78265,76077,alternate reality,1311812538 +78265,76077,comedy,1311812522 +78265,76077,Crispin Glover,1311812526 +78265,76077,John Cusack,1311812518 +78265,80489,heist,1312078380 +78265,87785,Hayden Christensen,1311812891 +78265,87785,heist,1311812904 +78265,87785,Matt Dillon,1311812891 +78274,3624,Jackie Chan,1394676868 +78274,3624,Owen Wilson,1394676868 +78274,4016,Llama,1394685356 +78274,4995,Russell Crowe,1394656037 +78274,8665,Matt Damon,1394655427 +78274,8665,Shooting,1394655427 +78274,8665,violence,1394655427 +78284,4888,chamber piece,1440382491 +78284,4888,conversation,1427090517 +78284,4888,intense,1429336414 +78284,4888,minimalist,1427086678 +78284,4888,tense,1427086686 +78284,44761,neo-noir,1450744900 +78284,44761,Rian Johnson,1450744912 +78284,48394,Spanish Civil War,1444457698 +78284,85213,chamber piece,1440382535 +78284,115569,journalism,1439021276 +78284,115569,sociopath,1439021258 +78292,593,classic,1426545044 +78292,593,good acting,1426545044 +78292,593,psychothriller,1426545044 +78307,139130,Action,1441489064 +78307,139130,blood,1441489071 +78307,139130,gunfight,1441489057 +78307,139130,hip-hop,1441489074 +78307,139130,Samuel L. Jackson,1441489085 +78307,139130,samurai,1441489081 +78307,139130,soundtrack,1441489077 +78307,139130,swordplay,1441489094 +78307,139130,violence,1441489096 +78308,318,twist ending,1451734375 +78308,380,action,1439725278 +78308,380,comedy,1439725274 +78308,588,animation,1439725217 +78308,8961,family,1439724605 +78308,53318,boobs,1439921067 +78308,53318,stopping time,1439921055 +78308,60684,stylized violence,1446899189 +78308,60684,too long,1446899166 +78308,79091,comedy,1439725199 +78308,79091,cute,1439725210 +78308,79091,family,1439725204 +78308,81847,comedy,1439725045 +78308,99114,Christoph Waltz,1452018955 +78308,99114,funny,1452018965 +78308,103335,anti-hero,1439725184 +78308,103335,comedy,1439725167 +78308,103335,family,1439725151 +78308,106918,inspirational,1439725252 +78308,106918,scenic,1439725260 +78308,106918,visually appealing,1439725255 +78308,109487,Anne Hathaway,1448715585 +78308,109487,good science,1448715582 +78308,109487,Hans Zimmer,1448715599 +78308,109487,sentimental,1448715607 +78308,109487,thought-provoking,1448715594 +78308,120474,cute,1450118076 +78308,148110,Sunset Shimmer,1449167854 +78325,260,Science Fiction,1437004573 +78325,260,space action,1437004540 +78325,3275,action,1437004769 +78325,3275,Irish,1437004802 +78325,3275,vigilantism,1437004791 +78325,3949,dark,1437004875 +78325,3949,Darren Aronofsky,1437004873 +78325,3949,drugs,1437004868 +78325,3949,independent film,1437004871 +78352,79588,love,1426112110 +78352,79588,romance,1426112110 +78352,79588,zac efron,1426112110 +78374,1968,80s,1439601270 +78374,5995,historical,1440057889 +78374,5995,holocaust,1440057903 +78374,7669,author:Jane Austen,1440038621 +78374,8533,CLASS DIFFERENCES,1440038727 +78374,26958,Jane Austen,1440038537 +78374,51834,forbidden love,1440038832 +78374,84847,age difference,1440038804 +78374,84847,jane austen,1440038789 +78374,102194,coming of age,1440053430 +78397,1377,batman,1351741988 +78397,1377,Crime,1351741982 +78397,1377,dark,1351741967 +78397,1377,fantasy,1351741976 +78397,1377,super-hero,1351741994 +78397,1377,Thriller,1351741963 +78397,1377,Tim Burton,1351741958 +78397,5618,alternate reality,1351743243 +78397,5618,animation,1351743221 +78397,5618,atmospheric,1351743224 +78397,5618,children,1351743238 +78397,5618,dreamlike,1351743228 +78397,5618,Hayao Miyazaki,1351743217 +78397,5618,surreal,1351743232 +78397,8950,atmospheric,1351745303 +78397,8950,creepy,1351745306 +78397,8950,dark,1351745291 +78397,8950,Mafia,1351745299 +78397,8950,Nudity (Topless),1351745312 +78397,8950,psychology,1351745296 +78397,8950,schizophrenia,1351745280 +78397,8950,twist ending,1351745287 +78397,66097,animation,1351742524 +78397,66097,claymation,1351742589 +78397,66097,creepy,1351742541 +78397,66097,dark,1351742520 +78397,66097,fairy tale,1351742566 +78397,66097,talking animals,1351742546 +78397,66097,Tim Burton,1351742526 +78397,66097,videogame like,1351742555 +78397,66097,visually stunning,1351742530 +78409,2840,controversial,1335572510 +78409,2840,thriller,1335572521 +78409,2840,triller religion,1335572526 +78409,91976,Liam Neeson,1335570960 +78409,91976,life & death,1335570963 +78409,91976,man vs. nature,1335570971 +78409,91976,survival,1335570966 +78409,91976,thought provoking,1335570979 +78409,91976,unrealistic,1335571013 +78409,93242,conspiracy,1337575624 +78409,93242,revenge,1337575597 +78409,93242,vigilante,1337575597 +78419,916,romance,1206584304 +78424,1272,Best War Films,1355007746 +78424,1272,movie to see,1355007753 +78424,1272,Oscar (Best Picture),1355007761 +78424,3785,comedy,1262531257 +78424,3785,funny,1262531261 +78424,3785,parody,1262531263 +78424,34162,Christopher Walken,1262532292 +78424,34162,Owen Wilson,1262532295 +78424,34162,sex,1262532306 +78424,34162,Vince Vaughn,1262532299 +78424,34162,wedding,1262532302 +78424,34162,Will Ferrell,1262532300 +78424,38061,black comedy,1342021510 +78424,38061,clever,1342021516 +78424,38061,Film Noir,1342021512 +78424,38061,funny,1342021514 +78424,38061,Nudity (Topless),1342021519 +78424,39414,Steve Martin,1262531941 +78424,67618,sexy,1314489474 +78424,73266,Steve Buscemi,1266847281 +78424,75341,Pierce Brosnan,1274633045 +78424,85342,Latin America,1313025175 +78444,260,action-adventure,1443547217 +78444,260,classic sci-fi,1443547196 +78444,127146,biopic,1443547310 +78444,127146,experimental,1443547305 +78445,5690,anime,1445910280 +78445,5690,anti-war,1445910268 +78445,5690,horrors of war,1445910285 +78445,5690,Japan,1445910276 +78445,5690,Studio Ghibli,1445910326 +78445,5690,tragedy,1445910271 +78445,5690,war,1445910288 +78489,116797,Alan Turing,1432046956 +78489,116797,cryptography,1432046948 +78489,116797,informatics,1432046954 +78489,116797,mathematics,1432046943 +78503,8665,Divx1,1205200214 +78504,903,nausea,1193377296 +78510,66203,happy ending,1452030760 +78510,66203,relationships,1452030772 +78510,66203,romance,1452030765 +78510,66203,romantic comedy,1452030755 +78510,69712,genuine characters,1452030820 +78510,111921,sad,1452030836 +78510,113604,drama,1452030794 +78510,113604,touching,1452030796 +78512,3479,medieval,1228482792 +78517,2991,007,1138377059 +78517,2991,Bond,1138377052 +78551,112290,cerebral,1424153690 +78551,112290,coming of age,1424153690 +78551,112290,realism,1424153690 +78581,260,Meh ok,1436680713 +78587,2571,surreal,1400944177 +78587,2571,virtual reality,1400944168 +78587,2728,Stanley Kubrick,1400944249 +78607,260,fantasy,1433822443 +78607,260,sci-fi,1433822432 +78607,112556,annoying,1433822642 +78607,112556,feminazi,1433822642 +78607,112556,idiotic,1433822642 +78617,345,road movie,1158517959 +78617,1304,western,1158518021 +78617,2012,Si-fi,1158517998 +78629,1210,Ewoks,1351696528 +78629,3090,betrayal,1353474377 +78629,3090,coal miners,1353474330 +78629,3090,corruption,1353474318 +78629,3090,historical,1353474432 +78629,3090,power,1353474465 +78629,3090,resistance,1353474341 +78629,3090,West Virginia,1353474417 +78629,7143,More self-glorification tomfoolery from Cruise,1138125750 +78629,26245,based on a book,1368331176 +78629,26245,class issues,1368331063 +78629,26245,coming of age,1368330904 +78629,26245,deception,1368331097 +78629,26245,England in 1900,1368330935 +78629,26245,Harold Pinter,1368331207 +78629,26245,similar to Atonement,1368330886 +78629,26245,slow-paced,1368331028 +78629,61986,laconic,1353474265 +78629,93840,homage,1368460519 +78629,93840,Joss Whedon,1368460457 +78629,97397,dirty tricks,1351697074 +78629,97397,Southern Strategy,1351697047 +78629,102590,Baltimore,1369101176 +78629,102590,fantasy,1369101265 +78629,102590,gamers,1369101147 +78629,102590,LARP,1369101120 +78629,102590,Live Action Role-Playing games,1369101113 +78629,102590,Maryland,1369101176 +78629,102590,war games,1369101151 +78629,107130,Doctor Who,1407891308 +78629,107130,history,1407891308 +78629,107130,movie business,1407891308 +78695,260,good science fiction,1430920038 +78695,260,Harrison Ford,1430920051 +78696,260,action,1436712112 +78696,260,sci-fi,1436712098 +78696,356,classic,1436712429 +78696,356,overcoming odds,1436712429 +78696,356,sweet,1436712429 +78696,356,tear jerker,1436712429 +78715,260,adventure,1441679751 +78715,260,space epic,1441679762 +78725,393,90s,1451566919 +78725,393,Campy,1451566901 +78725,541,atmospheric,1418583005 +78725,541,cult film,1418583019 +78725,541,cyberpunk,1418582998 +78725,541,dreamlike,1418583022 +78725,541,future,1418583033 +78725,541,sci-fi,1418583029 +78725,741,anime,1420924448 +78725,741,artificial intelligence,1420924451 +78725,741,cinematography,1420924737 +78725,741,complex,1420924454 +78725,741,cyberpunk,1420924447 +78725,741,music,1420924581 +78725,741,philosophical,1420924453 +78725,741,sci-fi,1420924457 +78725,741,score,1420924578 +78725,741,visually appealing,1420924460 +78725,750,classic,1420763127 +78725,750,Quirky,1420763160 +78725,1148,british,1421018475 +78725,1148,claymation,1421018479 +78725,1148,cosy,1421018506 +78725,1148,funny,1421018477 +78725,1148,witty,1421018473 +78725,1193,depressing,1420748487 +78725,1213,good dialogue,1421018269 +78725,1213,Joe Pesci,1421018283 +78725,1213,mafia,1421018255 +78725,1213,narrated,1421018267 +78725,1213,Ray Liotta,1421018280 +78725,1213,robert de niro,1421018285 +78725,1213,stylish,1421018260 +78725,1291,action,1420726233 +78725,1291,Adventure,1420726198 +78725,1291,classic,1420726317 +78725,1291,Comedy,1420726323 +78725,1291,feel good,1420726266 +78725,1291,series,1420726222 +78725,1291,treasure,1420726212 +78725,2028,disturbing,1421018892 +78725,2028,gritty,1421018899 +78725,2028,historical,1421018891 +78725,2028,history,1421018895 +78725,2028,Steven Spielberg,1421018886 +78725,2028,World War II,1421018875 +78725,3471,aliens,1451565739 +78725,3471,campy,1451565761 +78725,3471,Classic,1451565742 +78725,3471,first contact,1451565736 +78725,3471,visually appealing,1451565746 +78725,3698,campy,1451566048 +78725,3740,campy,1451566507 +78725,5618,anime,1418582766 +78725,5618,atmospheric,1418582755 +78725,5618,dreamlike,1418582759 +78725,5618,fantasy,1418582849 +78725,5618,whimsical,1418582773 +78725,5782,boring start,1421085349 +78725,8633,80s,1421095056 +78725,8633,campy,1421094994 +78725,8633,cosy,1421094989 +78725,8633,Early CGI,1421094982 +78725,8633,feel good,1421095055 +78725,8633,space,1421094976 +78725,27611,drama,1420924378 +78725,27611,politics,1420924361 +78725,27611,post-apocalyptic,1420924368 +78725,27611,sci-fi,1420924356 +78725,27611,space,1420924358 +78725,27611,thought-provoking,1420924377 +78725,27611,visually appealing,1420924371 +78725,30749,based on a true story,1420809547 +78725,30749,drama,1420809561 +78725,30749,factual,1420809557 +78725,30749,history,1420809549 +78725,62336,anime,1420924419 +78725,62336,quirky,1420924439 +78725,62336,rock and roll,1420924422 +78725,62336,stylish,1420924424 +78725,62336,weird,1420924428 +78725,68237,dialogue driven,1420924257 +78725,68237,isolation,1420924291 +78725,68237,Kevin Spacey,1420924224 +78725,68237,Sci-fi,1420924213 +78725,68237,slow paced,1420924246 +78725,68237,solitude,1420924228 +78725,68237,space,1420924218 +78725,68954,adventure,1421020446 +78725,68954,feel good movie,1421020468 +78725,68954,friendship,1421020467 +78725,68954,happy ending,1421020475 +78725,68954,heartbreaking,1421020456 +78725,68954,Pixar,1421020450 +78725,68954,storytelling,1421020462 +78725,79357,cinematography,1420924721 +78725,79357,immortality,1420924749 +78725,79357,nonlinear,1420924719 +78725,79357,philosophy,1420924756 +78725,79357,sci-fi,1420924744 +78725,79357,soundtrack,1420924760 +78725,79357,thought provoking,1420924745 +78725,86345,stand-up comedy,1420924056 +78725,86377,stand-up comedy,1420924041 +78725,92535,stand-up comedy,1420924049 +78725,110407,ambient music,1420726088 +78725,110407,android(s)/cyborg(s),1420726088 +78725,110407,artificial intelligence,1420726088 +78725,110407,lightning,1397072683 +78725,110407,low budget,1420726088 +78725,110407,machines,1397072670 +78725,110407,pace,1397072692 +78725,110407,sci-fi,1420726088 +78725,110407,science fiction,1397072662 +78725,111759,time travel,1410705797 +78725,112868,atmospheric,1451565790 +78725,112868,cybernetics,1451565782 +78725,112868,twist ending,1451565773 +78725,129707,campy,1451679212 +78725,129707,minimalistic,1451679206 +78725,129707,Olivia Wilde,1451679161 +78725,129707,resurrection,1451679219 +78725,129707,science,1451679163 +78725,129707,super-natural,1451679293 +78725,133377,Aliens,1451565806 +78725,133377,Atmospheric,1451565803 +78725,138204,cameos,1436732821 +78725,138204,parody,1436732821 +78725,138204,tennis,1436732821 +78738,260,classic sci-fi,1437244004 +78738,260,epic adventure,1437244023 +78742,260,classic,1436590317 +78742,260,fantastic,1436590302 +78766,1,animation,1209562100 +78766,1,Disney,1209562107 +78766,1,Pixar,1209562082 +78766,318,based on a book,1262767411 +78766,318,prison,1262767413 +78766,318,prison escape,1262767420 +78766,527,based on a true story,1262767893 +78766,527,Holocaust,1262767902 +78766,527,Steven Spielberg,1262767878 +78766,527,World War II,1262767880 +78766,780,alien invasion,1262766797 +78766,780,aliens,1262766802 +78766,780,Will Smith,1262766810 +78766,1080,Monty Python,1262768338 +78766,1097,aliens,1262766857 +78766,1097,Drew Barrymore,1262766862 +78766,1097,Steven Spielberg,1262766865 +78766,1214,aliens,1262766835 +78766,1214,horror,1262766839 +78766,1214,monster,1262766842 +78766,1214,sci-fi,1262766829 +78766,1214,space,1262766832 +78766,1222,Stanley Kubrick,1262900570 +78766,1222,Vietnam War,1262900575 +78766,1580,aliens,1262766896 +78766,1580,Tommy Lee Jones,1262766888 +78766,1580,Will Smith,1262766882 +78766,1597,conspiracy,1262767311 +78766,1597,Julia Roberts,1262767304 +78766,1597,Mel Gibson,1262767300 +78766,2028,historical,1264168484 +78766,2028,Matt Damon,1264168487 +78766,2028,Steven Spielberg,1264168470 +78766,2028,Tom Hanks,1264168476 +78766,2028,war,1264168479 +78766,2028,World War II,1209562138 +78766,2329,Edward Norton,1262767433 +78766,2329,racism,1262767466 +78766,2427,World War II,1262900944 +78766,2605,Catherine Zeta-Jones,1262768204 +78766,2605,Sean Connery,1262768208 +78766,2858,coming of age,1262767541 +78766,2858,Kevin Spacey,1262767491 +78766,3054,anime,1262768253 +78766,3556,high school,1262900757 +78766,3556,Kirsten Dunst,1262900739 +78766,3556,melancholy,1262900744 +78766,3556,suicide,1262900747 +78766,3578,Russel Crowe,1209562182 +78766,3793,adapted from:comic,1262767221 +78766,3793,Hugh Jackman,1262767219 +78766,3793,superhero,1209562007 +78766,3967,coming of age,1262900475 +78766,3967,dance,1262900480 +78766,3994,Bruce Willis,1262900834 +78766,3994,Samuel L. Jackson,1262900832 +78766,3994,unique,1262900847 +78766,3996,martial arts,1209562156 +78766,4226,Guy Pearce,1262766178 +78766,4310,Ben Affleck,1262900543 +78766,4310,Josh Hartnett,1262900546 +78766,4310,World War II,1262900548 +78766,4873,philosophy,1262767806 +78766,4873,thought-provoking,1262767809 +78766,4878,psychology,1262767397 +78766,5956,Leonardo DiCaprio,1262767987 +78766,6333,adapted from:comic,1262767199 +78766,6333,Hugh Jackman,1262767190 +78766,6333,superhero,1209586099 +78766,6807,Monty Python,1262768360 +78766,7361,Charlie Kaufman,1262767603 +78766,7361,Jim Carrey,1262767578 +78766,8529,Catherine Zeta-Jones,1262768180 +78766,8529,Steven Spielberg,1262768176 +78766,8529,Tom Hanks,1262768172 +78766,8607,Satoshi Kon,1262766587 +78766,8644,sci-fi,1209586036 +78766,8644,Will Smith,1209586034 +78766,8984,Brad Pitt,1262768150 +78766,8984,Catherine Zeta-Jones,1262768145 +78766,8984,George Clooney,1262768137 +78766,8984,Matt Damon,1262768142 +78766,26903,Hayao Miyazaki,1262765906 +78766,27660,animation,1209562224 +78766,27660,anime,1209562226 +78766,32587,artistic,1262767034 +78766,32587,Quentin Tarantino,1262767028 +78766,32587,superhero,1209562114 +78766,33162,history,1262767957 +78766,33162,Orlando Bloom,1262767949 +78766,33794,Christian Bale,1262767063 +78766,33794,superhero,1209562205 +78766,33794,thought-provoking,1262767168 +78766,33794,vigilante,1262767076 +78766,39183,Heath Ledger,1262900782 +78766,39183,homosexuality,1262900778 +78766,40278,Gulf War,1262900688 +78766,44191,adapted from:comic,1262767006 +78766,44191,dystopia,1262766990 +78766,44191,thought-provoking,1262766983 +78766,46322,Jet Li,1209586174 +78766,46322,Martial Arts,1209586176 +78766,49530,Africa,1209562202 +78766,49530,Leonardo DiCaprio,1209562193 +78766,55442,animation,1262900812 +78766,55442,coming of age,1262900804 +78766,55442,French,1262900819 +78766,55908,philosophical,1262767704 +78766,55908,thought-provoking,1262767710 +78766,59369,Liam Neeson,1262765972 +78766,63072,based on a book,1263758947 +78766,63072,Charlize Theron,1263758923 +78766,63072,dystopia,1263758918 +78766,63072,John Hillcoat,1263758934 +78766,63072,post-apocalyptic,1263758939 +78766,63072,Viggo Mortensen,1263758929 +78766,69481,Iraq War,1262900596 +78766,70286,aliens,1262766725 +78766,70286,peter jackson,1262766739 +78782,318,Morgan Freeman,1283695265 +78782,318,overrated,1183808770 +78782,334,autumnal,1292773112 +78782,334,based on a play,1292773115 +78782,334,intimate,1292773123 +78782,334,Louis Malle,1292786840 +78782,334,meditative,1292773127 +78782,437,Chevy Chase,1250644430 +78782,483,coming of age,1256487277 +78782,483,Great Depression,1256487274 +78782,483,heart-wrenching,1256487613 +78782,483,Steven Soderbergh,1256487281 +78782,541,based on a book,1237285825 +78782,541,Philip K. Dick,1237285822 +78782,953,classic,1251958532 +78782,953,family,1251958537 +78782,986,Animal movie,1250644241 +78782,1080,Monty Python,1253267931 +78782,1080,parody,1253267955 +78782,1080,satire,1253267958 +78782,1080,Terry Gilliam,1253267935 +78782,1136,Monty Python,1237229322 +78782,1136,parody,1237229326 +78782,1196,adventure,1181818925 +78782,1196,Lucas,1181818934 +78782,1207,based on a book,1361918746 +78782,1207,compassion,1361918718 +78782,1207,compassionate,1361918724 +78782,1207,heartwarming,1361918705 +78782,1210,adventure,1181818901 +78782,1210,Lucas,1181818895 +78782,1220,road trip,1251958634 +78782,1289,civilization,1286651746 +78782,1289,environmental,1286651766 +78782,1289,gets better as it goes,1286651771 +78782,1289,life changing,1286651763 +78782,1289,no dialogue,1286651772 +78782,1289,no narrative,1286651751 +78782,1289,Philip Glass,1286651747 +78782,1289,technology,1286704253 +78782,1289,trilogy:Qatsi,1286704240 +78782,1291,indiana jones,1254862662 +78782,1291,Steven Spielberg,1254862654 +78782,1396,computers,1250861862 +78782,1584,beautiful,1332617750 +78782,1584,sci-fi,1332617740 +78782,1658,angels,1269712134 +78782,1658,Cameron Diaz,1269712142 +78782,1658,Ewan McGregor,1269712143 +78782,1658,Holly Hunter,1269712146 +78782,1658,off-beat comedy,1269712132 +78782,1689,Bill Murray,1252958265 +78782,1725,Native Americans,1301165267 +78782,1725,Nature,1301165279 +78782,1747,politics,1175893759 +78782,1777,Adam Sandler,1343593852 +78782,1777,Drew Barrymore,1343593849 +78782,1810,politicians,1175811170 +78782,1810,politics,1175811172 +78782,1914,coming of age,1297622823 +78782,1914,directorial debut,1297622846 +78782,1914,family bonds,1297622829 +78782,1914,interesting and unusual characters,1297622836 +78782,1914,memorable,1297622842 +78782,1914,Native Americans,1297622843 +78782,1967,Adventure,1328377747 +78782,1967,fantasy,1328377744 +78782,1967,Jennifer Connelly,1328377752 +78782,1967,maze,1328377739 +78782,2005,pirates,1183287817 +78782,2009,Business is the antagonist,1252860412 +78782,2064,capitalism,1194892413 +78782,2064,corporate America,1174422290 +78782,2097,Ray Bradbury,1183287923 +78782,2097,surreal,1183287925 +78782,2161,Atreyu,1330286449 +78782,2161,sweet,1330286438 +78782,2193,adventure,1329951310 +78782,2193,fantasy,1329951302 +78782,2193,George Lucas,1329951313 +78782,2248,Ione Skye,1337381478 +78782,2248,John Cusack,1337381481 +78782,2248,sweet,1337381506 +78782,2321,black and white,1279402499 +78782,2321,heartwarming,1279402490 +78782,2321,surreal,1279402507 +78782,2321,thoughtful,1279402509 +78782,2502,cult film,1251958082 +78782,2502,mike judge,1251958078 +78782,2502,satire,1251958089 +78782,2571,sci-fi,1250809745 +78782,2571,virtual reality,1250809758 +78782,2581,Drew Barrymore,1343509626 +78782,2610,Sundance Grand Jury Prize: Dramatic,1283607381 +78782,2610,Sundance Grand Jury Prize: Dramatic 1999,1283607380 +78782,2610,Vietnam,1283607356 +78782,2692,original,1448158050 +78782,2692,visually appealing,1448158063 +78782,2918,80s,1253297548 +78782,2918,comedy,1253297521 +78782,2918,coming of age,1253297472 +78782,2918,High School,1253297513 +78782,2918,Matthew Broderick,1253297500 +78782,2918,one day,1253303184 +78782,2918,rebellion,1253303184 +78782,2918,teen,1253297528 +78782,2966,imdb top 250,1175866607 +78782,2966,road trip,1251958424 +78782,3071,education,1279409801 +78782,3071,Edward James Olmos,1279409787 +78782,3071,high school,1279409789 +78782,3071,Inspiring,1279409794 +78782,3071,mathematics,1279409793 +78782,3095,americana,1257561463 +78782,3095,based on a book,1257561465 +78782,3095,depression,1257561495 +78782,3095,Great Depression,1257561449 +78782,3095,Henry Fonda,1266943991 +78782,3095,imdb top 250,1266943993 +78782,3095,John Ford,1257561501 +78782,3095,Oscar (Best Directing),1257561488 +78782,3095,Oscar (Best Supporting Actress),1257561485 +78782,3095,poverty,1257561478 +78782,3095,Social Drama,1257561455 +78782,3159,classical music,1227915613 +78782,3241,Buddhism,1341264751 +78782,3241,buddhist monks,1341264752 +78782,3271,based on a book,1257440101 +78782,3271,Gary Sinise,1257440081 +78782,3271,John Malkovich,1257440086 +78782,3271,sad,1257440096 +78782,3300,Vin Diesel,1181924696 +78782,3462,social commentary,1251958464 +78782,3476,flashbacks,1251776933 +78782,3476,insanity,1251776902 +78782,3476,mental illness,1251776907 +78782,3476,multiple realities,1251776913 +78782,3476,Tim Robbins,1251776922 +78782,3476,Vietnam War,1251776926 +78782,3476,war,1251776926 +78782,3552,Bill Murray,1253323341 +78782,3552,Chevy Chase,1253323328 +78782,3552,golf,1253323334 +78782,3565,Natalie Portman,1279208984 +78782,3617,road trip,1251723002 +78782,3752,Jim Carrey,1279130232 +78782,3752,Renee Zellweger,1279130234 +78782,3752,romance,1279130247 +78782,3752,split personality,1279130243 +78782,3983,absent fathers,1268082938 +78782,3983,accident,1268082941 +78782,3983,family,1268082943 +78782,3983,Laura Linney,1268082954 +78782,3983,Mark Ruffalo,1268082949 +78782,3983,Matthew Broderick,1268082955 +78782,3983,mother-son relationship,1268082960 +78782,3983,slow,1268082974 +78782,3983,small town,1268082977 +78782,4007,ambition,1278359150 +78782,4007,business,1278359128 +78782,4007,Business is the antagonist,1278359123 +78782,4007,Charlie Sheen,1278359132 +78782,4007,corporate America,1278359202 +78782,4007,Martin Sheen,1278359134 +78782,4007,materialism,1278359159 +78782,4007,Michael Douglas,1278359136 +78782,4007,Oliver Stone,1278359139 +78782,4007,stock market,1278359142 +78782,4007,US history,1278359145 +78782,4009,Oliver Stone,1278393610 +78782,4015,Seann William Scott,1252441222 +78782,4103,based on a book,1285874679 +78782,4103,based on a true story,1285874682 +78782,4103,Below R,1285874692 +78782,4103,Christian Bale,1285874712 +78782,4103,John Malkovich,1285874710 +78782,4103,World War II,1285874702 +78782,4121,Dennis Quaid,1271540723 +78782,4121,Martin Short,1271540727 +78782,4121,Meg Ryan,1271540727 +78782,4237,Agnès Varda,1293382512 +78782,4270,adventure,1198440635 +78782,4334,Chinese,1285514194 +78782,4334,gentle,1285514214 +78782,4334,intimate,1285514219 +78782,4334,reflective,1285514213 +78782,4334,Taiwan,1285514191 +78782,4334,warm,1285514210 +78782,4391,Anh Hung Tran,1283687603 +78782,4391,rain,1283694523 +78782,4391,scenic,1283687926 +78782,4391,tropical,1283687609 +78782,4391,Vietnam,1283687606 +78782,4454,consumerism,1251777550 +78782,4454,dystopia,1251777558 +78782,4454,imagination,1251777577 +78782,4454,no dialogue,1251777564 +78782,4454,short,1251777572 +78782,4641,adolescence,1269794427 +78782,4641,based on a comic,1269795242 +78782,4641,bittersweet,1269794424 +78782,4641,coming of age,1269795252 +78782,4641,quirky,1269795221 +78782,4641,reflective,1269795223 +78782,4878,alternate timeline,1292967085 +78782,4878,atmospheric,1292967098 +78782,4878,cult classic,1292967094 +78782,4878,dreamlike,1292967072 +78782,4878,mental illness,1292967082 +78782,4878,psychology,1292967073 +78782,4878,sci-fi,1292967089 +78782,4878,surreal,1292967075 +78782,4878,thought-provoking,1292967076 +78782,5059,Vietnam War,1251958503 +78782,5059,werner herzog,1251958499 +78782,5121,Werner Herzog,1336909153 +78782,5363,DJ Qualls,1252386727 +78782,5363,Zooey Deschanel,1252386730 +78782,5377,adaptation,1271700020 +78782,5377,based on a book,1271700012 +78782,5377,based on book,1271700017 +78782,5377,british,1271700022 +78782,5377,coming of age,1271700027 +78782,5377,heartwarming,1271700030 +78782,5377,Hugh Grant,1271700031 +78782,5377,literary adaptation,1271700055 +78782,5377,whimsical,1271700044 +78782,5449,Adam Sandler,1239656336 +78782,5528,Robin Williams,1250716392 +78782,5669,Michael Moore,1181818918 +78782,5690,anime,1175866627 +78782,5690,Studio Ghibli,1251958546 +78782,5772,dialogue,1350852039 +78782,5772,friendship,1350852061 +78782,5772,Louis Malle,1293041311 +78782,5772,philosophical,1350852054 +78782,5772,philosophy,1350852055 +78782,5943,Jennifer Lopez,1255289655 +78782,5943,Ralph Fiennes,1255289658 +78782,5957,Hugh Grant,1269199406 +78782,5957,Sandra Bullock,1269199408 +78782,5994,acting,1354995276 +78782,5994,actors,1354995277 +78782,5994,actresses,1354995282 +78782,5994,adapted from:book,1354995192 +78782,5994,author:Charles Dickens,1354995193 +78782,5994,based on a book,1354995291 +78782,5994,Charles Dickens,1354995185 +78782,5994,compassion,1355002769 +78782,5994,compassionate,1355002773 +78782,5994,Dickens,1354995187 +78782,5994,joy,1356167539 +78782,5994,kindness of strangers,1356167584 +78782,5994,love,1356167560 +78782,5994,loving kindness,1356167570 +78782,5994,nathan lane,1354995286 +78782,6155,Good Romantic Comedies,1253404980 +78782,6155,Matthew McConaughey,1253404983 +78782,6162,meditative,1341323482 +78782,6162,slow,1341323487 +78782,6218,coming of age,1341078298 +78782,6218,culture clash,1341084951 +78782,6218,father daughter relationship,1341078286 +78782,6218,feel-good,1341078297 +78782,6218,football,1341078320 +78782,6218,friendship,1341078300 +78782,6218,immigrants,1341078307 +78782,6218,india,1341078310 +78782,6218,mother daughter relationship,1341078290 +78782,6218,touching,1341078293 +78782,6299,animals,1347191832 +78782,6299,birds,1347191814 +78782,6299,nature,1347191819 +78782,6299,photography,1347191823 +78782,6329,Don Cheadle,1341172243 +78782,6329,Joseph Gordon-Levitt,1341172234 +78782,6329,mental illness,1341172224 +78782,6329,Zooey Deschanel,1341172229 +78782,6331,competition,1267115754 +78782,6331,Documentary,1267115748 +78782,6331,heartwarming,1267115731 +78782,6331,spelling bee,1267115745 +78782,6341,art,1279967696 +78782,6341,Gretchen Mol,1279967685 +78782,6341,paul rudd,1279967679 +78782,6341,Rachel Weisz,1279967684 +78782,6367,60s,1342456820 +78782,6367,Renee Zellweger,1342456829 +78782,6368,Documentary,1272737860 +78782,6368,movies,1272738574 +78782,6368,quirky subculture,1272737871 +78782,6537,sci-fi,1247962037 +78782,6539,Pirate,1183287948 +78782,6545,1930s,1271512861 +78782,6545,castle,1271512863 +78782,6545,coming of age,1271512870 +78782,6545,England,1271512893 +78782,6545,period piece,1271540698 +78782,6545,Rose Byrne,1271512881 +78782,6545,writers,1271512902 +78782,6545,writers at work,1271512888 +78782,6550,parody,1209630863 +78782,6636,Daphne Zuniga,1289083262 +78782,6636,John Cusack,1289083265 +78782,6636,road trip,1289083267 +78782,6636,Rob Reiner,1289083269 +78782,6636,US college students,1289083273 +78782,6676,native americans,1298656874 +78782,6711,atmospheric,1252858081 +78782,6711,Bill Murray,1252858092 +78782,6711,bittersweet,1252858096 +78782,6711,Japan,1252858085 +78782,6711,Melancholic,1252858403 +78782,6711,nocturnal,1252858413 +78782,6711,reflective,1252859133 +78782,6711,Scarlett Johansson,1252858087 +78782,6711,Sophia Coppola,1252858407 +78782,6755,B-movie,1251957716 +78782,6755,Bruce Campbell,1251957712 +78782,6755,quirky,1251957704 +78782,6807,Monty Python,1183287971 +78782,6807,satire,1183287969 +78782,6867,depression,1279209261 +78782,6867,friendship,1252858872 +78782,6867,interesting characters,1279209254 +78782,6867,loneliness,1279209265 +78782,6867,melancholy,1338743906 +78782,6867,Michelle Williams,1338743910 +78782,6867,no ending,1338744615 +78782,6867,small town,1279209245 +78782,6867,special,1175866661 +78782,6867,want to see again,1338744609 +78782,6881,family,1203206184 +78782,6902,Amy Smart,1265579525 +78782,6902,James Marsden,1265579530 +78782,6902,life lessons,1265579259 +78782,6902,life philosophy,1265579255 +78782,6902,lovely,1265579309 +78782,6902,nice and kind,1265579261 +78782,6902,road trip,1265579263 +78782,6935,media politics,1279207533 +78782,6935,politics,1251958408 +78782,6935,South America,1251958414 +78782,6963,Amish,1254387724 +78782,6979,artificial intelligence,1251958439 +78782,6979,Cold War,1250478426 +78782,6979,computers,1250478423 +78782,6979,hackers,1251958443 +78782,6979,Matthew Broderick,1253677688 +78782,6979,military,1253677686 +78782,6979,nuclear war,1250478429 +78782,7002,Calm intelligent pace,1287939127 +78782,7002,Ione Skye,1287939133 +78782,7002,John Heard,1287939137 +78782,7002,Liv Ullmann,1287939131 +78782,7002,Sam Waterston,1287939141 +78782,7002,The setting,1287939127 +78782,7039,Graham Greene,1299407041 +78782,7039,Lakota,1299377504 +78782,7039,Native Americans,1299377495 +78782,7147,adventure,1262486304 +78782,7147,based on a book,1262486306 +78782,7147,bittersweet,1262486309 +78782,7147,coming of age,1262486314 +78782,7147,dreamlike,1262486276 +78782,7147,fantasy,1262486277 +78782,7147,father-son relationship,1262486303 +78782,7147,imdb top 250,1269796422 +78782,7147,quirky,1262486285 +78782,7147,surreal,1262486296 +78782,7147,surrealism,1262486295 +78782,7147,Tim Burton,1262486291 +78782,7163,based on a book,1329597732 +78782,7163,Philip K. Dick,1329597731 +78782,7163,sci-fi,1329597727 +78782,7293,Romance,1239499812 +78782,7574,Makiko Esumi,1285524373 +78782,7725,John Trudell,1300139274 +78782,7745,Anh Hung Tran,1283687678 +78782,7745,buddhist,1283537822 +78782,7745,happiness,1348600167 +78782,7745,joy of small things,1283694615 +78782,7745,mindfulness,1283694606 +78782,7745,scenic,1283537825 +78782,7745,slow,1348600187 +78782,7745,tropical,1283537828 +78782,7745,Vietnam,1283537830 +78782,7753,based on a book,1287838372 +78782,8014,Atmospheric,1279984681 +78782,8582,Chomsky,1279208063 +78782,8582,journalism,1279208076 +78782,8582,media politics,1279208072 +78782,8582,politics,1175866619 +78782,8582,propaganda,1279208080 +78782,8633,space,1279218499 +78782,8633,spaceflight,1279218508 +78782,8633,video game,1279218505 +78782,8633,video games,1279218504 +78782,8644,robots,1237285707 +78782,8644,Sci fi,1175818504 +78782,8645,compassionate,1340566186 +78782,8665,spy,1251594813 +78782,8753,politics,1174503659 +78782,8918,black comedy,1340478094 +78782,8918,crazy family,1340478096 +78782,8969,Renee Zellweger,1342384943 +78782,26502,based on a book,1251780124 +78782,26502,Charles Dickens,1251780113 +78782,26502,Christmas,1251780110 +78782,26502,George C. Scott,1251780118 +78782,26539,compassionate,1349261264 +78782,26539,living in the past and the future,1349261212 +78782,26539,success,1349261321 +78782,26554,alone in the world,1292117394 +78782,26554,last man on earth,1292117399 +78782,26554,post-apocalyptic,1292117405 +78782,26554,SF,1292117402 +78782,26760,Gabrielle Anwar,1264618948 +78782,26865,Amazing kung fu,1276805495 +78782,26865,Jet Li,1276805496 +78782,27808,Adam Sandler,1239404232 +78782,27808,family,1239404230 +78782,27850,capitalism,1229179886 +78782,27850,globalisation,1229179889 +78782,30822,advertising,1254101598 +78782,30822,college,1254101598 +78782,30822,college student,1254101598 +78782,30822,Dennis Quaid,1254101604 +78782,30822,father daughter relationship,1254101590 +78782,30822,magazines,1254101594 +78782,30822,Scarlett Johansson,1254101612 +78782,30991,Native Americans,1300135909 +78782,32296,Regina King,1267904501 +78782,32296,Sandra Bullock,1267904498 +78782,32296,William Shatner,1267904500 +78782,32596,Africa,1253846641 +78782,32596,based on a book,1253847709 +78782,32596,Matthew McConaughey,1253846653 +78782,32596,Steve Zahn,1253846664 +78782,32657,altruism,1283694509 +78782,32657,beautiful,1283694503 +78782,32657,calm,1251600914 +78782,32657,compassion,1355676621 +78782,32657,goodness,1355676579 +78782,32657,meaningful,1355676642 +78782,32657,nature,1355676608 +78782,32657,slow,1355676595 +78782,32705,breathing,1337779119 +78782,33004,based on a book,1339704976 +78782,33004,sci-fi,1339704978 +78782,33004,Zooey Deschanel,1339704981 +78782,33145,Amanda Peet,1280085065 +78782,33145,Ashton Kutcher,1280085066 +78782,33145,happy ending,1280085069 +78782,33145,love,1280085075 +78782,33145,romance,1280085072 +78782,33495,Robert Duvall,1252712973 +78782,33495,Will Ferrell,1252712622 +78782,33499,Wanda Sykes,1252523012 +78782,33558,eskimoes,1355692962 +78782,33558,nature,1355692965 +78782,33558,plane crash,1355692971 +78782,33558,realistic,1355692986 +78782,33558,slow,1355692976 +78782,33558,survival,1355692968 +78782,33679,Angelina Jolie,1255309142 +78782,33679,Brad Pitt,1255309124 +78782,33679,espionage,1255309133 +78782,33679,marriage,1255309154 +78782,33679,spies,1255309159 +78782,33679,Vince Vaughn,1255309160 +78782,34072,antarctica,1250861716 +78782,34072,Family,1250861723 +78782,34072,morgan freeman,1250861703 +78782,34072,penguins,1250861700 +78782,34162,buddy movie,1252871179 +78782,34162,Christopher Walken,1252871162 +78782,34162,Owen Wilson,1252871165 +78782,34162,Vince Vaughn,1252871166 +78782,34162,wedding,1252871180 +78782,34162,weddings,1252871184 +78782,34162,Will Ferrell,1252871169 +78782,34319,Ewan McGregor,1253143554 +78782,34319,future,1253143568 +78782,34319,Scarlett Johansson,1253143555 +78782,34319,sci-fi,1253143559 +78782,34319,scifi,1253143562 +78782,34437,Atmospheric,1252841805 +78782,34437,Bill Murray,1252841801 +78782,34437,meditative,1252841811 +78782,34437,open ended endings,1252841817 +78782,34437,quiet,1252844067 +78782,34437,road trip,1252836686 +78782,34528,Amy Adams,1280254976 +78782,34528,understated,1280254987 +78782,36525,Mark Ruffalo,1267227919 +78782,36525,Reese Witherspoon,1267227923 +78782,36525,San Francisco,1267227944 +78782,37386,assassin,1253106292 +78782,37386,Charlize Theron,1253106295 +78782,37386,dystopia,1253106288 +78782,37386,Post apocalyptic,1253106317 +78782,37386,post-apocalyptic,1253106318 +78782,37386,resistance movement,1253106324 +78782,37386,sci-fi,1253106326 +78782,37857,alternate reality,1328211902 +78782,37857,dreamlike,1328211307 +78782,37857,Fantasy World,1328211904 +78782,37857,visually appealing,1328211303 +78782,38798,based on a book,1269727734 +78782,38798,Below R,1269727740 +78782,38798,better than expected,1269727709 +78782,38798,Cameron Diaz,1269727711 +78782,38798,chick flick,1269727713 +78782,38798,drama,1269727757 +78782,38798,family bonds,1269727753 +78782,38798,PG13,1269727780 +78782,38798,romance,1269727715 +78782,38798,siblings,1269727750 +78782,38798,sister sister relationship,1269727719 +78782,38798,sisters,1269727720 +78782,38798,Toni Collette,1269727730 +78782,41527,friendship,1250861763 +78782,41527,Middle East,1250861771 +78782,41527,palestine,1174327192 +78782,41724,Robert Greenwald,1251026785 +78782,42007,jennifer aniston,1267225697 +78782,42007,Kevin Costner,1267225696 +78782,42007,Mark Ruffalo,1267225699 +78782,43897,airships,1329160746 +78782,43897,Werner Herzog,1329160741 +78782,43914,compassionate,1340487445 +78782,43914,healing,1340487205 +78782,43914,Will Ferrell,1340487191 +78782,43914,writer,1340487186 +78782,43914,writers,1340487190 +78782,43914,Zooey Deschanel,1340487184 +78782,44004,Matthew McConaughey,1252880362 +78782,44004,Sarah Jessica Parker,1252880354 +78782,44004,Zooey Deschanel,1252880359 +78782,44709,heartwarming,1279377472 +78782,44709,Laurence Fishburne,1279377480 +78782,45501,break-up,1251569964 +78782,45501,Jennifer Aniston,1251569957 +78782,45501,Vince Vaughn,1251569954 +78782,45503,Amy Smart,1278272019 +78782,45503,Nick Nolte,1278272020 +78782,46322,19th century,1276708855 +78782,46322,friendship,1276708894 +78782,46322,redemption,1276708840 +78782,46322,revenge,1276708889 +78782,46322,vanity,1276708881 +78782,46578,road trip,1250861662 +78782,46972,father-son relationship,1209594843 +78782,46976,modern fantasy,1252335952 +78782,46976,Will Ferrell,1252331015 +78782,46976,writing,1252335954 +78782,47465,Terry Gilliam,1250643943 +78782,47997,mike judge,1250861656 +78782,47997,satire,1250861648 +78782,48780,atmospheric,1256502857 +78782,48780,based on a book,1256502889 +78782,48780,Christian Bale,1256502855 +78782,48780,dark,1256502871 +78782,48780,Hugh Jackman,1256502853 +78782,48780,obsession,1256502908 +78782,48780,Scarlett Johansson,1256502862 +78782,48780,tense,1256502915 +78782,48780,twist ending,1256502877 +78782,48780,weak characters,1256502905 +78782,49272,guilty pleasure,1194728186 +78782,49278,Denzel Washington,1197154636 +78782,49284,Morgan Freeman,1236462085 +78782,49286,Cameron Diaz,1343173929 +78782,49286,Jack Black,1343173933 +78782,49286,Jude Law,1343173935 +78782,49286,Kate Winslet,1343173931 +78782,49286,lovely characters,1343173960 +78782,49286,sweet,1343173986 +78782,49286,switching places,1343173989 +78782,50259,nature,1315928680 +78782,50259,scenery,1315928680 +78782,50601,AnnaSophia Robb,1330649398 +78782,50601,fantasy,1330682510 +78782,50601,Zooey Deschanel,1330649400 +78782,50658,7n Up (series),1250303349 +78782,50685,bittersweet,1248825256 +78782,51084,Drew Barrymore,1342876197 +78782,51084,romance,1342876322 +78782,51084,uplifting,1342876308 +78782,51471,based on a true story,1355082200 +78782,51471,compassion,1355082272 +78782,51471,compassionate,1355082277 +78782,51471,England,1355082254 +78782,51471,London,1355082257 +78782,51471,political drama,1355082214 +78782,51471,slavery,1355082219 +78782,52328,space,1196713571 +78782,53123,beautiful,1343046667 +78782,53123,bittersweet,1343046665 +78782,53123,Dublin,1343046685 +78782,53123,Ireland,1343046662 +78782,53123,realistic,1343047011 +78782,53123,sweet,1343046692 +78782,53125,pirates,1183287958 +78782,53138,adventure,1262650144 +78782,53138,archaeology,1262650153 +78782,53138,Noah Wyle,1262650143 +78782,53140,adventure,1262538663 +78782,53140,archaeology,1262538664 +78782,53140,Noah Wyle,1262539010 +78782,53550,Christian Bale,1250861818 +78782,53550,Jeremy Davies,1262807167 +78782,53550,prison escape,1262807190 +78782,53550,Steve Zahn,1262807168 +78782,53550,true story,1262807149 +78782,53550,Vietnam War,1250861810 +78782,53550,Werner Herzog,1250861801 +78782,54286,assassin,1251599608 +78782,54286,espionage,1251599615 +78782,54732,Christopher Walken,1252403980 +78782,54732,Maggie Q,1252403990 +78782,54745,good soundtrack,1251071397 +78782,54780,Paul Giamatti,1253129942 +78782,54780,rich and poor,1253129941 +78782,54780,Scarlett Johansson,1253129934 +78782,54934,Will Arnett,1252590962 +78782,55732,psychology,1246623413 +78782,55830,heartwarming,1298495195 +78782,55830,Jack Black,1298495188 +78782,55830,Mia Farrow,1298495198 +78782,55830,Mos Def,1298495185 +78782,55830,quirky,1298495218 +78782,55908,entirely dialogue,1350585123 +78782,55908,immortality,1246237752 +78782,55908,philosophical,1246237749 +78782,56152,Amy Adams,1280017076 +78782,56152,Disney,1280017037 +78782,56152,Musical,1280017043 +78782,56152,Susan Sarandon,1280017053 +78782,56174,alone in the world,1260587553 +78782,56174,based on a book,1260587578 +78782,56174,post-apocalyptic,1260587556 +78782,56174,Will Smith,1260587560 +78782,56174,zombies,1260587563 +78782,56367,great soundtrack,1337813296 +78782,56671,road trip,1339953583 +78782,56671,Zooey Deschanel,1339953584 +78782,57504,Anime,1279984082 +78782,57504,friendship,1279984072 +78782,57504,japanese,1279984069 +78782,57504,time travel,1279984079 +78782,57951,Donald Sutherland,1259535283 +78782,57951,Kate Hudson,1259535284 +78782,57951,Matthew McConaughey,1259535286 +78782,58047,cute,1342546282 +78782,58047,love,1342546285 +78782,58047,New York,1342546296 +78782,58047,new york city,1342546295 +78782,58315,Mike Myers,1252407317 +78782,58972,Gerard Butler,1251958067 +78782,58972,island,1251045820 +78782,58972,Jodie Foster,1250478823 +78782,59018,immigrants,1252859030 +78782,59018,Richard Jenkins,1252859052 +78782,59018,Thomas McCarthy,1252859063 +78782,59103,jackie chan,1276546590 +78782,59103,jet li,1276546589 +78782,59103,kung fu,1276546592 +78782,59126,atheism,1250861787 +78782,59126,Bill Maher,1250999038 +78782,59126,Christianity,1250999044 +78782,59126,religion,1250861780 +78782,59126,thought-provoking,1250861793 +78782,59258,Dax Shepard,1271549218 +78782,59258,Steve Martin,1271549209 +78782,59258,Tina Fey,1271549212 +78782,59315,adventure,1252612071 +78782,59315,arms dealer,1252612073 +78782,59315,based on a comic,1252612116 +78782,59315,Marvel,1252612057 +78782,59315,military,1252612115 +78782,59315,military industrial complex,1252612098 +78782,59315,superhero,1252612108 +78782,59315,technology,1252612063 +78782,59315,torture,1252612088 +78782,59387,fantasy,1328386075 +78782,59387,fantasy world,1328386072 +78782,59387,story-in-a-story,1328386356 +78782,59387,storytelling,1328386076 +78782,59387,visually appealing,1328386069 +78782,59421,Ashton Kutcher,1267996730 +78782,59421,Cameron Diaz,1267996729 +78782,59421,marriage,1267996734 +78782,59421,Vegas,1267996737 +78782,59795,choir,1337525797 +78782,59795,christmas,1229179999 +78782,59795,consumerism,1337525786 +78782,60333,Werner Herzog,1236031072 +78782,60516,Eddie Murphy,1254012943 +78782,60516,Elizabeth Banks,1254012944 +78782,60756,will ferrell,1251665365 +78782,60943,financial problems,1273965822 +78782,60943,friendship,1273965844 +78782,60943,good cinematography,1273965808 +78782,60943,Melissa Leo,1273965819 +78782,60943,smuggling,1273965833 +78782,60943,trailer home,1273965817 +78782,61018,Chang-dong Lee,1295195938 +78782,61132,parody,1225631071 +78782,61729,misanthrope,1251855679 +78782,61729,Téa Leoni,1251855688 +78782,62081,big brother,1258340699 +78782,62081,computer controls everything,1258340711 +78782,62081,Rosario Dawson,1258340721 +78782,62081,Shia LaBeouf,1258340691 +78782,62081,spy,1258340727 +78782,62081,surveillance,1258340731 +78782,62081,why the terrorists hate US,1258340762 +78782,62155,Michael Cera,1342981208 +78782,62376,adventure,1278445878 +78782,62376,based on a book,1278445880 +78782,62376,Bill Murray,1278445866 +78782,62376,family,1278445877 +78782,62376,steampunk,1278445867 +78782,62376,stylistic,1278445870 +78782,62439,Alec Baldwin,1262055769 +78782,62439,crude humor,1262055764 +78782,62439,Dane Cook,1262055767 +78782,62439,Jason Biggs,1262055772 +78782,62439,Kate Hudson,1262055776 +78782,62439,R,1262056201 +78782,62851,religion:Buddism,1297526898 +78782,62970,steampunk,1341085255 +78782,62970,Zooey Deschanel,1341085242 +78782,63072,based on a book,1279911549 +78782,63072,cannibalism,1279911523 +78782,63072,Charlize Theron,1279911526 +78782,63072,dystopia,1279911520 +78782,63072,post-apocalyptic,1279911510 +78782,63072,Viggo Mortensen,1279911534 +78782,63082,based on a book,1340396876 +78782,63082,compassionate,1340457217 +78782,63082,feel-good,1340396891 +78782,63082,India,1340396898 +78782,63082,love,1340396903 +78782,63082,Oscar (Best Picture),1340396872 +78782,63082,romance,1340396886 +78782,63082,violence,1340396883 +78782,64032,Reese Witherspoon,1259418286 +78782,64032,Robert Duvall,1259418288 +78782,64032,Vince Vaughn,1259418287 +78782,64620,based on a play,1342821978 +78782,64620,based on a true story,1342821476 +78782,64620,history,1342821467 +78782,64620,manipulation,1342821968 +78782,64620,politics,1342821459 +78782,64620,small-mindedness,1342821954 +78782,64620,Suspense,1342822012 +78782,64716,Drama,1284153299 +78782,64716,Rosario Dawson,1284153314 +78782,64716,suicide,1284153317 +78782,64716,very slow,1284153310 +78782,64716,Will Smith,1284153313 +78782,64716,Woody Harrelson,1284153316 +78782,64969,Jim carrey,1253143086 +78782,64969,Zooey Deschanel,1251036098 +78782,64993,bittersweet,1328995354 +78782,64993,Japan,1328995346 +78782,64993,japanese,1328995343 +78782,64993,nature,1328995336 +78782,65088,Adam Sandler,1239924219 +78782,65155,Matthew McConaughey,1259538784 +78782,65230,dog,1245701559 +78782,65230,dogs,1245701566 +78782,65230,drama and commedy,1245701572 +78782,65418,dog,1287279180 +78782,65418,Kelly Reichardt,1287280354 +78782,65418,kindness of strangers,1287279156 +78782,65418,Michelle Williams,1287279193 +78782,65418,no soundtrack,1287279164 +78782,65418,non-hollywood,1287279291 +78782,65418,realism,1297319833 +78782,65418,slice of life,1287279171 +78782,65685,books,1330161874 +78782,65685,fantasy world,1330161871 +78782,66097,alternate reality,1278870127 +78782,66097,alternate universe,1278870129 +78782,66097,based on a book,1278870120 +78782,66097,claymation,1278870156 +78782,66097,Dakota Fanning,1278870145 +78782,66097,dark,1278870136 +78782,66097,gothic,1278870135 +78782,66097,Parallels worlds,1278870253 +78782,66097,slow,1278870248 +78782,66097,stop motion,1278870140 +78782,66097,Surreal,1278870142 +78782,66203,chick flick,1250040316 +78782,66203,sincerity,1250040322 +78782,66665,Characters with great depth,1280175517 +78782,66665,great soundtrack,1280175504 +78782,66665,road trip,1280175506 +78782,66665,sweet,1280175508 +78782,66934,great soundtrack,1403429762 +78782,66934,musical,1403429774 +78782,66934,Neil Patrick Harris,1403429754 +78782,67197,aliens,1271530705 +78782,67197,apocalypse,1271530662 +78782,67197,bad science,1271530621 +78782,67197,end of the world,1271530640 +78782,67197,father-son relationship,1271530622 +78782,67197,Nicolas Cage,1271530625 +78782,67197,Rose Byrne,1271530665 +78782,67267,Amy Adams,1280167523 +78782,68135,being a kid again,1261264830 +78782,68135,high school,1261264808 +78782,68135,Matthew Perry,1261264826 +78782,68135,Michelle Trachtenberg,1261264823 +78782,68135,Star Wars,1261264820 +78782,68358,action,1253677335 +78782,68358,adventure,1253677339 +78782,68358,alternate reality,1253677375 +78782,68358,big budget,1253677365 +78782,68358,far future,1253677384 +78782,68358,quick cuts,1253677357 +78782,68358,sci-fi,1253677340 +78782,68358,series reset,1253677346 +78782,68358,Star Trek,1253677333 +78782,68358,time travel,1253677370 +78782,68685,compassionate,1342731514 +78782,68685,non-discrimination,1342731529 +78782,68952,Alison Lohman,1251714996 +78782,68952,Justin Long,1251715003 +78782,68952,Sam Raimi,1251715000 +78782,69406,Alaska,1342470262 +78782,69406,Betty White,1342470261 +78782,69406,Sandra Bullock,1342470254 +78782,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1341428222 +78782,69606,Matthew McConaughey,1253397051 +78782,69712,Abigail Breslin,1268596808 +78782,69712,Alec Baldwin,1268596807 +78782,69712,Cameron Diaz,1268596804 +78782,69712,courtroom,1268596867 +78782,69712,genuine characters,1268596857 +78782,69712,Sofia Vassilieva,1268596846 +78782,69757,artistic,1266871605 +78782,69757,IMDB Top 250,1266871575 +78782,69757,Joseph Gordon-Levitt,1266871571 +78782,69757,quirky,1266871591 +78782,69757,Zooey Deschanel,1266871568 +78782,69805,Noah Wyle,1262653154 +78782,69805,vampires,1262653152 +78782,70295,Agnès Varda,1293632986 +78782,70295,autobiographical,1293632988 +78782,70305,AnnaSophia Robb,1330716666 +78782,70305,based on a book,1330716675 +78782,70567,asperger syndrome,1265022484 +78782,70567,Hugh Dancy,1265022487 +78782,70567,Rose Byrne,1265022490 +78782,70597,Paul Dano,1339964504 +78782,70597,quirky,1339964509 +78782,70597,Zooey Deschanel,1339964498 +78782,70599,Eric Bana,1264023659 +78782,70599,fate,1264025531 +78782,70599,heartbreaking,1264025523 +78782,70599,Rachel McAdams,1264023655 +78782,70599,time travel,1264023661 +78782,70687,Charlyne Yi,1290970971 +78782,70687,hybrid of documentary and comedy,1290970969 +78782,70687,Michael Cera,1290970974 +78782,70687,Nicholas Jasenovec,1290970977 +78782,70828,astronomy,1365005877 +78782,70828,science,1365005880 +78782,70828,space,1365005883 +78782,70912,Ramin Bahrani,1298482956 +78782,70912,Red West,1298408824 +78782,70912,Souleymane Sy Savane,1298408823 +78782,71057,interesting animation style,1262452420 +78782,71057,post-apocalyptic,1262452381 +78782,71057,sci-fi,1262452400 +78782,71057,survival,1262452385 +78782,71057,visually appealing,1262452389 +78782,71057,Visuals,1262452393 +78782,71106,Anna Faris,1290802945 +78782,71106,Chris O'Dowd,1290802943 +78782,71106,nerds,1290802924 +78782,71106,pub,1290802925 +78782,71106,time travel,1290802954 +78782,71131,Louis Theroux,1297061497 +78782,71248,Ben Affleck,1262728633 +78782,71248,Jason Bateman,1262728636 +78782,71248,Kristen Wiig,1262728652 +78782,71248,Mike Judge,1262728641 +78782,71248,Mila Kunis,1262728640 +78782,71318,good moral to the story,1269736540 +78782,71318,humans as the evil side,1269736537 +78782,71429,Bobcat Goldthwait,1337006288 +78782,71429,Robin Williams,1337006285 +78782,71518,Bechdel Test:Pass,1337890768 +78782,71518,Drew Barrymore,1337890771 +78782,72176,football,1262809896 +78782,72176,Patton Oswalt,1262809897 +78782,72176,sports,1262809918 +78782,72380,Cameron Diaz,1290213322 +78782,72380,James Marsden,1290213324 +78782,72380,no tension,1290213369 +78782,72641,based on a book,1272196076 +78782,72641,based on a true story,1272196048 +78782,72641,Sandra Bullock,1272196051 +78782,72641,true story,1272196053 +78782,72919,Elisabeth Moss,1267865827 +78782,72919,Marc Lawrence,1267865818 +78782,72919,Sarah Jessica Parker,1267865814 +78782,72919,small town,1267865829 +78782,72998,aliens,1267319253 +78782,72998,ecology,1267355278 +78782,72998,futuristic,1267319241 +78782,72998,graphic design,1267319245 +78782,72998,imdb top 250,1267319255 +78782,72998,James Cameron,1267319235 +78782,72998,long,1267355317 +78782,72998,military,1267319238 +78782,72998,morality,1267355329 +78782,72998,revolution,1267355291 +78782,72998,sci-fi,1267319231 +78782,72998,Sigourney Weaver,1267355287 +78782,72998,visually stunning,1267319262 +78782,72998,war,1267319266 +78782,73017,Atmospheric,1264017722 +78782,73017,Based on a book,1264017728 +78782,73017,Guy Ritchie,1264017536 +78782,73017,Jude Law,1264017720 +78782,73017,Mark Strong,1264017537 +78782,73017,Rachel McAdams,1264017531 +78782,73017,Robert Downey Jr.,1264017528 +78782,73290,dogs,1265837295 +78782,73290,Richard Gere,1265837294 +78782,73319,Amy Adams,1280064327 +78782,73319,Matthew Goode,1280064332 +78782,74154,Kristen Bell,1448145560 +78782,74416,loneliness,1341234677 +78782,74416,no soundtrack,1341234575 +78782,74416,realism,1341234580 +78782,74416,realistic,1341234587 +78782,74416,social conflicts,1341234518 +78782,74416,violent,1341234644 +78782,74450,Anne Hathaway,1278015534 +78782,74450,Ashton Kutcher,1278015510 +78782,74450,Bradley Cooper,1278015538 +78782,74450,George Lopez,1278015514 +78782,74450,Jamie Foxx,1278015515 +78782,74450,Jennifer Garner,1278015517 +78782,74450,Jessica Alba,1278015527 +78782,74450,Jessica Biel,1278015525 +78782,74450,Julia Roberts,1278015521 +78782,76158,Hirokazu Koreeda,1285613758 +78782,76173,odd,1297558402 +78782,76293,Mila Kunis,1278775515 +78782,76293,Steve Carell,1278775508 +78782,76293,Tina Fey,1278775511 +78782,79132,visually appealing,1289769775 +78782,79185,Cameron Diaz,1298682183 +78782,79946,consumerism,1336867822 +78782,80181,open content film,1289758965 +78782,80181,Open Source,1289758965 +78782,80185,road trip,1316199799 +78782,80185,travelogue,1316199801 +78782,80549,Emma Stone,1336874270 +78782,80590,business,1288039542 +78782,80590,Carey Mulligan,1288039536 +78782,80590,Michael Douglas,1288039534 +78782,80590,Shia LaBeouf,1288039537 +78782,80693,based on a book,1338314250 +78782,80693,bittersweet,1338314252 +78782,80693,coming of age,1338314229 +78782,80693,depression,1338314226 +78782,80693,Zach Galifianakis,1338314248 +78782,81537,road trip,1338305995 +78782,81537,Zach Galifianakis,1338305991 +78782,81562,loneliness,1341407049 +78782,81562,moving,1341414859 +78782,81562,nature,1341407035 +78782,81562,slow,1341407050 +78782,81562,soundtrack,1341407062 +78782,81562,stranded,1341407060 +78782,81562,true story,1341407040 +78782,81562,wilderness,1341407034 +78782,81791,Elle Fanning,1338895565 +78782,81791,Ending,1338895534 +78782,81791,loneliness,1338895542 +78782,81791,Sofia Coppola,1338895552 +78782,81791,sparse dialog,1338895561 +78782,82143,Alaska,1342363942 +78782,82143,wilderness,1342363936 +78782,82461,alternate reality,1299652003 +78782,82461,epic,1299652011 +78782,82461,futuristic,1299652013 +78782,82461,music,1299623355 +78782,82461,sci-fi,1299623350 +78782,84116,Chang-dong Lee,1296939961 +78782,84156,nature,1329067927 +78782,84156,Siberia,1329067897 +78782,84156,winter,1329067936 +78782,84954,based on a short story,1329605458 +78782,84954,Emily Blunt,1329605452 +78782,84954,Matt Damon,1329605453 +78782,84954,Philip K. Dick,1329605448 +78782,85213,dialogue driven,1329575992 +78782,85394,cave,1328914771 +78782,85394,documentary,1328914755 +78782,85394,human nature,1328914757 +78782,85394,Werner Herzog,1328914782 +78782,85401,disturbing,1338070658 +78782,85401,Ellen Page,1338070663 +78782,85401,Liv Tyler,1338070678 +78782,85401,Rainn Wilson,1338070664 +78782,85401,violent,1338070676 +78782,85414,adventure,1329613426 +78782,85414,Jake Gyllenhaal,1329613415 +78782,85414,parallel universe,1329613413 +78782,85414,romance,1329613418 +78782,85414,science fiction,1329613409 +78782,85414,time travel,1329613421 +78782,86293,Russell Brand,1341781638 +78782,86911,Zach Galifianakis,1338321353 +78782,88744,action,1338751854 +78782,88744,cgi,1338751982 +78782,88744,computer animation,1338751986 +78782,88744,Exciting,1338751864 +78782,88744,sci-fi,1338751870 +78782,88744,special effects,1338751844 +78782,88744,thought-provoking,1338751849 +78782,88744,thriller,1338751967 +78782,88744,touching,1338751874 +78782,88744,violence,1338751969 +78782,89039,Brit Marling,1448232776 +78782,89039,melancholic,1448232785 +78782,89039,visually appealing,1448232788 +78782,89864,Anna Kendrick,1337797511 +78782,89864,Bryce Dallas Howard,1337797517 +78782,89864,Joseph Gordon-Levitt,1337797163 +78782,89864,Seth Rogen,1337797503 +78782,89930,documentary,1341154721 +78782,89930,kindness,1341154714 +78782,89930,vigilante,1341154722 +78782,90405,social justice,1341305395 +78782,90405,thought-provoking,1341305685 +78782,90405,thriller,1341305691 +78782,90405,time,1341305697 +78782,90522,Funny,1336768992 +78782,90522,Rowan Atkinson,1336768995 +78782,90746,treasure hunt,1330198689 +78782,91500,adapted from:book,1377807497 +78782,91500,based on book,1377807491 +78782,91500,rich and poor,1377807488 +78782,91500,science fiction,1377807463 +78782,91500,social commentary,1377807475 +78782,91500,thriller,1377807483 +78782,91622,Charlize Theron,1336821411 +78782,91622,Patton Oswalt,1336821407 +78782,91622,writers,1336821404 +78782,91622,Writing,1336821398 +78782,91653,feel-good,1337457117 +78782,91653,Sense of Adventure,1337457117 +78782,92083,inspirational,1341147451 +78782,92083,meditation,1341146969 +78782,92335,Alaska,1342868860 +78782,92335,cooperation,1342817416 +78782,92335,Drew Barrymore,1342807217 +78782,92335,non-western culture,1342817353 +78782,92681,based on a book,1338400328 +78782,92681,beautiful scenery,1338400345 +78782,92681,Jules Verne,1338400339 +78782,93287,birding,1343211625 +78782,93287,birds,1343211628 +78782,93287,father-son relationship,1344502472 +78782,93287,Jack Black,1343211610 +78782,93287,landscapes,1343211635 +78782,93287,nature,1343211632 +78782,93287,Steve Martin,1343211621 +78782,93855,social criticism,1336952909 +78782,94780,adapted from:book,1355655369 +78782,94780,based on a book,1355655367 +78782,94780,beautiful cinematography,1355604572 +78782,94780,Bechdel Test:Pass,1355604580 +78782,94780,fairy tale,1355604594 +78782,94780,Kristen Stewart,1355604563 +78782,94780,magic,1355655358 +78782,94780,purity,1355655303 +78782,94780,subgenre:fairy tale,1355655341 +78782,94780,visuals,1355655337 +78782,95088,aubrey plaza,1354308919 +78782,95088,feel good,1354308913 +78782,95088,soundtrack,1354309290 +78782,95088,touching,1354308907 +78782,95088,Understated charm,1354308909 +78782,95717,based on a book,1356624967 +78782,95717,island,1356624970 +78782,96110,politics,1354908966 +78782,96110,Will Ferrell,1354908959 +78782,96110,Zach Galifianakis,1354908957 +78782,96655,future,1365420989 +78782,96655,gentle,1365420984 +78782,96655,robots,1365420994 +78782,96726,Greta Gerwig,1448158846 +78782,97393,compassionate,1402517549 +78782,97393,drugs,1402517338 +78782,97393,United States,1402517578 +78782,98065,chess,1413142448 +78782,98809,beautiful scenery,1358072365 +78782,98809,big budget,1358072371 +78782,98809,fantasy world,1358072376 +78782,98809,Tolkien,1358072385 +78782,99574,competition,1382216282 +78782,99574,environmental,1382216262 +78782,102171,Asian American,1367176276 +78782,102171,compassionate,1367176538 +78782,102171,meditative,1367176245 +78782,102445,fast paced,1377899743 +78782,102445,revenge,1377900782 +78782,102445,space,1377900779 +78782,103543,coming of age,1447515425 +78782,103543,Kristen Bell,1447520480 +78782,104841,physics,1387832653 +78782,104841,science,1387832663 +78782,104841,Simple,1387832665 +78782,104841,visually appealing,1387832659 +78782,104841,visually stunning,1387832677 +78782,104841,zero gravity,1387832680 +78782,113039,based on true story,1447541106 +78782,147402,Child-parent relationship,1448067029 +78782,147402,Coming of age,1448065657 +78782,147402,Kristen Bell,1448065647 +78785,318,twist ending,1285009968 +78785,2959,dark comedy,1285009983 +78785,2959,psychology,1285009986 +78785,2959,surreal,1285009988 +78785,31435,James McAvoy,1285009931 +78785,48780,twist ending,1285009991 +78785,49225,Documentary,1285015823 +78785,58559,Batman,1285009940 +78785,58559,psychology,1285009944 +78785,58559,superhero,1285009950 +78785,79132,action,1285009953 +78785,79132,alternate reality,1285009958 +78785,79132,surreal,1285009955 +78789,110553,3d,1400657029 +78789,110553,action,1400657038 +78789,110553,Andrew Garfield,1400657056 +78789,110553,comedy,1400657088 +78789,110553,costume design,1400657088 +78789,110553,costumed vigilante,1400657088 +78789,110553,soundtrack,1400657098 +78803,260,epic,1439274266 +78803,260,science fantasy,1439274271 +78803,260,special effects,1439274295 +78815,27592,Korean horror,1301460933 +78821,32,mindfuck,1442298859 +78821,32,Post apocalyptic,1442298865 +78821,32,twist ending,1442298855 +78821,296,Quentin Tarantino,1442297488 +78821,326,poignant,1442296983 +78821,1252,atmospheric,1442297308 +78821,1252,Roman Polanski,1442297305 +78821,2232,mindfuck,1442297857 +78821,2232,weird,1442297856 +78821,2357,alcoholism,1442296699 +78821,2357,bittersweet,1442296580 +78821,2357,brazil,1442296594 +78821,2357,bus,1442296601 +78821,2357,child selling,1442296603 +78821,2357,christians,1442296606 +78821,2357,compassionate,1442296738 +78821,2357,emotional,1442296677 +78821,2357,faith,1442296742 +78821,2357,father-son relationship,1442296744 +78821,2357,Fernanda Montenegro,1442296673 +78821,2357,heartwarming,1442296701 +78821,2357,literate,1442296676 +78821,2357,love,1442296599 +78821,2357,orphans,1442296684 +78821,2357,Religion,1442296597 +78821,2357,reviewed,1442296671 +78821,2357,Rio de Janeiro,1442296698 +78821,2357,road movie,1442296668 +78821,2357,road trip,1442296688 +78821,2357,UNLIKELY FRIENDSHIPS,1442296680 +78821,3949,atmospheric,1442297212 +78821,3949,depressing,1442297205 +78821,5995,Roman Polanski,1442297699 +78821,6016,multiple storylines,1442298784 +78821,6016,stylized,1442298792 +78821,7147,storytelling,1442297765 +78821,7147,surreal,1442297742 +78821,7254,Mystery,1442298025 +78821,48394,bittersweet,1442298908 +78821,48997,artistic,1442297814 +78821,59753,surreal,1442297556 +78821,59753,tragic,1442297558 +78821,72035,Jan Svankmajer,1442301586 +78821,74228,puzzle,1442299528 +78821,74228,Surreal,1442299524 +78821,74228,time loop,1442299526 +78821,74458,twist ending,1442299594 +78821,79357,nonlinear,1442297038 +78821,87721,Jan Svankmajer,1442301661 +78821,109161,Roman Polanski,1442296391 +78821,109487,Christopher Nolan,1442298220 +78821,113066,Jan Svankmajer,1442301635 +78827,260,don't want to see it,1432617359 +78827,260,have not seen it,1432617351 +78828,4007,Michael Douglas,1436724782 +78828,4007,Oliver Stone,1436724842 +78828,63436,franchise,1436285999 +78828,70286,aliens,1436267713 +78828,70286,social commentary,1436267770 +78828,91690,funny,1436278742 +78833,114494,hackers,1448749519 +78833,114494,hacking,1448749511 +78833,114494,twists & turns,1448749516 +78851,296,drugs,1420300323 +78851,296,gangster,1420300323 +78851,296,plot twist,1420300323 +78851,318,friendship,1426364053 +78851,318,prison escape,1426364053 +78851,318,very moving,1426364053 +78851,593,psychothriller,1425246834 +78851,593,scary,1425246834 +78851,593,suspenseful,1425246834 +78851,92259,emotional,1425246890 +78851,92259,friendship,1425246871 +78851,92259,soundtrack,1425246882 +78851,92259,touching,1425246874 +78851,114494,German,1428176397 +78851,114494,hacking,1428176374 +78851,114494,twists & turns,1428176382 +78851,115713,artificial intelligence,1431727528 +78851,115713,futuristic,1431727531 +78851,115713,sci-fi,1431727533 +78851,115996,mind twister,1415306838 +78865,8644,thought provoking,1265133364 +78873,32,imagination,1423849870 +78873,32,original,1423849850 +78873,32,post-apocalyptic,1423849844 +78873,32,sci-fi,1423849876 +78873,32,time travel,1423849842 +78873,32,twist ending,1423849846 +78873,260,old movie,1446302049 +78873,260,Star Wars,1446302058 +78873,316,action,1445878903 +78873,316,aliens,1445878885 +78873,316,mythology,1445878893 +78873,316,sci-fi,1445878888 +78873,316,science fiction,1445878890 +78873,316,smart,1445878914 +78873,316,space,1445878882 +78873,316,time travel,1445878929 +78873,316,wormhole,1445878919 +78873,379,time travel,1446320962 +78873,589,action,1446302473 +78873,589,artificial intelligence,1446302467 +78873,589,assassin,1446302488 +78873,589,computers,1446302515 +78873,589,future,1446302478 +78873,589,original plot,1446302512 +78873,589,robots,1446302470 +78873,589,sci-fi,1446302465 +78873,589,stylized,1446302490 +78873,589,Suspense,1446302494 +78873,589,time travel,1446302462 +78873,648,Action,1446332501 +78873,648,adventure,1446332536 +78873,648,big budget,1446332715 +78873,648,espionage,1446332499 +78873,648,gadgets,1446332572 +78873,648,Jean Reno,1446332525 +78873,648,plot twists,1446332508 +78873,648,spies,1446332504 +78873,648,thriller,1446332541 +78873,733,Action,1446301659 +78873,733,action packed,1446301647 +78873,733,biological warfare,1446301644 +78873,733,classic,1446301741 +78873,733,clever lines,1446301719 +78873,733,Nicolas Cage,1446301640 +78873,733,Sean Connery,1446301639 +78873,904,old,1423850898 +78873,908,classic,1423851329 +78873,908,old,1423851326 +78873,1036,1980's,1446302645 +78873,1036,action,1446302605 +78873,1036,action packed,1446302620 +78873,1036,Bruce Willis,1446302598 +78873,1036,humorous,1446302609 +78873,1036,old movie,1446302602 +78873,1036,tense,1446302616 +78873,1196,old movie,1446302013 +78873,1196,Star Wars,1446302071 +78873,1198,action,1446302166 +78873,1198,adventure,1446302158 +78873,1198,archaeology,1446302162 +78873,1198,atmospheric,1446302183 +78873,1198,comedy,1446302180 +78873,1198,good versus evil,1446302186 +78873,1198,Nazis,1446302170 +78873,1198,old movie,1446302119 +78873,1198,Steven Spielberg,1446302173 +78873,1198,treasure hunt,1446302178 +78873,1198,World War II,1446302198 +78873,1210,old movie,1446302090 +78873,1210,Star Wars,1446302095 +78873,1240,Action,1446302356 +78873,1240,androids,1446302370 +78873,1240,artificial intelligence,1446302351 +78873,1240,assassin,1446302367 +78873,1240,classic,1446302379 +78873,1240,future,1446302360 +78873,1240,old movie,1446302341 +78873,1240,robots,1446302358 +78873,1240,Sci-Fi,1446302347 +78873,1240,special effects,1446302406 +78873,1240,time travel,1446302344 +78873,1258,classic,1424720603 +78873,1258,cult film,1424720670 +78873,1258,disturbing,1424720635 +78873,1258,haunted house,1424720692 +78873,1258,Horror,1424720561 +78873,1258,paranormal,1424720709 +78873,1258,psychological,1424720558 +78873,1258,Psychological horror,1424720696 +78873,1258,too creepy,1424720623 +78873,1291,1940s,1446302260 +78873,1291,action,1446302241 +78873,1291,Adventure,1446302249 +78873,1291,archaeology,1446302237 +78873,1291,Nazis,1446302230 +78873,1291,old movie,1446302137 +78873,1291,Steven Spielberg,1446302226 +78873,1291,treasure hunt,1446302236 +78873,1356,aliens,1423852010 +78873,1356,Based on a TV show,1423852016 +78873,1356,Borg,1423852011 +78873,1356,Patrick Stewart,1423852018 +78873,1356,sci-fi,1423852014 +78873,1356,space,1423852020 +78873,1356,Star Trek,1423852006 +78873,1356,time travel,1423852008 +78873,1374,old,1423852153 +78873,1374,old movie,1423852163 +78873,1374,sci-fi,1423852109 +78873,1374,Science Fiction,1423852114 +78873,1374,space,1423852108 +78873,1374,Star Trek,1423852106 +78873,1527,action,1446301425 +78873,1527,aliens,1446301411 +78873,1527,Bruce Willis,1446301377 +78873,1527,cinematography,1446301553 +78873,1527,comics inspired,1446301498 +78873,1527,futuristic,1446301383 +78873,1527,humorous,1446301408 +78873,1527,Luc Besson,1446301542 +78873,1527,Milla Jovovich,1446301381 +78873,1527,race against time,1446301434 +78873,1527,sci-fi,1446301374 +78873,1527,visually appealing,1446301414 +78873,1653,atmospheric,1446321981 +78873,1653,drama,1446322038 +78873,1653,film noir,1446322022 +78873,1653,future,1446321908 +78873,1653,genetic engineering,1446321902 +78873,1653,genetics,1446321889 +78873,1653,intelligent,1446321928 +78873,1653,neo-noir,1446321984 +78873,1653,sad ending,1446321991 +78873,1653,sci-fi,1446321885 +78873,1653,science fiction,1446321918 +78873,1653,social commentary,1446321973 +78873,1653,space travel,1446321921 +78873,1653,thought-provoking,1446321891 +78873,1653,visually appealing,1446321900 +78873,2115,archaeology,1446302737 +78873,2115,mythology,1446302770 +78873,2115,old movie,1446302725 +78873,2115,Steven Spielberg,1446302734 +78873,2115,voodoo,1446302763 +78873,2605,heist,1423849581 +78873,2605,Sean Connery,1423849583 +78873,2808,action,1446320918 +78873,2808,cyborgs,1446320915 +78873,2808,Jean-Claude Van Damme,1446320916 +78873,2808,sci-fi,1446320928 +78873,2959,mental illness,1423850058 +78873,2959,twist ending,1423850132 +78873,2959,violent,1423850050 +78873,3156,artificial intelligence,1424467637 +78873,3156,exploration of humanity,1424467721 +78873,3156,future,1424467635 +78873,3156,philosophical,1424467713 +78873,3156,Robin Williams,1424467643 +78873,3156,robot,1424467660 +78873,3156,robots,1424467633 +78873,3156,sci-fi,1424467632 +78873,3156,science fiction,1424467639 +78873,3156,slow paced,1424467686 +78873,3275,cult classic,1445794290 +78873,3275,dark humor,1445794274 +78873,3275,gay,1445794344 +78873,3275,Mafia,1445794280 +78873,3275,organized crime,1445794278 +78873,3275,vengeance,1445794389 +78873,3275,vigilante,1445794412 +78873,3275,vigilantism,1445794276 +78873,3623,action,1423867766 +78873,3623,espionage,1423867744 +78873,3623,fast paced,1423867769 +78873,3623,suspense,1423867752 +78873,3717,carjacking,1445792732 +78873,3717,cars,1445792727 +78873,3717,clever,1445792764 +78873,3717,heist,1445792763 +78873,3717,Nicolas Cage,1445792730 +78873,3793,action,1446304084 +78873,3793,comic book,1446304082 +78873,3793,marvel,1446304086 +78873,3793,superheroes,1446304091 +78873,4052,computers,1445805421 +78873,4052,corporate espionage,1445805429 +78873,4052,software developers,1445805425 +78873,4369,cars,1424376832 +78873,4369,Paul Walker,1424376842 +78873,4369,street race,1424376839 +78873,4720,atmospheric,1446322634 +78873,4720,clever,1446322664 +78873,4720,dark,1446322658 +78873,4720,death,1446322686 +78873,4720,foggy,1446322697 +78873,4720,ghosts,1446322632 +78873,4720,haunted house,1446322645 +78873,4720,Horror,1446322649 +78873,4720,Nicole Kidman,1446322638 +78873,4720,scary,1446322666 +78873,4720,twist ending,1446322676 +78873,4878,alternate timeline,1423849910 +78873,4878,atmospheric,1423849931 +78873,4878,dreamlike,1423849919 +78873,4878,mindfuck,1446303215 +78873,4878,original,1423849901 +78873,4878,sci-fi,1423849911 +78873,4878,surreal,1423849897 +78873,4878,thought-provoking,1423849899 +78873,4878,time travel,1423849895 +78873,4878,twist ending,1423849914 +78873,4878,weird,1446303205 +78873,4963,casino,1423849513 +78873,4963,heist,1423849506 +78873,4973,cult film,1423850921 +78873,4973,drama,1423850932 +78873,5349,Action,1446304122 +78873,5349,alter ego,1446304164 +78873,5349,Comic book,1446304118 +78873,5349,double life,1446304167 +78873,5349,marvel,1446304163 +78873,5349,super hero,1446304151 +78873,5349,super-hero,1446304130 +78873,5349,superhero,1446304116 +78873,5349,Tobey Maguire,1446304134 +78873,5445,action,1446322211 +78873,5445,artificial intelligence,1446322138 +78873,5445,corruption,1446322142 +78873,5445,future,1446322146 +78873,5445,futuristic,1446322118 +78873,5445,mystery,1446322144 +78873,5445,Precognition,1446322215 +78873,5445,sci-fi,1446322116 +78873,5445,science fiction,1446322193 +78873,5445,Steven Spielberg,1446322155 +78873,5445,surveillance,1446322209 +78873,5445,thought provoking,1446322175 +78873,5459,adventurous,1445794732 +78873,5459,aliens,1445794716 +78873,5459,comedy,1445794712 +78873,5459,conspiracy,1445794714 +78873,5459,sci-fi,1445794717 +78873,5459,scifi,1445794724 +78873,5459,secret gov't agency works with and hides aliens,1445794729 +78873,5459,Tommy Lee Jones,1445794710 +78873,5459,Will Smith,1445794708 +78873,5944,aliens,1423852040 +78873,5944,sci-fi,1423852037 +78873,5944,space,1423852036 +78873,6016,multiple storylines,1423851769 +78873,6157,Action,1445793464 +78873,6157,dark hero,1445793451 +78873,6157,heroine in tight suit,1445793461 +78873,6157,Jennifer Garner,1445793453 +78873,6157,marvel,1445793455 +78873,6157,superhero,1445793448 +78873,6266,Amanda Bynes,1446301047 +78873,6266,Colin Firth,1446301027 +78873,6266,funny,1446301020 +78873,6266,teen movie,1446301000 +78873,6294,kung fu,1445793581 +78873,6294,supernatural powers,1445793546 +78873,6373,comedy,1446305226 +78873,6373,fantasy,1446305235 +78873,6373,funny,1446305232 +78873,6373,Jim Carrey,1446305224 +78873,6373,Morgan Freeman,1446305228 +78873,6378,action,1423849550 +78873,6378,car chase,1423849545 +78873,6378,cars,1423849547 +78873,6378,Charlize Theron,1445792798 +78873,6378,heist,1423849541 +78873,6378,Jason Statham,1445792799 +78873,6378,robbery,1445792801 +78873,6378,twists & turns,1423849554 +78873,6383,street race,1424376732 +78873,6537,androids,1446302549 +78873,6537,Arnold Schwarzenegger,1446302545 +78873,6537,artificial intelligence,1446302543 +78873,6537,assassin,1446302568 +78873,6537,car chase,1446302551 +78873,6537,special effects,1446302565 +78873,6537,time travel,1446302539 +78873,7142,Jessica Alba,1445794087 +78873,7142,no plot,1445794101 +78873,7163,predict future,1445985099 +78873,7163,sci-fi,1445985077 +78873,7163,Uma Thurman,1445985083 +78873,7254,alternate endings,1423850981 +78873,7254,alternate reality,1423850956 +78873,7254,intense,1423850958 +78873,7254,memory,1423850973 +78873,7254,Mystery,1423850970 +78873,7254,sci-fi,1423850959 +78873,7254,science fiction,1423850975 +78873,7254,suspense,1423850964 +78873,7254,time travel,1423850966 +78873,7254,twists & turns,1423850961 +78873,7258,friendship relations,1446321006 +78873,7258,funny,1446321013 +78873,7258,heist,1446321003 +78873,7258,Scarlett Johansson,1446321002 +78873,8371,action,1423849224 +78873,8371,sci-fi,1423849222 +78873,8371,superhero,1423849235 +78873,8644,artificial intelligence,1423848852 +78873,8644,future,1423848856 +78873,8644,robots,1423848849 +78873,8644,sci-fi,1423848851 +78873,8644,Will Smith,1423849037 +78873,8984,clever,1445793135 +78873,8984,Heist,1445793098 +78873,8984,Robbery,1445793106 +78873,31221,Jennifer Garner,1445793428 +78873,31221,marvel,1445793435 +78873,31221,superhero,1445793425 +78873,33004,absurd,1445878626 +78873,33004,humor,1445878607 +78873,33004,sarcasm,1445878603 +78873,33004,sci-fi,1445878597 +78873,33004,space,1445878600 +78873,33004,space travel,1445878613 +78873,34319,action,1423849020 +78873,34319,cloning,1423849013 +78873,34319,future,1423849009 +78873,34319,genetics,1445793658 +78873,34319,immortality,1445793663 +78873,34319,Scarlett Johansson,1423848994 +78873,34319,sci-fi,1423848998 +78873,34319,surprise ending,1423849004 +78873,34405,adventure,1423851539 +78873,34405,sci-fi,1423851535 +78873,36529,guns,1423850810 +78873,36529,narrated,1423850818 +78873,36529,Nicolas Cage,1423850787 +78873,36529,political,1423850816 +78873,36529,World Politics,1423850814 +78873,45447,adventure,1426384138 +78873,45447,Audrey Tautou,1426384001 +78873,45447,book,1426384143 +78873,45447,conspiracy theory,1426384009 +78873,45447,Dan Brown,1426384154 +78873,45447,Jean Reno,1426383989 +78873,45447,original plot,1426384026 +78873,45447,religion,1426384132 +78873,45447,treasure hunt,1426384108 +78873,45672,Adam Sandler,1446305251 +78873,45672,comedy,1446305248 +78873,45672,future,1446305286 +78873,45672,philosophy,1446305290 +78873,45672,second chance,1446305254 +78873,46335,cars,1424376756 +78873,46335,Japan,1424376770 +78873,46335,racing,1424376762 +78873,46335,street race,1424376764 +78873,46335,Tokyo,1424376767 +78873,46972,Ben Stiller,1446408635 +78873,46972,fantasy,1446408648 +78873,46972,Robin Williams,1446408630 +78873,47200,action,1446332105 +78873,47200,action packed,1446332075 +78873,47200,adrenaline,1446332077 +78873,47200,drugs,1446332087 +78873,47200,Jason Statham,1446332097 +78873,47200,plotless,1446332082 +78873,48516,action,1446331852 +78873,48516,ensemble cast,1446331829 +78873,48516,Martin Scorsese,1446331811 +78873,48516,suspense,1446331831 +78873,49286,chick flick,1446330441 +78873,49286,lovely characters,1446330498 +78873,49286,multiple storylines,1446330476 +78873,49286,sappy,1446330575 +78873,51077,Comic Book,1446305108 +78873,51077,Marvel,1446305081 +78873,51077,Nicolas Cage,1446305076 +78873,51077,superhero,1446305120 +78873,51255,action,1423867840 +78873,51255,dark comedy,1423867834 +78873,51255,parody,1423867878 +78873,51412,action,1424467842 +78873,51412,bad ending,1424467851 +78873,51412,jessica biel,1424467924 +78873,51412,Nicolas Cage,1424467884 +78873,51412,original plot,1424468004 +78873,51412,plot twist,1424467836 +78873,51412,psychic powers,1424467839 +78873,51412,supernatural powers,1424467834 +78873,51412,time travel,1424467832 +78873,51662,action,1424282323 +78873,51662,atmospheric,1424282321 +78873,51662,comic book,1424282325 +78873,51662,computer animation,1424282390 +78873,51662,male nudity,1424282346 +78873,51662,narrated,1424282357 +78873,53322,Heist,1445793148 +78873,54001,based on a book,1423850164 +78873,54001,fantasy,1423850172 +78873,54001,magic,1423850161 +78873,54272,animation,1424282280 +78873,54272,simpsons,1424282287 +78873,55908,dialogue,1446321798 +78873,55908,empirical,1446321821 +78873,55908,entirely dialogue,1446321784 +78873,55908,food for thought,1446321807 +78873,55908,immortality,1446321765 +78873,55908,intellectual,1446321752 +78873,55908,narration,1423850848 +78873,55908,open ending,1446321804 +78873,55908,philosophical,1446321750 +78873,55908,sci-fi,1446321758 +78873,55908,science fiction,1446321844 +78873,55908,smart,1446321814 +78873,55908,story telling,1423848470 +78873,55908,thought-provoking,1423848463 +78873,55908,unique,1446321781 +78873,55908,what if...,1446321858 +78873,58025,action,1445878256 +78873,58025,concept,1445878321 +78873,58025,escape,1445878252 +78873,58025,Hayden Christensen,1445878238 +78873,58025,Rachel Bilson,1445878229 +78873,58025,superhero,1445878223 +78873,58025,teleportation,1445878184 +78873,59369,action,1446301797 +78873,59369,action packed,1446301835 +78873,59369,agent,1446301831 +78873,59369,car chase,1446301828 +78873,59369,CIA,1446301813 +78873,59369,espionage,1446301821 +78873,59369,father daughter relationship,1446301848 +78873,59369,fight scenes,1446301806 +78873,59369,happy ending,1446301840 +78873,59369,kidnapping,1446301816 +78873,59369,Liam Neeson,1446301795 +78873,59369,revenge,1446301801 +78873,59369,special forces,1446301837 +78873,59369,thriller,1446301803 +78873,59369,torture,1446301887 +78873,59392,michael shanks,1446303050 +78873,59392,sci-fi,1446302913 +78873,59392,space,1446302916 +78873,59392,Stargate,1446302918 +78873,60069,adventure,1423850516 +78873,60069,animated,1423850490 +78873,60069,Animation,1423850482 +78873,60069,artificial intelligence,1423850479 +78873,60069,beautiful scenery,1423850487 +78873,60069,Future,1423850514 +78873,60069,last man on earth,1423850511 +78873,60069,Post apocalyptic,1423850472 +78873,60069,post-apocalyptic,1423850474 +78873,60069,robots,1423850476 +78873,60069,romance,1423850520 +78873,60069,Sci-Fi,1423850484 +78873,60069,social commentary,1423850525 +78873,60069,space,1423850523 +78873,60074,anti-hero,1445793495 +78873,60074,Charlize Theron,1445793485 +78873,60074,innovative,1445793504 +78873,60074,plot twist,1445793480 +78873,60074,superhero,1445793474 +78873,60074,Will Smith,1445793473 +78873,60126,Anne Hathaway,1424721791 +78873,60126,car chase,1424721828 +78873,60126,espionage,1424721793 +78873,60126,funny,1424721841 +78873,60126,parody,1424721801 +78873,60126,secret service,1424721799 +78873,61160,animation,1446302837 +78873,61160,Star Wars,1446302834 +78873,61248,cars with weapons,1445792894 +78873,61248,Jason Statham,1445792906 +78873,61248,Natalie Martinez,1445792948 +78873,61248,video game like,1445792897 +78873,61323,memoir,1446321586 +78873,61323,misleading name,1446321507 +78873,61323,stupid criminals,1446321501 +78873,61323,stupidity,1423849403 +78873,62081,action packed,1424375586 +78873,62081,artificial intelligence,1424375576 +78873,62081,believable motivation,1424375615 +78873,62081,FBI pursuit,1424375625 +78873,62081,shia labeouf,1424375631 +78873,62081,surveillance,1424375579 +78873,62081,wrongly accused,1424375690 +78873,62113,career,1446319457 +78873,62113,different,1446319452 +78873,62113,Megan Fox,1446319420 +78873,64030,action,1424377002 +78873,64030,cars,1424377005 +78873,64030,Jason Statham,1424377008 +78873,65682,action,1424466489 +78873,65682,prequel,1424466496 +78873,67923,cars,1424376646 +78873,67923,Racing,1424376649 +78873,68319,action,1424466605 +78873,68319,bad plot,1424466624 +78873,68319,comic book,1424466607 +78873,68319,inconsistent with other movies,1424466617 +78873,68319,prequel,1424466650 +78873,68319,sci-fi,1424466601 +78873,68319,superhero,1424466603 +78873,68319,superpower,1424466657 +78873,68319,unfaithful to source material,1424466647 +78873,68319,Wolverine,1424466656 +78873,68358,action,1423851909 +78873,68358,adventure,1423851948 +78873,68358,alternate reality,1423851946 +78873,68358,big budget,1423851952 +78873,68358,far future,1423851970 +78873,68358,fast paced,1423851991 +78873,68358,future,1423851950 +78873,68358,plot twist,1423851975 +78873,68358,reboot,1423851942 +78873,68358,sci fi,1423851954 +78873,68358,sci-fi,1423851908 +78873,68358,space,1423851906 +78873,68358,space travel,1423851933 +78873,68358,Star Trek,1423851902 +78873,68358,teleportation,1423851987 +78873,68358,time travel,1423851904 +78873,68358,visually appealing,1423851976 +78873,69122,absurd,1423850603 +78873,69122,casino,1423850583 +78873,69122,comedy,1423850581 +78873,69122,flashbacks,1423850611 +78873,69122,stupid stereotypes,1423850562 +78873,70599,Rachel McAdams,1445792241 +78873,70599,sad,1445792260 +78873,70599,time travel,1445792238 +78873,71530,alternate reality,1423849090 +78873,71530,Bruce Willis,1423849054 +78873,71530,future,1423849085 +78873,71530,robots,1423849083 +78873,71530,sci-fi,1423849048 +78873,71530,surreal,1423849066 +78873,71530,technology,1423849069 +78873,72998,aliens,1423851384 +78873,72998,beautiful scenery,1423851389 +78873,72998,cgi,1423851393 +78873,72998,effects,1423851397 +78873,72998,futuristic,1423851363 +78873,72998,military,1423851391 +78873,72998,sci-fi,1423851361 +78873,72998,thought-provoking,1423851413 +78873,73017,Action,1423867501 +78873,73017,adventure,1423867542 +78873,73017,Atmospheric,1423867496 +78873,73017,clever,1423867694 +78873,73017,comic book,1423867630 +78873,73017,fast paced,1423867666 +78873,73017,illusion,1423867687 +78873,73017,magic/illusion/mysticism,1423867675 +78873,73017,martial arts,1423867509 +78873,73017,Mystery,1423867504 +78873,73017,plot,1423867546 +78873,73017,Rachel McAdams,1423867493 +78873,73017,Robert Downey Jr.,1423867482 +78873,73017,Sherlock Holmes,1423867486 +78873,73017,story,1423867697 +78873,73017,twists,1423867594 +78873,73017,Victorian,1423867515 +78873,73017,Victorian era,1423867553 +78873,74740,dialogue driven,1446322374 +78873,74740,mathematics,1446322371 +78873,74740,maths,1446322378 +78873,74740,psychological,1446322511 +78873,74740,puzzling,1446322381 +78873,74740,suspense,1446322384 +78873,74740,thriller,1446322404 +78873,76093,animated,1423850402 +78873,77561,action,1424282472 +78873,77561,based on a comic,1424282448 +78873,77561,cgi,1424282469 +78873,77561,comic book,1424282451 +78873,77561,humor,1424282459 +78873,77561,Robert Downey Jr.,1424282443 +78873,77561,Scarlett Johansson,1424282446 +78873,77561,sci-fi,1424282453 +78873,77561,sequel,1424282455 +78873,77561,superhero,1424282444 +78873,78041,action,1446300915 +78873,78041,funny,1446300902 +78873,78041,Katherine Heigl,1446300773 +78873,78041,silly,1446300796 +78873,78349,confusing ending,1446322496 +78873,78349,dialogue driven,1446322460 +78873,78349,experiment,1446322455 +78873,78349,great story,1446322490 +78873,78349,group psychology,1446322452 +78873,78349,logic,1446322472 +78873,78349,mindfuck,1446322463 +78873,78349,psychological,1446322458 +78873,78349,torture,1446322486 +78873,78349,violence,1446322477 +78873,78499,adventure,1423851856 +78873,78499,animation,1423851846 +78873,79091,animation,1423850429 +78873,79132,action,1424465989 +78873,79132,adventure,1424466061 +78873,79132,alternate reality,1424465974 +78873,79132,clever,1424466000 +78873,79132,complicated,1424465984 +78873,79132,epic,1424466080 +78873,79132,heist,1424465994 +78873,79132,interesting,1424466051 +78873,79132,mind games,1424466048 +78873,79132,mystery,1424466067 +78873,79132,original,1424466100 +78873,79132,original plot,1424466092 +78873,79132,sci fi,1424466072 +78873,79132,sci-fi,1424465990 +78873,79132,science fiction,1424466103 +78873,79132,special effects,1424466053 +78873,79132,suspense,1424465997 +78873,79132,thought-provoking,1424465980 +78873,79132,twist ending,1424466027 +78873,79132,unpredictable,1424466118 +78873,79132,visually appealing,1424465977 +78873,79139,action,1424465457 +78873,79139,car chase,1424465426 +78873,79139,fantasy world,1424465430 +78873,79139,magic,1424465387 +78873,79139,Nicolas Cage,1424465384 +78873,79139,predictable,1424465464 +78873,79139,Teresa Palmer,1424465416 +78873,79139,The Chosen One,1424465472 +78873,79293,Angelina Jolie,1424375775 +78873,79293,boring,1424375749 +78873,79293,espionage,1424375735 +78873,79293,terrible acting,1424375795 +78873,81229,aging,1423851024 +78873,81229,bad plot,1423851006 +78873,81229,conspiracy,1423851013 +78873,81229,unbelievable,1423851022 +78873,81564,animated,1423850771 +78873,81564,animation,1423850766 +78873,81564,anti-hero,1423850758 +78873,81564,Dreamworks,1446408577 +78873,81564,funny,1423850755 +78873,81564,superhero,1423850762 +78873,81564,superheroes,1423850760 +78873,82461,alternate reality,1423849172 +78873,82461,artificial intelligence,1423849177 +78873,82461,epic,1423849179 +78873,82461,futuristic,1423849166 +78873,82461,Olivia Wilde,1423849186 +78873,82461,sci-fi,1423849174 +78873,82461,virtual reality,1423849160 +78873,82461,visually appealing,1423849162 +78873,83349,Cameron Diaz,1445793340 +78873,83349,gadgets,1445793348 +78873,83349,lighthearted,1445793387 +78873,83349,parody,1445793330 +78873,83349,Unlikable protagonist,1445793364 +78873,83349,visually appealing,1445793336 +78873,84152,Bradley Cooper,1423850307 +78873,84152,clever,1423850325 +78873,84152,concept,1423851259 +78873,84152,human potential,1423850284 +78873,84152,interesting concept,1423851186 +78873,84152,interesting premise,1423851190 +78873,84152,Robert De Niro,1423850311 +78873,84152,smart,1423850277 +78873,84152,thought provoking,1423850282 +78873,84152,twists,1423850336 +78873,84152,visual effects,1423850292 +78873,84152,visually appealing,1423850295 +78873,84954,doors as portals,1445881565 +78873,84954,Matt Damon,1445881580 +78873,84954,original plot,1445881478 +78873,84954,sci-fi,1445881527 +78873,84954,sexy leading actresses,1445881804 +78873,84954,slow,1445881635 +78873,85414,concept,1423851292 +78873,85414,happy ending,1423851105 +78873,85414,intelligent,1423851085 +78873,85414,interesting,1423851089 +78873,85414,interesting concept,1423851148 +78873,85414,original,1423851122 +78873,85414,parallel universe,1423851068 +78873,85414,science fiction,1423851079 +78873,85414,suspense,1423851081 +78873,85414,time loop,1423851077 +78873,85414,time travel,1423851070 +78873,85414,twist ending,1423851072 +78873,85414,twists & turns,1423851094 +78873,86332,action,1445791982 +78873,86332,mythology,1445791884 +78873,86332,Natalie Portman,1445791968 +78873,86332,Special Effects,1445791974 +78873,86332,superhero,1445791882 +78873,87430,alien contact,1446303678 +78873,87430,cheesy,1446303718 +78873,87430,comic book,1446303657 +78873,87430,DC Comics,1446303695 +78873,87430,government agencies,1446303672 +78873,87430,space,1446303646 +78873,87430,superhero,1446303650 +78873,87430,superpowers,1446303644 +78873,87430,willpower,1446303668 +78873,88140,action,1446304929 +78873,88140,Marvel,1446304924 +78873,88140,Nazis,1446304932 +78873,88140,superhero,1446304925 +78873,88140,The Avengers,1446304934 +78873,88140,world war ii,1446304927 +78873,88163,comedy,1424374656 +78873,88163,dysfunctional family,1424374839 +78873,88163,mentor/trainer,1424374737 +78873,88163,multiple storylines,1424375007 +78873,88163,too long,1424374821 +78873,88163,unrealistic ending,1424374773 +78873,89745,action,1423850659 +78873,89745,comic book,1423850642 +78873,89745,humor,1423850662 +78873,89745,Marvel,1423850634 +78873,89745,Robert Downey Jr.,1423850640 +78873,89745,Scarlett Johansson,1423850636 +78873,89745,superhero,1423850632 +78873,89745,superhero team,1423850653 +78873,89745,visually appealing,1423850644 +78873,90405,concept,1423848801 +78873,90405,future,1423848742 +78873,90405,immortality,1423848735 +78873,90405,interesting concept,1423851235 +78873,90405,original,1423850266 +78873,90405,sci-fi,1423848732 +78873,90405,social commentary,1423848835 +78873,90405,thought-provoking,1423848739 +78873,90405,time,1423848789 +78873,90405,Time Currency Concept,1423848782 +78873,90746,action,1424282621 +78873,90746,animation,1424282599 +78873,90746,comic book,1424282605 +78873,90746,motion capture,1424282638 +78873,90746,treasure hunt,1424282603 +78873,91273,comiclike,1423852555 +78873,91273,martial arts,1423852520 +78873,91273,narrated,1423852552 +78873,91273,post-apocalyptic,1423852522 +78873,91630,action,1446332419 +78873,91630,cinematography,1446332445 +78873,91630,cool gadgets,1446332428 +78873,91630,espionage,1446332421 +78873,91630,spy team,1446332426 +78873,91630,Tom Cruise,1446332416 +78873,91630,visuals,1446332433 +78873,91660,alien invasion,1446321381 +78873,91660,aliens,1446321370 +78873,91660,Characters,1446321390 +78873,91660,Moscow,1446321369 +78873,91660,story,1446321392 +78873,91660,stranded,1446321372 +78873,91978,clever,1446304704 +78873,91978,Génesis Rodríguez,1446304689 +78873,91978,heist,1446304642 +78873,91978,suspense,1446304695 +78873,92420,predictable ending,1423868030 +78873,92420,sci-fi,1423867941 +78873,92420,shaky camera,1423868007 +78873,92420,strange,1423867960 +78873,92420,supernatural powers,1423867946 +78873,92420,telekinesis,1423867955 +78873,93326,action,1446300863 +78873,93326,cliche,1446300841 +78873,93326,funny,1446300828 +78873,93326,Reese Witherspoon,1446300821 +78873,93326,silly scenes,1446300880 +78873,93326,spy,1446300816 +78873,94018,alien invasion,1446320751 +78873,94018,aliens,1446320761 +78873,94018,bad science,1446320759 +78873,94018,big budget,1446320879 +78873,94018,cheesy,1446320766 +78873,94018,implausible,1446320845 +78873,94018,Liam Neeson,1446320827 +78873,94018,military,1446320764 +78873,94018,Navy,1446320771 +78873,94018,Poor Plot,1446320770 +78873,94018,Rihanna,1446320837 +78873,94018,sci-fi,1446320752 +78873,94018,ship,1446320832 +78873,94018,silly,1446320830 +78873,94018,special effects,1446320758 +78873,94864,exploration,1423848604 +78873,94864,plot hole,1423848634 +78873,94864,religion,1423848614 +78873,94864,sci-fi,1423848589 +78873,94864,scifi,1423848586 +78873,95441,bromance,1445794541 +78873,95441,crude humor,1445794491 +78873,95441,drugs,1445794508 +78873,95441,Mila Kunis,1445794489 +78873,95441,overrated,1445794535 +78873,95441,pointless,1445794552 +78873,95875,action,1445793699 +78873,95875,espionage,1445793713 +78873,95875,future,1423849114 +78873,95875,futuristic,1445793803 +78873,95875,Jessica Biel,1423849128 +78873,95875,memory,1423849122 +78873,95875,Sci-fi,1423849110 +78873,95875,science fiction,1423849118 +78873,95875,visually appealing,1445793705 +78873,96610,bad science,1423849993 +78873,96610,original,1423849979 +78873,96610,plot holes,1423850035 +78873,96610,pointless plot,1423849991 +78873,96610,sci-fi,1423849972 +78873,96610,time travel,1423849970 +78873,97752,dystopian future,1446056171 +78873,97752,future,1446056047 +78873,97752,multiple storylines,1446056038 +78873,97752,philosophy,1446056050 +78873,97752,plot holes,1446056163 +78873,97752,sci-fi,1446056042 +78873,97752,social commentary,1446056146 +78873,97752,social criticism,1446056121 +78873,97752,thought-provoking,1446056113 +78873,97752,Tom Hanks,1446056128 +78873,97752,too long,1446056133 +78873,97752,visually appealing,1446056105 +78873,99112,Action,1424282893 +78873,99112,investigation,1424282891 +78873,99112,Tom Cruise,1424282913 +78873,100163,action,1424282953 +78873,100163,entertaining concept,1424282956 +78873,100163,Gemma Arterton,1424282938 +78873,100163,magic,1424282949 +78873,101362,Action,1424376059 +78873,101362,Morgan Freeman,1424376023 +78873,101362,Special Effects,1424376015 +78873,101864,action,1446319677 +78873,101864,adventure,1446319670 +78873,101864,aliens,1446319672 +78873,101864,atmospheric,1446319660 +78873,101864,clones,1446319676 +78873,101864,drones,1446319691 +78873,101864,future,1446319664 +78873,101864,memory loss,1446319737 +78873,101864,Morgan Freeman,1446319688 +78873,101864,Olga Kurylenko,1446319689 +78873,101864,plot holes,1446319716 +78873,101864,Predictable,1446319702 +78873,101864,sci-fi,1446319657 +78873,101864,space,1446319666 +78873,101864,technology,1446319668 +78873,101864,Tom Cruise,1446319662 +78873,101864,Twist,1446319700 +78873,102880,aliens,1446321288 +78873,102880,bad acting,1446321312 +78873,102880,boring,1446321286 +78873,102880,future,1446321291 +78873,102880,good effects,1446321321 +78873,102880,Jaden Smith,1446321309 +78873,102880,sci-fi,1446321295 +78873,102880,space,1446321297 +78873,102880,Will Smith,1446321305 +78873,102903,clever,1423849476 +78873,102903,deception,1446304614 +78873,102903,entertaining,1423849442 +78873,102903,heist,1423849487 +78873,102903,illusions,1423849448 +78873,102903,magic,1423849460 +78873,102903,Morgan Freeman,1423849445 +78873,102903,stage magic,1423849458 +78873,102903,surprise ending,1423849456 +78873,103042,alien invasion,1446303766 +78873,103042,comic book,1446303774 +78873,103042,DC Comics,1446303785 +78873,103042,Henry Cavill,1446303874 +78873,103042,intelligent epic,1446303884 +78873,103042,sci fi,1446303805 +78873,103042,sci-fi,1446303803 +78873,103042,superhero,1446303743 +78873,103042,Superman,1446303745 +78873,103042,visually appealing,1446303741 +78873,103228,bad acting,1424376502 +78873,103228,bad plot,1424376489 +78873,103228,disappointing,1424376518 +78873,103228,giant robots,1424376441 +78873,103228,ridiculous,1424376455 +78873,103228,robots,1424376467 +78873,103228,sci-fi,1424376448 +78873,103228,silly,1424376473 +78873,103253,poverty,1423848706 +78873,103253,sci-fi,1423848696 +78873,103253,science fiction,1423848685 +78873,103253,shallow characters,1423848712 +78873,103339,action,1424375920 +78873,103339,hacking,1424375934 +78873,103339,thriller,1424375956 +78873,104841,bad science,1423848561 +78873,104841,isolation,1423849302 +78873,104841,plot,1423848550 +78873,104841,sandra bullock,1423848554 +78873,104841,slow action,1423849296 +78873,104841,space,1423848538 +78873,106002,action,1446056391 +78873,106002,sci-fi,1446056371 +78873,106002,space,1446056363 +78873,106002,True to the book,1446056373 +78873,106002,twist ending,1446056367 +78873,106642,clever,1423849746 +78873,106642,Doctor Who,1423849729 +78873,106642,intelligent,1423849755 +78873,106642,sci-fi,1423849733 +78873,106642,time,1423849739 +78873,106642,time travel,1423849731 +78873,107406,cannibalism,1446055856 +78873,107406,innovative,1446055870 +78873,107406,perpetual-motion,1446055833 +78873,107406,revolution,1446055903 +78873,107406,sci-fi,1446055865 +78873,108188,Action,1446332322 +78873,108188,Keira Knightley,1446332311 +78873,109487,Anne Hathaway,1427629006 +78873,109487,artificial intelligence,1427629022 +78873,109487,plot holes,1427629040 +78873,109487,relativity,1427628972 +78873,109487,sci-fi,1427628984 +78873,109487,science fiction,1427629096 +78873,109487,thought-provoking,1427628974 +78873,109487,time travel,1427629088 +78873,109487,time-travel,1427628969 +78873,109487,visually appealing,1427629105 +78873,109487,wormhole,1427628976 +78873,111360,dumb science,1427629210 +78873,111360,fast paced action,1427629193 +78873,111360,Scarlett Johansson,1427629176 +78873,111360,sci-fi,1427629235 +78873,111360,woman lead,1427629225 +78873,112370,Special Effects,1423849333 +78873,112370,superhero,1423849329 +78873,112370,transformers,1423849330 +78873,112623,action,1446055781 +78873,112623,emotional,1446055744 +78873,112623,sad,1446055775 +78873,112623,sci-fi,1446055729 +78873,112623,talking animals,1446055739 +78873,112852,Action,1446331447 +78873,112852,adventure,1446331424 +78873,112852,comic book,1446331435 +78873,112852,humorous,1446331453 +78873,112852,Marvel,1446331417 +78873,112852,raccoon,1446331456 +78873,112852,sci-fi,1446331413 +78873,112852,science fiction,1446331431 +78873,112852,space,1446331426 +78873,112852,space opera,1446331459 +78873,112852,talking animals,1446331438 +78873,113345,action,1446321201 +78873,113345,good vs evil,1446321221 +78873,113345,industry,1446321223 +78873,113345,Mila Kunis,1446321243 +78873,113345,royalty,1446321207 +78873,113345,sci-fi,1446321199 +78873,113345,science fiction,1446321259 +78873,113345,space,1446321209 +78873,113345,Space Opera,1446321204 +78873,113345,special effects,1446321225 +78873,113348,action,1423931022 +78873,113348,dumb plot,1423931007 +78873,113348,Megan Fox,1423930955 +78873,113348,superhero,1423930932 +78873,113348,superhero team,1423930936 +78873,113348,superheroes,1423930934 +78873,113573,black and white,1424375179 +78873,113573,Jessica Alba,1424375162 +78873,113573,multiple storylines,1424375153 +78873,114762,Analeigh Tipton,1446062601 +78873,114762,comedy,1446062603 +78873,115617,Animation,1445794247 +78873,115713,artificial intelligence,1446303311 +78873,115713,bitter,1446303512 +78873,115713,Contemplative,1446303497 +78873,115713,Drama,1446303325 +78873,115713,futuristic,1446303390 +78873,115713,pessimistic,1446303397 +78873,115713,plot twist,1446303288 +78873,115713,protagonist dies,1446303373 +78873,115713,relation problems,1446303363 +78873,115713,sci-fi,1446303281 +78873,115713,science,1446303386 +78873,115713,slow,1446303439 +78873,115713,Surreal,1446303338 +78873,115713,thought provoking,1446303284 +78873,115713,visual effects,1446303329 +78873,116823,realistic,1423851428 +78873,117192,Doctor Who,1424467058 +78873,117192,time travel,1424467060 +78873,119145,action,1446330894 +78873,119145,comedy,1446330909 +78873,119145,comic violence,1446330954 +78873,119145,funny,1446330912 +78873,119145,Parody,1446330897 +78873,119145,Secret Agency,1446330926 +78873,119145,spy,1446330880 +78873,119145,spy gadgets,1446330905 +78873,120466,Africa,1446319900 +78873,120466,AI,1446319890 +78873,120466,androids,1446319949 +78873,120466,artificial intelligence,1446319878 +78873,120466,bad acting,1446319982 +78873,120466,bad writing,1446319921 +78873,120466,cliche,1446319946 +78873,120466,entertaining,1446319939 +78873,120466,future,1446319897 +78873,120466,Johannesburg,1446319926 +78873,120466,plot,1446319915 +78873,120466,robots,1446319880 +78873,120466,Sad,1446319944 +78873,120466,sci-fi,1446319887 +78873,120466,science fiction,1446319902 +78873,120466,South Africa,1446319894 +78873,120466,thought provoking,1446319954 +78873,120466,Touching,1446319933 +78873,120799,Arnold Schwarzenegger,1445795058 +78873,120799,artificial intelligence,1445795105 +78873,120799,cyborgs,1445795146 +78873,120799,Emilia Clarke,1445795046 +78873,120799,robots,1445795049 +78873,120799,sci-fi,1445795104 +78873,120799,time-travel,1445795055 +78873,122892,artificial intelligence,1445791866 +78873,122892,superhero,1445791863 +78873,122902,Marvel,1446303589 +78873,122902,sci-fi,1446303597 +78873,122902,series reboot,1446303600 +78873,122902,superhero,1446303593 +78873,127096,High school,1446320055 +78873,127096,low budget,1446320077 +78873,127096,poor production...,1446320071 +78873,127096,science fiction,1446320043 +78873,127096,slightly comical,1446320063 +78873,127096,time travel,1446320036 +78873,129354,action,1445793198 +78873,129354,con artist,1445793190 +78873,129354,thief,1445793192 +78873,129354,unexpected end,1445793201 +78873,129354,Will Smith,1445793187 +78873,130490,Action,1446056210 +78873,130490,dystopia,1446056215 +78873,130490,intelligent,1446056237 +78873,130490,sci-fi,1446056226 +78873,130490,science fiction,1446056232 +78873,130490,Special effects,1446056244 +78873,132046,Adventure,1446319602 +78873,132046,alternate reality,1446319566 +78873,132046,Cheesy,1446319594 +78873,132046,funny,1446319615 +78873,132046,Future,1446319586 +78873,132046,futuristic,1446319613 +78873,132046,George Clooney,1446319590 +78873,132046,robots,1446319611 +78873,132046,sci-fi,1446319551 +78873,132046,visually appealing,1446319552 +78873,134368,action,1446331040 +78873,134368,comedy,1446331036 +78873,134368,espionage,1446331046 +78873,134368,parody,1446331097 +78873,136680,b movie,1446303964 +78873,136680,bad plot,1445792577 +78873,136680,cheap special effects,1445792557 +78873,136680,children,1445792462 +78873,136680,sci-fi,1445792476 +78873,136680,science fiction,1445792503 +78873,140711,CIA,1446318931 +78873,140711,Kristen Stewart,1446318927 +78873,140711,not funny,1446318941 +78873,140711,spy,1446318942 +78873,145759,alien invasion,1446320623 +78873,145759,aliens,1446320621 +78873,145759,b movie,1446320424 +78873,145759,battleship,1446320670 +78873,145759,futuristic,1446320451 +78873,145759,Johanna Watts,1446320591 +78873,145759,low budget,1446320426 +78873,145759,Mario Van Peebles,1446320542 +78873,145759,military,1446320502 +78873,145759,naval battle,1446320512 +78873,145759,sci-fi,1446320612 +78873,145759,science,1446320452 +78873,145759,sea,1446320634 +78873,145759,ship,1446320668 +78873,145759,technology,1446320683 +78873,145759,warship,1446320671 +78877,139575,animation,1440953321 +78877,139575,indian mythology,1440953357 +78877,141058,acting,1440953154 +78877,141058,bihari,1440953137 +78877,141058,bollywood,1440953124 +78905,318,Boring,1437585114 +78905,318,Morgan Freeman,1437585136 +78923,994,food,1196006182 +78923,994,italian,1196006186 +78923,994,new jersey,1196006174 +78923,5379,anti-Semitism,1196040928 +78929,115713,intresting theme,1446935826 +78941,356,high concept,1437343892 +78941,356,melodrama,1437343892 +78941,356,reactionary,1437343892 +78947,20,lopez,1187527224 +78947,540,sexy,1187527109 +78947,1416,Musical,1187527135 +78947,1416,opera,1187527135 +78947,1438,volcano,1187527023 +78947,1464,mistery,1187527484 +78947,1587,brutality,1187527035 +78947,1665,funny,1187527552 +78947,2116,hobbits,1187527175 +78947,2412,brutality,1187527511 +78947,2485,comedy,1187527146 +78947,3263,comedy,1187527157 +78947,3825,comedy,1187527469 +78947,3825,girls,1187527469 +78947,3825,women,1187527469 +78947,4015,comedy,1187527246 +78947,4367,action,1187526995 +78947,4367,adventure,1187526995 +78947,4621,Funny as hell,1187527529 +78947,5444,Funny as hell,1187527319 +78947,6016,brutality,1187527089 +78947,6373,comedy,1187527078 +78947,6373,god,1187527078 +78947,6373,powers,1187527078 +78947,6953,death,1187527300 +78955,1291,1940s,1425799421 +78955,1291,adventure,1425799421 +78955,1291,chase,1425799421 +78983,356,chocolate,1436538963 +78983,356,history,1436538963 +78983,356,running,1436538963 +78999,69844,magic,1446856144 +79024,480,chaos,1430955820 +79024,480,dinosaurs,1430955820 +79024,480,sci-fi,1430955820 +79068,260,adventure,1441736033 +79068,260,space adventure,1441735954 +79081,260,cosmos,1437561866 +79081,260,spaceflight,1437561881 +79101,296,action,1427142681 +79101,296,good music,1427142681 +79101,296,thriller,1427142681 +79101,593,fear,1428007706 +79101,593,mistery,1428007706 +79101,593,thriller,1428007706 +79103,260,Boring,1439727672 +79103,260,predictable,1439727684 +79121,4649,campy,1310580125 +79123,260,classic sci-fi,1437766588 +79123,260,defines genre,1437766631 +79129,22,thriller,1368410060 +79129,29,dark,1368409299 +79129,31,inspirational,1368409722 +79129,111,dark,1368409299 +79129,111,mental illness,1368409746 +79129,157,politics,1368410007 +79129,161,tense,1368410044 +79129,216,stupid,1368410027 +79129,440,politics,1368410007 +79129,474,tense,1368410044 +79129,519,franchise,1368409647 +79129,555,ensemble cast,1368409561 +79129,555,violent,1368410074 +79129,700,high school,1368409677 +79129,832,tense,1368410044 +79129,832,thriller,1368410060 +79129,861,police,1368409944 +79129,913,black and white,1368409194 +79129,946,nazis,1368409800 +79129,1089,violent,1368410074 +79129,1095,ensemble cast,1368409561 +79129,1104,mental illness,1368409746 +79129,1175,dark,1368409299 +79129,1206,violent,1368410074 +79129,1214,tense,1368410044 +79129,1228,oscar (best cinematography),1368409880 +79129,1248,black and white,1368409194 +79129,1262,ensemble cast,1368409561 +79129,1266,oscar (best cinematography),1368409880 +79129,1357,father-son relationship,1368409606 +79129,1357,mental illness,1368409746 +79129,1390,politics,1368410007 +79129,1396,ensemble cast,1368409561 +79129,1464,mystery,1368409775 +79129,1589,ensemble cast,1368409561 +79129,1597,thriller,1368410060 +79129,1610,thriller,1368410060 +79129,1834,mystery,1368409775 +79129,1945,black and white,1368409194 +79129,1950,police,1368409944 +79129,1953,oscar (best cinematography),1368409880 +79129,1954,oscar (best cinematography),1368409880 +79129,2024,christianity,1368409236 +79129,2026,high school,1368409677 +79129,2058,tense,1368410044 +79129,2076,dark,1368409299 +79129,2082,inspirational,1368409722 +79129,2335,stupid,1368410027 +79129,2353,thriller,1368410060 +79129,2383,police,1368409944 +79129,2442,mental illness,1368409746 +79129,2490,violent,1368410074 +79129,2500,high school,1368409677 +79129,2734,mental illness,1368409746 +79129,2882,nazis,1368409800 +79129,2888,high school,1368409677 +79129,2919,politics,1368410007 +79129,2944,ensemble cast,1368409561 +79129,2959,violent,1368410074 +79129,2985,violent,1368410074 +79129,3044,mystery,1368409775 +79129,3146,stupid,1368410027 +79129,3178,inspirational,1368409722 +79129,3256,tense,1368410044 +79129,3256,thriller,1368410060 +79129,3273,franchise,1368409647 +79129,3362,police,1368409944 +79129,3435,black and white,1368409194 +79129,3440,franchise,1368409647 +79129,3468,black and white,1368409194 +79129,3519,nazis,1368409800 +79129,3566,christianity,1368409236 +79129,3683,dark,1368409299 +79129,3811,politics,1368410007 +79129,3980,inspirational,1368409722 +79129,4019,inspirational,1368409722 +79129,4034,oscar (best cinematography),1368409880 +79129,4306,pixar,1368409933 +79129,4388,stupid,1368410027 +79129,4425,nudity (topless - notable),1368409864 +79129,4865,dark,1368409299 +79129,4865,mystery,1368409775 +79129,4974,stupid,1368410027 +79129,5106,high school,1368409677 +79129,5107,nazis,1368409800 +79129,5218,pixar,1368409933 +79129,5363,high school,1368409677 +79129,5444,pixar,1368409933 +79129,5773,nudity (topless - notable),1368409864 +79129,5785,stupid,1368410027 +79129,5989,father-son relationship,1368409606 +79129,6323,mystery,1368409775 +79129,6334,nudity (topless - notable),1368409864 +79129,6537,franchise,1368409647 +79129,6808,nazis,1368409800 +79129,7153,oscar (best cinematography),1368409880 +79129,7160,mental illness,1368409746 +79129,8360,pixar,1368409933 +79129,8781,politics,1368410007 +79129,27266,plotless,1138137032 +79129,33660,inspirational,1368409723 +79129,51540,police,1368409944 +79129,53121,franchise,1368409647 +79129,53921,nudity (topless - notable),1368409864 +79129,55290,police,1368409944 +79129,59429,nudity (topless - notable),1368409864 +79129,59784,pixar,1368409933 +79129,63113,franchise,1368409647 +79129,64622,nazis,1368409801 +79129,74458,mystery,1368409775 +79129,80880,nudity (topless - notable),1368409864 +79142,61026,strategy,1447326456 +79142,61026,war,1447326457 +79142,110501,best last fight,1447326408 +79142,110501,martial arts,1447326419 +79160,45501,horrible finish,1154257152 +79167,260,Leia,1444829632 +79167,260,oldie but goodie,1444829640 +79167,260,Science Fiction,1444829620 +79200,1500,assassin,1279140645 +79200,1500,John Cusack,1279140636 +79200,66371,beautiful music,1453939287 +79200,66371,beautiful scenery,1453939292 +79200,66371,confronting death,1453939296 +79200,66371,Japan,1453939275 +79200,66371,life & death,1453939281 +79200,66371,understated,1453939285 +79200,70659,documentary,1424646589 +79200,70659,host clubs,1424646589 +79200,70659,japan,1424646589 +79200,103772,Japan,1450912781 +79200,121145,biography,1422310807 +79200,121145,documentary,1420669905 +79200,121145,photography,1422310807 +79200,121145,photojournalism,1420669912 +79200,121145,war,1420669918 +79211,32587,black comedy,1292866419 +79214,541,existentialism,1431195740 +79214,541,sci-fi,1431195736 +79214,81591,psychological,1431196082 +79214,88129,existentialism,1431195697 +79214,88129,neo-noir,1431195722 +79214,112183,comedy,1431196010 +79214,112183,drama,1431196010 +79214,112183,magical realism,1431195654 +79214,112183,meaning of life,1431196010 +79214,112183,single shot,1431195644 +79274,55052,romance,1208345775 +79278,2232,scifi cult,1151826577 +79278,2571,sci-fi,1151826588 +79278,27611,space,1240898312 +79278,27866,annoying,1370590907 +79292,527,drama,1431824909 +79292,527,World War 2,1431824888 +79292,4993,based on a book,1431824727 +79292,122882,action,1431824812 +79292,122882,car's race,1431824812 +79292,122882,heroes,1431824812 +79297,912,classic,1448776433 +79297,912,romance,1448776450 +79297,912,World War II,1448776436 +79297,3578,history,1448775958 +79297,3578,Roman empire,1448775955 +79297,3578,violent,1448775943 +79297,4993,Adventure,1448776038 +79297,4993,fantasy world,1448776028 +79297,4993,Magic,1448776021 +79297,5618,anime,1448776582 +79297,5618,beautiful,1448776600 +79297,5618,fantasy world,1448776604 +79297,5618,Hayao Miyazaki,1448776587 +79297,5618,Japan,1448776585 +79297,5971,Cute,1448776639 +79297,5971,Hayao Miyazaki,1448776635 +79297,5971,Japan,1448776643 +79297,5971,sweet,1448776655 +79297,6350,anime,1448776529 +79297,6350,beautiful,1448776557 +79297,6350,fantasy,1448776550 +79297,6350,Hayao Miyazaki,1448776532 +79297,6350,imagination,1448776537 +79297,7153,Adventure,1448775873 +79297,7153,creative,1448775815 +79297,7153,great ending,1448775843 +79297,60069,cute,1448776320 +79297,60069,pixar,1448776298 +79297,60069,robots,1448776303 +79297,60069,Sci-Fi,1448776307 +79297,68954,adventure,1448776236 +79297,68954,computer animation,1448776201 +79297,68954,love story,1448776214 +79297,68954,Pixar,1448776198 +79297,78499,animation,1448776141 +79297,78499,children,1448776153 +79297,78499,Pixar,1448776136 +79297,78499,toys,1448776145 +79297,134853,imaginative,1448776277 +79297,134853,Pixar,1448776260 +79297,134853,psychology,1448776264 +79298,253,6ir6,1141676874 +79304,319,Cynism,1324072562 +79304,319,Scotland,1324072557 +79304,319,stylized,1324072572 +79304,319,Underrated,1324072575 +79304,3741,Terrence Malick,1324321371 +79304,5893,femme fatale,1324321673 +79304,5893,modern noir,1324321688 +79304,5893,neo noir,1324321688 +79304,5893,noir,1324321688 +79304,33288,childhood,1324320210 +79304,55820,Cormac McCarthy,1324320271 +79304,56782,greed,1324320324 +79311,260,sci-fi,1444758820 +79311,260,space action,1444758832 +79335,1246,Carpe Diem,1155848625 +79339,4022,adventure,1430475384 +79339,4022,drama,1430475384 +79339,4022,survival,1430475384 +79340,1391,nice,1137443853 +79340,42015,funny,1139865781 +79341,260,aliens,1439529632 +79341,260,Space,1439529618 +79341,260,War,1439529621 +79346,260,classic sci-fi,1434477198 +79346,260,epic adventure,1434477206 +79346,122882,crappy sequel,1434477374 +79346,122882,hated it,1434477374 +79346,122882,rehash sequel,1434477374 +79365,1175,much like gilliam's brasil,1218738743 +79365,64957,length,1242333818 +79372,2959,violent,1448768947 +79372,7263,hockey,1448768900 +79372,7263,Olympics,1448768897 +79372,7263,Sports,1448768881 +79372,127098,funny,1448769945 +79372,127098,late-night,1448769910 +79416,1255,ugly,1157728922 +79416,1639,Kevin Smith,1158334267 +79416,1732,My Favourite,1157737345 +79416,2710,scary,1157728800 +79416,3266,crazy,1157879829 +79416,3868,comedy,1158334765 +79416,4878,strange,1157737283 +79416,5785,good summary of tv serie,1158337317 +79419,2248,1980s,1235458775 +79419,2248,Romance,1235458722 +79419,2248,teen,1235458719 +79423,58191,torture,1237704534 +79435,60684,ending,1365759094 +79435,60684,music,1365759074 +79435,64695,fighting,1379972365 +79435,64695,Hero,1379972380 +79443,2362,Ed Wood,1429473779 +79443,40478,rabbits,1429473763 +79444,57368,blair godzilla project,1205921397 +79465,4437,atmospheric,1364844647 +79465,4437,dreamlike,1364844642 +79465,4437,stylized,1364844645 +79465,6539,pirates,1364845911 +79465,45722,pirates,1364847504 +79465,47810,Nicolas Cage,1364844771 +79465,51077,Nicolas Cage,1364844589 +79465,56003,comedy,1364846548 +79465,56003,sci-fi,1364846548 +79465,68519,crappy sequel,1364847038 +79465,74553,medieval,1364846569 +79465,92938,Goofy,1364844599 +79471,260,saga,1441053502 +79471,260,sci fi,1441053496 +79481,3578,Oscar (Best Actor),1194195582 +79481,3578,seen more than once,1194195587 +79481,7371,degrading to women,1171655678 +79481,31435,James McAvoy,1172109877 +79481,48738,want to see,1172109831 +79493,593,adaptation,1420988428 +79493,593,serial killer,1420988428 +79493,593,suspenseful,1420988428 +79506,8958,good,1244537717 +79510,50,ambiguous ending,1435584719 +79510,50,nonlinear storyline,1435584719 +79510,50,solving riddles/puzzles,1435584719 +79510,4035,condemned by fate,1435584807 +79531,420,comedy,1144570184 +79569,347,Roman Polanski,1328057349 +79569,529,music,1330042207 +79569,529,obvious,1330042207 +79569,529,predictable,1330042207 +79569,7318,Biblical,1324598936 +79569,7318,Christian,1324598928 +79569,7318,religion,1324598942 +79569,27641,"copy of ""The Game""",1441969602 +79569,27641,music,1441969612 +79569,27866,acting,1441969866 +79569,32243,good acting,1426505605 +79569,32243,scandinavian,1426505605 +79569,32243,thieves,1426505605 +79569,55078,implausible plot,1439120271 +79569,58376,eye-opening,1317716974 +79569,63072,religion,1317634834 +79569,65225,eye-opening,1317717001 +79569,65225,revolution,1317717010 +79569,77240,self-indulgent,1335431218 +79569,80463,nine inch nails soundtrack,1325856583 +79569,80588,science,1397737962 +79569,80588,space,1397737940 +79569,81562,true story,1319309483 +79569,81932,Christian Bale,1319064531 +79569,81932,cliche,1319064544 +79569,82459,remake,1445284795 +79569,84273,eye-opening,1317717051 +79569,84273,revolution,1317716934 +79569,86898,too much religion,1318712307 +79569,87194,obvious plot,1329267852 +79569,87194,predictable,1329267886 +79569,87194,religion,1329267825 +79569,89535,Aki Kaurismäki,1332751384 +79569,89761,Direction,1328025680 +79569,89761,Keira Knightley,1328025671 +79569,89761,Screenplay,1328025679 +79569,90866,bad acting,1329778972 +79569,91126,Hollywood,1332027650 +79569,91126,obvious,1332027624 +79569,91658,original is better..,1325856481 +79569,91658,remake,1325856433 +79569,91658,remake of a Swedish film,1325856450 +79569,104283,cheesy,1400107647 +79569,104881,cliche,1393895046 +79569,104881,predictable,1393894973 +79569,105869,terrible acting,1393858232 +79569,108727,Lars von Trier,1396814217 +79569,108727,story,1396814236 +79569,132961,implausible plot,1439120209 +79569,132961,remake,1439120158 +79586,6016,amazing photography,1431291202 +79586,6016,drugs,1431291188 +79586,6016,true story,1431291194 +79586,117533,history,1431463284 +79586,117533,interesting,1431463284 +79586,117533,spying,1431463284 +79587,858,Al Pacino,1297874777 +79587,858,Francis Ford Coppola,1297874828 +79587,858,Mafia,1297874864 +79587,858,Marlon Brando,1297874815 +79587,1221,Al Pacino,1303646847 +79587,1221,Francis Ford Coppola,1303646842 +79587,2019,Akira Kurosawa,1301001426 +79587,3949,Darren Aronofsky,1310813843 +79587,4438,Bruce Lee,1296326967 +79587,4440,Bruce Lee,1296069858 +79587,44828,James Gunn,1310842724 +79587,63276,Takashi Miike,1301343040 +79587,79132,Christopher Nolan,1301240724 +79587,79132,Leonardo DiCaprio,1301240728 +79587,82093,William Monahan,1310829971 +79587,82854,Rob Letterman,1310813785 +79588,260,futuristic,1440721963 +79588,260,space adventure,1440721972 +79605,198,cyberpunk,1283563064 +79605,198,dark,1283563109 +79605,198,future,1283563076 +79605,198,Nudity (Topless),1283563102 +79605,198,virtual reality,1283563094 +79605,1297,80s,1283563961 +79605,1297,college,1283563950 +79605,1297,engineering,1283563948 +79605,1297,military,1283563943 +79605,1297,nerds,1283563945 +79605,1297,plot point:sudden scientific insight,1283563953 +79605,1297,Popcorn,1283563967 +79605,1297,Quotable,1283563975 +79605,1297,science,1283563935 +79605,1297,Val Kilmer,1283563930 +79605,1297,witty,1283563939 +79605,1396,black comedy,1283563650 +79605,1396,caper,1283563652 +79605,1396,hackers,1283563655 +79605,1396,spying,1283563623 +79605,1479,spy,1283563895 +79605,1479,val kilmer,1283563916 +79605,1584,aliens,1283562695 +79605,1584,based on a book,1283562705 +79605,1584,existentialism,1283562796 +79605,1584,future,1283562776 +79605,1584,Jodie Foster,1283562788 +79605,1584,open ending,1283562829 +79605,1584,religion,1283562769 +79605,1584,sci-fi,1283562698 +79605,1584,science,1283562801 +79605,1682,cerebral,1283563568 +79605,1682,dark comedy,1283563573 +79605,1682,dystopia,1283563589 +79605,1682,jim carrey,1283563609 +79605,1682,witty,1283563606 +79605,2108,los angeles,1283564344 +79605,2108,magical realism,1283564353 +79605,2108,Nudity (Topless - Brief),1283564348 +79605,2108,Sarah Jessica Parker,1283564388 +79605,2108,setting:LA,1283564359 +79605,2108,Shakespearean references,1283564361 +79605,2108,social commentary,1283564364 +79605,2108,Steve Martin,1283564367 +79605,2108,weather forecaster,1283564369 +79605,2108,weather reporter as protagonist,1283564376 +79605,2297,alternate reality,1283563324 +79605,2297,philosophy,1283563276 +79605,2297,Robin Williams,1283563272 +79605,2297,scenic,1283563331 +79605,2297,surreal,1283563274 +79605,2297,tear jerker,1283563340 +79605,2672,belivable science,1325475316 +79605,2959,atmospheric,1283564757 +79605,2959,based on a book,1283564793 +79605,2959,Brad Pitt,1283564753 +79605,2959,crime,1283564800 +79605,2959,dark comedy,1283564778 +79605,2959,Edward Norton,1283564784 +79605,2959,mental illness,1283564775 +79605,2959,satirical,1283564789 +79605,2959,social commentary,1283564762 +79605,2959,thought-provoking,1283564771 +79605,2959,violence,1283564766 +79605,4738,insanity,1283631935 +79605,4738,New York,1283631924 +79605,4738,time travel,1283631919 +79605,4975,existentialism,1285470957 +79605,4975,fantasy,1285470973 +79605,4975,New York,1285470955 +79605,4975,psychology,1285470952 +79605,4975,sci-fi,1285470966 +79605,4975,suicide,1285470962 +79605,4975,surreal,1285470940 +79605,4975,Tom Cruise,1285470947 +79605,5437,science geeks,1283564315 +79605,5437,science project,1283564325 +79605,5903,Amazing Cinematography,1283564831 +79605,5903,bullet ballet,1283564833 +79605,5903,choreographic violence,1283564836 +79605,5903,drugs,1283564839 +79605,5903,dystopia,1283564828 +79605,5903,fascism,1283564841 +79605,5903,gun fu,1283564823 +79605,5903,gunfight,1283564843 +79605,5903,guns,1283564846 +79605,5903,post-apocalyptic,1283564825 +79605,7361,bittersweet,1283564708 +79605,7361,comedy,1283564702 +79605,7361,imagination,1283564704 +79605,7361,Jim Carrey,1283564674 +79605,7361,memory,1283564726 +79605,7361,New York City,1283564732 +79605,7361,nonlinear,1283564710 +79605,7361,philosophy,1283564718 +79605,7361,romance,1283564715 +79605,7361,surrealism,1283564712 +79605,7361,thought-provoking,1283564729 +79605,7841,made for TV,1285372491 +79605,34048,bad acting,1285471272 +79605,34048,cliche,1285471276 +79605,34048,sci-fi,1285471280 +79605,34048,single father,1285471288 +79605,34048,Steven Spielberg,1285471285 +79605,34048,Tom Cruise,1285471283 +79605,34319,cloning,1285471030 +79605,34319,dystopia,1285471032 +79605,34319,genetics,1285471037 +79605,34319,immortality,1285471034 +79605,34319,sci-fi,1285471040 +79605,44191,action,1283563526 +79605,44191,comic book,1283563485 +79605,44191,dark,1283563486 +79605,44191,dystopia,1283563491 +79605,44191,England,1283563496 +79605,44191,historical,1283563494 +79605,44191,inspirational,1283563520 +79605,44191,politics,1283563531 +79605,44191,revenge,1283563507 +79605,44191,sci-fi,1283563503 +79605,44191,terrorism,1283563499 +79605,44191,thought-provoking,1283563511 +79605,44191,visually appealing,1283563537 +79605,52287,kids and family,1285470786 +79605,60684,alternate history,1283563368 +79605,60684,based on a comic,1283563374 +79605,60684,cold war,1283563378 +79605,60684,dystopia,1283563287 +79605,60684,social commentary,1283563405 +79605,60684,superhero,1283563393 +79605,60684,superheros,1283563397 +79605,64497,aliens,1285471479 +79605,64497,apocolyptic,1285471475 +79605,64497,Environmental,1285471500 +79605,64497,first contact,1285471482 +79605,64497,Keanu Reeves,1285471484 +79605,64497,liberal propaganda,1285471487 +79605,64497,nanobots,1285471494 +79605,64497,religious overtones,1285471489 +79605,65642,time travel,1283561874 +79605,66171,predictable,1285471115 +79605,66171,psychic powers,1285471110 +79605,66171,terrible characters,1285471122 +79605,66934,anti-hero,1283564910 +79605,66934,Felicia Day,1283564951 +79605,66934,good dialogue,1283564948 +79605,66934,joss whedon,1283564946 +79605,66934,musical,1283564912 +79605,66934,Nathan Fillion,1283564907 +79605,66934,Neil Patrick Harris,1283564905 +79605,66934,short,1283564931 +79605,66934,too short,1283564915 +79605,66934,UNREQUITED LOVE,1283564920 +79605,67197,aliens,1285482372 +79605,67197,apocalypse,1285482378 +79605,67197,death,1285482370 +79605,67197,eerie,1285482346 +79605,67197,Massachusetts Institute of Technology,1285482349 +79605,67197,mystery,1285482365 +79605,67197,paranormal,1285482319 +79605,67197,sci-fi,1285482315 +79605,67197,subway,1285482359 +79605,67197,unintentional comedy,1285482333 +79605,68237,cloning,1283564143 +79605,68237,dystopia,1283564141 +79605,68237,hallucination,1283564139 +79605,68237,isolation,1283564158 +79605,68237,moon,1283564136 +79605,68237,psychology,1283564156 +79605,68237,Sci-fi,1283564148 +79605,68237,solitude,1283564134 +79605,68237,space,1283564152 +79605,68237,technology,1283564150 +79605,71057,dark fantasy,1285470843 +79605,71057,dystopia,1285470841 +79605,71057,giant robots,1285470845 +79605,71057,predictable,1285470848 +79605,71057,sci-fi,1285470830 +79605,71057,surreal,1285470832 +79605,71057,survival,1285470835 +79605,71057,visually appealing,1285470838 +79605,71131,Christianity,1285471893 +79605,71131,documentary,1285471889 +79605,71135,action,1285470723 +79605,71135,amnesia,1285470719 +79605,71135,Dennis Quaid,1285470704 +79605,71135,future,1285470725 +79605,71135,horror,1285470710 +79605,71135,hybernation,1285470728 +79605,71135,mutation,1285470706 +79605,71135,post-apocalyptic,1285470697 +79605,71135,sci-fi,1285470702 +79605,71135,space travel,1285470699 +79605,71484,animation,1283657870 +79605,71484,dystopia,1283657866 +79605,71484,dystopic future,1283657864 +79605,71520,witty,1285471959 +79605,71530,alternate reality,1285471200 +79605,71530,bad science,1285471203 +79605,71530,dystopia,1285471214 +79605,71530,future,1285471226 +79605,71530,predictable,1285471208 +79605,71530,sci-fi,1285471211 +79605,72380,depressing,1285471435 +79605,77658,history,1283561267 +79605,77658,science,1283561260 +79605,79132,action,1283564618 +79605,79132,dreamlike,1283564610 +79605,79132,dreams,1283564636 +79605,79132,Ellen Page,1283564552 +79605,79132,heist,1283564623 +79605,79132,intellectual,1283564598 +79605,79132,Intense,1283564601 +79605,79132,Leonardo DiCaprio,1283564519 +79605,79132,multiple interpretations,1283564572 +79605,79132,surreal,1283564603 +79605,79132,visually appealing,1283564607 +79605,79357,Beauty,1310091486 +79605,79357,nonlinear,1283561097 +79605,79357,sci-fi,1283561100 +79605,79357,Viterbi algorithm,1310091516 +79605,79702,stylized,1283561404 +79605,79702,video games,1283561394 +79605,90405,corruption,1320979863 +79605,90405,immortality,1320979837 +79605,90405,police,1320979850 +79605,90405,police corruption,1320979840 +79605,90405,scifi re aging,1320979854 +79605,106920,artificial intelligence,1391064284 +79605,106920,expository dialogue,1391064291 +79605,106920,quirky,1391065345 +79605,106920,transhumanism,1391064301 +79616,293,love story,1416723008 +79616,1208,surreal,1431241731 +79616,1215,campy,1346132529 +79616,27660,animation,1415580018 +79616,27660,anime,1415580010 +79616,55908,philosophical,1344506951 +79616,55908,thought-provoking,1344506955 +79616,91500,love,1404544835 +79616,96821,coming of age,1407555984 +79616,109487,good science,1430170662 +79616,109487,philosophical issues,1430170676 +79616,109487,physics,1430170669 +79616,109487,relativity,1430170655 +79616,109487,sci-fi,1430170646 +79616,109487,space,1430170650 +79616,109487,thought-provoking,1430170659 +79616,109487,time travel,1430170667 +79616,109487,time-travel,1430170653 +79616,109487,wormhole,1430170657 +79626,8711,classic,1139351480 +79637,47,serial killer,1388533137 +79637,47,twist ending,1388533134 +79637,95,John Travolta,1388533425 +79637,110,action,1388531684 +79637,111,cult film,1388532879 +79637,111,Martin Scorsese,1388532876 +79637,165,Bruce Willis,1388533169 +79637,165,Samuel L. Jackson,1388533166 +79637,253,vampires,1388533846 +79637,260,Harrison Ford,1388531647 +79637,288,dark comedy,1388533435 +79637,288,satire,1388533440 +79637,288,serial killer,1388533437 +79637,296,action,1428990025 +79637,296,black comedy,1428990025 +79637,296,quentin tarantino,1428990025 +79637,434,Sylvester Stallone,1388533365 +79637,457,Action,1388531711 +79637,457,Harrison Ford,1388531714 +79637,508,Denzel Washington,1388531368 +79637,508,Tom Hanks,1388531365 +79637,522,Australia,1388532056 +79637,522,Russell Crowe,1388532052 +79637,522,violence,1388532060 +79637,522,violent,1388532065 +79637,539,Romance,1388533314 +79637,539,Tom Hanks,1388533317 +79637,551,cult film,1388531868 +79637,587,romance,1388533272 +79637,593,Anthony Hopkins,1388531600 +79637,593,disturbing,1388531610 +79637,593,Jodie Foster,1388531616 +79637,608,dark comedy,1388531754 +79637,786,Arnold Schwarzenegger,1388533719 +79637,924,surreal,1388532907 +79637,1036,Bruce Willis,1388533296 +79637,1073,surreal,1388533258 +79637,1079,dark comedy,1388531381 +79637,1079,quirky,1388532313 +79637,1080,Monty Python,1388532791 +79637,1080,satire,1388532793 +79637,1089,dark comedy,1388533357 +79637,1089,Quentin Tarantino,1388533354 +79637,1136,cult film,1388533241 +79637,1136,satire,1388533243 +79637,1188,Australia,1388534230 +79637,1198,Steven Spielberg,1388531764 +79637,1220,cult film,1388533647 +79637,1246,Robin Williams,1388533629 +79637,1259,Stephen King,1388533602 +79637,1261,cult film,1388532275 +79637,1261,dark comedy,1388532273 +79637,1299,Vietnam War,1388532755 +79637,1387,Steven Spielberg,1388532249 +79637,1394,Coen Brothers,1388531819 +79637,1394,cult film,1388531821 +79637,1673,dark comedy,1388531836 +79637,1673,drugs,1388531842 +79637,1673,multiple storylines,1388531839 +79637,1704,Matt Damon,1388531586 +79637,1704,Robin Williams,1388531588 +79637,1729,dark comedy,1388534107 +79637,1729,Quentin Tarantino,1388534110 +79637,1732,cult film,1388532705 +79637,1732,dark comedy,1388532702 +79637,1784,Jack Nicholson,1388533558 +79637,1884,drugs,1388532356 +79637,1884,surreal,1388532359 +79637,1923,sexual,1388533402 +79637,1961,dark comedy,1388533374 +79637,1968,cult film,1388533517 +79637,2000,Mel Gibson,1388533743 +79637,2028,Steven Spielberg,1388533151 +79637,2028,Tom Hanks,1388533155 +79637,2028,World War II,1388533153 +79637,2502,cult film,1388533619 +79637,2502,dark comedy,1388533616 +79637,2502,satire,1388533622 +79637,2618,Australia,1388534235 +79637,2700,satire,1388533706 +79637,2710,disturbing,1388533642 +79637,2710,low budget,1388533638 +79637,2729,Stanley Kubrick,1388532304 +79637,2762,twist ending,1388532232 +79637,2858,dark comedy,1388531746 +79637,3020,Michael Douglas,1388534608 +79637,3101,Michael Douglas,1388534601 +79637,3147,Stephen King,1388533600 +79637,3147,Tom Hanks,1388533606 +79637,3252,Al Pacino,1388534881 +79637,3508,Clint Eastwood,1388532866 +79637,3702,dystopia,1388534201 +79637,3897,rock and roll,1388532719 +79637,3996,martial arts,1388533397 +79637,4239,drugs,1388532955 +79637,4239,Johnny Depp,1388532952 +79637,4308,stylized,1388534273 +79637,6502,zombies,1388532204 +79637,6539,Johnny Depp,1388533448 +79637,6807,Monty Python,1388531826 +79637,6807,satire,1388531829 +79637,6874,Quentin Tarantino,1388532741 +79637,7020,Australia,1388534258 +79637,7020,Nudity (Topless),1388534256 +79637,7020,Russell Crowe,1388534254 +79637,7438,Quentin Tarantino,1388532638 +79637,7438,surreal,1388532642 +79637,7438,twist ending,1388532644 +79637,7725,Michael Caine,1388531092 +79637,7725,Steven Seagal,1388531084 +79637,8874,dark comedy,1388532217 +79637,8874,zombies,1388532214 +79637,40723,cult film,1388534424 +79637,40723,serial killer,1388534421 +79637,44191,dystopia,1388532682 +79637,47810,Nicolas Cage,1388531216 +79637,48394,surreal,1388532389 +79637,52281,Quentin Tarantino,1388532991 +79637,64614,Clint Eastwood,1388532733 +79637,76860,animal attacks,1388534290 +79637,76860,Australian,1388534292 +79637,99114,action,1388531981 +79637,99114,Quentin Tarantino,1388531977 +79637,99114,Revenge,1388531975 +79641,260,sci-fi,1442877944 +79641,260,space epic,1442877958 +79641,260,space opera,1442877963 +79648,246,e,1188515534 +79648,471,f,1188515524 +79648,1242,c,1188515529 +79648,1302,b,1188515530 +79648,1377,a,1188515531 +79648,4896,d,1188515528 +79666,260,Science Fiction,1430237377 +79667,1320,alien series,1138155090 +79667,1320,Good effects,1138155053 +79667,2692,Amazing kung fu,1138155077 +79667,2858,special,1138155102 +79667,6754,interesting,1138155211 +79674,260,classic sci-fi,1443306875 +79674,260,"imaginary world, characters, story, philosophical",1443306900 +79684,100087,campy,1359165310 +79684,100087,fun,1359165310 +79684,100087,gore,1359165310 +79684,100087,sexy,1359165310 +79684,100087,trashy,1359165310 +79684,100089,epic,1359165496 +79684,100089,funny,1359165496 +79684,100089,innovative,1359165496 +79684,100089,intelligent,1359165496 +79708,99728,Action,1369919172 +79708,99728,cops,1369919205 +79708,99728,Emma Stone,1369919191 +79708,99728,gangsters,1369919180 +79708,99728,Ryan Gosling,1369919187 +79708,99728,Sean Penn,1369919196 +79750,260,action,1440184955 +79750,260,space,1440184949 +79768,5418,Franka Potente,1253768256 +79768,69784,Suprises around every corner,1253767961 +79772,318,based on a book,1393078750 +79772,2471,New York City,1393078746 +79772,8622,satire,1393078741 +79783,54286,19-8-2007,1191609016 +79789,260,geek,1434725836 +79789,260,Science Fiction,1434725846 +79789,260,Star Wars,1434725829 +79810,8939,Robin Williams,1170449922 +79837,25,depressing,1405675687 +79837,25,realistic characters,1405675687 +79837,208,Too Long!,1405675638 +79837,292,scientific errors,1405675611 +79837,784,tries too hard,1405410981 +79837,1266,good storytelling,1405410914 +79837,1266,realistic plot,1405410914 +79837,1371,too long,1405410817 +79837,1371,too self-aware,1405410817 +79837,1391,quirky humor,1405672799 +79837,2078,fun movie,1405672532 +79837,2353,nonsensical,1405410739 +79837,2353,well paced,1405410739 +79837,2791,clever lines,1405410346 +79837,2791,quick pace,1405410346 +79837,2918,obnoxious character,1405670269 +79837,2918,unbelievable plot,1405670334 +79837,3070,clever script,1405411341 +79837,3070,poorly paced,1405411341 +79837,3070,too long,1405411341 +79837,4308,cinematography,1405411821 +79837,4308,dramatic,1405411821 +79837,4308,musical numbers,1405411821 +79837,4308,tension,1405411821 +79837,4369,No plot!!!,1405410655 +79837,4467,good storytelling,1405411265 +79837,4467,MYTHICAL,1405411265 +79837,5502,illogical,1405671537 +79837,5502,ridiculous plot,1405671537 +79837,5679,mysterious,1405410579 +79837,5679,puzzling,1405410579 +79837,5679,scary not funny,1405410609 +79837,5902,clever concept,1405676038 +79837,32587,gory,1405410531 +79837,32587,visually striking,1405410531 +79837,42723,graphically violent,1405674398 +79837,42723,torture,1405674398 +79837,109374,story within a story,1405412006 +79851,2183,Alfred Hitchcock,1296333811 +79861,296,classic,1420390032 +79861,296,cool,1420390032 +79861,296,quentin tarantino,1420390032 +79861,296,Tarantino,1420390068 +79861,306,coincidences,1420412022 +79861,306,French,1420412041 +79861,306,Krzysztof Kieslowski,1420412046 +79861,306,neighbors,1420412035 +79861,356,bittersweet,1421221074 +79861,356,classic,1421221078 +79861,356,history,1421221089 +79861,356,inspirational,1421221080 +79861,356,must see,1421221119 +79861,356,quirky,1421221092 +79861,356,romance,1421221084 +79861,356,shrimp,1421221162 +79861,588,artistic,1396937119 +79861,588,funny,1396937121 +79861,588,Robin Williams,1396937113 +79861,594,childhood classics,1396932055 +79861,594,classic,1396932041 +79861,594,witch,1396932047 +79861,595,heartwarming,1397037978 +79861,595,Oscar (Best Music - Original Score),1397037981 +79861,595,redemption,1397037995 +79861,899,classic,1434397636 +79861,899,classic Hollywood,1434397645 +79861,899,comedy,1434397630 +79861,899,Dance,1434397623 +79861,899,enjoyable,1434397634 +79861,899,happy,1434397641 +79861,899,movie business,1434397621 +79861,899,musical,1434397639 +79861,899,songs,1434397654 +79861,899,tap dance,1434397656 +79861,902,audrey hepburn,1452344357 +79861,902,beautiful music,1452344389 +79861,902,cat,1452344383 +79861,902,classic,1452344359 +79861,902,elegant,1452344370 +79861,902,New York,1452344364 +79861,902,opportunism,1452344419 +79861,902,satirical,1452344422 +79861,912,classic,1420871244 +79861,912,quotable,1420871289 +79861,912,quotes,1420871284 +79861,912,romance,1420871259 +79861,912,World War II,1420871248 +79861,924,artificial intelligence,1420412936 +79861,924,atmospheric,1420412940 +79861,924,cinematography,1420413008 +79861,924,classic,1420412953 +79861,924,cult film,1420412955 +79861,924,masterpiece,1420412947 +79861,924,philosophical,1420412943 +79861,924,sci-fi,1420412929 +79861,924,space,1420412945 +79861,924,Stanley Kubrick,1420412932 +79861,1035,Austria,1426052710 +79861,1035,children,1426052667 +79861,1035,choir,1426052698 +79861,1035,classic,1426052656 +79861,1035,family,1426052664 +79861,1035,formal ball,1426052694 +79861,1035,good music,1426052741 +79861,1035,musical,1426052661 +79861,1035,nazi,1426052756 +79861,1035,The Alps,1426052718 +79861,1035,World War II,1426052708 +79861,1206,disturbing,1420413550 +79861,1206,dystopia,1420413542 +79861,1206,social commentary,1420413582 +79861,1206,stanley kubrick,1420413543 +79861,1206,violence,1420413556 +79861,1206,violent,1420413552 +79861,1209,atmospheric,1406928077 +79861,1209,classic,1406928084 +79861,1209,Clint Eastwood,1406928086 +79861,1227,crime,1421788188 +79861,1227,friendship,1421788229 +79861,1227,gangster,1421788185 +79861,1227,gangsters,1421788190 +79861,1227,organized crime,1421788212 +79861,1227,Prohibition,1421788181 +79861,1227,Sergio Leone,1421788267 +79861,1345,dark,1424295197 +79861,1345,frightening,1424295182 +79861,1345,high school,1424295159 +79861,1345,horror,1424295176 +79861,1345,religion,1424295164 +79861,1345,stephen king,1424295157 +79861,1688,animation,1423347897 +79861,1688,music,1423347912 +79861,1688,rasputin,1423347903 +79861,1688,romantic,1423347906 +79861,1688,Russia,1423347955 +79861,1688,Russian revolution,1423347916 +79861,1688,villain,1423347942 +79861,1688,witty,1423347975 +79861,1907,China,1396761004 +79861,1907,Disney,1396761005 +79861,1907,Eddie Murphy,1396760993 +79861,1907,family,1396761014 +79861,2176,Alfred Hitchcock,1392581055 +79861,2176,experimental,1392581058 +79861,2176,party,1392581077 +79861,2176,tense,1392581068 +79861,2176,true story,1392581081 +79861,2488,serial killer,1452345730 +79861,2572,chick flick,1421914925 +79861,2572,clever,1421914956 +79861,2572,clever writing,1421914938 +79861,2572,Cliché,1421914937 +79861,2572,comedy,1421914921 +79861,2572,coming of age,1421914944 +79861,2572,Heath Ledger,1421914916 +79861,2572,high school,1421914927 +79861,2572,sunny,1421914953 +79861,2572,teenager,1421914931 +79861,2580,black comedy,1392587644 +79861,2580,comedy,1392587650 +79861,2580,multiple storylines,1392587639 +79861,2580,no character development,1392587669 +79861,2580,Nudity (Topless),1392587641 +79861,2580,seen more than once,1392587659 +79861,2580,storytelling,1392587654 +79861,2949,Bond,1452344268 +79861,2949,james bond,1452344270 +79861,2959,psychology,1392572620 +79861,3168,AFI 100,1394355390 +79861,3168,classic,1394355382 +79861,3168,notable soundtrack,1394355388 +79861,3168,road movie,1394355392 +79861,3252,Al Pacino,1452344584 +79861,3252,Character,1452344636 +79861,3252,dance,1452344597 +79861,3252,dialogue,1452344621 +79861,3252,great acting,1452344587 +79861,3252,humane,1452344617 +79861,3252,unconventional friendship,1452344608 +79861,4967,complex characters,1394910490 +79861,4967,ethnic conflict,1394910509 +79861,4967,human nature,1394910529 +79861,4967,No Happy End,1394910499 +79861,4967,satire,1394910518 +79861,4967,social commentary,1394910523 +79861,5062,conspiracy,1421787068 +79861,5062,identity,1421787086 +79861,5062,plastic surgery,1421787075 +79861,5062,second chance,1421787061 +79861,5062,secret societies,1421787078 +79861,5618,atmospheric,1392665034 +79861,5618,beautiful,1392665041 +79861,5618,dreamlike,1392665058 +79861,5618,Hayao Miyazaki,1392665052 +79861,5618,imagination,1392665055 +79861,5618,Japan,1392665044 +79861,5618,Studio Ghibli,1392665050 +79861,5618,surreal,1392665046 +79861,5618,whimsical,1392665048 +79861,6942,british,1393666939 +79861,6942,ensemble cast,1393666944 +79861,6942,funny,1393666966 +79861,6942,great soundtrack,1393666962 +79861,6942,Hugh Grant,1393666950 +79861,6942,multiple storylines,1393666946 +79861,6942,romantic,1393666959 +79861,6942,Rowan Atkinson,1393666956 +79861,7147,dreamlike,1420389822 +79861,8620,cynical,1446368616 +79861,8620,satire,1446368622 +79861,8620,satirical,1446368611 +79861,8620,Social commentary,1446368673 +79861,8620,surrealism,1446368612 +79861,38061,black comedy,1421496390 +79861,38061,clever,1421496393 +79861,38061,dark comedy,1421496494 +79861,38061,funny,1421496395 +79861,38061,good dialogue,1421496509 +79861,38061,mystery,1421496670 +79861,38061,private detective,1421496668 +79861,38061,Robert Downey Jr,1421788614 +79861,38061,Robert Downey Jr.,1421788617 +79861,38061,witty,1421496388 +79861,41573,christmas,1417376556 +79861,41573,family,1417376559 +79861,50798,stupid,1420390103 +79861,50798,vulgar,1420390124 +79861,54001,Daniel Radcliffe,1392575112 +79861,54001,Emma Watson,1392575081 +79861,54001,fantasy,1392575116 +79861,54001,franchise,1392575117 +79861,54001,Gary Oldman,1392575118 +79861,54001,harry potter,1392575089 +79861,54001,Helena Bonham Carter,1392575122 +79861,54001,joseph campbell's study of mythology influenced,1392575094 +79861,54001,not true to the book,1392575101 +79861,54001,Rupert Grint,1392575108 +79861,54001,too short,1392575135 +79861,57532,incoherent,1420390229 +79861,57532,stupid,1420390150 +79861,57532,vulgar,1420390163 +79861,59369,action,1421220931 +79861,59369,happy ending,1421220943 +79861,59369,kidnapping,1421220945 +79861,59369,lack of perspective,1421220980 +79861,59369,one liners,1421220969 +79861,59369,revenge,1421220936 +79861,59369,thriller,1421220933 +79861,69757,bittersweet,1393667026 +79861,69757,humorous,1393667014 +79861,69757,relationships,1393667009 +79861,69757,romantic comedy,1393667021 +79861,69757,Zooey Deschanel,1393667008 +79861,74553,animation,1393158892 +79861,74553,art,1393158893 +79861,74553,Atmospheric,1393158895 +79861,74553,beautiful,1393158926 +79861,74553,nature,1393158903 +79861,74553,stylized,1393158940 +79861,79702,geek,1398980316 +79861,79702,video games,1398980307 +79861,87194,coping with loss,1420021787 +79861,87194,friendship,1420021652 +79861,87194,journey,1420021618 +79861,91261,Communism,1420871557 +79861,91261,Cool,1420871581 +79861,91261,Iron Curtain,1420871570 +79861,91261,Musical,1420871424 +79861,91261,Soundtrack,1420871670 +79861,92494,dylan moran,1392574470 +79861,92494,funny as hell,1392574470 +79861,92494,irish,1392574470 +79861,92494,witty,1392574470 +79861,92496,dylan moran,1392574412 +79861,92496,Funny as hell,1392574412 +79861,92496,irish,1392574412 +79861,92496,witty!,1392574412 +79861,92498,dylan moran,1392574354 +79861,92498,Funny as hell,1392574354 +79861,92498,Irish,1392574354 +79861,92498,witty!,1392574354 +79861,92500,stand-up comedy,1392756840 +79861,97913,conspiracy,1398980268 +79861,97913,video games,1398980253 +79861,97921,mental illness,1420412573 +79861,107406,dystopia,1420926766 +79861,107406,plot holes,1420926823 +79861,107406,post-apocalyptic,1420926746 +79861,107406,revolution,1420926808 +79861,107406,trains,1420926757 +79861,107406,violence,1420926773 +79861,107406,visually interesting--that's about it,1420926815 +79861,109374,cinematography,1406842313 +79861,109374,quirky,1406842325 +79861,109374,visually appealing,1406842326 +79861,109374,Wes Anderson,1406842332 +79861,109374,Willem Dafoe,1406842341 +79861,111622,bittersweet,1426052284 +79861,111622,friendship,1426052310 +79861,111622,music,1426052292 +79861,111622,musicians,1426052306 +79861,111622,New York City,1426052303 +79861,112183,alternate reality,1434398030 +79861,112183,Broadway,1434397985 +79861,112183,cinematography,1434397987 +79861,112183,compelling,1434398055 +79861,112183,great performances,1434397967 +79861,112183,psychological,1434397977 +79861,112183,satire,1434397975 +79861,112183,single shot,1434397971 +79861,112183,smart,1434397990 +79861,112183,surreal,1434398005 +79861,112183,theater,1434397979 +79861,112290,growing up,1420743431 +79861,112290,realism,1420743396 +79861,112556,marriage,1420412531 +79861,112556,mindfuck,1420412351 +79861,112556,Psychopathy,1420412339 +79861,112556,unpredictable,1420412342 +79861,112623,sequel,1406842205 +79861,112623,unbelievable,1406842224 +79861,115122,comedy,1421503486 +79861,115122,humor,1421496964 +79861,115122,mockumentary,1421496956 +79861,115122,New Zealand,1421496958 +79861,115122,vampires,1421496962 +79861,115122,witty,1421503459 +79861,116797,Alan Turing,1422112656 +79861,116797,code breaking,1422112670 +79861,116797,cryptography,1422112654 +79861,116797,homosexuality,1422112652 +79861,116797,mathematics,1422112663 +79861,122886,action,1452344783 +79861,122886,BB-8,1452344766 +79861,122886,Exploited,1452344761 +79861,122886,explosions,1452344821 +79861,122886,Fan service,1452344756 +79861,122886,female protagonist,1452344779 +79861,122886,Harrison Ford,1452344771 +79861,122886,Plot Recycling,1452344753 +79861,122886,Star Wars,1452344773 +79861,122886,Unreasonable,1452344859 +79861,122886,Visually appealing,1452344837 +79861,122886,Weak villain,1452344879 +79861,128360,Dialogue,1452344160 +79861,128360,Diverse characters,1452344171 +79861,128360,Quentin Tarantino,1452344120 +79861,128360,tension building,1452344127 +79861,133771,absurdist humor,1452344494 +79861,133771,surreal,1452344524 +79862,1672,watch,1437786776 +79889,55908,academia,1453826621 +79889,55908,christianity,1453826704 +79889,55908,dialogue,1453826630 +79889,55908,dialogue driven,1453826582 +79889,55908,entirely dialogue,1453826692 +79889,55908,evolution,1453826613 +79889,55908,excellent script,1453826607 +79889,55908,Excellent use of dialogue,1453826580 +79889,55908,food for thought,1453826634 +79889,55908,history,1453826700 +79889,55908,immortality,1453826587 +79889,55908,intellectual,1453826571 +79889,55908,intelligent,1453826589 +79889,55908,low budget,1453826718 +79889,55908,one set,1453826698 +79889,55908,open ending,1453826734 +79889,55908,philosophical,1453826568 +79889,55908,psychological,1453826615 +79889,55908,religion,1453826711 +79889,55908,science fiction,1453826611 +79889,55908,thought-provoking,1453826576 +79889,55908,unique,1453826592 +79889,103083,Middle East,1440962771 +79889,103083,Pakistan,1440964216 +79889,103083,xenophobia,1440962323 +79891,69275,Nazis,1247533255 +79891,69275,Zombies,1247533261 +79898,153,Batman,1226115860 +79898,153,superhero,1226115866 +79898,592,Batman,1226116115 +79898,592,comic book,1226116110 +79898,592,superhero,1226116107 +79898,608,dark comedy,1226114258 +79898,750,dark comedy,1226114343 +79898,1196,sci-fi,1226115272 +79898,1196,star wars,1226115390 +79898,1210,sci-fi,1226115304 +79898,1210,Star Wars,1226115309 +79898,1377,batman,1226116091 +79898,1377,superhero,1226116089 +79898,1562,Batman,1226116029 +79898,1562,superhero,1226116026 +79898,1732,bowling,1226114289 +79898,1732,dark comedy,1226114281 +79898,1748,dystopia,1226115670 +79898,1748,sci-fi,1226115673 +79898,4239,drugs,1226113664 +79898,4239,Johnny Depp,1226113660 +79898,4993,fantasy,1226113925 +79898,7153,fantasy,1226115608 +79898,33004,sci-fi,1226115437 +79898,33794,batman,1226114568 +79898,33794,superhero,1226114573 +79898,40966,johnny depp,1226113603 +79898,49272,James Bond,1226114224 +79898,58559,Batman,1226113848 +79898,58559,superhero,1226113846 +79919,296,outrageous,1421961885 +79919,296,superb,1421961885 +79919,296,witty,1421961885 +79919,356,overrated,1423337676 +79919,356,sappy,1423337676 +79919,356,terrible,1423337676 +79919,3894,affecting low key drama centered around spanish hospital,1137398089 +79919,34405,Want bad acting,1141016740 +79919,46976,funny lines,1173223849 +79919,46976,shoulda been sunshine,1173223849 +79919,46976,weak choices overall,1173223849 +79919,80489,one dimensional characters except for Affleck. Ending trite.,1285435310 +79919,80489,too much love interest,1285435310 +79919,80489,unoriginal,1285435310 +79935,720,claymation,1138656994 +79935,745,own,1138656933 +79935,6727,want to see,1138656978 +79935,7440,rent,1138657064 +79935,7896,old western,1138657060 +79935,7981,netflix,1138656962 +79935,8235,silent,1138657045 +79935,8530,netflix,1138656969 +79935,8765,to rent,1138656956 +79935,8827,to own,1138656949 +79935,26242,to rent,1138656942 +79935,33660,want to buy,1138657003 +79935,33903,foreign,1138657051 +79935,34153,want to buy,1138657028 +79935,34271,to buy,1138657037 +79935,35836,rent or buy,1138657071 +79972,260,harry potter,1443384244 +79980,260,Harrison Ford,1432738594 +79980,260,starwars,1432738590 +80002,50872,Pixar's Formula Starting To Get Stale,1198119882 +80015,52583,Love,1438602172 +80033,18,multiple storylines,1453654057 +80033,18,Quentin Tarantino,1453654061 +80033,296,bruce willis,1453589150 +80033,296,classic,1453589195 +80033,296,cult film,1453589154 +80033,296,drugs,1453589134 +80033,296,good dialogue,1453589178 +80033,296,imdb top 250,1453589180 +80033,296,masterpiece,1453589169 +80033,296,nonlinear,1453589144 +80033,296,Quentin Tarantino,1453589138 +80033,296,Samuel L. Jackson,1453589147 +80033,296,storytelling,1453589175 +80033,296,stylized,1453589162 +80033,296,Tarantino,1453589158 +80033,296,Uma Thurman,1453589192 +80033,318,Morgan Freeman,1453671530 +80033,2571,artificial intelligence,1453589207 +80033,2571,philosophy,1453589212 +80033,2571,thought-provoking,1453589217 +80033,2571,virtual reality,1453589210 +80033,2843,gypsy,1453655072 +80033,3831,marijuana,1453910905 +80033,4235,Mexican,1453589622 +80033,4975,existentialism,1453654028 +80033,4975,lucid dreaming,1453654013 +80033,4975,mindfuck,1453654002 +80033,4975,psychology,1453654005 +80033,4975,surreal,1453653999 +80033,5319,Argentina,1453654132 +80033,5319,twist ending,1453654129 +80033,6016,brazil,1453589245 +80033,6016,drugs,1453589256 +80033,6016,multiple storylines,1453589253 +80033,6016,Portuguese,1453589243 +80033,6016,Rio de Janeiro,1453589272 +80033,6016,South America,1453589263 +80033,6323,multiple storylines,1453656405 +80033,6323,split personality,1453656402 +80033,6323,twist ending,1453656396 +80033,7361,melancholy,1453653484 +80033,7361,memory,1453653449 +80033,7361,psychology,1453653445 +80033,7361,surreal,1453653440 +80033,53953,Samuel L. Jackson,1453656441 +80033,57669,belgium,1453814107 +80033,57669,british comedy,1453814091 +80033,57669,depression,1453814109 +80033,57669,irish accent,1453814097 +80033,60766,actual footage,1453653976 +80033,61323,Brad Pitt,1453654768 +80033,61323,Coen Brothers,1453654765 +80033,61323,John Malkovich,1453654770 +80033,61323,stupid criminals,1453654785 +80033,61323,stupidity,1453654763 +80033,69951,alternate reality,1453672771 +80033,69951,heath ledger,1453672761 +80033,69951,surreal,1453672755 +80033,71106,time travel,1453654606 +80033,72554,Spain,1453654987 +80033,74458,atmospheric,1453589078 +80033,74458,cinematography,1453589110 +80033,74458,ending twist,1453589070 +80033,74458,Leonardo DiCaprio,1453589050 +80033,74458,Martin Scorsese,1453589064 +80033,74458,mentali illness,1453589115 +80033,74458,mindfuck,1453589067 +80033,74458,mystery,1453589057 +80033,74458,psychological,1453589043 +80033,74458,Psychological Thriller,1453589075 +80033,74458,twisted ending,1453589047 +80033,81229,Bruce Willis,1453654870 +80033,81229,John Malkovich,1453654873 +80033,81229,Morgan Freeman,1453654875 +80033,88129,ambient music,1453655751 +80033,88129,atmospheric,1453655713 +80033,88129,cinematography,1453655716 +80033,88129,Dark,1453655726 +80033,88129,great soundtrack,1453655730 +80033,88129,neo-noir,1453655747 +80033,88129,Retro 80's Synth Pop,1453655759 +80033,88129,Ryan Gosling,1453655719 +80033,88129,soundtrack,1453655742 +80033,88129,stylized,1453655744 +80033,88129,tense,1453655739 +80033,115713,artificial intelligence,1453589287 +80033,115713,consciousness,1453589300 +80033,115713,Mind Bending,1453589314 +80033,115713,plot twist,1453589290 +80033,115713,Psychological,1453589295 +80033,115713,thought provoking,1453589284 +80033,115713,turing test,1453589297 +80033,116897,argentina,1453588983 +80064,32,atmospheric,1371475430 +80064,32,Brad Pitt,1371475379 +80064,32,Bruce Willis,1371475383 +80064,32,complicated,1371475385 +80064,32,dystopia,1371475404 +80064,32,time travel,1371475377 +80064,163,Antonio Banderas,1371476780 +80064,163,Robert Rodriguez,1371476759 +80064,163,romance,1371476787 +80064,163,sequel,1371476774 +80064,163,Steve Buscemi,1371476763 +80064,442,dystopia,1371475863 +80064,589,apocalypse,1371475781 +80064,589,Arnold Schwarzenegger,1371475723 +80064,589,nuclear war,1371475785 +80064,589,time travel,1371475744 +80064,733,Alcatraz,1371476100 +80064,733,biological warfare,1371476086 +80064,733,Hans Zimmer,1371476082 +80064,733,prison,1371476098 +80064,733,Sean Connery,1371476074 +80064,733,terrorism,1371476077 +80064,736,better than everybody thinks,1371433845 +80064,736,Tornadoes,1371433804 +80064,736,weather,1371433818 +80064,780,alien invasion,1371427115 +80064,780,campy,1371427159 +80064,780,Will Smith,1371427197 +80064,798,bad acting,1371433640 +80064,798,better than expected,1371433620 +80064,798,disaster film,1371433703 +80064,798,unrealistic,1371433654 +80064,1036,action,1371476015 +80064,1036,Bruce Willis,1371476012 +80064,1036,terrorism,1371476010 +80064,1080,Biblical,1371432159 +80064,1080,british comedy,1371432152 +80064,1080,controversial,1371432144 +80064,1080,Monty Python,1371432123 +80064,1080,satire,1371432128 +80064,1090,Best War Films,1371429316 +80064,1090,Vietnam War,1371429319 +80064,1198,archaeology,1371432694 +80064,1198,good versus evil,1371432681 +80064,1198,Harrison Ford,1371432644 +80064,1198,Nazis,1371432656 +80064,1208,anti-war,1371429693 +80064,1208,audiovisual orgasm,1371429657 +80064,1208,classic,1371429562 +80064,1208,Dark,1371429568 +80064,1208,psychological,1371429581 +80064,1208,surreal,1371429560 +80064,1208,Vietnam war,1371429585 +80064,1222,anti-war,1371429349 +80064,1222,boot camp,1371429364 +80064,1222,Stanley Kubrick,1371429352 +80064,1222,Vietnam War,1371429357 +80064,1233,classic,1371431179 +80064,1233,claustrophobic,1371431174 +80064,1233,gritty,1371431185 +80064,1233,submarine,1371431191 +80064,1233,tense,1371431204 +80064,1233,thought-provoking,1371431210 +80064,1233,U-boat,1371431188 +80064,1233,World War II,1371431195 +80064,1240,Arnold Schwarzenegger,1371475815 +80064,1240,assassin,1371475832 +80064,1240,classic,1371475840 +80064,1240,great soundtrack,1371475820 +80064,1240,time travel,1371475806 +80064,1258,adapted from:book,1371430080 +80064,1258,atmospheric,1371430055 +80064,1258,cult film,1371430052 +80064,1258,mental illness,1371430066 +80064,1258,psychological,1371430043 +80064,1258,suspense,1371430046 +80064,1262,motorcycle,1371476607 +80064,1262,POWs,1371426292 +80064,1262,prison escape,1371426295 +80064,1262,true story,1371426299 +80064,1262,World War II,1371476596 +80064,1270,classic,1371433366 +80064,1270,time travel,1371433383 +80064,1272,Best War Films,1371426730 +80064,1272,George C. Scott,1371426790 +80064,1272,great acting,1371426771 +80064,1272,true story,1371426735 +80064,1272,World War II,1220313561 +80064,1275,Christopher Lambert,1371433043 +80064,1275,cult movie,1371433012 +80064,1275,immortality,1371433008 +80064,1275,original plot,1371433004 +80064,1275,ruined by sequels,1371433146 +80064,1275,sword fight,1371433018 +80064,1291,father-son relationship,1371432578 +80064,1291,Harrison Ford,1371432600 +80064,1291,witty,1371432588 +80064,1438,disaster film,1371434076 +80064,1438,volcano,1371434036 +80064,1438,well acted,1371434043 +80064,1499,fake snake,1371425083 +80064,1515,father daughter relationship,1371433926 +80064,1515,unintentional comedy,1371433931 +80064,1515,unrealistic,1371433958 +80064,1515,volcano,1371433937 +80064,1527,satirical,1371428692 +80064,1527,stylized,1371428698 +80064,1527,surreal,1371428688 +80064,1587,adventure,1371425542 +80064,1587,Arnold Schwarzenegger,1371425150 +80064,1587,Barbarian,1220313784 +80064,1587,Crom!,1371425460 +80064,1587,John Milius,1371425531 +80064,1590,black hole,1209330430 +80064,1616,nuclear weapons,1371434293 +80064,1616,terrorism,1371434251 +80064,1676,cult film,1371425643 +80064,1676,satire,1371425637 +80064,1676,social commentary,1371425641 +80064,1882,awful,1371427053 +80064,1882,bad acting,1371427014 +80064,1917,apocalypse,1371434389 +80064,1917,Ben Affleck,1371434393 +80064,1917,humorous,1371434358 +80064,1917,Steve Buscemi,1371434362 +80064,2011,dystopia,1371433416 +80064,2011,time travel,1371433409 +80064,2012,time travel,1371433430 +80064,2012,western,1371433437 +80064,2028,gritty,1371429759 +80064,2028,stylized,1371429725 +80064,2028,World War II,1371429785 +80064,2115,adventure,1371432375 +80064,2115,Indiana Jones,1371432371 +80064,2115,sequel,1371432363 +80064,2115,tomb raiding,1371432382 +80064,2194,corruption,1371476576 +80064,2194,gangsters,1371476569 +80064,2427,atmospheric,1371431330 +80064,2427,John Travolta,1371431299 +80064,2427,narrated,1371431350 +80064,2427,overrated,1371431339 +80064,2427,visually appealing,1371431310 +80064,2427,World War II,1371431316 +80064,2520,airport,1371433738 +80064,2524,disaster film,1371433508 +80064,2571,dystopia,1371475244 +80064,2571,hackers,1371475284 +80064,2571,surreal,1371475250 +80064,2571,virtual reality,1371475245 +80064,2617,archaeology,1371432279 +80064,2617,better than expected,1371432272 +80064,2617,campy,1371432224 +80064,2617,curse,1371432221 +80064,2617,Imhotep,1371432217 +80064,2617,mummy,1371432204 +80064,2617,treasure hunt,1371432233 +80064,2628,annoying kid,1371432523 +80064,2628,bad acting,1371432502 +80064,2628,franchise,1371432505 +80064,2628,George Lucas,1371432540 +80064,2628,Liam Neeson,1371432563 +80064,2628,Star Wars,1371432543 +80064,2701,steampunk,1371429243 +80064,2701,subgenre:cop buddies,1371429267 +80064,2706,sequel better than original,1371431927 +80064,2706,sexuality,1371431955 +80064,2706,slapstick,1371431945 +80064,2706,stupid,1371431908 +80064,2706,teen comedy,1371431911 +80064,2716,Bill Murray,1371433336 +80064,2716,classic,1371433333 +80064,2716,comedy,1371433322 +80064,2722,hilarious,1371434133 +80064,2722,LL Cool J,1371434146 +80064,2722,predictable,1371434197 +80064,2722,Renny Harlin,1371434139 +80064,2722,shark,1371434183 +80064,2916,Arnold Schwarzenegger,1371474757 +80064,2916,conspiracy,1371474754 +80064,2916,cult film,1371474768 +80064,2916,cyberpunk,1371474746 +80064,2944,anti-hero,1371430690 +80064,2944,classic,1371430710 +80064,2959,Brad Pitt,1371475447 +80064,2959,dark comedy,1371475444 +80064,2959,mental illness,1371475466 +80064,2959,surreal,1371475468 +80064,2959,thought-provoking,1371475441 +80064,2985,cyborgs,1371475918 +80064,2985,dystopia,1371475916 +80064,2985,police corruption,1371475926 +80064,2985,social commentary,1371475912 +80064,2985,superhero,1371475920 +80064,3062,overrated,1371425854 +80064,3062,true story,1371425898 +80064,3062,World War II,1371425883 +80064,3066,Best War Films,1371430770 +80064,3066,World War II,1371430773 +80064,3267,low budget,1371476804 +80064,3275,cult classic,1371476877 +80064,3275,dark humor,1371476861 +80064,3275,Irish,1371476874 +80064,3275,organized crime,1371476867 +80064,3275,religion,1371476904 +80064,3275,stylized,1371476890 +80064,3275,vigilantism,1371476864 +80064,3339,overrated,1371426352 +80064,3339,slow,1371426369 +80064,3372,World War II,1371430651 +80064,3519,Partisans,1371430802 +80064,3519,Unrealistic,1371430805 +80064,3519,World War II,1371430797 +80064,3527,action,1371475218 +80064,3527,aliens,1371475214 +80064,3527,Arnold Schwarzenegger,1371475189 +80064,3527,classic,1371475207 +80064,3527,Jesse Ventura,1371475193 +80064,3527,survival,1371475196 +80064,3555,historically inaccurate,1371429164 +80064,3555,submarine,1371429192 +80064,3555,unrealistic,1371429172 +80064,3654,traitor,1371430979 +80064,3654,untrustworthy female,1371431008 +80064,3654,World War II,1371430991 +80064,3698,campy,1371475348 +80064,3698,Dystopia,1371475318 +80064,3698,reality TV,1371475346 +80064,3698,so bad it's good,1371475326 +80064,3698,survival,1371475338 +80064,3836,anti-hero,1371431023 +80064,3836,Humor,1371431030 +80064,3836,World War II,1371431052 +80064,4033,Cold War,1401331745 +80064,4033,cuban missile crisis,1401331783 +80064,4033,John F. Kennedy,1401331741 +80064,4033,Kevin Costner,1401331768 +80064,4033,US President,1401331756 +80064,4223,sniper,1371426248 +80064,4270,adventure,1371432318 +80064,4270,cheesy,1371432314 +80064,4270,mummy,1371432343 +80064,4270,Sequel,1371432311 +80064,4446,distance from source material,1371428646 +80064,4446,visually stunning,1371428625 +80064,4446,weak characters,1371428617 +80064,4448,Edward Norton,1421077709 +80064,4448,heist,1421077701 +80064,4448,Robert De Niro,1421077707 +80064,4958,international peacekeeping,1371429513 +80064,4963,Brad Pitt,1371476142 +80064,4963,casino,1371476160 +80064,4963,ensemble cast,1371476189 +80064,4963,entertaining,1371476413 +80064,4963,feel good movie,1371476156 +80064,4963,George Clooney,1371476144 +80064,4963,Good remake,1371476214 +80064,4963,good soundtrack,1371476174 +80064,4963,heist,1371476151 +80064,4963,Las Vegas,1371476184 +80064,4963,Matt Damon,1371476149 +80064,4963,witty,1371476168 +80064,5010,based on a true story,1371429849 +80064,5010,historically inaccurate,1371429821 +80064,5010,visually appealing,1371429892 +80064,5040,Bad direction,1371425324 +80064,5040,bad sequel,1371425205 +80064,5040,idiotic sidekick,1371425314 +80064,5040,Ruined the franchise,1371425352 +80064,5060,classic,1371431098 +80064,5060,Korean War,1371431116 +80064,5060,quirky,1371431094 +80064,5060,satirical,1371431083 +80064,5060,witty,1371431087 +80064,5152,family bonds,1371431492 +80064,5152,patriotic,1371431469 +80064,5152,pro america,1371431516 +80064,5152,pro military,1371431467 +80064,5152,Vietnam War,1371431458 +80064,5219,better than expected,1371428831 +80064,5219,mmm... brains...,1371428808 +80064,5219,outbreak,1371428802 +80064,5378,franchise,1371432437 +80064,5378,George Lucas,1371432458 +80064,5378,romance,1371432446 +80064,5378,Star Wars,1371432478 +80064,5378,terrible acting,1371432444 +80064,5400,CIA,1220461886 +80064,5400,nuclear bomb,1371434324 +80064,5400,spy thriller,1371434335 +80064,5400,Tom Clancy,1371434315 +80064,5445,police corruption,1371474976 +80064,5445,sci-fi,1371474969 +80064,5445,surveillance,1371474986 +80064,5445,Tom Cruise,1371474995 +80064,5479,history,1371429537 +80064,5479,submarine,1371429532 +80064,5899,Anglo-Zulu War,1371425717 +80064,5899,Michael Caine,1371425727 +80064,5899,true story,1371425813 +80064,5903,Amazing Cinematography,1371474586 +80064,5903,cult film,1371474602 +80064,5903,dystopia,1220313677 +80064,5903,totalitarianism,1371474591 +80064,6264,bad science,1371426913 +80064,6264,so bad it's funny,1371426917 +80064,6264,unrealistic,1371426923 +80064,6441,Michael Caine,1371429403 +80064,6441,World War II,1371429408 +80064,6502,epidemic,1371475706 +80064,6502,post-apocalyptic,1371475678 +80064,6502,visually appealing,1371475685 +80064,6502,zombies,1371475697 +80064,6537,android(s)/cyborg(s),1371475961 +80064,6537,apocalypse,1371475988 +80064,6537,Arnold Schwarzenegger,1371475980 +80064,6537,heroine in tight suit,1371475967 +80064,6537,nuclear war,1371475990 +80064,6709,Antonio Banderas,1371476672 +80064,6709,Danny Trejo,1371476663 +80064,6709,entertaining,1371476706 +80064,6709,Johnny Depp,1371476668 +80064,6709,Mickey Rourke,1371476684 +80064,6709,Robert Rodriguez,1371476688 +80064,6764,entertaining,1371424583 +80064,6808,double twist,1371430819 +80064,6808,spies,1371430892 +80064,6808,World War II,1220313168 +80064,6996,acting,1371433164 +80064,6996,bad plot,1371433251 +80064,6996,bad sequel,1371433095 +80064,6996,illogical,1371433184 +80064,6996,immortality,1371433167 +80064,6996,Ruined the franchise,1371433174 +80064,7060,Biblical,1371431849 +80064,7060,great soundtrack,1371431830 +80064,7060,musical,1371431833 +80064,7060,religion,1371431859 +80064,7060,rock and roll,1371431825 +80064,7060,Rock Opera,1371431837 +80064,7980,Best War Films,1371425992 +80064,7980,classic,1371425930 +80064,7980,dramatic,1371425982 +80064,7980,History,1371426002 +80064,7980,Michael Caine,1371425926 +80064,7980,Sean Connery,1371425922 +80064,7980,World War II,1371425933 +80064,8045,anti-american,1371431419 +80064,8045,anti-military,1371431423 +80064,8045,Vietnam War,1371431399 +80064,8340,Alcatraz,1371476531 +80064,8340,prison escape,1371476521 +80064,8371,lame sequel,1371428924 +80064,8371,ruined the franchise,1371428930 +80064,8371,unnecessary sequel,1371428916 +80064,8493,based on a true story,1371428720 +80064,8493,realistic,1371428713 +80064,8493,World War II,1371428726 +80064,8810,Antarctica,1371428580 +80064,8810,disappointing,1371428564 +80064,8810,inconsistent,1371428561 +80064,8810,PG-13,1371428571 +80064,8984,Brad Pitt,1371476265 +80064,8984,cameo:Bruce Willis,1371476278 +80064,8984,confusing,1371476273 +80064,8984,ensemble cast,1371476301 +80064,8984,entertaining,1371476400 +80064,8984,George Clooney,1371476263 +80064,8984,great soundtrack,1371476312 +80064,8984,heist,1371476259 +80064,8984,Julia Roberts,1371476294 +80064,8984,Matt Damon,1371476267 +80064,8984,not as good as the first,1371476248 +80064,26007,based on a book,1371426419 +80064,26007,black and white,1371426424 +80064,26007,finnish,1371426450 +80064,26007,World War II,1371426473 +80064,32587,atmospheric,1371475485 +80064,32587,based on comic,1371475507 +80064,32587,black comedy,1371475488 +80064,32587,multiple storylines,1371475512 +80064,32587,stylized,1371475483 +80064,32587,surreal,1371475503 +80064,32587,violence,1371475494 +80064,33493,crappy sequel,1371432875 +80064,33493,franchise,1371432871 +80064,33493,George Lucas,1371432877 +80064,33493,ruined Darth Vader,1371432990 +80064,33794,Christian Bale,1371475136 +80064,33794,superhero,1371475139 +80064,33794,vigilante,1371475177 +80064,36509,cave,1371428758 +80064,36509,ending,1371428762 +80064,36509,predictable,1371428766 +80064,40278,based on a book,1371429120 +80064,40278,Gulf War,1371429115 +80064,40278,sniper,1371429109 +80064,40973,Hardy Kruger,1394596019 +80064,40973,less than 300 ratings,1394596038 +80064,40973,Richard Burton,1394596034 +80064,40973,Richard Harris,1394596022 +80064,40973,Roger Moore,1394596014 +80064,44191,adapted from:comic,1371474699 +80064,44191,Natalie Portman,1371474722 +80064,44191,revenge,1371474684 +80064,44191,social commentary,1371474689 +80064,44191,thought-provoking,1371474716 +80064,44191,visually appealing,1371474692 +80064,46965,absurd,1371424983 +80064,46965,B-movie,1371424985 +80064,46965,campy,1371424989 +80064,46965,Cult film,1371424997 +80064,46965,so bad it's good,1371424945 +80064,48774,pregnancy,1371475045 +80064,48774,survival,1371475106 +80064,48783,flag,1371426640 +80064,48783,jumpy,1371426605 +80064,48783,patriotic,1371426583 +80064,48783,propaganda,1371426608 +80064,48783,World War II,1371426590 +80064,51662,adapted from:comic,1371475648 +80064,51662,atmospheric,1371475541 +80064,51662,Frank Miller,1371475668 +80064,51662,pointless subplot,1371475600 +80064,51662,stylized,1371475642 +80064,53322,Al Pacino,1371476329 +80064,53322,Brad Pitt,1371476358 +80064,53322,ensemble cast,1371476377 +80064,53322,entertaining,1371476364 +80064,53322,George Clooney,1371476351 +80064,53322,heist,1371476341 +80064,53322,Las Vegas,1371476343 +80064,53322,sequel,1371476370 +80064,58295,based on a true story,1371476454 +80064,58295,heist,1371476443 +80064,58295,small time criminals,1371476463 +80064,58559,Atmospheric,1371475013 +80064,58559,Heath Ledger,1371475015 +80064,58559,stylized,1371475033 +80064,58559,superhero,1371475019 +80064,58559,vigilante,1371475023 +80064,59315,arms dealer,1401331867 +80064,59315,Robert Downey Jr.,1401331851 +80064,59315,superhero,1401331898 +80064,59315,vigilante,1401331865 +80064,59315,visually appealing,1401331890 +80064,59615,aliens,1371432030 +80064,59615,annoying characters,1371432081 +80064,59615,father-son relationship,1371431996 +80064,59615,Harrison Ford,1371432022 +80064,59615,nuclear bomb,1371431987 +80064,59615,Ruined the franchise,1371432010 +80064,59615,stupid,1371431976 +80064,60684,adapted from:comic,1371474883 +80064,60684,cinematography,1371474908 +80064,60684,cold war,1371474869 +80064,60684,great soundtrack,1371474895 +80064,60684,social commentary,1371474872 +80064,60684,stylized,1371474899 +80064,60684,superhero,1371474889 +80064,64497,apocalyptic,1371426685 +80064,64497,corny,1371426656 +80064,64497,remake,1371426677 +80064,64497,shallow characters,1371426660 +80064,64497,simple plot,1371426664 +80064,65243,amnesia,1371431676 +80064,65243,euthanasia,1371431713 +80064,65243,love triangle,1371431765 +80064,72378,apocalypse,1371428907 +80064,72378,audience intelligence underestimated,1371428861 +80064,72378,bad science,1371428852 +80064,72378,So bad it's good,1371428894 +80064,79132,dreamlike,1371474817 +80064,79132,heist,1371474827 +80064,79132,surreal,1371474812 +80064,79132,thought-provoking,1371474836 +80064,85131,action,1371426140 +80064,85131,alien invasion,1371426094 +80064,85131,better than expected,1371426072 +80064,85131,cliche,1371426119 +80064,85131,search and rescue,1371426146 +80064,85131,war,1371426103 +80064,87205,claustrophobic,1359043822 +80064,87205,darkness,1359043827 +80064,87205,tunnels,1359043859 +80064,89753,based on a book,1439576912 +80064,89753,Beautifully shot,1439576925 +80064,89753,espionage,1439576916 +80064,89753,slow paced,1439576928 +80064,94018,alien invasion,1371426219 +80064,94018,bad science,1371426186 +80064,94018,better than expected,1371426170 +80064,94018,Navy,1371426205 +80064,94018,Rihanna,1371426198 +80064,94018,silly but fun,1371426174 +80064,99437,misleading title,1401057399 +80064,99437,silly,1401057412 +80064,99437,surreal,1401057417 +80064,99437,watch the credits,1401057452 +80068,260,fun,1441093292 +80068,260,good story,1441093302 +80075,72405,dark comedy,1378476795 +80075,72405,Nicolas Cage,1378476782 +80113,260,awesome,1437797208 +80113,260,original plot,1437797310 +80131,50872,pixar,1185402370 +80135,1197,1,1448243722 +80135,4896,mystery,1448244081 +80135,6350,fsntasy,1448243842 +80135,81834,fast,1448244042 +80135,81834,magic,1448243989 +80136,81591,Oscar (Best Actress),1407513797 +80145,260,action,1442375058 +80145,260,fast paced,1442375061 +80148,7336,drag,1431975552 +80148,7336,incest,1431975552 +80148,7336,war,1431975552 +80178,58559,batman,1441466167 +80178,68954,cartoon,1441466096 +80178,91529,Batman,1441466084 +80183,587,chick flick,1137108795 +80183,27434,squandered opportunity,1137108804 +80195,296,Semi-Kafkaesque,1141835235 +80195,3977,Freedom of women,1141835194 +80261,4553,Cult classic,1180344535 +80261,4553,two thumbs up!,1180344535 +80261,7027,70mm,1180344312 +80261,7027,and is my all time western.,1180344292 +80261,7027,Character driven,1180344292 +80261,7027,magnificent,1180344292 +80261,7027,star studded action,1180344292 +80261,42197,laugh out loud any time movie,1180346605 +80261,49649,A tribute movie butchered by the short sidedness,1180345646 +80261,57368,effective and superfun monster movie.,1201163020 +80278,5060,satirical,1448038410 +80278,5060,witty,1448038413 +80278,83134,black comedy,1448658829 +80278,83134,great premise,1447901968 +80278,108571,psychological,1450141083 +80278,131724,psychological,1448210604 +80304,520,Borscht belt - Jews buy now!,1157739546 +80304,7147,Tim Burton,1157740270 +80305,296,quentin tarantino,1422573262 +80305,296,sex,1422573262 +80305,296,uma thurman,1422573262 +80316,53519,violence,1377431280 +80326,3307,chaplin,1320012066 +80326,61406,American history,1386589628 +80326,61406,history,1386589615 +80326,70849,crime,1439064060 +80326,70849,detective,1439064055 +80326,70849,film noir,1439064051 +80326,83765,buster keaton,1356798037 +80326,84230,Buster Keaton,1356798083 +80326,89804,politics,1420751249 +80326,94289,detective,1431722626 +80326,94289,murder mystery,1431722632 +80326,94289,screwball,1431722622 +80326,103813,so bad it's good,1421002579 +80326,107022,b movie,1428262929 +80326,107022,winter war,1428262929 +80326,107022,world war ii,1428262929 +80326,107024,biography,1386589327 +80326,107024,hockey,1386589301 +80326,107024,ice hockey,1386589301 +80326,107024,sports,1386589317 +80326,109616,aids,1420647651 +80326,109616,big pharmaceutical,1420647651 +80326,109616,hiv,1420647651 +80326,110882,dialogue driven,1436085077 +80326,110882,unique,1436085084 +80326,111384,crime,1436719428 +80326,111384,indie,1436719432 +80326,111384,revenge,1436719425 +80326,111384,violence,1436719440 +80326,115145,documentary,1430732588 +80326,115145,music,1430732588 +80326,115145,music industry,1430732588 +80326,116545,action,1438288176 +80326,116545,so bad it's good,1438288169 +80326,122882,action,1443894290 +80326,122882,desert,1443894295 +80326,122882,feminism,1443894292 +80326,122882,great soundtrack,1443894301 +80326,122882,non-stop,1443894298 +80326,122892,Marvel,1440248489 +80326,139909,action,1438288306 +80326,139909,so bad it's good,1438288302 +80357,193,watched it for the boobs,1150952641 +80357,762,watched it for the boobs,1150952678 +80357,2296,Emiliooooo,1143627441 +80357,3438,Bad guy dresses gay,1144444940 +80357,3703,Bad guy dresses gay,1144444971 +80357,6664,Bad guy dresses gay,1144444922 +80357,31878,piss your pants funny,1144445555 +80376,89118,psychology,1324305438 +80406,47610,19th century,1430261432 +80406,47610,great ending,1430261435 +80406,47610,magic,1430261445 +80406,47610,stage magic,1430261443 +80406,47610,surprise ending,1430261449 +80406,47610,twist ending,1430261440 +80406,48780,atmospheric,1430261494 +80406,48780,enigmatic,1430261498 +80406,48780,magic,1430261493 +80406,48780,mystery,1430261489 +80406,48780,twist ending,1430261486 +80414,25771,Bunuel,1224696823 +80414,25771,classic,1224696924 +80414,25771,Dali,1224696991 +80414,25771,dreams,1224697021 +80414,25771,experimental,1224696961 +80414,25771,surreal,1224696807 +80414,25771,surrealism,1224696800 +80414,34314,mumblecore,1239456965 +80423,1214,sci-fi,1141333530 +80423,1214,thriller,1141333539 +80439,18,Alexandre Rockwell,1145545532 +80439,18,Allison Anders,1145545522 +80439,18,Rodriguez,1145545508 +80439,18,Tarantino,1145545377 +80439,70,cult film,1145545548 +80439,70,Tarantino,1145545385 +80439,110,drama,1145545052 +80439,110,Mel Gibson,1145545047 +80439,296,Tarantino,1145545367 +80439,1089,Tarantino,1145545373 +80439,1271,Drama,1145545133 +80439,1527,sci-fi,1145545038 +80439,1625,twist ending,1145545223 +80439,1729,Tarantino,1145545379 +80439,2023,Classic,1145545145 +80439,2997,surrealism,1145545095 +80439,3448,Classic,1145545214 +80439,4446,anime,1145545104 +80439,5218,animated,1145545157 +80439,6874,Tarantino,1145545370 +80439,6874,Uma Thruman,1145545562 +80439,7438,Tarantino,1145545182 +80439,7438,Uma Thruman,1145545561 +80439,8644,Sci fi,1145545168 +80463,4995,mathematics,1442460548 +80463,4995,psychology,1442460545 +80463,115617,Animation,1442463964 +80463,115617,funny,1442463966 +80463,115617,japanese influence,1442463971 +80463,116797,Alan Turing,1442460518 +80463,116797,code breaking,1442460521 +80463,117446,anime,1442464338 +80469,96079,007 (series),1451218091 +80469,96079,action,1451218063 +80469,96079,Daniel Craig,1451218078 +80469,96079,James Bond,1451218057 +80469,96079,Javier Bardem,1451218075 +80469,96079,Judi Dench,1451218087 +80469,96079,London,1451218067 +80469,96079,sad ending,1451218106 +80469,96079,Scotland,1451218084 +80489,2959,mindfuck,1317958971 +80491,1682,philosophy,1370018698 +80491,2019,Japanese humor,1369942571 +80491,79132,philosophy,1370018724 +80525,2391,the characters weren't likeable,1385168668 +80568,260,classic sci-fi,1439366431 +80568,260,space adventure,1439366453 +80593,4993,epic,1431993648 +80593,4993,fantasy,1431993648 +80593,4993,mithology,1431993648 +80595,296,Quentin Tarantino,1221724106 +80599,1128,no kids,1138669031 +80599,2430,kids movie,1138668472 +80599,33660,no kids,1138668917 +80599,41566,kids movie,1137443311 +80599,41569,no kids,1138668611 +80599,42728,rent with Shelly,1138668500 +80626,260,sci-fi,1439802493 +80626,260,space,1439802497 +80627,260,fantasy,1441986863 +80627,260,great story,1441986911 +80627,260,"imaginary world, characters, story, philosophical",1441986931 +80628,589,action,1156927576 +80628,589,robots,1156927571 +80628,1485,I would rather suck exhaust than watch this POS again.,1156929179 +80628,2599,dark comedy,1156928905 +80628,2599,Hilarious!! :D,1156928909 +80628,3147,Tom Hanks,1156928953 +80628,3631,lesbian,1156928677 +80628,4018,stereotypes,1156929801 +80628,8874,Funniest Movies,1156929671 +80628,8874,great actors,1156929671 +80628,8874,great humour,1156929671 +80671,8969,what a way to waste 2 hours!!!,1137786755 +80677,260,sci-fi,1440946914 +80677,1625,atmospheric,1440951252 +80677,1625,Mystery,1440951255 +80713,1196,fantasy,1446294718 +80715,260,classic,1431474026 +80715,260,luke skywalker,1431474037 +80715,260,sci-fi,1431474030 +80715,115617,artificial intelligence,1436665157 +80715,115617,brother-brother relationship,1436665157 +80715,115617,futurism,1436665157 +80736,51935,action,1365968781 +80736,51935,Antoine Fuqua,1365968774 +80736,51935,based on a book,1365968769 +80736,51935,fbi,1365968782 +80736,51935,military,1365968765 +80736,51935,murder,1365968787 +80736,51935,see more than once,1365968785 +80736,51935,sniper,1365968756 +80742,2485,romance,1188832352 +80742,4310,action,1188832312 +80742,6373,comedy,1188832326 +80742,6934,fantasy,1188832275 +80742,8984,actrion,1188832506 +80771,15,treasure,1367690716 +80771,107,treasure,1367690716 +80771,256,arnold,1367690901 +80771,296,anthology,1427500002 +80771,296,great soundtrack,1427500002 +80771,296,quentin tarantino,1427500002 +80771,353,dark hero,1367690854 +80771,356,americana,1428589438 +80771,356,cancer,1428589438 +80771,356,running,1428589438 +80771,380,arnold,1367690898 +80771,485,arnold,1367690901 +80771,589,arnold,1367690898 +80771,592,dark hero,1367690853 +80771,1069,noir thriller,1367690739 +80771,1240,arnold,1367690898 +80771,1252,noir thriller,1367690739 +80771,1284,noir thriller,1367690739 +80771,1291,spielberg,1367691196 +80771,1291,treasure,1367690716 +80771,1377,dark hero,1367690854 +80771,1387,spielberg,1367691196 +80771,1391,mars,1367690823 +80771,1617,neo-noir,1367690962 +80771,1894,stranded,1367690802 +80771,2022,jesus,1367690685 +80771,2028,spielberg,1367691196 +80771,2115,spielberg,1367691196 +80771,2571,dark hero,1367690854 +80771,2662,mars,1367690822 +80771,2916,arnold,1367690898 +80771,2950,stranded,1367690802 +80771,3052,jesus,1367690685 +80771,3435,noir thriller,1367690739 +80771,4881,neo-noir,1367690962 +80771,5017,noir thriller,1367690739 +80771,5135,bollywood,1367690655 +80771,5445,spielberg,1367691196 +80771,5463,dragon,1367691076 +80771,5989,spielberg,1367691196 +80771,6539,treasure,1367690716 +80771,6696,bollywood,1367690656 +80771,7060,jesus,1367690685 +80771,7293,short-term memory loss,1367691179 +80771,7318,jesus,1367690685 +80771,7386,christian,1367690943 +80771,7728,noir thriller,1367690739 +80771,8366,christian,1367690942 +80771,8366,jesus,1367690685 +80771,8529,stranded,1367690802 +80771,47999,jesus,1367690685 +80771,53125,treasure,1367690716 +80771,56775,treasure,1367690716 +80771,76093,dragon,1367691076 +80771,93324,Oscar (Best Documentary Feature),1345496466 +80796,260,George Lucas,1434007064 +80796,260,Harrison Ford,1434007071 +80796,260,obi wan kenobi,1434007076 +80796,260,Star Wars,1434007060 +80796,4369,Paul Walker,1434008284 +80796,4369,racing,1434008289 +80796,4369,Vin Diesel,1434008278 +80796,112852,Marvel,1434010285 +80796,112852,Marvel Cinematic Universe,1434010288 +80803,4144,melancholic,1443336742 +80803,4144,stylized,1443336745 +80807,260,"stupid,bad science fiction",1437845691 +80840,627,intellectual,1164619858 +80840,627,murder,1164619858 +80840,627,tomatoes,1164619858 +80840,1653,genetic selection,1164619881 +80840,2232,psychological,1164620708 +80840,2959,helena bonham carter,1164620053 +80840,2959,philosophy,1164620053 +80840,2959,soap,1164620053 +80840,2959,split personality,1164620053 +80840,3250,air crash,1164620541 +80840,3250,cannibalism,1164620541 +80840,3250,south america,1164620541 +80840,3250,survival,1164620541 +80840,4878,Patrick Swayze,1164620661 +80840,4878,teen,1164620661 +80840,5265,Edward Norton,1164620687 +80840,5265,Robin Williams,1164620687 +80840,6337,addiction,1166998516 +80840,31410,end of war,1164920882 +80840,31410,in the bunker,1164920882 +80840,40819,pointless,1157754865 +80840,47894,needs subtitles!,1203369677 +80840,48385,racist rubbish,1164617704 +80840,48385,satire,1164617712 +80840,60072,trying to be fight club,1230674671 +80846,1232,existentialism,1221531420 +80846,1232,imdb top 250,1221531416 +80846,3783,Notable Nudity,1157941240 +80846,7937,disturbing,1221531396 +80846,7937,Nudity (Topless - Notable),1221531392 +80846,52973,absolutely hilarious,1183573204 +80846,52973,Nudity (Topless - Brief),1183573188 +80846,52973,Potential Oscar Nom 2008,1183573196 +80846,58303,based on a book,1221531600 +80846,58303,Holocaust,1221531611 +80846,58303,true story,1221531607 +80846,65130,dreams,1233611311 +80846,118760,heartwarming,1424903302 +80851,17,Jane Austen,1196645880 +80851,39,author:Jane Austen,1196646369 +80851,50,Kevin Spacey,1196647394 +80851,382,Jack Nicholson,1196646489 +80851,527,anti-semitism,1196647143 +80851,527,Liam Neeson,1196647154 +80851,858,Al Pacino,1196646599 +80851,903,Alfred Hitchcock,1196646690 +80851,909,Billy Wilder,1196645716 +80851,910,Best Performance: Jack Lemmon as Jerry/Daphne,1196646672 +80851,910,black and white,1196645756 +80851,910,funny as hell,1196646681 +80851,913,Humphrey Bogart,1196647816 +80851,930,Alfred Hitchcock,1196646791 +80851,930,Hitchcock,1196646789 +80851,933,Alfred Hitchcock,1196646051 +80851,953,Frank Capra,1196647061 +80851,971,?author:Tennessee Williams,1196645783 +80851,1104,Vivian Leigh,1196646889 +80851,1172,classical,1196647048 +80851,1199,Kafka-esque,1196645996 +80851,1221,Al Pacino,1196646611 +80851,1247,satirical,1196646620 +80851,1281,Chaplin,1196646991 +80851,1394,Coen Brothers,1196646532 +80851,2019,Kurosawa,1196645905 +80851,2023,Sophia Coppola,1196646354 +80851,2068,Ingmar Bergman,1196645800 +80851,2176,Alfred Hitchcock,1196646025 +80851,2183,Alfred Hitchcock,1196645805 +80851,3307,silent movie,1196646749 +80851,3362,Al Pacino,1196646912 +80851,3448,Classic,1196646248 +80851,3448,Vietnam War,1196646251 +80851,4357,Classic,1196646295 +80851,4357,Marilyn Monroe,1196646292 +80851,6611,Vittorio De Sica,1196647778 +80851,7084,related:Casablanca,1196647463 +80851,7084,Woody Allen,1196647461 +80851,7937,Ingmar Bergman,1196647634 +80851,8848,Federico Fellini,1196647579 +80851,8848,Italian,1196647587 +80851,25833,Greta Garbo,1196647651 +80851,30701,Orson Welles,1196647472 +80857,1374,space,1402503787 +80857,7153,war,1403027334 +80857,103335,anti-hero,1395952809 +80857,103335,crude humor,1395952797 +80857,103335,family,1395952798 +80857,103335,IMAX DMR 3-D,1395952804 +80857,103335,poor plot,1395952806 +80857,105844,based on a book,1403015744 +80857,105844,Brad Pitt,1403015747 +80857,105844,toplist13,1403015741 +80857,108932,colorful,1395952788 +80857,109578,Liam Neeson,1403015821 +80857,111362,superhero,1404316108 +80859,260,hero's journey,1440041794 +80859,260,space opera,1440041778 +80871,39,commentary,1443133468 +80871,39,fun,1443133459 +80871,39,light,1443133463 +80882,110,epic,1196210038 +80882,110,History,1196210016 +80882,318,awesome!,1196209848 +80882,318,Top 10 ever,1196209868 +80882,924,sci-fi,1206195335 +80882,1198,adventure,1209853874 +80882,2467,medieval,1196210082 +80882,3578,drama,1196209996 +80882,3578,imdb top 250,1196209993 +80882,3578,Ridley Scott,1196209979 +80882,3578,Roman empire,1196209976 +80882,3578,russel crowe,1196209989 +80882,4993,awesome,1196209930 +80882,4993,awesome soundtrack,1196210193 +80882,4993,based on book,1196209906 +80882,5418,action,1209853773 +80882,5952,adventure,1196210127 +80882,5952,awesome soundtrack,1196210167 +80882,5952,Epic,1196210139 +80882,6947,historical,1196209788 +80882,6947,Oscar (Best Cinematography),1196209801 +80882,6947,war,1196209791 +80882,7153,An excellent trilogy,1196209268 +80882,7153,awesome soundtrack,1196210220 +80882,7153,based on a book,1196209274 +80882,7153,war,1196209261 +80882,54286,action,1209853764 +80882,59501,fantasy,1215736146 +80882,72998,3d,1268698331 +80900,318,Drama,1147115053 +80900,318,Morgan Freeman,1147115053 +80900,318,Tim Robbins,1147115053 +80900,832,Drama,1147114939 +80900,832,Mel Gibson,1147114894 +80900,3623,action,1147114976 +80900,3623,Tom Cruise,1147114944 +80909,6,Al Pacino,1252601825 +80909,6,long,1252601866 +80909,6,Natalie Portman,1252601843 +80909,6,overrated,1252601861 +80909,6,Robert De Niro,1252601835 +80909,6,too long,1252601858 +80909,1921,mindfuck,1250905840 +80909,2997,Cameron Diaz,1251053902 +80909,2997,Charlie Kaufman,1251053862 +80909,2997,hallucinatory,1251053867 +80909,2997,John Malkovich,1251053906 +80909,2997,mindfuck,1251053869 +80909,2997,quirky,1251053896 +80909,2997,weird,1251053888 +80909,3569,explicit sex,1250902940 +80909,3569,Lars von Trier,1250902915 +80909,3569,social commentary,1250902917 +80909,5909,disturbing,1250903636 +80909,5909,Takashi Miike,1250903620 +80909,6755,Bruce Campbell,1251060524 +80909,7123,David Cronenberg,1250906820 +80909,7123,disturbing,1250906816 +80909,8798,Coen Brothers,1252601755 +80909,8798,dark,1252601763 +80909,8798,Tom Cruise,1252601750 +80909,8914,mindfuck,1250905929 +80909,8914,time travel,1250905941 +80909,27773,twist ending,1250905873 +80909,31263,porn industry,1250905817 +80909,48744,raunchy,1251913882 +80909,50842,Danish,1250906782 +80909,59273,Steve Buscemi,1251053396 +80909,66097,alternate universe,1250902848 +80909,66097,author:Neil Gaiman,1250902811 +80909,66097,Surreal,1250902827 +80909,67197,aliens,1250904839 +80909,67197,Nicolas Cage,1250904829 +80909,68952,funny,1250903036 +80909,68952,old school horror,1250903027 +80909,68952,Sam Raimi,1250903016 +80909,69784,mockumentary,1252615950 +80909,69784,Nudity (Full Frontal),1252615953 +80909,69784,Sacha Baron Cohen,1252615959 +80909,69784,tasteless,1252615961 +80909,70286,aliens,1250903049 +80909,70286,humor,1250903069 +80909,70286,intelligent sci-fi,1250903055 +80909,70286,Special Effects,1250903062 +80936,527,Holocaust film,1310297301 +80936,527,World War II,1310297314 +80936,858,al pacino,1310297448 +80936,1221,psychology,1310298855 +80936,1265,self discovery,1310298247 +80936,2028,graphic violence,1310297963 +80936,2997,surrealism,1310298288 +80936,4963,ensemble cast,1310298537 +80936,4963,george clooney,1310298525 +80936,4963,pacey,1310298515 +80936,4973,feel-good,1310298220 +80936,4973,french movie,1310298194 +80936,4973,lighthearted,1310298220 +80936,4995,psychology,1310297852 +80936,5954,freedom,1310299719 +80936,5954,psychology,1310299719 +80936,46578,feel good movie,1310298622 +80936,46578,inspiring,1310298622 +80936,46578,philosophy,1310298622 +80936,55247,inspirational,1310254572 +80936,55247,intellectual,1310254603 +80936,55247,psychology,1310254587 +80936,55247,sadness,1310254654 +80936,55247,self discovery,1310254553 +80936,55247,tragedy,1310254664 +80936,63082,fate,1310298842 +80936,63082,India,1310298842 +80950,1020,quotable,1389121695 +80956,234,Rosie in leather,1186886734 +80956,493,must see!,1186886701 +80956,663,canadian haha,1186886796 +80956,4015,utter shit,1186886702 +80956,4343,Daivd the douchebag ducovnie,1186886755 +80956,5064,rad,1186886686 +80956,5064,seen multiple times,1186886686 +80956,5225,cool shit,1186886783 +80956,5225,sexy gayness,1186886783 +80979,356,20th century history,1422590041 +80979,356,alabama,1422590041 +80979,356,charming,1422590041 +81016,1246,89,1137632432 +81016,5064,revenge,1165645171 +81020,17,Emma Thompson,1145467638 +81020,17,Jane Austen,1144970902 +81020,25,overrated,1144971389 +81020,28,Fiona Shaw,1145478767 +81020,28,Jane Austen,1144970827 +81020,29,dystopia,1179242964 +81020,29,surreal,1145479827 +81020,35,artists,1179245657 +81020,35,biopics,1179245657 +81020,35,Emma Thompson,1145479548 +81020,39,Jane Austen,1144971573 +81020,39,updated classics,1144964720 +81020,41,Ian McKellen,1144970354 +81020,41,Shakespeare,1144970315 +81020,41,updated classics,1144970354 +81020,43,17th century,1144970862 +81020,50,unreliable narrators,1178809734 +81020,85,19th century,1144970515 +81020,85,A. S. Byatt,1145479515 +81020,117,disturbing,1179928298 +81020,141,gay,1144971103 +81020,170,geeks on screen,1179239281 +81020,172,book was better,1213898852 +81020,172,memory,1144971334 +81020,187,librarians,1144964460 +81020,194,ensemble cast,1178050268 +81020,194,multiple storylines,1144971947 +81020,198,memory,1145050040 +81020,218,road movie,1213898783 +81020,232,food,1144963456 +81020,242,18th century,1144971169 +81020,242,backstage,1174333182 +81020,242,opera,1144971169 +81020,247,disturbing,1144969920 +81020,247,lesbian,1144969920 +81020,247,surreal,1145628697 +81020,265,food,1144971227 +81020,272,18th century,1144969237 +81020,272,biopics,1145478716 +81020,296,ensemble cast,1178048121 +81020,296,multiple storylines,1174334026 +81020,296,nonlinear,1174334026 +81020,300,based on a true story,1145467562 +81020,305,Altman,1145467575 +81020,305,fashion,1178047456 +81020,306,coincidences,1144964383 +81020,306,desert island flicks,1144963707 +81020,306,Three Colors trilogy,1145479902 +81020,307,Three Colors trilogy,1145479991 +81020,308,Three Colors trilogy,1145479427 +81020,318,prison,1178810261 +81020,319,disturbing,1145478487 +81020,345,cross-dressing men,1179928286 +81020,345,gay,1144970481 +81020,345,road movie,1144970481 +81020,345,transgender,1182796390 +81020,356,overrated,1144971378 +81020,357,overrated,1179930981 +81020,369,biopics,1145478728 +81020,369,writers at work,1145748956 +81020,412,19th century,1144970488 +81020,412,Edith Wharton,1145479507 +81020,442,dystopia,1145480604 +81020,442,hilarious,1144970628 +81020,442,Los Angeles,1179245513 +81020,446,backstage,1179928003 +81020,457,Chicago,1213896775 +81020,461,Chicago,1213896761 +81020,461,lesbian,1144969881 +81020,497,Shakespeare,1144970179 +81020,506,cross-dressing women,1144970244 +81020,506,Elizabethan,1144970244 +81020,506,transgender,1178048654 +81020,506,Virginia Woolf,1178048654 +81020,508,gay,1144971247 +81020,509,19th century,1145467552 +81020,515,Emma Thompson,1145467588 +81020,535,Altman,1145050872 +81020,535,ensemble cast,1144965101 +81020,535,Los Angeles,1145050901 +81020,535,multiple storylines,1174333918 +81020,538,coincidences,1174333890 +81020,541,dystopia,1179245692 +81020,541,Los Angeles,1179245699 +81020,541,noirish,1213894703 +81020,549,biopics,1144964544 +81020,549,Canada,1145050828 +81020,549,music,1145479983 +81020,549,nonlinear,1180361046 +81020,551,musical,1213897143 +81020,562,adolescence is hell,1174333645 +81020,562,school drama,1174333645 +81020,581,gay,1144969634 +81020,581,Hollywood,1144971632 +81020,581,lesbian,1144969634 +81020,608,black comedy,1178048146 +81020,617,Almodovar,1179245405 +81020,668,Apu trilogy,1178048039 +81020,670,Apu trilogy,1178048055 +81020,705,opera,1144963797 +81020,728,desert island flicks,1144964733 +81020,728,hilarious,1145479854 +81020,728,Ian McKellen,1145479854 +81020,728,Stephen Fry,1178049961 +81020,750,black comedy,1178049877 +81020,766,based on a true story,1213896697 +81020,789,17th century,1145478666 +81020,789,biopics,1145478666 +81020,789,lesbian,1145478666 +81020,789,writers at work,1145748967 +81020,831,based on a true story,1144970957 +81020,831,gay,1144970957 +81020,838,book was better,1144970670 +81020,838,Jane Austen,1144971578 +81020,866,lesbian,1144969519 +81020,892,cross-dressing women,1179928494 +81020,892,Shakespeare,1144971293 +81020,899,desert island flicks,1144963743 +81020,899,musical,1178809515 +81020,903,Hitchcock,1144969402 +81020,904,Hitchcock,1145050173 +81020,908,desert island flicks,1145633984 +81020,908,Hitchcock,1145050168 +81020,910,cross-dressing men,1178809497 +81020,910,great last lines,1180361057 +81020,911,homage to Hitchcock,1179245551 +81020,913,noir,1213896355 +81020,916,Italy,1144965067 +81020,922,black comedy,1144971655 +81020,922,Hollywood,1144971649 +81020,922,Los Angeles,1145050949 +81020,924,Kubrick,1179243179 +81020,926,backstage,1145050265 +81020,928,Hitchcock,1145479275 +81020,930,Hitchcock,1145479245 +81020,931,Hitchcock,1145478839 +81020,933,Hitchcock,1144971019 +81020,938,musical,1213897251 +81020,942,noir,1213896409 +81020,965,Hitchcock,1144969407 +81020,968,zombies,1144970220 +81020,1041,Mike Leigh,1145479320 +81020,1046,gay,1144969473 +81020,1046,London,1178050101 +81020,1059,Shakespeare,1144970437 +81020,1059,updated classics,1144970437 +81020,1076,ghosts,1144969976 +81020,1080,Monty Python,1145479190 +81020,1086,Hitchcock,1144970634 +81020,1089,nonlinear,1213896245 +81020,1094,based on a true story,1178049950 +81020,1094,transgender,1144969716 +81020,1136,hilarious,1144970161 +81020,1136,Monty Python,1145479184 +81020,1172,Italy,1144970568 +81020,1172,meta-movies,1179245533 +81020,1185,biopics,1145750587 +81020,1185,Fiona Shaw,1145750587 +81020,1185,writers at work,1145750587 +81020,1188,Red Curtain trilogy,1145478882 +81020,1190,Almodovar,1145479404 +81020,1193,overrated,1144971351 +81020,1202,black comedy,1213896006 +81020,1217,Shakespeare,1179927619 +81020,1217,updated classics,1179927619 +81020,1219,Hitchcock,1145050171 +81020,1220,road movie,1179928183 +81020,1224,Emma Thompson,1145750714 +81020,1224,Shakespeare,1145750706 +81020,1225,18th century,1144963870 +81020,1225,biopics,1144963857 +81020,1225,Mozart,1144963838 +81020,1225,music,1145480020 +81020,1225,opera,1144963862 +81020,1243,Shakespeare,1179928539 +81020,1243,updated classics,1145478472 +81020,1244,neurotic new yorkers,1213898679 +81020,1246,school drama,1144970616 +81020,1252,Los Angeles,1178049997 +81020,1252,noir,1178049982 +81020,1258,disturbing,1145051011 +81020,1258,ghosts,1145051011 +81020,1258,Kubrick,1178809528 +81020,1264,opera,1144963817 +81020,1271,lesbian,1144971175 +81020,1279,multiple storylines,1144970818 +81020,1284,noir,1178050062 +81020,1285,adolescence is hell,1213896738 +81020,1285,black comedy,1144969935 +81020,1287,historical epic,1144969494 +81020,1288,mockumentary,1144971014 +81020,1296,E. M. Forster,1179239573 +81020,1296,Italy,1179239573 +81020,1301,cult film,1213896796 +81020,1307,Chicago,1213898580 +81020,1333,Hitchcock,1145050136 +81020,1339,over the top,1213897333 +81020,1357,biopics,1145634380 +81020,1357,music,1145634380 +81020,1365,18th century,1144970894 +81020,1464,disturbing,1144965459 +81020,1464,Los Angeles,1182796283 +81020,1464,nonlinear,1179245267 +81020,1513,unlikely favorites,1178810330 +81020,1517,Bond James Bond,1179243124 +81020,1517,parody,1179243116 +81020,1611,gay,1179927723 +81020,1611,Shakespeare,1179927723 +81020,1611,updated classics,1179927723 +81020,1617,noirish,1213896422 +81020,1635,suburbia,1145479653 +81020,1639,lesbian,1178048454 +81020,1653,dystopia,1144970689 +81020,1673,ensemble cast,1179928175 +81020,1673,P.T. Anderson,1179928175 +81020,1673,Philip Seymour Hoffman,1144970542 +81020,1680,nonlinear,1179239356 +81020,1683,Henry James,1144971299 +81020,1684,Virginia Woolf,1144964923 +81020,1704,academia,1213898730 +81020,1721,overrated,1179245769 +81020,1734,transgender,1144970202 +81020,1748,dystopia,1178049936 +81020,1748,noirish,1213895010 +81020,1748,surreal,1145479868 +81020,1835,mawkish,1174333050 +81020,1876,apocalypse,1213898961 +81020,1879,adolescence is hell,1179927971 +81020,1879,gay,1179927971 +81020,1897,lesbian,1144969953 +81020,1909,Gillian Anderson,1213898393 +81020,1924,so bad it's funny,1145478583 +81020,1947,Shakespeare,1145634362 +81020,1947,updated classics,1145634362 +81020,1968,school drama,1145050372 +81020,2009,dystopia,1145480564 +81020,2020,18th century,1144969721 +81020,2020,Stephen Frears,1213895408 +81020,2076,disturbing,1179928193 +81020,2076,suburbia,1145481708 +81020,2076,surreal,1179928193 +81020,2153,Fiona Shaw,1179927408 +81020,2155,adolescence is hell,1174333813 +81020,2176,Hitchcock,1145479297 +81020,2181,Hitchcock,1145481557 +81020,2183,homage to Hitchcock,1174334150 +81020,2184,black comedy,1178050231 +81020,2184,Hitchcock,1144971021 +81020,2186,Hitchcock,1145479375 +81020,2202,Hitchcock,1145478693 +81020,2203,Hitchcock,1145479327 +81020,2303,Altman,1145050861 +81020,2303,backstage,1144964946 +81020,2303,ensemble cast,1144964953 +81020,2303,multiple storylines,1144970213 +81020,2333,gay,1144969900 +81020,2333,Hollywood,1144969900 +81020,2333,Ian McKellen,1144969900 +81020,2336,biopics,1144970649 +81020,2336,Elizabethan,1144970649 +81020,2337,backstage,1178047991 +81020,2337,gay,1144970402 +81020,2337,glam,1145479465 +81020,2337,music,1145479471 +81020,2337,Todd Haynes,1179239947 +81020,2390,Jane Horrocks,1144964866 +81020,2395,school drama,1179927584 +81020,2396,cross-dressing women,1179927556 +81020,2396,Elizabethan,1144970913 +81020,2396,Shakespeare,1179927557 +81020,2437,biopics,1145748362 +81020,2437,gay,1145748362 +81020,2437,Oscar Wilde,1182797997 +81020,2437,Stephen Fry,1145748374 +81020,2437,writers at work,1145748374 +81020,2502,hilarious,1145655938 +81020,2550,ghosts,1144969909 +81020,2551,disturbing,1179931023 +81020,2563,16th century,1179928099 +81020,2563,Italy,1144970608 +81020,2571,multiple realities,1213896375 +81020,2590,road movie,1179927951 +81020,2600,geeks on screen,1179245486 +81020,2600,multiple realities,1179245486 +81020,2617,librarians,1145747996 +81020,2622,Shakespeare,1174333162 +81020,2624,memory,1145050026 +81020,2625,librarians,1145748328 +81020,2686,multiple storylines,1179239590 +81020,2686,music,1145478797 +81020,2690,Oscar Wilde,1182797980 +81020,2692,nonlinear,1174334006 +81020,2731,school drama,1145050257 +81020,2762,ghosts,1145479344 +81020,2774,lesbian,1144970521 +81020,2837,gay,1179928267 +81020,2858,suburbia,1145480026 +81020,2908,transgender,1144969517 +81020,2920,19th century,1213895963 +81020,2920,backstage,1144969291 +81020,2940,noir,1213896754 +81020,2970,opera,1144964772 +81020,2997,surreal,1145628722 +81020,3005,guessed whodunit long before the end,1213898906 +81020,3008,apocalypse,1182796933 +81020,3008,Canada,1145050847 +81020,3008,ensemble cast,1144964856 +81020,3008,multiple storylines,1144970029 +81020,3008,Sandra Oh,1213895254 +81020,3044,Emma Thompson,1178049926 +81020,3044,memory,1144969734 +81020,3046,coming of age,1179927900 +81020,3046,lesbian,1144965405 +81020,3067,Almodovar,1145748893 +81020,3067,hilarious,1145748893 +81020,3072,opera,1144964896 +81020,3079,Jane Austen,1144971580 +81020,3081,ghosts,1174333827 +81020,3083,Almodovar,1145050274 +81020,3093,Altman,1145050145 +81020,3093,desert island flicks,1145633957 +81020,3094,E. M. Forster,1144970781 +81020,3094,gay,1144970781 +81020,3108,updated classics,1213896829 +81020,3160,coincidences,1144964336 +81020,3160,ensemble cast,1144964345 +81020,3160,P.T. Anderson,1213895101 +81020,3160,Philip Seymour Hoffman,1144969318 +81020,3163,backstage,1144964527 +81020,3163,Mike Leigh,1144969395 +81020,3163,opera,1144964527 +81020,3176,Philip Seymour Hoffman,1145479388 +81020,3181,Shakespeare,1174333757 +81020,3181,updated classics,1145479439 +81020,3186,based on a true story,1179930957 +81020,3221,17th century,1145748589 +81020,3221,just didn't get it,1179931004 +81020,3257,snorefest,1174332890 +81020,3260,E. M. Forster,1145480659 +81020,3260,Emma Thompson,1145480659 +81020,3317,academia,1145628780 +81020,3317,writers at work,1145628774 +81020,3355,rare books,1179927683 +81020,3418,road movie,1144970982 +81020,3435,Los Angeles,1182796195 +81020,3435,noir,1178049888 +81020,3476,disturbing,1144969216 +81020,3476,multiple realities,1182797964 +81020,3476,nonlinear,1174334239 +81020,3481,Chicago,1213896769 +81020,3481,hilarious,1145634122 +81020,3481,music,1213895347 +81020,3481,Stephen Frears,1213895347 +81020,3502,mawkish,1174333042 +81020,3570,Fiona Shaw,1145750488 +81020,3578,sword and sandal,1179930968 +81020,3751,Jane Horrocks,1145634058 +81020,3756,Henry James,1145481517 +81020,3786,lesbian,1144969605 +81020,3793,Ian McKellen,1213897395 +81020,3795,Canada,1145050774 +81020,3795,ensemble cast,1144964779 +81020,3795,multiple storylines,1144969836 +81020,3819,food,1144963635 +81020,3854,based on a true story,1179928257 +81020,3854,lesbian,1144970495 +81020,3911,hilarious,1144969501 +81020,3911,mockumentary,1178050073 +81020,3982,ensemble cast,1144971042 +81020,3982,food,1179239465 +81020,3982,multiple storylines,1144971042 +81020,3996,cross-dressing women,1144969304 +81020,4014,food,1145479838 +81020,4024,Edith Wharton,1178048254 +81020,4024,Gillian Anderson,1213895734 +81020,4027,updated classics,1144970260 +81020,4029,Philip Seymour Hoffman,1144965531 +81020,4077,homage to Hitchcock,1144971053 +81020,4226,memory,1144964180 +81020,4226,nonlinear,1144969323 +81020,4235,multiple storylines,1145480036 +81020,4308,backstage,1144964904 +81020,4308,musical,1178811104 +81020,4308,Red Curtain trilogy,1145479208 +81020,4345,Hollywood,1182796337 +81020,4424,Italy,1144969873 +81020,4546,disturbing,1174333685 +81020,4642,musical,1213896724 +81020,4644,Italy,1144969589 +81020,4688,17th century,1144969555 +81020,4720,ghosts,1144970280 +81020,4754,cult film,1174333609 +81020,4848,disturbing,1144970176 +81020,4848,Los Angeles,1145050965 +81020,4848,meta-movies,1182796229 +81020,4873,surreal,1178047960 +81020,4878,surreal,1178049896 +81020,4881,noirish,1213898692 +81020,4896,Fiona Shaw,1145750446 +81020,4963,caper,1213896276 +81020,4993,Ian McKellen,1145480767 +81020,4995,biopics,1145478983 +81020,5013,Altman,1145479930 +81020,5013,Stephen Fry,1145750743 +81020,5051,Italy,1144969986 +81020,5060,Altman,1145478602 +81020,5105,Italy,1144969781 +81020,5222,lesbian,1144965407 +81020,5222,neurotic new yorkers,1213894658 +81020,5225,coming of age,1213895986 +81020,5279,19th century,1144963914 +81020,5279,biopics,1144963908 +81020,5279,music,1144963904 +81020,5291,memory,1178810596 +81020,5321,18th century,1145750375 +81020,5321,cross-dressing women,1145750375 +81020,5321,Fiona Shaw,1145750375 +81020,5348,neurotic new yorkers,1213898947 +81020,5367,desert island flicks,1144963731 +81020,5367,gay,1144969333 +81020,5367,Hanif Kureishi,1145050673 +81020,5367,london,1144969341 +81020,5367,Stephen Frears,1145050673 +81020,5380,Oscar Wilde,1179928623 +81020,5391,coincidences,1144964322 +81020,5391,ensemble cast,1144970999 +81020,5391,multiple storylines,1144970999 +81020,5391,nonlinear,1144970999 +81020,5445,dystopia,1145480587 +81020,5481,Bond James Bond,1213898922 +81020,5481,parody,1213898914 +81020,5525,food,1144963495 +81020,5527,19th century,1144971265 +81020,5527,A. S. Byatt,1179245790 +81020,5527,academia,1144971265 +81020,5527,book was better,1144963948 +81020,5613,musical,1213897373 +81020,5614,gay,1179927943 +81020,5614,Italy,1179927943 +81020,5673,just didn't get it,1179927639 +81020,5673,P.T. Anderson,1213895087 +81020,5673,Philip Seymour Hoffman,1145478786 +81020,5788,Mike Leigh,1144970504 +81020,5791,artists,1179245397 +81020,5791,biopics,1144970696 +81020,5797,book was better,1179931044 +81020,5812,1950s housewives,1179239656 +81020,5812,gay,1179239663 +81020,5812,Patricia Clarkson,1179239971 +81020,5812,Todd Haynes,1179239757 +81020,5816,Fiona Shaw,1145750456 +81020,5875,multiple storylines,1144965496 +81020,5878,Almodovar,1145479395 +81020,5903,dystopia,1145479601 +81020,5952,Ian McKellen,1145634154 +81020,5962,so bad it's funny,1144971403 +81020,5991,Chicago,1213896914 +81020,5991,musical,1179243006 +81020,5992,1950s housewives,1179239776 +81020,5992,updated classics,1144971190 +81020,5992,Virginia Woolf,1144971190 +81020,6144,opera,1144965240 +81020,6215,Los Angeles,1145050930 +81020,6217,ensemble cast,1213895215 +81020,6217,multiple storylines,1213895215 +81020,6217,nonlinear,1213895215 +81020,6217,patricia clarkson,1213895215 +81020,6218,London,1178050083 +81020,6305,dystopia,1145480618 +81020,6370,ensemble cast,1178810145 +81020,6385,coming of age,1179243211 +81020,6440,Hollywood,1145481586 +81020,6440,writers at work,1145628797 +81020,6538,surprise ending,1179243360 +81020,6545,coming of age,1179245310 +81020,6545,writers at work,1179245310 +81020,6552,London,1178049913 +81020,6552,Stephen Frears,1144969760 +81020,6644,coincidences,1145050119 +81020,6644,desert island flicks,1144963664 +81020,6671,biopics,1179928245 +81020,6671,writers at work,1179928245 +81020,6683,lesbian,1144969812 +81020,6755,hilarious,1144969597 +81020,6756,ensemble cast,1178050022 +81020,6762,gay,1179928483 +81020,6776,Bollywood,1144971448 +81020,6791,desert island flicks,1144963354 +81020,6791,food,1144963347 +81020,6807,Monty Python,1145478450 +81020,6867,Patricia Clarkson,1179239995 +81020,6883,biopics,1144970973 +81020,6883,writers at work,1145628813 +81020,6918,Apu trilogy,1178048047 +81020,6970,librarians,1144964448 +81020,6972,lesbian,1178050207 +81020,7023,gay,1144970393 +81020,7034,adolescence is hell,1179927543 +81020,7034,lesbian,1174332269 +81020,7068,just didn't get it,1179928599 +81020,7088,updated classics,1144969574 +81020,7096,artists,1178810342 +81020,7151,17th century,1144970712 +81020,7151,artists,1179927982 +81020,7153,Ian McKellen,1145634148 +81020,7155,based on a true story,1179245662 +81020,7217,noir,1213898749 +81020,7361,memory,1144969310 +81020,7361,nonlinear,1174333549 +81020,7361,surreal,1174333549 +81020,7585,Italy,1178810102 +81020,7941,updated classics,1178810156 +81020,8123,Hanif Kureishi,1145628557 +81020,8123,london,1145750671 +81020,8123,Stephen Frears,1145628561 +81020,8256,17th century,1144970304 +81020,8256,cross-dressing women,1144970304 +81020,8261,Altman,1178050172 +81020,8261,disturbing,1178050157 +81020,8261,surreal,1178050157 +81020,8368,Fiona Shaw,1145479627 +81020,8459,19th century,1144969947 +81020,8601,school drama,1144970460 +81020,8783,surprise ending,1179243332 +81020,8874,parody,1179239551 +81020,8874,zombies,1144970916 +81020,8943,backstage,1145479528 +81020,8949,Sandra Oh,1179241527 +81020,8951,Mike Leigh,1145479477 +81020,8966,biopics,1174334225 +81020,8973,Almodovar,1145050306 +81020,8973,gay,1145050306 +81020,8973,homage to Hitchcock,1144969459 +81020,25901,Shakespeare,1213897312 +81020,26599,Almodovar,1145478687 +81020,26758,17th century,1145478516 +81020,26758,music,1213898926 +81020,27020,lesbian,1174333174 +81020,27744,homage to Hitchcock,1182796089 +81020,27744,Italy,1178048395 +81020,27846,evil corporations,1213894458 +81020,30701,Shakespeare,1184348713 +81020,30850,cross-dressing women,1178811141 +81020,30850,Shakespeare,1144970069 +81020,31437,disturbing,1174334081 +81020,31694,Bollywood,1144971462 +81020,31694,Jane Austen,1144971127 +81020,31694,updated classics,1144971127 +81020,32591,music,1144965445 +81020,33004,book was better,1179927924 +81020,33004,Stephen Fry,1179927932 +81020,33649,lesbian,1144965510 +81020,33817,adolescence is hell,1179927697 +81020,33817,lesbian,1178048476 +81020,34405,Joss Whedon,1174333948 +81020,36517,evil corporations,1187096487 +81020,37741,biopics,1144964683 +81020,37741,Philip Seymour Hoffman,1144964683 +81020,37741,writers at work,1145748975 +81020,37855,1950s housewives,1179239634 +81020,37855,based on a true story,1179239614 +81020,39183,gay,1144970546 +81020,39292,Patricia Clarkson,1179245375 +81020,39886,ensemble cast,1157136250 +81020,39886,multiple storylines,1179239386 +81020,39886,nonlinear,1174333513 +81020,40629,Jane Austen,1144970843 +81020,40815,Fiona Shaw,1179245357 +81020,40959,black comedy,1179927368 +81020,40966,17th century,1197304705 +81020,43460,18th century,1213895464 +81020,43460,Gillian Anderson,1213895473 +81020,43460,updated classics,1179243274 +81020,44191,dystopia,1178048197 +81020,44191,Stephen Fry,1174333719 +81020,44694,Almodovar,1178047978 +81020,44694,ghosts,1213896030 +81020,45028,Altman,1174334034 +81020,45720,fashion,1178049731 +81020,46578,road movie,1179927210 +81020,47629,based on a true story,1213895383 +81020,47629,biopics,1175622701 +81020,47629,Stephen Frears,1213895392 +81020,48394,disturbing,1174334064 +81020,48774,apocalypse,1187096453 +81020,48774,dystopia,1213896903 +81020,49272,Bond James Bond,1178050009 +81020,49957,school drama,1213897217 +81020,49961,lesbian,1213896289 +81020,50685,food,1182882610 +81020,50872,food,1213801915 +81020,51678,shakespeare,1175623130 +81020,52545,lesbian,1213898629 +81020,52545,opera,1213898629 +81020,56174,apocalypse,1222308789 +81020,56174,depressing,1222308789 +81020,56174,zombies,1222308789 +81020,56757,19th century,1213896140 +81020,56757,musical,1213896129 +81030,52858,drama,1422519115 +81030,52858,ice hockey,1422519115 +81030,52858,sports,1422519115 +81030,69199,based on a comic,1420385889 +81030,69199,finnish,1420385889 +81030,69199,kids,1420385889 +81030,113282,cycling,1427566245 +81030,113282,mountain biking,1427566245 +81030,113282,sports documentary,1427566245 +81030,120779,coming-of-age,1424933645 +81030,120779,drama,1424933645 +81030,120779,finnish,1424933645 +81050,260,Americana,1441867246 +81050,260,classic,1441867258 +81081,260,Not my thing,1443260175 +81089,5617,BDSM,1313636921 +81089,5617,erotic,1313636919 +81089,5617,Maggie Gyllenhaal,1313636926 +81090,101,off-beat comedy,1378864735 +81090,101,quirky,1378864619 +81167,2762,ghosts,1442131824 +81167,2762,ghosts/afterlife,1442131851 +81167,2762,suspense,1442131839 +81167,2762,twist ending,1442131821 +81167,2762,unique,1442131843 +81167,2762,unpredictable,1442131859 +81167,43333,India,1442131892 +81167,43333,politics,1442131895 +81167,43333,provocative,1442131893 +81167,64957,life & death,1442132343 +81167,64957,original plot,1442132351 +81167,69757,cute,1442132094 +81167,69757,Funny,1442132083 +81167,69757,relationships,1442132108 +81167,69757,romance,1442131965 +81167,79132,alternate reality,1442131408 +81167,79132,dreams,1442131429 +81167,79132,Leonardo DiCaprio,1442131422 +81167,79132,surreal,1442131417 +81167,79132,thought-provoking,1442131462 +81167,79132,twist ending,1442131516 +81167,79132,visually appealing,1442131415 +81167,98961,politics,1442166325 +81167,102903,deception,1442132147 +81167,102903,entertaining,1442132282 +81167,102903,illusions,1442132142 +81167,102903,surprise ending,1442132144 +81174,356,funny,1422669882 +81174,356,tom hanks,1422669882 +81174,356,vietnam,1422669882 +81174,5956,Daniel Day-Lewis,1389239713 +81174,5956,Martin Scorsese,1390786663 +81192,4246,British,1138220011 +81192,52281,zombies,1176734846 +81213,356,based on a book,1338379692 +81213,356,bittersweet,1338379643 +81213,356,comedy,1338379669 +81213,356,historical,1338379681 +81213,356,history,1338379704 +81213,356,quirky,1338379662 +81213,4658,disturbing,1338390130 +81213,7022,dystopia,1338380034 +81213,7022,survival,1338380045 +81213,7254,Bittersweet,1338379956 +81213,7254,love,1338379989 +81213,7254,sci-fi,1338379964 +81213,7254,science fiction,1338379973 +81213,7254,thought-provoking,1338379975 +81213,7254,time travel,1338379979 +81213,7254,twist ending,1338379984 +81213,7254,twists & turns,1338379980 +81213,7361,alternate reality,1338379883 +81213,7361,bittersweet,1338379881 +81213,7361,cult film,1338379917 +81213,7361,Jim Carrey,1338379912 +81213,7361,psychology,1338379909 +81213,7361,quirky,1338379893 +81213,7361,romance,1338379895 +81213,7361,sci-fi,1338379902 +81213,7361,surrealism,1338379928 +81213,7361,thought-provoking,1338379907 +81213,48774,adapted from:book,1338379817 +81213,48774,apocalypse,1338379755 +81213,48774,atmospheric,1338379765 +81213,48774,based on a book,1338379825 +81213,48774,dystopia,1338379771 +81213,48774,England,1338379832 +81213,48774,future,1338379775 +81213,48774,futuristic,1338379778 +81213,48774,pregnancy,1338379837 +81213,48774,sci-fi,1338379843 +81213,48774,social commentary,1338379791 +81213,48774,terrorism,1338379802 +81213,55820,boring,1338389991 +81213,55820,detached,1338390032 +81213,79132,action,1338379551 +81213,79132,alternate reality,1338379545 +81213,79132,sci-fi,1338379530 +81213,79132,thought-provoking,1338379535 +81213,86898,confusing,1338389636 +81220,70,cult film,1143647272 +81220,1997,cult,1143647259 +81220,2329,top,1143647253 +81235,1721,was a made up love story. Not even close to the truth,1337193743 +81235,1721,Was not actual 'true story',1337193743 +81244,235,eccentricity,1368545554 +81244,288,brutality,1368545171 +81244,296,cult,1421536390 +81244,296,gangster,1421536390 +81244,296,multiple storylines,1421536390 +81244,318,powerful ending,1368548697 +81244,428,gangsters,1368548685 +81244,441,weed,1368545485 +81244,671,sarcasm,1368545622 +81244,1089,dark humor,1368548711 +81244,1089,gangsters,1368548685 +81244,1093,drug abuse,1368545648 +81244,1193,powerful ending,1368548697 +81244,1201,gunfight,1368545637 +81244,1213,gangster,1368545360 +81244,1230,sarcasm,1368545622 +81244,1466,gangster,1368545360 +81244,1625,paranoia,1368548600 +81244,1884,drug abuse,1368545648 +81244,1884,weed,1368545486 +81244,2329,brainwashing,1368548615 +81244,2505,pornography,1368545248 +81244,2539,gangster,1368545360 +81244,2718,cheerleading,1368545452 +81244,2951,gunfight,1368545637 +81244,3005,police investigation,1368545329 +81244,3448,censorship,1368545468 +81244,3949,powerful ending,1368548696 +81244,4011,dark humor,1368548711 +81244,4034,drug abuse,1368545648 +81244,4239,drug abuse,1368545648 +81244,4239,drug addiction,1368545271 +81244,4351,undercover cop,1368548657 +81244,4734,weed,1368545485 +81244,4857,jews,1368545214 +81244,5995,jews,1368545214 +81244,6016,powerful ending,1368548697 +81244,32587,brutality,1368545171 +81244,47099,homeless,1368545531 +81244,48304,brutality,1368545171 +81244,60293,Ben Kingsley,1300063447 +81244,60293,drugs,1300063444 +81244,60293,psychiatry,1300063446 +81244,60293,weed,1300063442 +81248,2712,dreamlike,1447083550 +81248,2712,dreams,1447083548 +81248,2712,enigmatic,1447081179 +81248,2712,notable soundtrack,1447083543 +81248,2712,psychological,1447081250 +81248,2712,Stanley Kubrick,1447083539 +81248,2712,surreal,1447083542 +81248,94466,dystopia,1447081431 +81248,94466,satire,1447081433 +81248,94466,social commentary,1447081435 +81248,94466,thought-provoking,1447081438 +81248,94466,well constructed,1447081436 +81250,260,action,1431207907 +81250,260,drama,1431207942 +81250,260,future,1431207947 +81250,260,galactic,1431207935 +81250,260,George Lucas,1431207929 +81250,260,sci-fi,1431207912 +81251,260,action,1444682508 +81251,260,Action comedy,1444682495 +81302,260,action,1439797525 +81302,260,space,1439797529 +81320,367,Jim Carrey,1231105495 +81320,597,Richard Gere,1231105446 +81320,628,Richard Gere,1231104920 +81320,4703,Johnny Depp,1231104179 +81344,367,comedy,1440116695 +81344,858,organized crime,1440117983 +81344,858,violence,1440117991 +81344,1573,action,1440116885 +81344,2762,suspense,1440117464 +81344,5218,animation,1440117113 +81344,5218,funny,1440117116 +81344,6874,Japan,1440116623 +81344,6874,violence,1440116634 +81344,7153,Tolkien,1440117541 +81344,7153,wizards,1440117526 +81344,8783,surprise ending,1440117427 +81344,8783,suspense,1440117424 +81344,60069,animated,1440117870 +81344,60069,artificial intelligence,1440117877 +81344,60069,cute,1440117871 +81344,60069,Sci-Fi,1440117879 +81344,60950,friendship,1440117249 +81344,60950,romance,1440117233 +81344,60950,scenic,1440117247 +81344,63082,music,1440117069 +81344,63082,romance,1440117061 +81344,63082,violence,1440117080 +81344,76108,cartoon,1440116949 +81347,50,ensemble cast,1336148545 +81347,50,Kevin Spacey,1336148540 +81347,50,suspense,1336148557 +81347,50,twist ending,1336148534 +81347,150,astronauts,1336150915 +81347,150,based on a true story,1336150910 +81347,150,historical,1336150896 +81347,150,space,1336150901 +81347,150,true story,1336150890 +81347,260,great soundtrack,1336144618 +81347,318,thought-provoking,1336148361 +81347,318,twist ending,1336148366 +81347,356,bittersweet,1336150827 +81347,356,historical,1336150815 +81347,357,Comedy,1336146255 +81347,357,Hugh Grant,1336146252 +81347,357,Scotland,1336146248 +81347,368,James Garner,1336145164 +81347,368,Jodie Foster,1336145157 +81347,368,Mel Gibson,1336145146 +81347,368,poker,1336145178 +81347,708,animals,1336149164 +81347,708,cats,1336149147 +81347,708,romantic,1336149129 +81347,708,Veterinarian,1336149132 +81347,924,soundtrack,1336147979 +81347,924,surreal,1336147992 +81347,1173,cannibalism,1336145054 +81347,1173,toilet humor,1336145042 +81347,1183,beautiful scenery,1336145456 +81347,1183,Ralph Fiennes,1336145444 +81347,1554,books,1336145000 +81347,1554,Ewan McGregor,1336144982 +81347,1554,Nudity (Full Frontal),1336144991 +81347,1610,cia,1336152175 +81347,1610,espionage,1336152163 +81347,1610,MIND GAMES,1336152167 +81347,1610,Sean Connery,1336152134 +81347,1610,spies,1336152149 +81347,1653,Ethan Hawke,1336148162 +81347,1653,Jude Law,1336148142 +81347,1653,powerful ending,1336148117 +81347,1653,sci-fi,1336148107 +81347,1653,space travel,1336148097 +81347,1653,thought-provoking,1336148081 +81347,1653,Uma Thurman,1336148135 +81347,1680,alternate universe,1336149209 +81347,1680,nonlinear,1336149221 +81347,1682,alternate reality,1336151006 +81347,1682,Jim Carrey,1336151037 +81347,1682,social commentary,1336151028 +81347,1682,voyeurism,1336151034 +81347,2000,Mel Gibson,1336145242 +81347,2028,disturbing,1336143180 +81347,2028,Matt Damon,1336143184 +81347,2028,Tom Hanks,1336143188 +81347,2028,violent,1336143193 +81347,2153,Sean Connery,1336145351 +81347,2396,Nudity (Topless - Notable),1336145541 +81347,2396,Nudity (Topless),1336145535 +81347,2396,Shakespeare,1336145527 +81347,2571,alternate reality,1336148195 +81347,2571,cyberpunk,1336148224 +81347,2571,Keanu Reeves,1336148214 +81347,2571,surreal,1336148203 +81347,2571,thought-provoking,1336148199 +81347,2617,librarians,1336149289 +81347,2628,Ewan McGregor,1336144842 +81347,2628,Star Wars,1336144848 +81347,2671,funny,1336146165 +81347,2671,Hugh Grant,1336146156 +81347,2671,Julia Roberts,1336146159 +81347,2671,romance,1336146122 +81347,2701,steampunk,1336145285 +81347,2701,Will Smith,1336145275 +81347,2791,comedy,1336151986 +81347,2791,funny,1336151993 +81347,3552,funny,1336151964 +81347,3552,toliet humor,1336151945 +81347,3793,comic book,1336144392 +81347,3793,super-hero,1336144432 +81347,3793,superhero,1336144437 +81347,3793,superheroes,1336144444 +81347,3844,death of a child,1336147698 +81347,3844,mother-daughter relationships,1336147738 +81347,3844,WOMEN'S FRIENDSHIP,1336147724 +81347,3996,Action,1336151586 +81347,3996,choreography,1336151667 +81347,3996,Kick-Butt Women,1336151582 +81347,4022,psychological,1336150950 +81347,4022,SURVIVAL,1336150945 +81347,4367,action,1336151438 +81347,4367,adventure,1336151424 +81347,4367,Kick-Butt Women,1336151407 +81347,4367,strong women,1336151429 +81347,4367,video game,1336151412 +81347,4386,stupid,1336149075 +81347,5299,comedy,1336147846 +81347,5299,romance,1336147817 +81347,5299,wedding,1336147812 +81347,5944,franchise,1336144313 +81347,5944,Patrick Stewart,1336144257 +81347,5944,sci-fi,1336144294 +81347,5944,science fiction,1336144302 +81347,5944,space,1336144298 +81347,5944,Star Trek,1336144230 +81347,5970,death of a child,1336147615 +81347,5970,Jamie Lee Curtis,1336147627 +81347,5970,writing,1336147652 +81347,5970,writing process,1336147663 +81347,6564,action,1336151522 +81347,6564,adventure,1336151493 +81347,6564,Kick-Butt Women,1336151475 +81347,6564,Strong Women,1336151487 +81347,6564,video game adaptation,1336151507 +81347,6565,Equestrian,1336143831 +81347,6565,horse racing,1336143807 +81347,6565,horses,1336143811 +81347,6565,true story,1336143815 +81347,6785,brothers,1336148788 +81347,6785,family,1336148773 +81347,6785,romance,1336148765 +81347,6785,soundtrack,1336148823 +81347,6942,british,1336146014 +81347,6942,christmas,1336145938 +81347,6942,funny,1336145946 +81347,6942,great soundtrack,1336145942 +81347,6942,Hugh Grant,1336146003 +81347,6942,Nudity (Topless - Notable),1336146034 +81347,6942,Nudity (Topless),1336146023 +81347,6947,based on a book,1336147497 +81347,6947,death of child,1336147544 +81347,6947,historical,1336147478 +81347,7614,Rogers and Hammerstein,1336148725 +81347,7614,soundtrack,1336148715 +81347,8666,cats,1336144509 +81347,8666,Golden Raspberry (Worst Actress),1336144526 +81347,8666,Golden Raspberry (Worst Picture),1336144520 +81347,8666,Halle Berry,1336144514 +81347,30818,biography,1336148630 +81347,30818,Kevin Spacey,1336148627 +81347,30818,soundtrack,1336148645 +81347,33679,espionage,1336151317 +81347,33679,funny,1336151320 +81347,33679,spies,1336151309 +81347,33679,Strong Women,1336151345 +81347,53138,Bob Newhart,1336150627 +81347,53138,librarians,1336150622 +81347,53140,adventure,1336149354 +81347,53140,bob newhart the ninja,1336149350 +81347,53140,librarians,1336149344 +81347,68954,bittersweet,1336146746 +81347,68954,children,1336146779 +81347,68954,dogs,1336146819 +81347,68954,funny,1336146772 +81347,68954,Pixar,1336146836 +81347,68954,Senior Citizens,1336146796 +81347,68954,South America,1336146828 +81347,68954,talking animals,1336146718 +81347,69122,absurd,1336147285 +81347,69805,Bob Newhart,1336150682 +81347,69805,librarians,1336150663 +81347,69805,vampires,1336150692 +81347,73017,dialogue,1336148889 +81347,73017,Sherlock Holmes,1336148896 +81347,80839,horses,1336143715 +81347,80839,true story,1336143737 +81347,89586,alternate dimension,1336147084 +81347,89586,animals,1336147117 +81347,89586,brothers,1336147026 +81347,89586,dialogue,1336148943 +81347,89586,humorous,1336147164 +81347,89586,soundtrack,1336148956 +81347,89586,stepbrother,1336147064 +81347,91126,animals,1336147414 +81347,91126,anthropomorphic,1336143132 +81347,91126,horses,1336143146 +81347,91126,Oscar nom,1336143155 +81347,91386,animals,1336151109 +81347,91386,soundtrack,1336151097 +81356,260,"Enjoyable, fairy tale story",1442001454 +81356,260,Groundbreaking special effects,1442001431 +81361,260,good vs evil,1440559474 +81361,260,space adventure,1440559470 +81383,2571,artificial intelligence,1438807500 +81383,2571,atmospheric,1438807498 +81383,2571,dystopia,1438807492 +81383,2571,fight scenes,1438807497 +81383,2571,martial arts,1438807489 +81383,2571,philosophy,1438807487 +81383,2571,thought-provoking,1438807480 +81383,4873,metaphysics,1438807520 +81383,4873,philosophy,1438807525 +81383,4873,thought-provoking,1438807522 +81383,56367,twee,1439378543 +81383,69757,twee,1439378512 +81383,93240,anime,1439265109 +81383,101070,feminist,1438407288 +81383,101070,Islam,1438407272 +81383,101070,muslim,1438407293 +81383,101070,strong female character,1438407281 +81383,114277,twee,1439378498 +81384,32,post-apocalyptic,1327514530 +81384,32,psychology,1327514535 +81384,32,time travel,1327514526 +81384,50,organized crime,1328029111 +81384,50,twist ending,1328029102 +81384,50,twists & turns,1328029128 +81384,292,Dustin Hoffman,1447457441 +81384,292,Morgan Freeman,1447457452 +81384,318,friendship,1346540359 +81384,318,masterplan,1423424898 +81384,318,Morgan Freeman,1346540355 +81384,318,prison escape,1423424898 +81384,318,redemption,1423424898 +81384,318,revenge,1346540367 +81384,356,bittersweet,1346540428 +81384,356,classic,1346540434 +81384,356,vietnam war,1346540444 +81384,527,historical,1426967603 +81384,527,moving,1426967603 +81384,527,wwii,1426967603 +81384,608,crime gone awry,1327513661 +81384,750,black comedy,1363561339 +81384,750,British,1363561329 +81384,750,cold war,1363561343 +81384,750,comedy,1363561345 +81384,750,Peter Sellers,1363561324 +81384,750,satire,1363561333 +81384,750,satirical,1363561332 +81384,750,Stanley Kubrick,1363561313 +81384,1079,British,1347124090 +81384,1079,John Cleese,1347124079 +81384,1079,quirky,1347124068 +81384,1089,cult film,1447358814 +81384,1089,great soundtrack,1447358810 +81384,1089,nonlinear,1447358796 +81384,1089,quirky,1447358806 +81384,1089,tarantino,1447358818 +81384,1089,violent,1447358800 +81384,1136,Monty Python,1328028938 +81384,1136,parody,1328028932 +81384,1136,satire,1328028950 +81384,1175,atmospheric,1346539769 +81384,1175,post-apocalyptic,1346539767 +81384,1175,surreal,1346539763 +81384,1193,psychological,1328028964 +81384,1193,psychology,1328028967 +81384,1201,Clint Eastwood,1363545661 +81384,1201,Ennio Morricone,1363545664 +81384,1201,Italian,1363545678 +81384,1201,music,1363545681 +81384,1201,Sergio Leone,1363545669 +81384,1252,mystery,1328029053 +81384,1252,twists & turns,1328029053 +81384,1625,Michael Douglas,1330966552 +81384,1625,Mystery,1330966555 +81384,1625,plot twist,1330966584 +81384,1625,psychological,1330966559 +81384,1625,Sean Penn,1330966600 +81384,1625,twist ending,1330966590 +81384,1625,unrealistic,1330966596 +81384,1653,eugenics,1346540593 +81384,1653,future,1346540621 +81384,1653,genetic engineering,1346540598 +81384,1653,genetics,1346540596 +81384,1653,powerful ending,1346540617 +81384,1653,racism,1346540608 +81384,1784,funny,1363544868 +81384,1784,Jack Nicholson,1363544851 +81384,1784,obsessive compulsive disorder,1363544856 +81384,1784,psychology,1363544853 +81384,1784,quirky,1363544871 +81384,1784,relationships,1363544862 +81384,2329,Edward Norton,1346539929 +81384,2329,Neo-Nazis,1346539931 +81384,2329,politics,1346539942 +81384,2329,powerful ending,1346539939 +81384,2329,racism,1346539932 +81384,2329,tense,1346539936 +81384,2329,thought-provoking,1346539934 +81384,2571,dystopia,1430596384 +81384,2571,keanu reeves,1430596384 +81384,2571,post-apocalyptic,1327513921 +81384,2571,sci-fi,1327513918 +81384,2571,special effects,1430596384 +81384,2571,virtual reality,1327513924 +81384,3000,adventure,1331750523 +81384,3000,anime,1331750513 +81384,3000,fantasy world,1331750509 +81384,3000,surreal,1331750507 +81384,3359,coming of age,1379532615 +81384,3359,coming-of-age,1379532618 +81384,3359,cycling,1379532604 +81384,3363,classic,1394227261 +81384,3363,coming of age,1394227255 +81384,3363,friendship,1394227259 +81384,4848,BORING!,1329244727 +81384,4848,Nudity (Full Frontal),1329244809 +81384,4848,pretentious,1329244727 +81384,4973,slow paced,1331750400 +81384,4978,characters,1346539468 +81384,4978,romance,1346539468 +81384,4993,adventure,1327514243 +81384,4993,characters,1327514243 +81384,4993,epic,1327514243 +81384,4993,fantasy world,1327514243 +81384,4993,fighting,1327514283 +81384,4993,photography,1327514283 +81384,5282,ending,1346539055 +81384,5282,lawyers,1346539083 +81384,5282,military court,1346539099 +81384,5291,multiple storylines,1327513763 +81384,5291,nonlinear,1327513776 +81384,6016,disturbing,1328032226 +81384,6016,drama,1327513858 +81384,6016,multiple storylines,1328032231 +81384,6016,realistic,1327513858 +81384,6365,action packed,1327513969 +81384,6365,dystopia,1327513956 +81384,6365,unrealistic characters,1327514143 +81384,6539,cliche,1346539351 +81384,6539,Johnny Depp,1346539351 +81384,6539,magic realism,1346539351 +81384,6539,modernism,1346539351 +81384,6539,photography,1346539351 +81384,6539,too long,1346539351 +81384,6953,multiple storylines,1362851309 +81384,6953,psychological,1362851304 +81384,6953,Sean Penn,1362851300 +81384,7090,atmospheric,1346539687 +81384,7090,colours,1346539688 +81384,7090,martial arts,1346539687 +81384,7090,photography,1346539687 +81384,8914,dialogue driven,1347124664 +81384,8914,mindfuck,1347124653 +81384,8914,plot holes,1347124658 +81384,8914,sci-fi,1347124651 +81384,8914,time travel,1347124649 +81384,31410,Biography,1415479148 +81384,31410,disturbing,1415479142 +81384,31410,excellent performance,1415479223 +81384,31410,historical,1415479146 +81384,31410,World War II,1415479140 +81384,44191,comic book,1346539872 +81384,44191,dark,1346539892 +81384,44191,dystopia,1346539869 +81384,44191,England,1346539886 +81384,44191,inspirational,1346539884 +81384,44191,Natalie Portman,1346539875 +81384,44191,politics,1346539878 +81384,44191,thought-provoking,1346539865 +81384,44191,visually appealing,1346539882 +81384,47044,action packed,1346539225 +81384,47044,characters,1346539191 +81384,47044,Miami,1346539191 +81384,47044,shallow,1346539191 +81384,47044,unrealistic,1346539190 +81384,47044,unrealistic action,1346539225 +81384,47044,unrealistic plot,1346539191 +81384,48043,atmospheric,1346540132 +81384,48043,death,1346540145 +81384,48043,emotional,1346540222 +81384,48043,multiple storylines,1363544997 +81384,48043,Music,1346540240 +81384,48043,nonlinear,1346540246 +81384,48043,surreal,1346540234 +81384,48043,thought-provoking,1346540268 +81384,48043,visually appealing,1346540130 +81384,48774,disturbing,1346540672 +81384,48774,dystopia,1346540669 +81384,48774,ending,1346540752 +81384,48774,future,1346540678 +81384,48774,sci-fi,1346540664 +81384,48774,violence,1346540683 +81384,51662,americanized movie,1328032885 +81384,51662,based on a comic,1328032786 +81384,51662,based on comic,1328032792 +81384,51662,blood,1328032810 +81384,51662,Frank Miller,1328032844 +81384,51662,stylized,1328032772 +81384,52328,atmospheric,1347125121 +81384,52328,dark,1347125102 +81384,52328,despair,1347125096 +81384,52328,ending twist,1347125083 +81384,52328,great soundtrack,1347125107 +81384,52328,madness,1347125123 +81384,52328,psychological,1347125125 +81384,52328,psychology,1347125086 +81384,52328,slow paced,1347125112 +81384,52328,spaceships,1347125070 +81384,54372,French,1422734628 +81384,54372,murder mystery,1422734632 +81384,54372,twist ending,1422734630 +81384,55442,coming of age,1346830950 +81384,55442,Middle East,1346830956 +81384,55442,politics,1346830889 +81384,55442,revolution,1346830920 +81384,55442,social commentary,1346830954 +81384,55908,entirely dialogue,1328035276 +81384,55908,Excellent use of dialogue,1328035260 +81384,55908,immortality,1415478798 +81384,55908,intellectual,1328035246 +81384,55908,sci-fi,1328035254 +81384,55908,thought-provoking,1328035250 +81384,55908,Underrated,1328035283 +81384,55908,unique,1328035252 +81384,58559,Atmospheric,1328033023 +81384,58559,Batman,1328033005 +81384,58559,Heath Ledger,1328033031 +81384,58559,superhero,1328032985 +81384,58559,vigilante,1328032996 +81384,63082,India,1363545248 +81384,63082,love story,1363545263 +81384,63082,Oscar (Best Picture),1363545297 +81384,63082,photography,1363545283 +81384,63082,romance,1363545255 +81384,63082,shallow plot,1363545329 +81384,63082,social commentary,1363545252 +81384,63082,violence,1363545301 +81384,63082,visually appealing,1363545291 +81384,64614,Clint Eastwood,1328032142 +81384,64614,culture clash,1328032146 +81384,64614,gangs,1328032137 +81384,64614,redemption,1328032157 +81384,68954,emotional,1327513725 +81384,68954,friendship,1327513707 +81384,70286,action,1328029396 +81384,70286,alien invasion,1328029363 +81384,70286,aliens,1328029334 +81384,70286,sci-fi,1363545748 +81384,70286,social commentary,1328029331 +81384,72167,boring plot,1327514477 +81384,72167,nonsensical,1327514459 +81384,72167,stupid,1327514459 +81384,72167,stupid characters,1327514459 +81384,73321,beautiful scenery,1346540020 +81384,73321,Bible,1346540007 +81384,73321,characters,1346540045 +81384,73321,Christianity,1346540005 +81384,73321,Denzel Washington,1346539988 +81384,73321,dystopic future,1346539990 +81384,73321,fight scenes,1346540034 +81384,73321,plot holes,1346539994 +81384,79357,nonlinear,1363545104 +81384,79357,Nudity (Topless),1363545080 +81384,79357,sci-fi,1363545072 +81384,79357,time travel,1363545076 +81384,79357,too long,1363545089 +81384,83302,cheating,1395528857 +81384,83302,cold,1395528822 +81384,83302,husband-wife relationship,1395528870 +81384,83302,lack of identification,1395528877 +81384,83302,thought-provoking,1395528850 +81384,83302,unlikable characters,1395528833 +81384,89118,disturbing,1422734236 +81384,89118,long revenge,1422734239 +81384,89118,spanish,1422734293 +81384,89118,unpredictable,1422734224 +81384,90746,animation,1330630496 +81384,91077,coma,1331750199 +81384,91077,drama,1331750229 +81384,91077,emotional,1331750192 +81384,91077,family bonds,1331750241 +81384,91077,George Clooney,1331750215 +81384,91077,Hawaii,1331750202 +81384,96610,future,1395578305 +81384,96610,sci-fi,1395578309 +81384,96610,time travel,1395578311 +81384,96610,violent,1395578313 +81384,96610,visually appealing,1395578331 +81384,97752,adapted from:book,1363545169 +81384,97752,atmospheric,1363545128 +81384,97752,based on a book,1363545193 +81384,97752,multiple storylines,1363545163 +81384,97752,philosophy,1363545181 +81384,97752,rebellion,1363545145 +81384,97752,sci-fi,1363545147 +81384,97752,slow paced,1363545213 +81384,97752,social commentary,1363545176 +81384,97752,social criticism,1363545142 +81384,97752,Tom Hanks,1363545157 +81384,97752,visually appealing,1363545156 +81384,99114,Leonardo DiCaprio,1415478599 +81384,99114,Over the top,1415478587 +81384,99114,Quentin Tarantino,1415478596 +81384,99114,Samuel L. Jackson,1415478605 +81384,99114,slavery,1415478601 +81384,108190,based on a book,1426978115 +81384,108190,dystopia,1426978076 +81384,112556,based on a book,1422733895 +81384,112556,marriage,1422733850 +81384,112556,meticulous,1422733882 +81384,112556,mindfuck,1422733866 +81384,112556,Neal Patrick Harris,1422733874 +81384,112556,unpredictable,1422733885 +81442,318,crime,1384058656 +81442,318,drama,1384058658 +81442,318,imdb top 250,1384058661 +81442,318,inspirational,1384058652 +81442,318,Morgan Freeman,1384058640 +81442,318,reflective,1384058649 +81442,318,thought-provoking,1384058642 +81442,318,twist ending,1384058645 +81442,356,imdb top 250,1384058587 +81442,356,inspirational,1384058584 +81442,356,Oscar (Best Actor),1384058576 +81442,356,quirky,1384058593 +81442,356,romance,1384058590 +81442,356,Tom Hanks,1384058616 +81442,356,vietnam war,1384058611 +81442,3147,cinematography,1384058742 +81442,3147,emotional,1384058717 +81442,3147,great acting,1384058715 +81442,3147,oscar (best directing),1384058721 +81442,3147,racism,1384058728 +81442,3147,social commentary,1384058747 +81442,3147,visually stunning,1384058737 +81442,63082,dreamlike,1384058770 +81442,63082,excellent script,1384058767 +81442,63082,great soundtrack,1384058765 +81442,63082,love story,1384058762 +81442,72378,Bible,1384069903 +81442,72378,predictable,1384069885 +81442,72378,Special Effects,1384069869 +81442,76175,adventure,1384070093 +81442,76175,existentialism,1384070091 +81442,76175,fantasy,1384070088 +81442,76175,Special Effects,1384070084 +81442,79132,alternate reality,1384059362 +81442,79132,dreamlike,1384059379 +81442,79132,ensemble cast,1384059384 +81442,79132,memory,1384059370 +81442,79132,philosophy,1384059372 +81442,79132,sci-fi,1384059375 +81442,79132,surreal,1384059368 +81442,79132,thought-provoking,1384059365 +81442,79132,twist ending,1384059389 +81442,89492,baseball,1384070399 +81442,89745,predictable,1384069759 +81442,89745,Robert Downey Jr.,1384069813 +81442,89745,visually appealing,1384069768 +81442,89745,visually stunning,1384069766 +81442,103665,kung fu,1384058543 +81457,527,periodic,1379479492 +81457,1193,simple plot,1379479527 +81465,63082,music,1241651333 +81465,63082,musicals,1241651338 +81479,51662,seen at the cinema,1179955984 +81479,51884,seen at the cinema,1179955953 +81483,260,classic sci-fi,1440872647 +81483,260,space adventure,1440872663 +81483,858,Mafia,1442071740 +81483,6016,amazing photography,1440873499 +81483,6016,black comedy,1440873485 +81483,6016,coming of age,1440873477 +81483,32587,stylish,1440873415 +81483,32587,violent,1440873425 +81483,40342,james gandolfini,1442071907 +81483,40342,redhead,1442071917 +81510,91658,rape,1333003938 +81510,92481,bittersweet,1360123521 +81543,260,classic,1430623640 +81543,260,sci-fi,1430623663 +81569,307,Three Colors trilogy,1222159530 +81580,318,atmospheric,1423091748 +81580,318,friendship,1423091750 +81580,318,reflective,1423091774 +81580,318,twist ending,1423091760 +81580,2028,World War II,1379199775 +81580,26433,b.o,1425132600 +81580,26433,reggae,1425132600 +81580,26433,roots,1425132600 +81580,27368,cult,1426758922 +81580,48045,cult,1426759038 +81580,48045,french,1426759046 +81580,48045,les nuls,1426759093 +81580,48045,serial killer,1426759104 +81580,48516,Jack Nicholson,1422993658 +81580,48516,Leonardo DiCaprio,1422993627 +81580,96096,comédie,1426758670 +81580,96096,Comedy,1426758815 +81580,96096,cult,1426758670 +81580,96096,Kad Merad,1426758808 +81580,106100,Matthew McConaughey,1426758325 +81580,106100,true story,1426758443 +81580,112183,dark,1442343096 +81580,112183,great performances,1442343130 +81580,112183,one shot,1442343110 +81580,117444,brother sister relationship,1419981487 +81580,117444,graphic,1419981390 +81598,273,gothic,1237739064 +81605,260,classic sci-fi,1438949080 +81605,260,space action,1438949091 +81666,49284,slow,1228575498 +81675,858,Al Pacino,1307350864 +81675,1271,lesbian,1290655399 +81675,1580,alien,1289077124 +81675,1580,aliens,1289077122 +81675,1580,sci-fi,1289077104 +81675,1580,Will Smith,1289077117 +81675,2571,Keanu Reeves,1289077219 +81675,2571,sci-fi,1289077221 +81675,2671,chick flick,1289078242 +81675,3300,anti-hero,1289077319 +81675,3300,sci-fi,1289077348 +81675,3300,Vin Diesel,1289077323 +81675,3408,based on a true story,1290528487 +81675,3408,investigation,1290528506 +81675,3408,Oscar (Best Actress),1290528449 +81675,3408,social commentary,1290528497 +81675,4963,Matt Damon,1290666301 +81675,4963,witty,1290666375 +81675,5957,Sandra Bullock,1289078959 +81675,6157,alter ego,1289077073 +81675,6157,bad acting,1289077057 +81675,6157,blindness,1289077054 +81675,6770,Mark Ruffalo,1265576658 +81675,7346,pornography,1289078483 +81675,8371,Vin Diesel,1289077286 +81675,8961,alter ego,1289077019 +81675,8961,imdb top 250,1289077012 +81675,8961,oscar,1289077000 +81675,27036,Arthurian legend,1290633061 +81675,27036,Helena Bonham Carter,1290633069 +81675,27808,better than I expected,1290667544 +81675,27871,Alan Rickman,1290528544 +81675,27871,segregation,1290528554 +81675,27871,true story,1290528559 +81675,31685,Kevin James,1289078804 +81675,31685,Will Smith,1289078814 +81675,33669,Blake Lively,1290667377 +81675,44191,historical,1289077168 +81675,44191,inspirational,1289077176 +81675,44191,thought-provoking,1289077160 +81675,45720,Bechdel Test:Pass,1290531176 +81675,45720,fashion,1290531173 +81675,48696,Nudity (Topless),1265576435 +81675,48696,Oscar Nom 2007,1265576457 +81675,48696,suburbia,1265576468 +81675,49772,Edward Norton,1265577164 +81675,50685,pregnancy,1289078328 +81675,50685,pro-life,1289078348 +81675,54281,drugs,1289078455 +81675,56367,Ellen Page,1289078372 +81675,56367,Jennifer Garner,1289078383 +81675,56367,pregnancy,1289078375 +81675,56367,witty,1289078378 +81675,59315,afghanistan,1289076936 +81675,59315,comic book,1289076929 +81675,59315,Robert Downey Jr.,1267658171 +81675,59315,vigilante,1289076924 +81675,59369,car chase,1289077377 +81675,59369,espionage,1289077395 +81675,59369,father daughter relationship,1289077385 +81675,59369,Liam Neeson,1289077370 +81675,59369,Paris,1289077374 +81675,62293,royalty,1265585692 +81675,62553,Queen Latifah,1290727706 +81675,63992,vampires,1291573384 +81675,66171,Dakota Fanning,1289077248 +81675,67734,Kristen Stewart,1289078407 +81675,67788,Joan Cusack,1291573175 +81675,67788,Kristin Scott Thomas,1291573191 +81675,69324,World War II,1267657433 +81675,69712,ending,1290667322 +81675,69757,intelligent,1289078285 +81675,69757,romance,1289078297 +81675,69757,Zooey Deschanel,1289078295 +81675,70183,Gerard Butler,1289078672 +81675,70183,Katherine Heigl,1289078670 +81675,71327,based on a true story,1265576531 +81675,71518,current,1290305589 +81675,71518,Drew Barrymore,1290305573 +81675,71518,Ellen Page,1290305571 +81675,71518,pop counterculture,1290305578 +81675,71518,roller derby,1290305582 +81675,71579,coming of age,1277689125 +81675,72733,Africa,1277689070 +81675,72733,Clint Eastwood,1277689076 +81675,72733,Morgan Freeman,1277689073 +81675,73017,Robert Downey Jr.,1266338111 +81675,73017,Sherlock Holmes,1266338115 +81675,73023,Jeff Bridges,1277686663 +81675,77561,based on a comic,1277686622 +81675,77561,Gwyneth Paltrow,1277686627 +81675,77561,Robert Downey Jr.,1277686624 +81705,318,narrated,1382275701 +81705,318,prison escape,1382275697 +81705,318,thought-provoking,1382275689 +81705,524,inspirational ending,1382275594 +81705,524,true story,1382275606 +81705,953,alternate reality,1382298694 +81705,953,alternate universe,1382298692 +81705,953,black and white,1382298696 +81705,953,heartwarming,1382298674 +81705,953,James Stewart,1382298676 +81705,953,World War II,1382298687 +81705,1060,great dialogue,1382275804 +81705,1073,based on a book,1382275191 +81705,1073,classic,1382275188 +81705,1073,Gene Wilder,1382275159 +81705,1073,remade,1382275201 +81705,1073,Roald Dahl,1382275182 +81705,1073,surreal,1382275161 +81705,1073,witty,1382275196 +81705,1682,dark comedy,1382298581 +81705,1682,Jim Carrey,1382298597 +81705,1682,social commentary,1382298595 +81705,1682,surreal,1382298590 +81705,1682,witty,1382298593 +81705,1707,not as good as the first,1382275462 +81705,1968,coming of age,1382275844 +81705,1968,cult film,1382275854 +81705,2028,Vin Diesel,1382275617 +81705,2109,Steve Martin,1382275907 +81705,2231,Matt Damon,1382298620 +81705,2231,poker,1382298628 +81705,3039,comedy,1382298541 +81705,3039,Dan Aykroyd,1382298504 +81705,3039,Eddie Murphy,1382298528 +81705,3039,hilarious,1382298525 +81705,3039,switching places,1382298544 +81705,4015,Ashton Kutcher,1382275360 +81705,4015,stupid,1382275290 +81705,4015,stupidity,1382275292 +81705,5481,Beyoncé Knowles,1382275259 +81705,5481,blaxploitation,1382275264 +81705,5481,crude,1382275250 +81705,6787,Based on a true story,1382275822 +81705,6787,journalism,1382275818 +81705,6787,Robert Redford,1382275816 +81705,34405,comedy,1382275636 +81705,34405,dystopia,1382275633 +81705,34405,quirky,1382275646 +81705,34405,sci-fi,1382474691 +81705,34405,SPACE TRAVEL,1382275629 +81705,34405,witty,1382275631 +81705,44195,dark humor,1382275669 +81705,44195,funny,1382275666 +81705,44195,social commentary,1382275662 +81705,44195,witty,1382275675 +81705,48774,apocalypse,1382275878 +81705,48774,atmospheric,1382275880 +81705,48774,dystopia,1382275882 +81705,48774,futuristic,1382275883 +81705,48774,sci-fi,1382275885 +81705,53322,Below R,1382275093 +81705,53322,Brad Pitt,1382275087 +81705,53322,Casino,1382275099 +81705,53322,Don Cheadle,1382275089 +81705,53322,George Clooney,1382275077 +81705,53322,Heist,1382275080 +81705,53322,Las Vegas,1382275106 +81705,53322,Matt Damon,1382275078 +81705,53322,sequel,1382275068 +81705,53464,bad acting,1382275524 +81705,53464,bad jokes,1382275531 +81705,53464,bad plot,1382275526 +81705,53464,based on comic book,1382275538 +81705,53464,Marvel,1382275549 +81705,54259,atmospheric,1382275715 +81705,54259,magic,1382275717 +81705,54259,whimsical,1382275719 +81705,72998,computer animation,1382474831 +81705,72998,futuristic,1382474825 +81705,72998,sci-fi,1382474827 +81705,87430,3D,1382275491 +81705,87430,audience intelligence underestimated,1382275471 +81705,87430,lowest common denominator,1382275477 +81705,87430,Ryan Reynolds,1382275486 +81705,87520,audience intelligence underestimated,1382275389 +81705,87520,bad science,1382275382 +81705,87520,childish plot,1382275394 +81705,87520,childish style,1382275443 +81705,87520,Michael Bay,1382275405 +81716,180,ensemble,1157489975 +81716,180,good dialogue,1157489975 +81716,180,teen angst,1157489975 +81716,1225,drama,1140562128 +81716,1225,music,1140562128 +81716,1310,community,1155572963 +81716,1310,grunge,1155572963 +81716,1639,great dialogue,1159903348 +81716,1639,love story,1159903348 +81716,1639,sexual identity,1159903348 +81716,2912,drama,1139249612 +81716,2912,thriller,1139249612 +81716,2970,eccentricity,1150134222 +81716,2970,native people,1150134222 +81716,3538,cultural clash,1138642777 +81716,3726,gangs,1157489927 +81716,3726,los angeles,1157489927 +81716,3726,race issues,1157489927 +81716,4239,dysfunctional family,1156787461 +81716,4239,Johnny Depp,1156787461 +81716,4239,seventies,1156787461 +81716,4537,drama,1139850309 +81716,4537,family,1139850309 +81716,5059,eccentricity,1153757820 +81716,5059,man vs. nature,1153757820 +81716,5059,military,1153757820 +81716,5059,werner herzog,1153757820 +81716,5440,John Ford,1156787367 +81716,5440,John Wayne,1156787367 +81716,5440,native americans,1156787367 +81716,5440,retirement,1156787367 +81716,5440,western,1156787367 +81716,5932,insurmountable odds,1151351092 +81716,5932,the amazon,1151351092 +81716,5932,werner herzog,1151351092 +81716,6023,rebels,1149006620 +81716,6870,sean penn; boston; drama,1150736600 +81716,7047,action,1140562217 +81716,7047,melodrama,1140562217 +81716,7218,anti-vigilante,1159903287 +81716,7218,morality tale,1159903287 +81716,7218,Western,1159903287 +81716,7700,classic,1155572933 +81716,7700,existential,1155572933 +81716,7700,French,1155572933 +81716,8754,drama,1138642807 +81716,8754,education,1138642807 +81716,26485,drama,1139249633 +81716,26485,surreal,1139249633 +81716,26485,youth,1139249633 +81716,27432,drama,1140562178 +81716,27432,immigrant experience,1140562178 +81716,31689,pop culture,1149020874 +81716,31689,pornography's influence,1149020999 +81716,31689,the mob,1149020874 +81716,33358,drama,1137693424 +81716,34542,documentary,1139850293 +81716,34542,eccentricity,1139850293 +81716,35015,adventure,1149528474 +81716,35015,coming-of-age,1149528474 +81716,35015,family film,1149528474 +81716,36276,dysfunctional family,1154375006 +81716,36276,juliet binoche,1154375006 +81716,36276,non-hollywood ending,1154375006 +81716,37741,eccentricity,1150134161 +81716,37741,journalism,1150134161 +81716,38061,comedy,1153757746 +81716,38061,smart writing,1153757746 +81716,38061,updated noir,1153757746 +81716,38188,drama,1148329793 +81716,38188,real life,1148329793 +81716,38886,drama,1149527771 +81716,38886,dysfunctional family,1149527771 +81716,38886,high squirm factor,1149527771 +81716,39427,near-death experience,1150134251 +81716,39427,psychological,1150134251 +81716,39441,rock and roll; unsung heroes,1150736545 +81716,40278,naive look at war; half-baked script,1152563561 +81716,40629,Classic,1148329633 +81716,40629,England,1148329649 +81716,40629,Jane Austen,1148329662 +81716,40629,unnecessary,1148329627 +81716,41527,fundamentalism; catch-22,1150736653 +81716,41569,expensive B movie,1154375068 +81716,41569,extraneous,1154375068 +81716,41863,culture clash,1155151649 +81716,41863,death,1155151649 +81716,41863,immigration,1155151649 +81716,41863,tommy lee jones,1155151649 +81716,42418,nature vs. civilization; native peoples; going native,1152563613 +81716,44761,director as poseur,1159903384 +81743,61394,uneven quality,1247707117 +81743,64839,sport:professional wrestling,1247706529 +81743,64839,touching,1247706532 +81743,69122,comedy,1247706480 +81743,69122,Drinking,1247706492 +81743,69122,Zach Galifinakis,1247706502 +81743,69278,Danny McBride,1247708778 +81749,3205,Bava,1178692378 +81749,3205,gothic,1163301461 +81749,3216,Franco,1178692217 +81749,3875,satanism,1163301520 +81749,5157,religion,1163301492 +81749,5195,Rollin,1178692313 +81774,261,adapted from:book,1233027077 +81774,261,based on a book,1226011926 +81774,261,Literary Adaptation,1226011932 +81774,261,Louisa May Alcott,1233027075 +81774,296,dark comedy,1233027218 +81774,296,Quentin Tarantino,1233027215 +81774,318,based on a book,1233027200 +81774,318,prison,1233027202 +81774,318,Stephen King,1233027204 +81774,364,animation,1233027185 +81774,364,Disney,1233027182 +81774,593,based on a book,1233027212 +81774,593,Oscar (Best Picture),1233027210 +81774,593,serial killer,1233027207 +81774,595,classic,1233029553 +81774,595,Disney,1233029549 +81774,595,fairy tale,1233029551 +81774,858,based on a book,1233027196 +81774,858,Mafia,1233027194 +81774,858,Oscar (Best Picture),1233027192 +81774,912,classic,1233027149 +81774,912,Oscar (Best Picture),1233027146 +81774,919,based on a book,1233027140 +81774,919,classic,1233027139 +81774,919,fantasy,1233027136 +81774,1136,medieval,1233027163 +81774,1136,Monty Python,1233027161 +81774,1136,parody,1233027159 +81774,1204,classic,1233027086 +81774,1204,History,1233027083 +81774,1204,Oscar (Best Picture),1233027081 +81774,1262,historical,1233027010 +81774,1262,true story,1233026993 +81774,1262,World War II,1233026991 +81774,1967,Adventure,1233027026 +81774,2115,archaeology,1233027121 +81774,2115,Indiana Jones,1233027124 +81774,3081,Fantasy,1233027089 +81774,3081,Johnny Depp,1233027091 +81774,3081,Tim Burton,1233027093 +81774,4878,psychology,1233027069 +81774,4878,time travel,1233027071 +81774,4995,based on a book,1233027112 +81774,4995,Oscar (Best Picture),1233027115 +81774,4995,psychology,1233027117 +81774,6539,Johnny Depp,1233029396 +81774,6539,pirates,1233029398 +81774,7438,martial arts,1233027097 +81774,7438,Quentin Tarantino,1233027102 +81774,7438,revenge,1233027100 +81774,8368,based on a book,1233027016 +81774,8368,magic,1233026997 +81774,8530,deafness,1233026708 +81774,30816,Musical,1233025958 +81774,36086,India,1233029529 +81774,36086,lame,1233029529 +81774,36086,romance boygirl dancing,1233029528 +81774,43928,comic book,1233029204 +81774,43928,lone hero,1233029193 +81774,43928,sci-fi,1233029187 +81774,44191,based on a book,1233027008 +81774,44191,dystopia,1233027005 +81774,44974,controversial,1233026690 +81774,44974,disturbing,1233026687 +81774,44974,revenge,1233026685 +81774,52604,courtroom drama,1233026693 +81774,52604,murder,1233026695 +81774,55995,animation,1233026702 +81774,55995,fantasy,1233026700 +81774,56757,cannibalism,1233026738 +81774,58154,england,1234176839 +81774,58154,historical,1234176841 +81774,60950,love,1234176326 +81774,60950,romance,1234176287 +81774,60950,Spain,1234176326 +81774,60950,Woody Allen,1234176282 +81774,63082,based on a book,1233025693 +81774,63082,India,1233026704 +81774,64614,ageism,1233829908 +81774,64614,Clint Eastwood,1233829792 +81774,64614,culture clash,1233829899 +81774,64614,life & death,1233829902 +81774,64614,revenge,1233829788 +81798,34336,Bond,1137305115 +81803,235,Johnny Depp,1216323964 +81803,235,Oscar (Best Supporting Actor),1216323969 +81803,235,Tim Burton,1216323959 +81803,508,Oscar (Best Actor),1216324556 +81803,508,Tom Hanks,1216324560 +81803,902,classic,1216324280 +81803,1097,Steven Spielberg,1216324306 +81803,1639,Kevin Smith,1216324644 +81803,1653,sci-fi,1216324179 +81803,2291,Johnny Depp,1216324166 +81803,2291,Tim Burton,1216324164 +81803,2291,Winona Ryder,1216324169 +81803,2750,Woody Allen,1216324219 +81803,2797,Tom Hanks,1216325145 +81803,4776,denzel washington,1216324393 +81803,4848,David Lynch,1216324034 +81803,4848,surreal,1216324037 +81803,5508,Manchester,1216324866 +81803,5508,new wave,1216324864 +81803,6197,Madness,1216324585 +81803,6197,mental illness,1216324587 +81803,41716,Pierce Brosnan,1216324738 +81803,56757,Johnny Depp,1216324103 +81803,56757,Musical,1216324105 +81810,260,action-adventure,1432252440 +81810,260,sci-fi,1432252419 +81810,356,enthralling,1432252895 +81810,356,intense,1432252895 +81810,356,interesting,1432252895 +81822,3556,coming of age,1286823736 +81822,3556,dreamlike,1286823711 +81822,3556,ending,1286823747 +81822,3556,great ending,1286823742 +81822,3556,great soundtrack,1286823697 +81822,3556,high school,1286823731 +81822,3556,soundtrack,1286823703 +81822,3556,suburbia,1286823753 +81822,6954,Culture,1286823947 +81822,6954,Death,1286823949 +81822,6954,family gatherings,1286823981 +81822,6954,generations,1286823996 +81822,6954,literature,1286823991 +81822,6954,Oscar (Best Foreign Language Film),1286823970 +81822,6954,philosophy,1286823930 +81822,6954,quebec,1286823967 +81822,79357,nonlinear,1286823603 +81822,79357,surreal,1286823613 +81822,79357,technobabble,1286817290 +81844,260,heroic journey,1434281426 +81844,260,space adventure,1434281404 +81860,592,Action,1143487598 +81860,1673,Drama,1143487631 +81892,81537,drug use,1315073436 +81892,81537,Robert Downey Jr.,1315073431 +81892,84944,hallucinatory,1320610826 +81892,84944,Johnny Depp,1320610806 +81892,84944,western,1320610810 +81896,1515,unintentional comedy,1221549003 +81896,4051,MST3K,1221548533 +81896,4051,unintentional comedy,1221548512 +81896,5288,unintentional comedy,1221549402 +81896,5356,MST3K,1221548143 +81896,5356,unintentional comedy,1221548140 +81896,5998,unintentional comedy,1221548865 +81896,6746,MST3K,1221548769 +81896,6746,unintentional comedy,1221548769 +81896,7244,MST3K,1221548617 +81896,7244,unintentional comedy,1221548613 +81896,8361,unintentional comedy,1221548837 +81896,8947,unintentional comedy,1221548919 +81896,34189,unintentional comedy,1221591751 +81896,34334,unintentional comedy,1221549065 +81896,58297,unintentional comedy,1221548092 +81896,60072,unintentional comedy,1221548067 +81899,27803,awesome,1198081613 +81919,260,adventure,1435521074 +81919,260,classic sci-fi,1435521080 +81919,260,cult classic,1435521090 +81919,260,series,1435521103 +81921,799,Peter Jackson,1145608361 +81921,1255,Peter Jackson,1145608348 +81921,41569,Peter Jackson,1145608156 +81928,54503,comedy,1197996888 +81945,260,classic,1444778867 +81945,260,Great movie,1444778858 +81979,27611,religion,1439197160 +81979,62336,Not a movie,1439121654 +81979,62336,not coherent,1439121717 +81979,62336,way over the top,1439121674 +81979,108583,british,1439608243 +81979,128991,short films,1439610251 +81980,260,scifi cult,1438832725 +81980,260,space action,1438832708 +82012,4226,nonlinear,1361685265 +82012,4226,psychology,1361685262 +82012,5971,Studio Ghibli,1361685323 +82044,356,history,1428157979 +82044,356,tom hanks,1428157979 +82044,356,touching,1428157979 +82058,260,Classic,1435065933 +82058,260,Space Opera,1435065953 +82061,62733,zombies,1276200717 +82061,81564,funny,1291772703 +82077,1196,Great movie!,1446247105 +82077,1201,Favorite !,1446247637 +82077,1210,Great movie!,1446247147 +82077,3016,Favorite,1446247786 +82077,4941,Classic!,1446247200 +82077,8039,Great movie!,1446247551 +82077,26101,Good classic!,1446247585 +82086,260,scifi cult,1439792108 +82086,260,spaceships,1439792136 +82086,26171,mime,1439827770 +82086,26171,modernism,1439827728 +82086,26171,modernity,1439827766 +82086,26171,paris,1439827768 +82108,2231,Edward Norton,1227780222 +82108,6305,based on a book,1227780629 +82121,260,star,1433160198 +82121,260,Star Wars,1433160185 +82121,260,war,1433160205 +82138,2858,beautiful,1221978745 +82141,49396,Jack Black,1179173388 +82168,668,Apu trilogy,1213304541 +82168,1219,multiple personality,1233416885 +82168,2959,multiple personality,1233416826 +82168,3000,Hayao Miyazaki,1213286944 +82168,3000,Studio Ghibli,1213286961 +82168,7099,Hayao Miyazaki,1213286791 +82168,7099,Miyazaki,1213286795 +82168,7099,Studio Ghibli,1213286796 +82168,8014,Ki-duk Kim,1228500829 +82174,85788,clever twists,1357234437 +82174,85788,demon possession,1357234465 +82174,85788,ghosts,1357234435 +82174,85788,haunted house,1357234443 +82174,85788,Patrick Wilson,1357234449 +82174,85788,Rose Byrne,1357234447 +82174,85788,supernatural,1357234453 +82174,97188,Soundtrack,1387548014 +82202,4034,drugs,1242238675 +82202,8971,romance,1242238663 +82202,27721,Romance,1242238617 +82206,4262,drugs,1188321519 +82206,4262,masterpiece,1188321519 +82206,4262,pacino,1188321519 +82206,4310,action,1188321520 +82206,4310,easygoing,1188321520 +82206,4447,Garbage,1188321447 +82206,4447,idiotic,1188321447 +82206,4447,Stupid as Hell,1188321447 +82206,4848,lynch,1188321520 +82206,4848,mystery,1188321520 +82206,4848,spooky,1188321520 +82206,4848,strange,1188321520 +82265,44191,gay propaganda,1245205604 +82265,44191,glbt,1245205654 +82275,96829,Bodil awards,1430381315 +82275,96829,disturbing,1430381191 +82275,96829,oscar nominated,1430381323 +82275,96829,sad,1430381183 +82291,260,adventure,1442596007 +82291,260,space,1442596000 +82313,3843,wtf ending,1428764570 +82319,172,katsomattomat,1148932356 +82319,541,katsomattomat,1148932452 +82319,1037,katsomattomat,1148932800 +82319,1080,katsomattomat,1148932713 +82319,1089,katsomattomat,1148932275 +82319,1201,katsomattomat,1148932516 +82319,1222,katsomattomat,1148932856 +82319,1275,katsomattomat,1148931980 +82319,1729,katsomattomat,1148932319 +82319,2021,katsomattomat,1148932689 +82319,2167,katsomattomat,1148932911 +82319,2951,katsomattomat,1148932491 +82319,3300,katsomattomat,1148932643 +82319,3452,katsomattomat,1148932419 +82319,3479,katsomattomat,1148932569 +82319,3538,katsomattomat,1148932771 +82319,3555,katsomattomat,1148932817 +82319,3681,katsomattomat,1148932476 +82319,4442,katsomattomat,1148932750 +82319,6618,katsomattomat,1148932838 +82319,6768,katsomattomat,1148932585 +82319,6857,katsomattomat,1148932388 +82326,29,dark fantasy,1347714741 +82326,29,dystopia,1347714742 +82326,29,Ron Perlman,1347714747 +82326,29,steampunk,1347714744 +82326,29,surreal,1347714745 +82326,29,whimsical,1347714751 +82326,76,post apocalyptic,1258289820 +82326,163,Antonio Banderas,1397938297 +82326,163,Latin America,1397938316 +82326,163,Mexico,1397938305 +82326,163,Nudity (Topless - Brief),1397938308 +82326,163,Nudity (Topless),1397938310 +82326,163,organized crime,1397938302 +82326,163,realistic action,1397938313 +82326,163,Steve Buscemi,1397938293 +82326,172,author:William Gibson,1304494616 +82326,172,book was better,1304494613 +82326,172,dystopia,1304494617 +82326,172,Henry Rollins,1304494632 +82326,172,Keanu Reeves,1304494619 +82326,172,William Gibson,1304494623 +82326,185,Sandra Bullock,1243408691 +82326,188,Christopher Walken,1243408330 +82326,188,Viggo Mortensen,1243408333 +82326,198,cyberpunk,1243408996 +82326,198,dark,1243409015 +82326,198,mindfuck,1243409001 +82326,198,sci-fi,1243409004 +82326,198,smoking,1243409006 +82326,198,virtual reality,1243409009 +82326,216,Adam Sandler,1243409577 +82326,216,stop looking at me swan,1243409581 +82326,407,John Carpenter,1243408515 +82326,407,lovecraftian,1243408522 +82326,407,Sam Neill,1243408525 +82326,480,dinosaurs,1243537771 +82326,480,genetics,1243537773 +82326,480,Oscar (Best Effects - Visual Effects),1243537785 +82326,480,Saturn Award (Best Science Fiction Film),1243537779 +82326,480,Saturn Award (Best Writing),1243537781 +82326,480,sci-fi,1243537788 +82326,480,Steven Spielberg,1243537768 +82326,541,androids,1243407621 +82326,541,cyberpunk,1243407619 +82326,541,dystopia,1243407625 +82326,541,future,1243407624 +82326,541,sci-fi,1243407628 +82326,555,Christian Slater,1243409562 +82326,555,Christopher Walken,1243409561 +82326,555,Dennis Hopper,1243409700 +82326,555,Gary Oldman,1243409564 +82326,555,Patricia Arquette,1243409694 +82326,555,Samuel L. Jackson,1243409566 +82326,555,shooting,1243409568 +82326,555,showdown,1243409570 +82326,555,Val Kilmer,1243409690 +82326,1097,Oscar (Best Effects - Visual Effects),1243537799 +82326,1097,Oscar (Best Music - Original Score),1243537801 +82326,1097,Oscar (Best Sound),1243537804 +82326,1097,Saturn Award (Best Science Fiction Film),1243537805 +82326,1097,Saturn Award (Best Special Effects),1243537807 +82326,1097,Saturn Award (Best Writing),1243537810 +82326,1097,Steven Spielberg,1243537793 +82326,1206,cult film,1243409792 +82326,1206,disturbing,1243409837 +82326,1206,dystopia,1243409794 +82326,1206,Nudity (Full Frontal),1243409966 +82326,1206,psychology,1243409796 +82326,1206,satire,1243409977 +82326,1206,Stanley Kubrick,1243409842 +82326,1206,violence,1243409846 +82326,1466,Al Pacino,1243408926 +82326,1466,based on a true story,1243408928 +82326,1466,Gretchen Mol,1243408930 +82326,1466,Johnny Depp,1243408932 +82326,1590,horror,1291719578 +82326,1590,Sam Neill,1291719580 +82326,1653,dystopia,1243407637 +82326,1653,future,1243407638 +82326,1653,genetic selection,1243407655 +82326,1653,genetics,1243407641 +82326,1653,sci-fi,1243407651 +82326,1653,space travel,1243407646 +82326,1653,Uma Thurman,1243407644 +82326,1748,alternate reality,1347594044 +82326,1748,dark fantasy,1243407574 +82326,1748,dystopia,1243407572 +82326,1748,hallucinatory,1243407578 +82326,1748,Post apocalyptic,1243407580 +82326,1748,steampunk,1347594036 +82326,1748,thought-provoking,1243407594 +82326,1791,Nudity (Topless - Notable),1307364393 +82326,1791,Reese Witherspoon,1307364430 +82326,1921,black and white,1243408424 +82326,1921,enigmatic,1243408427 +82326,1921,hallucinatory,1243408430 +82326,1921,low budget,1243408431 +82326,1921,mathematics,1243408433 +82326,1921,mental illness,1243408436 +82326,1921,paranoia,1243408440 +82326,1921,psychology,1243408443 +82326,2021,David Lynch,1243409805 +82326,2076,David Lynch,1289854765 +82326,2076,Dennis Hopper,1289854767 +82326,2076,disturbing,1289854775 +82326,2076,dreamlike,1289854777 +82326,2076,hallucinatory,1289854778 +82326,2076,quirky,1289854783 +82326,2076,suburbia,1289854782 +82326,2076,surreal,1289854785 +82326,2117,dystopia,1243407557 +82326,2117,George Orwell,1243407555 +82326,2117,Post apocalyptic,1243407559 +82326,2117,post-apocalyptic,1243407560 +82326,2117,totalitarianism,1243407564 +82326,2325,Ron Jeremy,1246823902 +82326,2502,comedy,1243408580 +82326,2502,corporate America,1243408594 +82326,2502,cult film,1243408575 +82326,2502,hilarious,1243408581 +82326,2502,off-beat comedy,1243408584 +82326,2502,quirky,1243408586 +82326,2502,stapler,1243408589 +82326,2502,workplace,1243408592 +82326,2571,cyberpunk,1243407667 +82326,2571,dystopia,1243407668 +82326,2598,Angelina Jolie,1243408710 +82326,2598,Billy Bob Thornton,1243408712 +82326,2598,Cate Blanchett,1243408714 +82326,2598,John Cusack,1243408717 +82326,2672,Armin Mueller-Stahl,1243408393 +82326,2672,Gretchen Mol,1243408377 +82326,2672,simulated reality,1243408385 +82326,2672,virtual reality,1243408380 +82326,2892,Christopher Walken,1288564588 +82326,2892,Gretchen Mol,1288564585 +82326,2892,Willem Dafoe,1288564587 +82326,2892,William Gibson,1344624478 +82326,3275,crime family,1243407449 +82326,3275,dark humor,1246822351 +82326,3275,Irish,1243407450 +82326,3275,Mafia,1243407452 +82326,3275,organized crime,1246822255 +82326,3275,Ron Jeremy,1246823883 +82326,3275,vigilante,1243407456 +82326,3275,Willem Dafoe,1243407458 +82326,3300,futuristic,1243408541 +82326,3300,Riddick,1305011633 +82326,3300,suspense,1305011635 +82326,3300,Vin Diesel,1243408555 +82326,3937,Betamax,1243409391 +82326,3937,electronics,1243409400 +82326,3937,Kirstie Alley,1243409386 +82326,3937,Michael Crichton,1243409385 +82326,3937,robots,1243409382 +82326,3937,Tom Selleck,1243409378 +82326,3969,haley joel osment,1243408645 +82326,4370,Steven Spielberg,1243537749 +82326,4626,End of the world,1377026691 +82326,4626,style,1377026698 +82326,4878,alternate timeline,1243408138 +82326,4878,dreamlike,1243408141 +82326,4878,hallucinatory,1243408142 +82326,4878,imaginary friend,1243408144 +82326,4878,maggie gyllenhaal,1243408150 +82326,4878,mental illness,1243408145 +82326,4878,Parallel universe,1243408147 +82326,4878,sci-fi,1243408130 +82326,4878,surreal,1243408132 +82326,4878,thought-provoking,1243408134 +82326,4878,time travel,1243408135 +82326,4995,Jennifer Connelly,1243408872 +82326,4995,math,1243408892 +82326,4995,nobel prize,1243408901 +82326,4995,Oscar (Best Directing),1243408875 +82326,4995,Oscar (Best Supporting Actress),1243408876 +82326,4995,Oscar Winner,1243408878 +82326,4995,psychology,1243408856 +82326,4995,romance,1243408883 +82326,4995,Russell Crowe,1243408860 +82326,4995,schizophrenia,1243408853 +82326,5445,Steven Spielberg,1243407707 +82326,5445,Tom Cruise,1243407708 +82326,5479,Harrison Ford,1332174081 +82326,5479,history,1332174080 +82326,5479,Liam Neeson,1332174071 +82326,5479,Russia,1332174077 +82326,5479,submarine,1332174089 +82326,5608,German,1243409870 +82326,5608,mass behavior,1243409822 +82326,5608,oppression,1243409825 +82326,5608,prison,1243409831 +82326,5608,subordination,1243409827 +82326,5833,survival,1306350034 +82326,5833,werewolf,1306350041 +82326,5833,werewolves,1306350048 +82326,5903,Amazing Cinematography,1243407397 +82326,5903,bullet ballet,1243407400 +82326,5903,Christian Bale,1243407395 +82326,5903,drugs,1386620351 +82326,5903,dystopia,1243407387 +82326,5903,Emily Watson,1243407391 +82326,5903,fascism,1243407383 +82326,5903,gunfight,1243407405 +82326,5903,post-apocalyptic,1400101018 +82326,5903,totalitarianism,1243407411 +82326,5903,visually stunning,1386620346 +82326,6287,Adam Sandler,1243409480 +82326,6287,Jack Nicholson,1243409483 +82326,6287,psychology,1243409488 +82326,6305,dystopia,1243407843 +82326,6305,fascism,1243407845 +82326,7371,artsy,1384806230 +82326,7371,philosophical,1384806234 +82326,7371,political,1384806235 +82326,7371,social commentary,1384806237 +82326,7581,author:Ayn Rand,1286959420 +82326,7581,based on a book,1286959424 +82326,7581,libertarian,1286959425 +82326,8477,airport,1344893600 +82326,8477,experiment,1344893475 +82326,8477,memory,1344893461 +82326,8477,narrated,1344893603 +82326,8477,post-apocalyptic,1344893467 +82326,8477,time travel,1344893470 +82326,8861,Milla Jovovich,1243408751 +82326,8861,Post apocalyptic,1243408743 +82326,8861,virus,1243408749 +82326,8861,zombies,1243408747 +82326,26285,John Carpenter,1243408909 +82326,26285,let there be light,1243408911 +82326,26285,scifi cult,1243408912 +82326,27773,Chan-wook Park,1293233868 +82326,27773,depressing,1293233871 +82326,27773,disturbing,1293233873 +82326,27773,hallucinatory,1293233875 +82326,27773,macabre,1293233877 +82326,27773,revenge,1293233879 +82326,27773,stylized,1293233881 +82326,27904,author:Philip K. Dick,1302625824 +82326,27904,based on a book,1282065413 +82326,27904,paranoia,1282065610 +82326,27904,Philip K. Dick,1282065416 +82326,27904,Robert Downey Jr.,1302625809 +82326,27904,surreal,1282065429 +82326,27904,surrealism,1282065427 +82326,27904,surveillance,1282065426 +82326,27904,visually appealing,1302625818 +82326,27904,weird,1282065612 +82326,32587,Bruce Willis,1243408265 +82326,32587,cannibalism,1243408273 +82326,32587,film noir,1243408279 +82326,32587,Quentin Tarantino,1243408268 +82326,32587,Sci-Fi,1243408271 +82326,32587,stylized,1243408269 +82326,32587,violence,1243408296 +82326,33834,amazing make-up effects,1347907837 +82326,33834,Asia Argento,1347907856 +82326,33834,George A. Romero,1347907845 +82326,33834,post-apocalyptic,1347907843 +82326,33834,zombies don't need to breathe,1347907943 +82326,34048,alien invasion,1243407773 +82326,34048,H.G. Wells,1243407781 +82326,34048,Steven Spielberg,1243407770 +82326,34048,Tom Cruise,1243407768 +82326,34405,black comedy,1243408106 +82326,34405,dystopia,1243408094 +82326,34405,Firefly,1243408096 +82326,34405,quirky,1243408097 +82326,34405,sci-fi,1243408098 +82326,34405,space,1243408102 +82326,37729,black comedy,1243407904 +82326,37729,claymation,1243407889 +82326,37729,Depp & Burton,1243407891 +82326,37729,gothic,1243407892 +82326,37729,Johnny Depp,1243407896 +82326,37729,Tim Burton,1243407898 +82326,44191,comic book,1243407805 +82326,44191,dystopia,1243407803 +82326,44191,Gordon gordon,1384806720 +82326,44191,Natalie Portman,1243407811 +82326,44191,politics,1243407814 +82326,44191,sci-fi,1243407815 +82326,44191,thought-provoking,1243407816 +82326,46972,Ben Stiller,1243537698 +82326,46972,Owen Wilson,1243537713 +82326,46972,Robin Williams,1243537704 +82326,46972,slapstick,1243537708 +82326,48660,based on a book,1245693141 +82326,48660,german,1243537370 +82326,48660,mental hospital,1364681933 +82326,48660,Midlife Crisis,1364681915 +82326,48660,Moritz Bleibtreu,1243537393 +82326,48660,schizophrenia,1311803865 +82326,48660,suicide,1364681923 +82326,48660,thoughtful,1311803867 +82326,48774,adapted from:book,1302029925 +82326,48774,apocalypse,1302029885 +82326,48774,atmospheric,1302029886 +82326,48774,based on a book,1302029888 +82326,48774,christianity,1302029893 +82326,48774,dystopia,1302029891 +82326,48774,England,1302029909 +82326,48774,epidemic,1302029912 +82326,48774,extended,1302029939 +82326,48774,futuristic,1302029920 +82326,48774,Nudity (Topless),1302029914 +82326,48774,pregnancy,1302029897 +82326,48774,sci-fi,1302029899 +82326,48774,survival,1302029901 +82326,48774,thriller,1302029903 +82326,48774,visually appealing,1302029905 +82326,54259,Ricky Gervais,1304968868 +82326,55280,mental illness,1324625790 +82326,55908,dialogue driven,1246823664 +82326,55908,entirely dialogue,1246823656 +82326,55908,Excellent use of dialogue,1246823667 +82326,55908,immortality,1246823670 +82326,55908,thought-provoking,1246823660 +82326,55908,unique,1246823681 +82326,55908,what if...,1246823683 +82326,56003,apocalypse,1243408351 +82326,56003,dystopia,1243408360 +82326,56003,Sarah Michelle Gellar,1243408364 +82326,56003,time travel,1243408367 +82326,57368,"""found footage""",1344681325 +82326,57368,city under attack,1344681327 +82326,57368,mockumentary,1344681332 +82326,57368,monster,1344681333 +82326,57368,sci-fi,1344681334 +82326,57368,shallow,1344681336 +82326,57669,belgium,1243408480 +82326,57669,dark comedy,1243408481 +82326,57669,drugs,1252581684 +82326,57669,foul language,1243408478 +82326,57669,friendship,1243408489 +82326,57669,hitman,1243408487 +82326,57669,irish accent,1252581682 +82326,57669,stylized,1243408495 +82326,57669,suicide,1243408493 +82326,57669,violent,1243408500 +82326,60037,bad ending,1301811073 +82326,60037,epidemic,1301808362 +82326,60037,far fetched,1301808365 +82326,61132,Ben Stiller,1391025182 +82326,61132,jungle,1391025187 +82326,61132,parody,1391025177 +82326,61132,satire,1391025169 +82326,61132,vietnam,1391025172 +82326,61132,Vietnam War,1391025180 +82326,61692,aliens,1357101189 +82326,61692,no plot,1357101186 +82326,61692,not original,1357101185 +82326,65088,Adam Sandler,1304968707 +82326,65088,Disney,1304968727 +82326,65088,Romantic Comedy,1304968709 +82326,65882,Twist Ending,1302625288 +82326,68205,fast paced,1258377218 +82326,68205,Jason Statham,1258377221 +82326,70286,aliens,1251891861 +82326,70286,fake documentary,1251891850 +82326,70286,genetics,1251891856 +82326,70286,intelligent sci-fi,1251891881 +82326,70286,plot hole,1251891893 +82326,70286,segregation,1251891871 +82326,71057,creepy,1286820913 +82326,71057,dark,1286820914 +82326,71057,dark fantasy,1286820897 +82326,71057,dystopia,1286820896 +82326,71057,giant robots,1286820901 +82326,71057,good versus evil,1286820904 +82326,71057,post-apocalyptic,1286820894 +82326,71057,visually appealing,1286820909 +82326,71135,amnesia,1294484018 +82326,71135,future,1294484024 +82326,71135,horror,1294484020 +82326,71135,post-apocalyptic,1294484012 +82326,71135,space travel,1294484013 +82326,71135,unlikeable characters,1294484035 +82326,71535,Bill Murray,1257153462 +82326,71535,post-apocalyptic,1302625643 +82326,71535,witty,1302625647 +82326,71535,zombies,1257153459 +82326,72393,abduction,1309722471 +82326,72393,aliens,1309722474 +82326,72393,fake documentary,1309722421 +82326,72393,Milla Jovovich,1309722423 +82326,72393,paranormal,1309722476 +82326,72393,scary,1309722483 +82326,72393,space,1309722481 +82326,72393,sumerian culture,1309722479 +82326,72694,depression,1364678938 +82326,72694,doesn't live up to its full potential,1364678935 +82326,72694,Kevin Spacey,1364678943 +82326,78160,Ricky Gervais,1301075124 +82326,79132,alternate reality,1292226275 +82326,79132,dreamlike,1292226276 +82326,79132,dreams,1292226278 +82326,79132,Leonardo DiCaprio,1292226270 +82326,79132,mindfuck,1292226283 +82326,79132,predictable,1292226273 +82326,79132,surreal,1292226285 +82326,82703,dark,1357101168 +82326,82703,german genre movie,1357101169 +82326,82703,Jennifer Ulrich,1357101172 +82326,82703,Nina Hoss,1357101175 +82326,82703,vampire,1357101177 +82326,86345,stand-up comedy,1309196847 +82326,86347,not a movie,1309196875 +82326,86355,Ayn Rand,1347389714 +82326,86355,Capitalism,1347389713 +82326,86355,Independence,1347389709 +82326,86355,Individualism,1347389711 +82326,86355,Objectivism,1347389717 +82326,86377,not a movie,1309196866 +82326,86377,stand-up comedy,1309196857 +82326,89629,action,1400356585 +82326,89629,corruption,1400356598 +82326,89629,dirty cops,1400356596 +82326,89629,good plot,1400356593 +82326,89629,hitman,1400356594 +82326,89629,kidnapping,1400356603 +82326,89629,pregnancy,1400356590 +82326,91273,cooperation,1401004298 +82326,91273,film noir,1401004263 +82326,91273,martial arts,1401004265 +82326,91273,noir,1401004269 +82326,91273,oppression,1401004296 +82326,91273,post-apocalyptic,1401004272 +82326,91273,revenge,1401004308 +82326,91273,revolution,1401004304 +82326,91273,Ron Perlman,1401004286 +82326,91273,Stylised,1401004290 +82326,92923,zombies,1379196089 +82326,93563,One-Liners,1342241123 +82326,93563,prison,1342241125 +82326,93840,ancients,1390034394 +82326,93840,dark comedy,1390034376 +82326,93840,plot twist,1390034368 +82326,93840,witty,1390034373 +82326,93840,zombies,1390034371 +82326,94278,twist ending,1335624352 +82326,95875,author:Philip K. Dick,1345660295 +82326,95875,Colin Farrell,1345660305 +82326,95875,cyberpunk,1345660293 +82326,95875,Philip K. Dick,1345660298 +82326,96610,dystopia,1350966609 +82326,96610,film noir,1350966611 +82326,96610,overdone themes,1350966599 +82326,96610,plot holes,1350966601 +82326,96610,pointless plot,1350966597 +82326,96610,sci-fi,1350966603 +82326,96610,sci-fi thriller,1350966605 +82326,97752,atmospheric,1386619916 +82326,97752,dystopia,1386619917 +82326,97752,Hugh Grant,1386619923 +82326,97752,multiple storylines,1386619956 +82326,97752,over-explaining,1386619934 +82326,97752,sci-fi,1386619926 +82326,97752,Tom Hanks,1386619921 +82326,102445,J.J. Abrams,1420485775 +82326,102445,Star Trek,1420485784 +82326,103306,aliens,1400094906 +82326,103306,Found footage,1400094916 +82326,103306,great ending,1414683810 +82326,103306,hard science fiction,1400094914 +82326,103306,jupiter,1400094907 +82326,103306,low budget,1400094908 +82326,103306,storytelling,1414683806 +82326,103306,visually stunning,1400094910 +82326,106918,obvious,1391455157 +82326,106918,plot holes,1391455151 +82341,858,Best Movies Ever,1429144893 +82341,858,classic,1429144878 +82341,2571,computers,1429144930 +82341,2571,sci-fi,1429144923 +82341,77658,Carl Sagan,1429145122 +82341,77658,science,1429145119 +82341,90890,bad movie,1429145583 +82341,90890,horrible acting,1429145583 +82341,90890,worst movie ever!,1429145583 +82349,260,Akira Kurosawa influenced,1430261754 +82349,260,epic adventure,1430261695 +82349,260,joseph campbell's study of mythology influenced,1430261709 +82352,260,awesome soundtrack,1437088810 +82352,260,great story,1437088817 +82352,260,space opera,1437088826 +82352,356,history,1437090220 +82352,356,tom hanks,1437090220 +82352,356,touching story,1437090220 +82404,260,sci-fi,1442415259 +82404,260,space,1442415263 +82409,180,comic books,1173327102 +82409,3948,comical misunderstandings,1173326959 +82409,3948,obnoxious,1173326926 +82409,5108,contrived,1173327210 +82409,5108,overdramatic,1173327251 +82409,5108,preachy,1173327266 +82409,5108,silly,1173327218 +82409,5293,contrived,1173327192 +82409,5502,contrived,1173327320 +82409,5502,plebian,1173327356 +82409,5502,ridiculous,1173327299 +82409,5502,stupid,1173327327 +82409,5618,whimsical,1216766455 +82409,6350,imagination,1173325273 +82409,6350,whimsical,1173325279 +82409,6620,boring,1173327002 +82409,6620,comic books,1173327076 +82409,6620,weird,1173326989 +82409,47999,brainwashing,1171489927 +82409,47999,Christian,1171489845 +82409,47999,evangelical,1171489854 +82409,47999,propaganda,1171489916 +82409,47999,religion,1171489938 +82409,72998,bad science,1263348855 +82409,72998,morality,1263348811 +82409,72998,plot,1263348842 +82409,72998,simplistic,1263348782 +82409,72998,tripe,1263351135 +82409,72998,unobtainium,1263348877 +82409,72998,unoriginal,1263348823 +82415,175,controversial,1331493322 +82415,175,drugs,1331493326 +82415,175,indecent,1331493292 +82415,175,Justin Pierce,1331493339 +82415,175,Larry Clark,1331493337 +82415,175,New York City,1331493279 +82415,175,Nudity (Full Frontal),1331493272 +82415,175,Rosario Dawson,1331493313 +82415,175,teen,1331493312 +82415,175,teenagers,1331493310 +82415,175,the ending,1331493297 +82415,175,Very interesting,1331493299 +82415,175,youth gone wild,1331493304 +82415,223,black and white,1331494278 +82415,223,crude humor,1331494271 +82415,223,dialogue driven,1331494283 +82415,223,Directorial Debut,1331494274 +82415,223,good dialogue,1331494262 +82415,223,irreverent,1331494265 +82415,223,surreal,1331494266 +82415,537,Notable Nudity,1331501298 +82415,537,Nudity (Full Frontal - Notable),1331501300 +82415,551,Danny Elfman score,1331498213 +82415,551,great soundtrack,1331498198 +82415,1202,quotable,1331494330 +82415,1476,biography,1331493539 +82415,1476,biopic,1331493544 +82415,1476,Nudity (Full Frontal - Notable),1331493507 +82415,1476,Nudity (Full Frontal),1331493509 +82415,1476,pig vomit,1331493535 +82415,1476,radio,1331493532 +82415,1476,radio DJ,1331493530 +82415,1476,true story,1331493523 +82415,1923,crude humor,1331494395 +82415,1923,raunchy,1331494398 +82415,1923,sexual,1331494400 +82415,2124,black comedy,1331498110 +82415,2124,Christina Ricci,1331498107 +82415,2502,off-beat comedy,1331494350 +82415,2502,satire,1331494352 +82415,2719,Owen Wilson,1331511810 +82415,2862,controversial,1331512759 +82415,2862,disturbing,1331512763 +82415,2862,erotic,1331512781 +82415,2862,Nudity (Full Frontal - Notable),1331512768 +82415,2862,sexual,1331512773 +82415,2862,visceral,1331512778 +82415,3031,Spoof,1331494536 +82415,3127,erotic,1331501822 +82415,3127,Nudity (Full Frontal - Notable),1331501816 +82415,3127,Nudity (Full Frontal),1331501829 +82415,3355,bad ending,1331510391 +82415,3355,Roman Polanski,1331510399 +82415,3569,controversial,1331501331 +82415,3569,explicit sex,1331501336 +82415,3569,weird,1331501340 +82415,5477,complicated,1331501712 +82415,5477,Nudity (Full Frontal - Notable),1331501709 +82415,5477,Nudity (Full Frontal),1331501717 +82415,5617,black comedy,1331501352 +82415,5617,Nudity (Full Frontal - Notable),1331501354 +82415,5617,Nudity (Full Frontal),1331501366 +82415,5617,sex,1331501357 +82415,5617,sexuality,1331501359 +82415,5617,sexuality:BDSM,1331501362 +82415,7024,banned movie,1331512970 +82415,7024,confrontational,1331512973 +82415,7024,controversial,1331513009 +82415,7024,disturbing,1331512977 +82415,7024,rape,1331512993 +82415,7024,sadism,1331512997 +82415,7024,social criticism,1331512982 +82415,7024,torture,1331512987 +82415,7160,Christina Ricci,1331501889 +82415,30810,adventure,1331493434 +82415,30810,comedy,1331493401 +82415,30810,Cult Classic,1331493431 +82415,30810,dark,1331493429 +82415,30810,great soundtrack,1331493403 +82415,30810,Liam Neeson,1331493426 +82415,30810,Nudity (Topless),1331493423 +82415,30810,Owen Wilson,1331493409 +82415,30810,quirky,1331493411 +82415,30810,stylized,1331493419 +82415,30810,submarine,1331493418 +82415,30810,visually appealing,1331493412 +82415,30810,whimsical,1331493416 +82415,43919,Not funny,1331494508 +82415,43919,stupid,1331494511 +82415,44729,Larry The Cable Guy,1331494453 +82415,51091,Christina Ricci,1331501252 +82415,51091,great soundtrack,1331501254 +82415,51091,Nudity (Topless - Notable),1331501258 +82415,51091,Nudity (Topless),1331501263 +82415,57669,ambiguous ending,1331494204 +82415,57669,assassin,1331494201 +82415,57669,black comedy,1331494199 +82415,57669,british comedy,1331494210 +82415,57669,comedy,1331494216 +82415,57669,dark comedy,1331494214 +82415,57669,depression,1331494218 +82415,57669,drama,1331494229 +82415,57669,drugs,1331494228 +82415,57669,friendship,1331494226 +82415,57669,hitman,1331494225 +82415,57669,irish accent,1331494230 +82415,57669,irreverent,1331494243 +82415,57669,stylized,1331494237 +82415,57669,suicide,1331494242 +82415,57669,violent,1331494240 +82415,69122,absurd,1331494365 +82415,69122,Las Vegas,1331494366 +82415,69122,Nudity (Topless),1331494371 +82415,69122,Zach Galifianakis,1331494376 +82415,80219,dark humor,1331494692 +82415,80219,Nudity (Full Frontal - Notable),1331494677 +82415,80219,Nudity (Topless),1331494672 +82415,80219,satire,1331494682 +82415,80219,stylized,1331494684 +82415,80219,violent,1331494688 +82415,85131,bad acting,1331497056 +82415,85131,cliche,1331497036 +82415,85131,poor dialogue,1331497067 +82415,85131,repetitive,1331497038 +82415,85131,shaky camera,1331497045 +82415,85131,Unoriginal,1331497042 +82425,433,short-term memory loss,1367830428 +82425,1035,1930s,1291644817 +82425,1035,Austria,1291644817 +82425,1035,dance,1291644817 +82425,1035,ensemble singing,1291644817 +82425,1035,family,1291644817 +82425,1035,formal ball,1291644817 +82425,1035,men in uniforms,1291644817 +82425,1035,scenic,1291644817 +82425,1035,Switzerland,1291644817 +82425,1035,The Alps,1291644817 +82425,1035,young love,1291644817 +82425,1223,charmless,1291392111 +82425,1223,patronising,1291392119 +82425,1223,reactionary,1291392128 +82425,1223,unimaginative,1291392144 +82425,1947,operatic,1291644877 +82425,2116,epic,1291305275 +82425,2723,lame superpowers,1291392289 +82425,2723,too long,1291392304 +82425,2723,unheroic heroes,1291392298 +82425,3081,gothic,1291304524 +82425,4189,christian,1367830302 +82425,4189,jesus,1367829997 +82425,4612,jesus,1367829998 +82425,5066,heartrending,1291644693 +82425,5066,weepy,1291644693 +82425,5832,christian,1367830302 +82425,5853,exploding heads,1291731464 +82425,5942,cheerleading,1367830179 +82425,6609,jesus,1367829998 +82425,6683,bollywood,1367829919 +82425,6754,vampires,1291304829 +82425,6768,christian,1367830303 +82425,7142,dance,1291731248 +82425,7373,dark hero,1367830156 +82425,47610,romance,1291304663 +82425,47610,soft focus,1291304710 +82425,50440,Africa,1291644452 +82425,50440,atmospheric,1291644452 +82425,50440,civil war,1291644452 +82425,50440,film crew,1291644452 +82425,50440,journalists,1291644452 +82425,50440,Rwanda,1291644452 +82425,50440,scenic,1291644452 +82425,50440,sexual violence,1291644452 +82425,50804,romantic,1291646466 +82425,54519,es,1291392645 +82425,54519,family,1291392645 +82425,54519,girltalk,1291392645 +82425,54519,Spain,1291392663 +82425,54519,Spanish films,1291392645 +82425,56367,bittersweet,1291644367 +82425,57951,treasure,1367830103 +82425,58025,teleportation,1291303185 +82425,67748,talking heads,1291392067 +82425,81562,mountain climbing,1367830404 +82425,82854,travesty,1294574096 +82425,95875,mars,1367830139 +82443,59404,whimsical irreverent,1303422535 +82443,60758,based on a book,1303422583 +82443,60758,class,1303422577 +82443,60758,grace,1303422577 +82447,1721,Kate Winslet,1453101611 +82447,1721,Leonardo DiCaprio,1453101614 +82447,82767,Nicole Kidman,1453101640 +82477,260,epic adventure,1441991893 +82477,260,great controversy,1441991910 +82477,260,iconic,1441991928 +82517,74754,watching this movie is like being stabbed in the head,1451204048 +82517,89281,not so much a movie as a thinly veiled public service announcement about the perils of climate change,1451203963 +82517,89281,So bad it's hard to watch,1451203973 +82536,79132,thought-provoking,1452428787 +82536,79132,twist ending,1452428777 +82536,79132,visually appealing,1452428779 +82536,131724,investigative journalism,1452428844 +82543,260,Science Fiction,1432151495 +82543,260,space adventure,1432151509 +82558,1172,Oscar (Best Foreign Language Film),1239789494 +82558,2025,Ennio Morricone,1239789484 +82558,2160,based on a book,1239789504 +82558,3735,Al Pacino,1239789471 +82563,48,احساساتي,1140682286 +82563,1805,lesbian,1201188244 +82563,3101,Nudity (Topless - Brief),1183731091 +82563,49793,Sports,1185724154 +82570,260,action,1443915641 +82570,260,Science Fiction,1443915624 +82570,260,space epic,1443915630 +82597,95963,anime,1441496993 +82597,95963,dragon ball,1441497013 +82597,117176,biography,1441496472 +82597,117176,Stephen Hawking,1441496466 +82597,129354,con artist,1441494791 +82597,129354,Will Smith,1441494771 +82604,260,oldie but goodie,1431680999 +82604,260,Science Fiction,1431681026 +82606,88125,fantasy,1428943933 +82606,88125,Harry Potter,1428943924 +82606,88125,magic,1428943931 +82642,260,space adventure,1439797602 +82642,260,space opera,1439797598 +82656,134130,based on book,1434465228 +82656,134130,family,1434464331 +82656,134130,rescue,1434465216 +82656,134130,Space,1434464335 +82656,134130,Survival Instinct,1434464324 +82671,260,space adventure,1437882066 +82671,260,space epic,1437882085 +82671,48738,based on a true story,1437883015 +82671,48738,Forest Whitaker,1437883027 +82671,48738,History,1437883037 +82671,48738,violent,1437883018 +82688,1265,cool,1410970293 +82694,260,action,1438818367 +82694,260,Cool,1438818346 +82700,7439,revenge,1439797073 +82700,91658,predictable,1439795716 +82700,112515,Metaphorical,1439240303 +82705,260,sci-fi,1433111750 +82705,260,space epic,1433111752 +82749,3617,bathroom humor,1186964011 +82749,3826,creepo,1186963973 +82749,3916,inspirational,1186964000 +82749,3967,dancing,1186963955 +82749,4270,action packed,1186963991 +82749,4975,trippy,1186964021 +82749,8622,political,1186963965 +82787,1198,Indiana Jones,1137543122 +82787,34405,conflict with society,1171225824 +82787,34405,rpg heroes,1171225824 +82787,34405,sci-fi,1171225824 +82787,37386,lone hero,1171225536 +82787,37386,sci-fi,1171225536 +82787,37386,utopia,1171225536 +82787,40815,Good versus evil,1171225579 +82787,40815,magic,1171225579 +82787,40815,young heroes,1171225695 +82787,41566,animals,1171225403 +82787,41566,fantasy,1171225432 +82787,41566,young heroes,1171225705 +82787,42738,dark fantasy,1171225098 +82787,42738,vampires,1171225101 +82787,42738,werewolf,1171225091 +82787,43928,lone hero,1171225356 +82787,43928,Milla Jovovich,1171225089 +82787,43928,sci-fi,1171225356 +82787,44191,Dark hero,1171225138 +82787,44191,dystopia,1171225087 +82787,44191,super-hero,1171225085 +82787,45499,mutants,1171225238 +82787,45499,rpg heroes,1171225857 +82787,45499,sci-fi,1171225238 +82787,45499,superhero,1171225083 +82787,45722,Comedy,1171225080 +82787,45722,seafaring,1171225078 +82787,45722,thriller,1171225076 +82787,85510,Cinematography,1301955157 +82787,85510,Misandry,1301955147 +82787,91500,hot heroine,1347236299 +82787,91500,shaky camera,1347236302 +82800,47330,car chase,1227008176 +82800,47330,heist,1229521866 +82800,62849,Action/Comedy,1227008969 +82800,62849,Crime,1227008979 +82800,62849,Drugs,1227009019 +82800,62849,Guy Ritchie,1227008957 +82806,2395,Bill Murray,1333586806 +82806,2395,off-beat comedy,1333586817 +82806,2395,school drama,1333586820 +82806,2395,Wes Anderson,1333586811 +82821,1,animation,1152405430 +82821,1,pixar,1152405392 +82821,150,space,1152405447 +82821,356,Tom Hanks,1152405396 +82821,508,Tom Hanks,1152405423 +82821,2424,Good Romantic Comedies,1152405491 +82821,2424,Tom Hanks,1152405489 +82821,8529,Tom Hanks,1152405469 +82823,260,classic sci-fi,1441465568 +82823,260,good science fictional technology,1441465580 +82849,260,classic,1441979833 +82849,260,classic sci-fi,1441979837 +82849,260,epic adventure,1441979848 +82849,1222,dark,1441980520 +82849,1222,dialogue,1441980508 +82849,1222,Stanley Kubrick,1441980497 +82849,1222,war,1441980504 +82849,2571,artificial intelligence,1441980324 +82849,2571,classic,1441980373 +82849,2571,dystopia,1441980360 +82849,2571,fight scenes,1441980329 +82849,2571,philosophical,1441980334 +82849,2571,philosophy,1441980339 +82849,2571,thought-provoking,1441980343 +82849,3275,dark humor,1441980424 +82849,3275,Irish,1441980399 +82849,3275,philosophical,1441980416 +82849,3275,philosophy,1441980410 +82849,4011,comedy,1441980441 +82849,4011,dark comedy,1441980439 +82849,4011,dialogue,1441980454 +82849,4011,guy ritchie,1441980463 +82849,4011,Hilarious,1441980452 +82849,4011,multiple storylines,1441980443 +82849,6502,story,1441980831 +82849,7981,acting,1441980682 +82849,7981,better than the american version,1441980649 +82849,7981,excellent script,1441980652 +82849,7981,story,1441980660 +82849,81562,adventure,1441980886 +82849,81562,realistic,1441980877 +82849,81562,true story,1441980881 +82849,91660,story,1441980790 +82849,108709,accents,1441980554 +82849,108709,action,1441980560 +82849,108709,dialogue,1441980547 +82849,108709,realistic,1441980566 +82849,108709,war,1441980542 +82849,122882,action,1441980254 +82849,122882,crazy characters,1441980276 +82865,480,ian's fav,1226470372 +82865,912,classic romance,1226470293 +82865,1584,young age classic,1226470058 +82865,8784,romance,1226470190 +82871,1120,drama,1189553894 +82871,1267,drama,1189553864 +82871,3911,documentary critique,1189553883 +82873,4027,Coen Brothers,1161013610 +82884,87304,relationship,1451253876 +82884,87304,sad,1451253889 +82884,89896,Apocalyptic,1451254139 +82884,89896,Bela Tarr,1451254134 +82884,89896,Nietzche,1451254136 +82884,98056,Michael Haneke,1451253808 +82884,98056,Psichological,1451253826 +82904,527,biography,1201045565 +82909,475,prison,1169101543 +82909,1789,movie to see,1169101568 +82912,8360,animation,1162981781 +82921,2594,Dark,1446452908 +82921,2594,mindfuck,1446452904 +82921,2594,psychology,1446452911 +82921,2594,surreal,1446452906 +82921,2594,Twist ending,1446452916 +82921,4720,alternate reality,1446452173 +82921,4720,Beautiful Woman,1446452184 +82921,4720,clever,1446452178 +82921,4720,dark,1446452176 +82921,4720,Horror,1446452170 +82921,4720,Nicole Kidman,1446452159 +82921,4720,scary,1446452168 +82921,4720,surprise ending,1446452163 +82921,4720,twist ending,1446452156 +82921,7347,Johnny Depp,1446452059 +82921,7347,psychological,1446452055 +82921,7347,psychology,1446452065 +82921,7347,Stephen King,1446452061 +82921,7361,alternate reality,1446452949 +82921,7361,complicated,1446452956 +82921,7361,Kate Winslet,1446452947 +82921,7361,melancholy,1446452953 +82921,7361,philosophy,1446452937 +82921,7361,psychology,1446452942 +82921,7361,quirky,1446452933 +82921,7361,surreal,1446452923 +82921,7361,surrealism,1446452939 +82921,7361,thought-provoking,1446452925 +82921,34532,mysterious or thrilling,1446452112 +82921,34532,Twist Ending,1446452107 +82921,51086,conspiracy theory,1446452075 +82921,51086,psychology,1446452077 +82921,51086,stylized,1446452081 +82921,51086,twist ending,1446452079 +82921,53953,atmospheric,1446452017 +82921,53953,Hotel,1446452010 +82921,53953,scary,1446452026 +82921,53953,Stephen King,1446452005 +82921,62511,confusing,1446452987 +82921,62511,philosophy,1446452989 +82921,62511,surreal,1446452981 +82921,62511,thought-provoking,1446452984 +82921,74228,autism,1446451939 +82921,74228,mystery,1446451932 +82921,74228,Surreal,1446451928 +82921,74228,time loop,1446451962 +82921,74228,twist ending,1446451954 +82921,74228,visual style,1446451936 +82921,74458,asylum,1446452720 +82921,74458,atmospheric,1446452704 +82921,74458,cinematography,1446452716 +82921,74458,ending twist,1446452707 +82921,74458,intense,1446452711 +82921,74458,Leonardo DiCaprio,1446452664 +82921,74458,Martin Scorsese,1446452695 +82921,74458,Michelle Williams,1446452676 +82921,74458,mindfuck,1446452672 +82921,74458,mystery,1446452667 +82921,74458,plot twist,1446452692 +82921,74458,psychological,1446452659 +82921,74458,Psychological Thriller,1446452702 +82921,74458,reality or imagination?,1446452691 +82921,74458,story,1446452680 +82921,74458,surreal,1446452713 +82921,74458,thought-provoking,1446452698 +82921,74458,twist ending,1446452662 +82921,74458,twisted ending,1446452700 +82921,116397,Kate Beckinsale,1446452046 +82932,858,classic,1431366731 +82932,858,mafia,1431366731 +82932,858,organized crime,1431366731 +82966,60756,will ferrell,1235433518 +82967,260,classic,1445018358 +82967,260,sci fi,1445018352 +82978,79132,psychological,1445801784 +82978,79132,sci-fi,1445801758 +82978,79132,twist ending,1445801815 +82978,112556,good adaptation,1445801629 +82978,112556,mindfuck,1445801633 +83034,44881,psychology,1261382116 +83052,260,cult classic,1440519916 +83052,260,sci-fi,1440519932 +83052,260,space opera,1440519903 +83063,253,brad pitt,1451692951 +83063,253,horror,1451692960 +83063,253,vampire,1451692953 +83063,253,vampires,1451692949 +83063,1321,werewolf,1451692999 +83063,1321,werewolves,1451693001 +83063,1408,based on a book,1451929944 +83063,1408,cinematography,1451929950 +83063,1408,Daniel Day-Lewis,1451929948 +83063,1408,excellent historical depiction,1451929946 +83063,1408,great soundtrack,1451929952 +83063,1997,horror,1451693077 +83063,1997,imdb top 250,1451693083 +83063,1997,scary,1451693075 +83063,2959,based on a book,1451692169 +83063,2959,Brad Pitt,1451692155 +83063,2959,Edward Norton,1451692153 +83063,2959,mindfuck,1451692162 +83063,2959,philosophy,1451692182 +83063,2959,powerful ending,1451692185 +83063,2959,psychology,1451692149 +83063,2959,thought-provoking,1451692164 +83063,2959,twist ending,1451692147 +83063,2959,violence,1451692151 +83063,2959,violent,1451692158 +83063,3578,action,1451691990 +83063,3578,history,1451692058 +83063,3578,Ridley Scott,1451692062 +83063,3578,Rome,1451692059 +83063,3578,Russell Crowe,1451691988 +83063,3578,strong score,1451691995 +83063,3578,violent,1451691992 +83063,5952,adapted from:book,1451691912 +83063,5952,Adventure,1451691884 +83063,5952,based on a book,1451691881 +83063,5952,Epic,1451691900 +83063,5952,fantasy,1451691887 +83063,5952,great soundtrack,1451691914 +83063,5952,high fantasy,1451691878 +83063,5952,magic,1451691905 +83063,5952,mythology,1451691904 +83063,5952,scenic,1451691909 +83063,5952,tolkien,1451691897 +83063,5952,Viggo Mortensen,1451691894 +83063,5956,action,1451691964 +83063,5956,Daniel Day-Lewis,1451691955 +83063,5956,Leonardo DiCaprio,1451691952 +83063,5956,violent,1451691962 +83063,6502,post-apocalyptic,1451692639 +83063,6502,sci-fi,1451692648 +83063,6502,stylized,1451692651 +83063,6502,survival,1451692634 +83063,6502,Zombie,1451692637 +83063,6502,zombies,1451692631 +83063,6708,Nicolas Cage,1451698833 +83063,7458,based on a myth,1451692101 +83063,7458,Brad Pitt,1451692088 +83063,7458,Epic,1451692086 +83063,7458,Mythology,1451692092 +83063,7458,sword and sandal,1451692107 +83063,48304,adventure,1451929902 +83063,48304,brutality,1451929893 +83063,48304,history,1451929897 +83063,48304,Mel Gibson,1451929894 +83063,48304,Native Americans,1451929904 +83063,48304,survival,1451929899 +83063,52458,horror,1451692230 +83063,52458,killer,1451692242 +83063,52458,scary,1451692259 +83063,89774,brother-brother relationship,1451692863 +83063,89774,great acting,1451692856 +83063,89774,MMA,1451692849 +83063,89774,Tom Hardy,1451692851 +83063,89774,touching,1451692853 +83063,98809,adventure,1452537521 +83063,98809,author:J. R. R. Tolkein,1452537515 +83063,98809,beautiful scenery,1452537520 +83063,98809,big budget,1452537525 +83063,98809,cheesy,1452537488 +83063,98809,exaggerated,1452537494 +83063,98809,fantasy,1452537517 +83063,98809,New Zealand,1452537533 +83063,98809,Peter Jackson,1452537533 +83063,98809,stupid fight scenes,1452537540 +83067,374,children,1186499976 +83067,546,Stupid as Hell,1186499902 +83067,1243,stupid,1186499988 +83067,1350,stupid,1186499959 +83067,1707,okay,1186500223 +83067,2060,funny once,1186500246 +83067,2106,good,1186500309 +83067,2137,children,1186499942 +83067,2236,Amazing!,1186500276 +83067,2384,dumb,1186499953 +83067,2431,comedy,1186499861 +83067,2431,drama,1186499861 +83067,2431,dramedy,1186499861 +83067,2846,kids,1186500343 +83067,3350,okay once,1186500545 +83067,3668,okay,1186500158 +83067,3784,okay once,1186500370 +83067,3821,stupid,1186500206 +83067,3979,perverted,1186500190 +83067,5620,cliche,1186500169 +83067,8361,ugh,1186500058 +83067,35836,DUMB,1186500016 +83067,39183,eh,1186500087 +83067,45499,boring as shit,1186500100 +83067,49530,decent,1186500401 +83094,50,My movies,1183621016 +83094,175,My movies,1183645733 +83094,253,My movies,1183711416 +83094,296,My movies,1183621083 +83094,357,My movies,1189060946 +83094,527,My movies,1183621096 +83094,608,My movies,1183621071 +83094,750,My movies,1183621344 +83094,858,My movies,1183621064 +83094,912,My movies,1183623633 +83094,968,My movies,1183647290 +83094,1061,My movies,1183631255 +83094,1079,My movies,1189060926 +83094,1089,My movies,1183621188 +83094,1090,My movies,1183623853 +83094,1093,My movies,1183630839 +83094,1208,My movies,1183621396 +83094,1221,My movies,1183621304 +83094,1241,cult film,1183646168 +83094,1241,My movies,1183646167 +83094,1255,My movies,1183646090 +83094,1261,DEMONIC POSSESSION,1183645863 +83094,1261,My movies,1183645863 +83094,1263,My movies,1183623799 +83094,1627,My movies,1183645241 +83094,1693,My movies,1183645280 +83094,1704,My movies,1183645693 +83094,1721,My movies,1183637124 +83094,1729,My movies,1183621196 +83094,1732,My movies,1183621075 +83094,1884,My movies,1183625967 +83094,1985,My movies,1183646214 +83094,2023,My movies,1183630573 +83094,2105,My movies,1183646023 +83094,2318,My movies,1183637286 +83094,2474,My movies,1183630539 +83094,2542,My movies,1183623778 +83094,2871,My movies,1183644634 +83094,2959,My movies,1183621328 +83094,2987,My movies,1189060891 +83094,3147,My movies,1183645524 +83094,3186,My movies,1183630562 +83094,3275,My movies,1183621087 +83094,3671,My movies,1189058643 +83094,3703,My movies,1183646042 +83094,3992,My movies,1183645374 +83094,4011,My movies,1183621438 +83094,4014,My movies,1183634443 +83094,4027,My movies,1183629648 +83094,4034,My movies,1183636813 +83094,4148,My movies,1183645425 +83094,4226,My movies,1183621294 +83094,4262,My movies,1183623789 +83094,4350,My movies,1183646065 +83094,4383,My movies,1183645632 +83094,4624,My movies,1183646099 +83094,4881,My movies,1183621101 +83094,4886,My movies,1183634298 +83094,4902,My movies,1183645711 +83094,4995,My movies,1189061120 +83094,5074,My movies,1183634220 +83094,5265,My movies,1183645401 +83094,5292,My movies,1183645804 +83094,5464,My movies,1183645304 +83094,5881,My movies,1183644494 +83094,5956,My movies,1183630546 +83094,5992,My movies,1183645438 +83094,6016,My movies,1183621276 +83094,6377,My movies,1183628901 +83094,6534,My movies,1183645754 +83094,6731,My movies,1183647343 +83094,7044,My movies,1183645499 +83094,7162,My movies,1189058857 +83094,7206,My movies,1183644732 +83094,7209,My movies,1183644710 +83094,7361,My movies,1189058676 +83094,7367,My movies,1183629817 +83094,7387,My movies,1183647321 +83094,7410,My movies,1183645662 +83094,7959,My movies,1183646246 +83094,7990,My movies,1183646003 +83094,8957,My movies,1183635454 +83094,26171,My movies,1183644720 +83094,30749,My movies,1183621361 +83094,31193,My movies,1183645476 +83094,31410,My movies,1183645349 +83094,32587,My movies,1183621151 +83094,33166,My movies,1183628874 +83094,34437,My movies,1183634311 +83094,37731,My movies,1189059050 +83094,37741,My movies,1183646545 +83094,38061,My movies,1183623886 +83094,39183,My movies,1183633840 +83094,40583,My movies,1189058786 +83094,40819,My movies,1183630771 +83094,40966,My movies,1183626038 +83094,44665,My movies,1183636726 +83094,44694,My movies,1183630401 +83094,45186,My movies,1189058842 +83094,45499,My movies,1189058817 +83094,46578,My movies,1189060123 +83115,8368,fantasy,1442460392 +83140,1551,animals,1419717223 +83140,1551,chimpanzee,1419717234 +83140,1551,gorilla,1419717214 +83140,2078,Animated,1414277859 +83140,2078,Disney,1414277810 +83140,2078,Rudyard Kipling,1414277864 +83140,2423,christmas,1419402444 +83140,2819,cia,1413103211 +83140,2819,contrived romance,1413103003 +83140,2819,Faye Dunaway,1413103229 +83140,2819,rape,1413103017 +83140,2819,Robert Redford,1413103215 +83140,3114,computer animation,1415497500 +83140,3198,boring,1412571453 +83140,3198,prison,1412571462 +83140,3198,Very long,1409901506 +83140,3444,fighting,1412221202 +83140,4406,black and white,1414308358 +83140,4406,western,1414308519 +83140,48738,Idi Amin,1419066609 +83140,48738,Uganda,1419066612 +83140,60069,Animation,1413093471 +83140,60069,funny,1413093460 +83140,60069,Sci-Fi,1413093475 +83140,77891,coney island,1413270620 +83140,96811,police,1414518809 +83140,96811,shaky camera,1414518794 +83140,109895,spelling bee,1412571221 +83208,79132,alternate reality,1439752355 +83208,79132,Christopher Nolan,1439752326 +83208,79132,Leonardo DiCaprio,1439752338 +83208,79132,thought-provoking,1439752347 +83208,79132,twist ending,1439752348 +83210,260,Science Fiction,1439786847 +83241,6754,vampires,1243772619 +83241,54775,Jet Li,1245146445 +83241,68791,assembly line,1243772170 +83250,260,classic sci-fi,1440062275 +83250,260,Meh ok,1440062264 +83250,260,sci-fi,1440062270 +83267,55805,Nudity (Topless - Notable),1209386209 +83272,260,epic adventure,1437532543 +83272,260,"space opera, science fiction, serial",1437532531 +83273,50,clever,1428879257 +83273,50,great ending,1428879268 +83273,50,mindfuck,1428879276 +83273,50,storytelling,1428879253 +83273,50,twist ending,1428879243 +83273,296,dark comedy,1428879547 +83273,296,masterpiece,1428879556 +83273,296,multiple storylines,1428879570 +83273,296,nonlinear,1428879550 +83273,296,notable soundtrack,1428879561 +83273,296,Quentin Tarantino,1428879544 +83273,296,stylized,1428879554 +83273,318,great ending,1428879336 +83273,318,prison,1428879309 +83273,318,thought-provoking,1428879321 +83273,318,twist ending,1428879312 +83273,1080,hilarious,1428879501 +83273,1080,Monty Python,1428879488 +83273,1080,satire,1428879492 +83273,1080,Terry Gilliam,1428879498 +83273,1193,jack nicholson,1428879202 +83273,1203,classic,1428879460 +83273,1203,courtroom,1428879450 +83273,1203,courtroom drama,1428879467 +83273,1203,good dialogue,1428879443 +83273,1203,social commentary,1428879445 +83273,2571,alternate reality,1428879413 +83273,2571,cyberpunk,1428879407 +83273,2571,sci-fi,1428879409 +83273,2571,stylized,1428879417 +83273,2571,surreal,1428879423 +83273,2571,thought-provoking,1428879431 +83273,4973,beautifully filmed,1428879357 +83273,4973,fairy tale,1428879353 +83273,4973,feel-good,1428879387 +83273,4973,great soundtrack,1428879364 +83273,4973,notable soundtrack,1428879378 +83273,4973,stylized,1428879350 +83273,4973,surreal,1428879355 +83299,113703,raw,1428933815 +83299,113703,strong,1428933815 +83299,113703,unique,1428933815 +83306,7065,Racist History,1136953196 +83306,60684,author:Alan Moore,1243809367 +83306,60684,based on a comic,1243809369 +83306,60684,comic book,1243809370 +83306,60684,dystopia,1243809372 +83306,64620,based on a true story,1243809396 +83306,64620,politics,1243809393 +83316,99114,Quentin Tarantino,1446379941 +83316,99114,western,1446379950 +83316,111781,Action,1446380014 +83316,115149,Hitman,1446380091 +83316,115149,mafia,1446380087 +83316,115149,Revenge,1446380073 +83317,99787,offbeat humor,1421272158 +83317,99787,parody,1421272158 +83317,99787,very funny,1421272158 +83317,112804,eyes,1422815270 +83317,112804,mystic,1422815270 +83317,112804,science,1422815270 +83345,541,atmospheric,1423950086 +83345,541,classic,1423950219 +83345,541,cult film,1423950099 +83345,541,dreamlike,1423950093 +83345,541,dystopia,1423950227 +83345,541,existentialism,1423950221 +83345,541,future,1423950211 +83345,541,futuristic,1423950207 +83345,541,Philip K. Dick,1423950113 +83345,541,philosophical,1423950204 +83345,541,sci-fi,1423950111 +83345,541,stylized,1423950079 +83345,541,Vangelis,1423950188 +83345,2657,Quirky,1423950624 +83345,68237,melancholy,1423950268 +83385,88954,comedy,1440362799 +83385,88954,Neil Patrick Harris,1440362810 +83385,88954,Stoner Comedy,1440362817 +83385,102123,comedy,1440362750 +83386,108583,not a movie,1439808923 +83406,260,cult classic,1431647575 +83406,260,fantastic,1431647583 +83406,260,masterpiece,1431647594 +83409,2174,music,1249808064 +83409,2174,weird,1249808102 +83409,8623,Steve Martin,1249808497 +83411,593,pyschopath,1438468961 +83411,593,suspense,1438468970 +83411,2959,dumb,1438469014 +83416,260,fantasy,1435325251 +83416,260,universe,1435325267 +83416,138210,War,1453640544 +83416,147398,Drama,1453640802 +83421,4973,comedy,1384614935 +83421,4973,French,1384614935 +83421,4973,love story,1384614935 +83421,44191,Natalie Portman,1384569723 +83421,44191,politics,1384569723 +83421,58559,based on a comic,1384569847 +83421,58559,Christian Bale,1384569847 +83421,58559,Christopher Nolan,batman,1384569847 +83421,91529,based on a comic,1384569907 +83421,91529,Batman,1384569907 +83421,91529,Christian Bale,1384569907 +83421,91529,Christopher Nolan,1384569907 +83430,260,computer animation,1440012427 +83430,260,Simple story,1440012512 +83431,84772,comedy,1424899382 +83431,84772,enjoyable,1424899382 +83431,84772,quirky,1424899382 +83434,26538,plot,1311886507 +83434,26538,reincarnation,1420221259 +83434,26538,scientist,1420221259 +83434,26538,smart,1420221259 +83434,113313,found footage,1421944202 +83434,113313,hidden camera,1421944202 +83434,113313,internet,1421944202 +83434,129937,action,1426701193 +83434,129937,liam neeson,1426701193 +83434,129937,violent,1426701193 +83434,131470,creepy,1431627884 +83434,131470,found footage,1431627884 +83434,131470,halloween,1431627884 +83470,1,pixar,1137206825 +83470,2,game,1137375552 +83470,5,pregnancy,1137373903 +83470,5,remake,1137373903 +83470,7,remake,1137375642 +83470,11,politics,1137374904 +83470,11,president,1137374904 +83470,14,politics,1137375623 +83470,14,president,1137375623 +83470,16,Mafia,1137181640 +83470,17,Jane Austen,1137181153 +83470,21,Hollywood,1137206178 +83470,22,serial killer,1137375496 +83470,25,alcoholism,1138137555 +83470,26,Shakespeare,1138137603 +83470,28,In Netflix queue,1137201942 +83470,28,Jane Austen,1137180037 +83470,29,kidnapping,1138137473 +83470,31,high school,1137375502 +83470,31,teacher,1137375502 +83470,32,time travel,1137206826 +83470,34,Animal movie,1137180956 +83470,34,pigs,1137205237 +83470,36,death penalty,1137202363 +83470,36,Nun,1137191227 +83470,38,twins,1137373760 +83470,39,Emma,1138137492 +83470,39,Jane Austen,1138137492 +83470,40,In Netflix queue,1137202107 +83470,40,South Africa,1137202107 +83470,41,Shakespeare,1138137646 +83470,43,England,1138137640 +83470,45,Journalism,1137206826 +83470,46,wedding,1137375539 +83470,47,serial killer,1137206452 +83470,50,heist,1137206826 +83470,52,adoption,1137206315 +83470,52,prostitution,1137206371 +83470,58,writing,1138137613 +83470,62,music,1137374957 +83470,92,Jekyll and Hyde,1138137574 +83470,96,theater,1138137537 +83470,101,crime,1138137460 +83470,104,golf,1137374014 +83470,107,muppets,1137375573 +83470,110,Scotland,1137180974 +83470,111,assassination,1137206513 +83470,116,Holocaust,1138040398 +83470,122,dating,1137373679 +83470,140,journalism,1137375031 +83470,150,moon,1137205234 +83470,150,NASA,1137180977 +83470,150,space,1137205233 +83470,153,superhero,1137375453 +83470,160,Michael Crichton,1137373726 +83470,161,submarine,1138137497 +83470,162,In Netflix queue,1137202038 +83470,185,computers,1137375604 +83470,199,Made me cry,1137203124 +83470,215,generation X,1138040410 +83470,216,school,1137373675 +83470,222,Ireland,1137181644 +83470,223,generation X,1138137480 +83470,224,mental illness,1138137516 +83470,224,psychology,1138137516 +83470,230,Stephen King,1138137506 +83470,232,In Netflix queue,1137201027 +83470,235,movie business,1137181651 +83470,237,basketball,1138137528 +83470,237,France,1138137528 +83470,237,infertility,1138137528 +83470,246,basketball,1137784780 +83470,247,Australia,1137181666 +83470,249,Beethoven,1137181672 +83470,252,Einstein,1137374021 +83470,257,court,1137375555 +83470,260,darth vader,1137206494 +83470,260,luke skywalker,1137206496 +83470,260,space opera,1137206504 +83470,261,Louisa May Alcott,1137181688 +83470,262,England,1137206203 +83470,262,Girl Power,1137206203 +83470,262,India,1137206203 +83470,272,England,1138137566 +83470,272,mental illness,1138137566 +83470,277,Christmas,1137374027 +83470,279,In Netflix queue,1137202159 +83470,280,prison,1137375585 +83470,282,disability,1137375594 +83470,282,twins,1137375594 +83470,290,In Netflix queue,1137201907 +83470,293,hit men,1138137619 +83470,296,hit men,1137205001 +83470,300,TV,1137206376 +83470,307,Death,1137203087 +83470,308,marriage,1137206827 +83470,316,time travel,1138137673 +83470,317,Christmas,1137374047 +83470,318,prison,1137205060 +83470,318,Stephen King,1137181171 +83470,318,wrongful imprisonment,1137205064 +83470,326,In Netflix queue,1137201797 +83470,329,Enterprise,1137206491 +83470,337,mental illness,1137206828 +83470,338,serial killer,1137375662 +83470,339,coma,1138137781 +83470,342,Australia,1138137593 +83470,342,weddings,1138137593 +83470,345,cross dressing,1138040381 +83470,345,men in drag,1138040381 +83470,345,remade,1138040381 +83470,349,Tom Clancy,1137180961 +83470,350,John Grisham,1137375482 +83470,351,interracial romance,1137374008 +83470,356,shrimp,1137375519 +83470,356,Vietnam,1137375519 +83470,357,wedding,1137375527 +83470,361,gambling,1138137551 +83470,363,Holocaust,1137202123 +83470,363,In Netflix queue,1137202123 +83470,364,Disney,1137180959 +83470,371,journalism,1137375629 +83470,377,bus,1137206476 +83470,380,spies,1137206826 +83470,381,alcoholism,1137375043 +83470,412,Edith Wharton,1137181633 +83470,421,horses,1138040415 +83470,425,mental illness,1138040434 +83470,425,Oscar (Best Actress),1138040434 +83470,440,President,1137191329 +83470,454,John Grisham,1137181658 +83470,457,based on a TV show,1137784717 +83470,471,hula hoop,1137375547 +83470,474,assassination,1138137543 +83470,475,Ireland,1137181677 +83470,477,biopic,1138137776 +83470,480,Dinosaur,1137202921 +83470,488,Japan,1137375570 +83470,488,sexuality,1137375570 +83470,497,Shakespeare,1137181143 +83470,500,cross dressing,1137374959 +83470,500,divorce,1137374961 +83470,500,men in drag,1137374967 +83470,508,AIDs,1137375634 +83470,513,radio,1138137637 +83470,513,show business,1138137637 +83470,515,Butler,1137202599 +83470,515,Housekeeper,1137202599 +83470,516,military,1137374250 +83470,522,Australia,1138137660 +83470,522,racism,1138137660 +83470,522,violence,1138137660 +83470,524,football,1137375002 +83470,527,Holocaust,1137180970 +83470,529,chess,1137181705 +83470,531,In Netflix queue,1137201896 +83470,534,C.S. Lewis,1137181163 +83470,535,large cast,1137206471 +83470,538,race,1138137665 +83470,539,Empire State Building,1137203041 +83470,541,robots,1137375464 +83470,543,beat poetry,1137203057 +83470,551,Christmas,1137375615 +83470,551,Halloween,1137375615 +83470,556,politics,1137375666 +83470,562,adolescence,1137206827 +83470,586,christmas,1137374182 +83470,587,overrated,1137180951 +83470,588,Disney,1137180971 +83470,589,robots,1137206517 +83470,590,American Indians,1137180976 +83470,590,Native Americans,1137180976 +83470,592,superhero,1137206164 +83470,593,Hannibal Lector,1137180982 +83470,594,Disney,1137375648 +83470,595,Disney,1137180963 +83470,596,Disney,1137374224 +83470,597,prostitution,1137206324 +83470,608,Coen Brothers,1137180968 +83470,616,Disney,1138040401 +83470,628,priest,1137375884 +83470,638,babies,1137375798 +83470,647,Gulf War,1137375718 +83470,648,based on a TV show,1138137584 +83470,668,India,1138137607 +83470,670,India,1137181320 +83470,671,spoof,1138137597 +83470,673,Bugs Bunny,1137373978 +83470,708,Veterinarian,1137203107 +83470,720,Aardman,1137206828 +83470,728,In Netflix queue,1137202096 +83470,733,Alcatraz,1137206418 +83470,736,Disaster,1137180960 +83470,745,Aardman,1137206827 +83470,748,aliens,1138137820 +83470,750,Atomic bomb,1137202888 +83470,778,drug abuse,1137191490 +83470,780,aliens,1137206181 +83470,800,In Netflix queue,1137201974 +83470,805,John Grisham,1137375969 +83470,818,based on a TV show,1137375996 +83470,830,adultery,1137374123 +83470,832,kidnapping,1137374242 +83470,838,Jane Austen,1137375748 +83470,852,golf,1137374262 +83470,858,Mafia,1137180955 +83470,892,Shakespeare,1137375988 +83470,898,divorce,1137206322 +83470,899,movie business,1137181713 +83470,900,France,1138137809 +83470,902,Capote,1138137849 +83470,903,falling,1137205255 +83470,904,voyeurism,1137206380 +83470,905,Screwball,1137202499 +83470,906,Brooch,1137191231 +83470,907,divorce,1137375780 +83470,908,Mount Rushmore,1138137968 +83470,909,adultery,1137206162 +83470,910,men in drag,1137191481 +83470,911,heist,1138306780 +83470,912,start of a beautiful friendship,1137202319 +83470,913,statue,1137206229 +83470,914,George Bernard Shaw,1137202973 +83470,915,rich guy - poor girl,1137206449 +83470,916,Italy,1137206429 +83470,916,royalty,1137206429 +83470,918,1900s,1138137949 +83470,919,Dorothy,1137205270 +83470,919,Toto,1137205270 +83470,920,Civil War,1137374145 +83470,921,television,1137375857 +83470,922,movies,1137207406 +83470,923,Rosebud,1137202868 +83470,924,Hal,1137368035 +83470,924,space,1137368035 +83470,926,Hollywood,1137202821 +83470,927,divorce,1137368140 +83470,928,Mrs. DeWinter,1137202590 +83470,929,Europe,1140441887 +83470,929,journalism,1140441887 +83470,929,war,1140441887 +83470,930,assassination,1137207035 +83470,931,amnesia,1138137999 +83470,934,wedding,1137375767 +83470,936,Cold War,1137521228 +83470,936,Russia,1137521228 +83470,938,prostitution,1137374937 +83470,940,swashbuckler,1138137798 +83470,941,swashbuckler,1138137943 +83470,943,ghosts,1138306878 +83470,944,Shangri-La,1137207008 +83470,945,Astaire and Rogers,1137181301 +83470,947,butler,1137521096 +83470,947,homeless,1137521096 +83470,947,screwball,1137521103 +83470,948,oil,1137206938 +83470,950,Nick and Nora Charles,1137200994 +83470,951,Screwball,1137202906 +83470,952,race,1137375685 +83470,953,Christmas,1138137927 +83470,954,Politics,1137202956 +83470,955,leopard,1137368052 +83470,955,screwball,1137368052 +83470,956,adoption,1137207058 +83470,965,fugitive,1137206861 +83470,968,zombies,1137181787 +83470,969,missionary,1137202249 +83470,970,crime,1138306770 +83470,971,Tennessee Williams,1138137870 +83470,973,journalism,1138306956 +83470,976,Hemingway,1137375762 +83470,986,Animal movie,1137181755 +83470,991,Ireland,1137375821 +83470,994,food,1138137832 +83470,1006,death penalty,1138137880 +83470,1006,John Grisham,1138137880 +83470,1010,Disney,1137375809 +83470,1010,race,1137375809 +83470,1013,twins,1137375864 +83470,1022,Disney,1137181749 +83470,1025,Disney,1137375959 +83470,1025,King Arthur,1137375959 +83470,1028,Disney,1137375815 +83470,1028,nanny,1137375815 +83470,1029,Disney,1137375741 +83470,1030,Disney,1137374219 +83470,1032,Disney,1137374073 +83470,1033,Disney,1137202900 +83470,1035,Rogers and Hammerstein,1137181179 +83470,1041,In Netflix queue,1137201463 +83470,1042,Music,1137203070 +83470,1059,Shakespeare,1137181313 +83470,1066,Astaire and Rogers,1137181830 +83470,1068,anti-Semitism,1138306851 +83470,1076,governess,1137521394 +83470,1079,fish,1137202895 +83470,1080,Bible,1137375841 +83470,1080,parody,1137375841 +83470,1080,religion,1137375841 +83470,1081,cross dressing,1138138013 +83470,1082,politics,1138137861 +83470,1084,1920s,1138137844 +83470,1084,gangsters,1138137844 +83470,1088,dance,1138306856 +83470,1088,music,1138306856 +83470,1089,heist,1137207100 +83470,1089,violence,1137207100 +83470,1090,Vietnam,1138137990 +83470,1093,1960s,1137375736 +83470,1093,Jim Morrison,1137375736 +83470,1093,music,1137375736 +83470,1096,Holocaust,1137375015 +83470,1097,aliens,1137521204 +83470,1101,Navy,1138138004 +83470,1103,1950s,1137207088 +83470,1103,adolescence,1137207088 +83470,1104,Tennessee Williams,1137207146 +83470,1124,aging,1137207041 +83470,1125,Clousseau,1137375898 +83470,1135,military,1137374233 +83470,1136,England,1137202949 +83470,1136,King Arthur,1137202949 +83470,1147,boxing,1137201093 +83470,1147,In Netflix queue,1137201093 +83470,1148,Aardman,1137368133 +83470,1171,politics,1137181738 +83470,1177,Italy,1137191228 +83470,1178,court,1137521169 +83470,1178,military,1137521169 +83470,1179,crime,1138306883 +83470,1183,adultery,1137374103 +83470,1185,In Netflix queue,1137201055 +83470,1187,disability,1137207053 +83470,1188,Australia,1137202649 +83470,1188,dance,1137202649 +83470,1189,In Netflix queue,1137201133 +83470,1189,police,1137201133 +83470,1193,mental illness,1138137985 +83470,1196,I am your father,1137202639 +83470,1196,space,1137205077 +83470,1196,space opera,1137205075 +83470,1197,Inigo Montoya,1137202999 +83470,1197,six-fingered man,1137202999 +83470,1198,archaeology,1137784496 +83470,1198,ark of the covenant,1137207066 +83470,1198,indiana jones,1137207064 +83470,1200,space,1138137801 +83470,1201,spaghetti western,1138137912 +83470,1203,court,1137206845 +83470,1204,Middle East,1137206997 +83470,1206,brainwashing,1138137889 +83470,1207,Harper Lee,1137191542 +83470,1207,racism,1137191542 +83470,1208,Vietnam,1138137816 +83470,1209,spaghetti western,1138137976 +83470,1210,darth vader,1137207127 +83470,1210,luke skywalker,1137207127 +83470,1210,space opera,1137207127 +83470,1212,ferris wheel,1137201067 +83470,1212,Venice,1143683500 +83470,1212,zither,1143683500 +83470,1213,Mafia,1138137920 +83470,1214,aliens,1137766234 +83470,1217,samurai,1137207077 +83470,1219,Norman Bates,1137203028 +83470,1220,Saturday Night Live,1137375705 +83470,1221,Mafia,1137181066 +83470,1222,Vietnam,1137181761 +83470,1223,moon,1137205261 +83470,1224,Shakespeare,1137181778 +83470,1225,Mozart,1137181247 +83470,1225,Salieri,1137181247 +83470,1228,boxing,1137375891 +83470,1230,New York,1137206872 +83470,1231,NASA,1137181802 +83470,1231,space,1137207104 +83470,1233,submarine,1138137835 +83470,1234,The Entertainer,1137520998 +83470,1235,May-December romance,1137206961 +83470,1237,chess,1137375008 +83470,1237,death,1137375008 +83470,1240,robots,1137368088 +83470,1242,Civil War,1137181272 +83470,1243,Shakespeare sort of,1137181815 +83470,1244,black and white,1138306904 +83470,1245,Mafia,1137375832 +83470,1246,High School,1137191334 +83470,1247,Simon and Garfunkel,1137181084 +83470,1249,hit men,1138137899 +83470,1250,POW,1137206891 +83470,1252,incest,1137521080 +83470,1253,aliens,1137206910 +83470,1254,Cold,1137203094 +83470,1257,skiing,1137375698 +83470,1258,Stephen King,1137181824 +83470,1259,Stephen King,1137181838 +83470,1260,serial killer,1137207017 +83470,1262,POW,1137206951 +83470,1263,Vietnam,1137375724 +83470,1266,revenge,1138031666 +83470,1267,assassination,1137207027 +83470,1267,brainwashing,1137207027 +83470,1269,murder,1138137828 +83470,1270,time travel,1137202832 +83470,1272,World War II,1137181795 +83470,1276,prison,1137520930 +83470,1277,In Netflix queue,1137201859 +83470,1278,spoof,1138031675 +83470,1280,In Netflix queue,1137201087 +83470,1281,Nazis,1137206944 +83470,1282,Disney,1137375752 +83470,1283,gunfight,1138306895 +83470,1284,Hammett,1138306774 +83470,1285,high school,1137368062 +83470,1288,heavy metal,1137368105 +83470,1288,mockumentary,1137368105 +83470,1288,music,1137368105 +83470,1291,archaeology,1137206982 +83470,1291,Holy Grail,1137206982 +83470,1292,television,1137206878 +83470,1293,India,1137191587 +83470,1296,E. M. Forster,1137191679 +83470,1299,Cambodia,1138137933 +83470,1299,Vietnam,1138137933 +83470,1301,Shakespeare sort of,1138306870 +83470,1301,space,1138306870 +83470,1302,baseball,1138137903 +83470,1303,India,1138031736 +83470,1304,crime,1138137854 +83470,1307,New York,1137202686 +83470,1333,birds,1137202841 +83470,1343,remake,1137181261 +83470,1344,lawyer,1137202856 +83470,1345,high school,1137784649 +83470,1345,prom,1137784649 +83470,1345,Stephen King,1137784649 +83470,1348,vampires,1137374972 +83470,1350,demons,1137368289 +83470,1353,personals ads,1137202938 +83470,1354,religion,1137202850 +83470,1356,Borg,1137202633 +83470,1358,ex-con,1137203050 +83470,1361,In Netflix queue,1137201059 +83470,1363,religion,1137374986 +83470,1366,Arthur Miller,1137191572 +83470,1367,dogs,1137374063 +83470,1367,remake,1137374063 +83470,1372,Klingons,1137203064 +83470,1374,Captain Kirk,1138031870 +83470,1376,whales,1137368320 +83470,1377,superhero,1137374089 +83470,1380,high school,1137368225 +83470,1381,high school,1137374154 +83470,1387,Shark,1137202913 +83470,1389,shark,1137373926 +83470,1393,sports,1137205489 +83470,1394,Coen Brothers,1137181415 +83470,1396,spying,1138031853 +83470,1398,Hemingway,1137374949 +83470,1407,slasher,1138031814 +83470,1407,spoof,1138031814 +83470,1408,Hawkeye,1137368264 +83470,1408,James Fennimore Cooper,1137368264 +83470,1411,Shakespeare,1137191597 +83470,1413,Conan,1137205643 +83470,1416,Andrew Lloyd Weber,1137374117 +83470,1423,In Netflix queue,1137202085 +83470,1423,Vietnam,1137202085 +83470,1441,mental illness,1137375694 +83470,1446,In Netflix queue,1137201854 +83470,1449,mockumentary,1137368329 +83470,1466,Mafia,1137191577 +83470,1474,jungle,1137374191 +83470,1485,lawyer,1137375802 +83470,1496,Tolstoy,1137191560 +83470,1500,hit men,1137368241 +83470,1500,reunion,1137368241 +83470,1513,reunion,1137375929 +83470,1537,ballroom dance,1137368308 +83470,1542,In Netflix queue,1137202048 +83470,1544,dinosaurs,1137373781 +83470,1545,death,1138031807 +83470,1569,weddings,1138031775 +83470,1573,transplants,1137205452 +83470,1580,aliens,1137205519 +83470,1586,military,1137374138 +83470,1608,president,1137375681 +83470,1610,Tom Clancy,1137191607 +83470,1617,Police,1137191242 +83470,1625,twist ending,1138031717 +83470,1635,1970s,1137191612 +83470,1643,England,1137375849 +83470,1643,Queen Victoria,1137375849 +83470,1645,lawyers,1137374095 +83470,1650,Henry James,1138031883 +83470,1653,future,1137205460 +83470,1663,military,1137375949 +83470,1672,In Netflix queue,1137202154 +83470,1674,Amish,1137521041 +83470,1680,alternate universe,1138031846 +83470,1682,TV,1137205617 +83470,1683,Henry James,1137181445 +83470,1711,Savannah,1137374207 +83470,1717,sequel,1138031833 +83470,1717,slasher,1138031824 +83470,1717,spoof,1138031824 +83470,1719,Canada,1139838573 +83470,1719,death,1139838573 +83470,1721,shipwreck,1138031879 +83470,1732,Coen Brothers,1138306661 +83470,1735,Charles Dickens,1137374163 +83470,1748,amnesia,1138031699 +83470,1777,1980s,1137205630 +83470,1797,In Netflix queue,1137201971 +83470,1810,politics,1137374994 +83470,1834,twist ending,1138031861 +83470,1836,No DVD at Netflix,1137179444 +83470,1893,In Netflix queue,1137201105 +83470,1900,In Netflix queue,1137201889 +83470,1902,generation X,1138031706 +83470,1909,conspiracy,1137205667 +83470,1912,heist,1138031795 +83470,1913,Australia,1137191654 +83470,1917,space,1137373862 +83470,1921,mathematics,1138031797 +83470,1931,ships,1138031771 +83470,1938,alcoholism,1137766211 +83470,1940,anti-Semitism,1137368219 +83470,1940,Judaism,1137368219 +83470,1942,Huey Long,1137201047 +83470,1942,In Netflix queue,1137201047 +83470,1942,Robert Penn Warren,1137201047 +83470,1945,boxing,1137191644 +83470,1945,coulda been a contender,1137191644 +83470,1947,Gangs,1137202674 +83470,1950,racism,1137520942 +83470,1951,Dickens,1137191634 +83470,1952,prostitution,1138031755 +83470,1953,drugs,1137368199 +83470,1953,police,1137368199 +83470,1954,boxing,1137191671 +83470,1954,sports,1137191671 +83470,1955,divorce,1137181397 +83470,1957,Olympics,1137181069 +83470,1957,sports,1137181069 +83470,1959,adultery,1138031923 +83470,1959,Africa,1138031923 +83470,1960,China,1137368246 +83470,1961,autism,1137191663 +83470,1962,rasicm,1137368186 +83470,1975,Jason,1137374129 +83470,1976,Jason,1137373611 +83470,1977,Jason,1137373908 +83470,1978,Jason,1137373605 +83470,1979,Jason,1137373625 +83470,1983,halloween,1137374175 +83470,1984,halloween,1137374180 +83470,1994,ghosts,1138031804 +83470,1995,ghosts,1137374228 +83470,1996,ghosts,1137373825 +83470,1997,demons,1137368191 +83470,2006,California,1138031745 +83470,2006,Mexico,1138031745 +83470,2011,time travel,1137374084 +83470,2019,samurai,1137368312 +83470,2020,adultery,1137368176 +83470,2022,Bible,1137202075 +83470,2022,Katzanzakis,1143683469 +83470,2028,World War II,1137180952 +83470,2054,Disney,1138032013 +83470,2058,police,1138032116 +83470,2059,twins,1137374214 +83470,2064,General Motors,1138032156 +83470,2064,Michigan,1138032156 +83470,2065,In Netflix queue,1137202057 +83470,2066,memory,1138032133 +83470,2070,music,1137191821 +83470,2071,AIDs,1137200442 +83470,2071,In Netflix queue,1137200442 +83470,2076,sexuality,1137418851 +83470,2076,suburbia,1137418851 +83470,2078,Disney,1138032023 +83470,2080,Disney,1138032086 +83470,2085,Disney,1137191781 +83470,2097,carnival,1138559451 +83470,2097,Ray Bradbury,1138559451 +83470,2100,mermaid,1137191808 +83470,2108,weather forecaster,1138032081 +83470,2114,S.E. Hinton,1137191789 +83470,2115,archaeology,1137784519 +83470,2116,Tolkein,1137374427 +83470,2118,Stephen King,1137191728 +83470,2121,Stephen King,1137374355 +83470,2122,Stephen King,1137373696 +83470,2139,mice,1137521184 +83470,2145,1980s,1138032148 +83470,2145,high school,1138032148 +83470,2160,demons,1138032159 +83470,2167,vampires,1137374320 +83470,2171,aquarium,1137202573 +83470,2171,Boston,1137202573 +83470,2171,personals ads,1137202573 +83470,2186,murder,1137205604 +83470,2187,theater,1140467428 +83470,2194,Capone,1138032218 +83470,2194,gangsters,1138032218 +83470,2202,survival,1137205513 +83470,2203,small towns,1138032173 +83470,2206,paranoia,1137205610 +83470,2208,train,1137271242 +83470,2243,journalism,1137205380 +83470,2247,Mafia,1137374432 +83470,2248,In Your Eyes,1137202613 +83470,2248,Lloyd Dobbler,1137202613 +83470,2249,Mafia,1137374445 +83470,2268,court,1137191761 +83470,2268,military,1137191761 +83470,2291,freaks,1137205437 +83470,2295,Screwball,1137202461 +83470,2300,Broadway,1137205562 +83470,2302,court,1137374439 +83470,2310,adolescence,1138032095 +83470,2312,death penalty,1137374919 +83470,2313,freaks,1137205442 +83470,2324,Holocaust,1137181119 +83470,2329,racism,1138031951 +83470,2334,terrorism,1138032178 +83470,2335,football,1137374560 +83470,2336,England,1137191737 +83470,2351,In Netflix queue,1137202131 +83470,2355,Pixar,1137191711 +83470,2357,South America,1137205389 +83470,2360,In Netflix queue,1137201464 +83470,2390,In Netflix queue,1137202019 +83470,2391,heist,1138032185 +83470,2394,Bible,1137191285 +83470,2394,Moses,1137202582 +83470,2396,England,1137191800 +83470,2410,boxing,1137374485 +83470,2411,boxing,1137373840 +83470,2412,boxing,1137373964 +83470,2420,martial arts,1138032051 +83470,2421,martial arts,1137374406 +83470,2422,martial arts,1137374411 +83470,2423,christmas,1137373883 +83470,2424,e-mail,1137202717 +83470,2424,remake,1137202717 +83470,2431,doctors,1137373812 +83470,2442,In Netflix queue,1137201903 +83470,2463,kidnapping,1137374497 +83470,2467,religion,1140703344 +83470,2470,Australia,1137374348 +83470,2471,Australia,1137373731 +83470,2491,food,1137374514 +83470,2494,Holocaust,1137179426 +83470,2494,Hungary,1137179426 +83470,2502,stapler,1138032123 +83470,2502,workplace,1138032129 +83470,2506,disability,1137374460 +83470,2517,Stephen King,1137373705 +83470,2529,twist ending,1138032140 +83470,2550,ghosts,1138032008 +83470,2553,evil children,1138038893 +83470,2554,evil children,1138038892 +83470,2565,Siam,1137191238 +83470,2571,alternate universe,1137204991 +83470,2572,Shakespeare sort of,1137374893 +83470,2579,black and white,1138032056 +83470,2581,high school,1138032122 +83470,2583,southern US,1138031988 +83470,2598,golfing,1137374470 +83470,2600,virtual reality,1138031996 +83470,2612,motherhood,1138032112 +83470,2628,prequel,1138032197 +83470,2628,the Force,1138032197 +83470,2640,superhero,1138032200 +83470,2641,superhero,1138032201 +83470,2642,superhero,1137373986 +83470,2648,In Netflix queue,1137200966 +83470,2660,aliens,1137521194 +83470,2664,1950s,1138032017 +83470,2677,In Netflix queue,1137202023 +83470,2692,alternate endings,1138032166 +83470,2693,Star Trek,1138032207 +83470,2699,spiders,1137373650 +83470,2710,claims to be true,1138031976 +83470,2710,video,1138031976 +83470,2712,sexuality,1138032003 +83470,2716,ghosts,1137205464 +83470,2717,Ghosts,1137373633 +83470,2719,remake,1137373916 +83470,2723,superhero,1137205533 +83470,2726,heist,1137205507 +83470,2728,crucifixion,1137520905 +83470,2728,Rome,1137520896 +83470,2728,slavery,1137520896 +83470,2745,Missionary,1137202541 +83470,2745,Priest,1137191266 +83470,2750,nostalgia,1137443255 +83470,2750,radio,1137443255 +83470,2761,robots,1138032019 +83470,2762,ghosts,1137205068 +83470,2762,I see dead people,1137202627 +83470,2787,Stephen King,1137374342 +83470,2791,aviation,1138031941 +83470,2791,spoof,1138031941 +83470,2797,children,1138032265 +83470,2801,gambling,1137205541 +83470,2803,lawyers,1137374982 +83470,2804,Christmas,1137191720 +83470,2827,aliens,1137374307 +83470,2863,Beatles,1138032352 +83470,2871,river,1138032293 +83470,2872,England,1137191745 +83470,2872,King Arthur,1137191745 +83470,2905,In Netflix queue,1137201967 +83470,2915,prostitution,1137374478 +83470,2918,High School,1137191753 +83470,2919,Academy award (Best Supporting Actress),1137367916 +83470,2919,Indonesia,1137367916 +83470,2919,journalism,1137367916 +83470,2927,adultery,1138032272 +83470,2935,gambling,1138032373 +83470,2937,screwball,1137205550 +83470,2939,In Netflix queue,1137202140 +83470,2940,nightclub,1138032341 +83470,2941,island,1138032457 +83470,2943,Vietnam,1138804253 +83470,2952,gambling,1137191914 +83470,2959,violence,1137205034 +83470,2966,brothers,1138032507 +83470,2966,lawn mower,1138032507 +83470,2967,evil children,1138038912 +83470,2968,time travel,1138032520 +83470,2987,live action/animation,1138032544 +83470,3000,anime,1138032418 +83470,3006,tobacco,1138032361 +83470,3006,true story,1138032361 +83470,3007,In Netflix queue,1137201930 +83470,3011,dance marathon,1137191967 +83470,3028,Shakespeare,1137374544 +83470,3030,samurai,1138032553 +83470,3039,class,1138032532 +83470,3040,camp,1137373789 +83470,3044,memory,1137202357 +83470,3044,music,1137202357 +83470,3052,religion,1137191859 +83470,3060,In Netflix queue,1137201892 +83470,3071,high school,1137375023 +83470,3072,New York,1137191274 +83470,3077,In Netflix queue,1137201542 +83470,3077,Up series,1137201543 +83470,3081,Ichabod Crane,1137374535 +83470,3087,christmas,1137271226 +83470,3087,new york,1137271222 +83470,3095,depression,1137205475 +83470,3095,dust bowl,1137205475 +83470,3097,remade,1138032435 +83470,3098,baseball,1137201875 +83470,3098,sports,1137201875 +83470,3101,adultery,1138032312 +83470,3108,homeless,1137374925 +83470,3111,racism,1138032385 +83470,3114,Pixar,1138032529 +83470,3115,men in drag,1137191883 +83470,3125,Graham Greene,1137191874 +83470,3135,fatherhood,1138032346 +83470,3147,Stephen King,1137191901 +83470,3152,black-and-white,1137521245 +83470,3160,L.A.,1137202527 +83470,3174,Andy Kaufman,1137191943 +83470,3175,spoof,1138032315 +83470,3176,Europe,1137202659 +83470,3176,murder,1137202659 +83470,3178,boxing,1137374389 +83470,3181,Shakespeare,1137179352 +83470,3192,In Netflix queue,1137201464 +83470,3210,high school,1137374381 +83470,3211,a dingo ate my baby,1137191854 +83470,3211,Australia,1137191854 +83470,3247,nuns,1137374526 +83470,3250,In Netflix queue,1137202163 +83470,3258,plastic surgery,1137375095 +83470,3259,Ireland,1137375116 +83470,3260,E.M. Forster,1137181368 +83470,3263,basketball,1137374566 +83470,3270,figure skating,1137375084 +83470,3273,slasher,1138032428 +83470,3273,spoof,1138032428 +83470,3281,sexuality,1137374330 +83470,3306,big top,1137205399 +83470,3306,circus,1137205399 +83470,3307,blind,1137205412 +83470,3310,orphans,1138032366 +83470,3317,writing,1138032548 +83470,3330,adolescence,1138032469 +83470,3330,sexuality,1138032498 +83470,3338,In Netflix queue,1137201680 +83470,3341,remade,1138032286 +83470,3360,basketball,1137784798 +83470,3384,subway,1138032512 +83470,3385,Peace Corp,1137374553 +83470,3386,politics,1137191934 +83470,3386,president,1137191934 +83470,3408,scandal,1138032304 +83470,3408,true story,1138032304 +83470,3420,lawyers,1137375055 +83470,3421,college,1137374581 +83470,3421,TOGA,1137374587 +83470,3424,racism,1137191865 +83470,3429,aardman,1140626569 +83470,3435,Insurance,1137520877 +83470,3447,Pearl S Buck,1137191895 +83470,3451,Hepburn and Tracy,1137181361 +83470,3451,interracial marriage,1137205479 +83470,3451,prejudice,1137205481 +83470,3451,racism,1137205477 +83470,3456,In Netflix queue,1137201463 +83470,3461,island,1138032377 +83470,3462,factory,1137205526 +83470,3468,pool,1137521005 +83470,3469,court,1137375171 +83470,3469,evolution,1137375171 +83470,3469,religion,1137375171 +83470,3475,class,1138032413 +83470,3481,Nick Hornby,1137181093 +83470,3489,Peter Pan,1137191920 +83470,3498,In Netflix queue,1137201900 +83470,3502,death,1137375216 +83470,3504,journalism,1137191950 +83470,3507,In Netflix queue,1137200453 +83470,3512,transplants,1137205572 +83470,3515,alternate endings,1138032711 +83470,3526,families,1138032724 +83470,3528,psychiatrist,1137374751 +83470,3536,priest,1137181376 +83470,3536,rabbi,1137181376 +83470,3546,show business,1138032886 +83470,3548,1920s,1137205331 +83470,3549,Gambling,1137191235 +83470,3552,golf,1137374630 +83470,3556,1970s,1138032871 +83470,3556,suicide,1138032871 +83470,3559,In Netflix queue,1137202015 +83470,3566,business,1137205342 +83470,3566,religion,1137205342 +83470,3608,Pee Wee Herman,1138032732 +83470,3629,mining,1138032660 +83470,3675,Christmas,1137205636 +83470,3676,In Netflix queue,1137202167 +83470,3683,Coen Brothers,1137521124 +83470,3712,television,1137375317 +83470,3723,Shakespeare,1137191908 +83470,3724,Vietnam,1137201954 +83470,3730,spying,1138032598 +83470,3735,police,1138032794 +83470,3793,superhero,1137205670 +83470,3801,court,1137191841 +83470,3811,court,1138032584 +83470,3816,missing children,1138032720 +83470,3844,diabetes,1137375348 +83470,3849,disability,1138032820 +83470,3859,In Netflix queue,1137201554 +83470,3859,televangelist,1137201554 +83470,3877,superhero,1137374791 +83470,3897,journalism,1137205322 +83470,3897,music,1137205322 +83470,3897,Rolling Stone,1137205322 +83470,3910,blindness,1138032613 +83470,3910,factory,1138032613 +83470,3911,Dogs,1137181343 +83470,3932,invisibility,1138032669 +83470,3949,drug abuse,1137192093 +83470,3951,In Netflix queue,1137179732 +83470,3967,ballet,1137191989 +83470,3983,family,1137205683 +83470,3988,Dr. Seuss,1137373756 +83470,3994,superhero,1137205619 +83470,3996,china,1138032606 +83470,3996,martial arts,1138032600 +83470,4007,business,1138032878 +83470,4012,stand-up comedy,1137374767 +83470,4019,writing,1138032630 +83470,4024,Edith Wharton,1137375144 +83470,4025,pageant,1137374719 +83470,4027,bluegrass,1137520959 +83470,4029,movies,1137205589 +83470,4034,based on a TV show,1137784729 +83470,4046,Quakers,1138032635 +83470,4077,psychopaths,1138039049 +83470,4105,zombies,1137374672 +83470,4113,Tennessee Williams,1137192025 +83470,4117,In Netflix queue,1137200919 +83470,4138,demons,1137373794 +83470,4160,death penalty,1137205651 +83470,4164,homeless,1138032589 +83470,4164,New York,1138032589 +83470,4166,reality TV,1137374777 +83470,4171,Eugene O'Neill,1137192041 +83470,4174,In Netflix queue,1137200882 +83470,4184,Christmas,1138032577 +83470,4189,Bible,1137375121 +83470,4189,religion,1137375121 +83470,4190,preacher,1137520919 +83470,4190,religion,1137520919 +83470,4191,sexuality,1138032573 +83470,4194,In Netflix queue,1137201575 +83470,4204,virginity,1137373770 +83470,4210,Hannibal Lecter,1139059882 +83470,4210,serial killer,1139059887 +83470,4211,von Bulow,1137192103 +83470,4214,college,1137374771 +83470,4218,In Netflix queue,1137202093 +83470,4221,football,1137374725 +83470,4226,Backwards. memory,1137191263 +83470,4232,spying,1138032824 +83470,4246,singletons,1137205374 +83470,4259,Nabokov,1137192047 +83470,4263,alcoholism,1138032622 +83470,4292,Union,1137192082 +83470,4296,death,1137374704 +83470,4306,fairy tales,1137205586 +83470,4312,In Netflix queue,1137202173 +83470,4316,figure skating,1137375157 +83470,4326,race,1137375204 +83470,4326,rasicm,1137375204 +83470,4333,Strangers on a Train,1138032832 +83470,4347,Holocaust,1138032626 +83470,4356,In Netflix queue,1137201794 +83470,4359,adultery,1138032800 +83470,4361,men in drag,1138032838 +83470,4370,robots,1137205306 +83470,4380,accident,1138032770 +83470,4396,race,1137373684 +83470,4404,In Netflix queue,1137200537 +83470,4447,lawyers,1138032674 +83470,4448,heist,1138032773 +83470,4465,rape,1138032565 +83470,4476,twins,1137374622 +83470,4477,circus,1137373669 +83470,4489,Africa,1137766266 +83470,4489,immigrants,1137374636 +83470,4495,New York,1137202342 +83470,4526,aliens,1137373948 +83470,4537,hippies,1137205576 +83470,4545,robots,1137374781 +83470,4546,kidnapping,1138032855 +83470,4546,remade,1138032855 +83470,4558,twins,1137374798 +83470,4571,time travel,1137205348 +83470,4600,doctors,1137375124 +83470,4621,babies,1137374699 +83470,4623,baseball,1137374712 +83470,4638,dinosaurs,1137374692 +83470,4639,Hollywood,1137375071 +83470,4639,movie business,1137375071 +83470,4641,adolescence,1138032652 +83470,4677,dogs,1137373991 +83470,4678,television,1138032842 +83470,4688,In Netflix queue,1137201126 +83470,4787,prodigies,1138032687 +83470,4801,family,1138032678 +83470,4808,remake,1137374805 +83470,4809,Nuclear disaster,1137367824 +83470,4809,union,1137367824 +83470,4812,NASA,1137374786 +83470,4812,space,1137374786 +83470,4823,wedding,1138032791 +83470,4835,Loretta Lynn,1137192003 +83470,4857,Judaism,1138039170 +83470,4857,Tradition!,1137192017 +83470,4874,aliens,1137375186 +83470,4874,psychiatrist,1137375186 +83470,4878,time travel,1137205781 +83470,4881,Coen Brothers,1137192055 +83470,4896,Magic,1137205893 +83470,4896,Wizards,1137205893 +83470,4902,ghosts,1137367852 +83470,4920,psychology,1138039319 +83470,4963,heist,1138039322 +83470,4969,In Netflix queue,1137179563 +83470,4970,nightclub,1138039117 +83470,4970,singers,1138039117 +83470,4973,whimsical,1137202289 +83470,4979,new york,1137271220 +83470,4980,time travel,1138039109 +83470,4993,Tolkein,1137181125 +83470,4998,racism,1139102582 +83470,5008,Agatha Christie,1138039430 +83470,5008,court,1138039430 +83470,5012,cross dressing,1138039463 +83470,5012,Judaism,1138039463 +83470,5015,race,1138039271 +83470,5034,Ghost,1137191298 +83470,5064,Dumas,1138039163 +83470,5064,revenge,1138039163 +83470,5114,movie business,1138039083 +83470,5120,In Netflix queue,1137200871 +83470,5135,India,1137192060 +83470,5139,baseball,1137373653 +83470,5213,religion,1137373958 +83470,5224,In Netflix queue,1137201464 +83470,5238,In Netflix queue,1137202052 +83470,5266,crime,1138039345 +83470,5291,In Netflix queue,1137200907 +83470,5291,samurai,1142282530 +83470,5294,religion,1138039177 +83470,5304,In Netflix queue,1137200961 +83470,5316,World War II,1137375111 +83470,5349,superhero,1137206068 +83470,5353,blind,1137784621 +83470,5377,Nick Hornby,1137181073 +83470,5379,anti-Semitism,1137205732 +83470,5379,Judaism,1137205732 +83470,5398,boxing,1138039410 +83470,5404,books,1138039075 +83470,5445,future,1137206007 +83470,5446,Australia,1137181573 +83470,5450,sisterhood,1138039255 +83470,5450,women,1138039255 +83470,5451,disability,1137375287 +83470,5451,mental illness,1137375287 +83470,5470,Oscar Wilde,1137181530 +83470,5475,In Netflix queue,1137201978 +83470,5483,movie business,1137181538 +83470,5498,In Netflix queue,1137179781 +83470,5502,aliens,1137206065 +83470,5505,adultery,1137205854 +83470,5505,younger men,1137205854 +83470,5527,AS Byatt,1138039372 +83470,5527,books,1138039372 +83470,5528,photography,1138039335 +83470,5528,psychopaths,1138039335 +83470,5548,homeless,1137374645 +83470,5577,adolescence,1138039226 +83470,5601,Animal movie,1138039452 +83470,5603,crime,1138039241 +83470,5603,heist,1138039241 +83470,5618,anime,1137206076 +83470,5629,Bible,1137374683 +83470,5630,Hannibal Lecter,1139059884 +83470,5633,bombs,1138039202 +83470,5644,baseball,1138039381 +83470,5644,Lou Gehrig,1138039381 +83470,5669,violence in america,1138039133 +83470,5673,pudding,1137206033 +83470,5682,Holocaust,1138039189 +83470,5685,Girl Power,1137206048 +83470,5690,made me cry,1137205866 +83470,5690,orphans,1137205866 +83470,5721,In Netflix queue,1137200976 +83470,5721,Judaism,1137200976 +83470,5747,World War I,1137181512 +83470,5791,art,1138039181 +83470,5792,dating,1137375296 +83470,5802,teenagers,1138039442 +83470,5812,salute to Douglas Sirk,1137181505 +83470,5816,Magic,1137205882 +83470,5816,Wizards,1137205882 +83470,5820,music business,1138039419 +83470,5875,short films,1137375257 +83470,5876,Graham Greene,1138039395 +83470,5878,coma,1138039423 +83470,5899,Africa,1137442538 +83470,5952,Tolkein,1137181130 +83470,5954,crime,1138039070 +83470,5954,nightclub,1138039070 +83470,5971,anime,1138039281 +83470,5989,crime,1138039137 +83470,5991,court,1138039145 +83470,5991,jazz,1138039140 +83470,5991,murder,1138039142 +83470,5994,Dickens,1138039286 +83470,5995,Holocaust,1137181562 +83470,6002,drugs,1138307168 +83470,6002,planes,1138307168 +83470,6002,widows/widowers,1138307168 +83470,6003,television,1138307058 +83470,6016,crime,1138039157 +83470,6016,photography,1138039157 +83470,6016,violence,1138039157 +83470,6020,class,1138307024 +83470,6027,In Netflix queue,1137200848 +83470,6031,motherhood,1138039234 +83470,6031,race,1138039234 +83470,6041,In Netflix queue,1137200888 +83470,6063,doll,1137375194 +83470,6090,ghosts,1138307131 +83470,6101,Chile,1137900975 +83470,6101,politics,1137900975 +83470,6101,South America,1137900975 +83470,6104,spoof,1138039279 +83470,6156,England,1138307301 +83470,6159,adolescence,1138307031 +83470,6163,obsession,1137205905 +83470,6170,horses,1138307048 +83470,6178,blind,1138039358 +83470,6178,blindness,1138039358 +83470,6178,race,1138039358 +83470,6181,Civil War,1138039404 +83470,6181,Stephen Crane,1138039404 +83470,6183,Day and Hudson,1138039366 +83470,6183,sexuality,1138039366 +83470,6195,books,1138498655 +83470,6195,Stones of Summer,1138498655 +83470,6197,mental illness,1138307351 +83470,6201,England,1137191244 +83470,6216,World War II,1138307229 +83470,6218,soccer,1138039102 +83470,6228,In Netflix queue,1137201613 +83470,6232,animal movie,1138039126 +83470,6232,lions,1138039125 +83470,6235,Holocaust,1138307079 +83470,6235,World War II,1138307079 +83470,6238,immigrants,1138307096 +83470,6242,television,1138307280 +83470,6244,In Netflix queue,1137201921 +83470,6245,prostitution,1138307361 +83470,6254,screwball,1137181469 +83470,6268,adolescence,1138307261 +83470,6269,Big Brothers,1137206096 +83470,6273,L.A.,1137521025 +83470,6281,crime,1138307249 +83470,6286,amnesia,1138039259 +83470,6288,gangs,1138307044 +83470,6289,Titanic,1138307085 +83470,6291,prostitution,1138039248 +83470,6296,mockumentary,1138039267 +83470,6297,children,1138307101 +83470,6299,birds,1138307384 +83470,6305,Ray Bradbury,1137181490 +83470,6308,lawyers,1137374834 +83470,6327,1970s,1138486479 +83470,6327,movies,1137200584 +83470,6331,spelling bee,1138039807 +83470,6333,Jean Grey,1137202706 +83470,6333,Magneto,1137202706 +83470,6333,Rogue,1137202706 +83470,6333,superhero,1137205082 +83470,6333,Wolverine,1137202706 +83470,6334,teachers,1138039540 +83470,6337,gambling,1138307244 +83470,6339,trains,1138307176 +83470,6341,art,1138307304 +83470,6350,anime,1138039543 +83470,6367,retro,1138039562 +83470,6368,movies,1138307051 +83470,6373,religion,1137375076 +83470,6375,In Netflix queue,1137200486 +83470,6375,They Might Be Giants,1137200486 +83470,6377,Disney,1138039593 +83470,6377,fish,1138039593 +83470,6378,heist,1138307128 +83470,6380,child abuse,1137205738 +83470,6385,Girl Power,1137202810 +83470,6390,Ninotchka remake,1138307320 +83470,6400,crime,1138307197 +83470,6407,Olympics,1137374882 +83470,6407,Tokyo,1137374882 +83470,6422,Civil War,1138039799 +83470,6440,movie business,1138307037 +83470,6452,In Netflix queue,1137201737 +83470,6454,Nazis,1138307204 +83470,6466,In Netflix queue,1137202027 +83470,6502,zombies,1137181462 +83470,6515,fugitive,1137206135 +83470,6516,In Netflix queue,1137202127 +83470,6535,politics,1137374839 +83470,6536,swashbuckler,1138307326 +83470,6539,swashbuckler,1138307257 +83470,6545,Dodie Smith,1137181524 +83470,6547,flood,1137375241 +83470,6552,immigration,1138039559 +83470,6565,horses,1138307288 +83470,6579,Japan,1138307236 +83470,6591,religion,1138039719 +83470,6592,marriage,1138039795 +83470,6603,Othello,1137375103 +83470,6609,Bible,1138307089 +83470,6620,cancer,1137205715 +83470,6636,road trip,1138307356 +83470,6639,blindness,1138307381 +83470,6650,family,1138039708 +83470,6650,multiple roles,1138039708 +83470,6650,murder,1138039708 +83470,6660,ballet,1138307265 +83470,6662,Clousseau,1137375266 +83470,6667,FBI,1138307378 +83470,6668,In Netflix queue,1137179689 +83470,6669,terminal illness,1138039639 +83470,6708,con men,1138307183 +83470,6708,fatherhood,1138307183 +83470,6710,vertriloquism,1138307069 +83470,6711,Japan,1138307143 +83470,6713,In Netflix queue,1137201914 +83470,6724,In Netflix queue,1137201684 +83470,6732,matchmaker,1137375130 +83470,6744,vampire,1137375236 +83470,6753,Animal movie,1138307295 +83470,6768,religion,1138039714 +83470,6770,adultery,1138307212 +83470,6770,terminal illness,1138307212 +83470,6773,biking,1138307369 +83470,6776,India,1137181544 +83470,6785,Lonesome Polecat,1137206059 +83470,6786,In Netflix queue,1137201845 +83470,6787,journalism,1138039529 +83470,6787,Watergate,1138039529 +83470,6788,pregnancy,1137374818 +83470,6791,Food,1137191312 +83470,6807,british comedy,1138307193 +83470,6810,domestic violence,1138307335 +83470,6820,werewolf,1138039608 +83470,6832,amnesia,1138307274 +83470,6849,Christmas,1137374871 +83470,6852,black and white,1138307125 +83470,6852,Capote,1138307125 +83470,6852,crime,1138307125 +83470,6852,death penalty,1138307125 +83470,6852,murder,1138307125 +83470,6856,biopic,1138039917 +83470,6863,school,1138307284 +83470,6867,trains,1138039811 +83470,6870,child abuse,1138307224 +83470,6870,kidnapping,1138307224 +83470,6874,martial arts,1138039672 +83470,6874,revenge,1138039672 +83470,6881,Thanksgiving,1137181567 +83470,6890,adolescence,1138039574 +83470,6890,violence in america,1138039574 +83470,6909,transplants,1138039587 +83470,6912,Rita Hayworth can dance!,1137179371 +83470,6918,India,1138039870 +83470,6932,journalism,1137181582 +83470,6936,christmas,1138039581 +83470,6944,remake,1137374824 +83470,6944,wedding,1137374824 +83470,6948,music business,1138039867 +83470,6948,rap,1138039867 +83470,6963,Amish,1137181478 +83470,6970,Hepburn and Tracy,1137521576 +83470,6979,Cold War,1138039874 +83470,6981,religion,1138039909 +83470,6984,Dickens,1138039822 +83470,6985,saint,1137206024 +83470,6993,family,1138039618 +83470,7013,good and evil,1137206020 +83470,7018,court,1137375276 +83470,7018,Scott Turow,1137375276 +83470,7023,In Netflix queue,1137179697 +83470,7025,In Netflix queue,1137179593 +83470,7049,Astaire and Rogers,1137784580 +83470,7050,Astaire and Rogers,1137784592 +83470,7053,Astaire and Rogers,1138039791 +83470,7055,Astaire and Rogers,1138039819 +83470,7059,horses,1138039728 +83470,7061,terminal illness,1138039554 +83470,7062,birds,1138039535 +83470,7062,prison,1138039535 +83470,7069,In Netflix queue,1137201628 +83470,7069,Shakespeare,1137201628 +83470,7070,cattle drive,1138039780 +83470,7071,In Netflix queue,1137201154 +83470,7073,Clousseau,1137375451 +83470,7079,disability,1137375406 +83470,7086,George Bernard Shaw,1137201703 +83470,7087,E.M. Forster,1138039751 +83470,7088,In Netflix queue,1137202031 +83470,7090,martial arts,1138039622 +83470,7091,Marx brothers,1138559500 +83470,7121,Hepburn and Tracy,1137181204 +83470,7132,Marx brothers,1138039735 +83470,7132,opera,1138039735 +83470,7139,immigrants,1138039653 +83470,7141,In Netflix queue,1137201569 +83470,7153,Tolkein,1137181217 +83470,7156,Vietnam,1138039601 +83470,7158,real estate,1137205933 +83470,7160,serial killer,1138039725 +83470,7162,Civil War,1138039548 +83470,7190,Charlotte Bronte,1140047502 +83470,7212,cross dressing,1138039664 +83470,7212,men in drag,1138039664 +83470,7217,amnesia,1137521621 +83470,7218,In Netflix queue,1137179905 +83470,7219,truckers,1138039826 +83470,7234,circus,1137206103 +83470,7256,mountain climbing,1138039857 +83470,7285,adolescence,1138039837 +83470,7301,priest,1137521429 +83470,7301,religion,1137521429 +83470,7318,religion,1138039757 +83470,7323,Cold War,1138039614 +83470,7361,memory,1137205808 +83470,7371,Grace,1137205800 +83470,7382,adolescence,1138039629 +83470,7382,crime,1138039629 +83470,7438,revenge,1137205948 +83470,7440,Holocaust,1142279175 +83470,7451,High School,1137205962 +83470,7479,World War II,1138039893 +83470,7493,multiple personalities,1138039850 +83470,7572,cancer,1137181595 +83470,7584,Hepburn and Tracy,1138039906 +83470,7584,marriage,1138039906 +83470,7614,Rogers and Hammerstein,1138040199 +83470,7618,biopic,1137201647 +83470,7618,In Netflix queue,1137201648 +83470,7619,blindness,1138040167 +83470,7619,deaf,1138040171 +83470,7646,Stephen King,1137374860 +83470,7649,space station,1138039958 +83470,7700,In Netflix queue,1137201116 +83470,7705,Hepburn and Tracy,1137521641 +83470,7705,sports,1137521641 +83470,7713,sexuality,1138040011 +83470,7714,King Arthur,1138039998 +83470,7728,adultery,1138040205 +83470,7748,In Netflix queue,1137202002 +83470,7766,MacBeth,1138040268 +83470,7789,terrorism,1138039932 +83470,7792,In Netflix queue,1137200939 +83470,7831,Nick and Nora Charles,1137201638 +83470,7832,Nick and Nora Charles,1137201717 +83470,7833,Nick and Nora Charles,1137201661 +83470,7834,Nick and Nora Charles,1137200666 +83470,7835,Nick and Nora Charles,1137201747 +83470,7924,In Netflix queue,1137201677 +83470,7926,In Netflix queue,1137179753 +83470,7932,Amtrak,1137271192 +83470,7932,Homeless,1137271192 +83470,7932,independent,1137271192 +83470,7932,New York,1137271192 +83470,7932,Sundance award winner,1137271191 +83470,7932,Train,1137271192 +83470,7934,psychology,1138040275 +83470,7981,police,1138040118 +83470,7983,show business,1138039989 +83470,8011,politics,1143998541 +83470,8014,In Netflix queue,1137200544 +83470,8019,remade,1138040062 +83470,8033,In Netflix queue,1137200492 +83470,8094,In Netflix queue,1137179631 +83470,8153,Van Gogh,1137375419 +83470,8167,swashbuckler,1138040004 +83470,8183,In Netflix queue,1137201001 +83470,8188,Not available from Netflix,1137179956 +83470,8190,In Netflix queue,1137201864 +83470,8191,Anne Boleyn,1138039949 +83470,8197,In Netflix queue,1137202144 +83470,8207,assassination,1138040067 +83470,8228,heist,1138040147 +83470,8235,Clock,1137202793 +83470,8266,Prince,1137375433 +83470,8275,In Netflix queue,1137201789 +83470,8337,military,1138039993 +83470,8338,convent,1138039973 +83470,8338,religion,1138039973 +83470,8341,Dickens,1137200651 +83470,8360,ogres,1138040236 +83470,8366,pregnancy,1138040220 +83470,8366,religion,1138040220 +83470,8368,Magic,1137202784 +83470,8368,Wizards,1137202784 +83470,8375,politics,1137375412 +83470,8376,high school,1138040176 +83470,8379,In Netflix queue,1137200899 +83470,8382,death,1137375392 +83470,8424,divorce,1138040077 +83470,8446,World War II,1137375442 +83470,8463,deafness,1138040133 +83470,8464,food,1138040254 +83470,8464,McDonalds,1138040254 +83470,8507,circus,1138040090 +83470,8530,Ireland,1138040071 +83470,8580,fairy tales,1137201021 +83470,8580,In Netflix queue,1137201021 +83470,8607,In Netflix queue,1137201077 +83470,8609,In Netflix queue,1137179727 +83470,8622,politics,1138040083 +83470,8622,terrorism,1138040083 +83470,8636,Doc Ock,1137202798 +83470,8638,generation X,1138039967 +83470,8645,drugs,1138040155 +83470,8645,immigrants,1138040155 +83470,8695,court,1137375369 +83470,8714,Cole Porter,1137375425 +83470,8754,Oscar (Best Actress),1142282521 +83470,8765,In Netflix queue,1137179707 +83470,8784,psychology,1138040105 +83470,8796,Rome,1137375385 +83470,8809,Australia,1138040052 +83470,8827,Stand Up,1138039969 +83470,8838,In Netflix queue,1137179758 +83470,8874,zombies,1138040225 +83470,8875,alcoholism,1138040042 +83470,8875,marriage,1138040042 +83470,8879,Agatha Christie,1145755135 +83470,8879,Oscar (Best Supporting Actress),1145755138 +83470,8879,train,1145755140 +83470,8880,disability,1138040162 +83470,8914,time travel,1138040211 +83470,8920,Oscar (Best Actress),1142282522 +83470,8938,parenthood,1138040262 +83470,8938,psychology,1138040262 +83470,8943,stage,1137375373 +83470,8949,wine,1138040242 +83470,8950,psychology,1138040138 +83470,8951,abortion,1138040272 +83470,8958,biopic,1138040214 +83470,8961,Disney,1138040115 +83470,8961,superhero,1138040115 +83470,8970,Peter Pan,1138040086 +83470,8979,Hearst,1137521449 +83470,8983,martial arts,1138040109 +83470,8998,In Netflix queue,1137179738 +83470,9018,journalism,1138040046 +83470,25753,gold,1139940948 +83470,25825,revenge,1137205843 +83470,25841,show business,1138040249 +83470,25855,In Netflix queue,1137179637 +83470,25865,In Netflix queue,1137201652 +83470,25886,made me cry,1137206038 +83470,25940,mirrors,1137521290 +83470,25952,In Netflix queue,1137179713 +83470,26085,Not available from Netflix,1137179665 +83470,26131,In Netflix queue,1137200982 +83470,26151,donkey,1145749895 +83470,26242,In Netflix queue,1137179570 +83470,26662,anime,1138040136 +83470,26776,In Netflix queue,1137179786 +83470,27731,In Netflix queue,1137201122 +83470,27741,In Netflix queue,1137179587 +83470,27790,religion,1138040326 +83470,27790,saints,1138040326 +83470,27820,Animal movie,1138040358 +83470,27820,camels,1138040358 +83470,27834,fatherhood,1138040348 +83470,27838,revenge,1137205953 +83470,27878,India,1138038974 +83470,27882,surfing,1139939407 +83470,30707,boxing,1138040320 +83470,30749,genocide,1137205917 +83470,30793,roald dahl,1138038979 +83470,30812,biopic,1138038949 +83470,30812,Howard Hughes,1138038949 +83470,30812,movie business,1138038949 +83470,30820,child abuse,1137206121 +83470,30822,busniess,1137205938 +83470,30850,Shakespeare,1137181555 +83470,31030,motherhood,1138040311 +83470,31437,orphans,1138040341 +83470,31658,06 Oscar Nominated Best Movie - Animation,1145451856 +83470,31658,In Netflix queue,1137201531 +83470,31903,marriage,1138040364 +83470,31923,In Netflix queue,1137200865 +83470,32160,In Netflix queue,1137179674 +83470,32371,In Netflix queue,1137202044 +83470,32582,birds,1138804206 +83470,32582,parrots,1138804206 +83470,32584,fatherhood,1138038959 +83470,33154,business,1137766122 +83470,33154,money,1137766122 +83470,33154,scandal,1137766123 +83470,33166,racism,1138038982 +83470,33493,space,1137206087 +83470,33493,space opera,1137206087 +83470,33660,boxing,1137201602 +83470,34271,hip hop,1141848751 +83470,34359,pregnancy,1138040301 +83470,34405,Firefly,1137181624 +83470,34437,In Netflix queue,1137179720 +83470,34482,In Netflix queue,1137202180 +83470,34528,pregnancy,1139693892 +83470,34542,Animal movie,1138039000 +83470,34542,bears,1138039000 +83470,35015,Animal movie,1137180081 +83470,35015,In Netflix queue,1137202200 +83470,36517,Africa,1139234947 +83470,36517,business,1139234947 +83470,36517,politics,1139234947 +83470,36527,mathematics,1137201998 +83470,36535,In Netflix queue,1137201162 +83470,37240,In Netflix queue,1138804230 +83470,37729,06 Oscar Nominated Best Movie - Animation,1139059938 +83470,37733,In Netflix queue,1137200955 +83470,37736,Dickens,1139940656 +83470,37741,Truman Capote,1142996187 +83470,38038,06 Oscar Nominated Best Movie - Animation,1139664190 +83470,38038,Aardman,1139664221 +83470,38061,In Netflix queue,1137179624 +83470,38886,divorce,1145451837 +83470,39234,courtroom drama,1140576326 +83470,39234,In Netflix queue,1137202089 +83470,39292,In Netflix queue,1137201595 +83470,39292,journalism,1137201595 +83470,39292,McCarthy hearings,1137201595 +83470,39292,Morrow,1137201595 +83470,40583,In Netflix queue,1137200527 +83470,40629,In Netflix queue,1137179797 +83470,40815,Magic,1137202776 +83470,40815,Wizards,1137202776 +83470,40819,Johnny Cash,1137200595 +83470,41566,C.S. Lewis,1137181617 +83470,41997,In Netflix queue,1137179603 +83470,42002,In Netflix queue,1137202150 +83470,42740,In Netflix queue,1138804237 +83474,110,action,1355157904 +83474,3147,emotional,1355157935 +83474,4993,Action,1355157816 +83474,4993,adventure,1355157827 +83474,4993,beautifully filmed,1355157817 +83474,4993,fantasy,1355157822 +83474,4993,high fantasy,1355157825 +83474,4993,magic,1355157819 +83474,5952,Action,1355157865 +83474,5952,adventure,1355157867 +83474,5952,fantasy,1355157868 +83474,7153,adventure,1355157882 +83474,7153,atmospheric,1355157884 +83474,7153,fantasy,1355157880 +83487,260,philosophy,1434524505 +83487,260,space adventure,1434524493 +83502,89759,courtroom drama,1378284005 +83559,296,good dialogue,1436113483 +83559,296,royal with cheese,1436113483 +83559,296,violence,1436113483 +83559,4993,fantasy,1436113221 +83559,4993,Oscar (Best Effects - Visual Effects),1436113243 +83559,117533,edward snowden,1436113401 +83610,47,serial killer,1146940384 +83610,288,Owned,1146344266 +83610,1203,huis-clos,1146500508 +83610,1203,masterpiece,1146500457 +83610,1203,one against all,1146500508 +83610,1252,Film Noir,1165869605 +83610,1252,Los Angeles,1165869585 +83610,2167,vampire,1184175752 +83610,2671,dumb chick flick,1145220987 +83610,5254,vampire,1184175757 +83610,6711,Japan,1146518108 +83610,6711,lost,1146518123 +83610,8957,serial killer,1231595705 +83610,8985,vampire,1184175760 +83610,44199,bank robbery,1145599288 +83610,45447,bullshit history,1149979005 +83615,32,bruce willis,1446778476 +83615,32,great ending,1446778467 +83615,32,Terry Gilliam,1446778454 +83615,32,time loop,1446778494 +83615,32,time travel,1446778446 +83615,32,twist ending,1446778450 +83615,32,violence,1446778484 +83615,318,friendship,1446778579 +83615,318,great ending,1446778601 +83615,318,powerful ending,1446778593 +83615,318,prison escape,1446778575 +83615,318,thought-provoking,1446778572 +83615,1704,excellent script,1446778538 +83615,1704,feel-good,1446778530 +83615,1704,intellectual,1446778540 +83615,1704,mathematics,1446778526 +83615,1704,Matt Damon,1446778523 +83615,1704,Robin Williams,1446778551 +83635,1252,Incest,1138305178 +83668,25,atmospheric,1439776873 +83668,25,dark,1439776881 +83668,25,drama,1439776877 +83668,150,astronauts,1439775760 +83668,150,historical,1439775754 +83668,150,History,1439775747 +83668,150,space,1439775740 +83668,150,suspense,1439775749 +83668,260,classic,1439765117 +83668,260,sci-fi,1439765109 +83668,260,space,1439765135 +83668,266,Anthony Hopkins,1439778531 +83668,266,Brad Pitt,1439778529 +83668,266,emotional,1439778532 +83668,293,touching,1450024328 +83668,296,atmospheric,1450022677 +83668,296,dark comedy,1450022658 +83668,296,multiple storylines,1450022671 +83668,296,nonlinear,1450022660 +83668,296,Quentin Tarantino,1450022661 +83668,296,Samuel L. Jackson,1450022665 +83668,296,stylized,1450022679 +83668,356,too long,1450023339 +83668,367,Cameron Diaz,1450023268 +83668,367,comedy,1450023262 +83668,648,Brian De Palma,1450023649 +83668,648,plot twists,1450023658 +83668,648,spies,1450023646 +83668,648,Tom Cruise,1450023651 +83668,741,artificial intelligence,1450024098 +83668,741,complex,1450024092 +83668,741,cyberpunk,1450024084 +83668,741,philosophical,1450024086 +83668,741,sci-fi,1450024089 +83668,778,black comedy,1450024767 +83668,778,dark comedy,1450024774 +83668,780,alien invasion,1450023492 +83668,1059,Amazing Cinematography,1439818108 +83668,1059,colourful,1439818104 +83668,1172,bittersweet,1450023921 +83668,1172,nostalgic,1450023919 +83668,1172,reflective,1450023928 +83668,1206,dystopia,1450024528 +83668,1206,psychological,1450024539 +83668,1206,psychology,1450024526 +83668,1206,social commentary,1450024541 +83668,1206,stanley kubrick,1450024530 +83668,1206,stylized,1450024536 +83668,1206,Surrealism,1450024534 +83668,1214,atmospheric,1450024269 +83668,1214,dark,1450024287 +83668,1214,futuristic,1450024275 +83668,1214,Ridley Scott,1450024278 +83668,1214,sci-fi,1450024284 +83668,1214,space,1450024266 +83668,1214,space travel,1450024276 +83668,1214,thriller,1450024281 +83668,1225,biography,1450023435 +83668,1225,classical music,1450023431 +83668,1225,history,1450023440 +83668,1225,true story,1450023436 +83668,1517,Elizabeth Hurley,1439778653 +83668,1517,funny,1439778658 +83668,1517,Mike Myers,1439778656 +83668,1527,action,1439776788 +83668,1527,aliens,1439776780 +83668,1527,dystopia,1439776775 +83668,1527,futuristic,1439776777 +83668,1527,satirical,1439776772 +83668,1527,sci-fi,1439776769 +83668,1527,surreal,1439776782 +83668,1645,psychological,1439777388 +83668,1645,psychology,1439777386 +83668,1645,surreal,1439777391 +83668,1645,twist ending,1439777394 +83668,1682,dark comedy,1450023214 +83668,1682,Jim Carrey,1450023225 +83668,1682,philosophy,1450023220 +83668,1682,social commentary,1450023217 +83668,2329,edward norton,1439777652 +83668,2329,politics,1439777659 +83668,2329,social commentary,1439777665 +83668,2329,thought-provoking,1439777653 +83668,2858,black comedy,1439765854 +83668,2858,dark comedy,1439765856 +83668,2858,social commentary,1450024495 +83668,2858,surrealism,1450024496 +83668,2890,black comedy,1439777741 +83668,2959,atmospheric,1450024577 +83668,2959,Brad Pitt,1450024568 +83668,2959,complicated,1450024588 +83668,2959,dark comedy,1450024570 +83668,2959,David Fincher,1450024584 +83668,2959,Edward Norton,1450024567 +83668,2959,philosophy,1450024574 +83668,2959,powerful ending,1450024580 +83668,2959,psychology,1450024590 +83668,2959,social commentary,1450024572 +83668,2959,surreal,1450024594 +83668,2959,twist ending,1450024592 +83668,3156,future,1450022797 +83668,3156,Isaac Asimov,1450022795 +83668,3156,philosophical,1450022804 +83668,3156,robots,1450022799 +83668,3156,sci-fi,1450022801 +83668,3186,Angelina Jolie,1439818245 +83668,3186,psychology,1439818242 +83668,3408,strong female lead,1450022425 +83668,3578,historical,1450022371 +83668,3578,history,1450022386 +83668,3578,Ridley Scott,1450022375 +83668,3578,Russell Crowe,1450022365 +83668,3578,sword fight,1450022368 +83668,3755,disaster,1439778442 +83668,3755,ocean,1439778441 +83668,4011,brad pitt,1439765648 +83668,4011,cynical,1439765658 +83668,4011,dark comedy,1439765656 +83668,4011,dark humor,1439765670 +83668,4011,multiple storylines,1439765680 +83668,4011,twist ending,1450022628 +83668,4226,complicated,1439776426 +83668,4226,mystery,1439776422 +83668,4226,nonlinear,1439776414 +83668,4226,psychology,1439776418 +83668,4226,twist ending,1439776415 +83668,4226,twists & turns,1439776432 +83668,4308,colourful,1439779284 +83668,4308,dramatic,1439779289 +83668,4308,stylized,1439779286 +83668,4367,adventure,1439778141 +83668,4367,Angelina Jolie,1439778139 +83668,4367,sexy,1439778144 +83668,4699,Angelina Jolie,1439778248 +83668,4720,atmospheric,1439817732 +83668,4720,Nicole Kidman,1439817727 +83668,4720,twist ending,1439817729 +83668,4963,Brad Pitt,1439776065 +83668,4963,crime,1439776073 +83668,4963,plot twist,1439776079 +83668,4963,witty,1439776075 +83668,5010,brutal,1439778340 +83668,5010,heroism,1439778343 +83668,5418,action,1439779215 +83668,5418,conspiracy,1439779222 +83668,5418,mystery,1439779226 +83668,5418,spy,1439779216 +83668,5418,thriller,1439779218 +83668,5445,artificial intelligence,1439776328 +83668,5445,dystopia,1439776320 +83668,5445,future,1439776335 +83668,5445,futuristic,1439776325 +83668,5445,mystery,1439776327 +83668,5445,sci-fi,1439776323 +83668,5445,surreal,1439776333 +83668,5445,time loop,1439776338 +83668,5445,time travel,1439776331 +83668,5809,action,1439777525 +83668,5956,action,1439776469 +83668,5956,Cameron Diaz,1439776467 +83668,5956,gangsters,1439776479 +83668,5956,Leonardo DiCaprio,1439776474 +83668,5956,Martin Scorsese,1439776472 +83668,5989,based on a book,1439777228 +83668,5989,con artists,1439777226 +83668,5989,Leonardo DiCaprio,1439777219 +83668,5989,smart,1439777233 +83668,5989,true story,1439777221 +83668,5989,twists & turns,1439777223 +83668,6213,war,1440370054 +83668,6539,action,1439776161 +83668,6539,fantasy,1439776164 +83668,6539,johnny depp,1439776154 +83668,6539,keira knightley,1439776159 +83668,6539,magic,1439776167 +83668,6539,pirates,1439776152 +83668,6539,sword fight,1439776156 +83668,6711,reflective,1439777946 +83668,6711,Scarlett Johansson,1439777936 +83668,6874,dark hero,1450022705 +83668,6874,Quentin Tarantino,1450022697 +83668,6874,strong female lead,1450022720 +83668,6874,stylized,1450022700 +83668,6934,cyberpunk,1439775645 +83668,6934,dystopia,1439775647 +83668,6934,post-apocalyptic,1439775650 +83668,6934,robots,1439775669 +83668,6934,sci-fi,1439775641 +83668,7143,heroism,1450022566 +83668,7143,historical,1450022569 +83668,7143,martial arts,1450022554 +83668,7143,samurai,1450022556 +83668,7143,sword fight,1450022563 +83668,7143,Tom Cruise,1450022559 +83668,7153,Adventure,1439775458 +83668,7153,based on a book,1439775465 +83668,7153,epic,1439775478 +83668,7153,fantasy,1439775460 +83668,7153,high fantasy,1439775468 +83668,7153,magic,1439775457 +83668,7153,mythology,1439775475 +83668,7254,alternate reality,1439777441 +83668,7254,psychology,1439777444 +83668,7254,sci-fi,1439777446 +83668,7254,suspense,1439777450 +83668,7254,time travel,1439777447 +83668,7438,action,1439776567 +83668,7438,atmospheric,1439776574 +83668,7438,martial arts,1439776580 +83668,7438,Quentin Tarantino,1439776561 +83668,7438,twist ending,1439776570 +83668,7438,visually appealing,1439776572 +83668,7458,Brad Pitt,1450022593 +83668,7458,historical epic,1450022602 +83668,8644,artificial intelligence,1439775564 +83668,8644,dystopia,1439775561 +83668,8644,futuristic,1439775554 +83668,8644,Isaac Asimov,1439775556 +83668,8644,robots,1439775549 +83668,8644,sci-fi,1439775551 +83668,8984,Brad Pitt,1439776107 +83668,27020,Angelina Jolie,1439818427 +83668,33679,Action,1439778181 +83668,33679,Angelina Jolie,1439778170 +83668,33679,Brad Pitt,1439778171 +83668,33679,funny,1439778175 +83668,33679,spies,1439778179 +83668,33794,action,1439776278 +83668,33794,dark,1439776283 +83668,33794,vigilante,1439776280 +83668,34405,action,1439818066 +83668,34405,adventure,1439818070 +83668,34405,dystopia,1439818059 +83668,34405,sci-fi,1439818055 +83668,34405,social commentary,1439818075 +83668,34405,space,1439818053 +83668,34405,witty,1439818057 +83668,41569,adventure,1439779766 +83668,41569,CGI,1439779770 +83668,41569,Naomi Watts,1439779760 +83668,44191,comic book,1439777107 +83668,44191,dark,1439777108 +83668,44191,dystopia,1439777101 +83668,44191,philosophical,1439777124 +83668,44191,philosophy,1439777113 +83668,44191,politics,1439777110 +83668,44191,social commentary,1439777104 +83668,44191,thought-provoking,1439777099 +83668,44199,Denzel Washington,1450022141 +83668,44199,good story,1450022157 +83668,44199,intelligent thriller,1450022149 +83668,44199,Jodie Foster,1450022143 +83668,44199,twist ending,1450022151 +83668,45186,Tom Cruise,1450023686 +83668,45186,unrealistic,1450023690 +83668,45722,Johnny Depp,1439776202 +83668,45722,Keira Knightley,1439776205 +83668,45722,pirates,1439776204 +83668,47099,courage,1450024017 +83668,47099,earnest,1450024024 +83668,47099,inspirational,1450024013 +83668,47099,Will Smith,1450024004 +83668,48516,Jack Nicholson,1450022190 +83668,48516,Leonardo DiCaprio,1450022188 +83668,48516,Martin Scorsese,1450022187 +83668,48516,psychology,1450022200 +83668,48516,suspense,1450022193 +83668,48516,twist ending,1450022198 +83668,51662,action,1450022524 +83668,51662,epic adventure,1450022539 +83668,51662,historical,1450022534 +83668,51662,sword fight,1450022526 +83668,53322,Brad Pitt,1439776131 +83668,53996,Megan Fox,1439779502 +83668,53996,Michael Bay,1439779506 +83668,53996,teen,1439779513 +83668,55247,atmospheric,1450024147 +83668,55247,psychology,1450024149 +83668,55247,road trip,1450024151 +83668,55820,suspense,1450025078 +83668,55820,thriller,1450025081 +83668,56171,fantasy world,1450025827 +83668,56171,magic,1450025823 +83668,56171,Nicole Kidman,1450025829 +83668,56171,steampunk,1450025833 +83668,56757,dark comedy,1450023002 +83668,56757,Helena Bonham Carter,1450023017 +83668,56757,Johnny Depp,1450023000 +83668,56757,Tim Burton,1450022998 +83668,56757,visually appealing,1450023005 +83668,59037,visually stunning,1439778579 +83668,60069,artificial intelligence,1439777294 +83668,60069,dystopia,1439777283 +83668,60069,post-apocalyptic,1439777296 +83668,60069,robots,1439777280 +83668,60069,Sci-Fi,1439777287 +83668,60069,social commentary,1439777285 +83668,60069,space,1439777303 +83668,60072,action,1439818465 +83668,60072,Angelina Jolie,1439818461 +83668,60072,plot twist,1439818478 +83668,60072,stylish,1439818468 +83668,64957,Brad Pitt,1439778091 +83668,64957,cinematography,1439778089 +83668,64957,emotional,1439778097 +83668,64957,philosophical,1439778099 +83668,72998,aliens,1439776617 +83668,72998,beautiful,1439776628 +83668,72998,beautiful scenery,1439776619 +83668,72998,futuristic,1439776612 +83668,72998,sci-fi,1439776614 +83668,72998,science fiction,1439776631 +83668,74789,alternate reality,1439818200 +83668,74789,beautiful,1439818186 +83668,74789,fantasy,1439818181 +83668,74789,Johnny Depp,1439818173 +83668,74789,Tim Burton,1439818174 +83668,74789,visually appealing,1439818177 +83668,74789,visuals,1439818184 +83668,74789,weird,1439818179 +83668,79132,action,1439776380 +83668,79132,alternate reality,1439776362 +83668,79132,dreams,1439776370 +83668,79132,intellectual,1439776373 +83668,79132,Leonardo DiCaprio,1439776368 +83668,79132,psychological,1439776388 +83668,79132,sci-fi,1439776377 +83668,79132,surreal,1439776364 +83668,79132,suspense,1439776398 +83668,79132,thought-provoking,1439776367 +83668,79132,thriller,1439776390 +83668,79132,twist ending,1439776393 +83668,79132,visually appealing,1439776375 +83668,86332,action,1439779547 +83668,86332,mythology,1439779541 +83668,86332,superhero,1439779543 +83668,88744,action,1439777044 +83668,88744,genetics,1439777050 +83668,88744,sci-fi,1439777047 +83668,88744,thought-provoking,1439777042 +83668,91500,implausible,1450026074 +83668,91500,unrealistic,1450026066 +83668,91529,superhero,1439765564 +83668,91630,action,1439765745 +83668,91658,explicit,1439776970 +83668,91658,rape,1439776937 +83668,94864,aliens,1439776683 +83668,94864,sci-fi,1439776685 +83668,94864,space travel,1439776698 +83668,94864,technology,1439776690 +83668,97938,cinematography,1439778068 +83668,97938,emotional,1439778028 +83668,97938,surreal,1439778030 +83668,97938,visual effects,1439778034 +83668,97938,wisdom,1439778049 +83668,99114,action,1439776515 +83668,99114,Leonardo DiCaprio,1439776506 +83668,99114,Quentin Tarantino,1439776508 +83668,99114,visually appealing,1439776524 +83668,99114,western,1439776513 +83668,101864,adventure,1439776740 +83668,101864,atmospheric,1439776730 +83668,101864,future,1439776745 +83668,101864,interesting concept,1439776737 +83668,101864,post-apocalyptic,1439776727 +83668,101864,sci-fi,1439776725 +83668,101864,space,1439776742 +83668,101864,technology,1439776733 +83668,101864,twists & turns,1439776747 +83668,106002,aliens,1439775948 +83668,106002,based on a book,1439775945 +83668,106002,space,1439775947 +83668,106002,twist ending,1439775953 +83668,106782,Amoral,1439777788 +83668,106782,Leonardo DiCaprio,1439777774 +83668,110730,artificial intelligence,1450022825 +83668,110730,Johnny Depp,1450022827 +83668,110730,Morgan Freeman,1450022830 +83668,111659,Angelina Jolie,1439818158 +83668,111659,visual effects,1439818160 +83668,116797,code breaking,1439765508 +83668,116797,cryptography,1439765494 +83668,116797,history,1439765511 +83668,116797,informatics,1439765517 +83668,116797,Keira Knightley,1439765521 +83668,116797,mathematics,1439765505 +83668,116797,World War II,1439765503 +83668,117881,drama,1439817641 +83668,117881,Julianne Moore,1439817638 +83682,5630,Edward Norton,1194723185 +83682,52281,Dialogue<3,1194649895 +83682,52281,Sexy ladies,1194649856 +83682,54503,Superbad,1197320547 +83685,58291,college boys,1424607083 +83685,58291,comedy,1424607083 +83685,58291,romance,1424607083 +83685,74458,Leonardo DiCaprio,1389562425 +83685,106782,based on a true story,1389897750 +83685,106782,Leonardo DiCaprio,1389897723 +83685,106782,Martin Scorsese,1389897729 +83700,541,Harrison Ford,1185743031 +83700,541,Ridley Scott,1185743021 +83700,608,"""Oh Yah""",1185743495 +83700,608,Coen Brothers,1185743474 +83700,608,Minnesota,1185743480 +83700,750,Precious Bodily Fluids,1185742683 +83700,1129,John Carpenter,1176576099 +83700,1199,Ducts,1185742775 +83700,1199,Terry Gilliam,1185742734 +83700,1201,Spaghetti Western,1177272452 +83700,1206,Beethoven,1185742193 +83700,1214,Ridley Scott,1185743058 +83700,1258,Stanley Kubrick,1185743189 +83700,1270,Time Travel,1185742819 +83700,1297,Popcorn,1177528243 +83700,1969,homoerotic subtext,1223384194 +83700,2716,Proton Pack,1185742578 +83700,2716,Stay Puft Marshmallow Man,1185742568 +83700,3223,decay,1190655934 +83700,3223,symmetry,1190656000 +83700,3223,time-lapse,1190655980 +83700,3421,Toga Party,1185742920 +83700,3552,Gopher,1185743108 +83700,3930,3-D,1193686645 +83700,4226,Anterograde Amnesia,1185742413 +83700,64839,Character study,1243954220 +83700,64839,Darren Aronofsky,1243954212 +83700,64839,identity crisis,1243954238 +83714,47,serial killer,1156990269 +83714,296,stylish,1156990427 +83714,296,violence,1156990427 +83714,1080,humor,1156990454 +83714,1080,Monty Python,1156990450 +83714,1080,religion,1156990448 +83714,1208,classic,1156990720 +83714,1208,war,1156990718 +83714,1222,wartime,1156990293 +83714,1320,70mm,1156990049 +83714,1320,prequel,1156990051 +83714,2100,girlie movie,1156990043 +83714,2571,sci-fi,1156990277 +83714,2959,violence,1156990366 +83714,2997,surreal,1156990438 +83714,4105,zombies,1156990378 +83714,4720,ghosts,1156990512 +83714,4720,twist ending,1156990514 +83714,4973,modern fantasy,1156990351 +83714,4973,Paris,1156990335 +83714,4973,romance,1156990333 +83714,5618,anime,1156990308 +83714,5618,children,1156990322 +83714,5618,fantasy,1156990322 +83714,6807,Monty Python,1156990261 +83714,7147,modern fantasy,1156990481 +83714,7147,surrealism,1156990481 +83714,7361,memory,1156990498 +83714,7361,modern fantasy,1156990498 +83714,7361,surreal,1156990486 +83714,26776,anime,1156990387 +83734,1147,sports,1369950625 +83734,2871,gritty,1369952383 +83734,2871,psychology,1369952399 +83734,2871,seventies,1369952383 +83734,2871,suspense,1369952389 +83734,2871,very little dialogue,1369952383 +83734,3535,dark comedy,1370556724 +83734,3535,insanity,1370556734 +83734,3535,psychology,1370556724 +83738,90376,artificial,1350849930 +83738,90376,cold,1350849916 +83738,133399,crowdfunding,1431424450 +83738,133399,german underground cinema,1431424465 +83738,133399,horror,1431424437 +83738,133399,surreal,1431424422 +83738,141630,commin of age,1450779688 +83738,141630,Dylan Thomas poems,1450779742 +83738,141630,first love,1450779805 +83738,141630,peer group pressure,1450779852 +83738,141630,small town mistery,1450779786 +83738,141630,teen angst,1450779705 +83738,141630,the virgin suicides,1450779719 +83739,26131,In Netflix queue,1148235373 +83744,3910,want to see again,1150894495 +83753,356,comedy,1453825850 +83753,356,Oscar (Best Actor),1453825868 +83753,953,Christmas,1453825992 +83753,953,family,1453826000 +83753,953,James Stewart,1453826011 +83757,475,very moving,1187462190 +83757,1343,seriously scary,1187462167 +83757,1729,excellent characters,1187462070 +83757,1747,frightfully accurate political commentary,1187462119 +83757,2424,how could you not like this?,1187462145 +83783,593,crime,1420622545 +83783,593,great acting,1420622545 +83783,593,psychothriller,1420622545 +83784,2028,Tom Hanks,1423666531 +83784,2324,Oscar (Best Foreign Language Film),1423666590 +83785,260,OK,1437976593 +83785,260,space adventure,1437976574 +83785,356,funny,1437976845 +83785,356,inspiring,1437976845 +83785,356,uplifting,1437976845 +83830,260,classic,1437766361 +83830,260,sci-fi,1437766348 +83830,260,space,1437766356 +83837,260,A good one time watch,1440494629 +83837,260,sci-fi,1440495390 +83837,260,starwars,1440494645 +83844,1,Pixar,1268630966 +83844,1,Tom Hanks,1268630966 +83844,261,Christian Bale,1268629161 +83844,261,romance,1268629161 +83844,261,Winona Ryder,1268629161 +83844,356,soundtrack,1268629742 +83844,356,Tom Hanks,1268629742 +83844,364,Disney,1268632599 +83844,524,Sean Astin,1268629438 +83844,551,Danny Elfman score,1268632430 +83844,551,musical,1268632430 +83844,551,Tim Burton,1268632430 +83844,585,comedy,1268632140 +83844,585,parody,1268632140 +83844,588,Disney,1268632500 +83844,594,classic,1268787235 +83844,594,Disney,1268787235 +83844,595,Disney,1268787159 +83844,596,Disney,1268632732 +83844,616,cats,1268629505 +83844,616,Disney,1268629505 +83844,616,stereotypes,1268629505 +83844,910,classic comedy,1268629057 +83844,910,cross dressing,1268629057 +83844,910,Jack Lemmon,1268629057 +83844,919,classic,1268632576 +83844,919,Judy Garland,1268632576 +83844,919,musical,1268632576 +83844,1028,Dick van Dyke,1268630749 +83844,1028,Disney,1268630750 +83844,1028,Julie Andrews,1268630749 +83844,1028,musical,1268630749 +83844,1029,Disney,1268787365 +83844,1035,Julie Andrews,1268630723 +83844,1035,musical,1268630723 +83844,1042,satire,1268628982 +83844,1042,soundtrack,1268628982 +83844,1042,The Beatles,1268628982 +83844,1042,Tom Hanks,1268628982 +83844,1073,Classic,1268632878 +83844,1083,comedy,1268631220 +83844,1083,Epic pie fight,1268631220 +83844,1083,Jack Lemmon,1268631220 +83844,1083,really long,1268631220 +83844,1270,classic,1268631924 +83844,1270,Michael J. Fox,1268631924 +83844,1345,high school,1268632098 +83844,1345,horror,1268632098 +83844,1345,Stephen King,1268632098 +83844,1380,musical,1268632062 +83844,1907,Disney,1268632704 +83844,2080,Disney,1268787354 +83844,2081,Disney,1268632047 +83844,2087,Disney,1268632030 +83844,2087,Peter Pan,1268632030 +83844,2099,classic,1268633208 +83844,2099,Disney,1268633208 +83844,2099,hard to find,1268633208 +83844,2099,racism,1268633208 +83844,2291,Johnny Depp,1268632016 +83844,2291,modern fantasy,1268632016 +83844,2291,Tim Burton,1268632016 +83844,2565,musical,1268629562 +83844,2565,Yul Brynner,1268629562 +83844,2572,comedy,1268631990 +83844,2572,Heath Ledger,1268631990 +83844,2572,high school,1268631990 +83844,2572,Joseph Gordon-Levitt,1268631990 +83844,2572,romance,1268631990 +83844,2581,chick flick,1268629457 +83844,2581,Drew Barrymore,1268629457 +83844,2581,high school,1268629457 +83844,2746,dark comedy,1268787507 +83844,2746,musical,1268787507 +83844,2863,classic,1268630353 +83844,2863,comedy,1268630353 +83844,2863,The Beatles,1268630353 +83844,3363,classic,1268629314 +83844,3363,coming of age,1268629314 +83844,3363,rock and roll,1268629314 +83844,3363,soundtrack,1268629314 +83844,3398,Muppets,1268632175 +83844,3786,Clea DuVall,1268629586 +83844,3786,coming of age,1268629586 +83844,3786,lesbian,1268629586 +83844,3786,satire,1268629586 +83844,4027,adventure,1268632634 +83844,4027,comedy,1268632634 +83844,4027,George Clooney,1268632635 +83844,4299,comedy,1268630192 +83844,4299,Heath Ledger,1268630113 +83844,4299,Paul Bettany,1268630113 +83844,4308,Ewan McGregor,1268631958 +83844,4308,musical,1268631958 +83844,4308,Nicole Kidman,1268631958 +83844,4700,Anne Hathaway,1268630791 +83844,4700,coming of age,1268630792 +83844,4700,Julie Andrews,1268630792 +83844,4995,Paul Bettany,1268630006 +83844,5991,Catherine Zeta-Jones,1268629285 +83844,5991,musical,1268629285 +83844,5991,Renee Zellweger,1268629285 +83844,5991,Richard Gere,1268629285 +83844,6377,Pixar,1268630997 +83844,6539,Disney,1268787137 +83844,6539,Johnny Depp,1268787137 +83844,6539,pirates,1268787137 +83844,7247,Child Catcher is freaky,1268632868 +83844,7247,Dick Van Dyke,1268632868 +83844,7698,Jack Lemmon,1268631158 +83844,27871,Alan Rickman,1268629550 +83844,27871,Mos Def,1268629550 +83844,38061,dark comedy,1268629203 +83844,38061,good dialogue,1268629203 +83844,38061,Robert Downey Jr,1268629203 +83844,38061,satire,1268629203 +83844,38061,Val Kilmer,1268629203 +83844,40826,Anthony Rapp,1268787556 +83844,40826,musical,1268787556 +83844,45028,musical,1268787379 +83844,46772,Amy Sedaris,1268629423 +83844,46772,dark comedy,1268629423 +83844,46772,Gay Character,1268629423 +83844,46772,Paul Dinello,1268629423 +83844,46772,satire,1268629423 +83844,46772,Stephen Colbert,1268629423 +83844,50872,Pixar,1268631011 +83844,52975,comedy,1268632489 +83844,52975,high school,1268632489 +83844,52975,musical,1268632489 +83844,54190,Jim Sturgess,1268787493 +83844,54190,musical,1268787493 +83844,54190,The Beatles,1268787493 +83844,55872,Freddie Highmore,1268787535 +83844,56152,Amy Adams,1268632690 +83844,56152,Disney,1268632690 +83844,56152,musical,1268632690 +83844,56152,self-parody,1268632690 +83844,56757,Alan Rickman,1268633268 +83844,56757,dark comedy,1268633268 +83844,56757,Helena Bonham Carter,1268633268 +83844,56757,Johnny Depp,1268633268 +83844,56757,musical,1268633268 +83844,56757,Tim Burton,1268633268 +83844,56757,Timothy Spall,1268633268 +83844,58347,Christina Ricci,1268629092 +83844,58347,James McAvoy,1268629092 +83844,58347,modern fantasy,1268629092 +83844,58347,Peter Dinklage,1268629092 +83844,60397,ABBA,1268787582 +83844,60397,Meryl Streep,1268787582 +83844,60397,musical,1268787582 +83844,66934,good dialogue,1268629234 +83844,66934,Joss Whedon,1268629234 +83844,66934,musical,1268629234 +83844,66934,Neil Patrick Harris,1268629234 +83844,68157,Christoph Waltz,1268787017 +83844,69757,Joseph Gordon-Levitt,1268629353 +83844,69757,Zooey Deschanel,1268629353 +83844,72737,Disney,1268631067 +83844,72737,Dr. Facilier,1268631067 +83844,72737,Prince Naveen,1268631067 +83844,72737,Tiana,1268631074 +83844,73017,Jude Law,1268786898 +83844,73017,Robert Downey Jr.,1268786889 +83844,73017,Soundtrack,1268786908 +83855,47,Morgan Freeman,1243963242 +83855,47,twist ending,1243963245 +83855,50,Kevin Spacey,1243963146 +83855,50,mindfuck,1243963150 +83855,50,twist ending,1243963154 +83855,161,Denzel Washington,1243964471 +83855,161,Gene Hackman,1243964485 +83855,161,Viggo Mortensen,1243964473 +83855,208,apocalypse,1243962910 +83855,208,Dennis Hopper,1243962917 +83855,208,Kevin Costner,1243962913 +83855,208,stupid,1243962927 +83855,293,Gary Oldman,1243963266 +83855,293,Jean Reno,1243963261 +83855,293,Natalie Portman,1243963262 +83855,318,Stephen King,1243963851 +83855,377,Action,1243964407 +83855,377,Dennis Hopper,1243964393 +83855,377,Sandra Bullock,1243964399 +83855,589,Arnold Schwarzenegger,1243964577 +83855,589,future,1243964584 +83855,589,robots,1243964582 +83855,590,Kevin Costner,1243965477 +83855,593,Anthony Hopkins,1243963117 +83855,593,Hannibal Lecter,1243963123 +83855,593,serial killer,1243963119 +83855,733,Ed Harris,1243964424 +83855,733,Hans Zimmer,1243964439 +83855,733,Nicolas Cage,1243964430 +83855,733,Sean Connery,1243964426 +83855,750,black comedy,1243963999 +83855,750,Peter Sellers,1243964033 +83855,750,satire,1243963996 +83855,750,Stanley Kubrick,1243963994 +83855,858,Al Pacino,1243963868 +83855,858,Francis Ford Coppola,1243963906 +83855,858,Marlon Brando,1243963875 +83855,858,robert de niro,1243963884 +83855,1036,Bruce Willis,1243964559 +83855,1036,humorous,1243964561 +83855,1208,disturbing,1243963984 +83855,1208,Francis Ford Coppola,1243963969 +83855,1208,Vietnam war,1243963975 +83855,1562,Bad one liners,1243962953 +83855,1562,George Clooney,1243962960 +83855,1610,MIND GAMES,1243964541 +83855,1610,Sean Connery,1243964533 +83855,1610,Tom Clancy,1243964544 +83855,2571,atmospheric,1243964613 +83855,2571,cult film,1243965687 +83855,2571,post apocalyptic,1243964604 +83855,2571,scifi cult,1243965677 +83855,2959,Edward Norton,1243963225 +83855,2959,psychology,1243963215 +83855,2959,TERRORISM,1243963221 +83855,2959,twist ending,1243963217 +83855,3033,Mel Brooks,1243965728 +83855,3033,parody,1243965725 +83855,3033,scifi cult,1243965734 +83855,3256,Harrison Ford,1243964499 +83855,3256,jack ryan,1243964502 +83855,3256,Sean Bean,1243964505 +83855,3256,Tom Clancy,1243964497 +83855,3267,directorial debut,1243965284 +83855,3267,low budget,1243965272 +83855,3527,Arnold Schwarzenegger,1243965571 +83855,3527,scifi cult,1243965574 +83855,4226,Mindfuck,1243963179 +83855,4226,nonlinear,1243963174 +83855,4226,twist ending,1243963176 +83855,5418,cia,1243963784 +83855,5418,espionage,1243963778 +83855,5418,Matt Damon,1243963773 +83855,5418,Robert Ludlum,1243963776 +83855,5782,Jean-Paul Belmondo,1243963291 +83855,5903,Christian Bale,1243965811 +83855,6662,Inspector Clouseau (series),1243964082 +83855,6662,Peter Sellers,1243964085 +83855,6711,atmospheric,1243963054 +83855,6711,Bill Murray,1243963020 +83855,6711,bittersweet,1243963069 +83855,6711,Japan,1243963056 +83855,8665,Franka Potente,1243963803 +83855,8665,Matt Damon,1243963797 +83855,8665,Robert Ludlum,1243963799 +83855,8874,black comedy,1243965347 +83855,8874,zombies,1243965354 +83855,26285,John Carpenter,1243965608 +83855,26285,scifi cult,1243965606 +83855,26614,Richard Chamberlain,1243963759 +83855,33794,atmospheric,1243963523 +83855,33794,Christian Bale,1243963525 +83855,49272,007,1243963549 +83855,49272,Daniel Craig,1243963567 +83855,49272,James Bond,1243963547 +83855,54286,action,1243963682 +83855,54286,conspiracy,1243963732 +83855,54286,espionage,1243963686 +83855,54286,Matt Damon,1243963691 +83855,54286,Robert Ludlum,1243963688 +83855,54286,twist ending,1243963732 +83855,58559,Christian Bale,1243963389 +83855,58559,gritty,1243963394 +83855,58559,Heath Ledger,1243963385 +83855,59615,Harrison Ford,1243965441 +83855,59615,indiana jones,1243965434 +83855,59615,ridiculous end,1243965421 +83855,59615,silly,1243965426 +83899,27729,Humour,1433872910 +83899,27729,Relentless Pure Love,1433872902 +83899,27729,Shah Rukh Khan,1433872891 +83899,109487,christopher nolan,1433873536 +83899,109487,great concept,1433873536 +83899,109487,love,1433873536 +83936,50,twist ending,1418952415 +83936,858,great acting,1418952621 +83936,2788,monty python,1418952721 +83936,2788,non sequitor,1418952739 +83936,2788,sketch comedy,1418952724 +83936,2959,dark comedy,1418952652 +83936,2959,disturbing,1418952658 +83936,2959,Edward Norton,1418952645 +83936,2959,social commentary,1418952654 +83936,2959,twist ending,1418952638 +83939,924,artificial intelligence,1387007639 +83939,924,atmospheric,1387007642 +83939,924,Stanley Kubrick,1387007632 +83939,1212,Criterion,1387007683 +83939,1212,INNOCENCE LOST,1387007680 +83939,1212,Orson Welles,1387007675 +83939,1248,noir thriller,1387007704 +83939,1248,ominous,1387007707 +83939,1248,Orson Welles,1387007723 +83939,2019,Akira Kurosawa,1387007423 +83939,2019,Criterion,1387007405 +83939,2019,Kurosawa,1387007421 +83939,2019,samurai,1387007425 +83939,2019,toshiro mifune,1387007420 +83939,2160,Atmospheric,1387007472 +83939,2160,Roman Polanski,1387007478 +83939,2160,surreal,1387007466 +83939,2288,claustrophobic,1387007768 +83939,2288,horror,1387007776 +83939,2288,Kurt Russell,1387007758 +83939,2288,Lovecraftian mythology,1387007787 +83939,2730,slow,1387008065 +83939,2730,somber,1387008057 +83939,2730,wry,1387008068 +83939,2966,David Lynch,1387075675 +83939,4979,Bill Murray,1387007889 +83939,4979,black comedy,1387007894 +83939,4979,Wes Anderson,1387007897 +83939,6460,Anthony Perkins,1386999299 +83939,6460,claustrophobic,1386999283 +83939,6460,Franz Kafka,1386999273 +83939,6460,Orson Welles,1386999277 +83939,26082,anti-authoritarian,1387007526 +83939,26082,austere,1387007524 +83939,26082,Criterion,1387007522 +83939,26082,Samurai,1387007538 +83939,26082,slow,1387007511 +83939,26082,tense,1387007515 +83939,41627,Criterion,1387007806 +83939,41627,Toshirô Mifune,1387007817 +83939,41627,Toshirô Mifune,1387007835 +83939,41627,Toshirô Mifune,1387007843 +83939,41627,Toshirô Mifune,1387007848 +83939,41627,Toshiro Mifune,1387007814 +83947,1,animated,1312088976 +83947,1,animation,1312088979 +83947,1,children,1312088964 +83947,1,comedy,1312088984 +83947,1,fantasy,1312088987 +83947,1,funny,1312088970 +83947,1,humorous,1312088973 +83947,1,Pixar,1312088967 +83947,1,time travel,1312088989 +83947,2,adapted from:book,1312089423 +83947,2,childish,1312089444 +83947,2,Children,1312089408 +83947,2,kid flick,1312089388 +83947,2,time travel,1312089401 +83947,6,Al Pacino,1376577602 +83947,6,crime,1376577611 +83947,6,great acting,1376577610 +83947,6,realistic action,1376577616 +83947,6,suspense,1376577593 +83947,6,tense,1376577590 +83947,29,weird,1368325312 +83947,32,original,1368323664 +83947,34,adventure,1378146995 +83947,34,Animal movie,1378146996 +83947,34,animals,1378146998 +83947,34,children,1378147002 +83947,34,cute,1378147005 +83947,34,fantasy,1378147014 +83947,34,funny,1378147016 +83947,34,witty,1378147033 +83947,47,Brad Pitt,1303350891 +83947,47,crime,1303350897 +83947,47,dark,1303350899 +83947,47,horror,1303350903 +83947,47,Morgan Freeman,1303350928 +83947,47,mystery,1303350931 +83947,47,powerful ending,1303350923 +83947,47,religion,1303350908 +83947,47,serial killer,1303350914 +83947,47,twist ending,1303350918 +83947,70,cult classic,1368327281 +83947,169,family,1368383949 +83947,204,action,1368324926 +83947,231,comedy,1405906789 +83947,231,dumb but funny,1405906802 +83947,231,Funny as hell,1405906798 +83947,231,hilarious,1405906825 +83947,231,Jim Carrey,1405906810 +83947,231,road trip,1405906790 +83947,231,silly,1405906817 +83947,231,slapstick,1405906820 +83947,231,stupid,1405906793 +83947,232,relationships,1368325173 +83947,296,atmospheric,1362668379 +83947,296,cult film,1362668351 +83947,296,drugs,1362668370 +83947,296,nonlinear,1362668357 +83947,296,storytelling,1368324098 +83947,318,atmospheric,1313573616 +83947,318,based on a book,1313573648 +83947,318,classic,1313573739 +83947,318,crime,1313573611 +83947,318,great acting,1368326309 +83947,318,great ending,1368384017 +83947,318,imdb top 250,1313573619 +83947,318,inspirational,1313573634 +83947,318,Morgan Freeman,1313573592 +83947,318,narrated,1313573812 +83947,318,prison,1313573599 +83947,318,prison escape,1313573601 +83947,318,revenge,1313573595 +83947,318,thought-provoking,1313573605 +83947,318,twist ending,1313573606 +83947,337,bittersweet,1389069974 +83947,337,coming of age,1389069972 +83947,337,dysfunctional family,1389069979 +83947,337,mental illness,1389069983 +83947,355,sitcom,1302620203 +83947,356,bittersweet,1302620147 +83947,356,comedy,1302620103 +83947,356,inspirational,1302620153 +83947,356,psychology,1302620120 +83947,356,Tom Hanks,1302620138 +83947,356,United States History,1302620185 +83947,367,cartoonish,1302986757 +83947,367,comedy,1302986735 +83947,367,hilarious,1302986737 +83947,367,Jim Carrey,1302986746 +83947,367,Jim Carrey being Jim Carrey,1302986742 +83947,367,superhero,1302986755 +83947,508,dramatic,1368324825 +83947,529,based on a true story,1392220065 +83947,529,Ben Kingsley,1392220069 +83947,529,chess,1392220098 +83947,529,father-son relationship,1392220077 +83947,529,genius,1392220082 +83947,529,prodigy,1392220091 +83947,593,cannibalism,1373391685 +83947,593,disturbing,1373391688 +83947,593,Horror,1373391695 +83947,593,mental illness,1373391690 +83947,593,psychological,1373391704 +83947,593,psychology,1373391702 +83947,593,serial killer,1373391700 +83947,593,suspense,1373391705 +83947,724,magic,1302621384 +83947,724,supernatural,1302621390 +83947,724,witchcraft,1302621394 +83947,724,witches,1302621402 +83947,804,relationships,1368325173 +83947,858,oscar (best directing),1368324627 +83947,952,adapted from:book,1302621718 +83947,952,author:Jules Verne,1302621984 +83947,969,classic,1377145771 +83947,969,Humphrey Bogart,1377145762 +83947,969,imdb top 250,1377145764 +83947,969,romance,1377145786 +83947,971,addiction,1372168578 +83947,971,classic,1372168554 +83947,971,drinking,1372168590 +83947,971,emotional,1372168596 +83947,971,old,1372168571 +83947,1015,family,1368383949 +83947,1016,family,1368383949 +83947,1089,original,1368323664 +83947,1172,bittersweet,1377144960 +83947,1172,censorship,1377145011 +83947,1172,childhood,1377144981 +83947,1172,classical,1377145142 +83947,1172,heartwarming,1377144975 +83947,1172,imdb top 250,1377145085 +83947,1172,mentor,1377144963 +83947,1172,nostalgia,1377144966 +83947,1172,nostalgic,1377144969 +83947,1172,sentimental,1377145001 +83947,1175,weird,1368325312 +83947,1185,cerebral,1368384625 +83947,1199,cerebral,1368384625 +83947,1203,classic,1334511962 +83947,1203,courtroom,1334511108 +83947,1203,crime,1334511161 +83947,1203,ensemble cast,1334511153 +83947,1203,good dialogue,1334511157 +83947,1203,imdb top 250,1334511114 +83947,1203,politics,1334511128 +83947,1203,racism,1334511132 +83947,1203,social commentary,1334511120 +83947,1203,thought-provoking,1334511125 +83947,1260,talky,1368384241 +83947,1299,dramatic,1368324825 +83947,1307,relationships,1368325173 +83947,1394,cheesy,1385872324 +83947,1394,classic,1385872482 +83947,1394,comedy,1385872474 +83947,1394,deadpan,1385872365 +83947,1394,narrated,1385872522 +83947,1394,off-beat comedy,1385872515 +83947,1394,quirky,1385872331 +83947,1485,BREAKUPS AND DIVORCES,1303350497 +83947,1485,comedy,1303350487 +83947,1485,father-son relationship,1303350502 +83947,1485,jim carrey,1303350506 +83947,1485,lies,1303350517 +83947,1485,workaholic,1303350549 +83947,1527,visually appealing,1368326280 +83947,1552,action,1368324926 +83947,1608,action,1368324926 +83947,1623,horror,1368327373 +83947,1639,relationships,1368325173 +83947,1682,alternate reality,1302620291 +83947,1682,dark comedy,1302620288 +83947,1682,Jim Carrey,1302620295 +83947,1682,philosophy,1302620298 +83947,1704,mentor,1368323845 +83947,1722,action,1368324926 +83947,1748,cerebral,1368384625 +83947,1784,classic,1312089517 +83947,1784,Comedy,1312089512 +83947,1784,funny,1312089522 +83947,1784,Jack Nicholson,1312089506 +83947,1784,Nudity (Topless - Brief),1312089533 +83947,1784,obsessive compulsive disorder,1312089540 +83947,1784,psychology,1312089530 +83947,1859,life reflection,1315661994 +83947,1859,nihilistic,1315661985 +83947,1859,OBSESSIVE QUESTS,1315661979 +83947,1859,SUICIDE,1315661975 +83947,1895,frivolous,1369139472 +83947,1895,high school,1369139432 +83947,1895,shallow characters,1369139427 +83947,1895,teen,1369139483 +83947,1895,Teen movie,1369139481 +83947,1900,competition,1315661735 +83947,1900,Oscar Nominee: Foreign Language (Iran),1315661761 +83947,1900,siblings,1315661755 +83947,1991,horror,1368327373 +83947,2022,based on a book,1388717740 +83947,2022,Bible,1388717773 +83947,2022,Biblical,1388717769 +83947,2022,christian,1388717767 +83947,2022,controversial,1388717744 +83947,2022,god,1388717749 +83947,2022,jesus,1388717748 +83947,2022,Nudity (Topless),1388717755 +83947,2022,Religious,1302618167 +83947,2022,storytelling,1388717758 +83947,2022,violence,1388717798 +83947,2028,historical,1385786446 +83947,2028,Tom Hanks,1385786439 +83947,2076,weird,1368325312 +83947,2108,story,1368384279 +83947,2124,quirky,1302622052 +83947,2124,supernatural,1302622023 +83947,2167,action,1368324926 +83947,2262,relationships,1368325173 +83947,2313,19th century,1373403461 +83947,2313,atmospheric,1373403431 +83947,2313,based on a true story,1373403417 +83947,2313,biography,1373403424 +83947,2313,black and white,1373403420 +83947,2313,depressing,1373403445 +83947,2313,disability,1373403449 +83947,2313,imdb top 250,1373403443 +83947,2313,melancholic,1373403442 +83947,2313,melancholy,1373403438 +83947,2313,true story,1373403435 +83947,2315,horror,1368327373 +83947,2335,comedy,1368324000 +83947,2336,Biography,1372177561 +83947,2336,British,1372177552 +83947,2336,historical,1372177584 +83947,2336,history,1372177573 +83947,2336,religion,1372177572 +83947,2336,true story,1372177576 +83947,2394,story,1368384279 +83947,2420,mentor,1368323845 +83947,2460,horror,1368327373 +83947,2959,atmospheric,1370445890 +83947,2959,complicated,1370445910 +83947,2959,mental illness,1370445887 +83947,2959,philosophy,1370445903 +83947,2959,psychological,1370445905 +83947,2959,social commentary,1370445894 +83947,2959,surreal,1370445900 +83947,2959,twist ending,1370445896 +83947,3018,horror,1368327373 +83947,3105,based on a true story,1334497722 +83947,3105,DeNiro,1334497726 +83947,3105,dramatic,1368324825 +83947,3105,hospital,1334497758 +83947,3105,inspiration for life,1334497730 +83947,3105,memory loss,1334497773 +83947,3105,Robert De Niro,1334497734 +83947,3105,true story,1334497740 +83947,3114,animation,1312090337 +83947,3114,childish,1312090375 +83947,3114,Disney,1312090324 +83947,3114,Pixar,1312090327 +83947,3114,sequel,1312090329 +83947,3114,toys,1312090350 +83947,3114,whimsical,1312090354 +83947,3157,family,1368383949 +83947,3421,comedy,1368324000 +83947,3448,Based on a true story,1378263680 +83947,3448,censorship,1378263731 +83947,3448,true story,1378263715 +83947,3448,Vietnam,1378263746 +83947,3448,Vietnam War,1378263722 +83947,3448,war,1378263723 +83947,3448,war movie,1378263725 +83947,3553,Gossip,1302618992 +83947,3553,Scandal,1302618902 +83947,3681,action,1388731177 +83947,3681,Clint Eastwood,1388731182 +83947,3681,drama,1388731149 +83947,3681,eastwood,1388731186 +83947,3681,thriller,1388731158 +83947,3681,western,1388731167 +83947,3752,comedy,1302621241 +83947,3752,dumb,1302621234 +83947,3752,jim carey,1302621250 +83947,3752,split personality,1302621254 +83947,3826,action,1373314634 +83947,3826,invisibility,1373314591 +83947,3826,politics,1373314617 +83947,3826,Sexualized violence,1373314647 +83947,3826,technology,1373314610 +83947,3949,atmospheric,1312088425 +83947,3949,dark,1312088428 +83947,3949,depressing,1312088498 +83947,3949,disturbing,1312088499 +83947,3949,emotional,1312088441 +83947,3949,loneliness,1312088456 +83947,3949,psychology,1312088445 +83947,3986,action,1368324926 +83947,4128,cult classic,1368327281 +83947,4211,based on a true story,1302620329 +83947,4211,murder,1302620317 +83947,4226,dreamlike,1302622372 +83947,4226,nonlinear,1302622378 +83947,4226,psychology,1302622381 +83947,4226,storytelling,1368324098 +83947,4226,twist ending,1302622389 +83947,4326,based on a true story,1389444581 +83947,4326,civil rights,1389444573 +83947,4326,Corruption,1389444575 +83947,4326,drama,1389444886 +83947,4326,Ku Klux Klan,1389444603 +83947,4326,Oscar (Best Cinematography),1389444595 +83947,4326,racism,1389444586 +83947,4326,true story,1389444589 +83947,4489,Eddie Murphy,1312053084 +83947,4489,multiple roles,1312053062 +83947,4720,afterlife,1370298577 +83947,4720,alternate reality,1370298575 +83947,4720,atmospheric,1370298572 +83947,4720,death,1370298580 +83947,4720,Horror,1370298564 +83947,4720,religion,1370298567 +83947,4720,Saturn Award (Best Horror Film),1370298590 +83947,4720,surprise ending,1370298593 +83947,4720,twist ending,1370298594 +83947,4725,horror,1368327373 +83947,4776,corruption,1387150975 +83947,4776,denzel washington,1387151024 +83947,4776,detective thriller,1387151022 +83947,4776,Ethan Hawke,1387151027 +83947,4776,Notable Nudity,1387150991 +83947,4776,Nudity (Topless - Brief),1387150987 +83947,4776,Oscar (Best Actor),1387150995 +83947,4776,plot,1387151011 +83947,4776,police corruption,1387150996 +83947,4776,twist ending,1387150999 +83947,4776,undercover cop,1387151006 +83947,4776,violent yet uplifting,1387151003 +83947,4878,weird,1368325312 +83947,4886,animation,1369140180 +83947,4886,Comedy,1369140177 +83947,4886,funny,1369140181 +83947,4886,Oscar (Best Music - Original Score),1369140197 +83947,4886,Oscar (Best Music - Original Song),1369140187 +83947,4886,Oscar Winner,1369140201 +83947,4886,Pixar,1369140199 +83947,5064,adapted from:book,1378699321 +83947,5064,adventure,1378698852 +83947,5064,Amazing Cinematography,1378699318 +83947,5064,based on a book,1378698857 +83947,5064,fantasy,1378698859 +83947,5064,movie to see,1378698881 +83947,5064,prison,1378698861 +83947,5064,prison escape,1378699310 +83947,5064,religion,1378698907 +83947,5064,revenge,1378698863 +83947,5064,royalty,1378698876 +83947,5218,Comedy,1302618822 +83947,5449,Adam Sandler,1312480983 +83947,5449,funny,1312480991 +83947,5452,family,1368383949 +83947,5618,adventure,1312089969 +83947,5618,alternate reality,1312089961 +83947,5618,animation,1312089963 +83947,5618,atmospheric,1312089972 +83947,5618,fantasy,1312089980 +83947,5618,surreal,1312089985 +83947,5618,whimsical,1312089988 +83947,5816,fantasy world,1302620047 +83947,5816,franchise,1302620063 +83947,5816,harry potter,1302620025 +83947,5816,magic,1302620027 +83947,5816,witch,1302620052 +83947,5816,Wizards,1302620033 +83947,5878,coma,1392236982 +83947,5878,compassionate,1392237004 +83947,5878,friendship,1392236994 +83947,5878,loneliness,1392236989 +83947,5878,Nudity (Topless - Notable),1392236986 +83947,5878,prison,1392237424 +83947,5878,psychology,1392236973 +83947,5878,relationships,1392236978 +83947,5878,sexuality,1392236975 +83947,5878,Tragedy,1392237008 +83947,5945,loneliness,1368324355 +83947,5989,Leonardo de Caprio,1302618437 +83947,5995,classical music,1316933803 +83947,5995,drama,1316933809 +83947,5995,dramatic,1368324825 +83947,5995,holocaust,1316934041 +83947,5995,music,1316934034 +83947,5995,true story,1316934029 +83947,6016,based on a true story,1302621417 +83947,6016,Classic,1302621423 +83947,6016,multiple storylines,1302621430 +83947,6016,true story,1302621438 +83947,6058,Premonition,1302618327 +83947,6063,disturbing,1312466235 +83947,6063,loneliness,1312466233 +83947,6063,odd,1312466229 +83947,6063,psychological,1312466232 +83947,6188,comedy,1368324000 +83947,6281,crime,1316452509 +83947,6281,interesting,1316452516 +83947,6281,prostitution,1316452524 +83947,6281,secrets,1316452542 +83947,6281,serial killer,1316452536 +83947,6281,sniper,1316452533 +83947,6323,confusing,1313129501 +83947,6323,John Cusack,1313129459 +83947,6323,multiple personalities,1313129462 +83947,6323,multiple storylines,1313129466 +83947,6323,psychology,1313129468 +83947,6323,serial killer,1313129471 +83947,6323,split personality,1313129484 +83947,6323,suspense,1313129480 +83947,6323,twist ending,1313129494 +83947,6373,comedy,1302619214 +83947,6373,funny,1302619219 +83947,6373,god,1302619230 +83947,6373,humorous,1302619243 +83947,6373,Jim Carrey,1302619221 +83947,6373,Morgan Freeman,1302619223 +83947,6373,religion,1302619226 +83947,6664,action,1302620227 +83947,6664,Arnold Schwarzenegger,1302620231 +83947,6664,nostalgic,1302620243 +83947,6664,RACE AGAINST TIME,1302620248 +83947,6708,comedy,1385865897 +83947,6708,con artists,1385865932 +83947,6708,crime,1385865901 +83947,6708,father daughter relationship,1385865905 +83947,6708,obsessive compulsive disorder,1385865909 +83947,6708,psychiatrist,1385865913 +83947,6708,twist ending,1385865918 +83947,6870,Clint Eastwood,1315658129 +83947,6870,crime,1315658135 +83947,6870,Dark,1315658133 +83947,6870,Drama,1315658137 +83947,6870,imdb top 250,1315658142 +83947,6870,mystery,1315658146 +83947,6870,thriller,1315658159 +83947,6870,twist ending,1315658150 +83947,6874,blood,1397966723 +83947,6874,Crime,1397966738 +83947,6874,kung fu,1397966742 +83947,6874,mafia,1397966752 +83947,6874,martial arts,1397966732 +83947,6874,nonlinear,1397966727 +83947,6953,Complex,1302621708 +83947,6953,life & death,1302621604 +83947,6953,melancholic,1302621606 +83947,6953,multiple storylines,1302621645 +83947,6953,psychological,1302621618 +83947,6953,religion,1302621611 +83947,6953,Tragedy,1302621624 +83947,7024,banned movie,1387523185 +83947,7024,controversial,1387523180 +83947,7024,disturbing,1387523176 +83947,7024,harsh,1387523164 +83947,7024,rape,1387523203 +83947,7024,sadism,1387523209 +83947,7024,social criticism,1387523172 +83947,7024,thought-provoking,1387523217 +83947,7024,torture,1387523220 +83947,7147,story,1368384279 +83947,7149,aging,1302622150 +83947,7149,Comedy,1302622126 +83947,7149,heart attack,1302622155 +83947,7149,Jack Nicholson,1302622130 +83947,7158,Ben Kingsley,1380857749 +83947,7158,culture clash,1380857746 +83947,7158,dark,1380857776 +83947,7158,Depressing,1380857773 +83947,7158,Nudity (Rear),1380857789 +83947,7158,Nudity (Topless - Brief),1380857762 +83947,7158,sad but good,1380857753 +83947,7254,alternate reality,1314878695 +83947,7254,child abuse,1314878700 +83947,7254,intense,1314878702 +83947,7254,love,1314878706 +83947,7254,memory,1314878713 +83947,7254,Mystery,1314878726 +83947,7254,psychology,1314878731 +83947,7254,romance,1314878748 +83947,7254,sci-fi,1314878745 +83947,7254,science fiction,1314878743 +83947,7254,suspense,1314878729 +83947,7254,time travel,1314878735 +83947,7254,twist ending,1314878736 +83947,7254,twists & turns,1314878739 +83947,7361,alternate reality,1374382811 +83947,7361,bittersweet,1374382808 +83947,7361,comedy,1374382815 +83947,7361,complicated,1374382825 +83947,7361,dreamlike,1374382830 +83947,7361,fantasy,1374382870 +83947,7361,Jim Carrey,1374382818 +83947,7361,nonlinear,1374382801 +83947,7361,philosophy,1374382847 +83947,7361,psychology,1374382863 +83947,7361,romance,1374382882 +83947,7361,surreal,1374382881 +83947,7361,thought-provoking,1374382836 +83947,7438,storytelling,1368324098 +83947,7458,based on a myth,1302619266 +83947,7458,Epic,1302619259 +83947,7458,historical epic,1302619298 +83947,7458,Homer,1302619293 +83947,7458,Myth,1302619280 +83947,8129,documentary,1387512793 +83947,8129,social commentary,1387512692 +83947,8360,animation,1312089907 +83947,8360,Cameron Diaz,1312089909 +83947,8360,crude humor,1312089930 +83947,8360,Disney,1312089911 +83947,8360,Dreamworks,1312089919 +83947,8360,Eddie Murphy,1312089902 +83947,8360,franchise,1312089944 +83947,8360,Funny,1312089938 +83947,8360,sequel,1312089922 +83947,8641,comedy,1368324000 +83947,8950,imaginary friend,1302624085 +83947,8950,paranoid,1302624078 +83947,8950,psychology,1302624071 +83947,8950,schizophrenia,1302624076 +83947,8950,twist ending,1302624074 +83947,8981,relationships,1368325173 +83947,27788,amnesia,1312481310 +83947,27788,makes you think,1312481317 +83947,27788,mental hospital,1312481329 +83947,27788,mental illness,1312481323 +83947,27788,mental institution,1312481326 +83947,27788,mindfuck,1312481304 +83947,27788,romance,1312481294 +83947,27788,time travel,1312481291 +83947,27788,twist ending,1312481301 +83947,30707,Bittersweet,1385594023 +83947,30707,Clint Eastwood,1385594063 +83947,30707,dark,1385594075 +83947,30707,imdb top 250,1385594070 +83947,30707,Morgan Freeman,1385594038 +83947,30707,Oscar (Best Actress),1385594042 +83947,30707,Oscar (Best Directing),1385594047 +83947,30707,Oscar (Best Picture),1385594044 +83947,30707,Oscar (Best Supporting Actor),1385594049 +83947,30707,social commentary,1385594051 +83947,30707,thought-provoking,1385594056 +83947,31807,Twisted Ending,1302618369 +83947,32587,storytelling,1368324098 +83947,33166,cultural conflict,1385273014 +83947,33166,multiple storylines,1385273055 +83947,33166,police corruption,1385273045 +83947,33166,political,1385273047 +83947,33166,race issues,1385273041 +83947,33166,racism,1385273020 +83947,33166,social commentary,1385273031 +83947,33166,twist ending,1385273034 +83947,33815,dialogue,1317555079 +83947,33815,single parents,1317554087 +83947,36529,arms dealer,1378868964 +83947,36529,based on a true story,1378868946 +83947,36529,corruption,1378868957 +83947,36529,dark comedy,1378868946 +83947,36529,Nicolas Cage,1378869004 +83947,36529,Nudity (Topless),1378868987 +83947,36529,political,1378868951 +83947,36529,politics,1378868972 +83947,36529,smuggling,1378868978 +83947,36529,violence,1378868982 +83947,36529,war,1378868982 +83947,37729,animation,1312090428 +83947,37729,black comedy,1312090432 +83947,37729,children,1312090470 +83947,37729,ghosts,1312090456 +83947,37729,ghosts/afterlife,1312090440 +83947,37729,gothic,1312090437 +83947,37729,musical,1312090489 +83947,37729,visually appealing,1368326280 +83947,37736,adapted from:book,1302986405 +83947,37736,based on a book,1302986410 +83947,37736,classic,1302986417 +83947,37736,Roman Polanski,1302986423 +83947,43679,Premonition,1302618314 +83947,44191,action,1373306483 +83947,44191,based on a book,1373306545 +83947,44191,comic book,1373306548 +83947,44191,Comic Book adaption,1373306550 +83947,44191,dark,1373306530 +83947,44191,dystopia,1373306527 +83947,44191,historical,1373306541 +83947,44191,imdb top 250,1373306532 +83947,44191,movie to see,1373306500 +83947,44191,philosophy,1373306493 +83947,44191,politics,1373306485 +83947,44191,revenge,1373306537 +83947,44191,social commentary,1373306487 +83947,44191,thought-provoking,1373306491 +83947,45672,Adam Sandler,1302621190 +83947,45672,Be satisfied with your life little man,1302621226 +83947,45672,comedy,1302621220 +83947,45672,family,1302621199 +83947,45672,family bonds,1302621203 +83947,45672,second chance,1302621208 +83947,45672,surprisingly good,1302621211 +83947,46322,blindness,1335590924 +83947,46322,duel,1335590945 +83947,46322,friendship,1335590915 +83947,46322,historical setting,1335590935 +83947,46322,Martial Arts,1335590911 +83947,46578,comedy,1405906686 +83947,46578,dark comedy,1405906688 +83947,46578,dysfunctional family,1405906693 +83947,46578,family,1405906696 +83947,46578,off-beat comedy,1405906711 +83947,46578,philosophy,1405906713 +83947,46578,road trip,1405906723 +83947,46578,social commentary,1405906719 +83947,47099,based on a true story,1317553894 +83947,47099,happy ending,1317553930 +83947,47099,inspirational,1317553942 +83947,47099,movie to see,1317553946 +83947,47099,poverty,1317553903 +83947,47099,true story,1317553908 +83947,47099,want to see again,1317553911 +83947,47099,Will Smith,1317553912 +83947,47610,Twist Ending,1302618251 +83947,48516,original,1368323664 +83947,48600,Biblical,1302619345 +83947,48600,Ester,1302619351 +83947,48600,Iran,1302619333 +83947,48600,Judism,1302619370 +83947,48600,Persia,1302619324 +83947,48600,religion,1302619320 +83947,48600,Xerxes,1302619338 +83947,48696,adultery,1371446880 +83947,48696,cynical,1371446826 +83947,48696,dark,1371446836 +83947,48696,Nudity (Topless - Brief),1371446882 +83947,48696,psychology,1371446841 +83947,48696,SUBURBAN DYSFUNCTION,1371446850 +83947,50703,inspiration for life,1302622332 +83947,50703,inspirational,1302622300 +83947,50703,inspiring,1302622313 +83947,50872,animation,1312089758 +83947,50872,children,1312089786 +83947,50872,cooking,1312089751 +83947,50872,Disney,1312089752 +83947,50872,food,1312089773 +83947,50872,funny,1312089747 +83947,50872,imagination,1312089771 +83947,50872,pixar,1312089763 +83947,50872,story,1368384279 +83947,51662,action,1302620909 +83947,51662,amazing photography,1302620517 +83947,51662,artistic,1302620907 +83947,51662,Insulting to Persians,1302620886 +83947,54272,comedy,1376577941 +83947,54272,funny,1376577964 +83947,54272,humor,1376577946 +83947,54272,humorous,1376577948 +83947,54272,pollution,1376577970 +83947,55052,childhood,1374383020 +83947,55052,emotional,1374383017 +83947,55052,Guilt,1374383085 +83947,55052,historical,1374383061 +83947,55052,romance,1374383032 +83947,55052,sad,1374383035 +83947,55052,Sexualized violence,1374383068 +83947,55052,Tragedy,1374383027 +83947,55290,conspiracy,1400466816 +83947,55290,detective,1400466815 +83947,55290,drugs,1400466811 +83947,55290,kidnapping,1400466800 +83947,55290,Morgan Freeman,1400466779 +83947,55290,mystery,1400466782 +83947,55290,thriller,1400466802 +83947,55442,1980s,1312090020 +83947,55442,animation,1312090018 +83947,55442,History,1312090012 +83947,55442,Iran,1312090005 +83947,55442,melancholy,1312090032 +83947,55442,politics,1312090010 +83947,55442,religion,1312090008 +83947,55442,social commentary,1312090042 +83947,55442,war,1312090036 +83947,56152,fairy tale,1378779861 +83947,56152,humorous,1378779985 +83947,56152,magic realism,1378778119 +83947,56152,Musical,1378778126 +83947,56152,predictable,1378779847 +83947,56152,romance,1378780005 +83947,56174,alone in the world,1303350823 +83947,56174,apocalypse,1303350832 +83947,56174,disease,1303350863 +83947,56174,great acting,1303350843 +83947,56174,sci-fi,1303350856 +83947,56174,Will Smith,1303350846 +83947,56174,zombies,1303350854 +83947,56941,best love story,1312461479 +83947,56941,best love story after the notebook!!!,1312461487 +83947,56941,irish accent,1312461515 +83947,56941,romantic,1312461499 +83947,56941,self discovery,1312461579 +83947,56941,twist ending,1312461543 +83947,57532,300 Spoof,1302620389 +83947,59315,action,1389242092 +83947,59315,adventure,1389242116 +83947,59315,funny,1389242119 +83947,59315,superhero,1389242096 +83947,59315,superheroes,1389242103 +83947,59315,vigilante,1389242106 +83947,59315,visually appealing,1389242111 +83947,59369,action,1405337727 +83947,59369,CIA,1405337731 +83947,59369,crime,1405337733 +83947,59369,divorce,1405337738 +83947,59369,espionage,1405337742 +83947,59369,fight scenes,1405337748 +83947,59369,kidnapping,1405337761 +83947,59369,prostitution,1405337766 +83947,59369,revenge,1405337773 +83947,59369,thriller,1405337771 +83947,59369,torture,1405337776 +83947,59784,animation,1312090386 +83947,59784,comedy,1312090388 +83947,59784,good versus evil,1312090396 +83947,59784,Kung Fu,1312090401 +83947,59784,martial arts,1312090404 +83947,60037,bad ending,1387504931 +83947,60037,Bad Science,1387504925 +83947,60037,disaster,1387504968 +83947,60037,end of the world,1387504972 +83947,60037,entertaining for the wrong reasons,1387504976 +83947,60037,epidemic,1387504956 +83947,60037,far fetched,1387504937 +83947,60037,weak dialogue,1387504939 +83947,60037,weak story,1387504941 +83947,60069,Animation,1312089680 +83947,60069,artificial intelligence,1312089682 +83947,60069,pixar,1312089696 +83947,60069,robots,1312089693 +83947,60069,social commentary,1312089704 +83947,60069,space,1312089687 +83947,60684,visually appealing,1368326280 +83947,61323,cheating husband,1314113272 +83947,61323,cia,1314113275 +83947,61323,weird,1314113292 +83947,61729,funny,1315050946 +83947,61729,ghosts,1315050850 +83947,61729,sees ghosts,1315050938 +83947,61729,story,1315051000 +83947,63062,based on a true story,1315658485 +83947,63062,imposter,1315658569 +83947,63062,mother-son relationship,1315658574 +83947,63062,not happy ending,1315658580 +83947,63062,police corruption,1315658583 +83947,63062,political,1315658591 +83947,63082,based on a book,1312107782 +83947,63082,dreamlike,1312107788 +83947,63082,feel-good,1312107504 +83947,63082,love story,1312107516 +83947,63082,nonlinear,1312107493 +83947,63082,predictable,1312107828 +83947,63082,predictable ending,1312107838 +83947,63082,romance,1312107773 +83947,64622,based on a book,1387698885 +83947,64622,great acting,1387699084 +83947,64622,Holocaust,1387699088 +83947,64622,nazis,1387699091 +83947,64622,Nudity (Full Frontal - Notable),1387698869 +83947,64622,Nudity (Rear),1387699073 +83947,64622,Oscar (Best Actress),1387698877 +83947,64622,philosophical,1387699867 +83947,64622,prison,1387699863 +83947,64622,Romance,1387699858 +83947,64622,World War II,1387699853 +83947,64839,loneliness,1368324355 +83947,64957,Aging,1302619061 +83947,64957,Aging Disorder,1302619064 +83947,64957,bittersweet,1369139214 +83947,64957,Brad Pitt,1369139186 +83947,64957,death,1369139192 +83947,64957,life & death,1369139210 +83947,64957,Oscar (Best Effects - Visual Effects),1369139198 +83947,64957,philosophical,1369139205 +83947,64957,Reverse Process of Aging,1302619107 +83947,64969,cliche,1303350713 +83947,64969,few funny scenes,1303350724 +83947,64969,Insulting to Persians,1303350750 +83947,64969,Jim carrey,1303350694 +83947,64969,optimism,1303350709 +83947,64969,positive thinking,1303350767 +83947,64969,self-esteem,1303350705 +83947,64983,Adolf Hitler,1313143529 +83947,64983,based on a true story,1313142590 +83947,64983,exciting,1313142619 +83947,64983,Germany,1313142638 +83947,64983,history,1313142597 +83947,64983,leadership,1313142657 +83947,64983,Nazis,1313142629 +83947,64983,no happy ending,1313142599 +83947,64983,resistance movement,1313142604 +83947,64983,Tom Cruise,1313142614 +83947,64983,tragic,1313142612 +83947,64983,true story,1313142607 +83947,65088,Adam Sandler,1312483939 +83947,65088,childish,1312483970 +83947,65088,Imagination,1312483936 +83947,65088,Romantic Comedy,1312483953 +83947,66097,alternate reality,1312089806 +83947,66097,animation,1312089811 +83947,66097,claymation,1312089817 +83947,66097,dark fairy tale,1312089842 +83947,66097,dystopia,1312089818 +83947,66097,fairy tale,1312089857 +83947,66097,Surreal,1312089847 +83947,67087,bromantic,1312475817 +83947,67087,comedy,1312475780 +83947,67087,friendship,1312475787 +83947,67087,lack of friends,1312475805 +83947,67087,likeable,1312475804 +83947,67087,masculinity,1312475802 +83947,68791,bad acting,1385602193 +83947,68791,boring,1385602191 +83947,68791,franchise,1385602181 +83947,68791,robots,1385602214 +83947,68791,sequel,1385602219 +83947,69122,cliche,1302622064 +83947,69122,comedy,1389445520 +83947,69122,disappointing,1302622069 +83947,69122,drugs,1389445517 +83947,69394,brutal,1302622235 +83947,69394,Iran,1302622208 +83947,69394,islam,1302622214 +83947,69394,true story,1302622222 +83947,69644,Comedy,1302618805 +83947,69873,Funny,1302618415 +83947,70183,bad acting,1312466091 +83947,70183,insulting to women,1312466094 +83947,70183,ridiculous,1312466100 +83947,70769,Time Travel,1302618785 +83947,71535,clever,1389583889 +83947,71535,comedy,1389583857 +83947,71535,dark comedy,1389583861 +83947,71535,dark humor,1389583883 +83947,71535,Emma Stone,1389585137 +83947,71535,funny,1389583854 +83947,71535,horror,1389583867 +83947,71535,IMDB Top 250,1389585174 +83947,71535,witty,1389583899 +83947,71535,zombies,1389583834 +83947,72731,afterlife,1302986175 +83947,72731,fantasy,1302986173 +83947,72731,lame,1302986170 +83947,72731,Saoirse Ronan,1302986186 +83947,72731,slow paced,1302986249 +83947,72731,too long,1302986159 +83947,72980,based on a book,1303312952 +83947,72980,mental health,1303312857 +83947,72980,mental hospital,1303312861 +83947,72980,Not as inspiring as the book,1303312940 +83947,72980,Paulo Coelho,1303312849 +83947,72980,pretty good movie,1303312870 +83947,72980,psychiatry,1303312878 +83947,72980,slow-paced,1303312835 +83947,72998,aliens,1312083115 +83947,72998,environmental,1312083120 +83947,72998,plot,1312083127 +83947,72998,politics,1312083124 +83947,72998,racism,1312083096 +83947,72998,romance,1312083098 +83947,72998,sci-fi,1312083103 +83947,72998,war,1312083101 +83947,73276,business,1389852387 +83947,73276,climate change,1389852363 +83947,73276,documentary,1389852383 +83947,73276,nature,1389852377 +83947,73276,oil,1389852378 +83947,73276,politics,1389852364 +83947,73276,social commentary,1389852372 +83947,74150,Typical,1369545076 +83947,74324,autism,1370545665 +83947,74324,disability,1370545663 +83947,74324,genius,1370545667 +83947,74324,inspirational,1370545651 +83947,74324,mental illness,1370545647 +83947,74324,social commentary,1370545669 +83947,74324,true story,1370545673 +83947,74458,Leonardo DiCaprio,1312052867 +83947,74458,plot twist,1312052825 +83947,74458,psychological,1312052831 +83947,74458,twist ending,1312052842 +83947,74458,twisted ending,1312090891 +83947,74530,childish,1312481169 +83947,74530,franchise,1312481230 +83947,74530,Greek mythology,1312481172 +83947,74530,hollywood ending,1312481193 +83947,74530,predictable,1312481174 +83947,74530,silly,1312481179 +83947,74789,alternate reality,1302619179 +83947,74789,visually appealing,1302619195 +83947,74789,weird,1302619198 +83947,74946,bromantic comedy,1312790417 +83947,74946,cute,1312790392 +83947,74946,feel-good,1312790444 +83947,74946,hottie,1312790400 +83947,74946,romance,1312790403 +83947,75341,9/11,1404319812 +83947,75341,cynical protangonist,1404319821 +83947,75341,depressing,1404319816 +83947,75341,depression,1404319858 +83947,75341,drama,1404319860 +83947,75341,ending sucked,1404319825 +83947,75341,philosophical,1404319852 +83947,75341,shocking ending,1404319845 +83947,75341,Some nice dialogs,1404319879 +83947,79132,alternate reality,1302619943 +83947,79132,cerebral,1368384625 +83947,79132,complicated,1302619947 +83947,79132,memory,1302619956 +83947,79132,sci-fi,1302619962 +83947,79132,surreal,1302619973 +83947,79132,thought-provoking,1302619977 +83947,80463,based on a true story,1389586078 +83947,80463,imdb top 250,1389586087 +83947,80463,Oscar (Best Music - Original Score),1389586095 +83947,80463,true story,1389586090 +83947,80463,witty,1389586098 +83947,80551,About rich people without real problems,1312461329 +83947,80551,based on a book,1312461388 +83947,80551,Female middle-age angst,1312461384 +83947,80551,Julia Roberts,1312461342 +83947,80551,Leaves rich handsome man meets new rich handsome man,1312461355 +83947,80551,patronizing american tourists,1312461360 +83947,80551,predictable,1312461429 +83947,80551,whiney protagonist,1312461365 +83947,80615,talking animals,1302619416 +83947,81845,based on a true story,1371498917 +83947,81845,disability,1371498936 +83947,81845,England,1371498915 +83947,81845,IMDB Top 250,1371498925 +83947,81845,Oscar (Best Picture),1371498923 +83947,81845,politics,1371498941 +83947,81845,true story,1371498919 +83947,81932,boxing,1370975292 +83947,81932,cliche,1370975265 +83947,81932,true story,1370975273 +83947,82852,Barbara Streisand,1313415961 +83947,82852,Ben Stiller,1313415334 +83947,82852,Dustin Hoffman,1313415324 +83947,82852,few funny scenes,1313415321 +83947,82852,Jessica Alba,1313415336 +83947,82852,Owen Wilson,1313415349 +83947,82852,Robert De Niro,1313415341 +83947,82854,based on a book,1312480870 +83947,82854,Comedy,1302618271 +83947,83134,black comedy,1312088786 +83947,83134,funny,1312088773 +83947,83349,action,1312083475 +83947,83349,Cameron Diaz,1312083470 +83947,83349,comic book,1312083482 +83947,83349,not very funny,1312083495 +83947,83349,predictable,1312083486 +83947,83349,Unlikable protagonist,1312083490 +83947,84152,drugs,1312087860 +83947,84152,entertaining,1312087868 +83947,84152,human potential,1312087864 +83947,84152,Robert De Niro,1312087836 +83947,84152,smart,1312087853 +83947,84152,thought provoking,1312087895 +83947,84152,twisted ending,1312090859 +83947,84152,unfinished storyline,1312087848 +83947,84152,visual effects,1312087840 +83947,84152,visually appealing,1312087842 +83947,84189,remake,1388717403 +83947,84189,revenge,1388717399 +83947,84392,interesting,1389159092 +83947,84392,lawyers,1389159105 +83947,84392,legal,1389159094 +83947,84392,serial killer,1389159522 +83947,84392,Smart,1389159096 +83947,84772,aliens,1312082532 +83947,84772,Atheism,1312082529 +83947,84772,comedy,1312082535 +83947,84772,dumb cops,1312082559 +83947,84772,few funny scenes,1312082548 +83947,84772,geeky,1312082605 +83947,84772,laidback,1312481902 +83947,84772,story,1312082571 +83947,85022,comedy,1312088570 +83947,85022,feminism,1312088589 +83947,85022,Nudity (Full - Male),1312088649 +83947,85022,predictable,1312088546 +83947,85056,cheesy,1312481793 +83947,85056,childish plot,1312481760 +83947,85056,cliche,1312481766 +83947,85056,superhero,1312481778 +83947,85056,supernatural,1312481776 +83947,85131,action,1312372969 +83947,85131,alien invasion,1312373000 +83947,85131,aliens,1312373003 +83947,85131,cliche,1312372972 +83947,85131,Cliches,1312372980 +83947,85131,repetitive,1312372984 +83947,85131,Unoriginal,1312372985 +83947,85261,Animation,1302621072 +83947,85261,funny,1302621127 +83947,85261,Touching,1302621067 +83947,85367,Adam Sandler,1316110286 +83947,85367,boring,1316110303 +83947,85367,Hawaii,1316110300 +83947,85367,Jennifer Aniston,1316110288 +83947,85367,Nicole Kidman,1316110293 +83947,85367,predictable,1316110291 +83947,85510,Surreal,1302618559 +83947,86298,adventure,1303347292 +83947,86298,Animals Talking,1303346901 +83947,86298,animation,1303346849 +83947,86298,Anne Hathaway,1303347233 +83947,86298,Comedy,1303346631 +83947,86298,dance,1303347008 +83947,86298,good and evil,1303346768 +83947,86298,Leslie Mann,1303347237 +83947,86298,music,1303346998 +83947,86298,nature,1303347246 +83947,86298,nature wildlife,1303347245 +83947,86332,adapted from:comic,1304949433 +83947,86332,comic book,1304949411 +83947,86332,father-son relationship,1312083369 +83947,86332,love story,1312083353 +83947,86332,mythology,1312083363 +83947,86332,predictable,1312083334 +83947,86332,Special Effects,1312083340 +83947,86332,superhero,1304949422 +83947,86882,bittersweet,1377227248 +83947,86882,comedy,1377227250 +83947,86882,fantasy,1377227245 +83947,86882,funny,1377227243 +83947,86882,inspirational,1377227236 +83947,86882,quirky,1377227442 +83947,86882,thought-provoking,1377227228 +83947,86882,time travel,1377227255 +83947,86882,witty,1377227262 +83947,86882,Woody Allen,1377227227 +83947,87232,adapted from:comic,1312083206 +83947,87232,comic book,1312083206 +83947,87232,franchise,1312083246 +83947,87232,story,1312083261 +83947,87232,superhero,1312083198 +83947,87232,visually appealing,1312083290 +83947,87306,cinematography,1312082677 +83947,87306,Not Directed by Steven Spielberg,1312082644 +83947,87306,Story,1312082636 +83947,87306,trite,1312082783 +83947,87306,unbelievable characters,1312082769 +83947,87520,franchise,1312082300 +83947,87520,robots,1312082309 +83947,87520,story,1312082315 +83947,87520,trite,1312082352 +83947,88125,author:J. K. Rowling,1312087774 +83947,88125,based on a book,1312087777 +83947,88125,franchise,1312087763 +83947,88125,magic,1312087760 +83947,88125,series ending,1312087785 +83947,88125,unintentionally funny ending,1312087767 +83947,88744,action,1362667945 +83947,88744,computer animation,1362667950 +83947,88744,genetics,1362667948 +83947,88744,sci-fi,1362668148 +83947,88744,thought-provoking,1362668145 +83947,88744,virus,1362668141 +83947,89745,action,1362668729 +83947,89745,Comedy,1362668732 +83947,89745,Marvel,1362668740 +83947,89745,predictable,1362668739 +83947,89745,robots,1362668744 +83947,89745,superhero,1362668755 +83947,89745,visually appealing,1362668750 +83947,89745,visually stunning,1362668752 +83947,89759,abortion,1334498048 +83947,89759,courtroom drama,1334498009 +83947,89759,great acting,1334498015 +83947,89759,Iran,1334498020 +83947,89759,realism,1334498027 +83947,89759,realistic,1334498030 +83947,89759,religion,1334498035 +83947,89759,social commentary,1334498040 +83947,90746,animation,1334497905 +83947,90746,childish,1334497896 +83947,90746,Journalist,1334497927 +83947,90746,kidnapping,1334497937 +83947,90746,treasure hunt,1334497920 +83947,90914,historical,1389939966 +83947,90914,history,1389939718 +83947,90914,Iran-Iraq War,1389939921 +83947,90914,Iraq,1389939906 +83947,90914,Kuwait War,1389939932 +83947,90914,Middle East,1389939686 +83947,90914,Nudity (Topless),1389939689 +83947,90914,politics,1389939946 +83947,91658,based on a book,1334498188 +83947,91658,corruption,1334498194 +83947,91658,good acting,1334498183 +83947,91658,hacking,1334498200 +83947,91658,murder,1334498167 +83947,91658,mystery,1334498176 +83947,91658,organized crime,1334498174 +83947,91658,revenge,1334498155 +83947,91658,serial killer,1334498150 +83947,91658,suspense,1334498160 +83947,91658,thriller,1334498163 +83947,96687,boring,1378954045 +83947,96687,not funny at all,1378954033 +83947,96861,pointless,1405385536 +83947,96861,predictable,1405385528 +83947,96861,Revenge,1405385539 +83947,96861,unnecessary sequel,1405385530 +83947,97225,animation,1362668638 +83947,97225,monsters,1362668448 +83947,97225,silly,1362668457 +83947,97225,vampires,1362668461 +83947,97304,cia,1362669137 +83947,97304,espionage,1362669139 +83947,97304,hostage,1362669146 +83947,97304,Iran,1362669133 +83947,97304,politics,1362669149 +83947,97304,revolution,1362669163 +83947,97304,thriller,1362669166 +83947,97304,true story,1362669150 +83947,97826,Afghanistan,1378146860 +83947,97826,Golshifteh Farahani,1378146810 +83947,97826,Persian,1378146770 +83947,97826,women's rights,1378146840 +83947,97923,addiction,1389060074 +83947,97923,alcoholism,1389060076 +83947,97923,Denzel Washington,1389060149 +83947,97923,great acting,1389060106 +83947,97923,Nudity (Full Frontal),1389060083 +83947,97923,pilot,1389060102 +83947,97923,plane crash,1389060086 +83947,97923,suspense,1389060134 +83947,97923,verisimilitude,1389060099 +83947,100169,documentary,1389160804 +83947,100169,pornography,1389160792 +83947,100556,absurd,1391608383 +83947,100556,documentary,1391608386 +83947,100556,history,1391608395 +83947,100556,Indonesia,1391608392 +83947,100556,surreal,1391608377 +83947,100556,thought provoking,1391608399 +83947,101142,comedy,1374800820 +83947,101142,inspiring,1374800844 +83947,101142,prehistoric,1374800812 +83947,101360,ending,1372379472 +83947,101360,revenge,1372379414 +83947,101360,serial killer,1372379412 +83947,101360,suspense,1372379403 +83947,102407,based on a book,1404319974 +83947,102407,beautiful,1404319935 +83947,102407,cinematography,1404319951 +83947,102407,disappointing,1404319956 +83947,102407,good adaptation,1404319948 +83947,102407,Leonardo DiCaprio,1404319937 +83947,102407,stylish,1404319943 +83947,102407,stylized,1404319938 +83947,102903,entertaining,1400813279 +83947,102903,good music,1400813285 +83947,102903,magic,1400813294 +83947,102903,Morgan Freeman,1400813300 +83947,102903,plot,1400813304 +83947,102903,stage magic,1400813316 +83947,102903,surprise ending,1400813320 +83947,102903,twist ending,1400813322 +83947,118997,disney,1421630862 +83947,118997,fairy tale,1421630877 +83947,118997,musical,1421630845 +83955,593,dark,1424276783 +83955,593,frightening,1424276783 +83955,593,scary as hell,1424276783 +84006,48744,gay,1449943090 +84006,48744,Nudity (Full Frontal),1449943097 +84006,48744,queer,1449943082 +84006,105943,gay,1449804172 +84006,148430,Gay,1449549059 +84006,148430,Romantic,1449549073 +84006,148486,gay,1449637272 +84023,47,dark,1289141371 +84023,47,mystery,1289141381 +84023,47,philosophical,1289141374 +84023,47,serial killer,1289141367 +84023,253,Brad Pitt,1289756515 +84023,253,drama,1289756565 +84023,253,fantasy,1289756552 +84023,253,horror,1289756553 +84023,253,vampire,1289756556 +84023,318,drama,1289259231 +84023,318,friendship,1289259233 +84023,318,inspirational,1289259227 +84023,318,justice,1289259229 +84023,318,Morgan Freeman,1289259225 +84023,318,prison escape,1289259241 +84023,318,thought-provoking,1289259239 +84023,318,twist ending,1289259235 +84023,541,sci-fi,1290864618 +84023,589,computers,1289141357 +84023,589,robots,1289141345 +84023,589,stylized,1289141351 +84023,589,time travel,1289141349 +84023,608,black comedy,1301254172 +84023,608,dark comedy,1301254165 +84023,608,quirky,1301254121 +84023,780,alien invasion,1292813135 +84023,780,end of the world,1292813138 +84023,780,sci-fi,1292813141 +84023,912,atmospheric,1294236197 +84023,912,espionage,1294236195 +84023,912,Nazis,1294236199 +84023,912,World War II,1294236189 +84023,1080,hilarious,1289141659 +84023,1080,parody,1289141661 +84023,1080,satire,1289141663 +84023,1203,confrontational,1292605441 +84023,1203,ensemble cast,1292605417 +84023,1203,good dialogue,1292605407 +84023,1203,politics,1292605438 +84023,1203,social commentary,1292605411 +84023,1206,disturbing,1292705713 +84023,1206,psychology,1292705715 +84023,1225,classical music,1323801611 +84023,1225,Oscar (Best Picture),1323801615 +84023,1225,true story,1323801619 +84023,1234,great soundtrack,1296728741 +84023,1234,Paul Newman,1296728722 +84023,1234,Robert Redford,1296728728 +84023,1234,surprise ending,1296728732 +84023,1234,twist ending,1296728735 +84023,1240,androids,1292813449 +84023,1240,future,1292813443 +84023,1240,time travel,1292813445 +84023,1381,bad acting,1289259029 +84023,1381,high school,1289259035 +84023,1381,misogyny,1289259024 +84023,1527,futuristic,1292813489 +84023,1527,humorous,1292813496 +84023,1527,satirical,1292813491 +84023,1527,sci-fi,1292813490 +84023,1527,stylized,1292813493 +84023,1721,atmospheric,1289259017 +84023,1721,disaster,1289259006 +84023,1721,romance,1289259010 +84023,1748,atmospheric,1289756057 +84023,1748,Post apocalyptic,1289756051 +84023,1748,sci-fi,1289756054 +84023,1748,stylized,1289756049 +84023,1748,surreal,1289756046 +84023,1748,thought-provoking,1289756047 +84023,1921,mathematics,1289762618 +84023,1921,mental illness,1289762620 +84023,1921,psychology,1289762612 +84023,1921,tense,1289762616 +84023,1999,franchise,1289259129 +84023,2194,corruption,1289186949 +84023,2194,gangsters,1289186964 +84023,2194,mafia,1289186959 +84023,2194,Robert De Niro,1289186956 +84023,2194,Sean Connery,1289186955 +84023,2403,bad cop,1292647128 +84023,2403,social commentary,1292647134 +84023,2762,Atmospheric,1298896320 +84023,2762,psychology,1298896315 +84023,2762,twist ending,1298896318 +84023,3174,Andy Kaufman,1292686793 +84023,3174,true story,1292686799 +84023,3178,Denzel Washington,1292647084 +84023,3178,excellent,1292647081 +84023,3257,Kevin Costner,1289259090 +84023,3949,depressing,1298895968 +84023,3949,psychology,1298895962 +84023,3949,social commentary,1298895964 +84023,3994,Samuel L. Jackson,1289756001 +84023,3994,superhero,1289756006 +84023,3994,twist ending,1289756003 +84023,4816,ben stiller,1289801169 +84023,4816,mindless one liners,1289801191 +84023,4816,stupid,1289801186 +84023,4993,atmospheric,1292814020 +84023,4993,boring,1292814016 +84023,4993,high fantasy,1292814022 +84023,5009,biography,1323349039 +84023,5146,anime,1289756591 +84023,5146,future,1289756592 +84023,5146,vampire,1289756591 +84023,5219,zombie,1306609105 +84023,5782,great story of love and emotions,1289141480 +84023,6016,disturbing,1289186887 +84023,6016,gangsters,1289186890 +84023,6016,violence,1289186880 +84023,6157,bad acting,1289258983 +84023,6157,Ben Affleck,1289258990 +84023,6157,dark,1289258978 +84023,6157,double life,1289258998 +84023,6242,better than the american version,1289141388 +84023,6283,anime,1289756671 +84023,6283,humorous,1289756656 +84023,6283,sci-fi,1289756656 +84023,6283,space,1289756656 +84023,6283,UNLIKELY HEROES,1289756660 +84023,6857,anime,1289756639 +84023,6857,dark hero,1289756636 +84023,6870,Clint Eastwood,1292647419 +84023,6870,crime,1292647422 +84023,6870,Drama,1292647424 +84023,6870,mystery,1292647428 +84023,6902,funny,1298887730 +84023,6902,Gary Oldman,1298887720 +84023,6902,mindfuck,1298887723 +84023,6902,road trip,1298887725 +84023,6902,surreal,1298887726 +84023,6909,cornea transplant - sees ghosts,1289141441 +84023,6909,kind of dumb,1289141436 +84023,8644,futuristic,1292813266 +84023,8644,robots,1292813269 +84023,8644,sci-fi,1292813270 +84023,8861,Post apocalyptic,1306609121 +84023,8861,zombies,1306609115 +84023,8874,zombies,1292903717 +84023,8950,psychology,1292647751 +84023,8950,twist ending,1292647748 +84023,27660,androids,1289756707 +84023,27660,good concept,1289756702 +84023,27660,several short films,1289756705 +84023,27905,visually appealing,1289756725 +84023,30707,drama,1289141678 +84023,30707,Morgan Freeman,1289141671 +84023,30812,Drama,1323349257 +84023,30812,true story,1323349259 +84023,31410,history,1293403538 +84023,31410,Nazis,1293403554 +84023,33660,Biography,1298069674 +84023,33660,depression,1298069678 +84023,34319,cloning,1292813317 +84023,34319,genetics,1292813319 +84023,34319,sci-fi,1292813324 +84023,46530,stupid,1289259106 +84023,46530,superhero,1289259110 +84023,48780,atmospheric,1289141624 +84023,48780,dark,1289141627 +84023,48780,enigmatic,1289141629 +84023,48780,twist ending,1289141642 +84023,49272,James Bond,1289141575 +84023,49272,poker,1289141577 +84023,49272,spy,1289141579 +84023,51540,based on a true story,1323349007 +84023,51540,long,1323349011 +84023,51540,obsession,1323349009 +84023,51540,serial killer,1323349022 +84023,51662,action,1289258754 +84023,51662,atmospheric,1289258758 +84023,51662,narrated,1289258760 +84023,51662,stylized,1289258762 +84023,55232,post-apocalyptic,1306609125 +84023,55232,zombies,1306609129 +84023,55765,conspiracy,1289187001 +84023,55765,corruption,1289187003 +84023,55765,gangsters,1289187006 +84023,55820,dark,1289141602 +84023,55820,great acting,1289141593 +84023,55820,thriller,1289141600 +84023,61401,based on a comic,1320958431 +84023,61401,overacting,1320958442 +84023,61401,stylish,1320958435 +84023,61401,superhero,1320958433 +84023,63062,based on a true story,1292647360 +84023,63062,police corruption,1292647362 +84023,63876,politics,1292646864 +84023,64620,politics,1292646778 +84023,64620,true story,1292646780 +84023,64957,drama,1292812665 +84023,64957,original plot,1292812663 +84023,64957,touching,1292812662 +84023,65642,Nudity (Topless),1298751750 +84023,65642,paradox,1298751757 +84023,65642,time travel,1298751748 +84023,68237,psychology,1289259363 +84023,68237,Sci-fi,1289259359 +84023,68237,space,1289259361 +84023,68237,twist ending,1289259368 +84023,69844,boring,1290782562 +84023,69844,disappointing,1290636210 +84023,69844,fantasy,1290636214 +84023,69844,magic,1290636215 +84023,71535,dark comedy,1289258964 +84023,71535,funny,1289258971 +84023,71535,zombies,1289258968 +84023,71899,asperger syndrome,1292812904 +84023,71899,friendship,1292812894 +84023,71899,philosophical,1292812896 +84023,71899,touching,1292812898 +84023,72733,Clint Eastwood,1292647201 +84023,72733,Matt Damon,1292647193 +84023,72733,Morgan Freeman,1292647196 +84023,72733,rugby,1292647208 +84023,74458,asylum,1292814154 +84023,74458,insanity,1292814158 +84023,74458,psychological,1292814156 +84023,74510,hacking,1291865772 +84023,74624,astronomy,1292813671 +84023,74624,atheism,1292813662 +84023,74624,mathematics,1292813669 +84023,74624,philosophy,1292813664 +84023,74624,rationality,1292813666 +84023,74789,Johnny Depp,1289259043 +84023,74789,Tim Burton,1289259045 +84023,74789,visually appealing,1289259047 +84023,74789,weird,1289259049 +84023,77658,astronomy,1289187087 +84023,77658,Carl Sagan,1289187084 +84023,77658,science,1289187090 +84023,77658,space,1289187093 +84023,78266,childhood issues,1291088028 +84023,78266,sex scene,1291088036 +84023,78266,Unjustified twists,1291088032 +84023,79695,boring,1289259082 +84023,80463,based on true story,1289258870 +84023,80463,computers,1289258869 +84023,80463,dark comedy,1289258880 +84023,80489,too much love interest,1290917315 +84023,81564,science,1290551358 +84023,81564,twists & turns,1290551380 +84023,81788,crime drama,1295253822 +84023,81788,good ending,1295253820 +84023,81834,boring,1290782531 +84023,81834,camping trip,1290782543 +84023,81834,confusing,1290782535 +84023,84954,Matt Damon,1300523307 +84023,88129,atmospheric,1336318446 +84023,88129,great soundtrack,1336318451 +84023,88129,ryan gosling,1336318456 +84023,88129,visually appealing,1336318448 +84023,88744,realistic,1316962320 +84028,1307,relationships,1447563814 +84028,1307,romance,1447563818 +84039,34198,Nudity (Full Frontal),1164900719 +84040,58559,Batman,1432162521 +84040,58559,music,1432162520 +84040,58559,superhero,1432162524 +84056,1049,adventure fantasy,1150429260 +84056,6093,animation,1150505467 +84056,6093,fantasy,1150505153 +84056,7153,fantasy,1150425233 +84078,53207,Nudity (Rear),1209335601 +84136,367,Cameron Diaz,1432173342 +84136,367,cartoonish,1432173335 +84136,367,comedy,1432173337 +84136,367,hilarious,1432173339 +84136,367,jim carrey,1432173330 +84136,367,Jim Carrey being Jim Carrey,1432173341 +84136,367,superhero,1432173344 +84136,575,nostalgic,1432171498 +84136,586,childhood classics,1432171450 +84136,586,nostalgia,1432171447 +84136,592,atmospheric,1432173599 +84136,592,Jack Nicholson,1432173595 +84136,592,Michael Keaton,1432173591 +84136,592,superhero,1432173601 +84136,1377,Batman,1432173574 +84136,1377,Michael Keaton,1432173573 +84136,1377,superhero,1432173577 +84136,1562,Arnold Schwarzenegger,1432170844 +84136,1562,bad plot,1432170833 +84136,1562,Batman,1432170790 +84136,1562,funny,1432170783 +84136,1562,Joel Schumacher,1432170809 +84136,1562,overacting,1432170829 +84136,1562,silly,1432170847 +84136,1562,style,1432170800 +84136,1562,super-hero,1432170856 +84136,2420,classic,1432172855 +84136,5349,Action,1432171723 +84136,5349,superhero,1432171712 +84136,5349,Tobey Maguire,1432171726 +84136,5816,action,1432172296 +84136,5816,adventure,1432172276 +84136,5816,mystery,1432172261 +84136,5816,Richard Harris,1432172299 +84136,5816,thrilling,1432172265 +84136,34150,heroine in tight suit,1432171688 +84136,34150,Jessica Alba,1432171684 +84136,34150,Marvel,1432171692 +84136,45672,Adam Sandler,1432171077 +84136,45672,comedy,1432171074 +84136,45672,surprisingly good,1432171069 +84136,49649,bad acting,1433823627 +84136,49649,based on a book,1433823621 +84136,49649,cliche,1433823585 +84136,49649,dragons,1433823625 +84136,49649,Horrible adaptation of the book,1433823608 +84136,49649,Major dissapointment,1433823605 +84136,49649,predictable,1433823591 +84136,50601,AnnaSophia Robb,1431812843 +84136,50601,sad,1431812858 +84136,50601,Zooey Deschanel,1431812895 +84136,58559,Atmospheric,1432171620 +84136,58559,Batman,1432171612 +84136,58559,psychology,1432171622 +84136,58559,superhero,1432171615 +84136,64969,funny,1431812925 +84136,64969,Jim carrey,1431812917 +84136,64969,rock band,1431812940 +84136,64969,Zooey Deschanel,1431812919 +84136,88140,Marvel,1432171659 +84136,88140,superhero,1432171664 +84136,88140,world war ii,1432171658 +84136,108243,boring,1432170331 +84136,108243,plotless,1432170331 +84136,108243,silly,1432170331 +84136,110553,Emma Stone,1432171784 +84136,110553,Marvel,1432171785 +84136,110553,superhero,1432171787 +84136,113345,action,1432173801 +84136,113345,awful script,1432173780 +84136,113345,obvious,1432173793 +84136,113345,sci-fi,1432173785 +84136,122886,absurd,1452037186 +84136,122886,BB-8,1452037283 +84136,122886,Carrie Fisher,1452037255 +84136,122886,female protagonist,1452037240 +84136,122886,feminism,1452037227 +84136,122886,feminist,1452037194 +84136,122886,Harrison Ford,1452037250 +84136,122886,Mark Hamill,1452037277 +84136,122886,Plot Recycling,1452037243 +84136,122886,Star Wars,1452037246 +84136,129707,boring,1433820296 +84136,129707,Olivia Wilde,1433820285 +84138,60069,Animation,1443507519 +84138,60069,cute,1443507510 +84138,60069,dystopia,1443507537 +84138,60069,emotional,1443507534 +84138,60069,Future,1443507501 +84138,60069,human versus computer,1443507516 +84138,60069,inspirational,1443507536 +84138,60069,love story,1443507512 +84138,60069,Oscar (Best Animated Feature),1443507544 +84138,60069,pixar,1443507491 +84138,60069,robots,1443507493 +84138,60069,Sci-Fi,1443507496 +84138,60069,social commentary,1443507498 +84138,60069,space,1443507521 +84138,77658,astronomy,1443580580 +84138,77658,Carl Sagan,1443580577 +84138,77658,enlightening,1443580588 +84138,77658,evolution,1443580584 +84138,77658,irreligion,1443580592 +84138,77658,science,1443580575 +84138,79132,alternate reality,1443507574 +84138,79132,complicated,1443507586 +84138,79132,great soundtrack,1443507610 +84138,79132,Leonardo DiCaprio,1443507579 +84138,79132,mindfuck,1443507581 +84138,79132,philosophy,1443507589 +84138,79132,psychological,1443507593 +84138,79132,science fiction,1443507602 +84138,79132,surreal,1443507571 +84138,79132,thought-provoking,1443507576 +84138,79132,thriller,1443507603 +84138,79132,twist ending,1443507584 +84138,79132,visually appealing,1443507570 +84138,93838,intense,1443507383 +84138,93838,martial arts,1443507380 +84138,110501,martial arts,1443507413 +84141,260,fantasy,1437058557 +84141,260,imaginative,1437058573 +84141,260,no CGI,1437058591 +84141,117887,emotional,1438177810 +84141,117887,funny,1438177810 +84141,117887,heartwarming,1438177810 +84141,127098,creative,1437059581 +84141,127098,dark comedy,1437059581 +84141,127098,drama,1437059581 +84152,260,Oscar (Best Effects - Visual Effects),1431499599 +84152,260,Science Fiction,1431499569 +84152,260,scifi cult,1431499581 +84165,260,space,1432525560 +84183,48780,Christian Bale,1452367849 +84183,48780,twist ending,1452367859 +84191,5418,Nostalgic,1308315015 +84191,5418,Silence,1308315003 +84191,5418,Wonderful director,1308314985 +84195,82,netflix,1313618543 +84195,302,netflix,1226104039 +84195,571,netflix,1297289290 +84195,608,black comedy,1297290065 +84195,930,oppl,1285879294 +84195,959,netflix,1262818612 +84195,974,own,1222462244 +84195,1123,netflix,1282667176 +84195,1162,netflix,1226105124 +84195,1281,netflix,1282666264 +84195,1412,oppl,1308063746 +84195,1834,netflix,1226104287 +84195,1939,oppl,1213023822 +84195,1942,Good Book Bad Movie,1262922169 +84195,2065,netflix,1326216514 +84195,2359,Ireland,1326857178 +84195,2359,Irish,1326857181 +84195,2359,NOT British,1326857161 +84195,3134,netflix,1313619014 +84195,3229,netflix,1262817735 +84195,3533,oppl,1297284515 +84195,4741,netflix,1313432947 +84195,4801,netflix,1262818328 +84195,5225,netflix,1226104896 +84195,5525,netflix,1282666604 +84195,5626,netflix,1326216766 +84195,6042,netflix,1243741893 +84195,6182,oppl,1226104843 +84195,6244,netflix,1282667274 +84195,6647,netflix,1278955503 +84195,6672,netflix,1297288304 +84195,6776,netflix,1243741966 +84195,6828,oppl,1297284649 +84195,6869,netflix,1313618641 +84195,7061,netflix,1262818378 +84195,7082,oppl,1226105318 +84195,7116,oppl,1285473504 +84195,7333,oppl,1297284263 +84195,7479,netflix,1262818530 +84195,7505,netflix,1282666527 +84195,7582,netflix,1262817658 +84195,7583,netflix,1262818675 +84195,7832,netflix,1274975778 +84195,7833,netflix,1274975729 +84195,7835,netflix,1274975823 +84195,7915,netflix,1297288643 +84195,8128,oppl,1282052206 +84195,8207,oppl,1285473376 +84195,8232,netflix,1313437507 +84195,8302,netflix,1282666202 +84195,8335,netflix,1266936527 +84195,8753,netflix,1282665577 +84195,8765,netflix,1297284340 +84195,8786,netflix,1313617493 +84195,8828,netflix,1262819148 +84195,8874,black comedy,1297290197 +84195,8933,netflix,1226105274 +84195,8971,netflix,1313618124 +84195,9000,netflix,1226104195 +84195,9010,netflix,1226104331 +84195,25769,netflix,1282665337 +84195,25828,netflix,1262818480 +84195,25850,KATHARINE Hepburn,1334756053 +84195,25868,netflix,1326216857 +84195,25886,netflix,1282662771 +84195,25906,netflix,1262818568 +84195,25943,netflix,1228005944 +84195,26116,oppl,1262817933 +84195,26222,netflix,1242135661 +84195,26324,netflix,1282666337 +84195,26325,netflix,1308065094 +84195,26395,netflix,1282663241 +84195,26463,netflix,1282666098 +84195,27002,netflix,1282664802 +84195,27255,netflix,1228006202 +84195,27716,netflix,1228006111 +84195,27866,netflix,1228006044 +84195,30745,netflix,1227991037 +84195,31547,netflix,1282665850 +84195,31903,netflix,1313618937 +84195,32025,netflix,1313617406 +84195,32657,netflix,1282665195 +84195,32853,netflix,1282662007 +84195,33288,netflix,1308063473 +84195,38198,netflix,1228005994 +84195,40010,netflix,1226105234 +84195,42197,black comedy,1297290086 +84195,42422,netflix,1244558098 +84195,43376,netflix,1313617288 +84195,44195,oppl,1226104233 +84195,44633,netflix,1230270887 +84195,46855,oppl,1326216632 +84195,46976,oppl,1214588413 +84195,47152,netflix,1313618205 +84195,47274,oppl,1282659712 +84195,47725,netflix,1261111142 +84195,47940,netflix,1227993274 +84195,48032,netflix,1313432606 +84195,48872,netflix,1228004590 +84195,49225,oppl,1282659811 +84195,50641,netflix,1291862417 +84195,50658,netflix,1227992694 +84195,51255,black comedy,1297290041 +84195,51773,netflix,1304015963 +84195,51991,oppl,1228006380 +84195,53161,not found,1227993575 +84195,53769,netflix,1227993352 +84195,53883,netflix,1297289067 +84195,54094,netflix,1243741721 +84195,54196,netflix,1226091136 +84195,54745,netflix,1226103960 +84195,54995,netflix,1226103212 +84195,55063,netflix,1228004947 +84195,55156,netflix,1244561721 +84195,55851,netflix,1226091031 +84195,55901,netflix,1244561091 +84195,56671,netflix,1244561790 +84195,57669,black comedy,1259166815 +84195,58191,netflix,1282663371 +84195,59440,anti-abortion,1277236435 +84195,59519,netflix,1226092178 +84195,59549,netflix,1244560720 +84195,59910,netflix,1231258456 +84195,60137,netflix,1297289550 +84195,60147,netflix,1226091426 +84195,61269,netflix,1315950996 +84195,63062, oppl,1237898859 +84195,63698,netflix,1244562471 +84195,64197,netflix,1244560983 +84195,64273,netflix,1244562343 +84195,64278,netflix,1244562255 +84195,64993,netflix,1244561034 +84195,65037,netflix,1244560890 +84195,65235,netflix,1245337448 +84195,67508,netflix,1274190562 +84195,67801,netflix,1266936831 +84195,68472,netflix,1313617571 +84195,68612,netflix,1266937003 +84195,68858,netflix,1277573530 +84195,68967,netflix,1282052066 +84195,69187,netflix,1254837158 +84195,69275,netflix,1266938528 +84195,69529,netflix,1250628021 +84195,69951,new,1262901689 +84195,70293,france,1250088785 +84195,70451,netflix,1313425691 +84195,70533,netflix,1264517112 +84195,70687,netflix,1262543481 +84195,70846,netflix,1264517015 +84195,71438,netflix,1304015493 +84195,71468,netflix,1264517280 +84195,71542,oppl,1266936026 +84195,71745,new,1262543892 +84195,72176,oppl,1266938217 +84195,72395,new,1262543901 +84195,72554,netflix,1297288754 +84195,72741,oppl,1266936723 +84195,73344,netflix,1277574366 +84195,73587,netflix,1297281861 +84195,73681,netflix,1313432692 +84195,74504,netflix,1304015597 +84195,74677,netflix,1274190754 +84195,75813,netflix,1277573612 +84195,76079,netflix,1277574040 +84195,76091,netflix,1277573877 +84195,77154,netflix,1277574022 +84195,77307,netflix,1297281980 +84195,77330,oppl,1285687770 +84195,77359,netflix,1277574601 +84195,77421,oppl,1297282346 +84195,77658,netflix,1282662204 +84195,77833,netflix,1319821322 +84195,77854,oppl,1297284858 +84195,78103,netflix,1319822733 +84195,78574,netflix,1277572674 +84195,78746,netflix,1297282600 +84195,79091,oppl,1297282677 +84195,79293,oppl,1297283765 +84195,79357,netflix,1282659324 +84195,80185,netflix,1297280737 +84195,80553,netflix,1297283515 +84195,80584,oppl,1297283710 +84195,80586,oppl,1297283412 +84195,80939,oppl,1297283357 +84195,81383,netflix,1297283243 +84195,81456,netflix,1313425918 +84195,81639,oppl,1297283564 +84195,81804,oppl,1313437676 +84195,82463,netflix,1308063662 +84195,83270,feminism,1304015208 +84195,83270,feminist,1304015208 +84195,83531,netflix,1315950349 +84195,84187,netflix,1304015391 +84195,85179,netflix,1304015812 +84195,85438,netflix,1313425811 +84195,86487,oppl,1326215820 +84195,88267,oppl,1319821415 +84195,89039,netflix,1326216017 +84195,90866,oppl,1335191233 +84195,91077,netflix,1335191469 +84195,93892,netflix,1335191260 +84195,93939,netflix,1335191699 +84211,3801,murder,1425438063 +84211,3801,truth,1425438063 +84211,3801,violin,1425438063 +84234,924,Stoner Movie,1184845638 +84234,1032,Stoner Movie,1184845742 +84234,1208,Stoner Movie,1184845619 +84234,3677,Stoner Movie,1184843465 +84234,4734,Stoner Movie,1184846058 +84234,8807,Stoner Movie,1184846044 +84234,42725,Stoner Movie,1184846084 +84273,4641,pretentious,1153714998 +84291,260,jedi,1437919185 +84291,260,"sf,science fiction",1437919137 +84340,33166,everything,1381268774 +84355,1676,satire,1225936330 +84385,32,Terry Gilliam,1139281151 +84385,74,Mary Stuart Masterson,1139281033 +84385,121,child abuse,1139281048 +84385,215,Julie Delpy,1139281038 +84385,235,Tim Burton,1139281062 +84385,247,Peter Jackson,1139281078 +84385,425,affective disorder,1139281046 +84385,541,PKD,1139281040 +84385,608,Coen brothers,1139281064 +84385,3735,Al Pacino,1139343658 +84385,5245,Al Pacino,1139344123 +84385,6504,lesbian,1139349981 +84385,32582,surprise ending,1139343039 +84385,34526,kidnapping,1139353755 +84398,25996,Streisand,1167379147 +84400,260,blowyourmind,1437794515 +84400,260,incest,1437794507 +84400,260,masterpiece,1437794541 +84407,648,i dont like Tom Cruise,1139801692 +84407,1101,i don't like tom cruise,1139801979 +84407,44399,Robert Downey Jr,1166347081 +84407,44399,Tim Allen,1166347075 +84446,296,awesome,1431794794 +84446,296,cult,1431794794 +84446,296,dark humor,1431794794 +84451,2571,TV,1193409508 +84457,1,Disney,1291342460 +84457,260,adventure,1291358128 +84457,260,classic,1291358141 +84457,260,fantasy,1291358122 +84457,260,sci-fi,1291358116 +84457,1214,aliens,1291358737 +84457,1214,predictable,1291358771 +84457,1214,sci-fi,1291358667 +84457,1282,Disney,1291342306 +84457,1282,surreal,1291342304 +84457,1527,grandstand,1291358984 +84457,1527,surreal,1291358931 +84457,2571,philosophy,1291358382 +84457,2571,sci-fi,1291358367 +84457,2571,thought-provoking,1291358500 +84457,2571,virtual reality,1291358379 +84457,3114,animation,1291357797 +84457,3114,Disney,1291357806 +84457,3114,Pixar,1291357812 +84457,3623,action,1291359100 +84457,3623,adventure,1291359098 +84457,4306,animation,1291358303 +84457,4306,comedy,1291358307 +84457,4306,satire,1291358300 +84457,6365,action,1291358519 +84457,6365,sequel,1291358456 +84457,6377,animation,1291358633 +84457,6377,Disney,1291358628 +84457,6377,too cute,1291358630 +84457,56367,comedy,1291358576 +84457,56367,excellent script,1291358586 +84457,56367,notable soundtrack,1291358573 +84457,56367,witty,1291358571 +84457,60069,funny,1291358883 +84457,60069,pixar,1291358808 +84457,60069,predictable,1291358817 +84457,60069,romance,1291358838 +84457,68954,dreams,1291359041 +84457,68954,Pixar,1291359032 +84457,68954,romance,1291359055 +84457,68954,touching,1291359039 +84457,72378,action,1291342218 +84457,72378,sci-fi,1291342220 +84457,72998,sci-fi,1291358219 +84457,76293,funny,1291342264 +84457,76293,Steve Carell,1291342261 +84457,76293,Tina Fey,1291342242 +84459,109487,thought-provoking,1419087488 +84502,48738,want to see,1169098140 +84513,2713,Betty White-tastic! ...but the rest is formula...,1198097681 +84513,57640,comic book,1223430286 +84513,57640,superhero,1223430270 +84513,59315,comic book,1223430146 +84513,59315,superhero,1223430117 +84520,27850,capitalism,1208439570 +84550,260,imdb top 250,1431896845 +84563,1625,script,1385321128 +84575,60,based on book,1388620313 +84575,69,Chris Tucker,1388619998 +84575,69,friendship,1388619986 +84575,69,great soundtrack,1388620006 +84575,69,Ice Cube,1388620001 +84575,69,stupid last comment,1388619988 +84575,180,Jason Mewes,1388619734 +84575,180,Jay and Silent Bob,1388619736 +84575,180,Kevin Smith,1388619730 +84575,180,view askew,1388619732 +84575,223,cynical,1388619704 +84575,223,independent film,1388619695 +84575,223,jay and silent bob,1388619700 +84575,223,Kevin Smith,1388619683 +84575,223,philosophical,1388619697 +84575,223,surreal,1388619709 +84575,223,view askew,1388619685 +84575,223,witty,1388619689 +84575,778,based on a book,1388619634 +84575,778,black comedy,1388619639 +84575,778,British,1388619640 +84575,778,Ewan McGregor,1388619635 +84575,778,social commentary,1388619644 +84575,778,surreal,1388619649 +84575,1136,British,1388620080 +84575,1136,british comedy,1388620078 +84575,1136,hilarious,1388620096 +84575,1136,Monty Python,1388620083 +84575,1136,off-beat comedy,1388620092 +84575,1136,satire,1388620084 +84575,1136,Terry Gilliam,1388620087 +84575,1136,witty,1388620089 +84575,1194,Cheech Marin,1388619872 +84575,1194,Funniest Movies,1388619884 +84575,1194,hippie,1388619875 +84575,1194,inane,1388619887 +84575,1194,stoner comedy,1388619890 +84575,1194,Tommy Chong,1388619878 +84575,1194,weed,1388619881 +84575,1257,black comedy,1388619420 +84575,1257,cult film,1388619435 +84575,1257,geeks,1388619428 +84575,1257,imagination,1388619437 +84575,1257,John Cusack,1388619421 +84575,1257,quirky,1388619423 +84575,1257,surreal,1388619424 +84575,1297,engineering,1388619373 +84575,1297,nerds,1388619375 +84575,1297,Quotable,1388619403 +84575,1297,smart comedy,1388619380 +84575,1297,witty,1388619383 +84575,1923,Ben Stiller,1388619914 +84575,1923,boring,1388619939 +84575,1923,not funny,1388619921 +84575,1923,stupid,1388619926 +84575,1967,Adventure,1388618713 +84575,1967,Coming-of-Age,1388618736 +84575,1967,David Bowie,1388618725 +84575,1967,dreamlike,1388618738 +84575,1967,fairy tales,1388618729 +84575,1967,fantasy,1388618727 +84575,1967,fantasy world,1388618716 +84575,1967,good versus evil,1388618731 +84575,1967,seen more than once,1388618720 +84575,1967,surreal,1388618722 +84575,2005,adventure,1388618764 +84575,2005,Children,1388618766 +84575,2005,cult film,1388618778 +84575,2005,Fantasy,1388618767 +84575,2005,magic,1388618777 +84575,2005,pirates,1388618773 +84575,2005,Teen movie,1388618771 +84575,2005,treasure hunt,1388618769 +84575,2133,1980s,1388618972 +84575,2133,adventure,1388618961 +84575,2133,babysitting,1388618974 +84575,2133,mishaps,1388618981 +84575,2133,worth watching,1388618983 +84575,2134,Anthony Michael Hall,1388619359 +84575,2134,geeks,1388619326 +84575,2134,John Hughes,1388619328 +84575,2140,dark,1388620358 +84575,2140,dark fantasy,1388620360 +84575,2140,fantasy,1388620345 +84575,2140,fantasy world,1388620364 +84575,2140,good vs evil,1388620370 +84575,2140,wizards,1388620347 +84575,2161,Adventure,1388620248 +84575,2161,based on a book,1388620239 +84575,2161,dragon,1388620240 +84575,2161,Fantasy,1388620242 +84575,2161,fantasy world,1388620244 +84575,2193,characters,1388618557 +84575,2193,dragon,1388618533 +84575,2193,fantasy world,1388618535 +84575,2193,Good versus evil,1388618548 +84575,2193,magic,1388618538 +84575,2193,middle earth,1388618540 +84575,2193,sword and sorcery,1388618542 +84575,2193,wizards,1388618545 +84575,2596,cult film,1388619485 +84575,2596,hallucination,1388619487 +84575,2596,Matthew Lillard,1388619492 +84575,2596,michael goorjian,1388619558 +84575,2596,sarcasm,1388619517 +84575,2692,alternate endings,1388620515 +84575,2692,alternate reality,1388620513 +84575,2692,artistic,1388620499 +84575,2692,existentialism,1388620510 +84575,2692,nonlinear,1388620501 +84575,2692,surreal,1388620502 +84575,2692,thought-provoking,1388620504 +84575,2692,time loop,1388620506 +84575,2692,visually appealing,1388620508 +84575,3147,emotional,1388618373 +84575,3147,great acting,1388618370 +84575,3147,imdb top 250,1388618403 +84575,3147,nostalgic,1388618382 +84575,3147,Stephen King,1388618365 +84575,3147,Tom Hanks,1388618377 +84575,3243,Brendan Fraser,1388619114 +84575,3243,high school,1388619132 +84575,3243,Pauly Shore,1388619054 +84575,3243,sean astin,1388619051 +84575,3479,fantasy,1388618617 +84575,3479,magic,1388618634 +84575,3479,Matthew Broderick,1388618621 +84575,3479,medieval,1388618631 +84575,3479,Rutger Hauer,1388618624 +84575,3479,SUPERNATURAL ROMANCE,1388618628 +84575,3479,sword and sorcery,1388618626 +84575,3479,transformation,1388618646 +84575,4218,1980s,1388619586 +84575,4218,Keanu Reeves,1388619581 +84575,4520,80s music,1388619032 +84575,4520,Carol Kane,1388619000 +84575,4520,Corey Feldman,1388619029 +84575,4520,Corey Haim,1388619011 +84575,4520,Heather Graham,1388619006 +84575,4520,teen comedy,1388619018 +84575,4878,complicated,1388620558 +84575,4878,cult film,1388620545 +84575,4878,dreamlike,1388620542 +84575,4878,mental illness,1388620543 +84575,4878,psychology,1388620541 +84575,4878,quirky,1388620552 +84575,4878,social commentary,1388620540 +84575,4878,surreal,1388620538 +84575,4878,thought-provoking,1388620547 +84575,4878,twist ending,1388620549 +84575,4993,Action,1388618517 +84575,4993,adventure,1388618500 +84575,4993,atmospheric,1388618515 +84575,4993,based on a book,1388618513 +84575,4993,beautifully filmed,1388618511 +84575,4993,fantasy,1388618502 +84575,4993,high fantasy,1388618503 +84575,4993,magic,1388618505 +84575,4993,Oscar (Best Cinematography),1388618507 +84575,4993,Oscar (Best Effects - Visual Effects),1388618509 +84575,6807,black comedy,1388620037 +84575,6807,British,1388620035 +84575,6807,british comedy,1388620034 +84575,6807,controversial,1388620044 +84575,6807,hilarious,1388620047 +84575,6807,John Cleese,1388620039 +84575,6807,Monty Python,1388620040 +84575,6807,philosophy,1388620053 +84575,6807,satire,1388620055 +84575,6807,sketch comedy,1388620057 +84575,6807,Terry Gilliam,1388620043 +84575,8807,Buddy movie,1388619782 +84575,8807,road trip,1388619774 +84575,27251,adventure,1388618681 +84575,27251,alternate reality,1388618683 +84575,27251,fairy tale,1388618678 +84575,27251,fantasy,1388618670 +84575,27251,mythical creatures,1388618671 +84575,27251,Nice Long MiniSeries,1388618674 +84575,50601,based on a book,1388620265 +84575,50601,fantasy,1388620293 +84575,50601,sad,1388620291 +84575,54259,adapted from:book,1388618597 +84575,54259,atmospheric,1388618575 +84575,54259,author:Neil Gaiman,1388618576 +84575,54259,based on a book,1388618573 +84575,54259,british,1388618595 +84575,54259,coming of age,1388618584 +84575,54259,fairy tale,1388618581 +84575,54259,fantasy,1388618582 +84575,54259,modern fantasy,1388618590 +84575,54259,Robert De Niro,1388618585 +84575,54259,whimsical,1388618588 +84575,59022,John Cho,1388619824 +84575,59022,kal penn,1388619823 +84575,59022,sequel,1388619839 +84575,59022,so bad it's good,1388619831 +84575,63082,based on a book,1388618426 +84575,63082,dreamlike,1388618442 +84575,63082,emotional,1388618440 +84575,63082,romance,1388618433 +84575,63082,social commentary,1388618429 +84575,66934,anti-hero,1388620447 +84575,66934,bittersweet,1388620448 +84575,66934,funny,1388620465 +84575,66934,good dialogue,1388620462 +84575,66934,great concept,1388620459 +84575,66934,great soundtrack,1388620450 +84575,66934,low budget,1388620482 +84575,66934,mad scientist,1388620453 +84575,66934,musical,1388620455 +84575,66934,parody,1388620443 +84575,66934,superhero,1388620445 +84575,66934,twist ending,1388620479 +84581,92259,French,1452108371 +84590,1688,charm school,1433447331 +84590,1688,princess,1433447339 +84590,2316,witch,1433447528 +84590,2858,suburbia,1433447297 +84590,33836,witch,1433447404 +84599,70159,ambiance,1327077093 +84599,70159,surprise ending,1327078163 +84599,72998,scenic,1327077029 +84599,72998,thought-provoking,1327077042 +84605,260,EPIC,1441264568 +84605,260,space opera,1441264550 +84605,111759,Alien Invasion,1441264741 +84605,111759,aliens,1441264747 +84605,111759,powersuit,1441264738 +84605,111759,sci-fi,1441264754 +84605,111759,time loop,1441264728 +84605,111759,time travel,1441264731 +84605,111759,war,1441264757 +84607,671,funny,1186990408 +84607,3785,funny,1186990334 +84607,3967,funny,1186990403 +84624,260,awesome,1436647876 +84624,260,good vs evil,1436647897 +84624,260,space adventure,1436647882 +84624,6408,drunken animals,1437155206 +84624,6408,funny,1437155219 +84624,106920,absorbing,1436648665 +84624,106920,touching,1436648665 +84624,106920,unconventional romance,1436648665 +84626,33162,Director's cut is a must,1409198581 +84626,67923,Racing,1243059175 +84626,81158,afghanistan,1435639398 +84626,81158,documentary,1435639416 +84626,99532,based on a book,1357252512 +84626,99532,French,1357252518 +84626,99532,long,1357252553 +84626,99532,romance,1357252577 +84626,99532,Tragedy,1357252577 +84626,99532,TV miniseries,1357252502 +84626,103772,comic book,1418067778 +84626,103772,Hugh Jackman,1418067775 +84626,103772,Marvel,1418067761 +84626,103772,superhero,1418067784 +84626,103772,x-men,1418067792 +84626,106072,marvel,1418151419 +84626,109781,k-drama,1433130368 +84626,109781,korean,1433130366 +84626,109781,romance,1433130371 +84626,109781,Sung-Hee Jo,1433130358 +84626,109781,werewolf,1433130390 +84626,112183,great performances,1453186267 +84626,112183,pretentious,1453186260 +84626,112183,single shot,1453186276 +84626,113378,based on a book,1410673678 +84626,113378,cerebral,1410673678 +84626,113378,dystopian future,1410673678 +84626,113378,emotions,1410673678 +84626,113378,Jeff Bridges,1410673677 +84626,113378,Meryl Streep,1410673678 +84626,113378,Taylor Swift,1410673677 +84626,113378,Utopian society,1410673678 +84626,134853,Pixar,1451969702 +84626,148626,finance,1453347272 +84626,148626,fraud,1453347279 +84636,260,father-son relationship,1444813910 +84636,260,Nice Story telling,1444813902 +84636,5618,good animation,1444814457 +84636,5618,great screenplay,1444814479 +84663,1747,fun,1146094402 +84684,260,classic sci-fi,1437210784 +84684,260,corny,1437210775 +84684,356,americana,1437720015 +84684,356,cliché,1437720015 +84684,356,trite,1437720015 +84684,1258,Stanley Kubrick,1446240507 +84684,1258,Stephen King,1446240499 +84684,4262,Nudity (Topless - Brief),1444250502 +84684,5617,black comedy,1442866222 +84684,5617,quirky,1442866209 +84684,56145,Boring,1450731540 +84684,56145,derivative,1450731579 +84684,56145,predictable,1450731524 +84684,56145,stephen king,1450731398 +84684,68358,jj abrams,1443382128 +84684,79242,adultery,1444373602 +84684,79242,lesbian,1444373598 +84684,112421,Maggie Gyllenhaal,1449789204 +84684,115713,nudity (full frontal),1444250592 +84684,122882,Colourful apocalypse,1446151330 +84684,122882,feminism,1446151346 +84684,122882,feminist,1446151360 +84684,122882,sci-fi,1446151334 +84684,140846,Cliché,1445804081 +84684,140846,Romcom,1445804071 +84690,260,space,1431446982 +84690,260,space combat,1431446986 +84691,50,Good movie with deep quotes,1451765583 +84691,112556,good acting,1451765640 +84703,1789,movie to see,1175743603 +84729,7293,Adam Sandler,1147547852 +84733,1245,honour,1427570310 +84733,6192,truly great movie,1427570407 +84733,85885,very rare movie that is genuinely erotic whilst not exploitative,1427570361 +84752,102792,drama,1433977141 +84752,102792,passionate,1433977141 +84752,102792,romance,1433977141 +84761,260,casual...,1437083724 +84761,260,non interesting,1437083745 +84781,1204,classic,1445376304 +84781,1272,WW II,1445376324 +84792,260,sci-fi,1439810317 +84794,114028,history,1431541727 +84794,114028,lgbt,1431541727 +84794,114028,politics,1431541727 +84810,260,family film,1435212136 +84810,260,Good for the family,1435212168 +84810,135887,Funny,1435356547 +84818,1206,cult film,1342267937 +84818,2959,atmospheric,1342267908 +84818,2959,based on a book,1342267910 +84818,2959,dark comedy,1342267906 +84818,2959,psychological,1342267902 +84818,2959,psychology,1342267894 +84818,2959,surreal,1342267901 +84818,2959,thought-provoking,1342267895 +84818,2959,twist ending,1342267897 +84818,2959,violence,1342267899 +84825,120639,based on a book,1420950441 +84825,120639,coming of age,1420348312 +84825,120639,heartwarming,1420950441 +84825,120639,young adult,1420348344 +84826,260,action,1436413164 +84826,260,space adventure,1436413170 +84892,541,dystopia,1298334466 +84892,741,cyberpunk,1298334992 +84892,968,zombies,1298335288 +84892,1223,robots,1298335163 +84892,1257,quirky,1298334430 +84892,1732,dark comedy,1298334443 +84892,2529,dystopia,1298335342 +84892,2529,post-apocalyptic,1298335340 +84892,2571,post-apocalyptic,1298335185 +84892,2571,virtual reality,1298335182 +84892,2959,dark comedy,1298335124 +84892,2997,dark comedy,1298334403 +84892,3911,dark comedy,1298334420 +84892,3911,satire,1298334423 +84892,6502,post-apocalyptic,1298335256 +84892,6502,zombies,1298335258 +84892,27611,post-apocalyptic,1298334385 +84892,27660,cyberpunk,1298335314 +84892,48774,dystopia,1298335173 +84892,60069,post-apocalyptic,1298335206 +84892,70286,aliens,1298335218 +84892,70286,social commentary,1298335216 +84904,260,classic,1439713047 +84904,260,sci-fi,1439713041 +84908,260,action,1439663776 +84908,260,sci fi,1439663758 +84918,799,cliche,1178952492 +84918,799,entropy,1178952530 +84924,33615,animation,1430118617 +84924,33615,jungle,1430118617 +84924,33615,lion,1430118617 +84931,260,action,1435093739 +84931,260,sci-fi,1435093724 +84932,2571,artificial intelligence,1452479544 +84932,2571,dystopia,1452479538 +84932,2571,thought-provoking,1452479568 +84932,122882,charlize theron,1452479504 +84932,122882,dystopian,1452479513 +84947,2959,atmospheric,1430606207 +84947,2959,dark comedy,1430606212 +84947,2959,disturbing,1430606203 +84947,2959,mental illness,1430606200 +84947,2959,psychological,1430606198 +84947,2959,satirical,1430606205 +84947,2959,social commentary,1430606215 +84947,2959,surreal,1430606189 +84947,3535,dark comedy,1430606363 +84947,3535,funny,1430606356 +84947,3535,humorous,1430606361 +84947,3535,insanity,1430606359 +84947,3535,psychological,1430606365 +84947,3535,psychology,1430606353 +84947,4226,cult film,1430606390 +84947,4226,memory,1430606398 +84947,4226,nonlinear,1430606394 +84947,4226,paranoid,1430606405 +84947,4226,psychological,1430606400 +84947,4226,twist ending,1430606396 +84947,4878,atmospheric,1430606292 +84947,4878,cult film,1430606304 +84947,4878,dreamlike,1430606301 +84947,4878,mental illness,1430606281 +84947,4878,original,1430606298 +84947,4878,psychology,1430606294 +84947,4878,surreal,1430606285 +84947,4878,time travel,1430606283 +84947,4878,weird,1430606289 +84947,7361,cult film,1430606327 +84947,7361,nonlinear,1430606330 +84947,7361,short-term memory loss,1430606336 +84947,7361,surreal,1430606322 +84947,7361,thought-provoking,1430606325 +84947,84273,conspiracy theory,1430606275 +84947,84273,misrepresented sources,1430606275 +84947,84273,pseudoscience,1430606275 +84962,260,adventure,1439016565 +84962,260,classic,1439016559 +84968,26082,anti-authoritarian,1438900158 +84968,26082,Criterion,1438900176 +84968,26082,Samurai,1438900151 +84971,260,johnwilliams,1438899672 +84971,260,spacebattles,1438899659 +84980,79132,alternate reality,1415214525 +84980,79132,surreal,1415214521 +84997,1,ya boy,1140405233 +84997,32,good as hell,1140405459 +84997,110,shit on a stick,1140405181 +84997,150,kevin bacon is a beast,1140405138 +84997,260,w/e,1140405193 +84997,296,sweet,1140405036 +84997,318,i cant take this movie it makes me angry its so boring,1140405124 +84997,356,hell ya!,1140405051 +84997,380,decent thiller,1140405221 +84997,457,this movie sucked,1140405079 +84997,480,boooo,1140405070 +84997,588,hard to rate,1140404843 +84997,589,kick ass,1140405204 +84997,590,i hate this pile of crap,1140405161 +84997,592,way overrated,1140405101 +84997,593,ehh,1140405044 +84997,780,pretty sucky,1140405251 +84997,832,shit on a stick,1140404820 +84997,1377,not that bad,1140405746 +84997,1527,not bad,1140405621 +84997,1552,dave chapelle,1140405721 +84997,1584,stoner movie,1140405699 +84997,1645,keanu reeves is a homo,1140405737 +84997,1674,awful...just awful,1140405690 +84997,1721,this is THE worst movie of all time someone should be hurt,1140405658 +84997,1784,grood,1140405709 +84997,1923,hella cool,1140405578 +84997,2006,hate this shit,1140405755 +84997,2324,nice movie,1140405601 +84997,2329,w/e,1140405586 +84997,2353,nopt bad,1140405671 +84997,2700,instant classic,1140404817 +84997,2701,this movie is pretty...pretty gay,1140405381 +84997,2706,awesome,1140404918 +84997,2716,why do i hate this?,1140405447 +84997,2804,i like watching this movie when im so high i dont know left from right,1140405498 +84997,2985,w/e,1140405525 +84997,3448,ok,1140405412 +84997,3623,i hate this movie with a fiery passion,1140405393 +84997,4226,so damn good,1140405539 +84997,4886,hella cool,1140405427 +84997,4963,not bad,1140405509 +84997,5060,cool-ish,1140405339 +84997,34162,i love this movie,1140404944 +84997,34338,fucking awesome,1140405306 +85004,593,intelligent dialogue,1437270958 +85004,593,police investigation,1437270958 +85004,593,serial killer,1437270958 +85007,56782,Daniel Day-Lewis,1273861777 +85007,76251,11 year old explicit violence,1273859348 +85007,76251,action,1273859356 +85007,76251,adapted from:comic,1273859361 +85007,76251,funny,1273859346 +85007,76251,graphic violence,1273859378 +85007,76251,humor,1273859402 +85007,76251,pop culture references,1273859406 +85007,76251,superhero,1273859408 +85007,76251,vigilante,1273859414 +85009,2571,Action,1285000105 +85009,2571,alternate reality,1285000133 +85009,2571,cyberpunk,1285000112 +85009,2571,imdb top 250,1285000142 +85009,2571,Keanu Reeves,1285000126 +85009,2571,post apocalyptic,1285000101 +85009,2571,sci-fi,1285000097 +85009,2571,stylized,1285000149 +85009,2571,virtual reality,1285000123 +85012,46723,scenario,1349699849 +85012,46723,terrorism,1349699869 +85012,72720,cinematography,1349699616 +85012,72720,styling,1349699628 +85012,90531,Carey Mulligan's acting,1349699107 +85012,90531,music,1349699061 +85012,90531,running scene,1349699133 +85012,90809,music,1349772266 +85107,260,classic sci-fi,1442088749 +85107,260,good science fictional technology,1442088787 +85133,2248,good soundtrack,1367526799 +85133,2248,high school,1367526800 +85133,2248,romantic,1367526792 +85133,2671,Good Romantic Comedies,1367526573 +85133,2671,Rhys Ifans,1367526566 +85133,3481,Jack Black,1367526682 +85133,3481,Nick Hornby,1367526675 +85133,3897,journalism,1367526733 +85133,3897,soundtrack,1367526712 +85133,3897,Zooey Deschanel,1367526717 +85133,4246,comedy,1367526543 +85133,5377,heartwarming,1367526454 +85133,5377,Hugh Grant,1367526464 +85133,5377,Nicholas Hoult,1367526503 +85133,5377,Nick Hornby,1367526445 +85133,5377,Rachel Weisz,1367526459 +85133,5377,satirical,1367526467 +85133,5377,Toni Collette,1367526496 +85133,6341,Boring,1413405312 +85133,6341,Elvis Costello soundtrack,1413405305 +85133,6341,paul rudd,1413405318 +85133,6341,Rachel Weisz,1413405309 +85133,6942,Hugh Grant,1367526614 +85133,6942,Keira Knightley,1367526605 +85133,8784,coming of age,1367526767 +85133,8784,funny,1367526771 +85133,8784,Great Soundtrack,1367526762 +85133,8784,Natalie Portman,1367526760 +85133,8784,quirky,1367526755 +85133,8784,Zach Braff,1367526758 +85133,49286,Hollywood,1367526633 +85133,49286,Jack Black,1367526667 +85133,49286,lovely characters,1367526657 +85133,49286,Nancy Meyers,1367526659 +85133,49286,switching places,1367526652 +85133,49286,unexpected,1367526644 +85133,54190,uninspired,1325219499 +85133,69436,bad script,1367526305 +85133,69436,Bill Hader,1367526350 +85133,69436,Christopher Mintz-Plasse,1367526347 +85133,69436,comedy,1367526310 +85133,69436,David Cross,1367526341 +85133,69436,Harold Ramis,1367526339 +85133,69436,Jack Black,1367526345 +85133,69436,Michael Cera,1367526334 +85133,69436,Olivia Wilde,1367526293 +85133,69436,scatologic jokes,1367526329 +85133,79357,cinematography,1385993445 +85133,79357,confusing,1385993461 +85133,79357,divorce,1385993488 +85133,79357,flashbacks,1385993463 +85133,79357,love affair,1385993485 +85133,79357,nonlinear,1385993481 +85133,79357,Nudity (Topless),1385993447 +85133,79357,overrated,1385993541 +85133,79357,philosophy,1385993483 +85133,79357,sci-fi,1421702421 +85133,79357,storytelling,1385993478 +85133,79357,surreal,1385993449 +85133,79357,thought provoking,1385993456 +85133,79357,time travel,1421702429 +85133,79357,too long,1385993453 +85133,79357,uninspired,1385993541 +85133,80693,coming of age,1367526807 +85133,80693,funny,1367526810 +85133,80693,quirky,1367526821 +85133,80693,subtle,1367526824 +85133,80693,Zach Galifianakis,1367526816 +85133,87529,boring,1367526387 +85133,87529,dissapointing,1367526380 +85133,87529,funny title,1367526411 +85133,87529,humorless,1367526386 +85133,103572,current matter,1385993629 +85133,132800,quirky,1446089741 +85140,25,alcoholism,1401007169 +85140,25,depressing,1401007167 +85140,25,drama,1401007176 +85140,25,Nicolas Cage,1401007171 +85140,474,Clint Eastwood,1401007133 +85140,474,John Malkovich,1401007136 +85140,474,tense,1401007123 +85140,474,thriller,1401007125 +85140,30707,Bittersweet,1401007233 +85140,30707,Clint Eastwood,1401007220 +85140,30707,emotional,1401007229 +85140,30707,gritty,1401007227 +85140,30707,Morgan Freeman,1401007217 +85140,30707,social commentary,1401007225 +85176,5,steve martin,1140455432 +85176,150,tom hanks,1165548454 +85176,186,hugh grant,1140455419 +85176,215,ethan hawke,1165548716 +85176,236,meg ryan,1140455397 +85176,246,school,1140455370 +85176,260,classic,1140454408 +85176,300,Ralph Fiennes,1165548551 +85176,318,Phenomenal!,1140454312 +85176,337,Johnny Depp***,1140455226 +85176,350,overrated,1140455303 +85176,357,didn't get it,1140455255 +85176,377,Sandra Bullock,1140454879 +85176,520,very funny!,1140454299 +85176,529,jodi foster,1140455238 +85176,587,sweet,1140455292 +85176,628,edward norton,1140455195 +85176,661,creepy good,1140454443 +85176,904,jimmy stewart,1140455208 +85176,1059,claire daines,1140455275 +85176,1059,clever,1140455275 +85176,1059,Leonardo DiCaprio,1140455275 +85176,1059,shakespeare,1140455275 +85176,1242,denzel washington,1140455181 +85176,1250,war,1140455073 +85176,1259,r. phoneix,1140455011 +85176,1291,cool,1140454996 +85176,1358,billy bob thorton,1140455032 +85176,1376,not too thrilled,1140455126 +85176,1517,cheezy to the max!,1140454281 +85176,1635,moody,1165548220 +85176,1639,hillarious,1140455102 +85176,1801,good but not accurate,1140454574 +85176,1954,stallone,1140455043 +85176,1956,il,1165548392 +85176,1956,lake forest,1165548392 +85176,2004,not worth your time,1140454610 +85176,2012,liked the other two better,1140455152 +85176,2019,classic,1140455086 +85176,2085,cute,1140454548 +85176,2174,Micheal Keaton,1140454821 +85176,2369,must see,1140454589 +85176,2396,colin firth,1165548675 +85176,2396,Gwenth Paltrow,1165548675 +85176,2396,joseph fiennes,1165548675 +85176,2571,philosophy,1140454933 +85176,2692,cool and great music,1140454393 +85176,2700,stupidity,1140454856 +85176,3052,controversial,1140454805 +85176,3113,stupid,1140455730 +85176,3114,Tom Hanks,1140454833 +85176,3260,boring,1140455703 +85176,3361,tim robbins,1140455685 +85176,3751,mel gibson,1140454892 +85176,3785,stupid,1140455743 +85176,3793,can't stand rogue!,1140454770 +85176,3893,renee z,1140455496 +85176,3978,boring,1140455549 +85176,3994,predictable,1140454952 +85176,4016,okay,1140454522 +85176,4041,overrated,1140455478 +85176,4306,witty!,1140454779 +85176,4351,keanu reeves,1140455511 +85176,4369,no desire to see this,1140454634 +85176,4641,thora birch,1140455465 +85176,4701,jakie chan,1140455522 +85176,4823,john cusack,1140455540 +85176,4890,Gwenth Paltrow,1140455564 +85176,5064,not by book,1165548741 +85176,5135,nair,1165548358 +85176,5349,tobey maguire,1140454907 +85176,5377,books,1140455343 +85176,5377,relationships,1140455343 +85176,5481,mike myers,1140455409 +85176,5812,moore,1165548495 +85176,6281,collin farrel,1140455383 +85176,6539,I loved it! Seen it five times already!,1140454336 +85176,6953,Benicio Del Toro,1165548439 +85176,8636,the best comic adaptation!,1140454370 +85203,55908,educational,1196942185 +85203,55908,religion,1196947169 +85204,111732,epic,1423082214 +85204,111732,sobering,1423082214 +85204,111732,uncomfortable,1423082214 +85206,55247,based on a true story,1378236413 +85213,260,classic sci-fi,1438095910 +85281,3105,hhgh,1194593193 +85298,246,Basketball documentary,1186398237 +85298,1302,Baseball,1186398213 +85298,1377,Batman,1186398204 +85298,4896,Philosopher's,1186398223 +85298,5378,Crap,1186398244 +85316,7149,kate winslet's tits,1149444590 +85340,1,very good,1140376300 +85340,10,it's a good movie but the end of 007 is always the same,1140375888 +85340,364,good,1140376276 +85340,780,very good,1140376706 +85340,1210,good,1140376527 +85340,2355,good,1140376235 +85340,2571,a very good moive,1140376530 +85340,3114,very good but the first was better,1140376263 +85340,5218,a very good moive,1140376165 +85340,7143,one of the bests movies have i seen,1140376117 +85340,8360,perfect,1140376351 +85340,8360,the best animation movie,1140376351 +85340,8636,better than second,1140376461 +85340,8636,very good,1140376461 +85340,8961,good,1140376419 +85340,33794,the best batman's movies,1140376496 +85340,41569,it was very Boring and awful,1140392138 +85340,41997,Perfect,1140392177 +85346,260,classic sf,1433833574 +85346,260,space adventure,1433833586 +85349,260,lightsabers,1434605878 +85349,260,sci-fi,1434605856 +85364,52722,Columbia Pictures,1200489899 +85414,1225,composer,1137191429 +85419,87234,great soundtrack,1427211235 +85419,87234,Richard Ayoade,1427211243 +85420,260,fictional,1432037017 +85420,260,sci-fi,1432037092 +85427,1235,older woman younger man,1247787615 +85427,1235,soundtrack,1247787615 +85427,1235,suicide attempt,1247787615 +85455,260,A great intro to new exciting characters.,1440171915 +85455,260,Basically the best opening for a movie.,1440171928 +85476,1207,good name,1435910565 +85476,2571,computer hacker,1435910538 +85476,2571,man,1435910535 +85481,456,chess,1446287257 +85481,2745,passion,1446287932 +85481,4259,chess,1446287467 +85481,8905,historical,1446287873 +85481,27189,samurai,1446290068 +85538,8994,Jerry Lewis,1169684857 +85538,104644,bizarre,1425641934 +85538,104644,surreal,1425641934 +85538,104644,whimsical,1425641934 +85538,123939,comedienne,1422409909 +85538,123939,gender,1422409909 +85538,123939,wishful,1422409909 +85551,1198,adventure,1453301952 +85551,1198,indiana jones,1453301957 +85555,80693,bittersweet,1446325148 +85555,80693,coming of age,1446325114 +85555,92439,coming of age,1446333121 +85555,96821,bittersweet,1446343305 +85555,96821,character development,1446248516 +85555,96821,child molestation,1446248538 +85555,96821,coming of age,1446248501 +85558,260,space adventure,1438562175 +85558,260,space opera,1438562209 +85581,260,fantasy action,1440185583 +85581,260,sci-fi,1440185600 +85593,79224,inspirational,1450993220 +85593,91976,Liam Neeson,1450993190 +85624,1274,cyberpunk,1436305804 +85624,1274,hallucinatory,1436305807 +85624,1274,visually stunning,1436305801 +85624,4239,Penelope Cruz,1432975599 +85624,4776,Ethan Hawke,1432591565 +85624,117511,awkward,1433746933 +85624,117511,Stephen Merchant,1433746924 +85624,119145,Hipster,1432600675 +85624,119145,Insincere,1432600682 +85624,127146,creepy,1435077621 +85624,127146,reinforces stereotypes,1435077621 +85624,127146,unintentionally ironic,1435077621 +85624,129737,Drivel,1433234152 +85624,129737,Nudity (Topless),1433234318 +85635,593,cannibalism; uncomfortable; crime; serial killer;,1437257067 +85635,593,horror,1437257067 +85635,593,psychothriller,1437257067 +85635,2360,Festen,1437273198 +85635,2495,La planète sauvage,1437267168 +85635,3592,L'orphelin de Perdide (titre original),1437261396 +85635,3655,La grande bouffe (titre original),1437258024 +85635,5088,Les valseuses,1437266058 +85635,5544,C'était demain,1437267093 +85635,7758,On connaît la chanson,1437268061 +85635,9010,Jeux d'enfants,1437266974 +85635,26109,Les tontons flingueurs,1437271905 +85635,26195,One + one,1437403104 +85635,43801,Le péril jeune,1437267700 +85635,69219,L'aile ou la cuisse,1437265707 +85635,69986,L'eau froide,1437266913 +85635,78276,Je vous salue Marie (original title),1437259056 +85635,78618,Les biches (titre original),1437260810 +85635,79775,Mensonges et trahisons et plus si affinités... (titre original),1437263616 +85635,86153,La Captive (original title),1437257793 +85635,91065,Landru,1437402913 +85635,93212,Une vie de chat,1437267774 +85635,113263,Alexandre le bienheureux (titre original),1437261294 +85635,122886,Fan service,1450745850 +85635,139062,La fausse suivante,1437264837 +85635,139062,Marivaux,1437264847 +85635,139062,theater play,1437264844 +85635,139064,La bande des quatre,1437266446 +85635,139375,Les révoltés,1437403829 +85659,81564,Tina Fey,1447270298 +85663,260,classic sci-fi,1441987512 +85663,260,space adventure,1441987527 +85672,34150,nothing special,1146109232 +85696,89745,Great action and character development,1337186211 +85713,45186,espionage,1451209605 +85713,45186,spy,1451209609 +85713,94864,sci-fi,1450958313 +85713,103810,espionage,1451209414 +85713,140110,Entrepreneurship,1452253591 +85719,56171,book adapation,1200428183 +85754,1186,infidelity,1452232414 +85754,1290,best friends,1452232003 +85754,1290,high school,1452231946 +85754,1290,tomboy,1452232016 +85754,1290,unrequited Love,1452231988 +85754,2144,chick flick,1452234006 +85754,2145,CLASS DIFFERENCES,1452232161 +85754,2145,crush,1452232103 +85754,2145,high school,1452232134 +85754,2581,undercover,1452230131 +85754,2888,Boy next door,1452230982 +85754,2888,high school,1452231011 +85754,2888,makeover,1452231061 +85754,2888,misfit,1452231030 +85754,2888,teen movie,1452231019 +85754,4061,coming of age,1452233074 +85754,4061,first love,1452233108 +85754,4372,class difference,1452231659 +85754,4372,forbidden love,1452231685 +85754,4372,high school,1452231731 +85754,4372,interracial relationship,1452231798 +85754,6027,Unrequited love,1452232546 +85754,6027,Vietnam War,1452232537 +85754,6636,college,1452234059 +85754,8643,highschool crush,1452230693 +85754,8643,teen movie,1452230507 +85754,8643,unrequited Love,1452230513 +85754,26713,love story,1452233910 +85754,26713,love triangles,1452233926 +85754,43684,chick flick,1452233514 +85754,43684,interracial romance,1452233552 +85754,50954,body exchange,1452231411 +85788,296,dark humor,1423127186 +85788,296,gangsters,1423127186 +85788,296,violent,1423127186 +85790,81564,funny,1291623296 +85790,81564,heartwarming,1291623296 +85818,5195,zombies,1180038531 +85853,77561,Robert Downey Jr.,1446779149 +85853,109487,physics,1446779312 +85853,109487,relativity,1446779327 +85853,109487,sci-fi,1446779317 +85853,109487,space,1446779313 +85853,109487,time-travel,1446779326 +85853,122892,artificial intelligence,1446779133 +85853,122892,superhero,1446779137 +85869,1197,love,1448284161 +85869,40629,love,1448284303 +85869,88744,apes,1448284402 +85874,741,Bechdel Test:Fail,1388276320 +85874,741,cyberpunk,1388276323 +85874,741,visually appealing,1388276336 +85874,908,suspense,1388260347 +85874,908,visually appealing,1388260332 +85874,908,witty,1388260329 +85874,1178,bad acting,1396606707 +85874,1214,tense,1390294661 +85874,1653,genetics,1382924833 +85874,2810,cult of persona,1384735897 +85874,2810,distorted reality,1384735895 +85874,2810,disturbing,1384735890 +85874,2810,has some plot problems,1384735867 +85874,2810,Satoshi Kon,1384735925 +85874,2810,stalker,1384735899 +85874,3265,charisma,1388260549 +85874,3265,heroic bloodshed,1388260545 +85874,6818,bleak,1390770122 +85874,6818,disturbing,1390770153 +85874,6818,harsh,1390770123 +85874,26082,gory,1390617881 +85874,70533,remake,1390324596 +85874,90947,city life,1388260153 +85874,90947,depression,1388260152 +85874,97998,Lasse Hallström,1390267034 +85874,100498,dialogue,1388877736 +85874,100498,John Moore,1390267487 +85874,100498,plot holes,1388877738 +85874,104841,3D effects,1387236835 +85874,104841,bad science,1387236816 +85874,104841,visually appealing,1387236823 +85874,108566,depression,1390871508 +85874,108566,existentialism,1390871516 +85883,260,good vs evil,1439180952 +85883,260,sci-fi,1439180938 +85886,4095,70mm,1158705813 +85886,26614,*NOT* Matt Damon,1242538740 +85911,260,epic,1432690950 +85911,260,George Lucas,1432690977 +85911,260,Harrison Ford,1432690986 +85911,260,John Williams,1432691017 +85911,260,sci-fi,1432690958 +85911,260,space opera,1432690945 +85911,1270,comedy,1432691159 +85911,1270,sci-fi,1432691154 +85911,1270,Steven Spielberg,1432691191 +85911,2571,artificial intelligence,1432691236 +85911,2571,cyberpunk,1432691246 +85911,2571,dystopia,1432691222 +85911,2571,philosophy,1432691232 +85911,2571,sci-fi,1432691217 +85911,2571,virtual reality,1432691248 +85911,89745,bad script,1432691730 +85911,116797,Benedict Cumberbatch,1432691640 +85911,116797,cryptography,1432691617 +85911,116797,Keira Knightley,1432691637 +85911,116797,mathematics,1432691611 +85911,116797,World War II,1432691628 +85935,4973,overrated,1280428307 +85950,1059,claire daines,1176487352 +85951,1217,my dvds,1138512772 +85951,5618,my dvds,1138502178 +85951,5690,my dvds,1138502269 +85951,6350,my dvds,1138502264 +85951,7223,my dvds,1138502480 +85951,7440,on hold,1138512728 +85951,7924,my dvds,1138502193 +85951,8235,on hold,1138512733 +85951,8464,my dvds,1138502304 +85951,26662,on hold,1138502151 +85951,27741,on hold,1138502146 +85951,27773,my dvds,1138502228 +85951,27790,on hold,1138512750 +85951,27878,on hold,1138502116 +85951,32587,my dvds,1138512720 +85951,33903,on hold,1138512743 +85951,34153,on hold,1138502134 +85951,34405,on hold,1138512712 +85951,34542,on hold,1138512761 +85951,36517,on hold,1138512703 +85951,36537,on hold,1138512807 +85955,912,classic,1152710530 +85955,912,Oscar (Best Picture),1152710535 +85956,260,sci-fi,1433938957 +85956,260,Star Wars,1433938967 +85957,71106,fizzles out,1310790609 +85957,71106,funny,1310790621 +85957,71106,great premise,1310790617 +85957,71106,off-beat,1310790627 +85957,71106,sci-fi,1310790639 +85957,71106,surreal,1310790635 +85957,71106,time travel,1310790638 +85957,71106,weird pacing,1310790608 +85957,74458,Michelle Williams,1308970171 +85957,74458,psychological,1308970147 +85957,74458,stylized,1308970178 +85957,74458,twist ending,1308970159 +85968,356,forest,1432584737 +85968,356,gump,1432584737 +85968,356,run forest,1432584737 +85975,19,comedy,1365547242 +85975,497,Shakespeare,1365548252 +85975,4638,adventure,1365547370 +85975,6537,time travel,1365547263 +85975,27904,surreal,1365550343 +85975,30793,fantasy,1365547227 +85975,41566,alternate reality,1365547238 +85987,293,Action,1313269277 +85987,293,assassin,1313269280 +85987,293,assassination,1313269283 +85987,293,corruption,1313269285 +85987,293,crime,1313269287 +85987,293,disturbing,1313269288 +85987,293,drama,1313269290 +85987,293,easily confused with other movie(s) (title),1313269291 +85987,293,friendship,1313269297 +85987,293,great acting,1313269298 +85987,293,hitman,1313269300 +85987,293,imdb top 250,1313269301 +85987,293,Jean Reno,1313269304 +85987,293,love story,1313269307 +85987,293,Natalie Portman,1313269310 +85987,293,organized crime,1313269311 +85987,293,police,1313269315 +85987,293,police corruption,1313269317 +85987,293,quirky,1313269319 +85987,293,tense,1313269320 +85987,1213,adapted from:book,1313268792 +85987,1213,based on a book,1313268798 +85987,1213,biography,1313268801 +85987,1213,crime,1313268803 +85987,1213,dark comedy,1313268806 +85987,1213,disturbing,1313268809 +85987,1213,drama,1313268811 +85987,1213,gangs,1313268817 +85987,1213,gangsters,1313268819 +85987,1213,imdb top 250,1313268821 +85987,1213,mafia,1313268814 +85987,1213,Martin Scorsese,1313268830 +85987,1213,narrated,1313268832 +85987,1213,organized crime,1313268834 +85987,1213,Oscar (Best Supporting Actor),1313268836 +85987,1213,Robert De Niro,1313268837 +85987,1213,Samuel L. Jackson,1313268847 +85987,1213,stylized,1313268849 +85987,1213,violence,1313268850 +85987,1213,violent,1313268852 +85987,4973,atmospheric,1313268033 +85987,4973,beautifully filmed,1313268038 +85987,4973,comedy,1313268040 +85987,4973,coming of age,1313268041 +85987,4973,cult film,1313268043 +85987,4973,fairy tale,1313268046 +85987,4973,feel-good,1313268048 +85987,4973,great soundtrack,1313268050 +85987,4973,imdb top 250,1313268051 +85987,4973,inspirational,1313268055 +85987,4973,music,1313268057 +85987,4973,narrated,1313268060 +85987,4973,notable soundtrack,1313268063 +85987,4973,Paris,1313268064 +85987,4973,quirky,1313268065 +85987,4973,romance,1313268066 +85987,4973,romantic,1313268068 +85987,4973,stylized,1313268114 +85987,4973,surreal,1313268127 +85987,4973,whimsical,1313268102 +85987,6016,Africa,1313268145 +85987,6016,atmospheric,1313268146 +85987,6016,based on a book,1313268148 +85987,6016,based on a true story,1313268150 +85987,6016,black comedy,1313268158 +85987,6016,Brazil,1313268162 +85987,6016,Classic,1313268165 +85987,6016,coming of age,1313268167 +85987,6016,crime,1313268168 +85987,6016,disturbing,1313268171 +85987,6016,documentary,1313268179 +85987,6016,drugs,1313268181 +85987,6016,gangsters,1313268183 +85987,6016,imdb top 250,1313268184 +85987,6016,multiple storylines,1313268186 +85987,6016,serial killer,1313268191 +85987,6016,South America,1313268193 +85987,6016,stylized,1313268195 +85987,6016,true story,1313268196 +85987,6016,violence,1313268198 +85987,7143,A Good Tom Cruise Movie,1313269228 +85987,7143,colonialism,1313269229 +85987,7143,Edward Zwick,1313269230 +85987,7143,historical,1313269232 +85987,7143,Honor,1313269233 +85987,7143,intense,1313269235 +85987,7143,Japan,1313269238 +85987,7143,Japanese culture,1313269239 +85987,7143,katana,1313269241 +85987,7143,Ken Watanabe,1313269242 +85987,7143,lawyers,1313269244 +85987,7143,martial arts,1313269245 +85987,7143,New Zealand,1313269248 +85987,7143,rebellion,1313269250 +85987,7143,samurai,1313269251 +85987,7143,sword fight,1313269254 +85987,7143,Tom Cruise,1313269256 +85987,7143,Tony Goldwyn,1313269257 +85987,7143,tribal,1313269260 +85987,7143,war,1313269262 +85987,7361,alternate reality,1313268346 +85987,7361,bittersweet,1313268347 +85987,7361,Charlie Kaufman,1313268351 +85987,7361,comedy,1313268353 +85987,7361,cult film,1313268355 +85987,7361,dreamlike,1313268356 +85987,7361,imdb top 250,1313268358 +85987,7361,Jim Carrey,1313268359 +85987,7361,memory,1313268363 +85987,7361,New York City,1313268365 +85987,7361,nonlinear,1313268367 +85987,7361,philosophy,1313268369 +85987,7361,psychology,1313268370 +85987,7361,quirky,1313268373 +85987,7361,relationships,1313268402 +85987,7361,romance,1313268380 +85987,7361,sci-fi,1313268406 +85987,7361,surreal,1313268416 +85987,7361,surrealism,1313268418 +85987,7361,thought-provoking,1313268419 +85987,8784,coming of age,1313268715 +85987,8784,directorial debut,1313268718 +85987,8784,father-son relationship,1313268721 +85987,8784,friendship,1313268730 +85987,8784,funny,1313268731 +85987,8784,gambling,1313268733 +85987,8784,Great Soundtrack,1313268734 +85987,8784,idealistic,1313268755 +85987,8784,Jim Parsons,1313268757 +85987,8784,mental illness,1313268759 +85987,8784,motorcycle,1313268762 +85987,8784,Natalie Portman,1313268764 +85987,8784,New Jersey,1313268766 +85987,8784,psychology,1313268771 +85987,8784,quirky,1313268774 +85987,8784,quirky romantic,1313268775 +85987,8784,romance,1313268779 +85987,8784,Zach Braff,1313268780 +85987,48516,atmospheric,1313268285 +85987,48516,corruption,1313268287 +85987,48516,Crime,1313268290 +85987,48516,ensemble cast,1313268294 +85987,48516,gangster,1313268295 +85987,48516,gangsters,1313268297 +85987,48516,imdb top 250,1313268298 +85987,48516,Jack Nicholson,1313268307 +85987,48516,Leonardo DiCaprio,1313268309 +85987,48516,Mafia,1313268311 +85987,48516,Martin Scorsese,1313268312 +85987,48516,organized crime,1313268313 +85987,48516,police corruption,1313268314 +85987,48516,rats,1313268320 +85987,48516,remake,1313268321 +85987,48516,suspense,1313268323 +85987,48516,tense,1313268326 +85987,48516,violence,1313268329 +85987,56251,2D animation,1313268558 +85987,56251,animation,1313268560 +85987,56251,Based on a TV show,1313268562 +85987,56251,billy west,1313268618 +85987,56251,DVD-RAM,1313268632 +85987,56251,futurama,1313268634 +85987,56251,HD,1313268637 +85987,56251,intelligent humor,1313268639 +85987,56251,john di maggio,1313268640 +85987,56251,Katey Sagal,1313268642 +85987,56251,Lauren Tom,1313268646 +85987,56251,made for TV,1313268649 +85987,56251,sci fi,1313268650 +85987,56251,To See,1313268652 +85987,56251,video only,1313268655 +85987,58559,action,1313268218 +85987,58559,Atmospheric,1313268224 +85987,58559,Batman,1313268227 +85987,58559,Christian Bale,1313268229 +85987,58559,comic book,1313268232 +85987,58559,dark,1313268235 +85987,58559,Heath Ledger,1313268236 +85987,58559,imdb top 250,1313268238 +85987,58559,Michael Caine,1313268239 +85987,58559,Morgan Freeman,1313268242 +85987,58559,music,1313268247 +85987,58559,Oscar (Best Supporting Actor),1313268249 +85987,58559,psychology,1313268256 +85987,58559,serial killer,1313268258 +85987,58559,stylized,1313268260 +85987,58559,superhero,1313268262 +85987,58559,thriller,1313268263 +85987,58559,vigilante,1313268264 +85987,58559,violence,1313268266 +85987,58559,violent,1313268268 +85987,59784,action,1313269152 +85987,59784,Angelina Jolie,1313269154 +85987,59784,animals,1313269155 +85987,59784,animation,1313269157 +85987,59784,anti-hero,1313269159 +85987,59784,comedy,1313269164 +85987,59784,Dustin Hoffman,1313269166 +85987,59784,easily confused with other movie(s) (title),1313269168 +85987,59784,fate,1313269171 +85987,59784,father-son relationship,1313269173 +85987,59784,food,1313269176 +85987,59784,good versus evil,1313269179 +85987,59784,Jack Black,1313269180 +85987,59784,Jackie Chan,1313269181 +85987,59784,Kung Fu,1313269183 +85987,59784,martial arts,1313269184 +85987,59784,panda,1313269185 +85987,59784,Seth Rogen,1313269187 +85987,59784,talking animals,1313269188 +85987,59784,violence,1313269190 +85987,68157,assassination,1313269100 +85987,68157,black comedy,1313269102 +85987,68157,Brad Pitt,1313269105 +85987,68157,dark comedy,1313269107 +85987,68157,easily confused with other movie(s) (title),1313269110 +85987,68157,French,1313269115 +85987,68157,great soundtrack,1313269117 +85987,68157,IMDB Top 250,1313269119 +85987,68157,Nazis,1313269122 +85987,68157,Oscar (Best Supporting Actor),1313269123 +85987,68157,Paris,1313269125 +85987,68157,Quentin Tarantino,1313269129 +85987,68157,revenge,1313269131 +85987,68157,satire,1313269132 +85987,68157,tense,1313269135 +85987,68157,torture,1313269137 +85987,68157,violence,1313269139 +85987,68157,visually appealing,1313269140 +85987,68157,war,1313269141 +85987,68157,World War II,1313269142 +85987,69757,artistic,1313267941 +85987,69757,chick flick,1313267901 +85987,69757,cute,1313267906 +85987,69757,Effects,1313267946 +85987,69757,Funny,1313267908 +85987,69757,humor,1313267898 +85987,69757,humorous,1313267895 +85987,69757,IMDB Top 250,1313267957 +85987,69757,intelligent,1313267963 +85987,69757,Los Angeles,1313267965 +85987,69757,music,1313267967 +85987,69757,no happy ending,1313267916 +85987,69757,nonlinear,1313267977 +85987,69757,quirky,1313267931 +85987,69757,relationships,1313267935 +85987,69757,romance,1313267893 +85987,69757,slow,1313267985 +85987,69757,stylized,1313267990 +85987,69757,to see: chick flick,1313267994 +85987,69757,Zooey Deschanel,1313267890 +85987,76093,accent,1313268982 +85987,76093,action,1313268983 +85987,76093,adventure,1313268986 +85987,76093,animated,1313268987 +85987,76093,animation,1313268989 +85987,76093,based on a book,1313268990 +85987,76093,CGI,1313268993 +85987,76093,cute,1313268996 +85987,76093,dragons,1313268997 +85987,76093,Dreamworks,1313268999 +85987,76093,fantasy,1313269001 +85987,76093,flying,1313269004 +85987,76093,friendship,1313269007 +85987,76093,funny,1313269008 +85987,76093,Gerard Butler,1313269010 +85987,76093,Jonah Hill,1313269011 +85987,76093,predictable,1313269014 +85987,76093,soundtrack,1313269017 +85987,76093,Stereoscopic 3-D,1313269019 +85987,76093,vikings,1313269023 +85987,79132,action,1313269035 +85987,79132,alternate reality,1313269037 +85987,79132,drama,1313269038 +85987,79132,dreamlike,1313269039 +85987,79132,ensemble cast,1313269041 +85987,79132,fantasy,1313269042 +85987,79132,great soundtrack,1313269044 +85987,79132,heist,1313269048 +85987,79132,Leonardo DiCaprio,1313269049 +85987,79132,memory,1313269051 +85987,79132,Michael Caine,1313269059 +85987,79132,music,1313269065 +85987,79132,Paris,1313269067 +85987,79132,philosophy,1313269070 +85987,79132,sci-fi,1313269072 +85987,79132,sentimental,1313269078 +85987,79132,surreal,1313269079 +85987,79132,suspense,1313269086 +85987,79132,thought-provoking,1313269088 +85987,79132,visually appealing,1313269089 +85995,260,classic sci-fi,1436159161 +85995,260,good characters,1436159197 +86008,1201,Gun Fight,1331144372 +86023,1,children,1339531972 +86023,1,computer animation,1339531991 +86023,1,family,1339531975 +86023,1,humorous,1339531989 +86023,1,time travel,1339531981 +86023,1,Tom Hanks,1339531986 +86023,1,witty,1339531978 +86023,32,atmospheric,1339530148 +86023,32,Brad Pitt,1339530120 +86023,32,Bruce Willis,1339530122 +86023,32,post-apocalyptic,1339530124 +86023,32,remake,1339530142 +86023,32,time travel,1339530156 +86023,32,twist ending,1339530136 +86023,32,violence,1339530138 +86023,50,clever,1339531159 +86023,50,conspiracy,1339531164 +86023,150,based on a book,1339532302 +86023,150,biographical,1339532349 +86023,150,disaster,1339532349 +86023,318,atmospheric,1339531536 +86023,318,inspirational,1339531554 +86023,318,prison,1339531544 +86023,318,prison escape,1339531541 +86023,318,thought-provoking,1339531530 +86023,318,twist ending,1339531539 +86023,608,based on a true story,1339531271 +86023,608,black comedy,1339531276 +86023,608,Coen Brothers,1339531274 +86023,608,crime,1339531280 +86023,608,dark humor,1339531298 +86023,608,funny,1339531295 +86023,608,kidnapping,1339531281 +86023,608,murder,1339531283 +86023,608,quirky,1339531288 +86023,608,violent,1339531286 +86023,1175,alternate reality,1339530063 +86023,1175,atmospheric,1339530065 +86023,1175,Black comedy,1339530068 +86023,1175,comedy,1339530071 +86023,1175,dark comedy,1339530076 +86023,1175,dreamlike,1339530100 +86023,1175,music,1339530086 +86023,1175,Post apocalyptic,1339530084 +86023,1175,stylized,1339530080 +86023,1175,surreal,1339530095 +86023,1552,Great Actions,1339683999 +86023,1552,John Malkovich,1339684004 +86023,1552,Nicolas Cage,1339684008 +86023,1552,soundtrack,1339683994 +86023,1552,Steve Buscemi,1339683991 +86023,1676,satire,1339683340 +86023,1676,witty,1339683327 +86023,1732,Biography,1339529990 +86023,1732,black comedy,1339529946 +86023,1732,bowling,1339529948 +86023,1732,Coen Brothers,1339529944 +86023,1732,cult film,1339529974 +86023,1732,dark comedy,1339529954 +86023,1732,great soundtrack,1339529970 +86023,1732,marijuana,1339529967 +86023,1732,Nudity (Full Frontal),1339529964 +86023,1732,satirical,1339529958 +86023,1732,violence,1339529984 +86023,3499,adapted from:book,1339590014 +86023,3499,based on a book,1339590070 +86023,3499,claustrophobic,1339590045 +86023,3499,drama,1339590033 +86023,3499,horror,1339590057 +86023,3499,Oscar (Best Actress),1339590024 +86023,3499,tension,1339590091 +86023,3499,writer,1339590074 +86023,3499,WRITER'S LIFE,1339590080 +86023,3499,writers,1339590078 +86023,4020,cate blanchett,1339531126 +86023,4020,Keanu Reeves,1339531129 +86023,4020,Nudity (Topless - Notable),1339531104 +86023,4020,psychic,1339531081 +86023,4020,psychic character,1339531112 +86023,4020,psychic power,1339531091 +86023,6301,disturbing,1339758810 +86023,7460,Atmospheric,1339685103 +86023,7460,Bill Murray,1339685106 +86023,7460,black and white,1339685108 +86023,7460,Cate Blanchett,1339685778 +86023,7460,dialogue,1339685114 +86023,7460,Jack White,1339685132 +86023,7460,Jim Jarmusch,1339685756 +86023,7460,minimalist,1339685760 +86023,7460,Steve Buscemi,1339685120 +86023,7460,Steve Coogan,1339685788 +86023,7460,surreal,1339685763 +86023,7460,talky,1339685765 +86023,27904,Philip K. Dick,1339685870 +86023,27904,surreal,1339685874 +86023,27904,visually appealing,1339685877 +86023,27904,Woody Harrelson,1339685879 +86023,30810,Bill Murray,1339530008 +86023,30810,comedy,1339530050 +86023,30810,Cult Classic,1339530029 +86023,30810,dark,1339530032 +86023,30810,father-son relationship,1339530034 +86023,30810,funny,1339530037 +86023,30810,great soundtrack,1339530023 +86023,30810,Nudity (Topless),1339530021 +86023,30810,Owen Wilson,1339530026 +86023,30810,visually appealing,1339530014 +86023,30810,Wes Anderson,1339530012 +86023,53972,action,1339683887 +86023,53972,action packed,1339683885 +86023,53972,boring,1339683871 +86023,53972,bruce willis,1339683907 +86023,53972,comedy,1339683889 +86023,53972,hackers,1339683909 +86023,53972,no suspense,1339683861 +86023,53972,stunts,1339683900 +86023,53972,terrorism,1339683911 +86023,53972,unrealistic,1339683854 +86023,53972,unrealistic action,1339683850 +86023,53972,weak plot,1339683852 +86023,56286,confusing,1339684861 +86023,61132,Jack Black,1339531779 +86023,61132,satire,1339531798 +86023,62511,Charlie Kaufman,1339684728 +86023,62511,confusing,1339684766 +86023,62511,depressing,1339684771 +86023,62511,Nudity (Topless),1339684760 +86023,62511,philosophy,1339684744 +86023,62511,pointless,1339684733 +86023,62511,quirky,1339684755 +86023,62511,surreal,1339684763 +86023,62511,thought-provoking,1339684747 +86023,69122,comedy,1339529831 +86023,69122,Drinking,1339529834 +86023,69122,flashbacks,1339529846 +86023,69122,funny,1339529870 +86023,69122,great soundtrack,1339529864 +86023,69122,Hilarious,1339529877 +86023,69122,Las Vegas,1339529880 +86023,69122,Nudity (Topless),1339529884 +86023,69122,overrated,1339529852 +86023,69122,plot holes,1339529855 +86023,69122,strippers,1339529887 +86023,78209,Comedy,1339710368 +86023,78209,Jonah Hill,1339710365 +86023,78209,lame third act,1339710383 +86023,78209,music business,1339710362 +86023,79185,action packed,1339590766 +86023,79185,boring,1339590769 +86023,79185,fun,1339590762 +86023,79185,predictable ending,1339590746 +86023,79185,soundtrack,1339590758 +86023,79185,spy,1339590756 +86023,79185,stupid,1339590732 +86023,79185,unrealistic,1339590750 +86023,79185,USA,1339590753 +86023,79702,awesome soundtrack,1339535656 +86023,79702,based on a comic,1339535677 +86023,79702,quirky,1339535638 +86023,79702,stylized,1339535647 +86023,79702,surreal,1339535645 +86023,79702,video games,1339535663 +86023,79702,visually appealing,1339535642 +86023,88672,hippy,1339710276 +86023,88672,Jesse Peretz,1339710264 +86023,88672,Poor direction,1339710267 +86023,88672,Zooey Deschanel,1339710260 +86028,4896,harry potter,1440980717 +86028,4896,Magic,1440980703 +86028,6378,Jason Statham,1440980996 +86028,61248,Jason Statham,1440981084 +86028,80363,resident evil,1440980916 +86028,86880,comedy,1440980769 +86028,86880,magic,1440980777 +86041,1921,mathematics,1423325896 +86041,1921,mental illness,1423325942 +86041,2959,Brad Pitt,1417773625 +86041,2959,philosophical,1417773634 +86041,2959,psychology,1423325465 +86041,2959,twist ending,1417773618 +86041,4226,Christopher Nolan,1423325507 +86041,4226,memory,1423325492 +86041,4226,Mindfuck,1423325498 +86041,4226,psychology,1423325490 +86041,4848,David Lynch,1423325974 +86041,4848,drama,1423325979 +86041,78349,dialogue driven,1423325280 +86041,78349,group psychology,1423325277 +86041,78349,mindfuck,1423325272 +86041,109487,Anne Hathaway,1422012333 +86041,109487,artificial intelligence,1422012352 +86041,109487,bad dialogue,1422012343 +86041,109487,Christopher Nolan,1422012330 +86041,109487,good science,1422012356 +86041,109487,love,1422012362 +86041,109487,physics,1422012354 +86041,109487,sounds,1422012349 +86041,109487,time-travel,1422012347 +86041,109487,wormhole,1422012373 +86052,260,bite me,1440895416 +86052,260,"Episode what? It's cut off, so I don't even know what movie it is",1440895412 +86098,80181,short,1321937427 +86105,4995,Very interesting,1193005467 +86105,5903,Christian Bale,1193005515 +86105,6953,life & death,1193005364 +86105,7156,Vietnam,1193005707 +86105,8464,Very interesting,1193005460 +86105,27801,kickboxing,1193005603 +86105,31410,Germany,1193005214 +86105,36529,Truth,1193005314 +86108,597,Julia Roberts,1159849757 +86108,1777,Adam Sandler,1159849765 +86112,337,Johnny Depp,1387063082 +86112,933,Alfred Hitchcock,1387063293 +86112,1175,dark comedy,1387063418 +86112,1175,surreal,1387063425 +86112,1272,Oscar (Best Picture),1387063504 +86112,1272,World War II,1387063508 +86112,1394,Coen Brothers,1387062707 +86112,1608,action,1387063175 +86112,1949,Oscar (Best Cinematography),1387063044 +86112,2396,Oscar (Best Picture),1387062941 +86112,3362,Al Pacino,1387063250 +86112,3470,Oscar (Best Foreign Language Film),1387063102 +86112,6283,anime,1387063238 +86112,6942,british,1387065495 +86112,7478,literary,1387065655 +86112,7478,literature,1387065655 +86112,7478,one man show,1387065618 +86112,7478,Spalding Gray,1387065593 +86112,7762,espionage,1387064558 +86112,33779,Eddie Izzard,1387063339 +86112,37741,prison,1387063199 +86112,40583,espionage,1387063286 +86112,47525,honest,1424688489 +86112,47525,intimate,1424688489 +86112,47525,steaming,1424688489 +86112,50872,Disney,1387063079 +86112,57669,Colin Farrell,1387064742 +86112,57669,Irish,1387064742 +86112,57669,sarcasm,1387064742 +86112,65188,emotional,1387063408 +86112,67997,intelligent,1387100523 +86112,73392,conspiracy,1425535143 +86112,73392,politics,1425535143 +86112,73392,truth,1425535143 +86112,78574,drugs,1387062964 +86112,79357,immortality,1387062905 +86112,79357,jared leto,1387062902 +86112,79357,romance,1387062905 +86112,79357,sci-fi,1387062905 +86112,79357,time travel,1387062905 +86112,86882,fantasy,1387065068 +86112,90866,children,1392152836 +86112,90866,fantasy,1392152881 +86112,96606,beautiful cinematography,1387063374 +86118,260,action,1439760344 +86118,260,space,1439760350 +86161,2,Kirsten Dunst,1161144002 +86161,2,Robin Williams,1161143992 +86161,3,Jack Lemmon,1161144193 +86161,3,Walter Matthau,1161144194 +86161,52,Woody Allen,1161141341 +86161,111,cult film,1275445906 +86161,296,Quentin Tarantino,1275445882 +86161,296,Tarantino,1275445885 +86161,441,1970s,1161141199 +86161,441,drugs,1161141198 +86161,466,Charlie Sheen,1161144142 +86161,494,Halle Berry,1275445626 +86161,494,Kurt Russell,1161144288 +86161,587,Patrick Swayze,1161144251 +86161,587,Unchained Melody,1161144251 +86161,608,Coen Brothers,1275445631 +86161,608,William H. Macy,1275445768 +86161,628,Edward Norton,1275445879 +86161,750,classic,1275445604 +86161,750,Stanley Kubrick,1275445608 +86161,1073,Gene Wilder,1275445938 +86161,1206,Stanley Kubrick,1161139513 +86161,1213,Martin Scorsese,1275445802 +86161,1230,Woody Allen,1275445536 +86161,1234,Oscar (Best Picture),1161139951 +86161,1263,Robert De Niro,1275445595 +86161,1263,Vietnam,1275445596 +86161,1285,dark comedy,1161141090 +86161,1288,Christopher Guest,1275445918 +86161,1302,if you build it they will come,1161144225 +86161,1303,Sean Connery,1161139846 +86161,1358,Billy Bob Thornton,1161142182 +86161,1376,whales,1161143874 +86161,1408,Daniel Day-Lewis,1161143946 +86161,1449,Christopher Guest,1161139971 +86161,1466,Johnny Depp,1161140068 +86161,1597,Mel Gibson,1161144324 +86161,1608,Gary Oldman,1161143745 +86161,1608,Harrison Ford,1275445523 +86161,1617,Kevin Spacey,1275445822 +86161,1617,Russell Crowe,1161139281 +86161,1653,Ethan Hawke,1161143978 +86161,1653,Jude Law,1161143978 +86161,1653,Uma Thruman,1161143978 +86161,1713,Christopher Walken,1279907809 +86161,1747,Dustin Hoffman,1161144404 +86161,2115,Harrison Ford,1161143451 +86161,2302,Joe Pesci,1161143792 +86161,2302,Marisa Tormei,1275445850 +86161,2599,Alexander Payne,1275445613 +86161,2788,MontyPython,1161138748 +86161,2858,suburbia,1275445527 +86161,2858,surrealism,1161139735 +86161,2890,David O. Russell,1275445922 +86161,2951,Sergio Leone,1161139088 +86161,3198,Steve McQueen,1161141857 +86161,3421,John Belushi,1275445529 +86161,3527,Arnold Schwarzenegger,1161144086 +86161,3527,Carl Weathers,1161144104 +86161,3527,Jesse Ventura,1275445874 +86161,3552,Bill Murray,1275445567 +86161,3552,Chevy Chase,1161141079 +86161,3552,Harold Ramis,1161141079 +86161,3552,Rodney Dangerfield,1275445572 +86161,3552,Ted Knight,1275445574 +86161,3653,surfing,1275445616 +86161,3671,Mel Brooks,1161138959 +86161,4085,Axel Foley,1275445542 +86161,4085,Eddie Murphy,1161143902 +86161,4276,Albert Brooks,1161560221 +86161,4361,Dustin Hoffman,1161144020 +86161,4874,Kevin Spacey,1275445818 +86161,5010,Ridley Scott,1161143732 +86161,5464,Tom Hanks,1161141157 +86161,5505,Mike White,1275445800 +86161,5995,Adrien Brody,1161140262 +86161,6188,Will Ferrell,1275445860 +86161,6373,Steve Carell,1275445564 +86161,6430,David Bowie,1275445084 +86161,6979,Cold War,1161144041 +86161,7073,Peter Sellers,1161139040 +86161,7147,surrealism,1161141022 +86161,7482,Bruce Lee,1275445623 +86161,7815,David Byrne,1275445120 +86161,8266,Prince,1275445888 +86161,8361,Dennis Quaid,1161144319 +86161,8361,Jake Gyllenhaal,1161144319 +86161,8529,Tom Hanks,1275445912 +86161,25999,Marlon Brando,1161141689 +86161,26211,Pink Floyd,1275445845 +86161,26350,Jack Nicholson,1161139628 +86161,30810,Bill Murray,1275445830 +86161,30812,Howard Hughes,1161143940 +86161,30812,Leonardo DiCaprio,1161143941 +86161,34162,Owen Wilson,1275445942 +86161,34162,Vince Vaughn,1275445940 +86161,35836,Steve Carell,1161141216 +86161,53912,Beastie Boys,1275444853 +86161,55999,Natalie Portman,1275445241 +86161,67695,dark comedy,1275445210 +86161,70032,Zach Galifianakis,1275444933 +86161,77658,astronomy,1275445495 +86161,80588,Leonardo DiCaprio,1286991636 +86161,96724,documentary,1420322976 +86161,96724,music,1420322976 +86161,96724,paul simon,1420322976 +86172,34032,art,1448827299 +86172,73290,railway station,1428438812 +86172,73290,real story,1428438812 +86172,73290,richard gere,1428438812 +86172,112183,single shot,1440258424 +86172,112995,disturbing,1448826818 +86172,114342,denial,1440258062 +86172,114342,ego,1440258044 +86172,114342,pride,1440258018 +86189,778,drugs,1164027019 +86189,778,Ewan McGregor,1164027022 +86189,1193,mental illness,1164026981 +86189,1213,Mafia,1164026951 +86189,1213,Martin Scorsese,1164026955 +86189,2951,spaghetti western,1164026942 +86192,260,action,1441897176 +86192,260,sci-fi,1441897160 +86198,115629,detective movie,1453221067 +86198,115629,suspense,1453221071 +86206,70206,Bra film,1450288796 +86225,34405,Want bad acting,1164042990 +86247,106916,70s,1390533921 +86247,106916,corruption,1390533897 +86247,106916,David O. Russell,1390533914 +86247,106916,Jeremy Renner,1390533888 +86247,106916,politics,1390533892 +86282,260,don't want to see it,1435284090 +86282,260,have not seen it,1435284081 +86288,208,adventure,1386640766 +86288,208,alone in the world,1386640807 +86288,208,apocalypse,1386640751 +86288,208,better than everybody thinks,1386640760 +86288,208,dark hero,1386640754 +86288,208,dystopia,1386640752 +86288,208,dystopic future,1386640792 +86288,208,futuristic,1386640800 +86288,208,Kevin Costner,1386640747 +86288,208,ocean,1386640810 +86288,208,post-apocalyptic,1386640749 +86288,208,survival,1386640769 +86288,260,action,1386638786 +86288,260,adventure,1386638785 +86288,260,aliens,1386638787 +86288,260,fantasy,1386638789 +86288,260,George Lucas,1386638781 +86288,260,Harrison Ford,1386638770 +86288,260,sci fi,1386638803 +86288,260,space,1386638803 +86288,318,friendship,1386640570 +86288,318,inspirational,1386640577 +86288,318,Morgan Freeman,1386640579 +86288,318,prison escape,1386640568 +86288,318,thought-provoking,1386640566 +86288,337,Johnny Depp,1386641930 +86288,337,Leonardo DiCaprio,1386641932 +86288,356,bittersweet,1386640498 +86288,356,historical,1386640514 +86288,356,history,1386640512 +86288,356,romance,1386640521 +86288,356,Tom Hanks,1386640490 +86288,356,vietnam war,1386640501 +86288,1193,Jack Nicholson,1386690329 +86288,1193,mental illness,1386690332 +86288,1193,powerful ending,1386690337 +86288,1193,psychological,1386690334 +86288,1193,psychology,1386690335 +86288,1196,action,1386638700 +86288,1196,adventure,1386638698 +86288,1196,fantasy,1386638750 +86288,1196,George Lucas,1386638696 +86288,1196,great soundtrack,1386638748 +86288,1196,Harrison Ford,1386638694 +86288,1196,robots,1386638701 +86288,1196,space,1386638703 +86288,1196,Star Wars,1386638727 +86288,1210,action,1386638658 +86288,1210,adventure,1386638660 +86288,1210,aliens,1386638662 +86288,1210,George Lucas,1386638649 +86288,1210,great soundtrack,1386638674 +86288,1210,Harrison Ford,1386638652 +86288,1210,Star Wars,1386638654 +86288,1210,war,1386638669 +86288,1682,alternate reality,1386638326 +86288,1682,dark comedy,1386638328 +86288,1682,dreamlike,1386638329 +86288,1682,dystopia,1386638324 +86288,1682,Jim Carrey,1386638366 +86288,1682,mindfuck,1386638347 +86288,1682,philosophy,1386638331 +86288,1682,social commentary,1386638325 +86288,1682,surreal,1386638361 +86288,2329,Edward Norton,1386641248 +86288,2329,gangs,1386641285 +86288,2329,Nazis,1386641257 +86288,2329,Neo-Nazis,1386641258 +86288,2329,racism,1386641266 +86288,2329,skinhead,1386641270 +86288,2329,social commentary,1386641295 +86288,2329,tense,1386641298 +86288,2329,thought-provoking,1386641250 +86288,2959,action,1388778334 +86288,2959,Brad Pitt,1388778304 +86288,2959,Edward Norton,1388778301 +86288,2959,mental illness,1388778329 +86288,2959,psychological,1388778324 +86288,2959,psychology,1388778309 +86288,2959,social commentary,1388778313 +86288,2959,surreal,1388778316 +86288,2959,twist ending,1388778306 +86288,2959,violence,1388778333 +86288,5717,cannibalism,1386639491 +86288,5717,cannibals,1386639492 +86288,5717,gory,1386639528 +86288,5717,gruesome,1386639528 +86288,5717,jungle,1386639494 +86288,5717,South America,1386639496 +86288,5891,disturbing,1386641072 +86288,5891,gritty,1386641078 +86288,5891,hard to watch,1386641075 +86288,5891,harsh,1386641079 +86288,5891,menacing,1386641082 +86288,5891,murder,1386641153 +86288,5891,rape,1386641091 +86288,5891,revenge,1386641094 +86288,6377,animation,1388778544 +86288,6377,children,1388778525 +86288,6377,Disney,1388778530 +86288,6377,Disney animated feature,1388778528 +86288,6377,family bonds,1388778537 +86288,6377,friendship,1388778564 +86288,6377,Pixar,1388778555 +86288,6377,talking animals,1388778531 +86288,6953,Nonlinear,1386728244 +86288,8376,awkward,1386648555 +86288,8376,surreal,1386648515 +86288,8635,Amazon,1386643719 +86288,8635,Amazon jungle,1386643719 +86288,8635,cannibalism,1386643651 +86288,8635,cannibals,1386643651 +86288,8635,gory,1386643651 +86288,8635,gruesome,1386643651 +86288,8635,jungle,1386643689 +86288,8635,torture,1386643669 +86288,8906,banned movie,1386639426 +86288,8906,cannibalism,1386639429 +86288,8906,cannibals,1386639430 +86288,8906,controversial,1386639432 +86288,8906,cult classic,1386639433 +86288,8906,cult-classic,1386639434 +86288,8906,gruesome,1386639465 +86288,32587,Action,1386649437 +86288,32587,atmospheric,1386649415 +86288,32587,corruption,1386649427 +86288,32587,Crime,1386649425 +86288,32587,multiple storylines,1386649501 +86288,32587,revenge,1386649431 +86288,32587,surrealism,1386649419 +86288,32587,violence,1386649422 +86288,32587,visually appealing,1386649462 +86288,34405,action,1386638617 +86288,34405,adventure,1386638619 +86288,34405,based on a TV show,1386638411 +86288,34405,based on tv series,1386638413 +86288,34405,dystopia,1386638395 +86288,34405,quirky,1386638399 +86288,34405,space,1386638614 +86288,34405,SPACE TRAVEL,1386638615 +86288,34405,witty,1386638398 +86288,44191,dystopia,1386638295 +86288,44191,inspirational,1386638307 +86288,44191,social commentary,1386638296 +86288,44191,thought-provoking,1386638298 +86288,54503,comedy,1387463592 +86288,54503,friendship,1387463583 +86288,54503,Michael Cera,1387463581 +86288,54503,Seth Rogen,1387463579 +86288,54934,funny,1386720356 +86288,54934,hilarious,1386720348 +86288,54934,pregnancy,1386720366 +86288,54934,Will Arnett,1386718596 +86288,54934,Will Forte,1386718598 +86288,60756,comedy,1386718545 +86288,60756,dysfunctional family,1386718508 +86288,60756,funny,1386718514 +86288,60756,John C. Reilly,1386718491 +86288,60756,will ferrell,1386718495 +86288,61678,Danny McBride,1387465248 +86288,61678,Underrated,1387465251 +86288,64614,Clint Eastwood,1386641316 +86288,64614,culture clash,1386641318 +86288,64614,friendship,1386641321 +86288,64614,heartwarming,1386641332 +86288,64614,life & death,1386641326 +86288,64614,revenge,1386641325 +86288,66659,boring,1386648027 +86288,66659,incoherent,1386648064 +86288,67087,boring,1386690064 +86288,67087,childish,1386690164 +86288,67087,Jason Segel,1386690087 +86288,67087,not funny,1386690026 +86288,67087,Paul Rudd,1386690085 +86288,67087,tries too hard,1386690043 +86288,71535,Bill Murray,1386638259 +86288,71535,dark comedy,1386638254 +86288,71535,funny,1386638269 +86288,71535,post-apocalyptic,1386638265 +86288,71535,witty,1386638274 +86288,71535,Woody Harrelson,1386717983 +86288,71535,zombies,1386638260 +86288,94864,aliens,1386642591 +86288,94864,religion,1386642602 +86288,94864,Ridley Scott,1386642599 +86288,94864,space travel,1386642597 +86288,94864,technology,1386642593 +86288,104908,Time paradox,1386728390 +86318,6193,awful movie,1256682749 +86318,6193,Horrible acting,1256682749 +86318,6193,ridiculous dialogue,1256682748 +86318,6193,terrible director,1256682748 +86318,68358,Too much comic relief,1242073289 +86347,260,interesting,1436337512 +86347,260,old,1436337499 +86381,2959,twist ending,1423511339 +86381,2959,violent,1423511341 +86381,79357,butterfly effect,1423511289 +86381,79357,nonlinear,1423511250 +86381,79357,sci-fi,1423511291 +86399,260,George Lucas,1442105776 +86399,260,Star Wars,1442105765 +86403,534,beautifully written and acted,1140409475 +86403,555,well written and structured,1140410113 +86403,3359,wonderfully warm and amusing,1140409494 +86403,3763,the ending spoils this,1140410370 +86403,5391,well-acted and thought-provoking,1140409923 +86403,6623,a slight film,1140410441 +86403,6623,but Emmy Rossum is terrific,1140410441 +86403,6832,a thoroughly implausible contrivance,1140410762 +86403,7361,never rooted for these two as a couple,1292604206 +86403,8535,deadly dull with the frame partly responsible,1140410681 +86403,74545,"""bad CIA""-- too simplistic",1292604565 +86409,51662,comic book,1288547665 +86409,74789,Johnny Depp,1288548537 +86409,74789,Tim Burton,1288548531 +86428,260,cult classic,1437658905 +86428,260,sci-fi,1437658938 +86428,260,space adventure,1437658921 +86504,50872,Cusine,1440356201 +86504,50872,food,1440356252 +86504,50872,friendship,1440356210 +86504,50872,love,1440356212 +86504,50872,paris,1440356233 +86504,116797,Alan Turing,1440356389 +86504,116797,code breaking,1440356367 +86504,116797,gay,1440356379 +86504,116797,genius,1440356375 +86504,116797,Germany,1440356408 +86504,116797,Hilter,1440356413 +86504,116797,mathematics,1440356396 +86507,58111,classic,1445531256 +86507,121133,Comedy romance music,1445531236 +86512,62374,middle east,1236622660 +86519,16,watch,1207464422 +86519,21,watch,1207463807 +86519,36,watch,1207463856 +86519,50,watch-again,1207463612 +86519,95,watch,1207463821 +86519,141,watch-fully,1207463829 +86519,150,watch-again,1207463565 +86519,151,watch,1207465270 +86519,153,watch-again,1207463656 +86519,208,watch,1207463789 +86519,296,watch-fully,1207463548 +86519,316,watch-again,1207463709 +86519,368,watch-fully,1207464394 +86519,434,watch-fully,1207463778 +86519,466,watch,1207465255 +86519,480,rate,1207463557 +86519,539,watch,1207463761 +86519,553,watch-again,1207464621 +86519,608,watch-again,1207463588 +86519,653,watch,1207464625 +86519,750,watch,1207464157 +86519,780,watch-fully,1207463573 +86519,784,watch,1207465026 +86519,786,watch,1207464379 +86519,858,watch-again,1207463716 +86519,912,watch-again,1207464066 +86519,923,watch,1207464444 +86519,1089,watch,1207464098 +86519,1213,watch-fully,1207464084 +86519,1240,watch-again,1207463769 +86519,1246,watch-again,1207464403 +86519,1247,watch,1207464633 +86519,1527,watch-again,1207464057 +86519,1653,watch,1207464460 +86519,1732,watch-again,1207464822 +86519,1784,watch-again,1207464112 +86519,1961,watch,1207464010 +86519,1968,watch-again,1207464143 +86519,2268,watch,1207465094 +86519,2599,watch-again,1207465221 +86519,2858,watch-again,1207463634 +86519,3481,watch-again,1207465209 +86519,3751,watch,1207464982 +86519,4022,watch-again,1207464988 +86519,4027,watch,1207464836 +86519,4034,watch-again,1207464543 +86534,260,action,1439590807 +86534,260,adventure,1439590794 +86534,260,sci-fi,1439590773 +86548,30812,Bad Acting,1295979344 +86548,30812,Bad casting,1295979344 +86552,4641,based on a comic,1449147550 +86553,780,alien invasion,1163058965 +86553,780,sci-fi,1163059012 +86557,111362,action,1420193418 +86557,111362,bad ass,1420193418 +86557,111362,based on comic,1420193418 +86567,108932,animation,1434151462 +86567,108932,children,1434151462 +86567,108932,feel-good,1434151462 +86576,5679,ghost story,1451917935 +86576,104867,bisexuality,1452792214 +86577,199,catherine deneuve,1149915293 +86577,207,cinematography,1149918232 +86577,236,fear of airplanes,1149911019 +86577,1097,family,1149911039 +86577,1357,music,1149914784 +86577,1496,Go Sophie Marceau,1149915153 +86577,1496,Sean Bean lives,1149915125 +86577,1619,great cinematography,1149914540 +86577,1949,Honor,1149913459 +86577,2126,boring,1149918952 +86577,3082,sophie marceau,1149918387 +86577,3808,stark,1149914630 +86577,4994,boring,1149918331 +86577,5064,Amazing Cinematography,1149914337 +86577,5902,surreal,1149917999 +86577,5902,writing process,1149918020 +86577,6157,saliva song rocks,1149914315 +86577,6497,norman mailer,1149919724 +86577,6724,tatum o neal,1149915674 +86577,33679,Shooting and shooting,1149918262 +86577,41566,Christian,1149911276 +86577,41566,fantasy,1149911274 +86577,41566,love mr. tumnus,1149911290 +86580,37384,comedy,1138921052 +86580,40815,magic,1140133917 +86582,260,1970s,1441593776 +86582,260,classic sci-fi,1441593787 +86582,5577,Coming of Age,1441595386 +86582,5617,quirky,1441600019 +86582,8981,Clive Owen,1441599951 +86582,8981,relationships,1441599938 +86582,108078,Cédric Klapisch,1441600864 +86582,108078,french,1441600862 +86605,2724,Romance,1441177474 +86605,4069,Romance,1441177446 +86605,5943,Romance,1441177494 +86619,185,Sandra Bullock,1431885702 +86619,356,classic,1431885959 +86619,356,drama,1431885959 +86619,356,too long,1431885959 +86619,31685,romantic comedy,1431885985 +86619,69406,romance,1431885738 +86619,69406,Ryan Reynolds,1431885735 +86619,69406,Sandra Bullock,1431885729 +86636,1949,comedy,1332302430 +86636,1949,noir,1332302430 +86652,260,space-opera,1436230253 +86652,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1436230242 +86652,356,classic adventure,1436230907 +86652,356,feel-good,1436230907 +86652,356,tragic lovestory,1436230907 +86652,94959,cinematography,1436231106 +86652,94959,love story,1436231109 +86652,94959,original,1436231108 +86652,94959,surreal,1436231094 +86660,260,action,1437930079 +86660,260,classic,1437930090 +86660,260,Science Fiction,1437930071 +86660,260,space,1437930084 +86660,260,spaceships,1437930139 +86660,92259,comedy,1437931527 +86660,92259,drama,1437931527 +86660,92259,friendship,1437931527 +86668,37853,jessica alba's beautiful ass,1143832103 +86681,296,action,1425938107 +86681,296,comedy,1425938107 +86681,296,twists & turns,1425938107 +86681,356,funny,1426687526 +86681,356,heartwarming,1426687526 +86681,356,love,1426687526 +86681,113345,action,1425366206 +86681,113345,sci-fi,1425366183 +86683,260,EPIC,1430710095 +86683,260,sci-fi,1430710086 +86702,40614,predictable,1148077862 +86731,235,Dark dramedy,1139785456 +86731,2915,awesome soundtrack,1279266179 +86731,112940,super dry,1415635688 +86754,125786,DADT,1421819864 +86754,125786,Gay,1421819848 +86754,125786,Military,1421819861 +86758,260,sci-fi,1441374624 +86758,260,Space Saga,1441374643 +86759,260,action,1437976777 +86759,260,sci-fi,1437976761 +86798,480,bad hollywood science,1437053552 +86798,480,cheesy,1437053552 +86798,480,special effects,1437053552 +86798,6314,healthy relationship,1437053717 +86798,6314,hilarious,1437053672 +86798,6314,refreshing,1437053694 +86798,26285,hilarious,1437053618 +86798,26285,so bad it's good,1437053609 +86811,65514,martial arts,1444132495 +86811,115617,Animation,1443907107 +86811,115617,Disney,1443907113 +86811,115617,japanese influence,1443907118 +86811,115617,Marvel,1443907128 +86811,139721,Taiwan,1443907288 +86815,68,vhs,1168972631 +86815,272,vhs,1168972417 +86815,349,vhs,1168972211 +86815,680,vhs,1168972168 +86815,912,vhs,1168972012 +86815,923,vhs,1168972015 +86815,1084,vhs,1168972182 +86815,1237,vhs,1168972032 +86815,1250,vhs,1168972002 +86815,1273,vhs,1168972285 +86815,1301,vhs,1168972264 +86815,1584,vhs,1168972231 +86815,1913,vhs,1168972519 +86815,1918,vhs,1168972641 +86815,2058,vhs,1168972513 +86815,2065,vhs,1168972530 +86815,2329,vhs,1168971990 +86815,2365,vhs,1168972605 +86815,2542,vhs,1168972409 +86815,2559,vhs,1168972753 +86815,2565,vhs,1168972403 +86815,2693,hs,1168972536 +86815,2731,vhs,1168971986 +86815,2965,vhs,1168972844 +86815,3156,vhs,1168972716 +86815,3452,vhs,1168972686 +86815,3799,vhs,1168972854 +86815,3961,vhs,1168972748 +86815,4096,vhs,1168972737 +86815,4213,vhs,1168972781 +86815,4235,vhs,1168971996 +86815,4236,vhs,1168972083 +86815,4390,vhs,1168972702 +86815,4403,vhs,1168972052 +86815,4416,vhs,1168972244 +86815,4440,vhs,1168972070 +86815,4658,vhs,1168972057 +86815,4713,vhs,1168972115 +86815,4733,vhs,1168972707 +86815,4855,hs,1168972251 +86815,5013,vhs,1168972300 +86815,5065,vhs,1168972650 +86815,5379,vhs,1168971939 +86815,5882,vhs,1168972691 +86815,6042,vhs,1168972178 +86815,6062,vhs,1168971868 +86815,6152,vhs,1168972848 +86815,6283,vhs,1168971854 +86815,6618,vhs,1168971970 +86815,6953,vhs,1168972163 +86815,6979,vhs,1168972592 +86815,7108,vhs,1168971832 +86815,7124,vhs,1168972063 +86815,7156,vhs,1168972020 +86815,7314,vhs,1168972680 +86815,7323,vhs,1168972271 +86815,7714,vhs,1168972191 +86815,7743,vhs,1168972087 +86815,7748,vhs,1168972525 +86815,7882,vhs,1168972655 +86815,7891,vhs,1168972047 +86815,7899,vhs,1168971840 +86815,8004,vhs,1168972677 +86815,8129,vhs,1168972821 +86815,8196,vhs,1168972609 +86815,8222,vhs,1168972039 +86815,8253,vhs,1168971823 +86815,8501,vhs,1168972093 +86815,8582,vhs,1168972429 +86815,8635,vhs,1168972859 +86815,8781,hs,1168972647 +86815,8832,vhs,1168972599 +86815,8874,vhs,1168971812 +86815,26662,vhs,1168972307 +86815,30810,vhs,1168972100 +86815,31660,vhs,1168972109 +86815,32213,vhs,1168972624 +86815,32587,vhs,1168972548 +86815,34072,vhs,1168972434 +86815,34405,hs,1168972553 +86815,36397,vhs,1168972837 +86815,40278,vhs,1168972391 +86822,65882,Twist Ending,1394703797 +86822,71379,horror,1394705389 +86822,71379,psychological,1394705393 +86822,94663,bollywood,1427179485 +86822,94663,comedy,1427179485 +86822,94663,good theme,1427179485 +86839,5902,Nicolas Cage,1295410842 +86841,3317,Bob Dylan,1231315826 +86841,5385,Bob Dylan,1231315750 +86841,6563,Bob Dylan,1231315653 +86841,7889,Bob Dylan,1231315697 +86841,38304,Bob Dylan,1231315764 +86841,69526,stop using useless characters for filler,1246227926 +86843,290,based on a book,1355616680 +86843,290,strong women,1355616683 +86843,2321,marvelous,1138250935 +86843,2858,coming of age,1355621125 +86843,2858,iconic,1138147588 +86843,2858,reflective,1355621120 +86843,2858,social commentary,1355621117 +86843,2858,thought-provoking,1355621115 +86843,2959,Brad Pitt,1355616427 +86843,2959,imdb top 250,1355616444 +86843,2959,social commentary,1355616410 +86843,2959,thought-provoking,1355616413 +86843,2959,twist ending,1355616436 +86843,2959,violence,1355616439 +86843,3006,corruption,1355616059 +86843,3006,docudrama,1355616063 +86843,3006,Russell Crowe,1355616162 +86843,3006,true story,1355616053 +86843,4262,overrated,1136768939 +86843,36529,based on a true story,1355616866 +86843,36529,dark comedy,1355616868 +86843,36529,narrated,1355616870 +86843,36529,Nicolas Cage,1355616880 +86843,56093,dialogue driven,1355618960 +86843,56093,ethics,1355618969 +86843,56093,nonsense,1355618967 +86843,56093,too long,1355618965 +86843,61236,touching,1355614085 +86843,61236,very moving,1355614090 +86844,260,han shot first,1442689816 +86844,260,i wanna be a jedi,1442689852 +86844,260,the classic sci fi movie. must see.,1442689806 +86847,296,crime,1430287038 +86847,296,drugs,1430287038 +86847,296,quentin tarantino,1430287038 +86862,4878,cult film,1306921199 +86862,4878,sci-fi,1306921209 +86862,4878,surreal,1306921202 +86862,4878,thought-provoking,1306921191 +86862,6214,Gaspar Noé,1306951866 +86862,6214,nonlinear,1306951872 +86862,6214,reverse timeline,1306951857 +86862,8914,clever,1306919948 +86862,8914,Complicated,1306919943 +86862,8914,complicated plot,1306919946 +86862,8914,Deep,1306919965 +86862,8914,dialogue driven,1306919981 +86862,8914,low budget,1306919973 +86862,8914,mindfuck,1306919953 +86862,8914,time travel,1306919957 +86862,27317,disturbing,1306921385 +86862,27317,mindfuck,1306921382 +86862,27317,stylized,1306921389 +86862,27773,Chan-wook Park,1306952377 +86862,27773,disturbing,1306952388 +86862,27773,revenge,1306952382 +86862,27773,twist ending,1306952380 +86862,27773,vengeance,1306952385 +86862,42632,beautiful cinematography,1306952528 +86862,42632,Chan-wook Park,1306952506 +86862,42632,Masterpiece,1306952514 +86862,42632,revenge,1306952524 +86862,42632,stylized,1306952517 +86862,73344,Complicated plot,1306951895 +86862,73344,Great actors,1306951904 +86862,73344,Jacques Audiard,1306951897 +86862,73344,Niels Arestrup,1306951900 +86862,78836,camerawork,1306951802 +86862,78836,Gaspar Noé,1306951786 +86862,78836,Mind Games,1306951809 +86862,78836,psychedelic,1306951805 +86862,78836,sexuality,1306951790 +86862,78836,technically astounding,1306951795 +86862,84152,doesn't resist to some cliches,1306919374 +86862,84152,unfinished storyline,1306919384 +86868,115713,artifical intelligence,1435045786 +86868,115713,robots,1435045786 +86868,115713,suspense,1435045786 +86889,260,Original classic,1442083934 +86889,260,Science Fiction,1442083966 +86889,260,space adventure,1442083945 +86895,537,Notable Nudity,1152768880 +86895,1258,Nudity (Full Frontal - Notable),1220542038 +86895,2795,Notable Nudity,1150163243 +86895,2969,Oscar (Best Foreign Language Film),1250657330 +86895,3529,Jack Nicholson,1185197343 +86895,3668,Notable Nudity,1158091442 +86895,3783,Nudity (Full Frontal - Notable),1161208647 +86895,5847,Nudity (Full Frontal - Brief),1168791750 +86895,33358,Well-acted.,1167363322 +86898,1923,awful movie,1174178282 +86898,1923,Overrated,1174178292 +86898,48385,not funny,1193200202 +86904,1,Pixar,1223304727 +86904,1,time travel,1223304729 +86904,2,Robin Williams,1223305308 +86904,2,time travel,1223305310 +86904,72,Coming-of-Age,1223349077 +86904,186,Robin Williams,1223402400 +86904,215,Subscription,1223425474 +86904,262,England,1223305295 +86904,262,Girl Power,1223305297 +86904,356,Oscar (Best Picture),1223305159 +86904,412,Playlist,1223425429 +86904,497,Playlist,1223425349 +86904,541,100 Greatest Movies,1268369768 +86904,595,Playlist,1223424921 +86904,750,100 Greatest Movies,1268373617 +86904,801,wanting to be a writer,1223424240 +86904,858,100 Greatest Movies,1268510255 +86904,899,musical,1223304751 +86904,899,romance,1223304752 +86904,905,100 Greatest Movies,1268526534 +86904,912,100 Greatest Movies,1268373529 +86904,913,100 Greatest Movies,1268527004 +86904,918,100 Greatest Movies,1268527049 +86904,919,classic,1223304689 +86904,920,100 Greatest Movies,1268526130 +86904,923,100 Greatest Movies,1268373565 +86904,926,100 Greatest Movies,1268369518 +86904,940,100 Greatest Movies,1268369470 +86904,951,100 Greatest Movies,1268526262 +86904,953,100 Greatest Movies,1268526553 +86904,954,100 Greatest Movies,1268527090 +86904,955,100 Greatest Movies,1268373512 +86904,959,Subscription,1223425206 +86904,969,100 Greatest Movies,1268369496 +86904,1014,Disney,1223304783 +86904,1035,true story,1223304741 +86904,1073,based on a book,1223304696 +86904,1073,Johnny Depp,1223304693 +86904,1084,100 Greatest Movies,1268373446 +86904,1097,100 Greatest Movies,1268510148 +86904,1103,Playlist,1223425741 +86904,1169,Sundance Grand Jury Prize: Documentary 1991,1223349735 +86904,1197,fairy tale,1223305266 +86904,1204,100 Greatest Movies,1268526920 +86904,1208,100 Greatest Movies,1268369609 +86904,1219,Scary Movies To See on Halloween,1224091407 +86904,1221,100 Greatest Movies,1268510265 +86904,1230,100 Greatest Movies,1268369577 +86904,1247,100 Greatest Movies,1268526156 +86904,1250,100 Greatest Movies,1268373493 +86904,1252,100 Greatest Movies,1268373547 +86904,1253,Scary Movies To See on Halloween,1224120334 +86904,1256,100 Greatest Movies,1268510111 +86904,1260,Scary Movies To See on Halloween,1224089322 +86904,1278,Playlist,1223426152 +86904,1282,100 Greatest Movies,1268510197 +86904,1283,100 Greatest Movies,1268526239 +86904,1284,100 Greatest Movies,1268369682 +86904,1287,100 Greatest Movies,1268369632 +86904,1307,chick flick,1223304699 +86904,1337,Scary Movies To See on Halloween,1224090296 +86904,1340,100 Greatest Movies,1268373470 +86904,1340,Scary Movies To See on Halloween,1224089935 +86904,1348,Scary Movies To See on Halloween,1224088582 +86904,1380,classic,1223609166 +86904,1380,musical,1223609169 +86904,1380,rock and roll,1223609163 +86904,1387,100 Greatest Movies,1268526718 +86904,1704,Subscription,1223425547 +86904,1777,1980s,1223304708 +86904,1777,Adam Sandler,1223304707 +86904,1895,Teen movie,1223339383 +86904,1927,100 Greatest Movies,1268369561 +86904,1939,100 Greatest Movies,1268369658 +86904,1947,Oscar (Best Picture),1223304702 +86904,1952,100 Greatest Movies,1268527071 +86904,2005,magic,1223305150 +86904,2059,remake,1223304792 +86904,2066,Scary Movies To See on Halloween,1224090217 +86904,2114,based on a book,1223304794 +86904,2114,literary adaptation,1223304796 +86904,2141,Best Jewish Movies,1223834291 +86904,2144,high school,1223304743 +86904,2144,John Cusack,1223304747 +86904,2144,teen,1223304745 +86904,2145,wired 50 greatest soundtracks,1223304779 +86904,2146,friendship,1223305247 +86904,2161,Fantasy,1223304806 +86904,2174,comedy,1223345863 +86904,2174,Tim Burton,1223345859 +86904,2227,Scary Movies To See on Halloween,1224091387 +86904,2287,Scary Movies To See on Halloween,1224090463 +86904,2324,Subscription,1223425149 +86904,2362,Scary Movies To See on Halloween,1224089883 +86904,2366,100 Greatest Movies,1268526734 +86904,2414,Sherlock Holmes,1223402419 +86904,2432,family,1223305240 +86904,2454,Scary Movies To See on Halloween,1224090570 +86904,2488,Scary Movies To See on Halloween,1224090857 +86904,2519,Scary Movies To See on Halloween,1224120454 +86904,2550,Scary Movies To See on Halloween,1224090339 +86904,2633,Scary Movies To See on Halloween,1224089657 +86904,2635,Scary Movies To See on Halloween,1224089777 +86904,2636,Scary Movies To See on Halloween,1224089761 +86904,2638,Scary Movies To See on Halloween,1224089741 +86904,2644,Scary Movies To See on Halloween,1224089236 +86904,2646,Scary Movies To See on Halloween,1224089448 +86904,2647,Scary Movies To See on Halloween,1224089430 +86904,2648,Scary Movies To See on Halloween,1224089350 +86904,2650,Scary Movies To See on Halloween,1224090012 +86904,2651,Scary Movies To See on Halloween,1224089409 +86904,2653,Scary Movies To See on Halloween,1224089836 +86904,2654,Scary Movies To See on Halloween,1224089400 +86904,2657,Scary Movies To See on Halloween,1224122166 +86904,2660,Scary Movies To See on Halloween,1224090410 +86904,2664,Scary Movies To See on Halloween,1224090492 +86904,2762,twist ending,1223305253 +86904,2780,Scary Movies To See on Halloween,1224090726 +86904,2782,Scary Movies To See on Halloween,1224090663 +86904,2783,Scary Movies To See on Halloween,1224090786 +86904,2784,Scary Movies To See on Halloween,1224090767 +86904,2785,Scary Movies To See on Halloween,1224090704 +86904,2918,coming of age,1223305173 +86904,2935,100 Greatest Movies,1268526901 +86904,2953,Christmas,1223305132 +86904,2953,sequel,1223305131 +86904,3022,100 Greatest Movies,1268510232 +86904,3033,parody,1223433356 +86904,3072,New York City,1223305285 +86904,3095,100 Greatest Movies,1268526186 +86904,3168,100 Greatest Movies,1268510167 +86904,3189,dogs,1223305280 +86904,3307,100 Greatest Movies,1268373581 +86904,3340,Scary Movies To See on Halloween,1224089913 +86904,3408,Playlist,1223425392 +86904,3435,100 Greatest Movies,1268373633 +86904,3462,100 Greatest Movies,1268527111 +86904,3472,Scary Movies To See on Halloween,1224120432 +86904,3526,family,1223304788 +86904,3526,Keanu Reeves,1223304787 +86904,3599,Subscription,1223481437 +86904,3627,Scary Movies To See on Halloween,1224090874 +86904,3629,100 Greatest Movies,1268526039 +86904,3725,Best Jewish Movies,1223834153 +86904,3791,rock and roll,1223306678 +86904,3791,teen,1223306679 +86904,3849,Scary Movies To See on Halloween,1224120669 +86904,3897,coming of age,1225637982 +86904,3897,journalism,1225637986 +86904,3897,rock and roll,1225637984 +86904,3928,Scary Movies To See on Halloween,1224089482 +86904,3930,Scary Movies To See on Halloween,1224090442 +86904,3932,Scary Movies To See on Halloween,1224089576 +86904,4091,80's,1223339369 +86904,4091,high school,1223339366 +86904,4195,Scary Movies To See on Halloween,1224120252 +86904,4306,fairy tale,1223304755 +86904,4310,historical,1223931659 +86904,4403,Scary Movies To See on Halloween,1224090643 +86904,4679,John Candy,1223402379 +86904,4700,Julie Andrews,1223339446 +86904,4703,Playlist,1223425334 +86904,4890,Jack Black,1223301862 +86904,4896,fantasy,1223305147 +86904,4896,magic,1223305144 +86904,4920,Subscription,1223481081 +86904,4966,Scary Movies To See on Halloween,1224090522 +86904,4973,Can Be A Playlist,1223424938 +86904,4993,magic,1223305102 +86904,4995,Playlist,1223425468 +86904,5103,Baseball Movie,1223304773 +86904,5177,100 Greatest Movies,1268526986 +86904,5299,wedding,1223304813 +86904,5349,comic book,1223304734 +86904,5379,Sundance award winner,1223349733 +86904,5618,anime,1223348943 +86904,5799,classic,1223860315 +86904,5816,based on a book,1223305623 +86904,5816,fantasy,1223305621 +86904,5816,magic,1223305620 +86904,5989,Playlist,1223425491 +86904,5995,Adrien Brody,1305600278 +86904,5995,beautiful,1305600272 +86904,5995,classical music,1305600286 +86904,5995,holocaust,1305600293 +86904,5995,true story,1305600298 +86904,6266,London,1223349374 +86904,6266,musicians,1223349373 +86904,6287,Playlist,1223426683 +86904,6378,Playlist,1223425381 +86904,6558,John Hughes,1223402357 +86904,6629,Scary Movies To See on Halloween,1224090544 +86904,6773,Subscription,1223425789 +86904,6887,Cuba Gooding Jr.,1223305263 +86904,6932,journalism,1223497134 +86904,6936,Christmas,1223349100 +86904,6936,New York City,1223349099 +86904,6967,Scary Movies To See on Halloween,1224120360 +86904,6984,Playlist,1223439835 +86904,6987,Scary Movies To See on Halloween,1224091459 +86904,7013,Scary Movies To See on Halloween,1224090593 +86904,7065,100 Greatest Movies,1268369705 +86904,7079,Scary Movies To See on Halloween,1224089602 +86904,7080,100 Greatest Movies,1268510215 +86904,7147,Playlist,1223425484 +86904,7154,Playlist,1223427155 +86904,7208,Scary Movies To See on Halloween,1224089132 +86904,7243,100 Greatest Movies,1268526288 +86904,7444,Child as Adult,1223305215 +86904,7451,seen more than once,1223304825 +86904,7451,suprisingly clever,1223304824 +86904,7826,Subscription,1223481905 +86904,7839,Playlist,1223482670 +86904,7881,Scary Movies To See on Halloween,1224089700 +86904,7901,Scary Movies To See on Halloween,1224090742 +86904,7993,Scary Movies To See on Halloween,1224090614 +86904,7994,Scary Movies To See on Halloween,1224090688 +86904,8003,Scary Movies To See on Halloween,1224090318 +86904,8459,Playlist,1223425571 +86904,8482,Scary Movies To See on Halloween,1224089632 +86904,8521,Scary Movies To See on Halloween,1224089123 +86904,8521,Subscription,1223425529 +86904,8533,great ending,1223305269 +86904,8626,Scary Movies To See on Halloween,1224090946 +86904,8712,Playlist,1223439846 +86904,8784,coming of age,1225396411 +86904,8784,directorial debut,1225396431 +86904,8784,Natalie Portman,1225396413 +86904,8784,soundtrack,1225396428 +86904,8784,wired 50 greatest soundtracks,1225396433 +86904,8801,Sundance Grand Jury Prize: Dramatic 1992,1223349745 +86904,8879,Playlist,1223425219 +86904,8970,Johnny Depp,1223305168 +86904,25746,Scary Movies To See on Halloween,1224088812 +86904,25753,100 Greatest Movies,1268526204 +86904,25766,100 Greatest Movies,1268373595 +86904,25793,Scary Movies To See on Halloween,1224089291 +86904,25826,Playlist,1223439822 +86904,25839,Subscription,1223480995 +86904,25868,AFI 100 (Laughs),1223350129 +86904,25868,Playlist,1223427273 +86904,25868,Screwball Comedy,1223350132 +86904,25886,Playlist,1223427254 +86904,25941,100 Greatest Movies,1268526963 +86904,27815,feel-good,1268368759 +86904,27815,heartwarming,1268368764 +86904,27815,inspirational,1268368770 +86904,27815,inspiring teacher,1268368774 +86904,27815,music,1268368779 +86904,27815,strength through music,1268368789 +86904,27815,vocalists,1268368795 +86904,32060,Scary Movies To See on Halloween,1224089198 +86904,36525,chick flick,1223305301 +86904,36525,San Francisco,1223305303 +86904,40819,Oscar (Best Actress),1223305225 +86904,40819,true story,1223305224 +86904,44709,feel-good,1223305213 +86904,45679,Scary Movies To See on Halloween,1224090238 +86904,46578,Best soundtrack,1223306884 +86904,46578,comedy,1223305107 +86904,46578,disfunctional family,1223306771 +86904,46578,imdb top 250,1223306776 +86904,46578,off-beat comedy,1223306774 +86904,46578,road trip,1223305105 +86904,46578,Steve Carell,1223306781 +86904,47382,dance,1223304732 +86904,47610,19th century,1223305127 +86904,47610,twist ending,1223305126 +86904,47778,Sundance award winner,1223349709 +86904,47778,Sundance Grand Jury Prize: Dramatic 2006,1223349713 +86904,49856,library,1267463968 +86904,49856,little dialogues,1267463963 +86904,49910,Holocaust,1223305154 +86904,49910,PG-13,1223305157 +86904,50601,teen relationships,1223403276 +86904,50685,bittersweet,1223304711 +86904,50685,food,1223304713 +86904,50685,pregnancy,1223304714 +86904,53123,Catchy Score,1223349628 +86904,53123,London,1223349644 +86904,53123,musical,1223304801 +86904,53123,Oscar (Best Music - Original Song),1223304803 +86904,53123,songwriting,1223349621 +86904,53123,wired 50 greatest soundtracks,1223349618 +86904,54281,movie to see,1223305199 +86904,54281,rebellion,1223305195 +86904,55247,based on a true story,1223305115 +86904,56171,anti-religion,1267462970 +86904,56171,based on a book,1267462929 +86904,56171,coming of age,1267462934 +86904,56171,controversial,1267462964 +86904,56171,fantasy world,1267462936 +86904,56171,magic,1267462940 +86904,56171,Parallel universe,1267462947 +86904,56367,high school,1223305110 +86904,56367,independent film,1416285415 +86904,56367,notable soundtrack,1223305109 +86904,56367,quirky,1416285409 +86904,56367,quotable,1416285403 +86904,56587,friendship,1224388156 +86904,58627,Can Be a Playlist,1223835137 +86904,59141,friendship,1224518603 +86904,62376,adventure,1267464959 +86904,62376,based on a book,1267464979 +86904,62376,movie to see,1267464974 +86904,62376,stylistic,1267464971 +86904,78039,Graphic sex,1296769260 +86904,78039,marriage,1296769225 +86904,78039,Michelle Williams,1296769230 +86904,78039,Ryan Gosling,1296769228 +86904,78039,slow moving plot,1296769232 +86904,78039,small town,1296769272 +86904,78039,true to life,1296769244 +86904,80549,comedy,1308166956 +86904,80549,dialogue,1308166953 +86904,80549,Emma Stone,1308166963 +86904,80549,family relationships,1308166966 +86904,80549,witty,1308166975 +86905,260,70s,1434428030 +86905,260,action adventure,1434428025 +86905,260,critically acclaimed,1434428047 +86905,260,epic,1434427993 +86905,260,fantasy,1434428064 +86905,260,saga,1434428052 +86905,260,sci-fi,1434428036 +86908,296,good music,1207860926 +86908,296,john travolta,1207860926 +86908,367,jim carrey,1207861051 +86908,539,meg ryan,1207861389 +86908,1682,jim carrey,1207862038 +86908,1704,matt damon,1207860855 +86908,1917,liv tyler,1207861586 +86908,2174,winona ryder,1207861741 +86908,2706,mena suvari,1207861322 +86908,6711,scarlett johansson,1207860498 +86908,32587,alexis bledel,1207861018 +86908,44889,kristen bell,1207860598 +86908,45722,keira knightley,1207861074 +86908,55419,alexis bledel,1207861836 +86945,1527,comics inspired,1433029163 +86945,1527,Gary Oldman,1433029178 +86945,1527,sci-fi satire,1433029223 +86945,1732,romp,1433029035 +86945,2108,quirky,1433028848 +86945,3052,Alanis Morissette,1433028971 +86945,3916,overcoming,1433029063 +86945,3967,gritty,1433029093 +86945,3967,unsentimental,1433029101 +86945,4011,quirky,1433029345 +86945,4011,screwball,1433029339 +86945,6218,empowerment,1433028895 +86945,34405,action,1433022440 +86945,34405,sci-fi,1433022440 +86945,34405,space western,1433022440 +86945,82459,Gritty,1433029265 +86945,82459,realistic,1433029296 +86945,109487,deep science fiction,1433029462 +86945,109487,thought-provoking,1433029419 +86949,40278,Modern war,1244512438 +86953,60647,asesinato,1239481953 +86953,60647,crimen,1239481953 +86953,60647,droga,1239481953 +86953,65130,bodrio,1239415925 +86953,65130,cansina,1239415961 +86953,65130,lenta,1239415961 +86958,296,drugs,1423334296 +86958,296,retro,1423334296 +86958,296,violent,1423334296 +86990,1240,cyberpunk,1425253980 +86990,1240,tech-noir,1425253984 +86990,2093,children's,1425276162 +86990,2093,dark fantasy,1425276174 +86990,2093,dorothy,1425276155 +86990,2093,fantasy,1425276185 +86990,2093,magical creatures,1425276200 +86990,2093,oz,1425276149 +86990,113780,catacombs,1425253823 +86990,113780,cerebral,1425253803 +86990,113780,hell,1425253849 +86990,113780,tomb raider,1425253830 +87017,318,Morgan Freeman,1427897967 +87017,318,revenge,1427897971 +87017,1393,sports,1427898057 +87017,2571,cult film,1427898079 +87017,2571,sci-fi,1427898074 +87017,2858,black comedy,1427898138 +87017,2858,dark comedy,1427898124 +87017,2858,great acting,1427898135 +87017,2858,kevin spacey,1427898127 +87017,2858,powerful ending,1427898129 +87017,2916,arnold,1427898095 +87017,2916,Paul Verhoeven,1427898098 +87017,4973,inspirational,1427897994 +87017,4973,music,1427897996 +87036,111,atmospheric,1254509062 +87036,111,disturbing,1254509066 +87036,111,Robert De Niro,1254509067 +87036,111,social commentary,1254509048 +87036,858,Al Pacino,1254509090 +87036,858,atmospheric,1254509088 +87036,858,immigrants,1254509121 +87036,858,Mafia,1254509093 +87036,858,melancholy,1254509117 +87036,858,organized crime,1254509133 +87036,1213,dark comedy,1254509173 +87036,1213,disturbing,1254509175 +87036,1213,gritty,1254509177 +87036,1213,organized crime,1254509186 +87036,1213,Robert De Niro,1254509185 +87036,1221,Al Pacino,1254509145 +87036,1221,dysfunctional family,1254509148 +87036,1221,mafia,1254509154 +87036,1221,organized crime,1254509152 +87036,2959,disturbing,1358122568 +87036,2959,psychological,1358122565 +87036,2959,social commentary,1358122558 +87036,2959,thought-provoking,1358122562 +87036,3949,addiction,1254509278 +87036,3949,dark,1254509285 +87036,3949,disturbing,1254509289 +87036,3949,drug abuse,1254509291 +87036,3949,drugs,1254509292 +87036,3949,heroin,1254509294 +87036,3949,loneliness,1254509297 +87036,3949,psychology,1254509299 +87036,3949,social commentary,1254509301 +87036,32587,Bruce Willis,1358122475 +87036,32587,multiple storylines,1358122478 +87036,32587,stylized,1358122490 +87036,32587,surrealism,1358122493 +87036,59315,funny,1343172848 +87036,59315,Robert Downey Jr.,1343172845 +87036,59315,visually appealing,1343172871 +87036,77561,Don Cheadle,1343172901 +87036,77561,Robert Downey Jr.,1343172891 +87036,77561,Scarlett Johansson,1343172903 +87036,86332,funny,1343172993 +87036,86332,Natalie Portman,1343172987 +87036,86332,predictable,1343172990 +87036,88140,america porn,1343172967 +87036,88140,american idiocy,1343172956 +87036,88140,cheesy,1343172928 +87036,89745,Robert Downey Jr.,1343172780 +87036,89745,Scarlett Johansson,1343172788 +87036,89745,stylized violence,1343172810 +87036,89745,visually appealing,1343172813 +87050,1732,Cult classic,1447665901 +87050,1732,Jeff Bridges,1447665887 +87053,260,70s,1438537467 +87053,260,Star Wars,1438537448 +87053,924,cinematography,1438539890 +87053,924,futuristic,1438539900 +87053,924,masterpiece,1438539883 +87053,924,meditative,1438539903 +87053,924,philosophical,1438539905 +87053,924,visually appealing,1438539892 +87053,1199,black comedy,1438539812 +87053,1199,cerebral,1438539821 +87053,1199,dark,1438539845 +87053,1199,dark comedy,1438539815 +87053,1199,dreamlike,1438539831 +87053,1199,dystopia,1438539828 +87053,1199,dystopic future,1438539851 +87053,1199,surreal,1438539809 +87053,1199,thought-provoking,1438539822 +87053,1199,visually appealing,1438539839 +87053,1199,weird,1438539826 +87053,1283,atmospheric,1438539943 +87053,1283,moral crusade,1438539974 +87053,1283,timeless,1438539952 +87093,6,bleak,1269460992 +87093,6,dialogue,1269460998 +87093,6,long,1269461003 +87093,6,overrated,1269460985 +87093,6,too long,1269461010 +87093,150,based on a true story,1269619471 +87093,150,historical,1269619479 +87093,150,slow,1269619464 +87093,150,suspense,1269619467 +87093,150,Tom Hanks,1269619470 +87093,527,black and white,1269448011 +87093,527,liam neeson,1269448029 +87093,527,realistic,1269448015 +87093,527,sex scenes,1269448036 +87093,527,true story,1269448020 +87093,1036,action,1269448324 +87093,1036,alan rickman,1269448328 +87093,1036,bruce willis,1269448333 +87093,1036,christmas,1269448337 +87093,1036,claustrophobic,1269448342 +87093,1036,explosion,1269448352 +87093,1036,incompetent cops,1269448368 +87093,1036,intense,1269448347 +87093,1036,lone hero,1269448355 +87093,1090,Charlie Sheen,1269447414 +87093,1090,Oliver Stone,1269447431 +87093,1090,Willem Dafoe,1269447438 +87093,1136,british comedy,1269534068 +87093,1136,classic,1269534080 +87093,1136,ending,1269534085 +87093,1136,Monty Python,1269534070 +87093,1136,parody,1269534075 +87093,1136,Quotable,1269534061 +87093,1136,Terry Gilliam,1269534072 +87093,1201,classic,1279243020 +87093,1201,Clint Eastwood,1279243007 +87093,1201,complex characters,1279243005 +87093,1201,end of a trilogy,1279242998 +87093,1201,Ennio Morricone,1279243011 +87093,1240,Arnold Schwarzenegger,1269461934 +87093,1240,classic,1269461938 +87093,1240,stop motion,1269461952 +87093,1240,violent,1269461928 +87093,1653,sad ending,1269620420 +87093,2542,difficult english,1269448665 +87093,2542,guy ritchie,1269448669 +87093,2542,jason statham,1269448655 +87093,2542,slow,1269448652 +87093,2542,unique,1269448678 +87093,2716,classic,1269461787 +87093,2716,occult technology,1269461828 +87093,2716,quotable,1269461792 +87093,2959,Brad Pitt,1277775506 +87093,2959,great acting,1277775501 +87093,2959,mental illness,1277775510 +87093,2959,twist ending,1269446673 +87093,4011,benicio del toro,1269448566 +87093,4011,boxing,1269448560 +87093,4011,brad pitt,1269448541 +87093,4011,comedy,1269448555 +87093,4011,difficult english,1269448621 +87093,4011,ending,1269448584 +87093,4011,fighting,1269448581 +87093,4011,great dialogue,1269448503 +87093,4011,gypsy accent,1269448539 +87093,4011,hilarious,1269448572 +87093,4011,intertwining storylines,1269448529 +87093,4011,jason statham,1269448508 +87093,4011,soundtrack,1269448512 +87093,4011,twist ending,1269448546 +87093,4011,vinnie jones,1269448630 +87093,4370,artificial intelligence,1269535884 +87093,4370,Bittersweet,1269535887 +87093,4370,depressing,1269535847 +87093,4370,disturbing,1269535879 +87093,4370,sad,1269535841 +87093,4370,Steven Spielberg,1269535871 +87093,4641,depressing,1269449264 +87093,4641,ending,1269449267 +87093,4641,steve buschemi,1269449283 +87093,4641,too quirky,1269449278 +87093,6502,acting,1269449971 +87093,6502,Danny Boyle,1269449953 +87093,6502,ending,1269449908 +87093,6502,low budget,1269449899 +87093,6502,stylized,1269449920 +87093,6502,unpredictable,1269449980 +87093,6502,visually appealing,1269449914 +87093,6503,two hours of suck,1277130626 +87093,8376,overrated,1270043980 +87093,8376,quotable,1270044005 +87093,26751,not available from Netflix,1269619405 +87093,26751,not on DVD,1269619408 +87093,31878,added sound effects in US version were bad,1269463143 +87093,31878,chinese humor,1269463151 +87093,31878,cultural references lost in translation,1269463156 +87093,31878,overrated,1269463136 +87093,31878,slapstick,1269463175 +87093,40819,addiction,1269619172 +87093,40819,biography,1269619158 +87093,40819,bittersweet,1269619172 +87093,40819,drug abuse,1269619161 +87093,40819,music,1269619163 +87093,40819,true story,1269619165 +87093,41569,Adrien Brody,1269536289 +87093,41569,big budget,1269536321 +87093,41569,CGI,1269536293 +87093,41569,great ending,1269536296 +87093,41569,Jack Black,1269536286 +87093,41569,Naomi Watts,1269536332 +87093,41569,Peter Jackson,1269536305 +87093,41569,Saturn Award (Best Special Effects),1269536307 +87093,43936,Bruce Willis,1277572388 +87093,44191,alliteration,1269621331 +87093,44191,hugo weaving,1269621345 +87093,48385,controversial,1269447918 +87093,48385,no moral,1269447909 +87093,48385,Nudity (Full Frontal - Notable),1269447896 +87093,48385,road trip,1269447901 +87093,48774,acting,1269450026 +87093,48774,battles,1269450017 +87093,48774,christianity,1269450005 +87093,48774,cinematography,1269450034 +87093,48774,dystopia,1269450023 +87093,51255,edgar wright,1269447767 +87093,51255,ending,1269447774 +87093,51255,Funny as hell,1269447762 +87093,51255,nick frost,1269447749 +87093,51255,simon pegg,1269447745 +87093,51255,slow start,1269447736 +87093,51662,action,1269461370 +87093,51662,atmospheric,1269461386 +87093,51662,Epic,1269461364 +87093,51662,Frank Miller,1269461397 +87093,51662,narrated,1269461393 +87093,51662,sword fight,1269461390 +87093,52462,beginning,1269447011 +87093,52462,disappointing,1269446998 +87093,52462,humorous,1269532871 +87093,52462,Neil Peart,1269532885 +87093,53000,disappointing,1269533021 +87093,53000,frustrating to watch,1269533028 +87093,53000,not as good as the first,1269533034 +87093,54256,Andy Samberg,1269533207 +87093,54256,Bill Hader,1269533212 +87093,54256,Danny McBride,1269533202 +87093,54256,Ian McShane,1269533239 +87093,54256,movie to see,1269533245 +87093,54256,Will Arnett,1269533248 +87093,54736,boring,1269461264 +87093,54736,propaganda,1269461250 +87093,54736,slow paced,1269461247 +87093,54995,crude humor,1277775353 +87093,54995,disgusting,1277775366 +87093,54995,Nudity (Topless),1277775354 +87093,55820,cinematography,1269447371 +87093,55820,dark,1269447324 +87093,55820,great acting,1269447344 +87093,55820,imdb top 250,1269447357 +87093,58559,Atmospheric,1269460837 +87093,58559,Christian Bale,1269460832 +87093,58559,dark,1269460821 +87093,58559,Gary Oldman,1269460827 +87093,58559,Heath Ledger,1269460765 +87093,58559,Maggie Gyllenhaal,1269460791 +87093,58559,Morgan Freeman,1269460793 +87093,58559,serial killer,1269460796 +87093,58559,superhero,1269460817 +87093,58559,violent,1269460799 +87093,60753,realistic,1269461076 +87093,60753,stephen dorff,1269461109 +87093,60753,twist ending,1269461122 +87093,60753,val kilmer,1269461080 +87093,60753,wrongful imprisonment,1269461091 +87093,62849,gerard butler,1269448745 +87093,62849,good soundtrack,1269448716 +87093,62849,R,1269448726 +87093,62849,twist ending,1269448731 +87093,63131,jane lynch,1269447826 +87093,63131,life lessons,1269447867 +87093,63131,obvious plot,1269447821 +87093,63131,paul rudd,1269447831 +87093,63131,role playing,1269447855 +87093,63131,seann william scott,1269447836 +87093,64030,dumb,1269449053 +87093,64030,plot,1269449062 +87093,64030,stupid,1269449050 +87093,64030,terrible,1269449021 +87093,64030,unrealistic,1269449042 +87093,67665,documentary,1269461638 +87093,67665,ending,1269461624 +87093,67665,fascinating,1269461618 +87093,67665,fiasco,1269461604 +87093,67665,heavy metal,1269461630 +87093,68073,Bill Nighy,1274119847 +87093,68073,Nick Frost,1274119891 +87093,68073,Philip Seymour Hoffman,1274119837 +87093,68073,pirate radio,1274119902 +87093,68073,rock and roll,1274119849 +87093,68073,soundtrack,1274119856 +87093,68073,To See,1274119897 +87093,68157,christoph waltz,1269448940 +87093,68157,glass of milk,1269448962 +87093,68157,slow,1269448952 +87093,68954,creative,1269449147 +87093,68954,dreams,1269449186 +87093,68954,heartbreaking,1269449161 +87093,68954,old age,1269449174 +87093,68954,opening,1269449169 +87093,68954,pixar,1269449152 +87093,68954,progress,1269449198 +87093,68954,talking animals,1269449179 +87093,68954,touching,1269449164 +87093,68954,tragedy,1269449189 +87093,69640,bank robbery,1269448190 +87093,69640,boring,1269448270 +87093,69640,christian bale,1269448182 +87093,69640,handheld cameras,1269448219 +87093,69640,Handycam,1269448219 +87093,69640,monotonous,1269448202 +87093,69640,pacing,1269448263 +87093,69640,slow pace,1269448272 +87093,69784,ending,1269447961 +87093,69784,not funny,1269447974 +87093,69784,Nudity (Full Frontal),1269447945 +87093,69784,offensive,1269447950 +87093,69784,tasteless,1269447953 +87093,69784,unfunny,1269447968 +87093,71254,defies logic,1269461521 +87093,71254,fat guy,1269448459 +87093,71254,gerard butler,1269448436 +87093,71254,hackers,1269448442 +87093,71254,ludacris,1269448467 +87093,71254,Nudity (Topless - Notable),1269448430 +87093,71254,physics fail,1269461532 +87093,71254,stupid,1269448408 +87093,71254,stupid view of the future,1269461502 +87093,71254,virtual reality,1269448478 +87093,71535,"""Nut up or shut up""",1269460656 +87093,71535,Bill Murray,1269460661 +87093,71535,ending,1269460686 +87093,71535,Jesse Eisenberg is the new Michael Cera,1269460671 +87093,71535,post-apocalyptic,1269460679 +87093,71535,Woody Harrelson,1269460676 +87093,73017,CGI,1269460594 +87093,73017,Historic fiction,1269460488 +87093,73017,plot,1269460500 +87093,73017,Robert Downey Jr.,1269460468 +87093,73017,Sherlock Holmes,1269460458 +87093,73321,gary oldman,1269446406 +87093,73321,mila kunis,1269446852 +87093,73321,pace,1269446394 +87093,73321,post-apocalyptic,1269446710 +87093,73321,rewatchable,1269446834 +87093,73321,setting,1269446714 +87093,73321,twist ending,1269446686 +87093,74452,Anthony Hopkins,1269462809 +87093,74452,bad ending,1269462848 +87093,74452,Benicio Del Toro,1269462806 +87093,74452,boring,1269462796 +87093,74452,Emily Blunt,1269462813 +87093,74452,Hugo Weaving,1269462817 +87093,74452,pointless,1269462831 +87093,74452,predictable,1269462799 +87093,74452,stupid,1269462802 +87093,74452,stupid twist,1269462859 +87093,76251,Aaron Johnson,1272040599 +87093,76251,action,1272040613 +87093,76251,Clark Duke,1272040604 +87093,76251,gory,1272040425 +87093,76251,Hit Girl,1272040408 +87093,76251,Nicolas Cage,1272040412 +87093,76251,not funny,1272040432 +87093,76251,tasteless,1272040415 +87093,79132,action,1280021720 +87093,79132,Christopher Nolan,1280021723 +87093,79132,clever,1280021741 +87093,79132,complicated,1280021737 +87093,79132,dreamlike,1280021744 +87093,79132,Ellen Page,1280021728 +87093,79132,intellectual,1280021748 +87093,79132,Joseph Gordon-Levitt,1280021725 +87093,79132,makes you think,1280021732 +87104,39183,ye haw! Ride em cowboy!!!!,1176783914 +87122,17,Jane Austen,1140709713 +87122,28,Jane Austen,1140709730 +87122,39,Jane Austen,1140709804 +87122,49,Gay,1140810682 +87122,49,Religion,1140709633 +87122,72,Coming-of-Age,1141081548 +87122,86,History,1140707669 +87122,104,Golf,1140811285 +87122,110,History,1140709280 +87122,150,History,1140707029 +87122,150,Space,1141081425 +87122,155,History,1140707023 +87122,187,Coming-of-Age,1141081577 +87122,302,Biography,1141081596 +87122,302,Dumas,1140811148 +87122,302,History,1141081596 +87122,351,interracial romance,1144957480 +87122,383,Biography,1140892615 +87122,389,Law court,1144957450 +87122,389,Period piece,1144957765 +87122,417,Drawing room,1144805504 +87122,448,Death,1145026552 +87122,458,History,1140892382 +87122,506,History,1141081568 +87122,523,Coming-of-Age,1141081617 +87122,534,C.S. Lewis,1140811166 +87122,592,Comic Book,1141081441 +87122,635,Race,1141081529 +87122,715,Disease,1145315351 +87122,838,Jane Austen,1140709779 +87122,852,Golf,1140811247 +87122,899,Dance,1144688331 +87122,902,Truman Capote,1144805974 +87122,912,Classic,1144939324 +87122,914,George Bernard Shaw,1144805667 +87122,923,Classic,1144957292 +87122,940,Classic,1144939222 +87122,940,Myth,1140706975 +87122,940,Swashbuckler,1144806075 +87122,951,Screwball Comedy,1145315331 +87122,965,Classic,1144957256 +87122,965,Spy,1144938722 +87122,1008,Biography,1140708205 +87122,1008,History,1140708205 +87122,1050,Shakespeare,1140810906 +87122,1082,Politics,1144806016 +87122,1084,Biography,1144938908 +87122,1088,Dance,1144688258 +87122,1095,Business,1141081703 +87122,1104,Tennessee Williams,1141081795 +87122,1136,Myth,1141081745 +87122,1150,History,1141081781 +87122,1188,Dance,1144688486 +87122,1204,Biography,1140707739 +87122,1204,History,1140707739 +87122,1209,Spaghetti Western,1140892582 +87122,1224,Shakespeare,1141081726 +87122,1242,History,1140709074 +87122,1242,Race,1141081711 +87122,1249,Spy,1145026606 +87122,1272,Biography,1141081770 +87122,1272,History,1141081770 +87122,1276,Prison,1144957464 +87122,1277,Period piece,1144957752 +87122,1285,Black Comedy,1145315257 +87122,1302,Baseball,1140811211 +87122,1378,History,1140709212 +87122,1408,Fennimore Cooper,1141081925 +87122,1566,Myth,1140707001 +87122,1639,Gay,1144806132 +87122,1669,Dance,1144688190 +87122,1673,History,1144938949 +87122,1673,Porno Industry,1144938949 +87122,1694,Religion,1141081809 +87122,1695,Art,1141081815 +87122,1695,Period period,1144957804 +87122,1721,History,1140709208 +87122,1835,Death,1144957308 +87122,1883,Politics,1144806003 +87122,1947,Dance,1144688403 +87122,2020,Choderlos de Laclos,1144957569 +87122,2112,Social Drama,1145315205 +87122,2116,Myth,1140708351 +87122,2174,Death,1144938822 +87122,2357,Religion,1144806120 +87122,2563,Biography,1144806265 +87122,2563,History,1144806265 +87122,2565,Dance,1144688409 +87122,2573,Dance,1144688183 +87122,2590,Road Picture,1145315293 +87122,2690,Oscar Wilde,1145315398 +87122,2690,Period Piece,1145315398 +87122,2728,Biography,1140709191 +87122,2826,Myth,1140708187 +87122,2859,Concert,1140810893 +87122,2861,Baseball,1140811234 +87122,2872,Myth,1140706993 +87122,2921,Sphaghetti Western,1145315318 +87122,2934,Dance,1144688438 +87122,2951,Spaghetti Western,1140892560 +87122,2962,Soccer,1145026623 +87122,2971,Dance,1144805398 +87122,3060,Music Business,1144939395 +87122,3062,History,1140709171 +87122,3079,Jane Austen,1140809617 +87122,3095,Social Drama,1145315212 +87122,3172,Homer,1140709885 +87122,3172,Myth,1140709885 +87122,3183,Religion,1140709575 +87122,3188,Baseball,1140811041 +87122,3188,Biography,1140811041 +87122,3338,Space,1145026655 +87122,3360,Basketball,1140892733 +87122,3361,Baseball,1140811227 +87122,3404,History,1140709199 +87122,3417,Swashbuckler,1144806248 +87122,3481,Nick Hornby,1145315303 +87122,3545,Dance,1144806009 +87122,3629,Classic,1145315166 +87122,3670,History,1140380210 +87122,3681,Spaghetti Western,1140892700 +87122,3730,Spy,1144957722 +87122,3742,Classic,1144939136 +87122,3742,Propaganda,1144805523 +87122,3811,History,1144805964 +87122,3915,Boxing,1145315144 +87122,3967,Dance,1144805923 +87122,3996,Myth,1144957506 +87122,4042,History,1140892621 +87122,4045,Alistair MacLean,1144805987 +87122,4246,Jane Austen,1140709818 +87122,4310,History,1140709489 +87122,4464,Anne Tyler,1144805344 +87122,4486,Addiction,1144806203 +87122,4539,Dance,1144688315 +87122,4688,History,1140706983 +87122,4721,History,1140709403 +87122,4826,History,1140708978 +87122,4962,History,1140892522 +87122,4993,Myth,1140708221 +87122,5115,Biography,1140708110 +87122,5115,History,1140708110 +87122,5152,History,1140709384 +87122,5174,Ireland,1145124677 +87122,5267,Baseball,1140811196 +87122,5358,History,1140708239 +87122,5377,Nick Hornby,1144805329 +87122,5619,History,1140810946 +87122,5652,Gay,1144806172 +87122,5699,Biography,1140892529 +87122,5899,History,1140709107 +87122,5937,Biography,1144957553 +87122,5937,French Revolution,1144957865 +87122,5937,History,1144957553 +87122,5952,Myth,1140708228 +87122,5985,Biography,1140708970 +87122,5985,History,1140708970 +87122,5985,Religion,1140708970 +87122,6186,History,1140709445 +87122,6218,Ethnic comedy,1144805776 +87122,6218,Immigrant,1144805547 +87122,6218,Soccer,1144805801 +87122,6238,Immigration Comedy,1145315230 +87122,6267,Dance,1144688195 +87122,6356,History,1140892396 +87122,6452,Tennessee Williams,1141763276 +87122,6452,William Faulkner,1141763276 +87122,6457,History,1140709265 +87122,6520,Myth,1140707726 +87122,6598,Surfing,1140811013 +87122,6787,History,1144805414 +87122,6787,Politics,1144805414 +87122,6791,Art,1144805466 +87122,6817,Biography,1140707128 +87122,6817,History,1140707072 +87122,6954,Death,1144805487 +87122,7139,Immigrants,1145315420 +87122,7151,Art,1145026708 +87122,7151,Period piece,1145026708 +87122,7153,Myth,1140708924 +87122,7156,History,1140811025 +87122,7240,Biography,1140709349 +87122,7240,History,1140709349 +87122,7248,Biography,1140708173 +87122,7248,History,1140708173 +87122,7320,Dance,1144688302 +87122,7379,History,1140708126 +87122,7386,Religion,1140708256 +87122,7458,Homer,1140709958 +87122,7458,Myth,1140706895 +87122,7579,Jane Austen,1140709696 +87122,7787,Biography,1140709101 +87122,7787,History,1140709101 +87122,7814,History,1140709459 +87122,7980,History,1140709123 +87122,8011,History,1140811002 +87122,8167,Classic,1144939316 +87122,8167,Swashbuckler,1144806047 +87122,8207,Frederick Forsyth,1144806293 +87122,8207,History,1144806293 +87122,8257,History,1140709315 +87122,8375,Politics,1145315369 +87122,8493,History,1140709254 +87122,8585,History,1140708153 +87122,8622,Politics,1145026521 +87122,8640,Myth,1140708141 +87122,8662,Biography,1140709340 +87122,8662,History,1140709340 +87122,8695,Screwball Comedy,1144938805 +87122,8795,Myth,1140707750 +87122,8937,History,1140709227 +87122,8977,Biography,1140708283 +87122,8977,History,1140708283 +87122,9002,Biography,1144805382 +87122,9002,History,1144805382 +87122,26294,Spaghetti Western,1140892669 +87122,27882,Surfing,1140810877 +87122,30749,Genocide,1145315358 +87122,31467,Biography,1140709238 +87122,33154,History,1140810988 +87122,33166,Ensemble cast,1144806239 +87122,33639,Dance,1140810879 +87122,33649,Gay,1140810713 +87122,37733,Violence,1146503370 +87122,37741,History,1139236410 +87122,39292,History,1140204435 +87122,40278,Biography,1140709135 +87122,40278,History,1140709135 +87122,40629,Jane Austen,1140709680 +87122,41721,Death,1145919139 +87122,42018,Theater,1146503392 +87122,42728,Myth,1140706867 +87122,42730,Basketball,1140892746 +87122,43744,Gay,1140810649 +87122,44613,Dance,1144688140 +87122,51834,Jane Austen,1187012735 +87122,62293,biography,1226843459 +87122,115715,Camille Stopps,1414858509 +87122,115772,Black Comedy,1414984643 +87122,115772,Offbeat,1414984672 +87122,115775,Pat Robertson,1415076326 +87127,104913,competition,1437171271 +87127,104913,Inspiring,1437171301 +87127,134853,animation,1437153357 +87127,134853,emotional,1437153357 +87127,134853,kids,1437153357 +87151,260,sci-fi,1249388418 +87151,260,space,1249388424 +87151,296,action,1249388706 +87151,296,atmospheric,1249388730 +87151,296,Black comedy,1249388704 +87151,296,Bruce Willis,1249388701 +87151,296,comedy,1249388724 +87151,296,cult film,1249388726 +87151,296,dark comedy,1249388708 +87151,296,multiple storylines,1249388711 +87151,296,nonlinear,1249388713 +87151,541,cyberpunk,1249388446 +87151,541,sci-fi,1249388452 +87151,1200,aliens,1249388518 +87151,1200,sci-fi,1249388513 +87151,1200,space,1249388516 +87151,2571,fantasy,1249388479 +87151,2571,post-apocalyptic,1249388483 +87151,2571,sci-fi,1249388487 +87151,2571,surreal,1249388492 +87151,2571,virtual reality,1249388496 +87151,4011,Brad Pitt,1249388566 +87151,4011,british,1249388620 +87151,4011,comedy,1249388564 +87151,4011,cynical,1249388627 +87151,4011,funny as hell,1249388653 +87151,4011,Great dialogue,1249388615 +87151,4011,Guy Ritchie,1249388562 +87151,4011,gypsy accent,1249388636 +87151,4011,Hilarious,1249388649 +87151,4011,Jason Statham,1249388645 +87151,4011,twist ending,1249388632 +87151,6016,based on a true story,1249389270 +87151,6016,multiple storylines,1249389267 +87151,48780,magic,1249388504 +87151,48780,nonlinear,1249388508 +87151,57669,comedy,1249388806 +87151,57669,dark comedy,1249388802 +87151,58559,action,1249389324 +87151,58559,dark,1249389320 +87151,58559,Oscar (Best Supporting Actor),1249389330 +87153,858,great acting,1430314473 +87153,858,melancholy,1430314414 +87153,3252,great acting,1430314623 +87153,3252,great music,1430314633 +87153,4896,childhood memory,1430314527 +87153,59784,China,1430314574 +87153,59784,funny,1430314568 +87153,115617,moving,1430314257 +87153,115617,robotics,1430314245 +87153,116724,Puppy Love,1430314931 +87153,116724,Senior High School,1430314982 +87154,6270,Akira Kurosawa,1198478268 +87154,6270,dreamlike,1198478298 +87154,27741,anti hero,1161746702 +87154,45175,foreign,1161746766 +87154,58998,Nudity (Topless - Brief),1211432826 +87164,45172,computers,1428267068 +87164,45172,hackers,1428267068 +87164,45172,illuminati,1428267068 +87164,89650,blood,1426184061 +87164,89650,middle ages,1426184061 +87164,89650,war,1426184061 +87164,101527,airplane crash,1427578786 +87164,101527,drama,1427578786 +87164,101527,world war ii,1427578786 +87164,113851,action,1426966707 +87164,113851,drugs,1426966707 +87164,113851,traffic,1426966707 +87190,1303,India,1398980645 +87190,3095,adapted from:book,1398980626 +87194,1179,Clever con-gaming,1186791383 +87208,96266,Juno Temple,1384260202 +87208,105254,Sebastián Silva,1384260406 +87208,109848,soundtrack,1396438359 +87225,47,twist ending,1281903883 +87225,50,twist ending,1241074771 +87225,318,thought-provoking,1281903842 +87225,1729,Quentin Tarantino,1241723454 +87225,2542,Jason Statham,1281903940 +87225,2571,artificial intelligence,1279662569 +87225,2959,dark comedy,1279662601 +87225,2959,psychology,1241074745 +87225,2997,dark comedy,1279662396 +87225,4011,dialogue,1281903756 +87225,4011,Jason Statham,1281903733 +87225,4226,twist ending,1241074709 +87225,4963,witty,1279662512 +87225,8917,satire,1305223073 +87225,32587,Quentin Tarantino,1241074822 +87225,36529,Nicolas Cage,1241074727 +87225,44191,Dialogue,1241074633 +87225,44191,dystopia,1279662440 +87225,46976,Will Ferrell,1320005758 +87225,47254,Jason Statham,1320005781 +87225,48780,twist ending,1279662458 +87225,56757,dark comedy,1279662698 +87225,56757,Tim Burton,1241074789 +87225,59784,martial arts,1281904036 +87225,62644,psychology,1281903655 +87225,62644,social experiment,1281903657 +87225,69122,Zach Galifianakis,1283070739 +87225,71535,dark comedy,1279662635 +87225,71535,post-apocalyptic,1279662615 +87225,74458,psychological,1283070963 +87225,74458,twist ending,1283070958 +87225,76251,comic book,1281904051 +87225,76251,superhero,1281904055 +87225,79132,alternate reality,1281904098 +87225,79132,multiple interpretations,1281904102 +87225,79132,visually appealing,1280862477 +87225,79695,Jason Statham,1305223110 +87225,86332,adapted from:comic,1322776141 +87225,86332,Marvel,1322776148 +87225,86332,mythology,1322776131 +87225,86332,superhero,1322776150 +87225,86835,based on a comic,1321132724 +87225,86835,dystopia,1321132713 +87225,88118,David Hyde Pierce,1320432546 +87225,88118,twists & turns,1320432565 +87225,88140,based on a comic,1321132792 +87225,88140,Marvel,1322776168 +87225,90405,dystopia,1327167717 +87226,1,animation,1185287328 +87226,1,pixar,1185287332 +87226,47,disturbing,1206571252 +87226,367,comics based,1206571481 +87226,589,well-done time travel,1206572019 +87226,741,overrated,1206570239 +87226,1215,dumb fun,1206572120 +87226,1240,well-done time travel,1206572011 +87226,1258,overrated,1206570783 +87226,1274,overrated,1206570542 +87226,1721,overrated,1206572392 +87226,2710,overrated,1206571667 +87226,3977,dumb fun,1206571611 +87226,4262,overrated,1206570882 +87226,4306,diluted by its sequels,1206571516 +87226,4571,dumb fun,1206572188 +87226,4571,well-done time travel,1206572188 +87226,4896,underwhelming,1206571465 +87226,6537,dumb fun,1206571953 +87226,6537,well-done time travel,1206572006 +87226,7147,predictable,1206570483 +87226,7147,pretty,1206570483 +87226,8426,anthology,1206570313 +87226,8780,comics based,1206570451 +87226,47610,predictable,1206570391 +87226,49272,james bond,1206570209 +87226,50872,animation,1185287291 +87226,50872,pixar,1185287299 +87227,115170,advocate,1444004276 +87227,115170,parent issues,1444004295 +87227,119141,Dictatorship,1444004253 +87227,119141,North Korea,1444004243 +87236,260,classic sci-fi,1441679768 +87243,260,classic sci-fi,1439800948 +87243,260,Outer Space,1439800941 +87243,6942,multiple storylines,1439801827 +87243,8914,complicated plot,1439801926 +87243,8914,indie,1439801931 +87243,8914,mindfuck,1439801921 +87243,8914,thought-provoking,1439801939 +87243,8914,time travel,1439801923 +87243,72226,quirky,1439801156 +87243,72226,stop motion,1439801148 +87243,72226,visually appealing,1439801143 +87243,93721,documentary,1439802142 +87243,96821,bittersweet,1439801736 +87243,96821,character development,1439801731 +87243,96821,coming of age,1439801745 +87243,96821,Emma Watson,1439801752 +87243,96821,touching,1439801754 +87243,114678,Feel-Good,1439801208 +87243,114678,Quirky,1439801211 +87243,129250,Parody,1439802245 +87250,108514,deepika,1446572325 +87250,108514,desi,1446572345 +87250,108514,ranveer,1446572321 +87250,132358,desi,1446572355 +87250,133389,desi,1446572364 +87262,47,Brad Pitt,1283594244 +87262,47,crime,1285832810 +87262,47,dark,1285832796 +87262,47,David Fincher,1283594308 +87262,47,disturbing,1283594290 +87262,47,investigation,1285832812 +87262,47,Kevin Spacey,1283594248 +87262,47,Morgan Freeman,1283594246 +87262,47,police,1283594272 +87262,47,psychology,1283594277 +87262,47,religion,1283594270 +87262,47,twist ending,1283594258 +87262,150,adapted from:true story,1362260834 +87262,150,astronauts,1362260808 +87262,150,drama,1362260811 +87262,150,Tom Hanks,1362260813 +87262,215,girlie movie,1300261679 +87262,215,VACATION ROMANCES,1300261675 +87262,223,black and white,1284304761 +87262,223,hilarious,1284304796 +87262,223,jay and silent bob,1284320106 +87262,223,Kevin Smith,1284304769 +87262,223,low budget,1284304786 +87262,223,quirky,1284304774 +87262,223,slackers,1284304771 +87262,223,view askew,1284320114 +87262,260,adventure,1357414781 +87262,260,classic,1357414769 +87262,260,fantasy,1357414765 +87262,260,sci-fi,1357414759 +87262,260,space,1357414762 +87262,296,Bruce Willis,1283594327 +87262,296,Christopher Walken,1283594380 +87262,296,classic,1283594395 +87262,296,cult film,1283594397 +87262,296,dark comedy,1283594389 +87262,296,Harvey Keitel,1283594455 +87262,296,John Travolta,1283594380 +87262,296,multiple storylines,1283594403 +87262,296,notable soundtrack,1283594459 +87262,296,Quentin Tarantino,1283594322 +87262,296,quirky,1283594385 +87262,296,Samuel L. Jackson,1283594324 +87262,296,Tim Roth,1283594455 +87262,296,Ving Rhames,1283594380 +87262,318,Morgan Freeman,1283594147 +87262,318,narrated,1283594154 +87262,318,prison,1283594152 +87262,318,redemption,1283594211 +87262,318,Stephen King,1283594169 +87262,318,twist ending,1283594167 +87262,356,classic,1282840260 +87262,356,historical,1282840246 +87262,356,Tom Hanks,1282840230 +87262,356,vietnam war,1282840253 +87262,495,erotic,1283538915 +87262,495,Japanese,1283538935 +87262,495,non-simulated sex,1283538913 +87262,495,Nudity (Full Frontal - Notable),1283538877 +87262,495,Nudity (Full Frontal),1283538879 +87262,495,passionate,1283538881 +87262,495,poignant,1283538904 +87262,500,Robin Williams,1282840147 +87262,500,Sally Field,1282840185 +87262,509,adultery,1372595985 +87262,509,Holly Hunter,1372595975 +87262,509,sexuality,1372595954 +87262,628,courtroom drama,1286253869 +87262,628,Edward Norton,1286253860 +87262,628,MURDER INVESTIGATIONS,1286253926 +87262,628,psychology,1286253984 +87262,628,Richard Gere,1286253862 +87262,628,suspense,1286253901 +87262,628,twist ending,1286253865 +87262,714,black and white,1282766742 +87262,714,great soundtrack,1282766746 +87262,714,quirky,1282766751 +87262,714,road trip,1282766754 +87262,714,visually appealing,1282766756 +87262,902,adapted from:book,1284067556 +87262,902,Audrey Hepburn,1284067546 +87262,902,bad adaptation,1284067606 +87262,902,hollywood ending,1284067592 +87262,902,New York,1284067634 +87262,902,stereotypes,1284067543 +87262,902,Truman Capote,1284067549 +87262,902,unfunny comedy,1284067658 +87262,1020,feel-good,1284326341 +87262,1020,funny,1284326316 +87262,1020,inspirational,1284326251 +87262,1020,Olympics,1284326257 +87262,1020,sport:bobsledding,1284326236 +87262,1020,underdogs,1284326260 +87262,1020,uplifting,1284326290 +87262,1060,90s,1335638404 +87262,1060,dated,1335638422 +87262,1079,black comedy,1282927011 +87262,1079,British,1282927016 +87262,1079,dark comedy,1282927021 +87262,1079,Humorous,1282927027 +87262,1079,Jamie Lee Curtis,1282926995 +87262,1079,John Cleese,1282926997 +87262,1079,Kevin Kline,1282926998 +87262,1079,quirky,1282927002 +87262,1084,biopic,1319577992 +87262,1084,Faye Dunaway,1319577979 +87262,1084,gangsters,1319577961 +87262,1084,Gene Hackman,1319577964 +87262,1084,outlaws,1319578020 +87262,1084,romance,1319578010 +87262,1084,violent,1319578012 +87262,1084,Warren Beatty,1319577979 +87262,1206,dystopia,1283594727 +87262,1206,Malcolm McDowell,1283594698 +87262,1206,Nudity (Full Frontal),1283594742 +87262,1206,psychology,1283594702 +87262,1206,quirky,1283594709 +87262,1206,social commentary,1283594723 +87262,1206,Stanley Kubrick,1283594688 +87262,1206,surreal,1283594713 +87262,1206,violence,1283594704 +87262,1214,aliens,1285738083 +87262,1214,classic,1285738124 +87262,1214,haunted house,1285738233 +87262,1214,horror,1285738112 +87262,1214,Ridley Scott,1285738092 +87262,1214,sci-fi,1285738065 +87262,1214,Sigourney Weaver,1285738056 +87262,1214,space ship,1285738202 +87262,1214,Special Effects,1285738175 +87262,1214,thriller,1285738087 +87262,1222,boot camp,1282766376 +87262,1222,political,1282766368 +87262,1222,Stanley Kubrick,1282766355 +87262,1222,Vietnam,1282766370 +87262,1232,dystopia,1282848449 +87262,1232,masterpiece,1282848454 +87262,1232,reflective,1282848498 +87262,1641,British,1283632219 +87262,1641,funny,1283632189 +87262,1641,heartwarming,1283632157 +87262,1641,Mark Addy,1283632111 +87262,1641,Robert Carlyle,1283632106 +87262,1641,strippers,1283632204 +87262,1641,striptease,1283632206 +87262,1641,working class,1283632209 +87262,1653,dystopia,1283010301 +87262,1653,Ethan Hawke,1283010305 +87262,1653,Jude Law,1283010303 +87262,1653,sci-fi,1283010309 +87262,1653,Uma Thurman,1283010335 +87262,1784,classic,1284587831 +87262,1784,Comedy,1284587805 +87262,1784,Cuba Gooding Jr.,1284588012 +87262,1784,feel-good,1284588057 +87262,1784,funny,1284587993 +87262,1784,Greg Kinnear,1284587801 +87262,1784,Helen Hunt,1284587798 +87262,1784,Jack Nicholson,1284587797 +87262,1784,obsessive compulsive disorder,1284587808 +87262,1784,Romance,1284587966 +87262,1968,bad acting,1288731409 +87262,1968,broken rhythm,1288731552 +87262,1968,cliche,1288736767 +87262,1968,clumsy,1288736845 +87262,1968,coming of age,1288731576 +87262,1968,dated,1288731301 +87262,1968,ensemble cast,1288731595 +87262,1968,generation gap,1288731637 +87262,1968,high school,1288731581 +87262,1968,lame,1288731391 +87262,1968,teen,1288731583 +87262,2159,disturbing,1284920220 +87262,2159,John McNaughton,1284920225 +87262,2159,Michael Rooker,1284920122 +87262,2159,murder,1284920137 +87262,2159,psychology,1284920154 +87262,2159,realistic violence,1284920119 +87262,2159,serial killer,1284920131 +87262,2159,sociopath,1284920185 +87262,2237,adapted from:true story,1289031348 +87262,2237,Billy Crudup,1289031313 +87262,2237,Donald Sutherland,1289031313 +87262,2237,long,1289031390 +87262,2237,Olympics,1289031428 +87262,2237,seamless impersonation of a historical figure,1289031895 +87262,2237,sports,1289031366 +87262,2237,unfulfilled destiny,1289031423 +87262,2302,comedy,1282926936 +87262,2302,courtroom,1282926959 +87262,2302,enjoyable,1282926969 +87262,2302,Joe Pesci,1282926915 +87262,2302,lawyers,1282926950 +87262,2302,Marisa Tomei,1282926938 +87262,2529,adapted from:book,1362842719 +87262,2529,dystopia,1362842722 +87262,2529,post-apocalyptic,1362842736 +87262,2628,Ewan McGregor,1357075700 +87262,2628,Natalie Portman,1357075679 +87262,2628,Samuel L. Jackson,1357075681 +87262,2628,sci-fi,1357075686 +87262,2628,Star Wars,1357075688 +87262,2690,adapted from:play,1283814312 +87262,2690,Cate Blanchett,1283814326 +87262,2690,English,1283814347 +87262,2690,Jeremy Northam,1283814370 +87262,2690,Julianne Moore,1283814332 +87262,2690,Minnie Driver,1283814362 +87262,2690,Period Piece,1283814409 +87262,2690,playwright:Oscar Wilde,1283814425 +87262,2690,Rupert Everett,1283814356 +87262,2858,Annette Bening,1284282544 +87262,2858,Chris Cooper,1284282581 +87262,2858,coming of age,1284282592 +87262,2858,dark comedy,1284282500 +87262,2858,dreams,1284282522 +87262,2858,Kevin Spacey,1284282495 +87262,2858,midlife crisis,1284282504 +87262,2858,narrated,1284282622 +87262,2858,powerful ending,1284282636 +87262,2858,satirical,1284282605 +87262,2858,sexuality,1284282610 +87262,2858,social commentary,1284282511 +87262,2858,Thora Birch,1284282544 +87262,2858,Wes Bentley,1284282581 +87262,2908,brutal,1283194268 +87262,2908,disturbing,1283194186 +87262,2908,Drama,1283194176 +87262,2908,hilary swank,1283194162 +87262,2908,lgbt,1283194204 +87262,2908,sexual identity,1283194234 +87262,2908,transgender,1283194179 +87262,2908,true story,1283194181 +87262,2949,007,1335712162 +87262,2949,adapted from:book,1335712197 +87262,2949,dated,1335712128 +87262,2949,mad scientist,1335712118 +87262,2949,murder,1335712121 +87262,2949,Sean Connery,1335712124 +87262,2959,adapted from:book,1283594616 +87262,2959,Brad Pitt,1283594599 +87262,2959,dark comedy,1283594658 +87262,2959,disturbing,1283594664 +87262,2959,Edward Norton,1283594597 +87262,2959,Helena Bonham Carter,1283594610 +87262,2959,mental illness,1283594644 +87262,2959,psychology,1283594651 +87262,2959,quirky,1283594626 +87262,2959,social commentary,1283594631 +87262,2959,surreal,1283594634 +87262,2959,violence,1283594672 +87262,2971,art,1287617789 +87262,2971,biographical,1287617804 +87262,2971,Bob Fosse,1287617771 +87262,2971,Dance,1287617818 +87262,2971,jazz,1287617782 +87262,2971,Jessica Lange,1287617813 +87262,2971,mortality,1287617827 +87262,2971,musical,1287617870 +87262,2971,Roy Scheider,1287617769 +87262,3052,Alan Rickman,1290371741 +87262,3052,angels,1290371831 +87262,3052,Ben Affleck,1290371752 +87262,3052,Chris Rock,1290371791 +87262,3052,Comedy,1290371855 +87262,3052,Janeane Garofalo,1290371758 +87262,3052,jay and silent bob,1290371729 +87262,3052,Kevin Smith,1290371787 +87262,3052,Linda Fiorentino,1290371767 +87262,3052,Matt Damon,1290371748 +87262,3052,religion,1290371781 +87262,3052,religious,1290371837 +87262,3052,Salma Hayek,1290371745 +87262,3127,Australia,1284415664 +87262,3127,can't define genre,1284415923 +87262,3127,erotic,1284416051 +87262,3127,Harvey Keitel,1284415645 +87262,3127,healing,1284415952 +87262,3127,Jane Campion,1284416009 +87262,3127,Kate Winslet,1284415647 +87262,3127,Nudity (Full Frontal - Notable),1284415856 +87262,3127,psychology,1284415654 +87262,3127,quirky,1284415893 +87262,3127,some awkward bits,1284416348 +87262,3127,soul searching,1284416303 +87262,3127,unexpected love,1284416068 +87262,3469,adapted from:true story,1368361738 +87262,3469,courtroom drama,1368361703 +87262,3469,religion,1368361715 +87262,3469,Spencer Tracy,1368361763 +87262,3545,adapted from:play,1284587147 +87262,3545,Bob Fosse,1284587155 +87262,3545,classic,1284587380 +87262,3545,Joel Grey,1284587172 +87262,3545,Liza Minnelli,1284587061 +87262,3545,musical,1284586968 +87262,3545,Nazi Germany,1284587186 +87262,3545,World War II,1284587340 +87262,3952,Gary Oldman,1282776182 +87262,3952,Jeff Bridges,1282776188 +87262,3952,Joan Allen,1282776223 +87262,3952,political drama,1282776204 +87262,3996,China,1289667218 +87262,3996,ridiculous,1289667179 +87262,3996,stylized,1289667205 +87262,3996,westernization,1289667227 +87262,4020,Hilary Swank,1283193923 +87262,4027,bluegrass,1286134544 +87262,4027,Coen Brothers,1286134114 +87262,4027,comedy,1286134537 +87262,4027,country,1286134540 +87262,4027,George Clooney,1286134099 +87262,4027,John Goodman,1286134117 +87262,4027,John Turturro,1286134151 +87262,4027,Ku Klux Klan,1286134158 +87262,4027,notable soundtrack,1286134160 +87262,4027,prison escape,1286134105 +87262,4027,Quirky,1286134102 +87262,4027,Tim Blake Nelson,1286134151 +87262,4226,amnesia,1287920841 +87262,4226,Christopher Nolan,1287920832 +87262,4226,Guy Pearce,1287920890 +87262,4226,investigation,1287920859 +87262,4226,memory,1287920843 +87262,4226,nonlinear,1287920854 +87262,4226,psychological,1287920847 +87262,4226,twist ending,1287920850 +87262,4993,adapted from:book,1332696046 +87262,4993,adventure,1332696050 +87262,4993,cate blanchett,1332696221 +87262,4993,cgi,1332696151 +87262,4993,ensemble cast,1332696083 +87262,4993,epic,1332696462 +87262,4993,fantasy,1332696054 +87262,4993,Liv Tyler,1332696179 +87262,4993,magic,1332696077 +87262,4993,mythology,1332696187 +87262,4993,Orlando Bloom,1332696168 +87262,4993,scenic,1332696072 +87262,4993,shallow,1332696112 +87262,4993,slow,1332696099 +87262,4993,Tolkien,1332696260 +87262,4993,trilogy,1332696066 +87262,4993,Viggo Mortensen,1332696238 +87262,5617,BDSM,1288043811 +87262,5617,dark comedy,1288043638 +87262,5617,erotic,1288043625 +87262,5617,fighting inner demons,1288043602 +87262,5617,forbidden love,1288043690 +87262,5617,healing,1288043612 +87262,5617,James Spader,1288043578 +87262,5617,love,1288043588 +87262,5617,Maggie Gyllenhaal,1288043576 +87262,5617,Nudity (Full Frontal - Notable),1288043573 +87262,5617,quirky,1288043789 +87262,5617,romance,1288043656 +87262,5617,sexuality,1288043583 +87262,5618,adventure,1325028960 +87262,5618,animation,1325028984 +87262,5618,childhood,1325028975 +87262,5618,dragons,1325028972 +87262,5618,fantasy,1325028941 +87262,5618,Hayao Miyazaki,1325028934 +87262,5618,Japan,1325028950 +87262,5663,ghosts,1287853103 +87262,5663,lame,1287853190 +87262,5689,bad acting,1285364220 +87262,5689,bad script,1285364284 +87262,5689,Bruce Willis,1285364292 +87262,5689,Dustin Hoffman,1285364212 +87262,5689,Loren Dean,1285364464 +87262,5689,Nicole Kidman,1285364206 +87262,5689,Nudity (Full Frontal),1285364209 +87262,5807,Adrian Grenier,1286035460 +87262,5807,alienation,1286035557 +87262,5807,big city,1286035555 +87262,5807,cliche,1286035473 +87262,5807,flat,1286035484 +87262,5807,independent film,1286035596 +87262,5807,intimacy,1286035505 +87262,5807,Jill Hennessy,1286035573 +87262,5807,Rosario Dawson,1286034962 +87262,5807,Steve Buscemi,1286034971 +87262,5878,Almodovar,1289688286 +87262,5878,compassionate,1289687913 +87262,5878,Darío Grandinetti,1289687758 +87262,5878,drama,1289687869 +87262,5878,friendship,1289687876 +87262,5878,healing by love,1289687702 +87262,5878,Javier Cámara,1289687742 +87262,5878,Leonor Watling,1289687813 +87262,5878,love,1289687683 +87262,5878,Nudity (Topless - Notable),1289687827 +87262,5878,Pedro Almodóvar,1289687650 +87262,5878,Rosario Flores,1289687798 +87262,5878,sexuality,1289687934 +87262,5878,Tragedy,1289687953 +87262,5952,adapted from:book,1332696302 +87262,5952,cate blanchett,1332696368 +87262,5952,epic,1332696421 +87262,5952,fantasy,1332696303 +87262,5952,Liv Tyler,1332696326 +87262,5952,magic,1332696409 +87262,5952,mythology,1332696339 +87262,5952,Orlando Bloom,1332696345 +87262,5952,Peter Jackson,1332696319 +87262,5952,scenic,1332696404 +87262,5952,shallow,1332696383 +87262,5952,slow,1332696376 +87262,5952,trilogy,1332696389 +87262,5952,Viggo Mortensen,1332696317 +87262,5991,Catherine Zeta-Jones,1282848834 +87262,5991,classic,1282848869 +87262,5991,jazz,1282848877 +87262,5991,John C. Reilly,1282848925 +87262,5991,musical,1282848878 +87262,5991,Queen Latifah,1282848828 +87262,5991,Renée Zellweger,1282848856 +87262,5991,Richard Gere,1282848838 +87262,5992,adapted from:book,1287617705 +87262,5992,intellectual,1287617685 +87262,5992,Julianne Moore,1287617624 +87262,5992,mental illness,1287617714 +87262,5992,Meryl Streep,1287617605 +87262,5992,multiple connecting storylines,1287617654 +87262,5992,Nicole Kidman,1287617608 +87262,5992,women,1287617647 +87262,6188,Andy Dick,1289345909 +87262,6188,Ellen Pompeo,1289345892 +87262,6188,Jeremy Piven,1289345942 +87262,6188,Juliette Lewis,1289345861 +87262,6188,Luke Wilson,1289345892 +87262,6188,not funny,1289345840 +87262,6188,stupid,1289345961 +87262,6188,Vince Vaughn,1289345864 +87262,6188,Will Ferrell,1289345862 +87262,6323,Amanda Peet,1283193781 +87262,6323,John Cusack,1283193787 +87262,6323,psychology,1283193759 +87262,6323,suspense,1283193804 +87262,6323,thriller,1283193792 +87262,6323,twist ending,1283193769 +87262,6344,bad acting,1286106396 +87262,6344,boring,1286106815 +87262,6344,coming out of the closet,1286106854 +87262,6344,incoherent,1286106823 +87262,6344,lame,1286106403 +87262,6344,lesbian,1286106830 +87262,6344,male nudity,1286106839 +87262,6344,mother-son relationship,1286106371 +87262,6344,Nudity (Full Frontal),1286106380 +87262,6344,procrastination,1286106955 +87262,6344,Reykjavík,1286106904 +87262,6344,Reykjavik,1286106937 +87262,6502,British,1283629856 +87262,6502,post-apocalyptic,1283629700 +87262,6502,sci-fi,1283629721 +87262,6502,survival,1283629713 +87262,6502,thriller,1283629744 +87262,6874,action,1282849009 +87262,6874,funny,1282849010 +87262,6874,martial arts,1282849018 +87262,6874,nonlinear,1282848992 +87262,6874,Quentin Tarantino,1282848979 +87262,6874,quirky,1282848985 +87262,7123,surreal,1283090970 +87262,7160,adapted from:true story,1287616927 +87262,7160,amazing acting,1287616890 +87262,7160,Charlize Theron,1287616881 +87262,7160,Christina Ricci,1287616883 +87262,7160,descent into crime,1287617079 +87262,7160,forbidden love,1287616997 +87262,7160,murder,1287616971 +87262,7160,prostitution,1287617015 +87262,7160,seamless impersonation of a historical figure,1287617048 +87262,7160,serial killer,1287616975 +87262,8638,intelligent,1300313553 +87262,8638,minimalist,1300313531 +87262,8638,romance,1300313534 +87262,8638,sequel,1300313536 +87262,8937,adapted from:book,1303160792 +87262,8937,mediocre,1303159837 +87262,8937,sport:American football,1303159813 +87262,8937,sports,1303159818 +87262,8950,Christian Bale,1283594522 +87262,8950,guilt,1283594545 +87262,8950,memory,1283594530 +87262,8950,powerful ending,1283594528 +87262,8950,psychology,1283594525 +87262,27664,Chlöe Sevigny,1288542148 +87262,27664,tedious,1288542168 +87262,27664,unsimulated sex scenes,1288542143 +87262,27664,Vincent Gallo,1288542155 +87262,30707,Clint Eastwood,1283193944 +87262,30707,drama,1283194106 +87262,30707,Hilary Swank,1283193959 +87262,30707,master disciple relationship,1283194079 +87262,30707,Morgan Freeman,1283193947 +87262,30707,sport:boxing,1283193966 +87262,30707,underrated,1283594505 +87262,31437,abandonment,1370712161 +87262,31437,adapted from:true story,1370712067 +87262,31437,Ayu Kitaura,1370712140 +87262,31437,child actor,1370712194 +87262,31437,deliberate,1370712075 +87262,31437,Japan,1370712221 +87262,31437,slow,1370712215 +87262,31437,Yuya Yagira,1370712120 +87262,33794,action,1282839390 +87262,33794,adapted from:comic,1282839387 +87262,33794,based on a comic,1282839429 +87262,33794,Christian Bale,1282839349 +87262,33794,Gary Oldman,1282839356 +87262,33794,Katie Holmes,1282839459 +87262,33794,Morgan Freeman,1282839344 +87262,33794,superhero,1282839397 +87262,34048,action,1282926635 +87262,34048,adapted from:book,1282926608 +87262,34048,bad acting,1282926671 +87262,34048,cliche,1282926590 +87262,34048,Dakota Fanning,1282926689 +87262,34048,H.G. Wells,1282926694 +87262,34048,hollywood ending,1282926590 +87262,34048,overrated,1282926504 +87262,34048,remake,1282926704 +87262,34048,sci-fi,1282926522 +87262,34048,Steven Spielberg,1282926625 +87262,34048,Tim Robbins,1282926529 +87262,34048,Tom Cruise,1282926683 +87262,34271,Anthony Anderson,1288643722 +87262,34271,black,1288643700 +87262,34271,crank,1288646785 +87262,34271,DJ Qualls,1288643773 +87262,34271,Elise Neal,1288643761 +87262,34271,hip hop,1288643702 +87262,34271,Memphis,1288646790 +87262,34271,midlife crisis,1288644085 +87262,34271,music,1288644076 +87262,34271,pursuing a dream,1288644777 +87262,34271,Taraji P. Henson,1288643735 +87262,34271,Taryn Manning,1288643749 +87262,34271,Terrence Howard,1288643707 +87262,34271,urban,1288646808 +87262,34542,Alaska,1325428600 +87262,34542,bears,1325428570 +87262,34542,biopic,1325428591 +87262,34542,boundaries,1325428687 +87262,34542,death,1325428526 +87262,34542,documentary,1325428620 +87262,34542,eccentricity,1325428564 +87262,34542,finding refuge in nature,1325428558 +87262,34542,Nature,1325428702 +87262,34542,Werner Herzog,1325428507 +87262,34542,wilderness,1325428517 +87262,37733,bad acting,1288021127 +87262,37733,bad script,1288021926 +87262,37733,Ed Harris,1288043467 +87262,37733,graphic violence,1288043490 +87262,37733,Mafia,1288043463 +87262,37733,Violence,1288043477 +87262,37741,biographical,1283985514 +87262,37741,death penalty,1285447243 +87262,37741,homosexuality,1285447256 +87262,37741,Philip Seymour Hoffman,1283985467 +87262,37741,seamless impersonation of a historical figure,1283985470 +87262,37741,Truman Capote,1283985474 +87262,39183,adapted from:short story,1287475081 +87262,39183,controversial,1287475031 +87262,39183,emotional,1287475029 +87262,39183,forbidden love,1287475146 +87262,39183,Heath Ledger,1287474975 +87262,39183,homosexuality,1287475011 +87262,39183,Jake Gyllenhaal,1287474988 +87262,39183,love,1287475128 +87262,39183,powerful,1287475101 +87262,39183,sexuality,1287475009 +87262,39183,Tragedy,1287475013 +87262,39183,western,1287475022 +87262,40583,adapted from:book,1341688539 +87262,40583,Christopher Plummer,1341688611 +87262,40583,CIA,1341688526 +87262,40583,complex,1341688528 +87262,40583,corruption,1341688547 +87262,40583,espionage,1341688524 +87262,40583,George Clooney,1341688551 +87262,40583,government,1341688558 +87262,40583,Matt Damon,1341688549 +87262,40583,middle east,1341688582 +87262,40583,multiple storylines,1341688554 +87262,40583,political drama,1341688505 +87262,40583,tense,1341688573 +87262,40583,thought-provoking,1341688565 +87262,40583,tragic,1341688569 +87262,43677,adapted from:true story,1371108275 +87262,43677,aerial dogfights,1371108286 +87262,43677,aviation,1371108291 +87262,43677,cliche,1371108314 +87262,43677,poor acting,1371108340 +87262,43677,too much uplifting music,1371108314 +87262,43677,weak,1371108340 +87262,43677,World War II,1371108294 +87262,44555,beyond the Iron Courtain,1282766097 +87262,44555,insightful,1282766033 +87262,44761,classic noir in high school enviroment,1325338490 +87262,44761,clever,1325338410 +87262,44761,detective movie,1325338412 +87262,44761,dialogue,1325338414 +87262,44761,drug rings,1325338499 +87262,44761,film noir,1325338460 +87262,44761,high school,1325338430 +87262,44761,Joseph Gordon-Levitt,1325338417 +87262,44761,murder,1325338565 +87262,44761,R:violence,1325338535 +87262,45728,bad acting,1284319883 +87262,45728,disappointing sequel,1284320062 +87262,45728,jay and silent bob,1284319890 +87262,45728,Rosario Dawson,1284319877 +87262,45728,slackers,1284319906 +87262,46156,dark comedy,1286657426 +87262,46156,José Garcia,1286657391 +87262,46156,Karin Viard,1286657414 +87262,46156,satire,1286657640 +87262,46322,20th century,1287358570 +87262,46322,bad script,1287358518 +87262,46322,Betty Sun,1287358601 +87262,46322,historical setting,1287358484 +87262,46322,Jet Li,1287358239 +87262,46322,Martial Arts,1287358242 +87262,46322,maturity,1287358445 +87262,46322,pretentious,1287358361 +87262,46322,redemption,1287358462 +87262,46322,too long,1287358221 +87262,46322,westernization,1287358235 +87262,46322,wushu,1287358301 +87262,47629,based on a true story,1283985085 +87262,47629,British royal family,1283985132 +87262,47629,Helen Mirren,1283985021 +87262,47629,Michael Sheen,1283985194 +87262,47629,royalty,1283985034 +87262,47629,seamless impersonation of a historical figure,1283985066 +87262,47644,based on true story,1284152681 +87262,47644,Elizabeth Banks,1284152641 +87262,47644,sport:American football,1284152625 +87262,47644,underdog,1284152599 +87262,47644,vince papale,1284152603 +87262,48304,adventure,1325288935 +87262,48304,chase,1325288948 +87262,48304,Dalia Hernández,1325289038 +87262,48304,decline of a nation,1325289141 +87262,48304,disturbing,1325288926 +87262,48304,Gerardo Taracena,1325289121 +87262,48304,gore,1325288923 +87262,48304,gruesome,1325288921 +87262,48304,Mel Gibson,1325288932 +87262,48304,Morris Birdyellowhead,1325289062 +87262,48304,Raoul Trujillo,1325289099 +87262,48304,realistic,1325289168 +87262,48304,revenge,1325289182 +87262,48304,Rudy Youngblood,1325288998 +87262,48304,violence,1325288939 +87262,51091,Blues,1284138625 +87262,51091,Christina Ricci,1284138104 +87262,51091,great soundtrack,1284138714 +87262,51091,healing,1284138632 +87262,51091,Nudity (Topless - Notable),1287618217 +87262,51091,redemption,1284138679 +87262,51091,Samuel L. Jackson,1284138101 +87262,51091,sensual,1284138655 +87262,51091,Southern theme,1284138648 +87262,51540,adapted from:true story,1288563852 +87262,51540,based on a true story,1288563771 +87262,51540,Chloë Sevigny,1288563817 +87262,51540,David Fincher,1288563767 +87262,51540,detective,1288563794 +87262,51540,great character development,1288563919 +87262,51540,investigative journalism,1288563985 +87262,51540,Jake Gyllenhaal,1288563777 +87262,51540,John Carroll Lynch,1288564048 +87262,51540,long,1288563947 +87262,51540,Mark Ruffalo,1288563798 +87262,51540,mind games,1288564135 +87262,51540,obsession,1288563792 +87262,51540,Robert Downey Jr.,1288563774 +87262,51540,serial killer,1288563831 +87262,51884,coming of age,1285533344 +87262,51884,DISCOVERING ONE'S HERITAGE,1285537360 +87262,51884,good start/poor finish,1285537321 +87262,51884,immigrants,1285533443 +87262,51884,interracial romance,1285533446 +87262,51884,Irrfan Khan,1285533387 +87262,51884,Kal Penn,1285533399 +87262,51884,slow,1285533348 +87262,51884,Tabu,1285533365 +87262,51884,Zuleikha Robinson,1285533407 +87262,51925,adultery,1326324246 +87262,51925,Julian McMahon,1326324250 +87262,51925,Nonlinear,1326324195 +87262,51925,plot holes,1326324200 +87262,51925,religious bigotry,1326324224 +87262,51925,Sandra Bullock,1326324197 +87262,51925,slow moving,1326324230 +87262,53000,action,1283683243 +87262,53000,disappointing,1283683121 +87262,53000,mindless,1283683237 +87262,53000,not as good as the first,1283683126 +87262,53000,original good;sequel sucked,1283683128 +87262,53000,post-apocalyptic,1283683268 +87262,53000,Weak sequel,1283683176 +87262,54281,Anton Yelchin,1284281309 +87262,54281,coming of age,1284281328 +87262,54281,drugs,1284281342 +87262,54281,high school,1284281361 +87262,54281,Hope Davis,1284281371 +87262,54281,Kat Dennings,1284281306 +87262,54612,Alan Alda,1284497526 +87262,54612,bland,1284497651 +87262,54612,ethics,1284497556 +87262,54612,father-son relationship,1284497573 +87262,54612,Josh Hartnett,1284497389 +87262,54612,journalism,1284497553 +87262,54612,predictable,1284497647 +87262,54612,Rachel Nichols,1284497531 +87262,54612,Samuel L. Jackson,1284497392 +87262,54612,sport:boxing,1284497580 +87262,54881,competition,1288537538 +87262,54881,documentary,1288537523 +87262,54881,donkey kong,1288537535 +87262,54881,geek,1288537586 +87262,54881,quirky subculture,1288537620 +87262,54881,rivalry,1288537590 +87262,54881,underdog,1288537552 +87262,54881,video games,1288537556 +87262,55069,abortion,1287945119 +87262,55069,Anamaria Marinca,1287945096 +87262,55069,beyond the iron courtain,1287944729 +87262,55069,Ceausescu regime,1287945183 +87262,55069,Cristian Mungiu,1287944785 +87262,55069,dictatorship,1287944752 +87262,55069,friendship,1287944768 +87262,55069,long takes,1287945132 +87262,55069,police state,1287945147 +87262,55069,Romania,1287944738 +87262,55118,Armin Mueller-Stahl,1284928864 +87262,55118,cliche,1284928836 +87262,55118,closeted homosexual,1284929046 +87262,55118,father-son relationship,1284928767 +87262,55118,male nudity,1284928788 +87262,55118,Naomi Watts,1284928947 +87262,55118,organized crime,1284928813 +87262,55118,predictable,1284928836 +87262,55118,rape,1284929099 +87262,55118,Russian mafia,1284928806 +87262,55118,unconvincing,1284928929 +87262,55118,undercover,1284928896 +87262,55118,Viggo Mortensen,1284928779 +87262,55118,violence,1284928972 +87262,55118,weak special effects,1284929001 +87262,55269,Adrien Brody,1285537854 +87262,55269,brother-brother relationship,1285537856 +87262,55269,India,1285537858 +87262,55269,road trip,1285537872 +87262,55269,spiritual journey,1285537880 +87262,55451,Emily Blunt,1284847544 +87262,55451,Hugh Dancy,1284847553 +87262,55451,Jimmy Smits,1284847725 +87262,55451,Maria Bello,1284847550 +87262,55451,romance,1284847621 +87262,56587,breaking social boundaries,1285447046 +87262,56587,death,1285446964 +87262,56587,friendship,1285446987 +87262,56587,Jack Nicholson,1285446924 +87262,56587,legacy,1285447061 +87262,56587,life philosophy,1285446941 +87262,56587,meaning of life,1285446943 +87262,56587,Morgan Freeman,1285446928 +87262,56587,terminal illness,1285446984 +87262,56782,adapted from:book,1325827801 +87262,56782,could have been great,1325828142 +87262,56782,Daniel Day-Lewis,1325827756 +87262,56782,disjointed,1325827842 +87262,56782,father-son relationship,1325827765 +87262,56782,greed,1325827923 +87262,56782,morality,1325827973 +87262,56782,oilmen,1325827937 +87262,56782,Paul Dano,1325828014 +87262,56782,Paul Thomas Anderson,1325828325 +87262,56782,pioneer,1325828380 +87262,56782,religion,1325827761 +87262,56782,soundtrack disconnected from movie,1325827888 +87262,56782,visually appealing,1325828334 +87262,56885,Denzel Washington,1318799217 +87262,56885,Forest Whitaker,1318799220 +87262,56885,predictable,1318799294 +87262,56885,racism,1318799225 +87262,56885,school drama,1318799246 +87262,56885,underdogs,1318799223 +87262,56885,weak acting,1318799278 +87262,58287,incoherent,1285625010 +87262,58287,lack of development,1285624835 +87262,58287,predictable,1285624877 +87262,58287,rape,1285624814 +87262,58287,revenge,1285624817 +87262,58287,Rosario Dawson,1285624808 +87262,58287,slow,1285625023 +87262,59295,bad science,1282848651 +87262,59295,christianity,1282848698 +87262,59295,creationism,1282848661 +87262,59295,intelligent design,1282848645 +87262,59295,misinformation,1282848630 +87262,59295,onesided,1282848627 +87262,59295,propaganda,1282848624 +87262,59315,action,1325013116 +87262,59315,adapted from:comic,1325013003 +87262,59315,cliche,1325013060 +87262,59315,Gwyneth Paltrow,1325012995 +87262,59315,Jeff Bridges,1325013106 +87262,59315,Robert Downey Jr.,1325013104 +87262,59315,sci-fi,1325013015 +87262,59315,superhero,1325013095 +87262,59709,cultured characters,1283469252 +87262,59709,Elijah Wood,1283469242 +87262,59709,Leonor Watling,1283469234 +87262,59709,Mathematics,1283469239 +87262,59709,Nudity (Topless - Notable),1283469364 +87262,59709,pseudoscience,1283469285 +87262,59709,twisted,1283469329 +87262,59709,university,1283469336 +87262,64701,Bechdel Test:Pass,1289169307 +87262,64701,Elsa Zylberstein,1289169315 +87262,64701,France,1289169286 +87262,64701,great acting,1289169349 +87262,64701,hollywood ending,1289169332 +87262,64701,Kristin Scott Thomas,1289169268 +87262,64716,atonement,1283608965 +87262,64716,cliche,1283609737 +87262,64716,hopeless love,1283609087 +87262,64716,love,1283609137 +87262,64716,love story,1283609149 +87262,64716,predictable,1283609737 +87262,64716,Rosario Dawson,1283608970 +87262,64716,suicide,1283609008 +87262,64716,Will Smith,1283608968 +87262,64957,adapted from:book,1283814532 +87262,64957,Brad Pitt,1283814507 +87262,64957,Cate Blanchett,1283814503 +87262,64957,cinematography,1283814509 +87262,64957,David Fincher,1283814504 +87262,64957,unconvincing premise,1283814670 +87262,64969,cliche,1285973946 +87262,64969,feel-good,1285973980 +87262,64969,Jim Carrey,1285973747 +87262,64969,positive thinking,1285973796 +87262,64969,predictable,1285973936 +87262,64969,romantic comedy,1285973806 +87262,64969,self-esteem,1285973968 +87262,64969,Zooey Deschanel,1285973752 +87262,65126,adapted from:book,1325506206 +87262,65126,dark comedy,1325506367 +87262,65126,dull,1325506288 +87262,65126,healing,1325506275 +87262,65126,mental health,1325506349 +87262,65126,Mother Son Relationship,1325506302 +87262,65126,redemption,1325506271 +87262,65126,sex addiction,1325506342 +87262,67197,apocalypse,1288462705 +87262,67197,bad acting,1288462636 +87262,67197,cliche,1288462646 +87262,67197,end of the world,1288462749 +87262,67197,father-son relationship,1288462715 +87262,67197,lame,1288462636 +87262,67197,Nicolas Cage,1288462662 +87262,67197,pretentious,1288462729 +87262,67197,sci-fi,1288462685 +87262,67197,translucid aliens,1288462777 +87262,67255,adapted from:book,1300661077 +87262,67255,anti-hero,1300661112 +87262,67255,hackers,1300661082 +87262,67255,investigative journalism,1300661103 +87262,67255,rape,1300661087 +87262,67255,real hackers don't use macs,1300661217 +87262,67255,solving a mistery,1300661138 +87262,67255,Sweden,1300661147 +87262,67255,violence,1300661311 +87262,68157,black comedy,1283000750 +87262,68157,Brad Pitt,1283000677 +87262,68157,Christoph Waltz,1283000706 +87262,68157,fresh,1283000737 +87262,68157,Nazi Germany,1284588259 +87262,68157,Nazis,1283000774 +87262,68157,Quentin Tarantino,1283000661 +87262,68157,satire,1283000743 +87262,68157,violence,1283000665 +87262,68157,World War II,1283000667 +87262,68159,adapted from:TV series,1328134912 +87262,68159,cliche,1328134951 +87262,68159,corruption,1328134923 +87262,68159,journalism,1328134959 +87262,68159,murder,1328135018 +87262,69406,Sandra Bullock,1324936673 +87262,69481,inaccurate,1282766172 +87262,69481,propaganda,1282766192 +87262,69481,too long,1282766229 +87262,69481,too slow,1282766229 +87262,69757,bland,1282927136 +87262,69757,boring,1282927188 +87262,69757,cliche,1282927136 +87262,69757,overrated,1282927119 +87262,69757,Zooey Deschanel,1282927110 +87262,70286,aliens,1288564688 +87262,70286,cgi,1288564728 +87262,70286,evil corporations,1288564723 +87262,70286,intelligent sci-fi,1288564695 +87262,70286,social commentary,1288564698 +87262,70286,South Africa,1288564712 +87262,71108,beautiful photography,1282765841 +87262,71108,black and white,1282765801 +87262,71108,dark,1283616818 +87262,71108,insightful,1282765867 +87262,71108,Michael Haneke,1283616766 +87262,71327,Abbie Cornish,1325613875 +87262,71327,adapted from:true story,1325613773 +87262,71327,Ben Whishaw,1325613879 +87262,71327,Edie Martin,1325613981 +87262,71327,Jane Campion,1325613788 +87262,71327,John Keats,1325613823 +87262,71327,poets,1325613834 +87262,71327,romantic,1325613800 +87262,71327,sad,1325613802 +87262,71327,slow,1325613850 +87262,71327,touching,1325613843 +87262,71418,poverty,1283009626 +87262,71418,primitive people,1283009640 +87262,71418,single parents,1283009658 +87262,71466,Andy Garcia,1287435670 +87262,71466,cheesy,1287435441 +87262,71466,could have been great,1287435555 +87262,71466,Dominik Garcia-Lorido,1287435416 +87262,71466,Ezra Miller,1287435527 +87262,71466,sentimental,1287435430 +87262,71466,superficial,1287435649 +87262,71530,Bruce Willis,1282846947 +87262,71530,cliche,1282846730 +87262,71530,dystopia,1282846839 +87262,71530,James Cromwell,1282846970 +87262,71530,predictable,1282846780 +87262,71530,Radha Mitchell,1282847101 +87262,71530,Rosamund Pike,1282847111 +87262,71530,sci-fi,1282846851 +87262,71530,Ving Rhames,1282846969 +87262,71579,Carey Mulligan,1282940011 +87262,71579,cheesy,1282939971 +87262,71579,cliche,1282939992 +87262,71579,coming of age,1282939931 +87262,71579,Peter Sarsgaard,1282940049 +87262,71579,romance,1282940072 +87262,71579,sappy,1282939982 +87262,71838,antihero,1294265722 +87262,71838,F. Gary Gray,1294265691 +87262,71838,Gerard Butler,1294265711 +87262,71838,Jamie Foxx,1294265713 +87262,71838,predictable ending,1294265748 +87262,71838,revenge,1294265720 +87262,71838,violent,1294265717 +87262,72641,American Football,1283924322 +87262,72641,based on a true story,1283924121 +87262,72641,family,1283924289 +87262,72641,kindness of strangers,1283924172 +87262,72641,Quinton Aaron,1283924270 +87262,72641,Sandra Bullock,1283924130 +87262,72641,sports,1283924150 +87262,72641,Tim McGraw,1283924182 +87262,72733,apartheid,1283985306 +87262,72733,Clint Eastwood,1283985240 +87262,72733,Morgan Freeman,1283985232 +87262,72733,seamless impersonation of a historical figure,1283985234 +87262,72733,South Africa,1283985259 +87262,72733,sport: rugby,1283985284 +87262,72998,3D,1285436134 +87262,72998,aliens,1285435999 +87262,72998,beautiful cinematography,1285436109 +87262,72998,cgi,1285436028 +87262,72998,drama,1285436153 +87262,72998,James Cameron,1285436058 +87262,72998,jungle,1285436001 +87262,72998,military,1285436044 +87262,72998,racism,1285436046 +87262,72998,romance,1285436125 +87262,72998,sci-fi,1285436004 +87262,72998,Sigourney Weaver,1285435994 +87262,72998,special effects,1285436144 +87262,72998,war,1285436150 +87262,73323,adapted from:book,1301292765 +87262,73323,Annika Hallin,1301292834 +87262,73323,conspiracy,1301292875 +87262,73323,hackers,1301292771 +87262,73323,journalism,1301292917 +87262,73323,miscarriage of justice,1301292778 +87262,73323,psychiatry,1301292974 +87262,73323,revenge,1301292854 +87262,73323,secret service,1301292872 +87262,73323,trial,1301292849 +87262,73639,Ilarion Ciobanu,1283000982 +87262,73639,Mircea Albulescu,1283000993 +87262,73639,Mircea Diaconu,1283000983 +87262,73639,Mircea Veroiu,1283000996 +87262,73639,Ovidiu Iuliu Moldovan,1283000999 +87262,73639,Rodica Tapalaga,1283001002 +87262,73639,spaghetti western,1283000974 +87262,74510,adapted from:book,1301291393 +87262,74510,hackers,1301291579 +87262,74510,journalism,1301291586 +87262,74510,miscarriage of justice,1301291589 +87262,74510,revenge,1301291623 +87262,74795,action,1290196829 +87262,74795,adapted from:book,1290196854 +87262,74795,conspiracy,1290196878 +87262,74795,Greg Kinnear,1290196793 +87262,74795,Iraq War,1290196806 +87262,74795,Khalid Abdalla,1290197020 +87262,74795,Matt Damon,1290196779 +87262,74795,Middle East,1290196816 +87262,74795,Paul Greengrass,1290196782 +87262,74795,politics,1290196844 +87262,74795,U.S. Army,1290196789 +87262,74795,war,1290196834 +87262,76079,Amanda Seyfried,1283691801 +87262,76079,bland,1283691819 +87262,76079,disappointing,1283691843 +87262,76079,Julianne Moore,1283691803 +87262,76079,Liam Neeson,1283691859 +87262,76079,not believable,1283691992 +87262,77240,cold,1300430223 +87262,77240,family portrait,1300430232 +87262,77240,melodrama,1300430208 +87262,77240,self-indulgent,1300430215 +87262,77240,slow-moving,1300430212 +87262,77266,based on a book,1282848594 +87262,77266,complex,1282757252 +87262,77266,deep,1282757287 +87262,77266,Jessica Haines,1282757202 +87262,77266,John Malkovich,1282757190 +87262,77266,South Africa,1282848585 +87262,79132,cliche,1294257177 +87262,79132,dreams,1294257147 +87262,79132,Ellen Page,1294257108 +87262,79132,happy ending,1294257076 +87262,79132,Leonardo DiCaprio,1294257062 +87262,79132,mindfuck,1294257065 +87262,79132,predictable,1294257177 +87262,79132,sci-fi,1294257129 +87262,79592,bad acting,1299968811 +87262,79592,Eva Mendes,1299968835 +87262,79592,Mark Wahlberg,1299968827 +87262,79592,Michael Keaton,1299968829 +87262,79592,Samuel L Jackson,1299968844 +87262,79592,Weak screenplay,1299968863 +87262,79592,Will Ferrell,1299968830 +87262,80463,adapted from:book,1296859948 +87262,80463,cold genius,1296860570 +87262,80463,David Fincher,1296859916 +87262,80463,innovation,1296859953 +87262,80463,internet,1296859958 +87262,80463,Jesse Eisenberg,1296859941 +87262,80463,Justin Timberlake,1296859926 +87262,80463,loneliness,1296859955 +87262,80463,nerds,1296860538 +87262,80463,software developers,1296860547 +87262,80463,treachery,1296860517 +87262,80549,Emma Stone,1324936849 +87262,80549,high school,1324936879 +87262,80549,sexuality,1324936859 +87262,80549,witty,1324936862 +87262,81562,adapted from:true story,1300136577 +87262,81562,drama,1300136585 +87262,81562,graphic images,1300136538 +87262,81562,James Franco,1300136513 +87262,81562,loneliness,1300136622 +87262,81562,man vs nature,1300136609 +87262,81562,survival,1300136600 +87262,81932,adapted from:true story,1301817648 +87262,81932,Amy Adams,1301817733 +87262,81932,bad acting,1301817768 +87262,81932,Bad direction,1301817779 +87262,81932,boxing,1301817609 +87262,81932,cliche,1301817748 +87262,81932,drug addiction,1301817693 +87262,81932,mother-son relationship,1301817663 +87262,81932,white trash,1301817660 +87262,84152,Abbie Cornish,1325635589 +87262,84152,Bradley Cooper,1325635544 +87262,84152,cliche,1325635672 +87262,84152,drugs,1325635703 +87262,84152,empty,1325635561 +87262,84152,Robert De Niro,1325635549 +87262,84152,sci-fi,1325635609 +87262,84152,smart,1325635554 +87262,84152,visually appealing,1325635644 +87262,84395,medieval superstition,1307892753 +87262,84395,religious propaganda,1307892741 +87262,85020,cliche,1307995782 +87262,85020,no depth,1307995767 +87262,85020,professional assassins,1307995811 +87262,85020,shallow,1307995769 +87262,85414,happy ending,1370805797 +87262,85414,Michelle Monaghan,1370805783 +87262,85414,parallel universe,1370805862 +87262,85414,predictable ending,1370805808 +87262,85414,science fiction,1370805790 +87262,85414,time loop,1370805820 +87262,89118,disturbing,1387973105 +87262,89118,Elena Anaya,1387973152 +87262,89118,identity,1387973076 +87262,89118,long revenge,1387973137 +87262,89118,mindfuck,1387973113 +87262,89118,Pedro Almodóvar,1387973086 +87262,89118,sexuality,1387973079 +87262,89369,Chris Weitz,1325588193 +87262,89369,Demian Bichir,1325588125 +87262,89369,father son relationship,1325588205 +87262,89369,honor,1325588330 +87262,89369,immigrants,1325588220 +87262,89369,Jose Julian,1325588180 +87262,89369,opportunity,1325588491 +87262,89369,single father,1325588288 +87262,89470,disappointing,1331399993 +87262,89470,disease,1331400024 +87262,89470,lame,1331400076 +87262,89470,slow,1331400000 +87262,89470,virus,1331400109 +87262,91325,cliche,1364681121 +87262,91325,Max von Sydow,1364681088 +87262,91325,Sandra Bullock,1364681098 +87262,91325,sentimental,1364681085 +87262,91500,Bechdel Test:Pass,1382218719 +87262,91500,dystopia,1382218777 +87262,91500,Jennifer Lawrence,1382218750 +87262,91500,sci-fi,1382218750 +87262,91500,Woody Harrelson,1382218738 +87262,91890,Meryl Streep,1350249253 +87262,94070,predictable,1370210678 +87262,94864,aliens,1365926826 +87262,94864,Charlize Theron,1365926772 +87262,94864,cliche,1365926819 +87262,94864,Noomi Rapace,1365926786 +87262,94864,religion,1365926852 +87262,94864,Ridley Scott,1365926833 +87262,94864,sci-fi,1365926800 +87262,97921,cliche,1368362070 +87262,97921,Jennifer Lawrence,1368362092 +87262,97921,predictable,1368362076 +87262,97923,addiction,1370728320 +87262,97923,cliche contrition,1370728265 +87262,97923,Denzel Washington,1370728269 +87262,97923,Don Cheadle,1370728271 +87262,97923,Nudity (Full Frontal),1370728278 +87262,97923,plane crash,1370728300 +87262,97938,adapted from:book,1385246870 +87262,97938,great CGI,1385246851 +87262,97938,religion,1385246856 +87262,98809,adapted from:book,1356212090 +87262,98809,adventure,1356212094 +87262,98809,big budget,1356212224 +87262,98809,crude humor,1356212282 +87262,98809,epic,1356212211 +87262,98809,fantasy world,1356212317 +87262,98809,realistic CGI,1356212130 +87262,99114,Christoph Waltz,1367674334 +87262,99114,Jamie Foxx,1367674300 +87262,99114,Leonardo DiCaprio,1367674254 +87262,99114,Quentin Tarantino,1367674248 +87262,99114,Samuel L. Jackson,1367674250 +87262,99114,western,1367674354 +87262,99817,Cosmina Stratan,1371993325 +87262,99817,Cristian Mungiu,1371993311 +87262,99817,primitive society,1371993371 +87262,99817,religion vs modern world,1371993349 +87262,99817,Romanian,1371993387 +87262,99817,Romanian poverty,1371993396 +87262,103228,sci-fi,1389558912 +87274,60756,John C. Reilly,1290991225 +87277,951,Cary Grant,1442702528 +87277,951,comedy,1442702534 +87277,8228,film noir,1442702465 +87277,8228,Humphrey Bogart,1442702459 +87287,296,test tag,1143959234 +87291,58559,Batman,1443884696 +87291,58559,psychology,1443884713 +87303,596,Children,1150771347 +87338,173,Futuristmovies.com,1142337128 +87338,173,What is this,1142337122 +87338,832,kidnapping,1142337138 +87338,832,Mel Gibson,1142337136 +87338,832,tryrty,1142337110 +87338,1196,space,1142337144 +87355,318,character,1435871483 +87355,318,drama,1435871483 +87355,318,hope,1435871483 +87481,105504,tom hanks,1394410338 +87513,296,dance,1425785535 +87513,296,guns,1425785535 +87513,296,violence,1425785535 +87514,79132,mindfuck,1429203308 +87514,79132,science fiction,1429203308 +87514,79132,subconscious,1429203308 +87521,6333,sequel,1260467296 +87521,59369,unrealistic,1260312133 +87521,64716,predictable,1260364412 +87539,91681,horror,1428284820 +87539,91681,psychological,1428284820 +87539,91681,twist ending,1428284820 +87584,260,han solo,1438340949 +87584,260,luke skywalker,1438340938 +87585,1261,dark humor,1350481121 +87585,1261,zombies,1350481126 +87648,260,good science fictional technology,1439811001 +87648,260,humorous,1439811023 +87685,80586,it was a movie about growing up,1392062310 +87688,260,fun,1439781571 +87688,260,space action,1439781575 +87690,7442,eh,1139622442 +87690,37386,visually interesting--that's about it,1138053989 +87690,40815,best of the series so far,1138054046 +87690,41569,A bit overdone but worth a viewing,1138053793 +87690,41573,it couldn't decide what it wanted to be,1138053896 +87694,260,"Best movie ever, for real",1433042346 +87694,260,"best movie ever, hands down",1433042440 +87694,260,x-wing,1433042440 +87694,260,yoda,1433042440 +87694,1527,Watch it at least once a month,1433042244 +87702,260,sci-fi at its finest,1439779162 +87739,260,classic sci-fi,1435127545 +87739,260,good clean fun movie,1435127565 +87759,4848,dark,1449511015 +87759,4848,David Lynch,1449510983 +87759,4848,dreamlike,1449510990 +87759,4848,mystery,1449510993 +87759,4848,surreal,1449510981 +87759,4848,surrealism,1449511008 +87764,31658,fire demon,1262491410 +87764,31658,Wow sophie your hair looks just like starlight.,1262491502 +87766,76293,comedy,1438713251 +87766,76293,family,1438713251 +87766,76293,funny,1438713251 +87778,54286,assassin,1444942018 +87778,54286,twist ending,1444942041 +87848,260,action,1444595629 +87848,260,sci-fi,1444595615 +87855,6786,Brazil,1240285882 +87857,116797,great acting,1438424622 +87857,116797,intense,1438424622 +87857,116797,sad ending,1438424622 +87907,318,alleged wife killer,1425387930 +87907,318,ingenious plan,1425387930 +87907,318,prison escape,1425387930 +87907,455,whale,1137924414 +87907,5995,holocaust,1446648742 +87907,5995,jewish,1446648734 +87907,7321,police,1138546734 +87907,8640,medieval,1140416674 +87907,30707,boxing,1140414345 +87907,39421,porn,1140414414 +87907,39449,painter,1174530439 +87907,128632,extortion,1428849885 +87907,128632,office affair,1428849846 +87907,134021,affair,1446736093 +87907,139640,All Creatures Big and Small,1442562432 +87907,139640,noah's ark,1442562459 +87919,260,action,1441717425 +87919,260,fantasy,1441717432 +87925,150,true story,1155001343 +87925,1610,books,1155001341 +87925,1610,clancy,1155001341 +87929,296,Quentin Tarantino,1378681131 +87929,296,quirky,1378681154 +87929,296,Samuel L. Jackson,1378681150 +87929,319,dark,1378594652 +87929,593,Anthony Hopkins,1378680488 +87929,593,psychology,1378680504 +87929,1089,atypical dialog,1378680599 +87929,1089,cult film,1378680552 +87929,1089,nonlinear,1378680559 +87929,1089,Quentin Tarantino,1378680541 +87929,1089,quirky,1378681084 +87929,56782,long,1379276599 +87929,56782,obvious,1379276594 +87929,56782,pseudo-intelligent,1379276583 +87929,85881,funny,1378680414 +87929,85881,Paul Giamatti,1378680404 +87929,85881,tough-life,1378680425 +87929,85881,wrestling,1378680439 +87929,86898,pretentious,1379276779 +87929,86898,pseudo-artistic,1379276814 +87929,86898,pseudo-intelligent,1379276801 +87929,86898,pseudo-philosophical,1379276850 +87929,86898,pseudo-profound,1379276827 +87929,93840,nudity,1379276389 +87929,93840,ridiculous,1379276377 +87929,102903,overcomplicated,1378680256 +87929,102903,pseudo-intelligent,1378680273 +87929,102903,Woody Harrelson,1378680289 +87938,2232,mathematics,1378398326 +87947,6,al pacino,1272273207 +87947,6,electronic soundtrack,1272273207 +87947,6,robert de niro,1272273207 +87947,6,slow paced,1272273207 +87947,16,indulgent,1379077711 +87947,16,muddled motivations,1379077715 +87947,16,slow,1379077709 +87947,16,stylish,1379077719 +87947,32,brad pitt,1244288911 +87947,32,original,1368484805 +87947,32,time travel,1244288911 +87947,32,twist ending,1244288911 +87947,39,teen movie,1368484879 +87947,44,fight scenes,1368485223 +87947,47,brad pitt,1244288768 +87947,47,david fincher,1244288768 +87947,47,gruesome,1244288768 +87947,47,morgan freeman,1244288768 +87947,47,twist ending,1244288768 +87947,50,boring,1309748669 +87947,50,dull characters,1311065286 +87947,50,overrated,1309748666 +87947,50,slow,1311065290 +87947,50,twist ending,1309748671 +87947,70,cult classic,1368485045 +87947,111,Atmospheric,1364343138 +87947,111,Cult film,1364343146 +87947,111,loneliness,1368485031 +87947,112,fight scenes,1368485224 +87947,123,stylized,1416610808 +87947,175,AIDS,1382940208 +87947,175,authentic,1382940215 +87947,175,cinema verite,1382940226 +87947,175,controversial,1382940212 +87947,175,Harmony Korine,1382940218 +87947,175,teenagers,1382940210 +87947,175,unique style,1382940221 +87947,215,bittersweet,1310129415 +87947,215,conversation,1310129401 +87947,215,dialogue,1310129396 +87947,215,intelligent,1310129422 +87947,215,literate,1310129392 +87947,215,minimalist,1319960601 +87947,215,must see,1319960617 +87947,215,reflective,1319960596 +87947,215,romantic,1310129408 +87947,215,thought-provoking,1319960572 +87947,215,understated,1319960591 +87947,215,wistful,1310129405 +87947,223,independent film,1368485120 +87947,253,cult classic,1317123014 +87947,253,Kirsten Dunst,1317122976 +87947,253,Nudity (Full Frontal),1317122966 +87947,288,brutality,1368484920 +87947,288,dark comedy,1396962834 +87947,288,grating,1396962822 +87947,288,obnoxious,1396962826 +87947,288,stylized,1396962837 +87947,290,brutality,1368484920 +87947,293,disturbing,1309689881 +87947,293,young girl,1309689863 +87947,296,clever writing,1244287492 +87947,296,nonlinear,1244287492 +87947,296,Samuel L. Jackson,1244287492 +87947,296,Tarantino,1244287492 +87947,296,Uma Thurman,1244287492 +87947,316,science fiction,1368485150 +87947,318,heartwarming,1244287740 +87947,318,insincere,1244287740 +87947,318,morgan freeman,1244287740 +87947,318,soppy,1244287740 +87947,318,touching,1244287740 +87947,327,bestiality,1309845957 +87947,327,craptacular,1309845949 +87947,327,Lori Petty,1309845941 +87947,327,Naomi Watts,1309845945 +87947,327,stupid,1309845955 +87947,327,stylized,1309845953 +87947,327,unfinished,1309845964 +87947,342,Australian,1366018661 +87947,342,bittersweet,1366018675 +87947,342,feminist,1366018665 +87947,342,friendship,1366018668 +87947,356,adventure,1320979704 +87947,356,political,1320979694 +87947,364,disney,1244288075 +87947,364,hamlet,1244288075 +87947,364,timon and pumba,1244288075 +87947,366,cheesy,1244332790 +87947,366,freddy krueger,1244332790 +87947,366,possessed little kid,1244332790 +87947,366,remake,1244332790 +87947,366,ridiculous,1244332790 +87947,366,wes craven,1244332790 +87947,377,fast paced,1368485138 +87947,412,dull,1375270664 +87947,485,action,1321157532 +87947,485,campy,1321157498 +87947,485,cheesy,1321157497 +87947,485,comedy,1321157492 +87947,485,cult film,1321157488 +87947,485,fun,1321157490 +87947,485,quirky,1321157513 +87947,485,sadistic,1321157516 +87947,485,stylized,1321157524 +87947,485,violence,1321157531 +87947,527,depressing,1244288996 +87947,527,honest,1244288997 +87947,527,touching,1244288997 +87947,551,adventure,1320979925 +87947,551,all ages,1320979934 +87947,551,beautiful,1320979906 +87947,551,classic,1320979899 +87947,551,claymation,1320979901 +87947,551,creepy,1320979915 +87947,551,cult film,1320979932 +87947,551,dark,1320979919 +87947,551,fantasy,1320979943 +87947,551,great soundtrack,1320979909 +87947,551,halloween,1320979912 +87947,551,quirky,1320979922 +87947,551,stop motion,1320979904 +87947,551,surreal,1320979924 +87947,551,whimsical,1320979936 +87947,555,action,1335613780 +87947,555,brutal,1335613784 +87947,555,cast,1335613774 +87947,555,cult classic,1335613804 +87947,555,Gary Oldman,1335613770 +87947,555,homage,1335613777 +87947,555,intense,1335613789 +87947,555,Quentin Tarantino,1335613809 +87947,555,violence,1335613782 +87947,587,supernatural,1368484839 +87947,589,80s,1244288961 +87947,589,action,1244288961 +87947,589,cheesy,1244288961 +87947,589,classic,1244288962 +87947,589,edward furlong,1244288961 +87947,593,hannibal lecter,1244332912 +87947,593,suspense,1244332912 +87947,648,action,1314873678 +87947,648,adventure,1314873676 +87947,648,Brian De Palma,1314873666 +87947,648,confusing,1314873644 +87947,648,confusing plot,1316511142 +87947,648,good cast,1314873636 +87947,648,good guys,1314873672 +87947,648,good performance,1316511147 +87947,648,memorable sequence,1314873653 +87947,648,plot twists,1314873640 +87947,648,thriller,1316511135 +87947,724,teen movie,1368484879 +87947,778,good soundtrack,1368484980 +87947,799,supernatural,1368484840 +87947,866,neo-noir,1368484944 +87947,866,stylish,1368484859 +87947,904,suspenseful,1368484898 +87947,910,screwball comedy,1368484960 +87947,919,colourful,1244332757 +87947,919,fantanstical,1244332757 +87947,919,musical,1244332757 +87947,924,boring,1305336347 +87947,924,dull,1305336352 +87947,924,incoherent,1305336350 +87947,968,disturbing,1376651314 +87947,968,influential,1376651316 +87947,969,classic,1244332733 +87947,969,old,1244332733 +87947,969,romance,1244332733 +87947,1036,asian dude dying,1272272981 +87947,1036,average hero,1272272981 +87947,1036,bruce willis,1272272981 +87947,1073,chocolate,1244288256 +87947,1073,colourful,1244288256 +87947,1073,fantastical,1244288256 +87947,1073,musical,1244288256 +87947,1073,tunnels,1244288256 +87947,1084,satirical,1363172841 +87947,1084,stylized,1363172853 +87947,1089,good soundtrack,1368484980 +87947,1089,original,1368484805 +87947,1095,Al Pacino,1312092822 +87947,1095,boring,1312092857 +87947,1095,dialogue,1312092890 +87947,1095,Ed Harris,1312092827 +87947,1095,independent,1312093062 +87947,1095,Jack Lemmon,1312092816 +87947,1095,Kevin Spacey,1312092831 +87947,1095,nothing happens,1312092868 +87947,1136,classic,1244288484 +87947,1136,monty python,1244288484 +87947,1196,adventure,1354601936 +87947,1196,classic,1354601943 +87947,1196,fantasy,1354601954 +87947,1197,all ages,1244332975 +87947,1197,classic,1244332975 +87947,1197,fairytale,1244332975 +87947,1197,funny,1244332975 +87947,1201,slow pacing,1244287579 +87947,1201,western,1244287580 +87947,1203,characterisation,1311937192 +87947,1203,cinematography,1311936921 +87947,1203,classic,1311936954 +87947,1203,confrontational,1311936924 +87947,1203,good dialogue,1311936912 +87947,1203,great screenplay,1311936942 +87947,1203,social commentary,1311936917 +87947,1203,thought-provoking,1311936929 +87947,1210,action,1355490886 +87947,1210,adventure,1355490884 +87947,1210,classic,1355490882 +87947,1210,ewoks,1355490879 +87947,1210,fantasy,1355490899 +87947,1210,great soundtrack,1355490895 +87947,1210,space,1355490904 +87947,1213,fast paced,1308954943 +87947,1213,gritty,1308954954 +87947,1213,multiple perspectives,1308954997 +87947,1213,Ray Liotta,1308954968 +87947,1213,Robert De Niro,1308954975 +87947,1213,stylish,1368484859 +87947,1213,stylized,1308954949 +87947,1214,characterisation,1369291104 +87947,1214,female heroine,1244287696 +87947,1214,masterpiece,1369291087 +87947,1214,suspenseful,1244287696 +87947,1214,tension,1369291094 +87947,1214,understated,1369291091 +87947,1219,cinematography,1332224393 +87947,1219,classic,1332224379 +87947,1219,creepy,1332224375 +87947,1219,great cinematography,1332224401 +87947,1219,mystery,1332224386 +87947,1219,suspenseful,1368484899 +87947,1219,tense,1332224381 +87947,1228,direction,1376911531 +87947,1228,performances,1376911528 +87947,1228,stylized,1376911524 +87947,1230,comedy,1319960640 +87947,1230,funny,1319960638 +87947,1230,pleasant,1319960654 +87947,1230,quirky,1319960647 +87947,1230,relationships,1319960657 +87947,1230,romantic,1319960632 +87947,1230,thought-provoking,1319960644 +87947,1230,understated,1319960627 +87947,1230,wistful,1319960635 +87947,1234,twists & turns,1368485090 +87947,1240,action,1244288305 +87947,1240,stunts,1244288305 +87947,1241,cult classic,1368485045 +87947,1245,neo-noir,1368484944 +87947,1249,stylish,1368484859 +87947,1255,cult classic,1368485045 +87947,1261,cult film,1365828613 +87947,1285,teen movie,1368484878 +87947,1321,atmospheric,1339331520 +87947,1321,bizarre,1339331522 +87947,1321,cult clasic,1339331547 +87947,1321,dark comedy,1339331550 +87947,1321,first act stronger than second,1339331574 +87947,1321,funny,1339331540 +87947,1321,horror comedy,1339331543 +87947,1321,John Landis,1339331559 +87947,1321,midnight movie,1339331554 +87947,1321,nudity (topless - brief),1339331505 +87947,1321,surprisingly funny,1339331499 +87947,1321,tense,1339331568 +87947,1321,werewolf,1339331532 +87947,1342,cult film,1382861826 +87947,1342,disturbing,1382861822 +87947,1342,horror,1382861794 +87947,1342,inconsistent plot,1382861806 +87947,1342,mythology,1382861802 +87947,1342,performances,1382861790 +87947,1342,setting,1382861796 +87947,1342,strange,1382861787 +87947,1342,weak pacing,1382861816 +87947,1343,creepy,1379807921 +87947,1343,cult classic,1379808087 +87947,1343,disturbing,1379807927 +87947,1343,intense,1379808088 +87947,1343,remake,1379807918 +87947,1343,strong cast,1379807934 +87947,1343,thriller,1379808095 +87947,1345,classic,1335270314 +87947,1345,dark,1335270311 +87947,1345,eerie,1335270179 +87947,1345,frightening,1335270182 +87947,1345,lurid,1335270186 +87947,1345,social commentary,1335270309 +87947,1345,tense,1335270170 +87947,1345,uncomfortable,1335270177 +87947,1345,visceral,1335270173 +87947,1347,freddy krueger,1244288429 +87947,1347,scary,1244288429 +87947,1347,special effects,1244288429 +87947,1356,science fiction,1368485150 +87947,1387,creepy,1340767277 +87947,1387,scary,1340767281 +87947,1387,suspense,1340767283 +87947,1387,suspenseful,1368484899 +87947,1527,visually stunning,1368485073 +87947,1544,inferior sequel,1370177331 +87947,1544,unmemorable,1370177336 +87947,1584,science fiction,1368485150 +87947,1617,neo-noir,1368484944 +87947,1617,twists & turns,1368485091 +87947,1625,atmosphere,1305423124 +87947,1625,David Fincher,1305423121 +87947,1625,dull,1305423106 +87947,1625,good start,1305423092 +87947,1625,good start/poor finish,1305423101 +87947,1625,incomprehensible,1305423071 +87947,1625,lame ending,1305423081 +87947,1635,drama,1388836759 +87947,1635,funny,1388836763 +87947,1644,Kevin Williamson,1314779985 +87947,1644,predictable,1314779993 +87947,1644,weak characters,1314779980 +87947,1644,weak pacing,1314779976 +87947,1653,science fiction,1368485151 +87947,1658,black comedy,1381564952 +87947,1658,Danny Boyle,1381564969 +87947,1658,Holly Hunter,1381564939 +87947,1658,lacking tension,1381564991 +87947,1658,misguided,1381564983 +87947,1658,quirky,1381564949 +87947,1658,unlikeable characters,1381565000 +87947,1658,weak script,1381564956 +87947,1673,dark comedy,1308824122 +87947,1673,Mark Wahlberg,1308824109 +87947,1673,Nudity (Topless - Notable),1308824105 +87947,1673,scattershot,1308824113 +87947,1673,unfocused,1308824116 +87947,1704,feel-good,1309758541 +87947,1704,friends,1309758524 +87947,1704,Great screenplays,1309758535 +87947,1704,intelligent,1309758528 +87947,1704,Matt Damon,1309758549 +87947,1704,Stellan Skarsgard,1309758560 +87947,1704,thoughtful,1309758522 +87947,1729,clever script,1308955056 +87947,1729,confusing plot,1308955073 +87947,1729,great acting,1308955059 +87947,1729,interracial romance,1308955043 +87947,1729,Quentin Tarantino,1308955049 +87947,1729,slow,1308955039 +87947,1730,cinematography,1381146886 +87947,1730,contemplative,1381146882 +87947,1730,hagiography,1381146895 +87947,1730,slow,1381146890 +87947,1730,unique,1381146888 +87947,1748,visually stunning,1368485073 +87947,1754,supernatural,1368484840 +87947,1831,science fiction,1368485150 +87947,1968,teen movie,1368484879 +87947,1970,dreams,1384646904 +87947,1970,fantasy,1384646898 +87947,1970,goofy,1384646901 +87947,1970,horror,1384646911 +87947,1970,surprisingly good,1384646908 +87947,1970,talented creative team,1384646918 +87947,1971,Freddy no longer scary,1384733091 +87947,1971,MTV aesthetic,1384733084 +87947,1971,stupid,1384733079 +87947,1997,horror,1347085047 +87947,1997,must watch,1347085056 +87947,1997,scary,1347085045 +87947,1997,subtle,1347085050 +87947,1997,taut,1347085052 +87947,1999,decent sequel,1396743166 +87947,1999,disturbing,1396743186 +87947,1999,horror,1396743162 +87947,1999,jump scare,1396743159 +87947,1999,pacing,1396743177 +87947,1999,underrated,1396743181 +87947,1999,weak direction,1396743174 +87947,1999,weird,1396743156 +87947,2022,long,1378107915 +87947,2022,slow,1378107925 +87947,2060,dumb,1310968197 +87947,2060,Matt Stone,1310968213 +87947,2060,slightly amusing,1310968202 +87947,2060,Trey Parker,1310968210 +87947,2065,fun premise,1351639651 +87947,2065,Jeff Daniels,1351639647 +87947,2065,romance,1351639667 +87947,2065,warm,1351639655 +87947,2065,whimsical,1351639653 +87947,2065,Woody Allen,1351639659 +87947,2076,neo-noir,1368484944 +87947,2078,disney,1244288542 +87947,2078,racist,1244288542 +87947,2138,animation,1316084073 +87947,2138,beautiful,1333625482 +87947,2138,dark animated film,1316084061 +87947,2138,life lessons,1316084076 +87947,2138,naturalistic,1316084067 +87947,2138,sad,1333625488 +87947,2138,serious cartoon,1333626108 +87947,2138,violent,1333625486 +87947,2144,80s,1368485186 +87947,2144,teen movie,1368484879 +87947,2167,badass,1309846222 +87947,2167,black hero,1309846226 +87947,2167,gothic,1309846228 +87947,2167,predictable,1309846233 +87947,2167,stupid,1309846230 +87947,2232,bad acting,1310012832 +87947,2232,claustrophobic,1310012822 +87947,2232,intense,1310012829 +87947,2232,mathematics,1310012824 +87947,2232,maze,1310012837 +87947,2232,twist,1310012834 +87947,2268,adapted from: play,1309842775 +87947,2268,classic,1309842783 +87947,2268,courtroom drama,1309842739 +87947,2268,Demi Moore,1309842728 +87947,2268,great script,1309842742 +87947,2268,Jack Nicholson,1309842723 +87947,2268,morality,1309842745 +87947,2268,tense,1309842734 +87947,2268,Tom Cruise,1309842716 +87947,2288,classic,1353124318 +87947,2288,disturbing,1353124314 +87947,2288,horror,1353124287 +87947,2288,John Carpenter,1353124275 +87947,2288,sci-fi horror,1353124298 +87947,2291,original,1368484805 +87947,2318,black comedy,1372557021 +87947,2318,hilarious,1372557016 +87947,2366,adventure,1331283217 +87947,2366,classic,1331283215 +87947,2366,tense,1331283597 +87947,2420,80s,1368485186 +87947,2428,aliens,1317254982 +87947,2428,Clea Duvall,1317254986 +87947,2428,cult classic,1317254997 +87947,2428,funny,1317255037 +87947,2428,high school,1317254964 +87947,2428,horror,1317254974 +87947,2428,Jon Stewart,1317254955 +87947,2428,Josh Hartnett,1317254990 +87947,2428,Nudity (Topless - Brief),1317254947 +87947,2428,postmodern,1317255046 +87947,2428,Robert Rodriguez,1317255065 +87947,2428,scary,1317255059 +87947,2428,sci-fi,1317254977 +87947,2428,suspense,1317254958 +87947,2428,teen,1317255048 +87947,2428,thriller,1317254961 +87947,2460,boring,1392211943 +87947,2460,cliche,1392211945 +87947,2460,inferior sequel,1392211974 +87947,2460,scary,1392211979 +87947,2460,slow,1392211958 +87947,2460,ugly art design,1392211951 +87947,2460,unfunny,1392211954 +87947,2460,unique,1392211977 +87947,2513,campy,1393307781 +87947,2513,cliche ending,1393307776 +87947,2513,creepy,1393307784 +87947,2513,horror,1393307786 +87947,2513,tense,1393307787 +87947,2542,boring,1309690344 +87947,2542,dull,1309690346 +87947,2571,action,1244288524 +87947,2571,fight scenes,1244288524 +87947,2571,gun-fu,1244288524 +87947,2571,Keanu Reeves,1369523066 +87947,2571,virtual reality,1244288524 +87947,2571,visually stunning,1368485073 +87947,2572,1990s,1313161523 +87947,2572,clever,1313161504 +87947,2572,fun,1313161514 +87947,2572,good script,1313161517 +87947,2572,high school,1313161510 +87947,2572,teen,1313161501 +87947,2579,Christopher Nolan,1367754760 +87947,2579,mindfuck,1367754775 +87947,2579,neo noir,1367754767 +87947,2599,black comedy,1309578196 +87947,2599,honest,1309578193 +87947,2599,lesbian,1309578200 +87947,2599,slow,1309578198 +87947,2600,alternate reality,1314951594 +87947,2600,bad ending,1314951626 +87947,2600,David Cronenberg,1314951615 +87947,2600,exciting visuals,1314951780 +87947,2600,interesting,1314951618 +87947,2600,Jennifer Jason Leigh,1314951602 +87947,2600,lame plot twists,1314951629 +87947,2600,mindfuck,1314951588 +87947,2600,Sarah Polley,1314951769 +87947,2600,sci-fi,1314951597 +87947,2600,surreal,1314951622 +87947,2600,techno-evolution,1314951608 +87947,2600,unique,1314951586 +87947,2640,earnest,1369739191 +87947,2640,fun,1369739210 +87947,2640,influential,1369739216 +87947,2640,weak third act,1369739203 +87947,2657,crowd movie,1333146510 +87947,2657,cult film,1333146499 +87947,2657,disturbing,1333146507 +87947,2657,insanity,1333146503 +87947,2657,sex,1333146505 +87947,2671,cliche,1333945244 +87947,2671,comedy,1333945221 +87947,2671,date movie,1333945230 +87947,2671,drama,1333945395 +87947,2671,funny,1333945219 +87947,2671,kitsch,1333945216 +87947,2671,predictable,1333945211 +87947,2671,romance,1333945396 +87947,2729,literature,1316609623 +87947,2729,sexy,1316609616 +87947,2841,supernatural,1368484840 +87947,2863,quirky,1362528126 +87947,2890,anti-war,1316826805 +87947,2890,confrontational,1316826808 +87947,2890,stylized,1316826825 +87947,2915,80s,1368485185 +87947,2915,teen movie,1368484879 +87947,2916,action,1340975200 +87947,2916,campy,1340975211 +87947,2916,cult film,1340975193 +87947,2916,cyberpunk,1340975113 +87947,2916,memory,1340975166 +87947,2916,Philip K. Dick,1340975109 +87947,2916,science fiction,1368485150 +87947,2916,space travel,1340975120 +87947,2916,suspense,1340975203 +87947,2916,visually appealing,1340975197 +87947,2918,cheesy but good,1272272954 +87947,2918,john hughes,1272272954 +87947,2959,based on a book,1244288127 +87947,2959,brad pitt,1244288127 +87947,2959,chuck palahniuk,1244288127 +87947,2959,david fincher,1244288127 +87947,2959,edward norton,1244288127 +87947,2959,twist,1244288127 +87947,2972,ambiguous,1395820337 +87947,2972,cinematography,1395820347 +87947,2972,expressionistic,1395820331 +87947,2972,underrated,1395820341 +87947,2976,90s,1375539554 +87947,2976,atmospheric,1375539541 +87947,2976,confusing,1375539529 +87947,2976,dreamlike,1375539536 +87947,2976,moody,1375539534 +87947,2976,overlooked,1375539532 +87947,2976,spiritual sequel,1375539546 +87947,2985,80s,1380020782 +87947,2985,cult classic,1380020764 +87947,2985,cult film,1380020777 +87947,2985,dystopia,1380020790 +87947,2985,sci-fi,1380020773 +87947,2985,social commentary,1380020769 +87947,2985,violent,1380020766 +87947,2997,asshole characters,1272273137 +87947,2997,charlie kaufman,1272273137 +87947,2997,john malkovitch,1272273137 +87947,3020,obsession,1316355142 +87947,3033,funny,1310965557 +87947,3033,hilarious,1310965568 +87947,3033,sci-fi,1310965571 +87947,3033,slapstick,1310965560 +87947,3033,spoof,1310965564 +87947,3070,cult classic,1368485045 +87947,3147,compassionate,1358090338 +87947,3147,David Morse,1358090348 +87947,3147,drama,1358090335 +87947,3147,emotional,1358090328 +87947,3147,magical realism,1358090354 +87947,3147,Sam Rockwell,1358090344 +87947,3147,visually stunning,1358090332 +87947,3160,ensemble cast,1308918036 +87947,3160,meaningless,1308918027 +87947,3160,stylized,1308918040 +87947,3160,Tom Cruise,1308918030 +87947,3210,80s,1368485185 +87947,3255,cheesy,1345980462 +87947,3255,drama,1345980469 +87947,3255,family,1345980467 +87947,3255,fun,1345980453 +87947,3255,nostalgic,1345980450 +87947,3255,sports,1345980458 +87947,3255,true story,1345980475 +87947,3255,worth watching,1345980481 +87947,3273,change of tone,1331713782 +87947,3273,clever script,1331713790 +87947,3273,different writer,1331713786 +87947,3273,direction,1331713796 +87947,3273,good series,1331713794 +87947,3273,scary,1331713799 +87947,3273,weakest in the series,1331713779 +87947,3285,Danny Boyle,1381580191 +87947,3285,idealism,1381580186 +87947,3285,visually appealing,1381580179 +87947,3408,based on true story,1368485204 +87947,3409,cheesiness,1314779883 +87947,3409,clever script,1314779857 +87947,3409,cool concept,1314779860 +87947,3409,enjoyable,1314779862 +87947,3409,fun,1314779866 +87947,3409,postmodern,1314779917 +87947,3409,shlocky,1314779874 +87947,3409,strong female lead,1314779930 +87947,3409,teen movie,1314779901 +87947,3466,nice,1372159318 +87947,3466,sweet,1372159314 +87947,3499,suspenseful,1368484899 +87947,3504,satire,1368171331 +87947,3527,action,1244333065 +87947,3527,macho,1244333065 +87947,3527,military,1244333065 +87947,3527,predator,1244333065 +87947,3623,altered tone,1316511103 +87947,3623,cheesy,1316511097 +87947,3623,lame ending,1316511089 +87947,3623,tense start,1316511109 +87947,3624,fight scenes,1368485223 +87947,3702,action,1336348907 +87947,3702,Australian,1336348927 +87947,3702,car chases,1336348910 +87947,3702,cult classic,1336348925 +87947,3702,post-apocalyptic,1336348941 +87947,3702,stunts,1336348945 +87947,3702,tense,1336348931 +87947,3702,violent,1336348920 +87947,3703,action,1336637075 +87947,3703,dystopia,1336637070 +87947,3703,rape,1336637062 +87947,3740,cult classic,1368485045 +87947,3793,cult film,1321505486 +87947,3814,clever,1358555879 +87947,3814,comedy,1358555887 +87947,3814,silly,1358555876 +87947,3814,Woody Allen,1358555885 +87947,3863,atmospheric,1362569793 +87947,3863,beautiful cinematography,1362569785 +87947,3863,mindbender,1362569775 +87947,3863,unique,1362569789 +87947,3863,visual aesthetic,1362569781 +87947,3911,hilarious,1335095146 +87947,3911,improvised,1335095142 +87947,3915,boxing,1346240724 +87947,3915,coming-of-age,1346240727 +87947,3915,drama,1346240736 +87947,3915,feminist film,1346240750 +87947,3915,girl power,1346240808 +87947,3915,high school,1346240740 +87947,3915,inspirational,1346240811 +87947,3915,Michelle Rodriguez,1346240722 +87947,3915,naturalist,1346240732 +87947,3915,predictable,1346240718 +87947,3915,violence,1346240742 +87947,3917,atmosphere,1354188350 +87947,3917,boring,1354188337 +87947,3917,cheesy,1354188405 +87947,3917,design,1354188346 +87947,3917,overrated,1354188344 +87947,3917,sex horror,1354188360 +87947,3917,slow,1354188339 +87947,3917,stupid,1354188373 +87947,3996,fight scenes,1368485224 +87947,3996,visually stunning,1368485073 +87947,3999,action,1349904134 +87947,3999,adventure,1349904112 +87947,3999,cheesy,1349904138 +87947,3999,mountain climbing,1349904122 +87947,3999,silly premise,1349904109 +87947,3999,special effects,1349904143 +87947,4020,supernatural,1368484840 +87947,4033,hisotrical,1308826152 +87947,4033,long,1308826147 +87947,4033,overemphasis,1308826159 +87947,4105,campy,1365680885 +87947,4105,comedy,1365680888 +87947,4105,controversial,1365680909 +87947,4105,cult film,1365680891 +87947,4105,dark humor,1365680906 +87947,4128,cult classic,1368485045 +87947,4166,comedy thriller,1346763109 +87947,4166,dark satire,1346763103 +87947,4166,disturbing,1346763106 +87947,4166,enjoyable,1346763119 +87947,4166,makes you think,1346763115 +87947,4166,media satire,1346763099 +87947,4166,violent,1346763096 +87947,4226,christopher nolan,1244288467 +87947,4226,nonlinear,1244288467 +87947,4226,twist ending,1244288467 +87947,4232,action,1317255104 +87947,4232,atmospheric,1317255118 +87947,4232,clever,1317255106 +87947,4232,fun,1317255121 +87947,4232,heart,1317255115 +87947,4232,Robert Rodriguez,1317255103 +87947,4232,special effects,1317255109 +87947,4308,tacky,1368707076 +87947,4308,thin characters,1368707070 +87947,4351,70mm,1344775015 +87947,4351,action-packed,1344775033 +87947,4351,adrenaline junkie,1344775012 +87947,4351,cop movie,1344775006 +87947,4351,entertaining,1344775002 +87947,4351,fun,1344775021 +87947,4351,relentless,1344775048 +87947,4446,CGI,1310105928 +87947,4446,distance from source material,1310105922 +87947,4446,not related to Final Fantasy,1310105913 +87947,4446,sci-fi,1310105935 +87947,4446,visually stunning,1310105879 +87947,4446,weak characters,1310105903 +87947,4553,action,1321061757 +87947,4553,aliens,1321061935 +87947,4553,campy,1321061734 +87947,4553,consumerism,1321061742 +87947,4553,cult classic,1321061772 +87947,4553,dystopia,1321061744 +87947,4553,Keith David,1321061765 +87947,4553,Nudity (Topless),1321061967 +87947,4553,political,1321061932 +87947,4553,quirky,1321061760 +87947,4553,satirical,1321061754 +87947,4553,silly,1321061732 +87947,4553,slow start,1321061775 +87947,4553,terrorism,1321061747 +87947,4641,bittersweet,1312981478 +87947,4641,dark comedy,1312981463 +87947,4641,depressing,1312981483 +87947,4641,disaffected,1312981474 +87947,4641,Steve Buscemi,1312981487 +87947,4641,thora birch,1312981470 +87947,4641,unfunny,1312981465 +87947,4725,bad pacing,1244332941 +87947,4725,brad anderson,1244332941 +87947,4725,david caruso,1244332941 +87947,4725,scary,1244332941 +87947,4728,chase,1314539074 +87947,4728,comedy,1314539065 +87947,4728,funny,1314539060 +87947,4728,hilarious,1314539068 +87947,4728,silly,1314539063 +87947,4728,treasure hunt,1314539081 +87947,4745,good actors,1377064309 +87947,4745,high school,1377064288 +87947,4745,melodrama,1377064292 +87947,4745,social issues,1377064294 +87947,4745,tacky,1377064297 +87947,4848,confusing,1244288014 +87947,4848,david lynch,1244288014 +87947,4848,lesbians,1244288014 +87947,4848,naomi watts,1244288014 +87947,4848,nonsensical,1244288014 +87947,4848,thriller,1244288014 +87947,4855,Clint Eastwood,1363745653 +87947,4855,cool,1363745655 +87947,4855,Nudity (Full Frontal - Brief),1363745670 +87947,4855,right wing,1363745647 +87947,4873,alternate reality,1328947585 +87947,4873,beautiful,1328947539 +87947,4873,cinematography,1328947528 +87947,4873,dreamlike,1328947536 +87947,4873,engrossing,1328947533 +87947,4873,imagination,1328947595 +87947,4873,philosophy,1328947542 +87947,4873,psychological,1328947573 +87947,4873,quirky,1328947568 +87947,4873,relaxing,1328947531 +87947,4873,rotoscope,1328947524 +87947,4873,strange,1328947549 +87947,4873,stylized,1328947547 +87947,4873,thought-provoking,1328947520 +87947,4873,visually stunning,1328947553 +87947,4878,interesting,1244288171 +87947,4878,original,1368484805 +87947,4878,richard kelly,1244288171 +87947,4878,surreal,1244288171 +87947,4888,character-driven,1410525308 +87947,4888,claustrophobic,1410525301 +87947,4888,friendship,1410525317 +87947,4888,relationships,1410525320 +87947,4888,tense,1410525304 +87947,4888,thought-provoking,1410525329 +87947,4914,deadpan,1332828604 +87947,4914,french new wave,1332828594 +87947,4914,funny,1332828601 +87947,4914,quirky,1332828598 +87947,4914,witty,1332828596 +87947,5065,supernatural,1368484839 +87947,5254,fight scenes,1368485223 +87947,5266,suspenseful,1368484898 +87947,5303,change of heart,1311075642 +87947,5303,multiple roles,1311075639 +87947,5303,well constructed,1311075635 +87947,5377,Nicholas Hoult,1308917044 +87947,5377,relationships,1308917040 +87947,5377,whimsical,1308917036 +87947,5378,does not make sense,1272272817 +87947,5378,franchise,1272272817 +87947,5378,hayden christensen,1272272817 +87947,5378,natalie portman,1272272817 +87947,5378,no plot,1272272817 +87947,5378,space opera,1272272817 +87947,5445,bad effects,1306663380 +87947,5445,Colin Farrell,1306663392 +87947,5445,creepy,1306663400 +87947,5445,neo-noir,1306663384 +87947,5445,science fiction,1306663387 +87947,5618,anime,1244332889 +87947,5618,colourful,1244332890 +87947,5618,fun,1244332890 +87947,5618,weird,1244332889 +87947,5673,Adam Sandler,1376051482 +87947,5673,interesting,1376051479 +87947,5673,tense,1376051492 +87947,5673,unique,1376051488 +87947,5816,adapted from book,1272272736 +87947,5816,best book in series,1272272736 +87947,5816,franchise,1272272736 +87947,5954,edward norton,1305423261 +87947,5954,hot girls,1305423263 +87947,5954,new york city,1305423278 +87947,5954,powerful ending,1305423253 +87947,5954,rosario dawson,1305423272 +87947,5956,action,1359034531 +87947,5956,forgettable,1359034543 +87947,5956,long,1359034535 +87947,5956,performances,1359034527 +87947,5989,based on true story,1368485204 +87947,6013,action,1333659609 +87947,6013,comedy,1333659568 +87947,6013,friendship,1333659582 +87947,6013,funny,1333659574 +87947,6013,innacurate,1333659597 +87947,6013,sexuality,1333659602 +87947,6013,stupid,1333659593 +87947,6013,violence,1333659606 +87947,6058,death,1315129607 +87947,6058,Nudity (Topless),1315129595 +87947,6058,sadistic,1315129575 +87947,6058,tv quality,1315129583 +87947,6058,unsuspenseful,1315129571 +87947,6058,weak sequel,1315129558 +87947,6214,mindfuck,1386409957 +87947,6214,nonlinear,1386409944 +87947,6214,thought-provoking,1386409953 +87947,6214,unique,1386409946 +87947,6290,bland,1385795599 +87947,6290,cartoonish,1385795596 +87947,6290,tiring,1385795604 +87947,6294,start is better than the rest of the movie,1390077980 +87947,6365,confusing,1272272869 +87947,6365,cyberpunk,1272272869 +87947,6365,overlong,1272272869 +87947,6365,sequel,1272272869 +87947,6383,cartoonish,1385706295 +87947,6383,dumb,1385706277 +87947,6383,goofy,1385706267 +87947,6383,inferior sequel,1385706286 +87947,6383,Silly,1385706272 +87947,6502,army,1244288210 +87947,6502,Cillian Murphy,1244288210 +87947,6502,cinematography,1371987622 +87947,6502,Danny Boyle,1244288210 +87947,6502,soldiers,1244288210 +87947,6502,stylized,1371987633 +87947,6502,survival,1244288210 +87947,6502,zombies,1244288210 +87947,6539,johnny depp,1244288399 +87947,6539,keira knightley,1244288399 +87947,6539,swashbuckling,1244288399 +87947,6564,casual racism,1365078103 +87947,6564,generic,1365078108 +87947,6564,inferior sequel,1365078098 +87947,6708,crazy nicolas cage,1305423184 +87947,6708,twist ending,1305423184 +87947,6750,comedy,1332625964 +87947,6750,dull,1332625959 +87947,6750,long,1332625957 +87947,6750,quirky,1332625956 +87947,6750,relationships,1332625970 +87947,6750,unfunny,1332625961 +87947,6796,black,1305423429 +87947,6796,Nudity (Topless - Brief),1305423429 +87947,6796,thought provoking,1305423429 +87947,6863,jack black,1244288328 +87947,6863,rock and roll,1244288328 +87947,6873,fun,1394447793 +87947,6873,lame gags,1394447786 +87947,6873,screwball comedy,1368484960 +87947,6874,action,1244287550 +87947,6874,good soundtrack,1368484980 +87947,6874,nonlinear,1244287549 +87947,6874,Quentin Tarantino,1244287550 +87947,6874,stylish,1244287549 +87947,7013,creepy,1396830949 +87947,7013,strange,1396830945 +87947,7013,stylized,1396830953 +87947,7020,Good performances,1363589767 +87947,7090,martial arts,1309847291 +87947,7090,passionate,1309847284 +87947,7090,political,1309847287 +87947,7090,unrealistic fighting,1309847297 +87947,7123,cronenberg,1338515942 +87947,7123,loses steam,1338515919 +87947,7123,performances,1338515925 +87947,7123,surreal,1338515931 +87947,7123,uncomfortable,1338515917 +87947,7123,weird,1338515939 +87947,7147,adventure,1320979344 +87947,7147,bittersweet,1320979328 +87947,7147,dreamlike,1320979324 +87947,7147,father-son relationship,1320979337 +87947,7147,imagination,1320979420 +87947,7147,magic,1320979340 +87947,7147,quirky,1320979334 +87947,7147,reflective,1320979331 +87947,7147,storytelling,1320979423 +87947,7147,stylized,1320979322 +87947,7147,visual effects,1320979371 +87947,7225,1970s,1351435540 +87947,7225,documentary,1351435525 +87947,7225,funny,1351435531 +87947,7225,muscle,1351435528 +87947,7225,subculture,1351435554 +87947,7225,true story,1351435535 +87947,7387,social commentary,1309846282 +87947,7387,visceral,1309846276 +87947,7387,zombies,1309846288 +87947,7438,clever dialogue,1244288098 +87947,7438,lack of action,1244288098 +87947,7438,quentin tarantino,1244288098 +87947,7451,clever,1309840817 +87947,7451,hilarious,1309840821 +87947,7451,innocencne lost,1309840854 +87947,7451,manipulation,1309840843 +87947,7451,must see,1309840870 +87947,7451,seen more thann once,1309840860 +87947,7451,surprisingly clever,1309840865 +87947,7451,Tina Fey,1309840812 +87947,8042,directionless,1375686972 +87947,8042,plodding,1375686955 +87947,8042,slow,1375686961 +87947,8093,action,1399076417 +87947,8093,cliche,1399076422 +87947,8093,generic,1399076425 +87947,8093,performances,1399076414 +87947,8369,corny,1410953010 +87947,8369,fun,1410953013 +87947,8376,awkward,1309578139 +87947,8376,high school,1309578141 +87947,8376,lame,1309578134 +87947,8376,random,1309578130 +87947,8376,weirdos are okay,1309578128 +87947,8751,classic,1331713919 +87947,8751,crime,1331713934 +87947,8751,film noir,1331713925 +87947,8751,gritty,1331713921 +87947,8751,loneliness,1331713928 +87947,8751,suspense,1331713932 +87947,8751,violent,1331713938 +87947,8751,visceral,1331713914 +87947,8751,weak middle,1331713910 +87947,8784,independent film,1368485120 +87947,8784,natalie portman,1272273247 +87947,8784,quirkiness,1272273247 +87947,8784,soundtrack,1272273247 +87947,8865,boring,1310105250 +87947,8865,cgi,1310105276 +87947,8865,fake,1310105279 +87947,8865,homage,1310105255 +87947,8865,overly stylised,1310105263 +87947,8874,british comedy,1244287827 +87947,8874,hilarious,1244287827 +87947,8874,simon pegg,1244287827 +87947,8874,zombies,1244287827 +87947,8910,intelligent,1332625546 +87947,8910,philosophy,1332625538 +87947,8910,psychology,1332625543 +87947,8910,quirky,1332625567 +87947,8910,stylized,1332625550 +87947,8910,weird,1332625558 +87947,8910,whimsical,1332625553 +87947,8914,boring,1310013062 +87947,8914,clever,1310013078 +87947,8914,incomprehensible,1310013068 +87947,8914,intellectual,1310013073 +87947,8914,inventor,1310013081 +87947,8914,slow,1310013063 +87947,8937,america,1319977696 +87947,8937,cinematography,1319977764 +87947,8937,drama,1319977681 +87947,8937,good soundtrack,1319977663 +87947,8937,harrowing,1319977679 +87947,8937,high school,1319977693 +87947,8937,inspirational,1319977672 +87947,8937,inspiring,1319977710 +87947,8937,real life,1319977667 +87947,8937,realistic,1320030028 +87947,8937,social commentary,1319977713 +87947,8937,sports,1319977684 +87947,8937,thought-provoking,1320029968 +87947,8957,choppy editing,1310012753 +87947,8957,claustrophic,1310012735 +87947,8957,clever,1310012701 +87947,8957,cult film,1310012731 +87947,8957,fast cutting,1310012742 +87947,8957,franchise,1310012781 +87947,8957,horror,1310012776 +87947,8957,mindfuck,1310012704 +87947,8957,plot holes,1310012721 +87947,8957,score,1310012766 +87947,8957,twist,1310012706 +87947,8957,vigilantism,1310012710 +87947,8961,Pixar,1244288852 +87947,8961,superhero,1244288852 +87947,26285,bad sound mix,1392084477 +87947,26285,confusing,1392084472 +87947,26285,cult film,1392084480 +87947,26285,John Carpenter,1392084485 +87947,26285,slow,1392084474 +87947,26285,unique,1392084489 +87947,26391,dull,1376395159 +87947,26391,flawed characters,1376395154 +87947,26391,postmodernism,1376395151 +87947,26391,slow pace,1376395157 +87947,26391,social commentary,1376395146 +87947,26391,unengaging,1376395162 +87947,26974,experimental,1383388886 +87947,26974,harmony korine,1383388900 +87947,26974,metal soundtrack,1383388890 +87947,26974,nonlinear,1383388905 +87947,26974,unique,1383388877 +87947,27790,adventure,1352719545 +87947,27790,bittersweet,1352719549 +87947,27790,cinematography,1352719567 +87947,27790,Danny Boyle,1352719430 +87947,27790,exciting,1352719443 +87947,27790,fun,1352719435 +87947,27790,quirky,1352719441 +87947,27790,stylized,1352719562 +87947,27790,unique,1352719432 +87947,27831,Exquisite plotting,1309690315 +87947,27831,good plotting,1309690318 +87947,27831,Matthew Vaughn,1309690309 +87947,27831,slow pace,1309690329 +87947,27831,surprise ending,1309690321 +87947,30812,biopic,1378859116 +87947,30812,cinematography,1378859104 +87947,30812,eccentricity,1378859107 +87947,30812,great performance,1378859111 +87947,30812,intense,1378859113 +87947,30812,Martin Scorsese,1378859121 +87947,30812,obsession,1378859100 +87947,30812,tension,1378859123 +87947,31364,atmospheric,1393563038 +87947,31364,disturbing,1393563042 +87947,31364,haunting,1393563035 +87947,31364,sad,1393563036 +87947,31364,understated,1393563048 +87947,31364,wry,1393563049 +87947,32587,brutality,1368484921 +87947,32587,cruel,1244288813 +87947,32587,misogynistic,1244288813 +87947,32587,stylish,1244288813 +87947,32587,unlikeable characters,1244288813 +87947,32587,violent,1244288813 +87947,32587,visually stunning,1368485073 +87947,32898,classic,1331283647 +87947,32898,early film,1331283649 +87947,32898,interesting,1331283638 +87947,32898,sci-fi,1331283653 +87947,32898,surreal,1331283655 +87947,32898,visually appealing,1331283641 +87947,33162,action,1384496712 +87947,33162,balanced portrayal,1384496687 +87947,33162,cinematography,1384496694 +87947,33162,good cast,1384496698 +87947,33162,Orlando Bloom,1384496702 +87947,33162,politics,1384496716 +87947,33162,Ridley Scott,1384496706 +87947,34153,all females are support characters,1345725898 +87947,34153,disability,1345725869 +87947,34153,documentary,1345725882 +87947,34153,light,1345725886 +87947,34153,quirky subculture,1345725872 +87947,34153,sexuality,1345725875 +87947,34153,subculuture,1345725933 +87947,34153,thought-provoking,1345725892 +87947,34153,wheelchair,1345725878 +87947,34323,homage,1386463452 +87947,34323,smart direction,1386463446 +87947,34323,subversive,1386463449 +87947,34523,angst,1312980831 +87947,34523,boring,1312980820 +87947,34523,dark comedy,1312980823 +87947,34523,dolphins,1312980845 +87947,34523,high school,1312980829 +87947,34523,title has no relevance,1312980839 +87947,35957,Cillian Murphy,1309259365 +87947,35957,claustrophobic,1309259372 +87947,35957,weak ending,1309259375 +87947,35957,Wes Craven,1309259360 +87947,36533,clever,1331713854 +87947,36533,cult film,1331713852 +87947,36533,fun,1331713847 +87947,36533,indie horror,1331713839 +87947,36533,psychological,1331713842 +87947,36533,twist,1331713845 +87947,37729,gothic,1320979968 +87947,37733,brutality,1368484920 +87947,38886,childhood,1310129205 +87947,38886,dark comedy,1310129218 +87947,38886,divorce,1310129192 +87947,38886,family,1310129196 +87947,38886,high squirm factor,1310129188 +87947,38886,honest,1310129291 +87947,38886,new york,1310129226 +87947,38886,parenting,1310129215 +87947,38886,relationships,1310129222 +87947,38886,short,1310129228 +87947,38886,smart comedy,1310129199 +87947,39427,bad pace,1310012890 +87947,39427,crazy,1310012894 +87947,39427,incomprehensible,1310012900 +87947,39427,plot only makes sense at end,1310012906 +87947,39427,ryan gosling,1310012880 +87947,39427,surrealism,1310012887 +87947,39427,twist,1310012876 +87947,40583,confusing,1322831842 +87947,40583,slow,1322831850 +87947,40583,unbearable,1322831847 +87947,40583,what is going on,1322831853 +87947,42632,beautiful cinematography,1351291495 +87947,42632,Chan-wook Park,1351291502 +87947,42632,crime,1351291517 +87947,42632,quirky,1351291505 +87947,42632,revenge trilogy,1351291486 +87947,42632,stylized,1351291479 +87947,42632,surreal,1351291520 +87947,42632,tense,1351291510 +87947,42632,violence,1351291513 +87947,44191,alan moore,1244332832 +87947,44191,dystopia,1244332832 +87947,44191,flawless hero,1244332832 +87947,44191,grahic novel,1244332832 +87947,44191,natalie portman,1244332832 +87947,44191,politics,1244332832 +87947,44397,torture porn,1310013323 +87947,44421,documentary,1379120766 +87947,44421,history of cinema,1379120770 +87947,44421,interesting,1379120778 +87947,44421,Martin Scorsese,1379120774 +87947,44421,personal,1379120763 +87947,44761,boring,1312980881 +87947,44761,dull characters,1312980888 +87947,44761,slow,1312980883 +87947,44828,after credits ending,1316082368 +87947,44828,body horror,1316082262 +87947,44828,campy,1316082410 +87947,44828,comedy horror,1316082268 +87947,44828,fun,1316082285 +87947,44828,funny,1316082318 +87947,44828,Nathan Fillion,1316082275 +87947,44828,schlock horror,1316082289 +87947,44828,sexualised violence,1316082310 +87947,44828,small town,1316082302 +87947,44828,unique,1316082358 +87947,44828,violence,1316082375 +87947,44828,weird,1316082320 +87947,44828,zombies,1316082258 +87947,44974,claustrophobic,1308917837 +87947,44974,Ellen Page,1308917832 +87947,44974,lurid,1308917884 +87947,44974,tension,1308917825 +87947,44974,torture,1308917853 +87947,45003,flat,1372733481 +87947,45003,not scary,1372733496 +87947,45003,rape,1372733487 +87947,45303,art film,1396425566 +87947,45303,believable,1396425545 +87947,45303,creative,1396425548 +87947,45303,direction,1396425542 +87947,45303,drama,1396425562 +87947,45303,globalisation,1396425551 +87947,45303,long,1396425536 +87947,45303,meandering,1396425539 +87947,45303,slow,1396425533 +87947,45303,thematic concerns,1396425555 +87947,45668,Inconsistencies,1359128094 +87947,45668,Keanu Reeves,1359128114 +87947,45668,Plot holes,1359128086 +87947,45668,Premise,1359128106 +87947,46335,surprisingly good,1386043564 +87947,46335,well filmed,1386043568 +87947,46974,Oliver Stone,1308826077 +87947,47200,badly shot,1312981531 +87947,47200,chase,1312981541 +87947,47200,good concept,1312981523 +87947,47200,own universe,1312981545 +87947,47200,plotless,1312981533 +87947,47200,sexism and stupidity,1312981565 +87947,47200,stupid,1312981519 +87947,47200,stylized,1312981579 +87947,47200,ugly,1312981526 +87947,47200,unlikeable characters,1312981539 +87947,47423,boring,1305423336 +87947,47423,clever lines,1305423361 +87947,47423,overrated,1305423340 +87947,47423,unrelatable,1305423347 +87947,47423,unresolved,1305423344 +87947,48043,artistic,1374578016 +87947,48043,beautiful,1374578008 +87947,48043,emotional,1374578003 +87947,48043,poignant,1374578005 +87947,48043,visually appealing,1374578012 +87947,48385,borat,1244332682 +87947,48385,funny,1244332681 +87947,48385,naked men,1244332681 +87947,48385,sascha baron cohen,1244332682 +87947,48394,fairy tale,1244287923 +87947,48394,foreign language,1244287923 +87947,48394,monsters,1244287923 +87947,48394,spain,1244287923 +87947,48394,stylish,1244287923 +87947,48696,characters,1313053715 +87947,48696,cynical,1313053805 +87947,48696,dark,1313053711 +87947,48696,deadpan,1313053803 +87947,48696,disturbing,1313053711 +87947,48696,drama,1313053732 +87947,48696,ensemble plot,1313053815 +87947,48696,family,1313053734 +87947,48696,Jackie Earle Haley,1313053711 +87947,48696,multiple layers,1313053808 +87947,48696,psychology,1313053730 +87947,48696,realistic,1313053741 +87947,48774,clive owen,1244287655 +87947,48774,digital,1244287655 +87947,48774,thriller,1244287655 +87947,48780,christian bale,1244287882 +87947,48780,christopher nolan,1244287882 +87947,48780,confusing,1244287882 +87947,48780,hugh jackman,1244287882 +87947,48780,magicians,1244287882 +87947,48780,twist ending,1244287882 +87947,48780,weak characters,1244287882 +87947,49932,boring,1391682040 +87947,49932,cinematography,1391682055 +87947,49932,David Lynch,1391682051 +87947,49932,disturbing,1391682051 +87947,49932,Nudity (Topless),1391682051 +87947,49932,slow,1391682038 +87947,49932,surreal,1391682057 +87947,49932,unique,1391682060 +87947,50641,cult,1366988110 +87947,50641,unique,1366988124 +87947,51255,black comedy,1308824172 +87947,51255,boring,1308824166 +87947,51255,buddy movie,1308824175 +87947,51540,investigative journalism,1311065355 +87947,51540,long,1311065348 +87947,51540,slow,1311065350 +87947,51884,based on a book,1317097424 +87947,51884,bittersweet,1317097376 +87947,51884,cinematography,1317097383 +87947,51884,coming of age,1317097370 +87947,51884,family,1317097373 +87947,51884,good characters,1317097413 +87947,51884,great cinematography,1317097389 +87947,51884,heritage,1317097393 +87947,51884,Irrfan Khan,1317097401 +87947,51884,Kal Penn,1317097405 +87947,51884,literature,1317097409 +87947,52952,atmospheric,1312705456 +87947,52952,bittersweet,1312705423 +87947,52952,coming of age,1312705454 +87947,52952,friendship,1312705427 +87947,52952,INNOCENCE LOST,1312705432 +87947,52952,realistic,1312705465 +87947,52952,Shane Meadows,1312705435 +87947,52952,suburbia,1312705462 +87947,52952,tense,1312705425 +87947,53127,creepy,1372590269 +87947,53127,suspenseful,1372590281 +87947,53953,alternate ending,1328418508 +87947,53953,boring,1328418500 +87947,53953,unexplained,1328418503 +87947,53953,wasted potential,1328418523 +87947,53953,weak,1328418518 +87947,53996,action,1310105293 +87947,53996,exciting,1310105291 +87947,53996,not enough robots,1310105302 +87947,53996,teen,1310105298 +87947,54259,adventure,1310106037 +87947,54259,atmospheric,1310106020 +87947,54259,dark humour,1310106008 +87947,54259,good plot,1310106027 +87947,54259,Matthew Vaughn,1310106002 +87947,54259,violent,1310106016 +87947,54259,visually appealing,1310105997 +87947,54259,whimsical,1310106012 +87947,54259,wonderful,1310105991 +87947,54272,animation,1272273350 +87947,54272,better than any new episodes,1272273350 +87947,54910,dark humor,1310013132 +87947,54910,Nudity (Rear - Brief),1310013122 +87947,54910,Nudity (Topless - Brief),1310013114 +87947,54910,scary,1310013129 +87947,54910,spoof,1310013127 +87947,54910,too long,1310013141 +87947,55118,ambiguous,1315099195 +87947,55118,atmospheric,1315099149 +87947,55118,confusing,1315099187 +87947,55118,David Cronenberg,1315099183 +87947,55118,disturbing,1315099178 +87947,55118,no closure,1315099190 +87947,55118,Nudity (Topless),1315099160 +87947,55118,tense,1315099151 +87947,55118,unexpected,1315099174 +87947,55118,Viggo Mortensen,1315099164 +87947,55276,confusing,1308826287 +87947,55280,comedy-drama,1335962554 +87947,55280,cute,1335962539 +87947,55280,delusion,1335962541 +87947,55280,emotional,1335962544 +87947,55280,quirky,1335962551 +87947,55280,slow,1335962536 +87947,55280,sweet,1335962546 +87947,55280,weird,1335962548 +87947,55290,Casey Affleck,1308823924 +87947,55290,morality,1308823934 +87947,55290,Morgan Freeman,1308823913 +87947,55290,twist,1308823939 +87947,55765,boring,1309607788 +87947,55765,Denzel Washington,1309607800 +87947,55765,long,1309607794 +87947,55820,coen brothers,1244287967 +87947,55820,Oscar Best Picture,1244287967 +87947,55820,slow pacing,1244287967 +87947,55820,tension,1244287967 +87947,55820,thriller,1244287967 +87947,56145,atmospheric,1321061875 +87947,56145,campy,1321061883 +87947,56145,creepy,1321061892 +87947,56145,twist ending,1321061868 +87947,56158,Black film,1360650702 +87947,56158,Good cast,1360650721 +87947,56158,Sloppy,1360650714 +87947,56158,Unfunny,1360650710 +87947,56165,creepy,1396614489 +87947,56165,psychology,1396614527 +87947,56165,violence,1396614523 +87947,56165,wacky,1396614530 +87947,56174,28 days later rip-off,1272273263 +87947,56389,beautiful,1398046188 +87947,56389,bittersweet,1398046197 +87947,56389,emotional,1398046193 +87947,56389,wistful,1398046191 +87947,56805,John C Reilly,1312723560 +87947,56805,jokes,1312723562 +87947,56805,overlong,1312723565 +87947,56805,silly,1312723569 +87947,57368,"""found footage""",1310013023 +87947,57368,mockumentary,1310013026 +87947,57368,shallow,1310013018 +87947,57640,adventure,1309846062 +87947,57640,beautiful effects,1309846042 +87947,57640,better than the first,1309846013 +87947,57640,fantasy,1309846044 +87947,57640,magic,1309846060 +87947,57640,Ron Perlman,1309846034 +87947,57640,scary,1309846049 +87947,57669,black comedy,1308824045 +87947,57669,Colin Farrell,1308824036 +87947,57669,stylized,1308824041 +87947,57910,bland,1335266756 +87947,57910,bleak,1335266753 +87947,57910,cult film,1335266773 +87947,57910,disturbing,1335266778 +87947,57910,funny,1335266768 +87947,58007,art film,1335855306 +87947,58007,bad editing,1335855318 +87947,58007,bad pacing,1335855320 +87947,58007,confusing,1335855293 +87947,58007,cool idea,1335855553 +87947,58007,creepy,1335855284 +87947,58007,horror,1335855302 +87947,58007,performances,1335855544 +87947,58007,slow,1335855291 +87947,58007,tense,1335855340 +87947,58007,ugly,1335855295 +87947,58007,uncomfortable,1335855550 +87947,58007,unsettling,1335855287 +87947,58007,weird,1335855539 +87947,58332,bad acting,1310013231 +87947,58332,hilarious,1310013229 +87947,58332,idiotic characters,1310013246 +87947,58332,so bad its good,1310013227 +87947,58332,social commentary,1310013241 +87947,58332,stupid,1310013237 +87947,58332,unlikely premise,1310013255 +87947,58816,bad acting,1351372302 +87947,58816,bad script,1351372297 +87947,58816,gymnastics,1351372291 +87947,58816,tv-quality,1351372307 +87947,59727,creepy,1316653480 +87947,59727,disturbing,1316653491 +87947,59727,little dialogue,1316653482 +87947,59727,no jump scares,1316653477 +87947,59727,psychological horror,1316653488 +87947,59727,tense,1316653493 +87947,59727,terrifying,1316653472 +87947,59810,courtroom drama,1333955817 +87947,59810,discrimination,1333955795 +87947,59810,enlightening,1333955827 +87947,59810,funny,1333955812 +87947,59810,interesting,1333955783 +87947,59810,justice,1333955792 +87947,59810,must-see,1333955780 +87947,59810,tense,1333955824 +87947,59900,assembly line film,1332405355 +87947,59900,crude,1332405328 +87947,59900,heartless,1332405343 +87947,59900,stupid,1332405331 +87947,59900,tasteless,1332405325 +87947,59900,ugly,1332405335 +87947,59900,unfunny,1332405338 +87947,60069,all ages,1244287357 +87947,60069,animated,1244287357 +87947,60069,beautiful,1244287357 +87947,60069,family,1244287357 +87947,60069,funny,1244287357 +87947,60069,pixar,1244287357 +87947,60069,romance,1244287357 +87947,60069,stunning,1244287357 +87947,60072,action,1244287716 +87947,60072,based on a comic,1244287716 +87947,60072,graphic novel,1244287716 +87947,60072,stylish,1244287716 +87947,60647,great cast,1311978414 +87947,60647,tense,1311978404 +87947,60647,thriller,1311978420 +87947,60647,twists & turns,1311978411 +87947,60760,disappointing,1353973241 +87947,60760,mediocre,1353973255 +87947,60941,bland,1382927529 +87947,60941,horror,1382927552 +87947,60941,interesting premise,1382927542 +87947,60941,meta-commentary,1382927549 +87947,60941,predictable,1382927537 +87947,60941,wasted potential,1382927534 +87947,61024,unfunny,1309690427 +87947,61705,cheesiness,1311978288 +87947,61705,drama,1311978367 +87947,61705,enjoyable,1311978250 +87947,61705,intense,1311978274 +87947,61705,racial tension,1311978255 +87947,61705,Samuel L. Jackson,1311978266 +87947,61705,suburbia,1311978271 +87947,61705,tense,1311978241 +87947,61705,twists & turns,1311978364 +87947,61705,well-acted,1311978245 +87947,62115,characters,1384260319 +87947,62115,short film,1384260316 +87947,62115,surprising,1384260313 +87947,62115,violent,1384260309 +87947,62344,naturalism,1362735107 +87947,62344,relatable,1362735117 +87947,62511,Charlie Kaufman,1313204982 +87947,62511,confusing,1313204991 +87947,62511,creative process,1313205027 +87947,62511,end is dull,1313205009 +87947,62511,Hollywood,1313205033 +87947,62511,long,1313204985 +87947,62511,pointless,1313204987 +87947,62511,quirky,1313205018 +87947,62511,self indulgent,1313204996 +87947,62511,starts promising,1313204977 +87947,62511,surreal,1313205016 +87947,63082,danny boyle,1244287439 +87947,63082,india,1244287439 +87947,63082,romance,1328164149 +87947,63082,social commentary,1328164146 +87947,63082,soundtrack,1244287439 +87947,63082,visuals,1244287439 +87947,64614,awkward pace,1308918355 +87947,64614,Clint Eastwood,1308918346 +87947,64614,heartwarming,1308918351 +87947,64620,Sam Rockwell,1306670313 +87947,64839,loneliness,1368485031 +87947,64957,boring,1312001139 +87947,64957,David Fincher,1312001155 +87947,64957,dull pacing,1312001116 +87947,64957,no chemistry,1312001132 +87947,64957,oscar bait,1312001123 +87947,64957,overlong,1312001146 +87947,64957,predictable,1312001120 +87947,66509,comedy,1312723754 +87947,66509,dark comedy,1312723775 +87947,66509,Eric Bana,1312723765 +87947,66509,friendnship,1312723772 +87947,66509,Hollywood,1312723757 +87947,66509,honest,1312723750 +87947,66509,horrible characters,1312723762 +87947,66509,infidelity,1312723752 +87947,66509,Judd Apatow,1312723744 +87947,66509,Leslie Mann,1312723748 +87947,66509,long,1312723731 +87947,66509,offensive humour,1312723769 +87947,66509,self indulgent,1312723733 +87947,66509,too many plot threads,1312723739 +87947,66509,unfocused,1312723787 +87947,66783,lame kills,1310012611 +87947,66783,mildly racist,1310012580 +87947,66783,not scary,1310012570 +87947,66783,not suspenseful,1310012606 +87947,66783,Nudity (Topless),1310012559 +87947,66783,predictable,1310012593 +87947,66783,remake,1310012621 +87947,66783,sexist,1310012584 +87947,66783,unlikeable characters,1310012575 +87947,66783,weak plot,1310012596 +87947,67087,comedy,1335669066 +87947,67087,feel-good,1335669063 +87947,67197,apocalyptic,1310105521 +87947,67197,catastrophe,1310105504 +87947,67197,creepy,1310105490 +87947,67197,disaster scenes,1310105495 +87947,67197,eerie,1310105500 +87947,67197,intense,1310105508 +87947,67197,religious themes,1310105487 +87947,67197,Rose Byrne,1310105512 +87947,68157,don't know what to expect,1272273293 +87947,68157,violence,1272273293 +87947,68319,bad plot,1309846092 +87947,68319,boring,1321505458 +87947,68319,cgi,1309846094 +87947,68319,joyless,1309846125 +87947,68319,Liev Shreiber,1309846120 +87947,68319,one-dimensional characters,1309846146 +87947,68319,repetitive,1309846133 +87947,68319,revenge,1309846188 +87947,68519,charmless,1312981171 +87947,68519,crappy sequel,1312981152 +87947,68519,dull characters,1312981146 +87947,68519,franchise,1312981165 +87947,68519,incomprehensible,1312981161 +87947,68519,long,1312981163 +87947,68519,suburbia,1312981157 +87947,68519,surreal,1312981197 +87947,68843,bad acting,1317011867 +87947,68843,boring,1317011842 +87947,68843,comedy,1317011863 +87947,68843,no nudity,1317011851 +87947,68843,silly,1317011840 +87947,68843,unlikeable characters,1317011847 +87947,68952,Alison Lohman,1310013362 +87947,69481,Anthony Mackie,1353998788 +87947,69481,bomb defusal,1353998796 +87947,69481,colonialism,1353998763 +87947,69481,death,1353998801 +87947,69481,Jeremy Renner,1353998791 +87947,69481,Kathryn Bigelow,1353998779 +87947,69481,military,1353998773 +87947,69481,performances,1353998782 +87947,69481,tense,1353998759 +87947,69481,thriller,1353998747 +87947,69481,unconventional addiction,1353998756 +87947,69526,bad plot,1310105411 +87947,69526,confusing,1310105431 +87947,69526,long,1310105426 +87947,69526,Megan Fox,1310105436 +87947,69526,plot holes,1310105423 +87947,69526,racist,1310105418 +87947,69526,ridiculus,1310105445 +87947,69526,ugly,1310105416 +87947,70286,directorial debut,1376195406 +87947,70286,interesting,1376195397 +87947,70286,justice,1376195392 +87947,70286,satire,1376195400 +87947,70286,social commentary,1376195390 +87947,70286,unique,1376195399 +87947,70728,character drama,1363605814 +87947,70994,visual,1385721675 +87947,70994,weak script,1385721606 +87947,71057,creepy,1310105395 +87947,71057,visaully appealing,1310105387 +87947,71057,visually appealing,1310105391 +87947,71205,awkward pacing,1312186716 +87947,71205,Bechdel Test:Pass,1312186664 +87947,71205,bitchy,1312186723 +87947,71205,comedy,1312186696 +87947,71205,cult film,1312186710 +87947,71205,dark comedy,1312186700 +87947,71205,demons,1312186694 +87947,71205,evil rock band,1312186728 +87947,71205,evil spirits,1312186703 +87947,71205,funny,1312186667 +87947,71205,high school,1312186691 +87947,71205,Kyle Gallner,1312186683 +87947,71205,lesbian subtext,1312186659 +87947,71205,Megan Fox,1312186662 +87947,71205,not scary,1312186677 +87947,71211,awkward,1377938634 +87947,71211,character study,1377938596 +87947,71211,idiosyncratic,1377938624 +87947,71211,slow pace,1377938599 +87947,71211,stylish,1377938621 +87947,71264,amazing visuals,1316084157 +87947,71264,animation,1316084145 +87947,71264,beautiful,1316084151 +87947,71264,clever characters,1316084233 +87947,71264,clever script,1316084148 +87947,71264,family film,1316084174 +87947,71264,heartwarming,1316084154 +87947,71264,quirky,1316084202 +87947,71264,visually appealing,1316084193 +87947,71264,witty,1316084217 +87947,71379,atmospheric,1316653305 +87947,71379,bad acting,1316653300 +87947,71379,ending,1316653302 +87947,71379,no payoff,1316653297 +87947,71379,not scary,1316653293 +87947,71518,Drew Barrymore,1308917736 +87947,71518,Ellen Page,1308917730 +87947,71518,lame romance,1308917744 +87947,71518,landon pigg,1308917750 +87947,71518,Marcia Gay Harden,1308917760 +87947,71518,predictable,1308917716 +87947,71518,Zoe Bell,1308917754 +87947,71530,alternate reality,1310105678 +87947,71530,androids,1310105681 +87947,71530,Bruce Willis,1310105690 +87947,71530,cool concept,1310105673 +87947,71530,identity,1310105685 +87947,71530,stupid twist,1310105698 +87947,71530,Ving Rhames,1310105694 +87947,71838,enjoyable,1309259275 +87947,71838,fun plot,1309259270 +87947,71838,Gerard Butler,1309259233 +87947,71838,graphic,1309259246 +87947,71838,implauisble,1309259259 +87947,71838,Jamie Foxx,1309259237 +87947,71838,lame twist,1309259267 +87947,71838,stupid,1309259254 +87947,71838,unrealistic,1309259262 +87947,72129,lesser sequel,1323678980 +87947,72129,lost sight of original intention,1323678988 +87947,72129,sadistic,1323678974 +87947,72171,Clever,1354972559 +87947,72171,fun,1354972539 +87947,72171,Martial arts,1354972551 +87947,72171,theme music,1354972600 +87947,72378,bad acting,1310105358 +87947,72378,bad science,1310105354 +87947,72378,Chiwetel Ejiofor,1310105346 +87947,72378,ugly,1310105341 +87947,72378,Woody Harrelson,1310105351 +87947,72703,a little corny at times,1309840922 +87947,72703,bittersweet,1309840942 +87947,72703,Christian Mckay,1309840913 +87947,72703,coming of age,1309840931 +87947,72703,predictable,1309840965 +87947,72703,Richard Linklater,1309840948 +87947,72703,theatre story,1309840937 +87947,72703,young kid,1309840926 +87947,72731,based on a book,1310105801 +87947,72731,family drama,1310105795 +87947,72731,magic,1310105790 +87947,72731,Mark Wahlberg,1310105777 +87947,72731,pointless,1310105763 +87947,72731,schmaltz,1310105767 +87947,72731,slow paced,1310105760 +87947,72731,Staley Tucci,1310105772 +87947,72731,tense,1310105805 +87947,72998,3D version,1272272657 +87947,72998,derivative plot,1272272657 +87947,72998,engaging,1272272657 +87947,72998,no depth,1272272657 +87947,72998,romance,1272272657 +87947,72998,viewer exploitation,1272272657 +87947,73017,guy ritchie,1272273012 +87947,73168,action,1310104909 +87947,73168,brutality,1310104841 +87947,73168,cruelty,1310104836 +87947,73168,dark,1310104858 +87947,73168,independent film,1310104876 +87947,73168,intense,1310104887 +87947,73168,post-apocalyptic,1310104853 +87947,73168,shocking,1310104891 +87947,73168,survival,1310104867 +87947,73168,suspenseful,1310104881 +87947,73268,australian,1310105097 +87947,73268,city,1310105145 +87947,73268,dystopia,1310105108 +87947,73268,Ethan Hawke,1310105165 +87947,73268,gore,1310105126 +87947,73268,gunfights,1310105180 +87947,73268,plague,1310105150 +87947,73268,Sam Neill,1310105102 +87947,73268,urban,1310105142 +87947,73268,vampires,1310105087 +87947,73268,Willem Dafoe,1310105092 +87947,73321,bible,1310105588 +87947,73321,Christianity,1310105585 +87947,73321,inhumane,1310105597 +87947,73321,religious,1310105578 +87947,73321,scenery,1310105592 +87947,73321,ugly,1310105574 +87947,73929,cliche,1351463571 +87947,73929,pacing,1351463573 +87947,73929,stupid,1351463576 +87947,74416,absorbing,1384921569 +87947,74416,loneliness,1384921582 +87947,74416,powerful,1384921578 +87947,74416,realistic,1384921567 +87947,74458,cinematography,1378733443 +87947,74458,predictable,1378733428 +87947,74458,stylized,1378733435 +87947,74750,claustrophobic,1328418295 +87947,74750,gore,1328418414 +87947,74750,priest,1328418315 +87947,74750,spanish,1328418328 +87947,74750,twist ending,1328418307 +87947,74750,unsettling,1328418418 +87947,76251,crazy,1321157577 +87947,76251,dark comedy,1321157607 +87947,76251,funny,1321157566 +87947,76251,humorous,1321157568 +87947,76251,Matthew Vaughn,1321157582 +87947,76251,satire,1321157616 +87947,76251,stylized,1321157576 +87947,76251,visuals,1321157586 +87947,76293,absurd,1354021582 +87947,76293,action,1312723957 +87947,76293,better than expected,1354021588 +87947,76293,comedy,1312723935 +87947,76293,cute,1312723959 +87947,76293,funny,1312723929 +87947,76293,funny moments,1312723933 +87947,76293,great comedians,1312723950 +87947,76293,great screenplay,1312723991 +87947,76293,group movie,1312723967 +87947,76293,Mark Wahlberg,1312723980 +87947,76293,screwball comedy,1328094027 +87947,76293,sexy girls,1312723943 +87947,76293,silly,1312723971 +87947,76293,Steve Carrell,1312723938 +87947,76293,tense,1312723995 +87947,76293,Tina Fey,1312723983 +87947,76293,witty,1312723927 +87947,77455,art,1341402878 +87947,77455,consumerism,1341402873 +87947,77455,eccentric,1341402882 +87947,77455,ending,1341402880 +87947,77455,funny,1341402887 +87947,77455,graffiti,1341402876 +87947,77455,intense,1341402899 +87947,77455,street art,1341402891 +87947,77455,visually appealing,1341402894 +87947,77561,cash-in,1308918245 +87947,77561,lacks tension,1308918241 +87947,77561,lame sequel,1308918192 +87947,77561,overpowered hero,1308918214 +87947,77561,Sam Rockwell,1308918220 +87947,77561,wasted villain,1308918237 +87947,77667,comedy,1321766819 +87947,77667,fun with friends,1321766832 +87947,77667,guy movie,1321766826 +87947,77667,hilarious,1321766804 +87947,77667,slapstick,1321766907 +87947,77667,stupid,1321766848 +87947,77667,weird humour,1321766843 +87947,77667,writing,1321766810 +87947,77798,cgi,1308826454 +87947,77798,Jackie Earle Haley,1308826465 +87947,77798,Kyle Gallner,1308826480 +87947,77798,lame ending,1308826477 +87947,77798,plot holes,1308826471 +87947,77798,unimaginative,1308826458 +87947,78039,boring,1309773916 +87947,78039,ryan Gosling,1309773927 +87947,78039,slow moving plot,1309773924 +87947,78039,unlikeable characters,1309773920 +87947,78088,boring,1322831723 +87947,78088,predictable,1322831731 +87947,78088,wasted potential,1322831748 +87947,78209,comedy,1312723450 +87947,78209,diddy,1312723477 +87947,78209,great lines,1312723453 +87947,78209,Jonah Hill,1312723474 +87947,78209,lame third act,1312723458 +87947,78209,music business,1312723486 +87947,78209,plot holes,1312723461 +87947,78209,Rose Byrne,1312723470 +87947,78209,weak scenes,1312723464 +87947,78218,acting,1322831546 +87947,78218,don't watch extended version,1322831543 +87947,78218,good performances,1322831550 +87947,78218,relevant,1322831644 +87947,78218,scary,1322831629 +87947,78218,surprising,1322831621 +87947,78218,tense,1322831627 +87947,78218,violent,1322831618 +87947,78266,Adrien Brody,1310012982 +87947,78266,genetics,1310012984 +87947,78266,monster,1310012990 +87947,78266,Sarah Polley,1310012977 +87947,78266,unjustified twists,1310013000 +87947,78266,weak ending,1310012987 +87947,79091,cute girls,1310106288 +87947,79091,good script,1310106280 +87947,79091,heartwarming,1310106284 +87947,79091,hilarious,1310106276 +87947,79091,mad scientist,1310106292 +87947,79091,quirky,1316084197 +87947,79091,visually appealing,1310106296 +87947,79132,cinematography,1343081908 +87947,79132,ensemble cast,1343081902 +87947,79132,layered,1343081920 +87947,79132,memory,1343081904 +87947,79132,sci-fi,1343081924 +87947,79132,suspense,1343081915 +87947,79132,visually appealing,1343081912 +87947,79592,Eva Mendes,1312723895 +87947,79592,funny,1312723878 +87947,79592,good screenplay,1312723891 +87947,79592,lighthearted,1312723883 +87947,79592,Mark Wahlberg,1312723867 +87947,79592,parody,1312723874 +87947,79592,Samuel L Jackson,1312723871 +87947,79592,spoof,1312723875 +87947,79592,weak plot,1312723886 +87947,79592,Will Ferrel,1312723864 +87947,79702,Edgar Wright,1309846320 +87947,79702,stylized,1309846317 +87947,79702,whimsical,1309846315 +87947,79720,australian,1311065000 +87947,79720,cinematography,1311065046 +87947,79720,disturbing,1311064961 +87947,79720,engaging,1311064990 +87947,79720,good pacing,1311064980 +87947,79720,great performances,1311065073 +87947,79720,linear,1311065040 +87947,79720,Melbourne,1311065099 +87947,79720,police drama,1311065086 +87947,79720,taut,1311064987 +87947,79720,teenage,1311065890 +87947,79720,tense,1311064993 +87947,79720,violence,1311064976 +87947,79720,visually appealing,1311065249 +87947,79720,well edited,1311064985 +87947,79879,Nudity (Full Frontal),1321765736 +87947,79879,tits,1321765729 +87947,80026,bad acting,1349585737 +87947,80026,bad adaptation,1349585734 +87947,80026,cheesy,1349585727 +87947,80026,dull,1349585739 +87947,80026,horrible,1349585743 +87947,80219,action,1316351227 +87947,80219,gore,1316351230 +87947,80219,Nudity (Full Frontal - Notable),1316351240 +87947,80219,satire,1316351248 +87947,80219,stylized,1316351257 +87947,80241,boring,1312723649 +87947,80241,boxer rebellion,1312723669 +87947,80241,comedy,1312723701 +87947,80241,funny moments,1312723657 +87947,80241,hipsters,1312723662 +87947,80241,Justin Long,1312723692 +87947,80241,relationships,1312723695 +87947,80241,soundtrack,1312723684 +87947,80489,boring,1309689699 +87947,80489,long,1309689701 +87947,80489,lost my interest,1309689705 +87947,80549,comedy,1328093110 +87947,80549,funny,1328093099 +87947,80549,gay character,1328093107 +87947,80549,Penn Badgley,1328093116 +87947,80549,unrealistic,1328093102 +87947,80549,witty,1328093097 +87947,80551,about rich people without real problems,1335492171 +87947,80551,"Fancy resorts disguised as ""exotic"" locations",1335492165 +87947,80551,nothing happens,1335492253 +87947,80551,overlong,1335492250 +87947,80551,predictable,1335492183 +87947,80551,relationships,1335492177 +87947,80551,scenery,1335492156 +87947,80551,whiney protragonist,1335492153 +87947,80693,bittersweet,1313757174 +87947,80693,coming of age,1313757161 +87947,80693,dramedy,1313757183 +87947,80693,generic,1313757164 +87947,80693,manic pixie dream girl,1313757157 +87947,80693,pleasant,1313757177 +87947,80693,teenage,1313757186 +87947,80862,controversial,1314534177 +87947,80862,documentary,1314534147 +87947,80862,drama,1314534166 +87947,80862,friendship,1314534163 +87947,80862,internet,1314534174 +87947,80862,investigative,1314534172 +87947,80862,morality,1314534155 +87947,80862,reality,1314534184 +87947,80862,scary,1314534153 +87947,80862,thought-provoking,1314534160 +87947,80862,thriller,1314534150 +87947,80862,true story,1314534205 +87947,81270,hot girls,1305335597 +87947,81270,original,1305335588 +87947,81270,plot holes,1305335582 +87947,81417,not scary,1316653334 +87947,81417,predictable,1316653328 +87947,81417,tedious,1316653326 +87947,81562,Danny Boyle,1306670183 +87947,81562,intense,1306670158 +87947,81562,James Franco,1306670179 +87947,81562,moving,1306670161 +87947,81562,psychology,1306670175 +87947,81562,soundtrack,1306670165 +87947,81591,Barbara Hershey,1306663299 +87947,81591,campy,1306663306 +87947,81591,creepy,1306663265 +87947,81591,intensity,1306663279 +87947,81591,Mila Kunis,1306663304 +87947,81591,Natalie Portman,1306663261 +87947,81591,sex,1306663310 +87947,81591,thriller,1306663273 +87947,81591,Vincent Cassel,1306663292 +87947,81591,Winona Ryder,1306663287 +87947,81782,cinematography,1317171913 +87947,81782,happy ending,1317171930 +87947,81782,modern,1317171933 +87947,81782,Rosario Dawson,1317171952 +87947,81782,survival,1317171988 +87947,81782,well-crafted,1317171920 +87947,82041,australian,1323674834 +87947,82041,b-grade,1323674809 +87947,82041,cinematography,1323674859 +87947,82041,clever,1323674856 +87947,82041,confronting,1323674832 +87947,82041,discomforting,1323674829 +87947,82041,gore,1323674815 +87947,82041,horror,1323674812 +87947,82041,small town,1323674838 +87947,82041,unexpected,1323674817 +87947,82378,awkward,1317191106 +87947,82378,corruption,1317191085 +87947,82378,creepy,1317191020 +87947,82378,docudrama,1317191130 +87947,82378,drama,1317191173 +87947,82378,Kirsten Dunst,1317191054 +87947,82378,lies,1317191083 +87947,82378,mystery,1317191056 +87947,82378,Nudity (Topless),1317191026 +87947,82378,psychology,1317191034 +87947,82378,realism,1317191172 +87947,82378,romance,1317191150 +87947,82378,slow,1317191155 +87947,82378,tense,1317191030 +87947,82378,true story,1317191039 +87947,82378,uncomfortable,1317191111 +87947,82447,action,1309741402 +87947,82447,australian,1309741388 +87947,82447,caitlin stasey,1309741394 +87947,82447,countryside,1309741420 +87947,82447,raw,1309741404 +87947,82447,romance,1309741406 +87947,82447,teenage,1309741411 +87947,84187,fanservice,1386162760 +87947,84187,imagery,1386162765 +87947,84187,violent,1386162762 +87947,84187,visually stunning,1386162768 +87947,84989,documentary,1382681482 +87947,84989,funny,1382681485 +87947,84989,personal,1382681490 +87947,84989,sweet,1382681486 +87947,85414,human story,1305422527 +87947,85414,intelligent,1305422524 +87947,85414,mindfuck,1305422518 +87947,85414,science fiction,1305422532 +87947,85788,amazing visuals,1316867582 +87947,85788,atmospheric,1316867746 +87947,85788,clever twists,1316867665 +87947,85788,gore-free,1316867693 +87947,85788,haunted house,1316867605 +87947,85788,horror,1316867601 +87947,85788,James Wan,1316867589 +87947,85788,Leigh Whannell,1316867593 +87947,85788,no CGI,1316867849 +87947,85788,paced,1316867585 +87947,85788,scary,1316867565 +87947,85788,special effects,1316867844 +87947,85788,supernatural,1316867612 +87947,85788,suspense,1316867722 +87947,85788,tense,1316867567 +87947,85788,weird,1316867765 +87947,85788,well-constructed,1316867572 +87947,86295,scary,1305335429 +87947,86295,slasher,1305335435 +87947,86295,witty,1305335422 +87947,86320,bad performances,1324204936 +87947,86320,boring,1324204918 +87947,86320,overlong,1324204922 +87947,86320,pretentious,1324204925 +87947,86320,slow,1324204932 +87947,86345,hates entitlement,1380687206 +87947,86377,crude,1379892904 +87947,86377,duck vaginas,1379892922 +87947,86377,got me belly laughing,1379892915 +87947,86377,intelligent,1379892910 +87947,86377,touching,1379892906 +87947,86644,direction,1388634941 +87947,86644,funny,1388634960 +87947,86644,great cast,1388634917 +87947,86644,heist,1388634953 +87947,86644,Silly,1388634927 +87947,86644,superior sequel,1388634936 +87947,86644,unrealistic,1388634923 +87947,86833,Bechdel Test - pass,1308918527 +87947,86833,Bechdel Test: pass,1308918544 +87947,86833,bittersweet,1308915820 +87947,86833,clever script,1308915799 +87947,86833,comedy,1308915784 +87947,86833,female driven comedy,1308915781 +87947,86833,flawed characters,1308917655 +87947,86833,good soundtrack,1308915804 +87947,86833,Judd Apatow,1308915789 +87947,86833,Kristen Wiig,1308915773 +87947,86833,Rose Byrne,1308915796 +87947,86882,bittersweet,1319960486 +87947,86882,cinematography,1319960462 +87947,86882,comedy,1319960449 +87947,86882,dialogue,1319960428 +87947,86882,funny,1319960426 +87947,86882,literary,1319960440 +87947,86882,literate,1319960576 +87947,86882,nostalgia,1319960433 +87947,86882,pleasant,1319960424 +87947,86882,quirky,1319960476 +87947,86882,relationships,1319960447 +87947,86882,romance,1319960481 +87947,86882,thought-provoking,1319960471 +87947,86882,understated,1319960586 +87947,86882,whimsical,1319960452 +87947,86882,witty,1319960465 +87947,87232,cgi,1321505370 +87947,87232,civil rights,1321505544 +87947,87232,comic book,1321505481 +87947,87232,ensemble cast,1321505496 +87947,87232,franchise,1321505384 +87947,87232,James McAvoy,1321505395 +87947,87232,Michael Fassbender,1321505402 +87947,87232,Nicholas Hoult,1321505408 +87947,87232,personality clash,1321505547 +87947,87232,stylish,1321505473 +87947,87232,violent,1321505361 +87947,87232,visually appealing,1321505366 +87947,87405,angst,1312981277 +87947,87405,crazy,1312981286 +87947,87405,dark comedy,1312981262 +87947,87405,drugs,1312981233 +87947,87405,indie,1312981212 +87947,87405,mystery,1312981259 +87947,87405,quirky,1312981248 +87947,87405,silly,1312981240 +87947,87405,sociopathic,1312981271 +87947,87405,some funny moments,1312981246 +87947,87405,surreal,1312981206 +87947,87869,misogynistic,1368966691 +87947,87869,offensive,1368966696 +87947,87869,sexism,1368966705 +87947,88094,90s,1310118340 +87947,88094,artsy,1310118407 +87947,88094,bands,1310118387 +87947,88094,british scene,1310118339 +87947,88094,britpop,1310118398 +87947,88094,documentary,1310118384 +87947,88094,music,1310118339 +87947,88094,no dissenting voices,1310118345 +87947,88094,one-sided,1310118349 +87947,88094,self-congratulatory,1310118353 +87947,88094,shoegaze,1310118393 +87947,88094,soundtrack,1310118390 +87947,88094,weird presentation,1310118405 +87947,88129,atmospheric,1323674309 +87947,88129,Carey Mulligan,1323674329 +87947,88129,cinematography,1323674322 +87947,88129,falling in love,1323674318 +87947,88129,little dialogue,1323674337 +87947,88129,Ryan Gosling,1323674326 +87947,88129,slow,1323674334 +87947,88129,soundtrack,1323674305 +87947,88129,tense,1323674363 +87947,88129,violence,1323674367 +87947,88140,bland,1368276586 +87947,88140,generic,1368276579 +87947,88163,comedy,1328092998 +87947,88163,cute,1328092948 +87947,88163,emotional,1328092945 +87947,88163,funny,1328092938 +87947,88163,gripping,1328092933 +87947,88163,intelligent,1328092936 +87947,88163,masculinity,1328092959 +87947,88163,mentor/trainer,1328092962 +87947,88163,plot twist,1328092942 +87947,88163,romantic comedy,1328092952 +87947,88163,Steve Carrell,1328092970 +87947,88179,annoying characters,1328092695 +87947,88179,badly executed,1328092687 +87947,88179,emotional,1328092701 +87947,88179,forgettable,1328092679 +87947,88179,unclear,1328092697 +87947,88744,cheesy,1360237713 +87947,88744,enjoyable,1360237698 +87947,88744,great cast,1360237701 +87947,88744,special effects,1360237707 +87947,88744,stylish,1360237709 +87947,88744,weak third act,1360237716 +87947,89170,forgettable,1379502044 +87947,89170,funny,1379502050 +87947,89170,good performances,1379502033 +87947,89170,predictable,1379502041 +87947,89170,strong women,1379502053 +87947,89170,sweet,1379502028 +87947,89470,cinematography,1353338944 +87947,89470,ensemble cast,1353338950 +87947,89470,suspense,1353338959 +87947,89470,thriller,1353338947 +87947,89492,intelligent,1328092560 +87947,89492,math,1328092568 +87947,89492,underdog,1328092571 +87947,89745,boring,1336636325 +87947,89745,lots of characters does not equal great movie,1336636360 +87947,89745,no plot,1336636332 +87947,89745,overrated,1336636337 +87947,89745,shallow,1336637006 +87947,89745,slow,1336636327 +87947,89745,tacky,1336636390 +87947,89753,acting,1353556031 +87947,89753,atmosphere,1353556029 +87947,89753,clever,1353556053 +87947,89753,confusing,1353556018 +87947,89753,confusing plot,1353556022 +87947,89753,Mark Strong,1353556038 +87947,89753,photography,1353556042 +87947,89753,slow paced,1353556027 +87947,89753,suspense,1353556048 +87947,89753,Tom Hardy,1353556035 +87947,89761,psychoanalaysis,1337816016 +87947,89761,psychology,1337816005 +87947,89774,abrupt ending,1354582948 +87947,89774,brutal,1354582965 +87947,89774,cheesy,1354582944 +87947,89774,emotional,1354582915 +87947,89774,great acting,1354582931 +87947,89774,Joel Edgerton,1354582936 +87947,89774,MMA,1354582962 +87947,89774,soundttrack,1354582922 +87947,89774,tearjerker,1354582918 +87947,89804,dialogue,1324907440 +87947,89804,drama,1324907482 +87947,89804,friendship,1324907461 +87947,89804,smart,1324907445 +87947,89804,thriller,1324907465 +87947,89804,tight editing,1324907419 +87947,89864,cute psychiatrist,1328092779 +87947,89864,emotional,1328092890 +87947,89864,forgettable,1328092881 +87947,89864,funny scenes,1328092893 +87947,89864,Hollywood drama,1328092887 +87947,89864,predictable,1328092774 +87947,89864,the dog,1328092790 +87947,89864,unrealistic therapist,1328092786 +87947,89945,disturbic,1341044560 +87947,89945,future,1341044566 +87947,89945,good acting,1341044574 +87947,89945,horrific,1341044548 +87947,89945,memorable,1341044582 +87947,89945,pacing,1341044570 +87947,89945,parenting,1341044555 +87947,89945,sci-fi,1341044563 +87947,89945,twist,1341044551 +87947,89945,visually appealing,1341044578 +87947,89965,drama,1397131732 +87947,89965,family drama,1397131736 +87947,89965,personal,1397131721 +87947,89965,slow,1397131706 +87947,89965,unique,1397131724 +87947,89965,unremarkable,1397131710 +87947,89965,visually flat,1397131717 +87947,90345,clean cinematography,1353855705 +87947,90345,continuity,1353855674 +87947,90345,horror,1353855636 +87947,90345,inferior to original,1353855665 +87947,90345,lame score,1353855653 +87947,90345,lens flare,1353855692 +87947,90345,paranoia,1353855680 +87947,90345,practical effects,1353855644 +87947,90405,bad pacing,1321049243 +87947,90405,boring,1321049219 +87947,90405,cheesy,1321049211 +87947,90405,dystopia,1321049287 +87947,90405,nonsensical,1321049224 +87947,90405,sci-fi,1321049310 +87947,90405,simplistic,1321049247 +87947,90405,suspense,1321049321 +87947,90405,thriller,1321049323 +87947,90405,unintelligent,1321049299 +87947,90405,unintentionally funny,1321049256 +87947,90428,anna paquin,1346064174 +87947,90428,character driven,1346064285 +87947,90428,confronting,1346064329 +87947,90428,drama,1346064211 +87947,90428,dysfunctional family,1346064313 +87947,90428,emotional,1346064213 +87947,90428,family relationships,1346064253 +87947,90428,matt damon,1346064185 +87947,90428,new york city,1346064170 +87947,90428,post 9/11,1346064231 +87947,90428,smart,1346064320 +87947,90428,teenagers,1346064274 +87947,90866,beautiful,1377866056 +87947,90866,existensialism,1377866053 +87947,90866,heartwarming,1377866060 +87947,90866,history,1377866044 +87947,90866,Martin Scorsese,1377866066 +87947,90866,visually appealing,1377866049 +87947,91077,Alexander Payne,1339162189 +87947,91077,beach,1339162191 +87947,91077,coma,1339162183 +87947,91077,drama,1339162161 +87947,91077,emotional,1339162170 +87947,91077,Hawaii,1339162195 +87947,91077,Hawaiian shirts,1339162200 +87947,91077,hotel-like decor,1339162206 +87947,91077,intelligent,1339162166 +87947,91077,rich people,1339162163 +87947,91077,that dumbass kid,1339162388 +87947,91094,comeback,1355657222 +87947,91094,comedy,1355657218 +87947,91094,funny,1355657208 +87947,91094,joyful,1355657210 +87947,91094,sweet,1355657214 +87947,91500,battle royale,1332507217 +87947,91500,gale,1332507234 +87947,91500,intense,1332507227 +87947,91500,peeta,1332507253 +87947,91500,thriller,1332507222 +87947,91529,Bane's voice,1342966193 +87947,91529,batman,1342966209 +87947,91529,Batman voice,1342966187 +87947,91529,comic books,1342966218 +87947,91529,intense,1342966197 +87947,91529,plot twist,1342966213 +87947,91529,superhero,1342966205 +87947,91529,trilogy,1342966200 +87947,91542,alternate history,1353418947 +87947,91542,cheesy,1353418950 +87947,91542,funny,1353418936 +87947,91542,Guy Ritchie,1353418932 +87947,91542,long,1353418959 +87947,91542,mystery,1353418940 +87947,91542,predictable,1353418957 +87947,91542,twist,1353418937 +87947,91622,biting,1327411149 +87947,91622,Diablo Cody,1327411144 +87947,91622,Jason Reitman,1327411140 +87947,91622,satire,1327411151 +87947,91622,weak ending,1327411155 +87947,91630,action,1324457248 +87947,91630,breathtaking,1324457259 +87947,91630,choreography,1324457263 +87947,91630,cinematography,1324457328 +87947,91630,comedic moments,1324457344 +87947,91630,spy team,1324457269 +87947,91630,tense,1324457315 +87947,91630,thriller,1324457255 +87947,91630,visuals,1324457265 +87947,91658,corruption,1328092336 +87947,91658,Daniel Craig,1328092312 +87947,91658,dark,1328092323 +87947,91658,David Fincher,1328092299 +87947,91658,good acting,1328092591 +87947,91658,modern,1328092536 +87947,91658,mystery,1328092322 +87947,91658,sick,1328092327 +87947,91658,slick,1328092292 +87947,91658,suspense,1328092287 +87947,91658,thriller,1328092592 +87947,91658,Trent Reznor,1328092319 +87947,91890,based on true story,1324907285 +87947,91890,british,1324907266 +87947,91890,cinematography,1324907239 +87947,91890,emotional,1324907235 +87947,91890,good acting,1324907295 +87947,91890,good performances,1324907229 +87947,91890,humanising,1324907219 +87947,91890,lacks depth,1324907222 +87947,91890,Meryl Streep,1324907272 +87947,91890,odd framing,1324907225 +87947,91890,strong female lead,1324907320 +87947,91890,touching,1324907293 +87947,91890,understated,1324907307 +87947,91976,cinematography,1362662694 +87947,91976,journey,1362662757 +87947,91976,philosophical overtones,1362662770 +87947,92008,action,1345337481 +87947,92008,brutal,1345337441 +87947,92008,character study,1345337470 +87947,92008,cinematography,1345337500 +87947,92008,direction,1345337453 +87947,92008,ending,1345337461 +87947,92008,fight choreography,1345337429 +87947,92008,martial arts,1345337478 +87947,92008,revenge,1345337497 +87947,92008,spy on the run,1345337433 +87947,92008,unglamorized spy film,1345337437 +87947,92008,visually appealing,1345337511 +87947,92243,cinematography,1396152356 +87947,92243,melodrama,1396152342 +87947,92243,Ni Ni,1396152366 +87947,92243,performances,1396152346 +87947,92243,Zhang Yimou,1396152371 +87947,92535,black comedy,1375705383 +87947,92535,comedian,1375705368 +87947,92535,enjoyable,1375705363 +87947,92535,funny,1375705378 +87947,93498,acting,1333539364 +87947,93498,good performance,1333539361 +87947,93498,politics,1333539354 +87947,93498,real life,1333539357 +87947,93831,cute,1335054611 +87947,93831,fun,1335054614 +87947,93831,funny,1335054605 +87947,93831,nostalgic,1335054603 +87947,93831,sexist,1335054608 +87947,93840,dark comedy,1341232605 +87947,93840,Drew Goddard,1341231665 +87947,93840,excellent cinematography,1341231683 +87947,93840,funny,1341231698 +87947,93840,meta,1341231693 +87947,93840,monsters,1341231716 +87947,93840,original,1341232626 +87947,93840,original plot,1341231726 +87947,93840,satire,1341232616 +87947,93840,social commentary,1341232645 +87947,93840,suspense,1341232637 +87947,93840,weird,1341232646 +87947,94677,funny,1339234233 +87947,94677,gross-out,1339234239 +87947,94677,offensive,1339234235 +87947,94677,political satire,1339234260 +87947,94677,pun,1339236691 +87947,94677,silly,1339234250 +87947,94677,the ending speech,1339234255 +87947,94677,uncomfortable,1339234248 +87947,94677,you will laugh,1339234242 +87947,94777,3d,1338367283 +87947,94777,action,1338367281 +87947,94777,boobies,1338367305 +87947,94777,crazy,1338367290 +87947,94777,funny,1338367287 +87947,94777,sexy,1338367292 +87947,94777,twist,1338373010 +87947,94864,atmospheric,1376005067 +87947,94864,good use of 3D,1376005084 +87947,94864,great acting,1376005071 +87947,94864,intelligent,1376005063 +87947,94864,intense,1376005080 +87947,94864,sci-fi,1376005075 +87947,95058,boring,1344088814 +87947,95088,feminist,1366988024 +87947,95088,understated,1366988040 +87947,95167,Bechdel Test:Pass,1358682420 +87947,95167,charming,1358682414 +87947,95167,feminism,1358682407 +87947,95167,no marriage at the end,1358682426 +87947,95167,predictable,1358682408 +87947,95167,symbolism,1358682431 +87947,95167,watch the credits,1358682440 +87947,95201,cinematography,1351372214 +87947,95201,comedy,1351372181 +87947,95201,date movie,1351372195 +87947,95201,great cast,1351372204 +87947,95201,hilarious,1351372186 +87947,95201,love,1351372191 +87947,95201,made me smile,1351372198 +87947,95201,performances,1351372208 +87947,95201,pleasant,1351372193 +87947,95201,relationships,1351372188 +87947,95201,woody allen,1351372201 +87947,95207,Predictable,1354972856 +87947,95207,Stupid,1354972848 +87947,95207,Visuals,1354972865 +87947,95237,comedy-horror,1371123529 +87947,95237,fun,1371123525 +87947,95237,meta,1371123522 +87947,95441,Predictable,1357295313 +87947,95441,Unfunny,1357295305 +87947,95441,Waste of time,1357295320 +87947,95761,disturbing,1366293668 +87947,95761,great story,1366293675 +87947,95761,Tracy Letts,1366293687 +87947,95761,unique,1366293697 +87947,96079,action,1353582830 +87947,96079,entertaining,1353582827 +87947,96079,Javier Bardem,1353582823 +87947,96079,Sam Mendes,1353582818 +87947,96079,villain,1353582834 +87947,96417,action,1385289951 +87947,96417,crazy,1385289968 +87947,96417,fun,1385289954 +87947,96417,silly,1385289956 +87947,96417,strong villain,1385289963 +87947,96588,Anna Kendrick,1357029282 +87947,96588,Funny,1357029260 +87947,96610,Bruce Willis,1349578285 +87947,96610,dystopia,1349578370 +87947,96610,film noir,1349578319 +87947,96610,good writing,1349578281 +87947,96610,sci-fi,1349578372 +87947,96610,sci-fi thriller,1349578314 +87947,96610,science fiction,1349578317 +87947,96610,tense,1349578335 +87947,96610,thriller,1349578321 +87947,96610,time travel,1349578278 +87947,96610,visually appealing,1349578354 +87947,96728,70mm,1355656629 +87947,96728,character study,1355656627 +87947,96728,confusing,1355656735 +87947,96728,great performances,1355656633 +87947,96728,not audience friendly,1355656739 +87947,96728,slow,1355656733 +87947,96728,unique,1355656622 +87947,96737,Allegory,1358753858 +87947,96737,Cast,1358753899 +87947,96737,Cinematography,1358753882 +87947,96737,Intelligent action,1358753868 +87947,96737,Tense,1358753848 +87947,96737,Thriller,1358753852 +87947,96811,character chemistry,1368102515 +87947,96811,editing,1368102501 +87947,96811,found footage,1368102508 +87947,96811,genre bending,1368102497 +87947,96857,great performances,1371817958 +87947,96857,interesting premise,1371817966 +87947,96857,skepticism,1371817989 +87947,96857,thriller,1371817970 +87947,96857,twists,1371817975 +87947,96857,weak editing,1371817961 +87947,96991,based on a true story,1366624631 +87947,96991,feel good,1366624624 +87947,96991,great performances,1366624617 +87947,96991,musical,1366624651 +87947,96991,nice film,1366624643 +87947,96991,sweet,1366624636 +87947,97230,directors,1353676787 +87947,97230,documentary,1353676812 +87947,97230,enlightening,1353676792 +87947,97230,fascinating,1353676815 +87947,97230,film,1353676788 +87947,97230,Keanu Reeves,1353676797 +87947,97306,dark comedy,1354367315 +87947,97306,great cast,1354367303 +87947,97306,screenplay,1354367308 +87947,97306,surprising,1354367322 +87947,97643,black comedy,1375185885 +87947,97643,crazy,1375185874 +87947,97643,franchise shift,1375185872 +87947,97643,over the top,1375185879 +87947,97643,strange,1375185889 +87947,97643,underrated,1375185870 +87947,97643,zombie film,1375185877 +87947,97752,Ambitious,1362919801 +87947,97752,Rebellion,1362919814 +87947,97817,documentary,1351464509 +87947,97817,feminism,1351464511 +87947,97817,inferior sequel,1351464506 +87947,97817,social issues,1351464515 +87947,97817,subculture,1351464518 +87947,97860,boring,1373888643 +87947,97860,dry,1373888615 +87947,97860,flat,1373888636 +87947,97866,riveting,1368879582 +87947,97913,strong female characters,1367493802 +87947,97913,video games,1367493797 +87947,97938,Ang Lee,1358590212 +87947,97938,animals,1358590208 +87947,97938,direction,1358590215 +87947,97938,great photography,1358590248 +87947,97938,visual effects,1358590205 +87947,97984,Australian,1362383355 +87947,97984,descent into hell,1362383408 +87947,97984,drinking culture,1362383399 +87947,97984,Outback,1362383377 +87947,97984,psychological thriller,1362383377 +87947,97984,terrifying,1362383354 +87947,98491,charming,1359957085 +87947,98491,clever,1359957091 +87947,98491,fun,1359957088 +87947,98491,pretty,1359957094 +87947,98491,simple,1359957082 +87947,98809,not as good as LOTR,1357641078 +87947,98809,too long,1357641071 +87947,98961,cast,1393399059 +87947,98961,engaging,1393399057 +87947,98961,inaccurate,1393399054 +87947,99112,crime,1386225520 +87947,99112,old school,1386225526 +87947,99112,tedious,1386225531 +87947,99112,thriler,1386225518 +87947,99112,Werner Herzog,1386225529 +87947,99114,Great performances,1359025287 +87947,99114,Humour,1359025268 +87947,99114,Soundtrack,1359025274 +87947,99149,Cast,1357628417 +87947,99149,Close-ups,1357628407 +87947,99149,Russell Crowe,1357628428 +87947,99296,horror,1390622036 +87947,99296,pretentious,1390622028 +87947,99296,Sasha Grey,1390622043 +87947,99296,silly,1390622025 +87947,99296,stupid,1390622033 +87947,99296,tense,1390622030 +87947,99296,thriller,1390622038 +87947,99728,Action,1360920088 +87947,99728,Corny,1360920069 +87947,99728,enjoyable,1360920064 +87947,99728,Fun,1360920074 +87947,99728,Likeable cast,1360920080 +87947,100106,documentary,1394747974 +87947,100106,film,1394747972 +87947,100106,philosophy,1394747969 +87947,100106,politics,1394747966 +87947,100106,zizek,1394747978 +87947,100138,beautiful,1397999858 +87947,100138,cinematography,1397999858 +87947,100138,Hong Kong film,1397999858 +87947,100138,performances,1397999858 +87947,100138,powerful,1397999866 +87947,100138,psychological drama,1397999866 +87947,100138,understated,1397999858 +87947,100383,breezy,1375454917 +87947,100383,cinematography,1375454908 +87947,100383,ending,1375454911 +87947,100383,Hitchcockian,1375454923 +87947,100383,performances,1375454913 +87947,100383,twist,1375454906 +87947,100487,atheist,1372423514 +87947,100487,likeable lead,1372423523 +87947,100714,beautiful,1375687024 +87947,100714,experimental,1375687008 +87947,100714,honest,1375687013 +87947,100714,poignant,1375687030 +87947,100714,unique,1375687018 +87947,101088,visually stylish,1380522100 +87947,101285,35mm,1368356006 +87947,101285,black comedy,1368356004 +87947,101285,carnivalesque,1368356017 +87947,101285,direction,1368356013 +87947,101285,repetition,1368356020 +87947,101285,satire,1368356009 +87947,101739,fun,1369311160 +87947,101739,horror,1369311166 +87947,101739,inferior remake,1369311174 +87947,101741,Cinematography,1365249362 +87947,101741,Disturbing,1365249338 +87947,101741,Great score,1365249355 +87947,101741,Mindfuck,1365249332 +87947,101741,Thriller,1365249347 +87947,101973,drama,1383655797 +87947,101973,emotional,1383655812 +87947,101973,ensemble film,1383655794 +87947,101973,heavyhanded,1383655808 +87947,102033,mean-spirited,1379851022 +87947,102033,Michael Bay,1379851033 +87947,102033,misanthropic,1379851016 +87947,102033,tragic events as comedy,1379851047 +87947,102033,ugly,1379851013 +87947,102033,unfunny,1379851026 +87947,102125,Ben Kingsley,1367134098 +87947,102125,Guy Pearce,1367134065 +87947,102125,improved sequel,1367134086 +87947,102125,Rebecca Hall,1367134076 +87947,102125,self-contained,1367134033 +87947,102125,Shane Black,1367134058 +87947,102125,twists,1367134013 +87947,102194,honest,1393925986 +87947,102194,poetic,1393925991 +87947,102194,powerful,1393925989 +87947,102194,sweet,1393925984 +87947,102407,good adaptation,1370259910 +87947,102407,modern music,1370259927 +87947,102407,perfectly cast,1370259918 +87947,102407,stylish,1370259942 +87947,102445,action,1382694084 +87947,102445,adventure,1382694087 +87947,102445,bland,1382694063 +87947,102445,boring,1382694211 +87947,102445,inferior sequel,1382694097 +87947,102445,predictable,1382694045 +87947,102445,science fiction,1382694080 +87947,102445,ugly cinematography,1382694074 +87947,102445,unoriginal,1382694052 +87947,102684,character archetypes,1415183682 +87947,102684,oedipal,1415183685 +87947,102684,slow paced,1415183671 +87947,102800,black-and-white,1382408723 +87947,102800,comedy drama,1382408726 +87947,102800,unique,1382408716 +87947,102800,white people,1382408733 +87947,102903,bland,1380715675 +87947,102903,likeable cast,1380715682 +87947,102903,popcorn movie,1380715693 +87947,102903,shallow characters,1380715667 +87947,103042,Christopher Nolan,1372663887 +87947,103042,cinematography,1372663880 +87947,103042,great cast,1372663844 +87947,103042,intelligent epic,1372663859 +87947,103042,strong women,1372663835 +87947,103042,Zack Snyder,1372663880 +87947,103075,satire,1384329759 +87947,103075,social commentary,1384329766 +87947,103075,wasted potential,1384329770 +87947,103137,cinematography,1393307868 +87947,103137,Leslie Mann,1393307861 +87947,103137,social commentary,1393307856 +87947,103137,stylish,1393307864 +87947,103228,anime,1374398347 +87947,103228,cinematography,1374398335 +87947,103228,Idris Elba,1374398323 +87947,103253,great cast,1376911489 +87947,103253,Jodie Foster,1376911485 +87947,103253,refugees,1376911470 +87947,103253,science fiction,1376911476 +87947,103253,social commentary,1376911467 +87947,103483,crazy,1375017978 +87947,103483,fun,1375017980 +87947,103483,weird,1375017976 +87947,103688,stale,1385289900 +87947,103688,tame,1385289896 +87947,103980,funny,1396955953 +87947,103980,heartbreaking,1396955957 +87947,103980,masterful,1396955961 +87947,104069,comedy,1375875436 +87947,104069,honest,1375875441 +87947,104069,relatable,1375875444 +87947,104069,stand-up,1375875439 +87947,104177,documentary,1383474098 +87947,104177,emotional,1383474113 +87947,104177,interview,1383474102 +87947,104177,realism,1383474108 +87947,104177,werner herzog,1383474105 +87947,104457,black comedy,1381315107 +87947,104457,family drama,1381315074 +87947,104457,funny,1381315063 +87947,104457,horror,1381315080 +87947,104457,realistic,1381315068 +87947,104457,slasher,1381315053 +87947,104457,smart,1381315058 +87947,104457,subversive,1381315085 +87947,104841,cinematography,1381486340 +87947,104841,cliche characters,1381486333 +87947,104841,high concept,1381486343 +87947,104841,overrated,1381486326 +87947,104879,absorbing,1382015815 +87947,104879,great ending,1382015824 +87947,104879,measured,1382015805 +87947,104879,morality,1382015794 +87947,104879,nuanced,1382015810 +87947,104879,photography,1382015797 +87947,104879,slow burn,1382015820 +87947,104879,tasteful,1382015832 +87947,105355,Abdellatif Kechiche,1396955862 +87947,105355,bittersweet,1396955872 +87947,105355,coming-of-age,1396955881 +87947,105355,involving,1396955888 +87947,105355,visually appealing,1396955885 +87947,105355,well written,1396955875 +87947,105468,animated,1390775387 +87947,105468,cast,1390775392 +87947,105468,children,1390775385 +87947,105468,food,1390775388 +87947,105468,funny,1390775391 +87947,105468,inferior sequel,1390775354 +87947,105468,predictable,1390775382 +87947,105468,puns,1390775377 +87947,105504,believable,1393721983 +87947,105504,performances,1393721988 +87947,105504,suspense,1393721980 +87947,105504,tense,1393721976 +87947,105755,anti-capitalist,1383911176 +87947,105755,audience reaction,1383911189 +87947,105755,great cast,1383911205 +87947,105755,Ridley Scott,1383911218 +87947,105755,scary,1383911194 +87947,105755,violent,1383911180 +87947,105844,cinematography,1391253606 +87947,105844,confronting,1391253618 +87947,105844,drama,1391253603 +87947,105844,important,1391253623 +87947,105844,performances,1391253609 +87947,106163,acting,1396334413 +87947,106163,contemporary issues,1396334410 +87947,106163,foreign film,1396334416 +87947,106163,modernity,1396334420 +87947,106163,social commentary,1396334424 +87947,106163,thought-provoking,1396334430 +87947,106163,violence,1396334406 +87947,106195,conversative,1387016082 +87947,106195,gritty,1387016093 +87947,106195,racist,1387016079 +87947,106195,realist,1387016096 +87947,106222,funny,1386245586 +87947,106222,likeable,1386245592 +87947,106222,repetitive,1386245579 +87947,106222,uneven,1386245584 +87947,106489,action,1388454433 +87947,106489,double frame rate,1388454427 +87947,106489,love triangle,1388454418 +87947,106489,superior sequel,1388454411 +87947,106696,beautiful,1388906228 +87947,106696,feminist,1388906221 +87947,106696,musical,1388906233 +87947,106873,beautiful animation,1386321715 +87947,106873,confusing,1386321725 +87947,106873,inferior sequel,1386321718 +87947,106873,philosophy,1386321722 +87947,106873,uncomfortable,1386321729 +87947,106920,beautiful,1393925889 +87947,106920,bittersweet,1393925892 +87947,106920,perfect,1393925883 +87947,106920,production design,1393925965 +87947,106920,thought-provoking,1393925887 +87947,108216,emotional,1390079056 +87947,108216,short film,1390079062 +87947,108216,unique idea,1390079065 +87947,108216,zombie,1390079058 +87947,108713,amateur,1391253778 +87947,108713,black comedy,1391253766 +87947,108713,comedy,1391253760 +87947,108713,experimental,1391253768 +87947,108713,Louis C.K,1391253764 +87947,108713,slow,1391253781 +87947,108713,uncomfortable,1391253785 +87947,108713,unique,1391253773 +87947,108729,best ending ever,1407109625 +87947,109487,ambitious,1415401129 +87947,109487,spectacle,1415401134 +87947,109682,fun,1394236159 +87947,109682,light,1394236166 +87947,109682,predictable,1394236153 +87947,109682,sports,1394236172 +87947,110501,action,1399214230 +87947,110501,intense,1399214228 +87947,110501,visceral,1399214224 +87947,110882,gripping,1407413311 +87947,110882,strong performance,1407413317 +87947,110882,tense,1407413313 +87947,110882,tight,1407413323 +87947,110882,unique,1407413320 +87947,111113,crude,1399596383 +87947,111113,funny,1399596380 +87947,111113,laugh out loud,1399596388 +87947,111113,solid,1399596395 +87947,111113,well cast,1399596392 +87947,112556,good adaptation,1413081256 +87947,112556,meticulous,1413081247 +87947,112556,perfect,1413081251 +87947,113188,gripping,1413505062 +87947,113188,tense,1413505066 +87947,114119,charming,1410868564 +87947,114119,comedy,1410868576 +87947,114119,date movie,1410868573 +87947,114119,funny,1410868567 +87947,114119,good performances,1410868580 +87947,114119,honest,1410868558 +87947,114119,romance,1410868569 +87947,114935,adaptation,1413081580 +87947,114935,twist,1413081576 +87947,115569,dark,1417211396 +87947,115569,editing,1417211381 +87947,115569,feel-bad movie,1417211387 +87947,115569,gripping,1417211384 +87947,115569,pacing,1417211379 +87947,115569,satire,1417211378 +87947,115569,transformative performance,1417211392 +87953,260,fantasy,1432124053 +87953,260,science fiction,1432124060 +87961,47,creepy,1253215615 +87961,47,crime,1253215617 +87961,47,disturbing,1253215620 +87961,47,drama,1253215638 +87961,47,gorgeous cinematography,1253215508 +87961,47,greed,1253215641 +87961,47,imdb top 250,1253215655 +87961,47,powerful ending,1253215635 +87961,47,psychology,1253215627 +87961,47,religion,1253215624 +87961,47,serial killer,1253215614 +87961,47,twist ending,1253215607 +87961,47,twists & turns,1253215629 +87961,50,neo noir,1272172787 +87961,293,awkward romance,1253124670 +87961,332,kinda boring,1274591560 +87961,332,looks made for tv,1274591568 +87961,374,money,1187786540 +87961,374,vault,1187786540 +87961,546,funny,1187786442 +87961,810,so stupid,1253509709 +87961,837,supernatural,1187786503 +87961,1130,fantastic make-up fx,1253728514 +87961,1350,demons,1187786475 +87961,1350,it was creepy,1253124018 +87961,1350,looks dated,1253123996 +87961,1456,stupid,1278281839 +87961,1924,so bad it's good,1274797492 +87961,1971,bad acting,1276028862 +87961,2116,hobbits,1187786491 +87961,2384,pigs,1187786484 +87961,2423,Funny as hell,1187786421 +87961,2459,low budget,1253335146 +87961,2459,too much screaming,1253335152 +87961,2555,Worst movie ever!,1253334801 +87961,2722,innacurate,1253509240 +87961,2917,neo-noir,1268152830 +87961,3157,talking mouse,1187786559 +87961,3527,a man's flick,1253215455 +87961,3527,unseen killer,1253215475 +87961,3593,BAD special effects,1253820350 +87961,3843,campy,1278197826 +87961,3843,cheesy,1278197831 +87961,3843,wtf ending,1278197835 +87961,4015,aliens,1187786617 +87961,4015,cars,1187786617 +87961,4015,funny shit,1187786617 +87961,4015,tattoos,1187786617 +87961,4015,zoltan,1187786617 +87961,4015,ZOLTAN!,1253390301 +87961,4022,talking to a volleyball for 2 hours,1253478043 +87961,4105,kinda overrated,1253335263 +87961,4226,neo noir,1253215694 +87961,4226,non-linear,1253215680 +87961,4448,customs,1187786589 +87961,4448,de niro,1187786590 +87961,4448,montreal,1187786589 +87961,4833,haunted house,1268420428 +87961,4878,confusing,1253216056 +87961,5254,vampires,1187786702 +87961,5287,neo noir,1272172766 +87961,6157,blindness,1187786692 +87961,6157,superhuman,1187786692 +87961,6170,shipwreck,1253387747 +87961,6872,HORRENDOUS!,1253334819 +87961,8640,so boring,1253334967 +87961,8798,tom cruise,1187786382 +87961,8859,the worst movie i've ever seen,1267936506 +87961,27822,boring,1267936727 +87961,31431,no plot,1275313852 +87961,31431,not scary,1275313860 +87961,33587,ATMOSPHERIC,1268106107 +87961,33587,CREEPY,1268106110 +87961,33587,GOTHIC,1268106072 +87961,33587,HAUNTED HOUSE,1268106064 +87961,33587,NO DVD RELEASE,1268106098 +87961,33834,amazing make-up effects,1253373578 +87961,33834,gruesome,1253373567 +87961,44978,well made for low budget,1275447014 +87961,45722,johnny depp,1187786662 +87961,45722,pirates,1187786662 +87961,45722,ship,1187786662 +87961,45722,treasure,1187786662 +87961,45730,what the hell was that?,1253388866 +87961,54290,movies like this shouldn't be made!,1253509822 +87961,64037,bad acting,1253335985 +87961,64037,really bad script,1253335977 +87961,67695,dark comedy,1267897724 +87961,67695,mean-spirited,1267897712 +87961,67734,bordering on girly,1253132605 +87961,69704,bad acting,1274790608 +87961,69704,bad camera work,1274790626 +87961,69704,bad make-up effects,1274790656 +87961,69704,cheesy dialogue,1274790637 +87961,69818,goth,1258862354 +87961,70159,better than i thought it'd be,1256185575 +87961,72998,fern gully,1278255315 +87973,260,good story,1444306217 +87973,260,wicked special effects,1444306250 +87999,260,a new hope,1436209292 +87999,260,Star Wars,1436209257 +88021,733,action packed,1442566245 +88021,733,Sean Connery,1442566221 +88021,733,thriller,1442566234 +88021,993,science,1442567544 +88021,1810,politics,1442566739 +88021,1810,true story,1442566754 +88021,3390,exotic adventures,1442566022 +88021,4344,hackers,1442566485 +88021,4344,hacking,1442566477 +88021,4344,John Travolta,1442566480 +88021,5152,Vietnam War,1442568042 +88021,32596,Africa,1442566161 +88021,32596,treasure,1442566165 +88021,47629,based on a true story,1442567684 +88021,47629,biopic,1442567731 +88021,51080,corruption,1442567762 +88021,51080,spying,1442567777 +88021,53972,action packed,1442566414 +88021,53972,bruce willis,1442566408 +88021,53972,hackers,1442566411 +88021,55276,corporate espionage,1442567810 +88021,55276,George Clooney,1442567808 +88021,55276,realistic,1442567826 +88021,112556,meticulous,1442565808 +88021,112556,psychothriller,1442565815 +88021,112556,unpredictable,1442565804 +88021,130788,true story,1442568159 +88060,260,future,1432128577 +88060,260,space,1432128600 +88061,1584,the ending,1371836423 +88061,64957,long,1412092583 +88061,103075,senseless violence,1445544510 +88061,119145,fake,1440878663 +88061,134117,bad acting,1433023409 +88061,134117,predictable,1433023431 +88061,134117,very poor scenic effects,1433023405 +88061,140110,unpredictable,1445544638 +88063,39,chick flick,1348627867 +88063,39,funny,1348627869 +88063,39,Paul Rudd,1348627871 +88063,39,quotable,1348627873 +88063,39,seen more than once,1348627878 +88063,1059,Amazing Cinematography,1348627235 +88063,1059,Leonardo DiCaprio,1348627233 +88063,1059,shakespeare,1348627264 +88063,1059,updated classics,1348627243 +88063,2762,Atmospheric,1348626902 +88063,2762,Bruce Willis,1348626919 +88063,2762,ghosts,1348626904 +88063,2762,imdb top 250,1348626908 +88063,2762,mindfuck,1348626910 +88063,2762,stylized,1348626915 +88063,2762,twist ending,1348626913 +88063,4370,android(s)/cyborg(s),1348628642 +88063,4370,artificial intelligence,1348628638 +88063,4370,Bittersweet,1348628628 +88063,4370,Steven Spielberg,1348628635 +88063,5464,cinematography,1348627174 +88063,5464,Tom Hanks,1348627179 +88063,7078,Bette Davis,1348628505 +88063,7078,Oscar (Best Actress),1348628502 +88063,7444,Mark Ruffalo,1348627960 +88063,7451,clever,1348627907 +88063,7451,High School,1348627902 +88063,7451,lesbian subtext,1348627909 +88063,48516,Leonardo DiCaprio,1348627149 +88063,48516,suspense,1348627152 +88063,48516,twist ending,1348627154 +88063,48516,undercover cop,1348627156 +88063,54997,Christian Bale,1348627195 +88063,55290,Casey Affleck,1348627116 +88063,55290,great performances,1348627127 +88063,55290,twist,1348627131 +88063,91500,ending,1348626941 +88063,91529,Anne Hathaway,1348626758 +88063,91529,Christian Bale,1348626755 +88063,91529,Christopher Nolan,1348626760 +88063,91529,comic book,1348626775 +88063,91529,great ending,1348626779 +88063,91529,Morgan Freeman,1348626766 +88063,91529,political commentary,1348626786 +88063,91529,superhero,1348626790 +88068,56367,Not as good as Little Miss Sunshine,1206896551 +88068,56367,overrated,1206896531 +88086,54290,Why the terrorists hate us,1187054169 +88104,8755,influences,1171119078 +88106,19,Rhino action :D,1172851036 +88106,32088,crap horror,1172856094 +88112,122886,franchise,1448135486 +88112,122886,Jedi Knight,1448135526 +88112,130450,Pan,1448135253 +88123,6591,Notable Nudity,1152561206 +88158,25764,DVD-R,1189415101 +88165,1240,Sci-Fi,1440652296 +88165,1240,top100,1440652277 +88165,5952,fantasy,1440652345 +88165,5952,tolkien,1440652336 +88165,34405,cult film,1440652316 +88165,34405,Firefly,1440652311 +88165,34405,Nathan Fillion,1440652321 +88165,34405,witty,1440652325 +88171,260,good characters,1434498164 +88171,260,great story,1434498149 +88180,858,italian mafia,1380903812 +88180,1411,drama,1423786835 +88180,1411,kenneth branagh,1423786835 +88180,1411,romance,1423786835 +88180,77561,comic book heroes,1380904117 +88180,77561,stan lee,1380904077 +88180,91094,Miss Piggy,1349316194 +88180,91094,puppets,1349316039 +88180,91094,René,1349316184 +88214,3216,hallucinatory,1181364118 +88214,3216,sexual,1181364121 +88219,30898,so bad that Costner is the best part,1139293152 +88219,40629,If your wife makes you see it you'll survive,1143557317 +88228,480,blockbuster,1436890672 +88228,480,dinosaurs,1436890672 +88228,480,jurassic park,1436890672 +88269,3578,fight,1436362260 +88269,3578,gladiator,1436362263 +88274,1129,action,1344577129 +88274,1129,dystopia,1344577131 +88274,1129,evil government,1344577133 +88274,1129,future,1344577134 +88274,1129,John Carpenter,1344577140 +88274,1129,snake plissken,1344577127 +88274,1527,action,1344576523 +88274,1527,dystopia,1344576535 +88274,1527,dystopic future,1344576519 +88274,1527,futuristic,1344576551 +88274,1527,Milla Jovovich,1344576521 +88274,1527,Nudity (Topless - Notable),1344576510 +88274,1527,sci-fi,1344576530 +88274,1653,dystopia,1344576765 +88274,1653,genetic engineering,1344576773 +88274,1653,genetic selection,1344576774 +88274,1653,genetics,1344576794 +88274,1653,powerful ending,1344576776 +88274,1653,Uma Thurman,1344576763 +88274,1682,alternate reality,1344577097 +88274,1682,dark comedy,1344577109 +88274,1682,dreamlike,1344577111 +88274,1682,dystopia,1344577096 +88274,1682,Jim Carrey,1344577100 +88274,1682,social commentary,1344577095 +88274,2959,classic,1344576704 +88274,2959,dark comedy,1344576714 +88274,2959,Edward Norton,1344576697 +88274,2959,social commentary,1344576694 +88274,2959,thought-provoking,1344576701 +88274,2959,twist ending,1344576688 +88274,2959,violence,1344576707 +88274,5903,Amazing Cinematography,1344577003 +88274,5903,cinematography,1344577004 +88274,5903,dystopia,1344576995 +88274,5903,post-apocalyptic,1344576988 +88274,5903,predictable,1344577011 +88274,5903,revolution,1344577024 +88274,5903,stylized violence,1344577021 +88274,5903,thought-provoking,1344577019 +88274,5903,totalitarianism,1344577016 +88274,5903,visually stunning,1344576992 +88274,6365,alternate reality,1344577167 +88274,6365,cyberpunk,1344577152 +88274,6365,dystopia,1344577169 +88274,6365,existentialism,1344577159 +88274,6365,Keanu Reeves,1344577162 +88274,6365,magic,1344577172 +88274,6365,philosophy,1344577158 +88274,6365,post-apocalyptic,1344577153 +88274,6365,thought-provoking,1344577161 +88274,44191,comic book,1344576845 +88274,44191,dystopia,1344576847 +88274,44191,philosophy,1344576849 +88274,44191,politics,1344576842 +88274,44191,sci-fi,1344576851 +88274,44191,thought-provoking,1344576840 +88274,44665,Bruce Willis,1344783010 +88274,44665,Film Noir,1344783014 +88274,44665,Morgan Freeman,1344783009 +88274,44665,stylized,1344783004 +88274,44665,twist ending,1344782998 +88274,48774,apocalypse,1344576876 +88274,48774,dystopia,1344576877 +88274,48774,future,1344576882 +88274,48774,futuristic,1344576879 +88274,48774,social commentary,1344576883 +88274,48774,thought-provoking,1344576871 +88274,56715,alternate reality,1344577368 +88274,56715,dark comedy,1344577361 +88274,56715,Eugene Hutz,1344577520 +88274,56715,Gogol Bordello,1344577445 +88274,56715,great music,1344577520 +88274,56715,quirky,1344577365 +88274,56715,suicide,1344577516 +88274,56715,Tom Waits,1344577537 +88274,71530,alternate reality,1344577580 +88274,71530,bad ending,1344577576 +88274,71530,bad science,1344577575 +88274,71530,dystopia,1344577589 +88274,71530,sci-fi,1344577584 +88274,71530,thought-provoking,1344577596 +88274,88129,cinematography,1344576932 +88274,88129,Dark,1344576941 +88274,88129,heist,1344576936 +88274,88129,ryan gosling,1344576934 +88274,88129,visually appealing,1344576939 +88274,94677,satire,1344576118 +88282,25,alcoholism,1275695122 +88282,25,elizabeth shue,1275695116 +88282,25,Nicolas Cage,1275695118 +88282,34,Animal,1241223715 +88282,34,barnyard animals,1241223759 +88282,34,Biography,1241223762 +88282,34,farm tale,1241223764 +88282,34,overrated,1241223737 +88282,34,pig,1241223740 +88282,34,pigs,1241223719 +88282,34,rats,1241223723 +88282,34,villain nonexistent or not needed for good story,1241223730 +88282,111,assassination,1241128788 +88282,111,atmospheric,1241128790 +88282,111,cult film,1241128791 +88282,111,disturbing,1241128794 +88282,111,forceful,1241128796 +88282,111,grim,1241128797 +88282,111,New York City,1241128801 +88282,111,psychopath,1241128803 +88282,111,Robert De Niro,1241128805 +88282,111,vigilantism,1241128806 +88282,111,visceral,1241128808 +88282,154,Catherine Deneuve,1241127495 +88282,154,DOUBLE LIFE,1241127497 +88282,154,Drama,1241127500 +88282,154,enigmatic,1241127506 +88282,154,EXTRAMARITAL AFFAIRS,1241127504 +88282,154,PROSTITUTES,1241127510 +88282,154,satirical,1241127513 +88282,154,sexy,1241127515 +88282,154,stylized,1241127517 +88282,154,witty,1241127522 +88282,158,family,1241131883 +88282,158,funny,1241131888 +88282,158,ghost,1241131885 +88282,158,sentimental,1241131903 +88282,208,apocalypse,1241224237 +88282,208,better than everybody thinks,1241224235 +88282,208,big budget,1241224239 +88282,208,Can't remember,1241224241 +88282,208,expensive,1241224243 +88282,208,gyrocopter,1241224246 +88282,208,horrible,1241224248 +88282,208,Kevin Costner,1241224250 +88282,208,post apocalypse,1241224252 +88282,208,search,1241224255 +88282,208,stupid,1241224257 +88282,260,action,1241224422 +88282,260,adventure,1241224420 +88282,260,aliens,1241224419 +88282,260,atmospheric,1241224417 +88282,260,bast background universe,1241224410 +88282,260,Carrie Fisher,1241224388 +88282,260,classic,1241224413 +88282,260,complex script,1241224408 +88282,260,fantasy,1241224407 +88282,260,fast plot development,1241224404 +88282,260,Harrison Ford,1241224381 +88282,260,imdb top 250,1241224402 +88282,260,mystic warriors,1241224400 +88282,260,old FX quality,1241224398 +88282,260,robots,1241224395 +88282,260,sci-fi,1241224379 +88282,260,sequel,1241224377 +88282,260,space,1241224376 +88282,260,starship pilots,1241224374 +88282,260,stylized,1241224372 +88282,296,assassin,1241122867 +88282,296,Black comedy,1241122870 +88282,296,cult film,1241122874 +88282,296,dark comedy,1241122876 +88282,296,drugs,1241122878 +88282,296,multiple storylines,1241122882 +88282,296,nonlinear,1241122884 +88282,296,notable soundtrack,1241122886 +88282,296,Quentin Tarantino,1241122889 +88282,296,quirky,1241122891 +88282,296,Samuel L. Jackson,1241122893 +88282,296,stylized,1241122896 +88282,296,violence,1241122898 +88282,318,crime,1241129202 +88282,318,drama,1241129203 +88282,318,friendship,1241129205 +88282,318,inspirational,1241129207 +88282,318,justice,1241129209 +88282,318,Morgan Freeman,1241129211 +88282,318,narrated,1241129214 +88282,318,prison,1241129216 +88282,318,prison escape,1241129218 +88282,318,reflective,1241129239 +88282,318,revenge,1241129242 +88282,318,sentimental,1241129244 +88282,318,thought-provoking,1241129247 +88282,356,bittersweet,1241131543 +88282,356,comedy,1241131545 +88282,356,drama,1241131546 +88282,356,history,1241131548 +88282,356,psychology,1241131550 +88282,356,romance,1241131552 +88282,356,sentimental,1241131553 +88282,356,Tom Hanks,1241131555 +88282,356,Vietnam,1241131556 +88282,356,whimsical,1241131558 +88282,551,atmospheric,1241129929 +88282,551,Christmas,1241129931 +88282,551,creepy,1241129932 +88282,551,cult film,1241129934 +88282,551,dark,1241129935 +88282,551,ghosts,1241129937 +88282,551,gothic,1241129939 +88282,551,halloween,1241129940 +88282,551,humorous,1241129942 +88282,551,musical,1241129946 +88282,551,Tim Burton,1241129948 +88282,551,whimsical,1241129950 +88282,555,Christian Slater,1241121879 +88282,555,Gary Oldman,1241121884 +88282,555,homage,1241121888 +88282,555,Patricia Arquette,1241121891 +88282,555,shooting,1241121896 +88282,555,violence,1241121900 +88282,597,chick flick,1241224119 +88282,597,cinderella,1241224117 +88282,597,Comedy,1241224121 +88282,597,girlie movie,1241224115 +88282,597,Good Romantic Comedies,1241224123 +88282,597,Hollywood,1241224125 +88282,597,Julia Roberts,1241224131 +88282,597,president,1241224127 +88282,597,prince charming,1241224129 +88282,597,prostitution,1241224133 +88282,597,pygmalion,1241224136 +88282,597,Richard Gere,1241224138 +88282,597,romance,1241224140 +88282,597,ROMANTIC,1241224145 +88282,597,shopping,1241224147 +88282,597,sport car,1241224148 +88282,597,unreflective,1241224150 +88282,608,black comedy,1241131567 +88282,608,brilliant ending,1241131601 +88282,608,Coen Brothers,1241131569 +88282,608,crime,1241131571 +88282,608,crime gone awry,1241131572 +88282,608,dark comedy,1241131574 +88282,608,deadpan,1241131576 +88282,608,goofy,1241131577 +88282,608,hostage,1241131579 +88282,608,kidnapping,1241131581 +88282,608,murder,1241131583 +88282,608,police,1241131585 +88282,608,quirky,1241131587 +88282,608,violent,1241131589 +88282,608,witty,1241131591 +88282,778,addiction,1241121933 +88282,778,AIDS,1241121936 +88282,778,black comedy,1241121938 +88282,778,British,1241121941 +88282,778,crime,1241121944 +88282,778,dark comedy,1241121947 +88282,778,drug abuse,1241121950 +88282,778,Ewan McGregor,1241121957 +88282,778,great soundtrack,1241121961 +88282,902,Audrey Hepburn,1241132088 +88282,902,bittersweet,1241132090 +88282,902,cat,1241132093 +88282,902,classic,1241132095 +88282,902,HAUNTED BY THE PAST,1241132097 +88282,902,lyrical,1241132099 +88282,902,New York,1241132101 +88282,902,Romance,1241132102 +88282,902,satirical,1241132104 +88282,902,sentimental,1241132108 +88282,902,Truman Capote,1241132110 +88282,902,wistful,1241132113 +88282,903,Atmospheric,1242343904 +88282,903,deliberate,1242343907 +88282,903,disturbing,1242343910 +88282,903,Dream Sequence,1242343924 +88282,903,eerie,1242343911 +88282,903,HAUNTED BY THE PAST,1242343914 +88282,903,identity,1242343941 +88282,903,James Stewart,1242343929 +88282,903,melancholy,1242343931 +88282,903,obsession,1242343946 +88282,903,paranoid,1242343935 +88282,903,switching places,1242343937 +88282,904,Alfred Hitchcock,1241122771 +88282,904,claustrophobic,1241122774 +88282,904,identity,1241122778 +88282,904,James Stewart,1241122780 +88282,904,murder,1241122782 +88282,904,mystery,1241122785 +88282,904,obsession,1241122788 +88282,904,photographer,1241122791 +88282,904,tense,1241122797 +88282,904,thriller,1241122800 +88282,904,voyeurism,1241122802 +88282,910,comedy,1241128881 +88282,910,farce,1241128883 +88282,910,fish out of water,1241128885 +88282,910,Jack Lemmon,1241128888 +88282,910,Marilyn Monroe,1241128890 +88282,910,men in drag,1241128892 +88282,910,prohibition,1241128894 +88282,910,Quotable,1241128896 +88282,910,romantic comedy,1241128897 +88282,920,ambition,1241126538 +88282,920,American Civil War,1241126490 +88282,920,Civil War,1241126494 +88282,920,dreams,1241126531 +88282,920,epic,1241126499 +88282,920,historical,1241126501 +88282,920,love,1241126504 +88282,920,Romance,1241126507 +88282,920,social commentary,1241126509 +88282,920,Southern theme,1241126512 +88282,920,War,1241126514 +88282,923,atmospheric,1241131839 +88282,923,classic,1241131843 +88282,923,drama,1241131851 +88282,923,enigmatic,1241131854 +88282,923,Highly quotable,1241131856 +88282,923,literate,1241131858 +88282,923,melancholy,1241131860 +88282,923,mystery,1241131863 +88282,923,Obsession,1241131866 +88282,923,poignant,1241131869 +88282,953,alternate reality,1241123545 +88282,953,alternate universe,1241123548 +88282,953,anti-capitalism,1241123607 +88282,953,brothers,1241123551 +88282,953,Christmas,1241123538 +88282,953,classic,1241123553 +88282,953,drama,1241123556 +88282,953,family,1241123558 +88282,953,fantasy,1241123560 +88282,953,Frank Capra,1241123540 +88282,953,heartwarming,1241123563 +88282,953,holiday,1241123567 +88282,953,idealism,1241128229 +88282,953,inspirational,1241123573 +88282,953,James Stewart,1241123570 +88282,953,money,1241123575 +88282,953,romance,1241123578 +88282,953,small town,1241123580 +88282,953,World War II,1241123583 +88282,968,bad stereotypes of women,1241130106 +88282,968,brilliant ending,1241130042 +88282,968,creepy,1241130027 +88282,968,disturbing,1241130029 +88282,968,George A. Romero,1241130031 +88282,968,gruesome,1241130044 +88282,968,horror,1241130046 +88282,968,man vs. beast,1241130048 +88282,968,menacing,1241130050 +88282,968,ominous,1241130053 +88282,968,paranoid,1241130056 +88282,968,Race issues,1241130058 +88282,968,scared the hell outta me,1241130062 +88282,968,visceral,1241130065 +88282,968,zombie,1241130067 +88282,968,zombies,1241130068 +88282,1027,Alan Rickman,1241129594 +88282,1027,atmospheric,1241129596 +88282,1027,catapult,1241129636 +88282,1027,Christian Slater,1241129598 +88282,1027,crusades,1241129600 +88282,1027,Kevin Costner,1241129605 +88282,1027,medieval,1241129607 +88282,1027,Morgan Freeman,1241129610 +88282,1027,passionate,1241129615 +88282,1027,Robin Hood,1241129613 +88282,1027,rousing,1241129617 +88282,1027,Sheriff of Nottingham,1241129619 +88282,1027,SHERIFFS AND OUTLAWS,1241129621 +88282,1027,sword fight,1241129623 +88282,1027,upbeat,1241129626 +88282,1027,witch,1241129627 +88282,1059,Amazing Cinematography,1241121625 +88282,1059,Bechdel Test:Pass,1241126072 +88282,1059,clever,1241121630 +88282,1059,colourful,1241121634 +88282,1059,great soundtrack,1241121620 +88282,1059,Quirky,1241121640 +88282,1059,romantic,1241121643 +88282,1059,shakespeare,1241121651 +88282,1059,updated classics,1241121647 +88282,1073,family bonds,1241225062 +88282,1073,Heartwarming,1241225064 +88282,1073,not dark enough,1241225050 +88282,1073,not faithful to the book,1241225038 +88282,1073,whimsical,1241225060 +88282,1080,Bible,1241123109 +88282,1080,Biblical,1241123112 +88282,1080,British,1241123116 +88282,1080,comedy,1241123118 +88282,1080,funny,1241123121 +88282,1080,hilarious,1241123123 +88282,1080,mockumentary,1241123126 +88282,1080,Monty Python,1241123131 +88282,1080,parody,1241123135 +88282,1080,religion,1241123139 +88282,1080,Roman empire,1241123142 +88282,1080,satire,1241123148 +88282,1080,Terry Gilliam,1241123150 +88282,1080,whimsical,1241123154 +88282,1084,Faye Dunaway,1241132220 +88282,1084,gangsters,1241132222 +88282,1084,media,1241132261 +88282,1084,shocking,1241132250 +88282,1084,violent,1241132226 +88282,1084,viva violence,1241132228 +88282,1084,Warren Beatty,1241132230 +88282,1088,cheesy,1241225156 +88282,1088,chick flick,1241225158 +88282,1088,coming of age,1241225161 +88282,1088,cute,1241225163 +88282,1088,dance,1241225165 +88282,1088,girlie movie,1241225168 +88282,1088,guilty pleasure,1241225170 +88282,1088,Jennifer Grey,1241225178 +88282,1088,no one puts Baby in a corner,1241225174 +88282,1088,Patrick Swayze,1241225176 +88282,1088,rich families,1241225190 +88282,1088,romance,1241225192 +88282,1088,romance boygirl dancing,1241225194 +88282,1097,alien,1241223638 +88282,1097,aliens,1241223640 +88282,1097,boring,1241223624 +88282,1097,BORING!,1242003810 +88282,1097,children,1241223634 +88282,1097,emotional,1241223632 +88282,1097,family,1241223630 +88282,1097,Steven Spielberg,1241223628 +88282,1104,atmospheric,1241122147 +88282,1104,Bechdel Test:Pass,1241126262 +88282,1104,downbeat,1241122150 +88282,1104,forceful,1241122154 +88282,1104,Marlon Brando,1241122156 +88282,1104,moody,1241122160 +88282,1104,poignant,1241122165 +88282,1104,sexual,1241122169 +88282,1104,Tennessee Williams,1241122173 +88282,1104,Vivien Leigh,1241122176 +88282,1136,Biblical,1241130213 +88282,1136,British,1241130215 +88282,1136,british comedy,1241130217 +88282,1136,comedy,1241130219 +88282,1136,funny,1241130231 +88282,1136,hilarious,1241130233 +88282,1136,holy grail,1241130235 +88282,1136,irreverent,1241130237 +88282,1136,medieval,1241130240 +88282,1136,Monty Python,1241130242 +88282,1136,parody,1241130243 +88282,1136,religion,1241130246 +88282,1136,satirical,1241130249 +88282,1136,spoof,1241130250 +88282,1136,Terry Gilliam,1241130252 +88282,1172,bittersweet,1242262602 +88282,1172,censorship,1242262600 +88282,1172,centred on movie theatre,1242262598 +88282,1172,childhood,1242262596 +88282,1172,heartwarming,1242262592 +88282,1172,nostalgia,1242262586 +88282,1172,nostalgic,1242262581 +88282,1172,projectionist,1242262577 +88282,1172,reflective,1242262579 +88282,1172,sentimental,1242262574 +88282,1172,small town,1242262572 +88282,1172,warm,1242262571 +88282,1188,ballroom dancing,1241122091 +88282,1188,Baz Luhrmann,1241122095 +88282,1188,campy,1241122100 +88282,1188,Red Curtain trilogy,1241122108 +88282,1188,romance,1241122113 +88282,1193,Beautiful,1241122935 +88282,1193,depressing,1241122973 +88282,1193,drama,1241122938 +88282,1193,irreverent,1241122940 +88282,1193,Jack Nicholson,1241122943 +88282,1193,mental illness,1241122945 +88282,1193,psychological,1241122951 +88282,1193,psychology,1241122954 +88282,1196,action,1241224533 +88282,1196,adventure,1241224535 +88282,1196,aliens,1241224537 +88282,1196,bad script,1241224514 +88282,1196,bast background universe,1241224540 +88282,1196,Carrie Fisher,1241224510 +88282,1196,classic,1241224543 +88282,1196,complex script,1241224545 +88282,1196,father-son relationship,1241224549 +88282,1196,Harrison Ford,1241224503 +88282,1196,joseph campbell's study of mythology influenced,1241224501 +88282,1196,mystic warriors,1241224499 +88282,1196,robots,1241224497 +88282,1196,sci-fi,1241224494 +88282,1196,sequel,1241224492 +88282,1196,space,1241224490 +88282,1196,starship pilots,1241224489 +88282,1196,terrible main character,1241224528 +88282,1196,war,1241224487 +88282,1201,Clint Eastwood,1285718571 +88282,1201,Ennio Morricone,1285718569 +88282,1206,atmospheric,1241127217 +88282,1206,cult film,1241127220 +88282,1206,disturbing,1241127222 +88282,1206,dystopia,1241127224 +88282,1206,irreverent,1241127227 +88282,1206,narrated,1241127229 +88282,1206,prison,1241127232 +88282,1206,psychology,1241127235 +88282,1206,quirky,1241127238 +88282,1206,satire,1241127239 +88282,1206,satirical,1241127243 +88282,1206,Sexualized violence,1241127256 +88282,1206,Stanley Kubrick,1241127244 +88282,1206,stylized,1241127246 +88282,1206,violence,1241127248 +88282,1210,action,1241224733 +88282,1210,adventure,1241224730 +88282,1210,aliens,1241224728 +88282,1210,bast background universe,1241224725 +88282,1210,classic,1241224723 +88282,1210,complex script,1241224717 +88282,1210,fantasy,1241224715 +88282,1210,father-son relationship,1241224713 +88282,1210,George Lucas,1241224711 +88282,1210,Harrison Ford,1241224709 +88282,1210,joseph campbell's study of mythology influenced,1241224697 +88282,1210,mystic warriors,1241224693 +88282,1210,robots,1241224689 +88282,1210,sci-fi,1241224687 +88282,1210,sequel,1241224684 +88282,1210,space,1241224682 +88282,1210,starship pilots,1241224680 +88282,1210,superhero,1241224678 +88282,1213,crime,1241131366 +88282,1213,dark comedy,1241131368 +88282,1213,disturbing,1241131370 +88282,1213,drama,1241131372 +88282,1213,good dialogue,1241131374 +88282,1213,mafia,1241131377 +88282,1213,Martin Scorsese,1241131380 +88282,1213,narrated,1241131383 +88282,1213,organized crime,1241131385 +88282,1213,Robert De Niro,1241131388 +88282,1213,violence,1241131392 +88282,1213,violent,1241131394 +88282,1213,visceral,1241131397 +88282,1244,bittersweet,1249066989 +88282,1244,comedy,1249066991 +88282,1244,humor,1249066994 +88282,1244,literate,1249066997 +88282,1244,lyrical,1249067003 +88282,1244,Meryl Streep,1249067004 +88282,1244,new york,1249067006 +88282,1244,New York City,1249067008 +88282,1244,talky,1249067014 +88282,1244,writers,1249067016 +88282,1247,adultery,1241126403 +88282,1247,comedy,1241126407 +88282,1247,coming of age,1241126410 +88282,1247,cynical,1241126412 +88282,1247,deadpan,1241126415 +88282,1247,Dustin Hoffman,1241126419 +88282,1247,EXTRAMARITAL AFFAIRS,1241126421 +88282,1247,humorous,1241126426 +88282,1247,quirky,1241126430 +88282,1247,satirical,1241126432 +88282,1247,SUBURBAN DYSFUNCTION,1241126437 +88282,1247,suburbia,1241126452 +88282,1247,wedding,1241126440 +88282,1252,atmospheric,1242002891 +88282,1252,bleak,1242002895 +88282,1252,cynical,1242002898 +88282,1252,Exceptional Acting,1242002901 +88282,1252,Film Noir,1242002903 +88282,1252,Incest,1242002905 +88282,1252,Jack Nicholson,1242002906 +88282,1252,Los Angeles,1242002908 +88282,1252,murder,1242002910 +88282,1252,private detective,1242002919 +88282,1252,Roman Polanski,1242002918 +88282,1252,somber,1242002921 +88282,1258,atmospheric,1241129172 +88282,1258,chilling,1241129180 +88282,1258,cult film,1241129133 +88282,1258,disturbing,1241129134 +88282,1258,ghosts,1241129137 +88282,1258,hallucinatory,1241129139 +88282,1258,imagery,1241129163 +88282,1258,Isolation,1241129147 +88282,1258,Jack Nicholson,1241129149 +88282,1258,psychological,1241129151 +88282,1258,Stanley Kubrick,1241129153 +88282,1258,thriller,1241129155 +88282,1258,violent,1241129158 +88282,1270,adventure,1241127970 +88282,1270,alternate universe,1241127972 +88282,1270,comedy,1241127976 +88282,1270,future,1241127978 +88282,1270,high school,1241127980 +88282,1270,quirky,1241127983 +88282,1270,sci-fi,1241127984 +88282,1270,teen,1241127986 +88282,1270,time travel,1241127988 +88282,1270,whimsical,1241127990 +88282,1285,adolescence is hell,1241124008 +88282,1285,biting,1241124111 +88282,1285,black comedy,1241124113 +88282,1285,Christian Slater,1241124116 +88282,1285,cult,1241124119 +88282,1285,cynical,1241124121 +88282,1285,dark comedy,1241124122 +88282,1285,deadpan,1241124124 +88282,1285,high school,1241124126 +88282,1285,irreverent,1241124128 +88282,1285,satirical,1241124132 +88282,1285,Shannen Doherty,1241124134 +88282,1285,snappy dialog,1241124136 +88282,1285,Winona Ryder,1241124139 +88282,1682,cerebral,1241133037 +88282,1682,complex morality,1241133082 +88282,1682,dark comedy,1241133039 +88282,1682,drama,1241133041 +88282,1682,dreamlike,1241133042 +88282,1682,dystopia,1241133044 +88282,1682,fantasy,1241133046 +88282,1682,Jim Carrey,1241133048 +88282,1682,media,1241133070 +88282,1682,melancholy,1241133050 +88282,1682,philosophy,1241133051 +88282,1682,poignant,1241133053 +88282,1682,small town,1241133057 +88282,1682,social commentary,1241133058 +88282,1682,stylized,1241133060 +88282,1682,surveillance,1241133061 +88282,1682,Tragedy,1241133063 +88282,1682,voyeurism,1241133065 +88282,1777,Adam Sandler,1241128387 +88282,1777,bitter,1241128410 +88282,1777,buscemi,1241128390 +88282,1777,cheesy,1241128435 +88282,1777,Drew Barrymore,1241128392 +88282,1777,funny,1241128395 +88282,1777,jilted,1241128424 +88282,1777,love stinks,1241128417 +88282,1912,Don Cheadle,1275571740 +88282,1912,George Clooney,1275571733 +88282,1912,Jennifer Lopez,1275571737 +88282,1947,gangs,1241132906 +88282,1947,love story,1241132908 +88282,1947,musical,1241132910 +88282,1947,New York,1241132914 +88282,1947,racism,1241132917 +88282,1947,romeo and juliet,1241132919 +88282,1947,updated classics,1241132922 +88282,1968,Ally Sheedy,1241132023 +88282,1968,Anthony Michael Hall,1241132025 +88282,1968,bratpack,1241132034 +88282,1968,cliques,1241132071 +88282,1968,Comedy,1241132036 +88282,1968,coming-of-age,1241132038 +88282,1968,cult film,1241132042 +88282,1968,Drama,1241132043 +88282,1968,Emilio Estevez,1241132045 +88282,1968,ensemble cast,1241132047 +88282,1968,great music,1241132048 +88282,1968,high school,1241132050 +88282,1968,John Hughes,1241132052 +88282,1968,Judd Nelson,1241132055 +88282,1968,Molly Ringwald,1241132058 +88282,1968,school drama,1241132059 +88282,1968,teen,1241132061 +88282,2011,alternate universe,1241127611 +88282,2011,Billy Zane,1241127615 +88282,2011,Christopher Lloyd,1241127617 +88282,2011,cliffhanger,1241127621 +88282,2011,comedy,1241127623 +88282,2011,dystopia,1241127625 +88282,2011,Michael J. Fox,1241127627 +88282,2011,Robert Zemeckis,1241127629 +88282,2011,sci-fi,1241127632 +88282,2011,sports almanac,1241127634 +88282,2011,time travel,1241127637 +88282,2012,alternate universe,1241127552 +88282,2012,Christopher Lloyd,1241127554 +88282,2012,Michael J. Fox,1241127558 +88282,2012,Robert Zemeckis,1241127560 +88282,2012,science fiction,1241127563 +88282,2012,time travel,1241127580 +88282,2012,western,1241127588 +88282,2052,Bette Midler,1241130870 +88282,2052,curse,1241130861 +88282,2052,Disney,1241130872 +88282,2052,funny,1241130840 +88282,2052,halloween,1241130854 +88282,2052,Sarah Jessica Parker,1241130877 +88282,2052,talking cat,1241130868 +88282,2052,Thora Birch,1241130874 +88282,2052,witches,1241130857 +88282,2076,atmospheric,1241132278 +88282,2076,David Lynch,1241132280 +88282,2076,disturbing,1241132284 +88282,2076,dreamlike,1241132286 +88282,2076,hallucinatory,1241132288 +88282,2076,Isabella Rossellini,1241132289 +88282,2076,menacing,1241132293 +88282,2076,ominous,1241132296 +88282,2076,quirky,1241132298 +88282,2076,scary,1241132299 +88282,2076,sexual,1241132301 +88282,2076,sexuality,1241132304 +88282,2076,SUBURBAN DYSFUNCTION,1241132305 +88282,2076,suburbia,1241132308 +88282,2076,surreal,1241132311 +88282,2096,a favorite childhood movie,1242939352 +88282,2096,animation,1242939356 +88282,2096,classic,1242939359 +88282,2096,Disney,1242939361 +88282,2096,fairy tale,1242939363 +88282,2096,heroine,1242939366 +88282,2096,slavery,1242939373 +88282,2144,crush,1241129056 +88282,2144,high school,1241129039 +88282,2144,Molly Ringwald,1241129041 +88282,2144,sweet,1241129046 +88282,2144,teen,1241129043 +88282,2144,teen angst,1241129067 +88282,2253,cult,1241224443 +88282,2253,dream like,1241224444 +88282,2253,Robin Williams,1241224447 +88282,2253,satire,1241224449 +88282,2253,surreal,1241224450 +88282,2253,weapons industry,1241224452 +88282,2291,beautiful,1241131614 +88282,2291,compassionate,1241131617 +88282,2291,dark,1241131622 +88282,2291,dreamlike,1241131624 +88282,2291,fairy tale,1241131626 +88282,2291,fantasy,1241131628 +88282,2291,funny,1241131630 +88282,2291,gothic,1241131633 +88282,2291,Johnny Depp,1241131635 +88282,2291,love story,1241131637 +88282,2291,quirky,1241131639 +88282,2291,SUBURBAN DYSFUNCTION,1241131640 +88282,2291,suburbia,1241131642 +88282,2291,surreal,1241131644 +88282,2291,Tim Burton,1241131645 +88282,2291,Vincent Price,1241131647 +88282,2335,American football,1283811588 +88282,2459,atmospheric,1241128628 +88282,2459,cannibalism,1241128650 +88282,2459,disturbing,1241128630 +88282,2459,gothic,1241128636 +88282,2459,grim,1241128639 +88282,2459,gruesome,1241128642 +88282,2459,menacing,1241128644 +88282,2459,tense,1241128647 +88282,2628,bast background universe,1241223946 +88282,2628,complex script,1241223943 +88282,2628,fantasy,1241223940 +88282,2628,George Lucas,1241223911 +88282,2628,joseph campbell's study of mythology influenced,1241223938 +88282,2628,mystic warriors,1241223934 +88282,2628,Natalie Portman,1241223936 +88282,2628,original plot,1241223930 +88282,2628,robots,1241223932 +88282,2628,Samuel L. Jackson,1241223927 +88282,2628,sci-fi,1241223925 +88282,2628,sequel,1241223923 +88282,2628,Star Wars,1241223916 +88282,2628,starship pilots,1241223914 +88282,2657,adultery,1241122590 +88282,2657,aliens,1241122593 +88282,2657,androids,1241122597 +88282,2657,awesome soundtrack,1241122599 +88282,2657,campy,1241122603 +88282,2657,cross dressing,1241122606 +88282,2657,cult classic,1241122609 +88282,2657,cult film,1241122615 +88282,2657,great soundtrack,1241122618 +88282,2657,homosexuality,1241122621 +88282,2657,murder,1241122624 +88282,2657,musical,1241122627 +88282,2657,Quirky,1241122630 +88282,2657,sexuality,1241122632 +88282,2657,transgender,1241122634 +88282,2657,weird,1241122637 +88282,2692,adultery,1241129384 +88282,2692,alternate endings,1241129386 +88282,2692,artistic,1241129388 +88282,2692,existentialism,1241129390 +88282,2692,heist,1241129394 +88282,2692,humorous,1241129396 +88282,2692,intense,1241129398 +88282,2692,nonlinear,1241129399 +88282,2692,original,1241129402 +88282,2692,surreal,1241129404 +88282,2692,thought-provoking,1241129406 +88282,2692,time travel,1241129408 +88282,2692,videogame like,1241129409 +88282,2692,whimsical,1241129411 +88282,2700,adult humor,1241122207 +88282,2700,censorship,1241122214 +88282,2700,crude humor,1241122219 +88282,2700,free speech,1241122222 +88282,2700,irreverent,1241122226 +88282,2700,parody,1241122229 +88282,2700,satire,1241122282 +88282,2700,satirical,1241122286 +88282,2739,lesbian,1241223703 +88282,2739,Steven Spielberg,1241223698 +88282,2858,anger,1241128133 +88282,2858,black comedy,1241128089 +88282,2858,comedy,1241128091 +88282,2858,coming of age,1241128093 +88282,2858,dark comedy,1241128095 +88282,2858,dreams,1241128122 +88282,2858,Kevin Spacey,1241128097 +88282,2858,midlife crisis,1241128099 +88282,2858,powerful ending,1241128102 +88282,2858,reflective,1241128103 +88282,2858,satirical,1241128105 +88282,2858,social commentary,1241128107 +88282,2858,suburbia,1241128109 +88282,2858,surrealism,1241128111 +88282,2858,violence,1241128113 +88282,2927,adultery,1241131985 +88282,2927,affectionate,1241131987 +88282,2927,bittersweet,1241131989 +88282,2927,David Lean,1241131993 +88282,2927,Noel Coward,1241131996 +88282,2927,poignant,1241131999 +88282,2927,understated,1241132001 +88282,2940,burlesque,1241131511 +88282,2940,casino,1241131513 +88282,2940,intrigue,1241131515 +88282,2940,love/hate,1241131517 +88282,2940,nightclub,1241131519 +88282,2940,noir,1241131521 +88282,2940,Rita Hayworth,1241131523 +88282,2940,sexual tension,1241131533 +88282,2987,adventure,1241132843 +88282,2987,cartoon-reality crossover,1241132846 +88282,2987,Christopher Lloyd,1241132848 +88282,2987,private detective,1241132851 +88282,2987,rabbits,1241132853 +88282,2987,Robert Zemeckis,1241132855 +88282,2987,toontown,1241132858 +88282,3081,Christina Ricci,1241128976 +88282,3081,Christopher Walken,1241128978 +88282,3081,Dark,1241128980 +88282,3081,fairy tales,1241128982 +88282,3081,Fantasy,1241128984 +88282,3081,funny,1241128986 +88282,3081,gothic,1241128989 +88282,3081,Johnny Depp,1241128991 +88282,3081,Mystery,1241128993 +88282,3081,quirky,1241128995 +88282,3081,Romance,1241128998 +88282,3081,Tim Burton,1241129000 +88282,3081,visually appealing,1241129002 +88282,3160,coincidences,1241223599 +88282,3160,existential,1241223594 +88282,3160,poignant,1241223575 +88282,3160,REDEMPTION,1241223571 +88282,3160,religious overtones,1241223614 +88282,3160,talky,1241223569 +88282,3160,Tom Cruise,1241223567 +88282,3253,comedy,1241132933 +88282,3253,Dana Carvey,1241132935 +88282,3253,mike myers,1241132938 +88282,3253,Rob Lowe,1241132940 +88282,3253,rock and roll,1241132942 +88282,3253,Saturday Night Live,1241132945 +88282,3253,teen,1241132949 +88282,3477,Anthony LaPaglia,1241126691 +88282,3477,Cult classic,1241126693 +88282,3477,damn the man,1241126695 +88282,3477,great soundtrack,1241126715 +88282,3477,I don't have to explain my art to you Warren,1241126698 +88282,3477,Liv Tyler,1241126702 +88282,3477,save the empire,1241126705 +88282,3477,teen,1241126708 +88282,3477,Warren Beatty,1241126742 +88282,3477,witty,1241126721 +88282,3481,mixtape,1298659369 +88282,3489,Bob Hoskins,1241123767 +88282,3489,childhood recaptured,1241123769 +88282,3489,Dustin Hoffman,1241123773 +88282,3489,J.M. Barrie,1241123776 +88282,3489,Julia Roberts,1241123780 +88282,3489,Maggie Smith,1241123785 +88282,3489,Peter Pan,1241123788 +88282,3489,Robin Williams,1241123790 +88282,3489,Steven Spielberg,1241123792 +88282,3489,uplifting,1241123797 +88282,3489,whimsical,1241123798 +88282,3545,better then original medium,1241131932 +88282,3545,breakthroughs,1241131936 +88282,3545,politics,1241131943 +88282,3556,Bechdel Test:Pass,1241126119 +88282,3556,dreamlike,1241121841 +88282,3556,enigmatic,1241121849 +88282,3556,great soundtrack,1241121992 +88282,3556,Kathleen Turner,1241121814 +88282,3556,Kirsten Dunst,1241121811 +88282,3556,lyrical,1241121816 +88282,3556,melancholy,1241121820 +88282,3556,narrated,1241121824 +88282,3556,psychology,1241121827 +88282,3556,reflective,1241121830 +88282,3556,stylized,1241121833 +88282,3556,suburbia,1241121837 +88282,3578,boring,1241223510 +88282,3578,drama,1241223498 +88282,3578,fake,1241223503 +88282,3578,over long,1241223525 +88282,3578,Rome,1241223531 +88282,3578,Russell Crowe,1241223538 +88282,3578,slavery,1241223532 +88282,3578,stylized,1241223534 +88282,3578,War,1241223536 +88282,3793,action,1241132781 +88282,3793,cult film,1241132786 +88282,3793,ensemble cast,1241132790 +88282,3793,future,1241132792 +88282,3793,genetics,1241132794 +88282,3793,Ian McKellen,1241132778 +88282,3793,mutants,1241132796 +88282,3793,sci-fi,1241132798 +88282,3793,super-hero,1241132800 +88282,3793,United Nations,1241132804 +88282,3793,violence,1241132806 +88282,3897,great soundtrack,1213804654 +88282,4308,colourful,1241123012 +88282,4308,courtesan,1241123017 +88282,4308,Ewan McGregor,1241123015 +88282,4308,jealousy,1241123055 +88282,4308,lyrical,1241123058 +88282,4308,musical,1241123065 +88282,4308,Nicole Kidman,1241123068 +88282,4308,passionate,1241123070 +88282,4308,sensual,1241123073 +88282,4308,sentimental,1241123075 +88282,4308,Sexualized violence,1241123079 +88282,4308,stylized,1241123081 +88282,4642,Berlin,1241130893 +88282,4642,bittersweet,1241130895 +88282,4642,campy,1241130897 +88282,4642,cult film,1241130898 +88282,4642,dark,1241130930 +88282,4642,funny,1241130936 +88282,4642,Germany,1241130901 +88282,4642,identity crisis,1241130950 +88282,4642,inspiring,1241130943 +88282,4642,musical,1241130903 +88282,4642,poignant,1241130905 +88282,4642,quirky,1241130907 +88282,4642,rock,1241130909 +88282,4642,sexuality,1241130911 +88282,4642,stolen identity,1241130956 +88282,4642,stylized,1241130913 +88282,4642,transgender,1241130915 +88282,4720,afterlife,1241129829 +88282,4720,atmospheric,1241129831 +88282,4720,Bible,1241129833 +88282,4720,claustrophobic,1241129835 +88282,4720,Drama,1241129838 +88282,4720,ghost story,1241129840 +88282,4720,ghosts,1241129842 +88282,4720,gothic,1241129844 +88282,4720,haunted house,1241129845 +88282,4720,Isolation,1241129847 +88282,4720,Nicole Kidman,1241129849 +88282,4720,ominous,1241129851 +88282,4720,religion,1241129855 +88282,4720,twist ending,1241129856 +88282,4754,atmospheric,1241128326 +88282,4754,Christopher Lee,1241128328 +88282,4754,cult film,1241128329 +88282,4754,disturbing,1241128331 +88282,4754,eerie,1241128335 +88282,4754,enigmatic,1241128337 +88282,4754,MISSING PERSONS,1241128339 +88282,4754,OBSESSIVE QUESTS,1241128342 +88282,4754,ominous,1241128345 +88282,4754,pagan,1241128346 +88282,4754,religion,1241128348 +88282,4754,RELIGIOUS ZEALOTRY,1241128351 +88282,4754,sexual,1241128356 +88282,4754,small town,1241128358 +88282,4754,TRAPPED OR CONFINED,1241128360 +88282,4816,ben stiller,1241132707 +88282,4816,David Bowie,1241132709 +88282,4816,farce,1241132711 +88282,4816,fashion,1241132714 +88282,4816,goofy,1241132715 +88282,4816,male models,1241132717 +88282,4816,mindless one liners,1241132720 +88282,4816,models,1241132722 +88282,4816,Owen Wilson,1241132724 +88282,4816,spoof,1241132726 +88282,4816,Will Ferrell,1241132728 +88282,4823,few nice laughs,1241224281 +88282,4823,Good Romantic Comedies,1241224282 +88282,4823,john cusack,1241224285 +88282,4823,Kate Beckinsale,1241224287 +88282,4823,wedding,1241224288 +88282,4847,biting,1241400805 +88282,4847,bleak,1241400807 +88282,4847,cynical,1241400808 +88282,4847,downbeat,1241400811 +88282,4847,forceful,1241400813 +88282,4847,intimate,1241400815 +88282,4847,matter-of-fact,1241400827 +88282,4847,moody,1241400819 +88282,4847,sexual,1241400822 +88282,4847,tense,1241400825 +88282,4848,Atmospheric,1241130122 +88282,4848,creepy,1241130123 +88282,4848,dark,1241130125 +88282,4848,David Lynch,1241130127 +88282,4848,disturbing,1241130129 +88282,4848,dreamlike,1241130131 +88282,4848,Enigmatic,1241130133 +88282,4848,Erotic,1241130135 +88282,4848,hallucinatory,1241130137 +88282,4848,movie business,1241130138 +88282,4848,mystery,1241130142 +88282,4848,nonlinear,1241130144 +88282,4848,strangely compelling,1241130146 +88282,4848,stylized,1241130148 +88282,4848,surreal,1241130150 +88282,4848,surrealism,1241130152 +88282,4878,dreamlike,1241126764 +88282,4878,enigmatic,1241126765 +88282,4878,funny,1241126768 +88282,4878,good dialogue,1241126770 +88282,4878,hallucinatory,1241126772 +88282,4878,imaginary friend,1241126774 +88282,4878,mental illness,1241126776 +88282,4878,mindfuck,1241126778 +88282,4878,mystery,1241126781 +88282,4878,Parallel universe,1241126783 +88282,4878,psychology,1241126785 +88282,4878,quirky,1241126787 +88282,4878,sci-fi,1241126789 +88282,4878,social commentary,1241126790 +88282,4878,stylized,1241126794 +88282,4878,surreal,1241126798 +88282,4878,teen,1241126801 +88282,4878,thought-provoking,1241126803 +88282,4878,time travel,1241126805 +88282,4963,action,1241224333 +88282,4963,Brad Pitt,1241224328 +88282,4963,caper,1241224331 +88282,4963,casino,1241224326 +88282,4963,crime,1241224323 +88282,4963,ensemble cast,1241224316 +88282,4963,feel good movie,1241224321 +88282,4963,George Clooney,1241224314 +88282,4963,good soundtrack,1241224312 +88282,4963,heist,1241224311 +88282,4963,Julia Roberts,1241224305 +88282,4963,Las Vegas,1241224308 +88282,4963,Matt Damon,1241224303 +88282,4963,remake,1241224301 +88282,4963,Steven Soderbergh,1241224299 +88282,4963,witty,1241224298 +88282,4973,beautifully filmed,1241128161 +88282,4973,comedy,1241128165 +88282,4973,coming of age,1241128167 +88282,4973,drama,1241128169 +88282,4973,fairy tale,1241128171 +88282,4973,feel-good,1241128173 +88282,4973,idealism,1241128175 +88282,4973,love,1241128177 +88282,4973,modern fantasy,1241128180 +88282,4973,Paris,1241128192 +88282,4973,quirky,1241128194 +88282,4973,romance,1241128196 +88282,4973,stylized,1241128197 +88282,4973,surreal,1241128199 +88282,4973,whimsical,1241128201 +88282,4994,Bruce Campbell,1251028326 +88282,4994,censorship,1251028328 +88282,4994,centred on movie theatre,1251028330 +88282,4994,Frank Darabont,1251028336 +88282,4994,Jim Carrey,1251028343 +88282,4994,McCarthyism,1251028350 +88282,4994,Un-American Activities Committee,1251028348 +88282,5011,Billy Crudup,1241133186 +88282,5011,Cate Blanchett,1241133188 +88282,5011,Michael Gambon,1241133191 +88282,5011,romance,1241133195 +88282,5011,spies,1241133213 +88282,5011,World War II,1241133206 +88282,5225,bittersweet,1241132584 +88282,5225,comedy,1241132588 +88282,5225,coming of age,1241132589 +88282,5225,compassionate,1241132591 +88282,5225,drama,1241132593 +88282,5225,irreverent,1241132596 +88282,5225,quirky,1241132609 +88282,5225,romance,1241132599 +88282,5225,sexy,1241132603 +88282,5225,strangely compelling,1241132604 +88282,5225,witty,1241132605 +88282,5349,Action,1241128833 +88282,5349,alter ego,1241128835 +88282,5349,dualism,1241128859 +88282,5349,Dynamic CGI Action,1241128839 +88282,5349,Kirsten Dunst,1241128841 +88282,5349,marvel,1241128842 +88282,5349,New York City,1241128845 +88282,5349,super hero,1241128849 +88282,5349,Tobey Maguire,1241128851 +88282,5378,alien,1241223829 +88282,5378,bast background universe,1241223832 +88282,5378,Classic,1241223835 +88282,5378,complex script,1241223836 +88282,5378,fantasy,1241223839 +88282,5378,George Lucas,1241223843 +88282,5378,joseph campbell's study of mythology influenced,1241223845 +88282,5378,mystic warriors,1241223849 +88282,5378,original plot,1241223852 +88282,5378,robots,1241223855 +88282,5378,Samuel L. Jackson,1241223858 +88282,5378,sci-fi,1241223860 +88282,5378,sequel,1241223862 +88282,5378,space,1241223863 +88282,5378,Star Wars,1241223865 +88282,5378,starship pilots,1241223867 +88282,5505,adultery,1241131417 +88282,5505,Anniston is very good,1241131419 +88282,5505,depressing,1241131445 +88282,5505,dry,1241131435 +88282,5505,funny,1241131437 +88282,5505,Jake Gyllenhaal,1241131422 +88282,5505,Jennifer Aniston,1241131424 +88282,5505,John C. Reilly,1241131426 +88282,5505,tragicomedy,1241131428 +88282,5505,younger men,1241131430 +88282,5505,Zooey Deschanel,1241131432 +88282,5617,black comedy,1241129331 +88282,5617,great humor,1241129337 +88282,5617,James Spader,1241129339 +88282,5617,Maggie Gyllenhaal,1241129342 +88282,5617,power,1241129349 +88282,5617,relationships,1241129359 +88282,5617,secretary,1241129361 +88282,5617,sex,1241129363 +88282,5617,sexuality,1241129365 +88282,5620,chick flick,1241223957 +88282,5620,cliche,1241223959 +88282,5620,girlie movie,1241223962 +88282,5620,Good Romantic Comedies,1241223966 +88282,5620,idioms,1241223968 +88282,5620,Josh Lucas,1241223970 +88282,5620,Patrick Dempsey,1241223972 +88282,5620,Reese Witherspoon,1241223974 +88282,5620,romance,1241223976 +88282,5620,romantic comedy,1241223978 +88282,5620,Southern,1241223980 +88282,5620,sweet,1241223983 +88282,5620,weddings,1241223985 +88282,5620,writing,1241223987 +88282,5666,Bret Easton Ellis,1241129501 +88282,5666,college,1241129503 +88282,5666,drugs,1241129505 +88282,5666,dry,1241129564 +88282,5666,funny,1241129567 +88282,5666,gay,1241129509 +88282,5666,Ian Somerhalder,1241129511 +88282,5666,James Van Der Beek,1241129514 +88282,5666,Jessica Biel,1241129516 +88282,5666,Kate Bosworth,1241129519 +88282,5666,LOVE TRIANGLES,1241129583 +88282,5666,narrated,1241129521 +88282,5666,obsession,1241129573 +88282,5666,sarcasm,1241129549 +88282,5666,Shannyn Sossamon,1241129524 +88282,5666,social commentary,1241129558 +88282,5666,violence,1241129526 +88282,5666,witty,1241129561 +88282,5902,black comedy,1271805971 +88282,5902,Nicolas Cage,1271805959 +88282,5902,schizophrenia,1271805966 +88282,5902,surreal,1271805963 +88282,6155,Good Romantic Comedies,1241223877 +88282,6155,Kate Hudson,1241223882 +88282,6155,Matthew McConaughey,1241223880 +88282,6155,not funny,1241223893 +88282,6184,aliens,1241123262 +88282,6184,atmospheric,1241123264 +88282,6184,David Bowie,1241123268 +88282,6184,deadpan,1241123271 +88282,6184,deliberate,1241123273 +88282,6184,FISH OUT OF WATER,1241123277 +88282,6184,hallucinatory,1241123282 +88282,6184,Nicolas Roeg,1241123285 +88282,6184,quirky,1241123289 +88282,6184,RISE TO POWER,1241123291 +88282,6184,satirical,1241123295 +88282,6184,stylized,1241123297 +88282,6184,surreal,1241123301 +88282,6218,culture clash,1241132329 +88282,6218,england,1241132331 +88282,6218,football,1241132333 +88282,6218,Funny,1241132335 +88282,6218,Keira Knightley,1241132338 +88282,6218,london,1241132341 +88282,6218,love,1241132343 +88282,6218,marriage,1241132345 +88282,6218,multicultural,1241132347 +88282,6218,sports,1241132350 +88282,6218,thought-provoking,1241132358 +88282,6218,touching,1241132363 +88282,6323,creepy,1241224643 +88282,6323,imaginary friend,1241224645 +88282,6323,Nothing to it,1241224647 +88282,6323,pathetic effort,1241224649 +88282,6323,Pittsburgh,1241224651 +88282,6323,psychology and the nature of reality,1241224653 +88282,6323,serial killer,1241224655 +88282,6323,severed head in a dryer,1241224658 +88282,6323,twist ending,1241224660 +88282,6323,Waste of Time,1241224662 +88282,6333,action,1241132738 +88282,6333,aviation,1241132740 +88282,6333,ensemble cast,1241132742 +88282,6333,fantasy,1241132744 +88282,6333,genetics,1241132745 +88282,6333,genocide,1241132748 +88282,6333,mutants,1241132750 +88282,6333,sci-fi,1241132751 +88282,6333,super-hero,1241132754 +88282,6333,violent,1241132755 +88282,6502,Brilliant,1241132620 +88282,6502,British,1241132622 +88282,6502,Cillian Murphy,1241132676 +88282,6502,death,1241132627 +88282,6502,futuristic,1241132629 +88282,6502,hospital,1241132632 +88282,6502,infection,1241132634 +88282,6502,london,1241132636 +88282,6502,Post apocalyptic,1241132638 +88282,6502,post-apocalyptic,1241132640 +88282,6502,scary,1241132643 +88282,6502,sci-fi,1241132645 +88282,6502,Sexualized violence,1241132647 +88282,6502,stylized,1241132649 +88282,6502,thriller,1241132651 +88282,6502,unique,1241132654 +88282,6502,Zombie,1241132656 +88282,6502,zombies,1241132657 +88282,6537,alternate universe,1241224579 +88282,6537,android(s)/cyborg(s),1241224592 +88282,6537,androids,1241224580 +88282,6537,Arnold Schwarzenegger,1241224594 +88282,6537,artificial intelligence,1241224596 +88282,6537,big budget,1241224598 +88282,6537,car chase,1241224600 +88282,6537,end of the world,1241224603 +88282,6537,fighting,1241224604 +88282,6537,messy,1241224589 +88282,6537,murder,1241224606 +88282,6537,sci-fi,1241224609 +88282,6537,time travel,1241224611 +88282,6539,action,1241129709 +88282,6539,adventure,1241129712 +88282,6539,comedy,1241129713 +88282,6539,Disney,1241129715 +88282,6539,funny,1241129717 +88282,6539,ghosts,1241129719 +88282,6539,Johnny Depp,1241129721 +88282,6539,Keira Knightley,1241129723 +88282,6539,magic,1241129726 +88282,6539,orlando bloom,1241129746 +88282,6539,pirates,1241129728 +88282,6539,Suspense,1241129730 +88282,6539,swashbuckler,1241129732 +88282,6539,sword fight,1241129734 +88282,6539,thriller,1241129736 +88282,6711,Amazing Cinematography,1241123337 +88282,6711,atmospheric,1241123340 +88282,6711,Bill Murray,1241123343 +88282,6711,bittersweet,1241123345 +88282,6711,isolation,1241123347 +88282,6711,Japan,1241123350 +88282,6711,lyrical,1241123352 +88282,6711,Melancholic,1241123354 +88282,6711,nocturnal,1241123356 +88282,6711,poignant,1241123358 +88282,6711,reflective,1241123364 +88282,6711,relationships,1241123362 +88282,6711,Scarlett Johansson,1241123366 +88282,6711,Sophia Coppola,1241123368 +88282,6711,tokyo,1241123372 +88282,6711,Very interesting,1241123374 +88282,6711,wistful,1241123376 +88282,6820,gory,1241131489 +88282,6820,high school,1241131477 +88282,6820,Katherine Isabelle,1241131478 +88282,6820,sisters,1241131497 +88282,6820,transformation,1241131487 +88282,6820,werewolf,1241131479 +88282,6820,werewolves,1241131481 +88282,6874,action,1241130543 +88282,6874,Japan,1241130548 +88282,6874,Kick-Butt Women,1241130549 +88282,6874,martial arts,1241130551 +88282,6874,Quentin Tarantino,1241130553 +88282,6874,realistic tough female,1241130555 +88282,6874,revenge,1241130557 +88282,6874,Sexualized violence,1241130559 +88282,6874,stylized,1241130561 +88282,6874,Tokyo,1241130564 +88282,6874,Uma Thurman,1241130566 +88282,6874,violence,1241130568 +88282,6874,violent,1241130570 +88282,6874,visceral,1241130573 +88282,7022,controversial,1241132448 +88282,7022,dreams,1241132450 +88282,7022,exploitation,1241132452 +88282,7022,explosions,1241132455 +88282,7022,friends,1241132457 +88282,7022,goretastic,1241132459 +88282,7022,island,1241132463 +88282,7022,Japan,1241132465 +88282,7022,martial arts,1241132467 +88282,7022,punishment,1241132469 +88282,7022,satire,1241132471 +88282,7022,splatter,1241132475 +88282,7022,surveillance,1241132473 +88282,7022,survival,1241132478 +88282,7034,adolescence,1241129079 +88282,7034,bittersweet,1241129081 +88282,7034,coming of age,1241129083 +88282,7034,compassionate,1241129085 +88282,7034,dreams,1241129088 +88282,7034,friendship,1241129090 +88282,7034,homosexuality,1241129092 +88282,7034,lesbian,1241129094 +88282,7034,mother daughter relationship,1241129096 +88282,7034,prejudice,1241129097 +88282,7034,quirky,1241129099 +88282,7034,sexuality,1241129102 +88282,7034,small town,1241129104 +88282,7034,social commentary,1241129106 +88282,7034,teen,1241129112 +88282,7034,teenagers,1241129110 +88282,7034,virginity,1241129108 +88282,7153,Action,1241130401 +88282,7153,adventure,1241130403 +88282,7153,atmospheric,1241130405 +88282,7153,fantasy,1241130407 +88282,7153,high fantasy,1241130409 +88282,7153,life choices,1241130412 +88282,7153,love,1241130415 +88282,7153,magic,1241130416 +88282,7153,stylized,1241130419 +88282,7153,trilogy,1241130421 +88282,7361,bittersweet,1241126629 +88282,7361,Charlie Kaufman,1241126632 +88282,7361,comedy,1241126634 +88282,7361,cult film,1241126636 +88282,7361,imagination,1241126639 +88282,7361,Jim Carrey,1241126642 +88282,7361,Kate Winslet,1241126644 +88282,7361,love,1241126647 +88282,7361,memory,1241126649 +88282,7361,nonlinear,1241126651 +88282,7361,philosophy,1241126652 +88282,7361,quirky,1241126655 +88282,7361,romance,1241126658 +88282,7361,sci-fi,1241126660 +88282,7361,surreal,1241126663 +88282,7361,surrealism,1241126665 +88282,7438,action,1241130481 +88282,7438,adventure,1241130483 +88282,7438,atmospheric,1241130486 +88282,7438,Japan,1241130488 +88282,7438,kung fu,1241130490 +88282,7438,martial arts,1241130492 +88282,7438,Quentin Tarantino,1241130493 +88282,7438,quirky,1241130495 +88282,7438,revenge,1241130497 +88282,7438,stylized,1241130505 +88282,7438,Uma Thurman,1241130509 +88282,7438,violence,1241130512 +88282,7438,violent,1241130515 +88282,7451,clique,1241130280 +88282,7451,High School,1241130282 +88282,7451,innocence lost,1241130284 +88282,7451,Lacey Chabert,1241130286 +88282,7451,Lindsay Lohan,1241130290 +88282,7451,manipulation,1241130301 +88282,7451,popularity,1241130304 +88282,7451,Rachel McAdams,1241130306 +88282,7451,revenge,1241130308 +88282,7943,atmospheric,1241130440 +88282,7943,bleak,1241130442 +88282,7943,CRIME GONE AWRY,1241130444 +88282,7943,detective,1241130446 +88282,7943,gritty,1241130449 +88282,7943,hit men,1241130452 +88282,7943,insurance,1241130454 +88282,7943,moody,1241130457 +88282,7943,murder,1241130459 +88282,7943,robbery,1241130464 +88282,8368,alan rickman,1241130973 +88282,8368,Alfonso Cuarón,1241131021 +88282,8368,best in franchise,1241131027 +88282,8368,Daniel Radcliffe,1241130975 +88282,8368,emma thompson,1241130977 +88282,8368,fantasy,1241130979 +88282,8368,Gary Oldman,1241130981 +88282,8368,harry potter,1241130983 +88282,8368,idealistic,1241131043 +88282,8368,Maggie Smith,1241130985 +88282,8368,magic,1241130987 +88282,8368,time travel,1241130989 +88282,8368,werewolf,1241131004 +88282,8368,witch,1241130991 +88282,8368,Wizards,1241130993 +88282,8873,adventure,1241130173 +88282,8873,biographical,1241130175 +88282,8873,biopic,1241130177 +88282,8873,Che Guevara,1241130181 +88282,8873,communism,1241130184 +88282,8873,genocide,1241130187 +88282,8873,good dialogue,1241130189 +88282,8873,Inspiring,1241130190 +88282,8873,Interesting,1241130193 +88282,8873,political,1241130195 +88282,8873,politics,1241130196 +88282,8873,rebel,1241130199 +88282,8873,South America,1241130200 +88282,8873,true story,1241130203 +88282,8917,bizarre,1241128670 +88282,8917,funny,1241128671 +88282,8917,hilarious,1241128673 +88282,8917,irreverent,1241128678 +88282,8917,not exactly pc,1241128680 +88282,8917,political,1241128682 +88282,8917,politics,1241128684 +88282,8917,satire,1241128686 +88282,8917,terrorism,1241128688 +88282,8970,drama,1241126570 +88282,8970,Dustin Hoffman,1241126573 +88282,8970,fairy tales,1241126578 +88282,8970,fantasy,1241126590 +88282,8970,Heartwarming,1241126592 +88282,8970,J.M. Barrie,1241126594 +88282,8970,Johnny Depp,1241126587 +88282,8970,Kate Winslet,1241126597 +88282,8970,Peter Pan,1241126599 +88282,8970,true story,1241126603 +88282,8970,WRITER'S LIFE,1241126606 +88282,25850,Katherine Hepburn,1260824109 +88282,27773,Chan-wook Park,1241129872 +88282,27773,claustrophobic,1241129874 +88282,27773,depressing,1241129876 +88282,27773,disturbing,1241129877 +88282,27773,hallucinatory,1241129879 +88282,27773,incest,1241129880 +88282,27773,Korean,1241129883 +88282,27773,macabre,1241129885 +88282,27773,octopus,1241129915 +88282,27773,paranoid,1241129886 +88282,27773,revenge,1241129889 +88282,27773,stylized,1241129891 +88282,27773,tense,1241129893 +88282,27773,TRAPPED OR CONFINED,1241129894 +88282,27773,twist ending,1241129898 +88282,27773,vengeance,1241129901 +88282,27773,violent,1241129908 +88282,30816,Andrew Lloyd Webber,1241224007 +88282,30816,Emmy Rossum,1241224009 +88282,30816,Gerard Butler,1241224012 +88282,30816,Joel Schumacher,1241224014 +88282,30816,Lovely,1241224015 +88282,30816,Musical,1241224018 +88282,30816,playwright:Andrew Lloyd Webber,1241224021 +88282,30816,remake,1241224023 +88282,30816,Romance,1241224025 +88282,30816,visually appealing,1241224026 +88282,32844, London,1241121753 +88282,32844,ballet,1241121750 +88282,32844,Bechdel Test:Pass,1241126096 +88282,32844,Vivien Leigh,1241121758 +88282,32844,World War I,1238624629 +88282,32844, London,1238624721 +88282,33493,action,1241224103 +88282,33493,adventure,1241224102 +88282,33493,bast background universe,1241224099 +88282,33493,complex script,1241224097 +88282,33493,dark,1241224094 +88282,33493,fantasy,1241224091 +88282,33493,George Lucas,1241224090 +88282,33493,great soundtrack,1241224088 +88282,33493,joseph campbell's study of mythology influenced,1241224086 +88282,33493,mystic warriors,1241224084 +88282,33493,Natalie Portman,1241224082 +88282,33493,robots,1241224080 +88282,33493,Samuel L. Jackson,1241224078 +88282,33493,sci-fi,1241224076 +88282,33493,sequel,1241224075 +88282,33493,space,1241224073 +88282,33493,Star Wars,1241224068 +88282,33493,starship pilots,1241224066 +88282,33493,super-hero,1241224064 +88282,33794,action,1241132532 +88282,33794,alter ego,1241132534 +88282,33794,anti-hero,1241132559 +88282,33794,atmospheric,1241132537 +88282,33794,Christian Bale,1241132540 +88282,33794,dark,1241132552 +88282,33794,dark hero,1241132554 +88282,33794,Gary Oldman,1241132564 +88282,33794,melancholy,1241132566 +88282,33794,Morgan Freeman,1241132569 +88282,33794,stylized,1241132571 +88282,34048,action,1241223813 +88282,34048,alien invasion,1241223781 +88282,34048,aliens,1241223782 +88282,34048,better than the old version,1241223776 +88282,34048,father daughter relationship,1241223803 +88282,34048,overrated,1241223806 +88282,34048,remake,1241223808 +88282,34048,single father,1241223799 +88282,34048,Steven Spielberg,1241223796 +88282,34048,Tom Cruise,1241223784 +88282,34048,weak ending,1241223786 +88282,34048,worst ending ever,1241223791 +88282,34150,boring,1241564093 +88282,34150,Jessica Alba,1241564102 +88282,34405,action,1241129271 +88282,34405,adventure,1241129274 +88282,34405,aliens,1241129276 +88282,34405,assassin,1241129291 +88282,34405,black comedy,1241129294 +88282,34405,cult film,1241129296 +88282,34405,drama,1241129299 +88282,34405,dystopia,1241129302 +88282,34405,ensemble cast,1241129304 +88282,34405,friendship,1241129306 +88282,34405,great dialogue,1241129286 +88282,34405,irreverent,1241129309 +88282,34405,murder,1241129311 +88282,34405,quirky,1241129314 +88282,34405,sci-fi,1241129315 +88282,34405,space,1241129317 +88282,34405,western,1241129319 +88282,34405,witty,1241129280 +88282,35836,comedy,1241128253 +88282,35836,eccentricity,1241128255 +88282,35836,funny,1241128257 +88282,35836,geeks,1241128259 +88282,35836,great dialogue,1241128261 +88282,35836,hilarious,1241128263 +88282,35836,marijuana,1241128266 +88282,35836,Paul Rudd,1241128290 +88282,35836,romance,1241128271 +88282,35836,romantic comedy,1241128274 +88282,35836,seth rogen,1241128304 +88282,35836,sex,1241128276 +88282,35836,sex comedy,1241128278 +88282,35836,small business,1241128280 +88282,35836,Steve Carell,1241128282 +88282,35836,virginity,1241128283 +88282,38038,funny,1241128475 +88282,38038,inventive,1241128455 +88282,38038,parody,1241128494 +88282,38038,quirky,1241128467 +88282,38038,satirical,1241128487 +88282,38038,silly,1241128472 +88282,38061,black comedy,1257717460 +88282,38061,caper,1257717467 +88282,38061,clever,1257717469 +88282,38061,fast-paced dialogue,1257717462 +88282,38061,Film Noir,1257717464 +88282,38061,satire,1257717480 +88282,39183,beautiful,1241127351 +88282,39183,bittersweet,1241127353 +88282,39183,Heath Ledger,1241127356 +88282,39183,homosexuality,1241127359 +88282,39183,intimate,1241127361 +88282,39183,melancholy,1241127367 +88282,39183,poignant,1241127373 +88282,39183,sexuality,1241127376 +88282,39183,Tragedy,1241127378 +88282,40617,dark,1241223358 +88282,40617,homeless,1241223364 +88282,40617,rats,1241223370 +88282,40617,underground trains,1241223388 +88282,40732,cave,1241127004 +88282,40732,false ending,1241127083 +88282,40732,good dialouge,1241127025 +88282,40732,goretastic,1241127011 +88282,40732,horror,1241127013 +88282,40732,sick plot,1241127016 +88282,40732,stylized,1241127063 +88282,40732,twist ending,1241127079 +88282,40815,adventure,1241131062 +88282,40815,big budget,1241131064 +88282,40815,boarding school,1241131066 +88282,40815,competition,1241131072 +88282,40815,dark,1241131110 +88282,40815,destiny,1241131082 +88282,40815,England,1241131089 +88282,40815,fantasy,1241131091 +88282,40815,Gary Oldman,1241131093 +88282,40815,ghosts,1241131095 +88282,40815,magic,1241131099 +88282,40815,teenagers,1241131100 +88282,40815,tragic,1241131107 +88282,40815,Wizards,1241131102 +88282,40819,bittersweet,1241128521 +88282,40819,drug abuse,1241128523 +88282,40819,DRUG ADDICTION,1241128525 +88282,40819,Joaquin Phoenix,1241128527 +88282,40819,Johnny Cash,1241128529 +88282,40819,love,1241128532 +88282,40819,music business,1241128535 +88282,40819,Reese Witherspoon,1241128537 +88282,40819,Southern theme,1241128540 +88282,40819,true story,1241128543 +88282,40870,coming of age,1241127296 +88282,40870,drugs,1241127299 +88282,40870,ECCENTRIC FAMILIES,1241127301 +88282,40870,gay,1241127304 +88282,40870,good direction,1241127309 +88282,40870,homosexuality,1241127313 +88282,40870,humorous,1241127316 +88282,40870,MISFITS AND OUTSIDERS,1241127324 +88282,40870,quirky,1241127328 +88282,41569,adventure,1241225688 +88282,41569,big budget,1241225690 +88282,41569,dinosaurs,1241225693 +88282,41569,Dynamic CGI Action,1241225695 +88282,41569,emotional,1241225700 +88282,41569,great ending,1241225698 +88282,41569,Naomi Watts,1241225708 +88282,41569,Peter Jackson,1241225715 +88282,41569,remake,1241225717 +88282,41569,romance,1241225718 +88282,41569,stupid,1241225720 +88282,42723,Disappointing,1243984764 +88282,42723,Disgusting,1243984761 +88282,42723,stupid stereotypes,1243984751 +88282,42723,twisted,1243984758 +88282,45880,atmospheric,1241130331 +88282,45880,costume drama,1241130334 +88282,45880,France,1241130336 +88282,45880,great cinematography,1241130371 +88282,45880,great soundtrack,1241130362 +88282,45880,historical,1241130338 +88282,45880,isolation,1241130376 +88282,45880,Jason Schwartzman,1241130340 +88282,45880,Kirsten Dunst,1241130342 +88282,45880,lavish,1241130344 +88282,45880,lyrical,1241130346 +88282,45880,Sofia Coppola,1241130348 +88282,45880,stylized,1241130351 +88282,45880,trapped,1241130380 +88282,45880,Versailles,1241130353 +88282,46965,B-movie,1241122320 +88282,46965,campy,1241122324 +88282,46965,Cult film,1241122327 +88282,46965,hilarity,1241122329 +88282,46965,quotable,1241122333 +88282,46965,Samuel L. Jackson,1241122336 +88282,46965,Sexualized violence,1241122339 +88282,46965,Snakes,1241122341 +88282,46976,Maggie Gyllenhaal,1245618868 +88282,46976,modern fantasy,1245618855 +88282,46976,quirky romantic,1245618850 +88282,46976,schizophrenia,1245618852 +88282,46976,surreal,1245618846 +88282,47970,boring,1275137308 +88282,47970,Didn't finish.,1275137361 +88282,47970,moronic,1275137301 +88282,47970,nailing hot college chicks,1275137322 +88282,47970,Zach Braff,1275137319 +88282,48082,artsy,1241122377 +88282,48082,Bechdel Test:Pass,1241126314 +88282,48082,bittersweet,1241122380 +88282,48082,Charlotte Gainsbourg,1241122382 +88282,48082,dreams,1241122387 +88282,48082,fantasy,1241122390 +88282,48082,Gael García Bernal,1241122394 +88282,48082,Michel Gondry,1241122398 +88282,48082,psychology,1241122401 +88282,48082,quirky,1241122405 +88282,48082,stylized,1241122408 +88282,48082,surreal,1241122413 +88282,48516,atmospheric,1241131675 +88282,48516,Crime,1241131676 +88282,48516,gangster,1241131679 +88282,48516,gangsters,1241131681 +88282,48516,great acting,1241131683 +88282,48516,Jack Nicholson,1241131685 +88282,48516,Leonardo DiCaprio,1241131687 +88282,48516,Mafia,1241131688 +88282,48516,Martin Scorsese,1241131690 +88282,48516,Matt Damon,1241131693 +88282,48516,murder,1241131696 +88282,48516,organized crime,1241131698 +88282,48516,police,1241131726 +88282,48516,police corruption,1241131727 +88282,48516,tense,1241131730 +88282,48516,undercover cop,1241131731 +88282,48516,violence,1241131733 +88282,51255,action,1241130793 +88282,51255,action spoof,1241130795 +88282,51255,black comedy,1241130798 +88282,51255,british comedy,1241130800 +88282,51255,buddy movie,1241130802 +88282,51255,comedy,1241130803 +88282,51255,cops,1241130806 +88282,51255,Edgar Wright,1241130807 +88282,51255,macabre,1241130810 +88282,51255,murder,1241130812 +88282,51255,Nick Frost,1241130813 +88282,51255,parody,1241130815 +88282,51255,police,1241130816 +88282,51255,Simon Pegg,1241130818 +88282,51255,small town,1241130820 +88282,51255,surreal,1241130823 +88282,52281,Action,1241131243 +88282,52281,adultery,1241131247 +88282,52281,cherry darling,1241131345 +88282,52281,Crime,1241131249 +88282,52281,genre spoof,1241131250 +88282,52281,Gore,1241131252 +88282,52281,Kurt Russell,1241131255 +88282,52281,machine gun leg,1241131333 +88282,52281,motorcycle,1241131257 +88282,52281,murder,1241131259 +88282,52281,Quentin Tarantino,1241131261 +88282,52281,rape,1241131263 +88282,52281,Robert Rodriguez,1241131264 +88282,52281,Sci-fi,1241131266 +88282,52281,serial killer,1241131269 +88282,52281,strippers,1241131339 +88282,52281,violence,1241131270 +88282,52281,zombies,1241131272 +88282,52952,atmospheric,1241128603 +88282,52952,bullying,1241128564 +88282,52952,childhood,1241128566 +88282,52952,coming of age,1241128568 +88282,52952,complex,1241128596 +88282,52952,England,1241128570 +88282,52952,father figure,1241128572 +88282,52952,friendship,1241128574 +88282,52952,great soundtrack,1241128612 +88282,52952,INNOCENCE LOST,1241128576 +88282,52952,nationalism,1241128578 +88282,52952,racism,1241128581 +88282,52952,skinhead,1241128584 +88282,52952,suburbia,1241128586 +88282,52952,teenager,1241128589 +88282,53519,car chase,1241127119 +88282,53519,great dialogue,1241127163 +88282,53519,great soundtrack,1241127173 +88282,53519,grindhouse,1241127122 +88282,53519,jukebox,1241127124 +88282,53519,Kick-Butt Women,1241127127 +88282,53519,Kurt Russell,1241127130 +88282,53519,margaritas,1241127193 +88282,53519,Quentin Tarantino,1241127134 +88282,53519,Rosario Dawson,1241127136 +88282,53519,Zoe Bell,1241127139 +88282,53769,atmospheric,1241130640 +88282,53769,bittersweet,1241130735 +88282,53769,funny,1241130740 +88282,53769,great dialouge,1241130647 +88282,53769,loneliness,1241130709 +88282,53769,misanthrope,1241130727 +88282,53769,realistic,1241130769 +88282,53996,android(s)/cyborg(s),1241225619 +88282,53996,boring,1241225623 +88282,53996,enormously long battle scene,1241225626 +88282,53996,giant robots,1241225629 +88282,53996,man versus machine,1241225634 +88282,53996,ridiculous,1241225661 +88282,53996,silly,1241225663 +88282,53996,transformation,1241225667 +88282,54503,comedy,1241122026 +88282,54503,crude,1241122028 +88282,54503,friendship,1241122031 +88282,54503,mclovin,1241122056 +88282,54503,Michael Cera,1241122035 +88282,54503,nerds,1241122037 +88282,54503,party,1241122040 +88282,54503,police,1241122043 +88282,54503,self discovery,1241122045 +88282,54503,Seth Rogen,1241122049 +88282,55052,childhood,1241128042 +88282,55052,imagination,1241128045 +88282,55052,James McAvoy,1241128047 +88282,55052,Joe Wright,1241128050 +88282,55052,Keira Knightley,1241128053 +88282,55052,letters,1241128056 +88282,55052,life,1241128058 +88282,55052,non-linear,1241128060 +88282,55052,regrets,1241128062 +88282,55052,romance,1241128065 +88282,55052,Tragedy,1241128038 +88282,55052,war,1241128068 +88282,55442,alienation,1241129797 +88282,55442,childhood,1241129766 +88282,55442,coming of age,1241129768 +88282,55442,depression,1241129770 +88282,55442,fundamentalism,1241129772 +88282,55442,History,1241129774 +88282,55442,Iran,1241129776 +88282,55442,melancholy,1241129778 +88282,55442,politics,1241129779 +88282,55442,punk,1241129781 +88282,55442,punk rock,1241129783 +88282,55442,revolution,1241129785 +88282,55442,TOTALITARIAN STATES,1241129789 +88282,55442,university,1241129791 +88282,55444,beautiful,1241131788 +88282,55444,biography,1241131790 +88282,55444,epilepsy,1241131800 +88282,55444,EXTRAMARITAL AFFAIRS,1241131805 +88282,55444,great acting,1241131808 +88282,55444,great music,1241131810 +88282,55444,hanging,1241131803 +88282,55444,heartwrenching,1241131812 +88282,55444,joy division,1241131814 +88282,55444,manchester,1241131817 +88282,55444,marriage,1241131819 +88282,55444,rock and roll,1241131822 +88282,55444,suicide,1241131825 +88282,55444,true story,1241131826 +88282,55830,amateur film making,1241132386 +88282,55830,copyright,1241132389 +88282,55830,creativity,1241132392 +88282,55830,FILMMAKING,1241132395 +88282,55830,heartwarming,1241132420 +88282,55830,Jack Black,1241132397 +88282,55830,jazz,1241132432 +88282,55830,Mia Farrow,1241132399 +88282,55830,Michel Gondry,1241132401 +88282,55830,Mos Def,1241132403 +88282,55830,quirky,1241132416 +88282,55830,small business,1241132428 +88282,55830,vhs,1241132407 +88282,55830,video store,1241132405 +88282,55830,videotape,1241132409 +88282,56145,antichristian,1241123192 +88282,56145,apocalypse,1241123195 +88282,56145,disaster,1241123199 +88282,56145,father-son relationship,1241123201 +88282,56145,Frank Darabont,1241123204 +88282,56145,giant monster,1241123207 +88282,56145,insects,1241123209 +88282,56145,monster,1241123211 +88282,56145,preacher,1241123214 +88282,56145,sacrilege,1241123217 +88282,56145,supermarket,1241123220 +88282,56145,Survival,1241123223 +88282,56152,Amy Adams,1241223460 +88282,56152,Below R,1241223462 +88282,56152,Disney almost making fun of itself,1241223464 +88282,56152,Musical,1241223472 +88282,56152,romance,1241223475 +88282,56367,adoption,1241123466 +88282,56367,comedy,1241123468 +88282,56367,cult film,1241123471 +88282,56367,Ellen Page,1241123474 +88282,56367,everything,1275695352 +88282,56367,excellent script,1241123476 +88282,56367,feel good movie,1275695377 +88282,56367,foul language,1241123478 +88282,56367,great soundtrack,1275695374 +88282,56367,high school,1241123480 +88282,56367,hilarious,1241123484 +88282,56367,Michael Cera,1241123489 +88282,56367,notable soundtrack,1241123492 +88282,56367,soundtrack,1275695368 +88282,56367,teenager,1241123496 +88282,56367,witty,1241123498 +88282,56782,capitalism,1241224842 +88282,56782,Daniel Day-Lewis,1241224844 +88282,56782,father-son relationship,1241224846 +88282,56782,greed,1241224848 +88282,56782,mining,1241224864 +88282,56782,morality,1241224862 +88282,56782,religion,1241224868 +88282,57509,Eliza Dushku,1241223400 +88282,57509,psychiatrist as character,1241223402 +88282,57509,tragedy,1241223405 +88282,58334,great soundtrack,1241131211 +88282,58334,Jamie Bell,1241131214 +88282,58334,obsession,1241131223 +88282,58334,voyeurism,1241131230 +88282,58559,action,1241131742 +88282,58559,Batman,1241131744 +88282,58559,Christian Bale,1241131746 +88282,58559,dark,1241131753 +88282,58559,Gary Oldman,1241131755 +88282,58559,gritty,1241131756 +88282,58559,harsh,1241131760 +88282,58559,Heath Ledger,1241131762 +88282,58559,Maggie Gyllenhaal,1241131764 +88282,58559,Michael Caine,1241131766 +88282,58559,Morgan Freeman,1241131768 +88282,58559,murder,1241131772 +88282,58559,serial killer,1241131774 +88282,58559,superhero,1241131776 +88282,59725,depression,1241225371 +88282,59725,fashion,1241225372 +88282,59725,infidelity,1241225374 +88282,59725,left at the altar,1241225378 +88282,59725,Los Angeles,1241225380 +88282,59725,personal assistant,1241225382 +88282,59725,romance,1241225385 +88282,59725,wedding,1241225388 +88282,59729,incest,1238624822 +88282,59995,dark,1241132139 +88282,59995,depressing,1241132137 +88282,59995,haunting,1241132181 +88282,59995,intelligent,1241132174 +88282,59995,moving,1241132178 +88282,59995,prison,1241132162 +88282,59995,suicide,1241132156 +88282,60072,rats,1241225890 +88282,60074,bad ending,1241224955 +88282,60074,bad script,1241224969 +88282,60074,better than expected,1241224994 +88282,60074,Charlize Theron,1241224991 +88282,60074,Jason Bateman,1241224988 +88282,60074,mentor/trainer,1241224985 +88282,60074,messy,1241224959 +88282,60074,not as good as I expected,1241225002 +88282,60074,plot twist,1241224981 +88282,60074,public relations,1241224978 +88282,60074,Will Smith,1241224992 +88282,60894,biography,1241223425 +88282,60894,Cillian Murphy,1241223433 +88282,60894,dylan thomas,1241223426 +88282,60894,Keira Knightley,1241223435 +88282,60894,poetry,1241223428 +88282,60894,Sienna Miller,1241223437 +88282,60894,wales,1241223430 +88282,61729,Greg Kinnear,1252698054 +88282,61729,grumpy,1252698093 +88282,61729,MIsanthrope,1252698070 +88282,61729,mummy dental analysis,1252698099 +88282,61729,Téa Leoni,1252698103 +88282,62155,cute,1245842602 +88282,62155,great soundtrack,1245842596 +88282,62155,Kat Dennings,1245842591 +88282,62155,Michael Cera,1245842594 +88282,62155,mixtape,1298659339 +88282,63082,cinematography,1241128910 +88282,63082,dark side of India,1241128913 +88282,63082,extraordinary,1241128960 +88282,63082,life story,1241128915 +88282,63082,love,1241128917 +88282,63082,music,1241128919 +88282,63082,poverty,1241128925 +88282,63082,RAGS TO RICHES,1241128927 +88282,63082,slum,1241128929 +88282,63082,torture,1241128940 +88282,63082,violence,1241128931 +88282,63436,Julie Benz,1276468310 +88282,63436,Scott Patterson,1276468290 +88282,63992,Catherine Hardwicke,1241132998 +88282,63992,emo,1241133001 +88282,63992,fantasy,1241133004 +88282,63992,high school,1241133009 +88282,63992,HIGH SCHOOL LIFE,1241133007 +88282,63992,Kristen Stewart,1241133011 +88282,63992,romance,1241133014 +88282,63992,Supernatural Power,1241133016 +88282,63992,Vampire Human Love,1241133018 +88282,63992,Vampire vs Vampire,1241133021 +88282,63992,vampires,1241133023 +88282,65130,abortion,1241122709 +88282,65130,Bechdel Test:Pass,1241126364 +88282,65130,dreams,1241122715 +88282,65130,infidelity,1241122717 +88282,65130,Kate Winslet,1241122719 +88282,65130,Leonardo DiCaprio,1241122723 +88282,65130,life philosophy,1241122725 +88282,65130,life reflection,1241122728 +88282,65130,relationships,1241122733 +88282,65130,Sam Mendes,1241122737 +88282,65130,satisfaction in life,1241122740 +88282,65817,pointless nudity,1252448182 +88282,66090,british,1246227078 +88282,66090,dark,1246227084 +88282,66090,depressing,1246227095 +88282,66090,ensemble cast,1246227000 +88282,66090,GREAT ENDING,1246226973 +88282,66090,intelligent,1246226986 +88282,66090,jack o'connell,1246227075 +88282,66090,kelly reilly,1246227065 +88282,66090,layered,1246227020 +88282,66090,scary,1246226991 +88282,66090,Tense.,1246227026 +88282,66090,twist,1246227046 +88282,66090,underrated,1246227014 +88282,68073,dissapointing,1261083579 +88282,68358,alternate reality,1241905267 +88282,68358,murder,1241905271 +88282,68952,Alison Lohman,1243710942 +88282,68952,Edge of your seat,1243710884 +88282,68952,engaging,1243710911 +88282,68952,funny,1243710864 +88282,68952,tongue-in-cheek,1243710899 +88282,69134,atmospheric,1263853133 +88282,69134,beautiful scenery,1263853135 +88282,69134,Charlotte Gainsbourg,1263853131 +88282,69134,cinematography,1263853138 +88282,69134,Lars von Trier,1263853155 +88282,69134,Loss of child,1263853141 +88282,69134,special,1263853147 +88282,69134,Strange,1263853148 +88282,69134,weird,1263853151 +88282,69134,Willem Dafoe,1263853153 +88282,69844,Alan Rickman,1247772814 +88282,69844,better than the book,1247772820 +88282,69844,Comedy,1247772899 +88282,69844,Daniel Radcliffe,1247772830 +88282,69844,David Yates,1247772859 +88282,69844,Direction,1247772878 +88282,69844,Emma Watson,1247772826 +88282,69844,Ending,1247772907 +88282,69844,Lavender Brown,1247772889 +88282,69844,no Gaunts,1247772845 +88282,69844,Saturation,1247772867 +88282,69844,shorter than the book,1247772851 +88282,69844,Snape,1247772902 +88282,70643,future cult flick,1299520801 +88282,71379,not scary,1259864609 +88282,71520,Jonah Hill,1256075511 +88282,71520,not funny,1256075522 +88282,71520,Ricky Gervais,1256075542 +88282,71535,Bill Murray,1256132625 +88282,73266,Michael Cera,1265734621 +88282,74458,asylum,1270670752 +88282,74458,insanity,1270670758 +88282,74458,Martin Scorsese,1270670745 +88282,74458,Michelle Williams,1270670760 +88282,74458,psychological,1270670743 +88282,77561,Sam Rockwell,1273509028 +88282,85510,abbie cornish,1301943141 +88282,85510,ending,1301943131 +88296,593,horror,1429383293 +88296,593,murder,1429383293 +88296,593,suspense,1429383293 +88296,119145,british comedy,1432991965 +88296,119145,spy thriller,1432991974 +88298,260,action,1434730684 +88298,260,classic sci-fi,1434730662 +88298,26326,hallucinatory,1434731468 +88298,26326,Jodorowsky,1434731466 +88298,26326,psychedelic,1434731471 +88298,26326,surreal,1434731463 +88298,26326,symbolism,1434731475 +88298,26326,weird,1434731473 +88298,62511,Charlie Kaufman,1434731025 +88298,62511,Philip Seymour Hoffman,1434731021 +88298,62511,philosophy,1434731029 +88298,62511,surreal,1434731013 +88298,62511,thought-provoking,1434731018 +88298,68237,atmospheric,1434751874 +88298,93840,clever,1434730975 +88298,93840,meta,1434730986 +88298,93840,original,1434730991 +88298,93840,witty,1434730984 +88298,94466,dark,1434731096 +88298,94466,social commentary,1434731096 +88298,94466,thought-provoking,1434731096 +88316,81591,psychological,1296948434 +88318,22,thriller,1368934161 +88318,31,inspirational,1368933234 +88318,111,dark,1368933085 +88318,111,mental illness,1368933252 +88318,161,tense,1368933716 +88318,216,stupid,1368933690 +88318,440,politics,1368933668 +88318,474,tense,1368933716 +88318,519,franchise,1368933185 +88318,555,violent,1368934176 +88318,832,tense,1368933716 +88318,832,thriller,1368934161 +88318,861,police,1368933645 +88318,1089,violent,1368934176 +88318,1095,ensemble cast,1368933113 +88318,1104,mental illness,1368933252 +88318,1206,violent,1368934176 +88318,1214,tense,1368933716 +88318,1228,oscar (best cinematography),1368933593 +88318,1262,ensemble cast,1368933113 +88318,1266,oscar (best cinematography),1368933593 +88318,1287,christianity,1368933064 +88318,1302,father-son relationship,1368933161 +88318,1357,mental illness,1368933252 +88318,1390,politics,1368933668 +88318,1396,ensemble cast,1368933113 +88318,1464,mystery,1368933535 +88318,1589,ensemble cast,1368933113 +88318,1597,thriller,1368934161 +88318,1610,thriller,1368934161 +88318,1945,black and white,1368933034 +88318,1950,police,1368933645 +88318,1953,oscar (best cinematography),1368933593 +88318,1954,oscar (best cinematography),1368933593 +88318,2024,christianity,1368933064 +88318,2058,tense,1368933716 +88318,2076,dark,1368933085 +88318,2335,stupid,1368933690 +88318,2353,thriller,1368934161 +88318,2383,police,1368933645 +88318,2490,violent,1368934176 +88318,2944,ensemble cast,1368933113 +88318,2959,violent,1368934176 +88318,3146,stupid,1368933691 +88318,3178,inspirational,1368933234 +88318,3256,thriller,1368934161 +88318,3273,franchise,1368933185 +88318,3362,police,1368933645 +88318,3440,franchise,1368933185 +88318,3519,nazis,1368933552 +88318,3980,inspirational,1368933234 +88318,4019,inspirational,1368933234 +88318,4034,oscar (best cinematography),1368933593 +88318,4306,pixar,1368933615 +88318,4388,stupid,1368933690 +88318,4865,dark,1368933085 +88318,4974,stupid,1368933691 +88318,5107,nazis,1368933552 +88318,5218,pixar,1368933615 +88318,5444,pixar,1368933615 +88318,5785,stupid,1368933690 +88318,6323,mystery,1368933535 +88318,6537,franchise,1368933185 +88318,6808,nazis,1368933552 +88318,7153,oscar (best cinematography),1368933593 +88318,7160,mental illness,1368933252 +88318,8360,pixar,1368933615 +88318,8781,politics,1368933668 +88318,9013,Nixon,1150995062 +88318,33660,inspirational,1368933234 +88318,51540,police,1368933645 +88318,52283,Bible,1176348250 +88318,52283,Biblical,1176348251 +88318,53121,franchise,1368933185 +88318,55290,police,1368933645 +88318,59429,nudity (topless - notable),1368933576 +88318,63113,franchise,1368933185 +88318,74458,mystery,1368933536 +88400,260,futuristic,1434354933 +88400,260,sci-fi,1434354937 +88400,1079,black comedy,1442420787 +88400,1079,dark comedy,1442420800 +88400,1079,John Cleese,1442420785 +88400,1079,quirky,1442420795 +88400,1079,witty,1442420794 +88400,1233,German,1446048774 +88400,1233,realistic,1446048760 +88400,1233,submarine,1446048753 +88400,1233,thought-provoking,1446048770 +88400,1233,too long,1446048764 +88400,3448,Based on a true story,1446306547 +88400,3448,rock and roll,1446306555 +88400,68073,Music,1439928846 +88400,68073,rock and roll,1439928813 +88400,81537,road trip,1435428756 +88400,115713,artificial intelligence,1444668664 +88400,115713,futuristic,1444668670 +88405,260,EPIC,1443871198 +88405,260,space adventure,1443871202 +88406,33683,New French Extremity,1340223090 +88406,39231,good but not as good as garden state,1146498283 +88406,44199,bank robbery,1145214479 +88406,62203,New French Extremity,1340140609 +88406,76772,french,1423333581 +88406,76772,gaspar noé,1423333581 +88406,76772,new french extremity,1423333581 +88406,119218,based on a comic,1420046286 +88406,119218,vigilante,1420046286 +88406,119218,violent,1420046286 +88407,260,awesome,1430831900 +88407,260,death star,1430831916 +88407,260,Harrison Ford,1430831889 +88407,260,jedi,1430831894 +88407,260,light saber,1430831928 +88407,260,sci-fi,1430831880 +88420,110,historically inaccurate,1433117514 +88420,110,mel gibson,1433117468 +88420,170,Angelina Jolie,1432950789 +88420,170,campy,1432950801 +88420,170,cult film,1432950792 +88420,170,cyberpunk,1432950781 +88420,170,hackers,1432950786 +88420,170,inaccurate,1432950784 +88420,260,action,1432946254 +88420,260,camp sci fi,1432946203 +88420,260,fantasy,1432946213 +88420,260,space action,1432946249 +88420,296,comedy,1432946860 +88420,296,tarantino,1432946860 +88420,296,violence,1432946860 +88420,1204,atmospheric,1432946760 +88420,1204,best movie of all time,1432946777 +88420,1204,cinematography,1432946756 +88420,1204,desert,1432946763 +88420,1204,epic,1432946755 +88420,1204,History,1432946777 +88420,1204,Middle East,1432946765 +88420,1207,oscar for best actor stolen from o'toole,1432949059 +88420,1965,black comedy,1433119990 +88420,1965,cult classic,1433120001 +88420,1965,dark comedy,1433119991 +88420,1965,punk,1433119991 +88420,2361,campy,1432948012 +88420,2361,controversial,1432948018 +88420,2361,cult film,1432948028 +88420,2361,Divine,1432948011 +88420,2361,filth,1432947994 +88420,2361,John Waters,1432948002 +88420,2361,low budget,1432948015 +88420,2361,raunchy,1432948021 +88420,2361,sexual,1432948023 +88420,3300,good concept,1432951155 +88420,3300,sci-fi,1432951162 +88420,3578,Joaquin Phoenix,1433117684 +88420,3578,Russell Crowe,1433117649 +88420,3753,historically inaccurate,1433119719 +88420,3753,Mel Gibson,1433119702 +88420,4246,Colin Firth,1433119925 +88420,4246,Jane Austen,1433119934 +88420,5445,Philip K. Dick,1433119583 +88420,5445,Tom Cruise,1433119582 +88420,6184,David Bowie,1433117389 +88420,6184,surreal,1433117391 +88420,6713,Satoshi Kon,1433117216 +88420,7143,historically inaccurate,1433117592 +88420,7143,More self-glorification tomfoolery from Cruise,1433117615 +88420,7143,Tom Cruise,1433117621 +88420,7920,controversial,1432948081 +88420,7920,cult film,1432948091 +88420,7920,filth,1432948076 +88420,7920,John Waters,1432948075 +88420,26776,aviation,1433117239 +88420,26776,Hayao Miyazaki,1433117255 +88420,26776,Japan,1433117257 +88420,26776,Studio Ghibli,1433117255 +88420,48516,Mark Wahlberg,1433119669 +88420,52806,Goro Miyazaki,1433118572 +88420,52806,objectively terrible,1433118563 +88420,85438,beautiful scenery,1432947816 +88420,85438,beautifully filmed,1432947817 +88420,85438,Cinematography,1432947836 +88420,85438,gothic,1432947826 +88420,85438,horror,1432947827 +88420,85438,literature,1432947860 +88420,93721,craftmanship,1433118633 +88420,93721,documentary,1433118626 +88420,93721,Japan,1433118624 +88420,93721,pretentious,1433118615 +88420,93721,sushi,1433118624 +88420,93721,Tokyo,1433118631 +88441,2692,german movie,1451809098 +88441,109374,hotel,1451809035 +88460,3,moldy,1153650486 +88460,3,old,1153650483 +88460,597,girlie movie,1153650488 +88460,597,Julia Roberts,1153650490 +88460,597,romance,1153650491 +88460,2640,comic book,1153650480 +88460,2640,superhero,1153650477 +88467,51662,action,1189505958 +88467,51662,atmospheric,1189505995 +88467,51662,author:Frank Miller,1189505981 +88467,51662,Based on a comic book,1189506054 +88467,51662,comic,1189505970 +88467,51662,fighting,1189506009 +88467,51662,Graphic Novel,1189505950 +88467,51662,HEROIC MISSION,1189505990 +88467,51662,narrated,1189506020 +88467,51662,sword fight,1189506039 +88467,51662,unintentionally funny,1189506000 +88467,53953,author:Stephen King,1189505896 +88467,53953,horror,1189505902 +88467,53953,Hotel,1189505911 +88467,53953,setting:hotel,1189505915 +88476,260,heroic,1422369560 +88476,260,mind control,1422369560 +88476,260,space opera,1422369560 +88484,5222,cute,1284417158 +88484,7346,coming of age,1284416902 +88484,7346,Elisha Cuthbert,1284416889 +88484,7346,Nudity (Topless),1284416896 +88484,70567,Rose Byrne,1288034214 +88484,74488,Sigur Rós,1286054344 +88484,79796,Olga Kurylenko,1284297553 +88490,66691,Morgan Freeman,1250325261 +88501,750,anti-war,1432552096 +88501,750,dark comedy,1432552079 +88501,750,politics,1432552095 +88501,7419,absurd,1410354388 +88501,46976,insanity,1443307720 +88501,46976,modern fantasy,1443307701 +88501,46976,writing,1443307691 +88501,72104,animation,1422706088 +88501,72104,dark,1422706088 +88501,72104,philosophy,1422706088 +88501,100106,ideology,1431622376 +88501,100106,philosophy,1431622376 +88501,100106,zyzek,1431622376 +88501,113374,poverty,1453592314 +88501,143043,Horror,1443308485 +88501,143043,long take,1443308512 +88501,143043,persian,1443308722 +88505,260,action,1444964877 +88505,260,Action comedy,1444964898 +88505,260,drama,1444964892 +88505,260,sci-fi,1444964865 +88550,50,complicated,1404325464 +88550,50,funny,1404325470 +88550,50,heist,1404325488 +88550,50,mystery,1404325492 +88550,50,organized crime,1404325508 +88550,50,Oscar (Best Supporting Actor),1404325497 +88550,50,suspense,1404325472 +88550,50,twist ending,1404325476 +88550,50,violence,1404325478 +88550,2729,cynical,1404359737 +88550,2729,erotic,1404359740 +88550,2729,paranoia,1404359733 +88550,2729,satirical,1404359727 +88550,2729,sexy,1404359718 +88550,4844,Funny,1404325619 +88550,4844,heist,1404325621 +88550,5418,conspiracy,1404330002 +88550,5418,espionage,1404330010 +88550,5418,mystery,1404330031 +88550,5418,spying,1404330006 +88550,6708,con men,1404325563 +88550,6708,Exceptional Acting,1404325569 +88550,6708,father daughter relationship,1404325586 +88550,6708,Quirky,1404325578 +88550,6708,twist ending,1404325558 +88550,69122,Nudity (Topless),1404330211 +88550,69122,strippers,1404330217 +88550,90717,Alan Alda,1404325785 +88550,90717,heist,1404325779 +88553,260,classic,1440052272 +88553,260,nerdy,1440052285 +88553,260,sci-fi,1440052260 +88586,66934,anti-hero,1430133641 +88586,66934,bittersweet,1430133662 +88586,66934,great soundtrack,1430133657 +88586,66934,joss whedon,1430133643 +88600,3752,Funny as hell,1186505183 +88600,4262,gangster,1186505184 +88600,4270,action,1186505208 +88600,4367,greatest movie of all time,1186505229 +88600,33493,star wars,1186505185 +88608,32,original,1368663638 +88608,47,Brad Pitt,1354088290 +88608,296,masterpiece,1368663717 +88608,318,great ending,1368663902 +88608,904,suspenseful,1368663847 +88608,1088,dancing,1368663886 +88608,1089,original,1368663639 +88608,1219,suspenseful,1368663847 +88608,1258,masterpiece,1368663717 +88608,1387,suspenseful,1368663847 +88608,1968,teen movie,1368663830 +88608,2144,teen movie,1368663831 +88608,2291,original,1368663638 +88608,2710,Handycam,1354088346 +88608,2710,low budget,1354088351 +88608,3499,suspenseful,1368663847 +88608,3791,dancing,1368663886 +88608,4878,original,1368663638 +88608,5266,suspenseful,1368663847 +88608,5693,dancing,1368663886 +88608,42723,splatter,1368663784 +88608,48516,original,1368663639 +88620,2997,surreal,1357139006 +88620,5902,Nicholas Cage,1357138554 +88620,5902,nudity,1357138561 +88620,5902,quirky,1357138578 +88620,5903,pretentious,1357138868 +88620,5903,unbelievable,1357138877 +88620,5903,unbelievable characters,1357138887 +88620,6333,wolverine,1357085528 +88620,6773,animation,1372288885 +88620,6773,characters,1372288899 +88620,6773,french,1372288914 +88620,6773,plot,1372288894 +88620,6773,quirky,1372288877 +88620,6773,silent,1372288923 +88620,31952,favorite,1414167046 +88620,62336,random,1407104734 +88620,66097,imaginative,1357084474 +88620,66097,surreal,1357084501 +88620,93721,giant advertisement,1406555150 +88620,93721,Japan,1406555126 +88620,94959,characters,1372296183 +88620,94959,story,1372296178 +88620,94959,style,1372296206 +88620,96737,favorite,1414163101 +88620,96737,strong female,1414168884 +88620,96737,strong female protagonist,1414168860 +88620,98607,anime,1406555092 +88620,98607,fun,1406555063 +88620,98607,sci fi,1406555084 +88620,105703,light mood,1406555029 +88620,106920,love,1445803770 +88620,106920,quirky,1445803764 +88621,521,neo-noir,1367861769 +88621,745,claymation,1142126585 +88621,1068,noir thriller,1367861435 +88621,1148,claymation,1142126599 +88621,1162,jesus,1367861347 +88621,1223,claymation,1142126594 +88621,1359,arnold,1367861622 +88621,1422,conspiracy theory,1367874341 +88621,1544,spielberg,1367874485 +88621,1693,spielberg,1367874486 +88621,2579,neo-noir,1367861769 +88621,2739,spielberg,1367874485 +88621,2819,conspiracy theory,1367874342 +88621,3153,dragon,1367874375 +88621,3489,spielberg,1367874485 +88621,3698,arnold,1367861622 +88621,3986,arnold,1367861622 +88621,3997,dragon,1367874375 +88621,4091,cheerleading,1367861608 +88621,4189,christian,1367861718 +88621,4189,jesus,1367861347 +88621,4370,spielberg,1367874487 +88621,4558,arnold,1367861622 +88621,4612,jesus,1367861347 +88621,4795,stranded,1367861480 +88621,5146,dark hero,1367861538 +88621,5363,cheerleading,1367861608 +88621,5882,treasure,1367861390 +88621,5893,neo-noir,1367861769 +88621,5942,cheerleading,1367861608 +88621,6157,dark hero,1367861538 +88621,6260,christian,1367861719 +88621,6609,jesus,1367861347 +88621,6768,christian,1367861719 +88621,6986,jesus,1367861347 +88621,7004,arnold,1367861622 +88621,7217,noir thriller,1367861435 +88621,7223,noir thriller,1367861435 +88621,7335,noir thriller,1367861435 +88621,7373,dark hero,1367861537 +88621,7943,noir thriller,1367861436 +88621,8711,screwball comedy,1367861669 +88621,8972,conspiracy theory,1367874342 +88621,25927,noir thriller,1367861436 +88621,26398,mars,1367861517 +88621,27822,stranded,1367861480 +88621,34048,spielberg,1367874486 +88621,38038,claymation,1142126605 +88621,55732,mars,1367861517 +88621,56775,conspiracy theory,1367874341 +88621,57951,treasure,1367861391 +88621,60684,dark hero,1367861538 +88621,68554,conspiracy theory,1367874342 +88621,74624,christian,1367861719 +88621,81562,mountain climbing,1367874431 +88621,86880,treasure,1367861390 +88621,91529,dark hero,1367861538 +88621,91976,stranded,1367861480 +88621,95875,mars,1367861516 +88621,97938,stranded,1367861480 +88627,260,fantasy,1439911958 +88627,260,science fantasy,1439911963 +88642,318,long,1437227242 +88642,318,prison escape,1437227242 +88642,318,twist ending,1437227242 +88642,7254,alternate endings,1437227334 +88642,7254,alternate reality,1437227274 +88642,7254,Ashton Kutcher,1437227301 +88642,7254,Bittersweet,1437227340 +88642,7254,Child abuse,1437227297 +88642,7254,intense,1437227319 +88642,7254,love,1437227336 +88642,7254,memory,1437227304 +88642,7254,Mystery,1437227290 +88642,7254,psychology,1437227277 +88642,7254,romance,1437227338 +88642,7254,sci-fi,1437227280 +88642,7254,science fiction,1437227333 +88642,7254,suspense,1437227303 +88642,7254,thought-provoking,1437227331 +88642,7254,time travel,1437227282 +88642,7254,twist ending,1437227299 +88642,7254,twists & turns,1437227287 +88642,56339,creepy,1437265128 +88642,56339,fairy tale,1437265098 +88642,56339,foreign language,1437265120 +88642,56339,ghosts,1437265107 +88642,56339,ghosts/afterlife,1437265118 +88642,56339,Guillermo del Toro,1437265100 +88642,56339,HAUNTED BY THE PAST,1437265105 +88642,56339,haunted house,1437265130 +88642,56339,horror,1437265092 +88642,56339,husband-wife relationship,1437265122 +88642,56339,imaginary friend,1437265110 +88642,56339,mother-son relationship,1437265114 +88642,56339,orphanage,1437265125 +88642,56339,paranormal,1437265094 +88642,56339,supernatural,1437265112 +88642,56339,twist ending,1437265085 +88642,72998,3d,1437227769 +88642,72998,aliens,1437227772 +88642,72998,beautiful scenery,1437227778 +88642,72998,cgi,1437227804 +88642,72998,effects,1437227815 +88642,72998,environmental,1437227797 +88642,72998,futuristic,1437227766 +88642,72998,graphic design,1437227774 +88642,72998,James Cameron,1437227787 +88642,72998,military,1437227785 +88642,72998,racism,1437227825 +88642,72998,romance,1437227821 +88642,72998,sci-fi,1437227762 +88642,72998,Sigourney Weaver,1437227792 +88642,72998,visual,1437227807 +88642,72998,visually stunning,1437227789 +88642,72998,war,1437227795 +88642,107406,cannibalism,1437257277 +88642,107406,chris evans,1437257251 +88642,107406,dystopia,1437257243 +88642,107406,Plot twist,1437257271 +88642,107406,post-apocalyptic,1437257248 +88642,107406,social commentary,1437257246 +88642,107406,surreal,1437257275 +88642,107406,train,1437257254 +88642,107406,trains,1437257256 +88654,260,ahead of its time,1444919953 +88654,260,good vs evil,1444919929 +88654,260,sci-fi thriller,1444919945 +88665,260,"galactic Empire, Luke Skywalker",1443355222 +88698,367,carrey decline begins...,1139349414 +88704,83004,comedy,1424590852 +88704,83004,hilarious,1424590852 +88704,83004,satire,1424590852 +88704,96640,international,1422110173 +88704,96640,mass murder/terrorism,1422110173 +88704,96640,racism,1422110173 +88710,49272,007,1430049061 +88710,49272,Daniel Craig,1430049072 +88710,49272,James Bond,1430049037 +88710,49272,spies,1430049052 +88710,55768,honey,1430049303 +88710,55768,jerry seinfeld,1430049303 +88710,55768,kids and family,1430049303 +88762,1132,book,1188660701 +88762,1132,Dramatic,1188660701 +88762,1209,Modern western classics,1188660771 +88762,1277,Drama,1188660563 +88762,1277,Theater,1188660563 +88762,1298,Musical,1188660433 +88762,1729,wacky crime,1188660216 +88762,2662,Old sci-fi,1188660533 +88762,2947,spying,1188660232 +88762,6870,Drama,1188660404 +88762,45722,Adventure,1188660616 +88782,2797,Tom Hanks,1284988131 +88788,4973,beautifully filmed,1168670426 +88788,4973,feel-good,1168670454 +88788,4973,quirky,1168670276 +88788,4973,romance,1168670271 +88788,4973,romantic,1168670445 +88788,4973,seen more than once,1168670253 +88788,4973,whimsical,1168670262 +88798,223,good dialogue,1427990731 +88798,223,jay and silent bob,1427990720 +88798,353,cult film,1428693373 +88798,733,Hans Zimmer,1428659777 +88798,733,Nicolas Cage,1428659775 +88798,733,Sean Connery,1428659772 +88798,778,black comedy,1428521198 +88798,778,British,1427990985 +88798,778,dark comedy,1428521169 +88798,778,Scottish,1428521189 +88798,1197,Cult classic,1427541319 +88798,1289,landscape,1427478148 +88798,1289,nature,1427478144 +88798,1289,no narrative,1427478145 +88798,1676,fascism,1427450000 +88798,2542,british,1429976534 +88798,2542,dark comedy,1429976540 +88798,2542,hilarious,1429976546 +88798,3030,Akira Kurosawa,1427991138 +88798,3949,atmospheric,1428521236 +88798,3949,dark,1428521232 +88798,3949,heroin,1428521243 +88798,3949,intense,1428521257 +88798,4776,denzel washington,1427449040 +88798,4776,Oscar (Best Actor),1427449048 +88798,4776,police corruption,1427449038 +88798,6016,brazil,1430502844 +88798,6016,multiple storylines,1430502837 +88798,6016,South America,1430502850 +88798,7099,Hayao Miyazaki,1427448424 +88798,7099,Studio Ghibli,1427448429 +88798,7317,comedy,1428596190 +88798,7317,road trip,1428596187 +88798,8119,blues,1427658434 +88798,8119,DEAL WITH THE DEVIL,1427658438 +88798,8464,american idiocy,1427450580 +88798,8874,black comedy,1428670814 +88798,8874,British,1428670819 +88798,8874,england,1428670811 +88798,8874,hilarious,1428670806 +88798,27800,Daft Punk,1428574575 +88798,27800,music,1428574577 +88798,37731,football,1428433194 +88798,37731,gang brawls,1428433191 +88798,48304,cinematography,1428660000 +88798,52952,England,1429877198 +88798,52952,friendship,1429877201 +88798,57504,Mamoru Hosoda,1427448847 +88798,57504,time travel,1427448850 +88798,64993,visually stunning,1427448327 +88798,66371,beautiful music,1428514665 +88798,66371,beautiful scenery,1428514654 +88798,66371,calm,1428514658 +88798,66371,Japan,1428514652 +88798,68194,british,1428433232 +88798,68194,Footbal,1428433245 +88798,68194,soccer,1428433235 +88798,71535,clever,1427447897 +88798,71535,post-apocalyptic,1427447887 +88798,71535,witty,1427447891 +88798,74458,Leonardo DiCaprio,1427450163 +88798,74458,psychological,1427450161 +88798,74458,stylized,1427450167 +88798,74458,twist ending,1427450159 +88798,77455,Banksy,1428611324 +88798,77455,graffiti,1428611323 +88798,77455,Thierry Guetta,1428611774 +88798,79029,documentary,1427460779 +88798,79029,music,1427460763 +88798,79357,butterfly effect,1428751175 +88798,79357,chaos,1428751214 +88798,79357,cinematography,1428751168 +88798,79357,immortality,1428751181 +88798,79357,nonlinear,1428751165 +88798,79357,philosophy,1428751177 +88798,79357,romance,1428751218 +88798,79357,sci-fi,1428751221 +88798,79357,surreal,1428751166 +88798,79357,thought provoking,1428751170 +88798,79357,time travel,1428751179 +88798,80463,computers,1427448622 +88798,80463,Jesse Eisenberg,1427448619 +88798,81140,multiple personalities,1428172646 +88798,85179,Mamoru Hosoda,1427448681 +88798,85774,formula 1,1427141200 +88798,85774,Formula 1 racing,1427141198 +88798,85774,rivalry,1427141210 +88798,88129,atmospheric,1427448587 +88798,88129,great soundtrack,1427448594 +88798,91273,martial arts,1427450333 +88798,91273,Stylised,1427450335 +88798,91273,unique look,1427450339 +88798,93721,documentary,1427990777 +88798,93721,food,1427990781 +88798,93721,Japan,1427990774 +88798,93748,anime,1427461396 +88798,94959,quirky,1428583999 +88798,94959,surreal,1428584007 +88798,94959,wilderness,1428584014 +88798,96588,music,1427450129 +88798,96606,meditative,1427478169 +88798,96606,music,1427446582 +88798,96606,time-lapse,1427446558 +88798,96610,time travel,1427450316 +88798,96829,painful to watch,1427654988 +88798,100553,documentary,1428242041 +88798,100553,nature,1428242045 +88798,100553,wildlife,1428242042 +88798,102407,stylized,1427448538 +88798,102903,Jesse Eisenberg,1427448764 +88798,102903,Woody Harrelson,1427448759 +88798,106918,Iceland,1428676135 +88798,106918,photography,1428676148 +88798,106918,surreal,1428676140 +88798,106918,visually appealing,1428676138 +88798,107743,football,1428433535 +88798,107743,Manchester United,1428433555 +88798,109374,cinematography,1428160847 +88798,109374,stylized,1428160849 +88798,109374,visually appealing,1428160844 +88798,109633,pretty,1427448291 +88798,109633,visually stuning,1427448352 +88798,111921,cancer,1428161089 +88798,112552,jazz,1427219246 +88798,112552,music,1427219275 +88798,112552,Tense,1427219263 +88798,117438,anime,1428062096 +88798,117438,beautiful,1428062098 +88798,117438,Studio Ghibli,1428062100 +88798,118900,hiking,1427658469 +88798,119145,british,1432411374 +88798,119145,gentlemanly,1432411347 +88798,130634,Fast Cars,1429821469 +88798,132100,graffiti,1428619217 +88798,132472,Antarctica,1429782996 +88798,132472,nature,1429782998 +88798,132472,wintry,1429783000 +88816,6539,keira knightley,1151715284 +88829,3421,drinking,1274806759 +88829,3421,FIGHTING THE SYSTEM,1274806770 +88829,3421,fraternity,1274806728 +88829,3421,Party while you can,1274806234 +88829,3421,slackers,1274806740 +88829,3421,wired 50 greatest soundtracks,1274806752 +88838,2361,anus,1445929560 +88838,2361,black comedy,1445929537 +88838,2361,campy,1445929531 +88838,2361,controversial,1445929527 +88838,2361,cult film,1445929525 +88838,2361,Edith Massey,1445929577 +88838,2361,egg,1445929576 +88838,2361,filth,1445929474 +88838,2361,raunchy,1445929534 +88838,5618,fantasy,1445929772 +88838,5618,Hayao Miyazaki,1445929769 +88838,5618,Studio Ghibli,1445929767 +88838,6713,Satoshi Kon,1445929889 +88853,7153,Adventure,1453197221 +88853,7153,fantasy,1453197202 +88853,7153,magic,1453197212 +88892,8533,1,1138853048 +88892,27773,2,1141342087 +88900,356,classic,1434514786 +88900,356,drama,1434514786 +88900,356,oscar winner,1434514786 +88905,858,Mafia,1445068457 +88905,30749,Tragedy,1445068684 +88905,78499,animation,1445068549 +88978,1356,Star Trek,1314450568 +88978,81834,boring,1297088289 +88978,81834,Daniel Radcliffe,1297088282 +88978,81834,Emma Watson,1297088270 +89036,7,romantique,1449445203 +89036,153,BD,1449445169 +89048,260,forest gump,1442714206 +89048,260,planet on the alpes,1442714176 +89090,1704,math,1218581121 +89099,68954,sweet,1442176061 +89099,102720,amazing animation,1442176016 +89099,102720,fresh,1442176024 +89115,92259,inspirational,1427528578 +89115,92259,social engineering,1427528578 +89115,92259,social reform,1427528578 +89169,27773,disturbing,1282656808 +89188,260,classic sci-fi,1437214317 +89188,260,sci-fi,1437214308 +89188,260,space adventure,1437214313 +89250,260,Science Fiction,1433965186 +89250,260,space,1433965191 +89259,2959,product placement,1422717725 +89259,85774,formula 1,1421856553 +89259,85774,life story,1421856553 +89259,85774,racing,1421856553 +89259,91241,action,1424122570 +89259,91241,bollywood,1424122570 +89259,91241,comedy,1424122570 +89275,7502,action,1324106300 +89275,7502,military,1324106307 +89275,7502,not a movie,1324106267 +89275,7502,realistic,1324106276 +89275,7502,though provoking,1324106281 +89275,7502,Tom Hanks,1324106284 +89275,7502,true story,1324106291 +89275,7502,war,1324106295 +89316,1617,detective thriller,1430847211 +89316,1617,Drama,1430847201 +89316,1617,suspense,1430847190 +89316,4958,Action,1430847273 +89316,4958,Drama,1430847277 +89316,4958,Thriller,1430847285 +89316,4958,War,1430847281 +89316,97304,Political Thriller,1430847146 +89316,97304,True story,1430847131 +89319,318,based on a book,1432320470 +89319,318,classic,1432320470 +89319,318,inspirational,1432320470 +89331,1259,Corey Feldman,1218795805 +89331,1259,Jason Bateman,1218795805 +89331,1259,Richard Dreyfuss,1218795805 +89331,1259,River Phoenix,1218795805 +89331,1259,Wil Wheaton,1218795805 +89331,3317,Frances McDormand,1218795713 +89331,3317,Katie Holmes,1218795713 +89331,3317,Michael Douglas,1218795713 +89331,3317,Robert Downey Jr,1218795713 +89331,3317,Tobey Maguire,1218795713 +89343,59315,superhero,1214595572 +89350,480,action,1427215328 +89350,480,michael chrichton,1427215328 +89350,480,scifi,1427215328 +89354,1,kids and family,1367943150 +89354,19,silly fun,1367943101 +89354,19,very funny,1367943201 +89354,216,stupidity,1367943270 +89354,231,stupidity,1367943270 +89354,236,romantic,1367943116 +89354,239,cartoon,1367943258 +89354,252,romantic,1367943116 +89354,333,hilarious,1367943364 +89354,339,feel good movie,1367943309 +89354,361,feel good movie,1367943309 +89354,364,great,1367943285 +89354,455,kids and family,1367943150 +89354,539,romantic,1367943116 +89354,595,animated,1367943332 +89354,671,sarcasm,1367943185 +89354,750,quotable,1367943321 +89354,899,jukebox musical,1430770071 +89354,899,musical,1430770074 +89354,1020,feel good movie,1367943309 +89354,1022,animated,1367943332 +89354,1023,cartoon,1367943257 +89354,1029,animated,1367943332 +89354,1088,dancing,1367943085 +89354,1188,dancing,1367943084 +89354,1197,modern fantasy,1367943246 +89354,1221,highly quotable,1367943161 +89354,1240,highly quotable,1367943161 +89354,1270,quotable,1367943321 +89354,1275,modern fantasy,1367943246 +89354,1288,hilarious,1367943364 +89354,1288,quotable,1367943321 +89354,1298,Rock Opera,1425591173 +89354,1307,romantic,1367943116 +89354,1405,stupidity,1367943270 +89354,1431,silly fun,1367943100 +89354,1485,hilarious,1367943364 +89354,1517,funny,1367943375 +89354,1588,silly fun,1367943100 +89354,1887,final movie,1440624900 +89354,1967,fairy tales,1367943226 +89354,1982,horror,1415407963 +89354,2054,kids and family,1367943150 +89354,2060,funny,1367943375 +89354,2060,south park,1415408413 +89354,2060,toilet humour,1415408416 +89354,2085,animated,1367943332 +89354,2085,cartoon,1367943258 +89354,2096,fairy tales,1367943227 +89354,2193,fairy tales,1367943226 +89354,2195,comedy,1367943214 +89354,2291,fairy tales,1367943226 +89354,2335,funny,1367943375 +89354,2355,animated,1367943332 +89354,2395,sarcasm,1367943185 +89354,2424,romantic,1367943116 +89354,2724,romantic,1367943116 +89354,3034,kids and family,1367943150 +89354,3087,christmas carol,1418243213 +89354,3114,kids and family,1367943150 +89354,3157,kids and family,1367943150 +89354,3253,quotable,1367943321 +89354,3255,feminism,1432496351 +89354,3594,dancing,1367943085 +89354,3617,beer,1367943350 +89354,3646,comedy,1367943214 +89354,3791,dancing,1367943085 +89354,3868,hilarious,1367943364 +89354,3916,feel good movie,1367943309 +89354,4247,highly quoteable,1440624883 +89354,4262,highly quotable,1367943161 +89354,4725,slow paced,1385870761 +89354,4816,comedy classic,1440624830 +89354,4816,David Bowie,1440624834 +89354,4816,funny,1440624829 +89354,4816,Highly quotable,1440624837 +89354,4967,black comedy,1453004853 +89354,4973,feel good movie,1367943310 +89354,4979,ensemble cast,1426709010 +89354,4979,Quirky,1426709012 +89354,5095,macbeth,1438903686 +89354,5095,Shakespeare adaptation,1438903683 +89354,5250,comedy,1367943214 +89354,5481,funny,1367943375 +89354,5693,dancing,1367943085 +89354,5942,comedy,1367943214 +89354,6188,beer,1367943350 +89354,6377,animated,1367943332 +89354,6888,silly fun,1367943101 +89354,6957,classical music,1432496533 +89354,6957,surprisingly funny,1432496535 +89354,8360,fairy tales,1367943226 +89354,8379,setting:theatre,1415408136 +89354,8379,shakespeare theme,1415408132 +89354,8531,comedy,1367943214 +89354,8641,funny,1367943375 +89354,8807,Neil Patrick Harris,1418243433 +89354,8807,Stoner Movie,1418243416 +89354,30810,whimsical,1421536072 +89354,32554,dystopia,1406154700 +89354,32554,surrealism,1406154688 +89354,34530,comedy,1367943214 +89354,40826,hipster,1362341883 +89354,40826,musical,1362341888 +89354,44828,parody,1406154836 +89354,45880,coming of age,1432496498 +89354,45880,quirky,1432496483 +89354,48231,allegory,1383778572 +89354,48231,special effects,1383778578 +89354,48322,pain ballet,1400372954 +89354,48394,fairy tales,1367943227 +89354,48394,modern fantasy,1367943246 +89354,52975,funny,1362341911 +89354,56561,interview,1400293017 +89354,56805,musical,1422144482 +89354,57669,dark comedy,1415407895 +89354,57669,hitman,1415407897 +89354,64249,Christmas,1389748794 +89354,67422,dark comedy,1383778641 +89354,67422,ensemble,1383778633 +89354,72294,christmas carol,1418243298 +89354,77800,dark comedy,1417459939 +89354,77800,funny,1417459944 +89354,77800,terrorism,1417459941 +89354,80549,dialogue,1420589647 +89354,86909,artsy,1438897022 +89354,86909,based on a true story,1438897026 +89354,87192,black comedy,1382481409 +89354,87192,dark humor,1382481402 +89354,90376,disjointed,1430945568 +89354,92887,Metallica,1426715179 +89354,96616,raunchy,1421362006 +89354,97306,witty,1402083033 +89354,98795,documentary,1383586863 +89354,98795,history,1383586884 +89354,98795,jazz,1383586877 +89354,98795,Ken Burns,1383586873 +89354,98795,music,1383586873 +89354,99149,musical,1362341805 +89354,102070,black comedy,1387766705 +89354,102070,camp,1387766707 +89354,102070,drinking,1387766723 +89354,102070,strong female lead,1387766716 +89354,103219,point of view,1445311720 +89354,103315,based on a book,1400372887 +89354,103315,black comedy,1400372873 +89354,103315,quirky,1400372868 +89354,105001,DNA,1383778495 +89354,105001,evolution,1383778511 +89354,105001,human interest,1383778504 +89354,105001,migration,1383778513 +89354,105001,National Geographic,1383778501 +89354,105248,Metallica,1426715191 +89354,106062,hidden camera,1417820820 +89354,106062,jackass,1417820823 +89354,106062,pranks,1417820821 +89354,106062,raunchy,1417820818 +89354,106889,art history,1417130273 +89354,106889,documentary,1417130274 +89354,106889,human focus,1417130271 +89354,108403,documentary,1447726097 +89354,108403,quirky hobbies,1447726094 +89354,108932,fast paced,1406154760 +89354,112421,musicians,1435456200 +89354,112421,quirky,1435456197 +89354,115071,filmmaking,1417820792 +89354,115071,hidden camera,1417820807 +89354,115071,jackass,1417820786 +89354,115071,making of,1417820788 +89354,115071,pranks,1417820808 +89354,115071,raunchy,1417820805 +89354,117885,Christmas special,1449279134 +89354,117885,self parodying,1420633305 +89354,119145,comic violence,1446821012 +89354,133679,documentary,1443909668 +89354,133679,Halloween,1443909671 +89354,133679,subculture,1443909673 +89354,147026,Christmas,1447725416 +89354,147026,Musical,1447725419 +89354,147026,parody,1447725430 +89354,147026,Political satire,1447725424 +89354,148238,Bill Murray,1449278935 +89354,148238,Celebrity guests,1449278950 +89354,148238,christmas special,1449278923 +89354,148238,non-traditional Christmas special,1449278945 +89354,148240,Christmas special,1449279052 +89354,148240,musical adaption,1449279061 +89354,148240,stop motion,1449279074 +89361,413,comedy,1187808075 +89361,1416,Musical,1187808136 +89361,2953,children comedy,1187808046 +89361,8798,Crime Drama,1187808098 +89374,51666,ZZZZzzzzzzzzzz...,1188291492 +89374,52245,Will Ferrell,1194340823 +89377,116837,countryside,1420132710 +89377,116837,european,1420132710 +89377,116837,touching,1420132710 +89392,296,Black comedy,1254169510 +89392,296,cult film,1254169501 +89392,296,dark comedy,1254169508 +89392,296,multiple storylines,1254169505 +89392,296,nonlinear,1254169503 +89392,296,quirky,1254169506 +89392,2959,Brad Pitt,1254169270 +89392,2959,dark comedy,1254169266 +89392,2959,disturbing,1254169268 +89392,2959,Edward Norton,1254169264 +89392,2959,philosophy,1254169284 +89392,2959,social commentary,1254169282 +89392,2959,surreal,1254169277 +89392,2959,twist ending,1254169274 +89392,2959,violence,1254169288 +89392,3275,Nudity (Topless),1254169373 +89392,3275,vigilante,1254169376 +89392,3275,vigilantism,1254169379 +89392,4011,boxing,1254169446 +89392,4011,Brad Pitt,1254169444 +89392,4011,cynical,1254169436 +89392,4011,goofy,1254169433 +89392,4011,Great dialogue,1254169431 +89392,4979,black comedy,1254169187 +89392,4979,dark comedy,1254169181 +89392,4979,dark humor,1254169184 +89392,4979,quirky,1254169190 +89392,4979,suicide attempt,1254169198 +89392,5952,adventure,1254169216 +89392,5952,multiple storylines,1254169214 +89392,6659,black comedy,1254169417 +89392,6659,cult film,1254169419 +89392,6659,monster,1254169421 +89392,30810,Nudity (Topless),1254169249 +89392,30810,weird,1254169254 +89392,54286,Matt Damon,1254169304 +89392,54286,twist ending,1254169302 +89392,55118,Nudity (Topless),1254169100 +89392,55118,Viggo Mortensen,1254169091 +89392,58559,Christian Bale,1254169346 +89392,58559,vigilante,1254169342 +89392,59369,thriller,1254169407 +89410,100342,science,1452779477 +89410,100342,scientist,1452779541 +89410,110730,artificial intelligence,1452779565 +89410,116797,scientist,1452779530 +89416,288,dark comedy,1386538239 +89416,288,hallucinatory,1386538237 +89416,288,mindfuck,1386538241 +89416,288,psychedelic,1386538229 +89416,288,Robert Downey Jr.,1386538243 +89416,288,satire,1386538235 +89416,288,stylized,1386538231 +89416,288,violent,1386538233 +89416,714,bleak,1386538495 +89416,714,death,1386538498 +89416,714,dreamlike,1386538483 +89416,714,enigmatic,1386538481 +89416,714,great soundtrack,1386538486 +89416,714,hallucinatory,1386538485 +89416,714,Jim Jarmusch,1386538494 +89416,714,surreal,1386538489 +89416,714,visually appealing,1386538490 +89416,714,western,1386538492 +89416,4641,based on a comic,1386537884 +89416,4641,bittersweet,1386537856 +89416,4641,coming of age,1386537876 +89416,4641,dark comedy,1386537873 +89416,4641,deadpan,1386537881 +89416,4641,depressing,1386537878 +89416,4641,funny,1386537871 +89416,4641,quirky,1386537858 +89416,4641,reflective,1386537868 +89416,4641,Scarlett Johansson,1386537851 +89416,4641,stylized,1386537861 +89416,6001,biting,1386538150 +89416,6001,cynical,1386538135 +89416,6001,deadpan,1386538138 +89416,6001,disturbing,1386538146 +89416,6001,NOTHING GOES RIGHT,1386538141 +89416,6001,quirky,1386538144 +89428,85438,Emily Bronte,1434381953 +89428,85438,gothic,1434381892 +89428,85438,Mia Wasikowska,1434381881 +89428,111778,adventure,1434382029 +89428,111778,Australia,1434382034 +89428,111778,based on a true story,1434382020 +89428,111778,wilderness,1434382023 +89428,116797,Alan Turing,1434453754 +89428,116797,cryptography,1434453757 +89428,116797,history,1434453745 +89428,116797,World War II,1434453748 +89430,318,friendship,1452894475 +89430,318,justice,1452894482 +89430,318,prison escape,1452894469 +89430,356,comedy,1452894435 +89430,356,inspirational,1452894449 +89430,356,tom hanks,1452894442 +89457,3157,Hugh Laurie,1337564405 +89457,81845,Colin Firth,1337565126 +89466,356,clever,1420392261 +89466,356,funny,1420392261 +89466,356,witty,1420392261 +89471,593,crime,1423630740 +89471,593,fbi pursuit/case,1423630740 +89471,593,psychological,1423630740 +89481,2581,chick flick,1378224508 +89481,2581,David Arquette,1378224488 +89481,2581,Drew Barrymore,1378224494 +89481,2581,Good Romantic Comedies,1378224499 +89482,34405,wash,1284742943 +89506,1673,Heather Graham,1302649026 +89506,1673,soundtrack,1302649008 +89506,2428,cliche,1287615850 +89506,2528,Jenny Agutter,1287845199 +89506,2763,plot holes,1288053182 +89506,3386,Ray Ban Clubmasters,1290552979 +89506,27338,Keira Knightley,1286839776 +89506,46062,musical,1288053801 +89506,48711,Christianity,1297278229 +89506,49286,Cameron Diaz running,1319401698 +89506,51187,Noel Clark,1287317347 +89506,56693,poor acting,1286497036 +89506,61132,retarded,1270864201 +89506,68941,silly ending,1285719604 +89506,69134,atmospheric,1289612669 +89506,71379,atmospheric,1289612693 +89506,71379,call someone dammit,1289612405 +89506,71379,lack of guns,1289612476 +89506,77866,narrowly below-average,1285457464 +89506,80572,lovable loser,1294445643 +89506,80693,pretentious,1298768526 +89506,80761,impressive imagery,1285982015 +89506,80820,twist ending,1285981985 +89506,80917,romance,1312909210 +89506,82093,Keira Knightley,1291768540 +89506,85190,Fran Lebowitz,1300150478 +89506,85190,Martin Scorsese,1300150480 +89506,86059,Russell Brand,1303851479 +89526,84152,unfinished storyline,1303189358 +89535,1094,England,1395651776 +89535,1094,male nudity,1395651780 +89552,260,palo alto,1439753040 +89552,111387,drama,1439753164 +89552,111387,Gia Coppola,1439753176 +89552,111387,high school,1439753173 +89584,32737,based on a book,1238809591 +89607,318,classic,1283839151 +89607,318,imdb top 250,1283839147 +89607,923,Amazing Cinematography,1283942419 +89607,923,atmospheric,1283942416 +89607,923,black and white,1283942394 +89607,923,Highly quotable,1283942402 +89607,923,melancholy,1283942404 +89607,923,mystery,1283942406 +89607,923,Orson Welles,1283942400 +89607,2318,dark,1286880475 +89607,2318,dark comedy,1286880456 +89607,2318,dark humor,1286880459 +89607,2318,loneliness,1286880454 +89607,2318,Philip Seymour Hoffman,1286880459 +89607,2318,social commentary,1286880467 +89607,2596,narrated,1285835796 +89607,2761,animation,1283839038 +89607,2761,classical animation,1283839064 +89607,2761,kids,1283839047 +89607,2997,black comedy,1283838873 +89607,2997,Cameron Diaz,1283838887 +89607,2997,Charlie Kaufman,1283838877 +89607,2997,cult film,1283838875 +89607,2997,dark comedy,1283838870 +89607,2997,mindfuck,1283838868 +89607,2997,surreal,1283838883 +89607,2997,surrealism,1283838886 +89607,3476,hallucination,1283838664 +89607,4725,psychology,1283853913 +89607,6666,deadpan,1286083964 +89607,6666,hallucinatory,1286083971 +89607,6666,satire,1286083967 +89607,6666,satirical,1286083969 +89607,6666,surreal,1286083956 +89607,6975,breaking the fourth wall,1283853716 +89607,6975,crazy,1283853736 +89607,6975,Haneke,1283853720 +89607,6975,Michael Haneke,1283853722 +89607,6975,remade,1283853726 +89607,6975,torture,1283853729 +89607,7176,Azita Rayeji,1291390205 +89607,7176,Hossain Emadeddin,1291390207 +89607,7176,Jafar Panahi,1291390212 +89607,7176,Kamyar Sheisi,1291390210 +89607,7176,Pourang Nakhael,1291390214 +89607,8620,biting,1292456046 +89607,8620,cerebral,1292456041 +89607,8620,Criterion,1292456039 +89607,8620,cynical,1292456038 +89607,8620,dreamlike,1292456037 +89607,8620,politics,1292456025 +89607,8620,satirical,1292456018 +89607,8620,surrealism,1292456015 +89607,8874,black comedy,1284027302 +89607,8874,british comedy,1284027299 +89607,8874,parody,1284027304 +89607,8874,spoof,1284027305 +89607,25927,Orson Welles,1283942371 +89607,27773,Chan-wook Park,1283838573 +89607,27773,depressing,1283854181 +89607,27773,disturbing,1283854179 +89607,27773,Korean,1283854182 +89607,27773,revenge,1283854177 +89607,27773,twist ending,1283838579 +89607,27773,vengeance,1283838581 +89607,35347,2D animation,1283839831 +89607,55805,Philip Seymour Hoffman,1286880334 +89607,56145,irreligion,1283853956 +89607,56145,Survival,1283853968 +89607,57368,"""found footage""",1283853993 +89607,57368,city under attack,1283853990 +89607,57368,giant monster,1283854005 +89607,57368,Handycam,1283853985 +89607,57669,black comedy,1283838837 +89607,57669,dark comedy,1283838830 +89607,58559,comic book,1283839098 +89607,58559,imdb top 250,1283839108 +89607,58559,Oscar (Best Supporting Actor),1283839111 +89607,60753,Nudity (Topless),1284557008 +89607,60753,Violence,1284557004 +89607,60753,wrongful imprisonment,1284557013 +89607,63131,Paul Rudd,1286880576 +89607,65642,grim,1283839772 +89607,65642,Nudity (Topless),1283839777 +89607,68237,alter ego,1286494135 +89607,68237,hallucination,1286494113 +89607,68237,interesting,1286494102 +89607,68237,isolation,1286494099 +89607,68237,Kevin Spacey,1283937431 +89607,68237,psychology,1286494101 +89607,68237,Sam Rockwell,1283937429 +89607,69122,Zach Galifianakis,1286880597 +89607,71304,Chan-wook Park,1283839568 +89607,71304,horror,1283839595 +89607,71304,Kang-ho Song,1283839570 +89607,71304,sex,1283839582 +89607,71304,thought-provoking,1283839572 +89607,71304,vampires,1283839580 +89607,71429,depressing,1287144739 +89607,71429,slow,1287144743 +89607,71520,Louis C.K.,1284556818 +89607,71520,Ricky Gervais,1284556814 +89607,71535,clowns,1283943860 +89607,71535,ending,1283943858 +89607,71535,gore,1283943861 +89607,71535,IMDB Top 250,1283943852 +89607,71535,parody,1283943849 +89607,71535,road trip,1283943866 +89607,71535,Woody Harrelson,1283943844 +89607,71535,zombies,1283943846 +89607,74228,Surreal,1283839729 +89607,74458,ending twist,1283838627 +89607,74458,insanity,1283838631 +89607,79879,Adam Scott,1283943959 +89607,79879,Alexandre Aja,1283943961 +89607,79879,Christopher Lloyd,1283943957 +89607,79879,Dina Meyer,1283943962 +89607,79879,Eli Roth,1283943955 +89607,79879,Elisabeth Shue,1283943964 +89607,79879,genital mutilation,1283943935 +89607,79879,Gianna Michaels,1283943932 +89607,79879,Jerry O'Connell,1283943940 +89607,79879,Jessica Szohr,1283943953 +89607,79879,Kelly Brook,1283943949 +89607,79879,Paul Scheer,1283943950 +89607,79879,Richard Dreyfuss,1283943947 +89607,79879,Riley Steele,1283943938 +89607,79879,Steven R. McQueen,1283943946 +89607,79879,Ving Rhames,1283943944 +89618,6867,terrible acting,1378496060 +89632,106066,comedy,1425493033 +89632,106066,so-so,1425493033 +89632,106066,wacky,1425493033 +89640,1,animation,1440016198 +89640,1,pixar,1440016188 +89640,260,space action,1440012933 +89640,260,space opera,1440012916 +89640,480,Dinosaurs,1440034419 +89640,480,Steven Spielberg,1440034423 +89640,480,Suspense,1440034435 +89640,648,espionage,1440018020 +89640,648,plot twists,1440018028 +89640,2355,Pixar,1440016179 +89640,3114,animation,1440016232 +89640,3114,characters,1440016407 +89640,3114,computer animation,1440016338 +89640,3114,Pixar,1440016341 +89640,3114,sequel better than original,1440016399 +89640,3623,espionage,1440018108 +89640,3623,mountain climbing,1440018133 +89640,3897,music,1441419057 +89640,3897,rock and roll,1441419062 +89640,4886,animated,1440016439 +89640,4886,innovative,1440016454 +89640,4886,Pixar,1440016444 +89640,5418,espionage,1440018188 +89640,8665,car chase,1440018180 +89640,8665,espionage,1440018177 +89640,45186,espionage,1440018078 +89640,50872,animation,1440016502 +89640,50872,pixar,1440016500 +89640,50872,story,1440016471 +89640,54286,espionage,1440018153 +89640,54286,spy thriller,1440018159 +89640,68954,bittersweet,1440016558 +89640,68954,computer animation,1440016532 +89640,68954,Pixar,1440016528 +89640,68954,storytelling,1440016538 +89640,72998,futuristic,1440017967 +89640,72998,long,1440017982 +89640,72998,sci-fi,1440017963 +89640,79132,alternate reality,1440018306 +89640,79132,ambiguous ending,1440018413 +89640,79132,great soundtrack,1440018396 +89640,79132,surreal,1440018312 +89640,79132,visually appealing,1440018309 +89640,91535,spies,1440018228 +89640,117529,dinosaurs,1440034455 +89640,117529,thriller,1440034496 +89646,112552,drama,1430494265 +89646,112552,intense,1430494265 +89646,112552,music,1430494265 +89664,368,western,1141647498 +89664,1517,hillarious,1141650603 +89664,4306,mule,1141647479 +89664,7090,jet lee,1141649744 +89664,39419,super-hero,1141649689 +89692,5971,anime,1426666495 +89692,5971,feel-good,1426666498 +89692,5971,visually appealing,1426666504 +89692,7147,bittersweet,1427064387 +89692,72226,visually appealing,1427067604 +89692,74553,beautiful,1426666026 +89692,80463,computers,1426666093 +89692,80463,loneliness,1426666108 +89692,80463,nerds,1426666119 +89692,80463,true story,1426666125 +89692,94959,surreal,1427064349 +89692,109374,stylized,1426666233 +89692,109374,visually appealing,1426666230 +89692,112852,adventure,1426666583 +89692,112852,great soundtrack,1426666578 +89692,112852,sci-fi,1426666585 +89692,117176,physics,1426666207 +89692,117176,Stephen Hawking,1426666205 +89708,318,seen more than once,1181591844 +89708,1198,seen more than once,1181591881 +89718,35,entirely dialogue,1368649299 +89718,50,complex,1368649369 +89718,58,beautiful scenery,1368649550 +89718,58,beautifully filmed,1368649428 +89718,110,courage,1368649319 +89718,318,powerful ending,1368649634 +89718,362,animals,1368649484 +89718,521,noir thriller,1368649185 +89718,527,jewish,1368649605 +89718,531,beautifully filmed,1368649428 +89718,590,breathtaking,1368649510 +89718,592,dark hero,1368649241 +89718,647,courage,1368649319 +89718,653,mythology,1368649265 +89718,750,paranoia,1368649574 +89718,913,noir thriller,1368649186 +89718,1204,breathtaking,1368649511 +89718,1230,intellectual,1368649659 +89718,1242,courage,1368649319 +89718,1248,noir thriller,1368649186 +89718,1250,courage,1368649319 +89718,1267,paranoia,1368649574 +89718,1270,awesome soundtrack,1368649218 +89718,1289,breathtaking,1368649511 +89718,1296,beautiful scenery,1368649550 +89718,1367,animals,1368649484 +89718,1704,intellectual,1368649659 +89718,1783,noir thriller,1368649185 +89718,1911,animals,1368649484 +89718,1921,intellectual,1368649659 +89718,2078,animals,1368649484 +89718,2137,animals,1368649484 +89718,2160,paranoia,1368649574 +89718,2291,beautifully filmed,1368649428 +89718,2571,dark hero,1368649241 +89718,2686,beautifully filmed,1368649428 +89718,2726,noir thriller,1368649185 +89718,2736,jewish,1368649605 +89718,3159,animals,1368649484 +89718,3250,courage,1368649319 +89718,3481,awesome soundtrack,1368649218 +89718,3996,breathtaking,1368649511 +89718,3996,fight scenes,1368649386 +89718,4226,complex,1368649369 +89718,4424,jewish,1368649605 +89718,5902,intellectual,1368649659 +89718,5995,jewish,1368649605 +89718,6874,dark hero,1368649241 +89718,7013,noir thriller,1368649186 +89718,7090,beautifully filmed,1368649428 +89718,7090,breathtaking,1368649511 +89718,7361,complex,1368649368 +89718,7361,intellectual,1368649659 +89718,8529,stranded,1368649464 +89718,8983,beautifully filmed,1368649428 +89718,30749,courage,1368649319 +89718,36535,jewish,1368649605 +89718,60333,antarctica,1240942254 +89718,60333,nature,1240942250 +89718,60333,Philosophical,1240942348 +89718,60333,Werner Herzog,1240942244 +89719,260,romance,1438350847 +89719,260,Science Fiction,1438350826 +89719,260,space adventure,1438350835 +89739,260,cult classic,1438574600 +89739,260,space action,1438574609 +89754,260,imaginative,1440726645 +89754,260,Sci Fi oldie,1440726633 +89760,86000,New Zealand,1453694747 +89777,1446,abandonment,1139151991 +89777,1545,abandonment,1139152041 +89777,2877,musical,1165732392 +89777,4128,vampires,1139151935 +89777,6611,economic depression,1137245913 +89777,6611,post war,1137245913 +89777,6611,suicide attempt,1137245913 +89777,6611,unwed mother,1137245913 +89777,6711,tokyo,1139151955 +89777,7352,british comedy,1137246019 +89777,7352,love triangle,1137246019 +89777,7352,moaning myrtle,1137246019 +89777,7352,single mother,1137246019 +89777,7352,suicide attempt,1137246019 +89777,27803,suicide attempt,1137246063 +89777,31437,abandonment,1139150893 +89777,31437,child abuse,1139150893 +89777,31437,tokyo,1139150893 +89777,34271,hip hop,1140032419 +89777,34271,rap,1140032627 +89777,34271,urban,1140032627 +89793,2947,action,1448858866 +89793,2947,james bond,1448858863 +89793,64650,bollywood,1451570360 +89793,74641,bollywood,1451545557 +89793,79507,bollywood,1451545468 +89793,79507,filmfare,1451545477 +89793,99910,action,1400923750 +89793,99910,Blood Splatters,1400923754 +89793,101076,action,1373705577 +89793,101076,weak story,1373705609 +89793,101640,Bollywood,1451545529 +89793,107707,bollywood,1451539813 +89793,135795,bollywood,1451545725 +89793,146114,bollywood,1451539868 +89793,146114,romance,1451539861 +89793,149670,bollywood,1451545628 +89793,149670,hindi,1451545632 +89816,2294,Dreamworks animation,1228076180 +89816,2355,Pixar,1228079597 +89816,8666,Halle Berry,1228079994 +89816,42015,Heath Ledger,1228079856 +89818,260,Bleh,1442168423 +89822,116797,Alan Turing,1426859876 +89822,116797,code breaking,1426859884 +89822,116797,cryptography,1426859881 +89822,116797,homosexuality,1426859892 +89822,116797,mathematics,1426859886 +89835,7438,action,1429147396 +89835,7438,martial arts,1429147391 +89835,7438,revenge,1429147387 +89835,8961,animation,1429147462 +89835,8961,comedy,1429147470 +89835,8961,Pixar,1429147466 +89835,33794,action,1429147431 +89835,33794,Christian Bale,1429147425 +89835,44191,Natalie Portman,1429147353 +89835,44191,political,1429147337 +89835,44191,social commentary,1429147343 +89908,109487,good science,1441513235 +89908,109487,space exploration,1441513249 +89940,413,Brendan Fraser,1187904755 +89940,493,Ice Cube,1187904955 +89940,671,hilarious,1187904297 +89940,724,chick flick,1187904138 +89940,1339,adapted from:book,1187904108 +89940,2133,funny,1187904850 +89940,2478,funny,1187904321 +89940,2841,Kevin Bacon,1187904892 +89940,4262,Great movie,1187904259 +89940,4343,funny,1187904987 +89940,4367,Angelina Jolie,1187904648 +89940,4447,chick flick,1187904207 +89940,6934,action,1187904184 +89950,1589,exciting,1187095909 +89950,1801,adventure,1187095947 +89950,2125,Great movie,1187095926 +89950,2125,romantic,1187095925 +89950,2485,fun movie,1187095970 +89950,3263,mediocre,1187095987 +89970,55721,foreign language,1447266816 +89971,76,artificial intelligence,1208668374 +89971,76,Philip K. Dick,1208668368 +89971,76,post apocalyptic,1208668372 +89971,86,History,1208668363 +89971,86,Ridley Scott,1208668356 +89971,111,assassination,1208668726 +89971,111,Classic,1208668722 +89971,111,Martin Scorsese,1208668723 +89971,253,based on a book,1208667588 +89971,260,sci-fi,1208669203 +89971,356,Oscar (Best Picture),1208667512 +89971,471,Coen Brothers,1208667927 +89971,471,Fantasy,1208667928 +89971,471,Romance,1208667934 +89971,475,Daniel Day-Lewis,1208668828 +89971,475,prison,1208668830 +89971,541,Harrison Ford,1208668626 +89971,541,Philip K. Dick,1208668616 +89971,541,sci-fi,1208668618 +89971,596,fantasy,1208667918 +89971,596,Oscar (Best Music - Original Song),1208667915 +89971,912,Oscar (Best Picture),1208667612 +89971,1017,stranded,1208668326 +89971,1073,based on a book,1208667707 +89971,1178,Stanley Kubrick,1208669164 +89971,1196,action,1208669179 +89971,1196,Harrison Ford,1208669170 +89971,1196,sci-fi,1208669175 +89971,1200,James Cameron,1208669314 +89971,1207,Gregory Peck,1208667889 +89971,1207,Oscar (Best Actor),1208667891 +89971,1213,Martin Scorsese,1208667487 +89971,1228,Martin Scorsese,1208669233 +89971,1228,Oscar (Best Actor),1208668733 +89971,1242,Oscar (Best Supporting Actor),1208669286 +89971,1293,Ben Kingsly,1208669412 +89971,1293,Oscar (Best Actor),1208669419 +89971,1293,Oscar (Best Cinematography),1208669421 +89971,1343,Martin Scorsese,1208668574 +89971,1344,lawyer,1208668959 +89971,1344,Robert Mitchum,1208668957 +89971,1348,Film Theory & Criticism,1208668305 +89971,1387,classic,1208667864 +89971,1393,Oscar (Best Supporting Actor),1208667563 +89971,1566,Greek mythology,1208668289 +89971,1566,Myth,1208668292 +89971,1954,Oscar (Best Picture),1208669626 +89971,1955,Oscar (Best Directing),1208668271 +89971,1955,Oscar (Best Picture),1208668268 +89971,1955,Oscar (Best Supporting Actress),1208668270 +89971,2021,based on a book,1208667827 +89971,2021,sci-fi,1208667823 +89971,2022,based on a book,1208668580 +89971,2022,Martin Scorsese,1208668582 +89971,2022,violence,1208668751 +89971,2143,dark fantasy,1208668681 +89971,2143,Ridley Scott,1208668654 +89971,2231,Edward Norton,1208669524 +89971,2231,Matt Damon,1208669529 +89971,2231,poker,1208669532 +89971,2313,based on book,1208668228 +89971,2329,Edward Norton,1208667802 +89971,2353,Gene Hackman,1208667792 +89971,2467,medieval,1208668247 +89971,2467,Sean Connery,1208668250 +89971,2501,True Story,1208668214 +89971,2539,mafia,1208667778 +89971,2539,Robert DeNiro,1208667776 +89971,2672,rated-R,1208668201 +89971,2728,Oscar (Best Supporting Actor),1208668196 +89971,2826,Myth,1208668185 +89971,2871,very little dialogue,1208669508 +89971,3100,Oscar (Best Cinematography),1208668170 +89971,3100,Robert Redford,1208668173 +89971,3252,Al Pacino,1208669617 +89971,3275,Mafia,1208669489 +89971,3275,organized crime,1208669487 +89971,3275,serial killer,1208669488 +89971,3301,Bruce Willis,1208668149 +89971,3362,Al Pacino,1208669220 +89971,3535,psychology,1208668139 +89971,3535,serial killer,1208668136 +89971,3535,violence,1208668137 +89971,3717,Vinnie Jones,1208667755 +89971,3744,Christian Bale,1208668131 +89971,4776,denzel washington,1208669653 +89971,4776,Oscar (Best Actor),1208669657 +89971,4951,based on a book,1208668550 +89971,4994,Bruce Campbell,1208668546 +89971,5010,factual,1208669634 +89971,5010,Ridley Scott,1208669630 +89971,5014,psychology,1208668539 +89971,5014,sean penn,1208668537 +89971,5026,martial arts,1208668090 +89971,5026,visceral,1208668088 +89971,5464,Oscar (Best Cinematography),1208669600 +89971,5464,Tom Hanks,1208669593 +89971,5540,mythology,1208668531 +89971,5747,based on a true story,1208668513 +89971,5810,Oscar (Best Music - Original Song),1208668075 +89971,5810,R,1208668076 +89971,5952,fantasy,1208669123 +89971,5952,high fantasy,1208669121 +89971,5954,drugs,1208668066 +89971,5954,Edward Norton,1208668062 +89971,5954,Japan,1208668067 +89971,5956,Daniel Day-Lewis,1208668761 +89971,5956,Martin Scorsese,1208668767 +89971,5959,cynical,1208668496 +89971,5959,gritty,1208668494 +89971,5959,visceral,1208668493 +89971,6537,action,1208668039 +89971,6537,sci-fi,1208668038 +89971,6708,Characters with great depth,1208668643 +89971,7324,Viggo Mortensen,1208669116 +89971,7454,atmospheric,1208668467 +89971,7454,steampunk,1208668469 +89971,8966,biography,1208668442 +89971,8966,Liam Neeson,1208668444 +89971,8966,sex,1208668448 +89971,8977,History,1208668434 +89971,27660,anime,1208668421 +89971,27660,cyberpunk,1208668425 +89971,27773,best of 2005,1208668879 +89971,27773,claustrophobic,1208668882 +89971,27773,revenge,1208668877 +89971,33162,history,1208668634 +89971,33162,Liam Neeson,1208668673 +89971,33162,medieval,1208668636 +89971,33162,Ridley Scott,1208668637 +89971,33660,Biography,1208669250 +89971,33660,true story,1208669256 +89971,33679,Brad Pitt,1208668013 +89971,40629,Classic,1208668413 +89971,41997,Eric Banna,1208668004 +89971,46530,Kevin Spacey,1208668402 +89971,49130,Russell Crowe,1208668662 +89971,52973,Las Vegas,1208670379 +89971,54997,Christian Bale,1208669242 +89971,55118,organized crime,1208669051 +89971,55118,Russian mafia,1208669046 +89971,55765,Ridley Scott,1208668607 +89971,55765,Russell Crowe,1208668608 +89971,56174,great acting,1208667579 +89971,56782,based on a book,1208669012 +89971,56782,greed,1208669011 +89971,56782,religion,1208669009 +89973,72998,action,1385255772 +89973,72998,computer animation,1385255786 +89973,72998,drama,1385255774 +89973,72998,fantasy,1385255769 +89973,72998,futuristic,1385255762 +89973,72998,sci-fi,1385255757 +89973,72998,social commentary,1385255801 +89973,72998,thought-provoking,1385255760 +89973,72998,war,1385255798 +89998,29,dark,1367519701 +89998,125,ensemble cast,1367520266 +89998,157,politics,1367521189 +89998,161,tense,1367521293 +89998,216,stupid,1367521246 +89998,296,cult film,1420841115 +89998,296,great soundtrack,1420841115 +89998,296,violence,1420841115 +89998,356,bittersweet,1421613506 +89998,356,cult film,1421613506 +89998,356,history,1421613506 +89998,428,father-son relationship,1367520347 +89998,440,politics,1367521189 +89998,474,tense,1367521293 +89998,480,adventure,1422910660 +89998,480,dinosaurs,1422910660 +89998,480,steven spielberg,1422910660 +89998,492,mystery,1367520872 +89998,493,violent,1367521417 +89998,522,violent,1367521417 +89998,555,ensemble cast,1367520266 +89998,593,jodie foster,1422305497 +89998,593,psychothriller,1422305497 +89998,593,suspense,1422305497 +89998,599,violent,1367521417 +89998,611,franchise,1367520389 +89998,832,tense,1367521291 +89998,832,thriller,1367521364 +89998,942,mystery,1367520871 +89998,946,nazis,1367520908 +89998,950,mystery,1367520871 +89998,1089,violent,1367521417 +89998,1095,ensemble cast,1367520266 +89998,1096,mental illness,1367520565 +89998,1206,violent,1367521417 +89998,1344,tense,1367521292 +89998,1357,father-son relationship,1367520347 +89998,1357,mental illness,1367520565 +89998,1396,ensemble cast,1367520266 +89998,1620,thriller,1367521364 +89998,1953,oscar (best cinematography),1367521035 +89998,1954,oscar (best cinematography),1367521035 +89998,1957,inspirational,1367520482 +89998,2024,christianity,1367519624 +89998,2058,thriller,1367521364 +89998,2066,black and white,1367519527 +89998,2076,dark,1367519701 +89998,2143,dark,1367519701 +89998,2240,high school,1367520435 +89998,2296,stupid,1367521247 +89998,2315,franchise,1367520389 +89998,2383,police,1367521140 +89998,2431,inspirational,1367520482 +89998,2500,high school,1367520435 +89998,2757,mental illness,1367520566 +89998,2806,high school,1367520435 +89998,2819,oscar (best cinematography),1367521035 +89998,2860,police,1367521140 +89998,2888,high school,1367520435 +89998,2907,stupid,1367521247 +89998,2965,christianity,1367519624 +89998,2985,violent,1367521417 +89998,3044,mystery,1367520872 +89998,3071,inspirational,1367520482 +89998,3088,mental illness,1367520566 +89998,3120,politics,1367521190 +89998,3203,tense,1367521292 +89998,3203,thriller,1367521364 +89998,3249,thriller,1367521364 +89998,3435,black and white,1367519527 +89998,3543,ensemble cast,1367520266 +89998,3566,christianity,1367519624 +89998,3634,politics,1367521190 +89998,3682,police,1367521140 +89998,3706,dark,1367519701 +89998,3706,mystery,1367520872 +89998,4068,high school,1367520435 +89998,4238,thriller,1367521364 +89998,4298,black and white,1367519527 +89998,4306,pixar,1367521099 +89998,4407,politics,1367521190 +89998,4612,christianity,1367519625 +89998,4945,police,1367521140 +89998,5021,mystery,1367520870 +89998,5107,nazis,1367520909 +89998,5266,tense,1367521292 +89998,5267,inspirational,1367520481 +89998,5363,high school,1367520435 +89998,5563,father-son relationship,1367520347 +89998,5785,stupid,1367521247 +89998,5959,dark,1367519701 +89998,5984,nudity (topless - notable),1367520980 +89998,6235,nazis,1367520909 +89998,6334,nudity (topless - notable),1367520980 +89998,6482,stupid,1367521247 +89998,6777,nazis,1367520909 +89998,6808,nazis,1367520908 +89998,7263,inspirational,1367520482 +89998,27674,style over substance,1363727148 +89998,27834,father-son relationship,1367520347 +89998,31364,police,1367521140 +89998,32031,pixar,1367521099 +89998,33166,multiple storylines,1400966353 +89998,33166,social commentary,1400966367 +89998,34153,inspirational,1367520482 +89998,34523,dolphins,1387793424 +89998,34523,loneliness,1387794034 +89998,43376,conversation,1392328245 +89998,43376,FIGHTING THE SYSTEM,1392328248 +89998,43376,resistance movement,1392328263 +89998,43376,strong woman,1392328268 +89998,45431,pixar,1367521099 +89998,48774,oscar (best cinematography),1367521034 +89998,52319,nazis,1367520909 +89998,55290,police,1367521140 +89998,55946,politics,1367521190 +89998,59429,nudity (topless - notable),1367520981 +89998,59784,pixar,1367521099 +89998,63082,oscar (best cinematography),1367521034 +89998,76093,pixar,1367521099 +89998,77788,predictable,1371674461 +89998,79091,anti-hero,1394225978 +89998,79091,cute,1394225983 +89998,79091,father-son relationship,1394225989 +89998,79091,funny,1394225986 +89998,79091,heartwarming,1394225993 +89998,79091,quirky,1394226002 +89998,79293,American propaganda,1365801254 +89998,79293,cliche,1365801265 +89998,80880,nudity (topless - notable),1367520980 +89998,81562,Amber Tamblyn,1372096602 +89998,81562,cinematography,1372096501 +89998,84775,Moving,1391902151 +89998,88405,predictable,1410120664 +89998,88678,generation gap,1396006817 +89998,88678,identity of origin,1396006823 +89998,88678,road trip,1396006827 +89998,89761,Keira Knightley,1375080553 +89998,90439,boring,1369431819 +89998,95088,aubrey plaza,1383252691 +89998,95088,funny,1383252707 +89998,95088,touching,1383252717 +89998,95088,Understated charm,1383252723 +89998,97752,based on a book,1371849393 +89998,97752,complicated,1371849406 +89998,97752,multiple storylines,1371849440 +89998,97752,social commentary,1371849453 +89998,97752,thought-provoking,1371849467 +89998,97938,based on a book,1362172432 +89998,97938,differences to book,1362172415 +89998,97938,great photography,1362172429 +89998,100714,honest,1386164011 +89998,100714,talky,1386164017 +89998,102445,scottish accent,1369066247 +89998,103606,heartwarming,1386164079 +89998,104841,visually appealing,1391375248 +89998,105197,acting,1393105277 +89998,105197,family,1393105289 +89998,105197,funny,1393105286 +89998,105197,poignant,1393105294 +89998,105197,slow,1393105298 +89998,106766,atmospheric,1394834377 +89998,106766,folk music,1394834385 +89998,106766,funny,1394834388 +89998,106766,Oscar Isaac,1394834396 +89998,106916,amy adams,1394401859 +89998,106916,Anti-Hero,1394401865 +89998,106916,costumes,1394401874 +89998,106918,visually appealing,1429377204 +89998,106920,bittersweet,1390560229 +89998,106920,Human Computer Interaction,1390560234 +89998,106920,joaquin phoenix,1390560240 +89998,106920,philosophical,1390560249 +89998,106920,thought-provoking,1390560254 +89998,107069,American propaganda,1401481870 +89998,107069,Celebrates militarism,1401481872 +89998,109374,cinematography,1414266921 +89998,109374,funny,1414266925 +89998,109374,great dialogue,1414266928 +89998,109374,Hilarious,1414266931 +89998,109374,quirky,1414266934 +89998,109374,stylized,1414266936 +89998,109374,visually appealing,1414266939 +90001,1291,thriller,1379385798 +90001,2115,thriller,1379385793 +90001,59615,thriller,1379385804 +90039,51935,based on a book,1219759137 +90069,4994,boring,1145397472 +90069,40946,race issues,1146930134 +90069,45447,disappointing,1149322879 +90085,260,future fantasy,1441017646 +90085,260,space action,1441017655 +90108,260,adventure,1442533795 +90108,260,family movie,1442533819 +90115,260,Bad acting,1438012056 +90115,260,Good sci fi movie,1438012048 +90127,1198,adventure,1437645473 +90127,7153,magic,1437645741 +90127,26662,animation,1437645897 +90134,2959,classic,1433749637 +90134,2959,complicated,1433749883 +90134,2959,dark,1433749879 +90134,2959,dark comedy,1433749586 +90134,2959,disturbing,1433749618 +90134,2959,fighting,1433749652 +90134,2959,imaginary friend,1433749885 +90134,2959,mental illness,1433749617 +90134,2959,mindfuck,1433749633 +90134,2959,philosophical,1433749630 +90134,2959,philosophy,1433749594 +90134,2959,powerful ending,1433749881 +90134,2959,psychological,1433749627 +90134,2959,psychology,1433749566 +90134,2959,thought-provoking,1433749622 +90134,2959,twist ending,1433749562 +90134,2959,violence,1433749590 +90134,2959,violent,1433749624 +90134,4226,AMNESIA,1433752585 +90134,4226,complicated,1433752565 +90134,4226,complicated plot,1433752604 +90134,4226,dreamlike,1433752568 +90134,4226,identity,1433752606 +90134,4226,memory,1433752565 +90134,4226,memory loss,1433752608 +90134,4226,Mindfuck,1433752570 +90134,4226,paranoia,1433752603 +90134,4226,paranoid,1433752587 +90134,4226,psychological,1433752565 +90134,4226,psychology,1433752564 +90134,4226,revenge,1433752584 +90134,4226,short-term memory loss,1433752590 +90134,4226,twists & turns,1433752585 +90134,4226,violence,1433752587 +90134,4878,complicated,1433752679 +90134,4878,cult classic,1433752675 +90134,4878,cult film,1433749953 +90134,4878,DARK,1433752689 +90134,4878,hallucinatory,1433752658 +90134,4878,imaginary friend,1433752671 +90134,4878,mental illness,1433752633 +90134,4878,mindfuck,1433752658 +90134,4878,original,1433752629 +90134,4878,philosophy,1433752656 +90134,4878,psychological,1433752672 +90134,4878,short-term memory loss,1433752662 +90134,4878,twist ending,1433752649 +90134,6323,confusing,1433752427 +90134,6323,creepy,1433752408 +90134,6323,multiple personalities,1433752406 +90134,6323,psychology,1433752405 +90134,6323,serial killer,1433752403 +90134,6323,split personality,1433752410 +90134,6323,suspense,1433752407 +90134,6323,suspenseful,1433752429 +90134,6323,twist ending,1433752398 +90134,8950,creepy,1433752508 +90134,8950,dark,1433752514 +90134,8950,depressing,1433752533 +90134,8950,disturbing,1433752516 +90134,8950,great acting,1433752526 +90134,8950,grim,1433752527 +90134,8950,guilt,1433752524 +90134,8950,imaginary friend,1433752524 +90134,8950,insomnia,1433752528 +90134,8950,memory,1433752509 +90134,8950,paranoid,1433752535 +90134,8950,post-traumatic stress disorder,1433752539 +90134,8950,powerful ending,1433752511 +90134,8950,psychological,1433752530 +90134,8950,psychology,1433752508 +90134,8950,schizophrenia,1433752508 +90134,8950,twist ending,1433752507 +90134,74458,asylum,1433752469 +90134,74458,ending twist,1433752464 +90134,74458,insanity,1433752460 +90134,74458,intense,1433752471 +90134,74458,Mental Institution,1433752477 +90134,74458,mindfuck,1433752474 +90134,74458,plot twist,1433752462 +90134,74458,Psychological Thriller,1433752481 +90134,74458,thought-provoking,1433752481 +90134,74458,twist ending,1433752459 +90152,260,family movie,1436466207 +90152,260,Science Fiction,1436466173 +90165,260,Star Wars,1438044701 +90197,50,Kevin Spacey,1162044960 +90197,296,Quentin Tarantino,1162045111 +90197,296,Uma Thurman,1162045143 +90197,1201,Clint Eastwood,1162045076 +90197,1201,western,1162045076 +90197,1209,Clint Eastwood,1162044992 +90197,1209,western,1162045000 +90197,1266,Clint Eastwood,1162044967 +90197,1266,western,1162044964 +90197,1304,western,1162045540 +90197,2922,Clint Eastwood,1162045514 +90197,2922,western,1162045514 +90197,2951,Clint Eastwood,1162045408 +90197,2951,western,1162045407 +90197,3508,Clint Eastwood,1162045250 +90197,3508,western,1162045239 +90197,3681,Clint Eastwood,1162045302 +90197,3681,western,1162045302 +90197,4327,western,1162045272 +90197,4855,Clint Eastwood,1162045317 +90197,4993,fantasy,1168027479 +90197,5782,easily confused with other movie(s) (title),1395969609 +90197,5782,Not Luc Besson,1395969620 +90197,5952,fantasy,1168027484 +90197,6711,Bill Murray,1162044865 +90197,6874,Quentin Tarantino,1162045043 +90197,6874,Uma Thurman,1162045711 +90197,7153,fantasy,1168027481 +90197,7438,Quentin Tarantino,1162045009 +90197,7438,Uma Thurman,1162045729 +90197,8589,war,1162044956 +90197,33162,crusades,1337847570 +90197,33162,history,1337847567 +90197,41566,fantasy,1168027445 +90197,41566,overrated,1169363039 +90197,51662,stopped watching,1230471467 +90197,54997,naive,1311433514 +90197,54997,ridiculous,1311433515 +90197,73321,religious propaganda,1284389911 +90197,79796,shitty plot,1309640578 +90197,80489,Ben Affleck,1311433571 +90197,80917,science fiction,1300466407 +90197,82459,Coen Brothers,1311433471 +90197,82459,remake,1311433467 +90197,82459,Western,1311433463 +90197,84696,Bill Bailey,1314116027 +90197,84696,Simon Pegg,1314116024 +90197,94864,religion,1375897807 +90197,106002,based on a book,1414866162 +90197,106002,predictable,1414866131 +90197,106002,stupid,1414866146 +90224,260,nerdy,1444175667 +90224,260,space,1444175676 +90227,1206,based on a book,1242296808 +90227,1206,Stanley Kubrick,1242296805 +90227,1259,based on a book,1242296944 +90227,1259,Stephen King,1242296940 +90227,1917,space,1242296801 +90227,2011,dystopia,1242297042 +90227,2011,sci-fi,1242297037 +90227,2011,sequel,1242297058 +90227,2011,time travel,1242297034 +90227,3114,Pixar,1242296849 +90227,7153,based on a book,1242297230 +90227,7153,fantasy,1242297227 +90227,27611,sci-fi,1242297216 +90227,27611,space,1242297220 +90256,50794,Ryan Reynolds,1254868968 +90262,54190,Beatles soundtrack,1269808103 +90262,54190,Evan Rachel Wood,1269808120 +90262,54190,Jim Sturgess,1269808112 +90263,50,twist ending,1453070387 +90282,356,aids,1438280392 +90282,356,disability,1438280392 +90282,356,tear jerker,1438280392 +90306,107,treasure,1368503840 +90306,380,arnold,1368506832 +90306,441,cheerleading,1368504102 +90306,485,arnold,1368506832 +90306,589,arnold,1368506832 +90306,592,dark hero,1368504001 +90306,866,neo-noir,1368509884 +90306,898,screwball comedy,1368506880 +90306,905,screwball comedy,1368506880 +90306,910,screwball comedy,1368506880 +90306,913,noir thriller,1368503889 +90306,1078,marx brothers,1368510274 +90306,1097,stranded,1368503934 +90306,1240,arnold,1368506832 +90306,1245,neo-noir,1368509884 +90306,1248,noir thriller,1368503889 +90306,1253,mars,1368503962 +90306,1291,spielberg,1368510223 +90306,1291,treasure,1368503839 +90306,1387,spielberg,1368510224 +90306,1391,mars,1368503962 +90306,1617,neo-noir,1368509884 +90306,1895,cheerleading,1368504102 +90306,2022,christian,1368506914 +90306,2022,jesus,1368503803 +90306,2028,spielberg,1368510224 +90306,2076,neo-noir,1368509884 +90306,2115,spielberg,1368510224 +90306,2115,treasure,1368503839 +90306,2193,dragon,1368510043 +90306,2405,treasure,1368503839 +90306,2571,dark hero,1368504002 +90306,2617,treasure,1368503839 +90306,2662,mars,1368503961 +90306,2718,cheerleading,1368504102 +90306,2726,noir thriller,1368503889 +90306,2916,arnold,1368506832 +90306,2968,terry gilliam,1140360025 +90306,3300,stranded,1368503934 +90306,4878,short-term memory loss,1368510178 +90306,5135,bollywood,1368503751 +90306,5445,spielberg,1368510223 +90306,6377,short-term memory loss,1368510178 +90306,7318,jesus,1368503803 +90306,7386,christian,1368506914 +90306,8366,christian,1368506914 +90306,8622,conspiracy theory,1368509997 +90306,8949,madsen,1137326743 +90306,8949,wine,1137326672 +90306,33162,christian,1368506914 +90306,51884,bollywood,1368503751 +90308,1994,ghosts,1140304608 +90308,4995,math,1140304572 +90314,123,very good,1185931365 +90314,123,wong kar wai,1185931365 +90314,546,great mario movie fun,1185931026 +90314,1350,Good music and chilling plot,1185931049 +90314,2122,creepy kids,1185931269 +90314,2183,he didn't know enough,1185931344 +90314,2412,crapflix,1185931148 +90314,3439,great,1185931246 +90314,3752,Good Jim Carrey,1185930902 +90314,4880,hayden,1185931296 +90314,4880,very good,1185931296 +90314,5377,Good British comedy,1185930867 +90314,5618,Wow!,1185930916 +90314,6502,Scary zombie,1185930953 +90314,35836,surprisingly funny,1185931114 +90359,457,action,1433139566 +90359,457,crime,1433139580 +90359,457,Harrison Ford,1433139551 +90359,457,suspense,1433139560 +90359,457,tense,1433139543 +90359,457,Tommy Lee Jones,1433139556 +90359,1127,Ed Harris,1433141222 +90359,1127,James Cameron,1433141216 +90359,1127,sci-fi,1433141213 +90359,1676,Alien Invasion,1433139769 +90359,1676,satire,1433139751 +90359,1676,space,1433139787 +90359,2173,atmospheric,1433140630 +90359,2173,emotional,1433140554 +90359,2173,medieval,1433140511 +90359,2173,New Zealand,1433140514 +90359,2173,photography,1433140589 +90359,2173,time travel,1433140510 +90359,3175,parody,1433139991 +90359,3175,satire,1433140000 +90359,3949,cinematography,1433140221 +90359,3949,dark,1433140233 +90359,3949,depressing,1433140191 +90359,3949,disturbing,1433140196 +90359,3949,prostitution,1433140146 +90359,3949,psychology,1433140205 +90359,3949,social commentary,1433140211 +90359,4034,narrative,1433140868 +90359,4034,photography,1433140796 +90359,4034,politics,1433140874 +90359,4034,social commentary,1433140742 +90359,4105,dark humor,1433141708 +90359,4683,childhood,1433140426 +90359,4683,Video games,1433140423 +90359,6870,Clint Eastwood,1433140905 +90359,6870,crime,1433140924 +90359,6870,Dark,1433140930 +90359,6870,Dark hero,1433140941 +90359,6870,thriller,1433140937 +90359,8798,atmospheric,1433141078 +90359,8798,tom cruise,1433141074 +90359,26887,Stephen King,1433139672 +90359,26887,time travel,1433139675 +90359,27611,post-apocalyptic,1433142407 +90359,27611,sci-fi,1433142462 +90359,27611,space,1433142403 +90359,55820,Coen Brothers,1433140962 +90359,55820,Tommy Lee Jones,1433140969 +90359,58559,Atmospheric,1433141812 +90359,58559,Christopher Nolan,1433141815 +90359,58559,Heath Ledger,1433141797 +90359,68237,artificial intelligence,1433141280 +90359,68237,dystopia,1433141276 +90359,68237,plot twist,1433141271 +90359,68237,Sci-fi,1433141239 +90359,68237,space,1433141243 +90359,70286,intelligent,1433141179 +90359,70286,intelligent sci-fi,1433141166 +90359,70286,sci-fi,1433141184 +90359,70286,social commentary,1433141190 +90359,70286,Special Effects,1433141172 +90359,70286,unique,1433141175 +90359,88129,atmospheric,1433141012 +90359,88129,cinematography,1433141015 +90359,88129,great soundtrack,1433141020 +90359,88129,neo-noir,1433141052 +90359,106920,artificial intelligence,1433141388 +90359,106920,romance,1433141374 +90359,106920,thought-provoking,1433141413 +90359,115713,artificial intelligence,1433139858 +90359,115713,sci-fi,1433139853 +90407,36086,acting,1319798734 +90407,36086,some over acting,1319798731 +90407,36086,songs,1319798735 +90410,597,Julia Roberts,1352228350 +90410,597,Richard Gere,1352228350 +90410,597,romance,1352228355 +90427,260,far future,1437910512 +90427,260,Popular,1437910491 +90427,2174,Bechdel Test:Pass,1437911472 +90427,2174,supernatural,1437911479 +90427,4993,epic,1437912509 +90427,4993,great soundtrack,1437912517 +90427,4993,Oscar (Best Cinematography),1437912507 +90427,8644,Isaac Asimov,1437911855 +90427,8914,cerebral,1437911218 +90427,8914,clever,1437911214 +90427,8914,mindfuck,1437911211 +90427,8961,Great Soundtrack,1437911385 +90427,57368,shaky camera,1437910983 +90427,68237,artificial intelligence,1437911658 +90427,68237,thought-provoking,1437911662 +90427,68237,twist ending,1437911655 +90427,72998,bad science,1437912015 +90427,82461,daft punk,1437912238 +90427,82461,soundtrack,1437912236 +90427,82461,visually appealing,1437912231 +90427,89745,excellent cinematography,1437911640 +90427,89745,visually appealing,1437911629 +90427,89745,visually stunning,1437911626 +90427,93510,drugs,1437910696 +90427,94466,social commentary,1437910670 +90427,111360,bad science,1437912144 +90427,112852,great soundtrack,1437910723 +90436,1213,Martin Scorsese,1241189333 +90436,1213,Samuel L. Jackson,1241189329 +90436,46976,Maggie Gyllenhaal,1241886573 +90436,46976,Will Ferrell,1241886585 +90436,52328,spaceships,1241886489 +90454,97,French,1223847696 +90454,302,French,1223847678 +90454,306,French,1223847650 +90454,307,French,1223847663 +90454,1175,French,1223847711 +90454,4235,Mexican,1223847627 +90454,4973,French,1223847604 +90454,5613,French,1223847727 +90475,260,adventure,1436456250 +90475,260,EPIC,1436456241 +90495,2770,better,1208193478 +90524,318,Morgan Freeman,1388847458 +90524,902,Audrey Hepburn,1388848787 +90524,902,classic,1388848840 +90524,902,Romance,1388848885 +90524,965,Alfred Hitchcock,1388847988 +90524,965,wrongly accused,1388848063 +90524,2571,sci-fi,1388850328 +90524,2571,virtual reality,1388850352 +90524,2739,Steven Spielberg,1388848590 +90524,2739,Whoopi Goldberg,1388848455 +90524,2762,Bruce Willis,1388847612 +90524,2762,ghosts/afterlife,1388847618 +90524,2762,twist ending,1388847629 +90524,3094,E. M. Forster,1388849817 +90524,3094,gay,1388849730 +90524,3094,Hugh Grant,1388849920 +90524,3147,heartwarming,1388847246 +90524,3147,Tom Hanks,1388847217 +90524,3147,wrongly accused,1388848280 +90524,4216,AIDS,1388849170 +90524,4216,Campbell Scott,1388849193 +90524,4216,gay,1388849150 +90524,4555,Anne Bancroft,1388849087 +90524,4555,gay,1388849021 +90524,4555,Harvey Fierstein,1388849052 +90524,4555,Matthew Broderick,1388849005 +90524,6365,Keanu Reeves,1388850420 +90524,6365,sci-fi,1388850428 +90524,7001,Jeff Goldblum,1388850889 +90524,7001,Leonard Nimoy,1388850895 +90524,7001,remake,1388850946 +90524,7311,John Mills,1388848631 +90524,7311,Robert Donat,1388848710 +90524,8644,robots,1388850507 +90524,8644,sci-fi,1388850503 +90524,8644,Will Smith,1388850498 +90524,39183,depressing,1388849410 +90524,39183,Jake Gyllenhaal,1388849348 +90524,39183,Love story,1388849446 +90524,64957,Brad Pitt,1388847364 +90525,110,Oscar (Best Picture),1147235656 +90525,156,plotless,1167644774 +90525,157,conspiracy,1147237093 +90525,318,prison,1147237395 +90525,356,Oscar (Best Picture),1147236253 +90525,527,Oscar (Best Picture),1147235687 +90525,532,crime,1147237383 +90525,532,psychology,1147237383 +90525,532,true story,1147237383 +90525,590,Oscar (Best Picture),1147235940 +90525,593,crime,1147235557 +90525,593,Oscar (Best Picture),1147235545 +90525,594,animation,1147234600 +90525,608,crime,1147237133 +90525,837,magic,1147234876 +90525,858,Oscar (Best Picture),1147235854 +90525,900,Oscar (Best Picture),1147236112 +90525,905,Oscar (Best Picture),1147235478 +90525,909,Oscar (Best Picture),1147236234 +90525,912,Oscar (Best Picture),1147235887 +90525,914,Oscar (Best Picture),1147236084 +90525,920,Oscar (Best Picture),1147235028 +90525,920,war,1147237175 +90525,926,Oscar (Best Picture),1147235933 +90525,928,Oscar (Best Picture),1147235906 +90525,938,Oscar (Best Picture),1147236032 +90525,952,Oscar (Best Picture),1147236261 +90525,969,Water,1147236954 +90525,1012,dog,1147237310 +90525,1012,tear jerker,1147237318 +90525,1029,animation,1147234805 +90525,1035,Oscar (Best Picture),1147236010 +90525,1090,Oscar (Best Picture),1147236109 +90525,1183,Oscar (Best Picture),1147236014 +90525,1193,Oscar (Best Picture),1147235846 +90525,1203,courtroom,1147235263 +90525,1204,Oscar (Best Picture),1147235898 +90525,1219,psychology,1147234679 +90525,1221,Oscar (Best Picture),1147235814 +90525,1225,Oscar (Best Picture),1147235714 +90525,1230,Oscar (Best Picture),1147236244 +90525,1234,crime,1147235579 +90525,1234,Oscar (Best Picture),1147235579 +90525,1250,Oscar (Best Picture),1147235827 +90525,1263,Oscar (Best Picture),1147236183 +90525,1265,time,1147234556 +90525,1266,Oscar (Best Picture),1147236124 +90525,1271,tear jerker,1147237156 +90525,1272,Oscar (Best Picture),1147235698 +90525,1287,Oscar (Best Picture),1147236072 +90525,1288,mockumentary,1147238543 +90525,1293,Oscar (Best Picture),1147236169 +90525,1387,man vs nature,1147237210 +90525,1721,Oscar (Best Picture),1147235623 +90525,1721,romance,1147235623 +90525,1887,history,1147237004 +90525,1925,Oscar (Best Picture),1147236086 +90525,1926,Oscar (Best Picture),1147236266 +90525,1927,Oscar (Best Picture),1147236208 +90525,1928,Oscar (Best Picture),1147236264 +90525,1929,Oscar (Best Picture),1147236225 +90525,1930,Oscar (Best Picture),1147236275 +90525,1931,Oscar (Best Picture),1147236174 +90525,1932,Oscar (Best Picture),1147236272 +90525,1933,Oscar (Best Picture),1147236077 +90525,1934,Oscar (Best Picture),1147236191 +90525,1935,Oscar (Best Picture),1147236157 +90525,1936,Oscar (Best Picture),1147236103 +90525,1937,Oscar (Best Picture),1147236018 +90525,1938,Oscar (Best Picture),1147236210 +90525,1939,Oscar (Best Picture),1147235914 +90525,1940,Oscar (Best Picture),1147236171 +90525,1941,Oscar (Best Picture),1147236153 +90525,1942,Oscar (Best Picture),1147236221 +90525,1943,Oscar (Best Picture),1147236246 +90525,1944,Oscar (Best Picture),1147236199 +90525,1945,Oscar (Best Picture),1147235923 +90525,1946,Oscar (Best Picture),1147236176 +90525,1947,Oscar (Best Picture),1147236045 +90525,1948,Oscar (Best Picture),1147236096 +90525,1949,Oscar (Best Picture),1147235880 +90525,1950,Oscar (Best Picture),1147235747 +90525,1950,racism,1147236337 +90525,1951,Oscar (Best Picture),1147236003 +90525,1952,Oscar (Best Picture),1147236231 +90525,1953,Oscar (Best Picture),1147236205 +90525,1954,Oscar (Best Picture),1147235982 +90525,1955,Oscar (Best Picture),1147236259 +90525,1956,Oscar (Best Picture),1147235967 +90525,1957,Oscar (Best Picture),1147236049 +90525,1958,Oscar (Best Picture),1147235146 +90525,1958,tear jerker,1147235213 +90525,1959,Oscar (Best Picture),1147235994 +90525,1960,Oscar (Best Picture),1147236155 +90525,1961,Oscar (Best Picture),1147235639 +90525,1962,Oscar (Best Picture),1147235946 +90525,2001,crime,1147237242 +90525,2002,crime,1147237251 +90525,2011,time,1147234727 +90525,2012,time,1147235364 +90525,2096,animation,1147237447 +90525,2396,Oscar (Best Picture),1147236282 +90525,2423,christmas,1147234506 +90525,2539,psychology,1147235346 +90525,2571,alternate world,1147237294 +90525,2762,ghosts,1147237501 +90525,2796,fish out of water,1147237169 +90525,2858,Oscar (Best Picture),1147235795 +90525,3578,Oscar (Best Picture),1147236038 +90525,3809,psychology,1147235244 +90525,3948,in-laws,1147237306 +90525,4153,"rip off of ""Heaven can Wait""",1147600041 +90525,4474,tear jerker,1147235374 +90525,4613,crime,1147237226 +90525,4613,dog,1147237226 +90525,4720,ghosts,1147237340 +90525,4995,Oscar (Best Picture),1147235519 +90525,4995,psychology,1147234755 +90525,4995,true story,1147236319 +90525,5952,magic,1147237271 +90525,5989,crime,1147235462 +90525,5989,true story,1147235462 +90525,5991,Oscar (Best Picture),1147236029 +90525,6296,mockumentary,1147238604 +90525,6484,crime,1147234843 +90525,6484,police,1147234843 +90525,6614,true story,1147239141 +90525,6879,courtroom,1147237361 +90525,7121,courtroom,1147235309 +90525,7153,Oscar (Best Picture),1147235957 +90525,30707,Oscar (Best Picture),1147236117 +90525,33166,Oscar (Best Picture),1147235666 +90527,356,emotional,1440201769 +90527,356,sentimental,1440201579 +90527,508,emotional,1440201616 +90527,508,slow,1440201867 +90527,593,crime thriller,1440201644 +90527,593,hair raising,1440201800 +90527,1036,excellent,1440201848 +90527,1036,superb,1440201667 +90527,1198,fast paced,1440201857 +90527,1198,fun,1440201691 +90527,1265,interesting,1440201655 +90527,1265,wacky,1440201894 +90527,1625,boring,1440201629 +90527,1625,complicated movie,1440201791 +90527,2762,creepy,1440201758 +90527,2762,scifi,1440201731 +90527,5418,excellent,1440201815 +90527,5418,intelligent,1440201819 +90527,58559,fast,1440201905 +90527,58559,thriller,1440201679 +90527,88163,romantic,1440201704 +90527,88163,sweet,1440201960 +90527,96079,fast paced,1440201595 +90527,96079,fun,1440201601 +90527,96079,thrill,1440201779 +90527,112556,creepy,1440201932 +90527,112556,interesting,1440201927 +90527,134853,thought provoking,1440201720 +90527,134853,wow,1440201944 +90565,51127,music documentary,1242255775 +90565,64839,Mickey Rourke,1242255517 +90565,64839,sad,1242255559 +90565,64839,sexuality,1242255629 +90565,64839,touching,1242255528 +90575,93510,high school,1427995370 +90579,260,adventure,1433057318 +90579,260,space,1433057328 +90604,2607,gay,1264577968 +90604,4235,multiple storylines,1264577686 +90604,4973,surreal,1264577626 +90613,107867,ghost,1423301086 +90613,107867,haunted house,1423301086 +90613,107867,young parents,1423301086 +90613,109104,elfs,1425582334 +90613,109104,quest,1425582334 +90613,109104,trolls,1425582334 +90613,115364,obsession,1420324399 +90613,115364,talking animals,1420324399 +90613,115364,villain,1420324399 +90613,119135,based on a novel,1421011767 +90613,119135,orphaned cartoon character,1421011767 +90613,119135,turtle,1421011767 +90630,1702,Robin Williams,1439004766 +90630,6708,con artists,1439046345 +90630,6708,twist ending,1439046342 +90630,68848,con artists,1438613488 +90630,68848,funny,1438613508 +90630,68848,interesting characters,1438613515 +90630,68848,stupid ending,1438613501 +90630,76293,funny,1438783532 +90630,76293,funny moments,1438783586 +90630,76293,inappropriate,1438783573 +90630,76293,Steve Carell,1438783583 +90630,103249,Brad Pitt,1439037582 +90630,103249,chase scenes,1439037585 +90630,103249,Israel,1439037591 +90630,103249,zombies,1439037576 +90630,119145,action scenes,1447771479 +90630,119145,british comedy,1447771556 +90630,119145,comic violence,1447771549 +90630,119145,exploding heads,1447771474 +90630,119145,gratuitous violence,1447771468 +90630,119145,Mark Strong,1447771569 +90630,119145,ridiculous,1447771536 +90630,119145,silly,1447771540 +90630,119145,violent,1447771524 +90633,1566,characters,1303501505 +90633,1566,disney,1303501477 +90633,1566,greek mythology,1303501492 +90633,1566,predictable,1303501481 +90633,1950,sidney poitier,1332709980 +90633,1974,acting,1303072909 +90633,1974,boring,1303072893 +90633,1974,slow,1303072895 +90633,1974,sound effects,1303072924 +90633,3160,acting,1305401893 +90633,3160,julianne moore,1305401921 +90633,3160,never lost my interest,1305401904 +90633,3160,philip seymour hoffman,1305401916 +90633,3160,storylines,1305401929 +90633,3160,tom cruise,1305401924 +90633,4226,twist ending,1291582299 +90633,6355,ending,1309056360 +90633,6355,Gene Kelly,1309056345 +90633,6355,Mitzi Gaynor,1309056341 +90633,6355,musical,1309056354 +90633,6440,john turturro,1304269285 +90633,7340,80s,1308797499 +90633,7340,comedy,1308797486 +90633,7340,joyce hyser,1308797496 +90633,33166,lack of subtlety,1332710047 +90633,33166,obvious,1332710051 +90633,33166,pretentiousness,1332710080 +90633,33166,stupid plot,1332710065 +90633,33166,unrealistic characters,1332710074 +90633,49910,cliche,1303439008 +90633,49910,ending,1303439064 +90633,49910,hilary swank,1303439015 +90633,49910,long,1303439053 +90633,49910,music,1303439123 +90633,49910,predictable,1303439004 +90633,49910,pretentious,1303439019 +90633,55805,acting,1302991317 +90633,55805,non-linear,1302991314 +90633,56152,amy adams,1305513623 +90633,56152,colorful,1305513631 +90633,56152,ending too sweet,1305513657 +90633,56152,fun,1305513633 +90633,56152,humorous,1305513636 +90633,56152,james marsden,1305513628 +90633,56152,predictable,1305513668 +90633,56152,very unrealistic,1305513647 +90633,58432,boring,1306439760 +90633,58432,lost my interest,1306439771 +90633,58432,unfunny,1306439781 +90633,58432,waste of time,1306439765 +90633,80489,acting,1304134436 +90633,80489,boring,1304134427 +90633,80489,long,1304134425 +90633,80489,lost my interest,1304134433 +90633,80489,unlikeable characters,1304134445 +90633,80969,atmosphere,1302969187 +90633,80969,cast,1302969178 +90633,80969,characters,1302969248 +90633,80969,emotional,1302969210 +90633,80969,location,1302969313 +90633,80969,long,1302969232 +90633,80969,sad,1302969196 +90633,80969,thought-provoking,1302969220 +90633,83796,acting,1306810742 +90633,83796,Diane Kruger,1306810750 +90633,83796,emotional,1306810752 +90669,3785,comedy,1188275113 +90669,4447,comedy,1188275133 +90669,6934,action,1188275084 +90669,6934,sci-fi,1188275084 +90669,6934,thriller,1188275084 +90684,1196,George Lucas,1432966017 +90684,1196,Must watch,1432965964 +90684,1196,Oscar (Best Sound),1432965973 +90684,1196,sci-fi,1432966010 +90684,1196,space,1432965994 +90684,8368,harry potter,1432966137 +90684,8368,idealistic,1432966148 +90684,8368,Magic,1432966144 +90684,8368,Wizards,1432966158 +90684,89745,action,1432966350 +90684,89745,great humor,1432966347 +90684,89745,Hulk,1432966344 +90684,89745,Iron Man,1432966356 +90684,89745,Robert Downey Jr.,1432966325 +90684,89745,Scarlett Johansson,1432966352 +90684,89745,superhero team,1432966334 +90684,91529,Anne Hathaway,1432966218 +90684,91529,Batman,1432966211 +90684,91529,Christopher Nolan,1432966215 +90684,102125,audience intelligence underestimated,1432966382 +90684,102125,Ben Kingsley,1432966378 +90684,102125,Gwyneth Paltrow,1432966395 +90684,102125,Iron Man,1432966368 +90684,102125,predictable,1432966385 +90684,102125,Robert Downey Jr.,1432966365 +90684,102125,robots,1432966375 +90684,109374,colourful sets,1432966531 +90684,109374,odd sense of humor,1432966513 +90684,109374,stylized,1432966520 +90684,109374,visually appealing,1432966507 +90684,109374,whimsical,1432966535 +90684,109487,Anne Hathaway,1432966084 +90684,109487,Christopher Nolan,1432966070 +90684,109487,sci-fi,1432966108 +90684,109487,science fiction,1432966100 +90684,109487,space,1432966073 +90684,109487,space exploration,1432966080 +90684,109487,space travel,1432966077 +90684,115569,dark,1432966472 +90684,115569,gripping,1432966468 +90684,115569,sociopath,1432966466 +90688,80463,business,1423758044 +90688,80463,college,1423758043 +90688,80463,computers,1423758034 +90688,80463,facebook,1423758048 +90688,80463,hacking,1423758041 +90688,80463,harvard,1423758055 +90688,80463,internet,1423758038 +90688,80463,social network,1423758056 +90693,1148,short,1424743148 +90693,1148,stop motion,1424743121 +90693,1211,Berlin,1424391597 +90693,1211,enigmatic,1424391603 +90693,1258,disturbing,1424581184 +90693,1258,dreamlike,1442179852 +90693,1258,ghosts,1424581204 +90693,1258,Horror,1424581215 +90693,1258,jack nicholson,1424581178 +90693,1258,Stanley Kubrick,1424581176 +90693,1258,visually appealing,1424581193 +90693,1917,bad science,1424395887 +90693,1917,Michael Bay,1424395879 +90693,1917,space,1424395854 +90693,1917,space program,1424395861 +90693,2571,alternate reality,1424390753 +90693,2571,cyberpunk,1424390727 +90693,2571,dystopia,1424390724 +90693,2571,hackers,1424390768 +90693,2571,martial arts,1424390743 +90693,2571,post apocalyptic,1424390735 +90693,2571,sci-fi,1424390722 +90693,2571,thought-provoking,1424390733 +90693,2762,great ending,1424396890 +90693,2762,mindfuck,1424396899 +90693,2762,twist ending,1424396892 +90693,4454,dystopia,1424831493 +90693,4454,short,1424831491 +90693,4848,Mindfuck,1424750720 +90693,4848,nonlinear,1424750716 +90693,5618,alternate reality,1424390633 +90693,5618,dreamlike,1424390630 +90693,5618,Hayao Miyazaki,1424390628 +90693,5618,Studio Ghibli,1424390620 +90693,5971,anime,1425186991 +90693,5971,country life,1425186982 +90693,5971,Cute,1425186988 +90693,5971,feel good movie,1425186975 +90693,5971,Hayao Miyazaki,1425186970 +90693,5971,Studio Ghibli,1425186965 +90693,5995,World War II,1424396537 +90693,7361,bittersweet,1424390808 +90693,7361,jim carrey,1424390794 +90693,7361,Michel Gondry,1424390804 +90693,7361,nonlinear,1424390824 +90693,7361,surreal,1424390821 +90693,7361,thought-provoking,1424390819 +90693,7371,disturbing,1424392340 +90693,7371,experimental,1424392359 +90693,7373,occult technology,1424390450 +90693,7373,steampunk,1424390415 +90693,8477,post-apocalyptic,1424395108 +90693,8477,short,1424395531 +90693,8477,time travel,1424395105 +90693,34319,cloning,1424395945 +90693,34319,dystopia,1424395936 +90693,34319,genetics,1424395941 +90693,34319,immortality,1424395947 +90693,34319,Michael Bay,1424395961 +90693,34319,Scarlett Johansson,1424395939 +90693,36529,cold war,1424392136 +90693,36529,dark comedy,1424392097 +90693,36529,narrated,1424392129 +90693,36529,smuggling,1424392105 +90693,44555,Berlin,1425259407 +90693,44555,East Germany,1425259378 +90693,44555,freedom of expression,1425259420 +90693,44555,Germany,1425259390 +90693,44555,spying,1425259376 +90693,44555,Stasi,1425259427 +90693,44555,surveillance,1425259380 +90693,48394,bittersweet,1424396473 +90693,48394,Guillermo del Toro,1424396467 +90693,48394,Spanish Civil War,1424396450 +90693,48394,surreal,1424396469 +90693,48774,apocalypse,1424397594 +90693,48774,atmospheric,1424397582 +90693,48774,dystopia,1424397581 +90693,48774,long takes,1424752125 +90693,48774,sci-fi,1424397593 +90693,48774,survival,1424397585 +90693,48774,thought-provoking,1424397596 +90693,52042,espionage,1424396587 +90693,52042,World War II,1424396590 +90693,55118,organized crime,1424392672 +90693,60072,assassin-in-training,1424390251 +90693,68237,dystopia,1424391061 +90693,68237,Sci-fi,1424391052 +90693,69757,intelligent,1424475791 +90693,69757,nonlinear,1424475787 +90693,81817,nudity,1424396262 +90693,81817,terrorism,1424396210 +90693,82459,Coen Brothers,1424397366 +90693,82459,Jeff Bridges,1424397363 +90693,82459,revenge,1424397371 +90693,85736,Pixar,1424734038 +90693,85736,short,1424734045 +90693,89753,Cold War,1424396322 +90693,89753,espionage,1424396325 +90693,89753,Spies,1424396328 +90693,95654,Pixar,1424559210 +90693,95654,short,1424559208 +90693,104841,long takes,1424752161 +90693,106782,Martin Scorsese,1424397130 +90693,106782,narration,1424397157 +90693,106920,joaquin phoenix,1424398191 +90693,106920,Scarlett Johansson,1424398188 +90693,106920,thought-provoking,1424398186 +90693,109687,physics,1424391889 +90693,110882,cars,1424391258 +90693,110882,realtime,1424391214 +90693,110882,road,1424391265 +90693,111360,dumb science,1424393014 +90693,111360,Scarlett Johansson,1424393006 +90693,111360,strong female lead,1424393021 +90693,112552,leadership,1424285460 +90693,112552,music,1424285460 +90693,112552,obsession,1424285460 +90693,115713,artificial intelligence,1440383392 +90693,115713,Psychological,1440383405 +90693,115713,sci-fi,1440383398 +90693,120936,short,1424397679 +90693,120938,bmw,1424890835 +90693,120938,car chase,1424890835 +90693,120938,short,1424890835 +90693,120940,bmw,1426218541 +90693,120940,promotional,1426218541 +90693,120940,short,1426218541 +90693,122882,charlize theron,1431873911 +90693,122882,post apocalypse,1431873901 +90693,130518,youtube,1434317378 +90752,79,mafia,1436488801 +90752,1258,atmospheric,1435702619 +90752,1258,mental illness,1435702611 +90752,1258,psychological,1435702597 +90752,1258,psychology,1435702603 +90752,1258,suspense,1435702601 +90752,1590,distorted reality,1435703547 +90752,1590,hallucination,1435703548 +90752,1590,Insanity,1435703769 +90752,1590,sci-fi,1435703571 +90752,1590,sci-fi. dark,1435703560 +90752,2288,Antarctica,1435702351 +90752,2288,lovecraftian,1435703332 +90752,2288,Lovecraftian mythology,1435702368 +90752,2288,paranoia,1435702332 +90752,2288,shape shifter,1435702362 +90752,37380,based on a video game,1435702920 +90752,40732,claustrophobic,1435702974 +90752,40732,suspense,1435702973 +90752,40732,tense,1435702972 +90752,104431,Bad acting,1436488856 +90752,104431,mind bending,1436488742 +90752,104431,twists & turns,1436488742 +90752,108729,adultery,1436488553 +90752,108729,mindfuck,1436488527 +90752,108729,Psychological,1436488537 +90752,108729,Symbolic,1436488564 +90752,113780,lovecraftian,1435703109 +90785,3262,atmospheric,1314742262 +90785,3262,surreal,1314742257 +90785,4848,Atmospheric,1314742310 +90785,4848,dark,1314742314 +90785,4848,David Lynch,1314742309 +90785,4848,disturbing,1314742304 +90785,4848,dreamlike,1314742306 +90785,4848,mystery,1314742301 +90785,4848,Nudity (Full Frontal),1314742326 +90785,4848,surreal,1314742319 +90789,260,classic sci-fi,1436642990 +90789,260,soft sci-fi,1436642977 +90789,260,space adventure,1436642981 +90789,115617,animation,1436643606 +90789,115617,kids,1436643606 +90789,115617,sci-fi,1436643606 +90845,4993,fantasy,1453958013 +90845,4993,Fascination,1453958037 +90845,4993,Oscar (Best Music - Original Score),1453958023 +90845,106782,Larger than life movie,1453957974 +90845,106782,money,1453957959 +90851,364,animals,1423521808 +90851,364,disney,1423521808 +90851,364,lions,1423521808 +90858,260,old,1442780064 +90858,260,sci-fi,1442780059 +90862,562,adolescence,1449026147 +90862,562,indie,1449026149 +90862,562,quirky,1449026142 +90862,2772,comedy,1447357936 +90862,2772,coming of age,1447357934 +90862,3786,Bechdel Test:Pass,1447278696 +90862,3786,campy,1447278677 +90862,3786,coming of age,1447278670 +90862,3786,lesbian,1447278663 +90862,3786,Natasha Lyonne,1447278684 +90862,3786,queer,1447278702 +90862,3786,sexuality,1447278687 +90862,5873,inspiring teacher,1447279416 +90862,5873,Kevin Klein,1447279423 +90862,6863,great soundtrack,1447279388 +90862,6863,inspiring teacher,1447279397 +90862,6863,Jack Black,1447279377 +90862,6863,music,1447279385 +90862,7541,gender swap,1447279195 +90862,44193,gender bending,1447279219 +90862,44193,gender swap,1447279215 +90862,54281,Anton Yelchin,1447357811 +90862,54281,coming of age,1447357803 +90862,54281,high school,1447357807 +90862,134943,campy,1447278650 +90862,134943,coming of age,1447278583 +90862,134943,dance,1447279549 +90862,134943,geek,1447279546 +90862,134943,high school,1447278603 +90862,134943,humorous,1447278796 +90862,134943,independent film,1447279584 +90862,134943,Intersex,1447278550 +90862,134943,off-beat comedy,1447279543 +90862,134943,Queer,1447278544 +90862,134943,quirky,1447278786 +90862,134943,witty,1447278822 +90862,146724,coming of age,1447279332 +90862,146724,gender bending,1447279319 +90862,146724,gender swap,1447279315 +90862,146724,queer,1447279323 +90862,146724,transgender,1447279328 +90863,32,Special,1137860183 +90863,189,Unreal,1141540322 +90863,215,Special,1137860148 +90863,418,Special,1137860155 +90863,1032,Special,1137860196 +90863,1171,Special,1137860203 +90863,1199,Special,1137860207 +90863,1726,shut up about the book ok?!,1146256964 +90863,2571,virtual reality,1139709012 +90863,2672,virtual reality,1139709048 +90863,5418,Kali Martial Art and Romance,1137608110 +90863,5418,Morals,1137608110 +90863,6323,psychology and the nature of reality,1137608074 +90863,6365,virtual reality,1139709003 +90863,6934,virtual reality,1139709008 +90863,7123,Madness,1139707560 +90879,54997,ridiculous,1206570770 +90879,55118,premature birth,1206571985 +90879,55820,tense violent,1206571497 +90902,260,classic,1438213109 +90902,260,Oscar (Best Music - Original Score),1438213120 +90984,318,classic,1431920105 +90984,318,drama,1431920081 +90984,318,friendship,1431920065 +90984,318,Morgan Freeman,1431920112 +90984,318,prison escape,1431920102 +90984,318,thought-provoking,1431920101 +90984,318,twist ending,1431920062 +90984,2329,emotional,1431919927 +90984,2329,thought-provoking,1431919911 +90984,91658,action,1431919999 +90984,91658,conspiracy theory,1431919999 +90984,91658,psychothriller,1431919999 +90991,260,future fantasy,1439787982 +90991,260,universe,1439787989 +91039,1025,ENJOYABLE,1189340161 +91039,1343,DENIRO is outstanding,1189339841 +91039,1343,horror,1189341091 +91039,1350,GREAT MOVIE,1189340120 +91039,1556,not as good as the first,1189340143 +91039,1991,original,1189340625 +91039,2126,Loved it!,1189340191 +91039,2138,sad. again with the dying animated animals,1189340574 +91039,2412,not as good as other rocky films,1189340513 +91039,2841,thrilling,1189340206 +91039,3206,GREAT MOVIE,1189340914 +91039,3752,FIRST HALF VERY FUNNY,1189339979 +91039,3877,I love this movie,1189340776 +91039,4103,GREAT MOVIE,1189340539 +91039,4310,ENJOYABLE,1189340000 +91039,4448,GOOD PERFORMANCE FROM NORTON,1189340253 +91039,4876,almost scary,1189340713 +91039,5009,good biopic,1189340733 +91039,5107,not what it said on the tin,1189340859 +91039,5377,ROMCOM,1189339891 +91039,6157,not as good as other comic films,1189340315 +91039,6378,Slick adventure,1189339946 +91039,6870,Brilliant Film,1189340061 +91039,8798,NOT AS GOOD AS HEAT,1189340083 +91039,41569,long but fun,1189340342 +91039,46578,good fun,1189340467 +91047,260,classic,1444583998 +91047,260,sci-fi,1444583987 +91066,21,contrived,1290470608 +91066,21,forgetable,1290470617 +91066,21,funny,1290470603 +91066,21,silly,1290470605 +91066,39,frivolous,1290463328 +91066,39,funny,1290463290 +91066,39,high school,1290463283 +91066,39,Jane Austen,1290463285 +91066,39,multiple viewings,1290463280 +91066,39,parody,1290463274 +91066,39,Paul Rudd,1290463316 +91066,39,quick,1290463292 +91066,39,quotable,1290467878 +91066,39,silly,1290463266 +91066,47,dark,1290443583 +91066,47,disgusting,1290443560 +91066,47,disturbing,1290443585 +91066,47,horror,1290443570 +91066,47,Morgan Freeman,1290443596 +91066,47,police,1290443581 +91066,47,powerful ending,1290443562 +91066,47,psychology,1290443573 +91066,47,twist ending,1290443576 +91066,50,clever,1290469480 +91066,50,complicated,1290469379 +91066,50,ensemble cast,1290469381 +91066,50,funny,1290469383 +91066,50,Gabriel Byrne,1290469406 +91066,50,genre-defining,1290469519 +91066,50,great cast,1290469396 +91066,50,suspense,1290469386 +91066,50,twist ending,1290469376 +91066,215,dialogue,1290372952 +91066,215,intelligent,1290372968 +91066,215,literate,1290372957 +91066,215,poignant,1290372975 +91066,215,quirky,1290372963 +91066,215,Vienna,1290372977 +91066,223,bad acting,1290468757 +91066,223,crude humor,1290468733 +91066,223,cynical,1290468744 +91066,223,dialogue driven,1290468748 +91066,223,funny,1290468771 +91066,223,irreverent,1290468750 +91066,223,juvenile,1290468765 +91066,223,low budget,1290468735 +91066,223,quirky,1290468737 +91066,296,action,1290382971 +91066,296,Christopher Walken,1290383001 +91066,296,cult film,1290382954 +91066,296,dark comedy,1290382950 +91066,296,funny,1290382988 +91066,296,multiple viewings,1290383019 +91066,296,non-linear,1290383025 +91066,296,original,1290383005 +91066,296,quirky,1290382955 +91066,296,quotable,1290382993 +91066,296,rape,1290383047 +91066,296,Samuel L. Jackson,1290382973 +91066,296,stylized,1290382965 +91066,296,unpredictable,1290383011 +91066,296,violence,1290382959 +91066,339,cliche,1290468102 +91066,339,cute,1290468093 +91066,339,frivolous,1290468098 +91066,339,mistaken identity,1290468124 +91066,339,predictable,1290468135 +91066,339,romantic,1290468143 +91066,339,sweet,1290468117 +91066,339,unoriginal,1290468107 +91066,357,British,1290369190 +91066,357,gay,1290369220 +91066,357,heartfelt,1290369212 +91066,357,Hugh Grant,1290369165 +91066,357,Kristin Scott Thomas,1290369178 +91066,357,Refreshing,1290369204 +91066,357,Rowan Atkinson,1290369172 +91066,357,sweet,1290369240 +91066,357,wedding,1290369182 +91066,497,banter,1334432079 +91066,497,beautiful,1334432153 +91066,497,Denzel Washington,1334432061 +91066,497,Emma Thompson,1334432046 +91066,497,Keanu Reeves,1334432063 +91066,497,Kenneth Branagh,1334432047 +91066,497,Shakespeare,1334432049 +91066,497,uneven acting,1334432091 +91066,497,witty,1334432072 +91066,541,atmospheric,1326586004 +91066,541,campy,1326585999 +91066,541,dystopia,1326586018 +91066,541,lack of investment,1326586049 +91066,541,robots,1326586104 +91066,541,stylized,1326586033 +91066,541,visually stunning,1326586074 +91066,585,misogyny,1290364559 +91066,585,parody,1290364554 +91066,608,black comedy,1294524436 +91066,608,dark comedy,1294524438 +91066,608,deadpan,1294524442 +91066,608,Frances McDormand,1294524475 +91066,608,gratuitous violence,1294524461 +91066,608,quirky,1294524481 +91066,750,dark comedy,1337697507 +91066,750,nuclear war,1337697509 +91066,750,over-the-top,1337697544 +91066,750,pacing,1337697531 +91066,750,satire,1337697519 +91066,750,silly,1337697565 +91066,750,slow,1337697586 +91066,858,atmospheric,1290462960 +91066,858,based on a book,1290462981 +91066,858,complex relationships,1290462970 +91066,858,immigrants,1290462986 +91066,858,Mafia,1290462945 +91066,858,organized crime,1290462948 +91066,858,robert de niro,1290462954 +91066,858,stylized,1290462956 +91066,922,atmospheric,1290382426 +91066,922,dark,1290382418 +91066,922,eerie,1290382428 +91066,922,Hollywood,1290382461 +91066,922,irreverent,1290382442 +91066,922,movie business,1290382463 +91066,922,over-the-top,1290382451 +91066,922,satirical,1290382424 +91066,1197,based on a book,1290470510 +91066,1197,Cary Elwes,1290470476 +91066,1197,classic,1290470506 +91066,1197,fairy tale,1290470498 +91066,1197,funny,1290470494 +91066,1197,quirky,1290470492 +91066,1197,satisfying,1290470527 +91066,1197,sweet,1290470535 +91066,1197,Wallace Shawn,1290470488 +91066,1197,witty,1290470503 +91066,1199,atmospheric,1290383447 +91066,1199,dark comedy,1290383445 +91066,1199,dreamlike,1290383449 +91066,1199,dystopia,1290383451 +91066,1199,Jonathan Pryce,1290383474 +91066,1199,original,1290383434 +91066,1199,surreal,1290383458 +91066,1199,thought-provoking,1290383456 +91066,1209,atmospheric,1295368473 +91066,1209,classic,1295368602 +91066,1209,genre-defining,1295368465 +91066,1209,guns,1295368634 +91066,1209,Intriguing,1295368680 +91066,1209,Jason Robards,1295368539 +91066,1209,stereotyped roles,1295368527 +91066,1209,underdeveloped characters,1295368620 +91066,1209,violence,1295368693 +91066,1209,visually appealing,1295368553 +91066,1209,western,1295368596 +91066,1217,Akira Kurosawa,1290455782 +91066,1217,atmospheric,1290455784 +91066,1217,beautiful,1290455787 +91066,1217,emotional,1290455796 +91066,1217,forceful,1290455789 +91066,1217,lyrical,1290455807 +91066,1217,pacing,1290455853 +91066,1217,powerful,1290455800 +91066,1217,Shakespeare,1290455780 +91066,1221,Al Pacino,1290462901 +91066,1221,back-story,1290462849 +91066,1221,complex characters,1290462872 +91066,1221,enthralling,1290462917 +91066,1221,Epic,1290462889 +91066,1221,great acting,1290462864 +91066,1221,mafia,1290462897 +91066,1221,sequel,1290462881 +91066,1221,violence,1290462925 +91066,1233,claustrophobic,1290692964 +91066,1233,German,1290692938 +91066,1233,grim,1290692943 +91066,1233,long,1290692952 +91066,1233,pacing,1290692948 +91066,1233,powerful,1290692924 +91066,1233,realistic,1290692937 +91066,1233,tense,1290692931 +91066,1233,thought-provoking,1290692967 +91066,1233,war,1290692927 +91066,1246,bittersweet,1290691570 +91066,1246,cheesy,1290691597 +91066,1246,cliche,1290691608 +91066,1246,English literature,1290691615 +91066,1246,friendship,1290691582 +91066,1246,heartbreaking,1290691584 +91066,1246,inspirational,1290691572 +91066,1246,philosophy,1290691571 +91066,1246,Robert Sean Leonard,1290691636 +91066,1265,clever,1290444265 +91066,1265,creative,1290444267 +91066,1265,funny,1290444257 +91066,1265,sappy,1290444336 +91066,1265,silly,1290444260 +91066,1265,sweet,1290444262 +91066,1270,adventure,1290470975 +91066,1270,classic,1290470947 +91066,1270,clever,1290470952 +91066,1270,dated,1290470969 +91066,1270,funny,1290470981 +91066,1270,inconsistencies,1290470958 +91066,1270,lovable,1290470987 +91066,1270,Michael J. Fox,1290470992 +91066,1270,quirky,1290470949 +91066,1270,time travel,1290470964 +91066,1285,biting,1290368592 +91066,1285,black comedy,1290368584 +91066,1285,Christian Slater,1290368653 +91066,1285,cynical,1290368595 +91066,1285,dark comedy,1290368587 +91066,1285,deadpan,1290368589 +91066,1285,irreverent,1290368629 +91066,1285,Quotable,1290368636 +91066,1285,satirical,1290368633 +91066,1285,serial killer,1290368665 +91066,1285,snappy dialog,1290368611 +91066,1285,Winona Ryder,1290368658 +91066,1354,bleak,1290692214 +91066,1354,disturbing,1290692278 +91066,1354,Emily Watson,1290692206 +91066,1354,exaggerated,1290692287 +91066,1354,great acting,1290692192 +91066,1354,heavy-handed,1290692240 +91066,1354,horrible ending,1290692268 +91066,1354,unintentionally funny,1290692226 +91066,1449,Christopher Guest,1290468823 +91066,1449,farce,1290468857 +91066,1449,Fred Willard,1290468825 +91066,1449,funny,1290468843 +91066,1449,mockumentary,1290468820 +91066,1449,multiple viewings,1290468815 +91066,1449,musical,1290468851 +91066,1449,Parker Posey,1290468833 +91066,1449,quotable,1290468810 +91066,1449,satirical,1290468839 +91066,1449,silly,1290468846 +91066,1449,small town,1290468861 +91066,1584,aliens,1337697177 +91066,1584,beautiful,1337696967 +91066,1584,didactic,1337696987 +91066,1584,Jodie Foster,1337696963 +91066,1584,Matthew McConaughey,1337696960 +91066,1584,overtly ideological,1337697140 +91066,1584,superficial supporting characters,1337697172 +91066,1584,thoughtful,1337697126 +91066,1584,visually stunning,1337697112 +91066,1617,anti-hero,1290456192 +91066,1617,complex,1290456235 +91066,1617,dark,1290456195 +91066,1617,film noir,1290456153 +91066,1617,guy pearce,1290456184 +91066,1617,james cromwell,1290456179 +91066,1617,multiple viewings,1290456172 +91066,1617,old hollywood,1290456204 +91066,1617,suspense,1290456218 +91066,1617,twist ending,1290456158 +91066,1617,visually appealing,1290456228 +91066,1635,atmospheric,1325458709 +91066,1635,austere,1325458706 +91066,1635,bleak,1325458711 +91066,1635,Christina Ricci,1325458714 +91066,1635,coming of age,1325458764 +91066,1635,dysfunctional family,1325458739 +91066,1635,EXTRAMARITAL AFFAIRS,1325458772 +91066,1635,moody,1325458782 +91066,1635,overly dramatic,1325458858 +91066,1635,too literary,1325458833 +91066,1635,visually appealing,1325458789 +91066,1653,dystopia,1302475526 +91066,1653,Ethan Hawke,1302475655 +91066,1653,eugenics,1302475560 +91066,1653,genetic engineering,1302475552 +91066,1653,powerful ending,1302475542 +91066,1653,predictable,1302475599 +91066,1653,thought-provoking,1302475566 +91066,1653,Uma Thurman,1302475544 +91066,1653,visually appealing,1302475626 +91066,1653,voiceover,1302475585 +91066,1732,black comedy,1290467803 +91066,1732,bowling,1290467822 +91066,1732,dark comedy,1290467806 +91066,1732,drugs,1290467827 +91066,1732,frivolous,1290467845 +91066,1732,funny,1290467800 +91066,1732,Philip Seymour Hoffman,1290467804 +91066,1732,quirky,1290467819 +91066,1732,quotable,1290467815 +91066,1732,violence,1290467821 +91066,1748,bad acting,1290383272 +91066,1748,creative,1290383330 +91066,1748,dark fantasy,1290383291 +91066,1748,dystopia,1290383288 +91066,1748,inconsistencies,1290383349 +91066,1748,Kiefer Sutherland,1290383282 +91066,1748,original,1290383333 +91066,1748,plot holes,1290383311 +91066,1748,Post apocalyptic,1290383293 +91066,1748,sci-fi,1290383304 +91066,1748,stylized,1290383299 +91066,1748,surreal,1290383297 +91066,1748,thought-provoking,1290383295 +91066,1748,unsatisfying,1290383316 +91066,1748,visually appealing,1290383327 +91066,1895,frivolous,1290468036 +91066,1895,multiple viewings,1290467996 +91066,1895,over-the-top,1290468016 +91066,1895,parody,1290468007 +91066,1895,shallow characters,1290468027 +91066,1895,silly,1290468002 +91066,2023,Al Pacino,1290463133 +91066,2023,bad acting,1290463121 +91066,2023,derivative,1290463168 +91066,2023,disappointing,1290463164 +91066,2023,sequel,1290463128 +91066,2023,Sophia Coppola,1290463114 +91066,2023,unsatisfying,1290463163 +91066,2068,bittersweet,1290472023 +91066,2068,complex,1290472033 +91066,2068,emotional,1290472006 +91066,2068,epic,1290471993 +91066,2068,Ingmar Bergman,1290471987 +91066,2068,intimate,1290472013 +91066,2068,pacing,1290472018 +91066,2068,poignant,1290472008 +91066,2068,powerful,1290472003 +91066,2068,swedish,1290472028 +91066,2068,uneven,1290472039 +91066,2144,bad message,1290467938 +91066,2144,high school,1290467969 +91066,2144,idealistic,1290467951 +91066,2144,John Cusack,1290467971 +91066,2144,mysoginistic,1290467926 +91066,2144,racist,1290467928 +91066,2144,sexist,1290467922 +91066,2144,shallow characters,1290467959 +91066,2160,Atmospheric,1295369629 +91066,2160,creepy,1295369793 +91066,2160,literary adaptation,1295369602 +91066,2160,long,1295369736 +91066,2160,Mia Farrow,1295369588 +91066,2160,occult,1295369619 +91066,2160,over-the-top ending,1295369765 +91066,2160,satanism,1295369684 +91066,2160,suspense,1295369611 +91066,2160,true to book,1295369597 +91066,2160,WITCHCRAFT,1295369686 +91066,2248,idealistic,1290380562 +91066,2248,John Cusack,1290380528 +91066,2248,romantic,1290380549 +91066,2248,sweet,1290380555 +91066,2324,bittersweet,1299929671 +91066,2324,emotional,1299929705 +91066,2324,father-son relationship,1299929713 +91066,2324,Holocaust,1299929669 +91066,2324,manipulative,1299929693 +91066,2324,Roberto Benigni,1299929741 +91066,2324,tearjerking,1299929696 +91066,2324,tragic,1299929720 +91066,2324,whimsical,1299929725 +91066,2395,clever,1290380735 +91066,2395,coming of age,1290380745 +91066,2395,deadpan,1290380762 +91066,2395,high school,1290380741 +91066,2395,lovable,1290380780 +91066,2395,odd,1290380766 +91066,2395,off-beat comedy,1290380729 +91066,2395,quirky,1290380756 +91066,2395,silly,1290380737 +91066,2395,Wes Anderson,1290380749 +91066,2395,witty,1290380752 +91066,2502,cliches,1290468578 +91066,2502,frivolous,1290468566 +91066,2502,funny,1290468587 +91066,2502,multiple viewings,1290468594 +91066,2502,off-beat comedy,1290468519 +91066,2502,office,1290468546 +91066,2502,quirky,1290468521 +91066,2502,quotable,1290468529 +91066,2502,satire,1290468542 +91066,2542,black comedy,1290469568 +91066,2542,cliche,1290469606 +91066,2542,dark comedy,1290469570 +91066,2542,derivative,1290469597 +91066,2542,fast-paced,1290469575 +91066,2542,frivolous,1290469604 +91066,2542,fun,1290469608 +91066,2542,funny,1290469579 +91066,2542,Guy Ritchie,1290469612 +91066,2542,nothing new,1290469599 +91066,2542,violence,1290469617 +91066,2571,complex,1290443828 +91066,2571,creative,1290443843 +91066,2571,original,1290443807 +91066,2571,philosophical,1290443884 +91066,2571,post apocalyptic,1290443810 +91066,2571,sci-fi,1290443865 +91066,2571,surreal,1290443822 +91066,2571,thought-provoking,1290443859 +91066,2692,animation,1290382127 +91066,2692,artistic,1290382131 +91066,2692,existential,1290382138 +91066,2692,Franka Potente,1290382051 +91066,2692,German,1290382064 +91066,2692,heist,1290382067 +91066,2692,intense,1290382104 +91066,2692,Moritz Bleibtreu,1290382077 +91066,2692,nonlinear,1290382106 +91066,2692,original,1290382111 +91066,2692,surreal,1290382094 +91066,2692,thought-provoking,1290382096 +91066,2692,visually appealing,1290382121 +91066,2706,Alyson Hannigan,1290462543 +91066,2706,funny,1290462521 +91066,2706,Gross-out,1290462569 +91066,2706,immature,1290462534 +91066,2706,juvenile,1290462529 +91066,2706,silly,1290462538 +91066,2706,slapstick,1290462561 +91066,2706,stereotypes,1290462594 +91066,2706,teen comedy,1290462554 +91066,2858,black comedy,1290471016 +91066,2858,dark comedy,1290471013 +91066,2858,heavy-handed,1290471214 +91066,2858,intellegent,1290471236 +91066,2858,thought-provoking,1290471209 +91066,2858,unlikable characters,1290471228 +91066,2858,violence,1290471245 +91066,2858,visually stunning,1290471222 +91066,2947,007,1334432770 +91066,2947,cliche,1334432785 +91066,2947,james bond,1334432761 +91066,2947,Sean Connery,1334432773 +91066,3072,Cher,1290368731 +91066,3072,Nicolas Cage,1290368727 +91066,3072,sweet,1290368718 +91066,3160,Aimee Mann,1290692007 +91066,3160,bleak,1290691960 +91066,3160,emotional,1290692032 +91066,3160,ensemble cast,1290691990 +91066,3160,great acting,1290692132 +91066,3160,great soundtrack,1290691997 +91066,3160,Julianne Moore,1290692080 +91066,3160,multiple storylines,1290691962 +91066,3160,overdramatic,1290692156 +91066,3160,Paul Thomas Anderson,1290692049 +91066,3160,Philip Seymour Hoffman,1290691975 +91066,3160,poignant,1290691965 +91066,3160,powerful,1290692028 +91066,3160,redemption,1290692116 +91066,3160,stylized,1290692038 +91066,3160,surprising,1290692019 +91066,3307,beautiful,1290456369 +91066,3307,bittersweet,1290456558 +91066,3307,funny,1290456531 +91066,3307,silent movie,1290456549 +91066,3307,slapstick,1290456568 +91066,3307,stylized,1290456561 +91066,3307,sweet,1290456372 +91066,3471,aliens,1337696771 +91066,3471,Francois Truffaut,1337696832 +91066,3471,hopeful,1337696876 +91066,3471,humorous,1337696850 +91066,3471,silly,1337696798 +91066,3471,slow,1337696783 +91066,3471,Steven Spielberg,1337696857 +91066,3471,sweet,1337696891 +91066,3471,visually appealing,1337696815 +91066,3481,based on a book,1290467688 +91066,3481,Chicago,1290467646 +91066,3481,cliches,1290467676 +91066,3481,funny,1290467629 +91066,3481,geeky,1290467634 +91066,3481,great soundtrack,1290467626 +91066,3481,music,1290467639 +91066,3481,quirky,1290467636 +91066,3911,Christopher Guest,1290369265 +91066,3911,dark comedy,1290369269 +91066,3911,dogs,1290369343 +91066,3911,Fred Willard,1290369319 +91066,3911,funny,1290369329 +91066,3911,improvised,1290369346 +91066,3911,mockumentary,1290369339 +91066,3911,overboard,1290369385 +91066,3911,Parker Posey,1290369285 +91066,3911,quirky,1290369332 +91066,3911,satire,1290369335 +91066,3911,silly,1290369367 +91066,3948,dumb humor,1290469010 +91066,3948,funny moments,1290469001 +91066,3948,nothing new,1290469033 +91066,3948,slapstick,1290468995 +91066,3949,disturbing,1294524690 +91066,3949,emotional,1294524696 +91066,3949,graphic,1294528395 +91066,3949,great acting,1294528386 +91066,3949,hard to watch,1294524705 +91066,3949,intense,1294524687 +91066,3949,nauseating,1294524733 +91066,3949,painful,1294524712 +91066,3949,powerful,1294524693 +91066,3967,accents,1290691532 +91066,3967,ballet,1290691528 +91066,3967,beautiful,1290691486 +91066,3967,coming of age,1290691522 +91066,3967,humorous,1290691474 +91066,3967,independent film,1290691479 +91066,3967,inspirational,1290691477 +91066,3967,preictable,1290691497 +91066,3967,small town,1290691539 +91066,3967,sweet,1290691463 +91066,3967,working class,1290691542 +91066,3983,complex characters,1290381340 +91066,3983,complex relationships,1290381346 +91066,3983,family,1290381366 +91066,3983,Laura Linney,1290381283 +91066,3983,Mark Ruffalo,1290381285 +91066,3983,realistic,1290381303 +91066,3983,realistic relationships,1290381327 +91066,3983,religion,1290381355 +91066,3983,SIBLING RELATIONSHIPS,1290381360 +91066,3983,smart,1290381312 +91066,3983,sweet,1290381300 +91066,3983,workplace,1290381357 +91066,4011,cliche,1290469712 +91066,4011,cynical,1290469657 +91066,4011,derivative,1290469635 +91066,4011,ensemble cast,1290469676 +91066,4011,fast-paced,1290469644 +91066,4011,frivolous,1290469689 +91066,4011,fun,1290469646 +91066,4011,funny,1290469631 +91066,4011,good soundtrack,1290469702 +91066,4011,heist,1290469653 +91066,4011,quirky,1290469650 +91066,4011,single viewing,1290469686 +91066,4011,stereotypes,1290469719 +91066,4011,twist ending,1290469649 +91066,4226,complicated,1290458276 +91066,4226,dark,1290458279 +91066,4226,Guy Pearce,1290458287 +91066,4226,nonlinear,1290458300 +91066,4226,plot holes,1290458309 +91066,4226,psychological,1290458272 +91066,4226,stylized,1290458268 +91066,4226,tense,1290458264 +91066,4226,twist ending,1290458260 +91066,4226,violence,1290458335 +91066,4297,atmospheric,1290471780 +91066,4297,beautiful,1290471709 +91066,4297,emotional,1290471712 +91066,4297,great acting,1290471719 +91066,4297,immigrants,1290471724 +91066,4297,Max von Sydow,1290471727 +91066,4297,pacing,1290471764 +91066,4297,slow,1290471772 +91066,4297,uplifting,1290471792 +91066,4642,bittersweet,1290467739 +91066,4642,campy,1290467737 +91066,4642,East Germany,1290467747 +91066,4642,fascinating protagonist,1290467779 +91066,4642,Germany,1290467728 +91066,4642,great soundtrack,1290467756 +91066,4642,music,1290467759 +91066,4642,musical,1290467763 +91066,4642,queer,1290467731 +91066,4642,quirky,1290467733 +91066,4642,stylized,1290467736 +91066,4642,transgender,1290467735 +91066,4744,bad execution,1295369523 +91066,4744,bad follow-through,1295369470 +91066,4744,bad plot twists,1295369536 +91066,4744,great beginning,1295369429 +91066,4744,horror,1295369402 +91066,4744,inconsistent monster,1295369377 +91066,4744,monster,1295369507 +91066,4744,silly reveal,1295369482 +91066,4744,strong set-up,1295369437 +91066,4744,suspense,1295369405 +91066,4873,beautiful,1290383690 +91066,4873,cerebral,1290383633 +91066,4873,existential,1290383571 +91066,4873,metaphysics,1290383585 +91066,4873,no narrative,1290383682 +91066,4873,pacing,1290383645 +91066,4873,philosophy,1290383550 +91066,4873,pretentious,1290383655 +91066,4873,stylized,1290383584 +91066,4873,surreal,1290383551 +91066,4873,thought-provoking,1290383562 +91066,4873,visually stunning,1290383580 +91066,4878,dreamlike,1290462637 +91066,4878,high school,1290462679 +91066,4878,plot holes,1290462692 +91066,4878,psychology,1290462686 +91066,4878,stereotypes,1290462696 +91066,4878,stylized,1290462628 +91066,4878,surreal,1290462630 +91066,4878,thought-provoking,1290462631 +91066,4878,time travel,1290462633 +91066,4878,twist ending,1290462682 +91066,4967,complex characters,1290458157 +91066,4967,complex relationships,1290458152 +91066,4967,disturbing,1290458160 +91066,4967,emotional,1290458167 +91066,4967,ethnic conflict,1290458174 +91066,4967,intense,1290458186 +91066,4967,tense,1290458170 +91066,4967,tough,1290458212 +91066,4973,fairy tale,1290456652 +91066,4973,manic pixie dream girl,1290456614 +91066,4973,over-the-top,1290456626 +91066,4973,overrated,1290456680 +91066,4973,quirky,1290456629 +91066,4973,stylized,1290456633 +91066,4973,surreal,1290456634 +91066,4973,sweet,1290455872 +91066,4973,visually appealing,1290455878 +91066,4973,whimsical,1290456638 +91066,5577,adolescence,1290380971 +91066,5577,cynical,1290380993 +91066,5577,dark humor,1290380985 +91066,5577,Jeff Goldblum,1290380967 +91066,5577,Kieran Culkin,1290380964 +91066,5577,quirky,1290380976 +91066,5903,Amazing Cinematography,1302475245 +91066,5903,Christian Bale,1302475239 +91066,5903,dystopia,1302475241 +91066,5903,gunfight,1302475324 +91066,5903,guns,1302475359 +91066,5903,plot twists,1302475268 +91066,5903,stylized,1302475302 +91066,5903,stylized violence,1302475314 +91066,5903,thought-provoking,1302475289 +91066,5903,totalitarianism,1302475366 +91066,5903,violence,1302475384 +91066,5903,visually stunning,1302475258 +91066,5954,dark,1290382799 +91066,5954,depressing,1290382813 +91066,5954,Edward Norton,1290382774 +91066,5954,New York,1290382785 +91066,5954,Philip Seymour Hoffman,1290382772 +91066,5954,powerful ending,1290382778 +91066,5954,tough,1290382806 +91066,6016,atmospheric,1290382752 +91066,6016,beautiful,1290382692 +91066,6016,Brazil,1290382650 +91066,6016,depressing,1290382703 +91066,6016,disturbing,1290382658 +91066,6016,drugs,1290382653 +91066,6016,eye-opening,1290382741 +91066,6016,invigorating,1290382729 +91066,6016,multiple storylines,1290382660 +91066,6016,stylized,1290382655 +91066,6016,tough,1290382697 +91066,6016,violence,1290382665 +91066,6331,exploitive,1290472169 +91066,6331,funny,1290472177 +91066,6331,geeky,1290472194 +91066,6331,intimate,1290472199 +91066,6331,likable,1290472222 +91066,6331,quirky,1290472192 +91066,6331,unusual,1290472188 +91066,6331,well constructed,1290472219 +91066,6365,cheesy,1290467558 +91066,6365,disappointing,1290467581 +91066,6365,dystopia,1290467523 +91066,6365,let down,1290467577 +91066,6365,Post apocalyptic,1290467474 +91066,6365,sequel,1290467483 +91066,6365,shallow characters,1290467551 +91066,6365,thought-provoking,1290467525 +91066,6365,visually stunning,1290467564 +91066,6502,Cillian Murphy,1290468365 +91066,6502,derivative,1290468328 +91066,6502,interesting characters,1290468344 +91066,6502,low budget,1290468303 +91066,6502,Post apocalyptic,1290468307 +91066,6502,suspense,1290468312 +91066,6502,violence,1290468359 +91066,6502,zombies,1290468301 +91066,6568,Anna Kendrick,1290691841 +91066,6568,fun,1290691859 +91066,6568,great soundtrack,1290691831 +91066,6568,musical,1290691827 +91066,6568,predictable,1290691869 +91066,6568,queer,1290691819 +91066,6568,shallow characters,1290691855 +91066,6568,Stephen Sondheim,1290691922 +91066,6568,stereotypes,1290691847 +91066,6711,atmospheric,1290383886 +91066,6711,Bill Murray,1290383847 +91066,6711,bittersweet,1290383849 +91066,6711,complex characters,1290383868 +91066,6711,complex relationships,1290383877 +91066,6711,intelligent,1290383883 +91066,6711,Melancholic,1290383850 +91066,6711,poignant,1290383892 +91066,6711,Scarlett Johansson,1290383845 +91066,6711,urbane,1290383860 +91066,6711,wistful,1290383858 +91066,6870,Dark,1290443669 +91066,6870,disappointing,1290443647 +91066,6870,great acting,1290443716 +91066,6870,great cast,1290443699 +91066,6870,heavy-handed,1290443746 +91066,6870,overrated,1290443736 +91066,6870,Sean Penn,1290443657 +91066,6870,stereotypes,1290443686 +91066,6870,Tim Robbins,1290443664 +91066,6934,disapointing,1290467388 +91066,6934,dystopia,1290467443 +91066,6934,let down,1290467424 +91066,6934,Post apocalyptic,1290467405 +91066,6934,religious,1290467411 +91066,6934,sequel,1290467392 +91066,6934,unsatisfying,1290467431 +91066,6934,visually stunning,1290467438 +91066,6942,Alan Rickman,1290368999 +91066,6942,british,1290368948 +91066,6942,Chiwetel Ejiofor,1290369118 +91066,6942,derivative,1290369034 +91066,6942,Emma Thompson,1290369012 +91066,6942,ensemble cast,1290369083 +91066,6942,Hugh Grant,1290368943 +91066,6942,Keira Knightley,1290368941 +91066,6942,Laura Linney,1290368983 +91066,6942,Liam Neeson,1290368991 +91066,6942,multiple storylines,1290368955 +91066,6942,predictable,1290369027 +91066,6942,sexist,1290369076 +91066,6963,Amish,1326585342 +91066,6963,compelling,1326585334 +91066,6963,fair,1326585326 +91066,6963,fascinating,1326585379 +91066,6963,not self-aware,1326585490 +91066,6963,Poor visual quality,1326585417 +91066,6963,slow motion,1326585309 +91066,7327,artistic,1290471927 +91066,7327,beautifual,1290471937 +91066,7327,Bibi Andersson,1290471902 +91066,7327,cerebral,1290471946 +91066,7327,dreamlike,1290471950 +91066,7327,emotional,1290471924 +91066,7327,enigmatic,1290471941 +91066,7327,experimental,1290471930 +91066,7327,Liv Ullmann,1290471905 +91066,7327,over-the-top,1290471963 +91066,7327,psychology,1290471907 +91066,7327,Swedish,1290471914 +91066,7361,bittersweet,1290381793 +91066,7361,Charlie Kaufman,1290381766 +91066,7361,complex relationships,1290381842 +91066,7361,imagination,1290381820 +91066,7361,manic pixie dream girl,1290381848 +91066,7361,memory,1290381772 +91066,7361,quirky,1290381769 +91066,7361,sci-fi,1290381787 +91066,7361,smart,1290381797 +91066,7361,strange,1290381803 +91066,7361,surreal,1290381777 +91066,7361,thought-provoking,1290381776 +91066,7361,visually stunning,1290381811 +91066,8464,clever,1326585568 +91066,8464,dishonest,1326585545 +91066,8464,entertaining,1326585516 +91066,8464,informative,1326585598 +91066,8464,manipulative,1326585536 +91066,8464,McDonalds,1326585576 +91066,8464,opaque,1326585611 +91066,8464,social criticism,1326585526 +91066,8533,Boring,1290368844 +91066,8533,chick flick,1290368777 +91066,8533,derivative,1290368806 +91066,8533,James Marsden,1290368874 +91066,8533,Joan Allen,1290368836 +91066,8533,predictable,1290368790 +91066,8533,Rachel McAdams,1290368864 +91066,8533,romantic,1290368829 +91066,8533,Ryan Gosling,1290368866 +91066,8533,sappy,1290372570 +91066,8533,sentimental,1290372576 +91066,8638,dialogue,1290372823 +91066,8638,inconclusive,1290372935 +91066,8638,intelligent,1290372834 +91066,8638,Julie Delpy,1290372818 +91066,8638,nothing new,1290372891 +91066,8638,philosophical,1290372883 +91066,8638,quirky,1290372838 +91066,8638,Richard Linklater,1290372841 +91066,8638,romantic,1290372827 +91066,8638,sequel,1290372870 +91066,8784,coming of age,1290380813 +91066,8784,funny,1290380830 +91066,8784,Great Soundtrack,1290380810 +91066,8784,idealistic,1290380892 +91066,8784,manic pixie dream girl,1290380854 +91066,8784,mental illness,1290380919 +91066,8784,quirky,1290380817 +91066,8784,sweet,1290380905 +91066,8784,unrealistic,1290380890 +91066,8784,unsatisfying ending,1290380942 +91066,8784,Zach Braff,1290380822 +91066,8874,black comedy,1290444362 +91066,8874,British,1290444393 +91066,8874,Edgar Wright,1290444403 +91066,8874,funny,1290444375 +91066,8874,parody,1290444364 +91066,8874,spoof,1290444368 +91066,8874,stylized violence,1290444388 +91066,8874,zombies,1290444370 +91066,8910,existentialism,1334432193 +91066,8910,frivolous,1334432387 +91066,8910,funny,1334432188 +91066,8910,Mark Wahlberg,1334432201 +91066,8910,over-the-top,1334432403 +91066,8910,satire,1334432409 +91066,8910,silly,1334432381 +91066,8910,stylized,1334432190 +91066,8910,whimsical,1334432191 +91066,8949,dark comedy,1290381198 +91066,8949,overrated,1290383089 +91066,8949,seedy,1290381233 +91066,8949,unlikable,1290381205 +91066,8949,Unlikable protagonist,1290381222 +91066,8949,unsafisfying,1290381210 +91066,8949,wine,1290381258 +91066,8957,Cary Elwes,1290443485 +91066,8957,clever,1290443530 +91066,8957,horror,1290443470 +91066,8957,mindfuck,1290443492 +91066,8957,original,1290443526 +91066,8957,plot twists,1290443520 +91066,8957,serial killer,1290443489 +91066,8957,surprise ending,1290443511 +91066,8957,suspense,1290443501 +91066,8957,Thriller,1290443467 +91066,8981,bad adaptation,1290692329 +91066,8981,based on a play,1290692424 +91066,8981,bleak,1290692342 +91066,8981,dark,1290692337 +91066,8981,good acting,1290692317 +91066,8981,overdramatic,1290692390 +91066,8981,unlikable characters,1290692370 +91066,8981,unrealistic dialogue,1290692403 +91066,27392,cameos,1290469345 +91066,27392,dumb,1290469276 +91066,27392,dumb humor,1290469285 +91066,27392,juvenile,1290469332 +91066,27392,silly,1290469290 +91066,27392,too little content,1290469319 +91066,27392,unnecessary,1290469326 +91066,27611,complex,1290444082 +91066,27611,genre-bending,1290444088 +91066,27611,mythology,1290444048 +91066,27611,original,1290444006 +91066,27611,post-apocalyptic,1290444002 +91066,27611,sci-fi,1290443990 +91066,27611,thought-provoking,1290444011 +91066,27611,visually appealing,1290444024 +91066,27727,alcoholism,1290469952 +91066,27727,atmospheric,1290469859 +91066,27727,complex characters,1290469864 +91066,27727,complex relationships,1290469869 +91066,27727,dark,1290469847 +91066,27727,epic,1290469931 +91066,27727,Fatih Akin,1290469897 +91066,27727,Germany,1290469874 +91066,27727,immigrants,1290469853 +91066,27727,intense,1290469917 +91066,27727,love story,1290469933 +91066,27727,migrant cinema,1290469904 +91066,27727,Nudity (Full Frontal),1290469942 +91066,27727,original,1290469914 +91066,27727,suicide attempt,1290469937 +91066,27727,tragic,1290469924 +91066,30810,pacing,1334432560 +91066,30810,slow,1334432572 +91066,30810,stylized,1334432523 +91066,30810,too quirky,1334432550 +91066,30810,unlikeable characters,1334432586 +91066,30810,visually appealing,1334432525 +91066,30810,Wes Anderson,1334432526 +91066,30810,whimsical,1334432529 +91066,30825,crude humor,1290469077 +91066,30825,dervative,1290469101 +91066,30825,funny moments,1290469073 +91066,30825,juvenile,1290469085 +91066,30825,predictable,1290469106 +91066,30825,shallow characters,1290469093 +91066,30825,stupid humor,1290469080 +91066,33794,action,1290462427 +91066,33794,atmospheric,1290462415 +91066,33794,back-story,1290462475 +91066,33794,based on a comic,1290462418 +91066,33794,Christian Bale,1290462405 +91066,33794,dark,1290462420 +91066,33794,Michael Caine,1290462444 +91066,33794,Morgan Freeman,1290462408 +91066,33794,stylized,1290462423 +91066,33794,superhero,1290462410 +91066,33794,thought-provoking,1290462413 +91066,33903,bad ending,1290470131 +91066,33903,complex relationships,1290470167 +91066,33903,Daniel Brühl,1290470116 +91066,33903,heavy-handed,1290470176 +91066,33903,idealistic,1290470124 +91066,33903,interesting concept,1290470155 +91066,33903,political,1290470128 +91066,33903,thought-provoking,1290470162 +91066,33903,thoughtful,1290470136 +91066,34162,Christopher Walken,1290692503 +91066,34162,cliched,1290692559 +91066,34162,frivolous,1290692535 +91066,34162,funny,1290692497 +91066,34162,over-the-top,1290692520 +91066,34162,predictable,1290692540 +91066,34162,silly,1290692593 +91066,34162,stereotypes,1290692544 +91066,34405,clever,1290444193 +91066,34405,creative,1290444195 +91066,34405,ensemble cast,1290444109 +91066,34405,genre-bending,1290444199 +91066,34405,great cast,1290444113 +91066,34405,not as good as the tv show,1290444187 +91066,34405,quirky,1290444120 +91066,34405,sci-fi,1290444122 +91066,34405,stylized violence,1290444156 +91066,34405,visually stunning,1290444134 +91066,34405,witty,1290444124 +91066,34552,Bill Nighy,1290470244 +91066,34552,compelling beginning,1290470270 +91066,34552,good acting,1290470282 +91066,34552,heavy-handed,1290470196 +91066,34552,Iceland,1290470241 +91066,34552,Kelly Macdonald,1290470243 +91066,34552,overly simplistic,1290470239 +91066,34552,political,1290470193 +91066,36517,british,1290470380 +91066,36517,cerebral,1290470382 +91066,36517,gritty,1290470300 +91066,36517,Nudity (Topless - Brief),1290470375 +91066,36517,political,1290470317 +91066,36517,Rachel Weisz,1290470322 +91066,36517,Ralph Fiennes,1290470353 +91066,36517,social commentary,1290470329 +91066,36517,tense,1290470331 +91066,36517,tragic,1290470304 +91066,36517,visually appealing,1290470344 +91066,38038,adorable,1290470906 +91066,38038,fun,1290470918 +91066,38038,funny,1290470908 +91066,38038,lovable,1290470924 +91066,38038,quirky,1290470913 +91066,38038,satirical,1290470915 +91066,38886,character driven,1340325582 +91066,38886,dark comedy,1340325715 +91066,38886,evocative,1340325680 +91066,38886,fascinating characters,1340325590 +91066,38886,high squirm factor,1340325600 +91066,38886,quick reversal,1340325628 +91066,38886,quirky,1340325709 +91066,38886,relationships,1340325576 +91066,38886,unresolved,1340325607 +91066,39446,bad script,1290443441 +91066,39446,clever,1290443374 +91066,39446,creepy,1290443386 +91066,39446,dissapointing,1290443299 +91066,39446,gore,1290443313 +91066,39446,horror,1290443405 +91066,39446,not as good as the first,1290443360 +91066,39446,plot twists,1290443355 +91066,39446,sequel,1290443368 +91066,39446,shallow characters,1290443325 +91066,39446,stereotypes,1290443339 +91066,39446,suspense,1290443393 +91066,44195,based on a book,1290470677 +91066,44195,clever,1290470689 +91066,44195,dark comedy,1290470673 +91066,44195,frivilous,1290470712 +91066,44195,funny,1290470664 +91066,44195,satire,1290470666 +91066,44195,social commentary,1290470668 +91066,44555,beautiful,1290456747 +91066,44555,compex relationships,1290456761 +91066,44555,complex characters,1290456757 +91066,44555,East Germany,1290456704 +91066,44555,Germany,1290456700 +91066,44555,great acting,1290456894 +91066,44555,Stasi,1290456708 +91066,44555,subtle performances,1290456902 +91066,44555,tragic,1290456750 +91066,44761,ambitious,1326585722 +91066,44761,borderline cringe moments,1326585778 +91066,44761,clever,1326585792 +91066,44761,detective movie,1326585731 +91066,44761,Joseph Gordon-Levitt,1326585764 +91066,44761,quirky,1326585745 +91066,44761,slang,1326585726 +91066,44761,stylized,1326585717 +91066,44761,teenage noire,1326585741 +91066,44761,uneven cast,1326585832 +91066,45728,bad acting,1290468632 +91066,45728,crude humor,1290468640 +91066,45728,disappointing,1290468666 +91066,45728,pop culture references,1290468645 +91066,45728,Rosario Dawson,1290468676 +91066,45728,sequel,1290468672 +91066,46578,amazing cast,1290381100 +91066,46578,Bryan Cranston,1290381130 +91066,46578,clever,1290381149 +91066,46578,dark comedy,1290381072 +91066,46578,funny,1290381078 +91066,46578,off-beat comedy,1290381075 +91066,46578,outrageous,1290381094 +91066,46578,quirky,1290381085 +91066,46578,road trip,1290381081 +91066,46578,silly,1290381140 +91066,46578,Toni Collette,1290381113 +91066,47999,christian fundamentalism,1290471118 +91066,47999,depressing,1290471145 +91066,47999,fascinating,1290471134 +91066,47999,in depth,1290471180 +91066,47999,religion,1290471121 +91066,47999,sad,1290471155 +91066,47999,unbiased,1290471126 +91066,48516,atmospheric,1290456282 +91066,48516,bad accents,1290456316 +91066,48516,complex relationships,1290456297 +91066,48516,complicated plot,1290456309 +91066,48516,ensemble cast,1290456326 +91066,48516,great cast,1290456322 +91066,48516,Leonardo DiCaprio,1290456270 +91066,48516,Matt Damon,1290456300 +91066,48516,surprising,1290456335 +91066,48516,suspense,1290456287 +91066,48774,apocalypse,1299930219 +91066,48774,cold,1299930192 +91066,48774,contrived,1299930199 +91066,48774,dystopia,1299930235 +91066,48774,interesting set-up,1299930380 +91066,48774,Michael Caine,1299930223 +91066,48774,visually appealing,1299930215 +91066,49824,Beyonce Knowles,1325461059 +91066,49824,Eddie Murphy,1325461024 +91066,49824,fake aging,1325461247 +91066,49824,good acting,1325461136 +91066,49824,great soundtrack,1325461129 +91066,49824,Jennifer Hudson,1325461078 +91066,49824,large scope,1325461183 +91066,49824,musical,1325461085 +91066,49824,relationships,1325461105 +91066,49824,rhythm & blues,1325461092 +91066,49824,too ambitious,1325461158 +91066,49824,too many characters,1325461209 +91066,49957,beautiful,1290691742 +91066,49957,bittersweet,1290691749 +91066,49957,character driven,1290691720 +91066,49957,Dominic Cooper,1290691686 +91066,49957,education,1290691789 +91066,49957,evokative,1290691732 +91066,49957,great acting,1290691690 +91066,49957,great soundtrack,1290691778 +91066,49957,music,1290691704 +91066,49957,pacing,1290691726 +91066,49957,queer,1290691683 +91066,49957,Samuel Barnett,1290691694 +91066,49957,school,1290691763 +91066,50872,accents,1290468197 +91066,50872,France,1290468228 +91066,50872,funny,1290468195 +91066,50872,original,1290468220 +91066,50872,Pixar animation,1290468209 +91066,50872,rats,1290468236 +91066,50872,sweet,1290468193 +91066,51255,action,1299930778 +91066,51255,action spoof,1299930689 +91066,51255,black comedy,1299930679 +91066,51255,contrived,1299930675 +91066,51255,funny,1299930743 +91066,51255,over-the-top,1299930701 +91066,51255,parody,1299930692 +91066,51255,police,1299930785 +91066,51255,silly,1299930770 +91066,51255,Simon Pegg,1299930690 +91066,51255,small town,1299930780 +91066,51255,too much,1299930721 +91066,51884,bittersweet,1325872148 +91066,51884,great performances,1325872178 +91066,51884,immigrants,1325872321 +91066,51884,inconsistent,1325872375 +91066,51884,Irrfan Khan,1325872165 +91066,51884,large scope,1325872215 +91066,51884,meek,1325872281 +91066,51884,pacing,1325872242 +91066,51884,Tabu,1325872157 +91066,51884,too ambitious,1325872203 +91066,51884,touching,1325872234 +91066,53123,beautiful,1290381519 +91066,53123,complex characters,1290381589 +91066,53123,complex relationships,1290381595 +91066,53123,emotional,1290381542 +91066,53123,great soundtrack,1290381532 +91066,53123,Ireland,1290381600 +91066,53123,music,1290381539 +91066,53123,open ending,1290381555 +91066,53123,sweet,1290381573 +91066,53123,Unexpected Ending,1290381565 +91066,55442,animation,1299929461 +91066,55442,coming of age,1299929439 +91066,55442,honest,1299929504 +91066,55442,humorous,1299929463 +91066,55442,intelligent,1299929473 +91066,55442,Iran,1299929441 +91066,55442,one-sided,1299929530 +91066,55442,personal,1299929535 +91066,55442,politics,1299929444 +91066,55442,religion,1299929447 +91066,55442,social commentary,1299929450 +91066,55442,thoughtful,1299929498 +91066,55442,visually stunning,1299929554 +91066,55555,atmospheric,1290470027 +91066,55555,complex characters,1290470030 +91066,55555,ensemble cast,1290470022 +91066,55555,Fatih Akin,1290469978 +91066,55555,great acting,1290470017 +91066,55555,interwoven lives,1290470009 +91066,55555,migrant cinema,1290469973 +91066,55555,multiple storylines,1290470004 +91066,55555,political,1290470086 +91066,55555,powerful,1290470074 +91066,55555,prison,1290470036 +91066,55555,realistic,1290470066 +91066,55555,transit,1290470057 +91066,55555,turkish music,1290470038 +91066,55820,anticlimactic,1290463050 +91066,55820,complex,1290463065 +91066,55820,dark,1290463078 +91066,55820,great acting,1290463022 +91066,55820,pacing,1290463044 +91066,55820,suspense,1290463033 +91066,55820,twist ending,1290463035 +91066,55820,unsatisfying,1290463057 +91066,55820,violent,1290463036 +91066,56367,Ellen Page,1290380608 +91066,56367,great soundtrack,1290380615 +91066,56367,humorous,1290380669 +91066,56367,indie,1290380673 +91066,56367,pregnancy,1290380658 +91066,56367,quick-witted,1290380645 +91066,56367,snappy dialog,1290380630 +91066,56367,witty,1290380617 +91066,57243,beautiful,1290381469 +91066,57243,challenging,1290381476 +91066,57243,complex relationships,1290381450 +91066,57243,confronting stereotypes,1290381458 +91066,57243,Middle East,1290381438 +91066,57669,Belgium,1290469746 +91066,57669,black comedy,1290469758 +91066,57669,dark comedy,1290469742 +91066,57669,hitmen,1290469751 +91066,57669,irreverent,1290469756 +91066,57669,stylized,1290469777 +91066,57669,unexpected,1290469737 +91066,57669,violence,1290469781 +91066,57669,weak plot,1290469795 +91066,59018,beautiful,1290471656 +91066,59018,complex characters,1290471661 +91066,59018,great acting,1290471584 +91066,59018,Haaz Sleiman,1290471628 +91066,59018,heavy-handed,1290471641 +91066,59018,immigrants,1290471578 +91066,59018,predictable,1290471637 +91066,59018,Richard Jenkins,1290471587 +91066,59118,awkward,1290471516 +91066,59118,difficult protagonist,1290471494 +91066,59118,no plot,1290471528 +91066,59118,silly,1290471471 +91066,59118,sweet,1290471482 +91066,59118,uncomfortable,1290471522 +91066,59118,unrealistic,1290471546 +91066,59126,Bill Maher,1290471076 +91066,59126,heavy-handed,1290471091 +91066,59126,one-sided,1290471064 +91066,59126,topic:religion,1290471083 +91066,59126,unfair,1290471059 +91066,60069,artificial intelligence,1290383179 +91066,60069,creative,1290383197 +91066,60069,dark,1290383170 +91066,60069,dystopia,1290383173 +91066,60069,original,1290383201 +91066,60069,pacing,1290383166 +91066,60069,Post apocalyptic,1290383187 +91066,60069,robots,1290383184 +91066,60069,silly,1290383222 +91066,60069,space,1290383182 +91066,60069,sweet,1290383193 +91066,62437,complex relationships,1290692753 +91066,62437,Elizabeth Banks,1290692717 +91066,62437,fair,1290692726 +91066,62437,great acting,1290692723 +91066,62437,James Cromwell,1290692711 +91066,62437,Josh Brolin,1290692706 +91066,62437,long,1290692778 +91066,62437,nonlinear,1290692784 +91066,62437,pacing,1290692775 +91066,62437,unbiased,1290692732 +91066,63131,derivative,1290692647 +91066,63131,funny,1290692619 +91066,63131,geeks,1290692666 +91066,63131,obvious plot,1290692645 +91066,63131,Paul Rudd,1290692671 +91066,63131,predictable,1290692653 +91066,63131,role playing game,1290692638 +91066,63131,silly,1290692622 +91066,63131,social commentary,1290692629 +91066,63131,stereotypes,1290692659 +91066,63992,anti-feminist,1325459502 +91066,63992,based on a book,1325459380 +91066,63992,Kristen Stewart,1325459462 +91066,63992,poor acting,1325459482 +91066,63992,takes itself too seriously,1325459402 +91066,63992,unintentional comedy,1325459476 +91066,63992,Unlikable protagonist,1325459491 +91066,63992,vampires,1325459369 +91066,63992,visually appealing,1325459417 +91066,64497,big budget,1290444567 +91066,64497,Jennifer Connelly,1290444501 +91066,64497,no investment in characters,1290444546 +91066,64497,shallow characters,1290444523 +91066,64497,simple plot,1290444582 +91066,64497,uninteresting,1290444587 +91066,64497,visually appealing,1290444497 +91066,64497,Wooden acting,1290444515 +91066,66097,alternate universe,1299930818 +91066,66097,animation,1299930823 +91066,66097,creepy,1299930854 +91066,66097,dark,1299930857 +91066,66097,fairy tale,1299930859 +91066,66097,fantasy world,1299930845 +91066,66097,gothic,1299930835 +91066,66097,Neil Gaiman,1299930832 +91066,66097,Surreal,1299930833 +91066,66097,visually stunning,1299930830 +91066,66934,anti-hero,1290455000 +91066,66934,bittersweet,1290454998 +91066,66934,Felicia Day,1290455032 +91066,66934,funny,1290454991 +91066,66934,geeky,1290455008 +91066,66934,great soundtrack,1290455048 +91066,66934,low budget,1290455066 +91066,66934,musical,1290454978 +91066,66934,Nathan Fillion,1290455023 +91066,66934,Neil Patrick Harris,1290454972 +91066,66934,parody,1290454979 +91066,66934,superhero,1290455005 +91066,66934,sweet,1290454993 +91066,66934,too short,1290455060 +91066,68954,adventure,1295369250 +91066,68954,animated,1295369255 +91066,68954,children,1295369266 +91066,68954,creative,1295369132 +91066,68954,dogs,1295369247 +91066,68954,friendship,1295369114 +91066,68954,original,1295369138 +91066,68954,Pixar,1295369104 +91066,68954,predictable,1295369209 +91066,68954,silly,1295369146 +91066,68954,talking animals,1295369272 +91066,68954,tear jerker,1295369085 +91066,68954,touching,1295369067 +91066,68954,unlikely heroes,1295369125 +91066,68954,visually stunning,1295369087 +91066,69122,absurd,1290468488 +91066,69122,cliche,1290468438 +91066,69122,Ed Helms,1290468456 +91066,69122,funny,1290468415 +91066,69122,sexist,1290468435 +91066,69122,shallow female characters,1290468430 +91066,69757,humorous,1290372629 +91066,69757,Joseph Gordon-Levitt,1290372603 +91066,69757,manic pixie dream girl,1290372660 +91066,69757,music,1290372719 +91066,69757,nonlinear,1290372783 +91066,69757,overrated,1290372617 +91066,69757,quirky,1290372620 +91066,69757,romance,1290372625 +91066,69757,sexist,1290372649 +91066,69757,shallow characters,1290372672 +91066,69757,Zooey Deschanel,1290372613 +91066,70286,aliens,1334431749 +91066,70286,mockumentary,1334431951 +91066,70286,obvious allegory,1334431908 +91066,70286,underdeveloped characters,1334431888 +91066,70286,unknown actors,1334431745 +91066,70286,unpredictable,1334431729 +91066,71282,agenda,1326585123 +91066,71282,America-centric,1326585103 +91066,71282,holds interest,1326585201 +91066,71282,informative,1326585060 +91066,71282,manipulative,1326585096 +91066,71282,ominous music,1326585172 +91066,71282,pacing,1326585067 +91066,71282,slick,1326585053 +91066,71282,visually appealing,1326585225 +91066,71535,Bill Murray,1294608324 +91066,71535,campy,1294608442 +91066,71535,clever,1294608288 +91066,71535,dark comedy,1294608298 +91066,71535,funny,1294608497 +91066,71535,gore,1294608451 +91066,71535,parody,1294608307 +91066,71535,post-apocalyptic,1294608301 +91066,71535,predictable ending,1294608318 +91066,71535,quotable,1294608374 +91066,71535,stylized violence,1294608295 +91066,71535,underdeveloped characters,1294608488 +91066,71535,witty,1294608278 +91066,71535,zombies,1294608334 +91066,71579,biographical,1290691424 +91066,71579,bittersweet,1290691302 +91066,71579,Carey Mulligan,1290691234 +91066,71579,charming,1290691215 +91066,71579,Dominic Cooper,1290691260 +91066,71579,evokative,1290691298 +91066,71579,great acting,1290691218 +91066,71579,intellegent,1290691311 +91066,71579,London,1290691321 +91066,71579,Olivia Williams,1290691273 +91066,71579,Peter Sarsgaard,1290691250 +91066,71579,predictable,1290691393 +91066,71579,school,1290691325 +91066,71579,subtle,1290691408 +91066,71579,visually appealing,1290691414 +91066,72226,great cast,1299930949 +91066,72226,hilarious,1299930958 +91066,72226,lovable,1299930976 +91066,72226,quirky,1299930964 +91066,72226,stop motion,1299931033 +91066,72226,talking animals,1299931035 +91066,72226,visually appealing,1299930936 +91066,72226,Wes Anderson,1299930940 +91066,72407,Anna Kendrick,1325459682 +91066,72407,anti-feminist,1325459675 +91066,72407,bad acting,1325459679 +91066,72407,Kristen Stewart,1325459666 +91066,72407,overly dramatic,1325459709 +91066,72407,Robert Pattinson,1325459668 +91066,72407,supernatural,1325459728 +91066,72407,Unlikable protagonist,1325459715 +91066,72407,vampires,1325459689 +91066,72998,beautiful,1290462806 +91066,72998,derivative,1290462796 +91066,72998,mythology,1290462799 +91066,72998,predictable,1290462791 +91066,72998,stereotypes,1290462759 +91066,72998,visually stunning,1290462783 +91066,73211,bad science,1325458260 +91066,73211,based on a book,1325458338 +91066,73211,character driven,1325458157 +91066,73211,convenient coincidences,1325458314 +91066,73211,distracting score,1325461838 +91066,73211,original,1325458258 +91066,73211,suspenseful,1325458330 +91066,73211,tense,1325458207 +91066,73211,unsatisfactory explanation,1325458286 +91066,73211,well acted,1325458167 +91066,73211,zombies,1325458222 +91066,74416,depressing,1290471366 +91066,74416,disturbing,1290471360 +91066,74416,Michael Fassbender,1290471350 +91066,74416,powerful,1290471363 +91066,74416,realistic,1290471397 +91066,74416,tense,1290471392 +91066,76293,derivative,1290691103 +91066,76293,dumb,1290691062 +91066,76293,funny moments,1290691043 +91066,76293,James Franco,1290691051 +91066,76293,juvenile,1290691069 +91066,76293,Mark Wahlberg,1290691049 +91066,76293,missed the mark,1290691083 +91066,76293,pacing,1290691091 +91066,76293,predictable,1290691130 +91066,76293,Steve Carell,1290691055 +91066,76293,Tina Fey,1290691122 +91066,78039,emotional,1307722805 +91066,78039,Graphic sex,1307722825 +91066,78039,great performances,1307722818 +91066,78039,grim,1307722895 +91066,78039,Michelle Williams,1307722777 +91066,78039,open ending,1307722863 +91066,78039,painful,1307722833 +91066,78039,Pennsylvania,1307722838 +91066,78039,powerful,1307722798 +91066,78039,realism,1307722782 +91066,78039,Ryan Gosling,1307722768 +91066,78039,thought provoking,1307722786 +91066,78039,true to life,1307722784 +91066,78772,anti-feminist,1325459614 +91066,78772,Kristen Stewart,1325459563 +91066,78772,overly dramatic,1325459627 +91066,78772,relationships,1325459594 +91066,78772,Robert Pattinson,1325459568 +91066,78772,supernatural,1325459582 +91066,78772,Unlikable protagonist,1325459622 +91066,78772,vampires,1325459587 +91066,78772,visually appealing,1325459598 +91066,79132,alternate reality,1290381896 +91066,79132,big budget,1290382004 +91066,79132,Cillian Murphy,1290381961 +91066,79132,complicated,1290381902 +91066,79132,dreams,1290381911 +91066,79132,Ellen Page,1290381953 +91066,79132,ensemble cast,1290381976 +91066,79132,great cast,1290381965 +91066,79132,heist,1290382002 +91066,79132,inconsistencies,1290381891 +91066,79132,Joseph Gordon-Levitt,1290381944 +91066,79132,Michael Caine,1290382032 +91066,79132,surreal,1290381914 +91066,79132,thought-provoking,1290382020 +91066,79132,too much explaining,1290381995 +91066,79132,visually stunning,1290381923 +91066,79242,character driven,1325458931 +91066,79242,cliched,1325458985 +91066,79242,dismissive of character,1325458972 +91066,79242,family relationships,1325459011 +91066,79242,good acting,1325458920 +91066,79242,humorous,1325458937 +91066,79242,lesbian,1325458923 +91066,79242,Mark Ruffalo,1325458904 +91066,79242,Mia Wasikowska,1325458909 +91066,79242,tender,1325458940 +91066,79242,unfair ending,1325458964 +91066,79702,based on a comic,1290458385 +91066,79702,cultural references,1290458351 +91066,79702,Edgar Wright,1290458365 +91066,79702,fast-paced,1290458527 +91066,79702,funny,1290458390 +91066,79702,geeky,1290458357 +91066,79702,hipsters,1290458392 +91066,79702,Kieran Culkin,1290458360 +91066,79702,manic pixie dream girl,1290458426 +91066,79702,Michael Cera,1290458362 +91066,79702,over-the-top,1290458556 +91066,79702,quirky,1290458570 +91066,79702,Satya Bhabha,1290458377 +91066,79702,shallow relationships,1290458416 +91066,79702,stylized,1290458371 +91066,79702,video games,1290458369 +91066,79702,visually appealing,1290458534 +91066,80463,entertaining,1326586321 +91066,80463,fast-paced,1326586177 +91066,80463,good acting,1326586206 +91066,80463,Jesse Eisenberg,1326586302 +91066,80463,lack of character depth,1326586260 +91066,80463,lack of female characters,1326586237 +91066,80463,slick,1326586169 +91066,80463,true story,1326586213 +91066,80463,witty,1326586182 +91066,80693,cliche,1307722445 +91066,80693,funny,1307722455 +91066,80693,manic pixie dream girl,1307722519 +91066,80693,quirky,1307722565 +91066,80693,touching,1307722467 +91066,80693,underdeveloped female character,1307722508 +91066,80693,Zach Galifianakis,1307722472 +91066,80969,Andrew Garfield,1340148466 +91066,80969,atmospheric,1340148365 +91066,80969,beautiful,1340148444 +91066,80969,Carey Mulligan,1340148398 +91066,80969,cold,1340148361 +91066,80969,depressing,1340148354 +91066,80969,dystopia,1340148370 +91066,80969,muted,1340148435 +91066,80969,somber,1340148385 +91066,80969,thought-provoking,1340148356 +91066,81591,absorbing,1299928792 +91066,81591,atmospheric,1299928717 +91066,81591,ballet,1299928718 +91066,81591,Barbara Hershey,1299928956 +91066,81591,creepy,1299928722 +91066,81591,dance,1299928812 +91066,81591,dark,1299928721 +91066,81591,incomprehensible protagonist,1299928876 +91066,81591,little background,1299928845 +91066,81591,Mila Kunis,1299928807 +91066,81591,plot holes,1299928907 +91066,81591,psychological,1299928728 +91066,81591,visceral,1299928817 +91066,81784,annoying characters,1334495128 +91066,81784,cute,1334495195 +91066,81784,distracting soundtrack,1334495172 +91066,81784,entertaining,1334495184 +91066,81784,Jeff Goldblum,1334495211 +91066,81784,predictable,1334495150 +91066,81784,Rachel McAdams,1334495124 +91066,81784,romantic comedy,1334495201 +91066,81784,unoriginal,1334495156 +91066,81845,based on a true story,1299929024 +91066,81845,believable,1299929091 +91066,81845,Colin Firth,1299929004 +91066,81845,complex characters,1299929105 +91066,81845,emotional,1299929059 +91066,81845,England,1299929029 +91066,81845,Geoffrey Rush,1299929012 +91066,81845,great performances,1299929020 +91066,81845,Guy Pearce,1299929041 +91066,81845,historical,1299929117 +91066,81845,predictable,1299929079 +91066,81845,uplifting,1299929055 +91066,81845,war,1299929039 +91066,83134,absurd,1326662020 +91066,83134,Alan Tudyk,1326661994 +91066,83134,black comedy,1326661987 +91066,83134,clever,1326662062 +91066,83134,fearless,1326662069 +91066,83134,fun,1326662125 +91066,83134,gore,1326662181 +91066,83134,horror comedy,1326662090 +91066,83134,misunderstandings,1326662110 +91066,83134,pacing,1326662008 +91066,83134,parody,1326661990 +91066,83134,predictable,1326662096 +91066,83134,self-referentail,1326662027 +91066,83134,Tyler Labine,1326662117 +91066,83302,cheating,1294524281 +91066,83302,cold,1294515746 +91066,83302,good acting,1294524220 +91066,83302,Guillaume Canet,1294524249 +91066,83302,Keira Knightley,1294524246 +91066,83302,lack of identification,1294524310 +91066,83302,open end,1294515868 +91066,83302,relationships,1294524272 +91066,83302,Sam Worthington,1294515204 +91066,83302,small cast,1294524229 +91066,83302,thought-provoking,1294515788 +91066,83302,unlikable characters,1294515781 +91066,83349,Christoph Waltz,1307722612 +91066,83349,frivolous,1307722735 +91066,83349,Jay Chou,1307722693 +91066,83349,Michel Gondry,1307722673 +91066,83349,not very funny,1307722710 +91066,83349,predictable,1307722722 +91066,83349,Seth Rogen,1307722684 +91066,83349,stylized violence,1307722633 +91066,83349,Unlikable protagonist,1307722603 +91066,83349,visually appealing,1307722652 +91066,83910,Chicago,1307722165 +91066,83910,Jennifer Connelly,1307722173 +91066,83910,not funny,1307722159 +91066,83910,pointless,1307722203 +91066,83910,poor plot,1307722181 +91066,83910,stupid,1307722154 +91066,83910,Unlikable protagonist,1307722193 +91066,83910,unrealistic,1307722145 +91066,86548,charming protagonist,1339595859 +91066,86548,Christoph Waltz,1339595736 +91066,86548,elephants,1339595869 +91066,86548,flat,1339595845 +91066,86548,Hal Holbrook,1339595815 +91066,86548,lack of chemistry,1339595761 +91066,86548,Reese Witherspoon,1339595747 +91066,86548,Robert Pattinson,1339595742 +91066,86548,shallow characters,1339595778 +91066,86548,visually appealing,1339595840 +91066,86548,weak framing narrative,1339595831 +91066,88163,cliche,1326586585 +91066,88163,Emma Stone,1326586589 +91066,88163,entertaining,1326586648 +91066,88163,frivolous,1326586682 +91066,88163,Julianne Moore,1326586617 +91066,88163,plot twists,1326586722 +91066,88163,predictable,1326586579 +91066,88163,Ryan Gosling,1326586594 +91066,88163,unrealistic ending,1326586705 +91066,88405,chemistry between actors,1325458629 +91066,88405,Chick flick,1325458552 +91066,88405,clever dialogue,1325458601 +91066,88405,easy ending,1325458644 +91066,88405,funny,1325458609 +91066,88405,Jenna Elfman,1325458612 +91066,88405,Los Angeles,1325458565 +91066,88405,Mila Kunis,1325458558 +91066,88405,New York City,1325458563 +91066,88405,pop culture references,1325458587 +91066,88405,predictable,1325458569 +91066,89030,Colin Farrell,1326584852 +91066,89030,comedy horror,1326584975 +91066,89030,David Tennant,1326584861 +91066,89030,Doesn't take itself seriously,1326584873 +91066,89030,no investment in characters,1326584844 +91066,89030,no suspense,1326584912 +91066,89030,not scary,1326587836 +91066,89030,pointless,1326584923 +91066,89030,predictable,1326584918 +91066,89030,trivial,1326584988 +91066,89535,Aki Kaurismäki,1325458454 +91066,89535,boring,1325458448 +91066,89535,deadpan,1325458393 +91066,89535,Excrutiating,1325458483 +91066,89535,experimental,1325458462 +91066,89535,illegal immigration,1325458400 +91066,89535,no emotional investment,1325458442 +91066,89535,slow,1325458489 +91066,89535,unsympathetic characters,1325458427 +91066,89745,humorous,1337696049 +91066,89745,Mark Ruffalo,1337695980 +91066,89745,overrated,1337696034 +91066,89745,predictable,1337696087 +91066,89745,Robert Downey Jr.,1337695977 +91066,89745,shallow,1337696101 +91066,89745,slow beginning,1337695998 +91066,89745,stylized violence,1337696082 +91066,89745,superficial,1337696008 +91066,89745,visually stunning,1337696023 +91066,90630,far-reaching,1339595574 +91066,90630,feminism,1339595486 +91066,90630,framing personal narrative,1339595653 +91066,90630,media,1339595484 +91066,90630,tightly focused,1339595551 +91066,90630,vague statistics,1339595601 +91066,90630,wide range of experts,1339595674 +91066,90647,annoying villain,1325457951 +91066,90647,Antonio Banderas,1325458004 +91066,90647,clever,1325457978 +91066,90647,fairy tale,1325458018 +91066,90647,Great score,1325458068 +91066,90647,Latin America,1325457993 +91066,90647,parody,1325457955 +91066,90647,predictable,1325458040 +91066,90647,Self-referential,1325457973 +91066,90647,visually appealing,1325457987 +91066,90866,3D,1337696378 +91066,90866,bittersweet,1337696385 +91066,90866,charming,1337696359 +91066,90866,cinematography,1337696428 +91066,90866,nostalgic,1337696442 +91066,90866,predictable,1337696392 +91066,90866,silly,1337696368 +91066,90866,visually appealing,1337696423 +91066,91079,Anton Yelchin,1339595919 +91066,91079,beautiful,1338555167 +91066,91079,character driven,1338555151 +91066,91079,Felicity Jones,1338555062 +91066,91079,immigration,1338555222 +91066,91079,impressionistic,1338555188 +91066,91079,no clear sense of time,1338555280 +91066,91079,pacing,1338555160 +91066,91079,realistic dialogue,1338555144 +91066,91079,underdeveloped male lead,1338555073 +91066,91079,understated,1338555245 +91066,91500,Book Faithful,1337695788 +91066,91500,dystopia,1337695782 +91066,91500,intense,1337695785 +91066,91500,Jennifer Lawrence,1337695795 +91066,91500,lack of character development,1337695808 +91066,91500,social commentary,1337695791 +91066,91500,visually stunning,1337695832 +91066,91935,atmospheric,1337695904 +91066,91935,broken beautiful girl,1337696657 +91066,91935,charming characters,1337695887 +91066,91935,great cast,1337695897 +91066,91935,Jessica Brown Findlay,1337695935 +91066,91935,predictable,1337695864 +91066,91935,superficial,1337695925 +91066,91935,unoriginal,1337695872 +91080,2918,80s,1138060299 +91080,3114,cgi,1138059743 +91080,33743,anti-war,1263353098 +91084,16,violent,1432151970 +91084,5881,philosophy,1432151874 +91097,25,melancholic,1368552055 +91097,123,NA,1199450867 +91097,346,NA,1199451946 +91097,521,noir thriller,1368571077 +91097,1089,original,1368552030 +91097,1094,transgendered,1150299537 +91097,1184,NA,1199452261 +91097,1225,moving classical music,1150299612 +91097,1248,noir thriller,1368571077 +91097,1305,melancholic,1368552055 +91097,1719,melancholic,1368552055 +91097,1784,conflicts and differences between 2 people,1150299479 +91097,1784,relationships,1150299479 +91097,1785,NA,1199452006 +91097,2194,NA,1199450677 +91097,2291,original,1368552030 +91097,2691,NA,1199451002 +91097,2966,melancholic,1368552055 +91097,3076,Old,1199452045 +91097,3114,original,1368552030 +91097,3171,Old,1199452218 +91097,3910,awful and anoying singing,1150304257 +91097,3910,great ending,1150304239 +91097,3910,Great potential,1150304239 +91097,4103,NA,1199451920 +91097,4144,melancholic,1368552055 +91097,4473,NA,1199451040 +91097,4535,Old,1199451204 +91097,4616,NA,1199452441 +91097,4848,doesn't make sense,1150306000 +91097,4848,mindfuck,1150306000 +91097,4848,surreal,1150306000 +91097,4878,original,1368552030 +91097,6228,Old,1199452216 +91097,6436,Na,1199450700 +91097,6453,Old,1199452231 +91097,6708,slow start,1150397087 +91097,6708,very surprising in the end,1150397087 +91097,6920,Old,1199452121 +91097,7013,noir thriller,1368571077 +91097,7196,Old,1199450845 +91097,7238,Old,1199452084 +91097,7333,Old,1199452111 +91097,7335,Old,1199452139 +91097,7624,NA,1199452266 +91097,8017,Old,1199452102 +91097,8459,Old,1199452226 +91097,8645,based on 1000 true stories,1150397293 +91097,8645,not very moving though,1150397293 +91097,8684,Old,1199452133 +91097,8898,NA,1199450757 +91097,25850,Old,1199452126 +91097,25855,Old,1199452090 +91097,25868,Old,1199452223 +91097,26082,Old,1199452077 +91097,26294,Old,1199451076 +91097,30712,Old,1199452235 +91097,32460,NA,1199450901 +91097,32892,Old,1199452068 +91097,33826,NA,1199450703 +91097,34437,melancholic,1368552055 +91097,35836,a good comedy,1150304335 +91097,35836,just right,1150304336 +91097,35836,not too silly,1150304335 +91097,36537,NA,1199450736 +91097,55805,NA,1199450941 +91111,36,capital punishment,1287864970 +91111,36,courtroom,1287864970 +91111,36,death sentence,1287864970 +91111,36,law,1287864970 +91111,36,religion,1287864970 +91111,454,business,1287864752 +91111,454,court,1287864752 +91111,454,courtoom,1287864752 +91111,454,law,1287864732 +91111,454,thriller,1287864752 +91111,924,hal,1287864932 +91111,924,robots,1287864932 +91111,924,slow,1287864942 +91111,1923,Cameron Diaz,1287864861 +91111,2987,adventure,1287865025 +91111,2987,animation,1287865027 +91111,2987,fantasy,1287865021 +91111,2987,original,1287865017 +91111,7153,fantasy,1287864834 +91111,7153,lord of the rings,1287864834 +91111,7153,tolkien,1287864834 +91111,49272,poker,1287863972 +91111,53996,michael bay,1287865224 +91115,1,Want,1145902519 +91115,6,Want,1145903117 +91115,16,Divx1,1145881872 +91115,23,Divx1,1145901514 +91115,32,Divx1,1145886280 +91115,47,Want,1145902083 +91115,50,Want,1145902937 +91115,95,Want,1145903040 +91115,104,Divx1,1145870439 +91115,110,Want,1145881845 +91115,150,Want,1145902689 +91115,153,Want,1145902549 +91115,161,Want,1145903007 +91115,165,Want,1145902931 +91115,172,DVD,1145871653 +91115,173,Want,1145902702 +91115,253,Want,1145903016 +91115,260,Divx1,1145887388 +91115,260,DVD1,1145887388 +91115,288,DVD,1145901347 +91115,292,Want,1145902979 +91115,296,Want,1145902475 +91115,316,Divx1,1145902111 +91115,318,Divx1,1145901142 +91115,344,Want,1145902686 +91115,349,Want,1145902953 +91115,356,DVD,1145882693 +91115,364,Want,1145902961 +91115,377,Want,1145902669 +91115,380,Want,1145902642 +91115,405,Want,1145902728 +91115,457,Want,1145902665 +91115,480,Divx1,1145899407 +91115,527,Want,1145901776 +91115,539,Want,1145902999 +91115,587,Want,1145902988 +91115,588,Divx1,1145902614 +91115,589,Divx1,1145871376 +91115,590,DVD,1145902657 +91115,592,Want,1145902699 +91115,593,Want,1145902601 +91115,595,Want,1145902941 +91115,597,Divx1,1145882806 +91115,608,Want,1145902918 +91115,648,Divx1,1145870425 +91115,733,Want,1145902590 +91115,736,Want,1145902958 +91115,750,Want,1145901818 +91115,780,Want,1145901845 +91115,786,Divx1,1145902334 +91115,858,Divx1,1145867961 +91115,912,DVD,1145871542 +91115,919,Divx1,1145899488 +91115,924,DVD,1145870100 +91115,953,Want,1145903362 +91115,1027,Divx1,1145885286 +91115,1090,Want,1145901829 +91115,1097,Divx1,1145871698 +91115,1101,Want,1145902516 +91115,1129,DVD,1145885321 +91115,1136,Divx,1147320379 +91115,1196,Divx1,1145902276 +91115,1198,Want,1145902478 +91115,1200,Want,1145902536 +91115,1208,Want,1145855596 +91115,1210,Divx1,1145902280 +91115,1213,Divx1,1145867979 +91115,1214,Want,1145903129 +91115,1220,Want,1145903330 +91115,1221,Want,1145881895 +91115,1222,Divx1,1145881883 +91115,1234,Want,1145903344 +91115,1240,Divx1,1145871378 +91115,1258,Want,1145902593 +91115,1265,Want,1145903048 +91115,1270,Want,1145902540 +91115,1272,DVD,1145886349 +91115,1275,DVD,1145901980 +91115,1321,DVD,1145868061 +91115,1339,DVD,1145870955 +91115,1358,Want,1145902089 +91115,1391,DVD,1145886376 +91115,1485,DVD1,1145902572 +91115,1544,Divx1,1145899420 +91115,1573,Divx1,1145901557 +91115,1580,Want,1145903024 +91115,1610,Want,1145902384 +91115,1645,DVD,1145882499 +91115,1726,DVD,1145901396 +91115,1748,DVD,1145901106 +91115,1917,Divx1,1145901494 +91115,1921,Divx1,1145901323 +91115,2018,Divx1,1145886293 +91115,2019,Divx1,1145902492 +91115,2021,DVD,1145887181 +91115,2028,DVD,1145868044 +91115,2115,Want,1145903303 +91115,2167,DVD,1145882668 +91115,2193,Want,1145902683 +91115,2194,Want,1145902294 +91115,2311,DVD,1145901471 +91115,2366,Divx1,1145882790 +91115,2403,DVD,1145871233 +91115,2420,Divx1,1145869896 +91115,2502,DVD,1145870242 +91115,2571,DVD,1145901072 +91115,2617,DVD,1145870314 +91115,2628,Divx1,1145870222 +91115,2628,DVD,1145899642 +91115,2640,Want,1145902674 +91115,2762,Want,1145902504 +91115,2804,Want,1145902320 +91115,2918,Divx1,1145870041 +91115,2944,Want,1145901800 +91115,2959,Divx1,1145870394 +91115,2989,Divx1,1145901267 +91115,3020,DVD,1145872306 +91115,3113,DVD,1145882581 +91115,3114,DVD1,1145886169 +91115,3210,Want,1145903317 +91115,3300,Divx1,1145882566 +91115,3386,DVD,1145870176 +91115,3421,Want,1145881818 +91115,3468,DVD,1145881922 +91115,3484,DVD,1145882466 +91115,3552,Want,1145881852 +91115,3578,DVD,1145881889 +91115,3593,DVD,1145887329 +91115,3617,DVD,1145871815 +91115,3671,Divx1,1145902303 +91115,3717,DVD,1145899554 +91115,3745,Divx1,1145901217 +91115,3752,DVD,1145871281 +91115,3755,DVD,1145870190 +91115,3791,Divx1,1145869880 +91115,3793,DVD,1145871311 +91115,3826,DVD,1145882630 +91115,3861,DVD,1145887354 +91115,3889,DVD,1145882098 +91115,3897,Want,1145902620 +91115,3916,DVD,1145882644 +91115,3948,DVD,1145901089 +91115,3968,DVD,1145871172 +91115,3979,DVD,1145885341 +91115,3980,DVD,1145887226 +91115,3981,Divx1,1145901171 +91115,3994,DVD,1145902646 +91115,3996,DVD,1145882481 +91115,3997,DVD,1145871776 +91115,4008,DVD,1145872279 +91115,4030,DVD,1145882452 +91115,4034,DVD,1145871829 +91115,4052,DVD,1145870924 +91115,4128,DVD,1145881974 +91115,4223,DVD,1145868034 +91115,4226,Divx1,1145902445 +91115,4262,Divx1,1145902071 +91115,4275,Want,1145902733 +91115,4299,DVD,1145882135 +91115,4344,DVD,1145870453 +91115,4367,DVD,1145870473 +91115,4369,DVD,1145887214 +91115,4396,DVD,1145869854 +91115,4475,Want,1145903199 +91115,4643,Divx1,1145882415 +91115,4886,DVD,1145899468 +91115,4896,Divx1,1145902355 +91115,4963,Want,1145902464 +91115,4975,DVD,1145901361 +91115,4993,DVD,1145901050 +91115,4995,Divx1,1145870337 +91115,5010,DVD,1145882084 +91115,5055,Divx1,1145882774 +91115,5110,Divx1,1145885302 +91115,5152,DVD,1145870054 +91115,5171,DVD,1145899296 +91115,5218,DVD,1145869932 +91115,5254,DVD,1145871797 +91115,5378,Divx1,1145870213 +91115,5378,DVD,1145870213 +91115,5400,DVD,1145870134 +91115,5418,Divx,1147320011 +91115,5420,DVD,1145882005 +91115,5445,DVD,1145899153 +91115,5449,DVD,1145899273 +91115,5464,DVD,1145870162 +91115,5502,DVD,1145886260 +91115,5507,DVD,1145901437 +91115,5528,DVD,1145882435 +91115,5621,DVD,1145869914 +91115,5630,DVD,1145870118 +91115,5816,Divx1,1145902346 +91115,5859,DVD,1145901851 +91115,5952,Divx1,1145902013 +91115,5989,DVD,1145870150 +91115,6193,Divx1,1145902062 +91115,6197,DVD,1145882118 +91115,6263,DVD,1145870266 +91115,6377,Divx1,1145871758 +91115,6383,Divx1,1145882723 +91115,6534,DVD1,1145871578 +91115,6537,Divx1,1145871377 +91115,6539,Divx1,1145869836 +91115,6548,Divx1,1145899579 +91115,6707,DVD,1145882052 +91115,6754,Want,1145902289 +91115,6934,DVD,1145886224 +91115,6951,Divx1,1145901300 +91115,6952,DVD,1145882032 +91115,6957,Divx1,1145882754 +91115,6979,DVD,1145901379 +91115,6996,Want,1145902721 +91115,7143,Divx,1147320362 +91115,7153,Divx1,1145902000 +91115,7361,Divx1,1145901249 +91115,7482,Divx1,1145886306 +91115,7698,DVD,1145882203 +91115,7842,DVD,1145887275 +91115,8045,DVD,1145871613 +91115,8361,DVD,1145871633 +91115,8368,Divx1,1145881912 +91115,8371,Divx1,1145882548 +91115,8531,Divx1,1145871742 +91115,8581,Want,1145902034 +91115,8644,Divx1,1145882530 +91115,8665,Divx1,1145869999 +91115,8810,Divx1,1145882740 +91115,8860,DVD,1145887245 +91115,8961,Want,1145902409 +91115,8970,Divx1,1145871727 +91115,27706,Divx1,1145899608 +91115,27788,Divx1,1145902416 +91115,32017,DVD,1145871667 +91115,32031,DVD,1145902486 +91115,32587,Divx,1145902499 +91115,33004,Divx1,1145886326 +91115,33493,Divx1,1145868014 +91115,33493,DVD,1145882157 +91115,33646,Divx1,1145901188 +91115,33679,Divx1,1145885261 +91115,33794,Want,1145881829 +91115,34150,Divx1,1145899519 +91115,34162,Divx1,1145899625 +91115,34520,Divx1,1145869812 +91115,36401,Divx1,1145870352 +91115,37380,Divx1,1145899438 +91115,37382,Divx1,1145870017 +91115,40815,Divx1,1145881904 +91115,40959,Divx1,1145901285 +91115,41566,DVD1,1145902184 +91115,41569,Divx1,1145902431 +91115,44022,Divx1,1145902388 +91156,350,Southern theme,1142919294 +91156,1097,classic,1142919310 +91156,2011,time travel,1142919273 +91159,1203,Sidney Lumet,1168613934 +91159,1234,Theme: The Entertainer,1168422653 +91159,5385,Scorsese,1169069711 +91160,260,jedi,1437196501 +91160,260,Star Wars,1437196488 +91165,8784,psychology,1302802329 +91171,1,adventure,1303168162 +91171,1,animated,1303168172 +91171,1,animation,1303168175 +91171,1,buddy movie,1303168179 +91171,1,children,1303168183 +91171,1,classic,1303168187 +91171,1,clever,1303168193 +91171,1,comedy,1303168198 +91171,1,computer animation,1303168201 +91171,1,Disney,1303168205 +91171,1,family,1303168208 +91171,1,fantasy,1303168211 +91171,1,funny,1303168215 +91171,1,humorous,1303168218 +91171,1,imdb top 250,1303168222 +91171,1,Pixar,1303168226 +91171,1,time travel,1303168229 +91171,1,Tom Hanks,1303168232 +91171,1,toys,1303168237 +91171,1,witty,1303168240 +91171,2,adapted from:book,1303424411 +91171,2,animals,1303424415 +91171,2,bad cgi,1303424415 +91171,2,based on a book,1303424419 +91171,2,board game,1303424420 +91171,2,childhood recaptured,1303424425 +91171,2,Children,1303424453 +91171,2,Chris Van Allsburg,1303424484 +91171,2,fantasy,1303424487 +91171,2,Filmed in BC,1303424490 +91171,2,jungle,1303424492 +91171,2,kid flick,1303424494 +91171,2,Kirsten Dunst,1303424497 +91171,2,monkey,1303424498 +91171,2,Robin Williams,1303424503 +91171,2,Saturn Award (Best Special Effects),1303424505 +91171,2,Saturn Award (Best Supporting Actress),1303424507 +91171,2,scary,1303424508 +91171,2,time,1303424509 +91171,2,time travel,1303424512 +91171,19,Africa,1303414254 +91171,19,childhood fav,1303414255 +91171,19,comedy,1303414257 +91171,19,crazy,1303414259 +91171,19,Gross-out,1303414261 +91171,19,hehehe,1303414262 +91171,19,Jim Carrey,1303414265 +91171,19,Not my kind of comedy,1303414277 +91171,19,One of the worst movies of all time,1303414270 +91171,19,over the top,1303414282 +91171,19,Rhino action :D,1303414284 +91171,19,Simon Callow,1303414288 +91171,19,spit,1303414290 +91171,19,Steve Oedekerk,1303414291 +91171,19,Stupid as Hell,1303414292 +91171,32,adventure,1303169314 +91171,32,atmospheric,1303169317 +91171,32,Brad Pitt,1303169321 +91171,32,British,1303169325 +91171,32,Bruce Willis,1303169328 +91171,32,classic,1303169331 +91171,32,complicated,1303169334 +91171,32,future,1303169340 +91171,32,genetics,1303169342 +91171,32,imagination,1303169345 +91171,32,imdb top 250,1303169348 +91171,32,Post apocalyptic,1303169351 +91171,32,post-apocalyptic,1303169357 +91171,32,psychology,1303169360 +91171,32,remake,1303169364 +91171,32,sci-fi,1303169367 +91171,32,time travel,1303169371 +91171,32,twist ending,1303169374 +91171,32,violence,1303169377 +91171,70,brothers,1303259540 +91171,70,cult film,1303259545 +91171,70,George Clooney,1303259546 +91171,70,gore,1303259551 +91171,70,horror,1303259552 +91171,70,hostage,1303259554 +91171,70,intense,1303259556 +91171,70,mexico,1303259558 +91171,70,Nudity (Topless - Brief),1303259561 +91171,70,Quentin Tarantino,1303259564 +91171,70,Robert Rodriguez,1303259565 +91171,70,Sexualized violence,1303259567 +91171,70,so bad it's good,1303259570 +91171,70,splatter,1303259571 +91171,70,Tarantino,1303259575 +91171,70,twist ending,1303259576 +91171,70,vampire,1303259579 +91171,70,vampires,1303259579 +91171,70,violence,1303259581 +91171,104,Adam Sandler,1303412392 +91171,104,Bob Barker,1303412396 +91171,104,Carl Weathers,1303412397 +91171,104,Christopher McDonald,1303412399 +91171,104,comedy,1303412402 +91171,104,Dennis Dugan,1303412404 +91171,104,Divx1,1303412407 +91171,104,Filmed in BC,1303412416 +91171,104,golf,1303412419 +91171,104,haha,1303412424 +91171,104,Hayao Miyazaki,1303412426 +91171,104,hockey,1303412431 +91171,104,recommendz top pick,1303412498 +91171,104,seen more than once,1303412503 +91171,104,setting:golf course,1303412504 +91171,104,sport:golf,1303412505 +91171,104,sports,1303412510 +91171,104,test tag,1303412512 +91171,104,you're gonna die clown,1303412512 +91171,107,based on a book,1303259234 +91171,107,Bill Connolly,1303259238 +91171,107,Billy Connolly,1303259241 +91171,107,David Goelz,1303259244 +91171,107,franchise,1303259247 +91171,107,Jennifer Saunders,1303259249 +91171,107,muppets,1303259252 +91171,107,pirates,1303259253 +91171,107,Steve Whitmire,1303259254 +91171,107,talking animals,1303259258 +91171,107,Tim Curry,1303259259 +91171,153,Action,1303414028 +91171,153,adapted from:comic,1303414029 +91171,153,alter ego,1303414031 +91171,153,atmospheric,1303414033 +91171,153,bank robbery,1303414035 +91171,153,Batman,1303414037 +91171,153,comic book,1303414039 +91171,153,crime,1303414042 +91171,153,DC Comics,1303414045 +91171,153,design,1303414050 +91171,153,double life,1303414052 +91171,153,franchise,1303414054 +91171,153,Jim Carrey,1303414056 +91171,153,Nicole Kidman,1303414060 +91171,153,sequel,1303414064 +91171,153,super-hero,1303414066 +91171,153,superhero,1303414068 +91171,153,Tommy Lee Jones,1303414072 +91171,153,Val Kilmer,1303414074 +91171,231,Buddy movie,1303414999 +91171,231,comedy,1303414999 +91171,231,Fantastic!,1303415001 +91171,231,Funny as hell,1303415002 +91171,231,goofy,1303415006 +91171,231,Gross-out,1303415008 +91171,231,Harland Williams,1303415009 +91171,231,hilarious,1303415064 +91171,231,Jeff Daniels,1303415078 +91171,231,Jim Carrey,1303415081 +91171,231,not funny,1303415081 +91171,231,quirky,1303415083 +91171,231,road trip,1303415086 +91171,231,silly,1303415087 +91171,231,stupid,1303415096 +91171,231,THEATER,1303415098 +91171,231,very funny,1303415103 +91171,260,action,1303165752 +91171,260,adventure,1303165753 +91171,260,Akira Kurosawa,1303165757 +91171,260,aliens,1303165770 +91171,260,atmospheric,1303165773 +91171,260,classic,1303165775 +91171,260,fantasy,1303165778 +91171,260,George Lucas,1303165783 +91171,260,great soundtrack,1303165787 +91171,260,Harrison Ford,1303165789 +91171,260,imdb top 250,1303165792 +91171,260,Oscar (Best Effects - Visual Effects),1303165795 +91171,260,robots,1303165798 +91171,260,Saturn Award (Best Science Fiction Film),1303165801 +91171,260,sci-fi,1303165804 +91171,260,space,1303165807 +91171,260,SPACE TRAVEL,1303165809 +91171,260,sword fight,1303165812 +91171,260,war,1303165818 +91171,344,1990s,1303414148 +91171,344,Action,1303414150 +91171,344,comedy,1303414164 +91171,344,crude,1303414166 +91171,344,directorial debut,1303414174 +91171,344,Dumb,1303414173 +91171,344,goofy,1303414176 +91171,344,Gross-out,1303414175 +91171,344,hilarious,1303414179 +91171,344,Jim Carrey,1303414182 +91171,344,Jim Carrey being Jim Carrey,1303414182 +91171,344,missing dolphin,1303414184 +91171,344,not funny,1303414188 +91171,344,rate up,1303414190 +91171,344,sex jokes,1303414194 +91171,344,silly fun,1303414195 +91171,344,Stupid as Hell,1303414198 +91171,344,Tom Shadyac,1303414198 +91171,344,very dumb,1303414200 +91171,344,very funny,1303414202 +91171,356,adapted from:book,1303091386 +91171,356,based on a book,1303091389 +91171,356,bittersweet,1303091395 +91171,356,classic,1303091398 +91171,356,comedy,1303091402 +91171,356,historical,1303091406 +91171,356,history,1303091408 +91171,356,imdb top 250,1303091411 +91171,356,inspirational,1303091415 +91171,356,New York City,1303091418 +91171,356,Oscar (Best Actor),1303091427 +91171,356,Oscar (Best Directing),1303091429 +91171,356,Oscar (Best Picture),1303091433 +91171,356,psychology,1303091445 +91171,356,quirky,1303091449 +91171,356,romance,1303091452 +91171,356,Sexuality,1303091455 +91171,356,Tom Hanks,1303091459 +91171,356,vietnam war,1303091462 +91171,356,war,1303091475 +91171,367,animal:dog,1303414384 +91171,367,based on a comic,1303414387 +91171,367,Cameron Diaz,1303414390 +91171,367,cartoonish,1303414392 +91171,367,classic,1303414396 +91171,367,Classic Comedy,1303414398 +91171,367,comedy,1303414406 +91171,367,comic book,1303414409 +91171,367,crime,1303414411 +91171,367,Crude,1303414413 +91171,367,funny,1303414414 +91171,367,green,1303414419 +91171,367,hilarious,1303414421 +91171,367,Jim Carey,1303414425 +91171,367,Jim Carrey,1303414427 +91171,367,Jim Carrey being Jim Carrey,1303414429 +91171,367,mafia,1303414434 +91171,367,not funny,1303414436 +91171,367,sex jokes,1303414440 +91171,367,superhero,1303414442 +91171,480,action,1303164962 +91171,480,adapted from:book,1303164965 +91171,480,adventure,1303164969 +91171,480,based on a book,1303164973 +91171,480,based on book,1303164977 +91171,480,cloning,1303164984 +91171,480,dinosaurs,1303164993 +91171,480,drama,1303165024 +91171,480,funny,1303165029 +91171,480,genetics,1303165042 +91171,480,horror,1303165012 +91171,480,humorous,1303165047 +91171,480,Oscar (Best Effects - Visual Effects),1303165056 +91171,480,Saturn Award (Best Science Fiction Film),1303165061 +91171,480,sci-fi,1303165065 +91171,480,science,1303165069 +91171,480,Steven Spielberg,1303165072 +91171,480,Suspense,1303165076 +91171,485,70mm,1303260510 +91171,485,Anamorphic Blow-Up,1303260511 +91171,485,Arnold Schwarzenegger,1303260511 +91171,485,compareTo:Last Action Hero,1303260517 +91171,485,deconstruction,1303260519 +91171,485,DVD-Video,1303260534 +91171,485,fantasy,1303260537 +91171,485,Friday night movie,1303260541 +91171,485,John McTiernan,1303260546 +91171,485,kid flick,1303260548 +91171,485,movie magic,1303260551 +91171,485,Nostalgia Critic,1303260555 +91171,485,parody,1303260558 +91171,485,stupid,1303260562 +91171,551,animated,1303168657 +91171,551,animation,1303168661 +91171,551,atmospheric,1303168663 +91171,551,beautiful,1303168666 +91171,551,Christmas,1303168670 +91171,551,classic,1303168673 +91171,551,claymation,1303168677 +91171,551,cult film,1303168680 +91171,551,dark,1303168683 +91171,551,dogs,1303168687 +91171,551,ghosts,1303168690 +91171,551,gothic,1303168694 +91171,551,great soundtrack,1303168700 +91171,551,halloween,1303168705 +91171,551,humorous,1303168710 +91171,551,johnny depp,1303168714 +91171,551,musical,1303168719 +91171,551,Nicole Kidman,1303168724 +91171,551,Tim Burton,1303168728 +91171,784,Ben Stiller,1303416380 +91171,784,black comedy,1303416382 +91171,784,boring,1303416386 +91171,784,Comedy,1303416390 +91171,784,goofy,1303416391 +91171,784,Jack Black,1303416392 +91171,784,Jim Carey,1303416401 +91171,784,Jim Carrey,1303416404 +91171,784,Matthew Broderick,1303416405 +91171,784,misunderstood,1303416407 +91171,784,not funny,1303416410 +91171,784,scary not funny,1303416414 +91171,784,stalker,1303416416 +91171,784,stupid,1303416421 +91171,784,underrated,1303416422 +91171,784,watch,1303416424 +91171,1196,1980s,1303165897 +91171,1196,action,1303165901 +91171,1196,adventure,1303165905 +91171,1196,aliens,1303165909 +91171,1196,classic,1303165912 +91171,1196,fantasy,1303165915 +91171,1196,father-son relationship,1303165919 +91171,1196,George Lucas,1303165922 +91171,1196,great soundtrack,1303165925 +91171,1196,Harrison Ford,1303165928 +91171,1196,imdb top 250,1303165933 +91171,1196,music,1303165936 +91171,1196,robots,1303165939 +91171,1196,Saturn Award (Best Actor),1303165942 +91171,1196,Saturn Award (Best Science Fiction Film),1303165945 +91171,1196,sci-fi,1303165959 +91171,1196,sequel,1303165973 +91171,1196,space,1303165978 +91171,1196,sword fight,1303165981 +91171,1196,war,1303165984 +91171,1210,action,1303168423 +91171,1210,adventure,1303168426 +91171,1210,aliens,1303168429 +91171,1210,classic,1303168432 +91171,1210,desert,1303168434 +91171,1210,drama,1303168437 +91171,1210,fantasy,1303168441 +91171,1210,father-son relationship,1303168443 +91171,1210,George Lucas,1303168447 +91171,1210,great soundtrack,1303168450 +91171,1210,Harrison Ford,1303168453 +91171,1210,imdb top 250,1303168455 +91171,1210,robots,1303168460 +91171,1210,Saturn Award (Best Science Fiction Film),1303168467 +91171,1210,sci-fi,1303168470 +91171,1210,space,1303168473 +91171,1210,Star Wars,1303168476 +91171,1210,superhero,1303168483 +91171,1210,violent,1303168485 +91171,1210,war,1303168490 +91171,1215,action,1303413632 +91171,1215,adventure,1303413632 +91171,1215,Arnold Schwarzenegger,1303413635 +91171,1215,black comedy,1303413637 +91171,1215,claymation,1303413638 +91171,1215,comedy,1303413640 +91171,1215,Cult classic,1303413642 +91171,1215,cult film,1303413647 +91171,1215,england,1303413648 +91171,1215,fantasy,1303413650 +91171,1215,horror,1303413651 +91171,1215,humorous,1303413655 +91171,1215,narrated,1303413660 +91171,1215,Nudity (Topless - Brief),1303413663 +91171,1215,satirical,1303413666 +91171,1215,stylized,1303413668 +91171,1215,time travel,1303413673 +91171,1215,zombie,1303413675 +91171,1215,zombies,1303413677 +91171,1246,AFI 100 (Cheers),1303170124 +91171,1246,AFI 100 (Movie Quotes),1303170127 +91171,1246,bittersweet,1303170131 +91171,1246,boarding school,1303170140 +91171,1246,childhood,1303170145 +91171,1246,drama,1303170149 +91171,1246,education,1303170153 +91171,1246,English literature,1303170157 +91171,1246,Ethan Hawke,1303170162 +91171,1246,friendship,1303170170 +91171,1246,heartbreaking,1303170176 +91171,1246,high school,1303170180 +91171,1246,inspirational,1303170184 +91171,1246,philosophy,1303170188 +91171,1246,Robin Williams,1303170195 +91171,1246,school,1303170201 +91171,1246,school drama,1303170202 +91171,1246,Shakespeare,1303170207 +91171,1246,suicide,1303170212 +91171,1246,teen,1303170219 +91171,1270,1980s,1303397697 +91171,1270,adventure,1303397699 +91171,1270,alternate reality,1303397700 +91171,1270,based on a book,1303397701 +91171,1270,classic,1303397706 +91171,1270,comedy,1303397707 +91171,1270,Funny,1303397711 +91171,1270,future,1303397715 +91171,1270,futuristic,1303397717 +91171,1270,high school,1303397720 +91171,1270,humorous,1303397723 +91171,1270,imdb top 250,1303397724 +91171,1270,quirky,1303397726 +91171,1270,Saturn Award (Best Science Fiction Film),1303397729 +91171,1270,sci-fi,1303397730 +91171,1270,sequel,1303397732 +91171,1270,Steven Spielberg,1303397733 +91171,1270,teen,1303397739 +91171,1270,time travel,1303397740 +91171,1391,adapted from:game,1303409590 +91171,1391,alien invasion,1303409590 +91171,1391,aliens,1303409593 +91171,1391,animation,1303409596 +91171,1391,comedy,1303409597 +91171,1391,ensemble cast,1303409599 +91171,1391,funny,1303409602 +91171,1391,Jack Nicholson,1303409607 +91171,1391,Marlon Brando,1303409612 +91171,1391,Michael J. Fox,1303409611 +91171,1391,Natalie Portman,1303409612 +91171,1391,Parody,1303409616 +91171,1391,Pierce Brosnan,1303409618 +91171,1391,satire,1303409620 +91171,1391,Saturn Award (Best Music),1303409635 +91171,1391,sci-fi,1303409637 +91171,1391,seen more than once,1303409638 +91171,1391,special effects,1303409643 +91171,1391,stupid,1303409647 +91171,1391,Tim Burton,1303409657 +91171,1485,adultery,1303418110 +91171,1485,airport,1303418112 +91171,1485,BREAKUPS AND DIVORCES,1303418115 +91171,1485,classic comedy,1303418117 +91171,1485,comedy,1303418119 +91171,1485,courtroom,1303418122 +91171,1485,courtroom setting,1303418123 +91171,1485,father-son relationship,1303418125 +91171,1485,funny,1303418128 +91171,1485,Funny as hell,1303418130 +91171,1485,jim carrey,1303418130 +91171,1485,lawyer,1303418131 +91171,1485,lawyers,1303418135 +91171,1485,lies,1303418137 +91171,1485,lions,1303418141 +91171,1485,marriage,1303418146 +91171,1485,over the top,1303418147 +91171,1485,seen at the cinema,1303418148 +91171,1485,workaholic,1303418151 +91171,1485,workplace,1303418154 +91171,1517,Australia,1303171235 +91171,1517,Danger is my middle name,1303171238 +91171,1517,don't remember,1303171249 +91171,1517,Elizabeth Hurley,1303171257 +91171,1517,hilarious,1303171259 +91171,1517,hillarious,1303171264 +91171,1517,Mike Myers,1303171268 +91171,1517,multiple roles,1303171270 +91171,1517,parody,1303171271 +91171,1517,related:007 (series),1303171274 +91171,1517,satire,1303171276 +91171,1517,seen more than once,1303171279 +91171,1517,spoof,1303171281 +91171,1517,spoof: James Bond,1303171288 +91171,1517,Underrated,1303171295 +91171,1517,watch the credits,1303171295 +91171,1517,Will Ferrell,1303171314 +91171,1562,Action,1303259665 +91171,1562,adapted from:comic,1303259666 +91171,1562,Alicia Silverstone,1303259668 +91171,1562,alter ego,1303259670 +91171,1562,Arnold Schwarzenegger,1303259674 +91171,1562,atmospheric,1303259676 +91171,1562,bank robbery,1303259679 +91171,1562,Batman,1303259680 +91171,1562,comic book,1303259686 +91171,1562,DC,1303259685 +91171,1562,DC Comics,1303259685 +91171,1562,double life,1303259687 +91171,1562,franchise,1303259689 +91171,1562,funny,1303259691 +91171,1562,George Clooney,1303259694 +91171,1562,silly,1303259698 +91171,1562,super-hero,1303259699 +91171,1562,superhero,1303259700 +91171,1562,Uma Thurman,1303259702 +91171,1580,action,1303413905 +91171,1580,adapted from:comic,1303413909 +91171,1580,adventure,1303413911 +91171,1580,alien,1303413912 +91171,1580,aliens,1303413917 +91171,1580,buddy movie,1303413919 +91171,1580,comedy,1303413921 +91171,1580,comic book,1303413923 +91171,1580,conspiracy,1303413924 +91171,1580,Mel Gibson,1303413931 +91171,1580,Oscar Winner,1303413935 +91171,1580,parody,1303413937 +91171,1580,plot twist,1303413939 +91171,1580,Saturn Award (Best Science Fiction Film),1303413940 +91171,1580,sci-fi,1303413942 +91171,1580,scifi,1303413944 +91171,1580,sequel,1303413948 +91171,1580,so bad it's good,1303413950 +91171,1580,Tommy Lee Jones,1303413953 +91171,1580,Will Smith,1303413952 +91171,1645,Al Pacino,1303262447 +91171,1645,antichrist,1303262447 +91171,1645,Charlize Theron,1303262447 +91171,1645,cheating husband,1303262453 +91171,1645,Christianity,1303262458 +91171,1645,courtroom,1303262465 +91171,1645,courtroom drama,1303262466 +91171,1645,deal with the devil,1303262471 +91171,1645,demons,1303262474 +91171,1645,devil,1303262476 +91171,1645,fallen angel,1303262479 +91171,1645,Keanu Reeves,1303262481 +91171,1645,lawyer as protagonist,1303262484 +91171,1645,lawyers,1303262489 +91171,1645,Nudity (Full Frontal - Notable),1303262493 +91171,1645,Nudity (Full Frontal),1303262495 +91171,1645,psychology,1303262496 +91171,1645,religion,1303262500 +91171,1645,surreal,1303262505 +91171,1645,thought-provoking,1303262507 +91171,1682,alternate reality,1303415451 +91171,1682,dark comedy,1303415454 +91171,1682,drama,1303415458 +91171,1682,dreamlike,1303415459 +91171,1682,dystopia,1303415462 +91171,1682,fantasy,1303415463 +91171,1682,island,1303415468 +91171,1682,Jim Carrey,1303415470 +91171,1682,melancholy,1303415472 +91171,1682,original plot,1303415474 +91171,1682,paranoia,1303415480 +91171,1682,Saturn Award (Best Writing),1303415571 +91171,1682,small town,1303415592 +91171,1682,social commentary,1303415593 +91171,1682,stylized,1303415595 +91171,1682,voyeurism,1303415601 +91171,1682,witty,1303415602 +91171,1704,Ben Affleck,1303170291 +91171,1704,boston,1303170297 +91171,1704,college,1303170303 +91171,1704,feel-good,1303170307 +91171,1704,genius,1303170311 +91171,1704,Good Romantic Comedies,1303170317 +91171,1704,Great Screenplays,1303170320 +91171,1704,imdb top 250,1303170325 +91171,1704,inspirational,1303170329 +91171,1704,math,1303170333 +91171,1704,mathematics,1303170337 +91171,1704,Matt Damon,1303170341 +91171,1704,Oscar (Best Supporting Actor),1303170345 +91171,1704,Oscar (Best Writing - Screenplay Written Directly for the Screen),1303170349 +91171,1704,psychology,1303170353 +91171,1704,Robin Williams,1303170356 +91171,1704,school drama,1303170361 +91171,1704,seen more than once,1303170364 +91171,1704,thoughtful,1303170367 +91171,1704,university,1303170372 +91171,2011,1950s,1303397983 +91171,2011,1980s,1303397985 +91171,2011,alternate reality,1303397989 +91171,2011,alternate universe,1303397991 +91171,2011,Christopher Lloyd,1303397992 +91171,2011,classic,1303397994 +91171,2011,comedy,1303397997 +91171,2011,Complex,1303398002 +91171,2011,dystopia,1303398004 +91171,2011,future,1303398007 +91171,2011,Michael J. Fox,1303398010 +91171,2011,multiple roles,1303398011 +91171,2011,Robert Zemeckis,1303398013 +91171,2011,Saturn Award (Best Special Effects),1303398015 +91171,2011,sci-fi,1303398016 +91171,2011,seen more than once,1303398019 +91171,2011,sequel,1303398020 +91171,2011,time,1303398022 +91171,2011,time travel,1303398024 +91171,2011,time-travel,1303398027 +91171,2012,alternate reality,1303397835 +91171,2012,alternate universe,1303397836 +91171,2012,Elisabeth Shue,1303397873 +91171,2012,Jules Verne,1303397856 +91171,2012,Michael J. Fox,1303397875 +91171,2012,multiple roles,1303397878 +91171,2012,Robert Zemeckis,1303397879 +91171,2012,Saturn Award (Best Music),1303397881 +91171,2012,Saturn Award (Best Supporting Actor),1303397883 +91171,2012,sci-fi,1303397884 +91171,2012,science fiction,1303397886 +91171,2012,seen more than once,1303397890 +91171,2012,sequel,1303397891 +91171,2012,sequels filmed simultaneously,1303397894 +91171,2012,steampunk,1303397896 +91171,2012,time,1303397915 +91171,2012,time travel,1303397917 +91171,2012,trains,1303397918 +91171,2012,western,1303397919 +91171,2174,AFI 100 (Laughs),1303422319 +91171,2174,Alec Baldwin,1303422361 +91171,2174,alternate reality,1303422363 +91171,2174,Bechdel Test:Pass,1303422365 +91171,2174,burton,1303422367 +91171,2174,claymation,1303422373 +91171,2174,comedy,1303422375 +91171,2174,cult film,1303422376 +91171,2174,Death,1303422379 +91171,2174,ghosts,1303422385 +91171,2174,ghosts/afterlife,1303422386 +91171,2174,haunted house,1303422388 +91171,2174,horror,1303422388 +91171,2174,Michael Keaton,1303422420 +91171,2174,miniature sets,1303422423 +91171,2174,music,1303422427 +91171,2174,off-beat,1303422431 +91171,2174,Tim Burton,1303422433 +91171,2174,weird,1303422435 +91171,2363,anti-war,1303165150 +91171,2363,giant monster,1303165153 +91171,2363,Goldie Hawn,1303165156 +91171,2363,Japan,1303165159 +91171,2363,kickass,1303165162 +91171,2363,nuclear,1303165166 +91171,2363,radiation,1303165169 +91171,2363,Takashi Shimura,1303165172 +91171,2396,Ben Affleck,1303426296 +91171,2396,British,1303426296 +91171,2396,ClearPlay,1303426298 +91171,2396,colin firth,1303426312 +91171,2396,cross dressing,1303426315 +91171,2396,cross dressing women,1303426317 +91171,2396,drama,1303426319 +91171,2396,England,1303426337 +91171,2396,Gwenth Paltrow,1303426326 +91171,2396,Gwyneth Paltrow,1303426328 +91171,2396,Judi Dench,1303426333 +91171,2396,love story,1303426335 +91171,2396,Nudity (Topless - Notable),1303426343 +91171,2396,Nudity (Topless),1303426345 +91171,2396,Oscar (Best Actress),1303426346 +91171,2396,Oscar (Best Picture),1303426347 +91171,2396,Oscar (Best Supporting Actress),1303426349 +91171,2396,romance,1303426355 +91171,2396,Shakespeare,1303426357 +91171,2571,Action,1303261648 +91171,2571,alternate reality,1303261650 +91171,2571,artificial intelligence,1303261652 +91171,2571,atmospheric,1303261657 +91171,2571,computers,1303261659 +91171,2571,cult film,1303261660 +91171,2571,cyberpunk,1303261662 +91171,2571,dystopia,1303261666 +91171,2571,fantasy,1303261668 +91171,2571,imdb top 250,1303261669 +91171,2571,martial arts,1303261671 +91171,2571,philosophical,1303261672 +91171,2571,philosophy,1303261675 +91171,2571,post apocalyptic,1303261677 +91171,2571,post-apocalyptic,1303261681 +91171,2571,sci-fi,1303261686 +91171,2571,stylized,1303261687 +91171,2571,surreal,1303261689 +91171,2571,thought-provoking,1303261692 +91171,2571,virtual reality,1303261694 +91171,2617,action,1303425169 +91171,2617,archaeology,1303425172 +91171,2617,b movie,1303425179 +91171,2617,bald nemesis,1303425182 +91171,2617,books,1303425184 +91171,2617,boring,1303425186 +91171,2617,Brendan Fraser,1303425189 +91171,2617,curse,1303425191 +91171,2617,egypt,1303425194 +91171,2617,Imhotep,1303425194 +91171,2617,librarians,1303425196 +91171,2617,mummy,1303425197 +91171,2617,music,1303425201 +91171,2617,priest,1303425201 +91171,2617,Rachel Weisz,1303425206 +91171,2617,seen at the cinema,1303425208 +91171,2617,special effects,1303425208 +91171,2617,stupid,1303425211 +91171,2617,treasure hunt,1303425215 +91171,2683,Cute,1303170686 +91171,2683,funny,1303170690 +91171,2683,Gross-out,1303170694 +91171,2683,happy,1303170699 +91171,2683,Heather Graham,1303170703 +91171,2683,Hilarious,1303170706 +91171,2683,James Bond,1303170710 +91171,2683,Mike Myers,1303170713 +91171,2683,multiple roles,1303170717 +91171,2683,obvious,1303170722 +91171,2683,parody,1303170726 +91171,2683,seen more than once,1303170730 +91171,2683,sequel,1303170734 +91171,2683,Silly,1303170739 +91171,2683,sixties,1303170742 +91171,2683,spoof,1303170746 +91171,2683,stupid,1303170750 +91171,2683,Tim Robbins,1303170753 +91171,2683,time travel,1303170756 +91171,2683,Will Ferrell,1303170764 +91171,2706,Amazing Cinematography,1303422806 +91171,2706,boring,1303422806 +91171,2706,comedy,1303422809 +91171,2706,funny,1303422821 +91171,2706,Gross-out,1303422822 +91171,2706,high school,1303422824 +91171,2706,not funny,1303422830 +91171,2706,Nudity (Topless - Notable),1303422832 +91171,2706,Nudity (Topless),1303422835 +91171,2706,Seann William Scott,1303422897 +91171,2706,sexuality,1303422923 +91171,2706,silly,1303422925 +91171,2706,stereotypes,1303422930 +91171,2706,stupid,1303422936 +91171,2706,teen,1303422937 +91171,2706,teen comedy,1303422940 +91171,2706,Teen movie,1303422940 +91171,2706,virginity,1303422941 +91171,2797,1980s,1303164430 +91171,2797,80's,1303164434 +91171,2797,80s,1303164438 +91171,2797,being a kid again,1303164444 +91171,2797,Child as Adult,1303164451 +91171,2797,children,1303164455 +91171,2797,classic,1303164457 +91171,2797,comedy,1303164462 +91171,2797,family,1303164465 +91171,2797,girlie movie,1303164468 +91171,2797,May-December romance,1303164475 +91171,2797,New York,1303164477 +91171,2797,New York City,1303164480 +91171,2797,seen more than once,1303164483 +91171,2797,sex,1303164486 +91171,2797,switching places,1303164489 +91171,2797,Tom Hanks,1303164491 +91171,2797,toy store,1303164496 +91171,2797,toys,1303164509 +91171,2916,alternate reality,1303260068 +91171,2916,alternate universe,1303260072 +91171,2916,Arnold Schwarzenegger,1303260073 +91171,2916,conspiracy,1303260076 +91171,2916,cyberpunk,1303260078 +91171,2916,dystopia,1303260079 +91171,2916,espionage,1303260082 +91171,2916,heroism,1303260085 +91171,2916,memory,1303260086 +91171,2916,murder,1303260092 +91171,2916,mutants,1303260093 +91171,2916,Nudity (Topless - Brief),1303260097 +91171,2916,original plot,1303260099 +91171,2916,Philip K. Dick,1303260104 +91171,2916,politics,1303260104 +91171,2916,sci-fi,1303260109 +91171,2916,space travel,1303260110 +91171,2916,terrorism,1303260115 +91171,2916,virtual reality,1303260116 +91171,2959,action,1303397573 +91171,2959,atmospheric,1303397573 +91171,2959,based on a book,1303397574 +91171,2959,Brad Pitt,1303397576 +91171,2959,classic,1303397578 +91171,2959,crime,1303397581 +91171,2959,dark comedy,1303397582 +91171,2959,disturbing,1303397586 +91171,2959,Edward Norton,1303397587 +91171,2959,imdb top 250,1303397588 +91171,2959,mental illness,1303397591 +91171,2959,philosophical,1303397594 +91171,2959,philosophy,1303397597 +91171,2959,psychological,1303397601 +91171,2959,psychology,1303397602 +91171,2959,quirky,1303397603 +91171,2959,social commentary,1303397605 +91171,2959,surreal,1303397609 +91171,2959,twist ending,1303397609 +91171,2959,violence,1303397613 +91171,3000,action,1303397186 +91171,3000,adventure,1303397186 +91171,3000,anime,1303397187 +91171,3000,anti-war,1303397190 +91171,3000,atmospheric,1303397192 +91171,3000,classic,1303397193 +91171,3000,drama,1303397194 +91171,3000,dystopia,1303397198 +91171,3000,environmental,1303397199 +91171,3000,fantasy,1303397203 +91171,3000,fantasy world,1303397204 +91171,3000,Hayao Miyazaki,1303397205 +91171,3000,history,1303397210 +91171,3000,imdb top 250,1303397211 +91171,3000,Japan,1303397212 +91171,3000,nature,1303397215 +91171,3000,prostitution,1303397216 +91171,3000,Studio Ghibli,1303397219 +91171,3000,surreal,1303397222 +91171,3000,talking animals,1303397229 +91171,3081,19th century,1303419452 +91171,3081,atmospheric,1303419454 +91171,3081,Christina Ricci,1303419455 +91171,3081,Christopher Walken,1303419459 +91171,3081,Dark,1303419460 +91171,3081,Depp & Burton,1303419462 +91171,3081,Fantasy,1303419467 +91171,3081,funny,1303419471 +91171,3081,ghosts,1303419474 +91171,3081,ghosts/afterlife,1303419474 +91171,3081,gothic,1303419477 +91171,3081,horror,1303419479 +91171,3081,Johnny Depp,1303419479 +91171,3081,Mystery,1303419484 +91171,3081,Oscar (Best Art Direction - Set Decoration),1303419486 +91171,3081,quirky,1303419488 +91171,3081,Romance,1303419492 +91171,3081,stylized,1303419493 +91171,3081,Tim Burton,1303419494 +91171,3081,visually appealing,1303419496 +91171,3114,abandonment,1303259004 +91171,3114,animation,1303259006 +91171,3114,cgi,1303259007 +91171,3114,computer animation,1303259009 +91171,3114,Disney,1303259010 +91171,3114,funny,1303259016 +91171,3114,humorous,1303259018 +91171,3114,imdb top 250,1303259025 +91171,3114,Joan Cusack,1303259027 +91171,3114,John Cusack,1303259030 +91171,3114,Oscar Nominee,1303259044 +91171,3114,Pixar,1303259045 +91171,3114,Pixar animation,1303259046 +91171,3114,RACE AGAINST TIME,1303259049 +91171,3114,sequel,1303259055 +91171,3114,Tim Allen,1303259057 +91171,3114,Tom Hanks,1303259058 +91171,3114,toys,1303259064 +91171,3253,1990s,1303171460 +91171,3253,adapted from:TV series,1303171469 +91171,3253,Based on a TV show,1303171471 +91171,3253,Bechdel Test:Fail,1303171475 +91171,3253,comedy,1303171481 +91171,3253,Dana Carvey,1303171504 +91171,3253,Funniest Movies,1303171505 +91171,3253,Garth,1303171508 +91171,3253,mike myers,1303171511 +91171,3253,music,1303171520 +91171,3253,Penelope Spheeris,1303171594 +91171,3253,rock and roll,1303171564 +91171,3253,Saturday Night Live,1303171569 +91171,3253,seen at the cinema,1303171572 +91171,3253,seen more than once,1303171570 +91171,3253,teen,1303171576 +91171,3253,Tia Carrere,1303171609 +91171,3253,want to see again,1303171613 +91171,3254,Based on a TV show,1303173006 +91171,3254,Can't remember,1303173009 +91171,3254,Christopher Walken,1303173015 +91171,3254,music business,1303173017 +91171,3254,rock and roll,1303173023 +91171,3254,Saturday Night Live,1303173025 +91171,3254,seen at the cinema,1303173026 +91171,3254,seen more than once,1303173029 +91171,3254,Stephen Surjik,1303173031 +91171,3254,war,1303173035 +91171,3355,ancient books,1303421280 +91171,3355,Arturo Perez-Reverte,1303421286 +91171,3355,bad ending,1303421286 +91171,3355,Believer,1303421287 +91171,3355,devil,1303421288 +91171,3355,dialogue,1303421473 +91171,3355,Emanuelle Seigner,1303421503 +91171,3355,Emmanuelle Seigner,1303421505 +91171,3355,glasses,1303421508 +91171,3355,infierno,1303421511 +91171,3355,Johnny Depp,1303421512 +91171,3355,Mystery,1303421513 +91171,3355,Nudity (Rear),1303421516 +91171,3355,Nudity (Topless),1303421517 +91171,3355,rare books,1303421521 +91171,3355,Roman Polanski,1303421526 +91171,3355,satanism,1303421527 +91171,3355,Seen 2008,1303421531 +91171,3355,story,1303421536 +91171,3355,style,1303421538 +91171,3979,Adam Sandler,1303413117 +91171,3979,Carl Weathers,1303413122 +91171,3979,comedy,1303413144 +91171,3979,devil,1303413123 +91171,3979,DVD,1303413207 +91171,3979,Harvey Keitel,1303413288 +91171,3979,hell,1303413211 +91171,3979,not his best,1303413213 +91171,3979,Patricia Arquette,1303413214 +91171,3979,perverted,1303413218 +91171,3979,Quentin Tarantino,1303413219 +91171,3979,Reese Witherspoon,1303413222 +91171,3979,Rhys Ifans,1303413223 +91171,3979,Rob Schneider,1303413225 +91171,3979,Rodney Dangerfield,1303413290 +91171,3979,snl alums,1303413291 +91171,3979,Steven Brill,1303413295 +91171,3988,adapted from:book,1303418341 +91171,3988,animation remade as live action,1303418348 +91171,3988,author:Dr. Seuss,1303418350 +91171,3988,based on a book,1303418352 +91171,3988,based on a TV show,1303418356 +91171,3988,Based on the book by Dr. Seuss,1303418358 +91171,3988,Children,1303418360 +91171,3988,Christine Baranski,1303418481 +91171,3988,Christmas,1303418482 +91171,3988,comedy,1303418485 +91171,3988,Dr. Seuss,1303418487 +91171,3988,Fantasy,1303418488 +91171,3988,homosexuality,1303418490 +91171,3988,Jim Carrey,1303418493 +91171,3988,mean,1303418495 +91171,3988,repeat watch,1303418497 +91171,3988,Ron Howard,1303418499 +91171,3988,Taylor Momsen,1303418554 +91171,3988,Walked out/didn't finish,1303418556 +91171,3988,Xmas theme,1303418560 +91171,4014,atheism,1303420949 +91171,4014,based on book,1303420950 +91171,4014,colourful,1303420958 +91171,4014,easily confused with other movie(s) (title),1303420958 +91171,4014,family,1303420958 +91171,4014,feel-good,1303420959 +91171,4014,food,1303421051 +91171,4014,food/cooking,1303421052 +91171,4014,france,1303421056 +91171,4014,French,1303421059 +91171,4014,history,1303421062 +91171,4014,Johnny Depp,1303421064 +91171,4014,love,1303421068 +91171,4014,magic,1303421069 +91171,4014,magic realism,1303421071 +91171,4014,Nudity (Topless - Brief),1303421076 +91171,4014,Quirky,1303421077 +91171,4014,remake,1303421079 +91171,4014,small town,1303421086 +91171,4022,adventure,1303164126 +91171,4022,airplane crash,1303164136 +91171,4022,busom buddy with a volleyball,1303164140 +91171,4022,cars,1303164148 +91171,4022,drama,1303164153 +91171,4022,easily confused with other movie(s) (title),1303164159 +91171,4022,helen hunt,1303164164 +91171,4022,island,1303164168 +91171,4022,lengthy,1303164172 +91171,4022,loneliness,1303164176 +91171,4022,love story,1303164183 +91171,4022,man vs. nature,1303164187 +91171,4022,must see,1303164190 +91171,4022,philosophy,1303164194 +91171,4022,Robert Zemeckis,1303164199 +91171,4022,spiritual journey,1303164203 +91171,4022,stranded,1303164206 +91171,4022,SURVIVAL,1303164212 +91171,4022,Tom Hanks,1303164227 +91171,4022,unique,1303164230 +91171,4027,adaptation,1303169001 +91171,4027,adapted from:book,1303169004 +91171,4027,adventure,1303169008 +91171,4027,based on a book,1303169012 +91171,4027,black comedy,1303169015 +91171,4027,comedy,1303169020 +91171,4027,funny,1303169024 +91171,4027,George Clooney,1303169028 +91171,4027,great soundtrack,1303169031 +91171,4027,Musical,1303169045 +91171,4027,notable soundtrack,1303169049 +91171,4027,prison escape,1303169053 +91171,4027,prisoners,1303169057 +91171,4027,Quirky,1303169062 +91171,4027,racism,1303169066 +91171,4027,updated classics,1303169079 +91171,4105,action,1303413760 +91171,4105,black comedy,1303413761 +91171,4105,Bruce Campbell,1303413762 +91171,4105,comedy,1303413765 +91171,4105,controversial,1303413766 +91171,4105,Cult classic,1303413768 +91171,4105,cult film,1303413769 +91171,4105,dark humor,1303413772 +91171,4105,demons,1303413772 +91171,4105,directorial debut,1303413773 +91171,4105,horror,1303413777 +91171,4105,isolation,1303413780 +91171,4105,low budget,1303413781 +91171,4105,Nudity (Topless - Brief),1303413787 +91171,4105,rape,1303413789 +91171,4105,splatter,1303413791 +91171,4105,wilderness,1303413793 +91171,4105,zombie,1303413795 +91171,4105,zombies,1303413796 +91171,4158,weird,1303426134 +91171,4158,Worst movie ever!,1303426137 +91171,4239,based on a true story,1303421646 +91171,4239,black and white,1303421648 +91171,4239,cocaine,1303421649 +91171,4239,coke,1303421653 +91171,4239,drug trade,1303421655 +91171,4239,drug trafficking,1303421658 +91171,4239,drugs,1303421657 +91171,4239,dysfunctional family,1303421660 +91171,4239,father daughter relationship,1303421664 +91171,4239,Interesting,1303421665 +91171,4239,Johnny Depp,1303421667 +91171,4239,Penélope Cruz,1303421672 +91171,4239,Penélope Cruz,1303421671 +91171,4239,rachel griffiths,1303421673 +91171,4239,Ray Liotta,1303421676 +91171,4239,seventies,1303421678 +91171,4239,trippy,1303421680 +91171,4239,true story,1303421683 +91171,4239,watched 2007,1303421684 +91171,4270,action,1303425484 +91171,4270,action packed,1303425490 +91171,4270,adventure,1303425490 +91171,4270,Architecture,1303425490 +91171,4270,Art,1303425495 +91171,4270,Brendan Fraser,1303425491 +91171,4270,cheesy,1303425497 +91171,4270,comedy,1303425499 +91171,4270,egypt,1303425499 +91171,4270,exciting,1303425500 +91171,4270,fun,1303425504 +91171,4270,ghosts/afterlife,1303425506 +91171,4270,mummy,1303425509 +91171,4270,muppets,1303425511 +91171,4270,Rachel Weisz,1303425513 +91171,4270,Sequel,1303425514 +91171,4270,sequel fever,1303425516 +91171,4270,spoof,1303425519 +91171,4306,animation,1303170824 +91171,4306,Based on a book,1303170827 +91171,4306,based on book,1303170830 +91171,4306,Cameron Diaz,1303170836 +91171,4306,comedy,1303170840 +91171,4306,computer animation,1303170842 +91171,4306,Disney,1303170846 +91171,4306,Dreamworks,1303170851 +91171,4306,Eddie Murphy,1303170855 +91171,4306,fairy tale,1303170860 +91171,4306,Funny,1303170864 +91171,4306,imdb top 250,1303170865 +91171,4306,Oscar (Best Animated Feature),1303170869 +91171,4306,parody,1303170871 +91171,4306,Quirky,1303170874 +91171,4306,romance,1303170878 +91171,4306,satire,1303170880 +91171,4306,sequel,1303170883 +91171,4306,talking animals,1303170889 +91171,4306,witty,1303170895 +91171,4310,Action,1303170468 +91171,4310,catastrophe,1303170470 +91171,4310,drama,1303170476 +91171,4310,emotional,1303170482 +91171,4310,explosions,1303170487 +91171,4310,fighting,1303170491 +91171,4310,funny,1303170496 +91171,4310,Hawaii,1303170501 +91171,4310,historical,1303170505 +91171,4310,History,1303170509 +91171,4310,horrors of war,1303170513 +91171,4310,japan,1303170517 +91171,4310,Jennifer Garner,1303170521 +91171,4310,military,1303170525 +91171,4310,Romance,1303170534 +91171,4310,romantic,1303170539 +91171,4310,thought-provoking,1303170543 +91171,4310,War,1303170547 +91171,4310,World War II,1303170551 +91171,4558,Arnold Schwarzenegger,1303260401 +91171,4558,brother-brother relationship,1303260402 +91171,4558,brothers,1303260404 +91171,4558,Can't remember,1303260409 +91171,4558,comedy,1303260412 +91171,4558,Danny DeVito,1303260414 +91171,4558,funny,1303260418 +91171,4558,Ivan Reitman,1303260420 +91171,4558,Kelly Preston,1303260422 +91171,4558,kids,1303260426 +91171,4558,seen at the cinema,1303260427 +91171,4558,siblings,1303260433 +91171,4558,so bad it's good,1303260438 +91171,4558,twins,1303260446 +91171,4558,twins/inter-related lives,1303260448 +91171,4558,very funny,1303260450 +91171,4718,Alyson Hannigan,1303423151 +91171,4718,best comedy,1303423154 +91171,4718,Chris Klein,1303423166 +91171,4718,college,1303423176 +91171,4718,comedy,1303423178 +91171,4718,funny,1303423182 +91171,4718,Jason Biggs,1303423186 +91171,4718,Mena Suvari,1303423202 +91171,4718,not funny,1303423205 +91171,4718,Notable Nudity,1303423207 +91171,4718,Nudity (Topless),1303423210 +91171,4718,Seann William Scott,1303423212 +91171,4718,sequel,1303423213 +91171,4718,sexuality,1303423215 +91171,4718,Shannon Elizabeth,1303423226 +91171,4718,Tara Reid,1303423260 +91171,4718,teen,1303423259 +91171,4718,Thomas Ian Nicholas,1303423273 +91171,4718,tits,1303423274 +91171,4886,animated,1303413425 +91171,4886,animation,1303413426 +91171,4886,CGI,1303413428 +91171,4886,classic,1303413430 +91171,4886,Comedy,1303413432 +91171,4886,cute,1303413433 +91171,4886,Disney,1303413435 +91171,4886,funny,1303413437 +91171,4886,hilarious,1303413441 +91171,4886,imdb top 250,1303413443 +91171,4886,innovative,1303413445 +91171,4886,John Goodman,1303413449 +91171,4886,monsters,1303413450 +91171,4886,Oscar (Best Music - Original Score),1303413452 +91171,4886,Oscar (Best Music - Original Song),1303413453 +91171,4886,Oscar Winner,1303413455 +91171,4886,Pixar,1303413456 +91171,4886,Pixar animation,1303413459 +91171,4886,seen more than once,1303413464 +91171,4886,Steve Buscemi,1303413466 +91171,4896,based on a book,1303427855 +91171,4896,based on book,1303427859 +91171,4896,Children,1303427860 +91171,4896,Christmas,1303427861 +91171,4896,dogs,1303427863 +91171,4896,family,1303427866 +91171,4896,fantasy,1303427866 +91171,4896,ghosts,1303427866 +91171,4896,good versus evil,1303427869 +91171,4896,halloween,1303427871 +91171,4896,humorous,1303427872 +91171,4896,magic,1303427877 +91171,4896,mystery,1303427877 +91171,4896,school,1303427876 +91171,4896,school drama,1303427878 +91171,4896,sequel,1303428907 +91171,4896,Wizards,1303428909 +91171,4963,action,1303168877 +91171,4963,Brad Pitt,1303168881 +91171,4963,casino,1303168886 +91171,4963,comedy,1303168890 +91171,4963,crime,1303168894 +91171,4963,Don Cheadle,1303169277 +91171,4963,ensemble cast,1303168901 +91171,4963,feel good movie,1303168905 +91171,4963,George Clooney,1303168909 +91171,4963,Las Vegas,1303168913 +91171,4963,Matt Damon,1303169277 +91171,4963,ocean,1303168923 +91171,4963,remake,1303168928 +91171,4963,Steven Soderbergh,1303168931 +91171,4963,vegas,1303168935 +91171,4963,witty,1303168942 +91171,4973,atmospheric,1303260690 +91171,4973,beautifully filmed,1303260692 +91171,4973,comedy,1303260698 +91171,4973,cult film,1303260703 +91171,4973,fairy tale,1303260704 +91171,4973,feel-good,1303260706 +91171,4973,great soundtrack,1303260707 +91171,4973,imdb top 250,1303260709 +91171,4973,inspirational,1303260711 +91171,4973,music,1303260716 +91171,4973,narrated,1303260718 +91171,4973,notable soundtrack,1303260721 +91171,4973,Paris,1303260722 +91171,4973,quirky,1303260727 +91171,4973,romance,1303260728 +91171,4973,stylized,1303260730 +91171,4973,surreal,1303260732 +91171,4973,visually appealing,1303260738 +91171,4995,based on a book,1303397410 +91171,4995,based on a true story,1303397412 +91171,4995,biography,1303397415 +91171,4995,college,1303397424 +91171,4995,Drama,1303397429 +91171,4995,genius,1303397430 +91171,4995,insanity,1303397434 +91171,4995,inspirational,1303397435 +91171,4995,math,1303397439 +91171,4995,mathematics,1303397440 +91171,4995,mental illness,1303397442 +91171,4995,Oscar (Best Directing),1303397443 +91171,4995,Oscar (Best Picture),1303397444 +91171,4995,Oscar (Best Supporting Actress),1303397446 +91171,4995,Oscar Winner,1303397449 +91171,4995,psychology,1303397451 +91171,4995,romance,1303397452 +91171,4995,Russell Crowe,1303397454 +91171,4995,schizophrenia,1303397457 +91171,4995,true story,1303397460 +91171,5349,Action,1303424032 +91171,5349,adapted from:comic,1303424032 +91171,5349,alter ego,1303424032 +91171,5349,chick flick,1303424035 +91171,5349,comic book,1303424041 +91171,5349,franchise,1303424043 +91171,5349,Kirsten Dunst,1303424046 +91171,5349,marvel,1303424055 +91171,5349,new york,1303424056 +91171,5349,New York City,1303424058 +91171,5349,Nudity (Topless - Brief),1303424062 +91171,5349,Saturn Award (Best Music),1303424072 +91171,5349,sequel,1303424076 +91171,5349,super hero,1303424078 +91171,5349,super-hero,1303424080 +91171,5349,superhero,1303424081 +91171,5349,Tobey Maguire,1303424086 +91171,5349,violence,1303424088 +91171,5349,Willem Dafoe,1303424093 +91171,5449,Adam Sandler,1303412749 +91171,5449,Al Sharpton,1303412749 +91171,5449,Below R,1303412750 +91171,5449,DVD,1303412754 +91171,5449,funny,1303412757 +91171,5449,Jared Harris,1303412759 +91171,5449,John Turturro,1303412760 +91171,5449,Peter Gallagher,1303412762 +91171,5449,silly,1303412763 +91171,5449,Steven Brill,1303412766 +91171,5449,Winona Ryder,1303412766 +91171,5481,Austria,1303171060 +91171,5481,Beyoncé Knowles,1303171062 +91171,5481,comedy,1303171069 +91171,5481,crude,1303171070 +91171,5481,dutch,1303171073 +91171,5481,hilarious,1303171075 +91171,5481,James Bond,1303171077 +91171,5481,jumped the shark,1303171081 +91171,5481,Michael Caine,1303171086 +91171,5481,mike myers,1303171088 +91171,5481,multiple roles,1303171089 +91171,5481,parody,1303171090 +91171,5481,satire,1303171092 +91171,5481,Seth green,1303171095 +91171,5481,sex jokes,1303171096 +91171,5481,spoof,1303171103 +91171,5481,time travel,1303171106 +91171,5618,adventure,1303397274 +91171,5618,alternate reality,1303397274 +91171,5618,animation,1303397277 +91171,5618,anime,1303397278 +91171,5618,atmospheric,1303397281 +91171,5618,childhood,1303397282 +91171,5618,dragons,1303397286 +91171,5618,dreamlike,1303397288 +91171,5618,environmental,1303397293 +91171,5618,fairy tale,1303397294 +91171,5618,fantasy,1303397296 +91171,5618,hallucinatory,1303397298 +91171,5618,Hayao Miyazaki,1303397301 +91171,5618,imdb top 250,1303397303 +91171,5618,Japan,1303397304 +91171,5618,Oscar (Best Animated Feature),1303397305 +91171,5618,Saturn Award (Best Animated Film),1303397307 +91171,5618,sports,1303397311 +91171,5618,Studio Ghibli,1303397313 +91171,5945,abandonment,1303410025 +91171,5945,adapted from:book,1303410024 +91171,5945,based on a book,1303410026 +91171,5945,Comedy,1303410030 +91171,5945,dark comedy,1303410031 +91171,5945,death,1303410032 +91171,5945,Depressing,1303410034 +91171,5945,different from book,1303410038 +91171,5945,Drama,1303410045 +91171,5945,family gatherings,1303410048 +91171,5945,flat ending,1303410051 +91171,5945,Jack Nicholson,1303410054 +91171,5945,movie to see,1303410058 +91171,5945,no point,1303410127 +91171,5945,Nudity (Topless),1303410129 +91171,5945,road trip,1303410134 +91171,5945,satire,1303410138 +91171,5945,widows/widowers,1303410142 +91171,5971,anime,1303173442 +91171,5971,boring,1303173452 +91171,5971,Cartoon,1303173456 +91171,5971,children,1303173464 +91171,5971,country life,1303173466 +91171,5971,Cute,1303173468 +91171,5971,family,1303173475 +91171,5971,fantasy,1303173477 +91171,5971,feel good movie,1303173477 +91171,5971,feel-good,1303173479 +91171,5971,for kids,1303173485 +91171,5971,great soundtrack,1303173491 +91171,5971,Hayao Miyazaki,1303173494 +91171,5971,Japan,1303173494 +91171,5971,kids and family,1303173498 +91171,5971,Miyazaki,1303173503 +91171,5971,nature,1303173505 +91171,5971,Studio Ghibli,1303173506 +91171,5971,too simple plot,1303173510 +91171,5971,visually appealing,1303173512 +91171,5989,Amy Adams,1303164300 +91171,5989,based on a book,1303164305 +91171,5989,better than expected,1303164310 +91171,5989,biography,1303164314 +91171,5989,Christopher Walken,1303164319 +91171,5989,comedy,1303164323 +91171,5989,crime,1303164331 +91171,5989,drama,1303164335 +91171,5989,factual,1303164338 +91171,5989,feel good movie,1303164344 +91171,5989,funny,1303164347 +91171,5989,Leonardo DiCaprio,1303164351 +91171,5989,Steven Spielberg,1303164357 +91171,5989,Tom Hanks,1303164363 +91171,5989,twists & turns,1303164365 +91171,6016,adapted from:book,1303167599 +91171,6016,Africa,1303167628 +91171,6016,atmospheric,1303167595 +91171,6016,based on a book,1303167605 +91171,6016,based on a true story,1303167609 +91171,6016,black comedy,1303167612 +91171,6016,Brazil,1303167633 +91171,6016,Classic,1303167635 +91171,6016,crime,1303167639 +91171,6016,disturbing,1303167642 +91171,6016,documentary,1303167648 +91171,6016,drugs,1303167652 +91171,6016,gangsters,1303167698 +91171,6016,imdb top 250,1303167702 +91171,6016,multiple storylines,1303167707 +91171,6016,serial killer,1303167715 +91171,6016,South America,1303167719 +91171,6016,true story,1303167723 +91171,6016,violence,1303167727 +91171,6287,Adam Sandler,1303410487 +91171,6287,angelina jolies lips,1303410489 +91171,6287,angry,1303410490 +91171,6287,comedy,1303410492 +91171,6287,ending,1303410493 +91171,6287,everything,1303410499 +91171,6287,funny,1303410501 +91171,6287,Jack Nicholson,1303410505 +91171,6287,John Turturro,1303410507 +91171,6287,Marisa Tomei,1303410513 +91171,6287,not worth a star,1303410512 +91171,6287,Peter Segal,1303410517 +91171,6287,PG-13,1303410638 +91171,6287,Playlist,1303410638 +91171,6287,psychology,1303410638 +91171,6365,action,1303262019 +91171,6365,alternate reality,1303262021 +91171,6365,car chase,1303262025 +91171,6365,cyberpunk,1303262027 +91171,6365,dystopia,1303262029 +91171,6365,existentialism,1303262031 +91171,6365,future,1303262035 +91171,6365,Keanu Reeves,1303262037 +91171,6365,magic,1303262039 +91171,6365,martial arts,1303262046 +91171,6365,Monica Bellucci,1303262047 +91171,6365,philosophy,1303262050 +91171,6365,Post apocalyptic,1303262052 +91171,6365,post-apocalyptic,1303262054 +91171,6365,sci-fi,1303262056 +91171,6365,super-hero,1303262062 +91171,6365,thought-provoking,1303262060 +91171,6365,Trilogy,1303262063 +91171,6365,virtual reality,1303262066 +91171,6365,visually stunning,1303262070 +91171,6373,classic,1303414885 +91171,6373,comedy,1303414885 +91171,6373,comedy of manners,1303414888 +91171,6373,fantasy,1303414891 +91171,6373,funny,1303414893 +91171,6373,gay,1303414895 +91171,6373,god,1303414898 +91171,6373,humorous,1303414901 +91171,6373,Jennifer Aniston,1303414906 +91171,6373,Jim Carrey,1303414907 +91171,6373,love story,1303414909 +91171,6373,Morgan Freeman,1303414914 +91171,6373,not funny,1303414916 +91171,6373,religion,1303414918 +91171,6373,sci-fi,1303414920 +91171,6373,seen more than once,1303414925 +91171,6373,Steve Carell,1303414927 +91171,6373,television,1303414933 +91171,6373,touching,1303414938 +91171,6373,United States,1303414943 +91171,6377,animals,1303258526 +91171,6377,animation,1303258527 +91171,6377,children,1303258528 +91171,6377,classic,1303258533 +91171,6377,Comedy,1303258534 +91171,6377,Disney,1303258539 +91171,6377,Disney animated feature,1303258540 +91171,6377,father-son relationship,1303258549 +91171,6377,film noir,1303258552 +91171,6377,funny,1303258555 +91171,6377,imdb top 250,1303258557 +91171,6377,ocean,1303258558 +91171,6377,Oscar (Best Animated Feature),1303258561 +91171,6377,Oscar Winner,1303258567 +91171,6377,Pixar,1303258568 +91171,6377,Pixar animation,1303258569 +91171,6377,predictable,1303258570 +91171,6377,Saturn Award (Best Animated Film),1303258572 +91171,6377,talking animals,1303258592 +91171,6377,underwater,1303258598 +91171,6539,action,1303418769 +91171,6539,adventure,1303418772 +91171,6539,beautiful,1303418773 +91171,6539,comedy,1303418774 +91171,6539,Disney,1303418776 +91171,6539,funny,1303418781 +91171,6539,ghosts,1303418780 +91171,6539,ghosts/afterlife,1303418789 +91171,6539,imdb top 250,1303418783 +91171,6539,Johnny Depp,1303418783 +91171,6539,magic,1303418790 +91171,6539,pirates,1303418786 +91171,6539,Pixar,1303418966 +91171,6539,revenge,1303418969 +91171,6539,Suspense,1303418971 +91171,6539,sword fight,1303418971 +91171,6539,thriller,1303418972 +91171,6539,War,1303418975 +91171,6539,zombie,1303418978 +91171,6539,Zombies,1303418980 +91171,6934,action,1303262638 +91171,6934,alternate reality,1303262640 +91171,6934,apocalypse,1303262643 +91171,6934,cyberpunk,1303262643 +91171,6934,dystopia,1303262657 +91171,6934,fantasy,1303262659 +91171,6934,future,1303262661 +91171,6934,Keanu Reeves,1303262661 +91171,6934,Martin Scorsese,1303262664 +91171,6934,Philosophical,1303262667 +91171,6934,philosophy,1303262668 +91171,6934,Post apocalyptic,1303262670 +91171,6934,post-apocalyptic,1303262672 +91171,6934,robots,1303262678 +91171,6934,Romance,1303262682 +91171,6934,sci-fi,1303262684 +91171,6934,sequel,1303262686 +91171,6934,super-hero,1303262690 +91171,6934,virtual reality,1303262691 +91171,6934,visually stunning,1303262692 +91171,6951,adapted from:book,1303173253 +91171,6951,author:Dr. Seuss,1303173256 +91171,6951,based on a book,1303173258 +91171,6951,car chase,1303173260 +91171,6951,cat,1303173266 +91171,6951,cats,1303173268 +91171,6951,Crappy Remake,1303173271 +91171,6951,Dakota Fanning,1303173274 +91171,6951,Dr. Seuss,1303173279 +91171,6951,fish,1303173283 +91171,6951,Mike Myers,1303173284 +91171,6951,one parent family,1303173289 +91171,6951,violently stupid,1303173290 +91171,6951,weird,1303173291 +91171,7004,Arnold Schwarzenegger,1303260201 +91171,7004,comedy,1303260203 +91171,7004,Cute!,1303260202 +91171,7004,elementary school,1303260204 +91171,7004,Ivan Reitman,1303260206 +91171,7004,kids fun,1303260212 +91171,7004,teacher,1303260214 +91171,7004,undercover cop,1303260219 +91171,7099,adventure,1303397061 +91171,7099,alien beings,1303397065 +91171,7099,anime,1303397075 +91171,7099,classic,1303397070 +91171,7099,comic book,1303397078 +91171,7099,dystopic future,1303397080 +91171,7099,environmental,1303397080 +91171,7099,fantasy,1303397082 +91171,7099,fantasy world,1303397083 +91171,7099,Hayao Miyazaki,1303397084 +91171,7099,Japan,1303397085 +91171,7099,Miyazaki,1303397086 +91171,7099,narrated,1303397091 +91171,7099,post-apocalyptic,1303397094 +91171,7099,sci-fi,1303397096 +91171,7099,strong female lead,1303397098 +91171,7099,Studio Ghibli,1303397100 +91171,7099,stylized,1303397104 +91171,7099,tense,1303397108 +91171,7099,war,1303397111 +91171,7347,based on a book,1303419698 +91171,7347,Ei muista,1303419699 +91171,7347,Gfei own it,1303419701 +91171,7347,imaginary friend,1303419709 +91171,7347,John Turturro,1303419705 +91171,7347,Johnny Depp,1303419706 +91171,7347,movie to see,1303419709 +91171,7347,murder,1303419710 +91171,7347,owned,1303419715 +91171,7347,psychological,1303419717 +91171,7347,psychology,1303419718 +91171,7347,schizophrenia,1303419720 +91171,7347,split personality,1303419723 +91171,7347,Stephen King,1303419729 +91171,7347,writer,1303419731 +91171,7347,writers,1303419733 +91171,8360,animation,1303170963 +91171,8360,Antonio Banderas,1303170969 +91171,8360,Cameron Diaz,1303170979 +91171,8360,comedy,1303170981 +91171,8360,computer animation,1303170986 +91171,8360,Disney,1303170988 +91171,8360,Dreamworks,1303170994 +91171,8360,Eddie Murphy,1303170995 +91171,8360,fairy tale,1303170998 +91171,8360,Funniest Movies,1303171000 +91171,8360,Funny,1303171002 +91171,8360,hilarious,1303171003 +91171,8360,Julie Andrews,1303171005 +91171,8360,Oscar Nominee,1303171008 +91171,8360,parody,1303171010 +91171,8360,satire,1303171012 +91171,8360,sequel,1303171012 +91171,8360,Shakespeare,1303171015 +91171,8360,talking animals,1303171016 +91171,8984,Brad Pitt,1303169163 +91171,8984,cameo:Bruce Willis,1303169169 +91171,8984,Casey Affleck,1303169176 +91171,8984,Catherine Zeta-Jones,1303169180 +91171,8984,confusing,1303169185 +91171,8984,confusing plot,1303169189 +91171,8984,Crime,1303169194 +91171,8984,Don Cheadle,1303169198 +91171,8984,ensemble cast,1303169203 +91171,8984,George Clooney,1303169206 +91171,8984,great soundtrack,1303169214 +91171,8984,not as good as the first,1303169219 +91171,8984,original good;sequel sucked,1303169227 +91171,8984,Robbery,1303169232 +91171,8984,Steven Soderbergh,1303169235 +91171,27706,Adventure,1303414728 +91171,27706,based on a book,1303414730 +91171,27706,Billy Connolly,1303414745 +91171,27706,book was better,1303414750 +91171,27706,dustin hoffman,1303414771 +91171,27706,eerie,1303414775 +91171,27706,fantasy,1303414777 +91171,27706,I wanted to hug this movie,1303414779 +91171,27706,jim carrey,1303414782 +91171,27706,Jude Law,1303414783 +91171,27706,macabre,1303414784 +91171,27706,meryl streep,1303414816 +91171,27706,narrated,1303414818 +91171,27706,orphans,1303414820 +91171,27706,quirky,1303414822 +91171,27706,sad but much good,1303414824 +91171,27706,siblings,1303414829 +91171,27706,stylized,1303414831 +91171,30793,adaptation,1303420558 +91171,30793,adapted from:book,1303420560 +91171,30793,author:Roald Dahl,1303420561 +91171,30793,based on a book,1303420564 +91171,30793,based on book,1303420566 +91171,30793,children,1303420568 +91171,30793,dark,1303420569 +91171,30793,family bonds,1303420657 +91171,30793,fantasy,1303420658 +91171,30793,father-son relationship,1303420660 +91171,30793,greed,1303420665 +91171,30793,Helena Bonham Carter,1303420675 +91171,30793,Johnny Depp,1303420669 +91171,30793,loneliness,1303420676 +91171,30793,mother daughter relationship,1303420681 +91171,30793,quirky,1303420683 +91171,30793,remake,1303420688 +91171,30793,roald dahl,1303420690 +91171,30793,silly fun,1303420692 +91171,30793,Tim Burton,1303420693 +91171,31658,adventure,1303396745 +91171,31658,animation,1303396752 +91171,31658,anime,1303396753 +91171,31658,anti-war,1303396755 +91171,31658,based on a book,1303396757 +91171,31658,based on book,1303396758 +91171,31658,dreamlike,1303396761 +91171,31658,fantasy,1303396762 +91171,31658,fantasy world,1303396763 +91171,31658,Hayao Miyazaki,1303396764 +91171,31658,Holocaust,1303396772 +91171,31658,Japan,1303396777 +91171,31658,magic,1303396779 +91171,31658,romance,1303396782 +91171,31658,steampunk,1303396783 +91171,31658,Studio Ghibli,1303396785 +91171,31658,stylized,1303396788 +91171,31658,war,1303396794 +91171,31658,wizards,1303396797 +91171,32587,Action,1303169503 +91171,32587,atmospheric,1303169510 +91171,32587,based on comic,1303169513 +91171,32587,black comedy,1303169517 +91171,32587,Bruce Willis,1303169521 +91171,32587,classic,1303169524 +91171,32587,comic book,1303169528 +91171,32587,corruption,1303169532 +91171,32587,Crime,1303169537 +91171,32587,imdb top 250,1303169563 +91171,32587,multiple storylines,1303169567 +91171,32587,police,1303169571 +91171,32587,Quentin Tarantino,1303169576 +91171,32587,revenge,1303169581 +91171,32587,Sci-Fi,1303169585 +91171,32587,superhero,1303169591 +91171,32587,surreal,1303169594 +91171,32587,surrealism,1303169598 +91171,32587,violence,1303169601 +91171,34150,Action,1303169827 +91171,34150,adapted from:comic,1303169832 +91171,34150,Adventure,1303169838 +91171,34150,Better than expected,1303169842 +91171,34150,comic book,1303169845 +91171,34150,fairy tale,1303169849 +91171,34150,good action,1303169853 +91171,34150,heroine in tight suit,1303169857 +91171,34150,idiotic,1303169881 +91171,34150,invisibility,1303169874 +91171,34150,Jessica Alba,1303169885 +91171,34150,Marvel,1303169890 +91171,34150,mask,1303169896 +91171,34150,movie to see,1303169902 +91171,34150,radiation,1303169904 +91171,34150,Special Effects,1303169908 +91171,34150,super-hero,1303169914 +91171,34150,superhero,1303169917 +91171,34150,too short,1303169922 +91171,37729,06 Oscar Nominated Best Movie - Animation,1303419230 +91171,37729,19th century,1303419231 +91171,37729,animation,1303419258 +91171,37729,black comedy,1303419261 +91171,37729,claymation,1303419262 +91171,37729,comedy,1303419266 +91171,37729,Danny Elfman score,1303419268 +91171,37729,dark,1303419270 +91171,37729,Depp & Burton,1303419271 +91171,37729,destiny,1303419277 +91171,37729,gothic,1303419279 +91171,37729,Helena Bonham Carter,1303419280 +91171,37729,Johnny Depp,1303419282 +91171,37729,living dead,1303419284 +91171,37729,music,1303419289 +91171,37729,Saturn Award (Best Animated Film),1303419291 +91171,37729,spiders,1303419292 +91171,37729,stop-motion,1303419293 +91171,37729,Tim Burton,1303419294 +91171,37729,wedding,1303419300 +91171,45447,adapted from:book,1303261475 +91171,45447,adventure,1303261476 +91171,45447,Audrey Tautou,1303261481 +91171,45447,based on a book,1303261482 +91171,45447,book is better,1303261483 +91171,45447,christianity,1303261489 +91171,45447,conspiracy theory,1303261491 +91171,45447,controversial,1303261495 +91171,45447,Dance,1303261500 +91171,45447,fast paced,1303261502 +91171,45447,gnosticism,1303261507 +91171,45447,Jean Reno,1303261509 +91171,45447,literature,1303261511 +91171,45447,London,1303261520 +91171,45447,Mystery,1303261524 +91171,45447,original plot,1303261529 +91171,45447,Paris,1303261531 +91171,45447,propaganda,1303261535 +91171,45447,religion,1303261536 +91171,45447,Tom Hanks,1303261537 +91171,45672,Adam Sandler,1303412578 +91171,45672,architecture,1303412580 +91171,45672,Be satisfied with your life little man,1303412585 +91171,45672,cheesy,1303412642 +91171,45672,Christopher Walken,1303412597 +91171,45672,classic,1303412598 +91171,45672,comedy,1303412600 +91171,45672,family,1303412601 +91171,45672,family bonds,1303412603 +91171,45672,Kate Beckinsale,1303412605 +91171,45672,New York City,1303412609 +91171,45672,nonsensical,1303412610 +91171,45672,obvious,1303412612 +91171,45672,Oscar Nom 2007,1303412615 +91171,45672,regrets,1303412617 +91171,45672,remote control,1303412618 +91171,45672,Sean Astin,1303412622 +91171,45672,second chance,1303412623 +91171,45672,slapstick,1303412627 +91171,45672,surprisingly good,1303412629 +91171,45722,action,1303420450 +91171,45722,Adventure,1303420451 +91171,45722,anti-hero,1303420452 +91171,45722,big budget,1303420456 +91171,45722,Comedy,1303420460 +91171,45722,funny,1303420462 +91171,45722,ghosts/afterlife,1303420463 +91171,45722,Johnny Depp,1303420465 +91171,45722,Keira Knightley,1303420467 +91171,45722,Orlando Bloom,1303420469 +91171,45722,pirates,1303420473 +91171,45722,romantic,1303420479 +91171,45722,seafaring,1303420479 +91171,45722,seen more than once,1303420480 +91171,45722,sequel,1303420484 +91171,45722,sequels filmed simultaneously,1303420486 +91171,45722,swashbuckler,1303420488 +91171,45722,sword fight,1303420490 +91171,45722,thriller,1303420493 +91171,45722,treasure,1303420494 +91171,53125,adventure,1303419892 +91171,53125,adventure. boats,1303419893 +91171,53125,anti-hero,1303419897 +91171,53125,Bill Nighy,1303419995 +91171,53125,BORING!,1303419999 +91171,53125,comedy,1303420002 +91171,53125,confusing,1303420006 +91171,53125,ghosts/afterlife,1303420088 +91171,53125,Johnny Depp,1303420091 +91171,53125,Keira Knightley,1303420092 +91171,53125,Orlando Bloom,1303420095 +91171,53125,over the top,1303420212 +91171,53125,quirky,1303420213 +91171,53125,seafaring,1303420217 +91171,53125,seen at the cinema,1303420218 +91171,53125,sequel,1303420221 +91171,53125,sequels filmed simultaneously,1303420223 +91171,53125,swashbuckler,1303420222 +91171,53125,watch the credits,1303420321 +91171,53519,car chase,1303259397 +91171,53519,cars,1303259402 +91171,53519,classic car,1303259403 +91171,53519,dialogue,1303259406 +91171,53519,disappointing,1303259409 +91171,53519,great dialogue,1303259423 +91171,53519,great soundtrack,1303259427 +91171,53519,grindhouse,1303259428 +91171,53519,Kick-Butt Women,1303259431 +91171,53519,Kurt Russell,1303259434 +91171,53519,Mary Elizabeth Winstead,1303259436 +91171,53519,overrated,1303259440 +91171,53519,Quentin Tarantino,1303259444 +91171,53519,slow,1303259448 +91171,53519,slow paced,1303259449 +91171,53519,stylish,1303259454 +91171,53519,stylized,1303259459 +91171,53519,Tarantino,1303259460 +91171,53519,testosterone,1303259465 +91171,56757,Depp & Burton,1303422043 +91171,56757,easily confused with other movie(s) (title),1303422044 +91171,56757,England,1303422047 +91171,56757,Family,1303422048 +91171,56757,gothic,1303422051 +91171,56757,great cinematography,1303422051 +91171,56757,Johnny Depp,1303422054 +91171,56757,murder,1303422053 +91171,56757,serial killer,1303422066 +91171,56757,Tim Burton,1303422063 +91171,56757,visually appealing,1303422064 +91171,59900,Below R,1303412913 +91171,59900,Dennis Dugan,1303412912 +91171,59900,dvd,1303412915 +91171,59900,exaggerated,1303412917 +91171,59900,florence,1303412921 +91171,59900,Israeli/Palestinian conflict,1303412920 +91171,59900,movie to see,1303412924 +91171,59900,over the top,1303412928 +91171,59900,owned,1303412930 +91171,59900,redbox,1303412932 +91171,59900,tasteless,1303412934 +91171,60816,adapted from:book,1303259135 +91171,60816,author:Terry Pratchett,1303259136 +91171,60816,based on a book,1303259137 +91171,60816,discworld,1303259138 +91171,60816,Jeremy Irons,1303259145 +91171,60816,made for TV,1303259148 +91171,60816,magic,1303259150 +91171,60816,nerdy,1303259151 +91171,60816,netflix,1303259155 +91171,60816,Terry Pratchett,1303259156 +91171,60816,Tim Curry,1303259159 +91171,60816,To See,1303259162 +91171,60816,tourism,1303259166 +91171,64969,Bradley Cooper,1303415355 +91171,64969,cliche,1303415355 +91171,64969,disambiguation: Yes Man/Men,1303415358 +91171,64969,easily confused with other movie(s) (title),1303415360 +91171,64969,feel-good,1303415363 +91171,64969,few funny scenes,1303415365 +91171,64969,funny,1303415366 +91171,64969,Insulting to Persians,1303415368 +91171,64969,Jim carrey,1303415370 +91171,64969,Motivation,1303415372 +91171,64969,motorcycle,1303415372 +91171,64969,optimism,1303415375 +91171,64969,positive thinking,1303415376 +91171,64969,predictable,1303415380 +91171,64969,rebellion,1303415382 +91171,64969,rock band,1303415384 +91171,64969,romantic comedy,1303415385 +91171,64969,self-esteem,1303415390 +91171,64969,workplace,1303415392 +91171,64969,Zooey Deschanel,1303415394 +91171,69951,alternate reality,1303258772 +91171,69951,atmpspheric,1303258779 +91171,69951,cgi,1303258782 +91171,69951,Colin Farrell,1303258789 +91171,69951,deal with the devil,1303258800 +91171,69951,devil,1303258800 +91171,69951,dwarf,1303258802 +91171,69951,fantasy,1303258804 +91171,69951,hanging,1303258806 +91171,69951,Heath Ledger,1303258807 +91171,69951,imagination,1303258808 +91171,69951,imaginative,1303258809 +91171,69951,immortality,1303258811 +91171,69951,Johnny Depp,1303258813 +91171,69951,Jude Law,1303258814 +91171,69951,Lily Cole,1303258868 +91171,69951,stage show,1303258869 +91171,69951,surreal,1303258875 +91171,69951,terry gilliam,1303258876 +91171,69951,tom waits,1303258878 +91207,653,Rob Cohen,1137654769 +91207,2700,MtV Feature,1137654781 +91207,2762,sexy,1137654754 +91210,2268,Tom Cruise,1153786834 +91210,5577,Claire Danes,1153842144 +91210,5577,Kieran Culkin,1153842126 +91210,7377,Jena Malone,1153808401 +91210,7377,Kevin Spacey,1153808411 +91210,7377,Ryan Gosling,1153808392 +91213,318,big page,1338796279 +91213,318,old page,1338796289 +91227,53996,robots,1213595034 +91339,1035,Austria,1431067291 +91339,1035,classic,1431067300 +91339,1035,Nazis,1431067297 +91339,1035,World War II,1431067299 +91339,1073,Good story,1431067131 +91339,1193,classic,1431067188 +91339,1193,powerful ending,1431067192 +91339,1203,Choices people make in critical situations,1431066856 +91339,1203,Roles people play in real situations,1431066825 +91339,1265,insightful,1431066940 +91339,1265,philosophical,1431066926 +91339,1387,Action photography,1431066890 +91364,904,Alfred Hitchcock,1417685814 +91364,904,mystery,1417685833 +91364,904,suspense,1417685823 +91373,1230,intellectual,1390281844 +91373,1230,relationships,1390281833 +91373,1230,thought-provoking,1390281829 +91373,3295,neorealism,1431891901 +91373,3295,workers,1431891888 +91373,25994,communism,1390182999 +91373,25994,labour class,1420747001 +91373,25994,political propaganda,1420747001 +91373,46561,documentary,1421439563 +91373,46561,music,1421439563 +91373,46561,u2 song,1421439563 +91373,64278,documentary,1425592542 +91373,64278,ideology,1425592542 +91373,64278,lacan,1425592542 +91398,19,detective,1367462906 +91398,39,teen movie,1367462803 +91398,50,Kevin Spacey,1250290708 +91398,50,twist ending,1250290717 +91398,111,lengthy,1250291535 +91398,111,Robert De Niro,1250291518 +91398,293,hitman,1250292092 +91398,293,Natalie Portman,1250292090 +91398,318,based on a book,1250291871 +91398,318,justice,1250291893 +91398,318,prison,1250291902 +91398,364,cartoon,1250292164 +91398,541,based on a book,1250291432 +91398,541,dystopia,1250291423 +91398,616,cartoon,1250292636 +91398,616,Paris,1250292649 +91398,778,addiction,1250292766 +91398,778,based on a book,1250292768 +91398,778,British,1250292773 +91398,778,Ewan McGregor,1250292778 +91398,858,based on a book,1250291592 +91398,858,catchy theme,1250291583 +91398,858,organized crime,1250291596 +91398,950,detective,1367462906 +91398,986,Anna Paquin,1250292307 +91398,1088,dancing,1367462869 +91398,1136,British,1250291951 +91398,1136,excellent dialogue,1250291981 +91398,1148,claymation,1250292719 +91398,1208,lengthy,1250291474 +91398,1208,vietnam war,1250291506 +91398,1213,organized crime,1250291610 +91398,1527,Bruce Willis,1250292353 +91398,1527,Milla Jovovich,1250292355 +91398,1527,parody,1250292379 +91398,1617,neo-noir,1367462855 +91398,1968,teen movie,1367462803 +91398,2144,teen movie,1367462803 +91398,2145,teen movie,1367462803 +91398,2420,mentor,1367462687 +91398,2716,supernatural,1367462723 +91398,2959,Brad Pitt,1250292332 +91398,2959,Edward Norton,1250292336 +91398,4161,flashback,1250292037 +91398,4161,obsession over one object,1250292069 +91398,4720,supernatural,1367462723 +91398,4878,original,1367462625 +91398,6214,brutality,1367462840 +91398,6773,cartoon,1250291691 +91398,6773,no dialogue,1250291708 +91398,6953,Naomi Watts,1250292663 +91398,7346,Elisha Cuthbert,1250292278 +91398,7346,Emile Hirsch,1250292281 +91398,7346,high school,1250292285 +91398,7346,pornography,1250292296 +91398,8529,broken English,1250292836 +91398,8529,Tom Hanks,1250292839 +91398,30707,disability,1250291999 +91398,30793,based on a book,1250292510 +91398,30793,Johnny Depp,1250292504 +91398,30793,loneliness,1250292576 +91398,32587,based on a comic,1250292868 +91398,32587,Bruce Willis,1250292873 +91398,36535,broken English,1250292470 +91398,36535,scenery,1250292395 +91398,44191,based on a book,1250290767 +91398,44191,dystopia,1250290678 +91398,44191,England,1250291773 +91398,44191,famous quote,1250291791 +91398,44195,based on a book,1250292791 +91398,44195,narrated,1250292805 +91398,44195,public relations,1250292810 +91398,44555,East Germany,1250292119 +91398,44555,stasi,1250292132 +91398,44555,surveillance,1250292137 +91398,44761,neo noir,1250292605 +91398,46976,narrated,1250291823 +91398,48150,Agnes Bruckner,1250291294 +91398,48150,little dialogue,1250291742 +91398,50601,AnnaSophia Robb,1250290221 +91398,50601,based on a book,1250290230 +91398,52283,AnnaSophia Robb,1250546391 +91398,52283,based on a book,1250546360 +91398,52283,Hilary Swank,1250546376 +91398,52283,twist ending,1250546367 +91398,53996,based on a comic,1250292742 +91398,53996,transformation,1250292734 +91398,54259,based on a book,1250291856 +91398,54259,fairy tale,1250291850 +91398,56367,Ellen Page,1250292227 +91398,56367,excellent dialogue,1250292222 +91398,56367,pregnancy,1250292236 +91398,56620,rushed,1250291403 +91398,56671,Jena Malone,1250291248 +91398,56671,Zooey Deschanel,1250291250 +91398,59594,dystopia,1250292694 +91398,59594,Hilary Duff,1250292704 +91398,59594,John Cusack,1250292700 +91398,60069,Animation,1250290600 +91398,60069,dystopia,1250290590 +91398,60069,mac startup sound,1250290549 +91398,60069,platonic love,1250290549 +91398,60074,alcoholic,1250292251 +91398,60074,public relations,1250292258 +91398,60074,superhero,1250292253 +91398,65868,cosmetic surgery,1282479132 +91398,65868,evil corporation,1282479219 +91398,65868,goth,1282479257 +91398,65868,white lie,1282479154 +91398,65882,Emily Browning,1250024193 +91398,65882,Twist Ending,1250024107 +91398,75985,biomedical ethics,1282478975 +91398,75985,debt collection,1282478986 +91398,75985,evil corporation,1282479194 +91398,75985,Forest Whitaker,1282479086 +91398,75985,gore,1282479046 +91398,75985,Jude Law,1282478960 +91398,75985,leitmotiv,1282479038 +91398,75985,loyalty,1282479015 +91398,75985,surgery,1282479102 +91408,32,complicated plot,1368641960 +91408,44,fighting,1368643337 +91408,50,excellent script,1368641718 +91408,110,revolution,1368643391 +91408,112,fight scenes,1368641862 +91408,165,lone hero,1368641939 +91408,196,first contact,1368641909 +91408,272,revolution,1368643391 +91408,316,first contact,1368641909 +91408,541,man versus machine,1368645478 +91408,589,man versus machine,1368645478 +91408,592,dark hero,1368641780 +91408,593,excellent script,1368641718 +91408,653,mythology,1368641833 +91408,1183,cinematography,1368643443 +91408,1204,amazing cinematography,1368643319 +91408,1204,stunning,1368643373 +91408,1240,man versus machine,1368645478 +91408,1248,noir thriller,1368641667 +91408,1356,cyborgs,1368645401 +91408,1527,visually appealing,1368643278 +91408,1608,lone hero,1368641939 +91408,1704,excellent script,1368641718 +91408,1748,visually stunning,1368641817 +91408,1783,noir thriller,1368641667 +91408,1921,black and white,1438888467 +91408,1921,music,1438888477 +91408,1954,fighting,1368643337 +91408,1960,revolution,1368643391 +91408,2404,fighting,1368643337 +91408,2410,fighting,1368643337 +91408,2542,stylish,1368641763 +91408,2571,man versus machine,1368645479 +91408,2571,visually stunning,1368641817 +91408,2858,excellent script,1368641718 +91408,2924,martial arts,1437322605 +91408,3624,fight scenes,1368641862 +91408,3682,Clint Eastwood,1437322346 +91408,3702,lone hero,1368641939 +91408,3703,lone hero,1368641939 +91408,3863,stunning,1368643373 +91408,3985,World War II,1437322694 +91408,3996,cinematography,1368643443 +91408,3996,fight scenes,1368641862 +91408,3996,stunning,1368643373 +91408,3996,visually stunning,1368641817 +91408,4344,twist that wasn't,1368844570 +91408,4344,unreaslistic,1368844570 +91408,4855,Clint Eastwood,1437322244 +91408,4855,justice,1437322270 +91408,4855,visceral,1437322237 +91408,4945,Clint Eastwood,1437322308 +91408,4973,excellent!,1215184630 +91408,5796,corny,1439069700 +91408,5796,james bond,1439069691 +91408,5796,Peter Sellers,1439069739 +91408,6365,fight scenes,1368641862 +91408,6365,man versus machine,1368645479 +91408,6874,dark hero,1368641780 +91408,6934,man versus machine,1368645479 +91408,7013,noir thriller,1368641667 +91408,8132,fighting,1368643337 +91408,8983,stunning,1368643373 +91408,33794,vigilantism,1368645462 +91408,42634,Polish movie,1353115956 +91408,82461,cinematography,1353119955 +91408,82461,overreaching,1353119955 +91408,82461,Special Effects,1353119955 +91408,82461,visually appealing,1353119955 +91408,91529,bad acting,1368844204 +91408,91529,bad morals,1368844204 +91408,91529,cinematography,1368844204 +91408,91529,poor plot,1368844204 +91408,91529,predictable,1368844204 +91408,91529,pretentious,1368844204 +91408,91529,production,1368844204 +91408,96610,boring,1368844827 +91408,96610,predictable,1368844827 +91408,96612,likeness to real life,1368843368 +91408,96612,quality,1368843368 +91408,96612,unfortunate similarity to real life,1368843368 +91408,96811,believable action,1368843908 +91408,96811,brutally honest,1368843908 +91408,96811,excellent acting,1368843908 +91408,96811,poignant,1368843908 +91408,96811,realistic action,1368843908 +91408,97923,cliche contrition,1368843563 +91408,97923,great acting,1368843563 +91408,99787,overly vulgar,1368847631 +91408,99787,some funny parts,1368847627 +91432,29,dark,1368252421 +91432,111,dark,1368252421 +91432,913,black and white,1368252280 +91432,922,black and white,1368252280 +91432,1175,dark,1368252421 +91432,1248,black and white,1368252280 +91432,1287,christianity,1368252355 +91432,1302,father-son relationship,1368252497 +91432,1357,father-son relationship,1368252497 +91432,1945,black and white,1368252280 +91432,2024,christianity,1368252355 +91432,3273,franchise,1368252513 +91432,3435,black and white,1368252280 +91432,3440,franchise,1368252512 +91432,3566,christianity,1368252355 +91432,3683,dark,1368252421 +91432,4865,dark,1368252421 +91432,6537,franchise,1368252512 +91432,7118,alternate world,1292399823 +91432,7118,space program,1292399834 +91432,53121,franchise,1368252513 +91432,63113,franchise,1368252512 +91432,78499,animation,1292397998 +91432,78499,interrogation,1292397996 +91432,78499,torture,1292397996 +91432,78499,violence,1292397996 +91432,78499,visually appealing,1292397992 +91432,102407,stylized,1445028942 +91469,1175,music,1324543117 +91469,1175,surreal,1324543117 +91469,4973,feel-good,1324543278 +91469,4973,music,1324543269 +91469,4973,notable soundtrack,1324543263 +91469,4973,quirky,1324543286 +91469,4973,stylized,1324543292 +91469,4973,surreal,1324543258 +91469,48043,artistic,1324543003 +91469,48043,atmospheric,1324543006 +91469,48043,Music,1324542992 +91469,48043,surreal,1324542976 +91469,48043,visually appealing,1324542987 +91469,77854,NOT A MOVIE,1293611273 +91469,81591,music,1324543184 +91469,81591,soundtrack,1301491430 +91469,81591,surreal,1324543239 +91488,26732,clever,1426540241 +91488,26732,comedy,1426540241 +91488,26732,roberto benigni,1426540241 +91489,3555,submarine,1449253054 +91489,80463,computers,1449253275 +91489,80463,funny,1449253311 +91489,80463,hacking,1449253279 +91489,80463,internet,1449253305 +91489,80463,protagonist is a computer programmer,1449253302 +91489,80463,social network,1449253291 +91489,80463,software developers,1449253285 +91489,80463,witty,1449253321 +91492,260,futuristic,1433818931 +91492,260,Science Fiction,1433818923 +91531,318,imdb top 250,1453226806 +91531,318,Morgan Freeman,1453226797 +91531,356,comedy,1453225859 +91531,356,Funny,1453225867 +91531,356,inspirational,1453225868 +91531,356,tom hanks,1453225877 +91531,778,black comedy,1453226255 +91531,778,dark comedy,1453226263 +91531,2291,Johnny Depp,1453226900 +91531,2916,cyberpunk,1453227101 +91531,2916,dystopia,1453227097 +91531,5903,dystopia,1453227048 +91531,5903,post-apocalyptic,1453227055 +91531,5903,totalitarianism,1453227053 +91531,5954,Edward Norton,1453226285 +91531,5954,powerful ending,1453226290 +91531,90439,big corporations,1453226708 +91531,90439,business,1453226690 +91531,90439,Cynicism,1453226702 +91531,90439,Kevin Spacey,1453226696 +91531,90439,Wall Street,1453226699 +91569,260,Great action,1442952795 +91569,260,"The Force, Overcoming your fears",1442952779 +91583,2183,remake,1302975574 +91583,4496,remake,1302974632 +91583,71416,lindy hop,1371332709 +91583,71416,swing dancing,1371332719 +91583,79525,trains,1302988583 +91583,82463,loneliness,1320956316 +91583,105835,kafkaesque,1449934781 +91583,109374,visually appealing,1415228463 +91583,121169,cinematography,1449594088 +91584,7099,Miyazaki,1156792073 +91590,2931,magical realism,1431414414 +91611,296,bloody,1425246075 +91611,1203,Motivational,1425246007 +91611,106782,Oscar,1425246195 +91611,116797,boring,1425246134 +91611,116797,homophobic,1425246134 +91611,116797,inaccurate,1425246134 +91612,10,Bond,1137208942 +91612,19,detective,1368655193 +91612,22,detective,1368655193 +91612,22,suspenseful,1368655116 +91612,25,melancholic,1368655003 +91612,32,great ending,1368655163 +91612,32,original,1368654993 +91612,39,teen movie,1368655104 +91612,46,women,1368655086 +91612,47,great ending,1368655163 +91612,50,excellent script,1368655057 +91612,111,masterpiece,1368655035 +91612,218,unlikely friendships,1368655184 +91612,218,women,1368655086 +91612,288,brutality,1368655130 +91612,296,masterpiece,1368655035 +91612,296,violent,1420062297 +91612,296,visceral,1420062297 +91612,296,witty,1420062297 +91612,318,great ending,1368655163 +91612,356,mawkish,1421616701 +91612,356,nostalgia,1421616701 +91612,356,oscar (best picture),1421616701 +91612,521,noir thriller,1368655014 +91612,541,Best Movies Ever,1164823441 +91612,549,musicians,1368655095 +91612,587,supernatural,1368655044 +91612,593,excellent script,1368655057 +91612,724,teen movie,1368655104 +91612,735,splatter,1368655077 +91612,799,supernatural,1368655044 +91612,866,neo-noir,1368655139 +91612,866,stylish,1368655069 +91612,898,screwball comedy,1368655203 +91612,904,suspenseful,1368655116 +91612,905,screwball comedy,1368655203 +91612,910,screwball comedy,1368655203 +91612,913,noir thriller,1368655014 +91612,923,masterpiece,1368655035 +91612,924,masterpiece,1368655035 +91612,950,screwball comedy,1368655203 +91612,1033,unlikely friendships,1368655184 +91612,1088,dancing,1368655149 +91612,1172,mentor,1368655025 +91612,1179,neo-noir,1368655139 +91612,1188,dancing,1368655148 +91612,1209,Best Movies Ever,1164823489 +91612,1213,masterpiece,1368655035 +91612,1213,stylish,1368655068 +91612,1219,suspenseful,1368655116 +91612,1241,splatter,1368655077 +91612,1245,neo-noir,1368655139 +91612,1248,noir thriller,1368655014 +91612,1249,stylish,1368655068 +91612,1258,masterpiece,1368655035 +91612,1259,unlikely friendships,1368655184 +91612,1264,stylish,1368655068 +91612,1271,unlikely friendships,1368655184 +91612,1275,mentor,1368655025 +91612,1285,teen movie,1368655104 +91612,1307,unlikely friendships,1368655184 +91612,1387,suspenseful,1368655116 +91612,1466,mentor,1368655025 +91612,1537,dancing,1368655149 +91612,1617,detective,1368655194 +91612,1617,neo-noir,1368655138 +91612,1620,detective,1368655193 +91612,1678,women,1368655086 +91612,1704,excellent script,1368655057 +91612,1704,mentor,1368655025 +91612,1719,melancholic,1368655003 +91612,1754,supernatural,1368655044 +91612,1783,noir thriller,1368655014 +91612,1784,excellent script,1368655057 +91612,1968,teen movie,1368655104 +91612,2076,neo-noir,1368655139 +91612,2144,teen movie,1368655105 +91612,2194,excellent script,1368655057 +91612,2291,original,1368654993 +91612,2295,Best Movies Ever,1164823420 +91612,2352,unlikely friendships,1368655184 +91612,2376,Bond,1137208983 +91612,2420,mentor,1368655025 +91612,2542,stylish,1368655068 +91612,2726,noir thriller,1368655014 +91612,2762,great ending,1368655163 +91612,2841,supernatural,1368655044 +91612,2858,excellent script,1368655057 +91612,2859,musicians,1368655095 +91612,2863,musicians,1368655095 +91612,2866,musicians,1368655095 +91612,2912,stylish,1368655068 +91612,2915,teen movie,1368655104 +91612,2947,Bond,1137209016 +91612,2948,Bond,1137208999 +91612,2949,Bond,1137208953 +91612,2987,Best Movies Ever,1164823395 +91612,2989,Bond,1137208975 +91612,2990,Bond,1137208979 +91612,2993,Bond,1137209025 +91612,3005,detective,1368655194 +91612,3060,Best Movies Ever,1164823466 +91612,3083,women,1368655086 +91612,3129,musicians,1368655095 +91612,3418,women,1368655086 +91612,3499,suspenseful,1368655116 +91612,3791,dancing,1368655149 +91612,4005,Bond,1137208973 +91612,4018,women,1368655086 +91612,4020,supernatural,1368655044 +91612,4054,dancing,1368655148 +91612,4085,detective,1368655193 +91612,4878,original,1368654993 +91612,5065,supernatural,1368655044 +91612,5266,suspenseful,1368655116 +91612,5693,dancing,1368655149 +91612,6707,splatter,1368655077 +91612,6731,splatter,1368655077 +91612,7013,noir thriller,1368655014 +91612,7569,Bond,1137209019 +91612,7570,Bond,1137208963 +91612,32587,brutality,1368655130 +91612,33834,splatter,1368655077 +91612,34437,melancholic,1368655003 +91612,37733,brutality,1368655130 +91612,42723,splatter,1368655077 +91612,48304,brutality,1368655130 +91612,53123,musicians,1368655095 +91612,91500,based on a book,1332694648 +91612,91500,thriller,1332694650 +91636,260,classic,1441506513 +91636,260,fantasy,1441506533 +91636,260,space opera,1441506510 +91636,260,timeless,1441506526 +91645,104,Adam Sandler,1389683766 +91645,111,loneliness,1388718663 +91645,632,George Orwell,1388719054 +91645,632,socialism,1388719008 +91645,632,Spanish Civil War,1388719054 +91645,904,Grace Kelly,1388806968 +91645,928,Joan Fontaine,1388718690 +91645,933,Grace Kelly,1388727326 +91645,942,Gene Tierney,1388807242 +91645,1086,Grace Kelly,1388718758 +91645,1188,satire,1388721112 +91645,1189,Errol Morris,1388806678 +91645,1232,Roadside Picnic,1388726340 +91645,1366,Arthur Miller,1388722902 +91645,1748,Alex Proyas,1388719222 +91645,2176,long takes,1388726897 +91645,2335,Adam Sandler,1389683706 +91645,2729,vladimir nabokov,1388806115 +91645,3036,no dialogue,1388807035 +91645,3075,final image,1390195639 +91645,3741,crime spree,1388726656 +91645,4902,Spanish Civil War,1388720256 +91645,5475,Costa-Gavras,1389694573 +91645,5475,Criterion,1389694580 +91645,5475,Yves Montand,1389694560 +91645,5619,Christopher Hitchens,1388719381 +91645,5881,remake,1388489131 +91645,5965,Napoleonic wars,1388725270 +91645,6023,Anna Karina,1388725446 +91645,6123,Chris Marker,1388724883 +91645,6301,Sam Peckinpah,1388726121 +91645,6301,Susan George,1388806725 +91645,7293,Adam Sandler,1388727566 +91645,8477,Chris Marker,1390195822 +91645,8477,still photography,1388725716 +91645,36517,cinematography,1388808068 +91645,36517,John le Carre,1388808037 +91645,40732,claustrophobic,1388720286 +91645,42351,nuclear fallout,1388806647 +91645,42351,realism,1388806648 +91645,43460,Laurence Sterne,1388806567 +91645,44295,Australia,1388724441 +91645,44295,Billy Connolly,1388724441 +91645,46855,French Resistance,1388720682 +91645,48385,unfunny,1389683981 +91645,48394,Guillermo del Toro,1388718713 +91645,48394,Spanish Civil War,1388807805 +91645,48774,long takes,1388805902 +91645,52929,Andrea Arnold,1388821587 +91645,52929,surveillance,1388821617 +91645,54229,Raymond Briggs,1388724476 +91645,54259,Neil Gaiman,1388727234 +91645,54354,documentary,1388722970 +91645,54354,manufacturing,1388722990 +91645,55067,based on a true story,1389746267 +91645,55067,courtroom,1389746241 +91645,55067,exorcism,1388718841 +91645,55069,Realism,1388719301 +91645,55444,Ian Curtis,1388725914 +91645,55444,joy division,1388725914 +91645,55444,post-punk soundtrack,1388725937 +91645,55820,Cormac McCarthy,1388807065 +91645,56782,P T Anderson,1388718638 +91645,58297,Scotland,1389684397 +91645,63072,Cormac McCarthy,1388806928 +91645,63072,father-son relationship,1388806949 +91645,64197,Bobby Sands,1388807400 +91645,64197,long takes,1388807422 +91645,68347,immigration,1388721253 +91645,69088,nuclear fallout,1388806509 +91645,69088,nuclear war,1388724513 +91645,69088,realism,1388806493 +91645,71108,nazism,1389683143 +91645,74416,Andrea Arnold,1388725097 +91645,80094,Ashley Bell,1388724770 +91645,80969,based on a book,1389682984 +91645,80969,kazuo ishiguro,1389682935 +91645,80969,mortality,1389683077 +91645,80969,Organ donor,1389683018 +91645,84189,remake,1389683734 +91645,85056,based on a book,1389684323 +91645,86190,Saoirse Ronan,1389683343 +91645,89039,Brit Marling,1389682849 +91645,89039,redemption,1389682851 +91645,89745,overrated,1388727097 +91645,90357,Olivia Coleman,1388724619 +91645,91571,updated Shakespeare,1388724644 +91645,91888,animation,1388724410 +91645,94018,militaristic,1389683901 +91645,94466,Charlie Brooker,1388808280 +91645,94466,satire,1388808280 +91645,95875,remake,1388725496 +91645,96911,Alicia Vikander,1388489211 +91645,96911,Danish,1389682495 +91645,96911,Denmark,1389682528 +91645,96911,epilogue,1389682600 +91645,96911,execution,1389682545 +91645,96911,Mads Mikkelsen,1389682457 +91645,97946,Ashley Bell,1388724319 +91645,97946,cannibalism,1388724360 +91645,103203,Jamie Chung,1388807628 +91645,103203,modern slavery,1388720153 +91645,103203,sex trafficking,1388807575 +91645,104760,plot holes,1389683615 +91645,106369,facebook,1389684247 +91645,106369,revenge,1389684247 +91645,106369,Scarlett Alice Johnson,1389684202 +91645,106369,technology,1389684247 +91645,108014,19th century,1389684666 +91645,108014,colonial power,1389684684 +91645,108014,colonialism,1389684684 +91645,108014,Maori,1389684633 +91645,108014,maori wars,1389684647 +91645,108014,New Zealand,1389684654 +91645,108016,alternative history,1389684895 +91645,108016,alternative reality,1389684905 +91645,108016,based on a book,1389684944 +91645,108016,wales,1389684936 +91645,108016,World War II,1389684895 +91650,296,meaning of life,1431899950 +91650,296,nonlinear narrative,1431899950 +91650,296,violence,1431899950 +91650,7361,bittersweet,1418353703 +91650,7361,jim carrey,1418353693 +91650,7361,memory,1418353669 +91650,7361,romance,1418353654 +91650,7361,sci-fi,1418353679 +91650,7361,surreal,1418353641 +91650,7361,thought-provoking,1418353648 +91694,256,Nice effects,1343130911 +91694,3255,myball,1343821679 +91698,296,Quentin Tarantino,1253471935 +91709,78499,Love,1437787209 +91709,79132,Fresh,1437788288 +91709,135887,Cute,1437788074 +91758,1653,dystopia,1440839720 +91758,1653,dystopic future,1440839730 +91758,1653,genetic engineering,1440839718 +91758,1653,intelligent,1440839739 +91758,1653,Jude Law,1440839736 +91758,1653,powerful ending,1440839725 +91758,1653,realistic sci/fi,1440839733 +91758,1653,science fiction,1440839728 +91758,1653,space travel,1440839754 +91758,1653,thought-provoking,1440839723 +91758,1653,visually appealing,1440839715 +91758,73321,action,1440839383 +91758,73321,beautiful scenery,1440839373 +91758,73321,Bible,1440839359 +91758,73321,Christianity,1440839365 +91758,73321,dystopia,1440839355 +91758,73321,dystopic future,1440839392 +91758,73321,faith,1440839376 +91758,73321,fight scenes,1440839370 +91758,73321,future,1440839368 +91758,73321,gary oldman,1440839380 +91758,73321,post-apocalyptic,1440839362 +91758,73321,religious propaganda,1440839386 +91758,73321,Stylistic,1440839390 +91758,96737,based on a comic,1440839455 +91758,96737,gore,1440839466 +91758,96737,Karl Urban,1440839467 +91758,96737,police corruption,1440839475 +91758,96737,sci-fi,1440839470 +91758,101864,atmospheric,1440839558 +91758,101864,cloning,1440839556 +91758,101864,dystopia,1440839535 +91758,101864,interesting concept,1440839565 +91758,101864,post-apocalyptic,1440839539 +91758,101864,sci-fi,1440839537 +91758,111759,aliens,1440839273 +91758,111759,based on a novel,1440839284 +91758,111759,future,1440839275 +91758,111759,original plot,1440839271 +91758,111759,Reluctant Hero,1440839269 +91758,111759,sci-fi,1440839262 +91758,111759,time loop,1440839260 +91758,111759,time travel,1440839279 +91758,115713,AI,1440839124 +91758,115713,artificial intelligence,1440839103 +91758,115713,Future,1440839127 +91758,115713,futuristic,1440839140 +91758,115713,isolation,1440839130 +91758,115713,nudity (full frontal),1440839120 +91758,115713,philosophical,1440839109 +91758,115713,robots,1440839112 +91758,115713,sci-fi,1440839106 +91758,115713,thought provoking,1440839114 +91758,115713,turing test,1440839117 +91758,115713,visual effects,1440839134 +91791,260,classic sci-fi,1436899866 +91791,260,good vs evil,1436900162 +91791,356,funny,1436900341 +91791,356,great acting,1436900341 +91791,356,touching,1436900341 +91791,593,brilliant,1438189329 +91791,593,dark,1438189329 +91791,593,scary,1438189329 +91791,4720,atmospheric,1438190183 +91791,4720,ghosts,1438190163 +91791,4720,scary,1438190153 +91793,14,political drama,1187712152 +91793,164,film noir,1187711756 +91793,214,horror of war,1187737054 +91793,230,child abuse,1187712013 +91793,247,Adolescent fantasy,1187712053 +91793,261,americana,1187711926 +91793,277,bad remake,1187711989 +91793,468,british comedy,1187712036 +91793,720,Animation,1187712180 +91793,858,the romance of crime,1189336414 +91793,915,nostalgia,1187711427 +91793,954,Democratic Fantasy,1187711826 +91793,1188,Dance and Romance,1187712084 +91793,1245,Crime Drama,1187711787 +91793,1267,assassination,1187711973 +91793,1298,World War II,1187711171 +91793,1344,action,1187711372 +91793,1959,writer biography,1187711333 +91793,2384,animal sympathy,1187711336 +91793,2423,family comedy,1187711225 +91793,2478,Spoof,1187711702 +91793,2947,Spy Thriller,1187711883 +91793,4246,romantic comedy,1187711863 +91793,4848,CRIME GONE AWRY,1187711618 +91793,5377,UNLIKELY FRIENDSHIPS,1187711501 +91793,5788,ugliness of the commoner,1189336295 +91793,6934,sci-fi,1187712128 +91793,7147,truth vs. fantasy,1187711558 +91793,8622,documentary,1187711662 +91815,260,classic adventure,1436761176 +91815,260,good for kids,1436761181 +91815,356,conservative,1436761365 +91815,356,mental illness,1436761365 +91815,356,overrated,1436761365 +91820,47,Morgan Freeman,1241993169 +91820,47,powerful ending,1241993172 +91820,47,twist ending,1241993187 +91820,50,Kevin Spacey,1241993346 +91820,50,mindfuck,1241993353 +91820,50,twist ending,1241993344 +91820,318,friendship,1241993327 +91820,318,inspirational,1241993311 +91820,318,Morgan Freeman,1241993292 +91820,318,Stephen King,1241993295 +91820,803,relationships,1367876723 +91820,1584,Jodie Foster,1243865093 +91820,1584,Robert Zemeckis,1243865122 +91820,1584,science,1243865129 +91820,1584,space travel,1243865135 +91820,1931,oscar (best directing),1367876632 +91820,2095,family,1367876908 +91820,2329,great acting,1367876803 +91820,2579,storytelling,1367876477 +91820,2652,horror,1367876884 +91820,2707,great ending,1367876926 +91820,2959,Brad Pitt,1241993223 +91820,2959,Edward Norton,1241993208 +91820,2959,powerful ending,1241993231 +91820,2959,twist ending,1241993214 +91820,3646,comedy,1367876419 +91820,3674,family,1367876908 +91820,3892,horror,1367876884 +91820,4226,great ending,1367876926 +91820,4226,nonlinear,1241993267 +91820,4226,twist ending,1241993269 +91820,4387,action,1367876692 +91820,4565,action,1367876692 +91820,4887,action,1367876692 +91820,5250,comedy,1367876418 +91820,5313,action,1367876692 +91820,5546,horror,1367876884 +91820,5682,dramatic,1367876677 +91820,5684,visually appealing,1367876786 +91820,5942,comedy,1367876418 +91820,6193,mentor,1367876342 +91820,6270,visually appealing,1367876786 +91820,6774,weird,1367876767 +91820,6777,dramatic,1367876677 +91820,7117,horror,1367876884 +91820,7297,loneliness,1367876591 +91820,7486,relationships,1367876723 +91820,8531,comedy,1367876419 +91820,8839,horror,1367876884 +91820,25774,criterion,1367876554 +91820,26258,weird,1367876767 +91820,26326,weird,1367876767 +91820,30707,great acting,1367876803 +91820,33158,action,1367876692 +91820,34530,comedy,1367876419 +91820,37736,story,1367876978 +91820,44199,great ending,1367876926 +91820,44665,great ending,1367876926 +91820,45003,horror,1367876884 +91820,45730,storytelling,1367876477 +91820,47970,relationships,1367876723 +91820,48082,cerebral,1367877010 +91820,49932,weird,1367876767 +91820,52279,family,1367876908 +91820,58291,family,1367876908 +91820,64116,original,1367876285 +91820,66097,storytelling,1367876477 +91820,79357,storytelling,1367876477 +91820,79897,story,1367876978 +91820,90746,storytelling,1367876477 +91820,91571,original,1367876285 +91820,95875,action,1367876692 +91820,98809,storytelling,1367876477 +91820,98961,dramatic,1367876677 +91836,108979,anime,1429907186 +91836,108979,space western,1429907202 +91849,5620,idioms,1190292504 +91849,5620,romantic comedy,1190292504 +91849,5620,Southern,1190292503 +91849,5620,writing,1190292504 +91849,6885,cinematography,1190291379 +91849,6885,feminist,1190291400 +91849,6885,symbolism,1190291416 +91876,80844,atmospheric,1427427277 +91876,80844,mystery,1427427277 +91876,80844,unique,1427427277 +91876,85788,gripping,1426540359 +91876,85788,original,1426540359 +91876,85788,scary,1426540359 +91876,117893,cliche,1430156183 +91876,117893,one time watch,1430156183 +91876,117893,uninspired,1430156183 +91876,120486,poweful performance,1432280658 +91876,120486,psychological,1432280658 +91876,120486,thriller,1432280658 +91882,260,laser sword,1444409118 +91882,260,r2d2,1444409087 +91882,1240,Arnold Schwarzenegger,1444410812 +91882,1240,robots,1444410818 +91885,5445,Tom Cruise,1403466378 +91885,6539,action,1403466067 +91885,6539,Johnny Depp,1403466067 +91885,6539,kiera knightley,1403466067 +91885,6539,Orlando Bloom,1403466067 +91885,6539,pirates,1403466067 +91885,6773,quirky,1403466124 +91885,7762,British,1403466245 +91885,7762,espionage,1403466245 +91885,8665,action,1403466008 +91885,8665,espionage,1403466008 +91885,49272,action,1403466106 +91885,49272,Daniel Craig,1403466106 +91885,49272,espionage,1403466106 +91885,67255,violence.,1403465364 +91885,68954,tear jerker,1403465825 +91885,91630,Tom Cruise,1403465707 +91885,91658,Daniel Craig,1403465381 +91885,96079,action,1403465985 +91885,96079,Daniel Craig,1403465985 +91885,96079,espionage,1403466023 +91885,96079,James Bond,1403465984 +91885,104841,isolation,1403465871 +91925,296,Black comedy,1438694136 +91925,296,dark comedy,1438694142 +91925,296,imdb top 250,1438694248 +91925,296,masterpiece,1438694246 +91925,296,Quentin Tarantino,1438694123 +91925,296,Samuel L. Jackson,1438694130 +91925,79091,minions,1438694420 +91925,89745,Iron Man,1438694536 +91925,89745,superhero,1438694533 +91925,111362,Hugh Jackman,1438694566 +91925,111362,time travel,1438694569 +91926,260,sci-fi,1432489311 +91926,260,space,1431619476 +91926,260,war,1431619482 +91926,2329,powerful ending,1432493101 +91926,2329,prison,1432493095 +91926,2329,thought-provoking,1432493103 +91926,4022,island,1432494475 +91926,4022,stranded,1432494478 +91926,4022,SURVIVAL,1432494471 +91926,36529,based on a true story,1432493046 +91926,84152,entertaining,1432492929 +91926,84152,visually appealing,1432492925 +91926,85414,mindfuck,1432492987 +91926,85414,parallel universe,1432492980 +91926,85414,twist ending,1432492983 +91926,88744,cgi,1432492955 +91926,88744,genetics,1432492953 +91926,89745,visually stunning,1432493014 +91926,91542,fight scenes,1432493031 +91926,91542,Robert Downey Jr.,1432493025 +91926,96610,dystopia,1432493177 +91926,102407,Leonardo DiCaprio,1432492800 +91926,102407,visually appealing,1432492808 +91926,105504,hijacking,1432492913 +91926,105504,true story,1432492909 +91926,106489,adventure,1432493081 +91926,106489,fantasy,1432493078 +91926,110102,Nazis,1432492865 +91926,111362,Marvel,1432492833 +91926,111362,superhero,1432492829 +91926,111362,time travel,1432492828 +91926,111362,X-men,1432492831 +91926,111759,sci-fi,1432492873 +91926,111759,time loop,1432492871 +91926,111759,Tom Cruise,1432492874 +91926,112623,action,1432492973 +91926,112623,apocalyptic,1432492975 +91926,114662,patriotic,1432492853 +91926,114662,war hero,1432492852 +91926,115210,Brad Pitt,1432492817 +91926,115210,realistic,1432492822 +91926,115210,war,1432492820 +91926,115210,World War II,1432492815 +91926,118696,Peter Jackson,1432492967 +91926,118702,survival,1432492747 +91927,260,classic,1442074507 +91927,260,sci-fi,1442074501 +91927,260,space adventure,1442074525 +91951,26614,inaccurate rating,1349750755 +91951,26614,mis-rated,1349750735 +91951,90413,australia,1426634503 +91951,90413,child abuse,1426634503 +91951,90413,true story,1426634503 +91951,92357,documentary,1421519609 +91951,92357,film-making,1421519609 +91951,92357,history,1421519609 +91951,95105,Bechdel Test:Fail,1351121780 +91951,107743,documentary,1420389818 +91951,107743,football,1420389818 +91951,107743,sports,1420389818 +91951,115713,artificial intelligence,1424645854 +91951,115713,robots,1424645854 +91951,115713,technology,1424645854 +91955,110,Guilty Pleasure,1235422412 +91955,316,guilty pleasure,1235422547 +91955,648,Guilty Pleasure,1235422480 +91955,780,Guitly Pleasure,1235422439 +91955,3882,guilty pleasure,1235422919 +91970,50,Kevin Spacey,1272438310 +91970,50,organized crime,1272438308 +91970,50,twist ending,1272438357 +91970,593,based on a book,1394516273 +91970,593,disturbing,1394516309 +91970,593,Hannibal Lecter,1394516307 +91970,593,psychology,1394516300 +91970,593,serial killer,1394516301 +91970,593,suspense,1394516304 +91970,3275,Mafia,1272438294 +91970,3275,organized crime,1272438287 +91970,3275,serial killer,1272438291 +91970,4226,mindfuck,1272438396 +91970,4226,psychological,1272438402 +91970,4226,psychology,1272438399 +91970,4226,twist ending,1272438394 +91970,7445,revenge,1310011457 +91970,7445,vengeance,1405222231 +91988,4235,Nudity (Topless - Brief),1162271746 +91995,150,based on a true story,1439830070 +91995,150,NASA,1439830078 +91995,150,space,1439830067 +91995,1610,favorite,1439830023 +91995,1610,technology,1439830031 +91995,1610,technothriller,1439830027 +91995,1610,war,1439830030 +91995,4225,comedy,1439830100 +91995,4225,feel good,1439830105 +91995,4225,NASA,1439830094 +92001,6776,aamir khan,1431636143 +92001,6776,Bollywood,1431636153 +92001,6776,India,1431636168 +92061,550,Nudity (Rear),1205053826 +92068,1100,action,1187882136 +92068,1100,not seen,1187882136 +92068,1100,to-rent,1187882136 +92068,1416,not seen,1187882137 +92068,1779,not seen,1187882075 +92068,1779,sci-fi,1187882075 +92068,1779,to-rent,1187882075 +92070,260,classic,1438460530 +92070,260,sci-fi,1438460510 +92070,260,space adventure,1438460520 +92074,260,sci-fi,1437031281 +92074,260,space,1437031291 +92084,1544,Dinosaurs,1138137442 +92084,6378,remake,1138142569 +92103,1230,comedy,1433712460 +92103,1230,new york city,1433712448 +92103,1230,Woody Allen,1433712444 +92103,2858,dark comedy,1433715053 +92103,2858,kevin spacey,1433712573 +92103,8949,wine,1433712530 +92103,48696,adultery,1433712609 +92103,48696,suburbia,1433712605 +92105,6016,wartime,1140539655 +92105,7254,suspense,1140539641 +92105,38061,ambiguous,1140539219 +92105,40583,israel,1140538509 +92105,40583,world politics,1140538509 +92105,41997,israel,1140539343 +92105,41997,politics,1140539344 +92123,261,moving,1186389007 +92123,2424,romance,1186388997 +92123,4246,sad,1186388973 +92123,4896,magic,1186388942 +92123,5378,futuristic,1186388954 +92123,7438,violent,1186388983 +92160,1,animation,1339803800 +92160,1,Pixar,1339803803 +92160,539,Comedy,1339803737 +92160,539,Romance,1339803734 +92160,539,Tom Hanks,1339803728 +92160,595,animation,1339803747 +92160,595,Disney,1339803751 +92160,595,Disney animated feature,1339803643 +92160,858,BORING!,1339804010 +92160,1064,poor acting,1339803966 +92160,1136,funny,1339803879 +92160,1210,fantasy,1339803810 +92160,1210,sci-fi,1339803828 +92160,1907,animation,1339803836 +92160,1907,Disney,1339803834 +92160,1907,female lead,1339803854 +92160,1997,horror,1339803986 +92160,2571,Keanu Reeves,1339803900 +92160,2571,post-apocalyptic,1339803912 +92160,2571,sci-fi,1339803900 +92160,2571,virtual reality,1339803915 +92160,4016,Disney,1339803933 +92160,4016,funny,1339803931 +92160,5502,horror,1339803999 +92160,8961,action,1339803929 +92160,8961,Pixar,1339803922 +92160,8961,superhero,1339803926 +92160,88140,cheesy,1339803660 +92160,88140,cliched,1339803696 +92160,88140,comic book,1339803741 +92187,2393,sci-fi,1363274712 +92199,540,Funny as hell,1366118581 +92288,527,based on a book,1361849974 +92288,527,history,1361849995 +92288,527,Holocaust,1361849979 +92288,527,Oscar (Best Cinematography),1361849984 +92288,527,Steven Spielberg,1361849987 +92288,527,thought-provoking,1361849990 +92288,527,true story,1361849971 +92288,527,World War II,1361849968 +92288,7360,action,1361849942 +92288,7360,Good remake,1361849933 +92288,7360,horror,1361849938 +92288,7360,post-apocalyptic,1361849920 +92288,7360,remake,1361849923 +92288,7360,ving rhames,1361849948 +92288,7360,zombies,1361849927 +92288,7502,based on a book,1361849899 +92288,7502,foul language,1361849905 +92288,7502,historical,1361849894 +92288,7502,military,1361849865 +92288,7502,realistic,1361849877 +92288,7502,World War II,1361849884 +92310,260,chill,1439779307 +92310,260,Cool,1439779304 +92310,260,fun,1439779317 +92385,50,thriller,1436489261 +92385,50,twist ending,1436489242 +92385,318,drama,1436489211 +92385,318,hope,1436489199 +92475,260,CGI,1439769789 +92475,260,sci-fi,1439769774 +92485,1,toys,1449840522 +92485,6,heist,1450258289 +92485,8,Disney,1435145184 +92485,13,animated,1433273526 +92485,13,dogs,1433273509 +92485,13,sled dogs,1433273513 +92485,13,talking animals,1433273523 +92485,39,teenagers,1452684582 +92485,43,period piece,1453797338 +92485,54,disney,1435145376 +92485,54,sports,1435145360 +92485,72,college,1449839708 +92485,87,chimpanzee,1435282416 +92485,146,animal picture,1433274257 +92485,146,china,1433274244 +92485,146,panda,1433274242 +92485,150,moon,1450436808 +92485,150,period piece,1433989990 +92485,168,medieval,1433274360 +92485,180,mall,1434937684 +92485,181,based on a tv show,1435116613 +92485,191,period piece,1435105721 +92485,250,Summer Camp,1449822139 +92485,252,period piece,1433989539 +92485,258,arthurian legend,1449714768 +92485,258,baseball,1433274278 +92485,258,King Arthur,1450642343 +92485,258,little league,1433274282 +92485,258,medieval,1433274300 +92485,258,merlin,1433274290 +92485,258,time travel,1433274286 +92485,260,fantasy,1433110960 +92485,260,Science Fiction,1433110951 +92485,274,Disney,1435106649 +92485,300,period piece,1433996592 +92485,302,period piece,1453798349 +92485,313,animated,1449714070 +92485,316,alien technology,1450436743 +92485,317,Disney,1435131018 +92485,322,movie business,1450109259 +92485,327,talking animals,1433482016 +92485,355,prehistoric,1449791789 +92485,362,Jungle,1449820509 +92485,368,riverboat,1450520153 +92485,371,newspaper,1449793644 +92485,393,dictator,1435384532 +92485,393,military,1435384546 +92485,393,war,1435384528 +92485,412,period piece,1435135374 +92485,441,period piece,1434862228 +92485,442,future,1450321031 +92485,449,hip hop,1451766634 +92485,458,period piece,1435557854 +92485,513,period piece,1434858453 +92485,553,period piece,1449639577 +92485,558,library,1433317620 +92485,558,live action/animation,1433442795 +92485,577,seal,1433274217 +92485,590,period piece,1449639539 +92485,594,Snow White,1433285728 +92485,596,talking animals,1433441840 +92485,609,cats,1433273107 +92485,609,dogs,1433273104 +92485,609,San Franciso,1433273097 +92485,609,talking animals,1433273091 +92485,613,period piece,1435105769 +92485,619,baseball,1435282310 +92485,619,chimpanzee,1435282315 +92485,631,animated,1449714273 +92485,631,animation,1449714277 +92485,631,talking animals,1433273158 +92485,634,dinosaur,1434947986 +92485,661,bugs,1450483314 +92485,661,talking animals,1433284950 +92485,673,aliens,1433326923 +92485,673,basketball,1433326911 +92485,673,live action/animation,1433326906 +92485,673,talking animals,1433326921 +92485,688,elephant,1449716551 +92485,709,talking animals,1433273576 +92485,745,short film,1450436282 +92485,754,cave,1435030422 +92485,754,gold,1435030423 +92485,754,mine,1435030420 +92485,754,small town,1435030418 +92485,754,theft,1435033304 +92485,761,1930's,1434941474 +92485,761,period piece,1434941479 +92485,761,superhero,1434941502 +92485,810,genie,1449715259 +92485,810,music industry,1449715266 +92485,813,elephant,1449716530 +92485,829,talking animals,1450099605 +92485,852,sports,1435145698 +92485,888,dinosaurs,1449713605 +92485,899,period piece,1434861498 +92485,923,newspaper,1449793555 +92485,951,death penalty,1450257914 +92485,951,newspaper,1449710490 +92485,1012,Disney,1435106274 +92485,1014,period piece,1435942969 +92485,1015,talking animals,1433273064 +92485,1019,disney,1433271827 +92485,1019,period piece,1435106114 +92485,1021,baseball,1435282122 +92485,1021,disney,1435121825 +92485,1021,sports,1435145385 +92485,1025,jousting,1433275507 +92485,1025,medieval,1433275504 +92485,1029,elephant,1449716570 +92485,1031,live action/animation,1433443464 +92485,1033,talking animals,1433273612 +92485,1035,period piece,1434861411 +92485,1042,music business,1451460260 +92485,1042,one hit wonder,1433991592 +92485,1042,period piece,1433991582 +92485,1042,rock and roll,1433991587 +92485,1064,disney,1435115127 +92485,1077,future,1450321587 +92485,1084,period piece,1433994787 +92485,1090,military,1433446689 +92485,1093,music business,1451460198 +92485,1128,slow,1433136875 +92485,1148,short film,1450436259 +92485,1188,dance,1452607367 +92485,1198,period piece,1449639346 +92485,1200,space station,1450235384 +92485,1214,slow,1433115569 +92485,1223,moon,1450436320 +92485,1223,short film,1450436331 +92485,1223,space,1450436316 +92485,1225,Period piece,1435545475 +92485,1234,period piece,1433989840 +92485,1237,crusades,1449792914 +92485,1242,miitary,1433447763 +92485,1242,military,1433447776 +92485,1251,film making,1450495187 +92485,1275,Scotland,1449793019 +92485,1291,period piece,1449638941 +92485,1298,music business,1451460178 +92485,1339,period piece,1433989284 +92485,1348,plague,1433123577 +92485,1348,unauthorized,1433123589 +92485,1371,Based on a TV show,1449809922 +92485,1380,period piece,1433991408 +92485,1395,period piece,1434857598 +92485,1474,culture clash,1434033196 +92485,1474,Disney,1435106578 +92485,1489,animated,1449714025 +92485,1489,animation,1449714022 +92485,1489,cats,1449879782 +92485,1489,showbiz,1433283561 +92485,1489,talking animals,1433283558 +92485,1495,based on a tv show,1435115780 +92485,1499,jungle,1449892405 +92485,1587,high fantasy,1450325155 +92485,1588,disney,1435114904 +92485,1588,jungle,1449820437 +92485,1592,basketball,1433327047 +92485,1592,disney,1435121843 +92485,1608,airplane,1435131157 +92485,1635,period piece,1434005983 +92485,1643,period piece,1453797258 +92485,1646,Disney,1435114837 +92485,1654,fairies,1435103913 +92485,1654,period piece,1435103909 +92485,1673,period piece,1434005622 +92485,1678,mother daughter relationship,1449826718 +92485,1688,animated,1449714200 +92485,1693,period piece,1434804936 +92485,1702,Disney,1435116559 +92485,1702,inventor,1449826103 +92485,1703,amish,1434033211 +92485,1721,period piece,1433995166 +92485,1731,Disney,1435115024 +92485,1760,music business,1451766164 +92485,1772,musical,1435205362 +92485,1772,voodoo,1435205366 +92485,1826,based on a tv show,1449715179 +92485,1826,dinosaur,1449715173 +92485,1826,talking animals,1449715150 +92485,1831,Based on a TV show,1449732051 +92485,1835,angels,1449792794 +92485,1876,asteroid,1450510454 +92485,1895,teenagers,1452684638 +92485,1911,talking animals,1433272759 +92485,1917,asteroid,1450510483 +92485,1917,space station,1436132568 +92485,1920,living toys,1433185089 +92485,1927,military,1433327957 +92485,1943,circus,1433329420 +92485,1951,orphan,1436035633 +92485,1959,period piece,1435545345 +92485,1974,Summer Camp,1449822223 +92485,1997,posession,1451282732 +92485,2009,future,1450321668 +92485,2009,futuristic,1435200927 +92485,2028,military,1433327680 +92485,2034,black hole,1433264181 +92485,2034,robots,1433264169 +92485,2037,disney,1435148658 +92485,2038,alien,1450468046 +92485,2046,hospital,1449821905 +92485,2053,Las Vegas,1433185204 +92485,2065,period piece,1434858313 +92485,2077,great depression,1434940531 +92485,2077,period piece,1434940534 +92485,2081,underwater,1449809649 +92485,2084,newspaper,1449793469 +92485,2084,period piece,1434032504 +92485,2089,talking animals,1433481673 +92485,2092,animated,1449714612 +92485,2092,animation,1449714608 +92485,2094,Disney,1435135860 +92485,2094,period piece,1435135858 +92485,2114,gangs,1449821752 +92485,2137,farm,1449792212 +92485,2140,high fantasy,1450325397 +92485,2141,cats,1433317475 +92485,2141,talking animals,1433273233 +92485,2142,animated,1449714249 +92485,2142,animation,1449714253 +92485,2142,talking animals,1433273195 +92485,2143,high fantasy,1450325330 +92485,2146,college graduate,1434924523 +92485,2146,credit card debt,1434924504 +92485,2161,high fantasy,1450325274 +92485,2164,surfing,1449880492 +92485,2193,high fantasy,1450325412 +92485,2243,news,1450642501 +92485,2287,bugs,1450099684 +92485,2294,bugs,1450099869 +92485,2354,animated,1449714508 +92485,2354,animation,1449714505 +92485,2354,based on a tv show,1435115673 +92485,2367,Giant monster,1450252155 +92485,2376,horse racing,1435136859 +92485,2376,horses,1449897141 +92485,2376,spy,1435136854 +92485,2386,talk show,1450143570 +92485,2392,snowman,1449715820 +92485,2396,period piece,1434005124 +92485,2431,Mental Hospital,1449823710 +92485,2433,lawyer,1453797629 +92485,2449,fashion,1434979139 +92485,2449,trash can,1434979143 +92485,2450,based on comics,1433111350 +92485,2450,talking animals,1433455901 +92485,2451,stop motion,1433113045 +92485,2455,scientist,1433264801 +92485,2460,cannibals,1449651635 +92485,2460,radio,1450099507 +92485,2460,radio station,1449651620 +92485,2470,culture clash,1434033264 +92485,2470,outback,1434033291 +92485,2498,Disney,1435115495 +92485,2501,coal mining,1450099165 +92485,2501,period piece,1433995210 +92485,2520,disaster film,1434948272 +92485,2522,disaster film,1434948295 +92485,2526,asteroid,1450512932 +92485,2529,astronauts,1453003045 +92485,2529,talking animals,1433379624 +92485,2535,disaster film,1434948320 +92485,2549,spaceship,1453003404 +92485,2559,animated,1449713879 +92485,2559,animation,1449713875 +92485,2566,based on a tv show,1435115683 +92485,2572,teenagers,1452684614 +92485,2613,asteroid,1450513123 +92485,2614,killer robots,1434862824 +92485,2614,mall,1434862806 +92485,2614,robots,1434862811 +92485,2616,Colorful,1435119923 +92485,2616,detective,1435119945 +92485,2616,Disney,1435119919 +92485,2616,orphan,1435119952 +92485,2628,prequel,1449891832 +92485,2656,giant monster,1450235177 +92485,2656,spiders,1436651096 +92485,2665,alien invasion,1436027035 +92485,2665,stop motion,1433123353 +92485,2687,jungle,1449820453 +92485,2720,disney,1435114952 +92485,2728,period piece,1434805028 +92485,2750,period piece,1434858384 +92485,2757,movie business,1450208680 +92485,2757,period piece,1449639037 +92485,2770,film making,1450808309 +92485,2770,movie business,1450109576 +92485,2772,1970's,1434862477 +92485,2772,period piece,1434862486 +92485,2800,animated,1449714392 +92485,2800,animation,1449714390 +92485,2804,period piece,1434860635 +92485,2805,mafia,1433328221 +92485,2846,cat,1449879640 +92485,2846,dog,1449879644 +92485,2916,future,1450321471 +92485,2932,period piece,1433989764 +92485,2985,stop motion,1433113141 +92485,3007,film making,1450495020 +92485,3036,prehistoric,1433184209 +92485,3039,stock market,1450320338 +92485,3040,Summer Camp,1449822577 +92485,3078,1950's,1434857709 +92485,3078,period piece,1434857704 +92485,3105,hospital,1450437542 +92485,3105,true story,1433489524 +92485,3117,period piece,1435557816 +92485,3127,religious cult,1450078216 +92485,3152,period piece,1434853295 +92485,3175,spaceship,1453003204 +92485,3255,period piece,1433996966 +92485,3270,ice skating,1449897319 +92485,3287,talking animals,1433284188 +92485,3324,small town,1450254261 +92485,3375,moon,1450436656 +92485,3396,based on a TV show,1449810135 +92485,3396,movie business,1450109747 +92485,3396,talking animals,1433289800 +92485,3397,hotel,1449730390 +92485,3397,jewel theif,1449730404 +92485,3399,based on a tv show,1449810152 +92485,3399,talking animal,1433284364 +92485,3399,talking animals,1433284375 +92485,3400,dinosaurs,1434946680 +92485,3408,lawyer,1453797647 +92485,3420,lawyer,1453797745 +92485,3438,talking animals,1433317214 +92485,3439,talking animals,1433289926 +92485,3469,based on a true story,1450494240 +92485,3483,ancient civilization,1433184436 +92485,3483,animated,1433184441 +92485,3483,human sacrifice,1433184461 +92485,3483,mistaken for gods,1433184448 +92485,3486,alien invasion,1436027245 +92485,3486,Mars,1449651188 +92485,3504,news,1450642520 +92485,3543,1950's,1434857420 +92485,3543,period piece,1434857415 +92485,3564,prehistoric,1449791812 +92485,3565,southern accent,1435120051 +92485,3585,based on a true story,1450108948 +92485,3585,disney,1450108938 +92485,3585,train,1450108968 +92485,3587,apartment,1434977851 +92485,3587,slasher,1434977833 +92485,3594,coming of age,1451459127 +92485,3601,disney,1435148800 +92485,3608,bicycle,1449723780 +92485,3615,animated,1433272510 +92485,3615,prehistoric,1433272496 +92485,3615,talking animals,1433272500 +92485,3623,spy,1435136524 +92485,3672,dog,1435282942 +92485,3673,dogs,1433286413 +92485,3675,musical,1451459582 +92485,3698,game show,1450321087 +92485,3699,alien,1450468186 +92485,3725,animated,1433442141 +92485,3725,music business,1451766046 +92485,3725,rotoscope,1433442149 +92485,3733,college,1449839587 +92485,3736,newspaper,1449793444 +92485,3742,period piece,1435546160 +92485,3742,true story,1433489781 +92485,3745,spaceship,1453003496 +92485,3753,period piece,1434005816 +92485,3754,live action/animation,1433443026 +92485,3754,talking animals,1433443021 +92485,3780,mst3k,1435973588 +92485,3784,Disney,1435119789 +92485,3802,future,1450320937 +92485,3827,astronauts,1453002988 +92485,3843,summer camp,1449822546 +92485,3864,giant monster,1450252102 +92485,3882,teenagers,1452608366 +92485,3931,giant monster,1450235102 +92485,3933,mst3k,1435973724 +92485,3959,dystopia,1436132834 +92485,3959,future,1450321646 +92485,3978,sports,1435145793 +92485,3997,sword and sorcery,1450624587 +92485,4027,Period piece,1449892244 +92485,4029,film making,1450494914 +92485,4036,period piece,1433989309 +92485,4039,orphan,1436035546 +92485,4142,religious,1450494520 +92485,4240,time travel,1449729825 +92485,4248,music business,1451766102 +92485,4262,cocaine,1435128567 +92485,4262,drugs,1435128579 +92485,4274,period piece,1434032207 +92485,4275,high fantasy,1450325103 +92485,4277,stop motion,1433264643 +92485,4306,fairy tales,1449715405 +92485,4316,ice skating,1449897376 +92485,4368,talking animals,1433272773 +92485,4386,cats,1433273359 +92485,4386,dogs,1433273361 +92485,4432,newspaper,1449793871 +92485,4467,moon,1450436550 +92485,4488,gangs,1449821697 +92485,4512,horses,1450320248 +92485,4512,stock market,1433356276 +92485,4512,talking animal,1433356290 +92485,4519,prehistoric,1433264489 +92485,4595,world war II,1435317018 +92485,4599,music business,1451766022 +92485,4602,period piece,1434857011 +92485,4690,period piece,1434857042 +92485,4700,Disney,1435119311 +92485,4719,live action/animation,1433443087 +92485,4725,mental hospital,1449823534 +92485,4728,racing,1450392421 +92485,4789,musical,1433147006 +92485,4812,Summer Camp,1451536911 +92485,4813,spaceship,1453003256 +92485,4815,period piece,1434853235 +92485,4822,middle school,1433283470 +92485,4874,mental hospital,1449823318 +92485,4886,computer animation,1450454459 +92485,4894,time travel,1450320990 +92485,4899,medieval,1433275587 +92485,4942,mars,1433271482 +92485,4942,space,1433271485 +92485,4942,spaceship,1453003311 +92485,4944,ants,1434937999 +92485,4944,bugs,1450099766 +92485,4990,computer animation,1450435931 +92485,4994,mistaken identity,1433990383 +92485,4994,period piece,1433990365 +92485,4994,small town,1433990376 +92485,5002,talking animals,1433457135 +92485,5039,human sacrifice,1450521452 +92485,5040,high fantasy,1450521516 +92485,5041,animation,1449717540 +92485,5041,animed,1449717542 +92485,5048,dogs,1433273926 +92485,5048,sled dogs,1433273917 +92485,5060,military,1433327920 +92485,5060,surgery,1433327925 +92485,5102,baseball,1435282095 +92485,5122,period piece,1434853213 +92485,5126,bugs,1450099750 +92485,5126,giant monster,1450235147 +92485,5159,animated,1433442054 +92485,5159,fairy,1433442026 +92485,5159,talking animals,1433442032 +92485,5164,animated,1449713861 +92485,5164,animation,1449713856 +92485,5184,period piece,1434852384 +92485,5218,prehistoric,1449792067 +92485,5247,trucking,1450326833 +92485,5290,moon,1450436395 +92485,5311,Disney,1435106213 +92485,5356,spiders,1436651079 +92485,5389,horses,1435135208 +92485,5410,future,1450321839 +92485,5410,isolation,1433271687 +92485,5410,robots,1449665898 +92485,5410,spaceship,1449665894 +92485,5427,Prehistoric,1433263966 +92485,5458,baketball,1433327179 +92485,5458,basketball,1433327201 +92485,5459,alien invasion,1449731832 +92485,5468,giant monster,1450235229 +92485,5472,musical,1451459750 +92485,5472,period piece,1434005871 +92485,5478,spiders,1436651055 +92485,5480,talking animals,1433284081 +92485,5481,spy,1435136713 +92485,5482,adoption,1433482253 +92485,5482,bears,1449879986 +92485,5482,country music,1433482239 +92485,5482,disney,1433482245 +92485,5482,musical,1433482227 +92485,5482,talking animals,1433482221 +92485,5538,animated,1433456578 +92485,5538,talking animals,1433456587 +92485,5540,stop motion,1433122719 +92485,5556,internet,1450143357 +92485,5644,sports,1435145467 +92485,5651,fish,1433443752 +92485,5651,live action/animation,1433443741 +92485,5651,talking animals,1433481530 +92485,5667,period piece,1433995054 +92485,5690,animated,1449717298 +92485,5690,animation,1449717296 +92485,5705,Greek Gods,1435112374 +92485,5705,musical,1435112361 +92485,5707,newspaper,1449793540 +92485,5756,robot,1451282917 +92485,5756,robots,1451282902 +92485,5777,period piece,1434852482 +92485,5804,Disney,1435130959 +92485,5810,hip hop,1451766531 +92485,5832,religious,1450494485 +92485,5847,period piece,1453798477 +92485,5867,bank robbery,1433489178 +92485,5867,mafia,1433489173 +92485,5867,safe cracking,1433489182 +92485,5902,movie buisiness,1450109485 +92485,5932,film making,1450495090 +92485,5956,period piece,1433996900 +92485,5983,alien invasion,1449841171 +92485,6025,music business,1451518285 +92485,6062,film making,1450495058 +92485,6093,animated,1433456804 +92485,6184,alien,1450468168 +92485,6201,period piece,1435545812 +92485,6208,alien invasion,1436027075 +92485,6208,aliens,1433124240 +92485,6208,bad acting,1433124244 +92485,6251,talking animals,1433284113 +92485,6260,biblical,1433329034 +92485,6297,Disney,1435145123 +92485,6332,Disney,1435115396 +92485,6347,break dancing,1451766931 +92485,6347,hip hop,1451766934 +92485,6348,break dancing,1451766778 +92485,6349,break dancing,1451766759 +92485,6352,dance,1452607170 +92485,6352,dancing,1449896781 +92485,6377,shark,1449711099 +92485,6377,sharks,1449711101 +92485,6440,movie business,1450109430 +92485,6460,lawyer,1453797682 +92485,6482,prequel,1449891749 +92485,6514,mst3k,1436023294 +92485,6517,sports,1435145499 +92485,6531,lawyer,1453797562 +92485,6531,period piece,1453797552 +92485,6549,teenagers,1452608055 +92485,6568,summer camp,1449822380 +92485,6605,nazis,1435941429 +92485,6625,Summer Camp,1449822113 +92485,6634,period piece,1453798670 +92485,6653,nazis,1435941322 +92485,6656,dolls,1434978268 +92485,6656,toys,1434978270 +92485,6657,giant monster,1450235201 +92485,6724,period piece,1434857099 +92485,6725,beatles,1451276035 +92485,6730,trucking,1450326856 +92485,6743,jungle,1449820531 +92485,6773,bicycle,1449723728 +92485,6793,dog,1435282963 +92485,6793,veterinarian,1449715022 +92485,6848,spiders,1450468301 +92485,6871,dogs,1450468011 +92485,6908,bugs,1450099669 +92485,6946,live action/animation,1433326885 +92485,6958,spiders,1449650293 +92485,6987,sleepwalking,1435375706 +92485,6990,period piece,1434804411 +92485,7019,chimpanzee,1435282477 +92485,7056,mafia,1433328369 +92485,7060,Musical,1449637253 +92485,7104,period piece,1434005948 +92485,7142,dancing,1449896897 +92485,7154,period piece,1433988589 +92485,7174,Disney,1435115377 +92485,7179,period piece,1453797208 +92485,7228,live action/animation,1433442855 +92485,7247,inventor,1450436020 +92485,7263,disney,1435281828 +92485,7280,vampire,1449735234 +92485,7281,vampire,1449735263 +92485,7281,voodoo,1449735266 +92485,7283,period piece,1434861846 +92485,7316,disney,1435117272 +92485,7318,religious,1449636645 +92485,7320,Dancing,1449896597 +92485,7324,period piece,1434933931 +92485,7360,mall,1434946461 +92485,7374,animated,1449713812 +92485,7374,animation,1449713809 +92485,7374,Disney,1435115301 +92485,7374,farm,1449713806 +92485,7386,Religious,1449636729 +92485,7389,prehistoric,1433264444 +92485,7394,racing,1450523626 +92485,7403,eco-horror,1451536700 +92485,7454,Dracula,1435136088 +92485,7458,period piece,1434005794 +92485,7492,vampire,1449735896 +92485,7584,newspaper,1449794380 +92485,7714,medieval,1433274388 +92485,7743,inventor,1449821473 +92485,7743,spaceship,1449821469 +92485,7757,stop motion,1433116792 +92485,7883,voodoo,1436035028 +92485,7883,zombies,1450254077 +92485,7959,lsd,1434937731 +92485,7987,Dolls,1449840649 +92485,7987,Toys,1449840647 +92485,7988,space,1436022930 +92485,7991,racing,1450392445 +92485,8003,mental hospital,1449823663 +92485,8004,space,1436026650 +92485,8126,mental hospital,1449823338 +92485,8126,newspaper,1449794123 +92485,8302,newspaper,1449793404 +92485,8372,cat,1449879834 +92485,8372,cats,1449879836 +92485,8372,talking animals,1449879841 +92485,8391,surfing,1449880442 +92485,8444,animated,1433283810 +92485,8444,talking animals,1433283802 +92485,8496,heroin,1435128479 +92485,8511,immigrants,1449840337 +92485,8640,King Arthur,1450642321 +92485,8640,period piece,1434849554 +92485,8690,military,1433446832 +92485,8690,prisoner of war,1433446814 +92485,8718,mental hospital,1449823421 +92485,8718,mental illness,1435369374 +92485,8727,movie business,1450208543 +92485,8808,Disney,1435130926 +92485,8811,animated,1449724002 +92485,8811,animation,1449723999 +92485,8822,King Arthur,1450642376 +92485,8858,music business,1451518073 +92485,8905,period piece,1449734970 +92485,8907,shark,1449711078 +92485,8907,sharks,1449711075 +92485,8907,talking animals,1433356111 +92485,8907,underwater,1449809614 +92485,8934,animated,1449714473 +92485,8934,animation,1449714468 +92485,25757,music business,1451518125 +92485,25797,musical,1451459923 +92485,25881,boxing,1435145860 +92485,25881,sports,1435145857 +92485,26047,alien invasion,1436060806 +92485,26080,mst3k,1435973796 +92485,26134,vampire,1449735932 +92485,26157,cult,1433279245 +92485,26157,cults,1437813046 +92485,26157,polygamy,1433279241 +92485,26246,hospital,1450437418 +92485,26246,World War I,1450437366 +92485,26299,ants,1433125025 +92485,26299,bugs,1450099700 +92485,26299,scientist,1433125048 +92485,26314,cars,1435368046 +92485,26395,music business,1451534653 +92485,26403,high fantasy,1450325255 +92485,26409,mst3k,1435973949 +92485,26432,future,1450321732 +92485,26467,Nuclear War,1435317126 +92485,26504,video games,1449636210 +92485,26590,animated,1433448532 +92485,26590,miitary,1433448524 +92485,26593,frogs,1433447420 +92485,26593,talking animals,1433447418 +92485,26629,small town,1434977144 +92485,26729,film making,1450495074 +92485,26760,Disney,1435118613 +92485,26913,video game adaptation,1450513428 +92485,26973,fairy tale,1433285518 +92485,26999,disney,1435115161 +92485,27002,moon,1450436848 +92485,27369,animated,1449730594 +92485,27369,animation,1449730602 +92485,27369,based on a TV show,1449730609 +92485,27369,Summer Camp,1449822341 +92485,27619,direct to video,1433447650 +92485,27619,disney,1433447645 +92485,27619,talking animals,1433447643 +92485,30723,period piece,1434804562 +92485,31150,animated,1449717481 +92485,31150,animation,1449717478 +92485,31193,talking animals,1433285778 +92485,31223,farm,1449792386 +92485,31223,racing,1450392313 +92485,31223,talking animals,1433273015 +92485,31297,musical,1451459948 +92485,31553,video game adaptation,1450513308 +92485,31553,videogame adaptation,1450513282 +92485,31687,talking animals,1433284133 +92485,32139,period piece,1434804791 +92485,32139,pope,1453798740 +92485,32153,animated,1433456163 +92485,32153,talking animals,1433456160 +92485,32225,Bears,1435371860 +92485,32289,disney,1435119862 +92485,32289,figure skating,1449897354 +92485,32289,ice skating,1449897346 +92485,32421,dinosaur,1434947831 +92485,32421,dinosaurs,1449713553 +92485,32421,mad scientist,1434947835 +92485,32587,digital sets,1450252898 +92485,33463,talking animals,1433317403 +92485,33681,digital sets,1450252835 +92485,33794,reboot,1450340712 +92485,33830,racing,1450392328 +92485,33861,mst3k,1435973519 +92485,33966,police,1450258125 +92485,34271,music business,1451518166 +92485,34321,baseball,1435282251 +92485,35957,Airplane,1435131223 +92485,36401,period piece,1434854545 +92485,37380,Mars,1449651048 +92485,37727,Airplane,1435131301 +92485,37739,period piece,1433994965 +92485,37857,digital sets,1450252867 +92485,38583,cars,1435368014 +92485,39234,period piece,1435317669 +92485,39408,religious,1450494596 +92485,39444,archery,1450642450 +92485,39444,news,1450642454 +92485,40339,coming of age,1450454533 +92485,40339,computer animation,1450454528 +92485,41569,giant monster,1450235307 +92485,42418,period piece,1434005733 +92485,42543,arctic,1435972952 +92485,42543,immortality,1435972809 +92485,42734,fairy tale,1433285339 +92485,43635,musical,1451460032 +92485,43917,sled dogs,1433273840 +92485,44041,military,1433446430 +92485,44399,Disney,1435107146 +92485,45074,animated,1433286538 +92485,45074,talking animals,1433286533 +92485,45431,animation,1449880142 +92485,45431,computer animation,1449880136 +92485,46062,Disney,1435118987 +92485,46318,newspaper,1449794349 +92485,46948,computer animation,1450454057 +92485,46965,airplane,1435131348 +92485,47124,computer animation,1450453995 +92485,47264,farm,1449713773 +92485,47646,period piece,1434857073 +92485,47999,Summer Camp,1449822258 +92485,48030,crusades,1449792940 +92485,48159,animation,1435281994 +92485,48159,baseball,1435281997 +92485,48159,computer animation,1450493513 +92485,48159,sports,1435281991 +92485,48304,ancient civilization,1433184400 +92485,48346,animated,1449713644 +92485,48346,animation,1449713641 +92485,48346,dinosaurs,1449713626 +92485,48997,period piece,1433994694 +92485,49013,Disney,1435130983 +92485,49121,parody,1433441478 +92485,49121,penguins,1433441475 +92485,49123,talking animals,1433272940 +92485,49647,farm,1449792204 +92485,49817,animated,1433273463 +92485,49817,dogs,1433273460 +92485,50149,animated,1449715436 +92485,50149,animation,1449715439 +92485,50149,fairy tales,1449715424 +92485,50872,computer animation,1449809048 +92485,51084,music business,1451518424 +92485,51249,space,1436026816 +92485,51575,biker gang,1433148746 +92485,51575,midlife crisis,1433148750 +92485,51575,motorcycle,1433148741 +92485,51575,road movie,1433148789 +92485,51575,road trip,1433148793 +92485,51632,ancient civilization,1433184507 +92485,51632,animated,1433184518 +92485,51632,direct to video,1433184514 +92485,51632,disney,1433184521 +92485,51662,digital sets,1450252878 +92485,51939,talking animals,1433317231 +92485,52694,based on a tv show,1435115888 +92485,52715,break dancing,1451766731 +92485,52938,claymation,1433263849 +92485,52938,stop motion,1433263854 +92485,52975,period piece,1433991315 +92485,53152,alien invasion,1449841345 +92485,53460,surfing,1433355809 +92485,53548,mst3k,1433279187 +92485,53855,american revolution,1449734799 +92485,53855,disney,1435106385 +92485,53855,period piece,1435106395 +92485,54259,high fantasy,1450325293 +92485,54278,dogs,1433283864 +92485,54278,superhero,1433283871 +92485,54278,talking animals,1433283858 +92485,54480,stop motion,1433265294 +92485,54768,summer camp,1449822520 +92485,55768,talking animals,1433355831 +92485,55830,movies about movies,1434953697 +92485,55995,computer animation,1450467944 +92485,56152,live action/animation,1433443112 +92485,56176,talking animals,1433284062 +92485,56782,deaf,1449821258 +92485,56805,music business,1451518253 +92485,56837,period piece,1435105860 +92485,57041,Aliens,1433117081 +92485,57041,Mars,1433117075 +92485,57041,Santa Claus,1433481828 +92485,57326,medieval,1433275402 +92485,57326,sword and sorcery,1450624563 +92485,57940,hospital,1450437613 +92485,58156,1970s,1434862745 +92485,58156,period piece,1434862718 +92485,58291,Disney,1435106469 +92485,58324,Pirates,1435317395 +92485,58839,period piece,1434005683 +92485,59141,film making,1450521320 +92485,60040,reboot,1450340739 +92485,60126,spy,1435136589 +92485,60259,Disney,1435131565 +92485,60289,period piece,1434857207 +92485,60365,Christmas,1433442651 +92485,60365,snowman,1449715838 +92485,60649,animated,1433355933 +92485,60649,animation,1449650503 +92485,60649,astronaut,1433355924 +92485,60649,chimps,1433355927 +92485,60649,computer animation,1450392112 +92485,60649,space,1433355931 +92485,60806,disney,1435115189 +92485,61267,animated,1433271625 +92485,61267,computer animation,1450392084 +92485,61267,flies,1433271620 +92485,61267,moon,1433271609 +92485,61267,space,1433271604 +92485,62081,military,1433362892 +92485,62577,based on a true story,1450142908 +92485,62912,disney,1449812451 +92485,62912,musical,1449812449 +92485,63237,animated,1449715519 +92485,63237,animation,1449715523 +92485,63237,fairy tale,1433285681 +92485,63237,snow white,1433285694 +92485,63393,Summer Camp,1449822183 +92485,63540,disney,1435121867 +92485,63859,disney,1435121932 +92485,64114,religious,1450320027 +92485,64116,computer animation,1450454191 +92485,64229,period piece,1433991341 +92485,64249,short film,1450451786 +92485,64620,period piece,1433996679 +92485,65130,period piece,1433991254 +92485,65155,surfing,1449880374 +92485,65577,computer animation,1450453962 +92485,65802,mall,1434937520 +92485,65802,segway,1434937519 +92485,66152,campy,1434977234 +92485,66152,satellite tv,1434977246 +92485,66808,video game adaptation,1450513372 +92485,66915,animated,1433317350 +92485,66915,live action/animation,1435104525 +92485,66915,talking animals,1433317334 +92485,67695,mall,1434937558 +92485,67867,based on a tv show,1435115745 +92485,68965,dance,1452607219 +92485,69278,prehistoric,1449791831 +92485,69524,film making,1450521373 +92485,70336,military,1433448369 +92485,70984,based on a true story,1450099383 +92485,70984,period piece,1434862586 +92485,71007,asteroid,1450510554 +92485,71135,atmospheric,1433185002 +92485,71135,spaceship,1436132924 +92485,71264,computer animation,1449809026 +92485,71264,food,1450099025 +92485,71472,bugs,1450483345 +92485,71472,stop motion,1451536591 +92485,71571,sorority,1452224389 +92485,72261,animated,1449713900 +92485,72261,animation,1449713897 +92485,72261,penguins,1433441444 +92485,72261,talking animals,1433441442 +92485,72263,chimpanzee,1435282349 +92485,72263,hockey,1435282371 +92485,72263,sports,1435282353 +92485,72294,computer animation,1450451824 +92485,72696,Disney,1435131530 +92485,72777,alien invasion,1436027284 +92485,73000,filmmaking,1449826507 +92485,73000,remake,1449826525 +92485,73017,detective,1435121610 +92485,73042,talking animals,1433283992 +92485,73211,radio,1450099525 +92485,73829,shark,1449809544 +92485,73829,submarine,1449809534 +92485,73854,made for television,1450331903 +92485,73854,snowman,1449715898 +92485,73854,stop motion,1451235869 +92485,73854,talking animals,1433481736 +92485,73929,angel,1449792843 +92485,73929,angels,1449792834 +92485,74089,Peter Pan,1450887338 +92485,74452,period piece,1434934036 +92485,74789,Disney,1435117899 +92485,76692,period piece,1435545988 +92485,77291,opera,1449639836 +92485,77665,based on comic,1449723921 +92485,77665,based on comics,1449723940 +92485,77665,comic strip,1449723915 +92485,77665,dogs,1449891611 +92485,77665,talking animals,1433286465 +92485,78105,disney,1435111753 +92485,78499,computer animation,1450353183 +92485,78539,animated,1449713960 +92485,78539,animation,1449713957 +92485,78539,Halloween,1449713971 +92485,78637,animation,1449880225 +92485,78637,computer animation,1449880220 +92485,78893,based on a tv show,1435115769 +92485,79083,period piece,1435545904 +92485,80026,video game adaptation,1449732822 +92485,80141,Christmas,1449840589 +92485,80141,Toys,1449840582 +92485,80158,animated,1433457035 +92485,80158,animation,1433457033 +92485,80158,crossover,1433457029 +92485,80615,computer animation,1450453943 +92485,80617,cats,1433273379 +92485,80617,dogs,1433273380 +92485,80693,mental hospital,1449823303 +92485,80727,internet,1435126986 +92485,80839,Disney,1435107369 +92485,80839,racing,1450392507 +92485,81564,computer animation,1450077038 +92485,81656,moon,1450436508 +92485,81845,period piece,1434005253 +92485,82461,Disney,1435106905 +92485,82698,Toys,1449840611 +92485,83177,based on a tv show,1435214837 +92485,83177,Bears,1435371756 +92485,83177,talking animals,1433283950 +92485,83480,crusades,1433298554 +92485,83535,animated,1449713927 +92485,83535,animation,1449713925 +92485,84140,space,1436026542 +92485,84637,computer animation,1450353104 +92485,84772,alien,1450353579 +92485,84950,period piece,1434032876 +92485,85261,computer animation,1450353082 +92485,85261,Disney,1435107034 +92485,86368,nazis,1435941597 +92485,86864,giant monster,1450251953 +92485,87170,film making,1450494825 +92485,87170,zombies,1450494821 +92485,87306,film making,1450808394 +92485,87430,based on comics,1449891585 +92485,87483,penguins,1433441506 +92485,87529,high fantasy,1450624059 +92485,87529,sword and sorcery,1450624081 +92485,87529,swords and sorcery,1450624068 +92485,87867,talking animals,1433356010 +92485,87874,filmmaking,1449826430 +92485,87876,computer animation,1450353253 +92485,87930,newspaper,1449892550 +92485,88267,animated,1433447571 +92485,88267,animation,1449710586 +92485,88267,disney,1433447574 +92485,88267,talking animals,1433447566 +92485,88301,disney,1450454352 +92485,88301,dogs,1450454350 +92485,88468,computer animation,1450454270 +92485,88961,moon,1450436989 +92485,89427,sharks,1433289645 +92485,89761,period piece,1434005304 +92485,89904,period piece,1434032724 +92485,89973,Easter,1451235089 +92485,89973,stop motion,1451235081 +92485,90343,dancing,1449896652 +92485,90374,religious cult,1450078004 +92485,90522,spy,1435136621 +92485,90647,computer animation,1450077020 +92485,91386,penguins,1433441532 +92485,91386,talking animals,1433441536 +92485,91414,Christmas,1449645226 +92485,91414,computer animation,1450451841 +92485,91488,animated,1449715792 +92485,91488,animation,1449715797 +92485,91488,Christmas,1451236236 +92485,91634,military,1433448453 +92485,91660,alien invasion,1436060884 +92485,92192,astronauts,1435559314 +92485,92192,found footage,1433117369 +92485,93132,golf,1434979021 +92485,93208,animation,1450320416 +92485,93208,disney,1450320420 +92485,93208,short film,1450320570 +92485,93208,switching places,1450320401 +92485,93272,computer animation,1449809006 +92485,93363,Disney,1435107005 +92485,93484,Mars,1449650932 +92485,93723,college,1435201194 +92485,93723,dance,1435201177 +92485,93723,fraternity,1435201190 +92485,94015,Snow White,1449715566 +92485,94018,military,1433362785 +92485,94262,submarine,1433364036 +92485,94777,1960s,1449650202 +92485,94780,Snow White,1433298594 +92485,94799,cults,1437813142 +92485,94917,newspaper,1449793748 +92485,95069,chimpanzee,1435282519 +92485,95069,Disney,1435371675 +92485,95105,animation,1449880250 +92485,95105,computer animation,1449880247 +92485,95167,computer animation,1450451896 +92485,95193,Disney,1435371635 +92485,95720,alien invasion,1436060951 +92485,95742,teenagers,1452607820 +92485,95984,sword and sorcery,1450624629 +92485,96069,disney,1435115207 +92485,96079,spy,1435136546 +92485,96405,Disney,1435371615 +92485,96821,teenagers,1452607736 +92485,96923,shark,1449711046 +92485,96923,sharks,1449711050 +92485,97046,drugs,1449840733 +92485,97304,period piece,1434005535 +92485,97390,dogs,1449891648 +92485,97462,computer animation,1450493345 +92485,97462,fairy tale,1433285641 +92485,97884,submarine,1449809366 +92485,97921,dancing,1449896821 +92485,98243,computer animation,1449808966 +92485,98369,video game adaptation,1449732931 +92485,98523,video games,1449713515 +92485,98554,1940's,1434860893 +92485,98554,christmas,1434860902 +92485,98554,period piece,1434860908 +92485,98554,sequel,1434860899 +92485,98585,film making,1450494901 +92485,98585,movie business,1450109377 +92485,98809,high fantasy,1450623963 +92485,99056,vampire,1449735595 +92485,99124,rats,1451536768 +92485,99180,video games,1449713361 +92485,99642,animated,1449730666 +92485,99642,anunation,1449730660 +92485,99642,based on tv show,1449730688 +92485,99642,talking animals,1449730677 +92485,100611,animated,1449650547 +92485,100611,animation,1449650550 +92485,100611,computer animation,1450353050 +92485,101076,military,1433448425 +92485,101239,music business,1451536506 +92485,101577,aliens,1435384437 +92485,101577,parasites,1435384452 +92485,101670,Christmas,1433289466 +92485,101989,Giant Monster,1450252191 +92485,102280,future,1451234897 +92485,102280,stop motion,1451234923 +92485,102280,stopmotion,1451234910 +92485,102720,computer animation,1449808979 +92485,103120,disney,1450454387 +92485,103120,dogs,1450454378 +92485,103141,computer animation,1450353209 +92485,103237,coming of age,1433183553 +92485,103237,homeschool,1433183561 +92485,103384,Disney,1435111812 +92485,103384,Period Piece,1435111810 +92485,103596,Campy,1433146277 +92485,103755,computer animation,1450353273 +92485,104089,computers,1449826211 +92485,104089,period piece,1434033591 +92485,104089,swingers,1434033668 +92485,104245,computer animation,1450353232 +92485,104294,submarine,1449809297 +92485,104835,mst3k,1435973892 +92485,105351,internet,1450143314 +92485,105468,computer animation,1450435881 +92485,105769,live action/animation,1433990854 +92485,105772,mst3k,1436023852 +92485,105772,spiders,1450468398 +92485,105844,period piece,1434804858 +92485,105936,giant monster,1450252013 +92485,105938,giant monster,1450252052 +92485,106002,boarding school,1433264247 +92485,106240,computer animation,1450392198 +92485,106431,video games,1449636126 +92485,106489,high fantasy,1450624002 +92485,106696,computer animation,1450331860 +92485,106696,snowman,1449715855 +92485,106848,giant monster,1450251975 +92485,106916,period piece,1433991217 +92485,106986,stop motion,1451236288 +92485,107141,based on a true story,1450109162 +92485,107185,lsd,1434937785 +92485,107541,teenagers,1452684334 +92485,107557,Halloween,1449716267 +92485,107684,Internet,1435127095 +92485,107877,giant monster,1450251890 +92485,108696,moon,1450436949 +92485,109045,animated,1449714300 +92485,109045,animation,1449714303 +92485,109191,period piece,1435105572 +92485,109351,ice skating,1449897573 +92485,109487,astronauts,1435559275 +92485,109833,Pirates,1435317529 +92485,109846,computer animation,1450321316 +92485,109864,crowdfunded,1450320648 +92485,109897,Jesus,1434977586 +92485,109897,Religious,1449637311 +92485,110127,period piece,1433989210 +92485,110127,religious,1449636674 +92485,110216,video game adaptation,1449732795 +92485,110240,video game adaptation,1449732748 +92485,110350,video games,1449636152 +92485,110603,religious,1449636516 +92485,110655,animation,1449646288 +92485,110750,Religious,1449636552 +92485,110968,period piece,1433990121 +92485,111529,made for tv,1451236968 +92485,111630,spiders,1436651024 +92485,111759,military,1433327596 +92485,111795,Disney,1435107325 +92485,111921,teenagers,1452607535 +92485,112307,ice skating,1449897541 +92485,112316,based on a true story,1450099311 +92485,112846,Christmas,1433276025 +92485,112946,crowdfunded,1450331626 +92485,113107,alien invasion,1449841116 +92485,113345,spaceship,1453003469 +92485,113348,reporter,1450077157 +92485,113497,superhero,1451283029 +92485,113565,religious cults,1450078288 +92485,114074,brother-sister relationship,1433147319 +92485,114242,sharks,1433289623 +92485,114265,teenagers,1452608161 +92485,114552,animation,1449646319 +92485,114928,halfway house,1437213226 +92485,115381,disney,1435107248 +92485,115617,computer animation,1450077058 +92485,115664,computer animation,1450451869 +92485,115941,animation,1449791907 +92485,115941,dinosaurs,1449791917 +92485,115941,prehistoric,1449791911 +92485,116213,prehistoric,1433264540 +92485,116825,moon,1450437030 +92485,116941,animated,1433457075 +92485,116941,animation,1433457071 +92485,117851,computer animation,1449880270 +92485,117851,penguins,1433441578 +92485,117885,cats,1449879477 +92485,117885,made for tv,1449879476 +92485,117885,talking animals,1433356345 +92485,118696,high fantasy,1450624017 +92485,118702,based on a true story,1450142963 +92485,119190,musical,1435205235 +92485,119305,animated,1449715648 +92485,119305,animation,1449715652 +92485,119782,animated,1449714570 +92485,119782,animation,1449714567 +92485,119977,Christmas,1433116995 +92485,119977,devil,1433481932 +92485,119977,dubbed,1433116965 +92485,119977,merlin,1433116941 +92485,119977,mexican,1433116948 +92485,119977,mst3k,1436145783 +92485,119977,Santa Claus,1433481888 +92485,120132,orphan,1436035580 +92485,120222,animation,1433149017 +92485,120222,development hell,1433149009 +92485,120414,newspaper,1449794153 +92485,120474,computer animation,1450331784 +92485,120474,short film,1450331771 +92485,120586,Dance,1452607304 +92485,121875,submarine,1449809461 +92485,122133,animated,1449732492 +92485,122133,animation,1449732494 +92485,122133,based on a tv show,1449732488 +92485,122133,bears,1449879898 +92485,122133,talking animals,1449879902 +92485,122296,hospital,1450437485 +92485,122472,talking animal,1449897618 +92485,122472,talking animals,1449897614 +92485,122509,chimpanzee,1435316503 +92485,122509,skateboarding,1435316573 +92485,122509,skatebording,1435316513 +92485,122509,sports,1435316506 +92485,122515,chimpanzee,1435282844 +92485,122517,dogs,1433273317 +92485,122517,talking animals,1433273314 +92485,122519,Christmas,1451235521 +92485,122525,Christmas,1451235480 +92485,122525,Talking Animals,1451235486 +92485,122561,dogs,1450493974 +92485,122623,orphan,1436035607 +92485,122770,aniamtion,1451235779 +92485,122770,made for television,1451235846 +92485,122770,stop motion,1451235770 +92485,122892,based on a comic,1450076812 +92485,122900,based on a comic,1450076842 +92485,122972,clowns,1450077384 +92485,123093,computer animation,1450493393 +92485,123093,fairy tale,1450493397 +92485,123310,tornado,1450320152 +92485,123715,based on a TV Show,1449810001 +92485,124151,dogs,1433283894 +92485,124151,talking animals,1433283915 +92485,124151,vampire,1433283899 +92485,124356,animated,1433289410 +92485,124356,talking animals,1433289407 +92485,124575,animated,1449717110 +92485,124575,animation,1449717107 +92485,125043,Ice Skating,1449897273 +92485,125998,animated,1449716215 +92485,125998,animation,1449716212 +92485,125998,Halloween,1449716224 +92485,126482,Animated,1449638225 +92485,126482,computer animated,1450077520 +92485,126482,Musical,1449638221 +92485,126482,romance,1449638251 +92485,126548,teenagers,1452607559 +92485,126921,Disney,1435131613 +92485,127198,coming of age,1450454997 +92485,127198,teenagers,1452607593 +92485,127296,courtroom drama,1450494339 +92485,127296,devil,1450494334 +92485,127296,religious,1450494342 +92485,127565,detroit,1433146138 +92485,128324,moon,1450436710 +92485,128512,teenagers,1452607718 +92485,128679,christmas,1451235969 +92485,128679,made for tv,1451235974 +92485,128679,stop motion,1451235979 +92485,128832,musical,1435205141 +92485,129299,period piece,1434804063 +92485,129354,gambling,1450520112 +92485,129370,based on a tv show,1435214695 +92485,129370,underwater,1449809744 +92485,130073,Disney,1435106982 +92485,130075,animation,1449646040 +92485,130075,short film,1450321217 +92485,130450,Peter Pan,1450887258 +92485,130520,computer animation,1450321367 +92485,130636,Internet,1435127123 +92485,130850,Mall,1449814163 +92485,130988,period piece,1434805188 +92485,131080,Disney,1435371588 +92485,131180,bikers,1433446521 +92485,131180,military,1433446502 +92485,131180,reporter,1433446518 +92485,131180,zombies,1433446505 +92485,131248,bears,1435372026 +92485,131248,Disney,1435115258 +92485,131586,mall,1434946419 +92485,131656,animation,1449646176 +92485,131656,based on a tv show,1435214612 +92485,131658,mental illness,1435369166 +92485,132012,Musical,1449812593 +92485,132046,Disney,1435106795 +92485,132046,inventor,1449826040 +92485,132046,worlds fair,1449826037 +92485,132128,religious cult,1450078242 +92485,132325,vampire,1449735470 +92485,132352,spiders,1436651003 +92485,132422,crowdfunded,1450331608 +92485,132432,dance,1452607045 +92485,132446,video games,1449636072 +92485,132626,made for tv,1450332005 +92485,132800,mental illness,1434849439 +92485,132961,period piece,1433988661 +92485,133377,space,1452952133 +92485,133404,sword and sorcery,1433317996 +92485,133667,military,1433446456 +92485,133667,soliders,1433446473 +92485,133667,vietnam war,1433446451 +92485,134170,crowdfunded,1450320620 +92485,134170,short film,1450320588 +92485,134515,bycicle,1449723760 +92485,134526,animated,1433285182 +92485,134526,computer animation,1450451737 +92485,134526,race,1433285200 +92485,134526,talking animals,1433285190 +92485,134526,zodiac,1433285264 +92485,134530,astronauts,1433331111 +92485,134530,rotoscope,1433331182 +92485,134530,space,1433331107 +92485,134806,period piece,1433990326 +92485,134853,computer animation,1449808937 +92485,135135,dog,1435282873 +92485,135135,military,1435316640 +92485,135220,Summer Camp,1449822701 +92485,135504,faith,1434937132 +92485,135504,period piece,1434937142 +92485,135504,prayer,1434937168 +92485,135504,world war 2,1434937138 +92485,135504,world war II,1434937162 +92485,135506,Christianity,1434937366 +92485,135506,Religious,1449636586 +92485,136016,animation,1449645950 +92485,136016,computer animation,1450076981 +92485,136016,dinosaurs,1449711841 +92485,136190,animated,1449713730 +92485,136190,animation,1449713727 +92485,136190,farm,1449713737 +92485,136369,animated,1449732274 +92485,136369,animation,1449732271 +92485,136369,based on a tv show,1449732282 +92485,136369,prehistoric,1449732313 +92485,136369,time travel,1449732303 +92485,136562,computers,1450143191 +92485,136588,christmas,1451235010 +92485,136588,postman,1451235047 +92485,136588,Santa Claus,1451235034 +92485,136588,stop motion,1451235000 +92485,136640,animation,1449646885 +92485,136736,christianity,1435942354 +92485,136736,vietnanam war,1435942343 +92485,136736,war,1435942360 +92485,136740,chimpanzee,1435942558 +92485,136800,alien invasion,1451282770 +92485,136800,robots,1451282752 +92485,136846,asteroid,1436023077 +92485,136846,astronauts,1452952221 +92485,136846,space,1436023068 +92485,136960,bugs,1450493124 +92485,137409,Mall,1449814212 +92485,137475,animation,1449732649 +92485,137475,based on video game,1449732657 +92485,137475,video game adaption,1450513400 +92485,138916,bugs,1450493037 +92485,139759,made for tv,1450468654 +92485,139855,animation,1449646951 +92485,140345,animated,1449732408 +92485,140345,animation,1449732411 +92485,140345,based on a tv show,1449732405 +92485,140397,farm,1449716406 +92485,140715,hip hop,1451766517 +92485,140715,music business,1451518196 +92485,141544,gore,1449650029 +92485,141646,Made for Tv,1449812782 +92485,141668,christian,1449710765 +92485,141668,religious,1449710762 +92485,141994,Christmas,1449636421 +92485,141994,religious,1449636427 +92485,142422,Christmas,1449636330 +92485,142507,chess,1449826257 +92485,142663,animated,1449715725 +92485,142663,animation,1449715722 +92485,142997,animation,1449645986 +92485,142997,vampire,1449645995 +92485,143245,animation,1449646095 +92485,143563,zombies,1450494742 +92485,145028,music business,1451765904 +92485,145030,based on a true story,1450099222 +92485,145030,mining,1450099208 +92485,145700,asteroid,1450513069 +92485,145921,soccer,1449897065 +92485,145921,sports,1449897075 +92485,145935,animation,1449646120 +92485,145935,based on a comic,1450076911 +92485,145935,based on comic,1449646141 +92485,145935,based on comics,1449646129 +92485,145935,computer animation,1450076921 +92485,146491,moon,1450437132 +92485,146684,short film,1450321179 +92485,146926,astronauts,1452952038 +92485,148240,Christmas,1449645191 +92485,148286,made for television,1450234896 +92485,148286,made for tv,1450331915 +92485,148286,musical,1450234891 +92485,148408,Mars,1449650904 +92485,148618,animated,1449711947 +92485,148618,animation,1449711950 +92485,148618,dinosaur,1449711954 +92485,148618,prehistoric,1449711979 +92485,148618,time travel,1449711975 +92485,148624,animated,1449732233 +92485,148624,animation,1449732230 +92485,148624,based on a tv show,1449732227 +92485,148624,talking animals,1449732241 +92485,148634,christmas,1449840442 +92485,148640,made for tv,1449812710 +92485,148640,Mall,1449812702 +92485,148640,Musical,1449812706 +92485,148850,stop motion,1451235175 +92485,148881,future,1450320843 +92485,148881,short film,1450320841 +92485,148926,made for tv,1450468489 +92485,148926,spiders,1450468465 +92485,148952,19th century,1450519781 +92485,148952,circus,1450519728 +92485,148952,nineteenth century,1450519741 +92485,148952,period piece,1450519745 +92485,148952,plague,1450519785 +92485,149088,animated,1450687516 +92485,149088,animation,1450687512 +92485,149088,musical,1450687509 +92485,149392,Christmas,1451235416 +92485,149546,christmas,1451236329 +92485,149546,stop motion,1451236326 +92485,149574,made for tv,1451236153 +92485,149574,snowman,1451236174 +92485,149574,stop motion,1451236149 +92485,149576,christmas,1451236512 +92485,149576,made for tv,1451236509 +92485,149578,baking,1451236638 +92485,149578,christams,1451236643 +92485,149578,made for tv,1451236655 +92485,149580,christmas,1451236776 +92485,149580,made for tv,1451236779 +92485,149582,made for tv,1451236879 +92485,149666,mst3k,1451535210 +92485,149666,music business,1451535201 +92485,150230,bullying,1453761340 +92501,2023,organized crime,1347834500 +92501,3006,Al Pacino,1347834486 +92509,318,bankchiiting,1451495505 +92509,134130,Chiwetel Ejiofor,1451495541 +92509,134130,matt damon,1451495535 +92509,134130,NASA,1451495539 +92509,134130,sci-fi,1451495528 +92509,139385,bear Mouling,1451849432 +92509,139385,Drama,1451849420 +92509,139385,leonardo DiCarpio,1451849407 +92509,139385,Thriller,1451849426 +92512,6,overrated,1150590824 +92531,109487,action,1420513525 +92531,109487,sci-fi,1420513525 +92531,109487,suspense,1420513525 +92542,2064,dead bunnies,1427235014 +92542,4783,enthralling,1427235343 +92605,55765,boring,1279138050 +92613,1196,action,1442739617 +92613,1196,fantasy,1442739612 +92613,1196,sci-fi,1442739600 +92613,1196,space,1442739609 +92613,1196,Star Wars,1442739625 +92613,5952,Adventure,1442739753 +92613,5952,author:J. R. R. Tolkein,1442739742 +92613,5952,dragons,1442739735 +92613,5952,epic battles,1442739760 +92613,5952,fantasy,1442739749 +92639,318,quest,1343413324 +92639,3949,broken characters,1343412461 +92639,3949,disturbing,1343412461 +92639,3949,feeling of impending doom,1343412461 +92639,3949,tragic,1343412461 +92639,4310,tragic lovestory,1343413385 +92639,5445,Tom Cruise,1343413483 +92639,5995,Shoah,1343413356 +92639,49772,adultery,1343413919 +92639,49772,colonialism,1343413919 +92639,49772,difficult love,1343413919 +92639,49932,disturbing,1343413807 +92639,51834,British History,1343412818 +92639,51834,charismatic male character,1343412818 +92639,51834,society,1343412818 +92639,52579,artists,1343413706 +92639,52579,biography,1343413706 +92639,52579,broken character,1343413059 +92639,52579,broken love,1343413059 +92639,52579,madly in love,1343413059 +92639,52579,nonlinear,1343413658 +92639,55052,broken love,1343413643 +92639,55052,illicit love,1343412859 +92639,55290,broken characters,1343412647 +92639,55290,tragic,1343412648 +92639,64622,messed up character,1343413332 +92639,74458,disturbed characters,1343413264 +92639,79132,broken characters,1343412584 +92639,80463,disturbed characters,1343413227 +92639,89118,adapted from:book,1343412472 +92639,89118,broken character,1343412472 +92639,89118,disturbing,1343412473 +92639,89118,psychopaths,1343412473 +92639,91134,disturbed character,1343413443 +92650,1704,How you like dem apples?,1264726575 +92650,70293,Amy Adams,1264360955 +92650,70293,Meryl Streep,1264360959 +92650,73321,Denzel Washington,1265488262 +92650,73321,Mila Kunis,1265488275 +92650,73321,post-apocalyptic,1265488264 +92675,260,action,1438210214 +92675,260,space,1438210206 +92678,3623,action,1248720426 +92689,19,Jim Carrey,1271019755 +92689,24,reflective,1271020865 +92689,47,psychology,1271019172 +92689,47,twist ending,1271019174 +92689,88,Chris Farley,1271021522 +92689,104,Adam Sandler,1271019851 +92689,111,cult film,1271019718 +92689,180,Kevin Smith,1271020912 +92689,180,view askew,1271020914 +92689,216,Funniest Movies,1271020893 +92689,223,Kevin Smith,1271019427 +92689,586,classic,1271019649 +92689,628,Edward Norton,1271020593 +92689,628,psychology,1271020591 +92689,628,twist ending,1271020592 +92689,724,magic,1271020745 +92689,1089,Quentin Tarantino,1271019714 +92689,1625,psychological,1271019955 +92689,1625,twist ending,1271019954 +92689,1682,dark comedy,1271019762 +92689,1682,Jim Carrey,1271019765 +92689,1805,Bill Murray,1271020996 +92689,1805,twist ending,1271020991 +92689,1923,Ben Stiller,1271019690 +92689,1923,comedy,1271019693 +92689,2291,dark comedy,1271019825 +92689,2321,satire,1271020435 +92689,2329,Edward Norton,1271019856 +92689,2502,comedy,1271018517 +92689,2502,satire,1271018514 +92689,2694,Adam Sandler,1271020733 +92689,2700,parody,1271019881 +92689,2700,satire,1271019878 +92689,3052,Comedy,1271019449 +92689,3052,Kevin Smith,1271019443 +92689,3052,satire,1271019447 +92689,3994,twist ending,1271020531 +92689,4052,geeks,1271018832 +92689,4052,Ryan Phillippe,1271018835 +92689,4226,cult film,1271019710 +92689,4226,psychology,1271019707 +92689,4226,twist ending,1271019706 +92689,4720,twist ending,1271020875 +92689,4734,Kevin Smith,1271021244 +92689,4848,nonlinear,1271020955 +92689,4848,surreal,1271020958 +92689,4874,Kevin Spacey,1271021256 +92689,4878,psychology,1271020441 +92689,4975,comedy,1271021023 +92689,4975,psychology,1271021022 +92689,6874,nonlinear,1271019897 +92689,6874,Quentin Tarantino,1271019893 +92689,8784,psychology,1271021003 +92689,38061,dark comedy,1271019234 +92689,44195,dark comedy,1271021342 +92689,44665,Bruce Willis,1271018477 +92689,44665,twist ending,1271018472 +92689,58494,Rachel McAdams,1271018497 +92689,59126,religion,1271019464 +92689,59126,thought-provoking,1271019466 +92689,68358,time travel,1271019199 +92689,74458,psychological,1271019294 +92700,260,space adventure,1441680577 +92708,260,科幻 冒险,1440661034 +92708,593,剧情,1441014665 +92708,593,惊悚,1441014661 +92708,58559,action,1441014599 +92708,58559,Batman,1441014590 +92708,58559,小丑,1441014626 +92730,29,dystopia,1151434996 +92730,29,mechanized,1151435012 +92730,29,surreal,1151435001 +92730,50,Benicio Del Toro,1151434550 +92730,50,Best of the 90's,1151434568 +92730,50,caper movie,1151434467 +92730,50,flash back,1151434467 +92730,50,Gabriel Byrne,1151434550 +92730,50,Kevin Spacey,1151434467 +92730,50,twist ending,1151434467 +92730,1060,just broke up with a GF of 3.5 years.,1152830602 +92730,2959,mental illness,1151434037 +92730,2959,metaplot,1151434037 +92730,2959,social commentary,1151434107 +92730,2997,metaplot,1151433975 +92730,2997,surreal,1151433981 +92730,4226,metaplot,1151433940 +92730,8950,metaplot,1151433959 +92730,40583,George Clooney,1151677701 +92730,40583,Matt Damon,1151677701 +92730,44761,detective movie,1151433823 +92730,44761,film noir,1152908128 +92730,44761,high school,1151433869 +92730,44761,slang,1151433914 +92737,3578,test,1221665864 +92754,44665,great ending,1422697486 +92754,44665,twist ending,1422697474 +92754,47525,intimate,1430839204 +92754,47525,male nudity,1430839195 +92754,47525,nudity (topless),1430839202 +92754,88405,sex,1422183207 +92780,47,stereotyped characters,1360447730 +92780,193,satire,1360450864 +92780,293,over the top,1360518320 +92780,300,forgettable,1360625217 +92780,364,hasty,1360466039 +92780,746,antagonist,1360518580 +92780,746,dialogue,1360518580 +92780,899,happy,1360465463 +92780,900,musical numbers,1360541942 +92780,902,Audrey Hepburn,1360464600 +92780,902,Blake Edwards,1360464605 +92780,902,moon river,1360464598 +92780,903,disturbing,1360448771 +92780,903,intense,1360448781 +92780,903,paranoid,1360448784 +92780,904,thrilling,1360448837 +92780,909,profound,1360518751 +92780,918,halloween scene,1360542403 +92780,918,memorable,1360542419 +92780,918,The Trolley Song,1360542460 +92780,922,atmospheric,1360464363 +92780,922,dark,1360464367 +92780,922,morbid,1360464376 +92780,922,satirical,1360464369 +92780,926,Bette Davis,1360465490 +92780,926,great dialogue,1360465487 +92780,928,ghosts/afterlife,1360449027 +92780,934,funny,1360542518 +92780,934,realistic relationships,1360542511 +92780,934,Spencer Tracy,1360542485 +92780,934,sweet,1360542515 +92780,935,Triplets,1360542393 +92780,937,Audrey Hepburn,1360541171 +92780,937,Billy Wilder,1360541174 +92780,940,Olivia de Havilland,1360464968 +92780,950,chemistry between actors,1360465304 +92780,950,Myrna Loy,1360465292 +92780,950,William Powell,1360465287 +92780,951,dialogue driven,1360465050 +92780,951,Howard Hawks,1360465051 +92780,951,Screwball,1360465054 +92780,951,talky,1360465045 +92780,954,emotional,1361664178 +92780,954,Frank Capra,1360532390 +92780,954,Heartwarming,1360532384 +92780,954,James Stewart,1360532392 +92780,954,passionate,1360532399 +92780,955,dialogue driven,1360465819 +92780,955,funny as hell,1360465814 +92780,1084,violent,1360464747 +92780,1089,dialogue,1360518250 +92780,1104,sexual,1360465265 +92780,1173,grotesque,1361663835 +92780,1173,Peter Greenaway,1361663850 +92780,1183,pedantic,1360625676 +92780,1200,tense,1360518233 +92780,1206,violence,1360518334 +92780,1208,disturbing,1360519036 +92780,1214,boring,1360518138 +92780,1214,Direction,1360560925 +92780,1217,beautiful,1360459414 +92780,1217,visceral,1360459423 +92780,1219,Alfred Hitchcock,1361663728 +92780,1219,cinematography,1361663737 +92780,1219,disturbing,1360465093 +92780,1219,tense,1361663744 +92780,1221,complex characters,1360449189 +92780,1221,romantic,1360449164 +92780,1221,violence,1360449167 +92780,1222,dialogue,1360625306 +92780,1222,directing,1360625280 +92780,1222,editing,1360625274 +92780,1226,beautiful,1360463780 +92780,1226,cinematography,1360532702 +92780,1226,John Ford,1360532686 +92780,1226,John Wayne,1360532691 +92780,1226,Maureen O'Hara,1360532695 +92780,1227,baroque,1360460021 +92780,1248,long take,1360448709 +92780,1250,thrilling,1360465801 +92780,1259,nostalgic,1360625381 +92780,1260,atmospheric,1360459629 +92780,1260,disturbing,1360459636 +92780,1284,Bogart and Bacall,1360464285 +92780,1284,sexy,1360464258 +92780,1304,editing,1360518976 +92780,1320,strange,1360626068 +92780,1333,Alfred Hitchcock,1360465189 +92780,1333,strange,1360465182 +92780,1343,thrilling,1360541564 +92780,1391,crazy,1360625540 +92780,1407,stupid,1360625562 +92780,1485,corny,1360625468 +92780,1485,unfunny,1360625478 +92780,1625,David Fincher,1360625807 +92780,1676,satire,1360450809 +92780,1676,social commentary,1360450815 +92780,1859,meditative,1360519452 +92780,1940,didactic,1360624746 +92780,1940,over the top,1360624818 +92780,1945,redemption,1360449142 +92780,1947,choreography,1360518626 +92780,1947,Dance,1360518612 +92780,1950,Rod Steiger,1360449085 +92780,2000,directing,1360625580 +92780,2022,soundtrack,1360541397 +92780,2022,storytelling,1360541489 +92780,2066,atmospheric,1360464923 +92780,2066,noir,1360464920 +92780,2118,atmospheric,1360447822 +92780,2118,Christopher Walken,1361664283 +92780,2118,cinematography,1361664308 +92780,2118,David Cronenberg,1361664298 +92780,2118,hasty,1360447801 +92780,2126,Brian De Palma,1360519333 +92780,2126,long takes,1360519351 +92780,2176,tense,1360519384 +92780,2182,dramatic,1360541068 +92780,2184,cinematography,1360541024 +92780,2186,great concept,1360449371 +92780,2329,over the top,1360625150 +92780,2329,simplistic,1360625147 +92780,2488,Michael Powell,1360459455 +92780,2488,voyeurism,1360459491 +92780,2648,editing,1360464641 +92780,2692,directing,1360625714 +92780,2710,atmospheric,1360561034 +92780,2712,atmospheric,1360626117 +92780,2712,dreamlike,1360626111 +92780,2712,Stanley Kubrick,1360626119 +92780,2730,cinematography,1360459843 +92780,2731,freedom,1360448366 +92780,2731,reflective,1360448333 +92780,2732,beauty,1360448099 +92780,2847,humanism,1360541694 +92780,2847,monumental,1360541664 +92780,2916,Paul Verhoeven,1360625399 +92780,2925,existentialism,1360459404 +92780,2940,Rita Hayworth,1360464764 +92780,3022,funny,1360459933 +92780,3038,cynical,1360465585 +92780,3038,Elia Kazan,1360465589 +92780,3038,Patricia Neal,1360465599 +92780,3038,satirical,1360465581 +92780,3076,Billy Wilder,1360541218 +92780,3076,cinematography,1360541206 +92780,3076,Jack Lemmon,1360541212 +92780,3076,Shirley McLaine,1360541214 +92780,3089,realism,1360459386 +92780,3095,dance scene,1360465243 +92780,3095,depressing,1360465250 +92780,3095,Henry Fonda,1360465233 +92780,3095,John Ford,1360465214 +92780,3196,thrilling,1360465729 +92780,3365,atmospheric,1360459772 +92780,3365,cinematography,1360459874 +92780,3365,complex morality,1360459757 +92780,3365,John Ford,1360459740 +92780,3365,John Wayne,1360459745 +92780,3365,racism,1360459762 +92780,3365,reflective,1360459735 +92780,3462,social commentary,1360459951 +92780,3462,sociology,1360459960 +92780,3578,dialogue,1360518032 +92780,3578,direction,1360624895 +92780,3578,editing,1360624900 +92780,3623,cheesy,1360625638 +92780,3736,angry,1360541160 +92780,3801,Saul Bass,1360465020 +92780,4022,ending,1360561346 +92780,4194,beautiful scenery,1360460280 +92780,4194,beautifully filmed,1360460280 +92780,4194,Emeric Pressburger,1360460252 +92780,4194,Michael Powell,1360460249 +92780,4401,John Ford,1360559520 +92780,4401,John Wayne,1360559522 +92780,4404,cinematography,1360464224 +92780,4404,silent,1360464240 +92780,4405,cinematography,1360465636 +92780,4406,complex morality,1360463934 +92780,4406,law,1360463913 +92780,4406,western,1360463919 +92780,4408,boring,1360560878 +92780,4408,talky,1360560880 +92780,4427,dialogue,1362276325 +92780,4427,Exceptional Acting,1362276293 +92780,4427,great performances,1362276284 +92780,4427,intelligent,1362276297 +92780,4427,Katharine Hepburn,1362276310 +92780,4427,Katherine Hepburn,1362276303 +92780,4427,Peter O'Toole,1362276300 +92780,4432,great storytelling,1360464718 +92780,4433,melodrama,1360459800 +92780,4704,Howard Hawks,1360541731 +92780,4704,John Wayne,1360541736 +92780,4878,boring,1360625629 +92780,4958,editing,1361644425 +92780,4963,annoying,1360625071 +92780,4995,over the top,1360625324 +92780,5037,emotional,1360532645 +92780,5037,John Ford,1360532671 +92780,5037,Maureen O'Hara,1360532671 +92780,5037,Tyrone Power,1360532671 +92780,5114,storytelling,1360542312 +92780,5119,Albert Finney,1360541882 +92780,5119,atmospheric,1360541893 +92780,5119,british new wave,1360541886 +92780,5184,cinematography,1360465870 +92780,5184,epic,1360465876 +92780,5184,monumental,1360465897 +92780,5291,enigmatic,1360459722 +92780,5349,simplistic,1360625047 +92780,5489,atmospheric,1360464137 +92780,5489,goth,1360464162 +92780,5489,visual,1360464141 +92780,5825,beautifully filmed,1360464824 +92780,5825,Powell and Pressburger,1360464775 +92780,5825,satire,1360464812 +92780,5974,beautiful,1360464060 +92780,5974,fairy tale,1360464065 +92780,5974,fantasy,1360464050 +92780,6031,Douglas Sirk,1360459285 +92780,6031,melodrama,1360459274 +92780,6250,pointless,1360519263 +92780,6273,angry,1360542168 +92780,6323,camerawork,1360560501 +92780,6323,silly,1360449978 +92780,6429,unique,1360518705 +92780,6522,funny,1360541781 +92780,6579,Billy Wilder,1360464179 +92780,6579,Funny as hell,1360464172 +92780,6579,James Cagney,1360464175 +92780,6581,atmospheric,1360541227 +92780,6581,Billy Wilder,1360541231 +92780,6581,ending,1360541240 +92780,6609,profound,1360464553 +92780,6611,meditative,1360465755 +92780,6611,neorealism,1360465769 +92780,6684,art,1360559826 +92780,6684,baroque,1360559809 +92780,6684,Dirk Bogarde,1360559835 +92780,6684,Luchino Visconti,1360559848 +92780,6684,musician,1360559804 +92780,6856,James Cagney,1360542243 +92780,6856,melodrama,1360542253 +92780,6856,Walter Huston,1360542238 +92780,6975,shocking,1360519429 +92780,6981,profound,1360459573 +92780,6981,religion,1360459565 +92780,6985,breathtaking,1360459658 +92780,7013,dreamlike,1360448976 +92780,7013,lyrical,1360448970 +92780,7068,elegant,1360448247 +92780,7068,hallucinatory,1360448239 +92780,7071,intimate,1360459597 +92780,7116,one of the most tense and suspenseful movies ever made,1360448932 +92780,7210,John Ford,1360465673 +92780,7210,poetic,1360465664 +92780,7210,unique,1360465703 +92780,7419,insane,1360541335 +92780,7419,surreal,1360541332 +92780,7587,thrilling,1360464877 +92780,7700,tense,1360465778 +92780,7883,cinematography,1360465388 +92780,7883,Jacques Tourneur,1360465381 +92780,8044,visually appealing,1360449286 +92780,8094,symbolism,1360542035 +92780,8154,Nino Rota,1360448301 +92780,8197,agonizing,1360448172 +92780,8197,memory,1360448135 +92780,8405,atmospheric,1360464490 +92780,8491,thrilling,1360449260 +92780,8618,subversive,1360460314 +92780,25788,Howard Hawks,1360449237 +92780,25788,violent,1360449226 +92780,25805,lyrical,1360459830 +92780,25818,cinematography,1360532529 +92780,25818,John Ford,1360532532 +92780,25905,Preston Sturges,1360465650 +92780,25905,sweet,1360465647 +92780,25940,mirrors,1360459328 +92780,25954,lyrical,1360464660 +92780,25954,strange,1360464687 +92780,26003,memory,1360464450 +92780,26082,profound,1360465355 +92780,26082,tense,1360465351 +92780,26119,angry,1360448600 +92780,26119,disturbing,1360448593 +92780,26119,violence,1360448584 +92780,31309,Luchino Visconti,1360465416 +92780,31309,symbolism,1360465429 +92780,32525,Max Ophüls,1360460357 +92780,32525,reflective,1360460354 +92780,34048,symbolism,1360450777 +92780,42094,cinematography,1360464576 +92780,43699,madness,1360518528 +92780,43699,profound,1360518519 +92780,44004,annoying,1361663644 +92780,46925,Characters with great depth,1360559914 +92780,46925,Robert Mitchum,1360559883 +92780,46925,Robert Wise,1360559890 +92780,46925,Shirley MacLaine,1360559883 +92780,48780,atmospheric,1360560379 +92780,48780,Christian Bale,1360560349 +92780,48780,Christopher Nolan,1360560363 +92780,48780,editing,1360560369 +92780,51540,cinematography,1360625869 +92780,51540,David Fincher,1360625872 +92780,51540,directing,1360625856 +92780,51540,editing,1360625860 +92780,51540,obsession,1360625850 +92780,51678,dialogue,1360541906 +92780,51773,complex characters,1360547736 +92780,51773,moral ambiguity,1360547749 +92780,52328,camerawork,1360519049 +92780,52328,danny boyle,1360519057 +92780,52352,calm,1360532600 +92780,52352,John Ford,1360532607 +92780,52352,Will Rogers,1360532614 +92780,52742,Anthony Mann,1360518724 +92780,52742,Barbara Stanwyck,1360518718 +92780,52742,Walter Huston,1360518723 +92780,53519,homage,1360560781 +92780,53519,Kurt Russell,1360560763 +92780,53519,Quentin Tarantino,1360560762 +92780,53519,stylized,1360560791 +92780,53953,atmospheric,1360561321 +92780,53953,claustrophobic,1360561329 +92780,53953,John Cusack,1360561308 +92780,53953,Stephen King,1360561311 +92780,53953,wasted potential,1360561299 +92780,54001,Helena Bonham Carter,1360561080 +92780,58559,Christian Bale,1360560435 +92780,58559,Christopher Nolan,1360560424 +92780,58559,editing,1360560417 +92780,58559,Heath Ledger,1360560441 +92780,58559,music,1360560446 +92780,59615,insane,1360537910 +92780,63876,over the top,1360561463 +92780,64957,melodrama,1360450489 +92780,64957,philosophical,1360450520 +92780,64957,touching,1360450502 +92780,65130,shallow,1360447982 +92780,69844,boring,1360561056 +92780,69844,Helena Bonham Carter,1360561059 +92780,72998,classicism,1360560684 +92780,74458,atmospheric,1360560966 +92780,74458,cinematography,1360560975 +92780,74545,atmospheric,1361644153 +92780,78893,M. Night Shyamalan,1361644479 +92780,78893,meditative,1361655021 +92780,79132,Christopher Nolan,1360560177 +92780,79132,complicated,1360450038 +92780,79132,editing,1360560148 +92780,79132,talky,1360450057 +92780,80126,enigmatic,1360519392 +92780,80463,cinematography,1360625886 +92780,80463,complex characters,1360625941 +92780,80463,directing,1360625926 +92780,80463,editing,1360625922 +92780,80463,loneliness,1360625913 +92780,80463,plot,1360625932 +92780,80463,sex,1360625901 +92780,80463,witty,1360625895 +92780,81591,camerawork,1360560616 +92780,81591,editing,1360560606 +92780,81591,Natalie Portman,1360560593 +92780,81591,pedantic,1360560631 +92780,81834,Helena Bonham Carter,1360561005 +92780,88125,acting,1360561137 +92780,88125,atmospheric,1360561116 +92780,88125,boring,1360561150 +92780,88125,cinematography,1360561144 +92780,88125,Daniel Radcliffe,1362276118 +92780,88125,Direction,1361663566 +92780,88566,baroque,1360519158 +92780,88566,melodrama,1360519148 +92780,88744,cgi,1360626030 +92780,88744,touching,1360626026 +92780,88744,weak third act,1360626038 +92780,89904,boring,1360561179 +92780,89904,directing,1360561189 +92780,89904,overacting,1360561235 +92780,89904,pretentious,1360561174 +92780,89904,silly,1360561184 +92780,90866,cinematography,1360541590 +92780,90866,heartwarming,1360541605 +92780,90866,visually appealing,1360541598 +92780,91500,shaky camera,1360450656 +92780,91529,acting,1360560252 +92780,91529,Christian Bale,1362276053 +92780,91529,Christopher Nolan,1360560244 +92780,91529,comic book,1362276084 +92780,91529,dark,1360560258 +92780,91529,editing,1360560281 +92780,91529,ending,1360560272 +92780,91529,nuclear bomb,1362276088 +92780,91529,plot,1360560224 +92780,91529,plot twist,1360560326 +92780,91529,political commentary,1362276066 +92780,91529,self-important,1360560236 +92780,91529,trilogy,1362276074 +92780,91658,atmospheric,1360625981 +92780,91658,David Fincher,1360625968 +92780,91658,editing,1361663693 +92780,91658,Rooney Mara,1362276210 +92780,91658,strong female lead,1362276215 +92780,96728,acting,1361664240 +92780,96728,Character study,1360518425 +92780,96728,Joaquin Phoenix,1360518435 +92780,96728,odd,1360518415 +92780,96728,Paul Thomas Anderson,1360518458 +92780,96728,Philip Seymour Hoffman,1360518447 +92780,96811,realistic relationships,1360519025 +92780,97304,dialogue,1360537527 +92780,97304,writing,1360537517 +92780,97938,talky,1360450428 +92780,98056,sadistic,1360450551 +92780,98154,cinematography,1360450380 +92780,98154,sally field,1360450388 +92780,98154,Spielberg,1360450392 +92780,98961,complex morality,1361664029 +92780,98961,criticism,1360450281 +92780,98961,Jessica Chastain,1362276560 +92780,98961,Kathryn Bigelow,1362276555 +92780,98963,Brazil,1360559956 +92795,110,Loved it,1181583382 +92795,356,Funny,1181583323 +92795,356,sad but good,1181583323 +92795,593,Freaked me out!,1181583338 +92795,1339,eerie,1181583012 +92795,3033,Too funny!!,1181582903 +92795,41573,Funny,1181582821 +92806,115617,inspiring,1429671890 +92833,520,funny,1143128494 +92833,2470,funny,1143128485 +92846,101614,Sf,1452043847 +92847,750,ending kinda ruined it,1294314453 +92871,46578,Nietzche,1179541018 +92879,260,Science Fiction,1442346724 +92879,260,space adventure,1442346729 +92879,318,prison escape,1442346839 +92879,858,mob,1442346858 +92891,162,documentary,1279852912 +92891,482,heist,1247069895 +92891,665,Golden Palm,1245075777 +92891,1201,spaghetti western,1268024006 +92891,1245,Coen Brothers,1260189796 +92891,1354,Lars von Trier,1260772444 +92891,1730,Philip Glass,1269881736 +92891,3578,Rome,1279963913 +92891,4978,Australian,1209627023 +92891,5056,Werner Herzog,1209625866 +92891,5902,dark comedy,1279999026 +92891,5932,Werner Herzog,1246964549 +92891,6126,stylized,1246964581 +92891,6508,Australian,1280094935 +92891,6641,Michael Haneke,1260772464 +92891,6975,Michael Haneke,1256442122 +92891,7099,Studio Ghibli,1252238343 +92891,7371,Lars von Trier,1260847332 +92891,8367,Michael Haneke,1256103641 +92891,26850,Michael Haneke,1256442133 +92891,31522,stylized,1252329518 +92891,31547,Werner Herzog,1251161150 +92891,31930,French New Wave,1247331845 +92891,32979,Australian,1248671768 +92891,32979,Rolf de Heer,1248671777 +92891,33621,australian,1280094937 +92891,36276,dysfunctional family,1256442149 +92891,36276,Michael Haneke,1256442154 +92891,39292,historical,1247070204 +92891,41721,Australian,1279976477 +92891,48165,Michael Haneke,1256442120 +92891,54881,documentary,1268024134 +92891,60333,Werner Herzog,1246964559 +92891,66019,ecstatic truth,1233951099 +92891,66019,Werner Herzog,1268024104 +92891,68157,gratuitous violence,1251161274 +92891,69481,realistic,1248148370 +92891,69481,War,1248148361 +92891,71108,Golden Palm,1256103679 +92891,71108,Michael Haneke,1256103696 +92891,71464,coen brothers,1260189733 +92891,71464,jewish,1260189721 +92891,73344,prison,1265236594 +92891,85394,documentary,1308197429 +92894,213,Nikita Mikhalkov,1442739695 +92894,213,Oscar (Best Foreign Language Film),1442739674 +92894,213,Russian communist tragedy,1442739688 +92894,215,intelligent,1378654559 +92894,215,quirky,1378654620 +92894,215,reflective,1378654563 +92894,318,inspirational,1378654745 +92894,318,Morgan Freeman,1378654738 +92894,318,Stephen King,1378654734 +92894,593,Anthony Hopkins,1378654855 +92894,593,cannibalism,1378654870 +92894,593,Jodie Foster,1378654859 +92894,593,mental illness,1378654865 +92894,593,serial killer,1378654862 +92894,1089,quirky,1399729771 +92894,1200,aliens,1398407098 +92894,1200,violent,1398407095 +92894,1210,aliens,1378926069 +92894,1210,George Lucas,1378926055 +92894,1210,sci-fi,1378926063 +92894,1210,Star Wars,1378926059 +92894,1265,Bill Murray,1378654912 +92894,1584,Jodie Foster,1378654788 +92894,1584,mathematics,1378654793 +92894,1584,Matthew McConaughey,1387447597 +92894,1584,sci-fi,1378654791 +92894,3006,intelligent,1387447661 +92894,3006,Russell Crowe,1387447648 +92894,3006,true story,1387447663 +92894,3869,comedy,1388700564 +92894,3869,I laughed continuosly throughout this film,1388700559 +92894,3869,screwball,1388700567 +92894,4874,aliens,1378654835 +92894,4874,intellectual,1378654828 +92894,4874,Kevin Spacey,1378654825 +92894,7254,Ashton Kutcher,1378654926 +92894,7254,twists & turns,1378654937 +92894,7371,Nicole Kidman,1399790044 +92894,7371,philosophy,1399790047 +92894,7460,Atmospheric,1388689090 +92894,7460,episodic,1388689094 +92894,7460,no plot,1388689084 +92894,8014,episodic,1388781881 +92894,8014,great photograpy,1388781857 +92894,8014,meditative,1388781876 +92894,8014,quiet,1388781874 +92894,41285,boring,1388689901 +92894,41285,slow,1388689898 +92894,48082,dreams,1388689151 +92894,48082,fantasy,1388689149 +92894,48082,Michel Gondry,1388689147 +92894,48082,psychology,1388689155 +92894,48082,romance,1388689153 +92894,48082,unusual,1388689159 +92894,54259,fairy tale,1388700246 +92894,54259,magic,1388700250 +92894,54259,Robert De Niro,1388700244 +92894,54259,romance,1388700255 +92894,61236,slow paced,1388689360 +92894,61236,surreal,1388689365 +92894,61236,thought-provoking,1388689354 +92894,61236,touching,1388689357 +92894,62054,Nikita Mikhalkov,1442739737 +92894,62511,Charlie Kaufman,1388689118 +92894,62511,Philip Seymour Hoffman,1388689116 +92894,62511,thought-provoking,1388689123 +92894,64839,touching,1420567019 +92894,66934,anti-hero,1438465945 +92894,66934,funny,1438465953 +92894,69122,absurd,1380219688 +92894,69122,drugs,1380219703 +92894,69122,unfunny,1380219695 +92894,72641,based on a true story,1420815239 +92894,72641,feel good,1420815248 +92894,72641,Sandra Bullock,1420815233 +92894,79357,confusing,1446759511 +92894,79357,style over substance,1446759497 +92894,88179,Anne Hathaway,1399753019 +92894,88179,Unexpected Ending,1447365809 +92894,103980,pointless,1404037380 +92894,104374,Bill Nighy,1420815164 +92894,104374,charming,1420815156 +92894,104374,touching,1420815160 +92894,104841,3D effects,1385452094 +92894,104841,George Clooney,1385452091 +92894,104841,physics,1385452109 +92894,104841,sandra bullock,1385452088 +92894,104841,science,1385452098 +92894,104841,visually appealing,1385452102 +92894,106489,author:J. R. R. Tolkein,1388686333 +92894,106489,double frame rate,1388686348 +92894,106489,fantasy,1388686338 +92894,106489,Stephen Fry,1388686330 +92894,106916,amy adams,1396416416 +92894,106916,Bradley Cooper,1396416418 +92894,106916,Christian Bale,1396416412 +92894,106916,con artists,1396416420 +92894,106916,Jennifer Lawrence,1396416414 +92894,106918,Iceland,1415049993 +92894,106918,travel,1415049999 +92894,106918,visually appealing,1415049995 +92894,107771,atmospheric,1399751866 +92894,107771,not really a horror movie,1399751888 +92894,107771,Tilda Swinton,1399751877 +92894,107771,Tom Hiddleston,1399751882 +92894,107771,visually stunning,1399751896 +92894,109374,Bill Murray,1397641765 +92894,109374,Edward Norton,1397641763 +92894,109374,Ralph Fiennes,1397641772 +92894,109374,visually appealing,1397641755 +92894,109374,Wes Anderson,1397641757 +92894,110102,Chris Evans,1414913020 +92894,110102,cyborgs,1414913024 +92894,110102,Nazis,1414913031 +92894,110102,Scarlett Johansson,1414913017 +92894,110586,Brendan Gleeson,1400776194 +92894,110586,John Michael McDonagh,1400770085 +92894,110586,nature,1400770142 +92894,110586,religion,1400770104 +92894,111362,James McAvoy,1402819436 +92894,111362,Jennifer Lawrence,1402819432 +92894,111362,Patrick Stewart,1402819439 +92894,112183,Academy Award Nominee,1422741406 +92894,112183,Edward Norton,1422741401 +92894,112183,great performances,1422741396 +92894,112183,magical realism,1429191599 +92894,112556,mindfuck,1414254938 +92894,112556,Predictable Twist,1414254945 +92894,112852,fun,1407334586 +92894,112852,great soundtrack,1407334598 +92894,142448,josh brolin,1443872661 +92894,142448,mountaineering,1443872613 +92918,122886,sci-fi,1452407834 +92918,134130,sci-fi,1452407888 +92933,319,disturbing,1148601350 +92962,6776,cricket,1442536134 +92962,120138,religious intolerance,1442536102 +92965,33794,superheros,1180557083 +92966,1215,parody,1445847926 +92966,79008,irreverent,1445848461 +92966,117728,comedy,1446272129 +92970,1735,connections between events,1337119078 +92970,1735,life story,1337119049 +92970,40629,Classic,1337119149 +92974,260,futuristic,1444768225 +92974,260,space adventure,1444768245 +92980,858,Mafia,1443183461 +92990,260,classic sci-fi,1439812280 +92990,260,good vs evil,1439812295 +92990,260,space adventure,1439812264 +92990,8665,assassin,1439814964 +92990,8665,conspiracy,1439814965 +92990,8665,espionage,1439814954 +92990,8665,spy,1439814957 +92990,34405,adventure,1439820496 +92990,34405,Joss Whedon,1439820492 +92990,34405,sci-fi,1439820512 +92990,44191,dark,1439815010 +92990,44191,sci-fi,1439814998 +92990,44191,thought-provoking,1439814983 +92990,58559,superhero,1439815028 +92990,94466,technology,1439814704 +92990,111781,Action,1439814824 +92990,122902,Marvel,1439814774 +93001,293,wonderful love,1442070107 +93001,121618,classic,1442070072 +93050,50,conspiracy,1388904798 +93050,50,Crime,1388904795 +93050,50,Kevin Spacey,1388904792 +93050,50,New York City,1388904784 +93050,50,plot twist,1388904789 +93050,50,twist ending,1388904786 +93050,58,boring,1367033917 +93050,58,italian bittersweet romance,1367033908 +93050,58,poets,1367033914 +93050,58,writers,1367033921 +93050,194,New York City,1378623351 +93050,224,fantasy,1358763624 +93050,224,Johnny Depp,1358763613 +93050,224,mental illness,1358763628 +93050,224,psychology,1358763634 +93050,224,Romance,1358763638 +93050,232,food/cooking,1335762036 +93050,232,minimalist,1335762039 +93050,347,Roman Polanski,1299558546 +93050,953,heartwarming,1398048024 +93050,976,based on a book,1377252286 +93050,976,Ernest Hemingway,1377252266 +93050,976,Hemingway,1377252275 +93050,976,literary adaptation,1377252269 +93050,1185,based on a biography,1360240024 +93050,1185,Daniel Day-Lewis,1360240010 +93050,1185,disability,1360240017 +93050,1185,emotion!,1360240014 +93050,1704,inspirational,1338015128 +93050,1704,mathematics,1338015134 +93050,1704,psychology,1338015121 +93050,1704,Robin Williams,1338015118 +93050,1719,Canada,1350981753 +93050,1719,Incest,1350981767 +93050,1719,Sarah Polley,1350981769 +93050,1784,Helen Hunt,1339775078 +93050,1784,obsessive compulsive disorder,1339775085 +93050,1784,psychology,1339775103 +93050,2278,bank robbery,1407965260 +93050,2278,Jean Reno,1407965251 +93050,2278,Robert De Niro,1407965253 +93050,2966,road trip,1362047909 +93050,2966,siblings,1362047912 +93050,3000,action,1293891581 +93050,3000,anime,1293891575 +93050,3000,fantasy world,1293891541 +93050,3000,surreal,1293891548 +93050,3000,talking animals,1293891567 +93050,3448,Based on a true story,1336288054 +93050,3448,music:rock and roll (1960s),1336288049 +93050,3448,Robin Williams,1336288043 +93050,3448,Vietnam War,1336288060 +93050,3967,ballet,1357553389 +93050,3967,british,1357553392 +93050,3967,coming of age,1357553395 +93050,3967,self discovery,1357553405 +93050,3996,atmospheric,1330684834 +93050,3996,china,1330684841 +93050,3996,dreamlike,1330684844 +93050,3996,Kung Fu,1330684847 +93050,3996,Myth,1330684837 +93050,3996,Oscar (Best Music - Original Score),1330684856 +93050,3996,romance,1330684853 +93050,3996,sword fight,1330684850 +93050,4720,afterlife,1293916839 +93050,4720,alternate reality,1293916843 +93050,4720,Bible,1293916847 +93050,4720,ghosts,1293916833 +93050,4720,gothic,1293916864 +93050,4720,religion,1293916857 +93050,4720,surprise ending,1293916792 +93050,4720,twist ending,1293916828 +93050,4873,Ethan Hawke,1300209768 +93050,4873,philosophy,1300209761 +93050,4973,atmospheric,1355298515 +93050,4973,beautifully filmed,1355298512 +93050,4973,coming of age,1355298517 +93050,4973,idealism,1355298520 +93050,4973,inspirational,1355298534 +93050,4973,notable soundtrack,1355298523 +93050,4973,Paris,1355298526 +93050,4973,romance,1355298532 +93050,4973,surreal,1355298529 +93050,4974,high school,1300018146 +93050,4974,Sports Coordinator:Mark Ellis,1300018146 +93050,5081,Nicole Kidman,1294653034 +93050,5081,Vincent Cassel,1294653036 +93050,5225,bittersweet,1363338503 +93050,5225,comedy,1363338506 +93050,5225,coming of age,1363338522 +93050,5225,drama,1363338526 +93050,5225,Mexico,1363338509 +93050,5225,road trip,1363338512 +93050,5225,romance,1363338515 +93050,5505,Jennifer Aniston,1335127696 +93050,5617,black comedy,1347694954 +93050,5617,dark comedy,1347694970 +93050,5617,romance,1347694966 +93050,5878,psychology,1351072580 +93050,5878,Tragedy,1351072597 +93050,5902,drugs,1300662402 +93050,5902,Nicolas Cage,1300662409 +93050,6711,atmospheric,1327226957 +93050,6711,bittersweet,1329883676 +93050,6711,Scarlett Johansson,1329883670 +93050,6711,tokyo,1329883800 +93050,6942,british,1348624363 +93050,6942,christmas,1348624365 +93050,6942,England,1348624393 +93050,6942,Romance,1348624377 +93050,7147,biography,1296475041 +93050,7147,bittersweet,1296475038 +93050,7147,coming of age,1296475051 +93050,7147,dreamlike,1296475069 +93050,7147,fantasy,1296475065 +93050,7147,imagination,1296475033 +93050,7147,stylized,1296475054 +93050,7147,surreal,1296475021 +93050,7147,Tim Burton,1296475023 +93050,7147,twist ending,1296475025 +93050,7160,based on a true story,1347702749 +93050,7160,Charlize Theron,1347702746 +93050,7160,Crime,1347702756 +93050,7160,dark,1347702753 +93050,7160,serial killer,1347702766 +93050,7160,true story,1347702762 +93050,7306,mexican,1293932320 +93050,7306,New Mexican cinema,1293932327 +93050,8327,melancholy,1330595962 +93050,8327,surreal,1330595965 +93050,8622,conspiracy,1336034343 +93050,8622,Iraq War,1336034336 +93050,8622,Michael Moore,1336034329 +93050,8622,military,1336034339 +93050,8784,cliché ending,1306068836 +93050,8784,death of a parent,1306068867 +93050,8784,father-son relationship,1306068860 +93050,8784,gambling,1306068865 +93050,8784,Great Soundtrack,1306068844 +93050,8784,mental illness,1306068830 +93050,8784,motorcycle,1306068847 +93050,8784,Natalie Portman,1306068814 +93050,8784,New Jersey,1306068854 +93050,8784,psychology,1306068827 +93050,8910,Naomi Watts,1335064341 +93050,8910,philosophy,1335064338 +93050,8910,psychology,1335064353 +93050,8910,silly,1335064357 +93050,8949,dark comedy,1374219051 +93050,8949,midlife crisis,1374219055 +93050,8949,obsession,1374219065 +93050,8970,england,1330843965 +93050,8970,fairy tale,1330843969 +93050,8970,fantasy,1330843952 +93050,8970,Heartwarming,1330843959 +93050,8970,Johnny Depp,1330843962 +93050,8970,true story,1330843974 +93050,8973,child abuse,1363421620 +93050,8973,Christianity,1363421617 +93050,8973,HAUNTED BY THE PAST,1363421608 +93050,8973,love,1363421585 +93050,8973,movie business,1363421604 +93050,8973,Pedro Almodovar,1363421583 +93050,8973,religion,1363421594 +93050,8973,revenge,1363421597 +93050,8973,school,1363421601 +93050,8973,sexual abuse,1363421589 +93050,9010,beautiful color,1347695299 +93050,9010,cruel characters,1347695316 +93050,9010,fantastical imagery,1347695310 +93050,9010,romance,1347695303 +93050,9010,sad ending,1347695306 +93050,26003,documentary,1296474656 +93050,26003,Holocaust,1296474663 +93050,26003,short films,1296474656 +93050,26325,military,1327490189 +93050,26325,Vietnam War,1327490185 +93050,26662,adventure,1299843326 +93050,26662,airplane,1299843331 +93050,26662,birds,1299843333 +93050,26662,Hayao Miyazaki,1299843335 +93050,26662,magic,1299843339 +93050,27266,melancholy,1295821101 +93050,27266,romantic,1295821085 +93050,27266,slow,1295821091 +93050,27266,time travel,1295821096 +93050,27317,audition,1378613380 +93050,27317,torture,1378613376 +93050,27721,Audrey Tautou,1299637477 +93050,27721,Jean-Pierre Jeunet,1299637481 +93050,27721,Romance,1299637489 +93050,27721,true love,1299637499 +93050,27721,World War I,1299637493 +93050,27803,emotional,1300501598 +93050,27803,euthanasia,1300501602 +93050,27803,SUICIDE,1300501615 +93050,27803,suicide attempt,1300501613 +93050,27803,true story,1300501609 +93050,27846,documentary critique,1335697400 +93050,27846,evil corporations,1335697404 +93050,27846,Michael Moore,1335697384 +93050,30803,magic realism,1330690245 +93050,30803,Romantic and sweet,1330690249 +93050,30803,very little dialogue,1330690253 +93050,30822,advertising,1350461338 +93050,30822,basketball,1350461342 +93050,30822,business,1350461346 +93050,30822,New York City,1350461352 +93050,30822,Scarlett Johansson,1350461356 +93050,34542,Alaska,1335778253 +93050,34542,death,1335778261 +93050,34542,documentary,1335778259 +93050,34542,Werner Herzog,1335778256 +93050,36276,boring,1294651644 +93050,36276,Juliette Binoche,1294651662 +93050,36276,revenge,1294651671 +93050,36276,surveillance,1294651679 +93050,36276,talky,1294651688 +93050,38159,loneliness,1360232075 +93050,39183,1970s,1336994523 +93050,39183,bittersweet,1336994520 +93050,39183,emotional,1336994517 +93050,39183,Heath Ledger,1336994528 +93050,39183,homosexuality,1336994533 +93050,39183,melancholy,1336994513 +93050,39183,music,1336994536 +93050,39183,Oscar (Best Directing),1336994538 +93050,39183,scenic,1336994541 +93050,44195,cigarettes,1299558121 +93050,44195,dark comedy,1299558132 +93050,44195,independent film,1299558134 +93050,44195,indie,1299558137 +93050,44195,politics,1299558161 +93050,44195,satire,1299558143 +93050,45730,disappointing,1299193879 +93050,45730,fairy tale,1299193876 +93050,45730,M. Night Shyamalan,1299193857 +93050,46976,Dustin Hoffman,1351580821 +93050,46976,modern fantasy,1351580816 +93050,46976,narrated,1351580812 +93050,46976,suicide attempt,1351580824 +93050,46976,surreal,1351580809 +93050,46976,touching,1351580807 +93050,46976,Will Ferrell,1351580804 +93050,51931,inspirational,1350280996 +93050,51931,Manhattan,1350281000 +93050,51931,mental illness,1350280993 +93050,51931,New York,1350280990 +93050,51931,New York City,1350280987 +93050,52668,Kristen Stewart,1348050104 +93050,52668,Meg Ryan,1348050101 +93050,52885,anime,1327465677 +93050,52885,dreams,1327465673 +93050,52885,surreal,1327465680 +93050,52967,Alzheimer's disease,1350981841 +93050,52967,memory loss,1350981849 +93050,52967,Sarah Polley,1350981845 +93050,53123,bittersweet,1295743952 +93050,53123,great soundtrack,1295743958 +93050,53123,Ireland,1295743962 +93050,53123,musical,1295743965 +93050,53123,romance,1295743971 +93050,53123,wired 50 greatest soundtracks,1295743974 +93050,55245,Black Comedy,1295002318 +93050,55245,Teenage Witch,1295002334 +93050,55247,Alaska,1309300088 +93050,55247,atmospheric,1309300090 +93050,55247,based on a true story,1309300095 +93050,55247,Music,1309300105 +93050,55247,psychology,1309300111 +93050,55247,self discovery,1309300114 +93050,55247,true story,1309300119 +93050,55290,based on a book,1296510527 +93050,55290,Morgan Freeman,1296510521 +93050,55290,police investigation,1296510517 +93050,55290,twist,1296510535 +93050,56715,afterlife,1363428595 +93050,56715,dark comedy,1363428597 +93050,56715,great music,1363428608 +93050,56715,romance,1363428605 +93050,56715,suicide,1363428600 +93050,56715,touching,1363428612 +93050,58047,New York,1297554130 +93050,58047,new york city,1297554134 +93050,58047,Rachel Weisz,1297554137 +93050,59260,Giuseppe Tornatore,1330346575 +93050,59369,action,1359353788 +93050,59369,CIA,1359353793 +93050,59369,father daughter relationship,1359353803 +93050,59369,happy ending,1359353799 +93050,59369,Paris,1359353796 +93050,59387,drugs,1382690590 +93050,59387,hospital,1382690587 +93050,59387,storytelling,1382690584 +93050,59387,suicide attempt,1382690576 +93050,60069,artificial intelligence,1293891322 +93050,60069,Post apocalyptic,1293891292 +93050,60069,romance,1293891307 +93050,60293,depression,1299930426 +93050,60293,drugs,1299930433 +93050,60293,hip-hop,1299930435 +93050,60293,new york,1299930436 +93050,60293,psychiatry,1299930443 +93050,60293,slow,1299930442 +93050,62113,celebrity,1310237922 +93050,62113,Jeff Bridges,1310237929 +93050,62113,success,1310237922 +93050,62155,Manhattan,1388910843 +93050,62155,New York City,1388910840 +93050,66200,Jewish,1298075151 +93050,66200,Joaquin Phoenix,1298075147 +93050,66200,New York City,1298075148 +93050,66200,suicide attempt,1351580915 +93050,66934,anti-hero,1368168722 +93050,66934,bittersweet,1368168719 +93050,66934,free to download,1368168725 +93050,66934,good dialogue,1368168716 +93050,69757,great soundtrack,1336900738 +93050,69757,Los Angeles,1336900733 +93050,69757,Zooey Deschanel,1336900727 +93050,70293,boring,1299725053 +93050,70293,cooking,1299725078 +93050,70293,food,1299725067 +93050,70293,inspiring,1299725074 +93050,70293,New York City,1299725057 +93050,70293,Paris,1299725060 +93050,71033,Argentina,1351589739 +93050,71033,beautiful,1351589745 +93050,71033,crime,1351589735 +93050,71033,excellent script,1351589719 +93050,71033,love,1351589732 +93050,71033,rape,1351589728 +93050,71033,revenge,1351589742 +93050,71033,romance,1351589721 +93050,71033,Spanish,1351589725 +93050,71131,current events,1299729198 +93050,71131,homophobia,1299729167 +93050,71131,Kansas,1299729170 +93050,71579,bittersweet,1330344405 +93050,71579,coming of age,1330344413 +93050,71579,Emma Thompson,1330344418 +93050,71579,England,1330344389 +93050,71579,Paris,1330344393 +93050,71579,school,1330344400 +93050,71899,character study,1299843517 +93050,71899,mental illness,1299843508 +93050,71899,New York City,1299843522 +93050,71899,philosophical,1299843530 +93050,71899,touching,1299843533 +93050,72483,cliche,1296209510 +93050,72483,death,1296209523 +93050,72483,Jesse McCartney,1296209516 +93050,74458,atmospheric,1295834689 +93050,74458,insanity,1295834674 +93050,74458,psychological,1295834675 +93050,74458,twist ending,1295834684 +93050,74789,based on a book,1296571091 +93050,74789,Helena Bonham Carter,1296571094 +93050,74789,Johnny Depp,1296571097 +93050,74789,Tim Burton,1296571104 +93050,76111,Asghar Farhadi,1294010360 +93050,76111,Shahab Hosseini,1294010367 +93050,76111,Taraneh Alidoosti,1294010392 +93050,76111,web of lies,1294010398 +93050,76173,Jean-Pierre Jeunet,1300492967 +93050,76175,epic,1299203370 +93050,76175,fantasy,1299203367 +93050,76175,Greek,1299203358 +93050,76175,philosophy,1299203361 +93050,78039,ebert says,1297203726 +93050,78039,Ryan Gosling,1297203733 +93050,78039,slow moving plot,1297203714 +93050,78039,true to life,1297203719 +93050,78574,death,1363422735 +93050,78574,drugs,1363422723 +93050,78574,realism,1363422732 +93050,78574,thriller,1363422729 +93050,79702,fantasy,1347989207 +93050,79702,fight scenes,1347989195 +93050,79702,surreal,1347989201 +93050,79702,video games,1347989197 +93050,80166,Jennifer Aniston,1300028947 +93050,80166,midlife crisis,1300028959 +93050,80166,New York,1300028947 +93050,80166,predictable ending,1300028948 +93050,80463,based on true story,1296510360 +93050,80463,dark comedy,1296510374 +93050,80463,Justin Timberlake,1296510363 +93050,80463,loneliness,1296510370 +93050,80549,Christianity,1348043561 +93050,80549,Emma Stone,1348043546 +93050,80549,Gay Lead Character,1348043550 +93050,80549,virginity,1348043553 +93050,80864,antonio banderas,1336013698 +93050,80864,Naomi Watts,1336013695 +93050,80864,setting:London (UK),1336013705 +93050,80969,atmospheric,1326457831 +93050,80969,depressing,1326457834 +93050,80969,England,1326457820 +93050,80969,sad,1326457823 +93050,80969,thought-provoking,1326457827 +93050,81562,adventure,1299210370 +93050,81562,James Franco,1299210354 +93050,81562,loneliness,1299210356 +93050,81562,true story,1299210362 +93050,81591,atmospheric,1294605713 +93050,81591,Darren Aronofsky,1294605720 +93050,81641,based on a true story,1335169242 +93050,81641,naomi watts,1335169238 +93050,81641,sean penn,1335169246 +93050,82143,Alaska,1335778199 +93050,82143,DIY,1335778202 +93050,82589,emotional,1334660388 +93050,82589,Naomi Watts,1334660374 +93050,82589,touching,1334660381 +93050,84954,fate,1349905454 +93050,84954,Matt Damon,1349905443 +93050,84954,Romance,1349905446 +93050,86320,cinematography,1352812424 +93050,86320,depression,1352812430 +93050,86320,Lars von Trier,1352812438 +93050,86320,siblings,1352812433 +93050,86882,bittersweet,1337081002 +93050,86882,inspirational,1337080992 +93050,86882,Paris,1337080985 +93050,86898,abstract,1319066154 +93050,86898,dinosaurs,1319066174 +93050,86898,meaning of life,1319066163 +93050,87304,Ewan McGregor,1347530448 +93050,87304,heartwarming,1347530445 +93050,87304,unique story,1347530455 +93050,89864,emotional,1336040530 +93050,91077,family bonds,1374225553 +93050,91077,lawyers,1374225572 +93050,91615,depression,1428137841 +93050,91615,drugs,1428137841 +93050,91615,great opening,1428137841 +93050,91628,feel-good,1349583026 +93050,91628,New York City,1349583026 +93050,91630,action,1359353741 +93050,91630,murder,1359353747 +93050,91630,Romance,1359353750 +93050,91630,Tom Cruise,1359353753 +93050,91630,visuals,1359353756 +93050,92259,based on a true story,1348909395 +93050,92259,disability,1348909399 +93050,92259,emotional,1348909392 +93050,92259,rich and poor,1348909405 +93050,92259,touching,1348909402 +93050,94931,boring,1352634670 +93050,94931,Sarah Polley,1352634663 +93050,94959,Bill Murray,1355391570 +93050,94959,bittersweet,1355391573 +93050,94959,Bruce Willis,1355391578 +93050,94959,small town,1355391582 +93050,94959,stylized,1355391586 +93050,100714,Julie Delpy,1374205659 +93050,100714,phylosophycal,1374205661 +93050,102407,adapted from:book,1375708363 +93050,102407,Leonardo DiCaprio,1384595404 +93050,105355,bittersweet,1409926003 +93050,105355,homosexuality,1409926007 +93050,105355,slow,1409926009 +93050,105355,too long,1409926011 +93050,105355,unsimulated sex,1409926014 +93050,105355,visually appealing,1409926021 +93050,106696,animation,1407965119 +93050,106696,Awful story,1407965125 +93050,106696,Disney,1407965121 +93050,106696,music,1407965128 +93050,106696,siblings,1407965132 +93060,296,great dialogue,1428334702 +93060,296,quentin tarantino,1428334702 +93060,296,violence,1428334702 +93060,33817,England,1138986605 +93060,34405,action,1138797348 +93060,34405,Firefly,1138797348 +93060,34405,good sci-fi flick,1138797348 +93060,68358,sci fi,1242738056 +93060,68358,Star Trek,1242738051 +93069,745,claymation,1168008507 +93072,356,Tom Hanks,1313747975 +93072,3147,Tom Hanks,1313866665 +93072,4014,france,1313749075 +93072,4014,French,1313749079 +93072,4014,Johnny Depp,1313749087 +93072,4728,Rowan Atkinson,1315317170 +93072,4878,time travel,1313748241 +93072,4973,beautifully filmed,1313747929 +93072,4973,inspirational,1313747932 +93072,4975,Tom Cruise,1313749537 +93072,5812,gay,1356296661 +93072,7147,Helena Bonham Carter,1330023223 +93072,7147,Tim Burton,1330023211 +93072,7265,Paris,1387717244 +93072,31408,bittersweet,1338314499 +93072,33171,gay,1313748315 +93072,33171,Joseph Gordon-Levitt,1313748318 +93072,39183,emotional,1313759957 +93072,39183,Heath Ledger,1313760042 +93072,39183,too long,1313760013 +93072,40870,gay,1356293637 +93072,40870,homosexuality,1356293645 +93072,41425,Patricia Clarkson,1314044192 +93072,44191,England,1313749765 +93072,44191,story,1313749756 +93072,48394,atmospheric,1313749598 +93072,48394,fairy tale,1313749599 +93072,48394,imagination,1313749607 +93072,48997,artistic,1313750134 +93072,48997,cannibalism,1313750138 +93072,48997,obsession,1313750143 +93072,50912,French,1356293486 +93072,51540,based on a true story,1313748412 +93072,51540,obsession,1313748410 +93072,51540,Too long,1313748406 +93072,52579,French,1330023682 +93072,52579,Marion Cotillard,1330023357 +93072,54796,Paris,1386972159 +93072,55247,based on a true story,1313747761 +93072,55247,Music,1313747767 +93072,55247,self discovery,1313747764 +93072,56367,Ellen Page,1356293738 +93072,56757,Johnny Depp,1313751771 +93072,56757,Musical,1313751780 +93072,56757,Tim Burton,1313751775 +93072,58806,Ellen Page,1314043909 +93072,63062,based on a true story,1313748378 +93072,63062,Clint Eastwood,1313748383 +93072,63876,biography,1313749808 +93072,63876,gay,1313749813 +93072,63876,Sean Penn,1313749815 +93072,64957,Brad Pitt,1313751942 +93072,64957,cinematography,1313751928 +93072,64957,original plot,1313751931 +93072,64957,touching,1313751933 +93072,67255,swedish,1313761017 +93072,69757,music,1313747886 +93072,69757,no happy ending,1313747890 +93072,71535,funny,1313750502 +93072,74458,Leonardo DiCaprio,1313748947 +93072,74458,twist ending,1313748957 +93072,74789,alternate reality,1330023837 +93072,74789,fairy tale,1330023849 +93072,74789,Helena Bonham Carter,1330023828 +93072,74789,Johnny Depp,1330023828 +93072,74789,Tim Burton,1330023831 +93072,74868,England,1313749145 +93072,76251,superhero,1313749702 +93072,79357,chaos,1313749497 +93072,79357,cinematography,1313749502 +93072,79357,Jared Leto,1313749510 +93072,79357,time travel,1332180149 +93072,81456,overrated,1322066759 +93072,81456,Xavier Dolan,1322066757 +93072,81562,true story,1313747733 +93072,81591,atmospheric,1313748109 +93072,81591,drama,1313748128 +93072,81591,Natalie Portman,1313748113 +93072,81591,psychological,1313748120 +93072,81845,Helena Bonham Carter,1313749903 +93072,82767,Nicole Kidman,1315317287 +93072,86332,Natalie Portman,1315317256 +93072,86882,Owen Wilson,1324408951 +93072,86898,beautifully filmed,1319739641 +93072,86898,cinematography,1319739638 +93072,86898,meaning of life,1319739647 +93072,88810,Emma Stone,1330024282 +93072,89761,Keira Knightley,1330023119 +93072,89761,Psychoanalysis,1330023140 +93072,90376,psychological,1330023097 +93072,97921,Jennifer Lawrence,1357429534 +93072,104312,bad plot,1385903349 +93072,104312,based on a book,1385903353 +93072,104312,plot holes,1385903344 +93072,105869,artistic,1413718130 +93072,105869,based on a true story,1413718135 +93072,105869,Daniel Radcliffe,1413718161 +93072,105869,william burroughs,1413718157 +93084,260,Harrison Ford,1442301481 +93084,260,sci-fi,1442301469 +93088,1249,action,1290037838 +93088,1249,Comedy,1290037841 +93088,1249,French,1290037805 +93088,1249,Luc Besson,1290037800 +93088,1249,murder,1290037844 +93088,1249,romance,1290037810 +93088,1249,Spy,1290037830 +93088,1249,stylized,1290037807 +93088,2167,Badass,1290038182 +93088,2167,comic book,1290038186 +93088,2167,gothic,1290038191 +93088,2167,Hollywood,1290038192 +93088,2167,Marvel,1290038197 +93088,2167,Sword Fight,1290038206 +93088,2167,vampires,1290038208 +93088,2167,Wesley Snipes,1290038202 +93088,3285,drugs,1290038400 +93088,3285,great soundtrack,1290038403 +93088,3285,Leonardo DiCaprio,1290038405 +93088,3285,romance,1290038410 +93088,55247,atmospheric,1290357884 +93088,55247,based on a true story,1290357893 +93088,55247,psychology,1290357908 +93088,55247,road trip,1290357899 +93088,55247,self discovery,1290357904 +93098,260,classic sci-fi,1438650578 +93098,260,oldie but goodie,1438650622 +93131,112556,mindfuck,1426440096 +93131,112556,Psychopathy,1426440113 +93131,112556,unpredictable,1426440122 +93131,113741,psychological,1420481420 +93131,113741,psychothriller,1420481420 +93131,113741,sci-fi,1420481420 +93131,115617,heroes,1426440384 +93131,115617,marvel,1426440384 +93131,115617,pixar,1426440384 +93159,26903,anime,1420759044 +93159,26903,Studio Ghibli,1420759042 +93159,57504,Mamoru Hosoda,1420759061 +93159,57504,time travel,1420759055 +93159,85213,depression,1420637698 +93159,85213,good dialogue,1420637698 +93159,85213,two great actors on screen for two hours!,1420637698 +93159,104841,intense,1420638428 +93159,104841,visually appealing,1420638433 +93159,104841,visually stunning,1420638424 +93159,116905,anime,1421333014 +93159,116905,romance,1421333014 +93159,116905,sci-fi,1421333014 +93176,3949,Darren Aronofsky,1199635753 +93182,260,action,1439800077 +93182,260,space,1439800067 +93204,260,EPIC,1443636998 +93204,260,sci-fi,1443637005 +93204,260,space opera,1443636992 +93204,2542,Guy Ritchie,1443637228 +93213,47,detective,1439519357 +93213,47,investigation,1439519341 +93213,47,Kevin Spacey,1439519332 +93213,47,mystery,1439519344 +93213,47,police,1439519365 +93213,50,great acting,1439519286 +93213,50,Kevin Spacey,1439519265 +93213,50,twist ending,1439519263 +93213,293,Jean Reno,1439583854 +93213,1036,Bruce Willis,1439519055 +93213,1036,christmas,1439519071 +93213,1036,explosions,1439519063 +93213,1036,humorous,1439519061 +93213,1036,thriller,1439519066 +93213,1370,action,1439519119 +93213,1370,Bruce Willis,1439519116 +93213,2762,Bruce Willis,1439519175 +93213,2762,m. night shyamalan,1439519192 +93213,2762,thriller,1439519183 +93213,2762,twist ending,1439519166 +93213,3147,Stephen King,1439519027 +93213,3147,Tom Hanks,1439519025 +93213,4720,Nicole Kidman,1439519229 +93213,4720,twist ending,1439519223 +93213,5013,murder mystery,1439518984 +93213,5013,witty,1439518977 +93213,48780,mystery,1439518873 +93213,48780,twist ending,1439518850 +93234,4993,adventure,1432106471 +93234,4993,epic,1432106471 +93234,4993,high-fantasy,1432106471 +93250,296,bacon,1432687537 +93250,296,heroin,1432687537 +93250,296,reel-to-reel tape,1432687537 +93254,54190,Beatles,1216487824 +93254,57669,foul language,1216487535 +93296,49286,Jude Law,1169969831 +93306,260,sci-fi,1441211592 +93306,260,space adventure,1441211623 +93307,858,Mafia,1226901362 +93310,109487,meaning of life,1425678702 +93310,109487,philosophical,1425678702 +93310,109487,sci-fi,1425678702 +93314,193,banned movie,1328326898 +93314,193,controversial,1328326851 +93314,193,cynical,1328326868 +93314,193,excessive coarseness,1328326883 +93314,193,Golden Raspberry (Worst Actress),1328326889 +93314,193,Golden Raspberry (Worst Picture),1328326892 +93314,193,Las Vegas,1328326837 +93314,193,Nudity (Full Frontal),1328326856 +93314,193,overacting,1328326875 +93314,193,raunchy,1328326835 +93314,193,RISE AND FALL STORIES,1328326871 +93314,193,sexual,1328326834 +93314,193,so bad it's good,1328326902 +93314,193,strippers,1328326832 +93314,296,action,1328326625 +93314,296,assassin,1328326629 +93314,296,atmospheric,1328326575 +93314,296,Bruce Willis,1328326578 +93314,296,comedy,1328326585 +93314,296,dark comedy,1328326561 +93314,296,drugs,1328326564 +93314,296,Mafia,1328326636 +93314,296,multiple storylines,1328326571 +93314,296,nonlinear,1328326617 +93314,296,organized crime,1328326613 +93314,296,Quentin Tarantino,1328326557 +93314,296,Samuel L. Jackson,1328326553 +93314,296,stylized,1328326567 +93314,296,violence,1328326621 +93314,1968,1980s,1328331344 +93314,1968,80s,1328331346 +93314,1968,Brat Pack,1328331348 +93314,1968,coming of age,1328331342 +93314,1968,John Hughes,1328331350 +93314,1968,seen more than once,1328331352 +93314,1968,teen,1328331354 +93314,2795,Chevy Chase,1328333291 +93314,2795,comedy,1328333308 +93314,2795,Harold Ramis,1328333313 +93314,2795,National Lampoon,1328333294 +93314,2795,Notable Nudity,1328333295 +93314,2795,Nudity (Topless),1328333299 +93314,2795,Randy Quaid,1328333315 +93314,2795,road trip,1328333303 +93314,3317,adultery,1328326776 +93314,3317,based on a book,1328326781 +93314,3317,cars,1328326802 +93314,3317,college,1328326788 +93314,3317,funny,1328326773 +93314,3317,Gay,1328326761 +93314,3317,Michael Douglas,1328326764 +93314,3317,Robert Downey Jr,1328326758 +93314,3317,sexuality,1328326770 +93314,3317,writers at work,1328326767 +93314,4002,between two pillows,1328327182 +93314,4002,CLV,1328327185 +93314,4002,comedy,1328327128 +93314,4002,Funniest Movies,1328327150 +93314,4002,John Candy,1328327131 +93314,4002,John Hughes,1328327146 +93314,4002,people train,1328327159 +93314,4002,planes,1328327176 +93314,4002,road movie,1328327140 +93314,4002,sexual humor,1328327138 +93314,4002,shower curtain rings,1328327162 +93314,4002,Steve Martin,1328327134 +93314,4002,thanksgiving,1328327170 +93314,39292,american idiocy,1328331523 +93314,39292,George Clooney,1328331509 +93314,39292,historical,1328331518 +93314,39292,political,1328331533 +93314,39292,politics,1328331534 +93314,39292,propaganda,1328331529 +93314,39292,Robert Downey Jr,1328331501 +93314,39292,Robert Downey Jr.,1328331502 +93314,59315,funny,1328331611 +93314,59315,Robert Downey Jr.,1328331579 +93314,69122,casino,1328326488 +93314,69122,comedy,1328326456 +93314,69122,Drinking,1328326471 +93314,69122,drugs,1328326473 +93314,69122,hotel,1328326467 +93314,69122,Las Vegas,1328326448 +93314,69122,Nudity (Topless),1328326458 +93314,69122,Zach Galifianakis,1328326450 +93325,5446,aboregines,1220316096 +93325,5446,Great Movie!,1220316104 +93325,5446,Peter Gabriel music,1220316088 +93344,4878,bullshit science,1338827217 +93349,56030,darfur,1214753545 +93414,98607,anime,1430675786 +93437,260,classic,1439787696 +93437,260,sci-fi,1439787689 +93439,4623,baseball,1299207332 +93439,4623,unrealistic,1299207332 +93442,260,sci-fi,1438191915 +93447,260,old,1434384414 +93447,260,sci-fi,1434384405 +93457,111,classic,1430986270 +93457,111,New York City,1430986284 +93457,111,robert de niro,1430986212 +93457,55247,based on a true story,1430986341 +93457,55247,road trip,1430986346 +93457,55247,self discovery,1430986343 +93457,55247,travel,1430986366 +93457,55247,true story,1430986350 +93457,55247,wilderness,1430986364 +93468,260,classic,1440329903 +93468,260,oldschool,1440329918 +93470,3450,Walter Matheau,1171165810 +93474,260,saga,1439799018 +93474,260,space,1439799014 +93482,50,complicated,1349944622 +93482,50,conspiracy,1349944635 +93482,50,Kevin Spacey,1349944619 +93482,50,twist ending,1349944625 +93482,903,Atmospheric,1349857664 +93482,903,identity,1349857674 +93482,903,twist ending,1349857661 +93482,1784,Jack Nicholson,1349857487 +93482,1784,psychology,1349857502 +93482,2762,Bruce Willis,1349944539 +93482,2762,twist ending,1349944531 +93482,2959,atmospheric,1349944700 +93482,2959,Brad Pitt,1349944692 +93482,2959,disturbing,1349944712 +93482,2959,Edward Norton,1349944690 +93482,2959,twist ending,1349944682 +93482,3499,claustrophobic,1349944358 +93482,3499,tense,1349944370 +93482,3499,tension,1349944376 +93482,3910,disturbing,1349990464 +93482,3910,Lars von Trier,1349990460 +93482,3910,musical,1349990510 +93482,4226,complicated,1349944662 +93482,4226,psychological,1349944653 +93482,4226,twist ending,1349944648 +93482,4720,atmospheric,1349944506 +93482,4720,claustrophobic,1349944509 +93482,4720,Nicole Kidman,1349944498 +93482,4720,twist ending,1349944502 +93482,4881,narrated,1349944139 +93482,6530,atmospheric,1349990853 +93482,6530,claustrophobic,1349990856 +93482,6530,Roman Polanski,1349990862 +93482,6530,unreliable narrators,1349990868 +93482,6711,atmospheric,1349990596 +93482,6711,Bill Murray,1349990590 +93482,6711,bittersweet,1349990577 +93482,6711,complex characters,1349990599 +93482,6711,intelligent,1349990607 +93482,6711,isolation,1349990603 +93482,6711,Melancholic,1349990568 +93482,6711,reflective,1349990571 +93482,6711,Scarlett Johansson,1349990527 +93482,7265,Nudity (Full Frontal),1349857960 +93482,7265,sexual,1349857964 +93482,7371,disturbing,1349858218 +93482,7371,Lars von Trier,1349858200 +93482,7371,Nicole Kidman,1349858203 +93482,7371,philosophical,1349858207 +93482,7371,revenge,1349858212 +93482,8957,claustrophobic,1349858486 +93482,8957,clever,1349858489 +93482,8957,Disturbing,1349858451 +93482,8957,suspense,1349858465 +93482,8957,Thriller,1349858469 +93482,8957,torture,1349858477 +93482,8957,twist ending,1349858455 +93482,30848,creative plot,1349857926 +93482,30848,interesting characters,1349857905 +93482,30848,John Travolta,1349857912 +93482,30848,Scarlett Johansson,1349857908 +93482,33660,RAGS TO RICHES,1349858294 +93482,33660,Russell Crowe,1349858290 +93482,33660,true story,1349858288 +93482,39869,Lars von Trier,1349857730 +93482,39869,thought-provoking,1349857740 +93482,40819,Reese Witherspoon,1349857575 +93482,40819,true story,1349857587 +93482,44199,HOSTAGE SITUATIONS,1349858389 +93482,44199,intelligent thriller,1349858388 +93482,44199,Jodie Foster,1349858392 +93482,44199,twist ending,1349858394 +93482,48780,Christian Bale,1349944563 +93482,48780,complicated,1349944575 +93482,48780,Scarlett Johansson,1349944560 +93482,48780,twist ending,1349944557 +93482,52604,Anthony Hopkins,1349858131 +93482,52604,courtroom drama,1349858134 +93482,52604,twist ending,1349858141 +93482,77561,bad science,1349990731 +93482,77561,Robert Downey Jr.,1349990724 +93482,77561,Scarlett Johansson,1349990727 +93482,86320,depression,1350058510 +93482,86320,Kirsten Dunst,1350058501 +93482,86320,Lars von Trier,1350058507 +93482,89745,Marvel,1349990652 +93482,89745,predictable,1349990638 +93482,89745,Robert Downey Jr.,1349990644 +93482,89745,Scarlett Johansson,1349990641 +93489,596,Disney,1418131824 +93489,778,crime,1418131581 +93489,778,dark comedy,1418131567 +93489,1396,black comedy,1419659858 +93489,1396,conspiracy theory,1419659883 +93489,1396,espionage,1419659895 +93489,1396,hacking,1419659879 +93489,1396,heist,1419659875 +93489,1396,Quirky,1419659860 +93489,2005,adventure,1419659971 +93489,2005,friendship,1419659968 +93489,2124,black comedy,1418131614 +93489,2124,halloween,1419659822 +93489,2124,horror,1418131623 +93489,2124,quirky,1418131610 +93489,2134,comedy,1418131687 +93489,2134,teen,1418131682 +93489,2302,courtroom,1419659911 +93489,2542,british,1418132220 +93489,2542,dark comedy,1418132203 +93489,2542,funny,1418132217 +93489,2542,organized crime,1418132205 +93489,2542,stylish,1418132207 +93489,2542,Unique,1418132224 +93489,2571,atmospheric,1418131481 +93489,2571,dark hero,1418131475 +93489,2571,fantasy,1418131484 +93489,2571,martial arts,1418131473 +93489,2571,sci-fi,1418131462 +93489,3039,hilarious,1419659942 +93489,3039,switching places,1419659946 +93489,3897,coming of age,1418202242 +93489,3897,music,1418202241 +93489,3897,teen,1418202246 +93489,4239,drugs,1418131807 +93489,4239,father daughter relationship,1418131816 +93489,4571,comedy,1419659799 +93489,4571,dude comedy,1419659807 +93489,4571,Keanu Reeves,1419659796 +93489,4571,sci-fi,1419659803 +93489,4571,teenager,1419659805 +93489,4571,time travel,1419659815 +93489,8985,Marvel,1419669818 +93489,8985,sequel,1419669823 +93489,8985,vampire,1419669820 +93489,27831,british,1418220620 +93489,27831,British gangster,1418220617 +93489,27831,stylish,1418220625 +93489,60684,comic book,1418131504 +93489,81591,atmospheric,1418131860 +93489,81591,creepy,1418131837 +93489,81591,disturbing,1418131839 +93489,81591,horror,1418131836 +93489,81591,overrated,1418131846 +93489,81591,thriller,1418131853 +93489,101577,teen,1419142117 +93489,109074,convoluted,1419171606 +93489,109074,martial arts,1419171594 +93489,111409,blind swordsman,1437031925 +93489,111409,classic,1437031925 +93489,111409,martial arts,1437031925 +93489,115622,zombies,1420136740 +93489,115669,martial arts,1419529878 +93500,2383,comedy,1149365188 +93510,111,mind-blowing,1450631660 +93510,2959,mind-blowing,1450631736 +93549,1,animated,1434416120 +93549,1,fun family movie,1434416120 +93549,1,pixar,1434416120 +93549,74530,not true to the book,1408949296 +93549,106696,animation,1408949002 +93549,106696,cute,1408949011 +93549,106696,music,1408949002 +93552,109487,artificial intelligence,1431205406 +93552,109487,philosophical issues,1431205397 +93552,109487,sci-fi,1431205391 +93552,109487,thought-provoking,1431205403 +93552,110730,artificial intelligence,1431205422 +93569,4865,Comics,1144751657 +93569,44191,1984,1146056461 +93588,858,masterpiece,1368046890 +93588,1188,dancing,1368048268 +93588,1344,suspenseful,1368048182 +93588,1387,suspenseful,1368048182 +93588,1442,mentor,1368046382 +93588,1678,women,1368048122 +93588,1968,teen movie,1368048164 +93588,2144,teen movie,1368048164 +93588,2145,teen movie,1368048164 +93588,2762,excellent script,1368046940 +93588,2866,musicians,1368048141 +93588,2933,melancholic,1368045882 +93588,3005,detective,1368048318 +93588,3210,teen movie,1368048164 +93588,3499,suspenseful,1368048182 +93588,3693,splatter,1368048105 +93588,4291,women,1368048122 +93588,4720,supernatural,1368046921 +93588,4802,screwball comedy,1368048356 +93588,5693,dancing,1368048268 +93588,6214,brutality,1368048228 +93588,6867,unlikely friendships,1368048300 +93588,7223,noir thriller,1368045907 +93588,31785,melancholic,1368045882 +93588,47610,great ending,1368048282 +93588,53519,disappointing,1295537196 +93588,53519,overhyped,1295537196 +93588,56339,supernatural,1368046921 +93588,64116,original,1368045836 +93588,66371,friendship,1284039343 +93588,71108,bad ending,1286886080 +93588,71108,cinematography,1286886181 +93588,71108,TOO LONG,1286886087 +93588,76251,Chloe Moretz,1286886338 +93588,76251,graphic violence,1286886302 +93588,81845,excellent script,1368046940 +93588,103228,3D version,1425494152 +93588,103228,cheesy,1425494163 +93588,103228,fun,1425494175 +93594,318,crime,1441791110 +93594,318,escape,1441791155 +93594,318,justice,1441791073 +93594,318,prison,1441791062 +93594,318,prison escape,1441791122 +93594,318,twist ending,1441791084 +93632,2193,fantasy,1171146678 +93642,73881,aamir khan,1389958024 +93642,73881,Amazing display of friendship,1389957920 +93642,73881,based on a book,1389957977 +93642,73881,college,1389957960 +93642,73881,extremely stupid humor,1389957931 +93642,73881,Funny,1389957973 +93642,73881,India,1389957967 +93642,73881,Rajkumar Hirani,1389957964 +93642,77561,action,1389969492 +93642,77561,comic book,1389969456 +93642,77561,Gwyneth Paltrow,1389969478 +93642,77561,humor,1389969453 +93642,77561,Marvel,1389969488 +93642,77561,Robert Downey Jr.,1389969439 +93642,77561,Scarlett Johansson,1389969441 +93642,77561,sequel,1389969450 +93642,77561,superhero,1389969445 +93674,44004,sarah jessica parker should not be in movies,1155568022 +93674,46967,delicious,1155568095 +93697,1917,turd,1200619292 +93711,260,Science Fiction,1442768471 +93711,260,space adventure,1442768483 +93717,1408,PG-13,1154757654 +93717,2096,G,1154757546 +93717,4016,G,1154757498 +93717,6565,PG-13,1154757337 +93717,37739,PG,1154757314 +93717,41025,PG,1154757467 +93717,44709,PG,1154757249 +93717,45499,PG-13,1154757365 +93726,296,cult film,1453627759 +93726,3147,social commentary,1453627800 +93726,3147,Tom Hanks,1453627791 +93726,4011,dark comedy,1453627714 +93726,4011,dark humor,1453627733 +93755,48780,complicated,1446041237 +93755,48780,nonlinear,1446041247 +93755,48780,twist ending,1446041239 +93816,41569,decent,1137397142 +93816,41569,hollywood,1137397142 +93817,107,treasure,1368375085 +93817,353,dark hero,1368375289 +93817,440,conspiracy theory,1368375653 +93817,592,dark hero,1368375289 +93817,910,screwball comedy,1368375460 +93817,1089,Quentin Tarantino,1211715485 +93817,1179,neo-noir,1368375548 +93817,1245,neo-noir,1368375549 +93817,1248,noir thriller,1368375141 +93817,1285,cheerleading,1368375342 +93817,1291,spielberg,1368375944 +93817,1291,treasure,1368375084 +93817,1387,spielberg,1368375944 +93817,1391,mars,1368375252 +93817,1617,neo-noir,1368375548 +93817,1894,stranded,1368375209 +93817,2012,time travel,1211715322 +93817,2022,christian,1368375505 +93817,2022,jesus,1368375036 +93817,2028,spielberg,1368375944 +93817,2076,neo-noir,1368375549 +93817,2115,spielberg,1368375944 +93817,2115,treasure,1368375084 +93817,2353,conspiracy theory,1368375653 +93817,2405,treasure,1368375084 +93817,2662,mars,1368375252 +93817,2692,alternate reality,1281301554 +93817,2692,artistic,1281301557 +93817,2692,Franka Potente,1281301552 +93817,2692,heist,1281301597 +93817,2692,imdb top 250,1281301574 +93817,2692,Moritz Bleibtreu,1281301601 +93817,2692,notable soundtrack,1281301570 +93817,2692,time loop,1281301589 +93817,2718,cheerleading,1368375342 +93817,3000,Studio Ghibli,1211715946 +93817,3264,cheerleading,1368375342 +93817,3300,stranded,1368375209 +93817,4027,1930s,1281301702 +93817,4027,based on a book,1281301700 +93817,4027,George Clooney,1281301694 +93817,4027,great soundtrack,1281301681 +93817,4027,notable soundtrack,1281301684 +93817,4027,Quirky,1281301689 +93817,4027,racism,1281301713 +93817,5445,spielberg,1368375944 +93817,6377,short-term memory loss,1368375840 +93817,6539,treasure,1368375085 +93817,6873,screwball comedy,1368375460 +93817,6874,dark hero,1368375289 +93817,7013,noir thriller,1368375141 +93817,7099,Studio Ghibli,1211715949 +93817,7318,jesus,1368375036 +93817,7386,christian,1368375505 +93817,8529,stranded,1368375209 +93817,8622,conspiracy theory,1368375653 +93817,8636,dark hero,1368375289 +93817,26776,Studio Ghibli,1211715941 +93817,31658,Studio Ghibli,1211715944 +93817,50872,animation,1211715271 +93817,50872,pixar,1211715263 +93817,74452,Anthony Hopkins,1281301466 +93817,74452,Benicio Del Toro,1281301469 +93817,74452,Hugo Weaving,1281301476 +93817,74452,predictable,1281301483 +93817,116215,powerarmor,1431884892 +93817,116215,sci-fi,1431884892 +93817,116215,space marines,1431884892 +93824,1721,disaster,1427392470 +93824,1721,romance,1427392473 +93824,5971,fantasy,1427393169 +93824,5971,Japan,1427393167 +93824,5985,History,1427392944 +93824,7153,Adventure,1427393053 +93824,7153,fantasy world,1427393066 +93824,59315,Marvel,1427392612 +93824,59315,sci-fi,1427392615 +93824,59315,superhero,1427392592 +93824,73321,future,1427392534 +93824,73321,post-apocalyptic,1427392566 +93824,73321,survival,1427392541 +93824,109487,sci-fi,1427392779 +93824,109487,space,1427392776 +93830,260,Action,1440711676 +93830,260,sci-fi,1440711662 +93830,260,space,1440711671 +93839,260,have not seen it,1443762006 +93869,3676,creepy,1251930203 +93869,3676,cryptic,1251930200 +93869,3676,disturbing,1251930194 +93869,3676,dreamlike,1251930166 +93869,3676,gruesome,1251930196 +93869,3676,hallucinatory,1251930191 +93869,3676,overrated,1251930183 +93869,3676,paranoid,1251930187 +93869,3676,prententiously obscure,1251930179 +93869,3676,Worst film seen,1251930260 +93869,69844,author:J. K. Rowling,1251929713 +93869,69844,based on a book,1251929735 +93869,69844,boarding school,1251929720 +93869,69844,britain,1251929741 +93869,69844,Comedy,1251929745 +93869,69844,disappointing,1251929706 +93869,69844,fantasy,1251929749 +93869,69844,franchise,1251929756 +93869,69844,funny,1251929754 +93869,69844,harry potter,1251929752 +93869,69844,high school,1251929763 +93869,69844,magic,1251929759 +93869,69844,series,1251929767 +93869,69844,teenagers,1251929771 +93885,2959,based on a book,1453679443 +93885,2959,mental illness,1453679413 +93885,2959,psychological,1453679410 +93885,2959,satirical,1453679408 +93885,2959,social commentary,1453679423 +93885,2959,surreal,1453679405 +93885,3578,drama,1453679325 +93885,3578,historical,1453679347 +93885,3578,Rome,1453679324 +93885,3578,Russell Crowe,1453679317 +93885,3578,slavery,1453679349 +93885,3578,sword fight,1453679315 +93885,3578,visual,1453679358 +93909,1235,Hal Ashby,1234651445 +93909,1292,Hal Ashby,1234651539 +93909,1785,Abel Ferrara,1156963648 +93909,3099,Hal Ashby,1234651594 +93909,3200,Hal Ashby,1234651396 +93909,3371,Hal Ashby,1234651850 +93909,3724,Hal Ashby,1234651210 +93909,4932,Brian De Palma,1156892077 +93909,5770,Abel Ferrara,1156963596 +93909,7393,Hal Ashby,1234651874 +93909,7935,Ingmar Bergman,1182212561 +93909,34065,Ken Russell,1182212601 +93941,316,action,1428788390 +93941,316,aliens,1428788348 +93941,316,exciting,1428788402 +93941,316,sci-fi,1428788336 +93941,316,science fiction,1428788340 +93941,316,smart,1428788407 +93941,316,space,1428788344 +93941,4993,awesome soundtrack,1428710625 +93941,4993,captivating,1428710625 +93941,4993,fascinating,1428710625 +93941,6874,kung fu,1428881261 +93941,6874,martial arts,1428881241 +93941,34048,action,1428711214 +93941,34048,alien invasion,1428711170 +93941,34048,aliens,1428711173 +93941,34048,sci-fi,1428711167 +93941,34048,Steven Spielberg,1428711165 +93941,34162,funny,1431993048 +93941,34162,hilarious,1432037049 +93941,34162,pick up artists,1431993074 +93941,34162,PUA,1431993089 +93941,34162,romance,1431993109 +93941,34162,very funny,1431993041 +93941,34162,weddings,1431993098 +93941,57368,"""found footage""",1428794422 +93941,57368,alien monster,1428794451 +93941,57368,city under attack,1428794439 +93941,57368,irritating camera work,1428794493 +93941,57368,mockumentary,1428794381 +93941,57368,shaky camera,1428794462 +93941,57368,unoriginal,1428794510 +93941,57368,unsteady-cam,1428794430 +93941,60674,time travel,1428788450 +93941,66198,social commentary,1429919820 +93941,69122,absurd,1428710485 +93941,69122,awkward,1428710504 +93941,69122,Nudity (Topless),1428710511 +93941,69784,cocks,1429062997 +93941,69784,dicks,1429062985 +93941,69784,gay,1429063052 +93941,69784,offensive,1429063011 +93941,69784,provocative,1429063025 +93941,69784,social commentary,1429063004 +93941,72378,action,1428711328 +93941,72378,bad acting,1428711283 +93941,72378,bad plot,1428711291 +93941,72378,bad science,1428711273 +93941,72378,sci-fi,1428711294 +93941,72378,science fiction,1428711297 +93941,72378,Special Effects,1428711301 +93941,85131,action,1428711508 +93941,85131,alien invasion,1428711482 +93941,85131,aliens,1428711485 +93941,85131,poor dialogue,1428711499 +93941,85131,repetitive,1428711504 +93941,85131,sci-fi,1428711510 +93941,85131,Unoriginal,1428711544 +93941,94018,aliens,1428711392 +93941,94018,cheesy,1428711448 +93941,94018,Poor Plot,1428711415 +93941,94018,sci-fi,1428711390 +93941,94018,special effects,1428711432 +93941,94018,visually stunning,1428711376 +93941,97752,future,1430325284 +93941,97752,love,1430325323 +93941,97752,multiple storylines,1430325297 +93941,97752,Nudity (Topless),1430325281 +93941,97752,philosophy,1430325332 +93941,97752,rebellion,1430325329 +93941,97752,romantic,1430325318 +93941,97752,social commentary,1430325278 +93941,97752,social criticism,1430325274 +93941,97752,thought-provoking,1430325263 +93941,97752,touching,1430325306 +93941,97752,visually appealing,1430325254 +93941,102445,action,1428788513 +93941,102445,adventure,1428788506 +93941,102445,aliens,1428788503 +93941,102445,fast paced,1428788496 +93941,102445,future,1428788516 +93941,102445,Romance,1428788537 +93941,102445,science fiction,1428788499 +93941,102445,space,1428788486 +93941,102445,space ship,1428788519 +93941,102445,space ships,1428788524 +93941,102445,space travel,1428788521 +93941,102445,Star Trek,1428788489 +93941,103249,action,1428710878 +93941,103249,blood,1428711022 +93941,103249,captivating,1428710924 +93941,103249,fighting,1428711020 +93941,103249,political,1428710946 +93941,103249,social commentary,1428710922 +93941,103249,violence,1428711014 +93941,103249,visually stunning,1428710887 +93941,103253,science fiction,1431129149 +93941,103253,shallow characters,1431129083 +93941,103253,unnecessary violence,1431129114 +93941,103253,visually stunning,1431129146 +93941,108190,bad writing,1428711121 +93941,108190,based on a kids book,1428711090 +93941,113103,dance,1428881736 +93947,30793,not as good as original,1150952338 +93956,562,funny,1423840720 +93956,6857,ninja,1423840681 +94069,733,Nicolas Cage,1392305697 +94069,1573,John Travolta,1392305678 +94069,1573,Nicholas Cage,1392305657 +94069,1573,Nicolas Cage,1392305663 +94069,1573,stupid,1392305670 +94069,2231,Edward Norton,1392305536 +94069,2231,John Malkovich,1392305540 +94069,2231,Matt Damon,1392305543 +94069,2231,poker,1392305564 +94069,3717,Angelina Jolie,1392305930 +94069,3717,Giovanni Ribisi,1392305936 +94069,3717,Nicholas Cage,1392305919 +94069,3717,Nicolas Cage,1392305917 +94069,3717,remake,1392305911 +94069,3717,Robert Duvall,1392305921 +94069,4007,ambition,1392305498 +94069,4007,business,1392305501 +94069,4007,Charlie Sheen,1392305443 +94069,4007,Michael Douglas,1392305446 +94069,4007,Nudity (Full Frontal - Brief),1392305518 +94069,4007,Nudity (Rear),1392305521 +94069,4007,Oscar (Best Actor),1392305452 +94069,4007,stock market,1392305508 +94069,41997,1970s,1392306310 +94069,41997,based on a true story,1392306308 +94069,52328,atmospheric,1392356019 +94069,52328,dark,1392356016 +94069,52328,spaceships,1392356051 +94069,55247,coming of age,1392306682 +94069,59369,gritty,1392305762 +94069,59369,Liam Neeson,1392305738 +94069,59369,thriller,1392305741 +94069,59369,torture,1392305744 +94069,69306,Denzel Washington,1392305800 +94069,69306,John Travolta,1392305805 +94069,69306,New York City,1392305815 +94069,69306,remake,1392305822 +94069,69306,subway,1392305807 +94069,69306,terrorism,1392305817 +94069,69306,Tony Scott,1392305809 +94069,71135,space,1392356096 +94069,71135,space travel,1392356095 +94069,71135,twist ending,1392356087 +94069,81562,slow,1392306640 +94069,90439,based on a true story,1392305376 +94069,90439,greed,1392305381 +94069,90439,Jeremy Irons,1392305368 +94069,90439,Kevin Spacey,1392305386 +94069,90439,Oscar nom,1392305406 +94069,90439,Wall Street,1392305357 +94069,98961,torture,1392306224 +94069,106782,based on a true story,1392305212 +94069,106782,Martin Scorsese,1392305299 +94069,106782,money,1392305265 +94069,106782,overacting,1392305282 +94069,106782,unsatisfying ending,1392305294 +94069,106782,visually appealing,1392305227 +94069,106916,based on a true story,1392279384 +94069,106916,bittersweet,1392305332 +94069,106916,Christian Bale,1392279363 +94069,106916,costumes,1392305323 +94069,106916,politics,1392279378 +94075,100093,action,1429880256 +94075,100093,prison,1429880256 +94075,100093,race,1429880256 +94119,2161,Fantasy,1211299054 +94128,26172,"""The Hunter""",1450883934 +94128,88129,great soundtrack,1450883972 +94128,88129,minimalistic,1450884003 +94128,88129,neo-noir,1450883978 +94128,115991,simplistic,1450884153 +94166,318,100 greatest movies,1422588580 +94166,318,all star cast,1422588580 +94166,318,stephen king,1422588580 +94166,356,iconic,1421184237 +94166,356,life affirming,1421184237 +94166,356,oscar winner,1421184237 +94166,593,cannibalism,1421891999 +94166,593,iconic,1421891999 +94166,593,oscar winner,1421891999 +94201,35836,Not just the funniest movie of the year but one of the best movies period this year.,1140917446 +94215,260,Harrison Ford,1430688606 +94215,260,sci-fi,1430688621 +94215,3176,Matt Damon,1430689041 +94215,112552,clever,1430689526 +94215,112552,great actor,1430689526 +94215,112552,meaning of life,1430689526 +94246,260,sci-fi,1440044098 +94246,260,space action,1440044091 +94254,8588,Nudity (Full Frontal - Notable),1167769535 +94258,527,based on a true story,1431240297 +94258,527,based on book,1431240283 +94258,527,World War II,1431240276 +94258,47099,courage,1431241375 +94258,47099,Motivation,1431241377 +94258,47099,power of hope,1431241404 +94258,104913,based on a true story,1431240840 +94258,104913,cars,1431240842 +94258,104913,Formula 1,1431240847 +94258,104913,great soundtrack,1431240851 +94258,112552,jazz,1431241565 +94258,112552,musicians,1431241568 +94258,112552,power of hope,1431241585 +94258,118702,survival,1431240771 +94258,118702,war,1431240768 +94260,47,Kevin Spacey,1302405628 +94260,47,Morgan Freeman,1302405630 +94260,47,twist ending,1302405631 +94260,50,Kevin Spacey,1302442330 +94260,50,organized crime,1302442327 +94260,50,twist ending,1302442333 +94260,318,prison,1302406030 +94260,318,prison escape,1302406020 +94260,318,Stephen King,1302406022 +94260,318,twist ending,1302406032 +94260,454,John Grisham,1302399722 +94260,541,sci-fi,1302399667 +94260,1136,Monty Python,1302399546 +94260,1148,Wallace & Gromit,1302405143 +94260,1617,twist ending,1302399677 +94260,1777,1980s,1302442320 +94260,1777,Adam Sandler,1302442313 +94260,2231,Edward Norton,1302405868 +94260,3034,Disney,1302442361 +94260,4239,based on a true story,1302404482 +94260,4239,Johnny Depp,1302404551 +94260,4239,true story,1302404487 +94260,4886,Pixar,1302405085 +94260,4963,heist,1302406801 +94260,6290,Rob Zombie,1137779907 +94260,6323,John Cusack,1302405606 +94260,6323,Ray Liotta,1302405603 +94260,6323,twist ending,1302405601 +94260,66427,Bruce Campbell,1302400036 +94260,66427,corny,1302400073 +94260,71535,zombies,1302399821 +94260,72998,sci-fi,1302406432 +94260,72998,science fiction,1302406434 +94260,80463,dark comedy,1302400527 +94260,80463,true story,1302400524 +94261,198,virtual reality,1138625266 +94261,969,classic,1138625229 +94261,1396,computers,1138625310 +94261,1396,great actors,1138625310 +94261,2329,clever,1138625231 +94261,4995,schizophrenia,1138625352 +94261,6016,intense,1138625579 +94261,27773,stylish,1138625607 +94261,39183,beautiful,1138625496 +94261,41285,clever,1138625533 +94269,3186,unconvincing,1376128900 +94269,8784,manic pixie dream girl,1376128770 +94269,69757,manic pixie dream girl,1376128748 +94269,88163,Julianne Moore,1376082607 +94269,88163,macho culture,1376082479 +94269,88163,misogyny,1376082479 +94269,88163,objectifying women,1376082479 +94269,88163,sexist,1376082479 +94294,16,Robert De Niro,1362281215 +94294,101,Luke Wilson,1363316622 +94294,111,Martin Scorsese,1344306550 +94294,111,Robert De Niro,1344306548 +94294,180,Jay and Silent Bob,1361502406 +94294,1213,Robert De Niro,1362281280 +94294,1343,Robert De Niro,1363408277 +94294,1573,ridiculous,1375918490 +94294,1929,Joan Crawford,1360941515 +94294,2417,boring,1358643151 +94294,3917,atmosphere,1358645791 +94294,3949,visually appealing,1344306524 +94294,4485,guilty pleasure,1369330042 +94294,5902,Charlie Kaufman,1344306665 +94294,6288,awful acting,1361501379 +94294,7285,overdone,1362941386 +94294,7482,Bruce Lee,1360942016 +94294,7482,slow,1360942013 +94294,7883,Val Lewton,1362090059 +94294,25748,Victor Sjöström,1362621340 +94294,44195,Katie Holmes,1342225511 +94294,48082,romance,1363545585 +94294,50800,Kristen Stewart,1358645761 +94294,56339,twist ending,1365128551 +94294,56995,Mariel Hemingway,1362622201 +94294,74458,boring,1362238453 +94294,76077,Crispin Glover,1361502484 +94294,79874,gangsters,1360337391 +94294,91529,Michael Caine,1344306477 +94294,91529,Predictable,1344306450 +94294,96565,strong female characters,1377399882 +94337,593,horrifying,1431114002 +94337,593,suspense,1431114002 +94337,593,thriller,1431114002 +94344,593,crime,1420861937 +94344,593,horror,1420861937 +94344,593,psychological thriller,1420861937 +94345,3717,cars,1442137020 +94345,3717,racing,1442137015 +94345,8984,logic,1442136996 +94345,90945,detective,1442136945 +94356,2959,Brad Pitt,1436815679 +94356,2959,complicated,1436815698 +94356,2959,Edward Norton,1436815673 +94356,2959,philosophical,1436815684 +94356,2959,philosophy,1436815694 +94356,2959,psychology,1436815675 +94356,2959,social commentary,1436815707 +94356,2959,twist ending,1436815671 +94356,7361,bittersweet,1436815586 +94356,7361,complicated,1436815593 +94356,7361,imdb top 250,1436815602 +94356,7361,jim carrey,1436815583 +94356,7361,Kate Winslet,1436815589 +94356,7361,philosophy,1436815566 +94356,7361,romance,1436815573 +94356,7361,thought-provoking,1436815562 +94372,260,space epic,1439790011 +94372,260,space opera,1439790002 +94387,1729,Tarantino,1140407166 +94426,260,sci-fi,1443151572 +94426,260,Star Wars,1443151564 +94452,6187,Kevin Spacey,1176836263 +94459,3578,Russell Crowe,1430085942 +94459,4306,Prince,1430085915 +94459,4993,Frodo,1430085848 +94468,260,Boring,1443406621 +94468,260,lame,1443406629 +94488,2959,Brad Pitt,1441726306 +94488,2959,dark comedy,1441726276 +94488,2959,disturbing,1441726284 +94488,2959,Edward Norton,1441726271 +94488,2959,surreal,1441726280 +94488,2959,thought-provoking,1441726288 +94488,2959,twist ending,1441726264 +94488,4226,Christopher Nolan,1441726361 +94488,4226,complicated,1441726343 +94488,4226,mystery,1441726336 +94488,4226,nonlinear,1441726322 +94488,4226,psychology,1441726328 +94488,4226,stylized,1441726340 +94488,4226,tense,1441726352 +94488,4226,twist ending,1441726324 +94488,5618,anime,1441700003 +94488,5618,Hayao Miyazaki,1441700010 +94488,5618,Oscar (Best Animated Feature),1441700024 +94488,7153,Adventure,1441700576 +94488,7153,fantasy,1441700569 +94488,7153,imdb top 250,1441700588 +94515,2571,stylized,1269444732 +94515,2571,surreal,1269444736 +94543,6333,marvel,1429952310 +94555,1201,ennio morricone,1424132109 +94555,1201,man with no name,1424132109 +94555,1201,spaghetti western,1424132109 +94576,26,Shakespeare,1188584530 +94576,413,cult film,1188584071 +94576,546,based on a video game,1188584125 +94576,915,audrey hepburn,1188584260 +94576,915,B&W,1188584260 +94576,918,Judy Garland,1188584825 +94576,918,Musical,1188584825 +94576,924,classic,1188586269 +94576,924,cult film,1188586269 +94576,948,Drama,1188584842 +94576,948,realistic,1188584842 +94576,1025,Animation,1188584232 +94576,1203,classic,1188586224 +94576,1224,drama,1188584194 +94576,1224,Shakespeare,1188584194 +94576,1238,realistic,1188584467 +94576,1350,Suspense,1188584218 +94576,1367,Cute!,1188586195 +94576,1367,remake,1188586195 +94576,1919,based on a book,1188585225 +94576,1937,Bing Crosby,1188585557 +94576,1971,Sequel fever,1188584856 +94576,1996,sequel fever,1188585151 +94576,2090,Animation,1188584619 +94576,2122,cult film,1188584719 +94576,2135,Musical,1188584792 +94576,2137,animation,1188584142 +94576,2143,cult film,1188584527 +94576,2311,sequel fever,1188586283 +94576,2384,sleeper,1188584175 +94576,2530,Cult film,1188584644 +94576,2662,Classic,1188584275 +94576,2736,Neil Simon,1188584914 +94576,2919,Sleeper,1188584531 +94576,2919,Thriller,1188584531 +94576,2953,Cute!,1188584040 +94576,2953,sequel fever,1188584040 +94576,3063,Cult film,1188585132 +94576,3068,Drama,1188584686 +94576,3068,realistic,1188584686 +94576,3070,cult film,1188584326 +94576,3141,Sequel Fever,1188585563 +94576,3248,sequel fever,1188584732 +94576,3251,drama,1188584993 +94576,3251,realistic,1188584993 +94576,3251,religion,1188584993 +94576,3441,Action,1188584599 +94576,3441,Fiction,1188584599 +94576,3441,War,1188584599 +94576,3478,Based on a true story,1188584782 +94576,3548,Classic,1188585020 +94576,3688,cult film,1188584721 +94576,3690,Sequel fever,1188585317 +94576,3725,Animation,1188585819 +94576,3807,Claymation,1188585692 +94576,3916,based on a true story,1188583952 +94576,3916,drama,1188583952 +94576,3967,drama,1188583982 +94576,3967,realistic,1188583982 +94576,4006,Animation,1188584630 +94576,4080,classic,1188585387 +94576,4095,based on a true story,1188764867 +94576,4095,Drama,1188764866 +94576,4103,Drama,1188584569 +94576,4103,Sleeper,1188584569 +94576,4103,War,1188584569 +94576,4174,classic,1188585377 +94576,4188,Musical,1188585889 +94576,4270,sequel fever,1188583950 +94576,4292,Classic,1188585126 +94576,4343,Comedy,1188584364 +94576,4357,Classic,1188585414 +94576,4367,based on a video game,1188584054 +94576,4396,Remake,1188584921 +94576,4621,Sleeper,1188584529 +94576,4826,Classic,1188585654 +94576,4826,War,1188585661 +94576,4857,Musical,1188584650 +94576,5139,Classic,1188585102 +94576,5146,Anime,1188585193 +94576,5246,sequel fever,1188585619 +94576,5265,Black Comedy,1188584959 +94576,5410,Cult film,1188585501 +94576,5415,Sandra Bullock,1188585090 +94576,5462,Sequel fever,1188585864 +94576,5540,Claymation,1188585035 +94576,6122,Stand up Comedy,1188585780 +94576,6316,Musical,1188585748 +94576,6638,Cult film,1188585872 +94576,6658,cult film,1188586169 +94576,6785,Musical,1188585436 +94576,6787,Based on a true story,1188584553 +94576,7023,Ang Lee,1188585364 +94576,7023,realistic,1188585364 +94576,7091,Marx Brothers,1188585463 +94576,7104,cult film,1188586245 +94576,7132,Classic,1188585174 +94576,7132,Marx Brothers,1188585174 +94576,7228,animation,1188585581 +94576,7228,Cult film,1188585581 +94576,7369,sequel fever,1188585710 +94576,7381,Sequel fever,1188585538 +94576,7706,Marx Brothers,1188585453 +94576,7841,based on a book,1188585609 +94576,8132,Roman Empire,1188585069 +94576,8596,Classic,1188585266 +94576,8596,Sequels,1188585266 +94576,8880,Classic,1188585121 +94576,8965,Based on a book,1188585296 +94576,8965,computer animation,1188585296 +94576,27728,Anime,1188585519 +94576,42002,Remake,1188585733 +94576,45722,Comedy,1188584412 +94576,45722,Sequel,1188584412 +94576,46965,Cult film,1188585399 +94576,51662,Graphic Novel,1188584903 +94579,22,thriller,1368605128 +94579,29,dark,1368604391 +94579,111,dark,1368604391 +94579,157,politics,1368604998 +94579,161,tense,1368605086 +94579,216,stupid,1368605037 +94579,440,politics,1368604998 +94579,555,ensemble cast,1368604427 +94579,832,thriller,1368605128 +94579,913,black and white,1368604323 +94579,922,black and white,1368604323 +94579,1089,violent,1368605154 +94579,1095,ensemble cast,1368604427 +94579,1175,dark,1368604391 +94579,1206,violent,1368605153 +94579,1228,oscar (best cinematography),1368604818 +94579,1248,black and white,1368604323 +94579,1262,ensemble cast,1368604427 +94579,1266,oscar (best cinematography),1368604818 +94579,1287,christianity,1368604368 +94579,1357,father-son relationship,1368604470 +94579,1396,ensemble cast,1368604427 +94579,1464,mystery,1368604712 +94579,1589,ensemble cast,1368604427 +94579,1597,thriller,1368605128 +94579,1834,mystery,1368604712 +94579,1950,police,1368604941 +94579,1953,oscar (best cinematography),1368604819 +94579,2024,christianity,1368604368 +94579,2058,tense,1368605086 +94579,2076,dark,1368604391 +94579,2082,inspirational,1368604581 +94579,2353,thriller,1368605128 +94579,2383,police,1368604940 +94579,2500,high school,1368604546 +94579,2888,high school,1368604545 +94579,2944,ensemble cast,1368604427 +94579,3044,mystery,1368604712 +94579,3146,stupid,1368605038 +94579,3256,thriller,1368605128 +94579,3435,black and white,1368604323 +94579,3440,franchise,1368604496 +94579,3683,dark,1368604391 +94579,4865,dark,1368604391 +94579,4974,stupid,1368605038 +94579,5218,pixar,1368604906 +94579,5363,high school,1368604545 +94579,5785,stupid,1368605037 +94579,6323,mystery,1368604712 +94579,7153,oscar (best cinematography),1368604818 +94579,8781,politics,1368604998 +94579,44663,film industry,1427652058 +94579,44663,nanni moretti,1427652058 +94579,44663,political satire,1427652058 +94579,56788,Nudity (Topless),1199211079 +94579,59784,pixar,1368604906 +94579,64622,nazis,1368604763 +94605,6,Al Pacino,1334880948 +94605,6,atmospheric,1334880951 +94605,6,Robert De Niro,1334880946 +94605,6,suspense,1334880972 +94605,6,tense,1334880955 +94605,19,Jim Carrey,1334156042 +94605,104,Adam Sandler,1334154676 +94605,162,mental illness,1367851986 +94605,296,dancing,1429466833 +94605,296,dark comedy,1429466833 +94605,296,violence,1429466833 +94605,303,Gene Hackman,1334881527 +94605,303,Leonardo DiCaprio,1334881530 +94605,303,Russell Crowe,1334881522 +94605,303,Sharon Stone,1334881524 +94605,303,western,1334881532 +94605,318,inspirational,1334162925 +94605,318,Morgan Freeman,1334162907 +94605,318,narrated,1334162916 +94605,318,reflective,1334162934 +94605,318,Stephen King,1334162910 +94605,318,thought-provoking,1334162945 +94605,331,mental illness,1367851986 +94605,355,Halle Berry,1335104920 +94605,355,John Goodman,1335104904 +94605,355,Rick Moranis,1335104906 +94605,373,Dennis Hopper,1335071789 +94605,373,film noir,1335071835 +94605,373,Lara Flynn Boyle,1335071835 +94605,373,Nicolas Cage,1335071791 +94605,383,biography,1334881663 +94605,383,Dennis Quaid,1334881689 +94605,383,Gene Hackman,1334881638 +94605,383,historical,1334881663 +94605,383,Kevin Costner,1334881635 +94605,383,western,1334881643 +94605,412,based on a book,1334368027 +94605,412,Daniel Day-Lewis,1334368013 +94605,412,Edith Wharton,1334368043 +94605,412,historical,1334368038 +94605,412,Michelle Pfeiffer,1334368023 +94605,422,thriller,1367852302 +94605,474,Clint Eastwood,1334802220 +94605,474,John Malkovich,1334802223 +94605,474,Rene Russo,1334802226 +94605,474,suspense,1334802236 +94605,497,Denzel Washington,1334158742 +94605,497,Shakespeare,1334158746 +94605,506,based on a book,1334367882 +94605,506,surreal,1334367937 +94605,506,Tilda Swinton,1334367925 +94605,534,Anthony Hopkins,1334369625 +94605,534,biography,1334369608 +94605,534,C.S. Lewis,1334369606 +94605,534,Debra Winger,1334369633 +94605,534,Richard Attenborough,1334369610 +94605,538,Donald Sutherland,1334883543 +94605,538,Ian McKellen,1334883570 +94605,538,Stockard Channing,1334883591 +94605,538,Will Smith,1334883546 +94605,552,anachronism,1334551700 +94605,553,gritty,1334552393 +94605,553,Kurt Russell,1334552400 +94605,553,Sam Elliott,1334552397 +94605,553,western,1334552407 +94605,590,based on a book,1334329610 +94605,590,culture clash,1334329584 +94605,590,historical,1334329588 +94605,590,Kevin Costner,1334329578 +94605,590,western,1334329593 +94605,747,stupid,1367852244 +94605,914,Audrey Hepburn,1334342998 +94605,914,Musical,1334343002 +94605,924,artificial intelligence,1334162078 +94605,924,atmospheric,1334162094 +94605,924,based on a book,1334162121 +94605,924,future,1334162098 +94605,924,philosophical,1334162104 +94605,924,sci-fi,1334162111 +94605,924,space,1334162113 +94605,924,Stanley Kubrick,1334162090 +94605,924,surreal,1334162108 +94605,944,fantasy,1334369806 +94605,944,Frank Capra,1334369770 +94605,944,moral dilemma,1334369831 +94605,944,Ronald Colman,1334369794 +94605,944,Shangri-La,1334369799 +94605,999,ensemble cast,1367851819 +94605,1019,based on a book,1334341653 +94605,1019,submarine,1334341661 +94605,1025,Arthurian legend,1334344180 +94605,1025,King Arthur,1334344177 +94605,1025,magic,1334344190 +94605,1025,musical,1334344187 +94605,1027,Alan Rickman,1334551598 +94605,1027,historical,1334551623 +94605,1027,Kevin Costner,1334551602 +94605,1027,Morgan Freeman,1334551594 +94605,1027,sword fight,1334551610 +94605,1035,Oscar (Best Picture),1334156793 +94605,1035,true story,1334156789 +94605,1069,mystery,1367852004 +94605,1077,Woody Allen,1334154979 +94605,1082,corruption,1334803331 +94605,1082,Peter Boyle,1334803331 +94605,1082,Robert Redford,1334803330 +94605,1095,Al Pacino,1334883449 +94605,1095,Alec Baldwin,1334883466 +94605,1095,based on a play,1334883498 +94605,1095,David Mamet,1334883451 +94605,1095,Ed Harris,1334883488 +94605,1095,Jack Lemmon,1334883447 +94605,1095,Kevin Spacey,1334883482 +94605,1096,based on a book,1334367173 +94605,1096,ethics,1334367177 +94605,1096,guilt,1334367180 +94605,1096,Holocaust,1334367188 +94605,1096,Kevin Kline,1334367169 +94605,1096,mental illness,1367851985 +94605,1096,Meryl Streep,1334367165 +94605,1124,aging,1334366182 +94605,1124,Henry Fonda,1334366172 +94605,1124,Katherine Hepburn,1334366169 +94605,1173,black comedy,1334367731 +94605,1173,Helen Mirren,1334367742 +94605,1179,Angelica Huston,1335102253 +94605,1179,Annette Bening,1335102256 +94605,1179,based on a book,1335102267 +94605,1179,John Cusack,1335102260 +94605,1185,Daniel Day-Lewis,1334368674 +94605,1197,based on a book,1334156642 +94605,1197,comedy,1334156855 +94605,1197,fantasy,1334156847 +94605,1197,quirky,1334156851 +94605,1197,sword fight,1334156642 +94605,1197,witty,1334156642 +94605,1200,alien,1334328475 +94605,1200,atmospheric,1334328415 +94605,1200,rescue,1334328475 +94605,1200,science fiction,1334328475 +94605,1200,Sigourney Weaver,1334328410 +94605,1200,space,1334328420 +94605,1200,suspense,1334328423 +94605,1200,terror,1334328475 +94605,1201,Clint Eastwood,1334165574 +94605,1201,Ennio Morricone,1334165579 +94605,1201,epic,1334165654 +94605,1201,historical,1334165624 +94605,1201,Lee Van Cleef,1334165654 +94605,1201,quirky,1334165594 +94605,1201,Sergio Leone,1334165586 +94605,1201,showdown,1334165612 +94605,1201,spaghetti western,1334165599 +94605,1201,western,1334165589 +94605,1203,courtroom drama,1334165214 +94605,1203,ensemble cast,1334165235 +94605,1203,good dialogue,1334165210 +94605,1203,gritty,1334165220 +94605,1203,racism,1334165228 +94605,1203,social commentary,1334165242 +94605,1203,thought-provoking,1334165224 +94605,1204,atmospheric,1334157099 +94605,1204,camels,1334157156 +94605,1204,desert,1334157156 +94605,1204,epic,1334157156 +94605,1204,historical,1334157156 +94605,1204,Omar Sharif,1334157156 +94605,1204,Peter O'Toole,1334157156 +94605,1209,atmospheric,1334328168 +94605,1209,Ennio Morricone,1334328172 +94605,1209,epic,1334328189 +94605,1209,Sergio Leone,1334328176 +94605,1209,western,1334328182 +94605,1212,atmospheric,1334342660 +94605,1212,based on a book,1334342673 +94605,1212,black and white,1334342685 +94605,1212,cinematography,1334342681 +94605,1212,Orson Welles,1334342657 +94605,1214,alien,1334328378 +94605,1214,atmospheric,1334328337 +94605,1214,dark,1334328334 +94605,1214,Ridley Scott,1334328328 +94605,1214,science fiction,1334328377 +94605,1214,Sigourney Weaver,1334328378 +94605,1214,space,1334328341 +94605,1214,suspense,1334328344 +94605,1243,quirky,1334156811 +94605,1243,Shakespeare,1334156822 +94605,1243,surreal,1334156818 +94605,1263,Christopher Walken,1334883022 +94605,1263,epic,1334883073 +94605,1263,gritty,1334883052 +94605,1263,Robert De Niro,1334883019 +94605,1263,suspense,1334883038 +94605,1263,tense,1334883045 +94605,1266,bleak,1334329457 +94605,1266,Clint Eastwood,1334329444 +94605,1266,Gene Hackman,1334329448 +94605,1266,gritty,1334329460 +94605,1266,Morgan Freeman,1334329451 +94605,1266,revenge,1334329463 +94605,1266,western,1334329454 +94605,1277,Anthony Burgess,1334547842 +94605,1277,Gérard Depardieu,1334547779 +94605,1277,historical,1334547819 +94605,1277,swashbuckler,1334547786 +94605,1277,witty,1334547800 +94605,1278,comedy,1334162555 +94605,1278,farce,1334162544 +94605,1278,Gene Wilder,1334162530 +94605,1278,Marty Feldman,1334162576 +94605,1278,Mel Brooks,1334162533 +94605,1278,parody,1334162538 +94605,1278,spoof,1334162541 +94605,1278,witty,1334162593 +94605,1283,atmospheric,1334165429 +94605,1283,courage,1334165375 +94605,1283,fear,1334165364 +94605,1283,Gary Cooper,1334165311 +94605,1283,hero,1334165383 +94605,1283,music,1334165390 +94605,1283,suspense,1334165458 +94605,1283,tense,1334165339 +94605,1283,western,1334165326 +94605,1289,cinematography,1334162420 +94605,1289,nature,1334157232 +94605,1289,no dialogue,1334157236 +94605,1289,no narrative,1334162235 +94605,1289,Philip Glass,1334162207 +94605,1289,score:Philip Glass,1334157250 +94605,1289,time lapse photography,1334162378 +94605,1295,based on a book,1334367961 +94605,1295,Daniel Day-Lewis,1334367964 +94605,1295,Juliette Binoche,1334367967 +94605,1304,friendship,1334329397 +94605,1304,historical,1334329415 +94605,1304,humorous,1334329389 +94605,1304,irreverent,1334329395 +94605,1304,Paul Newman,1334329382 +94605,1304,Robert Redford,1334329380 +94605,1304,western,1334329385 +94605,1304,witty,1334329404 +94605,1333,Alfred Hitchcock,1334328269 +94605,1333,birds,1334328272 +94605,1340,Boris Karloff,1335230754 +94605,1340,Elsa Lanchester,1335230754 +94605,1343,Martin Scorsese,1334550168 +94605,1343,Nick Nolte,1334550163 +94605,1343,Robert De Niro,1334550161 +94605,1344,Gregory Peck,1334550230 +94605,1344,Robert Mitchum,1334550234 +94605,1344,suspense,1334550244 +94605,1373,Deforrest Kelley,1335139946 +94605,1373,future,1335139916 +94605,1373,George Takei,1335139983 +94605,1373,James Doohan,1335139983 +94605,1373,Leonard Nimoy,1335139904 +94605,1373,Nichelle Nichols,1335139983 +94605,1373,science fiction,1335139916 +94605,1373,space,1335139906 +94605,1373,Walter Koenig,1335139983 +94605,1373,William Shatner,1335139900 +94605,1378,Jack Palance,1334881495 +94605,1378,Kiefer Sutherland,1334881495 +94605,1378,Lou Diamond Phillips,1334881463 +94605,1385,Gary Busey,1335072343 +94605,1385,Steven Seagal,1335072283 +94605,1385,Tommy Lee Jones,1335072314 +94605,1408,Adventure,1334157167 +94605,1408,based on a book,1334157222 +94605,1408,Daniel Day-Lewis,1334157171 +94605,1408,historical,1334157222 +94605,1408,music,1334157222 +94605,1408,romance,1334157176 +94605,1411,Derek Jacobi,1334547193 +94605,1411,Jack Lemmon,1334546995 +94605,1411,Kenneth Branagh,1334546979 +94605,1411,Shakespeare,1334546976 +94605,1419,clash of cultures,1335232226 +94605,1419,enigmatic,1335232226 +94605,1419,Jenny Agutter,1335232226 +94605,1419,quest,1335232226 +94605,1438,Linda Hamilton,1361138478 +94605,1459,Clint Eastwood,1334802014 +94605,1459,Ed Harris,1334802016 +94605,1459,Gene Hackman,1334802018 +94605,1459,Laura Linney,1334802021 +94605,1479,boring,1335072163 +94605,1617,dark,1334550981 +94605,1617,film noir,1334550965 +94605,1617,James Cromwell,1334550991 +94605,1617,Kevin Spacey,1334550970 +94605,1617,Kim Basinger,1334551008 +94605,1617,Russell Crowe,1334550973 +94605,1625,Michael Douglas,1334549247 +94605,1625,Mystery,1334549249 +94605,1625,psychological,1334549252 +94605,1633,Peter Fonda,1335232444 +94605,1673,Philip Seymour Hoffman,1334883416 +94605,1690,dystopia,1335139700 +94605,1690,Ron Perlman,1335139668 +94605,1690,science fiction,1335139685 +94605,1690,sequel,1335139672 +94605,1690,Sigourney Weaver,1335139664 +94605,1690,space,1335139676 +94605,1690,Winona Ryder,1335139692 +94605,1711,based on a book,1334548652 +94605,1711,Clint Eastwood,1334548668 +94605,1711,John Cusack,1334548659 +94605,1711,Kevin Spacey,1334548673 +94605,1719,atmospheric,1334367357 +94605,1719,based on a book,1334367351 +94605,1719,bleak,1334367360 +94605,1719,Canada,1334367354 +94605,1719,enigmatic,1334367348 +94605,1719,Ian Holm,1334367342 +94605,1719,meditative,1334367364 +94605,1722,James Bond,1335137616 +94605,1722,Judi Dench,1335137616 +94605,1722,Pierce Brosnan,1335137595 +94605,1726,based on a book,1335103318 +94605,1726,dystopia,1335103360 +94605,1726,future,1335103360 +94605,1726,Kevin Costner,1335103324 +94605,1810,based on a book,1334803255 +94605,1810,Billy Bob Thornton,1334803265 +94605,1810,Emma Thompson,1334803258 +94605,1810,John Travolta,1334803260 +94605,1913,based on a book,1335232123 +94605,1913,enigmatic,1335232124 +94605,1913,historical,1335232124 +94605,1913,Peter Weir,1335232123 +94605,1931,Charles Laughton,1334369986 +94605,1931,Clark Gable,1334369990 +94605,1931,ships,1334369999 +94605,1941,Laurence Olivier,1334547558 +94605,1941,Shakespeare,1334547550 +94605,1947,musical,1334342915 +94605,1947,racism,1334342921 +94605,1947,romeo and juliet,1334342937 +94605,1947,Shakespeare,1334342925 +94605,1955,Dustin Hoffman,1334366133 +94605,1955,Meryl Streep,1334366137 +94605,1956,depression,1334366106 +94605,1956,Donald Sutherland,1334366088 +94605,1956,family,1334366101 +94605,1956,Mary Tyler Moore,1334366091 +94605,1956,Timothy Hutton,1334366097 +94605,1957,inspirational,1367851946 +94605,2009,atmospheric,1334600390 +94605,2009,bleak,1334600412 +94605,2009,Charlton Heston,1334600393 +94605,2009,dystopia,1334600401 +94605,2009,Edward G. Robinson,1334600405 +94605,2009,science fiction,1334600434 +94605,2015,fantasy,1334344102 +94605,2015,flubber,1334344114 +94605,2015,Fred MacMurray,1334344090 +94605,2021,based on a book,1335103580 +94605,2021,Brad Dourif,1335103655 +94605,2021,David Lynch,1335103684 +94605,2021,Francesca Annis,1335103655 +94605,2021,Frank Herbert,1335103583 +94605,2021,Max von Sydow,1335103587 +94605,2021,Patrick Stewart,1335103655 +94605,2021,science fiction,1335103670 +94605,2021,Sting,1335103655 +94605,2021,terrible adaptation,1335103609 +94605,2076,David Lynch,1334367621 +94605,2076,Dennis Hopper,1334367635 +94605,2076,Kyle MacLachlan,1334367651 +94605,2076,quirky,1334367649 +94605,2097,dark,1367851772 +94605,2105,Bruce Boxleitner,1335139077 +94605,2105,David Warner,1335139048 +94605,2105,Jeff Bridges,1335139040 +94605,2105,science fiction,1335139078 +94605,2116,based on a book,1335104583 +94605,2116,epic,1335104587 +94605,2116,Ralph Bakshi,1335104611 +94605,2116,rotoscoping,1335104590 +94605,2116,Tolkien,1335104595 +94605,2135,Anthony Newley,1334343988 +94605,2135,fantasy,1334343988 +94605,2135,musical,1334343988 +94605,2135,Rex Harrison,1334343989 +94605,2194,Brian De Palma,1334881249 +94605,2194,Charles Martin Smith,1334881279 +94605,2194,David Mamet,1334881313 +94605,2194,historical,1334881255 +94605,2194,Kevin Costner,1334881232 +94605,2194,Robert De Niro,1334881236 +94605,2194,Sean Connery,1334881234 +94605,2240,high school,1367851921 +94605,2297,based on a book,1334604367 +94605,2297,incestuous subtext,1334604407 +94605,2297,philosophy,1334604373 +94605,2297,Robin Williams,1334604365 +94605,2297,visually stunning,1334604448 +94605,2311,artificial intelligence,1334599904 +94605,2311,based on a book,1334599907 +94605,2311,John Lithgow,1334599925 +94605,2311,sequel,1334600015 +94605,2311,slow,1334600009 +94605,2311,space,1334599900 +94605,2311,space travel,1334600002 +94605,2353,Gene Hackman,1334802161 +94605,2353,Will Smith,1334802158 +94605,2376,Christopher Walken,1335137719 +94605,2376,Desmond Llewelyn,1335137724 +94605,2376,James Bond,1335137743 +94605,2376,Lois Maxwell,1335137759 +94605,2376,Roger Moore,1335137711 +94605,2393,Brent Spiner,1335140051 +94605,2393,future,1335140098 +94605,2393,Jonathan Frakes,1335140157 +94605,2393,Patrick Stewart,1335140045 +94605,2393,science fiction,1335140098 +94605,2393,space,1335140098 +94605,2393,Star Trek,1335140043 +94605,2431,inspirational,1367851946 +94605,2439,James Coburn,1334366806 +94605,2439,Nick Nolte,1334366806 +94605,2439,Sissy Spacek,1334366806 +94605,2439,Willem Dafoe,1334366806 +94605,2443,ensemble cast,1367851819 +94605,2461,franchise,1367851888 +94605,2478,Martin Short,1334155313 +94605,2528,dystopia,1334600535 +94605,2528,Jenny Agutter,1334600535 +94605,2528,Michael York,1334600535 +94605,2528,Peter Ustinov,1334600535 +94605,2528,science fiction,1334600535 +94605,2583,ensemble cast,1367851819 +94605,2644,atmospheric,1335230846 +94605,2644,based on a book,1335230807 +94605,2644,Bela Lugosi,1335230835 +94605,2648,based on a book,1335230663 +94605,2648,Boris Karloff,1335230696 +94605,2657,parody,1334156828 +94605,2657,Quirky,1334156836 +94605,2657,Tim Curry,1334156352 +94605,2683,Michael York,1335071367 +94605,2683,Mike Myers,1335071344 +94605,2683,Robert Wagner,1335071379 +94605,2683,sequel,1335071352 +94605,2683,spoof,1335071347 +94605,2730,atmospheric,1334368130 +94605,2730,boring,1334368085 +94605,2730,long,1334368092 +94605,2730,Ryan O'Neal,1334368120 +94605,2730,slow,1334368098 +94605,2730,Stanley Kubrick,1334368095 +94605,2791,farce,1334162643 +94605,2791,Leslie Nielsen,1334162669 +94605,2791,Parody,1334162631 +94605,2791,Slapstick,1334162628 +94605,2791,spoof,1334162635 +94605,2803,based on a book,1334802075 +94605,2803,conspiracy,1334802091 +94605,2803,corruption,1334802082 +94605,2803,Denzel Washington,1334802069 +94605,2803,Julia Roberts,1334802066 +94605,2806,high school,1367851920 +94605,2857,animation,1334327702 +94605,2857,Beatles,1334156754 +94605,2857,surreal,1334156760 +94605,2858,Chris Cooper,1334883191 +94605,2858,dark,1334883221 +94605,2858,Kevin Spacey,1334883156 +94605,2858,reflective,1334883163 +94605,2863,Beatles,1334327902 +94605,2863,british comedy,1334327914 +94605,2863,quirky,1334327923 +94605,2863,Richard Lester,1334327932 +94605,2863,the beatles,1334327937 +94605,2871,banjo,1334368314 +94605,2871,Burt Reynolds,1334368338 +94605,2871,culture clash,1334368352 +94605,2871,gritty,1334368306 +94605,2871,Jon Voight,1334368335 +94605,2871,Ned Beatty,1334368371 +94605,2871,suspense,1334368328 +94605,2917,atmospheric,1335071912 +94605,2917,film noir,1335071904 +94605,2917,Kathleen Turner,1335071883 +94605,2917,Lawrence Kasdan,1335071926 +94605,2917,Richard Crenna,1335071883 +94605,2917,William Hurt,1335071883 +94605,2919,Linda Hunt,1334369480 +94605,2919,Mel Gibson,1334369445 +94605,2919,Sigourney Weaver,1334369454 +94605,2921,bleak,1334328048 +94605,2921,Clint Eastwood,1334328044 +94605,2921,dark,1334328061 +94605,2921,enigmatic,1334328052 +94605,2921,surrealism,1334328057 +94605,2921,western,1334328082 +94605,2922,Clint Eastwood,1334328009 +94605,2922,spaghetti western,1334328012 +94605,2922,western,1334328031 +94605,2929,boring,1334369511 +94605,2929,long,1334369511 +94605,2929,slow,1334369511 +94605,2941,island,1334343332 +94605,2941,Mitzi Gaynor,1334343331 +94605,2941,oscar (best cinematography),1367852122 +94605,2941,racism,1334343331 +94605,2941,Ray Walston,1334343221 +94605,2941,Rossano Brazzi,1334343331 +94605,2941,World War 2,1334343331 +94605,2946,Beatles,1334327795 +94605,2946,campy,1334327761 +94605,2946,soundtrack,1334327821 +94605,2946,The Beatles,1334327766 +94605,2946,witty,1334327821 +94605,2951,Clint Eastwood,1334329323 +94605,2951,Ennio Morricone,1334329331 +94605,2951,Sergio Leone,1334329325 +94605,2951,spaghetti western,1334329333 +94605,2951,western,1334329328 +94605,2983,gritty,1335071717 +94605,2983,Michael Caine,1335071707 +94605,2989,James Bond,1335137329 +94605,2989,Roger Moore,1335137326 +94605,2990,Desmond Llewelyn,1335137893 +94605,2990,James Bond,1335137865 +94605,2990,Timothy Dalton,1335137867 +94605,2991,James Bond,1335072052 +94605,2991,Roger Moore,1335072047 +94605,2993,James Bond,1334156766 +94605,3015,tense,1367852274 +94605,3032,based on a book,1334600313 +94605,3032,Charlton Heston,1334600324 +94605,3032,Richard Matheson,1334600318 +94605,3036,gritty,1334158612 +94605,3036,historical,1334158583 +94605,3060,quirky,1334327885 +94605,3060,soundtrack,1334327884 +94605,3068,based on a book,1334365473 +94605,3068,courtroom drama,1334365463 +94605,3068,David Mamet,1334365466 +94605,3068,James Mason,1334365477 +94605,3068,Paul Newman,1334365461 +94605,3071,inspirational,1367851946 +94605,3074,atmospheric,1334157278 +94605,3074,based on a book,1334157305 +94605,3074,culture clash,1334157274 +94605,3074,mountains,1334157305 +94605,3074,Robert Redford,1334157267 +94605,3082,James Bond,1335137553 +94605,3082,Pierce Brosnan,1335137556 +94605,3088,mental illness,1367851986 +94605,3135,Robert Duval,1334366060 +94605,3148,based on a book,1334365850 +94605,3148,Michael Caine,1334365837 +94605,3156,artificial intelligence,1335139408 +94605,3156,future,1335139393 +94605,3156,Isaac Asimov,1335139358 +94605,3156,Robin Williams,1335139375 +94605,3156,Sam Neill,1335139381 +94605,3156,science fiction,1335139387 +94605,3203,atmospheric,1334549453 +94605,3203,Billy Zane,1334549399 +94605,3203,Nicole Kidman,1334549377 +94605,3203,Sam Neill,1334549374 +94605,3203,suspense,1334549408 +94605,3219,Melanie Griffith,1334549601 +94605,3219,Michael Keaton,1334549601 +94605,3219,suspense,1334549601 +94605,3230,nazis,1367852046 +94605,3260,Anthony Hopkins,1334157398 +94605,3260,based on a book,1334157398 +94605,3260,Emma Thompson,1334157398 +94605,3260,historical,1334157398 +94605,3260,romantic,1334157352 +94605,3274,Bridget Fonda,1334549701 +94605,3274,Jennifer Jason Leigh,1334549713 +94605,3274,suspense,1334549726 +94605,3300,atmospheric,1334603558 +94605,3300,science fiction,1334603559 +94605,3300,suspense,1334603544 +94605,3300,Vin Diesel,1334603540 +94605,3355,Arturo Perez-Reverte,1334548817 +94605,3355,Johnny Depp,1334548928 +94605,3355,rare books,1334548837 +94605,3355,Roman Polanski,1334548834 +94605,3355,terrible adaptation,1334548859 +94605,3365,atmospheric,1334156802 +94605,3365,gritty,1334165501 +94605,3365,John Wayne,1334165490 +94605,3365,quest,1334165508 +94605,3365,racism,1334165544 +94605,3365,redemption,1334165532 +94605,3365,reflective,1334156807 +94605,3365,western,1334156301 +94605,3386,courtroom,1334366437 +94605,3386,Gary Oldman,1334366402 +94605,3386,historical,1334366428 +94605,3386,Kevin Costner,1334366395 +94605,3386,Martin Sheen,1334366419 +94605,3386,Oliver Stone,1334366400 +94605,3386,Tommy Lee Jones,1334366406 +94605,3405,Titanic,1334369889 +94605,3427,police,1367852173 +94605,3479,fantasy,1335104359 +94605,3479,magic,1335104359 +94605,3479,Matthew Broderick,1335104359 +94605,3479,Michelle Pfeiffer,1335104359 +94605,3479,Rutger Hauer,1335104359 +94605,3503,atmospheric,1334161991 +94605,3503,based on a book,1334161996 +94605,3503,cerebral,1334162023 +94605,3503,enigmatic,1334161983 +94605,3503,meditative,1334162006 +94605,3503,psychological,1334162048 +94605,3503,sci-fi,1334162017 +94605,3503,space,1334162013 +94605,3505,conspiracy,1334801903 +94605,3505,espionage,1334801925 +94605,3505,Gene Hackman,1334801897 +94605,3505,Kevin Costner,1334801894 +94605,3505,suspense,1334801917 +94605,3505,thriller,1367852302 +94605,3633,James Bond,1335071580 +94605,3633,Telly Savalas,1335071586 +94605,3635,James Bond,1335137478 +94605,3635,Roger Moore,1335137484 +94605,3638,Desmond Llewelyn,1335138009 +94605,3638,James Bond,1335137970 +94605,3638,Lois Maxwell,1335138009 +94605,3638,Richard Kiel,1335138009 +94605,3638,Roger Moore,1335137973 +94605,3639,James Bond,1335137430 +94605,3639,Roger Moore,1335137434 +94605,3668,Franco Zeffirelli,1334547731 +94605,3668,Romance,1334547737 +94605,3668,Shakespeare,1334547728 +94605,3681,Clint Eastwood,1334328105 +94605,3681,Ennio Morricone,1334328108 +94605,3681,Sergio Leone,1334328111 +94605,3681,spaghetti western,1334328119 +94605,3681,western,1334328115 +94605,3690,franchise,1367851888 +94605,3717,Angelina Jolie,1335138437 +94605,3717,Nicolas Cage,1335138432 +94605,3717,Robert Duvall,1335138434 +94605,3723,Franco Zeffirelli,1334545890 +94605,3723,Glenn Close,1334546063 +94605,3723,Ian Holm,1334545883 +94605,3723,Mel Gibson,1334545880 +94605,3723,Shakespeare,1334545877 +94605,3729,Isaac Hayes,1335102073 +94605,3729,Richard Roundtree,1335102073 +94605,3788,atmospheric,1334157508 +94605,3788,edgy,1334157531 +94605,3788,enigmatic,1334157515 +94605,3827,Clint Eastwood,1335140293 +94605,3827,Donald Sutherland,1335140335 +94605,3827,James Cromwell,1335140335 +94605,3827,James Garner,1335140335 +94605,3827,Tommy Lee Jones,1335140296 +94605,3827,William Devane,1335140362 +94605,3868,farce,1334162729 +94605,3868,Leslie Nielsen,1334162708 +94605,3868,parody,1334162714 +94605,3868,slapstick,1334162716 +94605,3868,spoof,1334162719 +94605,3926,Barbara Eden,1335103846 +94605,3926,Peter Lorre,1335103846 +94605,3926,science fiction,1335103846 +94605,3927,Donald Pleasence,1335103770 +94605,3927,Isaac Asimov,1335103770 +94605,3927,Raquel Welch,1335103769 +94605,3927,science fiction,1335103777 +94605,3947,Michael Caine,1335102164 +94605,3984,Sean Connery,1334075724 +94605,3988,based on a book,1335104710 +94605,3988,Jim Carrey,1335104726 +94605,3988,remake,1335104716 +94605,4000,Anthony Hopkins,1334369935 +94605,4005,James Bond,1335137382 +94605,4005,Timothy Dalton,1335137385 +94605,4007,Charlie Sheen,1334365596 +94605,4007,corruption,1334365609 +94605,4007,greed,1334365615 +94605,4007,Michael Douglas,1334365598 +94605,4007,Oliver Stone,1334365602 +94605,4043,father-son relationship,1367851869 +94605,4056,Helen Mirren,1334366599 +94605,4056,Jack Nicholson,1334366596 +94605,4056,Obsession,1334366602 +94605,4068,high school,1367851921 +94605,4085,Axel Foley,1334329035 +94605,4085,Bronson Pinchot,1334329022 +94605,4085,Eddie Murphy,1334329025 +94605,4212,mystery,1367852004 +94605,4251,violent,1367852328 +94605,4299,anachronism,1334551882 +94605,4299,Heath Ledger,1334551858 +94605,4299,historical,1334551873 +94605,4299,Paul Bettany,1334551861 +94605,4339,based on a book,1334882609 +94605,4339,Frank Sinatra,1334882606 +94605,4339,Trevor Howard,1334882603 +94605,4344,Don Cheadle,1335138377 +94605,4344,Halle Berry,1335138374 +94605,4344,Hugh Jackman,1335138369 +94605,4344,John Travolta,1335138371 +94605,4347,nazis,1367852046 +94605,4363,Cliff Robertson,1334880592 +94605,4363,Michael Caine,1334880595 +94605,4367,Angelina Jolie,1335138597 +94605,4367,Jon Voight,1335138621 +94605,4370,artificial intelligence,1335139262 +94605,4370,dystopia,1335139253 +94605,4370,future,1335139319 +94605,4370,Jude Law,1335139300 +94605,4370,science fiction,1335139287 +94605,4370,Steven Spielberg,1335139271 +94605,4427,historical,1334157042 +94605,4427,intelligent,1334157042 +94605,4427,Katherine Hepburn,1334157042 +94605,4427,Peter O'Toole,1334157042 +94605,4427,witty,1334157042 +94605,4429,based on a book,1334370106 +94605,4429,Gregory Peck,1334370110 +94605,4429,Richard Basehart,1334370116 +94605,4531,Arnold Schwarzenegger,1335072396 +94605,4531,James Belushi,1335072398 +94605,4640,violent,1367852328 +94605,4655,politics,1367852204 +94605,4661,thriller,1367852302 +94605,4709,Clint Eastwood,1334343690 +94605,4709,comedy,1334343690 +94605,4709,gold,1334343690 +94605,4709,Lee Marvin,1334343690 +94605,4709,musical,1334343690 +94605,4709,western,1334343690 +94605,4713,based on a book,1334604678 +94605,4713,Ken Russell,1334604671 +94605,4713,ominous,1334604683 +94605,4713,science fiction,1334604708 +94605,4713,William Hurt,1334604661 +94605,4769,nazis,1367852046 +94605,4776,Denzel Washington,1334550673 +94605,4776,Ethan Hawke,1334550655 +94605,4784,based on a book,1335231819 +94605,4784,Jeremy Irons,1335231843 +94605,4784,Meryl Streep,1335231843 +94605,4809,whistleblower,1334366324 +94605,4842,based on a book,1334882412 +94605,4842,Christopher Walken,1334882410 +94605,4842,Frederick Forsyth,1334882466 +94605,4842,Jim Broadbent,1334882483 +94605,4842,Tom Berenger,1334882502 +94605,4845,stupid,1367852244 +94605,4932,Brian De Palma,1334549838 +94605,4932,Michael Caine,1334549879 +94605,4932,Nancy Allen,1334549879 +94605,4932,suspense,1334549879 +94605,4947,police,1367852173 +94605,4956,Peter O'Toole,1334367502 +94605,4956,quirky,1334367502 +94605,4969,mystery,1367852004 +94605,4993,based on a book,1334156957 +94605,4993,fantasy,1334156951 +94605,4993,Tolkien,1334156977 +94605,5004,Peter Sellers,1334154871 +94605,5016,based on a book,1334548526 +94605,5016,Cate Blanchett,1334548569 +94605,5016,Judi Dench,1334548531 +94605,5016,Julianne Moore,1334548576 +94605,5016,Kevin Spacey,1334548553 +94605,5021,ensemble cast,1367851819 +94605,5039,fantasy,1335104195 +94605,5039,magic,1335104209 +94605,5039,Peter MacNicol,1335104213 +94605,5039,Ralph Richardson,1335104236 +94605,5120,based on a play,1334157684 +94605,5120,games,1334157615 +94605,5120,intelligent,1334157608 +94605,5120,Laurence Olivier,1334157667 +94605,5120,Michael Caine,1334157649 +94605,5120,witty,1334157697 +94605,5199,David Carradine,1334552503 +94605,5199,Stacy Keach,1334552503 +94605,5199,western,1334552512 +94605,5213,christianity,1367851697 +94605,5267,inspirational,1367851946 +94605,5291,Akira Kurosawa,1334328217 +94605,5291,cerebral,1334328224 +94605,5291,enigmatic,1334328221 +94605,5291,multiple storylines,1334328247 +94605,5291,nonlinear,1334328227 +94605,5291,samurai,1334328230 +94605,5291,surreal,1334328241 +94605,5434,tense,1367852274 +94605,5475,Costa-Gavras,1334803402 +94605,5475,tense,1334803406 +94605,5475,Yves Montand,1334803427 +94605,5493,James Coburn,1335072001 +94605,5493,Lee J. Cobb,1335072017 +94605,5493,spoof,1335072005 +94605,5497,James Coburn,1335071551 +94605,5498,black and white,1367851654 +94605,5499,Audrey Hepburn,1334552691 +94605,5499,Richard Harris,1334552691 +94605,5499,Richard Lester,1334552691 +94605,5499,Robert Shaw,1334552691 +94605,5499,Sean Connery,1334552691 +94605,5501,stupid,1367852245 +94605,5502,atmospheric,1334603709 +94605,5502,Joaquin Phoenix,1334603674 +94605,5502,M. Night Shyamalan,1334603671 +94605,5502,Mel Gibson,1334603679 +94605,5502,moral ambiguity,1334603698 +94605,5502,suspense,1334603686 +94605,5507,Samuel L. Jackson,1335138544 +94605,5507,Vin Diesel,1335138547 +94605,5527,based on a book,1334548369 +94605,5527,book was better,1334548386 +94605,5527,Gwyneth Paltrow,1334548338 +94605,5528,creepy,1334366643 +94605,5528,dark,1334366645 +94605,5528,psychological,1334366636 +94605,5528,Robin Williams,1334366631 +94605,5528,suspense,1334366655 +94605,5564,high school,1367851920 +94605,5574,Jason Statham,1335072247 +94605,5585,stupid,1367852244 +94605,5611,Heath Ledger,1334882353 +94605,5611,historical,1334882376 +94605,5611,remake,1334882365 +94605,5642,police,1367852173 +94605,5673,Adam Sandler,1334367413 +94605,5673,Philip Seymour Hoffman,1334367418 +94605,5673,quirky,1334367421 +94605,5707,Paul Newman,1334365527 +94605,5707,Sally Field,1334365530 +94605,5796,Orson Welles,1335071527 +94605,5796,Peter Sellers,1335071529 +94605,5796,Woody Allen,1335071532 +94605,5799,Paul Newman,1334370186 +94605,5799,Ralph Richardson,1334370186 +94605,5847,historical,1334365781 +94605,5847,Houdini,1334365699 +94605,5847,racism,1334365787 +94605,5872,Halle Berry,1335137677 +94605,5872,James Bond,1335137672 +94605,5872,Pierce Brosnan,1335137680 +94605,5881,based on a book,1334604523 +94605,5881,George Clooney,1334604519 +94605,5881,philosophy,1334604596 +94605,5881,psychology,1334604596 +94605,5881,remake,1334604602 +94605,5881,science fiction,1334604560 +94605,5881,space,1334604565 +94605,5881,Stanislaw Lem,1334604538 +94605,5944,Brent Spiner,1335139787 +94605,5944,future,1335139816 +94605,5944,Jonathan Frakes,1335139797 +94605,5944,Patrick Stewart,1335139784 +94605,5944,science fiction,1335139805 +94605,5944,sequel,1335139842 +94605,5944,space,1335139816 +94605,5944,Star Trek,1335139781 +94605,5952,based on a book,1334156716 +94605,5952,fantasy,1334156723 +94605,5952,Tolkien,1334156745 +94605,5989,based on a book,1335101662 +94605,5989,based on a true story,1335101666 +94605,5989,Christopher Walken,1335101669 +94605,5989,Leonardo DiCaprio,1335101672 +94605,5989,Martin Sheen,1335101693 +94605,5989,Steven Spielberg,1335101675 +94605,5989,Tom Hanks,1335101682 +94605,5992,based on a book,1334367266 +94605,5992,depression,1334367295 +94605,5992,intellectual,1334367280 +94605,5992,Julianne Moore,1334367283 +94605,5992,Meryl Streep,1334367260 +94605,5992,Nicole Kidman,1334367263 +94605,5995,Adrien Brody,1334367120 +94605,5995,historical,1334367127 +94605,5995,Roman Polanski,1334367132 +94605,6185,police,1367852173 +94605,6216,nazis,1367852046 +94605,6239,based on a book,1335104066 +94605,6239,James Mason,1335104076 +94605,6239,Jules Verne,1335104071 +94605,6239,science fiction,1335104092 +94605,6260,christianity,1367851697 +94605,6323,creepy,1334549171 +94605,6323,dark,1334549168 +94605,6323,John Cusack,1334549164 +94605,6323,psychology,1334549188 +94605,6323,suspense,1334549173 +94605,6371,franchise,1367851888 +94605,6378,car chase,1334551966 +94605,6378,remake,1334552042 +94605,6440,John Goodman,1334367561 +94605,6440,john turturro,1334367564 +94605,6440,quirky,1334367562 +94605,6440,wry,1334367574 +94605,6441,Christopher Plummer,1334882797 +94605,6441,Kenneth More,1334882742 +94605,6441,Laurence Olivier,1334882752 +94605,6441,Michael Caine,1334882709 +94605,6441,Ralph Richardson,1334882797 +94605,6441,Robert Shaw,1334882797 +94605,6441,Trevor Howard,1334882742 +94605,6451,Robert Redford,1335101940 +94605,6451,Zero Mostel,1335101947 +94605,6478,Paul Newman,1334552600 +94605,6478,western,1334552611 +94605,6498,moral ambiguity,1334882917 +94605,6498,Peter O'Toole,1334882876 +94605,6550,John Malkovich,1335071500 +94605,6550,Rowan Atkinson,1335071498 +94605,6630,christianity,1367851697 +94605,6639,tense,1367852274 +94605,6639,thriller,1367852302 +94605,6658,Blake Edwards,1334599080 +94605,6658,Bo Derek,1334598977 +94605,6658,Brian Dennehy,1334599068 +94605,6658,Dudley Moore,1334599068 +94605,6711,atmospheric,1334883262 +94605,6711,Bill Murray,1334883260 +94605,6711,bittersweet,1334883278 +94605,6711,intelligent,1334883264 +94605,6711,poignant,1334883267 +94605,6711,Scarlett Johansson,1334883270 +94605,6896,nazis,1367852046 +94605,6900,Bruce Dern,1334802359 +94605,6900,Robert Shaw,1334802359 +94605,6900,suspense,1334802373 +94605,6981,christianity,1367851697 +94605,6989,based on a book,1334801798 +94605,6989,Brian Dennehy,1334801798 +94605,6989,Lee Marvin,1334801798 +94605,6989,Martin Cruz Smith,1334801798 +94605,6989,William Hurt,1334801798 +94605,6990,based on a book,1335101785 +94605,6990,based on a true story,1335101881 +94605,6990,Donald Sutherland,1335101789 +94605,6990,historical,1335101805 +94605,6990,Sean Connery,1335101781 +94605,7027,Brian Dennehy,1334552324 +94605,7027,Danny Glover,1334552199 +94605,7027,John Cleese,1334552219 +94605,7027,Kevin Costner,1334552176 +94605,7027,Kevin Kline,1334552180 +94605,7027,Lawrence Kasdan,1334552184 +94605,7027,Scott Glenn,1334552324 +94605,7044,atmospheric,1334367696 +94605,7044,based on a book,1334367684 +94605,7044,black comedy,1334367686 +94605,7044,David Lynch,1334367682 +94605,7044,Laura Dern,1334367680 +94605,7044,Nicolas Cage,1334367677 +94605,7044,Willem Dafoe,1334367693 +94605,7063,insanity,1334368231 +94605,7063,Klaus Kinski,1334368156 +94605,7063,obsession,1334368231 +94605,7063,stylized,1334368164 +94605,7063,Werner Herzog,1334368161 +94605,7069,atmospheric,1335231419 +94605,7069,dark,1335231407 +94605,7069,gritty,1335231407 +94605,7069,Jon Finch,1335231330 +94605,7069,Roman Polanski,1335231236 +94605,7069,Shakespeare,1335231228 +94605,7076,car chase,1334342556 +94605,7076,cynical,1334342561 +94605,7076,gritty,1334342546 +94605,7076,Steve McQueen,1334342550 +94605,7151,based on a book,1335231571 +94605,7151,boring,1335231596 +94605,7151,Colin Firth,1335231569 +94605,7151,historical,1335231584 +94605,7151,scarlett johansson,1335231575 +94605,7151,slow,1335231596 +94605,7151,terrible adaptation,1335231605 +94605,7153,based on a book,1334156943 +94605,7153,fantasy,1334156910 +94605,7153,Tolkien,1334156943 +94605,7162,oscar (best cinematography),1367852122 +94605,7205,camels,1334369392 +94605,7205,Candice Bergen,1334369387 +94605,7205,desert,1334369398 +94605,7205,Sean Connery,1334369384 +94605,7209,Jacques Tati,1334162470 +94605,7209,whimsical,1334156860 +94605,7209,witty,1334156866 +94605,7223,mystery,1367852004 +94605,7235,violent,1367852328 +94605,7241,nazis,1367852046 +94605,7247,based on a book,1334343892 +94605,7247,Dick Van Dyke,1334343917 +94605,7311,based on a book,1334369746 +94605,7311,Greer Garson,1334369746 +94605,7311,John Mills,1334369729 +94605,7338,Laurence Olivier,1334547391 +94605,7338,Shakespeare,1334547394 +94605,7347,based on a book,1334548991 +94605,7347,Johnny Depp,1334548984 +94605,7347,mystery,1334549119 +94605,7445,Christopher Walken,1334881082 +94605,7445,Denzel Washington,1334881084 +94605,7481,Dennis Quaid,1335139545 +94605,7481,future,1335139562 +94605,7481,Louis Gossett Jr.,1335139545 +94605,7481,science fiction,1335139562 +94605,7481,space,1335139563 +94605,7570,Roger Moore,1334075676 +94605,7573,Sean Connery,1334075758 +94605,7669,based on a book,1334548047 +94605,7669,Colin Firth,1334548044 +94605,7669,Jane Austen,1334548051 +94605,7669,Jennifer Ehle,1334548247 +94605,7714,Arthurian legend,1334343371 +94605,7714,Franco Nero,1334343395 +94605,7714,King Arthur,1334343363 +94605,7714,Lancelot,1334343379 +94605,7714,Lionel Jeffries,1334343485 +94605,7714,Merlin,1334343408 +94605,7714,Richard Harris,1334343367 +94605,7831,mystery,1367852004 +94605,7834,mystery,1367852004 +94605,7894,James Coburn,1334880690 +94605,7894,Sergio Leone,1334880664 +94605,7894,western,1334880690 +94605,8167,adventure,1334027195 +94605,8167,basil rathbone,1334027219 +94605,8167,errol flynn,1334027239 +94605,8167,pirates,1334027172 +94605,8167,romance,1334027200 +94605,8167,swords,1334027185 +94605,8207,tense,1367852274 +94605,8207,thriller,1367852302 +94605,8208,based on a book,1334804334 +94605,8208,Tyrone Power,1334804353 +94605,8208,W. Somerset Maugham,1334804380 +94605,8228,classic,1334156872 +94605,8228,film noir,1334156894 +94605,8228,Humphrey Bogart,1334156688 +94605,8228,Sidney Greenstreet,1334156688 +94605,8371,Colm Feore,1335138819 +94605,8371,Judi Dench,1335138805 +94605,8371,science fiction,1335138842 +94605,8371,sequel,1335138828 +94605,8371,Thandie Newton,1335138863 +94605,8371,Vin Diesel,1335138798 +94605,8501,Jennifer Jason Leigh,1334550088 +94605,8501,Rutger Hauer,1334550085 +94605,8501,suspense,1334550096 +94605,8521,Fredric March,1335230977 +94605,8651,insanity,1334343560 +94605,8651,musical,1334343549 +94605,8651,Peter O'Toole,1334343549 +94605,8651,quest,1334343549 +94605,8651,redemption,1334343573 +94605,8651,Sophia Loren,1334343549 +94605,8665,handheld cameras,1334075854 +94605,8782,science fiction,1335104846 +94605,8782,tv remake,1335104826 +94605,8783,Adrien Brody,1334603777 +94605,8783,Atmospheric,1334603774 +94605,8783,Joaquin Phoenix,1334603768 +94605,8783,M. Night Shyamalan,1334603764 +94605,8783,psychological,1334603808 +94605,8783,Sigourney Weaver,1334603771 +94605,8783,suspense,1334603798 +94605,8879,Agatha Christie,1334551210 +94605,8879,based on a book,1334551236 +94605,8879,Ingrid Bergman,1334551199 +94605,8879,Jacqueline Bisset,1334551214 +94605,8879,Lauren Bacall,1334551192 +94605,8879,Michael York,1334551203 +94605,8879,mystery,1334551223 +94605,8879,Sean Connery,1334551189 +94605,8905,Gérard Depardieu,1334599397 +94605,8905,historical,1334599442 +94605,8905,Ridley Scott,1334599411 +94605,8905,Sigourney Weaver,1334599436 +94605,8905,Vangelis,1334599420 +94605,8923,based on a book,1335231656 +94605,8923,Nastassia Kinski,1335231659 +94605,8923,Roman Polanski,1335231662 +94605,8923,Thomas Hardy,1335231665 +94605,8949,based on a book,1334883307 +94605,8949,dark,1334883322 +94605,8949,dialogue driven,1334883333 +94605,8949,obsession,1334883341 +94605,8949,Paul Giamatti,1334883302 +94605,8949,Sandra Oh,1334883354 +94605,8970,fantasy,1334369660 +94605,8970,Johnny Depp,1334369656 +94605,8970,Kate Winslet,1334369659 +94605,8977,Anthony Hopkins,1334882213 +94605,8977,Colin Farrell,1334882218 +94605,8977,historical,1334882229 +94605,8977,Oliver Stone,1334882247 +94605,8977,Rosario Dawson,1334882307 +94605,8977,Val Kilmer,1334882233 +94605,25834,father-son relationship,1367851869 +94605,26003,black and white,1367851654 +94605,26078,politics,1367852204 +94605,26084,Buddy Hackett,1334343111 +94605,26084,Hermoine Gingold,1334343103 +94605,26084,Robert Preston,1334343105 +94605,26084,Shirley Jones,1334343108 +94605,26085,Marlon Brando,1334369955 +94605,26085,Trevor Howard,1334369953 +94605,26122,dark,1367851772 +94605,26256,James Garner,1315541000 +94605,26476,David Bowie,1334882989 +94605,26476,Tom Conti,1334883000 +94605,26750,Alan Rickman,1334881423 +94605,27005,police,1367852173 +94605,27700,violent,1367852328 +94605,27831,Daniel Craig,1334550863 +94605,30707,Bittersweet,1334365910 +94605,30707,Clint Eastwood,1334365892 +94605,30707,dark,1334365936 +94605,30707,gritty,1334365936 +94605,30707,Hilary Swank,1334365936 +94605,30707,Morgan Freeman,1334365894 +94605,30707,narrated,1334365896 +94605,30812,biography,1334368629 +94605,30812,Cate Blanchett,1334368632 +94605,30812,Leonardo DiCaprio,1334368625 +94605,30812,Martin Scorsese,1334368627 +94605,30812,mental illness,1367851986 +94605,30846,mental illness,1367851985 +94605,31225,inspirational,1367851946 +94605,31255,Alistair MacLean,1335105173 +94605,31255,based on a book,1335105173 +94605,31255,Ernest Borgnine,1335105174 +94605,31255,Jim Brown,1335105173 +94605,31255,Patrick McGoohan,1335105173 +94605,31255,Rock Hudson,1335105173 +94605,31923,based on a book,1334156771 +94605,31923,Charlton Heston,1334551447 +94605,31923,Christopher Lee,1334551500 +94605,31923,classic,1334156782 +94605,31923,Faye Dunaway,1334551518 +94605,31923,historical,1334156251 +94605,31923,Michael York,1334551480 +94605,31923,Oliver Reed,1334156251 +94605,31923,Raquel Welch,1334551457 +94605,31923,Richard Lester,1334551464 +94605,31923,swashbuckling,1334156186 +94605,31923,sword fight,1334156251 +94605,31923,witty,1334156777 +94605,31934,camels,1334369334 +94605,31934,Ralph Richardson,1334369334 +94605,31934,Zoltan Korda,1334369317 +94605,32017,saccharine,1334603472 +94605,32017,Vin Diesel,1334603485 +94605,32383,comedy,1334343831 +94605,32383,fantasy,1334343831 +94605,32383,Fred Astaire,1334343832 +94605,32383,Keenan Wynn,1334343832 +94605,32383,magic,1334343831 +94605,32383,musical,1334343831 +94605,32383,Petula Clark,1334343832 +94605,32383,racism,1334343832 +94605,33036,Clint Eastwood,1335071647 +94605,33036,George Kennedy,1335071649 +94605,34153,inspirational,1367851946 +94605,36401,anachronism,1334604019 +94605,36401,boring,1334604019 +94605,36401,contrived,1334604019 +94605,36401,fantasy,1334603991 +94605,36401,Heath Ledger,1334603961 +94605,36401,Matt Damon,1334603966 +94605,36401,Terry Gilliam,1334603963 +94605,37733,Viggo Mortensen,1334158340 +94605,39292,cerebral,1334803107 +94605,39292,George Clooney,1334802544 +94605,39292,historical,1334803082 +94605,39292,Robert Downey Jr.,1334803040 +94605,39292,suspense,1334803047 +94605,40278,based on a book,1334367034 +94605,40278,Jake Gyllenhaal,1334367025 +94605,40278,Jamie Foxx,1334367028 +94605,40339,pixar,1367852148 +94605,40583,based on a book,1334803558 +94605,40583,corruption,1334803548 +94605,40583,George Clooney,1334803540 +94605,40583,Matt Damon,1334803544 +94605,40973,Hardy Kruger,1334882552 +94605,40973,Richard Burton,1334882552 +94605,40973,Richard Harris,1334882552 +94605,40973,Roger Moore,1334882558 +94605,41285,Scarlett Johansson,1335102353 +94605,41285,Woody Allen,1335102351 +94605,43560,based on a book,1334601000 +94605,43560,Colin Firth,1334601004 +94605,43560,Derek Jacobi,1334601010 +94605,43560,Emma Thompson,1334601014 +94605,43560,magic,1334601016 +94605,44193,high school,1367851921 +94605,45186,Laurence Fishburne,1335138124 +94605,45186,Philip Seymour Hoffman,1335138115 +94605,45186,Ving Rhames,1335138118 +94605,45730,fantasy,1334603924 +94605,45730,M. Night Shyamalan,1334603910 +94605,45730,Paul Giamatti,1334603913 +94605,46723,Brad Pitt,1335232341 +94605,46723,Cate Blanchett,1335232360 +94605,46723,multiple storylines,1335232360 +94605,46972,Ben Stiller,1334603347 +94605,46972,Dick Van Dyke,1334603351 +94605,46972,fantasy,1334603374 +94605,46972,Ricky Gervais,1334603356 +94605,46972,Robin Williams,1334603360 +94605,47122,high school,1367851921 +94605,48738,Forest Whitaker,1334366870 +94605,48738,historical,1334366900 +94605,48738,James McAvoy,1334366872 +94605,48774,based on a book,1335102967 +94605,48774,Clive Owen,1335102967 +94605,48774,dystopia,1335102967 +94605,48774,future,1335102967 +94605,48774,Julianne Moore,1335102967 +94605,48774,Michael Caine,1335102899 +94605,48774,science fiction,1335102967 +94605,48997,Alan Rickman,1335231982 +94605,48997,based on a book,1335231982 +94605,48997,Dustin Hoffman,1335231982 +94605,48997,historical,1335231982 +94605,49530,Leonardo DiCaprio,1334366947 +94605,49530,sacrifice,1334366972 +94605,50798,stupid,1367852244 +94605,51540,based on a true story,1335102481 +94605,51540,Jake Gyllenhaal,1335102487 +94605,51540,Robert Downey Jr.,1335102484 +94605,52245,slapstick,1334155963 +94605,52245,Will Ferrell,1334155952 +94605,52694,Rowan Atkinson,1334155687 +94605,53972,Bruce Willis,1335138224 +94605,53996,John Turturro,1335138733 +94605,53996,Steven Spielberg,1335138736 +94605,54259,based on a book,1335104475 +94605,54259,fantasy,1335104475 +94605,54259,Ian McKellen,1335104475 +94605,54259,magic,1335104475 +94605,54259,Michelle Pfeiffer,1335104475 +94605,54259,Peter O'Toole,1335104475 +94605,54259,Robert De Niro,1335104421 +94605,54997,Christian Bale,1334341926 +94605,54997,Russell Crowe,1334341922 +94605,54997,western,1334341941 +94605,55052,based on a book,1335231734 +94605,55052,historical,1335231752 +94605,55052,James McAvoy,1335231726 +94605,55052,Keira Knightley,1335231728 +94605,55290,based on a book,1334550585 +94605,55290,Casey Affleck,1334550582 +94605,55290,morality,1334550591 +94605,55290,Morgan Freeman,1334550575 +94605,55363,boring,1334329524 +94605,56171,based on a book,1334600680 +94605,56171,Daniel Craig,1334600706 +94605,56171,magic,1334600688 +94605,56171,Nicole Kidman,1334600698 +94605,56171,Phillip Pullman,1334600683 +94605,56171,terrible adaptation,1334600731 +94605,56174,based on a book,1334600255 +94605,56174,remake,1334600267 +94605,56174,Will Smith,1334600257 +94605,56174,zombies,1334600260 +94605,56782,based on a book,1334366717 +94605,56782,Daniel Day-Lewis,1334366712 +94605,56782,gratuitous violence,1334368525 +94605,57528,violent,1367852328 +94605,57532,stupid,1367852244 +94605,58105,based on a book,1334600860 +94605,58105,fantasy,1334600885 +94605,58105,magic,1334600872 +94605,58105,Martin Short,1334600896 +94605,58105,Nick Nolte,1334600867 +94605,58293,visually appealing,1334599192 +94605,59834,Burt Reynolds,1335102681 +94605,59834,gritty,1335102703 +94605,59834,Jim Brown,1335102689 +94605,59834,Raquel Welch,1335102681 +94605,59834,western,1335102681 +94605,60126,Anne Hathaway,1335071432 +94605,60126,lame,1335071455 +94605,60126,Steve Carell,1335071435 +94605,61986,Ed Harris,1334158417 +94605,61986,Renee Zellweger,1334158417 +94605,61986,Viggo Mortensen,1334158417 +94605,61986,western,1334158417 +94605,62376,atmospheric,1334600633 +94605,62376,based on a book,1334600607 +94605,62376,Bill Murray,1334600613 +94605,62792,police,1367852173 +94605,63072,based on a book,1335103012 +94605,63072,Charlize Theron,1335103016 +94605,63072,dystopia,1335103020 +94605,63072,moral ambiguity,1335103041 +94605,63072,Viggo Mortensen,1335103024 +94605,63436,franchise,1367851888 +94605,63859,pixar,1367852148 +94605,64614,Clint Eastwood,1334365951 +94605,64614,culture clash,1334365953 +94605,64614,friendship,1334365961 +94605,64614,racism,1334365956 +94605,64614,redemption,1334365958 +94605,64620,historical,1334366371 +94605,65088,Adam Sandler,1334603287 +94605,65685,Andy Serkis,1334600799 +94605,65685,based on a book,1334600775 +94605,65685,Brendan Fraser,1334600787 +94605,65685,Helen Mirren,1334600781 +94605,65685,magic,1334600815 +94605,65685,Paul Bettany,1334600784 +94605,66371,cello,1334803766 +94605,66371,emotional,1334803760 +94605,66371,Japan,1334803780 +94605,66371,quirky,1334803788 +94605,67197,Nicolas Cage,1334600149 +94605,67197,stupid,1334600155 +94605,67408,pixar,1367852148 +94605,67923,franchise,1367851888 +94605,68159,Russell Crowe,1334366492 +94605,68554,based on a book,1335103444 +94605,68554,Dan Brown,1335103450 +94605,68554,Ewan McGregor,1335103441 +94605,68554,Tom Hanks,1335103437 +94605,69278,Will Ferrell,1334155803 +94605,69951,Christopher Plummer,1334604146 +94605,69951,contrived,1334604244 +94605,69951,disappointing,1334604219 +94605,69951,fantasy,1334604154 +94605,69951,Heath Ledger,1334604111 +94605,69951,Johnny Depp,1334604114 +94605,69951,Terry Gilliam,1334604128 +94605,70336,Dennis Quaid,1335138705 +94605,71057,Christopher Plummer,1335139182 +94605,71057,Crispin Glover,1335139203 +94605,71057,dark,1335139127 +94605,71057,dystopia,1335139124 +94605,71057,Elijah Wood,1335139130 +94605,71057,Jennifer Connelly,1335139202 +94605,71057,John C. Reilly,1335139182 +94605,71057,Martin Landau,1335139182 +94605,71057,visually appealing,1335139140 +94605,71264,pixar,1367852148 +94605,72378,disaster,1334600075 +94605,72378,John Cusack,1334600064 +94605,72378,science fiction,1334600070 +94605,72378,stupid,1334600085 +94605,72378,Woody Harrelson,1334600067 +94605,72998,culture clash,1334328582 +94605,72998,epic,1334328582 +94605,72998,flying,1334328582 +94605,72998,moral choice,1334328583 +94605,72998,redemption,1334328583 +94605,72998,resistance,1334328582 +94605,72998,science fiction,1334328583 +94605,73321,Bible,1335103260 +94605,73321,Christianity,1335103172 +94605,73321,Denzel Washington,1335103164 +94605,73321,dystopia,1335103247 +94605,73321,Gary Oldman,1335103166 +94605,73321,Jennifer Beals,1335103237 +94605,74545,Ewan McGregor,1334801405 +94605,74545,Pierce Brosnan,1334801408 +94605,74545,Roman Polanski,1334801414 +94605,74545,suspense,1334801688 +94605,78469,cheesy,1334328930 +94605,78469,Liam Neeson,1334328926 +94605,78637,franchise,1367851888 +94605,79091,pixar,1367852148 +94605,79185,Cameron Diaz,1335072211 +94605,79185,contrived,1335072192 +94605,81229,Bruce Willis,1334328964 +94605,81229,Helen Mirren,1334328968 +94605,81229,John Malkovich,1334328970 +94605,81229,Morgan Freeman,1334328973 +94605,81564,pixar,1367852148 +94605,81591,dark,1334366687 +94605,81591,Natalie Portman,1334366684 +94605,81591,psychological,1334366691 +94605,81591,surreal,1334366696 +94605,82459,atmospheric,1334329221 +94605,82459,based on a book,1334329255 +94605,82459,dark,1334329246 +94605,82459,historical,1334329261 +94605,82459,Jeff Bridges,1334329231 +94605,82459,justice,1334329280 +94605,82459,Western,1334329216 +94605,82461,Jeff Bridges,1335138921 +94605,82461,science fiction,1335138927 +94605,87304,father-son relationship,1367851869 +94605,91077,based on a book,1334803942 +94605,91077,George Clooney,1334803925 +94605,91077,Hawaii,1334803928 +94605,99114,violent,1367852328 +94610,86377,hilarious,1430592200 +94610,86377,insightful,1430592200 +94610,86377,straightforward,1430592200 +94676,3158,China,1325456954 +94676,3158,historical,1325456955 +94676,51127,rockumentary,1325457601 +94676,61742,soccer,1325457543 +94676,61742,sports,1325457546 +94676,68194,soccer,1325448991 +94676,79760,sports,1325457515 +94676,89090,fashion,1325455365 +94682,2571,action,1435031295 +94682,2571,futuristic,1435031295 +94682,2571,science fiction,1435031295 +94699,1653,science fiction,1437704306 +94699,132046,futuristic,1437367763 +94699,132046,george clooney,1437367763 +94699,132046,sci-fi,1437367763 +94715,260,good vs evil,1441258263 +94715,260,lightsabers,1441258278 +94715,260,robots,1441258184 +94736,260,camp,1443310328 +94736,260,sci-fi,1443310301 +94743,49647,try,1172988213 +94746,1676,aliens,1318072853 +94746,1676,funny,1318072873 +94746,1676,satire,1318072921 +94746,1676,sci-fi,1318072857 +94746,1676,so bad it's awesome,1318072908 +94746,1676,space,1318072859 +94746,1676,witty,1318072868 +94746,1924,aliens,1318074542 +94746,1924,Edward D. Wood Jr.,1318074521 +94746,1924,so bad it's funny,1318074536 +94746,1924,so bad it's good,1318074523 +94746,1924,worst movie ever,1318074526 +94746,2291,Depp & Burton,1318072438 +94746,2291,fairy tale,1318072444 +94746,2291,fantasy,1318072433 +94746,2291,gothic,1318072436 +94746,2291,Johnny Depp,1318072421 +94746,2291,love story,1318072448 +94746,2291,surreal,1318072431 +94746,2291,Tim Burton,1318072428 +94746,2291,Winona Ryder,1318072450 +94746,2594,mindfuck,1318009321 +94746,2594,psychedelic,1318009321 +94746,4226,mystery,1318070594 +94746,4226,nonlinear,1318070600 +94746,4226,psychology,1318070592 +94746,4226,revenge,1318070603 +94746,51255,action,1318012722 +94746,51255,action spoof,1318012769 +94746,51255,black comedy,1318012733 +94746,51255,dark comedy,1318012762 +94746,51255,parody,1318012744 +94746,51255,Simon Pegg,1318012757 +94746,51255,twists & turns,1318012777 +94746,51255,violence,1318012750 +94746,79702,awkward,1318013815 +94746,79702,cultural references,1318013760 +94746,79702,fantasy,1318013753 +94746,79702,fight scenes,1318013747 +94746,79702,Michael Cera,1318013732 +94746,79702,stylized,1318013796 +94746,79702,surreal,1318013764 +94746,79702,video games,1318013739 +94746,79702,visually appealing,1318013787 +94756,260,old school,1442015115 +94756,260,romance,1442015126 +94760,135,Bruce Dern,1176850043 +94760,135,Harland Williams,1176850043 +94760,135,Harry Dean Stanton,1176849803 +94760,135,Kelsey Grammer,1176849803 +94760,135,Lauren Holly,1176849803 +94760,135,rebel commander,1176850043 +94760,135,renegade crew,1176850043 +94760,135,Rip Torn,1176850043 +94760,135,Rob Scheider,1176849803 +94760,135,rusty sub,1176850043 +94760,135,U.S. Navy submarine,1176850043 +94760,135,William H. Macy,1176850043 +94760,541,artificial human,1212496141 +94760,541,film-noir,1212496183 +94760,541,Harrison Ford,1212496112 +94760,541,memory,1212496131 +94760,553,Kurt Russell,1212495925 +94760,553,Val Kilmer,1212495934 +94760,761,Billy Zane,1176848543 +94760,761,Treat Williams,1176848543 +94760,1682,Jim Carrey,1212495842 +94760,1682,television,1212495847 +94760,2073,Judd Nelson,1176848204 +94760,2073,Kevin Costner,1176848204 +94760,2073,road trip adventure,1176848204 +94760,2445,Mira Sorvino,1212500406 +94760,2445,romance,1212500329 +94760,2445,Val Kilmer,1212500284 +94760,2827,alien abduction,1212494791 +94760,2827,Johnny Depp,1212494817 +94760,3035,Henry Fonda,1176849132 +94760,3035,Jack Lemmon,1176849132 +94760,3035,James Cagney,1176849132 +94760,3035,WWII comedy-drama,1176849132 +94760,3044,Kenneth Branagh,1212500203 +94760,3044,memory,1212500206 +94760,3044,past lives,1176848069 +94760,3066,Pearl Harbor attack,1212542896 +94760,3066,World War II,1212542876 +94760,3481,book by Nick Hornby,1212495638 +94760,3481,hilarious,1212495653 +94760,3481,Jack Black,1212495649 +94760,3481,John Cusack,1212495616 +94760,3481,loss,1212495668 +94760,3481,music,1212495665 +94760,3481,record store,1212495656 +94760,3481,relationships,1212495663 +94760,3619,50's & 60's music,1176848353 +94760,3619,Fran Drescher,1176848353 +94760,3619,juvenile pranks,1176848353 +94760,3619,Michelle Pfeiffer,1176848353 +94760,3619,Robert Wuhl,1176848353 +94760,3619,Tony Danza,1176848353 +94760,3994,atmospheric,1212414389 +94760,3994,Bruce Willis,1212414395 +94760,3994,comics,1212414381 +94760,3994,M. Night Shyamalan,1212414376 +94760,3994,Samuel L. Jackson,1212414399 +94760,3994,superhero,1212414397 +94760,4305,Jennifer Lopez,1176847919 +94760,4305,Jim Caviezel,1176847919 +94760,4305,loss,1176847919 +94760,4305,romance,1176847919 +94760,4305,supressed memories,1176847919 +94760,4310,Action,1176840274 +94760,4478,Mathew Broderick,1176849388 +94760,5881,based on a book,1212500073 +94760,5881,cinematography,1212500111 +94760,5881,classic,1212500084 +94760,5881,George Clooney,1212500068 +94760,5881,haunting soundtrack,1212500157 +94760,5881,memory,1212500169 +94760,5881,sci-fi,1212500079 +94760,5903,drugs,1212414149 +94760,5903,fascism,1212414124 +94760,5903,gunfight,1212414127 +94760,5903,revolution,1212414131 +94760,5903,totalitarianism,1212414136 +94760,7361,Jim Carrey,1212499962 +94760,7361,memory,1212499965 +94760,7361,romance,1212499973 +94760,8337,courtroom,1229987106 +94760,8337,Humphrey Bogart,1229987104 +94760,8337,military,1229987101 +94760,8337,personality disorder,1229987109 +94760,8337,WW II,1229987119 +94760,8939,brain implants,1212495209 +94760,8939,memory,1212495191 +94760,8939,Robin Williams,1212495178 +94760,35836,comedy,1212495017 +94760,35836,dumb,1212494981 +94760,35836,except for the dumb ending,1212495108 +94760,35836,geeks,1212495055 +94760,35836,romantic comedy,1212495125 +94760,35836,sex,1212495132 +94760,35836,Steve Carell,1212494979 +94760,35836,steve carrell,1212495033 +94760,35836,surprisingly funny,1212495047 +94760,35836,Would have given 5 stars,1212495108 +94760,47610,19th century,1212495285 +94760,47610,austria,1212495312 +94760,47610,Edward Norton,1212495259 +94760,47610,love story,1212495293 +94760,47610,magic,1212495282 +94760,47610,romance,1212495287 +94760,47610,Rufus Sewell,1212495280 +94760,47610,Vienna,1212495315 +94760,47950,!950's Superman TV show,1213794366 +94760,47950,George Reeves,1213794394 +94760,47950,George Reeves suicide,1213794275 +94760,47950,Superman TV show,1213794287 +94760,48520,Andy Dick,1212541777 +94760,48520,Dane Cook,1212541774 +94760,48520,Harland Williams,1212541789 +94760,48783,flag-raising photograph,1212495498 +94760,48783,iwo jima,1212495465 +94760,48783,propaganda,1212495507 +94760,48783,real heroes,1212495539 +94760,48783,World War II,1212495460 +94760,50064,George Clooney,1212494898 +94760,50064,WWII,1212494920 +94760,60069,Cute!,1229986466 +94760,60069,environmental,1229986455 +94760,60069,love story,1229986446 +94760,60069,pixar,1229986432 +94760,60069,Post apocalyptic,1229986459 +94760,60069,robots,1229986435 +94760,60069,space,1229986438 +94763,1258,Jack Nicholson,1315566335 +94763,1258,stanley k,1315566335 +94763,1258,Stephen King,1315566335 +94774,6,long,1430977260 +94774,6,tense,1430977268 +94774,36,Susan Sarandon,1342753846 +94774,783,bombast,1378407066 +94774,783,lust,1378407131 +94774,800,Chris Cooper,1342774178 +94774,919,heroine,1391640033 +94774,920,epic,1414806359 +94774,969,Katharine Hepburn,1344236312 +94774,1027,Alan Rickman,1374988637 +94774,1027,funny,1374992205 +94774,1027,Kevin Costner,1374988629 +94774,1027,upbeat,1374992208 +94774,1032,heroine,1391640000 +94774,1095,desperation,1410463393 +94774,1095,difficult to watch,1410463370 +94774,1095,realistic,1410463382 +94774,1128,cinematography,1379714902 +94774,1128,ghost story,1379714959 +94774,1128,low budget,1379715072 +94774,1128,zombies,1379715047 +94774,1178,Stanley Kubrick,1342855569 +94774,1214,heroine,1391639992 +94774,1223,funny,1341261695 +94774,1223,robots,1341261685 +94774,1225,music,1341884152 +94774,1266,realistic,1345604721 +94774,1285,Amorality,1377380334 +94774,1285,childish,1377380334 +94774,1285,teen angst,1377380232 +94774,1347,bizarre,1418518315 +94774,1347,unintentionally funny,1418518323 +94774,1376,Leonard Nimoy,1348975778 +94774,1376,Star Trek,1348975782 +94774,1376,William Shatner,1348975768 +94774,1566,cute romance,1378354634 +94774,1587,adventure,1343014873 +94774,1587,sword and sorcery,1342250216 +94774,1653,Jude Law,1339899737 +94774,1907,Eddie Murphy,1371958838 +94774,1907,supporting characters,1379465505 +94774,1949,Fred Zinnemann,1390361926 +94774,1949,Honor,1388634727 +94774,1949,Paul Scofield,1388634759 +94774,1960,long,1371412377 +94774,2003,affectionate,1382146460 +94774,2003,innocent,1382146460 +94774,2003,No Forced Drama,1382146460 +94774,2005,score,1381711858 +94774,2006,fun,1374988662 +94774,2081,supporting characters,1379349509 +94774,2096,2D animation,1378481983 +94774,2096,visually appealing,1378481989 +94774,2139,heroine,1391639916 +94774,2363,allegory,1376000879 +94774,2363,score,1376000861 +94774,2687,Jane,1378349953 +94774,2819,contrived romance,1378776390 +94774,2986,Belinda Bauer,1394244189 +94774,2986,good sequel,1394244211 +94774,2986,satire,1394244233 +94774,3093,leonard cohen,1344477935 +94774,3265,over the top,1402604932 +94774,3476,ghost story,1374961201 +94774,3688,disproportionate revenge,1378265338 +94774,3688,likeable characters,1378264097 +94774,3753,cheesy,1380814442 +94774,3753,long,1380814542 +94774,4090,buried treasure,1378686136 +94774,4090,repetitive,1378687027 +94774,4090,simple,1378686112 +94774,4090,songs,1378689394 +94774,4090,trippy,1378686108 +94774,4465,violencized sex,1374475540 +94774,4688,Bruce Beresford,1380242500 +94774,4688,sad ending,1380242036 +94774,4887,rock and roll,1402503467 +94774,4887,soundtrack,1402505482 +94774,4920,self-esteem,1377823923 +94774,4920,trivializes mental illness,1377823916 +94774,4956,forced cleverness,1377486796 +94774,4956,unlikable characters,1377486817 +94774,5389,horse,1380556863 +94774,5389,inappropriate music,1380556652 +94774,5389,Matt Damon,1380556512 +94774,5389,narrated,1380556531 +94774,5389,old west,1380556543 +94774,5389,pop music,1380556687 +94774,5444,funny,1374319287 +94774,5540,judi bowker,1391634639 +94774,5782,easily confused with other movie(s) (title),1320378990 +94774,6331,competition,1386040863 +94774,6617,gunfight,1375005103 +94774,6617,lame score,1375000406 +94774,7118,alternate world,1392670774 +94774,7118,ambitious,1392670773 +94774,7118,animation,1392670771 +94774,7118,classic,1392670811 +94774,7118,Gainax,1392670789 +94774,7118,inspirational,1392670831 +94774,7118,underdog,1392670837 +94774,7156,Errol Morris,1343190047 +94774,7844,comedy of errors,1380747699 +94774,7844,Hong Kong,1380749220 +94774,7844,Jet Li,1380746781 +94774,7844,Kick-Butt Women,1380746900 +94774,7844,martial arts,1380749161 +94774,7844,misunderstanding,1380746778 +94774,7844,wacky,1380746874 +94774,7844,wushu,1380746787 +94774,8906,animal cruelty,1424153634 +94774,8906,hyper-realism,1424153767 +94774,8906,italian,1424153786 +94774,8906,pointless shock,1424153622 +94774,8906,sadistic director,1424153775 +94774,8906,shock,1424153610 +94774,8906,sociopaths,1424153743 +94774,9010,body hair,1402709249 +94774,9010,merry-go-round,1402709235 +94774,26403,Tolkien,1394047500 +94774,26530,bad acting,1379959190 +94774,26530,Kick-Butt Women,1379959292 +94774,26530,Lana Clarkson,1379959250 +94774,26530,low budget,1379959317 +94774,26530,Roger Corman,1379959304 +94774,26530,sound effects,1379959268 +94774,26530,sword and sandal,1379959174 +94774,26547,Jackie Chan,1342841651 +94774,26763,Kick-Butt Women,1380145025 +94774,26763,Lana Clarkson,1380145006 +94774,26763,low budget,1380145044 +94774,26763,sequel,1380145278 +94774,26763,sound effects,1380159990 +94774,26763,sword and sandal,1380144999 +94774,26763,sword and sorcery,1380159986 +94774,26842,betrayal,1380335328 +94774,26842,funny,1380335317 +94774,26842,Jet Li,1380331604 +94774,26842,violent,1380331595 +94774,26869,animation,1392670732 +94774,26869,anime,1392670667 +94774,26869,love triangle,1392670706 +94774,26869,macross,1392670694 +94774,26869,pilots,1392670723 +94774,26869,Shinichirô Watanabe,1392670689 +94774,26869,space,1392670720 +94774,27155,superman,1344304997 +94774,27772,an incomprehensible bucket of bollocks,1351921513 +94774,39183,bittersweet,1374581104 +94774,39183,great soundtrack,1379894435 +94774,39183,realistic,1379894457 +94774,47452,ancient China,1380663997 +94774,47452,cultural references,1380663093 +94774,47452,funny,1380663077 +94774,47452,grand finale,1380666707 +94774,47452,Hong Kong,1380664615 +94774,47452,innuendo,1380666770 +94774,47452,Kick-Butt Women,1380661628 +94774,47452,lighthearted,1380666755 +94774,47452,low violence,1380666737 +94774,47452,Michelle Yeoh,1380661637 +94774,47452,misunderstanding,1380662101 +94774,47452,Pei-pei Cheng,1380665223 +94774,47452,romantic comedy,1380663929 +94774,47452,Sex Comedy,1380661687 +94774,47452,wushu,1380661667 +94774,53956,overrated,1373864063 +94774,53956,sentimental,1380557859 +94774,53956,stupid,1380557843 +94774,53956,unrealistic,1380557833 +94774,55820,dark,1383699808 +94774,55820,suspense,1383699800 +94774,56782,western,1383789331 +94774,60981,anime,1385084047 +94774,60981,ATATATATATATATATA,1385084162 +94774,60981,explosions,1392669672 +94774,60981,goofy,1385084060 +94774,60981,ultra-violence,1385084052 +94774,64695,forced exposition,1377826221 +94774,71429,2D characters,1412041770 +94774,71429,attention seeking,1412048350 +94774,71429,simplistic,1412048327 +94774,72737,2D animation,1378416853 +94774,72737,forgettable,1378416839 +94774,72737,funny,1378417204 +94774,77818,Canada,1346001176 +94774,77818,old west,1346001168 +94774,77818,small town,1346001172 +94774,78039,realism,1342758712 +94774,78574,heroine,1391640040 +94774,78893,acting,1358227458 +94774,78893,bad dialogue,1358227464 +94774,78893,funny bad,1355989257 +94774,78893,not funny,1358227476 +94774,79796,cgi blood,1361185089 +94774,81385,boring plot,1382062919 +94774,81385,no score,1382063063 +94774,81847,mother daughter relationship,1379351570 +94774,81847,villain,1379351575 +94774,82722,authentic,1425369678 +94774,82722,beautiful,1425369680 +94774,82722,historical,1425369693 +94774,82722,simple,1425369711 +94774,82934,Vietnam War,1396067755 +94774,82934,whistleblower,1396067749 +94774,87222,memory,1378618004 +94774,87529,humorless,1387493747 +94774,87529,lazy,1387493760 +94774,87529,Vulgar,1387493739 +94774,91014,histrionics,1355476401 +94774,92422,ghost story,1381883110 +94774,92422,ghosts,1381883115 +94774,92422,haunted house,1381883964 +94774,93838,shaky camera,1358825159 +94774,93840,brilliant satire,1379206597 +94774,93840,funny,1379206679 +94774,93840,original,1379208789 +94774,93840,premise,1379208777 +94774,93840,satire,1379206577 +94774,94780,Chris Hemsworth,1344762886 +94774,95167,mother-daughter relationships,1378948601 +94774,95558,shaky camera,1359679133 +94774,95761,ending sucked,1359602734 +94774,96629,funny,1379035768 +94774,96629,nudity,1379035778 +94774,96629,sword and sorcery,1379035773 +94774,98154,gripping,1380943081 +94774,98154,pacing,1380943081 +94774,101079,bisexuality,1370742675 +94774,101079,family,1370742694 +94774,101079,homosexuality,1370742675 +94774,101079,infidelity,1370742675 +94774,101079,Sweden,1370742675 +94774,101362,Special Effects,1374370592 +94774,102154,alien invasion,1372199883 +94774,102154,aliens,1372199884 +94774,102154,Brainiac,1372199884 +94774,102154,comic book,1372199884 +94774,102154,Superman,1372199884 +94774,102684,slow paced,1381772911 +94774,103107,music industry,1394318222 +94774,103228,fun,1382062871 +94774,103228,happy ending,1378596792 +94774,103228,pandering,1382062853 +94774,103339,cliche,1399824660 +94774,103339,so bad it's funny,1399824686 +94774,103339,unrealistic,1399824666 +94774,103688,70s,1378136917 +94774,103688,cliche,1378136900 +94774,103688,haunted house,1378141886 +94774,103688,homage,1378141880 +94774,104457,funny,1397604989 +94774,104457,slasher,1397604985 +94774,104457,subversive,1397604962 +94774,104457,violent,1397604987 +94774,104841,long shots,1381711794 +94774,104841,score,1381711762 +94774,104841,suspense,1381711608 +94774,104841,visually appealing,1381711615 +94774,104875,aliens,1379255288 +94774,104875,bad conveyance,1379255283 +94774,104875,comedy duo,1379255304 +94774,104875,family friendly,1379255353 +94774,104875,funny,1379255343 +94774,104875,low budget,1379128923 +94774,105236,Kick-Butt Women,1380486767 +94774,105236,low budget,1380486774 +94774,105236,Mexico,1380486928 +94774,105236,sword and sorcery,1380486745 +94774,105236,twins,1380486842 +94774,105252,bizarre,1380560947 +94774,105252,close-ups,1380560785 +94774,105252,dolphins,1380563375 +94774,105252,Italian,1380559195 +94774,105252,low budget,1380558746 +94774,105252,monsters,1380563248 +94774,105252,slow,1380559957 +94774,105252,sword and sorcery,1380558755 +94774,105252,Synthesizer,1380561525 +94774,105252,trippy,1380558805 +94774,105252,ultra-violence,1380558959 +94774,105504,tom hanks,1391204055 +94774,106002,Orson Scott Card,1392669532 +94774,106002,True to the book,1392669549 +94774,106489,abomination,1410463446 +94774,106696,music,1391373096 +94774,106696,physical violence,1391373107 +94774,107406,illogical,1426481295 +94774,107723,anime,1388716030 +94774,107723,Highlander,1388715990 +94774,107723,immortality,1388715996 +94774,107723,sword fight,1388716012 +94774,107723,Yoshiaki Kawajiri,1388715983 +94774,111314,Brendan Gleeson,1399943759 +94774,111314,Churchill,1399943752 +94774,111314,history,1399943780 +94774,111314,politics,1399943809 +94774,111314,World War II,1399943777 +94774,111384,feud,1411698406 +94774,111384,little dialogue,1411698445 +94774,111384,minimalist,1411698433 +94774,111384,slow pace,1411698497 +94774,111384,tense,1411698298 +94774,111384,violence,1411698455 +94774,111443,cameos,1411867772 +94774,111443,cooking,1411867746 +94774,111443,happy ending,1411867732 +94774,111443,internet,1411867850 +94774,111443,road trip,1411867717 +94774,111443,vanity,1411867708 +94774,111759,Reluctant Hero,1412361852 +94774,112290,Ethan Hawke,1412048592 +94774,112290,Partricia Arquette,1412048590 +94774,112290,pseudo-intelligent,1412048582 +94774,112290,realism,1412048585 +94774,112290,understated,1412048615 +94774,112552,predictable,1423945952 +94774,113674,attention seeking,1411787144 +94774,113674,dark,1411779894 +94774,113674,experimental,1411787156 +94774,113674,final scene,1411789785 +94774,113674,grief,1411788517 +94774,113674,insanity,1411779933 +94774,113674,narcissism,1411786981 +94774,113674,slow,1411787081 +94774,113674,twists & turns,1411779909 +94774,116797,derivative,1424038981 +94774,116797,self-important,1424038966 +94774,117529,schlock,1437073923 +94778,42021,merchant-ivory,1139861666 +94781,1227,Sergio Leone,1231241432 +94818,954,boy scouts,1355683021 +94818,954,Frank Capra,1355683018 +94818,954,political,1355683025 +94818,1747,black comedy,1288456127 +94818,1747,political,1288456124 +94818,3006,journalism,1288456232 +94818,3006,Russell Crowe,1288456216 +94818,4995,mathematics,1288456793 +94818,8966,science,1288456756 +94818,8966,sex,1288456739 +94818,8966,sexuality,1288456743 +94818,59810,election,1288456083 +94818,59810,politics,1288456071 +94818,59810,US President,1288456075 +94818,76738,conversation,1329071895 +94818,76738,odd,1329071895 +94818,76738,Personalities,1329071895 +94818,80463,based on true story,1296737289 +94818,80463,computers,1296737282 +94818,80463,innovation,1296737302 +94839,58559,Christopher Nolan,1451411060 +94839,58559,Heath Ledger,1451411029 +94839,58559,Morgan Freeman,1451411053 +94839,58559,stylized,1451411045 +94839,58559,thriller,1451411035 +94839,60069,Animation,1451411095 +94839,60069,funny,1451411089 +94839,60069,pixar,1451411085 +94853,72,whit stillman meets Diner,1139110502 +94853,8645,actress too old,1139761704 +94853,8645,too upper class,1139761704 +94853,27727,wild and fresh,1139177085 +94853,40819,whit stillman meets diner,1139110430 +94853,41573,utterly predictable ensemble flick,1137445827 +94858,260,sci-fi,1432673498 +94858,260,Science Fiction,1432673502 +94860,3262,Horror,1151483901 +94864,106920,Human Computer Interaction,1446769464 +94864,106920,intelligent,1446769467 +94864,106920,meaning of life,1446769436 +94864,106920,romance,1446769443 +94879,7301,transendental,1165566230 +94893,296,jc,1424538751 +94893,4262,classic,1424538702 +94893,4262,jc,1424538727 +94893,58559,serial killer,1430837391 +94908,48698,netwatch,1191681634 +94910,260,soundtrack,1423401359 +94927,27595,horrible acting,1421002494 +94927,27595,so bad its good,1421002494 +94927,27595,trash,1421002494 +94936,104457,murder,1437696382 +94936,104457,self-defence,1437696382 +94936,104457,slick,1437696382 +94941,52722,shit on a stick,1222127359 +94949,8368,Love this movie so much,1432360146 +94949,50872,very nice movie,1432360071 +94949,68954,very romantic movie,1432360184 +94951,1,computer animation,1175632498 +94957,260,classic,1435035940 +94957,260,Science Fiction,1435035845 +94974,3949,america,1432707720 +94974,3949,brilliant,1432707741 +94974,3949,dark,1432707734 +94974,3949,drugs,1432707698 +94974,3949,great acting,1432707728 +94974,3949,intense,1432707731 +94974,3949,loneliness,1432707714 +94987,41569,emotional,1140602249 +95046,75341,cynical protangonist,1357175049 +95046,75341,depressing,1357174649 +95046,75341,depression,1357175054 +95046,75341,drama,1357174656 +95046,75341,philosophical,1357174369 +95046,75341,Robert Pattinson,1357174659 +95046,75341,romance,1357174366 +95083,54259,blue blood,1386198759 +95100,61240,swedish,1241374688 +95114,1188,ballroom dancing,1421079463 +95114,1188,cinderella moment,1421079463 +95114,1188,romance,1421079463 +95126,2459,disturbing,1392689654 +95126,2459,grim,1392689661 +95126,93840,conspiracy,1392699069 +95126,93840,plot twist,1392699048 +95126,93840,satire,1392699039 +95126,97311,Olivia Wilde,1392689344 +95126,101102,Ben Kingsley,1392689603 +95150,260,amazing,1433333841 +95150,260,great story,1433333834 +95156,84156,happy,1365532664 +95174,260,action,1435953331 +95174,260,sci-fi,1435953318 +95198,5528,one of the best movies ever,1186509176 +95218,2858,toplist,1185240227 +95222,110,inspirational,1442167356 +95222,110,Oscar (Best Cinematography),1442167365 +95222,58306,china,1442167397 +95222,58306,history,1442167384 +95222,134853,Pixar,1442167331 +95227,37733,netflixq,1144363414 +95227,61132,R,1220131942 +95240,1961,Oscar (Best Picture),1228995192 +95240,1961,psychology,1228995194 +95240,1961,true story,1228995187 +95243,493,classic,1360849127 +95243,493,gangs,1360849130 +95243,493,gangsters,1360849132 +95243,493,great soundtrack,1360849135 +95243,493,Ice Cube,1360849141 +95243,493,Los Angeles,1360849145 +95243,493,Samuel L. Jackson,1360849149 +95243,493,The Hughes Brothers,1360849153 +95243,2416,1980s,1360845418 +95243,2416,college,1360845443 +95243,2416,Nudity (Topless),1360845430 +95243,2416,Robert Downey Jr.,1360845434 +95243,2706,comedy,1360846576 +95243,2706,funny,1360846581 +95243,2706,Nudity (Topless - Notable),1360846584 +95243,2706,Nudity (Topless),1360846587 +95243,2706,Seann William Scott,1360846597 +95243,2706,sexuality,1360846601 +95243,2706,virginity,1360846611 +95243,3146,amputee,1360843802 +95243,3146,fish,1360843809 +95243,3146,gigolo,1360843816 +95243,3146,Nudity (Topless - Brief),1360843832 +95243,3146,Rob Schneider,1360843850 +95243,3525,Neal Israel,1360846377 +95243,3525,Nudity (Topless),1360846381 +95243,3688,Bob Clark,1360846485 +95243,3688,cult film,1360846492 +95243,3688,high school,1360846495 +95243,3688,Nudity (Full Frontal - Notable),1360846500 +95243,3688,Nudity (Full Frontal),1360846505 +95243,3979,Adam Sandler,1360845085 +95243,3979,comedy,1360845093 +95243,3979,devil,1360845125 +95243,3979,hell,1360845119 +95243,3979,Quentin Tarantino,1360845133 +95243,3979,Reese Witherspoon,1360845139 +95243,3979,Rob Schneider,1360845156 +95243,3979,Rodney Dangerfield,1360845160 +95243,4728,Amy Smart,1360843683 +95243,4728,comedy,1360843688 +95243,4728,Cuba Gooding Jr.,1360843692 +95243,4728,Las Vegas,1360843700 +95243,4728,Rowan Atkinson,1360843710 +95243,4728,Whoopi Goldberg,1360843722 +95243,4845,Chris Kattan,1360844835 +95243,4845,Worst movie ever,1360844847 +95243,4845,Zach Galifianakis,1360844837 +95243,6796,black,1360848900 +95243,6796,crime,1360848904 +95243,6796,gangs,1360848908 +95243,6796,gangsters,1360848911 +95243,6796,ghetto,1360848914 +95243,6796,Ice Cube,1360848917 +95243,6796,Laurence Fishburne,1360848921 +95243,6796,Nudity (Topless - Brief),1360848928 +95243,8528,Ben Stiller,1360843534 +95243,8528,comedy,1360843554 +95243,8528,hilarious,1360843599 +95243,8528,Las Vegas,1360843565 +95243,8528,obscure sports,1360843609 +95243,34162,Christopher Walken,1360847567 +95243,34162,classic,1360847603 +95243,34162,comedy,1360847607 +95243,34162,funny,1360847610 +95243,34162,Nudity (Rear),1360847613 +95243,34162,Nudity (Topless),1360847616 +95243,34162,Owen Wilson,1360847620 +95243,34162,Rachel McAdams,1360847623 +95243,34162,silly,1360847629 +95243,34162,wedding,1360847643 +95243,35836,classic,1360847721 +95243,35836,comedy,1360847718 +95243,35836,hilarious,1360847725 +95243,35836,Los Angeles,1360847733 +95243,35836,nerds,1360847738 +95243,35836,Nudity (Topless - Notable),1360847741 +95243,35836,Nudity (Topless),1360847743 +95243,35836,Paul Rudd,1360847747 +95243,35836,romantic comedy,1360847755 +95243,35836,Seth Rogen,1360847760 +95243,35836,Steve Carell,1360847773 +95243,35836,virginity,1360847776 +95243,58998,Apatow productions,1360847409 +95243,58998,comedy,1360847414 +95243,58998,drugs,1360847416 +95243,58998,good dialogue,1360847420 +95243,58998,Hawaii,1360847424 +95243,58998,hilarious,1360847427 +95243,58998,hotel,1360847434 +95243,58998,Nudity (Full Frontal - Notable),1360847439 +95243,58998,Paul Rudd,1360847454 +95243,58998,surfing,1360847462 +95243,62434,Amateur Porn,1360847291 +95243,62434,humor,1360847298 +95243,62434,Kevin Smith,1360847308 +95243,62434,Nudity (Full Frontal),1360847312 +95243,62434,Nudity (Topless),1360847314 +95243,62434,Seth Rogen,1360847318 +95243,62434,Sex Comedy,1360847320 +95243,62434,Sexual Humor,1360847326 +95243,62434,Star Wars,1360847331 +95243,64614,Clint Eastwood,1360848723 +95243,64614,friendship,1360848732 +95243,64614,gangs,1360848744 +95243,64614,morality,1360848753 +95243,64614,old age,1360848765 +95243,64614,racism,1360848781 +95243,64614,revenge,1360848785 +95243,69122,comedy,1360848397 +95243,69122,drugs,1360848402 +95243,69122,flashbacks,1360848408 +95243,69122,funny,1360848414 +95243,69122,Great ending,1360848417 +95243,69122,great soundtrack,1360848420 +95243,69122,Hilarious,1360848427 +95243,69122,Las Vegas,1360848431 +95243,69122,Nudity (Topless),1360848436 +95243,69122,strippers,1360848441 +95243,69122,Zach Galifianakis,1360848447 +95243,86833,comedy,1360847831 +95243,86833,good soundtrack,1360847839 +95243,86833,Judd Apatow,1360847846 +95243,86833,Rose Byrne,1360847858 +95243,88812,bank robbery,1360847095 +95243,88812,Danny McBride,1360847131 +95243,88812,Nudity (Topless),1360847115 +95243,88812,pizza,1360847111 +95243,88812,Ruben Fleischer,1360847140 +95243,88812,story,1360847117 +95253,1981,never,1137871856 +95257,66203,honest,1344134759 +95257,82152,alex pettyfer,1306109318 +95260,59129,Nazi's,1242793438 +95269,2529,twist ending,1225073861 +95278,750,dark comedy,1443994309 +95278,750,politics,1443994318 +95278,750,Stanley Kubrick,1443994302 +95278,3052,Matt Damon,1443994927 +95278,3052,satire,1443994915 +95279,47099,reality,1451926092 +95279,136020,bond,1451925630 +95279,136020,superb,1451925602 +95286,5445,Tom Cruise,1378384753 +95286,7458,Brad Pitt,1341055445 +95286,8972,Nicolas Cage,1341055378 +95286,69640,Johnny Depp,1340916254 +95286,104841,sexist,1384107184 +95291,3578,drama,1431642400 +95291,3578,Rome,1431642391 +95291,30707,drama,1431642325 +95291,30707,Morgan Freeman,1431642334 +95307,57,boring,1186620544 +95307,663,tv,1186620373 +95307,1441,Romance,1186620286 +95307,1665,funny,1186620488 +95307,1760,embarassed to watch,1186620646 +95307,2125,repeat watch,1186620310 +95307,2423,funny,1186620299 +95307,2709,funny,1186625024 +95307,2709,muppets,1186625024 +95307,2967,good play,1186625334 +95307,3388,kid's movie,1186625001 +95307,3988,repeat watch,1186620332 +95307,4040,kids,1186625041 +95307,4063,sappy,1186625401 +95307,4248,embarassed to watch,1186625219 +95307,4745,meh,1186625319 +95307,6373,funny,1186620288 +95307,7158,good book,1186625071 +95307,8361,never watch again,1186620434 +95307,8581,to watch,1186625384 +95307,30810,overrated,1186620497 +95307,35836,funny,1186620407 +95307,35836,repeat watch,1186620407 +95307,39183,to watch,1186620515 +95307,45499,fun,1186620559 +95321,129009,documentary,1433351537 +95321,129009,gay,1433351537 +95321,129009,self discovery,1433351537 +95336,1230,comedy,1138806611 +95336,1230,dvd,1138806611 +95336,1230,romantic,1138806611 +95336,1230,sad,1138806611 +95336,4848,art house,1138806681 +95336,4848,dvd,1138806681 +95336,4848,love this movie,1138806687 +95336,4848,scaring greatSoundtrack davidLynch angeloBadalamenti thriller,1138806681 +95348,74484,hot actresses,1439841713 +95364,858,Top 10 ever,1149872740 +95369,260,rescue,1431786653 +95369,260,sci-fi,1431786641 +95425,5903,fabulous,1431171630 +95425,6365,very interesting movie,1431171559 +95443,260,classic,1430555084 +95443,260,Star Wars,1430555123 +95480,47,great ending,1421853942 +95480,47,twist ending,1421853937 +95480,47,twists & turns,1421853953 +95480,1046,Gay,1421851639 +95480,1046,gay romance,1421851644 +95480,2607,coming out,1421851717 +95480,2607,gay,1421851722 +95480,2762,great ending,1421851871 +95480,2762,mindfuck,1421851876 +95480,2762,twist ending,1421851853 +95480,4993,fantasy,1421851809 +95480,4993,Magic,1421851813 +95480,4993,wizards,1421851818 +95480,5952,fantasy,1421851788 +95480,5952,magic,1421851796 +95480,7153,fantasy,1421851830 +95480,7153,magic,1421851832 +95480,31408,Gay Lead Character,1421851699 +95480,38499,based on a play,1421851772 +95480,38499,gay,1421851598 +95482,260,awesome,1430799977 +95482,260,oldie but goodie,1430799994 +95482,356,boring,1430800342 +95482,356,extremely boring,1430800342 +95482,356,super boring,1430800342 +95490,1136,accents,1369789730 +95490,1136,goofy,1369789714 +95500,78308,biography,1420388418 +95500,78308,drama,1420388418 +95500,78308,historical,1420388418 +95508,356,comedy,1425232414 +95508,356,deep,1425232414 +95508,356,meaningful,1425232414 +95508,6539,adventure,1425232352 +95508,6539,comedy,1425232359 +95569,47254,Contrived,1358080020 +95569,47254,Jason Statham,1358080015 +95569,69481,profanity,1274300320 +95569,72998,beautiful scenery,1274441417 +95569,72998,politics,1274441417 +95569,72998,profanity,1274441417 +95569,79242,lesbians,1289475903 +95569,91474,funny,1357645937 +95569,91474,language,1357645940 +95569,95441,crude humor,1358079929 +95569,95441,Funny,1358079932 +95569,95441,language,1358079924 +95569,95441,Mark Wahlberg,1358079941 +95569,95583,Violence,1357645905 +95569,98154,beating up America,1367591423 +95569,103335,crude humor,1373372807 +95570,260,classic sci-fi,1435317855 +95570,260,father-son relationship,1435317909 +95570,260,good vs evil,1435317867 +95584,296,action,1325718786 +95584,296,cult film,1325718777 +95584,296,dark comedy,1325718779 +95584,296,multiple storylines,1325718806 +95584,296,organized crime,1325718794 +95584,296,Quentin Tarantino,1325718771 +95584,1206,cult film,1325718715 +95584,1206,disturbing,1325718718 +95584,1206,psychological,1325718749 +95584,1206,psychology,1325718723 +95584,1206,social commentary,1325718729 +95584,1206,violence,1325718733 +95584,32587,Action,1325718844 +95584,32587,black comedy,1325718828 +95584,32587,multiple storylines,1325718841 +95584,32587,Quentin Tarantino,1325718829 +95584,32587,Sci-Fi,1325718833 +95584,32587,stylized,1325718831 +95584,32587,superhero,1325718835 +95584,32587,surrealism,1325718837 +95584,32587,violence,1325718838 +95607,260,"sci-fi, space",1433848879 +95610,25,depressing,1246656819 +95610,25,Nudity (Topless),1246656814 +95610,25,STAR-CROSSED LOVERS,1246656825 +95610,50,mindfuck,1246655209 +95610,150,space program,1246654920 +95610,150,true story,1246654917 +95610,157,Michael Moore,1246658502 +95610,480,Michael Crichton,1246655705 +95610,541,artificial intelligence,1246651561 +95610,541,cyberpunk,1246651551 +95610,541,robots,1246651560 +95610,608,Coen Brothers,1246656369 +95610,608,dark comedy,1246656371 +95610,608,Minnesota,1246656377 +95610,608,quirky,1246656373 +95610,778,black comedy,1246656340 +95610,1089,violence,1246656290 +95610,1092,Erotic,1246652904 +95610,1092,Notable Nudity,1246652907 +95610,1092,Sexualized violence,1246652911 +95610,1196,classic,1250967397 +95610,1196,sci-fi,1250967405 +95610,1196,star wars,1250967401 +95610,1208,anti-war,1246651858 +95610,1208,Dark,1246651852 +95610,1208,disturbing,1246651848 +95610,1208,surreal,1246651850 +95610,1208,violent,1246651860 +95610,1223,british comedy,1246650925 +95610,1223,quirky,1246650932 +95610,1223,stop motion,1246650936 +95610,1223,Wallace & Gromit,1246650928 +95610,1254,classic,1246655051 +95610,1254,we don't need no stinkin badges,1246655045 +95610,1254,wry,1246655043 +95610,1259,coming of age,1246655289 +95610,1265,Bill Murray,1246653613 +95610,1265,surreal,1246653615 +95610,1270,quirky,1246655546 +95610,1645,Keanu Reeves,1246652792 +95610,1645,Nudity (Full Frontal),1246652793 +95610,1732,Coen Brothers,1246654946 +95610,1732,dark comedy,1246654948 +95610,1732,great dialogue,1246654951 +95610,1732,Nudity (Full Frontal),1246654953 +95610,1748,aliens,1246651539 +95610,1748,dreamlike,1246651525 +95610,1748,mindfuck,1246651530 +95610,1748,Nudity (Topless),1246651532 +95610,1748,sci-fi,1246651541 +95610,1748,surreal,1246651528 +95610,1884,Hunter S. Thompson,1246654376 +95610,1916,austere,1246653555 +95610,1916,melancholy,1246653551 +95610,1917,apocalypse,1240967731 +95610,1965,cult classic,1246651293 +95610,1965,dark comedy,1246651280 +95610,1965,surreal,1246651284 +95610,2329,Edward Norton,1246654898 +95610,2329,powerful ending,1246654901 +95610,2329,racism,1246654905 +95610,2395,Bill Murray,1246654591 +95610,2395,quirky,1246654590 +95610,2395,Wes Anderson,1246654600 +95610,2502,quirky,1246656189 +95610,2542,dark comedy,1246655689 +95610,2571,artificial intelligence,1246655769 +95610,2571,cyberpunk,1246655764 +95610,2628,Jar Jar Binks,1246650793 +95610,2628,Natalie Portman,1246650806 +95610,2628,Samuel L. Jackson,1246650791 +95610,2692,artistic,1246653738 +95610,2692,nonlinear,1246653740 +95610,2692,surreal,1246653733 +95610,2763,heist,1246653910 +95610,2890,black comedy,1246655375 +95610,2890,George Clooney,1246655374 +95610,2959,Edward Norton,1246654402 +95610,2997,Charlie Kaufman,1246655105 +95610,2997,dark comedy,1246655102 +95610,2997,mindfuck,1246655111 +95610,2997,quirky,1246655111 +95610,2997,surreal,1246655106 +95610,3275,Irish,1246656363 +95610,3481,Jack Black,1246653720 +95610,3481,John Cusack,1246653711 +95610,3481,relationships,1246653727 +95610,3535,based on a book,1246653432 +95610,3535,Christian Bale,1246653427 +95610,3535,insanity,1246653426 +95610,3535,Nudity (Topless),1246653421 +95610,3535,serial killer,1246653435 +95610,3897,bittersweet,1246654300 +95610,3897,Nudity (Topless - Notable),1246654304 +95610,3949,depressing,1246654500 +95610,3949,disturbing,1246654509 +95610,3949,Nudity (Full Frontal),1246654504 +95610,4011,goofy,1246654195 +95610,4052,geeks,1246658276 +95610,4052,Suspension of disbelief required,1246658285 +95610,4223,Best War Films,1246653138 +95610,4223,Rachel Weisz,1246653129 +95610,4226,Mindfuck,1246654475 +95610,4848,Atmospheric,1246652721 +95610,4848,disturbing,1246652703 +95610,4848,lesbian,1246652700 +95610,4848,mindfuck,1246652701 +95610,4848,Naomi Watts,1246652705 +95610,4848,Nudity (Full Frontal - Notable),1246652708 +95610,4848,stylized,1246652709 +95610,4878,enigmatic,1246654342 +95610,4878,mindfuck,1246654337 +95610,4878,surreal,1246654346 +95610,4878,teen,1246654349 +95610,5025,Jack Black,1246658380 +95610,5110,Nudity (Topless),1246658391 +95610,5152,mel preachy,1246658524 +95610,5425,aviation,1246653193 +95610,5505,Nudity (Topless - Brief),1240967601 +95610,5618,beautiful,1246655139 +95610,5630,Edward Norton,1246654840 +95610,5630,Harvey Keitel,1246654863 +95610,5630,Mary-Louise Parker,1246654867 +95610,6323,multiple personalities,1296604481 +95610,6323,silly,1296604485 +95610,6323,twist ending,1296604490 +95610,6365,cyberpunk,1246655843 +95610,6365,temple scene,1246655854 +95610,6708,Exceptional Acting,1246656469 +95610,6708,father daughter relationship,1246656459 +95610,6708,Quirky,1246656472 +95610,6754,heroine in tight suit,1246650254 +95610,6754,matrix ripoff,1246650272 +95610,6755,B-movie,1246653225 +95610,6755,Elvis iconography,1246653230 +95610,6755,quirky,1246653227 +95610,6870,Dark hero,1246655646 +95610,6934,cyberpunk,1246655807 +95610,6934,Keanu Reeves,1246655810 +95610,6934,Romance,1246655813 +95610,6957,black comedy,1246654084 +95610,7236,low budget,1246657428 +95610,7236,post-apocalyptic,1246657426 +95610,7236,quirky,1246657433 +95610,7361,Charlie Kaufman,1246651142 +95610,7361,surreal,1246651146 +95610,7377,bleak,1246657416 +95610,7377,grim,1246652416 +95610,7377,Jena Malone,1246652411 +95610,7377,Ryan Gosling,1246652413 +95610,7827,Lucy Liu,1246657744 +95610,7827,twist ending,1246657749 +95610,8366,Jena Malone,1246654637 +95610,8366,Macaulay Culkin,1246654642 +95610,8366,Mary-Louise Parker,1246654700 +95610,8366,teen pregnancy,1246654678 +95610,8784,Great Soundtrack,1246653831 +95610,8784,New Jersey,1246653829 +95610,8784,quirky romantic,1246653824 +95610,8784,Zach Braff,1246653814 +95610,8807,Neil Patrick Harris,1246658477 +95610,8807,Nudity (Topless),1246658480 +95610,8807,Stoner Movie,1246658420 +95610,8872,fetish,1246657274 +95610,8872,John Waters,1246657244 +95610,8872,Sex Comedy,1246657266 +95610,8874,black comedy,1246653251 +95610,8874,Simon Pegg,1246653259 +95610,8914,clever,1246651107 +95610,8914,complicated plot,1246651095 +95610,8914,low budget,1246651119 +95610,8914,mindfuck,1246651097 +95610,8914,science,1246651101 +95610,8950,Christian Bale,1246654980 +95610,8950,grim,1246655008 +95610,8950,Nudity (Topless),1246654993 +95610,8950,psychology,1246655005 +95610,27660,cyberpunk,1246658294 +95610,27660,stylized,1246658304 +95610,27706,quirky,1246655439 +95610,27846,Free to download,1246656742 +95610,30810,Bill Murray,1246655081 +95610,30810,deadpan,1246655092 +95610,30810,quirky,1246655083 +95610,30810,whimsical,1246655087 +95610,31410,disturbing,1246651881 +95610,31410,Nudity (Topless),1246651886 +95610,31658,steampunk,1246655122 +95610,31696,Alan Moore,1246653448 +95610,31696,gothic,1246653453 +95610,31696,Keanu Reeves,1246653441 +95610,31696,Rachel Weisz,1246653443 +95610,31804,makes no sense,1246651022 +95610,31804,vampires,1240967697 +95610,32022,Middle East,1246650744 +95610,33679,erotic tension,1246655470 +95610,33679,Very stupid,1246655465 +95610,33903,Exceptional Acting,1246653570 +95610,33903,Nudity (Topless),1246653576 +95610,33903,politics,1246653574 +95610,34143,David Lynch,1240967615 +95610,34143,Jennifer Connelly,1240967617 +95610,34143,remake,1240967642 +95610,34143,Tim Roth,1240967624 +95610,34405,Firefly,1246654220 +95610,34405,quirky,1246654221 +95610,34437,Bill Murray,1246658340 +95610,34437,Nudity (Full Frontal),1246658362 +95610,36529,poignant,1246653210 +95610,36529,political,1246653206 +95610,37240,free to download,1246656706 +95610,37384,Dane Cook,1240967683 +95610,37384,profanity,1246651001 +95610,37386,heroine in tight suit,1246650613 +95610,37386,resistance movement,1246650621 +95610,37386,sci-fi,1246650618 +95610,39427,Naomi Watts,1246652318 +95610,39427,ryan gosling,1246652322 +95610,39427,surreal,1268607739 +95610,39427,twist ending,1246652326 +95610,43376,beautiful,1246657704 +95610,43376,strong woman,1246657719 +95610,44191,dystopia,1246655712 +95610,44199,heist,1246656438 +95610,44199,intelligent thriller,1246656441 +95610,44555,Nudity (Topless),1246654440 +95610,44665,slow paced,1246655590 +95610,44665,unreliable narrators,1246655602 +95610,44671,Brad Dourif,1268785204 +95610,44671,Werner Herzog,1268785202 +95610,44761,children acting like adults,1246651605 +95610,44761,film noir,1246651614 +95610,44761,high school,1246651609 +95610,44761,pretentious,1246651616 +95610,44788,censorship,1246656659 +95610,44788,Nudity (Full Frontal),1246656653 +95610,44788,private detective,1246656656 +95610,45028,Garrison Keilor,1246657783 +95610,45028,Minnesota,1246657774 +95610,45440,indie,1246652877 +95610,45440,John Malkovich,1246652874 +95610,45440,lesbian,1246652860 +95610,45440,Misanthropic,1246652864 +95610,45440,Nudity (Full Frontal - Notable),1246652866 +95610,46965,campy,1246658083 +95610,46965,Planes,1246658108 +95610,46965,Snakes,1246658094 +95610,46976,Maggie Gyllenhaal,1246653748 +95610,46976,passion,1246653773 +95610,46976,quirky romantic,1246653762 +95610,46976,surreal,1246653764 +95610,47518,dude comedy,1240967665 +95610,47518,Justin Long,1240967661 +95610,47518,Lewis Black,1240967652 +95610,47518,male self-degredation,1240967657 +95610,47610,Edward Norton,1246654156 +95610,47610,Paul Giamatti,1246654158 +95610,48774,dystopia,1246655299 +95610,48780,Christian Bale,1246651126 +95610,48780,twist ending,1246651128 +95610,49530,Jennifer Connelly,1246651872 +95610,49772,china,1246652195 +95610,49772,Edward Norton,1246652181 +95610,49772,heartbreaking,1246652190 +95610,49772,husband-wife relationship,1246652212 +95610,49772,intellectual,1246652214 +95610,49772,naomi watts,1246652183 +95610,49772,nuns,1246652207 +95610,49772,period piece,1246652185 +95610,52604,Ryan Gosling,1246656411 +95610,52885,psychedellic,1246656780 +95610,52973,Nudity (Topless),1246658544 +95610,53318,boobs,1246657458 +95610,53318,british,1246651212 +95610,53318,insomnia,1246651214 +95610,53318,Nudity (Full Frontal),1246651200 +95610,53318,surrealism,1246651204 +95610,53894,health care,1246658176 +95610,53894,Michael Moore,1246658169 +95610,54745,good soundtrack,1246654573 +95610,54745,quirky,1246654532 +95610,54997,Christian Bale,1246654169 +95610,54997,dark,1246654192 +95610,54997,Russell Crowe,1246654179 +95610,55118,Naomi Watts,1246652000 +95610,55118,rape,1246651998 +95610,55269,Wes Anderson,1246655312 +95610,55276,corporate espionage,1246658314 +95610,55363,Mary-Louise Parker,1246654271 +95610,55442,melancholy,1246656789 +95610,55805,Nudity (Topless),1246657807 +95610,55820,no ending,1246656257 +95610,56003,Jon Lovitz,1250661215 +95610,56003,puzzling,1250661232 +95610,56003,Sarah Michelle Gellar,1250661211 +95610,56003,surreal,1250661236 +95610,56003,weird,1250661242 +95610,56060,Nudity (Topless),1240967521 +95610,56174,post-apocalyptic,1246658554 +95610,56339,ghosts/afterlife,1246655171 +95610,56339,mother-son relationship,1246655173 +95610,56367,high school,1246654457 +95610,56367,pregnancy,1246654464 +95610,56788,Nudity (Topless),1246653165 +95610,56788,Philip Seymour Hoffman,1246653159 +95610,56788,strippers,1246653170 +95610,57353,heist,1246656518 +95610,57353,revenge,1246656605 +95610,57353,strong woman,1246656564 +95610,57353,twist ending,1246656523 +95610,57669,dark comedy,1246654421 +95610,58105,based on a book,1246654803 +95610,58105,fantasy,1246654799 +95610,58105,Mary-Louise Parker,1246654787 +95610,58246,John Cusack,1240967587 +95610,58295,based on a true story,1246654037 +95610,58295,heist,1246654047 +95610,58295,Nudity (Topless),1246654029 +95610,58301,Meta-Fiction,1246657323 +95610,58301,Naomi Watts,1246657311 +95610,58301,No Fourth Wall,1246657314 +95610,58301,Tim Roth,1246657317 +95610,58559,Christian Bale,1246656548 +95610,58998,Hawaii,1246652681 +95610,58998,Kristen Bell,1246652673 +95610,58998,Predictable,1246652660 +95610,59016,Hugh Laurie,1281584378 +95610,59016,Keanu Reeves,1281584383 +95610,60074,bad ending,1246658200 +95610,60333,antarctica,1246656674 +95610,60333,Werner Herzog,1240967566 +95610,60684,dystopia,1246655150 +95610,60684,misanthropic,1246655158 +95610,60760,Violence towards dogs,1246656491 +95610,61024,bromantic,1246658069 +95610,61024,Stoner Movie,1246658060 +95610,61075,Ben Kingsley,1246657232 +95610,61075,bittersweet,1246657235 +95610,61075,May-December romance,1246657229 +95610,61075,Nudity (Topless),1246657200 +95610,61075,teacher student relationship,1246657202 +95610,61236,animated,1246657959 +95610,61323,cheating husband,1246656179 +95610,61323,Coen Brothers,1246655986 +95610,61323,dark comedy,1246655987 +95610,61352,spy thriller,1246657483 +95610,61401,overacting,1246657918 +95610,61401,Scarlett Johansson,1246657924 +95610,61729,misanthrope,1246657617 +95610,62434,Kevin Smith,1246653940 +95610,62434,Nudity (Topless),1246653964 +95610,62434,pornography,1246653937 +95610,62434,Star Wars,1246653949 +95610,62511,Charlie Kaufman,1246657368 +95610,62511,Nudity (Topless),1246657366 +95610,62511,surreal,1246657383 +95610,64497,corny,1246657593 +95610,64497,Jennifer Connelly,1246657557 +95610,64497,John Cleese,1246657580 +95610,64497,Wooden acting,1246657565 +95610,64620,boring beginning,1246658036 +95610,64716,melancholy,1246657676 +95610,64983,Tom Cruise,1246657541 +95610,65126,Chuck Palahniuk,1246657296 +95610,65631,Charlize Theron,1246650767 +95610,65631,political,1246657841 +95610,65682,gothic,1246651397 +95610,66240,Ellen Muth,1246650723 +95610,66934,anti-hero,1246651068 +95610,66934,free to download,1246651063 +95610,66934,joss whedon,1246651057 +95610,66934,Nathan Fillion,1246651060 +95610,67734,bordering on girly,1253383152 +95610,67734,Kristen Stewart,1253383136 +95610,67734,nihilism,1253383132 +95610,67734,Ryan Reynolds,1253383141 +95610,68659,movie reference jokes,1246657879 +95610,68791,action,1246650911 +95610,68791,arnold cgi,1246650908 +95610,68791,artificial intelligence,1246650876 +95610,68791,bad script,1246650904 +95610,68791,cheesy morals,1246650881 +95610,68791,fallout taste,1246650917 +95610,68791,no blood,1246650887 +95610,68791,post-apocalyptic,1246650892 +95610,68791,robots,1246650889 +95610,68791,sequel,1246650896 +95610,69134,Lars von Trier,1268785296 +95610,69134,STUPID,1290064928 +95610,69134,violence,1290064934 +95610,71211,awkward,1254693702 +95610,71211,business,1254693714 +95610,71211,true story,1254693683 +95610,71248,adultery,1273322062 +95610,71248,Kristen Wiig,1273322050 +95610,71248,Mike Judge,1273322051 +95610,71248,Mila Kunis,1273322046 +95610,72405,dark comedy,1268785488 +95610,72405,iguana,1268785476 +95610,72405,Nicolas Cage,1268785459 +95610,72405,Werner Herzog,1268785491 +95610,73023,Jeff Bridges,1272568684 +95610,73023,Maggie Gyllenhaal,1272568687 +95610,73211,Stephen McHattie,1263611280 +95610,73211,zombies,1263611279 +95610,74382,Humphrey Bogart,1268607486 +95610,74382,racism,1268607484 +95610,74532,Kevin Smith,1295534767 +95610,74532,Tracy Morgan,1295534765 +95610,76077,Chevy Chase,1281220993 +95610,76077,time travel,1281221037 +95610,79132,dreams,1280644429 +95610,79132,Ellen Page,1280644443 +95610,79132,Leonardo DiCaprio,1280644478 +95610,79132,mindfuck,1280644439 +95610,79132,open ending,1280644506 +95610,79132,surreal,1280644441 +95610,80489,action,1292869161 +95610,80489,Ben Affleck,1292869147 +95610,85763,WWI,1327647637 +95610,89753,espionage,1327128050 +95610,89753,Spies,1327128054 +95610,91571,shakespeare,1343611877 +95625,45447,bullshit history,1150030459 +95680,1625,awesome,1291166484 +95680,1625,Michael Douglas,1291166461 +95680,1625,the final twist,1291166478 +95680,1625,twist ending,1291166468 +95686,260,classic,1437476716 +95686,260,Science Fiction,1437476712 +95690,79684,awful,1324278331 +95690,79684,awful...just awful,1324278315 +95690,79684,bad everything,1324278257 +95690,79684,dont watch,1324278234 +95690,79684,i hate myself,1324278858 +95690,79684,i wanted to kill myself,1324278391 +95690,79684,i wanted to stab my self in the face,1324739035 +95690,79684,ironically ironic irony,1324278526 +95690,79684,NO substance,1324278150 +95690,79684,piece of shit,1324278491 +95690,79684,REALLY REALLY SHITTY.,1324278129 +95690,79684,regrets,1324278284 +95690,79684,shit,1324278458 +95690,79684,shitty hipster film,1324278551 +95690,79684,terrible,1324278301 +95690,79684,the worst movie i've ever seen,1324278345 +95690,79684,There is nothing good in this film,1324278369 +95690,79684,waste of time,1324278214 +95690,79684,worst thing,1324278422 +95690,81591,Alter ego,1322337838 +95692,2571,philosophy,1444760847 +95692,2571,thought-provoking,1444760841 +95692,4973,cult film,1444760876 +95692,4973,Paris,1444760878 +95692,94466,dark,1444761074 +95692,94466,technology,1444761069 +95692,94466,thought-provoking,1444761073 +95702,260,Science Fiction,1443955633 +95702,260,space action,1443955645 +95703,185,Sandra Bullock,1449059088 +95703,186,hugh grant,1449059222 +95703,637,Funny as hell,1449059593 +95703,750,black comedy,1449056759 +95703,750,dark comedy,1449056756 +95703,750,Peter Sellers,1449056783 +95703,750,satire,1449056764 +95703,1080,black comedy,1449058534 +95703,1080,british comedy,1449058520 +95703,1080,hilarious,1449058513 +95703,1080,humorous,1449058511 +95703,1080,mockumentary,1449058529 +95703,1080,Monty Python,1449058490 +95703,1080,Nudity (Full Frontal),1449058503 +95703,1080,parody,1449058498 +95703,1080,satire,1449058493 +95703,1080,satirical,1449058516 +95703,1197,comedy,1449058232 +95703,1197,modern fantasy,1449058240 +95703,1197,romance,1449058217 +95703,1234,great acting,1449058134 +95703,1234,Paul Newman,1449058122 +95703,1247,1960s,1449058346 +95703,1247,Dustin Hoffman,1449058335 +95703,1247,satirical,1449058337 +95703,1247,seduction,1449058342 +95703,2858,Nudity (Topless),1449058398 +95703,2858,sexuality,1449058401 +95703,2858,surrealism,1449058414 +95703,5060,madcap,1449058661 +95703,52694,Rowan Atkinson,1449059635 +95713,5225,comedy,1384297556 +95713,5225,Nudity (Topless),1384297539 +95713,5225,romance,1384297558 +95713,5225,sexual,1384297547 +95713,5225,sexuality,1384297542 +95713,5225,spanish,1384297548 +95713,5617,erotic,1408068338 +95713,5617,sexuality,1408068328 +95713,5617,sexy,1408068340 +95713,58998,Apatow productions,1408243702 +95713,58998,hilarious,1408243641 +95713,58998,romance,1408243644 +95713,60950,sexuality,1408068400 +95713,60950,threesome,1408068398 +95713,88163,adultery,1382300508 +95713,88163,divorce,1382300509 +95713,88163,drama,1382300511 +95713,88163,Emma Stone,1382300487 +95713,88163,emotional,1382300513 +95713,88163,father daughter relationship,1382300496 +95713,88163,father-son relationship,1382300494 +95713,88163,funny,1382300478 +95713,88163,high school,1382300505 +95713,88163,intelligent,1382300481 +95713,88163,romantic comedy,1382300475 +95713,88163,Ryan Gosling,1382300471 +95713,88163,Steve Carell,1382300473 +95713,89864,cancer,1382394990 +95713,89864,comedy,1382394993 +95713,89864,crude,1382394996 +95713,89864,honest,1382395001 +95713,89864,humor,1382394998 +95713,89864,Joseph Gordon-Levitt,1382394983 +95713,89864,predictable,1382395007 +95713,89864,Seth Rogen,1382395003 +95713,89864,touching,1382395005 +95713,99041,foreign language,1384297508 +95713,99041,lesbian,1384297453 +95713,99041,religion,1384297462 +95713,99041,sex,1384297448 +95713,99041,Spanish,1384297508 +95713,99041,spanish lanuage,1384297508 +95713,99041,teenage girl,1384297470 +95713,99117,Apatow,1398055341 +95713,99117,funny,1398055315 +95713,99117,Leslie Mann,1398055331 +95713,99117,Paul Rudd,1398055324 +95719,1201,Sergio Leone,1284798245 +95719,1201,soundtrack,1284798263 +95719,3022,Buster Keaton,1285697698 +95719,3022,farce,1285697691 +95719,3022,Funny as Hell,1285697692 +95719,3022,silent movie,1285697701 +95719,3022,trains,1285697705 +95719,3275,dark humor,1251699690 +95719,3275,Irish,1251699730 +95719,3275,Mafia,1251699750 +95719,3275,Mission From God,1251699768 +95719,3275,Nudity (Topless),1251699755 +95719,3275,serial killer,1251699758 +95719,3275,silly,1251699742 +95719,3275,vigilantism,1251699763 +95719,27904,drugs,1249332934 +95719,27904,Philip K. Dick,1249332747 +95719,27904,Robert Downey Jr.,1249332757 +95719,27904,rotoscope,1249332749 +95719,27904,Woody Harrelson,1249332761 +95719,32587,atmospheric,1249333044 +95719,32587,black comedy,1249333046 +95719,32587,Bruce Willis,1249333038 +95719,32587,multiple storylines,1249333053 +95719,32587,stylized,1249333059 +95719,32587,violence,1249333062 +95719,32587,visually appealing,1249333064 +95719,34405,action,1309288635 +95719,34405,based on a TV show,1309288630 +95719,34405,black comedy,1309288621 +95719,34405,dystopia,1309288611 +95719,34405,quirky,1309288648 +95719,34405,witty,1309288627 +95719,44665,Bruce Willis,1278021230 +95719,44665,Film Noir,1278021231 +95719,44665,Nudity (Topless),1278021238 +95719,44665,Revenge,1278021242 +95719,44665,stylized,1278021245 +95719,44665,twist ending,1278021246 +95719,44665,violent,1278021247 +95719,48394,bittersweet,1309288795 +95719,48394,stylized,1309288812 +95719,48394,surreal,1309288800 +95719,48394,world war II,1309288809 +95719,63853,Aborigines,1245772067 +95719,63853,Australia,1245772096 +95719,63853,Baz Luhrmann,1245772059 +95719,63853,Hugh Jackman,1245772073 +95719,66427,Bruce Campbell,1282576143 +95719,66427,corny,1282576135 +95719,66427,fake movies,1282576137 +95719,68157,black comedy,1337460386 +95719,68157,Brad Pitt,1337460391 +95719,68157,Quentin Tarantino,1337460394 +95719,68358,alternate reality,1246047728 +95719,68358,Simon Pegg,1246047720 +95719,69844,not true to the book,1249058495 +95719,72998,aliens,1262898267 +95719,72998,cgi,1262898265 +95719,72998,sci-fi,1262898273 +95719,72998,unoriginal,1262898276 +95719,72998,visual,1262898279 +95719,72998,war,1262898278 +95719,79132,action,1281474640 +95719,79132,alternate reality,1281474638 +95719,79132,Intense,1281474653 +95719,79132,Leonardo DiCaprio,1281474635 +95719,79132,multiple interpretations,1281474647 +95719,79132,unpredictable,1281474649 +95719,81537,banal moral,1316114458 +95719,81537,road trip,1316114468 +95719,81537,Robert Downey Jr.,1316114465 +95719,81537,Zach Galifianakis,1316114454 +95719,81591,creepy,1301216125 +95719,81591,Natalie Portman,1301216149 +95719,81591,repressed sexuality,1301216133 +95719,81591,Winona Ryder,1301216143 +95719,87520,Alan Tudyk,1328339346 +95719,87520,audience intelligence underestimated,1328339354 +95719,87520,cars,1328339357 +95719,93805,German,1334683795 +95719,93805,Julia Dietze,1334683727 +95719,93805,plot,1334683740 +95719,93805,spaceships,1334683762 +95719,93805,steampunk,1334683725 +95719,93805,UFOS,1334683758 +95719,94780,beautiful cinematography,1350155804 +95719,94780,charlize theron,1350155833 +95719,94780,dwarves,1350155800 +95719,94780,fairy tale,1350155816 +95719,94780,Kristen Stewart,1350155795 +95747,1569,romantic comedy,1419805413 +95747,1569,wedding,1419805419 +95747,118985,painter,1419805477 +95747,119141,bloody,1419793962 +95760,153,superhero,1148813678 +95775,6023,Jean-Luc Godard,1150708091 +95775,8477,Chris Marker,1150708065 +95791,52319,Good actors,1251991760 +95791,52319,Some funny parts,1251991760 +95791,52319,very boring parts,1251991760 +95791,52319,Very long,1251991760 +95831,260,good first in a series,1430282061 +95831,260,space action,1430282064 +95843,586,family,1164383355 +95843,7034,gay,1164383299 +95848,40010,overrated,1217932791 +95848,40723,cheap,1141243922 +95848,68157,Jew Fest,1263812642 +95848,89305,adolescence,1314816384 +95848,89305,friendship,1314816605 +95848,89305,holiday,1314816384 +95848,89305,UK culture,1314816605 +95856,1241,campy,1259459236 +95856,1241,gross out,1259459226 +95856,1241,lawn mower,1259459198 +95856,1241,zombies,1259459219 +95856,1245,gangsters,1260054211 +95856,1245,Mafia,1260054208 +95856,1245,Prohibition,1260054226 +95856,1245,twists & turns,1260054228 +95856,2513,adapted from:book,1245690776 +95856,2513,author:Stephen King,1245690768 +95856,2513,Fred Gwynne,1245690770 +95856,2513,horror,1245690773 +95856,2692,alternate endings,1298262709 +95856,2692,intense,1298262724 +95856,2692,notable soundtrack,1298262722 +95856,2692,original,1298262720 +95856,2692,time loop,1298262717 +95856,3499,Kathy Bates,1243719846 +95856,3608,Can't remember,1292013832 +95856,3608,funny as hell,1292013830 +95856,3608,Tim Burton,1292013837 +95856,6625,Beer: The Breakfast of champions,1279299703 +95856,7360,gory fun,1245691013 +95856,7360,Gratuitous,1245691015 +95856,7360,Nudity (Topless - Brief),1245691017 +95856,7360,Richard Cheese,1245691022 +95856,7360,zombie,1245691001 +95856,7360,Zombie Movie,1245691010 +95856,7360,zombies,1245691002 +95856,8874,dark humor,1265777812 +95856,8874,parody,1265777806 +95856,8874,spoof,1265777808 +95856,8874,zombies,1265777824 +95856,27392,cameos,1292013808 +95856,31539,the guy is a douche,1296578734 +95856,52328,stupid twist,1263605570 +95856,53953,claustrophobic,1292532004 +95856,53953,Hotel,1292532010 +95856,53953,John Cusack,1292532012 +95856,53953,Stephen King,1292532016 +95856,54962,godlike video game,1296578615 +95856,54962,Hope Davis,1296578618 +95856,54962,multiple storylines,1296578677 +95856,55830,a little predictable,1283194069 +95856,55830,amateur film making,1283194060 +95856,55830,Michel Gondry,1283194062 +95856,55830,videotape,1283194064 +95856,56339,HAUNTED BY THE PAST,1257376418 +95856,56339,mother-son relationship,1257376409 +95856,56339,paranormal,1257376414 +95856,56339,twist ending,1257376422 +95856,57274,"""found footage""",1292013736 +95856,57274,atmospheric,1292531983 +95856,59143,Doug Benson,1278305628 +95856,59315,afghanistan,1251608697 +95856,59315,Robert Downey Jr,1251608682 +95856,59315,vigilante,1251608690 +95856,59727,Bryan Bertino,1258505634 +95856,59727,let down,1258505638 +95856,59727,Liv Tyler,1258505618 +95856,59727,serial killers,1258505622 +95856,59727,too dark,1258505625 +95856,63131,Elizabeth Banks,1251473305 +95856,63131,funny,1251473297 +95856,63131,immature,1251473300 +95856,63131,Jane Lynch,1251473314 +95856,63131,obvious plot,1251473318 +95856,63131,Paul Rudd,1251473312 +95856,67087,Lou Ferrigno,1264905675 +95856,68659,geek,1244680357 +95856,68659,Kristen Bell,1244680355 +95856,68659,only a few jokes,1244680372 +95856,68659,road trip,1244680361 +95856,68659,star wars,1244680369 +95856,68952,Alison Lohman,1243718261 +95856,68952,Edge of your seat,1243718257 +95856,68952,full of cliches,1265486325 +95856,68952,funny,1243718266 +95856,68952,tongue-in-cheek,1265486312 +95856,68954,predictable,1262904792 +95856,69122,comedy,1263231702 +95856,69122,disappointing,1263231699 +95856,69122,Las Vegas,1263231705 +95856,69122,no plot,1263231696 +95856,69122,stupid stereotypes,1263231694 +95856,69481,profanity,1280378559 +95856,69844,Alan Rickman,1247802806 +95856,69844,Comedy,1247802830 +95856,69844,David Yates,1247802811 +95856,69844,Lavender Brown,1247802815 +95856,69844,Snape,1247802827 +95856,70286,ending,1251608622 +95856,70286,humor,1251608616 +95856,70286,intelligent sci-fi,1251608613 +95856,71248,J.K. Simmons,1282658569 +95856,71248,Jason Bateman,1282658565 +95856,71248,Mike Judge,1282658563 +95856,71248,Mila Kunis,1282658561 +95856,71429,Bobcat Goldthwait,1279661320 +95856,71429,twist,1279661326 +95856,72011,Nudity (Rear),1281716342 +95856,72011,wedding,1281716349 +95856,72176,honest,1265348640 +95856,72176,Kevin Corrigan,1265348633 +95856,72176,Patton Oswalt,1265348636 +95856,72176,sports,1265348643 +95856,74750,"""found footage""",1292219327 +95856,74750,Manuela Velasco,1292219324 +95856,74754,acting,1281452692 +95856,74754,Carolyn Minnott,1282923478 +95856,74754,Philip Haldiman,1282923503 +95856,74754,Tommy Wiseau,1281452685 +95856,74754,unintentional comedy,1281452687 +95856,77455,Banksy,1298262682 +95856,77455,ending,1298262686 +95856,77455,Shepard Fairey,1298262679 +95856,77854,imaginative,1307461270 +95856,77854,surreal,1307461281 +95856,77854,Underrated Director,1307461274 +95856,77854,unique,1307461277 +95856,77854,visually inventive,1307461277 +95856,78499,tense,1280757439 +95856,83827,imagination,1307460933 +95856,112556,David Fincher,1412859070 +95872,115149,Action,1448532752 +95872,117470,added,1451476157 +95872,142509,russian,1450085789 +95872,148626,documentary,1451474624 +95872,148626,speculation,1451474596 +95879,223,crude humor,1272238191 +95879,223,low budget,1272238209 +95879,223,minimalist,1272238211 +95879,333,Chris Farley,1272238557 +95879,441,high school,1272317250 +95879,441,marijuana,1272317252 +95879,473,Pauly Shore,1272238486 +95879,562,adolescence is hell,1272210217 +95879,562,indie,1272217841 +95879,562,quirky,1272217843 +95879,562,school drama,1272217847 +95879,810,cheesy,1272283265 +95879,1197,Cult classic,1272237753 +95879,1197,fairy tale,1272237761 +95879,1197,fantasy,1272237759 +95879,1197,quirky,1272237766 +95879,1198,adventure,1272237736 +95879,1198,archaeology,1272237733 +95879,1198,indiana jones,1272237738 +95879,1259,classic,1272233132 +95879,1259,coming of age,1272233122 +95879,1259,imdb top 250,1293158823 +95879,1259,INNOCENCE LOST,1272233124 +95879,1259,nostalgic,1293158814 +95879,1562,Batman,1272283143 +95879,1562,cheesy,1272283156 +95879,1562,George Clooney,1272283137 +95879,1812,Joseph Cross,1272238342 +95879,1812,realization,1272238357 +95879,1960,historically inaccurate,1293158873 +95879,2114,based on book,1272222909 +95879,2114,literary adaptation,1272222912 +95879,2329,disturbing,1272233175 +95879,2329,powerful ending,1272233182 +95879,2329,thought-provoking,1272233180 +95879,2329,violence,1272233169 +95879,2335,Adam Sandler,1272238573 +95879,2335,hilarious,1272238577 +95879,2335,Kathy Bates,1272238580 +95879,2596,coming of age,1313269096 +95879,2596,cult film,1313269098 +95879,2596,drugs,1313269100 +95879,2596,high school,1272222969 +95879,2596,Jason Segel,1313269106 +95879,2718,black comedy,1313269402 +95879,2718,Funny as hell,1313269394 +95879,2718,mockumentary,1313269398 +95879,3052,controversial,1272238165 +95879,3052,jay and silent bob,1272238166 +95879,3052,Kevin Smith,1272238169 +95879,3052,satire,1272238162 +95879,3147,emotional,1272237696 +95879,3253,Dana Carvey,1272238530 +95879,3253,Saturday Night Live,1272238528 +95879,3253,teen,1272238532 +95879,3556,high school,1272283032 +95879,3556,psychology,1272283029 +95879,3882,guilty pleasure,1272317184 +95879,3967,coming of age,1272233919 +95879,4128,adolescence,1272222877 +95879,4128,So bad it's good,1272222871 +95879,4239,based on a true story,1272317351 +95879,4239,Johnny Depp,1272317353 +95879,4310,historical,1272283119 +95879,4310,History,1272283121 +95879,4310,War,1272283115 +95879,4310,World War II,1272283110 +95879,4649,satirical,1313269422 +95879,4749,nostalgic,1272233092 +95879,4750,nostalgic,1272233044 +95879,4878,cult classic,1272234162 +95879,4878,cult film,1272234160 +95879,4878,satirical,1272234168 +95879,5106,brittany spears,1272238850 +95879,5325,skateboarding,1272317285 +95879,5377,comedy,1272233427 +95879,5377,coming of age,1272233423 +95879,5377,heartwarming,1272233425 +95879,5377,satirical,1272233439 +95879,5377,teenagers,1272233433 +95879,5377,whimsical,1272233430 +95879,5401,Eddie Griffin,1272238382 +95879,5401,parody,1272238379 +95879,5449,Adam Sandler,1272238613 +95879,5464,revenge,1272234496 +95879,5464,violence,1272234483 +95879,5564,so bad it's almost good,1272238084 +95879,6483,warning: some people tryed to kill themselves while watching,1272238699 +95879,6616,Adam Brody,1272234350 +95879,6616,skateboarding,1272234357 +95879,6692,skateboarding,1272317320 +95879,6951,Dakota Fanning,1272283227 +95879,7139,american dream,1272233453 +95879,7139,grieving,1272233474 +95879,7139,mourning,1272233470 +95879,7157,parody,1272238123 +95879,7254,alternate endings,1272234212 +95879,7254,alternate reality,1272234205 +95879,7254,intense,1272234214 +95879,7254,mathematics,1272234208 +95879,7254,memory,1272234209 +95879,7254,Mystery,1272234211 +95879,7448,Amy Poehler,1272238684 +95879,7773,high school,1272233371 +95879,7773,High school violence,1272233364 +95879,7773,intense,1272233382 +95879,8128,based on a true story,1272233949 +95879,8128,historical,1272233952 +95879,8128,true story,1272233950 +95879,8128,World War II,1272233955 +95879,8128,WWII,1272233954 +95879,8366,high school,1272223027 +95879,8366,satire,1272223036 +95879,8366,school drama,1272223034 +95879,8874,black comedy,1272233531 +95879,8874,dark humor,1272233534 +95879,8874,Funniest Movies,1272233539 +95879,8874,spoof,1272233528 +95879,8874,zombies,1272233537 +95879,8955,Jamie Bell,1272233792 +95879,30749,based on a true story,1272233213 +95879,30749,Classic,1272233211 +95879,30749,history,1272233203 +95879,30749,sad,1272233229 +95879,30749,survival,1272233206 +95879,30749,true story,1272233202 +95879,32017,Vin Diesel,1272233030 +95879,33830,Lindsay Lohan,1272317202 +95879,38886,smart comedy,1272210261 +95879,42728,Ireland,1272237928 +95879,42728,legend,1272237931 +95879,42728,medieval,1272237920 +95879,43556,James Franco,1272238018 +95879,43930,Lindsay Lohan,1272238069 +95879,43930,Teen movie,1272238075 +95879,44191,thought-provoking,1272282874 +95879,44195,satire,1272210613 +95879,46062,musical,1272238402 +95879,46062,Zac Efron,1272238395 +95879,46970,Highly quotable,1272317229 +95879,46970,Will Ferrell,1272317227 +95879,47099,based on a true story,1272233315 +95879,47099,happy ending,1272233316 +95879,47099,tearjerking,1272233308 +95879,47778,Sundance Grand Jury Prize: Dramatic,1293158603 +95879,47778,Sundance Grand Jury Prize: Dramatic 2006,1293158608 +95879,47778,teen pregnancy,1293158611 +95879,47810,cult,1272238469 +95879,47810,predictable,1272238452 +95879,47810,stupid and unnecessary,1272238463 +95879,48319,James Franco,1272237949 +95879,48319,World War I,1272237947 +95879,49013,Santa Claus,1272238060 +95879,49013,satire,1272238059 +95879,49530,violent,1272317370 +95879,51931,adam sandler,1272233273 +95879,51931,unique,1272233282 +95879,52668,Adam Brody,1272234325 +95879,52952,coming of age,1272210159 +95879,52952,England,1272210176 +95879,52952,Gang,1272210167 +95879,52952,great soundtrack,1272210181 +95879,52952,INNOCENCE LOST,1272210148 +95879,52952,racism,1272210174 +95879,52952,skinhead,1272210163 +95879,53318,alternate reality,1272300627 +95879,53318,cult film,1272300631 +95879,53318,surrealism,1272300624 +95879,54281,high school,1272210460 +95879,55241,Seann William Scott,1272238643 +95879,55363,tense,1272238305 +95879,60040,Ed Norton,1272282814 +95879,60040,Edward Norton,1272282806 +95879,60293,coming of age,1313269151 +95879,60293,drugs,1313269149 +95879,60293,hip-hop,1313269141 +95879,60293,slow,1313269144 +95879,60293,weed,1313269146 +95879,61024,drugs,1272237976 +95879,61024,James Franco,1272237982 +95879,61024,Stoner Movie,1272237972 +95879,61167,accepting death,1272234878 +95879,61167,Luke Wilson,1272234881 +95879,63131,Jane Lynch,1272239003 +95879,63131,life lessons,1272238999 +95879,63131,Paul Rudd,1272239006 +95879,63131,Seann William Scott,1272239007 +95879,63393,disney channel,1272283197 +95879,64034,based on a book,1272233350 +95879,64034,childish naivity,1272233354 +95879,64034,Holocaust,1272233348 +95879,64034,sad,1272233345 +95879,64034,World War II,1272233347 +95879,65585,could have been funnier,1272238631 +95879,67734,quirky,1272317140 +95879,68073,1960s,1272210425 +95879,68073,historically inaccurate,1272210436 +95879,68073,Music,1272210429 +95879,68073,rock and roll,1272210443 +95879,68659,geek,1272232952 +95879,68659,Kristen Bell,1272232986 +95879,68659,movie reference jokes,1272232957 +95879,68659,nerd,1272232992 +95879,68659,pop culture references,1272232965 +95879,68659,Seth Rogen,1272232988 +95879,68659,star wars,1272232968 +95879,68954,adventure,1313269001 +95879,68954,slow,1293158734 +95879,71379,over-hyped,1272290356 +95879,72367,true story,1272282995 +95879,72483,cliche,1293158654 +95879,72483,death,1293158645 +95879,74152,celebrity,1272233639 +95879,74685,thriller,1272282794 +95879,76093,friendship,1293158769 +95879,76093,predictable,1293158755 +95879,76093,vikings,1293158756 +95879,78499,tear jerker,1293158796 +95893,260,cult,1444756035 +95893,260,flat characters,1444756054 +95905,3822,black and white,1368119897 +95905,4432,black and white,1368119897 +95905,5498,black and white,1368119897 +95905,8477,black and white,1368119897 +95905,8516,black and white,1368119897 +95905,26003,black and white,1368119897 +95905,77307,Είναι εξαιρετικά διεστραμένη,1284829627 +95909,107,muppets,1253527874 +95909,273,based on a book,1253527906 +95909,519,sequel,1253527979 +95909,1022,fairy tale,1253527895 +95909,1080,Monty Python,1253528803 +95909,1080,satire,1253528806 +95909,1136,Monty Python,1253528792 +95909,1136,parody,1253528790 +95909,1136,satire,1253528794 +95909,1373,Star Trek,1253527933 +95909,1416,musical,1253527920 +95909,1556,sequel,1253527937 +95909,2096,fairy tale,1253527911 +95909,2117,based on a book,1253528091 +95909,2117,post-apocalyptic,1253528124 +95909,2137,animation,1253527886 +95909,2471,sequel,1253527927 +95909,2542,dark comedy,1253528291 +95909,2986,sequels,1253527968 +95909,3000,anime,1265195012 +95909,3000,Hayao Miyazaki,1265195009 +95909,3000,Japan,1265195017 +95909,3000,Studio Ghibli,1265195006 +95909,3991,dogs,1253528064 +95909,4226,nonlinear,1253528175 +95909,4226,psychology,1253528171 +95909,4226,twist ending,1253528173 +95909,4973,fairy tale,1253528867 +95909,4973,surreal,1253528865 +95909,5618,Studio Ghibli,1253528635 +95909,5690,anime,1253528581 +95909,5690,Studio Ghibli,1253528578 +95909,5971,anime,1253528627 +95909,5971,fantasy,1253528629 +95909,5971,Studio Ghibli,1253528624 +95909,6350,Studio Ghibli,1253528651 +95909,6807,Monty Python,1253528813 +95909,6807,satire,1253528816 +95909,7361,nonlinear,1253528391 +95909,7361,sci-fi,1253528388 +95909,7361,surreal,1253528394 +95909,26662,anime,1253528673 +95909,26662,Studio Ghibli,1253528676 +95909,26743,anime,1253528598 +95909,26743,Japan,1253528592 +95909,26743,Studio Ghibli,1253528595 +95909,26776,anime,1265195040 +95909,26776,Hayao Miyazaki,1265195036 +95909,26776,Studio Ghibli,1265195033 +95909,26903,Japan,1253528588 +95909,27731,Studio Ghibli,1253528646 +95909,30793,based on a book,1253529878 +95909,30793,fantasy,1253529874 +95909,31658,Studio Ghibli,1253528664 +95909,33004,based on a book,1253528223 +95909,33004,post-apocalyptic,1253528220 +95909,33004,sci-fi,1253528227 +95909,44555,GDR,1265194711 +95909,44555,Stasi,1265194721 +95909,47894,ireland,1253528310 +95909,57504,Anime,1265194767 +95909,57504,japan,1265194761 +95909,60069,Animation,1253529412 +95909,60069,pixar,1253529400 +95909,60069,robots,1253529405 +95909,62049,based on a book,1253528119 +95909,62049,George Orwell,1253528116 +95909,65261,Animation,1253528545 +95909,65261,anime,1253528549 +95909,65261,Studio Ghibli,1253528547 +95917,260,Science Fiction,1439079900 +95917,260,space adventure,1439079885 +95925,260,action,1431728807 +95925,260,sci-fi,1431728817 +95935,63082,cinematography,1242067209 +95935,63082,dark side of India,1242067278 +95935,63082,Oscar (Best Picture),1242067232 +95935,63082,poverty,1242067196 +95935,63082,slum,1242067365 +95976,39,sunny,1334720345 +95976,45,100 Essential Female Performances,1236207869 +95976,55,100 Essential Female Performances,1236208784 +95976,190,facebook rec,1182989750 +95976,199,facebook rec,1182989446 +95976,199,vday,1202608342 +95976,215,facebook rec,1182989284 +95976,230,100 Essential Female Performances,1236208327 +95976,296,facebook rec,1182989526 +95976,412,100 Essential Female Performances,1236205470 +95976,509,100 Essential Female Performances,1236208151 +95976,532,100 Essential Female Performances,1236207964 +95976,593,100 Essential Female Performances,1236207652 +95976,708,sunny,1334720350 +95976,899,sunny,1334719844 +95976,903,100 Essential Female Performances,1236208195 +95976,919,100 Essential Female Performances,1236207756 +95976,920,100 Essential Female Performances,1236208248 +95976,920,vday,1202608235 +95976,922,100 Essential Female Performances,1236208255 +95976,955,sunny,1334719851 +95976,968,horror,1223701492 +95976,1179,100 Essential Female Performances,1236205127 +95976,1187,100 Essential Female Performances,1236208819 +95976,1214,horror,1223701311 +95976,1217,100 Essential Female Performances,1236207790 +95976,1247,100 Essential Female Performances,1236208019 +95976,1247,vday,1202608286 +95976,1261,horror,1223701371 +95976,1267,100 Essential Female Performances,1236207877 +95976,1284,vday,1202608195 +95976,1307,sunny,1334720208 +95976,1354,100 Essential Female Performances,1236208280 +95976,1392,100 Essential Female Performances,1236208702 +95976,1407,horror,1223701564 +95976,1635,100 Essential Female Performances,1236205557 +95976,1660,100 Essential Female Performances,1236205299 +95976,1682,facebook rec,1185569269 +95976,1885,100 Essential Female Performances,1236205280 +95976,1923,To Watch Soon,1184713832 +95976,1958,100 Essential Female Performances,1236208605 +95976,1982,horror,1223701383 +95976,1997,horror,1223701379 +95976,2018,facebook rec,1185569313 +95976,2124,horror,1223701514 +95976,2131,100 Essential Female Performances,1236208043 +95976,2160,horror,1223701226 +95976,2174,horror,1223701422 +95976,2181,facebook rec,1182989764 +95976,2203,100 Essential Female Performances,1236208582 +95976,2303,100 Essential Female Performances,1236205544 +95976,2314,100 Essential Female Performances,1236205308 +95976,2351,100 Essential Female Performances,1236208204 +95976,2424,sunny,1334720427 +95976,2571,facebook rec,1185569285 +95976,2572,sunny,1334720332 +95976,2590,100 Essential Female Performances,1236208237 +95976,2639,100 Essential Female Performances,1236207641 +95976,2648,horror,1223701279 +95976,2738,100 Essential Female Performances,1236208528 +95976,2739,100 Essential Female Performances,1236208404 +95976,2750,facebook rec,1182989507 +95976,2919,100 Essential Female Performances,1236205249 +95976,2932,facebook rec,1182989783 +95976,2935,100 Essential Female Performances,1236208230 +95976,2939,100 Essential Female Performances,1236207887 +95976,2940,vday,1202608255 +95976,2959,messed up,1180879452 +95976,3081,horror,1223701412 +95976,3101,100 Essential Female Performances,1236207606 +95976,3116,100 Essential Female Performances,1236208345 +95976,3127,100 Essential Female Performances,1236208916 +95976,3181,100 Essential Female Performances,1236207839 +95976,3307,vday,1202608245 +95976,3330,vday,1202608352 +95976,3363,facebook rec,1185569295 +95976,3418,100 Essential Female Performances,1236208034 +95976,3499,horror,1223701248 +95976,3621,100 Essential Female Performances,1236207579 +95976,3792,100 Essential Female Performances,1236208469 +95976,3808,100 Essential Female Performances,1236208170 +95976,3813,100 Essential Female Performances,1236205502 +95976,3910,facebook rec,1182989465 +95976,4105,horror,1223701400 +95976,4128,horror,1223701416 +95976,4144,100 Essential Female Performances,1236208639 +95976,4144,facebook rec,1182989348 +95976,4144,vday,1202608381 +95976,4422,100 Essential Female Performances,1236205098 +95976,4437,horror,1223701469 +95976,4590,100 Essential Female Performances,1236205267 +95976,4801,100 Essential Female Performances,1236208263 +95976,4806,100 Essential Female Performances,1236208744 +95976,4848,100 Essential Female Performances,1236208288 +95976,4873,facebook rec,1182989920 +95976,4967,movielens top pick,1179792201 +95976,4979,100 Essential Female Performances,1236205328 +95976,5025,facebook rec,1185569359 +95976,5085,100 Essential Female Performances,1236208370 +95976,5269,100 Essential Female Performances,1236207812 +95976,5451,vday,1202608312 +95976,5660,100 Essential Female Performances,1236207936 +95976,5673,vday,1202608301 +95976,5763,100 Essential Female Performances,1236208898 +95976,6127,100 Essential Female Performances,1236208726 +95976,6245,vday,1202608277 +95976,6271,100 Essential Female Performances,1236205188 +95976,6291,100 Essential Female Performances,1236208621 +95976,6357,sunny,1334719776 +95976,6502,facebook rec,1185569167 +95976,6509,100 Essential Female Performances,1236208826 +95976,6639,To Watch Soon,1178745643 +95976,6885,100 Essential Female Performances,1236207923 +95976,6927,100 Essential Female Performances,1236205464 +95976,6964,100 Essential Female Performances,1236208850 +95976,6985,100 Essential Female Performances,1236208064 +95976,7013,100 Essential Female Performances,1236205573 +95976,7068,facebook rec,1182989397 +95976,7086,100 Essential Female Performances,1236208423 +95976,7121,vday,1202608183 +95976,7160,100 Essential Female Performances,1236207956 +95976,7215,vday,1202608205 +95976,7327,100 Essential Female Performances,1236208011 +95976,7335,100 Essential Female Performances,1236205432 +95976,7387,horror,1223701319 +95976,7572,100 Essential Female Performances,1236208543 +95976,7706,facebook rec,1182989728 +95976,7748,facebook rec,1182989543 +95976,7935,100 Essential Female Performances,1236208883 +95976,7938,100 Essential Female Performances,1236205521 +95976,8125,100 Essential Female Performances,1236208102 +95976,8194,100 Essential Female Performances,1236208318 +95976,8256,100 Essential Female Performances,1236208074 +95976,8261,100 Essential Female Performances,1236208656 +95976,8338,100 Essential Female Performances,1236208183 +95976,8366,religion,1225594513 +95976,8571,vday,1202608410 +95976,8636,facebook rec,1185569341 +95976,8638,facebook rec,1182989288 +95976,8650,100 Essential Female Performances,1236208413 +95976,8754,100 Essential Female Performances,1236208493 +95976,8874,facebook rec,1182989565 +95976,25763,facebook rec,1193019793 +95976,25891,facebook rec,1185569002 +95976,25924,100 Essential Female Performances,1236208355 +95976,25996,100 Essential Female Performances,1236208088 +95976,25996,facebook rec,1182989331 +95976,26119,100 Essential Female Performances,1236208891 +95976,26128,sunny,1334720325 +95976,26431,100 Essential Female Performances,1236205155 +95976,27410,movielens top pick,1176148249 +95976,27721,vday,1202608221 +95976,31109,100 Essential Female Performances,1236208810 +95976,32525,100 Essential Female Performances,1236208395 +95976,36525,sunny,1334720320 +95976,37287,100 Essential Female Performances,1236208224 +95976,40732,horror,1223701327 +95976,44761,facebook rec,1185569197 +95976,47122,sunny,1334720414 +95976,48744,facebook rec,1182989481 +95976,49961,100 Essential Female Performances,1236207629 +95976,50229,facebook rec,1182989419 +95976,50685,sunny,1334720294 +95976,52005,100 Essential Female Performances,1236208791 +95976,53127,100 Essential Female Performances,1236207805 +95976,54995,horror,1223701240 +95976,55851,vday,1202608507 +95976,56339,horror,1223701298 +95976,58047,sunny,1334720298 +95976,58490,sunny,1334720281 +95976,64701,100 Essential Female Performances,1236208507 +95976,64839,100 Essential Female Performances,1236205528 +95976,68848,sunny,1334720253 +95976,70293,sunny,1334720277 +95976,73879,sunny,1334720405 +95976,81784,sunny,1334720438 +95976,81847,sunny,1334720199 +95981,1208,Dark,1437228478 +95981,1208,Dennis Hopper,1437228518 +95981,1208,Francis Ford Coppola,1437228530 +95981,1208,Joseph Conrad,1437228567 +95981,1208,Nudity (Topless),1437228463 +95981,1208,psychological,1437228457 +95981,1208,Robert Duvall,1437228581 +95981,1208,surreal,1437228454 +95981,1208,Vietnam war,1437228449 +95981,6787,bob woodward,1437228777 +95981,6787,corruption,1437228777 +95981,6787,richard nixon,1437228777 +95984,5014,beautiful concept - inept writing,1164863499 +95997,1258,Stanley Kubrick,1446391059 +95997,1258,Stephen King,1446391051 +95997,4026,action,1446408242 +95997,4026,bee gees soundtrack,1446408014 +95997,4026,detective,1446408238 +95997,4026,noir,1446408250 +95997,5104,basque,1446407611 +95997,5104,Julio Medem,1446407594 +95997,42632,vengeance,1447594631 +95997,105593,Irvine Welsh,1446391629 +96013,293,hitman,1173478366 +96044,527,Oscar (Best Picture),1288395736 +96044,2329,politics,1288395644 +96044,4027,Coen Brothers,1288555249 +96044,4967,Oscar (Best Foreign Language Film),1288396265 +96044,4973,cult film,1288395888 +96044,4973,surreal,1288395885 +96044,5995,Oscar (Best Actor),1288395721 +96044,8014,Atmospheric,1288396045 +96044,68157,Quentin Tarantino,1288396165 +96066,260,science fantasy,1442839174 +96066,260,Science Fiction,1442839180 +96070,79428,hilarious,1303530012 +96071,89584,hello to jason isaacs,1425802742 +96071,89584,mystery,1425802742 +96071,89584,supernatural powers,1425802742 +96071,115824,biographical,1427470216 +96071,115824,period drama,1427470216 +96071,115824,protagonist is painter (artist),1427470216 +96071,115824,unconventional romance,1427470216 +96127,260,Darth Vader,1440973803 +96127,260,Jedi Wars,1440973782 +96127,109487,black hole,1441041998 +96127,109487,relativity,1441042006 +96127,115713,AI,1441042047 +96127,115713,robot human interface,1441042121 +96142,44191,vertigo comics,1428824209 +96142,60684,dc comics,1428824243 +96156,87306,bad plot,1439857873 +96156,87306,predictable,1439857880 +96156,98122,Jonathan Holmes,1413928618 +96160,296,action,1426277746 +96160,296,comedy,1426277746 +96160,296,drama,1426277746 +96170,555,dark comedy,1313608709 +96170,1089,dark comedy,1313608747 +96170,1729,dark comedy,1313700511 +96170,2391,dark comedy,1313608738 +96170,2542,dark comedy,1313608765 +96170,3362,dark comedy,1313608775 +96170,4011,dark comedy,1313608725 +96170,5008,mystery,1313608906 +96170,5008,thriller,1313608906 +96170,6323,dark comedy,1313609639 +96170,57669,dark comedy,1313608760 +96196,103253,anvilicious,1407725444 +96196,103253,shaky camera,1407725452 +96198,2600,mindfuck,1450935887 +96210,1321,atmospheric,1373741954 +96210,1321,humorous,1373741965 +96210,1321,scary,1373741981 +96212,22,thriller,1368678907 +96212,29,dark,1368678181 +96212,31,inspirational,1368678368 +96212,111,dark,1368678181 +96212,157,politics,1368678860 +96212,161,tense,1368678892 +96212,165,action,1167680822 +96212,165,always watch it when it's on tv,1167680849 +96212,216,stupid,1368678875 +96212,339,chick flick,1167681037 +96212,380,family,1167680463 +96212,380,spies,1167680463 +96212,440,politics,1368678860 +96212,474,tense,1368678892 +96212,500,cross dressing,1167680798 +96212,500,divorce,1167680796 +96212,519,franchise,1368678310 +96212,555,ensemble cast,1368678225 +96212,736,science,1167680431 +96212,832,tense,1368678892 +96212,861,police,1368678611 +96212,913,black and white,1368678090 +96212,919,classic,1167680964 +96212,919,flying monkeys,1167681024 +96212,919,lion,1167681024 +96212,919,scarecrow,1167681024 +96212,919,tin man,1167681024 +96212,919,witch,1167680966 +96212,946,nazis,1368678504 +96212,1036,action,1167681237 +96212,1036,always watch it when it's on tv,1167681237 +96212,1073,classic,1167680148 +96212,1073,family bonds,1167680211 +96212,1073,Fantasy,1167680159 +96212,1073,seen more than once,1167680154 +96212,1089,violent,1368678930 +96212,1095,ensemble cast,1368678225 +96212,1175,dark,1368678181 +96212,1214,tense,1368678892 +96212,1228,oscar (best cinematography),1368678565 +96212,1262,ensemble cast,1368678225 +96212,1269,love story,1167680730 +96212,1269,murder,1167680730 +96212,1357,father-son relationship,1368678278 +96212,1357,mental illness,1368678417 +96212,1370,action,1167680825 +96212,1370,always watch it when it's on tv,1167680858 +96212,1387,always watch it when it's on tv,1167681269 +96212,1387,animal attacks,1167681260 +96212,1387,classic,1167681259 +96212,1387,shark,1167681257 +96212,1388,always watch it when it's on tv,1167681397 +96212,1388,animal attacks,1167681397 +96212,1388,sequel,1167681418 +96212,1388,shark,1167681397 +96212,1390,politics,1368678860 +96212,1396,ensemble cast,1368678225 +96212,1461,funny,1167681100 +96212,1464,mystery,1368678461 +96212,1515,family bonds,1167680349 +96212,1515,father daughter relationship,1167680349 +96212,1552,airplane,1167680640 +96212,1552,prison,1167680640 +96212,1589,ensemble cast,1368678225 +96212,1597,thriller,1368678907 +96212,1610,thriller,1368678907 +96212,1834,mystery,1368678461 +96212,1947,love story,1167680298 +96212,1947,romeo and juliet,1167680276 +96212,1950,police,1368678611 +96212,2024,christianity,1368678122 +96212,2026,high school,1368678340 +96212,2058,tense,1368678892 +96212,2076,dark,1368678181 +96212,2082,inspirational,1368678368 +96212,2335,stupid,1368678875 +96212,2353,thriller,1368678907 +96212,2359,British,1167681078 +96212,2359,lottery tickets,1167681078 +96212,2383,police,1368678611 +96212,2424,Good Romantic Comedies,1167680950 +96212,2424,remake,1167680953 +96212,2478,friendship,1167680943 +96212,2478,silly but good,1167680943 +96212,2490,violent,1368678930 +96212,2500,high school,1368678340 +96212,2527,suspense,1167680243 +96212,2572,romantic,1167680706 +96212,2572,teen,1167680708 +96212,2797,being a kid again,1167680907 +96212,2797,switching places,1167680899 +96212,2808,cyborgs,1167681120 +96212,2882,nazis,1368678503 +96212,2888,high school,1368678339 +96212,2919,politics,1368678860 +96212,2944,ensemble cast,1368678225 +96212,2959,violent,1368678930 +96212,2985,violent,1368678930 +96212,3044,mystery,1368678461 +96212,3146,stupid,1368678875 +96212,3178,inspirational,1368678368 +96212,3219,suspense,1167680503 +96212,3256,tense,1368678892 +96212,3256,thriller,1368678907 +96212,3273,franchise,1368678311 +96212,3362,police,1368678611 +96212,3440,franchise,1368678310 +96212,3519,nazis,1368678504 +96212,3675,Christmas,1167681029 +96212,3683,dark,1368678181 +96212,3980,inspirational,1368678369 +96212,4019,inspirational,1368678368 +96212,4034,oscar (best cinematography),1368678565 +96212,4124,ridiculous,1167681379 +96212,4124,shark,1167681380 +96212,4291,women's lib,1167680791 +96212,4306,pixar,1368678586 +96212,4354,bad cop,1167681116 +96212,4354,home invasion,1167681114 +96212,4388,stupid,1368678875 +96212,4557,cars,1167681152 +96212,4865,dark,1368678181 +96212,4865,mystery,1368678462 +96212,4974,stupid,1368678875 +96212,5107,nazis,1368678504 +96212,5218,pixar,1368678586 +96212,5363,high school,1368678339 +96212,5785,stupid,1368678875 +96212,6323,mystery,1368678461 +96212,6537,franchise,1368678311 +96212,6539,adventure,1167680775 +96212,6539,pirates,1167680775 +96212,6539,predictable,1167680775 +96212,6659,monster,1167681177 +96212,6659,silly,1167681204 +96212,6659,unrealistic,1167681204 +96212,6808,nazis,1368678504 +96212,6936,Christmas,1167680816 +96212,7004,undercover cop,1167680810 +96212,7155,British,1167680685 +96212,7155,cancer,1167680686 +96212,7454,vampires,1167681103 +96212,7846,fun,1167681173 +96212,7846,monster,1167681183 +96212,7846,silly,1167681173 +96212,7846,unrealistic,1167681173 +96212,8360,pixar,1368678586 +96212,8781,politics,1368678860 +96212,33660,inspirational,1368678369 +96212,38038,pixar,1368678586 +96212,41566,Children,1167680893 +96212,41566,family,1167680893 +96212,41566,fantasy,1167680874 +96212,41566,witch,1167680876 +96212,51540,police,1368678611 +96212,53121,franchise,1368678311 +96212,55290,police,1368678611 +96212,59429,nudity (topless - notable),1368678536 +96212,59784,pixar,1368678586 +96212,63113,franchise,1368678310 +96212,64622,nazis,1368678504 +96212,74458,mystery,1368678462 +96218,69481,ending,1266157381 +96218,71535,bill murray,1266157106 +96218,71535,ending,1266157099 +96218,72011,charming dialogues,1266156977 +96218,72011,idea,1266156977 +96218,72011,it was only nice,1266156966 +96218,72998,story pocahontas,1266157026 +96218,72998,visuals,1266157012 +96220,1196,father-son relationship,1240971844 +96220,1196,Harrison Ford,1240971825 +96220,1196,sci-fi,1240971856 +96220,1198,action,1240972092 +96220,1198,humorous,1240972085 +96220,1198,indiana jones,1240972100 +96220,4993,based on a book,1240971905 +96220,4993,high fantasy,1240972031 +96220,4993,Ian McKellen,1240971946 +96220,4993,music,1240971899 +96220,33794,atmospheric,1240971724 +96220,33794,dark hero,1240971703 +96220,33794,Gary Oldman,1240971714 +96220,36401,interesting idea had great potential,1250171395 +96220,49286,better than expected,1241859135 +96220,49286,Cameron Diaz,1241859179 +96220,49286,Hollywood,1241859173 +96220,49286,Jack Black,1241859097 +96220,49286,Jude Law,1241859091 +96220,49286,Kate Winslet,1241859094 +96220,58559,dark,1240971802 +96220,58559,Heath Ledger,1240971766 +96220,58559,Maggie Gyllenhaal,1240971783 +96236,942,Fox Film Noir Series,1152222596 +96236,953,alternate universe,1152203726 +96236,3334,Film Noir,1152222372 +96236,32369,Fox Film Noir Series,1152222513 +96236,32371,Fox Film Noir Series,1152222527 +96249,10,action,1436113687 +96249,10,classic,1436113672 +96249,10,computer games,1436113680 +96249,10,james bond,1436113669 +96249,10,thriller,1436113691 +96249,5618,adventure,1436113782 +96249,5618,anime,1436113764 +96249,5618,dark,1436113785 +96249,5618,drama,1436113771 +96249,5618,fantasy,1436113767 +96249,5618,imaginative,1436113779 +96249,61493,action,1436114146 +96249,61493,gangster,1436114156 +96249,61493,mma,1436114147 +96249,61493,police,1436114154 +96249,96079,action,1436113613 +96249,96079,destruction,1436113628 +96249,96079,franchise,1436113620 +96249,96079,James Bond,1436113609 +96249,96079,spies,1436113623 +96249,96079,thriller,1436113616 +96302,260,science fantasy,1442851726 +96305,32,Brad Pitt,1280287117 +96305,32,British,1280287134 +96305,32,Bruce Willis,1280287115 +96305,32,complicated,1280287122 +96305,32,time travel,1280287125 +96305,260,adventure,1280285238 +96305,260,desert,1280285256 +96305,260,Oscar (Best Effects - Visual Effects),1280285260 +96305,260,sci-fi,1280285241 +96305,260,sword fight,1280285245 +96305,260,war,1280285266 +96305,296,assassin,1280285174 +96305,296,Black comedy,1280285136 +96305,296,classic,1281671735 +96305,296,comedy,1280285170 +96305,296,cult film,1280285163 +96305,296,drugs,1280285144 +96305,296,multiple storylines,1280285156 +96305,296,Quentin Tarantino,1280285151 +96305,296,Samuel L. Jackson,1280285148 +96305,920,too long,1376871675 +96305,1266,Clint Eastwood,1329187439 +96305,1266,Morgan Freeman,1329187453 +96305,1266,Oscar (Best Picture),1329187441 +96305,1266,REDEMPTION,1329187445 +96305,1272,Biography,1329184751 +96305,1272,boring,1329184747 +96305,1272,true story,1329184754 +96305,1275,Christopher Lambert,1294590304 +96305,1275,Sean Connery,1294590307 +96305,1275,sword fight,1294590310 +96305,1591,horruible movie,1338750065 +96305,1653,biology,1280287177 +96305,1653,distopia,1280287180 +96305,1653,future,1280287183 +96305,1653,sci-fi,1280287186 +96305,1653,space travel,1280287168 +96305,1653,Uma Thurman,1280287166 +96305,1801,Leonardo DiCaprio,1338748681 +96305,2028,action,1280287823 +96305,2028,fighting nazis,1280287826 +96305,2028,Matt Damon,1280287831 +96305,2028,Tom Hanks,1280533714 +96305,2396,love story,1329185087 +96305,2396,overrated,1329185075 +96305,2628,Star Wars,1315353619 +96305,2691,great soundtrack,1294971245 +96305,2691,music,1294971238 +96305,2826,epic,1338748390 +96305,2826,fantasy,1338748391 +96305,2826,good plot,1338748416 +96305,2826,vikings,1338748393 +96305,3147,great acting,1356615370 +96305,3147,sexuality,1356615357 +96305,3147,social commentary,1356615381 +96305,3147,Tom Hanks,1356615332 +96305,3267,Robert Rodriguez,1329187754 +96305,3578,Ridley Scott,1280533764 +96305,3578,Russell Crowe,1280533758 +96305,4995,biography,1358469812 +96305,4995,mathematics,1358469807 +96305,4995,Oscar (Best Directing),1358469819 +96305,4995,Oscar (Best Supporting Actress),1358469817 +96305,4995,psychology,1358469805 +96305,5108,Denzel Washington,1294966854 +96305,5108,overdramatic,1294966847 +96305,5152,action packed,1355437726 +96305,5152,heroism,1355437755 +96305,5152,Mel Gibson,1355437721 +96305,5152,pro america,1355437736 +96305,5152,pro military,1355437749 +96305,5152,well done,1355437740 +96305,5445,artificial intelligence,1280287213 +96305,5445,sci-fi,1280287207 +96305,5445,Steven Spielberg,1280287204 +96305,5464,organized crime,1280286913 +96305,5464,Oscar (Best Cinematography),1280286916 +96305,5464,Tom Hanks,1280286919 +96305,5464,violence,1280286922 +96305,5995,historical,1280287797 +96305,5995,true story,1280287790 +96305,5995,World War II,1280287793 +96305,6870,Clint Eastwood,1280286686 +96305,6870,crime,1280286671 +96305,6870,Kevin Bacon,1280286677 +96305,6870,twist ending,1280286693 +96305,7163,Ben Affleck,1280287304 +96305,7163,payne,1280287309 +96305,7163,Revenge,1280287311 +96305,7163,soundtrack,1280287300 +96305,7163,Uma Thurman,1280287301 +96305,7380,fairy tale,1294588287 +96305,7380,feel good movie,1294588281 +96305,8132,easily confused with other movie(s) (title),1376872208 +96305,8644,artificial intelligence,1280287332 +96305,8798,absurd,1280286883 +96305,8798,action,1280286881 +96305,8798,assassin,1280286878 +96305,8798,dark,1280286860 +96305,8798,great performances,1280286858 +96305,8798,Jamie Foxx,1280286846 +96305,8798,one day,1280286870 +96305,8798,revenge,1280286873 +96305,8798,violent,1280286867 +96305,8874,black comedy,1280285536 +96305,8874,british comedy,1280285534 +96305,8874,gore,1280285530 +96305,8874,parody,1280285532 +96305,8874,spoof,1280285547 +96305,8874,zombie,1280285545 +96305,8874,zombies,1280285521 +96305,8950,Christian Bale,1280287039 +96305,8950,creepy,1280287043 +96305,8950,grim,1280287061 +96305,8950,memory,1280287046 +96305,8950,powerful ending,1280287052 +96305,8950,predictable,1280287072 +96305,30707,Clint Eastwood,1329187523 +96305,30707,dark,1329187577 +96305,30707,Hilary Swank,1329187553 +96305,30707,Morgan Freeman,1329187558 +96305,30707,mother daughter relationship,1329187562 +96305,30707,violence,1329187571 +96305,34405,action,1280285364 +96305,34405,aliens,1280285402 +96305,34405,assassin,1280285399 +96305,34405,black comedy,1280285366 +96305,34405,dystopia,1280285370 +96305,34405,sci-fi,1280285372 +96305,34405,SPACE TRAVEL,1280285389 +96305,37477,Samuel L. Jackson,1355101360 +96305,37733,unpredictable,1280287010 +96305,37733,Viggo Mortensen,1280287002 +96305,37733,Violence,1280287005 +96305,44191,action,1280285017 +96305,44191,dark,1280285011 +96305,44191,inspirational,1280285021 +96305,44191,Natalie Portman,1280285023 +96305,44191,revenge,1280285037 +96305,44191,sci-fi,1280285026 +96305,44191,social commentary,1280285008 +96305,44191,super-hero,1280285003 +96305,44199,good story,1328926312 +96305,44199,intelligent thriller,1328926318 +96305,44199,Jodie Foster,1328926321 +96305,47384,anoyng kids,1328976006 +96305,47384,naive,1328976067 +96305,47384,superheroes,1328975979 +96305,48780,Christian Bale,1328926271 +96305,48780,complicated,1328926281 +96305,48780,tense,1328926286 +96305,48780,twist ending,1328926292 +96305,49278,Denzel Washington,1280287239 +96305,49278,Oh The Things I Could Do If Snow White Were A Console,1280287266 +96305,49278,time travel,1280287240 +96305,49278,Tony Scott,1280287242 +96305,50804,cannibalism; uncomfortable; crime; serial killer;,1294589177 +96305,50804,Hannibal Lecter,1294589187 +96305,51255,action spoof,1280285464 +96305,51255,black comedy,1280285466 +96305,51255,british comedy,1280285457 +96305,51255,justice,1280285489 +96305,51255,macabre,1280285486 +96305,51255,parody,1280285468 +96305,51255,police,1280285471 +96305,51255,Simon Pegg,1280285461 +96305,51255,subgenre:cop buddies,1280285482 +96305,51255,surreal,1280285473 +96305,51471,biography,1329184423 +96305,51471,history,1329184389 +96305,51471,PG:thematic material including slavery,1329184416 +96305,51471,political drama,1329184389 +96305,51471,true story,1329184402 +96305,51662,Nudity (Topless),1281653895 +96305,52319,easily confused with other movie(s) (title),1329187682 +96305,52319,historically inaccurate,1329187675 +96305,54995,Bruce Willis,1280285845 +96305,54995,crude humor,1280285801 +96305,54995,grindhouse,1280285809 +96305,54995,lesbian,1280285837 +96305,54995,Robert Rodriguez,1280285813 +96305,54995,zombies,1280285824 +96305,55118,bloody,1280286964 +96305,55118,Viggo Mortensen,1280286953 +96305,55276,ClearPlay,1280286755 +96305,55276,corporate espionage,1280286743 +96305,55276,disillusionment,1280286746 +96305,55276,flash forward,1280286749 +96305,55276,George Clooney,1280286734 +96305,55276,movie to see,1280286763 +96305,55553,easily confused with other movie(s) (title),1280285589 +96305,55553,mad scientist,1280285598 +96305,55553,mutation,1280285601 +96305,55553,sheep zombies,1280285619 +96305,55553,Zombies,1280285637 +96305,57326,Jason Statham,1282847010 +96305,57326,plot,1282847003 +96305,57326,Uwe Boll,1282846986 +96305,57326,Uwe Boll Sucks,1282846991 +96305,58162,Simon Pegg,1310830953 +96305,58743,military,1358467848 +96305,58743,Nudity (Topless),1358467835 +96305,58743,too long,1358467842 +96305,60526,intrigante,1358386425 +96305,63072,great acting,1280284949 +96305,63072,post-apocalyptic,1280284962 +96305,63072,Viggo Mortensen,1280284966 +96305,67255,dark,1328801848 +96305,67255,Nudity (Topless - Notable),1328801803 +96305,67255,suspense,1328801842 +96305,70286,directorial debut,1280287394 +96305,70286,genetics,1280287373 +96305,70286,humor,1280287362 +96305,70286,intelligent sci-fi,1280287368 +96305,70286,redemption,1280287386 +96305,70286,social commentary,1280287376 +96305,70286,unique,1280287378 +96305,70286,violence,1280287382 +96305,70286,xenophobia,1280287381 +96305,71160,based on a book,1315353537 +96305,71160,fan film,1315353532 +96305,71160,independent film,1315353526 +96305,71160,Tolkien,1315353534 +96305,71535,dark comedy,1280285726 +96305,71535,ending,1280285760 +96305,71535,funny,1280285765 +96305,71535,post-apocalyptic,1280285771 +96305,71535,short,1280285751 +96305,71535,stylized violence,1280285742 +96305,72294,fantastic CG,1294583516 +96305,72294,Ghosts too scary,1294583508 +96305,72294,special effects weird,1294583502 +96305,74458,action,1280286433 +96305,74458,ending twist,1280286437 +96305,74458,insanity,1280286445 +96305,74458,Leonardo DiCaprio,1280286415 +96305,74458,plot twist,1280286447 +96305,74458,psychological,1280286417 +96305,74458,story,1280286421 +96305,74545,black humour,1294970028 +96305,74545,Ewan McGregor,1294970022 +96305,74545,nudity,1294970019 +96305,74795,CIA Agent,1280287930 +96305,74795,conspiracy,1280287928 +96305,74795,Deception,1280287933 +96305,74795,Matt Damon,1280287925 +96305,77540,dark,1338748276 +96305,77540,demons,1338748286 +96305,77540,hero,1338748323 +96305,77540,redemption,1338748283 +96305,77561,audience intelligence underestimated,1281653946 +96305,77561,bad science,1281653952 +96305,77866,adventure,1338748644 +96305,77866,remake,1338748623 +96305,77866,Robin Hood,1338748637 +96305,77866,Russell Crowe,1338748617 +96305,77866,to see: medieval,1338748640 +96305,77866,unhistorical,1338748603 +96305,79091,Steve Carell,1294583668 +96305,79274,antihero,1338748233 +96305,79274,bad physics,1338748223 +96305,79274,bad science,1338748225 +96305,79274,comics,1338748212 +96305,79274,DC,1338748218 +96305,79274,Joker,1338748207 +96305,79274,sympathetic villain,1338748204 +96305,80398,Jean Reno,1329784212 +96305,80615,Zack Snyder,1294583458 +96305,81845,1930s,1298428722 +96305,81845,based on a true story,1298428701 +96305,81845,friendship,1298428693 +96305,81845,Guy Pearce,1298428708 +96305,81845,historic,1298428746 +96305,81932,Amy Adams,1298592600 +96305,81932,boxing,1298592608 +96305,81932,Christian Bale,1298592596 +96305,81932,human garbage,1298592620 +96305,81932,Mark Wahlberg,1298592646 +96305,82242,male nudity,1376872432 +96305,82242,no payoff,1376872485 +96305,82242,original,1376872468 +96305,82242,story,1376872446 +96305,85025,Jamie Bell,1338748480 +96305,85025,photography,1338748485 +96305,85025,sad,1338748489 +96305,85025,smile at the end,1338748540 +96305,85298,action,1436885273 +96305,85298,father son relationship,1436885273 +96305,85298,teenage romance,1436885273 +96305,88140,Bechdel Test:Fail,1315352463 +96305,88140,Chris Evans,1315352496 +96305,88140,dieselpunk,1315352491 +96305,88140,superhero,1315352452 +96305,88235,rude,1338748113 +96305,88812,rudeness,1328922637 +96305,90249,cartoonish antagonists,1325639844 +96305,90249,hugh jackman,1325639849 +96305,90620,good acting,1329184910 +96305,90620,inteligent,1329184854 +96305,90620,romance,1329184880 +96305,90647,visually appealing,1325639598 +96305,90866,bad acting,1331065858 +96305,90866,Ben Kingsley,1331065865 +96305,91104,everything,1328980343 +96305,91529,dark,1357574203 +96305,91529,great ending,1357574198 +96305,91529,intense,1357574225 +96305,91529,plot twist,1357574229 +96305,91529,superhero,1357574222 +96305,91529,surreal,1357574196 +96305,91658,good acting,1328975751 +96305,91658,hacking,1328975771 +96305,91658,mystery,1328975827 +96305,91658,remake,1328975759 +96305,91658,suspense,1328975777 +96305,91658,thriller,1328975820 +96305,92152,porn,1333254445 +96305,92243,Altruism,1328923001 +96305,92243,Christian Bale,1328923001 +96305,92243,prostitution,1328923006 +96305,92420,acting,1356616037 +96305,92420,clever,1356616009 +96305,92420,supernatural powers,1356616007 +96305,92490,great music,1338748264 +96305,92490,music,1338748252 +96305,92920,acting,1356616080 +96305,92920,realness,1356616092 +96305,93326,cliche,1376872769 +96305,93326,horrible,1376872768 +96305,93326,spy,1376872771 +96305,95167,predictable,1358228334 +96305,96079,stupid,1358228264 +96305,96737,cinematography,1357574401 +96305,96737,Karl Urban,1357574387 +96305,96737,might like,1357574397 +96305,98809,adventure,1357574171 +96305,98809,beautiful scenery,1357574156 +96305,98809,big budget,1357574176 +96305,98809,CGI,1357574174 +96305,99114,Christoph Waltz,1358228187 +96305,99114,Jamie Foxx,1358228190 +96305,99114,Leonardo DiCaprio,1358228184 +96305,99114,Samuel L. Jackson,1358228181 +96305,99114,western,1358228177 +96305,103372,sad,1376872710 +96371,296,artsy,1423329836 +96371,296,exciting,1423329836 +96371,296,raw,1423329836 +96387,111,Martin Scorsese,1365000335 +96387,296,dark comedy,1365000361 +96387,318,atmospheric,1365001730 +96387,318,psychology,1365001724 +96387,318,twist ending,1365001728 +96387,319,atmospheric,1365001714 +96387,319,dark comedy,1365001708 +96387,319,disturbing,1365001711 +96387,471,Coen Brothers,1365001502 +96387,471,quirky,1365001505 +96387,593,psychology,1365000492 +96387,608,Coen Brothers,1365000780 +96387,608,dark comedy,1365000776 +96387,741,cyberpunk,1365001463 +96387,750,dark comedy,1365000802 +96387,858,atmospheric,1365001471 +96387,858,stylized,1365001468 +96387,903,Alfred Hitchcock,1365000323 +96387,903,twist ending,1365000331 +96387,923,atmospheric,1365001364 +96387,924,atmospheric,1365001218 +96387,924,surreal,1365001221 +96387,1089,dark comedy,1365001149 +96387,1089,nonlinear,1365000343 +96387,1089,Quentin Tarantino,1365000338 +96387,1199,dark comedy,1365000374 +96387,1199,surreal,1365000384 +96387,1201,atmospheric,1365000741 +96387,1206,disturbing,1365001370 +96387,1206,psychology,1365001372 +96387,1206,surreal,1365001375 +96387,1208,disturbing,1365001282 +96387,1208,surreal,1365001283 +96387,1222,Stanley Kubrick,1365000366 +96387,1227,atmospheric,1365001612 +96387,1228,atmospheric,1365001666 +96387,1228,stylized,1365001663 +96387,1230,quirky,1365001021 +96387,1230,witty,1365001180 +96387,1245,atmospheric,1365000548 +96387,1245,Coen Brothers,1365000543 +96387,1245,dark comedy,1365000544 +96387,1252,atmospheric,1365000825 +96387,1252,social commentary,1365000860 +96387,1265,Fantasy,1365001480 +96387,1265,surreal,1365001477 +96387,1284,classic,1365001340 +96387,1292,satire,1365001335 +96387,1292,surreal,1365001331 +96387,1464,atmospheric,1365000591 +96387,1464,disturbing,1365000583 +96387,1464,nonlinear,1365000588 +96387,1729,dark comedy,1365001531 +96387,1729,quirky,1365001534 +96387,1884,social commentary,1365000749 +96387,1884,surreal,1365000770 +96387,1884,Terry Gilliam,1365000770 +96387,1921,atmospheric,1365001622 +96387,1921,disturbing,1365001619 +96387,1921,psychology,1365001617 +96387,1963,black comedy,1365001747 +96387,2019,atmospheric,1365001704 +96387,2019,stylized,1365001701 +96387,2028,disturbing,1365001693 +96387,2028,stylized,1365001696 +96387,2076,atmospheric,1365000888 +96387,2076,disturbing,1365000884 +96387,2076,surreal,1365000881 +96387,2289,satirical,1365001628 +96387,2551,disturbing,1365000810 +96387,2571,atmospheric,1365001589 +96387,2571,stylized,1365001583 +96387,2571,surreal,1365001586 +96387,2932,atmospheric,1365001399 +96387,2932,dreamlike,1365001396 +96387,2973,philosophical,1365000818 +96387,2997,dark comedy,1365000912 +96387,2997,psychology,1365000926 +96387,2997,surreal,1365000929 +96387,3075,atmospheric,1365001672 +96387,3075,psychology,1365001682 +96387,3683,Coen Brothers,1365000892 +96387,3683,quirky,1365000895 +96387,3741,atmospheric,1365001302 +96387,3741,stylized,1365001300 +96387,3742,Classic,1365001319 +96387,3949,psychology,1365000503 +96387,4144,atmospheric,1365001513 +96387,4144,stylized,1365001511 +96387,4226,nonlinear,1365000572 +96387,4226,psychology,1365000567 +96387,4226,twist ending,1365000569 +96387,4848,disturbing,1365000531 +96387,4848,nonlinear,1365000533 +96387,4848,twist ending,1365000536 +96387,4878,atmospheric,1365001438 +96387,4878,psychology,1365001433 +96387,4878,surreal,1365001435 +96387,4881,Coen Brothers,1365001569 +96387,4914,quirky,1365000869 +96387,4914,stylized,1365000877 +96387,4973,atmospheric,1365001258 +96387,4973,quirky,1365001253 +96387,4973,stylized,1365001264 +96387,4973,surreal,1365001256 +96387,5618,atmospheric,1365001739 +96387,5618,surreal,1365001736 +96387,5673,Adam Sandler,1365001658 +96387,5673,quirky,1365001651 +96387,5902,dark comedy,1365000416 +96387,5902,quirky,1365001126 +96387,5902,surreal,1365001131 +96387,5954,psychology,1365001232 +96387,6440,Coen Brothers,1365000405 +96387,6440,disturbing,1365000395 +96387,6440,quirky,1365000407 +96387,6708,Quirky,1365001577 +96387,6708,twist ending,1365001579 +96387,6807,classic,1365001600 +96387,6870,twist ending,1365001607 +96387,6874,Quentin Tarantino,1365001542 +96387,6874,quirky,1365001537 +96387,6874,stylized,1365001545 +96387,7084,Woody Allen,1365000515 +96387,7090,atmospheric,1365001491 +96387,7090,stylized,1365001485 +96387,7090,twist ending,1365001487 +96387,7235,disturbing,1365000717 +96387,7235,stylized,1365000628 +96387,7361,nonlinear,1365000790 +96387,7361,psychology,1365000787 +96387,7361,surreal,1365000792 +96387,7371,disturbing,1365001415 +96387,7371,philosophy,1365001417 +96387,7371,social commentary,1365001412 +96387,7438,atmospheric,1365001552 +96387,7438,stylized,1365001550 +96387,7438,twist ending,1365001548 +96387,8014,Atmospheric,1365001742 +96387,8154,cynical,1365001426 +96387,8154,satirical,1365001424 +96387,8874,dark comedy,1365001718 +96387,27317,disturbing,1365001290 +96387,27317,stylized,1365001293 +96387,27592,dark,1365000482 +96387,27592,stylized,1365000486 +96387,27611,sci-fi,1365001328 +96387,27773,disturbing,1365000526 +96387,27773,twist ending,1365000523 +96387,30707,social commentary,1365001595 +96387,31364,atmospheric,1365000564 +96387,31364,disturbing,1365000554 +96387,33487,Kim Ki-Duk,1365001688 +96387,33592,disturbing,1365000967 +96387,33592,Ki-duk Kim,1365000945 +96387,33592,Kim Ki-Duk,1365000940 +96387,33592,psychology,1365000967 +96387,33794,atmospheric,1365001312 +96387,33794,stylized,1365001308 +96387,33896,Chan-wook Park,1365001237 +96387,33896,disturbing,1365001240 +96387,42632,disturbing,1365000608 +96387,42632,stylized,1365000599 +96387,42632,surreal,1365000603 +96387,48516,atmospheric,1365001408 +96387,48516,psychology,1365001403 +96387,48516,twist ending,1365001406 +96387,48780,atmospheric,1365001636 +96387,48780,nonlinear,1365001639 +96387,48780,twist ending,1365001633 +96387,51255,dark comedy,1365001497 +96387,51255,surreal,1365001495 +96387,55118,atmospheric,1365001456 +96387,55118,disturbing,1365001453 +96387,55820,coen brothers,1365000350 +96387,55820,twist ending,1365001139 +96387,56782,Coen Brothers,1365000470 +96387,58559,Atmospheric,1365001386 +96387,58559,psychology,1365001380 +96387,58559,stylized,1365001383 +96387,61240,atmospheric,1365001563 +96387,64839,disturbing,1365000430 +96387,66785,stylized,1365000731 +96387,68157,dark comedy,1365001521 +96387,68157,Quentin Tarantino,1365001524 +96387,68157,twist ending,1365001527 +96387,71304,dark comedy,1365000447 +96387,71304,thought-provoking,1365000440 +96387,79132,alternate reality,1365000615 +96387,79132,psychology,1365000620 +96387,79132,twist ending,1365000623 +96387,81591,atmospheric,1365001353 +96387,81591,surreal,1365001350 +96387,81591,twist ending,1365001347 +96387,88129,atmospheric,1365001443 +96391,25,Nicolas Cage,1333308041 +96391,1552,mawkish,1333308429 +96391,1552,Nicolas Cage,1333308398 +96391,1573,Nicolas Cage,1333308121 +96391,1835,boring,1333308212 +96391,1835,mawkish,1333308209 +96391,1835,Nicolas Cage,1333308191 +96391,1835,sentimental,1333308215 +96391,1955,implausible ending,1397630857 +96391,2336,long,1374619712 +96391,4727,Nicolas Cage,1333308304 +96391,4727,Penelope Cruz,1333308343 +96391,5903,illogical,1323728611 +96391,5903,kurt wimmer,1323728611 +96391,5903,lack of frag grenades,1323728611 +96391,5903,low-budget,1323728611 +96391,5903,motorbike helmets,1323728611 +96391,5903,preposterous,1323728397 +96391,5903,puppy,1323728642 +96391,5903,script fail,1323728672 +96391,5903,Sean Bean,1323728636 +96391,5903,village,1323728611 +96391,7156,honesty,1315686211 +96391,7156,idiocy,1315686212 +96391,40278,true story,1411484893 +96391,66934,avoids tropes,1411484334 +96391,66934,funny,1411484297 +96391,66934,Joss Whedon,1411484306 +96391,66934,musical,1411484351 +96391,66934,original,1411484362 +96391,66934,parody,1411484292 +96391,67997,Armando Iannucci,1411484768 +96391,67997,realistic,1411484778 +96391,67997,The Thick of It,1411484789 +96391,88129,boring,1397628268 +96391,88129,feeble characters,1397628287 +96391,88129,slow,1397628264 +96391,88129,written by a 14-year-old boy,1397628299 +96391,93840,funny,1374619858 +96391,93840,Joss Whedon,1374619834 +96391,93840,self-aware,1374619853 +96391,93840,social commentary,1374619848 +96391,96488,Apartheid,1362309244 +96391,96488,South Africa,1362309244 +96391,98961,fictional history,1380985434 +96391,98961,glorifies torture,1380985755 +96391,98961,plotless,1380985396 +96391,98961,slow,1380985359 +96391,105805,challenges aid,1382475487 +96391,105805,critical,1382475586 +96391,105805,disturbing,1382475646 +96391,105805,DRC,1382475494 +96391,105805,graphic,1382475651 +96391,105805,hypocritical,1382475515 +96391,105805,interviews,1382475505 +96391,105805,Renzo Martens,1382475466 +96391,105805,subtitles,1382475535 +96412,1215,bruce campbell,1439814333 +96412,1215,campy,1439814355 +96412,1215,cult classic,1439814346 +96412,1215,horror,1439814340 +96412,1215,satirical,1439814337 +96412,110591,horror,1439814125 +96412,110591,suspenseful,1439814128 +96417,1962,racism,1143426667 +96436,1203,ensemble cast,1442902116 +96436,1203,good dialogue,1442902004 +96436,1203,group psychology,1442902106 +96436,1203,low budget,1442902118 +96436,1203,social commentary,1442902123 +96436,1203,thought-provoking,1442902108 +96436,3000,anime,1442906411 +96436,3000,atmospheric,1442906416 +96436,3000,dark,1442906422 +96436,3000,environmental,1442906409 +96436,3000,fantasy world,1442906418 +96436,3000,Hayao Miyazaki,1442906431 +96436,5618,alternate reality,1442906487 +96436,5618,atmospheric,1442906481 +96436,5618,fantasy,1442906479 +96436,5618,surreal,1442906483 +96436,5971,feel good movie,1442906439 +96436,7099,adventure,1442906369 +96436,7099,dystopic future,1442906363 +96436,7099,fantasy world,1442906367 +96436,7099,post-apocalyptic,1442906361 +96436,7099,sci-fi,1442906359 +96436,26662,feel-good,1442906346 +96436,26662,trains,1442906467 +96436,94959,quirky,1442912238 +96436,94959,Wes Anderson,1442912236 +96436,109487,plot holes,1442902155 +96436,109487,sci-fi,1442902139 +96436,109487,space,1442902137 +96436,109487,thought-provoking,1442902142 +96436,112552,good acting,1442902010 +96436,112552,J.K. Simmons,1442913246 +96436,112552,psychological,1442902014 +96436,112552,Teacher Student,1442902026 +96436,112552,Tense,1442902016 +96436,115713,philosophical,1442919614 +96436,115713,sci-fi,1442919611 +96436,115713,thought provoking,1442919613 +96440,260,drama,1432250428 +96440,260,space,1432250419 +96440,296,crime,1432278953 +96440,296,dark comedy,1432278953 +96440,296,drugs,1432278953 +96442,111,DeNiro,1159789188 +96443,208,apocalypse,1276947698 +96466,2862,erotic,1149086588 +96476,6503,super boring,1138510088 +96518,29,atmospheric,1245685038 +96518,29,dystopia,1245684937 +96518,29,sci-fi,1245684932 +96518,29,surreal,1245684944 +96518,170,cult film,1245685067 +96518,293,disturbing,1245685375 +96518,296,dark comedy,1245684874 +96518,296,nonlinear,1245684885 +96518,296,Quentin Tarantino,1245684895 +96518,904,Alfred Hitchcock,1245685334 +96518,904,classic,1245685337 +96518,904,imdb top 250,1245685346 +96518,1089,nonlinear,1245685595 +96518,1136,Monty Python,1245685492 +96518,1197,fairy tale,1245684903 +96518,1197,fantasy,1245684898 +96518,1210,sci-fi,1245684977 +96518,1210,space,1245685017 +96518,1222,Stanley Kubrick,1245685462 +96518,1243,quirky,1245686026 +96518,1243,Shakespeare,1245686032 +96518,1967,David Bowie,1245685058 +96518,2105,cyberpunk,1245684961 +96518,2105,dystopia,1245684969 +96518,2858,coming of age,1245685031 +96518,2858,dark comedy,1245684918 +96518,2858,surrealism,1245684914 +96518,2959,psychology,1245684952 +96518,4979,quirky,1245686605 +96518,4979,Wes Anderson,1245686632 +96518,5445,dystopia,1245684999 +96518,5618,Studio Ghibli,1245685531 +96518,44191,comic book,1245685076 +96518,44191,sci-fi,1245685082 +96518,55069,Golden Palm,1245686295 +96518,55269,dark comedy,1245686677 +96518,55269,India,1245686670 +96518,55269,trains,1245686679 +96518,55820,twist ending,1245685632 +96518,60069,post-apocalyptic,1245685358 +96518,63082,nonlinear,1245685525 +96518,63179,Michel Gondry,1245686647 +96518,66097,Surreal,1245685563 +96546,608,strong female,1448222432 +96546,608,violence,1448222411 +96546,96821,based on a book,1448222264 +96546,96821,Emma Watson,1448222251 +96546,104841,science,1448222531 +96546,104841,slow pace,1448222515 +96641,27611,cybernetic creatures,1447277636 +96641,27611,mythology,1447277631 +96641,27611,sci-fi,1447277601 +96641,54986,Bud Spencer & Terence Hill,1447277439 +96641,104013,Bud Spencer,1447277254 +96641,107477,Bud Spencer,1447277308 +96641,118189,Bud Spencer & Terence Hill,1447277485 +96641,139417,fantasy,1449505831 +96644,318,prison,1445603091 +96644,318,prison escape,1445603093 +96644,318,twist ending,1445603096 +96644,2959,dark comedy,1445167211 +96644,2959,psychology,1445167208 +96644,2959,twist ending,1445167196 +96644,59315,comic book,1445618931 +96644,59315,superhero,1445618923 +96644,119145,gentlemanly,1445182436 +96644,119145,spy,1445182432 +96644,119145,violent,1445182443 +96655,260,classic,1442551336 +96655,260,sci-fi,1442551309 +96721,296,comedy,1420996823 +96721,296,crime,1420996823 +96721,296,quentin tarantino,1420996823 +96721,356,bittersweet,1429295753 +96721,356,classic,1429295753 +96721,356,tom hanks,1429295753 +96728,260,classic sci-fi,1438036287 +96728,260,hero's journey,1438036301 +96731,349,clancy,1136777604 +96731,2700,saddam,1136777606 +96736,19,Jim Carrey,1240881292 +96736,125,Ben Stiller,1281450441 +96736,125,Patricia Arquette,1281450451 +96736,125,Téa Leoni,1281450428 +96736,296,drugs,1422322377 +96736,296,tarantino,1422322377 +96736,296,violence,1422322377 +96736,372,Winona Ryder,1267346837 +96736,539,Comedy,1243229028 +96736,539,Meg Ryan,1243229013 +96736,539,Tom Hanks,1243229007 +96736,593,franchise,1427214418 +96736,593,from novel,1427214418 +96736,593,thriller,1427214418 +96736,597,Comedy,1243228795 +96736,597,Julia Roberts,1243228782 +96736,597,pygmalion,1243228789 +96736,597,Richard Gere,1243228806 +96736,628,Edward Norton,1267428585 +96736,628,twist ending,1267428590 +96736,1080,Monty Python,1240881321 +96736,1080,satire,1240881489 +96736,1080,Terry Gilliam,1240881324 +96736,1092,Erotic Thriller,1243228705 +96736,1092,Michael Douglas,1243228746 +96736,1092,Sexualized violence,1243228737 +96736,1092,suspense,1243228720 +96736,1302,baseball,1267428281 +96736,1302,fantasy,1267428259 +96736,1457,Matthew Perry,1267345819 +96736,1457,Salma Hayek,1267345820 +96736,1608,Gary Oldman,1267344416 +96736,1608,Glenn Close,1267344411 +96736,1658,Danny Boyle,1240880743 +96736,1658,off-beat comedy,1240880753 +96736,1784,psychology,1267345141 +96736,1882,Hank Azaria,1267428130 +96736,1882,Roland Emmerich,1267428153 +96736,1882,sci-fi,1267428137 +96736,1916,The end of the solitude,1219297793 +96736,1918,Chris Rock,1250574267 +96736,1918,Leslie Neilsen,1250574261 +96736,2572,Joseph Gordon-Levitt,1259368570 +96736,2599,dark comedy,1267344292 +96736,2599,HIGH SCHOOL LIFE,1267344305 +96736,2671,British,1243228859 +96736,2671,Julia Roberts,1243228844 +96736,2671,library,1243228849 +96736,2671,romance,1243228864 +96736,2672,Vincent D'Onofrio,1252553821 +96736,2907,Molly Shannon,1267429567 +96736,3087,Bill Murray,1293638995 +96736,3175,Star Trek,1267345257 +96736,3275,dark humor,1267345591 +96736,3510,alternate reality,1312468299 +96736,3510,time travel,1312468295 +96736,3565,Ashley Judd,1267594585 +96736,3593,Forest Whitaker,1267428919 +96736,3727,vampires,1247855029 +96736,3784,Bruce Willis,1267346343 +96736,3784,time travel,1267346338 +96736,4015,aliens,1243313620 +96736,4015,comedy,1243313618 +96736,4015,Stoner Movie,1243313626 +96736,4247,David Spade,1267346266 +96736,4591,Monty Python,1243797775 +96736,5265,Danny DeVito,1310225989 +96736,5265,Edward Norton,1310225959 +96736,5265,Robin Williams,1310225987 +96736,5283,Nudity (Topless),1252797465 +96736,5283,Tara Reid,1252797460 +96736,5298,Charlie Kaufman,1243797656 +96736,5298,Michel Gondry,1243797639 +96736,5364,erotic,1267429338 +96736,5364,sensual,1267429341 +96736,5377,literary adaptation,1297896508 +96736,5516,Vincent Cassel,1267824952 +96736,5607,Campanella,1354101035 +96736,5675,Madonna,1256721399 +96736,5797,atmospheric,1294378517 +96736,5797,sexuality,1294378520 +96736,5944,franchise,1247300781 +96736,5944,Patrick Stewart,1247300771 +96736,5944,sci-fi,1247300763 +96736,5944,Star Trek,1247300751 +96736,6664,Good action,1267429289 +96736,6863,Jack Black,1240881543 +96736,6863,rock and roll,1240881550 +96736,6966,dark comedy,1267429273 +96736,7138,Police,1218764711 +96736,7445,Christopher Walken,1251617726 +96736,7445,revenge,1251617735 +96736,7564,ghost story,1280860845 +96736,8874,Simon Pegg,1268685429 +96736,8874,zombies,1268685447 +96736,26122,atmospheric,1249968831 +96736,27338,Thora Birch,1247111259 +96736,27788,Adrien Brody,1247111321 +96736,27788,weird love,1247111330 +96736,30812,biography,1240881827 +96736,30812,biopic,1240881833 +96736,30812,Jude Law,1240881852 +96736,30812,Leonardo DiCaprio,1240881823 +96736,30812,Martin Scorsese,1240881839 +96736,30812,true story,1240881858 +96736,31658,animation,1267345494 +96736,32598,sport:baseball?,1267429973 +96736,33880,Miranda July,1298697883 +96736,33893,Álex de la Iglesia,1271159583 +96736,34111,atheism,1247707236 +96736,34111,history,1247707239 +96736,34143,Jennifer Connelly,1267429930 +96736,34143,Tim Roth,1267429936 +96736,34540,ambition,1293342314 +96736,34540,Evan Rachel Wood,1293342302 +96736,34540,manipulation,1293342306 +96736,36708,animated,1218764799 +96736,36708,Comedy,1218764814 +96736,38538,Kristen Stewart,1243796488 +96736,38600,Charles Bukowski,1279600832 +96736,38600,Lili Taylor,1279600843 +96736,38600,Matt Dillon,1279600848 +96736,38600,writers,1279600855 +96736,39414,Claire Danes,1257866143 +96736,40581,Amy Smart,1256991856 +96736,40581,Anna Faris,1256991857 +96736,40851,based on a book,1243797496 +96736,40966,Biography,1286976597 +96736,40966,John Malkovich,1286976578 +96736,40966,johnny depp,1286976576 +96736,41569,Jack Black,1245210368 +96736,41569,Naomi Watts,1245210348 +96736,41569,Peter Jackson,1245210377 +96736,41569,remake,1245210355 +96736,41569,Saturn Award (Best Special Effects),1245210362 +96736,46974,Maggie Gyllenhaal,1267429869 +96736,48394,atmospheric,1240881284 +96736,48394,disturbing,1240881270 +96736,48394,sci-fi,1240881253 +96736,48560,Annette Bening,1252877732 +96736,48997,dustin hoffman,1258259626 +96736,50800,Kristen Stewart,1243797433 +96736,51847,twist ending,1267824613 +96736,54281,Robert Downey Jr.,1251269034 +96736,54503,friendship,1248334228 +96736,54503,high school,1248334243 +96736,54503,nerds,1248334232 +96736,54503,Seth Rogen,1248334238 +96736,54962,alternate reality,1245210763 +96736,55031,Kevin Smith,1270015065 +96736,55247,road trip,1267688951 +96736,55267,Juliette Binoche,1245209790 +96736,55267,WRITER'S LIFE,1245209807 +96736,55280,The end of the solitude,1219297833 +96736,56012,Kevin Smith,1272253850 +96736,57669,dark comedy,1247280028 +96736,58047,Isla Fisher,1247723312 +96736,58047,Rachel Weisz,1247723278 +96736,58162,Hank Azaria,1257524173 +96736,58347,Christina Ricci,1245210707 +96736,58347,fairy tale,1245210711 +96736,58998,Jason Segel,1264158222 +96736,58998,Kristen Bell,1264158244 +96736,58998,Mila Kunis,1264158234 +96736,60647,Ben Kingsley,1267346647 +96736,61729,Téa Leoni,1249802104 +96736,62155,Kat Dennings,1272253501 +96736,62376,based on a book,1245210810 +96736,62376,Bill Murray,1245210816 +96736,62849,Guy Ritchie,1267429843 +96736,63113,007 (series),1240881090 +96736,63113,spy,1240881099 +96736,64524,John Leguizamo,1256185684 +96736,64524,Luis Guzmán,1256185759 +96736,64969,Jim carrey,1245210664 +96736,64986,Ginnifer Goodwin,1246881726 +96736,65088,Adam Sandler,1245210853 +96736,65465,Dustin Hoffman,1245346023 +96736,65465,Emma Thompson,1245346025 +96736,65802,Kevin James,1245210879 +96736,65802,stupid,1245210882 +96736,66509,Adam Sandler,1258441038 +96736,66509,Leslie Mann,1258441043 +96736,67197,Alex Proyas,1245909464 +96736,67197,sci-fi,1245909470 +96736,67295,animation,1251617493 +96736,67295,Jack Black,1251617492 +96736,67695,Anna Faris,1249347306 +96736,67695,Seth Rogen,1249347295 +96736,67734,Kristen Stewart,1250491035 +96736,68073,Philip Seymour Hoffman,1251012373 +96736,68073,rock and roll,1251012361 +96736,68135,Matthew Perry,1247342597 +96736,68157,Brad Pitt,1259393750 +96736,68157,Quentin Tarantino,1259393751 +96736,68159,Rachel McAdams,1271911416 +96736,68237,dystopia,1262155448 +96736,68237,Kevin Spacey,1262155464 +96736,68237,Sam Rockwell,1262155443 +96736,68749,Jennifer Aniston,1251871133 +96736,68749,Woody Harrelson,1251871130 +96736,68952,cgi,1252220279 +96736,69251,Alternative realities,1245211082 +96736,69251,Michael Rapaport,1245211096 +96736,69253,Renee Zellweger,1245210627 +96736,69757,Joseph Gordon-Levitt,1258127347 +96736,69757,Zooey Deschanel,1258127343 +96736,70286,intelligent sci-fi,1252220036 +96736,70286,redemption,1252220043 +96736,70708,Maribel Verdú,1251617885 +96736,71033,Ricardo Darin,1271159500 +96736,71135,space,1259251356 +96736,71248,Ben Affleck,1260085045 +96736,71248,Mila Kunis,1260085048 +96736,71254,Michael C. Hall,1260769837 +96736,71254,sci-fi,1260769842 +96736,71264,Anna Faris,1261661959 +96736,71484,amazing animation,1300722223 +96736,71484,dystopia,1300722213 +96736,71518,Ellen Page,1264566559 +96736,71520,Tina Fey,1262500605 +96736,71535,Emma Stone,1257307816 +96736,71535,zombies,1257307824 +96736,71668,Jean Reno,1265657766 +96736,71668,Kristen Bell,1265657780 +96736,71745,based on a book,1261459956 +96736,71745,Soundtrack,1261459966 +96736,71838,revenge,1265171758 +96736,72226,based on a book,1270015024 +96736,72226,Willem Dafoe,1270015031 +96736,72731,Mark Wahlberg,1262934256 +96736,72731,Rachel Weisz,1262934246 +96736,72731,Stanley Tucci,1262934251 +96736,72762,Matt Dillon,1267474214 +96736,72998,sci-fi,1266046058 +96736,72998,visually stunning,1266046069 +96736,73023,Maggie Gyllenhaal,1266813448 +96736,73268,vampires,1266382277 +96736,73268,Willem Dafoe,1266382280 +96736,73319,Amy Adams,1273723021 +96736,73321,Gary Oldman,1270876893 +96736,73321,Mila Kunis,1270876881 +96736,74154,Danny DeVito,1278602943 +96736,74154,Josh Duhamel,1278602946 +96736,74452,Emily Blunt,1274593487 +96736,74458,Ben Kingsley,1269677715 +96736,74532,Bruce Willis,1272694867 +96736,74532,Kevin Smith,1272694857 +96736,74545,James Belushi,1281934996 +96736,74698,Seth MacFarlane,1267683449 +96736,74789,Helena Bonham Carter,1274912748 +96736,74916,Ben Stiller,1278602648 +96736,75813,Edward Norton,1270410320 +96736,75985,Forest Whitaker,1290933352 +96736,75985,twist ending,1290933358 +96736,76175,Liam Neeson,1278722049 +96736,76210,Kat Dennings,1272253433 +96736,76210,Woody Harrelson,1272253429 +96736,76251,action,1273470830 +96736,76251,funny,1273470828 +96736,76251,humorous,1273470827 +96736,76293,Mila Kunis,1275802211 +96736,76293,Tina Fey,1275802209 +96736,76317,Christina Ricci,1294545151 +96736,76317,Justin Long,1294545158 +96736,76317,LIam Neeson,1294545144 +96736,76317,severely metaphorical,1294545321 +96736,77561,bad science,1293036905 +96736,77561,Robert Downey Jr.,1293036898 +96736,77561,Scarlett Johansson,1293036899 +96736,77795,post-apocalyptic,1303319694 +96736,78041,Ashton Kutcher,1282144299 +96736,78209,great lines,1286207215 +96736,78467,John Malkovich,1287865445 +96736,79057,predator,1286207303 +96736,79091,mad scientist,1291615619 +96736,79428,Steve Carell,1293309807 +96736,79428,Zach Galifianakis,1293309811 +96736,79702,geeky,1290145793 +96736,79897,Bill Murray,1301465271 +96736,79897,Robert Duvall,1301465258 +96736,80219,Danny Trejo,1287282571 +96736,80241,Christina Applegate,1290088394 +96736,80489,action,1293689926 +96736,80549,funny dialogues,1302151550 +96736,80693,mental illness,1296098174 +96736,80858,Betty White,1294466592 +96736,80858,Kristen Bell,1294466584 +96736,81229,Bruce Willis,1292731005 +96736,81229,CIA comedy,1292731016 +96736,81229,John Malkovich,1292731003 +96736,81229,Richard Dreyfuss,1292731008 +96736,81537,road trip,1297662192 +96736,81537,Robert Downey Jr.,1297662198 +96736,81537,Zach Galifianakis,1297662203 +96736,81591,Darren Aronofsky,1294554198 +96736,81591,madness,1294554207 +96736,81591,Mila Kunis,1294554200 +96736,81782,Rosario Dawson,1294513371 +96736,81932,Christian Bale,1299614932 +96736,82378,Kirsten Dunst,1369924507 +96736,82378,Ryan Gosling,1369924503 +96736,82667,revenge,1304831275 +96736,84601,Liam Neeson,1307537397 +96736,85022,Owen Wilson,1306879207 +96736,85510,soundtrack,1308320871 +96736,87232,Kevin Bacon,1310226468 +96736,88405,Mila Kunis,1314455668 +96736,88405,Woody Harrelson,1314455688 +96736,89343,Kevin Smith,1318026381 +96736,89480,Emily Browning,1319426850 +96736,90405,immortality,1323091738 +96736,91500,based on a book,1344559108 +96736,93443,Alison Pill,1372473429 +96736,96567,books,1355583157 +96736,96751,Tim Roth,1355583425 +96736,97311,Olivia Wilde,1353456483 +96736,99117,Apatow,1360079548 +96736,99117,dialogue,1360079516 +96736,101864,dystopia,1382289079 +96736,101864,post-apocalyptic,1382289067 +96736,102123,apocalypse,1379917700 +96736,102123,hilarious,1379917706 +96736,102903,twist creates plot holes,1379917003 +96736,102903,Woody Harrelson,1379917010 +96736,103249,zombies,1371882841 +96736,103655,Jeff Bridges,1379917133 +96736,104241,John Leguizamo,1381634512 +96736,109895,Jason Bateman,1405305822 +96736,113345,awful script,1430059638 +96736,115170,Small Town,1422322453 +96736,120466,firsts questions,1432221506 +96736,132128,twist ending,1430231348 +96736,133383,thriller,1431304665 +96757,27820,great cinematography,1213422312 +96765,1,animation,1329527940 +96765,1,Pixar,1329527934 +96765,123,dreamlike,1345858774 +96765,123,stylized,1345858779 +96765,198,cyberpunk,1326238004 +96765,296,dark comedy,1322203101 +96765,541,cyberpunk,1318776464 +96765,541,dystopia,1318776466 +96765,541,future,1318776479 +96765,541,sci-fi,1318776473 +96765,1127,sci-fi,1338669359 +96765,1172,bittersweet,1336527531 +96765,1172,childhood,1336527537 +96765,1172,heartwarming,1336527540 +96765,1172,Italian,1336527533 +96765,1172,nostalgic,1310870411 +96765,1211,angel,1321840623 +96765,1211,dreamlike,1321840630 +96765,1211,meditative,1321840617 +96765,1211,poetic,1321840620 +96765,1234,con artists,1327072354 +96765,1234,great soundtrack,1327072349 +96765,1234,twist ending,1327072351 +96765,1237,phylosophycal,1310863966 +96765,1237,religion,1318776413 +96765,1243,metafiction,1363116207 +96765,1270,adventure,1318776535 +96765,1270,sci-fi,1318776532 +96765,1270,time travel,1318776530 +96765,1302,baseball,1318776208 +96765,1527,cinematography,1329366431 +96765,1527,dystopic future,1329366440 +96765,1527,futuristic,1329366433 +96765,1527,sci-fi,1329366424 +96765,1625,plot twist,1320080984 +96765,1625,twist ending,1320080989 +96765,1653,dystopia,1324137414 +96765,1653,sci-fi,1324137404 +96765,1653,thought-provoking,1324137442 +96765,1704,college,1323961865 +96765,1704,feel-good,1323961823 +96765,1748,dystopia,1328159908 +96765,1748,sci-fi,1328159905 +96765,1748,stylized,1328159986 +96765,1748,surreal,1328159981 +96765,1968,coming of age,1342927904 +96765,1968,great music,1342927914 +96765,1968,John Hughes,1342927916 +96765,2355,Pixar,1329539126 +96765,2424,New York City,1327510934 +96765,2427,atmospheric,1321721155 +96765,2427,cinematography,1321721171 +96765,2427,philosophical,1321721183 +96765,2427,reflective,1321721165 +96765,2571,cyberpunk,1326237973 +96765,2571,dystopia,1319980694 +96765,2571,philosophy,1319980698 +96765,2571,sci-fi,1319980696 +96765,2692,artistic,1318776316 +96765,2692,surreal,1318776318 +96765,2692,thought-provoking,1318776321 +96765,2692,time travel,1318776297 +96765,2692,whimsical,1318776332 +96765,2863,Beatles,1342927799 +96765,2863,british comedy,1342927802 +96765,2863,rock and roll,1342927804 +96765,2916,cyberpunk,1326238029 +96765,2918,fun,1326129229 +96765,2927,affectionate,1333918082 +96765,2927,bittersweet,1333918085 +96765,3022,Buster Keaton,1318823188 +96765,3022,comedy,1318823199 +96765,3022,trains,1318823186 +96765,3671,Highly quotable,1320822659 +96765,3671,parody,1320822655 +96765,3671,satirical,1320822651 +96765,3897,nostalgic,1323347533 +96765,3897,rock and roll,1323347517 +96765,4027,great soundtrack,1319789668 +96765,4103,Christian Bale,1321906835 +96765,4103,World War II,1321906838 +96765,4226,dreamlike,1322203062 +96765,4226,nonlinear,1322203059 +96765,4626,sci-fi,1329250672 +96765,4873,dreams,1318775972 +96765,4873,quirky,1318775967 +96765,4873,surreal,1318775963 +96765,4873,thought-provoking,1318775982 +96765,4973,beautifully filmed,1331523509 +96765,4973,feel-good,1331523506 +96765,4973,great soundtrack,1331523503 +96765,4973,quirky,1331523513 +96765,4973,surreal,1336527563 +96765,4973,whimsical,1336527565 +96765,5971,Studio Ghibli,1329586124 +96765,6370,college,1323961795 +96765,6377,animation,1329527783 +96765,6377,Pixar,1329527776 +96765,6385,coming of age,1330489770 +96765,7013,atmospheric,1324434002 +96765,7013,dreamlike,1324434003 +96765,7013,stylized,1324434016 +96765,7254,time travel,1324137390 +96765,7323,Berlin,1337106754 +96765,7323,East Germany,1337106756 +96765,7323,Germany,1337106819 +96765,7323,great soundtrack,1337106759 +96765,7323,The fall of the Berlin wall,1337106760 +96765,7767,beautiful,1336527492 +96765,7767,bittersweet,1336527494 +96765,7767,Italian,1336527489 +96765,7767,poignant,1336527499 +96765,7767,social commentary,1336527502 +96765,8010,race,1318776089 +96765,8638,dialogue,1319638546 +96765,8638,emotional,1319638568 +96765,8638,philosophical,1319638557 +96765,8638,quirky,1319638560 +96765,8874,british comedy,1319870187 +96765,8961,animation,1329539081 +96765,8961,Pixar,1329539074 +96765,8961,superhero,1329539092 +96765,27721,World War I,1323961706 +96765,31658,steampunk,1329586113 +96765,31658,Studio Ghibli,1329586112 +96765,33454,insanity,1322202830 +96765,34405,sci-fi,1340252176 +96765,44191,dystopia,1320523634 +96765,44191,social commentary,1320523628 +96765,44191,thought-provoking,1320523625 +96765,48738,Africa,1310863792 +96765,48738,Doctor,1310863803 +96765,48738,James McAvoy,1326386756 +96765,50872,animation,1329527915 +96765,50872,cooking,1329527913 +96765,50872,paris,1329527917 +96765,50872,pixar,1329527911 +96765,53000,zombies,1324137472 +96765,53519,great soundtrack,1331523438 +96765,53519,Quentin Tarantino,1331523433 +96765,55052,great cinematography,1320780576 +96765,55052,James McAvoy,1320780569 +96765,55247,freedom,1310870384 +96765,55247,great soundtrack,1331523486 +96765,55247,road movie,1318776572 +96765,55247,self discovery,1318776577 +96765,55247,traveling,1310870384 +96765,55269,trains,1310869524 +96765,55269,traveling,1310869524 +96765,57504,time travel,1322203029 +96765,59387,surreal,1363116313 +96765,60069,Animation,1329527899 +96765,60069,pixar,1329527804 +96765,60069,social commentary,1329527809 +96765,67267,funny,1330915911 +96765,67267,quirky,1330915920 +96765,67267,witty,1330915908 +96765,67734,nostalgic,1323295011 +96765,68157,Michael Fassbender,1329249487 +96765,68157,Quentin Tarantino,1329249492 +96765,68157,visually appealing,1329249537 +96765,68157,World War II,1329249499 +96765,72714,enlightening,1322162972 +96765,79132,alternate reality,1318776065 +96765,79132,drams,1310870313 +96765,79132,dreamlike,1318776039 +96765,79132,thought-provoking,1318776067 +96765,87232,adapted from:comic,1329249626 +96765,87232,James McAvoy,1329249596 +96765,87232,Michael Fassbender,1329249611 +96765,88129,atmospheric,1337696983 +96765,88129,car chase,1337697009 +96765,88129,cars,1337697006 +96765,88129,cinematography,1337696985 +96765,88299,ecology,1322932454 +96765,88299,social commentary,1322932445 +96765,90405,scifi re aging,1320469692 +96765,90746,comic book,1325103393 +96765,91500,based on a book,1332711134 +96765,92420,clever,1330749357 +96765,92420,sci-fi,1330749356 +96765,94864,Michael Fassbender,1339299382 +96765,94864,scifi,1339299386 +96796,104,Underdog,1424217973 +96796,356,human stories,1424218532 +96796,356,inspirational,1424218532 +96796,356,underdog,1424218532 +96796,524,football,1424217383 +96796,524,inspirational,1424217381 +96796,524,Underdog,1424217378 +96796,852,golf,1424217295 +96796,852,Underdog,1424217292 +96796,1005,Underdog,1424218175 +96796,1100,racing,1424217202 +96796,1100,Underdog,1424217198 +96796,1101,Aerospace,1424218242 +96796,1101,aviation,1424218239 +96796,1231,Aerospace,1424217062 +96796,1231,astronauts,1424217054 +96796,1231,NASA,1424217043 +96796,1231,space,1424217046 +96796,1231,space program,1424217049 +96796,1231,US history,1424217052 +96796,1246,boarding school,1424217996 +96796,1246,inspirational,1424218002 +96796,1246,school,1424218011 +96796,1257,geeks,1424216783 +96796,1257,quirky,1424216774 +96796,1257,Underdog,1424216758 +96796,1297,college,1424216856 +96796,1297,Geeks,1424216836 +96796,1297,nerds,1424216860 +96796,1297,science,1424216848 +96796,2042,Underdog,1424218158 +96796,2082,inspirational,1424218145 +96796,2082,Underdogs,1424218140 +96796,2261,Geeks,1424216815 +96796,2261,Quirky,1424216812 +96796,2261,Underdog,1424216751 +96796,2371,comedy,1424217946 +96796,2501,science,1424216967 +96796,2501,space,1424216973 +96796,2501,Underdog,1424216963 +96796,2815,Aerospace,1424218200 +96796,3120,Political Satire,1424217917 +96796,4221,College,1424217727 +96796,4221,Football,1424217730 +96796,4221,Underdog,1424217725 +96796,5246,Road Trip,1424217873 +96796,5247,Road Trip,1424217813 +96796,5248,Road Trip,1424217866 +96796,6565,horse racing,1424217247 +96796,6565,inspirational,1424217244 +96796,6565,Underdog,1424217239 +96796,7016,Underdog,1424218289 +96796,86882,quirky,1424217344 +96796,86882,whimsical,1424217332 +96796,86882,witty,1424217342 +96804,112552,passion,1429347541 +96804,112552,psychological,1429347541 +96804,112552,suspense,1429347541 +96805,318,classic,1429860681 +96805,318,power of belief,1429860681 +96805,318,realism,1429860681 +96805,109487,Christopher Nolan,1429861557 +96805,109487,Masterpiece,1429861565 +96805,109487,sci-fi,1429861552 +96808,2819,skullduggery,1188441420 +96808,51540,bad ending,1192990133 +96813,1663,Bill Murray,1189406862 +96813,42725,marijuana,1189406850 +96813,42725,stoner,1189406832 +96813,52245,Will Ferrell,1189406843 +96820,495,Art,1168005344 +96820,495,Japanese,1168005352 +96839,260,sci-fi,1431995185 +96839,260,space,1431995202 +96839,112552,drama,1431995371 +96839,112552,music,1431995371 +96839,112552,music teacher,1431995371 +96884,1,adventure,1277357423 +96884,1,animated,1277357419 +96884,1,animation,1277357417 +96884,1,clever,1277357438 +96884,1,comedy,1277357433 +96884,1,computer animation,1277357405 +96884,1,family,1277357449 +96884,1,fantasy,1277357430 +96884,1,Tom Hanks,1277357411 +96884,6,Al Pacino,1366237273 +96884,6,bank robbery,1366237228 +96884,6,crime,1366237302 +96884,6,dialogue,1366237346 +96884,6,gunfight,1366237282 +96884,6,long,1366237233 +96884,6,Los Angeles,1366237289 +96884,6,police,1366237309 +96884,6,Robert De Niro,1366237270 +96884,6,tense,1366237253 +96884,6,Val Kilmer,1366237264 +96884,23,Antonio Banderas,1287640903 +96884,23,Sylvester Stallone,1287640895 +96884,23,Wachowski Brothers,1287640935 +96884,47,atmospheric,1348107544 +96884,47,bad ending,1348107659 +96884,47,Brad Pitt,1348107540 +96884,47,disturbing,1348107525 +96884,47,drama,1348107557 +96884,47,Morgan Freeman,1348107537 +96884,47,murder,1348107630 +96884,47,police,1348107534 +96884,47,powerful ending,1348107507 +96884,47,religion,1348107530 +96884,47,twist ending,1348107604 +96884,47,twists & turns,1348107608 +96884,47,violent,1348107612 +96884,48,1600s,1315717630 +96884,48,animation,1315717648 +96884,48,interracial romance,1315717607 +96884,48,musical,1315717585 +96884,48,too short,1315717597 +96884,110,joseph campbell's study of mythology influenced,1241155145 +96884,157,Michael Moore,1241741385 +96884,157,sarcasm,1241741390 +96884,196,aliens,1306348627 +96884,196,lame plot,1306348635 +96884,196,Nudity (Topless - Notable),1306348619 +96884,196,Nudity (Topless),1306348621 +96884,196,Pregnancy,1306348633 +96884,196,shape shifter,1306348629 +96884,235,b&w,1322080039 +96884,235,Bill Murray,1322076536 +96884,235,Biography,1322076538 +96884,235,Biopic,1322076541 +96884,235,black and white,1322076558 +96884,235,cross dressing,1322076554 +96884,235,Johnny Depp,1322076527 +96884,235,Lisa Marie,1322080015 +96884,235,Martin Landau,1322076618 +96884,235,movie business,1322076514 +96884,235,Patricia Arquette,1322079995 +96884,235,Sarah Jessica Parker,1322076522 +96884,235,true story,1322076572 +96884,246,basketball,1421540008 +96884,246,Chicago,1421540003 +96884,246,Documentary,1421539998 +96884,246,high school,1421540001 +96884,246,social commentary,1421539990 +96884,246,sports,1421540006 +96884,256,Arnold Schwarzenegger,1279854572 +96884,256,bizarre,1279854609 +96884,256,Danny DeVito,1279854578 +96884,256,Emma Thompson,1279854637 +96884,256,experiment,1279854591 +96884,256,pregnant man,1279854581 +96884,260,adventure,1242074059 +96884,260,aliens,1242074142 +96884,260,bast background universe,1241154075 +96884,260,BGM performed by orchesta,1242074174 +96884,260,complex script,1241154075 +96884,260,fantasy,1242074051 +96884,260,fast plot development,1241154075 +96884,260,George Lucas,1242074218 +96884,260,Harrison Ford,1242074104 +96884,260,John Williams music,1242074199 +96884,260,mystic warriors,1241154075 +96884,260,old FX quality,1241154075 +96884,260,original plot,1241154075 +96884,260,robots,1242074122 +96884,260,sci-fi,1242074111 +96884,260,space,1242074133 +96884,260,starship pilots,1241154075 +96884,267,children,1266299052 +96884,267,comedy,1266299058 +96884,267,military,1266299062 +96884,293,Action,1329541959 +96884,293,assassin,1329541965 +96884,293,assassination,1329541973 +96884,293,corruption,1329541975 +96884,293,crime,1329541977 +96884,293,drama,1329541979 +96884,293,friendship,1329541982 +96884,293,great acting,1329541984 +96884,293,hitman,1329541986 +96884,293,humorous,1329541989 +96884,293,Jean Reno,1329541992 +96884,293,love story,1329542008 +96884,293,Natalie Portman,1329541997 +96884,293,organized crime,1329542000 +96884,293,police,1329542001 +96884,293,police corruption,1329542003 +96884,355,animation remade as live action,1398837059 +96884,355,dinosaur,1398837055 +96884,364,joseph campbell's study of mythology influenced,1241154764 +96884,508,AIDs,1408507134 +96884,508,courtroom,1408507131 +96884,508,death,1408507078 +96884,508,Denzel Washington,1408507067 +96884,508,Exceptional Acting,1408507082 +96884,508,homosexuality,1408507085 +96884,508,lawyers,1408507088 +96884,508,sad,1408507073 +96884,589,androids,1241149929 +96884,589,apocalypse,1241149929 +96884,589,classic,1241150003 +96884,589,complex script,1241152204 +96884,589,computers,1241149975 +96884,589,cyborgs,1241149964 +96884,589,END OF THE WORLD,1241149934 +96884,589,future,1241149942 +96884,589,narrated,1241149962 +96884,589,nuclear war,1241149956 +96884,589,original plot,1241153264 +96884,589,robots,1241149944 +96884,589,sci-fi,1241149970 +96884,589,time travel,1241149952 +96884,620,Argentina,1257289568 +96884,620,cliffhanger,1257289541 +96884,620,climbing,1257289469 +96884,620,excelent shots,1257289626 +96884,620,great landscapes,1257289646 +96884,620,mountain climbing,1257289431 +96884,620,mountain man,1257289431 +96884,620,mountains,1257289441 +96884,620,patagonia,1257289560 +96884,673,animation & live action interact,1398837008 +96884,673,bill murray,1398837002 +96884,673,michael jordan,1398837000 +96884,673,toons,1398837026 +96884,741,2D/3D hybrid Animation,1386259902 +96884,741,anime,1386259904 +96884,741,artificial intelligence,1386259907 +96884,741,complex,1386259896 +96884,741,cyberpunk,1386259881 +96884,741,cyborgs,1386259892 +96884,741,Japan,1386259916 +96884,741,philosophical,1386259884 +96884,741,sci-fi,1386259918 +96884,778,few things happen,1421642448 +96884,778,Nudity (Full Frontal - Notable),1421642405 +96884,778,social commentary,1421642429 +96884,784,Comedy,1317100960 +96884,784,Jim Carrey,1317100901 +96884,784,underrated,1317100955 +96884,798,ok,1339194940 +96884,798,suspense,1339194943 +96884,919,based on a book,1241156439 +96884,919,black and white,1241156462 +96884,919,classic,1241156428 +96884,919,dreamlike,1241156446 +96884,919,fantasy,1241156449 +96884,919,musical,1241156421 +96884,1029,bullying,1398836977 +96884,1029,power of belief,1398836970 +96884,1080,ironic,1385176778 +96884,1080,sarcasm,1385176778 +96884,1196,bast background universe,1241153728 +96884,1196,complex script,1241153728 +96884,1196,joseph campbell's study of mythology influenced,1241154818 +96884,1196,mystic warriors,1241153728 +96884,1196,original plot,1241153728 +96884,1196,starship pilots,1241153728 +96884,1197,fairy tale,1368592847 +96884,1197,fantasy,1368592849 +96884,1197,humorous,1368592942 +96884,1197,medieval,1368592905 +96884,1197,revenge,1368592934 +96884,1197,romance,1368592925 +96884,1197,sword fight,1368592844 +96884,1198,joseph campbell's study of mythology influenced,1241154926 +96884,1208,surreal,1398837529 +96884,1210,bast background universe,1241153719 +96884,1210,complex script,1241153719 +96884,1210,joseph campbell's study of mythology influenced,1241154821 +96884,1210,mystic warriors,1241153144 +96884,1210,original plot,1241153719 +96884,1210,starship pilots,1241153182 +96884,1213,biography,1287303678 +96884,1213,drama,1287303693 +96884,1213,good direction,1287303737 +96884,1213,mafia,1287303702 +96884,1213,Martin Scorsese,1287303704 +96884,1213,narrated,1287303682 +96884,1213,organized crime,1287303700 +96884,1213,Robert De Niro,1287303714 +96884,1213,violent,1287303686 +96884,1215,anti-hero,1258316355 +96884,1215,bad action,1258316525 +96884,1215,bad fx,1258316500 +96884,1215,boring,1258316488 +96884,1215,cheap,1258316513 +96884,1215,demons,1258316359 +96884,1215,england,1258316356 +96884,1215,fantasy,1258316363 +96884,1215,few funny scenes,1258316545 +96884,1215,foolish,1258316677 +96884,1215,ridiculous,1258316677 +96884,1215,time travel,1258316377 +96884,1215,undead,1258316355 +96884,1215,zombie,1258316316 +96884,1265,alternate reality,1257652575 +96884,1265,alternate universe,1257652571 +96884,1265,Bill Murray,1257652568 +96884,1265,existentialism,1257652581 +96884,1265,Fantasy,1257652583 +96884,1265,funny,1257652577 +96884,1265,hilarious,1257652585 +96884,1265,humorous,1257652590 +96884,1265,love,1257652593 +96884,1265,original plot,1257652597 +96884,1265,romance,1257652603 +96884,1265,romantic,1257652608 +96884,1265,small town,1257652611 +96884,1265,time loop,1257652599 +96884,1265,time travel,1257652601 +96884,1275,camerawork,1336676794 +96884,1275,clans,1336676768 +96884,1275,fighting,1336676723 +96884,1275,immortality,1336676699 +96884,1275,immortals,1336676738 +96884,1275,Nudity (Topless - Brief),1336676726 +96884,1275,Queen,1336676702 +96884,1275,screenplay,1336676794 +96884,1275,sword fighting,1336676729 +96884,1275,swords,1336676734 +96884,1291,joseph campbell's study of mythology influenced,1241154937 +96884,1387,ocean,1398837498 +96884,1387,shark,1398837510 +96884,1387,suspenseful,1398837478 +96884,1387,tense,1398837502 +96884,1393,Cuba Gooding Jr.,1249081874 +96884,1393,football,1249082012 +96884,1393,happy ending,1249082185 +96884,1393,Oscar Winner,1249081894 +96884,1393,Renee Zellweger,1249082259 +96884,1393,sports,1249081905 +96884,1393,Tom Cruise,1249081879 +96884,1405,adapted from:TV series,1398836949 +96884,1405,animated,1398836867 +96884,1405,funny,1398836937 +96884,1405,immature,1398836876 +96884,1405,stupidity,1398836871 +96884,1408,adapted from:book,1366237743 +96884,1408,Adventure,1366237666 +96884,1408,based on a book,1366237735 +96884,1408,cinematography,1366237606 +96884,1408,excellent historical depiction,1366237722 +96884,1408,great soundtrack,1366237632 +96884,1408,Hawkeye,1366237796 +96884,1408,tribal,1366237866 +96884,1431,Chris Farley,1247891062 +96884,1431,comedy for kids,1247892429 +96884,1431,ninja,1247891065 +96884,1431,parody,1247892406 +96884,1587,action,1279913567 +96884,1587,adventure,1279913571 +96884,1587,Arnold Schwarzenegger,1279913575 +96884,1587,Barbarian,1279913578 +96884,1587,blood,1279913581 +96884,1587,brutality,1279913584 +96884,1587,epic,1279913658 +96884,1587,Fantasy,1279913589 +96884,1587,fighting,1279913594 +96884,1587,landscape,1279913644 +96884,1587,Nudity (Topless),1279913599 +96884,1587,scenic,1279913627 +96884,1587,science fiction,1279913603 +96884,1587,sword and sorcery,1279913607 +96884,1587,swords,1279913612 +96884,1619,based on a book,1257400131 +96884,1619,Biography,1257400091 +96884,1619,Brad Pitt,1257400136 +96884,1619,Buddhism,1257400127 +96884,1619,China,1257400150 +96884,1619,colonialism,1257400096 +96884,1619,Eastern philosophy,1257400098 +96884,1619,historical,1257400104 +96884,1619,mountain climbing,1257400123 +96884,1619,mountains,1257400120 +96884,1619,scenic,1257400107 +96884,1619,Tibet,1257400113 +96884,1619,true story,1257400116 +96884,1619,wartime,1257400117 +96884,1625,Michael Douglas,1284408227 +96884,1625,Mystery,1284408226 +96884,1625,psychological,1284408224 +96884,1625,the twists in the plot,1284408290 +96884,1625,thriller,1284408293 +96884,1625,twist ending,1284408219 +96884,1625,unrealistic,1284408295 +96884,1653,biology,1255841343 +96884,1653,distopia,1255841339 +96884,1653,dystopia,1255841332 +96884,1653,dystopic future,1255841331 +96884,1653,future,1255841334 +96884,1653,genetic engineering,1255841400 +96884,1653,genetic selection,1255841365 +96884,1653,genetics,1255841370 +96884,1653,powerful ending,1255841354 +96884,1653,realistic sci/fi,1255841348 +96884,1653,rebellion,1255841383 +96884,1653,sci-fi,1255841566 +96884,1653,space travel,1255841359 +96884,1653,survellience,1255841406 +96884,1653,Uma Thurman,1255841327 +96884,1672,acting,1272930955 +96884,1672,attorney,1272931254 +96884,1672,based on a book,1272930895 +96884,1672,company,1272931294 +96884,1672,Danny DeVito,1272930883 +96884,1672,Danny Glover,1272931184 +96884,1672,Francis Ford Coppola,1272930888 +96884,1672,Good ending,1272931212 +96884,1672,insurance,1272931290 +96884,1672,John Grisham,1272930892 +96884,1672,judge,1272931265 +96884,1672,justice,1272931205 +96884,1672,law,1272931309 +96884,1672,Matt Damon,1272930921 +96884,1704,college,1398833772 +96884,1704,excellent script,1398833775 +96884,1704,friendship relations,1398833765 +96884,1704,heartwarming,1398833761 +96884,1704,intellectual,1398833822 +96884,1704,math,1398833738 +96884,1704,mathematics,1398833757 +96884,1704,psychology,1398833801 +96884,1704,Robin Williams,1398833753 +96884,1704,school drama,1398833807 +96884,1748,aliens,1252557024 +96884,1748,atmospheric,1252557044 +96884,1748,dark,1252557048 +96884,1748,dreamlike,1252557052 +96884,1748,dystopia,1252557022 +96884,1748,fantasy,1252557040 +96884,1748,few action scenes,1252557153 +96884,1748,Jennifer Connelly,1252557115 +96884,1748,memory,1252557082 +96884,1748,metaphorical,1252557037 +96884,1748,Nudity (Topless),1252557017 +96884,1748,Post apocalyptic,1245198614 +96884,1748,sci-fi,1245198609 +96884,1748,steampunk,1252557077 +96884,1748,thought-provoking,1252557029 +96884,1858,Jackie Chan,1297553431 +96884,1858,kung fu,1297553428 +96884,1876,apocalypse,1306348479 +96884,1876,astronomy,1306348476 +96884,1876,catastrophe,1306348481 +96884,1876,comet,1306348485 +96884,1876,disaster,1306348490 +96884,1876,Elijah Wood,1306348493 +96884,1876,Morgan Freeman,1306348496 +96884,1876,natural disaster,1306348457 +96884,1876,sci-fi,1306348466 +96884,1876,science,1306348460 +96884,1876,space,1306348469 +96884,1876,world end,1306348503 +96884,1923,Ben Stiller,1252819795 +96884,1923,Cameron Diaz,1252819798 +96884,1923,comedy,1252819841 +96884,1923,Overrated,1252819790 +96884,1961,autism,1405226986 +96884,1961,disability,1405226997 +96884,1961,heartwarming,1405226994 +96884,1961,mental illness,1405226995 +96884,1961,road movie,1405226969 +96884,1961,road trip,1405226972 +96884,2006,Nudity (Topless - Brief),1328548816 +96884,2023,Al Pacino,1287641041 +96884,2023,Andy Garcia,1287641045 +96884,2023,bad ending,1287641103 +96884,2023,corruption,1287641086 +96884,2023,drama,1287641030 +96884,2023,Francis Ford Coppola,1287641170 +96884,2023,gangsters,1287641055 +96884,2023,italian,1287641062 +96884,2023,mafia,1287641013 +96884,2023,organized crime,1287641025 +96884,2023,politics,1287641086 +96884,2064,american idiocy,1268677725 +96884,2064,business,1268677713 +96884,2064,capitalism,1268677693 +96884,2064,cars,1268677683 +96884,2064,corporate America,1268677711 +96884,2064,directorial debut,1268677745 +96884,2064,documentary,1268677686 +96884,2064,documentary critique,1268677688 +96884,2064,Flint,1268677767 +96884,2064,GM,1268677776 +96884,2064,Michael Moore,1268677705 +96884,2064,Michigan,1268677702 +96884,2064,politics,1268677698 +96884,2064,workers,1268677703 +96884,2105,alternate reality,1419105630 +96884,2105,computer animation,1419105638 +96884,2105,no sense,1419105697 +96884,2105,original plot,1241153279 +96884,2105,plot holes,1419105699 +96884,2105,poor dialogues,1419105687 +96884,2105,sci-fi,1419105644 +96884,2115,joseph campbell's study of mythology influenced,1241154930 +96884,2134,comedy,1283020911 +96884,2134,high school,1283020886 +96884,2134,Kelly LeBrock,1283020903 +96884,2134,nerds,1283020882 +96884,2134,Nudity (Topless - Brief),1283020879 +96884,2134,teen,1283020875 +96884,2142,adventure,1282447987 +96884,2142,animation,1282447982 +96884,2142,comedy,1282447982 +96884,2142,mice,1282447982 +96884,2142,western,1282447982 +96884,2167,comic book,1260304912 +96884,2167,effects,1260304894 +96884,2167,Marvel,1260304892 +96884,2167,vampire,1260304881 +96884,2167,vampires,1260304883 +96884,2167,Wesley Snipes,1260304888 +96884,2294,anti-war,1398837112 +96884,2294,capitalism,1398837117 +96884,2294,dark undertones,1398837121 +96884,2297,afterlife,1271544147 +96884,2297,alternate reality,1271544138 +96884,2297,based on a book,1271544132 +96884,2297,Cuba Gooding Jr.,1271544200 +96884,2297,good cinematography,1271544120 +96884,2297,good story,1271544156 +96884,2297,heaven,1271544136 +96884,2297,love,1271544536 +96884,2297,love story,1271544536 +96884,2297,philosophy,1271544166 +96884,2297,Robin Williams,1271544171 +96884,2297,scenic,1271544149 +96884,2297,suicide,1271544160 +96884,2297,surreal,1271544164 +96884,2325,comedy,1291357234 +96884,2325,Mormon,1291357256 +96884,2325,pornography,1291357240 +96884,2325,religion,1291357246 +96884,2325,satire,1291357244 +96884,2353,computers science,1369891607 +96884,2353,corruption,1369891547 +96884,2353,espionage,1369891541 +96884,2353,hackers,1369891561 +96884,2353,spying,1369891536 +96884,2353,technology fail,1369891591 +96884,2353,Will Smith,1369891531 +96884,2402,action,1293558730 +96884,2402,archery,1293558687 +96884,2402,Bad direction,1293558758 +96884,2402,camp,1293558714 +96884,2402,jungle,1293558721 +96884,2402,loyalty vs. betrayal,1293558701 +96884,2402,Sylvester Stallone,1293558692 +96884,2402,torture,1293558724 +96884,2403,action,1293558611 +96884,2403,bad cop,1293558796 +96884,2403,post-traumatic stress disorder,1293558617 +96884,2403,Silvester Stallone,1293558622 +96884,2403,small town,1293558778 +96884,2403,social commentary,1293558781 +96884,2403,special forces,1293558789 +96884,2403,Sylvester Stallone,1293558771 +96884,2403,Vietnam war veteran,1293558783 +96884,2403,war hero,1293558786 +96884,2404,action,1293601110 +96884,2404,adventure,1293601112 +96884,2404,afghanistan,1293601129 +96884,2404,archery,1293601316 +96884,2404,holy war,1293601288 +96884,2404,Muyahidin,1293601296 +96884,2404,Rambo,1293601401 +96884,2404,soldiers,1293601331 +96884,2404,Sylvester Stallone,1293601368 +96884,2404,war,1293601107 +96884,2404,warriors,1293601310 +96884,2407,aliens,1398837280 +96884,2407,old age,1398837334 +96884,2407,old people,1398837329 +96884,2411,action,1315885804 +96884,2411,audience intelligence underestimated,1315885697 +96884,2411,bad technology,1315885652 +96884,2411,boxing,1315885571 +96884,2411,competitive sport,1315885682 +96884,2411,music,1315885631 +96884,2411,nationalism,1315885770 +96884,2411,soundtrack,1315885749 +96884,2411,sports,1315885686 +96884,2411,Sylvester Stallone,1315885675 +96884,2411,training montage,1315885668 +96884,2411,unintentionally funny,1315885670 +96884,2412,action,1316925878 +96884,2412,betrayal,1316925821 +96884,2412,box,1316925847 +96884,2412,boxing,1316925853 +96884,2412,drama,1316925823 +96884,2412,fighting,1316925826 +96884,2412,good plot,1316925811 +96884,2412,sport:boxing,1316925858 +96884,2412,sports,1316925842 +96884,2420,childish,1299725819 +96884,2420,inspirational,1299725771 +96884,2420,martial arts,1299725717 +96884,2420,Pat Morita,1299725709 +96884,2421,childish,1299725808 +96884,2421,inspirational,1299725783 +96884,2421,japan,1299725673 +96884,2421,martial arts,1299725676 +96884,2421,Pat Morita,1299725691 +96884,2431,based on a true story,1283318344 +96884,2431,doctor,1283350420 +96884,2431,documentary,1283350354 +96884,2431,humanity,1283350447 +96884,2431,love,1283350459 +96884,2431,medschool,1283350412 +96884,2431,Robin Williams,1283318353 +96884,2431,true story,1283318349 +96884,2502,business,1344274436 +96884,2502,corporate America,1344274438 +96884,2502,Jennifer Aniston,1344274424 +96884,2502,office,1344274427 +96884,2502,rebellion,1344274422 +96884,2502,revenge,1344274420 +96884,2502,technology,1344274417 +96884,2502,workplace,1344274414 +96884,2529,bad acting,1367640413 +96884,2529,Charlton Heston,1367640391 +96884,2529,dystopia,1367640367 +96884,2529,far future,1367640387 +96884,2529,forceful,1367640404 +96884,2529,science fiction,1367640359 +96884,2529,social commentary,1367640360 +96884,2529,visually appealing,1367640363 +96884,2530,bad plot,1406347684 +96884,2530,bad sound mix,1406347652 +96884,2530,BAD special effects,1406347735 +96884,2530,concept,1406347674 +96884,2530,doomsday,1406347753 +96884,2530,makeup effects,1406347698 +96884,2530,post-apocalyptic,1406347746 +96884,2530,social commentary,1406347750 +96884,2542,British,1384493134 +96884,2542,dark comedy,1384493097 +96884,2542,multiple storylines,1384493119 +96884,2542,Nudity (Topless),1384493125 +96884,2542,organized crime,1384493113 +96884,2542,slow paced,1384493155 +96884,2571,joseph campbell's study of mythology influenced,1241154775 +96884,2579,black and white,1419653116 +96884,2579,Christopher Nolan,1419653154 +96884,2579,not linear,1419653141 +96884,2579,Twist Ending,1419653136 +96884,2628,action,1279346973 +96884,2628,adventure,1279346971 +96884,2628,bast background universe,1241153755 +96884,2628,complex script,1241153755 +96884,2628,desert,1279346977 +96884,2628,Ewan McGregor,1279346968 +96884,2628,fantasy,1279346963 +96884,2628,joseph campbell's study of mythology influenced,1241154797 +96884,2628,Liam Neeson,1279346979 +96884,2628,mystic warriors,1241153755 +96884,2628,Natalie Portman,1279347171 +96884,2628,original plot,1241153755 +96884,2628,robots,1279346987 +96884,2628,Samuel L. Jackson,1279346982 +96884,2628,sci-fi,1279346994 +96884,2628,sequel,1279347006 +96884,2628,space,1279347000 +96884,2628,Star Wars,1279346996 +96884,2628,starship pilots,1241153755 +96884,2640,aliens,1253140592 +96884,2640,bad physics,1253140707 +96884,2640,comic book,1253140539 +96884,2640,DC Comics,1253140540 +96884,2640,double life,1253140536 +96884,2640,fantasy,1253140542 +96884,2640,franchise,1253140544 +96884,2640,nonsense nationalism,1253389039 +96884,2640,physics fail,1253140719 +96884,2640,plot holes,1253140615 +96884,2640,sci-fi,1253140599 +96884,2640,super-hero,1253140583 +96884,2640,superhero,1253140585 +96884,2640,unrealistic physics,1253140693 +96884,2641,Action,1253388734 +96884,2641,adapted from:comic,1253388750 +96884,2641,aliens,1253388728 +96884,2641,alter ego,1253388731 +96884,2641,bad physics,1253389096 +96884,2641,based on a comic,1253388711 +96884,2641,childish plot,1253388839 +96884,2641,Christopher Reeve,1253388747 +96884,2641,comic book,1253388714 +96884,2641,DC,1253388758 +96884,2641,DC Comics,1253388761 +96884,2641,double life,1253388742 +96884,2641,nonsense nationalism,1253389000 +96884,2641,physics fail,1253389096 +96884,2641,plot fails,1253388797 +96884,2641,plot holes,1253388786 +96884,2641,sci-fi,1253388718 +96884,2641,super-hero,1253388716 +96884,2641,unrealistic physics,1253389096 +96884,2642,alter ego,1258316772 +96884,2642,bad acting,1258316897 +96884,2642,bad plot,1258316882 +96884,2642,bad science,1258316874 +96884,2642,bad script,1258316876 +96884,2642,bad technology,1258316893 +96884,2642,Christopher Reeve,1258316737 +96884,2642,comic book,1258316732 +96884,2642,computers,1258316947 +96884,2642,DC Comics,1258316910 +96884,2642,double life,1258316753 +96884,2642,foolish,1258316862 +96884,2642,ridiculous,1258316862 +96884,2642,scientific fiction,1258316776 +96884,2643,alter ego,1262630781 +96884,2643,atrocius direction,1262631074 +96884,2643,Bad direction,1262630909 +96884,2643,bad physics,1262630809 +96884,2643,bad plot,1262630873 +96884,2643,bad science,1262630817 +96884,2643,based on a comic,1262630774 +96884,2643,Christopher Reeve,1262630791 +96884,2643,DC,1262630788 +96884,2643,DC Comics,1262630784 +96884,2643,double life,1262630717 +96884,2643,good idea,1262630870 +96884,2643,nuclear weapons,1262630744 +96884,2643,physics fail,1262630831 +96884,2643,plot holes,1262630942 +96884,2643,super villain,1262630748 +96884,2643,super-hero,1262630751 +96884,2643,superhero,1262630762 +96884,2643,superpowers,1262630897 +96884,2694,Adam Sandler,1247345812 +96884,2700,acid humor,1241321799 +96884,2700,adult humor,1241321857 +96884,2700,crude humor,1241321865 +96884,2700,free speech,1241321871 +96884,2700,musical,1241321799 +96884,2700,sarcasm,1241321799 +96884,2700,south park,1241321883 +96884,2701,Nudity (Rear),1398837143 +96884,2701,Salma Hayek,1398837188 +96884,2701,sci-fi,1398837147 +96884,2701,steampunk,1398837175 +96884,2701,subgenre:cop buddies,1398837179 +96884,2731,bad plot,1319254223 +96884,2731,black and white,1319254184 +96884,2731,direction,1319254228 +96884,2731,France,1319254252 +96884,2731,plot,1319254219 +96884,2791,absurd,1274916421 +96884,2791,aviation,1274916407 +96884,2791,comedy,1274916397 +96884,2791,dumb but funny,1274916402 +96884,2791,flying,1274916413 +96884,2791,Leslie Nielsen,1274916387 +96884,2791,Nudity (Topless - Brief),1274916394 +96884,2791,Parody,1274916389 +96884,2791,silly,1274916480 +96884,2810,anime,1406163868 +96884,2810,cult of persona,1406163874 +96884,2810,scene transitions,1406163967 +96884,2810,stalker,1406163887 +96884,2916,Arnold Schwarzenegger,1241152830 +96884,2916,complex script,1241152193 +96884,2916,conspiracy,1241152765 +96884,2916,mars,1241152765 +96884,2916,memory,1241152780 +96884,2916,mutants,1241152799 +96884,2916,original plot,1241153271 +96884,2916,Sci Fi,1241152783 +96884,2916,space travel,1241152786 +96884,2916,virtual reality,1241152790 +96884,2966,brothers,1371182235 +96884,2966,lawn mower,1371182230 +96884,2966,obstinance,1371182206 +96884,2966,Richard Farnsworth,1371182217 +96884,2966,road trip,1371182188 +96884,3054,anime,1405227686 +96884,3054,pokemon,1405227680 +96884,3070,aliens,1316837706 +96884,3070,fell asleep,1316837724 +96884,3070,sci-fi,1316837709 +96884,3070,spoof,1316837915 +96884,3070,surreal,1316837714 +96884,3114,cgi,1277357575 +96884,3114,computer animation,1277357573 +96884,3114,Disney,1277357571 +96884,3114,Pixar,1277357566 +96884,3114,RACE AGAINST TIME,1277357602 +96884,3114,sequel,1277357564 +96884,3114,Tom Hanks,1277357558 +96884,3174,based on a true story,1398833884 +96884,3174,biographical,1398833912 +96884,3174,comedians,1398833942 +96884,3174,not funny,1398833971 +96884,3174,predictable,1398833954 +96884,3354,mars,1306349666 +96884,3354,space travel,1306349675 +96884,3448,great soundtrack,1454038017 +96884,3448,photography,1454037950 +96884,3448,sad ending,1454037937 +96884,3448,Vietnam,1454038023 +96884,3479,bad acting,1434918221 +96884,3479,weak plot,1434918211 +96884,3510,alternate reality,1257652465 +96884,3510,alternate universe,1257652461 +96884,3510,father-son relationship,1257652445 +96884,3510,firefighters,1257652453 +96884,3510,time travel,1257652456 +96884,3698,adapted from:book,1279854400 +96884,3698,anti-hero,1279854405 +96884,3698,Arnold Schwarzenegger,1279854396 +96884,3698,based on a book,1279854482 +96884,3698,based on book,1279854485 +96884,3698,corruption,1279854412 +96884,3698,Dystopia,1279854408 +96884,3698,dystopic future,1279854416 +96884,3698,motorcycle,1279854439 +96884,3698,police corruption,1279854474 +96884,3698,satire,1279854470 +96884,3698,survival,1279854465 +96884,3698,television,1279854462 +96884,3702,bad acting,1359342764 +96884,3702,bad dialogue,1359342802 +96884,3702,bad plot,1359342802 +96884,3702,bad script,1359342802 +96884,3702,car chase,1359342715 +96884,3702,cars,1359342720 +96884,3702,dystopia,1359342697 +96884,3702,gangs,1359342731 +96884,3702,post apocalyptic,1359342705 +96884,3702,post-apocalyptic,1359342700 +96884,3702,sci-fi,1359342708 +96884,3703,action,1364888473 +96884,3703,bad acting,1364888596 +96884,3703,car chase,1364888449 +96884,3703,desert,1364888460 +96884,3703,dystopia,1364888440 +96884,3703,gyrocopter,1364888522 +96884,3703,mad max,1364888615 +96884,3703,Mel Gibson,1364888545 +96884,3703,Nudity (Topless),1364888410 +96884,3703,on the road,1364888633 +96884,3703,post apocalypse,1364888413 +96884,3703,Post apocalyptic,1364888403 +96884,3703,post-apocalyptic,1364888406 +96884,3703,rape,1364888422 +96884,3703,sequel,1364888479 +96884,3703,slavery,1364888426 +96884,3703,tribal,1364888429 +96884,3703,unintentionally funny,1364888417 +96884,3793,based on a comic,1241155398 +96884,3793,based on comic book,1241155402 +96884,3793,comic book,1241155358 +96884,3793,Comic Book adaption,1241155361 +96884,3793,genetics,1241155369 +96884,3793,marvel,1241155375 +96884,3793,mutants,1241155371 +96884,3793,not the best adaptation,1241155657 +96884,3793,sci-fi,1241155390 +96884,3793,simple plot,1241155657 +96884,3793,super-hero,1241155382 +96884,3793,superhero,1241155379 +96884,3793,xenophoby,1241155318 +96884,3916,60s,1314504916 +96884,3916,American Football,1314504918 +96884,3916,based on a true story,1314504920 +96884,3916,Character study,1314504932 +96884,3916,Denzel Washington,1314504799 +96884,3916,Drama,1314504906 +96884,3916,football,1314504802 +96884,3916,good story,1314504825 +96884,3916,Hayden Panettiere,1314504819 +96884,3916,inspiring,1314504857 +96884,3916,Leadership,1314504859 +96884,3916,Motivation,1314504842 +96884,3916,racism,1314504855 +96884,3916,social commentary,1314504852 +96884,3916,sports,1314504908 +96884,3948,Ben Stiller,1304046189 +96884,3948,CIA,1304046223 +96884,3948,comedy,1304046184 +96884,3948,hilarious,1304046211 +96884,3948,Owen Wilson,1304046206 +96884,3948,Robert De Niro,1304046204 +96884,3948,sarcasm,1304046217 +96884,3948,weddings,1304046199 +96884,3967,ballet,1251399756 +96884,3967,boxing,1251399840 +96884,3967,british,1251399753 +96884,3967,children,1251399763 +96884,3967,dance,1251399759 +96884,3967,dreams,1251399791 +96884,3967,england,1251399793 +96884,3967,father son relationship,1251399917 +96884,3967,father-son relationship,1251399918 +96884,3967,FATHERS AND SONS,1251399919 +96884,3967,homophobia,1251399770 +96884,3967,homosexuality,1251399766 +96884,3967,London,1251399777 +96884,3967,miners,1251399824 +96884,3967,miners strike,1251399824 +96884,3967,poverty,1251399829 +96884,3967,self discovery,1251399785 +96884,3967,strike,1251399824 +96884,3968,acting,1267848208 +96884,3968,Brendan Fraser,1267848165 +96884,3968,deal with the devil,1267848167 +96884,3968,devil,1267848172 +96884,3968,Elizabeth Hurley,1267848185 +96884,3968,excellent acting,1267848208 +96884,3968,Los Angeles,1267848304 +96884,3968,nice message,1267848285 +96884,3968,remake,1267848158 +96884,3968,sexy devil,1267848255 +96884,4102,Eddie Murphy,1334079819 +96884,4102,Stand Up,1334079792 +96884,4102,stand-up comedy,1334079816 +96884,4133,80s nostalgia,1273813912 +96884,4133,based on a TV show,1273813909 +96884,4133,he-man,1273813891 +96884,4133,muscle,1273813893 +96884,4133,skeletor,1273813898 +96884,4148,Anthony Hopkins,1272696501 +96884,4148,atmospheric,1272696509 +96884,4148,cannibalism,1272696497 +96884,4148,disturbing,1272696514 +96884,4148,Hannibal Lecter,1272696534 +96884,4148,revenge,1272696570 +96884,4148,Ridley Scott,1272696548 +96884,4148,sequel,1272696542 +96884,4148,serial killer,1272696519 +96884,4148,torture,1272696516 +96884,4262,Al Pacino,1453003522 +96884,4367,action,1306349005 +96884,4367,adaptation,1306349003 +96884,4367,adapted from:game,1306349001 +96884,4367,adventure,1306348969 +96884,4367,Angelina Jolie,1306348972 +96884,4367,based on a video game,1306349036 +96884,4367,Cambodia,1306349018 +96884,4367,Girl Power,1306348993 +96884,4367,heroine in tight suit,1306349027 +96884,4367,Kick-Butt Women,1306349010 +96884,4367,sexy,1306348983 +96884,4367,video game adaptation,1306348977 +96884,4444,Bruce Lee,1344742471 +96884,4444,Chuck Norris,1344742473 +96884,4444,kung fu,1344742476 +96884,4444,martial arts,1344742479 +96884,4444,poor plot,1344742559 +96884,4531,action,1279854793 +96884,4531,Arnold Schwarzenegger,1279854689 +96884,4531,communism,1279854735 +96884,4531,crime,1279854748 +96884,4531,drug trade,1279854776 +96884,4531,James Belushi,1279854692 +96884,4531,police,1279854806 +96884,4558,Arnold Schwarzenegger,1285227940 +96884,4558,brother-brother relationship,1285227948 +96884,4558,brothers,1285227951 +96884,4558,comedy,1285227954 +96884,4558,Danny DeVito,1285227957 +96884,4558,funny,1285227980 +96884,4558,Kelly Preston,1285227961 +96884,4614,bad acting,1321588090 +96884,4614,martial arts,1321588093 +96884,4614,poor action scenes,1321588127 +96884,4639,Billy Crystal,1268952697 +96884,4639,Catherine Zeta-Jones,1268952699 +96884,4639,comedy romance,1268952735 +96884,4639,heart problems,1268952765 +96884,4639,John Cusack,1268952711 +96884,4639,Julia Roberts,1268952685 +96884,4639,movie business,1268952692 +96884,4639,Seth Green,1268952712 +96884,4643,cryogenics,1306349107 +96884,4643,dystopia,1306349103 +96884,4643,Post apocalyptic,1306349093 +96884,4643,post-apocalyptic,1306349081 +96884,4643,remake,1306349110 +96884,4643,Tim Burton,1306349077 +96884,4735,b movie,1306350135 +96884,4735,Mars,1306350112 +96884,4735,to see: horror/action,1306350107 +96884,4735,zombies,1306350117 +96884,4776,bad cop,1372560213 +96884,4776,corruption,1372560218 +96884,4776,denzel washington,1372560209 +96884,4776,police,1372560229 +96884,4776,police corruption,1372560233 +96884,4873,boring,1434656556 +96884,4873,philosophy,1434656528 +96884,4873,surreal,1434656580 +96884,4878,bad ending,1373774575 +96884,4878,mental illness,1373774516 +96884,4878,no sense ending,1373774575 +96884,4878,plot holes,1373774575 +96884,4878,pretentious,1373774597 +96884,4878,social commentary,1373774510 +96884,4878,surreal,1373774539 +96884,4890,fat woman,1282077717 +96884,4890,Gwenth Paltrow,1282077695 +96884,4890,Gwyneth Paltrow,1282077687 +96884,4890,moralistic,1282077725 +96884,4896,joseph campbell's study of mythology influenced,1241155190 +96884,4971,Immigration,1447092837 +96884,4971,nudity (topless),1447092826 +96884,4971,Robin Williams,1447092830 +96884,4973,beautifully filmed,1396828940 +96884,4973,love story,1396828947 +96884,4979,Ben Stiller,1344274595 +96884,4979,Bill Murray,1344274587 +96884,4979,family,1344274618 +96884,4979,family bonds,1344274612 +96884,4979,family dynamics,1344274610 +96884,4979,narrated,1344274620 +96884,4979,new york,1344274624 +96884,4979,Owen Wilson,1344274600 +96884,4993,bast background universe,1241153800 +96884,4993,complex script,1241153800 +96884,4993,joseph campbell's study of mythology influenced,1241155219 +96884,4993,mystic warriors,1241153800 +96884,4993,original plot,1241153800 +96884,5010,based on a true story,1361855391 +96884,5010,brutal,1361855381 +96884,5010,factual,1361855364 +96884,5010,helicopters,1361855389 +96884,5010,heroism,1361855387 +96884,5010,special forces,1361855377 +96884,5010,war,1361855372 +96884,5040,Arnold Schwarzenegger,1282077459 +96884,5040,Bad direction,1282077396 +96884,5040,scenic,1282077474 +96884,5040,sword and sorcery,1282077436 +96884,5096,lol,1249792373 +96884,5319,Argentina,1289633174 +96884,5319,con artists,1289633204 +96884,5319,con men,1289633202 +96884,5319,CONS AND SCAMS,1289633211 +96884,5319,crime,1289633197 +96884,5319,Gastón Pauls,1289633236 +96884,5319,grifting,1289633304 +96884,5319,Leticia Bredice,1289633213 +96884,5319,lies,1289633255 +96884,5319,Ricardo Darin,1289633228 +96884,5319,twist ending,1289633225 +96884,5349,alter ego,1241156223 +96884,5349,based on comic book,1241156251 +96884,5349,no totally happy ending,1241155923 +96884,5349,not the best adaptation,1241155923 +96884,5349,super-hero,1241156243 +96884,5349,superhero,1241156242 +96884,5378,bast background universe,1241153747 +96884,5378,complex script,1241153747 +96884,5378,joseph campbell's study of mythology influenced,1241154808 +96884,5378,mystic warriors,1241153747 +96884,5378,original plot,1241153747 +96884,5378,starship pilots,1241153747 +96884,5388,Al Pacino,1284400254 +96884,5388,atmospheric,1284400373 +96884,5388,choices,1284400368 +96884,5388,Christopher Nolan,1284400245 +96884,5388,corruption,1284400266 +96884,5388,good and evil,1284400301 +96884,5388,humanity,1284400301 +96884,5388,murder,1284400273 +96884,5388,plan,1284400275 +96884,5388,police investigation,1284400279 +96884,5388,Robin Williams,1284400259 +96884,5388,thought-provoking,1284400283 +96884,5451,bizarre,1309035642 +96884,5451,disability,1309035646 +96884,5451,mental illness,1309035649 +96884,5451,satirical,1309035658 +96884,5459,conspiracy,1338958762 +96884,5459,secret gov't agency works with and hides aliens,1338958754 +96884,5459,Tommy Lee Jones,1338958732 +96884,5459,Will Smith,1338958729 +96884,5500,musical,1343019443 +96884,5540,Ancient Greeks,1270969239 +96884,5540,bad acting,1270969167 +96884,5540,bad fx,1270969221 +96884,5540,bad screenplay,1270969200 +96884,5540,Claymation,1270969257 +96884,5540,judi bowker,1270969233 +96884,5540,mythology,1270969250 +96884,5816,joseph campbell's study of mythology influenced,1241155174 +96884,5903,Amazing Cinematography,1302324230 +96884,5903,bullet ballet,1302324199 +96884,5903,choreographic violence,1302324219 +96884,5903,Christian Bale,1302324189 +96884,5903,cinematography,1302324227 +96884,5903,cult film,1302324178 +96884,5903,distopia,1302324186 +96884,5903,drugs,1302324202 +96884,5903,dystopia,1302324167 +96884,5903,Emily Watson,1302324233 +96884,5903,fascism,1302324180 +96884,5903,gun fu,1302324183 +96884,5903,gunfight,1302324205 +96884,5903,guns,1302324207 +96884,5903,post-apocalyptic,1302324169 +96884,5903,revolution,1302324174 +96884,5903,totalitarianism,1302324171 +96884,5952,bast background universe,1241153808 +96884,5952,complex script,1241153808 +96884,5952,joseph campbell's study of mythology influenced,1241155230 +96884,5952,mystic warriors,1241153808 +96884,5952,original plot,1241153808 +96884,5956,Cameron Diaz,1289243765 +96884,5956,Daniel Day-Lewis,1289243828 +96884,5956,gangs,1289243790 +96884,5956,gangsters,1289243787 +96884,5956,Leonardo DiCaprio,1289243823 +96884,5956,Liam Neeson,1289243871 +96884,5956,Martin Scorsese,1289243768 +96884,5956,New York,1289243802 +96884,5956,New York City,1289243804 +96884,5956,Nudity (Topless - Brief),1289243866 +96884,5956,Nudity (Topless),1289243771 +96884,5956,story,1289243921 +96884,5956,true story,1289243783 +96884,5956,violent,1289243780 +96884,5956,writing,1289243928 +96884,5971,anime,1288099853 +96884,5971,children,1288099860 +96884,5971,country life,1288099856 +96884,5971,fantasy,1288099847 +96884,5971,Hayao Miyazaki,1288099827 +96884,5971,Japan,1288099842 +96884,5971,kids and family,1288099839 +96884,5971,nature,1288099866 +96884,5971,simple plot,1288099830 +96884,5971,spirits,1288099832 +96884,5971,Studio Ghibli,1288099825 +96884,5971,visually appealing,1288099836 +96884,5989,biography,1279854912 +96884,5989,crime,1279854901 +96884,5989,drama,1279854894 +96884,5989,factual,1279854897 +96884,5989,family problem,1279855004 +96884,5989,impostor,1279854975 +96884,5989,Leonardo DiCaprio,1279854890 +96884,5989,lies,1279854975 +96884,5989,Tom Hanks,1279854887 +96884,5989,true story,1279854883 +96884,5989,twists & turns,1279854917 +96884,6270,Akira Kurosawa,1270195040 +96884,6270,Bad direction,1270195201 +96884,6270,bad plot,1270195200 +96884,6270,bad script,1270195200 +96884,6270,boring,1270195082 +96884,6270,dreamlike,1270195042 +96884,6270,dreams,1270195044 +96884,6270,episodic,1270195054 +96884,6270,Japan,1270195049 +96884,6270,multiple storylines,1270195065 +96884,6270,poor plot,1270195141 +96884,6270,Poor plot development,1270195159 +96884,6270,poor script,1270195141 +96884,6270,silly,1270195104 +96884,6270,slow,1270195093 +96884,6270,very boring,1270195226 +96884,6270,very boring parts,1270195231 +96884,6333,better than first part,1241155718 +96884,6333,xenophoby,1241155326 +96884,6338,Eddie Murphy,1302212921 +96884,6338,father-son relationship,1302212931 +96884,6365,joseph campbell's study of mythology influenced,1241154771 +96884,6367,1960s,1273814047 +96884,6367,60s,1273814045 +96884,6367,bizarre,1273814094 +96884,6367,Chick Flick,1273814037 +96884,6367,colourful,1273814041 +96884,6367,Ewan McGregor,1273814067 +96884,6367,feminist,1273814234 +96884,6367,happy ending,1273814092 +96884,6367,journalist,1273814234 +96884,6367,lies,1273814234 +96884,6367,New York City,1273814050 +96884,6367,Renée Zellweger,1273814108 +96884,6367,retro,1273814060 +96884,6367,revenge,1273814234 +96884,6367,tribute,1273814234 +96884,6550,few funny scenes,1247345734 +96884,6550,John Malkovich,1247345700 +96884,6550,Mr.Bean,1247345771 +96884,6550,parody,1247345708 +96884,6645,bad plot,1364710506 +96884,6645,cinematography,1364710575 +96884,6645,consumerism,1364710540 +96884,6645,de-genderization,1364710622 +96884,6645,dystopia,1364710457 +96884,6645,eugenics,1364710605 +96884,6645,great cinematography,1364710477 +96884,6645,medicine,1364710568 +96884,6645,Nudity (Topless),1364710460 +96884,6645,robots,1364710466 +96884,6645,sci-fi,1364710463 +96884,6645,utilitarianism,1364710600 +96884,6711,isolation,1408852388 +96884,6711,loneliness,1408852385 +96884,6711,Scarlett Johansson,1408852428 +96884,6711,slow paced,1408852457 +96884,6711,tokyo,1408852398 +96884,6807,British,1416922264 +96884,6807,controversial,1416922272 +96884,6807,Monty Python,1416922281 +96884,6807,ridiculous,1416922305 +96884,6807,satire,1416922290 +96884,6807,silly,1416922299 +96884,6807,sketch comedy,1416922316 +96884,6934,joseph campbell's study of mythology influenced,1241154780 +96884,6938,Australia,1314640803 +96884,6938,big wave,1314640801 +96884,6938,California,1314640821 +96884,6938,competition,1314640848 +96884,6938,dead,1314640927 +96884,6938,elite,1314640954 +96884,6938,France,1314640870 +96884,6938,Hawaii,1314640795 +96884,6938,injuries,1314640927 +96884,6938,rescue,1314640901 +96884,6938,risk,1314640901 +96884,6938,Spain,1314640870 +96884,6938,surfing,1314640810 +96884,6942,airport,1287991123 +96884,6942,british,1287991105 +96884,6942,christmas,1287991110 +96884,6942,England,1287991119 +96884,6942,family,1287991116 +96884,6942,funny,1287991154 +96884,6942,happy ending,1287991200 +96884,6942,Hugh Grant,1287991145 +96884,6942,Keira Knightley,1287991142 +96884,6942,London,1287991130 +96884,6942,love,1287991134 +96884,6942,multiple storylines,1287991162 +96884,6942,Nudity (Topless - Notable),1287991140 +96884,6942,Nudity (Topless),1287991137 +96884,6942,romantic,1287991112 +96884,6996,acting,1340171260 +96884,6996,crappy sequel,1340171219 +96884,6996,Direction,1340171260 +96884,6996,immortality,1340171207 +96884,6996,immortals,1340171204 +96884,6996,sword fight,1340171223 +96884,7099,adventure,1245198534 +96884,7099,anime,1245198531 +96884,7099,comic book,1245198562 +96884,7099,fantasy,1245198536 +96884,7099,fantasy world,1245198539 +96884,7099,far future,1245198581 +96884,7099,Miyazaki,1245198544 +96884,7099,narrated,1245198546 +96884,7099,post-apocalyptic,1245198549 +96884,7099,sci-fi,1245198554 +96884,7099,Studio Ghibli,1245198559 +96884,7147,adventure,1403310944 +96884,7147,dreamlike,1403310941 +96884,7147,father-son relationship,1403310962 +96884,7147,heartwarming,1403311030 +96884,7147,imagination,1403311012 +96884,7147,reflective,1403310965 +96884,7147,stylized,1403310998 +96884,7147,surreal,1403311020 +96884,7147,thought-provoking,1403310993 +96884,7147,Tim Burton,1403310950 +96884,7153,bast background universe,1241153789 +96884,7153,complex script,1241153789 +96884,7153,joseph campbell's study of mythology influenced,1241155226 +96884,7153,mystic warriors,1241153789 +96884,7153,original plot,1241153789 +96884,7225,Arnold Schwarzenegger,1372181442 +96884,7225,bodybuilding,1372181450 +96884,7225,Docu-drama,1372181462 +96884,7225,documentary,1372181474 +96884,7225,true story,1372181456 +96884,7317,comedy,1252300099 +96884,7317,europe,1252300239 +96884,7317,hooligans,1252300347 +96884,7317,laugh out loud any time movie,1252300148 +96884,7317,lol,1252300153 +96884,7317,lot of laugh,1252300182 +96884,7317,Michelle Trachtenberg,1252300104 +96884,7317,mimes,1252300108 +96884,7317,Nudity (Topless),1252300113 +96884,7317,road trip,1252300381 +96884,7317,tourists,1252300235 +96884,7317,vatican,1252300273 +96884,7317,very funny,1252300210 +96884,7317,very funny!,1252300220 +96884,7318,based on a book,1243097455 +96884,7318,Biblical,1243097452 +96884,7318,bloody,1243097458 +96884,7318,Christian,1243097444 +96884,7318,Christianity,1243097448 +96884,7318,good acting,1243097719 +96884,7318,religion,1243097491 +96884,7318,tells a very short time event,1243097695 +96884,7318,very well made,1243097491 +96884,7482,bad acting,1256966386 +96884,7482,Bruce Lee,1256966360 +96884,7482,HEROIC MISSION,1256966353 +96884,7482,kung fu,1256966366 +96884,7482,martial arts,1256966341 +96884,7482,Nudity (Topless - Brief),1256966349 +96884,7482,Nudity (Topless),1256966336 +96884,7502,action,1335473739 +96884,7502,friendship,1335473760 +96884,7502,military,1335473756 +96884,7502,realistic,1335473749 +96884,7502,soldiers,1335473824 +96884,7502,thought-provoking,1335473752 +96884,7502,true story,1335473704 +96884,7502,World War II,1335473705 +96884,8132,Boxing,1316411777 +96884,8132,Cuba Gooding Jr.,1316411785 +96884,8132,good versus evil,1316411878 +96884,8132,inspiring,1316411851 +96884,8132,simple plot,1316411833 +96884,8132,sports,1316411794 +96884,8368,joseph campbell's study of mythology influenced,1241155186 +96884,8371,action,1244423222 +96884,8371,space,1244423219 +96884,8371,Vin Diesel,1244423210 +96884,8464,documentary,1368470303 +96884,8464,Educational,1368470298 +96884,8464,food,1368470293 +96884,8464,obesity,1368470308 +96884,8464,social criticism,1368470289 +96884,8529,affection for the main character,1241152581 +96884,8529,no totally happy ending,1241152581 +96884,8529,original plot,1241153259 +96884,8636,better than first part,1241155945 +96884,8636,complex script,1241155893 +96884,8870,abduction,1254021192 +96884,8870,aliens,1254021184 +96884,8870,haunting,1254021178 +96884,8870,memories,1254021254 +96884,8870,memory,1254021254 +96884,8870,memory loss,1254021254 +96884,8870,Mother Son Relationship,1254021225 +96884,8870,mother-son relationship,1254021218 +96884,8870,original,1254020848 +96884,8870,plot holes,1254020890 +96884,8870,poor plot details development,1254020975 +96884,8917,American propaganda,1400384472 +96884,8917,bizarre,1400384414 +96884,8917,few funny scenes,1400384480 +96884,8917,irreverent,1400384437 +96884,8917,marionettes,1400384434 +96884,8917,political commentary,1400384410 +96884,8917,puppets,1400384405 +96884,8917,racist humor,1400384541 +96884,8917,satire,1400384407 +96884,8961,action,1260304680 +96884,8961,Adventure,1260304672 +96884,8961,alter ego,1260304683 +96884,8961,animation,1260304688 +96884,8961,comedy,1260304674 +96884,8961,comic book,1260304670 +96884,8961,family,1260304691 +96884,8961,fashion,1260304713 +96884,8961,funny,1260304707 +96884,8961,Pixar,1260304666 +96884,8961,Pixar animation,1260304704 +96884,8961,self discovery,1260304700 +96884,8961,stylized,1260304661 +96884,8961,super-hero,1260304655 +96884,8961,superhero,1260304659 +96884,8977,Action,1304737640 +96884,8977,adventure,1304737612 +96884,8977,assassination,1304737637 +96884,8977,bad end,1304737658 +96884,8977,based on a true story,1304737625 +96884,8977,bisexual,1304737604 +96884,8977,Epic,1304737630 +96884,8977,homosexuality,1304737591 +96884,8977,Nudity (Topless),1304737617 +96884,25738,b&w,1247022895 +96884,25738,black & white,1247022909 +96884,25738,black and white,1247022918 +96884,25738,silent,1247022888 +96884,25888,B&W,1244423723 +96884,25888,black & white,1244423723 +96884,25888,black and white,1244423723 +96884,25888,Humphrey Bogart,1244423744 +96884,26630,Michael Jackson,1248216773 +96884,26630,musical,1248216754 +96884,26869,animation,1405227437 +96884,26869,anime,1405227481 +96884,26869,cinematography,1405227456 +96884,26869,future,1405227462 +96884,26869,love triangle,1405227473 +96884,26869,macross,1405227435 +96884,26869,pilots,1405227469 +96884,26869,space,1405227459 +96884,27009,alcohol,1257660801 +96884,27009,anti-hero,1257660887 +96884,27009,bad person,1257660899 +96884,27009,cheap,1257660742 +96884,27009,Cheap but fun,1257660731 +96884,27009,drugs,1257660768 +96884,27009,geeks,1257660741 +96884,27009,police,1257660738 +96884,27009,Whores,1257660788 +96884,27155,boring,1260293177 +96884,27155,childish,1260293177 +96884,27155,comic book,1260293184 +96884,27155,double life,1260293210 +96884,27155,superhero,1260293200 +96884,27611,actors,1261975962 +96884,27611,androids,1261975858 +96884,27611,based on a TV show,1261975919 +96884,27611,battleships,1261975772 +96884,27611,better than the old version,1261975819 +96884,27611,computer animation,1261976040 +96884,27611,cybernetic creatures,1261975907 +96884,27611,cybernetics,1261975806 +96884,27611,Direction,1261975962 +96884,27611,director,1261976016 +96884,27611,humanity,1261975913 +96884,27611,infiltrators,1261975910 +96884,27611,made for TV,1261975895 +96884,27611,mental health,1261976086 +96884,27611,military,1261975799 +96884,27611,MILITARY LIFE,1261975898 +96884,27611,politics,1261975825 +96884,27611,remake,1261975829 +96884,27611,robots,1261975858 +96884,27611,sci-fi,1261975765 +96884,27611,space,1261975885 +96884,27611,spaceflight,1261975834 +96884,27611,Special Effects,1261976050 +96884,27611,starship pilots,1261975878 +96884,27611,starships,1261975936 +96884,27619,funny,1446589283 +96884,27619,parallel history,1446589322 +96884,27660,animation,1302324357 +96884,27660,anime,1302324359 +96884,27660,good concept,1302324363 +96884,27660,matrix,1302324353 +96884,27660,sci-fi,1302324366 +96884,27660,several short films,1302324368 +96884,27706,based on a book,1268286153 +96884,27706,Emily Browning,1268286171 +96884,27706,fantasy,1268286201 +96884,27706,jim carrey,1268286176 +96884,27706,macabre,1268286178 +96884,27706,narrated,1268286159 +96884,27773,brutal,1337377016 +96884,27773,disturbing,1337376999 +96884,27773,Korea,1337377028 +96884,27773,Nudity (Full Frontal),1337377006 +96884,27773,paranoid,1337377025 +96884,27773,revenge,1337377041 +96884,27773,stylized,1337377046 +96884,27773,tense,1337377020 +96884,27773,twist ending,1337377043 +96884,27773,violent,1337377002 +96884,27801,bad plot,1252300760 +96884,27801,Bangkok,1252300695 +96884,27801,buddhism,1252300693 +96884,27801,drugs,1252300698 +96884,27801,fighting,1252300700 +96884,27801,gambling,1252300713 +96884,27801,martial arts,1252300703 +96884,27801,muay thai,1252300710 +96884,27801,no plot,1252300756 +96884,27801,repetitive fight moves,1252300828 +96884,27801,thailand,1252300706 +96884,27801,violence,1252300708 +96884,27846,abuse,1329542224 +96884,27846,american idiocy,1329542151 +96884,27846,business,1329542221 +96884,27846,corporations,1329542165 +96884,27846,corporatism,1329542167 +96884,27846,documentary,1329542169 +96884,27846,documentary critique,1329542172 +96884,27846,evil corporations,1329542186 +96884,27846,Free to download,1329542215 +96884,27846,Michael Moore,1329542323 +96884,27846,politics,1329542218 +96884,30707,boxing,1408507356 +96884,30707,Morgan Freeman,1408507377 +96884,30707,poverty,1408507394 +96884,30707,sad,1408507416 +96884,30707,social commentary,1408507373 +96884,30707,violence,1408507391 +96884,30812,aviation,1285228019 +96884,30812,biography,1285228046 +96884,30812,biopic,1285228052 +96884,30812,Cate Blanchett,1285228041 +96884,30812,compassionate,1285228055 +96884,30812,Drama,1285228058 +96884,30812,Kate Beckinsale,1285228039 +96884,30812,Leonardo DiCaprio,1285228021 +96884,30812,Martin Scorsese,1285228028 +96884,30812,true story,1285228034 +96884,31184,anime,1314416265 +96884,31184,CGI,1314416251 +96884,31184,complicated plot,1314416261 +96884,31184,Dynamic CGI Action,1314416235 +96884,31184,future,1314416239 +96884,31184,sci-fi,1314416243 +96884,31184,techno-evolution,1314416247 +96884,31184,technology,1314416249 +96884,31410,Adolf Hitler,1255842092 +96884,31410,Berlin,1255842076 +96884,31410,Biography,1255842079 +96884,31410,boring,1255842169 +96884,31410,communism,1255842069 +96884,31410,controversial,1255842072 +96884,31410,disturbing,1255842131 +96884,31410,end of war,1255842084 +96884,31410,factual,1255842142 +96884,31410,German,1255842067 +96884,31410,Germany,1255842063 +96884,31410,historical,1255842060 +96884,31410,history,1255842056 +96884,31410,Nazi Germany,1255842105 +96884,31410,Nazis,1255842097 +96884,31410,Nudity (Topless),1255842052 +96884,31410,suicide,1255842088 +96884,31410,World War II,1255842052 +96884,31685,Eva Mendes,1271884606 +96884,31685,mentor/trainer,1271884621 +96884,31685,New York City,1271884643 +96884,31685,Will Smith,1271884610 +96884,31696,adapted from:comic,1364796278 +96884,31696,angels,1364796273 +96884,31696,Christianity,1364796322 +96884,31696,DC Comics,1364796318 +96884,31696,demons,1364796312 +96884,31696,good versus evil,1364796308 +96884,31696,heaven and hell,1364796382 +96884,31696,hell,1364796290 +96884,31696,Keanu Reeves,1364796703 +96884,31696,mythology,1364796291 +96884,31696,Rachel Weisz,1364796699 +96884,31696,religion,1364796300 +96884,31696,surreal,1364796298 +96884,31696,watch the credits,1364796664 +96884,31892,bad acting,1319950695 +96884,31892,Bad direction,1319950702 +96884,31892,bad kung fu,1319950762 +96884,31892,bad plot,1319950723 +96884,31892,bad script,1319950716 +96884,31892,bruce lee,1319950872 +96884,31892,fighting,1319950853 +96884,31892,karate,1319950872 +96884,31892,martial arts,1319950853 +96884,31892,ridiculous,1319950801 +96884,31892,ridiculous characters,1319950809 +96884,31892,ridiculous training sequence,1319950801 +96884,32031,cgi,1245198342 +96884,32031,Dance,1245198394 +96884,32031,Ewan McGregor,1245198376 +96884,32031,Father son relationship,1245198351 +96884,32031,father-son relationship,1245198359 +96884,32031,Mel Brooks,1245198380 +96884,32031,Robin Williams,1245198371 +96884,32031,robots,1245198383 +96884,32456,animal attacks,1288587467 +96884,32456,anime,1288587463 +96884,32456,bizarre,1288587460 +96884,32456,boring,1288587435 +96884,32456,ecology,1288587452 +96884,32456,environment,1288587457 +96884,32456,environmental,1288587445 +96884,32456,fighting,1288587448 +96884,32456,magic,1288587481 +96884,32456,man vs. nature,1288587479 +96884,32456,narrated,1288587475 +96884,32456,not funny,1288587563 +96884,32456,rebellion,1288587441 +96884,32456,shape shifter,1288587507 +96884,32456,singing,1288587494 +96884,32456,supernatural,1288587484 +96884,32456,survival,1288587491 +96884,32456,television,1288587500 +96884,32456,urban,1288587497 +96884,32587,adapted from:comic,1445833983 +96884,32587,corruption,1445833993 +96884,32587,multiple storylines,1445833961 +96884,32587,Nudity (Topless),1445834004 +96884,32587,revenge,1445833996 +96884,32587,storytelling,1445833970 +96884,32587,stylized,1445833974 +96884,32587,violence,1445833964 +96884,33145,Amanda Peet,1266196873 +96884,33145,Ashton Kutcher,1266196871 +96884,33145,happy ending,1266197115 +96884,33145,love,1266197150 +96884,33145,romance,1266197136 +96884,33493,bast background universe,1241153742 +96884,33493,complex script,1241153742 +96884,33493,joseph campbell's study of mythology influenced,1241154814 +96884,33493,mystic warriors,1241153742 +96884,33493,original plot,1241153742 +96884,33493,starship pilots,1241153742 +96884,33499,wedding,1302481712 +96884,33660,Biography,1314505220 +96884,33660,boxing,1314505176 +96884,33660,boxing drama,1314505223 +96884,33660,childhood,1314505211 +96884,33660,great depression,1314505180 +96884,33660,husband-wife relationship,1314505200 +96884,33660,poverty,1314505182 +96884,33660,Russell Crowe,1314505185 +96884,33660,sport:boxing,1314505188 +96884,33660,sports,1314505189 +96884,33660,true story,1314505196 +96884,33836,Based on a TV show,1359342588 +96884,33836,Comedy,1359342579 +96884,33836,magic,1359342583 +96884,33836,Nicole Kidman,1359342538 +96884,33836,Will Ferrell,1359342540 +96884,33836,witch,1359342573 +96884,34405,action,1342916735 +96884,34405,adventure,1342916733 +96884,34405,assassin,1342916724 +96884,34405,based on a TV show,1342916748 +96884,34405,based on tv series,1342916710 +96884,34405,black comedy,1342916700 +96884,34405,dystopia,1342916706 +96884,34405,Firefly,1342916767 +96884,34405,friendship,1342916739 +96884,34405,robbery,1342916722 +96884,34405,sci-fi,1342916704 +96884,34405,social commentary,1342916714 +96884,34405,SPACE TRAVEL,1342916712 +96884,34405,western,1342916716 +96884,36289,Gérard Depardieu,1272435123 +96884,36289,Laetitia Casta,1272435240 +96884,36289,Roman empire,1272435175 +96884,36289,rome,1272435175 +96884,36529,Africa,1372559918 +96884,36529,anti-hero,1372559914 +96884,36529,arms dealer,1372559954 +96884,36529,based on a true story,1372559928 +96884,36529,business,1372559934 +96884,36529,cold war,1372559931 +96884,36529,corruption,1372559910 +96884,36529,Crime,1372559974 +96884,36529,dark comedy,1372559902 +96884,36529,narrated,1372559906 +96884,36529,Nicolas Cage,1372559949 +96884,36529,Nudity (Topless),1372559964 +96884,36529,political,1372559925 +96884,36529,smuggling,1372559921 +96884,36529,violence,1372559947 +96884,40815,joseph campbell's study of mythology influenced,1241155177 +96884,41566,adventure,1249348332 +96884,41566,alternate reality,1249348341 +96884,41566,alternate universe,1249348343 +96884,41566,animals,1249348329 +96884,41566,based on book,1249348469 +96884,41566,childish,1249348462 +96884,41566,good versus evil,1249348495 +96884,41566,scenic,1249348514 +96884,41566,silly,1249348520 +96884,41566,talking animals,1249348512 +96884,42011,a Hollywood political message,1306388608 +96884,42011,Acidly funny,1306388614 +96884,42011,catastrofe,1306388686 +96884,42011,crime,1306388597 +96884,42011,despair,1306388633 +96884,42011,desperate,1306388636 +96884,42011,Jim Carrey,1306388620 +96884,42011,lost job,1306388582 +96884,42011,money,1306388623 +96884,42011,remake,1306388593 +96884,42011,robbery,1306388680 +96884,42422,aliens,1246340600 +96884,42422,anime,1246340582 +96884,42422,evangelion like,1246340674 +96884,42422,high school,1246340585 +96884,42422,love,1246340686 +96884,42422,macross like,1246340676 +96884,42422,mobiles,1246340722 +96884,42422,no ending,1246340649 +96884,42422,sci fi,1246340787 +96884,42422,sci-fi,1246340607 +96884,42422,science fiction,1246340787 +96884,42422,space,1246340588 +96884,43871,bank,1247022774 +96884,43871,bank robbery,1247022774 +96884,43871,computers,1247022733 +96884,43871,few action scenes,1247022610 +96884,43871,good acting,1247022795 +96884,43871,hacking,1247022676 +96884,43871,Harrison Ford,1247022527 +96884,43871,kidnapping,1247022748 +96884,43871,real computers,1247022681 +96884,43871,real computers usage,1247022703 +96884,43871,realistic,1247022653 +96884,43871,suspense,1247022548 +96884,43871,thrilling,1247022547 +96884,43936,Bruce Willis,1267847471 +96884,43936,police,1267847477 +96884,43936,police corruption,1267847474 +96884,44020,bad plot,1336679352 +96884,44020,childish,1336679342 +96884,44020,silly,1336679342 +96884,44115,exaggerated,1283957375 +96884,44115,FORBIDDEN LOVE,1283957494 +96884,44115,japan,1283957514 +96884,44115,japanese culture,1283957514 +96884,44115,love,1283957514 +96884,44115,love history,1283957514 +96884,44115,ninja,1283957425 +96884,44115,ninjas,1283957425 +96884,44115,supernatural powers,1283957545 +96884,44199,bank robbery,1294626852 +96884,44199,Clever,1294626855 +96884,44199,Denzel Washington,1294626874 +96884,44199,good story,1294626858 +96884,44199,intelligent thriller,1294626841 +96884,44199,Interesting,1294626867 +96884,44199,Jodie Foster,1294626860 +96884,44199,Nazis,1294626865 +96884,44199,police,1294626870 +96884,44199,twist ending,1294626839 +96884,44613,Antonio Banderas,1263350409 +96884,44613,based on a true story,1263350400 +96884,44613,Based on the life of Pierre Dulane,1263350374 +96884,44613,Dance,1263350433 +96884,44613,fiction,1263350719 +96884,44613,foxtrot,1263350581 +96884,44613,gangsters,1263350645 +96884,44613,happy ending,1263350461 +96884,44613,high school,1263350662 +96884,44613,hip hop,1263350645 +96884,44613,merengue,1263350621 +96884,44613,New York,1263350415 +96884,44613,nonfiction,1263350404 +96884,44613,poverty,1263350712 +96884,44613,tango,1263350470 +96884,44613,teacher student relationship,1263350773 +96884,44613,waltz,1263350549 +96884,45106,Hugh Grant,1250210686 +96884,45106,parody,1250210696 +96884,45106,sarcasm,1250210878 +96884,45106,satire,1250210736 +96884,45106,US President,1250210689 +96884,45447,complex script,1241153866 +96884,45447,original plot,1241153866 +96884,45499,better than first part,1241155772 +96884,45499,ending after credits,1241155747 +96884,45499,xenophoby,1241155322 +96884,45501,break-up,1249523748 +96884,45501,no clear happy ending,1249523811 +96884,45501,Vince Vaughn,1249523743 +96884,46972,Ben Stiller,1287981601 +96884,46972,father-son relationship,1287981580 +96884,46972,good children movie,1287981584 +96884,46972,museum,1287981577 +96884,46972,Owen Wilson,1287981574 +96884,46972,Ricky Gervais,1287981572 +96884,46972,Robin Williams,1287981575 +96884,46972,single father,1287981588 +96884,46972,Stiller&Wilson,1287981591 +96884,46976,fantasy,1334466740 +96884,46976,insanity,1334466747 +96884,46976,narrated,1334466733 +96884,46976,romance,1334466794 +96884,46976,storytelling,1334466778 +96884,46976,surreal,1334466721 +96884,46976,touching,1334466726 +96884,46976,Will Ferrell,1334466715 +96884,46976,writers,1334466791 +96884,47099,based on a true story,1242180461 +96884,47099,courage,1242180477 +96884,47099,happy ending,1242180514 +96884,47099,Motivation,1242180455 +96884,47099,Will Smith,1242180451 +96884,47200,bad ending,1316058035 +96884,47200,badly shot,1316058023 +96884,47200,chase,1316058189 +96884,47200,epifedrine,1316058128 +96884,47200,plotless,1316058028 +96884,47200,ugly,1316058019 +96884,47200,unlikeable characters,1316058079 +96884,47997,dark comedy,1448579587 +96884,47997,decline of civilization,1448579595 +96884,47997,dystopia,1448579578 +96884,47997,future,1448579585 +96884,47997,satire,1448579580 +96884,47997,social commentary,1448579582 +96884,47997,thought provoking,1448579597 +96884,47997,Underrated,1448579592 +96884,48385,anti-Semitism,1286423808 +96884,48385,Catholicism,1286423985 +96884,48385,comedy,1286423874 +96884,48385,controversial,1286423869 +96884,48385,crude humor,1286423871 +96884,48385,feminism,1286424018 +96884,48385,funny,1286423877 +96884,48385,irreverent,1286423943 +96884,48385,Kazakhstan,1286424132 +96884,48385,Los Angeles,1286423858 +96884,48385,love,1286425902 +96884,48385,Male nudity,1286423837 +96884,48385,New York,1286423962 +96884,48385,New York City,1286423822 +96884,48385,Nudity (Full Frontal - Notable),1286423833 +96884,48385,Nudity (Full Frontal),1286423899 +96884,48385,poverty,1286424086 +96884,48385,prejudice,1286424155 +96884,48385,prostitution,1286424008 +96884,48385,quotable,1286423934 +96884,48385,racism,1286424050 +96884,48385,road trip,1286423818 +96884,48385,satire,1286423815 +96884,48385,social commentary,1286423813 +96884,48385,Texas,1286423957 +96884,48414,forest,1297381555 +96884,48414,hunting,1297381543 +96884,48414,revenge,1297381562 +96884,48414,Some good moments,1297381585 +96884,48414,talking animals,1297381541 +96884,48516,bad ending,1304308155 +96884,48516,complicated plot,1304308127 +96884,48516,crap,1304308171 +96884,48516,crap ending,1304308171 +96884,48516,Crime,1304308095 +96884,48516,Jack Nicholson,1304307993 +96884,48516,Leonardo DiCaprio,1304307995 +96884,48516,Mafia,1304307989 +96884,48516,Martin Scorsese,1304307967 +96884,48516,Matt Damon,1304308070 +96884,48516,police,1304307987 +96884,48516,police corruption,1304307975 +96884,48516,suspense,1304307982 +96884,48516,twist ending,1398836047 +96884,48516,undercover cop,1304307977 +96884,48516,unhappy ending,1304308145 +96884,48516,Vera Farmiga,1304308247 +96884,48516,violence,1304307979 +96884,48774,adapted from:book,1269659384 +96884,48774,apocalypse,1269659311 +96884,48774,atmospheric,1269659314 +96884,48774,based on a book,1269659346 +96884,48774,christianity,1269659342 +96884,48774,dystopia,1269659361 +96884,48774,end of the world,1269659367 +96884,48774,England,1269659331 +96884,48774,environmental,1269659334 +96884,48774,future,1269659321 +96884,48774,futuristic,1269659316 +96884,48774,infertility,1269659338 +96884,48774,pregnancy,1269659324 +96884,48774,sci-fi,1269659326 +96884,48774,survival,1269659327 +96884,48774,thriller,1269659329 +96884,48780,based on a book,1258256360 +96884,48780,confusing,1258256370 +96884,48780,duel,1258256525 +96884,48780,enigmatic,1258256404 +96884,48780,Hugh Jackman,1258256414 +96884,48780,magic,1258256355 +96884,48780,magician,1258256505 +96884,48780,obsession,1258256480 +96884,48780,sacrifice,1258256398 +96884,48780,Scarlett Johansson,1258256351 +96884,48780,teleportation,1258256382 +96884,48780,twist ending,1258256392 +96884,48780,twists & turns,1258256388 +96884,49272,007,1388380684 +96884,49272,bittersweet,1388380667 +96884,49272,James Bond,1388380687 +96884,49272,poker,1388380654 +96884,49272,realistic action,1388380678 +96884,50954,aztec god,1275608177 +96884,50954,body exchange,1275608177 +96884,50954,football,1275608177 +96884,50954,graduation,1275608177 +96884,50954,high school,1275608177 +96884,50954,soul exchange,1275608177 +96884,50954,university,1275608177 +96884,50954,yale,1275608177 +96884,51086,conspiracy theory,1398834091 +96884,51086,Nudity (Topless - Notable),1398834083 +96884,51086,twist ending,1398834066 +96884,51255,action,1246310862 +96884,51255,british comedy,1246310866 +96884,51255,comedy,1246310869 +96884,51255,macabre,1246310999 +96884,51255,murder,1246311015 +96884,51255,police,1246310988 +96884,51255,small town,1246310996 +96884,51255,subgenre:cop buddies,1246311046 +96884,51255,surreal,1246310992 +96884,51317,Argentina,1272337669 +96884,51317,Cecilia Roth,1289632313 +96884,51317,childhood,1289632387 +96884,51317,dictatorship,1289632367 +96884,51317,family,1289632420 +96884,51317,father-son relationship,1289632400 +96884,51317,Héctor Alterio,1289632303 +96884,51317,love,1289632391 +96884,51317,Marcelo Piñeyro,1289632298 +96884,51317,mother-son relationship,1289632408 +96884,51317,resistance movement,1289632433 +96884,51317,Ricardo Darín,1272337700 +96884,51935,action,1268677482 +96884,51935,africa,1268677340 +96884,51935,based on a book,1268677260 +96884,51935,conspiracy,1268677258 +96884,51935,corruption,1268677429 +96884,51935,fbi,1268677451 +96884,51935,government agencies,1268677448 +96884,51935,military,1268677341 +96884,51935,murder,1268677523 +96884,51935,revenge,1268677558 +96884,51935,senator,1268677471 +96884,51935,shooter,1268677476 +96884,51935,sniper,1268677257 +96884,51935,war,1268677341 +96884,52328,beautiful effects,1302590652 +96884,52328,dark,1302590649 +96884,52328,isolation,1302590639 +96884,52328,madness,1302590641 +96884,52328,psychology,1302590619 +96884,52328,sci-fi,1302590611 +96884,52328,space,1302590633 +96884,52328,spaceships,1302590621 +96884,52328,suicide attempt,1302590630 +96884,52458,amateur detective,1252289336 +96884,52458,assassin,1252289425 +96884,52458,assassination,1252289425 +96884,52458,Carrie-Anne Moss,1252289591 +96884,52458,remakeOf:Rear Window (1954),1252289359 +96884,52458,sarah roemer,1252289639 +96884,52458,thriller,1252289399 +96884,52694,cute,1296450425 +96884,52694,funny,1296450463 +96884,52694,stupid,1296450449 +96884,52694,vacation,1296450460 +96884,52722,adapted from:comic,1250958288 +96884,52722,alter ego,1250958280 +96884,52722,based on a comic,1250958283 +96884,52722,childish,1250958336 +96884,52722,comic book,1250958272 +96884,52722,revenge,1250958294 +96884,52722,sequel,1250958308 +96884,52722,silly plot,1250958363 +96884,52722,super hero,1250958305 +96884,52722,super-hero,1250958301 +96884,52722,superhero,1250958299 +96884,52722,superheroes,1250958315 +96884,52722,supernatural powers,1250958312 +96884,52722,unfaithfulness in loving relations,1241156185 +96884,52885,animation,1283230031 +96884,52885,anime,1283229948 +96884,52885,bad science,1283230019 +96884,52885,boring,1283229965 +96884,52885,confusing,1283229997 +96884,52885,dreamlike,1283229936 +96884,52885,dreams,1283229943 +96884,53125,ending after credits,1241155801 +96884,53129,Demi Moore,1287304058 +96884,53129,ending,1287304137 +96884,53129,Kevin Costner,1287304060 +96884,53129,serial killer,1287304075 +96884,53894,american idiocy,1241157659 +96884,53894,Michael Moore,1241157664 +96884,53972,action,1246822909 +96884,53972,bruce willis,1246822936 +96884,53972,comedy,1246823126 +96884,53972,hackers,1246822948 +96884,53972,IT fail,1246823114 +96884,53972,kungfu hackers,1246823179 +96884,53972,original,1246822996 +96884,53972,stunts,1246822956 +96884,53972,terrorism,1246822933 +96884,53972,United States,1246822962 +96884,53972,Unreal,1246822993 +96884,53972,unrealistic,1246822993 +96884,53972,unrealistic but well done,1246823020 +96884,53972,unrealistic plot,1246823031 +96884,53996,80s nostalgia,1247891083 +96884,53996,android(s)/cyborg(s),1247891083 +96884,53996,based on a comic,1247891083 +96884,53996,based on a TV show,1247889653 +96884,53996,Excellent FXs,1247892733 +96884,53996,franchise,1247893139 +96884,53996,giant robots,1247889654 +96884,53996,helicopters,1247889654 +96884,53996,man versus machine,1247889666 +96884,53996,Megan Fox,1247889668 +96884,53996,Nostalgia Critic,1247892711 +96884,53996,robots,1247889673 +96884,53996,Special Effects,1247891083 +96884,53996,transformation,1247889679 +96884,54001,joseph campbell's study of mythology influenced,1241155182 +96884,54075,church,1268541156 +96884,54075,crusaders,1268541003 +96884,54075,crusades,1268541003 +96884,54075,Islam,1268541102 +96884,54075,knights,1266026625 +96884,54075,medieval,1266026606 +96884,54075,Saladin,1268541118 +96884,54075,templar,1268541003 +96884,54075,templars,1266026616 +96884,54075,war,1268541068 +96884,54256,Andy Samberg,1404139386 +96884,54256,Isla Fisher,1404139314 +96884,54256,stunts,1404139319 +96884,54259,adapted from:book,1265910740 +96884,54259,atmospheric,1265910737 +96884,54259,bad fx,1265910770 +96884,54259,bad plot,1265910796 +96884,54259,BAD special effects,1265910778 +96884,54259,fairy tale,1265910699 +96884,54259,fantasy,1265910707 +96884,54259,humor,1265910710 +96884,54259,magic,1265910724 +96884,54259,Michelle Pfeiffer,1265910956 +96884,54259,Neil Gaiman,1265910703 +96884,54259,old story,1265910811 +96884,54259,pirates,1265910718 +96884,54259,Robert De Niro,1265910720 +96884,54736,action,1392876508 +96884,54736,bombs,1392876475 +96884,54736,fbi,1392876483 +96884,54736,middle east,1392876455 +96884,54736,propaganda,1392876491 +96884,54736,Saudi Arabia,1392876458 +96884,54736,slow paced,1392876453 +96884,54736,terrorism,1392876494 +96884,54768,acting,1302212943 +96884,54768,boring,1302212965 +96884,54768,camp,1302212978 +96884,54768,childish,1302212965 +96884,54768,silly,1302212965 +96884,54997,Christian Bale,1298791530 +96884,54997,naive,1298791590 +96884,54997,rare,1298791720 +96884,54997,remake,1298791538 +96884,54997,ridiculous,1298791557 +96884,54997,Russell Crowe,1298791533 +96884,54997,violent,1298791535 +96884,55247,adventure,1359956188 +96884,55247,Alaska,1359956183 +96884,55247,atmospheric,1359956185 +96884,55247,bad ending,1359956214 +96884,55247,based on a true story,1359956161 +96884,55247,drama,1359956201 +96884,55247,Nudity (Full Frontal),1359956174 +96884,55247,Nudity (Topless - Notable),1359956176 +96884,55247,Nudity (Topless),1359956169 +96884,55247,psychology,1359956196 +96884,55247,road trip,1359956192 +96884,55247,sad ending,1359956222 +96884,55247,self discovery,1359956167 +96884,55247,true story,1359956199 +96884,55267,Emily Blunt,1334267663 +96884,55267,infidelity,1334267533 +96884,55267,large family,1334267602 +96884,55267,not a comedy,1334267593 +96884,55267,predictable,1334267565 +96884,55267,single father,1334267577 +96884,55267,single parents,1334267609 +96884,55267,Steve Carell,1334267555 +96884,55267,unrealistic,1334267575 +96884,55267,WRITER'S LIFE,1334267580 +96884,55721,BOPE,1257648527 +96884,55721,corruption,1257648517 +96884,55721,Drugs,1257648519 +96884,55721,Latin America,1257648514 +96884,55721,organized crime,1257648508 +96884,55721,police,1257648511 +96884,55721,police corruption,1257648503 +96884,55721,poverty,1257648506 +96884,55721,realism,1257648626 +96884,55721,realistic,1257648626 +96884,55721,Realities of life,1257648626 +96884,55721,rio de janeiro,1257648500 +96884,55721,social commentary,1300073914 +96884,55721,special police forces,1257648534 +96884,55721,too much violence,1257648591 +96884,55721,violence,1257648655 +96884,55765,based on a true story,1381770088 +96884,55765,conspiracy,1381770081 +96884,55765,corruption,1381770084 +96884,55765,crime,1381770127 +96884,55765,Denzel Washington,1381770051 +96884,55765,drugs,1381770048 +96884,55765,gangsters,1381770046 +96884,55765,good ending,1381770144 +96884,55765,historical,1381770057 +96884,55765,justice,1381770030 +96884,55765,mafia,1381770043 +96884,55765,mother-son relationship,1381770067 +96884,55765,organized crime,1381770040 +96884,55765,police,1381770122 +96884,55765,Russell Crowe,1381770054 +96884,55765,smuggling,1381770112 +96884,55820,coen brothers,1379210988 +96884,55820,crime,1379210995 +96884,55820,drama,1379211024 +96884,55820,hitman,1379211008 +96884,55820,no ending,1379211048 +96884,55820,plot twist,1379211030 +96884,55820,serial killer,1379211002 +96884,55820,Tommy Lee Jones,1379210999 +96884,55820,twist ending,1379210974 +96884,55872,child prodigy,1265911389 +96884,55872,holes in the plot,1265911162 +96884,55872,inspirational,1265911135 +96884,55872,love of music,1265911146 +96884,55872,music,1265911142 +96884,55872,Robin Williams,1265911139 +96884,55908,bad quality,1414338400 +96884,55908,christianity,1414338211 +96884,55908,dialogue driven,1414338215 +96884,55908,evolution,1414338258 +96884,55908,fantasy,1414338199 +96884,55908,grainy,1414338400 +96884,55908,history,1414338223 +96884,55908,immortality,1414338173 +96884,55908,intellectual,1414338179 +96884,55908,low budget,1414338225 +96884,55908,philosophical,1414338185 +96884,55908,pretentious,1414338400 +96884,55908,religion,1414338237 +96884,56921,based on a tv show,1302324448 +96884,56921,battlestar galactica,1302324445 +96884,56921,sci-fi,1302324434 +96884,56921,space,1302324435 +96884,56921,space opera,1302324441 +96884,56921,spaceflight,1302324438 +96884,56921,war,1302324436 +96884,56949,chick flick,1265910653 +96884,56949,chick movie,1265910619 +96884,56949,love story,1265910623 +96884,56949,marriage,1265910628 +96884,56949,romantic comedy,1265910614 +96884,57669,ambiguous ending,1347160158 +96884,57669,assassin,1347160155 +96884,57669,beautiful scenery,1347160152 +96884,57669,bizarre,1347160175 +96884,57669,depression,1347160169 +96884,57669,drama,1347160163 +96884,57669,drugs,1347160110 +96884,57669,friendship,1347160119 +96884,57669,hitman,1347160086 +96884,57669,violent,1347160142 +96884,57854,B&W,1306981826 +96884,57854,black & white,1306981826 +96884,57854,black and white,1306981826 +96884,58078,Brendan Fraser,1250643432 +96884,58078,gangsters,1250643454 +96884,58078,life & death,1250643457 +96884,58078,life choices,1250643467 +96884,58078,Sarah Michelle Gellar,1250643445 +96884,58078,suicide attempt,1250643449 +96884,58103,assassin,1360356908 +96884,58103,assassination,1360356906 +96884,58103,betrayal,1360356900 +96884,58103,bombs,1360356917 +96884,58103,complot,1360356911 +96884,58103,double agents,1360356914 +96884,58103,Forest Whitaker,1360356895 +96884,58103,multiple storylines,1360356888 +96884,58103,murder,1360356873 +96884,58103,secret service,1360356890 +96884,58103,spain,1360356866 +96884,58103,terrorism,1360356878 +96884,58103,unrealistic time lapse,1360356885 +96884,58103,US President,1360356871 +96884,58105,bab cinema,1288743322 +96884,58105,based on a book,1288743280 +96884,58105,cgi,1288743353 +96884,58105,childish,1288743375 +96884,58105,children,1288743289 +96884,58105,fantasy,1288743283 +96884,58105,haunted house,1288743332 +96884,58105,magic,1288743309 +96884,58105,silly,1288743375 +96884,58105,transformation,1288743337 +96884,58105,twins,1288743340 +96884,58376,awful truth,1241150176 +96884,58376,documentary,1297663306 +96884,58376,eye-opening,1297663313 +96884,58376,financial power,1297663311 +96884,58376,Peter Joseph,1297663303 +96884,58432,few funny scenes,1241241643 +96884,58432,plot without a clear problem to solve,1241241643 +96884,58743,boring,1260304858 +96884,58743,pirates,1249347920 +96884,58743,soldiers,1249347920 +96884,58743,spanish,1249347857 +96884,58998,break-up,1302841085 +96884,58998,comedy,1302841026 +96884,58998,Hawaii,1302841053 +96884,58998,hotel,1302841055 +96884,58998,male nudity,1302841018 +96884,58998,Mila Kunis,1302841140 +96884,58998,Nudity (Topless),1302841021 +96884,58998,puppets,1302841036 +96884,58998,romance,1302841094 +96884,59037,CGI,1242073817 +96884,59037,Christina Ricci,1242073733 +96884,59037,Emile Hirsch,1242073738 +96884,59037,Excellent FXs,1242073721 +96884,59037,future,1242073949 +96884,59037,poor fight choreography,1242073873 +96884,59037,Wachowski brothers,1242073934 +96884,59040,archangel,1247879191 +96884,59040,fallen angel,1247879191 +96884,59040,few action scenes,1247879408 +96884,59040,humanity,1247879191 +96884,59040,Made for $150.000 Aussie dolars,1247879375 +96884,59387,1920s,1252557465 +96884,59387,fantasy,1252557434 +96884,59387,fantasy world,1252557424 +96884,59387,hard to understand,1256180977 +96884,59387,hospital,1252557409 +96884,59387,mask,1252557420 +96884,59387,patient,1252557417 +96884,59387,pharmaceutical,1252557415 +96884,59387,story-in-a-story,1252557449 +96884,59387,storytelling,1252557443 +96884,59387,stunts,1256181015 +96884,59387,suicide attempt,1252557474 +96884,59387,surreal,1252557453 +96884,59387,unclear ending,1256180929 +96884,59387,unclear plot,1256180937 +96884,59501,adventure,1249348406 +96884,59501,based on a book,1249348410 +96884,59501,childish,1249348397 +96884,59501,fantasy,1249348401 +96884,59501,narnia,1249348424 +96884,59501,ridiculous,1249348396 +96884,59501,silly,1249348397 +96884,59615,adventure,1241155041 +96884,59615,archaeology,1241155045 +96884,59615,Harrison Ford,1241155035 +96884,59615,indiana jones,1241155038 +96884,59615,joseph campbell's study of mythology influenced,1241154934 +96884,59615,plot point:solving riddles/puzzles,1241155080 +96884,59615,plot twist,1241155034 +96884,59615,Steven Spielberg,1241155028 +96884,59731,ambition,1399523104 +96884,59731,American culture,1399523068 +96884,59731,archive footage,1399523328 +96884,59731,Arnold Schwarzenegger,1399523085 +96884,59731,bodybuilding,1399523324 +96884,59731,cheating,1399523093 +96884,59731,Chris Bell,1399523321 +96884,59731,Competition,1399523301 +96884,59731,documentary,1399523314 +96884,59731,drug use,1399523289 +96884,59731,drugs,1399523294 +96884,59731,Hypocrisy,1399523096 +96884,59731,politics,1399523286 +96884,59731,social commentary,1399523072 +96884,59731,sports,1399523297 +96884,59731,steroids,1399523298 +96884,59731,well written and structured,1399523350 +96884,60069,adventure,1301816375 +96884,60069,Animation,1301816406 +96884,60069,artificial intelligence,1301816381 +96884,60069,dystopia,1301816418 +96884,60069,environment,1301816387 +96884,60069,Future,1301816391 +96884,60069,inspirational,1301816372 +96884,60069,pixar,1301816421 +96884,60069,post-apocalyptic,1301816360 +96884,60069,robots,1301816368 +96884,60069,romance,1301816400 +96884,60069,Sci-Fi,1301816357 +96884,60069,social commentary,1301816362 +96884,60069,space,1301816366 +96884,60684,1980s,1251571772 +96884,60684,adapted from:comic,1251571776 +96884,60684,alternate reality,1251571736 +96884,60684,author:Alan Moore,1251571715 +96884,60684,bullet time overuse,1251571764 +96884,60684,cold war,1251572040 +96884,60684,comic book,1251571751 +96884,60684,comics,1251571851 +96884,60684,dystopia,1251571739 +96884,60684,graphic novel,1251571794 +96884,60684,half adult,1251572012 +96884,60684,half childish,1251572004 +96884,60684,nuclear war,1251572035 +96884,60684,Nudity (Topless),1251571743 +96884,60684,sci-fi,1251571808 +96884,60684,storytelling,1251571815 +96884,60684,stylized violence,1251571800 +96884,60684,superhero,1251572079 +96884,60684,superheroes,1251572069 +96884,60981,anime,1405227722 +96884,60981,dystopic future,1405227741 +96884,60981,ultra-violence,1405227726 +96884,61160,adventure,1242074399 +96884,61160,children oriented,1242074338 +96884,61160,fantasy,1242074395 +96884,61160,Georege Lucas,1242074352 +96884,61160,mystic warriors,1242074390 +96884,61160,No John Williams music,1242074329 +96884,61160,sci-fi,1242074415 +96884,61160,space,1242074424 +96884,61160,Star Wars,1242074346 +96884,61248,bad plot,1252902674 +96884,61248,car racing,1252902699 +96884,61248,cars with weapons,1252902739 +96884,61248,good action,1252902680 +96884,61248,good stunts,1252902691 +96884,61248,remake,1252902696 +96884,61248,video game like,1252902756 +96884,61323,cia,1382914690 +96884,61323,dark humor,1382914676 +96884,61323,divorce,1382914685 +96884,61323,espionage,1382914685 +96884,61323,greed,1382914697 +96884,61323,stupidity,1382914693 +96884,61323,twists & turns,1382914671 +96884,61323,weird,1382914704 +96884,61742,Argentina,1257995961 +96884,61742,Che Guevara,1257996124 +96884,61742,drugs,1257995979 +96884,61742,fame,1257996004 +96884,61742,family,1257996007 +96884,61742,father-daughter relationship,1257996016 +96884,61742,fidel castro,1257996114 +96884,61742,football,1257995956 +96884,61742,mafia,1257996053 +96884,61742,Maradona,1257995964 +96884,61742,soccer,1257995967 +96884,62374,cia,1401816317 +96884,62374,middle east,1401816320 +96884,62374,Ridley Scott,1401816323 +96884,62374,slow paced,1401816360 +96884,62374,UAV,1401816327 +96884,62434,Amateur Porn,1289407732 +96884,62434,Elizabeth Banks,1289407663 +96884,62434,Male Full Frontal Nudity,1289407681 +96884,62434,Nudity (Full Frontal),1289407707 +96884,62434,Nudity (Topless),1289407700 +96884,62434,pornography,1289407739 +96884,62434,racist humor,1289407635 +96884,62434,Seth Rogen,1289407646 +96884,62434,sex,1289407642 +96884,62434,Sex Comedy,1289407749 +96884,62434,Sex Scene,1289407630 +96884,62434,Sexual Humor,1289407620 +96884,62434,Star Wars,1289407612 +96884,62586,awfull parody,1261361805 +96884,62586,dumb movie,1261361787 +96884,62586,idiotic,1261361655 +96884,62586,low audience iq,1261361839 +96884,62586,michael moore,1261361854 +96884,62586,parody,1261361628 +96884,62586,pathetic,1261361747 +96884,62586,politics,1261361849 +96884,62586,sad plot,1261361813 +96884,62586,taliban,1261361873 +96884,62644,classroom,1273204910 +96884,62644,dictatorship,1273204850 +96884,62644,discrimination,1273204910 +96884,62644,high school,1273204819 +96884,62644,nationalism,1273204819 +96884,62644,Nazis,1273204819 +96884,62644,psychology,1273204819 +96884,62644,school,1273204910 +96884,62644,social experiment,1273204883 +96884,62644,violence,1273204910 +96884,62970,magic,1245198636 +96884,63062,angelina jolie,1265912619 +96884,63062,based on a true story,1265912623 +96884,63062,Clint Eastwood,1265912629 +96884,63062,impostor,1265912634 +96884,63062,John Malkovich,1265912750 +96884,63062,mother-son relationship,1265912735 +96884,63062,not happy ending,1265912708 +96884,63062,police,1265912638 +96884,63062,police corruption,1265912640 +96884,63062,wrongly accused,1265912646 +96884,63072,cannibalism,1296023687 +96884,63072,Charlize Theron,1296023689 +96884,63072,depressing,1296023683 +96884,63072,dystopia,1296023660 +96884,63072,few action scenes,1296023861 +96884,63072,man is man's worst enemy,1296023678 +96884,63072,Pointless,1296023702 +96884,63072,post-apocalyptic,1296023674 +96884,63072,survival,1296023811 +96884,63072,tense,1296023669 +96884,63072,Viggo Mortensen,1296023671 +96884,63113,Daniel Craig,1354734383 +96884,63113,James Bond,1354734386 +96884,63113,secret service,1354734393 +96884,63113,spy,1354734390 +96884,63131,comedy,1304307840 +96884,63131,Elizabeth Banks,1304307812 +96884,63131,geeks,1304307844 +96884,63131,Kiss,1304307835 +96884,63131,role playing,1304307914 +96884,63131,role playing game,1304307830 +96884,63131,Seann William Scott,1304307893 +96884,63273,Michael Moore,1243283315 +96884,63479,Amanda Crew,1270011268 +96884,63479,Amish,1270011288 +96884,63479,comedy,1270011284 +96884,63479,dating,1270011335 +96884,63479,Katrina Bowden,1270011367 +96884,63479,losing virginity,1270011279 +96884,63479,love,1270011404 +96884,63479,road trip,1270011297 +96884,63479,romance,1270011282 +96884,63479,teen movie,1270011272 +96884,63479,virginity,1270011274 +96884,63992,audience intelligence underestimated,1267847820 +96884,63992,based on a book,1267847784 +96884,63992,Based On Novel,1267847781 +96884,63992,boring,1267847836 +96884,63992,chick flick,1267847820 +96884,63992,childish,1267847858 +96884,63992,fantasy,1267847766 +96884,63992,HIGH SCHOOL LIFE,1267847733 +96884,63992,horrible,1267847758 +96884,63992,Kristen Stewart,1267847764 +96884,63992,overrated,1267847753 +96884,63992,silly,1267847820 +96884,63992,teen,1267847792 +96884,63992,Teen movie,1267847739 +96884,63992,teenagers,1267847740 +96884,63992,Vampire,1267847744 +96884,63992,Vampire Human Love,1267847739 +96884,63992,vampires,1267847748 +96884,63992,vampires fail,1267847899 +96884,64030,accelerated fight scenes,1242782223 +96884,64030,action,1242788201 +96884,64030,cars,1242782402 +96884,64030,happy ending,1242788235 +96884,64030,short in length,1242788371 +96884,64030,unrealistic,1242782424 +96884,64032,Christmas,1260678993 +96884,64032,family,1260678993 +96884,64032,love,1260678993 +96884,64032,Vince Vaughn,1260678942 +96884,64034,based on a book,1245553081 +96884,64034,Friendship,1245553004 +96884,64034,good acting,1245553056 +96884,64034,Holocaust,1245553095 +96884,64034,irony,1245553008 +96884,64034,Nazi,1245553075 +96884,64034,Nazi Germany,1245553085 +96884,64034,sad,1245553117 +96884,64034,World War II,1245553079 +96884,64614,classic car,1265911735 +96884,64614,Clint Eastwood,1265911709 +96884,64614,gangsters,1265911718 +96884,64614,life & death,1265911691 +96884,64614,racism,1265911684 +96884,64614,revenge,1265911689 +96884,64614,sacrifice,1265911681 +96884,64839,father daughter relationship,1243097382 +96884,64839,no clear ending,1241320834 +96884,64839,protagonist try to make things good,1241320834 +96884,64839,sad,1243097364 +96884,64839,sports,1243097407 +96884,64839,steroids,1243097370 +96884,64839,strippers,1243097417 +96884,64969,brainwash,1265911450 +96884,64969,few funny scenes,1265911513 +96884,64969,Jim carrey,1265911434 +96884,64969,motorcycle,1265911443 +96884,64969,rock band,1265911552 +96884,64969,romantic comedy,1265911532 +96884,64969,Zooey Deschanel,1265911432 +96884,65225,awful truth,1241150554 +96884,65225,documentary,1297663322 +96884,65225,Peter Joseph,1297663327 +96884,65230,animal:dog,1267847577 +96884,65230,dog,1267847561 +96884,65230,dogs,1267847559 +96884,65230,drama and commedy,1267847568 +96884,65230,Family Drama,1267847614 +96884,65230,Florida,1267847631 +96884,65230,Jennifer Aniston,1267847527 +96884,65230,journalism,1267847628 +96884,65230,Labrador,1267847583 +96884,65230,marriage,1267847553 +96884,65230,Owen Wilson,1267847536 +96884,65230,Philadelphia,1267847539 +96884,65230,pregnancy,1267847623 +96884,65230,prioritize family over career,1267847545 +96884,65230,sad but good,1267847594 +96884,65290,business,1289011911 +96884,65290,documentary,1289011907 +96884,65290,documentary critique,1289011907 +96884,65290,Iraq,1289011859 +96884,65290,Iraq War,1289011862 +96884,65290,Middle East,1289011865 +96884,65290,military,1289011876 +96884,65290,war,1289011882 +96884,65290,warfare,1289011882 +96884,65642,directorial debut,1277695072 +96884,65642,murder,1277695040 +96884,65642,no ending,1277695094 +96884,65642,not believable,1277695034 +96884,65642,Not enough complicated,1277695028 +96884,65642,Nudity (Topless),1277695037 +96884,65642,paradox,1277695047 +96884,65642,time travel,1277695043 +96884,65982,acting,1244423429 +96884,65982,action,1244423415 +96884,65982,fantasy,1244423352 +96884,65982,norse,1244423367 +96884,65982,plot holes,1244423488 +96884,65982,space,1244423417 +96884,65982,vikings,1244423363 +96884,66198,arms dealer,1381344237 +96884,66198,banking,1381344242 +96884,66198,corruption,1381344248 +96884,66198,justice,1381344254 +96884,66198,realistic,1381344220 +96884,66198,zeitgeist,1381344325 +96884,66203,adapted from:book,1249792410 +96884,66203,Ben Affleck,1249792407 +96884,66203,Drew Barrymore,1249792414 +96884,66203,happy ending,1249792592 +96884,66203,Jennifer Aniston,1249792422 +96884,66203,romance,1249792440 +96884,66203,romantic comedy,1249792435 +96884,66203,Scarlett Johansson,1249792431 +96884,66203,sincerity,1249792573 +96884,66297,animation,1328764743 +96884,66297,based on a TV show,1328764738 +96884,66297,comedy,1328764746 +96884,66297,intelligent humor,1328764734 +96884,66297,overrated,1328764730 +96884,66297,sci fi,1328764749 +96884,66639,action,1242788528 +96884,66639,based on a video game,1242788530 +96884,66639,poor fight choreography,1242782453 +96884,66639,poor plot,1242782458 +96884,66691,Antonio Banderas,1248576083 +96884,66691,lies,1248576145 +96884,66691,Morgan Freeman,1248576083 +96884,66691,robbers,1248576145 +96884,66691,thieves,1248576145 +96884,66691,unrealistic,1248576242 +96884,67087,friendship,1349119228 +96884,67087,Jason Segel,1349119243 +96884,67087,masculinity,1349119255 +96884,67087,Paul Rudd,1349119245 +96884,67087,wedding,1349119247 +96884,67197,aliens,1247370277 +96884,67197,Bad direction,1247370842 +96884,67197,Nicolas Cage,1247370426 +96884,67197,plot holes,1247370430 +96884,67197,sci-fi,1247370251 +96884,67408,3D,1265911019 +96884,67408,alien invasion,1265911025 +96884,67408,aliens,1265911045 +96884,67408,animation,1265911048 +96884,67408,computer animation,1265911067 +96884,67408,few funny scenes,1265911084 +96884,67408,monsters,1265911043 +96884,67408,Predictable,1265911037 +96884,67534,kung fu,1241325430 +96884,67534,martial arts,1241325437 +96884,67534,nice fight choreography,1241325539 +96884,67867,childish,1241839900 +96884,67867,Dragon Ball,1241840363 +96884,67867,inaccurate adaptation,1241839845 +96884,67867,martial arts,1241840380 +96884,67867,poor fight choreography,1241840692 +96884,67867,poor performance,1241840111 +96884,67867,stereotypical portray for kids,1241840544 +96884,67867,underestimate the audience,1241839996 +96884,68135,being a kid again,1252299598 +96884,68135,geeks,1252299713 +96884,68135,geeks on screen,1252299720 +96884,68135,high school,1252299594 +96884,68135,Love story,1252299572 +96884,68135,Michelle Trachtenberg,1252299848 +96884,68135,parent-children relationship,1252299636 +96884,68135,parenthood,1252299652 +96884,68135,redemption,1252299675 +96884,68135,redemptive,1252299694 +96884,68157,gore,1398836750 +96884,68157,Nazis,1398836745 +96884,68157,revenge,1398836735 +96884,68157,satire,1398836739 +96884,68157,World War II,1398836742 +96884,68237,alter ego,1268018774 +96884,68237,cloning,1268018757 +96884,68237,corporate greed,1268018760 +96884,68237,death,1268018765 +96884,68237,death/fatality,1268018754 +96884,68237,dystopia,1268018749 +96884,68237,hallucination,1268018769 +96884,68237,isolation,1268018743 +96884,68237,moon,1268018748 +96884,68237,psychology,1268018389 +96884,68237,right science,1268018887 +96884,68237,right technology,1268018909 +96884,68237,Sci-fi,1268018385 +96884,68237,science,1268018887 +96884,68237,slow paced,1268018784 +96884,68237,solitude,1268018398 +96884,68237,space,1268018391 +96884,68237,technology,1268018909 +96884,68319,action,1242781031 +96884,68319,bad cgi,1242781035 +96884,68319,comic book,1242781044 +96884,68319,Comic Book adaption,1242781048 +96884,68319,good story,1242781489 +96884,68319,hugh jackman,1242781056 +96884,68358,adventure,1242072751 +96884,68358,BGM performed by orchesta,1242072951 +96884,68358,future,1242072765 +96884,68358,FX,1242072916 +96884,68358,good performance,1242073505 +96884,68358,good plot,1242073597 +96884,68358,realistic,1242073443 +96884,68358,remake better than original version,1242072840 +96884,68358,sci fi,1242072794 +96884,68358,space,1242072770 +96884,68358,Star Trek,1242072773 +96884,68358,time travel,1242072782 +96884,68522,beautiful scenery,1246813571 +96884,68522,earth,1246813601 +96884,68522,ecology,1246813638 +96884,68522,nature,1246813577 +96884,68522,protagonist are animals,1246813758 +96884,68522,scenic,1246813581 +96884,68554,action,1249348228 +96884,68554,agnosticism,1249348220 +96884,68554,Ewan McGregor,1249348270 +96884,68554,mystery,1249348205 +96884,68554,secrets,1249348213 +96884,68554,thriller,1249348210 +96884,68554,Tom Hanks,1249348270 +96884,68554,twisted ending,1249348298 +96884,68659,geek,1242788651 +96884,68659,Kristen Bell,1242789102 +96884,68659,nerd,1242788655 +96884,68659,only a few jokes,1242788699 +96884,68659,star wars,1242788638 +96884,68659,trip,1242788771 +96884,68791,action,1245129429 +96884,68791,artificial intelligence,1245129435 +96884,68791,bad plot,1245197979 +96884,68791,cgi,1245129434 +96884,68791,no blood,1245129422 +96884,68791,post-apocalyptic,1245129440 +96884,68791,sci-fi,1245129427 +96884,68791,sequel,1245129425 +96884,68791,weak dialoges,1245129424 +96884,68791,weak plot,1245129423 +96884,68793,Amy Adams,1287981660 +96884,68793,Ben Stiller,1287971582 +96884,68793,boring,1287981692 +96884,68793,few funny scenes,1287981679 +96884,68793,history,1287981641 +96884,68793,museum,1287971570 +96884,68793,Owen Wilson,1287971576 +96884,68793,Ricky Gervais,1287981645 +96884,68793,Robin Williams,1287971603 +96884,68793,sequel,1287971573 +96884,68954,adventure,1245517059 +96884,68954,computer animation,1245517061 +96884,68954,dreams,1245517124 +96884,68954,friendship,1245517182 +96884,68954,happy ending,1245517136 +96884,68954,Pixar,1245517056 +96884,68954,sad intro,1245517154 +96884,68959,alchemy,1246903932 +96884,68959,anime,1246903774 +96884,68959,few action scenes,1246903861 +96884,68959,nazis,1246903942 +96884,68959,sequel to TV show,1246904080 +96884,69069,camp,1262801780 +96884,69069,cheerleading,1262801791 +96884,69069,football,1262801993 +96884,69069,Gay Character,1262801871 +96884,69069,lesbian character,1262801894 +96884,69069,Nudity (Topless),1262801972 +96884,69069,sarah roemer,1262801763 +96884,69069,summer camp,1262802033 +96884,69122,absurd,1323056209 +96884,69122,casino,1323056309 +96884,69122,Drinking,1323056212 +96884,69122,drugs,1323056218 +96884,69122,flashbacks,1323056264 +96884,69122,hotel,1323056229 +96884,69122,Las Vegas,1323056203 +96884,69122,Nudity (Topless),1323056206 +96884,69122,strippers,1323056251 +96884,69122,Zach Galifianakis,1323056235 +96884,69278,comedy,1259549387 +96884,69278,dinosaurs,1259549358 +96884,69278,few funny scenes,1259549383 +96884,69278,music gags,1259549365 +96884,69278,Parallel universe,1259549349 +96884,69278,time travel,1259549331 +96884,69278,Will Ferrell,1259549296 +96884,69306,Denzel Washington,1260292520 +96884,69306,few action scenes,1260292562 +96884,69306,John Travolta,1260292523 +96884,69306,subway,1260292536 +96884,69306,too simple plot,1260292637 +96884,69306,trains,1260292532 +96884,69526,action,1247889247 +96884,69526,audience intelligence underestimated,1247893108 +96884,69526,bad plot,1247893330 +96884,69526,based on a TV show,1247891078 +96884,69526,cgi,1247893466 +96884,69526,comic book,1247893136 +96884,69526,Excellent FXs,1247893390 +96884,69526,franchise,1247893139 +96884,69526,humanlike robots,1247891078 +96884,69526,long length,1247893310 +96884,69526,Megan Fox,1247889243 +96884,69526,military,1247893318 +96884,69526,plot holes,1247893335 +96884,69526,ridiculous,1247891073 +96884,69526,robots,1247891077 +96884,69526,sci-fi,1247893399 +96884,69526,sequel,1247891077 +96884,69526,silly,1247891074 +96884,69526,stop using useless characters for filler,1247891079 +96884,69529,earth related,1246310704 +96884,69529,ecology,1249761783 +96884,69529,environmental,1249761735 +96884,69529,nature,1249761738 +96884,69529,scenic,1249761746 +96884,69757,artistic,1380508762 +96884,69757,fate,1380508774 +96884,69757,great soundtrack,1380508805 +96884,69757,intelligent,1380508757 +96884,69757,Joseph Gordon-Levitt,1380508752 +96884,69757,nonlinear,1380508747 +96884,69757,stylized,1380508778 +96884,69784,cocks,1291676687 +96884,69784,Cohen has balls,1291676609 +96884,69784,dicks,1291676687 +96884,69784,ending,1291676649 +96884,69784,funny,1291676645 +96884,69784,gay,1291676612 +96884,69784,homosexuality,1291676601 +96884,69784,mockumentary,1291676630 +96884,69784,Sacha Baron Cohen,1291676595 +96884,69784,social commentary,1291676591 +96884,69830,Bruce Dickinson,1288101380 +96884,69830,Dave Murray,1288101390 +96884,69830,heavy metal,1288101368 +96884,69830,iron maiden,1288101428 +96884,69830,music business,1288101370 +96884,69830,Nicko McBrain,1288101385 +96884,69830,rock and roll,1288101362 +96884,69830,Steve Harris,1288101383 +96884,69830,world tour,1288101415 +96884,69844,adapted from:book,1252819681 +96884,69844,based on a book,1252819678 +96884,69844,fantasy,1252819658 +96884,69844,high school,1252819706 +96884,69844,magic,1252819663 +96884,69844,sequel,1252819669 +96884,69844,teenagers,1252819673 +96884,69951,cgi,1392516444 +96884,69951,confusing ending,1392516487 +96884,69951,deal with the devil,1392516406 +96884,69951,devil,1392516410 +96884,69951,dwarf,1392516440 +96884,69951,Ending,1392516434 +96884,69951,fantasy,1392516403 +96884,69951,imagination,1392516455 +96884,69951,immortality,1392516400 +96884,69951,lily cole,1392516558 +96884,70286,action,1254021477 +96884,70286,aliens,1254021364 +96884,70286,genetics,1254021370 +96884,70286,justice,1254021413 +96884,70286,mech,1254021379 +96884,70286,mutation,1254021385 +96884,70286,need a bit more action,1254021471 +96884,70286,peter jackson,1254021426 +96884,70286,political commentary,1254021415 +96884,70286,redemption,1254021393 +96884,70286,sci-fi,1254021390 +96884,70286,social commentary,1254021419 +96884,70286,South Africa,1254021400 +96884,70286,Special Effects,1254021397 +96884,70286,transformation,1254021402 +96884,70286,weapons,1254021405 +96884,70336,80s nostalgia,1254887441 +96884,70336,audience intelligence underestimated,1254887467 +96884,70336,bad plot,1254887457 +96884,70336,childish,1254887393 +96884,70336,FX,1254887408 +96884,70336,good versus evil,1254887508 +96884,70336,good vs evil,1254887508 +96884,70336,infantil,1254887543 +96884,70336,infantile,1254887543 +96884,70336,plot holes,1254887457 +96884,70336,sci-fi,1254887426 +96884,70336,silly plot,1254887393 +96884,70336,Special Effects,1254887426 +96884,70361,bank robbery,1253510306 +96884,70361,bombs,1253510123 +96884,70361,car chase,1253510159 +96884,70361,car destruction,1253510499 +96884,70361,clutches,1253510346 +96884,70361,cops,1253510294 +96884,70361,crime lord,1253510331 +96884,70361,destruction,1253510191 +96884,70361,detective,1253510115 +96884,70361,enigmas,1253510353 +96884,70361,FBI,1253510294 +96884,70361,FBI pursuit,1253510294 +96884,70361,FBI pursuit/case,1253510294 +96884,70361,hidden plan,1253510471 +96884,70361,kidnapping,1253510095 +96884,70361,no realistic cop's freedom to act,1253510723 +96884,70361,original plot,1253510565 +96884,70361,police,1253510108 +96884,70361,puzzles,1253510390 +96884,70361,unreal ending,1253510556 +96884,70663,based on a novel,1257305064 +96884,70663,father-son relationship,1257305079 +96884,70663,Gay Character,1257304974 +96884,70663,gay friend,1257304974 +96884,70663,graduation,1257304917 +96884,70663,Hayden Panettiere,1257304938 +96884,70663,high school,1257304872 +96884,70663,impossible love,1257304996 +96884,70663,love story,1257304917 +96884,70663,menage-a-trois,1257305166 +96884,70663,nerd,1257304858 +96884,70663,overprotective mother,1257305136 +96884,71033,Academy Award - Best Foreign Film,1289633353 +96884,71033,Argentina,1289633321 +96884,71033,based on a book,1268366367 +96884,71033,corruption,1268366200 +96884,71033,crime,1268366329 +96884,71033,drama,1268366329 +96884,71033,excellent acting,1268366313 +96884,71033,excellent script,1268366313 +96884,71033,Juan José Campanella,1289633329 +96884,71033,love,1268366341 +96884,71033,murder,1268366200 +96884,71033,mystery,1268366200 +96884,71033,protagonist is writer,1289633340 +96884,71033,rape,1268366200 +96884,71033,revenge,1268366253 +96884,71033,romance,1268366200 +96884,71057,alchemy,1269668143 +96884,71057,dark fantasy,1269668099 +96884,71057,dystopia,1269668095 +96884,71057,giant robots,1269668094 +96884,71057,good versus evil,1269668116 +96884,71057,man versus machine,1269668104 +96884,71057,post-apocalyptic,1269668107 +96884,71057,robots,1269668081 +96884,71057,sci-fi,1269668085 +96884,71057,survival,1269668088 +96884,71057,war,1269668149 +96884,71106,future,1256186004 +96884,71106,nerds,1256185994 +96884,71106,pub,1256186001 +96884,71106,sci-fi,1256185994 +96884,71106,time travel,1256185972 +96884,71129,action,1270429149 +96884,71129,adult,1270429145 +96884,71129,aliens,1270429248 +96884,71129,animation,1270429163 +96884,71129,blood,1270429187 +96884,71129,comic book,1270429123 +96884,71129,DC Comics,1270429122 +96884,71129,fantasy,1270429230 +96884,71129,guardian,1270429226 +96884,71129,robots,1270429241 +96884,71129,sci-fi,1270429163 +96884,71129,space,1270429218 +96884,71129,superhero,1270429131 +96884,71135,action,1266002618 +96884,71135,aliens,1266002529 +96884,71135,amnesia,1266002508 +96884,71135,blood,1266002514 +96884,71135,future,1266002599 +96884,71135,hybernation,1266002569 +96884,71135,mutation,1266002632 +96884,71135,post-apocalyptic,1266002518 +96884,71135,sci-fi,1266002589 +96884,71135,space travel,1266002538 +96884,71254,action,1262631169 +96884,71254,hackers,1262631712 +96884,71254,internet,1262631696 +96884,71254,killing,1262631172 +96884,71254,light plot,1262631743 +96884,71254,mindcontrol,1262631180 +96884,71254,prison,1262631639 +96884,71254,prisoners,1262631639 +96884,71254,sci-fi,1262631177 +96884,71254,video game,1262631679 +96884,71254,video games,1262631675 +96884,71254,virtual life,1262631184 +96884,71254,virtual reality,1262631657 +96884,71282,America-centric,1282939992 +96884,71282,business,1282940038 +96884,71282,capitalism,1282940082 +96884,71282,corporations,1282940162 +96884,71282,farming,1282940021 +96884,71282,food,1282940015 +96884,71282,food safety,1282940029 +96884,71282,informative,1282939995 +96884,71282,investigative journalism,1282939998 +96884,71282,Monsanto,1282940006 +96884,71429,depress,1349119045 +96884,71429,depressing,1349119042 +96884,71429,reflective,1349119088 +96884,71429,Robin Williams,1349119037 +96884,71429,sad,1349119132 +96884,71429,slow start,1349119062 +96884,71429,social commentary,1349119073 +96884,71429,suicide,1349119048 +96884,71450,awful truth,1269667864 +96884,71450,business,1269667842 +96884,71450,capitalism,1269667852 +96884,71450,current,1269667845 +96884,71450,democracy,1269667925 +96884,71450,globalisation,1269667938 +96884,71450,goverment lies,1269667968 +96884,71450,Michael Moore,1269667839 +96884,71450,money,1269667882 +96884,71450,rich and poor,1269667899 +96884,71450,truth,1269667878 +96884,71530,alternate reality,1258059949 +96884,71530,androids,1258059956 +96884,71530,Bruce Willis,1258059986 +96884,71530,future,1258060067 +96884,71530,Husband Wife Relationship,1258060049 +96884,71530,robots,1258060043 +96884,71530,sci-fi,1258060081 +96884,71530,technology,1258060081 +96884,71535,clowns,1266299113 +96884,71535,comedy,1266299117 +96884,71535,Emma Stone,1266299188 +96884,71535,funny,1266299121 +96884,71535,gore,1266299137 +96884,71535,horror,1266299132 +96884,71535,parody,1266299103 +96884,71535,post-apocalyptic,1266299108 +96884,71535,zombies,1266299146 +96884,71573,Antarctica,1259214572 +96884,71573,cold,1259214709 +96884,71573,crime,1259214632 +96884,71573,few action scenes,1259214659 +96884,71573,few mystery,1259214658 +96884,71573,ice world,1259214691 +96884,71573,Kate Beckinsale,1259214601 +96884,71573,Planes,1259214739 +96884,71573,scenic,1259214626 +96884,71573,seasons,1259214764 +96884,71745,bad ending,1315715617 +96884,71745,no ending,1315715630 +96884,72011,airplane,1373076257 +96884,72011,business,1373076260 +96884,72011,capitalism,1373076265 +96884,72011,corporate america,1373076267 +96884,72011,George Clooney,1373076269 +96884,72011,infidelity,1373076249 +96884,72011,loneliness,1373076274 +96884,72011,Nudity (Rear),1373076255 +96884,72011,travel,1373076280 +96884,72226,animation,1340320595 +96884,72226,animation style,1340320591 +96884,72226,based on a book,1340320568 +96884,72226,father-son relationship,1340320587 +96884,72226,survival,1340320607 +96884,72226,talking animals,1340320602 +96884,72308,clip show,1304181045 +96884,72308,lack of story,1304181039 +96884,72308,nudity,1304181029 +96884,72308,plot,1304181041 +96884,72308,sci-fi,1304181033 +96884,72308,space,1304181035 +96884,72378,audience intelligence underestimated,1261289825 +96884,72378,bad physics,1261289629 +96884,72378,bad plot,1261289743 +96884,72378,bad science,1261289771 +96884,72378,cgi,1261289725 +96884,72378,Excellent FXs,1261289642 +96884,72378,FX,1261289679 +96884,72378,sci-fi,1261289631 +96884,72378,science fiction,1261289679 +96884,72378,Special Effects,1261289679 +96884,72378,thriller,1261289604 +96884,72393,abduction,1272336726 +96884,72393,alaska,1272336691 +96884,72393,aliens,1272336500 +96884,72393,fake,1272336515 +96884,72393,fake documental,1272336531 +96884,72393,fake documentary,1272336523 +96884,72393,farce,1272336649 +96884,72393,fbi,1272336695 +96884,72393,hoax,1272336543 +96884,72393,lie,1272336766 +96884,72393,Milla Jovovich,1272336504 +96884,72393,not real,1272336515 +96884,72393,not true,1272336827 +96884,72393,not true tale,1272336827 +96884,72393,psychology,1272336702 +96884,72393,sumerian culture,1272336683 +96884,72489,between fantastic & realistic,1271785010 +96884,72489,blood,1271784651 +96884,72489,dark,1271784654 +96884,72489,extremely gory,1271784660 +96884,72489,martial arts,1271784650 +96884,72489,ninja,1271784657 +96884,72489,ninjas,1271784647 +96884,72489,plot,1271784916 +96884,72489,poor plot,1271784932 +96884,72489,stylized violence,1271784669 +96884,72601,animation,1275198838 +96884,72601,based on a comic,1275198897 +96884,72601,Cartoon,1275198838 +96884,72601,childish,1275198880 +96884,72601,comedy,1275198838 +96884,72601,ninja,1275198866 +96884,72601,nostalgia,1275198838 +96884,72601,silly,1275198880 +96884,72601,superhero,1275198898 +96884,72601,tnmt,1275198864 +96884,72601,turtle,1275198860 +96884,72641,family,1279855746 +96884,72641,football,1279855654 +96884,72641,kindness of strangers,1279855727 +96884,72641,racism,1279855727 +96884,72641,Sandra Bullock,1279855646 +96884,72641,true story,1279855641 +96884,72696,business,1269832765 +96884,72696,businessman,1269832765 +96884,72696,father daughter relationship,1269832631 +96884,72696,father son relationship,1269832653 +96884,72696,father-daughter relationship,1269832653 +96884,72696,father-son relationship,1269832631 +96884,72696,fatherhood,1269832631 +96884,72696,FATHERS AND SONS,1269832653 +96884,72696,Japan,1269832805 +96884,72696,japanese,1269832805 +96884,72696,John Travolta,1269832587 +96884,72696,marketing,1269832742 +96884,72696,Robin Williams,1269832589 +96884,72696,tattoo,1269832777 +96884,72701,astronauts,1261252456 +96884,72701,cgi,1261252425 +96884,72701,excellent animation,1261252425 +96884,72701,few funny scenes,1261252435 +96884,72998,3d,1263278945 +96884,72998,aliens,1263278939 +96884,72998,beautiful scenery,1279347259 +96884,72998,cgi,1263278934 +96884,72998,Eco,1263279160 +96884,72998,ecological,1263279160 +96884,72998,ecology,1263278948 +96884,72998,futuristic,1263278896 +96884,72998,graphic design,1263278930 +96884,72998,James Cameron,1263278926 +96884,72998,jungle,1279347262 +96884,72998,long,1263279231 +96884,72998,military,1263278900 +96884,72998,minery,1263279131 +96884,72998,native americans,1279347278 +96884,72998,Natives,1263279180 +96884,72998,politics,1279347319 +96884,72998,predictable,1279347295 +96884,72998,race issues,1279347337 +96884,72998,racism,1279347270 +96884,72998,revolution,1279347299 +96884,72998,romance,1279347311 +96884,72998,sci-fi,1263278921 +96884,72998,scientist,1263279093 +96884,72998,Sigourney Weaver,1263278953 +96884,72998,stunning,1263279014 +96884,72998,too long,1263279212 +96884,72998,violent,1279347274 +96884,72998,visual,1263278904 +96884,72998,war,1263278908 +96884,73017,Action,1306981315 +96884,73017,adventure,1306981268 +96884,73017,Atmospheric,1306981271 +96884,73017,choreographic violence,1306981308 +96884,73017,England,1306981321 +96884,73017,martial arts,1306981300 +96884,73017,murder,1306981273 +96884,73017,mystery,1306981305 +96884,73017,Sherlock Holmes,1306981265 +96884,73268,blood,1266723294 +96884,73268,dystopia,1266723134 +96884,73268,dystopic future,1266723134 +96884,73268,Ethan Hawke,1266723102 +96884,73268,rebels,1266723280 +96884,73268,vampires,1266723099 +96884,73276,climate change,1288202782 +96884,73276,nature,1288202784 +96884,73276,social commentary,1288202863 +96884,73321,action,1271534140 +96884,73321,Denzel Washington,1271534113 +96884,73321,dystopia,1271534038 +96884,73321,dystopic future,1271534038 +96884,73321,future,1271534046 +96884,73321,post-apocalyptic,1271534013 +96884,73868,architecture,1282631160 +96884,73868,bureaucracy,1282631083 +96884,73868,burocracy,1282631083 +96884,73868,earthship,1282631147 +96884,73868,ecological,1282631028 +96884,73868,ecology,1282631028 +96884,73868,engineering,1282631170 +96884,73868,global warming,1282631036 +96884,73868,home,1282631060 +96884,73868,house,1282631060 +96884,73868,lawsuit,1282631107 +96884,73868,michael reynolds,1282631014 +96884,73868,natural disaster,1282631060 +96884,73868,politics,1282631107 +96884,73868,tests,1282631179 +96884,73868,tires,1282631123 +96884,73929,angels,1268365721 +96884,73929,Biblical,1268365715 +96884,73929,Dennis Quaid,1268365657 +96884,73929,fantasy,1268365738 +96884,73929,horror,1268365735 +96884,73929,plot holes,1268365762 +96884,73929,religion,1268365644 +96884,73929,too short,1268365799 +96884,74111,church,1268541148 +96884,74111,crusaders,1268541283 +96884,74111,crusades,1268541276 +96884,74111,Islam,1268541090 +96884,74111,knight,1268541258 +96884,74111,knights,1268541258 +96884,74111,medieval,1268541266 +96884,74111,peace,1268541078 +96884,74111,Saladin,1268541124 +96884,74111,templar,1268541244 +96884,74111,templars,1268541247 +96884,74111,war,1268541080 +96884,74131,Brendan Fraser,1297553382 +96884,74131,family drama,1297553375 +96884,74131,Harrison Ford,1297553386 +96884,74131,overcoming obstacles,1297553371 +96884,74131,science,1297553396 +96884,74458,asylum,1282973115 +96884,74458,ending twist,1282973112 +96884,74458,insanity,1282973297 +96884,74458,Leonardo DiCaprio,1282973109 +96884,74458,plot twist,1282973121 +96884,74530,Alexandra Daddario,1278808785 +96884,74530,Bad direction,1278808817 +96884,74530,childish,1278808817 +96884,74530,gods,1278808858 +96884,74530,Greek mythology,1278808858 +96884,74530,original plot,1278808826 +96884,74530,Pierce Brosnan,1278807934 +96884,74530,silly,1278808817 +96884,74530,superhuman,1278808871 +96884,74530,Uma Thurman,1278807921 +96884,74532,baseball,1284400607 +96884,74532,Bruce Willis,1284400410 +96884,74532,few action scenes,1284400588 +96884,74532,few funny scenes,1284400588 +96884,74532,friendship,1284400537 +96884,74532,Jason Lee,1284400430 +96884,74532,jealousy,1284400537 +96884,74532,Michelle Trachtenberg,1284400424 +96884,74532,police,1284400421 +96884,74532,unoriginal,1284400418 +96884,74545,adultery,1360556880 +96884,74545,assassination,1360556882 +96884,74545,bad ending,1360556986 +96884,74545,British,1360556886 +96884,74545,drama,1360556888 +96884,74545,Ending,1360556891 +96884,74545,escape,1360556895 +96884,74545,espionage,1360556898 +96884,74545,Ewan McGregor,1360556902 +96884,74545,island,1360556904 +96884,74545,Massachusetts,1360556973 +96884,74545,mystery,1360556906 +96884,74545,Pierce Brosnan,1360556910 +96884,74545,politics,1360556948 +96884,74545,suspense,1360556923 +96884,74545,thriller,1360556925 +96884,74677,activism,1288897415 +96884,74677,Critical thinking,1288897412 +96884,74677,Message,1288897419 +96884,74677,morality,1288897478 +96884,74677,political satire,1288897425 +96884,74677,social commentary,1288897458 +96884,74795,CIA Agent,1295061595 +96884,74795,conspiracy,1295061627 +96884,74795,Corrupt Government,1295061585 +96884,74795,Deception,1295061590 +96884,74795,Iraq,1295061569 +96884,74795,Iraq War,1295061580 +96884,74795,Matt Damon,1295061501 +96884,74795,Middle East,1295061566 +96884,74795,military,1295061577 +96884,74795,politics,1295061505 +96884,74795,social commentary,1295061618 +96884,74795,U.S. Army,1295061562 +96884,74795,Unjustified Invasion,1295061544 +96884,74795,war,1295061557 +96884,74795,Weapon of Mass Destruction,1295061552 +96884,75985,biomedical ethics,1326777085 +96884,75985,brutal,1326777105 +96884,75985,brutality,1326777102 +96884,75985,choreographic violence,1326777089 +96884,75985,cop-out ending,1326777187 +96884,75985,debt collection,1326777092 +96884,75985,DIY surgery,1326777097 +96884,75985,evil corporation,1326777077 +96884,75985,friendship,1326777134 +96884,75985,gore,1326777145 +96884,75985,Sci Fi.,1326777138 +96884,75985,surgery,1326777061 +96884,75985,treason,1326777156 +96884,75985,twist ending,1326777069 +96884,75985,violent,1326777073 +96884,76054,environment,1308161981 +96884,76054,Journey,1308161993 +96884,76054,ocean,1308161983 +96884,76054,scenic,1308161981 +96884,76054,turtle,1308161983 +96884,76077,acting,1279346199 +96884,76077,Direction,1279346196 +96884,76077,few funny scenes,1279346157 +96884,76077,few nice laughs,1279346157 +96884,76077,time travel,1279345996 +96884,76093,action,1298709918 +96884,76093,adventure,1298709915 +96884,76093,animated,1298709910 +96884,76093,animation,1298709933 +96884,76093,CGI,1298709913 +96884,76093,cute,1298709907 +96884,76093,dragons,1298709905 +96884,76093,Dreamworks animation,1298709901 +96884,76093,fantasy,1298709903 +96884,76093,father son conflict,1298709942 +96884,76093,flying,1298709970 +96884,76093,friendship,1298709922 +96884,76093,funny,1298709924 +96884,76093,heavy with symbolism,1298709897 +96884,76093,vikings,1298709888 +96884,76175,3d,1272520835 +96884,76175,3D version,1272520840 +96884,76175,action,1272520720 +96884,76175,armors,1272520715 +96884,76175,epic,1272520591 +96884,76175,existentialism,1272520701 +96884,76175,fantasy,1272520678 +96884,76175,FX,1272520678 +96884,76175,gods,1272520737 +96884,76175,Greek,1272520613 +96884,76175,humanity,1272520747 +96884,76175,Liam Neeson,1272520597 +96884,76175,monsters,1272520606 +96884,76175,not strictly a remake,1272520822 +96884,76175,Perseus,1272520600 +96884,76175,philosophy,1272520701 +96884,76175,Special Effects,1272520678 +96884,76251,action,1274916159 +96884,76251,drug dealing,1274916183 +96884,76251,fiction in real life,1274916321 +96884,76251,gory,1274916222 +96884,76251,graphic violence,1274916284 +96884,76251,high school,1274916180 +96884,76251,humor,1274916205 +96884,76251,Nicolas Cage,1274916163 +96884,76251,original plot,1274916256 +96884,76251,pop culture references,1274916174 +96884,76251,revenge,1274916177 +96884,76251,vigilante,1274916170 +96884,76251,weapons,1274916195 +96884,77364,action,1283176667 +96884,77364,audience intelligence underestimated,1283176767 +96884,77364,Based on a comic book,1283176670 +96884,77364,comedy,1283176667 +96884,77364,direction,1283176655 +96884,77364,original idea,1283176738 +96884,77364,plot,1283176655 +96884,77364,Sylvain White,1283176698 +96884,77540,demons,1323056813 +96884,77540,redemption,1323056810 +96884,77561,audience intelligence underestimated,1274915925 +96884,77561,Bad direction,1274915944 +96884,77561,bad physics,1274916072 +96884,77561,bad plot,1274916099 +96884,77561,bad science,1274916072 +96884,77561,based on a comic,1274915832 +96884,77561,cgi,1274916034 +96884,77561,childish,1274915871 +96884,77561,fx,1274916034 +96884,77561,good fx,1274916034 +96884,77561,Gwyneth Paltrow,1274915835 +96884,77561,physics fail,1274916081 +96884,77561,Robert Downey Jr.,1274915829 +96884,77561,Scarlett Johansson,1274915839 +96884,77561,sequel,1274915842 +96884,77561,superhero,1274915844 +96884,77561,The Avengers,1274915847 +96884,77658,astronomy,1275608496 +96884,77658,biology,1275608497 +96884,77658,Carl Sagan,1275608499 +96884,77658,earth,1275608569 +96884,77658,evolution,1275608513 +96884,77658,made for TV,1275608503 +96884,77658,physics,1275608505 +96884,77658,science,1275608508 +96884,77658,space,1275608569 +96884,77658,Vangelis,1275608545 +96884,77820,Brendan Fraser,1288587264 +96884,77820,not funny,1288587258 +96884,77866,adventure,1286209600 +96884,77866,archery,1286209601 +96884,77866,betrayal,1286209608 +96884,77866,Cate Blanchett,1286209429 +96884,77866,England,1286209458 +96884,77866,ready for sequel,1286209444 +96884,77866,remake,1286209462 +96884,77866,Rewrite history,1286209416 +96884,77866,Ridley Scott,1286209426 +96884,77866,Robin Hood,1286209438 +96884,77866,Russell Crowe,1286209435 +96884,77866,war,1286209608 +96884,78105,action,1275957294 +96884,78105,adventure,1275957294 +96884,78105,based on a video game,1275957320 +96884,78105,fantasy,1275957294 +96884,78105,FX,1275957349 +96884,78105,Gemma Arterton,1275957372 +96884,78105,kingdoms,1275957477 +96884,78105,parkour,1275957360 +96884,78105,persia,1275957320 +96884,78105,Special Effects,1275957349 +96884,78105,traitor,1275957433 +96884,78105,war,1275957498 +96884,78105,warriors,1275957492 +96884,78469,Based on a TV show,1282630722 +96884,78469,clever,1282630835 +96884,78469,clever plot,1282630843 +96884,78469,Funny,1282630759 +96884,78469,good casting,1282630757 +96884,78469,Jessica Biel,1282542932 +96884,78469,Liam Neeson,1282630741 +96884,78469,not only for fans of the original,1282542938 +96884,78499,Alive toys,1289617593 +96884,78499,childhood,1289617569 +96884,78499,Pixar,1289617545 +96884,78499,toys,1289617556 +96884,78637,3d,1292907546 +96884,78637,action,1292907546 +96884,78637,animation,1292907546 +96884,78637,cgi,1292907546 +96884,78637,Pied Piper,1292907477 +96884,78637,Rumpelstiltskin,1292907513 +96884,78637,too short,1292907567 +96884,78856,biology,1295327925 +96884,78856,business,1295328168 +96884,78856,conspiracy,1295328182 +96884,78856,corruption,1295328164 +96884,78856,dead,1295328172 +96884,78856,disease,1295328169 +96884,78856,evil corporations,1295328159 +96884,78856,food,1295327929 +96884,78856,health,1295328023 +96884,78856,Marie-Monique Robin,1295327949 +96884,78856,monsanto,1295327965 +96884,78856,poverty,1295328170 +96884,78856,science,1295327917 +96884,78893,acting,1299731809 +96884,78893,action choreography,1299731890 +96884,78893,audience intelligence underestimated,1299731873 +96884,78893,Avatar trilogy,1299731802 +96884,78893,Bad direction,1299731836 +96884,78893,cgi,1299731900 +96884,78893,characters,1299731807 +96884,78893,childish,1299731853 +96884,78893,effects,1299731797 +96884,78893,fantasy,1299731919 +96884,78893,foolish,1299731861 +96884,78893,good idea,1299731826 +96884,78893,M. Night Shyamalan,1299731941 +96884,78893,martial arts,1299731927 +96884,78893,recreation,1299731795 +96884,79006,documentary,1282079202 +96884,79006,star wars,1282079202 +96884,79057,action,1282078375 +96884,79057,audience intelligence underestimated,1282078338 +96884,79057,Bad direction,1282078211 +96884,79057,bad plot,1282078224 +96884,79057,bad science,1282078314 +96884,79057,bad sequel,1282078314 +96884,79057,childish,1282078254 +96884,79057,childish plot,1282078249 +96884,79057,Nimród Antal,1282078196 +96884,79057,predator,1282078375 +96884,79057,silly,1282078249 +96884,79091,competition,1342071590 +96884,79091,father-son relationship,1342071593 +96884,79091,mad scientist,1342071556 +96884,79091,orphans,1342071585 +96884,79091,redemption,1342071569 +96884,79091,silly,1342071574 +96884,79091,Steve Carell,1342071561 +96884,79132,action,1282799079 +96884,79132,alternate reality,1282799083 +96884,79132,Christopher Nolan,1282940221 +96884,79132,clever,1282799087 +96884,79132,complicated,1282799091 +96884,79132,dreamlike,1282799076 +96884,79132,dreams,1282799072 +96884,79132,intellectual,1282799067 +96884,79132,Intense,1282799095 +96884,79132,Leonardo DiCaprio,1282799153 +96884,79132,long,1282799147 +96884,79132,mindfuck,1282799100 +96884,79132,surreal,1282799055 +96884,79132,visually appealing,1282799063 +96884,79134,Adam Sandler,1282077969 +96884,79134,bad plot,1282078040 +96884,79134,Chris Rock,1282077965 +96884,79134,few funny scenes,1282078053 +96884,79134,Rob Schneider,1282077973 +96884,79224,action,1299726176 +96884,79224,children,1299726202 +96884,79224,drama,1299726130 +96884,79224,fight scenes,1299726159 +96884,79224,fighting,1299726170 +96884,79224,inspirational,1299726136 +96884,79224,Jackie Chan,1299726093 +96884,79224,martial arts,1299726090 +96884,79224,remake,1299726096 +96884,79274,animation,1318048818 +96884,79274,antihero,1318048822 +96884,79274,bad physics,1318048870 +96884,79274,bad science,1318048870 +96884,79274,Batman,1318048824 +96884,79287,silent,1282079528 +96884,79293,action,1304181231 +96884,79293,Angelina Jolie,1304181197 +96884,79293,assassination,1304181200 +96884,79293,betrayal,1304181216 +96884,79293,espionage,1304181209 +96884,79293,murder,1304181223 +96884,79293,not happy ending,1304181279 +96884,79293,thriller,1304181221 +96884,79293,US President,1304181226 +96884,79357,beautiful photography,1373171917 +96884,79357,cinematography,1373171872 +96884,79357,confusing,1373171875 +96884,79357,divorce,1373171938 +96884,79357,flashbacks,1373171913 +96884,79357,immortality,1373171944 +96884,79357,memory,1373171934 +96884,79357,nonlinear,1373171971 +96884,79357,Nudity (Topless),1373171881 +96884,79357,philosophy,1373171963 +96884,79357,romance,1373171885 +96884,79357,sci-fi,1373171893 +96884,79357,surreal,1373171898 +96884,79357,thought provoking,1373171888 +96884,79553,bad plot,1282079104 +96884,79553,biography,1282078976 +96884,79553,bruce lee,1282079063 +96884,79553,choreographic violence,1282078981 +96884,79553,competition,1282078987 +96884,79553,Donnie Yen,1282079040 +96884,79553,history,1282078993 +96884,79553,Hong Kong,1282079050 +96884,79553,ip man,1282079138 +96884,79553,martial arts,1282078997 +96884,79553,Sammo Hung Kam-Bo,1282079077 +96884,79553,sequel,1282079051 +96884,79553,wing chun,1282079002 +96884,79592,buddy movie,1343019222 +96884,79592,clever,1343019319 +96884,79592,comedy,1343019219 +96884,79592,Eva Mendes,1343019238 +96884,79592,funny,1343019228 +96884,79592,parody,1343019118 +96884,79592,police,1343019124 +96884,79592,political,1343019213 +96884,79592,satirical,1343019272 +96884,79592,social comentary,1343019287 +96884,79592,subtle humor,1343019179 +96884,79695,acting,1292039676 +96884,79695,Arnold Schwarzenegger,1364710847 +96884,79695,bad direction,1292039705 +96884,79695,boring,1292039666 +96884,79695,Bruce Willis,1364710851 +96884,79695,dialogue,1364710828 +96884,79695,Jason Statham,1292039681 +96884,79695,Jet Li,1292039657 +96884,79695,Mickey Rourke,1292039690 +96884,79695,Story,1364710809 +96884,79695,Sylvester Stallone,1292039684 +96884,79695,thin story,1364710814 +96884,79695,unrealistic,1364710812 +96884,79695,violence,1292039716 +96884,79702,based on a comic,1291484662 +96884,79702,cultural references,1291484655 +96884,79702,duel,1291484681 +96884,79702,fight scenes,1291484665 +96884,79702,garage band,1291484685 +96884,79702,hyperactive,1291484700 +96884,79702,video games,1291484658 +96884,80083,animation,1283958804 +96884,80083,dragon ball z,1283958808 +96884,80083,fighting,1283958804 +96884,80100,Argentina,1283958715 +96884,80100,colonial,1283958715 +96884,80100,love story,1283958715 +96884,80363,3d,1294378607 +96884,80363,adapted from:video game,1294378584 +96884,80363,Airplane,1294378601 +96884,80363,audience intelligence underestimated,1294378621 +96884,80363,Bad direction,1294378637 +96884,80363,bad plot,1294378637 +96884,80363,Big dude with large hammer,1294378598 +96884,80363,childish,1294378659 +96884,80363,childish plot,1294378659 +96884,80363,clones,1294378592 +96884,80363,Milla Jovovich,1294378586 +96884,80363,not ended,1294378572 +96884,80363,Paul W.S. Anderson,1294378735 +96884,80363,physics,1294378589 +96884,80363,silly,1294378659 +96884,80363,zombies,1294378580 +96884,80463,business,1301816148 +96884,80463,computers,1301816121 +96884,80463,friendship,1301816125 +96884,80463,internet,1301816150 +96884,80463,loneliness,1301816132 +96884,80463,nerds,1301816135 +96884,80463,software developers,1301816158 +96884,80489,bank robbery,1305854752 +96884,80489,Ben Affleck,1305854740 +96884,80489,boring,1305854784 +96884,80489,Boston,1305854707 +96884,80489,crime,1305854753 +96884,80489,drama,1305854726 +96884,80489,father-son relationship,1305854729 +96884,80489,long,1305854772 +96884,80489,police,1305854714 +96884,80489,violence,1305854716 +96884,80549,bad reputation,1303187690 +96884,80549,California,1303187697 +96884,80549,closeted homosexual,1303187673 +96884,80549,Emma Stone,1303187677 +96884,80549,family relationships,1303187669 +96884,80549,high school,1303187686 +96884,80549,religious intolerance,1303187659 +96884,80549,sexuality,1303187656 +96884,80549,virginity,1303187663 +96884,80615,Bats,1303620541 +96884,80615,childish,1303620590 +96884,80615,epic,1303620571 +96884,80615,epic adventure,1303620569 +96884,80615,flying,1303620607 +96884,80615,Owls,1303620533 +96884,80615,talking animals,1303620533 +96884,80693,depression,1343702700 +96884,80693,funny,1343702795 +96884,80693,mental illness,1343702721 +96884,80693,suicide,1343702702 +96884,80693,teenage,1343702755 +96884,80693,underdeveloped plot,1343702760 +96884,81191,education,1302323993 +96884,81191,heartbreaking,1302324018 +96884,81191,injustice,1302323983 +96884,81191,schools,1302324060 +96884,81191,social commentary,1302324000 +96884,81191,teachers,1302323990 +96884,81191,unions,1302324009 +96884,81276,cia,1305857019 +96884,81276,documentary,1305857087 +96884,81276,Latin America,1305856695 +96884,81276,media circus,1305856920 +96884,81276,politics,1305856698 +96884,81276,presidential elections,1305857038 +96884,81276,social commentary,1305856938 +96884,81276,South America,1305856708 +96884,81537,drug use,1297094356 +96884,81537,Michelle Monaghan,1297094391 +96884,81537,Pink Floyd,1297094347 +96884,81537,road trip,1297094364 +96884,81537,Robert Downey Jr.,1297094370 +96884,81537,Zach Galifianakis,1297094372 +96884,81562,adventure,1320802399 +96884,81562,drama,1320802429 +96884,81562,good direction,1320802464 +96884,81562,graphic,1320801937 +96884,81562,intense,1320802410 +96884,81562,loneliness,1320802406 +96884,81562,nature,1320802412 +96884,81562,survival,1320802415 +96884,81562,true story,1320801942 +96884,81562,wilderness,1320802419 +96884,81564,animated,1297662881 +96884,81564,animation,1297662955 +96884,81564,anti-hero,1297662883 +96884,81564,evil hero,1297662906 +96884,81564,funny,1297662910 +96884,81564,gadgets,1297662913 +96884,81564,good versus evil,1297662887 +96884,81564,music,1297662938 +96884,81564,romance,1297662891 +96884,81564,science,1297662869 +96884,81564,superheroes,1297662894 +96884,81564,twists & turns,1297662874 +96884,81788,crime,1303097604 +96884,81788,crime drama,1303097606 +96884,81788,good ending,1303097608 +96884,81788,jailbreak,1303097704 +96884,81788,Olivia Wilde,1303097635 +96884,81788,Olivia Wilde;,1303097597 +96884,81788,Pittsburgh,1303097611 +96884,81788,Russell Crowe,1303097593 +96884,81788,suspense,1303097676 +96884,82095,Alien Invasion,1301816250 +96884,82095,CGI,1301816258 +96884,82095,just not good,1301816267 +96884,82095,stupid ending,1301816265 +96884,82169,alternate reality,1303613506 +96884,82169,based on a book,1303613503 +96884,82169,C.S. Lewis,1303613562 +96884,82169,childish,1303613544 +96884,82169,dragons,1303613516 +96884,82169,foolish,1303613544 +96884,82169,kaleidoscope,1303613554 +96884,82169,magic,1303613501 +96884,82169,Narnia,1303613495 +96884,82169,silly,1303613544 +96884,82169,talking animals,1303613497 +96884,82461,3D,1295328423 +96884,82461,alter ego,1295328266 +96884,82461,cyber,1295328278 +96884,82461,daft punk,1295328281 +96884,82461,epic,1295328255 +96884,82461,hot ladies,1295328285 +96884,82461,IMAX,1295328423 +96884,82461,music,1295328251 +96884,82461,Olivia Wilde,1295328353 +96884,82461,Poor plot development,1295328457 +96884,82461,Protagonist excels in everything just because he's rich and handsome,1295328524 +96884,82461,scenic,1295328423 +96884,82461,sci-fi,1295328237 +96884,82461,sequel,1295328240 +96884,82461,soundtrack,1295328243 +96884,82461,story,1295328247 +96884,82852,Barbara Streisand,1304046132 +96884,82852,Ben Stiller,1304046135 +96884,82852,comedy,1304046150 +96884,82852,few funny scenes,1304046159 +96884,82852,Jessica Alba,1304046127 +96884,82852,Owen Wilson,1304046144 +96884,82852,Robert De Niro,1304046147 +96884,82854,few funny scenes,1297973423 +96884,83349,action,1303613813 +96884,83349,funny,1303613823 +96884,83349,kungfu,1303613809 +96884,83613,aliens,1323057117 +96884,83613,cowboys,1323057121 +96884,83613,Daniel Craig,1323057135 +96884,83613,Harrison Ford,1323057128 +96884,83613,Olivia Wilde,1323057124 +96884,83613,steampunk,1323057173 +96884,84152,childish,1306981128 +96884,84152,concept,1306981060 +96884,84152,drugs,1306981054 +96884,84152,human potential,1306981052 +96884,84152,lifeless supporting characters,1306981090 +96884,84152,Message,1306981095 +96884,84152,visual effects,1306981069 +96884,84273,capitalism,1297455944 +96884,84273,free to download,1297663252 +96884,84273,human nature,1297455979 +96884,84273,rich and poor,1297663340 +96884,84273,social commentary,1297455992 +96884,84273,utopia,1297663272 +96884,84414,bad science,1304204033 +96884,84414,bad technology,1304204044 +96884,84414,childish,1304204057 +96884,84414,dead,1304204007 +96884,84414,foolish,1304204057 +96884,84414,superman,1304204012 +96884,84601,action,1315114353 +96884,84601,amnesia,1315114351 +96884,84601,assassin,1315114355 +96884,84601,car accident,1315114364 +96884,84601,conspiracy,1315114349 +96884,84601,Diane Kruger,1315114298 +96884,84601,identity theft,1315114376 +96884,84601,January Jones,1315114289 +96884,84601,Liam Neeson,1315114130 +96884,84601,mistery,1315114385 +96884,84601,paranoia,1315114108 +96884,84601,survival,1315114108 +96884,84613,cave,1376109455 +96884,84613,father-son relationship,1376109451 +96884,84772,aliens,1308023480 +96884,84772,chase,1308023478 +96884,84772,comedy,1308023476 +96884,84772,darwinism vs creationism,1308023472 +96884,84772,few funny scenes,1308023497 +96884,84772,geeky,1308023468 +96884,84942,Amber Heard,1309370735 +96884,84942,bad acting,1309370545 +96884,84942,Bad direction,1309370545 +96884,84942,bad plot,1309370556 +96884,84942,bad script,1309370593 +96884,84942,car chase,1309370376 +96884,84942,cars,1309370376 +96884,84942,death,1309370493 +96884,84942,death of a child,1309370474 +96884,84942,devil,1309370496 +96884,84942,Devil Child,1309370492 +96884,84942,hell,1309370489 +96884,84942,Nicolas Cage,1309370342 +96884,84942,poor acting,1309370635 +96884,84942,poor dialogue,1309370635 +96884,84942,poor plot,1309370648 +96884,84942,poor plot deve,1309370648 +96884,84942,very bad,1309370682 +96884,84944,adult humor,1319253654 +96884,84944,Animals,1319253650 +96884,84944,animation,1319253675 +96884,84944,cowboys,1319253648 +96884,84944,desert,1319253645 +96884,84944,hallucinatory,1319253691 +96884,84944,hero,1319253764 +96884,84944,heroic journey,1319253766 +96884,84944,HEROIC MISSION,1319253755 +96884,84944,heroism,1319253762 +96884,84944,self discovery,1319253760 +96884,84944,small town,1319253633 +96884,84944,starts out original,1319253637 +96884,84944,talking animals,1319253629 +96884,84944,western,1319253625 +96884,84954,Emily Blunt,1328765274 +96884,84954,fate,1328765264 +96884,84954,love story,1328765292 +96884,84954,Matt Damon,1328765277 +96884,84954,original plot,1328765259 +96884,84954,plot,1328765354 +96884,85022,bad message,1328416087 +96884,85022,bad plot,1328416087 +96884,85022,bad story,1328416129 +96884,85022,comedy,1328416060 +96884,85022,feminism,1328416047 +96884,85022,Nudity (Full - Male),1328416051 +96884,85022,Owen Wilson,1328416065 +96884,85056,action,1306349214 +96884,85056,alien,1306349162 +96884,85056,childish plot,1306349198 +96884,85056,plot,1306349198 +96884,85056,plot holes,1306349198 +96884,85056,sci-fi,1306349215 +96884,85056,superhero,1306349166 +96884,85056,supernatural,1306349170 +96884,85131,action,1306348180 +96884,85131,alien invasion,1306348261 +96884,85131,aliens,1306348169 +96884,85131,CGI,1306348175 +96884,85131,invasion,1306348264 +96884,85131,Marine Corps,1306348238 +96884,85131,plot,1306348299 +96884,85131,sci-fi,1306348219 +96884,85131,war,1306348186 +96884,85131,warfare,1306348191 +96884,85342,corruption,1304046408 +96884,85342,drug cartels,1304046446 +96884,85342,drugs,1304046424 +96884,85342,police,1304046408 +96884,85342,police corruption,1304046408 +96884,85342,politics,1304046485 +96884,85342,poverty,1304046408 +96884,85342,social commentary,1304046348 +96884,85367,Adam Sandler,1328035525 +96884,85367,bad plot,1328035552 +96884,85367,Brooklyn Decker,1328035536 +96884,85367,father-son relationship,1328035635 +96884,85367,few funny scenes,1328035608 +96884,85367,Hawaii,1328035518 +96884,85367,Jennifer Aniston,1328035521 +96884,85367,lies,1328035515 +96884,85367,Nicole Kidman,1328035523 +96884,85367,plastic surgery,1328035656 +96884,85367,predictable,1328035511 +96884,85367,unrealistic,1328035600 +96884,85367,unrealistic characters,1328035600 +96884,85367,unrealistic plot,1328035600 +96884,85401,black comedy,1345349926 +96884,85401,costumed vigilante,1345349930 +96884,85401,Ellen Page,1345349907 +96884,85401,Liv Tyler,1345349943 +96884,85401,Rainn Wilson,1345349913 +96884,85401,superhero,1345349939 +96884,85401,vigilante,1345349937 +96884,85401,violent,1345349935 +96884,85414,happy ending,1422771881 +96884,85414,Michelle Monaghan,1422771873 +96884,85510,anime cliches,1314076215 +96884,85510,bad physics,1314076017 +96884,85510,Emily Browning,1314075977 +96884,85510,lobotomy,1314075959 +96884,85510,martial arts,1314075965 +96884,85510,Misandry,1314076139 +96884,85510,physics fail,1314076017 +96884,85510,setting:asylum,1314075972 +96884,85510,Surreal,1314075967 +96884,85570,Argentina,1352698289 +96884,85570,luck,1352698285 +96884,85881,dementia,1343702966 +96884,85881,elder care,1343702970 +96884,85881,legal system,1343702956 +96884,85881,realistic wrestling,1343702952 +96884,86190,acting,1352697911 +96884,86190,action,1352697842 +96884,86190,assassin,1352697945 +96884,86190,cinematography,1352697905 +96884,86190,ending,1352697976 +96884,86190,female lead,1352697915 +96884,86190,plot,1352697935 +96884,86190,surrealism,1352697797 +96884,86190,thriller,1352697939 +96884,86298,animation,1329541892 +96884,86298,birds,1329541850 +96884,86298,dance,1329541897 +96884,86298,funny,1329541900 +96884,86298,Latin America,1329541853 +96884,86298,music,1329541871 +96884,86298,nature,1329541876 +96884,86298,nature wildlife,1329541867 +96884,86298,parrots,1329541857 +96884,86298,Rio de Janeiro,1329541883 +96884,86298,South America,1329541881 +96884,86298,Stereoscopic 3-D,1329541863 +96884,86298,talking animals,1329541879 +96884,86332,3d,1305854148 +96884,86332,action,1305854150 +96884,86332,adapted from:comic,1305854178 +96884,86332,Anthony Hopkins,1305854155 +96884,86332,comic book,1305854118 +96884,86332,father-son relationship,1305854113 +96884,86332,lack of tension,1305854128 +96884,86332,love story,1305854133 +96884,86332,Marvel Comics,1305853785 +96884,86332,mythology,1305853758 +96884,86332,Natalie Portman,1305854102 +96884,86332,predictable,1305854121 +96884,86332,shirtless scene,1305854164 +96884,86332,Special Effects,1305854144 +96884,86332,superhero,1305853769 +96884,86644,audience intelligence underestimated,1326736206 +96884,86644,Boring,1326736151 +96884,86644,car chase,1326736245 +96884,86644,cars,1326736243 +96884,86644,childish,1326736181 +96884,86644,dialogue,1326736236 +96884,86644,silly,1326736181 +96884,86644,unrealistic,1326736156 +96884,86835,alternate reality,1313205071 +96884,86835,based on a comic,1313205106 +96884,86835,church,1313205068 +96884,86835,cliche,1313205073 +96884,86835,dystopia,1313204444 +96884,86835,dystopic future,1313205056 +96884,86835,future,1313205056 +96884,86835,futuristic,1313205056 +96884,86835,sci-fi,1313204448 +96884,86835,spaghetti western,1313205025 +96884,86835,vampires,1313205060 +96884,86835,war,1313205063 +96884,86880,boring,1317101138 +96884,86880,childish,1317101163 +96884,86880,childish plot,1317101163 +96884,86880,fight scenes,1317101138 +96884,86880,Johnny Depp,1317101192 +96884,86880,mermaid,1317101251 +96884,86882,1920s,1334890130 +96884,86882,France,1334890097 +96884,86882,Owen Wilson,1334890085 +96884,86882,time travel,1334890121 +96884,86882,writers,1334890094 +96884,86892,action,1396828336 +96884,86892,bad ending,1396828332 +96884,86911,Thailand,1323056107 +96884,86911,Zach Galifianakis,1323056096 +96884,87222,animation,1323056389 +96884,87222,kung fu,1323056426 +96884,87222,talking animals,1323056392 +96884,87232,Argentina,1308016680 +96884,87232,characters,1308016807 +96884,87232,Cuba,1308016688 +96884,87232,few action scenes,1308016762 +96884,87232,Las Vegas,1308016675 +96884,87232,Poland,1308016668 +96884,87232,prequel,1308016664 +96884,87232,superhero,1308016637 +96884,87232,switzerland,1308016671 +96884,87232,X-men,1308016651 +96884,87306,audience intelligence underestimated,1316411542 +96884,87306,bad physics,1316411518 +96884,87306,bad plot,1316411597 +96884,87306,bad science,1316411526 +96884,87306,cinematography,1316411495 +96884,87306,J.J. Abrams,1316411488 +96884,87306,Not Directed by Steven Spielberg,1316411470 +96884,87306,sci-fi,1316411563 +96884,87306,scientific errors,1316411579 +96884,87306,silly errors,1316411630 +96884,87430,alien contact,1318435230 +96884,87430,Badly made,1318435148 +96884,87430,CGI,1318435223 +96884,87430,comic book,1318435176 +96884,87430,crash landing,1318435201 +96884,87430,father-son relationship,1318435151 +96884,87430,fear,1318435260 +96884,87430,government agencies,1318435194 +96884,87430,psionic power,1318435166 +96884,87430,replacement,1318435243 +96884,87430,space,1318435323 +96884,87430,superpowers,1318435157 +96884,87430,test pilot,1318435186 +96884,87430,willpower,1318435189 +96884,87520,action,1317445465 +96884,87520,audience intelligence underestimated,1317444965 +96884,87520,bad science,1317444965 +96884,87520,cars,1317445490 +96884,87520,cgi,1317445475 +96884,87520,childish,1317444965 +96884,87520,childish plot,1317444965 +96884,87520,dialogue,1317444929 +96884,87520,effects,1317444896 +96884,87520,Michael Bay,1317444920 +96884,87520,Rosie Huntington-Whiteley,1317445452 +96884,87520,silly,1317444965 +96884,87520,story,1317444903 +96884,87869,cast,1375587846 +96884,87869,characters,1375587849 +96884,87869,ending,1375587784 +96884,87869,happy ending,1375587802 +96884,87869,Jennifer Aniston,1375587820 +96884,87869,murder,1375587811 +96884,88129,cinematography,1422771828 +96884,88163,adultery,1330228225 +96884,88163,comedy,1330228229 +96884,88163,cute,1330228234 +96884,88163,divorce,1330228236 +96884,88163,Emma Stone,1330228220 +96884,88163,father-son relationship,1330228245 +96884,88163,high school,1330228342 +96884,88163,love,1330228256 +96884,88163,plot twist,1330228261 +96884,88299,ecology,1311275894 +96884,88299,social commentary,1311275894 +96884,88405,friendship,1374198290 +96884,88405,HOT actress,1374198273 +96884,88405,Mila Kunis,1374198275 +96884,88405,New York City,1374198302 +96884,88405,Nudity (Rear),1374198320 +96884,88405,pop culture references,1374198286 +96884,88405,romance,1374198280 +96884,88405,sex,1374198278 +96884,88405,singing,1374198282 +96884,88744,action,1328036076 +96884,88744,bad science,1328036162 +96884,88744,biology,1328036118 +96884,88744,cgi,1328036080 +96884,88744,computer animation,1328036082 +96884,88744,experiments gone awry,1328036247 +96884,88744,genetics,1328036085 +96884,88744,Plot holes,1328036089 +96884,88744,prequel,1328036200 +96884,88744,San Francisco,1328036216 +96884,88744,sci-fi,1328036173 +96884,88744,special effects,1328036092 +96884,88744,violence,1328036098 +96884,88744,virus,1328036096 +96884,88785,funny,1378093185 +96884,88785,nudity,1378093172 +96884,88785,Nudity (Topless - Brief),1378093149 +96884,88785,Olivia Wilde,1378093154 +96884,88785,R:nudity,1378093146 +96884,88785,switching places,1378093165 +96884,88785,unoriginal,1378093169 +96884,88812,bank robbery,1323055953 +96884,88812,bomb,1323055992 +96884,88812,pizza,1323056018 +96884,88954,Buddy Movie,1330396706 +96884,88954,Christmas,1330396709 +96884,88954,Claymation,1330396712 +96884,88954,friendship,1330396747 +96884,88954,Neil Patrick Harris,1330396734 +96884,88954,New York City,1330396726 +96884,88954,Nudity (Topless - Notable),1330396730 +96884,89000,acting,1314076521 +96884,89000,Argentina,1314076428 +96884,89000,bad ending,1314076512 +96884,89000,drama,1314076420 +96884,89000,hospital,1314076461 +96884,89000,lawyers,1314076461 +96884,89000,love,1314076481 +96884,89000,police corruption,1314076501 +96884,89190,Jason Momoa,1323210105 +96884,89492,bad ending,1331839947 +96884,89492,baseball,1331839901 +96884,89492,father daughter relationship,1331839907 +96884,89492,great acting,1331839910 +96884,89492,intelligent,1331839916 +96884,89492,money,1331839920 +96884,89492,slow,1331839923 +96884,89492,sports,1331839928 +96884,89492,true story,1331839926 +96884,89745,boring,1336679113 +96884,89745,cgi,1336679205 +96884,89745,childish,1336679177 +96884,89745,Hulk,1336679131 +96884,89745,lots of characters does not equal great movie,1336679106 +96884,89745,no plot,1336679096 +96884,89745,overrated,1336679092 +96884,89745,Robert Downey Jr.,1336679088 +96884,89745,shallow,1336679120 +96884,89745,silly,1336679177 +96884,89745,slow,1336679116 +96884,89745,superhero,1336679126 +96884,89745,tacky,1336679122 +96884,89774,MMA,1326735909 +96884,89864,cancer,1329019369 +96884,89864,current,1329019416 +96884,89864,cute psychiatrist,1329019405 +96884,89864,disease,1329019398 +96884,89864,emotional,1329019400 +96884,89864,funny scenes,1329019391 +96884,89864,Seth Rogen,1329019541 +96884,89864,touching,1329019376 +96884,89864,unrealistic therapist,1329019386 +96884,89930,documentary,1327297931 +96884,89930,inspirational,1327297870 +96884,89930,inspiring,1327297870 +96884,89930,kindness,1327297889 +96884,89930,not action,1327297949 +96884,89930,not comedy,1327297848 +96884,89930,vigilante,1327297894 +96884,90249,android(s)/cyborg(s),1328035719 +96884,90249,audience intelligence underestimated,1328035767 +96884,90249,bad science,1328035813 +96884,90249,bad technology,1328035813 +96884,90249,boxing,1328035723 +96884,90249,childish,1328035794 +96884,90249,father-son relationship,1328035714 +96884,90249,near-future,1328035750 +96884,90249,obnoxious kid,1328035729 +96884,90249,predictable,1328035734 +96884,90249,robots,1328035710 +96884,90249,silly plot,1328035794 +96884,90249,unrealistic,1328035841 +96884,90249,unrealistic plot,1328035841 +96884,90405,cheesy,1331839783 +96884,90405,crime,1331839786 +96884,90405,dystopia,1331839793 +96884,90405,eternal youth,1331839738 +96884,90405,fugitive,1331839778 +96884,90405,future,1331839775 +96884,90405,immortality,1331839769 +96884,90405,justice,1331839773 +96884,90405,police,1331839747 +96884,90405,police corruption,1331839750 +96884,90405,reflective,1331839850 +96884,90405,rich people,1331839755 +96884,90405,sci-fi,1331839734 +96884,90405,social commentary,1331839850 +96884,90405,thought-provoking,1331839874 +96884,90405,time,1331839765 +96884,90405,unintentionally funny,1331839760 +96884,90647,animation,1329688182 +96884,90647,cats,1329688185 +96884,90647,fairy tale,1329688190 +96884,90647,Latin America,1329688213 +96884,90647,parody,1329688195 +96884,90647,predictable,1329688217 +96884,90647,romance,1329688208 +96884,90647,talking animals,1329688202 +96884,90647,visually appealing,1329688204 +96884,90746,3D effects,1331494408 +96884,90746,action,1331494428 +96884,90746,alcoholism,1331494461 +96884,90746,animation,1331494424 +96884,90746,childish,1331494474 +96884,90746,comic book,1331494410 +96884,90746,friendship,1331494422 +96884,90746,Good adaptation,1331494419 +96884,90746,Journalist,1331494478 +96884,90746,kidnapping,1331494443 +96884,90746,motion capture,1331494447 +96884,90746,Planes,1331494430 +96884,90746,sword fight,1331494438 +96884,90746,treasure hunt,1331494437 +96884,90866,1930s,1331600055 +96884,90866,3D,1331600060 +96884,90866,bad acting,1331600009 +96884,90866,France,1331600067 +96884,90866,orphans,1331600032 +96884,90866,Paris,1331600035 +96884,90866,pointless,1331600122 +96884,90866,Sacha Baron Cohen,1331600041 +96884,90866,slow,1331600086 +96884,90888,Action Scenes,1331599950 +96884,90888,brutal,1331599921 +96884,90888,fight scenes,1331599950 +96884,90888,Mickey Rourke,1331599923 +96884,90888,stylized,1331599929 +96884,91485,Arnold Schwarzenegger,1364710689 +96884,91485,boring,1364710760 +96884,91485,Bruce Willis,1364710709 +96884,91485,Chuck Norris,1364710686 +96884,91485,dialogue,1364710657 +96884,91485,Jean-Claude Van Damme,1364710724 +96884,91485,jokes,1364710661 +96884,91485,not funny,1364710760 +96884,91485,sequel,1364710698 +96884,91485,silly,1364710679 +96884,91485,Sylvester Stallone,1364710676 +96884,91485,violence,1364710701 +96884,91500,child killing,1347159916 +96884,91500,dystopia,1347159901 +96884,91500,lack of action,1347159929 +96884,91500,social commentary,1347159906 +96884,91529,Anne Hathaway,1344742998 +96884,91529,Batman,1344742993 +96884,91529,Christopher Nolan,1344742989 +96884,91529,comic book,1344743000 +96884,91529,comic books,1344743002 +96884,91529,dark,1344743004 +96884,91529,Fight Choreography,1344743078 +96884,91529,great ending,1344742982 +96884,91529,Hans Zimmer,1344742976 +96884,91529,Morgan Freeman,1344742978 +96884,91529,murder,1344743013 +96884,91529,plot twist,1344743010 +96884,91529,superhero,1344743017 +96884,91529,trilogy,1344743015 +96884,91542,fight scenes,1328764677 +96884,91542,Funny,1328764565 +96884,91542,good plot,1328764654 +96884,91542,great cinematography,1328764559 +96884,91542,Jude Law,1328764543 +96884,91542,murder,1328764537 +96884,91542,Noomi Rapace,1328764518 +96884,91542,private detective,1328764534 +96884,91542,quick change artist,1328764621 +96884,91542,Robert Downey Jr.,1328764540 +96884,91630,spy team,1339821325 +96884,91630,Tom Cruise,1339821328 +96884,91630,visuals,1339821334 +96884,91658,based on a book,1333394100 +96884,91658,corruption,1333394073 +96884,91658,dark,1333394097 +96884,91658,female warriors,1333394315 +96884,91658,good acting,1333394094 +96884,91658,hacker,1333394136 +96884,91658,hacking,1333394138 +96884,91658,journalism,1333394076 +96884,91658,long,1333394165 +96884,91658,murder,1333394078 +96884,91658,mystery,1333394082 +96884,91658,rape,1333394070 +96884,91658,serial killer,1333394144 +96884,91658,suspense,1333394147 +96884,91658,thriller,1333394150 +96884,91976,childish,1347160040 +96884,91976,cinematography,1347160004 +96884,91976,Liam Neeson,1347160000 +96884,91976,life & death,1347160011 +96884,91976,man vs. nature,1347160009 +96884,91976,overdramatic,1347160014 +96884,91976,silly,1347160032 +96884,91976,unrealistic,1347159997 +96884,91976,wolves,1347160016 +96884,91978,corrupt cops,1391399509 +96884,91978,Elizabeth Banks,1391399517 +96884,92259,acting,1341809419 +96884,92259,based on a true story,1341809347 +96884,92259,disability,1341809350 +96884,92259,emotional,1341809353 +96884,92259,friendship,1341809515 +96884,92259,funny,1341809362 +96884,92259,rich and poor,1341809366 +96884,92259,soundtrack,1341809383 +96884,92259,touching,1341809339 +96884,92420,flying,1360357017 +96884,92420,sci-fi,1360356999 +96884,92420,Seattle,1360357001 +96884,92420,supernatural powers,1360356996 +96884,92420,telekinesis,1360356988 +96884,92507,conspiracy,1339386906 +96884,92507,Denzel Washington,1339386902 +96884,93297,action,1361855245 +96884,93297,authentic action,1361855249 +96884,93297,covert operation,1361855315 +96884,93297,pro military,1361855252 +96884,93297,propaganda,1361855254 +96884,93297,realistic,1361855334 +96884,93297,special forces,1361855262 +96884,93363,Action,1333393928 +96884,93363,based on a book,1333393942 +96884,93363,childish plot,1333393981 +96884,93363,Mars,1333393937 +96884,93363,sci-fi,1333393996 +96884,93363,steampunk,1333393933 +96884,93443,hockey,1334267813 +96884,93443,sport:hockey,1334267803 +96884,93443,sport:ice hockey,1334267805 +96884,93443,sports,1334267808 +96884,93510,drugs,1340169636 +96884,93510,high school comedy,1340169651 +96884,93510,police,1340169645 +96884,93510,undercover cops,1340169639 +96884,93512,relationships,1341809668 +96884,93512,signs,1341809698 +96884,93512,unravelling emotional issues,1341809675 +96884,93563,future,1344274370 +96884,93563,prison,1344274341 +96884,93563,sci-fi,1344274370 +96884,93563,space,1344274378 +96884,93610,alien invasion,1335414839 +96884,93610,anime cliches,1335414779 +96884,93610,bad science,1335414742 +96884,93610,childish,1335414742 +96884,93610,dystopia,1335414804 +96884,93610,future,1335414804 +96884,93610,plot holes,1335414742 +96884,93610,remake,1335414745 +96884,93610,space opera,1335414746 +96884,93610,war,1335414839 +96884,93766,3D,1360470389 +96884,93766,action,1360470386 +96884,93766,adventure,1360470391 +96884,93766,CGI,1360470393 +96884,93766,doesn't live up to its full potential,1360470376 +96884,93766,fantasy,1360470384 +96884,93766,Greek mythology,1360470382 +96884,93766,monsters,1360470380 +96884,93838,awesome martial arts,1338958525 +96884,93838,brutal,1338958518 +96884,93838,intense,1338958536 +96884,93838,thin plot,1338958531 +96884,93838,visceral,1338958542 +96884,93855,dark comedy,1341700752 +96884,93855,ending,1341700715 +96884,93855,hypocrisy,1341700740 +96884,93855,social comentary,1341700724 +96884,93855,social criticism,1341700713 +96884,93855,violence,1341700748 +96884,94018,alien invasion,1344742304 +96884,94018,aliens,1344742292 +96884,94018,bad science,1344742341 +96884,94018,childish,1344742341 +96884,94018,Hawaii,1344742306 +96884,94018,Navy,1344742317 +96884,94018,Poor Plot,1344742302 +96884,94018,sci-fi,1344742322 +96884,94018,silly,1344742341 +96884,94018,special effects,1344742295 +96884,94401,they fight for us,1340500504 +96884,94401,unfair ending,1340500529 +96884,94466,dark,1398834225 +96884,94466,dystopia,1398834198 +96884,94466,satire,1398834219 +96884,94466,technology,1398834217 +96884,94466,TV series,1398834214 +96884,94466,well constructed,1398834236 +96884,94777,aliens,1338958593 +96884,94777,crazy,1338958639 +96884,94777,flat Story,1338958675 +96884,94777,memory,1338958603 +96884,94777,plot,1338958697 +96884,94777,secret gov't agency works with and hides aliens,1338958615 +96884,94777,time travel,1338958621 +96884,94777,Will Smith,1338958645 +96884,94864,aliens,1340169778 +96884,94864,best visual effects I've ever seen,1340169774 +96884,94864,characterization,1340169826 +96884,94864,Good ending,1340169766 +96884,94864,prequel,1340169786 +96884,94864,scifi,1340169756 +96884,94864,self-sacrifice,1340169763 +96884,94864,Sets,1340169758 +96884,94864,technology,1340169761 +96884,94959,bittersweet,1404918397 +96884,94959,cinematography,1404918394 +96884,94959,dreamlike,1404918391 +96884,94959,island,1404918400 +96884,94959,love story,1404918385 +96884,94959,orphans,1404918408 +96884,94959,scouting,1404918417 +96884,94959,small town,1404918387 +96884,94959,wilderness,1404918442 +96884,95004,childish,1341200457 +96884,95004,dumb,1341200493 +96884,95004,silly,1341200456 +96884,95088,aubrey plaza,1421041487 +96884,95088,open ending,1421041517 +96884,95088,time travel,1421041491 +96884,95105,circus,1352698027 +96884,95105,talking animals,1352698034 +96884,95167,charming,1357359347 +96884,95167,mother-daughter relationships,1357359337 +96884,95167,predictable,1357359358 +96884,95167,Scotland,1357359340 +96884,95167,symbolism,1357359342 +96884,95309,apocalyptic,1352698107 +96884,95309,chick flick,1352698155 +96884,95309,depressing,1352698130 +96884,95309,emotional,1352698127 +96884,95309,Keira Knightley,1352698095 +96884,95309,romantic plot,1352698123 +96884,95309,Steve Carell,1352698093 +96884,95441,bromance,1352697586 +96884,95441,bromantic,1352697589 +96884,95441,cgi,1352697574 +96884,95441,Mark Wahlberg,1352697598 +96884,95441,Mila Kunis,1352697594 +96884,95441,Seth MacFarlane,1352697565 +96884,95510,action,1343703197 +96884,95510,digital cinematography,1343703251 +96884,95510,Emma Stone,1343703245 +96884,95510,family friendly,1343703223 +96884,95510,Marvel,1343703202 +96884,95510,not as good as the original,1343703219 +96884,95510,plot,1343703211 +96884,95510,Reboot,1343703240 +96884,95510,special effects,1343703229 +96884,95510,Spider-Man,1343703237 +96884,95873,human nature,1353208978 +96884,95873,original,1353208984 +96884,95873,plot,1353208989 +96884,95963,music,1405794511 +96884,95965,anime,1352699420 +96884,95965,Dragon Ball,1352699425 +96884,95965,space,1352699411 +96884,96004,dystopia,1352699401 +96884,96004,future,1352699402 +96884,96004,time travel,1352699403 +96884,96079,Daniel Craig,1354734124 +96884,96079,dark,1354734162 +96884,96079,franchise,1354734165 +96884,96079,James Bond,1354734122 +96884,96079,Javier Bardem,1354734114 +96884,96079,London,1354734135 +96884,96079,motorcycle,1354734133 +96884,96079,murder,1354734160 +96884,96079,Scotland,1354734130 +96884,96079,trains,1354734127 +96884,96252,Bruce Lee,1365101297 +96884,96252,Linda Lee,1365101340 +96884,96252,martial arts,1365101304 +96884,96252,Mickey Rourke,1365101352 +96884,96252,MMA,1365101301 +96884,96281,3D,1386259298 +96884,96281,Animated,1386259313 +96884,96281,animation,1386259311 +96884,96281,Clever,1386259279 +96884,96281,ghosts,1386259234 +96884,96281,small town,1386259247 +96884,96281,Stereoscopic 3-D,1386259307 +96884,96281,stop motion,1386259321 +96884,96281,supernatural,1386259245 +96884,96281,witch,1386259244 +96884,96281,zombies,1386259242 +96884,96606,beautiful cinematography,1381466459 +96884,96606,meditative,1381466486 +96884,96606,time-lapse,1381466466 +96884,96606,wordless,1381466482 +96884,96610,bad science,1352697689 +96884,96610,Bruce Willis,1352697654 +96884,96610,dystopia,1352697652 +96884,96610,future,1352697648 +96884,96610,mother-son relationship,1352697646 +96884,96610,organized crime,1352697643 +96884,96610,plot holes,1352697629 +96884,96610,pretentious,1352697689 +96884,96610,sci-fi,1352697641 +96884,96610,science fiction,1352697639 +96884,96610,telekinesis,1352697721 +96884,96610,time travel,1352697634 +96884,96610,visually appealing,1352697632 +96884,96655,future,1373774684 +96884,96655,human condition,1373774676 +96884,96655,robots,1373774689 +96884,96737,Action,1356753409 +96884,96737,based on a comic,1356753406 +96884,96737,drugs,1356753402 +96884,96737,Dystopia,1356753388 +96884,96737,low budget,1356753456 +96884,96737,police corruption,1356753390 +96884,96737,post-apocalyptic,1356753393 +96884,96737,sci-fi,1356753395 +96884,96811,bad ending,1363745165 +96884,96811,camerawork,1363745132 +96884,96811,cinematography,1363745129 +96884,96811,Original story,1363745102 +96884,96811,police,1363745126 +96884,96811,realistic relationships,1363745124 +96884,96811,sad ending,1363745146 +96884,96861,kidnapping,1350098204 +96884,96861,Liam Neeson,1350098193 +96884,96861,Revenge,1350098198 +96884,97172,black and white,1404791042 +96884,97172,boy and his dog,1404791030 +96884,97172,death,1404791100 +96884,97172,science,1404791139 +96884,97172,science misunderstood,1404791215 +96884,97172,stop motion,1404791072 +96884,97172,Tim Burton,1404791037 +96884,97304,1970s,1360035711 +96884,97304,cia,1360035146 +96884,97304,deception,1360035158 +96884,97304,espionage,1360035151 +96884,97304,hostage,1360035140 +96884,97304,Iran,1360035111 +96884,97304,Middle East,1360035117 +96884,97304,suspenseful,1360035704 +96884,97304,true story,1360035119 +96884,97328,faggotism,1374200186 +96884,97328,music,1374200154 +96884,97752,adapted from:book,1357359571 +96884,97752,atmospheric,1357359541 +96884,97752,cannibalism,1357359562 +96884,97752,Cinematography,1357359569 +96884,97752,connection,1357359567 +96884,97752,dystopia,1357359564 +96884,97752,help others,1357359592 +96884,97752,Hugo Weaving,1357359558 +96884,97752,multiple roles,1357359578 +96884,97752,multiple storylines,1357359544 +96884,97752,rebellion,1357359581 +96884,97752,sci-fi,1357359583 +96884,97752,social commentary,1357359547 +96884,97752,social criticism,1357359549 +96884,97752,thought-provoking,1357359551 +96884,97752,Tom Hanks,1357359545 +96884,97752,visually appealing,1357359553 +96884,97836,high school,1362521829 +96884,97836,inspiring teacher,1362521865 +96884,97836,mma,1362521865 +96884,97836,teacher,1362521835 +96884,97860,american idiocy,1386259686 +96884,97860,boring,1386259707 +96884,97860,cinematography,1386259703 +96884,97860,hired gun,1386259699 +96884,97860,murderer,1386259694 +96884,97860,New Orleans,1386259720 +96884,97860,slow paced,1386259735 +96884,97921,dance,1373517489 +96884,97921,dark humor,1373517486 +96884,97921,drama,1373517494 +96884,97921,father-son relationship,1373517478 +96884,97921,football,1373517473 +96884,97921,Jennifer Lawrence,1373517538 +96884,97921,loneliness,1373517496 +96884,97921,love,1373517500 +96884,97921,mental illness,1373517482 +96884,97921,Robert De Niro,1373517480 +96884,97921,romance,1373517550 +96884,97938,3d,1369176569 +96884,97938,animals,1369176573 +96884,97938,cinematography,1369176577 +96884,97938,emotional,1369176606 +96884,97938,ocean,1369176581 +96884,97938,pseudo-philosophical,1369176598 +96884,97938,Slow,1369176590 +96884,97938,visually appealing,1369176611 +96884,97950,Asian ladies,1372175461 +96884,97950,bad acting,1372175492 +96884,97950,bad directing,1372175492 +96884,97950,childish,1372175505 +96884,97950,kung fu,1372175453 +96884,97950,martial arts,1372175477 +96884,97950,Russell Crowe,1372175464 +96884,97950,RZA,1372175466 +96884,97950,silly,1372175505 +96884,97950,story,1372175448 +96884,97950,terrible dialogue,1372175446 +96884,98809,adapted from:book,1357359498 +96884,98809,adventure,1357359452 +96884,98809,author:J. R. R. Tolkein,1357359449 +96884,98809,based on a book,1357359496 +96884,98809,beautiful scenery,1357359445 +96884,98809,CGI,1357359455 +96884,98809,dwarf,1357359493 +96884,98809,epic,1357359466 +96884,98809,fantasy,1357359468 +96884,98809,fantasy world,1357359464 +96884,98809,magic,1357359471 +96884,98809,Peter Jackson,1357359461 +96884,98809,soundtrack,1357359458 +96884,98809,Tolkien,1357359473 +96884,99007,based on a book,1372476884 +96884,99007,Cured by love,1372476860 +96884,99007,cured by love/hope,1372476984 +96884,99007,funny,1372476841 +96884,99007,romance,1372476869 +96884,99007,sweet,1372476849 +96884,99007,unconventional,1372476873 +96884,99007,zombies,1372476854 +96884,99114,19th century,1375587913 +96884,99114,action,1375588025 +96884,99114,brutal,1375587916 +96884,99114,epic,1375587919 +96884,99114,Flashbacks,1375587927 +96884,99114,good soundtrack,1375587973 +96884,99114,Great performances,1375587968 +96884,99114,ku klux klan,1375587930 +96884,99114,Leonardo DiCaprio,1375587961 +96884,99114,murder,1375587934 +96884,99114,racism,1375588017 +96884,99114,Revenge,1375587937 +96884,99114,Samuel L. Jackson,1375587957 +96884,99114,slavery,1375588003 +96884,99114,tense,1375587979 +96884,99114,violence,1375587939 +96884,99114,violent,1375587943 +96884,99114,visually appealing,1375587945 +96884,99114,western,1375587954 +96884,99117,Megan Fox,1380509045 +96884,99437,bad plot. senseless,1361161985 +96884,99437,mind altering drugs,1361161953 +96884,99437,parallel universe,1361161950 +96884,99437,surreal,1361161963 +96884,99728,Action,1366237465 +96884,99728,cops,1366237459 +96884,99728,Corny,1366237452 +96884,99728,Emma Stone,1366237424 +96884,99728,enjoyable,1366237491 +96884,99728,gangsters,1366237438 +96884,99728,no character depth,1366237433 +96884,99728,Ryan Gosling,1366237471 +96884,99910,action,1360121794 +96884,99910,Arnold Schwarzenegger,1360121774 +96884,99910,cops,1360121797 +96884,99910,humor,1360121779 +96884,99910,small town,1360121776 +96884,99910,thriller,1360121791 +96884,100108,crime,1371354151 +96884,100108,Jason Statham,1371354149 +96884,100163,entertaining concept,1371092154 +96884,100163,Nudity (Topless),1371092146 +96884,100163,violence,1371092142 +96884,100163,Witches,1371092158 +96884,100498,Bruce Willis,1386259107 +96884,100498,CIA,1386259110 +96884,100498,franchise,1386259103 +96884,100498,John McClane,1386259105 +96884,100498,plot holes,1386259123 +96884,100498,Russia,1386259096 +96884,101283,jim carrey,1372181816 +96884,101283,olivia wilde,1372181816 +96884,101283,parody,1372181838 +96884,101283,stage magic,1372181788 +96884,101283,steve carrel,1372181816 +96884,101864,action,1366346732 +96884,101864,adventure,1366346560 +96884,101864,aliens invasion,1366346472 +96884,101864,atmospheric,1366346505 +96884,101864,dystopia,1366346472 +96884,101864,future,1366346425 +96884,101864,Morgan Freeman,1366346422 +96884,101864,sci-fi,1366346496 +96884,101864,space,1366346472 +96884,101864,technology,1366346560 +96884,101864,Tom Cruise,1366346424 +96884,101895,baseball,1375048313 +96884,101895,soundtrack,1375048314 +96884,102033,Dwayne Johnson,1377013587 +96884,102058,wolverine,1372181322 +96884,102123,apocalypse,1380508908 +96884,102123,lacks substance,1380508889 +96884,102123,using real names,1380508895 +96884,102125,audience intelligence underestimated,1367968201 +96884,102125,bad ploy,1367968215 +96884,102125,bad science,1367968215 +96884,102125,bad technology,1367968228 +96884,102125,cgi,1367968305 +96884,102125,childish,1367968192 +96884,102125,PG-13,1367968279 +96884,102125,Robert Downey Jr.,1367968142 +96884,102125,silly,1367968191 +96884,102125,terrorism,1367968137 +96884,102445,adventure,1383709260 +96884,102445,franchise,1383709265 +96884,102445,revenge,1383709281 +96884,102445,science fiction,1383709272 +96884,102445,space,1383709277 +96884,102481,Will Ferrell,1381983893 +96884,102686,Las Vegas,1391399545 +96884,102686,Zach Galifianakis,1391399542 +96884,102880,aliens,1381007299 +96884,102880,animal attacks,1381007295 +96884,102880,cheap,1381007280 +96884,102880,far future,1381007269 +96884,102880,father-son relationship,1381007249 +96884,102880,future,1381007272 +96884,102880,Jaden Smith,1381007306 +96884,102880,M. Night Shyamalan,1381007251 +96884,102880,rangers,1381007255 +96884,102880,sci-fi,1381007263 +96884,102880,space,1381007266 +96884,102880,Will Smith,1381007261 +96884,102903,CGI instead of real tricks,1379210065 +96884,102903,humiliation,1379210087 +96884,102903,Isla FIsher,1379210033 +96884,102903,magic,1379210038 +96884,102903,plot,1379210078 +96884,102991,bad ending,1398291177 +96884,102991,no ending,1398291177 +96884,102991,no sense ending,1398291177 +96884,102991,worst plot,1398291177 +96884,102993,acting,1403403759 +96884,102993,AnnaSophia Robb,1403403803 +96884,102993,divorce,1403403624 +96884,102993,growing up,1403403740 +96884,102993,parent-children relationship,1403403619 +96884,102993,parenting,1403403611 +96884,102993,Personality change,1403403738 +96884,102993,Sam Rockwell,1403403814 +96884,102993,summer,1403403496 +96884,102993,summer job,1403403501 +96884,102993,summer vacation,1403403502 +96884,102993,theme park,1403403607 +96884,102993,vacation,1403403603 +96884,103141,college,1382238310 +96884,103141,Development friendship,1382238274 +96884,103141,sequel,1382238305 +96884,103228,aliens,1376411685 +96884,103228,anime,1376411385 +96884,103228,audience intelligence underestimated,1376411671 +96884,103228,bad acting,1376411775 +96884,103228,childish,1376411656 +96884,103228,cinematography,1376411390 +96884,103228,ending,1376411646 +96884,103228,fun,1376411691 +96884,103228,giant robots,1376411380 +96884,103228,Guillermo del Toro,1376411408 +96884,103228,mecha,1376411370 +96884,103228,plot holes,1376411656 +96884,103228,robots,1376411702 +96884,103228,sea monster,1376411402 +96884,103228,silly,1376411656 +96884,103228,visually appealing,1376411367 +96884,103306,aliens,1381343842 +96884,103306,hard science fiction,1381343905 +96884,103306,jupiter,1381343937 +96884,103306,space,1381343821 +96884,103306,visually stunning,1381343834 +96884,103335,colorful,1386906109 +96884,103335,family,1386906100 +96884,103335,Steve Carell,1386906105 +96884,103606,first love,1381983867 +96884,103606,love,1381983874 +96884,103606,writers,1381983861 +96884,103659,blood,1421612127 +96884,103659,childish,1421612138 +96884,103659,original,1421612126 +96884,103659,silly,1421612142 +96884,103659,time travel,1421612113 +96884,103688,70s,1383240840 +96884,103688,cliche,1383240827 +96884,103688,exorcism,1383240824 +96884,103688,haunted house,1383240845 +96884,103688,Horror,1383240827 +96884,103688,possession,1383240852 +96884,103688,Vera Farmiga,1383240817 +96884,103772,childish,1421041982 +96884,103772,Hugh Jackman,1421041987 +96884,103772,martial arts,1421041991 +96884,103772,silly plot,1421041981 +96884,103772,superhero,1421041994 +96884,103772,x-men,1421041998 +96884,103883,CIA,1384921705 +96884,103883,corruption,1384921708 +96884,103883,drugs,1384921714 +96884,103883,military,1384921706 +96884,104137,irrelevant plot,1419653293 +96884,104137,slow paced,1419653251 +96884,104137,uninteresting,1419653275 +96884,104155,revenge,1388380579 +96884,104218,Adam Sandler,1392071384 +96884,104218,Shaquille O'Neal,1392071386 +96884,104243,action,1391570459 +96884,104243,aliens,1391570434 +96884,104243,exaggerated,1391570535 +96884,104243,franchise,1391570556 +96884,104243,Sexist,1391570551 +96884,104243,space western,1391570452 +96884,104374,charming,1391912350 +96884,104374,family bonds,1391912462 +96884,104374,family relationships,1391912462 +96884,104374,fantasy,1391912434 +96884,104374,happiness,1391912484 +96884,104374,original,1391912434 +96884,104374,time travel,1391912344 +96884,104374,touching,1391912346 +96884,104841,acting,1383019875 +96884,104841,Alfonso Cuarón,1383019809 +96884,104841,cgi,1383019880 +96884,104841,cinematography,1383019902 +96884,104841,hard scien,1383019970 +96884,104841,long shots,1383019848 +96884,104841,physics,1383019970 +96884,104841,science,1383019970 +96884,104841,setting:space,1383019838 +96884,104841,space,1383019846 +96884,104841,suspense,1383019859 +96884,104841,visually appealing,1383019866 +96884,104863,happy ending,1418358291 +96884,104863,nice dialogues,1418358293 +96884,104879,acting,1404881953 +96884,104879,American culture,1404881957 +96884,104879,bad ending,1404881934 +96884,104879,Hugh Jackman,1404881919 +96884,104879,imprisonment,1404882003 +96884,104879,taking justice into own hands,1404881945 +96884,104913,based on a true story,1388980051 +96884,104913,cars,1388980055 +96884,104913,Formula 1 racing,1388980061 +96884,104913,great soundtrack,1388980068 +96884,104913,interesting characters,1388980073 +96884,104913,racing,1388980097 +96884,104913,unpredictable,1388980091 +96884,105213,nontraditional,1393256482 +96884,105213,pornography,1393256474 +96884,105213,pornography's influence,1393256477 +96884,105213,relationships,1393256470 +96884,105213,social commentary,1393256501 +96884,105653,Arnold Schwarzenegger,1396828541 +96884,105653,bad technology,1396828504 +96884,105653,prison escape,1396828512 +96884,105653,Sylvester Stallone,1396828528 +96884,105653,unbelievable,1396828554 +96884,105653,weak plot,1396828552 +96884,105835,cinematography,1412302241 +96884,105835,confusing,1412302196 +96884,105835,doppelganger,1412302387 +96884,105835,slow paced,1412302376 +96884,105835,surreal,1412302206 +96884,105835,too much metaphoric,1412302335 +96884,105844,based on a true story,1398834271 +96884,105844,Brad Pitt,1398834276 +96884,105844,cinematography,1398834280 +96884,105844,confronting,1398834318 +96884,105844,Graphic Violence,1398834323 +96884,105844,history,1398834305 +96884,105844,slavery,1398834293 +96884,106002,aliens,1396828664 +96884,106002,bullying,1396828669 +96884,106002,genocide,1396828657 +96884,106002,Harrison Ford,1396828694 +96884,106002,predictable ending,1396828644 +96884,106002,sci-fi,1396828745 +96884,106002,twist ending,1396828653 +96884,106002,war,1396828696 +96884,106072,aliens,1384921816 +96884,106072,bad physics,1384921792 +96884,106072,bad science,1384921778 +96884,106072,Marvel Cinematic Universe,1384921859 +96884,106072,superhero,1384921865 +96884,106072,unrealistic,1384921921 +96884,106100,death,1398834422 +96884,106100,disease,1398834420 +96884,106100,inspirational,1398834501 +96884,106100,social commentary,1398834437 +96884,106100,topic:AIDS/HIV,1398834411 +96884,106100,topic:homophobia,1398834400 +96884,106487,Abrupt ending,1386259603 +96884,106487,based on a book,1386259628 +96884,106487,dystopia,1386259418 +96884,106487,dystopic future,1386259591 +96884,106487,Jennifer Lawrence,1386259606 +96884,106487,revolution,1386259397 +96884,106487,romance,1386259611 +96884,106487,social commentary,1386259418 +96884,106487,supporting cast,1386259624 +96884,106489,action,1387429598 +96884,106489,adapted from:book,1387429573 +96884,106489,adventure,1387429598 +96884,106489,author:J. R. R. Tolkein,1387429569 +96884,106489,double frame rate,1387429560 +96884,106489,epic,1387429598 +96884,106489,fantasy,1387429598 +96884,106489,Peter Jackson,1387429555 +96884,106491,asian mysticism,1390972613 +96884,106491,costumes,1390972606 +96884,106491,fantasy,1390972620 +96884,106491,Keanu Reeves,1390972624 +96884,106491,Samurai,1390972604 +96884,106540,drama,1398653880 +96884,106540,heartwarming,1398653909 +96884,106540,parenthood,1398653886 +96884,106540,sperm donor,1398653891 +96884,106540,Vince Vaughn,1398653889 +96884,106782,Anti-Hero,1395412164 +96884,106782,economics,1395412209 +96884,106782,greed,1395412159 +96884,106782,Leonardo DiCaprio,1395412145 +96884,106782,Margot Robbie,1395412184 +96884,106782,Nudity (Full Frontal),1395412150 +96884,106782,Nudity (Topless),1395412152 +96884,106782,prostitution,1395412202 +96884,106782,social commentary,1395412235 +96884,106782,Stock Market,1395412194 +96884,106782,strippers,1395412198 +96884,106918,Afghanistan,1399174092 +96884,106918,Iceland,1399174095 +96884,106918,imagination,1399174071 +96884,106918,inspirational,1399174047 +96884,106918,magazines,1399174083 +96884,106918,mother-son relationship,1399174069 +96884,106918,New York City,1399174088 +96884,106918,photographer,1399174056 +96884,106918,photography,1399174052 +96884,106918,positive thinking,1399174051 +96884,106918,scenic,1399174060 +96884,106918,surreal,1399174062 +96884,106918,travel,1399174064 +96884,106918,visually appealing,1399174049 +96884,106918,workplace,1399174080 +96884,106920,artificial intelligence,1413758593 +96884,106920,bad it understanding,1413758739 +96884,106920,loneliness,1413758645 +96884,106920,meaning of life,1413758653 +96884,106920,original plot,1413758602 +96884,106920,romance,1413758628 +96884,106920,sci-fi,1413758606 +96884,106920,science fiction,1413758604 +96884,106920,technology fail,1413758724 +96884,106920,thought-provoking,1413758625 +96884,107000,history,1411678737 +96884,107000,NASA,1411678741 +96884,107000,Richard Feynman,1411678776 +96884,107000,space,1411678735 +96884,107069,Afghanistan,1396828150 +96884,107069,American propaganda,1396828120 +96884,107069,Celebrates militarism,1396828124 +96884,107069,friendship,1396828131 +96884,107069,Navy SEALs,1396828135 +96884,107069,true story,1396828141 +96884,107069,war,1396828145 +96884,107348,epically stupid ending,1398654147 +96884,107348,racist humor,1398654006 +96884,107348,Steve Carell,1398654001 +96884,107348,stupid but funny,1398654055 +96884,107348,will ferrell,1398654005 +96884,107702,boxing,1397361525 +96884,107702,sports,1397361524 +96884,107953,action,1405794397 +96884,107953,anime,1405794331 +96884,107953,audience intelligence underestimated,1405794269 +96884,107953,bad ending,1405794231 +96884,107953,childish,1405794298 +96884,107953,continuity problems,1405794269 +96884,107953,dragon ball,1405794209 +96884,107953,franchise,1405794331 +96884,107953,funny,1405794215 +96884,107953,hd,1405794209 +96884,107953,martial arts,1405794381 +96884,107953,silly,1405794269 +96884,107953,supernatural powers,1405794369 +96884,107953,weak plot,1405794231 +96884,107958,cgi,1396828827 +96884,107958,childish,1396828850 +96884,107958,fabian gianolla voice,1396828827 +96884,107958,silly,1396828850 +96884,107958,stupid plot,1396828807 +96884,108188,Bad computing,1390972562 +96884,108190,anti-intellectual,1408836052 +96884,108190,audience intelligence underestimated,1408836353 +96884,108190,bad writing,1408835974 +96884,108190,based on a kids book,1408836057 +96884,108190,chick flick,1408836341 +96884,108190,childish,1408836369 +96884,108190,dystopia,1408836000 +96884,108190,made for 11-14-year-olds,1408836008 +96884,108190,made-for-TV quality,1408836038 +96884,108190,plot holes,1408835977 +96884,108190,pretentious,1408836042 +96884,108190,silly,1408836369 +96884,108190,unintelligent,1408836035 +96884,108729,adultery,1413758323 +96884,108729,confusing,1413758303 +96884,108729,doppelganger,1413758288 +96884,108729,mental illness,1413758317 +96884,108729,nudity (topless),1413758283 +96884,108729,pregnancy,1413758308 +96884,108729,worst ending ever,1413758279 +96884,108932,breaking the fourth wall,1417369806 +96884,108932,good plot,1417369848 +96884,108932,slow start,1417369851 +96884,108945,action,1392876308 +96884,108945,corruption,1392876357 +96884,108945,crime,1392876316 +96884,108945,jose padilha,1392876379 +96884,108945,media circus,1392876333 +96884,108945,police,1392876238 +96884,108945,remake,1392876243 +96884,108945,social comentary,1392876355 +96884,108945,Special Effects,1392876308 +96884,108979,anime,1405227255 +96884,108979,cinematography,1405227242 +96884,108979,future,1405227242 +96884,108979,spaceships,1405227242 +96884,109374,boring,1405559240 +96884,109374,cinematography,1405559214 +96884,109374,fantasy,1405559203 +96884,109374,hotel,1405559193 +96884,109374,meaningless formalism,1405559188 +96884,109374,poetry,1405559240 +96884,109374,stylized,1405559205 +96884,109483,bad script,1405838852 +96884,109483,chick flick,1405838779 +96884,109483,gay flick,1405838779 +96884,109483,metrosexual,1405838779 +96884,109483,relationships,1405838726 +96884,109483,unbelievable plot,1405838803 +96884,109483,unrealistic,1405838803 +96884,109487,ambitious,1416922163 +96884,109487,Christopher Nolan,1416922155 +96884,109487,good science,1416922180 +96884,109487,interesting ideea,1416922173 +96884,109487,relativity,1416922166 +96884,109487,space,1416922203 +96884,109487,wormhole,1416922186 +96884,109848,aliens,1413758463 +96884,109848,boring,1413758435 +96884,109848,little dialogue,1413758472 +96884,109848,male nudity,1413758442 +96884,109848,nudity (full frontal),1413758459 +96884,109848,Scarlett Johansson,1413758480 +96884,109848,slow,1413758445 +96884,110553,Andrew Garfield,1400694640 +96884,110553,audience intelligence underestimated,1400694688 +96884,110553,childish,1400694707 +96884,110553,comedy,1400694608 +96884,110553,Emma Stone,1400694634 +96884,110553,Marvel,1400694614 +96884,110553,pacing,1400694617 +96884,110553,silly plot,1400694689 +96884,110553,story,1400694621 +96884,110730,artificial intelligence,1406164077 +96884,110730,impossible science,1406164067 +96884,110730,poorly thought out ending,1406164089 +96884,110730,science is magic,1406164072 +96884,111362,based on a comic,1401942003 +96884,111362,Jennifer Lawrence,1401942007 +96884,111362,superpowers,1401942057 +96884,111362,time travel,1401942013 +96884,111362,X-men,1401942043 +96884,111364,franchise,1401508067 +96884,111364,great photograpy,1401508137 +96884,111364,Kaiju,1401508060 +96884,111364,marines,1401508219 +96884,111364,Monster,1401508051 +96884,111364,special effects,1401508071 +96884,111743,Charlize Theron,1414621561 +96884,111743,funny,1414621539 +96884,111743,Seth MacFarlane,1414621541 +96884,111743,witty,1414621543 +96884,111759,action,1402599772 +96884,111759,aliens,1402599744 +96884,111759,Emily Blunt,1402599738 +96884,111759,future,1402599845 +96884,111759,original plot,1402599788 +96884,111759,sci-fi,1402599772 +96884,111759,time loop,1402599734 +96884,111759,time travel,1402599735 +96884,111759,Tom Cruise,1402599718 +96884,111759,war,1402599772 +96884,112138,hilarious,1414425533 +96884,112138,Jonah Hill,1414425524 +96884,112138,not too much funny,1414425587 +96884,112138,police,1414425507 +96884,112138,ridiculous,1414425562 +96884,112138,Self-referential,1414425491 +96884,112138,sequel,1414425495 +96884,112138,undercover cop,1414425498 +96884,112175,animation,1420946479 +96884,112175,childish,1420946488 +96884,112175,dragons,1420946442 +96884,112175,sequel,1420946445 +96884,112183,cinematography,1424930771 +96884,112183,Crazy,1424930699 +96884,112183,great performances,1424930708 +96884,112183,movie business,1424930704 +96884,112183,surreal,1424930730 +96884,112556,Blackmail,1423373487 +96884,112556,meticulous,1423373453 +96884,112556,murder,1423373477 +96884,112556,Psychopathy,1423373473 +96884,112556,unpredictable,1423373452 +96884,112623,action,1407639204 +96884,112623,Andy Serkis,1407639312 +96884,112623,apocalyptic,1407639221 +96884,112623,CGI,1407639244 +96884,112623,cinematography,1407639273 +96884,112623,realistic,1407639288 +96884,112623,relationships,1407639306 +96884,112623,sci-fi,1407639234 +96884,112623,sequel,1407639241 +96884,112623,social commentary,1407639273 +96884,112623,virus,1407639232 +96884,112852,adventure,1407910481 +96884,112852,fantasy,1407910480 +96884,112852,sci-fi,1407910481 +96884,112852,space,1407910428 +96884,112946,acting,1416285346 +96884,112946,happy ending,1416285247 +96884,112946,jump cuts,1416285229 +96884,112946,Pretentious,1416285184 +96884,113345,awful script,1433131867 +96884,113345,sci-fi,1433131873 +96884,113348,audience intelligence underestimated,1410734402 +96884,113348,bad script,1410734367 +96884,113348,cgi,1410734447 +96884,113348,characters,1410734426 +96884,113348,childish,1410734367 +96884,113348,comic book,1410734305 +96884,113348,few action scenes,1410734412 +96884,113348,martial arts,1410734460 +96884,113348,new story,1410734874 +96884,113348,plot holes,1410734367 +96884,113348,poor action,1410734367 +96884,113348,silly,1410734367 +96884,113348,TNMT,1410734425 +96884,114180,dystopia,1418358198 +96884,114180,intriguing,1418358230 +96884,114180,plot holes,1418358241 +96884,114180,weak plot,1418358258 +96884,114662,Bradley Cooper,1432006343 +96884,114662,patriotic,1432006347 +96884,114662,Propaganda,1432006341 +96884,114662,sniper,1432006372 +96884,114662,war hero,1432006349 +96884,114678,aventure,1453003731 +96884,114678,Happiness,1453003642 +96884,114678,thought-provoking,1453003716 +96884,114935,good plot,1417922685 +96884,114935,not for dummies,1417922677 +96884,114935,predictable,1417922651 +96884,115122,comedy,1432006296 +96884,115122,dark comedy,1432006294 +96884,115122,humor,1432006291 +96884,115122,mockumentary,1432006282 +96884,115122,New Zealand,1432006287 +96884,115122,vampires,1432006285 +96884,115569,dark,1422771661 +96884,115569,satire,1422771657 +96884,115569,transformative performance,1422771681 +96884,115617,superhero,1424149585 +96884,115713,AI,1433650829 +96884,115713,artificial intelligence,1433650820 +96884,115713,futuristic,1433650815 +96884,115713,nudity (full frontal),1433650810 +96884,115713,philosophical,1433650812 +96884,115713,robots,1433650817 +96884,115713,sad ending,1433650845 +96884,115713,sci-fi,1433650819 +96884,115713,technology,1433650829 +96884,115713,thought provoking,1433650823 +96884,116161,bad ending,1425597047 +96884,116161,Mark Ruffalo,1425596984 +96884,116161,wrestling,1425596974 +96884,116823,boring,1451872955 +96884,116823,military,1451872974 +96884,116823,no action,1451872950 +96884,116823,no ending,1451872948 +96884,116823,revolution,1451872978 +96884,116823,slow paced,1451872953 +96884,117176,biography,1425356908 +96884,117176,physics,1425356910 +96884,117176,Stephen Hawking,1425356913 +96884,117529,cliche,1434776190 +96884,118696,few dialogues,1422663407 +96884,118696,Peter Jackson,1422663388 +96884,118696,Tolkien,1422663386 +96884,118900,coping,1429979111 +96884,118900,editing,1429979002 +96884,118900,hiking,1429978918 +96884,118900,quotes,1429979140 +96884,119145,action scenes,1432742642 +96884,119145,childish,1432742622 +96884,119145,silly,1432742624 +96884,119145,violent,1432742604 +96884,122882,action,1432006070 +96884,122882,post apocalypse,1432006044 +96884,122886,Fan service,1450934342 +96884,122886,franchise,1450934335 +96884,122886,Harrison Ford,1450934349 +96884,122886,Jedi Knight,1450934331 +96884,122886,John Williams,1450934319 +96884,122886,Plot Recycling,1450934307 +96884,122886,Star Wars,1450934315 +96884,122892,audience iq understimated,1432006257 +96884,122892,bad plot,1432006228 +96884,122892,childish,1432006226 +96884,122892,comic book,1432006203 +96884,122892,Marvel,1432006201 +96884,122892,silly,1432006224 +96884,122892,superhero,1432006204 +96884,122900,comic book,1450111539 +96884,122900,funny moments,1450111597 +96884,122900,Marvel,1450111552 +96884,122900,paul rudd,1450111532 +96884,122900,sci-fi,1450111551 +96884,122900,superhero,1450111537 +96884,127202,bad ending,1449173595 +96884,127202,sad ending,1449173598 +96884,127202,terminal illness,1449173600 +96884,133545,great acting,1436668084 +96884,134130,based on book,1445491471 +96884,134130,mars,1445491475 +96884,134130,Near Future,1445491476 +96884,134130,sci-fi,1445491479 +96884,134130,Space,1445491464 +96884,134130,Survival Instinct,1445491469 +96884,134170,80's nostalgia,1433391100 +96884,134170,parody,1433391069 +96884,134853,childhood,1451261473 +96884,134853,clever,1451262394 +96884,134853,creative,1451261435 +96884,134853,emotions,1451261472 +96884,134853,imaginative,1451261439 +96884,134853,introspective,1451261432 +96884,134853,memory,1451261446 +96884,134853,psychology,1451261425 +96884,134853,thought provoking,1451261456 +96884,139644,atmospheric,1453003437 +96884,139644,cinematograpy:roger deakins,1453003433 +96884,139644,emily blunt,1453003448 +96884,139644,revenge,1453003445 +96952,260,adventure,1443899597 +96952,260,old movie,1443899616 +96956,260,Every nerd should have seen more than once,1442612381 +96956,260,sci-fi,1442612369 +96985,1207,want to see again,1219706341 +96985,1247,want to see again,1219706402 +96985,6867,want to see again,1219706298 +96985,38886,depressing,1219777663 +96985,47978,disturbing,1219708273 +96993,595,animation,1161020080 +96993,6539,action,1161020049 +96993,6539,adventure,1161020049 +96993,6539,comedy,1161020049 +96993,49347,dramatic irony,1164469702 +96997,3623,espionage,1177292529 +96997,4226,Groundbreaking,1177292467 +96997,4226,special,1177292474 +96997,4226,stylized,1177292462 +96997,45186,espionage,1177292502 +96997,112940,super dry,1415763818 +97034,4226,nonlinear,1267918389 +97034,4226,twist ending,1267918385 +97048,1221,dysfunctional family,1449784337 +97048,1704,excellent script,1450388120 +97048,1704,genius,1450388114 +97048,1704,inspirational,1450388119 +97048,1704,intellectual,1450388125 +97048,1704,intelligent,1450388122 +97048,1704,mathematics,1450388128 +97048,1704,mentor,1450388112 +97048,1704,psychology,1450388116 +97048,1704,thoughtful,1450388136 +97048,1704,university,1450388132 +97048,2318,dark humor,1450388069 +97048,2318,loneliness,1450388067 +97048,2318,social commentary,1450388073 +97048,2959,mental illness,1450006002 +97048,2959,philosophy,1450006000 +97048,2959,psychological,1450006007 +97048,2959,psychology,1450005990 +97048,2959,social commentary,1450005995 +97048,2959,thought-provoking,1450006004 +97048,48385,satire,1450387947 +97048,48385,social commentary,1450387952 +97048,79357,philosophy,1450388041 +97048,79357,thought provoking,1450388043 +97071,45501,good start,1152335157 +97071,45501,horrible finish,1152335151 +97082,6163,self-destructive romance,1308585366 +97082,6163,twisted,1308585338 +97082,6942,witty,1308585401 +97082,7361,memory,1310711441 +97082,7361,psychology,1310711426 +97082,7361,romance,1310711917 +97082,7361,thought-provoking,1310711434 +97082,8981,dialogue,1308585513 +97082,8981,Natalie Portman,1308585523 +97082,9010,escapist ending,1308585310 +97082,9010,French,1308585287 +97082,9010,Marion Cotillard,1308585303 +97082,33815,generic,1325854788 +97082,55278,good dialogue,1308585488 +97082,58047,bad acting,1313186018 +97082,58047,cute,1313186065 +97082,58047,Ryan Reynolds,1313186008 +97082,58998,good dialogue,1308585465 +97082,62511,depressing,1310712064 +97082,62511,long,1310711994 +97082,62511,philosophy,1310712021 +97082,62511,thought-provoking,1310712037 +97082,64114,christian,1325854626 +97082,64114,problematic,1325854518 +97082,64114,religion,1325854487 +97082,69757,artistic,1308585235 +97082,69757,intelligent,1308585247 +97082,69757,quirky,1308585229 +97082,69757,stylized,1308585262 +97082,79860,thought-provoking,1306879108 +97082,83798,cinematography,1316849346 +97082,83798,Eva Green,1316849353 +97082,83798,script,1316849337 +97093,28,Amanda Root,1284990361 +97093,318,friendship,1284990120 +97093,318,hope,1284990120 +97093,331,mental illness,1367821414 +97093,422,thriller,1367821840 +97093,747,stupid,1367821763 +97093,1096,mental illness,1367821414 +97093,1246,carpe diem,1284990081 +97093,1957,inspirational,1367821338 +97093,2443,ensemble cast,1367821183 +97093,2461,franchise,1367821274 +97093,2583,ensemble cast,1367821184 +97093,2806,high school,1367821307 +97093,3071,inspirational,1367821338 +97093,3088,mental illness,1367821414 +97093,3505,thriller,1367821840 +97093,4029,ensemble cast,1367821184 +97093,4043,father-son relationship,1367821246 +97093,4068,high school,1367821307 +97093,4212,mystery,1367821480 +97093,4251,violent,1367821867 +97093,4300,politics,1367821735 +97093,4345,ensemble cast,1367821184 +97093,4347,nazis,1367821553 +97093,4640,violent,1367821868 +97093,4655,politics,1367821735 +97093,4661,thriller,1367821840 +97093,4769,nazis,1367821553 +97093,4814,thriller,1367821840 +97093,4845,stupid,1367821763 +97093,4947,police,1367821661 +97093,4969,mystery,1367821481 +97093,5021,ensemble cast,1367821184 +97093,5434,tense,1367821802 +97093,5498,black and white,1367820957 +97093,5501,stupid,1367821763 +97093,5564,high school,1367821307 +97093,5570,tense,1367821802 +97093,5585,stupid,1367821763 +97093,5642,police,1367821661 +97093,6027,Lili Taylor,1284989840 +97093,6027,River Phoenix,1284989840 +97093,6185,police,1367821661 +97093,6260,christianity,1367821044 +97093,6639,thriller,1367821840 +97093,6981,christianity,1367821044 +97093,7223,mystery,1367821481 +97093,7235,violent,1367821868 +97093,7260,christianity,1367821044 +97093,7834,mystery,1367821481 +97093,8207,tense,1367821802 +97093,8207,thriller,1367821840 +97093,8516,black and white,1367820957 +97093,25769,father-son relationship,1367821246 +97093,26003,black and white,1367820957 +97093,26078,politics,1367821735 +97093,26122,dark,1367821123 +97093,26269,father-son relationship,1367821246 +97093,27700,violent,1367821868 +97093,30812,mental illness,1367821414 +97093,30846,mental illness,1367821414 +97093,31225,inspirational,1367821338 +97093,31952,dark,1367821123 +97093,40339,pixar,1367821625 +97093,40629,cinematography,1284990421 +97093,44193,high school,1367821307 +97093,50798,stupid,1367821763 +97093,57528,violent,1367821867 +97093,57532,stupid,1367821763 +97093,62792,police,1367821661 +97093,62801,father-son relationship,1367821246 +97093,63436,franchise,1367821274 +97093,63859,pixar,1367821625 +97093,67408,pixar,1367821625 +97093,67923,franchise,1367821274 +97093,71264,pixar,1367821625 +97093,74677,politics,1367821736 +97093,78637,franchise,1367821274 +97093,79091,pixar,1367821625 +97093,81564,pixar,1367821625 +97093,87304,father-son relationship,1367821246 +97093,99114,violent,1367821868 +97095,4720,Nicole Kidman,1452119059 +97107,2315,dark humor,1372826649 +97118,357,Comedy,1413157327 +97118,55908,excellent script,1407646479 +97118,55908,Excellent use of dialogue,1407646457 +97118,55908,history,1407646502 +97118,55908,intelligent,1407646467 +97118,55908,philosophical,1407646465 +97118,55908,thought-provoking,1407646463 +97119,553,guns,1140267789 +97119,553,shooting,1140267789 +97119,991,Ireland,1138407370 +97119,3354,face,1137246702 +97119,3354,force,1137246702 +97119,3354,mars,1137246702 +97119,5066,Comitment,1202291102 +97119,5218,ice,1139573832 +97119,5463,dragons,1138409044 +97119,6185,gunfight,1149098408 +97119,7782,jungle,1138115664 +97119,7782,rifles,1138115664 +97119,49649,dragons,1171137760 +97119,50798,to much of everything,1178861310 +97141,1257,geeks,1378199181 +97141,2571,cult film,1378364778 +97141,2571,fantasy,1378364787 +97141,2571,sci-fi,1378364815 +97141,2571,thought-provoking,1378364798 +97141,2571,virtual reality,1378364795 +97141,4973,cult film,1378365179 +97141,4973,fairy tale,1378365183 +97141,4973,great soundtrack,1378365186 +97141,4973,idealism,1378365189 +97141,4973,imagination,1378365197 +97141,4973,inspirational,1378365200 +97141,4973,Paris,1378365203 +97141,4973,romance,1378365216 +97141,4973,surreal,1378365209 +97141,5888,easily confused with other movie(s) (title),1391824925 +97141,5888,mafia,1391824962 +97141,5888,violence,1391824919 +97141,6350,animated masterpiece,1380754407 +97141,6350,fantasy,1380754392 +97141,6350,fantasy world,1380754395 +97141,6350,Hayao Miyazaki,1380754378 +97141,6350,imagination,1380754386 +97141,7254,causality,1421346892 +97141,7254,sci-fi,1421346750 +97141,7254,superficial,1421346811 +97141,7254,time loop,1421346857 +97141,26347,Russian,1391824417 +97141,26662,airplane,1380754641 +97141,26662,birds,1380754644 +97141,26662,Hayao Miyazaki,1380754650 +97141,26662,magic,1380754655 +97141,33004,british comedy,1378364507 +97141,33004,sci-fi,1378364527 +97141,33004,space,1378364529 +97141,79333,kind,1391824672 +97141,79333,Soviet Union,1391824661 +97141,84844,revenge,1391824989 +97141,89904,black and white,1378365329 +97141,89904,original,1378365354 +97141,89904,short,1378365307 +97141,89904,silent,1378365321 +97141,102602,Georgiy Daneliya,1391824560 +97141,102602,Vahtang Kikabidze,1391824563 +97141,102666,Leonid Gayday,1387808451 +97141,102666,music,1387808407 +97141,102666,time travel,1387808340 +97141,103593,scientist hero,1387806204 +97141,103593,Soviet Union,1387806196 +97141,103593,space,1387806211 +97141,103593,space program,1387806214 +97141,107408,inspirational,1387807871 +97141,107408,music,1387807911 +97141,107408,Soviet Union,1387807887 +97141,107408,war pilots,1387807857 +97141,107408,WWII,1387807834 +97141,107410,brilliant children,1387806580 +97141,107410,Evgeni Krylatov,1387806311 +97141,107410,future,1387806341 +97141,107410,inspirational,1387806497 +97141,107410,Kir Bulychov,1387806292 +97141,107410,science,1387806358 +97141,107412,Leonid Gayday,1387805950 +97141,107412,romantic comedy,1387808166 +97141,107412,Soviet Union,1387806150 +97150,126,imaginative,1438053530 +97150,126,interesting,1438053530 +97150,126,magical,1438053530 +97150,260,Groundbreaking,1438052746 +97150,260,riveting,1438052733 +97207,27773,great soundtrack,1432217911 +97208,60069,amination,1436858184 +97208,60069,romance,1436858168 +97208,60069,space,1436858195 +97217,500,Robin Williams,1142613696 +97217,1230,Favorites,1142613693 +97217,1252,Jack Nicholson,1142613682 +97244,296,out of order,1420702156 +97244,296,pulp,1420702156 +97244,296,stylish,1420702156 +97244,318,oscar (best picture),1422477078 +97244,318,prison,1422477078 +97244,318,stephen king,1422477078 +97244,480,book adaptation,1423267510 +97244,480,dinosaurs,1423267510 +97244,480,samuel l. jackson,1423267510 +97244,593,cannibalism,1421369394 +97244,593,fbi,1421369394 +97244,593,serial killer,1421369394 +97253,53435,disturbing,1180648128 +97253,53435,paranoia,1180648128 +97253,53435,shocking,1180648128 +97267,55282,bad acting,1202284975 +97325,6377,animation,1425563545 +97325,6377,Comedy,1425563556 +97343,318,jailbreak,1422350988 +97343,318,morgan freeman,1422350988 +97343,318,tim robbins,1422350988 +97343,356,drama,1421056787 +97343,356,oscar winner,1421056787 +97343,356,tom hanks,1421056787 +97343,593,anthony hopkins,1421735471 +97343,593,jodie foster,1421735471 +97343,593,serial killer,1421735471 +97343,26082,anti-authoritarian,1428262386 +97343,26082,austere,1428262398 +97343,26082,bleak,1428262350 +97343,26082,cinematography,1428262402 +97343,26082,gory,1428262382 +97343,26082,great dialogue,1428262519 +97343,26082,Masaki Kobayashi,1428262250 +97343,26082,revenge,1428262237 +97343,26082,Samurai,1428262202 +97343,26082,slow,1428262230 +97343,26082,storytelling,1428262424 +97343,26082,swordfights,1428262544 +97343,26082,Tatsuya Nakadai,1428262410 +97343,26082,tense,1428262210 +97343,60992,melodrama,1446232221 +97343,60992,sappy,1446232206 +97343,72846,sharmila tagore,1438889608 +97343,72846,soumitra chatterjee,1438889630 +97343,83457,Madhuri Dixit,1434000936 +97343,83457,musical,1434000970 +97343,83457,overacting,1434000961 +97343,83457,Salman Khan,1434000929 +97343,83457,sappy,1434000951 +97343,83457,too long,1434000948 +97343,90430,based on a play,1428262683 +97343,90430,Christopher Waltz,1428262756 +97343,90430,ensemble cast,1428262698 +97343,90430,escalating tension,1428262730 +97343,90430,good acting,1428262689 +97343,90430,Jodie Foster,1428262741 +97343,90430,Kate Winslet,1428262715 +97343,90430,Roman Polanski,1428262664 +97343,90430,social commentary,1428262788 +97343,121370,boman irani,1433878957 +97343,121370,comedy,1433878980 +97343,121370,dance,1433878971 +97343,121370,deepika padukone,1433878964 +97343,121370,farah khan,1433878952 +97343,121370,heist,1433878968 +97343,121370,musical,1433879035 +97343,121370,shahrukh khan,1433878946 +97343,121370,slapstick,1433878977 +97343,121370,too long,1433879013 +97343,129437,kidnapping,1434916992 +97343,129437,ransom,1434916996 +97343,129437,whodunit,1434917000 +97343,130492,arranged marriage,1426844174 +97343,130492,bollywood,1426844159 +97343,130492,humour,1426844196 +97343,130492,overweight character,1426844213 +97343,130492,romance,1426844166 +97343,132468,artistic,1434859892 +97343,132468,multiple stories,1434859896 +97343,132468,philosophy,1434860865 +97343,132468,realistic,1434859919 +97343,133229,award winning,1442259350 +97343,133229,indian legal system,1442259305 +97343,133229,realistic,1442259296 +97343,133229,social commentary,1442259317 +97343,133695,family drama,1435089031 +97343,133695,high concept,1435089058 +97343,133695,old delhi,1435089039 +97343,133695,rajat kapoor,1435089048 +97343,134180,bollywood,1433793993 +97343,134180,nawazuddin siddiqui,1433794004 +97343,134180,revenge,1433793981 +97343,134180,sriram raghavan,1433794011 +97343,134180,unconventional,1433794057 +97343,134815,boring,1434050320 +97343,134815,Govinda,1434050132 +97343,134815,Romedy,1434050129 +97343,134815,Saif Ali Khan,1434050125 +97343,134867,Aanand Rai,1434311611 +97343,134867,bollywood,1434311589 +97343,134867,kangana Ranaut,1434311583 +97343,134867,Madhavan,1434311628 +97343,134867,rom-com,1434311597 +97343,135494,Noir,1434909547 +97343,135494,sex,1434909559 +97343,135494,Tragedy,1434909551 +97343,135839,based on true story,1435261628 +97343,135839,courtroom drama,1435261612 +97343,137299,beautiful imagery,1443032810 +97343,137299,coming of age,1443032836 +97343,137299,marathi,1443032801 +97343,137299,mother and son,1443032827 +97343,137299,nature,1443032815 +97343,137299,school life,1443032851 +97343,139134,comedy,1437312370 +97343,139134,crime,1437312367 +97343,139134,cynical,1437312420 +97343,139134,kidnapping,1437312374 +97343,139134,tamil,1437312387 +97343,139136,brothers,1437312681 +97343,139136,drama,1437312642 +97343,139136,gritty,1437312661 +97343,139136,melodrama,1437312664 +97343,139136,tamil,1437312657 +97343,139136,violent,1437312653 +97343,139138,crime,1437312890 +97343,139138,drama,1437312892 +97343,139138,romance,1437312895 +97343,139138,rural,1437312911 +97343,139138,tamil,1437312908 +97343,139138,tragedy,1437312902 +97343,139138,village life,1437312915 +97343,139150,betrayal,1437325045 +97343,139150,crime,1437325035 +97343,139150,drama,1437325036 +97343,139150,friends,1437325048 +97343,139150,politics,1437325058 +97343,139150,revenge,1437325061 +97343,139150,romance,1437325038 +97343,139150,tamil,1437325052 +97343,139150,tragedy,1437325042 +97343,139205,double role,1438371996 +97343,139205,romedy,1438371985 +97343,139612,Crime,1437672110 +97343,139612,Drama,1437672104 +97343,139612,Social Commentary,1437672120 +97343,139612,Tamil,1437672102 +97343,139821,artistic,1438112587 +97343,139821,dance,1438112574 +97343,139821,drama,1438112572 +97343,139821,kathakali,1438112580 +97343,139821,malayalam,1438112584 +97343,139821,meditative,1438112598 +97343,139821,slow paced,1438112594 +97343,139821,tragedy,1438112602 +97343,139865,ghost,1438197225 +97343,139865,Irrfan Khan,1438197210 +97343,139865,obsession,1438197270 +97343,139865,Partition,1438197213 +97343,139865,Punjabi,1438197205 +97343,139865,slow,1438197258 +97343,139895,based on a book,1438272976 +97343,139895,bureaucracy,1438272964 +97343,139895,comedy,1438272946 +97343,139895,drama,1438272949 +97343,139895,narration,1438272956 +97343,139895,satire,1438272951 +97343,140123,Adoor Gopalakrishnan,1438459704 +97343,140123,drama,1438459684 +97343,140123,first film,1438459709 +97343,140123,Malayalam,1438460777 +97343,140123,poverty,1438459688 +97343,140123,social realism,1438459721 +97343,140123,tragedy,1438459694 +97343,140731,1970s,1439580920 +97343,140731,ambition,1439580906 +97343,140731,Corporate ethics,1439580893 +97343,140731,Satyajit Ray,1439580880 +97343,140731,Sharmila Tagore,1439580884 +97350,235,Bill Murray,1371377385 +97350,337,Boring,1343152923 +97350,912,atmospheric,1428090221 +97350,912,bittersweet,1428090215 +97350,912,Film Noir,1428090219 +97350,912,Oscar (Best Picture),1428090228 +97350,1198,Harrison Ford,1368367723 +97350,1225,18th century,1350218900 +97350,1225,classical music,1350218904 +97350,1225,Oscar (Best Actor),1350218907 +97350,1923,Ben Stiller,1428091056 +97350,1923,comedy,1428091054 +97350,1923,crude humor,1428091062 +97350,3252,Al Pacino,1350925779 +97350,3252,blindness,1350925784 +97350,3252,disability,1350925786 +97350,3489,Dustin Hoffman,1368366823 +97350,3489,Nostalgia Critic,1368366832 +97350,3489,Peter Pan,1368366828 +97350,3489,Robin Williams,1368366835 +97350,3489,Steven Spielberg,1368366837 +97350,3489,visually appealing,1368366846 +97350,4226,nonlinear,1428870533 +97350,4226,twist ending,1428870535 +97350,4993,Oscar (Best Cinematography),1368367922 +97350,4995,mathematics,1368367281 +97350,4995,Oscar (Best Picture),1368367291 +97350,4995,Russell Crowe,1368367288 +97350,4995,twist ending,1368367295 +97350,5618,anime,1425149419 +97350,7361,imdb top 250,1368367146 +97350,7361,Jim Carrey,1368367109 +97350,7361,surrealism,1368367142 +97350,7361,thought-provoking,1368367138 +97350,27773,Korean,1350218993 +97350,30793,roald dahl,1368367614 +97350,30793,Tim Burton,1368367612 +97350,34405,quirky,1350925927 +97350,34405,sci-fi,1350925925 +97350,47610,19th century,1409338640 +97350,47610,cinematography,1409338652 +97350,47610,costume drama,1409338628 +97350,47610,Edward Norton,1409338626 +97350,47610,great ending,1409338638 +97350,47610,predictable,1409338655 +97350,47610,sex scene,1409338648 +97350,47610,stage magic,1409338660 +97350,47610,surprise ending,1409338646 +97350,47610,twist ending,1409338623 +97350,62972,history,1368367884 +97350,62972,Native Americans,1368367882 +97350,74789,Johnny Depp,1368367596 +97350,74789,Tim Burton,1368367594 +97350,74789,weird,1368367600 +97350,80463,dark comedy,1368367344 +97350,80463,imdb top 250,1368367347 +97350,88129,cinematography,1429460531 +97350,110586,black comedy,1409337917 +97350,110586,Brendan Gleeson,1408906591 +97350,110586,Ireland,1408906584 +97350,110586,nature,1409337907 +97350,112183,Edward Norton,1425148884 +97350,112183,great performances,1425148892 +97350,112183,single shot,1425148895 +97350,112450,Original,1422342007 +97350,112788,cameron diaz,1422041380 +97350,119141,James Franco,1422039879 +97356,107,Muppets,1164259487 +97356,349,Clancy,1164259513 +97356,2161,Neverending,1164259501 +97360,260,classic,1440227404 +97360,260,scifi cult,1440227410 +97429,1619,Brad Pitt,1245786885 +97437,1500,its a full comedy movie,1137998080 +97437,2490,A Legend,1137998168 +97437,2490,it is a good action movie,1137998168 +97452,953,Christmas,1149175527 +97452,1023,Pooh,1149174450 +97452,3287,Pooh,1149174496 +97452,3675,Christmas,1149175516 +97452,6936,Christmas,1149175148 +97452,31687,Pooh,1149174479 +97479,260,classic sci-fi,1442347734 +97479,109487,black hole,1442347788 +97483,50,great ending,1448789692 +97483,50,Kevin Spacey,1448789695 +97483,50,nonlinear storyline,1448789680 +97483,50,slow beginning,1448789751 +97483,170,cheesy,1448788147 +97483,170,cyberpunk,1448788136 +97483,170,inaccurate,1448788127 +97483,260,classic,1448787762 +97483,260,EPIC,1448788441 +97483,260,hero's journey,1448788491 +97483,260,interesting,1448788524 +97483,593,disturbing,1448871373 +97483,778,classic,1448789329 +97483,778,dark comedy,1448789304 +97483,778,narrated,1448789313 +97483,1246,bittersweet,1448788849 +97483,1246,heartbreaking,1448788864 +97483,1246,inspirational,1448788851 +97483,1246,Robin Williams,1448788841 +97483,1645,lawyers,1448787971 +97483,1645,psychological,1448788010 +97483,1645,temptation,1448788016 +97483,2918,charming,1448788402 +97483,2918,classic,1448788414 +97483,2918,fun,1448788379 +97483,2997,Charlie Kaufman,1448790608 +97483,2997,dark comedy,1448790611 +97483,2997,weird,1448790625 +97483,3481,funny,1448788278 +97483,3481,jack black,1448788270 +97483,3481,relationships,1448788259 +97483,3481,self reflection,1448788304 +97483,3740,campy,1450066782 +97483,3740,cult classic,1450066777 +97483,3911,absurd,1448788789 +97483,3911,dry,1448788820 +97483,3911,mockumentary,1448788793 +97483,5902,Charlie Kaufman,1448788685 +97483,5902,dark comedy,1448788680 +97483,5902,original plot,1448788677 +97483,6711,atmospheric,1448787847 +97483,6711,Bill Murray,1448787817 +97483,6711,bittersweet,1448787838 +97483,7156,reflective,1448789072 +97483,33004,absurd,1448788721 +97483,33004,sarcasm,1448788730 +97483,36535,colourful,1449035442 +97483,36535,culture clash,1449035449 +97483,36535,family,1449129785 +97483,36535,quirky,1449129765 +97483,36535,stereotypes,1449129788 +97483,44195,corruption,1448788040 +97483,44195,dark comedy,1448788032 +97483,63082,destiny,1448788188 +97483,63082,dreamlike,1448788176 +97483,63082,India,1448788181 +97483,68237,plot twist,1448788631 +97483,68237,slow paced,1448788587 +97483,68237,space,1448788638 +97483,68237,thought-provoking,1448788625 +97483,79132,too much explaining,1448789527 +97483,88129,atmospheric,1448860607 +97483,88129,Carey Mulligan,1448860665 +97483,88129,Dark,1448860700 +97483,88129,great soundtrack,1448860626 +97483,88129,heist,1448860620 +97483,88129,neo-noir,1448860660 +97483,88129,tense,1448860616 +97483,109487,grand,1448789233 +97483,109487,long,1448789190 +97483,109487,organ,1448789157 +97483,109487,pretentious,1448789271 +97483,109487,sentimental,1448789249 +97483,129354,swindle,1448788959 +97483,129354,unexpected end,1448788964 +97483,129354,Will Smith,1448788967 +97512,260,cult classic,1431639508 +97512,260,sci-fi,1431639496 +97521,260,classic sci-fi,1434957499 +97521,260,scifi cult,1434957557 +97526,260,all-time great,1439522525 +97617,442,dumb dystopia,1378424786 +97617,736,predictable,1378424833 +97617,780,alien invasion,1378424892 +97617,780,apocalypse,1378424877 +97617,780,aviation,1378424886 +97617,780,conspiracy theory,1378424883 +97617,780,end of the world,1378424880 +97617,780,US President,1378424874 +97617,1527,dystopia,1378424756 +97617,1527,humorous,1378424760 +97617,1527,satirical,1378424764 +97617,1917,apocalypse,1378424807 +97617,1917,end of the world,1378424819 +97617,1917,humorous,1378424815 +97617,1917,space,1378424810 +97617,2571,alternate reality,1378424858 +97617,2571,cyberpunk,1378424861 +97617,2571,dystopia,1378424850 +97617,2571,fight scenes,1378424855 +97617,2571,post-apocalyptic,1378424853 +97617,2571,virtual reality,1378424847 +97617,6365,alternate reality,1378424579 +97617,6365,artificial intelligence,1378424592 +97617,6365,cyberpunk,1378424575 +97617,6365,dystopia,1378424577 +97617,6365,hacking,1378424581 +97617,6365,virtual reality,1378424585 +97617,6934,artificial intelligence,1378424640 +97617,6934,cyberpunk,1378424630 +97617,6934,Post apocalyptic,1378424610 +97617,6934,virtual reality,1378424609 +97617,8361,end of the world,1378424668 +97617,8361,natural disaster,1378424653 +97617,8361,Post apocalyptic,1378424658 +97617,8361,post-apocalyptic,1378424660 +97617,8644,artificial intelligence,1378424434 +97617,8644,funny,1378424449 +97617,8644,Isaac Asimov,1378424437 +97617,8644,robots,1378424441 +97617,8644,sci-fi,1378424496 +97617,8644,thought provoking,1378424491 +97617,8644,thought-provoking,1378424493 +97617,34319,dystopia,1378424503 +97617,34319,predictable,1378424519 +97617,34319,sci-fi,1378424510 +97617,34319,surprise ending,1378424514 +97617,56174,alone in the world,1378424704 +97617,56174,apocalypse,1378424708 +97617,56174,post-apocalyptic,1378424687 +97617,56174,survival,1378424732 +97617,56174,zombies,1378424686 +97635,260,sci-fi,1443908317 +97635,260,space action,1443908305 +97635,1198,adventure,1443908460 +97662,260,sci-fi,1433540270 +97662,260,space opera,1433540323 +97675,11,president,1138955933 +97675,11,US President,1138955933 +97675,11,White House,1138956008 +97675,17,based on a book,1137500446 +97675,17,Jane Austen,1137502341 +97675,28,Jane Austen,1137764618 +97675,32,remake of a french film,1137746750 +97675,39,high school,1137764698 +97675,345,cross-dressing,1137767099 +97675,345,small town,1137767122 +97675,355,sitcom,1137501760 +97675,357,British,1137764741 +97675,357,wedding,1137764741 +97675,471,1950s,1137765208 +97675,480,dinosaurs,1137501642 +97675,497,Shakespeare,1137499863 +97675,507,car chase,1137766761 +97675,507,kidnapping,1137766761 +97675,527,holocaust,1138262921 +97675,527,Poland,1138262921 +97675,527,true story,1138262921 +97675,527,Warsaw ghetto,1138262993 +97675,527,World War II,1138262921 +97675,541,androids,1137501130 +97675,541,memory,1137501130 +97675,594,fairy-tale,1137500066 +97675,597,shopping,1139920409 +97675,597,sport car,1139920409 +97675,608,classic,1137745992 +97675,608,quirky,1137745997 +97675,616,Disney,1137502295 +97675,616,jazz,1137502259 +97675,616,Paris,1137502259 +97675,673,toons,1137746030 +97675,837,based on a book,1137500360 +97675,838,18th century,1137502712 +97675,838,based on a book,1137502365 +97675,838,British,1137764756 +97675,838,country house,1137764778 +97675,838,Jane Austen,1137502352 +97675,902,cat,1137745972 +97675,902,chick flick,1137745972 +97675,904,apartment,1137766030 +97675,904,classic,1137766036 +97675,904,Hitchcock,1137766033 +97675,904,photographer,1137766020 +97675,911,Paris,1137746814 +97675,915,classic,1137500239 +97675,915,high society,1137764805 +97675,916,Rome,1137765804 +97675,919,witch,1137502050 +97675,924,AI,1137746062 +97675,924,classic,1137746051 +97675,953,family,1137501355 +97675,953,Frank Capra,1137766115 +97675,953,small town,1137501355 +97675,954,boy scouts,1137766211 +97675,954,Frank Capra,1137766211 +97675,954,US Senate,1137766211 +97675,1013,summer camp,1137766253 +97675,1013,twins,1137766279 +97675,1014,small town,1137501406 +97675,1022,fairy-tale,1137500103 +97675,1035,classic,1137499628 +97675,1035,music,1137502543 +97675,1035,Salzburg,1137502527 +97675,1088,1960s,1139918386 +97675,1199,distopia,1137745543 +97675,1200,sf warfare,1137745922 +97675,1200,space,1137501170 +97675,1201,hanging,1138703358 +97675,1201,spaghetti western,1138703137 +97675,1208,classic,1137502583 +97675,1209,morricone score,1138703214 +97675,1209,sergio leone,1138703249 +97675,1209,spaghetti western,1138703214 +97675,1214,AI,1137746090 +97675,1214,closed spaces,1137745860 +97675,1214,command line interface,1137746090 +97675,1214,spaceship,1137745860 +97675,1225,18th century,1137502111 +97675,1225,music,1137502082 +97675,1225,opera,1137502082 +97675,1225,true story,1137502062 +97675,1225,Vienna,1137502119 +97675,1227,morricone score,1138703279 +97675,1227,sergio leone,1138703266 +97675,1246,boarding school,1137764570 +97675,1246,Shakespeare,1137499833 +97675,1247,classic,1137745303 +97675,1247,wedding,1137745271 +97675,1270,1950s,1137745367 +97675,1281,satire,1137765503 +97675,1282,dinosaurs,1137501678 +97675,1307,new year eve,1137500262 +97675,1333,classic,1137503055 +97675,1333,Hitchcock,1137503047 +97675,1333,monster,1137503032 +97675,1380,classic,1137745345 +97675,1387,classic,1137746204 +97675,1387,monster,1137746202 +97675,1390,US President,1145344471 +97675,1425,zoo,1137765548 +97675,1457,Las Vegas,1137500961 +97675,1459,president,1138955912 +97675,1459,US President,1138955912 +97675,1459,White House,1138956020 +97675,1513,fashion,1137765137 +97675,1513,high school,1137765137 +97675,1527,comics inspired,1137745640 +97675,1527,great visuals,1137745675 +97675,1527,Moebius,1137745640 +97675,1527,redhead,1137745640 +97675,1597,freak,1137745114 +97675,1608,US President,1138955880 +97675,1635,Ang Lee,1137765635 +97675,1635,first love,1137765673 +97675,1702,absent-minded professor,1137765309 +97675,1704,genius,1137765414 +97675,1704,mathematics,1137765414 +97675,1704,university,1137765439 +97675,1784,neurosis,1137503132 +97675,1919,based on a book,1137500511 +97675,1919,boarding school,1137500511 +97675,1919,Paris,1137500519 +97675,1919,school,1137500511 +97675,1921,mathematics,1137500170 +97675,1957,1920s,1137501520 +97675,1957,Olympics,1137501438 +97675,2005,cave,1137746362 +97675,2005,pirates,1137746349 +97675,2020,18th century,1137502183 +97675,2020,Paris,1137502173 +97675,2020,remake of a french film,1137500869 +97675,2059,summer camp,1137766261 +97675,2059,twins,1137766286 +97675,2161,dragon,1137745513 +97675,2194,1930s,1137745176 +97675,2324,holocaust,1137766417 +97675,2365,monster,1137502967 +97675,2366,monster,1137502930 +97675,2367,monster,1137502943 +97675,2367,WTC,1137502943 +97675,2368,monster,1137502959 +97675,2406,jungle,1137765830 +97675,2406,treasure,1137765830 +97675,2406,writer,1137765911 +97675,2420,martial arts,1137765781 +97675,2420,underdog,1137765781 +97675,2424,bookshop,1137764826 +97675,2469,1950s,1137745331 +97675,2581,chick flick,1137746669 +97675,2730,18th century,1137502620 +97675,2761,cold war,1137501232 +97675,2761,robot,1137501232 +97675,2797,toy store,1137765173 +97675,2870,apartment,1137765018 +97675,2870,honeymoon,1137764997 +97675,2951,morricone score,1138703180 +97675,2951,sergio leone,1138703180 +97675,2951,spaghetti western,1138703132 +97675,3000,Miyazaki,1137745459 +97675,3000,wilderness,1137745478 +97675,3033,Mel Brooks,1137746044 +97675,3079,Jane Austen,1137764663 +97675,3159,whales,1137501707 +97675,3255,baseball,1137766991 +97675,3363,radio DJ,1137499750 +97675,3418,car chase,1137766879 +97675,3418,rape,1137766879 +97675,3421,classic,1137745311 +97675,3448,radio DJ,1137499718 +97675,3499,writer,1137765946 +97675,3564,sitcom,1137501821 +97675,3615,dinosaurs,1137501665 +97675,3668,Shakespeare,1137499886 +97675,3681,morricone score,1138703303 +97675,3681,sergio leone,1138703308 +97675,3681,spaghetti western,1138703306 +97675,3685,mob,1137764382 +97675,3738,car chase,1137766858 +97675,3996,martial arts,1137765723 +97675,4009,radio DJ,1137499777 +97675,4025,beauty pageant,1158585727 +97675,4306,fairy tale,1137500018 +97675,4361,cross-dressing,1137767007 +97675,4361,soap opera,1137767129 +97675,4506,kidnapping,1137502235 +97675,4506,Paris,1137502235 +97675,4523,david-vs-goliath,1137499424 +97675,4523,small town,1137501381 +97675,4896,witch,1137501938 +97675,4963,Las Vegas,1137501075 +97675,4995,absent-minded professor,1137765338 +97675,4995,based on a book,1138263500 +97675,4995,mathematics,1137765392 +97675,5218,animated,1137765622 +97675,5299,culture shock,1137767030 +97675,5299,wedding,1137767035 +97675,5308,remake of a french film,1137500597 +97675,5309,sequel,1137500675 +97675,5543,monster,1137503010 +97675,5618,dragon,1137745447 +97675,5618,Miyazaki,1137745388 +97675,5618,secret door,1137745428 +97675,5618,train,1137745428 +97675,5618,witch,1137745428 +97675,5816,witch,1137501592 +97675,5995,holocaust,1138262753 +97675,5995,music,1138262807 +97675,5995,true story,1138262979 +97675,5995,Warsaw ghetto,1138262979 +97675,6218,culture shock,1137766986 +97675,6218,soccer,1137766897 +97675,6377,ocean,1137503079 +97675,6659,monster,1137502902 +97675,6979,AI,1137746137 +97675,6979,command line inteface,1137746137 +97675,6979,modem,1137746137 +97675,6979,NORAD,1137746137 +97675,7045,based on a book,1138263548 +97675,7045,witch,1137502006 +97675,7046,witch,1137501982 +97675,7091,Marx brothers,1137746435 +97675,7154,school,1140182384 +97675,7303,true story,1137502443 +97675,7341,car chase,1137766818 +97675,7341,kidnapping,1137766818 +97675,7395,large family,1137500754 +97675,7573,007,1137746647 +97675,8368,witch,1137501928 +97675,26662,Miyazaki,1137745396 +97675,26662,witch,1137499565 +97675,33836,witch,1137501286 +97675,40815,witch,1137501922 +97675,40962,large family,1137500788 +97675,41566,witch,1137502024 +97675,41569,1930s,1137502825 +97675,41569,monster,1137502952 +97675,54259,Gaiman,1204296707 +97679,296,cult film,1423949669 +97679,296,philosophical,1423949669 +97679,296,quentin tarantino,1423949669 +97686,115713,pg:fantasy action,1437417521 +97686,115713,sci-fi,1437417521 +97686,115713,thriller,1437417521 +97692,724,magic,1375489450 +97692,2810,Satoshi Kon,1375246095 +97692,4370,dystopia,1375246046 +97695,260,classic adventure,1443389866 +97695,260,"sci-fi, space",1443389850 +97695,96079,China,1443390666 +97695,96079,James Bond,1443390671 +97695,96079,spies,1443390709 +97695,129354,thief,1443390613 +97695,129354,Will Smith,1443390618 +97709,48326,Anthony Hopkins,1272489994 +97709,48326,Kate Winslet,1272489992 +97729,163,action,1281555402 +97729,163,Antonio Banderas,1281555367 +97729,163,Cheech Marin,1281555414 +97729,163,organized crime,1281555395 +97729,163,Robert Rodriguez,1281555353 +97729,163,romance,1281555387 +97729,163,Salma Hayek,1281555360 +97729,163,Steve Buscemi,1281555355 +97729,163,violence,1281555389 +97729,222,Chris O'Donnell,1250800409 +97729,222,Minnie Driver,1250800418 +97729,253,Anne Rice,1252638840 +97729,337,based on a book,1250800299 +97729,350,based on a book,1281554735 +97729,350,John Grisham,1281554732 +97729,350,lawyers,1281554754 +97729,350,Susan Sarandon,1281554738 +97729,350,Tommy Lee Jones,1281554727 +97729,454,based on a book,1281554672 +97729,454,Gene Hackman,1281554667 +97729,454,John Grisham,1281554661 +97729,454,lawyers,1281554691 +97729,454,Tom Cruise,1281554662 +97729,650,based on a book,1250796688 +97729,913,based on a book,1250800244 +97729,914,Audrey Hepburn,1250800254 +97729,930,Cary Grant,1250800970 +97729,932,Carey Grant,1217809489 +97729,932,classic love story,1217809514 +97729,937,Audrey Hepburn,1217810476 +97729,937,classic love story,1217810278 +97729,1120,Courtney Love,1250800219 +97729,1120,Woody Harrelson,1250800219 +97729,1265,Bill Murray,1250826031 +97729,1278,Gene Wilder,1289269071 +97729,1278,Mel Brooks,1289269073 +97729,1278,parody,1289269076 +97729,1278,spoof,1289269074 +97729,1398,Chris O'Donnell,1250800186 +97729,1401,James Woods,1281554524 +97729,1401,racism,1281554522 +97729,1401,true story,1281554530 +97729,1401,Whoopi Goldberg,1281554505 +97729,1527,Bruce Willis,1281554981 +97729,1527,dystopic future,1281555015 +97729,1527,Gary Oldman,1281554997 +97729,1527,Milla Jovovich,1281554973 +97729,1527,sci-fi,1281554984 +97729,1617,conspiracy,1285625916 +97729,1617,Crime,1285625932 +97729,1617,Danny DeVito,1285625913 +97729,1617,Guy Pearce,1285625910 +97729,1617,Kevin Spacey,1285625896 +97729,1617,Kim Basinger,1285625898 +97729,1617,Russell Crowe,1285625903 +97729,1620,Alex Cross,1281556139 +97729,1620,Ashley Judd,1281556133 +97729,1620,based on a book,1281556144 +97729,1620,Morgan Freeman,1281556131 +97729,1624,based on a book,1250797350 +97729,1672,Danny DeVito,1281554612 +97729,1672,John Grisham,1281554609 +97729,1672,Matt Damon,1281554607 +97729,1711,John Cusack,1250817599 +97729,1711,Kevin Spacey,1250817608 +97729,1754,Denzel Washington,1285625707 +97729,1912,George Clooney,1285625863 +97729,1912,Jennifer Lopez,1285625866 +97729,1912,Steven Soderbergh,1285625875 +97729,1935,based on a book,1250799115 +97729,2005,adventure,1250818588 +97729,2133,1980s,1285624344 +97729,2133,babysitting,1285624340 +97729,2133,Elisabeth Shue,1285624327 +97729,2268,Jack Nicholson,1281554561 +97729,2268,lawyers,1281554582 +97729,2268,military,1281554575 +97729,2268,Tom Cruise,1281554563 +97729,2325,cult film,1250801598 +97729,2353,espionage,1281554794 +97729,2353,Gene Hackman,1281554790 +97729,2353,lawyers,1281554797 +97729,2353,Will Smith,1281554785 +97729,2389,Anne Heche,1252640465 +97729,2542,dark comedy,1250817365 +97729,2542,Jason Statham,1250817368 +97729,3005,Angelina Jolie,1281556041 +97729,3005,based on a book,1281556067 +97729,3005,Denzel Washington,1281556039 +97729,3005,Queen Latifah,1281556048 +97729,3005,revenge,1281556054 +97729,3005,serial killer,1281556045 +97729,3275,Sean Patrick Flanery,1250817416 +97729,3275,vigilantism,1250817419 +97729,3275,Willem Dafoe,1250812382 +97729,3300,anti-hero,1281555030 +97729,3300,futuristic,1281555031 +97729,3300,Riddick,1281555036 +97729,3300,sci-fi,1250798480 +97729,3300,Vin Diesel,1250798472 +97729,3317,coming of age,1289268884 +97729,3317,Michael Douglas,1289268872 +97729,3317,Robert Downey Jr,1289268874 +97729,3317,Tobey Maguire,1289268876 +97729,3418,Geena Davis,1250797700 +97729,3418,Susan Sarandon,1250797700 +97729,3638,007,1281552796 +97729,3638,James Bond,1281552792 +97729,3638,Roger Moore,1281552799 +97729,3671,Gene Wilder,1289269049 +97729,3671,Mel Brooks,1289269046 +97729,4008,anti-war,1281553498 +97729,4008,Oliver Stone,1281553488 +97729,4008,Tom Cruise,1281553493 +97729,4008,Vietnam War,1281553500 +97729,4238,Alex Cross,1281556005 +97729,4238,based on a book,1281556012 +97729,4238,Monica Potter,1281556009 +97729,4238,Morgan Freeman,1281555973 +97729,4679,John Candy,1285624368 +97729,4679,john hughes,1285624371 +97729,4784,based on a book,1250802081 +97729,4887,Jason Statham,1285625517 +97729,4914,French New Wave,1285626477 +97729,4914,Jean-Luc Godard,1285626473 +97729,4979,Bill Murray,1289268825 +97729,4979,Wes Anderson,1289268827 +97729,5049,action,1281553009 +97729,5049,Eddie Murphy,1250797862 +97729,5049,Nick Nolte,1281552999 +97729,5128,Aaliyah,1252638905 +97729,5128,Anne Rice,1252638889 +97729,5903,Christian Bale,1281555091 +97729,5903,cult film,1281555113 +97729,5903,dystopia,1281555093 +97729,5903,gunfight,1281555126 +97729,5903,totalitarianism,1281555128 +97729,5957,Hugh Grant,1281554023 +97729,5957,Sandra Bullock,1281554022 +97729,6281,Colin Farrell,1285625675 +97729,6281,Kiefer Sutherland,1285625679 +97729,6287,Jack Nicholson,1289269362 +97729,6709,Antonio Banderas,1289267625 +97729,6709,Johnny Depp,1289267617 +97729,6709,Robert Rodriguez,1289267620 +97729,6709,Salma Hayek,1289267622 +97729,6870,Clint Eastwood,1285625961 +97729,6870,crime,1285625967 +97729,6870,Sean Penn,1285625963 +97729,6879,John Cusack,1281554627 +97729,6879,John Grisham,1281554630 +97729,6879,jury tampering,1281554636 +97729,6879,lawyers,1281554638 +97729,6879,Rachel Weisz,1281554632 +97729,7147,based on a book,1252640322 +97729,7147,dreamlike,1252640306 +97729,7147,surrealism,1252640312 +97729,7147,Tim Burton,1252640309 +97729,7147,twist ending,1252640318 +97729,7160,Charlize Theron,1281553812 +97729,7160,Christina Ricci,1281553814 +97729,7160,serial killer,1281553810 +97729,7444,Child as Adult,1250825303 +97729,7444,Jennifer Garner,1250825290 +97729,7444,Mark Ruffalo,1250825294 +97729,7444,romance,1250825324 +97729,7753,based on a book,1250802576 +97729,7934,mockumentary,1289269746 +97729,7934,parody,1289269744 +97729,7934,psychology,1289269742 +97729,7934,VHS,1289269754 +97729,7934,Woody Allen,1289269739 +97729,8042,Harvey Keitel,1285624760 +97729,8042,mafia,1285624779 +97729,8042,Martin Scorsese,1285624758 +97729,8042,New York City,1285624774 +97729,8042,Robert De Niro,1285624768 +97729,8268,assassins,1250799503 +97729,8371,Riddick,1250798532 +97729,8371,space,1250795856 +97729,8371,Vin Diesel,1250795861 +97729,8866,Kirsten Dunst,1250796947 +97729,8874,british comedy,1250803344 +97729,8874,dark humor,1250803333 +97729,8874,Simon Pegg,1250803339 +97729,8874,zombies,1250803336 +97729,8970,fairy tale,1252640375 +97729,8970,Johnny Depp,1252640363 +97729,8970,Kate Winslet,1252640365 +97729,8970,Peter Pan,1252640353 +97729,26567,Robin Williams,1250825644 +97729,32031,Ewan McGregor,1250801167 +97729,32031,Robin Williams,1250801172 +97729,32031,robots,1250801177 +97729,33660,Russell Crowe,1250797786 +97729,36517,Africa,1285626173 +97729,36517,AIDs,1285626184 +97729,36517,british,1285626181 +97729,36517,conspiracy,1285626137 +97729,36517,corruption,1285626151 +97729,36517,social commentary,1285626198 +97729,37382,bounty hunting,1281555325 +97729,37382,inspired by a real-life person,1281555329 +97729,37382,Keira Knightley,1250825125 +97729,37382,Lucy Liu,1250825114 +97729,41573,Claire Danes,1281555774 +97729,41573,Diane Keaton,1281555780 +97729,41573,family,1281555785 +97729,41573,Luke Wilson,1281555787 +97729,41573,relationships,1281555794 +97729,41573,Sarah Jessica Parker,1281555779 +97729,43928,Milla Jovovich,1285625457 +97729,44193,Amanda Bynes,1289267240 +97729,44193,Channing Tatum,1289267235 +97729,44193,shakespeare,1289267247 +97729,44665,assassin,1250812062 +97729,44665,hitman,1250812069 +97729,44665,Josh Hartnett,1250812054 +97729,44665,mistaken identity,1250812049 +97729,45668,time travel,1250817842 +97729,47200,Jason Statham,1289267655 +97729,48738,colonialism,1285626096 +97729,48738,Forest Whitaker,1285626059 +97729,48738,History,1285626092 +97729,48738,Uganda,1285626064 +97729,49278,Denzel Washington,1281554876 +97729,49530,Jennifer Connelly,1281553575 +97729,49530,Leonardo DiCaprio,1281553572 +97729,49530,smuggling,1281553580 +97729,50792,Jennifer Garner,1285628171 +97729,50792,Juliette Lewis,1285628178 +97729,50792,Kevin Smith,1285628117 +97729,50792,mourning,1285628152 +97729,51255,black comedy,1289269236 +97729,51255,british comedy,1250803308 +97729,51255,Simon Pegg,1250803310 +97729,52973,Katherine Heigl,1281555858 +97729,52973,Paul Rudd,1281555866 +97729,52973,Seth Rogen,1281555854 +97729,54259,fairy tale romance,1250818534 +97729,54259,Robert De Niro,1250818549 +97729,54276,Aaron Eckhart,1285628271 +97729,54276,Abigail Breslin,1285628293 +97729,54276,Catherine Zeta-Jones,1285628273 +97729,54276,cooking,1285628282 +97729,54734,Amanda Bynes,1250803240 +97729,54999,Clive Owen,1281555433 +97729,54999,gunfight,1281555446 +97729,54999,Paul Giamatti,1281555436 +97729,54999,satire,1281555450 +97729,55267,Dane Cook,1281555828 +97729,55267,Juliette Binoche,1281555824 +97729,55267,Steve Carell,1281555822 +97729,55830,Mos Def,1250796787 +97729,56156,assassin,1252640842 +97729,56156,based on a game,1252640847 +97729,56156,Timothy Olyphant,1252640819 +97729,56156,video game adaptation,1252640846 +97729,57669,assassin,1281544318 +97729,57669,Colin Farrell,1250795132 +97729,57669,dark comedy,1250795120 +97729,57669,friendship,1281544304 +97729,57669,hitman,1250795136 +97729,57669,irish accent,1281544291 +97729,57669,Ralph Fiennes,1250795157 +97729,58047,Abigail Breslin,1250820960 +97729,58047,Kevin Kline,1250820945 +97729,58047,marriage,1250820949 +97729,58047,PARENTHOOD,1250821909 +97729,58047,Ryan Reynolds,1250820932 +97729,58315,Mike Myers,1250481347 +97729,58972,Gerard Butler,1250817557 +97729,58998,break-up,1250799750 +97729,59258,Greg Kinnear,1250825832 +97729,59258,pregnancy,1250825815 +97729,59258,surrogate,1250825837 +97729,59258,Tina Fey,1250825818 +97729,59369,father daughter relationship,1250817463 +97729,59369,Liam Neeson,1250817459 +97729,59421,marriage,1250804295 +97729,59727,disturbing,1250820763 +97729,59727,serial killers,1250820759 +97729,59727,terrifying,1250820796 +97729,60072,James McAvoy,1289267722 +97729,60072,Morgan Freeman,1289267732 +97729,60126,Anne Hathaway,1281554140 +97729,60126,Based on a TV show,1281554144 +97729,60126,Bill Murray,1281554151 +97729,60126,espionage,1281554162 +97729,60126,Steve Carell,1281554147 +97729,60948,wine,1250825171 +97729,61250,Anna Faris,1289267179 +97729,62081,assassination,1250825226 +97729,62081,big brother,1250825222 +97729,62081,cyberterrorism,1250825201 +97729,62394,based on a computer game,1252640754 +97729,62394,Ludacris,1252640745 +97729,62394,Mila Kunis,1252640748 +97729,62434,Seth Rogen,1281555898 +97729,63062,angelina jolie,1285626009 +97729,63062,based on a true story,1285626000 +97729,63062,Clint Eastwood,1285626004 +97729,63062,John Malkovich,1285626006 +97729,63062,police corruption,1285626020 +97729,64622,based on a book,1250796753 +97729,65230,dogs,1250799279 +97729,66097,alternate universe,1250825403 +97729,66097,animation,1250825422 +97729,66097,Dakota Fanning,1250825415 +97729,66097,stop motion,1250825409 +97729,67087,bromance,1252639685 +97729,69122,Zach Galifianakis,1289269261 +97729,69140,Helena Bonham Carter,1285627034 +97729,69140,Johnny Depp,1285627034 +97729,69406,Betty White,1281553980 +97729,69406,Ryan Reynolds,1281553973 +97729,69406,Sandra Bullock,1281553971 +97729,71535,Bill Murray,1289269197 +97729,71535,post-apocalyptic,1289269194 +97729,71535,Woody Harrelson,1289269192 +97729,71535,zombies,1289269200 +97729,72489,blood,1281555523 +97729,72489,martial arts,1281555495 +97729,72489,Naomie Harris,1281555516 +97729,72489,plot,1281555513 +97729,72489,Rain,1281555503 +97729,72489,stylized violence,1281555505 +97729,72641,based on a true story,1289267307 +97729,72641,Sandra Bullock,1289267304 +97729,73321,Christianity,1281555186 +97729,73321,Mila Kunis,1281555179 +97729,73321,plot holes,1281555191 +97729,73321,twist ending,1281555168 +97729,76293,funny,1289267075 +97729,76293,James Franco,1289267040 +97729,76293,Mark Wahlberg,1289267057 +97729,76293,Mila Kunis,1289267062 +97729,76293,Steve Carell,1289267042 +97729,76293,Tina Fey,1289267045 +97729,80549,Emma Stone,1289265931 +97740,94466,not a movie,1440815587 +97750,47,David Fincher,1225233801 +97750,1320,David Fincher,1225233814 +97750,1625,David Fincher,1225233806 +97750,2959,David Fincher,1225233794 +97750,5266,David Fincher,1225233814 +97750,51540,David Fincher,1225233814 +97755,6291,best movie ever,1190294806 +97755,6291,Depressing,1190294688 +97755,6291,So sad,1190294666 +97755,6885,cinematography,1190577599 +97766,85414,action,1438709860 +97766,85414,sci-fi,1438709860 +97766,85414,technology,1438709860 +97769,260,sci-fi,1442018176 +97769,260,space adventure,1442018193 +97789,593,intense acting,1437218301 +97789,593,ps,1437218301 +97789,593,psychological horror,1437218301 +97824,260,han solo,1439799149 +97824,260,sci-fi,1439799155 +97827,260,classic,1431873663 +97827,260,sci-fi,1431873673 +97827,260,space,1431873656 +97858,260,classic sci-fi,1437598061 +97858,260,seminal,1437598120 +97872,260,classic sci-fi,1441996532 +97872,260,epic adventure,1441996542 +97872,260,space epic,1441996539 +97875,1721,drama,1447055433 +97875,1721,historical,1447055447 +97875,1721,romance,1447055423 +97912,58559,Batman,1433937361 +97912,58559,dark,1433937374 +97912,112552,musicians,1433937333 +97912,112552,purpose in life,1433937333 +97912,112552,teacher,1433937333 +97913,1077,Woody Allen,1421548844 +97915,260,adventure,1432350581 +97915,260,Science Fiction,1432350557 +97915,260,Star Wars,1432350613 +97917,10,reviewed,1447158692 +97917,16,reviewed,1453034206 +97917,21,reviewed,1443870906 +97917,28,reviewed,1452771290 +97917,34,reviewed,1401221821 +97917,39,reviewed,1427372407 +97917,40,prospect,1449337826 +97917,85,might like,1347373309 +97917,96,prospect,1449339891 +97917,105,reviewed,1446635320 +97917,114,might like,1344373251 +97917,141,might like,1350052274 +97917,144,reviewed,1417005226 +97917,151,reviewed,1442138085 +97917,164,reviewed,1428656880 +97917,165,reviewed,1401221786 +97917,211,might like,1344970726 +97917,222,reviewed,1446899008 +97917,233,might like,1350154777 +97917,247,prospect,1449339568 +97917,277,reviewed,1432669685 +97917,299,prospect,1449340149 +97917,319,reviewed,1397657496 +97917,326,might like,1342901227 +97917,341,might like,1345493915 +97917,350,reviewed,1407152492 +97917,371,reviewed,1444908228 +97917,380,reviewed,1410823251 +97917,417,might like,1350760881 +97917,448,might like,1346941345 +97917,456,prospect,1449340447 +97917,500,reviewed,1396872487 +97917,534,reviewed,1401967370 +97917,592,reviewed,1443178110 +97917,593,reviewed,1451401952 +97917,594,reviewed,1402338819 +97917,596,reviewed,1443093403 +97917,638,should like,1342920099 +97917,647,reviewed,1438947409 +97917,648,reviewed,1446463438 +97917,720,TV series,1406751676 +97917,733,reviewed,1401391014 +97917,780,reviewed,1441882987 +97917,786,maybe,1342818745 +97917,803,might like,1346334040 +97917,832,reviewed,1448460635 +97917,838,reviewed,1445340011 +97917,862,might like,1345309078 +97917,921,reviewed,1403784428 +97917,931,reviewed,1410823449 +97917,934,reviewed,1429961294 +97917,941,reviewed,1443093421 +97917,943,reviewed,1450181279 +97917,951,reviewed,1451400321 +97917,963,might like,1347562573 +97917,964,should like,1342922585 +97917,976,instant view,1342651313 +97917,976,might like,1349198801 +97917,991,reviewed,1442056228 +97917,1022,reviewed,1405193573 +97917,1027,reviewed,1444216753 +97917,1028,reviewed,1401390706 +97917,1034,might like,1347467607 +97917,1038,instant view,1342818670 +97917,1038,might like,1342920145 +97917,1056,prospect,1449340486 +97917,1061,reviewed,1444128912 +97917,1068,should like,1346335248 +97917,1092,reviewed,1417689388 +97917,1094,prospect,1449339522 +97917,1099,reviewed,1406751351 +97917,1103,reviewed,1402338884 +97917,1120,prospect,1449340636 +97917,1129,instant view,1314290699 +97917,1177,reviewed,1449319430 +97917,1222,reviewed,1398030374 +97917,1236,reviewed,1397831243 +97917,1263,reviewed,1401391187 +97917,1286,reviewed,1447503685 +97917,1290,reviewed,1424781489 +97917,1292,prospect,1449779083 +97917,1303,reviewed,1444218461 +97917,1344,reviewed,1402338506 +97917,1357,reviewed,1443265494 +97917,1370,reviewed,1401391741 +97917,1375,reviewed,1405193520 +97917,1404,reviewed,1439205721 +97917,1411,reviewed,1438428692 +97917,1413,prospect,1449340585 +97917,1442,reviewed,1417511015 +97917,1449,prospect,1449339969 +97917,1487,reviewed,1405881751 +97917,1507,reviewed,1451564586 +97917,1589,reviewed,1433847973 +97917,1597,prospect,1447966786 +97917,1620,reviewed,1427455163 +97917,1633,reviewed,1435317302 +97917,1639,reviewed,1402338745 +97917,1648,might like,1346941881 +97917,1660,should like,1342920390 +97917,1663,reviewed,1429352651 +97917,1725,might like,1350084142 +97917,1727,reviewed,1438688860 +97917,1810,reviewed,1448549750 +97917,1835,reviewed,1451565462 +97917,1880,might like,1346942061 +97917,1900,might like,1342902590 +97917,1912,reviewed,1448813031 +97917,1923,reviewed,1443370914 +97917,1926,maybe,1342816797 +97917,1931,reviewed,1402055686 +97917,1959,reviewed,1432810147 +97917,1994,reviewed,1413652860 +97917,2001,reviewed,1447589229 +97917,2011,reviewed,1453812919 +97917,2012,reviewed,1453809628 +97917,2018,reviewed,1435165505 +97917,2023,reviewed,1448742114 +97917,2064,might like,1344353018 +97917,2065,reviewed,1402940188 +97917,2069,reviewed,1447417208 +97917,2070,reviewed,1402951519 +97917,2080,reviewed,1402940331 +97917,2094,reviewed,1449403775 +97917,2096,reviewed,1401391130 +97917,2100,reviewed,1443178218 +97917,2112,reviewed,1421325985 +97917,2125,reviewed,1441883227 +97917,2166,reviewed,1447244213 +97917,2186,reviewed,1401391276 +97917,2197,reviewed,1432984015 +97917,2203,reviewed,1441625652 +97917,2237,reviewed,1440867816 +97917,2240,reviewed,1448023790 +97917,2272,reviewed,1443178599 +97917,2290,might like,1342907301 +97917,2300,reviewed,1396872924 +97917,2303,prospect,1449337618 +97917,2310,reviewed,1443447223 +97917,2318,prospect,1449340537 +97917,2321,reviewed,1443447264 +97917,2334,prospect,1449339313 +97917,2344,might like,1350407364 +97917,2349,prospect,1449337087 +97917,2357,reviewed,1397657882 +97917,2358,prospect,1447966761 +97917,2391,reviewed,1448734522 +97917,2394,reviewed,1448742185 +97917,2397,reviewed,1434481750 +97917,2406,reviewed,1415881630 +97917,2407,reviewed,1448713601 +97917,2410,reviewed,1443871656 +97917,2424,reviewed,1448734479 +97917,2433,reviewed,1448734461 +97917,2434,might like,1351878183 +97917,2443,reviewed,1448734443 +97917,2447,reviewed,1451400985 +97917,2474,reviewed,1404303012 +97917,2481,might like,1344373453 +97917,2518,reviewed,1449488995 +97917,2527,might like,1342922062 +97917,2542,prospect,1449340415 +97917,2565,reviewed,1401221890 +97917,2572,reviewed,1453989295 +97917,2617,reviewed,1407067318 +97917,2620,reviewed,1441710688 +97917,2633,might like,1342923769 +97917,2641,reviewed,1423825850 +97917,2660,might like,1344353519 +97917,2686,reviewed,1445596941 +97917,2706,reviewed,1442400472 +97917,2717,reviewed,1398031914 +97917,2724,might like,1346771072 +97917,2725,might like,1343058601 +97917,2739,reviewed,1401391802 +97917,2804,reviewed,1401221876 +97917,2820,might like,1345043783 +97917,2858,reviewed,1443447280 +97917,2917,reviewed,1401390725 +97917,2919,reviewed,1445857475 +97917,2930,reviewed,1440761571 +97917,2936,reviewed,1435494414 +97917,2959,reviewed,1443447118 +97917,2985,prospect,1449339229 +97917,2987,reviewed,1443611415 +97917,2996,reviewed,1443447162 +97917,3005,prospect,1447354734 +97917,3020,might like,1345922355 +97917,3060,reviewed,1417436476 +97917,3066,reviewed,1446635812 +97917,3077,TV miniseries,1402941273 +97917,3081,might like,1342909613 +97917,3102,reviewed,1406717472 +97917,3107,reviewed,1437995835 +97917,3112,instant view,1342618706 +97917,3135,reviewed,1436441233 +97917,3138,reviewed,1449922097 +97917,3150,instant view,1345390688 +97917,3150,might like,1345390688 +97917,3153,might like,1344375255 +97917,3155,reviewed,1448742159 +97917,3159,might like,1350154832 +97917,3174,prospect,1449340816 +97917,3189,reviewed,1453989985 +97917,3198,reviewed,1402940416 +97917,3199,prospect,1445457747 +97917,3213,should like,1342909873 +97917,3257,reviewed,1417181164 +97917,3259,reviewed,1429527428 +97917,3270,reviewed,1448460304 +97917,3298,reviewed,1451416114 +97917,3308,reviewed,1442138592 +97917,3330,reviewed,1401391533 +97917,3358,reviewed,1448022492 +97917,3371,should like,1344376148 +97917,3408,reviewed,1451426823 +97917,3418,reviewed,1432894019 +97917,3424,reviewed,1442747974 +97917,3478,reviewed,1444131323 +97917,3480,reviewed,1449404398 +97917,3481,reviewed,1451427800 +97917,3499,reviewed,1404567870 +97917,3510,reviewed,1453994669 +97917,3524,reviewed,1404125052 +97917,3526,reviewed,1417510383 +97917,3527,reviewed,1397656810 +97917,3528,reviewed,1441710139 +97917,3535,prospect,1449340292 +97917,3549,reviewed,1405193640 +97917,3551,reviewed,1403091456 +97917,3556,maybe,1338929402 +97917,3576,might like,1345945433 +97917,3585,might like,1346525683 +97917,3654,reviewed,1402338702 +97917,3668,reviewed,1416573074 +97917,3684,reviewed,1447329358 +97917,3699,reviewed,1436947012 +97917,3706,might like,1345921405 +97917,3724,reviewed,1403175529 +97917,3726,might like,1348845638 +97917,3739,reviewed,1443447094 +97917,3811,reviewed,1443447241 +97917,3813,maybe,1342643820 +97917,3814,reviewed,1444309625 +97917,3844,reviewed,1425550279 +97917,3868,reviewed,1404508548 +97917,3936,might like,1350407219 +97917,3947,might like,1347467719 +97917,4002,reviewed,1397132379 +97917,4008,reviewed,1443782841 +97917,4014,reviewed,1448734502 +97917,4016,might like,1343063254 +97917,4017,might like,1345309486 +97917,4095,reviewed,1402918432 +97917,4186,might like,1344383381 +97917,4197,might like,1344366004 +97917,4211,reviewed,1447849764 +97917,4225,reviewed,1453995138 +97917,4226,reviewed,1451426255 +97917,4262,reviewed,1406026850 +97917,4274,instant view,1342298626 +97917,4285,reviewed,1450095266 +97917,4321,reviewed,1446464178 +97917,4428,might like,1344384839 +97917,4489,reviewed,1396972780 +97917,4515,reviewed,1436701529 +97917,4535,reviewed,1448022922 +97917,4557,reviewed,1448549684 +97917,4562,might like,1350585887 +97917,4571,might like,1342922029 +97917,4595,reviewed,1440848030 +97917,4623,reviewed,1443178137 +97917,4704,reviewed,1418127632 +97917,4710,reviewed,1447417778 +97917,4729,might like,1350586153 +97917,4761,should like,1342918012 +97917,4791,might like,1342923281 +97917,4796,instant view,1342922809 +97917,4796,might like,1342922809 +97917,4835,reviewed,1450354079 +97917,4888,instant view,1344819974 +97917,4888,might like,1344819974 +97917,4917,maybe,1338929092 +97917,4994,reviewed,1439287147 +97917,5049,reviewed,1401390963 +97917,5097,might like,1351021877 +97917,5105,prospect,1449338651 +97917,5120,reviewed,1442401985 +97917,5168,instant view,1342131711 +97917,5168,might like,1342912265 +97917,5190,reviewed,1439119205 +97917,5221,should like,1342922296 +97917,5233,might like,1349547618 +97917,5289,should like,1342922495 +97917,5301,might like,1342923232 +97917,5329,might like,1345746485 +97917,5421,might like,1344371813 +97917,5447,might like,1349879931 +97917,5472,reviewed,1448460687 +97917,5525,reviewed,1401391265 +97917,5577,might like,1345573144 +97917,5600,might like,1342906693 +97917,5602,might like,1350316786 +97917,5603,might like,1346526305 +97917,5617,prospect,1449340312 +97917,5633,might like,1345572963 +97917,5642,reviewed,1449317969 +97917,5649,might like,1343149337 +97917,5682,prospect,1449339655 +97917,5693,reviewed,1427799941 +97917,5712,reviewed,1443370898 +97917,5732,reviewed,1422103520 +97917,5747,reviewed,1403544942 +97917,5802,might like,1346856958 +97917,5810,reviewed,1434886380 +97917,5820,reviewed,1441193764 +97917,5825,might like,1342911047 +97917,5826,reviewed,1448813767 +97917,5869,should like,1342921152 +97917,5916,reviewed,1439640980 +97917,5938,reviewed,1449748133 +97917,5975,instant view,1314376216 +97917,6003,might like,1344979609 +97917,6082,might like,1344372529 +97917,6159,might like,1346857061 +97917,6173,instant view,1350316520 +97917,6173,might like,1350316520 +97917,6288,might like,1348845784 +97917,6327,might like,1344979847 +97917,6329,instant view,1350406758 +97917,6329,might like,1350406758 +97917,6356,reviewed,1402745291 +97917,6357,reviewed,1446637283 +97917,6358,might like,1342912135 +97917,6400,reviewed,1439585745 +97917,6439,instant view,1344362609 +97917,6439,should like,1344362609 +97917,6441,might like,1342921300 +97917,6454,reviewed,1423117639 +97917,6461,reviewed,1401391239 +97917,6502,might like,1348756567 +97917,6581,instant view,1350407273 +97917,6581,might like,1350407273 +97917,6623,instant view,1314372084 +97917,6724,reviewed,1401390751 +97917,6732,reviewed,1448742132 +97917,6770,prospect,1448401119 +97917,6779,reviewed,1417689428 +97917,6785,reviewed,1397308789 +97917,6797,reviewed,1431523946 +97917,6832,reviewed,1445513135 +97917,6898,might like,1347310246 +97917,6900,maybe,1342630286 +97917,6911,add to prospects list,1395950176 +97917,6924,should like,1350486386 +97917,6939,reviewed,1401391662 +97917,6944,reviewed,1400844706 +97917,6980,might like,1345653887 +97917,6983,reviewed,1403822360 +97917,6984,reviewed,1403175922 +97917,7001,might like,1345130590 +97917,7025,reviewed,1447848670 +97917,7059,reviewed,1441970703 +97917,7062,reviewed,1406751907 +97917,7070,reviewed,1448022037 +97917,7086,should like,1346724405 +97917,7101,reviewed,1453810812 +97917,7112,might like,1342922938 +97917,7132,reviewed,1443012482 +97917,7212,reviewed,1405193652 +97917,7216,reviewed,1450354691 +97917,7218,reviewed,1446031982 +97917,7255,maybe,1342816476 +97917,7265,might like,1344382684 +97917,7300,might like,1345390625 +97917,7360,might like,1344979809 +97917,7373,instant view,1314283236 +97917,7373,might like,1342919109 +97917,7386,reviewed,1402056117 +97917,7419,might like,1351877868 +97917,7479,reviewed,1449488610 +97917,7566,TV series,1406751727 +97917,7573,might like,1342921825 +97917,7578,should like,1342923067 +97917,7579,reviewed,1447849176 +97917,7614,reviewed,1448734412 +97917,7615,might like,1346857603 +97917,7624,reviewed,1442574689 +97917,7669,TV miniseries,1447355442 +97917,7706,should like,1342907499 +97917,7753,should like,1346856620 +97917,7810,should like,1347373808 +97917,7826,reviewed,1423227318 +97917,7842,might like,1346525397 +97917,7897,might like,1342918348 +97917,7918,might like,1346526049 +97917,7923,might like,1346770947 +97917,8044,reviewed,1442657776 +97917,8045,maybe,1342135059 +97917,8126,might like,1344353199 +97917,8221,might like,1344374768 +97917,8268,reviewed,1450711573 +97917,8332,might like,1344353383 +97917,8340,reviewed,1402338413 +97917,8378,reviewed,1438591863 +97917,8422,reviewed,1449403315 +97917,8493,reviewed,1404904489 +97917,8494,reviewed,1439205282 +97917,8516,might like,1342922728 +97917,8518,might like,1347373406 +97917,8521,should like,1350084094 +97917,8595,might like,1350154939 +97917,8600,reviewed,1440917783 +97917,8611,reviewed,1418127103 +97917,8623,reviewed,1416227817 +97917,8657,reviewed,1450094813 +97917,8694,should like,1350585966 +97917,8710,might like,1345573505 +97917,8757,might like,1347899951 +97917,8768,might like,1344037568 +97917,8851,instant view,1347309966 +97917,8851,might like,1347309966 +97917,8920,reviewed,1448221533 +97917,8989,should like,1342909705 +97917,8998,reviewed,1401391374 +97917,25775,might like,1350083910 +97917,25798,might like,1349199558 +97917,25804,might like,1349880693 +97917,25830,should like,1346771295 +97917,25831,might like,1344370988 +97917,25832,might like,1347310681 +97917,25859,reviewed,1449577487 +97917,25860,reviewed,1452082646 +97917,25864,might like,1346857797 +97917,25881,reviewed,1452428354 +97917,25891,should like,1342912417 +97917,25894,might like,1345309216 +97917,25904,might like,1350406797 +97917,25905,might like,1342922537 +97917,25910,might like,1348756219 +97917,25920,might like,1350052486 +97917,25924,might like,1347562431 +97917,25944,might like,1347122325 +97917,25993,reviewed,1401535684 +97917,26025,reviewed,1445689415 +97917,26083,might like,1347899809 +97917,26084,reviewed,1442573824 +97917,26100,reviewed,1451678714 +97917,26104,might like,1350406956 +97917,26113,reviewed,1417954433 +97917,26116,might like,1346525855 +97917,26133,tv show,1415621190 +97917,26147,reviewed,1449145259 +97917,26188,reviewed,1452258788 +97917,26203,might like,1347375027 +97917,26213,might like,1345746305 +97917,26245,might like,1347562116 +97917,26334,reviewed,1451824761 +97917,26392,might like,1344352978 +97917,26453,TV miniseries,1406752077 +97917,26485,instant view,1346084435 +97917,26485,might like,1346084435 +97917,26502,reviewed,1437996827 +97917,26528,TV miniseries,1447355507 +97917,26554,might like,1344373777 +97917,26581,add to prospects list,1438890866 +97917,26614,TV miniseries,1402940092 +97917,26622,reviewed,1452771702 +97917,26712,TV series,1406751797 +97917,26965,reviewed,1448632971 +97917,27049,TV miniseries,1402939861 +97917,27135,might like,1346705321 +97917,27251,TV miniseries,1406752091 +97917,27373,reviewed,1453993964 +97917,27571,might like,1345746199 +97917,27647,might like,1345390524 +97917,27674,might like,1347372942 +97917,27692,might like,1351349234 +97917,27769,might like,1344355499 +97917,27788,might like,1349199615 +97917,27828,reviewed,1441194252 +97917,27838,reviewed,1451564098 +97917,27851,reviewed,1417778823 +97917,27866,reviewed,1448278941 +97917,27911,might like,1350316414 +97917,31030,reviewed,1407183739 +97917,31114,might like,1346525933 +97917,31260,reviewed,1438592399 +97917,31487,might like,1344382517 +97917,31617,prospect,1447355218 +97917,31655,might like,1347562536 +97917,31696,maybe,1339360161 +97917,31851,might like,1346171679 +97917,31915,might like,1345391159 +97917,31934,should like,1346941378 +97917,32369,might like,1346724153 +97917,32381,might like,1342920959 +97917,32464,should like,1346857415 +97917,32844,add to prospects list,1438464814 +97917,32866,should like,1350406537 +97917,33229,might like,1350662863 +97917,33235,might like,1344372942 +97917,33358,reviewed,1451563634 +97917,33437,might like,1342909782 +97917,33649,reviewed,1436527460 +97917,33722,might like,1350316699 +97917,33912,reviewed,1445856844 +97917,34193,might like,1351191807 +97917,34332,prospect,1449340686 +97917,36799,reviewed,1452688267 +97917,38061,reviewed,1448461751 +97917,38164,should like,1346856999 +97917,38499,TV miniseries,1407184021 +97917,39369,should like,1349118178 +97917,39934,might like,1346857345 +97917,40436,add to prospects list,1395858804 +97917,40614,reviewed,1401788030 +97917,40755,might like,1345922566 +97917,40898,might like,1345653984 +97917,41226,prospect,1447355870 +97917,41721,might like,1345946122 +97917,41762,might like,1350845532 +97917,41880,might like,1345573053 +97917,41889,should like,1350406496 +97917,42018,reviewed,1448550104 +97917,42548,might like,1346856430 +97917,43177,might like,1347309899 +97917,43560,prospect,1453291675 +97917,43813,should like,1351114460 +97917,43910,should like,1348008939 +97917,44100,should like,1349118076 +97917,44253,might like,1351262485 +97917,44943,reviewed,1438342291 +97917,45068,reviewed,1448221921 +97917,45503,instant view,1353110726 +97917,45503,might like,1353110726 +97917,45537,should like,1349880054 +97917,45656,instant view,1278085896 +97917,46559,might like,1346770897 +97917,46664,prospect,1448400944 +97917,46901,might like,1349547420 +97917,46979,might like,1348672303 +97917,47007,might like,1349199062 +97917,47146,might like,1350316741 +97917,47277,might like,1346856310 +97917,47356,might like,1347467551 +97917,47394,might like,1351021719 +97917,47601,reviewed,1447504105 +97917,47778,might like,1345390107 +97917,47860,should like,1342918236 +97917,47927,might like,1349879634 +97917,48123,might like,1349363189 +97917,48177,might like,1345921075 +97917,48301,might like,1345390030 +97917,48700,might like,1345573548 +97917,48741,might like,1344820349 +97917,48856,might like,1345043735 +97917,49412,reviewed,1447243783 +97917,50658,TV series,1406751874 +97917,50740,TV series,1406751890 +97917,50742,TV series,1407183725 +97917,51638,should like,1342922898 +97917,51678,should like,1344384276 +97917,52088,might like,1346335592 +97917,52153,should like,1352567018 +97917,52375,might like,1342918079 +97917,52767,TV series,1406751952 +97917,52784,might like,1344370537 +97917,52813,might like,1344374590 +97917,52938,might like,1348845456 +97917,53519,might like,1345922073 +97917,53582,add to prospects list,1397588020 +97917,53769,prospect,1449339385 +97917,53967,add to prospects list,1441047127 +97917,54010,might like,1351965891 +97917,54121,reviewed,1453809877 +97917,54176,might like,1348009020 +97917,54239,might like,1346335340 +97917,54254,might like,1348846497 +97917,54272,might like,1350486445 +97917,54689,might like,1347899536 +97917,54796,instant view,1278175937 +97917,55069,prospect,1449339411 +97917,55373,reviewed,1448368535 +97917,55417,instant view,1350316583 +97917,55417,might like,1350316583 +97917,55419,instant view,1278086085 +97917,55507,might like,1345920729 +97917,55671,might like,1346171404 +97917,55713,might like,1345390187 +97917,55895,reviewed,1444734511 +97917,55908,reviewed,1449318532 +97917,56051,reviewed,1451912184 +97917,56098,might like,1349879851 +97917,56719,reviewed,1403823993 +97917,56995,reviewed,1448634098 +97917,57854,might like,1345391194 +97917,58334,instant view,1346941619 +97917,58334,might like,1346941619 +97917,58808,reviewed,1451739625 +97917,59141,might like,1344370682 +97917,59188,should like,1342923425 +97917,59366,reviewed,1448023347 +97917,59641,might like,1349547473 +97917,59680,might like,1344365777 +97917,59858,might like,1346171759 +97917,59985,instant view,1348846148 +97917,59985,might like,1348846148 +97917,60046,should like,1344376389 +97917,60072,reviewed,1406549924 +97917,60103,prospect,1453723515 +97917,60311,might like,1346334590 +97917,60641,reviewed,1452259224 +97917,60745,might like,1346334645 +97917,61373,might like,1349880738 +97917,61396,should like,1346171499 +97917,61434,might like,1347120539 +97917,62434,might like,1342921677 +97917,63433,maybe,1340915635 +97917,64499,instant view,1345921836 +97917,64499,might like,1345921836 +97917,64519,should like,1344371481 +97917,64524,add to prospects list,1397588193 +97917,64930,reviewed,1452862978 +97917,65091,might like,1345131086 +97917,65682,maybe,1337990214 +97917,65866,might like,1346856394 +97917,66053,might like,1350052332 +97917,66092,prospect,1444322912 +97917,66686,might like,1348672258 +97917,66983,should like,1347562285 +97917,67135,might like,1346706812 +97917,67140,might like,1350052375 +97917,67792,instant view,1348845866 +97917,67792,might like,1348845866 +97917,67888,might like,1344384749 +97917,67997,prospect,1449339191 +97917,68044,might like,1345391236 +97917,68347,prospect,1449339267 +97917,68442,might like,1342922647 +97917,68444,instant view,1278086125 +97917,68522,TV series,1406752046 +97917,68653,might like,1344355376 +97917,68858,instant view,1314372126 +97917,69354,might like,1346334146 +97917,69358,reviewed,1449836225 +97917,69458,might like,1342923111 +97917,69744,might like,1345391051 +97917,70188,should like,1342910067 +97917,70201,might like,1345945499 +97917,70432,reviewed,1442056720 +97917,70451,reviewed,1428917175 +97917,70712,might like,1348756630 +97917,71264,might like,1348846383 +97917,71282,reviewed,1416919975 +97917,71350,reviewed,1448108572 +97917,71416,might like,1346941713 +97917,71464,prospect,1449339144 +97917,72117,prospect,1442261899 +97917,72298,might like,1353110004 +97917,72367,might like,1345572845 +97917,72554,reviewed,1402339407 +97917,72718,instant view,1278174964 +97917,72737,reviewed,1406804239 +97917,72741,reviewed,1397308026 +97917,72982,instant view,1350662576 +97917,72982,might like,1350662576 +97917,73114,might like,1346857164 +97917,73790,might like,1349271482 +97917,73881,reviewed,1449317514 +97917,73978,reviewed,1448368092 +97917,74099,might like,1349880476 +97917,74109,might like,1349199516 +97917,74148,should like,1350406889 +97917,74228,might like,1346172083 +97917,74282,TV miniseries,1407183809 +97917,74310,might like,1349880507 +97917,74416,prospect,1449339032 +97917,74480,might like,1347120645 +97917,74588,might like,1351114670 +97917,74624,might like,1349977514 +97917,74948,instant view,1314629723 +97917,74948,should like,1347309833 +97917,76134,should like,1346771143 +97917,76277,might like,1349199104 +97917,77421,prospect,1449338978 +97917,77658,TV miniseries,1402940373 +97917,77846,reviewed,1445254391 +97917,77891,might like,1350085085 +97917,77899,might like,1346525890 +97917,77919,might like,1351191479 +97917,78039,prospect,1449338841 +97917,78088,prospect,1449338919 +97917,78103,reviewed,1448460321 +97917,78420,might like,1349199396 +97917,78438,might like,1351966243 +97917,78620,might like,1349628256 +97917,78898,reviewed,1453983553 +97917,79003,might like,1346770993 +97917,79035,might like,1345044012 +97917,79065,might like,1348671809 +97917,79094,reviewed,1447589647 +97917,79187,reviewed,1427454619 +97917,79299,TV Show,1448056626 +97917,79339,might like,1352567054 +97917,79477,might like,1344374389 +97917,79667,might like,1347374642 +97917,79677,reviewed,1453638371 +97917,79684,instant view,1314315772 +97917,79832,might like,1345493952 +97917,79920,might like,1348845970 +97917,79923,might like,1347120362 +97917,80004,might like,1347467664 +97917,80260,might like,1346705033 +97917,80269,might like,1350586211 +97917,80421,might like,1349199219 +97917,80494,might like,1349547115 +97917,81191,reviewed,1449145015 +97917,81257,reviewed,1437734734 +97917,81443,might like,1346857522 +97917,81445,might like,1345922022 +97917,81665,might like,1350084042 +97917,81786,prospect,1447445070 +97917,82051,might like,1346335509 +97917,82182,might like,1349199474 +97917,82461,might like,1342901947 +97917,82680,might like,1349879808 +97917,82739,TV,1402939796 +97917,82934,reviewed,1449922470 +97917,83969,might like,1351878128 +97917,83972,might like,1351966549 +97917,84122,might like,1346941826 +97917,84508,might like,1346724462 +97917,84615,reviewed,1452428820 +97917,84770,should like,1342919313 +97917,85770,reviewed,1422649586 +97917,85883,might like,1349199661 +97917,86418,might like,1351191650 +97917,86583,might like,1345390375 +97917,86606,might like,1346856538 +97917,86628,reviewed,1397248055 +97917,86781,reviewed,1406751992 +97917,86973,reviewed,1449318965 +97917,87008,might like,1348069847 +97917,87079,add to prospects list,1441913672 +97917,87194,reviewed,1402055872 +97917,87234,reviewed,1406199215 +97917,87298,reviewed,1436894207 +97917,87304,prospect,1447445174 +97917,87383,might like,1351262069 +97917,87566,might like,1347562477 +97917,87572,might like,1352421203 +97917,88135,might like,1347562784 +97917,88171,might like,1348672063 +97917,88235,prospect,1447444919 +97917,88347,might like,1353110417 +97917,88518,might like,1346724230 +97917,89268,might like,1351966499 +97917,89302,reviewed,1398352466 +97917,89629,reviewed,1441795166 +97917,89638,might like,1349546928 +97917,89753,prospect,1447445143 +97917,89759,reviewed,1405168625 +97917,90057,reviewed,1436187201 +97917,90071,reviewed,1444735791 +97917,90374,prospect,1449338765 +97917,90376,prospect,1449338688 +97917,90380,might like,1348069813 +97917,90471,might like,1349547374 +97917,90531,reviewed,1406112512 +97917,90556,reviewed,1447763035 +97917,90592,should like,1344117326 +97917,90863,reviewed,1429441196 +97917,90878,might like,1348590894 +97917,91054,might like,1346857093 +97917,91535,reviewed,1444130812 +97917,91554,might like,1352315602 +97917,91799,might like,1348505724 +97917,91937,prospect,1443728900 +97917,91976,instant view,1349718082 +97917,91976,might like,1349718082 +97917,92006,reviewed,1397309242 +97917,92008,prospect,1447444804 +97917,92094,might like,1349118386 +97917,92420,prospect,1447444656 +97917,92533,should like,1346705974 +97917,92674,reviewed,1417004815 +97917,92920,reviewed,1406937775 +97917,93040,TV miniseries,1402940499 +97917,93324,reviewed,1416160808 +97917,93475,reviewed,1453810171 +97917,93510,prospect,1447444615 +97917,93840,reviewed,1444215448 +97917,94469,reviewed,1449577021 +97917,94752,reviewed,1448220880 +97917,94780,might like,1354658796 +97917,94833,might like,1344373910 +97917,94917,might like,1346335386 +97917,94955,might like,1347562220 +97917,94985,might like,1350316187 +97917,95105,might like,1347900000 +97917,95175,reviewed,1451995601 +97917,95309,prospect,1449777521 +97917,95443,reviewed,1428322471 +97917,95508,prospect,1446237547 +97917,95606,might like,1344820053 +97917,95761,should like,1345043216 +97917,95839,add to prospects list,1437947719 +97917,95935,might like,1350845474 +97917,95979,might like,1344536021 +97917,96062,TV miniseries,1402939846 +97917,96567,reviewed,1441106719 +97917,96571,might like,1348505820 +97917,96612,prospect,1449338554 +97917,96655,prospect,1447444691 +97917,96710,might like,1351966354 +97917,96911,reviewed,1445944137 +97917,96969,prospect,1452796041 +97917,96991,reviewed,1442748281 +97917,97393,reviewed,1431946757 +97917,97673,TV series,1407184116 +97917,97752,reviewed,1401391729 +97917,97773,prospect,1447354998 +97917,97779,reviewed,1443612115 +97917,97860,prospect,1449338336 +97917,97872,might like,1353109967 +97917,97904,reviewed,1449230827 +97917,97959,reviewed,1451305116 +97917,98017,reviewed,1446549338 +97917,98124,reviewed,1447355747 +97917,98142,reviewed,1446898535 +97917,98173,might like,1353350186 +97917,98193,reviewed,1445253280 +97917,98400,might like,1354039897 +97917,98834,reviewed,1445254913 +97917,99007,reviewed,1416227104 +97917,99110,add to prospects list,1395950417 +97917,99468,reviewed,1401390696 +97917,99537,add to prospects list,1441048077 +97917,99574,reviewed,1405421875 +97917,99741,reviewed,1439538347 +97917,99841,prospect,1447444460 +97917,99992,add to prospects list,1395950382 +97917,100244,reviewed,1397307631 +97917,100485,reviewed,1398261148 +97917,101212,add to prospects list,1428099375 +97917,101525,prospect,1447444192 +97917,101592,reviewed,1450794561 +97917,101942,reviewed,1397308459 +97917,102167,reviewed,1397132893 +97917,102294,reviewed,1447068302 +97917,102800,prospect,1447443942 +97917,103027,reviewed,1446032095 +97917,103057,reviewed,1452082220 +97917,103083,reviewed,1450271871 +97917,103107,reviewed,1444822642 +97917,103249,reviewed,1418217227 +97917,103335,reviewed,1396972836 +97917,103341,prospect,1447444065 +97917,103444,reviewed,1397049079 +97917,103688,reviewed,1397247302 +97917,103801,prospect,1444324493 +97917,103867,add to prospects list,1428097739 +97917,104093,add to prospects list,1441047503 +97917,104211,reviewed,1401534452 +97917,104339,reviewed,1429213979 +97917,104736,add to prospects list,1393806953 +97917,104863,reviewed,1429443316 +97917,105068,reviewed,1447850136 +97917,105128,reviewed,1442489913 +97917,105197,reviewed,1401390793 +97917,105213,reviewed,1435919506 +97917,105355,reviewed,1401290635 +97917,105420,add to prospects list,1437947298 +97917,105954,reviewed,1429353038 +97917,106200,add to prospects list,1428097864 +97917,106234,add to prospects list,1428099079 +97917,106332,reviewed,1443783830 +97917,106334,TV miniseries,1447355548 +97917,106452,prospect,1444323969 +97917,106489,reviewed,1401276383 +97917,106642,TV series,1402939955 +97917,106749,reviewed,1445597328 +97917,106766,prospect,1447443876 +97917,106782,reviewed,1442400959 +97917,106839,reviewed,1445856239 +97917,106897,reviewed,1442316128 +97917,107002,add to prospects list,1436899418 +97917,107357,prospect,1442262427 +97917,107627,reviewed,1445689862 +97917,107649,add to prospects list,1438629605 +97917,107910,add to prospects list,1437504389 +97917,107978,reviewed,1419320004 +97917,107980,reviewed,1430035073 +97917,108188,reviewed,1430221419 +97917,108190,reviewed,1449145646 +97917,108220,reviewed,1453464450 +97917,108709,TV miniseries,1402939833 +97917,108825,reviewed,1453376185 +97917,108864,add to prospects list,1428097399 +97917,108932,reviewed,1446728441 +97917,109374,prospect,1444324237 +97917,109379,reviewed,1442316589 +97917,109485,reviewed,1447068393 +97917,109578,reviewed,1447677778 +97917,109629,add to prospects list,1418319043 +97917,109635,reviewed,1448551788 +97917,109687,reviewed,1449576629 +97917,109740,prospect,1452797748 +97917,109864,reviewed,1397248967 +97917,110110,reviewed,1415969453 +97917,110127,prospect,1444324156 +97917,110453,reviewed,1429528710 +97917,110566,add to prospects list,1439321390 +97917,110586,prospect,1444323841 +97917,110675,reviewed,1437462543 +97917,110796,prospect,1452798038 +97917,110873,add to prospects list,1440702796 +97917,110882,prospect,1449338094 +97917,111251,prospect,1444323684 +97917,111314,reviewed,1445689463 +97917,111360,prospect,1452797612 +97917,111364,prospect,1452798151 +97917,111384,prospect,1452798212 +97917,111755,reviewed,1442490318 +97917,112138,prospect,1447443706 +97917,112171,reviewed,1426420132 +97917,112175,reviewed,1406112901 +97917,112183,reviewed,1444129870 +97917,112316,reviewed,1429961699 +97917,112404,reviewed,1449922828 +97917,112421,prospect,1452797900 +97917,112515,reviewed,1436442671 +97917,112582,reviewed,1416052010 +97917,112850,reviewed,1445425307 +97917,112940,reviewed,1436528956 +97917,113186,prospect,1447965881 +97917,113207,prospect,1452797933 +97917,113252,reviewed,1441884007 +97917,113275,reviewed,1416314518 +97917,113315,add to prospects list,1438288039 +97917,113534,add to prospects list,1441626612 +97917,113604,prospect,1448564520 +97917,113705,prospect,1444323465 +97917,113829,reviewed,1444908614 +97917,114028,reviewed,1435919081 +97917,114060,reviewed,1417864962 +97917,114246,prospect,1447966220 +97917,114265,reviewed,1445340680 +97917,114329,reviewed,1452862505 +97917,114601,prospect,1447966103 +97917,114935,reviewed,1422881660 +97917,115149,reviewed,1446550352 +97917,115170,reviewed,1417779350 +97917,115210,reviewed,1415621788 +97917,115231,reviewed,1429184545 +97917,115502,reviewed,1444310996 +97917,115569,reviewed,1415793749 +97917,115617,reviewed,1417351226 +97917,115667,reviewed,1437391424 +97917,115678,reviewed,1448400385 +97917,115713,reviewed,1431169763 +97917,115824,prospect,1452797525 +97917,116136,TV miniseries,1447355585 +97917,116307,reviewed,1445514190 +97917,116413,add to prospects list,1436472227 +97917,116493,add to prospects list,1437679529 +97917,116539,add to prospects list,1428098070 +97917,116770,add to prospects list,1428096575 +97917,116817,reviewed,1443525876 +97917,116841,reviewed,1417778863 +97917,116897,reviewed,1431255400 +97917,117123,prospect,1452797699 +97917,117344,add to prospects list,1441305676 +97917,117456,reviewed,1444995694 +97917,117466,prospect,1451586124 +97917,117529,reviewed,1453464955 +97917,117861,prospect,1447965822 +97917,117867,reviewed,1439464688 +97917,117871,reviewed,1441711189 +97917,117887,reviewed,1431513840 +97917,118246,reviewed,1445081019 +97917,118354,reviewed,1439723808 +97917,118696,reviewed,1435577297 +97917,118702,reviewed,1443013196 +97917,118760,reviewed,1444133456 +97917,118898,reviewed,1432379140 +97917,118924,prospect,1449882127 +97917,118997,prospect,1447965959 +97917,119068,prospect,1449881967 +97917,119145,reviewed,1447678174 +97917,119218,add to prospects list,1438889649 +97917,119966,prospect,1443118617 +97917,120478,add to prospects list,1437680138 +97917,120928,add to prospects list,1428097796 +97917,121171,reviewed,1444735369 +97917,121231,prospect,1448398328 +97917,122882,reviewed,1432380208 +97917,123947,reviewed,1446636851 +97917,124861,reviewed,1451073398 +97917,126548,reviewed,1441794671 +97917,127114,prospect,1447790444 +97917,127116,prospect,1453476492 +97917,127124,prospect,1451683655 +97917,127128,prospect,1448398515 +97917,127148,reviewed,1448713997 +97917,127152,reviewed,1430910173 +97917,127178,reviewed,1447763323 +97917,127196,prospect,1448398423 +97917,127198,add to prospects list,1440702318 +97917,127202,reviewed,1449662563 +97917,127206,reviewed,1452772180 +97917,127212,prospect,1453476702 +97917,127216,prospect,1446748400 +97917,127218,prospect,1453476769 +97917,128594,reviewed,1442748951 +97917,128606,prospect,1452796532 +97917,128671,reviewed,1453723986 +97917,128832,prospect,1452797288 +97917,129362,reviewed,1442658882 +97917,129659,reviewed,1444043996 +97917,129781,reviewed,1452515201 +97917,129820,reviewed,1446636314 +97917,130351,reviewed,1443093875 +97917,130634,reviewed,1453554102 +97917,131168,reviewed,1447590171 +97917,131658,prospect,1453476375 +97917,131796,reviewed,1439118679 +97917,131920,prospect,1449256526 +97917,132424,reviewed,1448368838 +97917,132480,reviewed,1437566431 +97917,132496,reviewed,1443697971 +97917,132522,reviewed,1450271426 +97917,132549,prospect,1449693279 +97917,132590,reviewed,1442920817 +97917,132660,reviewed,1452948924 +97917,132883,reviewed,1446811554 +97917,133419,reviewed,1436949185 +97917,133645,reviewed,1449146136 +97917,133753,prospect,1442517249 +97917,133802,reviewed,1445166929 +97917,134021,reviewed,1446811126 +97917,134214,prospect,1449606448 +97917,134368,reviewed,1436185797 +97917,134393,reviewed,1438689372 +97917,134881,reviewed,1442833737 +97917,135133,reviewed,1448279689 +97917,135288,reviewed,1441363775 +97917,136016,reviewed,1451996559 +97917,136018,reviewed,1452169852 +97917,136020,reviewed,1447068714 +97917,136562,reviewed,1451678432 +97917,137337,reviewed,1444129345 +97917,138036,reviewed,1440918175 +97917,138208,reviewed,1445683893 +97917,139385,reviewed,1452772530 +97917,139642,reviewed,1447245032 +97917,139721,reviewed,1447589701 +97917,139747,reviewed,1452605311 +97917,139757,reviewed,1446727698 +97917,139855,prospect,1448398205 +97917,139918,reviewed,1447244645 +97917,140088,reviewed,1449836740 +97917,140110,reviewed,1446728069 +97917,140174,reviewed,1447504474 +97917,140247,reviewed,1449318901 +97917,140713,prospect,1449337938 +97917,140715,reviewed,1442401491 +97917,140725,prospect,1453476855 +97917,140816,reviewed,1448461256 +97917,140928,prospect,1451146951 +97917,141422,prospect,1447354658 +97917,141688,prospect,1449263767 +97917,141714,reviewed,1453636821 +97917,141749,reviewed,1451738661 +97917,141890,reviewed,1445513680 +97917,141924,reviewed,1452169128 +97917,142070,prospect,1453476047 +97917,142422,prospect,1449004415 +97917,142426,prospect,1453476606 +97917,142448,prospect,1447189612 +97917,143237,prospect,1448398579 +97917,143377,reviewed,1446898081 +97917,143385,reviewed,1445596453 +97917,144614,reviewed,1451678057 +97917,144970,reviewed,1446032501 +97917,144976,prospect,1448398369 +97917,145418,prospect,1447356320 +97917,145839,prospect,1451146967 +97917,146656,reviewed,1449061892 +97917,148482,reviewed,1452169511 +97917,149354,Prospect,1452119762 +97919,733,great soundtrack,1262447082 +97919,2329,Edward Norton,1268133157 +97919,27800,musical,1260566612 +97919,68519,crappy sequel,1266975700 +97919,68519,Daveigh Chase,1266975679 +97919,71264,Cheesburger,1265422066 +97929,3006,Michael Mann,1309041291 +97929,67997,satire,1309045631 +97944,260,action,1431789556 +97944,260,Science Fiction,1431789548 +97944,3949,psychological,1431895888 +97944,3949,social commentary,1431895878 +97944,5954,Edward Norton,1431895846 +97944,5954,powerful ending,1431895844 +97944,33166,multiple storylines,1431895789 +97944,33166,social commentary,1431895783 +97989,14,based on a true story,1188844420 +97989,3785,Parody,1188844439 +97989,5377,mother-son relationship,1188844487 +97989,5679,remake,1188844522 +97989,5679,VHS,1188844432 +98004,47,Brad Pitt,1290637790 +98004,1196,star wars,1290637751 +98023,1307,relationships,1428790765 +98023,50806,comedy,1428790649 +98023,69757,relationships,1428790570 +98023,79132,intellectual,1428790380 +98023,90600,intense,1428790412 +98023,94752,inspirational,1428790806 +98057,260,good one but not realistic,1436535655 +98057,260,Science Fiction,1436535639 +98057,89759,Oscar (Best Foreign Language Film),1436535825 +98064,260,sci-fi,1436476155 +98111,1682,TV,1168877500 +98111,34532,voodoo,1145477315 +98156,2959,rebellion,1167763726 +98156,4019,good will hunting,1167763788 +98156,4019,Gus Van Sant,1167763763 +98156,4019,inspiring,1167763788 +98174,5296,horrible,1196031973 +98193,296,controversial,1434229997 +98193,296,dark,1434229997 +98193,296,intellectual,1434229997 +98231,172,cyberpunk,1243369580 +98231,172,Dina Meyer,1243369607 +98231,172,dystopia,1243369582 +98231,172,Sci-Fi,1243369591 +98231,175,Nudity (Full Frontal),1244236934 +98231,316,atmospheric,1243367201 +98231,316,sci-fi,1243367184 +98231,316,tense,1243367207 +98231,316,time travel,1243367186 +98231,541,androids,1243367892 +98231,541,atmospheric,1243367878 +98231,541,cyberpunk,1243367863 +98231,541,dystopia,1243367865 +98231,541,existentialism,1243367869 +98231,541,future,1243367874 +98231,541,sci-fi,1243367867 +98231,541,stylized,1243367876 +98231,1222,Stanley Kubrick,1243366945 +98231,1222,Vietnam War,1243366952 +98231,1222,want to see again,1243366966 +98231,1240,Arnold Schwarzenegger,1243367216 +98231,1240,future,1243368661 +98231,1240,time travel,1243368670 +98231,1240,violent,1243368672 +98231,1372,Star Trek,1243367159 +98231,1372,William Shatner,1243367158 +98231,1464,Nudity (Topless - Notable),1244237318 +98231,2502,comedy,1243367027 +98231,2502,cult film,1243367030 +98231,2502,Jennifer Aniston,1243367023 +98231,2502,shenanigans,1243367038 +98231,2502,workplace,1243367025 +98231,2700,adult humor,1243359203 +98231,2700,crude humor,1243359211 +98231,3113,apocalypse,1243368024 +98231,3113,Arnold Schwarzenegger,1243368008 +98231,3113,Nudity (Topless),1243368027 +98231,3113,Sexualized violence,1243368014 +98231,3113,stylized,1243368035 +98231,3527,Arnold Schwarzenegger,1243367127 +98231,3527,scifi cult,1243367142 +98231,3527,violent,1243367148 +98231,3535,Christian Bale,1243368931 +98231,3535,comical violence,1243368950 +98231,3535,lulz,1243368957 +98231,3535,patrick bateman,1243368935 +98231,4370,dystopia,1243378878 +98231,4447,chick flick,1243365930 +98231,4447,cute,1243365938 +98231,4447,Gay stereotypes,1243365923 +98231,4447,girlie movie,1243365919 +98231,4447,idiotic,1243365947 +98231,4447,Overrated,1243365915 +98231,4447,Reese Witherspoon,1243365902 +98231,4447,stupid,1243365908 +98231,5475,Greek,1243366300 +98231,5528,Nudity (Topless),1244237071 +98231,6502,British,1243367985 +98231,6502,futuristic,1243367988 +98231,6502,post-apocalyptic,1243367982 +98231,6502,sci-fi,1243367993 +98231,6502,Sexualized violence,1243367994 +98231,6502,zombies,1243367997 +98231,6874,empty scenario,1243367802 +98231,6874,Japan,1244237135 +98231,6874,Kick-Butt Women,1243367782 +98231,6874,Sexualized violence,1243367798 +98231,6874,violent,1243367794 +98231,7076,car chase,1243346884 +98231,7076,Steve McQueen,1243346890 +98231,7361,Jim Carrey,1243366902 +98231,7361,Michel Gondry,1243366911 +98231,7438,Kick-Butt Women,1244237295 +98231,8531,black comedy,1244236983 +98231,8807,Notable Nudity,1243366979 +98231,8807,Nudity (Topless),1243366980 +98231,8807,profanity,1243366994 +98231,8807,racism,1243366984 +98231,8807,shenanigans,1243367001 +98231,8807,stoner comedy,1243366977 +98231,8807,stupid,1243367005 +98231,30825,Ben Stiller,1243367617 +98231,30825,no nudity,1243367659 +98231,30825,no profanity,1243367646 +98231,30825,not funny,1243367621 +98231,33166,confrontational,1243367556 +98231,33166,Oscar (Best Picture),1243367570 +98231,33166,race issues,1243367540 +98231,33166,relationships,1243367537 +98231,33166,Sandra Bullock,1243367573 +98231,33166,Sexualized violence,1243367518 +98231,33166,social commentary,1243367535 +98231,35836,crude,1243368610 +98231,35836,marijuana,1243368634 +98231,35836,nerds,1243368649 +98231,35836,nudity,1243368623 +98231,35836,Nudity (Topless - Notable),1243368644 +98231,35836,profanity,1243368618 +98231,35836,romantic comedy,1243368625 +98231,35836,sex,1243368628 +98231,35836,slackers,1243368640 +98231,35836,virginity,1243368632 +98231,37384,comedy,1243366602 +98231,37384,profanity,1243366589 +98231,37384,shenanigans,1243366616 +98231,37384,workplace,1243366579 +98231,44191,adapted from:comic,1243367837 +98231,44191,based on a comic,1243367836 +98231,44191,comic book,1243367833 +98231,44191,dystopia,1243367831 +98231,44191,revenge,1243367846 +98231,44191,sci-fi,1243367848 +98231,44191,thought-provoking,1243367829 +98231,44974,Ellen Page,1243369402 +98231,44974,gore,1243369420 +98231,45081,atmospheric,1243369489 +98231,45081,dystopic,1243369506 +98231,45081,post-apocalyptic,1243369515 +98231,45081,stylized,1243369493 +98231,45728,Comedy,1243366888 +98231,45728,dialogue driven,1243366890 +98231,45728,Highly quotable,1243366825 +98231,45728,hilarious,1243366827 +98231,45728,lulz,1243366873 +98231,45728,marijuana,1243366850 +98231,45728,profanity,1243366881 +98231,45728,Rosario Dawson,1243366821 +98231,45728,sexual deviance,1243366869 +98231,45728,slackers,1243366877 +98231,45728,workplace,1243366838 +98231,51086,Sexualized violence,1247254733 +98231,51662,adapted from:comic,1243367721 +98231,51662,based on a comic,1243367747 +98231,51662,based on comic,1243367712 +98231,51662,comic book,1243367697 +98231,51662,Frank Miller,1243367726 +98231,51662,Graphic Novel,1243367719 +98231,51662,historically inaccurate,1243367738 +98231,51662,male nudity,1243367706 +98231,51662,rape,1243367701 +98231,51662,sexualized violence,1243367695 +98231,52973,drugs,1243365747 +98231,52973,Katherine Heigl,1243365728 +98231,52973,marijuana,1243365745 +98231,52973,slackers,1243365743 +98231,52973,sophomoric,1243365735 +98231,53318,Nudity (Full Frontal),1243368765 +98231,53996,based on a comic,1243365653 +98231,53996,enormously long battle scene,1243365667 +98231,53996,Michael Bay,1243365655 +98231,53996,Shia LaBeouf,1243365658 +98231,54503,comedy,1243368314 +98231,54503,crude,1243368328 +98231,54503,high school,1243368319 +98231,54503,pornography,1243368324 +98231,54503,profanity,1243368340 +98231,54503,shenanigans,1243368336 +98231,54503,virginity,1243368327 +98231,58162,boring,1243367059 +98231,58162,chich flick,1243367096 +98231,58162,chick flick,1243367108 +98231,58162,predictable,1243367067 +98231,58162,unfunny,1243367071 +98231,58559,Christian Bale,1243343933 +98231,58559,Comic Book adaption,1243343938 +98231,58803,blackjack,1243367972 +98231,58803,gambling,1243367962 +98231,58803,predictable,1243367967 +98231,59615,aliens,1243364066 +98231,59615,Harrison Ford,1243364109 +98231,59615,ridiculous end,1243364067 +98231,59725,central event:wedding preparation,1243293042 +98231,59725,left at the altar,1243293034 +98231,59725,Nudity (Topless),1243293023 +98231,59725,R:strong sexual content,1243293026 +98231,59725,romance,1243293094 +98231,59725,Sarah Jessica Parker,1243293049 +98231,62394,adapted from:game,1243346830 +98231,62394,based on a computer game,1243346836 +98231,62394,Mark Wahlberg,1243346844 +98231,64622,Nudity (Full Frontal - Notable),1247254814 +98231,64622,Nudity (Full Frontal),1247254813 +98231,64622,Nudity (Rear),1247254817 +98231,64969,Jim carrey,1243368857 +98231,64969,rebellion,1243368871 +98231,66203,chick flick,1244922779 +98231,66203,romance,1244922787 +98231,66203,romantic comedy,1244922793 +98231,66203,Scarlett Johansson,1244922800 +98239,260,interesting,1442902355 +98239,260,too long,1442902343 +98249,111,Robert De Niro,1273749215 +98249,193,Las Vegas,1273377539 +98249,193,so bad it's good,1273377587 +98249,193,strippers,1273377550 +98249,288,Oliver Stone,1273733540 +98249,318,Morgan Freeman,1273371281 +98249,327,Lori Petty,1273870672 +98249,527,Holocaust,1273371322 +98249,527,Steven Spielberg,1273371314 +98249,541,atmospheric,1273733869 +98249,541,Harrison Ford,1273733858 +98249,541,stylized,1273733865 +98249,924,atmospheric,1273371466 +98249,924,enigmatic,1273371464 +98249,924,space,1273371451 +98249,924,Stanley Kubrick,1273371447 +98249,924,surreal,1273371454 +98249,1090,Charlie Sheen,1273733967 +98249,1090,Oliver Stone,1273733923 +98249,1090,Oscar (Best Picture),1273733948 +98249,1090,Vietnam War,1273733932 +98249,1127,James Cameron,1273696091 +98249,1178,bad acting,1273371703 +98249,1193,Jack Nicholson,1273749101 +98249,1193,Oscar (Best Picture),1273749106 +98249,1242,American Civil War,1273371400 +98249,1242,historical,1273371394 +98249,1242,Morgan Freeman,1273371371 +98249,1242,racism,1273371376 +98249,1258,atmospheric,1273376553 +98249,1258,Jack Nicholson,1273376547 +98249,1258,Stanley Kubrick,1273376536 +98249,1464,David Lynch,1273749567 +98249,1464,Surreal,1273749581 +98249,1663,Bechdel Test:Fail,1273734125 +98249,1663,Bill Murray,1273734106 +98249,1663,John Candy,1273734108 +98249,2009,Charlton Heston,1273377249 +98249,2028,Steven Spielberg,1273371341 +98249,2028,Tom Hanks,1273371339 +98249,2313,David Lynch,1273376956 +98249,2313,stylized,1273376965 +98249,2373,Brigitte Nielsen,1273695512 +98249,2632,atmospheric,1273377440 +98249,2632,dreamlike,1273377442 +98249,2632,enigmatic,1273377444 +98249,2951,Bechdel Test:Fail,1273733789 +98249,2951,Clint Eastwood,1273733808 +98249,2951,Sergio Leone,1273733792 +98249,2968,Bechdel Test:Fail,1273734175 +98249,2968,John Cleese,1273734159 +98249,2968,Sean Connery,1273734154 +98249,2968,Shelley Duvall,1273734166 +98249,2968,Terry Gilliam,1273734147 +98249,3030,Akira Kurosawa,1273733681 +98249,3030,Bechdel Test:Fail,1273733705 +98249,3030,samurai,1273733689 +98249,3030,Toshiro Mifune,1273733692 +98249,3039,Bechdel Test:Fail,1273734085 +98249,3039,Dan Aykroyd,1273734065 +98249,3039,Jamie Lee Curtis,1273734058 +98249,3147,magical negro,1273375086 +98249,3147,Tom Hanks,1273375048 +98249,3505,Bechdel Test:Fail,1273734264 +98249,3505,Cold War,1273734196 +98249,3505,espionage,1273734250 +98249,3505,Gene Hackman,1273734214 +98249,3505,Kevin Costner,1273734210 +98249,3505,Sean Young,1273734239 +98249,3676,atmospheric,1273749601 +98249,3676,black and white,1273749612 +98249,3676,creepy,1273749620 +98249,3676,David Lynch,1273749604 +98249,3978,magical negro,1273374816 +98249,4848,David Lynch,1273749527 +98249,4848,surreal,1273749550 +98249,6229,atmospheric,1273377386 +98249,6229,road movie,1273377395 +98249,6385,After school special,1273369619 +98249,6385,Overrated,1150414322 +98249,6947,Age of sail,1273376760 +98249,6947,Patrick O'Brian,1273376679 +98249,7318,Mel Gibson,1273374748 +98249,7318,Monica Bellucci,1273374752 +98249,8154,Anita Ekberg,1273749685 +98249,8196,Russ Meyer,1273377371 +98249,40629,Jane Austen,1150046569 +98249,56174,black scientist,1379349275 +98249,56174,zombies,1379349257 +98249,56251,disappointing,1273696675 +98249,58559,Morgan Freeman,1273388170 +98249,64614,Bechdel Test:Fail,1273695625 +98249,64614,hmong,1273695571 +98249,64614,racist humor,1273695617 +98249,68237,moon,1273375225 +98249,68237,solitude,1273375213 +98251,1234,clever,1242226535 +98251,1234,genius,1242226535 +98251,1234,Inspiring,1242226535 +98251,1234,twist,1242226535 +98251,3949,biased,1242225606 +98251,3949,preachy,1242225606 +98251,3949,ridiculous,1242225606 +98251,3949,shite,1242225606 +98251,3949,unrealistic,1242225606 +98259,3450,funny,1243531635 +98285,260,fun action,1441147325 +98285,260,good characters,1441147332 +98315,48043,fountain of youth,1185250823 +98315,48043,immortality,1185250837 +98315,48043,REINCARNATION,1185250831 +98315,48043,religion,1185250835 +98324,296,drugs,1426331807 +98324,296,gangsters,1426331807 +98324,296,original plot,1426331807 +98328,4643,Helena Bonham Carter,1359020377 +98328,4643,post-apocalyptic,1359020366 +98328,4643,sci fi,1359020381 +98328,4643,Tim Burton,1359020364 +98328,8636,Kirsten Dunst,1358863540 +98328,33794,action,1358863255 +98328,33794,melancholy,1358863265 +98328,33794,super-hero,1358863268 +98328,48394,adventure,1358879050 +98328,48394,atmospheric,1358879031 +98328,48394,fairy tale,1358879033 +98328,48394,history,1358879046 +98328,48394,psychology,1358879037 +98328,48394,sci-fi,1358879042 +98328,58559,Atmospheric,1358863098 +98328,58559,Batman,1358863082 +98328,58559,Heath Ledger,1358863079 +98328,73017,Atmospheric,1359020792 +98328,73017,mystery,1359020794 +98328,73017,Robert Downey Jr.,1359020776 +98328,87430,audience intelligence underestimated,1358863569 +98328,87430,Boring,1358863573 +98328,87430,Ryan Reynolds,1358863563 +98328,89745,Scarlett Johansson,1358863307 +98328,91529,franchise,1358863152 +98328,91529,great ending,1358863130 +98328,91529,Joseph Gordon-Levitt,1358863199 +98328,91529,Michael Caine,1358863162 +98328,91529,Morgan Freeman,1358863137 +98328,91529,superhero,1358863126 +98328,91529,trilogy,1358863155 +98328,98809,based on a book,1358878897 +98328,98809,beautiful scenery,1358878880 +98328,98809,epic,1358878882 +98328,98809,fantasy world,1358878891 +98328,98809,Peter Jackson,1358878886 +98328,98809,Tolkien,1358878887 +98334,67087,Jason Segel,1242848590 +98346,6,dialogue,1428245572 +98346,6,gunfight,1428245548 +98346,6,realistic action,1428245560 +98346,76,planet,1425966707 +98346,76,robots,1425966707 +98346,76,sci-fi,1425966707 +98346,73321,distopia,1427472980 +98346,73321,missionary,1427472980 +98346,73321,villain,1427472980 +98346,92259,disability,1428245462 +98346,92259,friendship,1428245462 +98346,92259,nurse,1428245462 +98346,97923,airplane crash,1426683807 +98346,97923,alcoholism,1426683807 +98346,97923,investigation,1426683807 +98382,260,no interest,1442680767 +98382,260,sci-fi,1442680775 +98423,64497,abrubt end,1245316609 +98443,1207,trial,1197088504 +98444,919,dreamlike,1328526322 +98444,919,Highly quotable,1328526331 +98444,919,musical,1328526338 +98444,1073,colourful,1328526164 +98444,1073,cult film,1328526166 +98444,1073,espionage,1328526172 +98444,1073,Gene Wilder,1328526154 +98444,1073,musical,1328526158 +98444,1073,surreal,1328526183 +98444,1073,whimsical,1328526180 +98444,1210,George Lucas,1328526215 +98444,1210,Harrison Ford,1328526211 +98444,1210,Star Wars,1328526222 +98444,1747,Dustin Hoffman,1328526618 +98444,1747,seen more than once,1328526633 +98444,2064,business,1328526706 +98444,2064,liberal propaganda,1328526711 +98444,2064,Michael Moore,1328526692 +98444,2064,propaganda,1328526715 +98444,3745,animation,1328527594 +98444,3745,Don Bluth,1328527567 +98444,3745,post-apocalyptic,1328527575 +98444,3745,space,1328527578 +98444,3745,space travel,1328527581 +98444,5669,anti-Bush,1328526743 +98444,5669,documentary,1328526746 +98444,5669,Michael Moore,1328526739 +98444,5993,Adolf Hitler,1328526121 +98444,5993,Holocaust,1328526117 +98444,5993,John Cusack,1328526109 +98444,26285,cult film,1328526039 +98444,26285,directorial debut,1328526031 +98444,26285,scifi,1328526027 +98444,26285,scifi cult,1328526042 +98444,26285,space travel,1328526044 +98444,44195,cigarettes,1328526658 +98444,44195,dark humor,1328526668 +98444,44195,politics,1328526666 +98444,44195,satire,1328526662 +98444,44195,social commentary,1328526664 +98444,56757,cannibalism,1328527292 +98444,72998,futuristic,1328528717 +98444,72998,military,1328528698 +98444,72998,racism,1328528704 +98444,72998,sci-fi,1328528714 +98444,80549,Emma Stone,1328527449 +98444,80549,family relationships,1328527459 +98444,80549,sexuality,1328527444 +98445,40583,cerebral,1373336349 +98465,30659,christmas,1452263077 +98477,104913,Formula 1,1381571067 +98477,104913,True story,1381571074 +98477,106918,dating,1416513795 +98477,106918,online dating,1416513806 +98488,1704,psychology,1172672611 +98508,260,classic,1431400588 +98508,260,nerdy,1431400578 +98509,51540,slow,1449091539 +98510,12,Leslie Nielsen,1431967056 +98510,18,multiple storylines,1431968257 +98510,18,Tim Roth,1431968255 +98510,32,brad pitt,1431965882 +98510,32,bruce willis,1431965879 +98510,47,David Fincher,1431965805 +98510,47,Kevin Spacey,1431965813 +98510,1274,visual style,1431965704 +98510,1527,Gary Oldman,1431967191 +98510,1527,humorous,1431967188 +98510,1527,sci-fi,1431967181 +98510,1573,John Travolta,1431966902 +98510,1573,Nicolas Cage,1431966904 +98510,1639,Kevin Smith,1433004348 +98510,2617,Brendan Fraser,1431967357 +98510,3000,anime,1431964326 +98510,3000,Hayao Miyazaki,1431964330 +98510,3000,Studio Ghibli,1431964328 +98510,3052,Kevin Smith,1431965968 +98510,3052,satire,1431965971 +98510,4027,coen brothers,1431967920 +98510,4027,great soundtrack,1431967924 +98510,5618,anime,1431964372 +98510,5618,door to the different world,1431964393 +98510,5618,fantasy,1431964378 +98510,5618,Hayao Miyazaki,1431964374 +98510,5618,Studio Ghibli,1431964401 +98510,6283,anime,1431964249 +98510,6283,good score,1431964264 +98510,6283,humorous,1431964259 +98510,6283,sci-fi,1431964253 +98510,7454,Kate Beckinsale,1431967374 +98510,27611,cybernetics,1431964835 +98510,27611,mythology,1431964838 +98510,27611,sci-fi,1431964813 +98510,27611,space,1431964816 +98510,45722,Johnny Depp,1431967325 +98510,45722,Keira Knightley,1431967327 +98510,53972,action packed,1431966242 +98510,53972,bruce willis,1431966238 +98510,60684,alternate history,1431965079 +98510,60684,alternate reality,1431965107 +98510,60684,dystopia,1431965066 +98510,60684,great soundtrack,1431965086 +98510,60684,misanthropic,1431965138 +98510,60684,music,1431965076 +98510,60684,sci-fi,1431965074 +98510,60684,storytelling,1431965097 +98510,60684,stylized,1431965068 +98510,72998,ecology,1431964931 +98510,72998,environmental,1431964937 +98510,83613,Daniel Craig,1431967224 +98510,91500,Jennifer Lawrence,1431965519 +98510,91658,David Fincher,1431966633 +98510,91658,remake,1431966622 +98510,91658,Rooney Mara,1431966640 +98510,94864,bad science,1431964997 +98510,94864,Charlize Theron,1431964972 +98510,94864,plot hole,1431964990 +98510,94864,predictable,1431964978 +98510,96610,Joseph Gordon-Levitt,1431966772 +98510,105213,Joseph Gordon-Levitt,1433004324 +98510,105213,pornography,1433004330 +98510,106002,children acting like adults,1431965583 +98510,106002,Orson Scott Card,1431965567 +98510,106491,pretentious,1433004579 +98510,106491,stupid plot,1433004575 +98510,119145,Michael Caine,1432046557 +98515,25,Oscar (Best Actor),1284954952 +98515,161,Gene Hackman,1284954807 +98515,318,friendship,1284952669 +98515,318,Morgan Freeman,1284952638 +98515,318,thought-provoking,1284952642 +98515,1089,nonlinear,1284954934 +98515,1089,organized crime,1284954926 +98515,1089,Quentin Tarantino,1284954919 +98515,1193,psychology,1284954572 +98515,1213,dark comedy,1284954973 +98515,1213,organized crime,1284954981 +98515,1617,Kevin Spacey,1284954570 +98515,1704,Robin Williams,1284954797 +98515,2997,dark comedy,1284954802 +98515,3362,Al Pacino,1284952773 +98515,3362,black comedy,1284952769 +98515,3362,imdb top 250,1284952779 +98515,3362,Sidney Lumet,1284952782 +98515,6552,chess,1284952578 +98515,6552,Edgar Award (Best Motion Picture Screenplay),1284952568 +98515,6552,manipulation,1284952482 +98515,6552,Nudity (Topless - Brief),1284952557 +98515,49961,cate blanchett,1284952349 +98515,49961,Judi Dench,1284952325 +98515,49961,obsession,1284952339 +98538,106920,science,1425402306 +98579,1288,boring,1146077312 +98579,3949,depressing,1146077500 +98579,33493,noo!,1146077742 +98586,34323,kidnapping,1137882465 +98590,260,Star Wars,1436016845 +98596,260,action,1439793363 +98596,260,classic sci-fi,1439793349 +98602,109374,cinematography,1449195899 +98602,109374,quirky,1449195901 +98602,134853,childhood,1449195971 +98602,134853,Pixar,1449195967 +98602,134853,thought provoking,1449195974 +98623,4306,fairy tale,1140184213 +98623,6081,French,1140184341 +98623,8360,fairy tale,1140184215 +98638,858,classic,1453828002 +98638,858,Mafia,1453828013 +98638,51662,action,1453828067 +98638,51662,historical,1453828075 +98639,47,Kevin Spacey,1350598720 +98639,318,friendship,1290769549 +98639,318,Morgan Freeman,1290769547 +98639,318,narrated,1290769570 +98639,318,thought-provoking,1290769545 +98639,318,touching,1290769555 +98639,535,dark comedy,1413381468 +98639,535,long,1413381467 +98639,535,multiple storylines,1413381466 +98639,949,overrated,1405288628 +98639,1175,alternate reality,1344144980 +98639,1175,atmospheric,1344144972 +98639,1175,cannibalism,1344144962 +98639,1175,dark humor,1344144964 +98639,1175,quirky,1344144968 +98639,1175,surreal,1344146931 +98639,1203,courtroom drama,1393958548 +98639,1203,good dialogue,1393958542 +98639,1203,social commentary,1393958545 +98639,1203,thought-provoking,1393958545 +98639,2318,dark comedy,1365953143 +98639,2318,dark humor,1365953145 +98639,2318,social commentary,1365953154 +98639,3897,boring,1309555949 +98639,3897,Philip Seymour Hoffman,1309555960 +98639,3897,slow,1309555953 +98639,4226,memory,1292268878 +98639,4226,narrated,1292268890 +98639,4226,nonlinear,1292268900 +98639,4226,psychology,1292268874 +98639,4226,twist ending,1292269911 +98639,4873,beautiful,1291289803 +98639,4873,metaphysics,1291289813 +98639,4873,rotoscoping,1291289846 +98639,4873,surreal,1291289816 +98639,4873,thought-provoking,1291289817 +98639,5617,BDSM,1291577415 +98639,5617,black comedy,1291577426 +98639,5617,Maggie Gyllenhaal,1291577442 +98639,6197,gloomy,1393996334 +98639,6197,mental illness,1393996342 +98639,6593,Lindsay Lohan,1293056753 +98639,7097,boring,1345166673 +98639,7097,slow paced,1344311793 +98639,7154,Julia Stiles,1394406109 +98639,7154,Strong Women,1394406089 +98639,8910,existentialism,1293227738 +98639,8910,Jude Law,1293227741 +98639,8910,philosophy,1293227739 +98639,8914,clever,1291583170 +98639,8914,Complicated,1291583166 +98639,8914,complicated plot,1291583162 +98639,8914,time travel,1291583172 +98639,27815,choir,1295010376 +98639,27815,feel-good,1295010371 +98639,27815,French,1295010380 +98639,27815,heartwarming,1295010369 +98639,27815,music,1295010388 +98639,36529,Nicolas Cage,1338929510 +98639,38061,black comedy,1404868262 +98639,38061,funny,1404868252 +98639,38061,narrated,1404868283 +98639,38061,satire,1404868246 +98639,38061,witty,1404868257 +98639,38886,awkward,1290430121 +98639,38886,characters,1290430061 +98639,38886,dysfunctional family,1290430119 +98639,38886,high squirm factor,1290430086 +98639,38886,interesting,1290430115 +98639,38886,quirky,1290430130 +98639,38886,smart comedy,1293814053 +98639,38886,weird,1290430044 +98639,38886,writers,1290430128 +98639,42004,pointless,1309835383 +98639,47423,boring,1393600173 +98639,47423,overrated,1393600170 +98639,47423,slow,1393600185 +98639,48043,artistic,1292705151 +98639,48043,atmospheric,1292705148 +98639,48043,hard to understand,1292705643 +98639,48043,hugh jackman,1292705164 +98639,48043,philosophical,1292705155 +98639,48043,thought-provoking,1292705158 +98639,48043,visually appealing,1292705146 +98639,48394,cliche,1295992505 +98639,48394,not original,1295992519 +98639,48774,plot holes,1394399966 +98639,48774,poorly thought out premise,1394400008 +98639,49772,boring,1393791361 +98639,50685,baking,1291840025 +98639,50685,food,1291840021 +98639,51255,overrated,1339690733 +98639,51255,Simon Pegg,1339690728 +98639,53189,awkward,1291667329 +98639,53189,off-beat comedy,1291667810 +98639,53189,slow,1291667337 +98639,54978,dreams,1292589207 +98639,54978,lucid dreaming,1292589196 +98639,54978,Simon Pegg,1292589185 +98639,54978,soundtrack,1292589226 +98639,54978,visually appealing,1292589219 +98639,55269,brothers,1290347406 +98639,55269,dark comedy,1290347402 +98639,55269,india,1290347373 +98639,55269,road trip,1290347416 +98639,55269,slow,1290347338 +98639,55280,cute,1290515828 +98639,55280,delusional,1290515820 +98639,55280,emotional,1290516876 +98639,55280,feel-good,1290515823 +98639,55280,I wanted to hug this movie,1290515815 +98639,55280,less than 300 ratings,1290516887 +98639,55280,mental illness,1290516889 +98639,55814,cinematography,1395048069 +98639,55814,depressing,1395048054 +98639,55908,entirely dialogue,1292504942 +98639,55908,philosophical,1292504937 +98639,55908,thought-provoking,1292504935 +98639,55908,unique,1292504947 +98639,56333,90% drama 10% comedy,1291324221 +98639,56333,elderly,1291324208 +98639,56333,intellectual,1291324193 +98639,56333,Laura Linney,1291324198 +98639,56333,Philip Seymour Hoffman,1291324196 +98639,56389,bokeh,1290768421 +98639,56389,boring,1290768402 +98639,56389,soundtrack,1290768442 +98639,56389,visually appealing,1290768408 +98639,56782,Daniel Day-Lewis,1361976314 +98639,56782,soundtrack,1361976327 +98639,56782,visually appealing,1361976318 +98639,56949,cliche,1291840424 +98639,59118,difficult protagonist,1297562893 +98639,59118,funny,1297562872 +98639,59118,no plot,1297562881 +98639,62511,meta,1291293893 +98639,62511,surreal,1291293886 +98639,64969,Bradley Cooper,1366144559 +98639,64969,funny,1366144544 +98639,64969,Jim carrey,1366144546 +98639,66509,too many plot threads,1291324260 +98639,66665,funny,1290341070 +98639,66665,quirky,1290341054 +98639,66665,realistic,1290341054 +98639,66665,witty,1290341054 +98639,67267,alan arkin,1291851624 +98639,67267,Amy Adams,1291851610 +98639,67267,Emily Blunt,1291851643 +98639,67267,witty,1291851649 +98639,68157,brad pitt,1309009808 +98639,68157,dark comedy,1309009801 +98639,68157,gore,1309009794 +98639,68269,stupid,1329579110 +98639,69934,cheesy,1366104120 +98639,69934,not convincing,1366104110 +98639,70344,Paul Giamatti,1365492075 +98639,70567,asperger syndrome,1293464806 +98639,70567,emotional,1293464826 +98639,70567,Hugh Dancy,1293464808 +98639,70567,romantic,1293464819 +98639,71248,Jason Bateman,1341925935 +98639,71248,Kristen Wiig,1341925931 +98639,71248,Mila Kunis,1341925939 +98639,71327,Abbie Cornish,1366326795 +98639,71327,sad,1366326780 +98639,71579,bittersweet,1394668016 +98639,71579,good message,1394668029 +98639,72380,lame,1299139567 +98639,74573,bad ending,1360164283 +98639,77307,abstract,1310009776 +98639,78836,psychedelic,1417003286 +98639,78836,too long,1417003275 +98639,79132,dreams,1292260012 +98639,79132,great soundtrack,1292260064 +98639,79132,soundtrack,1292260001 +98639,79132,visually appealing,1292260028 +98639,79702,music,1362040108 +98639,79702,quirky,1362040111 +98639,79702,surreal,1362040102 +98639,79702,visually appealing,1362040096 +98639,79860,no closure,1337546993 +98639,80489,romance,1405737519 +98639,80736,disturbing,1327195839 +98639,80736,torture,1327195844 +98639,81564,anti-hero,1362851182 +98639,81564,funny,1362851180 +98639,82173,boring,1360623828 +98639,82173,self obsessed,1360623816 +98639,82202,Johnny Depp,1364548772 +98639,84374,Natalie Portman,1363070351 +98639,85438,Michael Fassbender,1365975068 +98639,86548,shallow characters,1364589877 +98639,86781,Unexpected Ending,1393532627 +98639,86817,lame,1329680335 +98639,87234,great soundtrack,1409604255 +98639,87234,interesting characters,1409604262 +98639,87234,psychology,1409604270 +98639,87234,stylistic,1409604265 +98639,88405,mila kunis,1363070303 +98639,88672,Earnest protagonist,1330001546 +98639,89759,social commentary,1393544104 +98639,90374,slow,1374984281 +98639,90374,weak ending,1374984941 +98639,90476,cheesy,1357810074 +98639,90476,the guy wasn't even that attractive,1357810111 +98639,92335,boring,1346142285 +98639,92335,not engaging,1346142330 +98639,92335,predictable,1346142488 +98639,92335,slow,1346142282 +98639,93721,food,1361976268 +98639,93721,inspirational,1361976266 +98639,93721,sushi,1361976272 +98639,94150,based on a true story,1394668108 +98639,94150,Hugh Dancy,1394668091 +98639,94150,sexuality,1394668102 +98639,94959,Edward Norton,1362854485 +98639,94959,quirky,1362854116 +98639,94959,surreal,1362854118 +98639,95441,Mila Kunis,1360013474 +98639,95441,predictable,1359395495 +98639,95441,Unfunny,1359392346 +98639,95443,chris messina,1383342328 +98639,95443,human condition,1383342316 +98639,95443,Jenna Fischer,1383342322 +98639,95443,real,1383342320 +98639,95873,Magic Realism,1360080504 +98639,95873,quirky,1360080508 +98639,96121,characters too old,1363092546 +98639,96121,only married people would enjoy this,1363092561 +98639,96821,Captivating,1368309270 +98639,96821,character development,1368309263 +98639,96821,Emma Watson,1368309266 +98639,96821,touching,1368309273 +98639,96829,hard to watch,1390606105 +98639,96829,painful to watch,1390606101 +98639,97304,true story,1391554040 +98639,97752,atmospheric,1393863889 +98639,97752,pretentious,1393863908 +98639,97752,visually appealing,1393863887 +98639,97921,bradley cooper,1360013210 +98639,97921,football,1360013198 +98639,97921,great characters,1360013229 +98639,99087,moms,1377944113 +98639,99087,soccer,1377944103 +98639,103539,drinking,1403141206 +98639,104841,cinematography,1393532812 +98639,104841,predictable,1393532808 +98639,104841,religion,1393532785 +98639,104841,space,1393532817 +98639,104841,visually appealing,1393532819 +98639,105197,family,1394154857 +98639,105197,funny,1394154860 +98639,106438,dramatic comedy,1405220440 +98639,106841,boring,1415136243 +98639,109374,amazing storytelling,1436131238 +98639,109374,cinematography,1436131241 +98639,109374,quirky,1436131222 +98639,109374,stylized,1436131226 +98639,109374,visually appealing,1436131221 +98639,109740,abortion,1415136139 +98639,109740,sweet,1415136143 +98639,111529,based on a true story,1408321111 +98639,111529,touching,1408321509 +98639,116799,hard to follow,1430727628 +98639,116799,pretentious,1430727617 +98644,1292,funny,1342844508 +98644,1292,spiritual,1342844508 +98644,1292,surreal,1342844508 +98644,1292,surrealism,1342844508 +98657,296,funny,1428629660 +98657,296,overrated,1428629660 +98657,296,pulp,1428629660 +98657,593,brilliant,1427932652 +98657,593,exploratory,1427932652 +98657,593,ligne de fuite,1427932652 +98674,1173,dark,1289426762 +98674,1173,fashion,1289426712 +98674,1173,jean paul gaultier,1289426748 +98674,1258,really scary,1289609738 +98674,2908,great acting,1289611476 +98674,2908,touching,1289611462 +98674,5128,hot vampire,1292111254 +98674,5128,like long music video,1292111265 +98674,5128,soundtrack,1292111259 +98674,5902,nicolas cage,1289426937 +98674,5952,cast,1289695282 +98674,5952,too long,1289695269 +98674,6249,akward,1289611583 +98674,6249,really bad movie,1289611587 +98674,6373,annoying,1290467193 +98674,6373,jim carrey,1290467158 +98674,7147,funny,1289695340 +98674,7147,i cried like a baby,1289695336 +98674,7147,touching,1289695327 +98674,7254,love,1289959330 +98674,7293,annoying,1290467075 +98674,8360,catnip,1289427468 +98674,8369,surprisingly good,1289611661 +98674,8910,pointless,1289427143 +98674,31433,hot guys,1289426369 +98674,37731,charlie hunnam,1294094026 +98674,37857,beautiful,1289695159 +98674,39449,sexy,1290370656 +98674,39449,unpredictable ending,1290370649 +98674,41566,annoying kids,1289433721 +98674,41566,bad acting,1289433726 +98674,42011,stupid,1290467237 +98674,45666,funny,1290467261 +98674,45666,jack black,1290467265 +98674,45666,lucha libre,1290467270 +98674,45672,very sad,1290467135 +98674,48774,charlie hunnam,1294093994 +98674,49278,val kilmer,1289959358 +98674,55995,amazing animation,1289695232 +98674,56949,akward,1289426304 +98674,56949,bad acting,1289426342 +98674,56949,full of stupid things,1289426329 +98674,58105,beautiful,1289433802 +98674,58105,fantasy,1289433834 +98674,58105,funny,1289433798 +98674,58105,magic,1289433825 +98674,58105,seth rogen,1289433793 +98674,59501,akward,1289433747 +98674,59501,annoying,1289433755 +98674,59501,bad acting,1289433752 +98674,59501,boring,1289433774 +98674,59501,dirty jokes,1289433761 +98674,66097,scary,1289695184 +98674,66097,set,1289695210 +98674,69436,disappointment,1290467344 +98674,69436,kind of boring,1290467338 +98674,69436,michael cera,1290467333 +98674,74789,beautiful,1289695133 +98674,74789,disappointment,1289695125 +98674,74789,storyline,1289695139 +98674,76093,acting,1289695072 +98674,76093,adorable,1289695064 +98674,76093,cute,1289695051 +98674,76093,funny,1289695034 +98674,76093,i cryed!,1289695043 +98674,76093,jonah hill,1289695031 +98674,76093,toothless,1289695060 +98674,77414,bad acting,1289431786 +98674,77414,little brother,1289431818 +98674,77414,rip off,1289431801 +98674,80820,alyssa milano,1289609062 +98674,80820,bad acting,1289609066 +98674,80820,embarressid to watch,1289609074 +98674,80820,waste of time,1289609079 +98674,82242,Finnish,1294174810 +98674,82242,no girls,1294174815 +98689,1,animation,1242279795 +98689,1,Pixar,1242279793 +98689,47,psychology,1242280014 +98689,47,serial killer,1242280017 +98689,47,twist ending,1242280012 +98689,260,fantasy,1242279608 +98689,260,sci-fi,1242279605 +98689,260,space,1242279603 +98689,527,based on a true story,1242279622 +98689,527,Holocaust,1242279619 +98689,1196,fantasy,1242279899 +98689,1196,sci-fi,1242279897 +98689,1196,space,1242279895 +98689,1210,fantasy,1242279595 +98689,1210,sci-fi,1242279593 +98689,1210,space,1242279598 +98689,1682,dystopia,1242279770 +98689,1682,Jim Carrey,1242279767 +98689,2501,rocket,1242280163 +98689,2501,space,1242280097 +98689,2542,Guy Ritchie,1242280188 +98689,2542,organized crime,1242280191 +98689,2571,dystopia,1242279644 +98689,2571,sci-fi,1242279642 +98689,2762,Bruce Willis,1242279981 +98689,2762,psychology,1242279991 +98689,2762,twist ending,1242279979 +98689,3275,organized crime,1242279705 +98689,4011,Brad Pitt,1242279969 +98689,4011,Guy Ritchie,1242279966 +98689,4011,twist ending,1242279963 +98689,4306,animation,1242280002 +98689,4306,fairy tale,1242280004 +98689,4306,satire,1242279999 +98689,5618,animation,1242279922 +98689,5618,anime,1242279941 +98689,5618,fantasy,1242279916 +98689,6283,anime,1242279696 +98689,6283,humorous,1242279694 +98689,6539,action,1242279631 +98689,6539,Johnny Depp,1242279634 +98689,6539,pirates,1242279629 +98689,7153,fantasy,1242280176 +98689,8961,animation,1242279682 +98689,8961,Pixar,1242279685 +98689,33794,batman,1242279717 +98689,38061,comedy,1242279648 +98689,38061,satire,1242279651 +98689,44191,comic book,1242279578 +98689,44191,dystopia,1242279581 +98689,44195,politics,1242279802 +98689,44195,satire,1242279817 +98689,44195,social commentary,1242279799 +98689,44199,Clive Owen,1242280353 +98689,44199,Denzel Washington,1242280247 +98689,44199,heist,1242280245 +98689,44199,Jodie Foster,1242280353 +98689,44199,Spike Lee,1242280353 +98689,44199,twist ending,1242280242 +98689,44199,Willem Dafoe,1242280353 +98689,48394,fantasy,1242280068 +98689,48394,spanish,1242280083 +98689,48780,magic,1242280050 +98689,48780,nonlinear,1242280045 +98689,48780,twist ending,1242280048 +98689,53972,action,1242280224 +98689,53972,bruce willis,1242280223 +98689,59369,action,1242279842 +98689,60069,dystopia,1242279565 +98689,60069,pixar,1242279561 +98689,60069,space,1242279568 +98689,68358,action,1242279909 +98689,68358,space,1242279907 +98711,44,action,1447700492 +98711,464,action,1447700427 +98711,464,Jean-Claude Van Damme,1447700346 +98732,260,old,1434368534 +98732,260,showing it's age,1434368553 +98732,5617,dark comedy,1434369470 +98732,5617,Nudity (Full Frontal),1434369484 +98732,5617,Nudity (Topless - Notable),1434369493 +98732,5617,quirky,1434369495 +98732,7346,coming of age,1434370406 +98732,7346,Elisha Cuthbert,1434370414 +98732,7541,nudity (topless),1434370536 +98732,54281,coming of age,1434370454 +98732,70663,father-son relationship,1434370591 +98732,80549,comedy,1434370429 +98732,80549,satire,1434370433 +98732,104374,father son relationship,1434370629 +98732,104374,happiness,1434370639 +98732,104374,Rachel McAdams,1434370615 +98732,104374,time travel,1434370612 +98732,104374,touching,1434370609 +98732,115713,nudity (full frontal),1434369530 +98732,115713,thought provoking,1434369535 +98732,115713,thriller,1434369537 +98743,74553,animation,1441669248 +98743,74553,beautiful,1441669251 +98743,74553,medieval,1441669256 +98743,117444,animation,1441669277 +98750,171,AIDS,1159307196 +98750,171,gay,1159307210 +98782,5995,Holocaust,1406210041 +98782,5995,World War II,1406210090 +98783,22,detective thriller,1354427382 +98783,22,strong female lead,1354427382 +98783,50,detective thriller,1354428301 +98783,318,thoughtful,1354426483 +98783,376,whitewater,1354426724 +98783,457,detective thriller,1354428722 +98783,593,detective thriller,1354428372 +98783,593,jodie foster,1354428372 +98783,593,strong female lead,1354428372 +98783,1208,violent,1354426394 +98783,1246,boarding school,1354428059 +98783,1246,prep school,1354428060 +98783,1617,detective thriller,1354428138 +98783,1792,detective,1354427688 +98783,2058,detective thriller,1354427310 +98783,2836,Alec Baldwin,1354427071 +98783,2836,Teen movie,1354427072 +98783,2881,strong female lead,1354429248 +98783,3421,fraternity,1354426629 +98783,3484,yale,1354426832 +98783,4027,alison krauss,1354427977 +98783,4027,bluegrass,1354427951 +98783,4027,country,1354427951 +98783,4027,foggy bottom boys,1354427977 +98783,4027,man of constant sorrow,1354427977 +98783,4027,soundtrack,1354427951 +98783,4034,realistic,1354426601 +98783,4238,detective thriller,1354429218 +98783,4238,strong female lead,1354429218 +98783,4776,detective thriller,1354426584 +98783,4967,bosnia,1354428484 +98783,5010,special forces,1354429093 +98783,5445,post-apocalyptic,1354426343 +98783,5577,boarding school,1354427574 +98783,5577,prep school,1354427574 +98783,5903,dystopian,1354428711 +98783,6323,detective thriller,1354426789 +98783,6796,hood movie,1354426771 +98783,36529,based on a true story,1354427463 +98783,37727,bad plot,1354426944 +98783,37727,Jodie Foster,1354426961 +98783,37727,jodie joster,1354426944 +98783,40819,country,1354428970 +98783,40819,johnny cash,1354428970 +98783,44191,dystopian,1354426538 +98783,56156,video game adaptation,1354427798 +98783,73023,country music,1354429150 +98783,91658,detective thriller,1354428596 +98783,91658,strong female lead,1354428596 +98842,2858,toplist,1207606389 +98870,1,computer animation,1206662843 +98870,1,Pixar,1206662843 +98870,29,dark,1368473658 +98870,31,inspirational,1368473891 +98870,111,dark,1368473658 +98870,111,mental illness,1368473940 +98870,157,politics,1368474535 +98870,161,tense,1368474578 +98870,208,apocalypse,1206662717 +98870,208,search,1206662716 +98870,216,stupid,1368474560 +98870,260,galactic,1206663575 +98870,260,sci-fi,1206663575 +98870,260,space,1206663575 +98870,316,archaeology,1206663406 +98870,316,mythology,1206663406 +98870,316,sci-fi,1206663406 +98870,440,politics,1368474535 +98870,474,tense,1368474578 +98870,519,franchise,1368473796 +98870,555,ensemble cast,1368473715 +98870,555,violent,1368474617 +98870,589,computers,1206663158 +98870,589,cyborgs,1206663158 +98870,589,future,1206663158 +98870,700,high school,1368473859 +98870,832,tense,1368474577 +98870,861,police,1368474489 +98870,913,black and white,1368473524 +98870,922,black and white,1368473523 +98870,946,nazis,1368474025 +98870,1017,family,1206663321 +98870,1017,shipwreck,1206663321 +98870,1017,stranded,1206663321 +98870,1025,children,1206663269 +98870,1025,King Arthur,1206663269 +98870,1025,Merlin,1206663269 +98870,1073,children's story,1206662560 +98870,1073,espionage,1206662560 +98870,1073,recluse,1206662560 +98870,1089,violent,1368474617 +98870,1095,ensemble cast,1368473715 +98870,1104,mental illness,1368473940 +98870,1175,dark,1368473658 +98870,1196,galactic,1206663520 +98870,1196,sci-fi,1206663520 +98870,1196,space,1206663520 +98870,1206,violent,1368474617 +98870,1210,galactic,1206663498 +98870,1210,sci-fi,1206663498 +98870,1210,space,1206663499 +98870,1214,tense,1368474577 +98870,1248,black and white,1368473523 +98870,1262,ensemble cast,1368473715 +98870,1287,christianity,1368473599 +98870,1357,father-son relationship,1368473777 +98870,1357,mental illness,1368473940 +98870,1390,politics,1368474535 +98870,1396,ensemble cast,1368473715 +98870,1464,mystery,1368473979 +98870,1589,ensemble cast,1368473715 +98870,1610,thriller,1368474597 +98870,1721,iceburg,1206663089 +98870,1721,love story,1206663089 +98870,1721,shipwreck,1206663089 +98870,1834,mystery,1368473979 +98870,1945,black and white,1368473524 +98870,1950,police,1368474489 +98870,2024,christianity,1368473599 +98870,2026,high school,1368473859 +98870,2058,tense,1368474578 +98870,2076,dark,1368473658 +98870,2082,inspirational,1368473891 +98870,2105,computer animation,1206662774 +98870,2105,computers,1206662774 +98870,2105,video game,1206662774 +98870,2335,stupid,1368474560 +98870,2353,thriller,1368474597 +98870,2383,police,1368474489 +98870,2393,prime directive,1206663804 +98870,2393,sci-fi,1206663804 +98870,2393,space,1206663804 +98870,2442,mental illness,1368473940 +98870,2490,violent,1368474617 +98870,2500,high school,1368473859 +98870,2501,father-son relationship,1368473777 +98870,2628,galactic,1206663550 +98870,2628,sci-fi,1206663550 +98870,2628,space,1206663550 +98870,2734,mental illness,1368473940 +98870,2882,nazis,1368474025 +98870,2888,high school,1368473859 +98870,2916,conspiracy,1206662959 +98870,2916,mars,1206662959 +98870,2916,memory,1206662959 +98870,2916,mutants,1206662959 +98870,2919,politics,1368474535 +98870,2944,ensemble cast,1368473715 +98870,2959,violent,1368474617 +98870,2985,violent,1368474617 +98870,3044,mystery,1368473979 +98870,3082,nuclear bomb,1206662251 +98870,3082,terrorism,1206662304 +98870,3114,computer animation,1206662822 +98870,3114,Pixar,1206662822 +98870,3146,stupid,1368474560 +98870,3178,inspirational,1368473891 +98870,3256,tense,1368474578 +98870,3256,thriller,1368474597 +98870,3273,franchise,1368473797 +98870,3362,police,1368474489 +98870,3435,black and white,1368473523 +98870,3440,franchise,1368473796 +98870,3468,black and white,1368473523 +98870,3481,actor talks to audience,1206817950 +98870,3481,loss,1206817950 +98870,3481,music,1206817950 +98870,3481,relationships,1206817950 +98870,3519,nazis,1368474025 +98870,3566,christianity,1368473599 +98870,3683,dark,1368473658 +98870,3980,inspirational,1368473891 +98870,4019,inspirational,1368473891 +98870,4388,stupid,1368474560 +98870,4865,dark,1368473658 +98870,4865,mystery,1368473979 +98870,4974,stupid,1368474560 +98870,5107,nazis,1368474025 +98870,5363,high school,1368473859 +98870,5785,stupid,1368474560 +98870,5944,romulan,1206663702 +98870,5944,sci-fi,1206663702 +98870,5944,space,1206663702 +98870,6323,mystery,1368473979 +98870,6537,franchise,1368473797 +98870,6808,nazis,1368474025 +98870,7160,mental illness,1368473940 +98870,8781,politics,1368474535 +98870,33660,inspirational,1368473891 +98870,50151,Loss,1207445926 +98870,50151,veterans,1207445926 +98870,50151,War,1207445926 +98870,51540,police,1368474489 +98870,52668,cancer,1210548092 +98870,52668,Relationships,1210548092 +98870,53121,franchise,1368473797 +98870,55276,corporate espionage,1206672221 +98870,55276,fixer,1206672221 +98870,55276,flash forward,1206672221 +98870,55290,police,1368474489 +98870,63113,franchise,1368473796 +98870,64622,nazis,1368474025 +98870,74458,mystery,1368473979 +98948,110,movie for the kids,1149761275 +98954,7099,Studio Ghibli,1237247954 +98954,7099, ,1237251671 +98983,91014,china,1432424231 +98983,91014,jackie chan,1432424231 +98983,91014,martial arts,1432424231 +98983,91014,revenge,1432424231 +98999,370,Comedy,1150053206 +98999,520,Mel Brooks,1150053192 +98999,2572,romantic,1150053201 +98999,2572,teen,1150053199 +98999,4816,farce,1150053198 +98999,4816,goofy,1150053196 +99016,7444,Mark Ruffalo,1230425469 +99027,6902,nice and kind,1210521499 +99027,6902,road trip,1210521506 +99056,8874,england,1178893332 +99074,260,good for kids,1439795833 +99074,260,hero's journey,1439795383 +99077,8970,hclib,1385933729 +99077,48394,violence,1390015515 +99077,68319,violent,1386476629 +99077,101170,hclib,1386476578 +99087,64957,bittersweet,1301767424 +99087,64957,romance,1301767420 +99139,89745,humorous,1433346339 +99139,89745,Marvel,1433346332 +99139,111759,time loop,1433346308 +99150,260,adventure,1436659263 +99150,260,starwars,1436659254 +99156,260,sci-fi,1439768654 +99156,260,Star Wars,1439768647 +99167,8784,Zach Braff,1185289221 +99189,356,drama,1434486246 +99189,356,related:forrest gump,1434486246 +99189,356,tom hanks,1434486246 +99213,33288,football,1351946154 +99213,74458,Leonardo DiCaprio,1381958481 +99213,87869,Jennifer Aniston,1381958744 +99253,260,classic,1447580993 +99253,260,sci-fi,1447580990 +99253,260,space,1447580997 +99253,260,space adventure,1447581001 +99266,51935,action,1425005640 +99266,51935,sniper,1425005296 +99275,6857,wu tang,1359709141 +99293,109633,Anime,1434746293 +99293,109633,Japan,1434746297 +99307,2959,ultra-violence,1441599185 +99332,593,hannibal lecter,1434852984 +99332,593,serial killer,1434852984 +99332,593,thriller,1434852984 +99332,2571,keanu reeves,1431827419 +99332,2571,post-apocalyptic,1431827419 +99332,2571,sci-fi,1431827419 +99338,56715,Some blood,1261501124 +99338,56715,Though provoking,1261501124 +99439,150,astronauts,1243976557 +99439,150,NASA,1243976570 +99439,4011,Guy Ritchie,1243862493 +99467,84944,animation,1301896474 +99472,296,crime,1429824021 +99472,296,drama,1429824021 +99472,296,quentin tarantino,1429824021 +99472,4022,adventure,1445201859 +99472,4022,airplane crash,1445201909 +99472,4022,drama,1445201884 +99472,4022,helen hunt,1445201891 +99472,4022,island,1445201863 +99472,4022,isolation,1445201914 +99472,4022,loneliness,1445201869 +99472,4022,love story,1445201901 +99472,4022,man vs. nature,1445201872 +99472,4022,philosophy,1445201880 +99472,4022,psychological,1445201877 +99472,4022,Robert Zemeckis,1445201887 +99472,4022,spiritual journey,1445201898 +99472,4022,stranded,1445201856 +99472,4022,SURVIVAL,1445201851 +99472,4022,Tom Hanks,1445201845 +99472,4022,unique,1445201894 +99472,56782,based on a book,1328661596 +99472,56782,Oscar (Best Actor),1328661554 +99472,56782,Oscar (Best Cinematography),1328661589 +99489,260,classic,1438033918 +99489,260,must see,1438033924 +99496,546,Exemplifies movies of the 90's.,1187291730 +99496,837,Cute movie.,1187291792 +99496,915,One of my favorite Audrey Hepburn films.,1187291837 +99496,954,Great movie,1187291728 +99496,1012,Sad,1187292082 +99496,1091,Quirky and funny.,1187291789 +99496,1416,Decent,1187291726 +99496,1416,pairing of Antonio Banderas and Madonna was strange.,1187291726 +99496,1894,Odd pairing of Anne Heche and Harrison Ford.,1187291791 +99496,2125,New take on a classic story.,1187291725 +99496,2485,now it's a little dumb.,1187291729 +99496,2485,Watched multiple times as a teenager,1187291729 +99496,2505,Nicolas Cage,1187292086 +99496,2841,Great story,1187291837 +99496,2841,original and creepy.,1187291837 +99496,4015,Stupid and a waste.,1187291945 +99496,5444,Super cute.,1187292083 +99496,5528,Robin Williams at his best.,1187291994 +99496,5992,A little slow but still decent.,1187292112 +99496,6157,Ben Affleck = HORRIBLE MOVIE,1187292085 +99506,457,great thriller,1151902264 +99506,1288,not bad,1151902237 +99510,1198,adventure,1440771378 +99510,1270,sci-fi,1440770843 +99510,1270,time travel,1440770832 +99510,6016,brazil,1440771384 +99510,68954,computer animation,1440770860 +99510,68954,pixar,1440770863 +99519,260,action,1443993714 +99519,260,epic adventure,1443993722 +99519,260,fantasy,1443993696 +99519,260,sci-fi,1443993679 +99519,4878,atmospheric,1444022509 +99519,4878,dreamlike,1444022498 +99519,4878,stylized,1444022519 +99519,4878,teen,1444022505 +99519,26074,60's,1443994905 +99519,26074,classic,1443994875 +99519,26074,musician's life,1443994892 +99519,26074,stylistic,1443994869 +99519,127186,adolescence,1443994648 +99519,127186,black girls,1443994583 +99519,127186,coming of age,1443994622 +99519,127186,ghetto,1443994590 +99519,127186,growing up,1443994628 +99519,127186,stylistic,1443994610 +99519,127186,teen,1443994642 +99558,8533,Rachel McAdams,1301422579 +99558,8533,Romance,1301422586 +99558,8533,Ryan Gosling,1301422582 +99558,8533,sappy,1301422590 +99558,71535,emma stone,1301423563 +99558,81564,Will Ferrell,1304197068 +99558,81804,assassin,1298925277 +99558,81804,Bill Nighty,1298925279 +99558,81804,british,1298925267 +99558,81804,Emily Blunt,1298925262 +99558,81804,romantic comedy,1298925276 +99558,81804,Rupert Grint,1298925258 +99558,85367,Adam Sandler,1301422881 +99558,85367,Hawaii,1301422864 +99558,85367,Jennifer Aniston,1301422871 +99574,260,jedi,1426435407 +99574,260,sci-fi,1426435407 +99574,260,star wars,1426435407 +99589,260,space adventure,1433855874 +99592,1261,dark comedy,1351989068 +99592,58156,Bears,1352046270 +99592,58156,Jive Turkey,1352046287 +99605,1198,action,1379777640 +99605,1198,Harrison Ford,1379777619 +99605,1198,Steven Spielberg,1379777623 +99605,7153,adventure,1379777584 +99605,7153,fantasy,1379777599 +99605,7153,high fantasy,1379777579 +99605,7153,magic,1379777603 +99605,7153,Oscar (Best Picture),1379777575 +99605,104272,emotional,1379742230 +99605,104272,horrifying (but not Horror genre),1379742241 +99609,223,bad acting,1137968045 +99609,223,good dialogue,1137968064 +99609,223,hard to rate,1137968045 +99609,231,infantile,1137967750 +99609,520,Mel Brooks at his worst,1137966756 +99609,541,Cinematography,1137967933 +99609,551,inventive,1137968255 +99609,590,too long,1137967305 +99609,785,Friday night fare,1137966712 +99609,852,Pleasant,1137966733 +99609,858,Overrated,1137966615 +99609,923,classic,1137968592 +99609,924,hard to rate,1137966654 +99609,1080,Studied Latin?,1137966526 +99609,1101,Friday night fare,1137966553 +99609,1207,classic,1137966472 +99609,1246,inspirational,1137968483 +99609,1247,modern classic,1137964237 +99609,1375,Slow,1137966570 +99609,1394,hard to rate (personal),1137968684 +99609,1721,too long,1137966438 +99609,2115,good but one sadistic scene,1137966361 +99609,2302,Friday night fare,1137968833 +99609,2657,hard to rate,1137966420 +99609,2985,good but one sadistic scene,1137966309 +99609,3421,infantile,1137965375 +99609,3671,infantile,1137965310 +99609,4979,hard to rate,1137966925 +99609,5752,light,1137964339 +99609,5752,sweet,1137964339 +99609,6127,observant,1137965526 +99609,8207,Confusing if you haven't read the book,1137966173 +99609,30822,saved by good editing,1137965598 +99609,35836,Friday night fare,1137969303 +99639,296,Bruce Willis,1307274473 +99639,296,multiple storylines,1307274472 +99639,296,Quentin Tarantino,1307274398 +99639,85881,Thomas McCarthy,1307274614 +99660,318,drama,1354511344 +99668,8957,Great movie,1148223274 +99668,39446,Great movie,1148223286 +99672,260,action,1439787293 +99672,260,sci-fi,1439787289 +99700,3362,al pacino,1224943200 +99700,3362,imdb top 250,1224943205 +99700,3362,true story,1224943209 +99700,32587,imdb top 250,1224943280 +99700,55247,based on a true story,1224943244 +99700,55247,imdb top 250,1224943238 +99707,1639,Kevin Smith,1225434308 +99707,37384,Ryan Reynolds,1225312099 +99724,1199,surreal,1218237214 +99724,1199,Terry Gilliam,1218237211 +99724,1225,music,1218812662 +99724,2788,Monty Python,1218235120 +99724,2788,sketch comedy,1218235127 +99724,5017,Fritz Lang,1218237070 +99724,6270,Akira Kurosawa,1218237521 +99724,6270,Japan,1218237518 +99724,6993,Woody Allen,1218238408 +99724,8738,nouvelle vague,1218812712 +99724,58559,Christian Bale,1218234636 +99724,58559,superhero,1218234591 +99751,390,campy,1138297130 +99751,3626,twisted,1138297072 +99751,3867,alive and kicking,1138298107 +99751,4064,blaxploitation,1138297146 +99751,4775,campy,1138297105 +99751,5613,campy,1138297063 +99751,7360,gory fun,1138297854 +99751,7573,terrible bond,1138297003 +99751,30898,joan allen fantastic,1138296927 +99751,33164,SEE PARIS DIE!,1138297518 +99751,40583,convoluted,1138296901 +99778,260,classic,1442222591 +99778,260,epic,1442222584 +99784,1333,classic,1420978024 +99784,1333,horror,1420978024 +99784,1333,man against nature,1420978024 +99784,45188,poetic,1420977932 +99784,95558,emotional,1421000409 +99784,95558,surreal,1421000407 +99805,41285,Dostoyevsky,1204423304 +99818,838,based on a book,1361531438 +99818,838,comedy,1361531442 +99818,838,Romance,1361531436 +99818,5380,british,1361531431 +99818,7669,Jane Austen,1361531565 +99836,296,excellent! great story and cinetmatography,1431337109 +99836,296,good music,1431337109 +99836,296,perfect script,1431337109 +99836,356,adventure,1431962788 +99836,356,american history,1431962788 +99836,356,comedy,1431962788 +99836,593,great acting,1432729111 +99836,593,psychothriller,1432729111 +99836,593,suspense,1432729111 +99836,108583,comedy,1431338172 +99836,108583,tv series,1431338176 +99836,115629,Alberto Rodríguez,1429199753 +99836,139608,Comedy,1437662639 +99836,139608,Romance,1437662633 +99843,1275,Queen,1444576560 +99843,1374,Khan as the greatest enemy,1444576380 +99843,68358,James T. Kirk,1444576178 +99843,68358,space travel,1444576125 +99843,68358,Star Trek,1444576116 +99855,132518,poor acting,1429618270 +99855,132518,predictable,1429618270 +99855,132518,stereotypical,1429618270 +99857,2003,Joe Dante,1202940098 +99860,79132,original,1439310048 +99860,109487,original,1439309952 +99873,260,feel-good,1430914660 +99873,260,Innovative,1430914646 +99873,296,iconic,1431656987 +99873,296,r:disturbing violent images,1431656987 +99873,296,stylized,1431656987 +99873,318,epic,1432612168 +99873,318,inspirational,1432612168 +99873,318,prison escape,1432612168 +99873,480,dinosaurs,1433585034 +99873,480,dynamic cgi action,1433585034 +99873,480,suspense,1433585034 +99873,116897,anger,1433585197 +99873,116897,argentina,1433585078 +99873,116897,bureaucracy,1433585186 +99873,116897,common man,1433585174 +99873,116897,corruption,1433585084 +99873,116897,Excellent acting,1433585208 +99873,116897,hot kisses,1433585136 +99873,116897,revenge,1433585093 +99873,116897,road rage,1433585227 +99873,116897,violence,1433585114 +99873,116897,wedding scene,1433585130 +99874,4370,Stanley Kubrick,1180836503 +99884,134853,Animation,1442140719 +99884,134853,Pixar,1442140711 +99913,1,Pixar,1159534063 +99913,173,comic book,1159533930 +99913,364,Disney,1159533942 +99913,433,best comedy of '90,1160866845 +99913,1278,farce,1159533938 +99913,2294,Pixar,1159534104 +99913,2997,Charlie Kaufman,1160866240 +99913,4886,Pixar,1159534061 +99913,5902,Charlie Kaufman,1160866238 +99913,6377,Pixar,1159534060 +99913,7361,Charlie Kaufman,1160866226 +99913,45517,Pixar,1159534105 +99952,29,weird,1368740150 +99952,32,great ending,1368740299 +99952,32,original,1368600784 +99952,47,great ending,1368740299 +99952,50,storytelling,1368600918 +99952,111,loneliness,1368637642 +99952,150,dramatic,1368648263 +99952,169,family,1368740280 +99952,204,action,1368648283 +99952,296,storytelling,1368600918 +99952,318,great ending,1368740299 +99952,455,family,1368740280 +99952,508,dramatic,1368648264 +99952,593,great acting,1368740197 +99952,858,great acting,1368740197 +99952,1015,family,1368740280 +99952,1016,family,1368740280 +99952,1089,original,1368600784 +99952,1172,mentor,1368600835 +99952,1175,weird,1368740150 +99952,1260,talky,1368740356 +99952,1275,mentor,1368600835 +99952,1281,talky,1368740356 +99952,1307,relationships,1368740115 +99952,1552,action,1368648283 +99952,1608,action,1368648283 +99952,1623,horror,1368740253 +99952,1639,relationships,1368740115 +99952,1722,action,1368648283 +99952,1991,horror,1368740253 +99952,2076,weird,1368740150 +99952,2291,original,1368600784 +99952,2315,horror,1368740253 +99952,2335,comedy,1368600875 +99952,2371,comedy,1368600875 +99952,2460,horror,1368740253 +99952,2762,great ending,1368740299 +99952,2858,great acting,1368740197 +99952,3018,horror,1368740253 +99952,3157,family,1368740280 +99952,3421,comedy,1368600875 +99952,3462,talky,1368740356 +99952,4226,storytelling,1368600918 +99952,4725,horror,1368740253 +99952,4878,weird,1368740150 +99952,5452,family,1368740280 +99952,5878,loneliness,1368637642 +99952,5945,loneliness,1368637642 +99952,5995,dramatic,1368648263 +99952,6188,comedy,1368600875 +99952,6787,story,1368740386 +99952,7149,Comedy,1152055406 +99952,8641,comedy,1368600875 +99952,8981,relationships,1368740115 +99952,32587,storytelling,1368600918 +99952,37733,brutality,1433960143 +99952,64839,loneliness,1368637642 +99952,79132,cerebral,1368740409 +99975,260,epic adventure,1435051358 +99975,260,Science Fiction,1435051349 +99975,260,space epic,1435051360 +99975,6016,amazing photography,1435053672 +99975,6016,brazil,1435053655 +99975,6016,crime,1435053664 +99975,6016,gangs,1435053670 +99975,6016,Rio de Janeiro,1435053662 +99992,3,sequel,1354556170 +99992,6,netflix queue,1447908185 +99992,8,seen,1354062797 +99992,22,seen,1354141021 +99992,32,Brad Pitt,1257824633 +99992,32,Bruce Willis,1257824627 +99992,32,dystopia,1387867767 +99992,32,future,1387867770 +99992,32,post-apocalyptic,1387867765 +99992,32,Terry Gilliam,1387867781 +99992,48,historically inaccurate,1354557179 +99992,50,twist ending,1354140529 +99992,107,treasure,1368561805 +99992,110,netflix streaming,1446260649 +99992,153,Jim Carrey,1257822980 +99992,153,Nicole Kidman,1257822985 +99992,153,Tommy Lee Jones,1257822991 +99992,153,Val Kilmer,1257823000 +99992,158,seen,1354141005 +99992,163,sequel,1354556158 +99992,165,sequel,1354315717 +99992,173,cheesy lines,1351188919 +99992,173,futuristic,1351188894 +99992,198,cyberpunk,1406398798 +99992,198,Ralph Fiennes,1406398815 +99992,216,Adam Sandler,1256341137 +99992,224,Johnny Depp,1256335984 +99992,235,Bechdel Test:Pass (technically),1354510344 +99992,235,Johnny Depp,1354510353 +99992,235,youtube,1354474900 +99992,256,seen,1353031933 +99992,267,seen,1353032242 +99992,288,love,1349477104 +99992,288,psychedelic,1349477100 +99992,288,stylized,1349477098 +99992,296,Bruce Willis,1257812558 +99992,296,John Travolta,1257812574 +99992,296,nonlinear,1257812556 +99992,296,Quentin Tarantino,1257812551 +99992,296,Samuel L. Jackson,1257812554 +99992,296,Uma Thurman,1257812590 +99992,307,music,1241328426 +99992,329,sequel,1354316452 +99992,337,Johnny Depp,1257137106 +99992,337,Leonardo DiCaprio,1257137110 +99992,339,chick flick,1354316390 +99992,349,sequel,1354316075 +99992,370,sequel,1354555994 +99992,372,Ben Stiller,1256340940 +99992,372,ethan hawke,1256340943 +99992,372,Janeane Garofalo,1256340947 +99992,372,Winona Ryder,1256340950 +99992,380,Arnold Schwarzenegger,1411103035 +99992,420,sequel,1354497539 +99992,435,seen,1354556337 +99992,466,sequel,1354556382 +99992,475,Bechdel Test:Fail,1353283105 +99992,475,Daniel Day-Lewis,1353283113 +99992,475,Emma Thompson,1353283116 +99992,481,seen,1353032230 +99992,485,arnold,1368561898 +99992,485,seen,1353031920 +99992,500,Comedy,1353031282 +99992,500,cross dressing,1353031256 +99992,500,Pierce Brosnan,1353031265 +99992,500,Robin Williams,1353031251 +99992,500,San Francisco,1353031270 +99992,541,dystopia,1394514237 +99992,541,sci-fi,1394514241 +99992,587,romance,1411146585 +99992,589,arnold,1368561898 +99992,592,dark hero,1368561862 +99992,670,sequel,1391570146 +99992,673,seen,1354140968 +99992,703,youtube,1355004108 +99992,832,youtube,1354556050 +99992,837,seen,1354312469 +99992,838,seen,1353031728 +99992,898,netflix queue,1447908321 +99992,899,netflix queue,1446174786 +99992,902,Audrey Hepburn,1256335318 +99992,903,netflix queue,1447097520 +99992,904,netflix queue,1446963611 +99992,908,netflix queue,1446963738 +99992,910,seen,1354217247 +99992,912,netflix queue,1446963539 +99992,920,seen,1352846055 +99992,1024,seen,1354062855 +99992,1089,Quentin Tarantino,1257812608 +99992,1188,Bechdel Test:Fail,1362031390 +99992,1199,Robert De Niro,1257794561 +99992,1199,Terry Gilliam,1257794557 +99992,1201,netflix queue,1447908539 +99992,1207,netflix streaming,1446963788 +99992,1213,netflix queue,1446175035 +99992,1215,sequel,1446094976 +99992,1220,netflix queue,1446439413 +99992,1233,netflix queue,1446175133 +99992,1240,arnold,1368561898 +99992,1259,Bechdel Test:Fail,1355033460 +99992,1262,netflix queue,1453508852 +99992,1268,seen,1354314970 +99992,1269,based on a play,1385086908 +99992,1269,dark comedy,1385086912 +99992,1291,spielberg,1368562039 +99992,1291,treasure,1368561805 +99992,1293,youtube,1354661632 +99992,1307,Bechdel Test:Fail,1355020746 +99992,1307,youtube,1354417784 +99992,1356,sequel,1405712177 +99992,1367,seen,1352684859 +99992,1370,sequel,1354497986 +99992,1377,Christopher Walken,1257811124 +99992,1377,Danny DeVito,1257811140 +99992,1377,Michael Keaton,1257811137 +99992,1377,Michelle Pfeiffer,1257811156 +99992,1377,Tim Burton,1257811128 +99992,1387,spielberg,1368562039 +99992,1391,aliens,1257812464 +99992,1391,Jack Nicholson,1257812444 +99992,1391,mars,1368561849 +99992,1391,Natalie Portman,1257812446 +99992,1391,Parody,1257812485 +99992,1391,Pierce Brosnan,1351217262 +99992,1391,Tim Burton,1257812450 +99992,1447,Tim Roth,1352407602 +99992,1461,seen,1354062332 +99992,1464,seen,1354063291 +99992,1513,seen,1352684850 +99992,1566,Disney,1256351773 +99992,1580,conspiracy theory,1368561965 +99992,1608,youtube,1354556321 +99992,1617,neo-noir,1368561940 +99992,1717,sequel,1354397589 +99992,1722,seen,1354062813 +99992,1824,seen,1354832253 +99992,1825,youtube,1352847061 +99992,1882,seen,1352683874 +99992,1900,realistic,1395350358 +99992,1916,Christina Ricci,1446530027 +99992,1954,youtube,1354556504 +99992,1957,seen,1352682690 +99992,1965,black comedy,1256340794 +99992,1965,Emilio Estevez,1256340778 +99992,1965,futuristic,1256340790 +99992,1967,David Bowie,1256335404 +99992,1967,fantasy,1256335451 +99992,1967,Jim Henson,1256335406 +99992,1982,seen,1352683727 +99992,2001,sequel,1354556934 +99992,2011,sequel,1389934599 +99992,2012,sequel,1410026375 +99992,2018,animation,1256335878 +99992,2018,Disney,1256335894 +99992,2018,talking animals,1256335904 +99992,2022,christian,1368561927 +99992,2022,jesus,1368561780 +99992,2028,historical,1349477157 +99992,2028,spielberg,1368562039 +99992,2028,Steven Spielberg,1349477215 +99992,2028,stylized,1349477221 +99992,2042,seen,1353032151 +99992,2053,seen,1353032136 +99992,2058,seen,1352683454 +99992,2076,neo-noir,1368561940 +99992,2081,Disney,1241149268 +99992,2081,the ocean,1241149281 +99992,2085,animation,1256335515 +99992,2085,Disney,1256335503 +99992,2085,fashion,1256335498 +99992,2087,animation,1256335764 +99992,2087,Disney,1256335727 +99992,2087,pirates,1256335773 +99992,2089,seen,1353032125 +99992,2094,seen,1352682740 +99992,2096,animation,1256340914 +99992,2096,Disney,1256340905 +99992,2115,spielberg,1368562039 +99992,2115,treasure,1368561805 +99992,2145,seen,1355037419 +99992,2160,seen,1352683774 +99992,2193,dragon,1368561988 +99992,2268,Demi Moore,1257896926 +99992,2268,Jack Nicholson,1257896859 +99992,2300,Gene Wilder,1256336553 +99992,2300,Mel Brooks,1256336551 +99992,2329,Edward Norton,1257901921 +99992,2329,violence,1257901960 +99992,2335,Adam Sandler,1256341188 +99992,2335,Fairuza Balk,1256341186 +99992,2335,football,1256341182 +99992,2420,seen,1352683902 +99992,2529,seen,1355312062 +99992,2571,dark hero,1368561862 +99992,2580,black comedy,1352584576 +99992,2580,drugs,1352584539 +99992,2580,multiple storylines,1352584542 +99992,2596,cult film,1349475808 +99992,2596,drugs,1349475803 +99992,2596,hallucination,1349475801 +99992,2617,treasure,1368561805 +99992,2692,Bechdel Test:Pass,1355617459 +99992,2692,visually appealing,1355622601 +99992,2765,based on a book,1352152383 +99992,2765,dark comedy,1352152373 +99992,2765,drugs,1352152372 +99992,2826,Bechdel Test:Fail,1354418552 +99992,2826,youtube,1352849882 +99992,2840,jesus,1368561780 +99992,2843,hard drive,1446182374 +99992,2857,psychedelic,1349464903 +99992,2857,surreal,1241150269 +99992,2857,The Beatles,1241150260 +99992,2863,Beatles,1445834121 +99992,2863,british comedy,1352591732 +99992,2872,not seen,1355005005 +99992,2891,William H. Macy,1352675370 +99992,2916,arnold,1368561898 +99992,2916,Arnold Schwarzenegger,1257627982 +99992,2968,seen,1352682907 +99992,3000,anti-war,1256335662 +99992,3000,fantasy,1256335664 +99992,3052,jesus,1368561781 +99992,3077,sequel,1391631107 +99992,3108,Jeff Bridges,1395808164 +99992,3108,Terry Gilliam,1395808161 +99992,3146,seen,1353031647 +99992,3174,Andy Kaufman,1257403857 +99992,3174,Courtney Love,1257403890 +99992,3174,Danny DeVito,1257403861 +99992,3174,Jim Carrey,1257403852 +99992,3174,Paul Giamatti,1257403864 +99992,3198,Bechdel Test:Fail,1355311944 +99992,3198,Dustin Hoffman,1355311978 +99992,3198,youtube,1355311921 +99992,3266,mockumentary,1351374001 +99992,3273,sequel,1389753759 +99992,3285,drugs,1256340980 +99992,3285,Leonardo DiCaprio,1256340983 +99992,3285,travel,1256340996 +99992,3285,utopia,1256340992 +99992,3300,stranded,1368561837 +99992,3438,youtube,1352847190 +99992,3439,youtube,1352847208 +99992,3440,youtube,1352847254 +99992,3468,Paul Newman,1417653339 +99992,3471,youtube,1354556721 +99992,3484,seen,1352683327 +99992,3494,Kim Darby,1352939465 +99992,3499,youtube,1355033533 +99992,3565,Natalie Portman,1256350831 +99992,3676,youtube,1354675378 +99992,3703,sequel,1354397564 +99992,3819,netflix queue,1446182868 +99992,3825,Piper Perabo,1257133261 +99992,3825,romantic comedy,1257133229 +99992,3835,Alicia Silverstone,1257132072 +99992,3858,John Waters,1352407646 +99992,3882,Eliza Dushku,1256341293 +99992,3882,Kirsten Dunst,1256341295 +99992,3986,mars,1368561849 +99992,3988,seen,1353031820 +99992,4002,holiday themed,1445188560 +99992,4002,outdated,1362213712 +99992,4029,Sarah Jessica Parker,1349465605 +99992,4042,History,1352846157 +99992,4042,seen,1352846162 +99992,4121,seen,1355037775 +99992,4135,seen,1354314988 +99992,4139,youtube,1354661884 +99992,4303,Gay Lead Character,1352675309 +99992,4310,youtube,1354417960 +99992,4437,stylized,1406396859 +99992,4443,youtube,1354417647 +99992,4448,Edward Norton,1354140594 +99992,4448,Heist,1354140605 +99992,4454,vimeo,1354418333 +99992,4467,fantasy,1256351108 +99992,4467,Terry Gilliam,1256351102 +99992,4621,seen,1354141161 +99992,4642,based on a play,1257902065 +99992,4642,campy,1257902070 +99992,4642,music,1257902074 +99992,4642,stylized,1257902080 +99992,4678,Michael Richards,1242372381 +99992,4678,quirky,1242372351 +99992,4701,seen,1353032044 +99992,4823,Romantic Comedy,1257135973 +99992,4845,seen,1354312755 +99992,4865,19th century,1256340290 +99992,4865,Johnny Depp,1256340286 +99992,4865,lots of blood,1256340319 +99992,4878,short-term memory loss,1368562020 +99992,4973,stylized,1352582739 +99992,4973,surreal,1352582737 +99992,5152,Mel Gibson,1256341236 +99992,5152,Vietnam War,1256341250 +99992,5164,seen,1354062756 +99992,5171,seen,1353032005 +99992,5265,Black Comedy,1243382087 +99992,5265,Catherine Keener,1243382100 +99992,5265,Danny DeVito,1243382111 +99992,5265,Edward Norton,1243382075 +99992,5265,Robin Williams,1243382078 +99992,5288,seen,1354216992 +99992,5313,seen,1353031788 +99992,5378,sequel,1354497872 +99992,5379,youtube,1354815860 +99992,5387,seen,1353272828 +99992,5445,spielberg,1368562039 +99992,5616,cheesy acting,1354315149 +99992,5616,dark comedy,1354315140 +99992,5616,youtube,1354249093 +99992,5782,unpredictable,1447556560 +99992,5878,netflix queue,1447097832 +99992,5991,stylized,1349464309 +99992,6155,seen,1354216697 +99992,6156,seen,1355630601 +99992,6287,youtube,1352846953 +99992,6345,based on a play,1257722918 +99992,6367,Chick Flick,1352790928 +99992,6367,Ewan McGregor,1352790934 +99992,6367,stylized,1352790947 +99992,6537,sequel,1389765861 +99992,6539,treasure,1368561805 +99992,6564,seen,1353031968 +99992,6618,funny,1256351872 +99992,6662,not funny,1406845994 +99992,6662,Peter Sellers,1406845991 +99992,6724,seen,1354060986 +99992,6773,animation,1257404997 +99992,6773,bicycling,1257405014 +99992,6773,no dialogue,1257405007 +99992,6874,nonlinear,1349476829 +99992,6874,visually appealing,1349476827 +99992,7004,Arnold Schwarzenegger,1256340257 +99992,7060,Bechdel Test:Fail,1354060647 +99992,7060,Rock Opera,1354060662 +99992,7147,stylized,1349476951 +99992,7147,surreal,1349476948 +99992,7156,netflix queue,1447908495 +99992,7318,beautifully filmed,1349476603 +99992,7318,bloody,1349476578 +99992,7318,controversial,1349476613 +99992,7318,good acting,1349476591 +99992,7318,jesus,1368561780 +99992,7318,violent,1349476585 +99992,7361,short-term memory loss,1368562020 +99992,7386,christian,1368561927 +99992,7448,seen,1353031657 +99992,7451,High School,1256335565 +99992,7451,Lindsay Lohan,1256335568 +99992,7451,suprisingly clever,1256335578 +99992,7451,Tina Fey,1256335576 +99992,7502,amazon prime,1446174925 +99992,7502,not a movie,1417653249 +99992,7566,sequel,1392398548 +99992,7614,seen,1354060714 +99992,8266,Prince,1264438673 +99992,8366,christian,1368561927 +99992,8529,stranded,1368561837 +99992,8622,conspiracy theory,1368561965 +99992,8665,sequel,1389684653 +99992,8690,Boring,1351994679 +99992,8807,"""potty"" jokes",1256340590 +99992,8807,drugs,1256340599 +99992,8807,Neil Patrick Harris,1256340563 +99992,8807,road trip,1256340606 +99992,8807,Stoner Movie,1256340577 +99992,8807,stupid,1256340574 +99992,8851,satire,1352675423 +99992,8910,Dustin Hoffman,1256335842 +99992,8910,Jude Law,1256335826 +99992,8910,Mark Wahlberg,1256335830 +99992,8910,satire,1256335834 +99992,8914,seen,1355630496 +99992,25763,seen,1354243270 +99992,26003,Holocaust,1264199616 +99992,26003,Poland,1264199618 +99992,26082,netflix queue,1446175431 +99992,26133,seen,1354243400 +99992,26395,Eric Idle,1352675472 +99992,26395,parody,1352675486 +99992,26479,comedy,1257137261 +99992,26479,Gilbert & Sullivan,1257137266 +99992,26479,operetta,1257137246 +99992,26479,pirates,1257137255 +99992,26564,youtube,1354401097 +99992,26674,not a movie,1429294250 +99992,26849,based on a book,1353026123 +99992,26849,Bechdel Test:Pass,1354965768 +99992,26849,youtube,1354965733 +99992,27172,youtube,1354056612 +99992,27251,youtube,1354403786 +99992,27317,youtube,1354313241 +99992,27423,hard drive,1446230944 +99992,27899,seen,1354061903 +99992,27904,Bechdel Test:Fail,1353902313 +99992,30810,Bill Murray,1349476740 +99992,30810,Set design,1349476731 +99992,30810,visually appealing,1349476724 +99992,31903,not seen,1355037238 +99992,32562,youtube,1354418405 +99992,32657,youtube,1445831442 +99992,32840,claymation,1415217530 +99992,32840,dark humor,1415217539 +99992,32840,not a movie,1445895670 +99992,32840,short,1415217525 +99992,32840,stop motion,1445895683 +99992,32840,Vincent Price,1445895664 +99992,32840,youtube,1445895688 +99992,33615,animation,1256340352 +99992,34405,netflix queue,1446174811 +99992,34532,New Orleans,1257136278 +99992,37384,workplace,1256350746 +99992,39052,youtube,1354418503 +99992,39231,boring,1349477716 +99992,39231,love,1349477708 +99992,39231,romantic,1349477721 +99992,39869,netflix queue,1447548606 +99992,40148,guy ritchie,1241157267 +99992,44195,dark comedy,1349477049 +99992,44195,social commentary,1349477052 +99992,45722,Johnny Depp,1241648536 +99992,45722,Orlando Bloom,1241648533 +99992,45722,pirates,1241648540 +99992,46972,Ben Stiller,1256340649 +99992,46972,Dick Van Dyke,1256340655 +99992,46972,Owen Wilson,1256340665 +99992,46972,Robin Williams,1256340668 +99992,47491,Bible,1418121647 +99992,47978,abrupt ending,1380079244 +99992,47978,realistic,1380079225 +99992,48043,Darren Aronofsky,1256341087 +99992,48043,Hugh Jackman,1256341074 +99992,48043,love,1256341094 +99992,48043,visually appealing,1256341100 +99992,48304,historical setting,1256340435 +99992,48427,youtube,1354321531 +99992,48774,netflix queue,1446193703 +99992,49278,youtube,1354661602 +99992,49932,youtube,1354675478 +99992,52975,Amanda Bynes,1241149411 +99992,53519,cars,1256340478 +99992,53519,Quentin Tarantino,1256340492 +99992,53519,slow paced,1256340485 +99992,53956,dark comedy,1349941432 +99992,53956,drugs,1349941426 +99992,54121,youtube,1354417256 +99992,54190,Beatles,1241648267 +99992,54259,pirates,1392888527 +99992,54259,Robert De Niro,1392888517 +99992,54259,romance,1392888514 +99992,54286,sequel,1407700077 +99992,55269,cinematography,1256336630 +99992,55269,Owen Wilson,1256336622 +99992,55269,trains,1256336636 +99992,55269,Wes Anderson,1256336619 +99992,55442,animation,1256341903 +99992,55442,History,1256341912 +99992,55814,based on a true story,1257796307 +99992,55999,children,1264132796 +99992,55999,Dustin Hoffman,1264132784 +99992,55999,Natalie Portman,1264132780 +99992,55999,toys,1264132805 +99992,56079,Gregg Araki,1352675514 +99992,56152,romance,1257796074 +99992,56171,based on a book,1257135829 +99992,56171,fantasy world,1257135857 +99992,56561,youtube,1354402623 +99992,56715,alternate reality,1384213861 +99992,56715,dark comedy,1384213863 +99992,57183,netflix queue,1453508663 +99992,58559,Christian Bale,1257812972 +99992,58559,Heath Ledger,1257812969 +99992,58842,youtube,1353881327 +99992,59725,fashion,1256351952 +99992,59725,infidelity,1256351949 +99992,59725,wedding,1256351958 +99992,59834,youtube,1354403126 +99992,60904,youtube,1447916762 +99992,60950,chick flick,1256351269 +99992,60950,Scarlett Johansson,1256351274 +99992,61024,James Franco,1352675557 +99992,61948,youtube,1354402896 +99992,62956,animation,1354248513 +99992,63062,angelina jolie,1256350984 +99992,63062,period piece,1256350993 +99992,63119,Eugene Hutz,1354315202 +99992,63119,Madonna,1241149361 +99992,63119,social commentary,1354315212 +99992,64285,animation,1241149336 +99992,66354,Bechdel Test:Fail,1354060623 +99992,66354,youtube,1354313278 +99992,67734,Jesse Eisenberg,1256340716 +99992,67734,quirky,1256340732 +99992,67734,Ryan Reynolds,1256340741 +99992,68194,netflix queue,1447908452 +99992,69134,disturbing,1446191718 +99992,69849,seen,1354217100 +99992,70121,youtube,1354400938 +99992,71468,alternate reality,1354314712 +99992,71468,surreal,1354314707 +99992,71468,visually appealing,1354314708 +99992,71494,animation,1401423294 +99992,71494,Rob Zombie,1352675215 +99992,71494,Sheri Moon Zombie,1352675225 +99992,71745,handheld cameras,1257404892 +99992,72393,cinematography,1352498839 +99992,72762,youtube,1352846908 +99992,73017,Guy Ritchie,1353026200 +99992,73314,youtube,1354402456 +99992,73854,seen,1354243464 +99992,73874,youtube,1352847019 +99992,74491,youtube,1354403539 +99992,77177,not a movie,1416355782 +99992,77658,not a movie,1417646738 +99992,77846,youtube,1354404662 +99992,78836,colours,1349464178 +99992,78836,drugs,1349464180 +99992,78836,incest,1349463662 +99992,80549,netflix queue,1447908240 +99992,81562,James Franco,1446771217 +99992,82459,Jeff Bridges,1352939427 +99992,84716,hard drive,1446094399 +99992,85412,mockumentary,1354314790 +99992,85412,religion,1354314803 +99992,86237,not a movie,1417646942 +99992,86237,youtube,1446183096 +99992,86355,adapted from:book,1351359202 +99992,86504,netflix queue,1449697182 +99992,87876,Pixar,1352407694 +99992,88706,youtube,1352847137 +99992,89305,netflix streaming,1446191781 +99992,89745,Robert Downey Jr.,1353026191 +99992,90939,youtube,1354404116 +99992,91500,Bechdel Test:Pass,1365390529 +99992,93498,Ed Harris,1406430154 +99992,93498,Julianne Moore,1406430152 +99992,93498,Woody Harrelson,1406430157 +99992,93572,Ari Gaynor,1351188993 +99992,93855,satire,1352675503 +99992,93855,social comentary,1352675501 +99992,94466,not a movie,1417646708 +99992,94953,awkward,1352675460 +99992,94953,Jennifer Aniston,1352675451 +99992,95441,Bechdel Test:Fail,1354379988 +99992,95441,predictable,1354379889 +99992,95558,Bechdel Test:Pass,1354216737 +99992,95604,netflix streaming,1446182911 +99992,95604,not a movie,1429294728 +99992,95654,not a movie,1429294712 +99992,95761,Emile Hirsch,1351217224 +99992,95761,violent,1354315240 +99992,96075,not a movie,1429294444 +99992,96373,Cillian Murphy,1445138781 +99992,96467,Sundance Winner: Audience Award,1445490975 +99992,97324,based on a book,1386736997 +99992,97386,aaron paul,1350855449 +99992,97761,Colin Hanks,1352601754 +99992,97761,drugs,1352601711 +99992,97763,topic:euthanasia,1354315104 +99992,97906,quirky,1406486552 +99992,98041,mockumentary,1354315081 +99992,98087,Bechdel Test:Fail,1353321008 +99992,98198,youtube,1354401803 +99992,98445,drugs,1354315066 +99992,98523,Bechdel Test:Pass,1354331481 +99992,98523,high school,1354335782 +99992,98532,Danny Trejo,1354394853 +99992,100553,not a movie,1429294327 +99992,102407,Baz Luhrmann,1368593702 +99992,104339,Demetri Martin,1418554108 +99992,104339,Nick Offerman,1418554097 +99992,104374,time travel,1384734742 +99992,104520,not a movie,1446091644 +99992,105037,1990s,1389650004 +99992,106072,Bechdel Test:Pass,1386581176 +99992,106240,Amy Poehler,1385073250 +99992,106240,time travel,1385073236 +99992,106487,costumes,1385709084 +99992,106782,Too Long!,1389464249 +99992,108190,Bechdel Test:Pass,1397449413 +99992,108548,NOT a movie,1416457763 +99992,108548,TV series,1416457746 +99992,108583,not a movie,1417646846 +99992,108932,Chris Pratt,1392876072 +99992,108977,not a movie,1417646883 +99992,108979,not a movie,1417646906 +99992,108983,not a movie,1429294221 +99992,109374,Wes Anderson,1395338937 +99992,109596,amazon,1446093975 +99992,109742,dark comedy,1395992297 +99992,109742,surprise ending,1395992307 +99992,110586,netflix queue,1446656287 +99992,112818,sequel,1406420851 +99992,114552,claymation,1435853307 +99992,115122,comedy,1427748797 +99992,115122,dark comedy,1427748808 +99992,115122,mockumentary,1427748778 +99992,115149,cheesy,1430327587 +99992,115149,lack of story,1430327605 +99992,115149,Revenge,1430327533 +99992,115149,stylish,1430327621 +99992,115149,violent,1430327525 +99992,116797,World War II,1420520585 +99992,116897,netflix queue,1446094858 +99992,120815,amazon prime,1446229927 +99992,126090,youtube,1446923913 +99992,128620,netflix queue,1447097969 +99992,134849,not a movie,1445572305 +99992,139052,amazon prime,1446788572 +99992,140737,not a movie,1447642250 +99992,140737,youtube,1446182576 +99992,145028,No Misfits,1446005920 +99992,146206,youtube,1446656709 +99992,146230,amazon prime,1446835410 +99992,148923,depressing,1450460030 +100028,2571,action,1345178052 +100028,2571,eye opener,1345177962 +100028,2571,kung fu,1345178041 +100028,2571,lucid dreaming,1345177977 +100028,2571,philosophy,1345178035 +100028,2571,virtual reality,1345178021 +100028,4437,evil,1290287603 +100028,4437,hidden passages,1290287603 +100028,4437,witchcraft,1290287603 +100028,4437,witches,1290287603 +100034,55247,great soundtrack,1436530176 +100034,88129,atmospheric,1436529985 +100034,88129,great soundtrack,1436529994 +100034,97938,visual effects,1436530140 +100034,97938,visually appealing,1436530143 +100034,128512,john green,1436529553 +100034,128512,too young,1436529586 +100074,2722,hilarious,1379730554 +100074,2722,ridiculous,1379730549 +100074,2722,Samuel L. Jackson,1379730565 +100074,2722,sharks,1379730557 +100074,4025,Candice Bergen,1379730090 +100074,4025,Chick Flick,1379730080 +100074,4025,comedy,1379730098 +100074,4025,Crime,1379730076 +100074,4025,Sandra Bullock,1379730073 +100074,90576,Anna Faris,1379730127 +100074,90576,sex,1379730132 +100087,260,sci-fi,1441089604 +100087,260,space epic,1441089591 +100119,3175,spoof,1137346590 +100119,32387,samurai,1137346548 +100123,62336,anime,1421962505 +100123,62336,funny,1421962505 +100123,62336,sci-fi,1421962505 +100130,2115,archaeology,1223269559 +100130,2115,Steven Spielberg,1223269567 +100130,6867,depression,1223236022 +100130,6867,dwarf,1223236016 +100130,6867,friendship,1223236027 +100130,6867,interesting characters,1223236024 +100130,6867,trains,1223236030 +100130,44665,Revenge,1224345815 +100130,44665,twist ending,1224345823 +100145,1615,Alaska,1293006062 +100145,1876,plot is beating around the bush,1392843741 +100145,2692,high-pitched screaming,1255309837 +100145,2692,immodest father,1255309752 +100145,3301,non-linear,1285610258 +100145,60609,well transformed from manga to live action,1260301137 +100145,67361,mystery,1257294786 +100145,70687,hybrid of documentary and comedy,1269461947 +100145,76119,many uncorrelated plots,1286842632 +100145,107565,crime,1391640208 +100145,107565,German slang,1391640165 +100145,115713,artificial intelligence,1448313090 +100145,115713,thought provoking,1448313087 +100145,115713,turing test,1448313094 +100191,17,based on a book,1137346413 +100191,17,British,1137346390 +100191,17,classic,1137346390 +100191,17,Jane Austen,1137346390 +100191,45,dark comedy,1137345944 +100191,150,space program,1138015821 +100191,517,based on a book,1137857262 +100191,517,Crime,1137857262 +100191,517,Detective,1137857262 +100191,517,Japan,1137857262 +100191,517,Murder,1137857262 +100191,517,Thriller,1137857262 +100191,904,classic,1137346171 +100191,904,Hitchcock,1137346178 +100191,904,Hollywood,1137346174 +100191,951,classic,1137346152 +100191,951,newspaper theme,1137346152 +100191,1061,prison,1137346066 +100191,1061,true story,1137346066 +100191,1542,British,1137346282 +100191,1680,British,1137346367 +100191,1680,chick flick,1137346367 +100191,1680,remake,1137346367 +100191,2294,Pixar,1137856986 +100191,2628,sequel,1137345953 +100191,2628,space,1137345956 +100191,2671,chick flick,1137346261 +100191,2692,alternate endings,1173213657 +100191,2692,artistic,1173213661 +100191,2692,intense,1173213693 +100191,2692,notable soundtrack,1173213670 +100191,2692,time travel,1173213664 +100191,2731,children,1141989320 +100191,2731,cult,1141989320 +100191,2731,dlinquent,1141989319 +100191,2731,France,1141989319 +100191,2731,neo noir,1141989319 +100191,2731,new wave,1141989320 +100191,2731,Paris,1141989319 +100191,2731,runaway,1141989319 +100191,2731,teacher student relationship,1141989319 +100191,2797,1980s,1138015776 +100191,2797,Child as Adult,1138015766 +100191,2797,New York,1138015766 +100191,3534,alcoholism,1138015922 +100191,3534,rehabilitation,1138015922 +100191,3534,sister sister relationship,1138015922 +100191,3967,ballet,1141989742 +100191,3967,boxing,1141989742 +100191,3967,children,1141989742 +100191,3967,dance,1141989742 +100191,3967,England,1141989741 +100191,3967,father son relationship,1141989742 +100191,3967,friendship between boys,1141989742 +100191,3967,homosexuality,1141989742 +100191,3967,independent film,1141989742 +100191,3967,miners strike,1141989742 +100191,3967,northern England,1141989742 +100191,3967,poverty,1141989741 +100191,3967,self discovery,1141989741 +100191,3967,title spoken by character,1141989742 +100191,4326,1960s,1137856878 +100191,4326,based on a true story,1137856878 +100191,4326,ku klux klan,1137856878 +100191,4782,dating,1141989191 +100191,4782,divorce,1141989191 +100191,4782,independent film,1141989191 +100191,4782,Love Affair,1141989191 +100191,4782,New York,1141989191 +100191,4973,destiny,1141989469 +100191,4973,Drama,1141989469 +100191,4973,fairy tale,1141989469 +100191,4973,good deed,1141989469 +100191,4973,happiness,1141989469 +100191,4973,heroine,1141989469 +100191,4973,idealism,1141989469 +100191,4973,innoncence,1141989469 +100191,4973,Paris,1141989469 +100191,6218,closeted homosexual,1155939366 +100191,6218,culture clash,1155939366 +100191,6218,father daughter relationship,1155939366 +100191,6218,football,1155939366 +100191,6218,hindu,1155939366 +100191,6218,love,1155939366 +100191,6218,marriage,1155939366 +100191,6218,mother daughter relationship,1155939366 +100191,6218,multicultural,1155939366 +100191,6218,soccer,1155939366 +100191,6218,title spoken by character,1155939366 +100191,38798,based on a book,1138016025 +100191,38798,sister sister relationship,1138016025 +100191,40629,1790s,1155939642 +100191,40629,aristrocacy,1155939642 +100191,40629,based on a novel,1155939676 +100191,40629,class conflict,1155939642 +100191,40629,classic,1155939642 +100191,40629,England,1155939676 +100191,40629,family,1155939691 +100191,40629,father daughter relationship,1155939642 +100191,40629,Jane Austen,1155939642 +100191,40629,love,1155939642 +100191,40629,mother daughter relationship,1155939642 +100191,40629,prejudice,1155939642 +100191,40629,sister sister relationship,1155939642 +100191,46578,beauty pageant,1178368288 +100191,46578,dysfunctional,1178368288 +100191,46578,feel good movie,1178368524 +100191,46578,homosexuality,1178368288 +100191,46578,Nietzche,1178368292 +100191,46578,pornography,1178368288 +100191,46578,road movie,1178368288 +100191,46578,title spoken by character,1178368288 +100191,46578,vow of silence,1178368288 +100192,1717,horror,1188265396 +100192,4270,action,1188265375 +100192,4270,adventure,1188265375 +100192,8622,documentary,1188265376 +100192,8622,USA,1188265376 +100213,1393,"""Show me the money.""",1442605574 +100213,1393,show me the money,1442605575 +100213,1921,great soundtrack,1442605666 +100213,1921,mathematics,1442605682 +100213,4993,tolkien,1441304226 +100213,4993,way too long,1441304241 +100213,91529,superhero,1441304062 +100226,1293,India,1147953204 +100250,55253,World War II,1219649152 +100277,589,Rated R,1160249276 +100277,2294,avi,1160248477 +100277,2294,dreamworks,1160248479 +100277,2355,Pixar,1160248483 +100277,3114,Pixar,1160248485 +100277,48516,R,1160959862 +100301,2810,anime,1287913408 +100301,2810,celebrity,1287913419 +100301,2810,cult of persona,1287913415 +100301,3476,nonlinear,1287913331 +100301,3476,Nudity (Topless),1287913317 +100301,3476,occult,1287913309 +100301,3476,twist downer ending,1287913312 +100301,3476,Vietnam War,1287913326 +100321,260,space,1437442397 +100321,260,the force,1437442435 +100328,1879,homosexuality,1245785819 +100328,5367,homosexuality,1245785846 +100343,1193,mental hospital,1437407644 +100343,4533,don't want to see,1437345027 +100343,4533,Funy,1437344999 +100343,4973,imdb top 250,1437344904 +100351,63062,Clint Eastwood,1249333703 +100428,1,animation,1137316553 +100428,1,cgi,1137316553 +100428,47,biblical,1137315738 +100428,47,crime,1137315738 +100428,47,drama,1137315738 +100428,47,twists & turns,1137315738 +100428,110,drama,1137316386 +100428,110,england,1137316386 +100428,110,historical,1137316386 +100428,110,revenge,1137316386 +100428,110,scotland,1137316386 +100428,110,war,1137316386 +100428,150,disaster,1137316358 +100428,150,drama,1137316358 +100428,150,historical,1137317082 +100428,150,moon,1137316358 +100428,150,space,1137316358 +100428,150,suspense,1137316358 +100428,296,action,1137316063 +100428,296,comedy,1137316063 +100428,296,mob,1137316063 +100428,296,off-beat,1137316063 +100428,296,quirky,1137316063 +100428,296,tarantino,1137316063 +100428,318,crime,1137316710 +100428,318,drama,1137316710 +100428,318,prison,1137316710 +100428,318,revenge,1137316710 +100428,356,anthology,1137316183 +100428,356,comedy,1137316183 +100428,356,mental,1137316183 +100428,356,romance,1137316183 +100428,356,war,1137316183 +100428,364,animals,1137317830 +100428,364,animation,1137317830 +100428,364,lions,1137317830 +100428,364,musical,1137317830 +100428,380,action,1137316525 +100428,380,comedy,1137316525 +100428,380,espionage,1137316525 +100428,380,quirky,1137316525 +100428,380,terrorism,1137316525 +100428,457,action,1137318314 +100428,457,crime,1137318314 +100428,457,framed,1137318314 +100428,480,adventure,1137316266 +100428,480,cloning,1137316266 +100428,480,dinosaurs,1137316266 +100428,480,genetics,1137316266 +100428,480,scifi,1137316266 +100428,480,thriller,1137316266 +100428,562,comedy,1137602343 +100428,562,indie,1137602343 +100428,562,quirky,1137602343 +100428,589,action,1137316484 +100428,589,chase,1137316484 +100428,589,future,1137316484 +100428,589,robots,1137316484 +100428,589,scifi,1137316484 +100428,590,historical,1137316998 +100428,590,indians,1137316321 +100428,590,war,1137316321 +100428,590,western,1137316321 +100428,592,action,1137317671 +100428,592,crime,1137317671 +100428,592,future,1137317671 +100428,592,revenge,1137317671 +100428,592,scifi,1137317671 +100428,593,cannibalism,1137317482 +100428,593,crime,1137317482 +100428,593,fbi,1137317482 +100428,593,thriller,1137317482 +100428,608,coen bros,1137317728 +100428,608,crime,1137317728 +100428,608,quirky,1137317728 +100428,608,south dakota,1137317728 +100428,736,adventure,1137317812 +100428,736,tornados,1137317812 +100428,736,weather,1137317812 +100428,780,action,1137316594 +100428,780,aliens,1137316594 +100428,780,invasion,1137316594 +100428,780,scifi,1137316594 +100428,780,war,1137316594 +100428,800,crime,1137318038 +100428,800,mystery,1137318038 +100428,800,texas,1137318038 +100428,858,classic,1137314862 +100428,858,mob,1137314862 +100428,912,bogart,1137317351 +100428,912,classic,1137317351 +100428,912,espionage,1137317351 +100428,912,war,1137317351 +100428,912,wwii,1137317351 +100428,947,classic,1137315030 +100428,947,comedy,1137315030 +100428,947,great depression,1137315030 +100428,947,wealth,1137315030 +100428,950,classic,1137315136 +100428,950,comedy,1137315136 +100428,950,quirky,1137315136 +100428,1215,bruce campbell,1137314713 +100428,1215,comedy,1137314713 +100428,1215,horror,1137314713 +100428,1215,zombies,1137317173 +100428,1245,drama,1137314998 +100428,1245,love,1137314998 +100428,1245,mob,1137314998 +100428,1245,twists & turns,1137314998 +100428,1265,comedy,1137314923 +100428,1265,deja vu,1137314923 +100428,1265,love,1137314923 +100428,1265,surreal,1137314923 +100428,1266,classic,1137315250 +100428,1266,eastwood,1137315250 +100428,1266,showdown,1137315250 +100428,1266,western,1137315250 +100428,1274,action,1137314635 +100428,1274,anime,1137314635 +100428,1274,future,1137314635 +100428,1274,Japan,1137314661 +100428,1274,scifi,1137314635 +100428,1276,classic,1137317610 +100428,1276,drama,1137317610 +100428,1276,prison,1137317610 +100428,1394,comedy,1137315088 +100428,1394,crime,1137315088 +100428,1394,off-beat,1137315088 +100428,1809,art house,1137314833 +100428,1809,drama,1137314833 +100428,1809,japan,1137314833 +100428,1909,action,1137600841 +100428,1909,aliens,1137600841 +100428,1909,conspiracy,1137600841 +100428,1909,scifi,1137600841 +100428,1918,action,1137318999 +100428,1918,buddy,1137318999 +100428,1918,china,1137318999 +100428,1918,comedy,1137318999 +100428,1918,mob,1137318999 +100428,1932,classic,1137314887 +100428,1932,comedy,1137314887 +100428,1932,love,1137314887 +100428,1932,musical,1137314887 +100428,2000,action,1137319007 +100428,2000,buddy,1137319007 +100428,2000,comedy,1137319007 +100428,2001,action,1137319006 +100428,2001,buddy,1137319006 +100428,2001,comedy,1137319006 +100428,2001,gold,1137319006 +100428,2001,south africa,1137319006 +100428,2019,action,1137315111 +100428,2019,drama,1137315111 +100428,2019,historical,1137317112 +100428,2019,Japan,1137317112 +100428,2019,samurai,1137315111 +100428,2019,western,1137315111 +100428,2028,buddy,1137317312 +100428,2028,drama,1137317312 +100428,2028,france,1137317312 +100428,2028,germany,1137317312 +100428,2028,historical,1137317312 +100428,2028,searching,1137319312 +100428,2028,war,1137317312 +100428,2028,wwii,1137317312 +100428,2174,comedy,1137315203 +100428,2174,death,1137315203 +100428,2174,off-beat,1137315203 +100428,2421,drama,1137601603 +100428,2421,japan,1137601603 +100428,2421,martial arts,1137601603 +100428,2841,ghosts,1137399925 +100428,2841,horror,1137399925 +100428,2841,mystery,1137399925 +100428,2918,80s,1137314789 +100428,2918,comedy,1137314789 +100428,2918,teen,1137314789 +100428,2929,drama,1137319448 +100428,2929,journalism,1137319448 +100428,2929,revolution,1137319448 +100428,2929,romance,1137319448 +100428,2959,action,1137315179 +100428,2959,quirky,1137315179 +100428,2959,surreal,1137315179 +100428,2959,twists & turns,1137315179 +100428,3307,comedy,1137315309 +100428,3307,drama,1137315309 +100428,3307,romance,1137315308 +100428,3307,sad,1137315309 +100428,3307,silent movie,1137315309 +100428,3504,comedy,1137319587 +100428,3504,drama,1137319587 +100428,3504,journalism,1137319587 +100428,3508,civil war,1137315425 +100428,3508,classic,1137315425 +100428,3508,eastwood,1137315425 +100428,3508,revenge,1137315626 +100428,3508,western,1137315425 +100428,3629,chaplin,1137318206 +100428,3629,comedy,1137318206 +100428,3629,gold,1137318206 +100428,3629,silent,1137318206 +100428,3753,drama,1137319370 +100428,3753,historical,1137319370 +100428,3753,revolution,1137319370 +100428,3753,usa,1137319370 +100428,3753,war,1137319370 +100428,4105,action,1137315575 +100428,4105,bruce campbell,1137315575 +100428,4105,comedy,1137315575 +100428,4105,horror,1137315581 +100428,4105,off-beat,1137315575 +100428,4105,zombies,1137315575 +100428,4855,crime,1137318002 +100428,4855,eastwood,1137318002 +100428,4855,revenge,1137318002 +100428,5027,action,1137318734 +100428,5027,buddy,1137318734 +100428,5027,comedy,1137318734 +100428,5027,crime,1137318754 +100428,5027,prison,1137318734 +100428,5049,action,1137318733 +100428,5049,buddy,1137318733 +100428,5049,comedy,1137318733 +100428,5049,crime,1137318733 +100428,5049,prison,1137318733 +100428,5299,comedy,1137600785 +100428,5299,greek,1137600785 +100428,5299,romance,1137600785 +100428,5299,wedding,1137600785 +100428,5673,comedy,1137315403 +100428,5673,mental,1137315403 +100428,5673,quirky,1137315403 +100428,5673,romance,1137315403 +100428,6014,action,1137318825 +100428,6014,buddy,1137318825 +100428,6014,comedy,1137318825 +100428,6947,action,1137315553 +100428,6947,england,1137316841 +100428,6947,france,1137316841 +100428,6947,napoleon,1137357573 +100428,6947,sailing,1137315553 +100428,6947,war,1137315553 +100428,7361,comedy,1137315331 +100428,7361,quirky,1137315331 +100428,7361,romance,1137315331 +100428,7361,surreal,1137315331 +100428,7379,historical,1137318088 +100428,7379,mexico,1137318088 +100428,7379,revolution,1137318088 +100428,7379,texas,1137318088 +100428,7379,war,1137318088 +100428,7387,action,1137317222 +100428,7387,horror,1137317222 +100428,7387,zombies,1137317222 +100428,7834,classic,1137315369 +100428,7834,comedy,1137315369 +100428,7834,quirky,1137315369 +100428,8225,horror,1137318661 +100428,8225,suspense,1137318661 +100428,8225,zombies,1137318661 +100428,8874,comedy,1137317068 +100428,8874,england,1137317068 +100428,8874,offbeat,1137317068 +100428,8874,zombies,1137317068 +100428,27801,action,1137315486 +100428,27801,fighting,1137315486 +100428,27801,kickboxing,1137315486 +100428,27801,out-of-water,1137315486 +100428,27801,thailand,1137315486 +100428,27808,family,1137318239 +100428,27808,mexico,1137318239 +100428,27808,romance,1137318239 +100428,33794,action,1137315291 +100428,33794,batman,1137315291 +100428,33794,crime,1137315291 +100428,33794,dark,1137315344 +100428,34319,action,1137317527 +100428,34319,cloning,1137317527 +100428,34319,future,1137317527 +100428,34319,scifi,1137317527 +100428,34405,action,1137315609 +100428,34405,drama,1137315609 +100428,34405,scifi,1137315609 +100428,34405,western,1137372914 +100428,35836,comedy,1137391232 +100428,35836,improv,1137391232 +100428,35836,romance,1137391232 +100428,35836,sex,1137391232 +100428,37477,action,1138034737 +100428,37477,comedy,1138034737 +100428,37477,grun running,1138034737 +100433,3006,Best Performance: Russell Crowe as Jeffrey Wigand,1206783213 +100434,923,overrated,1183084711 +100434,4027,seen more than once,1183084842 +100438,260,in,1431684616 +100438,260,jk,1431684612 +100440,260,old,1442212325 +100440,260,Science Fiction,1442212311 +100440,260,Star Wars,1442212360 +100452,260,exciting,1440043261 +100452,260,good story,1440043310 +100462,260,sci-fi,1432276860 +100462,260,space opera,1432276851 +100510,7,Greg Kinnear,1145738206 +100510,17,historical,1148655606 +100510,17,literature,1148655606 +100510,29,weird,1368274169 +100510,32,great ending,1368274266 +100510,32,original,1368274003 +100510,39,Jane Austen,1149443588 +100510,39,want to own,1145604833 +100510,41,Robert Downey Jr,1150920697 +100510,47,great ending,1368274266 +100510,50,great acting,1368274199 +100510,50,storytelling,1368274053 +100510,57,Robert Downey Jr,1150920675 +100510,70,cult classic,1368274229 +100510,89,Johnny Depp,1153336028 +100510,98,Jude Law,1145738352 +100510,98,want to own,1145738352 +100510,169,family,1368274251 +100510,204,action,1368274135 +100510,232,relationships,1368274158 +100510,235,Johnny Depp,1153335975 +100510,253,literature,1148655468 +100510,253,want to own,1145604956 +100510,288,Robert Downey Jr,1150920587 +100510,289,Robert Downey Jr,1150920615 +100510,318,great acting,1368274199 +100510,318,great ending,1368274266 +100510,318,literature,1148741892 +100510,337,Johnny Depp,1148655621 +100510,347,Hugh Grant,1146814477 +100510,455,family,1368274251 +100510,497,Kenneth Branagh,1149443642 +100510,497,literature,1149443640 +100510,497,Shakespeare,1149429515 +100510,497,want to own,1145604985 +100510,505,Elijah Wood,1186076913 +100510,508,dramatic,1368274122 +100510,527,historical,1148655596 +100510,535,Robert Downey Jr,1150920626 +100510,551,want to own,1145605000 +100510,588,want to own,1145605150 +100510,593,great acting,1368274198 +100510,628,Edward Norton,1151663310 +100510,711,Elijah Wood,1186076936 +100510,714,Johnny Depp,1153335987 +100510,778,Ewan McGregor,1148655524 +100510,778,literature,1148655522 +100510,804,relationships,1368274158 +100510,858,great acting,1368274199 +100510,914,Musical,1148655562 +100510,920,historical,1148655457 +100510,920,literature,1148655457 +100510,920,own it,1145604901 +100510,992,Clive Owen,1188139787 +100510,999,James Spader,1210531213 +100510,1015,family,1368274251 +100510,1016,family,1368274251 +100510,1029,musical,1148655683 +100510,1073,want to own,1145605125 +100510,1089,original,1368274003 +100510,1167,Greg Kinnear,1145738268 +100510,1172,Italian,1141221990 +100510,1175,weird,1368274169 +100510,1199,cerebral,1368274304 +100510,1199,weird,1368274169 +100510,1201,Italian,1141221931 +100510,1210,great ending,1368274266 +100510,1255,cult classic,1368274229 +100510,1262,Richard Attenborough,1149589262 +100510,1262,Steve McQueen,1149589262 +100510,1265,want to own,1145604918 +100510,1307,relationships,1368274158 +100510,1380,want to own,1145604908 +100510,1411,Shakespeare,1148655552 +100510,1411,want to own,1145605158 +100510,1412,Aidan Gillen,1145737925 +100510,1441,Johnny Depp,1153336004 +100510,1464,overrated,1151762446 +100510,1466,mentor,1368274019 +100510,1552,action,1368274135 +100510,1573,John Travolta,1148655698 +100510,1608,action,1368274135 +100510,1617,great acting,1368274199 +100510,1623,horror,1368274242 +100510,1632,Greg Kinnear,1145738286 +100510,1639,relationships,1368274158 +100510,1653,Jude Law,1145605238 +100510,1653,want to own,1145604878 +100510,1685,Jude Law,1145738397 +100510,1685,want to own,1145738397 +100510,1704,mentor,1368274019 +100510,1711,Jude Law,1145605285 +100510,1711,want to own,1145605285 +100510,1722,action,1368274135 +100510,1748,cerebral,1368274304 +100510,1767,Jude Law,1145738371 +100510,1767,want to own,1145738371 +100510,1784,Greg Kinnear,1145738170 +100510,1792,Robert Downey Jr.,1186495496 +100510,1816,Robert Downey Jr.,1186076971 +100510,1991,horror,1368274242 +100510,2060,Trey Parker,1147792975 +100510,2076,weird,1368274170 +100510,2134,Robert Downey Jr,1150920641 +100510,2167,action,1368274135 +100510,2231,Edward Norton,1151663302 +100510,2262,relationships,1368274158 +100510,2282,Edward Furlong,1151663389 +100510,2291,Johnny Depp,1153335979 +100510,2291,original,1368274003 +100510,2315,horror,1368274242 +100510,2324,Italian,1141221965 +100510,2325,Trey Parker,1147792907 +100510,2329,Edward Furlong,1151663344 +100510,2329,Edward Norton,1151663253 +100510,2371,comedy,1368274041 +100510,2420,mentor,1368274019 +100510,2424,Greg Kinnear,1145738219 +100510,2437,gay,1158912573 +100510,2437,Jude Law,1145605310 +100510,2437,Oscar Wilde,1145605310 +100510,2437,want to own,1145605310 +100510,2437,well cast,1158912571 +100510,2446,Robert Downey Jr.,1186077023 +100510,2460,horror,1368274242 +100510,2565,Rita Moreno,1162731789 +100510,2600,Jude Law,1145605341 +100510,2600,want to own,1145605341 +100510,2657,musical,1149443663 +100510,2657,want to own,1145605047 +100510,2690,Rupert Everett,1156108380 +100510,2700,Trey Parker,1147792980 +100510,2700,want to buy,1147792949 +100510,2723,Greg Kinnear,1145738243 +100510,2729,literature,1148655481 +100510,2762,great ending,1368274266 +100510,2770,Robert Downey Jr,1147934403 +100510,2772,Edward Furlong,1151663405 +100510,2804,i like watching this movie when im so high i dont know left from right,1150651323 +100510,2858,great acting,1368274198 +100510,2951,Italian,1141221944 +100510,2959,Edward Norton,1151663312 +100510,3018,horror,1368274242 +100510,3081,Johnny Depp,1153336022 +100510,3089,Italian,1141222089 +100510,3102,lame ending,1242467651 +100510,3148,literature,1148655654 +100510,3148,Tobey Maguire,1148655654 +100510,3157,family,1368274251 +100510,3176,Jude Law,1145605245 +100510,3176,want to own,1145605186 +100510,3178,John Hannah,1168339101 +100510,3264,comedy,1358630164 +100510,3264,parody (lite),1358630156 +100510,3264,worse than the show,1358630149 +100510,3317,college,1283113251 +100510,3317,Gay,1283113254 +100510,3317,literature,1283113238 +100510,3317,Michael Douglas,1283113243 +100510,3317,own it,1145605133 +100510,3317,Robert Downey Jr,1283113236 +100510,3317,Tobey Maguire,1283113246 +100510,3326,Greg Kinnear,1145738260 +100510,3421,comedy,1368274041 +100510,3455,Aidan Gillen,1145737951 +100510,3466,Robert Downey Jr,1150920602 +100510,3536,Edward Norton,1148197243 +100510,3624,Owen Wilson,1145649056 +100510,3681,Italian,1141221954 +100510,3783,Clive Owen,1176644125 +100510,3796,Jude Law,1145738412 +100510,3796,want to own,1145738412 +100510,3808,Italian,1141222073 +100510,3841,Robert Downey Jr,1150920565 +100510,3857,Rufus Sewell,1153551437 +100510,3893,Greg Kinnear,1145737874 +100510,3948,Owen Wilson,1180338072 +100510,3986,action,1368274135 +100510,3992,Italian,1141222165 +100510,3996,Kamala,1137156283 +100510,3997,Jeremy Irons,1186076899 +100510,4014,Johnny Depp,1153336034 +100510,4126,Robert Downey Jr.,1186077037 +100510,4128,cult classic,1368274229 +100510,4223,good war movie,1189889558 +100510,4223,Jude Law,1145605318 +100510,4223,want to own,1145605318 +100510,4231,Greg Kinnear,1145738250 +100510,4239,Johnny Depp,1171747281 +100510,4258,Aidan Gillen,1145737944 +100510,4279,Robert Downey Jr,1150920666 +100510,4370,Jude Law,1145738386 +100510,4370,want to own,1145738386 +100510,4516,Robert Downey Jr.,1186076925 +100510,4725,horror,1368274242 +100510,4848,overrated,1151762444 +100510,4865,Johnny Depp,1150383500 +100510,4878,cerebral,1368274304 +100510,4878,original,1368274003 +100510,4878,weird,1368274169 +100510,4958,Owen Wilson,1201466603 +100510,4979,Owen Wilson,1148655580 +100510,5064,historical,1148655437 +100510,5064,literature,1148655437 +100510,5152,Greg Kinnear,1145738183 +100510,5218,own it,1145604946 +100510,5279,Hugh Grant,1176644247 +100510,5377,literature,1148655539 +100510,5391,ensemble cast,1283113597 +100510,5391,Matthew McConaughey,1283113603 +100510,5452,family,1368274251 +100510,5612,Stuart Townsend,1186076962 +100510,5617,James Spader,1151594917 +100510,5617,want to own,1145605056 +100510,5618,want to own,1145605110 +100510,5673,weird,1368274169 +100510,5680,Greg Kinnear,1145738191 +100510,5791,historical,1148655707 +100510,5803,Owen Wilson,1191265805 +100510,5816,want to own,1145604926 +100510,5907,Italian,1141222103 +100510,5954,Edward Norton,1148655628 +100510,5987,Jude Law,1145738404 +100510,5995,dramatic,1368274121 +100510,5995,historical,1148655507 +100510,6140,Italian,1141221997 +100510,6144,Italian,1141222153 +100510,6156,Aidan Gillen,1145737934 +100510,6156,Owen Wilson,1145737934 +100510,6188,comedy,1368274041 +100510,6539,Johnny Depp,1153335982 +100510,6539,want to own,1145605025 +100510,6651,Elijah Wood,1186076985 +100510,6662,want to own,1145605016 +100510,6709,Johnny Depp,1153336025 +100510,6710,Adrien Brody,1163888292 +100510,6756,Rita Moreno,1162731798 +100510,6863,Musical,1172061444 +100510,6874,want to own,1145604963 +100510,6892,Robert Downey Jr,1150920685 +100510,6947,historical,1148655491 +100510,6957,surprisingly funny,1166475924 +100510,7067,Italian,1141222124 +100510,7115,Italian,1141222062 +100510,7147,Ewan McGregor,1148197817 +100510,7147,story,1368274288 +100510,7162,historical,1148655664 +100510,7162,Jude Law,1145605261 +100510,7162,literature,1148655664 +100510,7162,want to own,1145738328 +100510,7234,Italian,1141222081 +100510,7326,Paul Bettany,1159256745 +100510,7361,want to own,1145604868 +100510,7449,Greg Kinnear,1145738279 +100510,7618,Robert Downey Jr,1150920705 +100510,7767,Italian,1141221844 +100510,8154,Italian,1141222113 +100510,8195,Italian,1141222137 +100510,8495,Edward Furlong,1153075105 +100510,8527,Clive Owen,1147624535 +100510,8527,Jonathan Rhys Meyers,1147624535 +100510,8641,comedy,1368274041 +100510,8652,Rita Moreno,1162731807 +100510,8739,Italian,1141222096 +100510,8755,Italian,1186259483 +100510,8792,Jonathan Rhys Meyers,1223206597 +100510,8848,Italian,1141222053 +100510,8865,Jude Law,1145605367 +100510,8865,want to own,1145605367 +100510,8866,Paul Bettany,1158912560 +100510,8910,Jude Law,1145605267 +100510,8910,want to own,1145738334 +100510,8917,Trey Parker,1147792969 +100510,8948,Jude Law,1145605254 +100510,8948,want to own,1145605254 +100510,8970,Johnny Depp,1153336018 +100510,8981,Clive Owen,1145605230 +100510,8981,Jude Law,1145605230 +100510,8981,relationships,1368274158 +100510,8981,want to own,1145604823 +100510,25899,Musical,1176407992 +100510,25951,Musical,1173453127 +100510,25961,Gregory Peck,1173453045 +100510,26294,Italian,1141563614 +100510,26483,Musical,1221570751 +100510,26497,Rupert Everett,1159354980 +100510,26564,Musical,1173453027 +100510,27410,Kenneth Branagh,1157178672 +100510,27706,Jude Law,1145605274 +100510,27706,want to own,1145605274 +100510,27788,Adrien Brody,1249676079 +100510,27788,Daniel Craig,1249676114 +100510,27788,Keira Knightley,1249676100 +100510,27788,time travel,1249676075 +100510,30793,Johnny Depp,1153336011 +100510,30812,Jude Law,1145605356 +100510,30812,want to own,1145605356 +100510,31658,want to own,1145604941 +100510,31973,Italian,1173453057 +100510,32031,Poor plot development,1254346437 +100510,32031,Robin Williams,1254346380 +100510,32031,Vulgar jokes,1254346417 +100510,32587,Clive Owen,1146814461 +100510,32649,Italian,1183195117 +100510,33004,literature,1149443616 +100510,33166,overrated,1151397104 +100510,33171,literature,1148655498 +100510,33171,want to own,1145604992 +100510,34321,Greg Kinnear,1145738233 +100510,34338,Matt Stone,1153293895 +100510,34338,Trey Parker,1153293895 +100510,36535,Elijah Wood,1145688417 +100510,37731,Elijah Wood,1152310043 +100510,38061,Robert Downey Jr,1150920510 +100510,38994,Rupert Everett,1160653639 +100510,39292,Robert Downey Jr,1146949315 +100510,39869,Lars Von Trier,1145775763 +100510,39886,Jason Isaacs,1146860211 +100510,40817,Greg Kinnear,1164098899 +100510,40826,musical,1169334106 +100510,41569,Adrian Brody,1148655723 +100510,41716,Greg Kinnear,1145738176 +100510,43333,bollywood,1147934364 +100510,43871,Paul Bettany,1146860152 +100510,44195,satire,1158855998 +100510,44199,Clive Owen,1146860108 +100510,44399,Robert Downey Jr,1146949245 +100510,44759,Hugh Dancy,1149830420 +100510,44761,Joseph Gordon-Levitt,1147423270 +100510,44889,Musical,1199454947 +100510,45028,Musical,1147934319 +100510,45106,Hugh Grant,1145775741 +100510,45447,literature,1149054668 +100510,45447,Paul Bettany,1147934331 +100510,45499,Hugh Jackman,1147934294 +100510,45722,Johnny Depp,1153335997 +100510,45726,Owen Wilson,1153551090 +100510,45880,historical,1162540656 +100510,46530,Kevin Spacey,1151480781 +100510,46578,Greg Kinnear,1155626003 +100510,46967,Hugh Jackman,1154886501 +100510,47493,Musical,1173453219 +100510,47610,Edward Norton,1156499162 +100510,47644,Greg Kinnear,1156499144 +100510,47950,Adrien Brody,1157788241 +100510,48032,Italian,1202316853 +100510,48043,Hugh Jackman,1165505891 +100510,48326,Jude Law,1159355009 +100510,48516,original,1368274003 +100510,48522,Damian Lewis,1160653671 +100510,48738,James McAvoy,1165505866 +100510,48774,Charlie Hunnam,1167387887 +100510,48774,Chiwetel Ejiofor,1167387887 +100510,48774,Clive Owen,1167387887 +100510,48774,Michael Caine,1167387887 +100510,48780,Hugh Jackman,1161762149 +100510,48783,Ryan Phillippe,1162540625 +100510,48856,Robert Downey Jr.,1173453112 +100510,49205,Sarah Michelle Gellar,1163583956 +100510,49265,Hugh Dancy,1201777050 +100510,49280,Elijah Wood,1164191631 +100510,49282,Matthew Broderick,1164098910 +100510,49286,Jude Law,1167408941 +100510,49347,Greg Kinnear,1164098945 +100510,49524,surprisingly good,1166110376 +100510,49649,Jeremy Irons,1167387901 +100510,49666,Robert Downey Jr,1201115355 +100510,50064,George Clooney,1167387853 +100510,50064,Tobey Maguire,1167387853 +100510,50160,Ewan McGregor,1168338334 +100510,50253,Biblical,1174039615 +100510,50442,Justin Timberlake,1168338275 +100510,50796,Hugh Dancy,1170314075 +100510,51084,Hugh Grant,1171523752 +100510,51091,Justin Timberlake,1173453301 +100510,51471,Ioan Gruffudd,1174039435 +100510,51540,Robert Downey Jr.,1173178112 +100510,51694,James McAvoy,1173453151 +100510,51834,James McAvoy,1184919102 +100510,51925,plot holes,1283113429 +100510,52241,Joseph Gordon-Levitt,1175849230 +100510,52545,Justin Kirk,1202316901 +100510,52668,Adam Brody,1184919091 +100510,52975,Musical,1183195125 +100510,53123,Musical,1179471954 +100510,53125,Johnny Depp,1181847234 +100510,54094,Rupert Grint,1202316925 +100510,54281,Robert Downey Jr.,1184919125 +100510,54513,Chiwetel Ejiofor,1191265334 +100510,54513,Don Cheadle,1191265334 +100510,54999,Clive Owen,1189164884 +100510,55110,Daniel Radcliffe,1202316989 +100510,55269,Adrien Brody,1192347168 +100510,55269,Owen Wilson,1192347168 +100510,55280,Ryan Gosling,1192347225 +100510,55451,Hugh Dancy,1202316844 +100510,55765,Chiwetel Ejiofor,1193224212 +100510,55872,Musical,1195637456 +100510,56152,Musical,1195637461 +100510,56367,overrated,1202246135 +100510,56757,Johnny Depp,1199454993 +100510,56757,Musical,1199454993 +100510,57368,Drew Goddard,1201115386 +100510,58107,Musical,1210178373 +100510,58154,Henry VIII and Anne Boleyn,1222876678 +100510,58655,Owen Wilson,1207824109 +100510,58876,Joseph Gordon-Levitt,1207824081 +100510,58876,Ryan Philippe,1207824081 +100510,59256,Hugh Jackman,1209314193 +100510,59315,Robert Downey Jr.,1210178341 +100510,59709,Elijah Wood,1225261195 +100510,59985,Stuart Townsend,1215184055 +100510,60046,Jonathan Rhys Meyers,1213429628 +100510,60072,James McAvoy,1214581042 +100510,60684,visually appealing,1368274186 +100510,61818,David Boreanaz,1223564491 +100510,61818,Edward Furlong,1223564491 +100510,63876,Is Sean Penn not too old?,1252001669 +100510,68135,Zac Efron,1241380118 +100510,68319,bad cgi,1241727655 +100510,68319,Hugh Jackman,1241727655 +100510,68319,too many characters,1241727655 +100510,68513,Cheap copy of original,1242140444 +100510,68513,Gratuitous sex,1242140464 +100510,68513,Ron Melendez looks good,1242140497 +100510,73017,Jude Law,1265919652 +100510,73017,Robert Downey Jr.,1265919652 +100510,74789,Stephen Fry,1271009354 +100510,78039,CRUMBLING MARRIAGES,1358629772 +100510,78039,great performances,1358629781 +100510,78039,grim,1358629803 +100510,78039,marriage,1358629805 +100510,78039,Michelle Williams,1358629783 +100510,78039,powerful,1358629801 +100510,78039,realism,1358629798 +100510,78039,Ryan Gosling,1358629785 +100510,78039,slow moving plot,1358629791 +100510,78039,unlikeable characters,1358629793 +100510,86882,Adrien Brody,1314731691 +100510,86882,magical realism,1314731718 +100510,89804,Evan Rachel Wood,1321554274 +100510,89804,plot holes,1321554295 +100510,89904,Berenice Bejo,1327264567 +100510,89904,Jean Dujardin,1327264580 +100510,91542,Jude Law,1326714418 +100510,91542,Noomi Rapace,1326714413 +100510,91542,Robert Downey Jr.,1326714418 +100510,93840,Fran Kranz,1334313230 +100510,93840,funny,1334313266 +100510,93840,meta,1334313278 +100510,99149,Anne Hathaway,1357929010 +100510,99149,Close-ups,1357928941 +100510,99149,Hugh Jackman,1357929032 +100510,99149,musical,1357929021 +100510,99149,Russell Crowe,1357929035 +100510,99149,shaky camera,1357928945 +100510,103027,Amy Acker,1371232908 +100510,104319,based on a true story,1376826162 +100510,112852,great soundtrack,1409434854 +100510,112852,Joss Whedon,1409434833 +100510,112852,Teamwork,1409434861 +100510,112852,violent,1409434864 +100517,7254,time travel,1225298299 +100557,260,space,1439757312 +100557,260,space adventure,1439757315 +100560,1148,gret,1142414329 +100577,1,cgi,1434160994 +100577,1,children,1434160994 +100577,1,toys,1434160994 +100577,260,harrison ford,1427745785 +100577,260,sci-fi,1427745785 +100577,260,star wars,1427745785 +100577,62434,plot:romance during porno shoot,1247485127 +100577,62434,poor acting,1247485143 +100577,62434,Sex Comedy,1247485115 +100579,4447,Reese Witherspoon,1230242275 +100600,260,good vs evil,1431984849 +100600,260,Science Fiction,1431984835 +100603,410,Silly,1149395697 +100612,4993,fantasy,1281883967 +100612,5008,courtroom drama,1281883888 +100612,8873,politics,1281883992 +100612,8873,true story,1281883997 +100612,27773,disturbing,1281883828 +100612,48394,surreal,1281883857 +100612,55765,drugs,1281884042 +100612,68194,football,1281883684 +100660,90413,based on true story,1438594630 +100660,90413,foster home,1438594630 +100660,90413,strong female lead,1438594630 +100660,122882,action,1434588403 +100660,122882,appocalypse,1434588403 +100660,122882,car chase,1434588403 +100660,130382,based on a book,1437007335 +100660,130382,civil war,1437007335 +100660,130382,violence to children,1437007335 +100664,8665,Robert Ludlum,1200613575 +100664,54286,Robert Ludlum,1200613556 +100664,55253,Nudity (Full Frontal - Notable),1191529010 +100668,260,classic sci-fi,1443048823 +100668,260,space adventure,1443048836 +100668,520,Mel Brooks movie,1443049286 +100668,2006,action,1443050098 +100672,1120,comedy,1186349342 +100672,1120,drama,1186349342 +100672,4848,surreal drama,1186349414 +100672,4975,fantasy thriller,1186349441 +100672,6218,family tolerance,1186349474 +100680,3852,Romance,1137979687 +100685,253,boring,1166396497 +100685,924,boring,1166396375 +100698,356,adapted from:book,1297877245 +100698,356,based on a book,1297877240 +100698,356,classic,1297877248 +100698,356,comedy,1297877251 +100698,356,Oscar (Best Directing),1297877275 +100698,356,Oscar (Best Picture),1297877272 +100698,356,Tom Hanks,1297877269 +100698,356,vietnam war,1297877262 +100698,356,war,1297877264 +100698,4878,alternate timeline,1297877045 +100698,4878,mental illness,1297877090 +100698,4878,psychology,1297877101 +100698,4878,satirical,1297877083 +100698,4878,sci-fi,1297877112 +100698,4878,surreal,1297877063 +100698,4878,time travel,1297877104 +100698,8131,NOT WILL SMITH,1297876995 +100705,32,complicated,1160083507 +100705,32,Interesting,1160083507 +100705,186,cheesy,1160083433 +100705,968,romero original,1166859210 +100705,1092,no theme,1160083459 +100705,2530,WTF? horrible sequel and storyboard,1263368106 +100705,4009,texas,1163898384 +100705,4148,cruel,1160086150 +100705,4148,florence,1160086126 +100705,5065,moth,1164928021 +100705,5065,west wirginia,1164928021 +100711,6902,Owned,1163997317 +100716,141,gay parenting,1261754824 +100716,141,Gay stereotypes,1261754807 +100716,141,homosexual theme,1261754810 +100716,2721,positive portyayal of gay relationships,1252887754 +100716,4342,positive portrayal of gay relationships,1255236310 +100716,6369,gay couple,1252866425 +100716,6369,gay stereotypes,1252866448 +100716,6369,mafia,1252866429 +100716,6369,militia,1252866433 +100716,6369,positive portrayal of gay relationship,1252866455 +100716,7147,production number,1252866530 +100743,47099,based on a true story,1445601138 +100743,47099,inspirational,1445601141 +100743,47099,Motivation,1445601145 +100743,47099,Will Smith,1445601136 +100743,74458,Leonardo DiCaprio,1445601018 +100743,74458,mindfuck,1445601030 +100743,74458,plot twist,1445601026 +100749,1092,Erotic,1437435202 +100749,1092,Notable Nudity,1437435216 +100749,1092,Sharon Stone,1437435206 +100749,8690,author:Kurt Vonnegut,1437434162 +100749,8690,Kurt Vonnegut,1437434156 +100749,8690,vonnegut,1437434149 +100749,32460,heaven,1438726994 +100749,32460,purpose in life,1438726994 +100749,32460,terminal illness,1438726994 +100749,41285,clever,1437698973 +100749,135166,reason to live,1436998852 +100749,135166,Shawn Christensen,1436998844 +100749,135166,short,1436998856 +100750,260,adventure,1439636570 +100750,260,Science Fiction,1439636596 +100753,260,classic sci-fi,1437183767 +100753,260,good vs evil,1437183758 +100753,130073,ballroom dancing,1437184764 +100753,130073,fairy tale romance,1437184764 +100753,130073,feel-good,1437184764 +100756,541,best movie ever,1345005563 +100756,541,classic,1345005614 +100772,27700,foreign language,1357299768 +100797,260,epic adventure,1437856536 +100797,260,good action fantasy,1437856527 +100822,778,drugs,1424872523 +100822,3462,noir,1424872563 +100825,260,Science Fiction,1442164459 +100825,260,space adventure,1442164468 +100857,19,detective,1368798381 +100857,22,detective,1368798381 +100857,22,suspenseful,1368798310 +100857,32,great ending,1368798356 +100857,32,original,1368775153 +100857,39,teen movie,1368798297 +100857,47,great ending,1368798356 +100857,47,Owned,1137364314 +100857,50,excellent script,1368788487 +100857,111,masterpiece,1368775239 +100857,288,brutality,1368798321 +100857,296,masterpiece,1368775239 +100857,318,great ending,1368798356 +100857,318,Owned,1137364279 +100857,521,noir thriller,1368775206 +100857,587,supernatural,1368788474 +100857,799,supernatural,1368788474 +100857,913,noir thriller,1368775207 +100857,923,masterpiece,1368775239 +100857,924,masterpiece,1368775240 +100857,1088,dancing,1368798347 +100857,1089,original,1368775153 +100857,1179,neo-noir,1368798334 +100857,1188,dancing,1368798347 +100857,1210,great ending,1368798356 +100857,1213,masterpiece,1368775239 +100857,1213,stylish,1368788502 +100857,1219,suspenseful,1368798310 +100857,1241,splatter,1368788529 +100857,1248,noir thriller,1368775206 +100857,1258,masterpiece,1368775240 +100857,1271,unlikely friendships,1368798368 +100857,1275,mentor,1368775228 +100857,1285,teen movie,1368798297 +100857,1307,unlikely friendships,1368798368 +100857,1527,Owned,1137364104 +100857,1590,Owned,1137364233 +100857,1617,detective,1368798381 +100857,1620,detective,1368798381 +100857,1704,mentor,1368775228 +100857,1754,Owned,1137364300 +100857,1754,supernatural,1368788475 +100857,1783,noir thriller,1368775206 +100857,1968,teen movie,1368798297 +100857,2291,original,1368775153 +100857,2329,Owned,1137364219 +100857,2394,Owned,1137364309 +100857,2420,mentor,1368775228 +100857,2485,Owned,1137364316 +100857,2542,stylish,1368788502 +100857,2707,Owned,1137364222 +100857,2726,noir thriller,1368775206 +100857,2762,great ending,1368798356 +100857,2841,supernatural,1368788475 +100857,2858,excellent script,1368788487 +100857,2859,musicians,1368788566 +100857,2863,musicians,1368788566 +100857,2866,musicians,1368788566 +100857,2959,Owned,1137364236 +100857,3005,detective,1368798381 +100857,3147,Owned,1137364240 +100857,3275,Owned,1137364227 +100857,3300,Owned,1137364271 +100857,3499,suspenseful,1368798310 +100857,3791,dancing,1368798347 +100857,4020,supernatural,1368788475 +100857,4054,dancing,1368798347 +100857,4144,melancholic,1368775175 +100857,4878,original,1368775153 +100857,4993,Owned,1137364254 +100857,5065,supernatural,1368788474 +100857,5266,suspenseful,1368798310 +100857,5693,dancing,1368798347 +100857,5952,Owned,1137364260 +100857,6333,Owned,1137364289 +100857,6365,Owned,1137364264 +100857,6539,Owned,1137364268 +100857,6902,Owned,1137364250 +100857,7013,noir thriller,1368775207 +100857,7153,great ending,1368798356 +100857,7153,Owned,1137364257 +100857,7317,Owned,1137364229 +100857,7773,Owned,1137364224 +100857,8636,Owned,1137364281 +100857,8808,Bad,1137364102 +100857,8947,Owned,1137364244 +100857,32587,brutality,1368798321 +100857,34437,melancholic,1368775175 +100857,37733,brutality,1368798321 +100857,39231,Bad,1138915672 +100857,39446,Mystery,1137363947 +100857,39446,Scary,1137363947 +100857,40723,Bad,1137363903 +100857,41573,Bad,1137364023 +100857,48304,brutality,1368798321 +100857,53123,musicians,1368788566 +100869,5971,Japan,1139097875 +100869,5971,Miyazaki,1139097875 +100869,6377,animation,1139097609 +100869,6377,Pixar,1139097609 +100869,8961,animation,1139097633 +100869,8961,Pixar,1139097633 +100886,16,Martin Scorsese,1141823656 +100886,19,Jim Carrey,1141818346 +100886,22,serial killer,1141824969 +100886,25,Nicolas Cage,1141820675 +100886,25,Oscar (Best Actor),1141817992 +100886,32,Brad Pitt,1141816506 +100886,32,end of the world,1141816511 +100886,32,time travel,1141816513 +100886,34,pigs,1141817508 +100886,39,Alicia Silverstone,1141817963 +100886,39,best comedy,1141820645 +100886,39,romance,1141820645 +100886,47,Brad Pitt,1143157797 +100886,48,Disney,1141824702 +100886,145,Will Smith,1141825062 +100886,150,space,1141818953 +100886,150,Tom Hanks,1141818951 +100886,158,family,1141824671 +100886,165,Bruce Willis,1141817348 +100886,175,teenagers,1147382740 +100886,185,Sandra Bullock,1141818023 +100886,186,hugh grant,1141824815 +100886,231,Jim Carrey,1141817539 +100886,253,Brad Pitt,1141820555 +100886,253,Tom Cruise,1141820552 +100886,253,vampire,1141817654 +100886,296,Quentin Tarantino,1141817174 +100886,318,prison,1141819665 +100886,318,Stephen King,1141819662 +100886,337,Johnny Depp,1141823724 +100886,337,Leonardo DiCaprio,1141823724 +100886,342,comedy,1141824786 +100886,344,Jim Carrey,1141817369 +100886,356,Oscar (Best Picture),1168382674 +100886,356,Tom Hanks,1168382674 +100886,357,wedding,1141817715 +100886,364,Disney,1141817418 +100886,367,Jim Carrey,1141820521 +100886,370,comedy,1141824340 +100886,377,Keanu Reeves,1141817319 +100886,377,Sandra Bullock,1141817316 +100886,380,Arnold Schwarzenegger,1141819711 +100886,380,James Cameron,1141819698 +100886,434,Renny Harlin,1141817808 +100886,434,Sylvester Stallone,1141820532 +100886,442,Sylvester Stallone,1141818508 +100886,442,Wesley Snipes,1141818512 +100886,454,John Grisham,1141817686 +100886,454,Tom Cruise,1141820595 +100886,466,Charlie Sheen,1141824446 +100886,466,comedy,1141824446 +100886,480,Steven Spielberg,1141817216 +100886,485,Arnold Schwarzenegger,1141824895 +100886,500,Robin Williams,1141817518 +100886,508,AIDs,1141818415 +100886,539,boring,1141819903 +100886,539,Meg Ryan,1141817843 +100886,539,Tom Hanks,1141817840 +100886,540,Sharon Stone,1141822732 +100886,543,comedy,1141824617 +100886,586,christmas,1141818069 +100886,586,family,1141820920 +100886,587,Patrick Swayze,1141817769 +100886,587,romance,1141820508 +100886,588,disney,1141819759 +100886,592,superhero,1141819631 +100886,593,Hannibal Lector,1141817189 +100886,594,Disney,1141816118 +100886,595,Disney,1141817307 +100886,597,Julia Roberts,1141817485 +100886,648,Tom Cruise,1141817358 +100886,733,Alcatraz,1141817468 +100886,733,Nicolas Cage,1141817470 +100886,736,Helen Hunt,1141817529 +100886,778,drugs,1141818594 +100886,778,Ewan McGregor,1141818589 +100886,780,end of the world,1141817276 +100886,784,Jim Carrey,1141820251 +100886,788,Eddie Murphy,1141818326 +100886,802,John Travolta,1141824415 +100886,832,Mel Gibson,1141824084 +100886,920,Oscar (Best Actress),1141824013 +100886,920,Oscar (Best Picture),1141824010 +100886,1035,musical,1141824587 +100886,1035,Oscar (Best Directing),1141824591 +100886,1035,Oscar (Best Picture),1141824589 +100886,1036,Bruce Willis,1141820895 +100886,1059,Leonardo DiCaprio,1141819578 +100886,1088,dance,1141826152 +100886,1088,Patrick Swayze,1141826152 +100886,1088,romance,1141826152 +100886,1092,Sharon Stone,1141822686 +100886,1097,family,1141817558 +100886,1101,romance,1141823446 +100886,1101,Tom Cruise,1141823446 +100886,1183,Oscar (Best Picture),1141823689 +100886,1183,Oscar (Best Supporting Actress),1141823691 +100886,1183,war,1141823790 +100886,1219,Alfred Hitchcock,1141823810 +100886,1240,Arnold Schwarzenegger,1141820760 +100886,1240,James Cameron,1141820758 +100886,1240,sci-fi,1141820784 +100886,1246,High School,1141823599 +100886,1246,Robin Williams,1141823596 +100886,1259,River Phoenix,1141818406 +100886,1265,Bill Murray,1141817903 +100886,1270,Michael J. Fox,1141816112 +100886,1370,Renny Harlin,1141824262 +100886,1377,superhero,1141822656 +100886,1380,John Travolta,1141824146 +100886,1380,musical,1141824144 +100886,1381,high school,1147024048 +100886,1381,musical,1147024065 +100886,1387,shark,1141818458 +100886,1393,comedy,1141823311 +100886,1393,show me the money,1141823311 +100886,1393,Tom Cruise,1141823311 +100886,1485,jim carrey,1141816071 +100886,1485,lawyer,1141816068 +100886,1513,comedy,1147024094 +100886,1544,dinosaurs,1141824649 +100886,1544,Steven Spielberg,1141824651 +100886,1552,Nicolas Cage,1141822633 +100886,1552,prison,1141822623 +100886,1573,John Travolta,1141817053 +100886,1573,Nicolas Cage,1141823940 +100886,1580,Will Smith,1141820807 +100886,1645,Al Pacino,1141822597 +100886,1645,Keanu Reeves,1141822597 +100886,1645,lawyers,1141817033 +100886,1673,Mark Wahlberg,1141824879 +100886,1676,future,1141824534 +100886,1682,Jim Carrey,1141822559 +100886,1682,Peter Weir,1141822562 +100886,1704,Ben Affleck,1141818129 +100886,1704,Matt Damon,1141818129 +100886,1704,Robin Williams,1141818135 +100886,1721,James Cameron,1141816944 +100886,1721,Leonardo DiCaprio,1141820745 +100886,1721,Oscar (Best Picture),1141816947 +100886,1721,romance,1141820745 +100886,1917,Ben Affleck,1141823641 +100886,1917,Bruce Willis,1141823645 +100886,1917,space,1141823643 +100886,1923,boring,1141816987 +100886,1961,Dustin Hoffman,1141820958 +100886,1961,Oscar (Best Actor),1141820937 +100886,1961,Oscar (Best Picture),1141816910 +100886,1961,Tom Cruise,1141820958 +100886,1968,80s,1141818391 +100886,2011,Michael J. Fox,1141822447 +100886,2012,Michael J. Fox,1141825404 +100886,2054,family,1141824220 +100886,2080,Disney,1141816714 +100886,2081,Disney,1141825165 +100886,2145,high school,1147023820 +100886,2167,vampire,1141822768 +100886,2167,Wesley Snipes,1141822768 +100886,2268,court,1141824458 +100886,2268,Tom Cruise,1141822385 +100886,2291,family,1141824047 +100886,2291,Johnny Depp,1141824047 +100886,2294,animation,1141819544 +100886,2302,court,1141824547 +100886,2302,Oscar (Best Supporting Actress),1141822432 +100886,2383,comedy,1141820366 +100886,2455,horror,1141816802 +100886,2541,Ryan Philippe,1141819246 +100886,2571,sci-fi,1141817431 +100886,2581,Drew Barrymore,1147024019 +100886,2581,high school,1147023864 +100886,2628,George Lucas,1141820818 +100886,2657,musical,1141824803 +100886,2671,Hugh Grant,1141825044 +100886,2671,Julia Roberts,1141825046 +100886,2683,HEH,1141818318 +100886,2683,Mike Myers,1141818321 +100886,2699,spiders,1141824718 +100886,2700,HEH,1141824002 +100886,2701,Will Smith,1141816874 +100886,2706,best comedy,1141818773 +100886,2712,Nicole Kidman,1141816866 +100886,2712,Stanley Kubrick,1141816866 +100886,2712,Tom Cruise,1141816866 +100886,2716,ghosts,1141816731 +100886,2762,Bruce Willis,1141820579 +100886,2762,Haley Joel Osment,1141817582 +100886,2762,I see dead people,1141817578 +100886,2797,family,1141823528 +100886,2797,Tom Hanks,1141823517 +100886,2915,Tom Cruise,1141819017 +100886,2918,80s,1141823561 +100886,2918,High School,1141823563 +100886,2959,Brad Pitt,1141820971 +100886,2959,Edward Norton,1141818202 +100886,2959,Jared Leto,1141820984 +100886,2985,Paul Verhoeven,1141816547 +100886,2987,Roger Rabbit,1141818306 +100886,3147,Tom Hanks,1141818868 +100886,3160,Tom Cruise,1141816644 +100886,3176,Jude Law,1141824850 +100886,3176,Matt Damon,1141824848 +100886,3252,Al Pacino,1141818912 +100886,3252,blindness,1141818968 +100886,3252,Oscar (Best Actor),1141818914 +100886,3253,comedy,1141822829 +100886,3255,Baseball,1141822412 +100886,3255,Tom Hanks,1141822409 +100886,3257,Kevin Costner,1141820440 +100886,3257,romance,1141820440 +100886,3418,Brad Pitt,1141822289 +100886,3623,Tom Cruise,1141816488 +100886,3751,animation,1141824308 +100886,3751,family,1141824308 +100886,3785,comedy,1141825500 +100886,3793,sci-fi,1141823407 +100886,3793,superhero,1141823410 +100886,3868,comedy,1141825461 +100886,3869,comedy,1141825447 +100886,3897,musical,1141824195 +100886,3948,Ben Stiller,1141822533 +100886,3948,comedy,1141822529 +100886,3948,Robert De Niro,1141822536 +100886,3949,drugs,1141819339 +100886,3949,Jared Leto,1141819336 +100886,4022,Tom Hanks,1141823184 +100886,4054,dance,1141826088 +100886,4054,romance,1141826088 +100886,4226,memory,1141816613 +100886,4246,Colin Firth,1141816467 +100886,4246,Hugh Grant,1147023468 +100886,4246,Renee Zellweger,1141816445 +100886,4265,Formula 1 racing,1168382048 +100886,4265,Harlin,1168382012 +100886,4306,animation,1141819487 +100886,4388,comedy,1141825512 +100886,4439,drugs,1141826525 +100886,4487,Tom Cruise,1141819399 +100886,4718,best comedy,1141818808 +100886,4896,family,1141825696 +100886,4963,Brad Pitt,1141816615 +100886,4963,George Clooney,1141816615 +100886,4973,romance,1141822358 +100886,4993,fantasy,1141825649 +100886,5014,Sean Penn,1141819097 +100886,5066,drama,1154344521 +100886,5066,high school,1154344521 +100886,5349,superhero,1141824737 +100886,5445,future,1141822229 +100886,5445,Steven Spielberg,1141822227 +100886,5445,Tom Cruise,1141822224 +100886,5679,horror,1141826683 +100886,5952,fantasy,1141823677 +100886,5989,Leonardo DiCaprio,1141825187 +100886,5989,Tom Hanks,1141825189 +100886,6539,Disney,1141825021 +100886,6539,Johnny Depp,1141825006 +100886,6763,comedy,1171238968 +100886,6763,drew barrymore,1171238968 +100886,6888,comedy,1141825520 +100886,6957,best comedy,1141819306 +100886,7153,fantasy,1141824758 +100886,7153,Oscar (Best Picture),1141824759 +100886,7293,adam sandler,1171239077 +100886,7293,drew barrymore,1171239077 +100886,7451,High School,1141816198 +100886,7976,teenagers,1147382773 +100886,8360,animation,1141819506 +100886,8464,documentary,1143157708 +100886,8640,history,1141825945 +100886,8907,Animation,1141820046 +100886,8961,Disney,1141822189 +100886,8969,Colin Firth,1147023528 +100886,8969,Hugh Grant,1147023528 +100886,8969,Renee Zellweger,1147023528 +100886,8977,Colin Farrell,1141825810 +100886,8977,history,1141825826 +100886,8977,Jared Leto,1141825810 +100886,33162,history,1141825878 +100886,33166,Oscar (Best Picture),1143157273 +100886,33615,animation,1168382220 +100886,33615,comedy,1168382220 +100886,34150,superhero,1147023585 +100886,39183,Oscar (Best Picture),1168382102 +100886,39183,romance,1168382102 +100886,40339,Disney,1154344551 +100886,44759,Sharon Stone,1168382161 +100888,260,adventure,1436809137 +100888,260,"sf,science fiction",1436809150 +100888,356,epic,1436809563 +100888,356,heartwarming,1436809563 +100888,356,sweet and romantic,1436809563 +100930,63,Wayans Brothers,1245169817 +100930,356,bittersweet,1245170182 +100930,356,vietnam war,1245170174 +100930,441,quirky,1245170017 +100930,480,scenic,1245170138 +100930,480,sci-fi,1245170119 +100930,480,stylized,1245170122 +100930,924,sci-fi,1245169087 +100930,924,space,1245169092 +100930,1198,adventure,1245170375 +100930,1210,Star Wars,1245170347 +100930,1241,cult film,1245170031 +100930,1241,zombies,1245170029 +100930,1732,Coen Brothers,1245169767 +100930,1732,dark comedy,1245169771 +100930,1732,drugs,1245169769 +100930,2117,post-apocalyptic,1245169048 +100930,2571,dystopia,1245170257 +100930,2571,philosophy,1245170235 +100930,2571,post apocalyptic,1245170229 +100930,2571,virtual reality,1245170235 +100930,2858,dark comedy,1245169581 +100930,2858,Oscar (Best Picture),1245169586 +100930,2858,surrealism,1245169583 +100930,2959,philosophy,1245170196 +100930,2959,psychology,1245170198 +100930,2959,social commentary,1245170202 +100930,2959,surreal,1245170204 +100930,2959,twist ending,1245170200 +100930,3897,rock and roll,1245169523 +100930,4226,nonlinear,1245170741 +100930,4226,psychology,1245170747 +100930,4226,twist ending,1245170745 +100930,4878,psychology,1245169855 +100930,4878,surreal,1245169857 +100930,4878,time travel,1245169852 +100930,4963,heist,1245170713 +100930,4993,adventure,1245170277 +100930,4993,fantasy,1245170291 +100930,6333,comic book,1245170720 +100930,6953,psychological,1245169099 +100930,7147,fantasy,1245169750 +100930,26379,religion,1245170734 +100930,44788,social commentary,1245170965 +100930,45720,fashion,1245169953 +100930,54190,Beatles,1245169271 +100930,54190,musical,1245169276 +100930,54190,rock and roll,1245169281 +100930,62049,based on a book,1245169028 +100930,62049,dystopia,1245169038 +100930,69275,Zombies,1245170633 +101029,5378,sci-fi,1146972709 +101058,1203,good dialogue,1241326801 +101058,7299,islam,1237447814 +101058,50872,pixar,1237270740 +101058,59369,action,1237021315 +101058,63062,angelina jolie,1237019491 +101073,2827,aliens,1367526517 +101073,2827,Johnny Depp,1367526515 +101073,2827,surprise ending,1367526519 +101073,67197,catastrophe,1367526453 +101073,67197,Nicolas Cage,1367526469 +101073,67197,paranormal,1367526472 +101073,67197,thought-provoking,1367526458 +101073,91529,Christian Bale,1367526266 +101073,91529,dystopia,1367526277 +101073,91529,fantasy,1367526278 +101073,91529,surreal,1367526272 +101073,92920,acting,1369854820 +101073,92920,elusive creature,1369854838 +101073,94864,aliens,1390775476 +101073,94864,intelligent,1390775477 +101073,94864,Ridley Scott,1390775471 +101073,94864,scifi,1390775474 +101074,6380,Kass pretto.,1138302542 +101074,7981,Mifan!,1138302344 +101082,1619,propaganda in disguise,1269500008 +101082,1911,family comedy,1269403310 +101082,1911,kids movie,1269403310 +101082,1960,historically inaccurate,1269400680 +101082,1997,Scariest movie ever made,1269181351 +101082,3354,bad science,1269401035 +101082,3386,historically inaccurate,1269400254 +101082,3386,in poor taste,1269400254 +101082,3386,propaganda in disguise,1269400254 +101082,3555,disrespectful to veterans,1269400955 +101082,3555,historically inaccurate,1269400955 +101082,5690,propaganda in disguise,1269500795 +101082,6503,Gril Power,1269399922 +101082,7293,date movie,1269398840 +101082,7360,nightmare inducing,1269401343 +101082,30850,racism,1269417633 +101082,31878,added sound effects in US version were bad,1269397949 +101082,31878,Better in original language,1269397838 +101082,31878,Chinese Humor,1269398121 +101082,31878,cultural references lost in translation,1269398121 +101082,31878,poorly adapted to english,1269398121 +101082,51503,mob spoof,1269399060 +101082,61026,based on a book,1269521214 +101082,61026,based on a true story,1269521214 +101082,61026,Han Dynasty,1269521214 +101082,68411,Racist As hell,1269500745 +101082,68486,based on a book,1269521495 +101082,68486,based on a true story,1269521495 +101082,68486,Han Dynasty,1269521495 +101082,74161,Racist As hell,1269396885 +101088,260,classic,1437961895 +101088,260,sci-fi,1437961887 +101102,1342,Virginia Madsen,1254071268 +101113,89118,beautiful,1451487377 +101113,89118,music,1451487392 +101113,89118,sudden,1451487345 +101142,6711,cultural differences,1439794558 +101142,6711,isolation,1439794552 +101142,6711,Melancholic,1439794553 +101142,6711,tokyo,1439794540 +101144,46530,comic book,1152203580 +101148,8930,dogma 95,1167549132 +101148,8930,existentialism,1167549132 +101160,7361,cult film,1372903894 +101160,7361,philosophy,1372903904 +101160,7361,sci-fi,1372903890 +101160,7361,surreal,1372903888 +101160,27904,Philip K. Dick,1372903817 +101160,27904,philosophical,1372903820 +101160,27904,surreal,1372903804 +101160,27904,surrealism,1372903808 +101160,27904,visually appealing,1372903813 +101160,80846,bad execution,1372903954 +101160,80846,Christianity,1372903950 +101160,80846,M. Night Shyamalan,1372903959 +101160,80846,plot twist,1372903968 +101164,1961,autism,1381504135 +101164,1961,mental illness,1381504131 +101164,1961,psychology,1381504140 +101164,3676,surreal,1381503339 +101164,55247,Music,1381563205 +101164,55247,psychology,1381563182 +101164,97938,animals,1381504028 +101164,97938,depressing,1381504020 +101164,97938,emotional,1381504023 +101194,20,lame,1189560049 +101194,63,Funny when your 10. Less funny when your not.,1189560436 +101194,177,huh?,1189560370 +101194,1464,Nine Inch Nails,1189560159 +101194,1665,terrible,1189560297 +101194,1760,who thought this was a good idea?,1189560476 +101194,2117,better book,1189560309 +101194,2122,creepy good,1189560504 +101194,2279,teen horror,1189560412 +101194,2505,disturbing,1189560114 +101194,3484,Teen Induced Angst Overdose,1189560543 +101194,3688,childish,1189560513 +101194,3821,why a sequel?,1189560454 +101194,3825,hot chicks,1189560141 +101194,3979,not his best,1189560399 +101194,4006,too much 80's music,1189560384 +101194,4343,hillarious,1189560098 +101194,4448,killer,1189560081 +101194,5903,Amazing Cinematography,1189560257 +101194,8807,high brow stupidity,1189560643 +101194,8917,doll sex,1189560331 +101194,8984,amusing,1189560275 +101194,31685,king of queens,1189560567 +101194,33004,Guy from the Office,1189560188 +101194,37729,wonderfully dark,1189560594 +101194,40819,great music,1189560217 +101211,10,I wanted the bad guy to win. Sean Bean out-Bonds Bond.,1138648343 +101211,5174,Brilliant acting by all! Sean Bean was amazing even though he hardly spoke.,1137900265 +101211,7458,Sean Bean makes it. The others are okay. When are they making the Odyssey,1137900261 +101211,7458,with SB as Odysseus?,1137900261 +101211,7579,What's with the American accents???,1150626515 +101211,26386,Chloris Leachman is hilarious.,1139748719 +101211,31694,"Too far from the real thing. And the ""Darcy"" is nauseating.",1139749259 +101211,37727,Jodie Foster and Sean Bean - what's not to like,1138646997 +101211,38798,very good chick flick,1140271588 +101211,39234,Wonderful drama!,1137900326 +101211,41571,beautifully filmed - a pleasure to watch - the friend I was with said it was even better than the book,1137899896 +101211,48394,excellent story but far too gory,1174297194 +101211,68932,Jamie Foxx,1381351073 +101212,296,great cast excellent,1437464459 +101212,296,oscar (best screenplay),1437464459 +101212,296,quentin tarantino,1437464459 +101226,260,heroic,1431081617 +101226,260,sci-fi,1431081601 +101228,10,Bond,1210559200 +101228,22,thriller,1368151730 +101228,29,dark,1368151361 +101228,111,dark,1368151361 +101228,216,stupid,1368151687 +101228,339,Romance,1210560091 +101228,440,politics,1368151665 +101228,474,tense,1368151707 +101228,832,tense,1368151707 +101228,832,thriller,1368151730 +101228,861,police,1368151644 +101228,913,black and white,1368151321 +101228,1089,violent,1368151748 +101228,1095,ensemble cast,1368151385 +101228,1206,violent,1368151748 +101228,1212,carol reed,1219455357 +101228,1214,tense,1368151707 +101228,1228,oscar (best cinematography),1368151599 +101228,1248,black and white,1368151320 +101228,1262,ensemble cast,1368151385 +101228,1357,mental illness,1368151496 +101228,1390,politics,1368151665 +101228,1464,mystery,1368151518 +101228,1597,thriller,1368151730 +101228,1834,mystery,1368151518 +101228,1945,black and white,1368151320 +101228,1950,police,1368151645 +101228,1953,oscar (best cinematography),1368151599 +101228,2024,christianity,1368151340 +101228,2076,dark,1368151361 +101228,2082,inspirational,1368151477 +101228,2353,thriller,1368151730 +101228,2383,police,1368151645 +101228,2442,mental illness,1368151496 +101228,2500,high school,1368151456 +101228,2888,high school,1368151456 +101228,2919,politics,1368151665 +101228,2959,violent,1368151748 +101228,2985,violent,1368151748 +101228,3044,mystery,1368151518 +101228,3146,stupid,1368151688 +101228,3178,inspirational,1368151477 +101228,3256,tense,1368151707 +101228,3256,thriller,1368151730 +101228,3362,police,1368151645 +101228,3435,black and white,1368151320 +101228,3683,dark,1368151361 +101228,4019,inspirational,1368151477 +101228,4388,stupid,1368151687 +101228,4865,dark,1368151361 +101228,4974,stupid,1368151688 +101228,5107,nazis,1368151554 +101228,5218,pixar,1368151624 +101228,5773,nudity (topless - notable),1368151577 +101228,5785,stupid,1368151688 +101228,6808,nazis,1368151553 +101228,7153,oscar (best cinematography),1368151599 +101228,8781,politics,1368151665 +101228,33660,inspirational,1368151477 +101228,53121,franchise,1368151438 +101228,59429,nudity (topless - notable),1368151578 +101228,63113,franchise,1368151438 +101228,64622,nazis,1368151554 +101228,68954,father-son relationship,1368151411 +101228,74458,mystery,1368151518 +101239,32,time travel,1329164267 +101239,50,suspense,1294240940 +101239,50,twist ending,1294240929 +101239,260,Star Wars,1294241150 +101239,1196,Star Wars,1294241145 +101239,1210,Star Wars,1294241094 +101239,1222,Drama,1294240589 +101239,1222,Stanley Kubrick,1294240578 +101239,1222,Vincent D'Onofrio,1294754114 +101239,1222,War,1294240589 +101239,1258,Stanley Kubrick,1294159928 +101239,1258,Stephen King,1294159925 +101239,1258,Thriller,1294159952 +101239,1732,cult film,1294240733 +101239,1732,dark comedy,1294240731 +101239,2628,Star Wars,1294241165 +101239,4011,twist ending,1294241172 +101239,4993,fantasy,1294239774 +101239,4993,Tolkien,1294239741 +101239,4995,genius,1294240766 +101239,4995,intelligent,1294240772 +101239,4995,psychology,1294240748 +101239,4995,schizophrenia,1294240782 +101239,5952,fantasy,1294238547 +101239,5952,Tolkien,1294239707 +101239,7153,fantasy,1294239833 +101239,7153,tolkien,1294239833 +101239,31696,angels,1299365277 +101239,31696,demons,1299365281 +101239,31696,heaven and hell,1299365264 +101239,33493,Star Wars,1294241158 +101239,39183,Love Story,1294240662 +101239,39183,romance,1294240673 +101239,54372,murder mystery,1294241041 +101239,54372,mystery,1294240998 +101239,54372,thriller,1294240994 +101239,54372,twist ending,1294241027 +101239,58559,Batman,1294240598 +101239,58559,Heath Ledger,1294240636 +101239,58559,superhero,1294240601 +101239,79132,alternate reality,1294243357 +101239,79132,surreal,1294243362 +101239,79132,thought-provoking,1294243365 +101243,260,science fantasy,1438627142 +101243,260,space adventure,1438627158 +101274,1343,over-the-top ending,1241844895 +101282,6051,reggae,1142517221 +101282,6051,rudies,1142517232 +101286,260,classic sci-fi,1439712666 +101286,260,exciting,1439712656 +101286,260,space adventure,1439712772 +101286,92259,based on a true story,1439713664 +101286,92259,funny,1439713668 +101286,92259,inspirational,1439713646 +101286,92259,touching,1439713671 +101287,66097,based on a book,1405738505 +101287,66097,visually stunning,1405738497 +101296,916,enjoyable,1186554992 +101296,1091,stupid,1186555066 +101296,1245,great,1186554952 +101296,1245,suspensful,1186554952 +101296,2245,good,1186555046 +101330,48780,complicated,1446149977 +101330,48780,magic,1446149957 +101330,48780,mystery,1446149974 +101330,48780,obsession,1446149971 +101330,48780,twist ending,1446149954 +101330,79132,action,1446149915 +101330,79132,alternate reality,1446149911 +101330,79132,clever,1446149922 +101330,79132,dreams,1446149924 +101330,79132,psychological,1446149929 +101330,79132,sci-fi,1446149918 +101330,115713,AI,1446149840 +101330,115713,artificial intelligence,1446149822 +101330,115713,Future,1446149871 +101330,115713,robots,1446149841 +101330,115713,sci-fi,1446149834 +101330,115713,technology,1446149832 +101333,802,supernatural,1441228995 +101333,802,tear jerker,1441229023 +101363,5080,Jason Schwartzman,1193625036 +101364,8914,mindfuck,1437683515 +101364,8914,plot holes,1437683502 +101364,122882,crazy characters,1437683641 +101364,122882,full of adrenaline. a must watch heart pumping movie,1437683641 +101364,122882,post-apocalyptic,1437683641 +101378,4299,I can watch it again,1336855699 +101382,5303,afternoon section,1163807934 +101382,5303,Tom Hanks,1163808032 +101387,58559,sure thing,1216774480 +101392,2696,French,1378485339 +101392,2696,funny,1378485341 +101392,3793,superhero,1378421966 +101392,4226,twist ending,1378421937 +101392,4308,musical,1378421204 +101392,4993,fantasy,1378421565 +101392,5618,Studio Ghibli,1378422024 +101392,5952,fantasy,1378421572 +101392,7147,twist ending,1378421161 +101392,7361,psychology,1378421981 +101392,8950,psychology,1378420977 +101392,31658,Studio Ghibli,1378421062 +101392,32587,multiple storylines,1378421916 +101392,47610,twist ending,1378421023 +101392,48516,psychology,1378421898 +101392,48516,twist ending,1378421896 +101392,60408,comedy,1378485308 +101392,60408,France,1378485312 +101392,81591,psychological,1378420987 +101392,91500,dystopia,1378420570 +101392,98809,fantasy,1378421601 +101392,99530,anime,1378421338 +101392,99530,Japan,1378421333 +101392,103042,superhero,1378421635 +101392,103228,aliens,1378421531 +101392,103228,anime,1378421530 +101392,103228,robots,1378421528 +101392,103235,twist ending,1378421362 +101392,103335,crude humor,1378422156 +101408,260,sci-fi,1438427832 +101408,260,Star Wars,1438427837 +101408,356,feelgood,1438428014 +101408,356,long movie,1438428014 +101408,356,tom hanks,1438428014 +101410,70088,artistic,1422453769 +101410,70088,birds,1422453769 +101410,70088,way of life,1422453769 +101410,77846,Henry Fonda,1372700682 +101410,87105,animals,1423614297 +101410,87105,animation,1423614297 +101410,87105,children,1423614297 +101410,87105,comedy,1423614297 +101410,108134,comedy,1421097463 +101410,108134,prison escape,1421097463 +101410,108134,self-discovery,1421097463 +101410,118876,animation,1419966653 +101410,118876,self discovery,1419966653 +101410,118876,talking animals,1419966653 +101416,446,Child abuse,1137992341 +101416,446,China,1137992341 +101416,446,homosexuality,1137992341 +101416,446,Peking Opera,1137992341 +101416,1090,action,1137992360 +101416,1090,Oliver Stone,1137992367 +101416,1090,war,1137992365 +101416,1342,Bees,1145170935 +101416,1342,Horror,1145170905 +101416,1416,Andrew Lloyd Weber,1145170483 +101416,1416,Argentina,1145170474 +101416,1416,Madonna,1145170480 +101416,1416,musical,1145170352 +101416,1513,blonde,1137992916 +101416,1513,character,1137992916 +101416,1513,comedy,1137992916 +101416,1513,fashion,1137992916 +101416,2471,Australia,1145169972 +101416,2940,burlesque,1139961982 +101416,2940,casino,1139961982 +101416,2940,intrigue,1139961982 +101416,2940,love/hate,1139961982 +101416,2940,Rita Hayworth,1139961982 +101416,2959,based on novel,1137992338 +101416,2959,civilisation,1137992338 +101416,2959,Masculinity,1137992338 +101416,2959,schizophrenia,1137992338 +101416,3105,Drama,1145170540 +101416,3105,Psychiatry,1145170522 +101416,3105,Robin Williams,1145170720 +101416,3255,Baseball,1139962045 +101416,3255,feminism,1139962045 +101416,3255,heroism,1139962045 +101416,3255,wartime,1139962045 +101416,3475,classic,1145170310 +101416,3475,Elizabeth Taylor,1145170276 +101416,3475,Oscar (Best Cinematography),1145170317 +101416,3992,coming-of-age,1139962159 +101416,3992,Monica Belucci,1139962159 +101416,3992,morality,1139962159 +101416,3992,parochialism,1139962159 +101416,3992,sexuaity,1139962159 +101416,3992,wartime,1139962159 +101416,4367,adaptation,1145170087 +101416,4367,adventure,1145170076 +101416,4367,Angelina Jolie,1145170060 +101416,4367,Cambodia,1145170109 +101416,4447,femininity,1139962491 +101416,4447,feminism,1139962491 +101416,4447,friendship,1139962491 +101416,4447,lawyers,1139962491 +101416,4447,scholarship,1139962491 +101416,5617,BDSM,1139962551 +101416,5617,power,1139962551 +101416,5617,relationships,1139962551 +101416,5617,sexuality,1139962551 +101416,6944,comedy,1145170772 +101416,6944,Family,1145170763 +101416,6944,slapstick,1145170788 +101416,6944,Steve Martin,1145170778 +101416,6944,Wedding,1145170751 +101416,8376,character driven,1139962637 +101416,8376,comedy,1139962637 +101416,8376,independent film,1139962637 +101416,8376,subtle,1139962637 +101416,8947,ghosts,1139961479 +101416,8947,haunting,1139961479 +101416,8947,house,1139961479 +101416,8947,japan,1139961479 +101416,9010,comraderie,1139961139 +101416,9010,dare,1139961139 +101416,9010,France,1139961139 +101416,9010,friendship,1139961139 +101416,9010,merry-go-round,1139961139 +101416,9010,romance,1139961139 +101416,27801,chop-chop,1139962803 +101416,27801,friendship,1139962803 +101416,27801,great stunts,1139962803 +101416,27801,right/wrong,1139962803 +101416,27801,thai boxing,1139962803 +101419,1258,Stanley Kubrick,1165974692 +101419,1394,Coen Brothers,1165974734 +101419,1732,Coen Brothers,1165974648 +101420,34,Animal movie,1432076657 +101420,34,barnyard animals,1432076665 +101420,34,cute,1432076671 +101420,34,pigs,1432076651 +101420,34,talking animals,1432076649 +101420,296,crime,1432074690 +101420,296,drugs,1432074690 +101420,296,fascinating how a conversation and two people keep you interested,1432074690 +101420,296,food,1432074690 +101420,364,animals,1432081289 +101420,364,animation,1432081283 +101420,364,character driven,1432081332 +101420,364,classic,1432081338 +101420,364,coming of age,1432081287 +101420,364,Disney,1432081281 +101420,364,Hans Zimmer,1432081305 +101420,364,Oscar (Best Music - Original Song),1432081295 +101420,364,seen more than once,1432081314 +101420,364,soundtrack,1432081342 +101420,527,atmospheric,1432175076 +101420,527,black and white,1432175066 +101420,527,classic,1432175085 +101420,527,depressing,1432175146 +101420,527,disturbing,1432175073 +101420,527,long,1432175124 +101420,527,melodrama,1432175118 +101420,527,too intense,1432175131 +101420,527,violent,1432175141 +101420,541,atmospheric,1432173833 +101420,541,classic,1432173840 +101420,541,cult film,1432173857 +101420,541,cyberpunk,1432173824 +101420,541,dreamlike,1432173843 +101420,541,existentialism,1432173851 +101420,541,great cinematography,1432173911 +101420,541,Had a hard time following the plot of the movie.,1432173978 +101420,541,neo-noir,1432173873 +101420,541,philosophical,1432173855 +101420,541,stylized,1432173836 +101420,541,visually stunning,1432173920 +101420,558,Nostalgia,1432089239 +101420,588,animation,1437244811 +101420,588,Disney,1437244836 +101420,589,music,1432174964 +101420,589,sequel better than original,1432174994 +101420,589,Suspense,1432174955 +101420,594,animation,1432175772 +101420,594,classic,1432175766 +101420,594,Disney,1432175779 +101420,596,Classic,1432175637 +101420,596,Disney,1432175647 +101420,596,disturbing,1432175661 +101420,608,affectionate,1432174406 +101420,608,black comedy,1432174345 +101420,608,classic,1432175524 +101420,608,Coen Brothers,1432174340 +101420,608,CRIME GONE AWRY,1432174351 +101420,608,dark comedy,1432174347 +101420,608,deadpan,1432174390 +101420,608,gratuitous violence,1432175515 +101420,608,much talking,1432175564 +101420,608,quirky,1432174341 +101420,608,strong female,1432174367 +101420,608,violent,1432174356 +101420,608,witty,1432174358 +101420,741,anime,1432173740 +101420,741,artificial intelligence,1432173742 +101420,741,overrated,1432173770 +101420,741,philosophical,1432173744 +101420,741,vague ending,1432173763 +101420,741,visually appealing,1432173751 +101420,783,Disney,1432075315 +101420,783,score,1432075331 +101420,904,Alfred Hitchcock,1432172819 +101420,904,expected more,1432172885 +101420,924,atmospheric,1432174021 +101420,924,boring,1432174101 +101420,924,cinematography,1432174051 +101420,924,classic,1432174035 +101420,924,confusing ending,1432174140 +101420,924,cult film,1432174032 +101420,924,music,1432174037 +101420,924,overrated,1432174065 +101420,924,philosophical,1432174024 +101420,924,slow,1432174042 +101420,924,soundtrack,1432174092 +101420,924,space,1432174019 +101420,924,Stanley Kubrick,1432174016 +101420,1015,adventure,1432092542 +101420,1015,animals,1432092569 +101420,1015,Journey,1432092589 +101420,1015,nature,1432092578 +101420,1015,nostalgic,1432092545 +101420,1080,controversial,1432174860 +101420,1080,mockumentary,1432174871 +101420,1080,Monty Python,1432174852 +101420,1080,quotable,1432174907 +101420,1080,reluctant hero,1432174878 +101420,1136,absurd,1432174815 +101420,1136,bizarre ending,1432174811 +101420,1136,british comedy,1432174790 +101420,1136,classic,1432174799 +101420,1136,cult film,1432174801 +101420,1136,excellent dialogue,1432174826 +101420,1136,Highly quotable,1432174923 +101420,1136,Monty Python,1432174784 +101420,1193,expected more,1432172958 +101420,1193,powerful ending,1432172975 +101420,1193,psychology,1432172964 +101420,1197,Cult classic,1432084064 +101420,1197,fantasy,1432084057 +101420,1197,Quirky,1432084055 +101420,1197,Quotable,1432084079 +101420,1197,torture,1432084075 +101420,1197,whimsical,1432084070 +101420,1197,witty,1432084061 +101420,1201,classic,1432092194 +101420,1201,Clint Eastwood,1432092177 +101420,1201,Ennio Morricone,1432092179 +101420,1201,epic,1432092214 +101420,1201,long,1432092207 +101420,1201,quirky,1432092204 +101420,1201,Sergio Leone,1432092182 +101420,1201,soundtrack,1432092224 +101420,1201,spaghetti western,1432092180 +101420,1201,western,1432092185 +101420,1206,controversial,1432172800 +101420,1206,cult film,1432172722 +101420,1206,psychology,1432172728 +101420,1206,quirky,1432172737 +101420,1206,rape,1432172790 +101420,1206,stanley kubrick,1432172711 +101420,1206,surreal,1432172755 +101420,1206,Surrealism,1432172744 +101420,1209,atmospheric,1432092111 +101420,1209,classic,1432092124 +101420,1209,ennio morricone,1432092116 +101420,1209,epic,1432092139 +101420,1209,great soundtrack,1432092122 +101420,1209,long,1432092156 +101420,1209,Sergio Leone,1432092118 +101420,1209,spaghetti western,1432092108 +101420,1209,western,1432092128 +101420,1215,anti-hero,1432173148 +101420,1215,black comedy,1432173132 +101420,1215,campy,1432173129 +101420,1215,claymation,1432173143 +101420,1215,cult classic,1432173125 +101420,1215,cult film,1432173138 +101420,1215,Highly quotable,1432173184 +101420,1217,Akira Kurosawa,1432091921 +101420,1217,cinematography,1432091958 +101420,1217,samurai,1432091971 +101420,1217,too long,1432091937 +101420,1232,beautifully filmed,1437087531 +101420,1232,dialogue driven,1437087548 +101420,1232,dreamlike,1437087521 +101420,1232,existentialism,1437087509 +101420,1232,slow,1437087526 +101420,1240,classic,1432174232 +101420,1240,great soundtrack,1432174226 +101420,1240,highly quotable,1432174234 +101420,1240,violent,1432174239 +101420,1275,modern fantasy,1432083269 +101420,1275,Queen,1432083245 +101420,1280,austere,1432091847 +101420,1280,Cinematography,1432091841 +101420,1280,Colours,1432091887 +101420,1566,animation,1432089106 +101420,1566,disney,1432089083 +101420,1566,Greek mythology,1432089066 +101420,1566,soundtrack,1432089069 +101420,1587,adventure,1432083337 +101420,1587,Arnold Schwarzenegger,1432083292 +101420,1587,Barbarian,1432083299 +101420,1587,classic,1432083314 +101420,1587,epic,1432083308 +101420,1587,Fantasy,1432083289 +101420,1587,quotable,1432083301 +101420,1653,dystopia,1432076249 +101420,1653,genetic selection,1432076277 +101420,1653,genetics,1432076253 +101420,1653,inspirational,1432076318 +101420,1653,intelligent,1432076286 +101420,1653,Jude Law,1432076274 +101420,1653,neo-noir,1432076322 +101420,1653,racism,1432076386 +101420,1653,realistic sci/fi,1432076394 +101420,1653,sci-fi,1432076251 +101420,1653,social commentary,1432076329 +101420,1653,thought-provoking,1432076257 +101420,1653,Uma Thurman,1432076255 +101420,1653,underdog,1432076390 +101420,1653,very slow,1432076379 +101420,1653,visually appealing,1432076270 +101420,1688,animation,1432076195 +101420,1732,coen brothers,1432176583 +101420,1732,cult film,1432176587 +101420,1732,great dialogue,1432176596 +101420,1732,Highly quotable,1432176628 +101420,1732,quirky,1432176592 +101420,1907,animation,1432076063 +101420,1907,Disney,1432076061 +101420,1907,great soundtrack,1432076072 +101420,1907,Songs,1432076134 +101420,1907,strong female lead,1432076066 +101420,1907,supporting characters,1432076130 +101420,1968,1980's cult,1432083752 +101420,1968,cliche,1432083734 +101420,1968,cliques,1432083780 +101420,1968,overdramatic,1432083745 +101420,1968,teen,1432083759 +101420,1968,teen movie,1432083762 +101420,2018,classic,1432175722 +101420,2018,coming of age,1432175718 +101420,2018,overrated,1432175726 +101420,2018,sad,1432175683 +101420,2018,slow,1432175702 +101420,2019,Akira Kurosawa,1432074739 +101420,2019,Amazing Cinematography,1432092036 +101420,2019,atmospheric,1432074745 +101420,2019,black and white,1432092015 +101420,2019,classic,1432074711 +101420,2019,epic,1432074747 +101420,2019,Japan,1432074729 +101420,2019,Kurosawa,1432074709 +101420,2019,long,1432092051 +101420,2019,masterpiece,1432074723 +101420,2019,samurai,1432074733 +101420,2078,classic,1432081368 +101420,2117,bleak atmosphere,1432172661 +101420,2117,boring,1432172685 +101420,2123,animation,1432090881 +101420,2123,death,1432090864 +101420,2123,nostalgia,1432090885 +101420,2123,sad,1432090855 +101420,2138,animation,1432084524 +101420,2138,dark animated film,1432084531 +101420,2138,not for kids,1432084544 +101420,2138,rabbits,1432084519 +101420,2138,violent,1432084515 +101420,2193,adventure,1432083810 +101420,2193,fantasy,1432083807 +101420,2193,Good versus evil,1432083815 +101420,2193,predictable,1432083869 +101420,2193,Special Effects,1432083860 +101420,2730,cinematography,1437087399 +101420,2730,photography,1437087392 +101420,2730,Stanley Kubrick,1437087378 +101420,2810,distorted reality,1445172962 +101420,2810,has some plot problems,1445172975 +101420,2890,anti-war,1432172110 +101420,2890,black comedy,1432172114 +101420,2890,confrontational,1432172125 +101420,2890,stylized,1432172118 +101420,2918,1980s,1432083691 +101420,2918,breaking the fourth wall,1432083703 +101420,2918,classic,1432083681 +101420,2918,comedy,1432083675 +101420,2918,fun,1432083687 +101420,2918,High School,1432083674 +101420,2918,Matthew Broderick,1432083677 +101420,2918,one day,1432083684 +101420,2918,rebellion,1432083679 +101420,2918,slackers,1432083689 +101420,3000,anime,1432084575 +101420,3000,anti-war,1432084601 +101420,3000,dark,1432084616 +101420,3000,dreamlike,1432084659 +101420,3000,environmental,1432084593 +101420,3000,fantasy world,1432084585 +101420,3000,forest,1432084691 +101420,3000,Hayao Miyazaki,1432084581 +101420,3000,Japan,1432084671 +101420,3000,nature gods,1432084701 +101420,3000,nature vs. civilization,1432084703 +101420,3000,Studio Ghibli,1432084579 +101420,3000,surreal,1432084589 +101420,3000,wilderness,1432084678 +101420,3054,music score,1432075498 +101420,3054,pokemon,1432075408 +101420,3081,atmospheric,1432173426 +101420,3081,dark fantasy,1432173443 +101420,3081,quirky,1432173430 +101420,3081,small town,1432173450 +101420,3081,stylized,1432173436 +101420,3081,visually appealing,1432173424 +101420,3479,awkward soundtrack,1432084007 +101420,3479,Matthew Broderick,1432083994 +101420,3483,Adventure,1432090254 +101420,3483,Bromance,1432090220 +101420,3503,atmospheric,1432090277 +101420,3503,dreamlike,1432090278 +101420,3503,hard to follow,1432090303 +101420,3503,surreal,1432090295 +101420,3503,too slow,1432090315 +101420,3578,Hans Zimmer,1432075924 +101420,3578,heroism,1432075921 +101420,3578,Ridley Scott,1432075886 +101420,3578,Rome,1432075883 +101420,3578,Russell Crowe,1432075880 +101420,3578,seen more than once,1432076007 +101420,3578,sword fight,1432076031 +101420,3623,cheesy,1432172896 +101420,3623,Tom Cruise,1432172898 +101420,3702,gangs,1445173040 +101420,3702,low budget,1445173034 +101420,3702,revenge,1445173047 +101420,4014,feel-good,1432088949 +101420,4014,magic realism,1432088953 +101420,4014,Quirky,1432088941 +101420,4027,adventure,1432176496 +101420,4027,black comedy,1432176507 +101420,4027,coen brothers,1432176473 +101420,4027,country,1432176533 +101420,4027,dialogue,1432176530 +101420,4027,George Clooney,1432176477 +101420,4027,great soundtrack,1432176475 +101420,4027,Musical,1432176501 +101420,4027,Quirky,1432176480 +101420,4027,seen more than once,1432176562 +101420,4036,film within a film,1446330384 +101420,4036,Willem Dafoe,1446330387 +101420,4232,fun,1432092682 +101420,4232,silly,1432092672 +101420,4308,Ewan McGregor,1432087316 +101420,4308,great soundtrack,1432087332 +101420,4308,quirky,1432087318 +101420,4308,seen more than once,1432087381 +101420,4308,stylized,1432087355 +101420,5291,Akira Kurosawa,1445173543 +101420,5618,adventure,1432089340 +101420,5618,atmospheric,1432089331 +101420,5618,dreamlike,1432089323 +101420,5618,Hayao Miyazaki,1432089315 +101420,5618,imagination,1432089349 +101420,5618,imaginative,1432089351 +101420,5618,Studio Ghibli,1432089313 +101420,5618,surreal,1432089335 +101420,5618,whimsical,1432089327 +101420,5672,anime,1432075594 +101420,5672,cheesy,1432075569 +101420,5672,Pokemon,1432075576 +101420,5882,pirates,1432089010 +101420,5882,science fiction,1432089048 +101420,5882,treasure hunt,1432088997 +101420,6350,adventure,1432092390 +101420,6350,Hayao Miyazaki,1432092387 +101420,6350,imagination,1432092393 +101420,6350,pirates,1432092396 +101420,6350,Studio Ghibli,1432092386 +101420,6350,visually appealing,1432092410 +101420,6593,chick flick,1432090794 +101420,6593,slumber party hit,1432090833 +101420,6711,atmospheric,1444405803 +101420,6711,bittersweet,1444405808 +101420,6711,isolation,1444405834 +101420,6711,loneliness,1444405837 +101420,6711,reflective,1444405812 +101420,6807,black comedy,1432174766 +101420,6807,british comedy,1432174740 +101420,6807,controversial,1432174747 +101420,6807,Monty Python,1432174738 +101420,6807,Philosophy,1432174754 +101420,6807,ridiculous,1432174749 +101420,6818,bleak,1432085323 +101420,6818,emotionally draining,1432085476 +101420,6818,gritty,1432085327 +101420,6874,Quentin Tarantino,1432812831 +101420,6874,quirky,1432812854 +101420,6874,stylized,1432812845 +101420,6874,visually appealing,1432812850 +101420,6889,Not up to Disney standards,1432088135 +101420,6947,Age of sail,1432075848 +101420,6947,historical,1432075798 +101420,6947,Oscar (Best Cinematography),1432075810 +101420,6947,Russell Crowe,1432075796 +101420,6947,seafaring,1432075801 +101420,6995,Arnold Schwarzenegger,1432082263 +101420,6995,Cheese,1432082267 +101420,6995,quotable,1432082295 +101420,6995,so bad it's good,1432082271 +101420,7099,adventure,1432092317 +101420,7099,classic,1432092374 +101420,7099,coming of age,1432092368 +101420,7099,fantasy world,1432092311 +101420,7099,great soundtrack,1432092326 +101420,7099,Hayao Miyazaki,1432092298 +101420,7099,setting,1432092359 +101420,7099,Studio Ghibli,1432092297 +101420,7099,stylized,1432092322 +101420,7317,cliche,1432089799 +101420,7317,drinking game material,1432089834 +101420,7317,road trip,1432089794 +101420,7438,Quentin Tarantino,1432812930 +101420,7438,quirky,1432812972 +101420,7438,stylized,1432812968 +101420,7925,Akira Kurosawa,1444405595 +101420,7925,greed,1444405605 +101420,7925,princess,1444405616 +101420,7925,strong woman,1444405658 +101420,26662,coming of age,1432090733 +101420,26662,Hayao Miyazaki,1432090728 +101420,26662,Studio Ghibli,1432090724 +101420,26776,Hayao Miyazaki,1432089617 +101420,26776,magic realism,1432089638 +101420,26776,Studio Ghibli,1432089616 +101420,26776,unanswered questions,1432089640 +101420,26903,Coming of age,1432085800 +101420,26903,famous theme song,1432085818 +101420,26903,inspiring,1432085774 +101420,26903,Studio Ghibli,1432085762 +101420,26903,teenage girl,1432085829 +101420,26999,animal characters,1432081869 +101420,26999,love story,1432081680 +101420,26999,musical,1432081716 +101420,26999,parental expectations,1432081751 +101420,26999,romeo and juliet adaption,1432081857 +101420,26999,sequel,1432081667 +101420,26999,war,1432081847 +101420,27368,comedy,1432082589 +101420,27368,Egypt,1432082585 +101420,27368,ensemble cast,1432082614 +101420,27368,roman soldiers,1432082576 +101420,27608,surreal,1432092844 +101420,27731,inferior sequel,1432087966 +101420,27857,bittersweet,1432082195 +101420,27857,choir,1432082198 +101420,27857,music,1432082191 +101420,27857,self discovery,1432082204 +101420,27857,village,1432082208 +101420,31195,adventure,1432077841 +101420,31195,based on book,1432077859 +101420,31658,adventure,1432076505 +101420,31658,dreamlike,1432076455 +101420,31658,Hayao Miyazaki,1432076452 +101420,31658,steampunk,1432076457 +101420,31658,Studio Ghibli,1432076448 +101420,31658,war,1432076464 +101420,31658,wizards,1432076467 +101420,32352,animation,1445173207 +101420,32352,arabian fairy tale,1445173349 +101420,32352,Beautifully animated,1445173203 +101420,32352,feisty princess,1445173489 +101420,32352,from rags to riches,1445173402 +101420,32352,not for kids,1445173439 +101420,32352,silent characters,1445173387 +101420,32352,unfinished,1445173499 +101420,32587,atmospheric,1437327527 +101420,32587,multiple storylines,1437327518 +101420,32587,stylized,1437327520 +101420,32587,surrealism,1437327546 +101420,32587,visually appealing,1437327538 +101420,33162,Orlando Bloom,1432090945 +101420,33171,child abuse,1432175196 +101420,36289,Roman empire,1432081500 +101420,37830,confusing plot,1432088789 +101420,38538,based on a book,1432080770 +101420,38538,healing through art,1432080895 +101420,38538,high school,1432080752 +101420,38538,Kristen Stewart,1432080668 +101420,38538,overcoming trauma,1432080711 +101420,38538,teenage angst,1432080853 +101420,38538,teenage girls,1432080723 +101420,40629,18th century,1432083565 +101420,40629,19th century,1432083583 +101420,40629,british,1432083597 +101420,40629,cinematography,1432083605 +101420,40629,class conflict,1432083619 +101420,40629,great soundtrack,1432083607 +101420,40629,If your wife makes you see it you'll survive,1432083647 +101420,40629,Jane Austen,1432083557 +101420,40629,Rosamund Pike,1432083593 +101420,41571,based on a book,1432075631 +101420,41571,cinematography,1432075623 +101420,41571,geisha,1432075618 +101420,41571,incredible makeup,1432075751 +101420,41571,Japan,1432075616 +101420,41571,Japanese culture,1432075625 +101420,41571,Ken Watanabe,1432075745 +101420,41571,Oscar (Best Cinematography),1432075657 +101420,41571,romance,1432075683 +101420,43560,Colin Firth,1432076733 +101420,43560,Emma Thompson,1432076728 +101420,43560,kids,1432087643 +101420,43560,nannying,1432076821 +101420,49649,cliche,1432088533 +101420,49649,Horrible adaptation of the book,1432088550 +101420,49649,Major dissapointment,1432088552 +101420,50796,2000 style,1432082030 +101420,50796,slumber party hit,1432082116 +101420,50796,werewolves,1432081933 +101420,50796,young adult,1432081969 +101420,54259,british,1432083906 +101420,54259,comedy,1432083967 +101420,54259,fairy tale romance,1432083908 +101420,54259,fantasy,1432083896 +101420,54259,Michelle Pfeiffer,1432083916 +101420,54259,whimsical,1432083911 +101420,55052,hard to follow,1432090538 +101420,55280,feel-good,1432090025 +101420,55280,good psychiatrist,1432090086 +101420,55280,I wanted to hug this movie,1432090048 +101420,55280,psychology,1432090071 +101420,55280,quirky,1432090018 +101420,55280,small town,1432090013 +101420,55280,touching,1432090022 +101420,55820,ambiguous ending,1432174612 +101420,55820,Coen Brothers,1432174536 +101420,55820,dark,1432174542 +101420,55820,detached,1432174572 +101420,55820,great acting,1432174538 +101420,55820,slow paced,1432174563 +101420,55820,suspense,1432174549 +101420,55820,unsatisfying,1432174604 +101420,55820,violent,1432174552 +101420,57669,ambiguous ending,1432174484 +101420,57669,beautiful scenery,1432174476 +101420,57669,black comedy,1432174441 +101420,57669,british comedy,1432174457 +101420,57669,Colin Farrell,1432174454 +101420,57669,dark comedy,1432174437 +101420,57669,dialogue,1432174491 +101420,57669,foul language,1432174464 +101420,57669,irish accent,1432174446 +101420,57669,stylized,1432174443 +101420,57669,violent,1432174461 +101420,60684,confusing,1432175394 +101420,60684,stylized,1432175290 +101420,60684,stylized violence,1432175309 +101420,60684,too long,1432175313 +101420,60684,unlikeable characters,1432175332 +101420,61323,Coen Brothers,1432176691 +101420,61323,dark comedy,1432176689 +101420,61323,greed,1432176708 +101420,61323,twists & turns,1432176715 +101420,61323,unpredictable,1432176748 +101420,61323,weird,1432176700 +101420,64695,anime,1432078150 +101420,64695,forced exposition,1432078159 +101420,64695,samurai,1432078151 +101420,64695,sword fights,1432078205 +101420,64993,Art Direction,1432084302 +101420,64993,drama,1432084325 +101420,64993,melancholic,1432084288 +101420,64993,visually stunning,1432084297 +101420,64993,yearning,1432084316 +101420,65261,Animation,1432089259 +101420,65261,environmental,1432089265 +101420,65261,Hayao Miyazaki,1432089254 +101420,65261,strange story,1432089269 +101420,65261,Studio Ghibli,1432089256 +101420,66659,incoherent,1432079051 +101420,66659,tyler perry,1432079061 +101420,66659,unfunny comedy,1432079078 +101420,68073,British,1432173066 +101420,68073,cliche,1432173085 +101420,68073,expected more,1432173103 +101420,68157,black comedy,1437244377 +101420,68157,Christoph Waltz,1437244383 +101420,68157,dark comedy,1437244389 +101420,68157,dialogue,1437244395 +101420,68157,gore,1437244400 +101420,68157,gratuitous violence,1437244405 +101420,68157,Quentin Tarantino,1437244366 +101420,68157,tense,1437244396 +101420,68157,torture,1437244535 +101420,68157,unusual plot structure,1437244407 +101420,69481,anti-hero,1432092626 +101420,69481,anti-war,1432092609 +101420,69481,realistic,1432092612 +101420,69481,too long,1432092639 +101420,69481,too slow,1432092652 +101420,69951,confusing ending,1432173552 +101420,69951,deal with the devil,1432173524 +101420,69951,imagination,1432173527 +101420,69951,imaginative,1432173534 +101420,69951,surreal,1432173516 +101420,70293,boring,1432088879 +101420,70293,shallow,1432088881 +101420,70567,cliche,1432175404 +101420,70567,simple,1432175442 +101420,71745,bittersweet,1446494293 +101420,71745,childhood,1446494287 +101420,71745,Coming of age,1446494267 +101420,71745,handheld cameras,1446494279 +101420,71745,not really for kids,1446494300 +101420,71745,Soundtrack,1446494269 +101420,72011,alienation,1432092469 +101420,72011,cynicism,1432092448 +101420,72011,loneliness,1432092435 +101420,72011,self discovery,1432092462 +101420,72011,thoughtful,1432092444 +101420,72226,animation,1432091264 +101420,72226,George Clooney,1432091256 +101420,72226,lovable,1432091294 +101420,72226,quirky,1432091268 +101420,72226,stop motion,1432091252 +101420,72226,visually appealing,1432091259 +101420,72395,bad pacing,1432173308 +101420,72395,child abuse,1432173217 +101420,72395,over coming adversity,1432173339 +101420,72395,realistic,1432173230 +101420,73023,country music,1432087944 +101420,73321,twist ending,1432089741 +101420,73321,ugly,1432089767 +101420,74416,british english,1432084918 +101420,74416,coming of age,1432084908 +101420,74416,loneliness,1432084927 +101420,74416,Michael Fassbender,1432084938 +101420,74416,realism,1432084910 +101420,74416,realistic,1432084904 +101420,74553,animation,1432084430 +101420,74553,art,1432084435 +101420,74553,Atmospheric,1432084459 +101420,74553,beautiful,1432084431 +101420,74553,celtic,1432084475 +101420,74553,stylized,1432084433 +101420,74754,extended sex scene,1432075105 +101420,74754,quotable,1432075109 +101420,74754,so bad it's good,1432075119 +101420,74754,Tommy Wiseau,1432075090 +101420,74754,unintentional comedy,1432075099 +101420,74754,unintentionally funny,1432075128 +101420,74789,dissapointing,1432091759 +101420,74789,Tim Burton,1432091736 +101420,74789,visuals,1432091744 +101420,74789,weird,1432091726 +101420,77455,consumerism,1432086135 +101420,77455,social commentary,1432086138 +101420,78105,Jake Gyllenhaal,1432088320 +101420,78349,cliche characters,1432085718 +101420,78349,cliche dialogue,1432085727 +101420,78349,dialogue driven,1432085705 +101420,78349,group psychology,1432085700 +101420,78349,mediocre acting,1432085713 +101420,78349,mediocre ending,1432085711 +101420,78349,over the top,1432085734 +101420,78574,acting,1432088445 +101420,78574,authenticity,1432088519 +101420,78574,cinematography,1432088431 +101420,78574,cultural authenticity,1432088458 +101420,78574,Jennifer Lawrence,1432088420 +101420,78574,realism,1432088426 +101420,78574,resilience,1432088434 +101420,78574,soundtrack,1432088480 +101420,78574,teenage girl,1432088437 +101420,79242,Julianne Moore,1432087898 +101420,79927,absurd,1432078086 +101420,79927,absurdist,1432078857 +101420,79927,based on book,1432078073 +101420,79927,crime,1432078017 +101420,79927,dark comedy,1432078750 +101420,79927,noir thriller,1432078056 +101420,79927,plot twists,1432078880 +101420,79927,vigilante justice,1432078034 +101420,79927,violence,1432078099 +101420,80463,cinematography,1432174682 +101420,80463,music,1432174690 +101420,80463,overrated,1432174715 +101420,80549,Emma Stone,1432089576 +101420,80549,witty,1432089580 +101420,80586,coming of age,1432081645 +101420,80693,bittersweet,1432086178 +101420,80693,coming of age,1432086170 +101420,80693,quirky,1432086172 +101420,80693,trying to be indie,1432086190 +101420,80693,underdeveloped plot,1432086198 +101420,80831,dark,1432086315 +101420,80831,excellent cinematography,1432086331 +101420,81847,animation,1432081000 +101420,81847,disney,1432081007 +101420,81847,fairy tale,1432080999 +101420,81847,mother daughter relationship,1432081145 +101420,81847,musical,1432081009 +101420,81847,singing,1432081012 +101420,81847,they never get his nose right,1432081033 +101420,81847,visually appealing,1432081004 +101420,81847,warm happy colours,1432081128 +101420,81847,weak villain,1432081041 +101420,82461,stylized,1432174306 +101420,82461,virtual reality,1432174292 +101420,82461,visually appealing,1432174296 +101420,84242,excellent acting,1432079488 +101420,84242,feels real,1432079326 +101420,84242,James Gandolfini,1432079194 +101420,84242,Kristen Stewart,1432079195 +101420,84242,New Orleans,1432079270 +101420,84944,adult humor,1432088619 +101420,84944,animation,1432088610 +101420,84944,heroic journey,1432088639 +101420,84944,quirky style,1432088630 +101420,84944,spaghetti western,1432088604 +101420,85179,anime,1432082340 +101420,85179,anime cliches,1432082351 +101420,85179,family,1432082354 +101420,85179,Japanese,1432082347 +101420,85179,virtual reality,1432082343 +101420,85510,abuse,1432087677 +101420,85510,Cinematography,1432087673 +101420,85510,costume design,1432087799 +101420,85510,lame ending,1432087709 +101420,85510,reality or imagination?,1432087688 +101420,85510,soundtrack,1432087669 +101420,85510,stylized,1432087666 +101420,86332,Chris Hemsworth,1432091218 +101420,87234,Coming Of Age,1432085553 +101420,87234,interesting characters,1432085559 +101420,87234,quirky,1432175233 +101420,87234,stylistic,1432175219 +101420,88129,ambient music,1432091503 +101420,88129,atmospheric,1432091470 +101420,88129,cinematography,1432091472 +101420,88129,great soundtrack,1432091478 +101420,88129,lack of character,1432091506 +101420,88129,overrated,1432091546 +101420,88163,dysfunctional family,1432089891 +101420,88163,intelligent,1432089915 +101420,88163,plot twist,1432089870 +101420,88267,hand-drawn,1432080940 +101420,88267,lots of jokes,1432080934 +101420,90405,cheesy,1432173653 +101420,90405,great idea wasted,1432173671 +101420,90405,unfinished universe,1432173688 +101420,90405,unintentionally funny,1432173697 +101420,91500,battle royale,1432084783 +101420,91500,bow & arrow,1432084807 +101420,91500,intense,1432084787 +101420,91500,Jennifer Lawrence,1432084760 +101420,91500,shaky camera,1432084764 +101420,91500,strong female lead,1432084828 +101420,91500,survival,1432084770 +101420,91653,Coping With Loss,1432084989 +101420,91653,Family,1432085030 +101420,91653,feel-good,1432084980 +101420,91653,lacklustre,1432085012 +101420,91653,predictable,1432084977 +101420,91653,script,1432085072 +101420,91673,19th century,1432079596 +101420,91673,gender ambiguity,1432079586 +101420,91673,loneliness,1432079592 +101420,93006,amateurs,1432077929 +101420,93006,Harry Potter,1432077906 +101420,93006,musical,1432077915 +101420,93006,parody,1432077904 +101420,93363,better than expected,1432086834 +101420,93363,childish plot,1432086824 +101420,93363,sci-fi,1432086815 +101420,93510,funny,1432088821 +101420,93510,self-aware,1432088826 +101420,93721,Japan,1432086063 +101420,93721,Makes you hungry,1432086104 +101420,93721,minimalist,1432086073 +101420,94018,bad science,1432085591 +101420,94018,cheesy,1432085613 +101420,94018,childish,1432085609 +101420,94018,Poor Plot,1432085593 +101420,94070,bittersweet,1432086676 +101420,94070,great old British cast,1432086785 +101420,94070,Old age,1432086681 +101420,94150,1880s,1432080334 +101420,94150,Hugh Dancy,1432080277 +101420,94150,preachy,1432080287 +101420,94150,predictable,1432080289 +101420,94480,bad acting,1432079019 +101420,94480,bad effects,1432079032 +101420,94780,beautiful cinematography,1432082957 +101420,94780,boring,1432082965 +101420,94780,charlize theron,1432082959 +101420,94780,chris hemsworth,1432082961 +101420,94780,visuals,1432082980 +101420,94780,weak plot,1432082951 +101420,94959,cinematography,1432090552 +101420,94959,coming of age,1432090564 +101420,94959,dialogue,1432090583 +101420,94959,diverse cast,1432090616 +101420,94959,funny,1432090562 +101420,94959,original,1432090556 +101420,94959,quirky,1432090545 +101420,94959,small town,1432090571 +101420,94959,stylized,1432090548 +101420,94959,Wes Anderson,1432090543 +101420,94959,wilderness,1432090568 +101420,94959,young love,1432090606 +101420,95167,animation,1432088718 +101420,95167,Archery,1432088733 +101420,95167,celtic music,1432088726 +101420,95167,Pixar,1432088698 +101420,95167,predictable,1432088760 +101420,95167,Scotland,1432088696 +101420,95167,visuals,1432088714 +101420,95207,Predictable,1432075152 +101420,95207,Stupid,1432075159 +101420,95207,vampires,1432075189 +101420,95309,apocalyptic,1432084379 +101420,95309,clever,1432084405 +101420,95309,road trip,1432084372 +101420,95309,surprisingly touching,1432084363 +101420,96079,beautiful cinematography,1432091572 +101420,96079,beautifully filmed,1432091564 +101420,96079,cinematography,1432091567 +101420,96179,amish,1432077409 +101420,96179,the power of forgiveness,1432077400 +101420,96588,future cult classic,1432086471 +101420,96588,music,1432086373 +101420,96588,quotable,1432086407 +101420,96588,vocalists,1432086380 +101420,96821,amazing soundtrack,1432089439 +101420,96821,awkward situations,1432089433 +101420,96821,based on a book,1432089427 +101420,96821,bittersweet,1432089422 +101420,96821,character development,1432089465 +101420,96821,coming of age,1432089419 +101420,96821,music,1432089444 +101420,97752,complicated,1432089498 +101420,97752,pretentious,1432089506 +101420,97752,too long,1432089512 +101420,98809,adventure,1432091645 +101420,98809,too long,1432091652 +101420,99007,comedic horror,1432085971 +101420,99007,cured by love/hope,1432085967 +101420,99007,post-apocalyptic,1432085979 +101420,99007,quirky,1432085994 +101420,99007,unconventional,1432085973 +101420,99007,unconventional zombies,1432085985 +101420,99007,zombies,1432085963 +101420,99114,Great performances,1432176851 +101420,99114,Over the top,1432176856 +101420,99114,Quentin Tarantino,1432176837 +101420,99114,Soundtrack,1432176858 +101420,99114,Spaghetti Western,1432176845 +101420,99114,tense,1432176898 +101420,99114,too long,1432176865 +101420,99114,violence,1432176840 +101420,99114,visually appealing,1432176854 +101420,99149,character driven,1432087280 +101420,99149,great soundtrack,1432087295 +101420,99437,bad plot. senseless,1432081563 +101420,99437,hard to follow,1432081576 +101420,99437,misleading title,1432081551 +101420,99437,nonlinear,1432081545 +101420,99437,silly,1432081557 +101420,99437,surreal,1432081544 +101420,101962,anime,1432081407 +101420,101962,coming of age,1432081439 +101420,101962,growing up,1432081429 +101420,101962,Mamoru Hosoda,1432081411 +101420,101962,moving,1432081427 +101420,101962,nature,1432081449 +101420,101962,nature vs. civilization,1432081456 +101420,101962,raising children,1432081473 +101420,101962,single mother,1432081417 +101420,101962,tearjerker,1432081404 +101420,102123,dialogue,1432087118 +101420,102123,Ensemble Cast,1432087112 +101420,102123,Immature,1432087094 +101420,102123,lacks substance,1432087086 +101420,102123,movie business,1432087084 +101420,103048,coming of age,1432081902 +101420,103228,cinematography,1432086562 +101420,103228,colours,1432086630 +101420,103228,disappointing,1432086575 +101420,103228,Guillermo del Toro,1432086546 +101420,103228,neon,1432086600 +101420,103228,ridiculous,1432086557 +101420,103228,Ron Perlman,1432086554 +101420,103228,visually appealing,1432086645 +101420,103341,cornetto trilogy,1432087411 +101420,103539,character driven,1432084179 +101420,103539,coming of age,1432084202 +101420,103539,drinking,1432084199 +101420,103539,high school,1432084174 +101420,103539,realistic,1432084184 +101420,103980,acting,1432086288 +101420,103980,depressing,1432086279 +101420,103980,narcissism,1432086263 +101420,104283,anime,1432082130 +101420,104283,cheesy,1432082152 +101420,104283,Hayao Miyazaki,1432082146 +101420,104283,romance,1432082136 +101420,104283,Studio Ghibli,1432082139 +101420,104841,atmospheric,1432091050 +101420,104841,cinematography,1432090977 +101420,104841,intense,1432090983 +101420,104841,pathos,1432091082 +101420,104841,score,1432091003 +101420,104841,setting:space,1432091041 +101420,104841,Simple,1432091104 +101420,104841,suspense,1432090979 +101420,104841,visually appealing,1432090974 +101420,104841,visually stunning,1432090989 +101420,104944,abuse,1432082654 +101420,104944,feels real,1432082836 +101420,104944,foster care,1432082655 +101420,104944,Foster Home,1432082649 +101420,104944,good acting,1432082661 +101420,105213,social commentary,1432085502 +101420,105844,boring,1432088406 +101420,106002,bullying,1432086887 +101420,106002,children acting like adults,1432086867 +101420,106002,genocide,1432086872 +101420,106002,militarism,1432086907 +101420,106002,military,1432086882 +101420,106002,space,1432086916 +101420,106438,based on a true story,1432085647 +101420,106438,bittersweet,1432085658 +101420,106438,Ireland,1432085650 +101420,106438,Judi Dench,1432085652 +101420,106491,asian mysticism,1432082876 +101420,106491,Cliched,1432082893 +101420,106491,costumes,1432082865 +101420,106491,expository dialogue,1432082887 +101420,106491,fantasy,1432082867 +101420,106491,Keanu Reeves,1432082862 +101420,106491,martial arts,1432082922 +101420,106491,Samurai,1432082856 +101420,106696,animation,1432081170 +101420,106696,cliche,1432081227 +101420,106696,Disney,1432081164 +101420,106696,feminist,1432081189 +101420,106696,music,1432081183 +101420,106696,musical,1432081174 +101420,106696,siblings,1432081184 +101420,106696,sister sister relationship,1432081203 +101420,106696,sisters,1432081186 +101420,106696,unnecessary villain,1432081234 +101420,106918,imagination,1432087582 +101420,106918,photography,1432087592 +101420,106918,travel,1432087587 +101420,106920,bittersweet,1432089934 +101420,106920,boring,1432089955 +101420,106920,loneliness,1432089939 +101420,108056,Pokemon,1432077525 +101420,108190,anti-intellectual,1432087571 +101420,108190,bad writing,1432087544 +101420,108190,Shailene Woodley,1432087535 +101420,108190,The Chosen One,1432087531 +101420,108190,unintelligent,1432087549 +101420,108548,comedy,1432079530 +101420,108548,laugh track,1432079541 +101420,108548,nerd culture,1432079574 +101420,108548,nerds,1432079558 +101420,108548,TV series,1432079513 +101420,108932,anti-conformity,1432083427 +101420,108932,breaking the fourth wall,1432083403 +101420,108932,clever,1432083408 +101420,108932,colorful,1432083451 +101420,108932,Computer Animation,1432083533 +101420,108932,fun,1432083406 +101420,108932,good plot,1432083503 +101420,108932,imagination,1432083518 +101420,108932,original,1432083465 +101420,108932,quirky,1432083424 +101420,108932,Script,1432083461 +101420,108932,stop motion,1432083416 +101420,108932,The Chosen One,1432083486 +101420,108932,visually appealing,1432083444 +101420,109374,colourful sets,1432090695 +101420,109374,ensemble cast,1432090718 +101420,109374,great dialogue,1432090660 +101420,109374,odd sense of humor,1432090682 +101420,109374,quirky,1432090648 +101420,109374,ridiculous,1432090678 +101420,109374,stylized,1432090656 +101420,109374,visually appealing,1432090641 +101420,109374,whimsical,1432090663 +101420,109487,bad dialogue,1432091330 +101420,109487,Deus Ex Machina Ending,1432091393 +101420,109487,Hans Zimmer,1432091361 +101420,109487,Self-Indulgent,1432091374 +101420,109487,sounds,1432091325 +101420,109487,space,1432091308 +101420,109487,spectacle,1432091383 +101420,109487,suspense,1432091353 +101420,109487,thought-provoking,1432091313 +101420,109487,visually appealing,1432091350 +101420,109848,arthouse,1432082529 +101420,109848,beautiful photography,1432082446 +101420,109848,creepy,1432082498 +101420,109848,Kubrick-like,1432082464 +101420,109848,little dialogue,1432082456 +101420,109848,Scarlett Johansson,1432082444 +101420,109848,slow,1432082436 +101420,109848,unnerving,1432082478 +101420,109848,visually appealing,1432082447 +101420,109951,Dutch,1432077557 +101420,109951,murder mystery,1432077586 +101420,109951,thriller,1432077544 +101420,110297,cameo appearences,1432079796 +101420,110297,muppets,1432079664 +101420,110297,musical comedy,1432079848 +101420,110297,stereotypes,1432079717 +101420,110809,bad script,1432078908 +101420,110809,chick flick,1432078990 +101420,110809,high school,1432078911 +101420,110809,young adult,1432078930 +101420,111364,bland hero,1432086491 +101420,111364,gradual tension,1432086504 +101420,111364,not enough Bryan Cranston,1432086514 +101420,111443,hipster,1432084271 +101420,111443,internet,1432074941 +101420,111443,not funny,1432074937 +101420,111443,predictable,1432074871 +101420,111443,Twitter,1432074878 +101420,111443,vanity,1432074927 +101420,111659,not enough story,1432083050 +101420,111759,Actually good despite Tom Cruise,1432087063 +101420,111759,original plot,1432086963 +101420,111759,Reluctant Hero,1432086973 +101420,111759,time loop,1432086954 +101420,111921,cancer,1432085842 +101420,111921,teenage romance,1432085844 +101420,111921,young adult,1432085905 +101420,112175,predictable ending,1432087839 +101420,112175,sequel,1432087830 +101420,112290,coming of age,1432088573 +101420,112290,realism,1432088593 +101420,112552,Academic stress,1432088296 +101420,112552,education,1432088198 +101420,112552,good acting,1432088192 +101420,112552,greatness,1432088184 +101420,112552,intense,1432088174 +101420,112552,Miles Teller,1432088230 +101420,112552,perfectionism,1432088202 +101420,112552,Teacher Student,1432088206 +101420,112552,Tense,1432088171 +101420,112556,David Fincher,1432076551 +101420,112556,false accusation,1432076565 +101420,112556,marriage,1432076559 +101420,112556,Neal Patrick Harris,1432076573 +101420,112556,Psychopathy,1432076555 +101420,112556,suspense,1432076610 +101420,112556,unpredictable,1432076547 +101420,112852,adventure,1432091151 +101420,112852,characters with individual goals,1432091158 +101420,112852,fun,1432091148 +101420,112852,overrated,1432091181 +101420,114552,bland characters,1432080550 +101420,114552,cheese,1432080350 +101420,114552,claymation,1432080371 +101420,114552,quirky,1432080599 +101420,114552,stop-motion,1432080374 +101420,114552,voice acting,1432080524 +101420,114554,folk tale,1432078248 +101420,114554,folklore,1432078250 +101420,114554,slow plot,1432078619 +101420,114554,studio ghibli,1432078298 +101420,114554,vague story,1432078681 +101420,114554,watercolours and charcoal,1432078561 +101420,115617,Animation,1430674136 +101420,115617,Disney,1430674145 +101420,115617,inspiring,1430674131 +101420,115617,superhero,1430674116 +101420,115664,animated,1432079946 +101420,115664,bad pacing,1432080034 +101420,115664,colourful,1432080018 +101420,115664,Day of the dead,1432079943 +101420,115664,details,1432080062 +101420,115664,mexican folklore,1432080184 +101420,115664,Mexico,1432080094 +101420,115664,music score,1432080210 +101420,115664,romance,1432079954 +101420,118696,"First half good, second half bad",1432087191 +101420,118696,Throwing physics away,1432087200 +101420,119141,bromance,1432086016 +101420,119141,crude,1432086030 +101420,119145,british comedy,1444405874 +101420,119145,gentlemanly,1444405867 +101420,119145,gratuitous violence,1444405886 +101420,119145,Parody,1444405878 +101420,119802,Dutch,1432077482 +101420,119802,family film,1432077465 +101420,122882,Colourful apocalypse,1444405693 +101420,122882,great soundtrack,1444405695 +101420,122882,over the top,1444405739 +101420,122882,visually appealing,1444405681 +101420,131066,animation,1432077749 +101420,131066,barbarians,1432077695 +101420,131066,common fantasy themes,1432077667 +101420,131066,crude humor,1432077807 +101420,131066,parody,1432077646 +101420,131066,sexualized,1432077729 +101420,131066,underdog,1432077708 +101420,131656,no dialogue,1436899495 +101420,131656,stopmotion,1436899513 +101420,134130,cheesy ending,1444405371 +101420,134130,disappointing,1444405519 +101420,134130,faithful book adaption,1444405409 +101420,134130,matt damon,1444405531 +101420,134130,propaganda,1444405468 +101420,134130,Space,1444405352 +101420,134170,8o's,1433327533 +101420,134170,parody,1433327526 +101420,134170,so bad it's good,1433327517 +101425,5618,animation,1447559927 +101425,5618,Hayao Miyazaki,1447559923 +101425,31658,Hayao Miyazaki,1447559948 +101437,356,narrated,1437876120 +101437,356,ping pong,1437876120 +101437,356,tom hanks,1437876120 +101437,2959,escapism,1228683517 +101437,3285,Danny Boyle,1240883957 +101437,3285,island,1240883931 +101437,3285,Leonardo DiCaprio,1240883934 +101437,3285,Nudity (Topless),1240883938 +101437,3285,romance,1240883962 +101437,3285,utopia,1240883948 +101437,4878,escapism,1228683527 +101437,7022,derivative plot,1338968776 +101437,7256,mountain climbing,1339305671 +101437,7256,nature,1339305673 +101437,7256,survival,1339305676 +101437,7256,TRIUMPH OF THE HUMAN SPIRIT,1339305637 +101437,7256,true story,1339305675 +101437,7256,watch again,1339305678 +101437,55247,escapism,1228683506 +101437,59369,father daughter relationship,1340337640 +101437,59369,fight scenes,1340337621 +101437,59369,implausible,1340337674 +101437,59369,Liam Neeson,1340337636 +101437,59369,pacing,1340337651 +101437,59369,sex trafficking,1340337660 +101437,59369,torture,1340337683 +101437,59369,unrealistic,1340337619 +101437,72998,futuristic,1261640417 +101437,84954,boring,1339745569 +101437,84954,implausible,1339745655 +101437,84954,Matt Damon,1339745574 +101437,84954,plot,1339745637 +101437,84954,Romance,1339745647 +101437,92420,clever,1339305464 +101437,92420,flying,1339305484 +101437,92420,Seattle,1339305554 +101437,92420,shaky footage,1339305438 +101437,92420,telekinesis,1339305471 +101451,866,lesbian,1188581757 +101451,866,mafia,1188581757 +101451,866,organized crime,1188581757 +101451,866,thelma & louise,1188581757 +101451,4262,immigration,1188581767 +101451,4262,mafia,1188581767 +101451,4262,organized crime,1188581767 +101451,4262,the american dream,1188581767 +101497,1345,horror,1435715978 +101497,42723,splatter,1435715857 +101497,44397,mutation,1435715931 +101497,62203,psychological,1435715737 +101497,79251,rape,1435715824 +101497,116413,friendship,1435715652 +101525,2529,damn dirty apes,1144864826 +101525,6615,Robert Englund,1144865272 +101525,32587,comic book,1144866454 +101525,39052,Free to download,1144865342 +101525,44191,comic book,1144864913 +101551,1210,sci-fi,1154713960 +101551,8874,zombies,1154713919 +101560,2692,original,1188343969 +101560,51662,Nudity (Topless),1188343973 +101567,6379,cannibalism,1449391355 +101567,68319,body alteration,1449136188 +101567,80693,coming of age,1449849751 +101567,102033,based on a true story,1449126077 +101567,112290,coming of age,1449121259 +101567,112290,growing up,1449121244 +101567,112290,life,1449121255 +101567,112290,realism,1449121246 +101567,144568,detective,1449393645 +101567,144568,horror,1449393638 +101600,272,history,1183635700 +101600,595,fairy tale,1183635920 +101600,1955,divorce,1183635813 +101607,260,fantasy,1436955188 +101607,260,good vs evil,1436955195 +101607,105519,philisophical,1436955418 +101607,105519,visually appealing,1436955418 +101607,105519,weak ending,1436955418 +101651,4993,story,1307226342 +101651,5952,epic,1307226371 +101652,32,original,1368303337 +101652,1089,original,1368303337 +101652,2232,scifi,1219249353 +101652,4878,original,1368303337 +101652,4878,surreal,1219249559 +101652,5127,mystery,1219247263 +101652,5127,supernatural,1219247263 +101652,7153,oscar,1219249491 +101652,56174,virus,1219247790 +101671,260,action,1444880188 +101671,260,war,1444880182 +101691,31309,poverty,1307393281 +101706,6565,Horses,1146367922 +101715,260,space action,1433554830 +101715,260,space western,1433554820 +101720,2406,this is when Michael Douglas use to act,1160614860 +101720,3408,great acting,1160614907 +101720,3408,great story,1160614906 +101720,44195,I came out loving it,1160615757 +101720,44195,I laughed at its satire,1160615757 +101720,44195,I went to becuase there wasn't anything else,1160615757 +101720,44195,very smart movie,1160615757 +101720,44199,Spike Lee surprised me with this kind of action movie but he definetly delivers,1160615655 +101720,45730,M. Night Shyamalan,1160615513 +101720,46578,ALL THE ACTORS WERE JUST WONDERFUL!! A movie for anybody,1160615360 +101720,46578,comedy and action,1160615360 +101720,46578,GREAT GREAT MOVIE,1160615360 +101720,46578,it has drama,1160615360 +101720,47950,I am a big Adrien Brody fan and he did not dissappoint me here,1160615491 +101720,47950,the atmosphere very natural,1160615491 +101720,47950,the photagraphy is amazing,1160615491 +101720,47970,netflixq,1160615384 +101722,1425,humorous,1219764069 +101729,4993,Lord of the Rings,1435948553 +101729,112852,action,1435948581 +101729,112852,comic book,1435948581 +101729,112852,sci-fi,1435948581 +101731,5618,anime,1429029373 +101731,5618,Studio Ghibli,1429029382 +101773,260,good vs evil,1439760753 +101773,260,jedi,1439760739 +101773,260,sci-fi,1439760746 +101781,260,action,1444276092 +101781,260,sci-fi,1444275995 +101781,260,space,1444276027 +101794,72,chris eigeman,1284952876 +101794,72,noah baumbach,1284952876 +101794,72,quotable dialogue,1284952876 +101794,417,quotable dialogue,1284952909 +101794,417,Whit Stillman,1284952909 +101794,1732,quotable dialogue,1284952322 +101794,1966,quotable dialogue,1284952946 +101794,1966,Whit Stillman,1284952959 +101794,2395,societal criticism,1284952593 +101794,2959,societal criticism,1284952377 +101794,3481,discussion of culture,1284952434 +101794,3481,indie rock,1284952410 +101794,3897,discussion of culture,1284952463 +101794,4714,comedic bullies,1284952689 +101794,4714,shared mission,1284952689 +101794,5508,discussion of culture,1284952502 +101794,5508,quotable dialogue,1284952502 +101794,6215,discussion of culture,1284952989 +101794,6215,rock and roll,1284952989 +101794,6942,quotable dialogue,1284952777 +101794,8949,discussion of culture,1284952538 +101794,8949,wine,1284952538 +101794,26313,shared mission,1284952632 +101794,34552,Richard Curtis,1284952805 +101794,73820,clever banter,1284952835 +101794,77455,renegade art,1284953018 +101797,5080,Jason Schwartzman,1287862828 +101797,5080,Jason Segel,1287862830 +101797,6193,good story,1287862584 +101797,6193,Horrible acting,1287862550 +101797,6193,ridiculous dialogue,1287862560 +101797,6193,twist ending,1287862608 +101797,7254,director's cut is better,1287863848 +101807,296,multiple storylines,1305614155 +101807,377,chase,1304541820 +101807,377,tense,1304541837 +101807,608,based on a true story,1304745398 +101807,608,Minnesota,1304745376 +101807,2355,funny,1304096355 +101807,2393,Based on a TV show,1288040620 +101807,2393,sci-fi,1288040611 +101807,2393,space,1288040616 +101807,5618,Oscar (Best Animated Feature),1300117818 +101807,6016,true story,1300506243 +101807,41828,old,1305352610 +101807,54648,comedy,1303005119 +101807,68954,talking animals,1306207232 +101807,69122,comedy,1298785399 +101807,69122,disappointing,1298785417 +101807,72369,based on true story,1301761068 +101807,72369,too long,1301761056 +101807,72998,fabulous,1315775610 +101807,79091,cute girls,1299958585 +101807,81591,creepy,1297453943 +101807,81591,daf,1294690589 +101807,81591,horror,1297453949 +101807,81591,Natalie Portman,1297453937 +101807,81834,Final chapter,1290936477 +101807,81847,test,1291773737 +101807,82167,Anne Hathaway,1297453791 +101807,82167,happy ending,1297453795 +101807,84944,boring,1333419192 +101807,84944,talking animals,1333419215 +101807,86298,Comedy,1305940844 +101807,86298,talking animals,1305940845 +101807,86644,car chase,1306683479 +101807,87222,Chinese factor,1330462385 +101807,87222,talking animals,1308511278 +101807,87876,not funny,1309914076 +101807,91653,Matt Damon,1337481306 +101807,91653,predictable,1337481282 +101809,260,fantasy,1432189237 +101809,260,sci-fi,1432189229 +101823,91542,Funny,1447525414 +101823,91542,predictable,1447525408 +101823,91542,sherlock holmes,1447525400 +101823,98809,adventure,1447525058 +101823,106489,adventure,1447524973 +101823,106489,hobbit,1447524998 +101849,4308,musical,1277422311 +101849,4308,quirky,1277422314 +101849,7925,Japan,1277434751 +101849,48385,controversial,1277422492 +101849,48385,funny,1277422495 +101849,48385,mockumentary,1277422474 +101849,48385,satire,1277422481 +101849,66203,adapted from:book,1277435207 +101849,66203,chick flick,1277435213 +101849,66203,romantic comedy,1277435217 +101892,260,epic adventure,1435909256 +101892,260,Intergalactic,1435909269 +101892,103549,clever,1436374065 +101892,103549,funny,1436374067 +101892,105769,futuristic,1436345465 +101892,129354,tricks,1437225581 +101892,129354,unexpected,1437225542 +101892,137561,dramatic,1436374547 +101892,137561,friends,1436374563 +101892,137561,gay couples,1436374560 +101905,34162,tokyo story,1137304628 +101948,539,almost never seeing each other,1256250703 +101948,539,Meg Ryan,1256250680 +101948,539,Tom Hanks,1256250674 +101948,902,Audrey Hepburn,1255353756 +101948,1246,bittersweet,1250111872 +101948,1246,Ethan Hawke,1250111853 +101948,1246,friendship,1250111887 +101948,1246,poetry,1250111892 +101948,1246,Quotable,1250111901 +101948,1246,real,1250111876 +101948,1246,Robert Sean Leonard,1250111862 +101948,1307,Billy Crystal,1248481897 +101948,1307,friends vs lovers,1248482038 +101948,1307,friendship,1248482054 +101948,1307,friendship of love,1248482085 +101948,1307,jazz,1248481905 +101948,1307,meeting again and again,1248481960 +101948,1307,meg ryan,1248481894 +101948,1307,seen more than once,1248481912 +101948,1307,talking on phone,1248481969 +101948,1307,traveling,1248482091 +101948,1357,Australia,1264883528 +101948,1357,biography,1264883532 +101948,1357,Geoffrey Rush,1264883521 +101948,1357,library,1264883549 +101948,1357,music is key to story (not Musical genre),1264883541 +101948,1357,true story,1264883536 +101948,1812,god,1272821098 +101948,1812,searching for god,1272821110 +101948,1835,angel,1248477578 +101948,1835,Bibliothek,1248477585 +101948,1835,Impersonation,1248477613 +101948,1835,Meg Ryan,1248477595 +101948,2318,aging,1246786024 +101948,2318,dysfunctional family,1246786029 +101948,2318,immigrants,1246786056 +101948,2318,Philip Seymour Hoffman,1246786019 +101948,2318,Phillip Seymour Hoffman,1246786039 +101948,2318,rape,1246786062 +101948,2318,sexuality,1246786064 +101948,2318,WRITER'S LIFE,1246786046 +101948,2340,aging,1248477477 +101948,2340,Anthony Hopkins,1248473975 +101948,2340,death,1248474010 +101948,2340,father daughter relationship,1248474029 +101948,2340,Impersonation,1248476983 +101948,2340,impersonation of death,1248477012 +101948,2340,lies,1248473988 +101948,2424,Meg Ryan,1256250860 +101948,2424,Tom Hanks,1256250865 +101948,3885,Famke Janssen,1251398471 +101948,3885,friends or lovers,1251398519 +101948,3885,friends vs lovers,1251398533 +101948,3885,Jon Favreau,1251398474 +101948,4022,Tom Hanks,1299463352 +101948,4454,claymation,1289661053 +101948,4454,creativity,1289661066 +101948,4454,imagination,1289661071 +101948,4454,no dialogue,1289661074 +101948,4992,Hugh Jackman,1255296866 +101948,4992,James Mangold,1255296877 +101948,4992,So cute!,1255296870 +101948,5014,Dakota Fanning,1295141389 +101948,5014,feel-good,1295141395 +101948,5014,sean penn,1295141400 +101948,5303,Meg Ryan,1264883445 +101948,5303,Tom Hanks,1264883436 +101948,6377,Pixar,1250110144 +101948,6377,Pixar animation,1250110209 +101948,6708,father daughter relationship,1264462157 +101948,6708,twist ending,1264462167 +101948,7038,Calista Flockhart,1253659304 +101948,7147,bittersweet,1250683366 +101948,7147,coming of age,1250683370 +101948,7147,dreamlike,1250683373 +101948,7147,father-son relationship,1250683376 +101948,7147,imagination,1250683379 +101948,7147,stylized,1250683395 +101948,7147,thought-provoking,1250683400 +101948,7147,twist ending,1250683389 +101948,7162,American Civil War,1246785830 +101948,7162,based on a book,1246785743 +101948,7162,Civil War,1246785827 +101948,7162,court,1246785842 +101948,7162,Jude Law,1246785751 +101948,7162,Philip Seymour Hoffman,1246785819 +101948,7162,Renee Zellweger,1246785815 +101948,7162,War,1246785822 +101948,7194,Jean Seberg,1268754688 +101948,8529,humorous,1285439786 +101948,8529,no totally happy ending,1285439791 +101948,8529,original plot,1285439793 +101948,8529,Tom Hanks,1285439777 +101948,9010,Bibliothek,1250974337 +101948,9010,France,1250974343 +101948,9010,friendship,1250974340 +101948,9010,Marion Cotillard,1250974333 +101948,32289,figure skating,1269246908 +101948,32289,physics,1269246910 +101948,33880,avante garde,1266878429 +101948,33880,FATHERS AND SONS,1266878415 +101948,33880,independent film,1266878408 +101948,33880,unique,1266878432 +101948,37741,Catherine Keener,1251553203 +101948,37741,Philip Seymour Hoffman,1251553166 +101948,37741,writers,1251553129 +101948,37741,writers at work,1251553121 +101948,46967,Hugh Jackman,1255339800 +101948,46967,Woody Allen,1255340209 +101948,47202,blindness,1248481455 +101948,47202,deaf and blind relationship,1248481469 +101948,47202,deafness,1248481439 +101948,47202,less than 300 ratings,1248481402 +101948,47202,war,1248481485 +101948,49130,Albert Finney,1247170199 +101948,49130,disappointing,1247170180 +101948,49130,inappropriate music,1247170161 +101948,49130,Marion Cotillard,1247170147 +101948,49130,Ridley Scott,1247170194 +101948,49130,Russell Crowe,1247170191 +101948,49130,upbeat music,1247170166 +101948,49130,wine and romance,1247170170 +101948,49130,worse than expected,1247170184 +101948,49312,alan rickman,1270632170 +101948,49312,Carrie-Anne Moss,1270632193 +101948,49312,mental illness,1270632165 +101948,49312,Sigourney Weaver,1270632178 +101948,50685,bad poetry,1248219927 +101948,50685,baking,1248219864 +101948,50685,bittersweet,1248219872 +101948,50685,doctors,1248219922 +101948,50685,food,1248219869 +101948,50685,Keri Russell,1248219875 +101948,50685,marriage,1248219913 +101948,50685,pie,1248219881 +101948,50685,pregnancy,1248219891 +101948,50685,setting:diner,1248219895 +101948,50685,small town,1248219909 +101948,53988,adapted from:book,1290634992 +101948,53988,Claire Danes,1290634995 +101948,53988,Hugh Dancy,1290635022 +101948,53988,Meryl Streep,1290634998 +101948,53988,unrealised ideas by creators,1290635013 +101948,53988,Vanessa Redgrave,1290635009 +101948,55247,Alaska,1250109458 +101948,55247,based on a book,1250109461 +101948,55247,based on a true story,1250109465 +101948,55247,experience,1250109469 +101948,55247,great soundtrack,1250109467 +101948,56949,marriage,1260357652 +101948,59107,alternate endings,1259190883 +101948,59107,choice,1259190898 +101948,59107,choices,1259190895 +101948,59107,dilemma,1259191020 +101948,59107,imagine,1259190961 +101948,59107,james horner,1259191942 +101948,59107,life & death,1259190971 +101948,59107,life choices,1259190913 +101948,59107,life death choice,1259191038 +101948,59107,life philosophy,1259190982 +101948,59107,philosophy,1259190985 +101948,61037,live sounds,1295116543 +101948,61037,miracle,1295116595 +101948,61037,no soundtrack,1295116577 +101948,61037,picturesque drama,1295116528 +101948,61075,AGE DISPARITY ROMANCE,1246785609 +101948,61075,based on a book,1246785620 +101948,61075,Nudity (Topless - Notable),1246785635 +101948,61075,teacher student relationship,1246785615 +101948,66371,beautiful music,1267472750 +101948,66371,beautiful scenery,1267472753 +101948,66371,calm,1267472843 +101948,66371,cello,1267472830 +101948,66371,earnest,1267472756 +101948,66371,emotional,1267472759 +101948,66371,father son relationship,1267472765 +101948,67087,brother-brother relationship,1251398645 +101948,67087,brothers,1251398636 +101948,67087,father-son relationship,1251398626 +101948,67087,friendship,1251398584 +101948,67087,friendship between boys,1251398615 +101948,67087,gay friendly,1251398659 +101948,67087,lack of friends,1251398741 +101948,70567,Hugh Dancy,1266845518 +101948,71520,man in the sky,1270641433 +101948,71520,religion,1270641429 +101948,71520,Ricky Gervais,1270641421 +101948,71520,witty,1270641443 +101948,71579,adultery,1265838939 +101948,71579,Carey Mulligan,1265839004 +101948,71579,coming of age,1265838950 +101948,71745,Catherine Keener,1268998682 +101948,71745,childhood,1268998711 +101948,71745,Coming of age,1268998704 +101948,71745,monster,1268998906 +101948,71745,Mother Son Relationship,1268998902 +101948,71745,touching,1268998705 +101948,71899,animation,1270631841 +101948,71899,asperger syndrome,1270631969 +101948,71899,australia,1270631935 +101948,71899,Deep,1270631860 +101948,71899,friendship,1270631929 +101948,71899,letters,1270631916 +101948,71899,mental illness,1270631975 +101948,71899,Philip Seymour Hoffman,1270631821 +101948,71899,slow paced,1270631851 +101948,71899,stop motion,1270631835 +101948,72720,Colin Firth,1299449716 +101948,73017,Robert Downey Jr.,1264883487 +101948,73017,slow motion,1264883489 +101948,74324,autism,1301657191 +101948,74324,biography,1301657193 +101948,74324,biology,1301657198 +101948,74324,Claire Danes,1301657195 +101948,74324,great soundtrack,1301657230 +101948,74324,science,1301657203 +101949,356,based on a book,1326424401 +101949,356,classic,1326424398 +101949,356,quirky,1326424394 +101949,4700,Anne Hathaway,1358508214 +101949,4700,Julie Andrews,1358508212 +101949,6593,Lindsay Lohan,1358508152 +101949,6753,Robert Duvall,1358507310 +101949,8970,Johnny Depp,1358507430 +101949,46976,love,1358507495 +101949,46976,quirky,1358507487 +101949,46976,touching,1358507502 +101949,46976,Will Ferrell,1358507476 +101949,56587,Morgan Freeman,1358507345 +101949,85788,clever twists,1326425070 +101949,85788,ghosts,1326425045 +101949,85788,gore-free,1326425048 +101949,85788,no CGI,1326425051 +101949,85788,scary,1326425057 +101949,85788,supernatural,1326425061 +101949,85788,suspense,1326425087 +101971,4016,llama face!,1201870359 +101989,260,classic,1435067538 +101989,260,Science Fiction,1435067526 +101995,318,Morgan Freeman,1431192438 +101995,318,powerful ending,1431192452 +101995,318,thought-provoking,1431192443 +101995,7143,Japan,1431151733 +101995,7143,Japanese culture,1431151751 +101995,7143,martial arts,1431151757 +101995,7143,samurai,1431151731 +101995,7254,alternate reality,1431192572 +101995,7254,sci-fi,1431192574 +101995,7254,time travel,1431192569 +101995,7438,martial arts,1431149678 +101995,7438,Quentin Tarantino,1431149652 +101995,7438,twist ending,1431149660 +101995,30749,based on a true story,1431150637 +101995,30749,ethnic conflict,1431150643 +101995,30749,history,1431150737 +101995,30749,journalism,1431150723 +101995,30749,racism,1431150739 +101995,49530,action,1431150781 +101995,49530,Civil War,1431150774 +101995,49530,corruption,1431150772 +101995,49530,journalism,1431150786 +101995,49530,Leonardo DiCaprio,1431150771 +101995,68157,alternate history,1431150206 +101995,68157,black comedy,1431150025 +101995,68157,Brad Pitt,1431149867 +101995,68157,dark comedy,1431150155 +101995,68157,dialogue,1431150158 +101995,68157,Quentin Tarantino,1431149865 +101995,68157,satire,1431149869 +101995,99114,Great performances,1431150298 +101995,99114,Leonardo DiCaprio,1431149778 +101995,99114,Quentin Tarantino,1431149809 +101995,99114,Revenge,1431149786 +101995,99114,Spaghetti Western,1431149843 +101995,106491,Samurai,1431151668 +102019,39292,historical,1234374567 +102019,58490,Frances McDormand,1234374876 +102019,58839,George Clooney,1234721782 +102040,112,martial arts,1438055754 +102040,260,action,1438052457 +102040,260,comedy,1438052481 +102040,260,dark,1438052490 +102040,260,fighting,1438052452 +102040,260,funny,1438052476 +102040,260,good acting,1438052466 +102040,260,Highly quotable,1438052473 +102040,260,inspiring,1438052497 +102040,86892,action,1438054971 +102040,86892,dark,1438054971 +102040,86892,kidnapping,1438054971 +102040,88129,great soundtrack,1447806388 +102040,102684,beautifully filmed,1449976758 +102079,50147,Lacey Chabert,1422426519 +102079,51937,gurgle,1422426461 +102079,54503,good dialogue,1422426263 +102079,59306,big black tits,1422426617 +102079,67867,lame kamamaha wave,1422426702 +102079,68941,rape,1422426351 +102092,260,no interest,1435212432 +102102,8024,nashville,1200947916 +102103,5952,fantasy,1449395718 +102103,5952,tolkien,1449395711 +102110,316,vijay-action,1444546823 +102110,527,vijay-tag2,1444546962 +102110,4223,vijayrawtag,1435906873 +102110,4310,vijayrawtag,1435906826 +102110,4638,vijayrawtag,1435907064 +102110,4701,vijayrawtag,1435906967 +102110,4718,vijayrawtag,1435906851 +102110,4901,vijayrawtag,1435907011 +102110,4975,vijayrawtag,1435906806 +102110,5254,vijayrawtag,1435906916 +102110,5679,vijayrawtag,1435906733 +102110,5872,vijayrawtag,1435906950 +102110,5952,vijayrawtag,1435906218 +102110,5956,vijayrawtag,1435907082 +102110,6218,vijayrawtag,1435907102 +102110,6534,vijayrawtag,1435906934 +102110,6537,vijayrawtag,1435906768 +102110,7458,vijayrawtag,1435907033 +102110,8376,vijayrawtag,1435907049 +102110,135885,vijayrawtag,1435906101 +102147,260,coming of age,1443960415 +102147,260,"imaginary world, characters, story, philosophical",1443960421 +102160,68319,exciting,1243874442 +102160,68319,hugh jackman,1243874450 +102160,68319,Storytelling,1243874474 +102186,546,Terrible,1186684768 +102186,2423,Chevy Chase,1186684740 +102186,2423,Killer Squirrel,1186684740 +102186,3100,Fly Fishing,1186684759 +102186,3263,Woody Harrelson,1186684783 +102186,3450,Geriatric,1186684748 +102186,53953,Hotel,1186685653 +102188,1347,overrated,1297724062 +102188,2081,Ursula,1297724509 +102188,2361,Amazing!,1297723968 +102188,2361,Divine,1297723979 +102188,2361,Edith Massey,1297723993 +102209,26,Shakespearean,1188369927 +102209,917,based on a book,1188370416 +102209,1190,Spanish,1188370278 +102209,1277,historical,1188369725 +102209,1727,horses,1188370054 +102209,2068,Bergman/Rossellinbergmani,1188370173 +102209,2068,swedish,1188370146 +102209,2677,musicians,1188369967 +102209,3478,musicians,1188370081 +102209,4174,based on a book,1188370572 +102209,4357,classic,1188370601 +102209,4357,Marilyn Monroe,1188370601 +102209,4992,future,1188370010 +102209,5528,strange story,1188369773 +102209,5693,dance movie,1188370020 +102209,6724,classic,1188370453 +102209,8361,natural disaster,1188369875 +102209,8596,classic,1188370492 +102209,27266,future,1188370680 +102209,27821,United Nations,1188370367 +102209,31694,based on a book,1188370743 +102209,40826,drugs,1188370772 +102209,45722,romantic,1188369812 +102209,46578,beaty contests,1188369900 +102209,46578,children's drama,1188369900 +102214,260,classic,1436909025 +102214,260,space adventure,1436909011 +102229,260,action,1435527582 +102229,260,adventure,1435527524 +102229,260,far future,1435527537 +102229,260,Harrison Ford,1435527543 +102229,260,sci fi,1435527513 +102234,65,stupid movie,1188171125 +102234,838,jane austin,1188170879 +102234,1188,great movie by baz lurman,1188170905 +102234,1441,cute movie,1188171067 +102234,1688,cute movie,1188171247 +102234,2478,funny movie,1188171043 +102234,2485,silly teen movie,1188171101 +102234,2872,pretty good movie,1188171055 +102234,3825,dumb movie,1188171221 +102234,4310,awful movie,1188171010 +102234,4447,silly movie,1188171019 +102234,4992,So cute!,1188171331 +102234,5064,Great adaptation,1188171162 +102234,5377,great Nick Hornby adaptation,1188170925 +102234,5679,scary...,1188170961 +102234,6157,bad acting,1188171196 +102234,6378,Great remake,1188170991 +102234,6934,good sequel,1188170953 +102234,7147,Love Ewan McGregor,1188170938 +102234,8644,predictable movie,1188171092 +102234,8910,Good movie,1188171352 +102234,8917,funny,1188171286 +102234,8984,bad sequel,1188171266 +102234,45722,AMAZING!!!!!,1188171206 +102234,48516,Great movie,1188171226 +102267,129514,brutally honest,1435375240 +102267,129514,funny,1435375240 +102267,129514,social commentary,1435375240 +102273,260,classic,1173216571 +102273,296,clever,1173216654 +102273,296,great music,1173216655 +102273,296,out of sequence,1173216654 +102273,296,violent,1173216654 +102273,318,brotherhood,1173216621 +102273,318,escape,1173216621 +102273,318,faith,1173216598 +102273,318,hope,1173216621 +102273,318,prison,1173216621 +102273,904,Frightening,1173216503 +102273,1197,Billy Crystal,1173216549 +102273,1197,chearful a must see classic,1173216547 +102273,1197,Fairy tale,1173216534 +102280,260,good vs evil,1438138733 +102280,260,sci-fi,1438138728 +102306,260,"epic , action saga",1443812682 +102309,2764,doesn't stand test of time,1166862168 +102319,26569,australian,1423992736 +102319,26569,dystopian,1423992736 +102319,26569,ozploitation,1423992736 +102368,260,Alec Guinness,1444865361 +102368,260,mythology,1444865340 +102406,3307,Chaplin,1256710892 +102406,8959,mystery,1399525125 +102406,8959,soundtrack,1399525142 +102406,50851,documentary,1257085084 +102406,59118,bittersweet,1244615323 +102406,59118,drama,1244615325 +102406,59118,feel-good,1244615312 +102406,59118,happy,1244615294 +102406,59118,no plot,1244615303 +102406,61240,swedish,1240980248 +102406,61240,vampire,1240980270 +102406,61240,vampires,1240980271 +102406,61401,based on a comic,1250048534 +102406,61401,comic book,1250048536 +102406,61401,Samuel L. Jackson,1250048528 +102406,61401,Scarlett Johansson,1250048523 +102406,61401,superhero,1250048538 +102406,68522,beautiful scenery,1245271340 +102406,68522,camerawork,1245271338 +102406,68522,condescending,1245271357 +102406,68522,nature,1245271322 +102406,68522,scenic,1245271342 +102406,68954,Pixar,1244615390 +102406,70286,plot hole,1251340722 +102406,89761,David Cronenberg,1361419535 +102430,1175,dark comedy,1394296839 +102430,1261,possession,1394229853 +102430,1748,atmospheric,1393809443 +102430,1748,dark,1393809446 +102430,1748,dystopia,1393809448 +102430,1748,visually appealing,1393809463 +102430,2502,corporate America,1393809405 +102430,2502,rebellion,1393809412 +102430,2502,true to life,1393809395 +102430,2600,alternate reality,1394229696 +102430,2606,dark comedy,1394230579 +102430,2672,alternate reality,1393800093 +102430,2672,great plot,1393800082 +102430,3275,vigilantism,1393851756 +102430,3535,dark comedy,1394230662 +102430,3535,humorous,1394230666 +102430,4027,funny,1393810715 +102430,4027,Quirky,1393810710 +102430,6290,cartoonish,1393799955 +102430,6290,creepy,1393799959 +102430,6440,quirky,1394229540 +102430,7827,brainwashing,1394229765 +102430,7827,double agents,1394229782 +102430,7827,mood,1394229771 +102430,8950,atmospheric,1393809336 +102430,8950,dark,1393809340 +102430,27773,Cinematography,1393800026 +102430,27773,twist ending,1393800016 +102430,32587,atmospheric,1394986138 +102430,32587,stylized,1394986135 +102430,44191,dystopia,1393809517 +102430,44191,philosophy,1393809528 +102430,44191,thought-provoking,1393809529 +102430,54995,zombies,1394225736 +102430,55442,melancholy,1394903302 +102430,62203,atmospheric,1393799676 +102430,62203,disturbing,1393799672 +102430,62203,ending,1393799660 +102430,62203,martyrdom,1394230151 +102430,62203,psychological,1393799667 +102430,65642,paradox,1394315664 +102430,71484,dystopia,1394217938 +102430,71484,poor execution,1394217935 +102430,71899,dark comedy,1394229337 +102430,80831,atmospheric,1393800144 +102430,80831,dark,1393800162 +102430,88129,atmospheric,1393851998 +102430,89047,dark comedy,1394295540 +102430,93838,thin plot,1394230524 +102430,99007,cured by love/hope,1397253148 +102430,101088,beautiful,1394230424 +102430,101088,visually stylish,1394230418 +102430,103017,twisted ending,1394468715 +102430,104841,Hollow,1394229813 +102430,106782,Funny,1395424580 +102431,106642,Doctor Who,1390304846 +102431,106782,Nudity (Full Frontal),1400771848 +102448,131050,action,1427651604 +102448,131050,invasion,1427651604 +102448,131050,sci-fi,1427651604 +102455,433,short-term memory loss,1368048974 +102455,468,gentle,1188780296 +102455,468,slow-paced,1188780296 +102455,1359,arnold,1368048678 +102455,1422,conspiracy theory,1368048842 +102455,1544,spielberg,1368048993 +102455,1693,spielberg,1368048993 +102455,2739,spielberg,1368048993 +102455,2819,conspiracy theory,1368048842 +102455,3248,lighthearted,1188780695 +102455,3248,musical,1188780695 +102455,3698,arnold,1368048678 +102455,3786,satire,1188822793 +102455,3929,marx brothers,1368049071 +102455,3986,arnold,1368048678 +102455,4091,cheerleading,1368048657 +102455,4189,jesus,1368048486 +102455,4387,dragon,1368048867 +102455,4558,arnold,1368048678 +102455,4612,jesus,1368048486 +102455,4795,stranded,1368048592 +102455,5055,dragon,1368048867 +102455,5377,mainstream,1188780349 +102455,5377,predictable movie,1188780349 +102455,5832,christian,1368048758 +102455,5882,treasure,1368048544 +102455,5942,cheerleading,1368048657 +102455,6254,screwball comedy,1368048713 +102455,6609,jesus,1368048486 +102455,7004,arnold,1368048678 +102455,7584,screwball comedy,1368048713 +102455,8167,treasure,1368048544 +102455,8711,screwball comedy,1368048713 +102455,8972,conspiracy theory,1368048842 +102455,25750,marx brothers,1368049071 +102455,26398,mars,1368048613 +102455,27822,stranded,1368048592 +102455,30816,disturbing,1188781065 +102455,34048,spielberg,1368048993 +102455,51086,conspiracy theory,1368048842 +102455,52241,short-term memory loss,1368048973 +102455,55732,mars,1368048613 +102455,68554,conspiracy theory,1368048842 +102455,74624,christian,1368048759 +102455,81562,mountain climbing,1368048935 +102455,84601,short-term memory loss,1368048973 +102455,86880,treasure,1368048544 +102455,91976,stranded,1368048592 +102486,260,classic,1430751079 +102486,260,spielberg,1430751072 +102486,122892,action,1430751213 +102486,122892,scifi,1430751213 +102486,122892,super-hero,1430751213 +102514,1199,black comedy,1281510819 +102514,1199,dreamlike,1281510813 +102514,1199,dystopia,1281510798 +102514,1199,surreal,1281510805 +102514,3751,aardman,1281518265 +102514,3751,Aardman studios,1281518269 +102514,3751,claymation,1281518259 +102514,3751,funny,1281518277 +102514,6286,atmospheric,1281450015 +102514,6286,Finnish,1281449995 +102514,6286,soundtrack,1281450056 +102514,6942,british,1281515591 +102514,6942,great soundtrack,1281515599 +102514,6942,multiple storylines,1281515584 +102514,33166,multiple storylines,1281515530 +102514,33166,twist ending,1281515549 +102514,67255,based on a book,1281449359 +102514,67255,cinematography,1281449330 +102514,67255,Noomi Rapace,1281449364 +102514,68157,Adolf Hitler,1281517569 +102514,68157,black comedy,1281517539 +102514,68157,violence,1281517566 +102514,68157,visually appealing,1281517554 +102514,69529,documentary,1281516563 +102514,69529,Earth,1281516568 +102514,69529,nature,1281516573 +102514,69529,scenic,1281516577 +102514,69529,soundtrack,1281516610 +102514,70293,based on a book,1281519204 +102514,70293,uplifting,1281519196 +102554,260,space adventure,1435821799 +102558,6123,visually appealing,1388379028 +102576,59784,feel good,1439978558 +102576,114662,inspiring,1439978625 +102616,2571,cult film,1448458708 +102616,2571,martial arts,1448458700 +102616,2571,sci-fi,1448458696 +102616,134130,based on book,1448458491 +102616,134130,Improvisation,1448458537 +102616,134130,realistic,1448458522 +102622,260,action,1443074586 +102622,260,space adventure,1443074636 +102676,96969,Morgan Freeman,1356898015 +102684,260,classic,1437166915 +102684,260,sci-fi,1437166906 +102693,260,Star Wars,1441443252 +102693,260,sword fight,1441443262 +102704,112171,Action,1432416730 +102704,112175,animated,1432416695 +102704,112623,emotional,1432416761 +102704,112623,sci-fi,1432416755 +102704,112623,talking animals,1432416765 +102704,119145,SciFi,1432416675 +102709,8914,clever,1177258965 +102736,260,han solo,1441126534 +102736,260,Mark Hamill,1441126530 +102760,260,Science Fiction,1439762948 +102760,260,space adventure,1439762953 +102762,16,Martin Scorsese,1225322272 +102771,52885,psychedellic,1208612261 +102772,260,masterpiece,1434758207 +102794,7323,great soundtrack,1332342960 +102823,527,WWII,1201735469 +102823,1285,black comedy,1201735416 +102823,1285,dark comedy,1201735419 +102823,42004,drugs,1201735324 +102823,42004,juvenile deliquent,1201735338 +102827,356,business,1424069693 +102827,356,drama,1424069682 +102827,356,romance,1424069702 +102830,3715,Betamax,1189350980 +102846,260,have not seen it,1441679772 +102846,91805,Bluffing,1442632377 +102846,91805,Little Mindgame,1442632390 +102850,248,bad,1186589145 +102850,248,Sinbad,1186589145 +102850,413,Comedy,1186588856 +102850,540,bad,1186588897 +102850,707,bad,1186588902 +102850,836,seen at the cinema,1186588944 +102850,1441,Not Seen,1186588856 +102850,1779,good,1186588894 +102850,1801,seen more than once,1186588917 +102850,2116,classic,1186588944 +102850,2431,bad,1186588902 +102850,2662,classic,1186588962 +102850,2951,bad,1186588901 +102850,4015,bad,1186589039 +102850,4343,really bad,1186589079 +102850,4343,Seann William Scott,1186589079 +102850,4446,sci-fi,1186588886 +102850,4448,boring,1186589048 +102850,5064,remake,1186589036 +102850,5254,Great movie,1186589125 +102850,5254,Wesley Snipes,1186589125 +102850,6016,not seen,1186588853 +102850,6157,bad,1186589133 +102850,6157,Ben Affleck,1186589133 +102850,6373,classic,1186588855 +102850,35836,BEST PICTURE,1186589105 +102850,35836,classic,1186589105 +102850,35836,hilarious,1186589105 +102850,35836,steve carell,1186589105 +102850,52712,HORRIBLE ACTING,1186722048 +102850,52712,interesting,1186722060 +102901,356,drama,1421118471 +102901,356,memorable,1421118471 +102901,356,touching,1421118471 +102917,904,One of Hitcocks best,1156213345 +102923,318,Repeat Watch,1170788428 +102923,318,Top 10 Movies,1170788460 +102923,1287,Classical Studies,1174018244 +102923,1566,Classical Studies,1174018499 +102923,2301,Classical Studies,1174018935 +102923,2728,Classical Studies,1174017908 +102923,2862,Classical Studies,1174018314 +102923,3181,Classical Studies,1174018770 +102923,3578,Classical Studies,1174018010 +102923,3771,Classical Studies,1174018475 +102923,4192,Classical Studies,1174018983 +102923,4282,Classical Studies,1174018674 +102923,5227,classical studies,1174019040 +102923,5540,Classical Studies,1174018876 +102923,6986,Classical Studies,1174018257 +102923,7348,Classical Studies,1174018956 +102923,7458,Classical Studies,1174018148 +102923,7757,Classical Studies,1174018550 +102923,8403,Classical Studies,1174018165 +102923,8480,Classical Studies,1174018593 +102923,8796,Classical Studies,1174018428 +102923,8897,Classical Studies,1174018806 +102923,8977,Classical Studies,1174018079 +102923,51662,Classical Studies,1174017966 +102928,1203,crime,1424117520 +102928,5995,Roman Polanski,1424117703 +102978,2373,fantasy,1208431717 +102978,2712,thriller,1137401404 +102978,2774,lesbian,1137400546 +102978,3355,Believer,1208432550 +102978,3355,Emanuelle Seigner,1208432193 +102978,5379,skinhead,1208432670 +102978,5379,white race,1208432797 +103003,45501,Classic Vince Vaughn,1162267736 +103017,260,hero quest,1435157062 +103017,260,space epic,1435157108 +103022,7311,gentle,1423493542 +103022,7311,historical,1423493542 +103022,7311,romance,1423493542 +103032,260,Science Fiction,1430806078 +103032,260,space opera,1430805366 +103076,260,classic,1430822797 +103076,260,scifi cult,1430822786 +103116,7022,based on a book,1350147848 +103122,260,fantasy,1439987270 +103122,260,war,1439987276 +103122,4878,philosophy,1441830527 +103122,4878,psychological,1441830522 +103122,4878,psychology,1441830504 +103122,4878,time travel,1441830514 +103122,114935,mindfuck,1439996880 +103122,114935,time travel,1439996886 +103122,114935,twist ending,1439996885 +103142,260,iconic,1440480110 +103142,260,prototype,1440480144 +103149,3996,action,1365170028 +103149,3996,kung fu,1365170038 +103149,92259,based on a true story,1365170337 +103149,92259,friendship,1365170324 +103149,92259,moving,1365170384 +103149,92751,funny,1365225721 +103149,92751,story,1365225738 +103149,96588,college,1365219663 +103149,96588,music,1365219675 +103149,96588,predictable,1365225414 +103175,1089,nonlinear,1448698128 +103175,1089,quirky,1448698131 +103175,1089,stylized,1448698137 +103175,1704,great acting,1448697784 +103175,1704,Great Screenplays,1448697789 +103175,1704,inspirational,1448697767 +103175,1704,intellectual,1448697758 +103175,1704,intelligent,1448697774 +103175,1704,math,1448697780 +103175,1704,mathematics,1448697770 +103175,1704,psychology,1448697778 +103175,1704,thoughtful,1448697764 +103175,2542,funny,1448698755 +103175,2542,multiple storylines,1448698745 +103175,2542,stylish,1448698748 +103175,2542,Unique,1448698753 +103175,2571,atmospheric,1448697845 +103175,2571,martial arts,1448697868 +103175,2571,philosophical,1448697848 +103175,2571,philosophy,1448697865 +103175,2571,stylized,1448697858 +103175,2571,thought-provoking,1448697854 +103175,2858,coming of age,1448698993 +103175,2858,dreams,1448699022 +103175,2858,excellent script,1448699000 +103175,2858,great acting,1448698998 +103175,2858,kevin spacey,1448698981 +103175,2858,midlife crisis,1448698991 +103175,2858,multiple storylines,1448699015 +103175,2858,Oscar (Best Actor),1448699020 +103175,2858,powerful ending,1448699016 +103175,2858,reflective,1448699004 +103175,2858,satirical,1448699002 +103175,2858,sexuality,1448698995 +103175,2858,social commentary,1448698984 +103175,2858,surrealism,1448698987 +103175,2858,thought-provoking,1448698978 +103175,2959,atmospheric,1448702875 +103175,2959,classic,1448702897 +103175,2959,complicated,1448702899 +103175,2959,mindfuck,1448702893 +103175,2959,philosophical,1448702889 +103175,2959,philosophy,1448702869 +103175,2959,powerful ending,1448702902 +103175,2959,psychological,1448702877 +103175,2959,psychology,1448702861 +103175,2959,quirky,1448702891 +103175,2959,satirical,1448702895 +103175,2959,social commentary,1448702865 +103175,2959,stylized,1448702908 +103175,2959,surreal,1448702867 +103175,2959,thought-provoking,1448702873 +103175,2959,twist ending,1448702862 +103175,4011,cynical,1448698570 +103175,4011,dialogue,1448698559 +103175,4011,Great dialogue,1448698554 +103175,4011,multiple storylines,1448698536 +103175,4011,quirky,1448698548 +103175,4011,stylish,1448698567 +103175,4011,twist ending,1448698541 +103175,4815,emotional,1448699603 +103175,4815,engaging,1448699640 +103175,4815,moving,1448699587 +103175,5445,mystery,1448697920 +103175,5445,Precognition,1448697911 +103175,5445,surreal,1448697916 +103175,5445,thought provoking,1448697923 +103175,5445,time travel,1448697914 +103175,5992,intellectual,1448699533 +103175,5992,Meryl Streep,1448699536 +103175,5992,multiple connecting storylines,1448699546 +103175,5992,Nicole Kidman,1448699530 +103175,5992,nonlinear,1448699542 +103175,6365,hacking,1448697939 +103175,6365,thought-provoking,1448697933 +103175,33166,cultural conflict,1448699408 +103175,33166,easily confused with other movie(s) (title),1448699426 +103175,33166,multiple storylines,1448699399 +103175,33166,Oscar (Best Picture),1448699404 +103175,33166,social commentary,1448699401 +103175,33166,twist ending,1448699407 +103175,57669,stylized,1448699090 +103175,57669,twist ending,1448699096 +103175,79702,artistic,1448699726 +103175,79702,cultural references,1448699701 +103175,79702,cute,1448699716 +103175,79702,funny,1448699699 +103175,79702,geeky,1448699707 +103175,79702,innovative,1448699724 +103175,79702,music,1448699709 +103175,79702,quirky,1448699697 +103175,79702,stylized,1448699691 +103175,79702,surreal,1448699705 +103175,79702,visually appealing,1448699694 +103175,79702,whimsical,1448699711 +103175,99114,Great performances,1448698905 +103175,99114,visually appealing,1448698903 +103183,17,Emma Thompson,1140551064 +103183,17,Kate Winslet,1140551064 +103183,20,afternoon section,1140555318 +103183,23,afternoon section,1140555072 +103183,25,Elisabeth - emotion!,1140550997 +103183,25,Nicolas Cage,1140550997 +103183,31,afternoon section,1140560265 +103183,32,Brad Pitt,1140549473 +103183,32,Madeleine Stowe,1140549473 +103183,34,boring,1140549933 +103183,36,emotion!,1140550947 +103183,47,Kevin Spacey,1140549701 +103183,47,Morgan Freeman,1140549701 +103183,47,very good thriller - Brad Pitt,1140549701 +103183,50,Benicio Del Toro,1140549397 +103183,50,Kevin Spacey,1140549397 +103183,62,emotion,1140551666 +103183,111,very good thriller,1140551657 +103183,140,afternoon section,1140560313 +103183,147,very good,1140557417 +103183,149,Interesting,1140557620 +103183,150,Interesting,1140549186 +103183,154,the best of,1140557881 +103183,165,afternoon section,1148593315 +103183,170,boring,1140556990 +103183,175,Very interesting,1141930315 +103183,186,afternoon section,1140555091 +103183,191,trash,1140558208 +103183,194,good,1148592817 +103183,208,very boring,1140551188 +103183,224,afternoon section,1140558548 +103183,235,Johnny Depp,1140546672 +103183,235,Tim Burton,1140546672 +103183,237,boring,1148592089 +103183,253,Antonio Banderas,1140550557 +103183,253,Brad Pitt,1140550557 +103183,253,Kirsten Dunst,1140550557 +103183,253,Stephen Rea,1140550557 +103183,256,funny,1148593567 +103183,260,George Lucas,1140549264 +103183,288,good casting and good director: very good film!!,1140551665 +103183,293,Gary Oldman,1140552115 +103183,293,Jean Reno,1140552115 +103183,293,Natalie Portman,1140552115 +103183,296,good edition - Quentin Tarantino,1140549081 +103183,300,John Turturro,1140551654 +103183,300,Ralph Fiennes,1140551654 +103183,303,boring,1140557446 +103183,337,emotion!,1140557369 +103183,339,boring,1140551124 +103183,356,Gary Sinise,1140549140 +103183,356,Tom Hanks,1140549140 +103183,364,very good for kids,1140549872 +103183,367,afternoon section,1140550800 +103183,370,boring,1140547114 +103183,380,funny,1140549282 +103183,382,afternoon section,1140560347 +103183,412,emotion!,1140560148 +103183,454,more or less,1140550598 +103183,457,Julianne Moore,1140547597 +103183,469,emotion!,1140554017 +103183,475,Daniel Day-Lewis,1140553381 +103183,475,Emma Thompson,1140553381 +103183,480,the best of Jurassic Park,1140547969 +103183,497,Kenneth Branagh,1140546212 +103183,508,emotion!,1140555415 +103183,515,Emma Thompson,1148592049 +103183,515,very good,1148592049 +103183,527,emotion!,1140549515 +103183,532,afternoon section,1148592736 +103183,535,Julianne Moore,1140554893 +103183,535,Robert Altman,1140554893 +103183,541,Ridley Scott,1140551653 +103183,541,Sean Young,1140551653 +103183,555,violence,1140558119 +103183,586,for kids,1140551707 +103183,587,afternoon section,1140550763 +103183,590,good photography,1140549222 +103183,593,Jodie Foster,1140549106 +103183,597,afternoon section,1148591732 +103183,597,Julia Roberts,1140550242 +103183,605,afternoon section,1148592716 +103183,608,Interesting,1140549487 +103183,618,boring,1140555652 +103183,648,Brian De Palma,1140549592 +103183,733,Ed Harris,1140550241 +103183,733,Nicolas Cage,1140550241 +103183,736,Helen Hunt,1140550243 +103183,736,Philip Seymour Hoffman,1140550243 +103183,750,Stanley Kubrick,1140553380 +103183,780,afternoon section,1148591718 +103183,781,emotion!,1140558901 +103183,784,boring,1141847760 +103183,858,Al Pacino,1140549740 +103183,858,Marlon Brando,1140549740 +103183,858,Robert Duvall,1140549740 +103183,866,gay,1141930233 +103183,924,the film!!,1141847021 +103183,1042,afternoon section,1140558864 +103183,1044,Interesting,1140554998 +103183,1057,Woody Allen,1141930753 +103183,1059,boring,1140557378 +103183,1073,boring,1140550472 +103183,1080,very clever,1140545843 +103183,1090,the best of war movies,1140552712 +103183,1094,very good,1148591981 +103183,1097,Drew Barrymore - good Spielberg,1140550527 +103183,1101,a classic,1140559814 +103183,1120,very good,1140555185 +103183,1120,Very interesting,1140555185 +103183,1127,Interesting,1140554615 +103183,1136,monty python alumni,1140551249 +103183,1185,emotion!,1140560089 +103183,1185,very good,1140560089 +103183,1190,Almodóvar!!!!,1140555475 +103183,1196,Harrison Ford,1140549436 +103183,1198,very good,1140559421 +103183,1200,Sigourney Weaver,1140551655 +103183,1206,Stanley Kubrick,1141846911 +103183,1210,Harrison Ford,1140549552 +103183,1213,Interesting,1140554545 +103183,1214,Ridley Scott,1140551291 +103183,1214,Sigourney Weaver,1140551291 +103183,1219,Alfred Hitchcock,1140552276 +103183,1219,Janet Leigh,1140552276 +103183,1227,Sergio Leone,1141931660 +103183,1240,the best of Terminator!,1140551036 +103183,1252,Jack Nicholson,1140546713 +103183,1258,Stanley Kubrick,1140545927 +103183,1258,the best of the Thrillers,1140545924 +103183,1260,classic,1148592647 +103183,1260,very good,1148592647 +103183,1265,funny,1140550927 +103183,1270,Christopher Lloyd,1140549913 +103183,1275,afternoon section,1140554633 +103183,1280,very good,1148592629 +103183,1289,Very interesting,1140553641 +103183,1291,afternoon section,1140551660 +103183,1295,a classic!!,1140560107 +103183,1339,good,1140558191 +103183,1345,a classic!!,1140556587 +103183,1348,classic,1148592587 +103183,1370,afternoon section,1140554684 +103183,1377,Michelle Pfeiffer,1140560288 +103183,1380,John Travolta,1140546694 +103183,1380,Olivia Newton-John,1140546694 +103183,1381,afternoon section,1140560380 +103183,1387,the best of Jaws,1140559400 +103183,1393,Interesting,1140559790 +103183,1394,afternoon section,1140556788 +103183,1407,Wes Craven,1140546522 +103183,1408,Daniel Day-Lewis,1140553074 +103183,1408,Madeleine Stowe,1140553074 +103183,1416,boring,1140555592 +103183,1464,very clever,1140556492 +103183,1464,Very interesting,1140556492 +103183,1464,very strange,1140556492 +103183,1479,boring,1141930556 +103183,1485,afternoon section,1141847539 +103183,1527,very funny!,1140558137 +103183,1544,boring,1140554773 +103183,1552,afternoon section,1140556867 +103183,1569,afternoon section,1140560016 +103183,1573,afternoon section,1140556809 +103183,1580,very funny!,1140551103 +103183,1597,afternoon section,1148591943 +103183,1610,action,1140552959 +103183,1616,afternoon section,1141847384 +103183,1617,Guy Pearce,1140550873 +103183,1617,Kevin Spacey,1140550873 +103183,1617,Russell Crowe,1140550873 +103183,1653,boring,1140547018 +103183,1672,Interesting,1141931508 +103183,1673,Julianne Moore,1140547314 +103183,1682,Very interesting,1141847466 +103183,1693,boring,1140559488 +103183,1721,Kate Winslet,1140551150 +103183,1721,Kathy Bates,1140551150 +103183,1729,Quentin Tarantino,1140554596 +103183,1783,boring,1140555276 +103183,1801,boring,1140553690 +103183,1835,the original is better,1140556854 +103183,1909,X-Files!!,1140554667 +103183,1917,afternoon section,1140554755 +103183,1923,boring,1140560008 +103183,1952,very good,1140559603 +103183,1961,emotion!,1140559613 +103183,1967,a classic!!,1140555797 +103183,1978,boring,1140554044 +103183,1997,Max von Sydow - good photography,1140547529 +103183,2006,boring,1140555497 +103183,2012,Christopher Lloyd,1140554744 +103183,2012,Elisabeth Shue,1140554744 +103183,2019,Akira Kurosawa!!!!,1140552229 +103183,2020,emotion!,1140560201 +103183,2028,Matt Damon,1140549854 +103183,2028,Tom Hanks,1140549854 +103183,2065,Woody Allen!!!!,1140553024 +103183,2076,a classic,1140556442 +103183,2100,afternoon section,1140559055 +103183,2115,action,1140559480 +103183,2115,very funny!,1140559480 +103183,2125,boring,1141930797 +103183,2126,afternoon section,1140556726 +103183,2133,afternoon section,1141930541 +103183,2143,adventure,1140559845 +103183,2194,very good edition,1140546010 +103183,2269,Interesting,1140555292 +103183,2291,very good,1140558470 +103183,2313,good,1140556407 +103183,2316,afternoon section,1141847363 +103183,2329,violence,1140551845 +103183,2336,Cate Blanchett !!!!,1140557207 +103183,2355,to kids,1140547629 +103183,2356,boring,1140557432 +103183,2357,emotion!,1140555896 +103183,2360,dogma 95,1140553833 +103183,2369,madonna,1140552990 +103183,2389,afternoon section,1140555113 +103183,2396,Geoffrey Rush,1140551661 +103183,2420,classic,1141930495 +103183,2424,boring,1140559072 +103183,2469,afternoon section,1140556878 +103183,2505,trash,1140556888 +103183,2542,Guy Ritchie,1140547380 +103183,2546,boring,1140560365 +103183,2567,afternoon section,1140555220 +103183,2571,Carrie-Anne Moss - The only good Matrix,1140549818 +103183,2571,Keanu Reeves,1140549818 +103183,2583,boring,1140554957 +103183,2617,boring,1140554425 +103183,2628,boring,1140551164 +103183,2640,fantasy,1140546998 +103183,2657,a classic,1140554415 +103183,2671,afternoon section,1140554515 +103183,2692,very clever,1140552663 +103183,2699,more or less,1140547285 +103183,2700,funny,1140547043 +103183,2706,boring,1140554349 +103183,2710,Interesting,1140546952 +103183,2716,afternoon section,1140551661 +103183,2739,emotion!,1140559454 +103183,2762,Interesting,1140550452 +103183,2778,boring,1140555660 +103183,2797,very good for kids,1140547345 +103183,2802,good,1140560334 +103183,2858,Annette Bening,1140549643 +103183,2858,Kevin Spacey,1140549643 +103183,2863,very good,1148592388 +103183,2908,gay,1141930300 +103183,2916,Very interesting,1140554457 +103183,2959,very clever,1140551956 +103183,2959,very good,1140551956 +103183,2997,very clever,1140559965 +103183,2997,very good,1140559965 +103183,2997,Very interesting,1140559965 +103183,3005,afternoon section,1140556971 +103183,3060,classic,1148592355 +103183,3067,very clever,1140555374 +103183,3075,Roman Polanski,1140557823 +103183,3160,Julianne Moore,1140554829 +103183,3160,Philip Seymour Hoffman,1140554829 +103183,3176,Very interesting,1140557226 +103183,3186,Interesting,1140556954 +103183,3198,Dustin Hoffman,1140552432 +103183,3198,Steve McQueen,1140552432 +103183,3262,Interesting,1140556511 +103183,3285,very good,1140557463 +103183,3285,Very interesting,1140557463 +103183,3386,boring,1140558158 +103183,3408,afternoon section,1141845867 +103183,3418,very good,1140558273 +103183,3448,very good,1148591828 +103183,3471,a classic,1140559380 +103183,3481,John Cusack,1140547970 +103183,3527,afternoon section,1148591815 +103183,3536,Interesting,1141931107 +103183,3578,very good,1140558246 +103183,3623,action,1140559904 +103183,3681,Sergio Leone is a master!,1140552828 +103183,3684,afternoon section,1140560242 +103183,3717,afternoon section,1140556900 +103183,3788,classic,1141845793 +103183,3791,classic,1148592301 +103183,3897,Kate Hudson,1140546039 +103183,3910,Björk,1140557786 +103183,3910,Lars von Trier,1140557786 +103183,3949,drugs,1140552369 +103183,3949,sex,1140552369 +103183,3949,violence - Jennifer Connelly!!!!,1140552369 +103183,3953,afternoon section,1140558930 +103183,3967,very good,1148592252 +103183,3977,afternoon section,1140560032 +103183,3996,Ang Lee,1140554079 +103183,4008,boring,1140559802 +103183,4020,afternoon section,1140557119 +103183,4021,Interesting,1140558489 +103183,4023,afternoon section,1140556832 +103183,4034,Benicio Del Toro,1140546519 +103183,4103,very good,1140559364 +103183,4144,Kar Wai Wong,1141845744 +103183,4148,boring,1140555036 +103183,4161,boring,1148593730 +103183,4235,very good,1140555978 +103183,4262,violence,1140552864 +103183,4285,afternoon section,1140560296 +103183,4306,very good for kids,1140559985 +103183,4325,classic,1141845819 +103183,4343,boring,1140555098 +103183,4361,a classic,1140559635 +103183,4367,boring,1140557019 +103183,4369,boring,1140553379 +103183,4370,boring,1140559538 +103183,4399,Interesting,1140557972 +103183,4487,afternoon section,1140559912 +103183,4572,boring,1140558286 +103183,4621,afternoon section,1148592232 +103183,4642,Very interesting,1140553869 +103183,4699,boring,1140555638 +103183,4848,David Lynch,1140556227 +103183,4865,Interesting,1140558560 +103183,4886,the best of for kids and adults,1140545810 +103183,4928,the best of Buñel,1140554104 +103183,4932,a classic!!,1140556648 +103183,4973,Mathieu Kassovitz,1140554491 +103183,4975,the original is better,1140559877 +103183,4993,the best of the Lord of the Rings,1140554338 +103183,4995,Very interesting,1140555778 +103183,5081,Mathieu Kassovitz,1141847336 +103183,5081,Vincent Cassel,1141847336 +103183,5172,Interesting,1141845955 +103183,5225,Very interesting,1140555995 +103183,5269,very estrange,1140557668 +103183,5269,Very interesting,1140557668 +103183,5303,afternoon section,1140559082 +103183,5314,boring,1140555907 +103183,5349,Tobey Maguire,1148591800 +103183,5367,very funny!,1140560127 +103183,5378,boring,1140554260 +103183,5445,Steven Spielberg,1140546736 +103183,5445,Tom Cruise,1140546736 +103183,5464,boring,1148592207 +103183,5489,Werner Herzog,1140554136 +103183,5517,Interesting,1140557726 +103183,5613,boring,1140557571 +103183,5618,very good for kids and adults,1140552187 +103183,5630,trash,1141931090 +103183,5633,Cate Blanchett,1140557139 +103183,5679,the japanese is better,1140556327 +103183,5712,very good,1140556634 +103183,5782,Jean-Paul Belmondo,1140552062 +103183,5809,trash,1140555548 +103183,5818,emotion! - Ana Claudia Talancón,1140556110 +103183,5841,boring,1140554207 +103183,5878,Leonor Watling,1148593148 +103183,5902,very clever,1140556763 +103183,5902,very good,1140556763 +103183,5952,fantasy,1140546992 +103183,5956,boring,1140557409 +103183,5989,funny,1140557398 +103183,5991,very good,1140559294 +103183,5992,Julianne Moore,1140554924 +103183,5992,Nicole Kidman,1140554924 +103183,6016,Alice Braga,1140552004 +103183,6016,Fernando Meirelles,1140552004 +103183,6016,Matheus Nachtergaele,1140552004 +103183,6091,Almodóvar!!!!,1140555528 +103183,6104,monty python alumni,1140552762 +103183,6113,Godard!!!,1140557689 +103183,6242,better than the american version,1148593102 +103183,6315,boring,1140555250 +103183,6373,Jennifer Aniston,1141847516 +103183,6373,Morgan Freeman,1141847516 +103183,6377,very good,1140554290 +103183,6378,afternoon section,1140558812 +103183,6534,boring,1140555855 +103183,6539,afternoon section,1140558500 +103183,6564,boring,1140557033 +103183,6666,Luis Buñuel,1140553971 +103183,6705,Very interesting,1141930365 +103183,6711,very clever,1140557105 +103183,6711,very good,1140557105 +103183,6711,Very interesting,1140557105 +103183,6863,funny,1148592165 +103183,6927,boring,1141847237 +103183,6953,boring,1140556194 +103183,7011,Almodóvar!!!!,1140555585 +103183,7046,very funny!,1140560229 +103183,7063,Werner Herzog,1140553946 +103183,7101,boring,1140555234 +103183,7151,boring,1140553660 +103183,7160,emotion!,1140558672 +103183,7276,trash,1140556980 +103183,7323,very good,1148592982 +103183,7361,the best of recent movies!,1140551922 +103183,7362,Interesting,1140557012 +103183,7367,funny,1140559039 +103183,7438,David Carradine,1140552590 +103183,7438,Quentin Tarantino,1140552590 +103183,7438,Samuel L. Jackson,1140552590 +103183,7438,Uma Thurman,1140552590 +103183,7483,the best of Walter Salles,1140555938 +103183,7616,a classic,1140556679 +103183,7618,Robert Downey Jr,1141846042 +103183,8327,Takeshi Kitano,1140545600 +103183,8360,good for kids,1140555398 +103183,8361,Interesting,1148592953 +103183,8464,Very interesting,1148592139 +103183,8529,emotion!,1140559013 +103183,8620,Buñel is a master,1140557954 +103183,8783,Interesting,1140558344 +103183,8798,afternoon section,1140559727 +103183,8861,trash,1140553758 +103183,8873,Interesting,1140555885 +103183,8905,boring,1140558301 +103183,8970,emotion!,1140558394 +103183,8970,very good,1140558394 +103183,8973,boring,1140556021 +103183,8981,Natalie Portman,1148592935 +103183,8983,Ziyi Zhang,1141845620 +103183,26152,funny,1140547005 +103183,26350,Jack Nicholson,1140546078 +103183,26599,Pedro Almodóvar,1140546100 +103183,26782,boring,1140547069 +103183,27773,best of 2005,1140545400 +103183,27773,very good,1140545391 +103183,27773,Very interesting,1140545391 +103183,27783,Very interesting,1140546196 +103183,30793,perfec image of tim burton,1140545542 +103183,32076,funny,1140546971 +103183,32124,boring,1140547051 +103183,32291,Woody Allen,1141930336 +103183,32587,funny,1140552292 +103183,33677,funny,1140546759 +103183,33903,it's all true,1140545676 +103183,34532,Kate Hudson - just a joke,1140546909 +103183,38061,so so,1140547098 +103205,1178,war,1138035936 +103205,7566,Up series,1158951588 +103205,8609,silent,1140458351 +103205,37741,1960's,1138231172 +103219,6874,funny,1429973243 +103219,6874,Uma Thurman,1429973232 +103219,92259,funny,1429974923 +103219,92259,psychological,1429974923 +103219,92259,touching,1429974923 +103233,127319,plot twists,1434576146 +103233,133731,Supernatural,1433711347 +103287,7438,Quentin Tarantino,1427544639 +103339,260,George Lucas,1432557655 +103339,260,sci-fi,1432557626 +103349,296,edgy,1435940210 +103349,296,unusual,1435940210 +103349,296,violent,1435940210 +103349,356,dark comedy,1438289717 +103349,356,historical,1438289717 +103349,356,inspiring,1438289717 +103352,47,Creative,1329845278 +103352,47,disturbing,1329845279 +103352,47,Kevin Spacey,1329845279 +103352,70,foot fetish,1329842588 +103352,508,aids,1329844740 +103352,946,jack benny,1329845995 +103352,1292,dated,1329844634 +103352,1292,Peter Sellers,1329844634 +103352,1717,unoriginal,1329843959 +103352,2004,wacky,1329844010 +103352,2119,ac/dc,1329843112 +103352,2159,disturbing,1329842002 +103352,2396,chick flick,1329844769 +103352,2396,Geoffrey Rush,1329844769 +103352,2652,Hammer Film Productions,1329842923 +103352,2657,weak story,1329842269 +103352,2746,black comedy,1329842463 +103352,2746,dark comedy,1329842465 +103352,2746,Great Songs,1329842488 +103352,2746,Rick Moranis,1329842488 +103352,2746,Steve Martin,1329842469 +103352,2762,twist ending,1329845267 +103352,3016,Anthology,1329842768 +103352,3507,based on a play,1329844730 +103352,3535,Disturbing,1329841857 +103352,3535,violent,1329841858 +103352,3785,ripoff of scream,1329843748 +103352,3917,cenobites,1329846413 +103352,3917,decadent,1329842384 +103352,3917,disgusting scenes,1329842384 +103352,3917,gory,1329842384 +103352,3917,great effects,1329842384 +103352,3917,haircut,1329842384 +103352,3917,makeup effects,1329842397 +103352,4148,lackluster sequel,1329843052 +103352,4226,nonlinear,1329845499 +103352,4262,long,1329845277 +103352,4876,effects,1329844099 +103352,4963,heist,1329845577 +103352,5771,remade,1329844264 +103352,5771,slasher,1329844260 +103352,5891,hard to watch,1329844179 +103352,5891,horrifying,1329844179 +103352,5891,Nudity (Full Frontal - Notable),1329844134 +103352,5891,RAPE & SEXUAL ABUSE,1329844179 +103352,6058,Ali Larter,1329843620 +103352,6058,bad acting,1329843620 +103352,6058,gore,1329843628 +103352,6058,Nudity (Topless),1329843625 +103352,6058,violent,1329843623 +103352,6290,Nudity (Rear),1329843713 +103352,6744,dance number,1329844284 +103352,6880,gore,1329843912 +103352,6880,grimy,1329843928 +103352,6880,scary,1329843928 +103352,6880,violence,1329843910 +103352,6888,better than original,1329844338 +103352,7454,not scary,1329843821 +103352,8774,Basil Rathbone as Sherlock Holmes,1329842888 +103352,8778,Basil Rathbone as Sherlock Holmes,1329842221 +103352,8947,disjointed timeline,1329843852 +103352,8947,Sarah Michelle Gellar,1329843852 +103352,8957,detective,1329841793 +103352,8957,Disturbing,1329841775 +103352,8957,serial killer,1329841777 +103352,8957,twist ending,1329841779 +103352,31502,Stephen King,1329841982 +103352,34323,freebird,1329842614 +103352,34323,violence,1329842623 +103352,39446,gore,1329843073 +103352,39446,serial killer,1329843075 +103352,41569,disappointing,1329845367 +103352,41569,long,1329845367 +103352,44828,comedy,1329842702 +103352,44974,disturbing,1329845078 +103352,51662,action,1329845029 +103352,51662,fun,1329845027 +103352,53000,Robert Carlyle,1329841940 +103352,54503,heartfelt,1329844791 +103352,54910,dark comedy,1329841757 +103352,54910,serial killer,1329841761 +103352,54910,twist ending,1329841762 +103352,55257,Uwe Boll,1329843987 +103352,56145,bleak atmosphere,1329841889 +103352,56145,stephen king,1329841893 +103352,57910,Nudity (Topless),1329843483 +103352,58332,found footage,1329843268 +103352,59604,easily confused with other movie(s) (title),1329842207 +103352,60072,contemptful,1329845136 +103352,60072,morgan freeman slumming,1329845146 +103352,64620,based on a play,1329844673 +103352,66427,B-movie,1329843307 +103352,66427,Bruce Campbell,1329843301 +103352,74458,twist ending,1329845288 +103352,75425,George A. Romero,1329844210 +103352,75425,weak characters,1329844207 +103352,81417,boring,1329843331 +103352,81417,characters stupid,1329843360 +103352,81417,shallow characters,1329843347 +103352,81535,tied up loose ends,1329844125 +103352,83134,Alan Tudyk,1329841316 +103352,83134,funny,1329841306 +103352,83134,Wacky ending,1329841298 +103356,27320,Surreal,1442917627 +103356,55118,David Cronenberg,1442920584 +103356,62203,disturbing,1442859291 +103356,62203,plot twist,1442859300 +103356,62203,psychological,1442859297 +103356,62203,shocking,1442859287 +103356,86142,Takashi Miike,1442920748 +103369,1208,Nudity (Topless),1424104222 +103369,1208,surreal,1424104214 +103369,1625,Mystery,1424104181 +103369,1625,psychological,1424104179 +103369,1625,twist ending,1424104176 +103369,55721,social commentary,1424104325 +103369,55721,special police forces,1424104324 +103380,1544,dinosaurs,1452116747 +103380,1580,aliens,1452116835 +103380,5459,sci-fi,1452116857 +103380,102125,funny,1452116721 +103380,102125,superhero,1452116710 +103380,130634,car racing,1452116656 +103380,130634,Fast Cars,1452116664 +103380,130634,Paul Walker,1452116654 +103404,6995,so bad it's good,1191233492 +103422,3906,"""middlebrow"" attempt at ""intelligent"" ending",1329074840 +103422,3906,Development through dialogue,1329074709 +103422,3906,dialogue driven,1329074765 +103422,3906,dropping the ball on the ending,1329074741 +103422,3906,incorporation of feedback,1329074784 +103422,3906,Interplay between Freeman and Hackman.,1329074686 +103422,3906,not action driven,1329074853 +103422,3906,secondary characters,1329074743 +103422,3906,wanted more San Juan flavor,1329074793 +103422,4037,characters,1352033062 +103422,4037,disappointingly predictable,1352033061 +103422,4037,feeble plot,1352033061 +103422,4037,flimsy story,1352033062 +103422,4037,Joe Mantegna,1352033062 +103422,4037,middlebrow,1352033062 +103422,4037,tightly focused,1352033062 +103422,4037,trite plot,1352033062 +103422,4037,writer's script,1352033062 +103422,6628,CHINESE DOWNHILL!!!,1329150860 +103422,8756,crazy comedy,1352034201 +103422,8756,dated,1352034201 +103422,8756,fun,1352034201 +103422,8756,light-hearted,1352034201 +103422,34696,Alain Delon,1329074954 +103422,34696,beginning sequence,1329074930 +103422,34696,suspense through cinemategoraphy,1329074947 +103422,68597,Alain Delon,1329075005 +103422,68597,construction of Ubahn,1329074992 +103422,68597,Wien,1329074996 +103422,69324,meh,1352033574 +103422,86882,a little too cutsie for its own good,1330355931 +103422,95449,"a ""fragment"" rather than a story",1352033523 +103422,95449,good fun,1352033523 +103422,95449,needed more dancing,1352033523 +103422,95449,should have been better,1352033523 +103434,7,remake,1168666264 +103434,49,lesbian,1142918690 +103434,153,comic book,1137821408 +103434,153,superhero,1137821396 +103434,266,Brad Pitt,1137820984 +103434,866,lesbian,1145604072 +103434,1271,lesbian,1137821444 +103434,1584,future,1137821425 +103434,1897,lesbian,1137821452 +103434,2059,dream house,1137821065 +103434,2059,family,1137821065 +103434,2059,vinyeard,1137821065 +103434,2059,winery,1137821065 +103434,2432,family,1137821467 +103434,2671,Julia Roberts,1137821026 +103434,2774,lesbian,1137821417 +103434,2861,baseball,1137820963 +103434,3156,future,1137820891 +103434,3156,robots,1137820891 +103434,3631,lesbian,1137825060 +103434,3786,lesbian,1145604061 +103434,3793,future,1137821107 +103434,3793,superhero,1137821086 +103434,3854,lesbian,1137820675 +103434,3854,war,1137820939 +103434,4246,Funniest Movies,1137820923 +103434,4342,gay,1140465998 +103434,4389,lesbian,1166680489 +103434,4880,family,1137821176 +103434,5222,lesbian,1137821164 +103434,5445,future,1137821294 +103434,5652,lesbian,1145604226 +103434,5992,lesbian,1137821153 +103434,5992,oscar,1137821153 +103434,6365,future,1137821274 +103434,6683,foreign,1147475410 +103434,6683,lesbian,1145604075 +103434,6934,future,1137821282 +103434,6942,Up lifting,1137821257 +103434,7034,lesbian,1166680673 +103434,8360,Funniest Movies,1137821363 +103434,8533,The most romantic,1137821336 +103434,8636,comic book,1137821388 +103434,8644,future,1137820848 +103434,8644,robots,1137820848 +103434,8918,lesbian,1167800101 +103434,8969,Funniest Movies,1137821125 +103434,32300,lesbian,1153174238 +103434,33649,Funniest Movies,1137821356 +103434,33649,lesbian,1137821356 +103434,33679,Angelina Jolie,1137821321 +103434,33679,Brad Pitt,1137821321 +103434,33817,lesbian,1166681637 +103434,43744,lesbian,1166681927 +103434,49961,homophobic,1173983443 +103434,51094,lesbian,1173053311 +103444,52241,Nudity (Topless),1216326064 +103450,296,Quentin Tarantino,1444941869 +103450,1291,Harrison Ford,1444774465 +103450,1291,Sean Connery,1444774468 +103450,5952,Adventure,1444409699 +103450,5952,Great Score,1444409670 +103450,5952,Kitsch,1444409593 +103450,6373,Morgan Freeman,1444774356 +103457,2194,re-watch,1166437809 +103457,2599,re-watch,1166437706 +103457,3052,re-watch,1166437792 +103457,3408,re-watch,1166437720 +103495,260,Ok,1443452990 +103514,47725,incoherent,1312006899 +103514,47725,predictable,1312006899 +103571,1783,boring,1157736941 +103572,1196,could carry on but i might end up spoilin it for you,1206382554 +103575,260,space,1432140995 +103575,260,Star Wars,1432140987 +103583,260,adventure,1440171184 +103583,260,sci-fi,1440171170 +103583,260,space,1440171178 +103601,60950,Woody Allen,1246307152 +103678,97886,Social Anxiety,1388307622 +103727,4446,gaia,1141505812 +103734,356,inspiring,1438649330 +103734,356,oscar winner,1438649330 +103734,356,special effects,1438649330 +103760,260,trilogy,1431813264 +103795,94,Natalie Portman,1358532450 +103795,8981,Natalie Portman,1358532383 +103795,44191,Natalie Portman,1358532266 +103795,55999,Natalie Portman,1358532563 +103795,58154,Natalie Portman,1358532495 +103795,72605,Natalie Portman,1358532527 +103795,81591,Natalie Portman,1358532273 +103803,260,Science Fiction,1440782606 +103803,260,Space,1440782619 +103827,1221,Al Pacino,1442304016 +103827,1221,classic,1442304003 +103827,1221,Francis Ford Coppola,1442304038 +103827,1221,great acting,1442304051 +103827,1221,Italy,1442304025 +103827,2019,Akira Kurosawa,1442304088 +103827,2019,atmospheric,1442304085 +103827,2019,classic,1442304078 +103827,2019,Japan,1442304082 +103827,2019,masterpiece,1442304079 +103827,2019,samurai,1442304074 +103827,2028,action,1442304125 +103827,2028,cinematography,1442304132 +103827,2028,history,1442304128 +103827,2028,spielberg,1442304136 +103862,260,adventure,1435502536 +103862,260,space,1435502521 +103874,1254,AFI 100,1197182852 +103874,6254,AFI 100 (Laughs),1197182849 +103874,6254,Oscar (Best Directing),1197182845 +103874,52668,Adam Brody,1197182109 +103890,63062,police corruption,1434083530 +103890,63062,political,1434083539 +103890,63062,wrongly accused,1434083524 +103890,84273,Agnosticiscm,1434083401 +103890,84273,Scientific Way,1434083453 +103890,84273,Social Revolution,1434083436 +103902,551,Christmas,1323842238 +103902,551,Danny Elfman,1323842238 +103902,551,Halloween,1323842238 +103902,551,Holiday,1323842238 +103902,551,Musical,1323842238 +103902,551,Stop Motion,1323842238 +103902,551,Tim Burton,1323842238 +103902,1219,Alfred Hitchcock,1323842307 +103902,2205,easily confused with other movie(s) (title),1324429867 +103902,2413,cult classic,1323840389 +103902,2413,cultural references,1323840389 +103902,3255,Bechdel Test:Pass,1323839818 +103902,4489,culture clash,1323840431 +103902,4995,Based on a true story,1323842177 +103902,4995,Biography,1323842177 +103902,4995,historically inaccurate,1323842177 +103902,7451,Amy Poehler,1323840523 +103902,7451,Bechdel Test:Pass,1323840523 +103902,7451,Lindsay Lohan,1323840523 +103902,7451,Tina Fey,1323840523 +103902,27251,too long,1324355909 +103902,27660,cyberpunk,1324356014 +103902,27899,esoteric,1323841784 +103902,56174,post-apocalyptic,1324356796 +103902,57453,Bechdel Test: Pass,1323839421 +103902,57453,Independent Film,1323839432 +103902,66097,adapted from:book,1324356257 +103902,66097,Added character,1324356260 +103902,66097,claymation,1324356273 +103902,66097,stop motion,1324356284 +103902,66097,Surreal,1324356267 +103902,69122,low humour,1324356456 +103902,69122,plot holes,1324356414 +103902,69122,Vulgar,1324356425 +103902,70293,Meryl Streep,1323839534 +103902,71518,Bechdel Test:Pass,1323840144 +103902,72407,awesome soundtrack,1324431239 +103902,79287,easily confused with another title,1323840177 +103915,480,dinosaurs,1432716805 +103915,480,funny,1432716805 +103915,480,scary,1432716805 +103935,111,Classic,1152492202 +103935,111,cult film,1152492204 +103945,80549,Emma Stone,1293417701 +103954,27595,so bad its good,1426477264 +103954,33288,brutal,1426477654 +103954,88129,violence,1426479494 +103954,112183,hectic,1426479427 +103954,112183,psychological,1426479427 +103954,112183,theatrical acting,1426479427 +103954,133387,beautiful scenery,1431317605 +103954,133387,brazil,1431317605 +103954,133387,documentary,1431317605 +103954,133387,enigmatic,1431317605 +103954,150282,brazillian,1452183483 +103954,150362,china,1452311240 +103954,150362,chinese,1452311238 +103954,150362,rice fields,1452311246 +103982,109487,Matthew McConaughey,1425188201 +103982,109487,space,1425188205 +103982,109487,thought-provoking,1425188208 +103995,37475,domestic violence,1297532166 +103995,64839,Nudity (Topless),1297357200 +103995,64839,strippers,1297357209 +104031,1242,denzel washington,1441822747 +104031,6942,christmas time,1441822682 +104031,69122,funny,1441822712 +104052,260,great story,1430496487 +104052,260,Science Fiction,1430496429 +104055,253,Anne Rice,1144937022 +104055,253,Brilliant,1144937022 +104055,253,Vampires,1144937022 +104055,1046,Beautiful Thing,1144936445 +104055,1046,Gay,1144936445 +104055,1046,Gay Brits,1144936445 +104055,1321,Classic,1144937316 +104055,1321,Kinda funny,1144937316 +104055,1345,Felt bad for her,1144937368 +104055,1345,Great movie for the time period,1144937368 +104055,1345,I'd of killed those people too if I were her,1144937368 +104055,1347,Freddy,1144937286 +104055,1347,Freddy (My Hero),1144937286 +104055,1347,Freddy Crueger,1144937286 +104055,1347,horror,1144937267 +104055,1347,Wes Craven,1144937266 +104055,2721,Cute,1144936497 +104055,2721,Funny,1144936497 +104055,2721,Gay,1144936497 +104055,2721,One of my favorites,1144936497 +104055,3081,Brilliant,1144937086 +104055,3081,Dark,1144937086 +104055,3081,Goth,1144937086 +104055,3081,Johnny Depp,1144937086 +104055,3081,Loved it,1144937086 +104055,3081,Tim Burton,1144937086 +104055,3535,Psychothriller,1144937428 +104055,4720,A complete waste of time!,1144936930 +104055,4720,Completely BORING!,1144936930 +104055,4725,Loved it!,1144937111 +104055,4725,VERY well made thriller,1144937111 +104055,4865,Brilliant,1144936906 +104055,4865,Jack the Ripper,1144936906 +104055,4865,Johnny Depp,1144936906 +104055,5679,Great Movie,1144936989 +104055,6323,Nothing to it,1144937134 +104055,6323,Waste of Time,1144937134 +104055,6502,Brilliant,1144937061 +104055,6502,Great Film,1144937060 +104055,6502,Zombie Movie,1144937060 +104055,6754,Battle between Vampires and Lycans,1144937973 +104055,6754,Lycans,1144937973 +104055,6754,NOT a matrix ripoff because it has nothing to do with the lame ass matrix shit,1144937973 +104055,6754,Vampires,1144937973 +104055,7160,amazing acting,1144936722 +104055,7160,brilliant,1144936722 +104055,7160,Crime,1144936707 +104055,7160,dark,1144936706 +104055,7160,serial killer,1144936703 +104055,7360,Zombie Movie,1144937047 +104055,8783,Not what was expected but still good,1144937820 +104055,8783,Trailer was misleading,1144937820 +104055,8957,An ok movie,1144937402 +104055,8957,Not as good as Saw 2,1144937402 +104055,33896,Amazing,1144937210 +104055,33896,Brilliant,1144937210 +104055,33896,Chinese,1144937210 +104055,33896,Horror/Thriller masters of asia for 3 segments of one film,1144937210 +104055,33896,Japanese,1144937210 +104055,33896,Korean,1144937210 +104055,33896,One of the greatest films of all time! (Says Me),1144937210 +104055,33896,Wonderful!,1144937210 +104055,34323,Kind of disappointing,1144937709 +104055,34532,Brilliant,1144937623 +104055,34532,Hoodoo,1144937622 +104055,34532,Magick,1144937622 +104055,34532,New Orleans,1144937622 +104055,34532,Twist Ending,1144937622 +104055,34532,Voodoo,1144937623 +104055,34532,Wonderful,1144937622 +104055,36401,Adventure,1144938211 +104055,36401,Brilliant,1144938211 +104055,36401,Fairy Tales,1144938211 +104055,36401,Fantasy,1144938211 +104055,36401,Great Movie,1144938211 +104055,37720,Christians are morons,1144937516 +104055,37720,She was possessed by spirits pretending to be satan as spirits are into trickery,1144937499 +104055,37720,She wasn't possessed by Satan,1144937499 +104055,37720,Stupid as Hell,1144937499 +104055,39183,gay,1144936131 +104055,39183,Gay Cowboy,1144936133 +104055,39183,Made me cry,1144936143 +104055,39183,Sad,1144936143 +104055,39183,Tragedy,1144936134 +104055,39427,brilliant,1144936245 +104055,39427,crazy,1144936209 +104055,39427,thought provoking,1144936246 +104055,39427,twist ending,1144936207 +104055,39427,wonderful,1144936212 +104055,39446,Great,1144937868 +104055,39446,Was way better then the first,1144937868 +104055,43679,GREAT movie,1144936060 +104060,260,did'nt get it,1433810732 +104060,260,don't want to see it,1433810719 +104060,27423,funny,1433811961 +104060,27423,hilarious,1433811965 +104060,92259,awsome,1433811355 +104060,92259,great performances,1433811355 +104060,92259,inspirational,1433811355 +104078,105954,adventure,1435532319 +104078,105954,sea,1435532319 +104078,105954,solitary,1435532319 +104078,109848,atmospheric,1436662262 +104078,109848,dark,1436662262 +104078,109848,mystery,1436662262 +104078,115967,drama,1433030028 +104078,115967,end of the world,1433030028 +104078,115967,road movie,1433030028 +104079,260,"action, scifi",1435966863 +104079,260,space action,1435966879 +104082,52042,Nudity (Full Frontal - Notable),1225344115 +104087,119145,gentlemanly,1437517516 +104087,119145,spy,1437517519 +104096,260,culte,1431205084 +104096,260,sci-fi,1431205069 +104099,260,action,1450237371 +104099,260,sci-fi,1450237356 +104099,260,space,1450237359 +104099,1196,action,1450237044 +104099,1196,sci-fi,1450237015 +104099,1196,space,1450237038 +104099,1210,action,1450236862 +104099,1210,sci-fi,1450236844 +104099,1210,space,1450236865 +104099,2161,Adventure,1450238427 +104099,2161,Fantasy,1450238413 +104099,2571,artificial intelligence,1450237452 +104099,2571,computers,1450237474 +104099,2571,martial arts,1450237478 +104099,2571,sci-fi,1450237454 +104099,4275,Action,1450238555 +104099,4275,fantasy,1450238562 +104099,6365,action,1450237535 +104099,6365,artificial intelligence,1450237526 +104099,6365,hacking,1450237542 +104099,6365,martial arts,1450237533 +104099,6365,sci-fi,1450237519 +104099,6934,action,1450237890 +104099,6934,artificial intelligence,1450237763 +104099,6934,sci-fi,1450237575 +104099,8644,action,1450238018 +104099,8644,artificial intelligence,1450237983 +104099,8644,sci-fi,1450238013 +104099,59315,action,1450238306 +104099,59315,Marvel,1450238298 +104099,59315,sci-fi,1450238301 +104099,59315,superhero,1450238296 +104099,59315,technology,1450238303 +104099,60040,Marvel,1450238338 +104099,60040,superhero,1450238335 +104099,89745,action,1450238264 +104099,89745,humor,1450238272 +104099,89745,Marvel,1450238261 +104099,89745,superhero,1450238257 +104140,356,bubba gump shrimp,1424753866 +104140,356,lieutenant dan,1424753866 +104140,356,stupid is as stupid does,1424753866 +104143,260,FX movie,1441245890 +104143,260,good story,1441245901 +104143,2571,good movie,1441382167 +104143,2571,philosophycal,1441382185 +104155,260,Adventure,1444138581 +104155,260,Classic,1444138574 +104182,318,based on book,1180577779 +104184,260,Science Fiction,1432365802 +104184,260,space,1432365814 +104186,541,atmospheric,1248921824 +104186,541,cyberpunk,1248921815 +104186,541,great soundtrack,1248921830 +104186,541,stylized,1248921834 +104186,778,black comedy,1248923174 +104186,1273,deadpan,1248925166 +104186,1273,Roberto Benigni,1248925156 +104186,1274,cyberpunk,1248922563 +104186,1274,dystopia,1248922582 +104186,1274,dystopic future,1248922560 +104186,1274,PSYCHIC ABILITIES,1248922595 +104186,1274,stylized,1248922598 +104186,1274,visually stunning,1248922593 +104186,1809,bittersweet,1248922621 +104186,1884,hallucinatory,1248945477 +104186,1921,mathematics,1248922990 +104186,1921,paranoid,1248922985 +104186,2019,action,1248922215 +104186,2019,Akira Kurosawa,1248922188 +104186,2019,atmospheric,1248922196 +104186,2019,black and white,1248922194 +104186,2019,epic,1248922226 +104186,2019,stylized,1248922206 +104186,2324,Roberto Benigni,1248945325 +104186,2329,onesided,1248924248 +104186,2691,great soundtrack,1248922355 +104186,2704,Denis Lavant,1248924823 +104186,2704,Leos Carax,1248924818 +104186,3000,atmospheric,1248921959 +104186,3000,Hayao Miyazaki,1248921964 +104186,3000,Neil Gaiman,1248921942 +104186,3000,surreal,1248921951 +104186,3030,Akira Kurosawa,1248922146 +104186,3030,atmospheric,1248922147 +104186,3030,bleak,1248922148 +104186,3030,passionate,1248922166 +104186,3030,sword fighting,1248922160 +104186,3949,depressing,1248923027 +104186,4552,atmospheric,1248922785 +104186,4552,cyberpunk,1248922763 +104186,4552,grainy,1248923776 +104186,4552,great soundtrack,1248922789 +104186,4552,gritty,1248923766 +104186,4552,visually stunning,1248922809 +104186,4873,thought-provoking,1250011184 +104186,4878,mental illness,1248924202 +104186,4878,psychology,1248924184 +104186,4878,thought-provoking,1248924188 +104186,5971,anime,1248921897 +104186,5971,Cute,1248921879 +104186,5971,Cute!,1248921876 +104186,5971,fantasy,1248921870 +104186,5971,feel good movie,1248921882 +104186,5971,feel-good,1248921884 +104186,5971,Japan,1248921892 +104186,5971,kids and family,1248921888 +104186,6016,stylized,1249332933 +104186,6016,violence,1249332924 +104186,6502,horror,1248923804 +104186,6502,post-apocalyptic,1248923802 +104186,7003,paranoid,1249018233 +104186,7099,dystopic future,1248921986 +104186,7099,post-apocalyptic,1248921990 +104186,7099,strong female lead,1248921998 +104186,7099,Studio Ghibli,1248922021 +104186,8984,Julia Roberts,1249030384 +104186,26840,Takeshi Kitano,1248922690 +104186,27773,disturbing,1248923184 +104186,27773,incest,1248923189 +104186,27773,paranoid,1248923196 +104186,32587,atmospheric,1249332944 +104186,32587,stylized,1249332957 +104186,32587,visually appealing,1249332960 +104186,36535,artsy,1249030304 +104186,36535,Eugene Hutz,1249030292 +104186,36535,ukraine,1249030296 +104186,38600,alcoholism,1249636404 +104186,38600,Charles Bukowski,1249636402 +104186,41815,deafness,1249635743 +104186,41815,surfing,1249635708 +104186,41815,takeshi kitano,1249635731 +104186,44195,dark comedy,1248924606 +104186,48043,atmospheric,1248923725 +104186,48043,visually appealing,1248923732 +104186,53161,slow movie,1249071795 +104186,57669,dark comedy,1248924338 +104186,57669,drugs,1248924355 +104186,57669,stylized,1248924348 +104186,57669,suicide,1248924344 +104186,57669,violent,1248924351 +104186,59339,Denis Lavant,1248924954 +104186,60336,Denis Lavant,1248924923 +104186,60336,Leos Carax,1248924927 +104186,61240,slow,1248923921 +104186,61323,John Malkovich,1249030424 +104186,63119,Eugene Hutz,1249030225 +104186,63119,Madonna,1249030191 +104186,63179,Denis Lavant,1248924875 +104186,63179,Leos Carax,1248924867 +104186,64197,atmospheric,1248922472 +104186,64197,bleak,1248922462 +104186,64197,dark,1248922486 +104186,64614,poor acting,1249071830 +104186,65259,black comedy,1249030044 +104186,65259,psychology,1249030074 +104186,66090,chavs,1248982492 +104186,66097,animation,1248922657 +104186,66097,author:Neil Gaiman,1248922664 +104186,66097,Neil Gaiman,1248922655 +104186,69275,gore,1248982294 +104205,260,sci fi,1436031926 +104212,2571,360 degree panning,1202144645 +104224,260,adventure,1441013196 +104224,260,fantasy,1441013220 +104224,260,space,1441013209 +104231,109187,Christoph Waltz,1443386024 +104231,109187,surreal,1443386017 +104231,109187,visually appealing,1443386027 +104231,111759,future,1443386182 +104231,111759,time loop,1443386170 +104231,111759,time travel,1443386172 +104259,5774,zombie,1165247314 +104270,260,action,1442858402 +104270,260,sci-fi,1442858405 +104270,260,Science Fiction,1442858407 +104270,293,disturbing,1442858479 +104270,293,humorous,1442858483 +104270,293,Jean Reno,1442858471 +104270,293,Natalie Portman,1442858490 +104270,2959,Brad Pitt,1442858519 +104270,2959,twist ending,1442858515 +104270,68157,black comedy,1442858539 +104270,68157,Christoph Waltz,1442858541 +104270,68157,dark comedy,1442858543 +104270,68157,Quentin Tarantino,1442858533 +104270,68157,satire,1442858537 +104285,1222,Kubrick,1194723472 +104285,2858,surrealism,1158359065 +104285,2959,violence,1158360890 +104287,1,Pixar,1325781356 +104287,2,fantasy,1325783796 +104287,3,NO_FA_GANES,1412942598 +104287,6,7.5-FilmAffinity,1413194252 +104287,6,es un poc de lo de sempre,1422375285 +104287,7,NO_FA_GANES,1412942470 +104287,11,NO_FA_GANES,1412943057 +104287,16,NO_FA_GANES,1412781015 +104287,21,NO_FA_GANES,1412943162 +104287,25,NO_FA_GANES,1412933384 +104287,32,post-apocalyptic,1325782402 +104287,32,psychology,1325782405 +104287,32,sci-fi,1325782409 +104287,34,fantasy,1325783990 +104287,34,talking animals,1325783993 +104287,39,NO_FA_GANES,1412943221 +104287,44,video game adaptation,1325783097 +104287,47,psychology,1262707475 +104287,47,serial killer,1262707471 +104287,48,NO_FA_GANES,1412942396 +104287,50,SA DEN KAISER SOSE,1433173151 +104287,62,NO_FA_GANES,1412943108 +104287,82,NO_FA_GANES,1412934006 +104287,97,BLANC I NEGRE,1433947454 +104287,97,COM UN DOCUMENTAL,1433947455 +104287,97,MOLT_AVORRIDA,1433947452 +104287,104,NO_FA_GANES,1412943066 +104287,110,historical,1325781118 +104287,110,historical epic,1325781118 +104287,110,history,1325781118 +104287,110,medieval,1325781063 +104287,112,dummy,1421775842 +104287,112,Hong Kong,1421775846 +104287,112,Jackie Chan,1421775851 +104287,112,kung fu,1421775849 +104287,112,Kung-Fu,1421775864 +104287,145,Will Smith,1262708021 +104287,147,NO_FA_GANES,1421755429 +104287,150,AVORRIDA,1430219496 +104287,151,POT_ESTAR_BE,1412942044 +104287,165,action,1325782249 +104287,165,Bruce Willis,1262707738 +104287,170,computers,1325783203 +104287,186,NO_FA_GANES,1412941679 +104287,196,aliens,1325784070 +104287,208,MOLT_CRITICADA,1432562927 +104287,213,NO_FA_GANES,1412933886 +104287,214,NO_FA_GANES,1412933864 +104287,223,NO_FA_GANES,1412933558 +104287,232,NO_FA_GANES,1412933946 +104287,235,NO_FA_GANES,1412943016 +104287,236,NO_FA_GANES,1412941701 +104287,242,No fa ganes,1438794349 +104287,253,7.2-FilmAffinity,1413196169 +104287,253,MarinaVista,1412763877 +104287,260,fantasy,1325782573 +104287,260,George Lucas,1325782605 +104287,260,space,1325782570 +104287,265,NO_FA_GANES,1412780557 +104287,273,gothic,1325783123 +104287,277,Christmas,1421161664 +104287,282,NO_FA_GANES,1412941602 +104287,293,assassin,1325781619 +104287,296,dark comedy,1325781480 +104287,296,multiple storylines,1325781486 +104287,296,Quentin Tarantino,1325781494 +104287,299,dramon,1438651246 +104287,299,Molt envellida,1438651257 +104287,300,NO_FA_GANES,1412943100 +104287,315,NO_FA_GANES,1412941621 +104287,316,space,1325783650 +104287,316,time travel,1325783656 +104287,318,based on a book,1325780896 +104287,318,prison,1325780893 +104287,318,Stephen King,1325780890 +104287,319,NO_FA_GANES,1412936103 +104287,326,NO_FA_GANES,1412933780 +104287,333,NO_FA_GANES,1412941455 +104287,337,NO_FA_GANES,1412933682 +104287,339,NO_FA_GANES,1412943136 +104287,342,NO_FA_GANES,1412941756 +104287,350,NO_FA_GANES,1412942973 +104287,356,psychology,1325782101 +104287,356,Tom Hanks,1325782095 +104287,357,NO_FA_GANES,1412943359 +104287,364,animals,1325781773 +104287,364,animation,1325781761 +104287,407,"6,5-filmaffinity",1416563546 +104287,420,NO_FA_GANES,1412942822 +104287,428,De ses pitjors de mafia,1438648826 +104287,428,Un poc criticada,1438648841 +104287,431,NO_FA_GANES,1412779109 +104287,432,NO_FA_GANES,1412942079 +104287,440,NO_FA_GANES,1412943085 +104287,454,NO_FA_GANES,1412943209 +104287,455,children,1421775925 +104287,455,kids and family,1421775920 +104287,456,NO_FA_GANES,1412779593 +104287,471,NO_FA_GANES,1412943248 +104287,474,ANTIGUETA,1433935068 +104287,474,AVORRIDA,1433935077 +104287,474,NO_FA_GANES,1412935978 +104287,474,PREDICTIBLE,1433935071 +104287,474,TOPICA,1433935070 +104287,480,dinosaurs,1325780955 +104287,480,sci-fi,1262707497 +104287,480,Steven Spielberg,1325780949 +104287,497,NO_FA_GANES,1412942513 +104287,508,DE JUDICIS,1432046828 +104287,508,SOBREVALORADA,1432046830 +104287,520,parody,1434983306 +104287,527,8.7-FilmAffinity,1413192858 +104287,527,MarinaVista,1412763750 +104287,539,NO_FA_GANES,1412943369 +104287,541,sci-fi,1325783940 +104287,543,NO_FA_GANES,1412942356 +104287,546,Fantasy,1325783644 +104287,552,NO_FA_GANES,1412942373 +104287,555,POT_ESTAR_BE,1414405929 +104287,589,man versus machine,1421161531 +104287,589,robots,1421161538 +104287,590,7.4-FilmAffinity,1413190376 +104287,590,Avorrida,1439855871 +104287,590,Llarga,1439855869 +104287,593,Oscar (Best Picture),1325780864 +104287,593,psychology,1262707373 +104287,593,serial killer,1262707365 +104287,661,NO_FA_GANES,1412941462 +104287,665,No fa ganes,1438588193 +104287,678,NO_FA_GANES,1412781110 +104287,708,NO_FA_GANES,1412943011 +104287,714,NO_FA_GANES,1412780476 +104287,735,Criticada,1439852850 +104287,741,NO_FA_GANES,1412933825 +104287,778,dark comedy,1325782495 +104287,780,sci-fi,1325784281 +104287,784,NO_FA_GANES,1412942888 +104287,800,lenta,1430219989 +104287,805,POT_ESTAR_BE,1412941742 +104287,852,NO_FA_GANES,1412943281 +104287,858,boring,1421231169 +104287,858,BORING!,1421231188 +104287,858,Mafia,1421231143 +104287,858,MarinaVista,1412763773 +104287,858,Overrated,1421231178 +104287,906,ancient,1421776101 +104287,919,ancient,1421232158 +104287,919,black and white,1421232075 +104287,919,fantasy,1421232089 +104287,919,witch,1421232096 +104287,919,witches,1421232087 +104287,920,black and white,1421161183 +104287,920,boring,1421161158 +104287,920,love,1421161145 +104287,994,NO_FA_GANES,1412934043 +104287,1027,medieval,1325782859 +104287,1036,Bruce Willis,1262706957 +104287,1060,NO_FA_GANES,1412934083 +104287,1073,fantasy,1325781275 +104287,1073,Johnny Depp,1325781275 +104287,1090,criticada,1431340096 +104287,1090,PITJOR QUE SES ALTRES DEL VIETNAM,1431340098 +104287,1092,suspense,1325783971 +104287,1094,NO_FA_GANES,1412941773 +104287,1097,fantasy,1325783324 +104287,1097,sci-fi,1325783326 +104287,1097,Steven Spielberg,1325783331 +104287,1120,Avorrida,1438764687 +104287,1127,POT_ESTAR_BE,1412780901 +104287,1136,NO_FA_GANES,1412933327 +104287,1173,ANTIGA,1430839544 +104287,1173,MOLT_CRITICADA,1430839545 +104287,1173,PALO CHICOTE PERO EN PELI,1430839542 +104287,1175,Avorrida,1438648248 +104287,1175,Toston,1438648238 +104287,1183,NO_FA_GANES,1412943040 +104287,1193,8.4-FilmAffinity,1413190309 +104287,1193,psychology,1325783031 +104287,1196,fantasy,1325782551 +104287,1196,George Lucas,1325782616 +104287,1196,sci-fi,1325782546 +104287,1196,spaceships,1325782565 +104287,1198,indiana jones,1325780912 +104287,1198,Steven Spielberg,1262707466 +104287,1199,ENTRE FANTASIA I HUMOR NEGRE,1432652450 +104287,1199,MASSA RARA,1432652452 +104287,1199,MOLT_CRITICADA,1432652449 +104287,1206,dystopia,1325782284 +104287,1206,psychology,1325782281 +104287,1206,societal criticism,1325782296 +104287,1206,surreal,1325782288 +104287,1208,8.2-FilmAffinity,1413196111 +104287,1208,MarinaVista,1412763548 +104287,1210,fantasy,1325783671 +104287,1210,sci-fi,1325783674 +104287,1215,NO_FA_GANES,1412941905 +104287,1217,AVORRIDA,1431420769 +104287,1217,LENTA,1431420767 +104287,1217,SOBREACTUACIONS,1431420766 +104287,1219,psychology,1325781506 +104287,1219,serial killer,1325781500 +104287,1225,biography,1421161434 +104287,1225,classical music,1421161417 +104287,1225,Mozart,1421161419 +104287,1225,opera,1421161441 +104287,1227,LENTISIMA,1431350608 +104287,1227,MASA LLARGA,1431350606 +104287,1228,boring,1421161903 +104287,1228,boxing,1421161892 +104287,1228,boxing drama,1421161909 +104287,1228,sport:boxing,1421161889 +104287,1242,NO_FA_GANES,1412941848 +104287,1245,AVORRIDISSIMA,1431436748 +104287,1245,MOLT_LENTA,1431436750 +104287,1246,philosophy,1325782277 +104287,1263,avorridissima,1430230213 +104287,1265,surreal,1325783209 +104287,1266,8.3-FilmAffinity,1413196067 +104287,1266,POT_ESTAR_BE,1412946005 +104287,1274,NO_FA_GANES,1412781102 +104287,1279,RES DEL ALTRE MON,1432637767 +104287,1291,Adventure,1325781012 +104287,1291,archaeology,1325781009 +104287,1291,indiana jones,1325780966 +104287,1291,Steven Spielberg,1325781005 +104287,1298,surreal,1325783004 +104287,1300,NO_FA_GANES,1412933988 +104287,1306,MOLT_AVORRIDA,1434630042 +104287,1307,NO_FA_GANES,1412943115 +104287,1339,7.6-FilmAffinity,1413196854 +104287,1352,No fa ganes,1438976557 +104287,1356,6.5-FilmAffinity,1413191897 +104287,1358,NO_FA_GANES,1412942404 +104287,1370,Bruce Willis,1262706933 +104287,1380,rock and roll,1325783842 +104287,1385,steven seagal,1421161636 +104287,1387,70s plot,1421775581 +104287,1387,animal:shark,1421775563 +104287,1387,creepy,1421775546 +104287,1387,shark-attacks,1421775555 +104287,1387,spielberg,1421775528 +104287,1388,shark,1421232058 +104287,1396,NO_FA_GANES,1412941783 +104287,1401,No fa ganes,1439855063 +104287,1438,family drama,1421232185 +104287,1438,predictable movie,1421232176 +104287,1446,NO_FA_GANES,1412934064 +104287,1466,7.4-FilmAffinity,1413190319 +104287,1483,AVORRIDA,1434988348 +104287,1483,MOLT_CRITICADA,1434988347 +104287,1535,No fa ganes,1438794264 +104287,1544,dinosaurs,1325781632 +104287,1544,jungle,1421162127 +104287,1544,nature vs. civilization,1421162139 +104287,1544,special effects,1421162122 +104287,1544,spielberg,1421162114 +104287,1544,Steven Spielberg,1325781628 +104287,1552,Nicolas Cage,1262708061 +104287,1552,prison,1325783466 +104287,1587,Fantasy,1262707537 +104287,1590,mediocre,1422023748 +104287,1597,NO_FA_GANES,1412943194 +104287,1610,MOLT_AVORRIDA,1433940307 +104287,1610,MOLT_CRITICADA,1433940292 +104287,1610,MOLT_LENTA,1433940305 +104287,1610,NO_FA_GANES,1412934051 +104287,1617,NO_FA_GANES,1412781213 +104287,1619,NO_FA_GANES,1413196836 +104287,1625,7.2-FilmAffinity,1413192766 +104287,1625,MarinaVista,1413457637 +104287,1639,NO_FA_GANES,1412942569 +104287,1672,avorrida,1441719615 +104287,1672,n'hi ha de millors de judicis,1441719618 +104287,1672,topica,1441719614 +104287,1673,BIOGRAFIA DUN ACTOR PORNO,1432044392 +104287,1673,NO_FA_GANES,1412942428 +104287,1673,TIPICA,1432044371 +104287,1682,dark comedy,1325782492 +104287,1682,dystopia,1325782489 +104287,1687,assassination,1325783824 +104287,1687,Bruce Willis,1325783826 +104287,1693,spielberg,1421403921 +104287,1696,AVORRIDA,1432054177 +104287,1696,LENTA,1432054175 +104287,1696,TEATRAL,1432054174 +104287,1704,mathematics,1325782048 +104287,1704,psychology,1325782044 +104287,1719,DRAMON,1431421176 +104287,1719,SOSA,1431421175 +104287,1721,based on a true story,1325782532 +104287,1729,AVORRIDA,1432636822 +104287,1729,MOLT_LENTA,1432636826 +104287,1729,MOLT_LLARGA,1432636824 +104287,1747,NO_FA_GANES,1412941433 +104287,1748,7.0-FilmAffinity,1413194113 +104287,1748,alternate reality,1421836109 +104287,1748,dark fantasy,1421836067 +104287,1748,dreamlike,1421836070 +104287,1748,dystopia,1421836058 +104287,1748,fantasy,1421836076 +104287,1748,original,1421836083 +104287,1748,Post apocalyptic,1421836065 +104287,1748,post-apocalyptic,1421836091 +104287,1748,sci-fi,1421836061 +104287,1748,surreal,1421836059 +104287,1748,thought-provoking,1421836114 +104287,1754,Denzel Washington,1325782148 +104287,1754,religion,1325782141 +104287,1754,satan,1325782171 +104287,1799,No fa ganes,1438650810 +104287,1805,no fa ganes,1439033088 +104287,1834,NO_FA_GANES,1412780206 +104287,1860,NO_FA_GANES,1412937225 +104287,1884,6.8-FilmAffinity,1413194133 +104287,1884,MOLT_CRITICADA,1431341798 +104287,1909,aliens,1325782438 +104287,1909,Based on a TV show,1325782432 +104287,1909,conspiracy,1325782435 +104287,1909,sci-fi,1325782470 +104287,1909,surreal,1325782470 +104287,1909,X-Files,1325782470 +104287,1921,6.8-FilmAffinity,1413194531 +104287,1961,7.4-FilmAffinity,1413190397 +104287,1997,exorcism,1325782205 +104287,1997,imdb top 250,1325782180 +104287,1997,religion,1325782184 +104287,1997,satan,1325782205 +104287,1997,satanism,1325782205 +104287,2003,small town,1325783216 +104287,2003,Steven Spielberg,1325783219 +104287,2004,creatures,1325782039 +104287,2004,monster,1325782024 +104287,2004,Steven Spielberg,1325782027 +104287,2005,Fantasy,1325783247 +104287,2011,7.1-FilmAffinity,1413192814 +104287,2023,gangsters,1421231063 +104287,2023,mafia,1421231038 +104287,2023,overrated,1421231099 +104287,2023,slow,1421231110 +104287,2028,7.8-FilmAffinity,1413192831 +104287,2028,MarinaVista,1412763479 +104287,2034,HA ENVELLIT MOLT,1434646620 +104287,2034,SERIE B,1434646622 +104287,2115,archaeology,1325781797 +104287,2115,Indiana Jones,1325781794 +104287,2115,Steven Spielberg,1325781800 +104287,2161,Adventure,1325783072 +104287,2161,Fantasy,1325783075 +104287,2162,adventure,1421162153 +104287,2162,fantasy,1421162152 +104287,2193,fantasy,1325782476 +104287,2194,NO_FA_GANES,1412781039 +104287,2268,NO_FA_GANES,1412781033 +104287,2273,Jackie Chan,1421161454 +104287,2290,NO_FA_GANES,1434988740 +104287,2291,fantasy,1325783295 +104287,2291,Johnny Depp,1325783292 +104287,2291,surreal,1325783298 +104287,2297,DRAMA_PASTELON,1430831434 +104287,2302,NO_FA_GANES,1412942864 +104287,2315,bad horror,1421232048 +104287,2320,Avorrida,1438792452 +104287,2320,Telefilm,1438792455 +104287,2324,World War II,1262707489 +104287,2329,Edward Norton,1262707571 +104287,2329,Nazis,1325781165 +104287,2357,NO_FA_GANES,1412933773 +104287,2366,dinosaurs,1262709472 +104287,2384,animals,1325783962 +104287,2389,Remake dolent,1438588050 +104287,2394,epic adventure,1325782981 +104287,2394,religion,1325782969 +104287,2395,NO_FA_GANES,1412942433 +104287,2396,NO_FA_GANES,1412943168 +104287,2407,NO_FA_GANES,1412941537 +104287,2419,NO FA CAP GANES,1444139013 +104287,2424,NO_FA_GANES,1412941566 +104287,2427,7.1-FilmAffinity,1413197391 +104287,2427,MOLT_AVORRIDA,1430221207 +104287,2470,Australia,1325783928 +104287,2483,END OF THE WORLD,1262707763 +104287,2483,religion,1325782220 +104287,2483,satirical,1325782223 +104287,2505,CRITICADA,1434646837 +104287,2529,dystopia,1325784099 +104287,2529,post-apocalyptic,1325784095 +104287,2529,twist ending,1325784092 +104287,2557,no fa ganes,1441718561 +104287,2571,dystopia,1325781549 +104287,2571,sci fi,1325781596 +104287,2571,sci-fi,1262707650 +104287,2571,science fiction,1325781596 +104287,2571,scifi,1325781596 +104287,2571,societal criticism,1325781596 +104287,2571,surreal,1325781555 +104287,2571,virtual reality,1325781558 +104287,2572,NO_FA_GANES,1412941652 +104287,2579,NO_FA_GANES,1412779723 +104287,2594,7.3-FilmAffinity,1413192751 +104287,2594,MarinaVista,1412763729 +104287,2599,NO_FA_GANES,1412942388 +104287,2600,"6,2-filmaffinity",1416563587 +104287,2600,MOLT_CRITICADA,1431342366 +104287,2607,No fa ganes,1438860252 +104287,2624,NO_FA_GANES,1412780703 +104287,2628,adventure,1421162185 +104287,2628,epic final battle,1421162197 +104287,2628,fantasy,1421162164 +104287,2628,George Lucas,1421162166 +104287,2628,sci-fi,1421162160 +104287,2628,space,1421162174 +104287,2628,special effects,1421162180 +104287,2628,Star Wars,1421162162 +104287,2671,NO_FA_GANES,1412941817 +104287,2686,NO_FA_GANES,1412780243 +104287,2687,Africa,1325784059 +104287,2692,NO_FA_GANES,1412781002 +104287,2699,bad horror,1421775792 +104287,2700,satire,1325782671 +104287,2701,NO_FA_GANES,1412941377 +104287,2716,ghosts,1325783857 +104287,2716,sci-fi,1325783850 +104287,2722,bad science,1421161777 +104287,2722,badly done,1421775893 +104287,2722,predictable,1421161774 +104287,2722,ridiculous,1421161779 +104287,2722,shark,1421775876 +104287,2722,unintentionally funny,1421775883 +104287,2725,lenta,1441720129 +104287,2725,no fa ganes,1441720126 +104287,2745,AVORRIDA,1432638034 +104287,2745,HA ENVELLIT MOLT,1432638033 +104287,2745,LENTA,1432638036 +104287,2745,PAISATGES BRUTALS,1432638031 +104287,2761,NO_FA_GANES,1412780082 +104287,2762,psychological,1325782681 +104287,2762,psychology,1325782686 +104287,2762,twist ending,1325782683 +104287,2840,5.7-FilmAffinity,1413203893 +104287,2842,no fa ganes,1441719792 +104287,2843,NO_FA_GANES,1412934013 +104287,2858,dark comedy,1325784001 +104287,2938,POT_ESTAR_BE,1412776148 +104287,2947,007,1421161244 +104287,2947,007 (series),1421161268 +104287,2947,Bond,1421161246 +104287,2947,Bond James Bond,1421161279 +104287,2947,gadget car,1421161265 +104287,2947,james bond,1421161249 +104287,2947,overblessed,1421232255 +104287,2947,series:James Bond,1421161257 +104287,2959,Brad Pitt,1421774632 +104287,2959,dark comedy,1325782117 +104287,2959,Edward Norton,1421774635 +104287,2959,imdb top 250,1421774750 +104287,2959,psychology,1325782126 +104287,2959,societal criticism,1325782135 +104287,2959,surreal,1325782123 +104287,2959,twist ending,1421774765 +104287,2959,violent,1421774648 +104287,2966,NO_FA_GANES,1412780669 +104287,3000,anime,1421229911 +104287,3000,dystopia,1421229933 +104287,3000,environmental,1421229936 +104287,3000,fantasy world,1421229919 +104287,3000,gods,1421229929 +104287,3000,imdb top 250,1421229925 +104287,3034,medieval,1325782865 +104287,3082,007,1421775937 +104287,3082,007 (series),1421775944 +104287,3082,bond,1421775941 +104287,3082,james bond,1421775939 +104287,3090,NO_FA_GANES,1412933844 +104287,3101,NO_FA_GANES,1412941839 +104287,3104,NO_FA_GANES,1412781010 +104287,3105,NO_FA_GANES,1412778905 +104287,3108,AVORRIDA,1431423338 +104287,3108,PASTELONA,1431423339 +104287,3147,Stephen King,1325783224 +104287,3147,Tom Hanks,1325783228 +104287,3148,PASTELON,1434625126 +104287,3148,TOSTON,1434625128 +104287,3160,INSUFRIBLE,1434714495 +104287,3160,MASSA LLARGA,1434714493 +104287,3160,MOLT_CRITICADA,1422377152 +104287,3176,6.8-FilmAffinity,1413196319 +104287,3178,TIPICA,1431698326 +104287,3178,TOPICA,1431698324 +104287,3198,7.7-FilmAffinity,1413194487 +104287,3198,prison escape,1262707856 +104287,3213,superhero,1325783535 +104287,3246,AVORRIDA,1432044996 +104287,3246,BIOGRAFIA LIDER RACISTA NEGRE,1432044993 +104287,3246,MOOLT LLARGA,1432044995 +104287,3247,Whoopi Goldberg,1421161645 +104287,3252,NO_FA_GANES,1412933659 +104287,3253,NO_FA_GANES,1412942060 +104287,3265,NO_FA_GANES,1412780172 +104287,3275,POT_ESTAR_BE,1412780878 +104287,3300,6.3-FilmAffinity,1413197520 +104287,3386,No fa ganes,1438588760 +104287,3408,NO_FA_GANES,1412942995 +104287,3409,gore,1325783286 +104287,3409,premonition,1325783284 +104287,3420,molt antiga,1441718095 +104287,3420,n'hi ha de millors d'aquest genere,1441718097 +104287,3438,comic book,1325784053 +104287,3438,superhero,1325784049 +104287,3461,satire,1325783150 +104287,3471,Steven Spielberg,1325784361 +104287,3481,NO_FA_GANES,1412942916 +104287,3499,55 FilmAffinity,1413190222 +104287,3499,7,1413190222 +104287,3513,No fa ganes,1438794304 +104287,3535,psychology,1325782392 +104287,3535,serial killer,1325782389 +104287,3556,NO_FA_GANES,1412933609 +104287,3578,epic adventure,1325782072 +104287,3578,Epic Ending,1325782071 +104287,3578,Rome,1325782054 +104287,3623,cheesy,1421232016 +104287,3623,overblessed,1421231965 +104287,3683,LENTA,1434715915 +104287,3683,PREDECIBLE,1434715916 +104287,3697,monster,1325783709 +104287,3702,6.7-FilmAffinity,1413198349 +104287,3753,historical,1325781543 +104287,3753,history,1325781539 +104287,3785,parody,1325784075 +104287,3863,TOSTON,1420470640 +104287,3897,NO_FA_GANES,1412943071 +104287,3916,AVORRIDA,1432051544 +104287,3916,NO_FA_GANES,1412933217 +104287,3916,TIPICA,1432051542 +104287,3916,TOSTON,1432051540 +104287,3949,psychology,1325781432 +104287,3959,time travel,1325784032 +104287,3969,AVORRIDA,1431090289 +104287,3969,criticada,1422024564 +104287,3969,DRAMON,1431090287 +104287,3988,NO_FA_GANES,1412781152 +104287,3996,Avorrida,1439853305 +104287,3996,NO_FA_GANES,1412933792 +104287,4011,Brad Pitt,1262707619 +104287,4011,dark comedy,1325781397 +104287,4011,twist ending,1262707611 +104287,4022,adventure,1325783497 +104287,4022,loneliness,1325783494 +104287,4027,NO_FA_GANES,1412933641 +104287,4103,NO_FA_GANES,1412779906 +104287,4148,atmospheric,1421162297 +104287,4148,cannibalism,1421162296 +104287,4148,Hannibal Lecter,1421162294 +104287,4148,psychology,1325783199 +104287,4148,Ridley Scott,1421162312 +104287,4148,serial killer,1325783196 +104287,4148,torture,1421162300 +104287,4223,Nazis,1325782212 +104287,4223,World War II,1325782215 +104287,4232,gadgets,1421161756 +104287,4232,silly,1421161760 +104287,4235,NO_FA_GANES,1412781126 +104287,4344,computers,1325782535 +104287,4347,NO_FA_GANES,1412776329 +104287,4347,POT_ESTAR_BE,1412775094 +104287,4370,artificial intelligence,1325783584 +104287,4370,dystopia,1325783589 +104287,4370,sci-fi,1325783571 +104287,4454,POT_ESTAR_BE,1412775994 +104287,4531,NO_FA_GANES,1413217751 +104287,4638,dinosaurs,1325783175 +104287,4643,dystopia,1421161964 +104287,4643,evolution,1421161972 +104287,4643,genetic engineering,1421162015 +104287,4643,jungle,1421162006 +104287,4643,Post apocalyptic,1421162016 +104287,4643,post-apocalyptic,1262707458 +104287,4643,rebellion,1421161983 +104287,4643,sci fi,1421161974 +104287,4643,space travel,1421161988 +104287,4643,Tim Burton,1325780917 +104287,4643,time travel,1421161993 +104287,4645,criticada,1441720708 +104287,4720,atmospheric,1325783723 +104287,4720,twist ending,1325783720 +104287,4725,"5,4-filmaffinity",1416563399 +104287,4825,NO_FA_GANES,1412772875 +104287,4848,nonlinear,1262707876 +104287,4848,surreal,1325783088 +104287,4848,surrealism,1325783081 +104287,4865,6.3-FilmAffinity,1413197892 +104287,4866,Molt criticada,1438793893 +104287,4874,sci-fi,1325781782 +104287,4878,ending twist,1325783916 +104287,4878,psychology,1325783902 +104287,4878,surreal,1325783899 +104287,4881,NO_FA_GANES,1412780680 +104287,4896,fantasy,1325781938 +104287,4896,mythology,1325781952 +104287,4951,island,1325783781 +104287,4967,POT_ESTAR_BE,1412780890 +104287,4978,NO_FA_GANES,1412779677 +104287,4979,DES DIRECTOR DE HOTEL BUDAPEST,1432050390 +104287,4979,MOLT_CRITICADA,1432050298 +104287,4979,NO_FA_GANES,1412933358 +104287,4979,TOSTON,1432050296 +104287,4993,epic adventure,1325781751 +104287,4993,fantasy,1325781723 +104287,4993,mythology,1325781751 +104287,4994,No fa ganes,1438976271 +104287,5040,fantasy,1421162027 +104287,5040,sword and sorcery,1262707514 +104287,5064,filmaffinity semejantes li posen un 3,1422023516 +104287,5152,NO_FA_GANES,1412781058 +104287,5266,dumb,1421232207 +104287,5319,heist,1325783063 +104287,5319,twist ending,1325783067 +104287,5349,superhero,1325783682 +104287,5379,POT_ESTAR_BE,1413212710 +104287,5463,POT_ESTAR_BE,1412780445 +104287,5570,mystery,1325781384 +104287,5570,suspense,1325781381 +104287,5607,NO_FA_GANES,1412937166 +104287,5630,serial killer,1325783699 +104287,5649,creepy,1421776115 +104287,5669,politics,1262707773 +104287,5669,social commentary,1325782317 +104287,5816,fantasy,1325782015 +104287,5872,james bond,1421678242 +104287,5902,dark comedy,1325784009 +104287,5952,fantasy,1325783135 +104287,5952,multiple storylines,1325783132 +104287,5952,mythology,1325783143 +104287,5954,AVORRIDA,1433934771 +104287,5954,MOLT_CRITICADA,1433934770 +104287,5954,NO_FA_GANES,1412780636 +104287,5970,heartbreaking,1421161560 +104287,5970,sad but much good,1421161570 +104287,5971,MASA_LENTA,1430217597 +104287,5971,NO_FA_GANES,1412779429 +104287,5971,SENSE_ARGUMENT,1430217606 +104287,5991,AVORRIDA,1434986669 +104287,5991,MOLT_CRITICADA,1434986668 +104287,5995,true story,1325781529 +104287,5995,World War II,1325781533 +104287,6016,based on a true story,1325781049 +104287,6059,no fa cap ganes,1441721096 +104287,6197,LENTISSIMA,1431696381 +104287,6197,MOLT_AVORRIDA,1431696382 +104287,6213,AMERICANADA,1434973657 +104287,6213,TIPICA,1434973649 +104287,6214,Molt criticada,1439854815 +104287,6214,Simplement morbo,1439854817 +104287,6216,Avorrida,1438794013 +104287,6250,MOLT_CRITICADA,1434973828 +104287,6283,NO_FA_GANES,1412779282 +104287,6323,6.7-FilmAffinity,1413194319 +104287,6333,6.4-FilmAffinity,1413193080 +104287,6333,X-Men II,1413188388 +104287,6365,cyberpunk,1325781607 +104287,6365,dystopia,1325781610 +104287,6365,sci-fi,1325781603 +104287,6377,Pixar,1325783866 +104287,6405,pirates,1325784019 +104287,6436,No fa ganes,1438792157 +104287,6436,Tipica,1438792160 +104287,6440,NO_FA_GANES,1412780003 +104287,6496,NO_FA_GANES,1412776362 +104287,6502,MarinaVista,1412763587 +104287,6504,NO_FA_GANES,1412773012 +104287,6539,Johnny Depp,1262707454 +104287,6539,pirates,1262707450 +104287,6541,superhero,1325784180 +104287,6542,NO_FA_GANES,1412779986 +104287,6552,NO_FA_GANES,1412780789 +104287,6567,MILLOR VEURE 3 REYES,1432054420 +104287,6708,Criticada,1439506747 +104287,6708,Remake de 9 reinas,1439506745 +104287,6711,NO_FA_GANES,1412933407 +104287,6818,POT_ESTAR_BE,1412775223 +104287,6863,rock and roll,1325782848 +104287,6867,NO_FA_GANES,1412933853 +104287,6874,Quentin Tarantino,1325783163 +104287,6890,MOLT_AVORRIDA,1434974389 +104287,6890,MOLT_CRITICADA,1434974390 +104287,6902,NO_FA_GANES,1412779559 +104287,6934,action,1421162331 +104287,6934,alternate reality,1421162335 +104287,6934,apocalypse,1421162337 +104287,6934,artificial intelligence,1421162339 +104287,6934,cyberpunk,1421162325 +104287,6934,dystopia,1325783108 +104287,6934,fantasy,1325783116 +104287,6934,future,1421162342 +104287,6934,Matrix,1421162349 +104287,6934,Post apocalyptic,1421162327 +104287,6934,post-apocalyptic,1421162329 +104287,6934,sci-fi,1325783111 +104287,6934,virtual reality,1421162323 +104287,6942,NO_FA_GANES,1412937209 +104287,6954,NO_FA_GANES,1412780093 +104287,6971,POT_ESTAR_BE,1412774749 +104287,6975,Molt criticada,1439853835 +104287,7090,NO_FA_GANES,1412933669 +104287,7099,MOLT_AVORRIDA,1432636541 +104287,7099,SA PRIMERA DE MIYAZAKI (SA MES FLUIXA),1432636554 +104287,7126,antiga,1441719100 +104287,7126,no fa ganes,1441719102 +104287,7143,6.8-FilmAffinity,1413190339 +104287,7153,Adventure,1421776139 +104287,7153,dialogue,1421776187 +104287,7153,elfs,1325781711 +104287,7153,epic,1325781711 +104287,7153,epic adventure,1325781711 +104287,7153,fantasy,1325781640 +104287,7153,high fantasy,1421776144 +104287,7153,imdb top 250,1421776154 +104287,7153,lord of the rings,1421776157 +104287,7153,magic,1421776136 +104287,7153,multiple storylines,1421776134 +104287,7153,must see,1421776206 +104287,7153,mystic warriors,1421776165 +104287,7153,mythology,1325781711 +104287,7153,nerd fantasy,1421776175 +104287,7153,scenic,1421776159 +104287,7153,Tolkien,1421776149 +104287,7153,wizards,1421776151 +104287,7160,NO_FA_GANES,1412781054 +104287,7163,bad science,1434974712 +104287,7163,JOHN WOO,1434974689 +104287,7163,MOLT_CRITICADA,1434974691 +104287,7254,psychology,1325783522 +104287,7254,time travel,1325783513 +104287,7254,twist ending,1325783501 +104287,7310,NO_FA_GANES,1413217776 +104287,7326,POT_ESTAR_BE,1412775454 +104287,7371,boring,1421775669 +104287,7371,experimental,1421775657 +104287,7377,No fa ganes,1438976047 +104287,7438,Quentin Tarantino,1325783159 +104287,7445,NO FA GANES,1431350039 +104287,7445,TIPICA,1431350040 +104287,7449,NO_FA_GANES,1412780729 +104287,7502,American propaganda,1403268117 +104287,7505,7.3-FilmAffinity,1413195978 +104287,7505,miniserie,1413195978 +104287,7505,tense,1413196009 +104287,7505,TE_CONTINUACIO,1413196009 +104287,7767,NO_FA_GANES,1412933938 +104287,7824,NO_FA_GANES,1412773199 +104287,7981,NO_FA_GANES,1412933620 +104287,8132,NO_FA_GANES,1412781139 +104287,8360,parody,1325781414 +104287,8368,fantasy,1325781976 +104287,8368,mythology,1325781988 +104287,8373,NO_FA_GANES,1412936177 +104287,8421,POT_ESTAR_BE,1412776167 +104287,8464,NO_FA_GANES,1412781135 +104287,8529,Steven Spielberg,1325783628 +104287,8529,Tom Hanks,1325783632 +104287,8580,NO_FA_GANES,1412780573 +104287,8582,NO_FA_GANES,1412780256 +104287,8636,comic book,1325782657 +104287,8636,superhero,1325782661 +104287,8644,6.2-FilmAffinity,1413193878 +104287,8645,NO_FA_GANES,1412781021 +104287,8656,NO_FA_GANES,1412933425 +104287,8697,NO_FA_GANES,1412773082 +104287,8738,No fa ganes,1438722698 +104287,8784,NO_FA_GANES,1412933591 +104287,8810,dolentissima,1434975235 +104287,8861,MOLT_CRITICADA,1422542660 +104287,8873,NO_FA_GANES,1412781027 +104287,8914,MOLT_DIFICIL_D'ENTENDRE,1429018996 +104287,8914,PER_VEURE_CONCENTRAT,1429019028 +104287,8914,PER_VEURE_SOL,1429019016 +104287,8957,7.2-FilmAffinity,1413196301 +104287,8957,MarinaVista,1412763890 +104287,8958,NO_FA_GANES,1414367205 +104287,8970,TOSTON,1430218111 +104287,8972,NO_FA_GANES,1412779301 +104287,8973,NO_FA_GANES,1412779471 +104287,8985,MOLT_CRITICADA,1415885505 +104287,26492,antiga,1441721076 +104287,26492,son 4 capitols desconectats,1441721074 +104287,26547,Jackie Chan,1421161215 +104287,26547,silly,1421161219 +104287,26547,stupid,1421161225 +104287,26638,NO_FA_GANES,1412772563 +104287,26649,SERIE DE TV,1421314503 +104287,26849,MASSA ANTIGA PER SER MINISERIE,1434101883 +104287,26849,MINISERIE,1434101885 +104287,26903,NO_FA_GANES,1412780482 +104287,26989,POT_ESTAR_BE,1412773106 +104287,27009,Torrente,1421168142 +104287,27033,POT_ESTAR_BE,1412780923 +104287,27156,NO_FA_GANES,1412779242 +104287,27251,SERIE DE TV,1421314293 +104287,27266,NO_FA_GANES,1412781695 +104287,27376,LO LA HA VISTA GAIRE GENT,1432636300 +104287,27376,POT_ESTAR_BE,1412775541 +104287,27391,no fa ganes,1441718935 +104287,27473,psychology,1325782381 +104287,27524,NO_FA_GANES,1412772362 +104287,27721,NO_FA_GANES,1412779829 +104287,27773,imdb top 250,1325783752 +104287,27773,twist ending,1325783747 +104287,27816,criticada,1441719027 +104287,27816,pastel,1441719028 +104287,27871,NO_FA_GANES,1412774983 +104287,30707,boxing,1421775696 +104287,30707,sports,1421775734 +104287,30749,based on a true story,1325781927 +104287,30793,fantasy,1325782310 +104287,30793,Johnny Depp,1325782306 +104287,30810,DEL ESTIL HOTEL BUDAPEST,1432050078 +104287,30810,MOLT_CRITICADA,1432050077 +104287,30812,LENTA,1432047421 +104287,30812,LLARGA,1432047419 +104287,30812,MOLT_AVORRIDA,1432047418 +104287,30816,avorrida,1434982005 +104287,30816,Joel Schumacher,1434982003 +104287,30816,massa musical,1434982007 +104287,31364,NO_FA_GANES,1412781195 +104287,31804,4.5-filmafinity,1416563336 +104287,32122,NO_FA_GANES,1412776422 +104287,32335,POT_ESTAR_BE,1412773263 +104287,32460,NO_FA_GANES,1412776263 +104287,32460,POT_ESTAR_BE,1412779232 +104287,32554,NO_FA_GANES,1412775840 +104287,32554,TRES_HISTORIES,1432046976 +104287,32584,No fa ganes,1438976084 +104287,32840,NO_FA_GANES,1412776284 +104287,33437,Molt criticada,1439852683 +104287,33493,fantasy,1325782646 +104287,33493,sci-fi,1325782649 +104287,33615,DE LO PITJOR DE PIXAR,1430838876 +104287,33615,MOLT_CRITICADA,1430838868 +104287,33660,NO_FA_GANES,1412933483 +104287,33660,TIPICA,1431348749 +104287,33660,TOPICA,1431348750 +104287,33683,COMENÇA BE PERO ACABA FATAL,1431091695 +104287,33799,NO_FA_GANES,1412772411 +104287,33903,idealism,1325782239 +104287,33903,politics,1325782232 +104287,33903,thought-provoking,1325782236 +104287,34319,AIRE DE VIDEOCLIP,1434715011 +104287,34319,MOLT_CRITICADA,1434715009 +104287,36363,7.0-FilmAffinity,1413193973 +104287,36363,POT_ESTAR_BE,1413193974 +104287,36517,NO_FA_GANES,1412779070 +104287,36799,7.0-FilmAffinity,1413196795 +104287,36799,POT_ESTAR_BE,1412775277 +104287,37720,religion,1325783873 +104287,37731,MOLT_CRITICADA,1430836348 +104287,37733,Soporifera,1439855634 +104287,37736,AVORRIDA,1432564211 +104287,38095,NO_FA_GANES,1412775685 +104287,38159,NO_FA_GANES,1412772953 +104287,39183,NO_FA_GANES,1412937133 +104287,39292,NO_FA_GANES,1412933798 +104287,39427,MOLT_AVORRIDA,1432638646 +104287,39427,MOLT_CRITICADA,1432638642 +104287,40148,Molt criticada,1438589077 +104287,40278,MOLT_AVORRIDA,1434975009 +104287,40278,MOLT_CRITICADA,1434975011 +104287,40412,BAIX PRESUPOST,1431697479 +104287,40414,Pastelon,1438647558 +104287,40815,fantasy,1325782016 +104287,41285,Woody Allen,1325784141 +104287,41569,bad remake,1325784237 +104287,41569,monster,1325784237 +104287,41571,geisha,1421775116 +104287,41571,Geishas,1421775091 +104287,41571,romance,1421775161 +104287,41571,slow and predictable plot,1421775084 +104287,41997,LLARGA,1432638314 +104287,41997,MOLT_AVORRIDA,1432638315 +104287,41997,MOLT_CRITICADA,1432638317 +104287,42351,POT_ESTAR_BE,1412776066 +104287,42632,NO_FA_GANES,1412779701 +104287,43376,7.0-FilmAffinity,1413198291 +104287,43396,NO_FA_GANES,1412779768 +104287,44191,dystopia,1325781319 +104287,44191,sci-fi,1325781323 +104287,44191,social criticism,1325781341 +104287,44199,NO_FA_GANES,1412933809 +104287,44555,romance,1421775390 +104287,44555,slow,1421775360 +104287,44759,Nudity (Full Frontal - Notable),1325783981 +104287,44759,Sexualized violence,1325783975 +104287,44974,MOLT_CRITICADA,1431090805 +104287,45081,MOLT_CRITICADA,1423737247 +104287,45210,AVORRIDA,1434975157 +104287,45210,MIG DOCUMENTAL,1434975156 +104287,45210,TELEFILM,1434975154 +104287,45447,religion,1325783451 +104287,45499,6.1-FilmAffinity,1413192296 +104287,45499,x-men III,1413188409 +104287,45722,Johnny Depp,1325782990 +104287,45722,pirates,1325782987 +104287,45730,MOLT_CRITICADA,1431090983 +104287,46578,NO_FA_GANES,1412781188 +104287,48082,Molt criticada,1439508774 +104287,48082,Toston,1439508777 +104287,48304,atmospheric,1262707787 +104287,48304,cultural customs and traditions,1325782363 +104287,48304,Mel Gibson,1262707794 +104287,48774,dystopia,1325783475 +104287,48774,sci-fi,1325783472 +104287,48872,Criticada,1439854369 +104287,48872,Gafapasta,1439854367 +104287,48872,NO_FA_GANES,1439854372 +104287,49272,action,1262708337 +104287,49272,James Bond,1262708327 +104287,49278,MOLT_CRITICADA,1430219328 +104287,49530,Africa,1325782327 +104287,50011,POT_ESTAR_BE,1412781784 +104287,50068,boring,1421775511 +104287,50794,AVORRIDA,1430410229 +104287,50800,NO_FA_GANES,1412773392 +104287,51357,POT_ESTAR_BE,1412773140 +104287,51412,MOLT_CRITICADA,1422542271 +104287,51662,atmospheric,1325783595 +104287,51662,epic adventure,1325783604 +104287,51935,Americanada,1438764545 +104287,51935,Tipica,1438764540 +104287,51935,Topica,1438764543 +104287,52042,MOLT_CRITICADA,1431350850 +104287,52321,molt criticada,1441718869 +104287,52328,AVORRIDA,1431348618 +104287,52328,MOLT_CRITICADA,1431348612 +104287,52722,5.5-FilmAffinity,1413196043 +104287,52806,Criticada,1438793732 +104287,53125,adventure,1325781518 +104287,53125,Johnny Depp,1325781521 +104287,53125,pirates,1325781514 +104287,53129,Criticada,1439854646 +104287,53322,NO_FA_GANES,1412781076 +104287,53550,AVORRIDA,1432053495 +104287,53550,LENTA,1432053494 +104287,53550,MILLOR MIRAR EL CAZADOR,1432053496 +104287,53894,NO_FA_GANES,1412781168 +104287,53953,MOLT_CRITICADA,1430411443 +104287,53972,6.2-FilmAffinity,1413204549 +104287,53972,jungla de cristal 4.0,1413204549 +104287,53972,MOLT_CRITICADA,1423738484 +104287,54001,fantasy,1325781997 +104287,54286,NO_FA_GANES,1412781160 +104287,54372,NO_FA_GANES,1412779649 +104287,54503,NO_FA_GANES,1412934074 +104287,54736,Americanada,1439510575 +104287,54736,Simple accio,1439510573 +104287,54771,CRITICADA,1422543196 +104287,54785,MOLT_CRITICADA,1432049177 +104287,54910,POT_ESTAR_BE,1412774847 +104287,55232,MOLT_CRITICADA,1422542631 +104287,55232,NO_FA_GANES,1412781180 +104287,55247,TOSTON,1420476004 +104287,55269,DES DIRECTOR DE HOTEL BUDAPEST,1432050256 +104287,55269,MOLT_CRITICADA,1432050254 +104287,55269,NO TE ARGUMENT,1432050262 +104287,55290,NO_FA_GANES,1412780612 +104287,55363,POT_ESTAR_BE,1413189286 +104287,55721,7.6-FilmAffinity,1413194008 +104287,55721,POT_ESTAR_BE,1412946482 +104287,55820,over-rated,1421161822 +104287,55820,overrated,1421161845 +104287,55820,slow paced,1421161804 +104287,55995,3D,1421230032 +104287,55995,dragon,1421230029 +104287,55995,fantasy,1421230027 +104287,55995,Stereoscopic 3-D,1421230035 +104287,56171,MOLT_CRITICADA,1413203251 +104287,56174,alone in the world,1325781916 +104287,56174,post-apocalyptic,1325781881 +104287,56174,sci-fi,1325781885 +104287,56174,Will Smith,1325781916 +104287,56174,zombies,1325781916 +104287,56715,NO_FA_GANES,1412780182 +104287,56775,NO_FA_GANES,1412780988 +104287,56782,MOLT_CRITICADA,1420475743 +104287,56782,TOSTON,1420475744 +104287,57027,NO_FA_GANES,1412775408 +104287,57502,CRITICADA,1441717703 +104287,57502,RARA,1441717701 +104287,57669,MOLT_AVORRIDA,1423233889 +104287,57669,MOLT_LENTA,1423233880 +104287,57669,NO_FA_GANES,1412779866 +104287,58025,POT_ESATAR_BE,1412780070 +104287,58103,Bodrio,1439855168 +104287,58306,molt criticada,1441718750 +104287,58559,Christian Bale,1421774792 +104287,58559,superhero,1421774789 +104287,59369,Tipica,1439854073 +104287,59369,Topica,1439854071 +104287,59387,7.1-FilmAffinity,1413194060 +104287,59387,AVORRIDA,1420469851 +104287,59418,Molt criticada,1438650298 +104287,59615,adventure,1325783188 +104287,59615,archaeology,1421162069 +104287,59615,indiana jones,1325783185 +104287,59615,Steven Spielberg,1325783182 +104287,60037,les plantes es converteixen en l'enemic per protegirse,1421850530 +104287,60040,ANTES_DE_CAPITANamericaI,1414512518 +104287,60040,comic book,1325783834 +104287,60040,superhero,1325783831 +104287,60753,SERIE B,1432053958 +104287,60760,mystery,1262711301 +104287,61240,atmospheric,1421229813 +104287,61240,dark,1421229822 +104287,61240,horror,1421229819 +104287,61240,vampire,1421229808 +104287,62203,CRITICADA,1437997897 +104287,62203,GORE I RES MES,1437997892 +104287,62203,NO TE GUIO,1437997890 +104287,62376,AVORRIDA,1423736833 +104287,62376,MOLT_INFANTIL,1423736827 +104287,62394,NO_FA_GANES,1412781199 +104287,62799,NO_FA_GANES,1434630882 +104287,62849,Criticada,1439509992 +104287,62999,DE LO PITJOR DE PIXAR,1430838916 +104287,62999,MOLT_CRITICADA,1430838903 +104287,63113,007,1412689496 +104287,63433,NO_FA_GANES,1412774771 +104287,63853,Australia,1325783540 +104287,63853,World War II,1325783543 +104287,64034,MOLT_CRITICADA,1430835303 +104287,64034,NO_FA_GANES,1412779273 +104287,64499,MOLT_AVORRIDA,1430411018 +104287,64501,MOLT_AVORRIDA,1430411039 +104287,64614,Clint Eastwood,1325783240 +104287,64620,Avorrida,1439510279 +104287,64620,No fa ganes,1439510277 +104287,64716,AVORRIDA,1430841324 +104287,64716,LLARGA,1430841327 +104287,64716,MOLT_LENTA,1430841326 +104287,64839,CRITICADA,1431423877 +104287,64839,MAL INTERPRETADA,1431423875 +104287,64839,MOLT_AVORRIDA,1431423872 +104287,64839,TOPICA,1431423874 +104287,65037,Molt criticada,1438975769 +104287,65216,AVORRIDA,1434716683 +104287,65216,TIPICA,1434716685 +104287,65216,TOPICA,1434716686 +104287,65261,DE SES PITJORS DES DIRECTOR,1430410333 +104287,65261,MOLT_INFANTIL,1430410323 +104287,65514,7.4-FilmAffinity,1413193935 +104287,65682,action,1421162377 +104287,65682,gothic,1421162369 +104287,65682,vampires,1421162372 +104287,65682,werewolves,1421162370 +104287,65982,MOLT_CRITICADA,1413198086 +104287,65982,POT_ESTAR_BE,1412775362 +104287,66090,MOLT_CRITICADA,1430218785 +104287,66335,NO VAL LA PENA,1441717815 +104287,66785,NO_FA_GANES,1412773156 +104287,67508,Es dificil de situarse si no entens des tema,1438976794 +104287,68073,Music,1325782996 +104287,68159,Avorrida,1438860515 +104287,68159,Criticada,1438860510 +104287,68159,Lenta,1438860512 +104287,68237,POT_ESTAR_BE,1412780542 +104287,68347,DIALECTE DIFICIL DE ENTENDRE,1432045415 +104287,68347,NECESSITARIA SUBTITULS,1432045536 +104287,68347,POT_ESTAR_BE,1412780912 +104287,68358,6.8-FilmAffinity,1413191885 +104287,68358,Primer_veure_anterior_saga,1413204836 +104287,68358,TE_CONTINUACIO,1413204856 +104287,68554,6.1-FilmAffinity,1413198247 +104287,68554,conspiracy theory,1421229856 +104287,68554,mystery,1421229863 +104287,68791,boring,1421835378 +104287,68791,cyborgs,1421835383 +104287,68791,robots,1421835352 +104287,68791,ROBOTS AND ANDROIDS,1421835375 +104287,68791,Terminator,1421835391 +104287,68959,NECESSITES VEURE LA SERIE,1431436864 +104287,69122,NO_FA_GANES,1412781156 +104287,69394,NO_FA_GANES,1412775913 +104287,69481,Criticadisima,1438793149 +104287,69481,NO_FA_GANES,1412933962 +104287,69574,NO_FA_GANES,1412774804 +104287,70159,Molt criticada,1439853968 +104287,70533,NO_FA_GANES,1412779448 +104287,70599,AVORRIDA,1434988705 +104287,70599,PASTELON,1434988706 +104287,70994,MOLT_CRITICADA,1432049196 +104287,71033,MOLT_AVORRIDA,1432648080 +104287,71033,S'ENROLLEN MASSA,1432648089 +104287,71033,XERREN MASSA RARO (ARGENTI),1432648082 +104287,71108,Avorrida,1438976408 +104287,71108,Molt criticada,1438976419 +104287,71135,AVORRIDA,1431435569 +104287,71135,PITJOR QUE SES PELIS A QUE HA COPIAT,1431435567 +104287,71135,PLAGI D'IDEES,1431435566 +104287,71535,CRITICADA,1431347973 +104287,71838,COMENÇA MOLT BE I ACABA MALAMENT,1431092259 +104287,71899,NO_FA_GANES,1412934034 +104287,72011,MOLT_AVORRIDA,1433934481 +104287,72011,MOLT_CRITICADA,1433934483 +104287,72022,NO_FA_GANES,1412772907 +104287,72165,NO_FA_GANES,1412775814 +104287,72479,NO_FA_GANES,1412775893 +104287,72554,7.7-FilmAffinity,1413196146 +104287,72554,MarinaVista,1412763560 +104287,72605,DRAMON,1432050806 +104287,72605,TIPICA,1432050811 +104287,72731,MOLT_CRITICADA,1432562381 +104287,72998,3d,1421162217 +104287,72998,7.3-FilmAffinity,1413196129 +104287,72998,beautiful scenery,1421162222 +104287,72998,ecology,1421162232 +104287,72998,environmental,1421162226 +104287,72998,futuristic,1421162214 +104287,72998,incredible 3D,1421162243 +104287,72998,jungle,1421162267 +104287,72998,MarinaVista,1412763556 +104287,72998,mythology,1421162262 +104287,72998,Natives,1421162260 +104287,72998,revolution,1421162237 +104287,72998,sci-fi,1421162212 +104287,72998,science fiction,1421162246 +104287,72998,special effects,1421162240 +104287,72998,visually stunning,1421162286 +104287,73017,MOLT_CRITICADA,1431340865 +104287,73017,SEMBLA JAMES BOND,1431340866 +104287,73321,5.8-FilmAffinity,1413196628 +104287,73321,action,1421229977 +104287,73321,dystopia,1421229960 +104287,73321,dystopic future,1421229961 +104287,73321,post-apocalyptic,1421229956 +104287,73321,POT_ESTAR_BE,1413196628 +104287,73321,survival,1421229972 +104287,73321,twist ending,1421229968 +104287,73321,visually appealing,1421229979 +104287,73323,MOLT_CRITICADA,1431420916 +104287,73323,SA PITJOR DE SA SAGA,1431420917 +104287,73344,POT_ESTAR_BE,1412936334 +104287,73808,NO_FA_GANES,1438792520 +104287,73860,BIOGRAFIA,1431696628 +104287,74458,7.5-FilmAffinity,1413193105 +104287,74510,MOLT_CRITICADA,1423232672 +104287,76175,MOLT_CRITICADA,1430220831 +104287,76210,NO_FA_GANES,1412776214 +104287,76251,Molt criticada,1438590046 +104287,77795,aprobada jutstet,1431697816 +104287,77795,baix pressupost,1431697820 +104287,77795,mescla d'altres pelis,1431697819 +104287,77846,NO_FA_GANES,1412774878 +104287,78088,MOLT_CRITICADA,1434646521 +104287,78105,5.7-FilmAffinity,1413198268 +104287,78218,TRAMA MASSA VISTA I NO DES MEU INTERES,1431438854 +104287,78729,No fa ganes,1438975816 +104287,78986,Franco's Spain,1421230078 +104287,79132,alternate reality,1325781805 +104287,79132,complicated,1421776260 +104287,79132,dreams,1325781871 +104287,79132,Leonardo DiCaprio,1421776264 +104287,79132,sci-fi,1325781812 +104287,79132,surreal,1325781809 +104287,79132,thought-provoking,1421776257 +104287,79553,POT_ESTAR_BE,1412946556 +104287,79695,MOLT_CRITICADA,1433946469 +104287,79720,Lenta,1438764826 +104287,79720,Soporifera,1438764828 +104287,79720,Toston,1438764832 +104287,79860,Remake d una peli moderna,1438976998 +104287,80363,MOLT_CRITICADA,1422542645 +104287,80489,NO_FA_GANES,1412780761 +104287,80831,REMAKE D'UNA JA VISTA,1422022288 +104287,80906,NO_FA_GANES,1412781173 +104287,80969,AVORRIDA,1431337809 +104287,80969,boring,1421775276 +104287,80969,LENTA,1431337807 +104287,80969,love triangles,1421775262 +104287,80969,MOLT_CRITICADA,1431337811 +104287,80969,one-sided love story,1421775290 +104287,80969,young love,1421775284 +104287,81229,MOLT_CRITICADA,1422542018 +104287,81562,CRITICADISSIMA,1437997280 +104287,81562,LENTISSIMA,1437997283 +104287,81562,MOLT AVORRIDA,1437997281 +104287,81562,NO PASSA RES,1437997285 +104287,81562,NO_FA_GANES,1413189037 +104287,81788,Avorrida,1438793020 +104287,81845,lenta i criticada,1422541212 +104287,81932,NO_FA_GANES,1412933955 +104287,82667,CRITICADA,1432657275 +104287,82667,MOLT_LENTA,1432657269 +104287,83132,NO_FA_GANES,1412779661 +104287,83369,molt avorrida,1441720572 +104287,83369,molt criticada,1441720567 +104287,84152,6.5-FilmAffinity,1413194361 +104287,84187,NO_FA_GANES,1412779362 +104287,84772,HUMOR_TONTO,1430840492 +104287,84772,MOLT_CRITICADA,1430840499 +104287,84954,MOLT_CRITICADA,1430411710 +104287,85056,MOLT_CRITICADA,1420456603 +104287,85213,AVORRIDISSIMA,1441718000 +104287,85213,INFUMABLE,1441717998 +104287,85342,POT_ESTAR_BE,1412946492 +104287,85354,POT_ESTAR_BE,1412775491 +104287,85401,Molt criticada,1439855372 +104287,85736,CURT,1431437700 +104287,85736,POT_ESTAR_BE,1412774968 +104287,85736,S'HA DE VEURE AMB WALL-E,1431437705 +104287,85774,NO_FA_GANES,1412933416 +104287,86142,CRITICADA,1437044082 +104287,86142,POCA HISTORIA,1437044077 +104287,86298,NOMES PER FIETS,1430839207 +104287,86320,TOSTON,1420469335 +104287,86377,stand-up comedy,1421776083 +104287,86548,molt avorrida,1441720318 +104287,86548,ñoña,1441720316 +104287,86781,AVORRIDA,1431351190 +104287,86781,MOLT LENTA,1431351188 +104287,86880,5.5-FilmAffinity,1413192884 +104287,86880,MarinaVista,1412763495 +104287,87232,X-Men IV,1413188486 +104287,88125,7.0-FilmAffinity,1413192795 +104287,88125,adventure,1421776243 +104287,88125,epic,1421776228 +104287,88125,fantasy,1421776224 +104287,88125,Harry Potter,1421776234 +104287,88125,magic,1421776222 +104287,88129,7.2-FilmAffinity,1413190365 +104287,88140,ANTES_DE_VENGADORES,1414512669 +104287,88140,DESPUES_DE_INCREIBLEHULK,1414512692 +104287,88140,DESPUES_DE_IRONMANii,1414512703 +104287,88744,genetics,1325782943 +104287,88744,sci-fi,1325782960 +104287,88744,space,1325782961 +104287,88810,MOLT_CRITICADA,1421401981 +104287,88839,NO_FA_GANES,1413189227 +104287,89190,MOLT_CRITICADA,1416415765 +104287,89343,MOLT_CRITICADA,1432048272 +104287,89470,MOLT_AVORRIDA,1432052965 +104287,89470,SOPORIFERA,1432052966 +104287,89492,NO_FA_GANES,1412933817 +104287,89774,AMERICANADA,1430830416 +104287,89774,NO_FA_GANES,1412933245 +104287,89864,NO_FA_GANES,1412933551 +104287,90057,AVORRIDA,1431338127 +104287,90057,LENTA,1431338125 +104287,90057,NO PASSA RES,1431338129 +104287,90127,MOLT_AVORRIDA,1434971292 +104287,90376,NO_FA_GANES,1430836920 +104287,90405,criticada,1422544535 +104287,90600,No fa ganes,1439853126 +104287,90645,Conyazo,1438860721 +104287,90866,Toston,1439853532 +104287,90888,MOLT_CRITICADA,1430220431 +104287,91079,No fa ganes,1438792485 +104287,91485,MOLT_CRITICADA,1433946484 +104287,91500,NO_FA_GANES,1412779212 +104287,91517,5.9-FilmAffinity,1413196692 +104287,91529,MarinaVista,1412763506 +104287,91542,MOLT_CRITICADA,1431340888 +104287,91542,SEMBLA JAMES BOND,1431340895 +104287,91976,BODRIO,1427977717 +104287,91976,PASTELON,1427977714 +104287,92420,FALS_DOCUMENTAL,1430840040 +104287,92420,MOLT_AVORRIDA,1430840088 +104287,92535,Louis C.K.,1421776089 +104287,93982,molt criticada,1441718379 +104287,94959,NO_FA_GANES,1412933570 +104287,94965,DOLENTISSIMA,1423738200 +104287,94965,MOLT_CRITICADA,1423738193 +104287,94969,NO_FA_GANES,1412780150 +104287,94985,criticada,1441720036 +104287,94985,no fa ganes,1441720037 +104287,95105,DE LO PITJOR DE PIXAR,1430838946 +104287,95105,MOLT_CRITICADA,1430838939 +104287,95145,6.4-FilmAffinity,1413198318 +104287,95145,I pelicula,1413203672 +104287,95163,6.3-FilmAffinity,1413203601 +104287,95163,III peli,1413203601 +104287,95165,5.9-FilmAffinity,1413198442 +104287,95167,DE LO PITJOR DE PIXAR,1431437406 +104287,95167,INFANTIL,1431437404 +104287,95167,MOLT_CRITICADA,1431437403 +104287,95182,6.5-FilmAffinity,1413192933 +104287,95497,6.4-FilmAffinity,1413197943 +104287,95510,Primer_veure_spiderman3,1413204972 +104287,95510,TE_CONTINUACIO,1413204980 +104287,95519,6.7-FilmAffinity,1413193044 +104287,95875,MOLT_CRITICADA,1420456452 +104287,95875,remake,1420456449 +104287,95965,7.2-FilmAffinity,1413192949 +104287,95965,anime,1421230016 +104287,95965,Dragon Ball,1421230005 +104287,95965,epic,1421230008 +104287,95965,space,1421230013 +104287,96004,Dragon Ball,1421230095 +104287,96004,dystopia,1421230097 +104287,96004,future,1421230099 +104287,96004,time travel,1421230101 +104287,96432,Avorrida,1438792736 +104287,96432,Lenta,1438792738 +104287,96691,MOLT_CRITICADA,1422542677 +104287,96821,AVORRIDA,1430838108 +104287,96821,ENGANYOSA,1430838112 +104287,96821,IRREAL,1430838110 +104287,96821,PASTELON,1430838106 +104287,96829,POT_ESTAR_BE,1412933925 +104287,97188,MOLT_CRITICADA,1431338637 +104287,97225,AVORRIDA,1434716348 +104287,97225,NO FA RIUME,1434716346 +104287,97304,7.2-FilmAffinity,1413193912 +104287,97304,AMERICANADA,1432047274 +104287,97304,AVORRIDA,1432047275 +104287,97304,MarinaVista,1412763778 +104287,97306,MOLT_CRITICADA,1420476938 +104287,97921,NO_FA_GANES,1412933721 +104287,97923,MOLT_CRITICADA,1430412295 +104287,97923,NO ME FA GANES,1430412301 +104287,97938,7.2-FilmAffinity,1413192901 +104287,97938,MarinaVista,1412763757 +104287,98243,massa infantil,1441719486 +104287,99114,Great dialogues,1421774618 +104287,99114,Great performances,1421774514 +104287,99114,imdb top 250,1421774545 +104287,99114,Leonardo DiCaprio,1421774483 +104287,99114,Over the top,1421774504 +104287,99114,Quentin Tarantino,1421774477 +104287,99114,violent,1421774584 +104287,99149,MASSA_MUSICAL,1432643281 +104287,99149,TOT CANTAT,1432643283 +104287,99912,MOLT_CRITICADA,1417784614 +104287,100244,Avorrida,1438765497 +104287,100244,Criticada,1438765499 +104287,100244,Lenta,1438765495 +104287,100272,DRAMON,1434971086 +104287,100383,MOLT_CRITICADA,1430409754 +104287,100498,DESTROZA_LA_SAGA,1413204486 +104287,100498,jungla de cristal 5.0,1413204502 +104287,101112,5.3-FilmAffinity,1413203827 +104287,101142,AVORRIDA,1430838760 +104287,101142,DE LO PITJOR DE PIXAR,1430838748 +104287,101142,MOLT_INFANTIL,1430838755 +104287,101525,DRAMON,1431090093 +104287,101525,MOLT_LENTA,1431090095 +104287,101864,MOLT_CRITICADA,1423235421 +104287,101864,POT_ESTAR_BE,1413217728 +104287,102125,DESPUES_DE_GUARDIANESGALAXIA,1414512589 +104287,102445,Primer_veure_anterior_peli,1413204921 +104287,102880,MOLT_CRITICADA,1417784718 +104287,102903,MOLT_CRITICADA,1431438070 +104287,102903,NO COMPARABLE A ALTRES DE S'ESTIL : MAGIA,1431438072 +104287,103017,Español,1421230158 +104287,103017,twisted ending,1421230118 +104287,103017,unrealistic,1421230119 +104287,103042,5.9-FilmAffinity,1413196902 +104287,103042,comic book,1421229885 +104287,103042,MOLT_CRITICADA,1413197368 +104287,103042,superhero,1421229883 +104287,103235,CRITICADA,1432654927 +104287,103235,NO_FA_GANES,1432654898 +104287,103249,6.2-FilmAffinity,1413197723 +104287,103253,MOLT_CRITICADA,1430833512 +104287,103341,Molt criticada,1439508453 +104287,103372,No fa ganes,1438793774 +104287,103655,UNA MERDA,1433932257 +104287,103665,POT_ESTAR_BE,1412946564 +104287,103755,DE LO PITJOR DE PIXAR,1430839039 +104287,103810,MOLT_CRITICADA,1422541851 +104287,103883,Molt criticada,1439510986 +104287,103980,Molt criticada,1439507781 +104287,104243,5.1-FilmAffinity,1413203509 +104287,104243,CRITICADA,1430219725 +104287,104337,Avorrida,1438649449 +104287,104337,Criticada,1438649460 +104287,104337,Llarga,1438649440 +104287,104374,NO_FA_GANES,1412780652 +104287,104879,PER VEURE AMB MARINA O MAMA,1418743985 +104287,104913,NO_ME_FA_GANES,1430411958 +104287,104944,NO_FA_GANES,1422529785 +104287,106002,MOLT_CRITICADA,1432561421 +104287,106100,PER VEURE AMB MARINA,1418744196 +104287,106441,MOLTS_DEFECTES,1432045841 +104287,106441,MOLT_CRITICADA,1432045838 +104287,106642,POT_ESTAR_BE,1412934376 +104287,106766,BODRIO,1427977406 +104287,106766,PASTELON,1427977404 +104287,106918,AVORRIDA,1431349794 +104287,106918,LENTA,1431349792 +104287,106918,NO_FA_GANES,1422542006 +104287,106920,7.5-FilmAffinity,1413194276 +104287,106920,artificial intelligence,1421161733 +104287,106920,boring,1421161715 +104287,106920,embarrasing,1421161712 +104287,106920,romance,1421775193 +104287,107130,DOCUMENTAL,1421401329 +104287,107953,5-FilmAffinity,1413197691 +104287,107999,6.5-FilmAffinity,1413197875 +104287,108190,"5,6-filmafinity",1417783852 +104287,108190,MOLT_CRITICADA,1417783841 +104287,108932,Molt criticada,1439507448 +104287,109374,NO_FA_GANES,1412933141 +104287,110102,DESPUES_DE_ThorII,1414512269 +104287,110553,comic book,1421229944 +104287,110553,Marvel,1421229946 +104287,110553,superhero,1421229948 +104287,110591,molt criticada,1441719234 +104287,110730,"5,2-filmafinity",1417784080 +104287,110730,MOLT_CRITICADA,1417784070 +104287,111362,7.1-FilmAffinity,1413193063 +104287,111362,mutants,1421230253 +104287,111362,superhero,1421230262 +104287,111362,superpowers,1421230265 +104287,111362,time travel,1421230268 +104287,111362,X-men,1421230244 +104287,111362,X-Men V,1413188497 +104287,112171,A LO JAMES BOND,1434625361 +104287,112171,MOLT_CRITICADA,1434625355 +104287,112183,LENTA,1433770511 +104287,112183,MOLT_AVORRIDA,1433770509 +104287,112183,MOLT_CRITICADA,1433770507 +104287,112183,REPETITIVA,1433770512 +104287,112183,SOBREVALORADA,1433770506 +104287,112290,MOLT_AVORRIDA,1418742329 +104287,112552,SOBREVALORADA,1434968877 +104287,112552,TIPICA,1434968874 +104287,112552,TOPICA,1434968876 +104287,112623,apocalyptic,1421774889 +104287,112623,genetics,1421774895 +104287,112623,post-apocalyptic,1421774885 +104287,112623,sci-fi,1421774903 +104287,112804,ESPIRITUAL,1434967740 +104287,112804,MOLT AVORRIDA,1434967739 +104287,112852,7.2-FilmAffinity,1413194176 +104287,112852,DESPUES_DE_WINTERsOLDIER,1414512304 +104287,112897,MOLT_CRITICADA,1433946497 +104287,112940,LENTISSIMA,1431695472 +104287,112940,MOLT_AVORRIDA,1431695473 +104287,113225,DE SES PITJORS DEN WOODY ALLEN,1434965481 +104287,113225,INSUFRIBLE,1434965476 +104287,113225,MOLT_AVORRIDA,1434965478 +104287,113225,PREVISIBLE,1434965479 +104287,113275,NO_FA_GANES,1434964192 +104287,113345,MOLT_CRITICADA,1434967374 +104287,113453,NO_FA_GANES,1434963973 +104287,113829,NO FA GANES,1441717582 +104287,114028,NO_FA_GANES,1434969003 +104287,114060,AVORRIDA,1432054640 +104287,114060,CRITICADA,1432054637 +104287,114060,LENTA,1432054638 +104287,114246,MEDIOCRE,1434964408 +104287,114246,TOSTON,1434964406 +104287,114601,AVORRIDA,1434964983 +104287,114601,TIPICA,1434964981 +104287,115149,TIPICA PELI ACCIO,1432050647 +104287,115170,AVORRIDA,1434631220 +104287,115170,MOLT_LLARGA,1434631221 +104287,115170,SOPORIFERA,1434631218 +104287,115170,TOPICA,1434631223 +104287,115210,CRITICADA,1433769373 +104287,116138,NO_FA_GANES,1434964232 +104287,116161,No fa ganes,1439509251 +104287,116799,RARA,1434965285 +104287,116799,SOPORIFERA,1434965284 +104287,116897,COM UNA COLECCIO DE CURTMETRATGES,1434107643 +104287,117176,DRAMON,1431340291 +104287,117176,HISTORIA D'AMOR,1431340293 +104287,117529,dinosaurs,1421229990 +104287,117529,island,1421229992 +104287,117851,MOLT_CRITICADA,1434964078 +104287,117881,PASTELON,1434968332 +104287,117881,TELEFILM,1434968333 +104287,118700,NO_FA_MOLTES_GANES,1434967852 +104287,118702,AVORRIDA,1434966045 +104287,118702,LENTA,1434966042 +104287,118702,REPETITIVA,1434966044 +104287,118900,ABSURDA,1431350225 +104287,118900,AVORRIDA,1431350223 +104287,119145,NO_FA_GANES,1431089782 +104287,119655,DEIXAR_PASSAR_UN_TEMPS,1420458207 +104287,119655,MOLT_CRITICADA,1420458195 +104287,120466,MOLT_CRITICADA,1434629478 +104287,120635,NO HE VIST SES PRIMERES,1434964007 +104287,120635,NO_FA_GANES,1434964005 +104287,122480,bad acting,1421775760 +104287,122480,bad argument,1421775758 +104287,122876,anti-hero,1421168177 +104287,122876,Torrente,1421168174 +104287,122878,anti-hero,1421168156 +104287,122878,torrente,1421168163 +104287,122892,comic book,1421169017 +104287,122892,Marvel,1421169015 +104287,122892,superhero,1421169018 +104287,122900,comic book,1421168994 +104287,122900,Marvel,1421168983 +104287,122900,superhero,1421168992 +104287,122902,comic book,1421168935 +104287,122902,Marvel,1421168932 +104287,122902,superhero,1421168934 +104287,127096,AVORRIDA,1433768642 +104287,127096,MOLT_CRITICADA,1433768640 +104287,129354,molt criticada,1441717932 +104287,130634,NO HE VIST SES ANTERIORS,1434964140 +104287,130634,NO_FA_GANES,1434964139 +104287,143385,LENTA,1451554916 +104287,143385,PASTELOSA,1451554912 +104287,143385,PROPAGANDA USA,1451554914 +104299,296,cult film,1450765885 +104299,296,drugs,1450765887 +104299,296,John Travolta,1450765901 +104299,296,multiple storylines,1450765876 +104299,296,nonlinear,1450765872 +104299,296,Quentin Tarantino,1450765869 +104299,296,quirky,1450765896 +104299,296,Samuel L. Jackson,1450765904 +104299,296,stylized,1450765891 +104299,296,Uma Thurman,1450765899 +104299,586,for kids,1451197436 +104299,674,campy,1450766119 +104299,674,cult film,1450766119 +104299,1199,atmospheric,1450768112 +104299,1199,dreamlike,1450768107 +104299,1199,dystopia,1450768100 +104299,1199,futuristic,1450768130 +104299,1199,quirky,1450768121 +104299,1199,stylized,1450768119 +104299,1199,surreal,1450768102 +104299,1199,visual,1450768140 +104299,1199,visually appealing,1450768116 +104299,1220,car chase,1450766290 +104299,1220,Chicago,1450766306 +104299,1220,classic,1450766292 +104299,1220,cult classic,1450766304 +104299,1220,musicians,1450766302 +104299,1265,alternate reality,1450770363 +104299,1265,Bill Murray,1450770356 +104299,1265,character development,1450770385 +104299,1265,Classic,1450770378 +104299,1265,comedy,1450770392 +104299,1265,deja vu,1450770388 +104299,1265,existentialism,1450770352 +104299,1265,Fantasy,1450770380 +104299,1265,feel-good,1450770370 +104299,1265,hilarious,1450770367 +104299,1265,humorous,1450770382 +104299,1265,love,1450770377 +104299,1265,self discovery,1450770365 +104299,1265,surreal,1450770358 +104299,1265,time loop,1450770354 +104299,1265,time travel,1450770360 +104299,1342,Chicago,1450766435 +104299,1732,bowling,1450764449 +104299,1732,cult film,1450764375 +104299,1732,funny,1450764406 +104299,1732,John Goodman,1450764403 +104299,1732,off-beat comedy,1450764456 +104299,1732,quotable,1450764439 +104299,1732,sarcasm,1450764410 +104299,2174,alternate reality,1450765966 +104299,2174,comedy,1450765960 +104299,2174,ghosts,1450765963 +104299,2174,surreal,1450765946 +104299,2174,weird,1450765950 +104299,2232,innovative,1450766019 +104299,2232,intense,1450765993 +104299,2232,mindfuck,1450765999 +104299,2232,psychology,1450766003 +104299,2232,scifi,1450766007 +104299,2232,thriller,1450766016 +104299,2423,Chevy Chase,1451197405 +104299,2423,Classic,1451197403 +104299,2502,crime gone awry,1450765746 +104299,2502,cult film,1450765705 +104299,2502,hilarious,1450765709 +104299,2502,mike judge,1450765740 +104299,2502,rebellion,1450765712 +104299,2502,satire,1450765700 +104299,2502,workplace,1450765703 +104299,4649,satirical,1450764836 +104299,4649,silly,1450764833 +104299,4878,alternate timeline,1450770986 +104299,4878,atmospheric,1450770984 +104299,4878,complicated,1450771011 +104299,4878,cult film,1450770983 +104299,4878,dreamlike,1450770972 +104299,4878,dreams,1450771020 +104299,4878,hallucinatory,1450770996 +104299,4878,high school,1450770999 +104299,4878,imaginary friend,1450771007 +104299,4878,jake gyllenhaal,1450771005 +104299,4878,mindfuck,1450770991 +104299,4878,mystery,1450771002 +104299,4878,original,1450770974 +104299,4878,Parallel universe,1450771015 +104299,4878,philosophy,1450770980 +104299,4878,psychology,1450770968 +104299,4878,quirky,1450770988 +104299,4878,surreal,1450770967 +104299,4878,teen,1450771009 +104299,4878,thought-provoking,1450770970 +104299,4878,time travel,1450770965 +104299,4878,twist ending,1450770978 +104299,4973,atmospheric,1450764148 +104299,4973,beautifully filmed,1450764126 +104299,4973,cult film,1450764158 +104299,4973,feel-good,1450764129 +104299,4973,great soundtrack,1450764137 +104299,4973,idealism,1450764145 +104299,4973,Paris,1450764123 +104299,4973,whimsical,1450764132 +104299,5110,comedy,1450763676 +104299,5110,cult classic,1450763664 +104299,5110,drugs,1450763673 +104299,5110,off-beat comedy,1450763667 +104299,5110,Syrup chugging,1450763670 +104299,6711,atmospheric,1450763923 +104299,6711,Bill Murray,1450763925 +104299,6711,Japan,1450763921 +104299,6711,music,1450763971 +104299,6711,visually appealing,1450763939 +104299,6936,christmas,1451197473 +104299,6936,comedy,1451197479 +104299,6936,silly,1451197478 +104299,6936,Will Ferrell,1451197472 +104299,6936,Zooey Deschanel,1451197475 +104299,7147,adventure,1450767775 +104299,7147,Fantasy,1450767763 +104299,7147,father-son relationship,1450767787 +104299,7147,imagination,1450767773 +104299,7147,magic,1450767790 +104299,7147,quirky,1450767766 +104299,7147,storytelling,1450767802 +104299,7147,stylized,1450767768 +104299,7147,surreal,1450767760 +104299,7147,surrealism,1450767764 +104299,7147,tall tales,1450767794 +104299,7361,love,1450764093 +104299,7361,nonlinear,1450764076 +104299,7361,psychology,1450764085 +104299,7361,surreal,1450764068 +104299,7361,surrealism,1450764082 +104299,7361,thought-provoking,1450764071 +104299,8376,awkward,1450770874 +104299,8376,depressing,1450770895 +104299,8376,geek,1450770912 +104299,8376,nerds,1450770910 +104299,8784,cliché ending,1450767677 +104299,8784,manic pixie dream girl,1450767667 +104299,8784,mental illness,1450767684 +104299,8784,Natalie Portman,1450767652 +104299,8784,overrated,1450767670 +104299,8784,psychology,1450767656 +104299,8784,quirky romantic,1450767662 +104299,8784,Zach Braff,1450767648 +104299,8910,Dustin Hoffman,1450767243 +104299,8910,existentialism,1450767233 +104299,8910,funny,1450767249 +104299,8910,intelligent,1450767251 +104299,8910,Mark Wahlberg,1450767246 +104299,8910,off-beat comedy,1450767263 +104299,8910,philosophy,1450767283 +104299,8910,psychology,1450767257 +104299,8910,stylized,1450767256 +104299,8910,whimsical,1450767253 +104299,30749,based on a true story,1450770788 +104299,30749,history,1450770785 +104299,30749,survival,1450770773 +104299,30749,true story,1450770781 +104299,32840,dark humor,1450767850 +104299,32840,stop motion,1450767854 +104299,45880,atmospheric,1450770459 +104299,45880,cinematography,1450770449 +104299,45880,costume drama,1450770445 +104299,45880,France,1450770448 +104299,45880,great soundtrack,1450770454 +104299,45880,historical,1450770454 +104299,45880,isolation,1450770462 +104299,45880,kirsten dunst,1450770455 +104299,45880,Sofia Coppola,1450770464 +104299,45880,stylized,1450770442 +104299,46976,dustin hoffman,1450767586 +104299,46976,existentialism,1450767577 +104299,46976,humorous,1450767607 +104299,46976,love,1450767572 +104299,46976,modern fantasy,1450767594 +104299,46976,narrated,1450767545 +104299,46976,quirky romantic,1450767584 +104299,46976,storytelling,1450767538 +104299,46976,surreal,1450767546 +104299,46976,Will Ferrell,1450767548 +104299,46976,writers,1450767581 +104299,48082,bittersweet,1450770637 +104299,48082,dreams,1450770630 +104299,48082,Michel Gondry,1450770634 +104299,48082,psychological,1450770646 +104299,48082,quirky,1450770631 +104299,48082,romance,1450770642 +104299,48082,surreal,1450770628 +104299,48082,unusual,1450770640 +104299,48744,raunchy,1450769477 +104299,53123,bad soundtrack,1450763515 +104299,53123,bittersweet,1450763552 +104299,53123,Music,1450763543 +104299,53123,realistic,1450763478 +104299,60756,comedy,1451197207 +104299,60756,John C. Reilly,1451197205 +104299,60756,will ferrell,1451197203 +104299,76077,1980s,1450763599 +104299,76077,alternate reality,1450763605 +104299,76077,time travel,1450763603 +104299,79592,buddy movie,1450767168 +104299,79592,funny,1450767173 +104299,79592,Mark Wahlberg,1450767165 +104299,79592,Will Ferrell,1450767170 +104299,79702,cultural references,1450770675 +104299,79702,cute,1450770685 +104299,79702,funny,1450770671 +104299,79702,geeky,1450770681 +104299,79702,hipsters,1450770723 +104299,79702,Kieran Culkin,1450770687 +104299,79702,Mary Elizabeth Winstead,1450770691 +104299,79702,music,1450770677 +104299,79702,quirky,1450770669 +104299,79702,stylized,1450770662 +104299,79702,video games,1450770664 +104299,79702,visually appealing,1450770666 +104299,82459,Jeff Bridges,1450764533 +104299,82459,revenge,1450764539 +104299,87869,Funny,1450765062 +104299,88129,atmospheric,1450763876 +104299,88129,cinematography,1450763880 +104299,88129,great soundtrack,1450763908 +104299,88129,stylized,1450763887 +104299,89321,embarassing,1450770949 +104299,90866,3D,1450770503 +104299,90866,France,1450770500 +104299,90866,heartwarming,1450770511 +104299,90866,movie business,1450770524 +104299,90866,Paris,1450770534 +104299,90866,visually appealing,1450770490 +104299,97172,boy and his dog,1450767912 +104299,97172,death,1450767907 +104299,111443,cooking,1450767390 +104299,111443,entrepreneurs,1450767387 +104299,111443,father-son relationship,1450767399 +104299,111443,feel good movie,1450767380 +104299,111443,food,1450767377 +104299,111443,predictable,1450767362 +104299,111759,action,1450770831 +104299,111759,Alien Invasion,1450770837 +104299,111759,aliens,1450770826 +104299,111759,future,1450770828 +104299,111759,original plot,1450770834 +104299,111759,repeating day,1450770844 +104299,111759,sci-fi,1450770818 +104299,111759,science fiction,1450770846 +104299,111759,time loop,1450770817 +104299,111759,time travel,1450770821 +104299,111759,Tom Cruise,1450770824 +104299,115713,AI,1450765505 +104299,115713,artificial intelligence,1450765493 +104299,115713,consciousness,1450765530 +104299,115713,futuristic,1450765508 +104299,115713,nudity (full frontal),1450765518 +104299,115713,philosophical,1450765499 +104299,115713,plot twist,1450765512 +104299,115713,Psychological,1450765523 +104299,115713,robots,1450765503 +104299,115713,sci-fi,1450765495 +104299,115713,Surreal,1450765534 +104299,115713,technology,1450765510 +104299,115713,thought provoking,1450765497 +104299,115713,thriller,1450765522 +104299,115713,turing test,1450765527 +104299,119141,funny,1450770584 +104300,59709,mathematics,1423969599 +104300,59709,murder,1423969599 +104300,59709,romance,1423969599 +104300,96296,comedy,1425702905 +104300,96296,graduate student,1425702905 +104300,96296,phd,1424037339 +104300,96296,university,1425702905 +104316,6867,depression,1444973335 +104316,6867,friendship,1444973331 +104316,6867,loneliness,1444973325 +104316,6867,quirky,1444973328 +104316,6867,small town,1444973332 +104316,44665,great ending,1442346935 +104316,44665,guilty pleasure,1442346942 +104316,44665,Revenge,1442346930 +104316,44665,twist,1442346939 +104316,44665,twist ending,1442346927 +104316,49772,adultery,1442952676 +104316,49772,Edward Norton,1442952670 +104316,49961,adultery,1441691458 +104316,60684,alternate reality,1443467893 +104316,60684,dystopia,1443467888 +104316,60684,sci-fi,1443467891 +104316,60684,superhero,1443467887 +104316,60684,superheroes,1443467904 +104316,64622,great acting,1443038977 +104316,64622,philosophical,1443038976 +104316,65130,abortion,1442692322 +104316,65130,disillusionment,1442692328 +104316,65130,infidelity,1442692337 +104316,65130,life philosophy,1442692331 +104316,65130,satisfaction in life,1442692326 +104316,69134,genital mutilation,1442000867 +104316,86781,Unexpected Ending,1437747004 +104316,89759,divorce,1441743152 +104316,96811,comraderie,1445805724 +104316,96811,excellent acting,1445805726 +104316,96811,Jake Gyllenhaal,1445805719 +104316,96811,realistic relationships,1445805721 +104316,103980,Cate Blanchett,1442173380 +104316,103980,depressing,1442173383 +104316,103984,ironic,1446546939 +104316,114935,mindfuck,1442260209 +104316,114935,sci-fi,1442260216 +104316,114935,science fiction,1442260213 +104316,114935,twist ending,1442260210 +104316,115122,mockumentary,1442082554 +104316,115122,vampires,1442082556 +104316,115713,plot twist,1442260169 +104316,115713,sci-fi,1442260160 +104316,115713,thought provoking,1442260163 +104325,4865,Comics,1164182606 +104325,4865,Horror,1164182587 +104325,4865,Jack the Ripper,1164182589 +104325,4865,Johnny Depp,1164182578 +104325,4865,serial killer,1164182602 +104325,4865,Thriller,1164182599 +104341,8014,Calm,1367112271 +104341,27773,Cinematography,1367111963 +104341,27773,Music,1367111977 +104341,53123,Honest,1367112319 +104368,260,adventure,1434759983 +104368,260,father-son relationship,1434760023 +104368,260,good vs evil,1434760031 +104368,260,hero,1434760018 +104368,260,love,1434760012 +104368,260,sci-fi,1434759971 +104368,260,space adventure,1434759999 +104375,110,bullshit history,1436381670 +104375,110,every cliche in the book,1436381670 +104375,110,mel gibson,1436381670 +104375,296,great dialogue,1420380939 +104375,296,great soundtrack,1420380939 +104375,296,smart writing,1420380939 +104375,318,drama,1426944632 +104375,318,good story,1426944632 +104375,318,great actor,1426944632 +104375,356,bittersweet,1423811856 +104375,356,great soundtrack,1423811856 +104375,356,moving,1423811856 +104375,112290,coming of age,1420380998 +104375,119068,adultery,1420381220 +104375,119068,coming of age,1420381186 +104375,119068,sex issues,1420381209 +104375,119966,disturbing,1420381288 +104375,119966,sexy,1420381284 +104375,134393,feminism,1443083603 +104375,134393,Funny,1443083590 +104375,134393,Romantic comedy,1443083610 +104376,49079,family,1437693551 +104376,49079,touching,1437693551 +104376,49079,well-acted,1437693551 +104383,2905,Kurosawa,1234803184 +104383,3030,Kurosawa,1234803190 +104383,6783,Renoir,1234803162 +104383,6981,Dreyer,1234802985 +104383,6981,religion,1234802972 +104383,6985,Dreyer,1234803060 +104383,7587,Melville,1234803260 +104383,8798,Tom Cruise,1234803280 +104383,25793,Dreyer,1234803070 +104383,37287,Dreyer,1234803102 +104430,48262,depression,1426685450 +104430,48262,Golden Gate Bridge,1426685461 +104430,48262,suicide,1426685457 +104461,1086,Alfred Hitchcock,1380017412 +104461,1086,detective,1380017451 +104461,1086,imdb top 250,1380017459 +104461,1086,police investigation,1380017434 +104461,1086,suspense,1380017438 +104463,132153,beavis & butthead genre,1428794704 +104463,132153,slow in parts,1428794704 +104463,132153,surreal ending sequence,1428794704 +104465,54290,Why the terrorists hate us,1215135611 +104465,54775,The Director Should be given a grammy,1215135517 +104473,3082,...to pay me to watch this again.,1137180511 +104527,64116,movie to see,1234720092 +104541,260,futuristic,1440117787 +104541,260,space action,1440117773 +104559,344,comedy,1432981113 +104559,344,Jim Carrey,1432981115 +104559,1270,adventure,1432980402 +104559,1270,comedy,1432980391 +104559,76093,Excellent Animation,1432980331 +104585,40815,magic,1138032179 +104585,40815,sequel,1138032179 +104585,42007,chick flick,1139824048 +104587,31,inspirational,1368952339 +104587,50,Benicio Del Toro,1452959213 +104587,50,Chazz Palminteri,1452959153 +104587,50,ensemble cast,1452959085 +104587,50,Kevin Pollak,1452959192 +104587,50,Kevin Spacey,1452959095 +104587,50,Myth,1452959279 +104587,50,Pete Postlethwaite,1452959168 +104587,111,dark,1368951800 +104587,216,stupid,1368954291 +104587,257,Death Penalty,1355210243 +104587,257,Ed Harris,1355210163 +104587,257,Laurence Fishburne,1355210180 +104587,257,Wrongfully Accused,1355210249 +104587,342,ABBA,1414165687 +104587,342,Australia,1414165674 +104587,342,Bill Hunter,1414165396 +104587,342,Daniel Lapaine,1414165405 +104587,342,Dysfunctional Family,1414165714 +104587,342,Friendship,1414165783 +104587,342,Jeanie Drynan,1414165330 +104587,342,Pippa Grandison,1414165647 +104587,342,Rachel Griffiths,1414165379 +104587,342,Self-Esteem,1414165736 +104587,342,Toni Collette,1414163957 +104587,356,Unrequited Love,1398203048 +104587,383,Dennis Quaid,1406321829 +104587,383,Kevin Costner,1406321847 +104587,440,politics,1368954194 +104587,453,Concierge,1407617287 +104587,453,Gabrielle Anwar,1407617245 +104587,453,Hotels,1407617295 +104587,453,Michael J. Fox,1407617239 +104587,453,Michael Tucker,1407617258 +104587,519,franchise,1368952064 +104587,541,Androids,1422910026 +104587,541,Artificial Intelligence,1422910042 +104587,541,Brion James,1422909954 +104587,541,Edward James Olmos,1422909924 +104587,541,Harrison Ford,1422909876 +104587,541,James Hong,1422909905 +104587,541,Joanna Cassidy,1422909981 +104587,541,Joe Turkel,1422909966 +104587,541,M. Emmet Walsh,1422910005 +104587,541,Memory Implants,1422910068 +104587,541,Mortality,1422910052 +104587,541,Police,1422910091 +104587,541,Rutger Hauer,1422909884 +104587,541,Sean Young,1422909892 +104587,541,Soundtrack,1422910116 +104587,541,Vangelis,1422910107 +104587,541,William Sanderson,1422909944 +104587,555,violent,1368954412 +104587,861,police,1368954142 +104587,913,black and white,1368950646 +104587,946,nazis,1368953825 +104587,1036,Alan Rickman,1452966221 +104587,1036,Bonnie Bedelia,1452966300 +104587,1036,Bruce Willis,1452966206 +104587,1036,christmas,1452966327 +104587,1036,Heist,1452966324 +104587,1036,John McTiernan,1452966197 +104587,1036,skyscraper,1452966337 +104587,1089,Chris Penn,1414166184 +104587,1089,Kirk Baltz,1414856788 +104587,1089,Michael Madsen,1414166174 +104587,1089,Steve Buscemi,1414166144 +104587,1089,Steven Wright Voice-Over,1414166238 +104587,1089,violent,1368954413 +104587,1095,ensemble cast,1368951844 +104587,1127,Aliens,1306717861 +104587,1127,Deep Ocean,1306717797 +104587,1127,Ed Harris,1306717724 +104587,1127,Mary Elizabeth Mastrantonio,1306717737 +104587,1127,Plastic Alien Ship,1306718169 +104587,1127,Technology,1306718015 +104587,1127,Visual Effects,1306717971 +104587,1200,Bill Paxton,1420308872 +104587,1200,Highly Quotable,1420308985 +104587,1200,James Cameron,1420308818 +104587,1200,Lance Henriksen,1420308848 +104587,1200,Paul Reiser,1420308893 +104587,1200,Sigourney Weaver,1420308811 +104587,1206,violent,1368954413 +104587,1213,Ray Liotta,1407772052 +104587,1262,ensemble cast,1368951844 +104587,1270,Christopher Lloyd,1417285576 +104587,1270,Crispin Glover,1417285588 +104587,1270,Lea Thompson,1417285562 +104587,1270,Michael J. Fox,1417285551 +104587,1278,Gene Wilder,1452963480 +104587,1278,Madeline Kahn,1452963505 +104587,1278,marty feldman,1452963500 +104587,1278,parody,1452963486 +104587,1278,Peter Boyle,1452963529 +104587,1278,Teri Garr,1452963538 +104587,1287,christianity,1368951715 +104587,1302,father-son relationship,1368952008 +104587,1370,airport,1452966823 +104587,1370,Bonnie Bedelia,1452966751 +104587,1370,Bruce Willis,1452966750 +104587,1370,Christmas,1452966829 +104587,1370,Dennis Franz,1452966767 +104587,1370,Fred Thompson,1452966789 +104587,1370,Renny Harlin,1452966883 +104587,1464,mystery,1368953674 +104587,1589,ensemble cast,1368951844 +104587,1594,Aaron Eckhart,1335677228 +104587,1594,Social Engineering,1335676744 +104587,1610,Alec Baldwin,1417283103 +104587,1610,Courtney B. Vance,1417283184 +104587,1610,Fred Thompson,1417283156 +104587,1610,James Earl Jones,1417283208 +104587,1610,Richard Jordan,1417284787 +104587,1610,Sam Neill,1417283124 +104587,1610,Scott Glen,1417283113 +104587,1610,Stellan Skarsgard,1417283194 +104587,1610,thriller,1368954368 +104587,1639,Ben Affleck,1414856634 +104587,1639,Comics,1414856689 +104587,1639,Jason Lee,1414856666 +104587,1639,Joey Lauren Adams,1414856646 +104587,1704,Ben Affleck,1413046568 +104587,1704,Boston,1413046522 +104587,1704,Child Abuse,1371579333 +104587,1704,Genius,1413046676 +104587,1704,Gus Van Sant,1413046636 +104587,1704,Matt Damon,1413046559 +104587,1704,Minnie Driver,1413046579 +104587,1704,Robin Williams,1413046587 +104587,1704,Stellan Skarsgard,1413046600 +104587,1704,Therapy,1371579364 +104587,1945,black and white,1368950646 +104587,1950,police,1368954142 +104587,1968,Ally Sheedy,1452963364 +104587,1968,Anthony Michael Hall,1452963311 +104587,1968,Emilio Estevez,1452963304 +104587,1968,ensemble cast,1452963247 +104587,1968,high school,1452963257 +104587,1968,John Hughes,1452963266 +104587,1968,John Kapelos,1452963379 +104587,1968,Judd Nelson,1452963325 +104587,1968,Molly Ringwald,1452963340 +104587,1968,Paul Gleason,1452963355 +104587,1968,teen movie,1452963255 +104587,2011,1955,1419017965 +104587,2011,1985,1419017970 +104587,2011,2015,1419017977 +104587,2011,Christopher Lloyd,1419017608 +104587,2011,Elizabeth Shue,1419017659 +104587,2011,James Tolkan,1419017686 +104587,2011,Lea Thompson,1419017649 +104587,2011,Michael J. Fox,1419017612 +104587,2011,Thomas F. Wilson,1419017886 +104587,2012,Christopher Lloyd,1420309362 +104587,2012,Elizabeth Shue,1420309445 +104587,2012,Lea Thompson,1420309466 +104587,2012,Mary Steenburgen,1420309435 +104587,2012,Michael J. Fox,1420309377 +104587,2012,Thomas F. Wilson,1420309455 +104587,2024,christianity,1368951715 +104587,2026,high school,1368952293 +104587,2114,Book Adaptation,1308891469 +104587,2114,Classism,1308891541 +104587,2114,Coming Of Age,1308891563 +104587,2114,Ensemble Cast,1308891615 +104587,2335,stupid,1368954291 +104587,2353,thriller,1368954369 +104587,2383,police,1368954142 +104587,2500,high school,1368952293 +104587,2571,Andy Wachowski,1393696079 +104587,2571,Carrie-Anne Moss,1393695995 +104587,2571,Hugo Weaving,1393696039 +104587,2571,Keanu Reeves,1393695960 +104587,2571,Larry Wachowski,1393696092 +104587,2571,Laurence Fishburne,1393695975 +104587,2640,Christopher Reeve,1411162352 +104587,2640,Glenn Ford,1411162385 +104587,2640,John Williams,1411162404 +104587,2640,Margot Kidder,1411162359 +104587,2640,Ned Beatty,1411162381 +104587,2640,Soundtrack,1411162411 +104587,2745,Cinematography,1405195189 +104587,2745,Ennio Morricone,1405195160 +104587,2745,Jeremy Irons,1405195151 +104587,2745,Soundtrack,1405195196 +104587,2792,Ensemble Cast,1452959546 +104587,2792,Julie Haggerty,1452959485 +104587,2792,Lloydd Bridges,1452959497 +104587,2792,parody,1452959458 +104587,2792,Robert Hays,1452959477 +104587,2792,William Shatner,1452959515 +104587,2882,nazis,1368953824 +104587,2888,high school,1368952293 +104587,2918,Alan Ruck,1435425913 +104587,2918,Friendship,1435425862 +104587,2918,Jeffrey Jones,1435425929 +104587,2918,Jennifer Grey,1435425938 +104587,2918,John Hughes,1435425900 +104587,2918,Matthew Broderick,1435425895 +104587,2918,Mia Sara,1435425920 +104587,2944,ensemble cast,1368951844 +104587,3044,mystery,1368953674 +104587,3100,Brad Pitt,1404761239 +104587,3100,Brenda Blethyn,1404761250 +104587,3100,Brothers,1404761312 +104587,3100,Childhood,1404761386 +104587,3100,cinematography,1404761362 +104587,3100,Emily Lloyd,1404761264 +104587,3100,Joseph Gordon-Levitt,1404761291 +104587,3100,Minister Father,1404761484 +104587,3100,Montana,1404761204 +104587,3100,Robert Redford,1404761231 +104587,3178,inspirational,1368952339 +104587,3190,Angela Bassett,1403379452 +104587,3190,James Spader,1403379411 +104587,3190,Robin Tunney,1403379434 +104587,3210,Jennifer Jason Leigh,1414855965 +104587,3210,Judge Reinhold,1414855976 +104587,3210,Phoebe Cates,1414856001 +104587,3210,Ray Walston,1414856023 +104587,3210,Robert Romanus,1414855992 +104587,3256,thriller,1368954368 +104587,3272,Dark,1385281469 +104587,3272,Drug Addiction,1385281333 +104587,3272,Gambling,1385281347 +104587,3272,Police,1385281385 +104587,3272,Unflinching,1385281476 +104587,3273,franchise,1368952065 +104587,3298,Investment Scam,1333592557 +104587,3298,Social Engineering,1333592593 +104587,3298,White Collar Crime,1333592531 +104587,3342,Matthew Modine,1427400501 +104587,3342,Mental Disorder,1427400610 +104587,3342,Nicolas Cage,1427400513 +104587,3342,PTSD,1427400636 +104587,3342,Vietnam War,1427400590 +104587,3361,Minor Leagues Baseball,1429978369 +104587,3361,Susan Sarandon,1429978330 +104587,3361,Veteran Athlete,1429978413 +104587,3435,black and white,1368950646 +104587,3440,franchise,1368952064 +104587,3468,black and white,1368950646 +104587,3474,Frank Whaley,1403379258 +104587,3474,James Belushi,1403379292 +104587,3474,Kylie Travis,1403379249 +104587,3474,Redemption,1403379278 +104587,3474,Regret,1403379328 +104587,3474,Time Travel,1403379265 +104587,3519,nazis,1368953825 +104587,3543,1959,1406320807 +104587,3543,Baltimore,1406320501 +104587,3543,Barry Levinson,1406320827 +104587,3543,Daniel Stern,1406320413 +104587,3543,Dialogue,1406320907 +104587,3543,Ellen Barkin,1406320784 +104587,3543,Ensemble Cast,1406320374 +104587,3543,Friendship,1406320849 +104587,3543,Growing Up,1406320927 +104587,3543,Kevin Bacon,1406320407 +104587,3543,Michael Tucker,1406320789 +104587,3543,Mickey Rourke,1406320421 +104587,3543,Paul Reiser,1406320385 +104587,3543,Steve Guttenburg,1406320443 +104587,3543,Timothy Daly,1406320401 +104587,3566,christianity,1368951715 +104587,3578,Connie Nielsen,1388641330 +104587,3578,Hans Zimmer,1388641374 +104587,3578,Oliver Reed,1388641341 +104587,3578,Republic,1388641541 +104587,3578,Richard Harris,1388641597 +104587,3578,Ridley Scott,1388641322 +104587,3578,Roman Empire,1388641422 +104587,3578,Russell Crowe,1388641314 +104587,3578,Vengeance,1388641392 +104587,3740,anti-hero,1452960065 +104587,3740,Chinatown,1452960198 +104587,3740,Dennis Dun,1452960017 +104587,3740,Hero-Sidekick Role Reversal,1452960132 +104587,3740,James Hong,1452960004 +104587,3740,John Carpenter,1452960048 +104587,3740,Kim Cattrall,1452959993 +104587,3740,Kurt Russell,1452959985 +104587,3740,martial arts,1452960056 +104587,3950,Anti-Hero,1393696144 +104587,3950,Colin Farrell,1393696137 +104587,3950,Fort Polk,1393696594 +104587,3950,Louisiana,1393696594 +104587,3950,Military Training,1393696230 +104587,3950,Vietnam War,1393696218 +104587,3996,Flashback Editing,1422909739 +104587,3996,Kung Fu,1422909531 +104587,3996,Michelle Yeoh,1422909474 +104587,3996,Running On Air,1422909710 +104587,3996,Zhang Ziyi,1422909486 +104587,3998,David Caruso,1335681850 +104587,4019,inspirational,1368952339 +104587,4025,Michael Caine,1398201897 +104587,4025,Sandra Bullock,1398201888 +104587,4111,Anjelica Huston,1427400249 +104587,4111,D. B. Sweeney,1427400275 +104587,4111,Dean Stockwell,1427400360 +104587,4111,Francis Ford Coppola,1427400221 +104587,4111,James Caan,1427400263 +104587,4111,James Earl Jones,1427400259 +104587,4111,Mary Stuart Masterson,1427400373 +104587,4111,Vietnam War,1427400419 +104587,4148,Gary Oldman,1428006056 +104587,4148,Julianne Moore,1428006045 +104587,4396,Adrienne Barbeau,1416072663 +104587,4396,Blooper Reel,1416072398 +104587,4396,Burt Reynolds,1416072413 +104587,4396,Car Race,1416072495 +104587,4396,Dom DeLuise,1416072441 +104587,4396,Ensemble Cast,1416072372 +104587,4396,Farrah Fawcett,1416072461 +104587,4396,Hal Needham,1416072380 +104587,4396,Jack Elam,1416073130 +104587,4396,Jackie Chan,1416072538 +104587,4396,Jamie Farr,1416072573 +104587,4396,Michael Hui,1416072548 +104587,4396,Roger Moore,1416072470 +104587,4396,Stunts,1416072479 +104587,4396,Tara Buckman,1416073055 +104587,4396,Terry Bradshaw,1416073077 +104587,4600,Academia,1419014906 +104587,4600,Alice Carter,1419014649 +104587,4600,Christine Lahti,1419014598 +104587,4600,Compassion,1419014798 +104587,4600,Daphne Zuniga,1419014622 +104587,4600,Dedication,1419014762 +104587,4600,Matthew Modine,1419014586 +104587,4600,Medical School,1419014662 +104587,4600,Mentorship,1419014936 +104587,4600,Students,1419014901 +104587,4600,Todd Field,1419014608 +104587,4600,Training,1419014885 +104587,4600,Zakes Mokae,1419014633 +104587,4701,Brett Ratner,1452967071 +104587,4701,Chris Tucker,1452967092 +104587,4701,Hong Kong,1452967177 +104587,4701,Jackie Chan,1452967098 +104587,4701,Jeremy Piven,1452967160 +104587,4701,martial arts,1452967164 +104587,4701,Outtakes,1452967206 +104587,4701,Roselyn Sanchez,1452967124 +104587,4701,Ziyi Zhang,1452967111 +104587,4823,Eugene Levy,1420309099 +104587,4823,Jeremy Piven,1420309069 +104587,4823,john cusack,1420309040 +104587,4823,Kate Beckinsale,1420309048 +104587,4823,Molly Shannon,1420309124 +104587,4865,dark,1368951801 +104587,4901,Brad Pitt,1369499290 +104587,4901,CIA,1369499310 +104587,4901,Escape,1369499758 +104587,4901,Protege,1369499674 +104587,4901,Retirement,1369499753 +104587,4901,Robert Redford,1369499273 +104587,4901,Stephen Dillane,1369499886 +104587,4958,Bosnia,1406323218 +104587,4958,David Keith,1406323209 +104587,4958,Gene Hackman,1406322944 +104587,4958,Owen Wilson,1406322939 +104587,4958,Rescue,1406323271 +104587,4958,Vladimir Mashkov,1406323075 +104587,4963,Andy Garcia,1452960691 +104587,4963,Bernie Mac,1452960582 +104587,4963,Brad Pitt,1452960510 +104587,4963,Carl Reiner,1452960567 +104587,4963,Casey Affleck,1452960652 +104587,4963,casino,1452960532 +104587,4963,Elliott Gould,1452960589 +104587,4963,ensemble cast,1452960492 +104587,4963,George Clooney,1452960507 +104587,4963,heist,1452960498 +104587,4963,las vegas,1452960535 +104587,4963,Matt Damon,1452960513 +104587,4963,Scott Caan,1452960631 +104587,4963,Shaobo Qin,1452960667 +104587,4963,Steven Soderbergh,1452960613 +104587,4971,Alejandro Rey,1410638272 +104587,4971,Circus,1410638343 +104587,4971,Cleavent Derricks,1410638263 +104587,4971,Immigration,1410638359 +104587,4971,Jazz,1410638321 +104587,4971,Maria Conchita Alonso,1410638281 +104587,4971,Robin Williams,1410638254 +104587,4971,Saxophone,1410638315 +104587,4973,Audrey Tautou,1452959664 +104587,4973,France,1452959692 +104587,4973,Paris,1452959685 +104587,4973,quirky,1452959676 +104587,4974,stupid,1368954291 +104587,5068,Classism,1410637000 +104587,5068,Country Boy,1410636947 +104587,5068,Courier,1410636969 +104587,5068,High School,1410636923 +104587,5218,pixar,1368954079 +104587,5363,high school,1368952293 +104587,5568,Alan Hale Jr.,1427401032 +104587,5568,Danny DeVito,1427400838 +104587,5568,Dom DeLuise,1427400824 +104587,5568,Marilu Henner,1427400759 +104587,5568,Michael Keaton,1427400733 +104587,5568,Peter Boyle,1427400993 +104587,5568,Richard Dimitri,1427401183 +104587,5785,stupid,1368954291 +104587,5876,Pre-Vietnam War,1404762793 +104587,6093,Alan Arkin,1412444094 +104587,6093,Animation,1412444085 +104587,6093,Christopher Lee,1412444610 +104587,6093,Enchantments,1412444683 +104587,6093,Jeff Bridges,1412444618 +104587,6093,Loneliness,1412444839 +104587,6093,Mia Farrow,1412444104 +104587,6093,Musical,1412444185 +104587,6093,Rene Auberjonois,1412444574 +104587,6093,Tammy Grimes,1412444416 +104587,6093,Theme Song,1412444645 +104587,6093,Unicorns,1412444593 +104587,6323,mystery,1368953674 +104587,6461,Discrimination,1350965532 +104587,6461,Forbidden Love,1350965773 +104587,6461,Racism,1350965525 +104587,6537,franchise,1368952065 +104587,6699,Finn Atkins,1417285022 +104587,6699,Rhys Ifans,1417285021 +104587,6714,Qi Shu,1410636804 +104587,6714,Sisters,1410636836 +104587,6808,nazis,1368953825 +104587,6879,courtroom,1427402795 +104587,6879,Dustin Hoffman,1427402722 +104587,6879,Gary Fleder,1427402756 +104587,6879,Gene Hackman,1427402709 +104587,6879,Guns,1427402684 +104587,6879,Jeremy Piven,1427402784 +104587,6879,John Cusack,1427402730 +104587,6879,Rachel Weisz,1427402734 +104587,6932,Fraud,1422915876 +104587,6932,Hank Azaria,1422915810 +104587,6932,Hayden Christensen,1422915756 +104587,6932,journalism,1422915858 +104587,6932,Melanie Lynskey,1422915824 +104587,6932,Peter Sarsgaard,1422915799 +104587,6932,Steve Zahn,1422915837 +104587,6942,Christmas,1355659799 +104587,6942,Ensemble Cast,1355659807 +104587,6994,Michael J. Fox,1407617352 +104587,7033,High Finance,1410637593 +104587,7033,Michael J. Fox,1410637506 +104587,7033,New York City,1410637558 +104587,7033,Soundtrack,1410637531 +104587,7181,Anti-semitism,1427398917 +104587,7181,Black & White,1427398880 +104587,7181,Germany,1427398926 +104587,7181,Racism,1427398892 +104587,7229,Based On A True Story,1427399046 +104587,7229,Benecio del Toro,1427399443 +104587,7229,Found Money,1427399572 +104587,7229,James Gandolfini,1427399410 +104587,7229,Joey Coyle,1427399063 +104587,7229,John Cusack,1427399075 +104587,7229,Michael Madsen,1427399452 +104587,7229,Michael Rapaport,1427399471 +104587,7293,Alaska,1417284823 +104587,7293,Blake Clark,1417284916 +104587,7293,Drew Barrymore,1417284831 +104587,7293,Hawaii,1417284818 +104587,7293,Head Trauma,1417284850 +104587,7293,Lusia Strus,1417284900 +104587,7293,Rob Schneider,1417284872 +104587,7293,Sean Astin,1417284882 +104587,7341,Angie Dickinson,1422918322 +104587,7341,Entitlement,1422918381 +104587,7341,Justice,1422918345 +104587,7341,Marlon Brando,1422918286 +104587,7341,Mob Rule,1422918358 +104587,7341,Police,1422918375 +104587,7341,Racism,1422918352 +104587,7341,Robert Redford,1422918305 +104587,7341,Sheriff,1422918365 +104587,7346,Elisha Cuthbert,1452960378 +104587,7346,Timothy Olyphant,1452960369 +104587,7366,Poor Acting,1404762946 +104587,7366,Poor Dialogue,1404762982 +104587,7366,Poor Directing,1404763005 +104587,7383,Confidence Game,1382913390 +104587,7383,Grifters,1382913360 +104587,7383,Poker,1382913349 +104587,7383,Stuart Townsend,1382913290 +104587,7383,Sylvester Stallone,1382913271 +104587,7397,Lee Remick,1422916737 +104587,7397,Selfishness,1422916808 +104587,7397,Singer,1422916759 +104587,7444,Aging,1422909313 +104587,7444,Friends As Lovers,1422909292 +104587,7444,Jennifer Garner,1422909257 +104587,7444,Mark Ruffalo,1422909263 +104587,8533,Alzheimer's,1383372287 +104587,8533,Rachel McAdams,1383372206 +104587,8533,Ryan Gosling,1383372196 +104587,8533,South,1383372347 +104587,8614,Amnesia,1394905153 +104587,8614,Classism,1394905267 +104587,8614,Garry Marshall,1394905126 +104587,8614,Goldie Hawn,1394905119 +104587,8614,Kurt Russell,1394905112 +104587,8614,Roddy McDowell,1394905144 +104587,8614,Single Parent,1394905213 +104587,8781,politics,1368954194 +104587,8868,Bad Acting,1406323716 +104587,8868,Boring,1406323679 +104587,8868,England,1406323582 +104587,8868,France,1406323586 +104587,8868,Hedonism,1406323664 +104587,8868,Nazis,1406323649 +104587,8868,No Chemistry,1406323679 +104587,8868,Spain,1406323589 +104587,8868,Spanish Civil War,1406323615 +104587,8868,World War II,1406323626 +104587,8874,British Humour,1308365168 +104587,8874,Horror Parody,1308365225 +104587,8874,Nick Frost,1308365242 +104587,8874,Simon Pegg,1308365174 +104587,8916,Jennifer Lopez,1358144426 +104587,8916,Richard Gere,1358144416 +104587,8916,Stanley Tucci,1358144411 +104587,8916,Storytelling,1358144377 +104587,8916,Susan Sarandon,1358144461 +104587,8983,Cinemtography,1329957949 +104587,8983,Martial Arts,1329957957 +104587,27445,Billy Gardell,1417285287 +104587,27445,Bodyguard,1417285343 +104587,27445,Madeleine Stowe,1417285316 +104587,27445,Mafia,1417285357 +104587,27445,Sylvester Stallone,1417285260 +104587,27754,heist,1452965167 +104587,27754,Ryan Reynolds,1452965161 +104587,31878,Homage,1329957667 +104587,31878,Parody,1329957656 +104587,31878,Stephen Chow,1329957593 +104587,33558,Annabella Piugattuk,1420309941 +104587,33558,Arctic,1420309952 +104587,33558,Barry Pepper,1420309918 +104587,33558,Inuit,1420309957 +104587,33558,Plane Crash,1420309979 +104587,33558,Stranded,1420309970 +104587,33558,survival,1420309988 +104587,33660,inspirational,1368952339 +104587,34162,Bradley Cooper,1427403619 +104587,34162,Christopher Walken,1427403584 +104587,34162,Dwight Yoakam,1427403647 +104587,34162,Isla Fisher,1427403597 +104587,34162,Jane Seymour,1427403609 +104587,34162,Owen Wilson,1427403551 +104587,34162,Rachel McAdams,1427403570 +104587,34162,Rebecca De Mornay,1427403660 +104587,34162,vince vaughn,1427403565 +104587,34162,weddings,1427403678 +104587,37384,David Koechner,1452963918 +104587,37384,Ryan Reynolds,1452963827 +104587,37386,CGI,1318174116 +104587,37386,Charlize Theron,1318173992 +104587,37386,Poor Production Value,1318174072 +104587,37386,Science Fiction,1318174019 +104587,40581,Amy Smart,1357082193 +104587,40581,Anna Faris,1357082199 +104587,40581,Christmas,1357082219 +104587,40581,Ryan Reynolds,1357082188 +104587,40581,Unrequited Love,1357082283 +104587,41863,Barry Pepper,1337055085 +104587,41863,Meaninglessness,1337055256 +104587,41863,Restitution,1337055031 +104587,43560,Single Father,1356570477 +104587,44195,Aaron Eckhart,1411162530 +104587,44195,Adam Brody,1411162602 +104587,44195,David Koechner,1411162565 +104587,44195,Ensemble Cast,1411162643 +104587,44195,J.K. Simmons,1411162577 +104587,44195,Jason Reitman,1411162540 +104587,44195,Lobbyist,1411162767 +104587,44195,Maria Bello,1411162546 +104587,44195,Rhetorical Speech,1411162707 +104587,44195,Rob Lowe,1411162597 +104587,44195,Satire,1411162665 +104587,44195,Spin,1411162679 +104587,44195,Tobacco Industry,1411162739 +104587,44195,William H. Macy,1411162584 +104587,44761,Detective,1385280950 +104587,44761,Fast-talking,1385280917 +104587,44761,High School,1385280809 +104587,44761,Joseph Gordon-Levitt,1385280794 +104587,44761,Quirky,1385281026 +104587,44761,Slang,1385280857 +104587,44761,Stylized,1385280827 +104587,45186,Billy Crudup,1370287538 +104587,45186,Stunts,1370287649 +104587,45186,Tom Cruise,1370287522 +104587,45186,Ving Rhames,1370287548 +104587,45969,Department Store,1409946073 +104587,45969,Frank Whaley,1409946017 +104587,45969,Jennifer Connelly,1409946025 +104587,45969,John Candy,1409946042 +104587,45969,Night Shift,1409946085 +104587,45969,Target,1409946063 +104587,45969,Teens,1409946091 +104587,47950,Adrien Brody,1414856491 +104587,47950,Allen Coulter,1414856473 +104587,47950,Ben Affleck,1414856500 +104587,47950,Diane Lane,1414856507 +104587,47950,Editing,1414856526 +104587,48856,Childhood,1383113667 +104587,48856,Coming Of Age,1383113638 +104587,49651,Antonio Tarver,1452963024 +104587,49651,Burt Young,1452962973 +104587,49651,Milo Ventimiglia,1452962995 +104587,49651,Monologues,1452963165 +104587,49651,Sylvester Stallone,1452962967 +104587,49651,Tony Burton,1452963014 +104587,50651,Blue Collar,1321102277 +104587,50651,Funny,1321102252 +104587,50651,Mockumentary,1321102091 +104587,50651,Sincerity,1321102331 +104587,50651,Waste Management,1321102152 +104587,50651,Work Ethic,1321102352 +104587,51255,British Comedy,1329958097 +104587,51255,Nick Frost,1329958254 +104587,51255,Simon Pegg,1329958078 +104587,52604,courtroom,1422916075 +104587,52604,David Strathairn,1422916057 +104587,52604,Rosamund Pike,1422916045 +104587,52604,Ryan Gosling,1422916022 +104587,52967,Gordon Pinsent,1385280429 +104587,52967,Julie Christie,1385280415 +104587,52967,Mental Illness,1385280457 +104587,52967,Ontario,1385280590 +104587,53121,franchise,1368952065 +104587,53996,CGI,1338699003 +104587,53996,Megan Fox,1338699011 +104587,54503,Bill Hader,1406322301 +104587,54503,Christopher Mintz Plasse,1406322233 +104587,54503,Coming-Of-Age,1406322332 +104587,54503,Emma Stone,1406322251 +104587,54503,Friendship,1406322350 +104587,54503,High School,1406322341 +104587,54503,Jonah Hill,1406322246 +104587,54503,Michael Cera,1406322218 +104587,54503,Teens,1406322383 +104587,54775,Acting,1318174268 +104587,54775,Fight Choreography,1318174279 +104587,54872,Brothers,1427400170 +104587,54872,Racism,1427400126 +104587,54962,Hope Davis,1429977913 +104587,54962,Melissa McCarthy,1429977904 +104587,55094,Tedious,1355660300 +104587,55659,Chia-Hui Liu,1412439328 +104587,55659,Fight Choreography,1412439468 +104587,55659,Kung-Fu,1412439415 +104587,55659,Martial Arts Training,1412439387 +104587,55659,Shaolin Temple,1412439359 +104587,56367,adoption,1435426316 +104587,56367,Allison Janney,1435426264 +104587,56367,Ellen Page,1435426175 +104587,56367,J.K. Simmons,1435426253 +104587,56367,Jason Bateman,1435426234 +104587,56367,Jennifer Garner,1435426191 +104587,56367,Michael Cera,1435426194 +104587,56367,Olivia Thirlby,1435426281 +104587,56367,Rainn Wilson,1435426289 +104587,56367,teen pregnancy,1435426320 +104587,56449,Heather Graham,1356807823 +104587,56449,Wedding Industry,1356807898 +104587,56633,Gerard Butler,1452964309 +104587,56633,Implausible Plot,1452964390 +104587,56633,Kidnapping,1452964337 +104587,56633,Maria Bello,1452964302 +104587,56633,Pierce Brosnan,1452964294 +104587,56633,Revenge,1452964343 +104587,58295,Jason Statham,1383113427 +104587,58652,Stephen Chow,1407616589 +104587,58718,Anthony Hopkins,1429978124 +104587,59731,Athletics,1309174403 +104587,59731,Competition,1309174409 +104587,59731,Hypocrisy,1309174495 +104587,59731,Performance Enhancing Drugs,1309174451 +104587,59731,Sports,1309174464 +104587,59731,Steroids,1309174487 +104587,63072,Depressing,1301108660 +104587,63072,No Explanation,1301108724 +104587,63072,Post-Apocalyptic,1301108624 +104587,63072,Soundtrack,1301108685 +104587,63072,Survival,1301108602 +104587,63113,franchise,1368952064 +104587,63222,Belgium,1404762533 +104587,63222,Hostages,1404762523 +104587,63222,Jean-Claude Van Damme,1404762470 +104587,63222,Satire,1404762637 +104587,63826,Jill Wagner,1305897339 +104587,63826,Parasite Premise,1305897440 +104587,63826,Paulo Costanzo,1305897294 +104587,63826,Shea Whigham,1305897348 +104587,63826,Stop Motion,1305897330 +104587,64030,Francois Berleand,1407616756 +104587,64030,Jason Statham,1407616729 +104587,64622,nazis,1368953825 +104587,66097,Claymation,1308891311 +104587,66097,Fantasy,1308891347 +104587,66097,Stop Motion,1308891364 +104587,66868,Colonialism,1414168515 +104587,66868,Fight Choreography,1414168491 +104587,66868,Oppression,1414168539 +104587,66868,Vietnam,1414168502 +104587,67734,Jesse Eisenberg,1301023064 +104587,68135,Basketball,1411161710 +104587,68135,High School,1411161661 +104587,68135,Leslie Mann,1411161550 +104587,68135,Matthew Perry,1411161625 +104587,68135,Melora Hardin,1411161590 +104587,68135,Reliving Past,1411161676 +104587,68135,Teens,1411161668 +104587,68135,Thomas Lennon,1411161563 +104587,68135,Zac Efron,1411161541 +104587,68319,Acting,1328271721 +104587,68319,Comic Book Adaptation,1328271788 +104587,68319,Dialogue,1328271735 +104587,68319,Liev Shreiber,1328271575 +104587,68319,Script,1328271746 +104587,68358,Anton Yelchin,1435429301 +104587,68358,Ben Cross,1435429407 +104587,68358,Bruce Greenwood,1435429252 +104587,68358,Chris Hemsworth,1435429293 +104587,68358,Chris Pine,1435429359 +104587,68358,Eric Bana,1435429229 +104587,68358,J.J. Abrams,1435429172 +104587,68358,John Cho,1435429376 +104587,68358,Karl Urban,1435429261 +104587,68358,Leonard Nimoy,1435429208 +104587,68358,Simon Pegg,1435429197 +104587,68358,Winona Ryder,1435429415 +104587,68358,Zachary Quinto,1435429194 +104587,68358,Zoe Saldana,1435429369 +104587,68954,father-son relationship,1368952008 +104587,69526,CGI,1338699043 +104587,69526,Character Development,1338699102 +104587,69526,Megan Fox,1338699048 +104587,69526,Plot,1338699068 +104587,69640,Michael Mann,1452960952 +104587,70208,Flashbacks,1382914398 +104587,70208,Milla Jovovich,1382913829 +104587,70208,Timothy Olyphant,1382913814 +104587,71033,Justice,1370088359 +104587,71033,Regret,1370088324 +104587,71033,Unrequited Love,1370088477 +104587,71518,Direction,1337443706 +104587,71518,Ellen Page,1337443367 +104587,71518,Humour,1337443784 +104587,71518,Soundtrack,1337443672 +104587,71518,Storytelling,1337443689 +104587,71535,Emma Stone,1309173510 +104587,71535,Jesse Eisenberg,1309173546 +104587,71535,Parody,1309173496 +104587,71573,Dominic Sena,1408132906 +104587,71573,Terrible On All Counts,1408132841 +104587,71691,Jim Sturgess,1452963702 +104587,72330,Robin Wright,1435428156 +104587,72641,Great White Hope,1398201301 +104587,72641,Sandra Bullock,1398201220 +104587,72641,Tim McGraw,1398201258 +104587,72701,no charm,1300524272 +104587,72998,CGI,1329956891 +104587,72998,Pedantic,1329956936 +104587,72998,Unoriginal,1329956942 +104587,73344,Corruption,1368452101 +104587,73344,Illiteracy,1368451912 +104587,73344,Prison,1368451710 +104587,73572,Directing,1411162005 +104587,73572,Editing,1411162009 +104587,73572,Pretentious,1411161994 +104587,73572,Soundtrack,1411162000 +104587,73572,Willem Dafoe,1411162042 +104587,74458,Ben Kingsley,1328886138 +104587,74458,Fifties,1328886250 +104587,74458,Leonardo DiCaprio,1328886437 +104587,74458,Martin Scorsese,1328886423 +104587,74458,Max Von Sydow,1328886129 +104587,74458,Mental Institution,1328886306 +104587,74458,mystery,1368953674 +104587,74458,Psychological Thriller,1328886023 +104587,74458,Soundtrack,1328886346 +104587,76054,cinematography,1391758206 +104587,76054,Sea Life,1391758187 +104587,76054,Underwater,1391758176 +104587,77800,British Comedy,1333153220 +104587,77800,Satire,1333153241 +104587,77808,Al Pacino,1422123575 +104587,77808,Anny Duperey,1422123710 +104587,77808,Car Racing,1422123719 +104587,77808,Mortality,1422123737 +104587,77808,Terminal Illness,1422123732 +104587,78088,No Flashbacks,1289357762 +104587,78088,Predictable,1289357898 +104587,78088,Ryan Reynolds,1289357837 +104587,78088,Soundtrack,1289357940 +104587,78088,Survival Story,1289357754 +104587,78103,Civil War,1407616962 +104587,78103,Genocide,1407616924 +104587,78103,Hutus,1407616971 +104587,78103,Racism,1407616931 +104587,78103,Roy Dupuis,1407616901 +104587,78103,Rwanda,1407616913 +104587,78103,Soundtrack,1407617038 +104587,78103,Tutsis,1407617021 +104587,78103,United Nations,1407616941 +104587,78499,CGI,1333153356 +104587,78499,Pixar,1333153328 +104587,78574,Children Raising Children,1369486851 +104587,78574,Poverty,1369486589 +104587,78574,South,1369486652 +104587,79132,Christopher Nolan,1452961669 +104587,79132,Cillian Murphy,1452961373 +104587,79132,dreams,1452961469 +104587,79132,Ellen Page,1452961313 +104587,79132,Hans Zimmer,1452961509 +104587,79132,Ideas,1452961493 +104587,79132,Joseph Gordon-Levitt,1452961302 +104587,79132,Ken Watanabe,1452961356 +104587,79132,Leonardo DiCaprio,1452961286 +104587,79132,Marion Cotillard,1452961383 +104587,79132,memory,1452961480 +104587,79132,Regret,1452961579 +104587,79132,Soundtrack,1452961528 +104587,79570,Lottery,1335768962 +104587,79570,Luck,1335768981 +104587,79570,Millions,1335768994 +104587,79720,Corruption,1370098100 +104587,79796,Battles,1308890997 +104587,79796,Character Development,1308891007 +104587,79796,Cinematography,1308890927 +104587,79796,Legends,1308890920 +104587,79796,Swords & Sandals,1308890899 +104587,79796,Violence,1308890954 +104587,79848,Steve Coogan,1435429041 +104587,80166,Jason Bateman,1415467757 +104587,80166,Jeff Goldblum,1415467774 +104587,80166,Jennifer Aniston,1415467791 +104587,80166,Single Mother,1415467970 +104587,80166,Unrequited Love,1415467830 +104587,80590,Oliver Stone,1357096934 +104587,80860,Godparents,1416070856 +104587,80860,Josh Duhamel,1416070819 +104587,80860,Katherine Heigl,1416070823 +104587,80862,Fake Identity,1368440343 +104587,80862,Social Media,1368440263 +104587,80880,nudity (topless - notable),1368954010 +104587,80891,Cannabalism,1414167456 +104587,80891,Imprisonment,1414167499 +104587,80891,Joe Egender,1414167444 +104587,80891,Kidnapping,1414167505 +104587,80891,Lori Heuring,1414167422 +104587,80891,Papier Mache Cave,1414168174 +104587,80891,Scientist,1414168082 +104587,80891,Social Experiment,1414167486 +104587,80917,Ending,1368963264 +104587,80917,Invasive Species,1368963214 +104587,81562,Hubris,1330902114 +104587,81562,Redemption,1330902038 +104587,81562,Survival,1330902017 +104587,81784,Cookie-cutter Rom-Com,1413048848 +104587,81784,Harrison Ford,1413048758 +104587,81784,Jeff Goldblum,1413048693 +104587,81784,Rachel McAdams,1413048685 +104587,81817,Edgar Ramirez,1429978206 +104587,81817,Revolutionary,1429978235 +104587,81847,blonde as beautiful,1300577780 +104587,81847,brunette as evil,1300577810 +104587,81847,Chameleon,1300577928 +104587,81847,Disney,1300577847 +104587,81847,endearing,1300577742 +104587,81847,mannerisms,1300577728 +104587,81847,Maximus,1300577922 +104587,81847,motion capture,1300577723 +104587,82459,Jeff Bridges,1333080566 +104587,82459,Speech Patterns,1333080519 +104587,82767,Aaron Eckhart,1368980474 +104587,82767,Marital Stress,1368981058 +104587,82767,Nicole Kidman,1368980496 +104587,82767,Only Child,1368981006 +104587,83385,Gay-bashing,1407772958 +104587,83385,Jazz,1407772867 +104587,83385,Navy,1407772875 +104587,84601,Amnesia,1327289216 +104587,84601,January Jones,1327289163 +104587,84601,Liam Neeson,1327289194 +104587,84944,Animation,1328885826 +104587,84944,Soundtrack,1328885835 +104587,84944,Western,1328885871 +104587,85131,Aaron Eckhart,1303437727 +104587,85131,CGI,1303437776 +104587,85131,Cheesy Soundtrack,1303437684 +104587,85131,Cliches,1303437603 +104587,85131,Unoriginal,1303437656 +104587,87279,Fraternity,1404761966 +104587,87279,Initiation,1404761976 +104587,87279,Prank,1404761981 +104587,87430,Amateurish,1398200985 +104587,88129,Morality Play,1318291657 +104587,88129,Retro 80's Synth Pop,1318291738 +104587,88129,Retro 80's Typeset,1318291776 +104587,88129,Ryan Gosling,1318291055 +104587,88129,Strong & Silent Type,1318291415 +104587,88129,Violence,1318291115 +104587,89343,John Goodman,1412445117 +104587,89343,Non-dramatic Parts,1412445345 +104587,89470,Cast,1328885714 +104587,89470,Gwyneth Paltrow,1328885751 +104587,89470,Virus,1328885730 +104587,89761,Direction,1327443322 +104587,89761,Keira Knightley,1327443284 +104587,89761,Micahel Fassbender,1327443263 +104587,89761,Psychoanalysis,1327443349 +104587,89761,Screenplay,1327443293 +104587,89761,Viggo Mortensen,1327443274 +104587,89840,Assassins,1328545977 +104587,89840,Clive Owen,1328546029 +104587,89840,Jason Statham,1328545883 +104587,89840,Reluctant Hero,1328546035 +104587,89840,Yvonne Strahovski,1328545890 +104587,90249,Boxing,1328271418 +104587,90249,father-son relationship,1328271352 +104587,90249,Fighting Robots,1328271322 +104587,90249,Hugh Jackman,1328271401 +104587,90249,Rocky Homage,1328271334 +104587,90249,Science Fiction,1328271498 +104587,90578,Daniel Craig,1411161290 +104587,90578,Naomi Watts,1411161307 +104587,90578,Rachel Weisz,1411161300 +104587,90624,Character Development,1330726242 +104587,90624,Direction,1330726311 +104587,90624,Flow,1330726274 +104587,91485,Banter,1415469754 +104587,91485,Simon West,1415469723 +104587,91529,Joseph Gordon-Levitt,1380597064 +104587,91529,Marion Cotillard,1380597112 +104587,91529,Michael Caine,1380597128 +104587,91622,Charlize Theron,1435428865 +104587,91622,Minnesota,1435428881 +104587,91622,Patton Oswalt,1435428910 +104587,91630,espionage,1452967004 +104587,91630,Simon pegg,1452966996 +104587,91630,Tom Cruise,1452966987 +104587,91653,Animals,1328545542 +104587,91653,Coping With Loss,1328545837 +104587,91653,Sense of Adventure,1328545648 +104587,91653,Single Parenthood,1328545672 +104587,91653,Widower,1328545624 +104587,91658,Book Adaptation,1368617238 +104587,91658,Christopher Plummer,1368617321 +104587,91658,Daniel Craig,1368617398 +104587,91690,Adam Scott,1422910862 +104587,91690,Chris O'Dowd,1422910830 +104587,91690,Edward Burns,1422910853 +104587,91690,Ensemble Cast,1422910933 +104587,91690,Friends As Lovers,1422910900 +104587,91690,Jennifer Westfeldt,1422910783 +104587,91690,Jon Hamm,1422910792 +104587,91690,Maya Rudolph,1422910839 +104587,91690,Megan Fox,1422910816 +104587,91976,Alaska,1416070735 +104587,91976,Plane Crash,1416070741 +104587,91976,stranded,1416070662 +104587,91976,survival,1416070667 +104587,91976,wolves,1416070680 +104587,92008,Cliches,1328020581 +104587,92008,Direction,1328020595 +104587,92008,Fight Choreography,1328020648 +104587,92008,Screenplay,1328020589 +104587,92008,Voice,1328020728 +104587,93510,Cameos,1406322590 +104587,93510,Channing Tatum,1406322558 +104587,93510,High School,1406322617 +104587,93510,Undercover Cops,1406322624 +104587,93563,Die Hard In Space,1335245506 +104587,93563,Maggie Grace,1335245458 +104587,93563,One-Liners,1335245440 +104587,94405,Catherine Chan,1429976123 +104587,94405,Chris Sarandon,1429976105 +104587,94405,Jason Statham,1429976089 +104587,94405,Prodigy,1429976146 +104587,94864,Michael Fassbender,1452961725 +104587,94864,Noomi Rapace,1452961717 +104587,94864,Old Guy Pearce,1452961958 +104587,95167,Animation,1411758456 +104587,95167,Archery,1411760210 +104587,95167,Bears,1411760142 +104587,95167,Billy Connolly,1411758433 +104587,95167,Emma Thompson,1411758442 +104587,95167,Pixar,1411758472 +104587,95167,Princess,1411760098 +104587,95167,Scotland,1411760089 +104587,95167,Spells,1411760131 +104587,95167,Witch,1411760127 +104587,95223,Ophelia Lovibond,1435427501 +104587,95223,Tamsin Egerton,1435427514 +104587,96610,Bruce Willis,1452959012 +104587,96610,dystopia,1452958998 +104587,96610,Joseph Gordon-Levitt,1452959015 +104587,96610,time travel,1452958969 +104587,96737,based on a comic,1452965303 +104587,96737,drugs,1452965291 +104587,96737,Dystopia,1452965284 +104587,96737,Karl Urban,1452965266 +104587,96737,Olivia Thirlby,1452965278 +104587,96737,Pete Travis,1452965247 +104587,96737,police,1452965319 +104587,96737,Slow Motion Effect,1452965428 +104587,96737,Training,1452965354 +104587,97304,One-Liners,1351834522 +104587,97304,Political Thriller,1351834569 +104587,97306,Christopher Walken,1350965184 +104587,97306,Dark Comedy,1350965161 +104587,97306,Extreme Violence,1350965326 +104587,97921,Bradley Cooper,1416071944 +104587,97921,David O. Russell,1416072107 +104587,97921,Disjointed,1416072159 +104587,97921,Editing,1416072136 +104587,97921,Jacki Weaver,1416071995 +104587,97921,Philadelphia Eagles,1416072215 +104587,97921,Sports Betting,1416072203 +104587,97938,CGI,1415470082 +104587,97938,cinematography,1415469906 +104587,97938,Scenes With Writer And Adult Pi,1415470518 +104587,97938,Shipwreck,1415470028 +104587,97938,Survival,1415470043 +104587,99114,Christoph Waltz,1356742471 +104587,99114,Don Johnson,1356742449 +104587,99114,Flashbacks,1356742423 +104587,99114,Funny,1356742308 +104587,99114,Leonardo DiCaprio,1356742332 +104587,99114,Revenge,1356742401 +104587,99114,Samuel L. Jackson,1356742324 +104587,99114,Slavery,1356742379 +104587,99114,Spaghetti Western,1356742499 +104587,99114,Violence,1356742369 +104587,101525,Derek Cianfrance,1435426087 +104587,101525,Editing,1435426097 +104587,101525,Ryan Gosling,1435426040 +104587,101525,Transitions,1435426105 +104587,101864,Alien Invasion,1408134495 +104587,101864,Andrea Riseborough,1408134376 +104587,101864,Clones,1408135189 +104587,101864,Drones,1408135161 +104587,101864,Joseph Kosinski,1408134466 +104587,101864,Olga Kurylenko,1408134400 +104587,101864,Post-Apocalyptic,1408134340 +104587,101864,Soundtrack,1408134477 +104587,101864,Tom Cruise,1408134367 +104587,101864,Twist,1408134423 +104587,102123,Craig Robinson,1415468744 +104587,102123,Emma Watson,1415468630 +104587,102123,Ensemble Cast,1415468578 +104587,102123,James Franco,1415468500 +104587,102123,Jay Baruchel,1415468480 +104587,102716,Car Chases,1414856928 +104587,102716,Cheesy,1414856978 +104587,102716,Dwayne Johnson,1414856849 +104587,102716,Gal Gadot,1414856865 +104587,102716,Gina Carano,1414856888 +104587,102716,Jason Statham,1414856908 +104587,102716,Ridiculous,1414856959 +104587,102716,Sung Kang,1414856856 +104587,103335,Animation,1413047024 +104587,103335,Benjamin Bratt,1413046839 +104587,103335,Kristen Wiig,1413046827 +104587,103335,Minions,1413046902 +104587,103335,Romance Not Believable,1413047089 +104587,103335,Russell Brand,1413047069 +104587,103335,Steve Carell,1413046814 +104587,103335,Steve Coogan,1413046956 +104587,103341,Martin Freeman,1435428624 +104587,103341,Nick Frost,1435428611 +104587,103341,Rosamund Pike,1435428643 +104587,103341,Simon Pegg,1435428601 +104587,104129,Blood Sport,1410639129 +104587,104129,Fighting For Money,1410639201 +104587,104129,Head-To-Head Combat,1410639152 +104587,104129,Karen Mok,1410639090 +104587,104129,Keanu Reeves,1410639085 +104587,104129,Temple,1410639183 +104587,104129,Tiger Hu Chen,1410639079 +104587,104841,Cinematography,1409946654 +104587,104841,George Clooney,1409946624 +104587,104841,Isolation,1409946730 +104587,104841,Sandra Bullock,1409946616 +104587,104841,Space,1409946676 +104587,104841,Space Station,1409946706 +104587,105197,Father-Son Relationship,1410637931 +104587,105197,Montana,1410637966 +104587,105197,Nebraska,1410637974 +104587,105653,Escape,1383903285 +104587,105653,Jim Caviezel,1383902798 +104587,105653,Prison,1383902919 +104587,105653,Sylvester Stallone,1383902761 +104587,105844,Chiwetel Ejiofor,1391758368 +104587,105844,Graphic Violence,1391758592 +104587,105844,Hans Zimmer,1391758503 +104587,105844,Michael Fassbender,1391758419 +104587,105844,Nudity,1391758574 +104587,105844,Paul Giamatti,1391758454 +104587,105844,Soundtrack,1391758527 +104587,105844,Steve McQueen,1391758405 +104587,106438,Adoption,1413569937 +104587,106438,Judi Dench,1413569798 +104587,106438,Steve Coogan,1413569810 +104587,106438,Teen Pregnancy,1413569860 +104587,106491,Campy,1388640783 +104587,106491,Cliched,1388640947 +104587,106491,Keanu Reeves,1388640468 +104587,106491,Samurai,1388640509 +104587,106491,Studio Interference,1388641147 +104587,106696,Ice,1393096191 +104587,106696,Musical,1393694924 +104587,106696,Olaf,1393096236 +104587,106696,Winter,1393096187 +104587,106782,Anti-Hero,1393095798 +104587,106782,Drugs,1393095711 +104587,106782,Funny,1393095912 +104587,106782,Jean Dujardin,1393695037 +104587,106782,Joanna Lumley,1393095604 +104587,106782,Kyle Chandler,1393095592 +104587,106782,Leonardo DiCaprio,1393095453 +104587,106782,Margot Robbie,1393095471 +104587,106782,Martin Scorsese,1393095629 +104587,106782,Matthew McConaughey,1393095563 +104587,106782,Orgies,1393095694 +104587,106782,Rob Reiner,1393695091 +104587,106782,Scams,1393695227 +104587,106782,Sex,1393095706 +104587,106782,Stock Brokers,1393095732 +104587,106782,Stock Market,1393095725 +104587,106785,Ex-cop,1409946373 +104587,106785,Father-Daughter,1409946348 +104587,106785,James Franco,1409946305 +104587,106785,Jason Statham,1409946292 +104587,106785,Rachelle Lefevre,1409946323 +104587,106916,70s,1390116784 +104587,106916,Amy Adams,1390116711 +104587,106916,Anti-Hero,1393695193 +104587,106916,Bradley Cooper,1390116765 +104587,106916,Christian Bale,1390116697 +104587,106916,Cons,1390116834 +104587,106916,Louis C.K.,1390116861 +104587,106916,Predictable,1390116880 +104587,106916,Scams,1393695175 +104587,106916,Soundtrack,1390116896 +104587,107980,Britain,1398718663 +104587,107980,Colin Firth,1398718531 +104587,107980,Japan,1398718652 +104587,107980,Nicole Kidman,1398718540 +104587,107980,Post Traumatic Stress Disorder,1398718711 +104587,107980,Prisoners of War,1398718677 +104587,107980,Railway,1398718733 +104587,107980,Scope,1398718781 +104587,108156,Kevin Hart,1411160752 +104587,108780,1987,1391759280 +104587,108780,Escaped Convict,1391758855 +104587,108780,Gattlin Griffith,1391758778 +104587,108780,Jason Reitman,1391940764 +104587,108780,Josh Brolin,1391758732 +104587,108780,Kate Winslet,1391758723 +104587,108780,Single Mother,1391759211 +104587,109374,F. Murray Abraham,1398201635 +104587,109374,Hilarious,1398201702 +104587,109374,Jeff Goldblum,1398201611 +104587,109374,Polite Speech,1398201777 +104587,109374,Quirky,1398201684 +104587,109374,Ralph Fiennes,1398201492 +104587,109374,Saoirse Ronan,1398201504 +104587,109374,Willem Dafoe,1398201647 +104587,109487,Anne Hathaway,1417281393 +104587,109487,Christopher Nolan,1417281384 +104587,109487,Deus Ex Machina Ending,1417281824 +104587,109487,Matthew McConaughey,1417281430 +104587,109487,Self-Indulgent,1417281781 +104587,111362,James McAvoy,1401560016 +104587,111362,Jennifer Lawrence,1401559988 +104587,111362,Michael Fassbender,1401560007 +104587,111364,Aaron Taylor-Johnson,1401560268 +104587,111364,Creature Feature,1401560304 +104587,111364,David Strathairn,1401560201 +104587,111364,Godzilla,1401560219 +104587,111364,Ken Watanabe,1401560183 +104587,111759,Alien Invasion,1404762241 +104587,111759,Emily Blunt,1404762198 +104587,111759,Ending,1404762284 +104587,111759,Reluctant Hero,1404762365 +104587,111759,Time Travel,1404762213 +104587,111759,Tom Cruise,1404762193 +104587,111924,Brendan Gleeson,1402161185 +104587,111924,Gordon Pinsent,1402161207 +104587,111924,Liane Balaban,1402161193 +104587,111924,Mark Critch,1402161718 +104587,111924,Mary Walsh,1402161240 +104587,111924,Newfoundland,1402161734 +104587,111924,Taylor Kitsch,1402161175 +104587,111924,Unemployment,1402161772 +104587,112175,Craig Ferguson,1413048250 +104587,112175,Gerard Butler,1413048243 +104587,112175,Jay Baruchel,1413048234 +104587,112183,Broadway,1427403256 +104587,112183,Edward Norton,1427403114 +104587,112183,Emma Stone,1427403177 +104587,112183,magical realism,1427403235 +104587,112183,Michael Keaton,1427403108 +104587,112183,theater,1427403258 +104587,112183,Zach Galifianakis,1427403211 +104587,112370,Mark Wahlberg,1404761584 +104587,112370,No Substance,1404761757 +104587,112370,Special Effects,1404761566 +104587,112370,Stanley Tucci,1404761608 +104587,112370,Too Long,1404761655 +104587,112556,Ben Affleck,1413047600 +104587,112556,Blackmail,1413047957 +104587,112556,Carrie Coon,1413047740 +104587,112556,Kim Dickens,1413047747 +104587,112556,Narration,1413047988 +104587,112556,Neal Patrick Harris,1413047612 +104587,112556,Predictable Twist,1413048153 +104587,112556,Rosamund Pike,1413047570 +104587,112556,Sela Ward,1413047621 +104587,112897,Antonio Banderas,1409946449 +104587,112897,Ensemble Cast,1409946419 +104587,112897,Jason Statham,1409946438 +104587,112897,Sylvester Stallone,1409946428 +104587,113188,Guy Pearce,1414168380 +104587,113188,Road Trip,1413571426 +104587,113188,Robert Pattinson,1414168388 +104587,114007,Amnesia,1415467006 +104587,114007,Colin Firth,1415468051 +104587,114007,Mark Strong,1415468060 +104587,114007,Nicole Kidman,1415468032 +104587,114007,Psychological Thriller,1415467227 +104587,114042,Liam Neeson,1412443183 +104587,114042,Loss Of A Child,1412443424 +104587,114042,Olivia Wilde,1412443190 +104587,114042,Writer,1412443334 +104587,114439,CIA,1411757212 +104587,114439,Olga Kurylenko,1411757191 +104587,114439,Pierce Brosnan,1411757160 +104587,114439,Russia,1411757255 +104587,114439,Witness Protection,1411757316 +104587,114678,Adventure,1428007133 +104587,114678,Christopher Plummer,1428007061 +104587,114678,Ensemble Cast,1428006987 +104587,114678,Happiness,1428007110 +104587,114678,Jean Reno,1428007044 +104587,114678,Midlife Crisis,1428007093 +104587,114678,Rosamund Pike,1428007012 +104587,114678,Simon Pegg,1428006996 +104587,114678,Stellan Skarsgard,1428007027 +104587,114678,Toni Collettte,1428007085 +104587,114925,Editing,1413039185 +104587,114925,Human Trafficking,1413039112 +104587,114925,Kevin Durand,1413039040 +104587,114925,Kidnapping,1413039101 +104587,114925,Lost Child,1413039131 +104587,114925,Plot Holes,1413039431 +104587,114925,Rosario Dawson,1413039058 +104587,114925,Ryan Reynolds,1413039050 +104587,114928,Electroconvulsive Therapy,1413046333 +104587,114928,Mental Illness,1413046278 +104587,114928,Multiple Personalities,1413046289 +104587,114928,Nudity,1413046359 +104587,114928,Pretentious,1413046403 +104587,114928,Schizophrenia,1413046298 +104587,115149,Adrianne Palicki,1416071340 +104587,115149,Chad Stahelski,1416071478 +104587,115149,David Leitch,1416071473 +104587,115149,Funny,1416071559 +104587,115149,Hitman,1416071371 +104587,115149,Keanu Reeves,1416071292 +104587,115149,Revenge,1416071364 +104587,115149,Willem Dafoe,1416071304 +104587,115162,Adoption,1413569344 +104587,115162,Amateurish Action Sequences,1413569501 +104587,115162,Cliche Action Scenes,1413569570 +104587,115162,Haiti,1413569364 +104587,115162,Human Trafficking,1413569376 +104587,115162,No Chemistry,1413569468 +104587,115162,Puerto Rico,1413569357 +104587,115162,Scam,1413569406 +104587,115164,Cinematography,1413570669 +104587,115164,Inge Rademeyer,1413570629 +104587,115164,New Zealand,1413570658 +104587,115170,Billy Bob Thornton,1414163515 +104587,115170,Father-Son Relationship,1414163585 +104587,115170,Jeremy Strong,1414163499 +104587,115170,Law,1414163707 +104587,115170,Leighton Meester,1414163563 +104587,115170,One-Liners,1414163822 +104587,115170,Robert Downey Jr.,1414163411 +104587,115170,Robert Duvall,1414163418 +104587,115170,Sarah Lancaster,1414163534 +104587,115170,Small Town,1414163701 +104587,115170,Trial,1414163775 +104587,115170,Vera Farmiga,1414163427 +104587,115170,Vincent D'Onofrio,1414163492 +104587,115502,Allison Janney,1428006607 +104587,115502,Hugh Grant,1428006567 +104587,115502,Intentionally Bad First Act,1428006909 +104587,115502,J.K. Simmons,1428006616 +104587,115502,Marisa Tomei,1428006598 +104587,115502,Professor,1428006664 +104587,115502,Teaching,1428006652 +104587,115617,Disney,1417285440 +104587,116161,Bennett Miller,1422916189 +104587,116161,Mark Ruffalo,1422916140 +104587,116161,Pacing,1422916217 +104587,116161,Steve Carell,1422916260 +104587,116161,Transitions,1422916225 +104587,116797,Alan Turing,1420309661 +104587,116797,Benedict Cumberbatch,1420309700 +104587,116797,Computers,1420309790 +104587,116797,homosexuality,1420309671 +104587,116797,Keira Knightley,1420309716 +104587,116797,Mark Strong,1420309726 +104587,116797,World War II,1420309646 +104587,117851,Animation,1419014082 +104587,117851,Christopher Knights,1419014239 +104587,117851,Tom McGrath,1419014230 +104587,118924,Rosario Dawson,1428006430 +104587,118924,Title,1428006449 +104587,119145,colin firth,1429978482 +104587,119145,Mark Strong,1429978501 +104587,119145,Michael Caine,1429978511 +104587,119145,Parody,1429978575 +104587,119145,Secret Agency,1429978622 +104587,119145,Taron Egerton,1429978474 +104587,122882,charlize theron,1452962733 +104587,122882,dystopian,1452962813 +104587,122882,George Miller,1452962720 +104587,122882,In-camera Effects,1452962875 +104587,122882,Nicholas Hoult,1452962760 +104587,122882,post apocalypse,1452962806 +104587,122882,Rosie Huntington-Whitely,1452962795 +104587,122882,Tom Hardy,1452962726 +104587,129354,Margot Robbie,1435427383 +104587,132800,mental illness,1435428825 +104587,133545,Courtney COx,1435428479 +104587,133545,Editing,1435428486 +104587,133545,Seann William Scott,1435428465 +104587,134368,Jason Statham,1452962485 +104587,134368,Jude Law,1452962501 +104587,134368,melissa mccarthy,1452962472 +104587,134368,Paul Feig,1452962589 +104587,134368,Rose Byrne,1452962494 +104587,134783,Doug Ellin,1452962361 +104587,134783,Jeremy Piven,1452962340 +104593,260,future,1430772830 +104593,260,robots,1430772845 +104593,260,sci-fi,1430772821 +104621,112804,science fiction,1423682082 +104621,115170,drama,1423682049 +104624,6957,black comedy,1226100268 +104624,59026,Nudity (Topless),1226098176 +104624,61323,dark comedy,1226100260 +104653,134130,https://movielens.org/explore?tag=matt%20damon&sortBy=tagScore,1444780113 +104659,53000,Weak sequel,1191645501 +104687,260,good vs evil,1444638833 +104687,260,space adventure,1444638828 +104701,260,lazer,1433193811 +104701,260,space,1433193799 +104708,260,sci-fi,1439799717 +104708,260,Star Wars,1439799725 +104718,4535,From an epic ballad,1204802306 +104718,4535,historic Austrialian Outback,1204802306 +104718,6591,horror of religion,1216201062 +104718,8361,beautiful music,1204620556 +104718,26680,so bad it is good,1207905887 +104718,55259,Take a great story and destroy is was the motto for this film.,1231400846 +104718,60516,just plain stupid,1217849988 +104719,593,brilliant horror,1139676182 +104719,1092,suspense,1139676162 +104719,2692,Amazing kung fu,1139676035 +104719,32587,artistic,1139676467 +104719,32587,cool design,1139676455 +104724,112552,intense,1442142126 +104724,112552,music,1442142102 +104724,112552,Tense,1442142133 +104724,119145,violent,1442142506 +104738,296,action,1432721844 +104738,296,tarantino,1432721844 +104738,296,travolta,1432721844 +104790,356,great acting,1137726582 +104790,356,war,1137726582 +104790,364,animation,1137726570 +104790,364,coming of age,1137726570 +104790,588,fun,1137726589 +104790,628,twist,1137726552 +104790,1302,baseball,1137726637 +104790,1302,inspirational,1137726637 +104790,2000,buddy,1137726556 +104790,2000,drama,1137726556 +104790,2268,crime,1137726622 +104790,2841,suspense,1137726676 +104790,3510,amazing,1137726666 +104790,3916,inspirational,1137726655 +104790,4623,funny,1137726645 +104790,6193,good,1137726605 +104799,260,seen more than once,1183092389 +104799,1079,seen more than once,1183092430 +104799,1136,seen more than once,1183092669 +104799,1196,seen more than once,1183092512 +104799,1198,seen more than once,1183092533 +104799,1210,seen more than once,1183092506 +104799,1270,seen more than once,1183092445 +104799,1291,seen more than once,1183092911 +104799,2571,seen more than once,1183092357 +104799,2918,seen more than once,1183092941 +104799,3481,Jack Black,1183092928 +104799,3552,seen more than once,1183092435 +104799,3671,seen more than once,1183092440 +104799,3948,seen more than once,1183092680 +104799,4149,Jack Black,1183093205 +104799,4306,seen at the cinema,1183093049 +104799,4306,seen more than once,1183093049 +104799,4890,Jack Black,1183093060 +104799,4993,seen more than once,1183092425 +104799,5025,Jack Black,1183092650 +104799,5378,seen at the cinema,1183093145 +104799,5378,seen more than once,1183093145 +104799,5952,seen at the cinema,1183092707 +104799,5952,seen more than once,1183092707 +104799,6377,seen more than once,1183093106 +104799,6539,seen more than once,1183092548 +104799,6863,Jack Black,1183092621 +104799,6863,seen at the cinema,1183092840 +104799,6863,seen more than once,1183092521 +104799,7153,seen at the cinema,1183092785 +104799,7153,seen more than once,1183092418 +104799,8360,seen at the cinema,1183093050 +104799,8360,seen more than once,1183093050 +104799,8641,seen more than once,1183092462 +104799,8641,Steve Carell,1183092816 +104799,8641,Will Ferrell,1183092594 +104799,45499,seen more than once,1183092498 +104799,45666,Jack Black,1183093077 +104799,45722,seen more than once,1183092406 +104799,46970,Sacha Baron Cohen,1183092765 +104799,46970,seen at the cinema,1183092765 +104799,46970,seen more than once,1183092379 +104799,46970,Will Ferrell,1183092765 +104799,46976,Will Ferrell,1183093024 +104799,48322,seen at the cinema,1183092904 +104799,48385,Sacha Baron Cohen,1183092744 +104799,48385,seen at the cinema,1183092744 +104799,49396,Jack Black,1183092609 +104799,51255,seen at the cinema,1183092728 +104802,2968,don't touch it it's evil,1199317901 +104829,50,conspiracy,1439790259 +104829,50,Crime,1439790454 +104829,50,great ending,1439790268 +104829,50,Kevin Spacey,1439790248 +104829,50,mindfuck,1439790263 +104829,50,suspense,1439790247 +104829,50,thriller,1439790271 +104829,50,twist ending,1439790244 +104829,628,atmospheric,1439790608 +104829,628,psychology,1439725228 +104829,628,suspense,1439725226 +104829,628,thought-provoking,1439790540 +104829,628,twist ending,1439725222 +104829,2329,Edward Norton,1379226298 +104829,2329,emotional,1379226299 +104829,2329,Neo-Nazis,1379226309 +104829,2329,politics,1379226313 +104829,2329,racism,1379226314 +104829,2329,skinhead,1379226315 +104829,2329,thought-provoking,1379226317 +104829,2329,violence,1379226319 +104829,2571,action,1378220469 +104829,2571,alternate reality,1378220475 +104829,2571,atmospheric,1378220479 +104829,2571,dark,1378220470 +104829,2571,dystopia,1378220497 +104829,2571,fight scenes,1378220507 +104829,2571,idea is better than the actual film,1378220468 +104829,2571,philosophy,1378220512 +104829,2571,sci-fi,1378220468 +104829,2571,surreal,1378220536 +104829,2571,virtual reality,1378220462 +104829,2672,alternate reality,1378221425 +104829,2672,belivable science,1378221430 +104829,2672,dystopia,1378221434 +104829,2672,great ending,1378221438 +104829,2672,great plot,1378221440 +104829,2672,identity,1378221446 +104829,2672,nested virtualization,1378221449 +104829,2672,simulated reality,1378221454 +104829,2672,simulation,1378221456 +104829,2672,thriller,1378222159 +104829,2672,virtual reality,1378221460 +104829,2672,virtual-reality,1378221462 +104829,2959,Brad Pitt,1433867871 +104829,2959,complicated,1433867896 +104829,2959,dark comedy,1433867906 +104829,2959,mental illness,1433867890 +104829,2959,mindfuck,1433867879 +104829,2959,philosophy,1433867862 +104829,2959,psychological,1433867864 +104829,2959,psychology,1433867872 +104829,2959,surreal,1433867858 +104829,2959,violence,1433867859 +104829,5388,Al Pacino,1439473027 +104829,5388,atmospheric,1439790881 +104829,5388,Christopher Nolan,1439473037 +104829,5388,moral ambiguity,1439473086 +104829,5388,murder,1439473072 +104829,5388,psychological,1439473070 +104829,5388,psychology,1439473075 +104829,5388,thought-provoking,1439473068 +104829,5903,action,1378220566 +104829,5903,Christian Bale,1378220568 +104829,5903,dystopia,1378220575 +104829,5903,fascism,1378220588 +104829,5903,post-apocalyptic,1378220593 +104829,5903,sci-fi,1378220598 +104829,5903,thought-provoking,1378220603 +104829,5903,totalitarianism,1378220609 +104829,6537,Arnold Schwarzenegger,1444409800 +104829,6537,Nudity (Topless),1444409807 +104829,7143,colonialism,1378270099 +104829,7143,cross-cultural,1378270182 +104829,7143,epic,1378270108 +104829,7143,historical,1378270107 +104829,7143,Japan,1378270111 +104829,7143,martial arts,1378270120 +104829,7143,rebellion,1378270123 +104829,7143,samurai,1378270131 +104829,7143,Tom Cruise,1378270135 +104829,7143,war,1378270139 +104829,7458,Brad Pitt,1378270446 +104829,7458,director's cut,1378270451 +104829,7458,Epic,1378270453 +104829,7458,historical epic,1378270455 +104829,7458,Myth,1378270459 +104829,7458,War,1378270485 +104829,8640,Clive Owen,1378270410 +104829,8640,England,1378270413 +104829,8640,history,1378270415 +104829,8640,medieval,1378270418 +104829,8640,Roman empire,1378270422 +104829,8640,royalty,1378270424 +104829,8644,android(s)/cyborg(s),1378221710 +104829,8644,artificial intelligence,1378221706 +104829,8644,dystopia,1378221714 +104829,8644,future,1378221718 +104829,8644,futuristic,1378221721 +104829,8644,robots,1378221724 +104829,8644,sci-fi,1378221726 +104829,8644,seen more than once,1378221728 +104829,8644,technology,1378221732 +104829,8644,thought-provoking,1378221736 +104829,8644,Will Smith,1378221737 +104829,27869,Emotional,1378271031 +104829,27869,Korean war,1378271037 +104829,27869,war,1378271047 +104829,33162,cinematography,1378271512 +104829,33162,crusades,1378269897 +104829,33162,historical,1378269899 +104829,33162,history,1378269901 +104829,33162,islam,1378269905 +104829,33162,Jerusalem,1378269908 +104829,33162,Liam Neeson,1378269911 +104829,33162,medieval,1378269913 +104829,33162,music,1378271524 +104829,33162,Orlando Bloom,1378269916 +104829,33162,OST,1378271529 +104829,33162,religion,1378269919 +104829,33162,war,1378269924 +104829,50068,Clint Eastwood,1378271207 +104829,50068,emotional,1378271210 +104829,50068,japan,1378271214 +104829,50068,war,1378271222 +104829,50068,world war 2,1378271225 +104829,50068,World War II,1378271228 +104829,51662,adapted from:comic,1378270210 +104829,51662,artistic,1378270214 +104829,51662,atmospheric,1378270216 +104829,51662,historical,1378270246 +104829,51662,military,1378270249 +104829,51662,narrated,1378270252 +104829,51662,pointless subplot,1378270260 +104829,51662,stylized,1378270275 +104829,51662,war,1378270266 +104829,59126,atheism,1439794430 +104829,59126,Bill Maher,1439794444 +104829,59126,Documentary,1439794434 +104829,59126,thought-provoking,1439794438 +104829,60020,blood,1378550838 +104829,60020,epic,1378550846 +104829,60020,Jet Li,1378550841 +104829,60020,war,1378550843 +104829,61026,China,1378270803 +104829,61026,Epic,1378270807 +104829,61026,Han Dynasty,1378270808 +104829,61026,historical epic,1378270811 +104829,61026,John Woo,1378270813 +104829,61026,need classical Chinese conversation,1378270932 +104829,61026,Romance of the Three Kingdoms,1378270816 +104829,61026,war,1378270826 +104829,61026,war tactics,1378270838 +104829,68486,China,1378270978 +104829,68486,Han Dynasty,1378270976 +104829,68486,John Woo,1378270983 +104829,68486,mandarin,1378270984 +104829,68486,need classical Chinese conversation,1378271006 +104829,68486,Romance of the Three Kingdoms,1378270989 +104829,68486,war,1378270992 +104829,71530,alternate reality,1378221619 +104829,71530,androids,1378221621 +104829,71530,Bruce Willis,1378221627 +104829,71530,dystopia,1378221630 +104829,71530,future,1378221632 +104829,71530,identity,1378221634 +104829,71530,robots,1378221637 +104829,71530,sci-fi,1378221641 +104829,71530,special effects,1378221654 +104829,71530,surreal,1378221645 +104829,71530,technology,1378221649 +104829,71530,thought-provoking,1378221651 +104829,72378,apocalypse,1379091574 +104829,72378,China,1379091572 +104829,72378,disaster,1379091579 +104829,72378,predictable,1379091631 +104829,72378,Special Effects,1379091590 +104829,74458,atmospheric,1439790699 +104829,74458,mindfuck,1439790736 +104829,74458,psychological,1439790727 +104829,74458,thought-provoking,1439790744 +104829,74458,twist ending,1439790668 +104829,74458,twisted ending,1439790693 +104829,77866,adventure,1378270346 +104829,77866,Cate Blanchett,1378270349 +104829,77866,England,1378270352 +104829,77866,medieval,1378270355 +104829,77866,Russell Crowe,1378270360 +104829,77866,to see: medieval,1378270362 +104829,77866,war,1378270364 +104829,82461,alternate reality,1378222019 +104829,82461,artificial intelligence,1378222020 +104829,82461,atmospheric,1378222022 +104829,82461,computers,1378222027 +104829,82461,cyberpunk,1378222028 +104829,82461,futuristic,1378222030 +104829,82461,music,1378222034 +104829,82461,virtual reality,1378222048 +104829,85131,alien invasion,1379091362 +104829,85131,aliens,1379091364 +104829,85131,cliche,1379091378 +104829,85131,predictable,1379091391 +104829,85131,sci-fi,1379091394 +104829,85414,adventure,1378489508 +104829,85414,mindfuck,1378489515 +104829,85414,parallel universe,1378489518 +104829,85414,powerful ending,1378489522 +104829,85414,suspense,1378489526 +104829,85414,time loop,1378489528 +104829,85414,time travel,1378489529 +104829,85414,trains,1378489534 +104829,85414,twist ending,1378489532 +104829,87520,audience intelligence underestimated,1379091687 +104829,87520,bad science,1379091675 +104829,87520,childish plot,1379091681 +104829,87520,childish style,1379091775 +104829,87520,cliche,1379091695 +104829,87520,franchise,1379091708 +104829,87520,Michael Bay,1379091743 +104829,87520,robots,1379091746 +104829,87520,silly,1379091748 +104829,87520,story,1379091750 +104829,89759,Iran,1382801861 +104829,91976,gritty,1378270599 +104829,91976,journey,1378270603 +104829,91976,last man standing,1378270605 +104829,91976,Liam Neeson,1378270609 +104829,91976,life & death,1378270612 +104829,91976,man vs. nature,1378270616 +104829,91976,music,1378270657 +104829,91976,open ending,1378270619 +104829,91976,OST,1378270650 +104829,91976,survival,1378270641 +104829,91976,thought provoking,1378270644 +104829,93164,惊悚,1429885044 +104829,94018,alien invasion,1379091244 +104829,94018,aliens,1379091246 +104829,94018,bad science,1379091248 +104829,94018,childish,1379091251 +104829,94018,heroism,1379091253 +104829,94018,Liam Neeson,1379091267 +104829,94018,Poor Plot,1379091271 +104829,94018,sci-fi,1379091274 +104829,94018,silly,1379091275 +104829,94018,Tadanobu Asano,1379091303 +104829,96655,family,1379089364 +104829,96655,future,1379089366 +104829,96655,gentle,1379089378 +104829,96655,life,1379089382 +104829,96655,near future,1379089390 +104829,96655,robots,1379089385 +104829,96655,soft crime,1379089388 +104829,101864,adventure,1378221799 +104829,101864,atmospheric,1378221803 +104829,101864,cloning,1378221806 +104829,101864,dystopia,1378221809 +104829,101864,future,1378221812 +104829,101864,Morgan Freeman,1378221816 +104829,101864,sci-fi,1378221859 +104829,101864,space,1378221862 +104829,101864,technology,1378221864 +104829,101864,Tom Cruise,1378221868 +104829,102445,predictable,1379688399 +104829,102445,space,1379688417 +104829,102716,action,1379090834 +104829,102716,boring,1379089833 +104829,102716,For children,1379090906 +104829,102716,Narcissistic,1379090819 +104829,103249,bad ending,1378486822 +104829,103249,Brad Pitt,1378486343 +104829,103249,zombies,1378486351 +104829,110882,dialogue driven,1433870109 +104829,110882,one man show,1433870113 +104829,110882,strong performance,1433870101 +104829,110882,unique,1433870106 +104829,112556,Ben Affleck,1439790991 +104829,112556,David Fincher,1439790989 +104829,112556,mindfuck,1439790979 +104829,112556,murder,1439791027 +104829,112556,unpredictable,1439790984 +104829,120799,Arnold Schwarzenegger,1444409641 +104829,120799,Emilia Clarke,1444409673 +104829,121231,Creepy,1433867668 +104829,121231,horror,1433867793 +104829,121231,score,1433867791 +104829,122882,adventure,1439819042 +104829,122882,charlize theron,1439818805 +104829,122882,Tom Hardy,1439818824 +104829,140247,creepy,1446301811 +104845,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1444944296 +104845,260,sci-fi,1444944265 +104845,260,space epic,1444944257 +104853,2571,action,1428806909 +104853,2571,mind bending,1428806909 +104853,2571,sci-fi,1428806909 +104855,96821,bittersweet,1447318065 +104855,96821,character development,1447318056 +104855,96821,coming of age,1447318050 +104864,293,humorous,1186154960 +104864,54004,gay romance,1273509816 +104864,58937,Tilda Swinton,1271361231 +104864,119149,belgium,1421766751 +104864,119149,comedy,1421766751 +104864,119149,kevin janssens,1421766751 +104867,109374,cinematography,1427088025 +104867,109374,eastern europe,1427088041 +104867,109374,visually appealing,1427088020 +104867,109374,Wes Anderson,1427088022 +104867,109374,whimsical,1427088046 +104867,112552,Tense,1427088076 +104867,114935,science fiction,1427087919 +104867,114935,time travel,1427087909 +104904,260,fantasy,1435440696 +104904,260,space opera,1435440706 +104917,924,great special-fx,1449751806 +104917,924,sci-fi,1449751793 +104917,924,slow paced,1449751820 +104917,68237,Sci-fi,1449751630 +104917,68237,watch-once-only,1449751648 +104917,126426,classic,1449751765 +104917,126426,sci-fi,1449751752 +104917,126426,slow paced,1449751776 +104940,260,classic sci-fi,1437032883 +104940,260,good clean fun movie,1437032924 +104940,122882,action packed,1437033190 +104940,122882,great actor,1437033190 +104940,122882,sequel better than original,1437033190 +105019,260,space epic,1443512493 +105042,260,fantasy,1441426171 +105042,260,sci-fi,1441426166 +105046,114040,boring,1421683803 +105046,114040,post apocalyptic,1421683803 +105046,114040,predictable movie,1421683803 +105046,129340,family political drama,1425057178 +105046,129340,melancholy,1425057203 +105046,134571,action,1433435794 +105046,134571,gangster,1433435788 +105046,134571,politics,1433435826 +105046,134571,romance,1433435814 +105046,135492,comedy,1434908887 +105046,135492,drama,1434908880 +105046,135492,"tamil, india",1434908873 +105046,135492,well directed,1434908903 +105051,1653,dystopia,1240874682 +105051,1653,Ethan Hawke,1240874667 +105051,1653,Jude Law,1240874668 +105051,1653,Uma Thurman,1240874671 +105051,2883,Zooey Deschanel,1240874313 +105051,5363,Zooey Deschanel,1240947477 +105051,5505,Jake Gyllenhaal,1240873829 +105051,5505,Jennifer Aniston,1240873777 +105051,5505,Zooey Deschanel,1240873774 +105051,5677,Katie Holmes,1240874218 +105051,5677,Zooey Deschanel,1240874225 +105051,6159,Zooey Deschanel,1240874303 +105051,6329,Zooey Deschanel,1240874117 +105051,6936,Zooey Deschanel,1240874571 +105051,8918,black comedy,1240873621 +105051,8918,crazy family,1240873631 +105051,8918,smart ass kids,1240873636 +105051,8918,Zooey Deschanel,1240873611 +105051,33004,Zooey Deschanel,1240874172 +105051,43914,Zooey Deschanel,1240874334 +105051,44004,Sarah Jessica Parker,1240873454 +105051,44004,Zooey Deschanel,1240873460 +105051,45440,Terry Zwigoff,1240875016 +105051,50601,Zooey Deschanel,1240873750 +105051,56671,Jena Malone,1240873668 +105051,56671,Zooey Deschanel,1240873666 +105051,60037,far fetched,1240874021 +105051,60037,Zooey Deschanel,1240874049 +105051,60599,quirky,1240874447 +105051,60599,Zooey Deschanel,1240874447 +105051,62970,Zooey Deschanel,1240874358 +105051,64969,Zooey Deschanel,1240873706 +105051,67138,Zooey Deschanel,1240874098 +105059,111,5 stars,1186239700 +105059,902,5 stars,1186231064 +105059,924,5 stars,1186239729 +105059,1103,5 stars,1186230935 +105059,1206,5 stars,1186239777 +105059,1208,5 stars,1186239558 +105059,1219,5 stars,1186239664 +105059,1221,5 stars,1186239800 +105059,1222,5 stars,1186239988 +105059,1251,5 stars,1186230196 +105059,1281,5 stars,1187005186 +105059,1464,5 stars,1186228855 +105059,2657,5 stars,1187451498 +105059,2877,rock opera,1186229113 +105059,2959,5 stars,1186239973 +105059,3462,5 stars,1190803300 +105059,4367,video game adaptation,1186228633 +105059,4975,remake,1186228602 +105059,5304,5 stars,1186239286 +105059,6987,5 stars,1187451047 +105059,8154,5 stars,1186229395 +105065,42723,action,1360366598 +105065,42723,banned movie,1360366596 +105065,42723,brutal,1360366549 +105065,42723,Disappointing,1360366564 +105065,42723,goretastic,1360366552 +105065,42723,Nudity (Topless),1360366572 +105065,42723,revenge,1360366575 +105065,42723,soft porn,1360366611 +105065,42723,torture,1360366555 +105065,42723,Tough to watch,1360366559 +105065,42723,unlikeable characters,1360366580 +105065,51077,based on a comic,1360367006 +105065,51077,motorcycle,1360367001 +105065,51077,Nicholas Cage,1360366991 +105065,51077,SO bad,1360366994 +105065,53956,british comedy,1360367362 +105065,53956,dark comedy,1360367389 +105065,53956,farce,1360367366 +105065,53956,Matthew MacFadyen,1360367372 +105065,65601,bad script,1360366702 +105065,65601,bad twist ending,1360366669 +105065,65601,classic horror,1360366680 +105065,65601,Jensen Ackles,1360366666 +105065,65601,Stereoscopic 3-D,1360366687 +105065,65601,stupid,1360366673 +105065,75395,bad acting,1360367066 +105065,75395,bad script,1360367069 +105065,75395,predictable ending,1360367072 +105065,75395,psychological,1360367097 +105065,75395,Psychological horror,1360367085 +105065,75395,sappy,1360367112 +105065,75395,survival horror,1360367075 +105065,75395,tense,1360367078 +105065,75395,wolves,1360367105 +105065,77191,bad remake,1360367320 +105065,77191,cheap jokes,1360367342 +105065,77191,Chris Rock,1360367331 +105065,77191,shot by shot remake,1360367324 +105065,77191,Tracy Morgan,1360367328 +105065,80549,dialogue,1360367209 +105065,80549,Emma Stone,1360367206 +105065,80549,family relationships,1360367218 +105065,80549,funny,1360367211 +105065,80549,satire,1360367223 +105065,80549,witty,1360367215 +105065,86833,bittersweet,1360367565 +105065,86833,dialogue,1360367526 +105065,86833,offbeat,1360367528 +105065,86833,predictable ending,1360367555 +105065,86833,quirky,1360367533 +105065,86833,Rose Byrne,1360367574 +105065,95167,No Marriage at the End,1360176364 +105065,95167,predictable,1360176099 +105065,99114,19th century,1360172777 +105065,99114,brutal,1360172798 +105065,99114,drama,1360172783 +105065,99114,Funny,1360172785 +105065,99114,Great performances,1360172774 +105065,99114,Leonardo DiCaprio,1360172772 +105065,99114,Quentin Tarantino,1360172761 +105065,99114,Revenge,1360172768 +105065,99114,Soundtrack,1360172764 +105077,260,action,1434826280 +105077,260,classic,1434826261 +105077,260,family,1434826298 +105077,260,hero quest,1434826312 +105077,260,Myth,1434826270 +105077,260,sci-fi,1434826251 +105077,2108,shakespeare,1434847639 +105077,59399,cultural differences,1434847486 +105077,59399,romantic comedy,1434847471 +105077,117529,action,1434847293 +105077,117529,comedy,1434847293 +105077,117529,dinosaurs,1434847293 +105082,84273,utopia,1446809712 +105083,14,biopic,1188570524 +105083,475,polotical ira prison,1188570425 +105083,838,period drama,1188570468 +105083,1231,race,1188570493 +105083,1267,brainwashing,1188570434 +105083,1339,horror novel,1188570398 +105083,1343,psycho murderer,1188570410 +105083,1953,cops,1188570478 +105083,3911,comedy dogs dog dogshow canine,1188570371 +105083,6934,sequel,1188570519 +105083,7147,imagination,1188570510 +105083,32587,cartoon,1188570531 +105091,2797,grown up,1162331306 +105093,1148,Aardman,1160247731 +105093,1617,Crime,1160248003 +105093,3671,Mel Brooks,1160247852 +105093,7091,Classic,1160247862 +105093,7091,Marx brothers,1160247861 +105093,33794,action,1160247847 +105093,33794,super-hero,1160247841 +105097,2846,Kawaii,1149585988 +105104,260,action,1436303485 +105104,260,space,1436303481 +105104,30749,depressing,1436303780 +105104,30749,drama,1436303796 +105104,30749,genocide,1436303788 +105104,30749,true story,1436303793 +105104,65188,depressing,1436303838 +105122,318,classic,1430777285 +105122,318,must see,1430777285 +105122,318,stephen king,1430777285 +105173,32,dystopia,1428777353 +105173,32,end of the world,1428777361 +105173,32,post-apocalyptic,1428777339 +105173,32,sci-fi,1428777351 +105173,32,time loop,1428777367 +105173,32,time travel,1428777335 +105173,307,composer,1202471620 +105173,307,death,1202471620 +105173,307,family,1202471620 +105173,307,love,1202471620 +105173,307,music,1202471620 +105173,307,relationships,1202471620 +105173,593,cannibalism,1437054128 +105173,593,fbi,1437054128 +105173,593,serial killer,1437054128 +105173,665,1990s,1215107955 +105173,665,World War II,1215107919 +105173,665,Yugoslavia,1215107922 +105173,1212,1940s,1202471541 +105173,4033,politics,1215107837 +105173,4878,alternate timeline,1428777381 +105173,4878,atmospheric,1428777388 +105173,4878,cerebral,1428777384 +105173,4878,cult film,1428777395 +105173,4878,surreal,1428777401 +105173,4878,time travel,1428777378 +105173,7586,espionage,1428777537 +105173,7586,european,1428777543 +105173,7586,netherlands,1428777549 +105173,7586,Treason,1428777528 +105173,7586,war,1428777513 +105173,7586,World War 2,1428777520 +105173,68237,Sam Rockwell,1257534286 +105173,89753,acting,1328373261 +105173,89753,atmosphere,1328373261 +105173,89753,espionage,1328373308 +105173,89753,incoherent,1328373250 +105173,89753,opaque,1328373250 +105173,89753,photography,1328373261 +105173,89753,Spies,1328373299 +105178,1197,based on book,1243970721 +105178,1197,Cult classic,1243970690 +105178,1197,fantasy,1243970747 +105178,1197,feel-good,1243970746 +105178,1197,humorous,1243970744 +105178,1197,romance,1243970683 +105178,44665,Bruce Willis,1245770857 +105178,44665,Revenge,1245770877 +105178,44665,slow paced,1245770865 +105178,44665,stylized,1245770871 +105178,44665,twist ending,1245770859 +105196,79132,an excellent socio fantasy movie,1431107597 +105196,120635,average action movie,1431107322 +105238,1,animation,1290312028 +105238,1,family,1290312032 +105238,1,Tom Hanks,1290312036 +105238,17,Alan Rickman,1290364098 +105238,17,British,1290364106 +105238,17,costume drama,1290364108 +105238,110,action,1290308178 +105238,110,british,1290308169 +105238,110,historical,1290308156 +105238,110,History,1290308165 +105238,110,medieval,1290308158 +105238,110,sword fight,1290308160 +105238,175,controversial,1290307135 +105238,175,Justin Pierce,1290307152 +105238,175,Very interesting,1290307143 +105238,175,youth gone wild,1290307158 +105238,223,crude humor,1290312877 +105238,223,great dialogue,1290312873 +105238,223,Kevin Smith,1290312860 +105238,260,fantasy,1290308245 +105238,260,robots,1290308239 +105238,260,sci-fi,1290308232 +105238,260,sword fight,1290308235 +105238,344,Dumb,1290308433 +105238,344,goofy,1290308435 +105238,344,Jim Carrey,1290308438 +105238,344,Jim Carrey being Jim Carrey,1290308451 +105238,344,Stupid as Hell,1290308443 +105238,344,very dumb,1290308441 +105238,356,great soundtrack,1290308071 +105238,356,history,1290308092 +105238,356,Tom Hanks,1290308066 +105238,457,Harrison Ford,1290308334 +105238,457,prison escape,1290308320 +105238,457,tense,1290308337 +105238,457,thriller,1290308315 +105238,457,Tommy Lee Jones,1290308331 +105238,480,dinosaurs,1290308119 +105238,480,genetics,1290308126 +105238,480,sci-fi,1290308116 +105238,480,thriller,1290308132 +105238,588,animation,1290312064 +105238,588,kids and family,1290312068 +105238,778,addiction,1290311832 +105238,778,black comedy,1290311829 +105238,778,dark comedy,1290311820 +105238,778,drugs,1290311823 +105238,778,heroin,1290311818 +105238,1213,dark comedy,1290307713 +105238,1213,disturbing,1290307688 +105238,1213,gritty,1290307691 +105238,1213,organized crime,1290307682 +105238,1213,Robert De Niro,1290307704 +105238,1259,classic,1290307080 +105238,1259,friendship,1290307061 +105238,1259,nostalgic,1290307058 +105238,1259,Stephen King,1290307064 +105238,1466,Al Pacino,1290307772 +105238,1466,based on a true story,1290307754 +105238,1466,Mafia,1290307768 +105238,1466,true story,1290307765 +105238,1704,genius,1290307483 +105238,1704,inspirational,1290307513 +105238,1704,Matt Damon,1290307487 +105238,1704,Oscar (Best Writing - Screenplay Written Directly for the Screen),1290307510 +105238,1704,seen more than once,1290307473 +105238,1923,Cameron Diaz,1290311425 +105238,1923,crude humor,1290311419 +105238,1923,goofy,1290311415 +105238,2599,black comedy,1290307838 +105238,2599,dark comedy,1290307840 +105238,2599,deadpan,1290307842 +105238,2599,Reese Witherspoon,1290307846 +105238,2599,satirical,1290307850 +105238,2599,seen more than once,1290307853 +105238,2803,Denzel Washington,1290307425 +105238,2803,Julia Roberts,1290307427 +105238,2803,lawyers,1290307420 +105238,2803,murder investigations,1290307417 +105238,3178,Denzel Washington,1290307391 +105238,3178,excellent,1290307397 +105238,3252,Al Pacino,1290307293 +105238,3252,great acting,1290307301 +105238,3252,one of the best movies ever,1290307319 +105238,3252,Oscar (Best Actor),1290307298 +105238,4239,cocaine,1290307810 +105238,4239,Penélope Cruz,1290307800 +105238,4450,Bijou Phillips,1290307190 +105238,4450,Nick Stahl,1290307272 +105238,4450,true story,1290307209 +105238,4975,mindfuck,1290311903 +105238,4975,surreal,1290311927 +105238,4975,Thriller,1290311910 +105238,5380,Reese Witherspoon,1290307600 +105238,6874,martial arts,1290307016 +105238,6874,Tarantino,1290307022 +105238,6874,Uma Thurman,1290307040 +105238,8533,FIRST LOVE,1290307353 +105238,8533,life choices,1290307345 +105238,8533,Rachel McAdams,1290307357 +105238,8533,The most romantic,1290307343 +105238,8833,19th century,1290307628 +105238,8833,Reese Witherspoon,1290307635 +105238,54780,anthropology,1290308028 +105238,56367,cult film,1290307920 +105238,56367,Ellen Page,1290307883 +105238,56367,great soundtrack,1290307914 +105238,56367,Jason Reitman,1290307961 +105238,56367,Michael Cera,1290307955 +105238,56367,notable soundtrack,1290307951 +105238,56367,witty,1290307890 +105269,150,space,1137289425 +105269,541,SF,1137289865 +105269,924,SF,1139645076 +105269,924,space,1137289330 +105269,1036,definitive,1138251686 +105269,1212,love this movie,1154875957 +105269,1214,SF,1137289847 +105269,1214,space,1137289163 +105269,1230,romantic,1137290932 +105269,1240,SF,1166355882 +105269,1252,love this movie,1138251926 +105269,1584,SF,1139644381 +105269,1639,romantic,1137290940 +105269,1653,SF,1137290805 +105269,2009,SF,1166355872 +105269,2076,love this movie,1138251506 +105269,2311,space,1137289376 +105269,3503,SF,1166355786 +105269,3703,SF,1154876506 +105269,4416,SF,1139644827 +105269,4848,love this movie,1138251550 +105269,5349,love this movie,1138251590 +105269,6979,SF,1154876646 +105269,7128,SF,1154876920 +105269,8638,romantic,1154876004 +105269,8914,love this movie,1154875967 +105269,8914,SF,1137289800 +105269,8914,time travel,1154875978 +105269,26554,SF,1154876344 +105287,260,fantasy,1431271374 +105287,260,sci-fi,1431271335 +105287,3578,tragic hero,1431492003 +105308,293,Gary Oldman,1437125605 +105308,293,great acting,1437125604 +105308,293,Jean Reno,1437125594 +105308,293,love story,1437125607 +105308,293,police,1437125620 +105308,1206,psychology,1438342569 +105308,1206,violent,1438342573 +105308,1721,bittersweet,1438341778 +105308,1721,Leonardo DiCaprio,1438341771 +105308,1721,romance,1438341780 +105308,1721,true story,1438341781 +105308,2858,dark comedy,1438340645 +105308,2858,excellent script,1438340652 +105308,2858,sexuality,1438340648 +105308,74324,autism,1437124947 +105308,74324,genius,1437124950 +105308,74324,inspirational,1437124953 +105308,74324,true story,1437124961 +105317,1246,Drama,1453233100 +105317,1246,philosophy,1453233093 +105317,2248,romantic,1453233151 +105317,2248,sweet,1453233148 +105317,60293,coming of age,1453233560 +105317,60293,depression,1453233564 +105325,8930,meta,1139758248 +105325,8930,Von Trier,1139758248 +105341,2012,alternate reality,1246983426 +105341,2012,sci-fi,1246983433 +105341,2012,science fiction,1246983436 +105341,2012,time travel,1246983440 +105341,2012,western,1246983441 +105341,6874,Japan,1246983295 +105341,6874,martial arts,1246983303 +105341,6874,rape,1246983315 +105341,6874,stylized,1246983318 +105341,6874,violent,1246983310 +105341,33493,dark,1246983562 +105341,33493,fantasy,1246983565 +105341,33493,George Lucas,1246983572 +105341,33493,Natalie Portman,1246983569 +105341,33493,sci-fi,1246983556 +105341,33493,sequel,1246983590 +105341,33493,space,1246983585 +105341,33493,Star Wars,1246983555 +105341,33493,super-hero,1246983578 +105341,33493,war,1246983583 +105341,48711,christian,1269890875 +105341,48711,football,1269890884 +105341,48711,poor acting,1269890880 +105341,56757,cannibalism,1269890401 +105341,56757,Johnny Depp,1269890388 +105341,56757,Musical,1269890375 +105341,56757,serial killer,1269890390 +105341,56757,Tim Burton,1269890387 +105341,56757,violent,1269890378 +105341,56757,visually appealing,1269890395 +105341,58559,Batman,1242142884 +105341,58559,Christian Bale,1242142888 +105341,58559,dark,1242142890 +105341,58559,superhero,1242142881 +105341,60684,based on a comic,1269890695 +105341,60684,sci-fi,1269890686 +105341,60684,superhero,1269890684 +105341,66639,based on a video game,1269890488 +105341,66639,video game adaptation,1269890495 +105341,68358,sci fi,1242142798 +105341,68358,spock,1242142803 +105341,68358,Star Trek,1242142776 +105341,68358,time travel,1242142779 +105341,68954,computer animation,1246982938 +105341,68954,Pixar,1246982930 +105341,70286,aliens,1268427421 +105341,70286,sci-fi,1268427418 +105341,70286,violence,1268427435 +105341,70293,Amy Adams,1251213827 +105341,71156,drugs,1269890604 +105341,71156,superpowers,1269890624 +105341,71668,Kristen Bell,1269890537 +105341,72701,aliens,1269890653 +105341,72701,astronauts,1269890654 +105341,72701,cgi,1269890660 +105341,72737,animation,1269890756 +105341,72737,Disney,1269890746 +105341,72737,Voodoo,1269890751 +105341,72998,futuristic,1268427334 +105341,72998,sci-fi,1268427335 +105341,73319,Amy Adams,1268427385 +105341,74154,Kristen Bell,1269890798 +105359,32,Post apocalyptic,1448934340 +105359,32,sci-fi,1449090498 +105359,47,disturbing,1445359643 +105359,47,great ending,1445359635 +105359,47,mystery,1445359645 +105359,47,powerful ending,1445359636 +105359,288,dark comedy,1449501574 +105359,288,psychedelic,1449501584 +105359,288,satire,1449501585 +105359,288,stylized,1449501576 +105359,527,holocaust,1448973111 +105359,527,Nazis,1448973119 +105359,589,Arnold Schwarzenegger,1445359442 +105359,589,computers,1445359438 +105359,589,sci-fi,1445359445 +105359,593,Anthony Hopkins,1445524453 +105359,593,investigation,1445524474 +105359,593,psychology,1445524456 +105359,1086,Alfred Hitchcock,1447680417 +105359,1086,suspense,1447680421 +105359,1178,anti-war,1448934383 +105359,1178,disturbing,1448934379 +105359,1201,western,1449501766 +105359,1203,classic,1449015040 +105359,1203,good dialogue,1449015025 +105359,1203,group psychology,1449015046 +105359,1203,justice,1449015050 +105359,1214,aliens,1445360925 +105359,1214,atmospheric,1445360929 +105359,1214,futuristic,1445360937 +105359,1214,sci-fi,1445360923 +105359,1214,space,1445360926 +105359,1265,existentialism,1449501497 +105359,1265,funny,1449501494 +105359,1265,romance,1449501505 +105359,1265,romantic,1449501488 +105359,1265,surreal,1449501479 +105359,1625,michael douglas,1445524402 +105359,1625,mindfuck,1445524398 +105359,1625,Mystery,1445524395 +105359,1625,thriller,1445524405 +105359,1625,twist ending,1445524394 +105359,2028,americanizado,1445360218 +105359,2028,fighting nazis,1445360253 +105359,2028,patriotic,1445360255 +105359,2028,pro america,1445360238 +105359,2028,us glorification,1445360231 +105359,2232,cult film,1445359818 +105359,2232,intense,1445359829 +105359,2232,mindfuck,1445359822 +105359,2232,original,1445359824 +105359,2232,scifi,1445359826 +105359,2490,Mel Gibson,1445359372 +105359,2490,revenge,1445359371 +105359,2490,tough guy,1445359339 +105359,2490,violent,1445359380 +105359,2529,original,1445360621 +105359,2529,post-apocalyptic,1445360607 +105359,2529,science fiction,1445360617 +105359,2529,social commentary,1445360611 +105359,2529,twist ending,1445360613 +105359,2529,visually appealing,1445360619 +105359,2571,artificial intelligence,1445359481 +105359,2571,Keanu Reeves,1445359479 +105359,2571,martial arts,1445359486 +105359,2571,post apocalyptic,1445359477 +105359,2571,sci-fi,1445359468 +105359,2571,virtual reality,1445359466 +105359,2628,sci-fi,1445614952 +105359,2628,Star Wars,1445614951 +105359,2692,intense,1445359557 +105359,2692,original,1445359555 +105359,2692,thought-provoking,1445359560 +105359,2858,dark comedy,1449501601 +105359,2858,satirical,1449501616 +105359,2959,mindfuck,1445359583 +105359,2959,twist ending,1445359575 +105359,3020,dark comedy,1449501715 +105359,3362,Atmospheric,1449090540 +105359,3362,black comedy,1449090534 +105359,3362,dark comedy,1449090544 +105359,3508,Clint Eastwood,1445886233 +105359,3508,slow,1445886267 +105359,3508,tough guy,1445886250 +105359,3508,western,1445886234 +105359,3578,Epic,1449090448 +105359,3578,Hans Zimmer,1449090465 +105359,3578,heroism,1449090453 +105359,3578,history,1449090455 +105359,3578,Rome,1449090469 +105359,3578,sword fight,1449090463 +105359,3979,besteirol,1445359191 +105359,4148,Anthony Hopkins,1449501624 +105359,4148,atmospheric,1449501627 +105359,4262,Al Pacino,1449501514 +105359,4262,atmospheric,1449501519 +105359,4310,americanizado,1445360344 +105359,4310,patriotic,1445360351 +105359,4310,propaganda in disguise,1445360306 +105359,5107,nazis,1449090581 +105359,5445,future,1445359506 +105359,5445,sci-fi,1445359502 +105359,5445,Steven Spielberg,1445359512 +105359,5445,Tom Cruise,1445359500 +105359,5679,creepy,1449090558 +105359,5679,disturbing,1449090555 +105359,5679,mystery,1449090563 +105359,5679,suspense,1449090561 +105359,5826,songs,1453736692 +105359,5826,western,1453736703 +105359,6502,post-apocalyptic,1449501663 +105359,6502,survival,1449501668 +105359,6800,tough guy,1445359303 +105359,6874,martial arts,1445360970 +105359,6874,Quentin Tarantino,1445360963 +105359,6874,violent,1445360973 +105359,6874,visually appealing,1445360981 +105359,7090,cinematography,1449501461 +105359,7090,martial arts,1449501464 +105359,7090,visually appealing,1449501467 +105359,7143,historical,1445360900 +105359,7143,Honor,1445360896 +105359,7143,sword fight,1445360894 +105359,7347,psychological,1445359975 +105359,7347,Stephen King,1445359971 +105359,8950,atmospheric,1445359614 +105359,8950,disturbing,1445359613 +105359,8950,twist ending,1445359602 +105359,27423,funny,1445360431 +105359,31427,predictable,1445360066 +105359,31696,gothic,1449501697 +105359,31696,mythology,1449501696 +105359,34532,Twist Ending,1445359987 +105359,45672,surprisingly good,1445359954 +105359,46865,besteirol,1449160149 +105359,46865,idiotic,1449160147 +105359,52458,thriller,1445360673 +105359,54997,western,1449501637 +105359,58299,beautiful message,1445360796 +105359,59784,anti-hero,1449501441 +105359,59784,martial arts,1449501433 +105359,59900,exaggerated,1445360682 +105359,59900,ridiculous,1445360691 +105359,65514,kung fu,1449501450 +105359,65514,martial arts,1449501452 +105359,68237,Sci-fi,1445359871 +105359,68237,thought-provoking,1445359878 +105359,74458,twist ending,1445524430 +105359,79132,alternate reality,1445359527 +105359,79132,mindfuck,1445359536 +105359,79132,sci-fi,1445359540 +105359,79132,surreal,1445359530 +105359,79132,visually appealing,1445359528 +105359,83349,not very funny,1445360574 +105359,88129,heavy,1445359250 +105359,90866,boring,1445360412 +105359,99114,good soundtrack,1449501541 +105359,99114,Quentin Tarantino,1449501537 +105359,99114,visually appealing,1449501549 +105359,106920,bittersweet,1445360472 +105359,106920,boring,1445360463 +105359,106920,meaning of life,1445360491 +105359,106920,original,1445360510 +105359,106920,sci-fi,1445360465 +105359,106920,thought-provoking,1445360516 +105359,112171,tough guy,1445359911 +105359,115713,artificial intelligence,1445359843 +105359,115713,futuristic,1445359850 +105359,115713,sci-fi,1445359845 +105359,115713,thought provoking,1445359841 +105359,117529,cliche,1445360848 +105359,117529,Predictible,1445360849 +105359,117529,sci-fi,1445360836 +105359,122882,action,1445359394 +105359,122882,non-stop,1445359405 +105359,122882,post apocalypse,1445359392 +105359,122882,sci-fi,1445359402 +105359,122882,visually appealing,1445359422 +105359,134130,sci-fi,1445524186 +105359,134130,Space,1445524184 +105359,136562,biography,1453857338 +105382,1298,musical,1187615306 +105382,1665,enlish,1187615438 +105382,1892,potato,1187615350 +105382,2404,war,1187615416 +105382,6953,psychological,1187615395 +105391,34150,Jessica Alba,1251586552 +105391,55245,Jessica Alba,1251586715 +105409,94752,biography,1438126832 +105409,94752,drama,1438126832 +105409,94752,medicine,1438126832 +105420,1298,animation,1244502845 +105420,1298,artistic,1244502847 +105420,1298,great soundtrack,1244502853 +105420,1298,racism,1244502858 +105420,1298,social commentary,1244502861 +105420,1298,World War II,1244502864 +105420,2696,funny,1251595610 +105420,4593,Dustin Hoffman,1284606954 +105420,5618,animation,1253828331 +105420,5618,dreamlike,1253828340 +105420,5618,hallucinatory,1253828345 +105420,7099,fantasy world,1253828389 +105420,7099,Hayao Miyazaki,1253828383 +105420,8014,Atmospheric,1242617353 +105420,8014,great photograpy,1242617363 +105420,8014,reflective,1242617366 +105420,27899,http://www.movielens.org/tagSearch?referrer=relatedSearch&tag=bad%20science,1267337808 +105420,30803,magic realism,1242617446 +105420,30803,silent,1242617452 +105420,30803,UNLIKELY FRIENDSHIPS,1242617462 +105420,30810,Bill Murray,1242617971 +105420,30810,humor,1242618007 +105420,30810,quirky,1242617966 +105420,30810,weird,1242617506 +105420,30810,whimsical,1242618050 +105420,67665,Spinal Tap influence,1259894259 +105422,260,George Lucas,1441191054 +105422,260,sci-fi,1441190969 +105428,180,Kevin Smith,1225245499 +105432,47,psychological thriller,1257437546 +105432,1079,black comedy,1257960870 +105432,1079,dark comedy,1257960868 +105432,1079,irreverent,1257960860 +105432,1079,Jamie Lee Curtis,1257960855 +105432,1079,john cleese,1257931634 +105432,1079,Kevin Kline,1257960858 +105432,1079,witty,1257960883 +105432,1136,Graham Chapman,1269837736 +105432,1136,John Cleese,1269837736 +105432,1136,medieval,1269837613 +105432,1136,Michael Palin,1269837736 +105432,1136,Monty Python,1269837617 +105432,1136,parody,1269837611 +105432,1136,Terry Gilliam,1269837619 +105432,1136,witty,1269837646 +105432,1265,alternate reality,1309853222 +105432,1265,Bill Murray,1309853224 +105432,1265,Classic,1309853220 +105432,1265,existentialism,1257319785 +105432,1265,hilarious,1309853219 +105432,1265,surreal,1309853217 +105432,1265,time loop,1309853228 +105432,1265,time travel,1309853226 +105432,1682,dark comedy,1309853238 +105432,1682,Jim Carrey,1309853239 +105432,1682,social commentary,1309853236 +105432,1682,stylized,1309853242 +105432,1859,dialogue,1258048914 +105432,1859,life,1258048914 +105432,1859,life reflection,1258048914 +105432,1859,long takes,1258048914 +105432,2139,anthropomorphic,1266907258 +105432,2139,great animation,1266907265 +105432,2139,mice,1266907278 +105432,2139,mouse,1266907271 +105432,2139,talking animals,1266907254 +105432,2318,dark,1257319816 +105432,2318,dark comedy,1257319816 +105432,2318,dark humor,1257319816 +105432,2318,social commentary,1257319816 +105432,2729,erotic,1257441546 +105432,2804,Best Christmas movie,1309853207 +105432,2804,Bully,1309853197 +105432,2804,classic,1309853195 +105432,2804,classic christmas tale,1309853194 +105432,5298,Michel Gondry,1257319835 +105432,6016,based on a true story,1309853359 +105432,6016,Brazil,1309853364 +105432,6016,crime,1309853361 +105432,6016,drugs,1309853362 +105432,6016,multiple storylines,1309853351 +105432,6016,South America,1309853353 +105432,6016,stylized,1309853366 +105432,6016,true story,1309853368 +105432,6188,Elisha Cuthbert,1306305690 +105432,6188,Funny as hell,1306305666 +105432,6188,Nudity (Topless),1306305673 +105432,6188,Seann William Scott,1306305682 +105432,6188,Vince Vaughn,1306305680 +105432,6188,Will Ferrell,1306305670 +105432,6975,dark humor,1258048968 +105432,6975,long takes,1258048968 +105432,7419,black comedy,1258272300 +105432,7419,dark comedy,1258272300 +105432,7419,Martin Scorsese,1258272300 +105432,7419,surreal,1258272302 +105432,7976,disturbing,1257441487 +105432,7976,unsimulated sex scenes,1309853498 +105432,8622,coverup,1257872959 +105432,8622,disinfo,1257872959 +105432,8622,disinformation,1257872960 +105432,44761,clever,1266904438 +105432,44761,detective movie,1266904443 +105432,44761,drugs,1266904430 +105432,44761,film noir,1266904433 +105432,44761,Joseph Gordon-Levitt,1266904421 +105432,44761,slang,1266904427 +105432,44929,Abbie Cornish,1309853086 +105432,44929,addiction,1309853071 +105432,44929,downbeat,1309853068 +105432,44929,drug addiction,1309853066 +105432,44929,Geoffrey Rush,1309853096 +105432,44929,gritty,1309853094 +105432,44929,Heath Ledger,1309853062 +105432,44929,love,1309853091 +105432,46105,caveh zahedi,1257441296 +105432,47997,decline of civilization,1257441433 +105432,47997,future,1257441433 +105432,47997,humanity,1257441433 +105432,47997,mike judge,1258344158 +105432,47997,social commentary,1257441433 +105432,49347,social commentary,1257272010 +105432,51847,government,1258343878 +105432,51847,intense,1258343878 +105432,51847,panic,1258343878 +105432,55814,stroke,1257442353 +105432,55820,cinematography,1269837581 +105432,55820,coen brothers,1269837584 +105432,55820,crime,1269837597 +105432,55820,dark,1269837594 +105432,55820,great acting,1269837579 +105432,55820,hitman,1269837601 +105432,55820,suspense,1309853386 +105432,55820,thriller,1309853388 +105432,55820,violent,1269837587 +105432,55820,Woody Harrelson,1269837590 +105432,56715,Shannyn Sossamon,1257442657 +105432,56715,tom waits,1257442657 +105432,58301,dark,1257319761 +105432,58301,dark humor,1257319762 +105432,58301,long takes,1257319762 +105432,58301,naomi watts,1258048989 +105432,60069,Animation,1309853129 +105432,60069,consumerism,1309853132 +105432,60069,dystopia,1309853121 +105432,60069,Future,1309853137 +105432,60069,pixar,1309853139 +105432,60069,post-apocalyptic,1309853126 +105432,60069,quirky,1309853128 +105432,60069,romance,1309853143 +105432,60069,social commentary,1309853125 +105432,61394,black comedy,1257442498 +105432,61394,dark comedy,1269837558 +105432,61394,journalism,1269837545 +105432,61394,Non sequitur,1269837547 +105432,61394,parody,1257442498 +105432,61394,satire,1269837549 +105432,61394,Steven Seagal,1269837551 +105432,64034,friendship,1257442281 +105432,64034,sad,1257442281 +105432,64034,touching,1257442281 +105432,65596,based on a true story,1309853316 +105432,65596,crime,1304911474 +105432,65596,jacques mesrine,1304911468 +105432,65596,prison escape,1309853312 +105432,65596,robbery,1309853314 +105432,65596,Vincent Cassel,1309853339 +105432,71211,awkward,1268332048 +105432,71211,FBI,1268332061 +105432,71211,Joel McHale,1268332051 +105432,71211,Matt Damon,1268332072 +105432,71211,mental illness,1268332054 +105432,71211,true story,1268332056 +105432,71379,ending,1257441770 +105432,71379,low budget,1257441770 +105432,71379,psychological thriller,1257441770 +105432,72226,Bill Murray,1269837513 +105432,72226,stop motion,1269837505 +105432,74789,Mia Wasikowska,1268000689 +105432,74789,talking animals,1268000693 +105432,75813,death,1309420534 +105432,75813,Edward Norton,1293518941 +105432,75813,good plot,1309420553 +105432,75813,jews,1309420577 +105432,75813,multiple roles,1309420549 +105432,75813,netflix,1309420642 +105432,75813,unique,1309420569 +105432,75813,violence,1309420538 +105432,75813,weed,1293518938 +105432,77800,Benedict Cumberbatch,1294042877 +105432,77800,Chris Morris,1294042882 +105432,77800,controversial,1294042860 +105432,77800,dark comedy,1294042855 +105432,77800,Documentary Style,1294042858 +105432,77800,suicide bomber,1294042866 +105432,77800,terrorism,1294042873 +105432,78499,animation,1309853156 +105432,78499,Pixar,1309853161 +105432,78499,tense,1309853164 +105432,78499,torture,1309853162 +105432,78499,visually appealing,1309853159 +105432,79592,bad acting,1294044229 +105432,79592,Eva Mendes,1294044269 +105432,79592,Mark Wahlberg,1294044214 +105432,79592,Michael Keaton,1294044225 +105432,79592,subtle humor,1294044227 +105432,79592,Will Ferrell,1294044217 +105432,79946,american dream,1309420264 +105432,79946,Audi,1309420250 +105432,79946,awesome ending,1309420260 +105432,79946,consumerism,1309420248 +105432,79946,Demi Moore,1309420246 +105432,79946,marketing,1309420239 +105432,79946,netflix,1309420244 +105432,80572,beard,1293353236 +105432,80572,Casey Affleck,1293353251 +105432,80572,cocaine,1293353214 +105432,80572,david letterman,1293353226 +105432,80572,Joaquin Phoenix,1293353214 +105432,80572,mockumentary,1293353202 +105432,82667,crazy,1309852165 +105432,82667,hunting,1309852146 +105432,82667,Ji-woon Kim,1309852153 +105432,82667,murder,1309852158 +105432,82667,revenge,1309852145 +105432,82667,revenge fantasy,1309852155 +105432,82667,torture,1309852149 +105432,85213,atheism,1309419675 +105432,85213,intense,1309419675 +105432,85213,religion,1309419675 +105432,85213,religion:Christianity,1309419675 +105432,85213,Samuel L. Jackson,1309419675 +105432,85213,Tommy Lee Jones,1309419675 +105432,85354,based on a book,1309853280 +105432,85354,crime,1309853272 +105432,85354,Jean-François Richet,1309853261 +105432,85354,murder,1309853272 +105432,85354,robbery,1309853272 +105432,85354,true story,1309853286 +105432,85354,Vincent Cassel,1309853300 +105432,89343,Kevin Smith,1321423959 +105432,89343,RELIGIOUS ZEALOTRY,1321423953 +105432,89343,shoot out,1321423957 +105437,7482,bruce lee,1303041814 +105449,260,fantasy,1434380776 +105449,260,saw it when it came out,1434380866 +105449,260,space,1434380783 +105467,107130,bbc,1437855179 +105467,107130,Doctor Who,1437855201 +105467,107130,history,1437855186 +105467,111360,bad science,1448653766 +105467,111360,dumb science,1448653754 +105467,111360,Scarlett Johansson,1448653772 +105475,741,anime,1378312480 +105475,741,cyberpunk,1378312482 +105475,741,philosophical,1378312485 +105475,1967,dreamlike,1378313059 +105475,1967,fantasy,1378313061 +105475,2033,fantasy,1378313216 +105475,2140,dark,1378313040 +105475,2140,dark fantasy,1378313043 +105475,2140,fantasy,1378313037 +105475,4993,beautifully filmed,1378313019 +105475,4993,fantasy,1378313013 +105475,4993,high fantasy,1378313016 +105475,27441,anime,1378312814 +105475,27441,vampires,1378312815 +105475,55995,dragon,1378313178 +105475,55995,fantasy,1378313180 +105475,56757,gothic,1378312850 +105475,56757,Johnny Depp,1378312847 +105475,56757,Tim Burton,1378312845 +105475,56757,visually appealing,1378312854 +105475,62336,action,1378312467 +105475,62336,aliens,1378312464 +105475,62336,anime,1378312448 +105475,62336,baseball,1378312461 +105475,62336,cult film,1378312450 +105475,62336,rock and roll,1378312445 +105475,62336,surreal,1378312453 +105475,69134,atmospheric,1378312621 +105475,69134,beautiful scenery,1378312620 +105475,69134,disturbing,1378312629 +105475,69134,Mental Illness,1378312632 +105475,69134,weird,1378312626 +105475,71057,beautiful,1378313129 +105475,71057,creepy,1378313121 +105475,71057,dark,1378313123 +105475,71057,dark fantasy,1378313104 +105475,71057,dystopia,1378313106 +105475,71057,robots,1378313136 +105475,71057,visually appealing,1378313134 +105475,74789,fantasy,1378313081 +105475,74789,Helena Bonham Carter,1378313074 +105475,74789,Tim Burton,1378313077 +105475,85179,anime,1378312752 +105475,85179,computers,1378312754 +105475,85179,hacking,1378312758 +105475,85179,virtual reality,1378312751 +105480,4344,action,1305351603 +105480,4344,funny,1305351553 +105480,4344,scary,1305351558 +105480,4344,slow,1305351609 +105541,105,affair,1263840049 +105541,260,classic,1241291426 +105541,260,stylized,1241291441 +105541,2291,dreamlike,1241291527 +105541,2291,quirky,1241291524 +105541,2291,surreal,1241291522 +105541,4326,Willem Dafoe,1246820817 +105541,5618,beautiful,1241291499 +105541,5618,dreamlike,1241291489 +105541,5618,fantasy,1241291493 +105541,5618,hallucinatory,1241291484 +105541,5618,whimsical,1241291505 +105541,6016,black comedy,1241291734 +105541,6016,stylized,1241291740 +105541,7361,quirky,1241291555 +105541,7361,surreal,1241291552 +105541,50514,father daughter relationship,1215944924 +105541,50514,marriage,1215944933 +105541,50514,weddings,1215944891 +105574,46578,comedy,1446527157 +105574,46578,dark comedy,1446527155 +105574,46578,drugs,1446527196 +105574,46578,dysfunctional family,1446527212 +105574,46578,feel-good,1446527160 +105574,46578,heartwarming,1446527149 +105574,46578,independent film,1446527207 +105574,46578,inspirational,1446527167 +105574,46578,off-beat comedy,1446527200 +105574,46578,philosophy,1446527186 +105574,46578,quirky,1446527210 +105574,46578,satire,1446527172 +105574,46578,social commentary,1446527169 +105574,104944,good acting,1446526850 +105574,104944,realistic,1446526856 +105574,104944,touching,1446526847 +105575,88108,comedy,1433809688 +105575,88108,role reversal,1433809688 +105575,88108,romance,1433809688 +105578,780,alien invasion,1304637787 +105578,1273,atmospheric,1319234868 +105578,1273,black and white,1319234854 +105578,1273,ESCAPE FROM PRISON,1319234851 +105578,1273,Roberto Benigni,1319234857 +105578,1273,stylized,1319234864 +105578,1273,Tom Waits,1319234886 +105578,1527,aliens,1356042937 +105578,1527,Bruce Willis,1356042943 +105578,1527,dystopic future,1356042934 +105578,1527,futuristic,1356042905 +105578,1527,humorous,1356042927 +105578,1653,dystopia,1356043010 +105578,1653,genetics,1356043013 +105578,1653,thought-provoking,1356043027 +105578,1653,Uma Thurman,1356043015 +105578,1967,fantasy,1305229628 +105578,2097,dark,1368039044 +105578,2959,disturbing,1315688688 +105578,2959,violence,1315688705 +105578,4878,dreamlike,1356043114 +105578,4878,quirky,1356043106 +105578,4878,satirical,1356043097 +105578,4878,surreal,1356043080 +105578,4878,thought-provoking,1356043083 +105578,4878,time travel,1356043109 +105578,4896,based on a book,1320877219 +105578,4896,fantasy,1320877207 +105578,4896,magic,1320877209 +105578,4896,Wizards,1320877227 +105578,4896,worse than the book,1320877180 +105578,5498,black and white,1368038894 +105578,6260,christianity,1368038981 +105578,7260,christianity,1368038981 +105578,26003,black and white,1368038894 +105578,26122,dark,1368039044 +105578,27773,Revenge Trilogy,1306356367 +105578,27773,violent,1306356388 +105578,33004,based on a book,1315683644 +105578,33004,end of the world,1315683631 +105578,33004,John Malkovich,1315683659 +105578,44665,organized crime,1306872133 +105578,44665,Revenge,1306872120 +105578,44665,twist ending,1306872122 +105578,48780,magic,1320623267 +105578,48780,nonlinear,1320623274 +105578,48780,twist ending,1320623263 +105578,51662,action,1318718662 +105578,51662,historical,1318718730 +105578,51662,sword fight,1318718697 +105578,56174,post-apocalyptic,1320877260 +105578,56174,Will Smith,1320877262 +105578,56174,zombies,1320877268 +105578,60566,neo-noir,1307734328 +105578,61236,Israel,1306870807 +105578,61236,surreal,1306870832 +105578,61236,war,1306870838 +105578,63082,based on a book,1320874613 +105578,63082,India,1320874604 +105578,63082,nonlinear,1320874673 +105578,63082,worse than the book,1320874651 +105578,68157,assassination,1306356814 +105578,68157,black comedy,1306356786 +105578,68157,Quentin Tarantino,1306356741 +105578,68157,satire,1306356793 +105578,68157,visually appealing,1306356799 +105578,68157,World War II,1306356759 +105578,71106,nerds,1320623638 +105578,71106,off-beat,1320623652 +105578,71106,sci-fi,1320623665 +105578,71106,surreal,1320623674 +105578,71106,time travel,1320623644 +105578,72011,George Clooney,1383414533 +105578,72011,loneliness,1383414535 +105578,72998,predictable,1435426067 +105578,72998,story pocahontas,1435426045 +105578,72998,superficial plot,1435426063 +105578,74789,alternate reality,1320877089 +105578,74789,Johnny Depp,1320877106 +105578,74789,visually appealing,1320877101 +105578,79132,alternate reality,1305230591 +105578,79132,sophisticated,1304634136 +105578,79132,surreal,1305230588 +105578,79132,visually appealing,1304634006 +105578,79553,bad plot,1306270750 +105578,79553,martial arts,1306270750 +105578,79553,predictable,1306270750 +105578,81562,slow,1304632517 +105578,81788,crime drama,1306870674 +105578,81788,jailbreak,1306870646 +105578,81788,Russell Crowe,1306870653 +105578,81788,thriller,1306870679 +105578,81845,Oscar (Best Picture),1318717594 +105578,84374,Natalie Portman,1319235130 +105578,85367,Adam Sandler,1318717357 +105578,85367,boring,1318717408 +105578,85367,Jennifer Aniston,1318717396 +105578,85367,jennifer anniston,1318717397 +105578,85367,lies,1318717221 +105578,85367,predictable,1318717184 +105578,85881,adolescent psychology,1318717835 +105578,85881,elder care,1318717857 +105578,91658,dark,1412248035 +105578,94466,not a movie,1412943903 +105578,95441,Bechdel Test:Fail,1357372939 +105578,95441,pointless,1357372315 +105578,95441,predictable,1357372315 +105578,95441,unfunny,1357372315 +105578,97752,dystopia,1357420555 +105578,97752,multiple storylines,1357420548 +105578,97752,sci-fi,1357420552 +105578,99114,action,1374992328 +105578,99114,Quentin Tarantino,1374992334 +105578,99114,Revenge,1374992325 +105578,104841,plotless,1397738752 +105578,104841,religion,1397738803 +105578,104879,American culture,1380144882 +105578,106918,inspirational,1397739038 +105578,106918,surreal,1397739063 +105578,117529,Predictible,1435425860 +105578,126599,Multiple Stories,1436039565 +105581,260,classic sci-fi,1439786967 +105581,260,space opera,1439786952 +105602,290,working class,1409687756 +105602,5673,sound,1409687519 +105602,31545,tense,1409687676 +105602,31545,working class,1409687664 +105602,34437,great soundtrack,1409687478 +105614,3798,Harrison Ford,1338075689 +105614,3798,horror,1338075675 +105614,6839,Elijah Wood,1338380851 +105614,7458,history,1337693797 +105645,2949,Bond,1139055272 +105657,260,Harrison Ford,1443659649 +105657,260,Science Fiction,1443659654 +105682,1178,military,1209369787 +105687,2288,paranoia,1307602069 +105687,2288,shape shifter,1307602081 +105687,4708,musical,1310501402 +105687,55156,Ralph Nader,1309728718 +105687,79242,intelligent,1307600236 +105687,80126,cold,1310200820 +105687,80126,encourages discussion,1310200834 +105687,80126,Nudity (Full Frontal),1310198594 +105687,80126,picturesque,1310200913 +105687,80126,slow,1310198612 +105687,80126,stylized,1310198630 +105687,80126,violante placido,1310200849 +105687,81591,holy shit,1305964315 +105687,86290,computer animation,1309858849 +105687,86290,profound,1309857755 +105687,86290,realistic,1309857754 +105687,86290,the new standard for biopics using old stock footage,1309858872 +105687,86347,hilarious,1310631010 +105713,34,villain nonexistent or not needed for good story,1152146896 +105713,50,twist ending,1151608940 +105713,589,redemption,1152145769 +105713,589,sequel better than original,1151679873 +105713,589,time travel,1151611354 +105713,590,villain nonexistent or not needed for good story,1152146656 +105713,595,redemption,1152146913 +105713,858,sequel better than original,1151680010 +105713,903,switching places,1151680237 +105713,908,thriller,1152054782 +105713,953,alternate universe,1151608616 +105713,1028,villain nonexistent or not needed for good story,1152146716 +105713,1086,logic complexity,1152145680 +105713,1094,twist ending,1151613202 +105713,1097,villain nonexistent or not needed for good story,1152146617 +105713,1196,sequel better than original,1151679966 +105713,1199,twist downer ending,1283611526 +105713,1200,sequel better than original,1151679916 +105713,1210,redemption,1151608556 +105713,1240,time travel,1151611415 +105713,1265,alternate universe,1151610982 +105713,1265,time travel,1151610982 +105713,1270,alternate universe,1151610899 +105713,1270,logic complexity,1152145619 +105713,1270,thriller,1151613737 +105713,1270,time travel,1151610899 +105713,1302,villain nonexistent or not needed for good story,1152146686 +105713,1376,sequel better than original,1151680043 +105713,1376,time travel,1151611566 +105713,1573,switching places,1151614294 +105713,1625,twist ending,1151608903 +105713,1680,alternate universe,1151608030 +105713,1688,villain nonexistent or not needed for good story,1152146744 +105713,2011,alternate universe,1151610908 +105713,2011,logic complexity,1152145632 +105713,2011,sequels filmed simultaneously,1152556156 +105713,2011,time travel,1151610908 +105713,2012,alternate universe,1151610915 +105713,2012,sequels filmed simultaneously,1152054574 +105713,2012,time travel,1151610914 +105713,2014,switching places,1151608147 +105713,2065,twist downer ending,1283611466 +105713,2252,redemption,1151608491 +105713,2294,pixar NO dreamworks YES,1152054942 +105713,2352,villain nonexistent or not needed for good story,1152146938 +105713,2406,thriller,1151611886 +105713,2407,villain nonexistent or not needed for good story,1152146996 +105713,2463,logic complexity,1154440528 +105713,2762,twist ending,1151609090 +105713,2797,switching places,1151608196 +105713,2916,alternate universe,1151613561 +105713,2917,logic complexity,1152145580 +105713,2917,twist ending,1151611999 +105713,2968,time travel,1151611438 +105713,3044,twist ending,1151612027 +105713,3114,sequel better than original,1151679889 +105713,3471,thriller,1152054831 +105713,3471,villain nonexistent or not needed for good story,1152146765 +105713,3476,twist downer ending,1283611394 +105713,3510,alternate universe,1151610819 +105713,3510,time travel,1151610864 +105713,3578,redemption,1151611673 +105713,3994,twist ending,1151608991 +105713,4063,switching places,1151608175 +105713,4571,time travel,1151611387 +105713,4720,twist ending,1151608960 +105713,4723,redemption,1151608372 +105713,5218,redemption,1151608257 +105713,5444,redemption,1151612100 +105713,5882,redemption,1151608291 +105713,5952,sequels filmed simultaneously,1152054698 +105713,6322,twist ending,1196177225 +105713,6365,sequels filmed simultaneously,1152054645 +105713,6537,alternate universe,1151611463 +105713,6537,time travel,1151611522 +105713,6539,thriller,1151611934 +105713,6593,switching places,1151608136 +105713,6934,sequels filmed simultaneously,1152054629 +105713,7153,sequels filmed simultaneously,1152054710 +105713,8360,redemption,1151608409 +105713,8360,sequel better than original,1151679987 +105713,8368,time travel,1151613529 +105713,31047,logic complexity,1154440552 +105713,33166,redemption,1151608461 +105713,44665,twist ending,1201115544 +105713,45517,redemption,1152146974 +105713,45517,villain nonexistent or not needed for good story,1152146974 +105713,45722,sequels filmed simultaneously,1152556122 +105713,45722,thriller,1154359028 +105713,52287,alternate universe,1196177047 +105713,52287,time travel,1196177047 +105730,741,2D/3D hybrid Animation,1430507481 +105730,741,cyberpunk,1430507465 +105730,741,philosophical,1430507477 +105730,741,philosophy,1430507474 +105730,741,visually appealing,1430507472 +105730,3000,dystopia,1430507427 +105730,3000,gods,1430507442 +105730,3000,Studio Ghibli,1430507431 +105730,5618,beautiful,1430507418 +105730,5618,dragons,1430507412 +105730,5618,fantasy,1430507408 +105730,5618,fantasy world,1430507420 +105730,5618,hallucinatory,1430507403 +105730,5618,Studio Ghibli,1430507397 +105741,356,Oscar (Best Picture),1211722236 +105750,112290,child abuse,1424749023 +105750,112290,romantic,1424749023 +105750,112290,school drama,1424749023 +105780,97,French Film,1247661675 +105780,97,realistic,1247661675 +105780,858,Mafia,1241633717 +105780,858,Marlon Brando,1241633718 +105780,1199,cruel,1247661881 +105780,1217,Kurosawa,1241633741 +105780,1217,Shakespeare,1189536300 +105780,1263,Vietnam War,1247661850 +105780,1263,war,1247661850 +105780,1701,hilarious,1247661869 +105780,2161,Can't remember,1158141434 +105780,3752,Jim Carrey,1158141583 +105780,3752,Renee Zellweger,1158141587 +105780,4466,Aikido,1241633703 +105780,4466,Steven Seagal,1241633704 +105780,5060,Korean War,1247661639 +105780,5060,Robert Altmann,1247661639 +105780,5420,encryption,1247661105 +105780,5420,Navajo,1247661105 +105780,5420,Nicholar Cage,1247661108 +105780,5420,WWII,1247661105 +105780,5498,Japan,1241633742 +105780,5872,halle berry,1241633715 +105780,5872,madonna,1240312094 +105780,6016,Brazil,1241633713 +105780,6796,Can't remember,1158141557 +105780,7843,college kids,1217867462 +105780,7843,coming of age,1217867462 +105780,7843,german movie,1217867462 +105780,7843,Germany,1217867462 +105780,7843,HIV,1217867462 +105780,7843,limbo,1217867462 +105780,7843,pizza,1217867462 +105780,7843,Soccer,1150561372 +105780,7843,tourette,1241633732 +105780,7843,weed,1217867462 +105780,7843,wuerzburg,1217867462 +105780,27727,Hamburg,1247661809 +105780,27727,Turkey,1247661809 +105780,44555,imdb top 250,1188914260 +105780,54286,Madrid,1241633706 +105780,56286,Bob Dylan,1241633720 +105780,63859,dog,1248091327 +105780,66198,Tom Tykwer,1250511071 +105814,260,classic adventure,1434346146 +105816,3023,comedy,1433906614 +105816,3023,pickford,1433906609 +105816,3023,romance,1433906612 +105816,3023,silent,1433906607 +105816,3023,trade-last,1433906621 +105816,5618,Hayao Miyazaki,1436846836 +105816,5618,Studio Ghibli,1436846831 +105816,98460,1970s,1426485368 +105816,98460,derek jarman,1426485368 +105816,98460,shakespeare,1426485368 +105816,112247,brain surgery,1434953896 +105816,112247,language acquisition,1434953889 +105816,112247,manchild,1434953910 +105816,112247,Robert Vaughn,1434953981 +105816,112247,Terence Stamp,1434954021 +105816,114554,animated,1436828547 +105816,114554,folk tale,1436828643 +105816,124394,deborah kerr,1427490507 +105816,124394,small mindedness,1427490507 +105816,124394,walter pigeon,1427490507 +105816,134368,action,1435012041 +105816,134368,cia,1435011965 +105816,134368,comedy,1435011935 +105816,134368,jude law,1435011931 +105816,134368,melissa mccarthy,1435011847 +105816,134368,miranda hart,1435011951 +105816,134368,paris,1435011961 +105816,134368,rome,1435011959 +105816,134368,spy,1435011952 +105826,260,classic sci-fi,1433878375 +105826,260,SPACE WARS,1433878356 +105826,296,awesome,1433878782 +105826,296,gimp,1433878782 +105826,296,quentin tarantino,1433878782 +105858,260,classic sci-fi,1436489066 +105858,260,fantasy action,1436489047 +105882,50,Kevin Spacey,1338904146 +105882,50,Keyser Söze,1338904130 +105882,161,crimson tide (song),1326630481 +105882,161,the dog,1326630460 +105882,239,90s,1342709624 +105882,239,road trip,1342709629 +105882,293,assassin,1326294335 +105882,293,crime,1326294337 +105882,293,drama,1326294333 +105882,293,Jean Reno,1326294301 +105882,293,Natalie Portman,1326294304 +105882,293,no women no children,1326546152 +105882,293,quirky,1326294309 +105882,527,black and white,1325945878 +105882,527,disturbing,1325945877 +105882,527,historical,1325945866 +105882,527,Steven Spielberg,1325945887 +105882,527,true story,1325945869 +105882,741,artificial intelligence,1329778060 +105882,741,cyberpunk,1329778064 +105882,741,philosophical,1329778062 +105882,741,sci-fi,1329778066 +105882,924,artificial intelligence,1328543947 +105882,924,atmospheric,1328543964 +105882,924,sci-fi,1328543954 +105882,924,space,1328543950 +105882,924,surreal,1328543941 +105882,924,visually appealing,1328543936 +105882,1041,Mike Leigh,1351942642 +105882,1041,realism,1351942646 +105882,1096,based on a book,1325946011 +105882,1096,guilt,1325945992 +105882,1096,Holocaust,1325946005 +105882,1096,Meryl Streep,1325945996 +105882,1096,sad,1325945978 +105882,1096,secrets,1325945977 +105882,1176,enigmatic,1329203724 +105882,1176,Irene Jacob,1329203718 +105882,1176,Krzysztof Kieslowski,1329203716 +105882,1176,lyrical,1329203732 +105882,1176,melancholy,1329203712 +105882,1376,whales,1343116556 +105882,1515,Don Cheadle,1326727956 +105882,1515,lava,1326727973 +105882,1515,natural disaster,1326727954 +105882,1527,Bruce Willis,1326813088 +105882,1527,cinematography,1326813093 +105882,1527,humorous,1325946446 +105882,1527,Milla Jovovich,1325946444 +105882,1527,the diva dance,1325946498 +105882,1625,atmospheric,1339591460 +105882,1625,I just lost the game,1339591465 +105882,1625,psychological,1339591468 +105882,1653,Ethan Hawke,1325946243 +105882,1653,future,1325946248 +105882,1653,genetic engineering,1325946245 +105882,1653,Jude Law,1325946249 +105882,1653,thought-provoking,1325946236 +105882,1653,Uma Thurman,1325946239 +105882,1653,visually appealing,1325946255 +105882,1748,creepy kid,1326215685 +105882,1748,dark fantasy,1326215671 +105882,1748,dreamlike,1326215823 +105882,1748,funny combat scenes,1326215782 +105882,1748,jennifer connelly's sway,1326215806 +105882,1748,memory,1326215660 +105882,1748,mindfuck,1326215659 +105882,1748,sci-fi,1326215668 +105882,1748,stylized,1326215656 +105882,1748,surreal,1326215651 +105882,1748,thought-provoking,1326215650 +105882,1748,visually appealing,1326215645 +105882,1748,weird,1326215778 +105882,1884,drugs,1338918071 +105882,1884,great soundtrack,1338918068 +105882,1884,hallucinatory,1338918054 +105882,1884,psychedelic,1338918056 +105882,1884,road movie,1338918059 +105882,1884,social commentary,1338918066 +105882,1884,thought-provoking,1338918065 +105882,2318,aging,1329202093 +105882,2318,child abuse,1329202090 +105882,2318,dark,1329202086 +105882,2318,father-son relationship,1329202100 +105882,2318,loneliness,1329202109 +105882,2318,marriage,1329202096 +105882,2318,Philip Seymour Hoffman,1329202103 +105882,2318,social commentary,1329202070 +105882,2959,atmospheric,1334598101 +105882,2959,dark comedy,1334598052 +105882,2959,disturbing,1334598054 +105882,2959,Edward Norton,1334598057 +105882,2959,mental illness,1334597995 +105882,2959,twist ending,1334598098 +105882,2959,violence,1334598096 +105882,3008,apocalypse,1339175705 +105882,3008,end of the world,1339175713 +105882,3008,melancholy,1339175722 +105882,3008,multiple storylines,1339175705 +105882,3499,horror,1329958844 +105882,3499,hostage,1329958845 +105882,3499,menacing,1329958849 +105882,3949,addiction,1334233475 +105882,3949,dark,1334233505 +105882,3949,disturbing,1334233489 +105882,3949,drugs,1334233477 +105882,3949,emotional,1334233483 +105882,3949,loneliness,1334233503 +105882,3949,psychology,1334233470 +105882,3949,social commentary,1334233471 +105882,3973,confusion,1324197281 +105882,3973,no explanation,1324197291 +105882,3973,soundtrack,1324197315 +105882,4446,alien invasion,1328898909 +105882,4446,aliens,1328898902 +105882,4446,CGI,1328898900 +105882,4446,computer animation,1328898906 +105882,4446,great animation,1328898930 +105882,4446,sci-fi,1328898932 +105882,4446,visually stunning,1328898898 +105882,4735,dumbass cut his thumb off,1333624419 +105882,4735,Mars,1333624394 +105882,4735,sci-fi,1333624406 +105882,4735,zombies,1333624399 +105882,4878,psychology,1325946196 +105882,4878,quirky,1325946198 +105882,4878,social commentary,1325946200 +105882,4878,surreal,1325946204 +105882,4878,thought-provoking,1325946208 +105882,4973,beautifully filmed,1325947458 +105882,4973,fairy tale,1325947461 +105882,4973,feel-good,1325947462 +105882,4973,idealism,1325947465 +105882,4973,quirky,1325947453 +105882,4973,surreal,1325947469 +105882,4973,visually appealing,1325947474 +105882,4973,whimsical,1325947472 +105882,5630,Anthony Hopkins,1330140962 +105882,5630,Ralph Fiennes,1330140965 +105882,5784,bad...but so good...lolz,1330236773 +105882,5881,anti-intellectualism,1329057132 +105882,5881,based on a book,1329057157 +105882,5881,cinematography,1329057152 +105882,5881,did not develop,1329057174 +105882,5881,existentialism,1329057164 +105882,5881,interesting concept,1329057149 +105882,5881,soundtrack,1329057145 +105882,5995,true story,1335866194 +105882,6063,dismemberment,1329311630 +105882,6063,disturbing,1329311634 +105882,6063,doll,1329311635 +105882,6063,fucked up,1329311640 +105882,6063,loneliness,1329311637 +105882,6063,odd,1329311627 +105882,6063,psychological,1329311626 +105882,6303,slow,1324456881 +105882,6711,Amazing Cinematography,1327256337 +105882,6711,Bill Murray,1327255914 +105882,6711,bittersweet,1327255933 +105882,6711,complex characters,1327255914 +105882,6711,fuck the pain away,1327256565 +105882,6711,Japan,1327255941 +105882,6711,Melancholic,1327255928 +105882,6711,music,1327255936 +105882,6711,Scarlett Johansson,1327255926 +105882,6711,tokyo,1327255929 +105882,6870,clumsy,1336911279 +105882,6870,convoluted,1336911273 +105882,7254,alternate reality,1334475221 +105882,7254,memory,1334475237 +105882,7254,sci-fi,1334475254 +105882,7254,suspense,1334475230 +105882,7254,thought-provoking,1334477165 +105882,7254,time travel,1334475123 +105882,7254,twist ending,1334475239 +105882,7361,imagination,1325946164 +105882,7361,Jim Carrey,1325946170 +105882,7361,memory,1325946161 +105882,7361,nonlinear,1325946158 +105882,7361,philosophy,1325946156 +105882,7361,psychology,1325946155 +105882,7361,quirky,1325946152 +105882,7361,romance,1325946182 +105882,7361,sci-fi,1325946150 +105882,7361,surreal,1325946147 +105882,7361,surrealism,1325946149 +105882,7361,thought-provoking,1325946142 +105882,8644,android(s)/cyborg(s),1325946387 +105882,8644,artificial intelligence,1325946391 +105882,8644,based on a book,1325946394 +105882,8644,book was better,1325946398 +105882,8644,future,1325946407 +105882,8644,futuristic,1325946411 +105882,8644,Isaac Asimov,1325946421 +105882,8644,robots,1325946418 +105882,8644,sci-fi,1325946420 +105882,8644,thought provoking,1325946424 +105882,8914,indie,1334163390 +105882,8914,intellectual,1334163380 +105882,8914,mindfuck,1334163378 +105882,8914,sci-fi,1334163383 +105882,8914,thought-provoking,1334163387 +105882,8914,time travel,1334163384 +105882,33171,alien abduction,1329202175 +105882,33171,brainwashing,1329202139 +105882,33171,child abuse,1329202172 +105882,33171,disturbing,1329202142 +105882,33171,male prostitute,1329202184 +105882,33171,memories,1329202155 +105882,33171,repression,1329202159 +105882,33836,bad,1329112156 +105882,33836,Based on a TV show,1329112199 +105882,33836,had potential but imploded,1329112184 +105882,33836,Movie I didn't watch to the end,1329112144 +105882,37386,dystopic future,1325946347 +105882,37386,heroine in tight suit,1325946349 +105882,37386,post-apocalyptic,1325946353 +105882,37386,predictable,1325946338 +105882,37386,stylized,1325946361 +105882,37386,visually appealing,1325946362 +105882,39183,bittersweet,1326704042 +105882,39183,emotional,1326704070 +105882,39183,Heath Ledger,1326704046 +105882,39183,melancholy,1326704057 +105882,39183,Nudity (Topless - Notable),1326704060 +105882,39183,romance,1326704052 +105882,39183,scenic,1326704053 +105882,39183,western,1326704055 +105882,40870,ECCENTRIC FAMILIES,1343736122 +105882,40870,patsy cline,1343736133 +105882,40870,questioning sexuality,1343736127 +105882,40870,quirky,1343736137 +105882,43928,campy,1325946290 +105882,43928,comic book,1325946294 +105882,43928,dystopia,1325946297 +105882,43928,Kick-Butt Women,1325946300 +105882,43928,Milla Jovovich,1325946302 +105882,43928,visually appealing,1325946313 +105882,43928,visually stunning,1325946318 +105882,45730,disappointing,1339411582 +105882,45730,fairy tale,1339411591 +105882,45730,Paul Giamatti,1339411600 +105882,45730,what the fuck did i just watch,1339411585 +105882,46578,dark comedy,1332407593 +105882,46578,funny,1332407614 +105882,46578,inspirational,1332407616 +105882,46578,quirky,1332407611 +105882,46578,satire,1332407606 +105882,46578,social commentary,1332407608 +105882,48780,atmospheric,1326205160 +105882,48780,complicated,1326205174 +105882,48780,dark,1326205177 +105882,48780,david bowie,1326205447 +105882,48780,enigmatic,1326205193 +105882,48780,magic,1326205330 +105882,48780,mystery,1326205215 +105882,48780,nonlinear,1326205171 +105882,48780,psychological,1326205197 +105882,48780,revenge,1326205204 +105882,48780,romance,1326205200 +105882,48780,sci-fi,1326205209 +105882,48780,teleportation,1326205316 +105882,48780,that purple suit that hugh jackman wore at one point,1326205422 +105882,48780,thriller,1326205220 +105882,48780,twist ending,1326205170 +105882,50912,Elijah Wood,1325946115 +105882,50912,multiple storylines,1325946100 +105882,50912,Paris,1325946097 +105882,52328,cinematography,1326208429 +105882,52328,sci-fi,1326208431 +105882,52328,space,1326208437 +105882,52328,spaceships,1326208438 +105882,55069,abortion,1329327469 +105882,55069,dictatorship,1329327471 +105882,55069,friendship,1329327472 +105882,55069,hotel,1329327474 +105882,55069,personal,1329327495 +105882,55282,blood,1329762310 +105882,55282,Gratuitous,1329762287 +105882,55282,remote location,1329762289 +105882,55282,snow,1329762301 +105882,55282,survival,1329762306 +105882,55282,vampire,1329762295 +105882,58559,farcical,1326466135 +105882,59118,awkward,1329202352 +105882,59118,cab driver,1329202399 +105882,59118,darker undertones,1329202372 +105882,59118,difficult protagonist,1329202384 +105882,59118,psychology,1329202394 +105882,59118,sweet,1329202358 +105882,60338,10 minutes of spinning crap,1334315634 +105882,60338,ashambles,1334315599 +105882,60338,cubiness of the space station,1334315646 +105882,60338,French,1334315656 +105882,60338,nanites,1334315661 +105882,60338,patched together mythos,1334315616 +105882,60338,psychic sin facehugger parasites,1334315915 +105882,60338,sci-fi setting,1334315671 +105882,62511,Charlie Kaufman,1347819548 +105882,62511,confusing,1347819551 +105882,62511,depressing,1347819553 +105882,62511,Meta Referential,1347819555 +105882,62511,metafiction,1347819557 +105882,62511,Mise en abyme,1347819903 +105882,62511,Philip Seymour Hoffman,1347819906 +105882,62511,philosophy,1347819909 +105882,62511,surreal,1347819911 +105882,62849,funny,1332077466 +105882,62849,Gerard Butler,1332077468 +105882,62849,good soundtrack,1332077493 +105882,62849,overly complex,1332077477 +105882,62849,Thandie Newton,1332077472 +105882,62849,Tom Hardy,1332077469 +105882,62849,twist ending,1332077505 +105882,62849,unrealistic,1332077487 +105882,64034,British speaking germans,1351844748 +105882,64034,childish naivity,1351844752 +105882,64034,Friendship,1351844750 +105882,64034,Vera Farmiga,1351844757 +105882,64034,World War II,1351844758 +105882,65868,addiction,1348231734 +105882,65868,evil corporation,1348231756 +105882,65868,gothic,1348231754 +105882,65868,guilt pleasure,1348231737 +105882,65868,plot:Repossessed organs,1348231741 +105882,65868,rock opera,1348231743 +105882,65868,sci-fi,1348231747 +105882,67255,cinematography,1326978962 +105882,67255,computers,1326978956 +105882,67255,crime,1326978952 +105882,67255,dark,1326978941 +105882,67255,investigative journalism,1326978954 +105882,67255,racism,1326978969 +105882,67799,boobies,1334491934 +105882,67799,crappy sequel,1334491935 +105882,67799,Mexican rape scene,1334491937 +105882,67799,Nudity (Topless),1334491940 +105882,67799,Rap,1334491943 +105882,67799,time travel,1334491989 +105882,71838,implauisble,1337002699 +105882,71838,stupid,1337002702 +105882,72380,messy,1326444769 +105882,72380,no atmosphere,1326444771 +105882,72380,no tension,1326444782 +105882,72380,pointless,1326444773 +105882,72380,soft focus,1326444817 +105882,72380,soundtrack,1326444809 +105882,72380,this was a Twilight Zone episode,1326445083 +105882,73290,based on a true story,1351950029 +105882,73290,dogs,1351950032 +105882,73290,Loyalty,1351950045 +105882,73290,Richard Gere,1351950034 +105882,79357,cinematography,1334058601 +105882,79357,nonlinear,1334058635 +105882,79357,philosophy,1334058620 +105882,79357,romance,1334058632 +105882,79357,sci-fi,1334058604 +105882,79357,soundtrack,1334058606 +105882,79357,surreal,1334058614 +105882,79357,thought provoking,1334058619 +105882,80969,based on a book,1329027103 +105882,80969,children,1329027108 +105882,80969,cinematography,1329027097 +105882,80969,depressing,1329027075 +105882,80969,love story,1329027109 +105882,80969,sad,1329027080 +105882,80969,thought-provoking,1329027077 +105882,81132,bizarre,1326703379 +105882,81132,headsplosions,1326703359 +105882,81132,intro,1326703461 +105882,81132,mindfuck,1326703364 +105882,81132,Robert,1326703314 +105882,81132,spectators,1326703458 +105882,81132,tricycle,1326703346 +105882,81132,turkey,1326703450 +105882,81132,tyres,1326703325 +105882,81132,violence against tyres,1326703882 +105882,85412,mockumentary,1329702966 +105882,85412,norwegian,1329702971 +105882,85412,smell christians,1329702983 +105882,86190,action,1326545938 +105882,86190,assassin,1326545891 +105882,86190,beautiful cinematography,1326545895 +105882,86190,Cate Blanchett,1326545906 +105882,86190,character development,1326545926 +105882,86190,great acting,1326545917 +105882,86190,strong female lead,1326545883 +105882,86190,thriller,1326545890 +105882,86320,apocalypse,1329230096 +105882,86320,beautiful,1332151314 +105882,86320,cinematography,1329230098 +105882,86320,Kirsten Dunst,1329230100 +105882,86320,Magic realism,1329230102 +105882,86320,music,1329230104 +105882,86320,sisters,1329230106 +105882,86882,France,1333959504 +105882,86882,inspirational,1333959491 +105882,86882,Paris,1333959493 +105882,86882,quirky,1333959502 +105882,86882,romance,1333959500 +105882,86882,thought-provoking,1333959477 +105882,86882,time travel,1333959494 +105882,86882,whimsical,1333959497 +105882,86882,writers,1333959496 +105882,88129,great soundtrack,1333992544 +105882,88235,black comedy,1332325703 +105882,88248,Mercedes Masohn,1326090839 +105882,88248,some things didn't make sense,1326090899 +105882,88248,thermal goggles,1326090997 +105882,88248,very predictable,1326090872 +105882,88248,zombies,1326090841 +105882,88810,bittersweet,1333291552 +105882,88810,Emma Stone,1333291525 +105882,88810,great acting,1333291531 +105882,88810,social commentary,1333291537 +105882,88810,Tearjerker,1333291539 +105882,89039,Brit Marling,1339061632 +105882,89039,characters,1339061633 +105882,89039,cinematography,1339061650 +105882,89039,ending,1339061645 +105882,89039,Parallels worlds,1339061640 +105882,89039,plot,1339061643 +105882,89072,atmosphere,1326183107 +105882,89072,bold,1326183047 +105882,89072,characters,1326183095 +105882,89072,cinematography,1326183039 +105882,89072,sylistic,1326183070 +105882,89072,too much love interest,1326182966 +105882,89470,all-star cast,1325938169 +105882,89470,apocalypse,1325938318 +105882,89470,lacks contemplative depth,1325945035 +105882,89470,not sensationalist,1325938250 +105882,89470,plausible,1325938329 +105882,89470,Realistic,1325938346 +105882,89470,soundtrack,1325938177 +105882,89470,virus,1325938334 +105882,89761,adultery,1329787161 +105882,89761,biopic,1329787097 +105882,89761,history,1329787148 +105882,89761,Keira Knightley,1329787100 +105882,89761,Michael Fassbender,1329787086 +105882,89761,Psychoanalysis,1329787145 +105882,89761,sexuality:BDSM,1329787094 +105882,89761,Viggo Mortensen,1329787079 +105882,89864,emotional,1328719690 +105882,89864,predictable,1328719708 +105882,89864,Seth Rogen,1328719632 +105882,89864,Skeletor,1328719679 +105882,89864,unrealistic therapist,1328719615 +105882,90345,alien invasion,1333895366 +105882,90345,aliens,1333895385 +105882,90345,Antarctica,1333895384 +105882,90345,Norwegian,1333895380 +105882,90345,sci-fi,1333895369 +105882,90345,space ship,1333895376 +105882,90357,abuse,1333967860 +105882,90357,losing control,1333967866 +105882,90357,personal demons,1333967801 +105882,90376,blame,1329202494 +105882,90376,insanity,1328888728 +105882,90376,nihilism,1328888718 +105882,90376,psychological,1329202544 +105882,90376,responsibility,1329202501 +105882,90376,unfitting soundtrack,1328888697 +105882,90376,unreliable narrators,1329202541 +105882,90403,Alexandre Dumas,1329494564 +105882,90403,cheesy at times,1329494652 +105882,90403,D'Artagnan,1329494555 +105882,90403,d'Artagnan is a little tit,1329494581 +105882,90403,Milla Jovovich,1329434775 +105882,90403,nonsensical,1329494618 +105882,90403,steampunk,1329494560 +105882,90403,the ending,1329494679 +105882,90578,awkward soundtrack,1342173213 +105882,90578,twists,1342173186 +105882,90645,Rafe Spall,1329444290 +105882,90645,various peoples' hair,1329444302 +105882,90717,Alan Alda,1329434603 +105882,90717,Ben Stiller,1329434621 +105882,90717,Gabourey Sidibe,1329434604 +105882,90866,Ben Kingsley,1329687898 +105882,90866,Patrick Stewart,1329687907 +105882,91622,not letting go,1342896424 +105882,91653,lacklustre,1332161570 +105882,91653,Spar the tiger,1332161594 +105882,91673,gender ambiguity,1329215377 +105882,91673,loneliness,1329215388 +105882,91976,characters,1331284234 +105882,91976,cinematography,1331284225 +105882,91976,crash scene,1331284202 +105882,91976,Liam Neeson,1331284195 +105882,91976,overdramatic,1331284212 +105882,91976,wolves,1331284198 +105882,93363,childish plot,1337444005 +105882,93363,Mars,1337444006 +105882,93363,sci-fi,1337444007 +105882,93512,jeff,1339252669 +105882,93512,kevin,1339252666 +105882,93512,pot,1339252657 +105882,93512,signs,1339252662 +105882,93512,unravelling emotional issues,1339252717 +105882,93512,waterfall,1339252680 +105882,93805,bad execution,1338794155 +105882,93805,dark side,1338794157 +105882,93805,ending,1338794160 +105882,93805,extraterrestrial colony,1338794166 +105882,93805,mediocre acting,1338794154 +105882,93805,Nazis,1338794145 +105882,93805,overrated,1338794146 +105882,93805,plot,1338794148 +105882,93805,space travel,1338794138 +105882,93805,steampunk,1338794134 +105882,93805,visually interesting--that's about it,1338794152 +105882,93840,clever,1350987507 +105882,93840,excellent cinematography,1350987639 +105882,93840,original,1350987520 +105882,93840,original plot,1350987522 +105882,93840,social commentary,1350987637 +105882,94478,johnny depp,1348687439 +105882,94777,memory,1343116465 +105882,94777,time travel,1343116469 +105882,94777,vehicle:motorized monocycle,1343116404 +105882,94777,Will Smith,1343116398 +105882,94864,religion,1353156538 +105882,94959,Edward Norton,1348672214 +105882,94959,quirky,1348672222 +105882,94959,Stolen Library Books,1348672218 +105882,94959,stylized,1348672220 +105902,2730,Kubrick,1162914007 +105902,5013,Robert Altman,1162916873 +105908,611,horror,1452310862 +105913,1,children cartoon,1432780979 +105913,1,feel-good,1432780979 +105913,1,funny,1432780979 +105914,2959,Edward Norton,1208029595 +105918,260,cult classic,1433873829 +105918,260,good vs evil,1433873854 +105918,260,Science Fiction,1433873843 +105918,112852,great soundtrack,1433874023 +105918,112852,Great Visuals,1433874042 +105918,112852,Marvel,1433874013 +105918,112852,Marvel Cinematic Universe,1433874010 +105918,112852,sci-fi,1433874017 +105918,112852,science fiction,1433874096 +105918,112852,space,1433874026 +105918,112852,Vin Diesel,1433874050 +105927,260,classic sci-fi,1441756724 +105927,260,space adventure,1441756716 +105944,2288,cold,1137702282 +105944,2288,paranoia,1137702469 +105959,357,Andie MacDowell is always terrible,1241920731 +105959,1265,Andie MacDowell is always terrible,1241920732 +105959,8914,mindblowing,1241920703 +105972,372,Houston,1190928420 +105972,500,Robin Williams,1188850625 +105972,3986,Ahnuld,1190928500 +105972,32587,visually interesting,1188850868 +105972,45722,pirates,1188851637 +105977,22,suspenseful,1370226749 +105977,25,melancholic,1370226217 +105977,32,great ending,1370226847 +105977,32,original,1370226136 +105977,39,teen movie,1370226709 +105977,46,women,1370226633 +105977,50,excellent script,1370226486 +105977,218,women,1370226633 +105977,318,great ending,1370226847 +105977,549,musicians,1370226666 +105977,587,supernatural,1370226455 +105977,724,teen movie,1370226709 +105977,735,splatter,1370226591 +105977,799,supernatural,1370226455 +105977,898,screwball comedy,1370226923 +105977,904,suspenseful,1370226749 +105977,905,screwball comedy,1370226923 +105977,910,screwball comedy,1370226923 +105977,913,noir thriller,1370226307 +105977,923,masterpiece,1370226396 +105977,1088,dancing,1370226818 +105977,1089,original,1370226137 +105977,1172,mentor,1370226366 +105977,1188,dancing,1370226818 +105977,1210,great ending,1370226847 +105977,1219,suspenseful,1370226749 +105977,1241,splatter,1370226591 +105977,1248,noir thriller,1370226307 +105977,1285,teen movie,1370226709 +105977,1387,suspenseful,1370226749 +105977,1537,dancing,1370226818 +105977,1678,women,1370226633 +105977,1704,excellent script,1370226486 +105977,1704,mentor,1370226366 +105977,1719,melancholic,1370226217 +105977,1754,supernatural,1370226455 +105977,1968,teen movie,1370226709 +105977,2144,teen movie,1370226709 +105977,2291,original,1370226136 +105977,2420,mentor,1370226366 +105977,2726,noir thriller,1370226307 +105977,2841,supernatural,1370226455 +105977,2859,musicians,1370226665 +105977,2863,musicians,1370226666 +105977,2866,musicians,1370226666 +105977,2915,teen movie,1370226709 +105977,3067,screwball comedy,1370226923 +105977,3083,women,1370226633 +105977,3129,musicians,1370226665 +105977,3418,women,1370226633 +105977,3499,suspenseful,1370226749 +105977,3791,dancing,1370226818 +105977,4018,women,1370226633 +105977,4020,supernatural,1370226455 +105977,4054,dancing,1370226818 +105977,4878,original,1370226136 +105977,5065,supernatural,1370226455 +105977,5266,suspenseful,1370226749 +105977,5693,dancing,1370226818 +105977,6707,splatter,1370226591 +105977,6731,splatter,1370226591 +105977,6873,screwball comedy,1370226923 +105977,7013,noir thriller,1370226307 +105977,7153,great ending,1370226847 +105977,8338,brownface,1241047138 +105977,33834,splatter,1370226591 +105977,42723,splatter,1370226591 +105977,48516,original,1370226137 +105977,53123,musicians,1370226666 +105996,480,dinosaurs,1361916901 +105996,480,horror,1361916904 +105996,480,not for kids,1361916933 +105996,480,scary,1361916922 +105996,480,thriller,1361916910 +105996,480,violence,1361916914 +105996,1721,disaster,1361916279 +105996,1721,Leonardo DiCaprio,1361916269 +105996,1721,romance,1361916272 +105996,1721,sad ending,1361916297 +105996,2671,comedy,1361909737 +105996,2671,date movie,1361909733 +105996,2671,Good Romantic Comedies,1361909741 +105996,2671,Julia Roberts,1361909725 +105996,2671,romance,1361909731 +105996,3578,history,1361916967 +105996,3578,Oscar (Best Actor),1361916957 +105996,3578,Rome,1361916960 +105996,3793,action,1361917980 +105996,3793,comic book,1361917973 +105996,3793,marvel,1361917975 +105996,3793,super-hero,1361917968 +105996,3793,superhero,1361917972 +105996,3882,high school,1361910445 +105996,3882,Kirsten Dunst,1361910434 +105996,4069,funny,1361907480 +105996,4069,Jennifer Lopez,1361907460 +105996,4069,Matthew McConaughey,1361907455 +105996,4069,romantic comedy,1361907473 +105996,4069,sweet and romantic,1361907504 +105996,4226,Christopher Nolan,1361911480 +105996,4246,funny,1361911003 +105996,4246,love,1361911001 +105996,4246,love story,1361910997 +105996,4246,romance,1361910993 +105996,4246,romantic comedy,1361910999 +105996,4310,Ben Affleck,1361916365 +105996,4310,catastrophe,1361916384 +105996,4310,emotional,1361916382 +105996,4310,love story,1361916372 +105996,4310,military,1361916393 +105996,4310,romantic,1361916378 +105996,4310,sad ending,1361916406 +105996,4447,better than expected,1361910874 +105996,4447,friendship,1361910868 +105996,4447,funny,1361910865 +105996,4447,girlie movie,1361910877 +105996,4447,Reese Witherspoon,1361910860 +105996,4823,Christmas,1361907525 +105996,4823,destiny,1361907548 +105996,4823,Good Romantic Comedies,1361907523 +105996,4823,serendipity,1361907533 +105996,4823,wedding,1361907531 +105996,4992,girlie movie,1361907425 +105996,4992,Good Romantic Comedies,1361907428 +105996,4992,Hugh Jackman,1361907420 +105996,4992,Romance,1361907414 +105996,4992,sweet,1361907417 +105996,5066,girlie movie,1361917176 +105996,5066,high school,1361917174 +105996,5066,Mandy Moore,1361917152 +105996,5066,predictable,1361917171 +105996,5066,Romance,1361917150 +105996,5066,sad ending,1361917187 +105996,5066,Shane West,1361917165 +105996,5066,sweet and romantic,1361917168 +105996,5299,comedy,1361910088 +105996,5299,family,1361910107 +105996,5299,funny,1361910110 +105996,5299,girlie movie,1361910095 +105996,5299,romance,1361910090 +105996,5299,wedding,1361910100 +105996,5349,comic book,1361917920 +105996,5349,Kirsten Dunst,1361917922 +105996,5349,marvel,1361917918 +105996,5349,super-hero,1361917912 +105996,5349,superhero,1361917913 +105996,5349,Tobey Maguire,1361917915 +105996,5620,Drew Barrymore,1361907732 +105996,5620,funny,1361907747 +105996,5620,girlie movie,1361907721 +105996,5620,Patrick Dempsey,1361907724 +105996,5620,Reese Witherspoon,1361907719 +105996,5620,romance,1361907741 +105996,5620,romantic comedy,1361907726 +105996,5620,weddings,1361907728 +105996,6155,cool,1361907602 +105996,6155,funny,1361907580 +105996,6155,Good Romantic Comedies,1361907574 +105996,6155,Kate Hudson,1361907571 +105996,6157,Ben Affleck,1361918143 +105996,6157,comic book,1361918155 +105996,6157,Jennifer Garner,1361918160 +105996,6157,Marvel,1361918146 +105996,6157,superhero,1361918151 +105996,6333,action,1361917098 +105996,6333,marvel,1361917101 +105996,6333,superhero,1361917092 +105996,6535,Reese Witherspoon,1361911014 +105996,6942,christmas,1361910009 +105996,6942,comedy,1361910011 +105996,6942,Keira Knightley,1361910006 +105996,6942,Romance,1361910003 +105996,6942,romantic,1361910013 +105996,7255,Comedy,1361909652 +105996,7255,Romance,1361909648 +105996,7293,Adam Sandler,1361909383 +105996,7293,amnesia,1361909386 +105996,7293,chemistry between actors,1361909391 +105996,7293,date movie,1361909393 +105996,7293,Drew Barrymore,1361909379 +105996,7293,funny,1361909396 +105996,7293,Romance,1361909398 +105996,7444,Comedy,1361911245 +105996,7444,created for teens,1361911252 +105996,7444,Jennifer Garner,1361911243 +105996,7444,romance,1361911249 +105996,7451,funny,1361910498 +105996,7451,High School,1361910474 +105996,7451,Lindsay Lohan,1361910467 +105996,7451,Rachel McAdams,1361910479 +105996,7451,romantic,1361910498 +105996,7451,Teen movie,1361910515 +105996,7454,gothic,1361918298 +105996,7454,Hugh Jackman,1361918301 +105996,7454,vampires,1361918291 +105996,7454,werewolves,1361918295 +105996,7458,based on a poem,1361916773 +105996,7458,Brad Pitt,1361916766 +105996,7458,Orlando Bloom,1361916768 +105996,7458,sad ending,1361916784 +105996,8533,bad ending,1361916536 +105996,8533,Romance,1361916515 +105996,8533,romantic,1361916517 +105996,8533,sad ending,1361916545 +105996,8533,sentimental,1361916521 +105996,8636,adapted from:comic,1361917881 +105996,8636,comic book,1361917879 +105996,8636,Kirsten Dunst,1361917871 +105996,8636,love story,1361917887 +105996,8636,marvel,1361917874 +105996,8636,superhero,1361917869 +105996,8643,Chad Michael Murray,1361911207 +105996,8643,happy ending,1361911223 +105996,8643,Hilary Duff,1361911209 +105996,8643,romance,1361911216 +105996,8643,Teen movie,1361911214 +105996,8666,Batman,1361918208 +105996,8666,DC Comics,1361918211 +105996,8666,Halle Berry,1361918204 +105996,8799,sad ending,1361910603 +105996,8969,Good Romantic Comedies,1361910978 +105996,31221,comic book,1361918185 +105996,31221,Jennifer Garner,1361918188 +105996,31221,marvel,1361918183 +105996,31221,strong female,1361918177 +105996,31221,superhero,1361918180 +105996,31433,boring,1361907706 +105996,31433,wedding,1361907699 +105996,31685,comedy,1361909353 +105996,31685,cute,1361909355 +105996,31685,funny,1361909350 +105996,31685,original,1361909344 +105996,31685,Will Smith,1361909348 +105996,33815,funny,1361910895 +105996,33815,Hilary Duff,1361910890 +105996,33815,romantic comedy,1361910909 +105996,34150,Action,1361918020 +105996,34150,Chris Evans,1361918008 +105996,34150,funny,1361918028 +105996,34150,johnny supernova,1361918122 +105996,34150,super-hero,1361918015 +105996,34150,superhero,1361918011 +105996,39231,funeral,1361910054 +105996,39231,Kirsten Dunst,1361910042 +105996,39231,Orlando Bloom,1361910045 +105996,45668,architecture,1361907376 +105996,45668,good romantic comedies,1361907355 +105996,45668,love letters,1361907361 +105996,45668,sweet,1361907347 +105996,45668,time travel,1361907363 +105996,48780,Christian Bale,1361916720 +105996,48780,Christopher Nolan,1361916730 +105996,49286,Jude Law,1361913825 +105996,49286,lovely characters,1361913855 +105996,49286,Romance,1361913835 +105996,49286,romantic comedy,1361913827 +105996,49286,sweet,1361913840 +105996,50802,Mandy Moore,1361909853 +105996,50802,Romance,1361909856 +105996,53464,Chris Evans,1361918042 +105996,53464,comic book,1361918056 +105996,53464,Jessica Alba,1361918044 +105996,53464,Marvel,1361918060 +105996,53464,superhero,1361918049 +105996,53464,superheroes,1361918046 +105996,56949,comedy romance,1361907644 +105996,56949,Katherine Heigl,1361907620 +105996,56949,love story,1361907648 +105996,56949,marriage,1361907635 +105996,56949,romance,1361907627 +105996,56949,romantic comedy,1361907625 +105996,56949,weddings,1361907653 +105996,58047,cute,1361911283 +105996,58047,love,1361911272 +105996,58047,marriage,1361911276 +105996,58047,romantic comedy,1361911278 +105996,63992,bad acting,1361917415 +105996,63992,Bad direction,1361917443 +105996,63992,based on a book,1361917378 +105996,63992,book is so much better,1361917401 +105996,63992,book was better,1361917388 +105996,63992,love story,1361917421 +105996,63992,vampires,1361917368 +105996,63992,vampires shine!!,1361917427 +105996,64957,Brad Pitt,1361917122 +105996,64957,funny,1361917132 +105996,64957,sad ending,1361917140 +105996,64957,touching,1361917126 +105996,66203,Ben Affleck,1361910328 +105996,66203,funny,1361910332 +105996,66203,happy ending,1361910341 +105996,66203,Jennifer Aniston,1361910330 +105996,66203,romance,1361910339 +105996,66203,sincerity,1361910334 +105996,67788,cute,1361910824 +105996,67788,good clean comedy,1361910832 +105996,67788,romance,1361910826 +105996,67788,shopping,1361910837 +105996,68135,high school,1361909956 +105996,68135,Love story,1361909951 +105996,68135,romantic comedy,1361909973 +105996,68135,Zac Efron,1361909943 +105996,68319,action,1361917951 +105996,68319,comic book,1361917949 +105996,68319,Marvel,1361917938 +105996,68319,superhero,1361917941 +105996,70183,comedy,1361909614 +105996,70183,cute,1361909581 +105996,70183,funny,1361909596 +105996,70183,good comedy,1361909584 +105996,70183,Katherine Heigl,1361909620 +105996,70183,romantic comedy,1361909614 +105996,72407,awesome soundtrack,1361917484 +105996,72407,bad acting,1361917470 +105996,72407,based on a book,1361917481 +105996,72407,book was better,1361917498 +105996,72407,Kristen Stewart,1361917462 +105996,72407,Robert Pattinson,1361917465 +105996,72407,supernatural,1361917478 +105996,72407,vampires,1361917472 +105996,72407,werewolves,1361917476 +105996,72919,funny,1361909499 +105996,72919,Hugh Grant,1361909507 +105996,72998,action,1361916594 +105996,72998,aliens,1361916582 +105996,72998,fantasy,1361916584 +105996,72998,funny,1361916589 +105996,72998,romance,1361916604 +105996,72998,scenic,1361916600 +105996,72998,sci-fi,1361916576 +105996,73017,Robert Downey Jr.,1361911773 +105996,74450,funny,1361910168 +105996,74450,Jennifer Garner,1361910135 +105996,74450,Jessica Alba,1361910137 +105996,74450,Jessica Biel,1361910142 +105996,74450,love,1361910158 +105996,74450,multiple storylines,1361910151 +105996,74688,Amanda Seyfried,1361917199 +105996,74688,bad ending,1361917234 +105996,74688,based on a book,1361917207 +105996,74688,nicholas sparks,1361917204 +105996,74688,romance,1361917210 +105996,74688,sad ending,1361917234 +105996,77414,funny,1361917252 +105996,77414,Miley Cyrus,1361917247 +105996,77414,nicholas sparks,1361917307 +105996,77414,sad ending,1361917278 +105996,77561,action,1361917822 +105996,77561,based on a comic,1361917852 +105996,77561,comic book,1361917824 +105996,77561,Gwyneth Paltrow,1361917817 +105996,77561,Iron Man,1361917828 +105996,77561,Marvel,1361917844 +105996,77561,Robert Downey Jr.,1361917813 +105996,77561,Scarlett Johansson,1361917854 +105996,77561,sequel,1361917840 +105996,77561,superhero,1361917819 +105996,78264,funny,1361910188 +105996,78264,love,1361910184 +105996,78264,romantic comedy,1361910197 +105996,78772,based on a book,1361917538 +105996,78772,book is so much better,1361917548 +105996,78772,friendship,1361917527 +105996,78772,funny,1361917532 +105996,78772,Kristen Stewart,1361917512 +105996,78772,Robert Pattinson,1361917515 +105996,78772,supernatural,1361917523 +105996,78772,vampires,1361917520 +105996,80549,comedy,1361910533 +105996,80549,Emma Stone,1361910525 +105996,80549,funny,1361910540 +105996,80549,high school,1361910528 +105996,80858,funny,1361910937 +105996,80858,Kristen Bell,1361910932 +105996,80860,comedy,1361909043 +105996,80860,Josh Duhamel,1361909040 +105996,80860,Katherine Heigl,1361909029 +105996,80860,romantic comedy,1361909064 +105996,80860,sweet,1361909037 +105996,82152,alex pettyfer,1361917721 +105996,82152,Beauty and the Beast,1361917718 +105996,82152,girlie movie,1361917757 +105996,82152,Mary-Kate Olsen,1361917775 +105996,82152,romance,1361917747 +105996,82152,Teen movie,1361917747 +105996,82152,vanessa hudgens,1361917796 +105996,82499,not romantic,1361911063 +105996,82499,Reese Witherspoon,1361911048 +105996,84374,Ashton Kutcher,1361909888 +105996,84374,funny,1361909898 +105996,84374,Natalie Portman,1361909892 +105996,84374,romantic,1361909925 +105996,84374,romantic comedy,1361909925 +105996,85367,Adam Sandler,1361909767 +105996,85367,family comedy,1361909777 +105996,85367,funny,1361909784 +105996,85367,Jennifer Aniston,1361909770 +105996,86332,action,1361917018 +105996,86332,Chris Hemsworth,1361917008 +105996,86332,funny,1361917016 +105996,86332,Marvel,1361917011 +105996,86332,Natalie Portman,1361917020 +105996,86332,superhero,1361917014 +105996,87232,Marvel,1361917041 +105996,87232,superhero,1361917035 +105996,88163,comedy,1361910233 +105996,88163,Emma Stone,1361910229 +105996,88163,funny,1361910237 +105996,88163,high school,1361910243 +105996,88163,love,1361910235 +105996,88163,romantic comedy,1361910240 +105996,88179,bad ending,1392390192 +105996,91104,almost as good as the book,1361917700 +105996,91104,bad acting,1361917663 +105996,91104,based on a book,1361917679 +105996,91104,Kristen Stewart,1361917690 +105996,91104,vampires,1361917667 +105996,91529,Batman,1361911490 +105996,91529,Christian Bale,1361911495 +105996,91529,Christopher Nolan,1361911514 +105996,91529,great ending,1361911503 +105996,91529,Morgan Freeman,1361911500 +105996,91529,superhero,1361911497 +105996,92259,based on a true story,1361911412 +105996,92259,disability,1361911416 +105996,92259,emotional,1361911410 +105996,92259,friendship,1361911407 +105996,92259,funny,1361911421 +105996,92259,touching,1361911405 +105996,92509,based on a true story,1361916428 +105996,92509,no sense ending,1361916473 +105996,92509,romance,1361916423 +105996,92509,romantic,1361916425 +105996,95510,action,1361917076 +105996,95510,Andrew Garfield,1361917060 +105996,95510,comic book,1361917078 +105996,95510,Emma Stone,1361917054 +105996,95510,Marvel,1361917069 +105996,95510,Spider-Man,1361917058 +105996,95510,superhero,1361917067 +105996,97752,More Than Once,1361916698 +105996,97752,multiple storylines,1361916638 +105996,97752,Tom Hanks,1361916642 +105996,98203,adapted from:book,1361917613 +105996,98203,almost as good as the book,1361917650 +105996,98203,bad acting,1361917638 +105996,98203,Kristen Stewart,1361917603 +105996,98203,taylor lautner,1361917608 +105996,98203,vampires,1361917621 +105996,98203,werewolves,1361917618 +105997,103810,agents,1438058921 +105997,103810,c.i.a.,1438058921 +105997,103810,retired,1438058921 +105999,260,cult classic,1437939647 +105999,260,scifi cult,1437939633 +106008,32,great ending,1368275871 +106008,32,original,1368275463 +106008,47,great ending,1368275871 +106008,50,complicated,1283491707 +106008,50,great acting,1368275796 +106008,50,Kevin Spacey,1283491706 +106008,50,storytelling,1368275533 +106008,50,twist ending,1283491710 +106008,110,medieval,1292987981 +106008,110,Mel Gibson,1292987978 +106008,111,loneliness,1368275610 +106008,150,dramatic,1368275650 +106008,169,family,1368275853 +106008,204,action,1368275683 +106008,296,storytelling,1368275533 +106008,318,great acting,1368275796 +106008,318,great ending,1368275871 +106008,455,family,1368275853 +106008,508,dramatic,1368275651 +106008,593,great acting,1368275796 +106008,804,relationships,1368275706 +106008,858,great acting,1368275796 +106008,858,oscar (best directing),1368275633 +106008,1015,family,1368275853 +106008,1016,family,1368275853 +106008,1089,original,1368275463 +106008,1185,cerebral,1368275913 +106008,1199,cerebral,1368275913 +106008,1199,visually appealing,1368275781 +106008,1199,weird,1368275731 +106008,1213,oscar (best directing),1368275633 +106008,1241,cult classic,1368275816 +106008,1255,cult classic,1368275816 +106008,1299,dramatic,1368275651 +106008,1307,relationships,1368275706 +106008,1358,oscar (best directing),1368275632 +106008,1527,visually appealing,1368275781 +106008,1617,great acting,1368275796 +106008,1623,horror,1368275837 +106008,1639,relationships,1368275706 +106008,1704,mentor,1368275494 +106008,1722,action,1368275683 +106008,1748,cerebral,1368275913 +106008,1921,visually appealing,1368275781 +106008,1991,horror,1368275837 +106008,2076,weird,1368275732 +106008,2108,story,1368275900 +106008,2167,action,1368275683 +106008,2194,oscar (best directing),1368275633 +106008,2262,relationships,1368275706 +106008,2291,original,1368275463 +106008,2315,horror,1368275838 +106008,2335,comedy,1368275513 +106008,2355,story,1368275900 +106008,2371,comedy,1368275514 +106008,2394,story,1368275900 +106008,2420,mentor,1368275495 +106008,2460,horror,1368275837 +106008,2762,great ending,1368275871 +106008,2858,great acting,1368275796 +106008,3006,dramatic,1368275651 +106008,3018,horror,1368275837 +106008,3105,dramatic,1368275651 +106008,3147,oscar (best directing),1368275633 +106008,3157,family,1368275853 +106008,3421,comedy,1368275513 +106008,3740,cult classic,1368275816 +106008,3949,oscar (best directing),1368275632 +106008,3986,action,1368275683 +106008,4085,comedy,1368275513 +106008,4226,storytelling,1368275533 +106008,4725,horror,1368275837 +106008,4776,denzel washington,1274503015 +106008,4776,Ethan Hawke,1274503013 +106008,4776,police corruption,1274503011 +106008,4848,visually appealing,1368275781 +106008,4878,cerebral,1368275913 +106008,4878,original,1368275463 +106008,4878,weird,1368275731 +106008,5452,family,1368275853 +106008,5995,dramatic,1368275651 +106008,6188,comedy,1368275514 +106008,6787,story,1368275900 +106008,7147,story,1368275900 +106008,8507,black and white,1283716835 +106008,8507,classic,1283716829 +106008,8507,cult film,1283716827 +106008,8507,gruesome,1283716813 +106008,8507,short,1283716840 +106008,8507,touching,1283716820 +106008,8641,comedy,1368275513 +106008,8981,relationships,1368275706 +106008,32587,storytelling,1368275533 +106008,35386,First Person Movie,1274730600 +106008,35386,racism,1274730597 +106008,35386,soldier,1274730600 +106008,35386,Vietnam War,1274730600 +106008,35386,war crimes,1274730600 +106008,35386,war movie,1274730600 +106008,45720,Anne Hathaway,1270575284 +106008,45720,chickflick,1270575280 +106008,45720,Emily Blunt,1270575287 +106008,45720,Meryl Streep,1270575255 +106008,45720,Stanley Tucci,1270575293 +106008,50872,story,1368275900 +106008,56782,cerebral,1368275913 +106008,58047,Abigail Breslin,1269118868 +106008,58047,Isla Fisher,1269118885 +106008,58047,PARENTHOOD,1269118878 +106008,58047,Ryan Reynolds,1269118871 +106008,60684,visually appealing,1368275781 +106008,61240,foreign,1226222272 +106008,61240,serial killer,1226222256 +106008,61240,swedish,1226222233 +106008,61240,vampire,1226222241 +106008,64839,loneliness,1368275610 +106008,68194,based on true story,1274491941 +106008,69604,Evan Rachel Wood,1277355029 +106008,69604,Larry David,1277355035 +106008,69757,To See,1253588564 +106008,69757,Zooey Deschanel,1253588547 +106008,71248,adultery,1269118793 +106008,71248,Ben Affleck,1269118782 +106008,71248,Gene Simmons,1269118784 +106008,71248,Jason Bateman,1269118777 +106008,71248,Mila Kunis,1269118787 +106008,71248,mila kunis is so damn hot,1269118801 +106008,71500,Halloween,1259207174 +106008,71500,multiple storylines,1259207176 +106008,71500,Scary Halloween Movies,1259207181 +106008,72171,blaxploitation,1274891566 +106008,72171,martial arts,1274891564 +106008,72171,Michael Jai White,1274891580 +106008,72171,parody,1274891572 +106008,72176,Kevin Corrigan,1285081441 +106008,72176,Patton Oswalt,1285081439 +106008,76210,Kat Dennings,1274817082 +106008,76210,Sandra Oh,1274817080 +106008,76210,superhero,1274817079 +106008,76210,Woody Harrelson,1274817078 +106008,76251,action,1273461702 +106008,76251,comic book,1273461720 +106008,76251,funny,1273461696 +106008,76251,Nicolas Cage,1273461709 +106008,76251,superhero,1273461713 +106008,79132,cerebral,1368275913 +106008,79695,Dolph Lundgren,1283399186 +106008,79695,Jason Statham,1283399192 +106008,79695,Mickey Rourke,1283399181 +106008,79695,Randy Coture,1283399173 +106008,79695,Sylvester Stallone,1283399184 +106008,80502,bugs,1293464091 +106008,81591,Mila Kunis,1292987938 +106008,81932,Amy Adams,1297968203 +106008,81932,Christian Bale,1297968200 +106009,260,family,1436952957 +106009,260,shooting,1436952957 +106009,260,space,1436952957 +106009,356,classic,1426440473 +106009,356,comedy,1426440473 +106009,356,funny,1426440473 +106009,593,classic villain,1428418831 +106009,593,slow paced,1428418831 +106009,593,vintage,1428418831 +106010,318,inspirational,1430262123 +106037,260,Science Fiction,1431786305 +106037,593,crime,1433095260 +106037,593,fbi,1433095260 +106037,593,mystery,1433095260 +106052,1374,inappropriate sound in space,1201189660 +106052,5669,I despise documentaries like this.,1206716113 +106060,260,blasters,1431261312 +106060,260,jedi,1431261302 +106060,260,sci-fi,1431261293 +106060,260,space combat,1431261321 +106061,260,mythology,1436935739 +106061,260,occult,1436935747 +106061,260,science fiction,1436935759 +106061,356,alternate history,1436936362 +106061,356,tom hanks,1436936362 +106061,356,vietnam war,1436936362 +106089,260,futuristic,1440873120 +106089,260,scifi,1440873130 +106098,7502,determination,1427739951 +106098,7502,history,1427739951 +106098,7502,war,1427739951 +106102,6,Al Pacino,1443147731 +106102,6,atmospheric,1443147740 +106102,6,crime,1443147750 +106102,6,great acting,1443147736 +106102,6,Robert De Niro,1443147733 +106102,32,bruce willis,1447099015 +106102,32,complicated,1443145399 +106102,32,mindfuck,1443145416 +106102,32,sci-fi,1443145408 +106102,32,time travel,1443145393 +106102,32,twist ending,1443145393 +106102,47,brad pitt,1443146885 +106102,47,crime,1443146889 +106102,47,dark,1443146903 +106102,47,investigation,1443146892 +106102,47,Kevin Spacey,1443146894 +106102,47,morgan freeman,1443146881 +106102,47,mystery,1443146898 +106102,47,psychology,1443146883 +106102,47,serial killer,1443146877 +106102,47,twist ending,1443146879 +106102,50,complicated,1447098599 +106102,50,conspiracy,1447098601 +106102,50,excellent script,1447098607 +106102,50,great ending,1447098611 +106102,50,Kevin Spacey,1447098591 +106102,50,suspense,1447098596 +106102,50,thriller,1447098620 +106102,50,twist ending,1447098594 +106102,110,inspirational,1443699176 +106102,110,war,1443699169 +106102,111,cult film,1443144261 +106102,111,dark,1443144246 +106102,111,Martin Scorsese,1443144251 +106102,111,masterpiece,1443144255 +106102,111,psychology,1443144257 +106102,111,robert de niro,1443144243 +106102,111,social commentary,1443144268 +106102,111,vigilantism,1443144264 +106102,165,action,1449086791 +106102,231,comedy,1449086682 +106102,231,Jeff Daniels,1449086687 +106102,231,jim carrey,1449086679 +106102,231,silly,1449086693 +106102,296,cult film,1447098951 +106102,296,dark comedy,1447098943 +106102,296,multiple storylines,1447098947 +106102,296,nonlinear,1447098945 +106102,296,Quentin Tarantino,1447098943 +106102,296,stylized,1447098958 +106102,318,classic,1443145704 +106102,318,drama,1443145737 +106102,318,inspirational,1443145724 +106102,318,Morgan Freeman,1443145711 +106102,318,prison escape,1443145716 +106102,318,thought-provoking,1443145699 +106102,344,comedy,1449086642 +106102,344,Jim Carrey,1449086637 +106102,344,silly fun,1449086645 +106102,377,Action,1449086608 +106102,377,tense,1449086613 +106102,377,Thriller,1449086609 +106102,608,based on a true story,1443144121 +106102,608,crime,1443144140 +106102,608,CRIME GONE AWRY,1443144147 +106102,608,dark comedy,1443144131 +106102,608,murder,1443144128 +106102,628,atmospheric,1443148167 +106102,628,courtroom drama,1443148163 +106102,628,edward norton,1443148154 +106102,628,psychology,1443148160 +106102,628,twist ending,1443148157 +106102,858,Al Pacino,1447098809 +106102,858,atmospheric,1447098820 +106102,858,classic,1447098807 +106102,858,great acting,1447098815 +106102,858,Mafia,1447098804 +106102,858,Marlon Brando,1447098817 +106102,858,organized crime,1447098813 +106102,858,oscar (best directing),1447098819 +106102,858,robert de niro,1447098828 +106102,903,Alfred Hitchcock,1443148621 +106102,903,Atmospheric,1443148623 +106102,903,classic,1443148639 +106102,903,James Stewart,1443148633 +106102,903,twist ending,1443148630 +106102,912,atmospheric,1443301675 +106102,912,classic,1443301671 +106102,912,Film Noir,1443301685 +106102,912,Humphrey Bogart,1443301677 +106102,913,atmospheric,1443148131 +106102,913,Humphrey Bogart,1443148123 +106102,913,noir thriller,1443148118 +106102,1036,action,1443699472 +106102,1036,humorous,1443699481 +106102,1036,tense,1443699488 +106102,1036,terrorism,1443699473 +106102,1086,classic,1443148023 +106102,1086,Great Ending,1443148054 +106102,1086,Murder,1443148052 +106102,1086,Noir Thriller,1443148144 +106102,1086,suspense,1443148026 +106102,1089,crime,1443148814 +106102,1089,cult film,1443148832 +106102,1089,ensemble cast,1443148808 +106102,1089,heist,1443148839 +106102,1089,nonlinear,1443148802 +106102,1089,organized crime,1443148828 +106102,1089,Quentin Tarantino,1443148801 +106102,1089,stylized,1443148811 +106102,1089,undercover cop,1443148823 +106102,1089,violence,1443148847 +106102,1201,American Civil War,1443145083 +106102,1201,Clint Eastwood,1443145085 +106102,1201,soundtrack,1443145091 +106102,1201,western,1443145099 +106102,1228,atmospheric,1443147887 +106102,1228,Biography,1443147869 +106102,1228,classic,1443144289 +106102,1228,Joe Pesci,1443147881 +106102,1228,Martin Scorsese,1443144291 +106102,1228,Robert De Niro,1443144284 +106102,1252,atmospheric,1449041771 +106102,1252,cynical,1449041774 +106102,1252,Film Noir,1449041753 +106102,1252,Jack Nicholson,1449041751 +106102,1260,atmospheric,1443148499 +106102,1260,Fritz Lang,1443148495 +106102,1260,serial killer,1443148501 +106102,1270,classic,1443145038 +106102,1270,comedy,1443145036 +106102,1270,sci-fi,1443145030 +106102,1270,time travel,1443145026 +106102,1370,action,1449086726 +106102,1527,Bruce Willis,1443148717 +106102,1527,futuristic,1443148726 +106102,1527,Nudity (Topless - Notable),1443148732 +106102,1527,sci-fi,1443148714 +106102,1834,mystery,1449590988 +106102,1834,Predictable,1449590984 +106102,2028,history,1443144435 +106102,2028,realistic,1443144455 +106102,2028,Tom Hanks,1443144438 +106102,2186,Alfred Hitchcock,1443148531 +106102,2186,great concept,1443148534 +106102,2186,murder,1443148536 +106102,2186,tennis,1443148538 +106102,2186,trains,1443148541 +106102,2268,courtroom drama,1443145171 +106102,2268,great performances,1443145189 +106102,2268,Jack Nicholson,1443145174 +106102,2268,Tom Cruise,1443145176 +106102,2324,bittersweet,1443148475 +106102,2324,Heartwarming,1443148481 +106102,2324,optimism,1443148484 +106102,2324,sentimental,1443148467 +106102,2542,black comedy,1446067305 +106102,2542,dark comedy,1446067288 +106102,2542,Guy Ritchie,1446067296 +106102,2542,hilarious,1446067291 +106102,2542,multiple storylines,1446067323 +106102,2542,organized crime,1447099003 +106102,2542,Unique,1446067323 +106102,2762,Atmospheric,1443148877 +106102,2762,Bruce Willis,1443148874 +106102,2762,mindfuck,1443148856 +106102,2762,psychology,1443148872 +106102,2762,suspense,1443148865 +106102,2762,thriller,1443148870 +106102,2762,touching,1443148860 +106102,2762,twist ending,1443148853 +106102,2762,unique,1443148867 +106102,2762,unpredictable,1443148880 +106102,2858,coming of age,1443148318 +106102,2858,dark comedy,1443148288 +106102,2858,kevin spacey,1443148293 +106102,2858,Nudity (Topless),1443148312 +106102,2858,sexuality,1443148322 +106102,2858,social commentary,1443148301 +106102,2858,surrealism,1443148307 +106102,2959,atmospheric,1447098480 +106102,2959,Brad Pitt,1447098462 +106102,2959,dark comedy,1447098466 +106102,2959,Edward Norton,1447098460 +106102,2959,mindfuck,1447098489 +106102,2959,philosophy,1447098472 +106102,2959,psychology,1447098464 +106102,2959,social commentary,1447098468 +106102,2959,stylized,1447098499 +106102,2959,surreal,1447098470 +106102,2959,thought-provoking,1447098477 +106102,2959,twist ending,1447098458 +106102,3089,classic,1443147766 +106102,3089,Drama,1443147814 +106102,3089,Great Acting,1443147815 +106102,3089,neorealism,1443147761 +106102,3089,poverty,1443147774 +106102,3252,Al Pacino,1443147932 +106102,3252,atmospheric,1443147946 +106102,3252,drama,1443147943 +106102,3252,great acting,1443147936 +106102,3362,Al Pacino,1443147952 +106102,3362,Atmospheric,1443147965 +106102,3362,bank robbery,1443147962 +106102,3362,dark comedy,1443147955 +106102,3362,true story,1443147958 +106102,3435,film noir,1443148350 +106102,3435,murder,1443148355 +106102,3435,noir thriller,1443148353 +106102,3435,stylized,1443148362 +106102,3535,Christian Bale,1443031045 +106102,3535,dark comedy,1443144659 +106102,3535,insanity,1443144652 +106102,3535,psycho,1443031048 +106102,3535,psychology,1443144654 +106102,3535,serial killer,1443144656 +106102,4011,brad pitt,1443746184 +106102,4011,comedy,1443746193 +106102,4011,dark comedy,1443746211 +106102,4011,guy ritchie,1443746191 +106102,4011,Hilarious,1443746199 +106102,4011,multiple storylines,1443746201 +106102,4011,stylized,1443746246 +106102,4011,twist ending,1443746188 +106102,4144,elegant,1448175512 +106102,4144,Great Acting,1448175557 +106102,4144,loneliness,1448175449 +106102,4144,Maggie Cheung,1448175591 +106102,4144,melancholy,1448175512 +106102,4144,music,1448175511 +106102,4144,Tony Leung,1448175570 +106102,4144,Wong Kar Wai,1448175452 +106102,4226,Christopher Nolan,1447098557 +106102,4226,complicated,1447098527 +106102,4226,cult film,1447098566 +106102,4226,Mindfuck,1447098533 +106102,4226,mystery,1447098530 +106102,4226,nonlinear,1447098516 +106102,4226,psychology,1447098522 +106102,4226,stylized,1447098531 +106102,4226,twist ending,1447098518 +106102,4235,multiple storylines,1448565737 +106102,4262,Al Pacino,1443148760 +106102,4262,atmospheric,1443148774 +106102,4262,classic,1443148781 +106102,4262,corruption,1443148789 +106102,4262,crime,1443148785 +106102,4262,mafia,1443148771 +106102,4262,Nudity (Topless - Brief),1443148795 +106102,4262,organized crime,1443148762 +106102,4878,atmospheric,1443148447 +106102,4878,psychology,1443148431 +106102,4878,surreal,1443148424 +106102,4878,thought-provoking,1443148458 +106102,4878,time travel,1443148421 +106102,5008,courtroom drama,1445076572 +106102,5008,twist ending,1445076586 +106102,5319,CONS AND SCAMS,1448804564 +106102,5319,Leticia Bredice,1448804595 +106102,5319,Predictable,1448804585 +106102,5319,Ricardo Darin,1448804555 +106102,5903,Christian Bale,1443148680 +106102,5903,predictable,1443148686 +106102,5903,sci-fi,1443148699 +106102,5903,totalitarianism,1443148678 +106102,6001,black comedy,1443147902 +106102,6001,Martin Scorsese,1443144316 +106102,6001,Robert De Niro,1443147905 +106102,6001,satirical,1443144320 +106102,6016,atmospheric,1443146847 +106102,6016,based on a true story,1443146853 +106102,6016,coming of age,1443146864 +106102,6016,gangs,1443146839 +106102,6016,multiple storylines,1443146850 +106102,6016,social commentary,1443146856 +106102,6708,con artists,1449363418 +106102,6708,crime,1449363428 +106102,6708,Nicolas Cage,1449363426 +106102,6708,Predictable,1449363471 +106102,6708,Quirky,1449363423 +106102,6776,aamir Khan,1443151686 +106102,6776,Ashutosh Gowariker,1443151684 +106102,6776,cricket,1443151662 +106102,6776,Drama,1443151687 +106102,7223,noir thriller,1443148254 +106102,7254,alternate reality,1443148894 +106102,7254,psychology,1443148896 +106102,7254,suspense,1443148907 +106102,7254,time travel,1443148892 +106102,7254,twist ending,1443148903 +106102,7346,comedy,1443144606 +106102,7346,Elisha Cuthbert,1443038571 +106102,7346,Nudity (Topless),1443144602 +106102,7419,black comedy,1443144353 +106102,7419,Martin Scorsese,1443144356 +106102,7419,surreal,1443144401 +106102,7458,Brad Pitt,1443402963 +106102,7458,Epic,1443402979 +106102,7458,historical epic,1443403036 +106102,7458,Nudity (Topless),1443402970 +106102,8581,Apple,1443147612 +106102,8581,computers,1443147604 +106102,8581,geeks,1443147615 +106102,8581,history,1443147610 +106102,8581,Real,1443147636 +106102,8914,clever,1447100200 +106102,8914,complicated plot,1447100197 +106102,8914,mindfuck,1447100195 +106102,8914,paradox,1447100208 +106102,8914,physics,1447100207 +106102,8914,time travel,1447100193 +106102,8950,Christian Bale,1443144756 +106102,8950,insomnia,1443144778 +106102,8950,psychology,1443144750 +106102,8950,schizophrenia,1443144784 +106102,8950,stylized,1443144769 +106102,8950,twist ending,1443144753 +106102,8984,Brad Pitt,1449137988 +106102,8984,George Clooney,1449138001 +106102,8984,Heist,1449137991 +106102,25911,Edward G. Robinson,1444732004 +106102,25911,film noir,1444732005 +106102,27131,Drama,1443149451 +106102,27131,Love,1443149448 +106102,27131,Mani Ratnam,1443149405 +106102,27131,Manisha Koirala,1443149447 +106102,27131,Shahrukh Khan,1443149445 +106102,27131,Story,1443149450 +106102,27326,Acting,1443149572 +106102,27326,Aishwarya Rai,1443149521 +106102,27326,Based on a book,1443149567 +106102,27326,Sanjay Leela Bhansali,1443149517 +106102,27326,Shahrukh Khan,1443149557 +106102,27326,Story,1443149546 +106102,27362,Amitabh Bachcan,1443150704 +106102,27362,Comedy,1443150716 +106102,27362,Drama,1443150719 +106102,27362,Family Reltionships,1443150724 +106102,27362,Karan Johar,1443150685 +106102,27362,Shahrukh Khan,1443150691 +106102,27729,Heart Warming,1443146572 +106102,27729,Relentless Pure Love,1443146547 +106102,27729,Romedy,1443146558 +106102,27729,Shah Rukh Khan,1443146548 +106102,27773,bizarre,1448279692 +106102,27773,depressing,1448279647 +106102,27773,disturbing,1448279636 +106102,27773,Nudity (Full Frontal),1448279652 +106102,27773,revenge,1448279636 +106102,27773,twist ending,1448279637 +106102,31696,Keanu Reeves,1449138196 +106102,32587,atmospheric,1443148936 +106102,32587,Bruce Willis,1443148952 +106102,32587,dark,1443148969 +106102,32587,film noir,1443148963 +106102,32587,multiple storylines,1443148928 +106102,32587,Nudity (Topless),1443148959 +106102,32587,Quentin Tarantino,1443148934 +106102,32587,stylized,1443148930 +106102,32587,surrealism,1443148949 +106102,32587,violence,1443148956 +106102,32587,visually appealing,1443148941 +106102,33794,Christian Bale,1443146068 +106102,33794,Christopher Nolan,1443146101 +106102,33794,Michael Caine,1443146075 +106102,33794,philosophical,1443146083 +106102,33794,vigilante,1443146066 +106102,36086,Comedy,1443146233 +106102,36086,romance,1443146246 +106102,36086,ShahRukh Khan,1443146229 +106102,41650,Coming of the age,1443150401 +106102,41650,Drama,1443150416 +106102,41650,Great Acting,1443150424 +106102,41650,Nargis,1443150380 +106102,41650,Social Commentary,1443150402 +106102,44555,complex characters,1448378442 +106102,44555,Nudity (Topless),1448378440 +106102,44555,surveillance,1448378441 +106102,44665,Ben Kingsley,1443637704 +106102,44665,Bruce Willis,1443647844 +106102,44665,mistaken identity,1443647851 +106102,44665,Revenge,1443637704 +106102,44665,stylized,1443637706 +106102,44665,twist ending,1443647840 +106102,45447,conspiracy theory,1449138082 +106102,45447,Mystery,1449138090 +106102,48516,atmospheric,1447098686 +106102,48516,complicated plot,1447098693 +106102,48516,Jack Nicholson,1447098665 +106102,48516,Leonardo DiCaprio,1447098659 +106102,48516,Martin Scorsese,1447098667 +106102,48516,Matt Damon,1447098669 +106102,48516,organized crime,1447098664 +106102,48516,twist ending,1447098707 +106102,48516,undercover cop,1447098674 +106102,48780,Christian Bale,1443145317 +106102,48780,Christopher Nolan,1443145342 +106102,48780,dark,1443145320 +106102,48780,Hugh Jackman,1443145324 +106102,48780,mystery,1443145365 +106102,48780,Nicola Tesla,1443145351 +106102,48780,nonlinear,1443145331 +106102,48780,psychological,1443145337 +106102,48780,revenge,1443145328 +106102,48780,twist ending,1443145315 +106102,51662,action,1443402991 +106102,51662,artistic,1443403002 +106102,51662,atmospheric,1443402998 +106102,51662,Nudity (Topless),1443402995 +106102,51662,stylized,1443402987 +106102,51662,war,1443403019 +106102,52319,Alternate History,1443146992 +106102,52319,Brad Pitt,1443146997 +106102,53129,serial killer,1449041689 +106102,53972,action packed,1449086859 +106102,53972,bruce willis,1449086857 +106102,53972,unrealistic,1449086865 +106102,54372,murder mystery,1448279762 +106102,55721,social commentary,1448470250 +106102,55721,special police forces,1448470250 +106102,55721,urban violence,1448470250 +106102,55721,Wagner Moura,1448470279 +106102,55820,great acting,1443144181 +106102,55820,over-rated,1443144219 +106102,55820,serial killer,1443144184 +106102,55820,thriller,1443144197 +106102,55820,violent,1443144179 +106102,59369,action,1443144489 +106102,59369,predictable,1443144514 +106102,59369,revenge,1443144506 +106102,59369,thriller,1443144495 +106102,59369,unrealistic,1443144483 +106102,59784,comedy,1446582783 +106102,59784,Kung Fu,1446582794 +106102,60040,Edward Norton,1449138362 +106102,60074,anti-hero,1449138266 +106102,60074,bad ending,1449138279 +106102,60074,Will Smith,1449138263 +106102,68157,Adolf Hitler,1443147113 +106102,68157,alternate history,1443147110 +106102,68157,black comedy,1443147125 +106102,68157,Brad Pitt,1443147101 +106102,68157,dark comedy,1443147103 +106102,68157,great acting,1443147136 +106102,68157,Quentin Tarantino,1443147099 +106102,68157,revenge,1443147118 +106102,68157,visually appealing,1443147107 +106102,68259,Drama,1443149086 +106102,68259,Story,1443149083 +106102,68259,Suspense,1443149085 +106102,69122,absurd,1449138731 +106102,69122,comedy,1449138723 +106102,69122,funny,1449138724 +106102,69122,Nudity (Topless),1449138728 +106102,69122,Zach Galifianakis,1449138726 +106102,71033,beautiful,1448045065 +106102,71033,cinematography,1448045067 +106102,71033,excellent acting,1448045060 +106102,71033,excellent script,1448045048 +106102,71033,revenge,1448045048 +106102,71033,Ricardo Darin,1448045055 +106102,71033,romance,1448045056 +106102,71460,Aayesha Takia,1443149243 +106102,71460,Action,1443149251 +106102,71460,Mahesh Manjrekar,1443149245 +106102,71460,Prakash Raj,1443149247 +106102,71460,undercover police,1443149249 +106102,71688,Imtiaz Ali,1443524572 +106102,71688,kareena kapoor,1443524607 +106102,71688,Music,1443524607 +106102,71688,Sentimental,1443524648 +106102,71688,shahid kapoor,1443524591 +106102,73051,Abhishek Bachchan,1443149676 +106102,73051,business,1443149664 +106102,73051,Mani Ratnam,1443149688 +106102,73051,rags to riches,1443149667 +106102,73513,Ashutosh Gowariker,1443146653 +106102,73513,Drama,1443146654 +106102,73513,Message,1443146655 +106102,73513,Shahrukh Khan,1443146651 +106102,73513,Social Commentary,1443146649 +106102,74458,atmospheric,1447098859 +106102,74458,Leonardo DiCaprio,1447098846 +106102,74458,Martin Scorsese,1447098857 +106102,74458,mindfuck,1447098862 +106102,74458,plot twist,1447098855 +106102,74458,psychological,1447098842 +106102,74458,Psychological Thriller,1447098881 +106102,74458,twist ending,1447098844 +106102,79132,alternate reality,1443146012 +106102,79132,Christopher Nolan,1443146030 +106102,79132,clever,1443146042 +106102,79132,complicated,1443146028 +106102,79132,intellectual,1443146057 +106102,79132,Leonardo DiCaprio,1443146022 +106102,79132,mindfuck,1443146026 +106102,79132,multiple interpretations,1443146050 +106102,79132,surreal,1443146017 +106102,79132,suspense,1443146046 +106102,79132,twist ending,1443146038 +106102,79132,visually appealing,1443146014 +106102,79769,Ajay Devgan,1443149781 +106102,79769,Drama,1443149797 +106102,79769,Manoj Bajpai,1443149788 +106102,79769,Nana Patekar,1443149786 +106102,79769,Politics,1443149800 +106102,79769,Prakash Jha,1443149784 +106102,80463,business,1443144893 +106102,80463,computers,1443144878 +106102,80463,unreal,1443144908 +106102,80777,Emotional,1443149930 +106102,80777,Salman Khan,1443149928 +106102,80777,True Love,1443149929 +106102,81591,atmospheric,1447098735 +106102,81591,dark,1447098737 +106102,81591,lesbian,1447098794 +106102,81591,mental illness,1447098762 +106102,81591,Natalie Portman,1447098731 +106102,81591,obsession,1447098792 +106102,81591,Oscar (Best Actress),1447098755 +106102,81591,psychological,1447098733 +106102,81591,surreal,1447098744 +106102,81788,jailbreak,1446056716 +106102,81932,Christian Bale,1443148187 +106102,81932,Mark Wahlberg,1443148190 +106102,81932,true story,1443148195 +106102,82980,Akshay Kumar,1443149392 +106102,82980,Comedy,1443149388 +106102,82980,David Dhawan,1443149390 +106102,82980,Kadar Khan,1443149380 +106102,82980,Priyanka Chopra,1443149369 +106102,82980,Rajpal Yadav,1443149397 +106102,82980,Salman Khan,1443149393 +106102,83424,Aamir Khan,1443149164 +106102,83424,Action,1443149147 +106102,83424,Sentimental,1443149136 +106102,83424,True Love,1443149169 +106102,84152,Bradley Cooper,1443648262 +106102,84152,concept,1443648279 +106102,84152,human potential,1443648269 +106102,84152,transhumanism,1443648256 +106102,84152,visually appealing,1443648247 +106102,84392,legal,1446056558 +106102,84392,Matthew McConaughey,1446056559 +106102,85414,intelligent,1443648354 +106102,85414,interesting,1443648349 +106102,85414,Jake Gyllenhaal,1443648358 +106102,85414,mindfuck,1443648362 +106102,85414,parallel universe,1443648339 +106102,85414,time travel,1443648341 +106102,86781,nonlinear,1444115639 +106102,86781,Unexpected Ending,1444115616 +106102,87222,kung fu,1446582814 +106102,87869,actually funny,1449138828 +106102,87869,black comedy,1449138830 +106102,87869,Jennifer Aniston,1449138827 +106102,88069,Comedy,1443150469 +106102,88069,Imran Khan,1443150445 +106102,88069,Story,1443150466 +106102,88069,Suspense,1443150468 +106102,88129,atmospheric,1448833345 +106102,88129,crime,1448833394 +106102,88129,Ryan Gosling,1448833351 +106102,88129,stylized,1448833366 +106102,89492,based on a true story,1443144844 +106102,89492,Brad Pitt,1443144828 +106102,89492,Entertaining,1443144850 +106102,89492,great acting,1443144834 +106102,89492,math,1443144824 +106102,89492,Realistic,1443144826 +106102,90439,business,1446063624 +106102,90600,Aksel Hennie,1448549535 +106102,90600,conspiracy,1448549520 +106102,90600,man on the run,1448549523 +106102,91241,action,1443150149 +106102,91241,Ajay Devgan,1443150140 +106102,91241,Corruption,1443150161 +106102,91241,Police,1443150157 +106102,93921,Akshay Kumar,1443149900 +106102,93921,Comedy,1443149898 +106102,93921,John Abraham,1443149903 +106102,93921,Mistaken Identity,1443149906 +106102,93921,Riteish Deshmukh,1443149901 +106102,93921,Sajid Khan,1443149905 +106102,94278,comedy,1443144639 +106102,94278,nudity (topless),1443144633 +106102,94663,Annu Kapoor,1443146140 +106102,94663,comedy,1443146108 +106102,94663,Coming of the age,1443146141 +106102,94663,Drama,1443146138 +106102,94663,good theme,1443146111 +106102,96829,drama,1448122923 +106102,96829,excellent acting,1448122947 +106102,96829,Mads Mikkelsen,1448122898 +106102,96829,painful to watch,1448122940 +106102,96829,Thomas Vinterberg,1448122924 +106102,97042,Arjun Kapoor,1443149306 +106102,97042,Drama,1443149304 +106102,97042,Parineeti Chopra,1443149303 +106102,97042,Story,1443149308 +106102,97304,Ben Affleck,1443699007 +106102,97304,Political Thriller,1443699001 +106102,97304,True story,1443698994 +106102,98198,based on a play,1443146734 +106102,98198,Paresh Rawal,1443146759 +106102,98198,religion,1443146946 +106102,98198,Screenplay,1443146760 +106102,98198,story,1443146736 +106102,98198,superb acting,1443146733 +106102,99114,drama,1443148393 +106102,99114,Great performances,1443148388 +106102,99114,Leonardo DiCaprio,1443148372 +106102,99114,Quentin Tarantino,1443148369 +106102,99114,Revenge,1443148414 +106102,99114,Samuel L. Jackson,1443148383 +106102,99114,Spaghetti Western,1443148404 +106102,99114,too long,1443148397 +106102,99114,western,1443148377 +106102,100336,Drama,1443150959 +106102,100336,growing up,1443150934 +106102,100336,Ronit Roy,1443150960 +106102,100336,Story,1443150951 +106102,100336,Vikramaditya Motwane,1443150940 +106102,103641,Action,1443151200 +106102,103641,National Security,1443151228 +106102,103641,Nikhil Advani,1443151178 +106102,103641,Rishi Kapoor,1443151224 +106102,103641,Story,1443151217 +106102,104879,absorbing,1446850986 +106102,104879,acting,1446850979 +106102,104879,atmospheric,1446850989 +106102,104879,Denis Villeneuve,1446851012 +106102,104879,great ending,1446850991 +106102,104879,Hugh Jackman,1446850982 +106102,104879,Jake Gyllenhaal,1446850980 +106102,104879,thriller,1446850984 +106102,104913,attitude,1443145002 +106102,104913,based on a true story,1443144923 +106102,104913,competition,1443144989 +106102,104913,interesting characters,1443144928 +106102,105213,Joseph Gordon-Levitt,1451854802 +106102,105213,pornography,1451854815 +106102,105213,relationships,1451854814 +106102,105213,Scarlett Johansson,1451854803 +106102,106100,Matthew McConaughey,1446933009 +106102,106100,realism,1446933038 +106102,106100,social commentary,1446933011 +106102,106100,true story,1446933024 +106102,106782,Funny,1443146968 +106102,106782,Leonardo DiCaprio,1443146919 +106102,106782,Martin Scorsese,1443146957 +106102,106782,Nudity (Full Frontal),1443146953 +106102,106782,true story,1443146961 +106102,106782,visually appealing,1443146965 +106102,106782,Wall Street,1443146973 +106102,108514,cheesy,1443150632 +106102,108514,fun,1443150630 +106102,108514,musical,1443150619 +106102,108514,predictable,1443150616 +106102,108514,Story,1443150639 +106102,109093,action,1443150220 +106102,109093,Atmospheric,1443150240 +106102,109093,Boman Irani,1443150218 +106102,109093,Farhan Akhtar,1443150215 +106102,109093,Shahrukh Khan,1443150216 +106102,109093,Story,1443150221 +106102,109093,Thriller,1443150207 +106102,111781,Action,1449086830 +106102,112183,alter ego,1443147229 +106102,112183,dark,1443147213 +106102,112183,Edward Norton,1443147192 +106102,112183,great performances,1443147183 +106102,112183,pretentious,1443147220 +106102,112183,satire,1443147205 +106102,112183,single shot,1443147197 +106102,112183,surreal,1443147210 +106102,112501,Kundan Shah,1443150657 +106102,112501,meaningful,1443150661 +106102,112501,Realistic,1443150677 +106102,112501,ShahRukh Khan,1443150664 +106102,112594,Comedy,1443149110 +106102,112594,mistaken identity,1443149099 +106102,112594,ShahRukh Khan,1443149102 +106102,112905,acting,1443144733 +106102,112905,direction,1443144731 +106102,112905,story,1443144723 +106102,112905,unreal,1443144744 +106102,112907,drama,1443149628 +106102,112907,Musical,1443149652 +106102,112907,Riteish Deshmukh,1443149619 +106102,112907,Serial Killer,1443149616 +106102,112907,shraddha kapoor,1443149623 +106102,112907,Sidharth Malhotra,1443149621 +106102,112907,Story,1443149639 +106102,113741,intelligent,1448279726 +106102,113741,mind bending,1448279723 +106102,113741,mystery,1448279724 +106102,113741,parallel universe,1448279723 +106102,113741,psychothriller,1448279729 +106102,114935,mindfuck,1443146367 +106102,114935,science fiction,1443648307 +106102,114935,thriller,1443648312 +106102,114935,time travel,1443146365 +106102,114935,twist ending,1443146370 +106102,115569,Character Development,1446823774 +106102,115569,dark,1446823727 +106102,115569,gripping,1446823734 +106102,115569,Jake Gyllenhaal,1446823729 +106102,115569,sociopath,1446823732 +106102,115569,thriller,1446823746 +106102,115569,transformative performance,1446823767 +106102,115973,Bold,1443150040 +106102,115973,Drama,1443150041 +106102,115973,Great Acting,1443150038 +106102,115973,Irrfan Khan,1443149998 +106102,115973,Kay Kay Menon,1443150035 +106102,115973,Shahid Kapoor,1443150028 +106102,115973,Shakespeare,1443149964 +106102,115973,Shraddha Kapoor,1443150031 +106102,115973,Story,1443150037 +106102,115973,Tabu,1443150030 +106102,115973,Vishal Bhardwaj,1443149962 +106102,116797,Alan Turing,1443147273 +106102,116797,Benedict Cumberbatch,1443147268 +106102,116797,code breaking,1443147285 +106102,116797,Computers,1443147279 +106102,116797,cryptography,1443147323 +106102,116797,hisorically inaccurate,1443147291 +106102,116797,Keira Knightley,1443147318 +106102,117310,Mohit Suri,1443150579 +106102,117310,Musical,1443150650 +106102,117310,romance,1443150582 +106102,117310,shraddha kapoor,1443150584 +106102,117310,True Love,1443150590 +106102,117838,Nonlinear Screenplay,1446056509 +106102,120138,Aamir Khan,1443151446 +106102,120138,Anushka Sharma,1443151467 +106102,120138,Boman Irani,1443151481 +106102,120138,Comedy,1443151456 +106102,120138,Rajkumar Hirani,1443151450 +106102,120138,religious intolerance,1443151454 +106102,120311,Family,1443148613 +106102,120311,Investigation,1443148607 +106102,120311,Jeethu Joseph,1443148557 +106102,120311,Mohanlal,1443148604 +106102,120311,Murder,1443148606 +106102,120311,Psychological,1443148609 +106102,120311,Suspense,1443148611 +106102,120311,Thriller,1443148614 +106102,121133,Aamir Khan,1443149339 +106102,121133,Ajay Devgan,1443149335 +106102,121133,Comedy,1443149338 +106102,121133,Juhi Chawla,1443149341 +106102,128878,Mahesh Babu,1443145626 +106102,128878,Story,1443145644 +106102,128878,Sukumar,1443145615 +106102,128878,suspense,1443145646 +106102,128878,Thriller,1443145647 +106102,129739,documentary,1444076316 +106102,129739,inspirational,1444076328 +106102,129739,Lukasz Palkowski,1444076309 +106102,129739,medicine,1444076323 +106102,129739,Tomasz Kot,1444076311 +106102,129788,Abhay Deol,1443151065 +106102,129788,Anand L Rai,1443151127 +106102,129788,Atmospheric,1443150868 +106102,129788,Comedy,1443151131 +106102,129788,Dhanush,1443151130 +106102,129788,Drama,1443151132 +106102,129788,Mohammed Zeeshan Ayyub,1443151140 +106102,129788,Musical,1443150834 +106102,129788,Romance,1443151122 +106102,129788,Sonam Kapoor,1443151135 +106102,129788,Story,1443150827 +106102,129788,Swara Bhaskar,1443151138 +106102,129788,True Love,1443151128 +106102,130618,Action,1443666862 +106102,130618,Akshay Kumar,1443666841 +106102,130618,Atmospheric,1443666832 +106102,130618,Intelligence,1443666845 +106102,130618,National Security,1443666812 +106102,130618,Neeraj Pandey,1443666843 +106102,130618,Thriller,1443666868 +106102,132456,Arshad Warsi,1443146716 +106102,132456,Comedy,1443146717 +106102,132456,Message,1443146719 +106102,132456,Rajkumar Hirani,1443146713 +106102,132456,Sanjay Dutt,1443146714 +106102,132456,Social Commentary,1443146721 +106102,133229,acting,1443144539 +106102,133229,award winning,1443144532 +106102,133229,direction,1443144547 +106102,133229,indian legal system,1443144528 +106102,133229,realistic,1443047397 +106102,133229,social commentary,1443047403 +106102,133389,Drama,1443146325 +106102,133389,excellent actors,1443146305 +106102,133389,Shoojit Sircar,1443146332 +106102,133697,acting,1443145126 +106102,133697,anurag kashyap,1443145135 +106102,133697,direction,1443145125 +106102,133697,Politics,1443145153 +106102,133697,story,1443145143 +106102,133697,Suspense,1443145163 +106102,133699,Anurag Kashyap,1443147590 +106102,133699,crime,1443147593 +106102,133699,drama,1443147595 +106102,133699,noir,1443147596 +106102,133699,real,1443147598 +106102,133769,Akshay Kumar,1443145681 +106102,133769,Comedy,1443145677 +106102,133769,Paresh Rawal,1443145679 +106102,133769,Priyadarshan,1443145684 +106102,134130,based on book,1452089138 +106102,134130,mars,1452089130 +106102,134130,matt damon,1452089128 +106102,134130,realistic,1452089139 +106102,134130,sci-fi,1452089124 +106102,134130,scientific,1452089132 +106102,134130,Space,1452089122 +106102,134130,space travel,1452089134 +106102,134130,Survival Instinct,1452089126 +106102,134178,Dibakar Banerjee,1443151883 +106102,134178,Story,1443151890 +106102,134178,Sushant Singh Rajput,1443151861 +106102,134178,suspense,1443151888 +106102,134178,Swastika Mukherjee,1443151851 +106102,134182,A.R. Murugadoss,1443151311 +106102,134182,Action,1443151304 +106102,134182,Akshay Kumar,1443151309 +106102,134182,Atmospheric,1443666958 +106102,134182,Intelligence,1443666956 +106102,134182,National Security,1443151306 +106102,134182,Thriller,1443151307 +106102,134777,Katrina Kaif,1443150310 +106102,134777,romance,1443150279 +106102,134777,shahrukh khan,1443150284 +106102,134777,True Love,1443150306 +106102,134777,yash chopra,1443150286 +106102,134853,beautiful,1447411150 +106102,134853,childhood,1447411122 +106102,134853,coming of age,1447411126 +106102,134853,creative,1447411129 +106102,134853,imaginative,1447411135 +106102,134853,Pixar,1447411111 +106102,134853,psychology,1447411114 +106102,134867,Anand L Rai,1443151003 +106102,134867,Fun,1443151015 +106102,134867,Jimmy Shergil,1443151025 +106102,134867,kangana Ranaut,1443151002 +106102,134867,Mahavan,1443151006 +106102,134867,Romedy,1443151005 +106102,135204,Alternate History,1443146293 +106102,135204,Drama,1443146298 +106102,135204,Intelligence,1443146296 +106102,135204,National Security,1443146294 +106102,135204,Screenplay,1443146204 +106102,135204,Shoojit Sircar,1443146291 +106102,135500,Action,1443150096 +106102,135500,Akshay Kumar,1443150069 +106102,135500,Shruti Hassan,1443150098 +106102,135500,Story,1443150094 +106102,135500,Vigilante,1443150113 +106102,135601,Aditi Rao Hyadri,1443151346 +106102,135601,Imtiaz Ali,1443151417 +106102,135601,Love,1443151427 +106102,135601,Musical,1443151415 +106102,135601,Nargis Fakhri,1443151421 +106102,135601,Ranbir Kapoor,1443151419 +106102,135601,Reltionships,1443151409 +106102,135601,Story,1443151423 +106102,135765,Cinematography,1448914398 +106102,135765,Jaideep Ahlawat,1448914300 +106102,135765,Kamal Hassan,1448914302 +106102,135765,Rahul Bose,1448914256 +106102,135765,Spy,1448914328 +106102,135765,Storyline,1448914411 +106102,135765,Terrorism,1448914315 +106102,135765,Thriller,1448914320 +106102,135769,Amrish Puri,1443151587 +106102,135769,Comedy,1443151792 +106102,135769,Johnny Lever,1443151582 +106102,135769,Mistaken Identity,1443151789 +106102,135769,Shahrukh Khan,1443151794 +106102,135769,Story,1443151796 +106102,135829,Action,1443149701 +106102,135829,Con,1443149729 +106102,135829,Hrithik Roshan,1443149733 +106102,135829,Story,1443149731 +106102,135839,based on true story,1454023409 +106102,135839,courtroom drama,1454023412 +106102,135839,Great Acting,1454023474 +106102,135839,Great Direction,1454023476 +106102,135839,Judiciary,1454023480 +106102,135839,Sensitive,1454023482 +106102,135839,Surreal,1454023470 +106102,136491,Acting,1443151533 +106102,136491,Arshad Warsi,1443151531 +106102,136491,Bold,1443151537 +106102,136491,Naseeruddin Shah,1443151532 +106102,136491,Story,1443151535 +106102,136491,Vidya Balan,1443151529 +106102,136497,Anupam Kher,1443145256 +106102,136497,Boman Irani,1443145254 +106102,136497,Direction,1443145257 +106102,136497,Social Commentary,1443145259 +106102,136497,Story,1443145252 +106102,137112,Ajay Devgan,1443149025 +106102,137112,Atmospheric,1443149023 +106102,137112,Dialogues,1443149032 +106102,137112,Emraan Hashmi,1443149040 +106102,137112,Gangster,1443149027 +106102,137112,Milan Luthria,1443149022 +106102,137112,Organised Crime,1443149031 +106102,139205,Anand L Rai,1443146537 +106102,139205,Kangana Ranaut,1443146527 +106102,139205,romedy,1443146516 +106102,139575,animation,1443147501 +106102,139575,Cinematography,1451494699 +106102,139575,Entertainment,1451494722 +106102,139575,Grand,1451494721 +106102,139575,indian mythology,1443147499 +106102,139575,Path-breaking,1443147547 +106102,139575,S. S. Rajamouli,1443147520 +106102,139644,atmospheric,1451848844 +106102,139644,benicio del toro,1451848817 +106102,139644,cinematograpy:roger deakins,1451848822 +106102,139644,Denis Villneuve,1451848865 +106102,139644,emily blunt,1451848818 +106102,139644,tension,1451848844 +106102,140325,Drama,1443147483 +106102,140325,Friendship,1443147436 +106102,140325,Great Acting,1443147479 +106102,140325,Suspense,1443147476 +106102,140325,Thriller,1443147488 +106102,140715,true story,1443148272 +106102,140938,Kamal Hassan,1447096777 +106102,141058,acting,1443150365 +106102,141058,Great Acting,1443150358 +106102,141058,Nawazuddin Siddiqui,1443150352 +106102,141058,Optimistic,1443150359 +106102,141058,True story,1443150354 +106102,141060,Great Direction,1453063525 +106102,141060,Neeraj Ghaywan,1453063504 +106102,141060,Richa Chadda,1453063484 +106102,141060,Sanjay Mishra,1453063491 +106102,141060,Story,1453063529 +106102,141060,Surreal,1453063578 +106102,141060,Vicky Kaushal,1453063470 +106102,141120,Akshay Kumar,1443150523 +106102,141120,Brother Relationship,1443150553 +106102,141120,Karan Malhotra,1443150556 +106102,141120,Sidharth Malhotra,1443150559 +106102,141120,Story,1443150566 +106102,141636,acting,1443148751 +106102,141636,kamal haasan,1443148748 +106102,141636,plot,1443148750 +106102,141636,screenplay,1443148753 +106102,141636,thriller,1443148755 +106102,142677,Direction,1453673074 +106102,142677,Great Acting,1453673081 +106102,142677,Ranveer Singh,1453673077 +106102,142677,Sonakshi Sinha,1453673079 +106102,142817,Ajay devgan,1443147720 +106102,142817,Crime,1443147722 +106102,142817,Nana Patekar,1443147719 +106102,142817,Prakash Jha,1443147726 +106102,142817,Social Commentary,1443147724 +106102,142819,Comedy,1443147583 +106102,142819,Drama,1443147572 +106102,142819,Friendship,1443147581 +106102,142819,Nazriya Nazim,1443147578 +106102,142821,Drama,1443147371 +106102,142821,Nazriya Nazim,1443147369 +106102,142821,Romance,1449139248 +106102,142821,Story,1443147370 +106102,142821,True Love,1443147373 +106102,142823,Abbas Mastan,1443146829 +106102,142823,Shahrukh Khan,1443146807 +106102,142823,Story,1443146832 +106102,142825,Drama,1443146436 +106102,142825,Naseeruddin Shah,1443146431 +106102,142825,Om puri,1443146409 +106102,142825,Shabana Azmi,1443146432 +106102,142825,Social Commentary,1443146423 +106102,142827,Drama,1443146504 +106102,142827,Madhavan,1449139287 +106102,142827,Mani Ratnam,1443146500 +106102,142827,Relationship,1443146505 +106102,142827,Social Commentary,1443146502 +106102,142827,Surreal,1449139285 +106102,142829,Based on a true story,1443145964 +106102,142829,Coming of the age,1443145988 +106102,142829,Drama,1443145986 +106102,142829,Emraan Hashmi,1443146006 +106102,142829,Vidya Balan,1443145981 +106102,142831,Akshay Kumar,1443145944 +106102,142831,Comedy,1443145945 +106102,142831,Priyadarshan,1443145942 +106102,142833,Comedy,1443145911 +106102,142833,Paresh Rawal,1443145915 +106102,142833,Priyadarshan,1443145913 +106102,142833,Rajpal Yadav,1443145916 +106102,142835,Comedy,1443145863 +106102,142835,David Dhawan,1443145864 +106102,142835,Govinda,1443145858 +106102,142835,Hilarious,1449139078 +106102,142835,Johny Lever,1443145861 +106102,142835,Kadar Khan,1443145860 +106102,142837,Akshay Kumar,1443145306 +106102,142837,Comedy,1443145304 +106102,142837,Kadar Khan,1443145307 +106102,142839,Acting,1443145450 +106102,142839,Direction,1443145453 +106102,142839,Drama,1443145494 +106102,142839,Father Son Relationship,1443145449 +106102,142839,Suriya Sivakumar,1449139108 +106102,142839,Surreal,1449139183 +106102,142841,Anushka Shetty,1443145789 +106102,142841,Drama,1443145796 +106102,142841,Ensemble cast,1443145771 +106102,142841,Great Direction,1449139236 +106102,142841,Social Commentary,1443145795 +106102,142841,Story,1449139236 +106102,146134,Comedy,1448786608 +106102,146134,Corruption,1448786636 +106102,146134,India,1448786657 +106102,146134,Naseeruddin Shah,1448786600 +106102,146134,Om Puri,1448786603 +106102,146134,Pankaj Kapur,1448786573 +106102,146134,Satish Kaushik,1448786605 +106102,146134,Sattire,1448786611 +106102,146134,Social Commentary,1448786656 +106102,146632,Madhavan,1447117706 +106102,146632,Mani Ratnam,1447117703 +106102,146632,Meera Jasmine,1447118024 +106102,146632,Multiple Storylines,1447117988 +106102,146632,Political Drama,1447117999 +106102,146732,Bobby Simha,1447330587 +106102,146732,Great Acting,1447329880 +106102,146732,Kartik Subbaraj,1447329784 +106102,146732,Siddharth,1447329811 +106102,146732,Social Commentary,1447329857 +106102,146732,Suspense,1447329886 +106102,146732,Thriller,1447329829 +106102,147940,Deepika Padukone,1448742489 +106102,147940,Drama,1448742495 +106102,147940,Imtiaz Ali,1449411582 +106102,147940,Ranbir Kapoor,1448742489 +106102,147940,Social Commentary,1449411584 +106102,147940,Thought Provoking,1448742535 +106102,148058,Atmospheric,1453922504 +106102,148058,Great Acting,1453922498 +106102,148058,Great Direction,1453922500 +106102,148058,Mystery,1453922507 +106102,148058,Real Incident,1453922511 +106102,148058,Story,1453922503 +106102,148095,Alphonse Putharen,1449081524 +106102,148095,Atmospheric,1449081523 +106102,148095,Comedy,1449081523 +106102,148095,Cute,1449081164 +106102,148095,Entertaining,1449081165 +106102,148095,Great Acting,1449081524 +106102,148095,Great Direction,1449081524 +106102,148095,Heart Warming,1449081528 +106102,148095,Madonna Sebastian,1449081524 +106102,148095,Music,1449081524 +106102,148095,Nivin Pauly,1449081508 +106102,148095,Romace,1449081167 +106102,148095,Sai Pallavi,1449081524 +106102,150342,Amitabh Bachchan,1452281166 +106102,150342,Farhan Akhtar,1452281168 +106102,150342,Predictable,1452281183 +106102,150342,Screenplay,1452281194 +106102,150342,Thriller,1452281203 +106102,151459,akshay kumar,1453579226 +106102,151459,Surreal,1453579250 +106124,5637,Nudity (Topless),1165261624 +106125,912,bogart,1204638354 +106125,1097,alien,1204638529 +106125,1097,space ship,1204638529 +106125,1097,Spielberg,1204638529 +106125,46723,biblical,1204638628 +106125,46723,brilliant,1204638628 +106125,46723,must-see,1204638628 +106143,50,Kevin Spacey,1245223008 +106143,50,organized crime,1245223017 +106143,50,twist ending,1245223013 +106143,3993,Geoffrey Rush,1245221413 +106143,3993,Joaquin Phoenix,1245221413 +106143,3993,Kate Winslet,1245221285 +106143,3993,marquis de Sade,1245221413 +106143,3993,Michael Caine,1245221287 +106143,3993,Nudity (Topless - Notable),1245221292 +106143,4164,Samuel L. Jackson,1245221671 +106143,5329,enigmatic,1245221191 +106143,5329,stylized,1245221186 +106143,5329,tense,1245221184 +106143,31150,Cartoons for Big Kids,1245465927 +106143,36401,Adventure,1245221445 +106143,36401,fairy tale,1245221442 +106143,36401,Fantasy,1245221449 +106143,36401,funny,1245221561 +106143,36401,Heath Ledger,1245221561 +106143,36401,low budget,1245221560 +106143,40966,based on a play,1245221656 +106143,40966,Biography,1245221660 +106143,40966,depravity,1245221726 +106143,40966,freedom of expression,1245221726 +106143,40966,johnny depp,1245221653 +106143,48780,nonlinear,1245227037 +106143,48780,twist ending,1245227033 +106149,1292,loner,1257223718 +106149,4680,great acting,1257662056 +106149,4680,outlandish,1257662088 +106165,2329,edward norton,1445239136 +106165,2329,powerful ending,1445239153 +106165,2329,rape,1445239146 +106165,2329,stylized,1445239171 +106165,2329,thought-provoking,1445239138 +106165,4995,schizophrenia,1447098302 +106165,44665,twist ending,1446390165 +106182,1977,A visual poem,1155675568 +106182,3331,Notable Nudity,1155678574 +106217,55444,joy division,1217728133 +106225,260,good vs evil,1439796885 +106225,260,Science Fiction,1439796912 +106225,778,British,1439797447 +106225,778,drug abuse,1439797464 +106225,778,drugs,1439797459 +106225,778,heroin,1439797479 +106225,2278,crime,1439798549 +106225,2278,spy thriller,1439798540 +106225,2329,Nazis,1439797833 +106225,2329,Neo-Nazis,1439797828 +106225,2329,racism,1439797824 +106225,3949,drugs,1439797398 +106225,4223,sniper,1439798724 +106225,4223,snipers,1439798722 +106225,4223,War,1439798713 +106225,4223,World War II,1439798731 +106225,4262,cocaine,1439797918 +106225,4262,drug abuse,1439797905 +106225,4262,drugs,1439797902 +106225,4262,gangster,1439797927 +106225,4262,mafia,1439797939 +106225,4262,organized crime,1439797910 +106225,4816,ben stiller,1439799335 +106225,4901,cia,1439798583 +106225,4901,espionage,1439798575 +106225,4901,spies,1439798601 +106225,4901,spy,1439798599 +106225,5010,War,1439797622 +106225,30707,boxing,1439797779 +106225,30707,drama,1439797782 +106225,30707,sports,1439797775 +106225,44199,bank robbery,1439798010 +106225,44199,heist,1439798005 +106225,44199,twist ending,1439798036 +106225,48394,Spanish,1439797267 +106225,55765,drugs,1439798829 +106225,55765,heroin,1439798823 +106225,55765,mafia,1439798816 +106225,55765,organized crime,1439798835 +106225,55765,smuggling,1439798846 +106225,68159,political corruption,1439798674 +106225,80463,based on a true story,1439798450 +106225,80463,based on true story,1439798448 +106225,80463,computers,1439798412 +106225,80463,Justin Timberlake,1439798424 +106225,80463,nerds,1439798458 +106227,593,intelligent dialogue,1429812442 +106227,593,psychological horror,1429812442 +106227,593,symbolism,1429812442 +106257,71902,Toyboy,1305078342 +106266,29,beautiful,1139767943 +106266,1175,comedy,1139767973 +106266,1230,new york,1139767583 +106266,1441,romantic comedy,1139767157 +106266,1464,art house,1139767856 +106266,2021,ok,1139767879 +106266,2076,scary,1139767815 +106266,2078,classic,1139767674 +106266,2081,childhood,1139767458 +106266,2160,scary,1139767557 +106266,2313,sad,1139767755 +106266,2761,kids,1139767272 +106266,2761,robot,1139767272 +106266,2966,un-lynch,1139767779 +106266,3676,dark,1139767840 +106266,4370,sad,1139767501 +106266,4848,art house,1139767797 +106266,4973,quirky,1139767933 +106266,5498,Japan,1139766723 +106266,6377,Pixar,1139767445 +106266,7044,wild and fresh,1139767727 +106266,8014,buddhist,1139766786 +106266,26662,animation,1139766828 +106266,26662,neko,1139766828 +106266,40815,kids,1139766913 +106266,41997,Dramatic,1139766872 +106278,1682,dark comedy,1225264606 +106278,2078,Disney,1225264618 +106293,4741,hippies,1437918120 +106293,66811,classic,1437911441 +106293,66811,humorous,1437911441 +106293,66811,killinggänget,1437911441 +106293,103210,Alchemy,1437919347 +106293,103210,Anime,1437919328 +106293,103210,Brothers,1437919341 +106293,103210,Magic,1437919345 +106293,103210,Steampunk,1437919333 +106293,103210,Teenagers,1437919360 +106293,115149,Action,1437918204 +106293,115149,assassin,1437918198 +106293,115149,Hitman,1437918183 +106293,115149,Keanu Reeves,1437918188 +106293,115149,mafia,1437918222 +106293,115149,Michael Nyqvist,1437918211 +106293,115149,russian mafia,1437918218 +106293,115149,simple story,1437918228 +106293,118696,bad book adaptation,1437920201 +106293,118696,family fun,1437920213 +106293,118696,Peter Jackson face zoom in,1437920186 +106293,118696,silly,1437920206 +106293,118696,too american,1437920220 +106293,118696,unecessary romance arc,1437920249 +106293,123471,famliy,1437918026 +106293,123471,farm life,1437918080 +106293,123471,fertility problems,1437918050 +106293,123471,humour,1437918058 +106293,123471,low class citizens,1437918077 +106293,123471,relations,1437918063 +106293,123471,sweden,1437918083 +106295,260,good vs evil,1434497767 +106295,260,space adventure,1434497810 +106295,260,sword fight,1434497759 +106295,318,prison escape,1435992093 +106295,318,suicide,1435992093 +106295,318,wrongful imprisonment,1435992093 +106295,356,mentally impared character,1434497991 +106295,356,ping pong,1434497991 +106295,356,vietnam war,1434497991 +106295,480,cloning,1437053900 +106295,480,dinosaurs,1437053900 +106295,480,island,1437053900 +106295,593,cannibalism,1435297284 +106295,593,fbi,1435297284 +106295,593,serial killer,1435297284 +106295,1233,World War II,1435992938 +106295,99145,natural disaster,1434517308 +106295,99145,tsunami,1434517317 +106295,114246,dismemberment,1435297392 +106295,114246,kidnapping,1435297378 +106295,114662,Iraq,1434503030 +106295,114662,War,1434503002 +106295,135127,action,1434664480 +106295,135127,daughter,1434663992 +106295,135127,disaster,1434509096 +106295,135127,doctor,1434663974 +106295,135127,father,1434663981 +106295,135127,flood,1434664407 +106295,135127,infidelity,1434664003 +106295,135127,russia,1434509109 +106295,135127,subway,1434509104 +106295,135127,thriller,1434664336 +106295,135127,train,1434664400 +106295,135127,tunnel,1434664392 +106297,296,cult,1421951510 +106297,296,gangster,1421951510 +106297,296,irony,1421951510 +106297,593,adapted from:book,1427645126 +106297,593,crime,1427645126 +106297,593,psychothriller,1427645126 +106297,1230,funny,1379609727 +106297,1230,Woody Allen,1379609712 +106297,4973,beautifully filmed,1379609573 +106297,4973,idealism,1379609576 +106297,4973,notable soundtrack,1379609578 +106297,4973,quirky,1379609580 +106297,4973,surreal,1379609585 +106297,4973,whimsical,1379609592 +106297,5617,BDSM,1379609798 +106297,8638,bittersweet,1379609511 +106297,8638,dialogue,1379609458 +106297,8638,emotional,1379609450 +106297,8638,minimalist,1379609442 +106297,8638,philosophical,1379609477 +106297,8638,quirky,1379609487 +106297,8638,romantic,1379609490 +106297,8638,sequel,1379609493 +106297,34552,Bill Nighy,1379610039 +106297,34552,bold,1379610118 +106297,34552,conversations,1379610085 +106297,34552,dialogue,1379610085 +106297,34552,Kelly Macdonald,1379610125 +106297,34552,moving,1379610118 +106297,34552,overly simplistic,1379610071 +106297,34552,political,1379610046 +106297,34552,quirky,1379610118 +106297,34552,romance,1379610074 +106297,34552,simple,1379610085 +106297,46578,comedy,1379609664 +106297,46578,quirky,1379609658 +106297,46578,satire,1379609668 +106297,55280,delusion,1379609751 +106297,55280,mental illness,1379609779 +106297,55280,Ryan Gosling,1379609759 +106297,55280,small town,1379609767 +106297,55280,weird,1379609764 +106297,66665,unfunny,1379609626 +106297,112556,false accusation,1439122156 +106297,112556,meticulous,1439122150 +106297,112556,Psychopathy,1439122147 +106297,112556,unpredictable,1439122187 +106389,260,classic,1439766604 +106389,260,sci-fi,1439766597 +106412,3614,Nicolas Cage,1226083033 +106412,38499,Emma Thompson,1226357906 +106412,38499,Meryl Streep,1226357906 +106420,2020,Malkovich,1186603523 +106420,3752,comedy,1186603549 +106420,5618,Anime,1186603539 +106420,5679,japanese horror,1186603495 +106420,6934,cyberpunk,1186603505 +106446,5618,Miyazaki,1202766445 +106446,5971,Hayao Miyazaki,1202766421 +106446,5971,Studio Ghibli,1202766418 +106446,7099,Hayao Miyazaki,1202766480 +106446,7099,Studio Ghibli,1202766494 +106446,50872,pixar,1199426760 +106446,53129,serial killer,1199426814 +106446,63479,road trip,1253605437 +106446,63479,Seth Green,1253605428 +106446,70286,mech,1253605248 +106457,108979,cool style,1438722387 +106457,108979,good music,1438722387 +106457,108979,jazz,1438722387 +106504,4022,wilson,1436112775 +106504,73290,death,1438451243 +106504,73290,dog,1438451243 +106504,73290,sad,1438451243 +106504,81591,psychological,1435354522 +106504,86504,psychological,1436112675 +106504,86504,red coat,1436112675 +106504,86504,shocking,1436112675 +106504,96821,amazing soundtrack,1439493399 +106504,96821,character development,1439493393 +106504,97923,great acting,1437495576 +106504,97923,pilot,1437495579 +106504,97923,plane crash,1437495584 +106504,97923,psychological,1437495598 +106504,112552,jazz,1437169780 +106504,112552,music,1437169783 +106504,112552,psychological,1437169792 +106504,112552,Tense,1437169787 +106542,19,Jim Carrey,1452218169 +106542,19,silly fun,1452218175 +106542,95,John Woo,1452209036 +106542,111,cult film,1452210787 +106542,111,insanity,1452210773 +106542,111,mental illness,1452210762 +106542,111,psychology,1452210770 +106542,111,social commentary,1452210759 +106542,231,jim carrey,1452218233 +106542,231,silly,1452218237 +106542,288,controversial,1452210535 +106542,288,dark comedy,1452210525 +106542,288,satire,1452210531 +106542,288,serial killer,1452210521 +106542,288,stylized,1452210551 +106542,288,violence,1452210529 +106542,296,cult film,1452211008 +106542,296,dark comedy,1452211003 +106542,296,Quentin Tarantino,1452211001 +106542,296,quirky,1452211018 +106542,296,violence,1452211010 +106542,344,Jim Carrey,1452218211 +106542,344,silly fun,1452218215 +106542,457,action,1452219074 +106542,481,Juliette Lewis,1452210654 +106542,481,serial killer,1452210601 +106542,481,ultra-violence,1452210605 +106542,520,parody,1452211484 +106542,608,black comedy,1452211143 +106542,608,Coen Brothers,1452211139 +106542,608,dark comedy,1452211141 +106542,608,quirky,1452211146 +106542,1089,cult film,1452210966 +106542,1089,dark comedy,1452210969 +106542,1089,gangster,1452210980 +106542,1089,organized crime,1452210964 +106542,1089,Quentin Tarantino,1452210953 +106542,1089,quirky,1452210977 +106542,1089,stylized,1452210973 +106542,1089,violence,1452210962 +106542,1095,complexity,1452212214 +106542,1095,greed,1452212203 +106542,1095,irony,1452212222 +106542,1095,satire,1452212232 +106542,1127,James Cameron,1452209979 +106542,1127,sci-fi,1452209974 +106542,1129,deception,1452212429 +106542,1129,future,1452212394 +106542,1129,John Carpenter,1452212386 +106542,1129,Kurt Russell,1452212388 +106542,1129,revenge,1452212413 +106542,1129,violent,1452212403 +106542,1200,James Cameron,1452210123 +106542,1200,sci-fi,1452210114 +106542,1200,space,1452210116 +106542,1200,SPACE TRAVEL,1452210126 +106542,1206,controversial,1452210722 +106542,1206,cult film,1452210700 +106542,1206,future,1452210730 +106542,1206,irreverent,1452218638 +106542,1206,psychological,1452210718 +106542,1206,psychology,1452210698 +106542,1206,satire,1452210710 +106542,1206,social commentary,1452210706 +106542,1206,stanley kubrick,1452210691 +106542,1206,Surrealism,1452210714 +106542,1206,violent,1452210703 +106542,1213,dark comedy,1452210845 +106542,1213,gangsters,1452210892 +106542,1213,organized crime,1452210842 +106542,1213,violence,1452210847 +106542,1213,violent,1452210874 +106542,1214,claustrophobic,1452210094 +106542,1214,futuristic,1452210074 +106542,1214,sci-fi,1452210060 +106542,1214,science fiction,1452210080 +106542,1214,space,1452210064 +106542,1214,space travel,1452210069 +106542,1240,future,1452210154 +106542,1240,James Cameron,1452210156 +106542,1240,Sci-Fi,1452210146 +106542,1240,time travel,1452210149 +106542,1240,violent,1452210187 +106542,1245,Coen Brothers,1452211039 +106542,1245,dark comedy,1452211047 +106542,1245,gangsters,1452211051 +106542,1385,steven seagal,1452208970 +106542,1639,great dialogue,1452208666 +106542,1639,Kevin Smith,1452208647 +106542,1653,future,1452209800 +106542,1653,futuristic,1452209823 +106542,1653,intelligent,1452209810 +106542,1653,sci-fi,1452209790 +106542,1653,science fiction,1452209814 +106542,1653,social commentary,1452209826 +106542,1653,space travel,1452209806 +106542,1653,thought-provoking,1452209793 +106542,1732,black comedy,1452209304 +106542,1732,coen brothers,1452209295 +106542,1732,cult film,1452209301 +106542,1732,dark comedy,1452209298 +106542,1732,great dialogue,1452209315 +106542,1732,off-beat comedy,1452209320 +106542,1732,satirical,1452209309 +106542,2009,futuristic,1452210252 +106542,2291,cult film,1452209508 +106542,2291,dark,1452209516 +106542,2291,Gothic,1452209498 +106542,2291,surreal,1452209488 +106542,2296,SNL,1452218278 +106542,2502,cult film,1452209256 +106542,2502,dark comedy,1452209279 +106542,2502,off-beat comedy,1452209267 +106542,2502,quirky,1452209260 +106542,2502,satire,1452209249 +106542,2513,stephen king,1452210474 +106542,2517,cars,1452210320 +106542,2517,coming of age,1452210347 +106542,2517,Harry Dean Stanton,1452210435 +106542,2517,John Carpenter,1452210386 +106542,2517,stephen king,1452210369 +106542,2527,androids,1452210217 +106542,2527,sci-fi,1452210209 +106542,2528,futuristic,1452210230 +106542,2528,sci-fi,1452210227 +106542,2791,absurd,1452211536 +106542,2791,comedy,1452211544 +106542,2791,farce,1452211553 +106542,2791,Parody,1452211532 +106542,2791,spoof,1452211541 +106542,2857,beatles,1452208574 +106542,2857,surreal,1452209087 +106542,2857,The Beatles,1452209090 +106542,2959,dark comedy,1452208779 +106542,2959,mental illness,1452208795 +106542,2959,philosophical,1452208815 +106542,2959,philosophy,1452208786 +106542,2959,psychological,1452208818 +106542,2959,psychology,1452208774 +106542,2959,social commentary,1452208783 +106542,2959,surreal,1452208792 +106542,2959,thought-provoking,1452208799 +106542,2959,violent,1452208804 +106542,2985,corruption,1452212465 +106542,2985,sci-fi,1452212455 +106542,2985,social commentary,1452212458 +106542,2985,violence,1452212462 +106542,2985,violent,1452212475 +106542,3052,controversial,1452208730 +106542,3052,irreverent,1452208738 +106542,3052,Kevin Smith,1452208725 +106542,3052,satire,1452208717 +106542,3108,mental illness,1452209457 +106542,3108,Robin Williams,1452209469 +106542,3108,Terry Gilliam,1452209453 +106542,3362,black comedy,1452211174 +106542,3362,dark comedy,1452211171 +106542,3535,dark comedy,1452210573 +106542,3535,insanity,1452210568 +106542,3535,psychological,1452210575 +106542,3535,psychology,1452210565 +106542,3535,serial killer,1452210570 +106542,3535,violence,1452210579 +106542,3671,comedy,1452211581 +106542,3671,Mel Brooks,1452211571 +106542,3671,parody,1452211573 +106542,3671,satire,1452211575 +106542,3671,satirical,1452211578 +106542,3671,social commentary,1452211583 +106542,3702,cars,1452212343 +106542,3702,cult classic,1452212346 +106542,3702,future,1452212365 +106542,3702,post apocalyptic,1452212353 +106542,3702,violent,1452212340 +106542,3717,car chase,1452208905 +106542,3717,cars,1452208903 +106542,3852,off-beat comedy,1452208628 +106542,4009,character study,1452212127 +106542,4009,cruelty,1452212144 +106542,4009,hubris,1452212135 +106542,4009,Oliver Stone,1452212115 +106542,4009,revenge,1452212153 +106542,4122,tragic,1452209434 +106542,4239,based on a true story,1452218779 +106542,4239,Johnny Depp,1452218764 +106542,4247,David Spade,1452218257 +106542,4262,corruption,1452210933 +106542,4262,gangsters,1452210916 +106542,4262,mafia,1452210910 +106542,4262,organized crime,1452210908 +106542,4262,violence,1452210912 +106542,4262,violent,1452210923 +106542,4280,John Lithgow,1452218550 +106542,4280,meaning of life,1452218502 +106542,4369,cars,1452208888 +106542,4396,cars,1452211822 +106542,4557,biography,1452211925 +106542,4557,business failure,1452211915 +106542,4557,cars,1452211873 +106542,4557,conspiracy,1452211887 +106542,4557,historical,1452211941 +106542,5125,cars,1452211717 +106542,5125,Kurt Russell,1452211749 +106542,5369,william shatner,1452219566 +106542,5568,comedy,1452211380 +106542,5568,gangsters,1452211425 +106542,5568,guns,1452211413 +106542,5568,parody,1452211336 +106542,5568,prohibition,1452211349 +106542,5568,satire,1452211367 +106542,5568,spoof,1452211441 +106542,6440,Coen Brothers,1452209337 +106542,6440,Enigmatic,1452209340 +106542,6440,quirky,1452209345 +106542,7361,complicated,1452209579 +106542,7361,cult film,1452209570 +106542,7361,nonlinear,1452209552 +106542,7361,philosophy,1452209560 +106542,7361,psychology,1452209565 +106542,7361,quirky,1452209558 +106542,7361,surreal,1452209546 +106542,7361,thought-provoking,1452209548 +106542,41724,business corruption,1452211988 +106542,41724,greed,1452212001 +106542,41724,hubris,1452212034 +106542,41724,lies,1452212008 +106542,41724,oppression,1452212020 +106542,41724,reality,1452212058 +106542,44195,corruption,1452209207 +106542,44195,dark comedy,1452209195 +106542,44195,dark humor,1452209202 +106542,44195,independent film,1452209211 +106542,44195,satire,1452209193 +106542,44195,social commentary,1452209199 +106542,46848,cars,1452212291 +106542,46848,street race,1452212299 +106542,46974,9/11,1452218409 +106542,46974,Oliver Stone,1452218420 +106542,55820,Coen Brothers,1452211091 +106542,55820,dark,1452211094 +106542,55820,serial killer,1452211100 +106542,55820,violent,1452211098 +106542,68237,future,1452209748 +106542,68237,interesting,1452209764 +106542,68237,psychological,1452209752 +106542,68237,psychology,1452209738 +106542,68237,Sci-fi,1452209734 +106542,68237,space,1452209736 +106542,70286,intelligent,1452210012 +106542,70286,satire,1452210022 +106542,70286,sci-fi,1452210032 +106542,70286,social commentary,1452210001 +106542,70286,violence,1452210014 +106542,77966,cars,1452277650 +106542,85774,cars,1452279856 +106542,85774,true story,1452279859 +106542,104841,intense,1452209935 +106542,104841,sci-fi,1452209945 +106542,104841,science,1452209941 +106542,104841,space,1452209901 +106542,104913,cars,1452279889 +106542,104913,true story,1452279892 +106542,106782,Anti-Hero,1452218885 +106542,106782,corruption,1452218940 +106542,106782,economics,1452218895 +106542,106782,Excess,1452218927 +106542,106782,greed,1452218820 +106542,106782,Leonardo DiCaprio,1452218875 +106542,106782,provocative,1452218830 +106542,106782,Scams,1452218953 +106542,106782,true story,1452218815 +106542,106920,intelligent,1452209659 +106542,106920,meaning of life,1452209623 +106542,106920,philosophical,1452209616 +106542,106920,psychology,1452209614 +106542,106920,science fiction,1452209654 +106542,106920,thought-provoking,1452209619 +106542,109487,philosophical issues,1452209874 +106542,109487,sci-fi,1452209853 +106542,109487,science fiction,1452209870 +106542,109487,space,1452209850 +106542,109487,space travel,1452209878 +106542,109487,thought-provoking,1452209861 +106542,109487,time travel,1452209865 +106542,109487,time-travel,1452209857 +106542,115713,futuristic,1452209686 +106542,115713,philosophical,1452209679 +106542,115713,Psychological,1452209691 +106542,115713,sci-fi,1452209677 +106542,115713,thought provoking,1452209712 +106553,37733,intense,1139084238 +106554,260,jizz in my pants,1442267304 +106554,260,original trilogy,1442267282 +106565,8914,time travel,1144630991 +106565,33166,hollywood thinks it's socially conscious,1144633493 +106584,260,Han Solo joins a team,1438007094 +106584,260,"Princesses, dwarves... what more could you ask for",1438007190 +106584,116797,alan turing,1438606719 +106584,116797,computer science,1438606719 +106584,116797,genius,1438606719 +106597,260,classic,1435141926 +106597,260,SF,1435141917 +106606,750,old,1289276409 +106606,922,old,1289276419 +106606,5785,johnny knoxville,1289690893 +106606,46335,awesome,1289795161 +106606,46335,cars,1289795164 +106606,78469,Bradley Cooper,1289276331 +106606,78469,good casting,1289276354 +106606,79702,funny,1289116632 +106606,79702,Michael Cera,1283656124 +106606,79702,stylized,1289116636 +106606,79702,video games,1283656131 +106606,80363,adapted from:video game,1292572307 +106606,80363,not ended,1292572328 +106606,80363,zombies,1292572312 +106606,87192,loud music,1324520889 +106606,87192,Nick Frost,1324520865 +106606,87192,Rap,1324520861 +106608,260,all-time great,1443657847 +106608,260,great soundtrack,1443657842 +106608,260,quotable,1443657856 +106608,260,sci-fi,1443657828 +106626,34,animals,1229807740 +106626,35,artist,1230045324 +106626,35,strong woman,1230045324 +106626,36,ethics,1229962619 +106626,36,moral dilemma,1229962619 +106626,82,intellectual,1229962763 +106626,82,strong woman,1229962763 +106626,242,musical,1229807629 +106626,242,sad,1229807629 +106626,290,abuse,1229980634 +106626,290,sad,1229980634 +106626,326,class issues,1229961860 +106626,326,politics,1229961860 +106626,326,purpose in life,1229961860 +106626,345,dance along,1229985654 +106626,345,happy,1229985654 +106626,345,lgbt,1229985654 +106626,345,musical,1229985654 +106626,345,transgender,1229985654 +106626,508,activism,1229962116 +106626,508,homophobia,1229962116 +106626,508,lgbt,1229962116 +106626,527,altruism,1229805709 +106626,527,Holocaust,1229805708 +106626,527,meaning of life,1229805727 +106626,527,sad,1229805708 +106626,563,class issues,1229805870 +106626,563,poverty,1229807512 +106626,563,social message,1229805870 +106626,563,strike,1229787271 +106626,563,working class,1229787255 +106626,745,fun,1229807423 +106626,745,happy,1229807423 +106626,766,activism,1229962360 +106626,766,artist,1229962377 +106626,906,too scary,1229980188 +106626,920,social commentary,1229807570 +106626,920,strong woman,1229807571 +106626,994,immigrants,1229981099 +106626,1041,race relations,1229980813 +106626,1096,ethics,1229805622 +106626,1096,guilt,1229805687 +106626,1096,Holocaust,1229805622 +106626,1096,meaning of life,1229805736 +106626,1096,sad,1229805622 +106626,1111,animals,1229962218 +106626,1111,beautifully filmed,1229962218 +106626,1111,documentary,1229962224 +106626,1148,fun,1229807409 +106626,1185,disability,1229962199 +106626,1192,documentary,1229980506 +106626,1192,lgbt,1229980497 +106626,1192,sad,1229980497 +106626,1192,transgender,1229980497 +106626,1203,class issues,1229807757 +106626,1203,racism,1229807757 +106626,1203,social commentary,1229807757 +106626,1207,racism,1229805590 +106626,1207,smart kids,1229805590 +106626,1207,social commentary,1229807451 +106626,1307,fun,1229961691 +106626,1307,smart,1229961691 +106626,1354,sad,1229962731 +106626,1554,beautifully filmed,1229962090 +106626,1584,strong woman,1230045144 +106626,1734,glbt,1229980279 +106626,1734,smart kids,1229980279 +106626,1734,transgender,1229980289 +106626,1827,documentary,1229807725 +106626,1827,social commentary,1229807725 +106626,1955,ethics,1229805768 +106626,1955,moral ambiguity,1229962328 +106626,1961,disability,1229962054 +106626,2085,animals,1229962163 +106626,2085,fun,1229962163 +106626,2085,kids movie,1229962163 +106626,2176,scary,1229980526 +106626,2284,class issues,1229805976 +106626,2284,poverty,1229787310 +106626,2284,racism,1229805976 +106626,2284,sad,1229805976 +106626,2284,strong woman,1229805976 +106626,2333,character development,1229807600 +106626,2333,homophobia,1229807600 +106626,2360,sexual abuse,1229962712 +106626,2908,homophobia,1229807705 +106626,2908,sad,1229807705 +106626,2908,transgender,1229807705 +106626,2908,transphobia,1229807705 +106626,2929,activism,1229961974 +106626,2929,politics,1229961974 +106626,2994,immigrants,1229787637 +106626,2994,working class,1229787637 +106626,3271,disability,1229962182 +106626,3271,sad,1229962182 +106626,3296,teaching,1229806974 +106626,3408,environmental,1229807643 +106626,3408,social commentary,1229807643 +106626,3408,strong woman,1229807643 +106626,3408,true story,1229807643 +106626,3418,strong woman,1229806988 +106626,3751,animals,1229805931 +106626,3751,children,1229805931 +106626,3751,funny,1229805931 +106626,3751,happy,1229805931 +106626,3793,activism,1229961648 +106626,3793,fun,1229961648 +106626,3793,moral ambiguity,1229961648 +106626,3854,glbt,1229980381 +106626,3854,Holocaust,1229980397 +106626,3910,disability,1229962639 +106626,3910,sad,1229962639 +106626,4272,artistic,1229961831 +106626,4272,beautifully filmed,1229961831 +106626,4484,artist,1229902234 +106626,4484,sad,1229902234 +106626,4484,strong woman,1229902234 +106626,4590,Holocaust,1229962524 +106626,4590,relationship - nontypical,1229962524 +106626,4743,immigrant,1229981625 +106626,4743,strong woman,1229981625 +106626,4769,altruism,1230038929 +106626,4769,Holocaust,1230038902 +106626,4778,documentary,1230045109 +106626,4778,Romanian,1230045109 +106626,4778,sad,1230045109 +106626,4808,super scary,1229998936 +106626,4976,disability,1229902110 +106626,4976,intellectual,1229902110 +106626,4976,professor,1229902110 +106626,4976,smart,1229902110 +106626,4976,strong woman,1229902110 +106626,4979,comedy,1229961947 +106626,4979,fun,1229961947 +106626,4979,outsiders,1229961959 +106626,4979,smart,1229961947 +106626,5269,sexual,1229998914 +106626,5269,super weird,1229998914 +106626,5269,teacher,1229998914 +106626,5498,altruism,1229805721 +106626,5498,meaning of life,1229805721 +106626,5498,sad,1229805721 +106626,5992,intellectual,1229962449 +106626,5992,lgbt,1229962449 +106626,5992,sad,1229962449 +106626,5992,strong woman,1229962450 +106626,5992,suicide,1229962449 +106626,6377,children,1229807611 +106626,6377,fun,1229807611 +106626,6612,disability,1229787691 +106626,6612,outsider,1229787691 +106626,6682,class issues,1229805895 +106626,6682,ethics,1229805895 +106626,6682,racism,1229805895 +106626,6682,sad,1229805895 +106626,6683,class issues,1229962463 +106626,6683,politics,1229962463 +106626,7141,disability,1230038830 +106626,7265,activism,1230044753 +106626,7265,sexual,1230044753 +106626,7572,disability,1229805474 +106626,7572,strong woman,1229786976 +106626,7572,teaching,1229807388 +106626,7786,musical,1230038987 +106626,8011,outsiders,1229806004 +106626,8011,rebels,1229806004 +106626,8011,social message,1229806004 +106626,8377,altruism,1230045369 +106626,8464,documentary,1229807015 +106626,8464,food,1229807015 +106626,8464,social message,1229807015 +106626,8532,awkward,1229962549 +106626,8754,teaching,1229807028 +106626,8873,rebel,1229807079 +106626,8873,social message,1229807079 +106626,8873,true story,1229807079 +106626,8951,abortion,1229805560 +106626,8951,sad,1229805560 +106626,8951,social commentary,1229807431 +106626,8951,working class,1229805560 +106626,8966,sex,1229805823 +106626,8966,sexuality,1229805823 +106626,8966,social commentary,1229807505 +106626,8966,social message,1229805823 +106626,27391,documentary,1229807141 +106626,27391,homophobia,1229807141 +106626,27391,sexuality,1229807141 +106626,27391,social message,1229807141 +106626,27803,biomedical ethics,1229961935 +106626,27803,ethics,1229961935 +106626,27803,purpose in life,1229961935 +106626,27846,documentary,1229980429 +106626,27846,politics,1229980429 +106626,30707,disability,1229807094 +106626,30707,ethics,1229807094 +106626,30707,strong woman,1229807094 +106626,30749,altruism,1229807536 +106626,30749,sad,1229807536 +106626,30749,true story,1229807536 +106626,34072,animals,1229962258 +106626,34072,beautifully filmed,1229962258 +106626,34072,documentary,1229962258 +106626,34528,artist,1229962349 +106626,34528,class issues,1229962349 +106626,36517,altruism,1229807672 +106626,36517,rebel,1229807672 +106626,36517,social commentary,1229807672 +106626,38038,fun,1229807415 +106626,38038,happy,1229807415 +106626,38886,awkward,1229961878 +106626,38886,professor,1229961885 +106626,38886,smart,1229961878 +106626,39183,gay,1229805953 +106626,39183,sad,1229805954 +106626,39183,sexuality,1229805954 +106626,39183,social message,1229805953 +106626,43333,class issues,1229961748 +106626,43333,politics,1229961748 +106626,43333,smart kids,1229961748 +106626,44191,activism,1229961767 +106626,45499,disability,1229807779 +106626,45499,fun,1229807779 +106626,45499,outsider,1229807779 +106626,45499,rebel,1229807779 +106626,45928,documentary,1229961681 +106626,45928,environmental,1229961681 +106626,48774,activism,1229962684 +106626,48774,dystopia,1229962684 +106626,48774,environmental,1229962684 +106626,48780,fun,1229807044 +106626,49772,altruism,1229962137 +106626,49772,intellectual,1229962137 +106626,50872,fun,1229962023 +106626,50872,kids movie,1229962023 +106626,51884,immigrants,1229980332 +106626,52975,happy,1229807554 +106626,52975,musical,1229807554 +106626,52975,outsider,1229787445 +106626,53894,documentary,1229805663 +106626,53894,health care,1229805663 +106626,53894,social commentary,1229807478 +106626,54691,sexual,1229963029 +106626,55156,activism,1229961795 +106626,55156,documentary,1229961795 +106626,55156,Ralph Nader,1229961795 +106626,55253,activism,1229962307 +106626,55253,politics,1229962307 +106626,55253,sexual,1229962307 +106626,55253,slow - good,1229962307 +106626,55814,biomedical ethics,1229962569 +106626,55814,disability,1229962569 +106626,56333,intellectual,1229980055 +106626,56333,professor,1229980055 +106626,56607,class issues,1229980470 +106626,58303,altruism,1229807657 +106626,58303,Holocaust,1229807657 +106626,58303,true story,1229807657 +106626,58530,poverty,1421683315 +106626,58530,prison,1421683315 +106626,58530,race,1421683315 +106626,59118,happy,1229807540 +106626,59607,documentary,1229807154 +106626,59607,food,1229807154 +106626,60069,children,1229805510 +106626,60069,environmental,1229805510 +106626,60069,social commentary,1229807379 +106626,60289,class issues,1229805797 +106626,60289,inspiring,1229805797 +106626,60289,poverty,1229807496 +106626,60289,smart kids,1229805797 +106626,60289,social message,1229805834 +106626,60289,strong woman,1229787204 +106626,60289,working class,1229805797 +106626,61048,awkward,1229902288 +106626,61048,sad,1229902288 +106626,88959,battles,1432309174 +106626,88959,historical,1432309174 +106626,88959,romanian,1432309174 +106657,2329,Edward Norton,1384745169 +106657,2329,prison,1384745180 +106657,2329,social commentary,1384745161 +106674,2580,black comedy,1262528521 +106674,2580,Nudity (Topless),1262528532 +106710,166,shock and truth,1167330072 +106710,3840,the monster scared the shit out me when i was a kid,1167337720 +106710,3949,profound and life changing,1167330013 +106710,33004,british slap stick,1167330133 +106710,33004,sarcasm,1167330133 +106710,33004,witty,1167330133 +106714,6953,Tragedy,1152998537 +106717,260,classic sci-fi,1434546828 +106717,260,good vs evil,1434546843 +106732,136020,james bond,1446592756 +106780,46855,action,1212855809 +106780,46855,less than 300 ratings,1212855837 +106780,46855,Tumey's DVDs,1212855844 +106806,3147,tom hanks,1205387687 +106806,3992,Monica Bellucci,1205399682 +106806,52604,anthony hopkins,1205387707 +106822,216,stupid,1440023099 +106822,260,sci-fi,1440002521 +106822,260,space,1440002532 +106822,442,comedy,1440023760 +106822,442,dystopia,1440023720 +106822,442,satire,1440023756 +106822,442,time travel,1440023722 +106822,1265,comedy,1440024093 +106822,1265,existentialism,1440024091 +106822,1265,love,1440024078 +106822,1270,classic,1440023619 +106822,1270,time travel,1440023615 +106822,1302,inspirational,1440020211 +106822,1487,true story,1440271739 +106822,1835,love story,1440018918 +106822,2011,time travel,1440023656 +106822,2012,time travel,1440023642 +106822,2423,Classic,1440023555 +106822,2423,comedy,1440023546 +106822,2470,australian,1440023452 +106822,2478,comedy,1440023520 +106822,3007,movie business,1440024813 +106822,3285,travel,1440026626 +106822,3285,utopia,1440026624 +106822,3969,inspirational,1440021732 +106822,3969,las vegas,1440021739 +106822,4489,multiple roles,1450716178 +106822,4890,love story,1440019568 +106822,4941,So bad it's good,1440024667 +106822,6653,soundtrack,1452006392 +106822,6711,friendship,1448392167 +106822,6711,isolation,1448392171 +106822,6979,hacking,1450012365 +106822,8917,satire,1440020721 +106822,9004,computers,1440025724 +106822,27178,german,1440018822 +106822,27178,love story,1440018862 +106822,31410,German,1440018583 +106822,39231,business,1440020343 +106822,44191,dystopia,1440020232 +106822,44191,inspirational,1440020238 +106822,44555,Berlin,1440018638 +106822,44555,freedom of expression,1440018674 +106822,44555,german,1440018665 +106822,45172,computers,1440018504 +106822,45172,german,1440018540 +106822,45172,hacking,1450012305 +106822,45668,love story,1440018889 +106822,45668,time travel,1440018882 +106822,48774,dystopia,1440020272 +106822,54419,mockumentary,1440009656 +106822,56174,dystopia,1440020522 +106822,56174,loneliness,1440020512 +106822,56174,post-apocalyptic,1440020518 +106822,58123,love story,1440025995 +106822,58123,time travel,1440025972 +106822,60037,Zooey Deschanel,1442681559 +106822,63072,depressing,1442155026 +106822,63072,post-apocalyptic,1442159874 +106822,64839,loneliness,1440020444 +106822,67508,german,1440021100 +106822,68472,german,1441721442 +106822,72011,business,1440020394 +106822,72011,capitalism,1440019040 +106822,72011,loneliness,1440020466 +106822,72011,travel,1440019046 +106822,77146,german,1440019903 +106822,80463,business,1440020377 +106822,87660,true story,1440020131 +106822,94469,Australia,1440272483 +106822,97304,True story,1440020147 +106822,97866,re-enactment,1441298779 +106822,103596,B-movie,1441635536 +106822,114692,true story,1440004294 +106822,123967,German,1442244867 +106822,132446,computers,1440003899 +106822,132446,true story,1440003929 +106822,142238,German,1442244664 +106822,147030,Berlin,1449166338 +106824,497,great movie,1404666837 +106824,497,Shakespeare,1404666833 +106824,497,witty,1404666831 +106824,780,alien invasion,1241116154 +106824,780,disaster,1241116175 +106824,780,end of the world,1241116177 +106824,780,humorous,1241116158 +106824,780,sci-fi,1241116163 +106824,780,scifi,1241116165 +106824,780,Will Smith,1241116167 +106824,1036,Bruce Willis,1241116942 +106824,1036,claustrophobic,1241116946 +106824,1036,crime,1241116961 +106824,1036,terrorism,1241116955 +106824,1059,based on a play,1241116285 +106824,1059,Baz Luhrmann,1241116287 +106824,1059,Claire Danes,1241116289 +106824,1059,Leonardo DiCaprio,1241116276 +106824,1059,Quirky,1241116278 +106824,1059,updated classics,1241116274 +106824,1148,Aardman studios,1241115416 +106824,1148,Clay Animation,1241115407 +106824,1148,funny,1241115412 +106824,1196,action,1241115600 +106824,1196,adventure,1241115607 +106824,1196,aliens,1241115594 +106824,1196,classic,1241115639 +106824,1196,fantasy,1241115605 +106824,1196,George Lucas,1241115566 +106824,1196,great soundtrack,1241115630 +106824,1196,Harrison Ford,1241115634 +106824,1196,music,1241115623 +106824,1196,sci-fi,1241115571 +106824,1196,SciFi,1241115573 +106824,1196,sequel,1241115617 +106824,1196,space,1241115614 +106824,1196,war,1241115611 +106824,2194,1930s,1241115493 +106824,2194,historically inaccurate,1241115485 +106824,2194,Kevin Costner,1241115515 +106824,2194,Prohibition,1241115503 +106824,2194,R,1241115531 +106824,2194,Robert De Niro,1241115475 +106824,2194,Sean Connery,1241115477 +106824,2683,Cute,1241116239 +106824,2683,funny,1241116229 +106824,2683,Heather Graham,1241116226 +106824,2683,Hilarious,1241116251 +106824,2683,Mike Myers,1241116222 +106824,2683,obvious,1241116237 +106824,2683,parody,1241116217 +106824,2683,stupid,1241116248 +106824,2959,Brad Pitt,1404666759 +106824,2959,dark comedy,1404666762 +106824,2959,philosophy,1404666767 +106824,2959,social commentary,1404666766 +106824,2959,twist ending,1404666756 +106824,4011,boxing,1241115752 +106824,4011,Brad Pitt,1241115746 +106824,4011,british,1241115772 +106824,4011,criminal,1241115784 +106824,4011,cynical,1241115759 +106824,4011,frantic,1241115782 +106824,4011,Great dialogue,1241115754 +106824,4011,gypsy accent,1241115786 +106824,4011,madcap,1241115779 +106824,4720,afterlife,1241115920 +106824,4720,atmospheric,1241115891 +106824,4720,Beautiful Woman,1241115893 +106824,4720,Bible,1241115897 +106824,4720,claustrophobic,1241115899 +106824,4720,Drama,1241115924 +106824,4720,ghosts,1241115901 +106824,4720,gothic,1241115903 +106824,4720,Nicole Kidman,1241115906 +106824,4720,surprise ending,1241115911 +106824,4720,twist ending,1241115934 +106824,4993,adventure,1241116110 +106824,4993,awesome soundtrack,1241116112 +106824,4993,based on a book,1241116103 +106824,4993,high fantasy,1241116139 +106824,4993,magic,1241116115 +106824,4993,nature,1241116137 +106824,4993,Oscar (Best Cinematography),1241116131 +106824,4993,Oscar (Best Effects - Visual Effects),1241116133 +106824,4993,Peter Jackson,1241116119 +106824,4993,scenic,1241116125 +106824,4993,Tolkien,1241116120 +106824,4993,trilogy,1241116122 +106824,6365,action,1241116016 +106824,6365,big budget,1241115949 +106824,6365,car chase,1241116011 +106824,6365,Dynamic CGI Action,1241115956 +106824,6365,future,1241115959 +106824,6365,hacking,1241116021 +106824,6365,Hugo Weaving,1241115964 +106824,6365,human versus computer,1241115968 +106824,6365,Keanu Reeves,1241115963 +106824,6365,magic,1241116005 +106824,6365,Matrix,1241115971 +106824,6365,Monica Bellucci,1241115973 +106824,6365,Post apocalyptic,1241115985 +106824,6365,singularity,1241115989 +106824,6365,super-hero,1241115987 +106824,6365,virtual reality,1241115992 +106824,6711,Bill Murray,1241116074 +106824,6711,bittersweet,1241116056 +106824,6711,Japan,1241116072 +106824,6711,reflective,1241116065 +106824,6711,relationships,1241116047 +106824,6711,Scarlett Johansson,1241116041 +106824,6711,Very interesting,1241116080 +106824,8961,animation,1404666790 +106824,8961,Pixar,1404666787 +106824,33493,action,1241115680 +106824,33493,adventure,1241115722 +106824,33493,Ewan McGregor,1241115694 +106824,33493,fantasy,1241115690 +106824,33493,franchise,1241115688 +106824,33493,George Lucas,1241115671 +106824,33493,good versus evil,1241115675 +106824,33493,great soundtrack,1241115677 +106824,33493,Natalie Portman,1241115692 +106824,33493,Samuel L. Jackson,1241115699 +106824,33493,sequel,1241115665 +106824,33493,series,1241115667 +106824,33493,space,1241115669 +106824,33493,space opera,1241115656 +106824,33493,Star Wars,1241115727 +106824,33493,super-hero,1241115660 +106824,34405,black comedy,1404666593 +106824,34405,cult film,1404666586 +106824,34405,great dialogue,1404666599 +106824,34405,sci-fi,1404666576 +106824,34405,witty,1404666582 +106824,47099,based on a true story,1241115841 +106824,47099,bittersweet,1241115806 +106824,47099,courage,1241115876 +106824,47099,depressing,1241115836 +106824,47099,earnest,1241115810 +106824,47099,Feelings,1241115864 +106824,47099,Motivation,1241115834 +106824,47099,San Francisco,1241115860 +106824,47099,tearjerking,1241115847 +106824,47099,Will Smith,1241115817 +106824,48780,based on a book,1172252789 +106824,51662,action,1241116979 +106824,51662,atmospheric,1241117000 +106824,51662,comic book,1241117003 +106824,51662,Epic,1241116982 +106824,51662,fighting,1241116984 +106824,51662,narrated,1241116986 +106824,51662,Nudity (Topless),1241116990 +106824,51662,rape,1241116988 +106824,51662,remake,1241117005 +106824,51662,sexualized violence,1241116993 +106824,51662,stylized,1241117008 +106824,51662,sword fight,1241117010 +106824,68157,Christoph Waltz,1404666538 +106824,68157,dark comedy,1404666551 +106824,94959,Bill Murray,1404666691 +106824,94959,quirky,1404666694 +106824,94959,stylized,1404666697 +106824,94959,surreal,1404666700 +106824,94959,Wes Anderson,1404666705 +106824,103335,anti-hero,1404666813 +106824,103335,Steve Carell,1404666809 +106838,33493,universal,1446116764 +106838,58559,superhero,1446116839 +106838,88140,action,1446116803 +106842,296,Black comedy,1241871665 +106842,296,Bruce Willis,1241871671 +106842,296,dark comedy,1241871667 +106842,296,multiple storylines,1241871673 +106842,296,nonlinear,1241871675 +106842,296,notable soundtrack,1241871683 +106842,296,stylized,1241871678 +106842,364,Disney,1241871804 +106842,364,Disney animated feature,1241871803 +106842,364,musical,1241871810 +106842,608,black comedy,1241871722 +106842,608,dark comedy,1241871726 +106842,608,quirky,1241871730 +106842,608,strong female,1241871734 +106842,608,witty,1241871736 +106842,2858,black comedy,1241871755 +106842,2858,dark comedy,1241871758 +106842,2858,satirical,1241871761 +106842,2858,social commentary,1241871759 +106842,2858,surrealism,1241871765 +106842,2883,Zooey Deschanel,1241944043 +106842,3328,deadpan,1243892285 +106842,3328,Forest Whitaker,1243892289 +106842,3328,hip hop,1243892294 +106842,3328,Jim Jarmusch,1243892289 +106842,4774,Zooey Deschanel,1241944079 +106842,5363,Eliza Dushku,1241944053 +106842,5363,Zooey Deschanel,1241944051 +106842,5505,chick flick,1241943888 +106842,5505,Jake Gyllenhaal,1241943891 +106842,5505,John C. Reilly,1241943892 +106842,5505,Nudity (Topless - Brief),1241943896 +106842,5505,tragicomedy,1241943899 +106842,5505,Zooey Deschanel,1241943882 +106842,6159,Zooey Deschanel,1241943938 +106842,6329,Zooey Deschanel,1241944033 +106842,6936,Elijah Wood,1241943872 +106842,6936,Will Ferrell,1241943868 +106842,6936,Zooey Deschanel,1241943864 +106842,8918,black comedy,1241943970 +106842,8918,crazy family,1241943975 +106842,8918,Zooey Deschanel,1241943967 +106842,43914,Ed Harris,1241943735 +106842,43914,Zooey Deschanel,1241943731 +106842,44004,Zooey Deschanel,1241943991 +106842,46974,Oliver Stone,1246665371 +106842,50601,death of a child,1241943951 +106842,50601,Zooey Deschanel,1241943947 +106842,51084,Definite chick flick,1252416098 +106842,51084,Drew Barrymore,1252416104 +106842,51084,Hugh Grant,1252416101 +106842,56671,Jena Malone,1241943986 +106842,56671,Zooey Deschanel,1241943982 +106842,60037,entertaining for the wrong reasons,1241943909 +106842,60037,Mark Wahlberg,1241943920 +106842,60037,Zooey Deschanel,1241943906 +106842,60599,quirky,1241944074 +106842,60599,Zooey Deschanel,1241944070 +106842,64497,apocalyptic,1246533899 +106842,64497,Jennifer Connelly,1246533891 +106842,64497,Keanu Reeves,1246533889 +106842,64497,remake,1246533888 +106842,64969,Zooey Deschanel,1241943926 +106842,67138,Zooey Deschanel,1241944011 +106842,68519,crappy sequel,1247269356 +106842,69757,Joseph Gordon-Levitt,1253336282 +106842,69757,Zooey Deschanel,1253336280 +106842,112290,realism,1419021339 +106849,260,classic,1435342505 +106849,260,EPIC,1435342514 +106849,260,great story,1435342536 +106849,260,original plot,1435342521 +106849,260,sci-fi,1435342540 +106849,260,underdog story,1435342550 +106849,6947,historical,1435342976 +106850,91622,alcoholism,1430304802 +106850,91622,dark,1430304809 +106850,91622,depression,1430304791 +106850,91622,underrated,1430304818 +106850,134796,afghanistan,1433936241 +106850,134796,documentary,1433936241 +106850,134796,political,1433936241 +106853,1089,nonlinear,1337188902 +106853,1089,Quentin Tarantino,1337188905 +106853,1721,Oscar (Best Picture),1337188739 +106853,1721,romance,1337188735 +106853,4308,quirky,1337188953 +106853,4878,psychology,1337188862 +106853,4878,surreal,1337188869 +106853,4878,time travel,1337188866 +106853,5299,comedy,1337189006 +106853,5299,romance,1337189003 +106853,5299,wedding,1337189000 +106853,27674,dark comedy,1337188630 +106853,27674,multiple storylines,1337188624 +106873,296,Quentin Tarantino,1138493789 +106880,36529,narrative,1140467747 +106888,260,Quest,1439718671 +106888,260,Space western,1439718658 +106895,318,classic,1139669626 +106895,592,super-hero,1139671915 +106950,76772,Gaspar Noé,1318976388 +106950,103604,adapted from:book,1373927638 +106950,103604,dark humor,1373927598 +106950,103604,philosophical,1373927607 +106966,318,a great adaptation of the Stephen King book,1188666925 +106966,318,simply terrific,1188666925 +106966,540,good,1187893499 +106966,707,hot girl,1187893446 +106966,866,hot girls!,1187891204 +106966,866,Well acted,1187891204 +106966,1298,Fantastic!,1187893481 +106966,1298,great soundtrack,1187893481 +106966,1503,Comedy is way too obvious,1187894796 +106966,1503,reminiscent of a bad 60's comedy,1187894796 +106966,1779,didn't see,1187893512 +106966,1883,Didn't see,1187892389 +106966,1907,good animation,1187891284 +106966,1907,standard Disney storyline,1187891281 +106966,2391,good story line,1187891345 +106966,2478,Great promise,1187892383 +106966,2478,probably Steve Martin's worst comedy,1187892383 +106966,2951,classic,1187893433 +106966,2951,spaghetti,1187893433 +106966,3752,Hilarious,1187891241 +106966,3752,Jim carey is brilliantly funny,1187891241 +106966,3752,well scripted,1187891241 +106966,3996,Who says you can't buy an Oscar?,1188666265 +106966,4011,Great dialogue,1188666844 +106966,4011,great direction,1188666844 +106966,4011,Hilarious,1188666844 +106966,4011,Slick,1188666844 +106966,4262,great performance by Pacino,1187891330 +106966,4310,didn't see,1187891308 +106966,4447,didn't see,1187891240 +106966,4848,hot girls!,1187891295 +106966,5486,Excellent story,1188667712 +106966,5486,Tim Allen as a hitman,1188667712 +106966,5618,Didn't see,1187891372 +106966,6373,Very funny,1187893405 +106966,6378,great car chase scenes,1187891205 +106966,6378,Great plot,1187891205 +106966,6378,well acted,1187891205 +106966,35836,great dialogue,1187894661 +106966,35836,hilarious,1187894661 +106966,35836,Terrific Cast,1187894661 +106966,50923,good story,1187893660 +106966,50923,predictable results,1187893660 +106966,53999,Bad copy of saw,1187893690 +106981,508,Legal Drama,1439409634 +106981,1172,heartwarming,1439409576 +106981,1172,Italian,1439409582 +107025,356,drug abuse,1421702663 +107025,356,heart-warming,1421702663 +107025,356,historical fiction,1421702663 +107025,2324,sad,1388951119 +107031,4886,Pixar,1147378269 +107038,318,hope,1426885497 +107038,318,prison,1426885497 +107038,318,twist ending,1426885497 +107038,356,biography,1423212386 +107038,356,epic,1423212386 +107038,356,Tom Hanks,1177410402 +107038,858,mafia,1177410617 +107038,2023,Al Pacino,1177410560 +107038,2023,mafia,1177410560 +107038,6377,fish,1177410628 +107038,6377,ocean,1177410628 +107038,7143,samurai,1177410160 +107038,7143,Tom Cruise,1177410127 +107038,7360,sick,1185891298 +107038,7360,zombie,1185891298 +107038,36529,guns,1177410481 +107038,36529,Nicolas Cage,1177410458 +107038,42738,vampires,1185891455 +107038,42738,werewolves,1185891463 +107061,260,sci-fi,1430865541 +107061,260,space travel,1430865557 +107061,318,friendship,1431858235 +107061,318,jail,1431858235 +107061,318,smart,1431858235 +107061,356,determination,1431237870 +107061,356,military,1431237870 +107061,356,perseverance,1431237870 +107062,2115,mediocre,1141603087 +107062,4378,good movie nobody saw,1240616023 +107062,5876,good movie nobody saw,1240615988 +107062,40278,not a war movie.,1156083312 +107062,48780,good movie nobody saw,1240616185 +107067,3011,depressing,1312581383 +107067,3011,Jane Fonda,1312581386 +107067,4754,atmospheric,1312187971 +107067,4754,Christopher Lee,1312187985 +107067,4754,disturbing,1312187974 +107067,4754,eerie,1312187976 +107067,4754,enigmatic,1312187980 +107067,4754,Hammer Film Productions,1312187990 +107067,4754,island,1312187995 +107067,4754,ominous,1312188005 +107067,4754,pagan,1312188002 +107067,4754,RELIGIOUS ZEALOTRY,1312188007 +107067,4754,small town,1312188010 +107067,4754,TRAPPED OR CONFINED,1312188012 +107067,4754,twist ending,1312188015 +107067,6229,atmospheric,1312188047 +107067,6229,road movie,1312188056 +107067,7815,suburbia,1312187865 +107067,8042,New York City,1312187917 +107081,318,inspiring,1444314441 +107081,1704,exciting,1444314604 +107081,5971,ridiculous,1425949031 +107081,112183,Crazy,1425949162 +107081,125916,definitely for girls,1424448033 +107081,125916,ridiculous,1424448033 +107081,125916,stupid,1424448033 +107084,296,blood splatters,1428953426 +107084,296,character development,1428953426 +107084,296,crossed lifes,1428953426 +107084,118900,coping,1429309219 +107084,118900,female protagonist,1429309229 +107084,118900,grief,1429309221 +107084,118900,hiking,1429309226 +107084,118900,mother and daughter relationship,1429309222 +107084,118900,self discovery,1429309224 +107112,1394,Coen Brothers,1342631467 +107126,260,Sci fi,1443092025 +107126,260,Universum,1443092042 +107129,260,classic,1431640485 +107129,260,sci-fi,1431640496 +107139,1080,hilarious,1137685480 +107139,1136,hilarious,1137685487 +107139,2706,pizza beer,1137345402 +107139,3160,puzzling,1137345360 +107139,5722,classic,1137685379 +107139,5840,classic,1137685419 +107139,5840,french,1137685435 +107139,7767,beautiful,1181547178 +107139,7767,death,1181547178 +107139,7767,italy,1181547178 +107139,7767,sardinia,1181547178 +107139,32587,unpredictable,1137685305 +107178,2273,crazy action,1440204915 +107178,78499,toys,1440204977 +107194,260,futuristic,1439998304 +107194,260,inspiring,1439998315 +107224,260,Science Fiction,1432280809 +107224,260,space opera,1432280819 +107224,296,bruce willis,1432281693 +107224,296,cult film,1432281693 +107224,296,quentin tarantino,1432281693 +107224,1209,ennio morricone,1432282165 +107224,1209,great soundtrack,1432282170 +107224,1209,Sergio Leone,1432282162 +107224,1209,spaghetti western,1432282160 +107224,1209,western,1432282168 +107224,1732,cult film,1432281500 +107224,1732,dark comedy,1432281504 +107224,1732,great dialogue,1432281514 +107224,2542,black comedy,1432281712 +107224,2542,dark comedy,1432281705 +107224,2542,great soundtrack,1432281720 +107224,2542,organized crime,1432281709 +107224,8874,black comedy,1432282329 +107224,8874,british comedy,1432282334 +107224,8874,dark comedy,1432282336 +107224,8874,dark humor,1432282338 +107224,8874,hilarious,1432282342 +107224,8874,Simon Pegg,1432282331 +107224,34162,buddy movie,1432305764 +107224,34162,predictable,1432305751 +107224,55820,great acting,1432305631 +107224,55820,twist ending,1432305642 +107224,97306,Christopher Walken,1432281586 +107224,97306,clever,1432281598 +107224,97306,Woody Harrelson,1432281590 +107238,133187,soo bad as to be laughable,1430676532 +107247,12,boring,1428000179 +107247,934,good comedy,1428000104 +107247,69122,boring,1428000022 +107247,69122,lame,1428000022 +107247,69122,suitable for men,1428000022 +107281,4308,Ewan McGregor,1216494645 +107281,4308,musical,1216494643 +107281,4722,gay,1216414803 +107343,247,New Zealand,1330358587 +107343,260,action,1329510867 +107343,260,aliens,1329510859 +107343,260,fantasy,1329510856 +107343,260,Harrison Ford,1329510838 +107343,260,sci-fi,1329510841 +107343,260,space,1329510852 +107343,441,nostalgic,1325891830 +107343,3897,1970s,1330373277 +107343,3897,coming of age,1330373272 +107343,3897,music,1330373266 +107343,3897,rock and roll,1330373286 +107343,4873,stylized,1330359102 +107343,4873,surreal,1330359100 +107343,38886,1980s,1325891750 +107343,38886,depressing,1325891748 +107343,38886,dysfunctional family,1325891745 +107343,38886,high squirm factor,1325891742 +107343,38886,New York City,1325891756 +107343,38886,quirky,1325891754 +107343,38886,smart comedy,1325891767 +107343,69481,Iraq War,1330359001 +107343,69481,War,1330359003 +107361,260,classic sci-fi,1434947676 +107361,260,space epic,1434947707 +107381,260,George Lucas,1439796690 +107381,260,sci-fi,1439796697 +107383,1527,Milla Jovovich,1142333111 +107383,2692,original,1142333235 +107383,3000,Hayao Miyazaki,1142333170 +107383,3053,Milla Jovovich,1142333875 +107383,4372,Kirsten Dunst,1142342593 +107383,5219,Milla Jovovich,1143104062 +107383,5903,Kurt Wimmer,1142333853 +107383,6711,Amazing Cinematography,1142335317 +107383,7090,amazing photography,1142333177 +107383,7143,intense,1142333270 +107383,8861,Milla Jovovich,1143829985 +107383,39231,good but not as good as garden state,1142334049 +107383,43928,Kurt Wimmer,1142333839 +107383,43928,Milla Jovovich,1142333814 +107383,45186,J.J. Abrams,1150999601 +107383,55232,Milla Jovovich,1196461750 +107395,260,Sci-fi,1435891083 +107395,260,space epic,1435891091 +107395,80906,documentary,1436121160 +107395,80906,financial crisis,1436121160 +107395,80906,informative,1436121160 +107419,296,crime,1421865973 +107419,296,cult film,1421865973 +107419,296,good dialogue,1421865973 +107456,356,excellent movie,1137294883 +107456,34437,Waste of time,1137294779 +107463,60040,Ed Norton,1218857749 +107490,47,Brad Pitt,1361453125 +107490,47,Morgan Freeman,1361453128 +107490,47,serial killer,1361453159 +107490,47,twist ending,1361453148 +107490,223,quirky,1360089688 +107490,223,surreal,1360089691 +107490,778,British,1359998667 +107490,1732,Coen Brothers,1360069896 +107490,1732,dark comedy,1360069902 +107490,2542,British,1360090060 +107490,2542,dark comedy,1360090067 +107490,2542,organized crime,1360090063 +107490,4027,Coen Brothers,1360090086 +107490,4226,nonlinear,1361453035 +107490,4226,stylized,1361453040 +107490,4226,twist ending,1361453031 +107490,5445,surreal,1360042667 +107490,6565,inspirational,1360069925 +107490,6711,atmospheric,1360089971 +107490,7502,World War II,1360090037 +107490,8950,Christian Bale,1361453094 +107490,8950,memory,1361453098 +107490,8950,psychology,1361453101 +107490,32587,comic book,1360089821 +107490,32587,Quentin Tarantino,1360089821 +107490,44191,dystopia,1360042682 +107490,44195,dark comedy,1360090158 +107490,44195,satire,1360090161 +107490,44665,Film Noir,1362677103 +107490,44665,stylized,1362677116 +107490,44665,twist ending,1362677112 +107490,46578,dark comedy,1360089952 +107490,51662,histrionics,1362676975 +107490,55820,coen brothers,1360069826 +107490,55820,twist ending,1360069815 +107490,63082,nonlinear,1360090105 +107490,67255,computers,1360089607 +107490,67255,journalism,1360089604 +107490,68157,Quentin Tarantino,1360090000 +107490,68157,World War II,1360090002 +107490,70286,aliens,1360090183 +107490,70286,atmospheric,1360090186 +107490,70286,genetics,1361452909 +107490,70286,social commentary,1360090189 +107490,71033,revenge,1361122281 +107490,74458,twist ending,1360089711 +107490,79132,action,1361452960 +107490,79132,alternate reality,1361452942 +107490,79132,thought-provoking,1361452946 +107490,79132,visually appealing,1361452949 +107490,83349,Seth Rogen,1362677511 +107490,88744,action,1361452834 +107490,88744,realistic,1361452852 +107490,88744,sci-fi,1361452843 +107490,91014,histrionics,1362676783 +107490,91014,premature epiphany,1362676780 +107490,94864,aliens,1361452868 +107490,94864,Charlize Theron,1361452873 +107490,94864,Ridley Scott,1361452877 +107490,94864,scifi,1361452879 +107490,94864,space travel,1361452888 +107490,94864,technology,1361452883 +107490,96612,sickening,1360089268 +107490,96612,slow,1360089292 +107490,96655,future,1361442027 +107490,96655,robots,1361442033 +107490,96655,soft crime,1361442009 +107490,97304,espionage,1360607374 +107490,97304,politics,1360607370 +107490,97326,British,1359997731 +107490,97326,Neo-realism,1359997742 +107490,97326,realistic,1359997735 +107507,142525,disabled,1442647281 +107507,142525,israel,1442647278 +107507,142525,judaism,1442647316 +107507,142525,love,1442647276 +107507,142525,travel,1442647325 +107507,142527,food,1442647257 +107507,142527,love,1442647255 +107538,1208,surreal,1420421661 +107538,51167,overly sentimental,1420168004 +107538,51167,sad,1420168004 +107538,51167,sentimental,1420168004 +107538,107632,ernst lubitsch,1423624704 +107538,107632,gypsy,1423624704 +107538,107632,silent movie,1423624704 +107538,110555,documentary,1422149566 +107538,110555,many interviews,1422149566 +107538,110555,street interviews,1422149566 +107552,260,classic sci-fi,1442066217 +107552,260,good vs evil,1442066226 +107552,48780,mystery,1442074171 +107552,48780,twists & turns,1442074176 +107552,84152,thought provoking,1442074059 +107552,85414,suspense,1442074125 +107565,110,adult,1150319355 +107565,110,Sad part quite shocking,1150319283 +107565,318,profound,1148591734 +107565,318,seen more than once,1148591734 +107565,527,anti-semitism,1148589376 +107565,1645,blaspheme,1148589436 +107565,1777,funny,1148591754 +107565,1805,'sexy',1148590663 +107565,2700,distasteful,1148591474 +107565,2700,mature,1148591474 +107565,3785,Comedy,1179907098 +107565,3785,fake horror,1179907083 +107565,4973,sweet,1148591813 +107565,6188,mature,1148591887 +107565,6874,mature,1148591511 +107565,8372,classic,1148591547 +107565,8372,suitable for kids,1148591547 +107565,8961,seen more than once,1148591658 +107565,35836,eccentric,1148591197 +107565,35836,eccentricity,1148591152 +107565,48600,Judaism,1224937885 +107565,52604,courtroom drama,1179906233 +107565,52604,murder,1179906263 +107565,52604,murder mystery,1179906257 +107565,59440,anti-abortion,1224937695 +107565,59440,heartwarming,1224937711 +107565,59440,love story,1224937722 +107572,26502,christmas,1245190259 +107578,1,animation,1383552937 +107578,1,comedy,1383552939 +107578,1,funny,1383552941 +107578,47,psychological,1383553751 +107578,47,psychology,1383553749 +107578,47,twist ending,1383553757 +107578,1036,Bruce Willis,1383554062 +107578,2203,100 Essential Female Performances,1383553391 +107578,2203,classic,1383553398 +107578,2203,cynical,1383553411 +107578,2203,Hitchcock,1383553383 +107578,2203,SERIAL KILLERS,1383553403 +107578,2762,Bruce Willis,1383554035 +107578,2762,psychological,1383554040 +107578,2762,psychology,1383554043 +107578,2762,twist ending,1383554039 +107578,2959,based on a book,1383553988 +107578,2959,disturbing,1383553983 +107578,2959,psychology,1383553979 +107578,2959,twist ending,1383553980 +107578,4306,animation,1383552806 +107578,4306,comedy,1383552809 +107578,4886,animation,1383552973 +107578,4886,comedy,1383552982 +107578,4886,funny,1383552976 +107578,6377,animation,1383552952 +107578,6377,Comedy,1383552955 +107578,6377,funny,1383552953 +107578,8360,animation,1383552854 +107578,8360,comedy,1383552859 +107578,8360,Funny,1383552870 +107578,8957,Disturbing,1383553790 +107578,8957,serial killer,1383553791 +107578,8957,twist ending,1383553794 +107578,8970,Biography,1388230120 +107578,8970,true story,1388230136 +107578,30793,Johnny Depp,1388936593 +107578,48997,serial killer,1383553804 +107578,53121,animation,1383552846 +107578,53121,comdey,1383552846 +107578,54272,animation,1383553041 +107578,54272,Based on a TV show,1383553049 +107578,54272,comedy,1383553039 +107578,54272,funny,1383553057 +107578,54272,humor,1383553053 +107578,55442,animation,1383552990 +107578,55442,History,1383552994 +107578,55442,politics,1383552999 +107578,55442,revolution,1383553003 +107578,59784,animation,1383553017 +107578,59784,comedy,1383553025 +107578,59784,funny,1383553026 +107578,60069,Animation,1383552961 +107578,60069,Comedy,1383552964 +107578,68135,geeks,1388936425 +107578,68135,predictable,1388936440 +107578,68135,Zac Efron,1388936448 +107578,103141,animation,1383552833 +107578,103141,comedy,1383552833 +107578,104913,based on a true story,1383552158 +107578,104913,Ferrari,1383552162 +107578,104913,Formula 1,1383552164 +107578,104913,true story,1383552172 +107579,70,George Clooney,1447354532 +107579,70,Quentin Tarantino,1447354514 +107579,70,twist ending,1447354513 +107579,165,bruce willis,1446534131 +107579,165,plot point:solving riddles/puzzles,1446534148 +107579,165,Samuel L. Jackson,1446534134 +107579,296,non-linear,1446299704 +107579,296,Quentin Tarantino,1446299691 +107579,380,Arnold Schwarzenegger,1446985159 +107579,380,Jamie Lee Curtis,1446985158 +107579,500,Robin Williams,1446705532 +107579,1089,humorous,1446395272 +107579,1089,nonlinear,1446395263 +107579,1089,Quentin Tarantino,1446395266 +107579,1136,Monty Python,1447225755 +107579,1376,Star Trek,1446638557 +107579,1376,time travel,1446638561 +107579,2916,Arnold Schwarzenegger,1446854248 +107579,2916,dystopia,1446854252 +107579,2916,sci-fi,1446854257 +107579,2916,virtual reality,1446854254 +107579,3033,Mel Brooks,1446985077 +107579,3698,Dystopia,1446854578 +107579,3698,survival,1446854583 +107579,3868,Leslie Nielsen,1447049820 +107579,4085,Eddie Murphy,1446395396 +107579,6874,Japan,1446300093 +107579,6874,Quentin Tarantino,1446300090 +107579,6874,visually appealing,1446300104 +107579,8957,clever,1446985114 +107579,8957,twist ending,1446985094 +107579,26294,Terence Hill,1446854784 +107579,63072,dystopia,1446985009 +107579,63072,post-apocalyptic,1446985007 +107579,68157,Christoph Waltz,1446300178 +107579,68157,Quentin Tarantino,1446300175 +107579,68157,unusual plot structure,1446300188 +107579,71264,animation,1446984979 +107579,78105,based on a video game,1446984999 +107579,95167,Scotland,1446985020 +107579,103335,crude humor,1446984985 +107579,108979,anime,1446984951 +107579,108979,Yoko Kanno,1446984954 +107582,356,AFI 100 (Movie Quotes),1452284942 +107582,356,american dream,1452284974 +107582,356,dark co,1452284958 +107582,356,motivational,1452284950 +107582,88810,american history,1452284999 +107582,88810,american south,1452285008 +107582,88810,drama,1452284993 +107582,88810,sagregation,1452285016 +107588,260,"Cheesy space opera, classic",1431353662 +107588,260,Too old. showing its age,1431353651 +107588,356,brilliant,1431358279 +107588,356,super,1431358279 +107588,356,touching,1431358279 +107598,260,awesome,1439793875 +107613,541,atmospheric,1320727938 +107613,541,classic,1320727931 +107613,541,intelligence,1320727952 +107613,541,sc-fi,1320727946 +107613,589,artificial intelligence,1320728442 +107613,589,classic,1320728449 +107613,589,computers,1320728477 +107613,589,dystopia,1320728446 +107613,589,music,1320728465 +107613,589,robots,1320728473 +107613,589,visual effects,1320728457 +107613,592,80's,1320728912 +107613,592,atmospheric,1320728912 +107613,592,classic,1320728912 +107613,592,film noir,1320728912 +107613,592,honest,1320728912 +107613,592,stylized,1320728912 +107613,592,tense,1320728912 +107613,1562,camp,1320729114 +107613,1562,cheesy,1320729122 +107613,1562,silly,1320729114 +107613,1954,classic,1320728089 +107613,1954,honest,1320728066 +107613,1954,inspirational,1320728098 +107613,1954,real,1320728111 +107613,1954,working class,1320728084 +107613,3267,crime,1320729152 +107613,3267,directing,1320729156 +107613,3267,low budget,1320729146 +107613,3267,violence,1320729140 +107613,4886,cute,1320728254 +107613,4886,funny,1320728243 +107613,4886,innovative,1320728237 +107613,4886,music,1320728248 +107613,4886,original,1320728233 +107613,5903,apocalyptic,1320728870 +107613,5903,cinematography,1320728870 +107613,5903,cult fi,1320728870 +107613,5903,thought-provoking,1320728870 +107613,5903,totalitarianism,1320728870 +107613,7361,bittersweet,1320728963 +107613,7361,clever,1320728963 +107613,7361,dreamlike,1320728963 +107613,7361,original,1320728963 +107613,7361,philosophy,1320728963 +107613,7361,quirky,1320728963 +107613,7361,relationships,1320728963 +107613,7361,sci-fi,1320728963 +107613,7361,surreal,1320728963 +107613,7361,swearing,1320728967 +107613,7361,though provoking,1320728963 +107613,7502,friendship,1320728406 +107613,7502,realistic,1320728399 +107613,7502,though provoking,1320728419 +107613,7502,true story,1320728395 +107613,48774,apocalyptic,1320728745 +107613,48774,atmospheric,1320728712 +107613,48774,future,1320728767 +107613,48774,futuristic,1320728745 +107613,48774,Nudity (Topless),1320728775 +107613,48774,original,1320728767 +107613,48774,sci-fi,1320728767 +107613,48774,though-provoking,1320728767 +107613,50068,deep,1320728042 +107613,50068,honest,1320728029 +107613,50068,intimate,1320728040 +107613,50068,meditative,1320728026 +107613,50068,understated,1320728035 +107613,50872,clever,1320728131 +107613,50872,funny,1320728128 +107613,50872,imaginative,1320728137 +107613,55830,Below R,1320728193 +107613,55830,creativity,1320728199 +107613,55830,heartwarming,1320728176 +107613,55830,Michel Gondry,1320728166 +107613,55830,original,1320728161 +107613,55830,PG13,1320728206 +107613,55830,quirky,1320728182 +107613,55830,well intentioned,1320728193 +107613,57504,anime,1320728584 +107613,57504,friendship,1320728587 +107613,57504,heartwarming,1320728597 +107613,57504,original,1320728593 +107613,57504,time travel,1320728590 +107613,58559,authentic,1320728004 +107613,58559,seamless,1320727994 +107613,64614,culture clash,1320728809 +107613,64614,friendship,1320728809 +107613,64614,heartwarming,1320728809 +107613,64614,redemption,1320728809 +107613,64614,sacrifice,1320728809 +107613,70286,aliens,1320729073 +107613,70286,atmospheric,1320729073 +107613,70286,genetics,1320729073 +107613,70286,satire,1320729073 +107613,70286,sci-fi,1320729073 +107613,70286,social commentary,1320729073 +107613,70286,swearing,1320729077 +107613,87004,documentary,1320729027 +107613,87004,honest,1320729027 +107626,32,post-apocalyptic,1436195825 +107626,32,sci-fi,1436195815 +107626,32,time travel,1436195817 +107626,260,adventure,1436195556 +107626,260,sci-fi,1436195498 +107626,296,multiple storylines,1436214601 +107626,296,nonlinear,1436214613 +107626,541,atmospheric,1436214545 +107626,541,cyberpunk,1436214551 +107626,541,dystopia,1436214547 +107626,541,sci-fi,1436214549 +107626,608,black comedy,1436214694 +107626,608,Coen Brothers,1436214689 +107626,608,dark comedy,1436214692 +107626,750,black comedy,1436214707 +107626,750,cold war,1436214709 +107626,750,dark comedy,1436214706 +107626,750,satire,1436214705 +107626,750,Stanley Kubrick,1436214703 +107626,1199,atmospheric,1436214762 +107626,1199,black comedy,1436214754 +107626,1199,dark comedy,1436214756 +107626,1199,dreamlike,1436214760 +107626,1199,dystopia,1436214750 +107626,1199,satire,1436214766 +107626,1199,stylized,1436214772 +107626,1199,surreal,1436214752 +107626,1199,Terry Gilliam,1436214759 +107626,1199,thought-provoking,1436214757 +107626,1732,coen brothers,1436214881 +107626,1732,dark comedy,1436214883 +107626,2997,black comedy,1436214899 +107626,2997,dark comedy,1436214894 +107626,2997,surreal,1436214896 +107626,4027,coen brothers,1436214870 +107626,4027,great soundtrack,1436214872 +107626,4878,surreal,1436195863 +107626,4878,thought-provoking,1436195866 +107626,5989,Christopher Walken,1436214820 +107626,5989,Leonardo DiCaprio,1436214815 +107626,5989,Tom Hanks,1436214817 +107626,8874,British,1436214656 +107626,8874,british comedy,1436214655 +107626,8874,zombies,1436214651 +107626,48394,atmospheric,1436214780 +107626,48394,bittersweet,1436214784 +107626,48394,stylized,1436214786 +107626,48394,surreal,1436214778 +107626,51255,british comedy,1436214828 +107626,67997,british,1436214725 +107626,67997,intelligent,1436214727 +107626,67997,satire,1436214724 +107626,115713,sci-fi,1436196244 +107632,260,darth vader,1441694502 +107632,260,luke skywalker,1441694502 +107635,260,awesome,1434910643 +107640,1222,Kubrick,1173551265 +107659,260,#goo,1434796596 +107659,260,#nice,1434796638 +107688,260,scifi,1434491958 +107688,260,space action,1434491965 +107688,356,biographical style,1434492256 +107688,356,drama,1434492256 +107688,356,historical,1434492256 +107698,2490,gangsters,1378643652 +107698,2490,Mel Gibson,1378643650 +107698,2490,revenge,1378643656 +107698,5630,Anthony Hopkins,1378643567 +107698,5630,Edward Norton,1378643569 +107698,5630,Hannibal Lecter,1378643562 +107698,44694,Pedro Almodovar,1378649138 +107698,51662,atmospheric,1378648995 +107698,51662,stylized,1378649008 +107698,62849,good soundtrack,1378643968 +107698,62849,Guy Ritchie,1378643949 +107698,62849,twist ending,1378643959 +107698,80219,black comedy,1378643887 +107698,80219,dark humor,1378643875 +107698,83134,absurd,1378643996 +107698,83134,black comedy,1378643993 +107698,86898,confusing,1378643706 +107698,99114,Quentin Tarantino,1378644026 +107698,99114,Samuel L. Jackson,1378644033 +107700,260,good vs evil,1432500433 +107700,260,sci-fi,1432500405 +107700,260,space adventure,1432500425 +107700,260,space opera,1432500417 +107714,260,Akira Kurosawa influenced,1430997488 +107714,260,Boring,1430997482 +107715,260,classic,1437875402 +107719,34334,awesomely bad,1138572843 +107726,260,good vs evil,1430666558 +107726,260,Harrison Ford,1430666505 +107726,260,sci-fi,1430666538 +107729,1754,Denzel Washington,1222543983 +107729,2264,comedy,1220237004 +107729,2264,crime,1220237005 +107729,2264,Demi Moore,1220237005 +107729,2264,Robert De Niro,1220237005 +107729,2264,Sean Penn,1220236929 +107729,8645,Colombian,1221488894 +107729,50347,Colombian,1221488823 +107729,50347,crime,1221488823 +107729,50347,drugs,1221488823 +107729,50347,sex,1221488823 +107729,107955,narcotrafico,1421123736 +107729,107955,organized crime,1421123736 +107729,107955,spanish language,1421123736 +107733,2642,comic book,1149449050 +107733,2643,comic book,1149449057 +107733,3440,comic book,1149448823 +107733,4636,comic book,1149448913 +107733,7439,comic book,1149448915 +107733,37733,Comic Book adaption,1149448582 +107757,58559,action,1443433428 +107757,58559,Christian Bale,1443433443 +107757,58559,Heath Ledger,1443433412 +107757,58559,thriller,1443433452 +107757,58559,vigilante,1443433421 +107786,527,Steven Spielberg,1427260866 +107817,260,adventure,1430432298 +107817,260,fantasy,1430432294 +107817,260,sci-fi,1430432282 +107827,58347,fairy tale,1315066582 +107827,58347,modern fantasy,1315066589 +107828,91500,action,1437400631 +107828,91500,dystopia,1437400631 +107828,91500,science fiction,1437400631 +107828,106489,adventure,1424015327 +107828,106489,fable,1424015327 +107828,106489,fantasy,1424015327 +107834,33162,beautiful cinematography,1290521761 +107834,33162,production design,1290521760 +107834,53000,Robert Carlyle,1290522638 +107834,53000,The sound design,1290522625 +107834,56145,Drags on,1290522680 +107834,56145,The ending,1290522686 +107866,113240,intellectual,1437239760 +107866,113240,long,1437239760 +107866,113240,slow,1437239760 +107873,44,video game adaptation,1209022091 +107873,393,video game adaptation,1209022097 +107873,546,video game adaptation,1209022101 +107873,1681,video game adaptation,1209022094 +107873,2549,video game adaptation,1209022104 +107873,4241,video game adaptation,1209022281 +107873,4367,video game adaptation,1209022088 +107873,4446,video game adaptation,1209022066 +107873,5219,video game adaptation,1209022070 +107873,5463,Post apocalyptic,1212560840 +107873,6564,video game adaptation,1209022085 +107873,6872,video game adaptation,1209022082 +107873,8861,Post apocalyptic,1212560782 +107873,8861,video game adaptation,1209022065 +107873,31424,video game adaptation,1209022075 +107873,33834,Post apocalyptic,1212560811 +107873,37380,video game adaptation,1209022078 +107873,42721,video game adaptation,1209022159 +107873,45081,video game adaptation,1209022197 +107873,55257,video game adaptation,1209022150 +107873,57326,video game adaptation,1209022171 +107899,155,wonderful surprise movie,1149141810 +107899,45447,make up your own mind. See it,1149142045 +107900,253,Brad Pitt,1281906815 +107900,253,fantasy,1281906845 +107900,253,Kirsten Dunst,1281906814 +107900,253,Nudity (Full Frontal),1281906820 +107900,253,Tom Cruise,1281906831 +107900,253,vampire,1281906826 +107900,253,vampires,1281906825 +107900,300,based on a true story,1272675666 +107900,300,corruption,1272675675 +107900,300,Robert Redford,1272675668 +107900,380,action,1338811452 +107900,380,Arnold Schwarzenegger,1338811447 +107900,380,espionage,1338811460 +107900,589,apocalypse,1280248768 +107900,589,Arnold Schwarzenegger,1280248797 +107900,589,nuclear war,1280248778 +107900,589,sci-fi,1280248771 +107900,593,psychology,1271286743 +107900,593,serial killer,1271286738 +107900,736,action,1366490181 +107900,736,adventure,1366490181 +107900,736,Bill Paxton,1366490183 +107900,736,dialogue,1366490184 +107900,736,disaster,1366490187 +107900,736,Helen Hunt,1292028656 +107900,736,natural disaster,1366490387 +107900,736,Philip Seymour Hoffman,1366490213 +107900,736,science,1292028645 +107900,736,Tornado,1366490384 +107900,736,tornados,1366490385 +107900,832,acting,1367919720 +107900,832,action,1367919723 +107900,832,Mel Gibson,1367919714 +107900,832,Rene Russo,1367919710 +107900,908,adventure,1352678211 +107900,908,AFI 100,1352678209 +107900,908,Alfred Hitchcock,1352678169 +107900,908,aviation,1352678214 +107900,908,Cary Grant,1352678173 +107900,908,classic,1352678185 +107900,908,Hitchcock,1352678188 +107900,908,mystery,1352678181 +107900,908,National Film Registry,1352678206 +107900,908,thriller,1352678191 +107900,908,trains,1352678195 +107900,908,visually appealing,1352678198 +107900,933,Alfred Hitchcock,1352678236 +107900,933,anti-hero,1352678244 +107900,933,Cary Grant,1352678234 +107900,933,cat burglar,1352678287 +107900,933,Hitchcock,1352678258 +107900,933,murder,1352678262 +107900,933,Oscar (Best Cinematography),1352678267 +107900,933,Oscar:Cinematography,1352678268 +107900,933,perrot library,1352678271 +107900,933,scene:rendezvous in flower market,1352678282 +107900,933,VistaVision,1352678299 +107900,953,black and white,1370383508 +107900,953,Christmas,1370383521 +107900,953,classic,1370383518 +107900,953,heartwarming,1370383502 +107900,953,idealism,1370383485 +107900,953,imdb top 250,1370383482 +107900,953,inspirational,1370383471 +107900,953,James Stewart,1370383470 +107900,953,small town,1370383473 +107900,953,World War II,1370383478 +107900,1068,noir thriller,1367914720 +107900,1101,Meg Ryan,1279047273 +107900,1101,Oscar (Best Music - Original Song),1279047270 +107900,1101,Val Kilmer,1279047284 +107900,1129,action,1348006708 +107900,1129,chaos,1348006714 +107900,1129,dark,1348006712 +107900,1129,dystopia,1348006702 +107900,1129,evil government,1348006720 +107900,1129,future,1348006758 +107900,1129,Kurt Russell,1348006749 +107900,1129,new york,1348006704 +107900,1129,sci-fi,1348006731 +107900,1129,snake plissken,1348006736 +107900,1178,anti-war,1360958682 +107900,1178,bad acting,1360958691 +107900,1178,based on a book,1360958712 +107900,1178,Best War Films,1360958686 +107900,1178,black and white,1360958718 +107900,1178,court,1360958723 +107900,1178,courtroom,1360958725 +107900,1178,Kirk Douglas,1360958741 +107900,1178,military,1360958752 +107900,1178,Stanley Kubrick,1360958751 +107900,1178,war,1360958753 +107900,1178,world war I,1360958755 +107900,1198,adventure,1272320879 +107900,1198,archaeology,1272320885 +107900,1198,comedy,1272320895 +107900,1198,imdb top 250,1272320924 +107900,1198,indiana jones,1272320874 +107900,1198,Steven Spielberg,1272320914 +107900,1198,World War II,1272320916 +107900,1199,black comedy,1251922140 +107900,1199,dreams,1251922177 +107900,1199,sci-fi,1251922151 +107900,1199,surreal,1251922154 +107900,1201,Clint Eastwood,1281906782 +107900,1201,complex characters,1281906784 +107900,1201,Ennio Morricone,1281906777 +107900,1201,Sergio Leone,1281906788 +107900,1214,aliens,1275942114 +107900,1214,androids,1275942121 +107900,1214,atmospheric,1275942123 +107900,1214,futuristic,1275942131 +107900,1214,horror,1275942136 +107900,1214,imdb top 250,1275942140 +107900,1214,Oscar (Best Effects - Visual Effects),1275942146 +107900,1214,Ridley Scott,1275942152 +107900,1214,sci-fi,1275942159 +107900,1214,science fiction,1275942163 +107900,1214,space,1275942168 +107900,1214,space travel,1275942166 +107900,1250,classic,1369346506 +107900,1250,POWs,1369346534 +107900,1250,true story,1369346528 +107900,1250,war,1369346527 +107900,1250,World War II,1369346529 +107900,1250,WWII,1369346533 +107900,1291,Adventure,1292715403 +107900,1291,archaeology,1292715402 +107900,1291,Nazis,1292715417 +107900,1291,Sean Connery,1292715418 +107900,1408,excellent historical depiction,1251503054 +107900,1408,Michael Mann,1251503057 +107900,1408,soundtrack,1251503048 +107900,1459,Clint Eastwood,1274564943 +107900,1459,Ed Harris,1274564946 +107900,1459,Gene Hackman,1274564955 +107900,1459,Laura Linney,1274564991 +107900,1876,apocalypse,1292028685 +107900,2160,Antichrist,1359159698 +107900,2160,Atmospheric,1359159696 +107900,2160,horror,1359159686 +107900,2160,imdb top 250,1359159684 +107900,2160,Oscar (Best Supporting Actress),1359159682 +107900,2160,religion,1359159673 +107900,2160,satanism,1359159659 +107900,2160,scary,1359159662 +107900,2160,suspense,1359159665 +107900,2376,007,1241301455 +107900,2376,007 (series),1241301489 +107900,2376,assassin,1241301562 +107900,2376,Bond,1241301459 +107900,2376,Desmond Llewelyn,1241301565 +107900,2376,franchise,1241301569 +107900,2376,james bond,1241301463 +107900,2376,John Glen,1241301551 +107900,2376,killer as protagonist,1241301555 +107900,2376,murder,1241301575 +107900,2376,Roger Moore,1241301549 +107900,2529,Charlton Heston,1319757338 +107900,2529,dystopia,1319757324 +107900,2529,far future,1319757327 +107900,2529,paranoid,1319757350 +107900,2529,post-apocalyptic,1319757332 +107900,2530,doomsday,1326240310 +107900,2530,post-apocalyptic,1326240345 +107900,2947,007,1295731109 +107900,2947,007 (series),1295731105 +107900,2947,action,1295731104 +107900,2947,adventure,1295731103 +107900,2947,Bond,1295731111 +107900,2947,james bond,1295731114 +107900,2947,Sean Connery,1295731117 +107900,2947,spy,1295731122 +107900,2947,Spy Thriller,1295731123 +107900,2947,spying,1295731127 +107900,2948,007,1295188490 +107900,2948,007 (series),1295188489 +107900,2948,Bond,1295188438 +107900,2948,espionage,1295188496 +107900,2948,james bond,1295188443 +107900,2948,Sean Connery,1295188444 +107900,2948,series:James Bond,1295188451 +107900,2951,Clint Eastwood,1275240376 +107900,2951,Ennio Morricone,1275240380 +107900,2951,Great movie,1275240384 +107900,2951,Sergio Leone,1275240381 +107900,2951,western,1275240402 +107900,3032,bad acting,1408176106 +107900,3032,Charlton Heston,1408176110 +107900,3032,epidemic,1408176138 +107900,3032,last man on earth,1408176113 +107900,3032,Nudity (Rear),1408176130 +107900,3032,Nudity (Topless),1408176127 +107900,3032,old,1408176116 +107900,3032,post-apocalyptic,1408176120 +107900,3068,courtroom drama,1278978181 +107900,3347,Alaska,1271794397 +107900,3347,biologists,1271794398 +107900,3347,sad but good,1271794405 +107900,3347,wilderness,1271794413 +107900,3347,wolves,1271794414 +107900,3361,baseball,1366583407 +107900,3361,dialogue driven,1366583427 +107900,3361,Kevin Costner,1366583402 +107900,3361,Nudity (Topless),1366583417 +107900,3361,sport:Baseball,1366583408 +107900,3361,sports,1366583412 +107900,3361,tim robbins,1366583414 +107900,3391,Golden Raspberry (Worst Actress),1241356600 +107900,3391,James Foley,1241356619 +107900,3391,Madonna,1241356615 +107900,3508,classic,1271419540 +107900,3508,Clint Eastwood,1271419515 +107900,3508,eastwood,1271419521 +107900,3508,western,1271419527 +107900,3519,World War II,1251572692 +107900,3635,Bond,1255211821 +107900,3635,james bond,1255211822 +107900,3635,Lotus Esprits,1255211802 +107900,3635,nuclear bomb,1255211819 +107900,3635,spy,1255211817 +107900,3635,submarine,1255211805 +107900,3836,anti-hero,1368199079 +107900,3836,Clint Eastwood,1368199086 +107900,3836,Donald Sutherland,1368199092 +107900,3836,Humor,1368199110 +107900,3836,Seen more than once,1368199122 +107900,3836,Telly Savalas,1368199141 +107900,3836,World War II,1368199160 +107900,3952,Christian Slater,1285885783 +107900,3952,Gary Oldman,1285885781 +107900,3952,Jeff Bridges,1285885778 +107900,3952,Joan Allen,1285885797 +107900,3952,political drama,1285885741 +107900,3952,politics,1285885776 +107900,3952,thriller,1285885770 +107900,4056,Benicio Del Toro,1275166158 +107900,4056,heartbreaking,1275166166 +107900,4056,Helen Mirren,1275166170 +107900,4056,Jack Nicholson,1275166174 +107900,4056,Mickey Rourke,1275166184 +107900,4189,jesus,1367914596 +107900,4326,1960's Jim Crow,1436732324 +107900,4326,Alan Parker,1436732338 +107900,4326,based on a true story,1436732318 +107900,4326,civil rights,1436732297 +107900,4326,Gene Hackman,1436732311 +107900,4326,ku klux klan,1436732304 +107900,4326,racism,1436732308 +107900,4326,true story,1436732336 +107900,4326,Willem Dafoe,1436732328 +107900,4407,great history movie,1358541873 +107900,4407,James Belushi,1358542105 +107900,4407,James Woods,1358541859 +107900,4407,Not quite a great history flim-I knew doc rock and he has never been to Salvador-only his friend-he hates stone too,1358541879 +107900,4407,Oliver Stone,1358541797 +107900,4407,South America,1358541794 +107900,4531,Arnold Schwarzenegger,1344403217 +107900,4531,James Belushi,1344403220 +107900,4776,bad cop,1369087107 +107900,4776,corruption,1369087115 +107900,4776,denzel washington,1369087038 +107900,4776,Ethan Hawke,1369087056 +107900,4776,Notable Nudity,1369087091 +107900,4776,Nudity (Topless - Brief),1369087091 +107900,4776,Nudity (Topless),1369087095 +107900,4776,Oscar (Best Actor),1369087057 +107900,4776,plot,1369087071 +107900,4776,police,1369087070 +107900,4776,police corruption,1369087068 +107900,4866,Robert Redford,1258761639 +107900,5008,a little over the top at times,1358721760 +107900,5008,adapted from:book,1358721749 +107900,5008,Agatha Christie,1358721733 +107900,5008,author:Agatha Christie,1358721734 +107900,5008,based on a play,1358721744 +107900,5008,Billy Wilder,1358721739 +107900,5008,Charles Laughton,1358721807 +107900,5008,court,1358721813 +107900,5008,courtroom,1358721814 +107900,5008,courtroom drama,1358721818 +107900,5008,crime,1358721821 +107900,5008,imdb top 250,1358721823 +107900,5008,Marlene Dietrich,1358721832 +107900,5630,acting,1399761128 +107900,5630,Anthony Hopkins,1399761121 +107900,5630,blindness,1399761133 +107900,5630,Edward Norton,1399761123 +107900,5630,emily watson,1399761170 +107900,5630,FBI,1399761164 +107900,5630,gore,1399761166 +107900,5630,Harvey Keitel,1399761161 +107900,5630,Mary-Louise Parker,1399761171 +107900,5630,Philip Seymour Hoffman,1399761129 +107900,5630,psychology,1399761149 +107900,5630,Ralph Fiennes,1399761146 +107900,5630,remake,1399761143 +107900,5630,serial killer,1399761138 +107900,5882,treasure,1367914638 +107900,5899,History,1298148904 +107900,5899,Michael Caine,1298148898 +107900,5899,war,1298148909 +107900,6683,bollywood,1367914559 +107900,7217,noir thriller,1367914720 +107900,7223,noir thriller,1367914720 +107900,7570,Roger Moore,1289249143 +107900,7570,setting:circus performance,1289249139 +107900,7570,setting:train,1289249160 +107900,7570,trains,1289249157 +107900,7570,unfunny comedy,1289249394 +107900,7573,007 (series),1301771612 +107900,7573,terrible bond,1301771648 +107900,7698,Jack Lemmon,1339278147 +107900,7698,Jane Fonda,1339278139 +107900,7698,Michael Douglas,1339278142 +107900,7698,nuclear disaster films,1339278149 +107900,8167,treasure,1367914638 +107900,8972,Diane Kruger,1274276511 +107900,8972,Masons,1274276507 +107900,8972,secret societies,1274276479 +107900,8972,treasure,1274276485 +107900,8972,treasure hunt,1274276489 +107900,25927,noir thriller,1367914721 +107900,27822,stranded,1367914749 +107900,32596,treasure,1367914639 +107900,34405,Firefly,1253908021 +107900,34405,great dialogue,1253908023 +107900,34405,sci-fi,1253908009 +107900,34405,space,1253908007 +107900,44555,1980s,1349128655 +107900,44555,Cold War,1349128648 +107900,44555,complex characters,1349128662 +107900,44555,corruption,1349128666 +107900,44555,East Germany,1349128682 +107900,44555,Germany,1349128674 +107900,44555,imdb top 250,1349128671 +107900,44555,Nudity (Topless - Brief),1349128689 +107900,44555,Nudity (Topless),1349128693 +107900,44555,Oscar (Best Foreign Language Film),1349128696 +107900,44555,Oscar Winner,1349128699 +107900,44555,spies,1349128701 +107900,44555,spying,1349128702 +107900,44555,Stasi,1349128704 +107900,44555,suicide,1349128711 +107900,44555,surveillance,1349128716 +107900,46335,bad acting,1385913571 +107900,46335,cars,1385913567 +107900,46335,drifting,1385913579 +107900,46335,fantasy,1385913581 +107900,46335,sequel,1385913590 +107900,46335,stupid,1385913603 +107900,46335,stylish,1385913601 +107900,46335,Tokyo,1385913597 +107900,46972,Ben Stiller,1241893042 +107900,46972,museum,1241893060 +107900,46972,Robin Williams,1241893070 +107900,46976,Dustin Hoffman,1336856761 +107900,46976,fantasy,1336856766 +107900,46976,Maggie Gyllenhaal,1336856776 +107900,46976,narrated,1336856783 +107900,52806,fantasy,1314227982 +107900,52806,slavery,1314227986 +107900,54785,Danny Trejo,1355152471 +107900,54785,gave new depth to Michael Mayers,1355152529 +107900,54785,Nudity (Full Frontal),1355152478 +107900,54785,over the top,1355152555 +107900,54785,plot holes,1355152570 +107900,54785,poorly executed,1355152492 +107900,54785,remake,1355152481 +107900,54785,Rob Zombie,1355152485 +107900,54785,serial killer,1355152497 +107900,54785,slasher,1355152501 +107900,54785,subgenre:slasher,1355152504 +107900,54785,teens,1355152508 +107900,54785,violent,1355152558 +107900,56775,Helen Mirren,1338191701 +107900,56775,Nicolas Cage,1338191697 +107900,56775,treasure hunt,1338191711 +107900,56775,villain with southern accent,1338191708 +107900,57951,treasure,1367914638 +107900,59615,adventure,1271692303 +107900,59615,aliens,1271692246 +107900,59615,archaeology,1271692314 +107900,59615,indiana jones,1271692300 +107900,59615,sequel,1271692275 +107900,59615,silly,1271692271 +107900,59615,stupid,1271692289 +107900,61236,good ending,1284754650 +107900,64034,Child Murder,1332282272 +107900,64034,childish naivity,1332282263 +107900,64034,Friendship,1332282266 +107900,64034,good acting,1332282280 +107900,64034,history,1332282278 +107900,64034,Holocaust,1332282282 +107900,64034,irony,1332282285 +107900,64034,Nazi,1332282287 +107900,64034,Nazi Germany,1332282289 +107900,64034,Nazis,1332282292 +107900,64034,sad,1332282322 +107900,64034,very sad,1332282326 +107900,64034,World War II,1332282304 +107900,64614,classic car,1258322830 +107900,64614,ClearPlay,1258322860 +107900,64614,Clint Eastwood,1258322837 +107900,64614,gangsters,1258322842 +107900,68791,action,1298105739 +107900,68791,bad acting,1298105682 +107900,68791,bad script,1256856520 +107900,68791,franchise,1298105722 +107900,68791,post-apocalyptic,1256856503 +107900,68791,robots,1298105717 +107900,68791,sci-fi,1256856508 +107900,68791,sequel,1298105704 +107900,68791,weak plot,1256856519 +107900,68954,adventure,1256949851 +107900,68954,storytelling,1256949859 +107900,69640,1930s,1361143471 +107900,69640,bank robbery,1361143475 +107900,69640,based on a book,1361143503 +107900,69640,christian bale,1361143483 +107900,69640,digital editing,1361143495 +107900,69640,gangsters,1361143488 +107900,69640,Great Depression,1361143498 +107900,69640,handheld cameras,1361143511 +107900,69640,Handycam,1361143512 +107900,69640,Johnny Depp,1361143484 +107900,69640,Marion Cotillard,1361143517 +107900,69640,Michael Mann,1361143520 +107900,69640,monotonous,1361143533 +107900,69640,pacing,1361143524 +107900,69640,ridiculous,1361143530 +107900,69640,romance,1361143526 +107900,69640,slow pace,1361143535 +107900,69640,true story,1361143538 +107900,70208,Hawaii,1256508997 +107900,72378,audience intelligence underestimated,1267029450 +107900,72378,bad science,1267029439 +107900,72378,sci-fi,1267029470 +107900,72378,science fiction,1267029477 +107900,72378,thriller,1267029479 +107900,73321,Bible,1296567127 +107900,73321,Christianity,1296567131 +107900,73321,Denzel Washington,1275259210 +107900,73321,dystopic future,1275259214 +107900,73321,future,1275259221 +107900,73321,Mila Kunis,1275259208 +107900,73321,plot holes,1275259202 +107900,73321,post-apocalyptic,1275259180 +107900,73321,religious propaganda,1296567136 +107900,74458,ending twist,1274303756 +107900,74545,espionage,1279487077 +107900,77837,Al Pacino,1278889297 +107900,77837,biography,1278889339 +107900,77837,John Goodman,1278889313 +107900,77837,made for TV,1278889305 +107900,77837,Susan Sarandon,1278889320 +107900,77837,true story,1278889301 +107900,78469,bad science,1288393167 +107900,78469,cheesy,1288393173 +107900,78469,full of goofs,1288393182 +107900,78469,Liam Neeson,1288393216 +107900,78469,unlimited bullets,1288393179 +107900,79057,action,1285804898 +107900,79057,Adrien Brody,1285804904 +107900,79057,Alice Braga,1285804910 +107900,79057,bad plot,1285804961 +107900,79057,bad science,1285804852 +107900,79057,childish plot,1285804920 +107900,79057,Danny Trejo,1285804864 +107900,79057,Laurence Fishburne,1285804873 +107900,79057,predator,1285804881 +107900,79293,sleeper agent,1282776182 +107900,79293,Soviet Union,1282776183 +107900,79293,US President,1282776185 +107900,79695,acting,1289345801 +107900,79695,action,1289345764 +107900,79695,action packed,1289345761 +107900,79695,Arnold Schwarzenegger,1289345738 +107900,79695,Bruce Willis,1289345731 +107900,79695,Dolph Lundgren,1289345723 +107900,79695,Jason Statham,1289345722 +107900,79695,Jet Li,1289345751 +107900,79695,Mickey Rourke,1289345721 +107900,79695,seaplane,1289345829 +107900,79695,Story,1289345714 +107900,79695,Sylvester Stallone,1289345719 +107900,79695,too unrealistic,1289345874 +107900,79720,australian,1337376838 +107900,79720,plot,1337376817 +107900,80126,George Clooney,1296661506 +107900,80126,Italy,1296661507 +107900,80126,landscape,1296661509 +107900,80126,retro,1296661522 +107900,80126,slow,1296661544 +107900,80363,3d,1290549061 +107900,80363,adapted from:video game,1290549051 +107900,80363,Airplane,1290549244 +107900,80363,Big dude with large hammer,1290549145 +107900,80363,clones,1290549047 +107900,80363,Milla Jovovich,1290549043 +107900,80363,not ended,1290549029 +107900,80363,physics,1290549024 +107900,80363,resident evil,1290549033 +107900,80363,virus,1290549037 +107900,80363,zombies,1290549039 +107900,80489,one dimensional characters except for Affleck. Ending trite.,1296507493 +107900,80489,too much love interest,1296507500 +107900,81932,Christian Bale,1350252643 +107900,81932,Mark Wahlberg,1350252646 +107900,81932,true story,1350252651 +107900,86332,mythology,1315340943 +107900,86332,predictable,1315340930 +107900,86332,Special Effects,1315340937 +107900,86644,car chase,1314519086 +107900,86644,cars,1314519088 +107900,86644,unrealistic,1314519081 +107900,86880,treasure,1367914638 +107900,87306,audience intelligence underestimated,1335815712 +107900,87306,black man dies,1335815707 +107900,87306,child actor,1335815771 +107900,87306,predictable,1335815811 +107900,87306,sci-fi,1335815745 +107900,88125,magic,1332110474 +107900,89492,Brad Pitt,1339961243 +107900,89492,father daughter relationship,1339961288 +107900,89492,intelligent,1339961278 +107900,89492,math,1339961281 +107900,89492,Philip Seymour Hoffman,1339961248 +107900,89492,Realistic,1339961272 +107900,89492,slow,1339961267 +107900,89492,underdog,1339961307 +107900,89745,action,1348436979 +107900,89745,cgi,1348436980 +107900,89745,Gwyneth Paltrow,1348436975 +107900,89745,humorous,1348436971 +107900,89745,Marvel,1348436968 +107900,89745,New York City,1348436963 +107900,89745,predictable,1348436954 +107900,89745,Robert Downey Jr.,1348436927 +107900,89745,Samuel L. Jackson,1348436948 +107900,89745,Scarlett Johansson,1348436930 +107900,89745,silly,1348436988 +107900,89745,superhero,1348436935 +107900,89745,visually appealing,1348436937 +107900,89745,visually stunning,1348436939 +107900,89745,watch the credits,1348436942 +107900,89753,atmosphere,1331757157 +107900,89753,Beautifully shot,1331757139 +107900,89753,Cold War,1331757141 +107900,89753,Colin Firth,1331757146 +107900,89753,Gary Oldman,1331757137 +107900,89753,Spies,1331757153 +107900,90376,bad acting,1349303869 +107900,90376,bad pacing,1349303875 +107900,90376,disjointed,1349303889 +107900,90376,disjointed timeline,1349303893 +107900,90376,disturbing,1349303898 +107900,90376,good acting,1349303904 +107900,90376,insanity,1349303912 +107900,90376,metaphors,1349303916 +107900,90376,nihilism,1349303920 +107900,90376,psychological,1349303923 +107900,90376,unrealistic character motivation,1349303937 +107900,90376,violence,1349303940 +107900,90746,action,1331578685 +107900,90746,adapted from:book series,1331578686 +107900,90746,alcoholism,1331578688 +107900,90746,animation,1331578658 +107900,90746,childish,1331578652 +107900,90746,dogs,1331578678 +107900,90746,friendship,1331578679 +107900,90746,Journalist,1331578693 +107900,90746,kidnapping,1331578697 +107900,90746,motion capture,1331578698 +107900,90746,Planes,1331578674 +107900,90746,treasure,1367914638 +107900,90746,treasure hunt,1331578667 +107900,91485,action,1350319384 +107900,91485,cast,1350319391 +107900,91485,dialogue,1350319372 +107900,91485,jokes,1350319375 +107900,91485,sequel,1350319381 +107900,91500,adapted from:book,1348957262 +107900,91500,based on a book,1348957266 +107900,91500,cheesy,1348957268 +107900,91500,dialogue,1348957294 +107900,91500,drama,1348957298 +107900,91500,dystopia,1348957300 +107900,91500,ending,1348957321 +107900,91500,Happy ending,1348957325 +107900,91500,intense,1348957340 +107900,91500,love,1348957346 +107900,91500,reality TV,1348957348 +107900,91500,rich and poor,1348957352 +107900,91500,science fiction,1348957356 +107900,91500,slow paced,1348957359 +107900,91500,social commentary,1348957364 +107900,91500,thriller,1348957369 +107900,91500,visually stunning,1348957374 +107900,91500,Woody Harrelson,1348957379 +107900,91542,unrealistic,1337364297 +107900,91542,Weak plot,1337364299 +107900,91658,hacking,1339873360 +107900,91658,murder,1339873356 +107900,91658,mystery,1339873355 +107900,91658,rape,1339873342 +107900,91658,revenge,1339873348 +107900,91658,serial killer,1339873346 +107900,91658,thriller,1339873352 +107900,91976,stranded,1367914749 +107900,94864,aliens,1348263161 +107900,94864,Charlize Theron,1348263156 +107900,94864,exploration,1348263152 +107900,94864,predictable,1348263111 +107900,94864,reckless scientists,1348263452 +107900,94864,religious overtones,1348263112 +107900,94864,Ridley Scott,1348263115 +107900,94864,scary,1348263117 +107900,94864,scifi,1348263116 +107900,94864,self-sacrifice,1348263121 +107900,94864,set design,1348263127 +107900,94864,space travel,1348263136 +107900,94864,technology,1348263139 +107900,96610,Bruce Willis,1356737411 +107900,96610,clever,1356737426 +107900,96610,complicated plot,1356737428 +107900,96610,dystopia,1356737431 +107900,96610,future,1356737446 +107900,96610,gore,1356737448 +107900,96610,Joseph Gordon-Levitt,1356737453 +107900,96610,mother-son relationship,1356737460 +107900,96610,organized crime,1356737465 +107900,96610,plot holes,1356737467 +107900,96610,sci-fi,1356737472 +107900,96610,science fiction,1356737473 +107900,96610,Shanghai,1356737475 +107900,96610,tense,1356737477 +107900,96610,thriller,1356737479 +107900,96610,time travel,1356737480 +107900,96610,violent,1356737482 +107900,96610,visually appealing,1356737484 +107900,96691,bad acting,1356207794 +107900,96691,bad cgi,1356207798 +107900,96691,bad dialogue,1356207801 +107900,96691,bad fights,1356207803 +107900,96691,Based on Video Game,1356207806 +107900,96691,Michelle Rodriguez,1356207818 +107900,96691,Milla Jovovich,1356207828 +107900,96691,no suspense,1356207837 +107900,96691,pointless,1356207840 +107900,96691,stylized,1356207844 +107900,96728,acting,1364238307 +107900,96728,Amy Adams,1364238303 +107900,96728,beautiful,1364238301 +107900,96728,confusing,1364238298 +107900,96728,great performances,1364238311 +107900,96728,Joaquin Phoenix,1364238313 +107900,96728,not audience friendly,1364238297 +107900,96728,Philip Seymour Hoffman,1364238290 +107900,96728,slow,1364238294 +107900,96728,visually appealing,1364238320 +107900,96737,based on a comic,1356737376 +107900,96737,Dystopia,1356737374 +107900,96737,Karl Urban,1356737371 +107900,96737,Olivia Thirlby,1356737369 +107900,96737,police corruption,1356737355 +107900,96737,post-apocalyptic,1356737337 +107900,96737,sci-fi,1356737340 +107900,96811,camerawork,1356220042 +107900,97304,1970s,1361740465 +107900,97304,1980s,1361740469 +107900,97304,Ben Affleck,1361740475 +107900,97304,cia,1361740477 +107900,97304,drama,1361740478 +107900,97304,espionage,1361740481 +107900,97304,father-son relationship,1361740485 +107900,97304,funny,1361740487 +107900,97304,hostage,1361740492 +107900,97304,Iran,1361740494 +107900,97304,John Goodman,1361740498 +107900,97304,Los Angeles,1361740500 +107900,97304,Middle East,1361740502 +107900,97304,revolution,1361740515 +107900,97304,thriller,1361740516 +107900,97304,true story,1361740510 +107900,97923,alcoholism,1361740443 +107900,97923,Atlanta,1361740446 +107900,97923,Denzel Washington,1361740440 +107900,97923,pilot,1361740457 +107900,97923,plane crash,1361740455 +107900,97938,stranded,1367914749 +107900,98809,adapted from:book,1369170221 +107900,98809,adventure,1369170209 +107900,98809,animal attacks,1369170214 +107900,98809,based on a book,1369170218 +107900,98809,beautiful scenery,1369170141 +107900,98809,epic,1369170171 +107900,98809,exaggerated,1369170148 +107900,98809,fantasy,1369170145 +107900,98809,fantasy world,1369170167 +107900,98809,franchise,1369170225 +107900,98809,long,1369170161 +107900,98809,magic,1369170164 +107900,98809,music,1369170154 +107900,98809,New Zealand,1369170153 +107900,98809,Peter Jackson,1369170151 +107900,98809,scenic,1369170156 +107900,99112,Action,1374440826 +107900,99112,cleavage,1374440827 +107900,99112,Good Ending,1374440837 +107900,99112,Justice,1374440822 +107900,99112,story,1374440831 +107900,99112,Tom Cruise,1374440823 +107900,99112,without romance,1374440833 +107900,100244,anti-corporation,1378882491 +107900,100244,cliched,1378882487 +107900,100244,ecological,1378882484 +107900,100244,Ellen Page,1378882459 +107900,100244,emotional,1378882462 +107900,100244,friendship,1378882467 +107900,100244,loyalty,1378882469 +107900,100244,relationships,1378882471 +107900,100244,revenge,1378882479 +107900,100244,spying,1378882474 +107900,100244,terrorism,1378882478 +107900,101362,acting,1376862510 +107900,101362,Ashley Judd,1376862500 +107900,101362,cliche,1376862474 +107900,101362,Gerard Butler,1376862498 +107900,101362,Gratuitous Violence,1376862490 +107900,101362,Morgan Freeman,1376862487 +107900,101362,predictable,1376862484 +107900,101362,Special Effects,1376862482 +107900,101362,weak plot,1376862477 +107900,101864,action,1377113620 +107900,101864,adapted from:comic,1377113616 +107900,101864,adventure,1377113612 +107900,101864,aliens,1377113610 +107900,101864,cliche ending,1377113657 +107900,101864,cloning,1377113653 +107900,101864,dystopia,1377113600 +107900,101864,motorcycle,1377113642 +107900,101864,nuclear bomb,1377113646 +107900,101864,post-apocalyptic,1377113627 +107900,101864,sci-fi,1377113601 +107900,101864,space,1377113606 +107900,101864,technology,1377113638 +107900,101864,Tom Cruise,1377113607 +107900,101864,twists & turns,1377113631 +107900,102125,action,1377365161 +107900,102125,action packed,1377365158 +107900,102125,audience intelligence underestimated,1377365151 +107900,102125,bad science,1377365146 +107900,102125,Ben Kingsley,1377365206 +107900,102125,Don Cheadle,1377365170 +107900,102125,funny,1377365244 +107900,102125,Gwyneth Paltrow,1377365197 +107900,102125,Robert Downey Jr.,1377365200 +107900,102125,silly,1377365211 +107900,102125,superhero,1377365217 +107900,102125,terrorism,1377365220 +107900,102445,aliens,1377290199 +107900,102445,based on a TV show,1377290190 +107900,102445,fast paced,1377290169 +107900,102445,franchise,1377290178 +107900,102445,John Cho,1377290149 +107900,102445,Leonard Nimoy,1377290151 +107900,102445,nightclub,1377290139 +107900,102445,PG-13,1377290136 +107900,102445,predictable,1377290129 +107900,102445,revenge,1377290132 +107900,102445,space,1377290113 +107900,102445,Star Trek,1377290109 +107900,102716,action,1376949403 +107900,102716,airplane,1376949355 +107900,102716,cars,1376949360 +107900,102716,dialogue,1376949364 +107900,102716,Dominic Toretto,1376949378 +107900,102716,franchise,1376949380 +107900,102716,tank,1376949392 +107900,102716,Vin Diesel,1376949395 +107900,103228,aliens,1388961365 +107900,103228,childish,1388961381 +107900,103228,cinematography,1388961360 +107900,103228,composer,1388961355 +107900,103228,disappointing,1388961324 +107900,103228,effects,1388961327 +107900,103228,giant robots,1388961347 +107900,103228,happy ending,1388961319 +107900,103228,music,1388961322 +107900,103228,plot holes,1388961314 +107900,103228,ridiculous,1388961335 +107900,103228,robots,1388961333 +107900,103228,ROBOTS AND ANDROIDS,1388961339 +107900,103228,silly,1388961318 +107900,103228,visually appealing,1388961345 +107900,103253,bad acting,1389562750 +107900,103253,cliche characters,1389562752 +107900,103253,cyborgs,1389562754 +107900,103253,dystopia,1389562755 +107900,103253,exo-skeleton,1389562757 +107900,103253,future,1389562761 +107900,103253,great cast,1389562712 +107900,103253,implausible,1389562726 +107900,103253,Jodie Foster,1389562744 +107900,103253,Matt Damon,1389562734 +107900,103253,medicine,1389562737 +107900,103253,military,1389562738 +107900,103253,poverty,1389562741 +107900,103253,robots,1389562766 +107900,103253,science fiction,1389562709 +107900,103253,slum,1389562773 +107900,103253,social commentary,1389562707 +107900,103253,space station,1389562785 +107900,103253,underrated,1389562792 +107900,103253,visually stunning,1389562709 +107900,103306,aliens,1377199489 +107900,103306,space,1377199492 +107900,103339,cliche,1381691774 +107900,103751,business,1375338653 +107900,103751,mining,1375338668 +107900,103751,nature,1375338649 +107900,104841,3D,1388615508 +107900,104841,bad science,1388615452 +107900,104841,cinematography,1388615453 +107900,104841,George Clooney,1388615498 +107900,104841,intense,1388615503 +107900,104841,pace,1388615467 +107900,104841,physics,1388615458 +107900,104841,religion,1388615462 +107900,104841,sandra bullock,1388615494 +107900,104841,sci-fi,1388615478 +107900,104841,science,1388615479 +107900,104841,Simple,1388615482 +107900,104841,suspense,1388615455 +107900,104841,visually appealing,1388615454 +107900,104841,visually stunning,1388615473 +107900,104841,zero gravity,1388615475 +107900,106072,aliens,1398628530 +107900,106072,bad science,1398628525 +107900,106072,Chris Hemsworth,1398628514 +107900,106072,humor,1398628487 +107900,106072,humorous,1398628485 +107900,106072,Kat Dennings,1398628482 +107900,106072,Marvel Cinematic Universe,1398628461 +107900,106072,Natalie Portman,1398628458 +107900,106072,quirky,1398628454 +107900,106072,siblings,1398628451 +107900,106072,superhero,1398628446 +107900,106072,unrealistic,1398628439 +107900,106072,visually appealing,1398628444 +107900,106072,visually stunning,1398628436 +107900,106072,watch the credits,1398628411 +107900,107141,character development,1410288141 +107900,107141,Disney,1410288155 +107900,107141,Emma Thompson,1410288159 +107900,107141,historical,1410288162 +107900,107141,movie business,1410288167 +107900,107141,Tom Hanks,1410288165 +107900,108945,Religious Profanity,1415397911 +107900,108945,remake,1415397929 +107900,108945,science fiction,1415397903 +107900,109850,cars,1409945916 +107900,109850,video game adaptation,1409945919 +107900,112623,action,1406400724 +107900,112623,CGI,1406400718 +107900,112623,emotional,1406400720 +107900,112623,genetics,1406400721 +107900,112623,Matt Reeves,1406400728 +107900,112623,sci-fi,1406400737 +107900,112623,virus,1406400734 +107900,112852,childish,1418333310 +107900,112852,fun,1418333288 +107900,112852,great soundtrack,1418333268 +107900,112852,Marvel,1418333279 +107900,112852,sci-fi,1418333291 +107900,112852,space,1418333270 +107900,116797,Alan Turing,1425243793 +107900,116797,Computers,1425243806 +107900,116797,cryptography,1425243790 +107900,116797,genius,1425243804 +107900,116797,history,1425243807 +107900,116797,homosexuality,1425243800 +107900,116797,Keira Knightley,1425243817 +107900,116797,World War II,1425243789 +107909,32,future,1326946693 +107909,32,genetics,1326946675 +107909,32,post-apocalyptic,1326946645 +107909,32,psychology,1326946650 +107909,32,time travel,1326946656 +107909,296,assassin,1326944835 +107909,296,Black comedy,1326944803 +107909,296,Bruce Willis,1326944845 +107909,296,dark comedy,1326944770 +107909,296,drugs,1326944830 +107909,296,Mafia,1326944824 +107909,296,multiple storylines,1326944785 +107909,296,nonlinear,1326944782 +107909,296,quirky,1326944806 +107909,296,Samuel L. Jackson,1326944788 +107909,296,violence,1326944853 +107909,541,cyberpunk,1326946888 +107909,541,dystopia,1326946896 +107909,541,existentialism,1326946900 +107909,1243,existentialism,1326945502 +107909,1243,meta,1326946175 +107909,1243,quirky,1326945515 +107909,1243,smart comedy,1326945509 +107909,1243,stoppard,1326945667 +107909,1243,witty,1326945512 +107909,1552,Steve Buscemi,1326946046 +107909,1732,bowling,1326944902 +107909,1732,Coen Brothers,1326944897 +107909,1732,dark comedy,1326944922 +107909,1732,marijuana,1326944935 +107909,1732,Philip Seymour Hoffman,1326944895 +107909,1732,quirky,1326944905 +107909,1732,satirical,1326944931 +107909,2959,Brad Pitt,1326945146 +107909,2959,Edward Norton,1326945154 +107909,2959,mental illness,1326945137 +107909,2959,philosophical,1326945133 +107909,2959,psychology,1326945103 +107909,2959,quirky,1326945128 +107909,2959,social commentary,1326945125 +107909,2959,twist ending,1326945120 +107909,5902,dark comedy,1326945047 +107909,5902,John Cusack,1326945054 +107909,5902,meta,1326946467 +107909,5902,quirky,1326945035 +107909,5902,surreal,1326945041 +107909,6440,Coen Brothers,1326944982 +107909,6440,Enigmatic,1326944974 +107909,6440,John Goodman,1326944961 +107909,6440,john turturro,1326944966 +107909,6440,twist,1326944990 +107909,6440,wry,1326944986 +107909,48780,nonlinear,1326946743 +107909,48780,twist ending,1326946766 +107909,70286,aliens,1326946846 +107909,70286,intelligent,1326946834 +107909,70286,social commentary,1326946821 +107930,1719,Incest,1340614467 +107930,1719,wintry,1340614480 +107930,1959,Oscar (Best Cinematography),1358880190 +107930,2541,Femme Fatale,1345076691 +107930,2541,Ryan Philippe,1345076699 +107930,2541,Seduction,1345076687 +107930,3176,creepy,1346810456 +107930,3176,crime,1346810458 +107930,3176,Jude Law,1346810448 +107930,3176,Matt Damon,1346810452 +107930,3176,Philip Seymour Hoffman,1346810444 +107930,3176,psychology,1346810447 +107930,3275,cult classic,1345441184 +107930,3275,dark humor,1345441187 +107930,3275,Irish accent,1345441204 +107930,3275,organized crime,1345441176 +107930,3275,religion,1345441192 +107930,3275,siblings,1345441202 +107930,3275,stylized,1345441195 +107930,3275,vigilante,1345441179 +107930,4369,cars,1358829453 +107930,4369,Paul Walker,1358829456 +107930,4369,street race,1358829457 +107930,5463,Christian Bale,1351915074 +107930,6773,animation,1349258842 +107930,7044,Nicolas Cage,1345441547 +107930,8491,50's & 60's,1335953354 +107930,8784,Natalie Portman,1349576338 +107930,8784,quirky romantic,1349576328 +107930,8784,Zach Braff,1349576327 +107930,33004,whimsical,1344766553 +107930,33004,witty,1344766556 +107930,33004,Zooey Deschanel,1344766545 +107930,33794,atmospheric,1349162615 +107930,33794,Christian Bale,1349162578 +107930,33794,comic book,1349162602 +107930,33794,crime,1349162594 +107930,33794,dark,1349162580 +107930,33794,stylized,1349162590 +107930,33794,thought-provoking,1349162587 +107930,33794,vigilante,1349162585 +107930,34271,black,1345975617 +107930,34271,hip hop,1345975619 +107930,34271,music,1345975614 +107930,34271,Oscar (Best Music - Original Song),1345975637 +107930,34271,pursuing a dream,1345975633 +107930,34271,urban,1345975623 +107930,34271,vocalists,1345975626 +107930,38061,dark comedy,1341635320 +107930,38061,funny,1341635324 +107930,38061,Robert Downey Jr.,1341635315 +107930,43917,dogs,1345975294 +107930,44665,Film Noir,1347697310 +107930,44665,gangsters,1347697324 +107930,44665,mistaken identity,1347697363 +107930,44665,Morgan Freeman,1347697300 +107930,44665,organized crime,1347697351 +107930,44665,Revenge,1347697307 +107930,44665,stylized,1347697302 +107930,44665,thriller,1347697349 +107930,44665,violent,1347697358 +107930,48043,alternate reality,1362124767 +107930,48043,dreamlike,1362124763 +107930,48043,Music,1362124779 +107930,48043,thought-provoking,1362124773 +107930,48043,visually appealing,1362124770 +107930,48856,best films you never heard of,1349255324 +107930,48856,Robert Downey Jr.,1349255319 +107930,48856,Shia LaBeouf,1349255332 +107930,51540,Robert Downey Jr,1349258037 +107930,53318,alternate reality,1363836928 +107930,53318,art student as protagonist,1363836932 +107930,53318,british,1363836925 +107930,53318,surrealism,1363836937 +107930,55052,emotional,1340614201 +107930,55052,great cinematography,1340614198 +107930,55052,historical,1340614217 +107930,55052,imagination,1340614245 +107930,55052,James McAvoy,1335953710 +107930,55052,Period piece,1340614208 +107930,55052,Sexualized violence,1340614187 +107930,55052,Tragedy,1340614195 +107930,55052,war,1340614211 +107930,65130,abortion,1344663234 +107930,65130,depressing,1344663220 +107930,65130,infidelity,1344663237 +107930,67734,Kristen Stewart,1349509476 +107930,80549,Emma Stone,1345076751 +107930,80549,sexuality,1345076753 +107930,80549,witty,1345076756 +107930,81932,boxing,1345975929 +107930,81932,Christian Bale,1345975909 +107930,81932,drama,1345975957 +107930,81932,Mark Wahlberg,1345975923 +107930,84152,Bradley Cooper,1358482332 +107930,84152,cinematography,1358482333 +107930,84152,drugs,1358482335 +107930,84152,smart drugs,1358482339 +107930,84152,thought provoking,1358482337 +107930,86332,comic book,1335952043 +107930,86332,Marvel,1335952053 +107930,86332,superhero,1335952062 +107930,87405,angst,1345975180 +107930,87405,dark comedy,1345975187 +107930,87405,drugs,1345975177 +107930,87405,indie,1345975183 +107930,87405,Josh Lucas,1345975191 +107930,87405,mystery,1345975171 +107930,87405,quirky,1345975174 +107930,87405,sociopathic,1345975200 +107930,88129,cinematography,1335953402 +107930,88129,crime,1335953417 +107930,88129,Dark,1335953414 +107930,88129,ryan gosling,1335953406 +107930,88129,visually appealing,1335953408 +107930,89745,comic book,1337932022 +107930,89745,Robert Downey Jr.,1337932010 +107930,89745,superhero,1337932016 +107930,89745,visually stunning,1337932032 +107930,89774,Boxing story,1345441011 +107930,89774,Joel Edgerton,1345441005 +107930,89774,MMA,1345441061 +107930,89774,sports,1345441019 +107930,89804,loyalty,1347090339 +107930,89804,Phillip Seymour Hoffman,1347090328 +107930,89804,Ryan Gosling,1347090315 +107930,89804,smart,1347090318 +107930,89804,trust,1347090348 +107930,90249,feel-good,1341635395 +107930,90249,Hugh Jackman,1341635383 +107930,90471,chris evans,1345975480 +107930,90471,drugs,1345975477 +107930,90471,lawyers,1345975475 +107930,90471,sad ending,1345975486 +107930,91542,great cinematography,1350103601 +107930,91542,Jude Law,1350103598 +107930,91542,Robert Downey Jr.,1350103595 +107930,91873,feel-good,1423433744 +107930,91873,heartwarming,1423433744 +107930,91873,predictable,1423433744 +107930,97921,Bradley Cooper,1358333183 +107930,97921,Jennifer Lawrence,1358333188 +107930,97921,serious topics,1358333191 +107930,97921,understandable characters,1358333197 +107945,260,Boring,1439797528 +107945,260,classic,1439797536 +107979,1271,women,1170707712 +107979,5992,mental illness,1170707778 +107998,492,Diane Keaton,1305476873 +107998,57274,infection,1258364438 +107998,57274,virus,1258364445 +107998,57274,zombies,1258364437 +107998,80363,3d,1284455871 +107998,80363,adapted from:video game,1284455905 +107998,80363,clones,1284455899 +107998,80363,Milla Jovovich,1284455890 +107998,80363,not ended,1284455886 +107998,80363,physics,1284455883 +107998,80363,resident evil,1284455873 +107998,80363,virus,1284455878 +107998,80363,zombies,1284455880 +108000,109487,father-daughter conflict,1445199682 +108000,109487,Murphy's Law,1445199640 +108001,67197,aliens,1252943989 +108001,67197,Nicolas Cage,1252943991 +108001,67197,sci-fi,1252943986 +108004,32,complicated,1438926810 +108004,32,dystopia,1438926797 +108004,32,future,1438926814 +108004,32,mindfuck,1438926790 +108004,32,Post apocalyptic,1438926794 +108004,32,post-apocalyptic,1438926807 +108004,32,psychology,1438926812 +108004,32,sci-fi,1438926796 +108004,32,time loop,1438926788 +108004,32,time travel,1438926781 +108004,32,twist ending,1438926805 +108004,1127,sci-fi,1439356108 +108004,1127,thought-provoking,1439356112 +108004,1127,Underwater,1439356105 +108004,1197,classic,1438929895 +108004,1197,comedy,1438929893 +108004,1197,Cult classic,1438929884 +108004,1197,fantasy,1438929889 +108004,1197,Quirky,1438929888 +108004,1197,Quotable,1438929898 +108004,1197,romance,1438929891 +108004,1197,whimsical,1438929905 +108004,1197,witty,1438929908 +108004,1222,anti-war,1438930215 +108004,1222,Stanley Kubrick,1438930205 +108004,1356,Patrick Stewart,1438925385 +108004,1356,sci-fi,1438925383 +108004,1356,space,1438925388 +108004,1356,Star Trek,1438925380 +108004,1356,time travel,1438925382 +108004,1591,comic book,1438998587 +108004,1591,super hero,1438998585 +108004,2105,alternate reality,1438925009 +108004,2105,classic,1438925011 +108004,2105,computer animation,1438925008 +108004,2105,computers,1438925001 +108004,2105,cyberpunk,1438925002 +108004,2105,hackers,1438925006 +108004,2105,Jeff Bridges,1438924998 +108004,2105,original plot,1438925013 +108004,2105,sci-fi,1438925004 +108004,2105,technology,1438925005 +108004,2105,virtual reality,1438924999 +108004,2571,action,1438924641 +108004,2571,alternate reality,1438924633 +108004,2571,artificial intelligence,1438924632 +108004,2571,computers,1438924651 +108004,2571,cult film,1438924649 +108004,2571,cyberpunk,1438924626 +108004,2571,dark hero,1438924653 +108004,2571,dystopia,1438924624 +108004,2571,fantasy,1438924655 +108004,2571,fight scenes,1438924656 +108004,2571,Hugo Weaving,1438924673 +108004,2571,Keanu Reeves,1438924639 +108004,2571,martial arts,1438924629 +108004,2571,philosophical,1438924642 +108004,2571,philosophy,1438924628 +108004,2571,post apocalyptic,1438924644 +108004,2571,post-apocalyptic,1438924635 +108004,2571,sci-fi,1438924621 +108004,2571,science fiction,1438924665 +108004,2571,Special Effects,1438924658 +108004,2571,stylized,1438924646 +108004,2571,surreal,1438924637 +108004,2571,thought-provoking,1438924638 +108004,2571,virtual reality,1438924623 +108004,2571,visually stunning,1438924663 +108004,2571,Wachowski Brothers,1438924662 +108004,3300,anti-hero,1438924884 +108004,3300,futuristic,1438924889 +108004,3300,Riddick,1438924893 +108004,3300,sci-fi,1438924885 +108004,3300,suspense,1438924891 +108004,3717,cars,1438925931 +108004,3717,Nicolas Cage,1438925934 +108004,3994,mindfuck,1438926546 +108004,3994,Samuel L. Jackson,1438926540 +108004,3994,superhero,1438926538 +108004,3994,twist ending,1438926542 +108004,3994,unique,1438926544 +108004,4878,alternate timeline,1438924283 +108004,4878,complicated,1438924313 +108004,4878,DARK,1438924315 +108004,4878,jake gyllenhaal,1438924309 +108004,4878,mindfuck,1438924298 +108004,4878,mystery,1438924312 +108004,4878,philosophy,1438924303 +108004,4878,psychological,1438924292 +108004,4878,psychology,1438924277 +108004,4878,satirical,1438924289 +108004,4878,sci-fi,1438924285 +108004,4878,social commentary,1438924305 +108004,4878,surreal,1438924275 +108004,4878,thought-provoking,1438924280 +108004,4878,time travel,1438924273 +108004,4878,twist ending,1438924300 +108004,5574,action,1438925921 +108004,5574,car chase,1438925923 +108004,5574,cars,1438925919 +108004,5574,Good action,1438925922 +108004,5574,Jason Statham,1438925918 +108004,5618,alternate reality,1438925276 +108004,5618,beautiful,1438925280 +108004,5618,fantasy,1438925274 +108004,5618,surreal,1438925272 +108004,5618,whimsical,1438925278 +108004,6157,Action,1438926975 +108004,6157,dark,1438926978 +108004,6157,dark hero,1438926969 +108004,6157,heroine in tight suit,1438926983 +108004,6157,marvel,1438926977 +108004,6157,super hero,1438926973 +108004,6157,superhero,1438926966 +108004,6378,action,1438925949 +108004,6378,cars,1438925957 +108004,6378,Charlize Theron,1438925953 +108004,6378,Edward Norton,1438925947 +108004,6378,heist,1438925946 +108004,6378,Jason Statham,1438925943 +108004,6378,twists & turns,1438925944 +108004,6754,action,1438925822 +108004,6754,Dark,1438925819 +108004,6754,gothic,1438925816 +108004,6754,heroine in tight suit,1438925817 +108004,6754,Kate Beckinsale,1438925820 +108004,6754,vampire,1438925813 +108004,6754,vampires,1438925811 +108004,6754,werewolves,1438925814 +108004,6874,action,1438925554 +108004,6874,martial arts,1438925539 +108004,6874,masterpiece,1438925534 +108004,6874,nonlinear,1438925556 +108004,6874,Quentin Tarantino,1438925537 +108004,6874,quirky,1438925559 +108004,6874,tarantino,1438925536 +108004,6874,violent,1438925552 +108004,6874,visually appealing,1438925542 +108004,7254,alternate endings,1438925230 +108004,7254,alternate reality,1438925210 +108004,7254,Bittersweet,1438925233 +108004,7254,Child abuse,1438925225 +108004,7254,intense,1438925239 +108004,7254,love,1438925229 +108004,7254,memory,1438925216 +108004,7254,Mystery,1438925220 +108004,7254,psychology,1438925215 +108004,7254,sci-fi,1438925212 +108004,7254,science fiction,1438925237 +108004,7254,suspense,1438925222 +108004,7254,thought-provoking,1438925238 +108004,7254,time travel,1438925208 +108004,7254,twist ending,1438925213 +108004,7254,twists & turns,1438925218 +108004,7438,action,1438925522 +108004,7438,Quentin Tarantino,1438925506 +108004,7438,quirky,1438925520 +108004,7438,stylized,1438925515 +108004,7438,tarantino,1438925517 +108004,7438,twist ending,1438925511 +108004,7438,violence,1438925512 +108004,7438,visually appealing,1438925509 +108004,7454,gothic,1438925839 +108004,7454,Hugh Jackman,1438925838 +108004,7454,Kate Beckinsale,1438925841 +108004,7454,steampunk,1438925842 +108004,7454,vampires,1438925835 +108004,7454,werewolves,1438925837 +108004,8371,action,1438924931 +108004,8371,Judi Dench,1438924929 +108004,8371,Riddick,1438924933 +108004,8371,sci-fi,1438924936 +108004,8371,space,1438924927 +108004,8636,action,1438926856 +108004,8636,dark hero,1438926869 +108004,8636,Kirsten Dunst,1438926855 +108004,8636,marvel,1438926863 +108004,8636,super-hero,1438926859 +108004,8636,superhero,1438926866 +108004,8636,superheroes,1438926858 +108004,8636,vigilante,1438926864 +108004,31221,comic book,1438927044 +108004,31221,marvel,1438927042 +108004,31221,superhero,1438927041 +108004,31696,angels,1438929584 +108004,31696,demons,1438929585 +108004,31696,gothic,1438929590 +108004,31696,heaven and hell,1438929600 +108004,31696,Keanu Reeves,1438929582 +108004,31696,mythology,1438929595 +108004,31696,supernatural,1438929588 +108004,31696,surreal,1438929592 +108004,32587,Action,1438925574 +108004,32587,black comedy,1438925600 +108004,32587,dark,1438925596 +108004,32587,Jessica Alba,1438925586 +108004,32587,multiple storylines,1438925582 +108004,32587,Nudity (Topless),1438925588 +108004,32587,Quentin Tarantino,1438925577 +108004,32587,stylized,1438925580 +108004,32587,superhero,1438925592 +108004,32587,surreal,1438925598 +108004,32587,surrealism,1438925572 +108004,32587,visually appealing,1438925569 +108004,37386,dystopia,1438925984 +108004,37386,dystopic future,1438925996 +108004,37386,female warriors,1438925997 +108004,37386,heroine in tight suit,1438925993 +108004,37386,Post apocalyptic,1438925992 +108004,37386,post-apocalyptic,1438925990 +108004,37386,sci-fi,1438925988 +108004,37386,stylized,1438925987 +108004,37386,visually appealing,1438925986 +108004,44191,dark,1438925661 +108004,44191,dystopia,1438925653 +108004,44191,Hugo Weaving,1438925681 +108004,44191,inspirational,1438925666 +108004,44191,philosophical,1438925672 +108004,44191,philosophy,1438925658 +108004,44191,sci-fi,1438925675 +108004,44191,social commentary,1438925663 +108004,44191,super-hero,1438925677 +108004,44191,thought-provoking,1438925656 +108004,44191,visually appealing,1438925659 +108004,48780,Christian Bale,1438924556 +108004,48780,complicated,1438924581 +108004,48780,dark,1438924560 +108004,48780,David Bowie,1438924591 +108004,48780,magic,1438924558 +108004,48780,mystery,1438924568 +108004,48780,nonlinear,1438924565 +108004,48780,obsession,1438924588 +108004,48780,psychological,1438924572 +108004,48780,Scarlett Johansson,1438924578 +108004,48780,sci-fi,1438924595 +108004,48780,steampunk,1438924563 +108004,48780,teleportation,1438924570 +108004,48780,thriller,1438924585 +108004,48780,twist ending,1438924562 +108004,48780,twists & turns,1438924593 +108004,49278,paradox,1440032085 +108004,49278,sci-fi,1440032084 +108004,49278,time travel,1440032082 +108004,51412,jessica biel,1438927446 +108004,51412,Nicolas Cage,1438927454 +108004,51412,plot twist,1438927431 +108004,51412,psychic powers,1438927429 +108004,51412,supernatural powers,1438927427 +108004,51412,time travel,1438927424 +108004,53464,Jessica Alba,1438926944 +108004,53464,Marvel,1438926943 +108004,53464,superhero,1438926945 +108004,53464,superheroes,1438926947 +108004,55908,christianity,1438925101 +108004,55908,excellent script,1438925126 +108004,55908,immortality,1438925087 +108004,55908,intellectual,1438925085 +108004,55908,intelligent,1438925089 +108004,55908,low budget,1438925120 +108004,55908,philosophical,1438925081 +108004,55908,psychological,1438925124 +108004,55908,sci-fi,1438925094 +108004,55908,thought-provoking,1438925083 +108004,55908,unique,1438925096 +108004,58025,teleportation,1438927484 +108004,58559,action,1438925749 +108004,58559,Batman,1438925754 +108004,58559,Christian Bale,1438925756 +108004,58559,dark,1438925757 +108004,58559,Michael Caine,1438925770 +108004,58559,Morgan Freeman,1438925751 +108004,58559,psychology,1438925752 +108004,58559,stylized,1438925764 +108004,58559,superhero,1438925759 +108004,58559,thriller,1438925761 +108004,58559,vigilante,1438925766 +108004,58559,violence,1438925771 +108004,58559,violent,1438925768 +108004,60040,Edward Norton,1438926877 +108004,60040,Liv Tyler,1438926883 +108004,60040,superhero,1438926880 +108004,60040,The Avengers,1438926881 +108004,60684,alternate history,1438925626 +108004,60684,alternate reality,1438925624 +108004,60684,dystopia,1438925613 +108004,60684,Nudity (Topless),1438925618 +108004,60684,sci-fi,1438925616 +108004,60684,social commentary,1438925620 +108004,60684,stylized,1438925622 +108004,60684,superhero,1438925615 +108004,60684,vigilantism,1438925644 +108004,65682,action,1438925864 +108004,65682,gothic,1438925861 +108004,65682,Kate Beckinsale,1438925889 +108004,65682,vampires,1438925859 +108004,65682,werewolves,1438925862 +108004,66171,action,1438927472 +108004,66171,psychic powers,1438927470 +108004,68157,black comedy,1438925426 +108004,68157,dark comedy,1438925442 +108004,68157,gratuitous violence,1438925449 +108004,68157,great acting,1438925430 +108004,68157,Quentin Tarantino,1438925421 +108004,68157,satire,1438925423 +108004,68157,tarantino,1438925445 +108004,68157,unusual plot structure,1438925436 +108004,68157,visually appealing,1438925438 +108004,68237,artificial intelligence,1438926733 +108004,68237,depressing,1438926747 +108004,68237,dystopia,1438926729 +108004,68237,future,1438926743 +108004,68237,isolation,1438926738 +108004,68237,melancholy,1438926722 +108004,68237,plot twist,1438926724 +108004,68237,psychological,1438926744 +108004,68237,psychology,1438926731 +108004,68237,Sci-fi,1438926727 +108004,68237,science,1438926749 +108004,68237,space,1438926728 +108004,68237,technology,1438926754 +108004,68237,thought-provoking,1438926750 +108004,68237,twist ending,1438926725 +108004,68319,action,1438926894 +108004,68319,comic book,1438926900 +108004,68319,Comic Book adaption,1438926899 +108004,68319,hugh jackman,1438926893 +108004,68319,Marvel,1438926896 +108004,68319,Patrick Stewart,1438926905 +108004,68319,sci-fi,1438926897 +108004,68319,superhero,1438926891 +108004,68358,action,1438925343 +108004,68358,adventure,1438925366 +108004,68358,alternate reality,1438925344 +108004,68358,big budget,1438925365 +108004,68358,future,1438925336 +108004,68358,Leonard Nimoy,1438925333 +108004,68358,sci fi,1438925363 +108004,68358,sci-fi,1438925341 +108004,68358,space,1438925338 +108004,68358,space travel,1438925346 +108004,68358,Star Trek,1438925340 +108004,68358,teleportation,1438925354 +108004,68358,time travel,1438925337 +108004,68358,visually appealing,1438925350 +108004,72998,3d,1438926607 +108004,72998,beautiful,1438926626 +108004,72998,beautiful scenery,1438926615 +108004,72998,cgi,1438926622 +108004,72998,cliched plot,1438926673 +108004,72998,effects,1438926659 +108004,72998,environmental,1438926620 +108004,72998,futuristic,1438926609 +108004,72998,graphic design,1438926613 +108004,72998,incredible 3D,1438926631 +108004,72998,music,1438926654 +108004,72998,mythology,1438926664 +108004,72998,predictable,1438926604 +108004,72998,romance,1438926657 +108004,72998,scenic,1438926636 +108004,72998,sci-fi,1438926611 +108004,72998,science fiction,1438926624 +108004,72998,special effects,1438926629 +108004,72998,superficial plot,1438926642 +108004,72998,thought-provoking,1438926627 +108004,72998,visual,1438926634 +108004,72998,visually stunning,1438926606 +108004,72998,visuals,1438926632 +108004,74789,alternate reality,1438929950 +108004,74789,Anne Hathaway,1438929964 +108004,74789,beautiful,1438929961 +108004,74789,fantasy,1438929955 +108004,74789,great visuals,1438929957 +108004,74789,Helena Bonham Carter,1438929948 +108004,74789,Johnny Depp,1438929945 +108004,74789,visually appealing,1438929954 +108004,74789,visuals,1438929962 +108004,74789,weird,1438929952 +108004,79132,action,1438924475 +108004,79132,alternate reality,1438924461 +108004,79132,cerebral,1438924526 +108004,79132,clever,1438924477 +108004,79132,complicated,1438924469 +108004,79132,fantasy,1438924483 +108004,79132,great soundtrack,1438924515 +108004,79132,Hans Zimmer,1438924503 +108004,79132,intellectual,1438924492 +108004,79132,Intense,1438924487 +108004,79132,makes you think,1438924538 +108004,79132,memory,1438924509 +108004,79132,mindfuck,1438924467 +108004,79132,multiple realities,1438924541 +108004,79132,music,1438924524 +108004,79132,philosophy,1438924478 +108004,79132,psychological,1438924507 +108004,79132,psychology,1438924481 +108004,79132,sci-fi,1438924471 +108004,79132,science fiction,1438924530 +108004,79132,soundtrack,1438925158 +108004,79132,surreal,1438924464 +108004,79132,thought-provoking,1438924466 +108004,79132,thriller,1438924498 +108004,79132,twist ending,1438924484 +108004,79132,unpredictable,1438924496 +108004,79132,visually appealing,1438924460 +108004,79132,visually stunning,1438924501 +108004,82461,alternate reality,1438924961 +108004,82461,artificial intelligence,1438924959 +108004,82461,computers,1438924963 +108004,82461,cyberpunk,1438924974 +108004,82461,daft punk,1438924945 +108004,82461,epic,1438924978 +108004,82461,futuristic,1438924946 +108004,82461,hot ladies,1438924982 +108004,82461,Jeff Bridges,1438924949 +108004,82461,music,1438924951 +108004,82461,Olivia Wilde,1438924969 +108004,82461,sci-fi,1438924948 +108004,82461,soundtrack,1438924958 +108004,82461,stylized,1438924965 +108004,82461,technology,1438924967 +108004,82461,video games,1438924976 +108004,82461,virtual reality,1438924952 +108004,82461,visually appealing,1438924956 +108004,85056,action,1438927510 +108004,85056,sci-fi,1438927509 +108004,85056,superhero,1438927504 +108004,85056,supernatural,1438927506 +108004,90405,dystopia,1438924787 +108004,90405,future,1438924790 +108004,90405,immortality,1438924788 +108004,90405,original,1438924797 +108004,90405,sci-fi,1438924786 +108004,90405,social commentary,1438924793 +108004,90405,thought-provoking,1438924792 +108004,90405,time,1438924796 +108004,91529,Batman,1438925694 +108004,91529,Christian Bale,1438925693 +108004,91529,dark,1438925708 +108004,91529,dystopia,1438925716 +108004,91529,great ending,1438925709 +108004,91529,Hans Zimmer,1438925719 +108004,91529,intense,1438925714 +108004,91529,Michael Caine,1438925701 +108004,91529,Morgan Freeman,1438925706 +108004,91529,plot twist,1438925704 +108004,91529,superhero,1438925697 +108004,94864,Charlize Theron,1438924855 +108004,94864,intelligent,1438924867 +108004,94864,intense,1438924865 +108004,94864,Noomi Rapace,1438924860 +108004,94864,Ridley Scott,1438924852 +108004,94864,sci fi,1438924869 +108004,94864,sci-fi,1438924857 +108004,94864,scifi,1438924850 +108004,94864,space travel,1438924854 +108004,94864,technology,1438924848 +108004,96610,clever,1438924698 +108004,96610,complicated,1438924712 +108004,96610,dystopia,1438924703 +108004,96610,future,1438924705 +108004,96610,original,1438924700 +108004,96610,sci-fi,1438924706 +108004,96610,science fiction,1438924709 +108004,96610,telekinesis,1438924717 +108004,96610,thriller,1438924711 +108004,96610,time travel,1438924693 +108004,96610,visually appealing,1438924696 +108004,97752,atmospheric,1438925049 +108004,97752,complicated,1438925054 +108004,97752,dystopia,1438925050 +108004,97752,future,1438925068 +108004,97752,multiple roles,1438925061 +108004,97752,multiple storylines,1438925045 +108004,97752,philosophy,1438925053 +108004,97752,social commentary,1438925058 +108004,97752,thought-provoking,1438925056 +108004,97752,visually appealing,1438925047 +108004,97752,Wachowski Brothers,1438925139 +108004,99114,action,1438925488 +108004,99114,Humour,1438925480 +108004,99114,Over the top,1438925484 +108004,99114,Quentin Tarantino,1438925470 +108004,99114,Samuel L. Jackson,1438925474 +108004,99114,violence,1438925472 +108004,99114,visually appealing,1438925491 +108004,102125,Ben Kingsley,1438924169 +108004,102125,Iron Man,1438924179 +108004,102125,Marvel,1438924192 +108004,102125,Robert Downey Jr.,1438924171 +108004,102125,robots,1438924182 +108004,102125,superhero,1438924173 +108004,102125,visually appealing,1438924187 +108004,103253,cyborgs,1438924820 +108004,103253,dystopia,1438924814 +108004,103253,future,1438924822 +108004,103253,robots,1438924825 +108004,103253,sci-fi,1438924827 +108004,103253,science fiction,1438924818 +108004,103253,social commentary,1438924819 +108004,103253,unnecessary violence,1438924829 +108004,103253,visually stunning,1438924816 +108004,104129,martial arts,1439438359 +108004,104243,Nudity (Topless),1438924915 +108004,104841,3D effects,1438924433 +108004,104841,beautiful,1438924436 +108004,104841,intense,1438924423 +108004,104841,physics,1438924430 +108004,104841,sci-fi,1438924428 +108004,104841,score,1438924440 +108004,104841,space,1438924418 +108004,104841,visually appealing,1438924416 +108004,104841,visually stunning,1438924445 +108004,109487,ambitious,1438930035 +108004,109487,Anne Hathaway,1438930010 +108004,109487,artificial intelligence,1438930011 +108004,109487,black hole,1438930042 +108004,109487,Deus Ex Machina Ending,1438930062 +108004,109487,epic,1438930053 +108004,109487,good science,1438930008 +108004,109487,Hans Zimmer,1438930020 +108004,109487,love,1438930046 +108004,109487,Masterpiece,1438930022 +108004,109487,philosophical issues,1438930016 +108004,109487,physics,1438930007 +108004,109487,relativity,1438930026 +108004,109487,sci-fi,1438930024 +108004,109487,science fiction,1438930017 +108004,109487,sentimental,1438930014 +108004,109487,space,1438930003 +108004,109487,space travel,1438930037 +108004,109487,thought-provoking,1438930028 +108004,109487,time travel,1438930013 +108004,109487,time-travel,1438930005 +108004,109487,twist ending,1438930051 +108004,109487,visually appealing,1438930033 +108004,109487,wormhole,1438930030 +108004,110730,artificial intelligence,1438924765 +108004,110730,nano-technology,1438924768 +108004,111759,action,1438925321 +108004,111759,Emily Blunt,1438924372 +108004,111759,future,1438925324 +108004,111759,original plot,1438924375 +108004,111759,powersuit,1438924380 +108004,111759,Reluctant Hero,1438924378 +108004,111759,sci-fi,1438924384 +108004,111759,time loop,1438924363 +108004,111759,time travel,1438924365 +108004,114935,mindfuck,1438926322 +108004,114935,science fiction,1438926325 +108004,114935,time travel,1438926320 +108004,114935,twist ending,1438926323 +108004,122882,action,1438927548 +108004,122882,charlize theron,1438927553 +108004,122882,Colourful apocalypse,1438927561 +108004,122882,dystopian,1438927555 +108004,122882,non-stop,1438927566 +108004,122882,over the top,1438927579 +108004,122882,post apocalypse,1438927550 +108004,122882,special effects,1438927559 +108004,122882,visually appealing,1438927552 +108010,44761,clever,1262205213 +108010,44761,detective movie,1262205204 +108010,44761,film noir,1262205201 +108010,44761,self-mocking,1262205208 +108010,44761,slang,1262205222 +108010,44761,stylized,1262205227 +108018,43007,art,1424923435 +108018,43007,heist,1424923435 +108018,43007,painting,1424923435 +108018,68358,childish,1242887194 +108018,68358,good camera,1242887160 +108018,68358,good editing,1242887171 +108018,68358,incoherent,1242887254 +108018,68358,naive,1242887177 +108018,68358,tongue in cheek,1242887308 +108018,68791,action,1244273558 +108018,68791,cheesy morals,1244273666 +108018,68791,effects,1244273564 +108018,68791,incongruous,1244273527 +108018,68791,madmax,1244273434 +108018,68791,post-apocalyptic,1244273622 +108018,68791,sci-fi,1244273577 +108018,72998,beatutiful,1262593471 +108018,72998,dazzling,1262593400 +108018,72998,detail,1262593284 +108018,72998,immersive,1262593411 +108018,103721,aliens,1447312724 +108018,103721,apocalypse,1447312719 +108018,116138,corruption,1439180355 +108018,116138,politics,1439180364 +108018,116138,social commentary,1439180360 +108019,260,cult classic,1444159700 +108019,260,space adventure,1444159723 +108019,260,space opera,1444159693 +108029,32,dystopia,1437128825 +108029,32,psychology,1437128831 +108029,32,time travel,1437128815 +108029,32,twist ending,1437128822 +108029,296,assassin,1437130148 +108029,296,Black comedy,1437130136 +108029,296,dark comedy,1437130129 +108029,296,multiple storylines,1437130133 +108029,296,nonlinear,1437130131 +108029,296,stylized,1437130149 +108029,1265,existentialism,1437129977 +108029,1265,surreal,1437129971 +108029,1265,time loop,1437129969 +108029,1265,time travel,1437129972 +108029,1680,nonlinear,1437130174 +108029,2011,sci-fi,1437130230 +108029,2011,time travel,1437130228 +108029,2012,sci-fi,1437130204 +108029,2012,time travel,1437130201 +108029,2012,western,1437130208 +108029,2052,Disney,1437130059 +108029,2052,halloween,1437130065 +108029,2052,witches,1437130054 +108029,2174,black comedy,1437129209 +108029,2174,comedy,1437129213 +108029,2174,death,1437129228 +108029,2174,ghosts,1437129220 +108029,2174,ghosts/afterlife,1437129217 +108029,2174,haunted house,1437129216 +108029,2174,supernatural,1437129232 +108029,2174,surreal,1437129226 +108029,2174,Tim Burton,1437129206 +108029,2174,weird,1437129222 +108029,2232,mindfuck,1437129626 +108029,2232,paranoia,1437129639 +108029,2232,psychological,1437129620 +108029,2232,psychology,1437129622 +108029,2232,scifi,1437129628 +108029,2232,thriller,1437129637 +108029,2232,weird,1437129624 +108029,2959,dark comedy,1437129001 +108029,2959,mental illness,1437128977 +108029,2959,philosophical,1437128990 +108029,2959,philosophy,1437128973 +108029,2959,psychological,1437129003 +108029,2959,psychology,1437128975 +108029,2959,social commentary,1437128986 +108029,2959,surreal,1437128988 +108029,2959,thought-provoking,1437128980 +108029,2959,twist ending,1437128970 +108029,2997,black comedy,1437711769 +108029,2997,dark comedy,1437711765 +108029,2997,hallucinatory,1437711789 +108029,2997,mindfuck,1437711771 +108029,2997,obsession,1437711793 +108029,2997,psychology,1437711775 +108029,2997,quirky,1437711772 +108029,2997,surreal,1437711764 +108029,2997,surrealism,1437711767 +108029,2997,thought-provoking,1437711781 +108029,2997,twist ending,1437711777 +108029,2997,weird,1437711791 +108029,2997,whimsical,1437711787 +108029,3252,atmospheric,1437130084 +108029,3252,disability,1437130080 +108029,4226,black and white,1437128950 +108029,4226,complicated plot,1437128911 +108029,4226,dreamlike,1437128897 +108029,4226,memory,1437128889 +108029,4226,Mindfuck,1437128899 +108029,4226,nonlinear,1437128879 +108029,4226,paranoia,1437128915 +108029,4226,plot twist,1437128918 +108029,4226,psychological,1437128887 +108029,4226,psychology,1437128891 +108029,4226,stylized,1437128883 +108029,4226,twist ending,1437128892 +108029,4370,artificial intelligence,1437129401 +108029,4370,dystopia,1437129420 +108029,4370,robots,1437129407 +108029,4370,sci-fi,1437129418 +108029,4873,cerebral,1437130383 +108029,4873,dreamlike,1437130381 +108029,4873,dreams,1437130375 +108029,4873,existentialism,1437130377 +108029,4873,metaphysics,1437130374 +108029,4873,philosophy,1437130367 +108029,4873,quirky,1437130380 +108029,4873,stylized,1437130378 +108029,4873,surreal,1437130370 +108029,4873,thought-provoking,1437130372 +108029,7361,amnesia,1437130435 +108029,7361,bittersweet,1437130411 +108029,7361,dreamlike,1437130430 +108029,7361,memory,1437130413 +108029,7361,nonlinear,1437130409 +108029,7361,philosophy,1437130416 +108029,7361,psychology,1437130424 +108029,7361,quirky,1437130412 +108029,7361,romance,1437130415 +108029,7361,sci-fi,1437130426 +108029,7361,surreal,1437130404 +108029,7361,surrealism,1437130422 +108029,7361,thought-provoking,1437130406 +108029,8874,black comedy,1437712245 +108029,8874,British,1437712247 +108029,8874,british comedy,1437712260 +108029,8874,dark comedy,1437712251 +108029,8874,dark humor,1437712249 +108029,8874,gore,1437712255 +108029,8874,zombie,1437712253 +108029,8874,zombies,1437712238 +108029,8914,mindfuck,1437128781 +108029,8914,time travel,1437128778 +108029,30867,cool animated sequence,1437711956 +108029,30867,friendship,1437711957 +108029,30867,gothic lolita,1437711963 +108029,30867,Lolita,1437711970 +108029,37729,black comedy,1437128765 +108029,37729,ghosts,1437128744 +108029,37729,ghosts/afterlife,1437128742 +108029,37729,gothic,1437128726 +108029,37729,living dead,1437128754 +108029,37729,Tim Burton,1437128723 +108029,37729,visually appealing,1437128756 +108029,48516,complicated plot,1437711188 +108029,48516,Leonardo DiCaprio,1437711171 +108029,48516,Martin Scorsese,1437711177 +108029,48516,psychology,1437711200 +108029,48516,suspense,1437711197 +108029,48516,twist ending,1437711191 +108029,52885,dreamlike,1437129263 +108029,52885,dreams,1437129261 +108029,52885,philosophical,1437129268 +108029,52885,surreal,1437129265 +108029,56757,based on a play,1437711347 +108029,56757,dark,1437711361 +108029,56757,dark comedy,1437711335 +108029,56757,gothic,1437711341 +108029,56757,great cinematography,1437711344 +108029,56757,Musical,1437711355 +108029,56757,serial killer,1437711337 +108029,56757,Tim Burton,1437711331 +108029,56757,visually appealing,1437711339 +108029,57504,time travel,1437129037 +108029,61729,ghosts,1437129998 +108029,64969,feel-good,1437129478 +108029,64969,Motivation,1437129490 +108029,64969,optimism,1437129476 +108029,64969,positive thinking,1437129474 +108029,64969,self-esteem,1437129487 +108029,74228,cerebral,1437129736 +108029,74228,mystery,1437129720 +108029,74228,Surreal,1437129715 +108029,74228,time loop,1437129717 +108029,74228,time travel,1437129718 +108029,74228,visual style,1437129734 +108029,78349,experiment,1437711393 +108029,78349,group psychology,1437711391 +108029,78349,mindfuck,1437711398 +108029,78349,psychological,1437711395 +108029,79132,dreamlike,1437129327 +108029,79132,dreams,1437129329 +108029,79132,intellectual,1437129334 +108029,79132,memory,1437129348 +108029,79132,mindfuck,1437129323 +108029,79132,multiple interpretations,1437129349 +108029,79132,philosophy,1437129332 +108029,79132,psychology,1437129356 +108029,79132,sci-fi,1437129325 +108029,79132,surreal,1437129316 +108029,79132,thought-provoking,1437129319 +108029,79132,twist ending,1437129337 +108029,79132,visually appealing,1437129318 +108029,79357,butterfly effect,1437129896 +108029,79357,chaos,1437129922 +108029,79357,immortality,1437129903 +108029,79357,nonlinear,1437129891 +108029,79357,philosophy,1437129905 +108029,79357,romance,1437129899 +108029,79357,sci-fi,1437129910 +108029,79357,surreal,1437129893 +108029,79357,thought provoking,1437129902 +108029,79357,time travel,1437129898 +108029,84152,human potential,1437129292 +108029,84152,smart,1437129296 +108029,84152,thought provoking,1437129298 +108029,84152,transhumanism,1437129303 +108029,84152,visually appealing,1437129294 +108029,84601,assassin,1437711564 +108029,84601,conspiracy,1437711556 +108029,84601,identity theft,1437711568 +108029,84601,paranoia,1437711560 +108029,84601,short-term memory loss,1437711558 +108029,84772,aliens,1437711634 +108029,84772,Atheism,1437711630 +108029,84772,comedy,1437711637 +108029,84772,geeky,1437711632 +108029,84954,fate,1437130455 +108029,84954,free will,1437130453 +108029,84954,Romance,1437130451 +108029,85179,computers,1437130251 +108029,85179,hacking,1437130252 +108029,85179,virtual reality,1437130246 +108029,86882,Paris,1437129773 +108029,86882,philosophical,1437129796 +108029,86882,quirky,1437129786 +108029,86882,romance,1437129790 +108029,86882,thought-provoking,1437129775 +108029,86882,time travel,1437129781 +108029,86882,whimsical,1437129792 +108029,89745,Robert Downey Jr.,1437712274 +108029,89745,superhero,1437712276 +108029,90405,dystopia,1437129751 +108029,90405,future,1437129758 +108029,90405,immortality,1437129755 +108029,90405,sci-fi,1437129754 +108029,90405,social commentary,1437129757 +108029,90405,thought-provoking,1437129761 +108029,91470,assassin,1437129939 +108029,92210,supernatural,1437130880 +108029,92210,time travel,1437130872 +108029,94478,vampires,1437129954 +108029,94478,witch,1437129952 +108029,95088,time travel,1437130187 +108029,96610,plot holes,1437128846 +108029,96610,sci-fi,1437128860 +108029,96610,time travel,1437128848 +108029,97921,dark humor,1437129588 +108029,97921,loneliness,1437129594 +108029,97921,mental illness,1437129586 +108029,97921,romance,1437129590 +108029,99007,comedic horror,1437129866 +108029,99007,romance,1437129868 +108029,99007,unconventional,1437129871 +108029,99007,zombies,1437129864 +108029,104374,time travel,1437129569 +108029,106782,Leonardo DiCaprio,1437130312 +108029,106782,Martin Scorsese,1437130314 +108029,106918,inspirational,1437130473 +108029,106918,positive thinking,1437130485 +108029,106918,surreal,1437130480 +108029,106918,travel,1437130482 +108029,106918,visually appealing,1437130477 +108029,106920,artificial intelligence,1437129507 +108029,106920,loneliness,1437129515 +108029,106920,love,1437129532 +108029,106920,philosophical,1437129512 +108029,106920,psychology,1437129511 +108029,106920,quirky,1437129523 +108029,106920,romance,1437129530 +108029,106920,sci-fi,1437129516 +108029,106920,thought-provoking,1437129509 +108029,106920,transhumanism,1437129520 +108029,108729,mental illness,1437129831 +108029,108729,Psychological,1437129832 +108029,110730,artificial intelligence,1437129851 +108029,114007,Amnesia,1437711677 +108029,114793,AI,1437130986 +108029,114793,artificial intelligence,1437130981 +108029,114793,philosophical,1437130993 +108029,114793,robot,1437131009 +108029,114935,mindfuck,1437129553 +108029,114935,science fiction,1437129559 +108029,114935,time travel,1437129552 +108029,114935,twist ending,1437129555 +108029,115569,dark,1437129685 +108029,115569,gripping,1437129687 +108029,115569,sociopath,1437129688 +108029,115680,time travel,1437129146 +108029,115680,twist ending,1437129150 +108029,115713,artificial intelligence,1437128638 +108029,115713,philosophical,1437128648 +108029,115713,thought provoking,1437128645 +108029,118082,black comedy,1437130035 +108029,118082,mental illness,1437130037 +108029,118985,Tim Burton,1437711722 +108029,120466,artificial intelligence,1437130008 +108029,120466,robots,1437130009 +108029,127096,time travel,1437129659 +108029,132480,romance,1437711440 +108029,139622,Gothic,1437711878 +108029,139622,Lolita,1437711883 +108037,858,classic,1435981967 +108037,858,foreign,1435981967 +108037,858,mafia life,1435981967 +108037,2571,classic,1435266657 +108037,2571,known,1435266657 +108037,2571,sci-fi,1435266657 +108048,296,cult film,1388962328 +108048,296,nonlinear,1388962319 +108048,296,Quentin Tarantino,1388962331 +108048,714,beautiful,1318290009 +108048,714,black and white,1318290015 +108048,2692,alternative realities,1318029135 +108048,2692,quantum leaping,1318029226 +108048,97057,adventure,1435941295 +108048,97057,exploring,1435941295 +108048,97057,sea,1435941295 +108053,70533,Mechs,1263961248 +108053,70533,remake,1263961283 +108069,42718,martial-arts,1184650364 +108084,27636,berlin,1232320165 +108084,27636,elektrolyte,1232320118 +108084,27636,kreuzberg,1232320131 +108084,27636,new german cinemy,1232320142 +108084,27636,schweinebraten,1232320162 +108096,260,fantasy,1436237090 +108096,260,space opera,1436237090 +108096,260,space travel,1436237090 +108096,480,dinosaurs,1428214971 +108096,480,power outage,1428214971 +108096,480,theme park,1428214971 +108096,593,horror,1420931522 +108096,593,sociopath,1420931522 +108096,593,thriller,1420931522 +108108,260,deep universe,1431946641 +108108,260,Science Fiction,1431946616 +108171,260,classic,1438253456 +108171,260,scifi,1438253443 +108190,59485,drugs,1310661143 +108190,59485,marijuana,1310661154 +108208,260,jedi,1435195555 +108208,260,spaceships,1435195555 +108208,260,the force,1435195555 +108214,260,Classic,1436568517 +108214,260,Cutting edge,1436568553 +108214,122882,beautiful apocalypse,1436569804 +108214,122882,saturated,1436569804 +108214,122882,visual,1436569804 +108233,678,don't remember much about it,1186750627 +108233,707,plot makes no sense but can enjoy as a work of art,1186750036 +108233,1078,vintage Woody Allen,1186750287 +108233,1238,great Mark Knopfler (Dire Straits) soundtrack,1186750356 +108233,1295,wonderful drama,1186750325 +108233,1441,whimsical,1186749953 +108233,1464,good but not great David Lynch,1186750376 +108233,1959,grand cinematic scope,1186750126 +108233,2463,hilarious with heart,1186750254 +108233,2917,cool as ice,1186750181 +108233,2919,gibson and sigourney are hot,1186750477 +108233,2951,gritty,1186749973 +108233,2976,good but not great Scorcese,1186750191 +108233,3037,cute,1186750160 +108233,3068,exceptionally enjoyable (older) Newman flick,1186750725 +108233,3095,amazing adaptation of an American classic,1186750308 +108233,3100,overrated,1186750089 +108233,3543,brilliant study of male relationships,1186750221 +108233,3685,overrated,1186750644 +108233,3706,intense horror with an deeply shocking final twist,1186750608 +108233,4103,good but not great Spielberg,1186750518 +108233,5225,disappointing from Cuaron,1186750265 +108233,5693,memorable mostly for soundtrack and early glimpse at Travolta,1186750696 +108233,6620,okay but a little overrated,1186750503 +108233,6620,see Sideways instead,1186750503 +108291,58559,batman,1421051210 +108291,58559,dc comics,1421051210 +108291,58559,super hero,1421051210 +108314,2712,Stanley Kubrick,1445189033 +108314,4848,David Lynch,1445188975 +108314,4848,mystery,1445188968 +108314,4848,surreal,1445188954 +108314,6530,conspiracy,1445188884 +108314,6530,paranoid,1445188912 +108314,6530,Roman Polanski,1445188857 +108353,103306,non-sequential,1424531646 +108353,106986,Animation,1386513923 +108353,106986,Christmas,1386516139 +108353,106986,Claymation,1386513917 +108353,106986,Great Ak,1386516162 +108353,106986,Holiday,1386516262 +108353,106986,Hyman,1386516126 +108353,106986,J.D. Roth,1386516114 +108353,106986,Musical,1386516156 +108353,106986,Origin,1386516197 +108353,106986,Quotable,1386516271 +108353,106986,Santa,1386516134 +108353,106986,Short,1386516148 +108353,119145,laughable,1424646600 +108353,119145,violent,1424646613 +108384,318,Morgan Freeman,1432048374 +108389,593,cold case investigation,1431681154 +108389,593,police,1431681154 +108389,593,suspense,1431681154 +108389,1089,crime,1431680954 +108389,1089,dark humor,1431680940 +108394,68442,comedy,1443612272 +108394,68442,drama,1443612269 +108394,109893,crime,1420072966 +108394,109893,islam,1420072966 +108394,109893,turkish,1420072966 +108394,112070,celebs,1420238149 +108394,112070,schizophrenia,1420238139 +108394,116138,arctic,1421968515 +108394,116138,corruption,1421968515 +108394,116138,depression,1421968515 +108394,116138,drinking,1421968515 +108394,116138,hardship,1421968515 +108394,116138,police corruption,1421968515 +108394,116138,poverty,1421968515 +108394,116138,russian,1421968515 +108394,116138,tragedy,1421968515 +108394,141139,terrorism,1447663988 +108396,1690,sci-fi,1213099442 +108396,1690,space,1213099445 +108437,296,action,1424893137 +108437,296,crime,1424893137 +108437,296,dark comedy,1424893137 +108451,6503,chad,1137799518 +108451,8836,Chad,1137799269 +108451,8865,chad,1137799226 +108451,8958,chad,1137799445 +108474,50,conspiracy,1442245881 +108474,50,Crime,1442245862 +108474,50,heist,1442245871 +108474,50,mystery,1442245889 +108474,50,twist ending,1442245859 +108474,260,cult classic,1442245392 +108474,260,fantasy,1442245431 +108474,260,mythology,1442245411 +108474,4226,psychological,1442245815 +108474,4226,thought provoking,1442245811 +108474,4226,twist ending,1442245799 +108474,4226,twists & turns,1442245824 +108474,48394,alternate reality,1442245643 +108474,48394,atmospheric,1442245604 +108474,48394,Creature Effects,1442245596 +108474,48394,fantasy,1442245627 +108474,48394,gore,1442245635 +108474,48394,violence,1442245650 +108474,60069,cute,1442246020 +108474,60069,emotional,1442246011 +108474,60069,funny,1442246007 +108474,60069,pixar,1442246006 +108474,63131,funny,1442246140 +108474,63131,geeks,1442246142 +108474,109487,philosophical issues,1442245711 +108474,109487,thought-provoking,1442245681 +108497,260,Classic,1433101108 +108497,260,good vs evil,1433101123 +108525,260,Classic,1440345410 +108525,260,family film,1440345404 +108525,260,sci-fi,1440345419 +108561,260,sci-fi,1158302480 +108561,1196,sci-fi,1158302391 +108561,1210,sci-fi,1158302482 +108561,1527,sci-fi,1158302402 +108561,2571,sci-fi,1158302476 +108561,33493,sci-fi,1158302486 +108597,91140,christophe honoré,1432913696 +108597,91140,french,1432913696 +108597,91140,louis garrel,1432913696 +108609,59315,superhero,1448762450 +108609,79132,thought-provoking,1448762530 +108636,4,girl movie,1187039053 +108636,26,great,1187039070 +108636,413,a comedy,1187038853 +108636,493,classic,1187038964 +108636,663,canadian,1187038985 +108636,1012,sad,1187039006 +108636,1057,singing,1187038985 +108636,1091,80's humor,1187038897 +108636,1100,fast cars,1187038874 +108636,1295,slow,1187039010 +108636,1665,funny,1187039110 +108636,2133,best movie ever,1187038908 +108636,2423,funny,1187038869 +108636,2431,robin williams,1187038854 +108636,2598,meh,1187038939 +108636,3271,sad,1187039045 +108636,4015,stupid,1187038960 +108636,5064,awesome,1187038955 +108636,5171,horrible.,1187039103 +108636,5225,amazing,1187038989 +108636,5528,scary,1187038986 +108636,6016,amazing,1187038854 +108636,6953,bizarre,1187039001 +108636,30810,you'll also like The Royal Tennanbams,1187039097 +108636,48516,best movie ever,1187039025 +108681,119145,modern youthful spy,1425420280 +108681,119145,slick,1425420280 +108681,119145,witty,1425420280 +108700,47,investigation,1440746326 +108700,47,mystery,1440746342 +108700,47,twist ending,1440746332 +108717,260,classic sci-fi,1440181933 +108717,260,scifi cult,1440181919 +108724,260,action,1437513271 +108724,260,space travel,1437513259 +108736,80463,intensity,1298909997 +108776,318,friendship,1424191611 +108785,4552,but this is a bit thick.,1245531239 +108785,4552,I love the man-machine myme of sci-fi,1245531239 +108785,4552,makes you throw-up,1245531239 +108785,56171,Great Steampunk action triller.,1197180493 +108788,356,Oscar (Best Actor),1242592989 +108788,356,Oscar (Best Directing),1242592985 +108788,356,Oscar (Best Effects - Visual Effects),1242592993 +108788,356,Oscar (Best Picture),1242592981 +108788,356,Tom Hanks,1242592976 +108788,538,1990s,1214768842 +108788,538,Donald Sutherland,1214768773 +108788,538,good dialogue,1214768819 +108788,538,Humorous,1214768760 +108788,538,race issues,1214768799 +108788,538,stockard channing,1214768872 +108788,538,Will Smith,1214768767 +108788,903,Hitchcock,1187038246 +108788,904,Alfred Hitchcock,1242592153 +108788,904,classic,1242592155 +108788,904,claustrophobic,1242592157 +108788,904,Grace Kelly,1242592200 +108788,904,imdb top 250,1242592167 +108788,904,James Stewart,1242592161 +108788,904,murder,1242592180 +108788,904,mystery,1242592187 +108788,904,tense,1242592162 +108788,904,thriller,1242592164 +108788,932,Cary Grant,1304976316 +108788,932,classic love story,1304976321 +108788,932,Deborah Kerr,1304976318 +108788,933,adapted from:book,1242592558 +108788,933,Alfred Hitchcock,1242592546 +108788,933,atmospheric,1242592601 +108788,933,Cary Grant,1242592538 +108788,933,cat burglar,1242592549 +108788,933,chase,1242592568 +108788,933,Grace Kelly,1242592543 +108788,933,Monaco,1242592613 +108788,942,black and white,1291576956 +108788,942,Clifton Webb,1291577013 +108788,942,Dana Andrews,1291577015 +108788,942,Gene Tierney,1291576959 +108788,942,noir,1291576963 +108788,942,Oscar (Best Cinematography),1291576966 +108788,942,Vincent Price,1291576983 +108788,1046,gay,1242593245 +108788,1046,Gay Brits,1242593260 +108788,1046,gay romance,1242593248 +108788,1046,london,1242593257 +108788,1203,classic,1251496347 +108788,1203,courtroom,1251496349 +108788,1203,courtroom drama,1251496348 +108788,1203,ensemble cast,1251496367 +108788,1203,good dialogue,1251496351 +108788,1203,imdb top 250,1251496356 +108788,1203,racism,1251496351 +108788,1203,social commentary,1251496370 +108788,1207,atmospheric,1251496430 +108788,1207,classic,1251496433 +108788,1207,courtroom drama,1251496416 +108788,1207,Gregory Peck,1251496421 +108788,1207,Harper Lee,1251496426 +108788,1207,heartwarming,1251496428 +108788,1207,imdb top 250,1251496423 +108788,1207,Oscar (Best Actor),1251496450 +108788,1207,racism,1251496437 +108788,1207,social commentary,1251496442 +108788,1274,animation,1275150360 +108788,1274,anime,1275150349 +108788,1274,cyberpunk,1275150347 +108788,1274,dystopia,1275150346 +108788,1274,future,1275150352 +108788,1274,Japan,1275150350 +108788,1274,visually stunning,1275150344 +108788,2176,Alfred Hitchcock,1242592703 +108788,2176,atmospheric,1242592746 +108788,2176,based on a true story,1242592705 +108788,2176,classic,1242592711 +108788,2176,Gay Lead Character,1242592761 +108788,2176,James Stewart,1242592708 +108788,2176,murder,1242592718 +108788,2176,real-time,1242592715 +108788,2179,hitchcock,1204411163 +108788,2179,Hitchcock Film,1204411133 +108788,2502,comedy,1242592809 +108788,2502,cult film,1242592790 +108788,2502,hilarious,1242592796 +108788,2502,Jennifer Aniston,1242592794 +108788,2502,quirky,1242592807 +108788,2502,satire,1242592799 +108788,2502,stupidity,1242592802 +108788,2721,Funny,1242593052 +108788,2721,Gay,1242593080 +108788,2721,gay romance,1242593050 +108788,3317,based on a book,1242592044 +108788,3317,funny,1242592059 +108788,3317,Gay,1242592000 +108788,3317,literature,1242591992 +108788,3317,Michael Chabon,1242592054 +108788,3317,Michael Douglas,1242592033 +108788,3317,Robert Downey Jr,1242592071 +108788,3317,sexuality,1242592105 +108788,3317,Tobey Maguire,1242592033 +108788,3317,writer,1242592110 +108788,3317,writer's block,1242592126 +108788,3469,black and white,1251496319 +108788,3469,courtroom drama,1251496314 +108788,3469,evolution,1251496319 +108788,3469,great performances,1251496323 +108788,3469,imdb top 250,1251496318 +108788,3469,religion,1251496327 +108788,3469,science,1251496333 +108788,3469,Spencer Tracy,1251496316 +108788,3469,true story,1251496317 +108788,3753,drama,1242592910 +108788,3753,Heath Ledger,1242592863 +108788,3753,historica,1242592890 +108788,3753,historical,1242592915 +108788,3753,history,1242592916 +108788,3753,jingoistic,1242592858 +108788,3753,Mel Gibson,1242592874 +108788,3753,Not very believable,1242592854 +108788,3753,offensive,1242592901 +108788,3753,patrick bateman,1242592867 +108788,3753,Roland Emmerich,1242592922 +108788,3753,slanderous,1242592904 +108788,3753,The United States of America,1242592928 +108788,3801,adapted from:book,1289776212 +108788,3801,based on a book,1289776221 +108788,3801,classic,1289776294 +108788,3801,courtroom drama,1289776197 +108788,3801,imdb top 250,1289776231 +108788,3801,James Stewart,1289776202 +108788,3801,Oscar nominated,1289776286 +108788,3801,Otto Preminger,1289776205 +108788,3906,Costa Rica,1233474444 +108788,3906,detective,1233474459 +108788,3906,flashbacks,1233474499 +108788,3906,lawyer,1233474471 +108788,3906,murder,1233474391 +108788,3906,mystery,1233474405 +108788,3906,paedophilia,1233474412 +108788,3906,remake of a french film,1233474508 +108788,4878,dreamlike,1242592460 +108788,4878,imdb top 250,1242592495 +108788,4878,mental illness,1242592506 +108788,4878,mystery,1242592476 +108788,4878,psychology,1242592461 +108788,4878,quirky,1242592501 +108788,4878,sci-fi,1242592477 +108788,4878,surreal,1242592472 +108788,4878,time travel,1242592483 +108788,5490,comedy,1214768924 +108788,5490,spoof,1214768940 +108788,5490,stockard channing,1214768911 +108788,5618,anime,1251049593 +108788,5618,fantasy,1251049589 +108788,5618,Hayao Miyazaki,1251049580 +108788,5618,Studio Ghibli,1251049563 +108788,7023,gay romance,1242593108 +108788,7260,comedy romance,1214960629 +108788,7260,Gay Interest,1214960641 +108788,7260,Los Angeles,1214960685 +108788,7260,low budget,1214960654 +108788,7260,Mormon,1214960673 +108788,7260,religion,1214960667 +108788,7260,Romance,1214960617 +108788,7818,black and white,1217795631 +108788,7818,British,1217795637 +108788,7818,british comedy,1217795530 +108788,7818,classic comedy,1217795546 +108788,7818,comedy,1217795535 +108788,7981,Andy Lau,1242592418 +108788,7981,better than the american version,1242592374 +108788,7981,gritty,1242592405 +108788,7981,hong kong,1242592377 +108788,7981,imdb top 250,1242592401 +108788,7981,need to own,1242592410 +108788,7981,tense,1242592393 +108788,7981,thriller,1242592387 +108788,7981,Tony Leung Chiu Wai,1242592362 +108788,7981,undercover cop,1242592363 +108788,25911,Edward G. Robinson,1291563886 +108788,25911,film noir,1291563921 +108788,25911,Fritz Lang,1291563895 +108788,25911,Joan Bennett,1291563900 +108788,25911,Raymond Massey,1291563899 +108788,25911,suspense,1291563921 +108788,27674,black comedy,1217808449 +108788,27674,comedy,1217808472 +108788,27674,mystery,1217808429 +108788,27674,thriller,1217808468 +108788,27826,Asian culture,1215221547 +108788,27826,Cary Grant,1215221528 +108788,27826,Comedy,1215221533 +108788,27826,culture clash,1215221625 +108788,27826,gay relationship,1215221597 +108788,27826,London,1215221553 +108788,27826,Mother Son relationship,1215221616 +108788,27826,Toronto,1215221566 +108788,31408,coming of age,1217795324 +108788,31408,Gay Lead Character,1217795314 +108788,31408,german gay,1217795294 +108788,31408,Germany,1217795320 +108788,31408, ,1217795294 +108788,32058,courtroom,1226248383 +108788,32058,Gene Hackman,1226248386 +108788,33004,Alan Rickman,1244340618 +108788,33004,americanized movies,1244340657 +108788,33004,based on a book,1244340597 +108788,33004,based on book,1244340614 +108788,33004,book was better,1244340600 +108788,33004,british humour,1244340642 +108788,33004,dumbed down,1244340668 +108788,33004,end of the world,1244340685 +108788,33004,humor,1244340603 +108788,33004,John Malkovich,1244340678 +108788,33004,sarcasm,1244340621 +108788,33004,sci-fi,1244340605 +108788,33004,witty,1244340694 +108788,33171,disturbing,1258414145 +108788,33171,homosexuality,1258414140 +108788,33171,Joseph Gordon-Levitt,1258414136 +108788,33171,superb acting,1258414150 +108788,34148,French,1223403078 +108788,34148,Paris,1223403113 +108788,34148,Piano,1223403093 +108788,34148,real estate,1223403106 +108788,34148,second chance,1223403148 +108788,38499,adapted from:play,1243110395 +108788,38499,AIDS,1243110364 +108788,38499,Al Pacino,1243110361 +108788,38499,based on a play,1243110358 +108788,38499,closeted homosexual,1243110357 +108788,38499,Emma Thompson,1243110352 +108788,38499,gay,1243110391 +108788,38499,Jeffrey Wright,1243110383 +108788,38499,Mary-Louise Parker,1243110375 +108788,38499,Meryl Streep,1243110349 +108788,38499,Mike Nichols,1243110382 +108788,38499,topic:AIDS,1243110397 +108788,39183,beautiful,1242593198 +108788,39183,bittersweet,1242593199 +108788,39183,gay,1242593195 +108788,39183,gay romance,1242593229 +108788,39183,Heath Ledger,1242593201 +108788,39183,homosexuality,1242593213 +108788,39183,Oscar (Best Directing),1242593211 +108788,39183,Oscar (Best Music - Original Score),1242593204 +108788,39183,Oscar (Best Picture),1242593209 +108788,39183,sexuality,1242593225 +108788,39183,Tragedy,1242593202 +108788,40870,1970s,1242592292 +108788,40870,coming of age,1242592278 +108788,40870,drugs,1242592333 +108788,40870,ECCENTRIC FAMILIES,1242592319 +108788,40870,gay,1242592280 +108788,40870,Gay Lead Character,1242592279 +108788,40870,homosexuality,1242592281 +108788,40870,humorous,1242592283 +108788,40870,questioning sexuality,1242592284 +108788,40870,quirky,1242592284 +108788,44761,clever,1258414109 +108788,44761,detective movie,1258414125 +108788,44761,film noir,1258414106 +108788,44761,high school,1258414115 +108788,44761,Joseph Gordon-Levitt,1258414105 +108788,44761,self-mocking,1258414120 +108788,44761,stylized,1258414107 +108788,49130,Change of heart,1234026017 +108788,49130,France,1234025981 +108788,49130,life reflection,1234026035 +108788,49130,winery,1234025988 +108788,51694,1980s,1217794918 +108788,51694,british comedy,1217794890 +108788,51694,comedy,1217794881 +108788,51694,Dominic Cooper,1217794993 +108788,51694,romantic comedy,1217795025 +108788,51694,university,1217794875 +108788,52241,Joseph Gordon-Levitt,1258414168 +108788,52456,Halle Berry,1213821599 +108788,52456,surprise ending,1213821628 +108788,52456,Thriller,1213821582 +108788,52456,Twists,1213821605 +108788,52456,twists & turns,1213821611 +108788,52604,Anthony Hopkins,1251496379 +108788,52604,courtroom drama,1251496383 +108788,52604,Great reveal,1251496399 +108788,52604,murder,1251496406 +108788,52604,murder mystery,1251496386 +108788,52604,Ryan Gosling,1251496387 +108788,54372,based on a book,1217795450 +108788,54372,French,1217795389 +108788,54372,Harlan Coben,1217795482 +108788,54372,murder mystery,1217795497 +108788,54372,mystery,1217795424 +108788,54372,on the run,1217795414 +108788,54372,thriller,1217795378 +108788,54372,wrongly accused,1217795403 +108788,56908,Billy Crudup,1250289463 +108788,56908,Bob Balaban,1250289471 +108788,56908,Dianne Wiest,1250289468 +108788,56908,Mandy Moore,1250289460 +108788,56908,Martin Freeman,1250289560 +108788,56908,romance,1250289551 +108788,56908,Tom Wilkinson,1250289475 +108788,56908,writer,1250289528 +108788,58490,Amy Adams,1318692442 +108788,58490,Frances McDormand,1318692443 +108788,58490,Lee Pace,1318692446 +108788,59549,coming out,1242592646 +108788,59549,gay,1242592663 +108788,59549,Gay Character,1242592643 +108788,59549,Gay Lead Character,1242592644 +108788,59549,gay relationship,1242592659 +108788,59549,gay romance,1242593029 +108788,59549,homosexuality,1242592675 +108788,59549,love story,1242592647 +108788,59549,responsibility,1242592648 +108788,59549,romance,1242593022 +108788,59549,self discovery,1242592649 +108788,59549,surf,1242592650 +108788,59549,surfing,1242592651 +108788,62847,alcoholism,1239405174 +108788,62847,coming of age,1239405163 +108788,62847,family bonds,1239405120 +108788,62847,family drama,1239405223 +108788,62847,gay relationship,1239405114 +108788,62847,grieving,1239405181 +108788,62847,humorous,1239405279 +108788,62847,love story,1239405150 +108788,62847,mysterious stranger,1239405232 +108788,62847,mystery,1239405138 +108788,62847,romance,1239405145 +108788,62847,sad,1239405294 +108788,62847,teenagers,1239405157 +108788,62847,thailand,1239405203 +108788,68554,Ewan McGregor,1250852985 +108788,68554,mystery,1250852967 +108788,68554,not faithful to the book,1250852978 +108788,68554,secrets,1250852969 +108788,68554,thriller,1250852977 +108788,68554,Tom Hanks,1250853018 +108788,68954,adventure,1258414029 +108788,68954,computer animation,1258414033 +108788,68954,feel good movie,1258414037 +108788,68954,friendship,1258414053 +108788,68954,happy ending,1258414040 +108788,68954,heartbreaking,1258414035 +108788,68954,Pixar,1258414024 +108788,68963,1920s,1244340334 +108788,68963,Ben Barnes,1244340316 +108788,68963,Colin Firth,1244340312 +108788,68963,Comedy,1244340326 +108788,68963,Jessica Biel,1244340306 +108788,68963,Kirstin Scott Thomas,1244340322 +108788,68963,Romance,1244340329 +108788,68963,Unexpected Ending,1244340371 +108788,69757,felt complete,1258413968 +108788,69757,humor,1258413975 +108788,69757,Joseph Gordon-Levitt,1258413962 +108788,69757,Zooey Deschanel,1258413963 +108788,71033,Argentina,1285885488 +108788,71033,based on a book,1285885639 +108788,71033,crime,1285885633 +108788,71033,drama,1285885636 +108788,71033,excellent acting,1285885420 +108788,71033,excellent script,1285885417 +108788,71033,revenge,1285885483 +108788,71033,Ricardo Darin,1285885627 +108788,71033,Soledad Villamil,1285885557 +108788,72011,cynicism,1267995937 +108788,72011,George Clooney,1267995929 +108788,72011,Jason Reitman,1267995931 +108788,72011,loneliness,1267995934 +108788,72405,dark comedy,1301354178 +108788,72405,Eva Mendes,1301354206 +108788,72405,Nicolas Cage,1301354182 +108788,72405,Werner Herzog,1301354187 +108788,72720,adapted from:book,1274732759 +108788,72720,author:Christopher Isherwood,1274732762 +108788,72720,based on a book,1274732765 +108788,72720,beautiful cinematography,1274732754 +108788,72720,Colin Firth,1274732724 +108788,72720,Gay Lead Character,1274732863 +108788,72720,good cinematography,1274732750 +108788,72720,Julianne Moore,1274732733 +108788,72720,life & death,1274732940 +108788,72720,Matthew Goode,1274732729 +108788,72720,mourning,1274732940 +108788,72720,Nicholas Hoult,1274732738 +108788,72720,reflective,1274732940 +108788,72720,sad,1274732778 +108788,72720,setting:LA,1274732780 +108788,72720,suicide,1274732940 +108788,72720,Tom Ford,1274732834 +108788,72720,twist ending,1274732745 +108788,72998,aliens,1275150608 +108788,72998,beautiful scenery,1275150610 +108788,72998,cliched plot,1275150621 +108788,72998,futuristic,1275150606 +108788,72998,military,1275150631 +108788,72998,predictable,1275150602 +108788,72998,romance,1275150626 +108788,72998,Sigourney Weaver,1275150604 +108788,72998,Special Effects,1275150659 +108788,72998,style over substance,1275150617 +108788,73017,Atmospheric,1267995886 +108788,73017,fun,1267995910 +108788,73017,homoerotic subtext,1267995898 +108788,73017,Jude Law,1267995891 +108788,73017,Rachel McAdams,1267995915 +108788,73017,Robert Downey Jr.,1267995889 +108788,73017,Sherlock Holmes,1267995894 +108788,79132,alternate reality,1285839860 +108788,79132,ambiguous ending,1285839871 +108788,79132,clever,1285839874 +108788,79132,complicated,1285839876 +108788,79132,dreamlike,1285839869 +108788,79132,dreams,1285839880 +108788,79132,intellectual,1285839878 +108788,79132,Joseph Gordon-Levitt,1285839866 +108788,79132,Leonardo DiCaprio,1285839864 +108788,79132,visually appealing,1285839862 +108788,81845,1930s,1297600248 +108788,81845,based on a true story,1297600246 +108788,81845,Colin Firth,1297600209 +108788,81845,drama,1297600253 +108788,81845,Geoffrey Rush,1297600257 +108788,81845,Helena Bonham Carter,1297600212 +108788,81845,United Kingdom,1297600243 +108788,82461,daft punk,1294790212 +108788,82461,Garrett Hedlund,1294790199 +108788,82461,Jeff Bridges,1294790196 +108788,82461,music,1294790237 +108788,82461,plot,1294790218 +108788,82461,soundtrack,1294790208 +108788,85367,Adam Sandler,1308434105 +108788,85367,Hawaii,1308434100 +108788,85367,Jennifer Aniston,1308434096 +108788,85367,Nicole Kidman,1308434116 +108788,90439,business,1364811726 +108788,90439,Jeremy Irons,1364811718 +108788,90439,New York City,1364811712 +108788,90439,realistic,1364811715 +108788,90439,Zachary Quinto,1364811722 +108788,91529,Anne Hathaway,1348864333 +108788,91529,Batman,1348864304 +108788,91529,Christian Bale,1348864310 +108788,91529,Christopher Nolan,1348864300 +108788,91529,Joseph Gordon-Levitt,1348864321 +108788,91529,plot twist,1348864336 +108788,109374,Bill Murray,1401220246 +108788,109374,cinematography,1401220222 +108788,109374,Edward Norton,1401220238 +108788,109374,funny,1401220246 +108788,109374,Jeff Goldblum,1401220249 +108788,109374,quirky,1401220232 +108788,109374,Ralph Fiennes,1401220234 +108788,109374,visually appealing,1401220227 +108788,109374,Wes Anderson,1401220225 +108797,31878,China,1252781750 +108797,31878,comedy,1252781751 +108797,31878,Hong Kong,1252781753 +108797,31878,kung fu,1252781781 +108797,31878,piss your pants funny,1252781763 +108797,31878,Stephen Chow,1252781768 +108797,69526,action,1252781835 +108797,69526,robots,1252781839 +108836,2897,nostalgic,1174132333 +108836,42094,Child developmental (folk) psychology,1271611980 +108836,42094,some shots out of focus. Frankenstein's mask and lighting in the woods scene is off.,1271612005 +108850,2826,vikings,1326821358 +108860,852,Romance,1225851323 +108881,750,dark comedy,1410644257 +108881,750,Quirky,1410644270 +108881,750,satire,1410644255 +108881,750,satirical,1410644261 +108881,750,Stanley Kubrick,1410644253 +108881,1610,sean connery,1410643071 +108881,1610,submarine,1410643062 +108881,1610,Tom Clancy,1410643068 +108881,5618,alternate reality,1410643972 +108881,5618,beautiful,1410643945 +108881,5618,dragons,1410643941 +108881,5618,dreamlike,1410643933 +108881,5618,hallucinatory,1410643955 +108881,5618,Hayao Miyazaki,1410643960 +108881,5618,surreal,1410643951 +108881,5618,whimsical,1410643967 +108881,77658,astronomy,1410643799 +108881,77658,Carl Sagan,1410643796 +108881,77658,enlightening,1410643811 +108881,77658,irreligion,1410643817 +108903,318,prison escape,1440076345 +108903,1246,philosophy,1440076871 +108903,1246,Robin Williams,1440076880 +108903,4995,based on a true story,1440076323 +108903,4995,biography,1440076271 +108903,4995,Education,1440076305 +108903,4995,genius,1440076258 +108903,4995,math,1440076260 +108903,4995,mental illness,1440076263 +108903,4995,nobel prize,1440076306 +108903,4995,Oscar (Best Directing),1440076325 +108903,4995,Oscar (Best Picture),1440076313 +108903,4995,Oscar (Best Supporting Actress),1440076328 +108903,4995,Russell Crowe,1440076266 +108903,4995,schizophrenia,1440076254 +108903,4995,true story,1440076268 +108903,48516,gangsters,1440069984 +108903,48516,Jack Nicholson,1440069976 +108903,48516,Leonardo DiCaprio,1440069968 +108903,48516,Martin Scorsese,1440069979 +108903,48516,Matt Damon,1440069981 +108903,56367,Ellen Page,1440076962 +108903,56367,feel good movie,1440076983 +108903,56367,feel-good,1440076975 +108903,56367,teen pregnancy,1440076979 +108903,68157,great soundtrack,1440175348 +108903,79274,animation,1440057274 +108903,79274,antihero,1440057270 +108903,79274,Batman,1440057263 +108903,79274,comics,1440057281 +108903,79274,DC,1440057284 +108903,79274,Joker,1440057282 +108903,79274,sympathetic villain,1440057272 +108903,80463,based on true story,1440072150 +108903,89492,Brad Pitt,1440072175 +108903,89492,great acting,1440072191 +108903,89492,Realistic,1440072190 +108903,96821,character development,1440076920 +108903,96821,coming of age,1440076912 +108903,96821,Emma Watson,1440076909 +108903,106782,Leonardo DiCaprio,1440072117 +108915,97,angry,1351289707 +108915,97,black and white,1351289669 +108915,97,bleak,1351289701 +108915,97,confrontational,1351289668 +108915,97,cynical,1351289702 +108915,97,disturbing,1351289673 +108915,97,drugs,1351289675 +108915,97,french,1351289722 +108915,97,ghetto,1351289671 +108915,97,gritty,1351289672 +108915,97,realistic,1351289681 +108915,97,social commentary,1351289678 +108915,97,still relevant,1351289692 +108915,150,based on a true story,1297542704 +108915,150,Kevin Bacon,1297542697 +108915,150,Tom Hanks,1297542700 +108915,223,crude humor,1302024266 +108915,223,Kevin Smith,1302024260 +108915,223,low budget,1302024252 +108915,296,classic,1421495507 +108915,296,cult film,1421495507 +108915,296,stylized,1421495507 +108915,337,bittersweet,1323900179 +108915,337,brothers,1323900177 +108915,337,coming of age,1323900175 +108915,337,disability,1323900185 +108915,337,Johnny Depp,1323900152 +108915,337,Leonardo DiCaprio,1323900154 +108915,337,mental disability,1323900190 +108915,337,mental illness,1323900157 +108915,337,obesity,1323900195 +108915,337,quirky,1323900159 +108915,337,small town,1323900162 +108915,337,want to see again,1323900166 +108915,337,whimsical,1323900168 +108915,347,disturbing,1416699917 +108915,347,Hugh Grant,1416699911 +108915,347,Nudity (Topless - Notable),1416699927 +108915,347,Nudity (Topless),1416699919 +108915,347,passionate,1416699914 +108915,347,Roman Polanski,1416699933 +108915,428,1960s,1412543981 +108915,428,directorial debut,1412543958 +108915,428,father-son relationship,1412543946 +108915,428,gangsters,1412543932 +108915,428,italian,1412543940 +108915,428,mafia,1412543942 +108915,428,new york,1412543918 +108915,428,organized crime,1412543930 +108915,428,peer presssure,1412543937 +108915,428,Robert De Niro,1412543912 +108915,428,USA,1412543994 +108915,441,bullying,1301087957 +108915,441,drugs,1301087949 +108915,441,high school,1301087944 +108915,475,1970s,1391782613 +108915,475,civil war,1391782623 +108915,475,corruption,1391782606 +108915,475,father-son relationship,1391782595 +108915,475,gritty,1391782588 +108915,475,Ireland,1391782600 +108915,475,irish,1391782630 +108915,475,lawyers,1391782634 +108915,475,politics,1391782636 +108915,475,prison,1391782602 +108915,475,terrorism,1391782603 +108915,475,true story,1391782608 +108915,527,atmospheric,1365715688 +108915,527,based on a book,1365715692 +108915,527,based on a true story,1365715694 +108915,527,biography,1365715686 +108915,527,black and white,1365715697 +108915,527,classic,1365715696 +108915,527,disturbing,1365715624 +108915,527,historical,1365715630 +108915,527,history,1365715671 +108915,527,Holocaust,1365715678 +108915,527,imdb top 250,1365715681 +108915,527,Nazis,1365715635 +108915,527,Oscar (Best Cinematography),1365715658 +108915,527,Oscar (Best Directing),1365715663 +108915,527,Oscar (Best Picture),1365715661 +108915,527,Steven Spielberg,1365715665 +108915,527,thought-provoking,1365715639 +108915,527,World War II,1365715649 +108915,593,Anthony Hopkins,1390943420 +108915,593,cannibalism,1390943432 +108915,593,classic,1390943471 +108915,593,crime,1390943422 +108915,593,disturbing,1390943438 +108915,593,excellent script,1390943457 +108915,593,Hannibal Lecter,1390943462 +108915,593,investigation,1390943455 +108915,593,Jodie Foster,1390943424 +108915,593,mental illness,1390943426 +108915,593,psychological,1390943482 +108915,593,psychology,1390943448 +108915,593,serial killer,1390943451 +108915,593,suspense,1390943449 +108915,597,capitalism,1351997890 +108915,597,cheesy,1351997859 +108915,597,chick flick,1351997853 +108915,597,classical,1351997872 +108915,597,Hollywood,1351997881 +108915,597,Julia Roberts,1351997877 +108915,597,prostitution,1351997834 +108915,597,sexism,1351997842 +108915,597,shopping,1351997840 +108915,912,atmospheric,1433024883 +108915,912,black and white,1433024896 +108915,912,classic,1433024882 +108915,912,Film Noir,1433024893 +108915,912,Humphrey Bogart,1433024887 +108915,912,Ingrid Bergman,1433024913 +108915,912,Nazis,1433024898 +108915,912,Oscar (Best Directing),1433024920 +108915,912,Oscar (Best Picture),1433024889 +108915,912,romance,1433024891 +108915,912,sentimental,1433024917 +108915,912,war,1433024915 +108915,912,World War II,1433024885 +108915,1061,child abuse,1290900081 +108915,1172,bittersweet,1376935815 +108915,1172,censorship,1376935818 +108915,1172,childhood,1376935827 +108915,1172,classical,1376935838 +108915,1172,foreign,1376935841 +108915,1172,Italy,1376935831 +108915,1172,mentor,1376935829 +108915,1172,nostalgia,1376935846 +108915,1172,nostalgic,1376935848 +108915,1172,Poetic,1376935851 +108915,1172,reflective,1376935850 +108915,1172,sentimental,1376935853 +108915,1172,small town,1376935855 +108915,1172,touching,1376935857 +108915,1172,warm,1376935860 +108915,1175,atmospheric,1326931404 +108915,1175,Black comedy,1326931406 +108915,1175,cannibalism,1326931398 +108915,1175,dark comedy,1326931408 +108915,1175,dystopia,1326931422 +108915,1175,French,1326931410 +108915,1175,music,1326931428 +108915,1175,Post apocalyptic,1326931412 +108915,1175,quirky,1326931411 +108915,1175,stylized,1326931417 +108915,1175,surreal,1326931419 +108915,1183,adultery,1356192025 +108915,1183,Africa,1356192095 +108915,1183,beautiful scenery,1356192059 +108915,1183,british,1356192042 +108915,1183,Oscar (Best Cinematography),1356192036 +108915,1183,Oscar (Best Picture),1356192034 +108915,1183,Willem Dafoe,1356192030 +108915,1183,WWII,1356192084 +108915,1200,action,1364593579 +108915,1200,aliens,1364593581 +108915,1200,androids,1364593583 +108915,1200,atmospheric,1364593585 +108915,1200,classic,1364593589 +108915,1200,horror,1364593597 +108915,1200,monster,1364593601 +108915,1200,Oscar (Best Effects - Visual Effects),1364593604 +108915,1200,sci-fi,1364593607 +108915,1200,Sigourney Weaver,1364593610 +108915,1200,space,1364593612 +108915,1200,suspense,1364593614 +108915,1200,tense,1364593617 +108915,1203,cinematography,1356210685 +108915,1203,classic,1356210669 +108915,1203,courtroom,1356210689 +108915,1203,courtroom drama,1356210666 +108915,1203,crime,1356210691 +108915,1203,drama,1356210695 +108915,1203,ensemble cast,1356210673 +108915,1203,good dialogue,1356210665 +108915,1203,gritty,1356210702 +108915,1203,group psychology,1356210704 +108915,1203,imdb top 250,1356210707 +108915,1203,justice,1356210711 +108915,1203,low budget,1356210660 +108915,1203,racism,1356210647 +108915,1203,social commentary,1356210639 +108915,1203,thought-provoking,1356210636 +108915,1214,aliens,1338839347 +108915,1214,androids,1338839348 +108915,1214,atmospheric,1338839355 +108915,1214,classic,1338839356 +108915,1214,futuristic,1338839363 +108915,1214,paranoid,1338839374 +108915,1214,Ridley Scott,1338839325 +108915,1214,space,1338839327 +108915,1214,space travel,1338839329 +108915,1214,suspense,1338839381 +108915,1214,thriller,1338839385 +108915,1252,atmospheric,1318632624 +108915,1252,classic,1318632633 +108915,1252,cynical,1318632627 +108915,1252,dark,1318632630 +108915,1252,Film Noir,1318632612 +108915,1252,Incest,1318632607 +108915,1252,Jack Nicholson,1318632615 +108915,1252,private detective,1318632636 +108915,1252,Roman Polanski,1318632620 +108915,1252,slow,1318632654 +108915,1279,BRIEF ENCOUNTERS,1387488627 +108915,1279,episodic,1387488578 +108915,1279,humorous,1387488580 +108915,1279,multilingual,1387488597 +108915,1279,multiple locations,1387488599 +108915,1279,multiple storylines,1387488595 +108915,1279,nocturnal,1387488613 +108915,1279,one day,1387488615 +108915,1279,quirky,1387488600 +108915,1279,talky,1387488608 +108915,1279,taxi drivers,1387488611 +108915,1279,Tom Waits,1387488602 +108915,1279,Winona Ryder,1387488604 +108915,1354,Best Performance: Emily Watson as Bess McNeill,1437122252 +108915,1354,bleak,1437122376 +108915,1354,disturbing,1437122229 +108915,1354,Emily Watson,1437122231 +108915,1354,great acting,1437122233 +108915,1354,harsh,1437122295 +108915,1354,Innocence,1437122363 +108915,1354,lars von trier,1437122352 +108915,1354,loneliness,1437122404 +108915,1354,mental illness,1437122446 +108915,1354,mental imbalance,1437122372 +108915,1354,passionate,1437122369 +108915,1354,psychological,1437122378 +108915,1354,relationships,1437122374 +108915,1354,religion,1437122335 +108915,1354,sad,1437122298 +108915,1354,Scotland,1437122393 +108915,1354,Tragedy,1437122338 +108915,1635,1970s,1449358532 +108915,1635,Atmospheric,1449358537 +108915,1635,bleak,1449358531 +108915,1635,dysfunctional family,1449358540 +108915,1635,suburbia,1449358542 +108915,1635,visually appealing,1449358524 +108915,1784,Comedy,1308412756 +108915,1784,Helen Hunt,1308412766 +108915,1784,Jack Nicholson,1308412754 +108915,1784,neurosis,1308412760 +108915,1784,obsessive compulsive disorder,1308412765 +108915,1956,bad mothers,1391805429 +108915,1956,depressing,1391805423 +108915,1956,dysfunctional family,1391805421 +108915,1956,guilt,1391805459 +108915,1956,Oscar (Best Directing),1391805466 +108915,1956,Oscar (Best Picture),1391805464 +108915,1956,painful to watch,1391805434 +108915,1956,personal growth,1391805440 +108915,1956,Robert Redford,1391805477 +108915,1956,subgenre:family dynamics,1391805491 +108915,1956,therapist,1391805479 +108915,1968,1980s,1361355450 +108915,1968,cliche,1361355670 +108915,1968,Comedy,1361355386 +108915,1968,coming of age,1361355388 +108915,1968,cult film,1361355699 +108915,1968,detention,1361355390 +108915,1968,Drama,1361355393 +108915,1968,ensemble cast,1361355714 +108915,1968,generation gap,1361355675 +108915,1968,great music,1361355720 +108915,1968,sentimental,1361355397 +108915,1968,teen,1361355414 +108915,2268,classic,1358973377 +108915,2268,corruption,1358973390 +108915,2268,courtroom drama,1358973398 +108915,2268,crime,1358973365 +108915,2268,ensemble cast,1358973358 +108915,2268,military,1358973370 +108915,2313,19th century,1437766314 +108915,2313,Atmospheric,1437766257 +108915,2313,based on a book,1437766269 +108915,2313,black and white,1437766255 +108915,2313,David Lynch,1437766254 +108915,2313,depressing,1437766285 +108915,2313,England,1437766288 +108915,2313,historical,1437766278 +108915,2313,melancholic,1437766294 +108915,2313,melancholy,1437766272 +108915,2313,stylized,1437766259 +108915,2395,affectionate,1397682116 +108915,2395,Bill Murray,1397682199 +108915,2395,bittersweet,1397682140 +108915,2395,clever,1397682117 +108915,2395,coming of age,1397682142 +108915,2395,deadpan,1397682119 +108915,2395,high school,1397682181 +108915,2395,literate,1397682120 +108915,2395,notable soundtrack,1397682125 +108915,2395,off-beat comedy,1397682149 +108915,2395,quirky,1397682123 +108915,2395,sarcasm,1397682184 +108915,2395,school drama,1397682155 +108915,2395,silly,1397682209 +108915,2395,stylized,1397682153 +108915,2395,witty,1397682157 +108915,2729,controversial,1303848055 +108915,2729,erotic,1303848032 +108915,2729,May-December romance,1303848083 +108915,2729,Stanley Kubrick,1303848072 +108915,2729,temptation,1303848085 +108915,2932,atmospheric,1336261277 +108915,2932,cinematography,1336261288 +108915,2932,dreamlike,1336261293 +108915,2932,Richard Gere,1336261314 +108915,3168,Atmospheric,1355162423 +108915,3168,classic,1355162464 +108915,3168,drugs,1355162491 +108915,3168,freedom,1355162513 +108915,3168,gritty,1355162422 +108915,3168,humorous,1355162431 +108915,3168,motorcycle,1355162502 +108915,3168,notable soundtrack,1355162439 +108915,3168,reflective,1355162483 +108915,3168,road movie,1355162443 +108915,3168,social commentary,1355162445 +108915,3481,awesome soundtrack,1405008027 +108915,3481,based on a book,1405008013 +108915,3481,break-up,1405008024 +108915,3481,Chicago,1405008011 +108915,3481,Classic,1405008009 +108915,3481,comedy,1405008030 +108915,3481,drama,1405008040 +108915,3481,funny,1405008006 +108915,3481,great soundtrack,1405008008 +108915,3481,John Cusack,1405008054 +108915,3481,music,1405008003 +108915,3481,quirky,1405008000 +108915,3481,relationships,1405008046 +108915,3556,1970s,1388786383 +108915,3556,adolescence,1388786392 +108915,3556,atmospheric,1388786393 +108915,3556,coming of age,1388786386 +108915,3556,dreamlike,1388786399 +108915,3556,great ending,1388786406 +108915,3556,high school,1388786407 +108915,3556,Kirsten Dunst,1388786412 +108915,3556,melancholy,1388786416 +108915,3556,narrated,1388786418 +108915,3556,psychology,1388786421 +108915,3556,reflective,1388786423 +108915,3556,stylized,1388786427 +108915,3556,suburbia,1388786430 +108915,3556,visually appealing,1388786432 +108915,3578,action,1368309100 +108915,3578,drama,1368309021 +108915,3578,heroism,1368309103 +108915,3578,imdb top 250,1368309095 +108915,3578,Joaquin Phoenix,1368308997 +108915,3578,Oscar (Best Actor),1368309027 +108915,3578,Oscar (Best Picture),1368309041 +108915,3578,Oscar (Best Sound),1368309044 +108915,3578,Ridley Scott,1368309047 +108915,3578,Rome,1368309050 +108915,3578,Russell Crowe,1368309109 +108915,3578,shallow plot,1368308987 +108915,3578,sword fight,1368308995 +108915,3578,violence,1368309112 +108915,3581,90s club culture,1364691876 +108915,3581,British,1364691881 +108915,3581,cliche,1364691904 +108915,3581,drugs,1364691878 +108915,3581,friendship,1364691886 +108915,3581,romance,1364691914 +108915,3638,flashy,1355069824 +108915,3638,slick,1355069826 +108915,3639,rape,1355069880 +108915,3706,an undiscovered classic,1297627569 +108915,3706,Mickey Rourke,1297627734 +108915,3706,Robert De Niro,1297627738 +108915,3706,Voodoo,1297627583 +108915,3735,Al Pacino,1263933708 +108915,3735,police corruption,1263933727 +108915,3809,Bill Murray,1440281212 +108915,3809,funny,1440281223 +108915,3809,psychology,1440281214 +108915,3809,quirky,1440281218 +108915,3809,vacation,1440281220 +108915,3910,blindness,1319328318 +108915,3910,drama,1319328326 +108915,3910,grim,1319328313 +108915,3910,Lars von Trier,1319328328 +108915,3910,sad,1319328298 +108915,3949,addiction,1381778078 +108915,3949,atmospheric,1381778080 +108915,3949,based on a book,1381778090 +108915,3949,dark,1381778092 +108915,3949,depressing,1381778082 +108915,3949,disturbing,1381778084 +108915,3949,drugs,1381778088 +108915,3949,emotional,1381778119 +108915,3949,loneliness,1381778085 +108915,3949,oscar (best directing),1381778125 +108915,3949,prostitution,1381778104 +108915,3949,psychology,1381778107 +108915,3949,Romance,1381778105 +108915,3949,social commentary,1381778108 +108915,3949,visually appealing,1381778110 +108915,4022,adventure,1324165551 +108915,4022,loneliness,1324165560 +108915,4022,man vs. nature,1324165564 +108915,4022,monologue driven,1324165579 +108915,4022,stranded,1324165554 +108915,4022,Tom Hanks,1324165558 +108915,4210,atmospheric,1448201364 +108915,4210,based on a book,1448201343 +108915,4210,detectives,1448201313 +108915,4210,disturbing,1448201308 +108915,4210,FBI,1448201310 +108915,4210,Hannibal Lecter,1448201296 +108915,4210,menacing,1448201312 +108915,4210,MURDER INVESTIGATIONS,1448201357 +108915,4210,ominous,1448201345 +108915,4210,remade,1448201350 +108915,4210,serial killer,1448201298 +108915,4210,SERIAL KILLERS,1448201321 +108915,4210,stylized,1448201325 +108915,4210,tense,1448201355 +108915,4210,visually appealing,1448201360 +108915,4235,affair,1364081428 +108915,4235,car chase,1364081300 +108915,4235,dogs,1364081304 +108915,4235,drama,1364081307 +108915,4235,episodic,1364081309 +108915,4235,hitman,1364081382 +108915,4235,independent film,1364081349 +108915,4235,Mexican,1364081361 +108915,4235,Mexico,1364081413 +108915,4235,multiple storylines,1364081401 +108915,4235,spanish,1364081367 +108915,4235,violence,1364081284 +108915,4255,over the top,1323816712 +108915,4255,Tom Green,1323816715 +108915,4255,weird,1323816700 +108915,4255,witty,1323816703 +108915,4351,action-packed,1388852049 +108915,4351,adrenaline junkie,1388852060 +108915,4351,bank robbery,1388852065 +108915,4351,cop movie,1388852070 +108915,4351,cult film,1388852072 +108915,4351,entertaining,1388852073 +108915,4351,fun,1388852076 +108915,4351,Keanu Reeves,1388852077 +108915,4351,Patrick Swayze,1388852097 +108915,4351,relentless,1388852100 +108915,4351,sport:surfing,1388852103 +108915,4351,surfing,1388852107 +108915,4351,undercover cop,1388852104 +108915,4641,adolescence,1361827677 +108915,4641,bittersweet,1361827669 +108915,4641,coming of age,1361827664 +108915,4641,dark comedy,1361827705 +108915,4641,depressing,1361827687 +108915,4641,friendship,1361827693 +108915,4641,funny,1361827697 +108915,4641,indie,1361827662 +108915,4641,quirky,1361827680 +108915,4641,reflective,1361827644 +108915,4641,sarcasm,1361827651 +108915,4641,Scarlett Johansson,1361827661 +108915,4641,stylized,1361827645 +108915,4641,suburbia,1361827649 +108915,4811,1960s,1351371012 +108915,4811,counterculture,1351371083 +108915,4811,drugs,1351371070 +108915,4811,mods,1351371043 +108915,4811,rebellion,1351371018 +108915,4811,rebels and outsiders,1351371020 +108915,4811,rockers,1351371055 +108915,4811,youth,1351371098 +108915,5388,Al Pacino,1359152674 +108915,5388,atmospheric,1359152676 +108915,5388,Christopher Nolan,1359152672 +108915,5388,corruption,1359152689 +108915,5388,detective,1359152685 +108915,5388,Hilary Swank,1359152661 +108915,5388,insomnia,1359152633 +108915,5388,murder,1359152631 +108915,5388,police,1359152625 +108915,5388,police investigation,1359152619 +108915,5388,psychology,1359152616 +108915,5388,remake,1359152622 +108915,5388,Robin Williams,1359152612 +108915,5388,story,1359152614 +108915,5388,thought-provoking,1359152610 +108915,5673,awkward,1323647248 +108915,5673,bittersweet,1323647212 +108915,5673,hallucinatory,1323647209 +108915,5673,music,1323647215 +108915,5673,quirky,1323647228 +108915,5673,SIBLING RELATIONSHIPS,1323647220 +108915,5673,tense,1323647239 +108915,5673,underrated,1323647225 +108915,5812,1950s,1453595015 +108915,5812,interracial romance,1453595048 +108915,5812,racism,1453595030 +108915,5812,secrets,1453595021 +108915,5812,stylized,1453595034 +108915,6370,Barcelona,1322961883 +108915,6370,college,1322961885 +108915,6370,Erasmus,1322961864 +108915,6370,exchange student,1322961890 +108915,6370,exchange year,1322961887 +108915,6370,Spain,1322961867 +108915,6552,blackmail,1431263599 +108915,6552,England,1431263597 +108915,6552,gritty,1431263600 +108915,6552,hotel,1431263591 +108915,6552,illegal immigration,1431263585 +108915,6552,immigrants,1431263595 +108915,6552,London,1431263583 +108915,6552,sexual exploitation,1431263591 +108915,7034,adolescence,1320876459 +108915,7034,homosexuality,1320876465 +108915,7034,lesbian,1320876470 +108915,7034,mother daughter relationship,1320876463 +108915,7034,sexuality,1320876475 +108915,7034,teenagers,1320876482 +108915,7327,emotional,1301595797 +108915,7327,over-the-top,1301595768 +108915,7327,psychoanalysis,1301595785 +108915,7327,psychology,1301595782 +108915,7327,Swedish,1301595789 +108915,7460,Atmospheric,1360361691 +108915,7460,Bill Murray,1360361695 +108915,7460,black and white,1360361712 +108915,7460,Cate Blanchett,1360361715 +108915,7460,dialogue,1360361721 +108915,7460,dialogue driven,1360361753 +108915,7460,episodic,1360361757 +108915,7460,minimalist,1360361726 +108915,7460,smoking,1360361767 +108915,7460,Steve Buscemi,1360361734 +108915,7460,Steve Coogan,1360361738 +108915,8014,Atmospheric,1433024727 +108915,8014,bittersweet,1433024747 +108915,8014,buddhism,1433024731 +108915,8014,buddhist,1433024736 +108915,8014,character driven,1433024738 +108915,8014,episodic,1433024740 +108915,8014,great photograpy,1433024728 +108915,8014,reflective,1433024734 +108915,8014,scenic,1433024749 +108915,8183,Michael Caine,1308443409 +108915,8183,soundtrack,1308443376 +108915,8340,Alcatraz,1442952113 +108915,8340,Clint Eastwood,1442952107 +108915,8340,prison,1442952111 +108915,8340,prison escape,1442952106 +108915,8638,activist,1330907269 +108915,8638,bittersweet,1330907166 +108915,8638,dialogue,1330907154 +108915,8638,emotional,1330907168 +108915,8638,Ethan Hawke,1330907175 +108915,8638,intelligent,1330907227 +108915,8638,Julie Delpy,1330907252 +108915,8638,Paris,1330907193 +108915,8638,philosophical,1330907204 +108915,8638,quirky,1330907197 +108915,8914,clever,1336697180 +108915,8914,Complicated,1336697164 +108915,8914,complicated plot,1336697161 +108915,8914,Deep,1336697205 +108915,8914,dialogue driven,1336697177 +108915,8914,disturbing,1336697208 +108915,8914,indie,1336697200 +108915,8914,intellectual,1336697182 +108915,8914,intelligent,1336697198 +108915,8914,inventor,1336697211 +108915,8914,mindfuck,1336697173 +108915,8914,physics,1336697187 +108915,8914,sci-fi,1336697184 +108915,8914,science,1336697215 +108915,8914,science fiction,1336697218 +108915,8914,thought-provoking,1336697225 +108915,8914,time travel,1336697221 +108915,8949,Paul Giamatti,1299285634 +108915,26947,ambiguous ending,1326931734 +108915,26947,drugs,1326931746 +108915,26947,Kim Bodnia,1326931737 +108915,26947,Mads Mikkelsen,1326931738 +108915,26947,Nicolas Winding Refn,1326931740 +108915,26947,open ending,1326931742 +108915,27700,Andreas Wilson,1346460328 +108915,27700,based on a book,1346460357 +108915,27700,boarding school,1346460344 +108915,27700,bullying,1346460347 +108915,27700,corporal punishment,1346460350 +108915,27700,domestic violence,1346460363 +108915,27700,fraternity,1346460373 +108915,27700,friendship,1346460375 +108915,27700,justice,1346460377 +108915,27700,oppression,1346460390 +108915,27700,racism,1346460411 +108915,27700,swedish,1346460425 +108915,27700,violence,1346460428 +108915,31364,atmospheric,1368739413 +108915,31364,disturbing,1368739416 +108915,31364,gritty,1368739418 +108915,31364,korean,1368739449 +108915,31364,melancholy,1368739421 +108915,31364,mysterious death,1368739445 +108915,31364,police investigation,1368739424 +108915,31364,serial killer,1368739428 +108915,31364,torture,1368739437 +108915,31364,understated,1368739435 +108915,34528,Amy Adams,1423519525 +108915,34528,austere,1423519570 +108915,34528,bittersweet,1423519552 +108915,34528,class issues,1423519535 +108915,34528,pregnancy,1423519537 +108915,34528,quirky,1423519522 +108915,34528,understated,1423519518 +108915,36529,Africa,1351731681 +108915,36529,arms dealer,1351731680 +108915,36529,corruption,1351731713 +108915,36529,Crime,1351731726 +108915,36529,dark comedy,1351731669 +108915,36529,drugs,1351731688 +108915,36529,narrated,1351731695 +108915,36529,organized crime,1351731707 +108915,36529,political,1351731700 +108915,36529,smuggling,1351731730 +108915,36529,violence,1351731737 +108915,36535,beautiful scenery,1346801995 +108915,36535,colourful,1346801998 +108915,36535,culture clash,1346802000 +108915,36535,dog,1346802006 +108915,36535,drama,1346802009 +108915,36535,elijah wood,1346802018 +108915,36535,Holocaust,1346802048 +108915,36535,nature,1346802037 +108915,36535,quirky,1346802025 +108915,36535,ukraine,1346802029 +108915,39427,amazing cinematography,1383430343 +108915,39427,bad pace,1383430439 +108915,39427,dreamlike,1383430345 +108915,39427,Ewan McGregor,1383430347 +108915,39427,incomprehensible,1383430332 +108915,39427,psychological,1383430360 +108915,39427,ryan gosling,1383430383 +108915,39427,surreal,1383430368 +108915,39427,surrealism,1383430370 +108915,39427,thought provoking,1383430381 +108915,39427,twist,1383430375 +108915,39427,twist ending,1383430376 +108915,44761,Emilie de Ravin,1301855256 +108915,44929,Abbie Cornish,1388943649 +108915,44929,addiction,1388943672 +108915,44929,Australia,1388943645 +108915,44929,downbeat,1388943642 +108915,44929,drug addiction,1388943681 +108915,44929,drugs,1388943682 +108915,44929,gritty,1388943638 +108915,44929,Heath Ledger,1388943612 +108915,44929,heroin,1388943679 +108915,44929,love,1388943660 +108915,44929,Nudity (Topless),1388943616 +108915,44929,poetry,1388943619 +108915,44929,pregnancy,1388943623 +108915,44929,prostitution,1388943687 +108915,44929,rehabilitation,1388943626 +108915,44929,understated,1388943628 +108915,44974,controversial,1330356778 +108915,44974,disturbing,1330356775 +108915,44974,mature kids,1330356834 +108915,44974,paedophilia,1330356787 +108915,44974,psychology,1330356793 +108915,44974,sexual abuse,1330356780 +108915,44974,suspenseful,1330356796 +108915,44974,tense,1330356797 +108915,44974,torture,1330356800 +108915,44974,vengence,1330356804 +108915,47423,Addiction,1390689625 +108915,47423,basketball,1390689626 +108915,47423,Brooklyn,1390689633 +108915,47423,drugs,1390689637 +108915,47423,friendship,1390689620 +108915,47423,independent film,1390689639 +108915,47423,New York City,1390689645 +108915,47423,Oscar Nominee,1390689599 +108915,47423,overrated,1390689596 +108915,47423,slow,1390689611 +108915,47423,teacher,1390689614 +108915,47423,unresolved,1390689607 +108915,47423,urban,1390689616 +108915,47491,black comedy,1322321270 +108915,47491,convicts,1322321297 +108915,47491,cynical,1322321299 +108915,47491,danish,1322321275 +108915,47491,disability,1322321303 +108915,47491,foreign language,1322321256 +108915,47491,Mads Mikkelsen,1322321261 +108915,47491,quirky,1322321263 +108915,47491,small town,1322321265 +108915,47491,thought-provoking,1322321269 +108915,48082,Charlotte Gainsbourg,1327614438 +108915,48082,dreams,1327614402 +108915,48082,fantasy,1327614507 +108915,48082,mental illness,1327614486 +108915,48082,Michel Gondry,1327614549 +108915,48082,psychological,1327614491 +108915,48082,psychology,1327614420 +108915,48082,quirky,1327614421 +108915,48082,stylized,1327614497 +108915,48082,surreal,1327614425 +108915,48783,american,1360788416 +108915,48783,Clint Eastwood,1360788421 +108915,48783,flag-raising photograph,1360788368 +108915,48783,iwo jima,1360788372 +108915,48783,patriotic,1360788379 +108915,48783,propaganda,1360788394 +108915,48783,real heroes,1360788398 +108915,48783,Ryan Phillippe,1360788404 +108915,48783,war,1360788412 +108915,48783,World War II,1360788406 +108915,50912,Episode cinema,1344115636 +108915,50912,episodic,1344115621 +108915,50912,France,1344115677 +108915,50912,French,1344115625 +108915,50912,Natalie Portman,1344115616 +108915,50912,romance,1344115684 +108915,50912,romantic,1344115628 +108915,50912,variations on a theme,1344115631 +108915,51662,Based on a comic book,1390773738 +108915,51662,based on comic,1390773704 +108915,51662,computer animation,1390773628 +108915,51662,fighting,1390773713 +108915,51662,Frank Miller,1390773715 +108915,51662,Gerard Butler,1390773718 +108915,51662,gore,1390773630 +108915,51662,historically inaccurate,1392479899 +108915,51662,remake,1390773632 +108915,51662,sexualized violence,1390773634 +108915,51662,unintentionally funny,1390773755 +108915,51662,xenophobia,1390773751 +108915,52241,Heist,1367618053 +108915,52241,Jeff Daniels,1367618057 +108915,52241,Joseph Gordon-Levitt,1367618064 +108915,52241,mentally impaired,1367618068 +108915,55280,delusion,1320358970 +108915,55280,Emily Mortimer,1320358959 +108915,55280,emotional,1320359002 +108915,55280,I wanted to hug this movie,1320358952 +108915,55280,little town,1320358977 +108915,55280,Ryan Gosling,1320358986 +108915,55280,The end of the solitude,1320457177 +108915,55280,touching,1320358979 +108915,55280,weird,1320358996 +108915,55280,well acted,1320457192 +108915,55814,beautiful,1364250900 +108915,55814,biomedical ethics,1364250919 +108915,55814,father-son relationship,1364250898 +108915,55814,flashbacks,1364250928 +108915,55814,foreign language,1364250925 +108915,55814,French,1364250932 +108915,55814,Golden Globe winner,1364250896 +108915,55814,great cinematography,1364250889 +108915,55814,paralysis,1364250934 +108915,55814,slow,1364250784 +108915,55814,touching,1364250779 +108915,55814,true story,1364250789 +108915,56389,Jude Law,1297023768 +108915,56389,Natalie Portman,1297023786 +108915,56389,Norah Jones,1297023770 +108915,56389,visually appealing,1297023781 +108915,59118,awkward,1442172989 +108915,59118,bittersweet,1442172987 +108915,59118,British,1442173010 +108915,59118,drama,1442172993 +108915,59118,uncomfortable,1442172986 +108915,60293,Ben Kingsley,1352161000 +108915,60293,coming of age,1352160998 +108915,60293,dealing,1352161002 +108915,60293,depression,1352161009 +108915,60293,drama,1352161007 +108915,60293,drugs,1352161012 +108915,60293,hip-hop,1352160989 +108915,60293,Mary-Kate Olsen,1352160990 +108915,60293,new york,1352161021 +108915,60293,psychiatry,1352161023 +108915,60293,slow,1392479674 +108915,60293,teens,1352161030 +108915,60293,weed,1352161032 +108915,63082,based on a book,1241304440 +108915,63082,cinematography,1241304408 +108915,63082,dark side of India,1241304411 +108915,63082,music,1241304426 +108915,63876,based on a true story,1378829656 +108915,63876,biography,1378829649 +108915,63876,drama,1378829659 +108915,63876,history,1378829654 +108915,63876,homophobia,1378829670 +108915,63876,James Franco,1378829681 +108915,63876,Oscar (Best Actor),1378829684 +108915,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1378829688 +108915,63876,police brutality,1378829692 +108915,63876,politics,1378829699 +108915,63876,San Francisco,1378829701 +108915,63876,Sean Penn,1378829703 +108915,63876,setting:San Francisco,1378829707 +108915,63876,thought-provoking,1378829709 +108915,63876,touching,1378829714 +108915,63876,true story,1378829720 +108915,64197,atmospheric,1367965451 +108915,64197,bleak,1367965455 +108915,64197,Ireland,1367965466 +108915,64197,Michael Fassbender,1367965468 +108915,64197,prison,1367965518 +108915,64197,Steve McQueen,1367965517 +108915,64197,true story,1367965510 +108915,64614,Clint Eastwood,1259966425 +108915,64614,heartwarming,1259966435 +108915,64614,mentor,1259966431 +108915,64614,sacrifice,1259966418 +108915,65596,based on a true story,1352117178 +108915,65596,crime,1352117225 +108915,65596,fast paced,1352117315 +108915,65596,Gérard Depardieu,1352117200 +108915,65596,jacques mesrine,1352117206 +108915,65596,prison escape,1352117215 +108915,65596,robbery,1352117217 +108915,65596,Vincent Cassel,1352117222 +108915,66200,Brooklyn,1258923303 +108915,66200,Gwyneth Paltrow,1258923301 +108915,66200,Isabella Rossellini,1258923334 +108915,66200,Joaquin Phoenix,1258923297 +108915,66200,love triangle,1258923339 +108915,66200,suicide attempt,1258923343 +108915,66385,Iraq War,1421495815 +108915,66385,Kevin Bacon,1421495733 +108915,66385,made for TV,1421495709 +108915,66385,Marine Corps,1421495806 +108915,66385,military,1421495824 +108915,66385,pro-military,1421495803 +108915,66385,true story,1421495813 +108915,66385,US centric,1421495744 +108915,67695,dark comedy,1319320613 +108915,67695,hilarious,1319320639 +108915,67695,Seth Rogen,1319320618 +108915,67695,Unlikable protagonist,1319320632 +108915,67997,BBC Films,1367618161 +108915,67997,british,1367618169 +108915,67997,overrated,1367618146 +108915,67997,politics,1367618172 +108915,67997,Steve Coogan,1367618185 +108915,67997,swearing,1367618151 +108915,70286,Peter Jackson,1258771643 +108915,70728,alter ego,1364161547 +108915,70728,England,1364161543 +108915,70728,male nudity,1364161535 +108915,70728,mental illness,1364161532 +108915,70728,prison,1364161531 +108915,70728,Tom Hardy,1364161527 +108915,70728,violent,1364161573 +108915,71579,1960s,1310931921 +108915,71579,cliche,1310931900 +108915,71579,Paris,1310931921 +108915,72554,prison guards,1352498448 +108915,72554,riot,1352498392 +108915,72554,Spain,1352498429 +108915,72720,1960s,1428787882 +108915,72720,beautiful cinematography,1428787821 +108915,72720,cinematography,1428787842 +108915,72720,Colin Firth,1428787819 +108915,72720,Cuban missile crisis,1428787943 +108915,72720,gay,1428787829 +108915,72720,Gay Lead Character,1428787838 +108915,72720,grief,1428787885 +108915,72720,Gripping,1428787980 +108915,72720,Julianne Moore,1428787825 +108915,72720,life & death,1428787852 +108915,72720,mourning,1428787865 +108915,72720,Philosophical,1428788012 +108915,72720,queer,1428787930 +108915,72720,reflective,1428787935 +108915,72720,sad,1428787834 +108915,72720,styling,1428787925 +108915,72720,suicide,1428787831 +108915,72720,teacher,1428787940 +108915,72720,Tom Ford,1428787856 +108915,72733,sports,1298231169 +108915,73587,comedy,1390514979 +108915,73587,great soundtrack,1390514977 +108915,73587,restaurant,1390514982 +108915,73587,sexuality,1390514974 +108915,73860,Beatles,1324165637 +108915,73860,dysfunctional family,1324165639 +108915,73860,John Lennon,1324165660 +108915,74416,british english,1310310705 +108915,74416,cliche characters,1310310649 +108915,74416,coming of age,1310310673 +108915,74416,disturbing,1310310657 +108915,74416,lower class,1310310666 +108915,74416,realism,1310310663 +108915,74416,realistic,1310310659 +108915,74416,statuory rape,1310310631 +108915,74624,atheism,1302991241 +108915,74624,philosophy,1302991242 +108915,74624,Rachel Weisz,1302991232 +108915,74624,rationality,1302991244 +108915,77833,Afghanistan,1320456958 +108915,77833,confrontational,1320456960 +108915,77833,Middle East,1320456957 +108915,77833,war,1320456964 +108915,78039,open ending,1311100328 +108915,78039,painful,1311100329 +108915,78039,realism,1311100334 +108915,78039,Ryan Gosling,1311100331 +108915,78574,cinematography,1346459958 +108915,78574,death,1346459963 +108915,78574,drama,1346459965 +108915,78574,drugs,1346459973 +108915,78574,family relationships,1346459977 +108915,78574,friendship,1346459986 +108915,78574,Oscar Nominee: Adapted Screenplay,1346460067 +108915,78574,Oscar Nominee: Lead Actress,1346460068 +108915,78574,Oscar Nominee: Supporting Actor,1346460074 +108915,78574,quest,1346460234 +108915,78574,slow,1346460251 +108915,78836,drugs,1323825691 +108915,78836,lack of plot,1323825669 +108915,78836,psychedelic,1323825685 +108915,78836,too long,1323825649 +108915,79132,thought-provoking,1297974236 +108915,79702,fight scenes,1289077317 +108915,79702,video games,1289077309 +108915,79720,plot,1309560779 +108915,79897,Bill Murray,1358715411 +108915,79897,character development,1358715418 +108915,79897,characters,1358715422 +108915,79897,dramatic,1358715429 +108915,79897,funeral home,1358715425 +108915,79897,great acting,1358715402 +108915,79897,humor,1358715394 +108915,79897,justice,1358715437 +108915,79897,overlooked performances,1358715389 +108915,79897,religion,1358715409 +108915,79897,Robert Duvall,1358715380 +108915,79897,scenery,1358715386 +108915,79897,soundtrack,1358715381 +108915,79897,subtlety,1358715384 +108915,80549,Christianity,1447703131 +108915,80549,comedy,1447703171 +108915,80549,Emma Stone,1447703092 +108915,80549,family relationships,1447703112 +108915,80549,high school,1447703116 +108915,80549,lies,1447703140 +108915,80549,PEER PRESSURE,1447703129 +108915,80549,sexuality,1447703174 +108915,80549,strong female lead,1447703163 +108915,80549,virginity,1447703113 +108915,80693,trying to be indie,1309041257 +108915,80693,Zach Galifianakis,1309041303 +108915,80831,bullying,1323740552 +108915,80969,atmospheric,1374273289 +108915,80969,beautiful,1374273292 +108915,80969,cinematography,1374273303 +108915,80969,cynical,1374273330 +108915,80969,disturbing,1374273316 +108915,80969,dystopia,1374273314 +108915,80969,emotional,1374273356 +108915,80969,England,1374273284 +108915,80969,Keira Knightley,1374273340 +108915,80969,Poignant,1374273348 +108915,80969,sexuality,1374273345 +108915,80969,thought-provoking,1374273287 +108915,81156,amazing stunts,1322501764 +108915,81156,crude humor,1322501755 +108915,81156,dick and fart humor,1322501762 +108915,81156,funny pranks,1322501766 +108915,81156,Vulgar,1322501776 +108915,81562,James Franco,1298155538 +108915,81562,moving,1298155529 +108915,81591,atmospheric,1307987713 +108915,81591,ballet,1307987748 +108915,81591,Natalie Portman,1307987715 +108915,81845,1930s,1309010292 +108915,81845,based on a true story,1309010265 +108915,81845,father-son relationship,1309010289 +108915,81845,London,1309010300 +108915,81845,Oscar (Best Picture),1309010275 +108915,81845,stammering,1309010282 +108915,81845,true story,1309010267 +108915,81845,uplifting,1309010304 +108915,81932,Amy Adams,1300908276 +108915,81932,Christian Bale,1300908281 +108915,81932,Mark Wahlberg,1300908290 +108915,81932,poisionous family,1300908265 +108915,81932,police brutality,1300908269 +108915,81932,sexy redhead,1300908309 +108915,81932,white trash,1300908322 +108915,82463,bittersweet,1431897226 +108915,82463,bland,1431897241 +108915,82463,British,1431897196 +108915,82463,depressing,1431897231 +108915,82463,drinking,1431897208 +108915,82463,friendship,1431897211 +108915,82463,husband-wife relationship,1431897214 +108915,82463,loneliness,1431897194 +108915,82463,middle-aged people,1431897215 +108915,82463,seasons,1431897219 +108915,82667,crazy,1439579536 +108915,82667,disturbing,1439579552 +108915,82667,gore,1439579574 +108915,82667,hunting,1439579556 +108915,82667,Korea,1439579559 +108915,82667,murder,1439579538 +108915,82667,revenge,1439579548 +108915,82667,revenge fantasy,1439579580 +108915,82667,serial killer,1439579543 +108915,82667,suspense,1439579539 +108915,82667,torture,1439579545 +108915,82667,visually appealing,1439579541 +108915,84615,adultery,1351086770 +108915,84615,business,1351086801 +108915,84615,drugs,1351086776 +108915,84615,John C. Reilly,1351086793 +108915,84615,original story,1351086785 +108915,84772,aliens,1310323261 +108915,84772,Atheism,1310323221 +108915,84772,few funny scenes,1310323208 +108915,84772,laidback,1310323266 +108915,84772,referential,1310323231 +108915,84944,great voice acting,1316817907 +108915,84944,Johnny Depp,1316817898 +108915,84944,starts out original,1316817892 +108915,84944,western,1316817927 +108915,85881,acting,1367099184 +108915,85881,adolescent psychology,1367099181 +108915,85881,Alex Shaffer,1367099131 +108915,85881,child abuse,1367099153 +108915,85881,dementia,1367099172 +108915,85881,elder care,1367099177 +108915,85881,legal system,1367099175 +108915,85881,Paul Giamatti,1367099133 +108915,85881,realistic wrestling,1367099146 +108915,85881,Thomas McCarthy,1367099138 +108915,86028,off-beat comedy,1309561070 +108915,86028,slow paced,1309561016 +108915,86028,subtle humor,1309560991 +108915,86298,adventure,1319334022 +108915,86298,animation,1319334020 +108915,86298,good and evil,1319333990 +108915,86298,nature,1319334005 +108915,86298,nature wildlife,1319334000 +108915,86298,talking animals,1319334011 +108915,86320,apocalyptic,1326675452 +108915,86320,beautiful,1326675435 +108915,86320,big themes,1326675433 +108915,86320,cinematography,1326675393 +108915,86320,Drama,1326675420 +108915,86320,Kiefer Sutherland,1326675422 +108915,86320,Kirsten Dunst,1326675384 +108915,86320,Lars von Trier,1326675398 +108915,86320,metaphoric images,1326675404 +108915,86320,metaphors,1326675408 +108915,86332,Kat Dennings,1304623833 +108915,86332,present,1304623799 +108915,86548,1930s,1316909383 +108915,86548,animal abuse,1316909368 +108915,86548,animals,1316909379 +108915,86548,circus,1316909395 +108915,86548,justice,1316909391 +108915,86548,Reese Witherspoon,1316909354 +108915,86548,Robert Pattinson,1316909357 +108915,86548,romance,1316909386 +108915,86882,1920s,1336525774 +108915,86882,Adrien Brody,1336525807 +108915,86882,bittersweet,1336525772 +108915,86882,cinematography,1336525861 +108915,86882,France,1336525768 +108915,86882,funny,1336525771 +108915,86882,Owen Wilson,1336525843 +108915,86882,quirky,1336525766 +108915,86882,romance,1336525867 +108915,86882,thought-provoking,1336525762 +108915,86882,time travel,1336525827 +108915,86882,understated,1336525825 +108915,86882,whimsical,1336525763 +108915,86882,witty,1336525870 +108915,86882,writers,1336525829 +108915,87192,aliens,1318806777 +108915,87192,Monster design is good not great,1318806760 +108915,87192,Nick Frost,1318806771 +108915,87192,oldschoolish,1318806771 +108915,87234,Coming Of Age,1382881699 +108915,87234,Dsyfunction,1382881701 +108915,87234,First love,1382881704 +108915,87234,funny,1382881708 +108915,87234,great soundtrack,1382881706 +108915,87234,interesting characters,1382881710 +108915,87234,psychology,1382881723 +108915,87234,stylistic,1382881716 +108915,87234,Teenagers,1382881719 +108915,87234,Wales,1382881721 +108915,87298,no happy ending,1321654026 +108915,87298,original story,1321653989 +108915,87298,rebecca hall,1321654067 +108915,87298,Will Ferrell,1321654043 +108915,87304,believable,1335742827 +108915,87304,Christopher Plummer,1335742835 +108915,87304,drama,1335742839 +108915,87304,Ewan McGregor,1335742832 +108915,87304,great acting,1335742837 +108915,87304,homosexuality,1335742851 +108915,87304,love story,1335742856 +108915,87304,Melanie Laurent,1335742857 +108915,87304,realism,1335742866 +108915,87304,relationships,1335742880 +108915,87306,bad plot,1327273829 +108915,87306,cinematography,1327273874 +108915,87306,J.J. Abrams,1327273812 +108915,87306,sci-fi,1327273821 +108915,87306,storyline,1327273863 +108915,87306,trite,1327273824 +108915,88125,franchise,1323466708 +108915,88125,great cinematography,1323466725 +108915,88125,magic,1323466714 +108915,88125,series ending,1323466732 +108915,88125,unintentionally funny ending,1323466693 +108915,88129,atmospheric,1326193966 +108915,88129,cinematography,1326193968 +108915,88129,crime,1326193994 +108915,88129,great soundtrack,1326193945 +108915,88129,heist,1326194003 +108915,88129,little dialogue,1326193917 +108915,88129,ryan gosling,1326193925 +108915,88129,tense,1326193976 +108915,88129,violence,1326193970 +108915,88129,visually appealing,1326193978 +108915,88163,cast,1320457091 +108915,88163,Emma Stone,1320456823 +108915,88163,high school,1320457053 +108915,88163,masculinity through dress,1320457030 +108915,88163,mentor/trainer,1320457018 +108915,88163,PG-13,1320457082 +108915,88163,separation,1320456819 +108915,88405,chemistry between actors,1328054186 +108915,88405,easy ending,1328054203 +108915,88405,funny,1328054221 +108915,88405,Los Angeles,1328054166 +108915,88405,love story,1328054176 +108915,88405,Mila Kunis,1328054125 +108915,88405,New York City,1328054168 +108915,88405,predictable,1328054137 +108915,88746,embarassing scenes,1351639104 +108915,88746,jacob wysocki,1351639194 +108915,88746,John C. Reilly,1351639131 +108915,88746,quirky,1351639123 +108915,88746,small town,1351639122 +108915,89203,road trip,1377895779 +108915,89369,Demian Bichir,1342904593 +108915,89369,father son relationship,1342904597 +108915,89369,honor,1342904600 +108915,89369,immigrants,1342904605 +108915,89369,Jose Julian,1342904590 +108915,89369,Oscar nom,1342904578 +108915,89369,single father,1342904574 +108915,89470,all-star cast,1328054829 +108915,89470,disappointing,1328054820 +108915,89535,deadpan,1382898765 +108915,89535,disease,1382898845 +108915,89535,empty characters,1382898771 +108915,89535,Excrutiating,1382898861 +108915,89535,friendship,1382898837 +108915,89535,husband-wife relationship,1382898815 +108915,89535,illegal immigration,1382898819 +108915,89535,no emotional investment,1382898801 +108915,89535,police investigation,1382898823 +108915,89535,slow,1382898768 +108915,89535,unsympathetic characters,1382898858 +108915,89580,gangs,1347491880 +108915,89580,glasgow,1347491500 +108915,89580,Scotland,1347491506 +108915,89580,stabbing,1347491484 +108915,89580,too long,1347491782 +108915,89580,violence,1347491438 +108915,89580,violent,1347491439 +108915,89580,youth,1347491898 +108915,89745,overrated,1341168821 +108915,89745,silly,1341168819 +108915,89745,superhero,1341168826 +108915,89761,adultery,1355608051 +108915,89761,history,1355608047 +108915,89761,Keira Knightley,1355608021 +108915,89761,Michael Fassbender,1355608025 +108915,89761,Psychoanalysis,1355608027 +108915,89761,psychology,1355608031 +108915,89761,Viggo Mortensen,1355608022 +108915,89774,alcoholism,1352117077 +108915,89774,Boxing story,1352117072 +108915,89774,brother-brother relationship,1352117094 +108915,89774,father-son relationship,1352117096 +108915,89774,great acting,1352117105 +108915,89774,MMA,1352117132 +108915,89774,Nick Nolte,1352117135 +108915,89774,sports,1352117120 +108915,89774,teacher,1352117145 +108915,89774,Tom Hardy,1352117136 +108915,89774,touching,1352117138 +108915,89774,tournament,1352117147 +108915,89804,Paul Giamatti,1336863243 +108915,89804,plot holes,1336863217 +108915,89804,politics,1336863262 +108915,89804,Ryan Gosling,1336863246 +108915,89804,smart,1336863257 +108915,89862,break-up,1345325206 +108915,89862,dreamlike,1345325167 +108915,89862,handheld cameras,1345325125 +108915,89862,infidelity,1345325220 +108915,89862,Sundance,1345325064 +108915,89862,violence,1345325125 +108915,89864,Anna Kendrick,1328054882 +108915,89864,cancer,1328054926 +108915,89864,disease,1328054938 +108915,89864,Joseph Gordon-Levitt,1328054884 +108915,89864,Seth Rogen,1328054887 +108915,89864,unrealistic therapist,1328054980 +108915,89904,1920s,1432506029 +108915,89904,dogs,1432506035 +108915,89904,Hollywood,1432506039 +108915,89904,John Goodman,1432506041 +108915,89904,movie business,1432506031 +108915,89904,original,1432506027 +108915,89904,romance,1432506037 +108915,89904,silent movie,1432506024 +108915,89904,visually appealing,1432506024 +108915,90057,ambiguous,1351462897 +108915,90057,apocalyptic,1351462901 +108915,90057,apocalyptic storm,1351462905 +108915,90057,depressing,1351462911 +108915,90057,dreams,1351462915 +108915,90057,Jessica Chastain,1351462940 +108915,90057,mental illness,1351462933 +108915,90057,Michael Shannon,1351462939 +108915,90057,psychology,1351462944 +108915,90057,surprising,1351462951 +108915,90374,cinematography,1348353610 +108915,90374,Disturbing,1348353613 +108915,90374,Elizabeth Olsen,1348353615 +108915,90374,Hugh Dancy,1348353741 +108915,90374,mesmerizing,1348353638 +108915,90374,Nudity (Topless - Brief),1348353641 +108915,90374,sex,1348353685 +108915,90374,sexuality,1348353693 +108915,90374,Sexualized violence,1348353698 +108915,90374,Thriller,1348353664 +108915,90531,bleak,1347821645 +108915,90531,Carey Mulligan,1347821647 +108915,90531,frustration,1347821677 +108915,90531,Michael Fassbender,1347821658 +108915,90531,New York City,1347821661 +108915,90531,self-destruction,1347821672 +108915,90531,Steve McQueen,1347821635 +108915,91128,1950s,1351975351 +108915,91128,alcoholism,1351975348 +108915,91128,based on a book,1351975355 +108915,91128,Caribbean,1351975361 +108915,91128,Hunter S. Thompson,1351975364 +108915,91128,journalism,1351975375 +108915,91128,Latin America,1351975392 +108915,91128,Puerto Rico,1351975377 +108915,91808,homosexuality,1357505250 +108915,91808,religion,1357505205 +108915,92236,based on a true story,1347661780 +108915,92236,Holocaust,1347665304 +108915,92236,massacre,1347662803 +108915,92236,multilingual,1347661794 +108915,92236,Nazis,1347661525 +108915,92236,Poland,1347661684 +108915,92236,war,1347662793 +108915,92236,World War II,1347662781 +108915,92259,acting,1363042936 +108915,92259,art,1363042866 +108915,92259,based on a true story,1363042868 +108915,92259,disability,1363042876 +108915,92259,emotional,1363042879 +108915,92259,feel good movie,1363042881 +108915,92259,friendship,1363042883 +108915,92259,funny,1363042885 +108915,92259,hilarious,1363042887 +108915,92259,paralysis,1363042908 +108915,92259,Personality change,1363042912 +108915,92259,rich and poor,1363042916 +108915,92259,sexuality,1363042921 +108915,92259,soundtrack,1363042923 +108915,92259,touching,1363042926 +108915,92420,acting,1351209354 +108915,92420,coming of age,1351209359 +108915,92420,flying,1351209341 +108915,92420,Seattle,1351209338 +108915,92420,teenage angst,1351209317 +108915,92420,telekinesis,1351209329 +108915,92643,classroom drama,1367617766 +108915,92643,deep,1367617758 +108915,92643,suicide,1367617774 +108915,92643,warm,1367617783 +108915,93510,comedy,1342123161 +108915,93510,drugs,1342123034 +108915,93510,funny,1342123167 +108915,93510,high school,1342123028 +108915,93510,hilarious,1342123169 +108915,93510,Johnny Depp,1342123025 +108915,93510,Jonah Hill,1342123023 +108915,93510,meta,1342123146 +108915,93510,parody,1342123173 +108915,93510,self-aware,1342123021 +108915,93510,undercover cops,1342123182 +108915,93790,acting,1371850707 +108915,93790,Adrien Brody,1371850709 +108915,93790,depressing,1371850703 +108915,93790,Lucy Liu,1371850711 +108915,93790,teaching,1371850720 +108915,93831,bad acting,1341169206 +108915,93831,predictable,1341169120 +108915,93831,sexist,1341169092 +108915,93933,father-son relationship,1389643180 +108915,93933,good acting,1389643190 +108915,93933,Israel,1389643181 +108915,93933,open ending,1389643183 +108915,93933,stylized,1389643186 +108915,93982,Poe,1346436142 +108915,93982,poetry,1346436145 +108915,93982,serial killer,1346436149 +108915,94126,acting and story,1349043650 +108915,94126,cinematography,1349043652 +108915,94126,Crime,1349043653 +108915,94126,drama,1349043654 +108915,94126,Drugs,1349043656 +108915,94126,Matthias Schoenaerts,1349044079 +108915,94478,adapted from:TV series,1347061229 +108915,94478,curse,1347058474 +108915,94478,johnny depp,1347058446 +108915,94478,the plot,1347058434 +108915,95873,flat characters,1387581874 +108915,95873,human nature,1387581876 +108915,95873,Magic Realism,1387581879 +108915,95873,original,1387581883 +108915,95873,plot,1387581887 +108915,95873,quirky,1387581889 +108915,95873,Steve Coogan,1387581894 +108915,95873,writers,1387581892 +108915,96079,action,1382133610 +108915,96079,atmospheric,1382133617 +108915,96079,China,1382133660 +108915,96079,cinematography,1382133612 +108915,96079,dark,1382133622 +108915,96079,franchise,1382133625 +108915,96079,humor,1382133627 +108915,96079,mental illness,1382133638 +108915,96079,nostalgic,1382133641 +108915,96079,psychological,1382133643 +108915,96079,Scotland,1382133645 +108915,96079,spies,1382133649 +108915,96079,thriller,1382133653 +108915,96432,Great Depression,1353752471 +108915,96432,police,1353752502 +108915,96432,police corruption,1353752511 +108915,96432,violent,1353752518 +108915,96432,western,1353752522 +108915,96488,Apartheid,1367965689 +108915,96488,Detroit,1367965693 +108915,96488,Sixto Rodriguez,1367965694 +108915,96488,South Africa,1367965699 +108915,96610,assassin,1377154315 +108915,96610,complicated,1377154273 +108915,96610,complicated plot,1377154337 +108915,96610,dystopia,1377154341 +108915,96610,future,1377154345 +108915,96610,gore,1377154298 +108915,96610,hitman,1377154322 +108915,96610,sci-fi,1377154261 +108915,96610,tense,1377154310 +108915,96610,thriller,1377154262 +108915,96610,time travel,1377154263 +108915,96610,visually appealing,1377154266 +108915,96811,camerawork,1353752299 +108915,96811,cinematography,1353752317 +108915,96811,Jake Gyllenhaal,1353752352 +108915,96811,Michael Pena,1353752359 +108915,96811,police,1353752282 +108915,96821,amazing soundtrack,1374415366 +108915,96821,atmospheric,1374415377 +108915,96821,bittersweet,1374363111 +108915,96821,Captivating,1374363119 +108915,96821,coming of age,1374363131 +108915,96821,Ensemble Cast,1374415346 +108915,96821,high school,1374415356 +108915,96821,plot twist,1374415354 +108915,96821,resonant,1374415352 +108915,96821,Suicide,1374415349 +108915,96821,touching,1374363115 +108915,96829,child abuse,1380312543 +108915,96829,Community Laws,1380312544 +108915,96829,distrust,1380312546 +108915,96829,hard to watch,1380312528 +108915,96829,Mads Mikkelsen,1380312530 +108915,96829,painful to watch,1380312533 +108915,96829,sexual abuse,1380312550 +108915,96829,Thomas Vinterberg,1380312534 +108915,97024,accident,1371850922 +108915,97024,father-son relationship,1371850937 +108915,97024,Marion Cotillard,1371850947 +108915,97024,realistic,1371850970 +108915,97024,whales,1371850977 +108915,97326,British,1350172851 +108915,97326,Neo-realism,1350173054 +108915,97326,plot,1350172980 +108915,97326,realistic,1350172972 +108915,97326,soundtrack,1350172908 +108915,97921,cliche,1386454564 +108915,97921,dance,1386454567 +108915,97921,dark humor,1386454568 +108915,97921,drama,1386454573 +108915,97921,father-son relationship,1386454577 +108915,97921,football,1386454578 +108915,97921,humorous,1386454582 +108915,97921,loneliness,1386454586 +108915,97921,love,1386454589 +108915,97921,mental illness,1386454595 +108915,97921,Philadelphia,1386454603 +108915,97921,Robert De Niro,1386454591 +108915,97921,romance,1386454604 +108915,97923,addiction,1390773361 +108915,97923,alcoholism,1390773366 +108915,97923,cliche contrition,1390773352 +108915,97923,Denzel Washington,1390773358 +108915,97923,great acting,1390773377 +108915,97923,John Goodman,1390773357 +108915,97923,Nudity (Full Frontal),1390773355 +108915,97923,pilot,1390773383 +108915,97923,plane crash,1390773386 +108915,97923,suspense,1390773388 +108915,98017,classical music,1422100116 +108915,98017,philip seymour hoffman,1422100120 +108915,98809,adapted from:book,1356192187 +108915,98809,adventure,1356192140 +108915,98809,author:J. R. R. Tolkein,1356192173 +108915,98809,beautiful scenery,1356192136 +108915,98809,big budget,1356192121 +108915,98809,CGI,1356192196 +108915,98809,fantasy,1356192128 +108915,98809,franchise,1356192202 +108915,98809,magic,1356192147 +108915,98809,Peter Jackson,1356192151 +108915,98809,soundtrack,1356192170 +108915,99114,19th century,1365933668 +108915,99114,action,1365933665 +108915,99114,BOUNTY HUNTERS,1365933585 +108915,99114,brutal,1365933592 +108915,99114,drama,1365933589 +108915,99114,Flashbacks,1365933675 +108915,99114,Funny,1365933680 +108915,99114,Great performances,1365933561 +108915,99114,Leonardo DiCaprio,1365933563 +108915,99114,Quentin Tarantino,1365933557 +108915,99114,Revenge,1365933568 +108915,99114,Samuel L. Jackson,1365933554 +108915,99114,Slavery,1365933689 +108915,99114,Spaghetti Western,1365933579 +108915,99114,visually appealing,1365933551 +108915,99114,western,1365933572 +108915,100244,anti-corporation,1379270591 +108915,100244,ecological,1379270604 +108915,100244,Ellen Page,1379270593 +108915,100244,emotional,1379270607 +108915,100244,friendship,1379270632 +108915,100244,loyalty,1379270612 +108915,100244,relationships,1379270616 +108915,100244,revenge,1379270618 +108915,100244,spying,1379270622 +108915,100244,terrorism,1379270624 +108915,100440,bodily,1386182097 +108915,100440,children,1386182101 +108915,100440,horror,1386182150 +108915,100440,human nature,1386182105 +108915,100440,nazis,1386182107 +108915,100440,realistic,1386182112 +108915,100440,sensual,1386182114 +108915,100440,subtle,1386182116 +108915,100440,ultra-violence,1386182154 +108915,100440,visceral,1386182156 +108915,100440,World War II,1386182159 +108915,100714,Greece,1416700167 +108915,100714,honest,1416700163 +108915,102123,apocalypse,1390773561 +108915,102123,cast,1390773591 +108915,102123,Danny McBride,1390773559 +108915,102123,demons,1390773556 +108915,102123,dialogue,1379271610 +108915,102123,Emma Watson,1390773564 +108915,102123,gore,1390773566 +108915,102123,Hollywood,1390773577 +108915,102123,James Franco,1390773554 +108915,102123,lacks substance,1379271736 +108915,102123,Michael Cera,1390773546 +108915,102123,movie business,1390773579 +108915,102123,not funny,1390773537 +108915,102123,preachy,1390773535 +108915,102123,religion,1390773531 +108915,102123,Seth Rogen,1390773548 +108915,102123,story,1379272051 +108915,102123,stupid,1390773530 +108915,102445,adapted from:TV series,1378400487 +108915,102445,aliens,1378400428 +108915,102445,based on a TV show,1378400433 +108915,102445,bromance,1378400427 +108915,102445,fast paced,1378400438 +108915,102445,franchise,1378400443 +108915,102445,predictable,1378400499 +108915,102445,revenge,1378400495 +108915,102445,Romance,1378400479 +108915,102445,Simon Pegg,1378400449 +108915,102445,space,1378400451 +108915,102792,atheism,1434754791 +108915,102792,drama,1434754844 +108915,102792,emotional,1434754802 +108915,102792,heartbreaking,1434754815 +108915,102792,music,1434754802 +108915,102792,nonlinear,1434754821 +108915,102792,relationships,1434754828 +108915,102792,religion,1434754810 +108915,102819,1970s,1422912555 +108915,102819,based on a book,1422912536 +108915,102819,based on a true story,1422912573 +108915,102819,boy toy,1422912588 +108915,102819,cosmetic surgery,1422912575 +108915,102819,Gay,1422912602 +108915,102819,Gay Lead Character,1422912577 +108915,102819,Liberace,1422912543 +108915,102819,manipulation,1422912554 +108915,102819,Matt Damon,1422912540 +108915,102819,Michael Douglas,1422912582 +108915,102819,pianist,1422912549 +108915,102819,piano,1422912520 +108915,102819,plastic surgery,1422912547 +108915,102819,queer,1422912604 +108915,102819,showbusiness,1422912532 +108915,102993,coming of age,1386461028 +108915,102993,Drama,1386461030 +108915,102993,heartwarming,1386461032 +108915,102993,infidelity,1386461025 +108915,102993,predictable plot,1386461049 +108915,102993,summer,1386461041 +108915,103279,Steve Coogan,1412700869 +108915,104339,awkward romance,1390515242 +108915,104339,hilarious,1390515266 +108915,104339,Lake Bell,1390515217 +108915,104339,voice acting,1390515207 +108915,104361,Crime,1452903282 +108915,104361,death,1452903265 +108915,104361,loss,1452903256 +108915,104361,Texas,1452903269 +108915,104841,3D effects,1383950369 +108915,104841,acting,1383950368 +108915,104841,cgi,1383950363 +108915,104841,cinematography,1383950366 +108915,104841,intense,1383951299 +108915,104841,Sandra Bullock,1383951266 +108915,104879,absorbing,1384800954 +108915,104879,acting,1384800961 +108915,104879,atmospheric,1384800964 +108915,104879,cliche characters,1384801019 +108915,104879,female characters useless,1384801020 +108915,104879,Hugh Jackman,1384800994 +108915,104879,Jake Gyllenhaal,1384800991 +108915,104879,measured,1384801047 +108915,104879,morality,1384800971 +108915,104879,nuanced,1384800967 +108915,104879,slow burn,1384800976 +108915,104879,tasteful,1384800979 +108915,104879,thriller,1384800981 +108915,104913,1970s,1390515074 +108915,104913,based on a true story,1390515070 +108915,104913,cars,1390515083 +108915,104913,Ferrari,1390515085 +108915,104913,Formula 1,1390515092 +108915,104913,Formula 1 racing,1390515089 +108915,104913,interesting characters,1390515063 +108915,104913,McLaren,1390515056 +108915,104913,racing,1390515054 +108915,104913,sports,1390515059 +108915,104944,Foster Home,1405526466 +108915,104944,sexual abuse,1405526464 +108915,104944,sociology,1405526462 +108915,105355,bittersweet,1414186147 +108915,105355,coming of age,1414186200 +108915,105355,coming-of-age,1414186207 +108915,105355,fine art,1414186231 +108915,105355,first heartbreak,1414186214 +108915,105355,homosexuality,1414186216 +108915,105355,involving,1414186261 +108915,105355,lesbian,1414186219 +108915,105355,loneliness,1414186221 +108915,105355,Nudity (Full Frontal),1414186223 +108915,105355,slow,1414186269 +108915,105355,unsimulated sex,1414186279 +108915,105355,visually appealing,1414186283 +108915,105593,based on a book,1402945573 +108915,105593,corruption,1402945599 +108915,105593,drugs,1402945611 +108915,105593,intoxicants,1402945600 +108915,105593,Irvine Welsh,1402945583 +108915,105593,Jon S. Baird,1402945591 +108915,105593,police corruption,1402945598 +108915,105593,Scotland,1402945602 +108915,105593,surreal,1402945606 +108915,106452,beautifully filmed,1423405475 +108915,106452,black and white,1423405473 +108915,106452,Jewish,1423405472 +108915,106452,Polish movie,1423405462 +108915,106452,religion,1423405465 +108915,106766,atmospheric,1449358445 +108915,106766,Coen Brothers,1449358461 +108915,106766,depressing,1449358451 +108915,106766,folk music,1449358446 +108915,106766,funny,1449358458 +108915,106766,musicians,1449358449 +108915,106766,New York City,1449358454 +108915,106889,Teller,1402945636 +108915,106920,Amy Adams,1402945488 +108915,106920,artificial intelligence,1402945492 +108915,106920,beautiful,1402945494 +108915,106920,bittersweet,1402945499 +108915,106920,Human Computer Interaction,1402945501 +108915,106920,joaquin phoenix,1402945509 +108915,106920,loneliness,1402945511 +108915,106920,Los Angeles,1402945514 +108915,106920,love,1402945518 +108915,106920,meaning of life,1402945520 +108915,106920,original,1402945523 +108915,106920,original plot,1402945528 +108915,106920,philosophical,1402945531 +108915,106920,psychology,1402945533 +108915,106920,quirky,1402945535 +108915,106920,Scarlett Johansson,1402945537 +108915,106920,sci-fi,1402945538 +108915,106920,thought-provoking,1402945540 +108915,106983,Nudity (Topless),1411299610 +108915,107274,catastrophe,1424848029 +108915,107883,Loneliness,1440272204 +108915,108945,police,1392479628 +108915,108945,remake,1392479630 +108915,110503,Crime,1450560742 +108915,110586,black comedy,1431122962 +108915,110586,Brendan Gleeson,1431122983 +108915,110586,Catholicism,1431123029 +108915,110586,child abuse,1431122972 +108915,110586,despair,1431122974 +108915,110586,Ireland,1431122962 +108915,110586,irish,1431122993 +108915,110586,John Michael McDonagh,1431122987 +108915,110586,nature,1431123038 +108915,110586,powerful,1431122997 +108915,110586,religion,1431122959 +108915,110586,suicide by proxy,1431123032 +108915,111921,cancer,1430381165 +108915,111921,death,1430381142 +108915,111921,disease,1430381144 +108915,111921,drama,1430381151 +108915,111921,romance,1430381151 +108915,111921,teenage romance,1430381138 +108915,112183,alter ego,1423264758 +108915,112183,Crazy,1423264768 +108915,112183,dark,1423264771 +108915,112183,Edward Norton,1423264406 +108915,112183,great performances,1423264560 +108915,112183,magical realism,1423264774 +108915,112183,movie business,1423264761 +108915,112183,pretentious,1423264784 +108915,112183,psychological,1423264776 +108915,112183,satire,1423264759 +108915,112183,smart,1423264790 +108915,112183,theater,1423264572 +108915,112552,intense,1428252518 +108915,112552,J.K. Simmons,1428252512 +108915,112552,jazz,1428252510 +108915,112552,jazz music,1428252521 +108915,112552,music,1428252516 +108915,112552,musicians,1428252515 +108915,112552,Tense,1428252513 +108915,114342,beautiful scenery,1438972501 +108915,114342,european film,1438972500 +108915,114342,relationship drama,1438972503 +108915,114342,skiing,1438972488 +108915,114342,Swedish,1438972491 +108915,114392,Tommy Lee Jones,1414133929 +108915,115437,blindness,1446580001 +108915,115437,disability,1446580003 +108915,115713,AI,1437122505 +108915,115713,Androids and Robots,1437122693 +108915,115713,artificial intelligence,1437122485 +108915,115713,Captivating,1437122694 +108915,115713,claustrophobic,1437122652 +108915,115713,consciousness,1437122649 +108915,115713,Contemplative,1437122646 +108915,115713,cybernetics,1437122538 +108915,115713,cyborg,1437122643 +108915,115713,Drama,1437122604 +108915,115713,Future,1437122600 +108915,115713,futuristic,1437122499 +108915,115713,gender roles,1437122537 +108915,115713,isolation,1437122521 +108915,115713,Man Versus Machine,1437122552 +108915,115713,Manipulations,1437122597 +108915,115713,Mind Bending,1437122595 +108915,115713,modern classic,1437122593 +108915,115713,philosophical,1437122490 +108915,115713,plot twist,1437122534 +108915,115713,Psychological,1437122580 +108915,115713,Robot,1437122578 +108915,115713,robots,1437122493 +108915,115713,sci-fi,1437122487 +108915,115713,sensitive,1437122554 +108915,115713,Surreal,1437122633 +108915,115713,technology,1437122503 +108915,115713,Tense,1437122518 +108915,115713,thought provoking,1437122489 +108915,115713,thriller,1437122497 +108915,115713,turing test,1437122683 +108915,117533,computers,1432505874 +108915,117533,edward snowden,1432505870 +108915,117533,important,1432505872 +108915,117533,informative,1432505875 +108915,117533,Julian Assange,1432505904 +108915,117533,Laura Poitras,1432505864 +108915,117533,nonfiction,1432505891 +108915,117533,nsa,1432505893 +108915,117533,privacy,1432505897 +108915,117533,security,1432505889 +108915,117533,top documentary,1432505858 +108915,118246,alps,1438381154 +108915,118246,life imitating art,1438381152 +108915,118246,talkative,1438381143 +108915,118700,Alabama,1443728880 +108915,118700,civil rights,1443728863 +108915,118700,history,1443728875 +108915,118700,police brutality,1443728866 +108915,118700,racism,1443728877 +108915,118880,Antihero,1428781366 +108915,118880,black and white,1428781300 +108915,118880,Iran,1428781369 +108915,118880,Mesmerising,1428781357 +108915,118880,Middle East,1428781370 +108915,118880,Romance,1428781358 +108915,118880,vampires,1428781299 +108915,118900,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1442611513 +108915,118900,closure,1442611537 +108915,118900,coping,1442611496 +108915,118900,drugs,1442611512 +108915,118900,grief,1442611504 +108915,118900,hiking,1442611492 +108915,118900,mother and daughter relationship,1442611519 +108915,118900,quotes,1442611533 +108915,118900,self discovery,1442611525 +108915,118985,Amy Adams,1432588473 +108915,118985,painter,1432588464 +108915,118985,Tim Burton,1432588481 +108915,119126,Gore,1418940153 +108915,119126,Psychopathy,1418940282 +108915,119126,Serial killer,1418940291 +108915,119126,Serial killers,1418940341 +108915,121169,BDSM,1445726302 +108915,121169,beautiful,1445726288 +108915,121169,cinematography,1445726289 +108915,121169,costume design,1445726293 +108915,122882,action,1432507053 +108915,122882,adventure,1432507060 +108915,122882,Australia,1432506995 +108915,122882,charlize theron,1432507055 +108915,122882,chase,1432506984 +108915,122882,Colourful apocalypse,1432506975 +108915,122882,desert,1432507059 +108915,122882,dystopian,1432507107 +108915,122882,feminism,1432507003 +108915,122882,franchise,1432507103 +108915,122882,mad max,1432507063 +108915,122882,non-stop,1432506968 +108915,122882,special effects,1432506999 +108915,122882,violence,1432506951 +108915,122882,visually appealing,1432507277 +108915,122882,warlord,1432506991 +108915,122882,wasteland,1432506986 +108915,127198,soundtrack,1450219874 +108915,127298,2015,1444155729 +108915,128671,Africa,1444155831 +108915,128671,desert,1444155833 +108915,128671,Islam,1444155850 +108915,128671,real,1444155822 +108915,128671,religion,1444155852 +108915,130452,Brooklyn NY,1438295832 +108915,130452,career,1438295834 +108915,130452,deception,1438295839 +108915,130452,success,1438295842 +108915,134248,Sex Workers,1442173026 +108915,134378,subtly melancholic,1449144384 +108915,140247,creepy,1448522089 +108915,140247,plot twist,1448522107 +108915,141890,Africa,1450490230 +108915,141890,Child Soldiers,1450490228 +108915,141890,war,1450490232 +108917,3018,campy,1444271612 +108917,3018,cult classic,1444271622 +108917,3018,horror,1444271603 +108917,3018,humorous,1444271630 +108917,3018,mad scientist,1444271627 +108917,3018,Nudity (Full Frontal),1444271608 +108917,3018,splatter,1444271619 +108917,3018,tense,1444271633 +108917,3018,zombies,1444271615 +108917,4872,sexuality,1444271793 +108917,4872,unsimulated sex,1444271791 +108917,34373,campy,1444271974 +108917,34373,comedy,1444271980 +108917,34373,homosexuality,1444271977 +108917,34373,tongue-in-cheek,1444271982 +108917,48744,bisexual,1444271661 +108917,48744,controversial,1444271664 +108917,48744,erotic,1444271677 +108917,48744,irreverent,1444271674 +108917,48744,Nudity (Full Frontal),1444271671 +108917,48744,orgy,1444271687 +108917,48744,queer,1444271668 +108917,48744,raunchy,1444271681 +108917,48744,unsimulated sex scenes,1444271657 +108917,60128,Nudity (Topless),1444668786 +108917,60128,threesome,1444668788 +108917,74484,hot actresses,1444271411 +108917,74484,humor,1444271473 +108917,74484,nudity (topless),1444271440 +108917,74484,ridiculous characters,1444271408 +108917,74484,sexy,1444271478 +108917,77427,bad acting,1444667927 +108917,77427,body horror,1444667935 +108917,77427,disturbing,1444667933 +108917,82928,big guns,1444271537 +108917,82928,gore,1444271548 +108917,82928,nuns,1444271525 +108917,82928,topless,1444271518 +108917,85510,cult,1444668088 +108917,85510,martial arts,1444668052 +108917,85510,Special Effects,1444668057 +108917,85510,stylized,1444668050 +108917,85510,Surreal,1444668095 +108917,85796,vigilante,1444271905 +108917,85796,wild action,1444271914 +108917,108727,sexuality,1444272053 +108917,108727,story,1444272059 +108917,108727,unsimulated sex,1444272056 +108917,120921,women,1444271336 +108917,120921,zombie,1444271347 +108969,82,Toronto Film Festival Winner,1212938415 +108969,82,Toronto Film Festival Winner 1995,1212938432 +108969,232,remade into tortilla soup,1147004027 +108969,290,abuse,1141046157 +108969,290,alcoholism,1141046157 +108969,290,auckland,1141046157 +108969,290,maori,1141046157 +108969,290,new zealand,1141046157 +108969,290,rape,1141046157 +108969,290,strong women,1141046157 +108969,290,tattoos,1141046157 +108969,290,welfare,1141046157 +108969,299,Toronto Film Festival Winner,1212938665 +108969,299,Toronto Film Festival Winner 1994,1212938665 +108969,448,boring,1166413576 +108969,448,car crash,1166413576 +108969,448,depression,1166413576 +108969,448,slow,1166413576 +108969,496,Sundance award winner,1212903751 +108969,496,Sundance Grand Jury Prize,1212903751 +108969,496,Sundance Grand Jury Prize 1994,1212903751 +108969,496,Sundance Grand Jury Prize: Dramatic,1212903751 +108969,523,Sundance award winner,1212903472 +108969,523,Sundance Grand Jury Prize,1212903472 +108969,523,Sundance Grand Jury Prize: Dramatic,1212903478 +108969,523,Sundance Grand Jury Prize: Dramatic 1993,1212903509 +108969,994,chelsea pier,1139881618 +108969,994,ian holm,1139881618 +108969,994,italian cooking,1139881618 +108969,994,italian music,1139881618 +108969,994,italians,1139881618 +108969,994,keystone,1139881618 +108969,994,new jersey,1139881618 +108969,994,timpano,1139881618 +108969,1169,Sundance award winner,1212903083 +108969,1169,Sundance Grand Jury Prize,1212903125 +108969,1169,Sundance Grand Jury Prize: Documentary,1212903095 +108969,1169,Sundance Grand Jury Prize: Documentary 1991,1212903114 +108969,1192,Sundance award winner,1212903152 +108969,1192,Sundance Grand Jury Prize,1212903211 +108969,1192,Sundance Grand Jury Prize: Documentary,1212903189 +108969,1192,Sundance Grand Jury Prize: Documentary 1991,1212903202 +108969,1230,Woody Allen is a terrible person,1140552355 +108969,1244,woody allen is a terrible person,1140552284 +108969,1446,cellos,1142992274 +108969,1446,czech society,1142992274 +108969,1446,emigration,1142992274 +108969,1446,russian politics,1142992274 +108969,1446,wonderful child,1142992274 +108969,1476,pig vomit,1140116396 +108969,1834,con men,1178986734 +108969,1834,trust no one,1178986745 +108969,1879,Toronto Film Festival Winner,1212938536 +108969,1879,Toronto Film Festival Winner 1997,1212938557 +108969,2067,communism,1145032970 +108969,2067,julie christie,1145032970 +108969,2067,omar sharif,1145032970 +108969,2067,russian,1145032970 +108969,2067,russian revolution,1145032970 +108969,2067,shot in finland,1145032970 +108969,2067,shot in spain,1145032970 +108969,2281,boston,1163962112 +108969,2281,cocaine,1163962112 +108969,2281,drinking,1163962112 +108969,2281,gangsters,1163962112 +108969,2281,guns,1163962112 +108969,2281,irish,1163962112 +108969,2281,irish accent,1163962112 +108969,2281,murder,1163962112 +108969,2357,brazil,1144887878 +108969,2610,Sundance award winner,1212904002 +108969,2610,Sundance Grand Jury Prize,1212904002 +108969,2610,Sundance Grand Jury Prize: Dramatic,1212904002 +108969,2610,Sundance Grand Jury Prize: Dramatic 1999,1212904039 +108969,2751,boston,1194563520 +108969,2751,courtroom comedy,1194563520 +108969,2751,cursing,1248868319 +108969,2751,david alan grier,1194563520 +108969,2751,Elizabeth Perkins,1248868329 +108969,2751,judd nelson,1248868306 +108969,2751,murder,1194563520 +108969,2751,pee wee from porkys,1194563520 +108969,2751,smooth jazz soundtrack,1194563520 +108969,2751,witty,1248868297 +108969,2772,detroit,1145884394 +108969,2772,KISS,1145884394 +108969,2772,mr. stretch,1145884394 +108969,2850,Sundance award winner,1212903609 +108969,2850,Sundance Grand Jury Prize,1212903609 +108969,2850,Sundance Grand Jury Prize: Dramatic,1212903609 +108969,2850,Sundance Grand Jury Prize: Dramatic 1993,1212903643 +108969,2888,ogden,1212945193 +108969,2888,salt lake city,1212945188 +108969,2888,utah,1212945182 +108969,3015,conspiracy,1141833754 +108969,3015,corruption,1141833754 +108969,3015,crichton,1141833754 +108969,3015,hospital,1141833754 +108969,3015,micheal douglas,1141833754 +108969,3015,tom selleck,1141833754 +108969,3143,enemy mine,1175756495 +108969,3143,islands,1175756495 +108969,3143,remade,1175756495 +108969,3143,south pacific,1175756495 +108969,3218,Sundance award winner,1212903009 +108969,3218,Sundance Grand Jury Prize,1212903016 +108969,3218,Sundance Grand Jury Prize: Dramatic,1212903030 +108969,3218,Sundance Grand Jury Prize: Dramatic 1991,1212903052 +108969,3238,ashley judd nude,1139151541 +108969,3238,british intelligence,1139151541 +108969,3238,san francisco,1139151541 +108969,3238,sniper,1139151541 +108969,3238,spy,1139151541 +108969,3328,carrier pidgeons,1140967376 +108969,3328,mafia,1140967376 +108969,3328,new jersey,1140967376 +108969,3328,rashomon,1140967376 +108969,3328,samurai,1140967376 +108969,3338,Sundance Audience Award: Documentary,1212902756 +108969,3338,Sundance award winner,1212902659 +108969,3338,Sundance Grand Jury Prize,1212902665 +108969,3338,Sundance Grand Jury Prize: Documentary,1212902725 +108969,3338,Sundance Grand Jury Prize: Documentary 1990,1212902703 +108969,3633,blofeld,1144854239 +108969,3633,M,1144854239 +108969,3633,moneypenny,1144854239 +108969,3633,Q,1144854239 +108969,3633,skiing,1144854239 +108969,3633,switzerland,1144854239 +108969,3633,telly savalas,1144854239 +108969,3635,atlantis,1141135382 +108969,3635,Barbara Bach,1141135382 +108969,3635,egypt,1141135382 +108969,3635,Ian Fleming,1141135382 +108969,3635,jaws,1141135382 +108969,3635,Lotus Esprits,1141135382 +108969,3635,nuclear bomb,1141135382 +108969,3635,sardinia,1141135382 +108969,3635,submarine,1141135382 +108969,3683,Sundance award winner,1212901990 +108969,3683,Sundance Grand Jury Prize,1212901990 +108969,3683,Sundance Grand Jury Prize: Dramatic,1212901990 +108969,3683,Sundance Grand Jury Prize: Dramatic 1985,1212902617 +108969,3700,alien,1139573357 +108969,3700,harlem,1139573357 +108969,3700,john sayles,1139573357 +108969,3700,kung fu fighting,1139573357 +108969,3816,Toronto Film Festival Winner,1212938729 +108969,3816,Toronto Film Festival Winner 1985,1212938729 +108969,3852,santa fe,1221704439 +108969,3883,Florida Film Festival Winner,1212936679 +108969,3883,Florida Film Festival Winner Best Narrative Feature Grand Jury Award 1999,1212936679 +108969,3969,abuse,1176317486 +108969,3969,alcoholism,1176317477 +108969,3969,domestic violence,1176317495 +108969,3969,idealistic,1176317455 +108969,3969,las vegas,1176317447 +108969,3969,twist ending,1176317469 +108969,4171,Sundance award winner,1212904152 +108969,4171,Sundance Grand Jury Prize,1212904152 +108969,4171,Sundance Grand Jury Prize: Documentary,1212904152 +108969,4171,Sundance Grand Jury Prize: Documentary 2000,1212904152 +108969,4201,bird sounds,1140617951 +108969,4201,dumb,1140617951 +108969,4208,Florida Film Festival Winner,1212937127 +108969,4208,Florida Film Festival Winner Best Narrative Feature Grand Jury Prize 1998,1212937127 +108969,4342,Florida Film Festival Winner,1212936266 +108969,4342,Florida Film Festival Winner Best Narrative Feature Audience Award 2001,1212936266 +108969,4451,Florida Film Festival Winner,1212936297 +108969,4541,dominican republic,1178933109 +108969,4541,haiti,1178933109 +108969,4541,real drugs,1178933109 +108969,4541,wade davis,1178933114 +108969,4624,boring,1162444701 +108969,4624,perverted,1162444708 +108969,4646,england,1172505711 +108969,4646,flowers,1172505711 +108969,4646,gardening,1172505711 +108969,4646,prison,1172505711 +108969,4713,apes,1144438327 +108969,4713,drugs,1144438327 +108969,4713,trippy,1144438327 +108969,4716,Toronto Film Festival Winner,1212938969 +108969,4716,Toronto Film Festival Winner 1980,1212938969 +108969,4743,Remake of Eat Drink Man Woman,1147004056 +108969,4777,Florida Film Festival Winner,1212935848 +108969,4777,Florida Film Festival Winner Best Narrative Feature Special Jury Award 2001,1212935848 +108969,4783,Florida Film Festival Winner,1212936215 +108969,4783,Florida Film Festival Winner Best Documentary Feature Audience Award 2001,1212936215 +108969,4813,doomsday,1146708272 +108969,5178,Sundance award winner,1212903848 +108969,5256,70s,1145573394 +108969,5256,catholic,1145573394 +108969,5256,chicago,1145573394 +108969,5256,god,1145573394 +108969,5256,irish,1145573394 +108969,5256,jesus,1145573394 +108969,5256,jewish,1145573394 +108969,5256,project greenlight,1145573394 +108969,5379,Sundance award winner,1212904240 +108969,5379,Sundance Grand Jury Prize,1212904240 +108969,5379,Sundance Grand Jury Prize: Dramatic,1212904240 +108969,5379,Sundance Grand Jury Prize: Dramatic 2001,1212904240 +108969,5422,Florida Film Festival Winner,1212935599 +108969,5422,Florida Film Festival Winner Best International Feature Film Audience Award 2002,1212935599 +108969,5431,hanging,1162518184 +108969,5431,jack nicholson,1162518184 +108969,5431,mary steenburgen,1162518184 +108969,5431,mining,1162518184 +108969,5431,oil,1162518184 +108969,5431,old west,1162518184 +108969,5609,vancouver,1140117259 +108969,5712,philidelphia,1146016917 +108969,5731,barbara hershey,1141740627 +108969,5731,los angeles,1141740627 +108969,5731,paranormal,1141740627 +108969,5731,poltergeist,1141740627 +108969,5731,rape,1141740627 +108969,5731,ron silver,1141740627 +108969,5792,dating,1142345969 +108969,5792,jennifer beals,1142346004 +108969,5792,lothario,1142346004 +108969,5792,new york city,1142346004 +108969,5792,philosophy,1142346004 +108969,5792,showgirls,1142346004 +108969,5810,asshole,1140116630 +108969,5810,idiot,1140116630 +108969,5854,220 foot free-fall,1140551312 +108969,5854,atlanta,1140551312 +108969,5854,karate,1140551312 +108969,5874,crenshaw,1162772810 +108969,5874,ice cube,1162772810 +108969,5874,pimps,1162772810 +108969,5892,good morning america,1146664083 +108969,5892,vikings,1146664083 +108969,6057,wanna-be gangters,1140117319 +108969,6058,cheating death,1138889333 +108969,6058,death,1138889333 +108969,6058,fast paced,1138889333 +108969,6058,fate,1138889333 +108969,6058,gory,1138889333 +108969,6058,premonition,1138889333 +108969,6058,supernatural,1138889333 +108969,6058,violent,1138889333 +108969,6271,BAFTA Winner 1974,1212939465 +108969,6271,British Academy of Film and Television Arts Award Winner,1212939508 +108969,6301,england,1166413295 +108969,6301,farm,1166413295 +108969,6301,lands end,1166413295 +108969,6301,pub,1166413295 +108969,6301,revenge,1166413295 +108969,6301,rural,1166413295 +108969,6301,small town,1166413295 +108969,6301,violence,1166413295 +108969,6554,Australia,1178857164 +108969,6554,bands,1178857163 +108969,6554,drugs & music,1178857163 +108969,6554,guitar,1178857163 +108969,6554,music,1178857163 +108969,6554,pregnancy,1178857163 +108969,6554,rock,1178857164 +108969,6554,sex,1178857163 +108969,6554,washed up,1178857163 +108969,6583,australia,1146343123 +108969,6583,delroy lindo,1146343123 +108969,6583,fighting,1146343123 +108969,6583,minimal,1146343123 +108969,6583,slow,1146343123 +108969,6591,Venice Film Festival Winner,1212939229 +108969,6591,Venice Film Festival Winner 2002,1212939229 +108969,6661,Florida Film Festival Winner,1212936442 +108969,6661,Florida Film Festival Winner Best Documentary Feature Special Jury Award 2000,1212936442 +108969,6668,Florida Film Festival Winner,1212936115 +108969,6668,Florida Film Festival Winner Best International Feature Film Audience Award 2001,1212936115 +108969,6689,project greenlight,1145573477 +108969,6692,80s,1145588432 +108969,6692,australia,1145588432 +108969,6692,California,1145588432 +108969,6692,christianity,1145588432 +108969,6692,dysfunctional family,1145588432 +108969,6692,europe,1145588432 +108969,6692,fame,1145588432 +108969,6692,jason lee,1145588855 +108969,6692,murder,1145588432 +108969,6692,skateboarding,1145588432 +108969,6692,skating,1145588432 +108969,6692,tony hawk,1145588432 +108969,6701,Florida Film Festival Winner,1212935123 +108969,6701,Florida Film Festival Winner Best Narrative Feature Grand Jury Prize 2003,1212935123 +108969,6756,children,1140027981 +108969,6756,huffing paint,1140027981 +108969,6756,imperialism,1140027981 +108969,6756,lili taylor,1140027980 +108969,6756,mexico,1140027981 +108969,6756,Mrs. Ted Danson,1140027981 +108969,6756,why don't koreans or mexicans come to the US to adopt children?,1140027981 +108969,6852,kansas,1162444981 +108969,6852,mexico,1162444981 +108969,6861,Florida Film Festival Winner,1212935461 +108969,6861,Florida Film Festival Winner Special Jury Award 2002,1212935461 +108969,6862,boca grande florida,1140116543 +108969,6885,decapitation,1212620931 +108969,6885,masturbation,1212620969 +108969,6885,meg ryans tits,1212620911 +108969,6885,Penis in background,1212620899 +108969,6885,raw dog screwing,1212620891 +108969,6885,sluts,1212620952 +108969,6885,twist ending,1212620945 +108969,7013,canoga park,1143385419 +108969,7013,creepy,1143385246 +108969,7013,hanging,1143385246 +108969,7013,love/hate,1143385246 +108969,7013,odd songs,1143385246 +108969,7013,peter graves,1143385246 +108969,7013,preacher,1143385246 +108969,7013,River,1143385245 +108969,7013,west virginia,1143385419 +108969,7035,chicago,1147960381 +108969,7107,albino,1140119310 +108969,7107,dwarf,1140119310 +108969,7107,san francisco,1140119310 +108969,7141,Florida Film Festival Winner,1212935229 +108969,7141,Florida Film Festival Winner Special Jury Award 2003,1212935229 +108969,7169,berline,1140967198 +108969,7169,europe,1140967198 +108969,7169,love parade,1140967198 +108969,7169,prauge,1140967198 +108969,7169,secret service,1140967198 +108969,7169,venice,1140967198 +108969,7197,airplane hijacking,1166716756 +108969,7197,norway,1166716742 +108969,7197,terrorism,1166716762 +108969,7314,Florida Film Festival Winner,1212935271 +108969,7314,Florida Film Festival Winner Special Jury Award 2003,1212935271 +108969,7366,clamdigger bar,1140026917 +108969,7366,dirty dancing,1140026917 +108969,7366,george carlin,1140026917 +108969,7366,liv tyler,1140026917 +108969,7366,manhattan,1140026917 +108969,7366,street sweeper,1140026917 +108969,7366,sweeny todd,1140026917 +108969,7366,will smith,1140026917 +108969,7569,hong kong,1144855896 +108969,7569,japan,1144855896 +108969,7569,spaceships,1144855896 +108969,7569,submarines,1144855896 +108969,7625,Florida Film Festival Winner,1212936780 +108969,7625,Florida Film Festival Winner Special Jury Award for Narrative Filmmaking 1999,1212936780 +108969,7786,Florida Film Festival Winner,1212936597 +108969,7786,Florida Film Festival Winner Best Documentary Feature Grand Jury Award 1999,1212936597 +108969,7827,gadgets,1173847137 +108969,7827,Lucy Liu,1173847137 +108969,7827,twist ending,1173847137 +108969,7918,anger,1145765375 +108969,7918,brothers,1145765375 +108969,7918,charles bronson,1145765375 +108969,7918,family,1145765374 +108969,7918,nebraska,1145765374 +108969,7918,omaha,1145765375 +108969,7918,sean penn directed,1145765375 +108969,7918,viggo morttensen,1145765375 +108969,8370,blindness,1143898342 +108969,8370,cgi blood,1143898342 +108969,8370,cross dresser,1143898342 +108969,8370,gangs of japan,1143898342 +108969,8370,one swipe swordfights,1143898342 +108969,8457,Sundance award winner,1212902496 +108969,8457,Sundance Grand Jury Prize,1212902522 +108969,8457,Sundance Grand Jury Prize: Dramatic,1212902513 +108969,8457,Sundance Grand Jury Prize: Dramatic 1989,1212902566 +108969,8530,Emily Mortimer,1141784664 +108969,8530,glasgow scotland,1141784664 +108969,8530,not ireland,1141784664 +108969,8530,scotland,1141784664 +108969,8531,black men dressed up like white women,1164132972 +108969,8531,cross dressing,1164132957 +108969,8645,columbia,1144034411 +108969,8645,mule,1144034411 +108969,8645,new york city,1144034411 +108969,8781,corruption,1140967312 +108969,8781,gulf war,1140967312 +108969,8784,funny,1140445243 +108969,8784,Ian Holm,1140445243 +108969,8784,lithium,1140445243 +108969,8784,Peter Sarsgaard,1140445243 +108969,8784,sidecar,1140445243 +108969,8799,reality TV,1163289248 +108969,8801,Sundance award winner,1212903294 +108969,8801,Sundance Grand Jury Prize,1212903309 +108969,8801,Sundance Grand Jury Prize: Dramatic,1212903322 +108969,8801,Sundance Grand Jury Prize: Dramatic 1992,1212903341 +108969,8809,Australia,1139277221 +108969,8809,darwin award winner,1139277210 +108969,8809,miranda otto,1139277210 +108969,8809,small towns,1139277210 +108969,8834,basketball,1162444164 +108969,8834,black,1162444164 +108969,8834,family,1162444164 +108969,8860,L.A.,1139881781 +108969,8860,police corruption,1139881781 +108969,8860,santa monica,1139881781 +108969,8860,santa monica pier,1139881781 +108969,8862,con artists,1162675123 +108969,8862,scams,1162675123 +108969,8865,alternate universe,1139016109 +108969,8865,angelina jolies lips,1139016109 +108969,8865,classic beauty,1139016109 +108969,8865,cool technology,1139016109 +108969,8865,future retro,1139016109 +108969,8865,giant robots,1139016109 +108969,8865,mechanized,1139016109 +108969,8865,old fashioned,1139016109 +108969,8865,possible futures of the past,1139016109 +108969,8914,boring,1162444656 +108969,8918,crazy family,1167335488 +108969,8918,lesbian,1167335489 +108969,8918,new york state,1167335489 +108969,8918,rhode island,1167335489 +108969,8918,smart ass kids,1167335514 +108969,8918,young love,1167335489 +108969,8933,Toronto Film Festival Winner,1212938848 +108969,8951,Venice Film Festival Winner,1212939125 +108969,8951,Venice Film Festival Winner 2004,1212939125 +108969,8966,candid sex,1139881701 +108969,8966,child molestor,1139881701 +108969,8966,homosexuality,1139881701 +108969,8966,indiana,1139881701 +108969,8966,john lithgow,1139881701 +108969,8966,liam neeson,1139881701 +108969,8966,sex study,1139881701 +108969,8966,wife swapping,1139881701 +108969,27788,complex,1138889447 +108969,27788,confusing,1138889447 +108969,27788,gulf war,1138889447 +108969,27788,long nose,1138889447 +108969,27788,makes you think,1138889447 +108969,27788,mental hospital,1138889447 +108969,27788,mental illness,1138889447 +108969,27788,time travel,1138889447 +108969,27788,weird love,1138889447 +108969,27821,fictional african country,1140703904 +108969,27821,moped,1140703904 +108969,27821,new york city,1140703904 +108969,27821,sydney pollack acting,1140703904 +108969,27821,united nations,1140703904 +108969,27822,bahamas,1142346036 +108969,27822,not a boy scout,1142346036 +108969,27822,sharks,1142346036 +108969,27822,stupidity,1142346036 +108969,27834,Venice Film Festival Winner,1212939174 +108969,27834,Venice Film Festival Winner 2003,1212939187 +108969,27879,Sundance award winner,1212904380 +108969,27879,Sundance Grand Jury Prize,1212904380 +108969,27879,Sundance Grand Jury Prize: Documentary,1212904380 +108969,27879,Sundance Grand Jury Prize: Documentary 2003,1212904380 +108969,27888,Damon Dash,1139443846 +108969,27888,hustler,1139443846 +108969,27888,indecent proposal,1139443846 +108969,27888,lori singer,1139443846 +108969,27888,mike tyson,1139443846 +108969,27888,new york,1139443846 +108969,27888,slow,1139443846 +108969,30707,Los Angeles,1138388862 +108969,30707,she-males,1138388862 +108969,30707,slow,1138388862 +108969,30707,White Trash,1138388862 +108969,30846,naomi watts,1141926056 +108969,30846,never lie,1141926056 +108969,30846,sean penn,1141926056 +108969,30846,the truth,1141926056 +108969,30850,cross-dressing women,1163733584 +108969,30850,italy,1163733584 +108969,30898,beautiful family,1139362064 +108969,30898,beautiful older lady,1139362064 +108969,30898,michigan,1139362064 +108969,30898,rural living,1139362064 +108969,30991,Sudance Filmmakers Trophy: Dramatic,1212902857 +108969,30991,Sudance Filmmakers Trophy: Dramatic 1989,1212902871 +108969,30991,Sundance Award Winner,1212902827 +108969,31038,Sundance award winner,1212902177 +108969,31038,Sundance Grand Jury Prize,1212902182 +108969,31038,Sundance Grand Jury Prize: Dramatic,1212902207 +108969,31038,Sundance Grand Jury Prize: Dramatic 1986,1212902587 +108969,31162,bad father,1139881732 +108969,31162,depressing,1139881732 +108969,31162,great acting,1139881732 +108969,31162,sad,1139881732 +108969,31420,corruption,1140576579 +108969,31420,detroit,1140576579 +108969,31427,4 alternate versions,1162772857 +108969,32593,1000 mile adventure,1145288637 +108969,32593,baja,1145288637 +108969,32593,baja california,1145288637 +108969,32593,beautiful scenery,1145288637 +108969,32593,documentary,1145288636 +108969,32593,ensenada,1145288637 +108969,32593,helicopters,1145288637 +108969,32593,mexico,1145288637 +108969,32593,offroad,1145288636 +108969,32593,race,1145288636 +108969,32593,robbie gordon,1145288636 +108969,32593,trucks,1145288636 +108969,32593,vw bugs,1145288637 +108969,32668,amnesia,1179438211 +108969,32668,assassins,1179438211 +108969,32668,looks like texas,1179438211 +108969,32668,new mexico,1179438211 +108969,32668,presidental assasination,1179438211 +108969,32668,twist ending,1179438211 +108969,33004,england,1148738353 +108969,33036,double agents,1163128702 +108969,33036,fistfighting,1163128702 +108969,33036,interracial romance,1163128702 +108969,33036,rock climbing,1163128702 +108969,33036,utah,1163128702 +108969,33880,pooping back and forth,1163289275 +108969,33880,say macaroni,1163289281 +108969,34319,action,1146663985 +108969,34319,exciting,1146663985 +108969,34319,future,1146663985 +108969,34319,immortality,1146663985 +108969,34319,Michael Bay,1146663985 +108969,34437,bill murray,1140108052 +108969,34437,detective,1140108052 +108969,34437,don juan,1140108052 +108969,34437,jessican lange,1140108052 +108969,34437,Jim Jarmusch,1140108052 +108969,34437,new jersey,1140108052 +108969,34437,pink,1140108052 +108969,34437,typewriter,1140108052 +108969,34437,winston,1140108052 +108969,36517,british,1140806249 +108969,36517,corruption,1140806249 +108969,36517,drug testing,1140806249 +108969,36517,follow the money,1140806249 +108969,36517,kenya,1140806249 +108969,36517,murder,1140806249 +108969,36529,Africa,1143990055 +108969,36529,guns,1143990032 +108969,36529,Guns don`t kill people,1143990032 +108969,36529,new york city,1143990055 +108969,36529,people kill people,1143990032 +108969,36535,beautiful scenery,1144332631 +108969,36535,dog,1144332631 +108969,36535,jews,1144332631 +108969,36535,odessa,1144332631 +108969,36535,ukraine,1144332631 +108969,37475,filmed in Canada,1194496938 +108969,37741,boring,1166391915 +108969,37741,gay,1166391915 +108969,37741,slow,1166391915 +108969,37853,bahamas,1141963458 +108969,37853,cayman islands,1141963458 +108969,37853,jessica alba's beautiful ass,1141963441 +108969,37853,scuba diving,1141963458 +108969,37853,treasure,1141963458 +108969,37857,brighton beach,1142863824 +108969,37857,henson,1142863802 +108969,37857,irish accent,1142863824 +108969,37857,white queen,1142863824 +108969,38061,great dialouge,1162914570 +108969,38061,witty,1162914570 +108969,39231,freebird,1176191311 +108969,39234,slow,1143514019 +108969,39292,black and white,1143171636 +108969,39292,communism,1143171636 +108969,39292,edward r. murrow,1143171636 +108969,39292,mcarthyism,1143171636 +108969,39292,witch hunt,1143171636 +108969,39414,emotionally dead,1178033323 +108969,39414,los angeles,1178033271 +108969,39414,older man younger woman,1178033299 +108969,39414,rich and poor,1178033314 +108969,39414,saks,1178033288 +108969,39414,silverlake,1178033262 +108969,39414,trophy boyfriend,1178033309 +108969,39414,vermont,1178033303 +108969,39435,fun,1162914710 +108969,39435,funny,1162914710 +108969,39435,good stunts,1162914710 +108969,40583,CIA,1162444742 +108969,40870,boring,1176053443 +108969,40870,drugs,1176053441 +108969,40870,homosexuality,1176053443 +108969,40870,isreal,1176053442 +108969,40870,patsy cline,1176053442 +108969,40870,slow,1176053443 +108969,41285,woody allen is a terrible person,1139881878 +108969,42007,pasadena,1175756422 +108969,42007,san francisco,1175756422 +108969,42011,enron,1162670785 +108969,42418,james river,1139838463 +108969,42418,virginia,1139838464 +108969,43396,dreams,1141785106 +108969,43396,indian motorcycle,1141785106 +108969,43396,motorcycle,1141785106 +108969,43396,new zealand,1141785106 +108969,43396,utah,1141785106 +108969,43684,black vs. white,1175193745 +108969,43684,gardening,1175193744 +108969,43684,interracial love,1175193745 +108969,43684,torrance california,1175193745 +108969,44191,1984,1143429018 +108969,44191,Futuristmovies.com,1143429018 +108969,44191,guy fawkes,1143429018 +108969,44191,john hurt,1143429017 +108969,44191,revolutionary,1143429018 +108969,44195,cigarettes,1145885570 +108969,44195,funny,1145885570 +108969,44195,independent film,1145885570 +108969,44195,indie,1145885570 +108969,44195,marlboro man,1145885569 +108969,44195,merchants of death,1145885570 +108969,44195,santa monica,1145885570 +108969,44195,santa monica pier,1145885570 +108969,44195,smoking,1145885570 +108969,44195,Washington DC,1145885570 +108969,44204,Toronto Film Festival Winner,1212938507 +108969,44204,Toronto Film Festival Winner 2005,1212938316 +108969,44709,Emotional and Heroic,1206108364 +108969,45208,colorado,1163962057 +108969,45208,nevada,1163962057 +108969,45208,utah,1163962057 +108969,45382,beach,1176446527 +108969,45382,california,1176446476 +108969,45382,cowboys,1176446470 +108969,45382,drugs,1176446574 +108969,45382,guns,1176446501 +108969,45382,hasidic jews,1176446483 +108969,45382,horses,1176446505 +108969,45382,mental illness,1176446521 +108969,45382,statutory rape,1176446496 +108969,45382,unprotected sex,1176446541 +108969,45668,architecture,1176191192 +108969,45668,chicago,1176191183 +108969,45728,bad acting,1206108325 +108969,46572,david mamet,1163299467 +108969,46572,mamet,1163299473 +108969,46976,chicago,1174659822 +108969,47610,austria,1162518265 +108969,47610,smoke and mirrors,1162518283 +108969,47610,the most beautiful girl alive?,1162518274 +108969,47778,Sundance award winner,1212904673 +108969,47778,Sundance Grand Jury Prize,1212904673 +108969,47778,Sundance Grand Jury Prize: Dramatic,1212904673 +108969,47778,Sundance Grand Jury Prize: Dramatic 2006,1212904673 +108969,47970,being trapped,1177523435 +108969,47970,cheating,1177523404 +108969,47970,devotion,1177523412 +108969,47970,freedom,1177523439 +108969,47970,lying,1177523429 +108969,47970,nailing hot college chicks,1177523425 +108969,47970,wisconson,1177523398 +108969,47997,frat boy humor,1175756647 +108969,47997,future,1175756647 +108969,47997,mike judge,1175756647 +108969,47997,office space,1175756647 +108969,48774,xenophobia,1177660124 +108969,50066,Florida Film Festival Winner,1212934830 +108969,50066,Florida Film Festival Winner Best Narrative Feature Audience Award 2006,1212934830 +108969,50792,boulder colorado,1208442626 +108969,50792,celestial seasonings,1208442634 +108969,50792,sheriff bullock,1208442646 +108969,50792,suburus,1208442656 +108969,50794,lake tahoe,1177346567 +108969,50794,twist ending,1177346574 +108969,51884,boring,1213153831 +108969,51884,slow,1213153831 +108969,51925,louisiana,1206042859 +108969,51925,slow moving,1206042849 +108969,53002,child molestation,1212630940 +108969,53002,family relationships,1212630972 +108969,53002,generations,1212630961 +108969,53002,idaho,1212630950 +108969,53002,incest,1212630928 +108969,53002,mormons,1212630983 +108969,53002,small town,1212630994 +108969,53123,dublin,1212638827 +108969,55080,lenny kravitz daughter,1212347971 +108969,55080,public radio,1212347954 +108969,55080,vigilante,1212347936 +108969,55176,Florida Film Festival Winner,1212934549 +108969,55176,Florida Film Festival Winner International Competition Audience Award 2007,1212934549 +108969,55253,Venice Film Festival Winner,1212939070 +108969,55253,Venice Film Festival Winner 2007,1212939065 +108969,55814,very slow,1213306198 +108969,58078,broken hearts,1216309015 +108969,58078,gangsters,1216309015 +108969,58078,mobsters,1216309015 +108969,58078,PROSTITUTES,1216309015 +108969,58078,seeing the future,1216309015 +108969,58078,suicide attempt,1216309015 +108969,58103,fast paced,1211940135 +108969,58297,apocalypse,1220493571 +108969,58297,futuristic,1220493571 +108969,58297,mad max,1220493571 +108969,58297,Post apocalyptic,1220493571 +108969,58297,virus,1220493571 +108969,59336,CONS AND SCAMS,1219814010 +108969,59336,Los Angeles,1219813987 +108969,59336,mixed martial arts,1219814000 +108969,59336,twist,1219814030 +108969,59594,black comedy,1213307031 +108969,59594,funny,1213307059 +108969,59594,hitman,1213307063 +108969,59594,war,1213307038 +108969,60941,clive barker,1218499054 +108969,60941,clive owen,1218499054 +108969,60941,subways,1218499053 +108969,68674,florida film festival 2009,1248838598 +108971,260,cult classic,1441177549 +108971,260,space adventure,1441177557 +108980,68358,alternate reality,1243217549 +108980,68358,space,1243217586 +108980,68358,Star Trek,1243217558 +108980,68358,time travel,1243217582 +108986,260,phantasy,1438036690 +108986,260,Science Fiction,1438036700 +108992,296,intense,1429911417 +108992,296,r:violence,1429911417 +108992,296,tarantino,1429911417 +109013,1,friendship,1440147935 +109013,1,funny,1440147925 +109013,1,pixar,1440147917 +109013,1,Tom Hanks,1440147927 +109013,47,brad pitt,1440144398 +109013,47,dark,1440144407 +109013,47,morgan freeman,1440144401 +109013,47,psychology,1440144395 +109013,47,twist ending,1440144392 +109013,50,complicated,1440144344 +109013,50,funny,1440144373 +109013,50,great ending,1440144350 +109013,50,intelligent,1440144363 +109013,50,Kevin Spacey,1440144341 +109013,50,twist ending,1440144338 +109013,110,classic,1440143271 +109013,110,courage,1440143208 +109013,110,faithfulness,1440143261 +109013,110,historical,1440143226 +109013,110,inspirational,1440143240 +109013,110,long,1440143279 +109013,110,loyalty,1440143198 +109013,110,Medieval,1440143230 +109013,110,moral,1440143218 +109013,110,Scotland,1440143234 +109013,293,forbidden love,1440154876 +109013,293,Gary Oldman,1440154898 +109013,293,girl blossomi,1440154893 +109013,293,Jean Reno,1440154855 +109013,293,Lolita theme,1440154933 +109013,293,love story,1440154909 +109013,293,Natalie Portman,1440154859 +109013,296,Black comedy,1440144591 +109013,296,bruce willis,1440144587 +109013,296,comedy,1440144640 +109013,296,cult film,1440144619 +109013,296,dark comedy,1440144575 +109013,296,dark humor,1440144650 +109013,296,drugs,1440144596 +109013,296,John Travolta,1440144612 +109013,296,masterpiece,1440144604 +109013,296,multiple storylines,1440144581 +109013,296,Quentin Tarantino,1440144570 +109013,296,Samuel L. Jackson,1440144631 +109013,296,Uma Thurman,1440144635 +109013,296,violence,1440144626 +109013,318,friendship,1440142192 +109013,318,hope,1440142170 +109013,318,intelligent,1440142224 +109013,318,revenge,1440142160 +109013,356,bittersweet,1440142549 +109013,356,emotional,1440142535 +109013,356,Funny,1440142459 +109013,356,heartwarming,1440142494 +109013,356,historical,1440142455 +109013,356,history,1440142482 +109013,356,romance,1440142488 +109013,356,tom hanks,1440142511 +109013,356,touching,1440142501 +109013,356,Vietnam,1440142465 +109013,356,vietnam war,1440142473 +109013,364,africa,1440145196 +109013,364,coming of age,1440145187 +109013,364,father-son relationship,1440145191 +109013,364,friendship,1440145213 +109013,364,Rowan Atkinson,1440145201 +109013,527,classic,1440146001 +109013,527,historical,1440146012 +109013,527,history,1440146003 +109013,527,holocaust,1440145980 +109013,527,Liam Neeson,1440145996 +109013,527,true story,1440145986 +109013,527,World War II,1440145982 +109013,527,WWII,1440145990 +109013,593,Anthony Hopkins,1440144445 +109013,593,classic,1440144467 +109013,593,disturbing,1440144459 +109013,593,Jodie Foster,1440144453 +109013,593,psychology,1440144448 +109013,593,suspenseful,1440144465 +109013,595,heartwarming,1440145123 +109013,595,loyalty,1440145164 +109013,595,moral,1440145153 +109013,595,redemption,1440145138 +109013,595,romance,1440145129 +109013,858,Al Pacino,1440578042 +109013,858,classic,1440578035 +109013,858,Mafia,1440578045 +109013,858,Marlon Brando,1440578048 +109013,858,organized crime,1440578038 +109013,858,robert de niro,1440578055 +109013,1222,1960s,1440145382 +109013,1222,dialogue,1440145372 +109013,1222,historical,1440145428 +109013,1222,political,1440145370 +109013,1222,Stanley Kubrick,1440145361 +109013,1222,suicide,1440145377 +109013,1222,Vietnam,1440145364 +109013,1222,Vietnam war,1440145358 +109013,1222,violence,1440145405 +109013,1380,classic,1440144709 +109013,1380,funny,1440144729 +109013,1380,great soundtrack,1440144700 +109013,1380,John Travolta,1440144706 +109013,1380,musical,1440144712 +109013,1954,American values,1440142677 +109013,1954,fighting,1440142620 +109013,1954,inspirational,1440142609 +109013,1954,nostalgic,1440142597 +109013,2231,Edward Norton,1440142817 +109013,2231,gambling,1440142830 +109013,2231,intelligent,1440142857 +109013,2231,John Malkovich,1440142827 +109013,2231,language,1440142834 +109013,2231,poker,1440142821 +109013,2474,gaming,1440142755 +109013,2474,Paul Newman,1440142782 +109013,2474,pool,1440142738 +109013,2502,comedy,1440145626 +109013,2502,cult film,1440145686 +109013,2502,dialogue,1440145732 +109013,2502,funny,1440145696 +109013,2502,hilarious,1440145638 +109013,2502,hypnosis,1440145712 +109013,2502,Jennifer Aniston,1440145719 +109013,2502,off-beat comedy,1440145632 +109013,2502,office,1440145724 +109013,2502,quirky,1440145663 +109013,2502,quotable,1440145693 +109013,2502,rebellion,1440145707 +109013,2502,revenge,1440145656 +109013,2502,Ron Livingston,1440145702 +109013,2502,satire,1440145623 +109013,2502,technology,1440145728 +109013,2762,Bruce Willis,1440144288 +109013,2762,death,1440144310 +109013,2762,great ending,1440144278 +109013,2762,plot twist,1440144300 +109013,2762,psychological,1440144282 +109013,2762,twist ending,1440144269 +109013,2762,unpredictable,1440144276 +109013,2858,drugs,1440143832 +109013,2858,excellent script,1440143747 +109013,2858,kevin spacey,1440143715 +109013,2858,Lolita-fetish,1440143737 +109013,2858,multiple storylines,1440143842 +109013,2858,personal achievement,1440143790 +109013,2858,personal growth,1440143808 +109013,2858,powerful ending,1440143755 +109013,2858,reflective,1440143834 +109013,2858,sexuality,1440143767 +109013,2858,thought-provoking,1440143770 +109013,2858,witty,1440143826 +109013,2959,Brad Pitt,1440144159 +109013,2959,dark comedy,1440144168 +109013,2959,Edward Norton,1440144162 +109013,2959,intelligent,1440144184 +109013,2959,mental illness,1440144200 +109013,2959,philosophical,1440144171 +109013,2959,twist ending,1440144156 +109013,2997,black comedy,1440144099 +109013,2997,intelligent,1440144083 +109013,2997,John Malkovich,1440144088 +109013,2997,LOVE TRIANGLES,1440144110 +109013,2997,off-beat comedy,1440144094 +109013,2997,surreal,1440144072 +109013,2997,thought-provoking,1440144116 +109013,3147,death penalty,1440142309 +109013,3147,drama,1440142377 +109013,3147,intelligent,1440142299 +109013,3147,prison,1440142361 +109013,3147,revenge,1440142346 +109013,3147,social commentary,1440142327 +109013,3578,action,1440143052 +109013,3578,drama,1440143043 +109013,3578,historical,1440143059 +109013,3578,history,1440143036 +109013,3578,Rome,1440143055 +109013,3578,Russell Crowe,1440143067 +109013,3578,slavery,1440143049 +109013,3791,good music,1440144779 +109013,3791,Kevin Bacon,1440144765 +109013,3809,Bill Murray,1440143614 +109013,3809,funny,1440143657 +109013,3809,psychology,1440143619 +109013,3809,really funny,1440143668 +109013,3809,Richard Dreyfuss,1440143642 +109013,3996,Action,1440145808 +109013,3996,Ang Lee,1440145814 +109013,3996,romance,1440145801 +109013,4381,closeted homosexual,1440144002 +109013,4381,comedy,1440143925 +109013,4381,France,1440143930 +109013,4381,life crisis,1440143959 +109013,4381,moral,1440143943 +109013,4381,personal growth,1440143988 +109013,4896,dragons,1440143514 +109013,4896,Fantasy,1440143484 +109013,4896,fantasy world,1440143502 +109013,4896,ghosts,1440143518 +109013,4896,humorous,1440143507 +109013,4896,Magic,1440143490 +109013,4973,female protagonist,1440146234 +109013,4973,Paris,1440146219 +109013,4973,romantic,1440146222 +109013,4993,Action,1440142967 +109013,4993,Adventure,1440142952 +109013,4993,beautifully filmed,1440142970 +109013,4993,epic adventure,1440142984 +109013,4993,fantasy,1440142943 +109013,4993,high fantasy,1440142937 +109013,4993,hobbits,1440142978 +109013,4993,Magic,1440142956 +109013,4993,scenic,1440142993 +109013,5618,Hayao Miyazaki,1440145065 +109013,5618,Japan,1440145077 +109013,5618,Studio Ghibli,1440145061 +109013,6711,Bill Murray,1440143354 +109013,6711,cultural differences,1440143418 +109013,6711,intelligent,1440143424 +109013,6711,Japan,1440143386 +109013,6711,relationships,1440143363 +109013,6711,Scarlett Johansson,1440143359 +109013,6711,tokyo,1440143351 +109013,6711,young & old,1440143405 +109013,6874,David Carradine,1440145593 +109013,6874,Japan,1440145543 +109013,6874,Quentin Tarantino,1440145538 +109013,6874,revenge,1440145555 +109013,6874,Uma Thurman,1440145535 +109013,6874,violent,1440145552 +109013,7143,colonialism,1440143160 +109013,7143,historical,1440143133 +109013,7143,Honor,1440143136 +109013,7143,Japan,1440143111 +109013,7143,Japanese culture,1440143124 +109013,7143,Ken Watanabe,1440143148 +109013,7143,martial arts,1440143140 +109013,7143,samurai,1440143129 +109013,7143,Tom Cruise,1440143144 +109013,7143,war,1440143164 +109013,7323,communism,1440154760 +109013,7323,East Germany,1440154757 +109013,7323,historical,1440154767 +109013,7323,The fall of the Berlin wall,1440154763 +109013,7361,thought-provoking,1440168552 +109013,7361,too long,1440168538 +109013,8983,Beautiful,1440145854 +109013,8983,China,1440145871 +109013,8983,moral,1440145902 +109013,8983,Takeshi Kaneshiro,1440145858 +109013,8983,unrealistic,1440145866 +109013,8983,Zhang Yimou,1440145861 +109013,8983,Ziyi Zhang,1440145884 +109013,26422,hippies,1440145471 +109013,26422,music,1440145473 +109013,26422,nostalgia,1440145484 +109013,49272,Daniel Craig,1440144952 +109013,49272,gambling,1440144957 +109013,49272,James Bond,1440144978 +109013,49272,Mads Mikkelsen,1440144965 +109013,49272,poker,1440144970 +109013,50872,animation,1440147980 +109013,50872,cooking,1440147988 +109013,50872,Disney,1440147984 +109013,50872,funny,1440148006 +109013,50872,paris,1440147993 +109013,50872,pixar,1440147977 +109013,50872,story,1440148002 +109013,58315,funny,1440168839 +109013,58315,Jessica Alba,1440168827 +109013,58315,Justin Timberlake,1440168890 +109013,58315,Mike Myers,1440168813 +109013,60397,Colin Firth,1440144881 +109013,60397,Greece,1440144909 +109013,60397,music:ABBA,1440144869 +109013,60397,Musical,1440144871 +109013,60397,Pierce Brosnan,1440144876 +109013,68157,Brad Pitt,1440146072 +109013,68157,Christoph Waltz,1440146086 +109013,68157,dark comedy,1440146101 +109013,68157,dialogue,1440146099 +109013,68157,historical,1440146133 +109013,68157,Paris,1440146109 +109013,68157,Quentin Tarantino,1440146068 +109013,68157,satire,1440146078 +109013,68157,vengeance,1440146113 +109013,68157,World War II,1440146081 +109013,69844,Emma Watson,1440143555 +109013,69844,fantasy,1440143563 +109013,69844,harry potter,1440143559 +109013,80463,computers,1440168939 +109013,80463,Justin Timberlake,1440168954 +109013,80463,social network,1440168946 +109013,80463,software developers,1440168950 +109013,104374,charming,1440154643 +109013,106100,Matthew McConaughey,1440578135 +109013,106100,topic:AIDS/HIV,1440578140 +109013,106100,topic:homophobia,1440578148 +109013,106920,intelligent,1440168605 +109013,106920,joaquin phoenix,1440168590 +109013,106920,philosophical,1440168618 +109013,106920,psychology,1440168584 +109013,106920,romance,1440168631 +109013,106920,Scarlett Johansson,1440168624 +109013,106920,thought-provoking,1440168576 +109016,260,action,1433137960 +109016,260,classic,1433137963 +109041,260,interesting,1443757092 +109041,260,mystery,1443757083 +109111,260,Science Fiction,1438351263 +109111,260,space action,1438351243 +109121,70,vampire,1146002820 +109121,2167,vampires,1146002895 +109121,5903,dystopia,1146001815 +109125,115713,fantasy,1450151031 +109125,115713,philosophical,1450151045 +109125,115713,robots,1450151038 +109139,2571,martial arts,1229099474 +109139,2571,ulhas,1229099504 +109139,6365,awesome,1207761591 +109156,65,buddy comedy,1295133784 +109156,65,Pauly Shore,1295133744 +109156,65,stephen baldwin,1295133756 +109156,104,Adam Sandler,1295134743 +109156,104,Bob Barker,1295134785 +109156,104,comedy,1295134743 +109156,104,golf,1295134791 +109156,104,sports,1295134792 +109156,170,action,1294512935 +109156,170,Angelina Jolie,1294512905 +109156,170,awesome soundtrack,1294512909 +109156,170,computers,1294512903 +109156,170,hackers,1294512939 +109156,170,hacking,1294512902 +109156,170,high school,1294512932 +109156,198,cyberpunk,1295120695 +109156,198,Juliette Lewis,1295120705 +109156,198,sci-fi,1295120694 +109156,198,strange,1295120708 +109156,198,virtual reality,1295120698 +109156,333,Brian Dennehy,1295134915 +109156,333,Chris Farley,1295134896 +109156,333,comedy,1295134902 +109156,333,David Spade,1295134899 +109156,344,Action,1295134817 +109156,344,comedy,1295134804 +109156,344,Jim Carrey,1295134808 +109156,344,very funny,1295134821 +109156,364,africa,1299969970 +109156,364,animals,1299969971 +109156,364,coming of age,1299969976 +109156,364,lions,1299969978 +109156,364,musical,1299969966 +109156,379,Jean-Claude Van Damme,1298131883 +109156,379,Mia Sara,1298131895 +109156,379,time travel,1298131892 +109156,379,time-travel,1298131901 +109156,441,Ben Affleck,1294011465 +109156,441,high school,1294011462 +109156,441,Highly quotable,1294011484 +109156,441,marijuana,1294011470 +109156,441,Matthew McConaughey,1294011480 +109156,441,Milla Jovovich,1294011473 +109156,457,Action,1299970027 +109156,457,Harrison Ford,1299970027 +109156,457,Tommy Lee Jones,1299970029 +109156,500,children,1302386389 +109156,500,Comedy,1302386389 +109156,500,not funny,1302386416 +109156,500,Robin Williams,1302386389 +109156,520,Cary Elwes,1295134040 +109156,520,comedy,1295134021 +109156,520,Dave Chappelle,1295134024 +109156,520,Mel Brooks,1295134021 +109156,520,parody,1295134028 +109156,520,Robin Hood,1295134032 +109156,541,assassin,1295120674 +109156,541,based on a book,1295120661 +109156,541,cult film,1295120670 +109156,541,cyberpunk,1295120642 +109156,541,Harrison Ford,1295120665 +109156,541,Philip K. Dick,1295120640 +109156,541,sci-fi,1295120664 +109156,541,stylized,1295120677 +109156,589,action,1294005692 +109156,589,apocalypse,1294005685 +109156,589,Arnold Schwarzenegger,1294005676 +109156,589,robots,1294005703 +109156,589,sci-fi,1294005700 +109156,589,time travel,1294005712 +109156,595,animation,1302386321 +109156,595,Disney,1302386331 +109156,595,Disney animated feature,1302386328 +109156,595,humorous,1302386326 +109156,608,black comedy,1299969992 +109156,608,Coen Brothers,1299970002 +109156,608,dark comedy,1299969992 +109156,608,murder,1299969992 +109156,608,quirky,1299969999 +109156,718,Christian Clavier,1294005362 +109156,718,comedy,1294005455 +109156,718,French Film,1294005338 +109156,718,Jean Reno,1294005344 +109156,718,middle ages,1294005450 +109156,735,black comedy,1296931913 +109156,735,dark comedy,1296931909 +109156,735,macabre,1296931930 +109156,735,Nudity (Topless),1296931921 +109156,735,zombies,1296931923 +109156,785,Bill Murray,1295133694 +109156,785,bowling,1295133715 +109156,785,comedy,1295133720 +109156,785,Randy Quaid,1295133702 +109156,785,Woody Harrelson,1295133700 +109156,802,John Travolta,1299970084 +109156,802,outcast teaches us all a cheesy lesson,1299970093 +109156,802,pretentious,1299970096 +109156,1127,first contact,1295135528 +109156,1127,James Cameron,1295135530 +109156,1127,sci-fi,1295135531 +109156,1127,submarine,1295135535 +109156,1127,Underwater,1295135533 +109156,1129,action,1295135612 +109156,1129,John Carpenter,1295135610 +109156,1129,Kurt Russell,1295135608 +109156,1129,new york,1295135622 +109156,1129,New York City,1295135618 +109156,1129,sci-fi,1295135616 +109156,1129,snake plissken,1295135627 +109156,1175,dark humor,1267376169 +109156,1175,French,1294005541 +109156,1175,french film,1294005526 +109156,1175,picture,1267376169 +109156,1175,Post apocalyptic,1294005514 +109156,1196,action,1294005816 +109156,1196,adventure,1294005818 +109156,1196,classic,1294005819 +109156,1196,George Lucas,1294005812 +109156,1196,great soundtrack,1294005824 +109156,1196,Harrison Ford,1294005822 +109156,1196,space,1294005825 +109156,1196,star wars,1294005827 +109156,1199,black comedy,1294006430 +109156,1199,dark comedy,1294006433 +109156,1199,imdb top 250,1294006448 +109156,1199,Jonathan Pryce,1294006477 +109156,1199,Robert De Niro,1294006436 +109156,1199,sci-fi,1294006441 +109156,1199,Terry Gilliam,1294006437 +109156,1210,action,1294005793 +109156,1210,classic,1294005807 +109156,1210,George Lucas,1294005797 +109156,1210,Harrison Ford,1294005794 +109156,1210,sci-fi,1294005799 +109156,1210,space,1294005801 +109156,1210,Star Wars,1294005802 +109156,1215,Bruce Campbell,1260108077 +109156,1215,cult classic,1260108081 +109156,1220,action,1294006493 +109156,1220,Based on a TV show,1294006491 +109156,1220,car chase,1294006477 +109156,1220,classic,1294006477 +109156,1220,comedy,1294006473 +109156,1220,Dan Aykroyd,1294006509 +109156,1220,John Belushi,1294006516 +109156,1220,musical,1294006477 +109156,1220,notable soundtrack,1294006477 +109156,1220,rhythm & blues,1294006482 +109156,1241,cult film,1296931973 +109156,1241,New Zealand,1296931977 +109156,1241,Peter Jackson,1296931980 +109156,1241,zombies,1296931971 +109156,1257,black comedy,1351439140 +109156,1257,high school,1351439179 +109156,1257,HIGH SCHOOL LIFE,1351439213 +109156,1257,John Cusack,1351439144 +109156,1257,love,1351439160 +109156,1257,surreal,1351439158 +109156,1257,teen,1351439162 +109156,1258,cult film,1294005914 +109156,1258,Jack Nicholson,1294005906 +109156,1258,mental illness,1294005921 +109156,1258,psychological,1294005908 +109156,1258,Stanley Kubrick,1294005909 +109156,1258,Stephen King,1294005911 +109156,1261,black comedy,1295120977 +109156,1261,Bruce Campbell,1260106829 +109156,1261,cult classic,1260108005 +109156,1261,cult film,1295120971 +109156,1261,dark humor,1295120968 +109156,1261,stylized,1295120974 +109156,1261,zombies,1295120975 +109156,1265,alternate reality,1295133371 +109156,1265,animals,1295133386 +109156,1265,Bill Murray,1295133366 +109156,1265,Classic,1295133370 +109156,1265,comedy,1295133368 +109156,1265,love,1295133381 +109156,1265,small town,1295133376 +109156,1265,time loop,1295133373 +109156,1265,time travel,1295133375 +109156,1288,AFI 100 (Laughs),1295133350 +109156,1288,classic,1294011218 +109156,1288,documentary,1294011209 +109156,1288,heavy metal,1294011199 +109156,1288,music,1294011198 +109156,1288,rock and roll,1294011201 +109156,1288,satire,1294011203 +109156,1301,classic,1295135316 +109156,1301,cult film,1295135319 +109156,1301,intellectual,1295135482 +109156,1301,sci-fi,1295135470 +109156,1301,stylized,1295135486 +109156,1356,Borg,1294005843 +109156,1356,Star Trek,1294005839 +109156,1356,time travel,1294005840 +109156,1374,brainwashing,1294005899 +109156,1374,sci-fi,1294005887 +109156,1374,Star Trek,1294005860 +109156,1374,William Shatner,1294005870 +109156,1391,comedy,1295135273 +109156,1391,ensemble cast,1295135272 +109156,1391,Jack Nicholson,1295135268 +109156,1391,Martin Short,1295135292 +109156,1391,Pierce Brosnan,1295135281 +109156,1391,Sarah Jessica Parker,1295135276 +109156,1527,Bruce Willis,1295135352 +109156,1527,Luc Besson,1295135361 +109156,1527,Milla Jovovich,1295135356 +109156,1580,action,1295134988 +109156,1580,comedy,1295134998 +109156,1580,parody,1295134995 +109156,1580,sci-fi,1295134983 +109156,1580,Tommy Lee Jones,1295134990 +109156,1580,Will Smith,1295134992 +109156,1590,classic,1294006118 +109156,1590,dark,1294006118 +109156,1590,distorted reality,1294006118 +109156,1653,Ethan Hawke,1298131697 +109156,1653,genetic engineering,1298131683 +109156,1653,genetic selection,1298131679 +109156,1653,Jude Law,1298131698 +109156,1653,sci-fi,1298131681 +109156,1653,Uma Thurman,1298131696 +109156,1676,Alien Invasion,1294005769 +109156,1676,Neil Patrick Harris,1294005775 +109156,1676,satire,1294005780 +109156,1676,sci-fi,1294005782 +109156,1676,space,1294005784 +109156,1732,black comedy,1294006631 +109156,1732,comedy,1294006776 +109156,1732,cult film,1294006766 +109156,1732,dark comedy,1294006769 +109156,1732,Jeff Bridges,1294006766 +109156,1732,marijuana,1294006749 +109156,1748,aliens,1294006424 +109156,1748,dark fantasy,1294006408 +109156,1748,Jennifer Connelly,1294006404 +109156,1748,Kiefer Sutherland,1294006393 +109156,1748,Post apocalyptic,1294006411 +109156,1748,sci-fi,1294006357 +109156,1753,comedy,1295133199 +109156,1753,Dave Chappelle,1295133200 +109156,1753,Jim Breuer,1295133203 +109156,1753,marijuana,1295133198 +109156,1753,stoner comedy,1295133205 +109156,1753,stoner movie,1295133207 +109156,1921,black and white,1305497091 +109156,1921,hallucinatory,1305497093 +109156,1921,mental illness,1305497089 +109156,1921,mindfuck,1305497097 +109156,1921,paranoid,1305497087 +109156,1921,stylized,1305497084 +109156,1921,tense,1305497086 +109156,1923,Ben Stiller,1295120359 +109156,1923,Cameron Diaz,1295120358 +109156,1923,comedy,1295120355 +109156,1967,Adventure,1346020627 +109156,1967,David Bowie,1346020624 +109156,1967,fantasy,1346020629 +109156,1967,good versus evil,1346020631 +109156,1967,Jennifer Connelly,1346020625 +109156,1967,seen more than once,1346020646 +109156,2021,based on a book,1294006274 +109156,2021,David Lynch,1294006276 +109156,2021,fantasy,1294006278 +109156,2021,Frank Herbert,1294006153 +109156,2021,must see,1294006292 +109156,2021,poor adaption,1294006284 +109156,2021,sci-fi,1294006154 +109156,2021,slow paced,1294006286 +109156,2060,comedy,1295134065 +109156,2060,Dian Bachar,1295134136 +109156,2060,Matt Stone,1295134060 +109156,2060,nostalgic,1295134102 +109156,2060,toilet humour,1295134107 +109156,2060,Trey Parker,1295134061 +109156,2118,adapted from:book,1298131105 +109156,2118,author:Stephen King,1298131138 +109156,2118,based on a book,1298131112 +109156,2118,Christopher Walken,1298131087 +109156,2118,cronenberg,1298131115 +109156,2118,David Cronenberg,1298131089 +109156,2118,Stephen King,1298131139 +109156,2118,time travel,1298131103 +109156,2134,comedy,1351439424 +109156,2134,John Hughes,1351439429 +109156,2174,Alec Baldwin,1295120176 +109156,2174,comedy,1295120164 +109156,2174,cult film,1295120166 +109156,2174,Geena Davis,1295120182 +109156,2174,Michael Keaton,1295120172 +109156,2174,Tim Burton,1295120169 +109156,2174,winona ryder,1295120177 +109156,2232,cult film,1299973029 +109156,2232,David Hewlett,1299973025 +109156,2232,mindfuck,1299972996 +109156,2232,psychological,1299972996 +109156,2232,psychology,1299972996 +109156,2232,scifi,1299972996 +109156,2278,action,1294516091 +109156,2278,car chase,1294516093 +109156,2278,crime,1294516090 +109156,2278,Jean Reno,1294516086 +109156,2278,organized crime,1294516089 +109156,2278,Robert De Niro,1294516088 +109156,2288,aliens,1295120495 +109156,2288,antartica,1294005652 +109156,2288,horror,1295120489 +109156,2288,John Carpenter,1294005619 +109156,2288,Kurt Russell,1294005611 +109156,2288,remake,1294005660 +109156,2288,shape shifter,1295120493 +109156,2295,Oliver Platt,1297029875 +109156,2295,Stanley Tucci,1297029872 +109156,2423,Chevy Chase,1295133513 +109156,2423,christmas,1295133537 +109156,2423,Classic,1295133510 +109156,2423,comedy,1295133509 +109156,2423,family comedy,1295133512 +109156,2423,movie to see,1295133515 +109156,2423,Xmas theme(?),1295133505 +109156,2502,comedy,1295133283 +109156,2502,cult classic,1295133296 +109156,2502,cult film,1295133294 +109156,2502,Jennifer Aniston,1295133285 +109156,2502,mike judge,1295133287 +109156,2502,office,1295133290 +109156,2502,slackers,1295133301 +109156,2502,workplace,1295133292 +109156,2513,adapted from:book,1295120623 +109156,2513,author:Stephen King,1295120626 +109156,2513,cemetary,1295120634 +109156,2513,dead raising,1295120632 +109156,2513,horror,1295120629 +109156,2513,Stephen King,1295120627 +109156,2527,androids,1295135653 +109156,2527,Michael Crichton,1295135645 +109156,2527,sci-fi,1295135650 +109156,2528,futuristic,1298131667 +109156,2528,post-apocalyptic,1298131665 +109156,2528,sci-fi,1298131666 +109156,2692,alternate endings,1276561964 +109156,2692,nonlinear,1276561964 +109156,2692,time travel,1276561964 +109156,2696,classic,1294006248 +109156,2696,French,1294006238 +109156,2696,French Film,1294006234 +109156,2696,Jacques Villeret,1294006219 +109156,2696,RemadeAs:Dinner for Shmucks (2010),1294006262 +109156,2696,Thierry Lhermitte,1294006259 +109156,2710,"""found footage""",1295120108 +109156,2710,boring,1295120116 +109156,2710,overrated,1295120120 +109156,2795,Chevy Chase,1297030700 +109156,2795,classic comedy,1297030712 +109156,2795,comedy,1297030714 +109156,2795,Randy Quaid,1297030704 +109156,2795,road trip,1297030711 +109156,2916,Arnold Schwarzenegger,1295135664 +109156,2916,Philip K. Dick,1295135668 +109156,2916,sci-fi,1299364869 +109156,2918,comedy,1295122889 +109156,2918,coming of age,1295122892 +109156,2918,High School,1295122893 +109156,2918,Matthew Broderick,1295122891 +109156,3018,H.P. Lovecraft,1296931957 +109156,3018,humorous,1296931959 +109156,3018,zombies,1296931965 +109156,3087,Bill Murray,1295133410 +109156,3087,christmas,1295133417 +109156,3087,comedy,1295133433 +109156,3087,new york,1295133446 +109156,3087,New York City,1295133445 +109156,3087,parody,1295133415 +109156,3087,Xmas theme,1295133426 +109156,3175,comedy,1295135045 +109156,3175,parody,1295135036 +109156,3175,Sigourney Weaver,1295135038 +109156,3175,space,1295135039 +109156,3175,Star Trek,1295135034 +109156,3175,Tim Allen,1295135247 +109156,3300,anti-hero,1295135591 +109156,3300,Claudia Black,1295135585 +109156,3300,sci-fi,1295135567 +109156,3300,Vin Diesel,1295135573 +109156,3499,author:Stephen King,1295120565 +109156,3499,based on a book,1295120539 +109156,3499,horror,1295120571 +109156,3499,Kathy Bates,1295120550 +109156,3499,Stephen King,1295120562 +109156,3499,tense,1295120577 +109156,3499,thriller,1295120574 +109156,3552,Bill Murray,1295133607 +109156,3552,Chevy Chase,1295133610 +109156,3552,classic,1295133648 +109156,3552,classic comedy,1295133643 +109156,3552,comedy,1295133640 +109156,3552,golf,1295133666 +109156,3552,Rodney Dangerfield,1295133630 +109156,3552,stoner movie,1295133634 +109156,3740,anti-hero,1294006566 +109156,3740,John Carpenter,1294006550 +109156,3740,Kurt Russell,1294006551 +109156,3740,magic,1294006556 +109156,3740,martial arts,1294006562 +109156,3809,Bill Murray,1296932909 +109156,3809,DOCTORS AND PATIENTS,1296932911 +109156,3809,great acting,1296932920 +109156,3979,Adam Sandler,1295133820 +109156,3979,Carl Weathers,1295133820 +109156,3979,comedy,1295133827 +109156,3979,devil,1295133875 +109156,3979,Harvey Keitel,1295133899 +109156,3979,Patricia Arquette,1295133925 +109156,3979,Quentin Tarantino,1295133831 +109156,3979,Rob Schneider,1295133923 +109156,3979,Rodney Dangerfield,1295133836 +109156,4002,comedy,1295133567 +109156,4002,John Candy,1295133565 +109156,4002,language,1295133587 +109156,4002,road trip,1295133563 +109156,4002,Sir John Candy,1295133599 +109156,4002,Steve Martin,1295133564 +109156,4105,black comedy,1295120953 +109156,4105,Bruce Campbell,1295120924 +109156,4105,controversial,1295120958 +109156,4105,cult film,1295120945 +109156,4105,dark humor,1295120961 +109156,4105,demons,1295120960 +109156,4105,low budget,1295120949 +109156,4105,zombies,1295120951 +109156,4533,zombies,1297031261 +109156,4678,Friday night movie,1295133314 +109156,4678,Michael Richards,1295133318 +109156,4678,Weird Al,1295133310 +109156,4679,John Candy,1295123273 +109156,4679,john hughes,1351439246 +109156,4679,Macaulay Culkin,1351439242 +109156,4728,Amy Smart,1295134185 +109156,4728,comedy,1295134184 +109156,4728,Cuba Gooding Jr.,1295134181 +109156,4728,Rowan Atkinson,1295134180 +109156,4728,Seth Green,1295134178 +109156,4728,treasure hunt,1295134190 +109156,4728,Whoopi Goldberg,1295134177 +109156,4816,ben stiller,1295133230 +109156,4816,David Bowie,1295133230 +109156,4816,fashion,1295133235 +109156,4816,Highly quotable,1295133260 +109156,4816,mindless one liners,1295133269 +109156,4816,Owen Wilson,1295133248 +109156,4816,Will Ferrell,1295133238 +109156,4873,Ethan Hawke,1328385585 +109156,4873,surreal,1328385567 +109156,4873,thought-provoking,1328385576 +109156,5046,Gary Sinise,1294515747 +109156,5046,Good ending,1294515749 +109156,5046,Madeleine Stowe,1294515745 +109156,5046,Philip K. Dick,1294515752 +109156,5054,brain machine,1299364813 +109156,5054,Christopher Walken,1299364807 +109156,5054,scientist experiments on self,1299364811 +109156,5445,action,1295135693 +109156,5445,artificial intelligence,1295135691 +109156,5445,Philip K. Dick,1295135683 +109156,5445,sci-fi,1295135685 +109156,5445,Tom Cruise,1295135686 +109156,5541,Charlie Sheen,1295133983 +109156,5541,comedy,1295133984 +109156,5541,Lloyd Bridges,1295134008 +109156,5541,parody,1295133987 +109156,5608,based on a true story,1294006319 +109156,5608,German,1294006323 +109156,5608,prison,1294006334 +109156,5608,psychology,1294006330 +109156,5608,subordination,1294006333 +109156,5853,body horror,1297825066 +109156,5853,David Cronenberg,1298131572 +109156,5853,Michael Ironside,1297825059 +109156,6731,George A. Romero,1297031140 +109156,6731,horror,1297031142 +109156,6731,zombies,1297031143 +109156,6755,Bruce Campbell,1260108226 +109156,6755,hilarious,1295120276 +109156,6755,mental illness,1295120279 +109156,6936,Christmas,1295133473 +109156,6936,comedy,1295133496 +109156,6936,Elijah Wood,1295133469 +109156,6936,family friendly,1295133483 +109156,6936,funny,1295133492 +109156,6936,James Caan,1295133471 +109156,6936,Will Ferrell,1295133466 +109156,7022,brutal,1295120895 +109156,7022,controversial,1295120896 +109156,7022,Japan,1295120899 +109156,7022,martial arts,1295120893 +109156,7022,survival,1295120724 +109156,7163,adapted from:book,1298131874 +109156,7163,author:Philip K. Dick,1298131871 +109156,7163,based on a book,1298131872 +109156,7163,Philip K. Dick,1298131859 +109156,7163,sci-fi,1298131867 +109156,7827,corporate espionage,1305497115 +109156,7827,cyberpunk,1305497182 +109156,7827,Jeremy Northam,1305497119 +109156,7827,Lucy Liu,1305497117 +109156,7827,Plodding pace,1305497147 +109156,8371,Riddick,1298131720 +109156,8371,sci-fi,1298131721 +109156,8371,Vin Diesel,1298131719 +109156,8376,comedy,1351439316 +109156,8376,off-beat comedy,1351439314 +109156,8376,overrated,1351439321 +109156,8376,quotable,1351439329 +109156,8376,teen,1351439339 +109156,8690,Photo,1310909364 +109156,8690,World War II,1310909367 +109156,8807,comedy,1295134270 +109156,8807,drugs,1295134276 +109156,8807,John Cho,1295134260 +109156,8807,Kal Penn,1295134885 +109156,8807,love,1295134882 +109156,8807,Neil Patrick Harris,1295134261 +109156,8807,road trip,1295134849 +109156,8807,stoner comedy,1295134264 +109156,8807,Stoner Movie,1295134265 +109156,8874,black comedy,1295120325 +109156,8874,parody,1295120348 +109156,8874,Simon Pegg,1295120324 +109156,8874,zombies,1295120323 +109156,26203,artificial intelligence,1298131176 +109156,26203,cold war,1298131188 +109156,26203,evil computer,1298131157 +109156,26444,adapted from:radio play,1297031092 +109156,26444,author:Douglas Adams,1297031093 +109156,26444,based on a book,1297031079 +109156,26444,douglas adams,1297031078 +109156,26444,miniseries,1297031087 +109156,26492,adapted from:TV series,1298131441 +109156,26492,Dan Aykroyd,1298131460 +109156,26492,good soundtrack,1298131444 +109156,26492,John Lithgow,1298131540 +109156,26492,nothing,1298131553 +109156,26492,Scatman Crothers,1298131478 +109156,26582,post-apocalyptic,1295121815 +109156,26582,roller skates,1295121847 +109156,26582,sci-fi,1295121798 +109156,27904,animated,1294006061 +109156,27904,author:Philip K. Dick,1294006058 +109156,27904,based on a book,1294005967 +109156,27904,drugs,1294005967 +109156,27904,Keanu Reeves,1294006055 +109156,27904,Philip K. Dick,1294006046 +109156,27904,Robert Downey Jr.,1294006050 +109156,27904,surrealism,1294006066 +109156,27904,Woody Harrelson,1294006053 +109156,34319,Ewan McGregor,1298131832 +109156,34319,future,1298131836 +109156,34319,immortality,1298131838 +109156,34319,Scarlett Johansson,1298131833 +109156,34319,sci-fi,1298131834 +109156,34319,slavery,1298131851 +109156,44849,amazing photography,1301238137 +109156,44849,animation,1301238137 +109156,44849,boring plot,1301238148 +109156,44849,film noir,1301238147 +109156,44849,graphic,1301238145 +109156,44849,superficial plot,1301238142 +109156,45666,comedy,1295133956 +109156,45666,Jack Black,1295133951 +109156,45666,not funny,1295133966 +109156,46970,cars,1295134159 +109156,46970,competition,1295134158 +109156,46970,nascar,1295134165 +109156,46970,racing,1295134162 +109156,46970,Sacha Baron Cohen,1295134154 +109156,46970,Will Ferrell,1295134153 +109156,47394,clash of cultures,1294011149 +109156,47394,québécois,1294011152 +109156,47394,sport:ice hockey,1294011165 +109156,47446,french,1299989766 +109156,47446,identity crisis,1299989770 +109156,47446,insanity,1299989769 +109156,48780,Christian Bale,1299364599 +109156,48780,David Bowie,1299364644 +109156,48780,magic,1299364779 +109156,48780,Scarlett Johansson,1299364606 +109156,48780,steampunk,1299364650 +109156,48780,twist ending,1299364777 +109156,49396,comedy,1294005742 +109156,49396,devil,1294005762 +109156,49396,Jack Black,1294005723 +109156,49396,Kyle Gass,1294005719 +109156,49396,laser maze room (in a comedy),1294005749 +109156,49396,satire,1294005728 +109156,51412,action,1299364935 +109156,51412,author:Philip K. Dick,1299364886 +109156,51412,jessica biel,1299364933 +109156,51412,Nicolas Cage,1299364918 +109156,51412,Philip K. Dick,1299364885 +109156,51412,time travel,1299364927 +109156,51412,time-lapse,1299364923 +109156,54503,Bill Hader,1351439499 +109156,54503,Christopher Mintz-Plasse,1295122699 +109156,54503,classic,1351439502 +109156,54503,comedy,1295122663 +109156,54503,Highly quotable,1295122716 +109156,54503,hilarious,1295122720 +109156,54503,Michael Cera,1295122671 +109156,54503,police,1295122714 +109156,54503,Seth Rogen,1295122706 +109156,55553,activism,1296932020 +109156,55553,gore,1296932029 +109156,55553,mad scientist,1296932017 +109156,55553,sheep zombies,1296932024 +109156,55553,Zombies,1296932015 +109156,56145,adapted from:book,1295120594 +109156,56145,apocalypse,1295120592 +109156,56145,based on a book,1295120609 +109156,56145,small town,1295120600 +109156,56145,stephen king,1295120596 +109156,59369,action,1294515290 +109156,59369,Liam Neeson,1294515291 +109156,59369,Paris,1294515297 +109156,59369,thriller,1294515300 +109156,62049,adapted from:book,1305759753 +109156,62049,based on a book,1305759736 +109156,62049,classic,1305759745 +109156,62049,dystopia,1305759746 +109156,62049,fascism,1305759749 +109156,62049,George Orwell,1305759738 +109156,62336,anime,1299972847 +109156,62336,cult film,1299972848 +109156,62733,"""found footage""",1295120104 +109156,62733,zombies,1295120064 +109156,68237,cloning,1299971118 +109156,68237,dystopia,1299971100 +109156,68237,Sam Rockwell,1299971106 +109156,68237,Sci-fi,1299971097 +109156,68237,solitude,1299971119 +109156,68237,space,1299971120 +109156,69278,comedy,1301237849 +109156,69278,dinosaurs,1301237842 +109156,69278,time travel,1301237828 +109156,69278,Will Ferrell,1301237835 +109156,70015,based on a true story,1299365377 +109156,70015,Denis Villeneuve,1299365373 +109156,70015,Karine Vanasse,1299365359 +109156,70015,Maxim Gaudette,1299365354 +109156,70015,Montreal,1299365375 +109156,70015,Sébastien Huberdeau,1299365362 +109156,70015,setting:Montreal,1299365365 +109156,70015,true story,1299365368 +109156,71129,animation poor,1300568564 +109156,71129,DC Comics,1300568558 +109156,71129,sci-fi,1300568573 +109156,71520,bad acting,1295133085 +109156,71520,Jennifer Garner,1295133076 +109156,71520,not funny,1295133080 +109156,71520,poor script,1295133086 +109156,71520,poorly realized,1295133088 +109156,71520,Ricky Gervais,1295133077 +109156,71520,riddled with cliché,1295133097 +109156,71535,Bill Murray,1295120229 +109156,71535,post-apocalyptic,1295120230 +109156,71535,road trip,1295120257 +109156,71535,teen,1295120260 +109156,71535,underdeveloped characters,1295120255 +109156,71535,Woody Harrelson,1295120243 +109156,71535,zombies,1295120232 +109156,71732,black comedy,1294005286 +109156,71732,Dominic Monaghan,1294005271 +109156,71732,Ron Perlman,1294005280 +109156,77795,lengthy,1351439544 +109156,77795,post-apocalyptic,1351439545 +109156,77795,space travel,1351439550 +109156,77795,virtual reality,1351439556 +109156,78349,experiment,1297029931 +109156,78349,group psychology,1297029908 +109156,78349,isolation,1297029924 +109156,78349,logic,1297029913 +109156,78349,mediocre ending,1297029906 +109156,79132,alternate reality,1305497364 +109156,79132,heist,1305497373 +109156,79132,Leonardo DiCaprio,1305497362 +109156,79132,Paris,1305497375 +109156,79132,sci-fi,1305497377 +109156,79132,surreal,1305497367 +109156,79132,thought-provoking,1305497371 +109156,79132,thriller,1305497379 +109156,79132,visually appealing,1305497368 +109156,79293,action,1294512997 +109156,79293,Angelina Jolie,1294512979 +109156,79293,double agents,1294512982 +109156,79293,espionage,1294512983 +109156,79293,sleeper agent,1294512984 +109156,79293,Soviet Union,1294512985 +109156,79428,Paul Rudd,1294005029 +109156,79428,remake,1294005019 +109156,79428,remake of a french film,1295133174 +109156,79428,Steve Carell,1294005007 +109156,79428,Zach Galifianakis,1294005007 +109156,79702,duel,1296931870 +109156,79702,fight scenes,1296931829 +109156,79702,funny,1296931866 +109156,79702,Kieran Culkin,1296931852 +109156,79702,Mary Elizabeth Winstead,1296931860 +109156,79702,Michael Cera,1296931827 +109156,80489,action,1294005135 +109156,80489,Ben Affleck,1294005121 +109156,80489,place driven,1294005135 +109156,81229,action,1296261081 +109156,81229,aging,1296261084 +109156,81229,Bruce Willis,1296260893 +109156,81229,comedy,1296261097 +109156,81229,Helen Mirren,1296261079 +109156,81229,John Malkovich,1296260891 +109156,81229,Mary-Louise Parker,1296261069 +109156,81229,Morgan Freeman,1296261075 +109156,81229,Richard Dreyfuss,1296261088 +109156,81932,Christian Bale,1305496681 +109156,81932,Mark Wahlberg,1305496685 +109156,82461,daft punk,1305496817 +109156,82461,epic,1297630448 +109156,82461,futuristic,1297630447 +109156,82461,Jeff Bridges,1297630444 +109156,82461,music,1297630449 +109156,82461,sci-fi,1297630450 +109156,82461,technology,1297630459 +109156,82461,video games,1297630461 +109156,82852,Barbara Streisand,1305496773 +109156,82852,Ben Stiller,1305496766 +109156,82852,Dustin Hoffman,1305496772 +109156,82852,few funny scenes,1305496750 +109156,82852,Jessica Alba,1305496758 +109156,82852,Owen Wilson,1305496764 +109156,82852,Robert De Niro,1305496757 +109156,83910,Jennifer Connelly,1305496533 +109156,83910,Kevin James,1305496550 +109156,83910,poor plot,1305496604 +109156,83910,romance,1305496562 +109156,83910,Vince Vaughn,1305496544 +109156,83910,Winona Ryder,1305496652 +109156,85022,comedy,1311464629 +109156,85774,Alain Prost,1350831321 +109156,85774,Asif Kapadia,1350831337 +109156,85774,Ayrton Senna,1350831325 +109156,85774,biography,1350831332 +109156,85774,cars,1350831328 +109156,85774,Formula 1 racing,1350831317 +109156,85774,rivalry,1350831370 +109156,90866,1930s,1331399659 +109156,90866,bad acting,1331399607 +109156,90866,France,1331399654 +109156,90866,Martin Scorsese,1331399614 +109156,90866,Paris,1331399646 +109156,90866,Sacha Baron Cohen,1331399620 +109156,93831,Eugene Levy,1346020949 +109156,93831,nostalgic,1346020874 +109156,97690,Fatou N'Diaye,1350831946 +109156,97690,history,1350832188 +109156,97690,Luc Picard,1350831935 +109156,97690,Maka Kotto,1350831998 +109156,97690,Romance,1350832036 +109156,97690,thought-provoking,1350832127 +109156,97690,war,1350832060 +109156,97690,war crimes,1350832203 +109156,98809,adventure,1360098283 +109156,98809,based on a book,1360098281 +109156,98809,beautiful scenery,1360098286 +109156,98809,fantasy world,1360098315 +109156,98809,Peter Jackson,1360098312 +109156,98809,Tolkien,1360098309 +109156,99937,Nazis,1368886654 +109156,99937,undead,1368886662 +109156,101870,Nazis,1368886392 +109156,101870,undead,1368886456 +109163,260,future fantasy,1437572493 +109163,260,good for kids,1437572503 +109193,296,action,1436893245 +109193,296,cult film,1436893245 +109193,296,royal with cheese,1436893245 +109236,260,dont watch,1439147449 +109236,260,Never,1439147440 +109267,899,classic,1449883511 +109267,899,classic Hollywood,1449883519 +109267,899,musical,1449883517 +109267,6669,philosophical,1451539851 +109267,7327,cerebral,1449136135 +109267,7327,criterion,1449136126 +109267,95898,kevin bacon,1425283712 +109267,95898,lifetime movie,1425283712 +109267,95898,romance,1425283712 +109267,96728,Amy Adams,1449885379 +109267,96728,cinematography,1449885375 +109267,96728,great performances,1449885369 +109267,96728,Joaquin Phoenix,1449885373 +109267,96728,Paul Thomas Anderson,1451919798 +109267,96728,Philip Seymour Hoffman,1451919800 +109267,148626,bkk,1451166287 +109267,148626,prospect,1451166285 +109267,148626,toplist15,1451166283 +109304,2571,action,1436693786 +109304,2571,sci-fi,1436693786 +109304,2571,special effects,1436693786 +109319,260,fantasy,1432256644 +109319,260,sci-fi,1432256674 +109324,3081,cinematography,1339777254 +109324,3175,Good story and funny.,1339777406 +109324,56145,Good story and well acted.,1339777462 +109324,56174,post-apocalytic setting,1337259694 +109324,56174,zombies,1337259694 +109324,68954,Excellent story and pacing.,1339777343 +109332,47,religion,1237079990 +109332,1921,existentialism,1237079963 +109332,1921,mathematics,1237079921 +109332,2692,existentialism,1237079842 +109332,4873,existentialism,1237079858 +109332,37830,final fantasy,1237080046 +109342,32,Brad Pitt,1344352421 +109342,32,Bruce Willis,1344352406 +109342,32,dystopia,1344352429 +109342,32,post-apocalyptic,1344352419 +109342,32,psychology,1344352424 +109342,32,time travel,1344352431 +109342,293,assassin,1344036581 +109342,293,corruption,1344036581 +109342,293,hitman,1344036560 +109342,293,Jean Reno,1344036557 +109342,293,Natalie Portman,1344036555 +109342,296,dark comedy,1343426468 +109342,296,drugs,1343426489 +109342,296,nonlinear,1343426463 +109342,296,Quentin Tarantino,1343426352 +109342,296,Samuel L. Jackson,1343426428 +109342,296,violence,1343426460 +109342,904,Alfred Hitchcock,1343423206 +109342,904,murder,1343423214 +109342,904,voyeurism,1343423217 +109342,1079,Jamie Lee Curtis,1343680533 +109342,1079,John Cleese,1343680538 +109342,1089,dark comedy,1343426552 +109342,1089,organized crime,1343426548 +109342,1089,Quentin Tarantino,1343426524 +109342,1089,violence,1343426545 +109342,1201,Clint Eastwood,1345372547 +109342,1201,complex characters,1345372557 +109342,1201,Ennio Morricone,1345372552 +109342,1201,Sergio Leone,1345372548 +109342,1201,spaghetti western,1345372545 +109342,1219,Alfred Hitchcock,1343426435 +109342,1219,psychology,1343426445 +109342,1222,Stanley Kubrick,1343426590 +109342,1222,war,1343426599 +109342,1262,prison escape,1345852638 +109342,1262,Steve McQueen,1345852645 +109342,1262,World War II,1345852643 +109342,1682,dark comedy,1343254461 +109342,1682,dystopia,1343254452 +109342,2288,aliens,1343945010 +109342,2288,Kurt Russell,1343944998 +109342,2288,paranoia,1343945013 +109342,2324,comedy,1344256822 +109342,2324,father-son relationship,1344256828 +109342,2324,Roberto Benigni,1344256806 +109342,2324,World War II,1344256816 +109342,2571,dystopia,1341891215 +109342,2944,anti-hero,1345556014 +109342,2944,World War II,1345556017 +109342,2997,dark comedy,1343952978 +109342,2997,psychology,1343952976 +109342,2997,surreal,1343952969 +109342,3471,Steven Spielberg,1344099356 +109342,3654,traitor,1345496870 +109342,3654,World War II,1345496868 +109342,3683,Coen Brothers,1345505406 +109342,4064,drugs,1344984771 +109342,4064,exploitation,1344984773 +109342,4064,revenge,1344984780 +109342,4848,Atmospheric,1344549540 +109342,4848,disturbing,1344549538 +109342,4848,nonlinear,1344549547 +109342,4848,surreal,1344549534 +109342,5156,exploitation,1346125224 +109342,6539,comedy,1344118865 +109342,6539,Disney,1344118868 +109342,6539,Johnny Depp,1344118858 +109342,7387,George A. Romero,1345586189 +109342,7387,horror,1345586190 +109342,7387,survival,1345586194 +109342,7387,zombies,1345586187 +109342,8874,black comedy,1344733618 +109342,8874,British,1344733613 +109342,8874,Simon Pegg,1344733609 +109342,27773,disturbing,1344722046 +109342,27773,imdb top 250,1344722071 +109342,27773,revenge,1344722057 +109342,33794,Christian Bale,1344378144 +109342,33794,comic book,1344378170 +109342,33794,Morgan Freeman,1344378146 +109342,33794,stylized,1344378158 +109342,34319,dystopia,1341891177 +109342,44191,dystopia,1344256753 +109342,55363,beautiful scenery,1344213404 +109342,55363,Brad Pitt,1344213421 +109342,55363,Casey Affleck,1344213394 +109342,55363,crime,1344213418 +109342,55363,Mary-Louise Parker,1344213636 +109342,55363,visually appealing,1344213408 +109342,56782,Daniel Day-Lewis,1344641948 +109342,56782,oil,1344641966 +109342,56782,visually appealing,1344641957 +109342,58559,Christian Bale,1344390328 +109342,58559,Heath Ledger,1344390323 +109342,58559,Morgan Freeman,1344390334 +109342,68157,Christoph Waltz,1341891306 +109342,68157,Quentin Tarantino,1341891283 +109342,70286,aliens,1345477959 +109342,70286,humor,1345477950 +109342,70286,social commentary,1345477952 +109342,88129,crime,1343336562 +109342,88129,predictable,1343336564 +109342,88129,violence,1343336581 +109342,89492,Brad Pitt,1343350192 +109342,89492,math,1343350184 +109342,89492,true story,1343350215 +109342,89492,underdog,1343350201 +109342,116897,dark humor,1423088554 +109342,116897,violence,1423088560 +109373,1209,Sergio Leone,1147214688 +109373,1262,World War II,1147214838 +109373,34405,Firefly,1147214837 +109373,38038,Aardman,1147214846 +109373,48774,Nudity (Topless - Brief),1171844986 +109373,53464,based on a comic,1198423275 +109392,60904,based on book,1447512287 +109424,59725,Based on a TV show,1322415647 +109424,76293,Steve Carell,1322415707 +109442,2100,feel good film,1157245510 +109470,47,crime,1295683735 +109470,47,investigation,1295683737 +109470,47,mystery,1295683764 +109470,47,psychology,1295683767 +109470,47,twist ending,1295683769 +109470,290,alcoholism,1295684776 +109470,290,based on a book,1295684780 +109470,290,New Zealand,1295684756 +109470,290,rape,1295684764 +109470,290,sad,1295684769 +109470,290,strong women,1295684761 +109470,290,welfare,1295684773 +109470,778,based on a book,1295685291 +109470,778,crime,1295685317 +109470,778,drugs,1295685326 +109470,778,great soundtrack,1295685294 +109470,778,social commentary,1295685310 +109470,2542,British,1295683494 +109470,2542,drugs,1295683513 +109470,2542,hilarious,1295683531 +109470,2542,organized crime,1295683519 +109470,4011,comedy,1295683407 +109470,4011,cynical,1295683436 +109470,4011,multiple storylines,1295683451 +109470,4011,twist ending,1295683430 +109470,6016,based on a true story,1295685343 +109470,6016,Brazil,1295685351 +109470,6016,crime,1295685364 +109470,6016,multiple storylines,1295685354 +109470,6016,true story,1295685360 +109470,8014,Atmospheric,1296010372 +109470,8014,Buddhism,1296010377 +109470,8014,character driven,1296010374 +109470,8014,great photograpy,1296010364 +109470,8014,reflective,1296010379 +109470,33166,multiple storylines,1296009494 +109470,33166,social commentary,1296009496 +109470,33166,twist ending,1296009498 +109470,46723,Brad Pitt,1296009819 +109470,46723,multiple storylines,1296009828 +109470,46723,social commentary,1296009813 +109470,68347,Mexico,1296010500 +109470,71131,Louis Theroux,1295726479 +109470,71131,Phelps family,1295726487 +109480,260,action,1442192840 +109480,260,sci-fi,1442192837 +109505,67295,humorous,1241982725 +109509,608,strong female,1427131322 +109536,50,great ending,1192026156 +109536,1258,Saturn Award (Best Supporting Actor),1198376523 +109536,1589,Ray Liotta,1203990151 +109536,2762,M.Night Shyamalan,1191334995 +109536,2804,Best Christmas movie,1194375350 +109536,5103,Baseball Movie,1198507523 +109536,5679,remake,1204336400 +109536,8961,Great Effects,1198376671 +109536,8961,Pixar,1198376671 +109536,30749,True Story,1194968323 +109536,40339,Zach Braff,1198507747 +109536,44633,Artist,1198376600 +109536,44633,Genius,1198376608 +109536,47999,religion,1199399538 +109536,56174,Great Acting,1205263873 +109536,56174,Will Smith,1197904382 +109554,2116,easily confused with another title,1343698720 +109567,260,Science Fiction,1437760391 +109567,260,Star Wars,1437760398 +109588,260,action,1443525478 +109588,260,scifi,1443525472 +109588,260,space,1443525481 +109604,6534,super-hero,1159796572 +109620,6377,Disney,1148169006 +109621,597,julia roberts,1137308125 +109621,597,romance,1137308117 +109621,2810,anime,1137308399 +109621,2810,Satoshi Kon,1137308399 +109621,3000,anime,1137308561 +109621,3000,Hayao Miyazaki,1137308561 +109621,5618,anime,1137308572 +109621,5618,Hayao Miyazaki,1137308572 +109621,5971,anime,1137308582 +109621,5971,Hayao Miyazaki,1137308582 +109621,6350,anime,1137308615 +109621,6350,Hayao Miyazaki,1137308615 +109621,6539,adventure,1137308140 +109621,6539,johnny depp,1137308140 +109621,6713,anime,1137308335 +109621,6713,Satoshi Kon,1137308397 +109621,7099,anime,1137308607 +109621,7099,Hayao Miyazaki,1137308608 +109621,8253,anime,1137308714 +109621,8253,Hayao Miyazaki,1137308715 +109621,8607,anime,1137308402 +109621,8607,Satoshi Kon,1137308402 +109621,8873,adventure,1137308246 +109621,26662,anime,1137308645 +109621,26662,Hayao Miyazaki,1137308645 +109621,26776,anime,1137308658 +109621,26776,Hayao Miyazaki,1137308658 +109621,31658,anime,1137308668 +109621,31658,Hayao Miyazaki,1137308668 +109631,3983,slow,1138561759 +109631,6947,sailing,1138561751 +109631,33660,netflixq,1138561832 +109643,318,crime,1430330492 +109643,318,drama,1430330492 +109643,318,stephen king,1430330492 +109643,6281,Colin Farrell,1430330289 +109659,260,Carrie Fisher,1433517277 +109659,260,Harrison Ford,1433517268 +109659,260,Mark Hamill,1433517281 +109659,260,Science Fiction,1433517257 +109660,260,luke skywalker,1430947321 +109660,260,Star Wars,1430947308 +109660,356,fruit company,1430948203 +109660,356,run,1430948203 +109660,356,tom hanks,1430948203 +109661,5992,Meryl Streep,1244423926 +109661,5992,Nicole Kidman,1244423929 +109661,5992,sad,1244423936 +109661,70286,cgi,1266682208 +109661,70286,intelligent sci-fi,1266682201 +109661,71535,Bill Murray,1266682275 +109661,71535,zombies,1266682279 +109661,72737,animation,1266682138 +109661,72998,graphic design,1266681971 +109661,72998,predictable,1266681973 +109671,260,Harrison Ford,1439799950 +109671,260,sci-fi,1439799942 +109687,111,dark,1425167668 +109687,111,disturbing,1425167676 +109687,111,grim,1425167682 +109687,111,psychology,1425167599 +109687,111,psychopath,1425167663 +109687,111,robert de niro,1425167654 +109687,111,social commentary,1425167667 +109687,296,good songs,1425166233 +109687,296,no moral,1425166233 +109687,296,random,1425166233 +109687,903,disturbing,1425165954 +109687,903,obsession,1425165947 +109687,903,paranoid,1425165945 +109687,908,witty,1425166510 +109687,1196,fantasy,1425166294 +109687,1203,confrontational,1425165760 +109687,1203,good dialogue,1425165738 +109687,1203,gritty,1425167831 +109687,1203,group psychology,1425167818 +109687,1203,social commentary,1425167836 +109687,1203,thought-provoking,1425165751 +109687,1237,atmospheric,1425165921 +109687,1237,cerebral,1425165854 +109687,1237,chess,1425165856 +109687,1237,dreamlike,1425165858 +109687,1237,existentialism,1425165871 +109687,1237,Ingmar Bergman,1425165860 +109687,1237,reflective,1425165917 +109687,1252,Exceptional Acting,1425167783 +109687,1921,cerebral,1425167895 +109687,1921,enigmatic,1425167883 +109687,1921,hallucinatory,1425167873 +109687,1921,insanity,1425167898 +109687,1921,mathematics,1425167877 +109687,1921,mindfuck,1425167881 +109687,1921,music,1425167891 +109687,1921,psychology,1425167887 +109687,1921,surreal,1425167893 +109687,3504,Sidney Lumet,1425165809 +109687,3730,character study,1425165997 +109687,3730,psychological,1425165993 +109687,4995,biography,1425167942 +109694,150,dislike tom hanks,1139261031 +109694,5316,British,1140571414 +109694,34405,Joss Whedon,1140571446 +109694,35957,non-bloody thriller,1139261013 +109704,1625,lame ending,1336039680 +109706,260,Cult,1439912512 +109706,260,space opera,1439912297 +109714,260,classic sci-fi,1439797080 +109714,260,Cult,1439797095 +109715,260,Science Fiction,1435581135 +109715,260,space action,1435581132 +109731,356,comdey,1427015844 +109731,356,retarded,1427015844 +109731,356,tom hanks,1427015844 +109750,7153,fantasy,1430230926 +109766,73881,friendship,1429867648 +109790,2370,Jungle,1159844852 +109821,5952,Adventure,1428055175 +109821,5952,fantasy,1428055119 +109821,5952,magic,1428055136 +109823,1964,Jane Fonda,1274968317 +109823,2739,lesbian,1273171873 +109823,2739,Steven Spielberg,1273171901 +109823,2940,adultery,1268426749 +109823,2940,murder,1268426716 +109823,2940,noir,1268426735 +109823,2940,Rita Hayworth,1268426729 +109823,2940,sexual tension,1268426754 +109823,6214,graphic violence,1274633041 +109823,6214,hard to watch,1274633036 +109823,6214,reverse timeline,1274633025 +109823,25773,AFI 100 (Movie Quotes),1268427570 +109823,25773,Edward G. Robinson,1268427573 +109823,25773,National Film Registry,1268427568 +109823,34143,remake,1274633076 +109823,57534,remake,1274632987 +109823,59715,remake,1274632796 +109823,76251,Chloe Moretz,1291632527 +109852,1356,Patrick Stewart,1290929030 +109852,1356,Star Trek,1290929030 +109852,1356,time travel,1290929030 +109852,8914,accurate,1290928951 +109852,8914,clever,1290928951 +109852,8914,intellectual,1290928951 +109852,8914,sci-fi,1290928951 +109852,8914,time travel,1290928951 +109852,9010,beautiful color,1290926354 +109852,9010,excellent cinematography,1290926354 +109852,9010,fantastical imagery,1290926354 +109852,9010,French,1290926354 +109852,9010,Guillaume Canet,1290926353 +109852,9010,Marion Cotillard,1290926354 +109852,34405,black comedy,1290929088 +109852,34405,cult film,1290929088 +109852,34405,dystopia,1290929088 +109852,34405,Joss Whedon,1290929088 +109852,34405,quirky,1290929087 +109852,34405,sci-fi,1290929088 +109852,48394,atmospheric,1290926001 +109852,48394,bittersweet,1290926001 +109852,48394,fairy tale,1290926000 +109852,48394,fantasy,1290926000 +109852,48394,history,1290926000 +109852,48394,imagination,1290926000 +109852,48394,social commentary,1290926000 +109852,48394,stylized,1290926000 +109852,48394,surreal,1290926000 +109852,48394,violence,1290926016 +109852,52328,cinematography,1290929160 +109852,52328,Danny Boyle,1290929160 +109852,52328,isolation,1290929160 +109852,52328,madness,1290929160 +109852,52328,psychology,1290929160 +109852,52328,soundtrack,1290929160 +109852,52328,space,1290929160 +109852,52885,accurate,1290925557 +109852,52885,dreamlike,1290925557 +109852,52885,philosophical,1290925557 +109852,52885,psychedelic,1290925557 +109852,57504,anime,1290928924 +109852,57504,time travel,1290928924 +109852,68358,alternate reality,1290929004 +109852,68358,sci-fi,1290929004 +109852,68358,Star Trek,1290929004 +109852,68358,time travel,1290929004 +109852,70286,intelligent,1290929125 +109852,70286,intelligent sci-fi,1290929126 +109852,70286,sci-fi,1290929125 +109852,70286,social commentary,1290929125 +109852,79824,cinematography,1290927837 +109852,79824,not enough emphasis on babies,1290927828 +109893,85131,Aaron Eckhart,1310101811 +109903,249,gary oldman,1149147192 +109903,253,vampire,1149147266 +109903,293,gary oldman,1149147221 +109903,1339,gary oldman,1149147246 +109903,2845,wanna-be gangters,1149637452 +109903,3677,no dialogue,1149562847 +109903,3910,made me cry,1149662323 +109903,5072,lame anime,1149146169 +109903,5690,made me cry,1149662279 +109903,6773,awesome music,1149562885 +109903,7132,witty!,1149034591 +109903,8188,Not available from Netflix,1150671440 +109903,8542,witty!,1149034633 +109903,27838,made me cry,1149662233 +109903,30707,made me cry,1149662355 +109903,31184,lame anime,1149146137 +109903,37733,overrated,1149037414 +109916,2628,sci-fi,1222219773 +109959,260,exciting,1442068382 +109959,260,oldie but goodie,1442068404 +109965,260,sci-fi,1430554903 +109965,260,space,1430554926 +109990,4427,Peter O'Toole,1255244477 +109990,70410,CIA,1267672077 +110019,79692,iceland,1444392716 +110020,260,classic sci-fi,1441988149 +110020,260,good vs evil,1441988168 +110020,260,space western,1441988207 +110020,260,spaceships,1441988189 +110035,260,classic sci-fi,1439961004 +110035,36529,arms dealer,1439961101 +110035,36529,based on a true story,1439961108 +110035,36529,cold war,1439961117 +110035,36529,dark comedy,1439961104 +110035,36529,Favorite movie,1439961089 +110035,36529,gun smuggling,1439961128 +110035,36529,guns,1439961110 +110035,36529,narrated,1439961112 +110035,36529,Nicolas Cage,1439961097 +110035,36529,Nudity (Topless),1439961122 +110035,36529,organized crime,1439961125 +110035,36529,war,1439961115 +110035,36529,weapons,1439961131 +110036,260,Cool,1439779905 +110036,260,love it,1439779911 +110051,74458,clever,1379513769 +110075,318,emotional,1423412013 +110075,318,prison escape,1423412013 +110075,318,victim,1423412013 +110075,116797,Alan Turing,1423913357 +110075,116797,based on a book,1423913390 +110075,116797,Benedict Cumberbatch,1423913373 +110075,116797,computers,1423913360 +110075,116797,Keira Knightley,1423913399 +110075,116797,World War II,1423913384 +110084,170,awesome soundtrack,1386617604 +110084,170,cheesy,1386617623 +110084,170,computer cracker,1386617597 +110084,170,computers,1386617616 +110084,170,cult film,1386617595 +110084,170,cyberpunk,1386617606 +110084,170,geek,1386617609 +110084,170,geeks,1386617607 +110084,170,hackers,1386617599 +110084,170,hacking,1386617602 +110084,170,internet,1386617612 +110084,1221,complex characters,1386617678 +110084,1221,dysfunctional family,1386617680 +110084,1221,great acting,1386617682 +110084,1221,organized crime,1386617670 +110084,1221,Oscar (Best Directing),1386617685 +110084,1221,Oscar (Best Picture),1386617686 +110084,1221,psychology,1386617689 +110084,1258,atmospheric,1382451970 +110084,1258,classic,1382451972 +110084,1258,dark,1382451975 +110084,1258,dreamlike,1382451977 +110084,1258,mental illness,1382451967 +110084,1258,psychological,1382451962 +110084,1258,psychology,1382451964 +110084,1258,Stanley Kubrick,1382451989 +110084,1258,suspense,1382451986 +110084,1653,atmospheric,1382451886 +110084,1653,beautiful,1382451888 +110084,1653,drama,1382451890 +110084,1653,inspirational,1382451892 +110084,1653,powerful ending,1382451880 +110084,1653,thought-provoking,1382451919 +110084,1653,visually appealing,1382451894 +110084,1729,conspiracy,1386617498 +110084,1729,dark comedy,1386617502 +110084,1729,gritty,1386617508 +110084,1729,Jack Nicholson,1386617496 +110084,1729,Quentin Tarantino,1386617490 +110084,1729,Robert De Niro,1386617494 +110084,1729,Samuel L. Jackson,1386617493 +110084,1729,Tarantino,1386617491 +110084,1729,tense,1386617510 +110084,2023,corruption,1386617647 +110084,2023,drama,1386617645 +110084,2023,Francis Ford Coppola,1386617637 +110084,2023,mafia,1386617639 +110084,2023,organized crime,1386617642 +110084,2023,politics,1386617655 +110084,2023,stylized,1386617657 +110084,3535,black comedy,1386618058 +110084,3535,business,1386618063 +110084,3535,Christian Bale,1386618038 +110084,3535,humorous,1386618040 +110084,3535,psychological,1386618045 +110084,3535,psychology,1386618037 +110084,3581,90s club culture,1386849643 +110084,3581,funny,1386849650 +110084,3581,great soundtrack,1386849647 +110084,3790,americans...,1386867367 +110084,3790,cheesy,1386866542 +110084,3790,faggots,1386866480 +110084,3790,fake,1386866524 +110084,3790,music,1386866487 +110084,3790,rave,1386866485 +110084,3790,that chinese kid,1386867506 +110084,3790,underground,1386866493 +110084,3790,warehouse,1386866634 +110084,3949,atmospheric,1388277060 +110084,3949,dark,1388277063 +110084,3949,depressing,1388277053 +110084,3949,disturbing,1388277054 +110084,3949,emotional,1388277061 +110084,3949,psychological,1388277068 +110084,3949,social commentary,1388277056 +110084,5508,archive footage,1386687935 +110084,5508,Manchester,1386849276 +110084,5508,music business,1386687952 +110084,5508,musicians,1386687940 +110084,5508,punk rock,1386687908 +110084,5508,rock and roll,1386687909 +110084,5508,true story,1386849287 +110084,5888,action,1386618028 +110084,5888,brothers,1386618015 +110084,5888,crime,1386618017 +110084,5888,Russian,1386618023 +110084,5888,Saint Petersburg,1386618020 +110084,5888,violence,1386618024 +110084,27856,bmw,1428348466 +110084,27856,complex morality,1428348466 +110084,27856,friendship,1428348466 +110084,27856,roadmovie,1428348466 +110084,27856,russia 1990,1428348466 +110084,27856,slavic,1428348466 +110084,32587,atmospheric,1386617461 +110084,32587,multiple storylines,1386617463 +110084,32587,Quentin Tarantino,1386617460 +110084,32587,revenge,1386617469 +110084,32587,stylized,1386617465 +110084,32587,surrealism,1386617467 +110084,33725,cameos,1386617435 +110084,33725,mockumentary,1386617404 +110084,33725,music business,1386617410 +110084,33725,musicians,1386617412 +110084,33725,setting:Ibiza (Spain),1386617397 +110084,33725,strong romantic subplot,1386850187 +110084,37386,atmospheric,1386618098 +110084,37386,cinematography,1386618101 +110084,37386,cloning,1386618099 +110084,37386,dystopia,1386618077 +110084,37386,genetics,1386618079 +110084,37386,Post apocalyptic,1386618085 +110084,37386,post-apocalyptic,1386618084 +110084,37386,revolution,1386618103 +110084,37386,sci-fi,1386618087 +110084,37386,Science Fiction,1386618089 +110084,37386,stylized,1386618090 +110084,37386,visually appealing,1386618093 +110084,55908,Excellent use of dialogue,1387030589 +110084,55908,intellectual,1387030591 +110084,55908,philosophical,1387030595 +110084,55908,psychological,1387030607 +110084,55908,thought-provoking,1387030593 +110084,55908,Underrated,1387030604 +110084,55908,unique,1387030594 +110084,67255,cinematography,1386617710 +110084,67255,dark,1386617706 +110084,67255,hackers,1386617703 +110084,67255,investigation,1386617712 +110084,67255,suspense,1386617705 +110084,68157,black comedy,1386617570 +110084,68157,dark comedy,1386617574 +110084,68157,great soundtrack,1386617576 +110084,68157,Nazis,1386617569 +110084,68157,Quentin Tarantino,1386617556 +110084,68157,revenge,1386617583 +110084,68157,satire,1386617567 +110084,68157,twist ending,1386617579 +110084,68157,visually appealing,1386617565 +110084,68157,World War II,1386617566 +110084,68237,artificial intelligence,1386617530 +110084,68237,dark,1386617534 +110084,68237,depressing,1386617535 +110084,68237,drama,1386617537 +110084,68237,dystopia,1386617519 +110084,68237,future,1386617539 +110084,68237,melancholy,1386617542 +110084,68237,mindfuck,1386617541 +110084,68237,psychological,1386617528 +110084,68237,psychology,1386617521 +110084,68237,science,1386617526 +110084,68237,space,1386617524 +110084,68237,thought-provoking,1386617527 +110084,68237,twist ending,1386617523 +110084,73344,cinematography,1401271670 +110084,73344,Complicated plot,1401271672 +110084,73344,great acting,1401271675 +110084,73344,Great actors,1401271677 +110084,73344,gritty,1401271679 +110084,73344,mafia,1401271681 +110084,73344,Psychology,1401271685 +110084,81562,adventure,1386618133 +110084,81562,drama,1386618135 +110084,81562,intense,1386618137 +110084,81562,nature,1386618132 +110084,81562,psychology,1386618129 +110084,81562,survival,1386618138 +110084,81562,survival horror,1386618140 +110084,81562,true story,1386618120 +110084,81562,villain nonexistent or not needed for good story,1386618128 +110084,82461,alternate reality,1386618174 +110084,82461,artificial intelligence,1386618178 +110084,82461,atmospheric,1386618180 +110084,82461,computers,1386618185 +110084,82461,cyberpunk,1386618181 +110084,82461,dystopia,1386618183 +110084,82461,futuristic,1386618158 +110084,82461,music,1386618159 +110084,82461,philosophy,1386618186 +110084,82461,political,1386618187 +110084,82461,video games,1386618161 +110084,82461,virtual reality,1386618167 +110084,82461,visually appealing,1386618165 +110084,84844,brothers,1386617987 +110084,84844,drama,1386617989 +110084,84844,mafia,1386617991 +110084,84844,quotable,1386617992 +110084,84844,revenge,1386617997 +110084,84844,soundtrack,1386617999 +110084,86947,dark,1422046574 +110084,86947,forest,1422046574 +110084,86947,too much walking,1422046574 +110084,90405,dystopia,1386677413 +110084,90405,future,1386677428 +110084,90405,immortality,1386677415 +110084,90405,justice,1386677433 +110084,90405,police corruption,1386677439 +110084,90405,reflective,1386677421 +110084,90405,suspense,1386677437 +110084,90405,thought-provoking,1386677419 +110084,90405,tries too hard,1386677424 +110084,97752,atmospheric,1387050184 +110084,97752,dystopia,1387050193 +110084,97752,multiple storylines,1387050185 +110084,97752,philosophy,1387050190 +110084,97752,thought-provoking,1387050188 +110084,97752,visually appealing,1387050187 +110084,99695,dealer,1432744800 +110084,99695,drugs,1432744800 +110084,99695,money,1432744800 +110084,103253,cyborgs,1386617783 +110084,103253,dystopia,1386617754 +110084,103253,future,1386617757 +110084,103253,great cast,1386617800 +110084,103253,medicine,1386617761 +110084,103253,military,1386617764 +110084,103253,Slums,1386617771 +110084,103253,social commentary,1386617773 +110084,103253,visually stunning,1386617768 +110084,103727,Dark,1386617863 +110084,103727,Future,1386617844 +110084,103727,Hordes of cannibals,1386617878 +110084,103727,Ice Age,1386617939 +110084,103727,Sci-Fi,1386617860 +110084,103727,tension,1386617972 +110084,104841,bad science,1388276976 +110084,104841,cheesy,1388277005 +110084,104841,cliche characters,1388276980 +110084,104841,overrated,1388276978 +110084,107617,bordeaux,1388314024 +110084,107617,china,1388314061 +110084,107617,history,1419975425 +110084,107617,obsession,1388314036 +110084,107617,wine,1388313992 +110093,26139,Nudity (Topless - Brief),1218240032 +110102,2321,heartwarming,1376659440 +110102,8531,Comedy,1402210767 +110102,8531,funny,1402210767 +110102,37720,Exceptional Acting,1396274550 +110102,37720,Exorcism,1396274550 +110102,37720,occult,1396274550 +110102,37720,possession,1396274564 +110102,37720,priest,1396274550 +110102,37729,animation,1365089944 +110102,37729,black comedy,1365089944 +110102,37729,ghosts,1365089944 +110102,37729,Johnny Depp,1365089944 +110102,37729,Tim Burton,1365089944 +110102,44974,The suspense and round characters and amazing acting and the interesting plot line,1363277212 +110102,55830,creativity,1398695124 +110102,55830,Funny,1398695124 +110102,55830,heartwarming,1398695124 +110102,55830,Jack Black,1398695124 +110102,55830,quirky,1398695124 +110102,56367,comedy,1375340793 +110102,56367,Ellen Page,1375340793 +110102,56367,great soundtrack,1375340793 +110102,56367,hilarious,1375340793 +110102,56367,quirky,1375340793 +110102,56367,witty,1375340793 +110102,57669,black comedy,1402758868 +110102,57669,british comedy,1402758868 +110102,57669,comedy,1402758868 +110102,57669,dark comedy,1402758868 +110102,57669,friendship,1402758868 +110102,69275,awesome,1368304724 +110102,69275,gore,1368304724 +110102,69275,horror comedy,1368304724 +110102,69275,Nazi zombies,1368304724 +110102,69275,Nazis,1368304724 +110102,69275,Norwegian,1368304736 +110102,69275,scary,1368304724 +110102,69275,zombies,1368304724 +110102,81564,comedy,1401470000 +110102,81564,funny,1401470000 +110102,81564,witty,1401470001 +110102,87192,awesome soundtrack,1363277591 +110102,87192,great acting,1363277591 +110102,87192,intense and realistic and funny and exciting,1363277591 +110102,96281,clever,1365089604 +110102,96281,funny,1365089604 +110102,96281,scary,1365089604 +110102,97938,visually appealing,1374356995 +110102,98279,Funny,1398540094 +110102,99007,comedic horror,1366718250 +110102,99007,Cured by love,1366718250 +110102,99007,funny,1366718250 +110102,99007,sweet,1366718249 +110102,99007,well plotted,1366718269 +110102,99007,zombies,1366718250 +110102,99117,funny,1400517458 +110102,99296,realistic,1368389185 +110102,99296,Sad ending,1368389185 +110102,99296,scary,1368389185 +110102,99296,suspensful,1368389185 +110102,99437,quotable,1375449732 +110102,99787,Hilarious,1371377032 +110102,99787,some funny parts,1371377032 +110102,99912,scary,1365362090 +110102,99912,suspensful,1365362090 +110102,99912,Tense,1365362090 +110102,100507,funny,1393856040 +110102,101283,funny,1374527667 +110102,101283,Jim Carrey,1374527676 +110102,101283,stage magic,1374527667 +110102,101997,50 shades of gray,1374146159 +110102,101997,Black Swan,1374146159 +110102,101997,Charlie Sheen,1374146207 +110102,101997,Charlie Sheen¨,1374146188 +110102,101997,Funny,1374146173 +110102,101997,Inception,1374146159 +110102,101997,Mama,1374146159 +110102,102903,deception,1375035921 +110102,102903,Four Horsemen,1375035921 +110102,102903,good music,1375035921 +110102,102903,illusions,1375035921 +110102,102903,Morgan Freemanm magic,1375035921 +110102,103137,Emma Watson,1374315696 +110102,103372,funny,1393707095 +110102,103372,Sandra Bullock,1393707115 +110102,103384,exciting,1373405807 +110102,103384,Funny,1373405807 +110102,103384,Johnny Depp,1373405786 +110102,103384,suspense,1373405807 +110102,103384,Western,1373405807 +110102,103688,Horror,1395087743 +110102,103688,scary,1395087743 +110102,103688,suspensful,1395087743 +110102,103688,tense,1395087743 +110102,107348,Funny,1398631016 +110102,109720,Good makeup,1414787740 +110102,109720,great acting,1414787741 +110106,2571,computers,1443998238 +110106,2571,fight scenes,1443998248 +110106,2571,hackers,1443998233 +110106,2571,martial arts,1443998244 +110106,79132,clever,1443998186 +110106,79132,mindfuck,1443998191 +110106,79132,multiple interpretations,1443998181 +110119,48,Cartoon,1147806539 +110119,48,Disney,1147806537 +110119,2353,exciting,1147806534 +110119,2353,Will Smith,1147806530 +110125,1,Pixar,1292956344 +110125,47,psychology,1292956276 +110125,47,twist ending,1292956362 +110125,296,dark comedy,1292956439 +110125,296,Quentin Tarantino,1292956435 +110125,778,dark comedy,1292956194 +110125,1089,organized crime,1292956420 +110125,1089,Quentin Tarantino,1292956416 +110125,2542,dark comedy,1292956446 +110125,2542,Guy Ritchie,1292956448 +110125,2542,organized crime,1292956450 +110125,2692,nonlinear,1292956226 +110125,2692,time travel,1292956392 +110125,2959,dark comedy,1292956481 +110125,2959,psychology,1292956476 +110125,2959,twist ending,1292956479 +110125,3114,animation,1292956346 +110125,3949,addiction,1292956422 +110125,3949,psychology,1292956425 +110125,4011,Guy Ritchie,1292956203 +110125,4011,twist ending,1292956205 +110125,5608,psychology,1292956490 +110125,6016,multiple storylines,1292956518 +110125,40148,guy ritchie,1292956408 +110125,47099,based on a true story,1292956431 +110125,60072,assassin,1292956189 +110125,62849,Drugs,1292956230 +110125,62849,Guy Ritchie,1292956234 +110125,62849,twist ending,1292956236 +110125,68157,Quentin Tarantino,1292956453 +110125,74458,psychological,1292956215 +110125,74458,twist ending,1292956212 +110125,77455,renegade art,1292956306 +110125,78499,Pixar,1292956196 +110125,79132,alternate reality,1292956469 +110133,520,ok type historical comedy,1139799044 +110133,1203,one of the best i've seen,1139799012 +110133,1222,vietnam war based movie,1139798942 +110133,27808,interesting tale of immigrants in the US,1139798928 +110181,27831,guy ritchie,1153272353 +110181,40148,guy ritchie,1153272385 +110182,364,beautiful music,1432593092 +110182,364,soundtrack,1432593059 +110182,902,audrey hepburn,1432592448 +110182,902,beautiful music,1432592510 +110182,902,elegant,1432592565 +110182,2687,good soundtrack,1432593228 +110182,5389,beautiful music,1432594411 +110182,6874,assassin,1432592781 +110182,6874,beautiful music,1432592795 +110182,7143,Japan,1432591663 +110182,7143,Japanese culture,1432591672 +110182,8666,Halle Berry,1445455747 +110182,8983,Beautiful,1432591427 +110182,8983,beautiful music,1432592353 +110182,8983,Takeshi Kaneshiro,1432592154 +110182,30816,Musical,1445455278 +110182,41571,beautiful music,1432592991 +110182,41571,Japan,1432592867 +110182,41571,Japanese culture,1432592861 +110182,68486,Takeshi Kaneshiro,1432592194 +110182,106489,too long,1432594882 +110212,75341,romance,1373748860 +110212,75341,sad ending,1373748846 +110212,86644,Mix of action and Romance,1373748425 +110212,94325,Romance! Happy ending,1373748603 +110212,102445,Romance,1373852237 +110226,1176,Quite Romantic,1169434781 +110232,27899,new age,1225521812 +110232,27899,psudoscience,1225522325 +110232,49817,dogs,1225522749 +110232,49817,sad but good,1256673212 +110232,61350,based on a book,1256673209 +110232,61350,sci-fi,1256673210 +110232,71304,horror,1259434562 +110258,32,atmospheric,1346135635 +110258,32,post-apocalyptic,1346135628 +110258,32,twist ending,1346135637 +110258,47,Brad Pitt,1343330798 +110258,47,disturbing,1343330814 +110258,47,Morgan Freeman,1343330799 +110258,47,powerful ending,1343330812 +110258,47,religion,1343330806 +110258,70,cult film,1344943545 +110258,70,Quentin Tarantino,1344943535 +110258,70,so bad it's good,1344943540 +110258,70,splatter,1344943537 +110258,110,medieval,1343332862 +110258,110,Oscar (Best Cinematography),1343332866 +110258,110,Oscar (Best Picture),1343332867 +110258,296,Black comedy,1343329413 +110258,296,imdb top 250,1343329425 +110258,296,multiple storylines,1343329416 +110258,296,nonlinear,1343329419 +110258,353,bittersweet,1343330259 +110258,353,cult film,1343330267 +110258,353,film noir,1343330262 +110258,353,gothic,1343330265 +110258,353,halloween,1343330272 +110258,353,rock and roll,1343330273 +110258,457,paranoid,1393057382 +110258,457,thriller,1393057374 +110258,457,Tommy Lee Jones,1393057378 +110258,480,dinosaurs,1343330880 +110258,480,sci-fi,1343330892 +110258,541,cyberpunk,1343827593 +110258,541,Harrison Ford,1343827596 +110258,541,Philip K. Dick,1343827605 +110258,780,alien invasion,1344772263 +110258,780,sci-fi,1344772271 +110258,924,artificial intelligence,1343827579 +110258,924,atmospheric,1343827575 +110258,924,philosophical,1343827581 +110258,924,sci-fi,1343827584 +110258,1036,action,1343827502 +110258,1036,christmas,1343827506 +110258,1036,humorous,1343827512 +110258,1198,indiana jones,1343329542 +110258,1214,aliens,1343329617 +110258,1214,atmospheric,1343329612 +110258,1214,dark,1343329614 +110258,1214,Oscar (Best Effects - Visual Effects),1343329622 +110258,1237,atmospheric,1343330037 +110258,1237,Death,1343330039 +110258,1237,dreamlike,1343330048 +110258,1237,existentialism,1343330051 +110258,1237,Ingmar Bergman,1343330045 +110258,1237,Swedish,1343330044 +110258,1240,Arnold Schwarzenegger,1343416154 +110258,1240,artificial intelligence,1343416159 +110258,1240,romance,1343416162 +110258,1240,sci-fi,1343416150 +110258,1275,cult movie,1343331010 +110258,1275,immortality,1343331002 +110258,1275,original plot,1343331005 +110258,1275,Sean Connery,1343331017 +110258,1291,Harrison Ford,1343330926 +110258,1291,indiana jones,1343330921 +110258,1291,Sean Connery,1343330922 +110258,1580,buddy movie,1343330754 +110258,1580,parody,1343330760 +110258,1580,sci-fi,1343330774 +110258,1580,Tommy Lee Jones,1343330747 +110258,1580,Will Smith,1343330748 +110258,1687,assassination,1344930354 +110258,1687,hitman,1344930359 +110258,1917,Bad Science,1346009075 +110258,2115,india,1343330988 +110258,2115,Indiana Jones,1343330958 +110258,2288,Kurt Russell,1343329650 +110258,2288,Lovecraftian mythology,1343329641 +110258,2288,paranoia,1343329647 +110258,2716,comedy,1343333535 +110258,2716,ghosts,1343333539 +110258,2716,New York City,1343333540 +110258,2716,occult technology,1343333552 +110258,2716,paranormal,1343333537 +110258,2716,Sigourney Weaver,1343333549 +110258,2826,Beowulf,1343333481 +110258,2826,fantasy,1343333478 +110258,2826,Myth,1343333491 +110258,3300,anti-hero,1357143805 +110258,3300,atmospheric,1357143809 +110258,3300,good concept,1357143817 +110258,3300,sci-fi,1357143804 +110258,3527,action,1343827547 +110258,3527,Arnold Schwarzenegger,1343827528 +110258,3527,dialogue,1343827540 +110258,3527,predator,1343827533 +110258,3527,scifi cult,1343827530 +110258,3740,campy,1343329675 +110258,3740,Kurt Russell,1343329673 +110258,3740,surreal,1343329681 +110258,4343,ridiculous,1347198204 +110258,4963,ensemble cast,1343416188 +110258,4963,George Clooney,1343416189 +110258,4993,adventure,1343332797 +110258,4993,beautifully filmed,1343332799 +110258,4993,high fantasy,1343332794 +110258,5219,Milla Jovovich,1344753776 +110258,5219,zombies,1344753771 +110258,5608,based on a true story,1343330231 +110258,5608,German,1343330235 +110258,5608,mass behavior,1343330221 +110258,5608,psychology,1343330223 +110258,5952,high fantasy,1343332813 +110258,5952,mythology,1343332818 +110258,6264,bad science,1346008999 +110258,6264,so bad it's funny,1346009014 +110258,6264,stopped watching,1346009006 +110258,6264,stupid plot,1346009002 +110258,6264,unrealistic,1346009008 +110258,6264,Whales!,1346009011 +110258,6502,post-apocalyptic,1344753608 +110258,6502,Zombie,1344753603 +110258,6539,action,1393057469 +110258,6539,adventure,1393057478 +110258,6539,comedy,1393057481 +110258,6539,pirates,1393057485 +110258,6874,violent,1344757356 +110258,7153,high fantasy,1343332834 +110258,7153,mythology,1343332838 +110258,7454,atmospheric,1344700065 +110258,7454,gothic,1344700054 +110258,7454,Kate Beckinsale,1344700052 +110258,7454,vampires,1344700062 +110258,7454,werewolves,1344700063 +110258,8810,disappointing,1343332704 +110258,8810,dull,1343332706 +110258,8810,inconsistent,1343332708 +110258,26554,alone in the world,1345055863 +110258,26554,based on a book,1345055874 +110258,26554,Isolation,1345055869 +110258,26554,last man on earth,1345055865 +110258,26554,Post Apocalypse,1345055863 +110258,27773,depressing,1343330832 +110258,27773,disturbing,1343330835 +110258,27773,stylized,1343330838 +110258,31952,dark comedy,1346006041 +110258,31952,dreams,1346006045 +110258,31952,surrealism,1346006047 +110258,31952,symbolism,1346006051 +110258,32587,atmospheric,1344757374 +110258,32587,multiple storylines,1344757377 +110258,32587,stylized,1344757379 +110258,32587,surrealism,1344757386 +110258,34405,black comedy,1346135539 +110258,34405,dystopia,1346135537 +110258,34405,sci-fi,1346135542 +110258,48774,apocalypse,1343827614 +110258,48774,atmospheric,1343827619 +110258,49530,Africa,1344966847 +110258,49530,Civil War,1344966839 +110258,49530,corruption,1344966841 +110258,49530,Leonardo DiCaprio,1344966845 +110258,49530,smuggling,1344966843 +110258,51662,amazing photography,1343329491 +110258,51662,atmospheric,1343329482 +110258,53996,teen,1346135374 +110258,55721,Favelas,1343329333 +110258,55721,special police forces,1343329342 +110258,55721,urban violence,1343329345 +110258,57274,atmospheric,1343333207 +110258,57274,Handycam,1343333218 +110258,57274,isolation,1343333216 +110258,59129,Nazi's,1344754007 +110258,59129,zombies,1344754007 +110258,61692,not original,1343330143 +110258,65045,aliens,1343330105 +110258,65045,low budget,1343330098 +110258,65045,supermarket,1343330107 +110258,72171,blaxploitation,1344967084 +110258,72171,Doesn't take itself seriously,1344967090 +110258,72171,parody,1344967086 +110258,72378,bad science,1346009037 +110258,72378,predictable,1346009040 +110258,72378,stupid,1346009043 +110258,72787,black comedy,1346180223 +110258,73321,Bible,1344949460 +110258,73321,books,1344949492 +110258,73321,Christianity,1344949464 +110258,73321,dystopia,1344949469 +110258,73321,dystopic future,1344949472 +110258,73321,plot holes,1344949466 +110258,73321,post-apocalyptic,1344949480 +110258,74458,insanity,1452896517 +110258,74458,mindfuck,1452896494 +110258,74458,psychological,1452896481 +110258,74458,twist ending,1452896488 +110258,79695,acting,1344967292 +110258,79695,violence,1344967299 +110258,80162,zombies,1344699684 +110258,80219,black comedy,1344966810 +110258,80219,dark humor,1344966818 +110258,80219,Robert Rodriguez,1344966813 +110258,85342,drug cartels,1344966884 +110258,85412,mythology,1344753396 +110258,87232,adapted from:comic,1345405592 +110258,87520,audience intelligence underestimated,1346135493 +110258,87520,bad science,1346135508 +110258,87520,childish plot,1346135496 +110258,87520,dialogue,1346135498 +110258,87520,story,1346135503 +110258,88744,computer animation,1345131030 +110258,88744,Plot holes,1345131023 +110258,88744,special effects,1345131035 +110258,89190,audience intelligence underestimated,1343329821 +110258,89190,crappy remake,1343329779 +110258,89190,hard to watch,1343329794 +110258,89190,Jason Momoa,1343329804 +110258,89190,Smirk,1343329797 +110258,90888,stylized,1343329754 +110258,94864,aliens,1343329591 +110258,94864,boring,1343329565 +110258,94864,character motivation,1343329571 +110258,94864,predictable,1343329578 +110258,94864,prequel,1343329596 +110258,94864,sequel bait,1343329582 +110258,97938,cinematography,1410000784 +110258,97938,great photograpy,1410000785 +110258,97938,surreal,1410000789 +110258,97938,visually appealing,1410000787 +110258,103228,aliens,1393057856 +110258,103228,giant monster,1393057931 +110258,103228,giant robots,1393057878 +110258,122882,post apocalypse,1439553629 +110258,134170,8o's,1439477339 +110258,134170,parody,1439477334 +110258,138036,humour,1452712861 +110258,138036,spy,1452712856 +110258,138036,stylish,1452712865 +110259,356,amazing storytelling,1436599006 +110259,356,feel-good,1436599006 +110259,356,great performances,1436599006 +110264,94752,inspirational,1420272292 +110264,94752,love,1420272292 +110264,94752,real life,1420272292 +110286,1295,based on a book,1273921851 +110286,1295,Romantic and sweet,1271177703 +110286,2959,cool plot,1271177790 +110286,2959,passion,1271177790 +110286,60069,funny,1271177744 +110286,60069,inspirational,1271177724 +110292,4636,Boring,1179615625 +110292,31522,Nudity (Rear),1167358607 +110308,21,forgetable,1362649062 +110308,29,atmospheric,1306529922 +110308,29,surreal,1306529932 +110308,32,mindfuck,1300515510 +110308,32,psychology,1295822762 +110308,32,social misfits,1295824370 +110308,32,twist ending,1300515750 +110308,50,twist ending,1296395549 +110308,104,Adam Sandler,1295883979 +110308,161,tense,1367435617 +110308,162,mental illness,1367435474 +110308,216,stupid,1367435606 +110308,288,dark comedy,1295822293 +110308,296,cult film,1295823257 +110308,296,dark comedy,1295948242 +110308,296,great soundtrack,1295823270 +110308,296,quirky,1295823263 +110308,337,bittersweet,1295948485 +110308,440,politics,1367430141 +110308,454,John Grisham,1295883706 +110308,454,Tom Cruise,1295883692 +110308,474,tense,1367430149 +110308,492,mystery,1367435483 +110308,508,injustice,1295831563 +110308,519,franchise,1367435440 +110308,522,violent,1367430158 +110308,539,cheesy,1295831118 +110308,539,kitsch,1295831126 +110308,539,Meg Ryan,1295831281 +110308,539,predictable,1295831094 +110308,597,cheesy,1295831321 +110308,597,predictable,1295831328 +110308,597,shopping,1295862415 +110308,611,franchise,1367435439 +110308,653,adventure,1325947407 +110308,653,fantasy,1325947417 +110308,674,bizarre,1295825708 +110308,674,cult film,1295825714 +110308,674,great soundtrack,1295825699 +110308,750,anti-war,1304847618 +110308,750,satire,1304847624 +110308,778,black comedy,1300987749 +110308,780,patriotic,1295828009 +110308,780,predictable,1295826453 +110308,780,shallow plot,1295829107 +110308,780,unimaginative,1295826562 +110308,780,Will Smith,1294922921 +110308,832,thriller,1367435633 +110308,858,organized crime,1295868040 +110308,920,kitsch,1295831224 +110308,920,unimaginative,1295862230 +110308,946,nazis,1367435498 +110308,1079,hilarious,1295948432 +110308,1079,quirky,1295948430 +110308,1079,silly,1295948436 +110308,1079,witty,1295948434 +110308,1080,controversial,1295867512 +110308,1080,satire,1295867523 +110308,1080,Terry Gilliam,1295867527 +110308,1080,whimsical,1295867525 +110308,1088,cheesy,1295832343 +110308,1088,Patrick Swayze,1295832338 +110308,1089,great soundtrack,1295823202 +110308,1092,controversial,1295867599 +110308,1092,Erotic,1295867612 +110308,1095,ensemble cast,1367435302 +110308,1172,bittersweet,1295948773 +110308,1172,censorship,1295948775 +110308,1172,heartwarming,1295948778 +110308,1175,black comedy,1300987334 +110308,1175,dystopia,1295822086 +110308,1175,quirky,1295822071 +110308,1199,FIGHTING THE SYSTEM,1295543484 +110308,1199,satire,1294923398 +110308,1199,surreal,1294923393 +110308,1199,thought-provoking,1294923395 +110308,1206,controversial,1295867342 +110308,1206,cult film,1295867345 +110308,1206,satire,1295867350 +110308,1206,surreal,1295867354 +110308,1235,cult film,1295948347 +110308,1235,heartwarming,1295948361 +110308,1235,quirky,1295948350 +110308,1258,atmospheric,1295819908 +110308,1258,disturbing,1295819905 +110308,1258,psychology,1295819956 +110308,1281,anti-war,1304847679 +110308,1281,satire,1304847687 +110308,1305,bittersweet,1391348596 +110308,1305,meditative,1391348598 +110308,1305,reflective,1391348607 +110308,1305,relationships,1391348604 +110308,1305,warm,1391348633 +110308,1355,original is better,1295867222 +110308,1380,musical,1306416568 +110308,1391,satire,1295824895 +110308,1464,atmospheric,1295984531 +110308,1464,David Lynch,1294923145 +110308,1464,disturbing,1294923151 +110308,1464,mindfuck,1300515820 +110308,1464,nonlinear,1353580320 +110308,1464,strange,1294923160 +110308,1464,Surreal,1294923162 +110308,1527,futuristic,1326896202 +110308,1527,humorous,1326896208 +110308,1527,satirical,1326896205 +110308,1527,stylized,1326896196 +110308,1527,surreal,1326896200 +110308,1584,beautiful,1402513357 +110308,1584,existentialism,1402513361 +110308,1584,idealism,1402513359 +110308,1584,inspirational,1402513354 +110308,1608,patriotic,1295832130 +110308,1619,Eastern philosophy,1296061850 +110308,1619,mountain climbing,1296061846 +110308,1619,mountains,1296061848 +110308,1619,scenic,1296061855 +110308,1620,thriller,1367430154 +110308,1653,dystopia,1295822440 +110308,1653,injustice,1327260786 +110308,1653,rebellion,1300515710 +110308,1676,satire,1294922824 +110308,1676,witty,1294922828 +110308,1729,great soundtrack,1295832464 +110308,1732,comedy,1300987396 +110308,1732,cult film,1295947656 +110308,1732,funny,1295947661 +110308,1732,great soundtrack,1295822196 +110308,1732,quirky,1295819492 +110308,1732,satirical,1300987389 +110308,1747,black comedy,1300987127 +110308,1747,conspiracy,1295822841 +110308,1747,politics,1295822823 +110308,1747,satire,1295822821 +110308,1784,Comedy,1295948819 +110308,1784,feel-good,1295948835 +110308,1784,psychology,1295948839 +110308,1831,surreal,1295818899 +110308,1833,autism,1306749345 +110308,1835,Meg Ryan,1295831456 +110308,1882,Roland Emmerich,1295891618 +110308,1884,cynical,1295825834 +110308,1884,drugs,1295825837 +110308,1884,great soundtrack,1295825849 +110308,1884,psychedelic,1295825841 +110308,1884,satirical,1295947885 +110308,1884,surreal,1295825861 +110308,1909,conspiracy,1295882865 +110308,1917,Ben Affleck,1294922967 +110308,1917,Michael Bay,1306772459 +110308,1917,patriotic,1295826642 +110308,1917,predictable,1295826616 +110308,1917,unimaginative,1295826623 +110308,1921,great soundtrack,1307785333 +110308,1921,mathematics,1307785339 +110308,1921,paranoia,1307785349 +110308,1921,psychology,1307785342 +110308,1921,religion,1307785356 +110308,1953,oscar (best cinematography),1367435529 +110308,1961,autism,1305881051 +110308,2010,classic,1296061468 +110308,2010,German expressionism,1296061478 +110308,2010,industrial progress,1296061477 +110308,2010,visionary,1296061472 +110308,2028,war,1296468578 +110308,2058,thriller,1367435634 +110308,2066,black and white,1367435036 +110308,2078,great soundtrack,1295824962 +110308,2124,quirky,1295883952 +110308,2240,high school,1367435459 +110308,2294,anti-war,1296062420 +110308,2296,stupid,1367430145 +110308,2315,franchise,1367435439 +110308,2321,satire,1294940463 +110308,2321,surreal,1294940467 +110308,2321,witty,1295948272 +110308,2359,feel-good,1295948513 +110308,2359,heartwarming,1295948531 +110308,2359,quirky,1295948522 +110308,2360,dialogue driven,1334828447 +110308,2360,dogme95,1295860143 +110308,2360,family,1295860214 +110308,2360,no soundtrack,1295882560 +110308,2387,dark comedy,1296061204 +110308,2395,bittersweet,1295948216 +110308,2395,off-beat comedy,1295948220 +110308,2395,quirky,1295948222 +110308,2395,witty,1295948225 +110308,2424,cheesy,1295831256 +110308,2424,cliche,1295830833 +110308,2424,kitsch,1295831266 +110308,2424,Meg Ryan,1295831270 +110308,2424,predictable,1295830853 +110308,2427,cinematography,1305231605 +110308,2427,meditative,1300987782 +110308,2427,nature,1300987800 +110308,2427,philosophical,1294940790 +110308,2427,war,1300987767 +110308,2431,inspirational,1367435465 +110308,2502,corporate America,1327337911 +110308,2502,great soundtrack,1327337931 +110308,2502,rebellion,1327337918 +110308,2502,satire,1327337920 +110308,2529,dystopia,1364835570 +110308,2529,satirical,1364835566 +110308,2529,social commentary,1364835563 +110308,2541,great soundtrack,1306766960 +110308,2542,dark comedy,1295825606 +110308,2542,great soundtrack,1295825614 +110308,2567,satirical,1295948755 +110308,2571,alternate reality,1295821681 +110308,2571,atmospheric,1295821686 +110308,2571,dystopia,1295821690 +110308,2571,philosophy,1353580418 +110308,2571,surreal,1295821698 +110308,2594,dreams,1295821506 +110308,2594,mindfuck,1294923059 +110308,2594,psychology,1295821495 +110308,2600,dreamlike,1295825167 +110308,2600,mindfuck,1295825142 +110308,2600,surreal,1295825152 +110308,2628,franchise,1295826806 +110308,2628,unimaginative,1295829403 +110308,2657,musical,1317060400 +110308,2657,Quirky,1317060419 +110308,2657,transgender,1317060425 +110308,2671,cheesy,1295831037 +110308,2671,kitsch,1295831137 +110308,2671,predictable,1295830958 +110308,2677,music,1296061146 +110308,2677,music documentary,1296061141 +110308,2677,musicians,1296061142 +110308,2692,humorous,1295947710 +110308,2692,original,1295819996 +110308,2692,surreal,1295819973 +110308,2692,thought-provoking,1295819975 +110308,2700,controversial,1295948128 +110308,2700,crude humor,1295948132 +110308,2700,funny,1295948138 +110308,2700,quirky,1295948142 +110308,2700,satire,1295948144 +110308,2706,Teen movie,1297880708 +110308,2819,conspiracy,1296061074 +110308,2819,intrigue,1296061080 +110308,2843,gypsy,1309478318 +110308,2843,quirky,1309478324 +110308,2843,upbeat,1309478326 +110308,2858,black comedy,1300987581 +110308,2858,burnout,1295882598 +110308,2858,satirical,1295819603 +110308,2858,social commentary,1295819607 +110308,2858,thought-provoking,1295819587 +110308,2860,police,1367430135 +110308,2932,meditative,1296395800 +110308,2959,burnout,1300987542 +110308,2959,dark comedy,1295822173 +110308,2959,FIGHTING THE SYSTEM,1295543442 +110308,2959,human nature,1295819838 +110308,2959,insomnia,1295882534 +110308,2959,philosophical,1295819798 +110308,2959,psychology,1294923433 +110308,2959,satirical,1295819521 +110308,2959,social commentary,1294923441 +110308,2959,surreal,1295819401 +110308,2959,twist ending,1294923436 +110308,2997,off-beat comedy,1300987429 +110308,2997,satirical,1300987418 +110308,2997,surreal,1295819544 +110308,2997,thought-provoking,1295819556 +110308,3030,black and white,1367435036 +110308,3052,controversial,1295867437 +110308,3052,satire,1295867441 +110308,3081,atmospheric,1295884314 +110308,3081,Mystery,1295884329 +110308,3081,quirky,1295884318 +110308,3108,unusual,1295948408 +110308,3160,great acting,1295984817 +110308,3160,multiple storylines,1295984772 +110308,3160,visually appealing,1295984808 +110308,3168,freedom,1295985089 +110308,3168,injustice,1295824050 +110308,3168,social commentary,1295821998 +110308,3175,feel-good,1295948714 +110308,3175,it should have sucked but didn't,1295884252 +110308,3175,parody,1295884242 +110308,3203,thriller,1367435634 +110308,3249,thriller,1367435633 +110308,3273,franchise,1367435440 +110308,3285,travel,1300516306 +110308,3328,great soundtrack,1295821954 +110308,3328,melancholy,1295821966 +110308,3328,quirky,1295821972 +110308,3328,stylized,1295821969 +110308,3440,franchise,1367435440 +110308,3481,great soundtrack,1295824980 +110308,3535,humorous,1300987221 +110308,3535,psychology,1300987223 +110308,3535,violence,1300987229 +110308,3545,Berlin,1296061960 +110308,3545,politics,1296061965 +110308,3545,queer,1296061968 +110308,3566,christianity,1367435070 +110308,3569,controversial,1295867303 +110308,3569,dogme95,1295867288 +110308,3569,mental illness,1295867285 +110308,3569,satire,1295867316 +110308,3569,social commentary,1295867279 +110308,3569,weird,1295867312 +110308,3617,Teen movie,1297880659 +110308,3682,police,1367435555 +110308,3729,great soundtrack,1295832652 +110308,3910,dark,1367435281 +110308,3949,atmospheric,1295820070 +110308,3949,dark,1295820072 +110308,3949,disturbing,1295820058 +110308,3949,psychology,1295820066 +110308,3949,social commentary,1295820062 +110308,3949,visually appealing,1295984856 +110308,3977,Bill Murray,1295829245 +110308,3977,cliche,1295829243 +110308,3977,predictable,1295829295 +110308,3977,sexism,1295829271 +110308,4011,comedy,1295948625 +110308,4011,funny,1295948623 +110308,4011,quirky,1295948627 +110308,4014,feel-good,1296061712 +110308,4055,father-son relationship,1367435340 +110308,4065,great soundtrack,1295832568 +110308,4190,christianity,1367435070 +110308,4226,dreamlike,1295821663 +110308,4226,memory,1295821649 +110308,4226,mindfuck,1300515548 +110308,4226,mystery,1295821637 +110308,4226,psychology,1295821639 +110308,4238,thriller,1367435634 +110308,4298,black and white,1367430364 +110308,4306,pixar,1367435548 +110308,4310,Ben Affleck,1296396852 +110308,4310,Michael Bay,1306772369 +110308,4310,patriotic,1296396823 +110308,4310,predictable,1296396814 +110308,4336,better than the american version,1295867145 +110308,4612,christianity,1367435070 +110308,4848,Atmospheric,1300515786 +110308,4848,dreamlike,1300515791 +110308,4852,bad acting,1295883308 +110308,4852,predictable,1296663318 +110308,4873,dreamlike,1297961894 +110308,4873,existentialism,1297961891 +110308,4873,metaphysics,1297961885 +110308,4873,philosophy,1297961887 +110308,4873,surreal,1297961901 +110308,4873,thought-provoking,1297961881 +110308,4878,dreamlike,1295822010 +110308,4878,mindfuck,1300515617 +110308,4878,psychology,1295822015 +110308,4878,social commentary,1295822019 +110308,4878,surreal,1295822022 +110308,4878,thought-provoking,1295822025 +110308,4886,hilarious,1308662733 +110308,4886,Pixar,1308494640 +110308,4896,fantasy,1325947192 +110308,4896,magic,1325947195 +110308,4907,great soundtrack,1295832674 +110308,4967,complex characters,1295821341 +110308,4967,human nature,1295823976 +110308,4967,satire,1295821368 +110308,4967,social commentary,1295821379 +110308,4967,thought-provoking,1295821359 +110308,4973,beautiful little details,1312187680 +110308,4973,feel-good,1295947991 +110308,4973,great soundtrack,1295824257 +110308,4973,heartwarming,1295948017 +110308,4973,misfits,1295862180 +110308,4973,quirky,1295824267 +110308,4973,stylized,1295824274 +110308,4973,surreal,1295824265 +110308,4973,uplifting,1295948008 +110308,4973,whimsical,1295824270 +110308,4979,comedy,1300987505 +110308,4979,family dynamics,1295947742 +110308,4979,quirky,1295820017 +110308,4979,witty,1295947738 +110308,4993,adventure,1325947254 +110308,4993,atmospheric,1325947275 +110308,4993,fantasy,1325947256 +110308,4993,magic,1325947258 +110308,5147,dreams,1308558134 +110308,5218,pixar,1367435549 +110308,5266,tense,1367512717 +110308,5288,Cold War,1296147311 +110308,5288,documentary,1296147301 +110308,5288,History,1296147314 +110308,5288,propaganda,1296147334 +110308,5418,conspiracy,1295819048 +110308,5445,dystopia,1300515432 +110308,5445,police corruption,1295883840 +110308,5445,surveillance,1295883865 +110308,5445,Tom Cruise,1295883844 +110308,5507,bad acting,1295828193 +110308,5507,predictable,1295829308 +110308,5507,Vin Diesel,1295828209 +110308,5563,father-son relationship,1367435340 +110308,5608,human nature,1295830142 +110308,5608,over-the-top ending,1295830125 +110308,5608,psychology,1295830131 +110308,5679,mystery,1296395034 +110308,5816,fantasy,1325947216 +110308,5816,magic,1325947218 +110308,5816,predictable,1325947226 +110308,5878,friendship,1311105318 +110308,5878,Nudity (Topless),1311105321 +110308,5878,psychology,1311105307 +110308,5878,sexuality,1311105312 +110308,5903,dystopia,1295860623 +110308,5903,predictable,1295860628 +110308,5903,revolution,1295860618 +110308,5903,totalitarianism,1295860620 +110308,5945,dark comedy,1295822731 +110308,5952,adventure,1325947299 +110308,5952,atmospheric,1325947301 +110308,5952,fantasy,1325947304 +110308,5952,fantasy world,1325947305 +110308,5952,magic,1325947308 +110308,5952,war,1325947322 +110308,6016,coming of age,1312188335 +110308,6016,drug dealing,1312188328 +110308,6016,ghetto,1312187938 +110308,6016,great soundtrack,1295822569 +110308,6016,street life,1312187932 +110308,6163,obsession,1297332766 +110308,6163,plot twist,1297332774 +110308,6163,stalker,1297332771 +110308,6270,bad script,1308558342 +110308,6270,dreams,1308558333 +110308,6377,anxiety,1309346314 +110308,6377,father-son relationship,1308245866 +110308,6377,funny,1308662699 +110308,6377,heartwarming,1312188038 +110308,6377,Pixar,1308245912 +110308,6552,illegal immigration,1351172426 +110308,6552,immigrants,1351172431 +110308,6564,predictable,1308214737 +110308,6571,friendship,1296146712 +110308,6571,social commentary,1296146707 +110308,6711,complex characters,1295824910 +110308,6711,human nature,1295824929 +110308,6711,Melancholic,1295824916 +110308,6755,B-movie,1295826311 +110308,6755,quirky,1295826309 +110308,6770,death,1300987521 +110308,6770,loneliness,1300987530 +110308,6770,thought-provoking,1295821588 +110308,6770,touching,1295821597 +110308,6807,satire,1295867845 +110308,6890,disturbing,1295822533 +110308,6890,powerful,1295822531 +110308,6902,funny,1295984986 +110308,6902,mindfuck,1295821880 +110308,6902,self discovery,1295821899 +110308,6902,surreal,1295984972 +110308,6934,bad sequel,1295882646 +110308,7008,controversial,1295867762 +110308,7090,amazing photography,1296395907 +110308,7090,cinematography,1296395910 +110308,7090,Epic,1296395898 +110308,7090,martial arts,1296395895 +110308,7090,visually appealing,1296395900 +110308,7123,dreamlike,1306271963 +110308,7123,hallucinatory,1306271966 +110308,7123,sexual,1306271979 +110308,7123,surreal,1306271978 +110308,7153,adventure,1325947331 +110308,7153,atmospheric,1325947332 +110308,7153,fantasy,1325947334 +110308,7153,magic,1325947342 +110308,7153,tense,1325947357 +110308,7153,war,1325947352 +110308,7317,cliche,1295829039 +110308,7317,humor for the narrow-minded,1297880197 +110308,7317,stupid americans,1295828863 +110308,7325,comedy,1295948881 +110308,7325,funny,1295948872 +110308,7361,comedy,1300987704 +110308,7361,feel-good,1295947954 +110308,7361,funny,1295947946 +110308,7361,psychology,1295947902 +110308,7361,quirky,1295947922 +110308,7361,surreal,1295985046 +110308,7371,disturbing,1295819717 +110308,7371,philosophy,1353580248 +110308,7371,social commentary,1295819735 +110308,8014,Atmospheric,1326466586 +110308,8014,Buddhism,1326466578 +110308,8014,episodic,1326466581 +110308,8014,great photograpy,1326466583 +110308,8014,nature,1326466595 +110308,8117,anti-hero,1295882192 +110308,8117,dark comedy,1295822328 +110308,8368,fantasy,1325947156 +110308,8368,magic,1325947161 +110308,8368,time travel,1325947158 +110308,8376,misfits,1295825551 +110308,8376,nerds,1295825534 +110308,8376,off-beat comedy,1297880571 +110308,8376,quirky,1297880574 +110308,8528,hilarious,1296061420 +110308,8784,great soundtrack,1295825032 +110308,8784,psychology,1295174545 +110308,8874,parody,1295948902 +110308,8917,satire,1295831613 +110308,8950,great acting,1306512882 +110308,8950,grim,1306503420 +110308,8950,psychology,1306503391 +110308,8957,surprise ending,1296395128 +110308,8966,psychology,1363469264 +110308,8966,science,1363469269 +110308,8966,sexuality,1363469272 +110308,8966,social commentary,1363469280 +110308,26249,feel-good,1295948556 +110308,26294,feel-good,1295948656 +110308,26294,great soundtrack,1295948662 +110308,27178,self discovery,1295881926 +110308,27716,dark comedy,1295826099 +110308,27716,weird,1295826087 +110308,27727,complex characters,1295821917 +110308,27727,great soundtrack,1295822360 +110308,27727,immigrants,1324832579 +110308,27773,great soundtrack,1295821565 +110308,27773,hallucinatory,1295821545 +110308,27773,stylized,1295821530 +110308,27793,bad acting,1295882140 +110308,27793,bad sequel,1295882167 +110308,27793,predictable,1295882147 +110308,27803,disability,1299238142 +110308,27803,FIGHTING THE SYSTEM,1299238131 +110308,27815,feel-good,1295949058 +110308,27815,heartwarming,1295949048 +110308,27815,music,1295174488 +110308,27857,burnout,1295882074 +110308,27857,music,1295174451 +110308,27857,self discovery,1295882090 +110308,27891,cynical,1295826267 +110308,27891,social commentary,1295826182 +110308,27891,vigilante justice,1295826258 +110308,27904,drugs,1308509133 +110308,27904,surreal,1308509135 +110308,30810,Bill Murray,1295822385 +110308,30810,great soundtrack,1295822393 +110308,30810,quirky,1295822397 +110308,30810,whimsical,1295822417 +110308,31545,easily confused with other movie(s) (title),1295866920 +110308,31685,cliche,1295829344 +110308,31685,predictable,1295828699 +110308,31685,unimaginative,1295828728 +110308,31685,Will Smith,1295828680 +110308,31689,controversial,1296061239 +110308,31689,pornography,1296061231 +110308,31696,heaven and hell,1295860265 +110308,31804,easily confused with other movie(s) (title),1295867016 +110308,31952,dark comedy,1307654956 +110308,31952,dreams,1307654945 +110308,31952,surreal,1307654950 +110308,31952,symbolism,1307654952 +110308,32031,pixar,1367435549 +110308,32587,stylized,1295868084 +110308,32587,surreal,1295868097 +110308,33903,idealism,1298153828 +110308,33903,revolution,1298153805 +110308,34405,adventure,1355609361 +110308,34405,dystopia,1355609366 +110308,34405,quirky,1355609368 +110308,34405,social commentary,1355609358 +110308,34437,bittersweet,1295948799 +110308,34437,great soundtrack,1295825324 +110308,34437,quirky,1295825298 +110308,36517,Africa,1351171733 +110308,36517,conspiracy,1351171724 +110308,36517,corruption,1351171727 +110308,36517,great cinematography,1351171712 +110308,36517,social commentary,1351171708 +110308,36517,visually appealing,1351171715 +110308,36529,political,1295867920 +110308,36529,politics,1296147203 +110308,38198,human nature,1295824190 +110308,38198,injustice,1295824070 +110308,38198,politics,1295824132 +110308,38198,rich and poor,1295824173 +110308,38198,social commentary,1295824141 +110308,39427,amazing cinematography,1331662428 +110308,39427,dreamlike,1331662436 +110308,39427,psychological,1294923106 +110308,39427,surreal,1331662411 +110308,39427,twist ending,1294923116 +110308,40815,dark,1326196359 +110308,40815,fantasy,1326196351 +110308,40815,magic,1326196356 +110308,40870,coming of age,1295825277 +110308,40870,great soundtrack,1295825265 +110308,42385,parkour,1308214547 +110308,42418,cinematography,1305231396 +110308,42418,meditative,1305231400 +110308,43376,anti-war,1304847497 +110308,43376,FIGHTING THE SYSTEM,1309692541 +110308,43376,resistance movement,1304847514 +110308,43376,strong woman,1304847524 +110308,44191,FIGHTING THE SYSTEM,1298153500 +110308,44191,inspirational,1298153458 +110308,44191,philosophy,1298153526 +110308,44191,revolution,1298153475 +110308,44191,social commentary,1298153533 +110308,44191,thought-provoking,1298153466 +110308,44195,clever,1296147158 +110308,44195,corruption,1296147156 +110308,44195,cover up,1296147179 +110308,44195,dark comedy,1296147150 +110308,44195,funny,1296147176 +110308,44195,satire,1296147173 +110308,44195,social commentary,1296147169 +110308,44555,character development,1312188215 +110308,44555,complex characters,1295819351 +110308,44555,freedom of expression,1295819337 +110308,44555,surveillance,1295984904 +110308,45172,cold war,1297774991 +110308,45172,conspiracy theory,1297870086 +110308,45172,drug abuse,1298154101 +110308,45172,great soundtrack,1297775129 +110308,45172,hacking,1297774588 +110308,45172,paranoia,1297870096 +110308,45172,thriller,1298154087 +110308,45431,pixar,1367435549 +110308,46098,music documentary,1301349595 +110308,46098,Turkey,1301349620 +110308,46578,comedy,1300987615 +110308,46578,family,1300987630 +110308,46578,feel-good,1295947787 +110308,46578,funny,1295947792 +110308,46578,inspirational,1295947797 +110308,46578,off-beat comedy,1295821745 +110308,46578,quirky,1295821747 +110308,46578,social commentary,1295821750 +110308,46578,uplifting,1295947807 +110308,46976,heartwarming,1300987858 +110308,46976,metaphysics,1297774292 +110308,46976,quirky romantic,1297774284 +110308,46976,surreal,1297774283 +110308,47491,black comedy,1300987176 +110308,47491,cynical,1295948069 +110308,47937,dark comedy,1295825461 +110308,47937,satirical,1295825489 +110308,48082,artsy,1295984658 +110308,48082,bittersweet,1295947676 +110308,48082,dreamlike,1295822241 +110308,48082,psychology,1295882458 +110308,48082,quirky,1295947689 +110308,48082,surreal,1295819923 +110308,48082,unusual,1295882431 +110308,48165,depressing,1295948942 +110308,48165,disturbing,1295948940 +110308,48165,isolation,1295913307 +110308,48165,sick,1295913186 +110308,48231,dark comedy,1295881850 +110308,48231,disturbing,1295948581 +110308,48231,surreal,1295881857 +110308,48231,unusual,1295881860 +110308,48385,controversial,1295867471 +110308,48385,satire,1295867479 +110308,48385,social commentary,1295867477 +110308,48516,corruption,1346512022 +110308,48516,police corruption,1346512031 +110308,48660,cynical,1295881815 +110308,48744,controversial,1295867714 +110308,48744,erotic,1295867699 +110308,48744,heartwarming,1295948189 +110308,48744,human nature,1295824610 +110308,48744,queer,1295823054 +110308,48744,relationships,1295824625 +110308,48744,social commentary,1295823094 +110308,48744,uplifting,1295948196 +110308,48774,depressing,1308171791 +110308,48774,dystopia,1308171650 +110308,48774,human nature,1308171686 +110308,48774,social commentary,1308171744 +110308,48774,thought-provoking,1308171831 +110308,49312,autism,1296161884 +110308,49312,bittersweet,1296949098 +110308,49312,complex characters,1296161941 +110308,49312,heartwarming,1296161901 +110308,49312,quirky,1296161894 +110308,50872,cooking,1296061271 +110308,50872,France,1296061279 +110308,50872,pixar,1296061275 +110308,51662,bad acting,1295827824 +110308,51662,constrained,1295827584 +110308,51662,stylized,1295868064 +110308,52328,dark,1295818996 +110308,52328,psychology,1295818981 +110308,52950,bad sequel,1295882324 +110308,53123,Didn't finish,1332081544 +110308,53189,awkward,1333391319 +110308,53189,off-beat comedy,1333391323 +110308,53318,Nudity (Full Frontal),1329610273 +110308,53318,surreal,1329610275 +110308,53592,music,1296061325 +110308,53921,nudity (topless - notable),1367435516 +110308,54503,crude humor,1297880519 +110308,54503,nerds,1297880522 +110308,54503,self discovery,1297880530 +110308,54503,Teen movie,1297880538 +110308,55067,Exorcism,1301490960 +110308,55067,mental illness,1301490953 +110308,55067,religious stupidity,1301494422 +110308,55247,atmospheric,1295821785 +110308,55247,self discovery,1294940028 +110308,55247,travel,1300516514 +110308,55442,animation,1295821451 +110308,55442,comic book,1297776506 +110308,55442,History,1297776512 +110308,55442,humorous,1295821439 +110308,55442,injustice,1295823939 +110308,55442,politics,1295821421 +110308,55442,revolution,1295821423 +110308,55442,social commentary,1295821417 +110308,55814,disability,1297776390 +110308,55814,great cinematography,1297776384 +110308,55814,touching,1295822050 +110308,55814,true story,1295822058 +110308,55908,dialogue driven,1325973857 +110308,55908,Excellent use of dialogue,1325973852 +110308,55908,philosophical,1325973858 +110308,55908,thought-provoking,1325973863 +110308,55908,unique,1325973864 +110308,56367,feel-good,1295947825 +110308,56367,great soundtrack,1295821765 +110308,56367,uplifting,1295947847 +110308,56367,witty,1295947834 +110308,56587,cheesy,1369042429 +110308,56587,predictable,1369042432 +110308,57980,black comedy,1300987251 +110308,57980,cynical,1295881753 +110308,59784,pixar,1367435549 +110308,60069,dystopia,1344586011 +110308,60069,emotional,1344586021 +110308,60069,social commentary,1344586005 +110308,60469,black comedy,1300987926 +110308,60469,Christianity,1301559053 +110308,60469,injustice,1295881405 +110308,60469,Josef Hader,1295881372 +110308,60469,quirky,1295881349 +110308,60684,cinematography,1318801803 +110308,60684,great soundtrack,1318801812 +110308,60684,human nature,1318801832 +110308,60684,social commentary,1318801820 +110308,61236,surreal,1295821324 +110308,61236,thought-provoking,1295821306 +110308,61236,touching,1295821311 +110308,61236,war,1300987059 +110308,61323,dark comedy,1377620566 +110308,63082,great soundtrack,1295822994 +110308,63082,injustice,1295824575 +110308,63082,social commentary,1295823008 +110308,63113,franchise,1367435440 +110308,63645,hard to watch,1315244539 +110308,65037,autism,1306229714 +110308,66511,drugs,1306788745 +110308,66511,great soundtrack,1306788716 +110308,66511,techno,1306788696 +110308,67361,bad acting,1295827862 +110308,67361,predictable,1295826755 +110308,68554,mystery,1299238088 +110308,68954,adventure,1346749945 +110308,68954,bittersweet,1346749943 +110308,68954,emotional,1346749951 +110308,69122,cliche,1295828984 +110308,70286,evil humans,1306850795 +110308,70286,mockumentary,1306850760 +110308,70286,role reversal,1306850764 +110308,70286,social commentary,1306781159 +110308,70567,cliche,1303803827 +110308,71108,atmospheric,1295882302 +110308,71108,no soundtrack,1295882278 +110308,71108,thought-provoking,1295819643 +110308,71468,dreams,1309895138 +110308,71468,quick cuts,1309895159 +110308,71468,surreal,1309895145 +110308,71468,visually appealing,1309895147 +110308,71745,Coming of age,1295889167 +110308,71745,dreamlike,1295889186 +110308,71745,heartwarming,1295948101 +110308,71745,imagination,1295889169 +110308,71745,Mother Son Relationship,1295889171 +110308,71745,Spike Jonze,1295889156 +110308,71745,stylized,1295889178 +110308,71745,surreal,1295889193 +110308,71899,asperger syndrome,1295824726 +110308,71899,human nature,1295824717 +110308,71899,misfits,1295824858 +110308,71899,outsiders,1295824867 +110308,72159,Bavaria,1306833026 +110308,72159,childhood,1306833108 +110308,72159,Christianity,1306833017 +110308,72159,dreams,1306833037 +110308,72159,religion,1306833006 +110308,72159,satirical,1306833415 +110308,72334,beautiful cinematography,1361041903 +110308,72334,impartial,1295881693 +110308,72334,meditative,1295881441 +110308,72694,doesn't live up to its full potential,1326900274 +110308,72694,Kevin Spacey,1326899760 +110308,72694,psychology,1326899763 +110308,72998,beautiful scenery,1294923199 +110308,72998,environmental,1295862083 +110308,72998,FIGHTING THE SYSTEM,1295543521 +110308,72998,human nature,1295862020 +110308,72998,injustice,1327260688 +110308,72998,military,1295862073 +110308,72998,rebellion,1295822636 +110308,72998,revolution,1294923210 +110308,73587,Birol Ãœnel,1295881997 +110308,73587,great soundtrack,1295822929 +110308,74327,coming of age,1295825095 +110308,74327,family,1295825078 +110308,74327,great soundtrack,1295825062 +110308,74327,self discovery,1295825104 +110308,74458,insanity,1331469664 +110308,74458,Predictable,1331469672 +110308,74458,psychological,1331469666 +110308,74458,twist ending,1331469666 +110308,74677,Critical thinking,1296947001 +110308,74677,free to download,1296946983 +110308,74677,social commentary,1296946999 +110308,74677,vodo.net,1296946615 +110308,74787,Bollywood,1306613068 +110308,74789,dissapointing,1295884356 +110308,74789,unimaginative,1295884364 +110308,76093,pixar,1367435549 +110308,77455,Banksy,1297879222 +110308,77455,graffiti,1295825123 +110308,78653,complex characters,1301559137 +110308,78653,relationships,1295825197 +110308,79132,surreal,1305536103 +110308,79132,visually appealing,1305536084 +110308,80354,Til Schweiger,1321203324 +110308,80463,friendship,1300907613 +110308,80463,hacking,1300907632 +110308,80463,treachery,1300907611 +110308,80834,animation,1296947168 +110308,80834,blender,1296946573 +110308,80834,free to download,1296946584 +110308,80834,sad,1296947173 +110308,80834,touching,1296947157 +110308,80834,vodo.net,1296946561 +110308,81000,climbing,1306694498 +110308,81562,nature,1298241091 +110308,81562,true story,1298241088 +110308,81591,atmospheric,1297161367 +110308,81591,ballet,1297161389 +110308,81591,creepy,1297161370 +110308,81591,dark,1297161380 +110308,81845,friendship,1301558882 +110308,81845,great performances,1301558872 +110308,81845,true story,1301558867 +110308,82088,psychology,1295881269 +110308,82088,Tourette syndrome,1295824520 +110308,83897,quirky,1299236929 +110308,84015,banking,1301558978 +110308,84015,burnout,1299236771 +110308,84152,visually appealing,1355568232 +110308,84240,capitalism,1327260167 +110308,84240,corporate abuse,1327261636 +110308,84240,fighting the system,1327260329 +110308,84240,globalisation,1327260643 +110308,84240,human rights,1327260620 +110308,84240,injustice,1327260737 +110308,84240,rebellion,1327260730 +110308,84273,free to download,1297460857 +110308,84273,human nature,1297460908 +110308,84273,over-the-top ending,1297460941 +110308,84273,revolution,1298154154 +110308,84273,rich and poor,1297461766 +110308,84273,social commentary,1297460756 +110308,84273,thought-provoking,1297460892 +110308,84273,utopia,1297460918 +110308,84273,vodo.net,1297460863 +110308,86190,beautiful cinematography,1445897202 +110308,86190,Germany,1316354142 +110308,86190,great soundtrack,1316354134 +110308,86190,strong female lead,1316354126 +110308,86190,surrealism,1316354124 +110308,86320,beautiful,1362778169 +110308,86320,cinematography,1362777923 +110308,86320,introspective,1362777931 +110308,86882,philosophical,1368310464 +110308,86882,quirky,1368310469 +110308,86882,thought-provoking,1368310462 +110308,86898,beautifully filmed,1310373073 +110308,86898,dinosaurs,1310373125 +110308,86898,over the top,1310373159 +110308,86898,too much religion,1310372966 +110308,87186,BASE jumping,1329230360 +110308,87186,psychology,1329230468 +110308,87186,sports,1329230721 +110308,89759,great acting,1328885508 +110308,89759,Iran,1328885515 +110308,89759,realistic,1328885527 +110308,89759,social commentary,1328885523 +110308,89761,Psychoanalysis,1355998443 +110308,89761,psychology,1355998449 +110308,92046,drugs,1334606649 +110308,92046,Georg Friedrich,1334827333 +110308,92046,quirky,1334606657 +110308,92046,Stoner Movie,1334606665 +110308,92046,trippy,1334827245 +110308,92259,disability,1327585302 +110308,92259,friendship,1327585603 +110308,92259,rich and poor,1327585824 +110308,94959,Bill Murray,1353533137 +110308,94959,Edward Norton,1353533139 +110308,94959,funny,1353533157 +110308,94959,original,1353533155 +110308,94959,quirky,1353533145 +110308,94959,Wes Anderson,1353533147 +110308,95558,emotional,1356173356 +110308,95558,original,1356173358 +110308,95558,Strange,1356173360 +110308,95558,surreal,1356173382 +110308,96417,Adrenaline,1360268847 +110308,96417,bicycling,1360268863 +110308,96606,beautiful cinematography,1361041893 +110308,96606,meditative,1361041810 +110308,96606,time-lapse,1361041760 +110308,96821,bittersweet,1355685952 +110308,96821,character development,1355685927 +110308,96821,touching,1355685986 +110308,97304,Ben Affleck,1353410895 +110308,97304,suspenseful,1353410932 +110308,97304,true story,1353410892 +110308,97752,atmospheric,1353532696 +110308,97752,dystopia,1353532980 +110308,97752,great acting,1353410786 +110308,97752,human nature,1353580491 +110308,97752,multiple roles,1353410795 +110308,97752,multiple storylines,1353410808 +110308,97752,philosophy,1353533181 +110308,97752,rebellion,1353532916 +110308,97752,social commentary,1353532609 +110308,97752,thought-provoking,1353532829 +110308,97752,visually appealing,1353532770 +110308,99691,kitsch,1357856053 +110308,102720,predictable,1369748401 +110308,102720,unimaginative,1369748414 +110308,106920,dystopia,1407881887 +110308,106920,original,1407881896 +110308,106920,philosophical,1407881878 +110308,106920,psychology,1407881880 +110308,106920,thought-provoking,1407881883 +110308,109487,just continue destroying our planet - science will fix it somehow,1416955991 +110308,115133,Shakespeare,1413382879 +110308,115133,stylized,1413382891 +110308,128620,breathtaking,1440621083 +110308,128620,one shot,1440621065 +110312,260,Cult,1436829032 +110312,260,sci-fi,1436829028 +110312,79684,Jeff Daniels,1436897409 +110312,79684,Ryan Reynolds,1436897420 +110312,122882,action,1436830297 +110312,122882,edge of your seat,1436830297 +110312,122882,feminist,1436830297 +110324,4912,romance,1415619685 +110324,5991,enoy,1415618975 +110324,115212,romantic,1415618914 +110325,4995,inspirational,1447808921 +110325,4995,Oscar (Best Picture),1447808927 +110325,4995,true story,1447808920 +110325,8533,Rachel McAdams,1447809340 +110325,69757,humor,1447809443 +110325,69757,relationships,1447809445 +110325,69757,Zooey Deschanel,1447809435 +110325,70599,Rachel McAdams,1447809313 +110325,72641,based on a true story,1447809650 +110325,72641,inspirational,1447809655 +110325,72641,kindness of strangers,1447809658 +110325,72641,sports,1447809654 +110325,72641,touching,1447809657 +110325,72641,true story,1447809649 +110325,92259,based on a true story,1447809894 +110325,92259,emotional,1447809891 +110325,92259,feel good movie,1447809893 +110325,92259,friendship,1447809886 +110325,92259,funny,1447809890 +110325,92259,touching,1447809888 +110325,117176,biography,1447808974 +110344,260,Science Fiction,1437018586 +110344,260,space adventure,1437018596 +110344,356,comedy,1437138888 +110344,356,drama,1437138888 +110344,356,romance,1437138888 +110350,260,good,1441006538 +110352,541,caricacatures,1242612138 +110352,541,plot holes,1242612138 +110352,541,ridiculousness,1242612138 +110352,541,robots,1242612138 +110352,541,stupidity,1242612138 +110352,541,violently stupid,1242612138 +110352,48304,chase sequences,1317333010 +110352,48304,depiction of village life,1317333010 +110352,48304,humanity of Native Americans,1317333010 +110352,48304,mel gibson,1317333010 +110352,56333,Heavy-handed,1243479574 +110352,56333,Laura Linney,1243479574 +110352,56333,obvious,1243479574 +110352,56333,Philip Bosco,1243479575 +110352,56333,Philip Seymour Hoffman,1243479574 +110352,56333,realistic,1243479574 +110352,56333,touching,1243479574 +110352,56587,Two great actors,1264214442 +110352,56587,Weak screenplay,1264214442 +110352,63082,badly acted,1247277920 +110352,63082,cliched,1247277818 +110352,63082,Contrived.,1247277798 +110352,63082,entertaining for the wrong reasons,1247277895 +110352,63082,predictable movie,1247277895 +110352,63082,sweet and romantic,1247277895 +110352,63082,touching,1247277946 +110352,64701,magnificent performances,1268277300 +110352,64701,not a single wrong note,1268277300 +110352,64701,perfect script,1268277338 +110352,64839,bloody,1242529673 +110352,64839,Character study,1242529673 +110352,64839,father daughter relationship,1242529673 +110352,64839,love story,1242529673 +110352,64839,Marisa Tomei,1242529673 +110352,64839,Mickey Rourke,1242529673 +110352,64839,strippers,1242529673 +110352,64839,violence,1242529673 +110352,64839,wrestling,1242529673 +110352,65465,Decent screenplay,1264214309 +110352,65465,Two great actors on screen for two hours!,1264214309 +110352,68472,old fashioned foreign movie,1437537209 +110352,72011,every cliche in the book,1268277173 +110352,72011,pedestrian performances,1268277201 +110352,72011,utterly predictable,1268277173 +110352,80939,Great performances: Hilary Swank,1314496397 +110352,80939,Juliette Lewis,1314496318 +110352,81639,beautiful performances,1317332727 +110352,81639,hurried ending,1317332727 +110352,81639,pat,1317332727 +110352,81639,touching story,1317332727 +110352,86762,perfect,1344895489 +110352,86882,cliche depiction of writers and artists,1317332616 +110352,86882,pleasant enough,1317332616 +110352,86882,waste of Marian Cotillard's talent,1317332616 +110352,95558,Benh Zeitlin,1360523520 +110352,95558,emotional,1360523496 +110352,95558,monsters,1360523655 +110352,95558,original,1360523465 +110352,95558,Quvenzhane Wallis,1360523484 +110352,95558,sad,1360523490 +110352,98017,clockwork story,1424614987 +110352,98017,gem,1424614916 +110352,98017,great performances,1424614930 +110352,98017,perfect drama,1424615030 +110352,98017,perfect rhythm,1424614966 +110352,106696,feminist,1417918347 +110352,111622,too sweet,1417924817 +110352,112183,insider acting stuff,1424615140 +110352,112183,silly magical realism,1424615153 +110352,112183,whiny,1424615125 +110352,117881,Great performance by Julianne Moore,1431265691 +110352,125563,disappointing,1423665933 +110352,125563,foodies,1423665933 +110352,125563,sappy ending,1423665933 +110352,132961,"good performances, clunky plot",1439063608 +110352,132961,implausible plot,1437537297 +110352,132961,strong woman,1437537287 +110356,231,Funny as hell,1174931585 +110378,527,based on a true story,1260543158 +110378,4011,Brad Pitt,1260541845 +110378,4011,twist ending,1260541853 +110378,4640,Japan,1260542035 +110378,8641,Will Ferrell,1260542306 +110378,8644,robots,1260542275 +110378,27478,Sacha Baron Cohen,1260541863 +110378,27611,space,1260542330 +110378,27846,documentary,1260542378 +110378,44195,dark comedy,1260541877 +110378,50851,documentary,1260542382 +110378,71535,post-apocalyptic,1260541870 +110380,150,dvd,1138412207 +110380,150,true story,1138412207 +110380,480,scifi,1140407604 +110380,1036,action,1138412287 +110380,1036,dvd,1138412287 +110380,1610,action,1138412165 +110380,1610,dvd,1138412165 +110380,2501,space program,1138412192 +110380,2501,true story,1138412192 +110380,2947,007,1138412388 +110380,2947,Bond,1138412388 +110380,2948,007,1138412479 +110380,2948,Bond,1138412479 +110380,2949,007,1138412571 +110380,2949,Bond,1138412571 +110380,4327,classic,1138412411 +110380,5445,dvd,1138412100 +110380,6986,classic,1138412362 +110380,6986,dvd,1138412362 +110380,7386,classic,1138412153 +110380,7386,family,1138412153 +110380,7569,007,1140407516 +110380,7569,Bond,1140407516 +110380,8530,courtroom,1138412009 +110380,33794,action,1138412265 +110380,33794,dvd,1138412264 +110380,33794,super-hero,1138412265 +110402,296,fun,1432336530 +110402,296,mobsters,1432336530 +110402,296,violent,1432336530 +110402,3578,gladiators,1430948977 +110402,3578,sword fight,1430949001 +110402,3578,violent,1430949016 +110402,5903,dark,1430948795 +110402,5903,sci-fi,1430948782 +110415,260,chubakka,1442329463 +110415,260,darth vader,1442329490 +110415,260,luke skywalker,1442329469 +110415,260,obi wan kenobi,1442329476 +110415,260,Princess Leya,1442329482 +110415,260,space,1442329453 +110415,260,Star Wars,1442329498 +110423,53207,unrealistic plot,1324068008 +110434,1921,atmospheric,1334996317 +110434,1921,black and white,1334996319 +110434,1921,mathematics,1334996313 +110434,1921,notable soundtrack,1334996324 +110434,1924,cheesy,1265886630 +110434,2330,overrated,1302187909 +110434,4014,"""American"" French",1338408715 +110434,4014,Nudity (Topless - Brief),1338408685 +110434,4973,beautifully filmed,1265542132 +110434,5088,Freedom,1335907845 +110434,6188,Elisha Cuthbert,1351973525 +110434,45501,horrible finish,1334001908 +110434,57669,good ending,1334436294 +110434,71033,foreign language,1337888126 +110434,72641,No drama,1271069750 +110434,72733,slow,1308434466 +110434,80551,whiney protagonist,1299084008 +110434,83613,Olivia Wilde,1325109937 +110434,85885,Beautiful Woman,1353959300 +110434,85885,Nudity (Rear),1353959306 +110434,88129,Dark,1335285773 +110434,88129,violence,1335285764 +110434,88163,Emma Stone,1334677047 +110434,88163,Ryan Gosling,1334677045 +110434,88163,Steve Carell,1334677034 +110434,93805,plot,1333970596 +110434,99112,Rosamund Pike,1391275391 +110434,99112,without romance,1391275397 +110442,1721,disaster,1452629020 +110442,1721,Leonardo DiCaprio,1452629014 +110442,1721,romance,1452629011 +110442,1721,sex,1452628981 +110442,2959,Brad Pitt,1452629381 +110442,2959,challenging,1452629375 +110442,2959,psychology,1452629380 +110443,260,outdated,1375982529 +110443,318,not for kids,1375983230 +110443,480,outdated,1375983327 +110443,899,boring,1375982453 +110443,913,boring,1375982425 +110443,922,boring,1375982408 +110443,969,boring,1375982369 +110443,1022,outdated,1376073794 +110443,1178,boring,1375983337 +110443,1199,outdated,1375982462 +110443,1210,outdated,1375982524 +110443,1212,boring,1375982375 +110443,1267,boring,1375982439 +110443,1499,not for kids,1376073806 +110443,2054,outdated,1376074438 +110443,2153,not for kids,1376073831 +110443,2338,not for kids,1376074465 +110443,2791,outdated,1375982449 +110443,2918,outdated,1375982400 +110443,3435,boring,1375982353 +110443,3671,outdated,1375983289 +110443,54259,not for kids,1375983282 +110443,56782,not for kids,1375983491 +110443,57669,not for kids,1376073774 +110443,64839,not for kids,1375983485 +110443,77658,boring,1375982362 +110446,276,turd,1188759109 +110446,1911,turd,1188759106 +110446,3826,turd,1188759108 +110446,3967,turd,1188759095 +110446,8622,turd,1188759107 +110451,36537,Indie,1145573842 +110451,38886,Squid and the Whale,1145573732 +110451,38886,The,1145573732 +110451,43708,Dave Chappelle's Block Party,1145573674 +110482,32,brad pitt,1433194046 +110482,32,complicated,1433194064 +110482,32,imagination,1433194086 +110482,32,post-apocalyptic,1433194025 +110482,32,Terry Gilliam,1433194039 +110482,32,time travel,1433194053 +110482,32,twist ending,1433194056 +110482,253,fantasy,1433195370 +110482,253,Paris,1433195389 +110482,253,vampires,1433195355 +110482,260,"sf,science fiction",1433174961 +110482,260,space opera,1433174974 +110482,1175,dark humor,1433193805 +110482,1175,dystopia,1433193842 +110482,1175,French,1433193814 +110482,1175,post-apocalyptic,1433193802 +110482,1175,quirky,1433193829 +110482,1175,unusual,1433193853 +110482,1175,weird,1433193821 +110482,1217,Akira Kurosawa,1433195915 +110482,1339,vampires,1433195417 +110482,1339,Winona Ryder,1433195425 +110482,1732,cult film,1433232326 +110482,1732,dark comedy,1433232289 +110482,1732,drugs,1433232285 +110482,1732,quirky,1433232301 +110482,1732,satirical,1433232298 +110482,1921,existentialism,1433194654 +110482,1921,great soundtrack,1433194657 +110482,1921,mathematics,1433194638 +110482,1921,mindfuck,1433194647 +110482,1921,stylized,1433194666 +110482,2764,rich,1433201647 +110482,2931,Emir Kusturica,1433233636 +110482,2931,gypsy,1433233620 +110482,2931,hallucinatory,1433233623 +110482,2959,dark comedy,1433194263 +110482,2959,quirky,1433194259 +110482,2959,social commentary,1433194267 +110482,4226,cult film,1433194169 +110482,4226,investigation,1433194194 +110482,4226,twist ending,1433194201 +110482,4370,artificial intelligence,1433194332 +110482,4370,fairy tale,1433194345 +110482,4370,robots,1433194336 +110482,4848,Enigmatic,1433194722 +110482,4848,Mindfuck,1433194731 +110482,4848,Nudity (Full Frontal - Notable),1433194713 +110482,4878,teen,1433701508 +110482,4878,teen movie,1433701491 +110482,5244,samurai,1433195753 +110482,5618,animation,1433196208 +110482,5618,dreamlike,1433196133 +110482,5618,fairy tale,1433196170 +110482,5618,Hayao Miyazaki,1433196165 +110482,5618,imaginative,1433196188 +110482,5618,Studio Ghibli,1433196120 +110482,6953,melancholic,1433708966 +110482,6953,sean penn,1433708969 +110482,7076,Steve McQueen,1433201541 +110482,7256,mountain climbing,1433723557 +110482,7256,nature,1433723563 +110482,7256,survival,1433723567 +110482,8014,character driven,1433724524 +110482,8370,Japan,1433195717 +110482,8370,Takeshi Kitano,1433195712 +110482,8507,creepy,1433233694 +110482,8507,cult classic,1433233702 +110482,8507,cult film,1433233683 +110482,8644,artificial intelligence,1433204382 +110482,8644,Will Smith,1433204393 +110482,26928,Eric Rohmer,1433194907 +110482,26928,french,1433194916 +110482,30803,very little dialogue,1433254944 +110482,36517,corruption,1433708804 +110482,36517,social commentary,1433708801 +110482,36517,tense,1433708812 +110482,37967,yakuza,1433195838 +110482,41285,non-hollywood ending,1433234334 +110482,41285,Woody Allen,1433234322 +110482,48774,apocalypse,1433703166 +110482,48774,survival,1433703170 +110482,63072,depressing,1433703216 +110482,63072,post-apocalyptic,1433703223 +110482,63072,survival,1433703212 +110482,64957,Cate Blanchett,1433254791 +110482,64957,drama,1433254805 +110482,64957,original plot,1433254798 +110482,70286,fake documentary,1433703129 +110482,70286,intelligent sci-fi,1433703124 +110482,70286,mockumentary,1433703105 +110482,70286,satire,1433703136 +110482,70286,social commentary,1433703140 +110482,74553,medieval,1433711771 +110482,74553,stylized,1433711767 +110482,77201,beautiful scenery,1433612763 +110482,77201,minimal dialogue,1433612773 +110482,77201,vikings,1433612757 +110482,79132,alternate reality,1433702926 +110482,79132,complicated,1433702942 +110482,79132,dreamlike,1433702930 +110482,79132,Leonardo DiCaprio,1433702976 +110482,79132,mindfuck,1433702946 +110482,79132,philosophy,1433702938 +110482,85312,old people,1433204054 +110482,85312,sad,1433204010 +110482,86142,feudal japan,1433195792 +110482,86947,survival,1435619029 +110482,101864,aliens,1433204196 +110482,101864,atmospheric,1433204169 +110482,101864,cliche ending,1433204151 +110482,101864,post-apocalyptic,1433204158 +110482,101864,twists & turns,1433204173 +110482,104841,3D effects,1433703048 +110482,104841,bad science,1433193143 +110482,104841,predictable,1433193177 +110482,104841,sandra bullock,1433193187 +110482,104841,visually appealing,1433703022 +110482,114554,japan,1433711734 +110482,115617,Disney,1433711558 +110482,117176,science,1433702427 +110482,117529,Predictible,1435605057 +110482,117877,cartoon for grown-ups,1433711900 +110482,118900,female protagonist,1433702595 +110482,118900,hiking,1433702582 +110482,122882,action,1433721461 +110482,122882,action movie,1433721419 +110482,130512,drama,1435620650 +110482,130512,french,1435620677 +110482,130512,hospital,1435620533 +110482,130512,immigration,1435620573 +110482,143271,drama,1443639496 +110485,47,serial killer,1137587849 +110485,353,romance,1137588807 +110485,500,divorce,1137500440 +110485,527,war,1137509573 +110485,2058,kevin Spacey,1137510400 +110485,2324,Holocaust,1137588253 +110485,2762,I see dead people,1137589316 +110485,3147,Tom Hanks,1137588511 +110485,4306,fairy tales,1137500327 +110485,4383,mystery,1137578714 +110485,4896,Magic,1137510028 +110485,5816,Magic,1137510086 +110485,5952,high fantasy,1137578408 +110485,8360,fable,1137510725 +110485,40339,Children,1137511461 +110545,118302,comedy,1435507804 +110545,118302,moscow,1435507804 +110545,118302,retro,1435507804 +110545,125185,physics,1432415896 +110545,125185,radiation,1432415896 +110545,125185,soviet union,1432415896 +110588,260,Action comedy,1433787159 +110588,260,sci fi,1433787153 +110598,648,Best of De Palma,1198810201 +110619,356,comedy,1423182827 +110619,356,historical,1423182827 +110619,356,romance,1423182827 +110619,541,artificial intelligence,1306251680 +110619,541,cyberpunk,1306251661 +110619,541,future,1306251676 +110619,541,futuristic,1306251669 +110619,541,genetics,1306251685 +110619,541,imdb top 250,1306251683 +110619,541,robots,1306251667 +110619,541,sci-fi,1306251665 +110619,741,artificial intelligence,1338913520 +110619,741,sci-fi,1338913524 +110619,1246,English literature,1306252532 +110619,1246,inspirational,1306252535 +110619,1246,philosophy,1306252524 +110619,1246,teen,1306252528 +110619,1907,ending kinda ruined it,1369264184 +110619,2181,sexism,1374257878 +110619,2571,atmospheric,1306251758 +110619,2571,cyberpunk,1306251752 +110619,2571,fantasy,1306251755 +110619,2571,sci-fi,1306251744 +110619,2571,surreal,1306251748 +110619,2571,thought-provoking,1306251764 +110619,2571,virtual reality,1306251746 +110619,2657,cult classic,1326136153 +110619,2657,cult film,1326136150 +110619,2657,homosexuality,1326136156 +110619,2657,Quirky,1326136159 +110619,2706,comedy,1306253732 +110619,2706,not funny,1306253729 +110619,2706,Nudity (Topless - Notable),1306253726 +110619,2706,stupid,1306253722 +110619,2706,teen comedy,1306253713 +110619,2706,Teen movie,1306253715 +110619,2706,virginity,1306253720 +110619,3949,atmospheric,1332249227 +110619,3949,emotional,1332249222 +110619,3949,imdb top 250,1332249217 +110619,3949,psychology,1332249201 +110619,3949,social commentary,1332249204 +110619,3996,atmospheric,1306253047 +110619,3996,beautifully filmed,1306253050 +110619,3996,Kung Fu,1306253025 +110619,3996,stylized,1306253031 +110619,4090,nostalgic,1369263868 +110619,4718,Notable Nudity,1306253809 +110619,4718,Nudity (Topless),1306253806 +110619,4718,teen,1306253799 +110619,4718,tits,1306253801 +110619,5618,anime,1306320607 +110619,5618,fantasy,1306320605 +110619,5690,anime,1306252099 +110619,5690,based on a true story,1306252105 +110619,5690,Studio Ghibli,1306252090 +110619,5690,tear jerker,1306252112 +110619,5690,war,1306252095 +110619,5690,World War II,1306252093 +110619,5971,anime,1306251903 +110619,5971,Cute,1306251905 +110619,5971,fantasy,1306251907 +110619,5971,Japan,1317665559 +110619,5971,Studio Ghibli,1306251915 +110619,7090,amazing photography,1306253118 +110619,7090,atmospheric,1306253126 +110619,7090,Beautiful,1306253129 +110619,7090,China,1317665605 +110619,7090,martial arts,1306253122 +110619,8983,Beautiful,1306253085 +110619,8983,China,1317665594 +110619,8983,martial arts,1306253094 +110619,8983,stylized,1306253096 +110619,31658,anime,1317665579 +110619,31658,Hayao Miyazaki,1317665583 +110619,31658,steampunk,1317665581 +110619,34405,sci-fi,1336076762 +110619,41571,romance,1306320646 +110619,41571,women,1306320648 +110619,48394,bittersweet,1306252007 +110619,48394,fairy tale,1306252016 +110619,48394,fantasy,1306252013 +110619,48394,stylized,1306252035 +110619,48394,twist ending,1306252000 +110619,48774,depressing,1317665369 +110619,48774,future,1317665339 +110619,48774,futuristic,1317665342 +110619,48774,imdb top 250,1317665344 +110619,48774,sci-fi,1317665348 +110619,55901,atmospheric,1336847403 +110619,55901,Best of Rotten Tomatoes: All Time,1336847412 +110619,55901,dark comedy,1336847435 +110619,55901,depressing,1336847492 +110619,55901,Roy Andersson,1336847420 +110619,55901,Swedish,1336847423 +110619,55901,too artsy,1336847441 +110619,57504,Anime,1306887961 +110619,57504,time travel,1306887963 +110619,59126,atheism,1317665828 +110619,59126,Christianity,1317665822 +110619,59126,religion,1317665826 +110619,60069,Animation,1306251879 +110619,60069,artificial intelligence,1306251876 +110619,60069,Post apocalyptic,1306251864 +110619,60069,robots,1306251867 +110619,60069,Sci-Fi,1306251868 +110619,60069,space,1306251871 +110619,61240,strange,1306253243 +110619,61240,swedish,1306253231 +110619,61240,vampire,1306253234 +110619,61240,vampires,1306253228 +110619,65063,atmospheric,1336847226 +110619,65063,brothers,1336847257 +110619,65063,bullying,1336848353 +110619,65063,depressing,1336847098 +110619,65063,Nudity (Topless),1336847315 +110619,65063,realistic,1336848308 +110619,65063,Sweden,1336847129 +110619,68237,artificial intelligence,1336312000 +110619,68237,melancholy,1336312015 +110619,68237,moon,1336312011 +110619,68237,Sci-fi,1336312013 +110619,72998,cliche,1336849229 +110619,77357,democracy,1336847563 +110619,77357,freedom of expression,1336847574 +110619,77357,law,1336847622 +110619,77357,poison,1336847727 +110619,77357,WORK ETHICS,1336847739 +110619,78499,adventure,1306252225 +110619,78499,childhood,1306252220 +110619,78499,Pixar,1306252210 +110619,78499,toys,1306252214 +110619,79702,cultural references,1306251809 +110619,79702,cute,1306251801 +110619,79702,fight scenes,1306251804 +110619,79702,video games,1306251796 +110619,79702,videogame like,1306251795 +110619,86279,nuclear,1336849607 +110619,86882,time travel,1342093806 +110619,87222,'The weapon',1369263661 +110619,87222,fat jokes,1369263637 +110619,87222,Weak plot,1369263595 +110619,89904,Oscar (Best Picture),1332247392 +110619,89904,To See,1332247381 +110619,90524,cheesy bad,1337191223 +110619,90524,Not sure if ironic,1337191216 +110619,90647,animation,1332257974 +110619,90647,cats,1332257977 +110619,90647,parody,1332257979 +110619,90647,Self-referential,1332257982 +110619,91890,Meryl Streep,1336076680 +110619,91890,strong female lead,1336076687 +110619,92259,based on a true story,1339619554 +110619,93805,spaceships,1336076637 +110619,93805,steampunk,1336076642 +110619,93892,comedy,1451081782 +110619,93892,romantic,1451081789 +110619,93892,unique romantic comedy,1451081773 +110619,94482,bananas,1336848671 +110619,94482,business,1336848756 +110619,94482,democracy,1336848682 +110619,94482,freedom of expression,1336848717 +110619,94482,journalism,1336848896 +110619,94482,lawsuit,1336848676 +110619,94482,threat,1336848772 +110619,147841,documentary,1448490240 +110620,32,great ending,1368473071 +110620,32,original,1368472875 +110620,47,great ending,1368473072 +110620,50,storytelling,1368472920 +110620,70,cult classic,1368473035 +110620,111,loneliness,1368472946 +110620,150,dramatic,1368472971 +110620,169,family,1368473058 +110620,204,action,1368472981 +110620,232,relationships,1368472992 +110620,318,great ending,1368473071 +110620,455,family,1368473058 +110620,508,dramatic,1368472971 +110620,668,criterion,1368472931 +110620,858,great acting,1368473023 +110620,858,oscar (best directing),1368472960 +110620,971,talky,1368473083 +110620,1015,family,1368473058 +110620,1016,family,1368473058 +110620,1089,original,1368472875 +110620,1172,mentor,1368472891 +110620,1199,cerebral,1368473106 +110620,1199,visually appealing,1368473011 +110620,1199,weird,1368473002 +110620,1213,oscar (best directing),1368472960 +110620,1241,cult classic,1368473035 +110620,1248,criterion,1368472931 +110620,1255,cult classic,1368473035 +110620,1299,dramatic,1368472971 +110620,1307,relationships,1368472992 +110620,1552,action,1368472981 +110620,1608,action,1368472981 +110620,1623,horror,1368473047 +110620,1639,relationships,1368472992 +110620,1704,mentor,1368472891 +110620,1722,action,1368472981 +110620,1952,loneliness,1368472946 +110620,1991,horror,1368473047 +110620,2076,weird,1368473002 +110620,2167,action,1368472981 +110620,2194,oscar (best directing),1368472960 +110620,2315,horror,1368473047 +110620,2335,comedy,1368472906 +110620,2420,mentor,1368472891 +110620,2460,horror,1368473047 +110620,2762,great ending,1368473072 +110620,2858,great acting,1368473023 +110620,3006,dramatic,1368472971 +110620,3018,horror,1368473047 +110620,3070,cult classic,1368473035 +110620,3147,oscar (best directing),1368472960 +110620,3157,family,1368473058 +110620,3421,comedy,1368472906 +110620,3470,criterion,1368472931 +110620,3986,action,1368472981 +110620,4085,comedy,1368472906 +110620,4128,cult classic,1368473035 +110620,4226,storytelling,1368472920 +110620,4725,horror,1368473047 +110620,4848,visually appealing,1368473012 +110620,4878,original,1368472875 +110620,4878,weird,1368473002 +110620,5452,family,1368473058 +110620,5945,loneliness,1368472946 +110620,5995,dramatic,1368472971 +110620,6987,criterion,1368472931 +110620,7147,story,1368473095 +110620,7327,criterion,1368472931 +110620,8154,criterion,1368472931 +110620,8330,black comedy,1290735156 +110620,8641,comedy,1368472906 +110620,56782,cerebral,1368473106 +110620,79132,cerebral,1368473107 +110642,2571,action,1450258882 +110642,2571,alternate reality,1450258886 +110642,2571,artificial intelligence,1450258907 +110642,2571,computers,1450258911 +110642,2571,philosophy,1450258903 +110642,2571,sci-fi,1450258868 +110642,2571,Special Effects,1450258898 +110642,2571,virtual reality,1450258877 +110651,390,dvd,1195583234 +110651,1161,dvd,1195583074 +110651,1196,dvd,1195583152 +110651,1289,dvd,1195583187 +110651,2288,dvd,1195583132 +110651,2366,dvd,1195583200 +110651,2459,dvd,1195583140 +110651,2529,dvd,1195583167 +110651,2648,dvd,1195583223 +110651,3216,dvd,1195583067 +110651,3652,dvd,1195583264 +110651,4044,dvd,1195583273 +110651,4848,dvd,1195582839 +110651,5165,dvd,1195583042 +110651,5542,dvd,1195583180 +110651,6662,dvd,1195583174 +110651,7300,dvd,1195583060 +110651,7387,dvd,1195583251 +110651,7757,dvd,1195583207 +110651,7766,dvd,1195583119 +110651,7802,dvd-r,1195582826 +110651,27727,dvd,1195583214 +110691,6,vontatott,1137663985 +110752,102070,alcohol,1422989344 +110752,102070,alien,1422989344 +110752,102070,wierd,1422989344 +110774,50,conspiracy,1195078541 +110774,147,Leonardo DiCaprio,1195150891 +110774,608,frances mcdormand,1196104970 +110774,608,steve buscemi,1196104956 +110774,1245,Coen Brothers,1197916086 +110774,1245,John Turturro,1197916086 +110774,1245,Prohibition,1197916086 +110774,1500,a little soft,1196577638 +110774,1500,good acting,1196574933 +110774,3275,overblown,1197410609 +110774,3275,stupid premise??,1197410643 +110774,3424,spike lee,1194995935 +110774,4973,goofy,1195207042 +110774,5525,cooking,1196022527 +110774,7256,near death,1196059606 +110774,7361,jim carrey,1194995947 +110774,7361,Michel Gondry,1194995956 +110774,7766,Kurosawa,1194995629 +110774,8910,Jason Schwartzman,1194996056 +110774,8910,Mark Wahlberg,1194996056 +110774,27788,Adrien Brody,1196824531 +110774,27788,Keira Knightley,1196824531 +110774,27864,lesbian sex scene,1194344477 +110774,27864,nudity,1194344451 +110774,27864,spike lee,1194344477 +110774,30749,Don Cheadle,1194996029 +110774,45210,fraudulent conspiracy cover-up,1197581002 +110774,45210,hollywood playing it's part in 9/11,1197581002 +110774,45210,no need to see,1197581002 +110774,47423,Ryan Gosling,1194996010 +110774,48516,Jack Nicholson,1194995920 +110774,48774,Clive Owen,1194997279 +110774,49272,James Bond,1194995792 +110774,51935,conspiracy,1199939949 +110774,55247,nature wildlife,1194336657 +110774,55247,self discovery,1194336657 +110774,55247,travel,1194336657 +110774,55267,Steve Carell,1194995862 +110774,55269,Jason Schwartzman,1194995885 +110774,55269,Owen Wilson,1194995873 +110774,55444,beautiful,1196352490 +110774,55444,great acting,1196352490 +110774,55444,great music,1196352490 +110774,55444,heartwrenching,1196352490 +110774,55820,coen brothers,1196189746 +110774,55820,josh brolin,1196189740 +110774,56367,excellent script,1199554531 +110792,260,brilliant,1439891730 +110792,260,moving,1439891744 +110793,7361,film style,1240868602 +110793,7361,too long,1240868618 +110793,60766,actual footage,1240868401 +110793,60766,emotion,1240868424 +110793,60766,reenactments,1240868415 +110793,60766,too long,1240868459 +110793,63082,acting,1240868313 +110793,63082,cinematography,1240868299 +110793,63082,music,1240867787 +110793,63082,story,1240868323 +110793,64575,cinematography,1240868537 +110793,64575,Meryl Streep,1240868489 +110793,64575,Philip Seymour Hoffman,1240868491 +110793,64575,viola davis,1240868541 +110802,296,drugs,1432402424 +110802,296,organised crime,1432402424 +110802,296,r:violence,1432402424 +110825,27803,terminal illness,1276670742 +110840,596,Disney,1139799812 +110840,6539,Disney,1139799813 +110840,6539,Johnny Depp,1139799813 +110848,21,author:Elmore Leonard,1270349241 +110848,22,detective,1368064370 +110848,32,setting:Philadelphia,1268620267 +110848,39,teen movie,1368064115 +110848,46,women,1368064053 +110848,50,anti-hero,1270325792 +110848,50,unreliable narrators,1270325709 +110848,145,Michael Bay,1245633098 +110848,160,author:Michael Crichton,1271299642 +110848,163,stylish,1368064012 +110848,218,women,1368064053 +110848,225,author:Michael Crichton,1271299619 +110848,257,Author: John Katzenbach,1262404125 +110848,296,multiple storylines,1248732742 +110848,303,Old Tucson Studios,1272166803 +110848,318,prison,1275621220 +110848,318,prison escape,1275621226 +110848,349,Tom Clancy,1241895267 +110848,368,Based on a TV show,1270349887 +110848,368,poker,1270349853 +110848,442,Business is the antagonist,1250830454 +110848,457,based on a TV show,1270349035 +110848,457,Business is the antagonist,1250831758 +110848,458,Old Tucson Studios,1272166575 +110848,471,Business is the antagonist,1251179733 +110848,480,author:Michael Crichton,1271299815 +110848,480,Business is the antagonist,1250831789 +110848,487,Old Tucson Studios,1272166715 +110848,508,setting:Philadelphia,1280803586 +110848,511,Sports Coordinator:Mark Ellis,1269915695 +110848,517,author:Michael Crichton,1271299777 +110848,520,Robin Hood,1273201704 +110848,521,neo-noir,1368064210 +110848,541,Business is the antagonist,1250831085 +110848,553,Old Tucson Studios,1272166680 +110848,589,Business is the antagonist,1250831143 +110848,733,Michael Bay,1251440074 +110848,733,prison,1275621429 +110848,762,Carl Hiaasen,1241894743 +110848,780,aviation,1279243792 +110848,858,masterpiece,1368063947 +110848,908,trains,1274139941 +110848,912,anti-hero,1267156055 +110848,933,anti-hero,1267156490 +110848,940,Robin Hood,1273201726 +110848,950,detective,1368064370 +110848,969,author:C. S. Forester,1270684654 +110848,1027,Robin Hood,1273201655 +110848,1033,unlikely friendships,1368064307 +110848,1036,christmas,1267152846 +110848,1042,musicians,1264226249 +110848,1068,noir thriller,1368063887 +110848,1088,dancing,1368064237 +110848,1089,stylish,1368064011 +110848,1093,musicians,1353723509 +110848,1101,aerial dogfights,1279243746 +110848,1101,aviation,1279243742 +110848,1101,Navy,1270350175 +110848,1101,U.S.S. Enterprise (CVN-65),1140314627 +110848,1188,dancing,1368064237 +110848,1199,Trilogy of the Imagination,1264043540 +110848,1201,Ennio Morricone,1261461884 +110848,1209,Ennio Morricone,1261461929 +110848,1213,anti-hero,1267156611 +110848,1214,Business is the antagonist,1250831020 +110848,1215,anti-hero,1267156696 +110848,1220,musicians,1264226390 +110848,1227,Ennio Morricone,1261462163 +110848,1228,boxing,1270349383 +110848,1231,aviation,1279243977 +110848,1231,U.S.S. Coral Sea,1265932457 +110848,1259,unlikely friendships,1368064307 +110848,1262,prison,1275621577 +110848,1262,prison escape,1275621580 +110848,1276,prison,1275621239 +110848,1286,Location:Macinac Island,1269321215 +110848,1288,musicians,1353723291 +110848,1344,suspenseful,1368064146 +110848,1374,sequel better than original,1211306945 +110848,1376,U.S.S. Ranger (CV 61),1140385538 +110848,1379,Old Tucson Studios,1272166544 +110848,1385,U.S.S. Missouri,1140313826 +110848,1387,suspenseful,1368064146 +110848,1393,Sports Coordinator:Mark Ellis,1269915313 +110848,1442,mentor,1368063926 +110848,1500,anti-hero,1267156678 +110848,1500,dark comedy,1351819482 +110848,1527,Business is the antagonist,1250830342 +110848,1544,author:Michael Crichton,1271299744 +110848,1544,Business is the antagonist,1250831863 +110848,1552,prison,1275621271 +110848,1610,Tom Clancy,1241895198 +110848,1610,U.S.S. Blueback,1140358407 +110848,1610,U.S.S. Enterprise (CVN-65),1140358170 +110848,1610,U.S.S. Reuben James,1140358017 +110848,1617,anti-hero,1270348882 +110848,1617,great ending,1368064261 +110848,1620,detective,1368064370 +110848,1625,twist ending,1241922483 +110848,1678,women,1368064053 +110848,1754,Philadelphia,1268620019 +110848,1754,setting:Philadelphia,1268620166 +110848,1754,unreliable narrators,1270325963 +110848,1772,musicians,1264226463 +110848,1779,author:Michael Crichton,1271299837 +110848,1810,setting:New Orleans,1278274404 +110848,1834,CONS AND SCAMS,1271302209 +110848,1834,twist ending,1241922443 +110848,1917,bad science,1245633371 +110848,1917,Ben Affleck,1251440365 +110848,1917,Michael Bay,1245633404 +110848,1954,boxing,1270349348 +110848,1954,setting:Philadelphia,1242105686 +110848,1956,Timothy Hutton,1279856718 +110848,1968,teen movie,1368064115 +110848,2009,Business is the antagonist,1250831279 +110848,2011,Business is the antagonist,1250831334 +110848,2012,trains,1274139928 +110848,2019,masterpiece,1368063947 +110848,2105,Business is the antagonist,1250831909 +110848,2124,Based on a TV show,1270349060 +110848,2144,teen movie,1368064115 +110848,2145,teen movie,1368064115 +110848,2181,setting:Philadelphia,1280803171 +110848,2194,Ennio Morricone,1261461735 +110848,2231,poker,1270349912 +110848,2335,Sports Coordinator:Mark Ellis,1269915615 +110848,2373,Ennio Morricone,1266887531 +110848,2376,Business is the antagonist,1250830704 +110848,2399,Christmas,1267153084 +110848,2409,setting:Philadelphia,1242105869 +110848,2410,boxing,1270349432 +110848,2410,setting:Philadelphia,1268620145 +110848,2411,boxing,1270349394 +110848,2412,boxing,1270349468 +110848,2412,setting:Philadelphia,1280803645 +110848,2413,unreliable narrators,1270325866 +110848,2423,christmas,1267152826 +110848,2447,Sports Coordinator:Mark Ellis,1269915199 +110848,2478,Old Tucson Studios,1272166489 +110848,2490,"""The Hunter""",1385252393 +110848,2490,"author:""Richard Stark""",1270350612 +110848,2490,director's cut is better,1270350522 +110848,2502,Business is the antagonist,1250831609 +110848,2550,supernatural,1368063969 +110848,2561,Andrew Klavan,1241894634 +110848,2643,bad science,1269321078 +110848,2686,musicians,1264226043 +110848,2716,supernatural,1368063969 +110848,2762,setting:Philadelphia,1268620331 +110848,2763,anti-hero,1267156579 +110848,2764,anti-hero,1267156561 +110848,2826,author:Michael Crichton,1271299974 +110848,2866,musicians,1368064081 +110848,2916,Business is the antagonist,1250831458 +110848,2944,anti-hero,1281743685 +110848,2948,sequel better than original,1211307061 +110848,2951,Ennio Morricone,1261462236 +110848,2968,Trilogy of the Imagination,1264043438 +110848,2984,less than 300 ratings,1259036836 +110848,2985,Business is the antagonist,1250829897 +110848,3005,detective,1368064370 +110848,3006,Business is the antagonist,1251174659 +110848,3034,Robin Hood,1273201687 +110848,3039,Business is the antagonist,1250832031 +110848,3039,setting:Philadelphia,1268620363 +110848,3060,musicians,1264226115 +110848,3066,U.S.S. Ticonderoga (CV-14),1384136328 +110848,3066,U.S.S. Yorktown (CVS-10),1384136441 +110848,3087,christmas,1267152873 +110848,3104,Arizona,1300076137 +110848,3104,setting:LA,1300076120 +110848,3104,setting:NYC,1300076093 +110848,3147,prison,1275621529 +110848,3173,Sports Coordinator:Mark Ellis,1269915166 +110848,3198,prison,1275621316 +110848,3198,prison escape,1275621318 +110848,3210,teen movie,1368064115 +110848,3256,Tom Clancy,1241895096 +110848,3406,author:C. S. Forester,1270684588 +110848,3406,Napoleanic War,1269306616 +110848,3406,Navy,1270345003 +110848,3406,seafaring,1269306823 +110848,3408,Business is the antagonist,1250832131 +110848,3478,musicians,1264226082 +110848,3487,Old Tucson Studios,1272165278 +110848,3499,suspenseful,1368064146 +110848,3508,Old Tucson Studios,1272166280 +110848,3594,dancing,1368064237 +110848,3681,Ennio Morricone,1243831876 +110848,3698,Business is the antagonist,1250830880 +110848,3764,sequel,1251945439 +110848,3791,dancing,1368064237 +110848,3798,supernatural,1368063969 +110848,3798,suspenseful,1368064146 +110848,3836,anti-hero,1270778501 +110848,3836,caper,1270778540 +110848,3836,World War II,1270778486 +110848,3861,football,1246513982 +110848,3861,Sports Coordinator:Mark Ellis,1269914891 +110848,3869,Business is the antagonist,1269729084 +110848,3905,less than 300 ratings,1232465241 +110848,3994,setting:Philadelphia,1268620401 +110848,4002,trains,1274140034 +110848,4007,Business is the antagonist,1250829683 +110848,4011,stylish,1368064011 +110848,4018,women,1368064053 +110848,4086,setting:New Orleans,1278274355 +110848,4221,football,1246514015 +110848,4226,great ending,1368064261 +110848,4310,jerry bruckheimer,1245633270 +110848,4310,Michael Bay,1245633315 +110848,4329,Old Tucson Studios,1272164963 +110848,4339,trains,1274140002 +110848,4396,Old Tucson Studios,1272166442 +110848,4401,less than 300 ratings,1413873073 +110848,4420,less than 300 ratings,1232466380 +110848,4467,Trilogy of the Imagination,1264043572 +110848,4494,less than 300 ratings,1232466725 +110848,4588,less than 300 ratings,1264222724 +110848,4588,musicians,1264226031 +110848,4589,musicians,1264226332 +110848,4593,less than 300 ratings,1270708251 +110848,4608,less than 300 ratings,1270350956 +110848,4720,supernatural,1368063970 +110848,4751,less than 300 ratings,1232423116 +110848,4798,based on a play,1427600871 +110848,4802,screwball comedy,1368064394 +110848,4814,Andrew Klavan,1241894676 +110848,4902,supernatural,1368063969 +110848,4925,less than 300 ratings,1312746717 +110848,4947,Las Vegas,1277788795 +110848,4947,Setting:Phoenix,1277781751 +110848,4954,Caper,1274139540 +110848,4958,U.S.S. Carl Vinscon (CVN-70),1166099643 +110848,4963,caper,1274139530 +110848,4974,Sports Coordinator:Mark Ellis,1269915061 +110848,5001,less than 300 ratings,1232466499 +110848,5033,John le Carre,1241894914 +110848,5144,less than 300 ratings,1272164843 +110848,5144,Old Tucson Studios,1272164854 +110848,5187,less than 300 ratings,1255844083 +110848,5219,Business is the antagonist,1250830979 +110848,5267,Sports Coordinator:Mark Ellis,1269914998 +110848,5300,Old Tucson Studios,1272164650 +110848,5307,less than 300 ratings,1232465278 +110848,5386,author:C. S. Forester,1270684962 +110848,5386,less than 300 ratings,1270684931 +110848,5386,Napoleanic War,1287710805 +110848,5400,Ben Affleck,1241895180 +110848,5400,Tom Clancy,1241895155 +110848,5418,Robert Ludlum,1241894970 +110848,5423,less than 300 ratings,1289416086 +110848,5435,less than 300 ratings,1272165327 +110848,5435,Old Tucson Studios,1272165334 +110848,5440,Cavalry Trillogy,1277435727 +110848,5499,Robin Hood,1273201634 +110848,5522,Business is the antagonist,1250831533 +110848,5648,less than 300 ratings,1232466679 +110848,5699,less than 300 ratings,1232423686 +110848,5699,Old Tucson Studios,1272166383 +110848,5804,Christmas,1267153142 +110848,5820,musicians,1368064080 +110848,5826,Cavalry Trillogy,1277435596 +110848,5829,less than 300 ratings,1273552445 +110848,5836,less than 300 ratings,1404083216 +110848,5836,setting:Washington DC,1404083236 +110848,5852,less than 300 ratings,1232466395 +110848,5882,pirates,1381716208 +110848,5915,less than 300 ratings,1232465428 +110848,5941,musicians,1353723168 +110848,6047,less than 300 ratings,1232423737 +110848,6064,less than 300 ratings,1232465260 +110848,6082,trains,1274139963 +110848,6237,musicians,1452386650 +110848,6301,brutality,1368064186 +110848,6303,author:Michael Crichton,1271299657 +110848,6314,less than 300 ratings,1232466457 +110848,6314,setting:New Orleans,1271130678 +110848,6323,twist ending,1241894436 +110848,6356,Old Tucson Studios,1272164681 +110848,6386,less than 300 ratings,1232423148 +110848,6394,less than 300 ratings,1294294140 +110848,6398,less than 300 ratings,1232423104 +110848,6401,less than 300 ratings,1272165646 +110848,6401,Old Tucson Studios,1272165656 +110848,6407,less than 300 ratings,1232423071 +110848,6446,less than 300 ratings,1274743496 +110848,6446,setting:New Orleans,1274743572 +110848,6446,Texas,1274743659 +110848,6455,Alaska,1280380915 +110848,6455,less than 300 ratings,1280380908 +110848,6457,author:C. S. Forester,1270684812 +110848,6457,less than 300 ratings,1270684801 +110848,6459,less than 300 ratings,1349060895 +110848,6462,less than 300 ratings,1269578366 +110848,6470,less than 300 ratings,1299729460 +110848,6478,less than 300 ratings,1272166024 +110848,6478,Old Tucson Studios,1272166032 +110848,6539,anti-hero,1267156730 +110848,6539,pirates,1267156747 +110848,6548,Michael Bay,1245633543 +110848,6595,Based on a TV show,1270349014 +110848,6652,less than 300 ratings,1272165752 +110848,6652,Old Tucson Studios,1272165779 +110848,6755,Bruce Campbell,1344121576 +110848,6809,less than 300 ratings,1281307313 +110848,6809,setting:New Orleans,1281307302 +110848,6817,less than 300 ratings,1232465300 +110848,6867,human relationship,1241890660 +110848,6867,trains,1241890693 +110848,6867,unlikely friendships,1368064307 +110848,6879,setting:New Orleans,1278274316 +110848,6887,Sports Coordinator:Mark Ellis,1269914866 +110848,6947,Author:Patrick O'Brian,1269307004 +110848,6947,Napoleanic War,1269306640 +110848,6947,navy,1270348796 +110848,6947,seafaring,1270348802 +110848,6959,author:Michael Crichton,1271299680 +110848,6990,author:Michael Crichton,1271299716 +110848,6990,trains,1274139912 +110848,6994,less than 300 ratings,1395551912 +110848,7061,less than 300 ratings,1232466486 +110848,7168,less than 300 ratings,1334466169 +110848,7188,less than 300 ratings,1298094385 +110848,7195,less than 300 ratings,1232423039 +110848,7212,less than 300 ratings,1298173130 +110848,7217,less than 300 ratings,1232466881 +110848,7219,less than 300 ratings,1232464998 +110848,7223,noir thriller,1368063887 +110848,7235,brutality,1368064186 +110848,7263,Sports Coordinator:Mark Ellis,1269914818 +110848,7330,less than 300 ratings,1232422875 +110848,7397,less than 300 ratings,1232422907 +110848,7581,Ayn Rand,1350872889 +110848,7581,based on a book,1350872832 +110848,7581,less than 300 ratings,1350872840 +110848,7583,less than 300 ratings,1232422917 +110848,7702,less than 300 ratings,1272164455 +110848,7702,Old Tucson Studios,1272164474 +110848,7759,melancholic,1368063838 +110848,7822,less than 300 ratings,1232422989 +110848,7898,less than 300 ratings,1232423006 +110848,7943,noir thriller,1368063887 +110848,7990,less than 300 ratings,1232466581 +110848,8132,Boxing,1270349493 +110848,8167,pirates,1267302557 +110848,8294,less than 300 ratings,1271299071 +110848,8334,less than 300 ratings,1282430982 +110848,8337,U.S.S. Kearsarge (CV-33),1140314220 +110848,8339,less than 300 ratings,1270344959 +110848,8339,Napoleanic War,1270344968 +110848,8339,Navy,1270344978 +110848,8339,seafaring,1270345062 +110848,8407,Business is the antagonist,1266197931 +110848,8407,less than 300 ratings,1266197909 +110848,8446,less than 300 ratings,1257997118 +110848,8493,aviation,1279243860 +110848,8494,less than 300 ratings,1232465414 +110848,8494,poker,1270349813 +110848,8524,less than 300 ratings,1402191549 +110848,8644,Business is the antagonist,1250830739 +110848,8653,less than 300 ratings,1272166226 +110848,8653,Old Tucson Studios,1272166238 +110848,8661,less than 300 ratings,1232466472 +110848,8665,Robert Ludlum,1241894995 +110848,8675,less than 300 ratings,1425609770 +110848,8689,Andrew Klavan,1241894604 +110848,8689,less than 300 ratings,1232423608 +110848,8765,less than 300 ratings,1268280476 +110848,8772,espionage,1241894889 +110848,8772,John le Carre,1241894883 +110848,8864,less than 300 ratings,1232466799 +110848,8864,Sports Coordinator:Mark Ellis,1269914751 +110848,8865,aviation,1279243907 +110848,8879,trains,1274139987 +110848,8920,less than 300 ratings,1232424154 +110848,8937,football,1246514192 +110848,8958,musicians,1271826445 +110848,8965,trains,1274140042 +110848,8984,caper,1274139568 +110848,25818,less than 300 ratings,1294027736 +110848,25828,adapted from:play,1274139457 +110848,25828,less than 300 ratings,1232466443 +110848,25835,adapted from:play,1253160090 +110848,25835,less than 300 ratings,1247114074 +110848,25855,Humphrey Bogart,1280094417 +110848,25855,less than 300 ratings,1280094457 +110848,25855,setting:NYC,1280094540 +110848,25861,less than 300 ratings,1299125620 +110848,25866,less than 300 ratings,1232424135 +110848,25866,pirates,1267302499 +110848,25879,less than 300 ratings,1274762635 +110848,25879,Nazis,1274762616 +110848,25879,setting:NYC,1274762670 +110848,25879,World War II,1274762616 +110848,25888,less than 300 ratings,1272832864 +110848,25888,Navy,1272832774 +110848,25888,propaganda,1272832757 +110848,25888,World War II,1272832747 +110848,25908,less than 300 ratings,1246128961 +110848,25911,less than 300 ratings,1264979561 +110848,25916,less than 300 ratings,1247111404 +110848,25927,noir thriller,1368063887 +110848,25938,Cavalry Trillogy,1277435616 +110848,25938,less than 300 ratings,1277435634 +110848,26021,less than 300 ratings,1251504655 +110848,26021,musicians,1353723214 +110848,26022,less than 300 ratings,1329966815 +110848,26022,Lon Chaney,1329966825 +110848,26067,less than 300 ratings,1272165073 +110848,26067,Old Tucson Studios,1272165088 +110848,26085,Napoleanic War,1269306657 +110848,26085,Navy,1270345021 +110848,26085,seafaring,1269306805 +110848,26101,less than 300 ratings,1272163544 +110848,26101,Old Tucson Studios,1272165167 +110848,26113,less than 300 ratings,1245390765 +110848,26123,less than 300 ratings,1273201929 +110848,26123,Robin Hood,1273201929 +110848,26138,anti-hero,1275629750 +110848,26138,less than 300 ratings,1275621044 +110848,26138,prison,1275621196 +110848,26138,WWII,1275621061 +110848,26139,less than 300 ratings,1408325293 +110848,26139,Navy,1408325340 +110848,26139,World War II,1408325328 +110848,26172,"""The Hunter""",1385252459 +110848,26172,"author:""Richard Stark""",1270350637 +110848,26172,less than 300 ratings,1239078693 +110848,26213,less than 300 ratings,1264825370 +110848,26333,author:Michael Crichton,1271299905 +110848,26333,less than 300 ratings,1271299916 +110848,26464,less than 300 ratings,1232465031 +110848,26465,less than 300 ratings,1271299471 +110848,26767,less than 300 ratings,1381706303 +110848,26767,McCarthyism,1381706343 +110848,26770,anti-hero,1267156295 +110848,26770,Boxing,1269320903 +110848,26770,CONS AND SCAMS,1241894257 +110848,26770,less than 300 ratings,1232423618 +110848,26812,Business is the antagonist,1411283879 +110848,26812,less than 300 ratings,1411283988 +110848,27002,space,1241845480 +110848,27006,less than 300 ratings,1388981618 +110848,27155,less than 300 ratings,1407112942 +110848,27251,less than 300 ratings,1270351103 +110848,27373,baseball,1275006989 +110848,27373,less than 300 ratings,1275006997 +110848,27376,less than 300 ratings,1247936498 +110848,27584,less than 300 ratings,1253156713 +110848,27592,brutality,1368064185 +110848,27831,stylish,1368064011 +110848,30707,boxing,1270349533 +110848,30721,less than 300 ratings,1232422963 +110848,30721,Steve McQueen,1241895631 +110848,30818,musicians,1426369662 +110848,30952,less than 300 ratings,1272164890 +110848,30952,Old Tucson Studios,1272164899 +110848,31367,less than 300 ratings,1232423769 +110848,31485,less than 300 ratings,1311395007 +110848,31770,less than 300 ratings,1323041044 +110848,31785,melancholic,1368063838 +110848,31903,less than 300 ratings,1232464982 +110848,32019,author:Elmore Leonard,1270349216 +110848,32203,cancer,1354400415 +110848,32203,Chicago,1354400441 +110848,32203,football,1354400402 +110848,32203,less than 300 ratings,1354400395 +110848,32469,anti-hero,1267155986 +110848,32469,Christmas,1267152806 +110848,32469,less than 300 ratings,1267149808 +110848,33036,less than 300 ratings,1232465227 +110848,33646,Sports Coordinator:Mark Ellis,1269915646 +110848,33660,boxing,1270349358 +110848,33905,boxing,1270349576 +110848,33905,less than 300 ratings,1259386288 +110848,33930,less than 300 ratings,1363574432 +110848,34111,less than 300 ratings,1245391223 +110848,34319,Michael Bay,1245633229 +110848,34334,U.S.S. Abraham Lincoln (CVN 72),1140314856 +110848,34405,anti-hero,1267156021 +110848,34469,less than 300 ratings,1269578626 +110848,34488,less than 300 ratings,1263266349 +110848,36517,Business is the antagonist,1250829824 +110848,36517,John le Carre,1241894860 +110848,39777,less than 300 ratings,1245391064 +110848,39779,less than 300 ratings,1245390997 +110848,39934,less than 300 ratings,1378159126 +110848,39934,Navy,1378161497 +110848,39934,U.S.S. Kearsarge (CV-33),1378161426 +110848,39934,U.S.S. Oriskany (CV 34),1378161454 +110848,40819,musicians,1353723256 +110848,40988,less than 300 ratings,1262833427 +110848,41411,less than 300 ratings,1258696694 +110848,43677,aerial dogfights,1279243838 +110848,43677,aviation,1279243822 +110848,43677,less than 300 ratings,1269307252 +110848,44020,less than 300 ratings,1342840402 +110848,44020,The Avengers,1342840411 +110848,44195,Business is the antagonist,1250829862 +110848,44665,great ending,1368064261 +110848,44665,unreliable narrators,1282193201 +110848,44709,mentor,1368063926 +110848,44761,neo-noir,1368064209 +110848,44840,Sports Coordinator:Mark Ellis,1269915773 +110848,44949,Business is the antagonist,1250834711 +110848,44949,Carl Hiaasen,1241894702 +110848,44949,less than 300 ratings,1232423055 +110848,45722,anti-hero,1267156764 +110848,45722,pirates,1267156772 +110848,45732,setting:NYC,1278196355 +110848,46530,Sports Coordinator:Mark Ellis,1269914692 +110848,46653,less than 300 ratings,1280803429 +110848,46855,less than 300 ratings,1232424165 +110848,47099,San Francisco,1420423973 +110848,47484,less than 300 ratings,1331531962 +110848,47610,great ending,1368064261 +110848,47626,less than 300 ratings,1284433470 +110848,47626,prison,1284433474 +110848,47644,based on true story,1241894107 +110848,47644,eagles,1241894088 +110848,47644,football,1241894081 +110848,47644,Philadelphia,1241894061 +110848,47644,setting:Philadelphia,1241894072 +110848,47644,Sports Coordinator:Mark Ellis,1269914581 +110848,48161,football,1246513883 +110848,48161,less than 300 ratings,1232466418 +110848,48704,less than 300 ratings,1271298918 +110848,48711,less than 300 ratings,1232422929 +110848,49082,Old Tucson Studios,1272164422 +110848,49272,poker,1270350065 +110848,49278,setting:New Orleans,1271037524 +110848,49389,less than 300 ratings,1283053249 +110848,49389,not available from Netflix,1283053249 +110848,49651,boxing,1270349603 +110848,49651,setting:Philadelphia,1242105825 +110848,49793,Sports Coordinator:Mark Ellis,1269914554 +110848,51037,less than 300 ratings,1275006870 +110848,51660,less than 300 ratings,1232423750 +110848,51933,less than 300 ratings,1280803958 +110848,51933,setting:Philadelphia,1280803967 +110848,52591,less than 300 ratings,1232423091 +110848,52831,less than 300 ratings,1363574217 +110848,53125,anti-hero,1267156811 +110848,53322,caper,1274139553 +110848,53974,less than 300 ratings,1232466548 +110848,53996,Michael Bay,1245632940 +110848,54121,less than 300 ratings,1272164525 +110848,54121,Old Tucson Studios,1272164536 +110848,54121,Setting:Arizona,1312763524 +110848,54121,Setting:Tucson,1312763509 +110848,54272,watch the credits,1274315676 +110848,54286,Robert Ludlum,1241895031 +110848,54286,Schizo-cam,1241895024 +110848,54331,anti-hero,1284958631 +110848,54686,less than 300 ratings,1232423637 +110848,54775,less than 300 ratings,1232466606 +110848,55176,less than 300 ratings,1232465320 +110848,55250,football,1246514081 +110848,55250,less than 300 ratings,1232424188 +110848,55250,Sports Coordinator:Mark Ellis,1269914498 +110848,55444,musicians,1353723473 +110848,55687,less than 300 ratings,1232423703 +110848,55895,less than 300 ratings,1251439563 +110848,56339,supernatural,1368063970 +110848,56350,less than 300 ratings,1292192531 +110848,56350,Napoleanic War,1292192521 +110848,56350,Navy,1292192566 +110848,56508,less than 300 ratings,1232423135 +110848,56626,Robin Hood,1273201673 +110848,56719,less than 300 ratings,1300683870 +110848,56797,less than 300 ratings,1375052866 +110848,57326,less than 300 ratings,1232465206 +110848,57368,Schizo-cam,1274139835 +110848,57401,less than 300 ratings,1232465047 +110848,58111,less than 300 ratings,1244253217 +110848,58315,Sports Coordinator:Mark Ellis,1269915842 +110848,58404,less than 300 ratings,1429506174 +110848,58803,poker,1270349838 +110848,58839,football,1246513917 +110848,58839,less than 300 ratings,1232465390 +110848,59220,less than 300 ratings,1302929370 +110848,59315,Business is the antagonist,1250829756 +110848,59315,The Avengers,1324066098 +110848,59315,watch the credits,1274315554 +110848,59404,less than 300 ratings,1232423023 +110848,59594,Business is the antagonist,1250829967 +110848,59594,less than 300 ratings,1232423782 +110848,59854,less than 300 ratings,1247183049 +110848,60040,The Avengers,1324065947 +110848,60074,anti-hero,1275017966 +110848,60126,Based on a TV show,1270349113 +110848,60243,less than 300 ratings,1272165853 +110848,60243,Old Tucson Studios,1272165863 +110848,60311,pirates,1315544141 +110848,60728,less than 300 ratings,1232422892 +110848,61253,less than 300 ratings,1349060832 +110848,61285,less than 300 ratings,1401147507 +110848,61401,less than 300 ratings,1239941908 +110848,62586,less than 300 ratings,1232422955 +110848,62799,football,1246513699 +110848,62799,less than 300 ratings,1246513713 +110848,62970,less than 300 ratings,1235014822 +110848,63113,Schizo-cam,1274139726 +110848,63433,less than 300 ratings,1232423596 +110848,63481,less than 300 ratings,1327631870 +110848,63481,musicians,1327627385 +110848,64114,less than 300 ratings,1242539038 +110848,64701,less than 300 ratings,1249516769 +110848,64993,melancholic,1368063837 +110848,65256,less than 300 ratings,1247187157 +110848,65588,less than 300 ratings,1232476653 +110848,65642,less than 300 ratings,1248416579 +110848,66051,less than 300 ratings,1272164801 +110848,66051,Old Tucson Studios,1272164809 +110848,66068,less than 300 ratings,1340347778 +110848,66198,Business is the antagonist,1250829444 +110848,66371,mentor,1368063926 +110848,66385,less than 300 ratings,1269206672 +110848,66785,less than 300 ratings,1288058088 +110848,66785,trains,1288058045 +110848,66934,anti-hero,1267156708 +110848,67255,DragonTattoo,1330656545 +110848,68073,watch the credits,1277358512 +110848,68159,Business is the antagonist,1254089562 +110848,68288,less than 300 ratings,1254803439 +110848,68358,reboot,1243574971 +110848,68358,Star Trek,1243575203 +110848,69526,Michael Bay,1251440291 +110848,69654,prison,1275621474 +110848,69654,prison escape,1275621476 +110848,69746,less than 300 ratings,1252725184 +110848,69818,less than 300 ratings,1279159339 +110848,70432,less than 300 ratings,1420511617 +110848,70697,Business is the antagonist,1274136613 +110848,71129,less than 300 ratings,1260419634 +110848,71840,less than 300 ratings,1364968451 +110848,72308,less than 300 ratings,1262788631 +110848,72641,football,1275536713 +110848,73323,DragonTattoo,1330656678 +110848,74139,aerial dogfights,1279243770 +110848,74139,aviation,1279243723 +110848,74139,less than 300 ratings,1279243699 +110848,74382,less than 300 ratings,1277181895 +110848,74438,less than 300 ratings,1297737269 +110848,74510,DragonTattoo,1330656573 +110848,76763,less than 300 ratings,1283491994 +110848,76763,musicians,1283491975 +110848,77561,The Avengers,1324065968 +110848,77561,watch the credits,1274315577 +110848,77866,Robin Hood,1274744017 +110848,78467,less than 300 ratings,1390539869 +110848,78469,anti-hero,1276927077 +110848,78469,bad science,1281744193 +110848,80469,Batman,1332221811 +110848,80469,less than 300 ratings,1332221803 +110848,80469,superhero,1332221823 +110848,80469,Superman,1332221832 +110848,81191,less than 300 ratings,1301894501 +110848,81817,less than 300 ratings,1301894342 +110848,81845,excellent script,1368063991 +110848,84414,less than 300 ratings,1329435472 +110848,86332,The Avengers,1324065937 +110848,86332,watch the credits,1324065987 +110848,86355,Ayn Rand,1350872868 +110848,86355,less than 300 ratings,1339814961 +110848,86880,anti-hero,1334020923 +110848,86880,pirates,1334020914 +110848,87304,melancholic,1368063838 +110848,87975,less than 300 ratings,1363574292 +110848,88138,less than 300 ratings,1361668388 +110848,88140,The Avengers,1324066054 +110848,88140,watch the credits,1320016548 +110848,89745,Captain America,1338512806 +110848,89745,Hulk,1338512907 +110848,89745,Iron Man,1338512843 +110848,89745,Marvel,1338512714 +110848,89745,The Avengers,1338512784 +110848,89745,Thor,1338512867 +110848,89745,watch the credits,1342840361 +110848,89844,musicians,1327627554 +110848,90603,less than 300 ratings,1326766761 +110848,91126,less than 300 ratings,1353723409 +110848,91658,DragonTattoo,1330656710 +110848,91890,less than 300 ratings,1339131747 +110848,92234,less than 300 ratings,1349060772 +110848,93297,less than 300 ratings,1359333688 +110848,94748,1970s,1352146214 +110848,94748,basketball,1352146185 +110848,94748,less than 300 ratings,1352146177 +110848,94748,true story,1352146260 +110848,94748,underdog,1352146199 +110848,95510,Marvel,1353977945 +110848,95510,watch the credits,1353977916 +110848,96693,less than 300 ratings,1370213996 +110848,97304,anti-hero,1351819348 +110848,97304,less than 300 ratings,1351819386 +110848,97324,Ayn Rand,1364094120 +110848,97324,less than 300 ratings,1364094087 +110848,97908,less than 300 ratings,1361056559 +110848,97921,Philadelphia,1402870867 +110848,97921,setting:Philadelphia,1402870973 +110848,98585,less than 300 ratings,1388091053 +110848,98836,less than 300 ratings,1380401730 +110848,99813,less than 300 ratings,1407113099 +110848,100108,"""The Hunter""",1385252429 +110848,101207,less than 300 ratings,1400974471 +110848,101895,baseball,1376966289 +110848,101895,less than 300 ratings,1376966280 +110848,102432,less than 300 ratings,1398124902 +110848,102445,Star Trek,1381202578 +110848,103228,watch the credits,1390114711 +110848,103233,less than 300 ratings,1425609478 +110848,103596,less than 300 ratings,1420962171 +110848,103810,less than 300 ratings,1385955504 +110848,104141,less than 300 ratings,1394340130 +110848,104925,less than 300 ratings,1401083323 +110848,106214,less than 300 ratings,1392511747 +110848,107352,less than 300 ratings,1448237828 +110848,107406,less than 300 ratings,1414468050 +110848,108313,less than 300 ratings,1390277349 +110848,108501,less than 300 ratings,1421301175 +110848,108795,less than 300 ratings,1394340191 +110848,108928,less than 300 ratings,1405385824 +110848,109173,less than 300 ratings,1392511694 +110848,113501,less than 300 ratings,1417494574 +110848,113501,watch the credits,1417494524 +110848,117308,football,1418496317 +110848,117308,Less than 300 Ratings,1418496312 +110848,118426,based on a book,1418015524 +110848,118426,less than 300 ratings,1418015539 +110858,1370,action,1154468855 +110858,2355,kid flick,1154468823 +110859,171,gay,1138418588 +110859,858,Mafia,1175358266 +110859,858,visceral,1175358261 +110859,1735,telecine,1138508442 +110859,1821,gay,1138570047 +110859,1983,telecine,1138508477 +110859,2029,gay,1138570013 +110859,2437,gay,1138569981 +110859,2607,gay,1138418610 +110859,5229,gay,1138569958 +110859,7360,telecine,1138509320 +110859,36535,elijah wood,1138419858 +110859,37731,elijah wood,1138419845 +110859,39183,gay,1138418540 +110859,42418,Pocahontas,1138417956 +110861,260,classic,1441873070 +110861,260,epic adventure,1441873089 +110861,924,slow,1442446837 +110861,924,visually appealing,1442446834 +110861,1136,absurd,1442446119 +110861,1136,british comedy,1442446124 +110861,1136,medieval,1442446107 +110861,1136,Monty Python,1442446104 +110861,1136,satire,1442446129 +110861,1136,witty,1442446116 +110861,1206,atmospheric,1442446899 +110861,1206,dystopia,1442446902 +110861,3704,post-apocalyptic,1442488415 +110861,4979,dysfunctional family,1442445979 +110861,4979,Quirky,1442445970 +110861,4979,Wes Anderson,1442445973 +110861,4979,witty,1442445980 +110861,27706,Adventure,1442486903 +110861,27706,quirky,1442486891 +110861,31658,anime,1442446155 +110861,31658,fantasy,1442446169 +110861,31658,fantasy world,1442446163 +110861,31658,Hayao Miyazaki,1442446180 +110861,31658,steampunk,1442446160 +110861,48043,visually appealing,1442486974 +110861,48394,atmospheric,1442487846 +110861,48394,dark fantasy,1442487879 +110861,48394,fantasy,1442487849 +110861,53189,awkward,1442445891 +110861,53189,off-beat comedy,1442445895 +110861,55269,dysfunctional family,1442445931 +110861,55269,road trip,1442445937 +110861,55269,spiritual journey,1442445955 +110861,55269,trains,1442445952 +110861,55269,Wes Anderson,1442445922 +110861,58559,Batman,1442446308 +110861,58559,Heath Ledger,1442446294 +110861,58559,superhero,1442446309 +110861,58559,thriller,1442446345 +110861,64993,anime,1442488230 +110861,64993,melancholic,1442488209 +110861,70286,unique,1442445744 +110861,79702,geeky,1442487534 +110861,79702,quirky,1442487540 +110861,79702,video games,1442487530 +110861,90866,clockwork devices,1442487616 +110861,90866,visually appealing,1442487606 +110861,91529,Batman,1442446238 +110861,91529,superhero,1442446243 +110861,102407,Modern music,1442488112 +110861,109374,quirky,1442487421 +110861,109374,stylized,1442487423 +110861,109374,visually appealing,1442487418 +110861,111235,Documentary,1442446435 +110861,122882,visually appealing,1442488463 +110907,19,detective,1368670830 +110907,22,detective,1368670830 +110907,25,melancholic,1368482635 +110907,32,original,1368482580 +110907,39,teen movie,1368670447 +110907,50,excellent script,1368483103 +110907,260,action,1293325477 +110907,260,atmospheric,1293325483 +110907,296,masterpiece,1368482999 +110907,318,great ending,1368670671 +110907,318,revenge,1293320159 +110907,318,twist ending,1293320148 +110907,521,noir thriller,1368482831 +110907,549,musicians,1368670406 +110907,587,supernatural,1368483036 +110907,593,excellent script,1368483103 +110907,724,teen movie,1368670447 +110907,799,supernatural,1368483036 +110907,913,noir thriller,1368482831 +110907,923,masterpiece,1368482999 +110907,924,masterpiece,1368482999 +110907,1033,unlikely friendships,1368670797 +110907,1088,dancing,1368670650 +110907,1172,mentor,1368482979 +110907,1188,dancing,1368670650 +110907,1196,sci-fi,1293342141 +110907,1196,space,1293342137 +110907,1198,action,1293342413 +110907,1198,archaeology,1293342412 +110907,1213,masterpiece,1368482999 +110907,1213,stylish,1368504342 +110907,1241,splatter,1368504364 +110907,1258,masterpiece,1368482999 +110907,1285,teen movie,1368670447 +110907,1291,action,1293342394 +110907,1291,archaeology,1293342379 +110907,1291,franchise,1293342387 +110907,1291,Holy Grail,1293342375 +110907,1307,unlikely friendships,1368670797 +110907,1387,suspenseful,1368670528 +110907,1537,dancing,1368670650 +110907,1617,detective,1368670830 +110907,1653,dystopia,1293325781 +110907,1653,jude law,1293325787 +110907,1653,Uma Thurman,1293325774 +110907,1678,women,1368670291 +110907,1704,mentor,1368482979 +110907,1719,melancholic,1368482635 +110907,1968,teen movie,1368670447 +110907,2115,archaeology,1293342331 +110907,2115,franchise,1293342355 +110907,2144,teen movie,1368670447 +110907,2291,original,1368482580 +110907,2420,mentor,1368482979 +110907,2542,stylish,1368504342 +110907,2571,action,1293325898 +110907,2571,Keanu Reeves,1293325864 +110907,2571,post-apocalyptic,1293325885 +110907,2571,sci-fi,1293325873 +110907,2617,archaeology,1293342303 +110907,2617,treasure hunt,1293342293 +110907,2726,noir thriller,1368482831 +110907,2762,great ending,1368670672 +110907,2841,supernatural,1368483037 +110907,2859,musicians,1368670406 +110907,2863,musicians,1368670406 +110907,2866,musicians,1368670406 +110907,2915,teen movie,1368670447 +110907,3005,detective,1368670830 +110907,3499,suspenseful,1368670528 +110907,3791,dancing,1368670650 +110907,4018,women,1368670291 +110907,4020,supernatural,1368483037 +110907,4054,dancing,1368670650 +110907,4085,detective,1368670830 +110907,4144,melancholic,1368482635 +110907,4878,original,1368482580 +110907,4993,adventure,1293342487 +110907,4993,atmospheric,1293342485 +110907,4993,based on a book,1293342464 +110907,4993,ensemble cast,1293342492 +110907,4993,great soundtrack,1293342478 +110907,4993,high fantasy,1293342471 +110907,5218,sloth,1293341938 +110907,5266,suspenseful,1368670528 +110907,5693,dancing,1368670650 +110907,6539,Johnny Depp,1293342242 +110907,6539,Orlando Bloom,1293342234 +110907,6539,pirates,1293342240 +110907,7572,john donne,1293320288 +110907,27803,poignant,1293326051 +110907,30707,bittersweet,1293320249 +110907,30707,morgan freeman,1293320243 +110907,32587,brutality,1368670598 +110907,33615,lemurs,1293342005 +110907,34405,adventure,1293325598 +110907,34405,based on a tv show,1293325583 +110907,34405,ensemble cast,1293325607 +110907,34405,quirky,1293325589 +110907,34405,witty,1293325592 +110907,42723,splatter,1368504365 +110907,48394,brutality,1368670598 +110907,53123,musicians,1368670406 +110907,55814,french,1293325419 +110907,63082,coincidences,1293320184 +110907,63082,love story,1293320174 +110907,68358,alternate reality,1293325544 +110907,68358,franchise,1293325558 +110907,68358,future,1293325566 +110907,68358,star trek,1293325551 +110907,70286,evil corporations,1293325678 +110907,70286,mockumentary,1293325638 +110907,70286,social commentary,1293325714 +110907,81834,based on a book,1293342501 +110907,81834,dark,1293342540 +110907,81834,franchise,1293342506 +110907,81834,quest,1293342535 +110915,260,birth of great scifi ideas,1440070378 +110915,260,lots of space fighting drama,1440070387 +110923,8638,sequel,1314319730 +110923,88744,Tom Felton,1314319085 +110931,6187,twist-ending,1313498087 +110931,72641,based on a true story,1445185285 +110931,72641,family,1445185281 +110931,72641,inspirational,1445185293 +110931,72641,touching,1445185303 +110964,858,great quotes,1446034873 +110968,72393,aliens,1450372369 +111022,380,espionage,1368233756 +111022,1370,terrorism,1368233794 +111022,81257,revenge,1368233767 +111032,2321,sucks,1150972375 +111035,260,Oscar (Best Music - Original Score),1435166863 +111035,260,space war,1435166745 +111038,4878,surreal,1440604746 +111038,5971,Hayao Miyazaki,1440604706 +111042,260,classic sci-fi,1444481737 +111042,260,space epic,1444481745 +111053,112552,J.K. Simmons,1429363319 +111053,112552,motivation,1429363323 +111053,115569,gripping,1429363290 +111053,115569,if it bleeds it leads,1429363445 +111053,115569,Jake Gyllenhaal,1429363287 +111053,115569,media madness,1429363445 +111053,115569,negotiation skills,1429363445 +111053,115569,sociopath,1429363267 +111065,4848,David Lynch,1449447671 +111065,4848,lesbian,1449447705 +111065,4848,sexual,1449447761 +111065,4848,stylized,1449447652 +111065,6538,boobs,1362442492 +111065,6538,masturbation,1362442492 +111065,6538,sexuality,1362442467 +111065,6538,twist,1362442472 +111065,121231,Psychological,1449447842 +111065,121231,teenagers,1449447846 +111080,7460,Tom Waits,1346811947 +111090,32,great ending,1368637658 +111090,32,original,1368637039 +111090,47,great ending,1368637658 +111090,50,great acting,1368637504 +111090,50,Kevin Spacey,1336368468 +111090,50,storytelling,1368637133 +111090,50,suspense,1336368472 +111090,50,twist ending,1336368470 +111090,150,dramatic,1368637286 +111090,169,family,1368637640 +111090,204,action,1368637316 +111090,296,storytelling,1368637133 +111090,318,great acting,1368637504 +111090,318,great ending,1368637658 +111090,455,family,1368637640 +111090,593,great acting,1368637504 +111090,804,relationships,1368637377 +111090,858,great acting,1368637504 +111090,1015,family,1368637640 +111090,1199,cerebral,1368637702 +111090,1199,weird,1368637440 +111090,1255,cult classic,1368637561 +111090,1299,dramatic,1368637286 +111090,1307,relationships,1368637376 +111090,1527,visually appealing,1368637459 +111090,1552,action,1368637316 +111090,1608,action,1368637316 +111090,1623,horror,1368637592 +111090,1639,relationships,1368637376 +111090,1704,mentor,1368637070 +111090,1722,action,1368637316 +111090,1991,horror,1368637592 +111090,2076,weird,1368637440 +111090,2167,action,1368637316 +111090,2262,relationships,1368637377 +111090,2291,original,1368637039 +111090,2315,horror,1368637592 +111090,2335,comedy,1368637108 +111090,2371,comedy,1368637108 +111090,2420,mentor,1368637070 +111090,2460,horror,1368637592 +111090,3018,horror,1368637592 +111090,3105,dramatic,1368637286 +111090,3157,family,1368637640 +111090,3421,comedy,1368637108 +111090,3986,action,1368637316 +111090,4085,comedy,1368637108 +111090,4226,storytelling,1368637133 +111090,4725,horror,1368637592 +111090,4878,cerebral,1368637702 +111090,4878,original,1368637039 +111090,4878,weird,1368637440 +111090,5452,family,1368637640 +111090,6942,christmas,1336452302 +111090,6942,Hugh Grant,1336452327 +111090,6942,Liam Neeson,1336452292 +111090,6942,love,1336452306 +111090,6942,Nudity (Topless),1336452311 +111090,6942,Romance,1336452280 +111090,6942,witty,1336452315 +111090,7153,great ending,1368637658 +111090,7438,storytelling,1368637133 +111090,8641,comedy,1368637108 +111090,8981,relationships,1368637376 +111090,32587,storytelling,1368637133 +111090,53956,Alan Tudyk,1336452392 +111090,53956,farce,1336452418 +111090,53956,male nudity,1336452408 +111090,60684,visually appealing,1368637459 +111138,7293,funny,1439279867 +111138,7293,happy ending,1439279875 +111138,69757,humorous,1439279926 +111138,69757,Joseph Gordon-Levitt,1439279919 +111138,69757,stylized,1439279930 +111138,69757,Zooey Deschanel,1439279916 +111139,260,action,1442278382 +111139,260,sci-fi,1442278355 +111139,260,space adventure,1442278367 +111171,1916,bowling,1228428156 +111171,1916,tap dance,1228428128 +111171,2726,laughably bad in places,1390974438 +111171,2726,no story,1390974173 +111171,2726,sucks,1390974123 +111171,2726,superficial,1390974316 +111171,2726,uninteresting,1390974351 +111171,3545,whatever,1425587625 +111171,5670,sad world of stand up comedy,1312180536 +111171,5903,intellectual insult,1313029653 +111171,5903,The Matrix-corny,1313029489 +111171,6229,crap,1425577611 +111171,8910,Jason Schwartzman,1312849696 +111171,8910,psuedointellectual,1312849668 +111171,64969,Insulting to Persians with No Humour,1365463096 +111171,81537,just plain bad,1404750085 +111171,97328,moralizing,1373858908 +111171,97752,bad star casting,1441827025 +111171,97752,Halle Berry,1441827058 +111171,97752,pretentious,1441826985 +111171,97752,Tom Hanks,1441827050 +111171,97752,too long,1441826985 +111171,97752,uninteresting,1441826924 +111171,102903,entertaining for idiots,1397408631 +111171,102903,"incredibly stupid ""plot""",1397408584 +111171,102903,trying to be smart and failing embarrassingly,1397408945 +111171,104841,annoying main character,1392278947 +111171,108190,based on a kids book,1408691451 +111171,108190,made for 11-14-year-olds,1408694407 +111171,108190,made-for-TV quality,1408694330 +111171,109487,standard crap,1427383509 +111171,110127,Christianity,1407048280 +111171,110127,God,1407048344 +111171,110127,obedience,1407048310 +111171,110322,Nothing,1407270494 +111171,111364,people who like this shouldd die,1411071822 +111171,111364,waste of life,1411071751 +111171,111734,childish british shit,1408683056 +111171,111759,A1 formulaic crap,1411057275 +111171,111759,Doug Liman,1411057024 +111171,111759,movie for the stupid masses,1411057299 +111171,111759,Tom Cruise,1411057054 +111171,111759,unintelligent,1411057117 +111171,111759,unoriginal,1411057151 +111171,112370,kids movie,1411692999 +111171,112370,standard shit hollywood 101 storytelling crap,1411692866 +111171,112370,the movie,1411695575 +111171,112370,transformers,1411695554 +111171,114662,Idiots with guns,1445254902 +111171,114662,Serial killer,1445255095 +111174,4878,psychology,1428269057 +111174,88405,romance,1434387009 +111181,260,action,1443000084 +111181,260,adventure,1443000206 +111217,296,crime,1421600141 +111217,296,good dialogue,1421600141 +111217,296,non-linear,1421600141 +111222,260,futuristic,1441110956 +111222,260,scifi,1441110969 +111223,260,classic,1442314310 +111223,260,sci-fi,1442314289 +111234,82093,Unpredictable,1358181480 +111238,2579,neo-noir,1426111639 +111238,4226,dark,1426111564 +111238,4226,Mindfuck,1426111580 +111238,4226,nonlinear,1426111558 +111238,4226,twist ending,1426111591 +111238,5995,Adrien Brody,1426112237 +111238,5995,beautiful,1426112243 +111238,6350,anime,1426112157 +111238,7361,jim carrey,1426111525 +111238,7361,philosophy,1426111533 +111238,48780,Christian Bale,1427916038 +111238,48780,enigmatic,1427916048 +111238,48780,psychological,1427916052 +111238,48780,twist ending,1427916043 +111238,108981,Charlotte Gainsbourg,1427915636 +111238,108981,Lars von Trier,1426112370 +111246,165,Bruce Willis,1304309865 +111246,1036,Bruce Willis,1304309829 +111246,1370,Bruce Willis,1304309867 +111246,1552,convicts,1304309958 +111246,1552,prison,1304309960 +111246,2571,computers,1304309739 +111246,2571,post apocalyptic,1304309721 +111246,2571,surreal,1304309732 +111246,2571,virtual reality,1304309727 +111246,2959,dark comedy,1304309083 +111246,2959,psychology,1304309069 +111246,2959,twist ending,1304309087 +111246,3275,organized crime,1304310113 +111246,3275,serial killer,1304310115 +111246,3617,college,1325757575 +111246,3617,Nudity (Topless - Notable),1325757582 +111246,3617,road trip,1304308681 +111246,4015,aliens,1304308805 +111246,4015,cars,1304308809 +111246,4351,bank robbery,1304309779 +111246,4447,chick flick,1304308648 +111246,4718,college,1325757625 +111246,4718,Notable Nudity,1325757619 +111246,4718,Nudity (Topless),1325757616 +111246,4718,teen,1325757621 +111246,4878,psychology,1304308776 +111246,5283,comedy,1304308706 +111246,5283,Nudity (Topless),1304308707 +111246,5283,teen,1304308703 +111246,6586,Nudity (Topless),1304308792 +111246,6586,teen,1304308794 +111246,6586,wedding,1304308789 +111246,7346,nerds,1325757719 +111246,7346,Nudity (Topless),1325757708 +111246,39715,teen,1304308518 +111246,49526,Nudity (Topless),1325757499 +111246,49526,Teen movie,1325757501 +111246,53972,bruce willis,1304309863 +111246,59429,college,1304308516 +111246,59429,fraternity,1325757456 +111246,59429,made for TV,1325757463 +111246,71535,post-apocalyptic,1304308155 +111246,71535,zombies,1304308142 +111246,73321,post-apocalyptic,1304309748 +111246,73321,thought-provoking,1304309752 +111246,73321,twist ending,1304309756 +111259,260,sci-fi,1430513107 +111259,260,space,1430513124 +111287,1175,_jur,1156539904 +111287,1916,_jur,1156541971 +111287,2324,_jur,1156541940 +111287,2972,Yimou Zhang,1167385722 +111287,4973,_jur,1156541926 +111287,6867,_jur,1156541956 +111287,7371,Lars von Trier,1156506075 +111287,7371,_jur,1156541999 +111287,8983,Yimou Zhang,1167385606 +111287,40583,Political,1157660349 +111287,49772,Edward Norton,1188586666 +111288,5650,Hamlet,1194142689 +111288,107990,incorrectly labeled,1420601230 +111295,356,awesome mast good,1431864656 +111295,356,good music,1431864656 +111295,356,great soundtrack,1431864656 +111296,33358,no plot,1138506891 +111301,111,forceful,1187981450 +111313,135,Good Comedy,1310357957 +111313,135,submarine,1310357954 +111313,552,knights,1310357980 +111313,552,swashbuckler,1310357976 +111313,1291,action,1310358010 +111313,1373,space,1310358069 +111313,2115,action,1310358004 +111313,2301,Mel Brooks,1310358112 +111313,2301,satire,1310358115 +111313,2528,post-apocalyptic,1310358099 +111313,2528,sci-fi,1310358096 +111313,4306,fairy tale,1310357757 +111313,4306,satire,1310357746 +111313,4896,fantasy,1310358043 +111313,4896,magic,1310358046 +111313,5952,Action,1310357914 +111313,5952,fantasy,1310357911 +111313,5952,multiple storylines,1310357918 +111313,6539,pirates,1310358084 +111313,7153,fantasy,1310357921 +111313,7153,Oscar (Best Picture),1310357925 +111313,34405,action,1310357885 +111313,47610,magic,1310357934 +111313,47610,twist ending,1310357937 +111313,66934,comedy,1310357948 +111313,66934,parody,1310357945 +111313,68358,sci-fi,1310357879 +111313,68358,space,1310357882 +111313,68358,time travel,1310357876 +111313,72998,sci-fi,1310358050 +111313,76093,action,1310358105 +111313,76093,fantasy,1310358102 +111313,79132,alternate reality,1310358013 +111313,79132,fantasy,1310358016 +111313,79132,surreal,1310358019 +111336,51931,9/11,1313084013 +111336,59421,Vegas,1262118725 +111336,66665,great soundtrack,1276725077 +111336,87304,Melanie Laurent,1314976503 +111336,87304,voice over montages,1314976424 +111336,89030,Anton Yelchin,1315340701 +111336,89030,Colin Farrell,1315340766 +111336,89030,special effects,1315340740 +111346,527,german movie,1200527726 +111346,2692,german movie,1200527668 +111346,3083,Nudity (Topless - Brief),1391644953 +111346,4226,nonlinear,1282049574 +111346,4226,twist ending,1282049601 +111346,4239,based on a true story,1285543990 +111346,4970,german movie,1200528145 +111346,5608,german movie,1200527744 +111346,7323,german movie,1200527788 +111346,7843,german movie,1200528041 +111346,27376,Berlin,1282083079 +111346,31410,german movie,1200527797 +111346,32019,toyota,1198702389 +111346,48780,Christoper Nolan,1286623016 +111346,64614,friendship,1261404560 +111346,64614,revenge,1261404576 +111371,4886,Animation,1431293785 +111371,4886,Pixar,1431293788 +111380,296,dark comedy,1443589251 +111380,115713,consciousness,1443589204 +111380,115713,Contemplative,1443589200 +111380,115713,Manipulations,1443589209 +111380,115713,philosophical,1443589197 +111380,115713,Psychological,1443589202 +111380,115713,Surreal,1443589207 +111380,115713,thought provoking,1443589184 +111427,653,bittersweet,1426229552 +111427,653,Dragons,1426229540 +111427,653,fantasy,1426229544 +111427,653,medieval,1426229548 +111427,4993,Adventure,1426229632 +111427,4993,atmospheric,1426229638 +111427,4993,epic,1426229647 +111427,4993,fantasy,1426229629 +111427,4993,fantasy world,1426229653 +111427,4993,high fantasy,1426229636 +111427,4993,Magic,1426229636 +111427,4993,tolkien,1426229641 +111427,4993,wizards,1426229643 +111427,51662,atmospheric,1426229600 +111427,51662,blood,1426229589 +111427,51662,comic book,1426229593 +111427,51662,historical,1426229576 +111427,51662,rape,1426229585 +111455,260,coming of age,1443393648 +111455,260,"space epic, science fiction, hero's journey",1443393664 +111461,296,action,1438433246 +111461,296,cult classic,1438433246 +111461,296,multiple storylines,1438433246 +111461,296,quentin tarantino,1438433246 +111461,48043,Hugh Jackman,1438441937 +111461,48043,multiple storylines,1438441933 +111461,48043,sci-fi,1438441945 +111461,48043,visually appealing,1438441959 +111500,3911,mockumentary,1448328313 +111500,3911,quirky,1448328316 +111500,3911,satire,1448328319 +111500,6711,atmospheric,1448410834 +111500,6711,loneliness,1448410843 +111500,6711,Melancholic,1448410859 +111500,6711,poignant,1448410841 +111500,6890,based on a true story,1448329753 +111500,6890,experimental,1448329776 +111500,6890,realistic,1448329784 +111500,6890,school shooting,1448329729 +111500,6890,unique,1448329795 +111500,49220,mockumentary,1448328347 +111500,49220,satire,1448328353 +111500,56367,cult film,1448288510 +111500,56367,witty,1448288514 +111500,56782,greed,1452502532 +111500,56782,religion,1452502525 +111500,65418,bad luck,1448329227 +111500,65418,drifter,1448329264 +111500,65418,man's best friend,1448329238 +111500,65418,melancholy,1448329268 +111500,65418,sad,1448329225 +111500,90374,cult,1448329587 +111500,91658,dark,1448288191 +111500,91658,thriller,1448288200 +111500,95088,offbeat,1448288454 +111500,95088,quirky,1448288447 +111500,141846,apple,1448289968 +111500,141846,biographical,1448289958 +111500,141846,biopic,1448289987 +111500,141846,documentary,1448289955 +111500,141846,personality,1448289980 +111500,141846,provocative,1448290002 +111500,141846,technology,1448289963 +111500,142448,new zealand,1448290209 +111505,260,classic,1439270675 +111505,260,oldie but goodie,1439270724 +111507,260,good vs evil,1431433935 +111507,260,Science Fiction,1431433885 +111567,1215,fantasy,1240280358 +111567,1215,time travel,1240280372 +111575,50,great ending,1432667987 +111575,50,Kevin Spacey,1432667980 +111575,2762,excellent script,1432667847 +111575,2762,ghosts/afterlife,1432667855 +111575,2762,great ending,1432667842 +111575,2762,horror,1432667869 +111575,2762,mindfuck,1432667859 +111575,2762,thriller,1432667873 +111575,2762,twist ending,1432667837 +111575,48516,atmospheric,1432668768 +111575,74458,ending twist,1432667912 +111575,74458,twist ending,1432667909 +111575,74458,twisted ending,1432667919 +111597,260,action,1435888930 +111597,260,adventure,1435888893 +111597,260,amazing,1435888954 +111597,260,hero's journey,1435888924 +111597,260,sci-fi,1435888933 +111597,260,space epic,1435888915 +111597,356,comedy,1435889073 +111597,356,historical,1435889073 +111597,356,satire,1435889073 +111608,4016,disney but still great,1204757909 +111608,48516,cellphone scene,1294355980 +111609,122900,Marvel,1439499291 +111609,122900,superhero,1439499283 +111609,135861,comedy,1439499324 +111609,135861,funny,1439499336 +111628,31658,Watched,1443971003 +111628,104283,Watched,1443970991 +111651,2571,Special Effects,1442435261 +111651,4226,cerebral,1442435189 +111652,260,adventure,1430326922 +111652,260,sci-fi,1430326909 +111652,1197,classic,1430422336 +111652,1197,funny,1430422350 +111652,1197,medieval,1430422342 +111652,1967,surreal,1433853651 +111652,2502,comedy,1430428151 +111652,2502,funny,1430428146 +111652,3300,good concept,1433737018 +111652,3300,poor character development,1433737027 +111652,3300,sci-fi,1433737008 +111652,4016,Disney animated feature,1430422256 +111652,4016,funny,1430333794 +111652,4027,great soundtrack,1430505299 +111652,4306,Dreamworks,1430422276 +111652,4306,great music,1430422311 +111652,4306,pixar,1430422279 +111652,4886,Pixar,1430428576 +111652,33660,boxing,1433428597 +111652,33660,great depression,1433428611 +111652,33660,Russell Crowe,1433428628 +111652,33660,Sports,1433428616 +111652,46578,social commentary,1430493679 +111652,77177,china,1432677432 +111652,77177,documentary,1432677432 +111652,77177,natural beauty,1432677432 +111652,81637,animation,1431120243 +111652,81637,friendship,1431120243 +111652,81637,sea turtle,1431120243 +111652,89492,baseball,1432668219 +111652,89492,intelligent,1432668254 +111652,89492,sports,1432668249 +111652,95875,Sci-fi,1430334173 +111652,96737,gore,1439076452 +111652,103228,visually appealing,1430334054 +111652,103755,dreamworks,1430333974 +111652,109487,thought-provoking,1447080776 +111652,113345,sci-fi,1437065251 +111652,113378,dystopian future,1437244053 +111652,113378,utopia,1437244061 +111652,115617,entertaining,1430333885 +111652,115617,fun,1430333885 +111652,115617,heartwarming,1430333885 +111652,116797,history,1435876109 +111652,116797,Slow,1435876138 +111652,127096,bad science,1434636347 +111652,127096,science fiction,1434636360 +111659,1,animation,1438090980 +111659,1,family,1438090980 +111659,1,good time,1438090980 +111659,72483,love story,1436887423 +111659,72483,romance,1436887405 +111659,72483,teen,1436887412 +111669,41285,boring,1323210274 +111669,41285,non-hollywood ending,1323210263 +111669,41285,Woody Allen,1323210251 +111669,56715,Tom Waits,1309471979 +111669,69757,Zooey Deschanel,1323210149 +111669,87520,cisco,1309990127 +111669,87520,lenovo,1309990127 +111689,260,future,1434190370 +111689,260,space adventure,1434190343 +111700,55768,ending kinda ruined it,1232856696 +111700,62155,cute,1232649074 +111700,63992,so bad it's good,1230350592 +111749,5995,everything,1242933955 +111749,62792,Colin Farrell,1245073950 +111758,114935,thriller,1420479837 +111758,114935,time travel,1420479837 +111758,114935,twist,1420479837 +111763,260,classic adventure,1440847833 +111763,260,epic adventure,1440847852 +111772,5219,zombie,1207671590 +111772,8861,trash,1207671575 +111772,53921,daniel pearl,1207715044 +111772,55232,zombies,1207671579 +111777,6874,Tarantino,1142414664 +111790,1193,Oscar (Best Actor),1430291039 +111790,1193,Oscar (Best Directing),1430291048 +111790,1193,psychology,1430291023 +111790,1203,good dialogue,1430291087 +111790,1203,group psychology,1430291094 +111790,1203,thought-provoking,1430291099 +111790,96488,documentary,1430290898 +111790,96488,music history,1430290898 +111790,96488,oscar winner,1430290898 +111791,1682,Jim Carrey,1453815101 +111791,1682,original plot,1453815118 +111791,1682,philosophy,1453815114 +111791,1682,social commentary,1453815103 +111791,1882,bad acting,1453815037 +111791,1882,boring,1453815047 +111791,1882,Jean Reno,1453815052 +111791,3147,emotional,1453815320 +111791,3147,great acting,1453815318 +111791,3147,social commentary,1453815314 +111791,4246,girlie movie,1453814983 +111791,4369,boring,1453814625 +111791,4369,cars,1453814640 +111791,4369,stupid,1453814613 +111791,4718,not funny,1453814676 +111791,4718,Notable Nudity,1453814666 +111791,4718,Nudity (Topless),1453814662 +111791,4718,sexuality,1453814672 +111791,5618,animation,1453816093 +111791,5618,anime,1453816073 +111791,5618,atmospheric,1453816085 +111791,5618,beautiful,1453816091 +111791,5618,environmental,1453816102 +111791,5618,fairy tale,1453816097 +111791,5618,fantasy,1453816082 +111791,5618,fantasy world,1453816106 +111791,5618,Hayao Miyazaki,1453816076 +111791,5618,imaginative,1453816100 +111791,5618,Japan,1453816088 +111791,5618,Studio Ghibli,1453816079 +111791,7099,ecology,1453814060 +111791,7099,environmental,1453814069 +111791,7099,fantasy world,1453814057 +111791,7099,Hayao Miyazaki,1453814051 +111791,8784,directorial debut,1453823426 +111791,8784,mental illness,1453823417 +111791,8784,psychology,1453823407 +111791,8784,quirky romantic,1453823429 +111791,8784,Zach Braff,1453823389 +111791,35836,dumb,1453814878 +111791,35836,Immature,1453814915 +111791,35836,Nudity (Topless),1453814882 +111791,35836,sex,1453814957 +111791,35836,sexuality,1453814922 +111791,53996,Michael Bay,1453814189 +111791,55247,cheesy,1453814390 +111791,55247,stupid main character,1453814421 +111791,55247,stupidity,1453814399 +111791,55247,Unlikable character,1453814380 +111791,63082,badly acted,1453815781 +111791,63082,story,1453815790 +111791,63082,unrealistic,1453815776 +111791,69122,bad jokes,1453814846 +111791,69122,cliche,1453814837 +111791,69122,unfunny,1453814849 +111791,69122,Vulgar,1453814835 +111791,71156,absurd,1453814328 +111791,71156,boring,1453814304 +111791,71156,pointless,1453814338 +111791,71156,weak ending,1453814330 +111791,72407,bad acting,1453814244 +111791,72407,Unlikable protagonist,1453814265 +111791,72407,vampires do not sparkle,1453814256 +111791,72998,aliens,1453815637 +111791,72998,beautiful scenery,1453815641 +111791,72998,environmental,1453815656 +111791,72998,predictable,1453815672 +111791,72998,sci-fi,1453815634 +111791,72998,science fiction,1453815648 +111791,72998,visually stunning,1453815651 +111791,76251,dark comedy,1453815247 +111791,76251,Hit Girl,1453815205 +111791,76251,humorous,1453815219 +111791,76251,pop culture references,1453815221 +111791,76251,vigilante,1453815208 +111791,79702,geek,1453814493 +111791,79702,unlikable characters,1453814456 +111791,79702,video games,1453814506 +111791,103042,cheesy,1453814771 +111798,61961,Australia,1222736437 +111798,61961,novel,1222736466 +111798,61961,nuclear war,1222736418 +111798,61961,remake,1222736397 +111798,61961,remakeOf:On the Beach (1959),1222736407 +111804,1722,007,1434881647 +111804,1722,action,1434881653 +111804,2324,Heartwarming,1434881993 +111804,2324,maintaining illusion,1434882008 +111804,2671,British,1434881622 +111804,2671,romantic,1434881602 +111804,2763,sexy,1434881687 +111804,2763,smart,1434881691 +111804,72998,futuristic,1434882120 +111804,72998,visuals,1434882111 +111804,109487,adventure,1434881754 +111804,109487,sci-fi,1434881754 +111804,109487,space,1434881754 +111822,54783,truth about mormon history,1241578851 +111860,260,classic sci-fi,1442850696 +111860,260,exciting,1442850711 +111860,260,joseph campbell's study of mythology influenced,1442850726 +111894,7986,Can't remember,1226280205 +111895,1,animation,1165074625 +111895,1,erlend's DVDs,1165074618 +111895,6,Al Pacino,1285270858 +111895,6,erlend's DVDs,1285270844 +111895,6,Michael Mann,1285270852 +111895,6,Robert De Niro,1285270848 +111895,16,erlend's DVDs,1264876570 +111895,16,Joe Pesci,1295131682 +111895,16,las vegas,1295131683 +111895,16,mafia,1295131686 +111895,16,Martin Scorsese,1295131679 +111895,16,Robert De Niro,1295131676 +111895,22,serial killer,1139062010 +111895,29,erlend's DVDs,1169230350 +111895,31,erlend's DVDs,1165086546 +111895,32,dystopia,1341671894 +111895,32,Terry Gilliam,1341671905 +111895,45,erlend's DVDs,1165075308 +111895,47,erlend's DVDs,1237037296 +111895,47,serial killer,1139061983 +111895,50,erlend's DVDs,1165075796 +111895,50,twist ending,1144422702 +111895,52,erlend's DVDs,1165075139 +111895,52,Woody Allen,1165075139 +111895,76,Philip K. Dick,1138214245 +111895,97,erlend's DVDs,1263679343 +111895,111,going postal,1138220300 +111895,172,erlend's DVDs,1165086621 +111895,198,erlend's DVDs,1263330858 +111895,199,erlend's DVDs,1237037281 +111895,260,erlend's DVDs,1303130335 +111895,260,fantasy,1303130340 +111895,318,erlend's DVDs,1165074111 +111895,318,prison,1170492474 +111895,319,erlend's DVDs,1171133313 +111895,338,serial killer,1139062007 +111895,345,erlend's DVDs,1183130054 +111895,348,erlend's DVDs,1165079259 +111895,348,Woody Allen,1165079253 +111895,373,erlend's DVDs,1263681593 +111895,454,erlend's DVDs,1165085869 +111895,492,erlend's DVDs,1165079285 +111895,492,Woody Allen,1165079277 +111895,527,erlend's DVDs,1180988353 +111895,541,artificial intelligence,1419586621 +111895,541,erlend's DVDs,1165074236 +111895,541,Philip K. Dick,1419586607 +111895,541,Ridley Scott,1419586605 +111895,541,sci-fi,1419586611 +111895,541,stylized,1419586625 +111895,555,erlend's DVDs,1165075325 +111895,586,erlend's DVDs,1219517479 +111895,588,fairy tale,1138648851 +111895,592,Batman,1296844200 +111895,592,erlend's DVDs,1296844183 +111895,592,Jack Nicholson,1296844189 +111895,592,superhero,1296844194 +111895,592,Tim Burton,1296844186 +111895,593,erlend's DVDs,1165075865 +111895,593,gothic,1165075869 +111895,594,fairy tale,1138221300 +111895,595,fairy tale,1138221315 +111895,596,erlend's DVDs,1237037203 +111895,608,black comedy,1281695064 +111895,608,erlend's DVDs,1239116778 +111895,608,William H. Macy,1241198196 +111895,741,erlend's DVDs,1165074329 +111895,750,erlend's DVDs,1165075753 +111895,750,politics,1165075753 +111895,750,Stanley Kubrick,1165075746 +111895,778,black comedy,1281695076 +111895,778,drugs,1281694991 +111895,778,heroin,1281694999 +111895,800,erlend's DVDs,1165074383 +111895,841,erlend's DVDs,1165077744 +111895,841,gothic,1165087729 +111895,858,erlend's DVDs,1165075631 +111895,899,erlend's DVDs,1215153625 +111895,899,musical,1298226307 +111895,900,erlend's DVDs,1263678637 +111895,900,Vincente Minnelli,1298226357 +111895,902,erlend's DVDs,1224269228 +111895,903,Alfred Hitchcock,1165074648 +111895,903,erlend's DVDs,1165074643 +111895,904,Alfred Hitchcock,1165075776 +111895,904,erlend's DVDs,1165075774 +111895,906,erlend's DVDs,1165079042 +111895,906,George Cukor,1297454161 +111895,906,Ingrid Bergman,1241198309 +111895,908,Alfred Hitchcock,1429734385 +111895,908,erlend's DVDs,1165074416 +111895,908,thriller,1429734397 +111895,911,Audrey Hepburn,1298226252 +111895,911,Cary Grant,1298226255 +111895,911,erlend's DVDs,1298226249 +111895,912,erlend's DVDs,1165074254 +111895,912,Humphrey Bogart,1299101337 +111895,912,Ingrid Bergman,1299101349 +111895,912,romance,1299101359 +111895,912,World War II,1170494022 +111895,913,erlend's DVDs,1165076183 +111895,914,Audrey Hepburn,1287260682 +111895,914,erlend's DVDs,1285767910 +111895,914,George Cukor,1287260693 +111895,916,Audrey Hepburn,1298236746 +111895,916,erlend's dvds,1290897023 +111895,916,Gregory Peck,1290897038 +111895,916,romance,1290897045 +111895,916,Rome,1298236750 +111895,916,William Wyler,1290897057 +111895,919,erlend's DVDs,1165076768 +111895,919,fantasy,1363469437 +111895,919,Music,1363469488 +111895,919,musical,1363469438 +111895,919,Oz,1363469449 +111895,919,road movie,1363469515 +111895,920,erlend's DVDs,1183306627 +111895,922,erlend's DVDs,1165074595 +111895,923,erlend's DVDs,1165074274 +111895,924,artificial intelligence,1281695344 +111895,924,erlend's DVDs,1165076288 +111895,924,evolution,1281695336 +111895,924,sci-fi,1418922737 +111895,924,space,1281695386 +111895,924,Stanley Kubrick,1418922727 +111895,924,supernatural,1281695404 +111895,928,Alfred Hitchcock,1283093335 +111895,928,atmospheric,1283093339 +111895,928,erlend's DVDs,1165076238 +111895,928,gothic,1283093345 +111895,928,Joan Fontaine,1429734462 +111895,928,mansion,1283093388 +111895,929,erlend's DVDs,1190224021 +111895,935,erlend's DVDs,1214342023 +111895,940,erlend's DVDs,1254895706 +111895,940,Errol Flynn,1287003121 +111895,940,medieval,1287003125 +111895,942,erlend's DVDs,1165074372 +111895,942,Vincent Price,1165088308 +111895,953,erlend's DVDs,1165074357 +111895,954,erlend's DVDs,1165074407 +111895,965,Alfred Hitchcock,1277069281 +111895,965,erlend's DVDs,1165077082 +111895,968,horror,1419593314 +111895,968,zombies,1419593306 +111895,1022,fairy tale,1138648840 +111895,1035,erlend's DVDs,1215153711 +111895,1057,erlend's DVDs,1165079270 +111895,1057,Woody Allen,1165079265 +111895,1069,erlend's DVDs,1247124519 +111895,1076,erlend's DVDs,1165077178 +111895,1076,ghost story,1170494192 +111895,1076,gothic,1165077181 +111895,1077,erlend's DVDs,1172338464 +111895,1077,Woody Allen,1165079309 +111895,1078,slapstick,1340523598 +111895,1078,Woody Allen,1165079247 +111895,1086,erlend's DVDs,1254895508 +111895,1097,erlend's DVDs,1172338194 +111895,1130,erlend's DVDs,1287257350 +111895,1130,Joe Dante,1287608573 +111895,1130,special effects,1287608595 +111895,1130,werewolf,1296940135 +111895,1161,erlend's DVDs,1263677755 +111895,1161,Germany,1283092738 +111895,1161,literary adaptation,1283092747 +111895,1161,Nazis,1283092751 +111895,1161,World War II,1283092759 +111895,1172,erlend's DVDs,1165074268 +111895,1172,Sicily,1170493006 +111895,1173,cannibalism,1170496229 +111895,1173,erlend's DVDs,1165074831 +111895,1175,cannibalism,1138220235 +111895,1175,erlend's DVDs,1165074302 +111895,1176,erlend's DVDs,1227460688 +111895,1178,erlend's DVDs,1165074537 +111895,1178,Stanley Kubrick,1170494462 +111895,1193,erlend's DVDs,1169230070 +111895,1193,Jack Nicholson,1281698825 +111895,1193,mental hospital,1281698868 +111895,1197,erlend's DVDs,1180181049 +111895,1198,erlend's DVDs,1227460477 +111895,1198,Harrison Ford,1300903197 +111895,1198,Steven Spielberg,1300903199 +111895,1198,World War II,1300903210 +111895,1199,erlend's DVDs,1165074241 +111895,1199,Terry Gilliam,1165087396 +111895,1200,erlend's DVDs,1190223965 +111895,1201,Clint Eastwood,1298226579 +111895,1201,Ennio Morricone,1298226585 +111895,1201,erlend's DVDs,1165074342 +111895,1201,Sergio Leone,1298226576 +111895,1201,spaghetti western,1298226591 +111895,1201,western,1298226594 +111895,1202,erlend's DVDs,1165082860 +111895,1203,erlend's DVDs,1307194009 +111895,1204,erlend's DVDs,1165074376 +111895,1204,History,1425586730 +111895,1204,Middle East,1425586720 +111895,1204,World War I,1170493340 +111895,1206,dystopia,1365012524 +111895,1206,satire,1418922019 +111895,1206,social commentary,1418922016 +111895,1206,stylized,1418922023 +111895,1208,erlend's DVDs,1215153570 +111895,1209,Ennio Morricone,1283093451 +111895,1209,erlend's DVDs,1165075726 +111895,1209,Henry Fonda,1283093454 +111895,1209,Sergio Leone,1283093413 +111895,1209,Spaghetti Western,1283093469 +111895,1209,western,1165075720 +111895,1211,erlend's DVDs,1295132161 +111895,1211,Wim Wenders,1295132168 +111895,1212,erlend's DVDs,1165074606 +111895,1212,Orson Welles,1298226144 +111895,1214,alien,1281695264 +111895,1214,android,1281695271 +111895,1214,erlend's DVDs,1165074187 +111895,1214,evolution,1281695312 +111895,1214,H. R. Giger,1241554743 +111895,1214,horror,1281695257 +111895,1214,monster,1241196409 +111895,1214,Ridley Scott,1391110489 +111895,1214,sci-fi,1419586027 +111895,1214,set design,1241196409 +111895,1214,shocks,1241196409 +111895,1217,Akira Kurosawa,1170494507 +111895,1217,erlend's DVDs,1165074552 +111895,1217,tragedy,1241555122 +111895,1218,erlend's DVDs,1294525144 +111895,1218,Hong Kong,1294525164 +111895,1218,John Woo,1294525147 +111895,1219,Alfred Hitchcock,1281696501 +111895,1219,erlend's DVDs,1165074546 +111895,1219,gothic,1420148095 +111895,1219,horror,1281696514 +111895,1219,motel,1420147819 +111895,1219,"Phoenix, Arizona",1420148079 +111895,1219,serial killer,1281696528 +111895,1220,car chase,1176625999 +111895,1220,erlend's DVDs,1176476156 +111895,1220,mission from God,1176626015 +111895,1220,music,1176625999 +111895,1220,musical,1176625999 +111895,1220,rhythm & blues,1176625999 +111895,1225,erlend's DVDs,1165074197 +111895,1227,Ennio Morricone,1282982139 +111895,1227,erlend's DVDs,1165075700 +111895,1227,gangster,1363470052 +111895,1227,Jennifer Connelly,1282982132 +111895,1227,organized crime,1363470069 +111895,1227,Sergio Leone,1282982145 +111895,1228,boxing,1295131794 +111895,1228,erlend's DVDs,1295131785 +111895,1228,Martin Scorsese,1295131788 +111895,1228,Robert De Niro,1295131790 +111895,1230,erlend's DVDs,1165074211 +111895,1230,new york,1391457486 +111895,1230,Woody Allen,1391457484 +111895,1231,erlend's DVDs,1165074561 +111895,1233,erlend's DVDs,1165075583 +111895,1233,World War II,1170492699 +111895,1234,erlend's DVDs,1247124389 +111895,1237,erlend's DVDs,1165074573 +111895,1237,Ingmar Bergman,1281699603 +111895,1240,Arnold Schwarzenegger,1363471154 +111895,1240,robots,1363471164 +111895,1240,sci-fi,1363471160 +111895,1240,time travel,1363471168 +111895,1242,American Civil War,1287259179 +111895,1242,denzel washington,1287259188 +111895,1242,erlend's DVDs,1287257458 +111895,1242,historical,1287259195 +111895,1242,Morgan Freeman,1287259202 +111895,1244,erlend's DVDs,1165074394 +111895,1244,new york,1170493405 +111895,1244,Woody Allen,1165079243 +111895,1245,erlend's DVDs,1180181198 +111895,1251,erlend's DVDs,1213902224 +111895,1252,erlend's DVDs,1165074260 +111895,1252,Los Angeles,1138219503 +111895,1256,erlend's DVDs,1165074317 +111895,1258,enclosed space,1283092904 +111895,1258,erlend's DVDs,1283092834 +111895,1258,Horror,1283092848 +111895,1258,hotel,1283092876 +111895,1258,Jack Nicholson,1283092854 +111895,1258,literary adaptation,1283092857 +111895,1258,Stanley Kubrick,1283092865 +111895,1258,Stephen King,1283092868 +111895,1260,erlend's DVDs,1165074389 +111895,1260,Fritz Lang,1165076522 +111895,1260,german expressionism,1170493375 +111895,1260,serial killer,1139061989 +111895,1262,erlend's DVDs,1281456623 +111895,1267,erlend's DVDs,1307193915 +111895,1274,animation,1165087303 +111895,1274,erlend's DVDs,1165074182 +111895,1276,erlend's DVDs,1281456611 +111895,1276,escape,1281989381 +111895,1276,prison,1281989381 +111895,1278,erlend's DVDs,1165074711 +111895,1278,gothic,1165087620 +111895,1281,Charlie Chaplin,1165076611 +111895,1281,erlend's DVDs,1165076611 +111895,1283,erlend's DVDs,1301135794 +111895,1283,western,1301135805 +111895,1284,erlend's DVDs,1299365101 +111895,1284,Howard Hawks,1299365107 +111895,1284,Humphrey Bogart,1299365111 +111895,1284,mystery,1299365118 +111895,1284,Philip Marlowe,1299365120 +111895,1287,erlend's DVDs,1266015419 +111895,1288,erlend's DVDs,1169229967 +111895,1288,hard rock,1176626474 +111895,1288,rise and fall,1176626512 +111895,1291,erlend's DVDs,1305466115 +111895,1291,Harrison Ford,1305466121 +111895,1291,Sean Connery,1305466129 +111895,1291,Steven Spielberg,1305466131 +111895,1292,erlend's DVDs,1165077459 +111895,1292,Peter Sellers,1288725425 +111895,1292,satire,1288725437 +111895,1293,biopic,1298103752 +111895,1293,erlend's DVDs,1298103748 +111895,1298,erlend's DVDs,1174313670 +111895,1300,1950s,1281699160 +111895,1300,coming of age,1281699166 +111895,1300,erlend's DVDs,1190223951 +111895,1300,rural,1281699201 +111895,1300,Sweden,1281699182 +111895,1304,erlend's DVDs,1183129901 +111895,1320,erlend's DVDs,1190223913 +111895,1333,Alfred Hitchcock,1165078978 +111895,1333,erlend's DVDs,1165077894 +111895,1337,erlend's DVDs,1185534855 +111895,1339,erlend's DVDs,1165075010 +111895,1339,gothic,1165075033 +111895,1340,erlend's DVDs,1165074762 +111895,1340,gothic,1165074766 +111895,1340,Universal monsters,1170496175 +111895,1348,atmospheric,1283093544 +111895,1348,erlend's DVDs,1215153872 +111895,1348,F.W. Murnau,1283093512 +111895,1348,german expressionism,1297454387 +111895,1348,gothic,1283093548 +111895,1348,vampires,1283093538 +111895,1380,erlend's DVDs,1239116730 +111895,1387,erlend's DVDs,1165076635 +111895,1387,Steven Spielberg,1183744557 +111895,1391,erlend's DVDs,1263933310 +111895,1391,Pam Grier,1269970461 +111895,1408,erlend's DVDs,1295037775 +111895,1408,Michael Mann,1295037784 +111895,1411,erlend's DVDs,1291670895 +111895,1411,Kenneth Branagh,1291670906 +111895,1411,Shakespeare,1291670910 +111895,1464,erlend's DVDs,1165084861 +111895,1496,tragedy,1241555006 +111895,1573,action,1294525025 +111895,1573,erlend's DVDs,1165074881 +111895,1573,John Travolta,1294525032 +111895,1573,John Woo,1294525019 +111895,1573,Nicolas Cage,1294525048 +111895,1608,erlend's DVDs,1165074744 +111895,1617,erlend's DVDs,1315061459 +111895,1625,David Fincher,1418923356 +111895,1625,erlend's DVDs,1165074929 +111895,1625,michael douglas,1418923350 +111895,1625,plot twist,1418923369 +111895,1625,twist ending,1418923374 +111895,1635,erlend's DVDs,1178121420 +111895,1653,dystopia,1418922224 +111895,1653,genetics,1418922230 +111895,1653,gore vidal,1418922277 +111895,1673,1970s,1281695110 +111895,1673,black comedy,1281695127 +111895,1673,erlend's DVDs,1166630867 +111895,1673,Philip Seymour Hoffman,1281695145 +111895,1676,erlend's DVDs,1165075494 +111895,1676,Robert Heinlein,1363472710 +111895,1690,erlend's DVDs,1190223851 +111895,1693,erlend's DVDs,1176999245 +111895,1701,Woody Allen,1165088170 +111895,1726,adaptation,1363472087 +111895,1729,erlend's DVDs,1266015009 +111895,1729,Pam Grier,1266015034 +111895,1730,erlend's DVDs,1165085603 +111895,1732,erlend's DVDs,1275060736 +111895,1732,Philip Seymour Hoffman,1275060767 +111895,1748,aliens,1307125536 +111895,1748,dystopia,1307125505 +111895,1748,erlend's DVDs,1165074843 +111895,1748,Jennifer Connelly,1307125517 +111895,1748,sci-fi,1307125524 +111895,1748,stylized,1307125529 +111895,1805,erlend's DVDs,1285767958 +111895,1805,plot twist,1419162072 +111895,1805,twist ending,1419162067 +111895,1827,documentary,1291407053 +111895,1827,erlend's DVDs,1291407049 +111895,1827,Michael Moore,1291407058 +111895,1834,twist ending,1144422553 +111895,1889,erlend's DVDs,1198504784 +111895,1912,erlend's DVDs,1165075177 +111895,1916,erlend's DVDs,1165074800 +111895,1921,erlend's DVDs,1277069195 +111895,1927,erlend's DVDs,1215153730 +111895,1935,erlend's DVDs,1299277400 +111895,1935,John Ford,1299277409 +111895,1938,addiction,1138689692 +111895,1949,erlend's DVDs,1291670830 +111895,1949,Fred Zinnemann,1291670835 +111895,1952,Dustin Hoffman,1300137946 +111895,1952,erlend's DVDs,1300137950 +111895,1952,New York City,1300137956 +111895,1953,erlend's DVDs,1216839841 +111895,1953,Gene Hackman,1294516095 +111895,1959,erlend's DVDs,1176798127 +111895,1963,Woody Allen,1165088039 +111895,1967,erlend's DVDs,1190826628 +111895,1968,erlend's DVDs,1263678888 +111895,1982,erlend's DVDs,1165079067 +111895,1997,erlend's DVDs,1254895650 +111895,2010,erlend's DVDs,1165076013 +111895,2010,Fritz Lang,1298229140 +111895,2010,german expressionism,1138214382 +111895,2010,robot,1170493416 +111895,2010,science fiction,1298229133 +111895,2018,animation,1165087274 +111895,2018,erlend's DVDs,1165074158 +111895,2019,Akira Kurosawa,1165075665 +111895,2019,erlend's DVDs,1165075672 +111895,2021,David Lynch,1425586662 +111895,2022,erlend's DVDs,1263679099 +111895,2028,erlend's DVDs,1172338233 +111895,2065,erlend's DVDs,1165075213 +111895,2065,Woody Allen,1165075208 +111895,2066,erlend's DVDs,1247124576 +111895,2066,film noir,1298226106 +111895,2066,Jacques Tourneur,1298226112 +111895,2068,erlend's DVDs,1227460558 +111895,2076,atmospheric,1302545199 +111895,2076,David Lynch,1302545201 +111895,2076,Dennis Hopper,1302545206 +111895,2076,erlend's DVDs,1302545194 +111895,2080,animation,1165084818 +111895,2080,erlend's DVDs,1165074169 +111895,2094,Jennifer Connelly,1363472000 +111895,2115,erlend's DVDs,1300903154 +111895,2115,Harrison Ford,1300903158 +111895,2115,Steven Spielberg,1300903168 +111895,2117,bleak atmosphere,1241196063 +111895,2117,dystopia,1298748704 +111895,2117,erlend's DVDs,1189795086 +111895,2117,George Orwell,1298748708 +111895,2117,ideology,1241196063 +111895,2117,post-apocalyptic,1298748722 +111895,2117,Richard Burton,1298748725 +111895,2117,totalitarianism,1429733888 +111895,2131,erlend's DVDs,1190224003 +111895,2131,Ingmar Bergman,1342129305 +111895,2140,erlend's DVDs,1302798924 +111895,2140,fantasy,1302798930 +111895,2159,serial killer,1138373847 +111895,2160,erlend's DVDs,1185730112 +111895,2163,erlend's DVDs,1165086639 +111895,2178,erlend's DVDs,1254895845 +111895,2182,Alfred Hitchcock,1304952822 +111895,2182,erlend's DVDs,1304952819 +111895,2183,Alfred Hitchcock,1170493397 +111895,2183,erlend's DVDs,1169230018 +111895,2184,Alfred Hitchcock,1291407231 +111895,2184,black comedy,1291407235 +111895,2184,erlend's DVDs,1291407228 +111895,2186,erlend's DVDs,1215153940 +111895,2187,Alfred Hitchcock,1294493210 +111895,2187,erlend's DVDs,1294493207 +111895,2187,Marlene Dietrich,1294493215 +111895,2194,erlend's DVDs,1215153742 +111895,2203,Alfred Hitchcock,1170495992 +111895,2203,erlend's DVDs,1169230209 +111895,2204,erlend's DVDs,1263679403 +111895,2208,Alfred Hitchcock,1170493321 +111895,2208,erlend's DVDs,1165074363 +111895,2287,erlend's DVDs,1298225379 +111895,2287,horror,1298225397 +111895,2287,science fiction,1298225392 +111895,2288,erlend's DVDs,1165075283 +111895,2290,erlend's DVDs,1185311744 +111895,2290,Woody Allen,1165088056 +111895,2291,erlend's DVDs,1165074863 +111895,2291,gothic,1165074868 +111895,2291,Tim Burton,1165087717 +111895,2294,animation,1293228150 +111895,2294,dreamworks,1293228159 +111895,2294,erlend's DVDs,1293228142 +111895,2294,Woody Allen,1293228167 +111895,2303,erlend's DVDs,1165075154 +111895,2308,blaxploitation,1138212792 +111895,2313,erlend's DVDs,1165076450 +111895,2333,erlend's DVDs,1165075015 +111895,2336,erlend's DVDs,1301135147 +111895,2336,historical,1301135161 +111895,2355,erlend's DVDs,1176476136 +111895,2356,erlend's DVDs,1165075460 +111895,2356,Woody Allen,1165075460 +111895,2360,family,1425587563 +111895,2366,erlend's DVDs,1165075077 +111895,2366,horror,1293838193 +111895,2366,monster,1293838181 +111895,2394,animation,1288885316 +111895,2394,Bible,1288885307 +111895,2394,erlend's dvds,1288885274 +111895,2395,erlend's DVDs,1303215083 +111895,2395,Wes Anderson,1303215100 +111895,2454,erlend's DVDs,1219517530 +111895,2454,science fiction,1299010868 +111895,2454,Vincent Price,1299010877 +111895,2455,David Cronenberg,1299010904 +111895,2455,erlend's DVDs,1165085209 +111895,2455,horror,1299010906 +111895,2455,science fiction,1299010919 +111895,2459,erlend's DVDs,1165075511 +111895,2459,gothic,1165075511 +111895,2467,amateur detective,1419075516 +111895,2467,erlend's DVDs,1165082825 +111895,2467,medieval,1419075502 +111895,2467,monastery,1419075505 +111895,2467,Umberto Eco,1419075508 +111895,2488,erlend's DVDs,1297437154 +111895,2488,serial killer,1297437164 +111895,2488,voyeurism,1297437166 +111895,2519,erlend's DVDs,1312290360 +111895,2519,Vincent Price,1312290365 +111895,2529,dystopia,1307731722 +111895,2529,erlend's DVDs,1307731716 +111895,2529,post-apocalyptic,1307731728 +111895,2529,science fiction,1307731735 +111895,2529,twist ending,1144422556 +111895,2550,erlend's DVDs,1165079087 +111895,2550,gothic,1165079090 +111895,2550,haunted house,1288721820 +111895,2550,horror,1288721821 +111895,2571,artificial intelligence,1282985266 +111895,2571,cyberpunk,1282985273 +111895,2571,dystopia,1282985262 +111895,2571,erlend's DVDs,1165074400 +111895,2571,philosophical,1282985281 +111895,2571,post-apocalyptic,1282985288 +111895,2571,sci-fi,1282985293 +111895,2571,virtual reality,1282985300 +111895,2633,Boris Karloff,1287003243 +111895,2633,erlend's DVDs,1281206805 +111895,2644,bad ending,1288721766 +111895,2644,dracula,1288721701 +111895,2644,erlend's DVDs,1165074849 +111895,2644,gothic,1165074851 +111895,2644,vampire,1288721720 +111895,2648,erlend's DVDs,1165074323 +111895,2651,erlend's DVDs,1165086096 +111895,2654,erlend's DVDs,1165084686 +111895,2654,gothic,1170492362 +111895,2654,universal monsters,1170492349 +111895,2654,werewolf,1170492359 +111895,2660,dialogue,1299101220 +111895,2660,erlend's DVDs,1298717349 +111895,2660,horror,1298717349 +111895,2660,Howard Hawks,1298717359 +111895,2660,science fiction,1298717349 +111895,2661,erlend's DVDs,1298717297 +111895,2661,horror,1298717297 +111895,2661,monster,1298717297 +111895,2661,Ray Bradbury,1298717307 +111895,2661,science fiction,1298717297 +111895,2664,Don Siegel,1298717428 +111895,2664,erlend's DVDs,1254895610 +111895,2664,horror,1298717422 +111895,2664,science fiction,1298717422 +111895,2712,erlend's DVDs,1234648153 +111895,2712,Stanley Kubrick,1418922553 +111895,2728,Biography,1170493743 +111895,2728,erlend's DVDs,1165074152 +111895,2728,Stanley Kubrick,1298227085 +111895,2739,erlend's DVDs,1175283176 +111895,2750,erlend's DVDs,1165075221 +111895,2750,Woody Allen,1165075228 +111895,2757,erlend's DVDs,1165085223 +111895,2761,animation,1165079150 +111895,2761,cold war,1418925482 +111895,2761,erlend's DVDs,1165079145 +111895,2761,robot,1170493289 +111895,2762,twist ending,1144422603 +111895,2764,erlend's DVDs,1307193961 +111895,2780,Edgar Allan Poe,1165085903 +111895,2780,erlend's DVDs,1165075465 +111895,2780,gothic,1165075468 +111895,2780,Vincent Price,1165087978 +111895,2782,Edgar Allan Poe,1165087861 +111895,2782,erlend's DVDs,1165075184 +111895,2782,gothic,1165075189 +111895,2782,Vincent Price,1165088368 +111895,2783,Vincent Price,1165088400 +111895,2784,erlend's DVDs,1215005523 +111895,2785,Edgar Allan Poe,1165086014 +111895,2785,erlend's DVDs,1165075500 +111895,2785,gothic,1165075503 +111895,2785,Vincent Price,1165088392 +111895,2791,erlend's DVDs,1291492430 +111895,2791,Leslie Nielsen,1291501520 +111895,2791,Parody,1291492442 +111895,2791,repetitious,1291501495 +111895,2819,erlend's DVDs,1263678984 +111895,2858,erlend's DVDs,1172338252 +111895,2859,erlend's DVDs,1291407645 +111895,2859,Jonathan Demme,1291407649 +111895,2859,music,1291407654 +111895,2863,erlend's DVDs,1165084117 +111895,2871,erlend's DVDs,1215153809 +111895,2916,Arnold Schwarzenegger,1293228435 +111895,2916,cyberpunk,1293228442 +111895,2916,dystopia,1293228438 +111895,2916,erlend's DVDs,1165075318 +111895,2916,Philip K. Dick,1138214129 +111895,2927,erlend's DVDs,1165074247 +111895,2932,Ennio Morricone,1296844257 +111895,2932,erlend's DVDs,1296844253 +111895,2932,Terrence Malick,1296844263 +111895,2940,erlend's DVDs,1287260382 +111895,2940,film noir,1287260419 +111895,2940,Glenn Ford,1287260399 +111895,2940,Rita Hayworth,1287260387 +111895,2947,erlend's DVDs,1307731630 +111895,2947,james bond,1307731641 +111895,2947,Sean Connery,1307731647 +111895,2947,Spy Thriller,1307731659 +111895,2951,Clint Eastwood,1299364958 +111895,2951,Ennio Morricone,1299364961 +111895,2951,erlend's DVDs,1299364954 +111895,2951,Sergio Leone,1299364965 +111895,2951,spaghetti western,1299364969 +111895,2951,western,1299364972 +111895,2952,erlend's DVDs,1304952764 +111895,2952,Paul Thomas Anderson,1304952771 +111895,2952,Philip Seymour Hoffman,1304952774 +111895,2956,erlend's DVDs,1169229927 +111895,2970,erlend's DVDs,1165077574 +111895,2970,personality disorder,1165087196 +111895,2973,erlend's DVDs,1165074285 +111895,2973,Woody Allen,1165077510 +111895,2985,corruption,1363471222 +111895,2985,dystopia,1363471208 +111895,2985,erlend's DVDs,1165075476 +111895,2985,sci-fi,1363471212 +111895,2989,Carole Bouquet,1272748964 +111895,2997,erlend's DVDs,1165077877 +111895,3006,erlend's DVDs,1165077589 +111895,3006,Michael Mann,1165085296 +111895,3020,erlend's DVDs,1165074897 +111895,3020,going postal,1138220280 +111895,3022,Buster Keaton,1170493194 +111895,3022,erlend's DVDs,1165076696 +111895,3030,Akira Kurosawa,1170492564 +111895,3030,erlend's DVDs,1166630730 +111895,3030,samurai,1170493611 +111895,3034,erlend's DVDs,1266015251 +111895,3036,erlend's DVDs,1190224037 +111895,3036,Everett McGill,1341149549 +111895,3036,homo sapiens,1341149589 +111895,3036,neanderthal,1341149585 +111895,3036,plot,1341149556 +111895,3037,erlend's DVDs,1311064614 +111895,3067,erlend's DVDs,1219517496 +111895,3075,erlend's DVDs,1169333125 +111895,3075,Roman Polanski,1170494537 +111895,3081,erlend's DVDs,1165077236 +111895,3081,gothic,1165077241 +111895,3083,erlend's DVDs,1165074193 +111895,3091,Akira Kurosawa,1170492460 +111895,3091,erlend's DVDs,1166630793 +111895,3093,erlend's DVDs,1219517517 +111895,3099,erlend's DVDs,1263330929 +111895,3101,personality disorder,1138221132 +111895,3114,animation,1165087579 +111895,3114,erlend's DVDs,1165077000 +111895,3129,erlend's DVDs,1165075267 +111895,3129,Woody Allen,1165075267 +111895,3147,erlend's DVDs,1220038614 +111895,3152,Cloris Leachman,1281699075 +111895,3152,coming of age,1281699082 +111895,3152,erlend's DVDs,1263678869 +111895,3152,Jeff Bridges,1281699087 +111895,3152,Peter Bogdanovich,1281699096 +111895,3152,small town,1281699108 +111895,3160,erlend's DVDs,1165075085 +111895,3160,Philip Seymour Hoffman,1303215238 +111895,3167,erlend's DVDs,1294676057 +111895,3167,Jack Nicholson,1294676060 +111895,3167,Mike Nichols,1294676063 +111895,3168,Dennis Hopper,1419161917 +111895,3168,Jack Nicholson,1363469568 +111895,3168,Music,1363469577 +111895,3176,erlend's DVDs,1171148727 +111895,3176,Philip Seymour Hoffman,1303215181 +111895,3198,erlend's DVDs,1263678755 +111895,3200,erlend's DVDs,1165084269 +111895,3201,erlend's DVDs,1165074906 +111895,3201,Jack Nicholson,1281698955 +111895,3213,Batman,1303130257 +111895,3213,erlend's DVDs,1303130253 +111895,3213,superhero,1303130266 +111895,3262,David Lynch,1310911840 +111895,3262,erlend's DVDs,1310911835 +111895,3275,erlend's DVDs,1237060395 +111895,3296,erlend's DVDs,1165084358 +111895,3304,erlend's DVDs,1298228460 +111895,3304,Paul Schrader,1298228465 +111895,3307,Charlie Chaplin,1165087435 +111895,3307,erlend's DVDs,1165074279 +111895,3307,slapstick,1138220212 +111895,3310,Charlie Chaplin,1165076971 +111895,3310,erlend's DVDs,1165076964 +111895,3363,coming of age,1283092471 +111895,3363,erlend's DVDs,1283092404 +111895,3363,Harrison Ford,1283092482 +111895,3363,rock and roll,1283092487 +111895,3386,erlend's DVDs,1165075065 +111895,3386,John F. Kennedy,1138373532 +111895,3386,politics,1165075068 +111895,3386,US President,1365012487 +111895,3418,erlend's DVDs,1178898085 +111895,3418,Ridley Scott,1363469623 +111895,3418,Road Movie,1363469608 +111895,3430,Charles Bronson,1294493101 +111895,3430,erlend's DVDs,1294493098 +111895,3430,vigilante,1295130566 +111895,3435,erlend's DVDs,1298226039 +111895,3435,film noir,1298226045 +111895,3435,Los Angeles,1298226050 +111895,3462,Charlie Chaplin,1165076213 +111895,3462,erlend's DVDs,1165076213 +111895,3468,erlend's DVDs,1307193985 +111895,3469,erlend's DVDs,1165074352 +111895,3471,erlend's DVDs,1172940638 +111895,3498,erlend's DVDs,1332525151 +111895,3503,alien,1281695577 +111895,3503,space,1281695605 +111895,3503,space station,1281695598 +111895,3503,twist ending,1281695630 +111895,3546,erlend's DVDs,1165082440 +111895,3551,erlend's DVDs,1171133353 +111895,3556,erlend's DVDs,1194304540 +111895,3578,Ridley Scott,1419585699 +111895,3578,Rome,1419585693 +111895,3578,Russell Crowe,1298227106 +111895,3618,erlend's DVDs,1165075486 +111895,3618,Woody Allen,1165075486 +111895,3627,erlend's DVDs,1254895591 +111895,3629,Charlie Chaplin,1170493462 +111895,3629,erlend's DVDs,1165076850 +111895,3635,erlend's DVDs,1309805975 +111895,3635,james bond,1309805981 +111895,3638,erlend's DVDs,1311064569 +111895,3638,James Bond,1311064573 +111895,3654,erlend's DVDs,1165084099 +111895,3675,Bing Crosby,1301135762 +111895,3675,Christmas,1301135764 +111895,3675,erlend's DVDs,1301135758 +111895,3675,Michael Curtiz,1301135767 +111895,3681,Clint Eastwood,1299364986 +111895,3681,Ennio Morricone,1299364989 +111895,3681,erlend's DVDs,1165076729 +111895,3681,Sergio Leone,1299364996 +111895,3681,spaghetti western,1299364998 +111895,3681,western,1299365002 +111895,3683,Coen Brothers,1365965996 +111895,3699,erlend's DVDs,1270673723 +111895,3723,castle,1418925889 +111895,3723,gothic,1418925880 +111895,3723,introversion,1418925917 +111895,3723,Shakespeare,1418925877 +111895,3726,erlend's DVDs,1165074750 +111895,3728,erlend's DVDs,1298228504 +111895,3729,blaxploitation,1138212515 +111895,3735,Al Pacino,1303242780 +111895,3735,corruption,1303130075 +111895,3735,erlend's DVDs,1303130067 +111895,3735,New York City,1303242785 +111895,3735,police,1303130088 +111895,3735,Sidney Lumet,1303242790 +111895,3738,car chase,1175283134 +111895,3738,erlend's DVDs,1175283144 +111895,3744,blaxploitation,1294520218 +111895,3744,erlend's DVDs,1294493155 +111895,3759,animation,1165085761 +111895,3759,erlend's DVDs,1165085761 +111895,3781,blaxploitation,1138212767 +111895,3782,blaxploitation,1138212684 +111895,3801,courtroom drama,1170492911 +111895,3801,erlend's DVDs,1165074203 +111895,3812,Woody Allen,1165079273 +111895,3813,erlend's DVDs,1165085445 +111895,3813,Woody Allen,1165085445 +111895,3814,erlend's DVDs,1165084325 +111895,3814,Woody Allen,1165084325 +111895,3849,erlend's DVDs,1169791460 +111895,3897,erlend's DVDs,1215153837 +111895,3897,Philip Seymour Hoffman,1303215195 +111895,3925,erlend's DVDs,1189616350 +111895,3932,erlend's DVDs,1165075058 +111895,3949,addiction,1138689669 +111895,3949,dark,1281694895 +111895,3949,drugs,1283093316 +111895,3949,erlend's DVDs,1278104974 +111895,3949,Jennifer Connelly,1281694907 +111895,3983,erlend's dvds,1289838792 +111895,3994,twist ending,1144422589 +111895,4007,erlend's DVDs,1183306340 +111895,4008,erlend's DVDs,1263933269 +111895,4033,erlend's DVDs,1165075289 +111895,4033,historical,1298749027 +111895,4033,John F. Kennedy,1138373463 +111895,4033,politics,1165075291 +111895,4034,erlend's DVDs,1263933165 +111895,4037,erlend's DVDs,1167518666 +111895,4042,erlend's DVDs,1174313610 +111895,4064,blaxploitation,1138212541 +111895,4064,erlend's DVDs,1165085921 +111895,4064,Pam Grier,1266015064 +111895,4065,blaxploitation,1138212595 +111895,4065,erlend's DVDs,1165074923 +111895,4065,Pam Grier,1269970392 +111895,4105,erlend's DVDs,1165074874 +111895,4144,erlend's DVDs,1189616370 +111895,4146,erlend's DVDs,1171133389 +111895,4195,art deco,1281696432 +111895,4195,concept,1281696389 +111895,4195,erlend's DVDs,1165074731 +111895,4195,horror,1281696379 +111895,4195,Joseph Cotten,1281696401 +111895,4195,serial killer,1281696466 +111895,4195,Vincent Price,1281696415 +111895,4210,erlend's DVDs,1165075100 +111895,4210,Michael Mann,1165085309 +111895,4210,serial killer,1138220421 +111895,4223,erlend's DVDs,1344328955 +111895,4223,World War II,1344329065 +111895,4226,erlend's DVDs,1332525113 +111895,4262,erlend's DVDs,1180988265 +111895,4297,erlend's DVDs,1237037237 +111895,4298,crime,1283093260 +111895,4298,erlend's DVDs,1165076152 +111895,4298,France,1283093284 +111895,4298,heist,1283093245 +111895,4306,erlend's DVDs,1197577258 +111895,4308,erlend's DVDs,1165082809 +111895,4326,erlend's DVDs,1307193935 +111895,4329,erlend's DVDs,1254895755 +111895,4330,biopic,1340903709 +111895,4330,erlend's DVDs,1325951897 +111895,4330,expressionism,1340903691 +111895,4330,Marlene Dietrich,1340903564 +111895,4370,erlend's DVDs,1175283242 +111895,4392,erlend's DVDs,1165086036 +111895,4392,Woody Allen,1165086036 +111895,4393,erlend's DVDs,1165088091 +111895,4393,Woody Allen,1165088070 +111895,4403,Edgar Allan Poe,1138219555 +111895,4403,erlend's DVDs,1165074889 +111895,4403,gothic,1165074889 +111895,4403,Vincent Price,1165088361 +111895,4404,erlend's DVDs,1165076466 +111895,4404,Faust,1297454303 +111895,4404,german expressionism,1297454268 +111895,4404,tragedy,1241555194 +111895,4406,erlend's DVDs,1247124286 +111895,4408,erlend's DVDs,1165086460 +111895,4408,Woody Allen,1165086460 +111895,4409,erlend's DVDs,1165086400 +111895,4409,Woody Allen,1165086400 +111895,4412,blaxploitation,1138212927 +111895,4422,erlend's DVDs,1165077017 +111895,4422,Ingmar Bergman,1165077027 +111895,4426,erlend's DVDs,1183306473 +111895,4426,film noir,1183306495 +111895,4432,erlend's DVDs,1165074602 +111895,4433,erlend's DVDs,1237037248 +111895,4437,atmospheric,1293394709 +111895,4437,Dario Argento,1291407143 +111895,4437,erlend's DVDs,1291407139 +111895,4437,Giallo,1293394720 +111895,4437,horror,1291407150 +111895,4439,addiction,1138220116 +111895,4439,Berlin,1425588715 +111895,4439,David Bowie,1425588719 +111895,4439,drug abuse,1138220116 +111895,4439,erlend's DVDs,1165074813 +111895,4439,heroin,1425588724 +111895,4467,erlend's DVDs,1165074737 +111895,4467,Terry Gilliam,1165087657 +111895,4470,Aki Kaurismäki,1297438051 +111895,4470,black comedy,1297438054 +111895,4470,erlend's DVDs,1297438048 +111895,4479,Clint Eastwood,1304952852 +111895,4479,erlend's DVDs,1304952847 +111895,4479,jazz,1304952854 +111895,4546,buried alive,1138373757 +111895,4546,erlend's DVDs,1165074635 +111895,4628,Woody Allen,1165088189 +111895,4720,erlend's DVDs,1165075165 +111895,4720,ghost story,1138220699 +111895,4720,gothic,1165075172 +111895,4720,twist ending,1144422634 +111895,4725,erlend's DVDs,1287257445 +111895,4725,mental hospital,1287437544 +111895,4725,Psychological Horror,1287437559 +111895,4733,Woody Allen,1165088223 +111895,4754,erlend's DVDs,1165075330 +111895,4768,erlend's DVDs,1165076811 +111895,4768,Fritz Lang,1170496244 +111895,4803,erlend's DVDs,1165075196 +111895,4803,personality disorder,1138220854 +111895,4811,erlend's DVDs,1332524994 +111895,4826,erlend's DVDs,1332524903 +111895,4826,World War II,1332524916 +111895,4833,atmospheric,1288721863 +111895,4833,erlend's DVDs,1165084715 +111895,4833,ghost story,1165084726 +111895,4833,gothic,1288721866 +111895,4848,David Lynch,1425586542 +111895,4848,erlend's DVDs,1165077706 +111895,4848,mystery,1425586564 +111895,4848,Naomi Watts,1425586581 +111895,4855,Clint Eastwood,1296921422 +111895,4855,Don Siegel,1296921431 +111895,4855,erlend's DVDs,1296921419 +111895,4878,erlend's DVDs,1165074312 +111895,4878,high school,1419868010 +111895,4878,mental illness,1419867990 +111895,4878,sci-fi,1419867994 +111895,4878,time travel,1419867983 +111895,4881,Coen Brothers,1298107540 +111895,4881,erlend's DVDs,1165075095 +111895,4881,scarlett johansson,1298107548 +111895,4896,erlend's DVDs,1296938936 +111895,4896,harry potter,1296938939 +111895,4907,blaxploitation,1141316255 +111895,4930,erlend's DVDs,1271018906 +111895,4936,erlend's DVDs,1165086341 +111895,4951,desert island,1307193866 +111895,4951,erlend's DVDs,1307193859 +111895,4970,humiliation,1138213527 +111895,4979,erlend's DVDs,1245516220 +111895,4995,erlend's DVDs,1198504756 +111895,5004,Blake Edwards,1288725359 +111895,5004,erlend's dvds,1288725330 +111895,5004,peter sellers,1288725367 +111895,5015,dramatic irony,1138218716 +111895,5015,erlend's DVDs,1165075148 +111895,5017,erlend's DVDs,1165077474 +111895,5017,Fritz Lang,1165087131 +111895,5022,erlend's DVDs,1263679386 +111895,5046,Philip K. Dick,1138214212 +111895,5072,animation,1165076024 +111895,5072,erlend's DVDs,1165076020 +111895,5105,erlend's DVDs,1165084051 +111895,5105,gothic,1165087696 +111895,5120,erlend's DVDs,1281456585 +111895,5147,erlend's DVDs,1165074691 +111895,5147,Ingmar Bergman,1165074702 +111895,5156,blaxploitation,1138212899 +111895,5218,animation,1165084790 +111895,5218,erlend's DVDs,1165084790 +111895,5291,Akira Kurosawa,1170494518 +111895,5291,erlend's DVDs,1166630683 +111895,5304,erlend's DVDs,1281206909 +111895,5304,Neo-realism,1298227588 +111895,5304,Roberto Rossellini,1298227589 +111895,5304,World War II,1298227591 +111895,5333,erlend's DVDs,1285269923 +111895,5333,Jean-Pierre Melville,1285269934 +111895,5339,erlend's DVDs,1165075054 +111895,5339,Woody Allen,1165084765 +111895,5348,Woody Allen,1165088231 +111895,5349,erlend's DVDs,1285400319 +111895,5383,erlend's DVDs,1165085574 +111895,5385,erlend's DVDs,1172337901 +111895,5445,erlend's DVDs,1315061448 +111895,5445,Philip K. Dick,1138214111 +111895,5489,erlend's DVDs,1197577216 +111895,5515,erlend's DVDs,1234648127 +111895,5515,modernism,1283092771 +111895,5515,surrealism,1283092776 +111895,5515,sweden,1283092788 +111895,5590,blaxploitation,1138212656 +111895,5618,animation,1165087551 +111895,5618,erlend's DVDs,1165074584 +111895,5649,erlend's DVDs,1165075025 +111895,5649,gothic,1165075031 +111895,5679,erlend's DVDs,1165075234 +111895,5679,ghost story,1165084963 +111895,5690,erlend's DVDs,1245516175 +111895,5693,erlend's DVDs,1239116763 +111895,5816,erlend's DVDs,1293228078 +111895,5816,fantasy,1293228087 +111895,5816,harry potter,1293228091 +111895,5816,John Cleese,1293228093 +111895,5820,erlend's DVDs,1165074591 +111895,5820,live music,1176626357 +111895,5820,Motown,1176626286 +111895,5820,music,1176626286 +111895,5820,music business,1176626378 +111895,5820,rhythm & blues,1176626286 +111895,5820,soul music,1176626286 +111895,5838,tragedy,1241554917 +111895,5853,erlend's DVDs,1165085996 +111895,5867,erlend's DVDs,1165085275 +111895,5867,Michael Mann,1165085275 +111895,5903,erlend's DVDs,1165082559 +111895,5954,erlend's DVDs,1303215124 +111895,5954,New York City,1304026403 +111895,5954,Philip Seymour Hoffman,1303215130 +111895,5954,Rosario Dawson,1304026419 +111895,5954,spike lee,1303215141 +111895,5965,erlend's DVDs,1165084456 +111895,5965,Ridley Scott,1165084463 +111895,5971,erlend's DVDs,1223830685 +111895,5989,erlend's DVDs,1172940503 +111895,5992,erlend's DVDs,1165075049 +111895,6100,erlend's DVDs,1165075120 +111895,6100,Woody Allen,1165075129 +111895,6104,erlend's DVDs,1247124259 +111895,6108,erlend's DVDs,1188150476 +111895,6123,Chris Marker,1165076933 +111895,6123,erlend's DVDs,1165076928 +111895,6140,erlend's DVDs,1216839819 +111895,6184,erlend's DVDs,1165075091 +111895,6242,erlend's DVDs,1165084634 +111895,6242,japanese horror,1432236765 +111895,6273,erlend's DVDs,1254895687 +111895,6286,Aki Kaurismäki,1297438210 +111895,6286,amnesia,1297438219 +111895,6286,erlend's DVDs,1297438206 +111895,6296,erlend's DVDs,1313091055 +111895,6337,erlend's DVDs,1312290244 +111895,6337,Philip Seymour Hoffman,1312290247 +111895,6356,erlend's DVDs,1306346376 +111895,6356,John Sturges,1306346379 +111895,6365,erlend's DVDs,1165085617 +111895,6377,animation,1165076656 +111895,6377,erlend's DVDs,1165076654 +111895,6377,Pixar,1170493149 +111895,6405,erlend's DVDs,1214342055 +111895,6430,concert,1165086966 +111895,6430,erlend's DVDs,1165086951 +111895,6430,glam rock,1176626610 +111895,6430,live music,1176626594 +111895,6430,music,1176626594 +111895,6477,vincent price,1165088323 +111895,6515,erlend's DVDs,1254895721 +111895,6530,erlend's DVDs,1254604490 +111895,6584,erlend's DVDs,1165074530 +111895,6584,Woody Allen,1165087290 +111895,6629,erlend's DVDs,1288885368 +111895,6629,revenge,1288885379 +111895,6629,Vincent Price,1288885371 +111895,6645,erlend's DVDs,1165075272 +111895,6650,erlend's DVDs,1254895738 +111895,6660,erlend's DVDs,1165074557 +111895,6708,erlend's DVDs,1266014874 +111895,6708,Los Angeles,1266014916 +111895,6708,Nicolas Cage,1266014893 +111895,6708,obsessive compulsive disorder,1266014907 +111895,6708,Ridley Scott,1266014900 +111895,6731,erlend's DVDs,1293651136 +111895,6731,George A. Romero,1293651141 +111895,6731,horror,1293651153 +111895,6731,zombie,1293651166 +111895,6748,David Cronenberg,1363469832 +111895,6748,Mad Scientist,1363469810 +111895,6750,erlend's DVDs,1165075345 +111895,6750,Woody Allen,1165075351 +111895,6772,erlend's DVDs,1185746183 +111895,6789,erlend's DVDs,1332525237 +111895,6789,Monica Bellucci,1341783832 +111895,6789,plot,1341783858 +111895,6789,Romane Bohringer,1341783841 +111895,6791,erlend's DVDs,1227460710 +111895,6808,erlend's DVDs,1237037271 +111895,6818,erlend's DVDs,1215005551 +111895,6818,World War II,1298227826 +111895,6852,erlend's DVDs,1166630710 +111895,6858,erlend's DVDs,1190223981 +111895,6920,erlend's DVDs,1247124450 +111895,6953,erlend's DVDs,1165077858 +111895,6967,erlend's DVDs,1240082365 +111895,6971,erlend's DVDs,1306516996 +111895,6971,Lars von Trier,1306517004 +111895,6971,stylized,1306517012 +111895,6971,World War II,1306517016 +111895,6987,erlend's DVDs,1183744437 +111895,6987,german expressionism,1138213557 +111895,6993,erlend's DVDs,1165074346 +111895,6993,family,1170493249 +111895,6993,Woody Allen,1165079235 +111895,7001,erlend's DVDs,1165085498 +111895,7013,erlend's DVDs,1165074412 +111895,7022,erlend's DVDs,1165074218 +111895,7044,David Lynch,1183130124 +111895,7044,erlend's DVDs,1183130111 +111895,7064,atmospheric,1283031594 +111895,7064,erlend's DVDs,1165074228 +111895,7064,fairy tale,1283031603 +111895,7064,Jean Cocteau,1283031601 +111895,7064,stylized,1283031619 +111895,7068,erlend's DVDs,1169791427 +111895,7068,modernism,1281695736 +111895,7069,erlend's DVDs,1307193892 +111895,7070,erlend's DVDs,1299365044 +111895,7070,Howard Hawks,1299365053 +111895,7076,car chase,1351182782 +111895,7076,erlend's DVDs,1351182756 +111895,7076,Steve McQueen,1351182770 +111895,7084,erlend's DVDs,1183129999 +111895,7084,Woody Allen,1165079221 +111895,7088,erlend's DVDs,1311064653 +111895,7092,tragedy,1241554998 +111895,7116,erlend's DVDs,1165074307 +111895,7147,erlend's DVDs,1165077118 +111895,7147,Tim Burton,1165087373 +111895,7156,erlend's DVDs,1165073909 +111895,7160,serial killer,1139062001 +111895,7163,Philip K. Dick,1138214188 +111895,7208,erlend's DVDs,1167518785 +111895,7210,wyatt earp,1138213827 +111895,7254,alternate reality,1300773297 +111895,7254,erlend's DVDs,1300773292 +111895,7254,science fiction,1300773309 +111895,7254,time travel,1300773317 +111895,7272,blaxploitation,1138212700 +111895,7275,blaxploitation,1138212633 +111895,7280,blaxploitation,1138212879 +111895,7281,blaxploitation,1138212881 +111895,7318,Christianity,1298227170 +111895,7318,erlend's DVDs,1263679113 +111895,7318,Jesus Christ,1298227165 +111895,7318,Monica Bellucci,1298227158 +111895,7318,violent,1298227146 +111895,7327,erlend's DVDs,1165074541 +111895,7327,Ingmar Bergman,1170494481 +111895,7333,erlend's DVDs,1169230135 +111895,7341,erlend's DVDs,1263679362 +111895,7361,erlend's DVDs,1178898024 +111895,7373,erlend's DVDs,1234648165 +111895,7387,erlend's DVDs,1165074296 +111895,7387,zombies,1138220674 +111895,7396,divorce,1138213890 +111895,7396,erland josephson,1283093022 +111895,7396,erlend's DVDs,1165074568 +111895,7396,Ingmar Bergman,1283093001 +111895,7396,liv ullmann,1283093014 +111895,7396,marriage,1283093045 +111895,7396,sweden,1283093032 +111895,7419,erlend's DVDs,1249855423 +111895,7438,buried alive,1138373751 +111895,7454,erlend's DVDs,1290896854 +111895,7454,gothic,1290896894 +111895,7454,horror,1290896888 +111895,7454,monster,1290896903 +111895,7454,vampire,1290896911 +111895,7454,werewolf,1290896917 +111895,7505,erlend's DVDs,1263330767 +111895,7564,erlend's DVDs,1165077338 +111895,7564,ghost story,1138213762 +111895,7587,erlend's DVDs,1180988321 +111895,7587,Jean-Pierre Melville,1298228574 +111895,7587,organ music,1241198354 +111895,7587,style,1241198615 +111895,7587,stylized,1298228586 +111895,7650,erlend's DVDs,1165074818 +111895,7650,Vincent Price,1165088355 +111895,7700,erlend's DVDs,1188153181 +111895,7713,erlend's DVDs,1185534747 +111895,7720,erlend's DVDs,1165074914 +111895,7762,erlend's DVDs,1306517088 +111895,7762,espionage,1327225986 +111895,7766,Akira Kurosawa,1165087570 +111895,7766,erlend's DVDs,1165074611 +111895,7792,erlend's DVDs,1165084904 +111895,7820,Christianity,1281701599 +111895,7820,dramatic irony,1274612355 +111895,7820,erlend's DVDs,1165074658 +111895,7820,Ingmar Bergman,1274612349 +111895,7820,Max von Sydow,1281701609 +111895,7820,medieval times,1281701637 +111895,7820,rape,1281701649 +111895,7820,religion,1281701588 +111895,7820,revenge,1281701657 +111895,7820,supernatural,1281701579 +111895,7836,erlend's DVDs,1169924090 +111895,7894,erlend's DVDs,1165083689 +111895,7925,Akira Kurosawa,1170492466 +111895,7925,erlend's DVDs,1166630759 +111895,7934,erlend's DVDs,1165075335 +111895,7934,fake documentary,1138219779 +111895,7934,Woody Allen,1165075339 +111895,7936,erlend's DVDs,1169229953 +111895,7936,Ingmar Bergman,1170492629 +111895,7936,Liv Ullmann,1343508875 +111895,7936,Max von Sydow,1343508928 +111895,7936,war,1343508901 +111895,7939,atmospheric,1342129159 +111895,7939,erlend's DVDs,1315842655 +111895,7939,Harriet Andersson,1342129212 +111895,7939,Ingmar Bergman,1315842658 +111895,7939,location,1342129194 +111895,7941,erlend's DVDs,1165074142 +111895,7941,Ingmar Bergman,1165087082 +111895,7942,erlend's DVDs,1165084664 +111895,7942,Ingmar Bergman,1165084664 +111895,7980,erlend's DVDs,1297454616 +111895,7980,World War II,1297454621 +111895,7983,erlend's DVDs,1165074773 +111895,7983,Woody Allen,1165074791 +111895,7990,erlend's DVDs,1165085824 +111895,7994,erlend's DVDs,1215153551 +111895,8003,erlend's DVDs,1186418618 +111895,8016,erlend's DVDs,1270934417 +111895,8033,Audrey Hepburn,1290897084 +111895,8033,Eli Wallach,1290897093 +111895,8033,erlend's dvds,1289838776 +111895,8033,heist,1290897101 +111895,8033,Peter O'Toole,1290897097 +111895,8033,William Wyler,1290897105 +111895,8056,erlend's DVDs,1263678723 +111895,8154,erlend's DVDs,1165074101 +111895,8154,Federico Fellini,1170493643 +111895,8206,erlend's DVDs,1293381712 +111895,8206,Michael Curtiz,1293381723 +111895,8235,erlend's DVDs,1215153758 +111895,8337,erlend's DVDs,1165077149 +111895,8337,personality disorder,1165087408 +111895,8338,art direction,1340903492 +111895,8338,atmospheric,1340871689 +111895,8338,erlend's DVDs,1296844286 +111895,8338,stylized,1340871677 +111895,8360,erlend's DVDs,1197577265 +111895,8368,erlend's DVDs,1296938811 +111895,8368,harry potter,1296938824 +111895,8368,werewolf,1296938831 +111895,8405,erlend's DVDs,1165075043 +111895,8405,Ingmar Bergman,1165087779 +111895,8451,erlend's DVDs,1213996783 +111895,8459,erlend's DVDs,1272748894 +111895,8459,Olivia de Havilland,1291501718 +111895,8459,William Wyler,1291501727 +111895,8477,Chris Marker,1170494490 +111895,8477,erlend's DVDs,1165076884 +111895,8507,erlend's DVDs,1183669553 +111895,8516,erlend's DVDs,1245516191 +111895,8521,erlend's DVDs,1167518776 +111895,8609,erlend's DVDs,1315842597 +111895,8618,erlend's DVDs,1165084552 +111895,8618,western,1165084556 +111895,8636,erlend's DVDs,1285400312 +111895,8644,artificial intelligence,1293228471 +111895,8644,erlend's DVDs,1183306372 +111895,8644,robot,1293228485 +111895,8670,erlend's DVDs,1169230255 +111895,8670,Fritz Lang,1170492548 +111895,8718,erlend's DVDs,1281698791 +111895,8718,mental illness,1281698780 +111895,8718,Olivia de Havilland,1281698799 +111895,8772,erlend's DVDs,1310911897 +111895,8772,John le Carre,1310911919 +111895,8798,erlend's DVDs,1165082488 +111895,8798,Michael Mann,1165085304 +111895,8838,Ellen Burstyn,1281698999 +111895,8838,erlend's DVDs,1281699006 +111895,8838,Harvey Keitel,1281699012 +111895,8838,Martin Scorsese,1281699019 +111895,8900,blaxploitation,1138212724 +111895,8914,erlend's DVDs,1282046939 +111895,8914,science fiction,1303410413 +111895,8914,time travel,1303410418 +111895,8923,erlend's DVDs,1165075278 +111895,8947,ghost story,1165084982 +111895,8949,erlend's DVDs,1263679191 +111895,8950,erlend's DVDs,1193850927 +111895,8957,erlend's DVDs,1165075245 +111895,8957,gothic,1165075245 +111895,8958,biography,1363470168 +111895,8958,erlend's DVDs,1176476304 +111895,8958,heroin addiction,1176626191 +111895,8958,Music,1363470142 +111895,8958,music business,1176626191 +111895,8958,Ray Charles,1176626191 +111895,8958,rhythm & blues,1176626191 +111895,8961,erlend's DVDs,1169333113 +111895,8965,animation,1302328637 +111895,8965,erlend's DVDs,1302328631 +111895,8969,erlend's DVDs,1165086529 +111895,8977,Al Pacino,1332525071 +111895,8977,biography,1332525077 +111895,8977,erlend's DVDs,1332525068 +111895,8977,History,1332525081 +111895,8977,Oliver Stone,1332525084 +111895,8983,erlend's DVDs,1278104913 +111895,25750,erlend's DVDs,1315842621 +111895,25755,erlend's DVDs,1183306424 +111895,25762,erlend's DVDs,1185291753 +111895,25856,erlend's DVDs,1263677244 +111895,25856,William Wyler,1291501591 +111895,25923,Charles Dickens,1356949061 +111895,25923,David Lean,1356949094 +111895,25940,erlend's DVDs,1165074368 +111895,25940,femme fatale,1288718977 +111895,25940,film noir,1288718990 +111895,25940,Marlene Dietrich,1288718952 +111895,25940,Orson Welles,1288718945 +111895,26122,erlend's DVDs,1188153212 +111895,26183,erlend's DVDs,1322948289 +111895,26228,erlend's DVDs,1231021468 +111895,26231,erlend's DVDs,1306346483 +111895,26231,Nicolas Roeg,1306346490 +111895,26242,erlend's DVDs,1172338220 +111895,26259,erlend's DVDs,1263678922 +111895,26265,erlend's DVDs,1226180687 +111895,26306,erlend's DVDs,1165085719 +111895,26306,Vincent Price,1165087898 +111895,26344,erlend's DVDs,1237036900 +111895,26350,erlend's DVDs,1263679228 +111895,26359,erlend's DVDs,1227460632 +111895,26379,erlend's DVDs,1231021518 +111895,26380,erlend's DVDs,1276898074 +111895,26422,erlend's DVDs,1165085778 +111895,26453,erlend's DVDs,1327225761 +111895,26453,espionage,1327225770 +111895,26578,Allan Edwall,1283093171 +111895,26578,andrei tarkovsky,1283093154 +111895,26578,drama,1283093176 +111895,26578,enclosed space,1283093189 +111895,26578,Erland Josephson,1283093163 +111895,26578,erlend's DVDs,1181496574 +111895,26578,philosophical,1283093137 +111895,26578,sweden,1283093143 +111895,26941,erlend's DVDs,1263330725 +111895,27033,erlend's DVDs,1263330755 +111895,27660,animation,1165084416 +111895,27660,erlend's DVDs,1165084413 +111895,27721,erlend's DVDs,1165077723 +111895,27721,World War I,1170495928 +111895,27773,erlend's DVDs,1183669604 +111895,27788,twist ending,1363472999 +111895,27800,erlend's DVDs,1237037121 +111895,27904,animated,1281690775 +111895,27904,erlend's DVDs,1181496541 +111895,27904,Keanu Reeves,1281690750 +111895,27904,paranoia,1281690665 +111895,27904,Philip K. Dick,1281690723 +111895,27904,Robert Downey Jr.,1281690760 +111895,27904,surveillance,1281690768 +111895,30749,Africa,1302328265 +111895,30749,erlend's DVDs,1302328261 +111895,30793,erlend's DVDs,1271706802 +111895,30816,erlend's DVDs,1197577244 +111895,31193,erlend's DVDs,1238923845 +111895,31223,erlend's DVDs,1165086564 +111895,31364,erlend's DVDs,1315918128 +111895,31410,Adolf Hitler,1138373416 +111895,31410,Biography,1429734216 +111895,31410,erlend's DVDs,1165076103 +111895,31410,history,1429734204 +111895,31410,World War II,1170494096 +111895,31658,erlend's DVDs,1220214119 +111895,31660,erlend's DVDs,1306346310 +111895,31687,animation,1165087952 +111895,31687,erlend's DVDs,1165086112 +111895,31923,Charlton Heston,1302334198 +111895,31923,Christopher Lee,1302334252 +111895,31923,erlend's DVDs,1165075298 +111895,31923,Faye Dunaway,1302334218 +111895,31923,Michael York,1302334221 +111895,31923,Oliver Reed,1302334243 +111895,31923,Raquel Welch,1302334238 +111895,31923,swashbuckler,1302334232 +111895,31950,erlend's DVDs,1281006108 +111895,32031,erlend's DVDs,1172940577 +111895,32174,erlend's DVDs,1215153481 +111895,32291,erlend's DVDs,1165075107 +111895,32291,Woody Allen,1165075110 +111895,32444,tragedy,1241555064 +111895,32721,erlend's DVDs,1296921567 +111895,32721,Henry Fonda,1296921572 +111895,32721,World War II,1296921575 +111895,33162,erlend's DVDs,1169924196 +111895,33615,erlend's DVDs,1266707131 +111895,33794,batman,1307731569 +111895,33794,erlend's DVDs,1307731564 +111895,33794,superhero,1307731579 +111895,34048,erlend's DVDs,1165951791 +111895,34072,documentary,1165077623 +111895,34072,erlend's DVDs,1165077620 +111895,34155,drama,1283093103 +111895,34155,humiliation,1138214000 +111895,34155,Ingmar Bergman,1283093078 +111895,34155,Liv Ullmann,1283093082 +111895,34155,sweden,1283093094 +111895,34405,erlend's DVDs,1165077365 +111895,36276,erlend's DVDs,1198504772 +111895,37729,animation,1291407297 +111895,37729,black comedy,1291407300 +111895,37729,Danny Elfman score,1291407305 +111895,37729,erlend's DVDs,1291407292 +111895,37729,gothic,1291407309 +111895,37729,Johnny Depp,1291407311 +111895,37729,Tim Burton,1291407315 +111895,37733,erlend's DVDs,1165075020 +111895,37741,biopic,1306346421 +111895,37741,erlend's DVDs,1306346416 +111895,37741,Philip Seymour Hoffman,1306346429 +111895,37741,Truman Capote,1306346433 +111895,38061,Robert Downey Jr,1365965920 +111895,38304,biography,1165087015 +111895,38304,erlend's DVDs,1165075815 +111895,38886,divorce,1165082220 +111895,38886,erlend's DVDs,1165082217 +111895,39183,erlend's DVDs,1165077493 +111895,39381,erlend's DVDs,1312290057 +111895,39427,twist ending,1144422586 +111895,39446,gothic,1165083890 +111895,40339,erlend's DVDs,1176476179 +111895,40342,erlend's DVDs,1237036878 +111895,40491,Aki Kaurismäki,1297438130 +111895,40491,erlend's DVDs,1297438127 +111895,40732,erlend's DVDs,1165084022 +111895,40815,erlend's DVDs,1302293482 +111895,40815,Gary Oldman,1302293501 +111895,40815,harry potter,1302293499 +111895,41285,erlend's DVDs,1165079180 +111895,41285,Scarlett Johansson,1363470229 +111895,41285,Woody Allen,1363470234 +111895,41569,erlend's DVDs,1310748552 +111895,41912,erlend's DVDs,1254895570 +111895,41997,erlend's DVDs,1344328885 +111895,42094,erlend's DVDs,1239116788 +111895,42728,erlend's DVDs,1290896973 +111895,42728,middle ages,1290896752 +111895,42728,romance,1290896765 +111895,43415,erlend's DVDs,1313874392 +111895,43871,erlend's DVDs,1293651218 +111895,43871,Harrison Ford,1293651224 +111895,44022,erlend's DVDs,1170793348 +111895,44191,dystopia,1418922102 +111895,44191,erlend's DVDs,1285270920 +111895,44191,Hugo Weaving,1285270928 +111895,44191,revenge,1285270932 +111895,44191,social commentary,1418922116 +111895,44555,erlend's DVDs,1173476497 +111895,45210,erlend's DVDs,1179430272 +111895,45517,erlend's DVDs,1165951772 +111895,45722,erlend's DVDs,1287003198 +111895,45722,Johnny Depp,1287003202 +111895,45880,erlend's DVDs,1237037258 +111895,45950,environment,1175283376 +111895,45950,erlend's DVDs,1175283373 +111895,46322,erlend's DVDs,1332524950 +111895,46322,Martial Arts,1332524962 +111895,46322,redemption,1338930549 +111895,46530,erlend's DVDs,1278104955 +111895,46530,Kevin Spacey,1298203544 +111895,46855,erlend's DVDs,1283094823 +111895,46855,france,1283094828 +111895,46855,Jean-Pierre Melville,1283094834 +111895,46855,World War II,1283094841 +111895,46967,erlend's DVDs,1166630919 +111895,46967,Woody Allen,1165088206 +111895,46976,erlend's DVDs,1332525192 +111895,47044,erlend's DVDs,1291407373 +111895,47044,Gong Li,1291407381 +111895,47044,Michael Mann,1291407387 +111895,47465,erlend's DVDs,1224269241 +111895,47629,erlend's DVDs,1247124355 +111895,47860,adaptation,1285406242 +111895,47860,sir walter scott,1285406249 +111895,47999,Christianity,1296227446 +111895,47999,documentary,1296227459 +111895,47999,erlend's DVDs,1296227438 +111895,47999,religion,1296227465 +111895,48385,erlend's DVDs,1224269096 +111895,48394,erlend's DVDs,1174313636 +111895,48516,erlend's DVDs,1180181121 +111895,48774,erlend's DVDs,1219441841 +111895,48783,Clint Eastwood,1302798875 +111895,48783,erlend's DVDs,1302798871 +111895,48783,World War II,1317502581 +111895,49272,erlend's DVDs,1264876597 +111895,49272,espionage,1419792298 +111895,49272,James Bond,1419792295 +111895,49278,New Orleans,1392546816 +111895,49530,Africa,1176625803 +111895,49530,brutality,1176625803 +111895,49530,corruption,1176625803 +111895,49530,war,1176625803 +111895,49822,Angelina Jolie,1301778806 +111895,49822,CIA,1301778812 +111895,49822,Cold War,1301778818 +111895,49822,espionage,1301778823 +111895,49822,Matt Damon,1301778828 +111895,49822,Robert De Niro,1301778831 +111895,49932,erlend's DVDs,1190223929 +111895,49957,erlend's DVDs,1309805930 +111895,49957,school,1310680144 +111895,50068,Clint Eastwood,1299346910 +111895,50068,erlend's DVDs,1299346905 +111895,50068,war,1299346921 +111895,50068,World War II,1299346914 +111895,50274,erlend's DVDs,1215153588 +111895,50517,erlend's DVDs,1313874446 +111895,50872,animation,1285270042 +111895,50872,erlend's DVDs,1285270038 +111895,50872,pixar,1285270048 +111895,50912,erlend's DVDs,1197123621 +111895,51540,David Fincher,1297978552 +111895,51540,erlend's DVDs,1297978548 +111895,51662,stylized,1419585286 +111895,51662,war,1419585294 +111895,51709,erlend's DVDs,1198175285 +111895,52005,erlend's DVDs,1270416151 +111895,52722,erlend's DVDs,1285269996 +111895,52722,superhero,1285270006 +111895,53121,erlend's DVDs,1266015224 +111895,53996,erlend's DVDs,1263678691 +111895,53996,robots,1308660685 +111895,54001,erlend's DVDs,1303130179 +111895,54001,fantasy,1303130186 +111895,54001,harry potter,1303130189 +111895,54075,crusades,1287003058 +111895,54075,erlend's DVDs,1287003051 +111895,54075,medieval,1287003069 +111895,54286,action,1309557682 +111895,54286,cia,1309557687 +111895,54286,erlend's DVDs,1309557678 +111895,54286,Matt Damon,1309557692 +111895,54286,Robert Ludlum,1309557702 +111895,54501,erlend's DVDs,1315588144 +111895,54997,erlend's DVDs,1332525032 +111895,54997,Russell Crowe,1338846060 +111895,54997,western,1332525042 +111895,55067,1970s,1281698670 +111895,55067,Christianity,1281698678 +111895,55067,erlend's DVDs,1234989539 +111895,55067,Germany,1281698737 +111895,55067,mental illness,1281698692 +111895,55067,religion,1281698707 +111895,55118,erlend's DVDs,1324766339 +111895,55118,Naomi Watts,1324766344 +111895,55247,erlend's DVDs,1263679209 +111895,55442,erlend's DVDs,1231021649 +111895,55442,History,1425586842 +111895,55442,Islam,1425586875 +111895,55442,Middle East,1425586854 +111895,55442,religion,1425586860 +111895,55444,biography,1298225322 +111895,55444,erlend's DVDs,1298225325 +111895,55444,rock and roll,1298225339 +111895,55765,erlend's DVDs,1266707232 +111895,55805,erlend's DVDs,1305407059 +111895,55805,Philip Seymour Hoffman,1305407069 +111895,55805,Sidney Lumet,1305407073 +111895,55820,erlend's DVDs,1280347840 +111895,55901,erlend's DVDs,1231021420 +111895,55908,academia,1281695872 +111895,55908,dialogue driven,1281695795 +111895,55908,erlend's DVDs,1281456599 +111895,55908,evolution,1281695854 +111895,55908,immortality,1281695808 +111895,55908,intellectual,1281695815 +111895,55908,philosophical,1281695823 +111895,55908,science fiction,1281695839 +111895,56171,Daniel Craig,1293228247 +111895,56171,erlend's DVDs,1293228205 +111895,56171,Nicole Kidman,1293228256 +111895,56174,last man on earth,1419593257 +111895,56174,post-apocalyptic,1419593236 +111895,56174,sci-fi,1419593250 +111895,56174,zombies,1419593240 +111895,56782,erlend's DVDs,1245516207 +111895,57368,erlend's DVDs,1286136761 +111895,57368,jessica lucas,1286136981 +111895,57368,mockumentary,1286136800 +111895,57368,monster,1303289345 +111895,57368,New York City,1286136805 +111895,57368,odette yustman,1286136994 +111895,57640,erlend's DVDs,1237037219 +111895,57669,black comedy,1365862235 +111895,57669,Brendan Gleeson,1365862262 +111895,58299,erlend's DVDs,1302328609 +111895,58425,erlend's DVDs,1251748921 +111895,58879,erlend's DVDs,1296846114 +111895,58879,Martin Scorsese,1296846117 +111895,58992,erlend's DVDs,1312290111 +111895,59260,erlend's DVDs,1282254050 +111895,59315,erlend's DVDs,1274129768 +111895,59362,art,1281696143 +111895,59362,concept,1281696173 +111895,59362,erlend's DVDs,1281006027 +111895,59362,Peter Stormare,1281696087 +111895,59362,weak ending,1281696111 +111895,59362,Willem Dafoe,1281696085 +111895,59369,revenge,1367789502 +111895,59615,erlend's DVDs,1310748499 +111895,59615,Steven Spielberg,1310748510 +111895,59784,erlend's DVDs,1231021678 +111895,60397,erlend's DVDs,1232911535 +111895,60950,erlend's DVDs,1235163523 +111895,61026,China,1288718427 +111895,61026,erlend's DVDs,1288718395 +111895,61026,John Woo,1288718411 +111895,61132,erlend's DVDs,1283092535 +111895,61132,jungle,1283092585 +111895,61132,not funny,1283198738 +111895,61132,parody,1283092591 +111895,61132,Robert Downey Jr.,1283092594 +111895,61132,satire,1283092596 +111895,61132,Tom Cruise,1283198722 +111895,61132,Vietnam War,1283092610 +111895,61240,erlend's DVDs,1242590207 +111895,61724,Aki Kaurismäki,1297438163 +111895,61724,erlend's DVDs,1297438160 +111895,62344,erlend's DVDs,1242591211 +111895,62344,extroversion,1243114787 +111895,62344,neuroticism,1243114797 +111895,62511,erlend's DVDs,1287750583 +111895,62511,Philip Seymour Hoffman,1303215206 +111895,62644,classroom,1418922395 +111895,62644,fascism,1418922417 +111895,62644,school,1418922402 +111895,62644,teacher,1418922431 +111895,63062,angelina jolie,1285445293 +111895,63062,Clint Eastwood,1285445295 +111895,63062,erlend's DVDs,1285445288 +111895,63062,police,1285445315 +111895,63876,biography,1309557625 +111895,63876,erlend's DVDs,1309557617 +111895,63876,Gus Van Sant,1309557634 +111895,63876,Sean Penn,1309557639 +111895,64499,boring,1342339353 +111895,64499,erlend's DVDs,1300912638 +111895,64499,Steven Soderbergh,1300912650 +111895,64501,erlend's DVDs,1300912667 +111895,64501,Steven Soderbergh,1300912695 +111895,64620,erlend's DVDs,1312289946 +111895,64839,erlend's DVDs,1277069366 +111895,64983,Adolf Hitler,1309529631 +111895,64983,erlend's DVDs,1309529616 +111895,64983,Tom Cruise,1309644649 +111895,64983,World War II,1309529635 +111895,65577,animation,1302328566 +111895,65577,erlend's DVDs,1302328551 +111895,66097,erlend's DVDs,1263679423 +111895,68157,black comedy,1284245277 +111895,68157,Brad Pitt,1284245280 +111895,68157,erlend's DVDs,1284245259 +111895,68157,Quentin Tarantino,1284245291 +111895,68157,World War II,1284245300 +111895,68237,erlend's DVDs,1279665319 +111895,68358,erlend's DVDs,1274129818 +111895,68358,sci-fi,1419160323 +111895,68358,Star Trek,1419160318 +111895,68536,erlend's DVDs,1242590156 +111895,68653,erlend's DVDs,1266014978 +111895,68791,artificial intelligence,1285445198 +111895,68791,erlend's DVDs,1285445153 +111895,68791,post-apocalyptic,1285445181 +111895,68791,sci-fi,1285445177 +111895,68952,curse,1283461700 +111895,68952,erlend's DVDs,1283411412 +111895,68952,funny,1283461647 +111895,68952,horror,1283411473 +111895,68952,occult,1283461669 +111895,68952,Sam Raimi,1283411464 +111895,69604,erlend's DVDs,1315917976 +111895,69604,Woody Allen,1315917979 +111895,69803,erlend's DVDs,1251749181 +111895,69844,erlend's DVDs,1303130150 +111895,69844,fantasy,1303130158 +111895,69844,harry potter,1303130161 +111895,70286,erlend's DVDs,1266014832 +111895,70451,erlend's DVDs,1282983974 +111895,70451,Norway,1283413476 +111895,70451,World War II,1283413472 +111895,71033,erlend's DVDs,1315918060 +111895,71211,erlend's DVDs,1293651270 +111895,71211,Matt Damon,1293651279 +111895,71211,mental illness,1293651281 +111895,71211,Steven Soderbergh,1293651286 +111895,71264,animation,1290287811 +111895,71264,erlend's DVDs,1290287799 +111895,71304,erlend's DVDs,1312290161 +111895,71450,capitalism,1286486984 +111895,71450,documentary,1286486993 +111895,71450,erlend's DVDs,1286486967 +111895,71450,Michael Moore,1286486976 +111895,71464,coen brothers,1309529575 +111895,71464,erlend's DVDs,1309529567 +111895,71464,rented,1283030563 +111895,72131,erlend's DVDs,1344328837 +111895,72228,erlend's DVDs,1279665341 +111895,72982,adventure,1365862457 +111895,72982,Caterina Scorsone,1365862335 +111895,72998,erlend's DVDs,1273264055 +111895,72998,science fiction,1293838249 +111895,72998,special effects,1273264112 +111895,74458,Max von Sydow,1266707181 +111895,74545,rented,1281736819 +111895,74685,erlend's to-watch list,1283410272 +111895,74795,rented,1282979698 +111895,76091,erlend's to-watch list,1283094653 +111895,77561,erlend's to-watch list,1283094283 +111895,77866,erlend's to-watch list,1283094247 +111895,78122,erlend's DVDs,1276897987 +111895,78499,animation,1293651077 +111895,78499,erlend's DVDs,1293651074 +111895,78499,Pixar,1293651088 +111895,78774,Michael Douglas,1284846531 +111895,78774,rented,1284846481 +111895,78774,Susan Sarandon,1284846533 +111895,79132,alternate reality,1293141493 +111895,79132,dreams,1293141502 +111895,79132,erlend's dvds,1293141474 +111895,79132,Leonardo DiCaprio,1293141489 +111895,79617,erlend's DVDs,1282979510 +111895,79633,erlend's DVDs,1282979532 +111895,79633,norway,1282979581 +111895,79720,tense,1316777173 +111895,80247,hitchcockian,1420641048 +111895,80247,swedish,1420641048 +111895,80247,thriller,1420641048 +111895,80463,David Fincher,1297968944 +111895,80463,erlend's DVDs,1297968935 +111895,80864,erlend's DVDs,1302798843 +111895,80864,Woody Allen,1302798849 +111895,80880,Milla Jovovich,1303075211 +111895,80880,rented,1302968346 +111895,80906,erlend's DVDs,1325868597 +111895,81591,rented,1309728689 +111895,81641,rented,1302968326 +111895,81834,erlend's DVDs,1307554018 +111895,82051,erlend's DVDs,1325951867 +111895,82051,Marlene Dietrich,1340995838 +111895,82459,Coen Brothers,1324766483 +111895,82459,erlend's DVDs,1324766476 +111895,82667,erlend's DVDs,1305128509 +111895,82667,Min-sik Choi,1305148939 +111895,82667,revenge,1305128515 +111895,82667,serial killer,1305128517 +111895,83369,escape,1418925329 +111895,83369,siberia,1418925321 +111895,83529,biopic,1295290870 +111895,83529,erlend's DVDs,1295290819 +111895,83529,Jan Troell,1295290870 +111895,83529,Knut Hamsun,1295290870 +111895,83529,Max von Sydow,1295290870 +111895,83529,Norway,1295290870 +111895,83529,WWII,1295290885 +111895,83666,erlend's DVDs,1295629639 +111895,83666,Sweden,1295629644 +111895,84120,biopic,1296685522 +111895,84120,erlend's DVDs,1296685506 +111895,84120,Ludwig Wittgenstein,1296685514 +111895,84152,Bradley Cooper,1426503395 +111895,84152,entertaining,1426503325 +111895,84152,faustian,1426503478 +111895,84152,Robert De Niro,1426503461 +111895,84152,sci-fi,1426503376 +111895,84152,transhumanism,1426503344 +111895,84954,Emily Blunt,1313874340 +111895,84954,erlend's DVDs,1313874235 +111895,84954,Philip K. Dick,1313874348 +111895,85412,erlend's DVDs,1308854597 +111895,85412,monster,1302328492 +111895,85412,norwegian,1302328466 +111895,86246,erlend's DVDs,1302968115 +111895,86246,Ingmar Bergman,1302968123 +111895,86320,erlend's DVDs,1328044547 +111895,86320,Kirsten Dunst,1328044569 +111895,86332,erlend's DVDs,1330091109 +111895,86332,Special Effects,1330091124 +111895,86332,superhero,1330091117 +111895,86882,erlend's DVDs,1330876684 +111895,86882,Paris,1330876709 +111895,86882,Woody Allen,1330876701 +111895,87308,erlend's DVDs,1308590122 +111895,88125,erlend's DVDs,1324766294 +111895,88744,erlend's DVDs,1325771343 +111895,89745,action,1337698057 +111895,89745,Robert Downey Jr.,1337698024 +111895,89745,Scarlett Johansson,1337698027 +111895,89745,visually appealing,1337698033 +111895,89753,Gary Oldman,1341671749 +111895,89804,Phillip Seymour Hoffman,1392492200 +111895,90350,erlend's DVDs,1320266282 +111895,90430,forced,1340223813 +111895,90430,superficial,1340223835 +111895,90531,bleak,1340614278 +111895,90531,Michael Fassbender,1340614265 +111895,90719,cast,1340614221 +111895,90719,make-up,1340614184 +111895,90863,George Harrison,1391672404 +111895,90863,Martin Scorsese,1391672399 +111895,91371,Woody Harrelson,1341696889 +111895,91500,Jennifer Lawrence,1396209656 +111895,91529,Anne Hathaway,1343465172 +111895,91529,Batman,1343465186 +111895,91529,Christian Bale,1343465183 +111895,91529,Christopher Nolan,1343465180 +111895,91529,Gary Oldman,1343465206 +111895,91529,Michael Caine,1343465196 +111895,91529,superhero,1343465218 +111895,91542,editing,1339880625 +111895,91542,Robert Downey Jr.,1339880597 +111895,91630,action,1338830368 +111895,93840,time wasted,1363971643 +111895,94864,character motivation,1342641253 +111895,94864,Charlize Theron,1342641174 +111895,94864,messes up continuity,1342641203 +111895,94864,Michael Fassbender,1342641188 +111895,94864,sci-fi,1419793335 +111895,94864,script,1342641196 +111895,95510,Andrew Garfield,1342640514 +111895,95510,special effects,1342640562 +111895,97923,airplane,1427825258 +111895,97923,alcoholism,1427825218 +111895,97923,Denzel Washington,1427825223 +111895,97938,religion,1365862507 +111895,99149,Victor Hugo,1358619792 +111895,101112,Fantasy,1363468955 +111895,101112,L. Frank Baum,1363469291 +111895,101112,Mila Kunis,1363469185 +111895,101112,Oz,1363469208 +111895,101112,Rachel Weisz,1363468731 +111895,101112,Sam Raimi,1363469177 +111895,101112,Special Effects,1363468748 +111895,101112,visually stunning,1363468686 +111895,101864,sci-fi,1419793409 +111895,102125,Marvel,1419592521 +111895,102125,Robert Downey Jr.,1367526019 +111895,102125,superhero,1419592505 +111895,103688,stale,1389722208 +111895,103980,Cate Blanchett,1391457398 +111895,103980,Woody Allen,1391457406 +111895,104841,space,1429735477 +111895,104879,Jake Gyllenhaal,1423680179 +111895,106487,dystopia,1401778647 +111895,106766,Coen Brothers,1401136262 +111895,106782,Martin Scorsese,1393795465 +111895,109374,stylized,1398157887 +111895,109487,artificial intelligence,1427317558 +111895,109487,Christopher Nolan,1419793155 +111895,109487,Hans Zimmer,1419793213 +111895,109487,plot holes,1429735150 +111895,109487,relativity,1429735082 +111895,109487,sci-fi,1419793237 +111895,109487,time-travel,1419793163 +111895,111360,dumb science,1425586346 +111895,111360,Scarlett Johansson,1425586363 +111895,111362,Jennifer Lawrence,1401538116 +111895,112183,Broadway,1427043205 +111895,112183,cinematography,1427043184 +111895,112183,one shot,1427043191 +111895,112556,David Fincher,1419586725 +111895,115569,Jake Gyllenhaal,1423680070 +111895,115569,los angeles,1423680093 +111895,115713,artificial intelligence,1440846799 +111895,115713,consciousness,1440846833 +111895,115713,sci-fi,1440846804 +111895,116169,China,1420147988 +111895,116169,John Woo,1420147982 +111895,116211,Sherlock Holmes,1425588050 +111895,116797,autism,1419974914 +111895,116797,code breaking,1419974898 +111895,116797,genius,1419974920 +111895,116797,homosexuality,1419974901 +111895,116797,World War II,1419974880 +111935,858,classic,1158673728 +111935,858,Mafia,1158673726 +111991,69951,alternate reality,1262700590 +111991,69951,atmpspheric,1262700590 +111991,69951,surreal,1262700590 +111991,69951,terry gilliam,1262700590 +112044,3911,comedy,1439778262 +112044,3911,mockumentary,1439778255 +112044,3911,quirky,1439778260 +112044,91500,science fiction,1439778051 +112044,91500,visually stunning,1439778058 +112047,1721,atmospheric,1253195557 +112047,1721,Kate Winslet,1253195617 +112047,1721,Leonardo DiCaprio,1253195537 +112047,1721,romance,1253195549 +112047,5066,music,1256747662 +112047,5066,sweet and romantic,1256747662 +112072,2944,ensemble cast,1436654583 +112072,2944,seminal,1436654583 +112072,2944,western,1436654583 +112072,2944,world war ii,1436654583 +112086,129195,1950s,1424811415 +112086,129195,cinderella,1424811415 +112086,129195,pianist,1424811415 +112101,4141,Mark Waters,1240597180 +112106,8957,Horror,1373412939 +112147,260,fantasy,1431180881 +112147,260,sci-fi,1431180884 +112152,2942,Nudity (Topless),1184554431 +112152,7285,Nudity (Topless - Notable),1183304458 +112154,260,adventure,1431415067 +112154,260,Science Fiction,1431415061 +112198,260,classic sci-fi,1435020810 +112198,260,cult classic,1435020827 +112202,25890,fantasy,1435093775 +112202,25890,love triangle,1435093775 +112202,25890,world war ii,1435093775 +112202,79395,cheesy,1433353889 +112202,79395,early paul newman,1433353889 +112202,79395,questionable history,1433353889 +112203,246,basketball,1322864241 +112203,246,documentary,1322864275 +112203,246,Isaiah Thomas,1322864264 +112203,246,long,1322864289 +112203,260,atmospheric,1314507147 +112203,260,sci-fi,1314507142 +112203,260,SPACE TRAVEL,1314507144 +112203,260,stylized,1314507146 +112203,296,Black comedy,1314507315 +112203,296,dark comedy,1314507313 +112203,296,organized crime,1314507311 +112203,541,dystopia,1322465911 +112203,541,Harrison Ford,1322465915 +112203,541,imdb top 250,1322465918 +112203,541,Nudity (Topless),1322465899 +112203,1089,cult film,1314507250 +112203,1089,dark comedy,1314507251 +112203,1089,ensemble cast,1314507253 +112203,1089,gangster,1314507255 +112203,1089,quirky,1314507264 +112203,1111,beautifully filmed,1314507492 +112203,1196,sci-fi,1314507133 +112203,1196,space,1314507135 +112203,1203,Henry Fonda,1323430640 +112203,1203,sidney lumet,1323430627 +112203,1210,action,1314507118 +112203,1210,adventure,1314507120 +112203,1210,aliens,1314507116 +112203,1210,sci-fi,1314507109 +112203,1210,Star Wars,1314507111 +112203,1210,superhero,1314507113 +112203,1219,black and white,1314507325 +112203,1219,cinematography,1314507347 +112203,1219,classic,1314507327 +112203,1219,Hitchcock,1314507330 +112203,1219,mental illness,1314507332 +112203,1219,psychology,1314507333 +112203,1219,serial killer,1314507334 +112203,1219,tense,1314507336 +112203,1228,atmospheric,1314507282 +112203,1228,black and white,1314507286 +112203,1228,Martin Scorsese,1314507273 +112203,1228,visceral,1314507279 +112203,1237,atmospheric,1314507206 +112203,1237,black and white,1314507243 +112203,1237,cerebral,1314507227 +112203,1237,existentialism,1314507223 +112203,1237,god,1314507229 +112203,1237,imdb top 250,1314507232 +112203,1237,somber,1314507221 +112203,1237,tense,1314507219 +112203,1256,musical,1324370870 +112203,1288,deadpan,1314507063 +112203,1288,mockumentary,1314507059 +112203,1288,witty,1314507061 +112203,1295,instant view,1314506961 +112203,1295,Makes you think about the light and heavy,1314506967 +112203,1295,Nudity (Full Frontal - Notable),1314506970 +112203,1295,Philip Kaufman,1314506974 +112203,1295,photography,1314506977 +112203,1295,slow,1314506980 +112203,1617,Danny DeVito,1322895349 +112203,1909,action,1314506904 +112203,1909,aliens,1314506902 +112203,1909,Based on a TV show,1314506885 +112203,1909,conspiracy,1314506886 +112203,1909,David Duchovny,1314506889 +112203,1909,FBI,1314506891 +112203,1909,Gillian Anderson,1314506893 +112203,1909,locusts,1314506896 +112203,1909,science fiction,1314506897 +112203,1909,X-Files!!,1314506899 +112203,2700,controversial,1314507196 +112203,2700,irreverent,1314507186 +112203,2700,musical,1314507188 +112203,2700,quirky,1314507183 +112203,2700,satire,1314507182 +112203,3000,adventure,1314507364 +112203,3000,anime,1314507352 +112203,3000,atmospheric,1314507353 +112203,3000,dystopia,1314507373 +112203,3000,fantasy world,1314507358 +112203,3000,Japan,1314507359 +112203,3000,surreal,1314507369 +112203,3114,imdb top 250,1314507034 +112203,3114,Pixar,1314507018 +112203,3114,sequel,1314507031 +112203,3262,atmospheric,1314506989 +112203,3262,David Lynch,1314506987 +112203,3262,Horror,1314506991 +112203,3262,murder,1314506994 +112203,3262,surreal,1314506998 +112203,3362,Sidney Lumet,1323338037 +112203,3556,dreamlike,1317189058 +112203,3556,high school,1317189069 +112203,3556,narrated,1317189067 +112203,3556,visually appealing,1317189054 +112203,4689,Dario Argento,1323240894 +112203,4689,Nudity (Topless - Brief),1323240979 +112203,4689,serial killer,1323240926 +112203,4848,Atmospheric,1314507448 +112203,4848,David Lynch,1314507447 +112203,4848,disturbing,1314507450 +112203,4848,Nudity (Full Frontal - Notable),1314507453 +112203,4848,surreal,1314507455 +112203,5225,Mexico,1323764452 +112203,5225,Nudity (Topless),1323764437 +112203,5225,road trip,1323764427 +112203,5225,sex,1323764415 +112203,6858,Roman Polanski,1323688404 +112203,26946,Tim Roth,1320982628 +112203,27592,absurdism,1314507093 +112203,27592,amazing!,1314507095 +112203,27592,brutal,1314507097 +112203,27592,Chan-wook Park,1314507091 +112203,27592,Revenge Trilogy,1314507088 +112203,27592,stylized,1314507089 +112203,27592,vengeance,1314507085 +112203,27773,Chan-wook Park,1314507394 +112203,27773,disturbing,1314507388 +112203,27773,hallucinatory,1314507390 +112203,27773,Nudity (Full Frontal),1314507392 +112203,27773,twist ending,1314507384 +112203,27773,vengeance,1314507385 +112203,38304,Bob Dylan,1314507408 +112203,38304,folk music,1314507412 +112203,38304,Martin Scorsese,1314507410 +112203,41912,funny,1322194459 +112203,53476,boring,1322194381 +112203,53476,eskimos,1322194375 +112203,53476,french,1322194371 +112203,53476,quirky,1322194384 +112203,53592,german,1322194427 +112203,53592,music,1322194432 +112203,53592,world war II,1322194438 +112203,55820,coen brothers,1314507417 +112203,55820,crime,1314507428 +112203,55820,dark,1314507426 +112203,55820,great acting,1314507419 +112203,55820,serial killer,1314507435 +112203,55820,twist ending,1314507423 +112203,60566,netflix streaming,1316933672 +112203,60684,music,1319526469 +112203,61240,atmospheric,1314507516 +112203,61240,Beautiful,1314507515 +112203,61240,serial killer,1314507512 +112203,61240,vampire,1314507508 +112203,61240,vampires,1314507509 +112203,68358,alternate reality,1314507172 +112203,68358,space,1314507166 +112203,68358,space travel,1314507167 +112203,68358,Star Trek,1314507164 +112203,68358,time travel,1314507171 +112203,68954,Pixar,1314506925 +112203,68954,predictable,1314506933 +112203,68954,visually stunning,1314506944 +112203,71899,mental illness,1314507498 +112203,71899,Philip Seymour Hoffman,1314507499 +112203,74370,netflix streaming,1321061221 +112203,74370,Satanic Cult,1321061252 +112203,74370,suspenseful,1321061234 +112203,74370,Ti West,1321061244 +112203,74791,french,1322603691 +112203,85072,documentary,1322194404 +112203,85072,red neck,1322194415 +112203,85072,the south,1322194404 +112203,86142,feudal japan,1314427547 +112203,86142,netflix,1314427544 +112203,86142,samurai,1314427549 +112203,86142,slow-paced,1314427563 +112203,86142,Takashi Miike,1314427556 +112203,90866,3D,1322117564 +112203,90866,Ben Kingsley,1322117583 +112203,90866,Chloë Grace Moretz,1322117622 +112203,90866,Georges Méliès,1322117534 +112203,90866,kids,1322117551 +112203,90866,Martin Scorsese,1322117520 +112217,115210,realistic,1439330434 +112217,115210,tanks,1439330423 +112220,47,capital sin,1263782368 +112220,50,complot,1137706022 +112220,50,mentiras,1137706022 +112220,50,robo,1137706022 +112220,541,futuro,1137705800 +112220,541,robots,1137705800 +112220,587,passion crime,1263782569 +112220,1348,expresionismo aleman,1139876059 +112220,1967,duendes,1140306117 +112220,1967,gnomos,1140306117 +112220,1967,laberinto,1140306117 +112220,1967,musica,1140306117 +112220,2571,futuro,1137705839 +112220,2571,maquinas,1137705839 +112220,2571,realidad,1137705839 +112220,3000,manga,1140730183 +112220,3355,infierno,1140061249 +112220,3793,marvel,1148000638 +112220,4226,crimen,1137705859 +112220,4226,memoria,1137705859 +112220,4301,jazz,1164768423 +112220,4301,latin jazz,1164768423 +112220,4301,music,1164768423 +112220,4640,gangsters,1147917593 +112220,4640,japon,1137705661 +112220,4640,mafia,1137705645 +112220,4640,yakuza,1137705645 +112220,4848,sueños,1137705876 +112220,5686,Historia,1138907516 +112220,5686,palacio,1138907516 +112220,5686,Rusia,1138907516 +112220,5956,gangsters,1147917559 +112220,6187,biografia,1143333214 +112220,6187,condena a muerte,1143333201 +112220,6187,pacifistas,1143333201 +112220,6333,marvel,1148000619 +112220,6526,Nuclear holocaust,1263346582 +112220,6679,Free Software Foundation,1169234723 +112220,6679,Linus Torvalds,1169234723 +112220,6679,Linux,1169234723 +112220,6679,Open Source,1169234723 +112220,6711,Sofia Coppola,1152292564 +112220,7124,marihuana,1152577090 +112220,7147,cuentos,1137705899 +112220,7147,sueños,1137705899 +112220,7456,Argentina,1147800315 +112220,8012,japon,1147917369 +112220,8014,japon,1137706021 +112220,8014,paz,1137706021 +112220,8117,mafia,1160797417 +112220,8581,apple,1190592869 +112220,8581,computers,1190592869 +112220,8581,Microsoft,1190592869 +112220,8645,cocaina,1138908161 +112220,8645,colombia,1138908161 +112220,8645,drogas,1138908161 +112220,8645,mulas,1138908161 +112220,8645,narcotrafico,1138908161 +112220,8826,padre e hijo,1156709735 +112220,27721,Jean-Pierre Jeunet,1169227346 +112220,27790,angeles,1137706045 +112220,27790,dinero,1137706045 +112220,27843,chile,1204593541 +112220,27843,dictadura,1204593541 +112220,27843,fascism,1204593541 +112220,32031,robots,1144034394 +112220,32587,comic,1142171579 +112220,33794,comic,1140319435 +112220,34048,aliens invasion,1153700233 +112220,34198,l'auberge espagnole part 2,1160837439 +112220,34534,brothers,1175465629 +112220,34534,murder investigations,1175465629 +112220,35836,virgen,1140061161 +112220,37741,biografia,1143333145 +112220,37741,condena a muerte,1143333145 +112220,37741,escritor,1143333145 +112220,37857,circo,1144379029 +112220,37857,neil gaiman,1144379028 +112220,38061,black comedy,1159047100 +112220,38061,murder,1159047100 +112220,40148,gangs,1147917468 +112220,40614,infidelity,1175465281 +112220,42734,Caperucita Roja,1175464997 +112220,42734,Lobo,1175464997 +112220,42734,Tales,1175464997 +112220,44191,social control,1151725330 +112220,44694,eomwn life in Spain,1175465139 +112220,44694,sexual abuse,1175465139 +112220,45062,conspiracy,1156708909 +112220,45062,secret service,1156708909 +112220,45499,marvel,1148000654 +112220,45666,catch,1172290972 +112220,45666,lucha libre,1172290971 +112220,45666,mexico,1172290972 +112220,45726,friendship relations,1173302615 +112220,45730,faerie tale,1175465974 +112220,45730,legend,1175466157 +112220,46967,murder investigations,1175465917 +112220,47200,adrenaline,1175465064 +112220,47200,dead,1175465064 +112220,47200,epifedrine,1175465064 +112220,47200,revange,1175465064 +112220,47610,love story,1175465543 +112220,47610,magic,1175465543 +112220,48385,Acidly funny,1172284987 +112220,48385,Kazajistan,1175465806 +112220,48394,faerie tale,1173303162 +112220,48394,fascism,1173303162 +112220,48394,Spain,1173303736 +112220,48394,Spanish Civil War,1173303162 +112220,48516,Mafia,1175465726 +112220,48516,murder,1175465726 +112220,48516,police corruption,1175465726 +112220,49649,dragons,1175465400 +112220,49649,epico,1175465400 +112220,49649,legend,1175466141 +112220,49649,magic,1175465424 +112220,52952,nationalism,1265420248 +112220,52952,racism,1265420248 +112220,52952,skinheads,1265420248 +112220,54259,Neil Gaiman,1212290825 +112220,55908,inmortal,1312681675 +112220,66097,Neil Gainman,1263060199 +112220,66097,Parallels worlds,1263060199 +112220,71057,dark fantasy,1262958040 +112220,71057,souls,1262958040 +112295,69951,Terry Gilliam,1283380569 +112296,1947,bernstein,1140304490 +112296,1947,romeo and juliet,1140304490 +112298,51884,netflix,1181657987 +112306,31528,adventure,1420150341 +112306,31528,classic,1420150341 +112306,31528,epic,1420150341 +112306,52328,acting,1377928856 +112306,52328,cinematography,1377928851 +112306,52328,plot holes,1377928825 +112306,52328,ridiculous suspension of disbelief,1377928838 +112306,103249,zombies,1420150469 +112329,260,adventure,1437345367 +112329,260,futuristic,1437345379 +112329,260,sci-fi,1437345349 +112329,132480,comedy,1440354158 +112329,132480,romance,1440354165 +112329,132480,sci-fi,1440354131 +112336,119068,watchec,1451688977 +112366,1997,demons,1448168170 +112366,1997,horror,1448168176 +112417,33794,Christian Bale,1431689150 +112417,33794,Christopher Nolan,1431689188 +112417,33794,superhero,1431689143 +112448,49957,everything,1279913819 +112448,49957,nothing,1279913819 +112479,260,epic adventure,1439958121 +112479,260,good vs evil,1439958151 +112479,260,hero's journey,1439958129 +112479,260,romance,1439958135 +112490,64614,doua moua,1246411215 +112496,145080,horror,1445866067 +112496,145080,mystery,1445866079 +112498,2059,family,1198099310 +112580,950,Myrna Loy,1436239352 +112593,2028,Steven Spielberg,1294512622 +112593,2028,World War II,1294512627 +112595,49272,product placement,1163945093 +112595,49530,cheesy ending,1171561102 +112609,260,Science Fiction,1435845359 +112609,260,space adventure,1435845426 +112609,356,classical,1436783645 +112609,356,melodrama,1436783645 +112609,356,oscar winner,1436783645 +112624,104841,space,1440183456 +112624,104841,visually appealing,1440183474 +112624,109487,artificial intelligence,1440183413 +112624,109487,physics,1440183430 +112624,141058,acting,1440183560 +112624,141058,Inspiration,1440183509 +112624,141058,Love,1440183516 +112624,141058,uncommon,1440183549 +112624,141058,will,1440183537 +112626,741,anime,1442372486 +112626,1206,psychology,1442371589 +112626,1206,social commentary,1442371593 +112626,5445,Tom Cruise,1442371752 +112626,53996,Michael Bay,1442371799 +112626,106489,adventure,1442371211 +112626,106489,not true to the book,1442371219 +112626,106782,Leonardo DiCaprio,1442372116 +112626,106920,dystopia,1442372348 +112626,106920,philosophical,1442372344 +112626,106920,thought-provoking,1442372339 +112626,111360,bad science,1442372419 +112626,111360,dumb science,1442372411 +112626,115713,artificial intelligence,1442372794 +112626,115713,thought provoking,1442372792 +112626,128736,short,1442372718 +112626,139857,drama,1442369731 +112626,139857,emma watson,1442369740 +112632,15,treasure,1367756283 +112632,107,treasure,1367756283 +112632,256,arnold,1367756690 +112632,353,dark hero,1367756576 +112632,373,neo-noir,1367756826 +112632,380,arnold,1367756690 +112632,485,arnold,1367756690 +112632,589,arnold,1367756690 +112632,592,dark hero,1367756576 +112632,748,conspiracy theory,1367757012 +112632,836,conspiracy theory,1367757012 +112632,898,screwball comedy,1367756730 +112632,905,screwball comedy,1367756730 +112632,947,screwball comedy,1367756730 +112632,1077,marx brothers,1367757279 +112632,1078,marx brothers,1367757278 +112632,1179,neo-noir,1367756826 +112632,1184,stranded,1367756420 +112632,1240,arnold,1367756690 +112632,1252,noir thriller,1367756324 +112632,1284,noir thriller,1367756324 +112632,1291,spielberg,1367757237 +112632,1291,treasure,1367756283 +112632,1377,dark hero,1367756576 +112632,1387,spielberg,1367757237 +112632,1391,mars,1367756481 +112632,1396,conspiracy theory,1367757012 +112632,1597,Contrived.,1145147685 +112632,1615,stranded,1367756420 +112632,1617,neo-noir,1367756826 +112632,1646,mars,1367756481 +112632,1894,stranded,1367756420 +112632,1963,marx brothers,1367757279 +112632,2022,jesus,1367756225 +112632,2028,spielberg,1367757237 +112632,2115,spielberg,1367757237 +112632,2193,dragon,1367757059 +112632,2205,screwball comedy,1367756730 +112632,2353,conspiracy theory,1367757012 +112632,2571,dark hero,1367756576 +112632,2662,mars,1367756481 +112632,2707,conspiracy theory,1367757012 +112632,2803,conspiracy theory,1367757012 +112632,2916,arnold,1367756690 +112632,2935,screwball comedy,1367756731 +112632,2937,screwball comedy,1367756731 +112632,2950,stranded,1367756421 +112632,2965,christian,1367756774 +112632,3052,jesus,1367756225 +112632,3250,mountain climbing,1367757162 +112632,3264,cheerleading,1367756659 +112632,3435,noir thriller,1367756324 +112632,3683,neo-noir,1367756826 +112632,3786,cheerleading,1367756659 +112632,3996,dragon,1367757059 +112632,4142,christian,1367756774 +112632,4638,stranded,1367756420 +112632,4848,short-term memory loss,1367757202 +112632,4881,neo-noir,1367756826 +112632,4974,cheerleading,1367756660 +112632,5017,noir thriller,1367756324 +112632,5135,bollywood,1367756119 +112632,5445,spielberg,1367757237 +112632,5463,dragon,1367757059 +112632,5989,spielberg,1367757237 +112632,6539,treasure,1367756283 +112632,6696,bollywood,1367756119 +112632,7060,jesus,1367756225 +112632,7318,jesus,1367756225 +112632,7386,christian,1367756774 +112632,7482,dragon,1367757059 +112632,7728,noir thriller,1367756324 +112632,8366,jesus,1367756225 +112632,8529,stranded,1367756420 +112632,27773,short-term memory loss,1367757202 +112632,27831,Exquisite plotting.,1145148962 +112632,30707,Manipulative. Well-acted.,1145149501 +112632,33358,Well-acted.,1145148395 +112632,33903,Exceptional Acting,1145148912 +112632,33903,twists & turns,1145148912 +112632,34338,"Fascinating study of ""funny"".",1145148759 +112632,36401,Dull. Incoherent. Childish.,1145148644 +112632,36517,Complex story,1145148607 +112632,36517,Rachel Weisz can't act.,1145148607 +112632,36529,a few great sequences.,1145148500 +112632,36529,Heavy-handed,1145148473 +112632,37729,Burton repeats himself.,1145148362 +112632,37857,children's story,1145148322 +112632,47999,jesus,1367756225 +112632,51884,bollywood,1367756119 +112632,53125,treasure,1367756283 +112632,56775,treasure,1367756283 +112632,63082,bollywood,1367756119 +112632,76093,dragon,1367757059 +112632,79132,short-term memory loss,1367757202 +112658,527,based on a true story,1210859529 +112669,59103,jackie chan,1222676394 +112669,59103,kung fu,1222676405 +112686,29,steampunk,1440891270 +112686,47,religion,1439654683 +112686,47,serial killer,1439654677 +112686,50,Kevin Spacey,1439655003 +112686,50,storytelling,1439654999 +112686,296,atmospheric,1439654454 +112686,296,cult film,1439654439 +112686,296,nonlinear,1439654444 +112686,296,quirky,1439654458 +112686,296,stylized,1439654276 +112686,318,drama,1439654564 +112686,318,inspirational,1439654595 +112686,318,thought-provoking,1439654570 +112686,417,1980's,1439658092 +112686,417,American expatriates,1439657550 +112686,417,Barcelona,1439657475 +112686,417,cerebral,1439658260 +112686,417,Chris Eigeman,1439657514 +112686,417,classy,1439658120 +112686,417,dialogue driven,1439658104 +112686,417,drama,1439658148 +112686,417,Europe,1439658875 +112686,417,expatriates,1439657538 +112686,417,Mira Sorvino,1439657519 +112686,417,Pep Munne,1439657531 +112686,417,quotable,1439658153 +112686,417,quotable dialogue,1439658097 +112686,417,sophisticated,1439658118 +112686,417,Spain,1439657477 +112686,417,Taylor Nichols,1439657510 +112686,417,Tushka Bergen,1439657525 +112686,417,Whit Stillman,1439657489 +112686,527,holocaust,1439655363 +112686,527,Nazis,1439655369 +112686,541,cult film,1440891300 +112686,541,cyberpunk,1439652737 +112686,541,dystopia,1440891306 +112686,541,philosophical,1439653025 +112686,593,excellent script,1439654726 +112686,924,cinematography,1439652701 +112686,924,philosophical,1439652677 +112686,924,Stanley Kubrick,1439652685 +112686,924,visually appealing,1439652681 +112686,1095,Kevin Spacey,1439659009 +112686,1199,bureaucracy,1439653311 +112686,1199,dreams,1439653304 +112686,1199,dystopic future,1439653298 +112686,1199,Terry Gilliam,1439653289 +112686,1206,masterpiece,1439653458 +112686,1206,stanley kubrick,1439653445 +112686,1206,stylized,1439653471 +112686,1265,Andie MacDowell,1439660013 +112686,1297,genius,1439656589 +112686,1653,atmospheric,1439652860 +112686,1653,dystopia,1439652905 +112686,1653,genetic selection,1439652853 +112686,1653,genetics,1439652888 +112686,1653,intelligent,1439652865 +112686,1653,neo-noir,1439652894 +112686,1653,powerful ending,1439652842 +112686,1653,realistic sci/fi,1439652878 +112686,1748,alternate reality,1439652809 +112686,1748,dystopia,1439652785 +112686,1748,existentialism,1439653904 +112686,1748,Post apocalyptic,1439652791 +112686,1748,steampunk,1439652803 +112686,1748,visually stunning,1439653909 +112686,1836,1980's,1439657389 +112686,1836,cerebral,1439658250 +112686,1836,Chloe Sevigny,1439657401 +112686,1836,Chris Eigeman,1439657419 +112686,1836,classy,1439658187 +112686,1836,dialogue driven,1439657371 +112686,1836,disco,1439657834 +112686,1836,drama,1439657895 +112686,1836,intellectual,1439657364 +112686,1836,intelligent,1439658180 +112686,1836,Kate Beckinsale,1439657412 +112686,1836,Mackenzie Astin,1439657425 +112686,1836,Matt Keeslar,1439657430 +112686,1836,New York,1439657440 +112686,1836,New York City,1439657445 +112686,1836,nightclub,1439657436 +112686,1836,quotable,1439657849 +112686,1836,quotable dialogue,1439657858 +112686,1836,sophisticated,1439658185 +112686,1836,Whit Stillman,1439657358 +112686,1966,Academy Award nomination,1439657719 +112686,1966,Carolyn Farina,1439657624 +112686,1966,cerebral,1439658240 +112686,1966,Chris Eigeman,1439657612 +112686,1966,classy,1439658208 +112686,1966,Criterion,1439657651 +112686,1966,deadpan,1439658006 +112686,1966,debutante,1439657760 +112686,1966,dialogue driven,1439657668 +112686,1966,drama,1439657911 +112686,1966,Dylan Hundley,1439657788 +112686,1966,Edward Clements,1439657607 +112686,1966,intelligent,1439658206 +112686,1966,Isabel Gillies,1439657642 +112686,1966,manhattan,1439658015 +112686,1966,New York City,1439658001 +112686,1966,quotable,1439657801 +112686,1966,quotable dialogue,1439657680 +112686,1966,sophisticated,1439657726 +112686,1966,Taylor Nichols,1439657616 +112686,1966,upper class,1439657659 +112686,1966,Whit Stillman,1439657599 +112686,1968,1980s,1439654064 +112686,1968,cliques,1439654082 +112686,1968,coming-of-age,1439654077 +112686,2134,1980s,1439656622 +112686,2134,geeks,1439656564 +112686,2134,John Hughes,1439656558 +112686,2134,nerds,1439656617 +112686,2144,80's,1439654029 +112686,2145,Brat Pack,1439653996 +112686,2145,Harry Dean Stanton,1439655497 +112686,2145,high school,1439655449 +112686,2145,John Hughes,1439654001 +112686,2395,Wes Anderson,1439659259 +112686,2502,mike judge,1439656963 +112686,2542,British crime,1439654351 +112686,2542,British gangster,1439654368 +112686,2542,england,1439654321 +112686,2542,Guy Ritchie,1439654316 +112686,2571,martial arts,1439653077 +112686,2571,post apocalyptic,1439653058 +112686,2571,post-apocalyptic,1439653052 +112686,2730,18th century,1439659664 +112686,2730,cinematography,1439659673 +112686,2730,lavish,1439659667 +112686,2730,Stanley Kubrick,1439659655 +112686,2763,Denis Leary,1439659369 +112686,2763,Pierce Brosnan,1439659353 +112686,2763,Rene Russo,1439659360 +112686,2858,powerful ending,1439655190 +112686,2915,Chicago,1439657081 +112686,2915,Paul Brickman,1439657075 +112686,2915,Porsche,1439657106 +112686,2915,Rebecca De Mornay,1439657096 +112686,2915,Tom Cruise,1439657062 +112686,2918,1980s,1439657005 +112686,2918,breaking the fourth wall,1439657033 +112686,2918,John Hughes,1439656518 +112686,2918,one day,1439657011 +112686,2959,Edward Norton,1439653399 +112686,2959,mental illness,1439653404 +112686,2959,quirky,1439653418 +112686,2997,surreal,1439653356 +112686,3863,alternate reality,1440890627 +112686,3863,amazing costumes,1440890791 +112686,3863,atmospheric,1440890634 +112686,3863,beautiful cinematography,1440890613 +112686,3863,beautiful scenery,1440890773 +112686,3863,cinematography,1440890830 +112686,3863,dreamlike,1440890631 +112686,3863,dreams,1440890610 +112686,3863,Jennifer Lopez,1440890699 +112686,3863,psychological,1440890780 +112686,3863,serial killer,1440890646 +112686,3863,stylized,1440890642 +112686,3863,surreal,1440890620 +112686,3863,Tarsem Singh,1440890749 +112686,3863,unique,1440890787 +112686,3863,Vince Vaughn,1440890732 +112686,3863,Vincent D'Onofrio,1440890867 +112686,3863,virtual reality,1440890637 +112686,3863,visual aesthetic,1440890850 +112686,3863,visually stunning,1440890603 +112686,4031,based on a book,1439655093 +112686,4031,Cormac McCarthy,1439655089 +112686,4091,80's,1439653954 +112686,4091,high school,1439653973 +112686,4092,androids,1439670322 +112686,4092,Laurence Fishburne,1439670308 +112686,4092,melanie griffith,1439670255 +112686,4092,post-apocalyptic,1439670640 +112686,4092,robots,1439670316 +112686,4226,AMNESIA,1439652471 +112686,4226,cerebral,1439652477 +112686,4226,memory,1439652482 +112686,4226,nonlinear,1439652463 +112686,4226,psychology,1439652610 +112686,4557,1940's,1439653712 +112686,4557,auto industry,1439653615 +112686,4557,based on a true story,1439653731 +112686,4557,Detroit,1439653619 +112686,4557,geniuses,1439653648 +112686,4557,Howard Hughes,1439653580 +112686,4557,ingenuity,1439653827 +112686,4557,innovation,1439653662 +112686,4557,inventors,1439653570 +112686,4557,Jeff Bridges,1439653595 +112686,4557,Joan Allen,1439653605 +112686,4557,Martin Landau,1439653601 +112686,4557,period films,1439653673 +112686,4557,Preston Tucker,1439653635 +112686,4874,intellectual,1439655149 +112686,4874,Jeff Bridges,1439655138 +112686,4874,Kevin Spacey,1439655145 +112686,4975,lucid dreaming,1440890993 +112686,5108,bad plot,1439657206 +112686,5108,Denzel Washington,1439657195 +112686,5108,over the top,1439657258 +112686,5108,overdramatic,1439657262 +112686,5108,preachy,1439657224 +112686,5108,unrealistic,1439657255 +112686,7361,alternate reality,1439654640 +112686,7361,surreal,1439654635 +112686,7451,Amanda Seyfried,1439658631 +112686,7451,Amy Poehler,1439658663 +112686,7451,Ana Gasteyer,1439658695 +112686,7451,clique,1439658722 +112686,7451,cliques,1439658729 +112686,7451,comedy,1439658801 +112686,7451,Daniel Franzese,1439658689 +112686,7451,Jonathan Bennett,1439658699 +112686,7451,Lacey Chabert,1439658618 +112686,7451,Lindsay Lohan,1439658571 +112686,7451,manipulation,1439658743 +112686,7451,Mark Waters,1439658782 +112686,7451,quotable,1439658586 +112686,7451,Rachel McAdams,1439658605 +112686,7451,Tim Meadows,1439658653 +112686,7451,very quotable,1439658589 +112686,8949,wine,1439655211 +112686,27706,Brad Silberling,1439687946 +112686,27706,upper class,1439687932 +112686,27831,British crime,1439654405 +112686,27831,daniel craig,1439654414 +112686,30812,Howard Hughes,1439653855 +112686,44555,excellent script,1439655649 +112686,48043,surreal,1439652967 +112686,48043,visually appealing,1439652961 +112686,48780,Michael Caine,1439652549 +112686,48780,obsession,1439652560 +112686,48780,Scarlett Johansson,1439652519 +112686,48780,steampunk,1439652571 +112686,48780,twist ending,1439652526 +112686,54503,nerds,1439654135 +112686,55820,Cormac McCarthy,1439654861 +112686,55820,slow paced,1439654866 +112686,55820,tension,1439654870 +112686,59387,beautiful,1439660416 +112686,59387,beautiful cinematography,1439660458 +112686,59387,Catinca Untaru,1439660483 +112686,59387,stylized,1439660445 +112686,59387,Tarsem Singh,1439660437 +112686,59387,visually stunning,1439660462 +112686,60756,Highly quotable,1439654176 +112686,62511,long,1439659850 +112686,62511,Philip Seymour Hoffman,1439659817 +112686,63072,Cormac McCarthy,1439655850 +112686,64575,Philip Seymour Hoffman,1442713458 +112686,70293,food,1442715744 +112686,73168,New Mexico,1439656416 +112686,73168,Piper Perabo,1439656197 +112686,93723,Adam Brody,1439656793 +112686,93723,Aja Naomi King,1439658494 +112686,93723,Alia Shawkat,1439658500 +112686,93723,Analeigh Tipton,1439656807 +112686,93723,Aubrey Plaza,1439656800 +112686,93723,Billy Magnussen,1439656840 +112686,93723,Caitlin Fitzgerald,1439658448 +112686,93723,Carrie MacLemore,1439658428 +112686,93723,Classy,1439656890 +112686,93723,College,1439656845 +112686,93723,dancing,1439658330 +112686,93723,dialogue,1439658292 +112686,93723,dialogue driven,1439658513 +112686,93723,Domenico D'Ippolito,1439658466 +112686,93723,dorm life,1439658354 +112686,93723,dorms,1439658355 +112686,93723,fraternities,1439658338 +112686,93723,Greta Gerwig,1439658531 +112686,93723,Hugo Becker,1439656830 +112686,93723,intelligent,1439658271 +112686,93723,Jermaine Crawford,1439658440 +112686,93723,Joe Coots,1439658488 +112686,93723,Megalyn Echikunwoke,1439656821 +112686,93723,Meredith Hagner,1439658485 +112686,93723,Nick Blaemire,1439658471 +112686,93723,quotable,1439656923 +112686,93723,quotable dialogue,1439658308 +112686,93723,Ryan Metcalf,1439656836 +112686,93723,Sambola,1439658523 +112686,93723,sophisticated,1439658278 +112686,93723,suicide,1439656853 +112686,93723,suicide prevention,1439658382 +112686,93723,University,1439656864 +112686,93723,Whit Stillman,1439656773 +112686,93723,Zach Woods,1439658453 +112686,109187,Christoph Waltz,1439655299 +112686,109187,meaning of life,1439655280 +112686,109187,Terry Gilliam,1439655276 +112686,116797,Alan Turing,1439652386 +112686,116797,code breaking,1439652352 +112686,116797,cryptography,1439652329 +112686,142574,AJ Michalka,1442713058 +112686,142574,Aly Michalka,1442712919 +112686,142574,Amanda Michalka,1442712929 +112686,142574,Comedy,1442712943 +112686,142574,Jack Coleman,1442712956 +112686,142574,Michael Trevino,1442712963 +112686,142574,Sheila McCarthy,1442712970 +112693,1704,mathematics,1448293722 +112693,4995,genius,1448293746 +112703,1089,original,1369035472 +112703,1193,stereotypes,1182956711 +112716,55830,Michel Gondry,1360355722 +112728,1136,british comedy,1448584657 +112728,1136,funny,1448584671 +112734,3916,sports,1164938627 +112736,5903,post-apocalyptic,1360417691 +112745,260,Epic,1443663063 +112745,260,hero,1443663068 +112747,110611,plot twist,1432863309 +112747,110611,revenge,1432863309 +112747,110611,thriller,1432863309 +112750,5952,huge canvas,1450670446 +112750,8665,realistic action,1450670707 +112750,58559,fresher perspective,1450670648 +112752,318,hope,1447202600 +112752,318,inspirational,1447202595 +112752,318,reflective,1447202615 +112752,527,Oscar (Best Cinematography),1447202885 +112752,527,Steven Spielberg,1447202876 +112752,527,true story,1447202874 +112752,527,World War II,1447202872 +112752,4896,Adventure,1447202997 +112752,4896,Fantasy,1447202987 +112752,4896,harry potter,1447202989 +112752,4896,Magic,1447202986 +112752,5816,fantasy,1447203019 +112752,5816,harry potter,1447203018 +112752,5816,Magic,1447203016 +112752,5995,beautiful,1447202914 +112752,5995,Oscar (Best Actor),1447202910 +112752,5995,true story,1447202916 +112752,5995,World War II,1447202905 +112752,8368,harry potter,1447203037 +112752,8368,Magic,1447203035 +112752,8368,time travel,1447203039 +112752,40815,harry potter,1447203051 +112752,40815,Magic,1447203049 +112752,54001,Emma Watson,1447203111 +112752,54001,fantasy,1447203113 +112752,54001,harry potter,1447203108 +112752,54001,magic,1447203106 +112752,63082,love,1447202645 +112752,63082,Oscar (Best Directing),1447202665 +112752,63082,romance,1447202660 +112752,64957,Brad Pitt,1447202681 +112752,64957,Cate Blanchett,1447202689 +112752,64957,life & death,1447202684 +112752,64957,touching,1447202691 +112752,69844,Emma Watson,1447203084 +112752,69844,fantasy,1447203079 +112752,69844,harry potter,1447203081 +112752,69844,magic,1447203077 +112752,79132,Leonardo DiCaprio,1447202796 +112752,79132,multiple interpretations,1447202803 +112752,79132,thought-provoking,1447202794 +112752,79132,visually appealing,1447202791 +112752,81834,Emma Watson,1447203130 +112752,81834,Harry Potter,1447203127 +112752,81834,magic,1447203124 +112752,85414,intelligent,1447202829 +112752,85414,Jake Gyllenhaal,1447202832 +112752,85414,time travel,1447202823 +112752,85414,twist ending,1447202826 +112752,88125,Emma Watson,1447203182 +112752,88125,fantasy,1447203179 +112752,88125,magic,1447203177 +112752,90866,France,1447202745 +112752,90866,heartwarming,1447202749 +112752,90866,visually appealing,1447202741 +112752,97938,Ang Lee,1447202722 +112752,97938,God's existance,1447202725 +112752,97938,visually appealing,1447202710 +112752,105844,slavery,1447202928 +112752,105844,truestory,1447202945 +112761,127098,Louis C.K.,1438706610 +112761,127098,stand-up comedy,1438706596 +112773,356,bittersweet,1364075246 +112773,356,historical,1364075238 +112773,356,inspirational,1364075256 +112773,356,Tom Hanks,1364075232 +112777,25798,classic,1436832942 +112777,25798,horror,1436832942 +112777,25798,surreal,1436832942 +112778,27423,catholic,1434633390 +112778,27423,fernanda montenegro,1434633390 +112778,27423,folk tale,1434633390 +112778,105340,comedy,1433008813 +112778,105340,mindfuck,1433008813 +112778,105340,social drama,1433008813 +112788,1136,absurd,1443086326 +112788,1136,british comedy,1443086314 +112788,1136,Monty Python,1443086309 +112789,6979,Cold War,1138311968 +112789,6979,computers,1138311982 +112804,34271,rap,1140375511 +112804,66934,free to download,1243015854 +112804,66934,joss whedon,1243015859 +112804,66934,Neil Patrick Harris,1243015846 +112804,67408,3D,1241551118 +112807,260,space epic,1436057770 +112807,260,Too old. showing its age,1436057763 +112807,356,classic,1436059822 +112807,356,genre defining,1436059822 +112807,356,highly quotable,1436059822 +112809,260,classic sci-fi,1438516491 +112809,260,sci-fi,1438516480 +112817,260,space,1439956781 +112817,260,war,1439956785 +112819,372,ethan hawke,1187895662 +112819,372,generation x,1187895662 +112819,372,real world,1187895662 +112819,468,english,1187895643 +112819,468,funny,1187895643 +112819,468,obscure,1187895643 +112819,837,fairy tale,1187895874 +112819,838,funny,1187895628 +112819,838,jane austen,1187895628 +112819,1441,funny,1187895833 +112819,1441,sweet,1187895832 +112819,1441,unrealistic,1187895832 +112819,2840,sweeping,1187895900 +112819,3967,funny,1187895775 +112819,3967,realistic,1187895774 +112819,3967,touching,1187895774 +112819,4848,daft,1187895752 +112819,4848,uninspired,1187895752 +112819,5377,crazy mother,1187895705 +112819,5377,realistic,1187895705 +112819,5377,satirical,1187895704 +112819,6373,funny,1187895846 +112819,6373,touching,1187895846 +112819,8622,cliched,1187895802 +112819,8622,populistic,1187895802 +112834,3949,ass to ass,1162188712 +112834,35836,erection,1162188631 +112835,99320,action,1432415987 +112835,99320,cheesy,1432415987 +112835,99320,prison,1432415987 +112892,4963,Brad Pitt,1320629136 +112892,4963,feel good movie,1320629175 +112892,4963,George Clooney,1320629138 +112892,4963,good soundtrack,1320629142 +112892,4963,heist,1320629149 +112892,4963,Julia Roberts,1320629140 +112892,4963,remake,1320629162 +112892,4963,witty,1320629153 +112892,4975,existentialism,1320628954 +112892,4975,mindfuck,1320628977 +112892,4975,Nudity (Topless),1320628952 +112892,4975,phychology,1320628854 +112892,4975,surreal,1320628846 +112892,6874,storyline,1320628789 +112892,30812,biography,1320629085 +112892,30812,Leonardo DiCaprio,1320629072 +112892,30812,movie business,1320629075 +112892,30812,Oscar (Best Cinematography),1320629080 +112892,30812,true story,1320629093 +112892,74795,conspiracy,1320629006 +112892,74795,Deception,1320629012 +112892,74795,Espionage,1320629009 +112892,74795,Left-Wing Propaganda,1320629032 +112892,74795,Matt Damon,1320629046 +112892,74795,military,1320629021 +112892,74795,social commentary,1320629024 +112892,74795,Unjustified Invasion,1320629023 +112894,117533,documentary,1434232442 +112894,117533,political,1434232442 +112894,117533,thought-provoking,1434232442 +112902,10,007,1207767113 +112902,10,Bond,1207767135 +112902,608,black comedy,1207778392 +112902,608,minnsota,1207778392 +112902,923,classic,1207766963 +112902,1291,indiana,1207766923 +112902,1722,007,1207767138 +112902,1722,Bond,1207767118 +112902,2115,indiana,1207766919 +112902,2376,bond,1207766891 +112902,2718,black comedy,1207778370 +112902,2718,minnesota,1207778374 +112902,2947,bond,1207766927 +112902,2948,bond,1207766934 +112902,2949,bond,1207767018 +112902,2989,bond,1207766937 +112902,2990,bond,1207766914 +112902,2991,bond,1207766912 +112902,2993,bond,1207767029 +112902,3082,bond,1207766887 +112902,3633,007,1207767002 +112902,3633,bond,1207767000 +112902,3635,bond,1207766897 +112902,3638,bond,1207767034 +112902,3639,007,1207766985 +112902,3639,bond,1207766982 +112902,3984,bond,1207767039 +112902,4005,bond,1207766909 +112902,5796,bond,1207767025 +112902,5872,bond,1207767022 +112902,7247,classic,1207766967 +112902,7569,007,1207766987 +112902,7569,bond,1207766995 +112902,7570,bond,1207767032 +112902,49272,bond,1207766970 +112910,62336,anime,1437428509 +112910,62336,giant robots,1437428509 +112910,62336,slice of life,1437428509 +112928,260,futuristic,1439709666 +112928,260,old school,1439709676 +112928,260,space action,1439709691 +112952,7,romance,1160491063 +112953,260,sci-fi,1439766354 +112953,260,Star Wars,1439766364 +112970,527,war,1172952501 +112970,26758,music,1172952468 +112992,1584,aliens,1280446585 +112992,1584,existentialism,1280446594 +112992,1584,space travel,1280446569 +112992,38061,Film Noir,1238869004 +112993,493,Samuel L. Jackson,1198779095 +113006,230,drama,1382695493 +113006,319,dark comedy,1382695523 +113006,356,psychology,1382695608 +113006,61348,parody,1382695340 +113006,61348,parody.,1382695246 +113055,260,cult classic,1439760812 +113055,260,scifi cult,1439760871 +113074,2858,dark comedy,1444952718 +113074,2858,kevin spacey,1444952720 +113074,2858,social commentary,1444952721 +113074,2858,surrealism,1444952725 +113074,2858,thought-provoking,1444952718 +113074,4973,beautifully filmed,1444953073 +113074,4973,feel-good,1444953077 +113074,4973,Paris,1444953079 +113074,4973,quirky,1444953075 +113074,4973,whimsical,1444953085 +113074,4995,genius,1444952552 +113074,4995,mathematics,1444952550 +113074,4995,psychology,1444952548 +113074,4995,Russell Crowe,1444952556 +113074,4995,schizophrenia,1444952550 +113074,44555,East Germany,1444952030 +113074,44555,freedom of expression,1444952037 +113074,44555,spying,1444952034 +113074,44555,Stasi,1444952035 +113074,44555,surveillance,1444952041 +113074,48780,Christian Bale,1444953408 +113074,48780,magic,1444953410 +113074,48780,nonlinear,1444953413 +113074,48780,Scarlett Johansson,1444953417 +113074,48780,twist ending,1444953407 +113074,79132,alternate reality,1444953215 +113074,79132,Leonardo DiCaprio,1444953223 +113074,79132,surreal,1444953219 +113074,79132,thought-provoking,1444953221 +113074,79132,visually appealing,1444953217 +113074,94466,dark,1444952358 +113074,94466,dystopia,1444952372 +113074,94466,not a movie,1444952354 +113074,94466,technology,1444952355 +113074,94466,tv series,1444952352 +113085,260,classic,1436765073 +113085,260,sci-fi,1436765082 +113098,260,classic,1438288535 +113098,260,sci-fi,1438288530 +113119,296,cult film,1308609118 +113119,296,dark,1308609133 +113119,296,dark comedy,1308609116 +113119,356,classic,1318600602 +113119,356,Oscar (Best Picture),1318600604 +113119,356,romance,1318600596 +113119,480,based on a book,1318604279 +113119,480,dinosaurs,1318602444 +113119,480,drama,1318602448 +113119,480,funny,1318602708 +113119,1580,action,1318607196 +113119,1580,corny,1318609038 +113119,1580,nonlinear,1318609013 +113119,1580,Tommy Lee Jones,1318607960 +113119,1580,twist ending,1318609019 +113119,6539,boring,1435933813 +113119,6539,silly,1433024159 +113125,296,amazing,1420154875 +113125,296,entertaining,1420154875 +113125,296,tarantion,1420154875 +113126,838,literature,1188910488 +113126,1188,australian,1188910489 +113126,1907,walt disney,1188910587 +113126,3826,kevin bacon,1188910634 +113126,3967,ballet,1188910621 +113126,3967,british,1188910622 +113126,4270,archeology,1188910661 +113126,4270,brendan fa,1188910661 +113126,4310,jerry bruckheimer,1188910603 +113126,4447,law,1188910579 +113126,4447,pink,1188910579 +113126,4447,reese witherspoon,1188910579 +113126,5377,british,1188910509 +113126,5377,literature,1188910509 +113126,5679,japanese,1188910540 +113126,6378,mini cooper,1188910561 +113126,6934,keanu reeves,1188910535 +113147,2993,007,1205846733 +113147,2993,james bond,1205846724 +113147,31696,angels,1205846862 +113147,31696,demons,1205846862 +113147,31696,Keanu Reeves,1205846862 +113153,260,chubakka,1434481648 +113153,260,star wards,1434481639 +113157,327,kick ass main character,1261386493 +113158,954,classic,1173641091 +113158,2058,Psychological,1173639907 +113158,2170,Screwball Comedy,1173640540 +113158,2959,bloody,1173640486 +113158,3578,redemption,1173641145 +113158,4963,too many celebrities,1173640797 +113170,260,epic adventure,1439789332 +113170,260,space opera,1439789321 +113176,260,fantasy,1433431588 +113176,260,special effects,1433431602 +113176,296,crime,1433431891 +113176,296,drugs,1433431891 +113176,296,monologue,1433431891 +113176,356,feel good,1434373095 +113176,356,quotable,1434373095 +113176,356,touching,1434373095 +113206,2959,twist ending,1339278623 +113211,260,star,1434522348 +113211,260,wars,1434522353 +113225,48520,Shine On by needtobreathe,1191257457 +113234,260,darkside,1437333963 +113234,260,darth vader,1437333953 +113234,260,great soundtrack,1437333923 +113234,79357,philosophy,1437334151 +113234,79357,surreal,1437334167 +113248,296,john travolta,1431123597 +113248,296,tarantino,1431123597 +113248,296,violence,1431123597 +113248,116897,limits,1431124119 +113248,116897,urban life,1431124165 +113290,260,adventure,1435143582 +113290,260,fantasy,1435143604 +113290,593,psychological thriller,1436305199 +113290,593,serial killer,1436305199 +113290,593,suspense,1436305199 +113300,4916,historical,1436398167 +113300,4916,millitary,1436398167 +113300,4916,world war ii,1436398167 +113318,86298,adventure,1306456672 +113318,86298,animation,1306456670 +113318,86298,Comedy,1306456667 +113318,86644,cars,1306456594 +113326,318,Morgan Freeman,1346423348 +113326,318,prison escape,1346423350 +113326,784,Ben Stiller,1302474530 +113326,784,black comedy,1302474534 +113326,784,boring,1302474575 +113326,784,Jim Carrey,1302474556 +113326,784,Matthew Broderick,1302474569 +113326,784,not funny,1302474545 +113326,784,scary not funny,1302474560 +113326,784,stalker,1302474563 +113326,924,artificial intelligence,1280959254 +113326,924,atmospheric,1280959267 +113326,924,future,1280959284 +113326,924,music,1280959287 +113326,924,philosophical,1280959259 +113326,924,sci-fi,1280959258 +113326,924,space,1280959270 +113326,924,Stanley Kubrick,1280959256 +113326,924,surreal,1280959292 +113326,1036,Alan Rickman,1280581322 +113326,1036,Bruce Willis,1280581305 +113326,1036,lone hero,1280581308 +113326,1263,Robert De Niro,1284066692 +113326,1682,cerebral,1302462757 +113326,1682,dystopia,1302462759 +113326,1682,Jim Carrey,1302462732 +113326,1682,paranoia,1302462746 +113326,1682,social commentary,1302462749 +113326,1682,surveillance,1302462753 +113326,1997,horror,1280916170 +113326,1997,scary,1280916159 +113326,2195,Christopher McDonald,1302474849 +113326,2195,Norm MacDonald,1302474825 +113326,3033,Bill Pullman,1293661328 +113326,3033,John Candy,1293661303 +113326,3033,Mel Brooks,1293661303 +113326,3033,star wars,1293661306 +113326,3160,ensemble cast,1298590543 +113326,3160,great acting,1298590545 +113326,3160,Philip Seymour Hoffman,1298590554 +113326,3160,poignant,1298590565 +113326,3160,Tom Cruise,1298590537 +113326,3730,espionage,1302965087 +113326,3730,Francis Ford Coppola,1302965092 +113326,3730,Gene Hackman,1302965090 +113326,3730,paranoia,1302965129 +113326,4007,ambition,1288027628 +113326,4007,business,1288027629 +113326,4007,Charlie Sheen,1288027538 +113326,4007,Daryl Hannah,1288027551 +113326,4007,Martin Sheen,1288027530 +113326,4007,Oliver Stone,1288027544 +113326,4007,stock market,1288027541 +113326,4022,loneliness,1296082920 +113326,4022,love story,1296082943 +113326,4022,man vs. nature,1296082919 +113326,4022,SURVIVAL,1296082914 +113326,4022,Tom Hanks,1296082915 +113326,4022,unique,1296082938 +113326,4022,wilson,1296082939 +113326,4148,disgusting,1305682665 +113326,4148,Gary Oldman,1305682643 +113326,4148,Hannibal Lecter,1305682645 +113326,4344,computer cracker,1281464499 +113326,4344,computers,1281464497 +113326,4344,hackers,1281464502 +113326,4344,Hugh Jackman,1281464484 +113326,4344,Nudity (Topless - Notable),1281464488 +113326,4344,Nudity (Topless),1281464491 +113326,4370,androids,1280833287 +113326,4370,artificial intelligence,1280833281 +113326,4370,depressing,1280833323 +113326,4370,disturbing,1280833384 +113326,4370,dystopia,1280833380 +113326,4370,emotional,1280833302 +113326,4370,fairy tale,1280833394 +113326,4370,Jude Law,1280833315 +113326,4370,robots,1280833290 +113326,4370,sci-fi,1280833295 +113326,4370,Stanley Kubrick,1280833319 +113326,4370,Steven Spielberg,1280833313 +113326,5618,adventure,1287432889 +113326,5618,alternate reality,1287432888 +113326,5618,animation,1287432893 +113326,5618,anime,1287432896 +113326,5618,atmospheric,1287432908 +113326,5618,children,1287432906 +113326,5618,Hayao Miyazaki,1287432878 +113326,5618,Japan,1287432885 +113326,5618,whimsical,1287432903 +113326,6157,bad acting,1300058021 +113326,6157,Ben Affleck,1300058024 +113326,6157,Colin Farrell,1300058023 +113326,6157,Jennifer Garner,1300058026 +113326,6157,Kevin Smith,1300058028 +113326,6157,Michael Clarke Duncan,1300058030 +113326,6874,anime,1358242918 +113326,6874,Uma Thurman,1358242906 +113326,6947,action,1299632299 +113326,6947,Russell Crowe,1299632312 +113326,7451,clique,1298943715 +113326,7451,High School,1298943698 +113326,7451,Lindsay Lohan,1298943700 +113326,7451,manipulation,1298943732 +113326,7451,Rachel McAdams,1298943710 +113326,7451,revenge,1298943729 +113326,7451,Tina Fey,1298943702 +113326,8360,Antonio Banderas,1280749634 +113326,8360,comedy,1280749595 +113326,8360,Dreamworks,1280749572 +113326,8360,Eddie Murphy,1280749586 +113326,8360,Funny,1280749624 +113326,8360,Mike Myers,1280749579 +113326,8360,sequel,1280749617 +113326,31658,animation,1287355661 +113326,31658,anime,1287355620 +113326,31658,dreamlike,1287355623 +113326,31658,fantasy world,1287355625 +113326,31658,Japan,1287355640 +113326,31658,romance,1287355627 +113326,31658,steampunk,1287355629 +113326,31658,war,1287355631 +113326,31658,whimsical,1287355633 +113326,31658,wizards,1287355636 +113326,44191,dystopia,1300569572 +113326,44191,thought-provoking,1300569568 +113326,44191,visually appealing,1300569564 +113326,45186,action,1284912813 +113326,45186,Billy Crudup,1284912809 +113326,45186,damsel in distress,1284912784 +113326,45186,espionage,1284912789 +113326,45186,Laurence Fishburne,1284912799 +113326,45186,Maggie Q,1284912797 +113326,45186,Philip Seymour Hoffman,1284912793 +113326,45186,Simon Pegg,1284912795 +113326,45186,spy,1284912805 +113326,45186,Tom Cruise,1284912791 +113326,45186,Ving Rhames,1284912792 +113326,46976,Dustin Hoffman,1285800654 +113326,46976,Emma Thompson,1285802270 +113326,46976,Maggie Gyllenhaal,1285800639 +113326,46976,Will Ferrell,1285800650 +113326,46976,writing,1285800652 +113326,47044,Colin Farrell,1305847620 +113326,47044,confusing,1305847663 +113326,47044,Gong Li,1305847643 +113326,47044,Jamie Foxx,1305847622 +113326,47044,Michael Mann,1305847625 +113326,47044,unique,1305847703 +113326,47810,so bad it's good,1301395071 +113326,48394,disturbing,1288230526 +113326,48394,imagination,1288230555 +113326,48394,psychology,1288230549 +113326,48394,violence,1288230523 +113326,51540,bad ending,1280584571 +113326,51540,based on a true story,1280584558 +113326,51540,Jake Gyllenhaal,1280584586 +113326,51540,long,1280584603 +113326,51540,Mark Ruffalo,1280584553 +113326,51540,obsession,1280584566 +113326,55269,Adrien Brody,1294875760 +113326,55280,feel-good,1288027213 +113326,55280,I wanted to hug this movie,1288027217 +113326,55280,real doll,1288027227 +113326,55280,Ryan Gosling,1288027338 +113326,57526,computer crimes,1281749555 +113326,59295,bad science,1280426758 +113326,59295,bananas,1280426768 +113326,60069,pixar,1282229871 +113326,60069,Post apocalyptic,1282229866 +113326,60069,social commentary,1282229877 +113326,60069,space,1282229879 +113326,62586,politics,1281654454 +113326,64839,aging,1292360188 +113326,64839,Darren Aronofsky,1292360185 +113326,64839,identity crisis,1292360194 +113326,64839,sad,1292360200 +113326,64839,sport:professional wrestling,1292360206 +113326,64839,strippers,1292360211 +113326,64839,violence,1292360208 +113326,66652,Eddie Griffin,1288220772 +113326,66652,Steven Seagal,1288220777 +113326,67193,Clive Owen,1281727229 +113326,67193,Julia Roberts,1281727224 +113326,67193,Paul Giamatti,1281727227 +113326,67193,Tom Wilkinson,1281727241 +113326,67193,Tony Gilroy,1281727242 +113326,68237,artificial intelligence,1306595368 +113326,68237,dialogue driven,1306595364 +113326,68237,drama,1306595397 +113326,68237,Kevin Spacey,1306595362 +113326,68237,plot twist,1306595409 +113326,68237,psychology,1306595370 +113326,68237,Sam Rockwell,1306595386 +113326,68237,Sci-fi,1306595372 +113326,68237,twist ending,1306595411 +113326,68954,adventure,1282229798 +113326,68954,old age,1282229809 +113326,68954,Pixar,1282229776 +113326,68954,predictable,1282229782 +113326,68954,touching,1282229789 +113326,68954,tragedy,1282229794 +113326,69122,Heather Graham,1285010089 +113326,69122,Zach Galifianakis,1285010086 +113326,71131,Louis Theroux,1281865024 +113326,71135,aliens,1285510704 +113326,71135,amnesia,1285510701 +113326,71135,Ben Foster,1285510686 +113326,71135,Dennis Quaid,1285510684 +113326,71135,future,1285510700 +113326,71135,horror,1285510682 +113326,71135,hybernation,1285510698 +113326,71135,post-apocalyptic,1285510692 +113326,71135,space travel,1285510706 +113326,72171,Michael Jai White,1291066582 +113326,74754,acting,1280575760 +113326,74754,Carolyn Minnott,1280575786 +113326,74754,Greg Sestero,1280575782 +113326,74754,Juliette Danielle,1280575778 +113326,74754,Philip Haldiman,1280575790 +113326,74754,so bad it's good,1394655454 +113326,74754,Tommy Wiseau,1283711631 +113326,74754,unintentional comedy,1280575725 +113326,77561,bad science,1283711214 +113326,77561,Robert Downey Jr.,1283711183 +113326,77561,Sam Rockwell,1283711188 +113326,77561,Scarlett Johansson,1283711191 +113326,77561,superhero,1283711194 +113326,78105,Alfred Molina,1282153751 +113326,78105,based on a video game,1282153777 +113326,78105,Ben Kingsley,1282153783 +113326,78105,Jake Gyllenhaal,1282153760 +113326,78105,parkour,1282153762 +113326,78105,Special Effects,1282153767 +113326,79185,Cameron Diaz,1284840673 +113326,79185,James Mangold,1284840683 +113326,79185,Paul Dano,1284840680 +113326,79185,Peter Sarsgaard,1284840676 +113326,79185,Tom Cruise,1284840670 +113326,79242,adultery,1297797198 +113326,79242,coming of age,1297797210 +113326,79242,drama,1297797190 +113326,79242,dysfunctional family,1297797166 +113326,79242,father daughter relationship,1297797186 +113326,79242,good acting,1297797181 +113326,79242,humorous,1297797178 +113326,79242,Julianne Moore,1297797171 +113326,79242,lesbian,1297797214 +113326,79242,love,1297797172 +113326,79242,Mark Ruffalo,1297797168 +113326,79293,espionage,1282165172 +113326,79293,murder,1282165190 +113326,79293,setting:NYC,1282165191 +113326,79293,setting:Washington DC,1282165194 +113326,79293,sleeper agent,1282165169 +113326,79293,US President,1282165197 +113326,79702,based on a comic,1288389739 +113326,79702,cultural references,1288389725 +113326,79702,funny,1288389762 +113326,79702,Kieran Culkin,1288389743 +113326,79702,Michael Cera,1288389746 +113326,79702,music,1288389748 +113326,79702,video games,1288389734 +113326,80463,Andrew Garfield,1288650393 +113326,80463,based on true story,1288650426 +113326,80463,Bechdel Test:Fail,1288650368 +113326,80463,facebook,1288650389 +113326,80463,friendship,1288650413 +113326,80463,Jesse Eisenberg,1288650396 +113326,80463,protagonist is a computer programmer,1288650410 +113326,80463,setting:Harvard University,1288650378 +113326,80463,setting:Palo Alto (CA/USA),1288650429 +113326,80463,true story,1288650382 +113326,80549,characters,1297037302 +113326,80549,Emma Stone,1297037275 +113326,80549,funny,1297037306 +113326,80549,funny dialogues,1297037277 +113326,80549,high school,1297037279 +113326,80549,lies,1297037312 +113326,80549,plot,1297037296 +113326,80549,Stanley Tucci,1297037289 +113326,80549,Unreal reactions,1297037284 +113326,80549,witty,1297037288 +113326,80572,david letterman,1296771024 +113326,81564,Brad Pitt,1294513946 +113326,81564,Jonah Hill,1294513948 +113326,81564,Will Ferrell,1294513944 +113326,81847,animation,1296594413 +113326,81847,Bechdel Test:Pass,1296594420 +113326,81932,brothers,1296692832 +113326,81932,Christian Bale,1296692804 +113326,81932,controlling mother,1296692811 +113326,81932,drug addict,1296692815 +113326,81932,Mark Wahlberg,1296692840 +113326,81932,police brutality,1296692820 +113326,81932,sexy redhead,1296692827 +113326,81932,sports,1296692834 +113326,81932,true story,1296692836 +113326,82459,child as protagonist,1303331236 +113326,82459,Jeff Bridges,1303331225 +113326,82459,Josh Brolin,1303331227 +113326,82459,Matt Damon,1303331223 +113326,82459,Western,1303331230 +113326,82461,action choreography,1299101239 +113326,82461,Jeff Bridges,1299101242 +113326,82461,music,1299101244 +113326,82461,scenic,1299101247 +113326,82461,stylized,1299101249 +113326,82461,techno,1299101251 +113330,85179,action,1428179095 +113330,85179,anime,1428179095 +113330,85179,sci-fi,1428179095 +113377,6306,Wilco,1449778086 +113377,143023,Cambodia,1449777935 +113391,53123,musical,1236243602 +113392,527,based on a true story,1435335902 +113392,527,disturbing,1435335885 +113392,527,holocaust,1435335924 +113392,527,World War II,1435336010 +113392,3114,Pixar,1435338752 +113392,5187,action packed,1435335744 +113392,5187,fun,1435335744 +113392,5187,great characters,1435335744 +113403,260,action,1440098282 +113403,260,classic,1440098291 +113443,260,good vs evil,1444057338 +113443,260,space fantasy,1444057330 +113443,2571,action,1444058612 +113443,2571,fantasy,1444058619 +113443,2571,fight scenes,1444058621 +113443,2571,martial arts,1444058630 +113443,2571,philosophy,1444058628 +113443,2571,sci-fi,1444058606 +113443,2571,thought-provoking,1444058610 +113443,44191,dystopia,1444058583 +113443,44191,inspirational,1444058567 +113443,44191,revolution,1444058558 +113443,44191,thought-provoking,1444058564 +113443,54259,fairy tale,1444148002 +113443,54259,fantasy,1444148000 +113443,54259,modern fantasy,1444148015 +113443,54259,Neil Gaiman,1444148004 +113443,54259,pirates,1444148012 +113443,68237,great soundtrack,1444147952 +113443,89774,Nick Nolte,1444148185 +113443,89774,touching,1444148182 +113484,260,space,1442157983 +113484,260,Star War,1442157976 +113491,778,British,1452404901 +113491,778,ironic,1452404888 +113491,1704,Friends,1452405160 +113491,1704,self conciousness,1452405180 +113510,115617,racial diversity,1430029378 +113510,115617,science fiction,1430029378 +113510,115617,sibling relationships,1430029378 +113514,73015,Meryl Streep,1285545731 +113543,5980,christmas,1422554314 +113543,5980,horror,1422554314 +113543,5980,thriller,1422554314 +113549,608,Coen Brothers,1137278959 +113549,1732,Coen Brothers,1137279208 +113549,4878,time travel,1155310559 +113549,6367,60s,1137278776 +113549,7361,Vergiss mein Nicht (German title),1196711331 +113553,2683,seen more than once,1170022080 +113562,101,Wes Anderson,1200966755 +113562,1215,Bruce Campbell,1200966804 +113562,2716,Bill Murray,1200967019 +113562,3175,Tim Allen,1200967840 +113562,6711,Bill Murray,1200967079 +113562,6755,Bruce Campbell,1200966792 +113562,44191,dystopia,1200967074 +113575,293,assassin,1237401424 +113575,293,assassin-in-training,1237401424 +113575,293,French,1237401424 +113575,293,hit men,1237401424 +113575,293,Jean Reno,1237401424 +113575,407,John Carpenter,1237394053 +113575,407,lovecraft,1237394053 +113575,407,lovecraftian,1237485922 +113575,407,Lovecraftian mythology,1237485920 +113575,407,perception,1237394053 +113575,1089,organized crime,1237401241 +113575,1089,Quentin Tarantino,1237401240 +113575,1255,alien invasion,1237486551 +113575,1255,aliens,1237486551 +113575,1255,cult film,1237486551 +113575,1255,Peter Jackson,1237486551 +113575,1748,aliens,1240270871 +113575,1748,memories,1240270871 +113575,1748,memory,1240270871 +113575,1748,psychic abilities,1240270871 +113575,1884,drugs,1237399696 +113575,1884,Hunter S. Thompson,1237399696 +113575,1965,Emilio Estevez,1245055058 +113575,1965,punk,1245055067 +113575,2288,alien invasion,1238268326 +113575,2288,aliens,1238268326 +113575,2288,horror,1238268326 +113575,2288,John Carpenter,1245055010 +113575,2288,Kurt Russell,1245055012 +113575,2288,lovecraft,1245055013 +113575,2288,lovecraftian,1245055026 +113575,2288,Lovecraftian mythology,1245055016 +113575,2836,1970s,1239330492 +113575,2836,boarding school,1239330492 +113575,2836,coming of age,1239330492 +113575,2836,drugs,1239330492 +113575,2836,romance,1239330492 +113575,2836,stoner,1239330492 +113575,2836,weed,1239330492 +113575,2901,aliens,1237486319 +113575,2901,cult film,1237486319 +113575,2901,dead,1237486319 +113575,2901,horrorr,1237486319 +113575,2901,lovecraft,1237486319 +113575,2901,lovecraftian,1237486319 +113575,2901,Lovecraftian mythology,1237486319 +113575,2901,sci-fi,1237486319 +113575,2901,slave trade,1237486319 +113575,2901,zombies,1237486319 +113575,3000,Hayao Miyazaki,1245055330 +113575,3652,gates of hell trilogy,1237398295 +113575,3652,horror,1237398295 +113575,3652,Italian,1237398295 +113575,3652,lovecraft,1237398295 +113575,3652,lovecraftian,1237398295 +113575,3652,Lovecraftian mythology,1237398295 +113575,3652,Lucio Fulci,1237398295 +113575,3652,zombies,1237398295 +113575,3740,John Carpenter,1237394230 +113575,3740,Kurt Russell,1237394230 +113575,3740,magic,1237394230 +113575,3740,martial arts,1237394230 +113575,3740,occult,1237394230 +113575,3837,aliens,1237492139 +113575,3837,cult film,1237492139 +113575,3837,dead,1237492139 +113575,3837,horrorr,1237492139 +113575,3837,lovecraft,1237492138 +113575,3837,lovecraftian,1237492139 +113575,3837,Lovecraftian mythology,1237492139 +113575,3837,sci-fi,1237492139 +113575,3837,slave trade,1237492139 +113575,3837,zombies,1237492139 +113575,3970,gates of hell trilogy,1237398496 +113575,3970,horror,1237396873 +113575,3970,Italian,1237396873 +113575,3970,lovecraft,1237398496 +113575,3970,lovecraftian,1237396873 +113575,3970,Lovecraftian mythology,1237398496 +113575,3970,Lucio Fulci,1237396873 +113575,4239,cocaine,1237401736 +113575,4239,coke,1237401736 +113575,4239,drug trade,1237401736 +113575,4239,drug trafficking,1237401736 +113575,4417,gates of hell trilogy,1237398411 +113575,4417,horror,1237398411 +113575,4417,Italian,1237398411 +113575,4417,lovecraft,1237398411 +113575,4417,lovecraftian,1237398411 +113575,4417,Lovecraftian mythology,1237398411 +113575,4417,Lucio Fulci,1237398411 +113575,4642,cult film,1237400946 +113575,4642,music,1237400946 +113575,4642,sexuality,1237400946 +113575,4642,transgender,1237400946 +113575,5165,horror,1237398100 +113575,5165,Italian,1237398100 +113575,5165,Lucio Fulci,1237398100 +113575,5618,anime,1237399439 +113575,5618,Hayao Miyazaki,1237399474 +113575,7360,remake,1235157309 +113575,7387,George A. Romero,1245055166 +113575,7387,zombies,1245055175 +113575,36529,arms dealer,1246724171 +113575,36529,Nicolas Cage,1246724139 +113575,36529,wartime,1246724171 +113575,43011,Daniel Haller,1237394122 +113575,43011,lovecraft,1237394122 +113575,43011,lovecraftian,1237394122 +113575,43011,Lovecraftian mythology,1237394122 +113575,44828,alien invasion,1238429743 +113575,44828,aliens,1238429743 +113575,44828,comedy,1238429743 +113575,44828,horror,1238429743 +113575,44828,sci-fi,1238429743 +113575,45183,Asian culture,1237401199 +113575,45183,elephants,1237401199 +113575,45183,martial arts,1237401163 +113575,47610,Edward Norton,1248933626 +113575,47610,Paul Giamatti,1248933630 +113575,47610,twist ending,1248933632 +113575,51255,action,1237485287 +113575,51255,comedy,1237485286 +113575,51255,cops,1237485286 +113575,51255,Edgar Wright,1237485286 +113575,51255,parody,1237485286 +113575,51255,police,1237485286 +113575,51255,Simon Pegg,1237485287 +113575,52281,grindhouse,1237398756 +113575,52973,Seth Rogan,1245426178 +113575,53468,comedy,1237399035 +113575,53519,car chase,1237398880 +113575,54995,grindhouse,1237398803 +113575,56079,Anna Faris,1237399231 +113575,56079,comedy,1237399231 +113575,56079,marijuana,1237399251 +113575,56079,Stoner Movie,1237399231 +113575,58332,George A. Romero,1237399136 +113575,58332,horror,1237399136 +113575,58332,zombies,1237399136 +113575,62434,Elizabeth Banks,1245344747 +113575,62434,Seth Rogen,1245344747 +113575,63131,life lessons,1245344666 +113575,63131,Paul Rudd,1245344666 +113575,66932,thriller,1237484499 +113575,66932,ventriloquist,1237484499 +113598,57669,british comedy,1448907593 +113598,57669,dark comedy,1448907580 +113598,57669,foul language,1448907599 +113598,57669,friendship,1448907586 +113603,102125,action,1396528283 +113603,102125,funny,1396528294 +113603,102125,Robert Downey Jr.,1396528285 +113603,102125,robots,1396528289 +113603,102125,romantic,1396528291 +113603,102125,superhero,1396528286 +113603,102125,visually appealing,1396528287 +113703,114662,american snorer,1426939495 +113703,114662,overhyped,1426939495 +113703,114662,ptsd fans,1426939495 +113703,135506,Christianity,1451847355 +113703,135506,Religious,1451847364 +113719,6377,animation,1447275151 +113719,6377,Disney,1447275190 +113719,6377,funny,1447275154 +113719,6377,ocean,1447275173 +113719,6377,Pixar,1447275163 +113719,6377,talking animals,1447275188 +113719,8361,apocalypse,1447268434 +113719,8361,catastrophe,1447268444 +113719,8361,global warming,1447268451 +113719,8361,natural disaster,1447268442 +113719,8361,New York City,1447268446 +113719,8361,Post apocalyptic,1447268439 +113719,8361,unrealistic,1447268461 +113719,91500,action,1447267805 +113719,91500,based on a book,1447267802 +113719,91500,drama,1447267808 +113719,91500,dystopia,1447267754 +113719,91500,intense,1447267797 +113719,91500,Jennifer Lawrence,1447267783 +113719,91500,science fiction,1447267763 +113719,91500,survival,1447267798 +113719,95105,circus,1447268221 +113719,102903,illusions,1447275068 +113719,102903,magic,1447275066 +113719,102903,Morgan Freeman,1447275081 +113719,102903,plot,1447275083 +113719,102903,surprise ending,1447275087 +113719,106487,acting,1447267879 +113719,106487,based on a book,1447267864 +113719,106487,dystopia,1447267862 +113719,106487,dystopic future,1447267875 +113719,106487,Jennifer Lawrence,1447267857 +113719,106487,revolution,1447267867 +113719,106487,sci-fi,1447267871 +113719,106487,strong female lead,1447267860 +113719,116823,bad ass female lead,1447267844 +113719,116823,based on a book,1447267835 +113719,116823,dystopia,1447267823 +113719,116823,Jennifer Lawrence,1447267826 +113719,116823,military,1447267830 +113719,116823,realistic,1447267833 +113719,116823,revolution,1447267824 +113719,116823,strong female lead,1447267838 +113719,141890,Africa,1447280705 +113719,141890,war,1447280694 +113721,3801,Best of Rotten Tomatoes: All Time,1297004575 +113721,3801,court,1297004909 +113721,3801,courtroom,1297004908 +113721,3801,imdb top 250,1297004573 +113737,4349,great book,1137757279 +113737,4349,terrible movie.,1137757279 +113739,260,classic sci-fi,1439796999 +113739,260,sci-fi,1439796977 +113763,4333,twisted,1138576633 +113763,4458,nature,1138578405 +113763,4866,actors,1138651915 +113804,3476,The Jacket,1155225883 +113810,47,Morgan Freeman,1337526460 +113810,100,Al Pacino,1295561592 +113810,1396,computers,1295831304 +113810,1396,espionage,1295831313 +113810,1396,spying,1295831308 +113810,1396,weak ending,1295831345 +113810,3618,bad ending,1337526293 +113810,4995,genius,1295830963 +113810,4995,true story,1295830958 +113810,8131,easily confused with another title,1336862147 +113810,30707,bittersweet,1337938451 +113810,30707,Clint Eastwood,1337938424 +113810,30707,Morgan Freeman,1337938436 +113810,30707,poverty,1337938470 +113810,30707,sports,1337938466 +113810,33794,Michael Caine,1337526510 +113810,34319,cloning,1337800103 +113810,34319,genetics,1337800100 +113810,34319,Scarlett Johansson,1337800108 +113810,34319,surreal,1337800116 +113810,44195,clever,1295561373 +113810,44195,corruption,1295561376 +113810,44195,dark comedy,1295561368 +113810,44195,dark humor,1295561365 +113810,44195,journalism,1295561561 +113810,44195,satire,1295561383 +113810,44195,social commentary,1295561380 +113810,44555,spying,1295831278 +113810,48385,controversial,1295831182 +113810,48385,satire,1295831186 +113810,48385,social commentary,1295831180 +113810,55765,based on a true story,1292367309 +113810,55765,Denzel Washington,1292367305 +113810,55765,Russell Crowe,1292367314 +113810,56251,futurama,1291501399 +113810,56251,intelligent humor,1291501381 +113810,56587,ending,1338046244 +113810,58303,ethical dilemma,1337798747 +113810,58303,Holocaust,1337798743 +113810,58303,thought-provoking,1337798751 +113810,58303,true story,1337798741 +113810,63082,feel-good,1337526335 +113810,63082,love story,1337526372 +113810,63082,music,1337526341 +113810,63082,nonlinear,1337526327 +113810,63082,social commentary,1337526339 +113810,63082,torture,1337526360 +113810,63082,violence,1337526366 +113810,69306,Denzel Washington,1337798067 +113810,69306,John Travolta,1337798028 +113810,69306,New York City,1337798075 +113810,69306,terrorism,1337798072 +113810,72378,bad science,1295830743 +113810,72378,unrealistic plot,1295830754 +113810,72998,3d,1295830872 +113810,73017,Action,1337526395 +113810,73017,Atmospheric,1337526391 +113810,73017,dialogue,1337526410 +113810,73017,England,1337526401 +113810,73017,Sherlock Holmes,1337526388 +113810,73017,violent,1337526405 +113810,80126,George Clooney,1295830618 +113810,80126,slow,1295830605 +113810,80917,no action,1292352306 +113810,82095,plot,1295831472 +113810,82095,stupid ending,1295831467 +113810,82095,unintentional comedy,1295831459 +113810,94405,Jason Statham,1337772983 +113824,260,fantasy,1431578688 +113824,260,friendship,1431578698 +113824,260,Oscar (Best Effects - Visual Effects),1431578663 +113824,260,sci-fi,1431578678 +113824,260,scifi cult,1431578655 +113880,593,Anthony Hopkins,1320436593 +113880,593,based on a book,1320436645 +113880,593,cannibalism,1320436615 +113880,593,classic,1320436604 +113880,593,imdb top 250,1320436638 +113880,593,investigation,1320436607 +113880,593,Jodie Foster,1320436599 +113880,593,serial killer,1320436609 +113880,2788,sketch comedy,1442622575 +113880,6001,Martin Scorsese,1442025699 +113880,6001,Robert De Niro,1442025721 +113880,6001,satirical,1442025730 +113880,7438,action,1320436110 +113880,7438,atmospheric,1320436128 +113880,7438,kung fu,1320436113 +113880,7438,Quentin Tarantino,1320436105 +113880,7438,spaghetti western,1320436126 +113880,7438,violence,1320436116 +113880,48394,based on a book,1318641376 +113880,48394,Spanish Civil War,1318641376 +113884,3555,boring and historically inaccurate,1153819145 +113892,41571,history,1436676273 +113892,41571,romance,1436676273 +113892,41571,suffering,1436676273 +113925,31,crime,1188236322 +113925,31,island,1188236322 +113925,866,lesbian,1188236863 +113925,866,mafia,1188236863 +113925,866,mob,1188236863 +113925,866,money,1188236863 +113925,1267,conspiracy,1188236408 +113925,1267,president assasination,1188236408 +113925,2080,dogs,1188236371 +113925,2080,puppies,1188236371 +113925,2105,computer,1188236514 +113925,2105,games,1188236513 +113925,2278,bank robbery,1188236481 +113925,2424,chatting,1188236295 +113925,2424,e-mail,1188236295 +113925,2424,happy-ending,1188236295 +113925,2424,love story,1188236295 +113925,3033,parody,1188236225 +113925,3033,star wars,1188236243 +113925,4262,al pacino,1188236904 +113925,4262,mafia,1188236904 +113925,5679,crime,1188236821 +113925,5679,videotape,1188236821 +113925,6378,robbery,1188236875 +113925,6934,computer hacker,1188236803 +113925,6934,FUTURE DYSTOPIAS,1188236803 +113925,7438,crime,1188236195 +113925,7438,revenge,1188236195 +113937,288,good soundtrack,1248339738 +113937,56286,Bob Dylan,1248339026 +113937,56286,surrealism,1248339044 +113945,1717,bad,1186443932 +113945,3752,bad jim carrey film,1186443857 +113945,3826,boring,1186443939 +113945,3967,nice drama,1186443942 +113945,4310,weak romantic movie,1186443855 +113945,4447,terrible,1186443858 +113945,4975,good soundtrack,1186443930 +113945,4975,interesting movie,1186443930 +113945,6502,entertaining,1186443944 +113945,33493,popcorn flick,1186443853 +113975,113315,army,1420180595 +113975,113315,dark comedy,1420180595 +113975,113315,funny,1420180595 +113975,116859,hallmark channel production,1420830947 +113975,116859,memory loss,1420830947 +113975,116859,sweet,1420830947 +113980,374,spoiled,1189478272 +113980,419,oil slick,1189478262 +113980,546,mario,1189478676 +113980,837,telekenisis,1189478244 +113980,1091,dead dude,1189478712 +113980,1907,ninja,1189478471 +113980,2125,noob,1189478662 +113980,2409,inspire,1189478705 +113980,2485,lol,1189478683 +113980,3273,yell,1189478166 +113980,3450,old dudes,1189478187 +113980,3608,pervert,1189478669 +113980,3752,fat black dudes,1189478468 +113980,3826,invisible,1189478595 +113980,3916,foozball,1189478594 +113980,3967,sixth sense,1189478596 +113980,4262,little friend,1189478470 +113980,4270,sand,1189478594 +113980,4310,boom,1189478470 +113980,4367,game,1189478544 +113980,4447,funny,1189478468 +113980,6218,soccer,1189478543 +113980,6373,god like,1189478151 +113980,6378,Italian,1189478467 +113980,8622,terror,1189478597 +113985,51312,italy,1434458002 +113985,51312,love,1434458002 +113985,51312,mistery,1434458002 +113985,111235,documentary,1435136622 +113985,111235,dune,1435136622 +113985,111235,meta,1435136622 +114013,296,atmospheric,1430711580 +114013,296,Black comedy,1430711605 +114013,296,cult film,1430711561 +114013,296,dark comedy,1430710799 +114013,296,good dialogue,1430711619 +114013,296,multiple storylines,1430710790 +114013,296,nonlinear,1430710792 +114013,296,Quentin Tarantino,1430710781 +114013,296,quirky,1430711582 +114013,296,stylized,1430711608 +114013,318,atmospheric,1430765394 +114013,318,classic,1430765399 +114013,318,great acting,1430765392 +114013,318,heartwarming,1430765407 +114013,318,inspirational,1430765374 +114013,318,reflective,1430765396 +114013,318,thought-provoking,1430765368 +114013,318,twist ending,1430765366 +114013,1265,alternate reality,1430711452 +114013,1265,animals,1430711506 +114013,1265,Bill Murray,1430711447 +114013,1265,Classic,1430711494 +114013,1265,comedy,1430711485 +114013,1265,existentialism,1430711464 +114013,1265,Fantasy,1430711517 +114013,1265,funny,1430711454 +114013,1265,hilarious,1430711483 +114013,1265,humorous,1430711514 +114013,1265,self discovery,1430711497 +114013,1265,surreal,1430711448 +114013,1265,time loop,1430711448 +114013,1265,time travel,1430711449 +114013,1682,alternate reality,1432624707 +114013,1682,dark comedy,1432624700 +114013,1682,dreamlike,1432624698 +114013,1682,dystopia,1432624706 +114013,1682,fantasy,1432624735 +114013,1682,melancholy,1432624745 +114013,1682,original plot,1432624731 +114013,1682,paranoia,1432624727 +114013,1682,philosophy,1432624743 +114013,1682,small town,1432624763 +114013,1682,social commentary,1432624703 +114013,1682,stylized,1432624711 +114013,1682,surreal,1432624742 +114013,1682,witty,1432624729 +114013,1704,inspirational,1430765490 +114013,1704,intellectual,1430765481 +114013,1704,psychology,1430765470 +114013,1732,bowling,1432647616 +114013,1732,comedy,1432647624 +114013,1732,cult film,1432647618 +114013,1732,dark comedy,1432647588 +114013,1732,great soundtrack,1432647633 +114013,1732,quirky,1432647620 +114013,1732,satirical,1432647622 +114013,2959,atmospheric,1430711381 +114013,2959,dark comedy,1430711247 +114013,2959,disturbing,1430711342 +114013,2959,fighting,1430711304 +114013,2959,mindfuck,1430711280 +114013,2959,philosophical,1430711334 +114013,2959,powerful ending,1430711364 +114013,2959,psychological,1430711355 +114013,2959,psychology,1430711246 +114013,2959,quirky,1430711367 +114013,2959,social commentary,1430711249 +114013,2959,surreal,1430711228 +114013,2959,thought-provoking,1430711232 +114013,2959,twist ending,1430711223 +114013,2959,violent,1430711323 +114013,3105,Psychiatry,1431413289 +114013,3105,Robert De Niro,1431413288 +114013,4226,Christopher Nolan,1430716544 +114013,4226,complicated,1430717060 +114013,4226,cult film,1430716565 +114013,4226,dreamlike,1430717048 +114013,4226,Mindfuck,1430716549 +114013,4226,mystery,1430717056 +114013,4226,nonlinear,1430716536 +114013,4226,psychology,1430716540 +114013,4226,twist ending,1430716553 +114013,4226,twists & turns,1430716568 +114013,4878,alternate timeline,1432625112 +114013,4878,cult film,1432625109 +114013,4878,dreamlike,1432625103 +114013,4878,hallucinatory,1432625125 +114013,4878,high school,1432625118 +114013,4878,mental illness,1432625105 +114013,4878,mindfuck,1432625127 +114013,4878,mystery,1432625124 +114013,4878,original,1432625102 +114013,4878,philosophy,1432625116 +114013,4878,psychology,1432625094 +114013,4878,satirical,1432625120 +114013,4878,sci-fi,1432625107 +114013,4878,social commentary,1432625114 +114013,4878,surreal,1432625096 +114013,4878,thought-provoking,1432625098 +114013,4878,time travel,1432625100 +114013,4878,twist ending,1432625093 +114013,4995,Oscar (Best Picture),1430765527 +114013,4995,psychology,1430765508 +114013,4995,schizophrenia,1430765552 +114013,4995,twist ending,1430765520 +114013,7361,alternate reality,1430711726 +114013,7361,beautiful,1430711769 +114013,7361,bittersweet,1430711696 +114013,7361,comedy,1430711750 +114013,7361,cult film,1430711722 +114013,7361,dreamlike,1430711723 +114013,7361,fantasy,1430711728 +114013,7361,imagination,1430711703 +114013,7361,jim carrey,1430711690 +114013,7361,Kate Winslet,1430711708 +114013,7361,melancholy,1430711762 +114013,7361,nonlinear,1430711692 +114013,7361,philosophy,1430711718 +114013,7361,psychology,1430711701 +114013,7361,quirky,1430711698 +114013,7361,sci-fi,1430711720 +114013,7361,surreal,1430711685 +114013,7361,surrealism,1430711719 +114013,7361,thought-provoking,1430711687 +114013,38886,dark comedy,1433084466 +114013,38886,depressing,1433084471 +114013,38886,great script,1433084483 +114013,38886,quirky,1433084452 +114013,38886,smart comedy,1433084453 +114013,46976,Maggie Gyllenhaal,1432625283 +114013,46976,metaphysics,1432625290 +114013,46976,surreal,1432625271 +114013,46976,touching,1432625276 +114013,46976,Will Ferrell,1432625272 +114013,48394,alternate reality,1432647369 +114013,48394,atmospheric,1432647361 +114013,48394,fairy tale,1432647364 +114013,48394,psychology,1432647367 +114013,48394,Spanish Civil War,1432647399 +114013,48394,surreal,1432647359 +114013,48394,twist ending,1432647373 +114013,51540,based on a true story,1430712886 +114013,51540,David Fincher,1430712894 +114013,51540,investigation,1430712890 +114013,51540,Mystery,1430712954 +114013,51540,obsession,1430712941 +114013,51540,slow,1430712906 +114013,51540,Thriller,1430712962 +114013,54503,comedy,1430765727 +114013,54503,crude humor,1430765738 +114013,54503,Highly quotable,1430765745 +114013,54503,hilarious,1430765776 +114013,54503,Seth Rogen,1430765730 +114013,58559,Atmospheric,1430719631 +114013,58559,Christian Bale,1430719659 +114013,58559,Christopher Nolan,1430719646 +114013,58559,dark,1430719626 +114013,58559,Heath Ledger,1430719650 +114013,58559,psychology,1430719628 +114013,58559,stylized,1430719653 +114013,58559,thriller,1430719643 +114013,58559,vigilante,1430719670 +114013,61024,comedy,1430712555 +114013,61024,James Franco,1430712561 +114013,61024,Quotable,1430712567 +114013,61024,Seth Rogen,1430712553 +114013,68157,Adolf Hitler,1432646452 +114013,68157,black comedy,1432646415 +114013,68157,Brad Pitt,1432646406 +114013,68157,Christoph Waltz,1432646441 +114013,68157,dark comedy,1432646436 +114013,68157,Dead Nazis,1432646455 +114013,68157,gore,1432646450 +114013,68157,IMDB Top 250,1432646467 +114013,68157,Quentin Tarantino,1432646396 +114013,68157,satire,1432646409 +114013,68157,unusual plot structure,1432646447 +114013,68157,visually appealing,1432646412 +114013,72226,animation,1430712473 +114013,72226,Bill Murray,1430712443 +114013,72226,bittersweet,1430712445 +114013,72226,George Clooney,1430712439 +114013,72226,great cast,1430712462 +114013,72226,quirky,1430712472 +114013,72226,stop motion,1430712436 +114013,72226,visually appealing,1430712465 +114013,72226,Wes Anderson,1430712434 +114013,78209,Hilarious,1430712500 +114013,78209,Jonah Hill,1430712504 +114013,78209,Quotable,1430712512 +114013,104944,borderline personality disorder,1432625047 +114013,104944,moving,1432625047 +114013,104944,touching,1432625047 +114013,111759,future,1431412940 +114013,111759,sci-fi,1431412927 +114013,111759,time loop,1431412924 +114013,111759,time travel,1431412925 +114013,116797,Benedict Cumberbatch,1430712201 +114013,116797,cryptography,1430712263 +114013,116797,history,1430712262 +114013,116797,informatics,1430712263 +114013,116797,Keira Knightley,1430712262 +114013,117533,documentary,1431413278 +114013,117533,informative,1430711896 +114013,117533,intelligence community,1431413278 +114013,117533,Laura Poitras,1430711881 +114013,117533,nonfiction,1430711902 +114013,117533,top documentary,1430711920 +114013,122892,cgi,1430712349 +114013,122892,marvel,1430712349 +114013,122892,marvel cinematic universe,1430712349 +114029,260,boring,1440301189 +114029,260,uninterested,1440301193 +114032,44665,morgan freeman,1379159732 +114032,102903,character development,1379161244 +114032,102903,magic,1379159824 +114032,102903,Michael Caine,1379159892 +114032,102903,morgan freeman,1379159824 +114032,102903,plot,1379161273 +114032,103335,humour,1379158838 +114032,103335,steve carell,1379158825 +114054,260,fantasy,1436537049 +114054,260,sci-fi,1436537053 +114054,7254,alternate reality,1437344751 +114054,7254,time travel,1437344746 +114054,97230,documentary,1438375342 +114054,97230,educational,1438375342 +114054,97230,moviegoer,1438375342 +114104,81562,James Franco,1445423221 +114104,81562,mountain climbing,1445423230 +114104,81562,true story,1445423226 +114109,2628,Jar Jar Binks,1450841963 +114109,2628,kid anakin,1450841999 +114109,2628,Samuel L. Jackson,1450841966 +114109,2628,sci-fi,1450841970 +114109,2628,Star Wars,1450841971 +114109,47997,dystopia,1450845874 +114109,47997,satire,1450845872 +114109,91500,based on a book,1450845131 +114109,91500,dystopia,1450845122 +114109,91500,survival,1450845140 +114109,91500,visually stunning,1450845139 +114109,107406,illogical,1450845429 +114109,107406,poor plot,1450845426 +114109,112852,Action,1450841744 +114109,112852,adventure,1450841765 +114109,112852,comic book,1450841773 +114109,112852,fantasy,1450841763 +114109,112852,Great Visuals,1450841761 +114109,112852,Marvel Cinematic Universe,1450841748 +114109,112852,sci-fi,1450841752 +114109,112852,superhero,1450841775 +114109,134130,realistic,1450841379 +114109,134130,sci-fi,1450841364 +114109,134130,scientific,1450841373 +114109,134130,Space,1450841362 +114109,134130,space travel,1450841369 +114109,150548,slow start,1452647696 +114123,919,AFI 100,1403479108 +114123,919,based on a book,1403479092 +114123,919,black and white,1403479091 +114123,919,classic,1403479112 +114123,919,dreamlike,1403479078 +114123,919,fantasy,1403479081 +114123,919,heartwarming,1403479093 +114123,919,musical,1403479072 +114123,919,National Film Registry,1403479083 +114123,919,queer,1403479095 +114123,919,witch,1403479087 +114123,1258,cult film,1403479188 +114123,1258,dark,1403479155 +114123,1258,disturbing,1403479153 +114123,1258,ghosts,1403479162 +114123,1258,Horror,1403479159 +114123,1258,mental illness,1403479173 +114123,1258,psychological,1403479147 +114123,1258,psychology,1403479180 +114123,1258,suspense,1403479167 +114123,1258,visually appealing,1403479183 +114123,8368,fantasy,1440979294 +114123,8368,Magic,1440979288 +114123,8368,werewolf,1440979301 +114123,40815,dance,1440979317 +114123,40815,fantasy,1440979326 +114123,91529,Anne Hathaway,1440979362 +114123,91529,Batman,1440979366 +114123,91529,intense,1440979372 +114123,91529,political commentary,1440979378 +114147,318,amazing,1435107752 +114147,318,morgan freeman,1435107752 +114147,318,prison,1435107752 +114153,260,good science fictional technology,1436850173 +114153,260,Science Fiction,1436850186 +114165,78893,Avatar trilogy,1283599997 +114165,78893,effects,1283599983 +114165,78893,story,1283599976 +114173,296,too violent,1137099838 +114173,597,girlie movie,1137099885 +114173,2245,want to see,1137099983 +114173,2671,girlie movie,1137099823 +114173,3259,girlie movie,1137099962 +114173,4246,girlie movie,1137099713 +114173,4995,book,1137099712 +114187,1,Pixar,1262201311 +114187,1,Pixar animation,1262201320 +114187,2288,John Carpenter,1262201361 +114187,59784,animation,1262200510 +114187,59784,Jackie Chan,1262200529 +114187,59784,Kung Fu,1262200520 +114187,68358,lack of development,1262201035 +114187,68358,lack of story,1262201024 +114187,69526,silly,1262199426 +114187,72998,too short,1262199140 +114202,296,gangster,1425930826 +114202,296,quentin tarantino,1425930826 +114202,296,uma thurman,1425930826 +114202,318,author:stephen king,1432764555 +114202,318,classic,1432764555 +114202,318,prison,1432764555 +114202,53769,great dialogue,1307926624 +114219,100083,Raunchy,1452215908 +114219,105213,Freudian concepts,1452215468 +114219,105213,Guidos,1452215425 +114219,105213,Sex addiction,1452215045 +114219,109895,Betrayal,1452215560 +114219,109895,Comedy,1452215542 +114219,109895,Drama,1452215536 +114219,109895,Jason bateman,1452215553 +114219,112552,Killer solo,1452276955 +114219,112552,overcoming adversity,1452276937 +114219,113159,Coming of age tale,1452161625 +114219,113159,Romance,1452161609 +114219,113159,Zombie,1452161593 +114229,6280,emotional,1367905224 +114229,6593,Lindsay Lohan,1155150765 +114229,7022,brutal,1386405034 +114229,7022,dystopia,1386405006 +114229,7022,Japan,1386405093 +114229,7022,survival,1386405014 +114229,7324,western,1367905515 +114229,31700,Annasophia Robb,1385917660 +114229,31700,dogs,1385917823 +114229,31700,friendship,1385917718 +114229,31700,religion,1385917728 +114229,46976,touching,1367905121 +114229,46976,writers,1367905106 +114229,48394,alternate reality,1387925238 +114229,48394,fantasy,1387925228 +114229,48394,world war II,1387925222 +114229,48780,magic,1367904424 +114229,48780,Scarlett Johansson,1367904410 +114229,50601,AnnaSophia Robb,1367905626 +114229,50601,bullying,1367905681 +114229,50601,fantasy,1367905639 +114229,50601,sad,1367905653 +114229,50601,teen relationships,1367905641 +114229,54785,Rob Zombie,1369848984 +114229,54785,teens,1369848998 +114229,57368,shaky camera,1367904910 +114229,74545,slow,1371362205 +114229,79720,Boring,1367904358 +114229,83132,beautiful,1387648160 +114229,83132,bittersweet,1387648152 +114229,83132,Studio Ghibli,1387648141 +114229,91500,based on a book,1371967527 +114229,91500,dystopia,1371967498 +114229,91500,science fiction,1371967518 +114229,91630,action,1367904466 +114229,93510,funny,1367905758 +114229,93510,high school,1367905799 +114229,93510,Jonah Hill,1367905755 +114229,93510,silly,1367905801 +114229,96811,shaky camera,1367905006 +114229,97938,animals,1367904079 +114229,97938,great photograpy,1367904110 +114229,97938,religion,1367904143 +114229,97938,visually appealing,1367904087 +114229,98154,boring to death,1367904590 +114229,98154,too long,1367904610 +114229,98961,boring to death,1367904656 +114229,98961,overrated,1367904681 +114229,99114,Leonardo DiCaprio,1367904810 +114229,99114,predictable,1367904731 +114229,99114,Quentin Tarantino,1367904815 +114229,99114,Slavery,1367904797 +114229,99114,slow,1367904771 +114229,99114,violence,1367904794 +114229,99114,western,1367904778 +114229,99178,teen,1367905461 +114229,99178,writers,1367905470 +114229,100487,Magic,1368292900 +114229,100487,supernatural,1368292858 +114229,100487,teen,1368292890 +114229,101428,boring,1387917953 +114229,101428,slow paced,1387917946 +114229,102160,spy,1367905399 +114230,7418,FEWER than 300 ratings,1269841975 +114255,344,very funny,1313935602 +114255,1485,BREAKUPS AND DIVORCES,1313935672 +114255,1485,father-son relationship,1313935700 +114255,1485,funny,1313935662 +114255,1485,lawyer,1313935689 +114255,1485,workaholic,1313935684 +114255,1923,not funny,1313935570 +114255,2762,mindfuck,1313933881 +114255,2762,twist ending,1313933871 +114255,3000,atmospheric,1313935007 +114255,3000,environmental,1313934996 +114255,3000,Hayao Miyazaki,1313934989 +114255,3186,mental illness,1313937257 +114255,3186,psychiatry,1313937254 +114255,3556,high school,1313932919 +114255,3556,Kirsten Dunst,1313932914 +114255,3556,suicide,1313932927 +114255,4973,beautifully filmed,1313932751 +114255,4973,feel-good,1313932746 +114255,4973,great soundtrack,1313932758 +114255,5618,dreamlike,1313935045 +114255,5618,Hayao Miyazaki,1313935035 +114255,5618,Studio Ghibli,1313935040 +114255,5618,whimsical,1313935060 +114255,5679,zombies,1313934098 +114255,5971,Cute,1313935132 +114255,5971,feel-good,1313935127 +114255,5971,Hayao Miyazaki,1313935116 +114255,5971,visually appealing,1313935138 +114255,7099,sci-fi,1313935202 +114255,7254,Ashton Kutcher,1313933233 +114255,8360,Funny,1313935395 +114255,8783,secrets,1313933945 +114255,8783,twist ending,1313933919 +114255,8866,Kirsten Dunst,1313936192 +114255,8950,thinnes,1313933333 +114255,8950,twist ending,1313933306 +114255,26662,feel-good,1313935238 +114255,30825,juvenile,1313935754 +114255,30825,stupid humor,1313935768 +114255,31658,Hayao Miyazaki,1313935090 +114255,31658,Studio Ghibli,1313935087 +114255,41571,geisha,1313937931 +114255,41571,Japan,1313937929 +114255,42723,torture,1313940982 +114255,44191,Natalie Portman,1313944611 +114255,44191,thought-provoking,1313944606 +114255,44195,dark humor,1313933488 +114255,48780,atmospheric,1313932993 +114255,48780,complicated,1313932988 +114255,48780,mystery,1313932984 +114255,48780,twist ending,1313932998 +114255,53953,boring,1313934057 +114255,56145,giant monster,1313933991 +114255,56145,surprise ending,1313934007 +114255,56367,feel-good,1313934439 +114255,56757,cannibalism,1313946843 +114255,56757,Musical,1313946852 +114255,57274,creepy,1313934304 +114255,57274,isolation,1313934291 +114255,57274,spanish,1313934250 +114255,57274,zombies,1313934276 +114255,58559,Heath Ledger,1313942668 +114255,60397,Musical,1313937726 +114255,62203,ending,1313941034 +114255,62203,torture,1313941020 +114255,62434,juvenile humor,1313932691 +114255,63072,few action scenes,1313936707 +114255,63072,too long,1313936700 +114255,63072,Viggo Mortensen,1313936701 +114255,64969,few funny scenes,1313936106 +114255,67255,swedish,1313942234 +114255,69122,bad jokes,1313935508 +114255,69122,funny,1313935535 +114255,70159,surprise ending,1313934139 +114255,71379,Boring,1313934354 +114255,71379,not scary,1313934363 +114255,71379,over-hyped,1313934347 +114255,71379,Realism,1313934375 +114255,71379,unrealistic,1313934350 +114255,72998,military,1313936578 +114255,73017,Jude Law,1313942821 +114255,73017,mystery,1313942817 +114255,74458,twist ending,1313933048 +114255,75805,predictable,1313936499 +114255,76093,predictable,1313935277 +114255,77427,sick,1313940899 +114255,79132,thought-provoking,1313933124 +114255,79132,visually appealing,1313933128 +114255,80166,dull,1313936242 +114255,80166,predictable ending,1313936247 +114255,80463,business,1313933687 +114255,80693,mental illness,1314030050 +114255,81562,Too Long!,1313934886 +114255,81591,Natalie Portman,1313932818 +114255,81591,psychological,1313932822 +114255,81847,songs,1313936894 +114255,82463,bland,1313934743 +114255,82463,boring,1313934727 +114255,82667,torture,1313946987 +114255,84374,Natalie Portman,1313936270 +114303,260,good vs evil,1435160498 +114303,260,Sci,1435160504 +114333,4973,cult film,1352958196 +114333,4973,quirky,1352958191 +114333,4973,surreal,1352958200 +114350,144692,mecha,1452417359 +114354,260,action,1435692214 +114354,260,Science Fiction,1435692220 +114354,356,alone,1435692396 +114354,356,inspirational,1435692396 +114354,356,meaning of life,1435692396 +114382,84414,action,1347419368 +114382,84414,based on a book,1347419410 +114382,84414,based on a comic book,1347419368 +114382,84414,episodic,1347419379 +114382,84414,Silver Age,1347419368 +114382,84414,whimsical,1347419368 +114382,90405,preachy,1352612078 +114382,95307,70's,1344441816 +114382,95307,Alec Baldwin,1344441816 +114382,95307,musical,1344441816 +114382,95307,rock and roll,1344441816 +114382,95307,Russell Brand,1344441816 +114382,95307,sloppy filming,1344441812 +114382,95307,stylized,1344441816 +114382,138104,boring,1440033787 +114382,138104,disappointing ending,1440033787 +114382,138104,dry,1440033786 +114382,138104,predictable,1440033787 +114385,1175,dark humor,1453125196 +114385,1175,dystopia,1453125199 +114385,4973,beautifully filmed,1453125155 +114385,4973,music,1453125161 +114385,4973,quirky,1453125148 +114385,48043,visually appealing,1453541567 +114385,79702,video games,1453245431 +114397,260,classic sci-fi,1438701719 +114397,356,funny,1438702144 +114397,356,goofy,1438702144 +114397,356,silly,1438702144 +114400,296,cult film,1426096546 +114400,296,trash,1426096546 +114400,296,violence,1426096546 +114416,260,action,1431691488 +114416,260,scifi,1431691432 +114428,260,haven't seen it,1443184992 +114428,260,Too old. showing its age,1443185044 +114430,110,action,1421460347 +114430,110,classic,1421460361 +114430,110,historical,1421460333 +114430,110,Medieval,1421460343 +114430,110,mel gibson,1421460328 +114430,110,Nudity (Topless),1421460367 +114430,110,Oscar (Best Cinematography),1421460354 +114430,110,Oscar (Best Picture),1421460351 +114430,110,Scotland,1421460340 +114430,110,war,1421460337 +114430,215,boring,1421462189 +114430,215,overrated,1421462187 +114430,215,slow paced,1421462191 +114430,296,anal,1421453342 +114430,296,hipster,1421453342 +114430,296,ldschoolcool,1421453342 +114430,441,drugs,1452540368 +114430,441,high school,1452540371 +114430,441,Milla Jovovich,1452540386 +114430,441,quirky,1452540373 +114430,593,asd,1422836954 +114430,593,asdasd,1422836954 +114430,593,sad,1422836954 +114430,1206,disturbing,1421460983 +114430,1206,masterpiece,1421461008 +114430,1206,overrated,1421461026 +114430,1206,pretentios,1421461035 +114430,1206,pretentious,1421461048 +114430,1206,psychological,1421461005 +114430,1206,psychology,1421460986 +114430,1206,social commentary,1421460992 +114430,1206,Surrealism,1421460976 +114430,1206,violent,1421460990 +114430,1653,beautiful,1421460787 +114430,1653,dystopic future,1421460777 +114430,1653,eugenics,1421460798 +114430,1653,genetic engineering,1421460763 +114430,1653,genetic selection,1421460775 +114430,1653,realistic sci/fi,1421460791 +114430,1653,visually appealing,1421460770 +114430,2028,disturbing,1421461163 +114430,2028,historical,1421461160 +114430,2028,Nazis,1421461193 +114430,2028,Tom Hanks,1421461156 +114430,2028,usa propaganda,1421461220 +114430,2288,sex,1421454782 +114430,4262,boys glorifying the anti-hero,1421461548 +114430,4262,com truise,1421461668 +114430,4262,highly overrated. Last ten minutes will do me fine.,1421461631 +114430,4262,incest,1421461615 +114430,4262,overrated,1421461601 +114430,4262,pretentious,1421461443 +114430,4262,seen more than once,1421461637 +114430,4308,musical,1421459848 +114430,4308,Sexualized violence,1421459859 +114430,4973,cult film,1421461882 +114430,4973,great soundtrack,1421461877 +114430,4973,idealism,1421461869 +114430,4973,romance,1421461872 +114430,4973,stylized,1421461884 +114430,6502,bad video quality,1421462539 +114430,6502,Cillian Murphy,1421462543 +114430,6502,low budget,1421462505 +114430,6502,vhs effect,1421462528 +114430,7360,Good remake,1421462564 +114430,7360,gory fun,1421462565 +114430,7360,post-apocalyptic,1421462569 +114430,7360,remake,1421462561 +114430,7361,comedy,1421461922 +114430,7361,jim carrey,1421461902 +114430,7361,philosophy,1421461908 +114430,7361,psychology,1421461924 +114430,7361,romance,1421461915 +114430,7361,sci-fi,1421461912 +114430,7361,surreal,1421461905 +114430,7361,thought-provoking,1421461898 +114430,8638,boring,1421462149 +114430,8638,overrated,1421462147 +114430,8638,slow paced,1421462151 +114430,45880,atmospheric,1421460062 +114430,45880,cinematography,1421460042 +114430,45880,great soundtrack,1421460045 +114430,45880,historical,1421460049 +114430,45880,nudity (rear),1421460059 +114430,45880,stylized,1421460054 +114430,48304,adventure,1421460422 +114430,48304,brutality,1421460411 +114430,48304,cinematography,1421460419 +114430,48304,gore,1421460428 +114430,48304,history,1421460407 +114430,48304,Mel Gibson,1421460433 +114430,48304,Native Americans,1421460425 +114430,48304,no logic,1421460458 +114430,48304,plot holes,1421460446 +114430,48304,suspense,1421460415 +114430,48304,unrealistic,1421460468 +114430,48304,violence,1421460417 +114430,52042,Nudity (Full Frontal - Notable),1422838284 +114430,52042,Nudity (Rear - Brief),1421459662 +114430,52042,Nudity (Topless - Notable),1421459637 +114430,52042,Nudity (Topless),1421459665 +114430,52042,Paul Verhoeven,1422838302 +114430,52042,resistance movement,1421459668 +114430,52042,sexy,1421459614 +114430,52042,World War II,1421459645 +114430,54503,drinking,1452540434 +114430,54503,Emma Stone,1452540424 +114430,54503,high school,1452540415 +114430,68157,Adolf Hitler,1421460892 +114430,68157,alternate history,1421460863 +114430,68157,assassination,1421460859 +114430,68157,black comedy,1421460880 +114430,68157,Christoph Waltz,1421460884 +114430,68157,dark comedy,1421460894 +114430,68157,dialogue,1421460899 +114430,68157,gore,1421460896 +114430,68157,gratuitous violence,1421460903 +114430,68157,Nazis,1421460866 +114430,68157,satire,1421460875 +114430,68157,vengeance,1421460919 +114430,68157,violence,1421460877 +114430,68157,visually appealing,1421460887 +114430,68157,World War II,1421460873 +114430,70286,aliens,1421460622 +114430,70286,atmospheric,1421460630 +114430,70286,genetics,1421460648 +114430,70286,gore,1421460699 +114430,70286,IMDB Top 250,1421460633 +114430,70286,scientifically inaccurate.,1421460711 +114430,70286,social commentary,1421460620 +114430,70286,Special Effects,1421460641 +114430,70286,swearing,1421460676 +114430,70286,unknown actors,1421460685 +114430,70286,unrealistic,1421460660 +114430,70286,violence,1421460628 +114430,72998,beautiful scenery,1421460209 +114430,72998,futuristic,1421460183 +114430,72998,graphic design,1421460199 +114430,72998,romance,1421460186 +114430,72998,sci-fi,1421460188 +114430,72998,visual,1421460195 +114430,72998,visually stunning,1421460201 +114430,74624,atheism,1423400914 +114430,74624,Rachel Weisz,1423400919 +114430,74624,rationality,1423400925 +114430,88129,atmospheric,1421459995 +114430,88129,cars,1421459960 +114430,88129,cinematography,1421459939 +114430,88129,crime,1421459943 +114430,88129,great soundtrack,1421459975 +114430,88129,little dialogue,1421459992 +114430,88129,Los Angeles,1421460002 +114430,88129,Nudity (Topless),1421460008 +114430,88129,Ryan Gosling,1421459950 +114430,88129,violence,1421459954 +114430,88129,visually appealing,1421459984 +114430,94466,not a movie,1421461286 +114430,94466,tv series,1421461275 +114430,94959,Bill Murray,1421461814 +114430,94959,Bruce Willis,1421461816 +114430,94959,cinematography,1421461842 +114430,94959,fantasy,1421461833 +114430,94959,funny,1421461822 +114430,94959,Jason Schwartzman,1421461829 +114430,94959,surreal,1421461820 +114430,94959,Wes Anderson,1421461803 +114430,94959,wilderness,1421461810 +114430,97752,bad plot,1421459823 +114430,97752,Halle Berry,1421459762 +114430,97752,multiple roles,1421459756 +114430,97752,multiple storylines,1421459741 +114430,97752,no logic,1421459791 +114430,97752,plot holes,1421459806 +114430,97752,pretentious,1421459708 +114430,97752,sci-fi,1421459734 +114430,97752,social criticism,1421459715 +114430,97752,Tom Hanks,1421459748 +114430,97752,unrealistic,1421461121 +114430,99114,brutal,1421460955 +114430,99114,Christoph Waltz,1421460949 +114430,99114,funny,1421460941 +114430,99114,Leonardo DiCaprio,1421460938 +114430,99114,Revenge,1421460944 +114430,99114,slavery,1421460935 +114430,99114,violent,1421460959 +114430,102407,beautiful,1421459884 +114430,102407,cinematography,1421459893 +114430,102407,Leonardo DiCaprio,1421459881 +114430,102407,Modern music,1421459896 +114430,102407,stylized,1421459889 +114430,104841,bad science,1421460749 +114430,104841,plot,1421460739 +114430,104841,visually appealing,1421460728 +114430,106920,artificial intelligence,1421462096 +114430,106920,bad plot,1421461978 +114430,106920,bittersweet,1421462081 +114430,106920,Human Computer Interaction,1421462074 +114430,106920,loneliness,1421462078 +114430,106920,meaning of life,1421462092 +114430,106920,original plot,1421462002 +114430,106920,philosophical,1421462072 +114430,106920,predictable,1421462021 +114430,106920,psychology,1421462084 +114430,106920,science fiction,1421462070 +114430,106920,technology fail,1421462056 +114430,106920,thought-provoking,1421462008 +114430,106920,toplist13,1421462040 +114430,106920,unrealistic,1421461937 +114430,106920,unrealistic use of A.I.,1421461971 +114430,107565,German slang,1422188998 +114430,109374,europe,1421461782 +114430,109374,funny,1421461767 +114430,109374,great dialogue,1421461777 +114430,109374,visually appealing,1421461765 +114430,109374,Wes Anderson,1421461788 +114430,109487,artificial intelligence,1421847759 +114430,109487,Christopher Nolan,1421847804 +114430,109487,good science,1421847814 +114430,109487,good science bad science,1421847748 +114430,109487,reviewed,1421847823 +114430,109487,unreal feelengs,1421847776 +114430,109487,wormhole,1421847798 +114430,111759,action,1421460238 +114430,111759,Emily Blunt,1421460231 +114430,111759,sci-fi,1421460254 +114430,111759,time loop,1421460243 +114430,111759,war,1421460250 +114430,113225,/b/,1422307933 +114430,113225,atheism,1422307887 +114430,113225,god is ded,1422307875 +114430,113225,nietzsche,1422307912 +114434,296,good music,1425133432 +114434,296,quentin tarantino,1425133432 +114434,296,style,1425133432 +114434,58559,Batman,1313837359 +114445,1704,Robin Williams,1449675459 +114467,260,"action, scifi",1440241171 +114467,260,classic sci-fi,1440241158 +114467,260,Science Fiction,1440241186 +114467,2028,action,1440243209 +114467,2028,World War II,1440243201 +114467,6539,action,1440241451 +114467,6539,comedy,1440241454 +114467,6539,fantasy,1440241463 +114467,33794,action,1440241510 +114467,33794,superhero,1440241514 +114467,68319,superhero,1440243378 +114467,68319,superpower,1440243383 +114467,87232,action,1440243319 +114467,87232,sci fi,1440243336 +114467,88140,action,1440243175 +114467,88140,comic book,1440243171 +114467,88140,superhero,1440243152 +114467,96417,action,1440243230 +114467,96417,bad cop,1440243242 +114467,96417,New York City,1440243255 +114516,260,Sci-Fi,1299082133 +114519,7153,Adventure,1438561515 +114519,7153,atmospheric,1438561518 +114519,7153,fantasy,1438561504 +114519,7153,high fantasy,1438561510 +114551,260,cult classic,1442235417 +114551,260,EPIC,1442235435 +114551,260,Science Fiction,1442235414 +114551,260,scifi cult,1442235420 +114595,106696,children,1428800403 +114595,106696,disney,1428800403 +114595,106696,musical,1428800403 +114639,8948,remake,1221421561 +114639,44195,dark humor,1241984490 +114639,44195,satire,1241984485 +114639,63131,Kiss,1244308885 +114639,63131,Paul Rudd,1244308881 +114639,64620,awesome performance,1241984512 +114639,66934,Awesome,1244308931 +114639,66934,Captain Hammer,1244308952 +114639,66934,Dr. Horrible,1244308938 +114639,66934,Neil Patrick Harris,1244308926 +114639,68205,amy smart,1241984462 +114639,68205,fast paced,1241984442 +114639,68205,fun,1241984438 +114639,68205,gore,1241984433 +114639,68205,jason statham,1241984424 +114639,68205,stupid,1241984449 +114639,68205,unrealistic,1241984455 +114639,68358,fast paced,1241984386 +114639,68358,spock,1241984376 +114639,68358,star trek,1241984371 +114639,68791,arnold cgi,1244308831 +114639,68791,cgi,1244308790 +114639,68791,Christian Bale,1244308815 +114639,68791,fallout taste,1244308824 +114639,68791,no blood,1244308795 +114687,32,Brad Pitt,1245018551 +114687,32,Bruce Willis,1245018549 +114687,32,dystopia,1245018563 +114687,32,end of the world,1245018561 +114687,32,Post apocalyptic,1245018559 +114687,32,sci-fi,1245018556 +114687,32,time travel,1245018554 +114687,32,twist ending,1245018553 +114687,47,biblical,1245016433 +114687,47,Brad Pitt,1245016416 +114687,47,disturbing,1245016431 +114687,47,Kevin Spacey,1245016421 +114687,47,Morgan Freeman,1245016419 +114687,47,powerful ending,1245016423 +114687,47,religion,1245016451 +114687,47,serial killer,1245016425 +114687,47,twist ending,1245016427 +114687,50,Benicio Del Toro,1245015871 +114687,50,ensemble cast,1245015880 +114687,50,flashbacks,1245015882 +114687,50,Kevin Spacey,1245015869 +114687,50,mindfuck,1245015859 +114687,50,twist ending,1245015855 +114687,111,atmospheric,1245016004 +114687,111,cult film,1245016014 +114687,111,disturbing,1245015997 +114687,111,forceful,1245016006 +114687,111,grim,1245016000 +114687,111,Jodie Foster,1245016031 +114687,111,Martin Scorsese,1245016008 +114687,111,New York City,1245016016 +114687,111,Robert De Niro,1245016010 +114687,111,vigilantism,1245016041 +114687,235,Bill Murray,1245017567 +114687,235,black and white,1245017574 +114687,235,film noir,1245017571 +114687,235,Johnny Depp,1245017558 +114687,235,Martin Landau,1245017579 +114687,235,Oscar (Best Supporting Actor),1245017560 +114687,235,quirky,1245017586 +114687,235,Sarah Jessica Parker,1245017564 +114687,235,Tim Burton,1245017556 +114687,235,witty,1245017593 +114687,260,action,1245016117 +114687,260,aliens,1245016112 +114687,260,fantasy,1245016120 +114687,260,Harrison Ford,1245016114 +114687,260,old FX quality,1245016126 +114687,260,original plot,1245016137 +114687,260,robots,1245016106 +114687,260,sci-fi,1245016108 +114687,260,space,1245016102 +114687,296,Bruce Willis,1245016719 +114687,296,crime,1245016713 +114687,296,dark comedy,1245016704 +114687,296,drugs,1245016730 +114687,296,multiple storylines,1245016706 +114687,296,Quentin Tarantino,1245016697 +114687,296,Samuel L. Jackson,1245016695 +114687,296,stylized,1245016724 +114687,296,violence,1245016722 +114687,318,based on a book,1245016406 +114687,318,Morgan Freeman,1245016360 +114687,318,prison,1245016362 +114687,318,Stephen King,1245016353 +114687,318,thought-provoking,1245016358 +114687,318,twist ending,1245016355 +114687,527,based on a true story,1245016487 +114687,527,black and white,1245016489 +114687,527,disturbing,1245016494 +114687,527,Holocaust,1245016478 +114687,527,Nazis,1245016480 +114687,527,Steven Spielberg,1245016468 +114687,527,World War II,1245016472 +114687,593,Anthony Hopkins,1245016258 +114687,593,cannibalism,1245016302 +114687,593,crime,1245016300 +114687,593,Hannibal Lecter,1245016249 +114687,593,Jodie Foster,1245016260 +114687,593,psychology,1245016256 +114687,593,serial killer,1245016252 +114687,593,violent,1245016254 +114687,608,black comedy,1245017452 +114687,608,Coen Brothers,1245017457 +114687,608,crime gone awry,1245017468 +114687,608,dark comedy,1245017456 +114687,608,kidnapping,1245017474 +114687,608,Minnesota,1245017476 +114687,608,murder,1245017480 +114687,608,quirky,1245017460 +114687,608,strong female,1245017463 +114687,608,violent,1245017487 +114687,608,witty,1245017485 +114687,750,black comedy,1245017664 +114687,750,classic,1245017678 +114687,750,cold war,1245017675 +114687,750,cynical,1245017683 +114687,750,dark comedy,1245017661 +114687,750,hilarious,1245017697 +114687,750,nuclear war,1245017659 +114687,750,Peter Sellers,1245017713 +114687,750,satire,1245017668 +114687,750,Stanley Kubrick,1245017657 +114687,750,war,1245017673 +114687,858,Al Pacino,1245017231 +114687,858,based on a book,1245017255 +114687,858,classic,1245017253 +114687,858,crime,1245017251 +114687,858,organized crime,1245017244 +114687,903,Alfred Hitchcock,1245015816 +114687,903,James Stewart,1245015822 +114687,903,switching places,1245015840 +114687,912,atmospheric,1245018149 +114687,912,classic,1245018151 +114687,912,Film Noir,1245018146 +114687,912,Nazis,1245018155 +114687,912,Oscar (Best Picture),1245018158 +114687,912,romance,1245018160 +114687,912,war,1245018164 +114687,912,World War II,1245018142 +114687,923,Amazing Cinematography,1245018094 +114687,923,atmospheric,1245018127 +114687,923,Biography,1245018130 +114687,923,classic,1245018102 +114687,923,enigmatic,1245018111 +114687,923,mystery,1245018118 +114687,923,Orson Welles,1245018104 +114687,923,Oscar (Best Writing - Screenplay Written Directly for the Screen),1245018106 +114687,1089,cult film,1245016514 +114687,1089,ensemble cast,1245016512 +114687,1089,heist,1245016541 +114687,1089,humorous,1245016510 +114687,1089,low budget,1245016543 +114687,1089,nonlinear,1245016507 +114687,1089,Quentin Tarantino,1245016503 +114687,1089,violence,1245016527 +114687,1104,DVD,1202254806 +114687,1129,DivX,1202255616 +114687,1190,DVD,1202254747 +114687,1193,based on a book,1245016793 +114687,1193,depressing,1245016798 +114687,1193,Jack Nicholson,1245016789 +114687,1193,mental illness,1245016804 +114687,1193,Oscar (Best Actor),1245016784 +114687,1193,psychology,1245016811 +114687,1196,fantasy,1245016066 +114687,1196,George Lucas,1245016051 +114687,1196,Harrison Ford,1245016054 +114687,1196,robots,1245016092 +114687,1196,sci-fi,1245016071 +114687,1196,sequel,1245016074 +114687,1196,space,1245016090 +114687,1199,DivX,1202255581 +114687,1201,American Civil War,1245017166 +114687,1201,BOUNTY HUNTERS,1245017135 +114687,1201,Clint Eastwood,1245017133 +114687,1201,complex characters,1245017143 +114687,1201,Ennio Morricone,1245017130 +114687,1201,humorous,1245017149 +114687,1201,quirky,1245017151 +114687,1201,Sergio Leone,1245017128 +114687,1201,spaghetti western,1245017147 +114687,1203,classic,1245018590 +114687,1203,courtroom drama,1245018583 +114687,1203,ensemble cast,1245018593 +114687,1203,ethnic conflict,1245018595 +114687,1203,forceful,1245018600 +114687,1203,good dialogue,1245018581 +114687,1203,racism,1245018578 +114687,1203,social commentary,1245018602 +114687,1206,atmospheric,1245018070 +114687,1206,cult film,1245018032 +114687,1206,disturbing,1245018078 +114687,1206,dystopia,1245018018 +114687,1206,narrated,1245018024 +114687,1206,Nudity (Full Frontal),1245018057 +114687,1206,Sexualized violence,1245018045 +114687,1206,Stanley Kubrick,1245018022 +114687,1206,stylized,1245018042 +114687,1206,violence,1245018040 +114687,1208,classic,1245018426 +114687,1208,Dark,1245018428 +114687,1208,disturbing,1245018386 +114687,1208,Golden Palm,1245018393 +114687,1208,hallucinatory,1245018391 +114687,1208,military,1245018436 +114687,1208,surreal,1245018424 +114687,1208,Vietnam,1245018388 +114687,1208,Vietnam war,1245018384 +114687,1208,violent,1245018405 +114687,1208,war,1245018407 +114687,1209,Ennio Morricone,1245016827 +114687,1209,Henry Fonda,1245016834 +114687,1209,Sergio Leone,1245016823 +114687,1209,Spaghetti Western,1245016844 +114687,1209,stylized,1245016867 +114687,1212,atmospheric,1245015947 +114687,1212,black and white,1245015978 +114687,1212,classic,1245015957 +114687,1212,great cinematography,1245015954 +114687,1212,Orson Welles,1245015941 +114687,1221,Al Pacino,1245017194 +114687,1221,classic,1245017212 +114687,1221,dysfunctional family,1245017216 +114687,1221,guns,1245017213 +114687,1221,mafia,1245017202 +114687,1221,organized crime,1245017204 +114687,1221,Robert De Niro,1245017191 +114687,1221,sequel,1245017210 +114687,1222,military,1245017307 +114687,1222,Stanley Kubrick,1245017277 +114687,1222,suicide,1245017300 +114687,1222,Vietnam,1245017274 +114687,1222,war,1245017294 +114687,1248,atmospheric,1245015925 +114687,1248,bleak,1245015928 +114687,1248,Charlton Heston,1245015906 +114687,1248,disturbing,1245015919 +114687,1248,Janet Leigh,1245015909 +114687,1248,Orson Welles,1245015904 +114687,1250,Alec Guiness,1245018220 +114687,1250,Catchy Score,1245018236 +114687,1250,classic,1245018231 +114687,1250,David Lean,1245018234 +114687,1250,delights,1245018319 +114687,1250,Oscar (Best Actor),1245018229 +114687,1250,war,1245018253 +114687,1250,William Holden,1245018224 +114687,1250,World War II,1245018222 +114687,1258,atmospheric,1245016330 +114687,1258,cult film,1245016332 +114687,1258,disturbing,1245016335 +114687,1258,Horror,1245016338 +114687,1258,Jack Nicholson,1245016317 +114687,1258,Nudity (Full Frontal),1245016327 +114687,1258,Stanley Kubrick,1245016315 +114687,1258,Stephen King,1245016319 +114687,1304,humorous,1245157200 +114687,1304,Paul Newman,1245157194 +114687,1304,Robert Redford,1245157190 +114687,1304,western,1245157196 +114687,1387,classic,1245017059 +114687,1387,monster,1245017064 +114687,1387,music,1245017067 +114687,1387,ominous,1245017048 +114687,1387,scary,1245017077 +114687,1387,shark,1245017037 +114687,1387,Steven Spielberg,1245017039 +114687,1617,Crime,1245016984 +114687,1617,Curtis Hanson,1245016978 +114687,1617,Danny DeVito,1245016976 +114687,1617,film noir,1245016988 +114687,1617,Guy Pearce,1245016959 +114687,1617,James Cromwell,1245016966 +114687,1617,Kevin Spacey,1245016958 +114687,1617,Kim Basinger,1245016972 +114687,1617,Russell Crowe,1245016954 +114687,1732,bowling,1245156647 +114687,1732,Coen Brothers,1245156598 +114687,1732,dark comedy,1245156705 +114687,1732,Jeff Bridges,1245156686 +114687,1732,John Goodman,1245156686 +114687,1732,John Turturro,1245156686 +114687,1732,Julianne Moore,1245156695 +114687,1732,Steve Buscemi,1245156686 +114687,2004,Joe Dante,1245155691 +114687,2004,Wacky,1245155694 +114687,2019,DVD,1202254788 +114687,2067,DVD,1202254762 +114687,2318,want to see again,1198237536 +114687,2324,heartwarming,1245016926 +114687,2324,Holocaust,1245016918 +114687,2324,Oscar (Best Actor),1245016923 +114687,2324,Oscar (Best Foreign Language Film),1245016936 +114687,2324,tearjerking,1245016943 +114687,2324,World War II,1245016915 +114687,2329,disturbing,1245018465 +114687,2329,Edward Norton,1245018447 +114687,2329,holocaust,1245018467 +114687,2329,Neo-Nazis,1245018478 +114687,2329,powerful ending,1245018460 +114687,2329,prison,1245018458 +114687,2329,racism,1245018452 +114687,2329,skinhead,1245018470 +114687,2329,thought-provoking,1245018454 +114687,2420,DivX,1202255722 +114687,2858,coming of age,1245018524 +114687,2858,dark comedy,1245018521 +114687,2858,Kevin Spacey,1245018501 +114687,2858,Oscar (Best Actor),1245018504 +114687,2858,Oscar (Best Picture),1245018508 +114687,2858,powerful ending,1245018511 +114687,2959,based on a book,1245017432 +114687,2959,Brad Pitt,1245017400 +114687,2959,dark comedy,1245017429 +114687,2959,Edward Norton,1245017398 +114687,2959,mental illness,1245017404 +114687,2959,philosophy,1245017420 +114687,2959,psychology,1245017427 +114687,2959,satirical,1245017412 +114687,2959,social commentary,1245017410 +114687,2959,TERRORISM,1245017427 +114687,2959,twist ending,1245017402 +114687,2959,violence,1245017441 +114687,2997,Cameron Diaz,1245156515 +114687,2997,Charlie Kaufman,1245156505 +114687,2997,dark comedy,1245156520 +114687,2997,John Cusack,1245156527 +114687,2997,John Malkovich,1245156499 +114687,2997,off-beat comedy,1245156525 +114687,2997,surreal,1245156522 +114687,2997,weird,1245156529 +114687,3275,Boston,1245156798 +114687,3275,Irish,1245156789 +114687,3275,Mission From God,1245156816 +114687,3275,Sean Patrick Flanery,1245156796 +114687,3275,stylized,1245156834 +114687,3275,vigilantism,1245156794 +114687,3275,Willem Dafoe,1245156785 +114687,3681,Clint Eastwood,1245017366 +114687,3681,Ennio Morricone,1245017326 +114687,3681,Lee Van Cleef,1245017338 +114687,3681,Sergio Leone,1245017324 +114687,3681,spaghetti western,1245017349 +114687,3791,DivX,1202255639 +114687,3947,DivX,1202255657 +114687,3949,addiction,1245016580 +114687,3949,dark,1245016584 +114687,3949,depressing,1245016562 +114687,3949,disturbing,1245016564 +114687,3949,drugs,1245016589 +114687,3949,independent film,1245016592 +114687,3949,prostitution,1245016599 +114687,3949,social commentary,1245016603 +114687,3996,beautiful,1245017910 +114687,3996,china,1245017908 +114687,3996,colourful,1245017913 +114687,3996,dreamlike,1245017901 +114687,3996,Kung Fu,1245017899 +114687,3996,martial arts,1245017905 +114687,3996,Myth,1245017915 +114687,3996,sword fighting,1245017930 +114687,4226,cerebral,1245016896 +114687,4226,cult film,1245016893 +114687,4226,Mindfuck,1245016880 +114687,4226,nonlinear,1245016882 +114687,4226,psychological,1245016886 +114687,4226,short-term memory loss,1245016888 +114687,4226,stylized,1245016907 +114687,4226,twist ending,1245016884 +114687,4262,DivX,1202255706 +114687,4878,dreamlike,1245017765 +114687,4878,enigmatic,1245017785 +114687,4878,hallucinatory,1245017762 +114687,4878,imaginary friend,1245017760 +114687,4878,maggie gyllenhaal,1245017770 +114687,4878,mindfuck,1245017758 +114687,4878,mystery,1245017788 +114687,4878,psychology,1245017768 +114687,4878,quirky,1245017751 +114687,4878,sci-fi,1245017755 +114687,4878,surreal,1245017749 +114687,4878,time travel,1245017747 +114687,4973,feel-good,1245155734 +114687,4973,idealism,1245155825 +114687,4973,love,1245155825 +114687,4973,quirky,1245155724 +114687,4973,surreal,1245155726 +114687,5291,Akira Kurosawa,1245016655 +114687,5291,black and white,1245016660 +114687,5291,enigmatic,1245016663 +114687,5291,multiple storylines,1245016667 +114687,5291,nonlinear,1245016671 +114687,5291,rape,1245016673 +114687,5291,samurai,1245016680 +114687,5291,Toshiro Mifune,1245016677 +114687,5669,9/11,1245018346 +114687,5669,anti-Bush,1245018340 +114687,5669,documentary,1245018357 +114687,5669,Michael Moore,1245018335 +114687,5669,Oscar (Best Documentary Feature),1245018348 +114687,5669,violence in america,1245018353 +114687,5995,Adrien Brody,1245016749 +114687,5995,holocaust,1245016745 +114687,5995,Nazis,1245016758 +114687,5995,Poland,1245016763 +114687,5995,World War II,1245016743 +114687,6669,DivX,1202255668 +114687,7011,DVD,1202255448 +114687,7361,Charlie Kaufman,1245017512 +114687,7361,comedy,1245017546 +114687,7361,cult film,1245017521 +114687,7361,imagination,1245017527 +114687,7361,Jim Carrey,1245017514 +114687,7361,love,1245017529 +114687,7361,memory,1245017531 +114687,7361,nonlinear,1245017533 +114687,7361,philosophy,1245017535 +114687,7361,sci-fi,1245017537 +114687,7361,surreal,1245017516 +114687,7361,thought-provoking,1245017518 +114687,7410,Rutger Hauer,1243605608 +114687,7438,atmospheric,1245017018 +114687,7438,Japan,1245017014 +114687,7438,kung fu,1245017012 +114687,7438,Quentin Tarantino,1245017003 +114687,7438,revenge,1245017022 +114687,7438,stylized,1245017025 +114687,7438,violence,1245017023 +114687,7925,DivX,1202255687 +114687,26258,DVD,1202254672 +114687,26693,Stephen King,1243605597 +114687,27317,DivX,1202255539 +114687,30749,Africa,1245017101 +114687,30749,depressing,1245017111 +114687,30749,ethnic conflict,1245017109 +114687,30749,genocide,1245017103 +114687,30749,Jean Reno,1245017098 +114687,30749,journalism,1245017095 +114687,30749,racism,1245017118 +114687,30749,true story,1245017107 +114687,30749,United Nations,1245017091 +114687,30749,war,1245017116 +114687,32587,adapted from:comic,1245016212 +114687,32587,Bruce Willis,1245016201 +114687,32587,multiple storylines,1245016205 +114687,32587,narrated,1245016207 +114687,32587,Quentin Tarantino,1245016199 +114687,32587,Rutger Hauer,1245016209 +114687,32587,stylized,1245016225 +114687,32587,violence,1245016221 +114687,33166,Brendan Fraser,1245017996 +114687,33166,confrontational,1245017999 +114687,33166,ensemble cast,1245017962 +114687,33166,multiple storylines,1245017983 +114687,33166,racism,1245017977 +114687,33166,relationships,1245017974 +114687,33166,Sandra Bullock,1245017960 +114687,33166,social commentary,1245017969 +114687,34437,Bill Murray,1245156913 +114687,34437,downbeat,1245156954 +114687,34437,Jim Jarmusch,1245156925 +114687,34437,open ended endings,1245156938 +114687,34437,Sharon Stone,1245156922 +114687,34437,Tilda Swinton,1245156927 +114687,48783,DVD,1202254701 +114687,50872,animation,1245016643 +114687,50872,funny,1245016640 +114687,50872,paris,1245016632 +114687,50872,pixar,1245016619 +114687,51638,DivX,1202255739 +114687,54910,Robert Englund,1243605549 +114687,54997,Christian Bale,1203183210 +114687,54997,DivX,1202255557 +114687,58559,Batman,1245017826 +114687,58559,Christian Bale,1245017824 +114687,58559,Comic Book adaption,1245017833 +114687,58559,dark,1245017865 +114687,58559,Gary Oldman,1245017820 +114687,58559,gritty,1245017862 +114687,58559,Heath Ledger,1245017816 +114687,58559,Maggie Gyllenhaal,1245017818 +114687,58559,Michael Caine,1245017840 +114687,58559,murder,1245017860 +114687,58559,Oscar (Best Supporting Actor),1245017842 +114687,58559,serial killer,1245017847 +114687,58559,superhero,1245017853 +114687,58559,violent,1245017850 +114687,60069,dystopia,1245015784 +114687,60069,pixar,1245015747 +114687,60069,robots,1245015793 +114687,60069,social commentary,1245015800 +114687,66652,Eddie Griffin,1245015283 +114687,66652,Steven Seagal,1245015287 +114687,67087,bromantic,1251637319 +114687,67087,Jaime Pressly,1251637329 +114687,67087,Jason Segel,1251637344 +114687,67087,lack of friends,1251637345 +114687,67087,Paul Rudd,1251637331 +114687,68157,alternate history,1252353435 +114687,68157,Brad Pitt,1252353427 +114687,68157,Christoph Waltz,1252353419 +114687,68157,dialogue,1252353432 +114687,68157,Quentin Tarantino,1252353422 +114687,71464,Jewish,1260065127 +114709,1704,mathematics,1298211597 +114715,260,Epic,1439789355 +114715,260,Science Fiction,1439789309 +114719,3671,parody,1403004267 +114719,104875,music,1382308492 +114721,339,boring,1138354791 +114721,339,sandra 'boring' bullock,1138354842 +114721,1089,brutal,1137876441 +114721,1089,honest,1137876441 +114721,1089,mexican stand off,1138091650 +114721,1089,Tarantino,1137876441 +114721,1209,ennio morricone,1138354598 +114721,1209,italo western,1138354598 +114721,1209,sergio leone,1138354598 +114721,1927,world war I,1138355116 +114721,2046,boring 80's movie,1138355153 +114721,2826,overrated,1138355077 +114721,3142,ahem...,1140622349 +114721,3255,alcohol,1138354771 +114721,3255,boring,1138354771 +114721,3255,madonna,1138354771 +114721,3255,tom hanks,1138354771 +114721,3255,World War II,1138354771 +114721,3262,lynch,1140622338 +114721,3262,maclachlan,1140622338 +114721,3262,where is the one and only kyle maclachlan?,1140622338 +114721,3396,kermit,1138355026 +114721,3396,not exactly a blockbuster,1138355026 +114721,4848,scaring greatSoundtrack davidLynch angeloBadalamenti thriller,1137407960 +114721,5418,boring,1138354829 +114721,5418,matt 'overrated' damon,1138354829 +114721,5785,simply: why???,1140622165 +114721,5956,scorsese is god but this movie really sucks,1138354909 +114721,6537,cyborg,1138354941 +114721,6537,fun,1138354941 +114721,7247,classic,1138354646 +114721,7247,funny,1138354646 +114721,7247,music,1138354646 +114721,7361,forgetting,1137492083 +114721,7361,how would life be,1137492083 +114721,7361,life,1137492083 +114721,7361,love,1137492083 +114721,7361,memory,1137492083 +114721,8636,marvel,1138091448 +114721,8917,ha ha ha,1140621989 +114721,8917,hilarious,1140621989 +114721,8917,not exactly pc,1140621989 +114721,30810,Bill Murray,1137408115 +114721,30810,excellent,1137408115 +114721,30810,funny,1137408115 +114721,30810,great,1137408115 +114721,30810,ocean,1137408115 +114721,30810,perfect,1137408115 +114721,30810,unbelievable,1137408115 +114721,30810,Wes Anderson,1137408115 +114736,541,dystopian,1163268169 +114736,541,sci-fi,1163268148 +114736,1748,dystopia,1163268233 +114736,1748,sci-fi,1163268228 +114736,3503,sci-fi,1163271095 +114736,5881,sci-fi,1163271087 +114736,6539,pirates,1163268023 +114758,353,comic book,1154632000 +114758,735,comic book,1154632041 +114758,839,comic book,1154632017 +114758,3563,comic book,1154632021 +114758,6373,A solid three-star film. Well done everyone!,1202815442 +114758,6754,tripe,1139868194 +114758,8533,beautiful scenery,1325440215 +114758,8533,manipulative,1325440215 +114758,8533,riddled with cliché,1325440215 +114758,8533,Well acted,1325440216 +114758,27772,an incomprehensible bucket of bollocks,1157815856 +114758,54272,crikey is that a penis?,1185649142 +114758,58297,Schizophrenic,1208281651 +114758,72737,bland characters,1323943187 +114758,72737,patronising,1323943187 +114758,72737,unrealistic depiction of race relationships,1323943187 +114758,79402,biopic,1438516054 +114758,79402,sad but good,1438516054 +114758,79402,tragic drama.,1438516054 +114758,94466,tv series,1337829299 +114764,39414,based on a book,1441927771 +114764,141884,"Christmas, Dicken's",1441489316 +114769,54745,quirky,1330243353 +114813,10,007,1369448870 +114813,10,dark,1369448990 +114813,10,espionage,1369448883 +114813,10,funny,1369448983 +114813,10,good dialogue,1369448889 +114813,10,James Bond,1369448874 +114813,10,Memorable Characters,1369448920 +114813,10,memorable lines,1369448930 +114813,10,one-liners,1369448899 +114813,10,sexuality,1369448943 +114813,165,action packed,1369448277 +114813,165,John McClane,1369448314 +114813,165,plot point:solving riddles/puzzles,1369448295 +114813,165,thriller,1369448285 +114813,165,violent,1369448287 +114813,198,rape,1400561574 +114813,337,bittersweet,1369449576 +114813,337,creepy,1369449554 +114813,337,depressing,1369449570 +114813,337,dysfunctional family,1369449549 +114813,337,quirky,1369449546 +114813,337,small town,1369449591 +114813,337,whimsical,1369449599 +114813,599,bleak,1369801204 +114813,599,complex morality,1369801174 +114813,599,cynical,1369801198 +114813,599,melancholy,1369801195 +114813,599,ONE LAST HEIST,1369801188 +114813,599,tense,1369801185 +114813,599,violence,1369801182 +114813,648,confusing,1369447908 +114813,648,Tom Cruise,1369447901 +114813,899,comedy,1369437126 +114813,899,history,1369437231 +114813,899,modern dance,1369437210 +114813,899,movie business,1369437220 +114813,899,musical,1369437169 +114813,899,old-timey,1369437123 +114813,899,songs,1369437159 +114813,899,tap dance,1369437123 +114813,914,ambiguous ending,1369437321 +114813,914,clever,1369437275 +114813,914,funny,1369437297 +114813,914,Memorable Characters,1369437286 +114813,914,music,1369437283 +114813,914,Musical,1369437281 +114813,914,unconvincing romance,1369437309 +114813,920,American Civil War,1369436478 +114813,920,anti-romantic ending,1369436537 +114813,920,historical,1369436598 +114813,920,long,1369436620 +114813,920,War,1369436606 +114813,923,biopic,1400561814 +114813,923,dull,1400561774 +114813,1029,bullying,1369799983 +114813,1029,evil humans,1369800151 +114813,1029,friendship,1369800004 +114813,1029,mother-son relationship,1369799974 +114813,1029,overcoming fears,1369799994 +114813,1029,power of belief,1369799997 +114813,1029,sweet,1369800000 +114813,1036,action,1369435608 +114813,1036,humorous,1369435599 +114813,1036,tense,1369435623 +114813,1186,creepy,1400562596 +114813,1186,masturbation,1400562584 +114813,1283,gunfight,1369801331 +114813,1283,hopelessness,1369801584 +114813,1283,slow,1369801340 +114813,1283,tense,1369801333 +114813,1947,anti-romantic ending,1369437559 +114813,1947,dance,1369437582 +114813,1947,funny,1369437650 +114813,1947,interracial romance,1369437622 +114813,1947,music,1369437578 +114813,1947,musical,1369437591 +114813,1947,overdramatic,1369437641 +114813,1947,racism,1369437602 +114813,1947,romeo and juliet,1369437612 +114813,1947,stupid main character,1369437575 +114813,2000,action,1369435490 +114813,2000,buddy,1369435437 +114813,2000,comedy,1369435444 +114813,2000,humor,1369435471 +114813,2000,inner turmoil,1369448624 +114813,2000,kidnapping,1369435497 +114813,2000,Mel Gibson,1369435456 +114813,2000,Nudity (Topless),1369435447 +114813,2000,suffering protagonist,1369448722 +114813,2001,Mel Gibson,1369448354 +114813,2001,Nudity (Topless),1369448349 +114813,2099,animation & live action interact (scene),1369799851 +114813,2099,controversial,1369799805 +114813,2099,hard to find,1369799797 +114813,2099,Musical,1369799823 +114813,2099,racial stereotype,1369799791 +114813,2291,creepy,1369449292 +114813,2291,dark,1369449376 +114813,2291,dreamlike,1369449352 +114813,2291,fairy tale,1369449390 +114813,2291,funny,1369449358 +114813,2291,quirky,1369449303 +114813,2291,surreal,1369449372 +114813,2291,unbelievable,1369449335 +114813,2291,unusual,1369449315 +114813,2291,weird,1369449292 +114813,2403,action,1369448767 +114813,2403,no reason for what is happening,1369448740 +114813,2403,simple plot,1369448783 +114813,2403,small town,1369448773 +114813,2403,tense,1369448758 +114813,2403,violence,1369448763 +114813,2424,comedy,1400562087 +114813,2424,love story,1400562090 +114813,2424,romance,1400562085 +114813,2424,romantic comedy,1400562092 +114813,2424,Tom Hanks,1400562101 +114813,2565,character development,1369437416 +114813,2565,character dies,1369437409 +114813,2565,emotional,1369437360 +114813,2565,music,1369437341 +114813,2565,musical,1369437338 +114813,3176,creepy,1369449998 +114813,3176,crime,1369450001 +114813,3176,dark,1369450103 +114813,3176,disturbing,1369449977 +114813,3176,excessive violence,1369450015 +114813,3176,gory,1369450049 +114813,3176,obsession,1369449990 +114813,4785,bleak,1369801795 +114813,4785,depressing,1369801828 +114813,4785,main character dies,1369801845 +114813,4785,snow,1369801869 +114813,4785,spaghetti western,1369801789 +114813,4993,awkward romance,1369436408 +114813,4993,badass,1369436367 +114813,4993,believable world,1369436302 +114813,4993,ensemble cast,1369436275 +114813,4993,epic,1369436275 +114813,4993,great soundtrack,1369436453 +114813,4993,montage,1369436393 +114813,4993,mysterious stranger,1369436446 +114813,5975,epic,1400561864 +114813,5975,romance,1400561872 +114813,5991,jazz,1369438282 +114813,5991,main character dislikeable,1369438317 +114813,5991,Richard Gere,1369438335 +114813,5991,sex scenes,1369438275 +114813,6051,atmospheric,1370240315 +114813,6051,bleak,1370240296 +114813,6051,reggae,1370240330 +114813,6051,tense,1370240309 +114813,6527,French Revolution,1369436855 +114813,6527,revenge as motive,1369436874 +114813,6527,witty,1369436855 +114813,6527,wordplay,1369436861 +114813,6539,adventure,1369435389 +114813,6539,funny,1369435384 +114813,7309,Douglas Fairbanks Sr,1369437035 +114813,7309,swashbuckler,1369437018 +114813,7614,music,1369437463 +114813,7614,musical,1369437468 +114813,7614,Rogers and Hammerstein,1369437453 +114813,7614,small-scale,1369437490 +114813,7614,witty,1369437448 +114813,8167,adventure,1369436678 +114813,8167,Errol Flynn,1369436675 +114813,8167,fencing,1369436690 +114813,8167,seafaring,1369436681 +114813,8167,swashbuckler,1369436667 +114813,8167,sword fight,1369436671 +114813,25866,Errol Flynn,1369436736 +114813,25866,rousing,1369436742 +114813,25866,shirtless scene,1369436944 +114813,25866,sweeping,1369436745 +114813,25866,unhistorical,1369436750 +114813,33162,confusing,1369438002 +114813,33162,gore,1369437959 +114813,33162,history,1369438006 +114813,33162,slow motion,1369437952 +114813,33162,unnecessary nudity,1369437983 +114813,38061,black comedy,1369435679 +114813,38061,crude humor,1369435696 +114813,38061,funny,1369435682 +114813,38061,good dialogue,1369435670 +114813,38061,horrible accident,1400562044 +114813,38061,Robert Downey Jr.,1369435663 +114813,38061,witty,1369435717 +114813,48394,disturbing,1369800906 +114813,48394,excessive violence,1369800858 +114813,48394,gore,1369800858 +114813,48394,surreal,1369800830 +114813,48394,tension,1369800958 +114813,48394,violence,1369800833 +114813,51662,Ancient Greece,1369437900 +114813,51662,computer animation,1369437824 +114813,51662,hideous creatures,1369437925 +114813,51662,Nudity (Topless),1369437851 +114813,51662,rape,1369437809 +114813,51662,unnecessary gore,1369437874 +114813,51662,unnecessary nudity,1369437870 +114813,54997,character development,1369438776 +114813,54997,Christian Bale,1369438833 +114813,54997,gore,1369438738 +114813,54997,main character dies,1369438830 +114813,54997,Nudity (Topless),1369438795 +114813,54997,relentless,1369438873 +114813,54997,Russell Crowe,1369438836 +114813,54997,violent,1369438841 +114813,54997,western,1369438848 +114813,56367,coming of age,1369438511 +114813,56367,one-liners,1369438541 +114813,56367,quirky,1369438568 +114813,56367,slow,1369438499 +114813,56367,small town,1369438505 +114813,56367,teen pregnancy,1369438438 +114813,56367,teen romance,1369438557 +114813,59315,character growth,1369436141 +114813,59315,Iron Man,1369436093 +114813,59315,Robert Downey Jr.,1369436085 +114813,59315,Tony Stark,1369436090 +114813,61026,based on a true story,1369438057 +114813,61026,China,1369438064 +114813,61026,Epic,1369438042 +114813,61026,Takeshi Kaneshiro,1369438052 +114813,61026,too many characters,1369438103 +114813,61026,war tactics,1369438149 +114813,77561,Iron Man,1369436058 +114813,77561,lack of character depth,1369436024 +114813,77561,Robert Downey Jr.,1369435927 +114813,77561,Tony Stark,1369436065 +114813,81537,drug use,1369799534 +114813,81537,marijuana,1369799540 +114813,81537,masturbation,1369799548 +114813,81537,Robert Downey Jr.,1369799552 +114813,89904,black and white,1400561652 +114813,89904,cinematography,1400561675 +114813,89904,emotional,1400561699 +114813,89904,Hollywood,1400561637 +114813,89904,Jean Dujardin,1400561647 +114813,89904,silent to talkie transition,1400561632 +114813,89904,visually appealing,1400561669 +114813,91630,action,1369448001 +114813,91630,cool gadgets,1369447997 +114813,91630,Tom Cruise,1369447985 +114813,102125,bad science,1369435873 +114813,102125,humorous twist,1369435830 +114813,102125,humour,1369435795 +114813,102125,Iron Man,1369435908 +114813,102125,Robert Downey Jr.,1369435777 +114813,102125,suffering protagonist,1369448688 +114813,102125,superhero,1369435804 +114813,103980,acting,1400561467 +114813,103980,depressing,1400561460 +114813,106766,cats,1400561405 +114813,106766,depressing,1400561384 +114813,106766,period piece,1400561390 +114813,110102,superhero,1400561316 +114833,480,implausible,1436634363 +114833,480,sci-fi,1436634363 +114833,480,thriller,1436634363 +114833,6291,to-rent,1149036404 +114833,6954,to-rent,1149035824 +114833,8121,to-rent,1149036234 +114833,9018,to-rent,1149036047 +114833,27834,to-rent,1149036278 +114833,38061,to-rent,1149035752 +114833,40583,to-rent,1149036125 +114837,110,Mel Gibson,1150892206 +114847,2959,based on a book,1362280200 +114847,65310,Troma pictures,1362282216 +114879,112552,Academy Award Nominee,1428820767 +114879,112552,education,1428820674 +114879,112552,music,1428820739 +114879,112552,pyschology,1428820674 +114891,1029,Betamax,1250491641 +114891,1029,mother-son relationship,1250491645 +114891,1029,sad. again with the dying animated animals,1250491652 +114891,1029,talking animals,1250491647 +114891,2594,Sci-Fi,1183599944 +114891,7787,audie murphy,1252372355 +114891,27674,black comedy,1250491957 +114891,27674,Colin Hanks,1250491707 +114891,27674,dark comedy,1250491951 +114891,44191,super-hero,1250490935 +114891,44191,thought-provoking,1250490928 +114891,44191,visually appealing,1250490960 +114891,56587,Morgan Freeman,1250490893 +114891,68157,Brad Pitt,1251429648 +114891,68157,Dead Nazis,1251429649 +114891,68157,Diane Kruger,1251429655 +114891,68157,Quentin Tarantino,1251429644 +114891,68358,action,1251430229 +114891,68358,adventure,1251430231 +114891,68358,quick cuts,1251430246 +114891,68358,sci-fi,1251430232 +114891,68358,Star Trek,1251430224 +114891,69481,death,1250490803 +114891,69481,War,1250490785 +114891,70286,genetics,1250487996 +114891,70286,intelligent sci-fi,1250487985 +114924,260,empire,1432288010 +114924,260,future,1432287985 +114924,260,war,1432287997 +114930,1,Best of Rotten Tomatoes: All Time,1290799014 +114930,1,John Lasseter,1239041494 +114930,2,Joe Johnston,1310677404 +114930,3,Howard Deutch,1239064997 +114930,6,Michael Mann,1302595486 +114930,8,Peter Hewitt,1302804237 +114930,9,Jean-Claude Van Damme,1300401461 +114930,9,Peter Hyams,1300403135 +114930,11,Rob Reiner,1299643041 +114930,12,Mel Brooks,1328740545 +114930,13,Simon Wells,1300336002 +114930,16,Martin Scorsese,1299844329 +114930,17,Ang Lee,1238768811 +114930,19,Steve Oedekerk,1329971177 +114930,20,Joseph Ruben,1323659873 +114930,21,Barry Sonnenfeld,1299645264 +114930,23,Richard Donner,1300399315 +114930,24,Victor Salva,1332465684 +114930,25,Mike Figgis,1300999426 +114930,26,Oliver Parker,1295601318 +114930,28,Roger Michell,1302083055 +114930,29,Jean-Pierre Jeunet,1238253740 +114930,29,Marc Caro,1301453110 +114930,30,Zhang Yimou,1300399131 +114930,31,John N. Smith,1304431198 +114930,32,Terry Gilliam,1302887690 +114930,34,Chris Noonan,1329002656 +114930,36,Tim Robbins,1239054214 +114930,38,Andy Tennant,1325895212 +114930,39,Amy Heckerling,1301034113 +114930,40,Darrell Roodt,1292832582 +114930,41,Richard Loncraine,1296352119 +114930,44,Paul W.S. Anderson,1306101728 +114930,47,David Fincher,1302085845 +114930,49,Patricia Rozema,1302285824 +114930,50,Bryan Singer,1293735653 +114930,52,Woody Allen,1302670522 +114930,53,Gianni Amelio,1335082988 +114930,54,Holly Goldberg Sloan,1332989792 +114930,57,Jodie Foster,1306103315 +114930,58,Michael Radford,1328390897 +114930,59,Robert Lepage,1335134312 +114930,60,Frank Oz,1302035130 +114930,60,Steve Coogan,1312349772 +114930,61,John Schlesinger,1302888266 +114930,62,Stephen Herek,1323658461 +114930,64,Bill Bennett,1328391563 +114930,65,Jason Bloom,1332296208 +114930,69,F. Gary Gray,1273252470 +114930,70,Robert Rodriguez,1299961985 +114930,72,Criterion,1293230967 +114930,72,Noah Baumbach,1238380145 +114930,73,Claude Lelouch,1292923676 +114930,75,Steve Miner,1302000687 +114930,79,Brian Gibson,1323268437 +114930,80,Jafar Panahi,1271453690 +114930,82,Marleen Gorris,1292924256 +114930,83,Tim Reid,1335300285 +114930,85,Philip Haas,1303970310 +114930,86,Ridley Scott,1319413763 +114930,87,Ken Kwapis,1302287799 +114930,88,Penelope Spheeris,1302282466 +114930,89,John Badham,1299642747 +114930,93,Wes Craven,1303239510 +114930,94,Ted Demme,1335408051 +114930,95,John Woo,1238769087 +114930,96,Kenneth Branagh,1304433309 +114930,97,Criterion,1300397351 +114930,97,Mathieu Kassovitz,1239142294 +114930,100,Harold Becker,1323268174 +114930,101,Criterion,1237146074 +114930,101,Wes Anderson,1238885137 +114930,102,Nick Castle,1302799830 +114930,104,Dennis Dugan,1300230362 +114930,110,Mel Gibson,1238733860 +114930,111,Martin Scorsese,1299844328 +114930,112,Stanley Tong,1300396411 +114930,114,Mort Ransen,1328931635 +114930,116,Jon Blair,1328837887 +114930,117,Benjamin Ross,1299851669 +114930,121,John N. Smith,1304431214 +114930,123,Criterion,1237750265 +114930,123,Takeshi Kaneshiro,1263354394 +114930,123,Wong Kar-wai,1296416994 +114930,124,Giuseppe Tornatore,1239156439 +114930,125,David O. Russell,1327621653 +114930,128,Michel Negroponte,1333681219 +114930,134,Craig Baldwin,1334907067 +114930,135,David S. Ward,1301666652 +114930,135,Harland Williams,1301667176 +114930,135,Patton Oswalt,1332295611 +114930,136,Mark Rappaport,1308683172 +114930,141,Mike Nichols,1300414458 +114930,144,Edward Burns,1335408224 +114930,145,Michael Bay,1323268512 +114930,146,Christopher Cain,1302286678 +114930,147,Scott Kalvert,1335407693 +114930,149,Hal Hartley,1301445760 +114930,150,Ron Howard,1300401044 +114930,151,Michael Caton-Jones,1299643270 +114930,153,Joel Schumacher,1299962130 +114930,154,Criterion,1330481515 +114930,154,Luis Buñuel,1319407557 +114930,158,Brad Silberling,1295431276 +114930,158,Clint Eastwood,1299644190 +114930,160,Frank Marshall,1329129969 +114930,161,Tony Scott,1301034957 +114930,162,Criterion,1335500683 +114930,162,Terry Zwigoff,1301551042 +114930,163,Robert Rodriguez,1299961987 +114930,165,John McTiernan,1300400768 +114930,171,Christopher Ashley,1332295571 +114930,172,Robert Longo,1335422032 +114930,173,Danny Cannon,1326209483 +114930,174,John Fortenberry,1302239923 +114930,175,Larry Clark,1302232303 +114930,176,Tom DiCillo,1320183342 +114930,180,Jason Mewes,1297399046 +114930,180,Kevin Smith,1296350969 +114930,182,Nudity (Topless - Notable),1261609801 +114930,185,Irwin Winkler,1239070570 +114930,186,Chris Columbus,1302035355 +114930,190,Criterion,1421653985 +114930,190,Todd Haynes,1301549753 +114930,193,Paul Verhoeven,1302283828 +114930,194,Paul Auster,1299641964 +114930,194,Wayne Wang,1299643166 +114930,196,Roger Donaldson,1301035729 +114930,199,Criterion,1399778506 +114930,199,Golden Palm,1244223454 +114930,199,Jacques Demy,1335333159 +114930,201,Martha Coolidge,1328520838 +114930,204,Geoff Murphy,1302286745 +114930,205,Diane Keaton,1302287416 +114930,206,Douglas Keeve,1302287446 +114930,208,Kevin Costner,1301034793 +114930,211,Mike Figgis,1300999405 +114930,212,Greg Beeman,1239051553 +114930,213,Nikita Mikhalkov,1263350780 +114930,214,Criterion,1238856983 +114930,214,Milcho Manchevski,1332465090 +114930,215,Best of Rotten Tomatoes: All Time,1290797510 +114930,215,Richard Linklater,1238200495 +114930,216,Tamra Davis,1301033644 +114930,219,Peter Horton,1326613267 +114930,222,Pat O'Connor,1302778710 +114930,223,Jason Mewes,1297399064 +114930,223,Kevin Smith,1296350985 +114930,229,Roman Polanski,1301899738 +114930,230,Taylor Hackford,1302283336 +114930,231,Farrelly Brothers,1416382561 +114930,231,Harland Williams,1301667165 +114930,232,Ang Lee,1238768807 +114930,233,Atom Egoyan,1321658390 +114930,234,Nudity (Topless - Notable),1261609325 +114930,235,Tim Burton,1238806618 +114930,236,Jean Reno,1300400887 +114930,236,Lawrence Kasdan,1299962630 +114930,237,Billy Crystal,1335410001 +114930,239,Kevin Lima,1323684907 +114930,243,Mark Lewis,1335279287 +114930,246,Criterion,1335507636 +114930,246,Steve James,1292275441 +114930,247,Nudity (Topless - Notable),1261610477 +114930,247,Peter Jackson,1293231127 +114930,248,Randall Miller,1328329966 +114930,249,Bernard Rose,1323050138 +114930,250,Steven Brill,1297624150 +114930,252,Fred Schepisi,1258523557 +114930,253,Neil Jordan,1302637300 +114930,256,Ivan Reitman,1312352699 +114930,258,Michael Gottlieb,1315404782 +114930,260,George Lucas,1320185272 +114930,261,Gillian Armstrong,1302778317 +114930,262,Alfonso Cuarón,1239067935 +114930,263,Ken Loach,1268147107 +114930,264,Claude Chabrol,1414218781 +114930,265,Alfonso Arau,1292201228 +114930,266,Edward Zwick,1296379042 +114930,267,Nick Castle,1256065905 +114930,268,James Gray,1327116386 +114930,271,Stephen Gyllenhaal,1263421536 +114930,272,Nicholas Hytner,1239138491 +114930,274,James Orr,1327116894 +114930,275,Nora Ephron,1302040333 +114930,276,Richard Benjamin,1239112226 +114930,279,Gregory Nava,1328521462 +114930,280,Marc Rocco,1335409039 +114930,281,Robert Benton,1299362627 +114930,288,Oliver Stone,1410246737 +114930,290,Lee Tamahori,1238559322 +114930,292,Wolfgang Petersen,1300999172 +114930,293,Jean Reno,1300400890 +114930,293,Luc Besson,1300399938 +114930,296,Quentin Tarantino,1297623843 +114930,298,Ang Lee,1238768840 +114930,299,Antonia Bird,1335344406 +114930,300,Robert Redford,1299361073 +114930,301,Kayo Hatta,1258528125 +114930,301,Toshirô Mifune,1333065297 +114930,302,Patrice Chéreau,1312346653 +114930,306,Best of Rotten Tomatoes: All Time,1290798978 +114930,306,Criterion,1330130157 +114930,306,Krzysztof Kieslowski,1292881507 +114930,307,Best of Rotten Tomatoes: All Time,1290798966 +114930,307,Criterion,1330130150 +114930,307,Krzysztof Kieslowski,1292881505 +114930,308,Criterion,1330130146 +114930,308,Krzysztof Kieslowski,1292881510 +114930,309,Ping He,1317076792 +114930,312,Harold Ramis,1324753785 +114930,314,John Sayles,1301543383 +114930,315,Luis Llosa,1335420862 +114930,317,John Pasquin,1333244665 +114930,318,Frank Darabont,1326441564 +114930,319,Criterion,1335653958 +114930,319,Danny Boyle,1296352303 +114930,321,Juan Carlos Tabio,1335323064 +114930,321,Tomas Gutiérrez Alea,1335323064 +114930,322,George Huang,1335345398 +114930,324,Geoff Burton,1335279673 +114930,324,Kevin Dowling,1335279673 +114930,326,Zhang Yimou,1300399129 +114930,328,Ernest R. Dickerson,1328327996 +114930,328,Gilbert Adler,1328328005 +114930,330,Rusty Cundieff,1335333703 +114930,332,John Carpenter,1319412882 +114930,333,Peter Segal,1302040392 +114930,334,Criterion,1335658221 +114930,334,Louis Malle,1318244368 +114930,337,Lasse Hallström,1302637128 +114930,338,Brett Leonard,1303239568 +114930,339,Jon Turteltaub,1333501020 +114930,341,Mina Shum,1332889820 +114930,342,P.J. Hogan,1326616152 +114930,344,Tom Shadyac,1238968559 +114930,345,Stephan Elliott,1301163100 +114930,347,Roman Polanski,1405331888 +114930,348,Woody Allen,1302670505 +114930,349,Phillip Noyce,1312350713 +114930,350,Joel Schumacher,1299962128 +114930,351,Jessie Nelson,1335407570 +114930,353,Alex Proyas,1319411638 +114930,355,Brian Levant,1300335970 +114930,356,Robert Zemeckis,1299645575 +114930,357,Mike Newell,1238923629 +114930,361,Andrew Bergman,1329042840 +114930,362,Stephen Sommers,1326440351 +114930,363,Ray Müller,1293367810 +114930,364,Rob Minkoff,1299643599 +114930,364,Roger Allers,1299643624 +114930,366,Wes Craven,1303239543 +114930,367,Chuck Russell,1324753563 +114930,368,Richard Donner,1300399311 +114930,370,Peter Segal,1302040383 +114930,373,John Dahl,1300414932 +114930,374,Donald Petrie,1301666245 +114930,376,Curtis Hanson,1301901072 +114930,377,Jan de Bont,1302778422 +114930,379,Jean-Claude Van Damme,1300401459 +114930,379,Peter Hyams,1300403138 +114930,380,James Cameron,1296423363 +114930,382,David Schwimmer,1297402289 +114930,382,Mike Nichols,1300414463 +114930,385,Suri Krishnamma,1335080154 +114930,388,Brian Sloan,1326614850 +114930,388,Raoul O'Connell,1326614850 +114930,388,Robert Lee King,1326614850 +114930,389,Gérard Depardieu,1238133931 +114930,389,Yves Angelo,1323686760 +114930,393,Jean-Claude Van Damme,1300401467 +114930,393,Steven E. de Souza,1300402281 +114930,407,John Carpenter,1319412885 +114930,410,Barry Sonnenfeld,1299645272 +114930,412,Martin Scorsese,1299844374 +114930,413,Michael Lehmann,1301437052 +114930,414,Paul Michael Glaser,1330130693 +114930,417,Criterion,1453096264 +114930,417,Whit Stillman,1292923178 +114930,419,Penelope Spheeris,1302282464 +114930,420,John Landis,1298994524 +114930,420,Stephen McHattie,1299872457 +114930,424,William Friedkin,1318242026 +114930,425,Tony Richardson,1335308084 +114930,427,Nudity (Topless - Notable),1261612151 +114930,428,Robert De Niro,1321659242 +114930,429,Adam Resnick,1326614542 +114930,430,John Whitesell,1301158413 +114930,431,Brian De Palma,1299643415 +114930,432,Paul Weiland,1300400428 +114930,433,Mick Jackson,1301035935 +114930,434,Renny Harlin,1299960996 +114930,435,Steve Barron,1314902210 +114930,437,Michael Ritchie,1319408068 +114930,438,Gregg Champion,1327648545 +114930,440,Ivan Reitman,1312352701 +114930,441,Criterion,1335500812 +114930,441,Richard Linklater,1306101999 +114930,442,Marco Brambilla,1302084285 +114930,445,Carl Reiner,1326616435 +114930,446,Chen Kaige,1335407538 +114930,448,Peter Weir,1299963838 +114930,450,Alek Keshishian,1335345375 +114930,452,John Irvin,1335328816 +114930,453,Barry Sonnenfeld,1299645271 +114930,453,Michael J. Fox,1299641763 +114930,455,Simon Wincer,1300414626 +114930,456,Boaz Yakin,1301448992 +114930,457,Andrew Davis,1301035110 +114930,460,Howard Deutch,1302641551 +114930,464,Jean-Claude Van Damme,1300401465 +114930,464,John Woo,1300402314 +114930,466,Jim Abrahams,1299850928 +114930,471,Coen Brothers,1239054324 +114930,472,James L. Brooks,1239111621 +114930,473,Daniel Petrie Jr.,1301034085 +114930,474,Clint Eastwood,1299644761 +114930,474,Wolfgang Petersen,1300999170 +114930,475,Jim Sheridan,1238953676 +114930,477,Brian Gibson,1335408210 +114930,478,Barry Levinson,1299744925 +114930,479,Stephen Hopkins,1299850864 +114930,480,Steven Spielberg,1299850191 +114930,483,Criterion,1399776049 +114930,483,Steven Soderbergh,1238950680 +114930,485,John McTiernan,1300400757 +114930,486,James Lapine,1299643793 +114930,486,Michael J. Fox,1299641759 +114930,489,Richard Benjamin,1323688147 +114930,491,Mel Gibson,1327622187 +114930,492,Woody Allen,1302670485 +114930,493,The Hughes Brothers,1299962559 +114930,494,Stuart Baird,1328394140 +114930,495,Criterion,1303795526 +114930,495,Nagisa Ôshima,1303796489 +114930,497,Kenneth Branagh,1304433341 +114930,500,Chris Columbus,1302035386 +114930,501,Criterion,1212778193 +114930,501,Mike Leigh,1238966137 +114930,502,Christopher Cain,1302286681 +114930,506,Sally Potter,1321049611 +114930,507,Clint Eastwood,1299644723 +114930,507,Kevin Costner,1301036396 +114930,508,Jonathan Demme,1238859245 +114930,509,Jane Campion,1239210791 +114930,510,John Singleton,1299961497 +114930,514,Ted Demme,1333680910 +114930,515,James Ivory,1297639495 +114930,516,Penny Marshall,1327115952 +114930,519,Fred Dekker,1332814291 +114930,520,Mel Brooks,1328740554 +114930,521,Peter Medak,1297818261 +114930,522,Geoffrey Wright,1255419790 +114930,523,Victor Nunez,1326334420 +114930,524,David Anspaugh,1328327676 +114930,525,Tim Hunter,1408076388 +114930,527,Steven Spielberg,1299850190 +114930,528,Michael Ritchie,1319408065 +114930,529,Best of Rotten Tomatoes: All Time,1290798366 +114930,529,Steven Zaillian,1335420656 +114930,530,Chris Menges,1401057845 +114930,531,Agnieszka Holland,1335410975 +114930,532,John Waters,1301898637 +114930,533,Russell Mulcahy,1239069374 +114930,534,Richard Attenborough,1300994498 +114930,535,Criterion,1201668411 +114930,535,Robert Altman,1300999921 +114930,538,Fred Schepisi,1297814317 +114930,539,Nora Ephron,1302040339 +114930,541,Ridley Scott,1319413788 +114930,542,Steve Rash,1326616541 +114930,543,Thomas Schlamme,1323659897 +114930,546,Annabel Jankel,1327116442 +114930,549,François Girard,1238930858 +114930,551,Henry Selick,1318242961 +114930,552,Stephen Herek,1323658465 +114930,553,George P. Cosmatos,1325893995 +114930,555,Tony Scott,1301034960 +114930,556,Chris Hegedus,1292922058 +114930,556,Criterion,1335658368 +114930,558,Maurice Hunt,1335332323 +114930,561,Mark Malone,1335156421 +114930,562,Todd Solondz,1302235599 +114930,565,Criterion,1335500630 +114930,565,Guillermo del Toro,1238953876 +114930,569,Andrew Scheinman,1328394469 +114930,570,Åke Sandgren,1335135807 +114930,571,Richard Loncraine,1296352122 +114930,573,Lina Wertmüller,1430110871 +114930,574,David O. Russell,1238733212 +114930,575,Penelope Spheeris,1302282471 +114930,577,George Miller,1299849607 +114930,581,Jeffrey Friedman,1302038509 +114930,581,Rob Epstein,1302038484 +114930,583,Nanni Moretti,1315551595 +114930,585,Betty Thomas,1301548931 +114930,586,Chris Columbus,1302035384 +114930,587,Jerry Zucker,1316715708 +114930,588,Ron Clements,1239112161 +114930,589,James Cameron,1296423365 +114930,590,Kevin Costner,1299364605 +114930,590,Oscar (Best Picture),1299359140 +114930,592,Tim Burton,1238375815 +114930,593,Criterion,1201631654 +114930,593,Jonathan Demme,1292266908 +114930,594,David Hand,1328931221 +114930,595,Gary Trousdale,1299645439 +114930,596,Ben Sharpsteen,1300992733 +114930,596,Best of Rotten Tomatoes: All Time,1290798113 +114930,596,Hamilton Luske,1300992658 +114930,598,Yuri Mamin,1292273719 +114930,599,Sam Peckinpah,1326441716 +114930,602,Jean Bach,1333077051 +114930,605,Michael Hoffman,1299039410 +114930,608,Coen Brothers,1239054320 +114930,613,Franco Zeffirelli,1300339011 +114930,615,Franco Brusati,1335302122 +114930,616,Wolfgang Reitherman,1300336129 +114930,617,Pedro Almodóvar,1238259616 +114930,619,Bill Couturié,1331077832 +114930,621,André Téchiné,1272642624 +114930,627,Stacy Title,1325939916 +114930,628,Gregory Hoblit,1301448375 +114930,632,Ken Loach,1293229963 +114930,635,Richard Pearce,1335327965 +114930,645,Claude Sautet,1328523038 +114930,647,Edward Zwick,1296379036 +114930,648,Brian De Palma,1299643419 +114930,648,Jean Reno,1300400892 +114930,649,Friðrik Þór Friðriksson,1311992645 +114930,656,Steve Rash,1326616540 +114930,659,Criterion,1349032111 +114930,659,René Clément,1335278776 +114930,661,Henry Selick,1318242963 +114930,663,Kelly Makin,1335407164 +114930,665,Emir Kusturica,1272050667 +114930,666,Bo Widerberg,1335126116 +114930,667,Alan Mehrez,1332295422 +114930,668,Criterion,1453095447 +114930,668,Satyajit Ray,1264067744 +114930,670,Criterion,1453095484 +114930,670,Satyajit Ray,1264067251 +114930,671,Jim Mallon,1335410157 +114930,673,Joe Pytka,1335420398 +114930,678,George Hickenlooper,1301449806 +114930,680,Criterion,1238857226 +114930,680,Jean-Luc Godard,1301002045 +114930,681,Bertrand Tavernier,1297367669 +114930,681,Criterion,1238857354 +114930,683,Claude Chabrol,1414218789 +114930,685,Randal Kleiser,1301898901 +114930,688,Simon Wincer,1300414625 +114930,692,Norberto Barba,1326336067 +114930,694,Robert Mandel,1301544219 +114930,700,Patrick Read Johnson,1328741423 +114930,702,Criterion,1299449153 +114930,702,John Cassavetes,1299449110 +114930,704,Jean-Claude Van Damme,1300401469 +114930,705,Mark Joffe,1335279092 +114930,710,Tom DeCerchio,1327648685 +114930,711,Alan Shapiro,1335343416 +114930,712,Angela Pope,1335133175 +114930,714,Jim Jarmusch,1300403476 +114930,715,Jean-Paul Rappeneau,1323685305 +114930,718,Jean Reno,1300400494 +114930,718,Jean-Marie Poiré,1300399552 +114930,719,Harold Ramis,1324753789 +114930,720,Nick Park,1256571854 +114930,722,Brett Thompson,1328395489 +114930,724,Andrew Fleming,1312349270 +114930,725,Reginald Hudlin,1328327648 +114930,728,John Schlesinger,1302888285 +114930,733,Criterion,1262950738 +114930,733,Michael Bay,1323268510 +114930,735,Michele Soavi,1332887940 +114930,736,Jan de Bont,1302778424 +114930,741,Mamoru Oshii,1320868163 +114930,742,Tom Holland,1323658380 +114930,743,Rick Friedberg,1335410167 +114930,745,Nick Park,1256571852 +114930,746,Abraham Polonsky,1329434777 +114930,748,David Twohy,1376453022 +114930,749,Robert Z. Leonard,1317073638 +114930,750,Best of Rotten Tomatoes: All Time,1290797699 +114930,750,Stanley Kubrick,1272051820 +114930,751,Guy Maddin,1292277071 +114930,757,Wong Kar-wai,1238860840 +114930,759,Freida Lee Mock,1328524327 +114930,760,Joseph Vilsmaier,1302799941 +114930,761,Simon Wincer,1300414632 +114930,765,Francis Ford Coppola,1319412261 +114930,766,Nudity (Topless - Notable),1261610719 +114930,767,Charles Matthau,1328521317 +114930,769,Chris Hunt,1335081549 +114930,773,Criterion,1399775478 +114930,773,Djibril Diop Mambéty,1368358589 +114930,774,Gaston Kaboré,1408698348 +114930,778,Danny Boyle,1296352306 +114930,780,Roland Emmerich,1239125475 +114930,781,Nudity (Topless - Notable),1301451653 +114930,782,Tony Scott,1301034972 +114930,784,Ben Stiller,1301034374 +114930,784,David Cross,1301552245 +114930,785,Farrelly Brothers,1416382516 +114930,786,Chuck Russell,1324753560 +114930,787,Richard Gordon,1328523002 +114930,788,Tom Shadyac,1238968591 +114930,790,Lucian Pintilie,1335053330 +114930,791,Yale Strom,1335053958 +114930,798,Rob Cohen,1300397242 +114930,799,Michael J. Fox,1299641775 +114930,799,Peter Jackson,1239050914 +114930,800,John Sayles,1301543383 +114930,802,Jon Turteltaub,1320183107 +114930,803,Nicole Holofcener,1297966040 +114930,805,Joel Schumacher,1299962127 +114930,807,Eric Rohmer,1408161591 +114930,810,Paul Michael Glaser,1330130697 +114930,818,Arlene Sanford,1333063945 +114930,820,Luis Buñuel,1414339496 +114930,823,Criterion,1319411808 +114930,823,Eric Rohmer,1319411970 +114930,824,Peter Sehr,1335277794 +114930,829,John Payson,1335342003 +114930,831,Nigel Finch,1335136031 +114930,832,Ron Howard,1300401043 +114930,833,Hart Bochner,1302239898 +114930,836,Andrew Davis,1301035106 +114930,837,Danny DeVito,1306101789 +114930,838,Douglas McGrath,1301001386 +114930,840,Harry Winer,1329266637 +114930,841,Criterion,1335504493 +114930,841,Georges Franju,1334101747 +114930,842,Gilbert Adler,1328328007 +114930,844,Yin Li,1335132464 +114930,846,Hal Hartley,1301445743 +114930,848,Lee David Zlotoff,1335342931 +114930,849,John Carpenter,1319412866 +114930,850,Anh Hung Tran,1263354265 +114930,851,Julian Schnabel,1301899825 +114930,853,Rolf de Heer,1405683513 +114930,854,Criterion,1360319619 +114930,854,Keisuke Kinoshita,1300243587 +114930,858,Best of Rotten Tomatoes: All Time,1290798504 +114930,858,Francis Ford Coppola,1319412287 +114930,860,Sönke Wortmann,1292223472 +114930,861,Stanley Tong,1300396415 +114930,862,Lisa Krueger,1335276527 +114930,865,Gillies MacKinnon,1418020123 +114930,866,Wachowski Brothers,1325895326 +114930,867,Arthur Hiller,1326440620 +114930,870,Christopher Cain,1302286676 +114930,879,Peter Hyams,1300403133 +114930,881,David M. Evans,1332900123 +114930,885,Gérard Depardieu,1323684826 +114930,885,Norman Jewison,1302777508 +114930,886,Ernest R. Dickerson,1328327994 +114930,891,Joe Chappelle,1326337223 +114930,892,Trevor Nunn,1326337438 +114930,893,Keith Gordon,1335299180 +114930,896,André Téchiné,1239080559 +114930,897,Sam Wood,1299364126 +114930,898,Best of Rotten Tomatoes: All Time,1290798768 +114930,898,George Cukor,1269616219 +114930,899,Best of Rotten Tomatoes: All Time,1290798386 +114930,899,Gene Kelly,1319414888 +114930,899,Stanley Donen,1319414865 +114930,900,Oscar (Best Picture),1299359124 +114930,900,Vincente Minnelli,1258441087 +114930,901,Stanley Donen,1319414855 +114930,902,Blake Edwards,1297642661 +114930,903,Alfred Hitchcock,1298656064 +114930,904,Alfred Hitchcock,1298656029 +114930,904,Best of Rotten Tomatoes: All Time,1290798192 +114930,905,Criterion,1421653901 +114930,905,Frank Capra,1297816156 +114930,906,George Cukor,1299362445 +114930,907,Mark Sandrich,1327647318 +114930,908,Alfred Hitchcock,1298656022 +114930,908,Best of Rotten Tomatoes: All Time,1290798066 +114930,909,Billy Wilder,1298997415 +114930,910,Billy Wilder,1238803272 +114930,911,Criterion,1238857340 +114930,911,Stanley Donen,1319414872 +114930,912,Michael Curtiz,1299845834 +114930,913,Best of Rotten Tomatoes: All Time,1290798725 +114930,913,John Huston,1301033017 +114930,914,George Cukor,1299361778 +114930,914,Oscar (Best Picture),1299359231 +114930,915,Billy Wilder,1238803315 +114930,916,William Wyler,1319417128 +114930,917,Shirley Temple,1298119541 +114930,917,Walter Lang,1335328452 +114930,918,Vincente Minnelli,1299364423 +114930,919,Best of Rotten Tomatoes: All Time,1290798951 +114930,919,Victor Fleming,1299363861 +114930,920,George Cukor,1299361776 +114930,920,Oscar (Best Picture),1299359177 +114930,920,Sam Wood,1299627498 +114930,920,Victor Fleming,1299363859 +114930,921,Richard Benjamin,1239112201 +114930,922,Billy Wilder,1272051600 +114930,923,Best of Rotten Tomatoes: All Time,1290797588 +114930,923,Orson Welles,1198270132 +114930,924,Stanley Kubrick,1238806277 +114930,926,Best of Rotten Tomatoes: All Time,1290797397 +114930,926,Joseph L. Mankiewicz,1298997661 +114930,926,Oscar (Best Picture),1299359082 +114930,927,George Cukor,1299362449 +114930,928,Alfred Hitchcock,1298656034 +114930,928,Best of Rotten Tomatoes: All Time,1290798203 +114930,928,Criterion,1238875323 +114930,928,Oscar (Best Picture),1299359114 +114930,929,Alfred Hitchcock,1298656057 +114930,929,Criterion,1399776023 +114930,930,Alfred Hitchcock,1298656025 +114930,930,Criterion,1335424366 +114930,931,Alfred Hitchcock,1298656082 +114930,931,Criterion,1258596334 +114930,932,Leo McCarey,1297638737 +114930,933,Alfred Hitchcock,1298656049 +114930,934,Vincente Minnelli,1413626617 +114930,935,Vincente Minnelli,1299364417 +114930,936,Ernst Lubitsch,1299360434 +114930,937,Billy Wilder,1302031136 +114930,938,Oscar (Best Picture),1299359166 +114930,938,Vincente Minnelli,1299364247 +114930,940,Best of Rotten Tomatoes: All Time,1290798450 +114930,940,Michael Curtiz,1299845833 +114930,940,William Keighley,1321656257 +114930,941,Rouben Mamoulian,1239145179 +114930,942,Best of Rotten Tomatoes: All Time,1290797915 +114930,942,Otto Preminger,1299848267 +114930,942,Rouben Mamoulian,1239145178 +114930,943,Joseph L. Mankiewicz,1298997663 +114930,944,Frank Capra,1297816260 +114930,945,Best of Rotten Tomatoes: All Time,1290799002 +114930,945,Mark Sandrich,1327647291 +114930,946,Criterion,1399773408 +114930,946,Ernst Lubitsch,1299360433 +114930,947,Criterion,1239155932 +114930,947,Gregory La Cava,1297815074 +114930,948,George Stevens,1297641329 +114930,949,Elia Kazan,1319415115 +114930,950,W.S. Van Dyke,1298994088 +114930,951,Howard Hawks,1319416700 +114930,952,Michael Anderson,1299364760 +114930,952,Oscar (Best Picture),1299359128 +114930,953,Frank Capra,1297816149 +114930,954,Frank Capra,1297816274 +114930,955,Howard Hawks,1319416402 +114930,956,George Stevens,1297641305 +114930,959,John Cromwell,1297816516 +114930,960,Archie Mayo,1335126010 +114930,961,John Cromwell,1402203467 +114930,962,Busby Berkeley,1402192322 +114930,963,Danny Kaye,1297641705 +114930,963,Henry Koster,1297641576 +114930,965,Alfred Hitchcock,1298656051 +114930,965,Criterion,1201666079 +114930,966,Lewis Milestone,1402202917 +114930,968,George A. Romero,1315405087 +114930,969,John Huston,1301033020 +114930,970,John Huston,1301033029 +114930,971,Best of Rotten Tomatoes: All Time,1290797562 +114930,971,Richard Brooks,1299848737 +114930,973,Frank Capra,1297816253 +114930,982,Joshua Logan,1298652852 +114930,986,Carroll Ballard,1325939756 +114930,990,Jean-Claude Van Damme,1300401478 +114930,990,Ringo Lam,1239148617 +114930,991,Neil Jordan,1302637290 +114930,993,Matthew Broderick,1238144893 +114930,994,Campbell Scott,1324563212 +114930,997,Robert M. Young,1302236178 +114930,1002,John Walsh,1331075626 +114930,1004,John Gray,1325893393 +114930,1005,Robert Lieberman,1302676469 +114930,1008,Norman Foster,1402213900 +114930,1012,Robert Stevenson,1302888536 +114930,1013,David Swift,1402577352 +114930,1014,David Swift,1402577354 +114930,1015,Duwayne Dunham,1299645167 +114930,1015,Michael J. Fox,1299641770 +114930,1017,Ken Annakin,1301668310 +114930,1019,Richard Fleischer,1319413326 +114930,1020,Jon Turteltaub,1320183119 +114930,1021,William Dear,1314719977 +114930,1022,Clyde Geronimi,1300992721 +114930,1022,Hamilton Luske,1300992662 +114930,1022,Wilfred Jackson,1300992883 +114930,1023,Wolfgang Reitherman,1300992594 +114930,1025,Wolfgang Reitherman,1300336126 +114930,1026,Hamilton Luske,1402209462 +114930,1026,Harold D. Schuster,1402579136 +114930,1028,Best of Rotten Tomatoes: All Time,1290798027 +114930,1028,Robert Stevenson,1302888418 +114930,1029,Ben Sharpsteen,1300992736 +114930,1029,Bill Roberts,1402312712 +114930,1029,Jack Kinney,1402312712 +114930,1029,John Elliotte,1402312712 +114930,1029,Norman Ferguson,1402312711 +114930,1029,Samuel Armstrong,1402312712 +114930,1029,Wilfred Jackson,1402312712 +114930,1031,Robert Stevenson,1335408335 +114930,1032,Clyde Geronimi,1300992723 +114930,1032,Hamilton Luske,1300992664 +114930,1032,Wilfred Jackson,1300992881 +114930,1033,Art Stevens,1402910460 +114930,1033,Richard Rich,1402910461 +114930,1033,Ted Berman,1328579562 +114930,1034,Matthew Bright,1302035032 +114930,1035,Robert Wise,1299852024 +114930,1036,John McTiernan,1300400767 +114930,1041,Mike Leigh,1238966131 +114930,1042,Tom Hanks,1238133320 +114930,1046,Hettie MacDonald,1333077612 +114930,1049,Stephen Hopkins,1299850892 +114930,1050,Al Pacino,1320183530 +114930,1051,Steve Buscemi,1326616606 +114930,1054,Spike Lee,1299559253 +114930,1056,Nudity (Topless - Notable),1261610499 +114930,1057,Woody Allen,1302670491 +114930,1059,Baz Luhrmann,1301543790 +114930,1060,Doug Liman,1302085565 +114930,1061,Barry Levinson,1299744923 +114930,1064,Tad Stones,1328837189 +114930,1065,Anthony Asquith,1418112648 +114930,1066,Mark Sandrich,1327647292 +114930,1067,George Stevens,1402196232 +114930,1068,Edward Dmytryk,1318967526 +114930,1069,Edward Dmytryk,1318967536 +114930,1073,Mel Stuart,1328740501 +114930,1075,Jan Bucquoy,1335081581 +114930,1076,Criterion,1421653621 +114930,1076,Jack Clayton,1302887996 +114930,1077,Woody Allen,1302670498 +114930,1078,Woody Allen,1302670489 +114930,1079,Charles Crichton,1302288014 +114930,1079,John Cleese,1390990150 +114930,1080,Criterion,1302886198 +114930,1080,Terry Jones,1303240026 +114930,1081,Blake Edwards,1297642643 +114930,1082,Michael Ritchie,1319408079 +114930,1083,Blake Edwards,1408919524 +114930,1084,Arthur Penn,1326440869 +114930,1085,Fred Zinnemann,1298993370 +114930,1085,Henry King,1298993370 +114930,1085,John Sturges,1298993370 +114930,1086,Alfred Hitchcock,1298656055 +114930,1089,Quentin Tarantino,1297623846 +114930,1090,Oliver Stone,1299359375 +114930,1090,Oscar (Best Picture),1299359104 +114930,1091,Andrew McCarthy,1315404753 +114930,1091,Jonathan Silverman,1296357346 +114930,1091,Ted Kotcheff,1300337712 +114930,1094,Best of Rotten Tomatoes: All Time,1290798480 +114930,1094,Neil Jordan,1302637184 +114930,1095,James Foley,1323268041 +114930,1096,Alan J. Pakula,1316715320 +114930,1097,Steven Spielberg,1299850172 +114930,1099,Edwin L. Marin,1335342841 +114930,1103,Nicholas Ray,1299915816 +114930,1104,Elia Kazan,1319415128 +114930,1111,Claude Nuridsany,1333077719 +114930,1111,Marie Pérennou,1333077719 +114930,1113,Donald Petrie,1301666243 +114930,1117,Jaco Van Dormael,1302641196 +114930,1120,Milos Forman,1328930158 +114930,1123,David Van Taylor,1335135054 +114930,1123,R.J. Cutler,1325939843 +114930,1124,Mark Rydell,1297367526 +114930,1125,Blake Edwards,1297642652 +114930,1126,Ate de Jong,1333063929 +114930,1127,James Cameron,1296423352 +114930,1129,John Carpenter,1319412864 +114930,1131,Claude Berri,1239080128 +114930,1131,Gérard Depardieu,1323684858 +114930,1132,Claude Berri,1239080132 +114930,1133,Aaron Speiser,1335053659 +114930,1135,Howard Zieff,1302802625 +114930,1136,Terry Gilliam,1302887688 +114930,1136,Terry Jones,1303240024 +114930,1140,Michael Ray Rhodes,1334908456 +114930,1143,Raoul Ruiz,1421056138 +114930,1144,Susan Warms Dryfoos,1335132255 +114930,1145,Kurt Miller,1334969200 +114930,1147,Leon Gast,1292833127 +114930,1148,Nick Park,1256571856 +114930,1149,Jean-Luc Godard,1415557093 +114930,1150,Daniel Vigne,1323687079 +114930,1150,Gérard Depardieu,1239081275 +114930,1151,Jan Svankmajer,1292225707 +114930,1152,Alfred L. Werker,1410679013 +114930,1152,Anthony Mann,1410678853 +114930,1153,Anthony Mann,1410678884 +114930,1154,Anthony Mann,1410678891 +114930,1156,Criterion,1237750098 +114930,1156,Vittorio De Sica,1273112177 +114930,1161,Criterion,1335657836 +114930,1161,Volker Schlöndorff,1335332748 +114930,1162,Criterion,1335424405 +114930,1162,Peter Medak,1297818374 +114930,1164,Criterion,1265384029 +114930,1164,Jean-Luc Godard,1301002044 +114930,1167,Garry Marshall,1302597007 +114930,1169,Barbara Kopple,1333069078 +114930,1170,Phillip Rhee,1301999821 +114930,1171,Best of Rotten Tomatoes: All Time,1290797529 +114930,1171,Tim Robbins,1238381326 +114930,1172,Giuseppe Tornatore,1239156442 +114930,1175,Jean-Pierre Jeunet,1239081422 +114930,1175,Marc Caro,1301453112 +114930,1176,Criterion,1330130129 +114930,1176,Krzysztof Kieslowski,1292881514 +114930,1177,Mike Newell,1238923625 +114930,1178,Criterion,1299852697 +114930,1178,Stanley Kubrick,1299852697 +114930,1179,Stephen Frears,1319412611 +114930,1180,Peter Chelsom,1239145850 +114930,1183,Anthony Minghella,1299364492 +114930,1183,Oscar (Best Picture),1299359153 +114930,1184,Gabriele Salvatores,1301899354 +114930,1185,Best of Rotten Tomatoes: All Time,1290798056 +114930,1185,Jim Sheridan,1299960795 +114930,1186,Steven Soderbergh,1238950698 +114930,1187,John Sayles,1301543368 +114930,1188,Baz Luhrmann,1238717082 +114930,1189,Criterion,1421654297 +114930,1189,Errol Morris,1238394006 +114930,1190,Criterion,1421652540 +114930,1190,Pedro Almodóvar,1238259635 +114930,1192,Jennie Livingston,1333078162 +114930,1193,Milos Forman,1328930153 +114930,1196,Irvin Kershner,1320185402 +114930,1197,Christopher Guest,1297367983 +114930,1197,Rob Reiner,1299642971 +114930,1198,Steven Spielberg,1299850181 +114930,1199,Criterion,1237329356 +114930,1199,Terry Gilliam,1302887686 +114930,1200,Best of Rotten Tomatoes: All Time,1290797379 +114930,1200,James Cameron,1296423354 +114930,1201,Clint Eastwood,1299644195 +114930,1201,Sergio Leone,1272052019 +114930,1202,Bruce Robinson,1335332586 +114930,1202,Criterion,1335424555 +114930,1203,Best of Rotten Tomatoes: All Time,1290797313 +114930,1203,Criterion,1319416285 +114930,1203,Sidney Lumet,1319416035 +114930,1204,David Lean,1297817566 +114930,1204,Oscar (Best Picture),1299359097 +114930,1206,Stanley Kubrick,1299852702 +114930,1207,Robert Mulligan,1300414795 +114930,1208,Francis Ford Coppola,1319412284 +114930,1209,Charles Bronson,1238805581 +114930,1209,Sergio Leone,1292203137 +114930,1210,Richard Marquand,1320185352 +114930,1211,Criterion,1302286334 +114930,1211,Wim Wenders,1302286304 +114930,1212,Best of Rotten Tomatoes: All Time,1290798848 +114930,1212,Carol Reed,1299361684 +114930,1212,Criterion,1201666587 +114930,1212,Golden Palm,1244224385 +114930,1213,Martin Scorsese,1299844326 +114930,1214,Ridley Scott,1319413790 +114930,1215,Sam Raimi,1301035634 +114930,1216,Jean Reno,1300400843 +114930,1216,Luc Besson,1300399935 +114930,1217,Akira Kurosawa,1268796034 +114930,1217,Criterion,1268797136 +114930,1217,Tatsuya Nakadai,1268796259 +114930,1218,Best of Rotten Tomatoes: All Time,1290798559 +114930,1218,Chow Yun Fat,1239045354 +114930,1218,Criterion,1201631423 +114930,1218,John Woo,1239001699 +114930,1219,Alfred Hitchcock,1298656087 +114930,1220,John Landis,1298994878 +114930,1221,Francis Ford Coppola,1319412285 +114930,1222,Stanley Kubrick,1299852707 +114930,1223,Nick Park,1256571827 +114930,1224,Best of Rotten Tomatoes: All Time,1290797763 +114930,1224,Kenneth Branagh,1304433317 +114930,1225,Milos Forman,1269198136 +114930,1226,John Ford,1299363668 +114930,1227,Sergio Leone,1332890437 +114930,1228,Martin Scorsese,1299844333 +114930,1230,Woody Allen,1302670509 +114930,1231,Philip Kaufman,1300338049 +114930,1232,Andrei Tarkovsky,1317236523 +114930,1233,Best of Rotten Tomatoes: All Time,1290797631 +114930,1233,Wolfgang Petersen,1300999166 +114930,1234,George Roy Hill,1300339706 +114930,1235,Criterion,1335507233 +114930,1235,Hal Ashby,1300230819 +114930,1236,Hal Hartley,1301445749 +114930,1237,Criterion,1201631606 +114930,1237,Ingmar Bergman,1303239893 +114930,1238,Best of Rotten Tomatoes: All Time,1290797985 +114930,1238,Bill Forsyth,1321655845 +114930,1240,Best of Rotten Tomatoes: All Time,1290798834 +114930,1240,James Cameron,1296423356 +114930,1241,Peter Jackson,1239050904 +114930,1242,Edward Zwick,1296379040 +114930,1243,Tom Stoppard,1331179465 +114930,1244,Woody Allen,1302670522 +114930,1245,Coen Brothers,1239054342 +114930,1246,Peter Weir,1299963843 +114930,1247,Criterion,1453095929 +114930,1247,Mike Nichols,1300414458 +114930,1248,Orson Welles,1287975978 +114930,1249,Jean Reno,1300400863 +114930,1249,Luc Besson,1300399933 +114930,1250,David Lean,1297817569 +114930,1250,Oscar (Best Picture),1299359088 +114930,1251,Criterion,1273108689 +114930,1251,Federico Fellini,1299448500 +114930,1252,Best of Rotten Tomatoes: All Time,1290797575 +114930,1252,Roman Polanski,1301899755 +114930,1253,Robert Wise,1298998027 +114930,1254,Best of Rotten Tomatoes: All Time,1290798858 +114930,1254,John Huston,1301033023 +114930,1255,Peter Jackson,1239050901 +114930,1256,Leo McCarey,1297638634 +114930,1256,Marx Brothers,1299627406 +114930,1257,Savage Steve Holland,1328329920 +114930,1258,Stanley Kubrick,1299852710 +114930,1259,Rob Reiner,1299642971 +114930,1260,Best of Rotten Tomatoes: All Time,1290797995 +114930,1260,Criterion,1201666756 +114930,1260,Fritz Lang,1319417431 +114930,1261,Sam Raimi,1301035629 +114930,1262,Charles Bronson,1319415519 +114930,1262,John Sturges,1301158064 +114930,1263,Michael Cimino,1299041459 +114930,1263,Oscar (Best Picture),1299359091 +114930,1264,Jean-Jacques Beineix,1292924341 +114930,1265,Harold Ramis,1324753800 +114930,1266,Clint Eastwood,1299644193 +114930,1267,Criterion,1453096170 +114930,1267,John Frankenheimer,1238467475 +114930,1268,Allan Moyle,1315404632 +114930,1269,Frank Capra,1297816281 +114930,1270,Michael J. Fox,1299641784 +114930,1270,Robert Zemeckis,1299645577 +114930,1271,Jon Avnet,1301035424 +114930,1272,Franklin J. Schaffner,1301898434 +114930,1273,Criterion,1238857407 +114930,1273,Jim Jarmusch,1300403475 +114930,1274,Katsuhiro Ôtomo,1328931211 +114930,1275,Russell Mulcahy,1239069348 +114930,1276,Best of Rotten Tomatoes: All Time,1290797617 +114930,1276,Stuart Rosenberg,1335420941 +114930,1277,Gérard Depardieu,1238133937 +114930,1277,Jean-Paul Rappeneau,1323685283 +114930,1278,Mel Brooks,1328740539 +114930,1279,Criterion,1292049519 +114930,1279,Jim Jarmusch,1300403481 +114930,1280,Zhang Yimou,1300399132 +114930,1281,Charles Chaplin,1239124121 +114930,1281,Criterion,1335506850 +114930,1282,Ben Sharpsteen,1300992738 +114930,1282,Bill Roberts,1300992971 +114930,1282,Ford Beebe,1300992776 +114930,1282,Hamilton Luske,1300992660 +114930,1282,James Algar,1300992377 +114930,1282,Jim Handley,1300992855 +114930,1282,Norman Ferguson,1300992801 +114930,1282,Paul Satterfield,1300992986 +114930,1282,Samuel Armstrong,1300992764 +114930,1282,T. Hee,1300992867 +114930,1282,Wilfred Jackson,1300992885 +114930,1283,Fred Zinnemann,1299851968 +114930,1284,Howard Hawks,1319416438 +114930,1285,Michael Lehmann,1301437097 +114930,1286,Jeannot Szwarc,1296872628 +114930,1287,William Wyler,1319416927 +114930,1288,Christopher Guest,1297367984 +114930,1288,Criterion,1335657741 +114930,1288,Rob Reiner,1299643037 +114930,1289,Criterion,1349032137 +114930,1289,Godfrey Reggio,1292275382 +114930,1290,Howard Deutch,1302641595 +114930,1291,Steven Spielberg,1299850166 +114930,1292,Hal Ashby,1300230806 +114930,1293,Richard Attenborough,1300994433 +114930,1295,Criterion,1239134186 +114930,1295,Philip Kaufman,1300338081 +114930,1296,Criterion,1453095287 +114930,1296,James Ivory,1297639488 +114930,1297,Martha Coolidge,1335407940 +114930,1298,Alan Parker,1326442088 +114930,1299,Roland Joffé,1302287657 +114930,1300,Criterion,1302284683 +114930,1300,Lasse Hallström,1302637105 +114930,1301,Fred M. Wilcox,1239158004 +114930,1302,Kevin Costner,1301036411 +114930,1302,Phil Alden Robinson,1296350774 +114930,1303,John Huston,1301033518 +114930,1304,George Roy Hill,1300339707 +114930,1305,Criterion,1302286332 +114930,1305,Wim Wenders,1302286303 +114930,1306,Wim Wenders,1302286284 +114930,1307,Rob Reiner,1299643051 +114930,1310,Doug Pray,1334905491 +114930,1312,Susan Streitfeld,1335275112 +114930,1313,Larry Bishop,1408920949 +114930,1320,David Fincher,1302085857 +114930,1321,John Landis,1298994867 +114930,1327,Stuart Rosenberg,1335406788 +114930,1329,Antonio Margheriti,1335274452 +114930,1329,Criterion,1238857291 +114930,1329,Paul Morrissey,1323687188 +114930,1333,Alfred Hitchcock,1298656053 +114930,1334,Criterion,1238857288 +114930,1334,Irvin S. Yeaworth Jr.,1332989839 +114930,1337,Robert Wise,1335303050 +114930,1340,Best of Rotten Tomatoes: All Time,1290798469 +114930,1340,James Whale,1321654282 +114930,1342,Bernard Rose,1323050136 +114930,1343,Martin Scorsese,1299844332 +114930,1344,J. Lee Thompson,1319407818 +114930,1345,Brian De Palma,1299643412 +114930,1347,Wes Craven,1303239550 +114930,1348,F.W. Murnau,1238875523 +114930,1350,Richard Donner,1300399309 +114930,1353,Barbra Streisand,1330482028 +114930,1354,Criterion,1399778111 +114930,1354,Lars von Trier,1300338815 +114930,1356,Jonathan Frakes,1331172478 +114930,1357,Scott Hicks,1300415491 +114930,1358,Billy Bob Thornton,1326338344 +114930,1359,Brian Levant,1300335969 +114930,1360,Criterion,1335508503 +114930,1360,Michelangelo Antonioni,1335508497 +114930,1361,Joe Berlinger,1300335737 +114930,1364,Hans Petter Moland,1327116487 +114930,1365,Patrice Leconte,1239080307 +114930,1367,Stephen Herek,1323658467 +114930,1370,Renny Harlin,1299960997 +114930,1372,Nicholas Meyer,1402212587 +114930,1374,Nicholas Meyer,1302288184 +114930,1377,Tim Burton,1238806606 +114930,1378,Christopher Cain,1302286683 +114930,1379,Geoff Murphy,1302286743 +114930,1380,Randal Kleiser,1301898939 +114930,1382,Dwight H. Little,1326613879 +114930,1384,Daniel J. Sullivan,1316715727 +114930,1385,Andrew Davis,1301035108 +114930,1387,Best of Rotten Tomatoes: All Time,1290797883 +114930,1387,Steven Spielberg,1299850156 +114930,1390,Peter Segal,1302040388 +114930,1391,Michael J. Fox,1299641777 +114930,1391,Tim Burton,1299645098 +114930,1392,Alexander Payne,1322758499 +114930,1393,Cameron Crowe,1333501085 +114930,1394,Coen Brothers,1239054349 +114930,1395,Barry Levinson,1299744928 +114930,1396,Phil Alden Robinson,1297815727 +114930,1396,Sidney Poitier,1301036288 +114930,1397,Anjelica Huston,1335301215 +114930,1404,Sidney Lumet,1319416046 +114930,1405,Mike Judge,1239144284 +114930,1406,Claude Chabrol,1298996304 +114930,1407,Wes Craven,1303239552 +114930,1408,Michael Mann,1302595480 +114930,1409,Nora Ephron,1302040334 +114930,1411,Kenneth Branagh,1304433335 +114930,1412,Terry George,1301904454 +114930,1413,Dan Ireland,1302287696 +114930,1414,Albert Brooks,1238138110 +114930,1415,André Téchiné,1239080560 +114930,1419,Criterion,1201631594 +114930,1419,Nicolas Roeg,1239146979 +114930,1420,Murray Lerner,1301160799 +114930,1422,Dwight H. Little,1326613882 +114930,1423,Ralph Ziman,1335133291 +114930,1425,Fred Schepisi,1258523555 +114930,1425,Robert Young,1302236190 +114930,1426,George Miller,1299849562 +114930,1427,Robert Butler,1328327519 +114930,1429,Stanley Tong,1300396413 +114930,1431,Dennis Dugan,1300230353 +114930,1432,Thomas Carter,1326335996 +114930,1437,Andrew Birkin,1300338427 +114930,1438,Roger Donaldson,1301035726 +114930,1439,Peter Baldwin,1335274180 +114930,1441,Jeremiah S. Chechik,1302030017 +114930,1442,Steve James,1292275453 +114930,1445,Bryan Spicer,1326615719 +114930,1446,Jan Sverák,1333062983 +114930,1449,Christopher Guest,1297367988 +114930,1449,David Cross,1301552221 +114930,1450,Sergey Bodrov,1419967074 +114930,1453,Ken Kwapis,1302287800 +114930,1454,Richard Linklater,1238200550 +114930,1456,Paul Miller,1335287557 +114930,1457,Andy Tennant,1239132932 +114930,1461,Stephen Kessler,1301032648 +114930,1464,David Lynch,1301903600 +114930,1465,John Singleton,1299961495 +114930,1466,Mike Newell,1296880473 +114930,1468,Jeff Pollack,1328390342 +114930,1474,John Pasquin,1333244667 +114930,1476,Betty Thomas,1301548934 +114930,1479,Phillip Noyce,1238963742 +114930,1484,Greg Mottola,1292499369 +114930,1485,Tom Shadyac,1238968575 +114930,1486,Rolf de Heer,1405683522 +114930,1488,Alan J. Pakula,1239147153 +114930,1497,Hark Tsui,1327112516 +114930,1497,Jean-Claude Van Damme,1327112520 +114930,1499,Luis Llosa,1335409801 +114930,1500,George Armitage,1335422225 +114930,1503,Tom Schulman,1302675862 +114930,1509,Alex Sichel,1335133550 +114930,1511,Nana Dzhordzhadze,1335083445 +114930,1515,Mick Jackson,1301035938 +114930,1516,Peter Duncan,1335282581 +114930,1517,Jay Roach,1258372651 +114930,1518,Jonathan Mostow,1312346781 +114930,1520,Daniel Taplitz,1335082652 +114930,1526,Ivan Reitman,1312352634 +114930,1527,Luc Besson,1273252445 +114930,1533,Criterion,1341592239 +114930,1533,Jean-Pierre Dardenne,1306103212 +114930,1533,Luc Dardenne,1306103212 +114930,1534,Agnès Varda,1302287541 +114930,1534,Criterion,1237021598 +114930,1535,Joe Mantello,1329129938 +114930,1537,Kôji Yakusho,1296351890 +114930,1537,Masayuki Suo,1268145448 +114930,1542,Mark Herman,1255937406 +114930,1544,Steven Spielberg,1299850128 +114930,1545,Jacques Doillon,1297848890 +114930,1546,Criterion,1335424993 +114930,1546,Steven Soderbergh,1238950696 +114930,1552,Simon West,1299914949 +114930,1554,Peter Greenaway,1302636955 +114930,1555,Laetitia Masson,1335039283 +114930,1556,Jan de Bont,1302778417 +114930,1562,Joel Schumacher,1299962126 +114930,1564,Jean Reno,1300400373 +114930,1564,Paul Weiland,1300400448 +114930,1566,Ron Clements,1239112171 +114930,1571,Cédric Klapisch,1255420797 +114930,1572,Criterion,1238857002 +114930,1572,Jean-Luc Godard,1301002035 +114930,1573,John Woo,1238769066 +114930,1575,Mohsen Makhmalbaf,1292232268 +114930,1577,Tony Gatlif,1416381311 +114930,1580,Barry Sonnenfeld,1299645266 +114930,1580,David Cross,1301552217 +114930,1581,Martha Coolidge,1258372962 +114930,1583,Michael Ritchie,1319408042 +114930,1584,Robert Zemeckis,1299645579 +114930,1587,John Milius,1335034212 +114930,1588,Sam Weisman,1329042174 +114930,1589,James Mangold,1299852248 +114930,1590,Paul W.S. Anderson,1306101730 +114930,1591,Mark A.Z. Dippé,1318966086 +114930,1592,Charles Martin Smith,1297171508 +114930,1594,Neil LaBute,1335343995 +114930,1596,Mike Leigh,1415104220 +114930,1597,Richard Donner,1300399327 +114930,1599,George Felner,1312343741 +114930,1601,Bill Duke,1302595009 +114930,1603,Guillermo del Toro,1238953871 +114930,1604,Brett Ratner,1296356582 +114930,1605,Marco Brambilla,1302084284 +114930,1608,Wolfgang Petersen,1300999168 +114930,1609,Kevin Reynolds,1299961092 +114930,1610,John McTiernan,1300400778 +114930,1611,Criterion,1335512619 +114930,1611,Gus Van Sant,1335512638 +114930,1612,Tony Vitale,1335282555 +114930,1614,Frank Oz,1302035118 +114930,1615,Lee Tamahori,1238559326 +114930,1616,Mimi Leder,1328741464 +114930,1617,Curtis Hanson,1301901070 +114930,1619,Jean-Jacques Annaud,1302034233 +114930,1620,Gary Fleder,1316715673 +114930,1623,Robert Kurtzman,1302000009 +114930,1625,Criterion,1341592849 +114930,1625,David Fincher,1302085855 +114930,1626,Félix Enríquez Alcalá,1328521372 +114930,1633,Victor Nunez,1326334430 +114930,1635,Ang Lee,1300396963 +114930,1635,Criterion,1335508474 +114930,1639,Criterion,1264039906 +114930,1639,Jason Mewes,1297399066 +114930,1639,Kevin Smith,1296350977 +114930,1641,Peter Cattaneo,1326613602 +114930,1643,John Madden,1299360642 +114930,1644,Jim Gillespie,1334905851 +114930,1645,Taylor Hackford,1302283337 +114930,1646,Harland Williams,1301667178 +114930,1646,Stuart Gillard,1301665890 +114930,1648,Mark Waters,1335333644 +114930,1649,Errol Morris,1238394010 +114930,1653,Andrew Niccol,1319219968 +114930,1660,Kasi Lemmons,1335329972 +114930,1663,Harold Ramis,1293923537 +114930,1663,Ivan Reitman,1312352698 +114930,1665,Mel Smith,1327649793 +114930,1667,Costa-Gavras,1296947296 +114930,1670,Michael Winterbottom,1318967310 +114930,1672,Francis Ford Coppola,1319412247 +114930,1673,Paul Thomas Anderson,1302778632 +114930,1674,Peter Weir,1299963618 +114930,1676,Paul Verhoeven,1302283831 +114930,1678,Andrew McCarthy,1315404745 +114930,1678,Wayne Wang,1299643176 +114930,1680,Peter Howitt,1328845253 +114930,1681,John R. Leonetti,1328392625 +114930,1682,Peter Weir,1299963616 +114930,1683,Iain Softley,1335342220 +114930,1684,Marleen Gorris,1292924290 +114930,1686,Jon Avnet,1239112883 +114930,1687,Michael Caton-Jones,1299643249 +114930,1687,Sidney Poitier,1297815680 +114930,1689,Jon Amiel,1300229554 +114930,1690,Jean-Pierre Jeunet,1301453087 +114930,1693,Steven Spielberg,1299850102 +114930,1694,Robert Duvall,1335406509 +114930,1696,Sean Mathias,1335230455 +114930,1699,Neil Jordan,1302637260 +114930,1701,Woody Allen,1302670488 +114930,1702,Les Mayfield,1323660021 +114930,1703,Bryan Spicer,1326615721 +114930,1704,Gus Van Sant,1238930082 +114930,1707,Raja Gosnell,1301436954 +114930,1713,Gore Verbinski,1299626450 +114930,1717,Wes Craven,1303239549 +114930,1719,Atom Egoyan,1321658395 +114930,1719,Best of Rotten Tomatoes: All Time,1290798802 +114930,1721,James Cameron,1296423359 +114930,1725,Richard Friedenberg,1313790122 +114930,1726,Kevin Costner,1238381281 +114930,1728,Alan Rickman,1328568618 +114930,1729,Quentin Tarantino,1297623851 +114930,1730,Martin Scorsese,1299844348 +114930,1731,Stanley Tong,1300396418 +114930,1732,Coen Brothers,1239054314 +114930,1734,Alain Berliner,1333077779 +114930,1742,Darin Scott,1307542981 +114930,1746,Penelope Spheeris,1302282432 +114930,1747,Barry Levinson,1299745053 +114930,1747,Harland Williams,1301667164 +114930,1748,Alex Proyas,1319411640 +114930,1750,Manny Coto,1323658117 +114930,1752,Mikael Salomon,1296340387 +114930,1754,Gregory Hoblit,1301448378 +114930,1757,Takeshi Kaneshiro,1263354908 +114930,1757,Wong Kar-wai,1296416990 +114930,1759,Bruno Barreto,1302673824 +114930,1762,Stephen Sommers,1326440353 +114930,1768,Aleksandr Sokurov,1414218675 +114930,1772,John Landis,1298994510 +114930,1777,Frank Coraci,1310419557 +114930,1779,Barry Levinson,1299744922 +114930,1784,James L. Brooks,1239111621 +114930,1785,Abel Ferrara,1409468965 +114930,1788,Kari Skogland,1335303626 +114930,1794,Richard Kwietniowski,1335329321 +114930,1797,David Breashears,1330133665 +114930,1799,Peter O'Fallon,1333680884 +114930,1801,Gérard Depardieu,1323684815 +114930,1801,Randall Wallace,1323687048 +114930,1804,Richard Linklater,1238200541 +114930,1806,John Roberts,1326615300 +114930,1809,Takeshi Kitano,1258528342 +114930,1810,Mike Nichols,1300414581 +114930,1816,Nudity (Topless - Notable),1261610039 +114930,1819,Jonathan Demme,1419833089 +114930,1827,Michael Moore,1239085949 +114930,1833,Harold Becker,1323268166 +114930,1834,David Mamet,1327649633 +114930,1835,Brad Silberling,1258374975 +114930,1836,Criterion,1335510687 +114930,1836,Whit Stillman,1335510682 +114930,1839,Michael Lehmann,1301437054 +114930,1844,Pedro Almodóvar,1328576338 +114930,1845,Jake Kasdan,1256574109 +114930,1846,Gary Oldman,1332465641 +114930,1848,Peter Hewitt,1302804229 +114930,1858,Sammo Hung Kam-Bo,1332892621 +114930,1859,Abbas Kiarostami,1292234166 +114930,1859,Criterion,1244223287 +114930,1859,Golden Palm,1244224589 +114930,1860,Mike van Diem,1335282769 +114930,1863,John Warren,1335327840 +114930,1866,Kirk Wong,1302674075 +114930,1869,Kevin Hooks,1333064798 +114930,1872,Michael Winterbottom,1406887547 +114930,1873,Bille August,1302080156 +114930,1876,Mimi Leder,1328741461 +114930,1879,Thom Fitzgerald,1329971031 +114930,1880,John Duigan,1335270896 +114930,1882,Jean Reno,1300400861 +114930,1882,Roland Emmerich,1300401272 +114930,1883,Warren Beatty,1334968672 +114930,1884,Criterion,1293735407 +114930,1884,Terry Gilliam,1302886988 +114930,1885,Don Roos,1263271975 +114930,1887,Christopher Guest,1301550999 +114930,1888,Forest Whitaker,1313789618 +114930,1889,Criterion,1273341380 +114930,1889,Erik Skjoldbjærg,1332900557 +114930,1892,Andrew Davis,1301035105 +114930,1893,Caroline Link,1335133564 +114930,1894,David Schwimmer,1297400784 +114930,1894,Ivan Reitman,1312352671 +114930,1895,Deborah Kaplan,1335406885 +114930,1895,Harry Elfont,1335406885 +114930,1895,Jason Segel,1296947664 +114930,1897,Lisa Cholodenko,1335325893 +114930,1900,Majid Majidi,1330481825 +114930,1904,Hal Hartley,1301445765 +114930,1907,Barry Cook,1328521080 +114930,1907,Tony Bancroft,1328521080 +114930,1911,Betty Thomas,1301548939 +114930,1912,Steven Soderbergh,1297810227 +114930,1913,Criterion,1215561729 +114930,1913,Peter Weir,1299963613 +114930,1914,Chris Eyre,1335345218 +114930,1915,Manoel de Oliveira,1411721449 +114930,1916,Vincent Gallo,1328394365 +114930,1917,Criterion,1237022967 +114930,1917,Michael Bay,1323268508 +114930,1918,Jet Li,1300398366 +114930,1918,Richard Donner,1300399325 +114930,1920,Christopher Guest,1297367995 +114930,1920,David Cross,1301552243 +114930,1920,Joe Dante,1299849333 +114930,1921,Darren Aronofsky,1302085927 +114930,1923,Farrelly Brothers,1416382361 +114930,1923,Harland Williams,1301667183 +114930,1925,Oscar (Best Picture),1299359279 +114930,1925,William A. Wellman,1298997091 +114930,1926,Harry Beaumont,1308682486 +114930,1926,Oscar (Best Picture),1299359286 +114930,1927,Lewis Milestone,1298653752 +114930,1927,Oscar (Best Picture),1299359084 +114930,1928,Oscar (Best Picture),1299359298 +114930,1928,Wesley Ruggles,1301457482 +114930,1929,Edmund Goulding,1296356831 +114930,1929,Oscar (Best Picture),1299359188 +114930,1930,Frank Lloyd,1299359603 +114930,1930,Oscar (Best Picture),1299359290 +114930,1931,Frank Lloyd,1298654958 +114930,1931,Oscar (Best Picture),1299359227 +114930,1932,Oscar (Best Picture),1299359192 +114930,1932,Robert Z. Leonard,1299363730 +114930,1933,Oscar (Best Picture),1299359217 +114930,1933,William Dieterle,1297639111 +114930,1934,Frank Capra,1297816245 +114930,1934,Oscar (Best Picture),1299359117 +114930,1935,John Ford,1299363033 +114930,1935,Oscar (Best Picture),1299359204 +114930,1936,Oscar (Best Picture),1299359225 +114930,1936,William Wyler,1319417120 +114930,1937,Leo McCarey,1297638730 +114930,1937,Oscar (Best Picture),1299359175 +114930,1938,Billy Wilder,1238803298 +114930,1938,Oscar (Best Picture),1299359220 +114930,1939,Oscar (Best Picture),1299359086 +114930,1939,William Wyler,1319416931 +114930,1940,Elia Kazan,1319415109 +114930,1941,Criterion,1238857459 +114930,1941,Laurence Olivier,1238467689 +114930,1941,Oscar (Best Picture),1299359201 +114930,1942,Oscar (Best Picture),1299359120 +114930,1942,Robert Rossen,1299364851 +114930,1943,Cecil B. DeMille,1299359674 +114930,1943,Oscar (Best Picture),1299359282 +114930,1944,Fred Zinnemann,1298652554 +114930,1944,Oscar (Best Picture),1299359163 +114930,1945,Best of Rotten Tomatoes: All Time,1290798087 +114930,1945,Criterion,1360319662 +114930,1945,Elia Kazan,1319415122 +114930,1946,Delbert Mann,1297367847 +114930,1946,Golden Palm,1244223830 +114930,1946,Oscar (Best Picture),1299359223 +114930,1947,Oscar (Best Picture),1299359276 +114930,1947,Robert Wise,1298998037 +114930,1948,Oscar (Best Picture),1299359273 +114930,1948,Tony Richardson,1298653451 +114930,1949,Fred Zinnemann,1298652545 +114930,1949,Orson Welles,1319697383 +114930,1949,Oscar (Best Picture),1299359100 +114930,1950,Norman Jewison,1302777581 +114930,1950,Oscar (Best Picture),1299359094 +114930,1950,Sidney Poitier,1297815683 +114930,1951,Carol Reed,1299361528 +114930,1951,Oscar (Best Picture),1299359238 +114930,1952,John Schlesinger,1239137780 +114930,1952,Oscar (Best Picture),1299359102 +114930,1953,William Friedkin,1318242036 +114930,1954,John G. Avildsen,1300401823 +114930,1955,Oscar (Best Picture),1299359209 +114930,1955,Robert Benton,1299362491 +114930,1956,Oscar (Best Picture),1299359246 +114930,1956,Robert Redford,1299361024 +114930,1957,Hugh Hudson,1299364639 +114930,1957,Oscar (Best Picture),1299359135 +114930,1958,James L. Brooks,1299360503 +114930,1958,Oscar (Best Picture),1299359266 +114930,1959,Oscar (Best Picture),1299359250 +114930,1959,Sydney Pollack,1299360667 +114930,1960,Bernardo Bertolucci,1239042250 +114930,1960,Criterion,1335510713 +114930,1960,Oscar (Best Picture),1299359215 +114930,1961,Barry Levinson,1299744930 +114930,1962,Bruce Beresford,1301001620 +114930,1962,Oscar (Best Picture),1299359150 +114930,1963,Woody Allen,1302670483 +114930,1964,Alan J. Pakula,1316715435 +114930,1965,Alex Cox,1311992594 +114930,1965,Criterion,1360319891 +114930,1966,Criterion,1335512005 +114930,1966,Whit Stillman,1273596565 +114930,1967,Jim Henson,1239151486 +114930,1968,John Hughes,1302039659 +114930,1982,John Carpenter,1319412870 +114930,1983,Rick Rosenthal,1296357031 +114930,1984,Tommy Lee Wallace,1326209230 +114930,1985,Dwight H. Little,1326613881 +114930,1986,Dominique Othenin-Girard,1335322628 +114930,1991,Tom Holland,1323658376 +114930,1992,John Lafia,1335328750 +114930,1993,Jack Bender,1326442539 +114930,1994,Tobe Hooper,1333680849 +114930,1997,William Friedkin,1318242040 +114930,2000,Richard Donner,1300399317 +114930,2001,Richard Donner,1300399306 +114930,2002,Richard Donner,1300399304 +114930,2003,Joe Dante,1239151794 +114930,2004,Joe Dante,1239151791 +114930,2005,Richard Donner,1300399313 +114930,2006,Martin Campbell,1308056899 +114930,2009,Richard Fleischer,1319413315 +114930,2010,Fritz Lang,1319417435 +114930,2011,Michael J. Fox,1299641778 +114930,2011,Robert Zemeckis,1299645493 +114930,2012,Michael J. Fox,1299641781 +114930,2012,Robert Zemeckis,1299645495 +114930,2013,Irwin Allen,1413162276 +114930,2013,Ronald Neame,1299847138 +114930,2017,Jack Donohue,1332465554 +114930,2018,David Hand,1328931222 +114930,2019,Akira Kurosawa,1268796047 +114930,2019,Best of Rotten Tomatoes: All Time,1290798793 +114930,2019,Criterion,1268797194 +114930,2019,Takashi Shimura,1268796404 +114930,2019,Toshirô Mifune,1268796404 +114930,2020,Stephen Frears,1319412617 +114930,2022,Criterion,1256574164 +114930,2022,Martin Scorsese,1299844187 +114930,2023,Francis Ford Coppola,1319412281 +114930,2026,David Nutter,1296340286 +114930,2027,Jim Abrahams,1299850930 +114930,2028,Steven Spielberg,1299850173 +114930,2029,Tommy O'Haver,1326613292 +114930,2036,Rupert Wainwright,1239068828 +114930,2042,Sam Weisman,1329042173 +114930,2043,Robert Stevenson,1402213440 +114930,2048,Burny Mattinson,1402649181 +114930,2048,David Michener,1402649181 +114930,2048,John Musker,1402649181 +114930,2048,Ron Clements,1402210798 +114930,2052,Kenny Ortega,1324563282 +114930,2053,Randal Kleiser,1301898941 +114930,2054,Joe Johnston,1310677397 +114930,2057,Fletcher Markle,1421154920 +114930,2058,F. Gary Gray,1238737477 +114930,2059,Nancy Meyers,1328394746 +114930,2060,David Zucker,1299849174 +114930,2060,Stephen McHattie,1299872459 +114930,2064,Michael Moore,1239085954 +114930,2065,Woody Allen,1302670495 +114930,2066,Jacques Tourneur,1299846476 +114930,2067,David Lean,1297817562 +114930,2068,Best of Rotten Tomatoes: All Time,1290797729 +114930,2068,Criterion,1278797446 +114930,2068,Ingmar Bergman,1303239891 +114930,2069,Peter Masterson,1335327948 +114930,2070,Bruce Beresford,1301001702 +114930,2071,Roger Spottiswoode,1300396768 +114930,2072,Joe Dante,1239151794 +114930,2073,Kevin Costner,1301036413 +114930,2073,Kevin Reynolds,1299961142 +114930,2074,Criterion,1239136751 +114930,2074,Liliana Cavani,1335230629 +114930,2075,István Szabó,1322755637 +114930,2076,David Lynch,1301903626 +114930,2077,Jeremy Paul Kagan,1328568864 +114930,2078,Wolfgang Reitherman,1300336131 +114930,2080,Clyde Geronimi,1300992717 +114930,2081,John Musker,1299848103 +114930,2081,Ron Clements,1239112168 +114930,2082,Stephen Herek,1323658459 +114930,2083,Brian Henson,1335407192 +114930,2085,Clyde Geronimi,1300992702 +114930,2085,Hamilton Luske,1300992656 +114930,2085,Wolfgang Reitherman,1300336128 +114930,2087,Clyde Geronimi,1300992715 +114930,2090,Art Stevens,1402910451 +114930,2090,John Lounsbery,1402209541 +114930,2090,Wolfgang Reitherman,1402910451 +114930,2092,Alan Zaslove,1328837177 +114930,2092,Tad Stones,1328837177 +114930,2092,Toby Shelton,1328837177 +114930,2094,Joe Johnston,1310677399 +114930,2096,Clyde Geronimi,1300992711 +114930,2099,Harve Foster,1300992954 +114930,2099,Wilfred Jackson,1300992940 +114930,2100,Ron Howard,1300401042 +114930,2103,Jeremiah S. Chechik,1302030022 +114930,2106,Thomas Carter,1326335988 +114930,2107,Steve Miner,1302000934 +114930,2108,Mick Jackson,1301035940 +114930,2109,Carl Reiner,1326616431 +114930,2111,Carl Reiner,1326616432 +114930,2113,Ralph S. Singleton,1325894628 +114930,2114,Francis Ford Coppola,1319412239 +114930,2115,Steven Spielberg,1299850156 +114930,2117,Michael Radford,1328390895 +114930,2118,David Cronenberg,1238149131 +114930,2119,Stephen King,1335329113 +114930,2121,Lewis Teague,1301999926 +114930,2123,Dan Kuenster,1304433047 +114930,2123,Don Bluth,1304432549 +114930,2123,Gary Goldman,1304433032 +114930,2124,Barry Sonnenfeld,1299645268 +114930,2125,Andy Tennant,1239132935 +114930,2126,Brian De Palma,1299643407 +114930,2130,Louis Malle,1318244377 +114930,2130,Nudity (Topless - Notable),1261612241 +114930,2131,Criterion,1238856957 +114930,2131,Ingmar Bergman,1303239876 +114930,2132,Mike Nichols,1300414572 +114930,2133,Chris Columbus,1302035352 +114930,2134,John Hughes,1302039639 +114930,2136,Jerry Lewis,1239145675 +114930,2137,Charles A. Nichols,1335409814 +114930,2138,Criterion,1421654241 +114930,2138,Martin Rosen,1271732637 +114930,2139,Don Bluth,1304432544 +114930,2140,Frank Oz,1328577448 +114930,2140,Jim Henson,1239157320 +114930,2141,Don Bluth,1304432547 +114930,2142,Phil Nibbelink,1335342780 +114930,2142,Simon Wells,1300336005 +114930,2144,John Hughes,1302039654 +114930,2145,Andrew McCarthy,1315404762 +114930,2145,Howard Deutch,1239064987 +114930,2149,Ethan Wiley,1301996508 +114930,2150,Jamie Uys,1335420503 +114930,2160,Criterion,1349031927 +114930,2160,Roman Polanski,1301899751 +114930,2161,Wolfgang Petersen,1300999162 +114930,2163,John De Bello,1328931376 +114930,2166,Joseph Ruben,1323659859 +114930,2167,Stephen Norrington,1332900636 +114930,2169,Alan Cohn,1335328030 +114930,2169,Jason Segel,1296947652 +114930,2170,Pat Proft,1330133588 +114930,2171,Brad Anderson,1298995271 +114930,2173,Vincent Ward,1326615428 +114930,2174,Tim Burton,1238806611 +114930,2175,Henry Jaglom,1410126143 +114930,2176,Alfred Hitchcock,1298656089 +114930,2178,Alfred Hitchcock,1298656066 +114930,2181,Alfred Hitchcock,1298656071 +114930,2182,Alfred Hitchcock,1298656105 +114930,2183,Alfred Hitchcock,1298656060 +114930,2184,Alfred Hitchcock,1298656103 +114930,2185,Alfred Hitchcock,1298656093 +114930,2186,Alfred Hitchcock,1298656062 +114930,2187,Alfred Hitchcock,1298655694 +114930,2193,Ron Howard,1300401037 +114930,2194,Brian De Palma,1299643417 +114930,2194,Kevin Costner,1301036417 +114930,2195,Bob Saget,1328392533 +114930,2196,Hark Tsui,1239133583 +114930,2196,Jean-Claude Van Damme,1300401489 +114930,2197,William Nicholson,1332900216 +114930,2202,Alfred Hitchcock,1298656085 +114930,2203,Alfred Hitchcock,1298656036 +114930,2203,Best of Rotten Tomatoes: All Time,1290798376 +114930,2204,Alfred Hitchcock,1298656074 +114930,2206,Alfred Hitchcock,1298656047 +114930,2207,Alfred Hitchcock,1298656082 +114930,2208,Alfred Hitchcock,1298656031 +114930,2208,Criterion,1201631271 +114930,2209,Alfred Hitchcock,1402202440 +114930,2210,Alfred Hitchcock,1298656098 +114930,2212,Alfred Hitchcock,1298656095 +114930,2212,Criterion,1351713074 +114930,2221,Alfred Hitchcock,1298655660 +114930,2227,Alfred Hitchcock,1298655659 +114930,2231,John Dahl,1300414885 +114930,2232,Vincenzo Natali,1320434635 +114930,2236,Mark Steven Johnson,1302000032 +114930,2237,Robert Towne,1326338540 +114930,2238,Lina Wertmüller,1272049420 +114930,2239,Lina Wertmüller,1295375937 +114930,2240,Tony Bill,1300400300 +114930,2243,Criterion,1335429449 +114930,2243,James L. Brooks,1299360505 +114930,2245,Nudity (Topless - Notable),1261611355 +114930,2247,Jonathan Demme,1419833126 +114930,2248,Best of Rotten Tomatoes: All Time,1290798350 +114930,2248,Cameron Crowe,1238877998 +114930,2249,Herbert Ross,1297642078 +114930,2252,Stephen Frears,1319412587 +114930,2261,Savage Steve Holland,1328329922 +114930,2262,Edward Zwick,1333681550 +114930,2264,Neil Jordan,1367862972 +114930,2265,Dan Aykroyd,1335301051 +114930,2268,Christopher Guest,1297367987 +114930,2268,Rob Reiner,1299642971 +114930,2272,Carl Franklin,1335323079 +114930,2273,Brett Ratner,1296356593 +114930,2278,Jean Reno,1300400885 +114930,2278,John Frankenheimer,1300401156 +114930,2279,Jamie Blanks,1328328145 +114930,2284,Shekhar Kapur,1302641345 +114930,2285,Criterion,1268710333 +114930,2285,Lindsay Anderson,1299845959 +114930,2287,Gordon Douglas,1299955692 +114930,2288,John Carpenter,1319412868 +114930,2289,Robert Altman,1301000658 +114930,2290,Woody Allen,1302670407 +114930,2291,Tim Burton,1238806599 +114930,2294,Eric Darnell,1297402715 +114930,2294,Tim Johnson,1333063907 +114930,2296,John Fortenberry,1302239924 +114930,2297,Vincent Ward,1326615429 +114930,2300,Mel Brooks,1239048336 +114930,2301,Mel Brooks,1328740542 +114930,2301,Orson Welles,1319697390 +114930,2302,Jonathan Lynn,1299645343 +114930,2303,Criterion,1399775446 +114930,2303,Robert Altman,1301000603 +114930,2305,Marc Levin,1301436839 +114930,2306,Stephen Herek,1323658471 +114930,2307,Bruno Barreto,1302673796 +114930,2309,Stefan Ruzowitzky,1407323624 +114930,2310,Peter Chelsom,1329267283 +114930,2312,Randa Haines,1263220269 +114930,2313,David Lynch,1301903623 +114930,2315,Ronny Yu,1263341642 +114930,2318,Todd Solondz,1302235598 +114930,2320,Bryan Singer,1293735655 +114930,2320,David Schwimmer,1297400782 +114930,2321,Gary Ross,1323173668 +114930,2322,Paul W.S. Anderson,1306101723 +114930,2323,Bennett Miller,1299963351 +114930,2324,Roberto Benigni,1198263530 +114930,2328,John Carpenter,1382216425 +114930,2329,Tony Kaye,1255420246 +114930,2330,S.R. Bindler,1331077979 +114930,2333,Bill Condon,1322757677 +114930,2334,Edward Zwick,1296379032 +114930,2335,Frank Coraci,1310419560 +114930,2336,Shekhar Kapur,1302641366 +114930,2338,Danny Cannon,1326209485 +114930,2342,Bruce McDonald,1335157693 +114930,2344,Andrey Konchalovskiy,1419436453 +114930,2345,Eugene Corr,1335230214 +114930,2348,Alex Cox,1311992594 +114930,2348,Criterion,1201631810 +114930,2349,Criterion,1265381216 +114930,2349,Neil Jordan,1302637184 +114930,2351,Criterion,1238856597 +114930,2351,Federico Fellini,1299448498 +114930,2352,Criterion,1399778597 +114930,2352,Lawrence Kasdan,1299962711 +114930,2353,Tony Scott,1301034967 +114930,2354,Igor Kovalyov,1335329094 +114930,2355,John Lasseter,1326442343 +114930,2357,Walter Salles,1238972072 +114930,2358,Predrag Antonijevic,1328394729 +114930,2359,Kirk Jones,1295122542 +114930,2360,Thomas Vinterberg,1297398979 +114930,2360,Ulrich Thomsen,1333065622 +114930,2363,Criterion,1335506719 +114930,2363,Ishirô Honda,1306103366 +114930,2363,Takashi Shimura,1238262470 +114930,2366,Best of Rotten Tomatoes: All Time,1290797896 +114930,2366,Ernest B. Schoedsack,1301159774 +114930,2366,Merian C. Cooper,1301159758 +114930,2371,Michael Ritchie,1335410224 +114930,2373,Richard Fleischer,1319413277 +114930,2375,Richard Benjamin,1323688125 +114930,2378,Hugh Wilson,1328329668 +114930,2384,George Miller,1299849669 +114930,2387,Peter Berg,1328390741 +114930,2388,Ferzan Ozpetek,1417208429 +114930,2389,Gus Van Sant,1326209084 +114930,2390,Mark Herman,1299851829 +114930,2391,Sam Raimi,1301035633 +114930,2395,Criterion,1335424407 +114930,2395,Jason Schwartzman,1272050696 +114930,2395,Wes Anderson,1296952046 +114930,2396,John Madden,1299360558 +114930,2396,Oscar (Best Picture),1299359259 +114930,2398,George Seaton,1297638382 +114930,2399,Jeannot Szwarc,1296872666 +114930,2401,Clint Eastwood,1299644721 +114930,2403,Ted Kotcheff,1300337703 +114930,2405,Lewis Teague,1299041495 +114930,2406,Robert Zemeckis,1299645581 +114930,2411,Sylvester Stallone,1333070035 +114930,2416,Alan Metter,1326615893 +114930,2420,John G. Avildsen,1238999306 +114930,2421,John G. Avildsen,1238999319 +114930,2422,John G. Avildsen,1256568391 +114930,2423,Jeremiah S. Chechik,1302030020 +114930,2424,Nora Ephron,1302040331 +114930,2425,John Boorman,1302776925 +114930,2427,Criterion,1335657606 +114930,2427,Terrence Malick,1306102889 +114930,2428,Robert Rodriguez,1299961980 +114930,2429,Ron Underwood,1325894046 +114930,2430,Ernest B. Schoedsack,1402208969 +114930,2431,Tom Shadyac,1238968594 +114930,2432,Chris Columbus,1302035348 +114930,2433,Steven Zaillian,1335408085 +114930,2434,Maya Angelou,1323659937 +114930,2436,Franco Zeffirelli,1300338958 +114930,2437,Brian Gilbert,1302287849 +114930,2439,Paul Schrader,1299642637 +114930,2442,Anand Tucker,1335332465 +114930,2443,Willard Carroll,1335329189 +114930,2445,Irwin Winkler,1239070566 +114930,2446,Neil Jordan,1302637184 +114930,2448,John Bruno,1328520202 +114930,2450,Willard Huyck,1312320598 +114930,2451,Tibor Takács,1327621528 +114930,2453,Nick Castle,1256065906 +114930,2454,Kurt Neumann,1299848230 +114930,2455,David Cronenberg,1402576966 +114930,2458,Mark L. Lester,1302240978 +114930,2459,Tobe Hooper,1335345367 +114930,2465,Wes Craven,1303239438 +114930,2467,Jean-Jacques Annaud,1302034234 +114930,2470,Peter Faiman,1239212915 +114930,2471,John Cornell,1327115730 +114930,2473,Steve Miner,1302000911 +114930,2474,Martin Scorsese,1311353546 +114930,2475,John Frankenheimer,1313789321 +114930,2478,John Landis,1298994514 +114930,2479,Sidney Lumet,1319416048 +114930,2481,Ken Loach,1293230084 +114930,2483,Álex de la Iglesia,1414480544 +114930,2485,Robert Iscove,1335409203 +114930,2488,Criterion,1255422329 +114930,2488,Michael Powell,1299745360 +114930,2490,Brian Helgeland,1326614803 +114930,2493,Joseph Vilsmaier,1302799928 +114930,2494,James Moll,1304576701 +114930,2495,René Laloux,1335304359 +114930,2496,Hugh Wilson,1328329671 +114930,2500,Darren Stein,1335327171 +114930,2501,Joe Johnston,1310677392 +114930,2502,Mike Judge,1299960727 +114930,2503,Samira Makhmalbaf,1294254106 +114930,2505,Joel Schumacher,1299962122 +114930,2511,Robert Altman,1301000172 +114930,2512,Shôhei Imamura,1315398329 +114930,2513,Mary Lambert,1326209353 +114930,2514,Mary Lambert,1326209350 +114930,2517,John Carpenter,1319412875 +114930,2524,John Guillermin,1413162450 +114930,2527,Michael Crichton,1267819755 +114930,2528,Michael Anderson,1299364764 +114930,2529,Franklin J. Schaffner,1301898441 +114930,2530,Ted Post,1326208633 +114930,2531,J. Lee Thompson,1319407806 +114930,2532,J. Lee Thompson,1319407804 +114930,2538,Matthew Diamond,1334964371 +114930,2539,Harold Ramis,1324753798 +114930,2541,Roger Kumble,1239053019 +114930,2542,Guy Ritchie,1300339494 +114930,2542,Vinnie Jones,1298123464 +114930,2546,Ulu Grosbard,1327115485 +114930,2548,Robert Mandel,1258525941 +114930,2550,Robert Wise,1298998004 +114930,2551,Criterion,1201631829 +114930,2551,David Cronenberg,1239143252 +114930,2552,Bob Balaban,1312831093 +114930,2553,Wolf Rilla,1406635709 +114930,2555,Bob Clark,1312344049 +114930,2557,Gaspar Noé,1302085596 +114930,2560,Antonia Bird,1328520546 +114930,2563,Marshall Herskovitz,1335307942 +114930,2565,Walter Lang,1298119798 +114930,2570,Tony Goldwyn,1325939794 +114930,2571,Wachowski Brothers,1325895331 +114930,2572,Gil Junger,1328837138 +114930,2573,Carlos Saura,1442823582 +114930,2574,Sam Weisman,1329042177 +114930,2575,Erick Zonca,1297810621 +114930,2579,Christopher Nolan,1239046274 +114930,2579,Criterion,1349032121 +114930,2580,Doug Liman,1302085561 +114930,2581,Raja Gosnell,1301436951 +114930,2583,Robert Altman,1301000498 +114930,2585,Julio Medem,1295591854 +114930,2587,Ted Demme,1333680908 +114930,2590,Nudity (Topless - Notable),1261610484 +114930,2593,Michel Filippi,1335286542 +114930,2593,Roberto Benigni,1239071917 +114930,2594,Alejandro Amenábar,1239068123 +114930,2596,James Merendino,1335333364 +114930,2596,Jason Segel,1296947657 +114930,2597,Jeff Pollack,1328390340 +114930,2598,Nudity (Topless - Notable),1261608300 +114930,2599,Alexander Payne,1322758506 +114930,2605,Jon Amiel,1300229550 +114930,2606,Rodman Flender,1335033735 +114930,2607,Simon Shore,1335299386 +114930,2609,Tian-Ming Wu,1271735613 +114930,2610,Tony Bui,1272642467 +114930,2611,David Mamet,1327649687 +114930,2612,Michael Curtiz,1299845830 +114930,2616,Warren Beatty,1334968674 +114930,2617,Stephen Sommers,1326440347 +114930,2618,Rob Sitch,1328568741 +114930,2620,Paul Quinn,1335157411 +114930,2621,Joan Chen,1335278727 +114930,2624,Hirokazu Koreeda,1258527737 +114930,2625,Daniel Lee,1327539839 +114930,2625,Jet Li,1300398348 +114930,2626,David Moreton,1335232050 +114930,2627,Bud Greenspan,1335053214 +114930,2627,Leslie Woodhead,1335053214 +114930,2628,George Lucas,1320185280 +114930,2629,Peter Chan,1292231259 +114930,2630,Bernardo Bertolucci,1292425768 +114930,2632,Wojciech Has,1335078662 +114930,2633,Karl Freund,1402206201 +114930,2639,Frank Perry,1335329588 +114930,2640,Richard Donner,1300399320 +114930,2644,Tod Browning,1326337165 +114930,2648,Best of Rotten Tomatoes: All Time,1290797740 +114930,2648,James Whale,1321654290 +114930,2649,Rowland V. Lee,1402202484 +114930,2652,Terence Fisher,1402213138 +114930,2654,George Waggner,1335306002 +114930,2660,Christian Nyby,1319416713 +114930,2660,Howard Hawks,1319416683 +114930,2662,Byron Haskin,1301162876 +114930,2664,Best of Rotten Tomatoes: All Time,1290797874 +114930,2664,Don Siegel,1297814986 +114930,2668,Wes Craven,1303239508 +114930,2669,Lewis Milestone,1298653732 +114930,2670,Robert Wise,1298997994 +114930,2671,Rhys Ifans,1302641794 +114930,2671,Roger Michell,1302083000 +114930,2676,Jon Turteltaub,1320183122 +114930,2677,Wim Wenders,1302286298 +114930,2682,John Sayles,1301543318 +114930,2683,Jay Roach,1272588936 +114930,2686,François Girard,1300999611 +114930,2687,Chris Buck,1316715632 +114930,2688,Simon West,1299914951 +114930,2690,Oliver Parker,1295601315 +114930,2691,Giuseppe Tornatore,1335298945 +114930,2692,Tom Tykwer,1302236061 +114930,2693,Roger Nygard,1296339359 +114930,2694,Dennis Dugan,1300230356 +114930,2695,Rowan Woods,1403608237 +114930,2696,Francis Veber,1300399784 +114930,2697,Udayan Prasad,1328521119 +114930,2699,Frank Marshall,1329129967 +114930,2700,Trey Parker,1335422742 +114930,2704,Leos Carax,1335036074 +114930,2705,Olivier Assayas,1418019555 +114930,2707,Mark Pellington,1323266404 +114930,2708,Eric Rohmer,1319412004 +114930,2710,Daniel Myrick,1327649281 +114930,2711,Hugh Hudson,1299364674 +114930,2713,Steve Miner,1302000935 +114930,2716,Harold Ramis,1293923539 +114930,2716,Ivan Reitman,1312352702 +114930,2719,Jan de Bont,1302778427 +114930,2721,Jim Fall,1329001902 +114930,2722,Renny Harlin,1299960994 +114930,2724,Garry Marshall,1302597012 +114930,2725,Michael Polish,1335303818 +114930,2726,Criterion,1335510253 +114930,2726,Stanley Kubrick,1238806310 +114930,2728,Criterion,1239146565 +114930,2728,Stanley Kubrick,1299852695 +114930,2729,Stanley Kubrick,1238468316 +114930,2730,Stanley Kubrick,1299852692 +114930,2731,Best of Rotten Tomatoes: All Time,1290798439 +114930,2731,Criterion,1268710585 +114930,2731,François Truffaut,1268710934 +114930,2732,Criterion,1268710608 +114930,2732,François Truffaut,1268710942 +114930,2735,Michael Ritchie,1319408080 +114930,2739,Steven Spielberg,1299850119 +114930,2742,Bertrand Blier,1408270822 +114930,2742,Gérard Depardieu,1408270822 +114930,2744,Franco Zeffirelli,1300338986 +114930,2745,Roland Joffé,1302287657 +114930,2746,Frank Oz,1302035120 +114930,2750,Woody Allen,1302670483 +114930,2757,Graeme Clifford,1301035316 +114930,2757,Kevin Costner,1301036401 +114930,2759,Andrew Fleming,1312349267 +114930,2761,Brad Bird,1238880388 +114930,2762,M. Night Shyamalan,1321657094 +114930,2763,John McTiernan,1300400750 +114930,2764,Norman Jewison,1302777556 +114930,2770,Frank Oz,1302035126 +114930,2771,Jonathan Kaplan,1302674027 +114930,2776,Anna Maria Tatò,1273112587 +114930,2777,Joseph Henabery,1402214133 +114930,2779,Warren Beatty,1334968677 +114930,2782,Roger Corman,1402207037 +114930,2784,Roger Corman,1402207032 +114930,2787,Lewis Teague,1301999920 +114930,2788,Ian MacNaughton,1328931173 +114930,2791,David Zucker,1299849182 +114930,2791,Jerry Zucker,1299849198 +114930,2791,Jim Abrahams,1299850921 +114930,2792,Ken Finkleman,1299851953 +114930,2794,Amy Heckerling,1301034116 +114930,2795,Harold Ramis,1324753788 +114930,2796,George Roy Hill,1300339696 +114930,2797,Penny Marshall,1327115947 +114930,2798,Dennis Dugan,1300230369 +114930,2799,Brian Levant,1300335972 +114930,2803,Alan J. Pakula,1316715350 +114930,2804,Bob Clark,1312344041 +114930,2805,Kelly Makin,1335408700 +114930,2806,Kevin Williamson,1335340346 +114930,2807,Jean-Claude Van Damme,1300401474 +114930,2807,Mic Rodgers,1300402227 +114930,2808,Jean-Claude Van Damme,1300401463 +114930,2808,Roland Emmerich,1238376524 +114930,2809,Jeff Franklin,1335231676 +114930,2810,Satoshi Kon,1335324870 +114930,2819,Sydney Pollack,1299360977 +114930,2820,John Gielgud,1335275437 +114930,2821,Cecil B. DeMille,1402202099 +114930,2824,Brett Morgen,1302030686 +114930,2824,Nanette Burstein,1302030732 +114930,2829,Albert Brooks,1323267597 +114930,2835,Hugh Johnson,1327648214 +114930,2839,Ziad Doueiri,1302481566 +114930,2841,David Koepp,1335408240 +114930,2843,Emir Kusturica,1292221358 +114930,2846,Masanori Hata,1258527992 +114930,2847,Criterion,1453096250 +114930,2847,Howard Hawks,1319416440 +114930,2848,Orson Welles,1238143054 +114930,2852,Norman Jewison,1302777536 +114930,2857,George Dunning,1335408200 +114930,2858,Sam Mendes,1272049188 +114930,2859,Jonathan Demme,1238859246 +114930,2860,Les Mayfield,1323660023 +114930,2863,Best of Rotten Tomatoes: All Time,1290797332 +114930,2863,Criterion,1399778398 +114930,2863,Richard Lester,1318243924 +114930,2866,Steve Rash,1335332334 +114930,2870,Gene Saks,1300993116 +114930,2871,John Boorman,1302776987 +114930,2872,John Boorman,1302776972 +114930,2876,Don Bluth,1304432541 +114930,2876,Gary Goldman,1304433028 +114930,2879,Jackie Chan,1301668665 +114930,2880,Eric Tsang,1420724606 +114930,2880,Jackie Chan,1420724439 +114930,2881,Bruce Beresford,1301001619 +114930,2882,Peter Kassovitz,1335324886 +114930,2888,John Schultz,1308682552 +114930,2890,David O. Russell,1327621655 +114930,2891,Mark Illsley,1335332413 +114930,2897,Criterion,1238259149 +114930,2897,Federico Fellini,1299448489 +114930,2900,George A. Romero,1315405072 +114930,2905,Akira Kurosawa,1268796040 +114930,2905,Criterion,1268797175 +114930,2905,Takashi Shimura,1268796386 +114930,2905,Tatsuya Nakadai,1268796386 +114930,2905,Toshirô Mifune,1268796386 +114930,2907,Bruce McCulloch,1296351558 +114930,2907,Harland Williams,1301667181 +114930,2908,Kimberly Peirce,1258372363 +114930,2912,Steven Soderbergh,1238950703 +114930,2915,Paul Brickman,1328931326 +114930,2916,Paul Verhoeven,1302283833 +114930,2917,Lawrence Kasdan,1299962697 +114930,2918,John Hughes,1302039657 +114930,2919,Peter Weir,1299963807 +114930,2920,Criterion,1335424753 +114930,2920,Marcel Carné,1311353183 +114930,2921,Clint Eastwood,1299644673 +114930,2922,Clint Eastwood,1299644624 +114930,2922,Ted Post,1326208629 +114930,2924,Woo-ping Yuen,1300396482 +114930,2925,Bernardo Bertolucci,1239042232 +114930,2925,Best of Rotten Tomatoes: All Time,1290797851 +114930,2927,Criterion,1201666667 +114930,2927,David Lean,1297817559 +114930,2929,Warren Beatty,1334968675 +114930,2930,Freida Lee Mock,1328524314 +114930,2930,Terry Sanders,1328524314 +114930,2931,Emir Kusturica,1292221356 +114930,2932,Criterion,1335424127 +114930,2932,Terrence Malick,1238888997 +114930,2933,Criterion,1238857417 +114930,2933,Louis Malle,1239138081 +114930,2934,Carlos Saura,1276457877 +114930,2934,Criterion,1276457746 +114930,2935,Criterion,1238861370 +114930,2935,Preston Sturges,1238861225 +114930,2936,Criterion,1238861230 +114930,2936,Preston Sturges,1238861232 +114930,2937,Criterion,1421654024 +114930,2937,Preston Sturges,1238861228 +114930,2938,Eliseo Subiela,1315396596 +114930,2939,Henry Hathaway,1319411185 +114930,2940,Charles Vidor,1272989433 +114930,2940,Criterion,1453095845 +114930,2941,Joshua Logan,1298652866 +114930,2943,Régis Wargnier,1293183822 +114930,2944,Charles Bronson,1319415521 +114930,2944,Robert Aldrich,1300223699 +114930,2946,Richard Lester,1318243918 +114930,2947,Guy Hamilton,1299847524 +114930,2948,Terence Young,1335410454 +114930,2949,Terence Young,1335410467 +114930,2950,Randal Kleiser,1301898944 +114930,2951,Clint Eastwood,1299644753 +114930,2951,Sergio Leone,1239047707 +114930,2952,Paul Thomas Anderson,1302778632 +114930,2953,Chris Columbus,1302035353 +114930,2957,Tom McNamara,1407063374 +114930,2957,William Beaudine,1407063349 +114930,2959,David Fincher,1302085849 +114930,2961,Rob Reiner,1299642970 +114930,2965,Robert Marcarelli,1326616945 +114930,2966,David Lynch,1301903568 +114930,2967,Mervyn LeRoy,1304915064 +114930,2968,Criterion,1239136267 +114930,2968,Terry Gilliam,1302887684 +114930,2969,Claude Lelouch,1292923702 +114930,2969,Golden Palm,1244223514 +114930,2970,Werner Herzog,1239080782 +114930,2971,Bob Fosse,1239111769 +114930,2971,Criterion,1421652574 +114930,2972,Zhang Yimou,1300399127 +114930,2973,Woody Allen,1302670493 +114930,2976,Martin Scorsese,1299844315 +114930,2978,Damon Santostefano,1322756538 +114930,2983,Sidney J. Furie,1335302978 +114930,2984,Bruce Brown,1335081565 +114930,2985,Criterion,1201631977 +114930,2985,Paul Verhoeven,1302283829 +114930,2986,Irvin Kershner,1239152788 +114930,2987,Robert Zemeckis,1299645578 +114930,2988,Jonathan Demme,1335303333 +114930,2990,John Glen,1301436800 +114930,2991,Guy Hamilton,1299847524 +114930,2993,Terence Young,1335407968 +114930,2995,William Malone,1331352144 +114930,2997,Criterion,1335426345 +114930,2997,Spike Jonze,1332900233 +114930,3000,Hayao Miyazaki,1238925936 +114930,3002,Werner Herzog,1239080768 +114930,3004,Gary Sinyor,1302031667 +114930,3005,Phillip Noyce,1312350725 +114930,3006,Michael Mann,1302595476 +114930,3007,Chris Smith,1327117521 +114930,3008,Don McKellar,1293530296 +114930,3010,Criterion,1341592265 +114930,3010,Golden Palm,1244223839 +114930,3010,Jean-Pierre Dardenne,1306103202 +114930,3010,Luc Dardenne,1306103202 +114930,3011,Sydney Pollack,1299360930 +114930,3012,Buster Keaton,1238131927 +114930,3014,Michael Schultz,1402312083 +114930,3014,Oz Scott,1402312083 +114930,3016,George A. Romero,1315405092 +114930,3018,Stuart Gordon,1292276339 +114930,3019,Gus Van Sant,1326208927 +114930,3020,Joel Schumacher,1299962125 +114930,3022,Buster Keaton,1239124238 +114930,3022,Clyde Bruckman,1301435379 +114930,3028,Franco Zeffirelli,1300338998 +114930,3029,Bruce Malmuth,1260653721 +114930,3030,Akira Kurosawa,1268796053 +114930,3030,Criterion,1268797205 +114930,3030,Takashi Shimura,1268796443 +114930,3030,Toshirô Mifune,1268796443 +114930,3031,Bob Logan,1326442171 +114930,3032,Boris Sagal,1335333983 +114930,3033,Mel Brooks,1328740549 +114930,3034,Wolfgang Reitherman,1300336125 +114930,3035,John Ford,1299363675 +114930,3035,Mervyn LeRoy,1304915069 +114930,3036,Jean-Jacques Annaud,1407715912 +114930,3037,Arthur Penn,1326440867 +114930,3038,Elia Kazan,1319415096 +114930,3039,John Landis,1298994519 +114930,3044,Kenneth Branagh,1304433316 +114930,3047,Peter Duffell,1335048587 +114930,3050,Craig Bolotin,1299960679 +114930,3051,Wayne Wang,1299643166 +114930,3052,Jason Mewes,1297399039 +114930,3052,Kevin Smith,1296350980 +114930,3055,Atom Egoyan,1321658387 +114930,3060,Alan Parker,1326442092 +114930,3061,Mark Sandrich,1327647316 +114930,3062,Andrew Marton,1301668230 +114930,3062,Bernhard Wicki,1301668188 +114930,3062,Darryl F. Zanuck,1301668076 +114930,3062,Ken Annakin,1301668273 +114930,3066,Kinji Fukasaku,1258526699 +114930,3066,Richard Fleischer,1319413305 +114930,3066,Toshio Masuda,1335340897 +114930,3067,Pedro Almodóvar,1238259638 +114930,3068,Sidney Lumet,1319416245 +114930,3069,Paul Newman,1297642185 +114930,3070,W.D. Richter,1333681328 +114930,3071,Ramón Menéndez,1302674260 +114930,3072,Norman Jewison,1302777597 +114930,3074,Sydney Pollack,1299360938 +114930,3075,Best of Rotten Tomatoes: All Time,1290798335 +114930,3075,Criterion,1335424392 +114930,3075,Roman Polanski,1301899676 +114930,3076,Billy Wilder,1302031155 +114930,3077,Michael Apted,1302778181 +114930,3078,Barry Levinson,1299744924 +114930,3079,Patricia Rozema,1302285825 +114930,3080,Aleksandar Popovski,1415645360 +114930,3080,Darko Mitrevski,1415645360 +114930,3081,Tim Burton,1238806602 +114930,3083,Pedro Almodóvar,1238259604 +114930,3086,Charley Rogers,1331692972 +114930,3086,Gus Meins,1331692971 +114930,3086,Oliver Hardy,1296378818 +114930,3086,Stan Laurel,1258437065 +114930,3087,Richard Donner,1300399307 +114930,3088,Henry Koster,1297641593 +114930,3089,Criterion,1237023829 +114930,3089,Vittorio De Sica,1273112208 +114930,3090,John Sayles,1301543358 +114930,3091,Akira Kurosawa,1268796017 +114930,3091,Criterion,1268797105 +114930,3091,Tatsuya Nakadai,1268796191 +114930,3092,Hiroshi Inagaki,1333677767 +114930,3092,Toshirô Mifune,1238262350 +114930,3093,Robert Altman,1301000327 +114930,3094,Criterion,1335511872 +114930,3094,James Ivory,1297639472 +114930,3095,Best of Rotten Tomatoes: All Time,1290798524 +114930,3095,John Ford,1299363590 +114930,3096,Henry Koster,1297641587 +114930,3097,Ernst Lubitsch,1299360434 +114930,3098,Barry Levinson,1299745047 +114930,3100,Robert Redford,1299361146 +114930,3102,Richard Marquand,1335333218 +114930,3104,Martin Brest,1328741391 +114930,3105,Penny Marshall,1327115946 +114930,3107,Ron Howard,1300401036 +114930,3108,Criterion,1453095021 +114930,3108,Terry Gilliam,1302887682 +114930,3111,Robert Benton,1299362607 +114930,3112,Tom Moore,1402038233 +114930,3113,Peter Hyams,1300403136 +114930,3114,Best of Rotten Tomatoes: All Time,1290797200 +114930,3114,John Lasseter,1326442337 +114930,3114,Lee Unkrich,1328394212 +114930,3117,Ang Lee,1300396924 +114930,3117,Criterion,1265382405 +114930,3118,Gavin O'Connor,1318240565 +114930,3121,Ida Lupino,1402578712 +114930,3125,Neil Jordan,1302637281 +114930,3127,Nudity (Topless - Notable),1261610489 +114930,3128,Scott Elliott,1328390370 +114930,3129,Woody Allen,1302670442 +114930,3132,Marshall Neilan,1335083382 +114930,3133,Buster Keaton,1238131950 +114930,3134,Criterion,1201631216 +114930,3134,Jean Renoir,1238875870 +114930,3135,Lewis John Carlino,1326441428 +114930,3140,Buster Keaton,1238131955 +114930,3140,Edward F. Cline,1301435042 +114930,3142,Phil Joanou,1419536379 +114930,3143,John Boorman,1302776876 +114930,3143,Toshirô Mifune,1333065318 +114930,3146,Mike Mitchell,1301540110 +114930,3147,Frank Darabont,1238949345 +114930,3148,Lasse Hallström,1302637112 +114930,3150,Tim Roth,1335272954 +114930,3152,Best of Rotten Tomatoes: All Time,1290798640 +114930,3152,Criterion,1335510763 +114930,3152,Peter Bogdanovich,1238878815 +114930,3153,Nathan Juran,1335333681 +114930,3156,Chris Columbus,1302035350 +114930,3157,Michael J. Fox,1299641772 +114930,3157,Rob Minkoff,1299643597 +114930,3158,Kaige Chen,1335276956 +114930,3159,Don Hahn,1300992473 +114930,3159,Eric Goldberg,1300992462 +114930,3159,Francis Glebas,1300992420 +114930,3159,Gaëtan Brizzi,1300992398 +114930,3159,Hendel Butoy,1300992360 +114930,3159,James Algar,1300992380 +114930,3159,Paul Brizzi,1300992408 +114930,3159,Pixote Hunt,1300992518 +114930,3160,Paul Thomas Anderson,1302778637 +114930,3163,Criterion,1335657912 +114930,3163,Mike Leigh,1238966186 +114930,3167,Mike Nichols,1300414534 +114930,3168,Criterion,1335502512 +114930,3168,Dennis Hopper,1238257844 +114930,3171,Jack Clayton,1302888014 +114930,3174,Milos Forman,1328930162 +114930,3174,Patton Oswalt,1295743283 +114930,3175,Dean Parisot,1335422278 +114930,3176,Anthony Minghella,1299364520 +114930,3177,Steve Carr,1239133253 +114930,3178,Norman Jewison,1302777587 +114930,3179,Alan Parker,1326442028 +114930,3180,Ron Shelton,1301035972 +114930,3181,Julie Taymor,1238971626 +114930,3182,Best of Rotten Tomatoes: All Time,1290798047 +114930,3182,Errol Morris,1238394003 +114930,3186,James Mangold,1299852243 +114930,3188,Aviva Kempner,1308333275 +114930,3189,Jay Russell,1323659745 +114930,3192,Santosh Sivan,1332889846 +114930,3194,Sydney Pollack,1335328271 +114930,3195,John S. Robertson,1408699096 +114930,3196,Billy Wilder,1238803263 +114930,3198,Franklin J. Schaffner,1301898433 +114930,3200,Hal Ashby,1300230798 +114930,3201,Bob Rafelson,1328931238 +114930,3201,Criterion,1335505021 +114930,3202,Werner Herzog,1239080779 +114930,3203,Phillip Noyce,1238963736 +114930,3204,Franklin J. Schaffner,1301898502 +114930,3205,Mario Bava,1402210631 +114930,3208,Gene Quintano,1335340641 +114930,3210,Amy Heckerling,1301034101 +114930,3213,Eric Radomski,1335340357 +114930,3214,John Badham,1299642745 +114930,3214,Kevin Costner,1301034838 +114930,3217,Jack Conway,1317077030 +114930,3217,William A. Wellman,1402199646 +114930,3221,Peter Greenaway,1302636948 +114930,3222,Francesco Rosi,1335125834 +114930,3223,Peter Greenaway,1302636937 +114930,3224,Criterion,1258527276 +114930,3224,Hiroshi Teshigahara,1292273646 +114930,3225,Kris Isacsson,1270015994 +114930,3229,Irving Rapper,1403385320 +114930,3230,Ronald Neame,1299847167 +114930,3232,Buster Keaton,1238131913 +114930,3238,Stephan Elliott,1301163078 +114930,3241,Khyentse Norbu,1314684110 +114930,3243,Les Mayfield,1323660019 +114930,3244,Herbert Ross,1297642042 +114930,3245,Best of Rotten Tomatoes: All Time,1290797795 +114930,3245,Mikhail Kalatozov,1335082671 +114930,3246,Spike Lee,1299558889 +114930,3247,Emile Ardolino,1239212404 +114930,3248,Bill Duke,1302595008 +114930,3249,Curtis Hanson,1301901078 +114930,3250,Leszek Burzynski,1335345205 +114930,3252,Martin Brest,1328741396 +114930,3253,Penelope Spheeris,1302282468 +114930,3254,Stephen Surjik,1302240533 +114930,3255,Penny Marshall,1327115950 +114930,3256,Phillip Noyce,1312350746 +114930,3258,Robert Zemeckis,1299645584 +114930,3260,Criterion,1335507792 +114930,3260,James Ivory,1297639481 +114930,3263,Ron Shelton,1301035974 +114930,3264,Fran Rubel Kuzui,1302675941 +114930,3265,Chow Yun Fat,1239045352 +114930,3265,Criterion,1201631440 +114930,3265,John Woo,1239001696 +114930,3266,Criterion,1335424310 +114930,3266,Rémy Belvaux,1335332953 +114930,3267,Robert Rodriguez,1299961976 +114930,3268,Roger Spottiswoode,1300396784 +114930,3269,Steve Miner,1302000934 +114930,3270,Paul Michael Glaser,1330130695 +114930,3271,Gary Sinise,1335407378 +114930,3273,Wes Craven,1303239548 +114930,3275,Troy Duffy,1257632663 +114930,3281,Gréta Olafsdóttir,1335274070 +114930,3281,Susan Muska,1335274070 +114930,3282,Richard Spence,1335052888 +114930,3283,John Cassavetes,1421652358 +114930,3284,Anthony Harvey,1292230828 +114930,3286,Chris Koch,1327116725 +114930,3289,Zhang Yimou,1300399081 +114930,3292,Joseph H. Lewis,1258591139 +114930,3295,Ken Loach,1293230108 +114930,3296,James Clavell,1335339987 +114930,3296,Sidney Poitier,1297815660 +114930,3298,Ben Younger,1327116239 +114930,3299,Diane Keaton,1302287418 +114930,3300,David Twohy,1376453060 +114930,3301,Harland Williams,1301667170 +114930,3301,Jonathan Lynn,1299645347 +114930,3303,Steven Okazaki,1323688941 +114930,3304,Paul Schrader,1299642554 +114930,3306,Charles Chaplin,1239124196 +114930,3307,Best of Rotten Tomatoes: All Time,1290797600 +114930,3307,Charles Chaplin,1239124135 +114930,3307,Criterion,1399775395 +114930,3309,Charles Chaplin,1239124155 +114930,3310,Charles Chaplin,1239124124 +114930,3310,Criterion,1453095899 +114930,3311,Anthony Mann,1298996928 +114930,3316,John Frankenheimer,1238467517 +114930,3317,Curtis Hanson,1301901074 +114930,3322,DJ Pooh,1335039408 +114930,3324,Nick Gomez,1335325881 +114930,3326,Mike Nichols,1300414463 +114930,3327,Barry W. Blaustein,1311017790 +114930,3328,Jim Jarmusch,1300403478 +114930,3329,John Duigan,1335156771 +114930,3330,Elia Kazan,1319415103 +114930,3332,James Algar,1402209654 +114930,3333,Robert Aldrich,1411931455 +114930,3334,John Huston,1301033512 +114930,3337,Michael Winner,1418112505 +114930,3338,Al Reinert,1335156947 +114930,3338,Criterion,1238857036 +114930,3339,Sam Peckinpah,1326441811 +114930,3341,George Cukor,1299362446 +114930,3342,Alan Parker,1326442042 +114930,3347,Carroll Ballard,1325939752 +114930,3349,George Marshall,1403521594 +114930,3350,Daniel Petrie,1326209621 +114930,3350,Sidney Poitier,1297815662 +114930,3354,Brian De Palma,1299643409 +114930,3355,Roman Polanski,1301899749 +114930,3357,Régis Wargnier,1293183814 +114930,3358,Albert Brooks,1323267595 +114930,3359,Peter Yates,1318967670 +114930,3360,David Anspaugh,1335408467 +114930,3361,Kevin Costner,1301036373 +114930,3361,Ron Shelton,1301036002 +114930,3362,Sidney Lumet,1319416039 +114930,3363,George Lucas,1320185274 +114930,3364,John Huston,1301033492 +114930,3365,John Ford,1299363655 +114930,3368,William Wyler,1319417102 +114930,3371,Hal Ashby,1300230721 +114930,3377,Fritz Lang,1402205843 +114930,3378,Volker Schlöndorff,1402908939 +114930,3379,Stanley Kramer,1299553760 +114930,3384,Best of Rotten Tomatoes: All Time,1290798821 +114930,3384,Joseph Sargent,1299041445 +114930,3386,Kevin Costner,1301036399 +114930,3386,Oliver Stone,1299359371 +114930,3388,William Dear,1314719976 +114930,3392,Susan Seidelman,1335325291 +114930,3396,James Frawley,1335410399 +114930,3397,Jim Henson,1335343834 +114930,3404,Jean Negulesco,1402196512 +114930,3405,Criterion,1201631403 +114930,3405,Roy Ward Baker,1299846865 +114930,3406,Raoul Walsh,1300223439 +114930,3408,Steven Soderbergh,1238950674 +114930,3409,James Wong,1263354710 +114930,3410,Christina Andreef,1328740706 +114930,3412,Jean-Jacques Annaud,1407715873 +114930,3413,Arthur Lubin,1402203080 +114930,3415,Andrei Tarkovsky,1317236530 +114930,3417,Robert Siodmak,1297367232 +114930,3418,Ridley Scott,1319413785 +114930,3419,Harold Prince,1334965733 +114930,3420,Norman Jewison,1302777546 +114930,3421,John Landis,1298994522 +114930,3424,Criterion,1238857398 +114930,3424,Spike Lee,1299558896 +114930,3429,Nick Park,1256571824 +114930,3430,Michael Winner,1418112478 +114930,3431,Charles Bronson,1258524087 +114930,3431,Michael Winner,1319415592 +114930,3435,Billy Wilder,1238803245 +114930,3438,Steve Barron,1314902216 +114930,3439,Michael Pressman,1301901249 +114930,3440,Stuart Gillard,1301665888 +114930,3444,Jean-Claude Van Damme,1300401471 +114930,3444,Newt Arnold,1300402234 +114930,3446,Peter Chelsom,1335270317 +114930,3447,Gustav Machatý,1301157895 +114930,3447,Sidney Franklin,1301157886 +114930,3447,Victor Fleming,1299363903 +114930,3448,Barry Levinson,1299745057 +114930,3451,Sidney Poitier,1297815681 +114930,3451,Stanley Kramer,1299553734 +114930,3452,Andrzej Bartkowiak,1335408093 +114930,3452,Jet Li,1300398362 +114930,3453,Mark Piznarski,1335299822 +114930,3456,Majid Majidi,1330481826 +114930,3461,Criterion,1335424866 +114930,3461,Peter Brook,1292924153 +114930,3462,Best of Rotten Tomatoes: All Time,1290798038 +114930,3462,Charles Chaplin,1239124141 +114930,3462,Criterion,1335512232 +114930,3466,Ron Underwood,1325894044 +114930,3467,Martin Ritt,1297816849 +114930,3468,Robert Rossen,1299364849 +114930,3469,Stanley Kramer,1299553773 +114930,3470,Akira Kurosawa,1268795993 +114930,3471,Steven Spielberg,1299850128 +114930,3473,Alain Tanner,1335053299 +114930,3475,George Stevens,1297641327 +114930,3476,Adrian Lyne,1327649500 +114930,3477,Allan Moyle,1315404599 +114930,3478,Luis Valdez,1302674247 +114930,3479,Richard Donner,1300399296 +114930,3480,David Seltzer,1312346496 +114930,3481,Stephen Frears,1319412623 +114930,3483,Bibo Bergeron,1329042190 +114930,3487,Howard Hawks,1319416649 +114930,3489,Steven Spielberg,1299850121 +114930,3492,George Fitzmaurice,1402214104 +114930,3494,Henry Hathaway,1258370981 +114930,3498,Alan Parker,1326442056 +114930,3499,Rob Reiner,1299643030 +114930,3502,Bruce Joel Rubin,1326613805 +114930,3503,Andrei Tarkovsky,1317236520 +114930,3503,Criterion,1317236380 +114930,3504,Sidney Lumet,1319416042 +114930,3505,Kevin Costner,1301036371 +114930,3505,Roger Donaldson,1301035724 +114930,3506,Ted Kotcheff,1405597732 +114930,3507,Best of Rotten Tomatoes: All Time,1290798735 +114930,3507,Gene Saks,1300993101 +114930,3508,Clint Eastwood,1299644722 +114930,3509,James Toback,1302034950 +114930,3510,Gregory Hoblit,1301448373 +114930,3512,Bonnie Hunt,1335344323 +114930,3513,William Friedkin,1318242034 +114930,3516,Richard Quine,1298996512 +114930,3521,Criterion,1292049535 +114930,3521,Jim Jarmusch,1300403484 +114930,3525,Neal Israel,1331352181 +114930,3526,Ron Howard,1300401113 +114930,3527,John McTiernan,1300400756 +114930,3530,Alain Resnais,1413293969 +114930,3533,Kon Ichikawa,1302594262 +114930,3534,Betty Thomas,1301548932 +114930,3536,Edward Norton,1335408014 +114930,3538,Damien O'Donnell,1335330025 +114930,3539,Julien Temple,1301002624 +114930,3543,Barry Levinson,1299745030 +114930,3545,Bob Fosse,1335345386 +114930,3546,Robert Aldrich,1300223734 +114930,3547,Stephen Frears,1319412554 +114930,3548,Morton DaCosta,1316180588 +114930,3549,Joseph L. Mankiewicz,1298997665 +114930,3550,Nudity (Topless - Notable),1261612247 +114930,3551,John Schlesinger,1302888273 +114930,3552,Harold Ramis,1324753796 +114930,3554,Gina Prince-Bythewood,1385944673 +114930,3556,Sofia Coppola,1335409778 +114930,3559,Buster Keaton,1239124279 +114930,3559,Charles Chaplin,1239124156 +114930,3559,Criterion,1453094638 +114930,3560,Criterion,1335502856 +114930,3560,Nagisa Ôshima,1335502852 +114930,3566,John Swanbeck,1335332938 +114930,3569,Lars von Trier,1300338820 +114930,3576,Jack Sholder,1302673908 +114930,3577,Nudity (Topless - Notable),1261612162 +114930,3578,Ridley Scott,1319413792 +114930,3581,Justin Kerrigan,1335306118 +114930,3588,Bob Rafelson,1335510320 +114930,3588,Criterion,1335510326 +114930,3591,Stan Dragoti,1239085590 +114930,3592,René Laloux,1411721519 +114930,3595,Steve Rash,1326616547 +114930,3596,Scott Alexander,1327649600 +114930,3597,Peter M. Cohen,1324563323 +114930,3598,Michael Almereyda,1423390660 +114930,3599,George Sidney,1298994341 +114930,3604,Mervyn LeRoy,1298993798 +114930,3605,Michael Curtiz,1402192624 +114930,3606,Gene Kelly,1319414891 +114930,3606,Stanley Donen,1319414840 +114930,3608,Tim Burton,1238806630 +114930,3609,Barbara Sonneborn,1335038686 +114930,3612,Bryan Forbes,1411209188 +114930,3613,David Mamet,1327649714 +114930,3614,Andrew Bergman,1329042844 +114930,3616,Amy Heckerling,1301034123 +114930,3617,Todd Phillips,1296424374 +114930,3617,Vinnie Jones,1298123444 +114930,3618,Woody Allen,1302670449 +114930,3622,Mel Brooks,1328740575 +114930,3623,John Woo,1239001723 +114930,3624,Tom Dey,1312349164 +114930,3627,Criterion,1238857334 +114930,3627,Herk Harvey,1328742233 +114930,3629,Best of Rotten Tomatoes: All Time,1290798514 +114930,3629,Charles Chaplin,1239124139 +114930,3629,Criterion,1335506791 +114930,3632,Charles Chaplin,1239124148 +114930,3632,Criterion,1360319796 +114930,3634,John Frankenheimer,1238467472 +114930,3635,Lewis Gilbert,1299847320 +114930,3637,Agnès Varda,1302287539 +114930,3637,Criterion,1237021558 +114930,3639,Guy Hamilton,1299847503 +114930,3640,Charles Chaplin,1239124157 +114930,3641,Charles Chaplin,1403384993 +114930,3645,Agnès Varda,1302287537 +114930,3645,Criterion,1237021566 +114930,3646,Raja Gosnell,1301436955 +114930,3653,Bruce Brown,1335302885 +114930,3654,J. Lee Thompson,1319407807 +114930,3655,Marco Ferreri,1273112542 +114930,3657,Albert Lewin,1417985758 +114930,3658,Roy Ward Baker,1299847000 +114930,3659,Val Guest,1402199319 +114930,3668,Franco Zeffirelli,1300339016 +114930,3669,Peter Hyams,1300403131 +114930,3670,William A. Wellman,1401259621 +114930,3671,Mel Brooks,1239048325 +114930,3672,Joe Camp,1335305977 +114930,3673,Joe Camp,1335157580 +114930,3674,Joe Camp,1335135842 +114930,3675,Danny Kaye,1316502586 +114930,3675,Michael Curtiz,1299845889 +114930,3676,Criterion,1421652586 +114930,3676,David Lynch,1301903558 +114930,3677,Ron Fricke,1301667399 +114930,3678,Otto Preminger,1299848429 +114930,3679,Penelope Spheeris,1302282450 +114930,3680,Penelope Spheeris,1302282426 +114930,3681,Clint Eastwood,1299644730 +114930,3681,Sergio Leone,1239047713 +114930,3682,Clint Eastwood,1299644538 +114930,3682,Ted Post,1326208631 +114930,3683,Coen Brothers,1239054316 +114930,3685,John Huston,1301033025 +114930,3687,René Laloux,1411721524 +114930,3688,Bob Clark,1351109705 +114930,3696,Fred Dekker,1332814294 +114930,3697,Stephen Hopkins,1299850900 +114930,3698,Paul Michael Glaser,1330130696 +114930,3699,John Carpenter,1414342648 +114930,3702,George Miller,1299849700 +114930,3703,Best of Rotten Tomatoes: All Time,1290798008 +114930,3703,George Miller,1299849709 +114930,3705,John Badham,1299642746 +114930,3706,Alan Parker,1326442049 +114930,3709,Mick Garris,1331076423 +114930,3712,Michael Hoffman,1299039408 +114930,3713,Richard Pearce,1335277547 +114930,3717,Dominic Sena,1335420521 +114930,3717,Vinnie Jones,1298123456 +114930,3720,István Szabó,1335299705 +114930,3723,Franco Zeffirelli,1300339016 +114930,3724,Hal Ashby,1300230790 +114930,3725,Ralph Bakshi,1427708085 +114930,3726,John Carpenter,1319412779 +114930,3727,Kathryn Bigelow,1302777798 +114930,3728,Carl Franklin,1335304738 +114930,3730,Francis Ford Coppola,1319412227 +114930,3730,Golden Palm,1244223561 +114930,3731,Ivan Passer,1335156405 +114930,3733,James Bridges,1299642442 +114930,3734,Sidney Lumet,1319416190 +114930,3735,Sidney Lumet,1319416033 +114930,3736,Billy Wilder,1238803239 +114930,3736,Criterion,1201666203 +114930,3737,David Miller,1299627749 +114930,3739,Criterion,1239145073 +114930,3739,Ernst Lubitsch,1299360241 +114930,3740,John Carpenter,1319412872 +114930,3741,Criterion,1360319785 +114930,3741,Terrence Malick,1238888992 +114930,3742,Best of Rotten Tomatoes: All Time,1290797482 +114930,3742,Grigori Aleksandrov,1334907943 +114930,3742,Sergei M. Eisenstein,1292284867 +114930,3743,Robert Iscove,1335299494 +114930,3746,José Luis Cuerda,1299195139 +114930,3747,Alison Maclean,1335304927 +114930,3749,Raoul Ruiz,1421056148 +114930,3751,Nick Park,1256571865 +114930,3751,Peter Lord,1340603885 +114930,3752,Farrelly Brothers,1299915115 +114930,3753,Roland Emmerich,1335422063 +114930,3755,Wolfgang Petersen,1300999164 +114930,3761,Taylor Hackford,1302283163 +114930,3773,Reginald Hudlin,1328327649 +114930,3774,George Jackson,1335274263 +114930,3783,Mike Hodges,1327116507 +114930,3784,Don Ashley,1335332352 +114930,3785,Keenen Ivory Wayans,1301551113 +114930,3787,Yang Zhang,1335283241 +114930,3788,Golden Palm,1244223535 +114930,3788,Michelangelo Antonioni,1302002585 +114930,3789,Sidney Lumet,1319416219 +114930,3793,Bryan Singer,1293735661 +114930,3795,Jeremy Podeswa,1335231648 +114930,3795,Nudity (Topless - Notable),1261611139 +114930,3798,Robert Zemeckis,1299645583 +114930,3801,Best of Rotten Tomatoes: All Time,1290797438 +114930,3801,Criterion,1335425260 +114930,3801,Otto Preminger,1238889860 +114930,3808,Vittorio De Sica,1273112163 +114930,3809,Frank Oz,1302035124 +114930,3811,Bruce Beresford,1301001699 +114930,3811,Criterion,1453095244 +114930,3813,Woody Allen,1302670328 +114930,3814,Woody Allen,1302670415 +114930,3816,Luis Puenzo,1294136571 +114930,3819,Juzo Itami,1293919330 +114930,3819,Ken Watanabe,1293824603 +114930,3819,Kôji Yakusho,1296351887 +114930,3821,Peter Segal,1302040384 +114930,3822,Patrice Leconte,1239080311 +114930,3823,Michael Winterbottom,1318967272 +114930,3826,Paul Verhoeven,1302283803 +114930,3827,Clint Eastwood,1412328445 +114930,3831,Nigel Cole,1299851777 +114930,3832,Mario Bava,1402210621 +114930,3836,Brian G. Hutton,1335342487 +114930,3836,Clint Eastwood,1299644666 +114930,3840,Stan Winston,1335287574 +114930,3844,Herbert Ross,1297642045 +114930,3845,Criterion,1237022118 +114930,3845,Roger Vadim,1328577394 +114930,3849,Robert Siodmak,1297367222 +114930,3851,Lionel Coleman,1293527210 +114930,3852,Jenniphr Goodman,1239125705 +114930,3854,Max Färberböck,1292832704 +114930,3855,Frédéric Fonteyne,1299627210 +114930,3859,Fenton Bailey,1301661404 +114930,3863,Tarsem Singh,1320867283 +114930,3864,Takao Okawara,1335332703 +114930,3868,David Zucker,1299849179 +114930,3869,David Zucker,1299849176 +114930,3871,George Stevens,1297641330 +114930,3872,Joseph L. Mankiewicz,1298997640 +114930,3875,Terence Fisher,1402213151 +114930,3879,Christian Duguay,1301451263 +114930,3880,Aiyana Elliott,1335052424 +114930,3881,Todd Phillips,1296424363 +114930,3882,Peyton Reed,1326613766 +114930,3884,Michael Dinner,1333070139 +114930,3885,David Schwimmer,1297402261 +114930,3885,Valerie Breiman,1335134844 +114930,3894,Benito Zambrano,1335083104 +114930,3895,Joe Charbanic,1335304384 +114930,3896,Christopher McQuarrie,1335333174 +114930,3897,Cameron Crowe,1324562965 +114930,3898,Antoine Fuqua,1238930650 +114930,3903,Jon Shear,1405339638 +114930,3910,Lars von Trier,1300338820 +114930,3911,Christopher Guest,1297367985 +114930,3915,Karyn Kusama,1331175994 +114930,3916,Boaz Yakin,1301448851 +114930,3920,Wim Wenders,1302286252 +114930,3925,Criterion,1292049507 +114930,3925,Jim Jarmusch,1300403487 +114930,3927,Richard Fleischer,1319413266 +114930,3928,Charles Barton,1402203127 +114930,3929,Criterion,1238857261 +114930,3929,Edward F. Cline,1301435049 +114930,3932,Best of Rotten Tomatoes: All Time,1290798534 +114930,3932,James Whale,1321654293 +114930,3946,Stephen T. Kay,1314902185 +114930,3947,Mike Hodges,1327116536 +114930,3948,Jay Roach,1258372652 +114930,3949,Darren Aronofsky,1302085931 +114930,3951,Raymond De Felitta,1301449340 +114930,3952,Rod Lurie,1297402428 +114930,3953,Robert Altman,1300999923 +114930,3955,Reginald Hudlin,1328327652 +114930,3959,George Pal,1301163201 +114930,3964,Clyde Geronimi,1300992719 +114930,3964,Jack Kinney,1304945116 +114930,3964,James Algar,1300992375 +114930,3965,Lewis Milestone,1298653720 +114930,3966,Edgar G. Ulmer,1295430136 +114930,3967,Stephen Daldry,1303419674 +114930,3968,Harold Ramis,1324753786 +114930,3969,Mimi Leder,1328741459 +114930,3972,Andy Lau,1296359122 +114930,3972,Chia-Liang Liu,1298996411 +114930,3972,Jackie Chan,1301668668 +114930,3973,Joe Berlinger,1300335688 +114930,3974,Uli Edel,1295429146 +114930,3977,McG,1326337796 +114930,3979,Rhys Ifans,1302641796 +114930,3979,Steven Brill,1297624147 +114930,3980,George Tillman Jr.,1327116349 +114930,3981,Antony Hoffman,1312350656 +114930,3983,Kenneth Lonergan,1302286559 +114930,3984,Guy Hamilton,1299847524 +114930,3985,John Sturges,1301158055 +114930,3986,Roger Spottiswoode,1300396787 +114930,3988,Ron Howard,1300401033 +114930,3989,Kevin Macdonald,1257890611 +114930,3991,Gérard Depardieu,1239081190 +114930,3991,Kevin Lima,1323684910 +114930,3992,Giuseppe Tornatore,1239156440 +114930,3992,Nudity (Topless - Notable),1261611657 +114930,3993,Nudity (Topless - Notable),1261610505 +114930,3993,Philip Kaufman,1300338078 +114930,3994,M. Night Shyamalan,1321657095 +114930,3996,Ang Lee,1300396950 +114930,4000,Roger Donaldson,1301035744 +114930,4002,John Hughes,1302039655 +114930,4007,Oliver Stone,1239066405 +114930,4008,Oliver Stone,1342174209 +114930,4009,Oliver Stone,1299359480 +114930,4010,Walter Hill,1319408913 +114930,4011,Guy Ritchie,1300339492 +114930,4011,Vinnie Jones,1298123462 +114930,4013,Yahoo Serious,1334964245 +114930,4014,Lasse Hallström,1302637128 +114930,4015,Danny Leiner,1301034301 +114930,4016,Mark Dindal,1333070510 +114930,4017,Ed Harris,1335342667 +114930,4018,Nancy Meyers,1328394744 +114930,4019,Gus Van Sant,1326208917 +114930,4020,Sam Raimi,1301035622 +114930,4021,Julian Schnabel,1267847370 +114930,4022,Robert Zemeckis,1299645580 +114930,4023,Brett Ratner,1296356585 +114930,4027,Coen Brothers,1239054329 +114930,4028,Maggie Greenwald,1335274059 +114930,4029,David Mamet,1327649713 +114930,4033,Kevin Costner,1301036369 +114930,4033,Roger Donaldson,1301035793 +114930,4034,Criterion,1257637321 +114930,4034,Steven Soderbergh,1297810203 +114930,4036,E. Elias Merhige,1362952820 +114930,4037,Criterion,1335507703 +114930,4037,David Mamet,1327649627 +114930,4040,Stephen Herek,1323658463 +114930,4041,Taylor Hackford,1302283336 +114930,4043,James Foley,1335275344 +114930,4046,William Wyler,1319417099 +114930,4047,Ronald F. Maxwell,1335334113 +114930,4052,Peter Howitt,1328845255 +114930,4053,George Gallo,1323687888 +114930,4054,Thomas Carter,1326336002 +114930,4055,Henry Bromell,1328520124 +114930,4056,Sean Penn,1321656783 +114930,4058,Kuo-fu Chen,1422604230 +114930,4061,Robert Mulligan,1300414831 +114930,4064,Nudity (Topless - Notable),1261611789 +114930,4065,Nudity (Topless - Notable),1261611794 +114930,4072,Liv Ullmann,1422957851 +114930,4074,Volker Schlöndorff,1402908927 +114930,4077,Dominik Moll,1300338341 +114930,4081,Lyndall Hobbs,1332892538 +114930,4082,Barbet Schroeder,1428887921 +114930,4084,Tony Scott,1301034963 +114930,4085,Martin Brest,1294157811 +114930,4086,Jim McBride,1335332927 +114930,4089,Cheech Marin,1335286565 +114930,4090,Jerry Rees,1335331566 +114930,4091,Steve Rash,1326616539 +114930,4095,Richard Attenborough,1300994462 +114930,4098,John Huston,1301033312 +114930,4102,Robert Townsend,1328521047 +114930,4103,Steven Spielberg,1299850053 +114930,4105,Best of Rotten Tomatoes: All Time,1290798491 +114930,4105,Sam Raimi,1301035624 +114930,4109,Jeffrey Bloom,1302675829 +114930,4113,Paul Newman,1297642186 +114930,4116,Robert Townsend,1328521040 +114930,4117,John Boorman,1302776951 +114930,4119,Bill Forsyth,1321655870 +114930,4121,Joe Dante,1239151794 +114930,4128,Joel Schumacher,1299962124 +114930,4132,Andrew McCarthy,1315404717 +114930,4132,Michael Gottlieb,1315404778 +114930,4133,Gary Goddard,1335329737 +114930,4135,Fred Dekker,1414350382 +114930,4136,Pat O'Connor,1318240479 +114930,4141,Mark Waters,1308333224 +114930,4143,Jamie Blanks,1328328138 +114930,4144,Criterion,1238857098 +114930,4144,Wong Kar-wai,1238860827 +114930,4149,Dennis Dugan,1300230360 +114930,4151,Agnès Jaoui,1292233720 +114930,4151,Best of Rotten Tomatoes: All Time,1290797958 +114930,4153,Chris Weitz,1302805421 +114930,4155,Pat O'Connor,1318240571 +114930,4158,Henry Selick,1318242965 +114930,4159,Demian Lichtenstein,1301035383 +114930,4159,Kevin Costner,1301036379 +114930,4160,Patrice Leconte,1239080308 +114930,4161,Gore Verbinski,1299626448 +114930,4166,Daniel Minahan,1326615143 +114930,4167,John Herzfeld,1327115566 +114930,4174,Barry Levinson,1299744997 +114930,4175,Criterion,1335506829 +114930,4175,Steven Soderbergh,1238950680 +114930,4176,Akira Kurosawa,1268796023 +114930,4176,Criterion,1268797112 +114930,4178,Lewis Milestone,1298653738 +114930,4179,Hector Babenco,1328931502 +114930,4183,Hal Hartley,1301445733 +114930,4184,Henry Koster,1297641567 +114930,4186,Billy Wilder,1302031128 +114930,4187,Ralph Nelson,1301162960 +114930,4187,Sidney Poitier,1297815666 +114930,4188,Charles Vidor,1292429943 +114930,4188,Danny Kaye,1297641704 +114930,4190,Richard Brooks,1299848748 +114930,4191,Lewis Gilbert,1299847307 +114930,4194,Criterion,1238857090 +114930,4194,Emeric Pressburger,1302888049 +114930,4194,Michael Powell,1299745289 +114930,4195,Robert Fuest,1402210270 +114930,4197,Albert Brooks,1323267599 +114930,4199,Deran Sarafian,1300402047 +114930,4199,Jean-Claude Van Damme,1300401493 +114930,4200,Jean-Claude Van Damme,1300401482 +114930,4200,Sheldon Lettich,1300401661 +114930,4210,Michael Mann,1302595468 +114930,4211,Barbet Schroeder,1301446895 +114930,4212,John Guillermin,1332297087 +114930,4216,Norman René,1326615324 +114930,4217,Spike Lee,1299559222 +114930,4218,Tim Hunter,1335305349 +114930,4220,Robert Aldrich,1300223737 +114930,4221,Stan Dragoti,1331173343 +114930,4223,Jean-Jacques Annaud,1302034243 +114930,4224,Andrzej Bartkowiak,1300398244 +114930,4225,Rob Sitch,1328568739 +114930,4226,Christopher Nolan,1293530388 +114930,4229,James B. Rogers,1327117354 +114930,4235,Alejandro González Iñárritu,1299963397 +114930,4237,Agnès Varda,1262033807 +114930,4238,Lee Tamahori,1238559334 +114930,4239,Ted Demme,1333680906 +114930,4240,Jean Reno,1300400466 +114930,4240,Jean-Marie Poiré,1300399573 +114930,4246,Sharon Maguire,1335420875 +114930,4247,Dennie Gordon,1325895157 +114930,4250,Jonas McCord,1326210023 +114930,4251,Andrew Dominik,1335303911 +114930,4252,Jafar Panahi,1271453735 +114930,4254,Simon Wincer,1300414630 +114930,4255,Harland Williams,1301667185 +114930,4255,Tom Green,1301666448 +114930,4261,John Greyson,1334965980 +114930,4262,Brian De Palma,1299643413 +114930,4263,Blake Edwards,1297642544 +114930,4265,Renny Harlin,1299960993 +114930,4270,Stephen Sommers,1326440349 +114930,4271,Shinji Aoyama,1330129894 +114930,4273,François Ozon,1298996649 +114930,4274,Darryl F. Zanuck,1402195466 +114930,4274,Joseph L. Mankiewicz,1402195466 +114930,4274,Rouben Mamoulian,1402195446 +114930,4276,Albert Brooks,1238963508 +114930,4278,Leni Riefenstahl,1335287869 +114930,4280,George Roy Hill,1300339752 +114930,4282,Criterion,1421654215 +114930,4282,Federico Fellini,1421654230 +114930,4283,Federico Fellini,1299448546 +114930,4292,Martin Ritt,1297816838 +114930,4293,Carl Reiner,1326616433 +114930,4294,Roy Rowland,1335273817 +114930,4296,Arthur Hiller,1401138111 +114930,4297,Bille August,1302080139 +114930,4298,Criterion,1238857164 +114930,4298,Jules Dassin,1239146282 +114930,4299,Brian Helgeland,1326614803 +114930,4300,Ken Loach,1335133267 +114930,4304,Chris Hegedus,1292922057 +114930,4305,Luis Mandoki,1238954195 +114930,4306,Andrew Adamson,1321655672 +114930,4308,Baz Luhrmann,1301543658 +114930,4310,Michael Bay,1323268515 +114930,4312,Eric Valli,1333078157 +114930,4321,Ron Underwood,1325894042 +114930,4322,John Sayles,1301543378 +114930,4323,John Ford,1299363563 +114930,4325,Criterion,1399773828 +114930,4325,Michelangelo Antonioni,1302002561 +114930,4326,Alan Parker,1326442049 +114930,4327,Charles Bronson,1238805588 +114930,4327,John Sturges,1301158066 +114930,4329,Best of Rotten Tomatoes: All Time,1290798316 +114930,4329,Howard Hawks,1319416704 +114930,4330,Criterion,1238857181 +114930,4330,Josef von Sternberg,1239159594 +114930,4333,Danny DeVito,1306101794 +114930,4334,Criterion,1292234688 +114930,4334,Edward Yang,1263341575 +114930,4336,Ole Bornedal,1315400174 +114930,4337,Robert Wise,1298997976 +114930,4338,Henry King,1298993248 +114930,4339,Mark Robson,1298992880 +114930,4340,Luke Greenfield,1239084130 +114930,4341,Sam Weisman,1329042175 +114930,4342,Thomas Bezucha,1310418654 +114930,4343,Ivan Reitman,1312352669 +114930,4344,Vinnie Jones,1298123460 +114930,4345,Alan Cumming,1321659633 +114930,4347,Jan Hrebejk,1308941203 +114930,4349,Mike Nichols,1300414564 +114930,4350,Costa Botes,1335277177 +114930,4350,Peter Jackson,1239050897 +114930,4354,Jonathan Kaplan,1302674028 +114930,4356,Best of Rotten Tomatoes: All Time,1290797750 +114930,4356,Howard Hawks,1319416405 +114930,4357,Jean Negulesco,1293987829 +114930,4359,Billy Wilder,1238803313 +114930,4361,Criterion,1421653970 +114930,4361,Sydney Pollack,1299360978 +114930,4366,Gary Trousdale,1299645438 +114930,4366,Michael J. Fox,1299641767 +114930,4367,Simon West,1299914953 +114930,4368,David Cross,1301552233 +114930,4368,Steve Carr,1301034153 +114930,4369,Rob Cohen,1300397246 +114930,4370,Steven Spielberg,1299850121 +114930,4371,John Singleton,1299961501 +114930,4376,Nick Doob,1320434292 +114930,4378,Jonathan Glazer,1326337483 +114930,4380,Tom Tykwer,1302236046 +114930,4381,Francis Veber,1300399724 +114930,4381,Gérard Depardieu,1323684831 +114930,4383,Jean Reno,1300400486 +114930,4383,Mathieu Kassovitz,1239142294 +114930,4384,Raoul Peck,1335078615 +114930,4387,Chris Nahon,1300398876 +114930,4387,Jet Li,1300398358 +114930,4388,David Cross,1301552239 +114930,4388,Keenen Ivory Wayans,1301551115 +114930,4391,Anh Hung Tran,1263354289 +114930,4393,Woody Allen,1302670248 +114930,4395,Criterion,1238259057 +114930,4395,Mario Monicelli,1299744751 +114930,4399,Criterion,1268629342 +114930,4399,Luis Buñuel,1319407544 +114930,4403,Roger Corman,1402206993 +114930,4404,F.W. Murnau,1238875545 +114930,4405,F.W. Murnau,1238875524 +114930,4406,John Ford,1299363646 +114930,4407,Oliver Stone,1292271000 +114930,4410,Criterion,1335657208 +114930,4410,Jonathan Demme,1329445042 +114930,4410,Nudity (Topless - Notable),1261611344 +114930,4411,Henry Hathaway,1402204165 +114930,4416,Val Guest,1402199309 +114930,4419,Criterion,1201667603 +114930,4419,Douglas Sirk,1299745816 +114930,4420,Joseph L. Mankiewicz,1238804420 +114930,4422,Criterion,1238857006 +114930,4422,Ingmar Bergman,1303239878 +114930,4423,Tony Richardson,1298653440 +114930,4424,Vittorio De Sica,1273112168 +114930,4426,Criterion,1335510345 +114930,4426,Robert Aldrich,1300223717 +114930,4427,Anthony Harvey,1292230822 +114930,4428,John Huston,1301033031 +114930,4429,John Huston,1301033340 +114930,4431,Alexander Korda,1297625738 +114930,4431,Criterion,1297625697 +114930,4432,Alexander Mackendrick,1239139829 +114930,4432,Best of Rotten Tomatoes: All Time,1290798418 +114930,4432,Criterion,1335425027 +114930,4433,Criterion,1238925523 +114930,4433,Douglas Sirk,1299745817 +114930,4437,Dario Argento,1301899263 +114930,4438,Bruce Lee,1239135345 +114930,4438,Wei Lo,1335276945 +114930,4439,Uli Edel,1295429117 +114930,4440,Bruce Lee,1239135356 +114930,4440,Jiaxiang Wu,1335282596 +114930,4440,Wei Lo,1335282596 +114930,4441,Bruce Lee,1239135404 +114930,4441,Robert Clouse,1239135327 +114930,4442,Michael Schultz,1299845426 +114930,4444,Bruce Lee,1239041255 +114930,4444,Chuck Norris,1239041241 +114930,4447,Robert Luketic,1326335566 +114930,4448,Frank Oz,1302035122 +114930,4448,Robert De Niro,1321659239 +114930,4451,Joel Hopkins,1323688606 +114930,4452,Jon Favreau,1329442083 +114930,4452,Jonathan Silverman,1296357350 +114930,4454,Mark Osborne,1301551146 +114930,4458,George Casey,1335133813 +114930,4459,George Casey,1335050250 +114930,4465,Jonathan Kaplan,1302674047 +114930,4466,Andrew Davis,1301035099 +114930,4467,Terry Gilliam,1302886984 +114930,4468,Martin Donovan,1302800165 +114930,4470,Aki Kaurismäki,1263337974 +114930,4470,Criterion,1273594045 +114930,4475,Kevin Reynolds,1407716654 +114930,4477,Randal Kleiser,1301898946 +114930,4479,Clint Eastwood,1238952111 +114930,4480,Chuck Russell,1324753568 +114930,4483,Allan Arkush,1299849244 +114930,4484,Bruno Nuytten,1323686681 +114930,4484,Gérard Depardieu,1238133921 +114930,4489,John Landis,1298994512 +114930,4492,Stephen Herek,1323658469 +114930,4495,Joan Micklin Silver,1335298593 +114930,4499,Frank Oz,1302035116 +114930,4500,Peter Greenaway,1302636945 +114930,4508,Michael Apted,1302778205 +114930,4509,Howard Deutch,1302641541 +114930,4515,Andrew Solt,1335278761 +114930,4519,Don Bluth,1304432546 +114930,4523,Robert Redford,1299361103 +114930,4524,Paul Mazursky,1404903870 +114930,4525,Alan Metter,1326615895 +114930,4529,Percy Adlon,1335301974 +114930,4535,George Miller,1299849656 +114930,4537,Sidney Lumet,1319416204 +114930,4546,Best of Rotten Tomatoes: All Time,1290798408 +114930,4546,Criterion,1335424588 +114930,4546,George Sluizer,1302287562 +114930,4553,John Carpenter,1319412792 +114930,4555,Paul Bogart,1335278423 +114930,4558,Ivan Reitman,1312352664 +114930,4562,Thom Eberhardt,1335271024 +114930,4564,Steven Spielberg,1335325188 +114930,4565,Michael Dudikoff,1272650333 +114930,4565,Sam Firstenberg,1331172946 +114930,4566,Michael Dudikoff,1272650305 +114930,4566,Sam Firstenberg,1331172954 +114930,4568,Robert Radler,1301999811 +114930,4569,Robert Radler,1301999809 +114930,4571,Stephen Herek,1323658452 +114930,4572,Ridley Scott,1319413546 +114930,4574,Phillip Noyce,1312350730 +114930,4574,Shô Kosugi,1332890783 +114930,4577,Brian De Palma,1412768818 +114930,4578,Emile Ardolino,1302594501 +114930,4580,Albert Pyun,1239148504 +114930,4580,Jean-Claude Van Damme,1300401487 +114930,4585,Howard Zieff,1302802615 +114930,4586,Euzhan Palcy,1401057595 +114930,4602,Eddie Murphy,1328931336 +114930,4605,Bruce Robinson,1335277534 +114930,4605,Criterion,1335424807 +114930,4612,Denys Arcand,1327648802 +114930,4613,Rod Daniel,1299645046 +114930,4614,David Worth,1300402206 +114930,4614,Jean-Claude Van Damme,1300401485 +114930,4614,Mark DiSalle,1300402218 +114930,4616,John G. Avildsen,1238999297 +114930,4619,Richard Greenberg,1333682438 +114930,4620,John Flynn,1301451060 +114930,4621,Amy Heckerling,1301034108 +114930,4622,Joan Micklin Silver,1311992973 +114930,4623,David S. Ward,1301666655 +114930,4626,Steve De Jarnatt,1326209387 +114930,4630,Thomas J. Wright,1273253585 +114930,4634,Arthur Penn,1326440856 +114930,4636,Mark Goldblatt,1335298765 +114930,4637,Joseph Zito,1302000468 +114930,4638,Joe Johnston,1310677402 +114930,4640,Takeshi Kitano,1318242249 +114930,4641,David Cross,1301552227 +114930,4641,Terry Zwigoff,1239067119 +114930,4642,John Cameron Mitchell,1293345935 +114930,4643,Tim Burton,1238375793 +114930,4644,Silvio Soldini,1292272559 +114930,4645,Kiyoshi Kurosawa,1419554118 +114930,4646,Joel Hershman,1327647585 +114930,4649,David Wain,1326613665 +114930,4649,Joe Lo Truglio,1293348911 +114930,4649,Michael Ian Black,1293366534 +114930,4654,Rowdy Herrington,1354401989 +114930,4655,John Duigan,1239212296 +114930,4655,Raul Julia,1238376196 +114930,4658,Alejandro Jodorowsky,1302084038 +114930,4661,Harold Becker,1323268171 +114930,4662,Arthur Hiller,1326440649 +114930,4664,Lewis Gilbert,1299847269 +114930,4665,Wes Craven,1303239465 +114930,4671,Criterion,1299852369 +114930,4671,Jane Campion,1239210789 +114930,4673,Albert Magnoli,1419437095 +114930,4673,Andrey Konchalovskiy,1419437095 +114930,4675,Francis Veber,1300399723 +114930,4676,Jeff Kanew,1327648082 +114930,4677,Roger Spottiswoode,1300396786 +114930,4679,John Hughes,1302039650 +114930,4681,Danny DeVito,1238466982 +114930,4686,Andrew McCarthy,1315404686 +114930,4686,Jonathan Silverman,1296357352 +114930,4686,Robert Klane,1302033383 +114930,4687,Criterion,1238857278 +114930,4687,John Schlesinger,1239137790 +114930,4688,Bruce Beresford,1301001691 +114930,4695,Karel Reisz,1421156042 +114930,4700,Garry Marshall,1302597010 +114930,4701,Brett Ratner,1296356589 +114930,4703,Claire Denis,1296423229 +114930,4704,Howard Hawks,1319416623 +114930,4705,Criterion,1399773433 +114930,4705,Edouard Molinaro,1335306018 +114930,4708,Peter Brook,1292924151 +114930,4710,Don Siegel,1297814974 +114930,4711,Steven M. Martin,1335157398 +114930,4712,François Truffaut,1268710844 +114930,4713,Ken Russell,1300993271 +114930,4716,Criterion,1237023195 +114930,4716,Nicolas Roeg,1239146962 +114930,4717,Robert Clouse,1328837057 +114930,4718,James B. Rogers,1327117352 +114930,4719,Farrelly Brothers,1416382325 +114930,4720,Alejandro Amenábar,1314173443 +114930,4723,David Siegel,1367791303 +114930,4723,Scott McGehee,1335305044 +114930,4724,Cillian Murphy,1312352238 +114930,4724,John Carney,1312351904 +114930,4725,Brad Anderson,1239067478 +114930,4728,Jerry Zucker,1239154098 +114930,4729,Hans Petter Moland,1239136675 +114930,4731,Lizzy Borden,1328742358 +114930,4733,Woody Allen,1302670391 +114930,4735,John Carpenter,1319412786 +114930,4737,Éva Gárdos,1316715736 +114930,4738,Brad Anderson,1239067473 +114930,4741,Lukas Moodysson,1302081513 +114930,4743,María Ripoll,1328568148 +114930,4744,Victor Salva,1332465683 +114930,4746,Jordan Brady,1314683608 +114930,4748,Jon Turteltaub,1320183114 +114930,4754,Robin Hardy,1335332431 +114930,4755,Blair Treu,1271531083 +114930,4761,Dan Cohen,1332814081 +114930,4765,Michael Cuesta,1324561043 +114930,4766,Barbet Schroeder,1428887951 +114930,4768,Fritz Lang,1319417396 +114930,4769,Mark Jonathan Harris,1302038624 +114930,4770,Daniel Sackheim,1335305265 +114930,4771,Brian Robbins,1324753423 +114930,4772,Bob Giraldi,1325939949 +114930,4774,Barry Sonnenfeld,1299645269 +114930,4776,Antoine Fuqua,1299963019 +114930,4778,Edet Belzberg,1292833414 +114930,4779,Kenneth A. Carlson,1335053163 +114930,4780,Stephen Frears,1448238274 +114930,4783,George Butler,1327113554 +114930,4784,Criterion,1453095184 +114930,4784,Karel Reisz,1421156041 +114930,4785,Sergio Corbucci,1294254319 +114930,4787,Jodie Foster,1329266654 +114930,4788,Vladimir Menshov,1335232140 +114930,4789,Brian De Palma,1412768789 +114930,4793,Dusan Makavejev,1298056670 +114930,4795,Ralph Nelson,1301162960 +114930,4798,Stanley Donen,1319414810 +114930,4799,Criterion,1399775897 +114930,4799,Stanley Kramer,1299553767 +114930,4801,William Wyler,1319417096 +114930,4802,Blake Edwards,1297642582 +114930,4803,Clint Eastwood,1299644493 +114930,4804,Frank Capra,1402205360 +114930,4805,Joshua Logan,1402192060 +114930,4806,Criterion,1238875428 +114930,4806,Elmar Klos,1331076835 +114930,4806,Ján Kadár,1331076835 +114930,4809,Mike Nichols,1300414524 +114930,4811,Criterion,1341592424 +114930,4811,Franc Roddam,1301002266 +114930,4814,Gary Fleder,1316715669 +114930,4815,Scott Hicks,1300415494 +114930,4816,Ben Stiller,1301034373 +114930,4816,Patton Oswalt,1332295626 +114930,4819,Jacques Rivette,1453096105 +114930,4821,John Dahl,1411932434 +114930,4824,Gillian Grisman,1335078549 +114930,4825,Criterion,1421654120 +114930,4825,Lucrecia Martel,1417207669 +114930,4826,Samuel Fuller,1299259945 +114930,4830,Stuart Rosenberg,1335281747 +114930,4833,Peter Medak,1297818368 +114930,4835,Michael Apted,1302778186 +114930,4840,Criterion,1268710658 +114930,4840,François Truffaut,1268710904 +114930,4840,Gérard Depardieu,1268710896 +114930,4842,John Irvin,1316183862 +114930,4844,Barry Levinson,1299744927 +114930,4845,Rob Pritts,1328392445 +114930,4845,Zach Galifianakis,1296424424 +114930,4846,Woo-ping Yuen,1300396511 +114930,4847,Catherine Breillat,1335504800 +114930,4847,Criterion,1335504805 +114930,4848,Criterion,1453095386 +114930,4848,David Lynch,1301903625 +114930,4849,Christine Lahti,1295124052 +114930,4851,Allison Anders,1442819092 +114930,4855,Clint Eastwood,1299644200 +114930,4855,Don Siegel,1297814738 +114930,4856,Ben Burtt,1323688581 +114930,4857,Norman Jewison,1302777579 +114930,4862,Brian Gilbert,1302287823 +114930,4863,John Waters,1301898675 +114930,4865,The Hughes Brothers,1299962558 +114930,4866,Rod Lurie,1297402429 +114930,4873,Richard Linklater,1335345249 +114930,4874,Iain Softley,1326614289 +114930,4876,Steve Beck,1301449563 +114930,4878,Richard Kelly,1302596807 +114930,4880,Irwin Winkler,1296877529 +114930,4881,Coen Brothers,1239054339 +114930,4884,Sandi Simcha Dubowski,1335052599 +114930,4885,Harold Becker,1323268169 +114930,4886,David Silverman,1328394259 +114930,4886,Lee Unkrich,1328394210 +114930,4886,Pete Docter,1328394259 +114930,4887,James Wong,1300398921 +114930,4887,Jet Li,1300398360 +114930,4888,Richard Linklater,1335299419 +114930,4889,David Mamet,1327649635 +114930,4890,Farrelly Brothers,1416382846 +114930,4895,DJ Pooh,1335039410 +114930,4896,Chris Columbus,1302035382 +114930,4898,David Atkins,1335299192 +114930,4899,Gil Junger,1328837139 +114930,4901,Tony Scott,1301034974 +114930,4902,Criterion,1399773287 +114930,4902,Guillermo del Toro,1238953821 +114930,4903,Todd Field,1335344039 +114930,4906,Nudity (Topless - Notable),1261611779 +114930,4907,Barry Shear,1440319218 +114930,4908,Jean-Luc Godard,1415557107 +114930,4912,William Wyler,1319417124 +114930,4914,Criterion,1205121619 +114930,4914,Jean-Luc Godard,1301002051 +114930,4915,Don Coscarelli,1326615261 +114930,4916,Jack Smight,1333065408 +114930,4916,Toshirô Mifune,1333065423 +114930,4918,Edward Dmytryk,1318967519 +114930,4920,Irving Rapper,1298651916 +114930,4921,George Cukor,1299362415 +114930,4927,Criterion,1238951062 +114930,4927,Peter Weir,1299963676 +114930,4928,Criterion,1268629369 +114930,4928,Luis Buñuel,1319407553 +114930,4929,Richard Donner,1300399298 +114930,4930,Guy Hamilton,1299847455 +114930,4932,Brian De Palma,1299643446 +114930,4932,Criterion,1453095207 +114930,4933,Peter Collinson,1410334821 +114930,4938,Eric Rohmer,1408161544 +114930,4945,Clint Eastwood,1299644300 +114930,4945,James Fargo,1335298414 +114930,4954,Lewis Milestone,1298653747 +114930,4956,Richard Rush,1297818217 +114930,4958,John Moore,1326336234 +114930,4963,Steven Soderbergh,1238950705 +114930,4964,Majid Majidi,1330481824 +114930,4966,Jack Arnold,1335298440 +114930,4967,Danis Tanovic,1326613930 +114930,4969,René Clair,1322756474 +114930,4970,Josef von Sternberg,1292283132 +114930,4971,Paul Mazursky,1299844758 +114930,4973,Audrey Tautou,1315401616 +114930,4973,Jean-Pierre Jeunet,1239081416 +114930,4974,Joel Gallen,1335343708 +114930,4975,Cameron Crowe,1324562962 +114930,4976,Nudity (Topless - Notable),1261610494 +114930,4976,Richard Eyre,1326441130 +114930,4977,Mohsen Makhmalbaf,1292232264 +114930,4978,Ray Lawrence,1335332612 +114930,4979,Criterion,1201668943 +114930,4979,Wes Anderson,1238885131 +114930,4980,Peter Hewitt,1302804227 +114930,4984,Karel Reisz,1421156025 +114930,4986,Chuck Norris,1327646643 +114930,4986,Michael Miller,1327646652 +114930,4988,Jeff Bleckner,1329971082 +114930,4989,Jesse Dylan,1296351529 +114930,4991,John Pasquin,1333244663 +114930,4993,Peter Jackson,1239050877 +114930,4994,Frank Darabont,1326441560 +114930,4995,Ron Howard,1300401043 +114930,4996,Jan Svankmajer,1292225703 +114930,4998,Sidney Poitier,1297815682 +114930,4998,Stanley Kramer,1299553740 +114930,4999,William Wyler,1319417024 +114930,5000,Criterion,1362736990 +114930,5000,Haskell Wexler,1335079252 +114930,5001,Zoltan Korda,1299849015 +114930,5004,Blake Edwards,1297642554 +114930,5005,Delbert Mann,1297367848 +114930,5007,Jules Dassin,1239146280 +114930,5008,Billy Wilder,1238803267 +114930,5010,Ridley Scott,1319413766 +114930,5013,Robert Altman,1301000641 +114930,5014,Jessie Nelson,1335345494 +114930,5015,Marc Forster,1301448220 +114930,5017,Fritz Lang,1319417428 +114930,5021,Robert Moore,1323268577 +114930,5022,Joseph Losey,1239137900 +114930,5023,Neal Jimenez,1335157613 +114930,5025,Colin Hanks,1295742605 +114930,5025,Jake Kasdan,1296351583 +114930,5026,Christophe Gans,1328391273 +114930,5027,Walter Hill,1319408905 +114930,5028,Ming-liang Tsai,1314683703 +114930,5034,Anthony Minghella,1299364562 +114930,5037,John Ford,1402204508 +114930,5038,Arthur Rankin Jr.,1335132494 +114930,5038,Fumihiko Takayama,1335132494 +114930,5038,Jules Bass,1335132494 +114930,5038,Katsuhisa Yamada,1335132494 +114930,5040,Richard Fleischer,1319413297 +114930,5046,Gary Fleder,1316715677 +114930,5047,Steve Oedekerk,1239133873 +114930,5048,Brian Levant,1300335973 +114930,5049,Walter Hill,1319408920 +114930,5051,Lone Scherfig,1311018471 +114930,5053,Mike Binder,1301035207 +114930,5055,Rob Cohen,1300397191 +114930,5056,Werner Herzog,1239080761 +114930,5059,Werner Herzog,1238731879 +114930,5060,Robert Altman,1301001198 +114930,5062,Criterion,1399773304 +114930,5062,John Frankenheimer,1238467467 +114930,5064,Kevin Reynolds,1299961092 +114930,5065,Mark Pellington,1323266402 +114930,5068,Xiaoshuai Wang,1292235550 +114930,5071,Denis Villeneuve,1263353894 +114930,5072,Rintaro,1335332307 +114930,5073,Golden Palm,1244223849 +114930,5073,Nanni Moretti,1315551567 +114930,5085,Otto Preminger,1402195128 +114930,5087,Bertrand Blier,1272049720 +114930,5087,Gérard Depardieu,1238133947 +114930,5088,Bertrand Blier,1408270811 +114930,5088,Gérard Depardieu,1408270811 +114930,5093,Andrew Davis,1301035101 +114930,5096,Patrick Read Johnson,1328741420 +114930,5097,David Butler,1298119576 +114930,5097,Shirley Temple,1298119532 +114930,5098,Shirley Temple,1298119535 +114930,5098,William A. Seiter,1298120120 +114930,5099,Allan Dwan,1298120029 +114930,5099,Shirley Temple,1298119537 +114930,5101,Richard Pryor,1335270949 +114930,5102,Daniel Stern,1335304338 +114930,5103,David M. Evans,1332900121 +114930,5104,Julio Medem,1295591851 +114930,5105,Criterion,1421654153 +114930,5105,Nicolas Roeg,1301002435 +114930,5107,Gregory Hoblit,1301448377 +114930,5108,Nick Cassavetes,1239003210 +114930,5110,Jay Chandrasekhar,1328569029 +114930,5111,Joseph Ruben,1323659871 +114930,5112,Fred Schepisi,1297814302 +114930,5114,Vincente Minnelli,1299364394 +114930,5118,Elaine May,1407322229 +114930,5119,Karel Reisz,1302287267 +114930,5120,Joseph L. Mankiewicz,1298997667 +114930,5121,Werner Herzog,1239080767 +114930,5122,Robert Mulligan,1300414823 +114930,5127,Kevin Costner,1301036377 +114930,5127,Tom Shadyac,1301035258 +114930,5128,Michael Rymer,1328521433 +114930,5134,Barry Skolnick,1335270809 +114930,5134,Vinnie Jones,1298123454 +114930,5135,Criterion,1335512371 +114930,5135,Mira Nair,1302670679 +114930,5137,Doug Pray,1334905497 +114930,5138,Abdul Malik Abbott,1334521902 +114930,5139,Michael Ritchie,1319408067 +114930,5140,John Berry,1301901093 +114930,5142,Criterion,1335424769 +114930,5142,Milos Forman,1269198555 +114930,5144,Lesley Selander,1405328323 +114930,5145,Criterion,1272049507 +114930,5145,Milos Forman,1272049494 +114930,5146,Yoshiaki Kawajiri,1321654647 +114930,5147,Criterion,1201666555 +114930,5147,Ingmar Bergman,1303239889 +114930,5150,Nudity (Topless - Notable),1261612035 +114930,5151,Michael Lehmann,1301437048 +114930,5154,Nudity (Topless - Notable),1261611764 +114930,5155,Nudity (Topless - Notable),1261611768 +114930,5156,Nudity (Topless - Notable),1261611771 +114930,5158,Martin Ritt,1297816772 +114930,5159,Bill Kroyer,1335325379 +114930,5164,Don Bluth,1304432540 +114930,5164,Gary Goldman,1304432563 +114930,5168,Stanley Donen,1319414775 +114930,5169,Fritz Lang,1319417420 +114930,5170,Kevin Bray,1302594147 +114930,5171,Simon Wells,1300336009 +114930,5175,Ken Loach,1406283700 +114930,5177,Fred Fleck,1421652930 +114930,5177,Orson Welles,1256679345 +114930,5177,Robert Wise,1421652930 +114930,5178,Rafal Zielinski,1421745868 +114930,5179,John Cassavetes,1299449110 +114930,5184,Criterion,1349032086 +114930,5184,Michael Cimino,1349032098 +114930,5187,Criterion,1239064746 +114930,5187,Ronald Neame,1299847134 +114930,5190,Richard Donner,1300399318 +114930,5194,Slobodan Sijan,1302285881 +114930,5196,Moustapha Akkad,1408921596 +114930,5198,Criterion,1335424284 +114930,5198,John Mackenzie,1326442124 +114930,5199,Walter Hill,1319408714 +114930,5202,Alain Resnais,1318243784 +114930,5202,Gérard Depardieu,1323686924 +114930,5218,Carlos Saldanha,1301666463 +114930,5218,Chris Wedge,1301666489 +114930,5218,Ray Romano,1293354693 +114930,5219,Paul W.S. Anderson,1306101725 +114930,5220,Tom Dey,1238879826 +114930,5224,B.Z. Goldberg,1335081015 +114930,5224,Carlos Bolado,1335081015 +114930,5225,Alfonso Cuarón,1272051869 +114930,5225,Criterion,1421652562 +114930,5227,Richard Fleischer,1402198776 +114930,5228,George Marshall,1403521485 +114930,5230,Norman Z. McLeod,1299627558 +114930,5231,David Butler,1401259848 +114930,5232,Victor Schertzinger,1403521503 +114930,5233,Hal Walker,1335052111 +114930,5234,Victor Schertzinger,1403521516 +114930,5236,Eric Rohmer,1319412033 +114930,5238,John Sayles,1301543163 +114930,5241,Jay Sandrich,1428001577 +114930,5243,Jackie Chan,1420724480 +114930,5244,Robert Houston,1335272921 +114930,5250,Sidney Poitier,1326338008 +114930,5254,Guillermo del Toro,1238953957 +114930,5258,Criterion,1289937425 +114930,5258,David Gordon Green,1300336825 +114930,5264,Jonathan Frakes,1331172483 +114930,5265,Danny DeVito,1306101796 +114930,5266,David Fincher,1302085859 +114930,5267,John Lee Hancock,1335342815 +114930,5268,Hal Hartley,1301445650 +114930,5269,Michael Haneke,1238929385 +114930,5272,Laurent Cantet,1272642710 +114930,5279,James Lapine,1256570309 +114930,5282,Carl Franklin,1326334444 +114930,5283,Walt Becker,1332888229 +114930,5286,Olivier Assayas,1418019533 +114930,5287,James Foley,1323268037 +114930,5288,Jayne Loader,1292275889 +114930,5289,Robert Rossen,1299364876 +114930,5291,Akira Kurosawa,1268796036 +114930,5291,Best of Rotten Tomatoes: All Time,1290798182 +114930,5291,Criterion,1268797170 +114930,5291,Toshirô Mifune,1333065290 +114930,5292,George Roy Hill,1300339752 +114930,5293,Roger Michell,1302082998 +114930,5294,Bill Paxton,1238964446 +114930,5296,Roger Kumble,1302034704 +114930,5299,Joel Zwick,1335420415 +114930,5300,Criterion,1362736967 +114930,5300,Delmer Daves,1299260138 +114930,5304,Criterion,1271537008 +114930,5304,Roberto Rossellini,1271537000 +114930,5305,John De Bello,1328931379 +114930,5312,Barbet Schroeder,1301446898 +114930,5313,Chuck Russell,1324753565 +114930,5314,Walter Salles,1238972084 +114930,5316,Michael Apted,1302778188 +114930,5319,Fabián Bielinsky,1335327209 +114930,5323,James Isaac,1301999982 +114930,5324,Stephen Herek,1323658457 +114930,5325,Stacy Peralta,1332890156 +114930,5329,D.J. Caruso,1300223224 +114930,5333,Criterion,1238857298 +114930,5333,Jean-Pierre Melville,1239079958 +114930,5334,Roger Donaldson,1301035717 +114930,5337,Tom Mankiewicz,1333070464 +114930,5339,Best of Rotten Tomatoes: All Time,1290797782 +114930,5339,Woody Allen,1302670378 +114930,5340,Nudity (Topless - Notable),1261612253 +114930,5341,Bob Fosse,1335298855 +114930,5347,Scott Kalvert,1335078961 +114930,5349,Sam Raimi,1301035631 +114930,5354,Gene Saks,1406450851 +114930,5355,George P. Cosmatos,1325893998 +114930,5357,Charles Haid,1328329881 +114930,5358,Bob Rafelson,1328931251 +114930,5361,Randal Kleiser,1301898901 +114930,5363,Ed Decter,1335303513 +114930,5364,Adrian Lyne,1327649504 +114930,5365,Eric Rohmer,1408161583 +114930,5366,Ken Russell,1444180127 +114930,5367,Criterion,1453095164 +114930,5367,Stephen Frears,1319412572 +114930,5368,Criterion,1201666650 +114930,5368,Grigori Chukhrai,1323657698 +114930,5372,David Butler,1401259839 +114930,5373,Criterion,1238856626 +114930,5373,Mikhail Kalatozov,1335133719 +114930,5375,George Sidney,1402201706 +114930,5377,Chris Weitz,1302805242 +114930,5378,George Lucas,1320185282 +114930,5379,Henry Bean,1301448285 +114930,5380,Oliver Parker,1295601320 +114930,5383,Terence Fisher,1335277240 +114930,5384,Robert Wise,1335048412 +114930,5385,Martin Scorsese,1299844281 +114930,5387,Michael Apted,1302778154 +114930,5388,Christopher Nolan,1323266059 +114930,5390,Gérard Depardieu,1323684743 +114930,5390,Roman Coppola,1323686771 +114930,5391,Jill Sprecher,1267818289 +114930,5395,Karel Reisz,1421156013 +114930,5397,Howard Hawks,1402197320 +114930,5398,Ralph Nelson,1301162937 +114930,5400,Phil Alden Robinson,1296350779 +114930,5401,Malcolm D. Lee,1335331724 +114930,5404,David Hugh Jones,1335282494 +114930,5409,Dwight H. Little,1326613883 +114930,5410,Douglas Trumbull,1335303895 +114930,5414,Joel Schumacher,1299962137 +114930,5417,Zacharias Kunuk,1335301131 +114930,5418,Doug Liman,1302085564 +114930,5419,Raja Gosnell,1301436952 +114930,5420,John Woo,1238769088 +114930,5421,Peter Care,1335325044 +114930,5423,Paul McGuigan,1330481909 +114930,5425,Jan Sverák,1333062981 +114930,5427,Carl Gottlieb,1328394722 +114930,5431,Jack Nicholson,1238806509 +114930,5434,Anatole Litvak,1299846242 +114930,5435,Martin Ritt,1297816795 +114930,5436,Criterion,1239139664 +114930,5436,Ronald Neame,1299847131 +114930,5437,Marshall Brickman,1321658965 +114930,5438,Emilio Estevez,1302286484 +114930,5440,John Ford,1299363633 +114930,5443,Jesse Vaughan,1327117405 +114930,5444,Chris Sanders,1300339420 +114930,5444,Dean DeBlois,1300339436 +114930,5445,Steven Spielberg,1299850158 +114930,5446,Phillip Noyce,1238963715 +114930,5449,Steven Brill,1297624161 +114930,5450,Nicole Holofcener,1297966042 +114930,5452,Tom Ropelewski,1335038613 +114930,5459,Barry Sonnenfeld,1299645267 +114930,5459,David Cross,1301552219 +114930,5464,Sam Mendes,1302778783 +114930,5465,Shunji Iwai,1292233359 +114930,5466,Yvan Attal,1300338298 +114930,5470,Anthony Asquith,1298993010 +114930,5470,Criterion,1201666707 +114930,5472,Peter H. Hunt,1406028732 +114930,5473,Rainer Werner Fassbinder,1238859945 +114930,5475,Costa-Gavras,1296947292 +114930,5475,Criterion,1335658699 +114930,5476,Rick Rosenthal,1296357033 +114930,5477,Julio Medem,1295591856 +114930,5478,Ellory Elkayem,1328328050 +114930,5479,Kathryn Bigelow,1302777796 +114930,5480,Michael J. Fox,1299641761 +114930,5480,Rob Minkoff,1299643595 +114930,5481,Jay Roach,1258372641 +114930,5483,Brett Morgen,1266708875 +114930,5483,Nanette Burstein,1266708875 +114930,5484,Zhang Yimou,1300399016 +114930,5485,Gary Winick,1321656981 +114930,5488,Criterion,1453094721 +114930,5488,Rainer Werner Fassbinder,1408917173 +114930,5489,Werner Herzog,1239080791 +114930,5491,George Sidney,1402201699 +114930,5496,Luchino Visconti,1290802220 +114930,5498,Akira Kurosawa,1268796348 +114930,5498,Criterion,1268797172 +114930,5498,Takashi Shimura,1268796291 +114930,5498,Toshirô Mifune,1268796291 +114930,5500,David Zucker,1299849120 +114930,5500,Jerry Zucker,1299849120 +114930,5500,Jim Abrahams,1299849120 +114930,5501,Perry Andelin Blake,1327648909 +114930,5502,M. Night Shyamalan,1321657092 +114930,5505,Miguel Arteta,1296424406 +114930,5507,Rob Cohen,1300397244 +114930,5508,Michael Winterbottom,1312349721 +114930,5508,Steve Coogan,1312349774 +114930,5509,Nick Broomfield,1299259280 +114930,5510,Jesse Peretz,1312441440 +114930,5512,Babak Payami,1334021036 +114930,5514,Stanley Kwan,1411636817 +114930,5515,Roy Andersson,1302032872 +114930,5516,Jacques Audiard,1255420691 +114930,5517,Claude Chabrol,1414218821 +114930,5518,Bertrand Blier,1408270787 +114930,5522,Norman Jewison,1302777530 +114930,5525,Sandra Nettelbeck,1335299511 +114930,5526,Kim Ki-Duk,1335331127 +114930,5528,Mark Romanek,1292280479 +114930,5530,Andrew Niccol,1319219970 +114930,5530,Jason Schwartzman,1296951926 +114930,5540,Desmond Davis,1302888093 +114930,5541,Jim Abrahams,1299850925 +114930,5544,Nicholas Meyer,1302288328 +114930,5553,John Badham,1299642746 +114930,5555,Michael Wadleigh,1335230201 +114930,5560,Criterion,1201666179 +114930,5560,René Clair,1322756476 +114930,5563,Michael Caton-Jones,1299643248 +114930,5568,Amy Heckerling,1301034105 +114930,5570,Alejandro Amenábar,1239068125 +114930,5572,Tim Story,1335333972 +114930,5573,Bruce McCulloch,1296351559 +114930,5573,Martin Starr,1296351454 +114930,5574,Corey Yuen,1300396335 +114930,5575,Claude Miller,1407712780 +114930,5577,Burr Steers,1301450240 +114930,5582,Thom Eberhardt,1327649436 +114930,5591,Franco Amurri,1335079946 +114930,5593,Jack Smight,1408921671 +114930,5597,Burt Kennedy,1255424039 +114930,5598,Neal Israel,1296356961 +114930,5599,F.W. Murnau,1238875547 +114930,5600,Philip Kaufman,1419833370 +114930,5601,Clarence Brown,1299627063 +114930,5602,Alexander Mackendrick,1239139827 +114930,5603,Charles Crichton,1302288024 +114930,5604,Alexander Mackendrick,1272049484 +114930,5605,Criterion,1319220553 +114930,5605,Lynne Ramsay,1319220503 +114930,5607,Juan José Campanella,1301452898 +114930,5608,Oliver Hirschbiegel,1239132258 +114930,5612,Luis Mandoki,1238954180 +114930,5614,Ferzan Ozpetek,1417208414 +114930,5615,Werner Herzog,1239080801 +114930,5617,Nudity (Topless - Notable),1261611024 +114930,5617,Stephen McHattie,1299872460 +114930,5617,Steven Shainberg,1299872160 +114930,5618,Hayao Miyazaki,1238925819 +114930,5619,Eugene Jarecki,1325894393 +114930,5622,Adam Thomas Anderegg,1334965343 +114930,5627,Chris Eyre,1334906363 +114930,5628,Gérard Krawczyk,1300400515 +114930,5628,Jean Reno,1300400480 +114930,5630,Brett Ratner,1296356587 +114930,5632,Paul Greengrass,1239153796 +114930,5633,Tom Tykwer,1302236036 +114930,5635,George Hickenlooper,1301449748 +114930,5636,Anthony Russo,1328741490 +114930,5637,John Duigan,1335279255 +114930,5642,Harold Becker,1335275380 +114930,5643,Criterion,1349032148 +114930,5643,Godfrey Reggio,1292275380 +114930,5644,Sam Wood,1299364135 +114930,5646,Milos Forman,1335286553 +114930,5649,Terence Fisher,1402213167 +114930,5650,Dave Thomas,1329441873 +114930,5650,Rick Moranis,1335333613 +114930,5653,Sergio Corbucci,1294254339 +114930,5659,Anthony Pelissier,1419664059 +114930,5660,Bryan Forbes,1297621235 +114930,5662,David Steinberg,1335052286 +114930,5663,David Twohy,1376453050 +114930,5665,Brian Koppelman,1317076902 +114930,5665,David Levien,1317076913 +114930,5666,Roger Avary,1299961722 +114930,5668,Peter Kosminsky,1300992195 +114930,5669,Michael Moore,1238926995 +114930,5671,Philippe de Broca,1423551678 +114930,5673,Paul Thomas Anderson,1302778637 +114930,5675,Guy Ritchie,1238200904 +114930,5678,Rhys Ifans,1302641798 +114930,5678,Ronny Yu,1263341640 +114930,5679,Gore Verbinski,1299626453 +114930,5680,Paul Schrader,1299642476 +114930,5682,Tim Blake Nelson,1335230247 +114930,5684,Criterion,1349032154 +114930,5684,Godfrey Reggio,1349032154 +114930,5685,Patricia Cardoso,1335303714 +114930,5686,Aleksandr Sokurov,1292235693 +114930,5688,Hilary Birmingham,1335078935 +114930,5689,Robert Benton,1332813915 +114930,5690,Isao Takahata,1292924423 +114930,5692,Michael Winner,1418112515 +114930,5705,Robert Greenwald,1238925406 +114930,5712,Brian De Palma,1299643388 +114930,5712,Criterion,1299643388 +114930,5718,Michael Schultz,1299845424 +114930,5720,Sergio Corbucci,1414218183 +114930,5721,Jeremy Paul Kagan,1335157253 +114930,5722,Francis Veber,1300399771 +114930,5722,Gérard Depardieu,1323684555 +114930,5725,Andrzej Wajda,1408956751 +114930,5728,Peter R. Hunt,1401881840 +114930,5732,Richard Marquand,1320185359 +114930,5741,François Truffaut,1407717002 +114930,5744,Arthur Penn,1426472855 +114930,5745,Alan Alda,1238998816 +114930,5747,Peter Weir,1238951082 +114930,5748,Claude Miller,1407712799 +114930,5752,Bill Forsyth,1321655851 +114930,5762,Rainer Werner Fassbinder,1408917171 +114930,5763,Criterion,1267818055 +114930,5763,Rainer Werner Fassbinder,1319408554 +114930,5765,Friz Freleng,1412531475 +114930,5765,Gerry Chiniquy,1412531475 +114930,5765,Phil Monroe,1412531474 +114930,5767,Stanislaw Bareja,1292233761 +114930,5768,Ken Shapiro,1327116677 +114930,5769,Albert Brooks,1238138107 +114930,5772,Criterion,1318244297 +114930,5772,Louis Malle,1239138099 +114930,5780,John Waters,1301898687 +114930,5782,Georges Lautner,1292923226 +114930,5783,Amy Ziering,1423219422 +114930,5783,Kirby Dick,1423219422 +114930,5785,Jeff Tremaine,1335345261 +114930,5787,Jonathan Demme,1238859293 +114930,5788,Mike Leigh,1238966172 +114930,5791,Julie Taymor,1238971630 +114930,5792,Dylan Kidd,1335305893 +114930,5799,Otto Preminger,1299848419 +114930,5801,Norman Jewison,1302777505 +114930,5802,George Roy Hill,1300339695 +114930,5803,Betty Thomas,1301548938 +114930,5806,Samira Makhmalbaf,1265337168 +114930,5808,Nudity (Topless - Notable),1261609674 +114930,5810,Curtis Hanson,1301901076 +114930,5812,Todd Haynes,1301549751 +114930,5815,Don Michael Paul,1335132178 +114930,5816,Chris Columbus,1302035380 +114930,5817,Atom Egoyan,1321658385 +114930,5820,Paul Justman,1299041565 +114930,5823,Robert Harmon,1300402009 +114930,5825,Criterion,1201666733 +114930,5825,Emeric Pressburger,1302888053 +114930,5825,Michael Powell,1299745226 +114930,5826,John Ford,1299363573 +114930,5830,Cy Endfield,1335132576 +114930,5839,Yves Robert,1302800144 +114930,5840,Yves Robert,1302800143 +114930,5843,Daniel Petrie Jr.,1301034083 +114930,5847,Milos Forman,1335275474 +114930,5853,Criterion,1399778409 +114930,5853,David Cronenberg,1238149164 +114930,5856,Emir Kusturica,1292221314 +114930,5859,Walter Hill,1407136855 +114930,5867,Criterion,1399775875 +114930,5867,Michael Mann,1302595149 +114930,5874,Gerry Bednob,1328837021 +114930,5874,Marcus Raboy,1300243407 +114930,5876,Phillip Noyce,1238963736 +114930,5878,Pedro Almodóvar,1238259606 +114930,5882,Ron Clements,1239112167 +114930,5888,Aleksey Balabanov,1296339462 +114930,5889,Eldar Ryazanov,1334907153 +114930,5890,Petter Næss,1326440399 +114930,5893,John Dahl,1300414914 +114930,5896,Allan Moyle,1315404590 +114930,5896,Andrew McCarthy,1315404656 +114930,5899,Cy Endfield,1335323124 +114930,5900,Harold Ramis,1324753797 +114930,5902,Spike Jonze,1332900235 +114930,5903,Kurt Wimmer,1325939295 +114930,5907,Pier Paolo Pasolini,1316182349 +114930,5909,Takashi Miike,1257354050 +114930,5910,Claude Lelouch,1409396780 +114930,5912,Juliusz Machulski,1292228674 +114930,5914,Criterion,1421654281 +114930,5914,Errol Morris,1238394011 +114930,5916,John Badham,1299642751 +114930,5923,Arthur Hiller,1326440587 +114930,5932,Criterion,1238731774 +114930,5932,Les Blank,1330129869 +114930,5934,John Frankenheimer,1238467516 +114930,5934,Toshirô Mifune,1333065294 +114930,5936,Robert Altman,1301000130 +114930,5937,Andrzej Wajda,1263217912 +114930,5937,Criterion,1238857377 +114930,5937,Gérard Depardieu,1238133940 +114930,5938,Sidney Lumet,1319416211 +114930,5940,Criterion,1341592438 +114930,5940,Paul Bartel,1272043889 +114930,5945,Alexander Payne,1238862305 +114930,5947,Bruce Beresford,1301001616 +114930,5949,Juan Carlos Fresnadillo,1335273850 +114930,5951,Nudity (Topless - Notable),1261612029 +114930,5952,Peter Jackson,1239050888 +114930,5954,Spike Lee,1299558893 +114930,5955,Denzel Washington,1238148792 +114930,5956,Martin Scorsese,1299844335 +114930,5959,Joe Carnahan,1238880988 +114930,5963,William Wyler,1319417090 +114930,5965,Ridley Scott,1319413503 +114930,5969,Howard Zieff,1239052202 +114930,5970,Howard Zieff,1239052179 +114930,5971,Hayao Miyazaki,1238925929 +114930,5974,Criterion,1299745264 +114930,5974,Ludwig Berger,1316180204 +114930,5974,Michael Powell,1299745264 +114930,5974,Tim Whelan,1316180204 +114930,5980,Bob Clark,1312344014 +114930,5985,Santosh Sivan,1314684285 +114930,5986,John Huston,1301033206 +114930,5988,Thomas Michael Donnelly,1335079669 +114930,5989,Steven Spielberg,1299850130 +114930,5990,Roberto Benigni,1239071936 +114930,5991,Rob Marshall,1296351833 +114930,5992,Stephen Daldry,1303419675 +114930,5993,Menno Meyjes,1329267323 +114930,5994,Douglas McGrath,1301001361 +114930,5995,Roman Polanski,1301899753 +114930,5996,Nicolas Cage,1299851627 +114930,5997,Richard Whorf,1402210536 +114930,6001,Martin Scorsese,1299844293 +114930,6003,George Clooney,1328390443 +114930,6004,Manoel de Oliveira,1411721372 +114930,6007,Steve Guttenberg,1334532061 +114930,6008,Jean-Pierre Dardenne,1306103200 +114930,6008,Luc Dardenne,1306103200 +114930,6011,David Anspaugh,1328327678 +114930,6013,David McNally,1335301225 +114930,6014,Dennis Dugan,1300230366 +114930,6016,Fernando Meirelles,1333682331 +114930,6016,Kátia Lund,1333682348 +114930,6017,Elia Suleiman,1405149403 +114930,6020,George Stevens,1297641257 +114930,6021,Criterion,1453095816 +114930,6021,Wim Wenders,1302286240 +114930,6023,Criterion,1238856980 +114930,6023,Jean-Luc Godard,1301002033 +114930,6025,Tamra Davis,1301033641 +114930,6027,Nancy Savoca,1304576867 +114930,6031,Douglas Sirk,1299745815 +114930,6032,George Roy Hill,1300339722 +114930,6033,Jonathan Wacks,1323688926 +114930,6035,Criterion,1201666778 +114930,6035,Julien Duvivier,1335082686 +114930,6040,Jonathan Liebesman,1258372136 +114930,6041,Costa-Gavras,1296947238 +114930,6042,André Heller,1335080084 +114930,6042,Othmar Schmiderer,1335080084 +114930,6046,John Berry,1402191551 +114930,6047,John Cromwell,1312342542 +114930,6048,Mervyn LeRoy,1401090238 +114930,6051,Criterion,1335424247 +114930,6051,Perry Henzell,1333828693 +114930,6056,Coline Serreau,1325894952 +114930,6058,David R. Ellis,1299642133 +114930,6060,Daisy von Scherler Mayer,1314684063 +114930,6062,Keith Fulton,1329441994 +114930,6062,Louis Pepe,1329441994 +114930,6063,Lucky McKee,1311017745 +114930,6064,Mark Robson,1298992854 +114930,6065,John Boulting,1300335890 +114930,6066,Bob Clark,1408785907 +114930,6068,Raoul Walsh,1402192781 +114930,6069,Basil Dearden,1403944704 +114930,6071,Robert Day,1402212539 +114930,6072,Claude Chabrol,1298996286 +114930,6073,Basil Dearden,1302287901 +114930,6073,Criterion,1335658296 +114930,6075,Hans Alfredson,1328523604 +114930,6077,Guy Hamilton,1299847465 +114930,6082,Phillip Borsos,1293987427 +114930,6093,Arthur Rankin Jr.,1335324965 +114930,6093,Jules Bass,1335324965 +114930,6101,Costa-Gavras,1296947290 +114930,6101,Criterion,1335512172 +114930,6104,Ian MacNaughton,1328931175 +114930,6104,Terry Hughes,1328931183 +114930,6105,Jerzy Skolimowski,1301445498 +114930,6107,Paolo Taviani,1300432977 +114930,6107,Vittorio Taviani,1300432960 +114930,6108,Ettore Scola,1412530281 +114930,6118,Criterion,1453095234 +114930,6118,Krzysztof Kieslowski,1292881497 +114930,6119,Jean-Marie Poiré,1300399549 +114930,6122,Joe Layton,1332466333 +114930,6123,Chris Marker,1333076915 +114930,6123,Criterion,1335424508 +114930,6124,Pierre De Moro,1419550776 +114930,6125,Julien Temple,1301002616 +114930,6126,Criterion,1237329436 +114930,6126,Rainer Werner Fassbinder,1238859965 +114930,6127,Alan Parker,1326442011 +114930,6133,Wim Wenders,1302286199 +114930,6134,Gillian Armstrong,1419969166 +114930,6136,Víctor Erice,1413176998 +114930,6140,Dario Argento,1301899239 +114930,6144,Franco Zeffirelli,1300338942 +114930,6146,José Luis Garci,1403607549 +114930,6147,Michael Verhoeven,1292273518 +114930,6148,Criterion,1238875043 +114930,6148,Samuel Fuller,1299259772 +114930,6151,Serif Gören,1328522098 +114930,6151,Yilmaz Güney,1328522098 +114930,6156,David Dobkin,1300397665 +114930,6157,Mark Steven Johnson,1302000035 +114930,6159,Danny McBride,1300336865 +114930,6159,David Gordon Green,1301541113 +114930,6160,Lee Hirsch,1335038534 +114930,6162,Gus Van Sant,1238309865 +114930,6163,Audrey Tautou,1315401518 +114930,6163,Laetitia Colombani,1295123973 +114930,6164,John Luessenhop,1308942247 +114930,6166,Nick Castle,1256065914 +114930,6170,Carroll Ballard,1335307958 +114930,6170,Criterion,1453095033 +114930,6171,Claude Sautet,1422963256 +114930,6173,Mike Newell,1296880441 +114930,6178,Guy Green,1299844468 +114930,6181,John Huston,1335081728 +114930,6182,Norman Jewison,1302777447 +114930,6183,Michael Gordon,1298997277 +114930,6184,Criterion,1335511772 +114930,6184,Nicolas Roeg,1335511767 +114930,6187,Alan Parker,1326442030 +114930,6188,Todd Phillips,1296424370 +114930,6191,Ken Loach,1406283715 +114930,6192,Mads Mikkelsen,1315400303 +114930,6192,Susanne Bier,1295252326 +114930,6193,Mars Callahan,1335273232 +114930,6195,Mark Moskowitz,1335082218 +114930,6196,Andrzej Bartkowiak,1300398234 +114930,6196,Jet Li,1300397955 +114930,6197,David Cronenberg,1238149170 +114930,6200,Criterion,1335508921 +114930,6200,Nicolas Roeg,1301002373 +114930,6201,Trevor Nunn,1326337453 +114930,6202,Dover Koshashvili,1310677108 +114930,6204,Robert Townsend,1328521032 +114930,6206,Fielder Cook,1323687791 +114930,6211,Abbas Kiarostami,1292234158 +114930,6212,Adam Shankman,1301437317 +114930,6214,Gaspar Noé,1302085598 +114930,6214,Nudity (Topless - Notable),1261611660 +114930,6215,Lisa Cholodenko,1317074196 +114930,6216,Caroline Link,1311153485 +114930,6218,Gurinder Chadha,1239153314 +114930,6220,Glen Morgan,1256055610 +114930,6224,Rakhshan Bani Etemad,1408160348 +114930,6225,Nicholas Ray,1402213293 +114930,6226,Criterion,1335511232 +114930,6226,Margarethe von Trotta,1335054083 +114930,6226,Volker Schlöndorff,1335054083 +114930,6228,George Stevens,1297641278 +114930,6229,Criterion,1335658122 +114930,6229,Monte Hellman,1300993477 +114930,6230,John D. Hancock,1332813989 +114930,6232,James Hill,1413019704 +114930,6232,Tom McGowan,1413019704 +114930,6234,Sidney Lumet,1410939549 +114930,6235,Agnieszka Holland,1325937657 +114930,6236,Robert Mulligan,1427811258 +114930,6237,Anthony Mann,1298996929 +114930,6239,Henry Levin,1420274377 +114930,6241,Eric Rohmer,1319412024 +114930,6242,Hideo Nakata,1296351359 +114930,6242,Hiroyuki Sanada,1296351180 +114930,6244,Mira Nair,1302670661 +114930,6247,Ken Russell,1300993339 +114930,6252,Bruno Barreto,1302673794 +114930,6254,Leo McCarey,1297638723 +114930,6257,Criterion,1335508197 +114930,6257,Vilgot Sjöman,1335508215 +114930,6258,Criterion,1214256684 +114930,6258,Robert Bresson,1304945066 +114930,6263,John McTiernan,1300400732 +114930,6265,Chris Rock,1335279263 +114930,6268,Peter Sollett,1301162554 +114930,6269,Steve James,1292275443 +114930,6270,Akira Kurosawa,1268795957 +114930,6271,Criterion,1453095196 +114930,6271,François Truffaut,1268710933 +114930,6273,Nicholas Ray,1299915800 +114930,6277,Toshirô Mifune,1333065395 +114930,6277,William Richert,1333065373 +114930,6279,Neil Jordan,1302637184 +114930,6280,F. Gary Gray,1238737484 +114930,6281,Joel Schumacher,1299962123 +114930,6283,Shinichirô Watanabe,1328742072 +114930,6285,Ed Solomon,1335051941 +114930,6286,Aki Kaurismäki,1263337976 +114930,6287,Peter Segal,1302040390 +114930,6288,Justin Lin,1329267169 +114930,6289,James Cameron,1238964680 +114930,6290,Rob Zombie,1257637249 +114930,6291,Lukas Moodysson,1263351012 +114930,6292,Wiebke von Carolsfeld,1421742431 +114930,6296,Christopher Guest,1297367990 +114930,6297,Andrew Davis,1301035103 +114930,6299,Jacques Cluzaud,1320868246 +114930,6299,Jacques Perrin,1320868229 +114930,6300,Anders Thomas Jensen,1297398947 +114930,6300,Mads Mikkelsen,1315400322 +114930,6300,Ulrich Thomsen,1297398822 +114930,6301,Criterion,1302284985 +114930,6301,Sam Peckinpah,1326441712 +114930,6303,Robert Wise,1298998013 +114930,6304,John Flynn,1301451066 +114930,6305,François Truffaut,1268710911 +114930,6306,Sam Jones,1335231857 +114930,6307,John Frankenheimer,1238467488 +114930,6314,Herbert Ross,1297642081 +114930,6315,Michael Ritchie,1319408063 +114930,6322,James Foley,1323268039 +114930,6323,James Mangold,1299852245 +114930,6326,Gérard Depardieu,1323686712 +114930,6326,Matt Dillon,1323686707 +114930,6327,Clint Eastwood,1299644214 +114930,6327,Richard LaGravenese,1335230330 +114930,6327,Ted Demme,1333680904 +114930,6329,Jordan Melamed,1335083227 +114930,6331,Jeffrey Blitz,1329164740 +114930,6333,Bryan Singer,1293735663 +114930,6334,Karen Moncrieff,1403257672 +114930,6335,John Malkovich,1269567625 +114930,6336,Bahman Ghobadi,1271453553 +114930,6337,Richard Kwietniowski,1335287447 +114930,6338,Steve Carr,1239133252 +114930,6339,Patrice Leconte,1239080310 +114930,6344,Baltasar Kormákur,1295983248 +114930,6350,Hayao Miyazaki,1238925914 +114930,6356,John Sturges,1301158028 +114930,6357,Charles Walters,1302001097 +114930,6358,George Sidney,1298994335 +114930,6365,Wachowski Brothers,1325895332 +114930,6366,Guy Maddin,1413188787 +114930,6368,Angela Christlieb,1315838894 +114930,6368,Stephen Kijak,1315838880 +114930,6370,Audrey Tautou,1315401590 +114930,6370,Cédric Klapisch,1255420798 +114930,6373,Steve Carell,1302040832 +114930,6373,Tom Shadyac,1238968600 +114930,6374,Andrew Fleming,1312349266 +114930,6375,AJ Schnack,1321658520 +114930,6376,Emanuele Crialese,1300338328 +114930,6377,Andrew Stanton,1328392264 +114930,6378,F. Gary Gray,1327115847 +114930,6379,Rob Schmidt,1307544728 +114930,6380,Andrew Jarecki,1292265757 +114930,6382,Kaige Chen,1335082930 +114930,6383,John Singleton,1299961527 +114930,6385,Niki Caro,1239149561 +114930,6387,Chow Yun Fat,1239045370 +114930,6387,John Woo,1238769063 +114930,6388,Gillies MacKinnon,1328837654 +114930,6390,Rouben Mamoulian,1385946438 +114930,6394,George Sherman,1402311118 +114930,6394,John Wayne,1402311119 +114930,6397,Marcel Carné,1424758674 +114930,6400,Jean-Xavier de Lestrade,1335082327 +114930,6403,Frank Perry,1335078924 +114930,6403,Sydney Pollack,1299360892 +114930,6404,Criterion,1201666828 +114930,6404,Federico Fellini,1299448485 +114930,6405,Byron Haskin,1301162868 +114930,6408,Jamie Uys,1326208514 +114930,6409,Anthony Mann,1298996894 +114930,6411,Robert Mulligan,1427811253 +114930,6412,George Marshall,1312342440 +114930,6415,Federico Fellini,1299448534 +114930,6416,Bryan Forbes,1297621250 +114930,6419,James Ivory,1297639450 +114930,6422,Andrew V. McLaglen,1299848966 +114930,6424,John Landis,1298994494 +114930,6425,Randall Miller,1328329968 +114930,6426,Anthony Mann,1410678835 +114930,6428,Clint Eastwood,1299644330 +114930,6428,Don Siegel,1297814965 +114930,6429,Anthony Mann,1298996928 +114930,6433,Dziga Vertov,1293359303 +114930,6434,Raoul Walsh,1402192774 +114930,6436,Michael Caton-Jones,1299643248 +114930,6437,Henry Hathaway,1307543679 +114930,6439,Robert Aldrich,1300223656 +114930,6440,Coen Brothers,1239054309 +114930,6441,Guy Hamilton,1299847475 +114930,6442,Fernando Trueba,1335278742 +114930,6443,Louis R. Loeffler,1397339996 +114930,6443,Raoul Walsh,1397339996 +114930,6448,Robert Aldrich,1300223731 +114930,6450,John Huston,1301033258 +114930,6452,Martin Ritt,1297816803 +114930,6453,Robert J. Flaherty,1402198026 +114930,6454,Costa-Gavras,1296947252 +114930,6455,Henry Hathaway,1397339697 +114930,6456,Claude Chabrol,1414218837 +114930,6457,Lewis Gilbert,1299847259 +114930,6458,John Guillermin,1413162463 +114930,6459,Henry Hathaway,1319411153 +114930,6460,Orson Welles,1296947781 +114930,6461,John Huston,1301033501 +114930,6463,Steve Yeager,1334909675 +114930,6464,Brian Robbins,1324753421 +114930,6465,Criterion,1335509991 +114930,6465,Derek Jarman,1335509987 +114930,6466,Mira Nair,1302670668 +114930,6467,Best of Rotten Tomatoes: All Time,1290798167 +114930,6467,Criterion,1238857100 +114930,6467,Henri-Georges Clouzot,1292880721 +114930,6477,Henry King,1298993236 +114930,6478,John Huston,1402199111 +114930,6480,George Roy Hill,1409478249 +114930,6483,Robert Iscove,1335277883 +114930,6488,Danièle Thompson,1300337837 +114930,6488,Jean Reno,1300400126 +114930,6490,Eric Eason,1422093199 +114930,6495,Blake Edwards,1408919387 +114930,6499,D.W. Griffith,1411550099 +114930,6502,Cillian Murphy,1312352219 +114930,6502,Danny Boyle,1296352305 +114930,6505,Jonathan Wacks,1323688924 +114930,6509,Criterion,1201667588 +114930,6509,Rainer Werner Fassbinder,1238857215 +114930,6511,John Krish,1327646089 +114930,6511,Peter Sykes,1327646089 +114930,6515,Fritz Lang,1319417330 +114930,6516,Anatole Litvak,1299846272 +114930,6522,Howard Hawks,1402197314 +114930,6523,Fred Schepisi,1258523559 +114930,6524,Jules Dassin,1239146283 +114930,6526,Akira Kurosawa,1268796038 +114930,6527,George Sidney,1298994325 +114930,6530,Roman Polanski,1301899657 +114930,6533,Peter Bogdanovich,1299955825 +114930,6534,Ang Lee,1300396899 +114930,6537,Jonathan Mostow,1312346780 +114930,6538,François Ozon,1266306647 +114930,6539,Gore Verbinski,1299626442 +114930,6541,Stephen Norrington,1332900634 +114930,6542,Aleksandr Rogozhkin,1307542464 +114930,6544,Claude Berri,1239080136 +114930,6545,Tim Frywell,1301450203 +114930,6547,Michael Polish,1317073092 +114930,6548,Michael Bay,1323268513 +114930,6550,Peter Howitt,1352340655 +114930,6552,Audrey Tautou,1315401608 +114930,6552,Stephen Frears,1319412599 +114930,6553,Matteo Garrone,1422963433 +114930,6555,Lucas Belvaux,1421307819 +114930,6556,Kei Kumai,1268146007 +114930,6557,John Gray,1325893392 +114930,6558,John Hughes,1302039652 +114930,6558,Steve Carell,1302040813 +114930,6559,Duwayne Dunham,1299645166 +114930,6561,Jack Arnold,1335283252 +114930,6562,Delmer Daves,1405332563 +114930,6563,Larry Charles,1326338118 +114930,6564,Jan de Bont,1302778420 +114930,6565,Gary Ross,1323173669 +114930,6567,Gregor Jordan,1273247602 +114930,6571,Fernando León de Aranda,1269567673 +114930,6573,Billy Wilder,1302031082 +114930,6577,Albert Pyun,1300402138 +114930,6578,Billy Wilder,1402201557 +114930,6579,Billy Wilder,1238803264 +114930,6581,Billy Wilder,1302031099 +114930,6583,David Webb Peoples,1335082087 +114930,6586,Jesse Dylan,1296351534 +114930,6587,Martin Brest,1328741395 +114930,6591,Peter Mullan,1271731675 +114930,6593,Mark Waters,1308333222 +114930,6598,Dana Brown,1239149023 +114930,6599,Pier Paolo Pasolini,1316182357 +114930,6603,George Cukor,1402209878 +114930,6604,Pier Paolo Pasolini,1316182331 +114930,6605,Arthur Hiller,1401138170 +114930,6609,Pier Paolo Pasolini,1316182362 +114930,6610,Criterion,1335507610 +114930,6610,Donald Volkman,1335507605 +114930,6610,Leonard Kastle,1335507604 +114930,6611,Criterion,1201666267 +114930,6611,Vittorio De Sica,1273112217 +114930,6612,Bruce Sinofsky,1335274085 +114930,6612,Joe Berlinger,1300335686 +114930,6614,Lawrence Kasdan,1299962620 +114930,6617,Kevin Costner,1239003458 +114930,6618,Stephen Chow,1314400402 +114930,6620,Robert Pulcini,1308334048 +114930,6620,Shari Springer Berman,1308334027 +114930,6625,Jonathan Prince,1335135831 +114930,6629,André De Toth,1294254121 +114930,6630,Mark Robson,1298992870 +114930,6631,John Lafia,1335049723 +114930,6634,Nudity (Topless - Notable),1261609692 +114930,6636,Rob Reiner,1299642980 +114930,6639,Terence Young,1328931196 +114930,6641,Criterion,1453095407 +114930,6641,Michael Haneke,1453095414 +114930,6642,Mark L. Lester,1302240977 +114930,6643,Best of Rotten Tomatoes: All Time,1290798992 +114930,6643,Criterion,1263422663 +114930,6643,Yasujirô Ozu,1313789855 +114930,6644,Eric Rohmer,1319412014 +114930,6645,George Lucas,1385947983 +114930,6649,Criterion,1335658031 +114930,6649,Ronald Neame,1299847111 +114930,6650,Criterion,1335510293 +114930,6650,Robert Hamer,1302288060 +114930,6659,Ron Underwood,1325894048 +114930,6660,Criterion,1238857160 +114930,6660,Emeric Pressburger,1302888057 +114930,6660,Michael Powell,1299745251 +114930,6662,Blake Edwards,1297642630 +114930,6663,Blake Edwards,1297642613 +114930,6664,Mark L. Lester,1302240981 +114930,6666,Criterion,1268629318 +114930,6666,Luis Buñuel,1319407555 +114930,6667,William Gazecki,1302774384 +114930,6668,Zhang Yimou,1300399079 +114930,6669,Akira Kurosawa,1268796010 +114930,6669,Best of Rotten Tomatoes: All Time,1290797823 +114930,6669,Criterion,1268796842 +114930,6669,Takashi Shimura,1268796164 +114930,6671,Criterion,1237022863 +114930,6671,Jane Campion,1239210792 +114930,6672,Christian Frei,1335134386 +114930,6673,Carlos Saura,1442823613 +114930,6676,Michael Apted,1302777990 +114930,6679,J.T.S. Moore,1335132918 +114930,6682,Deepa Mehta,1314684148 +114930,6683,Deepa Mehta,1314684150 +114930,6684,Luchino Visconti,1290802156 +114930,6688,Vladimír Michálek,1323688164 +114930,6692,Helen Stickler,1328524390 +114930,6695,Victor Salva,1332465685 +114930,6699,Rhys Ifans,1302641782 +114930,6699,Shane Meadows,1302001959 +114930,6707,Eli Roth,1297624118 +114930,6708,Ridley Scott,1319413759 +114930,6709,Robert Rodriguez,1299961973 +114930,6710,Greg Pritikin,1335272286 +114930,6711,Sofia Coppola,1312349384 +114930,6713,Satoshi Kon,1335277975 +114930,6714,Corey Yuen,1239128047 +114930,6717,Doris Dörrie,1301452945 +114930,6721,Hark Tsui,1300397512 +114930,6721,Jet Li,1300398352 +114930,6722,Hark Tsui,1239133585 +114930,6722,Jet Li,1300397948 +114930,6723,Hark Tsui,1239133585 +114930,6723,Jet Li,1300397904 +114930,6724,Peter Bogdanovich,1299955838 +114930,6727,Peter Bogdanovich,1299955782 +114930,6729,Criterion,1335429357 +114930,6729,James Ivory,1335429350 +114930,6731,George A. Romero,1315405233 +114930,6732,Gene Kelly,1417651500 +114930,6733,Manoel de Oliveira,1411721385 +114930,6735,Criterion,1453094671 +114930,6735,Mark Rydell,1453094677 +114930,6738,Criterion,1298998171 +114930,6738,Vittorio De Sica,1273112081 +114930,6740,Matthew Robbins,1328568085 +114930,6743,Criterion,1335510034 +114930,6743,Zoltan Korda,1238804797 +114930,6748,Criterion,1453095348 +114930,6748,David Cronenberg,1453095357 +114930,6749,William Dieterle,1321656326 +114930,6749,William Keighley,1321656326 +114930,6753,Tim McCanlies,1335342235 +114930,6755,Don Coscarelli,1326615259 +114930,6756,John Sayles,1301542946 +114930,6760,Michael Winterbottom,1318967227 +114930,6761,Tom Peosay,1328520966 +114930,6762,Eytan Fox,1302481441 +114930,6763,Danny DeVito,1306101791 +114930,6764,Peter Berg,1238879097 +114930,6766,Hamlet Sarkissian,1263424078 +114930,6770,Isabel Coixet,1296879971 +114930,6772,Nicolas Philibert,1323267446 +114930,6773,Sylvain Chomet,1272050679 +114930,6774,Criterion,1314684638 +114930,6774,David Cronenberg,1239143270 +114930,6775,Stephanie Black,1302776691 +114930,6776,Ashutosh Gowariker,1314684090 +114930,6777,Stanley Kramer,1299553738 +114930,6779,Robert Mulligan,1300414813 +114930,6780,Criterion,1399776077 +114930,6780,Errol Morris,1238394001 +114930,6781,Frank Beyer,1402215522 +114930,6782,Aki Kaurismäki,1335510952 +114930,6782,Criterion,1335510959 +114930,6783,Criterion,1201666805 +114930,6783,Jean Renoir,1238875881 +114930,6784,Joe Massot,1335134104 +114930,6784,Peter Clifton,1335134104 +114930,6785,Stanley Donen,1319414832 +114930,6786,Hector Babenco,1299041473 +114930,6787,Alan J. Pakula,1316715315 +114930,6787,Best of Rotten Tomatoes: All Time,1290797414 +114930,6789,Gilles Mimouni,1331178053 +114930,6791,Criterion,1399773276 +114930,6791,Gabriel Axel,1326337923 +114930,6792,Nikita Mikhalkov,1410498554 +114930,6793,Brian Levant,1300335968 +114930,6794,Rod Daniel,1299645039 +114930,6796,John Singleton,1299961525 +114930,6800,George P. Cosmatos,1325894001 +114930,6801,Álex de la Iglesia,1262784445 +114930,6807,Terry Gilliam,1302887206 +114930,6807,Terry Jones,1303240009 +114930,6808,Brian G. Hutton,1335328419 +114930,6808,Clint Eastwood,1299644509 +114930,6811,Hart Bochner,1302239902 +114930,6816,Phil Joanon,1335271184 +114930,6818,Elem Klimov,1321467013 +114930,6828,Bertrand Tavernier,1297367671 +114930,6830,David Miller,1412838850 +114930,6831,David Seltzer,1312346498 +114930,6837,Leo McCarey,1297638709 +114930,6840,Arthur Hiller,1326440611 +114930,6842,Robert Altman,1407239830 +114930,6849,Ronald Neame,1299847149 +114930,6850,Richard Pearce,1328741543 +114930,6852,Criterion,1453095429 +114930,6852,Richard Brooks,1276464066 +114930,6854,James B. Harris,1329129219 +114930,6854,Sidney Poitier,1297815669 +114930,6855,Criterion,1335512527 +114930,6855,Jean-Pierre Denis,1335512522 +114930,6856,Michael Curtiz,1299845828 +114930,6857,Quint Lancaster,1321654707 +114930,6857,Yoshiaki Kawajiri,1321654696 +114930,6858,Best of Rotten Tomatoes: All Time,1290798077 +114930,6858,Criterion,1201666724 +114930,6858,Roman Polanski,1301899626 +114930,6859,Criterion,1238857380 +114930,6859,William Dieterle,1297639100 +114930,6860,Michael Karbelnikoff,1335041676 +114930,6862,Carl Franklin,1326334448 +114930,6863,Richard Linklater,1238200547 +114930,6864,David Leland,1296340425 +114930,6867,Joe Lo Truglio,1293348892 +114930,6867,Thomas McCarthy,1302231386 +114930,6868,James Cox,1335281760 +114930,6869,Best of Rotten Tomatoes: All Time,1290797544 +114930,6869,Felipe Lacerda,1303417996 +114930,6869,José Padilha,1303417987 +114930,6870,Clint Eastwood,1299645009 +114930,6873,Coen Brothers,1326613215 +114930,6874,Quentin Tarantino,1297624234 +114930,6879,Gary Fleder,1316715671 +114930,6880,Marcus Nispel,1302000526 +114930,6881,Peter Hedges,1302040268 +114930,6883,Christine Jeffs,1299960849 +114930,6887,Michael Tollin,1335304971 +114930,6888,David Zucker,1299849171 +114930,6890,Gus Van Sant,1238309829 +114930,6893,Peter Collinson,1335343019 +114930,6896,Claude Lanzmann,1333073126 +114930,6896,Criterion,1399773250 +114930,6898,Ken Loach,1293229969 +114930,6902,Bob Gale,1335283231 +114930,6902,Michael J. Fox,1299641727 +114930,6911,Alfred E. Green,1417650967 +114930,6918,Criterion,1453095474 +114930,6918,Satyajit Ray,1264067734 +114930,6920,Criterion,1239079978 +114930,6920,Jean-Pierre Melville,1239079965 +114930,6921,Andrzej Wajda,1263217995 +114930,6924,Roy William Neill,1402208730 +114930,6925,Roy William Neill,1402208749 +114930,6926,Richard Quine,1408919125 +114930,6930,Liz Garbus,1406107013 +114930,6932,Billy Ray,1335328104 +114930,6934,Wachowski Brothers,1325895333 +114930,6935,Donnacha O'Briain,1333078040 +114930,6935,Kim Bartley,1333078040 +114930,6936,Jon Favreau,1295592734 +114930,6938,Philip Boston,1334907599 +114930,6939,Rolf Schübel,1335053409 +114930,6942,Richard Curtis,1302641445 +114930,6944,Charles Shyer,1335344240 +114930,6945,Nathaniel Kahn,1335135677 +114930,6947,Peter Weir,1299963612 +114930,6948,Lauren Lazin,1333065523 +114930,6951,Bo Welch,1323268418 +114930,6953,Alejandro González Iñárritu,1299963392 +114930,6954,Denys Arcand,1327648797 +114930,6957,Terry Zwigoff,1238562489 +114930,6961,Louis Malle,1318244362 +114930,6962,Scott Hamilton Kennedy,1419968445 +114930,6963,Lucy Walker,1295427503 +114930,6964,Mike Newell,1335034026 +114930,6965,Aaron Lubarsky,1328744709 +114930,6965,Alexandra Pelosi,1328744709 +114930,6966,Sam Raimi,1301035627 +114930,6967,Alberto Cavalcanti,1302797354 +114930,6967,Basil Dearden,1320692905 +114930,6967,Charles Crichton,1320692891 +114930,6967,Robert Hamer,1320692919 +114930,6969,Jean Reno,1300400113 +114930,6969,Luc Besson,1300399936 +114930,6970,Walter Lang,1298119791 +114930,6971,Criterion,1300338607 +114930,6971,Lars von Trier,1300338784 +114930,6974,Andrew Bergman,1329042842 +114930,6975,Michael Haneke,1238929378 +114930,6976,Freddie Francis,1402211759 +114930,6978,Criterion,1335654067 +114930,6978,Richard Linklater,1272049374 +114930,6979,John Badham,1299642798 +114930,6980,Henry Koster,1297641558 +114930,6981,Carl Theodor Dreyer,1238924398 +114930,6981,Criterion,1238924413 +114930,6982,Criterion,1201666698 +114930,6982,René Clément,1272989390 +114930,6983,Robert Stevenson,1302888478 +114930,6984,Jack Conway,1299626792 +114930,6984,Robert Z. Leonard,1298993523 +114930,6985,Carl Theodor Dreyer,1238857143 +114930,6985,Criterion,1238857130 +114930,6986,Charles Brabin,1422438935 +114930,6986,Christy Cabanne,1422438935 +114930,6986,Fred Niblo,1310419726 +114930,6986,J.J. Cohn,1335303724 +114930,6986,Rex Ingram,1422438935 +114930,6987,Best of Rotten Tomatoes: All Time,1290797673 +114930,6987,Robert Wiene,1323659602 +114930,6988,D.W. Griffith,1263342981 +114930,6990,Michael Crichton,1335275084 +114930,6993,Woody Allen,1302670442 +114930,6997,Danny DeVito,1306101798 +114930,6999,Frank Oz,1302035128 +114930,7001,Philip Kaufman,1300338068 +114930,7002,Bernt Amadeus Capra,1335036579 +114930,7003,Steven Soderbergh,1238950680 +114930,7004,Ivan Reitman,1312352668 +114930,7005,David S. Ward,1301666651 +114930,7008,Bernardo Bertolucci,1385944398 +114930,7010,Jean-Jacques Annaud,1302034197 +114930,7011,Pedro Almodóvar,1238259610 +114930,7012,James Orr,1327116898 +114930,7013,Charles Laughton,1299852525 +114930,7013,Criterion,1335424320 +114930,7014,Jean-Claude Van Damme,1300401495 +114930,7014,Robert Harmon,1300402003 +114930,7016,Menahem Golan,1335275318 +114930,7017,Kevin Hooks,1333064796 +114930,7018,Alan J. Pakula,1239147131 +114930,7020,Jocelyn Moorhouse,1335275097 +114930,7021,Nadia Tass,1335053030 +114930,7022,Kinji Fukasaku,1273502934 +114930,7022,Takeshi Kitano,1273502926 +114930,7023,Ang Lee,1238800789 +114930,7024,Criterion,1316182251 +114930,7024,Pier Paolo Pasolini,1316182251 +114930,7025,Keith Gordon,1335278007 +114930,7026,Carl Reiner,1326616424 +114930,7027,Kevin Costner,1301036394 +114930,7027,Lawrence Kasdan,1299962640 +114930,7028,Bill Murray,1333070125 +114930,7028,Howard Franklin,1333070125 +114930,7030,Richard Donner,1300399322 +114930,7034,Lukas Moodysson,1263351051 +114930,7036,Michael J. Fox,1299641765 +114930,7036,Rod Daniel,1299645041 +114930,7037,Pedro Almodóvar,1238259620 +114930,7040,William Friedkin,1318242012 +114930,7041,George Gallo,1323687886 +114930,7042,Jean-Jacques Beineix,1292924336 +114930,7043,Criterion,1265384454 +114930,7043,Jean-Luc Godard,1301002037 +114930,7044,David Lynch,1301903546 +114930,7045,Nicolas Roeg,1239146978 +114930,7048,Steve Oedekerk,1329971175 +114930,7050,Mark Sandrich,1327647305 +114930,7053,William A. Seiter,1357341188 +114930,7054,Mervyn LeRoy,1298993797 +114930,7055,George Stevens,1297641290 +114930,7056,William A. Wellman,1239128956 +114930,7057,Max Reinhardt,1302797392 +114930,7057,William Dieterle,1302797381 +114930,7058,Michael Curtiz,1299845867 +114930,7059,Clarence Brown,1299627064 +114930,7060,Norman Jewison,1402189760 +114930,7061,Edmund Goulding,1296356829 +114930,7062,John Frankenheimer,1238467483 +114930,7063,Werner Herzog,1239080770 +114930,7064,Criterion,1265341184 +114930,7064,Jean Cocteau,1265341184 +114930,7064,René Clément,1326210183 +114930,7065,Best of Rotten Tomatoes: All Time,1290798460 +114930,7065,D.W. Griffith,1263342713 +114930,7066,Zhuangzhuang Tian,1297394442 +114930,7067,Criterion,1238857104 +114930,7067,Federico Fellini,1299448491 +114930,7068,Alain Resnais,1318243786 +114930,7068,Criterion,1318243706 +114930,7069,Criterion,1421652600 +114930,7069,Roman Polanski,1301899593 +114930,7070,Arthur Rosson,1319416450 +114930,7070,Criterion,1399778180 +114930,7070,Howard Hawks,1319416408 +114930,7071,Criterion,1299449168 +114930,7071,John Cassavetes,1299449105 +114930,7072,Criterion,1268630471 +114930,7072,John Ford,1293987788 +114930,7073,Blake Edwards,1297642597 +114930,7074,Buster Keaton,1269575568 +114930,7074,Donald Crisp,1301435327 +114930,7075,Danny Kaye,1297641700 +114930,7075,Melvin Frank,1316502741 +114930,7075,Norman Panama,1316502880 +114930,7076,Peter Yates,1318967664 +114930,7077,D.W. Griffith,1263342975 +114930,7078,William Wyler,1319417083 +114930,7079,William Dieterle,1297639117 +114930,7080,Busby Berkeley,1299914894 +114930,7080,Lloyd Bacon,1318244079 +114930,7081,Wesley Ruggles,1403603537 +114930,7082,Delbert Mann,1297367849 +114930,7083,Karel Reisz,1421156031 +114930,7084,Herbert Ross,1297642033 +114930,7085,Norman Jewison,1302777489 +114930,7086,Anthony Asquith,1298992993 +114930,7086,Criterion,1201666772 +114930,7086,Leslie Howard,1298992993 +114930,7087,David Lean,1297817245 +114930,7088,Criterion,1201666655 +114930,7088,Marcel Camus,1335276801 +114930,7089,Criterion,1201631309 +114930,7089,Federico Fellini,1299448493 +114930,7090,Jet Li,1300398364 +114930,7090,Zhang Yimou,1300399097 +114930,7091,Marx Brothers,1299627410 +114930,7091,Norman Z. McLeod,1299627553 +114930,7092,Clarence Brown,1299627053 +114930,7093,Billy Wilder,1402201545 +114930,7096,Thomas Riedelsheimer,1322757271 +114930,7098,John Boulting,1332887833 +114930,7098,Roy Boulting,1300335869 +114930,7099,Hayao Miyazaki,1238925930 +114930,7102,Tom Mankiewicz,1333070466 +114930,7103,Tom Ropelewski,1335038612 +114930,7106,Jean-Jacques Annaud,1302034181 +114930,7107,Colin Higgins,1327116699 +114930,7111,David Lean,1297817205 +114930,7112,Joseph Losey,1405333423 +114930,7114,William Wyler,1319417051 +114930,7115,Dario Argento,1301899255 +114930,7116,Criterion,1238857013 +114930,7116,Henri-Georges Clouzot,1271396082 +114930,7117,Mark Jones,1329164888 +114930,7118,Hiroyuki Yamaga,1335157821 +114930,7121,George Cukor,1299362447 +114930,7122,Philippe de Broca,1268711097 +114930,7123,Criterion,1314684640 +114930,7123,David Cronenberg,1238149159 +114930,7124,Ron Mann,1321654415 +114930,7125,Tom Gilroy,1335036796 +114930,7126,Criterion,1299449155 +114930,7126,John Cassavetes,1299449098 +114930,7127,Geoff Burrowes,1326614485 +114930,7128,Criterion,1399773115 +114930,7128,William Cameron Menzies,1335082117 +114930,7129,Jon Amiel,1300229593 +114930,7130,John Schlesinger,1302888195 +114930,7131,Delmer Daves,1405332569 +114930,7132,Marx Brothers,1299627416 +114930,7132,Sam Wood,1299627484 +114930,7134,Criterion,1238857413 +114930,7134,Lars von Trier,1300338714 +114930,7135,Criterion,1268710653 +114930,7135,François Truffaut,1268710940 +114930,7136,Criterion,1268710618 +114930,7136,François Truffaut,1268710930 +114930,7137,Wayne Kramer,1323268014 +114930,7139,Jim Sheridan,1299960797 +114930,7141,Jonathan Karsh,1335047834 +114930,7143,Edward Zwick,1296379038 +114930,7143,Hiroyuki Sanada,1296351184 +114930,7143,Ken Watanabe,1293824599 +114930,7145,Malcolm Clarke,1400444786 +114930,7145,Stuart Sender,1400444786 +114930,7147,Tim Burton,1238806573 +114930,7149,Nancy Meyers,1238960812 +114930,7150,Farrelly Brothers,1299915118 +114930,7151,Cillian Murphy,1312352230 +114930,7151,Peter Webber,1302641433 +114930,7153,Peter Jackson,1239050881 +114930,7155,Nudity (Topless - Notable),1261610185 +114930,7156,Errol Morris,1238393994 +114930,7158,Vadim Perelman,1333680961 +114930,7160,Patty Jenkins,1302000022 +114930,7161,Shawn Levy,1239112422 +114930,7162,Anthony Minghella,1299364523 +114930,7162,Cillian Murphy,1312352228 +114930,7164,P.J. Hogan,1326616134 +114930,7165,Robert Altman,1407239818 +114930,7167,Sue Brooks,1411888186 +114930,7171,Joan Churchill,1335157229 +114930,7171,Nick Broomfield,1299259290 +114930,7172,Nuri Bilge Ceylan,1407712370 +114930,7173,John Hamburg,1301544255 +114930,7176,Jafar Panahi,1271453750 +114930,7177,Saddiq Barmak,1335271301 +114930,7180,Robert Wise,1298997904 +114930,7181,Stanley Kramer,1299553753 +114930,7184,Sydney Pollack,1409477312 +114930,7190,Delbert Mann,1297367843 +114930,7192,Sheldon Lettich,1300401658 +114930,7194,Otto Preminger,1299848371 +114930,7195,Bretaigne Windust,1335034623 +114930,7195,Raoul Walsh,1335034623 +114930,7196,Fred Zinnemann,1402176650 +114930,7199,Bob Odenkirk,1301548593 +114930,7199,David Cross,1301548601 +114930,7205,John Milius,1335132294 +114930,7206,Criterion,1265339841 +114930,7206,Jacques Tati,1265339873 +114930,7209,Criterion,1201666760 +114930,7209,Jacques Tati,1265340680 +114930,7210,Criterion,1421653776 +114930,7210,John Ford,1299363639 +114930,7211,Joseph L. Mankiewicz,1298997625 +114930,7212,Howard Hawks,1319416617 +114930,7215,Howard Hawks,1319416673 +114930,7216,Raoul Walsh,1300223434 +114930,7217,Delmer Daves,1299260086 +114930,7218,William A. Wellman,1239128956 +114930,7219,Raoul Walsh,1300223324 +114930,7221,Frank Capra,1297816224 +114930,7223,Rudolph Maté,1326337876 +114930,7227,Ida Lupino,1335132597 +114930,7228,Ralph Bakshi,1328931348 +114930,7232,Criterion,1335507384 +114930,7232,James Ivory,1335507379 +114930,7234,Criterion,1201666810 +114930,7234,Federico Fellini,1299448495 +114930,7235,Tadanobu Asano,1292225072 +114930,7235,Takashi Miike,1257354041 +114930,7238,Andrzej Wajda,1263218033 +114930,7238,Criterion,1201666635 +114930,7241,Andrzej Wajda,1263218014 +114930,7241,Criterion,1237023755 +114930,7243,D.W. Griffith,1263342979 +114930,7247,Ken Hughes,1333681562 +114930,7250,Arthur Hiller,1401138188 +114930,7253,Clarence G. Badger,1402208478 +114930,7253,Josef von Sternberg,1402208432 +114930,7254,Eric Bress,1324753362 +114930,7254,J. Mackye Gruber,1324753362 +114930,7256,Kevin Macdonald,1257890609 +114930,7257,George Armitage,1335274494 +114930,7257,Vinnie Jones,1298123450 +114930,7260,C. Jay Cox,1329042893 +114930,7263,Gavin O'Connor,1318240579 +114930,7264,Lucas Belvaux,1421307809 +114930,7265,Bernardo Bertolucci,1238929573 +114930,7269,Joseph B. Vasquez,1334904771 +114930,7285,Catherine Hardwicke,1239149534 +114930,7286,Hal Hartley,1301445714 +114930,7288,Erich von Stroheim,1292278492 +114930,7290,Preston Sturges,1402578451 +114930,7293,Peter Segal,1302040386 +114930,7295,Lucas Belvaux,1421307793 +114930,7297,Bent Hamer,1302038639 +114930,7299,François Dupeyron,1325894981 +114930,7300,Richard C. Sarafian,1335272411 +114930,7301,Criterion,1263421804 +114930,7301,Robert Bresson,1304945069 +114930,7302,Raoul Walsh,1300223428 +114930,7303,George Stevens,1297641324 +114930,7304,Bruno Bozzetto,1335082068 +114930,7306,Luis Estrada,1335049872 +114930,7309,Albert Parker,1334908570 +114930,7311,Sam Wood,1299364135 +114930,7318,Mel Gibson,1327622166 +114930,7319,Jay Chandrasekhar,1293366679 +114930,7321,Philip Kaufman,1300338037 +114930,7323,Wolfgang Becker,1296423724 +114930,7324,Joe Johnston,1267819488 +114930,7325,Patton Oswalt,1296424132 +114930,7325,Todd Phillips,1296424372 +114930,7327,Criterion,1399777987 +114930,7327,Ingmar Bergman,1303239881 +114930,7328,Ingmar Bergman,1303239806 +114930,7333,Criterion,1271396097 +114930,7333,Henri-Georges Clouzot,1292880719 +114930,7334,Martin Ritt,1297816814 +114930,7335,Criterion,1238857129 +114930,7335,Samuel Fuller,1299259796 +114930,7338,Criterion,1201666801 +114930,7338,Laurence Olivier,1238467656 +114930,7339,Criterion,1335653007 +114930,7339,James Ivory,1335653002 +114930,7340,Lisa Gottlieb,1431833311 +114930,7341,Arthur Penn,1426472809 +114930,7346,Luke Greenfield,1306102603 +114930,7347,David Koepp,1335343688 +114930,7348,David Mamet,1239043008 +114930,7349,Nir Bergman,1335078518 +114930,7351,John W. Walter,1323688218 +114930,7353,Paul Flaherty,1302287342 +114930,7360,Zack Snyder,1238931065 +114930,7361,David Cross,1301552215 +114930,7361,Michel Gondry,1295743498 +114930,7362,D.J. Caruso,1300223225 +114930,7364,Cillian Murphy,1312352232 +114930,7364,John Crowley,1258373164 +114930,7365,Dagur Kári,1273835013 +114930,7366,Kevin Smith,1296350955 +114930,7367,Coen Brothers,1239054358 +114930,7371,Lars von Trier,1300338800 +114930,7373,Guillermo del Toro,1300339295 +114930,7376,Kevin Bray,1302594144 +114930,7377,Matthew Ryan Hoge,1301448015 +114930,7382,Gabriele Salvatores,1301899334 +114930,7383,Damian Nieman,1335080303 +114930,7384,Julie Bertucelli,1335036310 +114930,7386,Cecil B. DeMille,1299359727 +114930,7387,George A. Romero,1315405090 +114930,7388,Franco Zeffirelli,1413161868 +114930,7394,Ken Annakin,1417515497 +114930,7395,Walter Lang,1406197194 +114930,7396,Criterion,1238856501 +114930,7396,Ingmar Bergman,1303239874 +114930,7410,Sam Peckinpah,1326441714 +114930,7414,Martin Brest,1433781716 +114930,7415,Robert Benton,1299362569 +114930,7419,Martin Scorsese,1299844291 +114930,7422,Lina Wertmüller,1430110883 +114930,7423,Paul Jay,1378795264 +114930,7437,Michael Lembeck,1328329579 +114930,7438,Quentin Tarantino,1297624239 +114930,7439,Jonathan Hensleigh,1304915091 +114930,7440,Elliot Berlin,1335082779 +114930,7440,Joe Fab,1335082779 +114930,7443,Michael Almereyda,1423390665 +114930,7444,Gary Winick,1258522701 +114930,7445,Tony Scott,1301034976 +114930,7451,Mark Waters,1335407781 +114930,7456,Alejandro Agresti,1335053757 +114930,7458,Wolfgang Petersen,1300999161 +114930,7459,Hector Babenco,1328931498 +114930,7460,Jim Jarmusch,1300403485 +114930,7460,Steve Coogan,1312349752 +114930,7461,André Téchiné,1422436677 +114930,7474,William Friedkin,1318241959 +114930,7477,Jim Gillespie,1334905848 +114930,7478,Jonathan Demme,1238859245 +114930,7479,Hal Mohr,1402579564 +114930,7479,Herman Shumlin,1334909602 +114930,7480,Roger Spottiswoode,1300396745 +114930,7481,Wolfgang Petersen,1300999207 +114930,7482,Bruce Lee,1239134397 +114930,7482,Robert Clouse,1239135327 +114930,7484,Albert Maysles,1335279652 +114930,7484,Charlotte Zwerin,1335279652 +114930,7484,Criterion,1238857441 +114930,7484,David Maysles,1335279652 +114930,7485,Criterion,1238857064 +114930,7485,Yasujirô Ozu,1313789861 +114930,7486,Wong Kar-wai,1238860823 +114930,7488,Mark Kitchell,1334964927 +114930,7489,Michael Verhoeven,1292273520 +114930,7490,Diane Kurys,1385459053 +114930,7491,Cornel Wilde,1322757485 +114930,7491,Criterion,1322757485 +114930,7493,Nunnally Johnson,1293987708 +114930,7502,David Frankel,1296339203 +114930,7502,David Leland,1296339203 +114930,7502,David Nutter,1296339203 +114930,7502,Mikael Salomon,1296339203 +114930,7502,Phil Alden Robinson,1296339203 +114930,7502,Richard Loncraine,1296339203 +114930,7502,Tom Hanks,1296339203 +114930,7502,Tony To,1296339203 +114930,7505,Lars von Trier,1300338774 +114930,7505,Morten Arnfred,1335230387 +114930,7560,Sidney Lumet,1319416226 +114930,7561,Bernard Rose,1335050186 +114930,7564,Criterion,1238857116 +114930,7564,Masaki Kobayashi,1238262601 +114930,7564,Tatsuya Nakadai,1238857866 +114930,7566,Michael Apted,1302778172 +114930,7569,Lewis Gilbert,1299847315 +114930,7572,Mike Nichols,1335282849 +114930,7574,Hirokazu Koreeda,1295429590 +114930,7574,Tadanobu Asano,1333062623 +114930,7577,Criterion,1238856482 +114930,7577,Ingmar Bergman,1303239851 +114930,7578,Mitchell Leisen,1306103128 +114930,7579,Robert Z. Leonard,1298993524 +114930,7580,Nunnally Johnson,1302231067 +114930,7581,King Vidor,1402203612 +114930,7582,Vincent Sherman,1401271030 +114930,7583,John Huston,1301033080 +114930,7584,George Stevens,1297641296 +114930,7585,Criterion,1201631948 +114930,7585,David Lean,1297817212 +114930,7586,Paul Verhoeven,1302283778 +114930,7587,Criterion,1238857444 +114930,7587,Jean-Pierre Melville,1239079948 +114930,7613,Nudity (Topless - Notable),1261612268 +114930,7614,Fred Zinnemann,1402176660 +114930,7615,Donna Deitch,1335049562 +114930,7616,Nudity (Topless - Notable),1261611306 +114930,7618,Richard Attenborough,1300994430 +114930,7619,Arthur Penn,1326440865 +114930,7620,Nick Broomfield,1299259285 +114930,7622,Daniela Thomas,1385945386 +114930,7622,Walter Salles,1385945386 +114930,7624,Robert Mandel,1301544216 +114930,7637,Nudity (Topless - Notable),1265383941 +114930,7637,Olivier Assayas,1418019551 +114930,7638,Arthur Lubin,1402203049 +114930,7644,Kim Longinotto,1422435673 +114930,7644,Ziba Mir-Hosseini,1422435672 +114930,7646,Craig R. Baxley,1260653792 +114930,7647,Peter Bogdanovich,1299955808 +114930,7649,Michael Vejar,1335324997 +114930,7657,Ryûhei Kitamura,1327116930 +114930,7669,Simon Langton,1327112485 +114930,7675,Jules Dassin,1335040309 +114930,7675,Norman Taurog,1299847550 +114930,7698,James Bridges,1299642432 +114930,7700,Best of Rotten Tomatoes: All Time,1290798868 +114930,7700,Criterion,1201666824 +114930,7700,Golden Palm,1244223815 +114930,7700,Henri-Georges Clouzot,1292880718 +114930,7701,Amy Heckerling,1301034110 +114930,7702,Leo McCarey,1297638717 +114930,7705,George Cukor,1299362413 +114930,7706,Marx Brothers,1299627394 +114930,7706,Victor Heerman,1301552577 +114930,7707,Nudity (Topless - Notable),1261609779 +114930,7708,Stanley Donen,1417651556 +114930,7713,Jacques Tourneur,1299846476 +114930,7720,Richard Lester,1318243900 +114930,7725,Steven Seagal,1335135927 +114930,7728,Tay Garnett,1298119415 +114930,7743,Joe Dante,1239151791 +114930,7745,Anh Hung Tran,1263354304 +114930,7748,Criterion,1265384176 +114930,7748,Jean-Luc Godard,1301002040 +114930,7749,Criterion,1349032044 +114930,7749,Jean-Luc Godard,1301002173 +114930,7753,Mick Jackson,1301035929 +114930,7756,Criterion,1201666617 +114930,7756,Dmitri Vasilyev,1292284837 +114930,7756,Sergei M. Eisenstein,1292284837 +114930,7757,Don Chaffey,1328395693 +114930,7758,Alain Resnais,1413293960 +114930,7759,Andrei Tarkovsky,1317236526 +114930,7761,Criterion,1421654251 +114930,7761,François Truffaut,1268710877 +114930,7762,Frances Alcock,1316183931 +114930,7762,John Irvin,1316183869 +114930,7763,Tom Tykwer,1302236028 +114930,7766,Akira Kurosawa,1268796051 +114930,7766,Criterion,1268797202 +114930,7766,Takashi Shimura,1268796420 +114930,7766,Toshirô Mifune,1268796420 +114930,7767,Marco Tullio Giordana,1309176708 +114930,7770,Fraser Clarke Heston,1402212724 +114930,7771,Mihalis Kakogiannis,1328740693 +114930,7773,Guy Ferland,1335279356 +114930,7785,Bahman Ghobadi,1271453543 +114930,7786,Roko Belic,1333078288 +114930,7787,Jesse Hibbs,1331075514 +114930,7792,Alan J. Pakula,1316715406 +114930,7802,Walter Hill,1319408899 +114930,7810,Michael Vejar,1335287635 +114930,7814,Sergey Bondarchuk,1409298718 +114930,7815,David Byrne,1302038615 +114930,7820,Criterion,1201666816 +114930,7820,Ingmar Bergman,1303239871 +114930,7821,J. Lee Thompson,1401260386 +114930,7826,Danny Kaye,1316502595 +114930,7826,Norman Z. McLeod,1299627551 +114930,7827,Vincenzo Natali,1335304207 +114930,7831,W.S. Van Dyke,1298994087 +114930,7832,Richard Thorpe,1318967060 +114930,7833,W.S. Van Dyke,1298994086 +114930,7834,W.S. Van Dyke,1298994088 +114930,7835,Edward Buzzell,1299627811 +114930,7836,Michael Wadleigh,1335322988 +114930,7839,Jack Conway,1402199713 +114930,7840,George Stevens,1297641323 +114930,7841,Greg Yaitanes,1335304347 +114930,7842,John Harrison,1333068482 +114930,7843,Christian Zubert,1329446265 +114930,7844,Corey Yuen,1239128047 +114930,7844,Jet Li,1300397941 +114930,7845,S.S. Wilson,1328392437 +114930,7850,Lewis Milestone,1402202898 +114930,7883,Jacques Tourneur,1299846466 +114930,7884,Bruce McDonald,1335052803 +114930,7888,David Swift,1335231700 +114930,7889,Sam Peckinpah,1326441806 +114930,7891,Sidney Salkow,1416192930 +114930,7891,Ubaldo Ragona,1416192930 +114930,7894,Sergio Leone,1239047736 +114930,7895,Sam Peckinpah,1326441782 +114930,7896,Sam Peckinpah,1326441775 +114930,7897,Sam Peckinpah,1326441758 +114930,7899,Yu Wang,1335082318 +114930,7914,Walter Ruttmann,1334969040 +114930,7915,Hiroyuki Nakano,1335135238 +114930,7918,Charles Bronson,1319415415 +114930,7918,Sean Penn,1238972352 +114930,7919,Akira Kurosawa,1268795997 +114930,7919,Criterion,1268796818 +114930,7919,Takashi Shimura,1268796111 +114930,7919,Toshirô Mifune,1268796111 +114930,7920,John Waters,1301898665 +114930,7923,John Flynn,1301451103 +114930,7924,Akira Kurosawa,1268796045 +114930,7924,Criterion,1268797197 +114930,7924,Takashi Shimura,1268796411 +114930,7924,Toshirô Mifune,1268796411 +114930,7925,Akira Kurosawa,1268796001 +114930,7925,Criterion,1268796825 +114930,7925,Toshirô Mifune,1268796121 +114930,7926,Akira Kurosawa,1268796004 +114930,7926,Criterion,1268796828 +114930,7926,Tatsuya Nakadai,1268796137 +114930,7926,Toshirô Mifune,1268796137 +114930,7930,Wes Craven,1303239436 +114930,7932,Marc Singer,1335278117 +114930,7933,Archie Mayo,1238804780 +114930,7933,Marx Brothers,1299627419 +114930,7934,Woody Allen,1302670389 +114930,7935,Ingmar Bergman,1303239768 +114930,7936,Ingmar Bergman,1303239823 +114930,7937,Criterion,1278797504 +114930,7937,Ingmar Bergman,1303239860 +114930,7938,Criterion,1278797541 +114930,7938,Ingmar Bergman,1303239857 +114930,7939,Criterion,1278797523 +114930,7939,Ingmar Bergman,1303239866 +114930,7940,Criterion,1290720581 +114930,7940,Ingmar Bergman,1303239849 +114930,7941,Criterion,1278797481 +114930,7941,Ingmar Bergman,1303239868 +114930,7942,Criterion,1335657346 +114930,7942,Ingmar Bergman,1303239813 +114930,7943,Best of Rotten Tomatoes: All Time,1290798628 +114930,7943,Criterion,1302676188 +114930,7943,Robert Siodmak,1297367042 +114930,7944,John Huston,1301033290 +114930,7945,John Huston,1402199099 +114930,7946,John Huston,1440989465 +114930,7947,Criterion,1301033118 +114930,7947,John Huston,1301033118 +114930,7948,Criterion,1301033128 +114930,7948,John Huston,1301033128 +114930,7949,Sydney Pollack,1409477329 +114930,7953,Lamberto Bava,1402578794 +114930,7953,Mario Bava,1402210680 +114930,7979,Criterion,1239146780 +114930,7979,D.A. Pennebaker,1300228613 +114930,7980,Richard Attenborough,1300994488 +114930,7981,Andy Lau,1263354352 +114930,7981,Siu Fai Mak,1335333910 +114930,7981,Wai Keung Lau,1335333910 +114930,7982,Ji-woon Kim,1272652752 +114930,7983,Woody Allen,1302670374 +114930,7992,Monte Hellman,1300993441 +114930,8010,John G. Avildsen,1300401912 +114930,8011,Bill Siegel,1292275519 +114930,8011,Sam Green,1292275519 +114930,8012,Takeshi Kitano,1258528435 +114930,8014,Kim Ki-Duk,1335331063 +114930,8015,Abe Levitow,1303417439 +114930,8015,Chuck Jones,1303417464 +114930,8016,Sam Peckinpah,1326441811 +114930,8017,Richard Fleischer,1319413243 +114930,8025,Pavel Chukhray,1442825808 +114930,8033,William Wyler,1319417105 +114930,8037,SABU,1421739162 +114930,8038,Cecil B. DeMille,1402202107 +114930,8039,Burt Kennedy,1295988100 +114930,8040,Dennis Dugan,1300230358 +114930,8042,Martin Scorsese,1299844281 +114930,8043,Marshall Herskovitz,1335038273 +114930,8044,Mervyn LeRoy,1298993798 +114930,8056,Jack Smight,1408921664 +114930,8057,Richard Brooks,1299848628 +114930,8068,Criterion,1421653643 +114930,8068,Serge Bourguignon,1418112291 +114930,8094,John Sturges,1301158047 +114930,8117,Lasse Spang Olsen,1335270995 +114930,8119,Walter Hill,1407136792 +114930,8120,George Gallo,1442805129 +114930,8121,Jean-François Pouliot,1335135685 +114930,8123,Stephen Frears,1319412500 +114930,8125,F.W. Murnau,1238875526 +114930,8126,Criterion,1201631771 +114930,8126,Samuel Fuller,1299259781 +114930,8128,Criterion,1237021474 +114930,8128,Louis Malle,1239138066 +114930,8131,John Putch,1325892781 +114930,8132,Rowdy Herrington,1326614523 +114930,8133,Per Fly,1297398930 +114930,8133,Ulrich Thomsen,1297398816 +114930,8140,Charles Frend,1413158346 +114930,8143,Criterion,1292278628 +114930,8143,Max Ophüls,1292278525 +114930,8147,Ralph Nelson,1301162948 +114930,8148,Charles Swenson,1334198902 +114930,8148,John Korty,1334198901 +114930,8153,Vincente Minnelli,1333677227 +114930,8154,Criterion,1421653789 +114930,8154,Federico Fellini,1299448564 +114930,8157,Hiroyuki Okiura,1335282871 +114930,8158,Lili Fini Zanuck,1335278651 +114930,8167,Michael Curtiz,1299845884 +114930,8183,Lewis Gilbert,1299847297 +114930,8187,Roy Del Ruth,1405333970 +114930,8188,Criterion,1201630800 +114930,8188,Kenji Mizoguchi,1258527575 +114930,8189,Criterion,1318244212 +114930,8189,Louis Malle,1239138093 +114930,8190,Arthur Hiller,1326440601 +114930,8191,Charles Jarrott,1335232113 +114930,8194,Elia Kazan,1427818997 +114930,8195,Criterion,1201666639 +114930,8195,Michelangelo Antonioni,1302002584 +114930,8197,Alain Resnais,1318243789 +114930,8197,Criterion,1318243698 +114930,8198,Fritz Lang,1361175540 +114930,8199,Criterion,1335424583 +114930,8199,Kenji Mizoguchi,1258527014 +114930,8202,Criterion,1265509891 +114930,8202,Jean Renoir,1238875891 +114930,8203,Alain Resnais,1413294008 +114930,8207,Fred Zinnemann,1298652507 +114930,8208,Edmund Goulding,1296356827 +114930,8221,John Roberts,1335082139 +114930,8222,Robert Mulligan,1427811273 +114930,8227,John Ford,1402204406 +114930,8228,Roy Del Ruth,1297831156 +114930,8232,W.S. Van Dyke,1298994053 +114930,8235,Criterion,1399773239 +114930,8235,Fred C. Newmeyer,1335230734 +114930,8235,Harold Lloyd,1238262120 +114930,8235,Sam Taylor,1308941576 +114930,8236,Fritz Lang,1402205891 +114930,8237,Carol Reed,1402578621 +114930,8239,Criterion,1330481488 +114930,8239,Luis Buñuel,1319407546 +114930,8253,Hayao Miyazaki,1238925912 +114930,8254,Emir Kusturica,1335282284 +114930,8256,Rouben Mamoulian,1239145174 +114930,8257,William A. Wellman,1335039429 +114930,8260,Tony Gatlif,1255420708 +114930,8261,Criterion,1201666064 +114930,8261,Robert Altman,1300999916 +114930,8262,Marc Connelly,1402218264 +114930,8262,William Keighley,1402218264 +114930,8264,Albert Maysles,1335135467 +114930,8264,Criterion,1238857071 +114930,8264,David Maysles,1335135467 +114930,8264,Ellen Hovde,1335135467 +114930,8264,Muffie Meyer,1335135467 +114930,8270,Patrice Leconte,1239080311 +114930,8272,Ken Hughes,1413162069 +114930,8275,Buster Keaton,1239124276 +114930,8275,James W. Horne,1301435276 +114930,8291,George Pollock,1405329403 +114930,8292,Akira Kurosawa,1268796008 +114930,8292,Criterion,1268796838 +114930,8292,Takashi Shimura,1268796158 +114930,8292,Toshirô Mifune,1268796158 +114930,8295,Criterion,1335424885 +114930,8295,Ernest B. Schoedsack,1335424895 +114930,8295,Irving Pichel,1335424895 +114930,8302,Lewis Milestone,1298653698 +114930,8327,Takeshi Kitano,1258528190 +114930,8329,Jean Negulesco,1402196486 +114930,8330,Carol Reed,1299361697 +114930,8331,William Keighley,1321656313 +114930,8332,Criterion,1349031910 +114930,8332,John Schlesinger,1302800546 +114930,8334,Mark Rydell,1297367529 +114930,8335,Criterion,1335511604 +114930,8335,Leo McCarey,1297638695 +114930,8336,Billy Wilder,1302031065 +114930,8337,Edward Dmytryk,1318967538 +114930,8338,Criterion,1205121548 +114930,8338,Emeric Pressburger,1302888059 +114930,8338,Michael Powell,1299745158 +114930,8339,Lewis Gilbert,1401062068 +114930,8340,Clint Eastwood,1299644208 +114930,8340,Don Siegel,1297814982 +114930,8341,Criterion,1239139695 +114930,8341,David Lean,1297817557 +114930,8359,Danny Kaye,1318493753 +114930,8359,Herbert Wise,1318493747 +114930,8360,Andrew Adamson,1321655677 +114930,8360,Kelly Asbury,1298478431 +114930,8361,Roland Emmerich,1238376531 +114930,8364,Mario Van Peebles,1312342918 +114930,8365,Roger Michell,1350077340 +114930,8366,Brian Dannelly,1302596990 +114930,8368,Alfonso Cuarón,1318968085 +114930,8370,Tadanobu Asano,1258528461 +114930,8370,Takeshi Kitano,1258528461 +114930,8371,David Twohy,1376453053 +114930,8375,Harry Thomason,1328327574 +114930,8375,Nickolas Perry,1328327574 +114930,8376,Jared Hess,1317075599 +114930,8378,Randa Haines,1321657298 +114930,8379,Peter Yates,1318967641 +114930,8381,Busby Berkeley,1299914883 +114930,8385,Delbert Mann,1297367845 +114930,8395,Herbert Ross,1297641972 +114930,8401,Alfred L. Werker,1335230369 +114930,8404,Sidney Lanfield,1326336149 +114930,8405,Ingmar Bergman,1303239857 +114930,8420,Curtis Bernhardt,1313790821 +114930,8422,Sam Wood,1402196082 +114930,8423,Harold Lloyd,1238262108 +114930,8423,J.A. Howe,1333831854 +114930,8423,Ted Wilde,1333831854 +114930,8446,Allan Dwan,1335132454 +114930,8448,Francis Veber,1323686738 +114930,8448,Gérard Depardieu,1323684444 +114930,8450,Mervyn LeRoy,1317075277 +114930,8451,Richard Brooks,1299848731 +114930,8451,Sidney Poitier,1297815670 +114930,8454,Bakhtyar Khudojnazarov,1413188394 +114930,8455,Mark Jonathan Harris,1295124011 +114930,8456,Criterion,1399775434 +114930,8456,Elio Petri,1307544173 +114930,8456,Lee Kresel,1307544173 +114930,8458,Mitchell Leisen,1402199574 +114930,8459,William Wyler,1319417087 +114930,8460,Walter Lang,1406197219 +114930,8462,Robert Wise,1334908825 +114930,8463,Jean Negulesco,1402196444 +114930,8464,Morgan Spurlock,1314173294 +114930,8465,Mervyn LeRoy,1401137393 +114930,8477,Chris Marker,1333076918 +114930,8477,Criterion,1335509576 +114930,8480,Cecil B. DeMille,1299359919 +114930,8480,Criterion,1299359919 +114930,8481,Jack Conway,1421328750 +114930,8481,King Vidor,1299746209 +114930,8481,W.S. Van Dyke,1298994055 +114930,8482,Albert Lewin,1299853326 +114930,8484,Masaki Kobayashi,1238262603 +114930,8484,Tatsuya Nakadai,1238857871 +114930,8485,Nalin Pan,1335081913 +114930,8486,Garson Kanin,1334969029 +114930,8491,Raoul Walsh,1300223319 +114930,8492,Brian Desmond Hurst,1335303601 +114930,8493,Michael Caton-Jones,1299643262 +114930,8494,Norman Jewison,1302777499 +114930,8496,Jerry Schatzberg,1335080737 +114930,8499,Nudity (Topless - Notable),1302034835 +114930,8501,Robert Harmon,1300402005 +114930,8502,George Sidney,1402201715 +114930,8505,Kôji Yakusho,1296351885 +114930,8505,Shôhei Imamura,1315398334 +114930,8507,Tod Browning,1326337169 +114930,8511,Charles Chaplin,1239124148 +114930,8516,Emeric Pressburger,1302888055 +114930,8516,Michael Powell,1299745405 +114930,8518,Clarence Brown,1299627043 +114930,8521,Rouben Mamoulian,1239145176 +114930,8522,Edward F. Cline,1402200289 +114930,8524,William A. Wellman,1401259567 +114930,8526,Frank Coraci,1310419559 +114930,8526,Steve Coogan,1312349770 +114930,8526,Will Forte,1293357724 +114930,8528,Rawson Marshall Thuber,1335408433 +114930,8529,Steven Spielberg,1299850104 +114930,8530,Shona Auerbach,1328744816 +114930,8531,Keenen Ivory Wayans,1301551117 +114930,8532,Nudity (Topless - Notable),1261611377 +114930,8533,Nick Cassavetes,1301448412 +114930,8542,Marx Brothers,1299627402 +114930,8542,Sam Wood,1299627490 +114930,8572,David Butler,1298119574 +114930,8572,Shirley Temple,1298119544 +114930,8573,Christoffer Boe,1311018298 +114930,8574,Will Vinton,1302676724 +114930,8575,Audrey Tautou,1315401481 +114930,8575,Laurent Firode,1315401493 +114930,8577,Oliver Stone,1299359424 +114930,8581,Martyn Burke,1334535478 +114930,8582,Mark Achbar,1333828480 +114930,8582,Peter Wintonick,1333828480 +114930,8583,Fred Zinnemann,1413626708 +114930,8583,Vincente Minnelli,1413626639 +114930,8584,John M. Stahl,1258440857 +114930,8586,William A. Wellman,1401259602 +114930,8588,Nudity (Topless - Notable),1261610003 +114930,8589,Pekka Parikka,1292235606 +114930,8593,Ernest R. Dickerson,1420275107 +114930,8595,Irvin Kershner,1335035108 +114930,8600,Michael Curtiz,1299845824 +114930,8601,Criterion,1335658779 +114930,8601,Jean Vigo,1272051537 +114930,8602,Criterion,1299449165 +114930,8602,John Cassavetes,1299449090 +114930,8604,Nudity (Topless - Notable),1261612604 +114930,8607,Satoshi Kon,1335298954 +114930,8607,Shôgo Furuya,1335298954 +114930,8608,Claude Chabrol,1298996287 +114930,8609,Buster Keaton,1239124243 +114930,8609,John G. Blystone,1301435302 +114930,8610,Carl Reiner,1326616429 +114930,8611,H.C. Potter,1328523164 +114930,8613,H.C. Potter,1299746331 +114930,8614,Garry Marshall,1302597003 +114930,8618,Nicholas Ray,1299915811 +114930,8619,Nancy Meckler,1329266906 +114930,8620,Criterion,1330481496 +114930,8620,Luis Buñuel,1319407550 +114930,8622,Michael Moore,1239085953 +114930,8623,Fred Schepisi,1258523545 +114930,8630,Sturla Gunnarsson,1422835704 +114930,8631,Walter Hill,1407136821 +114930,8636,Sam Raimi,1301035636 +114930,8638,Richard Linklater,1238200538 +114930,8641,Adam McKay,1272590743 +114930,8641,Steve Carell,1302040811 +114930,8644,Alex Proyas,1272049063 +114930,8645,Joshua Marston,1299852977 +114930,8650,Sidney Lumet,1319416145 +114930,8651,Arthur Hiller,1326440583 +114930,8656,Krzysztof Kieslowski,1292881500 +114930,8657,Anthony Mann,1410678926 +114930,8661,Henry Hathaway,1319411162 +114930,8661,John Ford,1319411224 +114930,8664,Joseph Losey,1405333477 +114930,8665,Paul Greengrass,1270016228 +114930,8669,Bob Rafelson,1328931290 +114930,8670,Criterion,1335657552 +114930,8670,Fritz Lang,1319417424 +114930,8675,Dick Powell,1316183472 +114930,8677,Ford Beebe,1417650145 +114930,8677,Ray Taylor,1417650145 +114930,8684,Criterion,1360319774 +114930,8684,Robert Bresson,1304945074 +114930,8686,Bernhard Wicki,1420607108 +114930,8690,George Roy Hill,1300339745 +114930,8692,John Farrow,1402198691 +114930,8694,William A Seiter,1334906417 +114930,8695,Irving Reis,1298120176 +114930,8695,Shirley Temple,1298119516 +114930,8696,Clint Eastwood,1403432883 +114930,8700,Delmer Daves,1405332528 +114930,8701,David Price,1335050121 +114930,8710,Vincent Ward,1326615428 +114930,8711,H.C. Potter,1299746349 +114930,8712,Garson Kanin,1272049463 +114930,8718,Anatole Litvak,1299846272 +114930,8720,Rod Daniel,1299645044 +114930,8724,Best of Rotten Tomatoes: All Time,1290802237 +114930,8724,Criterion,1290802237 +114930,8724,Golden Palm,1290802237 +114930,8724,Luchino Visconti,1320434067 +114930,8726,Theodore J. Flicker,1335079463 +114930,8727,John Schlesinger,1440388258 +114930,8730,David L. Cunningham,1335079210 +114930,8731,John Huston,1402199127 +114930,8732,Peter Greenaway,1302636914 +114930,8736,Dennis Hopper,1384342866 +114930,8738,Criterion,1265384447 +114930,8738,Jean-Luc Godard,1301002041 +114930,8739,Criterion,1316182254 +114930,8739,Pier Paolo Pasolini,1316182242 +114930,8740,Akira Kurosawa,1268796019 +114930,8740,Criterion,1268797107 +114930,8740,Toshirô Mifune,1268796199 +114930,8744,George Marshall,1258439416 +114930,8745,Richard Quine,1408919139 +114930,8748,Vittorio De Sica,1407135715 +114930,8749,Jacques Rivette,1263422909 +114930,8751,Joseph H. Lewis,1293988421 +114930,8752,Robert Wise,1298997968 +114930,8753,Joan Sekler,1268147162 +114930,8753,Richard Ray Perez,1268147162 +114930,8754,Ronald Neame,1299847160 +114930,8755,Martin Scorsese,1299844287 +114930,8757,Cy Howard,1315839974 +114930,8759,Don Chaffey,1409732694 +114930,8760,Peter Israelson,1334965721 +114930,8761,Don Chaffey,1409732704 +114930,8765,Frank Tuttle,1333677215 +114930,8766,Roy William Neill,1402206563 +114930,8767,John Farrow,1299846078 +114930,8768,Robert Siodmak,1297367205 +114930,8771,Roy William Neill,1402208764 +114930,8772,Criterion,1335657240 +114930,8772,Martin Ritt,1297816823 +114930,8775,George Seaton,1402204222 +114930,8777,Bruce McDonald,1328523580 +114930,8778,Roy William Neill,1402208761 +114930,8781,Jonathan Demme,1329445048 +114930,8783,M. Night Shyamalan,1321657098 +114930,8784,Zach Braff,1335410931 +114930,8785,Criterion,1263422634 +114930,8785,Yasujirô Ozu,1313789890 +114930,8786,Criterion,1335424349 +114930,8786,Marcel Carné,1311353181 +114930,8789,Sydney Pollack,1409477254 +114930,8794,Nikita Mikhalkov,1263350771 +114930,8795,Sung-su Kim,1333069567 +114930,8796,Buster Keaton,1239124286 +114930,8796,Richard Lester,1295987933 +114930,8797,Albert Maysles,1335131248 +114930,8797,Charlotte Zwerin,1335131248 +114930,8797,Criterion,1238857169 +114930,8797,David Maysles,1335131248 +114930,8798,Michael Mann,1302595475 +114930,8800,Michael Winterbottom,1312349196 +114930,8804,Claude Chabrol,1298996269 +114930,8807,Danny Leiner,1239130492 +114930,8809,Jeff Balsmeyer,1302641205 +114930,8809,Rhys Ifans,1302641788 +114930,8814,Steven Brill,1258372895 +114930,8824,Henry Levin,1420274358 +114930,8826,Laurent Cantet,1272642643 +114930,8827,Bill Cosby,1252685025 +114930,8838,Martin Scorsese,1299844244 +114930,8843,Paul Rodriguez,1334905957 +114930,8844,Krzysztof Kieslowski,1292881512 +114930,8845,Krzysztof Kieslowski,1444551020 +114930,8848,Criterion,1299448382 +114930,8848,Federico Fellini,1299448487 +114930,8851,Michael Ritchie,1319407972 +114930,8865,Kerry Conran,1335345502 +114930,8865,Omid Djalili,1299224759 +114930,8870,Joseph Ruben,1323659857 +114930,8871,Jeff Nathanson,1323268445 +114930,8872,John Waters,1301898642 +114930,8873,Walter Salles,1238972076 +114930,8874,Edgar Wright,1299961763 +114930,8874,Nick Frost,1301550473 +114930,8874,Simon Pegg,1296357471 +114930,8875,Daniel Mann,1298994182 +114930,8879,Sidney Lumet,1319416248 +114930,8880,Peter Bogdanovich,1299955736 +114930,8881,Henry King,1402196576 +114930,8882,Richard Fleischer,1402198783 +114930,8898,Luis Buñuel,1414339517 +114930,8905,Gérard Depardieu,1323684780 +114930,8905,Ridley Scott,1319413509 +114930,8907,Bibo Bergeron,1329042185 +114930,8907,Vicky Jenson,1329042185 +114930,8910,David O. Russell,1327621657 +114930,8910,Jason Schwartzman,1238136496 +114930,8910,Jonah Hill,1326337653 +114930,8914,Shane Carruth,1324753647 +114930,8915,Richard Eyre,1326441113 +114930,8917,Trey Parker,1335408005 +114930,8920,George Seaton,1297638374 +114930,8921,Daniel Mann,1298994181 +114930,8923,Criterion,1399776036 +114930,8923,Roman Polanski,1301899585 +114930,8928,Roman Polanski,1405331872 +114930,8930,Jørgen Leth,1322757413 +114930,8930,Lars von Trier,1300338769 +114930,8933,Denys Arcand,1327648805 +114930,8937,Peter Berg,1335330283 +114930,8939,Omar Naim,1317073154 +114930,8943,István Szabó,1322755634 +114930,8946,Mike Mitchell,1301540107 +114930,8949,Alexander Payne,1322758495 +114930,8950,Brad Anderson,1239067469 +114930,8951,Mike Leigh,1238966166 +114930,8954,Antoine Fuqua,1299963063 +114930,8955,David Gordon Green,1300336831 +114930,8957,James Wan,1302229357 +114930,8958,Taylor Hackford,1302283328 +114930,8959,Jonathan Glazer,1326337489 +114930,8961,Brad Bird,1238880390 +114930,8966,Bill Condon,1322757676 +114930,8970,Marc Forster,1301448205 +114930,8971,Yash Chopra,1314684303 +114930,8973,Pedro Almodóvar,1272049160 +114930,8977,Oliver Stone,1238378315 +114930,8980,Jean-Luc Godard,1415557129 +114930,8981,Mike Nichols,1300414463 +114930,8982,Paul Feig,1335134683 +114930,8983,Andy Lau,1296359123 +114930,8983,Takeshi Kaneshiro,1295429678 +114930,8983,Zhang Yimou,1300399095 +114930,8986,Jerry Lewis,1239145646 +114930,8987,Joseph Mealey,1335051328 +114930,8987,Michael Shoob,1335051328 +114930,8989,George Abbott,1335133728 +114930,8989,Stanley Donen,1319414765 +114930,8998,Jack Haley Jr.,1333676649 +114930,8999,Gene Kelly,1319414912 +114930,9000,Bud Friedgen,1328740427 +114930,9000,Michael J. Sheridan,1328740427 +114930,9004,Simon Wincer,1300414628 +114930,9005,Robert Lieberman,1335232176 +114930,9007,Shirley Temple,1298119488 +114930,9007,William Dieterle,1297639061 +114930,9010,Nudity (Topless - Notable),1267850114 +114930,9010,Yann Samuell,1331074795 +114930,9011,William Dieterle,1297639071 +114930,9013,Criterion,1201668396 +114930,9013,Robert Altman,1300999919 +114930,9014,John Cromwell,1297816479 +114930,9014,Shirley Temple,1298119485 +114930,9018,Jehane Noujaim,1335302949 +114930,25736,John S. Robertson,1408699086 +114930,25739,Charles Chaplin,1311992482 +114930,25741,Criterion,1321656382 +114930,25741,Victor Sjöström,1321656382 +114930,25742,Fritz Lang,1402205836 +114930,25743,George Melford,1402214159 +114930,25744,Benjamin Christensen,1323173649 +114930,25744,Criterion,1335507280 +114930,25746,Wallace Worsley,1335034945 +114930,25747,Fred C. Newmeyer,1402578499 +114930,25747,Harold Lloyd,1406541350 +114930,25747,Sam Taylor,1402578499 +114930,25749,Ernst Lubitsch,1402194616 +114930,25750,Buster Keaton,1239124260 +114930,25751,King Vidor,1299746161 +114930,25752,Criterion,1399778008 +114930,25752,Fred C. Newmeyer,1335051413 +114930,25752,Harold Lloyd,1238262131 +114930,25752,Sam Taylor,1399778045 +114930,25753,Erich von Stroheim,1292278491 +114930,25755,Edward Sedgwick,1421398811 +114930,25755,Ernst Laemmle,1421398810 +114930,25755,Lon Chaney,1421398810 +114930,25755,Rupert Julian,1328931319 +114930,25759,Grigori Aleksandrov,1334907941 +114930,25759,Sergei M. Eisenstein,1292284864 +114930,25762,Tod Browning,1387706827 +114930,25763,Criterion,1201666765 +114930,25763,Georg Wilhelm Pabst,1302796538 +114930,25764,Buster Keaton,1238132001 +114930,25764,Edward Sedgwick,1301435209 +114930,25765,Jean Epstein,1420978144 +114930,25766,King Vidor,1299746190 +114930,25767,Paul Leni,1402577410 +114930,25768,Raoul Walsh,1402192788 +114930,25769,Buster Keaton,1239124279 +114930,25769,Charles Reisner,1299627888 +114930,25770,Rouben Mamoulian,1402195409 +114930,25771,Luis Buñuel,1319407552 +114930,25773,Mervyn LeRoy,1298993775 +114930,25774,Luis Buñuel,1319407541 +114930,25775,King Vidor,1402203585 +114930,25777,Marx Brothers,1299627414 +114930,25777,Norman Z. McLeod,1299627556 +114930,25778,William A. Wellman,1401259595 +114930,25782,Criterion,1237146164 +114930,25782,Jean Renoir,1238875896 +114930,25785,Luis Buñuel,1414339510 +114930,25786,James Whale,1321654295 +114930,25788,Howard Hawks,1319416424 +114930,25788,Richard Rosson,1319416463 +114930,25789,Josef von Sternberg,1239159591 +114930,25792,Criterion,1291418639 +114930,25792,Yasujirô Ozu,1313789892 +114930,25793,Carl Theodor Dreyer,1238924402 +114930,25793,Criterion,1335658201 +114930,25794,George Cukor,1402209959 +114930,25795,George Cukor,1299362390 +114930,25797,Mervyn LeRoy,1401137386 +114930,25798,Criterion,1335509040 +114930,25798,Erle C. Kenton,1334905898 +114930,25800,Frank Capra,1402205341 +114930,25804,William A. Wellman,1401259632 +114930,25805,Criterion,1335510426 +114930,25805,Jean Vigo,1272051555 +114930,25806,Sidney Franklin,1402201036 +114930,25808,John M. Stahl,1402194784 +114930,25810,John Ford,1402204520 +114930,25811,Ernst Lubitsch,1402194642 +114930,25812,Harold Young,1420723574 +114930,25814,Jean Renoir,1402201866 +114930,25818,John Ford,1299363497 +114930,25820,Lew Landers,1402311034 +114930,25824,Jean Renoir,1402201816 +114930,25825,Fritz Lang,1319417415 +114930,25826,Jack Conway,1239158546 +114930,25827,Frank Capra,1297816236 +114930,25828,Archie Mayo,1295742045 +114930,25830,James Whale,1320434756 +114930,25831,William Wyler,1402203818 +114930,25832,Clarence Brown,1402205623 +114930,25833,George Cukor,1299362363 +114930,25834,Victor Fleming,1299363882 +114930,25835,William Wyler,1319417000 +114930,25837,Richard Thorpe,1402198139 +114930,25839,William A. Wellman,1298997072 +114930,25840,John Cromwell,1312342515 +114930,25840,W.S. Van Dyke,1298994016 +114930,25841,Gregory La Cava,1297815073 +114930,25842,Norman Z. McLeod,1402194506 +114930,25846,Edmund Goulding,1296356822 +114930,25850,George Cukor,1299362414 +114930,25851,H.C. Potter,1402214255 +114930,25852,Thorold Dickinson,1275350794 +114930,25855,Raoul Walsh,1300223322 +114930,25856,William Wyler,1319417093 +114930,25858,Kenji Mizoguchi,1408786106 +114930,25859,John Cromwell,1402203430 +114930,25860,Jack Conway,1402199681 +114930,25861,Lloyd Bacon,1318244059 +114930,25864,Clarence Brown,1402205553 +114930,25865,William Wyler,1319417014 +114930,25866,Michael Curtiz,1299845807 +114930,25868,Howard Hawks,1319416607 +114930,25869,Kenji Mizoguchi,1408786084 +114930,25870,Alexander Hall,1298119901 +114930,25871,Arthur Lubin,1402203087 +114930,25872,Henry Koster,1402201087 +114930,25874,Edward F. Cline,1402200290 +114930,25879,Vincent Sherman,1304432069 +114930,25881,Raoul Walsh,1402192765 +114930,25882,Vincent Sherman,1401271010 +114930,25884,Sidney Lanfield,1403521442 +114930,25886,Mervyn LeRoy,1298993751 +114930,25887,Julien Duvivier,1366629584 +114930,25888,Byron Haskin,1402192408 +114930,25888,Lloyd Bacon,1402192408 +114930,25888,Raoul Walsh,1402192408 +114930,25890,Victor Fleming,1399770067 +114930,25891,Criterion,1299360155 +114930,25891,Ernst Lubitsch,1299360155 +114930,25893,William Wyler,1402203810 +114930,25894,H.C. Potter,1402214245 +114930,25898,Carl Theodor Dreyer,1238924394 +114930,25898,Criterion,1238857012 +114930,25899,Charles Vidor,1405334100 +114930,25900,Gunther von Fritsch,1405337403 +114930,25900,Robert Wise,1405337403 +114930,25901,Criterion,1220044102 +114930,25901,Laurence Olivier,1238467727 +114930,25902,Alf Sjöberg,1292232637 +114930,25902,Criterion,1273593579 +114930,25903,Jean Negulesco,1402196451 +114930,25904,Criterion,1360319760 +114930,25904,Fritz Lang,1319417367 +114930,25905,Preston Sturges,1302676616 +114930,25906,Vincent Sherman,1304432092 +114930,25907,Tay Garnett,1382946940 +114930,25910,Clarence Brown,1402205616 +114930,25911,Fritz Lang,1319417388 +114930,25912,John Cromwell,1402203458 +114930,25914,Criterion,1335509067 +114930,25914,Sergei M. Eisenstein,1292284852 +114930,25915,Jean Renoir,1402201833 +114930,25916,John Ford,1397340397 +114930,25916,Robert Montgomery,1402910881 +114930,25918,Elia Kazan,1319415075 +114930,25920,George Marshall,1297394376 +114930,25921,Robert Siodmak,1402201922 +114930,25922,Irving Rapper,1403385332 +114930,25923,Criterion,1238857453 +114930,25923,David Lean,1297817234 +114930,25924,Jean Negulesco,1238925465 +114930,25926,Vittorio De Sica,1407135713 +114930,25927,Orson Welles,1238143064 +114930,25929,Edmund Goulding,1296356825 +114930,25930,Carol Reed,1299361617 +114930,25930,Criterion,1421654308 +114930,25931,Norman Z. McLeod,1402194496 +114930,25934,John Ford,1402204345 +114930,25937,Charles Walters,1302001088 +114930,25938,John Ford,1293987371 +114930,25938,Shirley Temple,1298119489 +114930,25940,Orson Welles,1238142950 +114930,25941,Max Ophüls,1292278514 +114930,25942,Robert J. Flaherty,1402198016 +114930,25943,Criterion,1292279124 +114930,25943,Jules Dassin,1239146282 +114930,25944,Vincente Minnelli,1413626563 +114930,25945,Nicholas Ray,1299915786 +114930,25946,George Sidney,1402201724 +114930,25947,Criterion,1335658181 +114930,25947,Preston Sturges,1238861243 +114930,25948,William A. Wellman,1396827383 +114930,25950,Charles Walters,1386404398 +114930,25951,Buster Keaton,1402199919 +114930,25951,Robert Z. Leonard,1402199889 +114930,25952,Joseph L. Mankiewicz,1298997632 +114930,25954,Criterion,1265341080 +114930,25954,Jean Cocteau,1265341202 +114930,25956,Fred M. Wilcox,1392884107 +114930,25959,Busby Berkeley,1402311829 +114930,25959,George Sidney,1402201690 +114930,25960,Criterion,1297368113 +114930,25960,Jean-Pierre Melville,1239079964 +114930,25961,Henry King,1298993230 +114930,25963,Luis Buñuel,1319407543 +114930,25964,Akira Kurosawa,1268796042 +114930,25964,Criterion,1268797189 +114930,25964,Takashi Shimura,1268796396 +114930,25964,Toshirô Mifune,1268796396 +114930,25965,Charles Walters,1410679093 +114930,25966,Criterion,1399773532 +114930,25966,Roberto Rossellini,1399773506 +114930,25970,Richard Thorpe,1410255591 +114930,25971,William Wyler,1402203788 +114930,25972,Fritz Lang,1402205827 +114930,25974,Richard Thorpe,1402198166 +114930,25975,Criterion,1399773262 +114930,25975,Kenji Mizoguchi,1258527410 +114930,25975,Toshirô Mifune,1238262379 +114930,25976,Frank Tashlin,1403521397 +114930,25980,Criterion,1360319812 +114930,25980,Teinosuke Kinugasa,1360319817 +114930,25981,Elia Kazan,1427819017 +114930,25984,Charles Crichton,1402311494 +114930,25986,Frank Launder,1403086338 +114930,25987,Kenji Mizoguchi,1258526868 +114930,25989,Criterion,1265510102 +114930,25989,Jean Renoir,1265510098 +114930,25990,George Cukor,1402209895 +114930,25991,Vincente Minnelli,1413626590 +114930,25993,Criterion,1272644864 +114930,25993,Douglas Sirk,1299745802 +114930,25995,Criterion,1201631716 +114930,25995,Hiroshi Inagaki,1333677761 +114930,25995,Toshirô Mifune,1238262366 +114930,25996,George Cukor,1299362398 +114930,26001,Gene Kelly,1417651488 +114930,26001,Stanley Donen,1417651488 +114930,26002,Orson Welles,1238143083 +114930,26003,Alain Resnais,1318243787 +114930,26003,Criterion,1265340014 +114930,26005,Criterion,1201631719 +114930,26005,Hiroshi Inagaki,1333677765 +114930,26005,Toshirô Mifune,1238262368 +114930,26007,Edvin Laine,1335273331 +114930,26009,Criterion,1237625027 +114930,26009,Kon Ichikawa,1302594260 +114930,26010,Henry King,1402196605 +114930,26012,Criterion,1201631721 +114930,26012,Hiroshi Inagaki,1333677763 +114930,26012,Toshirô Mifune,1238262329 +114930,26016,Charles Frend,1413158344 +114930,26018,Michael Anderson,1415104938 +114930,26019,Arthur Crabtree,1335504851 +114930,26019,Criterion,1335504856 +114930,26022,Joseph Pevney,1402202180 +114930,26025,Billy Wilder,1402201558 +114930,26028,Lewis Gilbert,1412585717 +114930,26030,Criterion,1335500296 +114930,26030,Robert Day,1335500288 +114930,26034,John Ford,1402204502 +114930,26038,George Seaton,1297638366 +114930,26043,Richard Fleischer,1319413174 +114930,26046,Jean Renoir,1391594628 +114930,26048,Masaki Kobayashi,1255421123 +114930,26048,Tatsuya Nakadai,1292203473 +114930,26049,Criterion,1302594251 +114930,26049,Kon Ichikawa,1302594261 +114930,26050,J. Lee Thompson,1367500416 +114930,26051,Fred Zinnemann,1298652471 +114930,26052,Criterion,1304944957 +114930,26052,Robert Bresson,1304945070 +114930,26055,Criterion,1201666693 +114930,26055,Yasujirô Ozu,1313789859 +114930,26056,Vincent Sherman,1401271044 +114930,26059,Criterion,1263315683 +114930,26059,Mikio Naruse,1258528073 +114930,26059,Tatsuya Nakadai,1238857888 +114930,26062,Fred Zinnemann,1402176680 +114930,26064,Akira Kurosawa,1268795989 +114930,26064,Criterion,1268796804 +114930,26064,Toshirô Mifune,1268795980 +114930,26070,Roger Corman,1299845071 +114930,26072,George Pollock,1405329401 +114930,26073,Criterion,1256678788 +114930,26073,Masaki Kobayashi,1255421104 +114930,26073,Tatsuya Nakadai,1238857888 +114930,26076,Seth Holt,1402212415 +114930,26078,Otto Preminger,1299848410 +114930,26079,Frank Perry,1402997967 +114930,26082,Criterion,1255421181 +114930,26082,Masaki Kobayashi,1255421128 +114930,26082,Tatsuya Nakadai,1238262512 +114930,26083,Tony Richardson,1302805103 +114930,26084,Morton DaCosta,1260181241 +114930,26085,Carol Reed,1402578562 +114930,26085,Lewis Milestone,1298653726 +114930,26086,Robert Enrico,1368518152 +114930,26090,Criterion,1399778155 +114930,26090,Dino Risi,1299744689 +114930,26094,Criterion,1201668978 +114930,26094,Michelangelo Antonioni,1302002566 +114930,26095,Jean-Luc Godard,1301002120 +114930,26100,Robert Mulligan,1427811267 +114930,26101,Andrew V. McLaglen,1299848923 +114930,26104,George Pollock,1405329402 +114930,26109,Georges Lautner,1421742352 +114930,26110,George Seaton,1402204207 +114930,26111,Peter Glenville,1317112299 +114930,26112,Fred Zinnemann,1402176629 +114930,26113,Franklin J. Schaffner,1301898483 +114930,26116,Robert Aldrich,1300223715 +114930,26117,Criterion,1297814916 +114930,26117,Don Siegel,1297814916 +114930,26119,Criterion,1201631763 +114930,26119,Samuel Fuller,1299259568 +114930,26122,Criterion,1292205738 +114930,26122,Kaneto Shindô,1292205738 +114930,26124,Byron Haskin,1335653262 +114930,26124,Criterion,1335653268 +114930,26125,Jack Hill,1402207169 +114930,26127,Bernhard Wicki,1420607107 +114930,26128,J. Lee Thompson,1319407696 +114930,26130,Tage Danielsson,1383731537 +114930,26131,Criterion,1238856618 +114930,26131,Gillo Pontecorvo,1328837673 +114930,26133,Bill Melendez,1301662214 +114930,26138,Sidney Lumet,1400450942 +114930,26139,Otto Preminger,1402195203 +114930,26141,Tony Richardson,1408920130 +114930,26146,Criterion,1421653886 +114930,26146,Monte Hellman,1421653886 +114930,26147,Fred Coe,1326335890 +114930,26148,John Frankenheimer,1238467495 +114930,26150,Andrei Tarkovsky,1317236532 +114930,26150,Criterion,1238856942 +114930,26151,Criterion,1237023041 +114930,26151,Robert Bresson,1304945072 +114930,26153,John Frankenheimer,1333065436 +114930,26153,Toshirô Mifune,1333065451 +114930,26155,Basil Dearden,1411888381 +114930,26155,Eliot Elisofon,1411888381 +114930,26156,King Hu,1448184983 +114930,26158,Criterion,1238857359 +114930,26158,Jirí Menzel,1303970068 +114930,26159,Criterion,1292204526 +114930,26159,Seijun Suzuki,1258524247 +114930,26163,Criterion,1453095500 +114930,26163,D.A. Pennebaker,1300228609 +114930,26164,Alejandro Jodorowsky,1302084046 +114930,26167,Larry Peerce,1420975626 +114930,26169,Criterion,1237329343 +114930,26169,Seijun Suzuki,1258524245 +114930,26170,François Truffaut,1335035849 +114930,26171,Best of Rotten Tomatoes: All Time,1290798125 +114930,26171,Criterion,1335424967 +114930,26171,Jacques Tati,1265340701 +114930,26172,John Boorman,1302776904 +114930,26174,Criterion,1421653863 +114930,26174,Monte Hellman,1421653857 +114930,26176,Frederick Wiseman,1304430736 +114930,26178,Stanley Donen,1319414758 +114930,26180,Robert Mulligan,1427811286 +114930,26184,Leonid Gaidai,1292234550 +114930,26187,Bob Rafelson,1335507307 +114930,26187,Criterion,1335507321 +114930,26188,Robert Ellis Miller,1302034784 +114930,26191,Richard Lester,1410677422 +114930,26194,Ulu Grosbard,1398761636 +114930,26197,Sergey Bondarchuk,1409298715 +114930,26198,Melville Shavelson,1402215275 +114930,26203,Joseph Sargent,1329445913 +114930,26207,Frank Perry,1402997990 +114930,26208,Criterion,1239080831 +114930,26208,Eric Rohmer,1319411961 +114930,26215,Criterion,1346046426 +114930,26215,Jaromil Jires,1346046427 +114930,26219,Robert Altman,1407239794 +114930,26222,Akira Kurosawa,1268795995 +114930,26222,Criterion,1268796813 +114930,26225,Criterion,1319411767 +114930,26225,Eric Rohmer,1319411965 +114930,26228,Roy Andersson,1297394411 +114930,26231,Donald Cammell,1317755792 +114930,26231,Nicolas Roeg,1301002418 +114930,26236,Vladimir Motyl,1334101901 +114930,26237,Michelangelo Antonioni,1302002546 +114930,26240,Clint Eastwood,1299644235 +114930,26240,Don Siegel,1297814930 +114930,26241,Ken Russell,1300993323 +114930,26242,Steven Spielberg,1299850031 +114930,26243,Jerry Paris,1377421969 +114930,26245,Joseph Losey,1296947385 +114930,26246,Dalton Trumbo,1328520103 +114930,26247,Michael Winner,1418112510 +114930,26249,Enzo Barboni,1407137960 +114930,26251,Claude Jutra,1327647156 +114930,26251,Criterion,1335512313 +114930,26252,Elaine May,1323688777 +114930,26253,Franklin J. Schaffner,1414344471 +114930,26258,Alejandro Jodorowsky,1302084055 +114930,26259,Criterion,1453095854 +114930,26259,Jan Troell,1328524063 +114930,26268,Yves Robert,1272049363 +114930,26269,Kenji Misumi,1292282511 +114930,26270,Kenji Misumi,1292282515 +114930,26271,Sidney J. Furie,1335049273 +114930,26274,Daryl Duke,1424755198 +114930,26280,Criterion,1265339956 +114930,26280,Jacques Tati,1265339956 +114930,26282,Gérard Oury,1364080188 +114930,26283,Don Siegel,1297814941 +114930,26287,Tony Richardson,1408919983 +114930,26289,Robert Aldrich,1411931433 +114930,26291,Anthony Harvey,1404809181 +114930,26294,Sergio Leone,1239047738 +114930,26294,Tonino Valerii,1317112599 +114930,26301,John G. Avildsen,1408919575 +114930,26302,Jerry Schatzberg,1335081238 +114930,26303,Brian De Palma,1238928689 +114930,26303,Criterion,1239134270 +114930,26304,Ivan Dixon,1397336939 +114930,26306,Douglas Hickox,1299847674 +114930,26307,Chang-Hwa Jeong,1445847746 +114930,26308,Paul Verhoeven,1360319055 +114930,26313,Robert Altman,1301000118 +114930,26315,Martin Ritt,1376453414 +114930,26318,Criterion,1268629400 +114930,26318,Luis Buñuel,1319407518 +114930,26320,Antonio Margheriti,1335505046 +114930,26320,Criterion,1335505051 +114930,26320,Paul Morrissey,1335505046 +114930,26321,Barbet Schroeder,1301446411 +114930,26321,Criterion,1301446411 +114930,26324,Paul Mazursky,1299844800 +114930,26325,Criterion,1335507356 +114930,26325,Peter Davis,1277182932 +114930,26326,Alejandro Jodorowsky,1302084064 +114930,26334,Robert Altman,1301000015 +114930,26342,Dick Richards,1332815717 +114930,26344,John Frankenheimer,1238467485 +114930,26346,François Truffaut,1407717005 +114930,26347,Eldar Ryazanov,1334907150 +114930,26349,Arthur Penn,1326440845 +114930,26349,Nudity (Topless - Notable),1261611333 +114930,26350,Michelangelo Antonioni,1302002583 +114930,26359,Bernardo Bertolucci,1323684999 +114930,26359,Gérard Depardieu,1238133908 +114930,26360,François Truffaut,1268710938 +114930,26366,Barbara Kopple,1333069080 +114930,26366,Criterion,1238857080 +114930,26368,Eric Rohmer,1408161587 +114930,26369,Barbet Schroeder,1301446381 +114930,26369,Criterion,1301446381 +114930,26369,Gérard Depardieu,1323684098 +114930,26370,Moustapha Akkad,1408921603 +114930,26372,Nikita Mikhalkov,1410498586 +114930,26375,Arthur Hiller,1326440646 +114930,26379,Franco Zeffirelli,1300338934 +114930,26387,François Truffaut,1407717014 +114930,26392,Alain Resnais,1318243745 +114930,26393,William Friedkin,1318241951 +114930,26394,Herbert Ross,1335052245 +114930,26395,Eric Idle,1323687436 +114930,26395,Gary Weis,1323687436 +114930,26399,Cheh Chang,1414919185 +114930,26400,Criterion,1421654272 +114930,26400,Errol Morris,1238393999 +114930,26413,Woo-ping Yuen,1300396502 +114930,26414,Robert Altman,1407239882 +114930,26416,Ira Wohl,1275351340 +114930,26417,Patrice Leconte,1391594115 +114930,26418,Bertrand Blier,1323686634 +114930,26418,Gérard Depardieu,1271268537 +114930,26422,Milos Forman,1335277652 +114930,26425,Arthur Hiller,1326440641 +114930,26431,Criterion,1299449163 +114930,26431,John Cassavetes,1299449053 +114930,26444,Alan J.W. Bell,1335134659 +114930,26452,Andrew V. McLaglen,1422835942 +114930,26453,Simon Langton,1413163073 +114930,26459,Clive Donner,1400311791 +114930,26462,Rick Rosenthal,1296357028 +114930,26467,Nicholas Meyer,1402212582 +114930,26471,Bruce Gowers,1326615363 +114930,26472,Criterion,1328521481 +114930,26472,Gregory Nava,1328521481 +114930,26476,Criterion,1335511952 +114930,26476,Nagisa Ôshima,1303796487 +114930,26476,Takeshi Kitano,1239046355 +114930,26479,Wilford Leach,1437120101 +114930,26485,Francis Ford Coppola,1319412146 +114930,26486,Criterion,1325937786 +114930,26486,Kon Ichikawa,1325893147 +114930,26491,Alan Johnson,1335080521 +114930,26492,George Miller,1299849564 +114930,26492,Joe Dante,1299849311 +114930,26492,John Landis,1298994834 +114930,26492,Steven Spielberg,1299849988 +114930,26496,Jean Becker,1356606106 +114930,26497,Marek Kanievska,1334968841 +114930,26502,Clive Donner,1302676635 +114930,26512,Criterion,1319412473 +114930,26512,Stephen Frears,1319412473 +114930,26515,John Blanchard,1401881310 +114930,26520,Eric Rohmer,1408161572 +114930,26521,Richard Benjamin,1323688142 +114930,26524,Criterion,1335657807 +114930,26524,Rob Epstein,1302038494 +114930,26527,Pedro Almodóvar,1238259601 +114930,26528,Kevin Sullivan,1327647749 +114930,26539,Volker Schlöndorff,1402908914 +114930,26546,Ricky Lau,1391785372 +114930,26547,Jackie Chan,1335232066 +114930,26550,Criterion,1299642510 +114930,26550,Paul Schrader,1299642510 +114930,26554,Geoff Murphy,1302286741 +114930,26555,John Landis,1298994826 +114930,26564,Bertrand Tavernier,1297367673 +114930,26565,Pino Van Lamsweerde,1334361404 +114930,26567,Harold Ramis,1324753799 +114930,26578,Andrei Tarkovsky,1317236524 +114930,26585,Chow Yun Fat,1239045358 +114930,26585,John Woo,1238769052 +114930,26587,Krzysztof Kieslowski,1260653597 +114930,26589,Corey Yuen,1420724741 +114930,26589,Sammo Hung Kam-Bo,1420724796 +114930,26596,Abbas Kiarostami,1292234161 +114930,26599,Pedro Almodóvar,1238259633 +114930,26606,Siu-Tung Ching,1259294169 +114930,26611,Lindsay Anderson,1402211290 +114930,26612,Chow Yun Fat,1239045356 +114930,26612,John Woo,1238769053 +114930,26613,Dodo Abashidze,1295591595 +114930,26613,Sergei Parajanov,1295591595 +114930,26614,Roger Young,1335342595 +114930,26616,Werner Herzog,1238731943 +114930,26617,Ron Mann,1417652955 +114930,26622,Robert M. Young,1302236141 +114930,26631,Jan Svankmajer,1292225710 +114930,26644,Theodoros Angelopoulos,1301668829 +114930,26645,Étienne Chatiliez,1390990113 +114930,26647,Chris Menges,1401057829 +114930,26649,Simon Wincer,1300414663 +114930,26662,Hayao Miyazaki,1238925924 +114930,26663,Patrice Leconte,1239080309 +114930,26670,Hiroshi Teshigahara,1422608220 +114930,26675,Takeshi Kitano,1362381273 +114930,26680,John Waters,1301898640 +114930,26681,John Woo,1238769045 +114930,26682,Richard Benjamin,1239112225 +114930,26686,Sidney Poitier,1326338001 +114930,26688,Bruce Malmuth,1300402468 +114930,26691,Aki Kaurismäki,1263337969 +114930,26693,Tommy Lee Wallace,1326209228 +114930,26694,Yang Fengliang,1335133994 +114930,26694,Zhang Yimou,1300399078 +114930,26696,Jean-Claude Van Damme,1300401497 +114930,26696,Sheldon Lettich,1300401660 +114930,26699,Abbas Kiarostami,1282638890 +114930,26699,Criterion,1292234151 +114930,26700,Jonathan Lynn,1299645345 +114930,26701,Mamoru Oshii,1320868144 +114930,26703,Ken Loach,1406283719 +114930,26704,Phil Joanou,1328520774 +114930,26712,Michael Apted,1302778035 +114930,26713,Andy Lau,1296359131 +114930,26713,Wong Kar-wai,1296416983 +114930,26726,Peter Faiman,1332296624 +114930,26729,Eleanor Coppola,1301449768 +114930,26729,Fax Bahr,1301449780 +114930,26729,George Hickenlooper,1301449748 +114930,26731,Criterion,1335507565 +114930,26731,David Mamet,1335507560 +114930,26732,Roberto Benigni,1256340394 +114930,26736,Ngai Kai Lam,1335036271 +114930,26737,Nudity (Topless - Notable),1261609333 +114930,26741,Stewart Raffill,1302030417 +114930,26743,Isao Takahata,1292924441 +114930,26744,Lasse Hallström,1351549543 +114930,26746,John Flynn,1301451058 +114930,26751,Trent Harris,1417509457 +114930,26756,Cynthia Scott,1334104708 +114930,26758,Alain Corneau,1323685117 +114930,26758,Gérard Depardieu,1239081117 +114930,26759,Karen Shakhnazarov,1418108929 +114930,26760,Steve Miner,1302000639 +114930,26762,Nick Broomfield,1416384225 +114930,26764,Albert Pyun,1418018567 +114930,26767,Frank Pierson,1381728448 +114930,26776,Hayao Miyazaki,1238925932 +114930,26776,Jean Reno,1300400841 +114930,26777,Gianni Amelio,1408698292 +114930,26778,Sidney J. Furie,1326335941 +114930,26788,Zhang Yimou,1300399076 +114930,26792,Aaron Norris,1326336262 +114930,26792,Chuck Norris,1239041260 +114930,26796,Claude Sautet,1328523028 +114930,26797,Arnold Glassman,1265733941 +114930,26797,Todd McCarthy,1265733941 +114930,26801,Hark Tsui,1399442395 +114930,26801,Raymond Lee,1399442395 +114930,26801,Siu-Tung Ching,1399442395 +114930,26802,Abbas Kiarostami,1411874458 +114930,26810,Rolf de Heer,1335083136 +114930,26811,Ronny Yu,1300398776 +114930,26812,Glenn Jordan,1335047970 +114930,26822,Hsiao-Hsien Hou,1450662921 +114930,26825,Billy Weber,1379580191 +114930,26826,Tony Gatlif,1416381303 +114930,26827,Aki Kaurismäki,1335510950 +114930,26827,Criterion,1335510958 +114930,26838,Stephen Frears,1319412513 +114930,26840,Takeshi Kitano,1258528468 +114930,26842,Jet Li,1300397902 +114930,26842,Woo-ping Yuen,1300396495 +114930,26854,Bradford May,1386143290 +114930,26858,Michael Schaack,1381214951 +114930,26861,Alex Winter,1302034486 +114930,26861,Tom Stern,1302034486 +114930,26865,Gordan Chan,1300398294 +114930,26865,Jet Li,1300398282 +114930,26869,Shinichirô Watanabe,1392722770 +114930,26869,Shôji Kawamori,1392722770 +114930,26870,David S. Ward,1301666651 +114930,26871,Gérard Depardieu,1323684490 +114930,26871,Steve Miner,1302000640 +114930,26875,Gérard Depardieu,1323684548 +114930,26875,Giuseppe Tornatore,1239156440 +114930,26887,Tom Holland,1323658378 +114930,26898,Takashi Ishii,1329266523 +114930,26903,Yoshifumi Kondo,1333829983 +114930,26928,Eric Rohmer,1408161619 +114930,26934,Lik-Chi Lee,1263338674 +114930,26934,Stephen Chow,1263338674 +114930,26938,Kjell Sundvall,1411932705 +114930,26939,Aki Kaurismäki,1263337978 +114930,26947,Mads Mikkelsen,1315400312 +114930,26947,Nicolas Winding Refn,1300228912 +114930,26954,Julio Medem,1295591846 +114930,26958,Diarmuid Lawrence,1368424868 +114930,26965,Jim Sheridan,1335132614 +114930,26982,John Sayles,1301542982 +114930,26990,Nick Willing,1401882028 +114930,26991,SABU,1421739164 +114930,26998,Kirby Dick,1423219445 +114930,26999,Darrell Rooney,1308057121 +114930,26999,Rob LaDuca,1308057121 +114930,27002,David Carson,1329130010 +114930,27002,David Frankel,1329130010 +114930,27002,Frank Marshall,1329130010 +114930,27002,Gary Fleder,1329130010 +114930,27002,Graham Yost,1329130010 +114930,27002,Jon Turteltaub,1329130010 +114930,27002,Jonathan Mostow,1329130010 +114930,27002,Lili Fini Zanuck,1329130010 +114930,27002,Michael Grossman,1329130010 +114930,27002,Sally Field,1329130010 +114930,27002,Tom Hanks,1329130010 +114930,27005,Craig Monahan,1335131711 +114930,27016,Dan Rosen,1321658471 +114930,27018,Takashi Miike,1402214608 +114930,27020,Nudity (Topless - Notable),1261608272 +114930,27032,Benny Chan,1301668622 +114930,27032,Jackie Chan,1301668660 +114930,27033,Lars von Trier,1300338714 +114930,27033,Morten Arnfred,1335080994 +114930,27036,Steve Barron,1314902208 +114930,27044,David Schwimmer,1297400785 +114930,27044,Lawrence O'Neil,1334964137 +114930,27046,Rowdy Herrington,1326614525 +114930,27049,Craig R. Baxley,1390990882 +114930,27064,Boyd Kirkland,1376300966 +114930,27073,Gregor Jordan,1301544044 +114930,27075,Dave Payne,1335133623 +114930,27087,Criterion,1307542544 +114930,27087,Nobuo Nakagawa,1307542544 +114930,27093,Claude Miller,1407712787 +114930,27094,Hsiao-Hsien Hou,1450662898 +114930,27096,Aleksey Balabanov,1415555787 +114930,27109,Criterion,1453095680 +114930,27109,Toshiya Fujita,1302800368 +114930,27112,Aleksi Mäkelä,1409469154 +114930,27131,Mani Ratnam,1392379260 +114930,27152,Perttu Leppä,1403521262 +114930,27156,Hideaki Anno,1292223344 +114930,27156,Kazuya Tsurumaki,1296946661 +114930,27178,Fatih Akin,1263312999 +114930,27186,Michel Ocelot,1335079432 +114930,27189,Takashi Koizumi,1381214966 +114930,27198,Aleksandr Rogozhkin,1352750963 +114930,27223,Bruno Dumont,1402577134 +114930,27236,Kiyoshi Kurosawa,1419554124 +114930,27246,Anne Heche,1328522257 +114930,27246,Jane Anderson,1328522258 +114930,27246,Martha Coolidge,1328522258 +114930,27251,David Carson,1306102199 +114930,27251,Herbert Wise,1306102199 +114930,27253,Douglas McCarthy,1335048006 +114930,27255,Abbas Kiarostami,1292234156 +114930,27261,François Ozon,1416564975 +114930,27263,Rolf de Heer,1405683552 +114930,27266,Wong Kar-wai,1296416992 +114930,27268,George A. Romero,1342173486 +114930,27271,Nagisa Ôshima,1303796486 +114930,27271,Tadanobu Asano,1292225074 +114930,27273,Pablo Trapero,1422086459 +114930,27276,Andy Lau,1353399044 +114930,27276,Johnnie To,1353399020 +114930,27311,Curt Geda,1349776316 +114930,27316,Pen-Ek Ratanaruang,1292225127 +114930,27317,Takashi Miike,1257354067 +114930,27321,Joseph Sargent,1361776601 +114930,27326,Sanjay Leela Bhansali,1263989861 +114930,27328,SABU,1421739207 +114930,27329,Bruce Sinofsky,1335050036 +114930,27329,Joe Berlinger,1300335698 +114930,27334,Josh Aronson,1334361938 +114930,27344,Kunihiko Ikuhara,1334105065 +114930,27347,Steve Rash,1326616544 +114930,27348,Johnnie To,1367103665 +114930,27348,Wai Ka Fa,1367103665 +114930,27350,Uli Edel,1360751147 +114930,27362,Karan Johar,1314684313 +114930,27366,Béla Tarr,1317073182 +114930,27369,Guy Moore,1328525811 +114930,27369,Karen Disher,1328525811 +114930,27370,Saul Metzstein,1323688526 +114930,27373,Billy Crystal,1335083362 +114930,27376,Roland Suso Richter,1313789983 +114930,27391,Moisés Kaufman,1335134697 +114930,27397,Chan-wook Park,1219831552 +114930,27410,Frank Pierson,1335277772 +114930,27416,Josef Fares,1335282301 +114930,27423,Guel Arraes,1360751212 +114930,27432,Hans Petter Moland,1327116468 +114930,27434,Jaume Balagueró,1302594098 +114930,27445,Martyn Burke,1334535469 +114930,27447,Kate Davis,1409643482 +114930,27449,Hannes Stöhr,1369850480 +114930,27451,Gakuryu Ishii,1395046024 +114930,27455,Shûsuke Kaneko,1383909012 +114930,27456,George Butler,1327113556 +114930,27458,David Caesar,1315851953 +114930,27469,Hsiao-Hsien Hou,1450662889 +114930,27478,Mark Mylod,1301036120 +114930,27480,Takashi Miike,1402214589 +114930,27482,Andrzej Sekula,1335279382 +114930,27491,Kiyoshi Kurosawa,1419554494 +114930,27497,Russell Mulcahy,1402212954 +114930,27506,Best of Rotten Tomatoes: All Time,1290797772 +114930,27506,György Pálfi,1270015595 +114930,27513,Ulrich Seidl,1317756005 +114930,27515,Sijie Dai,1328524546 +114930,27523,Jae-young Kwak,1263339481 +114930,27528,Asif Kapadia,1272644917 +114930,27550,George Ratliff,1320182860 +114930,27555,Michael Dowse,1299626661 +114930,27563,Takashi Miike,1257354057 +114930,27571,Tony McNamara,1328524567 +114930,27584,Fabrice Canepa,1329130541 +114930,27584,Jean-Baptiste Andrea,1258594605 +114930,27587,Gillies MacKinnon,1418020104 +114930,27592,Chan-wook Park,1219831567 +114930,27598,Jeffrey Lau,1372750484 +114930,27603,José Henrique Fonseca,1432627923 +114930,27611,Michael Rymer,1328521409 +114930,27620,Alain Corneau,1323685133 +114930,27624,Mick Jackson,1367819232 +114930,27636,Leander Haußmann,1323687873 +114930,27640,Richard Loncraine,1407841597 +114930,27646,Frank Pierson,1330133400 +114930,27647,Geoffrey Sax,1272952286 +114930,27660,Andy Jones,1328742097 +114930,27660,Kôji Morimoto,1328742097 +114930,27660,Mahiro Maeda,1328742097 +114930,27660,Peter Chung,1328742097 +114930,27660,Shinichirô Watanabe,1328742074 +114930,27660,Takeshi Koike,1328742096 +114930,27660,Yoshiaki Kawajiri,1321654655 +114930,27664,Vincent Gallo,1328394364 +114930,27671,Klaus Härö,1302081411 +114930,27674,Colin Hanks,1295742602 +114930,27674,Greg Marcks,1335298574 +114930,27674,Jason Segel,1296947647 +114930,27695,Hugo Rodríguez,1328395117 +114930,27700,Mikael Håfström,1297810745 +114930,27708,John Kent Harrison,1324562889 +114930,27716,Anders Thomas Jensen,1239210627 +114930,27716,Mads Mikkelsen,1315400292 +114930,27721,Audrey Tautou,1315401600 +114930,27721,Jean-Pierre Jeunet,1292267783 +114930,27722,Pen-Ek Ratanaruang,1292225129 +114930,27722,Tadanobu Asano,1292225086 +114930,27727,Fatih Akin,1263313002 +114930,27728,Mamoru Oshii,1320868161 +114930,27731,Hiroyuki Morita,1333681095 +114930,27738,Tomek Baginski,1287435610 +114930,27741,Hiroyuki Sanada,1296351207 +114930,27741,Yôji Yamada,1243497057 +114930,27743,Robert Lepage,1333245132 +114930,27744,Ferzan Ozpetek,1335039196 +114930,27760,Yôjirô Takita,1418107525 +114930,27764,Yukihiko Tsutsumi,1389011534 +114930,27768,Patrice Leconte,1239080310 +114930,27771,Manoel de Oliveira,1411721437 +114930,27772,Takashi Shimizu,1324753037 +114930,27773,Chan-wook Park,1219831571 +114930,27780,Peter Dalle,1365969412 +114930,27783,Daniel Burman,1427810843 +114930,27788,John Maybury,1312351966 +114930,27790,Danny Boyle,1296352297 +114930,27792,Guy Maddin,1413188796 +114930,27797,Jorge Furtado,1335036211 +114930,27800,Kazuhisa Takenôchi,1335135541 +114930,27801,Prachya Pinkaew,1324563036 +114930,27802,Alan Mak,1333682691 +114930,27802,Wai-keung Lau,1333682690 +114930,27803,Alejandro Amenábar,1239068128 +114930,27808,James L. Brooks,1239111620 +114930,27811,Morten Tyldum,1416198588 +114930,27812,Bob Smeaton,1323688210 +114930,27815,Christophe Barratier,1335308147 +114930,27820,Byambasuren Davaa,1329001075 +114930,27820,Luigi Falorni,1329001075 +114930,27821,Sydney Pollack,1317075838 +114930,27827,Alan Mak,1367103573 +114930,27827,Wai-keung Lau,1367103572 +114930,27828,Erik Van Looy,1323688452 +114930,27831,Matthew Vaughn,1307543157 +114930,27834,Andrei Zvyagintsev,1324751646 +114930,27835,Jonathan Demme,1419833115 +114930,27838,Jacob Aaron Estes,1329445995 +114930,27839,Hideo Nakata,1296351362 +114930,27840,Sergio Arau,1328392365 +114930,27841,Philip Saville,1334904954 +114930,27843,Andrés Wood,1335041309 +114930,27846,Jennifer Abbott,1333828472 +114930,27846,Mark Achbar,1333828472 +114930,27850,Chris Smith,1323050267 +114930,27850,Dan Ollman,1323050267 +114930,27850,Sarah Price,1323050267 +114930,27851,Ken Loach,1335052332 +114930,27857,Kay Pollak,1302081462 +114930,27866,Brad McGann,1326600326 +114930,27869,Je-gyu Kang,1309287688 +114930,27871,Joseph Sargent,1329445914 +114930,27873,Bruce Sinofsky,1335304055 +114930,27873,Joe Berlinger,1300335705 +114930,27878,Ross Kauffman,1335302668 +114930,27878,Zana Briski,1335302668 +114930,27879,Ondi Timoner,1331076794 +114930,27882,Stacy Peralta,1328576571 +114930,27884,Eric Chaikin,1335047915 +114930,27884,Julian Petrillo,1335047915 +114930,27899,Betsy Chasse,1314683490 +114930,27899,Mark Vicente,1314683490 +114930,27899,William Arntz,1314683490 +114930,27904,Richard Linklater,1238200544 +114930,27912,Robert Greenwald,1238925384 +114930,27922,Marty Callner,1420507647 +114930,30701,Orson Welles,1296947745 +114930,30707,Clint Eastwood,1299644198 +114930,30712,Richard Fleischer,1319413214 +114930,30721,Don Siegel,1239070463 +114930,30723,Robert Altman,1407239874 +114930,30742,Vincente Minnelli,1385946500 +114930,30745,Takashi Miike,1257354034 +114930,30749,Terry George,1301904459 +114930,30783,Mario Bava,1402210637 +114930,30793,Tim Burton,1238806614 +114930,30800,Bryan Forbes,1411209229 +114930,30803,Kim Ki-Duk,1335331107 +114930,30808,Lloyd Bacon,1402192446 +114930,30810,Criterion,1201668935 +114930,30810,Wes Anderson,1238885084 +114930,30812,Martin Scorsese,1299844336 +114930,30816,Joel Schumacher,1299962135 +114930,30820,Nicole Kassell,1312350634 +114930,30825,Cedric Yarbrough,1293368429 +114930,30825,Jay Roach,1258372649 +114930,30848,Shainee Gabel,1335277574 +114930,30850,Michael Radford,1328390901 +114930,30854,Ming-liang Tsai,1334199358 +114930,30863,Arthur Lubin,1378795250 +114930,30867,Tetsuya Nakashima,1300223977 +114930,30890,Gianni Amelio,1408698277 +114930,30892,Jessica Yu,1333070412 +114930,30894,Geoffrey Sax,1296339662 +114930,30898,Kevin Costner,1301036388 +114930,30898,Mike Binder,1301035204 +114930,30949,Jerry Garcia,1418020008 +114930,30949,Leon Gast,1418020008 +114930,30952,John Sturges,1403604418 +114930,30991,Jonathan Wacks,1323688921 +114930,30996,Alexander Hall,1297638839 +114930,30996,Shirley Temple,1298119539 +114930,31011,Bill Krohn,1421653462 +114930,31011,Myron Meisel,1421653462 +114930,31011,Norman Foster,1421653462 +114930,31011,Orson Welles,1421653462 +114930,31011,Richard Wilson,1421653462 +114930,31030,George Stevens,1297641267 +114930,31035,Lynne Littman,1333068382 +114930,31042,Edmund Goulding,1402197367 +114930,31042,Howard Hughes,1402197367 +114930,31042,James Whale,1402197367 +114930,31086,Kinji Fukasaku,1296632202 +114930,31101,Bronwen Hughes,1301450294 +114930,31104,Joan Micklin Silver,1411882450 +114930,31107,Elaine May,1407322228 +114930,31114,Dan Harris,1328568445 +114930,31116,Howard Hawks,1319416639 +114930,31123,Francis Veber,1300399759 +114930,31123,Gérard Depardieu,1323684530 +114930,31123,Jean Reno,1300399652 +114930,31148,Marek Koterski,1334909652 +114930,31152,Mario Monicelli,1411720763 +114930,31156,Charles Lamont,1402202954 +114930,31160,Charles Barton,1402203139 +114930,31184,Shinji Aramaki,1335299372 +114930,31188,Criterion,1268629392 +114930,31188,Luis Buñuel,1319407430 +114930,31193,John Lounsbery,1300992098 +114930,31193,Wolfgang Reitherman,1300992593 +114930,31221,Rob Bowman,1329042149 +114930,31247,Lloyd Bacon,1400450779 +114930,31260,Norman Taurog,1299847635 +114930,31270,David Cronenberg,1238149181 +114930,31297,Busby Berkeley,1402192300 +114930,31309,Luchino Visconti,1316182567 +114930,31337,Frank Borzage,1402206867 +114930,31347,Preston Sturges,1302676575 +114930,31349,Criterion,1399773759 +114930,31349,René Clair,1389608688 +114930,31351,Archie Mayo,1402205686 +114930,31351,Michael Curtiz,1402650194 +114930,31353,Frank Capra,1402205349 +114930,31359,Ousmane Sembene,1300992298 +114930,31364,Joon-ho Bong,1292177178 +114930,31367,Adam Rifkin,1302675730 +114930,31374,Criterion,1297817195 +114930,31374,David Lean,1297817195 +114930,31408,Marco Kreuzpaintner,1258374492 +114930,31410,Oliver Hirschbiegel,1239132256 +114930,31420,Jean-François Richet,1300994692 +114930,31427,John Polson,1300226763 +114930,31435,Damien O'Donnell,1329043852 +114930,31437,Hirokazu Koreeda,1258527739 +114930,31467,Martin Ritt,1403387583 +114930,31474,Çagan Irmak,1392282978 +114930,31485,Richard Brooks,1299848647 +114930,31487,Sam Wood,1402196060 +114930,31490,Nick Willing,1361777531 +114930,31522,Criterion,1237329423 +114930,31522,Rainer Werner Fassbinder,1238859939 +114930,31524,Criterion,1421654002 +114930,31524,Rainer Werner Fassbinder,1292233682 +114930,31528,William A. Wellman,1298997090 +114930,31545,Criterion,1329043002 +114930,31545,Jacques Becker,1292205453 +114930,31547,Werner Herzog,1238731822 +114930,31553,James Yukich,1301032703 +114930,31555,Stewart Raffill,1302030599 +114930,31588,Criterion,1237625760 +114930,31588,Jacques Becker,1292205451 +114930,31590,Criterion,1329042996 +114930,31590,Jacques Becker,1292205449 +114930,31594,Joseph Anthony,1401091229 +114930,31598,Criterion,1335428698 +114930,31598,Simon Callow,1335428688 +114930,31600,Criterion,1335500897 +114930,31600,Nicholas Meyer,1335500891 +114930,31617,Anthony Mann,1258528842 +114930,31628,Juzo Itami,1268147349 +114930,31655,Roy Ward Baker,1402196976 +114930,31658,Hayao Miyazaki,1238925920 +114930,31664,Vincent Kok,1333065127 +114930,31672,Hark Tsui,1414739505 +114930,31682,Andrew Horn,1334907901 +114930,31685,Andy Tennant,1325895210 +114930,31685,Joe Lo Truglio,1293348894 +114930,31694,Gurinder Chadha,1239153312 +114930,31698,Lawrence Guterman,1335277445 +114930,31702,Bahman Ghobadi,1271453522 +114930,31705,Ekachai Uekrongtham,1334967687 +114930,31737,Otto Preminger,1402195115 +114930,31742,Arthur Barron,1404810144 +114930,31747,Malcolm Mowbray,1330130224 +114930,31770,Criterion,1238874843 +114930,31770,Jules Dassin,1239146272 +114930,31785,Aku Louhimies,1303796580 +114930,31797,Edmund Goulding,1402206153 +114930,31813,Rebecca Cammisa,1364903506 +114930,31813,Rob Fruchtman,1364903506 +114930,31847,Roy Del Ruth,1410167970 +114930,31851,Oliver Hardy,1402200579 +114930,31851,Stan Laurel,1402200579 +114930,31851,William A. Seiter,1402194396 +114930,31854,Josef von Sternberg,1292283187 +114930,31867,Stephen Herek,1323658473 +114930,31869,Cecil B. DeMille,1299359724 +114930,31878,Stephen Chow,1314400400 +114930,31892,Corey Yuen,1239128045 +114930,31892,Jean-Claude Van Damme,1238376349 +114930,31894,Eric Armstrong,1387698523 +114930,31903,Ondrej Trojan,1292273270 +114930,31915,Irving Rapper,1403385326 +114930,31921,Herbert Ross,1297641958 +114930,31923,Richard Lester,1318243912 +114930,31930,Criterion,1265384444 +114930,31930,Jean-Luc Godard,1301002047 +114930,31932,Otto Preminger,1402195147 +114930,31934,Criterion,1335505130 +114930,31934,Zoltan Korda,1238804798 +114930,31948,Antonio Mercero,1334361879 +114930,31950,Jacques Tourneur,1299846450 +114930,31952,Nimród Antal,1259902413 +114930,31954,Asghar Farhadi,1414481570 +114930,31963,Criterion,1268710626 +114930,31963,François Truffaut,1268710936 +114930,31973,Criterion,1271537023 +114930,31973,Roberto Rossellini,1271537016 +114930,31991,Rouben Mamoulian,1273285954 +114930,32013,Jan Hrebejk,1308941205 +114930,32019,F. Gary Gray,1327115845 +114930,32025,Eytan Fox,1302481442 +114930,32031,Carlos Saldanha,1301666472 +114930,32031,Chris Wedge,1301666487 +114930,32031,Harland Williams,1301667173 +114930,32060,Paul Leni,1402577411 +114930,32139,Carol Reed,1402578585 +114930,32160,Howard Hawks,1319416596 +114930,32166,Richard Quine,1408919138 +114930,32172,George C. Wolfe,1334531463 +114930,32179,Criterion,1318244176 +114930,32179,Louis Malle,1239138064 +114930,32196,Takeshi Kitano,1258528414 +114930,32199,Tomas Alfredson,1294086787 +114930,32203,Buzz Kulik,1325893416 +114930,32234,Fred Zinnemann,1298652496 +114930,32239,Joon-Hwan Jang,1335052947 +114930,32261,Mervyn LeRoy,1401137425 +114930,32277,Busby Berkeley,1402192291 +114930,32277,Norman Taurog,1402192291 +114930,32280,Criterion,1302796530 +114930,32280,Georg Wilhelm Pabst,1302796530 +114930,32291,Steve Carell,1302040837 +114930,32291,Woody Allen,1302670371 +114930,32302,Christopher Brown,1335270623 +114930,32314,Zak Penn,1301547967 +114930,32316,Criterion,1265509693 +114930,32316,Jean Renoir,1238875893 +114930,32349,King Vidor,1299746197 +114930,32352,Richard Williams,1299846385 +114930,32361,Howard Hawks,1402197279 +114930,32361,Richard Rosson,1402197279 +114930,32361,William Wyler,1402197279 +114930,32369,Elia Kazan,1319415087 +114930,32371,Henry Hathaway,1319411145 +114930,32375,Criterion,1335424536 +114930,32375,Volker Schlöndorff,1335424547 +114930,32381,Vincente Minnelli,1335033617 +114930,32387,Criterion,1298056520 +114930,32387,Kihachi Okamoto,1265182485 +114930,32387,Tatsuya Nakadai,1238857878 +114930,32387,Toshirô Mifune,1238262338 +114930,32389,Arturo Ripstein,1335500927 +114930,32389,Criterion,1335500934 +114930,32392,Álex de la Iglesia,1262784454 +114930,32419,Philip Haas,1334532014 +114930,32442,Jonathan Lynn,1299645341 +114930,32442,Michael J. Fox,1299641538 +114930,32444,Carlos Saura,1276457948 +114930,32444,Criterion,1276457727 +114930,32452,Isao Takahata,1410498440 +114930,32456,Isao Takahata,1265510490 +114930,32460,Thomas Jahn,1333077729 +114930,32464,John Sayles,1301542993 +114930,32469,Michael Curtiz,1299845850 +114930,32471,Jack Cardiff,1415645928 +114930,32483,Leo McCarey,1402200882 +114930,32493,Jim Fields,1320868391 +114930,32493,Michael Gramaglia,1320868390 +114930,32497,Shunji Iwai,1417228213 +114930,32509,Criterion,1268710267 +114930,32509,Lindsay Anderson,1299845959 +114930,32511,King Hu,1334734093 +114930,32515,Alex Cox,1311992596 +114930,32515,Criterion,1273503423 +114930,32520,Bryan Forbes,1411209222 +114930,32525,Criterion,1238857015 +114930,32525,Max Ophüls,1331078208 +114930,32551,Criterion,1453095584 +114930,32551,Ted Wilde,1402578484 +114930,32554,Katsuhiro Ôtomo,1265119082 +114930,32554,Kôji Morimoto,1265119082 +114930,32554,Tensai Okamura,1265119082 +114930,32562,Adam Elliot,1313790253 +114930,32582,Judy Irving,1335156762 +114930,32584,Rebecca Miller,1258371668 +114930,32587,Quentin Tarantino,1297624243 +114930,32587,Robert Rodriguez,1299961983 +114930,32591,Agnès Jaoui,1292233723 +114930,32593,Dana Brown,1239149024 +114930,32598,Farrelly Brothers,1299915120 +114930,32646,Michael Apted,1302777986 +114930,32649,Criterion,1453095369 +114930,32649,Ettore Scola,1315398915 +114930,32653,Jean Renoir,1402201237 +114930,32657,Frédéric Back,1333077737 +114930,32707,Derek Jarman,1301002232 +114930,32719,Gillo Pontecorvo,1401061126 +114930,32724,John Hillcoat,1406028175 +114930,32735,Criterion,1349032007 +114930,32735,Pier Paolo Pasolini,1349032016 +114930,32737,Nudity (Topless - Notable),1261610163 +114930,32741,Pier Paolo Pasolini,1415557275 +114930,32743,Norio Tsuruta,1335050703 +114930,32770,Susanne Bier,1295252329 +114930,32770,Ulrich Thomsen,1297398839 +114930,32773,Mario Monicelli,1381569388 +114930,32777,Criterion,1335511592 +114930,32777,David Lean,1417985173 +114930,32777,Gabriel Pascal,1335511592 +114930,32777,Harold French,1417985173 +114930,32792,Criterion,1302002395 +114930,32792,Michelangelo Antonioni,1302002552 +114930,32797,Rainer Werner Fassbinder,1408917186 +114930,32811,Georg Wilhelm Pabst,1407062956 +114930,32825,Juliusz Machulski,1292228680 +114930,32834,Orson Welles,1421652659 +114930,32840,Tim Burton,1335082128 +114930,32844,Mervyn LeRoy,1298993718 +114930,32853,Marcel Ophüls,1301903897 +114930,32864,Michael Gordon,1408439947 +114930,32866,Charles Vidor,1405334139 +114930,32875,Criterion,1421653685 +114930,32875,Jacques Tati,1265339969 +114930,32890,Rainer Werner Fassbinder,1408917174 +114930,32892,Andrei Tarkovsky,1317236528 +114930,32892,Criterion,1317236388 +114930,32898,Georges Méliès,1326615655 +114930,32906,Criterion,1292221634 +114930,32906,Larisa Shepitko,1292221611 +114930,32917,Federico Fellini,1411720925 +114930,32917,Luchino Visconti,1411720925 +114930,32917,Mario Monicelli,1411720925 +114930,32917,Vittorio De Sica,1411720925 +114930,32943,Criterion,1362737022 +114930,32943,Mike Leigh,1265381760 +114930,32952,Criterion,1421654261 +114930,32952,Robert Montgomery,1402910898 +114930,32954,Fred Schepisi,1400450626 +114930,32957,Criterion,1322756429 +114930,32957,Masahiro Shinoda,1322756367 +114930,32959,Nagisa Ôshima,1430118183 +114930,32988,Olivier Assayas,1418019511 +114930,32999,Henry King,1402196872 +114930,33001,Mervyn LeRoy,1401137367 +114930,33004,Garth Jennings,1335409164 +114930,33004,Jason Schwartzman,1296951995 +114930,33019,Til Schweiger,1413294372 +114930,33072,Criterion,1335504515 +114930,33072,Orson Welles,1256067496 +114930,33098,Robert Harmon,1364631448 +114930,33110,Robert Siodmak,1402201938 +114930,33113,Fred Zinnemann,1298652464 +114930,33117,Stanley Kwan,1411636816 +114930,33119,Vittorio De Sica,1273112196 +114930,33124,Dennis Gansel,1293183781 +114930,33126,Robert Aldrich,1300223679 +114930,33136,David Duchovny,1363331167 +114930,33138,Todd Solondz,1302235560 +114930,33154,Alex Gibney,1255420418 +114930,33164,Juame Collet-Serra,1335301072 +114930,33166,Paul Haggis,1328523549 +114930,33171,Gregg Araki,1238311008 +114930,33188,Nudity (Topless - Notable),1261610568 +114930,33191,Criterion,1362736956 +114930,33191,Delmer Daves,1362736956 +114930,33226,Criterion,1400452589 +114930,33226,Kimiyoshi Yasuda,1400452589 +114930,33229,Guy Green,1404808997 +114930,33235,Karel Reisz,1421156019 +114930,33237,W.S. Van Dyke,1298994032 +114930,33247,Luis Buñuel,1414339530 +114930,33251,Jean Renoir,1402201783 +114930,33255,Michael Curtiz,1402192636 +114930,33261,Fred Zinnemann,1402176668 +114930,33264,Béla Tarr,1297394329 +114930,33267,Harold S. Bucquet,1402199824 +114930,33270,Katsuhito Ishii,1292225112 +114930,33270,Tadanobu Asano,1333062632 +114930,33288,Criterion,1335510140 +114930,33288,Ken Loach,1293229952 +114930,33292,Clarence Brown,1402205567 +114930,33312,Joseph Stantley,1301552570 +114930,33312,Marx Brothers,1299627400 +114930,33312,Robert Florey,1301552550 +114930,33316,Bernhard Wicki,1420607109 +114930,33316,Criterion,1453095002 +114930,33321,Jean Negulesco,1402196479 +114930,33328,Nikita Mikhalkov,1410498577 +114930,33340,Takeshi Kitano,1258528441 +114930,33342,Bradley Beesley,1405331810 +114930,33358,Campbell Scott,1335082202 +114930,33389,James F. Collier,1396513899 +114930,33393,John M. Stahl,1402194791 +114930,33401,Charles Chaplin,1378795790 +114930,33415,Fatih Akin,1390478459 +114930,33424,John Huston,1402199119 +114930,33426,Toshiaki Toyoda,1396135256 +114930,33437,Jet Li,1300398356 +114930,33437,Louis Leterrier,1295743008 +114930,33451,Ettore Scola,1315398848 +114930,33454,Jean-Claude Lauzon,1335049290 +114930,33487,Kim Ki-Duk,1335331117 +114930,33493,George Lucas,1320185276 +114930,33495,Jesse Dylan,1296351531 +114930,33495,Martin Starr,1296351452 +114930,33524,Mitchell Leisen,1402199491 +114930,33533,Hiner Saleem,1264480448 +114930,33558,Charles Martin Smith,1297171517 +114930,33564,Criterion,1292223287 +114930,33564,Pietro Germi,1273112741 +114930,33567,Mark Sandrich,1402649659 +114930,33587,Criterion,1399773780 +114930,33587,Lewis Allen,1399773777 +114930,33592,Kim Ki-Duk,1335331119 +114930,33603,Eddy Terstall,1335048492 +114930,33610,Tay Garnett,1402311422 +114930,33615,David Schwimmer,1297400779 +114930,33615,Eric Darnell,1297402700 +114930,33615,Tom McGrath,1297402700 +114930,33621,Cate Shortland,1332888749 +114930,33629,Rob Bowman,1329042151 +114930,33639,Marilyn Agrelo,1293367676 +114930,33649,Alice Wu,1333244749 +114930,33655,David Hogan,1329042752 +114930,33660,Ron Howard,1300401090 +114930,33672,Catherine Hardwicke,1335282471 +114930,33709,Jaco Van Dormael,1302641196 +114930,33722,Charles Dance,1335081174 +114930,33725,Michael Dowse,1299626654 +114930,33750,Luis Mandoki,1238954181 +114930,33760,John Cromwell,1402203444 +114930,33779,Lawrence Jordan,1365622486 +114930,33781,Mervyn LeRoy,1401137409 +114930,33790,Anthony Kimmins,1413161890 +114930,33794,Christopher Nolan,1239046268 +114930,33794,Cillian Murphy,1312352221 +114930,33794,Ken Watanabe,1293824601 +114930,33815,Mark Rosman,1306102543 +114930,33817,Paul Pavlikovsky,1302002106 +114930,33826,Michael McGowan,1335132588 +114930,33834,George A. Romero,1315405088 +114930,33836,Jason Schwartzman,1296951923 +114930,33836,Nora Ephron,1302040329 +114930,33836,Steve Carell,1302040829 +114930,33838,David LaChapelle,1335131229 +114930,33847,Chris Smith,1327117512 +114930,33880,Miranda July,1335325270 +114930,33893,Álex de la Iglesia,1262784441 +114930,33896,Chan-wook Park,1219831574 +114930,33896,Fruit Chan,1335277131 +114930,33896,Takashi Miike,1257354037 +114930,33903,Hans Weingartner,1258374348 +114930,33905,Robert Wise,1405337485 +114930,33912,Paul Mazursky,1404903891 +114930,33917,Fred Zinnemann,1402176644 +114930,33933,Robert Aldrich,1411931481 +114930,33945,Criterion,1453095863 +114930,33945,Jan Troell,1411209721 +114930,33956,Irving Rapper,1403385313 +114930,33958,Archie Mayo,1407234659 +114930,33966,Henry Winkler,1335051355 +114930,34016,Mario Monicelli,1389012883 +114930,34018,Edward Buzzell,1299627796 +114930,34018,Marx Brothers,1299627396 +114930,34039,Norman Taurog,1369033131 +114930,34048,Steven Spielberg,1299850107 +114930,34051,Gillian Armstrong,1399251261 +114930,34063,Ronald Neame,1413162129 +114930,34072,Luc Jacquet,1295124019 +114930,34111,Brian Flemming,1326614732 +114930,34129,Steve Carr,1239133253 +114930,34138,Andrey Konchalovskiy,1419436239 +114930,34148,Jacques Audiard,1335157080 +114930,34153,Dana Adam Shapiro,1315839134 +114930,34153,Henry Alex Rubin,1315839134 +114930,34155,Ingmar Bergman,1303239816 +114930,34162,David Dobkin,1300397659 +114930,34198,Audrey Tautou,1315401503 +114930,34198,Cédric Klapisch,1255420799 +114930,34214,Criterion,1271536948 +114930,34214,Roberto Rossellini,1271536953 +114930,34229,Howard Hawks,1402197214 +114930,34231,Yun-ho Yang,1380009506 +114930,34246,Cédric Klapisch,1262033823 +114930,34271,Craig Brewer,1335304554 +114930,34312,Alex De Rakoff,1361268999 +114930,34314,Andrew Bujalski,1422963597 +114930,34319,Michael Bay,1323268514 +114930,34323,Rob Zombie,1320765870 +114930,34326,Gus Van Sant,1326209084 +114930,34359,Silvio Narizzano,1335079634 +114930,34369,Ken Russell,1413157398 +114930,34405,Joss Whedon,1272051623 +114930,34411,Gregory Greene,1334909473 +114930,34435,Ramesh Sippy,1314684343 +114930,34437,Jim Jarmusch,1300403472 +114930,34450,Jackie Chan,1420724466 +114930,34466,Sanjay Leela Bhansali,1406371204 +114930,34469,Alfred E. Green,1329441926 +114930,34473,Stuart Heisler,1402649718 +114930,34482,Anthony Asquith,1298992984 +114930,34482,Criterion,1201669018 +114930,34488,Henry Hathaway,1402204107 +114930,34528,Phil Morrison,1335301993 +114930,34542,Werner Herzog,1239080785 +114930,34548,Ermanno Olmi,1307541945 +114930,34552,David Yates,1264039249 +114930,34696,Jean-Pierre Melville,1376314021 +114930,34800,George Bowers,1302802091 +114930,34811,Mads Mikkelsen,1315400110 +114930,34811,Nicolas Winding Refn,1300228902 +114930,35015,Carroll Ballard,1411883589 +114930,35050,Nicholas Ray,1402211504 +114930,35347,John Halas,1335135822 +114930,35347,Joy Batchelor,1335135822 +114930,35636,Dorian Walker,1312343630 +114930,35828,Sanjay Leela Bhansali,1394794814 +114930,35836,Cedric Yarbrough,1292450130 +114930,35836,Gerry Bednob,1293736232 +114930,35836,Jonah Hill,1326337637 +114930,35836,Judd Apatow,1292450032 +114930,35836,Steve Carell,1302040808 +114930,35853,Michael Powell,1402191116 +114930,35957,Cillian Murphy,1312352234 +114930,35957,Wes Craven,1303239488 +114930,36056,Anthony Mann,1298996871 +114930,36086,Aditya Chopra,1314684327 +114930,36152,Gavin Millar,1414340456 +114930,36264,Henry Koster,1402204753 +114930,36276,Michael Haneke,1238929397 +114930,36363,Georgi Daneliya,1333077634 +114930,36373,Peter Chan,1411208995 +114930,36397,Gary Chapman,1335135486 +114930,36397,Ricky Gervais,1238381752 +114930,36436,Lucrecia Martel,1421654106 +114930,36517,Fernando Meirelles,1333682333 +114930,36519,Louis Leterrier,1295743016 +114930,36525,Mark Waters,1308333220 +114930,36527,John Madden,1299360628 +114930,36529,Andrew Niccol,1335408508 +114930,36533,Jeff Wadlow,1329442051 +114930,36535,Liev Schreiber,1335329999 +114930,36537,Mike Mills,1312350600 +114930,36708,Pete Michels,1335332973 +114930,36708,Peter Shin,1302480816 +114930,36850,Jackie Chan,1301668663 +114930,36883,Criterion,1335509916 +114930,36883,Marcel Carné,1335509911 +114930,36902,A. Edward Sutherland,1401178769 +114930,36931,Benny Chan,1420725323 +114930,37058,Michael Powell,1402191124 +114930,37240,Eugene Jarecki,1325894391 +114930,37257,Sergio Corbucci,1394794743 +114930,37269,Tom Gries,1401093085 +114930,37287,Carl Theodor Dreyer,1238924400 +114930,37287,Criterion,1238857436 +114930,37335,King Hu,1448184976 +114930,37375,Sam Wood,1402196089 +114930,37380,Andrzej Bartowiak,1328520739 +114930,37386,Karyn Kusama,1419324154 +114930,37477,Les Mayfield,1323660024 +114930,37495,Gen Sekiguchi,1323687150 +114930,37495,Tadanobu Asano,1263990029 +114930,37495,Vinnie Jones,1298123458 +114930,37545,Werner Herzog,1239080797 +114930,37626,Norman Z. McLeod,1402194480 +114930,37729,Tim Burton,1238806583 +114930,37731,Lexi Alexander,1335325808 +114930,37733,David Cronenberg,1314684562 +114930,37733,Stephen McHattie,1299872587 +114930,37739,Bill Paxton,1295987941 +114930,37741,Bennett Miller,1299963350 +114930,37744,H.C. Potter,1385541719 +114930,37830,Takeshi Nozue,1335328202 +114930,37830,Tetsuya Nomura,1335328202 +114930,37855,Jane Anderson,1328522285 +114930,37857,Dave McKean,1328327620 +114930,37955,Lucile Hadzihalilovic,1331074767 +114930,37976,Criterion,1271537051 +114930,37976,Roberto Rossellini,1271537042 +114930,38004,Josef von Báky,1421148075 +114930,38038,Nick Park,1331179161 +114930,38038,Steve Box,1331179161 +114930,38061,Shane Black,1330130515 +114930,38095,Ji-woon Kim,1272652744 +114930,38159,Krzysztof Kieslowski,1292881502 +114930,38164,Anatole Litvak,1387080801 +114930,38198,Hubert Sauper,1335036716 +114930,38304,Martin Scorsese,1299844266 +114930,38320,Criterion,1453094776 +114930,38320,Jaromil Jires,1413185643 +114930,38376,Giuseppe Tornatore,1273112496 +114930,38384,Preston Sturges,1238861226 +114930,38435,Ira Sachs,1413625964 +114930,38499,Mike Nichols,1300414495 +114930,38538,Jessica Sharzer,1328521965 +114930,38583,Nudity (Topless - Notable),1261612166 +114930,38656,Criterion,1335657428 +114930,38656,Dusan Makavejev,1335657428 +114930,38713,William Keighley,1321656277 +114930,38824,Klaus Härö,1302081403 +114930,38881,Peter Watkins,1417650469 +114930,38884,George Marshall,1403521576 +114930,38886,Noah Baumbach,1238380152 +114930,38994,Julian Fellowes,1420275032 +114930,39183,Ang Lee,1299041612 +114930,39183,Oscar (Best Picture),1299359132 +114930,39191,Daniel B. Gold,1359624617 +114930,39191,Judith Helfand,1359624617 +114930,39244,Dariush Mehrjui,1324560764 +114930,39292,George Clooney,1328390446 +114930,39307,John Gatins,1335133975 +114930,39369,William Wyler,1319416988 +114930,39381,John Hillcoat,1328391009 +114930,39427,Marc Forster,1301448225 +114930,39441,Greg Whiteley,1335035337 +114930,39444,Gore Verbinski,1299626451 +114930,39474,Akira Kurosawa,1268796029 +114930,39474,Criterion,1268797130 +114930,39481,Frank Tashlin,1403521403 +114930,39615,Bille August,1389774371 +114930,39659,Pier Paolo Pasolini,1415557272 +114930,39703,Rowan Woods,1403608258 +114930,39731,Mark Robson,1298992810 +114930,39768,Emir Kusturica,1258598959 +114930,39777,W.S. Van Dyke,1402197945 +114930,39779,Cedric Gibbons,1402198579 +114930,39779,Jack Conway,1402198579 +114930,39779,James C. McKay,1402198579 +114930,39869,Lars von Trier,1300338779 +114930,39886,Rodrigo García,1300230521 +114930,39934,Mark Robson,1298992835 +114930,39941,Criterion,1268710633 +114930,39941,François Truffaut,1268710766 +114930,40148,Guy Ritchie,1300339487 +114930,40278,Sam Mendes,1292270322 +114930,40337,Giddi Dar,1334965920 +114930,40404,Gustavo Loza,1411461203 +114930,40412,Shane Meadows,1302001989 +114930,40414,Christian Carion,1321653886 +114930,40436,Sam Wood,1398761596 +114930,40491,Aki Kaurismäki,1263337964 +114930,40491,Criterion,1273594063 +114930,40494,Mika Kaurismäki,1404904049 +114930,40578,Criterion,1335657453 +114930,40578,Hideo Gosha,1328325529 +114930,40581,Roger Kumble,1239053021 +114930,40583,Stephen Gaghan,1312350583 +114930,40586,Aki Kaurismäki,1263337971 +114930,40591,Aki Kaurismäki,1399775938 +114930,40591,Criterion,1399775942 +114930,40617,Christopher Smith,1430110974 +114930,40629,Joe Wright,1299851802 +114930,40732,Neil Marshall,1321654093 +114930,40738,Criterion,1335657325 +114930,40738,Ingmar Bergman,1335657321 +114930,40752,Takeshi Kitano,1258528382 +114930,40755,Samuel Fuller,1402213676 +114930,40815,Mike Newell,1238923635 +114930,40819,James Mangold,1299852247 +114930,40828,Criterion,1294086259 +114930,40828,Yasujirô Ozu,1297394315 +114930,40833,Criterion,1238857422 +114930,40833,Marco Bellocchio,1292235652 +114930,40870,Jean-Marc Vallée,1312346571 +114930,40898,Roy Rowland,1402206048 +114930,40955,Cillian Murphy,1312352223 +114930,40955,Neil Jordan,1302637225 +114930,40959,Harold Ramis,1324753791 +114930,40988,John Farrow,1315550969 +114930,41058,Criterion,1292220262 +114930,41058,Seijun Suzuki,1292220262 +114930,41094,Pantelis Voulgaris,1401659232 +114930,41136,Walter Hill,1319408650 +114930,41226,Martin Ritt,1297816783 +114930,41285,Woody Allen,1302670483 +114930,41336,Luis Buñuel,1319407468 +114930,41434,Jessica Sanders,1370205728 +114930,41499,King Vidor,1402203592 +114930,41527,Ashraf Barhom,1292829348 +114930,41527,Hany Abu-Assad,1335274394 +114930,41566,Andrew Adamson,1321655679 +114930,41569,Colin Hanks,1295742608 +114930,41569,Peter Jackson,1296947489 +114930,41571,Ken Watanabe,1293824594 +114930,41571,Kôji Yakusho,1296351889 +114930,41571,Rob Marshall,1296351835 +114930,41573,Thomas Bezucha,1310418659 +114930,41585,Henry Hathaway,1319411131 +114930,41602,Carles Bosch,1366176594 +114930,41602,Josep Maria Domènech,1366176594 +114930,41627,Criterion,1238262240 +114930,41627,Masaki Kobayashi,1238262593 +114930,41627,Tatsuya Nakadai,1238262506 +114930,41627,Toshirô Mifune,1238262311 +114930,41688,Guy Maddin,1413188766 +114930,41691,Andrzej Wajda,1263217984 +114930,41691,Criterion,1237023743 +114930,41699,Criterion,1335509066 +114930,41699,Sergei M. Eisenstein,1292284855 +114930,41712,Shane Meadows,1302001980 +114930,41716,Richard Shepard,1298651692 +114930,41721,Sarah Watt,1335048604 +114930,41724,Robert Greenwald,1238925378 +114930,41762,King Vidor,1402203577 +114930,41769,Petter Næss,1326440412 +114930,41815,Takeshi Kitano,1258528425 +114930,41820,Kim Ki-Duk,1453087340 +114930,41824,Kim Ki-Duk,1453087308 +114930,41831,Raoul Walsh,1402192799 +114930,41863,Tommy Lee Jones,1301661385 +114930,41880,Joseph L. Mankiewicz,1402195777 +114930,41889,Charles Walters,1410679082 +114930,41997,Steven Spielberg,1299850099 +114930,42004,Duncan Tucker,1299038722 +114930,42009,Adam Shankman,1301437319 +114930,42011,Dean Parisot,1323268427 +114930,42013,Barry W. Blaustein,1311017782 +114930,42018,Christopher Guest,1297367996 +114930,42018,Stephen Frears,1319412523 +114930,42094,Criterion,1328576223 +114930,42094,Víctor Erice,1265426938 +114930,42150,Mahamat-Saleh Haroun,1425461801 +114930,42163,Jeff Margolis,1323688912 +114930,42176,Karel Kachyna,1389365621 +114930,42197,Niall Johnson,1335277467 +114930,42213,Jack Gold,1422086842 +114930,42217,Criterion,1291419026 +114930,42217,Yasujirô Ozu,1313789863 +114930,42312,George Cukor,1402209942 +114930,42335,Fernando León de Aranoa,1423394678 +114930,42351,Mick Jackson,1301035915 +114930,42422,Makoto Shinkai,1300994291 +114930,42518,Peter Godfrey,1387081956 +114930,42548,Alexander Mackendrick,1417511846 +114930,42550,Charles Frend,1413158347 +114930,42556,George Pal,1411894146 +114930,42559,Kihachi Okamoto,1298056460 +114930,42559,Toshirô Mifune,1333065312 +114930,42584,Ettore Scola,1412530290 +114930,42591,Chris Marker,1413293363 +114930,42632,Chan-wook Park,1219831556 +114930,42677,Wendy Apple,1370205785 +114930,42681,Criterion,1237021808 +114930,42681,Michael Powell,1299745154 +114930,42698,Darrell Roodt,1419536891 +114930,42718,Pierre Morel,1326337961 +114930,42721,Nudity (Topless - Notable),1261610592 +114930,42723,Eli Roth,1297624123 +114930,42725,Jonah Hill,1273711917 +114930,42725,Nicholaus Goossen,1335304135 +114930,42730,James Gartner,1329442147 +114930,42734,Cory Edwards,1301034025 +114930,42734,Todd Edwards,1301034039 +114930,42734,Tony Leech,1301034050 +114930,42783,Sergei Parajanov,1264480472 +114930,42794,Frank Darabont,1326441562 +114930,42886,King Vidor,1402203626 +114930,42900,Criterion,1335500704 +114930,42900,Roman Polanski,1301899565 +114930,42935,Zhang Yimou,1349125573 +114930,42938,François Truffaut,1407717011 +114930,42943,Hugh Hudson,1299364659 +114930,42946,Jackie Chan,1335035779 +114930,42946,Sammo Hung Kam-Bo,1420724720 +114930,42952,George Cukor,1348954751 +114930,42956,Michael Anderson,1407320822 +114930,42958,Mark Levin,1326613846 +114930,42984,Criterion,1302231648 +114930,42984,Jean Renoir,1293183428 +114930,42987,Aisling Walsh,1376453492 +114930,43177,Jonathan Kaplan,1302674071 +114930,43267,Damián Szifrón,1295375996 +114930,43289,Takashi Miike,1402214559 +114930,43333,Deepa Mehta,1314684139 +114930,43351,Allan Arkush,1417517863 +114930,43376,Marc Rothemund,1258373871 +114930,43383,George W. Hill,1402208283 +114930,43383,Ward Wing,1402579432 +114930,43396,Roger Donaldson,1301035751 +114930,43444,Alan Clarke,1308941526 +114930,43460,Michael Winterbottom,1312349193 +114930,43460,Steve Coogan,1312349763 +114930,43482,Frank Capra,1334732221 +114930,43497,Criterion,1319411956 +114930,43497,Eric Rohmer,1319411956 +114930,43518,Charles Chaplin,1292226098 +114930,43518,Richard Schickel,1349378619 +114930,43558,John Whitesell,1301158407 +114930,43631,Victor Saville,1407841939 +114930,43652,Michael Blieden,1296424079 +114930,43652,Patton Oswalt,1295743285 +114930,43652,Zach Galifianakis,1296424429 +114930,43675,Joseph L. Mankiewicz,1414352070 +114930,43679,James Wong,1263354623 +114930,43682,Ronald Neame,1413162136 +114930,43708,Michel Gondry,1335273547 +114930,43710,Mervyn LeRoy,1401137400 +114930,43762,François Truffaut,1407717016 +114930,43813,Edward Dmytryk,1389606156 +114930,43822,Rex Ingram,1402214142 +114930,43828,Ruba Nadda,1322756347 +114930,43832,Andrew Leman,1335053899 +114930,43838,John Carl Buechler,1267815655 +114930,43883,Preston Sturges,1402578472 +114930,43897,Werner Herzog,1238731825 +114930,43899,Jun Ichikawa,1334969224 +114930,43910,Jonathan Demme,1335078632 +114930,43912,Joe Roth,1333064128 +114930,43919,Aaron Seltzer,1335302965 +114930,43921,Wayne Kramer,1335298973 +114930,43934,Howard Hall,1335034777 +114930,43983,Johnnie To,1292223018 +114930,43997,Kirby Dick,1423219444 +114930,44022,Carlos Saldanha,1301666465 +114930,44022,Ray Romano,1293354695 +114930,44073,Criterion,1399773468 +114930,44073,Roberto Rossellini,1399773464 +114930,44100,Michael Gordon,1298997279 +114930,44124,Criterion,1421654131 +114930,44124,Jean-Luc Godard,1415557068 +114930,44153,Ron Fricke,1350159467 +114930,44168,Anthony Mann,1298996893 +114930,44191,James McTeigue,1262034304 +114930,44195,Jason Reitman,1272592489 +114930,44197,Sidney Lumet,1319416043 +114930,44199,Spike Lee,1299558891 +114930,44204,Gavin Hood,1335300290 +114930,44238,Rodman Flender,1335033734 +114930,44397,Alexandre Aja,1282564029 +114930,44421,Martin Scorsese,1334199278 +114930,44421,Michael Henry Wilson,1334199278 +114930,44555,Florian Henckel von Donnersmarck,1335407504 +114930,44568,Miklós Jancsó,1292235560 +114930,44585,Hsiao-Hsien Hou,1450662908 +114930,44587,Criterion,1332814208 +114930,44587,Robert J. Flaherty,1292203830 +114930,44590,Lucio Fulci,1425461506 +114930,44595,Daniel Petrie,1326209624 +114930,44597,Criterion,1258524307 +114930,44597,Seijun Suzuki,1258524243 +114930,44633,Jeff Feuerzeig,1317073888 +114930,44653,Robert Bresson,1304945027 +114930,44655,Robert Bresson,1385944463 +114930,44657,Criterion,1263421776 +114930,44657,Robert Bresson,1304945067 +114930,44665,Paul McGuigan,1330481907 +114930,44674,Werner Herzog,1258594472 +114930,44694,Pedro Almodóvar,1238259597 +114930,44709,Doug Atchison,1335304777 +114930,44717,Guel Arraes,1360751263 +114930,44719,Laís Bodanzky,1395557248 +114930,44761,Rian Johnson,1335340453 +114930,44763,Olle Hellbom,1389012155 +114930,44788,Kirby Dick,1307543562 +114930,44828,James Gunn,1301158146 +114930,44889,Andy Fickman,1301550938 +114930,44929,Neil Armfield,1328740776 +114930,44931,Georg Wilhelm Pabst,1407062977 +114930,44937,Jean-Pierre Dardenne,1306103213 +114930,44937,Luc Dardenne,1306103213 +114930,44947,Criterion,1237021452 +114930,44947,Louis Malle,1239138083 +114930,44972,David Zucker,1299849170 +114930,44974,David Slade,1328390307 +114930,45000,Jean-Luc Godard,1415557059 +114930,45028,Robert Altman,1407239853 +114930,45036,Satyajit Ray,1408087098 +114930,45068,Edward Dmytryk,1405338863 +114930,45074,Steve Williams,1335134121 +114930,45106,Paul Weitz,1302596927 +114930,45134,Marcel Carné,1424758678 +114930,45175,Julian Jarrold,1301550518 +114930,45175,Nick Frost,1301550543 +114930,45179,Stuart Heisler,1402649704 +114930,45186,J.J. Abrams,1351713428 +114930,45192,Fritz Lang,1319417317 +114930,45194,Fritz Lang,1319417278 +114930,45210,Paul Greengrass,1239153795 +114930,45221,Jessica Bendinger,1335135936 +114930,45259,Ramin Bahrani,1423219214 +114930,45335,Lloyd Bacon,1335035484 +114930,45382,David Jacobson,1301161943 +114930,45412,Yôji Yamada,1243497078 +114930,45431,Karey Kirkpatrick,1302040445 +114930,45431,Omid Djalili,1299224763 +114930,45431,Steve Carell,1302040804 +114930,45431,Tim Johnson,1297402734 +114930,45499,Brett Ratner,1296356591 +114930,45499,Vinnie Jones,1298123452 +114930,45501,Peyton Reed,1326613760 +114930,45503,Victor Salva,1332465681 +114930,45506,Michael Cuesta,1335053049 +114930,45517,John Lasseter,1239041499 +114930,45533,Jan Svankmajer,1406887160 +114930,45537,Edwin L. Marin,1397339946 +114930,45550,Fritz Lang,1402205820 +114930,45611,Robert Aldrich,1411931482 +114930,45635,Nudity (Topless - Notable),1329129782 +114930,45658,Gaby Dellal,1299850681 +114930,45664,James Marsh,1302002072 +114930,45666,Jared Hess,1317075597 +114930,45689,Mike Leigh,1415104184 +114930,45691,Peter Watkins,1294452933 +114930,45707,Wallace Worsley,1430117891 +114930,45720,David Frankel,1296350811 +114930,45722,Gore Verbinski,1299626446 +114930,45726,Anthony Russo,1328741497 +114930,45726,Joe Russo,1335322655 +114930,45728,Jason Mewes,1297399062 +114930,45728,Kevin Smith,1296350952 +114930,45730,M. Night Shyamalan,1321657089 +114930,45837,Michael Lindsay-Hogg,1328522324 +114930,45928,Chris Paine,1335303734 +114930,45950,Davis Guggenheim,1302083923 +114930,45952,Victor Fleming,1402202765 +114930,46098,Fatih Akin,1266702127 +114930,46156,Costa-Gavras,1262032019 +114930,46199,Sam Wood,1402196043 +114930,46258,Lloyd Bacon,1318244067 +114930,46258,Michael Curtiz,1299845736 +114930,46318,Roy Del Ruth,1405333903 +114930,46322,Jet Li,1300398354 +114930,46322,Ronny Yu,1263341643 +114930,46347,Jessica Joy Wise,1321657929 +114930,46347,Sam Dunn,1321657929 +114930,46347,Scot McFadyen,1321657929 +114930,46525,Buster Keaton,1402579184 +114930,46525,Edward Sedgwick,1402203358 +114930,46530,Brandon Routh,1293736330 +114930,46530,Bryan Singer,1293735657 +114930,46559,Mat Whitecross,1293916784 +114930,46559,Michael Winterbottom,1312349189 +114930,46572,Stuart Gordon,1270016002 +114930,46578,Jonathan Dayton,1332989679 +114930,46578,Steve Carell,1332989662 +114930,46578,Valerie Faris,1332989679 +114930,46588,Bob Hercules,1361531408 +114930,46588,Cheri Pugh,1361531408 +114930,46640,Rainer Werner Fassbinder,1408917206 +114930,46664,Carol Reed,1299361585 +114930,46664,Criterion,1238262066 +114930,46716,Nicholas Ray,1402213309 +114930,46723,Alejandro González Iñárritu,1299963394 +114930,46723,Kôji Yakusho,1302594381 +114930,46748,Tay Garnett,1402311430 +114930,46803,Criterion,1268630461 +114930,46803,John Ford,1299363088 +114930,46821,John Woo,1300402312 +114930,46839,Hsiao-Hsien Hou,1450662875 +114930,46850,Patrick Creadon,1328390807 +114930,46855,Criterion,1238856946 +114930,46855,Jean-Pierre Melville,1239079953 +114930,46869,Busby Berkeley,1402192266 +114930,46869,Ray Enright,1402192266 +114930,46919,Jim Hanon,1333243840 +114930,46948,Gil Kenan,1319417856 +114930,46961,Tomás Gutiérrez Alea,1297810724 +114930,46967,Woody Allen,1302670375 +114930,46970,Adam McKay,1301034227 +114930,46972,Ricky Gervais,1295601955 +114930,46972,Shawn Levy,1300400596 +114930,46972,Steve Coogan,1312349759 +114930,46974,Oliver Stone,1238378311 +114930,46976,Marc Forster,1301448208 +114930,46979,Tay Garnett,1402311457 +114930,47005,Daniel Mann,1407239586 +114930,47007,William Wyler,1402203801 +114930,47054,William Keighley,1379314197 +114930,47084,Radu Mihaileanu,1293229468 +114930,47092,Ida Lupino,1402578688 +114930,47092,Nicholas Ray,1299915758 +114930,47099,Gabriele Muccino,1256568619 +114930,47122,Betty Thomas,1301548936 +114930,47124,John A. Davis,1323053120 +114930,47146,Roy Del Ruth,1405333947 +114930,47148,Dan Ireland,1302287696 +114930,47150,Cristi Puiu,1335035862 +114930,47152,Carlos Saura,1276458090 +114930,47152,Criterion,1276457738 +114930,47180,Matti Kassila,1386143495 +114930,47196,Joseph Anthony,1410499091 +114930,47200,Brian Taylor,1299960873 +114930,47200,Mark Neveldine,1299960894 +114930,47202,Isabel Coixet,1296879974 +114930,47237,Marc Francis,1349118226 +114930,47237,Nick Francis,1349118226 +114930,47239,John Ford,1402204481 +114930,47239,Stuart Heisler,1402649557 +114930,47248,Mark Hammond,1333067338 +114930,47248,Vinnie Jones,1333067315 +114930,47254,Tony Giglio,1312346360 +114930,47274,Criterion,1237021421 +114930,47274,Louis Malle,1239138071 +114930,47277,Irving Pichel,1402208356 +114930,47287,Orson Welles,1319697386 +114930,47287,Richard Fleischer,1319413182 +114930,47306,Criterion,1237625426 +114930,47306,Emeric Pressburger,1302888061 +114930,47306,Michael Powell,1299745171 +114930,47394,Erik Canuel,1293367716 +114930,47404,Masaaki Yuasa,1333499687 +114930,47423,Ryan Fleck,1301448311 +114930,47446,Emmanuel Carrère,1335050537 +114930,47452,Woo-ping Yuen,1380697841 +114930,47458,Siu-Tung Ching,1416384744 +114930,47460,Hark Tsui,1414739550 +114930,47477,Charles Walters,1410679075 +114930,47484,William Keighley,1402218237 +114930,47491,Anders Thomas Jensen,1297398949 +114930,47491,Mads Mikkelsen,1315400392 +114930,47491,Ulrich Thomsen,1297398824 +114930,47493,Busby Berkeley,1413626812 +114930,47493,Vincente Minnelli,1413626812 +114930,47501,Henry King,1402196865 +114930,47518,Jonah Hill,1326337641 +114930,47518,Steve Pink,1301540091 +114930,47538,Enzo Barboni,1407137956 +114930,47566,Robert Wise,1405337469 +114930,47601,Budd Boetticher,1408920263 +114930,47606,David Butler,1354219054 +114930,47606,Shirley Temple,1354219067 +114930,47610,Neil Burger,1296833315 +114930,47615,Vincent Sherman,1401270999 +114930,47619,Frank Capra,1402205368 +114930,47629,Stephen Frears,1319412593 +114930,47634,Gérard Depardieu,1323684656 +114930,47634,Olivier Marchal,1323685105 +114930,47640,Jay Chandrasekhar,1293366676 +114930,47640,Will Forte,1293357725 +114930,47644,Ericson Core,1335302638 +114930,47665,Lloyd Bacon,1402192458 +114930,47670,Ashraf Barhom,1292829228 +114930,47670,Eran Riklis,1326335432 +114930,47701,Richard Lester,1410677430 +114930,47714,Criterion,1335429032 +114930,47714,David Lean,1335429023 +114930,47719,James Parrott,1389365015 +114930,47719,Oliver Hardy,1389365050 +114930,47719,Stan Laurel,1389365050 +114930,47721,Albert Lamorisse,1293367792 +114930,47721,Criterion,1335653049 +114930,47723,James W. Horne,1402200560 +114930,47723,Oliver Hardy,1402200571 +114930,47723,Stan Laurel,1402200571 +114930,47725,Luc Besson,1207388228 +114930,47728,Criterion,1335506883 +114930,47728,Sidney Gilliat,1335506878 +114930,47736,Alfred J. Goulding,1402200604 +114930,47736,Oliver Hardy,1402200610 +114930,47736,Stan Laurel,1402200610 +114930,47740,John G. Blystone,1399771200 +114930,47740,Oliver Hardy,1399771217 +114930,47740,Stan Laurel,1399771210 +114930,47778,Richard Glatzer,1329002980 +114930,47778,Wash Westmoreland,1329002998 +114930,47793,Jay Duplass,1425461875 +114930,47793,Mark Duplass,1425461875 +114930,47808,Andrew Bujalski,1422963596 +114930,47836,Sydney Pollack,1299360861 +114930,47868,Tage Danielsson,1356910857 +114930,47894,Cillian Murphy,1238801902 +114930,47894,Golden Palm,1244224600 +114930,47894,Ken Loach,1293230135 +114930,47904,Criterion,1290802009 +114930,47904,Luchino Visconti,1290801961 +114930,47918,Henry King,1402196588 +114930,47927,Cecil B. DeMille,1402201196 +114930,47931,Luis Buñuel,1414339489 +114930,47935,Criterion,1335652038 +114930,47935,Stuart Cooper,1335652033 +114930,47956,Henry King,1402196657 +114930,47956,Irving Cummings,1402196657 +114930,47962,Krzysztof Kieslowski,1444551036 +114930,47978,Nudity (Topless - Notable),1261611027 +114930,47999,Heidi Ewing,1314173623 +114930,47999,Rachel Grady,1314173623 +114930,48001,Kim Ki-Duk,1335331122 +114930,48032,Jean Reno,1300400116 +114930,48032,Roberto Benigni,1300399979 +114930,48035,Noel Black,1423730347 +114930,48043,Darren Aronofsky,1302085926 +114930,48043,Stephen McHattie,1299872463 +114930,48057,Cecil B. DeMille,1402202139 +114930,48059,Bill Melendez,1301662194 +114930,48082,Michel Gondry,1295743494 +114930,48084,Anatole Litvak,1351373904 +114930,48123,John Ford,1402204515 +114930,48165,Michael Haneke,1238929415 +114930,48167,Benoît Delépine,1385940655 +114930,48167,Gustave de Kervern,1385940655 +114930,48177,Danny Kaye,1297641712 +114930,48177,H. Bruce Humberstone,1306103284 +114930,48193,Wim Wenders,1302286161 +114930,48239,Mani Ratnam,1334198959 +114930,48262,Eric Steel,1335079756 +114930,48268,Fred Schepisi,1406107481 +114930,48299,Ewald André Dupont,1360750787 +114930,48301,Alexander Korda,1297625740 +114930,48301,Criterion,1335652893 +114930,48304,Mel Gibson,1239156360 +114930,48308,Nancy Savoca,1304576832 +114930,48308,nudity (topless - notable),1331692826 +114930,48326,Steven Zaillian,1335230691 +114930,48342,Hans Canosa,1321656819 +114930,48346,Roy Allen Smith,1365622631 +114930,48385,Larry Charles,1272048801 +114930,48394,Guillermo del Toro,1300339308 +114930,48412,Andrew Davis,1335297361 +114930,48412,Kevin Costner,1335297374 +114930,48414,Anthony Stacchi,1335278185 +114930,48414,Jill Culton,1335278185 +114930,48414,Roger Allers,1299643627 +114930,48458,Tim Whelan,1402201178 +114930,48516,Martin Scorsese,1299844330 +114930,48518,Jonathan Liebesman,1300224686 +114930,48530,Erik Poppe,1419536836 +114930,48575,Criterion,1292279312 +114930,48575,Jules Dassin,1292279312 +114930,48593,Barry Levinson,1299744920 +114930,48598,Douglas McGrath,1301001376 +114930,48626,John Dower,1354786769 +114930,48626,Paul Crowder,1354786769 +114930,48638,Federico Fellini,1299448463 +114930,48647,Chris Marker,1412149095 +114930,48660,Oskar Roehler,1302234483 +114930,48678,Jason Mewes,1273753366 +114930,48678,John Gulager,1300415135 +114930,48696,Todd Field,1335328712 +114930,48698,Amy Berg,1335232038 +114930,48698,Best of Rotten Tomatoes: All Time,1290797685 +114930,48700,Julien Duvivier,1402197793 +114930,48700,W.S. Van Dyke,1402197793 +114930,48711,Alex Kendrick,1331075955 +114930,48738,Kevin Macdonald,1257890610 +114930,48744,John Cameron Mitchell,1272049388 +114930,48774,Alfonso Cuarón,1239067950 +114930,48780,Christopher Nolan,1239046272 +114930,48783,Clint Eastwood,1238952140 +114930,48820,Hans-Christian Schmid,1383909163 +114930,48825,Fedor Bondarchuk,1409298649 +114930,48851,Fritz Lang,1397339889 +114930,48856,Dito Montiel,1295987954 +114930,48872,Géla Babluani,1292827928 +114930,48909,Joseph L. Mankiewicz,1298997605 +114930,48957,Michael Curtiz,1399772057 +114930,48972,Jan Svankmajer,1406887246 +114930,48982,David Bowers,1300400636 +114930,48982,Jean Reno,1300400502 +114930,48982,Sam Fell,1300400618 +114930,48997,Tom Tykwer,1302236054 +114930,49060,Tomomi Mochizuki,1402036519 +114930,49063,Pierre Adidge,1422837292 +114930,49079,Michael Curtiz,1402192605 +114930,49082,Wesley Ruggles,1403603529 +114930,49085,Criterion,1399773354 +114930,49085,Satyajit Ray,1295426580 +114930,49098,Ranald MacDougall,1389612764 +114930,49110,Greg Beeman,1326209438 +114930,49132,Barbara Kopple,1333069069 +114930,49132,Cecilia Peck,1333069089 +114930,49200,Billy Wilder,1302031058 +114930,49220,Christopher Guest,1297367993 +114930,49225,Marshall Curry,1265510285 +114930,49265,Michael Caton-Jones,1299643251 +114930,49272,Mads Mikkelsen,1315400405 +114930,49272,Martin Campbell,1308056901 +114930,49274,George Miller,1299849656 +114930,49276,Bob Odenkirk,1272593840 +114930,49278,Tony Scott,1301034965 +114930,49284,Brad Silberling,1331353239 +114930,49284,Jonah Hill,1326337633 +114930,49286,Nancy Meyers,1335332772 +114930,49291,H. Bruce Humberstone,1401086809 +114930,49312,Marc Evans,1335082053 +114930,49338,Clive Saunders,1386658119 +114930,49355,Criterion,1265509762 +114930,49355,Jean Renoir,1238875886 +114930,49359,Jacques Rivette,1453096086 +114930,49371,George W. Hill,1402208299 +114930,49379,Michael Curtiz,1402192545 +114930,49394,Criterion,1268629419 +114930,49394,Luis Buñuel,1319407471 +114930,49412,W.S. Van Dyke,1298994054 +114930,49422,Michel Hazanavicius,1293224500 +114930,49464,Walter Lang,1406197213 +114930,49513,Criterion,1453096181 +114930,49513,Edward Yang,1263341579 +114930,49524,Catherine Hardwicke,1239149537 +114930,49530,Edward Zwick,1296379034 +114930,49615,Johnnie To,1351109113 +114930,49668,Harold Lloyd,1238262194 +114930,49668,Sam Taylor,1308941574 +114930,49688,Michael Anderson,1299364776 +114930,49691,David Gebroe,1364327051 +114930,49746,James Whale,1402203709 +114930,49752,Jack Conway,1402199733 +114930,49766,Ronald Neame,1413162144 +114930,49769,Jack Garfein,1410166952 +114930,49772,John Curran,1335303922 +114930,49793,McG,1335278405 +114930,49815,Makoto Shinkai,1394175179 +114930,49817,Martin Rosen,1329266970 +114930,49822,Robert De Niro,1321659241 +114930,49856,Denis Dercourt,1335036773 +114930,49872,Dylan Avery,1361268781 +114930,49899,Erwin Wagenhofer,1375562186 +114930,49902,Criterion,1349031962 +114930,49902,Pier Paolo Pasolini,1349031962 +114930,49910,Richard LaGravenese,1335282801 +114930,49917,Spike Lee,1299559203 +114930,49929,Criterion,1399778652 +114930,49929,Rainer Werner Fassbinder,1399778652 +114930,49932,David Lynch,1301903531 +114930,49957,Nicholas Hytner,1328931578 +114930,49961,Richard Eyre,1326441106 +114930,49985,Robert Florey,1402206589 +114930,49994,Bruno Dumont,1402577138 +114930,50005,Zhang Yimou,1403257331 +114930,50011,Jens Lien,1335133255 +114930,50066,Ali Selim,1335126095 +114930,50068,Clint Eastwood,1299644966 +114930,50068,Ken Watanabe,1293824596 +114930,50147,Glen Morgan,1301449961 +114930,50160,Chris Noonan,1335278255 +114930,50162,Luc Besson,1239069065 +114930,50229,Criterion,1399778517 +114930,50229,Jacques Demy,1399778517 +114930,50245,Wim Wenders,1302286199 +114930,50259,Kelly Reichardt,1409132170 +114930,50274,Roger Michell,1302083047 +114930,50349,Allan Dwan,1402311768 +114930,50349,Frank Capra,1402205298 +114930,50349,Roy William Neill,1402311768 +114930,50354,Julien Duvivier,1402200063 +114930,50356,Julien Duvivier,1402200054 +114930,50440,Michael Katleman,1332295073 +114930,50442,Nick Cassavetes,1239003236 +114930,50477,Criterion,1265341099 +114930,50477,Jean Cocteau,1265341108 +114930,50514,Mads Mikkelsen,1315400340 +114930,50514,Susanne Bier,1295252324 +114930,50517,Kim Ki-Duk,1335331125 +114930,50533,Philip Gröning,1422095055 +114930,50541,Heinz Dunkhase,1408015315 +114930,50572,Andrew Wilson,1334534951 +114930,50572,Luke Wilson,1334534951 +114930,50583,Nobuhiro Yamashita,1292225902 +114930,50585,William Dieterle,1402201432 +114930,50594,Criterion,1335500742 +114930,50594,Vera Chytilová,1323688348 +114930,50601,Gabor Csupo,1335324721 +114930,50610,Frank Sebastiano,1376302541 +114930,50615,Charles Burnett,1382945591 +114930,50619,Criterion,1238857293 +114930,50619,Jean Cocteau,1263342242 +114930,50641,Criterion,1292204102 +114930,50641,Nobuhiko Obayashi,1275352153 +114930,50651,Clayton Jacobson,1335078750 +114930,50658,Michael Apted,1302778065 +114930,50685,Adrienne Shelly,1335306084 +114930,50705,Joshua Michael Stern,1334905429 +114930,50740,Paul Almond,1333077566 +114930,50742,Michael Apted,1292231604 +114930,50754,Yasujirô Ozu,1421655568 +114930,50794,Joe Carnahan,1238880992 +114930,50800,Danny Pang,1318239556 +114930,50800,Oxide Pang Chun,1318239556 +114930,50842,Lars von Trier,1300338714 +114930,50851,Billy Corben,1334520987 +114930,50872,Brad Bird,1297966260 +114930,50872,Patton Oswalt,1332295616 +114930,50886,Laurence Malkin,1302675706 +114930,50898,Criterion,1399778449 +114930,50898,Jacques Demy,1399778444 +114930,50909,Fred Wolf,1301162022 +114930,50944,Wilson Yip,1334532101 +114930,50949,Alberto Lattuada,1299640974 +114930,50949,Criterion,1299640974 +114930,51007,Rachid Bouchareb,1299851561 +114930,51037,Simon Brand,1325939059 +114930,51060,Criterion,1335654027 +114930,51060,Kenji Mizoguchi,1335654024 +114930,51063,Mike Clattenburg,1335051268 +114930,51077,Mark Steven Johnson,1302000037 +114930,51080,Billy Ray,1335329000 +114930,51086,Nudity (Topless - Notable),1261612369 +114930,51088,Carlos Alazraqui,1293353167 +114930,51088,Cedric Yarbrough,1293368444 +114930,51088,Joe Lo Truglio,1293348907 +114930,51088,Michael Ian Black,1293366537 +114930,51088,Patton Oswalt,1295743281 +114930,51088,Robert Ben Garant,1335275454 +114930,51127,Matthew Galkin,1335050240 +114930,51127,Steven Cantor,1272645043 +114930,51167,Çagan Irmak,1392283362 +114930,51209,Criterion,1292204561 +114930,51209,Seijun Suzuki,1258524253 +114930,51246,Criterion,1335653519 +114930,51246,Francesco Rosi,1335653513 +114930,51249,Criterion,1343934415 +114930,51249,Robert Day,1343934415 +114930,51255,Edgar Wright,1299961761 +114930,51255,Nick Frost,1301550477 +114930,51255,Simon Pegg,1296357468 +114930,51255,Steve Coogan,1312349757 +114930,51277,Chia-Liang Liu,1292225764 +114930,51287,Karl Freund,1326440465 +114930,51302,Nicholas Ray,1402213347 +114930,51312,Paolo Sorrentino,1258374800 +114930,51357,Chris Gerolmo,1328522966 +114930,51380,Criterion,1349031979 +114930,51380,Pier Paolo Pasolini,1349031989 +114930,51455,Christopher Dillon Quinn,1343371870 +114930,51455,Tommy Walker,1343371870 +114930,51471,Michael Apted,1302778109 +114930,51486,Michele Placido,1422835337 +114930,51520,Christopher Leitch,1335039076 +114930,51528,Bernardo Bertolucci,1276171733 +114930,51528,Criterion,1299873656 +114930,51540,David Fincher,1302085853 +114930,51559,Mikko Niskanen,1334531343 +114930,51573,Alexander Hammid,1328526313 +114930,51573,Maya Deren,1328526313 +114930,51596,Aleksey Fedorchenko,1375564204 +114930,51638,William Wyler,1402203820 +114930,51660,Michael O. Sajbel,1335125821 +114930,51662,Stephen McHattie,1299873399 +114930,51662,Zack Snyder,1301434521 +114930,51678,Joseph L. Mankiewicz,1298997612 +114930,51694,Tom Vaughan,1329043817 +114930,51705,Audrey Tautou,1315401511 +114930,51705,Pierre Salvadori,1239080185 +114930,51709,Joon-ho Bong,1292177175 +114930,51773,Elia Kazan,1427818985 +114930,51820,Henry Koster,1402204724 +114930,51857,Tony Richardson,1408920146 +114930,51884,Mira Nair,1302670690 +114930,51891,Criterion,1349727863 +114930,51891,Masahiro Shinoda,1349727863 +114930,51894,Criterion,1292283261 +114930,51894,Josef von Sternberg,1292283180 +114930,51911,Criterion,1265382365 +114930,51911,Sidney Lumet,1319416134 +114930,51917,Michael J. Bassett,1268148080 +114930,51927,James Wan,1302229348 +114930,51931,Mike Binder,1301035202 +114930,51935,Antoine Fuqua,1299963017 +114930,51937,Martin Weisz,1312346340 +114930,51991,Andrei Kravchuk,1344197077 +114930,52033,Anthony Mann,1410678917 +114930,52042,Paul Verhoeven,1302283796 +114930,52078,Yôji Yamada,1382945989 +114930,52101,Akira Kurosawa,1268796032 +114930,52101,Takashi Shimura,1268796251 +114930,52101,Toshirô Mifune,1268796251 +114930,52104,Mohsen Makhmalbaf,1292232271 +114930,52106,Mohsen Makhmalbaf,1417225550 +114930,52153,Danny Kaye,1297641707 +114930,52153,Melville Shavelson,1316502804 +114930,52170,Nae Caranfil,1292235637 +114930,52173,Charles Vidor,1405334134 +114930,52199,Béla Tarr,1412838939 +114930,52202,John Farrow,1402198676 +114930,52202,Richard Fleischer,1402198676 +114930,52237,Douglas Sirk,1401092002 +114930,52241,Scott Frank,1329164617 +114930,52245,Josh Gordon,1300337419 +114930,52245,Will Speck,1300337419 +114930,52281,Edgar Wright,1299961758 +114930,52281,Eli Roth,1297624120 +114930,52281,Quentin Tarantino,1297623860 +114930,52281,Rob Zombie,1299961789 +114930,52281,Robert Rodriguez,1299961970 +114930,52283,Stephen Hopkins,1299850850 +114930,52287,Harland Williams,1301667168 +114930,52287,Stephen J. Anderson,1301666405 +114930,52319,Enzo G. Castellari,1335300299 +114930,52326,John Cromwell,1375561491 +114930,52328,Cillian Murphy,1312352236 +114930,52328,Danny Boyle,1296352298 +114930,52328,Hiroyuki Sanada,1296351177 +114930,52378,Joseph L. Mankiewicz,1402195796 +114930,52413,Theodoros Angelopoulos,1334905300 +114930,52424,Dino Risi,1299744698 +114930,52435,Ben Washam,1303417368 +114930,52435,Chuck Jones,1264235325 +114930,52448,Milos Forman,1269198073 +114930,52458,D.J. Caruso,1300223228 +114930,52495,Ulu Grosbard,1327115514 +114930,52528,Luis Buñuel,1319407469 +114930,52570,Emile de Antonio,1350380542 +114930,52579,Gérard Depardieu,1323684782 +114930,52579,Olivier Dahan,1239081361 +114930,52583,Ed Stone,1423446792 +114930,52604,Gregory Hoblit,1301448380 +114930,52606,David Schwimmer,1297400783 +114930,52606,Jean-Baptiste Andrea,1297402590 +114930,52606,Simon Pegg,1297400746 +114930,52617,Sang-soo Hong,1403606123 +114930,52644,Nimród Antal,1259902412 +114930,52666,Michael Haneke,1238929381 +114930,52694,Steve Bendelack,1332887760 +114930,52712,David S. Goyer,1238973716 +114930,52722,Sam Raimi,1301035620 +114930,52742,Anthony Mann,1298996848 +114930,52742,Criterion,1274581103 +114930,52767,Michael Apted,1302778073 +114930,52784,Rob Stewart,1328524660 +114930,52813,Criterion,1292279343 +114930,52813,Jules Dassin,1271461682 +114930,52885,Satoshi Kon,1335308159 +114930,52922,Samuel Fuller,1402213670 +114930,52927,Apichatpong Weerasethakul,1292272801 +114930,52929,Andrea Arnold,1300227456 +114930,52942,Samira Makhmalbaf,1294254100 +114930,52952,Shane Meadows,1302001961 +114930,52956,Tung-Shing Yee,1356606423 +114930,52967,Sarah Polley,1329446283 +114930,52973,Bill Hader,1297398492 +114930,52973,Craig Robinson,1301539890 +114930,52973,Harold Ramis,1293923535 +114930,52973,Jason Segel,1296947666 +114930,52973,Jonah Hill,1326337623 +114930,52973,Judd Apatow,1296351651 +114930,52973,Ken Jeong,1297398598 +114930,52973,Martin Starr,1296351465 +114930,52973,Steve Carell,1302040799 +114930,52995,Sammo Hung Kam-Bo,1367500255 +114930,53000,Juan Carlos Fresnadillo,1324562228 +114930,53022,Sammo Hung Kam-Bo,1420724790 +114930,53024,Stanley Nelson,1335156596 +114930,53038,Victor Fleming,1299363867 +114930,53052,Criterion,1325938108 +114930,53052,Kon Ichikawa,1325938108 +114930,53121,Chris Miller,1302800926 +114930,53121,Raman Hui,1301549863 +114930,53123,John Carney,1312351918 +114930,53125,Gore Verbinski,1299626444 +114930,53127,Nudity (Topless - Notable),1261609078 +114930,53129,Bruce A. Evans,1301035335 +114930,53129,Kevin Costner,1301036390 +114930,53161,Chan-wook Park,1219831545 +114930,53189,Jemaine Clement,1293366080 +114930,53189,Taika Cohen,1329164797 +114930,53226,Mario Monicelli,1334020854 +114930,53280,Nicholas Mastandrea,1334732234 +114930,53282,Julia Loktev,1325893292 +114930,53318,Sean Ellis,1335303503 +114930,53322,Steven Soderbergh,1238950692 +114930,53349,Peter Djigirr,1405683542 +114930,53349,Rolf de Heer,1405683542 +114930,53355,Leander Haußmann,1323687875 +114930,53406,Isao Yukisada,1414218582 +114930,53435,Eli Roth,1297624124 +114930,53443,Mitchell Leisen,1386404168 +114930,53447,Gus Van Sant,1238309842 +114930,53460,Ash Brannon,1335298463 +114930,53460,Chris Buck,1316715630 +114930,53468,Andrew Currie,1335277920 +114930,53519,Quentin Tarantino,1297623862 +114930,53550,Werner Herzog,1239080774 +114930,53554,Shirley Temple,1298119530 +114930,53554,Walter Lang,1298119738 +114930,53569,Michael Traeger,1319410327 +114930,53574,Jake Kasdan,1296351586 +114930,53578,Francis Veber,1300399721 +114930,53582,Michael Curtiz,1402192592 +114930,53592,Chris Kraus,1321654387 +114930,53737,Anatole Litvak,1402205184 +114930,53769,Alex Holdridge,1335078561 +114930,53771,Harry Harris,1375560303 +114930,53788,Johnnie To,1292223020 +114930,53827,Daniel Petrie,1326209619 +114930,53833,Jim McBride,1334107143 +114930,53835,Criterion,1399773663 +114930,53835,Roberto Rossellini,1399773660 +114930,53841,Danny Kaye,1297641709 +114930,53841,Melvin Frank,1316502685 +114930,53841,Norman Panama,1316502685 +114930,53880,Criterion,1335651512 +114930,53880,Robert Downey Sr.,1335651505 +114930,53883,Adam Curtis,1302238131 +114930,53885,Anne Sundberg,1368964431 +114930,53885,Ricki Stern,1368964431 +114930,53887,Lindsay Anderson,1299845969 +114930,53894,Michael Moore,1239085923 +114930,53916,Vincente Minnelli,1413626538 +114930,53919,James Whale,1402203705 +114930,53921,Michael Winterbottom,1312349194 +114930,53953,Mikael Håfström,1297810743 +114930,53956,Frank Oz,1302035114 +114930,53972,Len Wiseman,1326338243 +114930,53974,Ken Kwapis,1302287772 +114930,53993,Steve Carell,1302040844 +114930,53993,Tom Shadyac,1238968616 +114930,54001,David Yates,1302641511 +114930,54004,Dennis Dugan,1300230379 +114930,54049,Phillip Borsos,1332297596 +114930,54094,Jeremy Brock,1330130653 +114930,54116,Mark Fergus,1301436850 +114930,54121,Delmer Daves,1405332513 +114930,54176,Mervyn LeRoy,1400449904 +114930,54185,Jennifer Baichwal,1293232871 +114930,54190,Julie Taymor,1238971628 +114930,54196,Criterion,1237329323 +114930,54196,Guy Maddin,1292277073 +114930,54229,Jimmy T. Murakami,1329266497 +114930,54239,Howard Hawks,1399772154 +114930,54241,Henry Hathaway,1402204143 +114930,54248,David Hewlett,1432625034 +114930,54256,Akiva Schaffer,1335279520 +114930,54256,Andy Samberg,1293358197 +114930,54256,Bill Hader,1297398516 +114930,54256,Danny McBride,1300336881 +114930,54259,Matthew Vaughn,1307543159 +114930,54259,Ricky Gervais,1238381722 +114930,54262,George Pollock,1405329400 +114930,54272,David Silverman,1328394276 +114930,54276,Scott Hicks,1300415493 +114930,54281,Jon Poll,1301161982 +114930,54286,Paul Greengrass,1302002231 +114930,54318,Nagisa Ôshima,1430118187 +114930,54328,Patrice Leconte,1346856073 +114930,54331,John Dahl,1300414883 +114930,54372,Guillaume Canet,1302029937 +114930,54501,Alf Sjöberg,1315551609 +114930,54501,Criterion,1315551609 +114930,54503,Bill Hader,1297398507 +114930,54503,Danny McBride,1300336886 +114930,54503,Greg Mottola,1296351601 +114930,54503,Joe Lo Truglio,1293348902 +114930,54503,Jonah Hill,1326337659 +114930,54503,Martin Starr,1293350071 +114930,54503,Michael Cera,1295431402 +114930,54513,Kasi Lemmons,1326617135 +114930,54536,David Arquette,1382512117 +114930,54542,Sam Wood,1402196053 +114930,54605,Mario Bava,1402210670 +114930,54612,Rod Lurie,1297402431 +114930,54648,Brett Ratner,1296356580 +114930,54648,Hiroyuki Sanada,1296351173 +114930,54691,Pascale Ferran,1420178825 +114930,54732,Patton Oswalt,1296424124 +114930,54732,Robert Ben Garant,1335279482 +114930,54736,Ashraf Barhom,1292829976 +114930,54736,Peter Berg,1292270252 +114930,54745,Jeffrey Blitz,1329164739 +114930,54758,Alex Jones,1411397499 +114930,54787,James Wan,1302229357 +114930,54796,Julie Delpy,1327649073 +114930,54833,John Boulting,1300335892 +114930,54872,Enzo G. Castellari,1334199485 +114930,54878,Sergio Corbucci,1414218403 +114930,54881,Seth Gordon,1335328744 +114930,54885,Steven Schachter,1370095017 +114930,54910,Scott Glosserman,1335053998 +114930,54922,Clyde Geronimi,1402209364 +114930,54922,H.C. Potter,1402209364 +114930,54922,Jack Kinney,1402209364 +114930,54922,James Algar,1402209364 +114930,54934,Bill Hader,1297398512 +114930,54934,Bob Odenkirk,1301548627 +114930,54934,Will Forte,1293357728 +114930,54986,Marcello Fondato,1425453486 +114930,54995,Robert Rodriguez,1299961968 +114930,54997,James Mangold,1299852242 +114930,54999,Michael Davis,1327647535 +114930,54999,Stephen McHattie,1299873437 +114930,55020,David Wain,1326613668 +114930,55020,Joe Lo Truglio,1293348909 +114930,55020,Michael Ian Black,1293366536 +114930,55031,J.M. Kenny,1269615463 +114930,55031,Jason Mewes,1269615460 +114930,55031,Kevin Smith,1269615460 +114930,55036,Robert Harmon,1408698595 +114930,55040,Criterion,1453095790 +114930,55040,Giuseppe De Santis,1453095796 +114930,55052,Joe Wright,1299851796 +114930,55063,Criterion,1421654013 +114930,55063,Guy Maddin,1292277076 +114930,55067,Hans-Christian Schmid,1297621038 +114930,55069,Cristian Mungiu,1292221679 +114930,55071,Charles Ferguson,1302085875 +114930,55078,John Schlesinger,1302888169 +114930,55080,Neil Jordan,1302637184 +114930,55094,Paul Haggis,1328523551 +114930,55098,Rakesh Omprakash Mehra,1328526888 +114930,55100,Amy Heckerling,1301034119 +114930,55106,Criterion,1335500977 +114930,55106,Ernst Lubitsch,1335500969 +114930,55116,Richard Shepard,1298651694 +114930,55118,David Cronenberg,1238149133 +114930,55156,Henriette Mantel,1335041390 +114930,55156,Steve Skrovan,1335041390 +114930,55159,Criterion,1268147255 +114930,55159,Shôhei Imamura,1315398277 +114930,55167,Michael Arias,1335132280 +114930,55176,David Sington,1255420444 +114930,55205,Steve Buscemi,1326616594 +114930,55223,Alain Resnais,1413293950 +114930,55241,Craig Gillespie,1301448391 +114930,55247,Sean Penn,1238972328 +114930,55253,Ang Lee,1300396927 +114930,55261,Danny McBride,1300336895 +114930,55261,Farrelly Brothers,1299915122 +114930,55267,Peter Hedges,1302040269 +114930,55267,Steve Carell,1302040816 +114930,55269,Criterion,1335500774 +114930,55269,Jason Schwartzman,1238136485 +114930,55269,Wes Anderson,1296952058 +114930,55272,James Gray,1327116389 +114930,55274,Rhys Ifans,1302641791 +114930,55274,Shekhar Kapur,1302641325 +114930,55276,Tony Gilroy,1323266132 +114930,55280,Craig Gillespie,1301448389 +114930,55282,David Slade,1328390309 +114930,55284,Gavin Hood,1335273210 +114930,55288,Terry George,1301904457 +114930,55290,Ben Affleck,1326616893 +114930,55360,Nuri Bilge Ceylan,1385941139 +114930,55363,Andrew Dominik,1326612902 +114930,55369,Criterion,1360319742 +114930,55369,Edgar Morin,1360319729 +114930,55369,Jean Rouch,1360319729 +114930,55373,Michael Curtiz,1402192557 +114930,55389,Seth Holt,1395557171 +114930,55417,Sam Garbarski,1314407555 +114930,55442,Marjane Satrapi,1265341423 +114930,55442,Vincent Paronnaud,1265341423 +114930,55444,Anton Corbijn,1312320756 +114930,55451,Robin Swicord,1324753233 +114930,55460,Louis Malle,1390317145 +114930,55469,Takashi Miike,1402214618 +114930,55489,Claude Chabrol,1414218878 +114930,55492,Larry Fessenden,1332816619 +114930,55555,Fatih Akin,1263313004 +114930,55620,Daniel G. Karslake,1335049954 +114930,55626,Shin'ya Tsukamoto,1405763281 +114930,55652,Alan Clarke,1308941515 +114930,55659,Chia-Liang Liu,1411778297 +114930,55671,Michael Curtiz,1402192649 +114930,55681,Jeffrey James Varab,1387366491 +114930,55681,Peter Madsen,1387366491 +114930,55687,Amir Bar-Lev,1292272890 +114930,55705,Chang-dong Lee,1335653871 +114930,55705,Criterion,1335653877 +114930,55721,José Padilha,1303417981 +114930,55726,Cao Hamburger,1297625827 +114930,55729,Mike Cahill,1314085752 +114930,55732,Menno Meyjes,1329267325 +114930,55757,Joan Micklin Silver,1411882440 +114930,55765,Ridley Scott,1319413756 +114930,55768,Simon J. Smith,1335304472 +114930,55768,Steve Hickner,1335304472 +114930,55805,Sidney Lumet,1319416037 +114930,55814,Julian Schnabel,1301899800 +114930,55820,Coen Brothers,1238717688 +114930,55830,Michel Gondry,1295743490 +114930,55851,Dan Klores,1334965167 +114930,55851,Fisher Stevens,1334965167 +114930,55872,Kirsten Sheridan,1312351950 +114930,55895,William Wyler,1319417007 +114930,55901,Best of Rotten Tomatoes: All Time,1290797716 +114930,55901,Roy Andersson,1302032875 +114930,55908,Richard Schenkman,1292922118 +114930,55955,David Dobkin,1300397662 +114930,55995,Robert Zemeckis,1238975464 +114930,56001,Mike Newell,1238923677 +114930,56003,Richard Kelly,1302596809 +114930,56009,Criterion,1400055260 +114930,56009,Rainer Werner Fassbinder,1400055286 +114930,56012,J.M. Kenny,1270015030 +114930,56012,Jason Mewes,1270015027 +114930,56012,Kevin Smith,1270015027 +114930,56015,Phil Karlson,1328525119 +114930,56022,Bruce Pittman,1409992958 +114930,56060,Jirí Menzel,1303970074 +114930,56079,Gregg Araki,1333244962 +114930,56093,Nikita Mikhalkov,1350077099 +114930,56095,Lucía Puenzo,1265119220 +114930,56098,Criterion,1299259535 +114930,56098,Samuel Fuller,1299259535 +114930,56102,Alex Jones,1389364951 +114930,56141,Julie Gavras,1335034242 +114930,56145,Frank Darabont,1238949352 +114930,56152,Kevin Lima,1323684913 +114930,56165,Franck Khalfoun,1333068076 +114930,56171,Chris Weitz,1302805243 +114930,56174,Francis Lawrence,1267818651 +114930,56251,Dwayne Carey-Hill,1326441254 +114930,56253,Criterion,1263315967 +114930,56253,William Greaves,1328742778 +114930,56274,Noah Baumbach,1302777836 +114930,56286,David Cross,1301552236 +114930,56286,Todd Haynes,1301549755 +114930,56313,Henry Hathaway,1397340242 +114930,56333,Tamara Jenkins,1335299850 +114930,56339,Juan Antonio Bayona,1326441379 +114930,56350,Alexander Korda,1297625736 +114930,56350,Criterion,1297625686 +114930,56367,Jason Reitman,1295431594 +114930,56367,Michael Cera,1239053563 +114930,56370,Bille August,1302080129 +114930,56372,Criterion,1291419043 +114930,56372,Yasujirô Ozu,1313789877 +114930,56389,Wong Kar-wai,1296416986 +114930,56432,Jacques Deray,1424758519 +114930,56479,Fenton Bailey,1420373156 +114930,56479,Randy Barbato,1420373156 +114930,56490,Tom Thurman,1406197809 +114930,56508,Andrew Wagner,1335050370 +114930,56561,Rick Ray,1402038388 +114930,56563,Gary Hustwit,1323687302 +114930,56580,Christopher Martin,1381728579 +114930,56580,John Pilger,1381728579 +114930,56602,Edward A. Blatt,1372750948 +114930,56607,Marc Forster,1301448203 +114930,56626,Allan Dwan,1402205440 +114930,56651,Criterion,1292223286 +114930,56651,Pietro Germi,1292223274 +114930,56671,Martin Hynes,1329164859 +114930,56715,Goran Dukic,1335304524 +114930,56719,Fredi M. Murer,1334969240 +114930,56744,Tom Hooper,1300224023 +114930,56757,Tim Burton,1238806626 +114930,56782,Paul Thomas Anderson,1302778638 +114930,56786,Criterion,1335658619 +114930,56786,Dusan Makavejev,1335658619 +114930,56788,Mike Nichols,1300414463 +114930,56801,Colin Strause,1326615060 +114930,56801,Greg Strause,1326615096 +114930,56805,Craig Robinson,1301539898 +114930,56805,Harold Ramis,1293923548 +114930,56805,Jake Kasdan,1296351587 +114930,56805,Jason Schwartzman,1296951914 +114930,56805,Jonah Hill,1326337682 +114930,56805,Martin Starr,1296351459 +114930,56848,Russell Mulcahy,1332888152 +114930,56869,Heitor Dhalia,1395557292 +114930,56885,Denzel Washington,1328394784 +114930,56908,Justin Theroux,1302596741 +114930,56915,Jay Russell,1323659744 +114930,56921,Félix Enríquez Alcalá,1328521366 +114930,56931,Johnnie To,1405338433 +114930,56941,Richard LaGravenese,1335308326 +114930,56949,Anne Fletcher,1324562655 +114930,56956,Criterion,1349728644 +114930,56956,James Ivory,1349728644 +114930,57023,Isabel Coixet,1420178054 +114930,57038,Luiz Fernando Carvalho,1399012143 +114930,57069,Criterion,1291418879 +114930,57069,Yasujirô Ozu,1313789842 +114930,57147,Woody Allen,1302670275 +114930,57183,Aamir Khan,1334198438 +114930,57209,Oldrich Lipský,1352313190 +114930,57243,Eran Kolirin,1335270984 +114930,57274,Jaume Balagueró,1302594096 +114930,57274,Paco Plaza,1302594071 +114930,57357,Best of Rotten Tomatoes: All Time,1290797973 +114930,57357,Jorge Gaggero,1334199525 +114930,57368,Matt Reeves,1286179580 +114930,57418,Paul Newman,1440386541 +114930,57421,Adam Green,1301999634 +114930,57453,Diane Crespo,1334905565 +114930,57453,Stefan C. Schaefer,1334905565 +114930,57464,Frank A. Cappello,1334361017 +114930,57478,Herbert Brenon,1422262271 +114930,57480,John Ford,1402204492 +114930,57484,John Ford,1402204338 +114930,57502,Tatsuo Sato,1265510473 +114930,57504,Mamoru Hosoda,1330481992 +114930,57520,Eric Valette,1335082582 +114930,57522,David E. Talbert,1334908837 +114930,57526,Colin Hanks,1321656034 +114930,57526,Gregory Hoblit,1321656030 +114930,57543,Tomek Baginski,1323688202 +114930,57550,Wim Wenders,1302286166 +114930,57640,Guillermo del Toro,1300339311 +114930,57648,Basil Dearden,1402649417 +114930,57648,Robert Day,1402212498 +114930,57669,Martin McDonagh,1302778491 +114930,57690,Michael Anderson,1407320810 +114930,57692,Philippe de Broca,1423551670 +114930,57695,Criterion,1335430740 +114930,57695,Lodge Kerrigan,1335430727 +114930,57706,Criterion,1276104211 +114930,57706,Maurice Pialat,1276104125 +114930,57709,Roy Boulting,1421405873 +114930,57772,Criterion,1335658597 +114930,57772,Rainer Werner Fassbinder,1335658592 +114930,57792,Nadine Labaki,1266301678 +114930,57845,Julien Temple,1301002600 +114930,57854,Rowland V. Lee,1307542307 +114930,57868,John Ford,1402204550 +114930,57910,Mitchell Lichtenstein,1324751757 +114930,57942,Takashi Miike,1402214551 +114930,57960,Edmund Goulding,1402206131 +114930,57972,Jerry Rothwell,1297394450 +114930,57972,Louise Osmond,1297394450 +114930,57980,Bård Breien,1297394361 +114930,57991,Criterion,1335508842 +114930,57991,David Lean,1335508827 +114930,57991,Noel Coward,1335508827 +114930,57996,Michael Kang,1362735948 +114930,58003,Henning Carlsen,1420972377 +114930,58029,Ken Loach,1406283707 +114930,58047,Adam Brooks,1326441465 +114930,58059,Akira Kurosawa,1268796006 +114930,58059,Criterion,1268796833 +114930,58059,Takashi Shimura,1268796152 +114930,58059,Toshirô Mifune,1268796152 +114930,58061,John Ford,1402204414 +114930,58103,Pete Travis,1327117034 +114930,58105,Andrew McCarthy,1315404658 +114930,58105,Mark Waters,1308333218 +114930,58136,Craig Zobel,1422963532 +114930,58156,Kent Alterman,1301901304 +114930,58162,David Schwimmer,1307542509 +114930,58162,Simon Pegg,1296357460 +114930,58174,Isao Yukisada,1414218573 +114930,58185,Weijun Chen,1334521794 +114930,58191,Alex Gibney,1255420417 +114930,58191,Best of Rotten Tomatoes: All Time,1290798429 +114930,58207,Robert Sarkies,1349030751 +114930,58223,Marcelo Piñeyro,1323689089 +114930,58295,Roger Donaldson,1301035720 +114930,58299,Jimmy Hayward,1302481354 +114930,58299,Steve Carell,1302481360 +114930,58299,Steve Martino,1302481354 +114930,58303,Stefan Ruzowitzky,1258374559 +114930,58306,Sergey Bodrov,1419966997 +114930,58309,Andrea Nix,1334884432 +114930,58309,Sean Fine,1334884432 +114930,58332,George A. Romero,1315405052 +114930,58332,Simon Pegg,1301550449 +114930,58334,David Mackenzie,1302777628 +114930,58347,Mark Palansky,1302038256 +114930,58347,Nick Frost,1331352476 +114930,58351,Paulo Morelli,1265337719 +114930,58365,Brett Morgen,1423219479 +114930,58376,Peter Joseph,1297620729 +114930,58379,Kresten Vestbjerg Andersen,1292282597 +114930,58379,Stefan Fjeldmark,1292282597 +114930,58379,Thorbjørn Christoffersen,1292282615 +114930,58404,Dave Bullock,1387704314 +114930,58425,Dean DeBlois,1300339446 +114930,58432,Barry Levinson,1299744919 +114930,58439,Criterion,1319407930 +114930,58439,Michael Ritchie,1319407930 +114930,58490,Bharat Nalluri,1302777893 +114930,58492,David Gordon Green,1300336829 +114930,58509,H. Bruce Humberstone,1387083954 +114930,58520,Criterion,1335511695 +114930,58520,Gus Van Sant,1335511699 +114930,58554,Ilmar Raag,1328522614 +114930,58559,Christopher Nolan,1239046261 +114930,58559,Cillian Murphy,1312352216 +114930,58576,Criterion,1265383370 +114930,58576,Jean-Luc Godard,1301002049 +114930,58578,Michael Hoffman,1413444157 +114930,58598,Simon Wincer,1403086606 +114930,58610,Doug Block,1403521830 +114930,58632,Barbet Schroeder,1428887984 +114930,58649,Abel Gance,1421311523 +114930,58652,Stephen Chow,1314400399 +114930,58706,Patricia Riggen,1324753093 +114930,58740,Criterion,1299360215 +114930,58740,Ernst Lubitsch,1299360215 +114930,58774,Andrzej Wajda,1408956726 +114930,58803,Robert Luketic,1335341026 +114930,58812,Ettore Scola,1412530228 +114930,58842,Xiaogang Feng,1354040235 +114930,58874,Criterion,1399773225 +114930,58874,Frantisek Vlácil,1293183886 +114930,58879,Martin Scorsese,1337572220 +114930,58889,Abby Epstein,1323689112 +114930,58904,Wayne Wang,1410938145 +114930,58939,Samuel Benchetrit,1353398832 +114930,58975,Carter Smith,1329164871 +114930,58992,Grant Gee,1321654435 +114930,58998,Bill Hader,1297398500 +114930,58998,Jason Segel,1296947659 +114930,58998,Jonah Hill,1326337646 +114930,58998,Nicholas Stoller,1316715165 +114930,59000,Daniel Waters,1334968974 +114930,59000,Patton Oswalt,1295743279 +114930,59016,David Ayer,1326617191 +114930,59018,Thomas McCarthy,1302231388 +114930,59022,Hayden Schlossberg,1334019970 +114930,59022,Jon Hurwitz,1334019961 +114930,59026,Jan Kounen,1297965848 +114930,59118,Mike Leigh,1238966181 +114930,59126,Larry Charles,1272049049 +114930,59136,Arunas Matelis,1375560747 +114930,59141,Garth Jennings,1335279109 +114930,59143,Michael Blieden,1272644225 +114930,59178,George B. Seitz,1402198247 +114930,59178,James C. McKay,1402198247 +114930,59178,John Farrow,1402198247 +114930,59178,Richard Thorpe,1402198247 +114930,59178,William A. Wellman,1402198247 +114930,59180,Richard Thorpe,1402198290 +114930,59182,Richard Thorpe,1402198304 +114930,59184,Richard Thorpe,1402198298 +114930,59188,Elia Kazan,1427819080 +114930,59220,John Jeffcoat,1335132831 +114930,59258,Michael McCullers,1335287733 +114930,59258,Will Forte,1293357734 +114930,59315,Jon Favreau,1295592728 +114930,59336,David Mamet,1327649625 +114930,59369,Pierre Morel,1326337960 +114930,59382,Hsiao-Hsien Hou,1450662866 +114930,59387,Tarsem Singh,1320867284 +114930,59392,Robert C. Cooper,1335270507 +114930,59418,Tommy O'Haver,1326617017 +114930,59421,Tom Vaughan,1329043820 +114930,59440,Alejandro Gomez Monteverde,1335053355 +114930,59463,Carol Reed,1402578592 +114930,59465,Carol Reed,1402578613 +114930,59501,Andrew Adamson,1321655677 +114930,59519,Joachim Trier,1267197401 +114930,59527,Ted Tetzlaff,1410167516 +114930,59547,Randa Haines,1444553409 +114930,59549,Jonah Markowitz,1326613324 +114930,59590,Stephen Walker,1335132473 +114930,59607,Aaron Woolf,1255420395 +114930,59615,Steven Spielberg,1299850076 +114930,59665,André De Toth,1402210201 +114930,59680,Criterion,1299360199 +114930,59680,Ernst Lubitsch,1299360199 +114930,59684,Tony Kaye,1255420245 +114930,59705,André Téchiné,1422436669 +114930,59727,Bryan Bertino,1330133816 +114930,59731,Chris Bell,1275587581 +114930,59753,Tetsuya Nakashima,1411721607 +114930,59784,David Cross,1301552231 +114930,59784,John Stevenson,1301551158 +114930,59784,Mark Osborne,1301551149 +114930,59810,Jay Roach,1258372642 +114930,59832,Otto Preminger,1328522385 +114930,59838,Charles Bronson,1258524081 +114930,59838,Michael Winner,1319415594 +114930,59846,Allan Dwan,1402205434 +114930,59858,John Ford,1402204606 +114930,59865,John Ford,1402204541 +114930,59893,Wim Wenders,1412839179 +114930,59895,Hsiao-Hsien Hou,1450662934 +114930,59900,Dennis Dugan,1300230372 +114930,59905,Béla Tarr,1412838927 +114930,59908,Steve Conrad,1335079841 +114930,59945,Fred Niblo,1413185087 +114930,59954,Fred Niblo,1413185098 +114930,59960,Edward Dmytryk,1405338900 +114930,59974,Criterion,1307541952 +114930,59974,Ermanno Olmi,1307541940 +114930,59976,Criterion,1307541950 +114930,59976,Ermanno Olmi,1307541938 +114930,59985,Marcos Siega,1328568527 +114930,59988,Paul Sapiano,1357546750 +114930,59995,John Crowley,1258373165 +114930,60007,Geoffrey Sax,1334964578 +114930,60020,Peter Chan,1411209009 +114930,60037,M. Night Shyamalan,1321657101 +114930,60040,Louis Leterrier,1295743013 +114930,60040,Martin Starr,1296351463 +114930,60046,Roger Spottiswoode,1300396722 +114930,60069,Andrew Stanton,1328392262 +114930,60072,Timur Bekmambetov,1312346689 +114930,60074,Peter Berg,1328390744 +114930,60103,Otto Preminger,1299848345 +114930,60126,Cedric Yarbrough,1293368441 +114930,60126,Peter Segal,1302040381 +114930,60126,Steve Carell,1302040834 +114930,60128,Martin Gero,1335079530 +114930,60135,Doug Pray,1334905482 +114930,60137,Bonni Cohen,1333829900 +114930,60137,Nicole Newnham,1333829900 +114930,60137,Richard Berge,1333829900 +114930,60145,Wallace Worsley,1354039856 +114930,60147,Claude Lelouch,1409396802 +114930,60150,Frank Borzage,1402206831 +114930,60161,David Cross,1301552223 +114930,60161,Peter Avanzino,1301550881 +114930,60179,Criterion,1328742702 +114930,60179,Jack Woods,1328742703 +114930,60183,Peter Gilbert,1404903688 +114930,60183,Steve James,1404903688 +114930,60201,Sergei Parajanov,1264480454 +114930,60225,George W. Hill,1402208308 +114930,60231,Tod Browning,1395379843 +114930,60256,Satyajit Ray,1408087101 +114930,60291,Alex Gibney,1255420418 +114930,60293,Jonathan Levine,1317073014 +114930,60295,Yung Chang,1335050573 +114930,60311,Henry King,1298993210 +114930,60333,Werner Herzog,1238731796 +114930,60341,Errol Morris,1238393996 +114930,60343,John Ford,1292232017 +114930,60343,Shirley Temple,1298119546 +114930,60353,Teinosuke Kinugasa,1440988704 +114930,60365,Arthur Rankin Jr.,1402210863 +114930,60365,Jules Bass,1402210863 +114930,60376,Steven Okazaki,1360750871 +114930,60382,Marina Zenovich,1328526138 +114930,60391,Aleksandr Sokurov,1414218652 +114930,60397,Phyllida Lloyd,1324751778 +114930,60408,Dany Boon,1313791030 +114930,60411,Criterion,1268145673 +114930,60411,Shôhei Imamura,1315398276 +114930,60461,Dome Karukoski,1299915204 +114930,60469,Wolfgang Murnberger,1292833199 +114930,60484,Akira Kurosawa,1328391690 +114930,60484,Criterion,1268797126 +114930,60487,Bill Melendez,1301662204 +114930,60503,Andrzej Wajda,1263218024 +114930,60530,Céline Sciamma,1320692678 +114930,60551,Kim Ki-Duk,1335331123 +114930,60566,Ole Bornedal,1273751962 +114930,60585,Rainer Werner Fassbinder,1408917168 +114930,60609,Shusuke Kaneko,1292277060 +114930,60625,Budd Boetticher,1297814458 +114930,60641,Steven Sawalich,1334362147 +114930,60647,Brad Anderson,1337572512 +114930,60666,Jonathan Demme,1238859291 +114930,60674,Martin Wood,1335270777 +114930,60684,Stephen McHattie,1299872464 +114930,60684,Zack Snyder,1301434528 +114930,60735,Jeff Nichols,1302038543 +114930,60745,Allen Baron,1334883752 +114930,60745,Criterion,1238857284 +114930,60753,Ric Roman Waugh,1332888594 +114930,60756,Adam McKay,1301034223 +114930,60756,Ken Jeong,1297398586 +114930,60766,Best of Rotten Tomatoes: All Time,1290798018 +114930,60766,James Marsh,1302002075 +114930,60803,Arthur Rankin Jr.,1402210892 +114930,60803,Jules Bass,1402210892 +114930,60803,Takeya Nakamura,1402649893 +114930,60816,Vadim Jean,1335083557 +114930,60818,Vadim Jean,1323687247 +114930,60838,Hideaki Anno,1406027356 +114930,60896,Cecil B. DeMille,1402202091 +114930,60904,Vladimir Bortko,1297394556 +114930,60943,Courtney Hunt,1335277294 +114930,60950,Woody Allen,1302670413 +114930,60979,Futoshi Higashide,1335272967 +114930,60979,Hiroshi Morioka,1335272967 +114930,60979,Jong-Sik Nam,1335272967 +114930,60979,Shoujirou Nishimi,1335272967 +114930,60979,Toshiyuki Kubooka,1335272967 +114930,60979,Yasuhiro Aoki,1335272967 +114930,60979,Yuichiro Hayashi,1335272967 +114930,60981,Toyoo Ashida,1385358613 +114930,60990,Criterion,1291419352 +114930,60990,Yasujirô Ozu,1297394306 +114930,61024,Bill Hader,1297398504 +114930,61024,Craig Robinson,1301539893 +114930,61024,Danny McBride,1300337032 +114930,61024,David Gordon Green,1300336827 +114930,61024,Joe Lo Truglio,1293348898 +114930,61024,Ken Jeong,1297398589 +114930,61026,John Woo,1300402358 +114930,61026,Takeshi Kaneshiro,1262677879 +114930,61037,Carlos Reygadas,1334909372 +114930,61041,Brad Furman,1333678296 +114930,61073,Larry Bishop,1335049252 +114930,61073,Vinnie Jones,1298123448 +114930,61091,Jon Reiss,1334520932 +114930,61132,Ben Stiller,1301034371 +114930,61132,Danny McBride,1300337036 +114930,61132,Steve Coogan,1312349766 +114930,61236,Ari Folman,1335303834 +114930,61240,Tomas Alfredson,1295426857 +114930,61246,Andrew Fleming,1312349269 +114930,61246,Steve Coogan,1312349755 +114930,61255,Peter Cattaneo,1326613600 +114930,61257,Patrick Creadon,1265510414 +114930,61264,Claude Chabrol,1414218803 +114930,61279,Alberto Lattuada,1299640983 +114930,61279,Criterion,1264041866 +114930,61279,Federico Fellini,1299448431 +114930,61285,John Frankenheimer,1366488556 +114930,61289,Takashi Miike,1319411529 +114930,61319,Shane Meadows,1337572275 +114930,61323,Coen Brothers,1326613217 +114930,61352,Jeffrey Nachmanoff,1335283267 +114930,61357,Carl Deal,1337572570 +114930,61357,Tia Lessin,1337572570 +114930,61396,John Ford,1402204599 +114930,61406,Tom Hooper,1369993262 +114930,61434,Richard Attenborough,1405335316 +114930,61451,Fred Zinnemann,1402176678 +114930,61470,Sidney J. Furie,1415556224 +114930,61473,Claude Miller,1407712810 +114930,61646,Daniel Sánchez Arévalo,1278617021 +114930,61697,Jon Avnet,1239112882 +114930,61705,Neil LaBute,1328568197 +114930,61724,Aki Kaurismäki,1263337980 +114930,61724,Criterion,1273594011 +114930,61729,David Koepp,1335305031 +114930,61729,Ricky Gervais,1238381725 +114930,61816,Ulrich Seidl,1317756006 +114930,61913,Franco Prosperi,1334102026 +114930,61913,Gualtiero Jacopetti,1334102026 +114930,61937,Criterion,1278797467 +114930,61937,Ingmar Bergman,1303239777 +114930,61961,Russell Mulcahy,1402212963 +114930,61967,Criterion,1237023119 +114930,61967,Yasujirô Ozu,1313789857 +114930,62049,Michael Anderson,1299364784 +114930,62054,Nikita Mikhalkov,1410498565 +114930,62081,D.J. Caruso,1300223227 +114930,62115,Martin McDonagh,1302778486 +114930,62153,Tony Richardson,1408920005 +114930,62155,Michael Cera,1239053647 +114930,62155,Peter Sollett,1301162530 +114930,62203,Pascal Laugier,1335133905 +114930,62206,Juzo Itami,1268147372 +114930,62208,Mikio Naruse,1258528067 +114930,62245,Criterion,1332889921 +114930,62245,Satyajit Ray,1264067711 +114930,62250,Criterion,1297171402 +114930,62250,Matteo Garrone,1297171383 +114930,62254,Juzo Itami,1268147361 +114930,62336,Kazuya Tsurumaki,1296946666 +114930,62344,Jonathan Demme,1292266944 +114930,62434,Brandon Routh,1293736328 +114930,62434,Craig Robinson,1301539895 +114930,62434,Gerry Bednob,1293736234 +114930,62434,Jason Mewes,1297399035 +114930,62434,Kevin Smith,1296350957 +114930,62437,Oliver Stone,1238378299 +114930,62467,Ken Loach,1392028534 +114930,62511,Charlie Kaufman,1335302551 +114930,62511,Nudity (Topless - Notable),1290723213 +114930,62514,Henry Koster,1402204712 +114930,62553,Gina Prince-Bythewood,1335135071 +114930,62586,David Zucker,1299849168 +114930,62644,Dennis Gansel,1293183782 +114930,62662,Wim Wenders,1412839177 +114930,62669,Criterion,1362737707 +114930,62669,Masaki Kobayashi,1362737707 +114930,62669,Tatsuya Nakadai,1362737707 +114930,62733,John Erick Dowdle,1335272455 +114930,62764,Criterion,1318244288 +114930,62764,Louis Malle,1318244288 +114930,62799,Gary Fleder,1335079411 +114930,62801,Kenji Misumi,1292282513 +114930,62803,Buichi Saito,1335041065 +114930,62849,Guy Ritchie,1273256382 +114930,62916,Criterion,1349032573 +114930,62916,Leslie Arliss,1349032573 +114930,62956,Dwayne Carey-Hill,1326441251 +114930,62970,Nick Willing,1401882036 +114930,62972,Simon Wincer,1403086597 +114930,62974,George Cukor,1402194168 +114930,62974,H.C. Potter,1402194168 +114930,62974,Norman Taurog,1402194168 +114930,62974,William A. Wellman,1402194168 +114930,62999,Eric Darnell,1314406766 +114930,62999,Tom McGrath,1314406766 +114930,63007,Cecil B. DeMille,1402202024 +114930,63062,Clint Eastwood,1299644988 +114930,63072,John Hillcoat,1258591041 +114930,63082,Danny Boyle,1296352301 +114930,63113,Marc Forster,1301448206 +114930,63121,Ralph Thomas,1402212610 +114930,63131,David Wain,1326613670 +114930,63131,Joe Lo Truglio,1293348900 +114930,63131,Ken Jeong,1297398587 +114930,63179,Joon-ho Bong,1335036065 +114930,63179,Leos Carax,1335036065 +114930,63179,Michel Gondry,1295743487 +114930,63222,Jean-Claude Van Damme,1300401491 +114930,63222,Mabrouk El Mechri,1300402113 +114930,63226,Mikio Naruse,1420506760 +114930,63276,Takashi Miike,1257354036 +114930,63280,Henry King,1402196883 +114930,63283,John Ford,1357341222 +114930,63310,Franklin J. Schaffner,1414344489 +114930,63391,Hideo Gosha,1292203612 +114930,63391,Tatsuya Nakadai,1238262578 +114930,63433,Brian Henson,1293987572 +114930,63446,Arnaud Desplechin,1263990129 +114930,63446,Criterion,1263990139 +114930,63458,Rupert Harvey,1325895381 +114930,63479,Sean Anders,1317073795 +114930,63515,Pavel Lungin,1328525915 +114930,63544,Bahman Ghobadi,1271453558 +114930,63629,Joshua Logan,1402192027 +114930,63647,Kenji Misumi,1263338477 +114930,63676,Criterion,1258527040 +114930,63676,Hiroshi Teshigahara,1258527253 +114930,63676,Tatsuya Nakadai,1238262576 +114930,63692,Donald Crisp,1402200476 +114930,63698,Nuri Bilge Ceylan,1292225932 +114930,63772,Budd Boetticher,1408920277 +114930,63781,Greg MacGillivray,1415644636 +114930,63793,John Ford,1386404869 +114930,63808,Laurent Cantet,1272642715 +114930,63859,Byron Howard,1302596851 +114930,63859,Chris Williams,1302596867 +114930,63876,Gus Van Sant,1326209087 +114930,63992,Catherine Hardwicke,1239149533 +114930,64030,Olivier Megaton,1314173254 +114930,64032,Cedric Yarbrough,1273345374 +114930,64032,Seth Gordon,1335230230 +114930,64034,Mark Herman,1292425884 +114930,64114,Alex Kendrick,1331075967 +114930,64116,Anthony Leondis,1335083457 +114930,64197,Criterion,1335507986 +114930,64197,Steve McQueen,1335273729 +114930,64234,Screaming Mad George,1331074936 +114930,64234,Steve Wang,1331074936 +114930,64241,Criterion,1399773366 +114930,64241,Satyajit Ray,1264067715 +114930,64273,Criterion,1318244184 +114930,64273,Louis Malle,1239138091 +114930,64275,Béla Balázs,1407233826 +114930,64275,Leni Riefenstahl,1407233826 +114930,64278,Sophie Fiennes,1335042175 +114930,64280,Frederick Wiseman,1419834222 +114930,64283,Criterion,1335658565 +114930,64283,Kenji Mizoguchi,1335658565 +114930,64285,Nick Park,1256571862 +114930,64368,Sam Firstenberg,1331172952 +114930,64368,Shô Kosugi,1238259350 +114930,64408,John Ford,1402204613 +114930,64418,Brent Pierson,1334531970 +114930,64418,Scott Galloway,1334531970 +114930,64499,Criterion,1293230359 +114930,64499,Steven Soderbergh,1297810205 +114930,64501,Criterion,1293230363 +114930,64501,Steven Soderbergh,1297810207 +114930,64511,Toa Fraser,1301543568 +114930,64519,Elia Kazan,1427819005 +114930,64522,Fielder Cook,1333832050 +114930,64552,Yesim Ustaoglu,1405335379 +114930,64575,John Patrick Shanley,1299850274 +114930,64614,Clint Eastwood,1299644204 +114930,64620,Ron Howard,1300401031 +114930,64622,Stephen Daldry,1303419674 +114930,64701,Philippe Claudel,1300244631 +114930,64716,Gabriele Muccino,1328580407 +114930,64754,Vladan Nikolic,1410128152 +114930,64839,Darren Aronofsky,1302085929 +114930,64895,Roy Del Ruth,1405333962 +114930,64900,Siu-Tung Ching,1416384715 +114930,64930,George Stevens,1297641253 +114930,64957,Criterion,1238132854 +114930,64957,David Fincher,1302085851 +114930,64969,Peyton Reed,1326613763 +114930,64983,Bryan Singer,1293735659 +114930,64993,Makoto Shinkai,1300994296 +114930,65011,Zdravko Sotra,1397677906 +114930,65078,Criterion,1335509354 +114930,65078,James Ivory,1335509348 +114930,65088,Adam Shankman,1301437316 +114930,65091,George Cukor,1402214300 +114930,65091,W.S. Van Dyke,1385945094 +114930,65130,Sam Mendes,1238562145 +114930,65133,Paul Weiland,1300400442 +114930,65135,Richard Boden,1314902230 +114930,65142,Erik Van Looy,1323688449 +114930,65188,Kurt Kuenne,1255420256 +114930,65216,Edward Zwick,1296379030 +114930,65225,Peter Joseph,1297620732 +114930,65227,Fred C. Newmeyer,1402578386 +114930,65227,Harold Lloyd,1406541354 +114930,65227,Sam Taylor,1402578386 +114930,65256,Robert Harmon,1408698567 +114930,65259,Ruben Östlund,1411461419 +114930,65261,Hayao Miyazaki,1238925939 +114930,65263,Hal Roach,1402578420 +114930,65357,Andrucha Waddington,1334535167 +114930,65418,Kelly Reichardt,1337572768 +114930,65465,Joel Hopkins,1323688604 +114930,65514,Wilson Yip,1258528807 +114930,65552,Jean-Claude Van Damme,1300401500 +114930,65552,Ringo Lam,1239148614 +114930,65577,Robert Stevenhagen,1300400650 +114930,65577,Sam Fell,1300400621 +114930,65588,Matt Vancil,1328524849 +114930,65596,Gérard Depardieu,1323684679 +114930,65596,Jean-François Richet,1300994697 +114930,65612,Nicolas Roeg,1301002428 +114930,65640,Frederick Wiseman,1419834238 +114930,65642,Nacho Vigalondo,1335282938 +114930,65660,Abdel Kechiche,1293225689 +114930,65660,Criterion,1335653843 +114930,65685,Iain Softley,1326614286 +114930,65802,Steve Carr,1301034159 +114930,65813,David S. Goyer,1318241075 +114930,65866,Jean Negulesco,1402196501 +114930,65882,Charles Guard,1335133353 +114930,65882,Thomas Guard,1335133353 +114930,66090,James Watkins,1335125759 +114930,66097,Henry Selick,1318242959 +114930,66118,Emile de Antonio,1334534831 +114930,66130,Prachya Pinkaew,1324563043 +114930,66252,Jacques Tourneur,1402208595 +114930,66279,John Cassavetes,1299449048 +114930,66284,D.W. Griffith,1411550078 +114930,66297,Peter Avanzino,1263338792 +114930,66302,Yavuz Turgul,1334520793 +114930,66317,Hiroshi Saitô,1328522984 +114930,66337,Hsiao-Hsien Hou,1450662882 +114930,66339,Criterion,1453095875 +114930,66339,Nagisa Ôshima,1303796455 +114930,66352,Mahamat-Saleh Haroun,1425461803 +114930,66371,Yojiro Takita,1331179616 +114930,66385,Ross Katz,1335081255 +114930,66509,Jason Schwartzman,1296951916 +114930,66509,Jonah Hill,1326337662 +114930,66509,Judd Apatow,1296351649 +114930,66509,Ray Romano,1332465626 +114930,66511,Hannes Stöhr,1328523437 +114930,66544,Yves Simoneau,1296456768 +114930,66547,Criterion,1335428945 +114930,66547,Nicholas Ray,1299915776 +114930,66618,Xiaogang Feng,1425454586 +114930,66655,Detlev Buck,1413185511 +114930,66665,Sam Mendes,1238562155 +114930,66667,Phil Karlson,1402208073 +114930,66686,Michael Curtiz,1402192658 +114930,66744,Paolo Sorrentino,1406027217 +114930,66758,Criterion,1292221630 +114930,66758,Larisa Shepitko,1292221609 +114930,66762,Cédric Klapisch,1255420800 +114930,66785,Ji-woon Kim,1272652721 +114930,66854,Naomi Kawase,1416381457 +114930,66857,Alexander Korda,1421309168 +114930,66861,Marcel Pagnol,1419328477 +114930,66870,Criterion,1291403267 +114930,66870,Jan Troell,1263351571 +114930,66915,Dan Kuenster,1304432845 +114930,66915,Don Bluth,1304432543 +114930,66915,Gary Goldman,1304432560 +114930,66934,Joss Whedon,1316714348 +114930,66947,Jean-Pierre Melville,1376314068 +114930,66977,Marc Allégret,1402191992 +114930,66983,Vincent Sherman,1401271027 +114930,67068,Robert Day,1402212530 +114930,67073,Steve Miner,1302000663 +114930,67087,Andy Samberg,1301544614 +114930,67087,Jason Segel,1301544522 +114930,67087,Jay Chandrasekhar,1301544654 +114930,67087,Joe Lo Truglio,1301544677 +114930,67087,John Hamburg,1301544249 +114930,67087,Nick Kroll,1301544636 +114930,67096,Don Siegel,1385539615 +114930,67098,Peter Ustinov,1417982349 +114930,67135,John Farrow,1402198685 +114930,67138,Andy Robin,1334969127 +114930,67138,Gregg Kavet,1334969127 +114930,67140,Josef von Sternberg,1385459229 +114930,67186,Peter Cornwell,1335132806 +114930,67223,Anna Boden,1301448348 +114930,67223,Ryan Fleck,1301448328 +114930,67233,Takashi Miike,1402214662 +114930,67252,Panna Rittikrai,1328742736 +114930,67252,Tony Jaa,1328742728 +114930,67255,Niels Arden Oplev,1302081562 +114930,67267,Christine Jeffs,1299960844 +114930,67295,Raman Hui,1335286181 +114930,67359,Lewis Allen,1405425527 +114930,67408,Conrad Vernon,1319417623 +114930,67408,Rob Letterman,1319417605 +114930,67422,Cristian Nemescu,1334908802 +114930,67429,Best of Rotten Tomatoes: All Time,1290798396 +114930,67429,Nina Paley,1328522975 +114930,67464,Mervyn LeRoy,1401137463 +114930,67504,Werner Herzog,1258594483 +114930,67508,Uli Edel,1295429143 +114930,67624,Nash Edgerton,1395557971 +114930,67665,Sacha Gervasi,1330130557 +114930,67667,Anthony Mann,1385459388 +114930,67695,Danny McBride,1300337041 +114930,67695,Jody Hill,1335276538 +114930,67702,Sidney Franklin,1402202595 +114930,67734,Bill Hader,1297398495 +114930,67734,Greg Mottola,1296351603 +114930,67734,Martin Starr,1296351460 +114930,67792,Elissa Down,1267199285 +114930,67801,Criterion,1335424390 +114930,67801,Götz Spielmann,1266705318 +114930,67839,Neil Burger,1334965435 +114930,67869,Frederick Stephani,1417650108 +114930,67869,Ray Taylor,1417650108 +114930,67888,Clyde Bruckman,1402200352 +114930,67888,W.C. Fields,1402313725 +114930,67890,Otto Preminger,1402195250 +114930,67890,Rouben Mamoulian,1402195250 +114930,67927,John Brahm,1402211112 +114930,67929,Akira Kurosawa,1268796013 +114930,67929,Criterion,1268797181 +114930,67931,Akira Kurosawa,1268796015 +114930,67931,Criterion,1268797183 +114930,67997,Armando Iannucci,1299041685 +114930,67997,Steve Coogan,1312349744 +114930,67999,Sam Dunn,1423731177 +114930,67999,Scot McFadyen,1423731176 +114930,68044,André De Toth,1402210195 +114930,68069,Budd Boetticher,1408920221 +114930,68073,Nick Frost,1301550475 +114930,68073,Rhys Ifans,1302641786 +114930,68073,Richard Curtis,1258374715 +114930,68099,Rob Whittlesey,1328525747 +114930,68115,Criterion,1299745358 +114930,68115,Emeric Pressburger,1302888066 +114930,68115,Michael Powell,1299745358 +114930,68135,Burr Steers,1301450238 +114930,68153,Enzo Barboni,1407137958 +114930,68157,Quentin Tarantino,1297623856 +114930,68163,George Marshall,1402313201 +114930,68163,S. Sylvan Simon,1402203246 +114930,68173,Sergei M. Eisenstein,1409299141 +114930,68194,Tom Hooper,1257637224 +114930,68237,Duncan Jones,1264040461 +114930,68254,Jack Conway,1398761553 +114930,68269,Jean-Marc Vallée,1263343762 +114930,68271,Criterion,1292224158 +114930,68271,Shôhei Imamura,1315398273 +114930,68273,Murray Lerner,1301160800 +114930,68273,Parris Patton,1340603967 +114930,68273,Paul Crowder,1340603967 +114930,68314,Kyu-Dong Min,1355520889 +114930,68347,Cary Fukunaga,1263353398 +114930,68358,J.J. Abrams,1299963421 +114930,68358,Simon Pegg,1296357469 +114930,68411,Phil Rosen,1409561403 +114930,68472,Doris Dörrie,1301452938 +114930,68486,John Woo,1263354064 +114930,68517,Tadeusz Chmielewski,1334198380 +114930,68522,Alastair Fothergill,1304576791 +114930,68522,Mark Linfield,1304576799 +114930,68536,Jan Harlan,1328526163 +114930,68653,Josef von Sternberg,1292283144 +114930,68659,Craig Robinson,1301539902 +114930,68659,Danny McBride,1300337027 +114930,68659,Jason Mewes,1297399033 +114930,68659,Joe Lo Truglio,1293348904 +114930,68659,Kyle Newman,1301540078 +114930,68659,Will Forte,1293357732 +114930,68690,Christophe Honoré,1386403689 +114930,68791,McG,1331078311 +114930,68793,Bill Hader,1297398502 +114930,68793,Christopher Guest,1297367991 +114930,68793,Craig Robinson,1301539900 +114930,68793,Jonah Hill,1326337657 +114930,68793,Ricky Gervais,1295601962 +114930,68793,Shawn Levy,1300400593 +114930,68793,Steve Coogan,1312349761 +114930,68835,Tom Gustafson,1263352752 +114930,68838,Adam Del Deo,1328526219 +114930,68838,James D. Stern,1408918571 +114930,68848,Rian Johnson,1335298668 +114930,68858,Marco Bellocchio,1337546413 +114930,68868,Sylwester Checinski,1334361868 +114930,68872,Criterion,1271537065 +114930,68872,Roberto Rossellini,1271537058 +114930,68874,Chantal Akerman,1302773675 +114930,68874,Criterion,1302773675 +114930,68901,Ramin Bahrani,1423219215 +114930,68915,Fernando di Leo,1404714667 +114930,68919,Criterion,1319411792 +114930,68919,Eric Rohmer,1319411908 +114930,68921,Archie Mayo,1402205701 +114930,68921,Fritz Lang,1402313979 +114930,68932,Joe Wright,1299851793 +114930,68941,Dennis Iliadis,1316715640 +114930,68945,Hideaki Anno,1292223338 +114930,68945,Kazuya Tsurumaki,1296946668 +114930,68945,Masayuki,1296946681 +114930,68952,Sam Raimi,1301035625 +114930,68954,Bob Peterson,1328394308 +114930,68954,Pete Docter,1328394255 +114930,68956,Criterion,1294086250 +114930,68956,Yasujirô Ozu,1297394342 +114930,68959,Seiji Mizushima,1335078707 +114930,68967,Criterion,1265382494 +114930,68967,Olivier Assayas,1263352716 +114930,68974,King Vidor,1402203647 +114930,68976,François Truffaut,1407717006 +114930,69042,Ford Beebe,1417650067 +114930,69042,Frederick Stephani,1417650066 +114930,69042,Robert F. Hill,1417650066 +114930,69072,Anthony Asquith,1298992970 +114930,69088,Peter Watkins,1295427988 +114930,69122,Ken Jeong,1297398591 +114930,69122,Todd Phillips,1296424368 +114930,69122,Zach Galifianakis,1296424422 +114930,69134,Criterion,1300338651 +114930,69134,Lars von Trier,1300338791 +114930,69136,Chandra Barot,1334520479 +114930,69169,Danny Kaye,1297641703 +114930,69169,Howard Hawks,1319416511 +114930,69219,Claude Zidi,1421059213 +114930,69241,Criterion,1319408308 +114930,69241,Rainer Werner Fassbinder,1292233662 +114930,69251,Hal Haberman,1334909393 +114930,69251,Jeremy Passmore,1334909393 +114930,69278,Brad Silberling,1295431277 +114930,69278,Danny McBride,1300337044 +114930,69306,Tony Scott,1301034979 +114930,69310,Shunji Iwai,1292233354 +114930,69324,Mads Mikkelsen,1315400226 +114930,69324,Ole Christian Madsen,1295123472 +114930,69354,Alberto Cavalcanti,1409477071 +114930,69374,Randa Haines,1444553416 +114930,69387,Anatole Litvak,1402205163 +114930,69394,Cyrus Nowrasteh,1321656454 +114930,69429,Vincente Minnelli,1413626606 +114930,69436,Bill Hader,1301550247 +114930,69436,David Cross,1301552248 +114930,69436,Harold Ramis,1324753783 +114930,69436,Michael Cera,1257890563 +114930,69436,Vinnie Jones,1333067323 +114930,69458,James Toback,1255937517 +114930,69460,Criterion,1453096390 +114930,69460,Robert Drew,1453096382 +114930,69464,Friðrik Þór Friðriksson,1403521196 +114930,69475,Anthony Harvey,1404809189 +114930,69481,Kathryn Bigelow,1302777795 +114930,69483,Luis García Berlanga,1334105994 +114930,69489,Tadeusz Chmielewski,1334198654 +114930,69498,Criterion,1292278621 +114930,69498,Max Ophüls,1292278506 +114930,69524,Eric Zala,1335080893 +114930,69529,Yann Arthus-Bertrand,1263352427 +114930,69552,Sergei Dvortsevoy,1337572595 +114930,69559,Robert Siodmak,1402201928 +114930,69574,Daniel Barnz,1335048939 +114930,69604,Woody Allen,1302670330 +114930,69640,Michael Mann,1302595160 +114930,69644,Bill Hader,1297398509 +114930,69644,Carlos Saldanha,1301666470 +114930,69644,Ray Romano,1293354697 +114930,69644,Simon Pegg,1296357463 +114930,69654,Brad Turner,1335050347 +114930,69666,Warwick Thonton,1419550717 +114930,69674,Robert Parrish,1401092910 +114930,69685,Karen Disher,1268623646 +114930,69699,Criterion,1421652518 +114930,69699,John Cassavetes,1421652380 +114930,69701,Matti Kassila,1421233834 +114930,69712,Nick Cassavetes,1262034936 +114930,69720,Stacy Title,1325939917 +114930,69744,Roy Del Ruth,1297831116 +114930,69757,Marc Webb,1335407952 +114930,69761,Abbas Kiarostami,1411874532 +114930,69768,John M. Stahl,1402194798 +114930,69771,Frank Borzage,1402206823 +114930,69773,Vincente Minnelli,1413626579 +114930,69784,Larry Charles,1292952369 +114930,69786,Gregory V. Sherman,1312349603 +114930,69786,Jeff Sherman,1312349603 +114930,69803,Ivo Caprino,1334521785 +114930,69830,Sam Dunn,1423731185 +114930,69830,Scot McFadyen,1423731185 +114930,69844,David Yates,1302641506 +114930,69849,David Greene,1333078282 +114930,69849,Gilbert Moses,1333078282 +114930,69849,John Erman,1333078282 +114930,69849,Marvin J. Chomsky,1333078282 +114930,69856,Alain Resnais,1413293918 +114930,69858,Alain Resnais,1413293866 +114930,69873,Jean Reno,1300399630 +114930,69873,Jean-Marie Poiré,1300399567 +114930,69906,Steven E. de Souza,1300402279 +114930,69911,Criterion,1290802015 +114930,69911,Luchino Visconti,1290802098 +114930,69926,Raoul Walsh,1300223327 +114930,69931,Vittorio De Sica,1407135672 +114930,69951,Terry Gilliam,1302886512 +114930,69986,Olivier Assayas,1418019522 +114930,69988,Lynn Shelton,1349556453 +114930,69995,Kiyoshi Kurosawa,1296351977 +114930,70015,Denis Villeneuve,1263353871 +114930,70032,Jared Drake,1335038479 +114930,70032,Zach Galifianakis,1296424435 +114930,70102,Michael McGowan,1407239087 +114930,70130,Gérard Depardieu,1261602686 +114930,70130,Maurice Pialat,1292227550 +114930,70186,Edgar Reitz,1334520622 +114930,70188,Elia Kazan,1385542868 +114930,70201,Mike Leigh,1334882918 +114930,70206,Marcus Dunstan,1324753919 +114930,70208,David Twohy,1335132904 +114930,70223,Christian-Jaque,1335504750 +114930,70223,Criterion,1335504756 +114930,70286,Neill Blomkamp,1264040480 +114930,70293,Nora Ephron,1302040337 +114930,70295,Agnès Varda,1337571535 +114930,70342,Martin Provost,1326208714 +114930,70370,Hsiao-Hsien Hou,1450662971 +114930,70372,Hsiao-Hsien Hou,1450662965 +114930,70374,Philippe Falardeau,1419443951 +114930,70421,Hsiao-Hsien Hou,1450662957 +114930,70423,Hsiao-Hsien Hou,1450662948 +114930,70432,Stephen Frears,1319412482 +114930,70451,Espen Sandberg,1323688789 +114930,70451,Joachim Rønning,1323688789 +114930,70465,Ralph Ziman,1334732478 +114930,70500,Bradley Beesley,1405331820 +114930,70521,Dan Zeff,1328524554 +114930,70533,Hideaki Anno,1264040513 +114930,70533,Kazuya Tsurumaki,1296946664 +114930,70533,Masayuki,1296946696 +114930,70541,Mikio Naruse,1420506728 +114930,70543,Criterion,1292205824 +114930,70543,Hiroshi Shimizu,1292205808 +114930,70567,Max Mayer,1324753302 +114930,70637,Shamim Sarif,1334884013 +114930,70641,Craig Robinson,1301539952 +114930,70641,Trevor Moore,1301540023 +114930,70641,Zach Cregger,1301540034 +114930,70649,Hsiao-Hsien Hou,1450662928 +114930,70659,Jake Clenell,1334361258 +114930,70670,Criterion,1290801713 +114930,70670,Jean-Pierre Melville,1290801709 +114930,70682,Toshio Lee,1334535566 +114930,70684,Hsiao-Hsien Hou,1450662940 +114930,70689,John Sturges,1385537549 +114930,70712,Richard Sale,1402204828 +114930,70722,Hsiao-Hsien Hou,1450662914 +114930,70724,Anthony Mann,1385538825 +114930,70769,Gil Junger,1328837140 +114930,70789,Luis Buñuel,1414339527 +114930,70804,Leni Riefenstahl,1407233835 +114930,70806,Leni Riefenstahl,1407233847 +114930,70831,Sam Miller,1411209364 +114930,70833,Edmund Goulding,1402195961 +114930,70833,Erich von Stroheim,1402195961 +114930,70833,Irving Thalberg,1402195961 +114930,70833,Richard Boleslawski,1402195961 +114930,70833,Sam Wood,1402195961 +114930,70846,Jean-Pierre Dardenne,1306103194 +114930,70846,Luc Dardenne,1306103181 +114930,70849,Criterion,1291073740 +114930,70849,Jean-Pierre Melville,1291073746 +114930,70862,Davis Guggenheim,1264039147 +114930,70871,Criterion,1421654167 +114930,70871,Jean Renoir,1265510074 +114930,70912,Ramin Bahrani,1337570852 +114930,70961,George Pollock,1405329399 +114930,70978,Eric Rohmer,1319411925 +114930,70988,Nudity (Topless - Notable),1261609223 +114930,70992,Aleksey Balabanov,1296339466 +114930,71011,Billy Wilder,1302031029 +114930,71014,Henry Hathaway,1385540114 +114930,71027,Eric Rohmer,1408161581 +114930,71033,Juan José Campanella,1301452889 +114930,71104,Tay Garnett,1402311412 +114930,71106,Gareth Carrivick,1325939530 +114930,71108,Michael Haneke,1262951472 +114930,71129,Lauren Montgomery,1419551342 +114930,71131,Geoffrey O'Connor,1318240523 +114930,71135,Christian Alvart,1302800350 +114930,71143,Henry Hathaway,1402204154 +114930,71147,Criterion,1335500855 +114930,71147,Juan Antonio Bardem,1335500850 +114930,71156,Grant Heslov,1295124035 +114930,71170,Criterion,1265384451 +114930,71170,Jean-Luc Godard,1301002054 +114930,71170,Jean-Pierre Gorin,1417508829 +114930,71178,Criterion,1335657291 +114930,71178,Kenji Mizoguchi,1335657286 +114930,71187,Charles Chaplin,1403384981 +114930,71189,Criterion,1335512119 +114930,71189,René Clair,1322756504 +114930,71199,Tomás Gutiérrez Alea,1297810721 +114930,71211,Steven Soderbergh,1296897244 +114930,71243,John Berry,1402191572 +114930,71246,Cherien Dabis,1263351306 +114930,71248,Mike Judge,1295123460 +114930,71264,Andy Samberg,1293358740 +114930,71264,Bill Hader,1297398497 +114930,71264,Chris Miller,1302800928 +114930,71264,Phil Lord,1302800946 +114930,71264,Will Forte,1293357722 +114930,71282,Robert Kenner,1263352151 +114930,71285,Andrew Bujalski,1422963595 +114930,71304,Chan-wook Park,1328526196 +114930,71327,Jane Campion,1257637181 +114930,71350,Phil Karlson,1402208101 +114930,71361,Nudity (Topless - Notable),1318967183 +114930,71390,Mark Hartley,1263353373 +114930,71413,Ernst Lubitsch,1402194589 +114930,71416,H.C. Potter,1402214233 +114930,71418,Lance Hammer,1323688178 +114930,71429,Bobcat Goldthwait,1326442221 +114930,71438,Best of Rotten Tomatoes: All Time,1290797464 +114930,71438,Criterion,1295429586 +114930,71438,Hirokazu Koreeda,1258527733 +114930,71442,Criterion,1292278615 +114930,71442,Max Ophüls,1292278529 +114930,71444,Guru Dutt,1333758209 +114930,71446,Alain Resnais,1413293875 +114930,71450,Michael Moore,1255420000 +114930,71453,Georges Franju,1334101749 +114930,71462,Louie Psihoyos,1327115643 +114930,71464,Coen Brothers,1292324283 +114930,71466,Raymond De Felitta,1295987892 +114930,71468,Jamin Winans,1327117314 +114930,71474,Jan Svankmajer,1406887188 +114930,71488,Jan Svankmajer,1406887253 +114930,71497,Criterion,1292204536 +114930,71497,Seijun Suzuki,1258524252 +114930,71500,Michael Dougherty,1349125294 +114930,71518,Drew Barrymore,1257637573 +114930,71520,Christopher Guest,1297367992 +114930,71520,Jonah Hill,1326337685 +114930,71520,Martin Starr,1296351456 +114930,71520,Matthew Robinson,1335303064 +114930,71520,Ricky Gervais,1304488733 +114930,71535,Ruben Fleischer,1313790791 +114930,71542,R.J. Cutler,1263351281 +114930,71558,S. Sylvan Simon,1402203238 +114930,71579,Lone Scherfig,1295123445 +114930,71619,Anne Fontaine,1301452820 +114930,71619,Audrey Tautou,1315401468 +114930,71634,William Dieterle,1402201465 +114930,71640,Anders Østergaard,1337567371 +114930,71650,Les Blank,1453195785 +114930,71664,Charles Lamont,1402202963 +114930,71668,Jean Reno,1300400355 +114930,71668,Ken Jeong,1297398584 +114930,71668,Peter Billingsley,1295123403 +114930,71688,Imtiaz Ali,1314684356 +114930,71693,Criterion,1399778487 +114930,71693,Jacques Demy,1399778487 +114930,71695,Criterion,1292283163 +114930,71695,Josef von Sternberg,1292283163 +114930,71697,King Vidor,1402203633 +114930,71717,Cecil B. DeMille,1402202072 +114930,71732,Glenn McQuaid,1263351482 +114930,71740,Criterion,1299745219 +114930,71740,Emeric Pressburger,1302888068 +114930,71740,Michael Powell,1299745219 +114930,71743,Erich von Stroheim,1402195916 +114930,71745,Spike Jonze,1257637563 +114930,71758,Ritwik Ghatak,1292231280 +114930,71762,Sergei M. Eisenstein,1409299124 +114930,71765,Rick Ernst,1293397110 +114930,71792,Charles Chaplin,1256054470 +114930,71838,F. Gary Gray,1292270597 +114930,71840,Jacques Tourneur,1402208608 +114930,71867,Felix Van Groeningen,1328522302 +114930,71899,Adam Elliot,1263353217 +114930,71938,Miklós Jancsó,1396514249 +114930,71940,Criterion,1271536839 +114930,71940,Roberto Rossellini,1271536851 +114930,71942,David Lean,1402205979 +114930,71966,Mu Fei,1292833068 +114930,71970,David Butler,1258437886 +114930,71978,Vsevolod Pudovkin,1323268887 +114930,71980,Criterion,1335658158 +114930,71980,René Clair,1335658153 +114930,72011,Danny McBride,1300337270 +114930,72011,Jason Reitman,1262951363 +114930,72011,Zach Galifianakis,1333069379 +114930,72013,Peter Medak,1387082192 +114930,72027,Andrzej Wajda,1408956750 +114930,72032,Heddy Honigmann,1424758373 +114930,72035,Jan Svankmajer,1292225694 +114930,72037,Jan Svankmajer,1406887168 +114930,72039,Claire Denis,1337566197 +114930,72041,Jon Wright,1349031374 +114930,72092,Henry Hathaway,1402204113 +114930,72102,Chris Landreth,1292833323 +114930,72104,Christoph Lauenstein,1334521626 +114930,72104,Wolfgang Lauenstein,1334521626 +114930,72113,John Crowley,1302800087 +114930,72117,Richard Boleslawski,1302231453 +114930,72142,Shion Sono,1315839031 +114930,72159,Marcus H. Rosenmüller,1334103746 +114930,72161,Phil Karlson,1402208051 +114930,72165,Ken Watanabe,1293824593 +114930,72165,Paul Weitz,1302596925 +114930,72169,Jeff Stilson,1317073374 +114930,72171,Scott Sanders,1335230467 +114930,72176,Patton Oswalt,1332295609 +114930,72176,Robert D. Siegel,1335080671 +114930,72216,Carlo Verdone,1421736322 +114930,72224,Jared Hess,1317075595 +114930,72224,Jemaine Clement,1329164823 +114930,72226,Criterion,1399777974 +114930,72226,Jason Schwartzman,1296951971 +114930,72226,Wes Anderson,1258371391 +114930,72228,Jon Amiel,1328525334 +114930,72281,Jacques Rivette,1453096080 +114930,72298,Nicholas Ray,1402213316 +114930,72298,Robert Parrish,1402650044 +114930,72327,Irving Lerner,1334102566 +114930,72334,Nikolaus Geyrhalter,1443432082 +114930,72356,Peter Sohn,1335135229 +114930,72360,Arvid Uibel,1333499703 +114930,72360,Chris Stenner,1333499703 +114930,72360,Heidi Wittlinger,1333499703 +114930,72367,Michael Sucsy,1317073412 +114930,72378,Roland Emmerich,1300401266 +114930,72378,Stephen McHattie,1299874103 +114930,72386,Pedro Almodóvar,1258591214 +114930,72395,Lee Daniels,1262951707 +114930,72405,Werner Herzog,1275565654 +114930,72479,Oren Moverman,1295124045 +114930,72483,Todd Kessler,1334904800 +114930,72485,Eran Riklis,1334907875 +114930,72491,Corneliu Porumboiu,1342174356 +114930,72524,Mel Stuart,1422604090 +114930,72554,Daniel Monzón,1323267690 +114930,72585,Jacques Feyder,1400448250 +114930,72589,Kenji Mizoguchi,1408786098 +114930,72605,Jim Sheridan,1299960793 +114930,72621,Georges Schwizgebel,1453196061 +114930,72641,John Lee Hancock,1259294248 +114930,72649,Nagisa Ôshima,1430118185 +114930,72651,René Clair,1402215483 +114930,72672,Takashi Miike,1402214575 +114930,72674,D.W. Griffith,1411550107 +114930,72681,Josef von Sternberg,1402208415 +114930,72703,Richard Linklater,1337571658 +114930,72712,Gary Hustwit,1323687311 +114930,72714,Shaun Monson,1333499654 +114930,72720,Tom Ford,1259902000 +114930,72726,Aleksey Balabanov,1415555783 +114930,72731,Peter Jackson,1317076043 +114930,72733,Clint Eastwood,1259901981 +114930,72737,John Musker,1259902167 +114930,72737,Ron Clements,1259902167 +114930,72781,Mads Brügger,1351107960 +114930,72844,Criterion,1335652484 +114930,72844,Curt Siodmak,1335652475 +114930,72844,Edgar G. Ulmer,1335652475 +114930,72844,Fred Zinnemann,1335652475 +114930,72844,Robert Siodmak,1335652475 +114930,72846,Satyajit Ray,1408087100 +114930,72848,Eric Rohmer,1408161610 +114930,72852,Criterion,1399778385 +114930,72852,Georges Franju,1293397012 +114930,72854,Mauritz Stiller,1413185121 +114930,72856,Frank Borzage,1402206861 +114930,72870,Kenji Mizoguchi,1408786126 +114930,72876,Georg Wilhelm Pabst,1407062950 +114930,72878,Kenji Mizoguchi,1408786129 +114930,72883,Alexander Kluge,1292234954 +114930,72897,Robert J. Flaherty,1402197986 +114930,72897,W.S. Van Dyke,1402197986 +114930,72904,Criterion,1335499819 +114930,72904,Pedro Costa,1335499812 +114930,72908,Claude Autant-Lara,1423448052 +114930,72913,Jaak Kilmi,1263351313 +114930,72915,Norman McLaren,1419437616 +114930,72931,Zbigniew Rybczynski,1334102116 +114930,72947,Rob Williams,1321657679 +114930,72982,Nick Willing,1302002053 +114930,72995,Sidney Lumet,1410939643 +114930,72998,James Cameron,1296423301 +114930,73017,Guy Ritchie,1262032252 +114930,73023,Scott Cooper,1262032361 +114930,73027,Michael Hoffman,1413444128 +114930,73064,Rainer Werner Fassbinder,1408917170 +114930,73101,Ken Loach,1335079330 +114930,73111,Joseph L. Mankiewicz,1402195806 +114930,73117,Vittorio De Sica,1407135711 +114930,73125,Ernst Lubitsch,1402194606 +114930,73139,Jacques Rivette,1453096144 +114930,73154,King Vidor,1402203619 +114930,73183,Criterion,1335506540 +114930,73183,Peter Yates,1318967606 +114930,73188,Anatole Litvak,1335511898 +114930,73188,Criterion,1335511904 +114930,73194,Chantal Akerman,1422606608 +114930,73196,Kenji Mizoguchi,1408786091 +114930,73211,Bruce McDonald,1323687584 +114930,73211,Stephen McHattie,1299873405 +114930,73266,Michael Cera,1295431428 +114930,73266,Miguel Arteta,1296424404 +114930,73266,Zach Galifianakis,1296424426 +114930,73276,Franny Armstrong,1323687485 +114930,73290,Lasse Hallström,1302637027 +114930,73314,Hunter Weeks,1402038378 +114930,73321,The Hughes Brothers,1299962556 +114930,73323,Daniel Alfredson,1302081488 +114930,73328,Abbas Kiarostami,1406283760 +114930,73328,Ermanno Olmi,1406283760 +114930,73328,Ken Loach,1406283736 +114930,73334,Bruce Beresford,1453095270 +114930,73334,Criterion,1453095258 +114930,73344,Jacques Audiard,1263315244 +114930,73365,Joko Anwar,1422835380 +114930,73370,Daryl Duke,1424755205 +114930,73392,Chris Smith,1263349103 +114930,73457,Yasujirô Ozu,1421655614 +114930,73460,Criterion,1335511260 +114930,73460,Terry Zwigoff,1335511255 +114930,73480,Chester M. Franklin,1402202568 +114930,73480,Sidney Franklin,1402202568 +114930,73494,Richard Boleslawski,1402214030 +114930,73504,Jacques Rivette,1453096097 +114930,73515,Brian Hecker,1334905330 +114930,73523,Christian Petzold,1453096636 +114930,73529,João César Monteiro,1415554368 +114930,73569,Jackie Chan,1420724474 +114930,73587,Fatih Akin,1323658523 +114930,73608,Paul Morrissey,1263810330 +114930,73630,Tay Garnett,1402311446 +114930,73681,Radu Mihaileanu,1263810254 +114930,73713,Philippe Muyl,1263810140 +114930,73759,Taliesin Jaffe,1265119125 +114930,73759,Tomokazu Tokoro,1265119125 +114930,73772,Criterion,1399775984 +114930,73772,Terence Davies,1399775969 +114930,73774,Marcel Pagnol,1419328471 +114930,73778,Criterion,1290801549 +114930,73778,Sacha Guitry,1263810972 +114930,73782,Claude Autant-Lara,1423448057 +114930,73790,Michael Curtiz,1402192614 +114930,73808,Hong-jin Na,1263990022 +114930,73818,Arnaud Desplechin,1302676533 +114930,73822,Mike Leigh,1415104228 +114930,73826,Criterion,1302677146 +114930,73826,Nagisa Ôshima,1303796425 +114930,73854,Kizo Nagashima,1321654907 +114930,73854,Larry Roemer,1321654907 +114930,73868,Oliver Hodge,1334103663 +114930,73874,Ben Ramsey,1334964937 +114930,73881,Rajkumar Hirani,1314684242 +114930,73885,Erik Poppe,1419536835 +114930,73914,Paul Newman,1440386540 +114930,73929,Scott Stewart,1327115713 +114930,73954,Howard Hawks,1402197094 +114930,73978,Cecil B. DeMille,1402202133 +114930,73981,Fritz Lang,1402205870 +114930,73983,Sebastián Silva,1337571263 +114930,74014,Horatiu Malaele,1333758583 +114930,74089,Vincent J. Donehue,1335078642 +114930,74099,Michael Curtiz,1299845663 +114930,74109,William A. Seiter,1402194383 +114930,74113,Kihachi Okamoto,1265182461 +114930,74113,Toshirô Mifune,1265182452 +114930,74144,Josef von Sternberg,1402206577 +114930,74152,Michael Blieden,1296424096 +114930,74152,Zach Galifianakis,1296424431 +114930,74161,James Tinling,1402208135 +114930,74226,Víctor Erice,1334021618 +114930,74228,Christopher Smith,1302234562 +114930,74263,Alfred E. Green,1417650954 +114930,74266,Gilbert Cates,1401882644 +114930,74282,Kevin Sullivan,1335050784 +114930,74306,Aleksandr Sokurov,1414218689 +114930,74310,George Stevens,1402196317 +114930,74324,Mick Jackson,1301035949 +114930,74327,Rémi Bezançon,1328524085 +114930,74342,David Miller,1412838822 +114930,74370,Ti West,1337570925 +114930,74382,Archie Mayo,1402205670 +114930,74382,Michael Curtiz,1402311881 +114930,74416,Andrea Arnold,1300227479 +114930,74416,Criterion,1300227506 +114930,74426,Aditya Chopra,1321657799 +114930,74431,Özer Kiziltan,1328525240 +114930,74452,Joe Johnston,1295123605 +114930,74458,Martin Scorsese,1299844358 +114930,74475,Lucrecia Martel,1421654109 +114930,74488,Neil Jordan,1302637215 +114930,74504,Klaus Härö,1302081419 +114930,74506,Criterion,1266703932 +114930,74506,Eric Rohmer,1319411902 +114930,74508,Adrian Shergold,1317112574 +114930,74510,Daniel Alfredson,1302081499 +114930,74538,Tony Richardson,1408920137 +114930,74541,Mike Clattenburg,1334965528 +114930,74545,Roman Polanski,1301899667 +114930,74553,Nora Twomey,1335132935 +114930,74553,Tomm Moore,1335132935 +114930,74573,Lee Toland Krieger,1334908172 +114930,74575,Stanley Kramer,1402576190 +114930,74588,John Cromwell,1402203451 +114930,74613,Marcel Carné,1424758684 +114930,74624,Alejandro Amenábar,1314173441 +114930,74649,Jaffar Mahmood,1334198252 +114930,74668,Patrick Alessandrin,1268144886 +114930,74677,Andy Bichlbaum,1267509618 +114930,74677,Mike Bonanno,1267509618 +114930,74696,Best of Rotten Tomatoes: All Time,1290797906 +114930,74696,Lixin Fan,1302085171 +114930,74698,Michael Lembeck,1328329580 +114930,74701,Terence Davies,1337571888 +114930,74706,Peter Watkins,1417650436 +114930,74727,Aleksandr Seryj,1321647320 +114930,74777,Matti Kassila,1421233839 +114930,74789,Tim Burton,1292267033 +114930,74791,Stéphane Aubier,1267866311 +114930,74791,Vincent Patar,1267866316 +114930,74827,Scandar Copti,1321647227 +114930,74827,Yaron Shani,1321647227 +114930,74859,Ken Russell,1413157340 +114930,74870,Bill Forsyth,1411894815 +114930,74916,Noah Baumbach,1323050203 +114930,74948,Daniel Barber,1268709538 +114930,75351,John Llewellyn Moxey,1402212065 +114930,75395,Adam Green,1303796640 +114930,75397,William Keighley,1402218327 +114930,75414,Sergio Martino,1419826104 +114930,75425,George A. Romero,1315405019 +114930,75440,Marty Callner,1420507631 +114930,75803,Rick Famuyiwa,1328392374 +114930,75818,Best of Rotten Tomatoes: All Time,1290797354 +114930,75818,Havana Marking,1269615471 +114930,75831,Charles Reisner,1402200434 +114930,75831,Oliver Hardy,1402200576 +114930,75831,Stan Laurel,1402200576 +114930,75962,Chester Erskine,1402213248 +114930,75981,Criterion,1292828195 +114930,75981,William Klein,1329130504 +114930,75983,Philipp Stölzl,1270015002 +114930,75990,Ted Kotcheff,1362953129 +114930,76054,Jacques Cluzaud,1320868249 +114930,76054,Jacques Perrin,1273185542 +114930,76087,Javor Gardev,1270015364 +114930,76089,Clarence Brown,1402205559 +114930,76091,Joon-ho Bong,1292177195 +114930,76093,Chris Sanders,1300339418 +114930,76093,Dean DeBlois,1300339438 +114930,76093,Jonah Hill,1326337616 +114930,76111,Asghar Farhadi,1270015512 +114930,76127,Sam Jaimes,1334907113 +114930,76134,Roy William Neill,1402208741 +114930,76143,Wolfgang Murnberger,1402576745 +114930,76158,Hirokazu Koreeda,1270497768 +114930,76169,Wolfgang Murnberger,1402576744 +114930,76171,Paul Harather,1270497878 +114930,76173,Jean-Pierre Jeunet,1270497924 +114930,76175,Louis Leterrier,1296351634 +114930,76175,Mads Mikkelsen,1315400394 +114930,76187,Albert Lamorisse,1335658485 +114930,76187,Criterion,1335658485 +114930,76251,Matthew Vaughn,1271077851 +114930,76258,Morten Tyldum,1416198586 +114930,76277,Delmer Daves,1405332538 +114930,76277,Karl Malden,1405332614 +114930,76279,Lloyd Bacon,1402192435 +114930,76288,Philippe Mora,1402212114 +114930,76692,Henry Koster,1402204771 +114930,76714,Mervyn LeRoy,1401137379 +114930,76720,Clyde Bruckman,1402200360 +114930,76720,Harold Lloyd,1402578294 +114930,76738,Joonas Berghäll,1271140628 +114930,76738,Mika Hotakainen,1271140628 +114930,76758,Charles Bennett,1403385129 +114930,76758,Charles Chaplin,1403385105 +114930,76758,Mack Sennett,1403385129 +114930,76776,Pier Paolo Pasolini,1415557274 +114930,76816,Wai-keung Lau,1408268632 +114930,76818,Te-Sheng Wei,1416196501 +114930,76823,Akira Kurosawa,1271375455 +114930,76823,Criterion,1271375484 +114930,76823,Takashi Shimura,1271375448 +114930,76836,Akira Kurosawa,1271449264 +114930,76836,Criterion,1271449245 +114930,76836,Takashi Shimura,1271449239 +114930,77143,Criterion,1335429643 +114930,77143,Gabriel Pascal,1335429638 +114930,77177,George Chan,1334198937 +114930,77184,Eric Till,1419536526 +114930,77208,Anthony Fabian,1337572252 +114930,77210,K.S. Adiyaman,1333679831 +114930,77212,Anatole Litvak,1402205190 +114930,77233,Brett Harvey,1320868336 +114930,77238,Anatole Litvak,1402205145 +114930,77266,Steve Jacobs,1320765785 +114930,77293,Daryl Duke,1301543539 +114930,77298,Danis Tanovic,1402212746 +114930,77307,Giorgos Lanthimos,1302085637 +114930,77316,Chuan Lu,1328524017 +114930,77328,Julian Jarrold,1272564174 +114930,77330,James Marsh,1272564227 +114930,77351,Takeshi Kitano,1272564488 +114930,77353,Takeshi Kitano,1272564514 +114930,77359,Anand Tucker,1272564655 +114930,77364,Sylvain White,1335270675 +114930,77412,Isao Takahata,1422958183 +114930,77421,Jay Duplass,1312320833 +114930,77421,Jonah Hill,1326337643 +114930,77421,Mark Duplass,1312320833 +114930,77433,Cecil B. DeMille,1299359829 +114930,77451,Richard Boleslawski,1402213996 +114930,77455,Banksy,1302641283 +114930,77455,Rhys Ifans,1302641778 +114930,77479,Julia Sweeney,1274668559 +114930,77493,Richard Thorpe,1402198158 +114930,77496,Carol Reed,1299361645 +114930,77496,Criterion,1299361645 +114930,77509,Elia Kazan,1427819026 +114930,77509,John Ford,1427819070 +114930,77550,Rouben Mamoulian,1273285837 +114930,77561,Jon Favreau,1295592730 +114930,77596,Samuel Maoz,1317075880 +114930,77629,Joonas Neuvonen,1277182901 +114930,77658,David F. Oyster,1292275878 +114930,77715,Abdellatif Kechiche,1423218931 +114930,77731,Johnnie To,1425461734 +114930,77752,Takeshi Kitano,1273672473 +114930,77800,Christopher Morris,1302085245 +114930,77808,Sydney Pollack,1299360794 +114930,77829,Mat Whitecross,1293916783 +114930,77829,Michael Winterbottom,1297364094 +114930,77833,Janus Metz Pedersen,1328524536 +114930,77837,Barry Levinson,1299744921 +114930,77843,J Blakeson,1323267016 +114930,77846,William Friedkin,1318241997 +114930,77854,David Cross,1301548524 +114930,77854,Lance Bangs,1301547942 +114930,77854,Michel Gondry,1295743485 +114930,77854,Olivier Gondry,1301547923 +114930,77875,Criterion,1276104214 +114930,77875,Maurice Pialat,1274581260 +114930,77891,Morris Engel,1274581668 +114930,77891,Ray Ashley,1274581668 +114930,77891,Ruth Orkin,1274581668 +114930,77899,Daniel Mann,1407239575 +114930,77907,Mads Brügger,1351107962 +114930,77917,Yasujirô Ozu,1421655434 +114930,77919,Ronald Neame,1413162120 +114930,77921,Delmer Daves,1405332549 +114930,77944,Doug Pray,1275564570 +114930,77983,Fritz Lang,1394317470 +114930,78009,Criterion,1399778536 +114930,78009,Jacques Demy,1399778536 +114930,78025,Hideaki Anno,1406027358 +114930,78034,Ricky Gervais,1304488731 +114930,78034,Stephen Merchant,1304488746 +114930,78039,Derek Cianfrance,1301447984 +114930,78064,Zane Vella,1334104840 +114930,78081,Gérard Oury,1405331446 +114930,78088,Rodrigo Cortes,1337567346 +114930,78116,Nicole Holofcener,1337571968 +114930,78124,Alvin Rakoff,1403944548 +114930,78160,Dominic Brigstocke,1335134947 +114930,78160,Ricky Gervais,1277181971 +114930,78162,Dominic Brigstocke,1335081197 +114930,78162,Ricky Gervais,1277182864 +114930,78168,Bruce Leddy,1316714915 +114930,78170,Criterion,1292228308 +114930,78170,Yasujirô Ozu,1313789875 +114930,78186,Edward Dmytryk,1405338890 +114930,78209,Jonah Hill,1326337650 +114930,78209,Nicholas Stoller,1316715163 +114930,78209,Nick Kroll,1331353080 +114930,78218,Brandon Routh,1293736333 +114930,78218,Gregor Jordan,1295988137 +114930,78224,Harry Beaumont,1408439794 +114930,78235,David Hugh Jones,1334715544 +114930,78251,Markus Goller,1333682096 +114930,78266,Vincenzo Natali,1320434633 +114930,78270,Louis Malle,1410167770 +114930,78272,Eric Rohmer,1408161622 +114930,78278,Bahman Ghobadi,1337571824 +114930,78332,Christophe Honoré,1334198735 +114930,78335,Anna Melikyan,1323267778 +114930,78337,Chris Bowman,1320184719 +114930,78340,Criterion,1335506688 +114930,78340,René Clément,1335506683 +114930,78342,Joshua Goldin,1276456284 +114930,78344,Majid Majidi,1276456318 +114930,78349,Stuart Hazeldine,1335231835 +114930,78358,Kôji Wakamatsu,1396817704 +114930,78376,Abel Gance,1421311511 +114930,78379,Aleksandr Sokurov,1414218658 +114930,78381,Carlos Saura,1302799594 +114930,78381,Criterion,1302799594 +114930,78405,René Clair,1402215473 +114930,78418,William Dieterle,1402201413 +114930,78420,Robert Wise,1405337479 +114930,78438,Martin Ritt,1403387568 +114930,78465,Richard Thorpe,1402198310 +114930,78483,Gene Kelly,1417651512 +114930,78499,Lee Unkrich,1328394214 +114930,78517,Anne Sundberg,1337571154 +114930,78517,Ricki Stern,1337571155 +114930,78519,Henry Koster,1297641546 +114930,78534,Heitor Dhalia,1395557307 +114930,78544,Dominic Brigstocke,1335080170 +114930,78544,Ricky Gervais,1279738459 +114930,78574,Debra Granik,1277182971 +114930,78614,Nuri Bilge Ceylan,1407712367 +114930,78618,Claude Chabrol,1414218742 +114930,78633,Alex Gibney,1277346996 +114930,78637,Craig Robinson,1301539905 +114930,78637,Mike Mitchell,1301540112 +114930,78646,Mike Leigh,1415104238 +114930,78651,Andrzej Wajda,1408956749 +114930,78673,Hiroshi Shimizu,1415645401 +114930,78690,Abel Gance,1421311478 +114930,78713,Edmund Goulding,1402206143 +114930,78715,Clarence Brown,1402205632 +114930,78723,Christine Edzard,1413162087 +114930,78729,Jon Cassar,1320434391 +114930,78737,Henry King,1402196595 +114930,78739,Emeric Pressburger,1402191234 +114930,78739,Michael Powell,1402191234 +114930,78742,Frank Perry,1402997972 +114930,78746,Michael Stephenson,1337567112 +114930,78757,Stephen Frears,1448238264 +114930,78765,Frank Borzage,1402206888 +114930,78836,Gaspar Noé,1302085629 +114930,78856,Marie-Monique Robin,1292832673 +114930,78860,Sydney Pollack,1409477304 +114930,78895,Emir Kusturica,1278364308 +114930,78898,Fielder Cook,1278364413 +114930,78903,Costa-Gavras,1411399160 +114930,78903,Criterion,1453094755 +114930,78921,Criterion,1335657701 +114930,78921,David Lean,1335657696 +114930,78944,Peter Watkins,1417650445 +114930,78946,Satyajit Ray,1333682578 +114930,78978,Claude Chabrol,1335503003 +114930,78978,Criterion,1335503003 +114930,79003,Michael Curtiz,1402192643 +114930,79008,Trey Parker,1335302732 +114930,79035,Mitchell Leisen,1402199539 +114930,79038,George Marshall,1403521567 +114930,79045,Mark Cowen,1431835698 +114930,79057,Nimród Antal,1331353462 +114930,79065,David Butler,1401259859 +114930,79073,Tom DiCillo,1320183331 +114930,79091,Chris Renaud,1302040158 +114930,79091,Danny McBride,1300337276 +114930,79091,Jason Segel,1296947649 +114930,79091,Jemaine Clement,1293366090 +114930,79091,Ken Jeong,1297398595 +114930,79091,Pierre Coffin,1302040169 +114930,79091,Steve Carell,1302040806 +114930,79094,Mark Sandrich,1402649666 +114930,79132,Christopher Nolan,1279738369 +114930,79132,Cillian Murphy,1312352218 +114930,79132,Ken Watanabe,1293824605 +114930,79139,Jon Turteltaub,1320183110 +114930,79185,James Mangold,1299852246 +114930,79197,Russell Rouse,1422440443 +114930,79207,Nudity (Topless - Notable),1279739106 +114930,79230,Udayan Prasad,1279739297 +114930,79242,Lisa Cholodenko,1317074199 +114930,79274,Brandon Vietti,1335230316 +114930,79276,Jacques Rivette,1453096136 +114930,79299,Anthony Minghella,1299364540 +114930,79318,Ben Steinbauer,1297394536 +114930,79327,King Vidor,1402203636 +114930,79335,Robert Z. Leonard,1402199949 +114930,79337,Monta Bell,1410673818 +114930,79339,Robert Z. Leonard,1402199875 +114930,79357,Jaco Van Dormael,1302641115 +114930,79357,Rhys Ifans,1302641780 +114930,79363,Joe May,1402208895 +114930,79368,Vittorio De Sica,1407135679 +114930,79397,William Keighley,1402218243 +114930,79428,Jay Roach,1302040053 +114930,79428,Jemaine Clement,1329164821 +114930,79428,Nick Kroll,1331353073 +114930,79428,Steve Carell,1302040849 +114930,79428,Zach Galifianakis,1333069390 +114930,79458,Nagisa Ôshima,1430118192 +114930,79461,Nagisa Ôshima,1430118189 +114930,79467,Gianni Di Gregorio,1337572041 +114930,79475,Sang-soo Hong,1403606100 +114930,79523,Béla Tarr,1412838952 +114930,79525,Fritz Lang,1401086733 +114930,79528,Victor Fleming,1334734114 +114930,79533,Chuck Jones,1303417470 +114930,79533,Phil Monroe,1303417476 +114930,79541,Laurent Tirard,1334905938 +114930,79553,Wilson Yip,1292283663 +114930,79578,Risto Jarva,1292283638 +114930,79590,Bart Freundlich,1301541084 +114930,79592,Adam McKay,1301034225 +114930,79592,Steve Coogan,1312349768 +114930,79596,Don Siegel,1401090864 +114930,79633,Nils Gaup,1302081324 +114930,79638,Ettore Scola,1412530245 +114930,79640,Ettore Scola,1412530262 +114930,79647,Criterion,1335507261 +114930,79647,Robert Day,1335507257 +114930,79651,Bryan Forbes,1411209182 +114930,79667,Walter Lang,1406197187 +114930,79677,Jeff Zimbalist,1292832951 +114930,79677,Michael Zimbalist,1292832951 +114930,79692,Ragnar Bragason,1403682558 +114930,79695,Jet Li,1300398350 +114930,79695,Sylvester Stallone,1333070033 +114930,79702,Bill Hader,1297398493 +114930,79702,Brandon Routh,1293736334 +114930,79702,Edgar Wright,1299961765 +114930,79702,Jason Schwartzman,1296951960 +114930,79702,Michael Cera,1295431430 +114930,79711,Archie Mayo,1402205731 +114930,79760,Pete McCormack,1320182837 +114930,79798,Xavier Dolan,1292280166 +114930,79800,Criterion,1335511172 +114930,79800,Todd Solondz,1335511166 +114930,79802,Pablo Trapero,1422086460 +114930,79809,Ernst Lubitsch,1402194597 +114930,79824,Thomas Balmes,1335051875 +114930,79828,François Truffaut,1407717013 +114930,79832,Mitchell Leisen,1402199503 +114930,79842,Antony Thomas,1413177290 +114930,79844,René Clément,1403602413 +114930,79850,Heidi Ewing,1314173622 +114930,79850,Rachel Grady,1314173623 +114930,79855,Busby Berkeley,1402192330 +114930,79855,Lloyd Bacon,1402192350 +114930,79866,Marc Levin,1402998645 +114930,79870,Leon Gast,1418020014 +114930,79872,Cecil B. DeMille,1402202054 +114930,79872,Frank Urson,1402202054 +114930,79874,Arthur Rosson,1319416452 +114930,79874,Criterion,1292283035 +114930,79874,Josef von Sternberg,1292283036 +114930,79897,Aaron Schneider,1317075655 +114930,79901,Frederick Wiseman,1419834207 +114930,79916,Pablo Larraín,1451896763 +114930,79918,Ralph Nelson,1402576693 +114930,79923,Mitchell Leisen,1402199554 +114930,79925,Henry King,1402196699 +114930,79953,Walter Lang,1398761988 +114930,79955,Criterion,1299360171 +114930,79955,Ernst Lubitsch,1299360171 +114930,79977,Clarence Brown,1402205610 +114930,80004,Luis Mandoki,1403390618 +114930,80014,Jan Troell,1411209741 +114930,80044,Peter Yates,1318967588 +114930,80072,Claude Miller,1407712793 +114930,80076,Jacques Rivette,1453096132 +114930,80097,Jerzy Kawalerowicz,1420509828 +114930,80104,John Huston,1402199139 +114930,80109,Grigori Kozintsev,1419825118 +114930,80109,Iosif Shapiro,1419825118 +114930,80124,Sergey Bodrov Jr.,1419967148 +114930,80126,Anton Corbijn,1312320763 +114930,80141,Eric Till,1419536534 +114930,80144,Ernst Lubitsch,1402194692 +114930,80146,Raoul Ruiz,1421056095 +114930,80152,Ken Hughes,1402199264 +114930,80166,Josh Gordon,1320867749 +114930,80166,Will Speck,1320867749 +114930,80185,Josh Fox,1283546413 +114930,80195,Liz Garbus,1406107024 +114930,80206,Chia-Liang Liu,1411778319 +114930,80217,Todd Phillips,1296424376 +114930,80219,Ethan Maniquis,1335305073 +114930,80219,Robert Rodriguez,1299961958 +114930,80224,Alfred E. Green,1417650974 +114930,80260,William Dieterle,1402201444 +114930,80264,Delmer Daves,1405332556 +114930,80269,Melvin Frank,1402209117 +114930,80269,Norman Panama,1402209117 +114930,80288,William Keighley,1402218320 +114930,80292,Charles Vidor,1405334128 +114930,80315,Mika Kaurismäki,1292221563 +114930,80328,Aki Kaurismäki,1404904030 +114930,80328,Mika Kaurismäki,1404904031 +114930,80374,Hitoshi Matsumoto,1334531736 +114930,80400,Lloyd Bacon,1318244041 +114930,80421,William A. Wellman,1401259557 +114930,80432,Harry Lachman,1402200641 +114930,80432,Oliver Hardy,1402200630 +114930,80432,Stan Laurel,1402200630 +114930,80463,David Fincher,1302085847 +114930,80467,Frederick Wiseman,1419834224 +114930,80469,Lauren Montgomery,1419551236 +114930,80487,Jean-Luc Godard,1415557113 +114930,80489,Ben Affleck,1326616904 +114930,80491,Criterion,1335510070 +114930,80491,Gillo Pontecorvo,1335510065 +114930,80494,Phil Karlson,1402208094 +114930,80549,Will Gluck,1311992934 +114930,80553,Jeffrey Friedman,1335035535 +114930,80553,Rob Epstein,1335035535 +114930,80586,Rob Reiner,1299642972 +114930,80592,Jules Dassin,1402201368 +114930,80615,Zack Snyder,1292282569 +114930,80622,Irving Rapper,1403385340 +114930,80646,Yoshiyuki Kuroda,1400445523 +114930,80648,Kenji Misumi,1400445482 +114930,80677,Claude Sautet,1335430695 +114930,80677,Criterion,1335430700 +114930,80693,Anna Boden,1301448342 +114930,80693,Ryan Fleck,1301448312 +114930,80693,Zach Galifianakis,1333069384 +114930,80713,Gloria LaMorte,1385458844 +114930,80713,Paola Mendoza,1385458844 +114930,80715,Ahmed Ahmed,1332294980 +114930,80715,Omid Djalili,1299224758 +114930,80719,Satyajit Ray,1408087103 +114930,80742,Frederick Wiseman,1419834232 +114930,80746,Edward Sedgwick,1402200510 +114930,80746,Malcolm St. Clair,1402200510 +114930,80746,Nick Grinde,1402200510 +114930,80748,Norman Z. McLeod,1299627600 +114930,80763,Hue Rhodes,1295124364 +114930,80789,Jeff Bleckner,1404810083 +114930,80797,Norman Foster,1401087798 +114930,80799,Edward Sedgwick,1402203371 +114930,80808,Dan Curtis,1407712701 +114930,80812,Rainer Werner Fassbinder,1408917169 +114930,80827,Jack Conway,1402199687 +114930,80831,Matt Reeves,1302085159 +114930,80839,Randall Wallace,1323687070 +114930,80846,John Erick Dowdle,1335230350 +114930,80862,Ariel Schulman,1319410597 +114930,80862,Henry Joost,1319410597 +114930,80899,Robert Z. Leonard,1402197833 +114930,80899,W.S. Van Dyke,1402197833 +114930,80906,Charles Ferguson,1302085876 +114930,80917,Gareth Edwards,1335231874 +114930,80928,David Cross,1301548522 +114930,80928,Lance Bangs,1301548499 +114930,80939,Tony Goldwyn,1325939804 +114930,80952,Ronald Neame,1413162148 +114930,80954,Norman Z. McLeod,1402194488 +114930,80969,Mark Romanek,1292280481 +114930,81018,Sylvain Chomet,1317075742 +114930,81020,Mona Achache,1337570903 +114930,81027,Veiko Õunpuu,1411461246 +114930,81029,George Marshall,1403521585 +114930,81031,Niels Arden Oplev,1295123587 +114930,81046,Rainer Werner Fassbinder,1408917172 +114930,81054,Criterion,1399778644 +114930,81054,Rainer Werner Fassbinder,1399778620 +114930,81059,Paolo Sorrentino,1406027221 +114930,81061,Nicholas Ray,1402213336 +114930,81072,Witold Leszczynski,1423394922 +114930,81075,Veiko Õunpuu,1411461247 +114930,81102,Miguel M. Delgado,1423218855 +114930,81107,Mikio Naruse,1420506767 +114930,81123,Sam Wood,1402196066 +114930,81158,Sebastian Junger,1328527081 +114930,81158,Tim Hetherington,1328527081 +114930,81182,Kim Hyeong-Joon,1407237249 +114930,81191,Davis Guggenheim,1302083921 +114930,81229,Robert Schwentke,1294399940 +114930,81257,Susanne Bier,1297398898 +114930,81257,Ulrich Thomsen,1297398814 +114930,81276,Oliver Stone,1410246757 +114930,81328,Carlos Saura,1442823586 +114930,81330,Kate Home,1320184644 +114930,81330,Mark Henderson,1320184644 +114930,81357,Dariush Mehrjui,1292205286 +114930,81366,Criterion,1291418794 +114930,81366,Yasujirô Ozu,1313789870 +114930,81371,Criterion,1291418814 +114930,81371,Yasujirô Ozu,1313789873 +114930,81383,Pascal Chaumeil,1329004371 +114930,81385,Xavier Beauvois,1337571868 +114930,81396,Victor Fleming,1402202753 +114930,81424,Michael Noer,1334199313 +114930,81424,Tobias Lindholm,1334199313 +114930,81443,William Wyler,1402203794 +114930,81447,Bahman Farmanara,1324751619 +114930,81456,Xavier Dolan,1288728977 +114930,81501,Nils Malmros,1406635073 +114930,81512,Clint Eastwood,1316714805 +114930,81516,Christopher Smith,1321646689 +114930,81537,Danny McBride,1300337281 +114930,81537,Todd Phillips,1296424366 +114930,81537,Zach Galifianakis,1296424433 +114930,81546,Alexander Korda,1421309154 +114930,81562,Danny Boyle,1296352294 +114930,81564,David Cross,1301552225 +114930,81564,Jonah Hill,1292280069 +114930,81564,Tom McGrath,1292280096 +114930,81568,Jack Kinney,1328523183 +114930,81585,Busby Berkeley,1402192309 +114930,81591,Darren Aronofsky,1302085934 +114930,81641,Doug Liman,1302085562 +114930,81656,Fritz Lang,1402205898 +114930,81658,Michael Curtiz,1402192600 +114930,81665,Jerzy Skolimowski,1408917084 +114930,81673,Nuri Bilge Ceylan,1407712373 +114930,81681,Criterion,1335508377 +114930,81681,Samuel Fuller,1335508372 +114930,81684,Budd Boetticher,1408920284 +114930,81690,Pen-Ek Ratanaruang,1409993523 +114930,81704,Jessica Hausner,1419533720 +114930,81731,Sergio Mimica-Gezzan,1334966053 +114930,81736,Grigori Kozintsev,1292229971 +114930,81738,Mikio Naruse,1420506751 +114930,81751,Apichatpong Weerasethakul,1337572612 +114930,81768,Alexander Korda,1402650131 +114930,81768,Lothar Mendes,1402202242 +114930,81782,Tony Scott,1316715844 +114930,81786,Abbas Kiarostami,1292234174 +114930,81786,Criterion,1335429925 +114930,81788,Paul Haggis,1328523554 +114930,81804,Jonathan Lynn,1299645367 +114930,81817,Criterion,1335429796 +114930,81817,Olivier Assayas,1295987877 +114930,81819,Alejandro González Iñárritu,1299963399 +114930,81823,Peter Strickland,1421829367 +114930,81834,David Yates,1302641504 +114930,81834,Rhys Ifans,1302641784 +114930,81845,Oscar (Best Picture),1299265295 +114930,81845,Tom Hooper,1300224024 +114930,81847,Byron Howard,1302596858 +114930,81847,Nathan Greno,1302596887 +114930,81857,Robert Z. Leonard,1402199942 +114930,81910,Don Argott,1337566675 +114930,81932,David O. Russell,1327621650 +114930,81959,Michel Deville,1424758487 +114930,81975,Alain Resnais,1413293695 +114930,81975,Chris Marker,1412149097 +114930,81975,Ghislain Cloquet,1413293695 +114930,81983,Abbas Kiarostami,1411874502 +114930,82003,Chantal Akerman,1302773678 +114930,82003,Criterion,1302773656 +114930,82035,Billy Corben,1334520982 +114930,82037,Amir Bar-Lev,1292272892 +114930,82041,Sean Byrne,1358282505 +114930,82051,Josef von Sternberg,1402208422 +114930,82053,George Hickenlooper,1335051344 +114930,82059,Christian Carion,1337570633 +114930,82070,Samuel Fuller,1401092677 +114930,82102,Mat Whitecross,1293916782 +114930,82119,Borys Lankosz,1422954520 +114930,82121,Don Siegel,1402206616 +114930,82129,David Lean,1402205977 +114930,82131,Anthony Mann,1410678876 +114930,82141,Martin Ritt,1309287718 +114930,82150,Paul King,1328526852 +114930,82169,Michael Apted,1302778026 +114930,82173,Criterion,1335657867 +114930,82173,Lena Dunham,1335657862 +114930,82175,Bryan Poyser,1350341215 +114930,82182,Ernst Lubitsch,1402194245 +114930,82182,H. Bruce Humberstone,1402194245 +114930,82182,James Cruze,1402194246 +114930,82182,Norman Taurog,1402194245 +114930,82182,Norman Z. McLeod,1402194246 +114930,82182,Stephen Roberts,1402194245 +114930,82182,William A. Seiter,1402194245 +114930,82196,Clarence Brown,1402205574 +114930,82227,Henry Koster,1402204745 +114930,82242,Jalmari Helander,1291821615 +114930,82298,Budd Boetticher,1408920269 +114930,82302,Criterion,1335501370 +114930,82302,Marco Ferreri,1335501336 +114930,82306,Ernst Lubitsch,1402194718 +114930,82306,John M. Stahl,1402194743 +114930,82308,Francesco Rosi,1419331334 +114930,82311,Mitchell Leisen,1402199522 +114930,82313,Jacques Tourneur,1402208665 +114930,82315,Claude Chabrol,1335429247 +114930,82315,Criterion,1335429253 +114930,82322,Mia Hansen-Løve,1337570661 +114930,82324,Semih Kaplanoglu,1426473742 +114930,82335,Louis Malle,1410167778 +114930,82337,Georges Méliès,1453196047 +114930,82393,Marzieh Makhmalbaf,1292048657 +114930,82420,Best of Rotten Tomatoes: All Time,1292220436 +114930,82420,Gini Reticker,1333682004 +114930,82459,Coen Brothers,1292324435 +114930,82463,Mike Leigh,1292426627 +114930,82527,Richard J. Lewis,1328523091 +114930,82531,Irving Rapper,1387083606 +114930,82534,John Wells,1335082254 +114930,82589,Rodrigo García,1300230522 +114930,82597,Richard Brooks,1401883316 +114930,82633,Criterion,1329858373 +114930,82633,Kaneto Shindô,1292828315 +114930,82641,Cheh Chang,1414919224 +114930,82667,Ji-woon Kim,1292921336 +114930,82678,Claude Chabrol,1414218765 +114930,82680,Jacques Tourneur,1402208672 +114930,82722,Glenn Jordan,1413188948 +114930,82732,Russell Rouse,1422440450 +114930,82747,Criterion,1293183624 +114930,82747,Shôhei Imamura,1315398272 +114930,82749,Criterion,1293183631 +114930,82749,Shôhei Imamura,1315398270 +114930,82753,Krzysztof Zanussi,1422957346 +114930,82765,Sheng Ding,1420725300 +114930,82767,John Cameron Mitchell,1337572107 +114930,82772,Dominik Graf,1412768660 +114930,82834,Criterion,1293431529 +114930,82834,Jean Renoir,1293431530 +114930,82836,Barry Poltermann,1334106755 +114930,82836,Best of Rotten Tomatoes: All Time,1293431680 +114930,82836,Frank L. Anderson,1334106754 +114930,82848,Buster Keaton,1301668387 +114930,82848,Edward F. Cline,1301668387 +114930,82850,Buster Keaton,1402200142 +114930,82850,Edward F. Cline,1402200142 +114930,82852,Nick Kroll,1331353070 +114930,82852,Paul Weitz,1302596956 +114930,82854,Rob Letterman,1319417608 +114930,82857,Ilisa Barbash,1337572391 +114930,82857,Lucien Castaing-Taylor,1337572391 +114930,82906,Ravi Chopra,1313790241 +114930,82920,Criterion,1301660515 +114930,82920,Ingmar Bergman,1303239698 +114930,82926,Mikkel Nørgaard,1369235089 +114930,82931,Álex de la Iglesia,1414480592 +114930,82934,Judith Ehrlich,1295120948 +114930,82934,Rick Goldsmith,1295120948 +114930,82976,Buster Keaton,1402200228 +114930,82976,Edward F. Cline,1402200228 +114930,82978,Buster Keaton,1402200205 +114930,82978,Edward F. Cline,1402200205 +114930,82982,Gregory La Cava,1422608022 +114930,83034,László Benedek,1444548747 +114930,83059,Claire Denis,1335658505 +114930,83059,Criterion,1335658510 +114930,83082,Bruce Beresford,1334905014 +114930,83096,Buster Keaton,1402200185 +114930,83096,Edward F. Cline,1402200185 +114930,83132,Hiromasa Yonebayashi,1328524261 +114930,83134,Eli Craig,1335271203 +114930,83180,Lucy Walker,1337569892 +114930,83182,Hajime Ishimine,1320185637 +114930,83182,Katsuhito Ishii,1294086772 +114930,83182,Shunichiro Miki,1320185637 +114930,83182,Tadanobu Asano,1333062629 +114930,83193,Criterion,1294086539 +114930,83193,Yasujirô Ozu,1294085746 +114930,83219,Leslie Iwerks,1294253826 +114930,83244,Philippe Falardeau,1419443953 +114930,83250,Buzz Kulik,1402216927 +114930,83266,Rakesh Roshan,1334198407 +114930,83270,Nigel Cole,1294399853 +114930,83281,Robert Schwentke,1413184032 +114930,83291,Best of Rotten Tomatoes: All Time,1294399985 +114930,83291,Margaret Brown,1333679493 +114930,83293,Best of Rotten Tomatoes: All Time,1294400081 +114930,83293,João Jardim,1334908998 +114930,83293,Karen Harley,1334908998 +114930,83293,Lucy Walker,1295427509 +114930,83308,Joe May,1402208877 +114930,83318,Buster Keaton,1295251223 +114930,83318,Malcolm St. Clair,1301435150 +114930,83322,Buster Keaton,1402200130 +114930,83322,Edward F. Cline,1402200130 +114930,83330,Uli Edel,1406542444 +114930,83332,John Scheinfeld,1334734159 +114930,83334,Gideon Raff,1440364686 +114930,83343,Edmund Goulding,1402206137 +114930,83349,Michel Gondry,1316714864 +114930,83359,Buster Keaton,1295251230 +114930,83359,Edward F. Cline,1301434986 +114930,83361,Buster Keaton,1402200212 +114930,83361,Edward F. Cline,1402200212 +114930,83369,Peter Weir,1335083533 +114930,83374,Sngmoo Lee,1295120681 +114930,83411,Buster Keaton,1402200152 +114930,83411,Edward F. Cline,1402200152 +114930,83415,Elem Klimov,1418112170 +114930,83435,Fred Zinnemann,1402176637 +114930,83437,Richard Wallace,1403941848 +114930,83439,George Roy Hill,1401092386 +114930,83446,Archie Mayo,1402205714 +114930,83506,Ricky Gervais,1304488728 +114930,83525,Takeshi Kitano,1295252484 +114930,83529,Jan Troell,1411209731 +114930,83531,Claude Berri,1335658099 +114930,83531,Criterion,1335658104 +114930,83538,Criterion,1335510993 +114930,83538,Jean-Pierre Melville,1335510987 +114930,83540,Criterion,1421654320 +114930,83540,Jean-Pierre Melville,1376314051 +114930,83558,Sang-soo Hong,1403606093 +114930,83560,Roberto Gavaldón,1333679666 +114930,83575,Lisandro Alonso,1419970199 +114930,83577,Michael Powell,1402191247 +114930,83581,George Cukor,1402209932 +114930,83588,Alain Resnais,1413293822 +114930,83662,Edward Sedgwick,1402203365 +114930,83756,Nils Malmros,1406635066 +114930,83765,Buster Keaton,1402200116 +114930,83765,Malcolm St. Clair,1402200116 +114930,83798,Jordan Scott,1297621100 +114930,83801,Yael Hersonski,1337570696 +114930,83803,Teddy Newton,1306102684 +114930,83827,Jeff Malmberg,1328524188 +114930,83833,Frank Borzage,1402206882 +114930,83837,Buster Keaton,1402200171 +114930,83837,Edward F. Cline,1402200171 +114930,83910,Ron Howard,1340604965 +114930,83972,Criterion,1335504462 +114930,83972,James Ivory,1335504457 +114930,83976,Michael Winterbottom,1297364092 +114930,83976,Steve Coogan,1312349740 +114930,84090,So Yong Kim,1337572531 +114930,84094,Criterion,1399778739 +114930,84094,Rainer Werner Fassbinder,1399778739 +114930,84098,Jean Negulesco,1402196464 +114930,84103,Philippe Falardeau,1419443954 +114930,84111,Jacques Rivette,1453096114 +114930,84116,Chang-dong Lee,1296624003 +114930,84122,Frank Borzage,1402206837 +114930,84125,Criterion,1299360188 +114930,84125,Ernst Lubitsch,1299360188 +114930,84128,Radu Muntean,1350348940 +114930,84131,Raoul Ruiz,1421056080 +114930,84150,Joseph Losey,1405333485 +114930,84152,Neil Burger,1326613716 +114930,84154,Robert Barry Ptolemy,1296833338 +114930,84156,Dmitry Vasyukov,1334020888 +114930,84158,Dorothy Arzner,1402214059 +114930,84160,Fenton Bailey,1420373170 +114930,84160,Randy Barbato,1420373170 +114930,84187,Kazuya Tsurumaki,1296946619 +114930,84187,Masayuki,1296946619 +114930,84223,Stéphane Brizé,1349462301 +114930,84232,Buster Keaton,1402200193 +114930,84232,Edward F. Cline,1402200193 +114930,84234,Andreas Öhman,1334102478 +114930,84236,Emmett Malloy,1334732740 +114930,84240,Icíar Bollaín,1328526866 +114930,84242,Jake Scott,1297364071 +114930,84246,Roy Del Ruth,1385944361 +114930,84248,Criterion,1335651725 +114930,84248,Mario Monicelli,1335651720 +114930,84258,Danny Kaye,1297641711 +114930,84258,Elliott Nugent,1316502649 +114930,84273,Peter Joseph,1297620727 +114930,84300,Bryan Forbes,1411209209 +114930,84302,Claude Lelouch,1409396749 +114930,84392,Brad Furman,1333678303 +114930,84414,Sam Liu,1419551513 +114930,84444,Criterion,1335425302 +114930,84444,Steven Soderbergh,1335425292 +114930,84448,Lucas Belvaux,1421307815 +114930,84450,Sang-soo Hong,1403606106 +114930,84455,Bruno Dumont,1402577130 +114930,84467,Alexander Mackendrick,1417511859 +114930,84481,Mitsuo Yanagimachi,1423394785 +114930,84485,Criterion,1399778085 +114930,84485,Don Siegel,1399778093 +114930,84508,Hugo Fregonese,1418112769 +114930,84512,George Cukor,1402209886 +114930,84523,Criterion,1298056511 +114930,84523,Kihachi Okamoto,1298056458 +114930,84523,Tatsuya Nakadai,1325938969 +114930,84601,Jaume Collet-Serra,1335282967 +114930,84615,Miguel Arteta,1326208461 +114930,84637,Kelly Asbury,1298478428 +114930,84639,Gordon Douglas,1402200665 +114930,84639,Oliver Hardy,1402200667 +114930,84639,Stan Laurel,1402200667 +114930,84663,Tom Hooper,1334906767 +114930,84665,George Sidney,1423218893 +114930,84669,Henry King,1401087221 +114930,84671,Anthony Asquith,1418112608 +114930,84696,John Landis,1298994560 +114930,84696,Simon Pegg,1301550455 +114930,84716,Hae-jun Lee,1328524000 +114930,84770,Alex Gibney,1337568166 +114930,84772,Bill Hader,1301550271 +114930,84772,Greg Mottola,1298996349 +114930,84772,Joe Lo Truglio,1301550785 +114930,84772,Nick Frost,1301550479 +114930,84772,Simon Pegg,1301550452 +114930,84775,Thomas Vinterberg,1303419423 +114930,84779,Claude Chabrol,1346048364 +114930,84779,Gérard Depardieu,1346048381 +114930,84796,Chia-Liang Liu,1411778310 +114930,84801,Semih Kaplanoglu,1426473741 +114930,84829,Raoul Ruiz,1421056131 +114930,84844,Aleksey Balabanov,1415555780 +114930,84847,Jim O'Hanlon,1301661972 +114930,84852,D.W. Griffith,1411550089 +114930,84869,Robert Enrico,1408608160 +114930,84880,Josh Appignanesi,1334733059 +114930,84880,Omid Djalili,1299224761 +114930,84944,Gore Verbinski,1299626456 +114930,84952,Tetsuya Nakashima,1334967724 +114930,84954,George Nolfi,1299626356 +114930,84963,Herbert Kline,1402197640 +114930,84963,W.S. Van Dyke,1402197640 +114930,84980,Dome Karukoski,1419970343 +114930,84983,Lewis Milestone,1402202889 +114930,84987,Pierre Adidge,1422837279 +114930,84987,Robert Abel,1422837279 +114930,84989,Martin Scorsese,1413177472 +114930,85022,Farrelly Brothers,1299915124 +114930,85175,Fritz Lang,1402205864 +114930,85179,Mamoru Hosoda,1300224465 +114930,85190,Martin Scorsese,1413177504 +114930,85205,Erich von Stroheim,1402195893 +114930,85211,Anh Hung Tran,1350345276 +114930,85213,Tommy Lee Jones,1335047897 +114930,85231,Criterion,1335658069 +114930,85231,Keisuke Kinoshita,1335658063 +114930,85259,Wolfgang Reitherman,1300992603 +114930,85270,Roy Boulting,1418112701 +114930,85273,Joe Berlinger,1337570011 +114930,85312,Kunio Katô,1334198642 +114930,85316,John Lounsbery,1300992098 +114930,85330,Makoto Shinkai,1394175220 +114930,85342,José Padilha,1303417985 +114930,85354,Jean-François Richet,1300994695 +114930,85372,François Ozon,1337572013 +114930,85374,Clarence Brown,1402205500 +114930,85387,Ernest B. Schoedsack,1402208944 +114930,85387,Merian C. Cooper,1402208944 +114930,85394,Werner Herzog,1328525572 +114930,85412,André Øvredal,1328525646 +114930,85414,Duncan Jones,1328520672 +114930,85438,Cary Fukunaga,1301157834 +114930,85440,Sidney Franklin,1402202595 +114930,85453,John Sturges,1403604416 +114930,85476,George Cukor,1402209966 +114930,85510,Zack Snyder,1301434531 +114930,85527,Matthew Porterfield,1350347658 +114930,85549,Naomi Kawase,1416381461 +114930,85552,Yesim Ustaoglu,1405335393 +114930,85728,Joe Dante,1301668940 +114930,85736,Angus MacLane,1301898215 +114930,85744,Miguel M. Delgado,1423218858 +114930,85774,Asif Kapadia,1328526920 +114930,85777,Shusuke Kaneko,1303417544 +114930,85780,Peter Shin,1302480808 +114930,85790,Kelly Reichardt,1337571677 +114930,85792,Mitchell Leisen,1402199590 +114930,85794,Victor Saville,1407841943 +114930,85796,Jason Eisener,1335080850 +114930,85861,Howard Hawks,1402197292 +114930,85881,Thomas McCarthy,1302231390 +114930,85894,Anthony Asquith,1418112622 +114930,85910,Elia Suleiman,1405149411 +114930,86000,Taika Waititi,1334532577 +114930,86055,Ertem Egilmez,1424758567 +114930,86057,Ertem Egilmez,1424758568 +114930,86059,Tim Hill,1351537713 +114930,86083,Ertem Egilmez,1424758565 +114930,86087,Ertem Egilmez,1424758566 +114930,86139,Abbas Kiarostami,1411874542 +114930,86142,Kôji Yakusho,1335034581 +114930,86142,Takashi Miike,1302761612 +114930,86148,Brandon Routh,1302673427 +114930,86148,Buddy Giovinazzo,1302673430 +114930,86151,Barbet Schroeder,1302673446 +114930,86151,Criterion,1302673446 +114930,86166,Criterion,1302761718 +114930,86166,Ingmar Bergman,1303239663 +114930,86168,Criterion,1302761782 +114930,86168,Ingmar Bergman,1303239696 +114930,86173,Georg Wilhelm Pabst,1407062979 +114930,86181,Mikio Naruse,1420506744 +114930,86190,Joe Wright,1302797311 +114930,86204,Alberto Cavalcanti,1409477069 +114930,86206,William Dieterle,1334904905 +114930,86231,Allan King,1302883903 +114930,86231,Criterion,1302883903 +114930,86237,Mick Jackson,1334361186 +114930,86244,Daniel Espinosa,1411883733 +114930,86246,Criterion,1302884121 +114930,86246,Ingmar Bergman,1303239690 +114930,86279,Michael Madsen,1334362061 +114930,86286,Chuck Jones,1412531464 +114930,86286,Friz Freleng,1412531464 +114930,86286,Greg Ford,1412531464 +114930,86286,Maurice Noble,1412531464 +114930,86286,Robert McKimson,1412531464 +114930,86286,Terry Lennon,1412531464 +114930,86290,Matt Harlock,1328523103 +114930,86290,Paul Thomas,1328523103 +114930,86298,Carlos Saldanha,1303417096 +114930,86298,Jemaine Clement,1329164819 +114930,86300,Bertrand Tavernier,1337572076 +114930,86308,Delbert Mann,1385941586 +114930,86310,Jean Negulesco,1402196457 +114930,86314,Richard Fleischer,1402198801 +114930,86320,Lars von Trier,1303417629 +114930,86332,Kenneth Branagh,1304433296 +114930,86332,Tadanobu Asano,1333062610 +114930,86337,Henry Levin,1420274369 +114930,86345,Louis C.K.,1303795653 +114930,86347,Louis C.K.,1304488688 +114930,86347,Shannon Hartman,1335156932 +114930,86372,Anatole Litvak,1402205169 +114930,86377,Louis C.K.,1304576753 +114930,86380,Richard Quine,1408919117 +114930,86401,Friðrik Þór Friðriksson,1403521195 +114930,86418,Rouben Mamoulian,1402195426 +114930,86436,Samuel Fuller,1402213660 +114930,86453,Criterion,1303795212 +114930,86453,Nagisa Ôshima,1303796403 +114930,86455,Criterion,1303795215 +114930,86455,Nagisa Ôshima,1303796401 +114930,86471,Donald MacKenzie,1421651688 +114930,86471,Louis J. Gasnier,1421651688 +114930,86487,Todd Haynes,1333064308 +114930,86508,Criterion,1303969813 +114930,86508,Nagisa Ôshima,1303969813 +114930,86510,Criterion,1303969791 +114930,86510,Mikio Naruse,1303969827 +114930,86536,Frederick Wiseman,1304430720 +114930,86539,Dominic Murphy,1386404896 +114930,86576,Cosima Dannoritzer,1334020554 +114930,86578,Michel Leclerc,1333832469 +114930,86604,Paul Fierlinger,1337571805 +114930,86604,Sandra Fierlinger,1337571805 +114930,86620,David Butler,1401259831 +114930,86628,Jonathan Hensleigh,1335053632 +114930,86648,Mervyn LeRoy,1401137416 +114930,86655,Criterion,1335502770 +114930,86655,Dudley Murphy,1335502765 +114930,86668,Emma Cooper,1328524179 +114930,86745,Criterion,1306101588 +114930,86745,Louis Malle,1306101588 +114930,86750,Benjamin Heisenberg,1350348347 +114930,86768,Sang-soo Hong,1403606077 +114930,86770,Manoel de Oliveira,1411721420 +114930,86781,Denis Villeneuve,1306102115 +114930,86815,Sean McNamara,1334967589 +114930,86833,Paul Feig,1306102725 +114930,86858,Lewis Milestone,1402202907 +114930,86862,Mitchell Leisen,1402199545 +114930,86880,Rob Marshall,1306102938 +114930,86882,Woody Allen,1328525626 +114930,86884,Criterion,1360319638 +114930,86884,Jean-Pierre Dardenne,1334730934 +114930,86884,Luc Dardenne,1334730934 +114930,86892,Jeong-beom Lee,1310419593 +114930,86896,William Dieterle,1402201425 +114930,86898,Terrence Malick,1335276866 +114930,86906,Chris J. Ford,1333679278 +114930,86911,Ken Jeong,1308057818 +114930,86911,Todd Phillips,1306103336 +114930,86911,Zach Galifianakis,1308057818 +114930,86922,Dany Boon,1313791029 +114930,86927,Mitchell Leisen,1402199567 +114930,86931,Anatole Litvak,1402205214 +114930,86949,Conor Horgan,1350345781 +114930,86952,Mohamed Al Daradji,1350377277 +114930,86985,David Heilbroner,1409643492 +114930,86985,Kate Davis,1409643481 +114930,87004,Criterion,1351713108 +114930,87004,Wim Wenders,1337571945 +114930,87008,Carol Reed,1402578604 +114930,87033,Sadao Yamanaka,1415558280 +114930,87040,Criterion,1399775842 +114930,87040,Ki-young Kim,1399775794 +114930,87042,Barbara Loden,1443434023 +114930,87047,Manoel de Oliveira,1411721434 +114930,87053,Rowland V. Lee,1402202498 +114930,87061,João César Monteiro,1415554394 +114930,87069,Criterion,1335651936 +114930,87069,Pedro Costa,1335651936 +114930,87179,Anatole Litvak,1402205205 +114930,87192,Joe Cornish,1331352532 +114930,87192,Nick Frost,1331352516 +114930,87194,Emilio Estevez,1350379100 +114930,87218,John Berry,1385535189 +114930,87220,Richard Fleischer,1402198867 +114930,87222,Danny McBride,1343242381 +114930,87222,David Cross,1320765719 +114930,87222,Jennifer Yuh,1307543195 +114930,87232,Matthew Vaughn,1307543153 +114930,87234,Richard Ayoade,1335133399 +114930,87260,George Fitzmaurice,1402214091 +114930,87260,Harry d'Abbadie d'Arrast,1402578861 +114930,87262,Sidney Franklin,1402202611 +114930,87266,Alfred Santell,1407234684 +114930,87290,Lewis Milestone,1394318437 +114930,87298,Dan Rush,1352752025 +114930,87302,Simon Rumley,1426490512 +114930,87304,Mike Mills,1312350608 +114930,87306,J.J. Abrams,1308057302 +114930,87308,Susanna White,1308682533 +114930,87320,Laura Poitras,1417232687 +114930,87354,Sergiu Nicolaescu,1411397395 +114930,87356,Criterion,1307543938 +114930,87356,Masahiro Shinoda,1307543938 +114930,87383,Irving Cummings,1307544105 +114930,87383,Shirley Temple,1307544115 +114930,87413,Albert Dupontel,1308056828 +114930,87415,Frank Borzage,1402206849 +114930,87417,Margot Benacerraf,1444547367 +114930,87466,Jerry Ciccoritti,1419328908 +114930,87469,Robert Pulcini,1349899659 +114930,87469,Shari Springer Berman,1349899659 +114930,87471,Aviva Kempner,1337572801 +114930,87483,Mark Waters,1349256350 +114930,87505,Henry Levin,1420274387 +114930,87566,Frank Lloyd,1402201618 +114930,87618,Francesco Rosi,1419331341 +114930,87660,Curtis Hanson,1323687756 +114930,87700,Criterion,1308682104 +114930,87700,Mikio Naruse,1308682138 +114930,87702,Criterion,1308682106 +114930,87702,Mikio Naruse,1308682136 +114930,87721,Jan Svankmajer,1406887242 +114930,87745,Frank Borzage,1402206842 +114930,87763,Sam Taylor,1402578407 +114930,87766,Francesco Rosi,1419331353 +114930,87806,John Korty,1408438923 +114930,87808,Criterion,1308940839 +114930,87808,Mikio Naruse,1308940840 +114930,87869,Jake Kasdan,1310419521 +114930,87872,Sandy Collora,1334520641 +114930,87876,Brad Lewis,1310419509 +114930,87876,John Lasseter,1310419509 +114930,87878,Joseph Losey,1405333455 +114930,87880,John Guillermin,1385944025 +114930,87884,Ken Russell,1413157407 +114930,87911,Simone North,1318353330 +114930,87917,Irving Pichel,1402579303 +114930,87917,Jean Renoir,1402201857 +114930,87919,Fred Niblo,1413185092 +114930,87923,Norman Taurog,1400450188 +114930,87928,Stephanie Soechtig,1416380980 +114930,87930,Andrew Rossi,1328524204 +114930,87952,Danny Kaye,1310419986 +114930,87952,Walter Lang,1310419973 +114930,87988,Sang-soo Hong,1403606072 +114930,87992,Benoît Delépine,1310420381 +114930,87992,Gérard Depardieu,1323684419 +114930,87992,Gustave de Kervern,1310420381 +114930,87999,Criterion,1335508194 +114930,87999,Vilgot Sjöman,1335508213 +114930,88015,John Carpenter,1414342608 +114930,88022,Susan Saladoff,1334535152 +114930,88044,Károly Makk,1421306024 +114930,88047,Jean-Luc Godard,1415557121 +114930,88049,Sang-soo Hong,1403606113 +114930,88051,Eric Rohmer,1408161567 +114930,88061,Pen-Ek Ratanaruang,1409993523 +114930,88099,Joseph Sargent,1421331076 +114930,88106,Ken Russell,1413157385 +114930,88118,Nick Tomnay,1328524247 +114930,88125,David Yates,1310677274 +114930,88129,Nicolas Winding Refn,1317073734 +114930,88135,John Schlesinger,1440388267 +114930,88140,Joe Johnston,1310677394 +114930,88163,Glenn Ficarra,1335303007 +114930,88163,John Requa,1335303007 +114930,88163,Steve Carell,1372750676 +114930,88171,Harold French,1417515514 +114930,88171,Ken Annakin,1417515504 +114930,88213,Robert Stevenson,1402213449 +114930,88235,John Michael McDonagh,1335135532 +114930,88252,Ragnar Bragason,1403682560 +114930,88267,Don Hall,1335038737 +114930,88267,Stephen J. Anderson,1335038737 +114930,88276,Criterion,1399775704 +114930,88276,David E. Durston,1399775700 +114930,88276,Metin Erksan,1399775700 +114930,88284,Norman Foster,1401087746 +114930,88305,Claude Chabrol,1414218845 +114930,88310,Caroline Link,1443428482 +114930,88313,Miklós Jancsó,1396514228 +114930,88317,Allan King,1314902470 +114930,88317,Criterion,1314902470 +114930,88327,Cheh Chang,1414919204 +114930,88329,David Lean,1402205980 +114930,88339,Michelangelo Frammartino,1337570771 +114930,88341,Samuel Fuller,1402213688 +114930,88343,Catherine Breillat,1350376828 +114930,88347,Robert Iscove,1422835872 +114930,88352,Anthony Asquith,1418112601 +114930,88376,Simon Wincer,1403086580 +114930,88382,Safy Nebbou,1311352689 +114930,88452,Bruno Barreto,1421147985 +114930,88566,Raoul Ruiz,1350344838 +114930,88568,Sang-soo Hong,1403606085 +114930,88570,Frederick Wiseman,1333757908 +114930,88574,Claude Autant-Lara,1423448054 +114930,88593,Hong-jin Na,1334197853 +114930,88595,Fred Niblo,1413185076 +114930,88595,Mauritz Stiller,1413185077 +114930,88601,Luis Buñuel,1414339503 +114930,88633,Pauly Shore,1312349608 +114930,88638,Georg Wilhelm Pabst,1407062967 +114930,88640,Lucas Belvaux,1337546975 +114930,88670,Danièle Thompson,1312441361 +114930,88672,Jesse Peretz,1350346153 +114930,88672,Steve Coogan,1372750777 +114930,88676,Cherel Ito,1412531587 +114930,88676,Maya Deren,1412531587 +114930,88676,Teiji Ito,1412531587 +114930,88678,Yasemin Samdereli,1334197884 +114930,88682,Kent Jones,1413177483 +114930,88682,Martin Scorsese,1413177483 +114930,88694,Godfrey Reggio,1442813001 +114930,88724,Michael Rapaport,1333243764 +114930,88744,Rupert Wyatt,1312973648 +114930,88746,Azazel Jacobs,1337572457 +114930,88748,John Sturges,1403604424 +114930,88752,W.S. Van Dyke,1402197595 +114930,88785,David Dobkin,1337383761 +114930,88810,Tate Taylor,1313790776 +114930,88812,Danny McBride,1343242377 +114930,88812,Ruben Fleischer,1340604775 +114930,88886,Takashi Miike,1402214565 +114930,88889,Lik-Chi Lee,1411976755 +114930,88889,Stephen Chow,1411976754 +114930,88911,Gérard Depardieu,1314400370 +114930,88911,Jean Becker,1323687039 +114930,88950,Robert Redford,1335047999 +114930,88954,Todd Strauss-Schulson,1346048561 +114930,88957,Luis Buñuel,1414339535 +114930,88959,Sergiu Nicolaescu,1411397387 +114930,88973,Norman Foster,1401087656 +114930,88975,Yasujirô Ozu,1421655345 +114930,88977,Ferzan Ozpetek,1417208417 +114930,88993,George Schnéevoigt,1448233883 +114930,89007,João César Monteiro,1415554381 +114930,89014,Criterion,1316505856 +114930,89014,Yasujirô Ozu,1313789829 +114930,89016,Yasujirô Ozu,1421655528 +114930,89039,Mike Cahill,1349480256 +114930,89041,Shûji Terayama,1425455066 +114930,89047,Spencer Susser,1344880852 +114930,89069,Martin Scorsese,1413177458 +114930,89074,Morgan Spurlock,1357340058 +114930,89085,John Madden,1334535910 +114930,89090,Richard Press,1328526815 +114930,89112,Danny Kaye,1314400308 +114930,89112,Norman Z. McLeod,1314400287 +114930,89118,Pedro Almodóvar,1314400221 +114930,89135,Pietro Germi,1425455232 +114930,89162,Kenneth Bowser,1337546700 +114930,89215,Zachary Levy,1350377561 +114930,89248,Stephen Roberts,1402194427 +114930,89260,James Marsh,1334884375 +114930,89268,Mervyn LeRoy,1314693474 +114930,89305,Ben Palmer,1335039214 +114930,89315,Allan King,1314902421 +114930,89315,Criterion,1314902421 +114930,89329,Lothar Mendes,1402201146 +114930,89337,Steve James,1337546813 +114930,89347,Eliseo Subiela,1409298267 +114930,89349,Criterion,1315396619 +114930,89349,Raymond Bernard,1315396619 +114930,89351,Criterion,1315396634 +114930,89351,Raymond Bernard,1315396634 +114930,89356,Sebastián Borensztein,1334715572 +114930,89369,Chris Weitz,1337567134 +114930,89377,Michael Greenspan,1347297086 +114930,89403,Philip Leacock,1417649256 +114930,89470,Steven Soderbergh,1315551133 +114930,89482,Emilio Fernández,1402649098 +114930,89492,Bennett Miller,1326337577 +114930,89492,Jonah Hill,1326337691 +114930,89532,Joe May,1402208888 +114930,89535,Aki Kaurismäki,1316180708 +114930,89535,Criterion,1335510844 +114930,89570,Gus Van Sant,1350348142 +114930,89580,Peter Mullan,1350344933 +114930,89596,Wim Wenders,1412839156 +114930,89598,João César Monteiro,1415554359 +114930,89618,Michel Deville,1424758491 +114930,89620,Clint Eastwood,1316182682 +114930,89620,Franco Rossi,1316182605 +114930,89620,Luchino Visconti,1316182605 +114930,89620,Mauro Bolognini,1316182605 +114930,89620,Pier Paolo Pasolini,1316182605 +114930,89620,Vittorio De Sica,1316182605 +114930,89629,Fred Cavave,1334965702 +114930,89662,David Higby,1350375514 +114930,89676,Criterion,1316180276 +114930,89676,Hiroshi Shimizu,1316180276 +114930,89678,Jon Jones,1334715923 +114930,89707,Criterion,1335508793 +114930,89707,Pedro Costa,1335508787 +114930,89745,Joss Whedon,1316714350 +114930,89753,Tomas Alfredson,1316714309 +114930,89759,Asghar Farhadi,1316714326 +114930,89761,David Cronenberg,1347738276 +114930,89763,Frank Borzage,1402206855 +114930,89767,Joseph H. Lewis,1407748438 +114930,89774,Gavin O'Connor,1316714534 +114930,89800,Erle C. Kenton,1402201592 +114930,89804,George Clooney,1317072938 +114930,89806,Rafael E. Portas,1414348891 +114930,89806,Yves Allégret,1414348891 +114930,89846,Liz Garbus,1317755674 +114930,89864,Jonathan Levine,1328526563 +114930,89896,Ágnes Hranitzky,1350378623 +114930,89896,Béla Tarr,1350378623 +114930,89900,Nuri Bilge Ceylan,1337571909 +114930,89904,Michel Hazanavicius,1317073219 +114930,89932,Danny Kaye,1317112330 +114930,89932,Peter Glenville,1317112305 +114930,89941,Criterion,1317235685 +114930,89941,Hiroshi Shimizu,1317235685 +114930,89961,Ruben Östlund,1350347239 +114930,89969,Dodo Abashidze,1317236629 +114930,89969,Sergei Parajanov,1317236629 +114930,89971,Danny Kaye,1317235481 +114930,89971,Melville Shavelson,1317235481 +114930,89973,Arthur Rankin Jr.,1402210880 +114930,89973,Jules Bass,1402210880 +114930,89977,Cecil B. DeMille,1402202081 +114930,89979,Criterion,1317284896 +114930,89979,Hiroshi Shimizu,1317284896 +114930,89988,Ulrich Seidl,1406456970 +114930,90017,Fernando di Leo,1404714657 +114930,90035,Abbas Kiarostami,1411874520 +114930,90052,Lucio Fulci,1425461516 +114930,90057,Jeff Nichols,1335053746 +114930,90061,David Robert Mitchell,1346856094 +114930,90071,Jim Kohlberg,1350344436 +114930,90084,Abbas Kiarostami,1411874507 +114930,90104,Abbas Kiarostami,1411874456 +114930,90112,Henry Koster,1402204718 +114930,90116,Larry Peerce,1420975643 +114930,90196,Frank Launder,1403086340 +114930,90203,Duccio Tessari,1419443911 +114930,90206,James Algar,1402209652 +114930,90211,Mohsen Makhmalbaf,1417225546 +114930,90243,Criterion,1333758236 +114930,90243,Hideo Gosha,1333758236 +114930,90245,Criterion,1335425423 +114930,90245,Hiroshi Teshigahara,1335425420 +114930,90247,Michael Glawogger,1423394846 +114930,90266,Cindy Meehl,1334967611 +114930,90281,Sergei Loznitsa,1350344634 +114930,90303,Andrzej Wajda,1408956765 +114930,90321,Fritz Lang,1402205854 +114930,90327,Malcolm St. Clair,1318965992 +114930,90327,Oliver Hardy,1331692953 +114930,90327,Stan Laurel,1318965992 +114930,90341,Alex Gibney,1404987922 +114930,90357,Paddy Considine,1334733289 +114930,90374,Sean Durkin,1335051065 +114930,90376,Lynne Ramsay,1319220500 +114930,90378,Errol Morris,1337572414 +114930,90380,William Beaudine,1407063339 +114930,90405,Andrew Niccol,1342385844 +114930,90413,Jim Loach,1350345847 +114930,90424,Basil Dearden,1335510915 +114930,90424,Criterion,1335510919 +114930,90428,Jean Reno,1383122251 +114930,90428,Kenneth Lonergan,1350342051 +114930,90430,Roman Polanski,1332816413 +114930,90439,J.C. Chandor,1335270362 +114930,90471,Adam Kassen,1334905235 +114930,90471,Mark Kassen,1334905235 +114930,90474,Maïwenn Le Besco,1350347358 +114930,90514,Abby Berlin,1419833439 +114930,90522,Oliver Parker,1352488133 +114930,90531,Steve McQueen,1335049781 +114930,90533,Jean Renoir,1402201824 +114930,90537,Criterion,1335511300 +114930,90537,Dusan Makavejev,1335511295 +114930,90543,James Benning,1423218959 +114930,90564,Mahamat-Saleh Haroun,1350375869 +114930,90574,Mariana Chenillo,1422261671 +114930,90578,Jim Sheridan,1344198024 +114930,90592,Peter Richardson,1319697192 +114930,90600,Morten Tyldum,1334731775 +114930,90603,Lauren Montgomery,1328526589 +114930,90603,Sam Liu,1328526589 +114930,90609,Krzysztof Zanussi,1422957342 +114930,90630,Jennifer Siebel Newsom,1350343306 +114930,90647,Chris Miller,1343242276 +114930,90647,Zach Galifianakis,1343242344 +114930,90664,Vittorio De Sica,1407135689 +114930,90673,Emeric Pressburger,1402191141 +114930,90673,Michael Powell,1402191130 +114930,90702,Larry Cohen,1410845610 +114930,90704,Tony Richardson,1408919995 +114930,90717,Brett Ratner,1359967193 +114930,90719,Clint Eastwood,1320434001 +114930,90730,Tom McLoughlin,1320692322 +114930,90746,Nick Frost,1331352474 +114930,90746,Simon Pegg,1320433202 +114930,90746,Steven Spielberg,1320433194 +114930,90809,Céline Sciamma,1334521390 +114930,90821,Criterion,1335429715 +114930,90821,Jirí Menzel,1335429707 +114930,90845,Jan Svankmajer,1406887190 +114930,90863,Martin Scorsese,1413177465 +114930,90866,Martin Scorsese,1320765538 +114930,90868,Vera Farmiga,1349556507 +114930,90878,King Vidor,1402203654 +114930,90883,Ulrich Seidl,1406456973 +114930,90897,John Ford,1402204369 +114930,90914,Lee Tamahori,1330133433 +114930,90933,Terence Davies,1350154309 +114930,90943,Werner Herzog,1337571086 +114930,90947,Joachim Trier,1350345960 +114930,90958,Chuck Jones,1412531438 +114930,90958,Friz Freleng,1412531438 +114930,90958,Phil Monroe,1412531438 +114930,90958,Robert McKimson,1412531438 +114930,91069,Henry Koster,1402204730 +114930,91071,Joseph L. Mankiewicz,1402195783 +114930,91073,Edward F. Cline,1402200273 +114930,91077,Alexander Payne,1322758497 +114930,91079,Drake Doremus,1322758538 +114930,91094,James Bobin,1322758052 +114930,91106,Volker Schlöndorff,1402908906 +114930,91126,Steven Spielberg,1322757877 +114930,91134,Simon Curtis,1350344717 +114930,91137,Henry King,1402196738 +114930,91137,Otto Brower,1402196738 +114930,91169,Kyle Patrick Alvarez,1422963567 +114930,91181,William A. Wellman,1401259605 +114930,91193,Joseph Losey,1405333434 +114930,91199,Andrew Haigh,1322757254 +114930,91199,Criterion,1341592303 +114930,91201,Fernando E. Solanas,1322757241 +114930,91208,João César Monteiro,1415554386 +114930,91223,Edmund Goulding,1402206125 +114930,91233,Gary Rydstrom,1322757041 +114930,91241,Rohit Shetty,1350376611 +114930,91286,David Butler,1322756269 +114930,91286,Shirley Temple,1322756280 +114930,91323,David Gordon Green,1349031165 +114930,91323,Jonah Hill,1349031240 +114930,91325,Stephen Daldry,1347297199 +114930,91360,Susanne Rostock,1350376563 +114930,91386,George Miller,1323050366 +114930,91393,Roberto Rossellini,1399773685 +114930,91395,Robert Altman,1407239862 +114930,91414,Sarah Smith,1337566693 +114930,91416,Gerardo Naranjo,1337571712 +114930,91425,Robert Siodmak,1402201221 +114930,91485,Simon West,1323066899 +114930,91488,Dianne Jackson,1323173761 +114930,91488,Jimmy T. Murakami,1323173760 +114930,91494,Raoul Walsh,1402192807 +114930,91500,Gary Ross,1335271284 +114930,91513,Ivan Passer,1398759458 +114930,91529,Christopher Nolan,1342993791 +114930,91531,João César Monteiro,1415554374 +114930,91533,Sergiu Nicolaescu,1411397379 +114930,91535,Tony Gilroy,1344589590 +114930,91542,Guy Ritchie,1323266452 +114930,91548,Kevin Macdonald,1323657914 +114930,91548,Natalia Andreadis,1323657914 +114930,91558,Carlos Saura,1442823598 +114930,91571,Ralph Fiennes,1337569862 +114930,91597,Jafar Panahi,1323657622 +114930,91597,Mojtaba Mirtahmasb,1323657622 +114930,91603,Santiago Mitre,1350377587 +114930,91630,Brad Bird,1324562942 +114930,91630,Simon Pegg,1332900032 +114930,91658,David Fincher,1324562282 +114930,91666,Criterion,1335510743 +114930,91666,Henry Cass,1335510736 +114930,91697,André De Toth,1402210209 +114930,91718,Ernst Lubitsch,1402194586 +114930,91755,Eugene Jarecki,1350347934 +114930,91799,Edgar Selwyn,1410128836 +114930,91808,Dee Rees,1337571928 +114930,91821,Eric Till,1419536514 +114930,91821,Peter Harris,1419536514 +114930,91831,William Brent Bell,1353412225 +114930,91854,Victor Fleming,1402202764 +114930,91869,Constance Marks,1334732785 +114930,91869,Philip Shane,1334732785 +114930,91884,Sidney Lumet,1410939661 +114930,91890,Phyllida Lloyd,1358156955 +114930,91902,Andrei Zvyagintsev,1358750122 +114930,91908,Pantelis Voulgaris,1401659234 +114930,91914,Brendan Fletcher,1346170917 +114930,91919,Dave Fleischer,1433782392 +114930,91919,Shamus Culhane,1433782392 +114930,91929,Patricio Guzmán,1350345298 +114930,91952,Lech Majewski,1350342965 +114930,91970,Gastón Duprat,1427812306 +114930,91970,Mariano Cohn,1427812306 +114930,91993,Basil Dearden,1335427827 +114930,91993,Criterion,1335427854 +114930,92001,Joseph Losey,1405333497 +114930,92027,Frank Borzage,1402206872 +114930,92064,Fritz Lang,1402205904 +114930,92079,Laurence Rees,1415556049 +114930,92079,Tilman Remme,1415556049 +114930,92124,Harun Farocki,1423391908 +114930,92130,Miklós Jancsó,1396514247 +114930,92152,Jannicke Systad Jacobsen,1350159223 +114930,92156,Pablo Larraín,1451896771 +114930,92163,Carlos Saura,1442823606 +114930,92167,John Curran,1401882154 +114930,92172,Kinji Fukasaku,1423395130 +114930,92176,René Clair,1402215466 +114930,92188,John Francis Dillon,1385459641 +114930,92196,Frederick Wiseman,1419834212 +114930,92204,Agnès Varda,1335652796 +114930,92204,Criterion,1335652806 +114930,92222,Walter Hill,1407136782 +114930,92224,Criterion,1399775642 +114930,92224,Ritwik Ghatak,1399775637 +114930,92236,Agnieszka Holland,1349031120 +114930,92252,Mark Landsman,1337546719 +114930,92259,Eric Toledano,1335035982 +114930,92259,Olivier Nakache,1335035982 +114930,92382,Kenji Mizoguchi,1408786124 +114930,92389,Henry King,1402196838 +114930,92393,Hark Tsui,1414739533 +114930,92420,Josh Trank,1335051030 +114930,92446,Alberto Lattuada,1422436044 +114930,92475,Adam Curtis,1334532535 +114930,92483,Dan Ireland,1420800716 +114930,92494,Michael Matheson,1331075874 +114930,92496,Michael Matheson,1331075873 +114930,92498,Randall Churchill,1331075891 +114930,92500,Paul Machliss,1334021646 +114930,92509,Michael Sucsy,1328325872 +114930,92535,Louis C.K.,1331076809 +114930,92633,Yoshitarô Nomura,1433842749 +114930,92637,Criterion,1328325837 +114930,92637,Hiroshi Teshigahara,1328325837 +114930,92643,Philippe Falardeau,1350153985 +114930,92652,Laura Israel,1350154039 +114930,92687,Mikko Niskanen,1403608325 +114930,92694,David Mackenzie,1350346737 +114930,92715,Gastón Duprat,1427812357 +114930,92715,Mariano Cohn,1427812357 +114930,92726,Emilio Fernández,1402649099 +114930,92738,Rachel Ward,1328490177 +114930,92758,John Kent Harrison,1418110045 +114930,92904,Bill Weber,1337546659 +114930,92904,David Weissman,1337546659 +114930,92910,Oldrich Lipský,1331077259 +114930,92920,Daniel Nettheim,1350253400 +114930,92954,Russell Mulcahy,1333758820 +114930,93002,Jack Hively,1413189062 +114930,93029,Damien Chazelle,1404808932 +114930,93040,Ken Burns,1419526299 +114930,93114,Jean-Luc Godard,1415557222 +114930,93114,Pier Paolo Pasolini,1415557204 +114930,93114,Roberto Rossellini,1399773738 +114930,93114,Ugo Gregoretti,1415557204 +114930,93116,Criterion,1453096041 +114930,93116,Jacques Rivette,1453096051 +114930,93128,Renet Feret,1350344226 +114930,93164,Jaume Balagueró,1350376740 +114930,93168,Yasujirô Ozu,1421655603 +114930,93240,Makoto Shinkai,1394175218 +114930,93272,Chris Renaud,1332892976 +114930,93272,Kyle Balda,1332892976 +114930,93289,Mika Kaurismäki,1404904015 +114930,93320,Mike Clattenburg,1411721263 +114930,93324,Daniel Lindsay,1337572677 +114930,93324,T.J. Martin,1337572677 +114930,93328,Charles Chaplin,1403384976 +114930,93330,Charles Chaplin,1403385063 +114930,93404,Matt O'Casey,1332892187 +114930,93408,Charles Chaplin,1403384942 +114930,93418,Charles Chaplin,1403384955 +114930,93422,Ken Scott,1350377454 +114930,93443,Michael Dowse,1350158219 +114930,93473,Yasuhiro Yoshiura,1412709653 +114930,93479,Jean Reno,1332892508 +114930,93479,Rose Bosch,1332892497 +114930,93498,Jay Roach,1332892366 +114930,93510,Chris Miller,1332297402 +114930,93510,Jonah Hill,1349031220 +114930,93510,Phil Lord,1332297402 +114930,93512,Jay Duplass,1350157975 +114930,93512,Mark Duplass,1350157975 +114930,93520,John English,1422263991 +114930,93520,William Witney,1422263991 +114930,93522,James W. Horne,1402200552 +114930,93574,Jon Foy,1350348165 +114930,93578,Julian Gilbey,1340604841 +114930,93652,Frederick Wiseman,1419834242 +114930,93669,Jorge Sanjinés,1415644736 +114930,93674,Ettore Scola,1412530251 +114930,93693,Matt Piedmont,1333069774 +114930,93700,Alex Stapleton,1405332481 +114930,93721,David Gelb,1358282345 +114930,93723,Whit Stillman,1350159185 +114930,93740,Lasse Hallström,1350158614 +114930,93752,Daniel Junge,1333308221 +114930,93752,Sharmeen Obaid-Chinoy,1333308221 +114930,93757,Seiji Maruyama,1333677667 +114930,93757,Toshirô Mifune,1333677661 +114930,93821,Liz Garbus,1406107033 +114930,93838,Gareth Evans,1350155884 +114930,93840,Drew Goddard,1334520358 +114930,93855,Bobcat Goldthwait,1369234958 +114930,93892,Jean-Pierre Améris,1350374938 +114930,93909,Semih Kaplanoglu,1426473738 +114930,93933,Joseph Cedar,1337570742 +114930,93988,Brian Percival,1340604045 +114930,94024,Emma Cooper,1350341021 +114930,94027,Kenji Mizoguchi,1408786130 +114930,94068,Mia Hansen-Løve,1423219170 +114930,94070,John Madden,1350157271 +114930,94074,Sam Dunn,1423731192 +114930,94074,Scot McFadyen,1423731192 +114930,94076,Leonard Retel Helmrich,1350347387 +114930,94101,Yoav Potash,1419536347 +114930,94122,Morgan Spurlock,1357340046 +114930,94126,Michael Roskam,1335229654 +114930,94130,Lee Hirsch,1359967967 +114930,94133,Oren Kaplan,1428891644 +114930,94186,Jerzy Skolimowski,1408917085 +114930,94202,Criterion,1335431232 +114930,94202,Robert M. Young,1335431223 +114930,94204,Chester Erskine,1335431683 +114930,94204,Criterion,1335431692 +114930,94204,Nicholas Ray,1335431682 +114930,94262,Criterion,1335521207 +114930,94262,Spencer Gordon Bennet,1335521207 +114930,94264,Criterion,1335521360 +114930,94264,Samuel Fuller,1335521361 +114930,94266,Jason Segal,1335648935 +114930,94266,Nicholas Stoller,1335648925 +114930,94283,Criterion,1335648715 +114930,94283,Koreyoshi Kurahara,1335648709 +114930,94304,Tim Matheson,1337134255 +114930,94339,William A. Wellman,1401259550 +114930,94405,Boaz Yakin,1350375623 +114930,94412,Bruno Romy,1358854397 +114930,94412,Dominique Abel,1358854399 +114930,94412,Fiona Gordon,1358854399 +114930,94433,Lionel Barrymore,1402197570 +114930,94433,W.S. Van Dyke,1402197551 +114930,94466,Brian Welsh,1433842503 +114930,94466,Euros Lyn,1433842503 +114930,94466,Otto Bathurst,1433842503 +114930,94478,Tim Burton,1337133260 +114930,94503,Sheree Folkson,1424758634 +114930,94542,Criterion,1349031892 +114930,94542,Joshua Marston,1349031892 +114930,94573,Jon Small,1407489287 +114930,94573,Paul Crowder,1407489275 +114930,94675,Fernando González Molina,1427812624 +114930,94677,Larry Charles,1337762132 +114930,94725,Criterion,1337765319 +114930,94725,James Ivory,1337765313 +114930,94727,Allison Anders,1337765531 +114930,94727,Criterion,1337765561 +114930,94727,Dean Lent,1337765531 +114930,94727,Kurt Voss,1337765531 +114930,94739,Jon Shenk,1358282385 +114930,94752,Thomas Carter,1416564705 +114930,94760,Criterion,1337938729 +114930,94760,Raffaello Matarazzo,1337938829 +114930,94762,Criterion,1337939509 +114930,94762,Jean Grémillon,1337939499 +114930,94765,Mikko Niskanen,1403608362 +114930,94777,Barry Sonnenfeld,1340604363 +114930,94777,Jemaine Clement,1423391240 +114930,94782,Matti Kassila,1421233836 +114930,94788,Robert Stevenson,1402213429 +114930,94799,Zal Batmanglij,1350377354 +114930,94803,Adam Gierasch,1340604273 +114930,94808,Chakri Toleti,1405336588 +114930,94815,Marjane Satrapi,1418112247 +114930,94815,Vincent Paronnaud,1418112248 +114930,94831,Gordon Parks,1423447558 +114930,94833,Jeff Newitt,1350158714 +114930,94833,Peter Lord,1350158714 +114930,94841,Derick Martini,1350253155 +114930,94864,Ridley Scott,1340603672 +114930,94896,Richard Linklater,1340601224 +114930,94902,Philip Dunne,1414607395 +114930,94917,Richard Brooks,1401883321 +114930,94931,Sarah Polley,1340602571 +114930,94939,Johannes Stjärne Nilsson,1369235279 +114930,94939,Ola Simonsson,1369235279 +114930,94955,Vincent Sherman,1401271024 +114930,94959,Criterion,1453095305 +114930,94959,Jason Schwartzman,1340602173 +114930,94959,Wes Anderson,1340602016 +114930,94969,Sujoy Ghosh,1350159575 +114930,94974,Michael Chang,1340601628 +114930,94978,Hirokazu Koreeda,1340601616 +114930,94982,Cyril Frankel,1402216059 +114930,94985,Adrian Grunberg,1350158811 +114930,95000,Oliver Schmitz,1350077300 +114930,95004,Brandon Vietti,1419551310 +114930,95004,Bruce Timm,1419551310 +114930,95004,Lauren Montgomery,1419551295 +114930,95007,René Clair,1402215457 +114930,95018,Carmelo Bene,1448235699 +114930,95067,Brian Robbins,1348516134 +114930,95088,Colin Trevorrow,1350158873 +114930,95105,Conrad Vernon,1340600199 +114930,95105,Eric Darnell,1340600199 +114930,95105,Tom McGrath,1340600199 +114930,95133,Mateo Gil,1349031031 +114930,95135,Lynn Shelton,1349556483 +114930,95149,Sam Liu,1419551503 +114930,95167,Brenda Chapman,1340599540 +114930,95167,Mark Andrews,1340599540 +114930,95167,Steve Purcell,1340599540 +114930,95175,Peter Werner,1406808484 +114930,95218,Bess Kargman,1369235062 +114930,95288,Joe May,1402208882 +114930,95309,Lorene Scafaria,1341473490 +114930,95309,Steve Carell,1372750709 +114930,95311,Doug Sweetland,1342173228 +114930,95313,Brad Bird,1341472950 +114930,95377,Andrew Jimenez,1343935324 +114930,95377,Mark Andrews,1343935323 +114930,95441,Seth MacFarlane,1341472996 +114930,95449,Steven Soderbergh,1350158911 +114930,95461,Chris Paine,1350348237 +114930,95510,Marc Webb,1341472573 +114930,95531,Criterion,1341449757 +114930,95531,Takashi Nomura,1341449757 +114930,95533,Criterion,1341450040 +114930,95533,Volker Schlöndorff,1341450040 +114930,95543,Mike Thurmeier,1341472205 +114930,95543,Steve Martino,1341472205 +114930,95558,Benh Zeitlin,1350158774 +114930,95560,Val Guest,1402199301 +114930,95563,Cecil B. DeMille,1402202086 +114930,95567,Alex Kurtzman,1341591538 +114930,95570,Criterion,1341591764 +114930,95570,Kô Nakahira,1341591757 +114930,95572,Criterion,1341592093 +114930,95572,Takumi Furukawa,1341592094 +114930,95583,Oliver Stone,1350375780 +114930,95604,Ken Burns,1419526334 +114930,95604,Lynn Novick,1419526444 +114930,95606,Ken Burns,1419526333 +114930,95611,Qasim Basir,1350344123 +114930,95720,Akiva Schaffer,1343241563 +114930,95720,Jonah Hill,1349031236 +114930,95732,Vincent Lannoo,1342418221 +114930,95735,Criterion,1342419329 +114930,95735,Jack Nicholson,1342419317 +114930,95756,Hawley Pratt,1342993846 +114930,95761,William Friedkin,1350159250 +114930,95804,Dexter Fletcher,1350379461 +114930,95830,Criterion,1342994857 +114930,95830,Zoltan Korda,1342994857 +114930,95832,Criterion,1342995163 +114930,95832,Robert J. Flaherty,1342995160 +114930,95832,Zoltan Korda,1342995160 +114930,95839,David Hugh Jones,1386402130 +114930,95873,Jonathan Dayton,1343935449 +114930,95873,Steve Coogan,1372750749 +114930,95873,Valerie Faris,1343935449 +114930,95939,Ken Loach,1354916603 +114930,96020,Gustavo Taretto,1350376479 +114930,96054,Quentin Dupieux,1425461583 +114930,96058,Jonathan Demme,1350344983 +114930,96079,Sam Mendes,1344196375 +114930,96084,Criterion,1344195700 +114930,96084,Francesco Rosi,1344195700 +114930,96086,Criterion,1344196016 +114930,96086,James Ivory,1344196016 +114930,96110,Jay Roach,1344589261 +114930,96110,Zach Galifianakis,1344589556 +114930,96121,David Frankel,1350158977 +114930,96121,Steve Carell,1372750710 +114930,96150,Lauren Greenfield,1350347737 +114930,96179,Gregg Champion,1403943969 +114930,96197,Hun Jang,1406027275 +114930,96223,Hiroshi Inagaki,1344879555 +114930,96223,Toshirô Mifune,1344879555 +114930,96225,Jerzy Skolimowski,1408917100 +114930,96227,Criterion,1344879853 +114930,96227,Koreyoshi Kurahara,1344879853 +114930,96252,Pete McCormack,1345151578 +114930,96273,Criterion,1345151937 +114930,96273,Koreyoshi Kurahara,1345151937 +114930,96275,Criterion,1345152316 +114930,96275,Ismail Merchant,1345152317 +114930,96281,Chris Butler,1345486607 +114930,96281,Sam Fell,1345486607 +114930,96286,Steve Webb,1420725206 +114930,96302,Kim Han-min,1350379073 +114930,96304,Takashi Miike,1345486400 +114930,96337,Joachim Lafosse,1350346083 +114930,96347,Colm McCarthy,1392000642 +114930,96401,Chantal Akerman,1346046129 +114930,96401,Criterion,1346046129 +114930,96417,David Koepp,1350159129 +114930,96419,Criterion,1346170319 +114930,96419,Mikhail Kalatozov,1346170319 +114930,96421,Criterion,1346170551 +114930,96421,Pál Fejös,1346170551 +114930,96432,John Hillcoat,1346347235 +114930,96451,Criterion,1346346805 +114930,96451,Dusan Makavejev,1346346806 +114930,96467,Mike Birbiglia,1359967832 +114930,96467,Seth Barrish,1359967832 +114930,96471,David Drury,1424040209 +114930,96488,Malik Bendjelloul,1350375918 +114930,96545,Criterion,1346854725 +114930,96545,Victor Schertzinger,1346854725 +114930,96547,Criterion,1346855037 +114930,96547,William Klein,1346855037 +114930,96563,Bruce Sinofsky,1350346466 +114930,96563,Joe Berlinger,1350346466 +114930,96569,Mads Matthiesen,1346966451 +114930,96571,Ralph Nelson,1402576704 +114930,96576,Criterion,1346965910 +114930,96576,Francesco Rosi,1346965911 +114930,96578,Criterion,1346966109 +114930,96578,William Klein,1346966109 +114930,96588,Jason Moore,1350159406 +114930,96594,Mikio Naruse,1420506737 +114930,96606,Ron Fricke,1350159447 +114930,96610,Rian Johnson,1347296824 +114930,96612,Craig Zobel,1350495347 +114930,96616,Sean Anders,1369237499 +114930,96642,Criterion,1347296440 +114930,96642,Raffaello Matarazzo,1347296439 +114930,96644,Criterion,1347296601 +114930,96644,Masaki Dômoto,1347296602 +114930,96644,Yukio Mishima,1347296602 +114930,96655,Jake Schreier,1350374764 +114930,96664,Nadine Labaki,1347462827 +114930,96667,Alison Klayman,1354917411 +114930,96669,Peter A. Dowling,1347462465 +114930,96671,Paul Sapiano,1347462637 +114930,96681,Roberto Rossellini,1399773678 +114930,96687,Dennis Lee,1369235264 +114930,96693,Robert Lorenz,1405683233 +114930,96710,Roy Del Ruth,1405333941 +114930,96717,Criterion,1347654993 +114930,96717,Sacha Guitry,1347654993 +114930,96724,Joe Berlinger,1350378699 +114930,96728,Paul Thomas Anderson,1347737989 +114930,96737,Pete Travis,1350159092 +114930,96751,Nicholas Jarecki,1350159034 +114930,96759,Frank Woodruff,1422437577 +114930,96773,Criterion,1347910023 +114930,96773,Evald Schorm,1347910042 +114930,96773,Jan Nemec,1347910043 +114930,96773,Jaromil Jires,1347910043 +114930,96773,Jirí Menzel,1347910042 +114930,96773,Vera Chytilová,1347910043 +114930,96775,Criterion,1347910320 +114930,96775,Zafar Hai,1347910320 +114930,96811,David Ayer,1348517857 +114930,96813,Rouben Mamoulian,1402195514 +114930,96815,Adam Wingard,1348517817 +114930,96815,Chad Villella,1348517817 +114930,96815,David Bruckner,1348517817 +114930,96815,Glenn McQuaid,1348517817 +114930,96815,Joe Swanberg,1348517817 +114930,96815,Justin Martinez,1348517817 +114930,96815,Matt Bettinelli-Olpin,1348517817 +114930,96815,Radio Silence,1348517817 +114930,96815,Ti West,1348517816 +114930,96815,Tyler Gillett,1348517817 +114930,96817,Frederick Wiseman,1348517761 +114930,96821,Stephen Chbosky,1348517713 +114930,96829,Thomas Vinterberg,1348517499 +114930,96832,Leos Carax,1348517350 +114930,96834,Anne Sundberg,1348517293 +114930,96834,Ricki Stern,1348517293 +114930,96840,Rafi Pitts,1348517193 +114930,96845,Afonso Poyart,1348516920 +114930,96868,Dylan Southern,1350159545 +114930,96868,Will Lovelace,1350159545 +114930,96870,Alexander Korda,1348515901 +114930,96870,Criterion,1348515901 +114930,96872,Criterion,1348516058 +114930,96872,Sacha Guitry,1348516058 +114930,96907,Naomi Kawase,1416381459 +114930,96911,Nikolaj Arcel,1348954435 +114930,96933,Rainer Werner Fassbinder,1348954138 +114930,96935,Johnnie To,1425461664 +114930,96935,Ka-Fai Wai,1425461664 +114930,96937,Anna Rodzinski,1350375543 +114930,96947,Rúnar Rúnarsson,1348954024 +114930,96952,Harold Crooks,1348953943 +114930,96952,Mathieu Roy,1348953942 +114930,96966,Xavier Dolan,1369235239 +114930,96971,Gerry Bednob,1348953573 +114930,96971,Joshua Leonard,1348953553 +114930,96983,Criterion,1348953088 +114930,96983,Jean Grémillon,1348953088 +114930,96985,Criterion,1348953278 +114930,96985,Jan Nemec,1348953278 +114930,96991,Wayne Blair,1349030320 +114930,96993,Lamont Johnson,1402577208 +114930,97002,Andy Baybutt,1349030404 +114930,97002,Ice-T,1349030404 +114930,97008,Criterion,1349029952 +114930,97008,Evald Schorm,1349029952 +114930,97024,Jacques Audiard,1349046091 +114930,97029,Criterion,1349045674 +114930,97029,Kazui Nihonmatsu,1349045674 +114930,97031,Criterion,1349045852 +114930,97031,Hajime Sato,1349045852 +114930,97035,Criterion,1349073616 +114930,97035,Hiroshi Matsuno,1349073616 +114930,97037,Arthur Crabtree,1349073790 +114930,97037,Criterion,1349073790 +114930,97039,Criterion,1349073956 +114930,97039,Leslie Arliss,1349073956 +114930,97057,Espen Sandberg,1349193178 +114930,97057,Joachim Rønning,1349193178 +114930,97065,Georgi Kropachyov,1349192871 +114930,97065,Konstantin Yershov,1349192871 +114930,97068,Alexander Korda,1349191875 +114930,97068,Criterion,1349191879 +114930,97068,Paul Czinner,1349191875 +114930,97070,Criterion,1349192458 +114930,97070,James Ivory,1349192458 +114930,97073,Criterion,1349192795 +114930,97073,Toshio Masuda,1349192795 +114930,97096,Kevin Brownlow,1349210020 +114930,97124,Jean Afanassieff,1349298207 +114930,97128,Criterion,1349298000 +114930,97128,Henry Jaglom,1349298000 +114930,97132,Gary Hustwit,1349360344 +114930,97146,Christopher Bird,1349378643 +114930,97146,Kevin Brownlow,1349378643 +114930,97148,Richard Schickel,1349378622 +114930,97151,David Heeley,1349462250 +114930,97153,Stéphane Brizé,1349462281 +114930,97168,Kevin Macdonald,1349556241 +114930,97172,Tim Burton,1349729718 +114930,97175,Daniel Farrands,1349729605 +114930,97177,John Moffitt,1349729453 +114930,97184,Henri Verneuil,1349729371 +114930,97186,Arto Halonen,1421742479 +114930,97188,Scott Derrickson,1349729171 +114930,97192,Hugh Munro Neely,1349728929 +114930,97200,Basil Dearden,1349728446 +114930,97200,Criterion,1349728446 +114930,97225,Genndy Tartakovsky,1349899960 +114930,97230,Christopher Kenneally,1349899921 +114930,97240,Robert Pulcini,1349899646 +114930,97240,Shari Springer Berman,1349899646 +114930,97246,Louis King,1349899477 +114930,97250,Eugene Forde,1349899454 +114930,97252,Joe Roth,1349898894 +114930,97254,Criterion,1349899086 +114930,97254,James Ivory,1349899086 +114930,97256,Alfonso Cuarón,1349899335 +114930,97256,Criterion,1349899335 +114930,97280,Andrey Malyukov,1349990922 +114930,97285,Criterion,1349990225 +114930,97285,Seijun Suzuki,1349990225 +114930,97300,Alexander McQueen,1350075576 +114930,97300,Chris Cunningham,1350075575 +114930,97300,Danny Cannon,1350075576 +114930,97300,Eiko Ishioka,1350075575 +114930,97300,Inez van Lamsweerde,1350075576 +114930,97300,Jean-Baptiste Mondino,1350075575 +114930,97300,John Kricfalusi,1350075575 +114930,97300,Lynn Fox,1350075575 +114930,97300,Michel Gondry,1350075576 +114930,97300,Nick Knight,1350075575 +114930,97300,Paul White,1350075575 +114930,97300,Sophie Muller,1350075576 +114930,97300,Spike Jonze,1350075576 +114930,97300,Stephane Sednaoui,1350075575 +114930,97300,Vinoodh Matadin,1350075575 +114930,97302,Chris Lavis,1350075624 +114930,97302,Maciek Szczerbowski,1350075624 +114930,97304,Ben Affleck,1350075810 +114930,97306,Martin McDonagh,1350076017 +114930,97319,Yuri Zhelyabuzhsky,1350150188 +114930,97326,Ben Drew,1350150468 +114930,97328,Josh Radnor,1350150595 +114930,97382,Kevin Tostado,1350246869 +114930,97388,Benoît Jacquot,1350247251 +114930,97393,Eugene Jarecki,1350247433 +114930,97395,Amy Berg,1350247538 +114930,97397,Stefan Forbes,1350247594 +114930,97401,Hideki Takeuchi,1350247787 +114930,97423,Markus Schleinzer,1350339806 +114930,97455,Chris Hegedus,1350339910 +114930,97455,D.A. Pennebaker,1350339910 +114930,97457,Edward Dmytryk,1405338881 +114930,97462,Mike Disa,1350290194 +114930,97464,Criterion,1350290462 +114930,97464,Koreyoshi Kurahara,1350290462 +114930,97466,Dan Chaykin,1350290806 +114930,97536,Criterion,1350379942 +114930,97536,Nagisa Ôshima,1350379942 +114930,97538,Criterion,1350380097 +114930,97538,Raffaello Matarazzo,1350380097 +114930,97540,Criterion,1350380353 +114930,97540,Marcel Carné,1350380353 +114930,97542,Criterion,1350460160 +114930,97542,Vilgot Sjöman,1350460160 +114930,97544,Richard Schickel,1350460198 +114930,97595,Jeremy Seifert,1350487567 +114930,97600,Criterion,1350486702 +114930,97600,Koreyoshi Kurahara,1350486702 +114930,97639,David France,1350580737 +114930,97648,Anurag Kashyap,1425454650 +114930,97660,Glendyn Ivin,1350674236 +114930,97673,Michael Apted,1350776095 +114930,97673,Paul Almond,1350776095 +114930,97680,Oreet Rees,1350935434 +114930,97680,Pippa Scott,1350935434 +114930,97690,Robert Favreau,1350935315 +114930,97699,Jean Becker,1350934851 +114930,97711,Criterion,1350934084 +114930,97711,Raffaello Matarazzo,1350934084 +114930,97713,Criterion,1350934385 +114930,97713,Kazui Nihonmatsu,1350934385 +114930,97742,Rob Cohen,1391990851 +114930,97744,Mads Brügger,1351107651 +114930,97752,Andy Wachowski,1351150566 +114930,97752,Lana Wachowski,1351150566 +114930,97752,Tom Tykwer,1351150566 +114930,97775,Marten Persiel,1351321947 +114930,97779,Paul Sen,1351321991 +114930,97787,Tom Thurman,1422841700 +114930,97797,Don Hartman,1419437918 +114930,97799,Jon Gunn,1351374266 +114930,97823,Jae-young Kwak,1351537134 +114930,97823,Zhang Meng,1351537135 +114930,97826,Atiq Rahimi,1351537432 +114930,97828,Dariush Mehrjui,1351537554 +114930,97860,Andrew Dominik,1351624631 +114930,97866,Bart Layton,1351625006 +114930,97868,Marius A. Markevicius,1351625142 +114930,97870,Ben Lewin,1351625398 +114930,97878,Henry King,1402196706 +114930,97880,John Cassavetes,1351677628 +114930,97895,Lenny Abrahamson,1351712186 +114930,97904,James Ponsoldt,1351712967 +114930,97913,Rich Moore,1351842578 +114930,97921,David O. Russell,1351843153 +114930,97923,Robert Zemeckis,1351843422 +114930,97933,Emad Burnat,1351883940 +114930,97933,Guy Davidi,1351883940 +114930,97938,Ang Lee,1351884158 +114930,97950,RZA,1352012757 +114930,97959,Lorraine Levy,1352013057 +114930,97984,Ted Kotcheff,1352136730 +114930,98017,Yaron Zilberman,1369235253 +114930,98022,Frédéric Jardin,1352429111 +114930,98043,Sergey Bondarchuk,1352751311 +114930,98056,Michael Haneke,1352751073 +114930,98061,Shion Sono,1352750842 +114930,98065,Katie Dellamaggiore,1352750700 +114930,98069,Hiroshi Inagaki,1352750569 +114930,98069,Toshirô Mifune,1352750569 +114930,98120,Jack Sholder,1352831443 +114930,98122,James Swirsky,1352831474 +114930,98122,Lisanne Pajot,1352831474 +114930,98124,Jay Oliva,1352831582 +114930,98144,Terry Benedict,1352882378 +114930,98154,Steven Spielberg,1352882190 +114930,98171,King Vidor,1352975091 +114930,98173,Robert Altman,1407239808 +114930,98193,Kirby Dick,1353099369 +114930,98198,Umesh Shukla,1353180977 +114930,98228,Stephen Frears,1448238283 +114930,98239,Dan Bradley,1353351202 +114930,98241,Tom Lin,1353398676 +114930,98243,Peter Ramsey,1353351396 +114930,98248,Gilles Grangier,1421742374 +114930,98251,Tadanobu Asano,1353398900 +114930,98251,Yôji Yamada,1353398891 +114930,98253,Hiroshi Inagaki,1353398958 +114930,98253,Takashi Shimura,1353398982 +114930,98253,Toshirô Mifune,1353398958 +114930,98286,William Dieterle,1402201420 +114930,98325,Arthur Dreifuss,1408608710 +114930,98361,Neil Jordan,1382222166 +114930,98406,Billy Corben,1354039668 +114930,98439,Marshall Cook,1354041714 +114930,98441,Allan Dwan,1354041914 +114930,98441,Shirley Temple,1354041917 +114930,98443,Ken Burns,1419526320 +114930,98458,Harry Lachman,1354129254 +114930,98458,Shirley Temple,1354129268 +114930,98460,Derek Jarman,1354170746 +114930,98473,Costa-Gavras,1354170486 +114930,98477,Jean-Jacques Annaud,1407715906 +114930,98491,John Kahrs,1354302919 +114930,98513,Ken Burns,1419526331 +114930,98520,Ken Burns,1419526293 +114930,98572,Ken Burns,1419526304 +114930,98581,Larry Elikann,1354564394 +114930,98587,Paolo Taviani,1354653208 +114930,98587,Vittorio Taviani,1354653208 +114930,98604,Goro Miyazaki,1354653080 +114930,98607,Takeshi Koike,1354653051 +114930,98611,Irving Cummings,1354653576 +114930,98611,Shirley Temple,1354653576 +114930,98629,Antti Jokinen,1354786741 +114930,98631,Sang-soo Hong,1403606052 +114930,98643,Richard Wallace,1403941826 +114930,98697,Claude Lelouch,1409396792 +114930,98699,Michael Pressman,1420274848 +114930,98759,Hsin-Yen Chang,1411778909 +114930,98766,Dori Berinstein,1355049765 +114930,98795,Ken Burns,1419526313 +114930,98797,Christian Petzold,1355133215 +114930,98803,Irving Cummings,1355133443 +114930,98803,Shirley Temple,1355133443 +114930,98807,Elliott Nugent,1402213848 +114930,98809,Peter Jackson,1355227108 +114930,98913,Andrés Wood,1355395255 +114930,98922,Mathieu Kassovitz,1355521015 +114930,98924,Pierre Schöller,1355520986 +114930,98933,Eytan Fox,1355520924 +114930,98956,Anurag Basu,1355611030 +114930,98961,Kathryn Bigelow,1355655475 +114930,98963,Kleber Mendonça Filho,1355655446 +114930,98965,Chris Sullivan,1355655381 +114930,98973,Jeff Orlowski,1355816090 +114930,98981,Auguste Lumière,1421735137 +114930,98981,Louis Lumière,1421735137 +114930,98985,Bernard Campan,1355816022 +114930,98985,Didier Bourdon,1355816022 +114930,98994,Orson Welles,1355815754 +114930,98996,Orson Welles,1421652648 +114930,98999,Shûichi Okita,1394794121 +114930,99007,Jonathan Levine,1355815461 +114930,99014,Akihiko Shiota,1355815338 +114930,99045,Xiaogang Feng,1355997309 +114930,99089,Irving Cummings,1355998843 +114930,99089,Shirley Temple,1355998843 +114930,99103,Marty Callner,1420507629 +114930,99114,Jonah Hill,1402909221 +114930,99114,Quentin Tarantino,1356215976 +114930,99145,Juan Antonio Bayona,1356217537 +114930,99149,Tom Hooper,1356298851 +114930,99180,Paul Owens,1356299356 +114930,99214,Jason Woliner,1420507397 +114930,99217,David Chase,1356330067 +114930,99220,Dustin Hoffman,1360063382 +114930,99246,Alfred L. Werker,1356468212 +114930,99246,Hamilton Luske,1356468212 +114930,99246,Jack Cutting,1356468212 +114930,99246,Jack Kinney,1356468212 +114930,99246,Ub Iwerks,1356468212 +114930,99258,Václav Vorlícek,1356467943 +114930,99270,Hamilton MacFadden,1356468933 +114930,99270,Shirley Temple,1356468942 +114930,99273,Shirley Temple,1356469440 +114930,99273,William A. Seiter,1356469440 +114930,99276,Shirley Temple,1356469779 +114930,99276,Walter Lang,1356469774 +114930,99276,William A. Seiter,1356469774 +114930,99294,Majid Majidi,1356606293 +114930,99296,David Guy Levy,1422266381 +114930,99349,Joey Figueroa,1425455960 +114930,99349,Zak Knutson,1425455960 +114930,99468,David McMahon,1357124825 +114930,99468,Ken Burns,1357124825 +114930,99468,Sarah Burns,1357124825 +114930,99491,Raymond De Felitta,1357218772 +114930,99495,Pablo Giorgelli,1357218487 +114930,99515,Val Guest,1402199329 +114930,99530,Keishi Ohtomo,1357284856 +114930,99532,Josée Dayan,1371882252 +114930,99560,Jean-Paul Le Chanois,1357339511 +114930,99562,Lewis Milestone,1371882287 +114930,99638,Yoshihiro Nakamura,1357546896 +114930,99640,Joel Gallen,1419529418 +114930,99644,Jim Swaffield,1422262227 +114930,99644,R. Kelly,1422262227 +114930,99671,João César Monteiro,1415554348 +114930,99673,Raoul Ruiz,1421056111 +114930,99675,Gabriela Pichler,1357805289 +114930,99728,Ruben Fleischer,1358072760 +114930,99795,Michael Glawogger,1358156391 +114930,99807,Yi Seung-jun,1358157744 +114930,99809,Peter Nicks,1358157941 +114930,99811,Jay Bulger,1358158092 +114930,99813,Jay Oliva,1407748598 +114930,99817,Cristian Mungiu,1358279672 +114930,99839,Stephen Kessler,1358282695 +114930,99841,Ursula Meier,1358282930 +114930,99843,Alex Gibney,1358283239 +114930,99857,Robert Harmon,1408698570 +114930,99859,Robert Harmon,1408698565 +114930,99861,Robert Harmon,1408698569 +114930,99871,Robert Harmon,1408698568 +114930,99873,Dick Lowry,1408698625 +114930,99875,Robert Harmon,1408698539 +114930,99889,Bent-Jorgen Perlmutt,1358415304 +114930,99889,Frédéric Tcheng,1358415304 +114930,99889,Lisa Immordino Vreeland,1358415304 +114930,99912,Andrés Muschietti,1382436010 +114930,99917,Shane Carruth,1369235302 +114930,99962,Yorgos Javellas,1358749262 +114930,99964,Jong-bin Yun,1358749330 +114930,99986,Jeff Dupre,1358749718 +114930,99986,Matthew Akers,1358749718 +114930,99989,Cristián Jiménez,1358749947 +114930,99992,James Marsh,1358750384 +114930,100008,David Sington,1358853808 +114930,100013,Jesse Vile,1358853700 +114930,100017,Ira Sachs,1358853602 +114930,100032,Neil Berkeley,1358854610 +114930,100034,Ashley Sabin,1358854767 +114930,100034,David Redmon,1358854767 +114930,100036,Brett Morgen,1358855014 +114930,100038,Ava DuVernay,1419438833 +114930,100054,Marshall Neilan,1359239654 +114930,100077,Fruit Chan,1359239145 +114930,100081,Andrzej Munk,1359239108 +114930,100099,Dusan Hanák,1359237835 +114930,100138,Ann Hui,1359317230 +114930,100145,Artour Aristakisian,1359368555 +114930,100155,Ali Samadi Ahadi,1359368855 +114930,100157,Jonathan Lisecki,1359369087 +114930,100159,Ben Wheatley,1359369338 +114930,100165,Thor Heyerdahl,1359459682 +114930,100180,Hyung-rae Shim,1359460266 +114930,100183,Andrew Shea,1359460420 +114930,100185,Sean Baker,1359460775 +114930,100188,Kristina Lindström,1359541076 +114930,100188,Maud Nycander,1359541076 +114930,100196,Peter Bogdanovich,1359540880 +114930,100238,Eric Lartigau,1359625011 +114930,100240,Gustaf Molander,1420274027 +114930,100262,Emin Alper,1359966569 +114930,100264,Mani Haghighi,1359966529 +114930,100270,Ömer Faruk Sorak,1359966376 +114930,100272,Pablo Berger,1359966360 +114930,100277,Miguel Gomes,1359966263 +114930,100287,Steve James,1359967368 +114930,100289,Léa Pool,1359967491 +114930,100291,Jonathan Paley,1359967664 +114930,100291,Ross Finkel,1359967664 +114930,100291,Trevor Martin,1359967664 +114930,100300,Jacek Borcuch,1360063126 +114930,100306,Gerald Kargl,1360063026 +114930,100332,Youssef Chahine,1360146422 +114930,100336,Vikramaditya Motwane,1360146370 +114930,100344,Pablo Larraín,1360146220 +114930,100365,Katherine Fairfax Wright,1360319128 +114930,100365,Malika Zouhali-Worrall,1360319128 +114930,100368,Mitchell Leisen,1402199561 +114930,100383,Steven Soderbergh,1360574394 +114930,100390,Seth Gordon,1360574273 +114930,100404,Takashi Miike,1360574006 +114930,100415,Pjer Zalica,1360573908 +114930,100436,Dror Moreh,1360574738 +114930,100440,Cate Shortland,1360575180 +114930,100442,Wojciech Smarzowski,1360751768 +114930,100444,Chuck O'Neil,1360751382 +114930,100448,Alexandra Pelosi,1360751431 +114930,100498,John Moore,1360837741 +114930,100505,Simon Wincer,1360925010 +114930,100507,Jon Lucas,1360924805 +114930,100507,Scott Moore,1360924805 +114930,100509,Yuriy Norshteyn,1360924754 +114930,100511,Forugh Farrokhzad,1360924717 +114930,100515,Kim Nguyen,1360924661 +114930,100517,Nisha Pahuja,1360924643 +114930,100521,Christine Choy,1360924607 +114930,100521,Renee Tajima-Pena,1360924607 +114930,100536,Fritz Lang,1361175461 +114930,100536,René Sti,1361175461 +114930,100538,Josef von Sternberg,1361175391 +114930,100556,Anonymous,1361175140 +114930,100556,Christine Cynn,1361175140 +114930,100556,Joshua Oppenheimer,1361175141 +114930,100559,Howard Bretherton,1402218309 +114930,100559,William Keighley,1402218309 +114930,100562,Clara Law,1361175005 +114930,100567,David Dworsky,1361174941 +114930,100567,Victor Köhler,1361174941 +114930,100581,Rodney Ascher,1361174476 +114930,100629,Alex Segal,1361269431 +114930,100633,Boris Sagal,1361269900 +114930,100645,Gary Leva,1361531464 +114930,100651,Steven Hilliard Stern,1361531389 +114930,100714,Richard Linklater,1361776981 +114930,100719,Robert Greene,1361776907 +114930,100723,George Huang,1361776864 +114930,100725,Rebecca Cammisa,1361776783 +114930,100743,Nai-Hoi Yau,1361776145 +114930,100745,Simon Klose,1361776128 +114930,100799,Mark N. Hopkins,1361776085 +114930,100843,Jan Ole Gerster,1362124985 +114930,100882,Derek Kok,1362124910 +114930,100882,Stephen Chow,1362124910 +114930,100906,William Lustig,1362124716 +114930,101016,Criterion,1362125826 +114930,101016,Pierre Étaix,1362125588 +114930,101018,Criterion,1362125830 +114930,101018,Pierre Étaix,1362125819 +114930,101020,Criterion,1362126021 +114930,101020,Pierre Étaix,1362126021 +114930,101062,Robert B. Weide,1362381035 +114930,101070,Haifaa Al-Mansour,1362380928 +114930,101074,Clyde Geronimi,1362380876 +114930,101074,Jack Kinney,1362380876 +114930,101088,Chan-wook Park,1362380523 +114930,101104,Criterion,1362382385 +114930,101104,Pierre Étaix,1362382385 +114930,101106,David Grohl,1362736628 +114930,101142,Chris Sanders,1362735719 +114930,101142,Kirk De Micco,1362735719 +114930,101146,Criterion,1362736785 +114930,101146,Pierre Étaix,1362736785 +114930,101148,Criterion,1362737531 +114930,101148,Masaki Kobayashi,1362737531 +114930,101148,Tatsuya Nakadai,1362737531 +114930,101150,Criterion,1362737685 +114930,101150,Masaki Kobayashi,1362737685 +114930,101160,Jennilyn Merten,1362952630 +114930,101160,Tyler Measom,1362952630 +114930,101188,Frederick Wiseman,1419834249 +114930,101197,Criterion,1362953868 +114930,101197,Masaki Kobayashi,1362953868 +114930,101197,Tatsuya Nakadai,1362953868 +114930,101207,Peter Webber,1382222129 +114930,101210,Baran bo Odar,1362982665 +114930,101216,Katya Bankowsky,1363069981 +114930,101218,Lucien Castaing-Taylor,1363069958 +114930,101218,Verena Paravel,1363069958 +114930,101220,Brenna Sanchez,1363069930 +114930,101220,Tom Putnam,1363069930 +114930,101233,Irving Rapper,1363328803 +114930,101243,Maja Milos,1363328648 +114930,101245,Angad Bhalla,1363328587 +114930,101247,William A. Wellman,1363328567 +114930,101283,Don Scardino,1363554252 +114930,101283,Steve Carell,1372750712 +114930,101319,Lewis Gilbert,1410938581 +114930,101322,Robert Harmon,1363553374 +114930,101329,Michael Stillwater,1363594843 +114930,101335,Thymaya Payne,1363594790 +114930,101381,Ben Shapiro,1363892381 +114930,101413,Sally El Hosaini,1364040267 +114930,101450,Jacques Feyder,1364292678 +114930,101472,Friedrich Moser,1364381088 +114930,101472,Matthieu Lietaert,1364381088 +114930,101476,Joan Micklin Silver,1364558632 +114930,101498,François Ozon,1364558101 +114930,101525,Derek Cianfrance,1364760562 +114930,101527,Petter Næss,1364760435 +114930,101529,Ramaa Moseley,1364760284 +114930,101579,Xiao Lu Xue,1364796524 +114930,101629,Arto Koskinen,1364903529 +114930,101646,Raoul Ruiz,1364982935 +114930,101648,Arnon Goldfinger,1364982915 +114930,101670,Arthur Rankin Jr.,1402210856 +114930,101670,Jules Bass,1402210856 +114930,101685,Martha Holmes,1365099182 +114930,101685,Michael Gunton,1365099182 +114930,101687,Alexandre Moors,1365099148 +114930,101689,Spike Lee,1365099111 +114930,101692,Srdjan Karanovic,1365099078 +114930,101695,Ivan Zivkovic,1365099052 +114930,101717,Goran Paskaljevic,1365186976 +114930,101739,Fede Alvarez,1365246116 +114930,101741,Danny Boyle,1365379902 +114930,101765,Pascal Chaumeil,1408268544 +114930,101782,Katie Galloway,1365406226 +114930,101782,Kelly Duane,1365406226 +114930,101846,Lisa Leeman,1365622391 +114930,101848,Marshall Curry,1365622410 +114930,101850,Jean-Xavier de Lestrade,1365622467 +114930,101855,Treva Wurmfeld,1369235077 +114930,101857,Adrian Grenier,1365622541 +114930,101864,Joseph Kosinski,1382222506 +114930,101891,Stacy Peralta,1365969491 +114930,101895,Brian Helgeland,1365969797 +114930,101897,Veikko Aaltonen,1419834140 +114930,101902,Frank Perry,1402997983 +114930,101904,Roko Belic,1365969889 +114930,101918,Duane Baughman,1366010317 +114930,101918,Johnny O'Hara,1366010317 +114930,101926,Robert Greenwald,1366010526 +114930,101944,Ashley Sabin,1366136143 +114930,101944,David Redmon,1366136143 +114930,101947,Davis Guggenheim,1366136166 +114930,101962,Mamoru Hosoda,1366312093 +114930,101964,Andrew Thompson,1366312031 +114930,101964,Lucy Bailey,1366312031 +114930,101971,Andrew Kasch,1366311960 +114930,101971,Daniel Farrands,1366311960 +114930,101973,Henry Alex Rubin,1382222434 +114930,101984,Carlos César Arbeláez,1366354484 +114930,102005,Abbas Kiarostami,1366488253 +114930,102005,Criterion,1399778170 +114930,102012,Miraz Bezar,1366488580 +114930,102033,Michael Bay,1366576229 +114930,102039,Jonathan Miller,1421400482 +114930,102047,William Keighley,1366576428 +114930,102058,Frank Paur,1366629295 +114930,102058,Sam Liu,1366629295 +114930,102060,Sam Liu,1366629339 +114930,102066,Aaron Moorhead,1366629418 +114930,102066,Justin Benson,1366629418 +114930,102084,Lauren Montgomery,1366702308 +114930,102088,Wong Kar-wai,1366835736 +114930,102109,Alfred Santell,1407234683 +114930,102111,Jeff McQueen,1366916817 +114930,102121,Iian Metev,1367104223 +114930,102123,Danny McBride,1376300902 +114930,102123,Evan Goldberg,1367104192 +114930,102123,Jonah Hill,1402909252 +114930,102123,Seth Rogen,1367104192 +114930,102125,Shane Black,1367103978 +114930,102127,Jeremy Lovering,1367103820 +114930,102138,Hamilton McFadden,1367103645 +114930,102171,Tae-Yong Kim,1367212184 +114930,102194,Jeff Nichols,1367317791 +114930,102213,Jack Gold,1367500465 +114930,102217,Chris Bould,1367500360 +114930,102231,Peter Chan,1367500141 +114930,102231,Takeshi Kaneshiro,1367500169 +114930,102233,Peter Lorre,1367500117 +114930,102252,Chia-Liang Liu,1367499470 +114930,102267,Tom Hooper,1367614417 +114930,102282,Mario Muñoz,1367787153 +114930,102294,Charles Sturridge,1367786932 +114930,102299,Carlo Ledesma,1367786748 +114930,102299,James Colquhoun,1367786748 +114930,102299,Laurentine Ten Bosch,1367786748 +114930,102303,Paolo Virzì,1367786689 +114930,102323,Chris Marker,1367819260 +114930,102325,Jean-Luc Godard,1367819293 +114930,102338,Cheh Chang,1367870476 +114930,102367,Taylor Wong,1368183584 +114930,102407,Baz Luhrmann,1368258479 +114930,102415,Djibril Diop Mambéty,1368358571 +114930,102417,Danièle Huillet,1368358616 +114930,102417,Jean-Marie Straub,1368358617 +114930,102429,Claude Miller,1407712816 +114930,102445,J.J. Abrams,1368518051 +114930,102481,Shawn Levy,1368710450 +114930,102483,Abdullah Oguz,1368710486 +114930,102495,Jeffery Schwarz,1368778245 +114930,102517,Criterion,1399774058 +114930,102517,Kihachi Okamoto,1368867269 +114930,102517,Toshirô Mifune,1368867269 +114930,102529,Haile Gerima,1421234670 +114930,102588,Sarah Polley,1369121795 +114930,102590,Andrew Neel,1369121828 +114930,102590,Luke Meyer,1369121828 +114930,102596,Chris Malloy,1369122045 +114930,102602,Georgiy Daneliya,1369234401 +114930,102604,Chris James Thompson,1369234472 +114930,102664,Henry Koster,1402204765 +114930,102666,Leonid Gayday,1369431617 +114930,102672,Ric Burns,1369431645 +114930,102684,Nicolas Winding Refn,1369431787 +114930,102686,Ken Jeong,1369431819 +114930,102686,Todd Phillips,1369431819 +114930,102686,Zach Galifianakis,1369431819 +114930,102688,Edmond Roch,1369432101 +114930,102716,Justin Lin,1369852489 +114930,102739,Artavazd Peleshian,1369852011 +114930,102742,Bing Wang,1369851934 +114930,102747,Charles Chaplin,1369851872 +114930,102751,Cle Shaheed Sloan,1369851794 +114930,102753,Asghar Farhadi,1369851762 +114930,102760,Ben Wheatley,1369851616 +114930,102765,Haile Gerima,1421234671 +114930,102781,Jack Gold,1422086844 +114930,102792,Felix Van Groeningen,1369851190 +114930,102800,Criterion,1399775411 +114930,102800,Noah Baumbach,1369851099 +114930,102819,Steven Soderbergh,1369850354 +114930,102821,Roberto Rossellini,1369850300 +114930,102823,Jonas Mekas,1369850272 +114930,102826,Srdjan Dragojevic,1369850250 +114930,102868,Peter Watkins,1417650457 +114930,102870,Rainer Frimmel,1369993293 +114930,102870,Tizza Covi,1369993293 +114930,102874,Armando Bo,1369993661 +114930,102876,Demian Fenton,1369993787 +114930,102876,Don Argott,1369993788 +114930,102880,M. Night Shyamalan,1370094869 +114930,102903,Louis Leterrier,1382222485 +114930,102910,Greg Jacobson,1370205826 +114930,102910,Jason Gary,1370205826 +114930,102912,Paul Wilmshurst,1370205805 +114930,102917,Jeremy Earp,1370205762 +114930,102917,Loretta Alper,1370205762 +114930,102956,Sam Jaeger,1370326734 +114930,102984,Daniel Krige,1370456104 +114930,102989,Kevin Hooks,1370606527 +114930,102991,Peter Strickland,1421829360 +114930,102993,Jim Rash,1370606444 +114930,102993,Nat Faxon,1370606444 +114930,102993,Steve Carell,1372750699 +114930,103006,W.S. Van Dyke,1410677285 +114930,103017,Oriol Paulo,1414340574 +114930,103022,Daniel Ribeiro,1416380098 +114930,103027,Joss Whedon,1370665096 +114930,103030,Travis Fine,1370804815 +114930,103032,Jan Lindkvist,1370804849 +114930,103032,Stefan Jarl,1370804849 +114930,103042,Zack Snyder,1370805236 +114930,103048,Jordan Vogt-Roberts,1382222421 +114930,103050,Luv Ranjan,1370841452 +114930,103057,Michael McGowan,1407239094 +114930,103059,Margarethe von Trotta,1370841188 +114930,103064,Gustavo Loza,1370841628 +114930,103066,Jeffrey Kimball,1370841762 +114930,103075,James DeMonaco,1403432956 +114930,103081,Mike Fleiss,1371316846 +114930,103081,Mike Piscitelli,1371316846 +114930,103083,Mira Nair,1382222110 +114930,103107,Morgan Neville,1371316384 +114930,103112,Kidlat Tahimik,1371316358 +114930,103137,Sofia Coppola,1371315900 +114930,103141,Dan Scanlon,1371315810 +114930,103166,Alan Lowery,1371540650 +114930,103166,John Pilger,1371540650 +114930,103175,Chantal Akerman,1422606602 +114930,103177,Manoel de Oliveira,1411721411 +114930,103228,Guillermo del Toro,1371790026 +114930,103235,Giuseppe Tornatore,1371847929 +114930,103249,Marc Forster,1371877355 +114930,103253,Neill Blomkamp,1371877539 +114930,103275,Alex Gibney,1372751423 +114930,103277,Kevin Reynolds,1372751402 +114930,103279,David Siegel,1372751174 +114930,103279,Scott McGehee,1372751173 +114930,103279,Steve Coogan,1372751187 +114930,103288,Scott Thurman,1372751093 +114930,103290,Roy Ward Baker,1402196957 +114930,103317,Cristi Puiu,1372750533 +114930,103319,Jay Karas,1372750518 +114930,103335,Chris Renaud,1372750384 +114930,103335,Ken Jeong,1372750692 +114930,103335,Pierre Coffin,1372750384 +114930,103335,Steve Carell,1372750692 +114930,103335,Steve Coogan,1372750759 +114930,103341,Edgar Wright,1372750073 +114930,103341,Nick Frost,1372750073 +114930,103341,Simon Pegg,1372750073 +114930,103372,Paul Feig,1372749755 +114930,103384,Gore Verbinski,1372749374 +114930,103388,Robin Hessman,1372748908 +114930,103422,Jeff Bleckner,1404810069 +114930,103435,Clarence Brown,1402205538 +114930,103439,Dong-Hoon Choi,1373018391 +114930,103444,Robert B. Weide,1373018320 +114930,103452,Maxim Pozdorovkin,1373018280 +114930,103452,Mike Lerner,1373018280 +114930,103465,Mikael Marcimain,1373018197 +114930,103472,Ellen Goosenberg Kent,1373018607 +114930,103472,Jon Alpert,1373018607 +114930,103474,Matthew Cooke,1373281004 +114930,103478,Tim Fywell,1373280977 +114930,103483,Adam Wingard,1373280937 +114930,103483,Eduardo Sánchez,1373280937 +114930,103483,Gareth Evans,1373280937 +114930,103483,Gregg Hale,1373280937 +114930,103483,Jason Eisener,1373280936 +114930,103483,Simon Barrett,1373280937 +114930,103493,Dawn Porter,1373280781 +114930,103521,Carlo Ledesma,1375564545 +114930,103521,James Colquhoun,1375564545 +114930,103525,Fumihiko Sori,1375564529 +114930,103528,Andrew V. McLaglen,1375564511 +114930,103534,Roman Karimov,1375564493 +114930,103536,Roy Del Ruth,1375564475 +114930,103536,Willy Pogany,1405333822 +114930,103539,James Ponsoldt,1375564452 +114930,103541,Stuart Blumberg,1399278200 +114930,103549,Alexandre de La Patellière,1375564408 +114930,103549,Matthieu Delaporte,1375564408 +114930,103554,Tobias Lindholm,1375564360 +114930,103561,Drew DeNicola,1375564316 +114930,103563,Sebastian Junger,1375564301 +114930,103570,Jared Moshe,1375564275 +114930,103572,Alex Winter,1433748084 +114930,103593,Daniil Khrabrovitsky,1375564213 +114930,103598,Rodney Bennett,1375564186 +114930,103602,Jay Chapman,1420373245 +114930,103604,Patrick Bouchitey,1375564122 +114930,103606,Josh Boone,1399023554 +114930,103624,Ryan Coogler,1375563967 +114930,103629,Janis Streics,1375563930 +114930,103639,Rakeysh Omprakash Mehra,1375563878 +114930,103641,Nikhil Advani,1375563864 +114930,103659,Jay Oliva,1375563625 +114930,103661,James Strong,1375563592 +114930,103683,Jonathan Miller,1375563302 +114930,103688,James Wan,1375562477 +114930,103741,Bahram Beizai,1375562146 +114930,103749,René Clément,1375562066 +114930,103751,Josh Fox,1375562050 +114930,103753,Alex Gibney,1375562031 +114930,103759,Phil Karlson,1402208067 +114930,103772,James Mangold,1375561756 +114930,103779,John Mills,1375561703 +114930,103792,Erwin Wagenhofer,1375561587 +114930,103798,Lucy Walker,1375561529 +114930,103801,Joe Swanberg,1412585464 +114930,103810,Dean Parisot,1375561175 +114930,103819,Brad Copeland,1375561091 +114930,103838,Otakar Vávra,1375560909 +114930,103840,Algimantas Puipa,1375560778 +114930,103842,Algimantas Puipa,1375560761 +114930,103846,Shane O'Sullivan,1375560732 +114930,103849,Hoon-jung Park,1375560713 +114930,103851,Mervyn Leroy,1375560698 +114930,103861,Anthony Wonke,1375560678 +114930,103871,Adriana Barbaro,1375560536 +114930,103871,Jeremy Earp,1375560536 +114930,103873,Levent Semerci,1375560520 +114930,103875,Aaron Newman,1375560507 +114930,103935,Danfung Dennis,1375560189 +114930,103966,Zheng Xu,1375564869 +114930,103974,Penny Lane,1375660333 +114930,103980,Woody Allen,1375660280 +114930,103984,Criterion,1399777998 +114930,103984,Paolo Sorrentino,1375660128 +114930,103994,Elizabeth Mims,1375660005 +114930,103994,Jason Tippet,1375660005 +114930,103998,Michael Apted,1375659905 +114930,104028,Richard Fleischer,1402198768 +114930,104031,Steve Skrovan,1376302715 +114930,104050,Blair Treu,1376302597 +114930,104061,Michael Galinsky,1376302311 +114930,104061,Suki Hawley,1376302311 +114930,104069,Louis C.K.,1420722664 +114930,104072,Gérard Depardieu,1376302293 +114930,104072,Josee Dayan,1376302285 +114930,104078,Declan Lowney,1376302148 +114930,104089,Andrew Bujalski,1376301904 +114930,104093,Ziad Doueiri,1376301842 +114930,104103,Ron Davis,1376301622 +114930,104126,Luis Buñuel,1376301176 +114930,104137,David Gordon Green,1376301034 +114930,104144,Chris Berkeley,1419551267 +114930,104144,Jay Oliva,1419551267 +114930,104144,Lauren Montgomery,1419551267 +114930,104155,Danny McBride,1376300904 +114930,104155,Greg Mottola,1376300875 +114930,104175,Rick King,1376303197 +114930,104181,Spiro Razatos,1376303471 +114930,104211,Rawson Marshall Thurber,1376384347 +114930,104231,Johnnie To,1376453471 +114930,104233,Elliott Nugent,1376453434 +114930,104241,Jeff Wadlow,1376453338 +114930,104247,Criterion,1399773922 +114930,104247,Kenji Misumi,1376452743 +114930,104249,Herbert I. Leeds,1376452721 +114930,104266,Steven Greenstreet,1376648458 +114930,104272,Gabriela Cowperthwaite,1376648433 +114930,104280,Roy William Neill,1376648176 +114930,104283,Hayao Miyazaki,1376648124 +114930,104307,Edouard Molinaro,1376858311 +114930,104309,Michael Apted,1376858234 +114930,104314,Chanoch Zeevi,1376857867 +114930,104317,Jemaine Clement,1423391217 +114930,104317,Jess Feast,1376857833 +114930,104323,Ross Ashcroft,1376857745 +114930,104335,Aleksandr Rou,1376890769 +114930,104337,Lee Daniels,1382222447 +114930,104339,Lake Bell,1376890434 +114930,104356,Jem Cohen,1376986745 +114930,104361,David Lowery,1376986729 +114930,104368,Hans Fjellestad,1376986887 +114930,104370,Ellen Goosenberg Kent,1376986969 +114930,104370,Jon Alpert,1376986969 +114930,104370,Matthew O'Neill,1376986969 +114930,104374,Richard Curtis,1382222086 +114930,104376,Eric Khoo,1377061487 +114930,104406,Rama Burshtein,1377258004 +114930,104412,Jean-Philippe Tremblay,1377257980 +114930,104419,Lauren Montgomery,1377375660 +114930,104419,Sam Liu,1377375660 +114930,104423,Robert Guédiguian,1377375622 +114930,104453,Peter Levin,1420510321 +114930,104457,Adam Wingard,1400445164 +114930,104498,Tom Gries,1377844344 +114930,104506,Noah Buschel,1377844244 +114930,104595,Louise Palanker,1378100526 +114930,104599,R.J. Cutler,1378100330 +114930,104625,George Seaton,1402204212 +114930,104636,Richard De Aragues,1378205590 +114930,104721,Adam Bhala Lough,1378795938 +114930,104764,Seong-yun Oh,1378795589 +114930,104780,Roman Kachanov,1378795304 +114930,104803,Marvin J. Chomsky,1378878843 +114930,104841,Alfonso Cuarón,1379064574 +114930,104854,Satyajit Ray,1379064463 +114930,104879,Denis Villeneuve,1379147361 +114930,104881,Scott Cooper,1379147234 +114930,104903,Glenn Leyburn,1379231782 +114930,104903,Lisa Barros D'Sa,1379231782 +114930,104913,Ron Howard,1379231390 +114930,104920,Ömer Faruk Sorak,1379314055 +114930,104920,Yilmaz Erdogan,1379314055 +114930,104923,Chad Hartigan,1379314036 +114930,104932,Marc Munden,1379314399 +114930,104938,Josh Lowell,1416380015 +114930,104938,Peter Mortimer,1416380015 +114930,104944,Destin Cretton,1379393831 +114930,104971,Daniel Anker,1379492274 +114930,104998,Ulrich Seidl,1379580032 +114930,105001,Chad Cohen,1379579992 +114930,105028,Carlos Reygadas,1379751003 +114930,105034,Norman Stone,1379768980 +114930,105044,Dan Sallitt,1379881377 +114930,105089,Louis Theroux,1380009285 +114930,105091,Andrew Monument,1380009269 +114930,105096,Jack Gold,1380009229 +114930,105098,Richard Laxton,1380009182 +114930,105104,Ian McCrudden,1380008840 +114930,105128,Tom Donahue,1380097559 +114930,105130,János Szász,1380097543 +114930,105159,Giorgos Lanthimos,1380252271 +114930,105176,Andrew Currie,1389602991 +114930,105187,Douglas Wilson,1380356697 +114930,105195,John Moffitt,1380356615 +114930,105197,Alexander Payne,1380356561 +114930,105211,Nicole Holofcener,1380449936 +114930,105213,Joseph Gordon-Levitt,1380449818 +114930,105223,Raoul Walsh,1380449558 +114930,105227,Nicole Rittenmeyer,1380449516 +114930,105227,Seth Skundrick,1380449516 +114930,105234,Michael Drumm,1422263812 +114930,105242,Toomas Hussar,1380609170 +114930,105248,Nimród Antal,1380609111 +114930,105250,Adam Curtis,1380609057 +114930,105254,Sebastián Silva,1380609001 +114930,105257,Mark Verkerk,1380608974 +114930,105257,Ruben Smit,1380608973 +114930,105266,Alan Berliner,1380609399 +114930,105269,Mark Hartley,1380609506 +114930,105290,Dibakar Banerjee,1380888190 +114930,105340,Lee Hwan-Kyung,1381139988 +114930,105343,Neeraj Pandey,1381139976 +114930,105355,Abdellatif Kechiche,1381139708 +114930,105355,Criterion,1399776011 +114930,105364,Olivier Assayas,1381139563 +114930,105366,Michael Anderson,1381139511 +114930,105404,Stephen Frears,1381140314 +114930,105412,Jeff Zimbalist,1381215040 +114930,105412,Matt Mochary,1381215040 +114930,105416,Helma Sanders-Brahms,1381215009 +114930,105423,Andrzej Jakimowski,1381214986 +114930,105429,Jacob Kornbluth,1382221766 +114930,105439,Hideyuki Hirayama,1381313217 +114930,105444,Yilmaz Güney,1381313173 +114930,105453,Erik Matti,1381312956 +114930,105468,Cody Cameron,1381396431 +114930,105468,Kris Pearn,1381396431 +114930,105499,Nagisa Ôshima,1430118196 +114930,105504,Paul Greengrass,1381658353 +114930,105509,Glenn Jordan,1381658291 +114930,105526,David Munro,1415557542 +114930,105529,John Pilger,1415557605 +114930,105529,Sean Crotty,1415557611 +114930,105538,Marta Cunningham,1381727907 +114930,105542,Greg Swartz,1381728244 +114930,105585,Robert Rodriguez,1381909003 +114930,105593,Jon S. Baird,1382166337 +114930,105653,Mikael Håfström,1382165880 +114930,105663,Chico Colvard,1382165718 +114930,105709,René Sampaio,1382337382 +114930,105717,Çagan Irmak,1382337152 +114930,105744,Andrea Nix,1382336441 +114930,105744,Sean Fine,1382336441 +114930,105746,Brian Spitz,1382336512 +114930,105765,Mila Turajlic,1382432909 +114930,105767,Francine Rzeznik,1382432875 +114930,105767,Teodoro Maniaci,1382432875 +114930,105769,Ari Folman,1382432852 +114930,105792,Roy Rowland,1382435638 +114930,105835,Richard Ayoade,1382605087 +114930,105844,Steve McQueen,1382604843 +114930,105849,Jim Hemphill,1382604799 +114930,105863,Calin Peter Netzer,1382767345 +114930,105873,Leonard Schrader,1382767149 +114930,105873,Sheldon Renan,1382767149 +114930,105884,Homi Adajania,1382833377 +114930,105886,Hana Makhmalbaf,1382833347 +114930,105888,Aris Chatzistefanou,1382833333 +114930,105888,Katerina Kitidi,1382833333 +114930,105906,Yaron Zilberman,1382856644 +114930,105911,Dome Karukoski,1382940477 +114930,105928,Jean Reno,1383122253 +114930,105928,Jean-Christophe Dessaint,1383122187 +114930,105943,Linda Bloodworth-Thomason,1383122096 +114930,105950,Gregg Champion,1383122045 +114930,105952,Joseph Levy,1383122025 +114930,105954,J.C. Chandor,1383121992 +114930,105968,Daniel Petrie,1383121870 +114930,106002,Gavin Hood,1383731663 +114930,106011,Saschka Unseld,1383731546 +114930,106017,Alexandru Maftei,1383731524 +114930,106019,Kristina Borjesson,1383731493 +114930,106022,Angus MacLane,1383731397 +114930,106048,Mike Leigh,1383731236 +114930,106054,Jan Verheyen,1383731199 +114930,106057,Alejandro Agresti,1383731182 +114930,106059,Jean Becker,1383731160 +114930,106062,Jeff Tremaine,1383731143 +114930,106072,Alan Taylor,1383730947 +114930,106100,Jean-Marc Vallée,1383730373 +114930,106107,Nic Stacey,1383730198 +114930,106109,Chang-Min Choo,1383730174 +114930,106111,Lance Bangs,1383730162 +114930,106113,Jessica Hundley,1383730130 +114930,106113,John Srebalus,1383730130 +114930,106115,Giles Harrison,1383730095 +114930,106115,Jeremy Turner,1383730095 +114930,106115,Nat Sharman,1383730095 +114930,106115,Nicola Cook,1383730095 +114930,106115,Nigel Walk,1383730095 +114930,106115,Peter Oxley,1383730095 +114930,106144,Clio Barnard,1383909056 +114930,106156,Julien Temple,1383908960 +114930,106158,Christian Vincent,1383908940 +114930,106160,Karzan Kader,1383908896 +114930,106163,Zhangke Jia,1383908865 +114930,106165,Markus Imhoof,1383908778 +114930,106170,Eric Rochant,1383908657 +114930,106188,Harry Beaumont,1408439780 +114930,106204,Kim Ki-Duk,1384227943 +114930,106212,Russell Barnes,1384227814 +114930,106220,Dylan Southern,1421742446 +114930,106220,Will Lovelace,1421742446 +114930,106222,Jason Woliner,1420507399 +114930,106226,Benjamín Ávila,1384227716 +114930,106254,Michael Morrissey,1384227075 +114930,106256,John Gray,1384227052 +114930,106302,Woo-Suk Kang,1384536439 +114930,106306,Phil Benson,1384536403 +114930,106332,Greg Camalier,1384673658 +114930,106334,Richard Eyre,1384673638 +114930,106334,Rupert Goold,1384673638 +114930,106334,Thea Sharrock,1384673638 +114930,106353,David Wachs,1384672639 +114930,106405,Crayton Robey,1384847067 +114930,106407,James Toback,1384847045 +114930,106423,Ryan Darst,1384932063 +114930,106431,Lincoln Ruchti,1384932047 +114930,106438,Stephen Frears,1384931933 +114930,106441,Brian Percival,1399450903 +114930,106452,Pawel Pawlikowski,1385030771 +114930,106464,Jonás Cuarón,1385030625 +114930,106471,Munehisa Sakai,1385030580 +114930,106473,Tatsuya Nagamine,1385030551 +114930,106487,Francis Lawrence,1385359150 +114930,106489,Peter Jackson,1385359020 +114930,106491,Carl Rinsch,1385358767 +114930,106503,Russell Barnes,1385358563 +114930,106510,Phil Roman,1385358477 +114930,106515,Çagatay Tosun,1385358463 +114930,106517,Jean-François Brient,1385358411 +114930,106519,Bosse Lindquist,1385358396 +114930,106519,Jesper Huor,1385358396 +114930,106540,Ken Scott,1419971265 +114930,106579,Ric Esther Bienstock,1385359472 +114930,106614,Jari Halonen,1385457043 +114930,106646,Hans Petter Moland,1385533729 +114930,106676,John Paizs,1385765558 +114930,106684,Emilis Velyvis,1385765096 +114930,106686,Miguel Gonçalves Mendes,1385765042 +114930,106690,Henry Levin,1385765331 +114930,106696,Chris Buck,1385765296 +114930,106696,Jennifer Lee,1385765296 +114930,106698,Satsuo Yamamoto,1385764981 +114930,106722,Criterion,1453096388 +114930,106722,Robert Drew,1385806010 +114930,106727,Albert Dupontel,1385805947 +114930,106745,Luchino Visconti,1385939328 +114930,106747,Srdan Golubovic,1385939272 +114930,106753,Björn Stein,1385939171 +114930,106753,Måns Mårlind,1385939170 +114930,106762,Satoshi Nishimura,1385964108 +114930,106766,Coen Brothers,1385964308 +114930,106766,Criterion,1453095834 +114930,106768,Ciro Guerra,1385964481 +114930,106782,Jonah Hill,1402909225 +114930,106782,Martin Scorsese,1396514513 +114930,106822,Frantisek Vlácil,1386143361 +114930,106841,John Wells,1386239184 +114930,106850,Criterion,1399773852 +114930,106850,Kenji Misumi,1386239119 +114930,106852,Criterion,1399773857 +114930,106852,Kazuo Mori,1386239088 +114930,106859,Lijo Jose Pellissery,1386239276 +114930,106863,Pirjo Honkasalo,1386314346 +114930,106889,Teller,1386400657 +114930,106892,Lana Wilson,1386400576 +114930,106892,Martha Shane,1386400577 +114930,106895,Frank H. Woodward,1386400536 +114930,106916,David O. Russell,1386489870 +114930,106920,Spike Jonze,1386488805 +114930,106922,Criterion,1399773867 +114930,106922,Tokuzô Tanaka,1386488604 +114930,106924,Criterion,1399773877 +114930,106924,Tokuzô Tanaka,1386488590 +114930,106970,Amin Matalqa,1386488573 +114930,106983,François Ozon,1386573472 +114930,106986,Arthur Rankin Jr.,1386573327 +114930,106986,Jules Bass,1386573327 +114930,106992,Carlos Saura,1386573405 +114930,106998,Criterion,1399774069 +114930,106998,Kenji Misumi,1386573307 +114930,107000,James Hawes,1386573287 +114930,107011,Alberto Fuguet,1386573606 +114930,107013,Moira Armstrong,1386573692 +114930,107024,Jukka-Pekka Siili,1386658585 +114930,107057,Yann Demange,1386740463 +114930,107061,Mamoru Oshii,1386740114 +114930,107067,Lilian Franck,1386740245 +114930,107067,Robert Cibis,1386740245 +114930,107069,Peter Berg,1386740092 +114930,107081,Criterion,1399773888 +114930,107081,Kimiyoshi Yasuda,1386835942 +114930,107098,Wojciech Has,1386835684 +114930,107100,Sarah Maldoror,1386835674 +114930,107117,Alex Gibney,1399280836 +114930,107130,Terry McDonough,1386918218 +114930,107141,John Lee Hancock,1386970066 +114930,107159,Criterion,1399773897 +114930,107159,Kazuo Ikehiro,1387004872 +114930,107161,Criterion,1399773906 +114930,107161,Kazuo Ikehiro,1387004840 +114930,107174,Giovanni Guareschi,1415557245 +114930,107174,Pier Paolo Pasolini,1415557245 +114930,107188,Criterion,1399773932 +114930,107188,Kimiyoshi Yasuda,1387078473 +114930,107196,Michel Gondry,1387170179 +114930,107224,Andy De Emmony,1387176734 +114930,107226,Robert Wise,1387177030 +114930,107238,Zoran Tadic,1387366624 +114930,107252,Peter Lydon,1387366512 +114930,107252,Thaddeus O'Sullivan,1387366512 +114930,107262,Criterion,1399773951 +114930,107262,Kazuo Mori,1387366474 +114930,107264,Akira Inoue,1387366451 +114930,107264,Criterion,1399773943 +114930,107304,Hiroyuki Imaishi,1387463567 +114930,107306,Hiroyuki Imaishi,1387463566 +114930,107309,Lucy Mulloy,1387463544 +114930,107316,Robert Stone,1387463183 +114930,107334,Gérard Oury,1387699202 +114930,107342,Criterion,1399773961 +114930,107342,Kenji Misumi,1387699134 +114930,107344,Criterion,1399773969 +114930,107344,Tokuzô Tanaka,1387699100 +114930,107346,Criterion,1399773977 +114930,107346,Kazuo Ikehiro,1387699079 +114930,107348,Adam McKay,1387699051 +114930,107357,Ashley Judd,1387698819 +114930,107357,Bonnie Hunt,1387698820 +114930,107357,Bryce Dallas Howard,1387698819 +114930,107357,Laura Dern,1387698820 +114930,107357,Sharon Maguire,1387698820 +114930,107359,Christoforos Papakaliatis,1387698590 +114930,107361,Dante Lam,1387698545 +114930,107370,Luigi Bazzoni,1387698464 +114930,107380,Spike Lee,1387698421 +114930,107382,Whoopi Goldberg,1387698390 +114930,107406,Joon-ho Bong,1388060607 +114930,107408,Leonid Bykov,1388060512 +114930,107410,Pavel Arsenov,1388060494 +114930,107412,Leonid Gayday,1388060472 +114930,107460,André Mélançon,1388059780 +114930,107477,Sergio Corbucci,1388059645 +114930,107499,Luis Mandoki,1388061094 +114930,107539,Sergei Loznitsa,1389366051 +114930,107555,Asghar Farhadi,1389365968 +114930,107565,Bora Dagtekin,1389365891 +114930,107612,Chris LaMartina,1389012843 +114930,107614,Zach Clark,1389012823 +114930,107619,Peyman Moaadi,1389012785 +114930,107627,Philipp Stölzl,1389012613 +114930,107636,Baillie Walsh,1389012344 +114930,107638,Richard T. Heffron,1389012315 +114930,107640,Ebrahim Hatamikia,1389012303 +114930,107643,Bahram Tavakoli,1389012277 +114930,107649,Alex van Warmerdam,1389012222 +114930,107653,Andrew Ruhemann,1389012203 +114930,107653,Shaun Tan,1389012203 +114930,107662,Criterion,1399773990 +114930,107662,Kimiyoshi Yasuda,1389012144 +114930,107673,Piero Schivazappa,1389012001 +114930,107690,Rauni Mollberg,1389011732 +114930,107700,Jeffrey Schwarz,1389011649 +114930,107713,Gertjan Zwanikken,1389011476 +114930,107713,Karen Soeters,1389011476 +114930,107718,David Yates,1451895748 +114930,107725,Edward Gray,1389011263 +114930,107725,Michael Schwarz,1389011263 +114930,107735,Sasha Knezev,1389011173 +114930,107743,Benjamin Turner,1389011017 +114930,107743,Gabe Turner,1389011017 +114930,107754,Kimmo Koskela,1389010896 +114930,107771,Jim Jarmusch,1389010532 +114930,107778,Masaki Kobayashi,1389010265 +114930,107778,Tatsuya Nakadai,1389010269 +114930,107780,David Mallet,1389010231 +114930,107827,Tony Gatlif,1389365798 +114930,107848,Marisa Miller Wolfson,1389365720 +114930,107853,M.S. Sathyu,1389365646 +114930,107855,Gonzalo Suárez,1389365633 +114930,107883,Ritesh Batra,1389365200 +114930,107885,Boudewijn Koole,1389365128 +114930,107890,Leo McCarey,1389365072 +114930,107890,Oliver Hardy,1389365085 +114930,107890,Stan Laurel,1389365085 +114930,107903,Konrad Wolf,1389364691 +114930,107910,Lawrence Shapiro,1389364664 +114930,107949,Ralph Fiennes,1389605047 +114930,107951,Reshef Levi,1389605019 +114930,107953,Masahiro Hosoda,1389604956 +114930,107958,Juan José Campanella,1389604846 +114930,107972,Wesley Ruggles,1389604466 +114930,107978,Hirokazu Koreeda,1389604376 +114930,108001,Jörg Bundschuh,1389602770 +114930,108041,Guillaume Gallienne,1389614042 +114930,108043,Joey Figueroa,1389613986 +114930,108043,Zak Knutson,1389613987 +114930,108052,Christophe Honoré,1389774102 +114930,108054,Alexander Veledinsky,1389774084 +114930,108056,Daiki Tomiyasu,1389773966 +114930,108056,Hideya Takahashi,1389773966 +114930,108056,Itsurô Kawasaki,1389773966 +114930,108056,Yukio Kuroda,1389773966 +114930,108063,Tomas Alfredson,1389773844 +114930,108065,Hans Petter Moland,1389773764 +114930,108070,Kevin VanHook,1389773633 +114930,108076,Timothy Wheeler,1389773490 +114930,108078,Cédric Klapisch,1389773473 +114930,108088,Per Fly,1389773329 +114930,108100,James Dirschberger,1389773005 +114930,108125,William Nigh,1389776180 +114930,108130,Rasool Mollagholi Poor,1389949268 +114930,108132,Bahman Ghobadi,1389949233 +114930,108134,Kamal Tabrizi,1389949171 +114930,108136,Morris Engel,1389949111 +114930,108136,Ruth Orkin,1389949111 +114930,108143,Zachary Heinzerling,1389949077 +114930,108149,Frederick Wiseman,1389948850 +114930,108158,George Archainbaud,1389948589 +114930,108186,Peter Kuran,1390093249 +114930,108192,Wes Anderson,1390093028 +114930,108202,Jeff Krulik,1390092725 +114930,108202,John Heyn,1390092725 +114930,108214,Yves Boisset,1390092571 +114930,108216,Ben Howling,1390092536 +114930,108216,Yolanda Ramke,1390092536 +114930,108220,Jehane Noujaim,1390092463 +114930,108246,Peter Thorwarth,1390218749 +114930,108248,Dave Mossop,1390218686 +114930,108248,Eric Crosland,1390218686 +114930,108255,Yoshikazu Yasuhiko,1390218566 +114930,108280,Kathryn Aselton,1440403778 +114930,108311,Jean Negulesco,1390317259 +114930,108328,Anders Nilsson,1390317022 +114930,108342,Henri Verneuil,1390316808 +114930,108370,Harry Beaumont,1390317406 +114930,108403,Brett Whitcomb,1390478536 +114930,108407,Servando González,1390478476 +114930,108410,Alekos Sakellarios,1390478438 +114930,108468,Steven Bernstein,1390568167 +114930,108476,Alekos Sakellarios,1390991644 +114930,108481,Jeremy Borash,1390991521 +114930,108481,Terry Funk,1390991521 +114930,108491,Alexandra Pelosi,1390991460 +114930,108493,Rick Rowley,1390991449 +114930,108499,Wesley Ruggles,1390991301 +114930,108501,Jay Oliva,1390991264 +114930,108508,Andrew Dosunmu,1390991167 +114930,108510,Tudor Giurgiu,1390991109 +114930,108518,Christian Duguay,1390991024 +114930,108520,Amei Wallach,1390990996 +114930,108520,Marion Cajori,1390990996 +114930,108527,Aris Chatzistefanou,1390990857 +114930,108527,Katerina Kitidi,1390990857 +114930,108540,Stéphane Aubier,1390990644 +114930,108540,Vincent Patar,1390990644 +114930,108544,Gregg Champion,1403943953 +114930,108551,Mehdi Ben Attia,1390990503 +114930,108566,Bernard Queysanne,1390990429 +114930,108649,Daniele Anastasion,1391093095 +114930,108649,Eric Strauss,1391093095 +114930,108653,John Greyson,1391093062 +114930,108660,Molly Bernstein,1391092908 +114930,108709,Simon Cellan Jones,1391298552 +114930,108709,Susanna White,1391298552 +114930,108727,Lars von Trier,1391298269 +114930,108729,Denis Villeneuve,1391298120 +114930,108752,Matti Kassila,1391595816 +114930,108754,Cao Hamburger,1391595798 +114930,108768,Jan Hrebejk,1391595505 +114930,108773,Clarence Brown,1391595425 +114930,108778,Alain Guiraudie,1391594817 +114930,108787,Xavier Dolan,1391594587 +114930,108795,Lauren Montogomery,1391594511 +114930,108799,Harry Beaumont,1391594368 +114930,108816,Anne Wheeler,1391593794 +114930,108825,Jean-Pierre Jeunet,1391593530 +114930,108846,Kim Friedman,1391596050 +114930,108871,Jean Vigo,1391785703 +114930,108873,Juan José Campanella,1391785680 +114930,108875,Benjamin Cantu,1391785635 +114930,108891,Criterion,1399773999 +114930,108891,Satsuo Yamamoto,1391785345 +114930,108893,Criterion,1399774007 +114930,108893,Kenji Misumi,1391785301 +114930,108899,Sebastián Lelio,1391785268 +114930,108932,Christopher Miller,1391989379 +114930,108932,Jonah Hill,1402909228 +114930,108932,Phil Lord,1391989379 +114930,108938,Elie Wajeman,1391988948 +114930,108981,Lars von Trier,1392028667 +114930,108983,Enrico Casarosa,1392028550 +114930,108989,John Erman,1392028963 +114930,109000,Gérard Jugnot,1392122192 +114930,109038,Ross Finkel,1392283344 +114930,109038,Trevor Martin,1392283344 +114930,109042,Joe Lynch,1392283331 +114930,109057,Çagan Irmak,1392283022 +114930,109064,Bill Siegel,1392282863 +114930,109066,Alain Resnais,1392282835 +114930,109096,Subhash Ghai,1392379200 +114930,109098,Majid Majidi,1392379185 +114930,109108,Blue Hadaegh,1392378950 +114930,109108,Grover Babcock,1392378950 +114930,109151,Michael Webber,1392494777 +114930,109153,Gilles Penso,1392495320 +114930,109155,Ian Roumain,1392495412 +114930,109155,Michael Schwartz,1392495412 +114930,109161,Roman Polanski,1392495570 +114930,109185,Arlen Tarlofsky,1392635441 +114930,109185,Gisaburo Sugii,1392635441 +114930,109201,Curtis Bowers,1392634925 +114930,109203,Henry Koster,1392634900 +114930,109231,Ville Mäkelä,1392636082 +114930,109243,David Gordon Green,1392722930 +114930,109249,Fernando E. Solanas,1392722869 +114930,109251,Fernando E. Solanas,1392722829 +114930,109253,Fernando E. Solanas,1392722794 +114930,109256,Jean Rouch,1392722754 +114930,109269,Emmett Malloy,1392723465 +114930,109282,Brett Whitcomb,1392884730 +114930,109287,Hajime Tsuburaya,1392884692 +114930,109321,Jean-François Laguionie,1392884181 +114930,109323,Jan-Willem Breure,1392884140 +114930,109330,Yves Simoneau,1392884049 +114930,109357,Ryan Murphy,1393107123 +114930,109364,Paul Grimault,1393106993 +114930,109368,Donna Davies,1393106959 +114930,109370,Ezra Edelman,1393106944 +114930,109374,Wes Anderson,1393106802 +114930,109383,Terence Nance,1393106540 +114930,109385,Jamie Meltzer,1393106510 +114930,109390,Yi'nan Diao,1393106473 +114930,109392,Ye Lou,1393106452 +114930,109420,Dan Scanlon,1393495804 +114930,109420,John Lasseter,1393495804 +114930,109423,Jim Capobianco,1393495793 +114930,109425,Ronnie del Carmen,1393495783 +114930,109441,Andrés Baiz,1393495698 +114930,109446,Satsuo Yamamoto,1393495653 +114930,109448,Iván Zulueta,1393495623 +114930,109450,Chantal Akerman,1393495612 +114930,109452,Hany Abu-Assad,1393495600 +114930,109457,Sylvain Estibal,1393495543 +114930,109459,Johnny E. Jensen,1393495532 +114930,109461,Dany Boon,1393495506 +114930,109463,Juan Carlos Maneglia,1393495483 +114930,109463,Tana Schembori,1393495484 +114930,109474,Kenji Misumi,1393495256 +114930,109476,Kenji Misumi,1393495247 +114930,109479,Kazuo Mori,1393495229 +114930,109487,Christopher Nolan,1393495032 +114930,109492,Claude Lanzmann,1393494887 +114930,109526,Gregg Champion,1403943982 +114930,109529,Cheryl Dunn,1393585358 +114930,109533,Guy Green,1393585404 +114930,109542,John Moffitt,1393585579 +114930,109556,John Moffitt,1393586215 +114930,109578,Jaume Collet-Serra,1424754196 +114930,109596,Ignacio Ferreras,1393807676 +114930,109598,Peter Greenaway,1393807664 +114930,109616,Dylan Mohan Gray,1394175491 +114930,109621,Lance Bangs,1394175466 +114930,109621,Spike Jonze,1394175468 +114930,109633,Makoto Shinkai,1394175149 +114930,109638,Nobuhiro Yamashita,1394175101 +114930,109640,Ernst Lubitsch,1394175075 +114930,109667,Helmut Käutner,1394313207 +114930,109671,Kazuo Mori,1394313067 +114930,109682,Masayuki Suo,1394312485 +114930,109687,Mark Levinson,1394312444 +114930,109697,Matti Kassila,1394319409 +114930,109731,John Puglisi,1394435868 +114930,109731,Jonah Hill,1402909235 +114930,109733,Francis Ford Coppola,1394435662 +114930,109738,Damiano Damiani,1394435566 +114930,109742,E.L. Katz,1394435270 +114930,109769,Mikkel Nørgaard,1394795031 +114930,109776,Ed Skudder,1394794854 +114930,109776,Zack Keller,1394794855 +114930,109779,Scott Di Lalla,1394794803 +114930,109779,Zack Coffman,1394794803 +114930,109781,Sung-Hee Jo,1394794792 +114930,109800,Fernando Grostein Andrade,1394794349 +114930,109802,Cláudio Torres,1394794191 +114930,109806,Shûichi Okita,1394794111 +114930,109812,Helmut Käutner,1394793966 +114930,109848,Jonathan Glazer,1394911488 +114930,109864,Rob Thomas,1399450515 +114930,109869,Corey Yuen,1394960149 +114930,109869,Jeffrey Lau,1394960149 +114930,109877,Rob Reiner,1394960134 +114930,109887,Yûya Ishii,1395045998 +114930,109893,Özgür Yildirim,1395045870 +114930,109895,Jason Bateman,1395045857 +114930,109904,Robert Raphael Goodman,1395045614 +114930,109912,Ernest R. Dickerson,1395046280 +114930,109921,Todd Ahlberg,1395336145 +114930,109923,Gilles Legrand,1395336135 +114930,109925,Matti Kassila,1395336111 +114930,109929,Barbara-Anne Steegmuller,1395335976 +114930,109931,Tengiz Abuladze,1395335961 +114930,109951,Diederik Van Rooijen,1395335627 +114930,109953,Joseph Barbera,1422605766 +114930,109953,William Hanna,1422605766 +114930,109963,Bertrand Tavernier,1395379931 +114930,109965,Jason Moore,1395379896 +114930,109965,Michael John Warren,1395379896 +114930,109968,Shion Sono,1395379785 +114930,109971,Emilio Martínez Lázaro,1395379666 +114930,109991,Nash Edgerton,1395557929 +114930,109997,Kjell-Åke Andersson,1395557431 +114930,110001,Matt Weston,1395557207 +114930,110026,Edgar Barens,1395562153 +114930,110034,Edmund Goulding,1395562671 +114930,110044,Joseph L. Mankiewicz,1395734584 +114930,110048,Fred C. Newmeyer,1395734438 +114930,110048,Harold Lloyd,1406541342 +114930,110058,Nicolo Donato,1395734355 +114930,110102,Anthony Russo,1396135639 +114930,110102,Joe Russo,1396135639 +114930,110110,David Mackenzie,1396135374 +114930,110116,Kenji Uchida,1396135291 +114930,110123,James Rasin,1396135244 +114930,110127,Darren Aronofsky,1396135230 +114930,110138,Clément Oubrerie,1396135026 +114930,110138,Marguerite Abouet,1396135026 +114930,110140,Kristian Manchester,1396135012 +114930,110140,Peter Svatek,1396135012 +114930,110167,Bertrand Tavernier,1396226284 +114930,110169,Olivier Marchal,1396226206 +114930,110171,Louise Archambault,1396226189 +114930,110173,Jim Taihuttu,1396226157 +114930,110194,Tom Berninger,1396254774 +114930,110200,Celine Danhier,1396254701 +114930,110225,Robert Mandel,1396345691 +114930,110227,William Nigh,1396345618 +114930,110267,Miklós Jancsó,1396514217 +114930,110269,Miklós Jancsó,1396514207 +114930,110273,Volker Schlöndorff,1396514106 +114930,110281,Lik-Chi Lee,1396514055 +114930,110281,Stephen Chow,1396514055 +114930,110312,Scott L. Montoya,1396514675 +114930,110324,Rithy Panh,1396739517 +114930,110342,Kôji Wakamatsu,1396817673 +114930,110354,Sean Gerowin,1396817048 +114930,110366,Tamra Davis,1396848955 +114930,110415,John Pilger,1397028330 +114930,110415,Steve Connelly,1397028330 +114930,110445,Jon Jones,1397336771 +114930,110447,Nina Conti,1397336615 +114930,110449,Amy Seimetz,1397336730 +114930,110455,Anthony Lucas,1397336391 +114930,110461,Lukas Moodysson,1397336261 +114930,110497,Mikhail Romm,1397677179 +114930,110501,Gareth Evans,1397677083 +114930,110503,Sean Ellis,1397676993 +114930,110510,Alain Corneau,1397676808 +114930,110539,Zdravko Sotra,1397677870 +114930,110548,Nancy Buirski,1397886388 +114930,110553,Marc Webb,1397885775 +114930,110555,Pier Paolo Pasolini,1397886363 +114930,110557,Ron Morales,1397886324 +114930,110582,Richard Hankin,1398053541 +114930,110586,John Michael McDonagh,1398053507 +114930,110588,Till Schauder,1398053426 +114930,110593,Henry Hathaway,1398053307 +114930,110593,Henry King,1398053307 +114930,110593,Henry Koster,1398053307 +114930,110593,Howard Hawks,1398053307 +114930,110593,Jean Negulesco,1398053307 +114930,110597,Clarence Brown,1398053275 +114930,110611,Jim Mickle,1398053007 +114930,110633,Jack Conway,1398069294 +114930,110645,Álex de la Iglesia,1414480602 +114930,110655,Carlos Saldanha,1398152275 +114930,110655,Jemaine Clement,1398152275 +114930,110675,Brin Hill,1398228297 +114930,110696,Etienne Périer,1398229147 +114930,110761,Michael Curtiz,1402192581 +114930,110769,Shin'ya Tsukamoto,1398503072 +114930,110790,Shan Jin,1398754705 +114930,110794,Boris Zubov,1398754660 +114930,110794,James Fox,1398754660 +114930,110794,Tim Coleman,1398754660 +114930,110796,Roger Michell,1398754635 +114930,110798,Tomoyuki Takimoto,1398754551 +114930,110820,William Wyler,1398753352 +114930,110858,Michael Apted,1399012784 +114930,110860,Victor Salva,1426471917 +114930,110867,Faruk Aksoy,1399012317 +114930,110871,Kim Mordaunt,1399012257 +114930,110873,Felix Herngren,1399012235 +114930,110882,Steven Knight,1399007486 +114930,110884,Tokuzô Tanaka,1399007419 +114930,110892,Michael Mayer,1399007245 +114930,110921,George Nichols Jr.,1399013991 +114930,111031,Ben Wright,1399249530 +114930,111113,Nicholas Stoller,1399443902 +114930,111115,Fredrik Edfeldt,1399443765 +114930,111235,Frank Pavich,1399539346 +114930,111237,Keith Allen,1399539358 +114930,111247,Kazuo Mori,1399758428 +114930,111253,Sevan Matossian,1399758155 +114930,111253,Vassiliki Khonsari,1399758154 +114930,111255,Neeraj Pandey,1399758082 +114930,111266,David Wnendt,1399757729 +114930,111290,Amat Escalante,1399838134 +114930,111314,Thaddeus O'Sullivan,1400054410 +114930,111332,Matías Piñeiro,1400053791 +114930,111343,Criterion,1400054724 +114930,111343,Satyajit Ray,1400054724 +114930,111345,Criterion,1400054835 +114930,111345,Rainer Werner Fassbinder,1400054835 +114930,111347,Carl Theodor Dreyer,1400054931 +114930,111347,Criterion,1400054931 +114930,111349,Criterion,1400055238 +114930,111349,Emilio Gómez Muriel,1400055213 +114930,111349,Fred Zinnemann,1400055213 +114930,111351,Criterion,1400055256 +114930,111351,Kenji Misumi,1400055272 +114930,111360,Luc Besson,1400312562 +114930,111362,Bryan Singer,1400312484 +114930,111364,Gareth Edwards,1430111390 +114930,111370,Hajrudin Krvavac,1400311805 +114930,111377,Daniel Farrands,1400311326 +114930,111380,Matthew Whiteman,1400311269 +114930,111384,Jeremy Saulnier,1400311230 +114930,111387,Gia Coppola,1400311209 +114930,111401,Criterion,1400312986 +114930,111401,Satyajit Ray,1400312986 +114930,111403,Criterion,1400313228 +114930,111403,Satyajit Ray,1400313228 +114930,111405,Ahmed El Maanouni,1400313306 +114930,111405,Criterion,1400313306 +114930,111407,Criterion,1400313675 +114930,111407,Jacques Demy,1400313701 +114930,111409,Criterion,1400313720 +114930,111409,Kimiyoshi Yasuda,1400313721 +114930,111411,Criterion,1400313733 +114930,111411,Kazuo Mori,1400313733 +114930,111436,Jay Chapman,1420373246 +114930,111441,Malcolm Clarke,1400444770 +114930,111443,Jon Favreau,1400444733 +114930,111458,Roberto Rossellini,1400444267 +114930,111499,Criterion,1400452450 +114930,111499,Shintarô Katsu,1400452450 +114930,111515,Criterion,1400479199 +114930,111515,Kimiyoshi Yasuda,1400479199 +114930,111517,Carlos Marques-Marcet,1400486394 +114930,111529,Ryan Murphy,1400487820 +114930,111544,John Pilger,1400655303 +114930,111546,Alan Lowery,1415557584 +114930,111546,John Pilger,1415557598 +114930,111548,Alan Lowery,1415557586 +114930,111583,George Schaefer,1400755405 +114930,111587,David Hare,1400919557 +114930,111603,Bill Duke,1400919085 +114930,111603,D. Channsin Berry,1400919085 +114930,111622,John Carney,1401082608 +114930,111626,Brent Hodge,1401082735 +114930,111638,Paul Bogart,1401082911 +114930,111659,Robert Stromberg,1401137672 +114930,111661,Hossein Amini,1401137580 +114930,111663,Jordan Rubin,1401137527 +114930,111732,Alejandro Jodorowsky,1401433103 +114930,111743,Seth MacFarlane,1401511545 +114930,111755,Jason M. Fitzpatrick,1401659017 +114930,111755,Ric Serena,1401659017 +114930,111757,Matt Mahurin,1401659061 +114930,111759,Doug Liman,1401659193 +114930,111762,Pantelis Voulgaris,1401659222 +114930,111774,Al Reinert,1401882241 +114930,111774,John Dean,1401882241 +114930,111778,John Curran,1401882140 +114930,111813,Shaul Schwarz,1401881087 +114930,111815,Ching-Po Wong,1401881028 +114930,111852,Vlad Yudin,1401974361 +114930,111874,Alan J. Pakula,1402036739 +114930,111880,Dheeraj Akolkar,1402036582 +114930,111901,James Kirkwood,1402176825 +114930,111913,Hong Khaou,1402176783 +114930,111921,Josh Boone,1402176389 +114930,111993,Hélène Giraud,1402310453 +114930,111993,Thomas Szabo,1402310453 +114930,112013,Francisco Franco Alba,1402310532 +114930,112064,Michael Roemer,1402577043 +114930,112066,Hiroyuki Okiura,1402577008 +114930,112070,David Cronenberg,1402576923 +114930,112087,Darren Paul Fisher,1402576420 +114930,112116,Hiner Saleem,1402578223 +114930,112138,Christopher Miller,1402648846 +114930,112138,Jonah Hill,1402909230 +114930,112138,Phil Lord,1402648846 +114930,112165,Paolo Virzì,1402909581 +114930,112175,Dean DeBlois,1402909034 +114930,112175,Jonah Hill,1402909232 +114930,112179,Volker Schlöndorff,1402908882 +114930,112183,Alejandro González Iñárritu,1402908840 +114930,112255,Paul Grignon,1403086795 +114930,112257,Andrey Smirnov,1403086427 +114930,112257,Larisa Shepitko,1403086427 +114930,112261,Frank Launder,1403086325 +114930,112273,Marcel Rasquin,1403087180 +114930,112290,Richard Linklater,1403257483 +114930,112334,Brian Knappenberger,1403521327 +114930,112342,Friðrik Þór Friðriksson,1403521180 +114930,112381,Ragnar Bragason,1403682546 +114930,112399,Charlie Siskel,1403866883 +114930,112399,John Maloof,1403866883 +114930,112404,Wladyslaw Pasikowski,1403866856 +114930,112421,Lenny Abrahamson,1403940916 +114930,112434,Nana Ekvtimishvili,1403997371 +114930,112434,Simon Groß,1403997371 +114930,112439,Stephen Poliakoff,1404715584 +114930,112446,Brian Welsh,1404715288 +114930,112454,Valeria Golino,1404714917 +114930,112469,Chiemi Karasawa,1404714622 +114930,112471,King Vidor,1404714595 +114930,112473,David Attwood,1404714573 +114930,112495,Jason Osder,1404712197 +114930,112501,Kundan Shah,1404712066 +114930,112508,Gérard Blain,1404712020 +114930,112510,Gérard Blain,1404712008 +114930,112512,Keiichi Hara,1404711977 +114930,112515,Jennifer Kent,1404711614 +114930,112546,Ryan Miningham,1404716159 +114930,112550,Kornél Mundruczó,1404808844 +114930,112552,Damien Chazelle,1404808922 +114930,112556,David Fincher,1404809142 +114930,112582,Steve James,1404903672 +114930,112589,Hunter Weeks,1404987877 +114930,112591,Alex Gibney,1404987910 +114930,112610,Søren Balle,1405149515 +114930,112621,Elia Suleiman,1405149390 +114930,112623,Matt Reeves,1405149300 +114930,112648,Gérard Blain,1405328069 +114930,112653,Chapman Way,1405327982 +114930,112653,Maclain Way,1405327982 +114930,112665,Cameron Casey,1405328494 +114930,112689,Alexandros Avranas,1405424407 +114930,112693,William Dieterle,1405425031 +114930,112710,Jack Garfein,1405597486 +114930,112733,Tim Wolochatiuk,1405683464 +114930,112743,Niall MacCormick,1405714563 +114930,112759,Craig Monahan,1406028204 +114930,112807,Hideaki Anno,1406027341 +114930,112816,Paolo Sorrentino,1406027172 +114930,112852,James Gunn,1406107346 +114930,112854,René Clair,1406107169 +114930,112856,Liz Garbus,1406106994 +114930,112871,Laís Bodanzky,1406196909 +114930,112882,Duane Graves,1406197401 +114930,112882,Justin Meeks,1406197402 +114930,112897,Patrick Hughes,1406283548 +114930,112913,Eric Idle,1406371460 +114930,112923,Frank Piasechi Poulsen,1406456789 +114930,112925,Daniel Patrick Carbone,1420979110 +114930,112929,Ulrich Seidl,1406456837 +114930,112940,Anton Corbijn,1406541819 +114930,112948,Kei Kumai,1406541501 +114930,112957,Fred C. Newmeyer,1406541326 +114930,112957,Harold Lloyd,1406541345 +114930,112995,Nils Malmros,1406635051 +114930,113020,James Parrott,1406717213 +114930,113020,Oliver Hardy,1406717213 +114930,113020,Stan Laurel,1406717213 +114930,113039,Peter Werner,1406808473 +114930,113048,Louis Lumière,1421735153 +114930,113064,Michael Winterbottom,1406887051 +114930,113064,Steve Coogan,1406887051 +114930,113066,Jan Svankmajer,1406887135 +114930,113073,Georg Maas,1406887470 +114930,113083,Georg Wilhelm Pabst,1407062934 +114930,113089,Jillian Schlesinger,1407063054 +114930,113092,Kate Logan,1407063066 +114930,113126,Kent Jones,1407134711 +114930,113139,Charles Chaplin,1407135601 +114930,113145,André Cayatte,1407135739 +114930,113159,Jeff Baena,1407233765 +114930,113207,Tate Taylor,1407410838 +114930,113214,Paul Crowder,1407489261 +114930,113220,Allison Berg,1407489386 +114930,113220,Frank Keraudren,1407489386 +114930,113227,Claude Miller,1407712818 +114930,113230,Dan Curtis,1407712678 +114930,113240,Nuri Bilge Ceylan,1407712352 +114930,113244,Jason DaSilva,1407712325 +114930,113250,Hans Petter Moland,1407712274 +114930,113252,Gerard Johnstone,1407712139 +114930,113263,Yves Robert,1407748782 +114930,113275,Lasse Hallström,1413292767 +114930,113278,Ethan Spaulding,1407748588 +114930,113278,Jay Oliva,1407748588 +114930,113282,Jeremy Grant,1407748462 +114930,113290,Meng Hua Ho,1407748384 +114930,113304,Grace Lee,1407841166 +114930,113315,Talya Lavie,1407841415 +114930,113323,Richard Loncraine,1407841575 +114930,113370,Satyajit Ray,1408087078 +114930,113374,Sylvain Chomet,1408159626 +114930,113430,Mark Lewis,1408268890 +114930,113432,Jeanne Jordan,1408268970 +114930,113432,Steven Ascher,1408268970 +114930,113453,Luke Greenfield,1428889342 +114930,113466,Brad Bernstein,1408439060 +114930,113474,John Korty,1408438896 +114930,113478,Larisa Shepitko,1408438757 +114930,113507,Robert Enrico,1408608145 +114930,113513,Ilan Ziv,1408608190 +114930,113532,Damon Beesley,1408698199 +114930,113532,Iain Morris,1408698199 +114930,113534,Robert Harmon,1408698571 +114930,113543,Gaston Kaboré,1408698340 +114930,113559,Kenji Mizoguchi,1408786069 +114930,113573,Frank Miller,1408956391 +114930,113573,Robert Rodriguez,1408956391 +114930,113582,Chadd Harbold,1408956700 +114930,113606,Kevin Dunn,1408956993 +114930,113612,Moustapha Akkad,1408957049 +114930,113614,Alex Segal,1408957058 +114930,113634,Hisao Kurosawa,1409132267 +114930,113638,Fu Shen,1409132229 +114930,113642,Kelly Reichardt,1409132150 +114930,113646,Ela Thier,1409131990 +114930,113670,Joe Halderman,1409133095 +114930,113686,Sergey Bondarchuk,1409298552 +114930,113692,Claude Lelouch,1409396727 +114930,113703,Abel Ferrara,1409468918 +114930,113705,Criterion,1453095220 +114930,113705,Jean-Pierre Dardenne,1409469105 +114930,113705,Luc Dardenne,1409469105 +114930,113711,Tolga Örnek,1409469295 +114930,113723,Dusan Hanák,1409469407 +114930,113743,Jack Conway,1409561257 +114930,113749,Phil Rosen,1409561385 +114930,113755,Paul Cox,1409562451 +114930,113767,Sebastian del Amo,1409643355 +114930,113798,Phil Rosen,1409732464 +114930,113829,Charlie McDowell,1409993815 +114930,113851,Daniel Monzón,1409993432 +114930,113855,Molly Milton,1409993361 +114930,113862,Adam Wingard,1409993251 +114930,113872,Bruce Pittman,1409992961 +114930,113902,Satyajit Ray,1410116124 +114930,113938,Peter W. Kunhardt,1410167137 +114930,113955,Roy Del Ruth,1410167933 +114930,113968,Chandler Tuttle,1410246624 +114930,113999,Nikita Mikhalkov,1410498540 +114930,114003,Talal Derki,1410498666 +114930,114011,Alan Lowery,1410498876 +114930,114011,John Pilger,1410498876 +114930,114017,Joseph Anthony,1410499081 +114930,114028,Matthew Warchus,1410600325 +114930,114060,Michaël R. Roskam,1410845263 +114930,114066,Iain Forsyth,1410845394 +114930,114066,Jane Pollard,1410845394 +114930,114070,Liz Garbus,1410845435 +114930,114074,Craig Johnson,1410845518 +114930,114124,Phillip Noyce,1410938282 +114930,114142,Lewis Gilbert,1410938556 +114930,114146,Harry Lachman,1410938662 +114930,114170,Eric Schwartz,1411208917 +114930,114174,Peter Chan,1411208969 +114930,114191,Gianfranco Rosi,1411209554 +114930,114197,John Junkerman,1411209620 +114930,114232,Cristian Nemescu,1411397207 +114930,114234,Sergiu Nicolaescu,1411397362 +114930,114238,Kilian Riedhof,1411397526 +114930,114263,Des McAnuff,1411398802 +114930,114267,Costa-Gavras,1411399129 +114930,114267,Criterion,1453094738 +114930,114269,Les Blank,1411399245 +114930,114269,Skip Gerson,1411399245 +114930,114271,Les Blank,1453195782 +114930,114273,Yuval Adler,1411399343 +114930,114342,Ruben Östlund,1411461406 +114930,114382,Bernard McEveety,1411550317 +114930,114382,Harry Falk,1411550317 +114930,114382,Paul Krasny,1411550317 +114930,114382,Virgil W. Vogel,1411550317 +114930,114392,Tommy Lee Jones,1411636790 +114930,114394,Stanley Kwan,1411636803 +114930,114417,Mario Monicelli,1411720750 +114930,114426,Mike Clattenburg,1411721251 +114930,114464,Tom Gries,1411779496 +114930,114494,Baran bo Odar,1411874244 +114930,114503,Abbas Kiarostami,1411874420 +114930,114552,Anthony Stacchi,1411976647 +114930,114552,Graham Annable,1411976648 +114930,114554,Isao Takahata,1411976714 +114930,114556,Stephen Chow,1411976738 +114930,114556,Vincent Kok,1411976738 +114930,114563,Nicholas D. Wrathall,1411976819 +114930,114565,Gabe Klinger,1411976834 +114930,114567,Bruno Irizarry,1411976845 +114930,114583,René Laloux,1412054824 +114930,114591,Arne Skouen,1412055043 +114930,114593,Erik Løchen,1412055071 +114930,114595,Rasmus Breistein,1412055099 +114930,114599,Aarón Fernández Lesur,1412055323 +114930,114620,Marco Martins,1412066213 +114930,114627,Mamoru Oshii,1412148939 +114930,114629,Alex Gibney,1412148998 +114930,114631,Chris Marker,1412149084 +114930,114635,Joshua Oppenheimer,1412149185 +114930,114652,Chris Marker,1412231959 +114930,114662,Clint Eastwood,1412328301 +114930,114678,Peter Chelsom,1412530123 +114930,114685,Ettore Scola,1412530390 +114930,114687,Ettore Scola,1412530488 +114930,114692,Jesse Moss,1412530604 +114930,114700,Miroslav Slaboshpitsky,1412530891 +114930,114721,Chuck Jones,1412531414 +114930,114721,Friz Freleng,1412531414 +114930,114721,Robert McKimson,1412531414 +114930,114723,Maya Deren,1412531509 +114930,114777,Chia-Liang Liu,1412585776 +114930,114793,Yasuhiro Yoshiura,1412709644 +114930,114805,Poull Brien,1412709828 +114930,114807,Eugene Forde,1412709838 +114930,114809,Harry Lachman,1412709846 +114930,114845,Krsto Papic,1412839217 +114930,114854,Matej Minac,1412839634 +114930,114859,H. Bruce Humberstone,1412839720 +114930,114861,H. Bruce Humberstone,1412839724 +114930,114893,Douglas Hickox,1413019640 +114930,114895,David Greene,1413019679 +114930,114895,James Hill,1413019679 +114930,114906,Brent Shields,1413020199 +114930,114933,Anthony Chen,1413099867 +114930,114935,Michael Spierig,1413099983 +114930,114935,Peter Spierig,1413099983 +114930,114945,Mathias Malzieu,1413188126 +114930,114945,Stéphane Berla,1413188126 +114930,114947,Mikhail Kalatozov,1413188260 +114930,114958,Hanna Hemilä,1413188294 +114930,114958,Xavier Picard,1413188294 +114930,114963,Abai Karpykov,1413188509 +114930,115008,Jérémy Clapin,1413188858 +114930,115011,Chris Renaud,1413188889 +114930,115011,Mike Thurmeier,1413188889 +114930,115027,Jack Hively,1413189051 +114930,115038,Yvonne Mackay,1413292667 +114930,115060,Tokuzô Tanaka,1413292886 +114930,115068,Satsuo Yamamoto,1413293176 +114930,115078,Richard Thorpe,1413294423 +114930,115080,Chia Yung Liu,1413294431 +114930,115109,Javier Recio Gracia,1413364752 +114930,115111,Peter Cornwell,1413364820 +114930,115119,Run Wrake,1413364856 +114930,115122,Jemaine Clement,1413364953 +114930,115122,Taika Waititi,1413364953 +114930,115130,James Napier Robertson,1413397664 +114930,115135,George Ovashvili,1413397775 +114930,115143,David Heilbroner,1413443958 +114930,115143,Kate Davis,1413443958 +114930,115145,Brett Gaylor,1413444009 +114930,115149,Chad Stahelski,1437114688 +114930,115149,David Leitch,1437114688 +114930,115174,Ira Sachs,1413625942 +114930,115176,Alain Resnais,1413625833 +114930,115178,François Truffaut,1413625780 +114930,115180,François Truffaut,1413625691 +114930,115203,Brett Harvey,1413759219 +114930,115207,Koji Yamamura,1413759319 +114930,115210,David Ayer,1413759473 +114930,115231,Theodore Melfi,1413790993 +114930,115233,Hubertus Siegert,1413791005 +114930,115247,H. Bruce Humberstone,1413791378 +114930,115249,Lynn Shores,1413791394 +114930,115251,Norman Foster,1413791463 +114930,115254,Hamilton MacFadden,1413791479 +114930,115256,Herbert I. Leeds,1413791486 +114930,115258,H. Bruce Humberstone,1413791381 +114930,115277,Nadezhda Kosheverova,1413875539 +114930,115333,Norman Foster,1413915703 +114930,115335,Hamilton MacFadden,1413915713 +114930,115335,Lewis Seiler,1413915713 +114930,115337,Norman Foster,1413915699 +114930,115339,Harry Lachman,1413915732 +114930,115341,Phil Rosen,1413915741 +114930,115343,Eugene Forde,1413915756 +114930,115355,Sut Jhally,1414054689 +114930,115386,John G. Blystone,1414055615 +114930,115388,Eugene Forde,1414055625 +114930,115388,George Hadden,1414055625 +114930,115419,Aleksandr Sokurov,1414218639 +114930,115437,Eskil Vogt,1414218050 +114930,115439,Ahmed Imamovic,1414218090 +114930,115465,Christian Zübert,1414351770 +114930,115475,Jason Buxton,1414352006 +114930,115531,Claude Chabrol,1414407976 +114930,115538,Alex Holmes,1414408106 +114930,115540,Christian Larson,1414408117 +114930,115545,Jim Kaufman,1414408266 +114930,115556,Álex de la Iglesia,1414480521 +114930,115569,Dan Gilroy,1414481434 +114930,115571,Nick Read,1414481482 +114930,115604,Abbas Kiarostami,1414606618 +114930,115607,Jenõ Koltai,1414606641 +114930,115607,Tibor Hernádi,1414606641 +114930,115617,Chris Williams,1414606764 +114930,115617,Don Hall,1414606764 +114930,115629,Alberto Rodríguez,1414606825 +114930,115664,Jorge R. Gutierrez,1414739333 +114930,115667,Christian Ditter,1414739358 +114930,115680,Bradley King,1414739734 +114930,115690,Jon Jones,1414739969 +114930,115703,Guy Ritchie,1414918370 +114930,115705,Cordell Barker,1414918509 +114930,115708,Richard Condie,1414918556 +114930,115713,Alex Garland,1414918706 +114930,115721,J.-P. Valkeapää,1414919010 +114930,115727,Cheh Chang,1414919153 +114930,115756,Reza Mirkarimi,1415006872 +114930,115770,Shawn Christensen,1415006275 +114930,115772,Jerzy Rose,1415006198 +114930,115781,Erik Blomberg,1415006027 +114930,115793,Benjamin Fingerhut,1415005881 +114930,115801,Hamilton MacFadden,1415005832 +114930,115819,Alexandre Espigares,1415103187 +114930,115819,Laurent Witz,1415103187 +114930,115824,Mike Leigh,1415104168 +114930,115828,Mark Raso,1415104419 +114930,115834,Eugene Forde,1415104577 +114930,115836,Gordon Wiles,1415104590 +114930,115864,Charles Crichton,1415554199 +114930,115867,João César Monteiro,1415554251 +114930,115869,João César Monteiro,1415554264 +114930,115875,Gary Rydstrom,1415554459 +114930,115877,David Silverman,1415554510 +114930,115879,Angus MacLane,1415554525 +114930,115881,Shane Acker,1415554583 +114930,115895,Tim Fywell,1415554739 +114930,115925,Rasmus A. Sivertsen,1415555422 +114930,115939,Mauri Kunnas,1415555487 +114930,115963,Aleksey Balabanov,1415555796 +114930,115965,Aleksey Balabanov,1415555812 +114930,115973,Vishal Bhardwaj,1415555904 +114930,115975,Jessica Woodworth,1415555946 +114930,115975,Peter Brosens,1415555946 +114930,115977,Catherine Tatge,1415556011 +114930,115977,Laurence Rees,1415556011 +114930,115991,David Zellner,1415556361 +114930,116002,Alison Ellwood,1415556464 +114930,116004,Ulrich Seidl,1415556489 +114930,116012,John Frankenheimer,1415556563 +114930,116084,Anne-Marie Miéville,1415557183 +114930,116084,Groupe Dziga Vertov,1415557183 +114930,116084,Jean-Luc Godard,1415557183 +114930,116084,Jean-Pierre Gorin,1415557183 +114930,116104,João César Monteiro,1415554325 +114930,116106,David Munro,1415557529 +114930,116108,Alan Lowery,1415557575 +114930,116118,Lesley Selander,1415557691 +114930,116136,Lisa Cholodenko,1415557708 +114930,116138,Andrey Zvyagintsev,1415557744 +114930,116155,Uberto Pasolini,1415557790 +114930,116159,Chris Marker,1415557846 +114930,116161,Bennett Miller,1415557872 +114930,116165,Shirô Toyoda,1415557925 +114930,116169,Chao-Bin Su,1415558055 +114930,116179,Sadao Yamanaka,1415558270 +114930,116183,Archie Mayo,1415558312 +114930,116195,Tay Garnett,1415558435 +114930,116209,Howard Hawks,1415558548 +114930,116217,Peggy Holmes,1415644273 +114930,116217,Roberts Gannaway,1415644273 +114930,116227,Pavel Lungin,1415644449 +114930,116253,Greg MacGillivray,1415644626 +114930,116261,Coky Giedroyc,1415644670 +114930,116267,Keith Truesdell,1415644694 +114930,116283,Jorge Sanjinés,1415644727 +114930,116289,Aki Kaurismäki,1415644791 +114930,116321,Richard Thorpe,1415644981 +114930,116323,Robert Siodmak,1415645009 +114930,116341,John Moffitt,1415645038 +114930,116343,Beth McCarthy-Miller,1415645061 +114930,116351,Terry O. Morse,1415645105 +114930,116387,Kôhei Oguri,1415645120 +114930,116403,Darko Mitrevski,1415645326 +114930,116409,Krisztina Deák,1415645497 +114930,116411,Zaza Urushadze,1415645525 +114930,116417,Tokuzô Tanaka,1415645594 +114930,116423,Amy Schatz,1415645634 +114930,116439,Edward F. Cline,1415645864 +114930,116441,Marcos Carnevale,1415645902 +114930,116447,Jack Cardiff,1415645915 +114930,116449,Derek Yee Tung-Sing,1415594534 +114930,116449,Tung-Shing Yee,1415646015 +114930,116457,Frank Borzage,1415646048 +114930,116471,Clarence Brown,1415646107 +114930,116473,Sam Taylor,1415646166 +114930,116483,Marco Berger,1415646223 +114930,116489,Michael Mayer,1415680308 +114930,116491,Gary Alazraki,1415680364 +114930,116497,Raúl Fuentes,1415680369 +114930,116507,Dimitar Mitovski,1416192226 +114930,116517,Clarence Brown,1416192257 +114930,116519,Jack Clayton,1416192275 +114930,116521,Menahem Golan,1416192292 +114930,116525,Grigori Aleksandrov,1416192408 +114930,116557,Edward F. Cline,1416192713 +114930,116584,Phil Karlson,1416192730 +114930,116647,Luis Trenker,1416192741 +114930,116660,Stephan Lacant,1416192751 +114930,116672,Troy Miller,1416192826 +114930,116698,Harry Lachman,1416193148 +114930,116702,Shintarô Katsu,1416193192 +114930,116704,Prakash Mehra,1415681810 +114930,116710,Michael Curtiz,1416193275 +114930,116718,Grigori Aleksandrov,1416193342 +114930,116722,Arne Feldhusen,1416196194 +114930,116724,Giddens Ko,1416196232 +114930,116732,Grigori Aleksandrov,1416196390 +114930,116740,Katy Chevigny,1416196427 +114930,116740,Kirsten Johnson,1416196427 +114930,116742,Jay Chou,1416198353 +114930,116746,Chris Tasara,1416197255 +114930,116797,Morten Tyldum,1416198570 +114930,116799,Paul Thomas Anderson,1416198817 +114930,116801,Giulio Ricciarelli,1416198853 +114930,116823,Francis Lawrence,1416199404 +114930,116833,Marcell Jankovics,1416199668 +114930,116835,Jannik Hastrup,1416199709 +114930,116837,Attila Dargay,1416199748 +114930,116839,Ronit Elkabetz,1416199820 +114930,116845,Josh Lowell,1416380005 +114930,116845,Nick Rosen,1416380005 +114930,116845,Peter Mortimer,1416380005 +114930,116855,Daniel Ribeiro,1416380081 +114930,116859,Jeff Bleckner,1416380120 +114930,116861,Ruben Alves,1416380144 +114930,116863,Augusto Genina,1416380157 +114930,116879,Charles Brabin,1416380371 +114930,116881,Michael Curtiz,1416380422 +114930,116885,John G. Adolfi,1416380449 +114930,116897,Damián Szifrón,1416380904 +114930,116899,Keiichi Hara,1416380914 +114930,116901,Tomek Baginski,1416380931 +114930,116903,Timothy Reckart,1416380955 +114930,116905,Yasuhiro Yoshiura,1416380965 +114930,116907,Stephanie Soechtig,1416380974 +114930,116911,Sung-gang Lee,1416381007 +114930,116935,Ray William Johnson,1416381219 +114930,116951,Christopher Storer,1416381375 +114930,116957,Anna Odell,1416381408 +114930,116959,Naomi Kawase,1416381477 +114930,116961,Naomi Kawase,1416381480 +114930,116969,Damian Nenow,1416381753 +114930,116975,David Alexanian,1416382111 +114930,116975,Russ Malkin,1416382111 +114930,116989,Nick Broomfield,1430117774 +114930,117003,Rebecca Cammisa,1416383326 +114930,117103,Boris Sagal,1416383555 +114930,117109,Casper Kelly,1416383586 +114930,117111,James Parrott,1416383637 +114930,117111,Oliver Hardy,1416383643 +114930,117111,Stan Laurel,1416383643 +114930,117113,Harry Lachman,1416383693 +114930,117119,Jon S. Baird,1416383986 +114930,117123,Justin Simien,1416384165 +114930,117125,Stian Kristiansen,1416384304 +114930,117127,Javier Fesser,1416384327 +114930,117138,Michael John Warren,1416384539 +114930,117152,Kambuzia Partovi,1416387512 +114930,117164,Maxine Trump,1416388063 +114930,117166,Geetu Mohandas,1416388108 +114930,117168,Gary King,1416388157 +114930,117170,Jesse Quinones,1416388204 +114930,117172,Andrew Putschoegl,1416388388 +114930,117176,James Marsh,1416564431 +114930,117178,Sean Mullin,1416564463 +114930,117188,Henry Hathaway,1416564552 +114930,117198,Juan Bustillo Oro,1416564651 +114930,117310,Mohit Suri,1416564719 +114930,117314,Oliver Hockenhull,1416564792 +114930,117324,Pieter Kuijpers,1416564834 +114930,117352,Gábor Herendi,1417227456 +114930,117364,Orlando von Einsiedel,1417227854 +114930,117368,Gary Trousdale,1417227923 +114930,117376,Shunji Iwai,1417228203 +114930,117415,Thomas Balmès,1417228250 +114930,117430,Carlos Saldanha,1417228492 +114930,117432,Zachary Wigon,1417228511 +114930,117438,Hiromasa Yonebayashi,1417228657 +114930,117444,Tomm Moore,1417228792 +114930,117456,Gina Prince-Bythewood,1417228984 +114930,117466,Ron Howard,1417229272 +114930,117484,Roscoe 'Fatty' Arbuckle,1417230036 +114930,117498,Nagraj Manjule,1417230327 +114930,117506,Yash Chopra,1417230484 +114930,117511,Stephen Merchant,1417230587 +114930,117513,Sergei Yutkevich,1417230627 +114930,117515,Clare Beavan,1417232549 +114930,117515,Nic Stacey,1417232549 +114930,117517,Alex Ross Perry,1417232558 +114930,117525,Jacob Hatley,1417232619 +114930,117529,Colin Trevorrow,1417232645 +114930,117533,Laura Poitras,1417232680 +114930,117545,Alexandre Astier,1417232733 +114930,117576,Wanuri Kahiu,1417232884 +114930,117586,Kwang-shik Kim,1417232938 +114930,117590,Sean Anders,1417232959 +114930,117592,Jean-Pierre Gorin,1417508807 +114930,117594,Alex Craig Mann,1417509095 +114930,117596,Anthony Mann,1417509186 +114930,117604,Trent Harris,1417509443 +114930,117606,William Nigh,1417509477 +114930,117618,Alan Crosland,1417509975 +114930,117634,Henry Hathaway,1417516126 +114930,117672,Aleksandr Mitta,1417517295 +114930,117682,Will Geiger,1417517563 +114930,117686,Allan Arkush,1417517849 +114930,117690,Irving Reis,1417517916 +114930,117696,Chia-Liang Liu,1417649006 +114930,117698,Trent Harris,1417649072 +114930,117702,Mervyn LeRoy,1417649118 +114930,117704,Philip Leacock,1417649246 +114930,117706,John Hay,1417649515 +114930,117736,Alfred E. Green,1417650939 +114930,117738,Stuart Walker,1417651028 +114930,117838,Pawan Kumar,1417651872 +114930,117843,Eleonore Pourriat,1417651957 +114930,117849,Coline Serreau,1417652047 +114930,117851,Eric Darnell,1417652192 +114930,117851,Simon J. Smith,1417652192 +114930,117857,Tony Shaff,1417652282 +114930,117867,Yann Demange,1417652687 +114930,117869,Deborah Perkin,1417652731 +114930,117877,Antoine Delesvaux,1417652912 +114930,117877,Joann Sfar,1417652912 +114930,117879,Ron Mann,1417652947 +114930,117881,Richard Glatzer,1417653014 +114930,117881,Wash Westmoreland,1417653015 +114930,117887,Paul King,1417653392 +114930,117905,Mauritz Stiller,1417943765 +114930,117907,Dom Rotheroe,1417943794 +114930,117911,Tyron Montgomery,1417943860 +114930,117924,Vincent Bal,1417944441 +114930,117928,Paul Katis,1417944576 +114930,117930,Erez Tadmor,1417944661 +114930,117930,Sharon Maymon,1417944661 +114930,117956,Brian Desmond Hurst,1417945049 +114930,117962,Arthur Crabtree,1417982621 +114930,117962,Harold French,1417982622 +114930,117962,Ken Annakin,1417982622 +114930,117962,Ralph Smart,1417982622 +114930,117964,Charles Frend,1417982715 +114930,117977,Charles Frend,1417983082 +114930,117979,Marc Allégret,1417983336 +114930,117981,Basil Dearden,1417983430 +114930,118017,Albert Lewin,1417985740 +114930,118017,René Cardona,1417985740 +114930,118023,Anthony Asquith,1418112741 +114930,118025,Ralph Thomas,1418112724 +114930,118085,Elem Klimov,1418112214 +114930,118087,Elem Klimov,1418112206 +114930,118089,Elem Klimov,1418112197 +114930,118091,Elem Klimov,1418112155 +114930,118095,Doug Pray,1418112125 +114930,118101,Michelle Caputo,1418112096 +114930,118101,Shannon Hartman,1418112097 +114930,118105,Jason Eisener,1418112058 +114930,118105,John Paul Tremblay,1418112059 +114930,118105,Mike Smith,1418112059 +114930,118105,Robb Wells,1418112058 +114930,118115,John Kent Harrison,1418110029 +114930,118133,Manuel von Stürler,1418109781 +114930,118166,Karen Shakhnazarov,1418108909 +114930,118183,Philip Leacock,1418108182 +114930,118189,Enzo Barboni,1418107733 +114930,118193,Philip Leacock,1418107560 +114930,118195,Yôjirô Takita,1418107510 +114930,118198,Nadav Schirman,1418107454 +114930,118202,Keegan Kuhn,1418020062 +114930,118202,Kip Anderson,1418020062 +114930,118206,Leon Gast,1418019984 +114930,118206,Ryan Moore,1418019984 +114930,118230,Alexis Kanner,1418019688 +114930,118230,Harvey Hart,1418019688 +114930,118236,Sung-hyun Yoon,1418019631 +114930,118244,Erik Wernquist,1418019575 +114930,118246,Olivier Assayas,1418019485 +114930,118302,Mikhail Kozakov,1418018057 +114930,118340,Deborah Stratman,1418094150 +114930,118446,Khwaja Ahmad Abbas,1418092093 +114930,118446,Vasili Pronin,1418092093 +114930,118460,Ephraim Kishon,1419329853 +114930,118462,Patrick Meaney,1419329922 +114930,118464,Christina Clausen,1419329979 +114930,118466,Mami Sunada,1419330034 +114930,118468,Hayao Miyazaki,1419330115 +114930,118520,Nino Manfredi,1419332467 +114930,118546,Vittorio Salerno,1419407821 +114930,118696,Peter Jackson,1419438437 +114930,118700,Ava DuVernay,1419438816 +114930,118704,Gary Weis,1419439123 +114930,118704,Joe Boyd,1419439123 +114930,118704,John Head,1419439123 +114930,118756,Duccio Tessari,1419443914 +114930,118760,Philippe Falardeau,1419443956 +114930,118766,Tommy Avallone,1419443982 +114930,118768,Joe Medeiros,1419443991 +114930,118784,Andreas Johnsen,1419444116 +114930,118788,Jasmine Dellal,1419444139 +114930,118790,Owen Harris,1419444147 +114930,118806,Tim Fywell,1419444246 +114930,118832,Franny Armstrong,1419525082 +114930,118832,Ken Loach,1419525082 +114930,118842,Dean Parisot,1419525576 +114930,118846,Albert Maysles,1419525799 +114930,118846,David Maysles,1419525799 +114930,118854,Ken Burns,1419526281 +114930,118860,Henry Winkler,1419526716 +114930,118862,Nae Caranfil,1419526801 +114930,118866,Julian Farino,1419527005 +114930,118868,Joseph L. Mankiewicz,1419527105 +114930,118880,Ana Lily Amirpour,1419529125 +114930,118882,Ricardo Trogi,1419529160 +114930,118884,Ricardo Trogi,1419529271 +114930,118888,Stan Lathan,1419529320 +114930,118890,Chris Bould,1419529365 +114930,118892,Joel Gallen,1419529408 +114930,118894,Spike Brandt,1419529552 +114930,118894,Tony Cervone,1419529552 +114930,118896,Xavier Dolan,1419529644 +114930,118898,J.C. Chandor,1419529833 +114930,118900,Jean-Marc Vallée,1419530000 +114930,118908,David Wickes,1419530556 +114930,118920,Cary Bell,1419531080 +114930,118924,Chris Rock,1419531445 +114930,118930,Jay Karas,1419531637 +114930,118944,Claude Jutra,1419533559 +114930,118944,Norman McLaren,1419533559 +114930,118948,Norman McLaren,1419533592 +114930,118950,Norman McLaren,1419533604 +114930,118952,Norman McLaren,1419533614 +114930,118960,Norman McLaren,1419533653 +114930,118962,Norman McLaren,1419533662 +114930,118970,Emilis Velyvis,1419332253 +114930,118983,Paul Seydor,1419332154 +114930,118985,Tim Burton,1419332085 +114930,119065,Jim Stenstrum,1418842695 +114930,119080,Manish Acharya,1419329203 +114930,119129,José Val del Omar,1419329111 +114930,119131,José Val del Omar,1419329144 +114930,119139,Mairzee Almas,1419329024 +114930,119139,Nick Copus,1419329024 +114930,119139,Robert Lieberman,1419329024 +114930,119139,Stephen Williams,1419329024 +114930,119139,Vincenzo Natali,1419329024 +114930,119141,Evan Goldberg,1419328984 +114930,119141,Seth Rogen,1419328984 +114930,119145,Matthew Vaughn,1419328953 +114930,119153,Jay Karas,1419328831 +114930,119155,Shawn Levy,1419328806 +114930,119161,Michael Boydstun,1419328745 +114930,119163,José Val del Omar,1419328730 +114930,119171,Anthony Anderson,1419328660 +114930,119171,Gary Binkow,1419328660 +114930,119196,Marcel Pagnol,1419328462 +114930,119210,David Hoffman,1419536318 +114930,119210,Robert Denny,1419536318 +114930,119218,Phil Joanou,1419536364 +114930,119316,Elliott Nugent,1419536605 +114930,119332,Arthur Lipsett,1419536714 +114930,119432,Erik Poppe,1419536836 +114930,119440,Stephen Poliakoff,1419536937 +114930,119456,Chuck Jones,1419669605 +114930,119456,Friz Freleng,1419669605 +114930,119565,Tom Shankland,1419669493 +114930,119567,Jon Cassar,1419669315 +114930,119571,Regina Crosby,1419668936 +114930,119589,Harry Kümel,1419668240 +114930,119595,Albert Pyun,1419667692 +114930,119603,Albert Pyun,1419664272 +114930,119605,Anthony Pelissier,1419664047 +114930,119605,Harold French,1419664047 +114930,119605,Pat Jackson,1419664047 +114930,119621,Chris Metzler,1419663434 +114930,119621,Lev Anderson,1419663434 +114930,119625,Robert Florey,1419663145 +114930,119661,Andrey Konchalovskiy,1419967525 +114930,119670,Frederick Wiseman,1419834181 +114930,119714,David Storey,1419833712 +114930,119754,David Blair,1419833689 +114930,119758,Yves Allégret,1419833609 +114930,119760,Eric Rochant,1419833581 +114930,119762,Rory Kennedy,1419833571 +114930,119766,Sam Taylor,1419833544 +114930,119901,Tom Clegg,1419825612 +114930,119904,Tom Clegg,1419825540 +114930,119907,Tom Clegg,1419825476 +114930,119909,Tom Clegg,1419825350 +114930,119929,Arna Selznick,1419825265 +114930,119946,Grigori Kozintsev,1419825131 +114930,119946,Leonid Trauberg,1419825131 +114930,119960,Mahesh Manjrekar,1419803882 +114930,120096,Victor Saville,1419969209 +114930,120112,Dome Karukoski,1419970322 +114930,120126,Jay Cheel,1419970808 +114930,120130,Takahiro Ômori,1419970926 +114930,120134,Everything is Terrible,1419971193 +114930,120136,Sergio Corbucci,1420174151 +114930,120138,Rajkumar Hirani,1420174247 +114930,120200,Timothy A. Chey,1420174559 +114930,120208,Irving Cummings,1420175002 +114930,120216,Siegfried,1420175274 +114930,120234,George King,1420176195 +114930,120272,Allan Arkush,1420177857 +114930,120280,Andrea Tonacci,1420178147 +114930,120284,Signe Baumane,1420178369 +114930,120286,Adam Miklos,1420178413 +114930,120290,Yuri Kanchiku,1420178493 +114930,120292,Pascale Ferran,1420178818 +114930,120294,Eliza Hittman,1420178833 +114930,120301,Dong-hyuk Hwang,1420178838 +114930,120311,Jeethu Joseph,1420274076 +114930,120313,Suzuki Matsuo,1420274084 +114930,120380,Yuri Mamin,1420274477 +114930,120388,Daniel Roby,1420274526 +114930,120414,Michael Curtiz,1420275061 +114930,120466,Neill Blomkamp,1420369075 +114930,120468,Mark A. Walsh,1420368796 +114930,120474,Steve Purcell,1420368490 +114930,120478,Juliano Ribeiro Salgado,1420368326 +114930,120478,Wim Wenders,1420368326 +114930,120482,Jennifer Burns,1420368189 +114930,120486,Yash Chopra,1420368080 +114930,120492,Ken Annakin,1420367862 +114930,120516,Ken Annakin,1420367080 +114930,120518,Ken Annakin,1420367038 +114930,120534,Criterion,1453094976 +114930,120534,Jonathan Demme,1453094976 +114930,120536,Yoshihiro Nakamura,1420366193 +114930,120588,Raoul Walsh,1420361708 +114930,120610,Jay Chapman,1420373232 +114930,120614,Joe Angio,1420373225 +114930,120618,Fenton Bailey,1420373138 +114930,120618,Randy Barbato,1420373138 +114930,120625,Yuriy Bykov,1420373052 +114930,120627,Peter Sanders,1420373045 +114930,120629,Sarah McCarthy,1420373037 +114930,120631,Danielle Gardner,1420373027 +114930,120751,Paola di Florio,1420510618 +114930,120759,Tom McLoughlin,1420510437 +114930,120761,Lev Kuleshov,1420510360 +114930,120765,Paul Hoen,1420510220 +114930,120769,Antti Heikki Pesonen,1420510084 +114930,120775,Jerzy Kawalerowicz,1420509816 +114930,120777,Tadeusz Konwicki,1420509450 +114930,120781,Adrià García,1420509299 +114930,120781,Víctor Maldonado,1420509299 +114930,120785,Robert J. Flaherty,1420509083 +114930,120787,Ernest B. Schoedsack,1420508983 +114930,120787,Merian C. Cooper,1420508983 +114930,120795,Martin Scorsese,1420508602 +114930,120799,Alan Taylor,1420508364 +114930,120801,Craig R. Baxley,1420508025 +114930,120805,Marty Callner,1420507614 +114930,120807,Jake Szymanski,1420507581 +114930,120807,Ryan Polito,1420507581 +114930,120811,Jason Woliner,1420507480 +114930,120813,Jason Woliner,1420507425 +114930,120815,Jason Woliner,1420507382 +114930,120821,Barry Alexander Brown,1420507241 +114930,120821,Glenn Silber,1420507241 +114930,120827,Brian Mills,1420506863 +114930,120829,Mikio Naruse,1420506705 +114930,120835,Adam Yauch,1420506325 +114930,120843,Kevin Connor,1421058303 +114930,120853,PES,1421058760 +114930,120863,Christopher Nolan,1421059332 +114930,120869,Louis Lumière,1421735088 +114930,120871,Laurent Bouzereau,1421736054 +114930,120875,Carlo Verdone,1421736200 +114930,120887,Carlo Verdone,1421736697 +114930,120932,Andrzej Munk,1421739587 +114930,120936,Alejandro González Iñárritu,1421739949 +114930,120938,Ang Lee,1421740061 +114930,120940,John Frankenheimer,1421740128 +114930,120942,Joe Carnahan,1421740216 +114930,120944,Tony Scott,1421740329 +114930,120946,John Woo,1421740416 +114930,121003,Ibrahim El-Batout,1421742287 +114930,121019,Georges Lautner,1421742385 +114930,121021,Denys de La Patellière,1421742393 +114930,121029,Dylan Southern,1421742440 +114930,121029,Will Lovelace,1421742440 +114930,121035,Uli Edel,1421742494 +114930,121047,Alex Segal,1421742660 +114930,121053,Marcel Pagnol,1421233759 +114930,121055,Marcel Pagnol,1421233378 +114930,121057,Marcel Pagnol,1421233487 +114930,121059,Marcel Pagnol,1421233442 +114930,121061,Marcel Pagnol,1421233719 +114930,121063,Robert Florey,1421041476 +114930,121101,Yves Allégret,1421335406 +114930,121111,Kenneth Johnson,1421744874 +114930,121113,John Blanchard,1421744883 +114930,121119,Richard T. Heffron,1421744933 +114930,121126,Elliot Silverstein,1421745017 +114930,121145,David Morris,1421745991 +114930,121145,Jacqui Morris,1421745991 +114930,121148,Luc Jacquet,1421746018 +114930,121159,Richard T. Heffron,1421829284 +114930,121169,Peter Strickland,1421829318 +114930,121171,Gabe Polsky,1421829435 +114930,121221,Gianfranco Parolini,1421831915 +114930,121231,David Robert Mitchell,1421834074 +114930,121233,Jonathan Miller,1421399952 +114930,121241,Terry Hughes,1421834351 +114930,121249,John Henderson,1422086372 +114930,121253,Alfonso Gomez-Rejon,1431935644 +114930,121271,Adam Grossman,1422086724 +114930,121279,Jack Gold,1422086816 +114930,121288,Marc Daniels,1422087559 +114930,121290,Ayako Yoshida,1422087570 +114930,121290,Michel Comte,1422087570 +114930,121296,John Frankenheimer,1421833129 +114930,121298,Rainer Matsutani,1421833084 +114930,121300,Dietrich Brüggemann,1421833020 +114930,121302,Makoto Shinkai,1421832980 +114930,121304,Andrew Bowler,1421832930 +114930,121308,Jean-Luc Godard,1421832855 +114930,121310,Masayuki Kojima,1421832776 +114930,121310,Ryôsuke Nakamura,1421832776 +114930,121320,Günter Gräwert,1421832568 +114930,121366,Lauren MacMullan,1422091058 +114930,121372,Shannon Hartman,1422091093 +114930,121374,Shannon Hartman,1422091102 +114930,121376,Joseph H. Lewis,1422091144 +114930,121390,Alfred L. Werker,1422091427 +114930,121407,Larry Peerce,1421140220 +114930,121415,Chester M. Franklin,1422091867 +114930,121415,Sidney Franklin,1422091867 +114930,121432,Elia Petridis,1422092613 +114930,121451,Ellen Perry,1422093492 +114930,121491,Hendrik Hölzemann,1422095006 +114930,121588,Carlye Rubin,1422261680 +114930,121588,Katie Green,1422261680 +114930,121594,William A. Wellman,1421412041 +114930,121604,Eddie Alcazar,1422261738 +114930,121612,Jim Swaffield,1422262211 +114930,121612,R. Kelly,1422262211 +114930,121614,Philip Dunne,1422262242 +114930,121618,Herbert Brenon,1422262264 +114930,121632,Marcel Pagnol,1421233679 +114930,121634,Kief Davidson,1422262644 +114930,121644,Don Chaffey,1422262948 +114930,121650,Kunio Watanabe,1422263183 +114930,121677,Chia-Liang Liu,1422263440 +114930,121693,John English,1422263994 +114930,121693,William Witney,1422263994 +114930,121703,Philip Leacock,1422264324 +114930,121715,Manny Rodriguez,1422264565 +114930,121727,Kazuo Mori,1422265006 +114930,121729,George McCowan,1422265110 +114930,121741,Yves Allégret,1421335448 +114930,121763,Bridget Terry,1422435184 +114930,121767,Yoshihiro Nakamura,1422435306 +114930,121777,James Whitaker,1422435344 +114930,121785,Steven Pearl,1422435370 +114930,121797,Edmund Goulding,1422435447 +114930,121815,Kim Longinotto,1422435634 +114930,121821,Ifa Isfansyah,1422435689 +114930,121825,John Leach,1422435698 +114930,121841,George Roy,1422435959 +114930,121845,Rokuro Mochizuki,1422435974 +114930,121849,Jonathan Miller,1421400348 +114930,121857,Mandy Stein,1422436012 +114930,121863,Alberto Lattuada,1422436037 +114930,121873,Sam Wood,1422436192 +114930,121875,Frank Capra,1422436200 +114930,121875,Irvin Willat,1422436200 +114930,121879,Gregg Barson,1422436374 +114930,121889,Ernest B. Schoedsack,1422436808 +114930,121889,Lothar Mendes,1422436809 +114930,121889,Merian C. Cooper,1422436809 +114930,121917,Paulo Rocha,1422438085 +114930,121929,Clarence Brown,1422439063 +114930,121931,William C. de Mille,1422439129 +114930,121965,Sidney J. Furie,1422440828 +114930,121973,Lee Sholem,1422441203 +114930,121993,W.S. Van Dyke,1422603934 +114930,121999,William Berke,1422603957 +114930,122011,Spencer Gordon Bennet,1422604021 +114930,122015,Greg Barker,1422604058 +114930,122045,Charles Barton,1422604208 +114930,122048,Kuo-fu Chen,1422604219 +114930,122048,Qunshu Gao,1422604219 +114930,122058,John Francis Dillon,1422604314 +114930,122062,Jack Hofsiss,1422604400 +114930,122104,Shannon Hartman,1422604977 +114930,122129,Ethan Spaulding,1422605444 +114930,122151,King Vidor,1422606284 +114930,122155,Frank Lloyd,1422606421 +114930,122157,Greg Barker,1422606474 +114930,122197,Edward Buzzell,1422607538 +114930,122199,William Beaudine,1422607595 +114930,122210,Ryan Polito,1422607875 +114930,122218,Lesley Selander,1422608172 +114930,122220,Hiroshi Teshigahara,1422608213 +114930,122240,Abe Levitow,1422835354 +114930,122250,John Cromwell,1422835427 +114930,122260,Jon Jones,1422835451 +114930,122266,James Hawes,1421336463 +114930,122272,Delmer Daves,1422835172 +114930,122280,James D.R. Hickox,1422835207 +114930,122282,Cyril Coke,1422835216 +114930,122288,William Shatner,1422835243 +114930,122294,Brian Trenchard-Smith,1422835262 +114930,122302,Anatole Litvak,1422835583 +114930,122308,John Moffitt,1422835620 +114930,122359,Jamie Uys,1422836593 +114930,122371,Robert Abel,1422837270 +114930,122371,Sidney Levin,1422837270 +114930,122373,George B. Seitz,1422837441 +114930,122393,Tom Thurman,1422841692 +114930,122397,Henry King,1422842895 +114930,122409,Josef von Báky,1422852092 +114930,122421,Richard Irving,1422856220 +114930,122423,Dan Curtis,1422856296 +114930,122550,Henri Verneuil,1450429813 +114930,122880,Fernando González Molina,1427812506 +114930,122882,George Miller,1451888954 +114930,122892,Joss Whedon,1453087946 +114930,122936,John Cassavetes,1421652502 +114930,123107,Tony Richardson,1421398794 +114930,123115,William A. Seiter,1442826535 +114930,123215,John Boulting,1421403951 +114930,123219,Harold S. Bucquet,1426478297 +114930,123252,José Ferrer,1426474367 +114930,123337,Abel Gance,1426474262 +114930,123467,Bryan Fogel,1426436776 +114930,123493,One9,1427820963 +114930,123949,Andrei Gruzsniczki,1437119188 +114930,124052,Jonathan Miller,1428889273 +114930,124973,William Keighley,1453092071 +114930,125541,Alfredo Soderguit,1443429502 +114930,125565,Andre Singer,1423391074 +114930,125569,Claudia Sainte-Luce,1423391108 +114930,125596,Criterion,1421653744 +114930,125599,Criterion,1421653956 +114930,125599,Les Blank,1437039280 +114930,125601,Criterion,1421654529 +114930,125603,Criterion,1421654700 +114930,125605,Criterion,1421654718 +114930,125607,Criterion,1421654734 +114930,125609,Criterion,1421654761 +114930,125623,Criterion,1421654996 +114930,125888,Julien Duvivier,1453097964 +114930,126235,Julien Duvivier,1453097902 +114930,126300,Criterion,1453097163 +114930,126300,Julien Duvivier,1453097163 +114930,126414,Michael Pitiot,1428891123 +114930,126414,Yann Arthus-Bertrand,1428891123 +114930,126933,Kurt Norton,1428892215 +114930,126933,Paul Mariano,1428892215 +114930,126935,Les Blank,1437040541 +114930,126939,Les Blank,1437117193 +114930,127011,Kinji Fukasaku,1423395113 +114930,127019,Benny Zenga,1423395014 +114930,127021,Josh Johnson,1423395009 +114930,127023,Stanislav Govorukhin,1423394971 +114930,127029,Gakuryû Ishii,1423394950 +114930,127033,Janis Nords,1423394935 +114930,127035,Aigars Grauba,1423394929 +114930,127038,Witold Leszczynski,1423394916 +114930,127040,André Hunebelle,1423394910 +114930,127046,Roy William Neill,1423394879 +114930,127050,Michael Glawogger,1423394819 +114930,127052,Leonid Gayday,1423394807 +114930,127054,Winsor McCay,1423394798 +114930,127056,Koreyoshi Kurahara,1423394792 +114930,127060,Kenneth Thomas,1423394717 +114930,127062,Auguste Lumière,1423394686 +114930,127062,Louis Lumière,1423394686 +114930,127072,Nick Noe,1423394581 +114930,127072,Peter Glantz,1423394581 +114930,127076,Aigars Grauba,1423394545 +114930,127084,Jan Komasa,1423394501 +114930,127086,Juris Podnieks,1423394491 +114930,127094,Juris Poskus,1423394448 +114930,127098,Louis C.K.,1423394436 +114930,127100,Jack Gold,1423394415 +114930,127108,John Crowley,1423391979 +114930,127110,Joe Swanberg,1423391965 +114930,127112,Jared Hess,1423391191 +114930,127112,Jemaine Clement,1423391220 +114930,127114,James Ponsoldt,1423390821 +114930,127116,Michael Almereyda,1423390620 +114930,127120,Charles Stone III,1423390417 +114930,127122,Rodrigo García,1423390332 +114930,127124,Brett Haley,1423390271 +114930,127126,Benson Lee,1423390166 +114930,127128,Anna Boden,1423390011 +114930,127128,Ryan Fleck,1423390010 +114930,127130,Noah Baumbach,1423389917 +114930,127132,Mora Stephens,1423389835 +114930,127134,Ken Kwapis,1423389662 +114930,127140,Leslye Headland,1423389288 +114930,127142,Brad Besser,1423219497 +114930,127144,Douglas Tirola,1423219488 +114930,127146,Brett Morgen,1423219470 +114930,127152,Alex Gibney,1423219385 +114930,127154,Jennifer Siebel Newsom,1423219366 +114930,127156,Amy Berg,1423219355 +114930,127162,Greg Whiteley,1423219290 +114930,127170,Mark Cousins,1423219261 +114930,127172,Mark Cousins,1423219254 +114930,127176,Mark Cousins,1423219240 +114930,127178,Ramin Bahrani,1423219199 +114930,127180,Mark Cousins,1423219191 +114930,127184,Mia Hansen-Løve,1423219156 +114930,127186,Céline Sciamma,1423219148 +114930,127188,Jennifer Phang,1423219132 +114930,127190,Ivars Seleckis,1423219125 +114930,127194,Andrew Mogel,1423219111 +114930,127194,Jarrad Paul,1423219110 +114930,127196,Marielle Heller,1423219102 +114930,127198,Rick Famuyiwa,1422963671 +114930,127202,Alfonso Gomez-Rejon,1422963657 +114930,127204,Patrick Brice,1422963627 +114930,127206,James C. Strouse,1422963616 +114930,127206,Jemaine Clement,1423391223 +114930,127208,Andrew Bujalski,1422963582 +114930,127210,Chloé Zhao,1422963574 +114930,127212,Kyle Patrick Alvarez,1422963552 +114930,127216,Kris Swanberg,1422963539 +114930,127222,Mikkel Munch-Fals,1422963493 +114930,127226,Dietrich Brüggemann,1422963473 +114930,127228,Delphine Lehericey,1422963466 +114930,127228,Eric Cardot,1422963466 +114930,127228,Yves Hinant,1422963466 +114930,127230,Filippo Macelloni,1422963451 +114930,127230,Lorenzo Garzella,1422963451 +114930,127234,Matteo Garrone,1422963424 +114930,127244,Hiner Saleem,1422963327 +114930,127256,Robert Enrico,1422963267 +114930,127260,Claude Sautet,1422963242 +114930,127262,Robert Vernay,1422963233 +114930,127266,Ulrich Seidl,1422963215 +114930,127268,David Bond,1422963202 +114930,127288,Dewi Humphreys,1422958814 +114930,127294,Marcos Jorge,1422958433 +114930,127298,Roy Andersson,1422958254 +114930,127300,Isao Takahata,1422958138 +114930,127311,Evan Johnson,1422957637 +114930,127311,Guy Maddin,1422957637 +114930,127331,Leo C. Popkin,1422956139 +114930,127331,Russell Rouse,1422956139 +114930,127390,Dominic Polcino,1422954805 +114930,127390,Peter Shin,1422954805 +114930,127441,Rory Kennedy,1422954655 +114930,127443,Pacho Velez,1422954619 +114930,127443,Stephanie Spray,1422954619 +114930,127445,James Franco,1422963115 +114930,127451,Borys Lankosz,1422954512 +114930,127455,Pedro Costa,1422963091 +114930,127498,Liv Ullmann,1422963068 +114930,127567,James Benning,1423219033 +114930,127569,James Benning,1423219023 +114930,127573,James Benning,1423219010 +114930,127575,James Benning,1423218968 +114930,127581,Abdellatif Kechiche,1423218922 +114930,127583,Ilinca Calugareanu,1423218913 +114930,127587,Miguel M. Delgado,1423218845 +114930,127606,Richard A. Colla,1423218765 +114930,127608,Richard A. Colla,1423218751 +114930,127610,Marcello Macchia,1423214912 +114930,127614,Duilio Coletti,1423214742 +114930,127640,David Greene,1423213443 +114930,127642,David Greene,1423213376 +114930,127644,David Greene,1423209997 +114930,127644,Gordon Davidson,1423209997 +114930,127652,Burhan Qurbani,1423209534 +114930,127667,Alberto Lattuada,1423208951 +114930,127669,Alberto Lattuada,1423208875 +114930,127681,Alberto Lattuada,1423208431 +114930,127724,Chris Eska,1423389126 +114930,127831,Anders Østergaard,1423388915 +114930,127843,Koreyoshi Kurahara,1423381341 +114930,127845,Kevin Tomlinson,1423381276 +114930,127851,James L. Conway,1423381048 +114930,127857,Alexandre Arcady,1423380820 +114930,127875,Hardi Volmer,1423391895 +114930,127875,Harun Farocki,1423391895 +114930,127879,Dan M. Kinem,1423391876 +114930,127879,Levi Peretic,1423391876 +114930,127881,Ian Connacher,1423391868 +114930,128277,Claude Autant-Lara,1423552655 +114930,128279,Claude Autant-Lara,1423552582 +114930,128283,Claude Autant-Lara,1423552455 +114930,128303,Alan Deutsch,1423732171 +114930,128316,Eric Rohmer,1423731580 +114930,128320,Alan G. Parker,1423731407 +114930,128320,Ben Timlett,1423731407 +114930,128320,Bill Jones,1423731407 +114930,128322,Reginald Harkema,1423731164 +114930,128322,Sam Dunn,1423731164 +114930,128322,Scot McFadyen,1423731164 +114930,128327,David Thacker,1423730984 +114930,128360,Quentin Tarantino,1423730740 +114930,128366,Bobcat Goldthwait,1423730219 +114930,128626,Diego Quemada-Diez,1453089646 +114930,128830,Ramin Bahrani,1424758895 +114930,128836,Liz Marshall,1424758863 +114930,128838,Guillermo del Toro,1424758855 +114930,128844,Jonathan Heap,1424758792 +114930,128846,Don Mischer,1424758786 +114930,128850,Oz Scott,1424758765 +114930,128852,Keith Truesdell,1424758703 +114930,128854,Keith Truesdell,1424758701 +114930,128862,Sheree Folkson,1424758629 +114930,128864,Harry Baweja,1424758618 +114930,128866,Sadyk Sher-Niyaz,1424758612 +114930,128868,Ertem Egilmez,1424758606 +114930,128870,Ivan Andonov,1424758589 +114930,128872,Sundar C,1424758583 +114930,128874,Stere Gulea,1424758576 +114930,128876,Ertem Egilmez,1424758546 +114930,128878,Sukumar,1424758539 +114930,128880,Abhishek Jain,1424758533 +114930,128886,Michel Deville,1424758475 +114930,128900,Heddy Honigmann,1424758367 +114930,128908,Thom Fitzgerald,1424758331 +114930,128912,Seth Barrish,1424758310 +114930,128914,Jay Chapman,1424758303 +114930,128918,Cisco Henson,1424758272 +114930,128924,Buster Keaton,1424758248 +114930,128924,Edward F. Cline,1424758248 +114930,128944,Dean Cundey,1424754640 +114930,128954,Spencer Susser,1424754164 +114930,128981,Johannes Stjärne Nilsson,1424751649 +114930,128981,Ola Simonsson,1424751649 +114930,128987,Albert Pereira-Lazaro,1424751457 +114930,128987,Emmanuel Klotz,1424751457 +114930,128991,Kyungmin Woo,1424751215 +114930,129009,Cory Krueckeberg,1424750589 +114930,129011,Peter Richardson,1424750516 +114930,129013,Anastasia Pappas,1424750464 +114930,129032,John Alexander,1424749542 +114930,129034,Lisa R. Cohen,1424749449 +114930,129036,Anthony Howarth,1424749429 +114930,129195,Christian Duguay,1451885655 +114930,129274,Alain Corneau,1425461910 +114930,129289,Mohamed Amin Benamraoui,1425461845 +114930,129291,Nour Eddine Lakhmari,1425461838 +114930,129313,Quentin Dupieux,1425461552 +114930,129337,Helmut Dietl,1425461411 +114930,129340,Lav Diaz,1425461344 +114930,129352,Cynthia Wade,1425461298 +114930,129358,Matt Vancil,1425461243 +114930,129362,Robert Kenner,1425461231 +114930,129378,Massimo Dallamano,1425456471 +114930,129399,Michael French,1425456033 +114930,129401,Joey Figueroa,1425455966 +114930,129401,Zak Knutson,1425455966 +114930,129413,Pietro Germi,1425455416 +114930,129419,Pietro Germi,1425455273 +114930,129425,Shûji Terayama,1425455058 +114930,129430,Ralph Richardson,1425454904 +114930,129437,Anurag Kashyap,1425454640 +114930,129443,Matt Muir,1425454381 +114930,129445,Pierre Falardeau,1425454311 +114930,129454,Malcolm McDonald,1425453970 +114930,129476,Tomu Uchida,1425453290 +114930,129659,Niki Caro,1442820277 +114930,129781,Jesse Zwick,1428887323 +114930,130016,John Brahm,1426491281 +114930,130034,Ryuichi Yagi,1426490654 +114930,130034,Takashi Yamazaki,1426490654 +114930,130034,Tony Oliver,1426490654 +114930,130040,Chih-Hung Kuei,1426490406 +114930,130247,Ian Roumain,1440900363 +114930,130275,Gabriel London,1428308342 +114930,130340,Christian Petzold,1453096645 +114930,130351,Denny Tedesco,1449398478 +114930,130482,Byron Haskin,1437120524 +114930,130554,William A. Graham,1427819274 +114930,131013,Etan Cohen,1449395050 +114930,131168,Christian Petzold,1453096623 +114930,131168,Criterion,1453096688 +114930,131178,Daniel Burman,1427810817 +114930,131451,Chris Sparling,1440382200 +114930,131504,Criterion,1453095510 +114930,131504,Takashi Murakami,1453095574 +114930,132010,Carlos Saura,1442823880 +114930,132424,George Tillman Jr.,1449397991 +114930,132458,Alastair Fothergill,1451889512 +114930,132458,Mark Linfield,1451889512 +114930,132484,James D. Cooper,1448233994 +114930,132735,Rustam Branaman,1448148146 +114930,132846,Norman Foster,1432630359 +114930,132965,Desiree Akhavan,1437039448 +114930,133357,Tiller Russell,1449398179 +114930,133581,Mariana Rondón,1432628507 +114930,133583,Dee Rees,1432625715 +114930,133591,Criterion,1453095057 +114930,133591,Jan Troell,1453095131 +114930,133699,Anurag Kashyap,1437039721 +114930,133945,Alex Winter,1433748074 +114930,134170,David Sandberg,1445849072 +114930,134697,Chris Hall,1435102807 +114930,134751,Brandon Oldenburg,1435102892 +114930,134751,William Joyce,1435102892 +114930,135023,Antonio Pietrangeli,1453096026 +114930,135023,Criterion,1453095947 +114930,135512,Václav Vorlícek,1451884798 +114930,135657,Carlos Saura,1442823964 +114930,135817,Lieh Lo,1448184887 +114930,136088,Guy Hamilton,1445852159 +114930,136501,Burt Gillett,1445843226 +114930,138204,Jake Szymanski,1437037963 +114930,138702,Patrick Osborne,1437121339 +114930,138808,Jon Schnepp,1445852341 +114930,139399,Tod Browning,1453093815 +114930,140269,Peter Levin,1440366308 +114930,141303,Hernán Jabes,1440738138 +114930,141400,Cheh Chang,1451888302 +114930,141414,Shirley Clarke,1444551141 +114930,141474,Carlos Saura,1442823634 +114930,141710,Collin Schiffli,1444546305 +114930,142258,Stevan Riley,1447048252 +114930,142386,Hsiao-Hsien Hou,1450662803 +114930,142993,Pablo Larraín,1451896745 +114930,143069,Hervé Martin-Delpierre,1449394490 +114930,143649,Lisandro Alonso,1448231348 +114930,145283,Sebastian Dehnhardt,1445999960 +114930,146030,Mikhail Shapiro,1451884638 +114930,146030,Nadezhda Kosheverova,1451884638 +114930,147441,Marc Silver,1448238939 +114930,147662,Cheh Chang,1453091759 +114930,151027,Criterion,1453195859 +114930,151027,Howard Brookner,1453195848 +114930,151030,Criterion,1453195748 +114930,151030,Les Blank,1453195748 +114930,151036,Criterion,1453195932 +114930,151036,Julien Duvivier,1453195937 +114930,151038,Julien Duvivier,1453197368 +114930,151040,Criterion,1453196195 +114930,151040,Julien Duvivier,1453196195 +114930,151046,Julien Duvivier,1453196673 +114930,151054,Julien Duvivier,1453197165 +114930,151058,Julien Duvivier,1453196890 +114930,151062,Julien Duvivier,1453196722 +114930,151064,Julien Duvivier,1453197106 +114930,151070,Julien Duvivier,1453197819 +114930,151072,Julien Duvivier,1453197882 +114930,151078,Julien Duvivier,1453197327 +114930,151084,Julien Duvivier,1453197706 +114930,151089,Julien Duvivier,1453198502 +114930,151091,Julien Duvivier,1453198243 +114930,151099,Julien Duvivier,1453197044 +114930,151105,Julien Duvivier,1453198401 +114930,151107,Criterion,1453196346 +114930,151107,Julien Duvivier,1453196346 +114930,151111,Julien Duvivier,1453196834 +114967,63082,music,1246052856 +114967,63082,nonlinear,1246052859 +114967,63082,violence,1246052888 +115059,8638,Best romantic movie in years,1160764007 +115064,204,steven seagal,1145741081 +115064,1385,steven seagal,1145741064 +115064,7090,great storytelling,1139110324 +115103,1266,BOUNTY HUNTERS,1242744336 +115103,1266,Gene Hackman,1242744327 +115103,1580,action,1242744061 +115103,1580,aliens,1242744069 +115103,1580,Tommy Lee Jones,1242744085 +115103,3441,Patrick Swayze,1242742411 +115103,8914,science,1204671613 +115103,37475,Morgan Freeman,1242742689 +115103,37741,Philip Seymour Hoffman,1242743748 +115103,53207,Al Pacino,1242742450 +115103,53207,forensic psychology,1242742463 +115103,53207,serial killer,1242742466 +115103,53207,student detectives,1242742475 +115103,55732,John Cusack,1242742307 +115103,64716,Will Smith,1242742248 +115103,64969,Jim carrey,1242742358 +115109,111,psychopath,1138237675 +115109,541,unicorn,1439686324 +115109,1161,unicycle,1439686509 +115109,1225,Passes the Bechdel test,1331118160 +115109,3994,crap ending,1445522165 +115109,6331,slow beginning,1430741940 +115109,6466,sexy,1425906496 +115109,8912,beautiful women,1138237650 +115109,30867,quirky,1439003410 +115109,37495,surreal,1416743557 +115109,47460,fast-paced,1426499683 +115109,51182,has a plot,1440072754 +115109,51182,male nudity,1440072801 +115109,60766,unicycle,1439686480 +115109,68848,unicycle,1439686427 +115109,81018,1950s,1451049080 +115109,81018,silent movie,1451049077 +115109,83962,short,1435471998 +115109,83962,silent,1435472005 +115109,85284,feel-good,1424231562 +115109,85284,light,1424231562 +115109,85284,romance,1424231562 +115109,89745,great script,1430317417 +115109,93840,unicorn,1439686302 +115109,97789,hentai,1427203942 +115109,102993,coming of age,1431699326 +115109,102993,parent-children relationship,1431699355 +115109,110097,old joke,1437656315 +115109,111778,great scenery,1440944721 +115109,115149,Revenge,1437058236 +115109,119145,can't decide whether it's action or comedy,1427557053 +115109,120138,social commentary,1430585688 +115109,122882,non-stop,1432609625 +115109,122882,visually appealing,1432609617 +115109,125922,awkward,1436451956 +115109,129307,folk tale,1425653966 +115109,129307,shadow puppets,1425653966 +115109,129307,slapstick,1425653966 +115109,130648,fun,1436881748 +115109,130648,sexy,1436881745 +115109,132414,comedy,1429149357 +115109,132414,no language,1429149381 +115109,139419,great pacing,1437472577 +115109,139419,short,1437472560 +115126,296,action,1429729155 +115126,296,crime,1429729155 +115126,296,violence,1429729155 +115126,318,inspirational,1432147872 +115126,318,misterious,1432147872 +115126,318,surprising ending,1432147872 +115126,356,emotional,1431280389 +115126,356,funny,1431280389 +115126,356,inspirational,1431280389 +115126,1265,time loop,1284214481 +115126,2721,gay,1284734325 +115131,72998,visual,1431045732 +115131,72998,visually stunning,1431045725 +115131,78218,cia,1431323893 +115131,78218,torture,1431323867 +115131,79132,visually appealing,1431045832 +115157,260,adventure,1439760671 +115157,260,sci-fi,1439760657 +115188,296,motherfucker,1431198780 +115188,296,samuel l. jackson,1431198780 +115188,296,uma/travoltadance,1431198780 +115190,588,avi,1137735830 +115190,588,Disney,1137735821 +115202,5388,dark,1446821975 +115202,26308,rutger hauer,1446822196 +115202,92259,french comedy,1446822375 +115202,127098,see this soon,1446821725 +115215,131739,DC,1430015854 +115256,2997,twist ending,1288636895 +115256,4878,twist ending,1288634946 +115258,2338,Freddie Prinze Jr.,1243464053 +115258,2338,Mekhi Phifer,1243464035 +115258,2338,white guy with Jamaican/Caribbean accent,1243464031 +115258,3146,Rob Schneider,1243520404 +115258,4519,classic,1243520835 +115258,6552,Audrey Tautou,1243464107 +115258,6593,Lindsay Lohan,1243463962 +115258,6893,Michael Caine,1243463891 +115258,6893,need to see,1243463900 +115258,6893,remade,1243463894 +115258,49286,better than expected,1243463807 +115258,49286,Cameron Diaz,1243463822 +115258,49286,Kate Winslet,1243463825 +115258,56587,Jack Nicholson,1243464195 +115258,56587,Morgan Freeman,1243464189 +115258,59387,beautiful,1243464422 +115258,59387,fantasy world,1243464428 +115258,59387,imagination,1243464430 +115258,59387,storytelling,1243464433 +115258,59387,stunning,1243464424 +115286,260,space action,1443530979 +115286,260,space travel,1443530988 +115312,1,children,1378323572 +115312,1,Pixar,1378323557 +115312,1,Tom Hanks,1378323576 +115312,161,Denzel Washington,1378324451 +115312,161,Hollywood,1378324446 +115312,231,Jim Carrey,1378326036 +115312,231,stupid,1378326038 +115312,312,al franken,1378326892 +115312,312,dumb but sophisticated,1378326870 +115312,312,satire,1378326858 +115312,312,true to life,1378326878 +115312,608,Coen Brothers,1378323913 +115312,608,dark comedy,1378323916 +115312,608,witty,1378323921 +115312,745,claymation,1378321163 +115312,750,black and white,1378320909 +115312,750,satire,1378320906 +115312,904,Alfred Hitchcock,1378321508 +115312,904,James Stewart,1378321511 +115312,904,noir thriller,1378321525 +115312,904,visually appealing,1378321516 +115312,912,atmospheric,1378321615 +115312,912,Humphrey Bogart,1378321604 +115312,912,Ingrid Bergman,1378321640 +115312,922,atmospheric,1378321455 +115312,922,black and white,1378321452 +115312,922,dark,1378321474 +115312,922,film noir,1378321458 +115312,922,mental illness,1378321468 +115312,933,Alfred Hitchcock,1378321379 +115312,933,atmospheric,1378321427 +115312,933,Cary Grant,1378321380 +115312,933,Grace Kelly,1378321383 +115312,969,classic,1378321269 +115312,969,Humphrey Bogart,1378321260 +115312,1185,disability,1378324804 +115312,1198,Harrison Ford,1378323340 +115312,1198,Hollywood,1378323352 +115312,1206,dystopia,1378320961 +115312,1206,violence,1378320953 +115312,1210,Star Wars,1378324511 +115312,1246,Robin Williams,1378322955 +115312,1247,1960s,1378323656 +115312,1247,meditative,1378323671 +115312,1247,rebellion,1378323686 +115312,1247,satirical,1378323683 +115312,1247,suburbia,1378323689 +115312,1273,deadpan,1378325219 +115312,1273,Jim Jarmusch,1378325215 +115312,1288,hilarious,1378325507 +115312,1288,satire,1378325505 +115312,1291,Hollywood,1378322692 +115312,1291,mainstream,1378322674 +115312,1305,bittersweet,1378321831 +115312,1305,meditative,1378321822 +115312,1305,photography,1378321833 +115312,1305,Wim Wenders,1378321855 +115312,1611,gay,1378322754 +115312,1611,Gus Van Sant,1378322742 +115312,1611,Keanu Reeves,1378322748 +115312,1611,River Phoenix,1378322750 +115312,1704,cheesy,1378323088 +115312,1732,Coen Brothers,1378320791 +115312,1732,Cult classic,1378320784 +115312,1732,dark comedy,1378320781 +115312,1732,funny,1378320787 +115312,2324,Roberto Benigni,1378323016 +115312,2361,black comedy,1378324893 +115312,2361,campy,1378324949 +115312,2361,cult film,1378324901 +115312,2361,raunchy,1378324908 +115312,2361,satirical,1378324923 +115312,2361,sexual,1378324935 +115312,2361,trashy,1378324917 +115312,2502,office,1378323401 +115312,2502,satire,1378323387 +115312,2502,true to life,1378323383 +115312,2571,atmospheric,1378321236 +115312,2571,philosophy,1378321219 +115312,2571,stylized,1378321229 +115312,2571,thought-provoking,1378321222 +115312,2624,Japan,1378322002 +115312,2624,meditative,1378321986 +115312,2624,wistful,1378321995 +115312,2915,Tom Cruise,1378326119 +115312,3089,Classic,1378321548 +115312,3089,Italian,1378321554 +115312,3730,1970s,1378323515 +115312,3730,character study,1378323504 +115312,3730,psychological,1378323486 +115312,3730,reflective,1378323495 +115312,3730,spying,1378323500 +115312,3819,complex,1378323825 +115312,3819,japanese,1378323849 +115312,3819,satirical,1378323869 +115312,3819,urbane,1378323878 +115312,4306,pixar,1378322502 +115312,4571,satirical,1378322281 +115312,4863,John Waters,1378324986 +115312,4863,raunchy,1378324991 +115312,4863,satirical,1378325001 +115312,4993,atmospheric,1378321317 +115312,4993,beautifully filmed,1378321319 +115312,4993,great soundtrack,1378321329 +115312,4993,stylized,1378321335 +115312,5945,dark comedy,1378320649 +115312,5945,ironic,1378320716 +115312,5945,meaning of life,1378320667 +115312,6643,Japan,1378323287 +115312,6643,tokyo,1378323292 +115312,6662,1960s,1378326456 +115312,6662,Europe,1378326465 +115312,6662,Peter Sellers,1378326449 +115312,6711,complex characters,1378324114 +115312,6711,Japan,1378324108 +115312,6711,Melancholic,1378324122 +115312,6711,reflective,1378324118 +115312,6711,tokyo,1378324124 +115312,6863,funny,1378326081 +115312,6863,Jack Black,1378326077 +115312,7147,stupid,1378323183 +115312,7147,Tim Burton,1378323161 +115312,7151,17th century,1378324717 +115312,7151,History,1378324728 +115312,7151,visually appealing,1378324709 +115312,7156,1960s,1378321736 +115312,7156,Errol Morris,1378321684 +115312,7156,history,1378321713 +115312,7156,reflective,1378321692 +115312,7156,thought provoking,1378321701 +115312,7156,Vietnam War,1378321756 +115312,8128,based on a true story,1378324053 +115312,8128,French,1378324089 +115312,8128,historical,1378324057 +115312,8376,ironic,1378325777 +115312,8376,misfits,1378325795 +115312,8376,quotable,1378325787 +115312,8376,seen more than once,1378325799 +115312,26758,17th century,1378325102 +115312,26758,french,1378325077 +115312,26758,meditative,1378325073 +115312,26758,music,1378325135 +115312,30867,cult classic,1378322054 +115312,30867,fun,1378322047 +115312,30867,japanese,1378322040 +115312,30867,satirical,1378322093 +115312,30867,Tetsuya Nakashima,1378322042 +115312,55814,French,1378324208 +115312,55814,thought-provoking,1378324221 +115312,70659,Japan,1378321915 +115312,72378,predictable,1378326358 +115312,72378,stupid,1378326355 +115312,80463,cinematography,1378326321 +115312,80463,internet,1378326305 +115323,260,fantasy,1434410656 +115323,260,Science Fiction,1434410648 +115331,541,cyberpunk,1453941427 +115331,541,dystopia,1453941430 +115331,541,film noir,1453941442 +115331,541,great soundtrack,1453941447 +115331,541,neo-noir,1453941439 +115331,541,Philip K. Dick,1453941451 +115331,541,Vangelis,1453941449 +115331,1748,dystopia,1453941470 +115331,1748,film noir,1453941475 +115331,1748,Post apocalyptic,1453941468 +115331,1748,steampunk,1453941481 +115331,4011,dark comedy,1453941415 +115331,4011,dark humor,1453941414 +115331,6502,British,1453941570 +115331,6502,epidemic,1453941577 +115331,6502,london,1453941568 +115331,6502,post-apocalyptic,1453941559 +115331,6502,zombies,1453941562 +115331,62849,Crime,1453941386 +115331,62849,England,1453941395 +115331,62849,good soundtrack,1453941375 +115331,62849,great soundtrack,1453941358 +115331,62849,Guy Ritchie,1453941327 +115331,62849,multiple storylines,1453941346 +115331,62849,Tom Hardy,1453941381 +115331,122882,Colourful apocalypse,1453941538 +115386,3527,alien,1168071995 +115386,6864,george harrison,1152553139 +115398,253,adapted from:book,1434592154 +115398,253,based on a book,1434592148 +115398,253,cult classic,1434592157 +115398,356,good acting,1434592278 +115398,356,great cast,1434592278 +115398,356,heartwarming,1434592278 +115398,1617,anti-hero,1434592418 +115398,1617,complex,1434592428 +115398,1617,conspiracy,1434592412 +115398,1617,great acting,1434592421 +115398,2657,classic,1434592321 +115398,2657,cult classic,1434592313 +115398,2657,cult film,1434592316 +115421,1201,spiritual quest,1174385724 +115421,1904,bittersweet,1174385610 +115421,2427,lyrical,1174385663 +115421,2427,want to see again,1174385655 +115421,4235,Alejandro Gonzalez Inarritu,1174385784 +115421,4235,inarritu,1174385764 +115423,78517,growing old,1385313763 +115443,1023,babys,1334536206 +115443,1023,Cute!,1334536206 +115443,4467,kids and war,1334539434 +115443,5445,criminal law,1334539430 +115443,5445,future forms of justice,1334539430 +115443,5445,law,1334539430 +115443,91094,dancing,1334013694 +115443,91094,muppets,1334013706 +115443,91094,puppets,1334013699 +115467,260,sci-fi,1434784896 +115481,436,torrential downpour,1363028863 +115481,595,torrential downpour,1346010903 +115481,858,boring,1286141390 +115481,858,too long,1286141402 +115481,923,torrential downpour,1364814842 +115481,968,torrential downpour,1358803107 +115481,1020,montage,1359408982 +115481,1148,torrential downpour,1361139206 +115481,1200,torrential downpour,1360879454 +115481,1261,over the top,1358360563 +115481,1261,possession,1358360548 +115481,1320,torrential downpour,1361051655 +115481,1527,campy,1366152577 +115481,1527,unlikeable characters,1366152279 +115481,1639,torrential downpour,1376213218 +115481,1882,torrential downpour,1354914898 +115481,1974,torrential downpour,1355401664 +115481,1975,torrential downpour,1357851659 +115481,1977,torrential downpour,1358283145 +115481,1978,torrential downpour,1359066909 +115481,1978,twist ending,1359066935 +115481,1979,torrential downpour,1365621403 +115481,2011,torrential downpour,1359309611 +115481,2012,torrential downpour,1364765522 +115481,2247,FBI,1381272776 +115481,2247,Nudity (Topless),1381272813 +115481,2450,anthropomorphic,1374046609 +115481,2450,chase,1374046797 +115481,2450,Marvel,1374046832 +115481,2450,possession,1374046641 +115481,2450,torrential downpour,1374046685 +115481,2862,torrential downpour,1364685289 +115481,3624,montage,1345153458 +115481,4732,racism,1361996762 +115481,4732,silly,1361996749 +115481,5448,Based on a TV show,1358452263 +115481,5448,cartoon,1358452248 +115481,5784,torrential downpour,1347299607 +115481,6371,Pokemon,1366306583 +115481,6703,sin eater,1248652882 +115481,6952,torrential downpour,1347400252 +115481,7036,basketball,1359296932 +115481,7036,underdog,1359296946 +115481,7373,torrential downpour,1346866520 +115481,26693,bullying,1373960169 +115481,26693,flashbacks,1373960240 +115481,26693,long,1373960271 +115481,26693,supernatural,1373960220 +115481,26693,torrential downpour,1373960178 +115481,33288,based on a book,1362421582 +115481,33288,bird,1362421397 +115481,33288,England,1362421498 +115481,33288,working class,1362421416 +115481,33463,animated,1381308416 +115481,33463,cartoon,1381308391 +115481,33463,duck,1381308801 +115481,33463,genie,1381308758 +115481,33463,magic,1381308772 +115481,33463,Scrooge,1381308850 +115481,33463,sorcery,1381308786 +115481,33463,treasure,1381308868 +115481,41571,torrential downpour,1347299634 +115481,43926,The Magic Roundabout,1262265116 +115481,45722,torrential downpour,1344197189 +115481,51077,torrential downpour,1361620300 +115481,53125,torrential downpour,1344628013 +115481,59369,human trafficking,1356874721 +115481,59561,Rob Schneider,1346505882 +115481,64285,torrential downpour,1361390188 +115481,64969,torrential downpour,1358283133 +115481,65682,torrential downpour,1350581825 +115481,67999,brazil,1430079636 +115481,67999,China,1430079655 +115481,67999,India,1430079864 +115481,67999,Isreal,1430080041 +115481,67999,Japan,1430079661 +115481,67999,KISS,1430079919 +115481,67999,metal,1430079775 +115481,67999,music,1430079621 +115481,67999,United Arab Emirates,1430079737 +115481,68600,comedy,1338636995 +115481,68600,Nudity (Topless),1338637010 +115481,68600,sports,1338636983 +115481,68600,tennis,1338636951 +115481,68793,camp,1338747848 +115481,68793,Hank Azaria,1338747828 +115481,70336,torrential downpour,1364685129 +115481,71494,misogynistic,1352414017 +115481,72378,torrential downpour,1349649825 +115481,77427,torrential downpour,1341511750 +115481,78499,sinister,1296565390 +115481,79895,Egypt,1359801775 +115481,79895,french,1359801764 +115481,87909,found footage,1382259425 +115481,87909,kidnapping,1382259543 +115481,87909,rape,1382259556 +115481,88140,torrential downpour,1347644761 +115481,88356,Gargamel,1334319403 +115481,88932,torrential downpour,1358803072 +115481,90249,torrential downpour,1362612025 +115481,90746,torrential downpour,1344720358 +115481,91298,crime,1322407108 +115481,91298,london,1322407119 +115481,91298,russian,1322407113 +115481,91461,bangkok,1356737687 +115481,91461,gangs,1356737712 +115481,91461,human trafficking,1356874660 +115481,91461,monks,1356737691 +115481,91888,animated,1360174708 +115481,91888,Cuba,1360174714 +115481,93270,drugs,1412364628 +115481,93270,party,1412364647 +115481,94478,torrential downpour,1365716750 +115481,95510,torrential downpour,1400966281 +115481,96114,agent,1372804482 +115481,96114,CIA,1372805388 +115481,96114,claustrophobic,1372804995 +115481,96114,hostage,1372805166 +115481,96114,terrorism,1372804534 +115481,96498,dinosaurs,1358975417 +115481,96498,found footage,1358975489 +115481,96498,Handycam,1358975494 +115481,96498,mockumentary,1358975530 +115481,96691,torrential downpour,1354913827 +115481,96861,Istanbul,1361033554 +115481,96861,Turkey,1361033564 +115481,97326,drugs,1381216890 +115481,97326,gangs,1381216930 +115481,97326,prostitution,1381216915 +115481,97836,fighting,1424640526 +115481,97836,high school,1424640535 +115481,97836,music,1424640538 +115481,97836,torrential downpour,1424640573 +115481,97836,ufc,1424640528 +115481,97836,underdog,1424640532 +115481,97913,racing,1359925759 +115481,97913,watch the credits,1359926228 +115481,98054,crime,1355057241 +115481,98054,heist,1355057236 +115481,98054,Nicolas Cage,1355057230 +115481,98054,revenge,1355057247 +115481,98122,computer game,1382272224 +115481,98400,cinematography,1381265574 +115481,98400,dementia,1381265516 +115481,98400,fantasy,1381265135 +115481,98400,music,1381265078 +115481,98400,musicians,1381265259 +115481,98400,relationships,1381265567 +115481,98400,snowman,1381265251 +115481,99112,car chase,1397383813 +115481,99112,torrential downpour,1397383822 +115481,99347,bomb,1356738276 +115481,99347,piano,1356738257 +115481,99347,robot,1356738248 +115481,100083,silly,1381512222 +115481,100159,black comedy,1372539930 +115481,100159,camping trip,1372539914 +115481,100159,murder,1372539921 +115481,100159,torrential downpour,1372539940 +115481,100302,physics,1382295929 +115481,100302,torrential downpour,1382295944 +115481,100302,visually appealing,1382296060 +115481,100310,axe,1360013375 +115481,100310,bad acting,1360013407 +115481,100310,island,1360013386 +115481,100310,slasher,1360013366 +115481,100363,animation,1360263377 +115481,100363,based on a video game,1360263433 +115481,100363,resident evil,1360263371 +115481,100363,video game adaptation,1360263422 +115481,100363,zombies,1360263386 +115481,100390,crime,1382132190 +115481,100390,identity theft,1382132138 +115481,100390,road trip,1382132153 +115481,100390,too long,1382132173 +115481,100408,based on video game,1360520810 +115481,100408,resident evil,1360520831 +115481,100408,video game adaptation,1360520817 +115481,100408,zombies,1360520823 +115481,100498,car chase,1398016067 +115481,100498,explosions,1398016074 +115481,100507,fraternity,1381430759 +115481,100507,university,1381430752 +115481,100810,aliens,1382131949 +115481,100810,posession,1382131974 +115481,100810,supernatural,1382131940 +115481,101283,Jim Carrey,1381265683 +115481,101283,magicians,1381265665 +115481,101283,Steve Carell,1381265715 +115481,101285,drugs,1373145572 +115481,101285,gangsters,1373146108 +115481,101285,guns,1373146115 +115481,101285,plot,1373146093 +115481,101285,repetition,1373145266 +115481,101285,sexual,1373146137 +115481,101285,sleaze,1373146256 +115481,101362,hostage,1381603335 +115481,101362,president,1381603401 +115481,101362,terrorism,1381603325 +115481,101362,White House,1381603472 +115481,101741,heist,1382295407 +115481,101741,hypnosis,1382295430 +115481,101741,torrential downpour,1382296033 +115481,101756,Ireland,1365333980 +115481,101756,music,1365333974 +115481,101756,music business,1365334006 +115481,101761,crime,1396818680 +115481,101761,police,1396818668 +115481,101761,police corruption,1396818661 +115481,101761,torrential downpour,1396819038 +115481,101870,Antarctica,1365713918 +115481,101870,Nazis,1365713923 +115481,102033,based on a true story,1381431643 +115481,102033,extortion,1381431208 +115481,102033,kidnapping,1381431066 +115481,102033,murder,1381431136 +115481,102477,animation,1368645838 +115481,102477,anime,1368645856 +115481,102477,based on a video game,1368645845 +115481,102521,alternate,1368878783 +115481,102521,Nudity (Topless),1368878812 +115481,102521,porn industry,1368878803 +115481,102521,slapstick,1368878836 +115481,103228,cgi,1381172300 +115481,103228,cliche characters,1381172348 +115481,103228,robots,1381172317 +115481,103228,torrential downpour,1381172273 +115481,103339,hacking,1381511826 +115481,103339,hacking into the mainframe,1381511977 +115481,103339,hostage,1381511804 +115481,103339,president,1381512138 +115481,103339,terrorism,1381511796 +115481,103339,White House,1381511772 +115481,103343,cameos,1372540395 +115481,103343,comedy,1372540413 +115481,103343,Nudity (Topless),1372540439 +115481,103366,crime,1381691619 +115481,103366,homeless,1381691612 +115481,103366,nuns,1381691630 +115481,103374,black comedy,1423353792 +115481,103374,murder,1372620690 +115481,103374,police,1372620669 +115481,103374,police brutality,1372620683 +115481,103374,police corruption,1372620677 +115481,103374,vigilante,1423353777 +115481,103502,bad dialogue,1373226905 +115481,103502,cliche,1373227368 +115481,103502,strippers,1373227115 +115481,103502,wedding,1373226885 +115481,103596,torrential downpour,1394470375 +115481,103669,cat and mouse,1397400952 +115481,103669,hunting,1397400970 +115481,103669,slow,1397400888 +115481,103669,torrential downpour,1397400977 +115481,104078,hostage,1453675643 +115481,104078,radio,1453675645 +115481,104211,strippers,1396818773 +115481,104241,strippers,1394470351 +115481,104441,drugs,1399298643 +115481,104441,hunting,1399298630 +115481,104441,murder,1399298624 +115481,104441,rape,1399298637 +115481,104441,strippers,1399298616 +115481,104736,London,1396198737 +115481,105455,FILMMAKING,1381309292 +115481,105455,mockumentary,1381309277 +115481,105455,murder,1381309315 +115481,105455,obsession,1381309730 +115481,106062,strippers,1394470322 +115481,106540,parenthood,1395355317 +115481,106540,sperm donor,1395355336 +115481,106540,torrential downpour,1395355270 +115481,106540,Vince Vaughn,1395355358 +115481,106782,strippers,1394833927 +115481,106785,car chase,1418676665 +115481,106785,drugs,1418676661 +115481,106785,revenge,1418676739 +115481,106785,undercover cop,1418676704 +115481,106916,Slow,1394999335 +115481,107675,gangs,1397918772 +115481,107675,London,1397919033 +115481,107675,murder,1397918792 +115481,107675,police,1397919116 +115481,107675,rape,1397918780 +115481,107675,strippers,1397918978 +115481,109072,car chase,1449354679 +115481,109243,alcoholism,1407073811 +115481,109243,child abuse,1407073803 +115481,109243,dog killing,1407073637 +115481,109243,prostitution,1407073621 +115481,109243,too long,1407073795 +115481,109483,relationships,1399300517 +115481,109569,car chase,1434404416 +115481,109569,father daughter relationship,1434404433 +115481,110899,crime,1417545369 +115481,110899,revenge,1417545362 +115481,110899,tokarev,1417545440 +115481,111360,drug trafficking,1428345337 +115481,111360,revenge,1428346349 +115481,111360,telekinesis,1428345362 +115481,111743,wild west,1416775080 +115481,112515,supernatural,1430769155 +115481,113532,australia,1419711003 +115481,114074,adultery,1420140500 +115481,114074,relationships,1420140503 +115481,114074,siblings,1420140481 +115481,114074,suicide,1420140486 +115481,114246,torrential downpour,1431549856 +115481,115149,car chase,1445199996 +115481,115149,torrential downpour,1445199993 +115481,117590,kidnapping,1428176156 +115481,118248,dementia,1445547756 +115481,118248,terrorist,1445547778 +115481,119948,murder,1447624774 +115481,127319,torrential downpour,1451606800 +115481,129435,brutal,1425242481 +115481,129435,knife crime,1425238592 +115481,129435,London,1425238579 +115481,129435,murder,1425238594 +115481,129435,revenge,1425238647 +115481,130450,London,1445159043 +115481,130450,pirates,1445159029 +115481,130578,assassination,1434834607 +115481,142604,kidnapping,1449768435 +115488,50,twist ending,1436537749 +115488,260,funny,1433272946 +115488,2302,courtroom,1441980688 +115513,47,denzil washington,1356044913 +115513,3989,docudrama,1357600953 +115525,1569,Chicago,1240200325 +115525,1569,wedding,1240200320 +115527,318,freedom,1437981960 +115527,318,male bonding,1437981960 +115527,318,prison escape,1437981960 +115542,436,psychology,1159679228 +115568,5989,intelligent,1452267501 +115568,47997,dystopia,1452106859 +115568,47997,social commentary,1452106864 +115568,64575,Meryl Streep,1452267556 +115568,64575,Philip Seymour Hoffman,1452267559 +115568,64575,thought-provoking,1452267564 +115568,76093,cute,1452266739 +115568,76093,fantasy,1452266726 +115579,835,Sweet boobs,1149650358 +115586,85414,mindfuck,1445659777 +115604,260,sci-fi,1439917220 +115604,260,war,1439917236 +115604,2959,psychological thriller,1439917478 +115604,4993,Magic,1439917547 +115611,356,the best movie ever made. period.,1436838264 +115611,356,this movie is one of the best movies of all time. everyone should watch this movie. it is perfect.,1436838264 +115611,356,will watch any number of times,1436838264 +115669,3408,Julia Roberts,1139657574 +115672,7478,style:monologue,1270827073 +115672,66090,bad ending,1270808333 +115672,66090,Thomas Turgoose,1270808324 +115672,74458,leo,1270808532 +115672,74458,Leonardo DiCaprio,1271405945 +115672,74458,psychological,1270808660 +115692,318,crime,1431252536 +115692,318,great ending,1431252547 +115692,318,Morgan Freeman,1431252526 +115692,318,prison escape,1431252542 +115692,318,thought-provoking,1431252530 +115692,1291,Adventure,1431252411 +115692,1291,Steven Spielberg,1431252429 +115692,30707,boxing,1431252513 +115692,30707,emotional,1431252503 +115692,30707,Morgan Freeman,1431252496 +115721,3916,One of my all time favorite movies,1160546159 +115740,260,series,1437642229 +115740,260,space,1437642224 +115741,260,fantasy,1452337559 +115741,260,Science Fiction,1452337548 +115741,260,Star Wars,1452337555 +115741,2710,creepy,1452337375 +115741,2710,found footage,1452337383 +115741,2710,horror,1452337386 +115741,2710,scary,1452337377 +115741,40732,blood,1452337459 +115741,40732,horror,1452337453 +115741,40732,violence,1452337462 +115741,57274,"""found footage""",1452337781 +115741,57274,Handycam,1452337772 +115741,57274,horror,1452337777 +115741,57274,quarantine,1452337790 +115741,57274,virus,1452337774 +115741,57274,zombies,1452337768 +115741,71379,demon possession,1452337342 +115741,71379,horror,1452337356 +115747,2792,fun,1425904349 +115747,2792,parody,1425904337 +115747,5218,animation,1425371891 +115747,6942,great soundtrack,1425371948 +115747,6942,love,1425371921 +115747,51084,Drew Barrymore,1425904422 +115747,51084,romance,1425904426 +115747,71106,funny,1425371981 +115747,71106,time travel,1425371980 +115758,260,good vs evil,1443913189 +115758,260,space epic,1443913178 +115762,223,good dialogue,1388007296 +115762,223,independent film,1388007307 +115766,541,visually stunning,1427342199 +115766,6874,over the top,1427342162 +115766,94864,dark,1427342309 +115766,94864,ridley scott,1427342309 +115766,94864,sci-fi,1427342309 +115787,60069,dystopia,1240851269 +115787,60069,Post apocalyptic,1240851262 +115787,60069,Sci-Fi,1240851266 +115787,60069,social commentary,1240851288 +115787,60069,space,1240851291 +115787,64983,Germany,1242759678 +115787,64983,history,1242759684 +115787,64983,Nazis,1242759674 +115787,64983,Tom Cruise,1242759729 +115787,64983,World War II,1242759725 +115815,260,Boring,1436648576 +115815,260,Science Fiction,1436648584 +115815,324,homosexuality,1440542184 +115815,324,Russell Crowe,1440542178 +115817,1077,slapstick,1445207760 +115817,1077,Woody Allen,1445207754 +115817,1237,cerebral,1445379638 +115817,1237,reflective,1445379641 +115817,2677,cuba,1445207489 +115817,2677,musicians,1445207493 +115817,3503,Andrei Tarkovsky,1445207784 +115817,3503,atmospheric,1445207776 +115817,3503,cerebral,1445207787 +115817,3503,dreamlike,1445207779 +115817,3503,enigmatic,1445207795 +115817,4011,british,1445207532 +115817,4011,dark comedy,1445207547 +115817,4011,Hilarious,1445207529 +115817,5939,so bad it's good,1445414311 +115817,5939,WTF?,1445414313 +115817,26082,austere,1445207655 +115817,26082,cinematography,1445207651 +115817,26082,great dialogue,1445207647 +115817,26082,Samurai,1445207642 +115817,26444,british,1445207727 +115817,26444,douglas adams,1445207716 +115817,26444,sci-fi,1445207718 +115817,50872,imagination,1445207608 +115817,50872,pixar,1445207591 +115817,50872,Pixar animation,1445207602 +115817,50872,story,1445207596 +115817,108583,british,1445207680 +115817,108583,comedy,1445207689 +115817,108583,John Cleese,1445207682 +115817,108583,witty,1445207684 +115818,47,psychology,1295577366 +115818,47,serial killer,1295577365 +115818,47,twist ending,1295577369 +115818,110,action,1295576062 +115818,110,medieval,1295576059 +115818,161,Denzel Washington,1295577139 +115818,356,psychology,1295576347 +115818,356,Tom Hanks,1295576343 +115818,493,gangsters,1295576984 +115818,1222,military,1295576048 +115818,1222,Vietnam War,1295576046 +115818,1259,coming of age,1295576101 +115818,1259,Stephen King,1295576098 +115818,1726,Post apocalyptic,1295575157 +115818,1726,post-apocalyptic,1295575160 +115818,2028,Steven Spielberg,1295576094 +115818,2028,Tom Hanks,1295576091 +115818,2028,World War II,1295576089 +115818,2117,post-apocalyptic,1295575141 +115818,2231,gambling,1295576277 +115818,2231,poker,1295576279 +115818,2329,prison,1295575265 +115818,2571,post-apocalyptic,1295575167 +115818,2959,twist ending,1295575312 +115818,3275,organized crime,1295575997 +115818,3275,serial killer,1295575999 +115818,3761,prison,1295575797 +115818,4776,denzel washington,1295578267 +115818,4963,action,1295576646 +115818,4963,heist,1295576644 +115818,4993,fantasy,1295575341 +115818,5952,fantasy,1295575352 +115818,6502,post-apocalyptic,1295575179 +115818,6796,gangsters,1295576266 +115818,7147,fantasy,1295576611 +115818,7153,fantasy,1295575346 +115818,7360,post-apocalyptic,1295575150 +115818,7445,Denzel Washington,1295577901 +115818,7445,friendship,1295577903 +115818,7481,stranded,1295577097 +115818,8340,prison,1295576110 +115818,8340,prison escape,1295576111 +115818,8957,serial killer,1295575861 +115818,33166,twist ending,1295577790 +115818,35836,comedy,1295575923 +115818,44199,Denzel Washington,1295576079 +115818,44199,twist ending,1295576081 +115818,48516,organized crime,1295575994 +115818,51662,action,1295575911 +115818,54503,comedy,1295578407 +115818,54503,friendship,1295578409 +115818,54503,high school,1295578405 +115818,56174,post-apocalyptic,1295575196 +115818,64614,friendship,1295576014 +115818,64614,revenge,1295576012 +115818,71535,post-apocalyptic,1295577860 +115818,74458,Martin Scorsese,1295576455 +115818,74458,psychological,1295576452 +115818,74458,twist ending,1295576449 +115824,4161,Brad Pitt,1166267235 +115824,7572,Emma Thompson,1166524283 +115827,260,romance,1444645317 +115858,4011,Brad Pitt,1219841175 +115858,4011,Guy Ritchie,1219841180 +115862,292,disease,1446359190 +115862,292,epidemic,1446359192 +115862,292,virus,1446359220 +115862,736,Disaster,1446359246 +115862,923,Amazing Cinematography,1446359662 +115862,923,black and white,1446359657 +115862,923,cinematography,1446359673 +115862,923,Innovative,1446359667 +115862,923,masterpiece,1446359636 +115862,923,Orson Welles,1446359638 +115862,1438,disaster,1446359276 +115862,1438,natural disaster,1446359273 +115862,1876,natural disaster,1446359309 +115862,2009,Charlton Heston,1446359987 +115862,2009,dystopia,1446359993 +115862,2535,Charlton Heston,1446359455 +115862,2535,disaster film,1446359462 +115862,60684,alternate history,1446360267 +115876,260,good vs evil,1434507621 +115876,260,space,1434507616 +115876,94466,not a movie,1434507878 +115876,94466,tv series,1434507882 +115876,108583,tv series,1434510198 +115878,8532,drama,1137660250 +115878,36517,drama,1137660185 +115878,36517,thriller,1137660185 +115915,509,lyrical,1173371871 +115930,7099,Hayao Miyazaki,1210541880 +115930,7099,Miyazaki,1210541877 +115930,7099,Studio Ghibli,1210541868 +115949,2717,Action,1260702541 +115949,2717,Ghosts,1260702555 +115949,36850,like,1260702769 +115958,260,cult classic,1430904427 +115958,260,must see,1430904416 +115988,260,adventure,1439792464 +115988,260,classic sci-fi,1439792465 +115999,3826,fight club,1212167229 +116039,109850,action,1424664125 +116039,109850,cars,1424664125 +116039,109850,racing,1424664125 +116047,318,escape,1428883555 +116047,318,friendship,1428883555 +116047,318,touching,1428883555 +116047,33794,action,1428168077 +116047,33794,dc comics,1428168077 +116047,33794,superhero,1428168077 +116048,104,test tag,1154718872 +116081,260,cult,1436008642 +116081,260,kids and family,1436008642 +116081,260,star wars,1436008642 +116084,1884,drugs,1136620266 +116084,1884,gonzo,1136620266 +116084,1884,journalism,1136620266 +116084,2329,neonazis,1136620252 +116084,2329,racism,1136620252 +116084,6193,mentor,1367823297 +116084,7371,america,1136620254 +116084,7371,small towns,1136620254 +116084,27815,mentor,1367823296 +116084,34648,adoption,1150575737 +116084,34648,childbirth,1150575737 +116084,34648,children,1150575737 +116084,34648,family crisis,1150575737 +116084,34648,guilt,1150575737 +116084,34648,trees,1150575737 +116084,39446,disgust,1137878082 +116084,39446,gore,1137878082 +116084,39446,needles,1137878082 +116084,39446,traps,1137878082 +116084,44709,mentor,1367823296 +116084,82242,original,1367823265 +116102,6,Al Pacino,1412027501 +116102,6,Bank Heist,1415626553 +116102,6,dialogue,1412027400 +116102,6,great acting,1412027389 +116102,6,philosophy,1412028352 +116102,6,Robert De Niro,1412027498 +116102,6,slow paced,1412027410 +116102,6,suspense,1409669119 +116102,6,tense,1409669103 +116102,296,funny dialogues,1409568769 +116102,2324,bittersweet,1409669391 +116102,2324,comedy,1409669388 +116102,2324,Heartwarming,1409669385 +116102,2324,humanism,1409669424 +116102,2324,survival,1409669406 +116102,2324,tragic,1409669431 +116102,2353,irrational wife,1409684128 +116102,2571,pseudo-philosophical,1409569255 +116102,2571,Special Effects,1409569255 +116102,2571,visual style,1409569255 +116102,2692,alternate endings,1409687240 +116102,2692,alternate reality,1409687225 +116102,2692,great soundtrack,1409687265 +116102,2692,high-pitched screaming,1409687301 +116102,2692,original,1409687209 +116102,8874,black comedy,1409580326 +116102,8874,British,1409580333 +116102,8874,dark comedy,1409580369 +116102,8874,dark humor,1409580339 +116102,8874,england,1409580357 +116102,8874,gore,1409580375 +116102,8874,parody,1409580330 +116102,8874,zombie,1409580344 +116102,8874,zombies,1409580321 +116102,27773,Cinematography,1409655500 +116102,27773,classic,1409669216 +116102,27773,disturbing,1409655404 +116102,27773,Korea,1409655532 +116102,27773,Nudity (Full Frontal),1409655415 +116102,27773,violent,1409655431 +116102,27801,bad acting,1412105563 +116102,27801,bad plot,1412105215 +116102,27801,clichéd,1412105560 +116102,27801,muay thai,1412105202 +116102,27801,no plot,1412105227 +116102,27801,thailand,1412105376 +116102,32587,multiple storylines,1409568658 +116102,32587,visually stunning,1409568616 +116102,56367,Ellen Page,1409569501 +116102,56367,excellent script,1409669262 +116102,56367,feel-good,1409669255 +116102,56367,non-traditional family,1409569440 +116102,56367,quirky,1409569501 +116102,66371,beautiful scenery,1409655833 +116102,66371,calm,1409655820 +116102,66371,confronting death,1409655847 +116102,66371,emotional,1409655813 +116102,66371,life & death,1409655858 +116102,66371,slow,1409669979 +116102,66371,understated,1409669331 +116102,67734,avoids cliches,1409569017 +116102,67734,realistic characters,1409569016 +116102,67734,realistic dialogue,1409569017 +116102,67734,realistic relationships,1409569017 +116102,68952,ironic,1409568871 +116102,73321,faith,1411719625 +116102,73321,Mila Kunis,1411719425 +116102,73321,religious propaganda,1411719407 +116102,73321,visually appealing,1411719415 +116102,74416,british english,1409676612 +116102,74416,full characters,1409676701 +116102,74416,loneliness,1409676777 +116102,74416,Poverty,1409676676 +116102,74416,realism,1409676604 +116102,74416,realistic,1409676607 +116102,74416,realistic characters,1409676710 +116102,74416,social conflicts,1409676642 +116102,78574,acting,1409570773 +116102,78574,authenticity,1409572830 +116102,78574,calm,1409656441 +116102,78574,characters,1409669844 +116102,78574,countryside,1409572953 +116102,78574,cultural authenticity,1409656235 +116102,78574,drugs,1409570143 +116102,78574,great acting,1409656411 +116102,78574,great characters,1409669764 +116102,78574,Jennifer Lawrence,1409570071 +116102,78574,methamphetamines,1409570127 +116102,78574,Missouri,1409572961 +116102,78574,music,1409570611 +116102,78574,Ozarks,1409670371 +116102,78574,Poverty,1409570579 +116102,78574,quiet,1409572805 +116102,78574,realism,1409569835 +116102,78574,realistic characters,1409669834 +116102,78574,resilience,1409572838 +116102,78574,rural,1409572815 +116102,78574,rural poverty,1409570104 +116102,78574,slow,1409572929 +116102,78574,social commentary,1409570545 +116102,78574,South,1409656741 +116102,78574,southern accent,1409573019 +116102,78574,Southern American accent,1409570408 +116102,79132,alternate reality,1409687065 +116102,79132,Ellen Page,1409687000 +116102,79132,great soundtrack,1409687094 +116102,79132,mindfuck,1409687082 +116102,79132,Sound design,1409687033 +116102,79132,visually appealing,1409687004 +116102,81591,disturbing,1409669509 +116102,81591,mental illness,1409669513 +116102,81591,obsession,1409669574 +116102,81591,surreal,1409669503 +116102,88192,Jennifer Lawrence,1412198210 +116102,88192,uneven,1413634359 +116102,93740,Funny,1410031195 +116102,93740,Love story,1410031188 +116102,93740,schmaltzy,1410031852 +116102,93838,drags on,1409657849 +116102,93838,minimal plot,1409657903 +116102,93838,non-interactive video-game,1409657122 +116102,93838,stupid title,1409657882 +116102,93838,thin plot,1409657898 +116102,97921,dark humor,1409656926 +116102,97921,great characters,1409669633 +116102,97921,Jennifer Lawrence,1409656893 +116102,97921,loneliness,1409656920 +116102,97921,mental illness,1409656956 +116102,97921,music,1409656990 +116102,97921,predictable ending,1409656937 +116102,97921,Robert De Niro,1410303002 +116102,97921,understandable characters,1409669615 +116102,104339,movie business,1409677713 +116102,104339,Nick Offerman,1409677876 +116102,104339,nose kiss,1409598445 +116102,104339,parody,1409598447 +116102,106920,original,1409776367 +116106,16,on dvr,1176157226 +116106,29,on computer,1176761397 +116106,35,on dvr,1176157183 +116106,58,on disc,1175907885 +116106,247,troy library,1177032765 +116106,300,on computer,1175907570 +116106,337,on computer,1176761413 +116106,509,on computer,1177866275 +116106,590,on dvr,1175909026 +116106,800,on dvr,1176157167 +116106,866,on disc,1175908170 +116106,866,on dvr,1175908175 +116106,900,on computer,1180566540 +116106,912,on computer,1176761442 +116106,1084,on computer,1180566518 +116106,1136,on disc,1175907842 +116106,1183,on dvr,1176157279 +116106,1193,on request,1200285567 +116106,1200,on computer,1191344723 +116106,1209,on computer,1175907560 +116106,1209,on disc,1175910367 +116106,1211,on computer,1176155427 +116106,1214,on computer,1191344859 +116106,1222,on computer,1176761384 +116106,1225,on computer,1177895180 +116106,1235,on computer,1176761450 +116106,1257,on disc,1175908326 +116106,1260,on computer,1175907528 +116106,1276,on computer,1177866237 +116106,1354,on dvr,1176157199 +116106,1466,on computer,1179900710 +116106,1610,on disc,1175907823 +116106,1672,on computer,1175907707 +116106,1762,on disc,1175907791 +116106,1779,on disc,1175907867 +116106,1927,netflix instant,1201131291 +116106,1997,on computer,1176761432 +116106,2010,on computer,1191344827 +116106,2023,on disc,1176059108 +116106,2071,on computer,1175907470 +116106,2324,on computer,1180658964 +116106,2413,on computer,1200285880 +116106,2580,on disc,1175908279 +116106,2580,on dvr,1175908279 +116106,2908,on dvr,1176157148 +116106,3006,on disc,1175908073 +116106,3148,on computer,1175907681 +116106,3471,netflix instant,1201131363 +116106,3471,troy library,1179901849 +116106,3724,on dvr,1176157241 +116106,3983,on disc,1179900627 +116106,3988,on computer,1191344960 +116106,4028,on dvr,1175908761 +116106,4034,on dvr,1175908937 +116106,4235,on computer,1175907668 +116106,4326,on dvr,1220566535 +116106,4361,netflix instant,1201131353 +116106,4644,on disc,1175907907 +116106,4699,on disc,1175907945 +116106,4738,on disc,1179900631 +116106,4857,on dvr,1220566456 +116106,4973,on computer,1175907656 +116106,5378,on computer,1175907607 +116106,5540,on disc,1175907924 +116106,5608,on disc,1179900610 +116106,5668,on computer,1175907625 +116106,5690,on computer,1179900605 +116106,5896,on disc,1179900614 +116106,5991,on disc,1175907859 +116106,6216,on computer,1175907549 +116106,6333,on disc,1175907952 +116106,6380,on computer,1177895194 +116106,6620,on computer,1175908980 +116106,6953,on computer,1175907648 +116106,8530,on computer,1240774826 +116106,26606,on computer,1179900709 +116106,26974,filmed in west nashville,1219888097 +116106,27773,on computer,1177032244 +116106,27803,on computer,1176761459 +116106,27878,on computer,1175907484 +116106,33493,on computer,1175907603 +116106,33639,on computer,1175907539 +116106,34405,on computer,1191344814 +116106,37855,on computer,1176761404 +116106,40819,on computer,1175907617 +116106,40870,netflix instant,1201131284 +116106,44694,on computer,1191344923 +116106,45950,on computer,1200285736 +116106,46965,on computer,1179900727 +116106,48696,on computer,1191344875 +116106,48780,on request,1191345069 +116106,50923,on dvr,1220566502 +116108,141,cliche,1381497460 +116108,2028,disturbing,1274837927 +116108,2028,history,1274837934 +116108,2028,Steven Spielberg,1274837939 +116108,2966,brothers,1301301874 +116108,2966,David Lynch,1301301878 +116108,2966,lawn mower,1301301883 +116108,2966,melodrama,1301301885 +116108,2966,obstinance,1301301890 +116108,4873,metaphysics,1300693593 +116108,4873,no narrative,1300693602 +116108,8950,Christian Bale,1300694695 +116108,8950,imaginary friend,1300694726 +116108,8950,Overrated,1300694702 +116108,8950,post-traumatic stress disorder,1300694710 +116108,57637,black comedy,1354611261 +116108,57637,love story,1354611279 +116108,57637,post-apocalyptic,1354611302 +116108,69784,Sacha Baron Cohen,1298456919 +116108,69784,Suprises around every corner,1298456921 +116108,72731,too long,1288481131 +116108,79702,Kieran Culkin,1282082608 +116108,79702,Mary Elizabeth Winstead,1282082614 +116108,79702,Michael Cera,1282082629 +116108,79702,stylized,1282082605 +116108,79702,video games,1282082620 +116108,80917,love story,1354483209 +116108,80917,social commentary,1354483137 +116108,84880,British accents,1324483431 +116108,84880,Jews,1324483406 +116108,84880,Religion,1324483414 +116108,88129,atmospheric,1387507924 +116108,88129,car chase,1387507893 +116108,88129,cars,1387507898 +116108,88129,cinematography,1387507922 +116108,88129,feel-good,1387507903 +116108,88129,great soundtrack,1387507927 +116108,88129,neo-noir,1387507919 +116108,88129,predictable,1387507929 +116122,724,1990s,1438610254 +116122,724,high school,1438610251 +116122,724,suburbia,1438610213 +116122,724,supernatural,1438610263 +116122,724,teen movie,1438610264 +116122,724,witchcraft,1438610242 +116122,1334,outer space,1438610392 +116122,2026,invasion,1438610304 +116122,2428,outer space,1438610322 +116122,4492,creature feature,1438610369 +116122,4754,atmospheric,1357490150 +116122,4754,pagan,1357490159 +116122,33834,Asia Argento,1357489914 +116122,33834,George A. Romero,1357489897 +116122,33834,John Leguizamo,1357489911 +116122,33834,zombies,1357489905 +116160,31221,marvel,1417576903 +116160,42738,dark fantasy,1417740388 +116160,42738,vampire,1417574027 +116160,42738,vampires,1417574045 +116160,42738,werewolf,1417574052 +116160,67923,cars,1417574127 +116160,67923,Racing,1417574124 +116160,73488,vampires,1417577385 +116160,98361,vampires,1417576571 +116161,2324,pro-life,1202662278 +116161,5267,dreams,1199233558 +116161,43396,dreams,1174413342 +116161,50685,pro-life,1202662240 +116185,93838,awesome martial arts,1337994234 +116185,93838,brutal,1337994233 +116185,93838,gray,1337994779 +116185,93838,intense,1337994234 +116185,93838,loud,1337994846 +116185,93838,shooting,1337994258 +116185,93838,thin plot,1337994543 +116185,93838,visceral,1337994234 +116200,356,seen more than once,1197932736 +116200,1265,seen more than once,1197933724 +116200,4995,mental illness,1197933034 +116200,55566,African-American,1197932664 +116200,55566,relationships,1197932675 +116200,55566,Tyler Perry,1197932653 +116209,540,silly,1186926409 +116209,1245,Coen Brothers,1186926509 +116209,1298,animation,1186926401 +116209,1298,classic,1186926401 +116209,1298,masterpiece,1186926401 +116209,1590,boring,1186926288 +116209,1779,based on a book,1186926472 +116209,1779,crichton,1186926472 +116209,2431,true story,1186926373 +116209,2478,silly,1186926261 +116209,2863,Beatles,1186926611 +116209,3263,fun,1186926518 +116209,6016,adaptation,1186926364 +116209,6870,crime,1186926346 +116209,6870,humanity,1186926346 +116209,8970,Depp,1186926568 +116215,1259,coming of age,1438902626 +116215,1259,Death,1438902644 +116215,3078,anti-semitism,1438915153 +116215,3078,coming of age,1438915176 +116215,3078,Interracial couple,1438915147 +116215,3078,segregation,1438915165 +116215,4537,fugitive,1438902718 +116215,4537,River Phoenix,1438902845 +116215,4537,Secret Identity,1438902820 +116215,4537,War,1438902807 +116215,31364,Countryside,1438902437 +116215,33124,Academy,1438902286 +116215,33124,Nazi Germany,1438902255 +116215,37857,alternate reality,1439160241 +116215,37857,Atmospheric,1439160218 +116215,46723,multilingual,1438903550 +116215,48394,atmospheric,1438903597 +116215,48394,dark fantasy,1438903628 +116215,48394,fascism,1438903675 +116215,48394,Guillermo del Toro,1438903612 +116215,48394,Must See,1438903659 +116215,76093,adorable,1438902906 +116215,76093,animation,1438902910 +116215,76093,fantasy,1438902924 +116215,76093,prejudice,1438903014 +116215,84952,Revenge,1438914892 +116215,84952,School,1438914896 +116215,85129,war,1438915537 +116215,86753,Court Drama,1438903264 +116215,86753,Japanese Judicial System,1438903245 +116215,86753,Molestation,1438903288 +116215,86753,Social Issues,1438903383 +116215,100843,black and white,1438915300 +116215,107916,Biopic,1438904093 +116215,107916,Drug Abuse,1438904126 +116215,107916,French,1438904147 +116215,108212,Biopic,1438904188 +116215,108212,Drug Abuse,1438904216 +116215,108212,French,1438904200 +116215,116660,german,1438915271 +116215,116660,lgbt,1438915268 +116215,127084,Bullying,1438903129 +116215,127084,Highschool,1438903188 +116215,127084,Polish,1438903137 +116215,137337,emotional,1438912550 +116215,137337,found footage,1438912532 +116215,137337,jazz,1438912558 +116215,140239,Beauty Standards,1438914516 +116215,140239,Disturbing,1438914559 +116215,140239,Japanese,1438914525 +116215,140239,Obsession,1438914520 +116215,140239,Plastic Surgery,1438914508 +116215,140331,Cultural,1439139316 +116215,140331,photography,1439139284 +116215,140333,religious context,1439139487 +116215,140333,sad,1439139448 +116216,1221,classic,1415952314 +116216,1221,Francis Ford Coppola,1415960955 +116216,1221,great acting,1415952320 +116216,1221,Mafia,1415946910 +116216,1221,Robert De Niro,1415952324 +116245,260,classic sci-fi,1436090448 +116245,260,trilogy,1436090471 +116283,112852,Marvel,1424895732 +116283,112852,talking animals,1424895734 +116283,112852,violent,1424895722 +116296,260,cult classic,1441838355 +116296,260,Star Wars,1441838322 +116304,260,action,1442741678 +116304,260,comedy,1442741667 +116304,260,drama,1442741672 +116304,260,sci-fi,1442741632 +116304,260,space,1442741656 +116331,2,fantasy,1212775891 +116331,165,action,1212775913 +116331,589,time travel,1212775795 +116331,1240,sci-fi,1212775780 +116331,1240,time travel,1212775785 +116331,1270,time travel,1212775863 +116331,1580,aliens,1212775881 +116331,1682,Jim Carrey,1241161800 +116331,2011,time travel,1212775860 +116331,2012,time travel,1212775858 +116331,2571,sci-fi,1212775835 +116331,2628,sci-fi,1212775818 +116331,2628,space,1212775805 +116331,2706,teen,1212775875 +116331,2716,ghosts,1212775899 +116331,3510,time travel,1212775844 +116331,5171,time travel,1213111950 +116331,5349,super-hero,1212775828 +116331,8914,time travel,1213111953 +116331,31685,funny,1241416551 +116331,31685,king of queens,1241416570 +116331,31685,New York City,1241416578 +116331,31685,Will Smith,1241416548 +116331,39183,gay,1241843739 +116331,39183,homosexuality,1241843735 +116331,39183,romance,1241843752 +116331,39183,sexuality,1241843747 +116331,39183,Tragedy,1241843779 +116331,53996,android(s)/cyborg(s),1241161943 +116331,53996,based on a comic,1241161890 +116331,53996,robots,1241161897 +116331,53996,Tyrese Gibson,1241161919 +116331,60069,Animation,1241161737 +116331,60069,dystopia,1241161728 +116331,60069,love story,1241161672 +116331,60069,pixar,1241161757 +116331,60069,Post apocalyptic,1241161749 +116331,60069,robots,1241161683 +116331,60069,social commentary,1241161754 +116331,60069,space,1241161720 +116331,68358,action,1242676237 +116331,68358,adventure,1242676241 +116331,68358,sci fi,1242676249 +116331,68358,space,1242676247 +116331,68358,spock,1242676225 +116331,68358,Star Trek,1242676230 +116331,68358,time travel,1242676228 +116331,68791,action,1244380763 +116331,68791,artificial intelligence,1244380766 +116331,68791,Christian Bale,1244380760 +116331,68791,no blood,1244380785 +116331,68791,sci-fi,1244380749 +116331,68791,sequel,1244380741 +116352,27423,Brazil,1427921002 +116352,27423,poverty,1427921049 +116352,27423,the actors are the best brasilian actor.,1427921038 +116352,69469,animation,1432058408 +116352,69469,cat,1432058408 +116352,69469,horrible acting,1432058408 +116362,38061,clever,1440262570 +116362,38061,dark comedy,1440262565 +116362,38061,mystery,1440262578 +116382,260,cult classic,1439697999 +116382,260,interesting,1439698029 +116382,260,Original classic,1439698052 +116411,50,Benicio Del Toro,1278106264 +116411,50,Kevin Spacey,1278106275 +116411,50,twist ending,1278106253 +116411,318,twist ending,1278106421 +116411,1196,music,1278106293 +116411,1196,sci-fi,1278106288 +116411,1196,star wars,1278106302 +116411,1251,Federico Fellini,1278730508 +116411,1251,FILMMAKING,1278730539 +116411,1251,sexy,1278730546 +116411,1251,surreal,1278730518 +116411,1258,ghosts,1278106392 +116411,1258,psychological,1278106379 +116411,1258,Stanley Kubrick,1278106375 +116411,2021,Alicia Witt,1279284338 +116411,2021,David Lynch,1279284327 +116411,2021,Max von Sydow,1279284343 +116411,2021,poor adaption,1279284371 +116411,2021,slow paced,1279284351 +116411,2571,alternate reality,1278106227 +116411,2571,Keanu Reeves,1278106238 +116411,2571,philosophical,1278106218 +116411,2571,sci-fi,1278106214 +116411,2761,animation,1278107007 +116411,2761,based on a book,1278107052 +116411,2761,Brad Bird,1278106981 +116411,2761,classical animation,1278107047 +116411,2761,directorial debut,1278107056 +116411,2761,emotional,1278107075 +116411,2761,giant robots,1278107003 +116411,2761,great script,1278107018 +116411,2761,iraq,1278107070 +116411,2761,Jennifer Aniston,1278107042 +116411,2761,redemption,1278106991 +116411,2761,self-sacrifice,1278107037 +116411,2761,sufficiently explodey to be good,1278107060 +116411,2761,Vin Diesel,1278107044 +116411,2762,ghosts,1278106358 +116411,2762,mindfuck,1278106347 +116411,2762,twist ending,1278106344 +116411,3000,environmental,1278106532 +116411,3000,fantasy,1278106529 +116411,3000,Hayao Miyazaki,1278106523 +116411,3000,surreal,1278106540 +116411,3911,Christopher Guest,1278107375 +116411,3911,comedy,1278107378 +116411,3911,dark comedy,1278107392 +116411,3911,dogs,1278107380 +116411,3911,improvised,1278107384 +116411,3911,mockumentary,1278107371 +116411,4327,Remake of:Seven Samurai (1954),1278106759 +116411,4327,Steve McQueen,1278106747 +116411,4878,alternate timeline,1278107258 +116411,4878,music,1278107236 +116411,4878,philosophy,1278107226 +116411,4878,psychology,1278107228 +116411,4878,surreal,1278107222 +116411,4878,thought-provoking,1278107241 +116411,4878,time travel,1278107219 +116411,4993,ensemble cast,1278106850 +116411,4993,fantasy,1278106837 +116411,4993,Ian McKellen,1278106888 +116411,4993,J. R. R. Tolkein,1278106906 +116411,4993,music,1278106842 +116411,5679,metaphysics,1278106445 +116411,6539,Johnny Depp,1278106598 +116411,6539,Keira Knightley,1278106604 +116411,6539,sword fight,1278106608 +116411,6942,Billy Bob Thornton,1279284186 +116411,6942,christmas,1278106796 +116411,6942,ensemble cast,1278106814 +116411,6942,Keira Knightley,1278106798 +116411,6942,multiple storylines,1278106782 +116411,6942,Nudity (Topless - Notable),1278106805 +116411,6942,Romance,1278106821 +116411,6942,Rowan Atkinson,1278106810 +116411,7827,Jeremy Northam,1278107344 +116411,7827,Lucy Liu,1278107325 +116411,7827,twist ending,1278107320 +116411,7827,Vincenzo Natali,1278107337 +116411,8961,animation,1278107101 +116411,8961,Brad Bird,1278107109 +116411,8961,family,1278107122 +116411,8961,Pixar,1278107118 +116411,8961,self discovery,1278107114 +116411,8961,superhero,1278107096 +116411,31804,great cinematography,1278106182 +116411,46948,Halloween theme,1278106670 +116411,46948,Motion Capture,1278106649 +116411,46948,Stereoscopic 3-D,1278106721 +116411,48394,fantasy,1278106634 +116411,48394,psychology,1278106627 +116411,48394,surreal,1278106621 +116411,48780,Christoper Nolan,1278106571 +116411,48780,dark,1278106588 +116411,48780,twist ending,1278106555 +116411,55280,family affair,1278106936 +116411,55280,I wanted to hug this movie,1278106941 +116411,55280,little town,1278106929 +116411,58559,Batman,1278107294 +116411,58559,Christopher Nolan,1278107305 +116411,58559,Heath Ledger,1278107275 +116411,58559,Michael Caine,1278107274 +116411,58559,psychology,1278107288 +116411,59387,cinematography,1278107164 +116411,59387,fantasy world,1278107170 +116411,59387,imagination,1278107172 +116411,59387,mask,1278107175 +116411,59387,storytelling,1278107199 +116411,59387,surreal,1278107178 +116461,260,science-fiction,1435116519 +116461,260,visual effects,1435116615 +116465,296,must see,1425938050 +116465,296,parody,1425938050 +116465,296,violence,1425938050 +116465,4993,long,1231424868 +116465,6934,monica bellucci,1231405105 +116465,48516,Ben Affleck,1269864133 +116465,48516,Ben Affleck = HORRIBLE MOVIE,1269864128 +116491,1307,meg ryan,1382733765 +116495,260,politics,1436756057 +116495,260,space combat,1436756051 +116495,108760,black comedy,1450967695 +116495,108760,revenge,1450967685 +116495,108760,serial killer,1450967676 +116495,108760,torture,1450967689 +116498,3462,charlie chaplin,1436464041 +116498,3462,classic,1436464041 +116498,3462,mute film,1436464041 +116498,27772,japanese horror,1437689222 +116498,94813,abandoned buildings,1437688624 +116498,94813,monsters,1437688624 +116498,94813,radiation,1437688624 +116550,69,stoner,1387672284 +116550,89347,magic realism,1367033779 +116550,89347,poetry,1367033783 +116550,89347,surreal,1367033786 +116581,260,classic sci-fi,1435167625 +116581,260,space action,1435167641 +116613,22,detective,1368471403 +116613,50,excellent script,1368471358 +116613,208,dark hero,1368471426 +116613,353,dark hero,1368471426 +116613,592,dark hero,1368471426 +116613,593,excellent script,1368471358 +116613,913,noir thriller,1368471343 +116613,1248,noir thriller,1368471343 +116613,1423,easily confused with other movie(s) (title),1366259560 +116613,1617,detective,1368471403 +116613,1620,detective,1368471403 +116613,1704,excellent script,1368471358 +116613,1784,excellent script,1368471358 +116613,2194,excellent script,1368471358 +116613,2571,dark hero,1368471426 +116613,2726,noir thriller,1368471343 +116613,2858,excellent script,1368471358 +116613,3005,detective,1368471403 +116613,4725,creepy,1370247262 +116613,4725,mental hospital,1370247271 +116613,4725,suspense,1370247281 +116613,6874,dark hero,1368471426 +116613,7013,noir thriller,1368471343 +116613,27624,CNN,1367788430 +116613,27624,Gulf War,1367788430 +116613,32707,easily confused with other movie(s) (title),1366264365 +116613,61285,Alec Baldwin,1366476489 +116613,61285,Donald Sutherland,1366476505 +116613,61285,John Frankenheimer,1366476489 +116613,61285,Vietnam War,1366476461 +116613,61406,biography,1369988061 +116613,101237,immigration law,1363148659 +116613,101782,entrapment,1365400588 +116613,101850,courtroom drama,1365530358 +116613,101850,mini-series,1365530479 +116613,101850,murder,1365530358 +116613,101857,social commentary,1365616556 +116613,101964,human rights,1366237335 +116613,101964,racism,1366237335 +116613,101964,Zimbabwe,1366237335 +116613,101969,business,1366266653 +116613,101969,death ray,1366266653 +116613,101969,inventor,1366266653 +116613,101969,PBS,1366266653 +116613,101969,radio,1366266653 +116613,101969,technology,1366266653 +116613,101971,Freddy Krueger,1366267008 +116613,101971,Independent Film,1366267008 +116613,101971,Movie Industry,1366267008 +116613,102028,IMAX,1366518304 +116613,102028,Meryl Streep,1366518275 +116613,102028,polar bear,1366518342 +116613,102033,Dwayne Johnson,1366519637 +116613,102033,Mark Wahlberg,1366519623 +116613,102033,Michael Bay,1366519646 +116613,103277,mini-series,1371957270 +116623,7981,better than the american version,1181071787 +116632,260,action,1443627698 +116632,260,Science Fiction,1443627688 +116653,17,Alan Rickman,1248904999 +116653,17,British,1249500450 +116653,17,chick flick,1248905004 +116653,17,Hugh Grant,1248904954 +116653,17,Kate Winslet,1248904942 +116653,32,Brad Pitt,1249039370 +116653,32,dystopia,1241386161 +116653,32,Post apocalyptic,1241386162 +116653,32,time travel,1241386202 +116653,32,twist ending,1241386156 +116653,47,Brad Pitt,1241617558 +116653,47,Kevin Spacey,1241617561 +116653,47,twist ending,1241617566 +116653,50,Kevin Spacey,1241367773 +116653,50,mindfuck,1241367756 +116653,50,suspense,1241367749 +116653,50,twist ending,1241367763 +116653,85,darwinism,1254590678 +116653,97,disturbing,1241135964 +116653,97,social commentary,1241135973 +116653,111,atmospheric,1241356965 +116653,111,Robert De Niro,1241356949 +116653,186,hugh grant,1291301473 +116653,186,Jeff Goldblum,1291301482 +116653,186,Julianne Moore,1291301479 +116653,186,Robin Williams,1291301477 +116653,218,Drew Barrymore,1279397857 +116653,218,Whoopi Goldberg,1279397862 +116653,223,cynical,1290862317 +116653,223,dialogue driven,1290862319 +116653,223,good dialogue,1290862315 +116653,223,Kevin Smith,1290862322 +116653,235,Bill Murray,1250173909 +116653,235,black and white,1250173809 +116653,235,Johnny Depp,1250173804 +116653,235,Tim Burton,1250173807 +116653,253,Brad Pitt,1241378198 +116653,253,fantasy,1241378206 +116653,253,Kirsten Dunst,1241378196 +116653,253,vampires,1241378202 +116653,288,psychedelic,1241387980 +116653,288,stylized,1241387969 +116653,318,prison escape,1241368570 +116653,357,British,1241378899 +116653,357,chick flick,1241378897 +116653,357,Hugh Grant,1241378897 +116653,444,lesbian,1252263766 +116653,444,Uma Thurman,1252263771 +116653,468,British,1250540910 +116653,468,Hugh Grant,1250541953 +116653,520,hilarious,1241368610 +116653,520,parody,1241368600 +116653,551,atmospheric,1241135789 +116653,551,Tim Burton,1241135778 +116653,588,Disney,1244854200 +116653,588,fairy tale,1244854205 +116653,588,musical,1244854195 +116653,592,atmospheric,1241385465 +116653,592,dark,1241385520 +116653,592,film noir,1241385522 +116653,592,Jack Nicholson,1241385526 +116653,592,stylized,1241385470 +116653,592,superhero,1241385476 +116653,592,Tim Burton,1241385473 +116653,608,black comedy,1241388382 +116653,608,Coen Brothers,1241388432 +116653,714,black and white,1241389207 +116653,714,Johnny Depp,1241389200 +116653,714,melancholy,1241389212 +116653,750,black comedy,1241379871 +116653,750,satire,1241379879 +116653,750,Stanley Kubrick,1241379875 +116653,778,black comedy,1241617615 +116653,778,British,1241617629 +116653,778,heroin,1241617622 +116653,784,black comedy,1241384513 +116653,784,misunderstood,1241384531 +116653,902,Audrey Hepburn,1241389658 +116653,902,bittersweet,1241389666 +116653,912,atmospheric,1241389592 +116653,912,Film Noir,1241389598 +116653,919,classic,1241386469 +116653,919,dreamlike,1241386457 +116653,919,heartwarming,1241386495 +116653,919,musical,1241386461 +116653,924,artificial intelligence,1241269870 +116653,924,meditative,1241269983 +116653,924,Stanley Kubrick,1241269850 +116653,1028,childhood,1241378124 +116653,1028,classic,1241378103 +116653,1028,musical,1241378111 +116653,1032,dreamlike,1241386110 +116653,1032,fairy tale,1241386119 +116653,1032,lewis carroll,1241386116 +116653,1032,surreal,1241386106 +116653,1059,Claire Danes,1252540394 +116653,1059,colourful,1252540409 +116653,1059,Leonardo DiCaprio,1252540396 +116653,1059,shakespeare,1252540401 +116653,1060,Heather Graham,1249323606 +116653,1060,vegas,1249323618 +116653,1060,Vince Vaughn,1249323611 +116653,1080,British,1241388005 +116653,1080,Monty Python,1241388013 +116653,1080,satire,1241388021 +116653,1103,James Dean,1282853272 +116653,1103,Natalie Wood,1282853276 +116653,1136,British,1234742329 +116653,1136,british comedy,1234742340 +116653,1136,Monty Python,1234742317 +116653,1136,satirical,1241135822 +116653,1193,depressing,1241368748 +116653,1193,Jack Nicholson,1241368735 +116653,1193,mental illness,1241368737 +116653,1193,psychology,1241368744 +116653,1203,good dialogue,1241367790 +116653,1203,social commentary,1241367798 +116653,1206,dystopia,1241356109 +116653,1206,satirical,1241356105 +116653,1206,Stanley Kubrick,1241356101 +116653,1206,stylized,1241356108 +116653,1213,dark comedy,1241378731 +116653,1213,good dialogue,1241378765 +116653,1213,mafia,1241378746 +116653,1213,Robert De Niro,1241378723 +116653,1222,2 movies in 1,1241520741 +116653,1222,Briljant opening,1241520715 +116653,1222,indoctrination,1241520665 +116653,1222,Stanley Kubrick,1241520655 +116653,1234,Classic,1245250812 +116653,1234,gambling,1245250823 +116653,1234,great depression,1245250827 +116653,1258,Jack Nicholson,1241135655 +116653,1258,Stanley Kubrick,1241135652 +116653,1263,Christopher Walken,1241379964 +116653,1263,confrontational,1241379954 +116653,1263,Robert De Niro,1241379932 +116653,1263,surreal,1241379941 +116653,1265,Bill Murray,1241378657 +116653,1265,hilarious,1241378696 +116653,1265,time loop,1241378693 +116653,1274,dystopia,1241269514 +116653,1357,piano,1284985726 +116653,1357,rachmaninoff,1284985717 +116653,1377,batman,1255085886 +116653,1377,Christopher Walken,1255085891 +116653,1377,Tim Burton,1255085892 +116653,1391,ensemble cast,1250675053 +116653,1391,funny,1250680011 +116653,1391,Sarah Jessica Parker,1250680521 +116653,1391,Tim Burton,1250675040 +116653,1466,Al Pacino,1248100298 +116653,1466,Johnny Depp,1248100303 +116653,1466,Mafia,1248100307 +116653,1485,father-son relationship,1250724481 +116653,1485,jim carrey,1250695344 +116653,1485,lawyer,1250724476 +116653,1517,hilarious,1241385931 +116653,1517,Mike Myers,1241385877 +116653,1517,parody,1241385896 +116653,1517,Will Ferrell,1241385901 +116653,1527,Bruce Willis,1282868027 +116653,1527,Milla Jovovich,1282868025 +116653,1562,Arnold Schwarzenegger,1251847005 +116653,1562,Batman,1251847010 +116653,1562,George Clooney,1251846999 +116653,1562,one liners,1251847068 +116653,1562,overacting,1251847154 +116653,1562,Uma Thurman,1251847002 +116653,1584,Jodie Foster,1294269466 +116653,1584,religion,1294269462 +116653,1625,David Fincher,1251665305 +116653,1625,Michael Douglas,1251665298 +116653,1625,mindfuck,1251665365 +116653,1625,psychological,1251665307 +116653,1625,Sean Penn,1251665317 +116653,1645,Al Pacino,1279634214 +116653,1645,Charlize Theron,1279634216 +116653,1645,deal with the devil,1279634265 +116653,1653,dystopia,1241388318 +116653,1653,genetic selection,1241388315 +116653,1704,genius,1241619232 +116653,1704,mathematics,1241619224 +116653,1704,Matt Damon,1241619227 +116653,1732,Coen Brothers,1241389927 +116653,1732,dark comedy,1241389930 +116653,1748,atmospheric,1281483443 +116653,1748,dystopia,1281483436 +116653,1748,stylized,1281483446 +116653,1947,gangs,1241356837 +116653,1947,musical,1241356849 +116653,1947,romeo and juliet,1241356844 +116653,2028,cinematography,1241884401 +116653,2028,disturbing,1241883999 +116653,2028,intense,1241884295 +116653,2028,stylized,1241884372 +116653,2028,Tom Hanks,1241884009 +116653,2028,World War II,1241884006 +116653,2125,chick flick,1250337063 +116653,2125,Drew Barrymore,1250337063 +116653,2125,fairy tale,1250337066 +116653,2174,ghosts/afterlife,1241390065 +116653,2174,Tim Burton,1241390022 +116653,2178,Hitchcock,1261961164 +116653,2231,Edward Norton,1241302594 +116653,2231,Matt Damon,1241302601 +116653,2231,poker,1241302599 +116653,2301,Mel Brooks,1250167810 +116653,2301,Roman empire,1250170336 +116653,2301,satire,1250167822 +116653,2301,Spanish Inquisition,1250170349 +116653,2321,Reese Witherspoon,1267970709 +116653,2321,satire,1267970714 +116653,2321,stylized,1267970712 +116653,2329,Edward Norton,1241386020 +116653,2329,Neo-Nazis,1241386024 +116653,2329,thought-provoking,1241386028 +116653,2360,dogme95,1241617488 +116653,2360,speech,1241617500 +116653,2396,British,1249641761 +116653,2396,Gwyneth Paltrow,1249641556 +116653,2396,Period,1249641563 +116653,2396,romance,1249641559 +116653,2502,Jennifer Aniston,1250034330 +116653,2502,satire,1250034327 +116653,2502,workplace,1250034323 +116653,2542,British,1241135877 +116653,2542,poker,1241135890 +116653,2572,chick flick,1267914018 +116653,2572,Heath Ledger,1267914022 +116653,2572,Julia Stiles,1267914024 +116653,2572,shakespeare,1267914026 +116653,2594,mindfuck,1241135686 +116653,2671,Good Romantic Comedies,1241377960 +116653,2671,Hugh Grant,1241377950 +116653,2683,Heather Graham,1241385748 +116653,2683,Hilarious,1241385768 +116653,2683,Mike Myers,1241385744 +116653,2692,alternate endings,1241520582 +116653,2692,artistic,1241520586 +116653,2692,intense,1241520588 +116653,2692,original,1241520597 +116653,2716,Bill Murray,1291304766 +116653,2716,Dan Aykroyd,1291304769 +116653,2805,chick flick,1241378059 +116653,2805,gangsters,1241378075 +116653,2805,Hugh Grant,1241378047 +116653,2858,black comedy,1241386054 +116653,2858,Kevin Spacey,1241386071 +116653,2858,social commentary,1241386074 +116653,2859,musical band:Talking Heads,1251074019 +116653,2908,confrontational,1250907324 +116653,2959,Brad Pitt,1241566415 +116653,2959,Edward Norton,1241566419 +116653,2959,schizophrenia,1241566425 +116653,2959,surreal,1241566421 +116653,2987,animation & live action interact,1252109615 +116653,2987,Christopher Lloyd,1252109325 +116653,2990,james bond,1243797800 +116653,2990,Timothy Dalton,1243797804 +116653,2997,black comedy,1241389955 +116653,2997,mindfuck,1241389997 +116653,2997,surreal,1241389994 +116653,3033,hilarious,1241387239 +116653,3033,parody,1241387241 +116653,3033,spoof,1241387245 +116653,3052,jay and silent bob,1241388447 +116653,3052,Kevin Smith,1241388453 +116653,3052,Matt Damon,1241388446 +116653,3081,Christopher Walken,1241357220 +116653,3081,Dark,1241357224 +116653,3081,fairy tales,1241357244 +116653,3081,Johnny Depp,1241357136 +116653,3081,Tim Burton,1241357138 +116653,3081,visually appealing,1241357233 +116653,3083,Oscar (Best Foreign Language Film),1249664545 +116653,3094,adapted classic novel,1248703790 +116653,3094,Hugh Grant,1248703783 +116653,3105,Psychiatry,1241385537 +116653,3105,Robert De Niro,1241385541 +116653,3160,bleak,1246656168 +116653,3160,multiple storylines,1241135854 +116653,3174,Jim Carrey,1241135835 +116653,3275,crime family,1241385174 +116653,3275,hitmen,1241384992 +116653,3275,Mafia,1241384681 +116653,3301,Bruce Willis,1252180710 +116653,3301,Matthew Perry,1252180704 +116653,3301,mob,1252180732 +116653,3301,Rosanna Arquette,1252180728 +116653,3316,Ben Affleck,1279279709 +116653,3316,Charlize Theron,1279279707 +116653,3316,Nudity (Topless - Notable),1279279715 +116653,3362,Al Pacino,1255086480 +116653,3362,Atmospheric,1255086512 +116653,3362,bank robbery,1255086506 +116653,3362,black comedy,1255086484 +116653,3489,fairy tale,1241388167 +116653,3489,Robin Williams,1241388176 +116653,3569,dogme95,1241378391 +116653,3569,Lars von Trier,1241378394 +116653,3569,social commentary,1241378417 +116653,3618,Woody Allen,1251320021 +116653,3793,mutants,1241386388 +116653,3793,super-hero,1241386369 +116653,3897,bittersweet,1241564937 +116653,3897,nostalgic,1241564933 +116653,3949,depressing,1241368656 +116653,3949,disturbing,1241368675 +116653,3949,independent film,1241368678 +116653,3949,psychology,1241368661 +116653,3949,social commentary,1241368665 +116653,4011,Brad Pitt,1241357127 +116653,4011,british,1241357113 +116653,4011,cynical,1241357120 +116653,4011,Great dialogue,1241357116 +116653,4027,Coen Brothers,1241135718 +116653,4027,George Clooney,1241135716 +116653,4027,great soundtrack,1241135741 +116653,4027,Musical,1241135765 +116653,4226,nonlinear,1241566447 +116653,4226,psychological,1241566471 +116653,4226,stylized,1241566451 +116653,4226,twist ending,1241566450 +116653,4246,British,1249323940 +116653,4246,chick flick,1249323938 +116653,4246,Hugh Grant,1249323946 +116653,4246,romantic comedy,1249323943 +116653,4308,colourful,1241378036 +116653,4308,musical,1241378032 +116653,4308,Nicole Kidman,1241378028 +116653,4308,stylized,1241378034 +116653,4370,artificial intelligence,1257986736 +116653,4370,dystopia,1257986742 +116653,4370,ending kinda ruined it,1257986784 +116653,4370,Jude Law,1257986740 +116653,4370,robots,1257986734 +116653,4370,Steven Spielberg,1257986730 +116653,4447,chick flick,1268777591 +116653,4447,Reese Witherspoon,1268777595 +116653,4643,dystopia,1268390965 +116653,4643,Helena Bonham Carter,1268390977 +116653,4643,post-apocalyptic,1268390970 +116653,4643,Tim Burton,1268390972 +116653,4734,ensemble cast,1250643565 +116653,4734,jay and silent bob,1250643391 +116653,4734,Kevin Smith,1250643389 +116653,4734,parody,1250643400 +116653,4816,ben stiller,1241135493 +116653,4816,Will Ferrell,1241135511 +116653,4848,disturbing,1241377988 +116653,4848,nonlinear,1241378002 +116653,4848,stylized,1241377998 +116653,4848,surreal,1241377996 +116653,4873,blunt existentialism,1241268050 +116653,4873,metaphysics,1241268041 +116653,4873,pseudoscience,1241268039 +116653,4878,pretentious,1241268383 +116653,4886,Pixar,1248769598 +116653,4886,Steve Buscemi,1248769602 +116653,4995,genius,1241385459 +116653,4995,mathematics,1241385345 +116653,4995,mental illness,1241385344 +116653,4995,schizophrenia,1241385340 +116653,5279,Frédéric Chopin,1259499480 +116653,5279,Hugh Grant,1259499434 +116653,5377,british,1244334504 +116653,5377,chick flick,1244334508 +116653,5377,Hugh Grant,1244334499 +116653,5481,hilarious,1241269442 +116653,5481,mike myers,1241269437 +116653,5502,Mel Gibson,1314088604 +116653,5502,ridiculous,1314088566 +116653,5502,silly,1314088568 +116653,5505,Jennifer Aniston,1251651479 +116653,5505,tragicomedy,1251651495 +116653,5505,Zooey Deschanel,1251651482 +116653,5541,Charlie Sheen,1249894773 +116653,5541,parody,1249894777 +116653,5541,spoof,1249894781 +116653,5608,mass behavior,1241379085 +116653,5608,oppression,1241379059 +116653,5608,psychology,1241379049 +116653,5618,beautiful,1241357087 +116653,5618,dreamlike,1241357084 +116653,5618,fairy tale,1241357086 +116653,5620,chick flick,1290285828 +116653,5620,Reese Witherspoon,1290285829 +116653,5632,confrontational,1241356321 +116653,5632,riot,1241356324 +116653,5957,chick flick,1250095272 +116653,5957,Hugh Grant,1250089579 +116653,5957,Sandra Bullock,1250087493 +116653,5991,jazz,1241384398 +116653,5991,musical,1241384402 +116653,5992,AIDS,1254604159 +116653,5992,Julianne Moore,1254604210 +116653,5992,Nicole Kidman,1254604152 +116653,5992,suicide,1254604162 +116653,5995,holocaust,1241617524 +116653,6016,black comedy,1241356245 +116653,6016,gangs,1241356252 +116653,6016,multiple storylines,1241356237 +116653,6016,stylized,1241356241 +116653,6155,chick flick,1249683904 +116653,6155,Kate Hudson,1249677085 +116653,6163,jealousy,1241388211 +116653,6163,obsession,1241388222 +116653,6163,plot twist,1241388270 +116653,6188,college,1251063434 +116653,6188,fraternity,1251063419 +116653,6188,Luke Wilson,1251063397 +116653,6188,Vince Vaughn,1251063385 +116653,6188,Will Ferrell,1251063379 +116653,6287,Jack Nicholson,1241385981 +116653,6333,fantasy,1241386273 +116653,6333,mutants,1241386309 +116653,6333,super-hero,1241386277 +116653,6367,Chick Flick,1248573142 +116653,6367,Ewan McGregor,1248573133 +116653,6367,retro,1248821300 +116653,6373,comedy,1251149502 +116653,6373,god,1251149518 +116653,6373,Jennifer Aniston,1251149500 +116653,6373,Jim Carrey,1251149490 +116653,6373,Morgan Freeman,1251149495 +116653,6373,Steve Carell,1251149507 +116653,6377,animation,1251107012 +116653,6377,Disney,1251106998 +116653,6377,Pixar,1251106999 +116653,6502,British,1291478888 +116653,6502,post-apocalyptic,1291478892 +116653,6502,zombies,1291478899 +116653,6711,atmospheric,1241378144 +116653,6711,Bill Murray,1241378149 +116653,6711,Melancholic,1241378158 +116653,6711,Scarlett Johansson,1241378138 +116653,6754,Dark,1241387137 +116653,6754,nocturnal,1241387128 +116653,6754,vampires,1241387121 +116653,6936,Will Ferrell,1249816043 +116653,6936,Zooey Deschanel,1249816044 +116653,6942,Alan Rickman,1249324021 +116653,6942,british,1249324023 +116653,6942,ensemble cast,1249324048 +116653,6942,Hugh Grant,1249324027 +116653,6942,Keira Knightley,1249324033 +116653,6942,multiple storylines,1249324035 +116653,6942,Nudity (Topless - Notable),1249324039 +116653,7048,Martin Lawrence,1251673920 +116653,7048,Tim Robbins,1251673925 +116653,7147,dreamlike,1241385332 +116653,7147,stylized,1241385322 +116653,7147,surreal,1241385183 +116653,7147,Tim Burton,1241385180 +116653,7235,extremely violent,1241268542 +116653,7256,mountain climbing,1241617580 +116653,7256,scenic,1241617585 +116653,7256,true story,1241617588 +116653,7293,Adam Sandler,1250728904 +116653,7293,Drew Barrymore,1250728905 +116653,7323,maintaining illusion,1241378848 +116653,7325,Ben Stiller,1241357020 +116653,7325,hilarious,1241357063 +116653,7325,Owen Wilson,1241357014 +116653,7325,Will Ferrell,1241357053 +116653,7346,Elisha Cuthbert,1271771219 +116653,7361,Jim Carrey,1241379149 +116653,7361,nonlinear,1241379155 +116653,7361,philosophy,1241379169 +116653,7361,surreal,1241379165 +116653,7380,fairy tale,1250692461 +116653,7380,feel good movie,1250691146 +116653,7380,Minnie Driver,1250688312 +116653,7383,Poker,1293630679 +116653,7419,black comedy,1244415162 +116653,7419,Martin Scorsese,1244415165 +116653,7419,surreal,1244415169 +116653,7454,vampires,1241268879 +116653,7484,music documentary,1241618431 +116653,7484,racism,1241618440 +116653,8360,Cameron Diaz,1241368526 +116653,8360,Dreamworks,1241368523 +116653,8360,fairy tale,1241368500 +116653,8360,hilarious,1241368552 +116653,8360,Mike Myers,1241368505 +116653,8360,parody,1241368514 +116653,8528,Ben Stiller,1241379893 +116653,8528,hilarious,1241379917 +116653,8528,Vince Vaughn,1241379901 +116653,8533,chick flick,1252968143 +116653,8533,CLASS DIFFERENCES,1252967932 +116653,8533,Rachel McAdams,1252967945 +116653,8533,Romance,1252968134 +116653,8588,Heather Graham,1251278641 +116653,8588,Nudity (Full Frontal - Notable),1251278643 +116653,8641,hilarious,1241368376 +116653,8641,Will Ferrell,1241368365 +116653,8874,British,1241387317 +116653,8874,hilarious,1241387315 +116653,8874,parody,1241387313 +116653,8917,satire,1241367614 +116653,8965,Christian,1241267943 +116653,8969,chick flick,1249323913 +116653,8969,Hugh Grant,1249323913 +116653,8970,Johnny Depp,1286654943 +116653,8981,Julia Roberts,1250871696 +116653,8981,Natalie Portman,1250871693 +116653,8981,romance,1250891210 +116653,26680,Johnny Depp,1241381690 +116653,26680,musical,1241381698 +116653,27706,Adventure,1291121145 +116653,27706,jim carrey,1291121176 +116653,27706,Jude Law,1291121211 +116653,27706,meryl streep,1291121218 +116653,27788,Adrien Brody,1250637974 +116653,27788,confusing,1250637999 +116653,27788,Daniel Craig,1250637974 +116653,27788,Keira Knightley,1250637974 +116653,27899,bad science,1249996589 +116653,27899,"bogus ""experts""",1241267012 +116653,27899,New-Age philosophy,1241266992 +116653,27899,pretention,1241266995 +116653,27899,propaganda,1241267005 +116653,27899,pseudoscience,1241267000 +116653,27899,total bollocks,1241266989 +116653,27904,good animation,1241387929 +116653,30793,dark,1241384486 +116653,30793,Johnny Depp,1241384478 +116653,30793,roald dahl,1241384481 +116653,30793,Tim Burton,1241384475 +116653,30803,very little dialogue,1250163128 +116653,31410,Adolf Hitler,1241616509 +116653,31410,disturbing,1241616524 +116653,31410,history,1241616515 +116653,31696,angels,1249323701 +116653,31696,Keanu Reeves,1249323697 +116653,32022,documentary,1291902085 +116653,33004,Alan Rickman,1252080992 +116653,33004,end of the world,1252080937 +116653,33004,Stephen Fry,1252080968 +116653,33004,Zooey Deschanel,1252080938 +116653,33145,Amanda Peet,1289664337 +116653,33145,Ashton Kutcher,1289664339 +116653,33794,atmospheric,1254513786 +116653,33794,batman,1254513775 +116653,33794,dark,1254513779 +116653,33794,super-hero,1254513783 +116653,33903,Exceptional Acting,1241379705 +116653,33903,politics,1241379697 +116653,34162,Christopher Walken,1241356903 +116653,34162,Owen Wilson,1241356895 +116653,34162,Will Ferrell,1241356892 +116653,34319,Ewan McGregor,1291498294 +116653,34319,Scarlett Johansson,1291498296 +116653,35836,comedy,1250555474 +116653,35836,great dialogue,1250555465 +116653,35836,Steve Carell,1250546633 +116653,36401,fairy tale,1236435655 +116653,36401,fairy tales,1241384588 +116653,36401,Matt Damon,1241384592 +116653,36525,Good Romantic Comedies,1249729822 +116653,36525,Reese Witherspoon,1249729822 +116653,37382,fast-cut,1250807489 +116653,37382,Keira Knightley,1250800424 +116653,37382,Lucy Liu,1250807517 +116653,37382,saturated,1250807505 +116653,37382,true story,1250807526 +116653,37386,dystopia,1241268951 +116653,37386,Post apocalyptic,1241268942 +116653,37386,stylized,1241268945 +116653,37729,black comedy,1241383166 +116653,37729,Johnny Depp,1241383127 +116653,37729,stop-motion,1241383182 +116653,37729,Tim Burton,1241383123 +116653,38304,Bob Dylan,1250766191 +116653,38304,folk music,1250766237 +116653,38304,Martin Scorsese,1250766236 +116653,38798,Cameron Diaz,1243798013 +116653,38798,chick flick,1243798018 +116653,40629,19th century,1249323766 +116653,40629,chick flick,1249323759 +116653,40629,Classic,1249323757 +116653,40629,England,1252264656 +116653,40629,Keira Knightley,1249323753 +116653,41025,1930s,1253558854 +116653,41025,Helen Hunt,1253557941 +116653,41025,Scarlett Johansson,1253558844 +116653,42734,fairy tale,1241378504 +116653,42734,nonlinear,1241378490 +116653,42738,vampires,1241270267 +116653,44191,dystopia,1251072376 +116653,44191,freedom of expression,1251072426 +116653,44191,Natalie Portman,1251072397 +116653,44191,thought-provoking,1251072382 +116653,44195,dark comedy,1241390497 +116653,44195,satire,1241390504 +116653,44195,social commentary,1241390516 +116653,44199,Denzel Washington,1249895195 +116653,44199,Willem Dafoe,1249895200 +116653,44761,film noir,1241384612 +116653,44761,stylized,1241384619 +116653,44788,censorship,1291901735 +116653,44788,documentary,1291901723 +116653,44788,movie business,1291901729 +116653,44788,social commentary,1291901724 +116653,45106,Hugh Grant,1280070738 +116653,45499,mutants,1241386362 +116653,45499,superhero,1241386326 +116653,45880,costume drama,1250986662 +116653,45880,Kirsten Dunst,1250986655 +116653,45880,stylized,1250986703 +116653,46578,dark comedy,1250283026 +116653,46578,feel-good,1250283118 +116653,46578,heartwarming,1250283033 +116653,46578,satire,1250283064 +116653,46578,social commentary,1250283086 +116653,46970,nascar,1251641832 +116653,46970,racing,1251641829 +116653,46970,Sacha Baron Cohen,1251641800 +116653,46970,sports,1251641825 +116653,46970,Will Ferrell,1251641799 +116653,46972,Ben Stiller,1260795744 +116653,46972,Owen Wilson,1260795746 +116653,46972,Ricky Gervais,1260795750 +116653,46976,Maggie Gyllenhaal,1250953621 +116653,46976,meta,1250953654 +116653,46976,narrated,1250953661 +116653,46976,quirky romantic,1250953627 +116653,46976,Will Ferrell,1250953625 +116653,47640,beer,1294271529 +116653,47997,dystopia,1241378453 +116653,48043,pretentious,1241267462 +116653,48385,anti-Semitism,1241389796 +116653,48385,satire,1241389734 +116653,48385,social commentary,1241389711 +116653,48394,atmospheric,1241651127 +116653,48394,bittersweet,1241651130 +116653,48394,fairy tale,1241651125 +116653,48394,surreal,1241651135 +116653,48516,atmospheric,1241389192 +116653,48516,gangsters,1241389185 +116653,48516,Jack Nicholson,1241389189 +116653,48516,Matt Damon,1241389168 +116653,48774,atmospheric,1260028604 +116653,48774,Clive Owen,1260028592 +116653,48774,dystopia,1260028589 +116653,48774,Michael Caine,1260028601 +116653,48780,atmospheric,1241368704 +116653,48780,nonlinear,1241368722 +116653,48780,Scarlett Johansson,1241368718 +116653,48780,steampunk,1241368699 +116653,48780,twist ending,1241368709 +116653,49286,Cameron Diaz,1258243832 +116653,49286,Jack Black,1258243841 +116653,49286,Jude Law,1258243836 +116653,49286,Kate Winslet,1258243830 +116653,49286,romantic comedy,1258243851 +116653,50003,B-movie,1243373437 +116653,50229,musical,1241386239 +116653,50445,Sophia Bush,1242220283 +116653,50872,animation,1252272725 +116653,50872,Disney,1252272725 +116653,50872,food/cooking,1252272746 +116653,50872,paris,1252272725 +116653,50872,pixar,1252272725 +116653,50872,rats,1252272732 +116653,50872,talking animals,1252272742 +116653,51084,Definite chick flick,1248552955 +116653,51084,Hugh Grant,1248552513 +116653,51091,Blues,1251118528 +116653,51091,Christina Ricci,1251118462 +116653,51091,Justin Timberlake,1251118467 +116653,51091,Samuel L. Jackson,1251118463 +116653,51471,parliament,1252711860 +116653,51471,political drama,1252711864 +116653,51471,slavery,1252711867 +116653,52245,figure skating,1251134656 +116653,52245,Jenna Fischer,1251134633 +116653,52245,Will Ferrell,1251134598 +116653,52722,Kirsten Dunst,1255730285 +116653,52722,Marvel,1255730271 +116653,52722,supernatural powers,1255730281 +116653,52885,dreamlike,1241387955 +116653,52885,psychedellic,1241387957 +116653,53318,british,1241565672 +116653,53318,insomnia,1241566356 +116653,53318,slackers,1241565676 +116653,53318,surrealism,1241565678 +116653,54259,fairy tale,1241135614 +116653,54259,magic realism,1241135581 +116653,54259,pirates,1241135599 +116653,54272,humorous,1241387254 +116653,54272,simpsons,1241387258 +116653,54331,protagonist is an assassin,1241386260 +116653,54732,Christopher Walken,1241269414 +116653,55052,heartbreaking,1248821213 +116653,55052,Keira Knightley,1248821209 +116653,55052,Period piece,1248821226 +116653,55052,romance,1248821215 +116653,55052,Tragedy,1248821224 +116653,55245,Dane Cook,1252103700 +116653,55245,Jessica Alba,1252103657 +116653,55363,Brad Pitt,1260047920 +116653,55363,western,1260047922 +116653,55553,sheep,1241389853 +116653,55553,Zombies,1241389854 +116653,56171,dogma,1249483586 +116653,56171,fairy tale,1249481786 +116653,56171,fantasy world,1249481760 +116653,56171,magic,1249486860 +116653,56171,Nicole Kidman,1249481775 +116653,56367,Ellen Page,1266184854 +116653,56757,19th century,1241270894 +116653,56757,Depp & Burton,1241270898 +116653,56757,Johnny Depp,1241270905 +116653,56757,Tim Burton,1241270906 +116653,56949,romantic comedy,1290118281 +116653,57274,atmospheric,1279153589 +116653,57274,Foreign,1260028675 +116653,57274,Handycam,1260028686 +116653,57274,horror,1260028681 +116653,57274,zombies,1260028678 +116653,57528,No story line,1241267111 +116653,57528,ridiculous,1241267100 +116653,57534,blindness,1251846926 +116653,57534,Cassandra Complex,1251846948 +116653,57534,horror,1251846906 +116653,57534,Jessica Alba,1251846913 +116653,57534,remake,1251846918 +116653,57534,spirits,1251846922 +116653,57669,dark comedy,1241388122 +116653,57669,hitman,1241388080 +116653,57669,stylized,1241388132 +116653,58025,super hero,1241388056 +116653,58047,divorce,1253569536 +116653,58047,Elizabeth Banks,1253569511 +116653,58047,Isla Fisher,1253569463 +116653,58047,marriage,1253569475 +116653,58047,new york city,1253569482 +116653,58047,Ryan Reynolds,1253569530 +116653,58315,Mike Myers,1249563437 +116653,58559,dark,1241389244 +116653,58559,super hero,1241389226 +116653,58803,gambling,1241269740 +116653,58803,Kevin Spacey,1241269744 +116653,58803,mathematics,1241269748 +116653,58998,Hawaii,1250034169 +116653,58998,Jason Segel,1250034268 +116653,58998,Kristen Bell,1250034275 +116653,59126,atheism,1252452231 +116653,59126,Bill Maher,1252452227 +116653,59126,Documentary,1252452237 +116653,59126,easy targets,1252452333 +116653,59126,fundamentalism,1252452255 +116653,59295,conspiracy theory,1241267069 +116653,59295,creationism,1241267066 +116653,59295,onesided,1241267073 +116653,59295,propaganda,1241267063 +116653,59295,religion,1241267061 +116653,59369,cynical,1242219569 +116653,59369,father daughter relationship,1242219573 +116653,59369,Paris,1242219579 +116653,59421,Ashton Kutcher,1250199354 +116653,59421,Cameron Diaz,1250199356 +116653,59594,dystopia,1250351590 +116653,59594,John Cusack,1250351588 +116653,59725,central event:wedding preparation,1250503188 +116653,59725,chick flick,1250503213 +116653,59725,Sarah Jessica Parker,1250503193 +116653,59725,wedding,1250503201 +116653,59738,Horror,1252967518 +116653,60037,Bad Science,1294097249 +116653,60037,Zooey Deschanel,1294097272 +116653,60069,dystopia,1241386655 +116653,60069,Post apocalyptic,1241386660 +116653,60069,robots,1241386664 +116653,60069,social commentary,1241386662 +116653,60072,assassin,1241386644 +116653,60684,dystopia,1247092965 +116653,60756,will ferrell,1246437501 +116653,60816,discworld,1241389254 +116653,60816,magic,1241389256 +116653,60894,Keira Knightley,1249324184 +116653,60894,wales,1249324195 +116653,60941,Bradley Cooper,1250858781 +116653,60941,Vinnie Jones,1250858776 +116653,61132,Ben Stiller,1241270760 +116653,61132,movie within a movie,1241270715 +116653,61132,parody,1241270710 +116653,61132,satire,1241270703 +116653,61240,love story,1249937962 +116653,61240,vampires,1249935107 +116653,61323,Brad Pitt,1241384560 +116653,61323,dark comedy,1241384564 +116653,61323,satire,1241384569 +116653,61323,stupidity,1241384578 +116653,62113,Kirsten Dunst,1249675040 +116653,62113,Simon Pegg,1249675040 +116653,62250,mafia,1249324594 +116653,62293,18th century,1255385395 +116653,62293,BBC Films,1255385381 +116653,62293,British,1255385380 +116653,62293,Keira Knightley,1255385381 +116653,62434,Elizabeth Banks,1254525135 +116653,62434,Kevin Smith,1254525132 +116653,62434,Sex Comedy,1254525127 +116653,62849,cool dialogues,1246871200 +116653,62849,Guy Ritchie,1246829108 +116653,63072,Charlize Theron,1291499193 +116653,63072,Kodi Smit-McPhee,1291499306 +116653,63072,post-apocalyptic,1291499175 +116653,63072,Viggo Mortensen,1291499298 +116653,63113,Daniel Craig,1255811169 +116653,63131,comedy,1249559435 +116653,63992,Kristen Stewart,1250460335 +116653,63992,Supernatural Power,1250460354 +116653,63992,Vampire Human Love,1250460346 +116653,64957,Brad Pitt,1241265187 +116653,64957,David Fincher,1241265183 +116653,64957,sad,1241265887 +116653,64969,Bradley Cooper,1249328430 +116653,64969,Jim carrey,1249328422 +116653,64969,Zooey Deschanel,1249328424 +116653,65682,vampires,1241270091 +116653,66097,fairy tale,1249654072 +116653,66097,stop motion,1249648316 +116653,66097,Surreal,1249648659 +116653,66200,Gwyneth Paltrow,1251490666 +116653,66200,Joaquin Phoenix,1251490674 +116653,66203,chick flick,1248896374 +116653,66203,Drew Barrymore,1248896379 +116653,66203,romantic comedy,1248896523 +116653,66203,Scarlett Johansson,1248896371 +116653,66614,Bracha van Doesburgh,1250517065 +116653,66934,musical,1241135993 +116653,66934,not a movie,1241566593 +116653,67087,Jason Segel,1250265746 +116653,67087,likeable,1250265758 +116653,67197,pseudoscience,1250373636 +116653,67408,animation,1254514583 +116653,67408,Dreamworks,1254513986 +116653,67408,Hugh Laurie,1254513977 +116653,67788,cute,1279152764 +116653,67788,feel-good,1279152796 +116653,67788,Isla Fisher,1279152738 +116653,68073,60's,1250637661 +116653,68073,Bill Nighy,1250637519 +116653,68073,British,1250637608 +116653,68073,Music,1250637526 +116653,68073,pirate radio,1250637533 +116653,68073,Richard Curtis,1250637500 +116653,68157,Brad Pitt,1251596879 +116653,68157,dialogue,1251596883 +116653,68157,Quentin Tarantino,1251596890 +116653,68205,Amy Smart,1279579485 +116653,68205,fast paced,1279579487 +116653,68319,comic book,1248904837 +116653,68319,Marvel,1248904832 +116653,68319,superhero,1248904833 +116653,68843,British,1248529447 +116653,68843,lesbian,1248529405 +116653,68843,vampires,1248529415 +116653,69122,Las Vegas,1248821152 +116653,69134,beautiful scenery,1269466068 +116653,69134,Lars von Trier,1269466070 +116653,69134,Willem Dafoe,1269466073 +116653,69481,Iraq,1250256514 +116653,69481,Middle East,1250256510 +116653,69481,realistic,1250256499 +116653,69757,chick flick,1269105344 +116653,69757,Zooey Deschanel,1269105347 +116653,69784,Goes after the typical people (southern good ol' boys,1251497463 +116653,69784,mockumentary,1251497469 +116653,69784,Sacha Baron Cohen,1251497470 +116653,69951,deal with the devil,1278275918 +116653,69951,devil,1278275908 +116653,69951,Heath Ledger,1278275835 +116653,69951,Johnny Depp,1278275830 +116653,69951,Jude Law,1278275833 +116653,69951,Lily Cole,1278275914 +116653,69951,surreal,1278275839 +116653,69951,terry gilliam,1278275837 +116653,70599,Rachel McAdams,1288201062 +116653,70599,time travel,1288201060 +116653,71057,dystopia,1290857501 +116653,71057,post-apocalyptic,1290857509 +116653,71057,visually appealing,1290857511 +116653,71579,England,1294758972 +116653,72226,George Clooney,1290965793 +116653,72226,stop motion,1290965796 +116653,72226,Willem Dafoe,1290965800 +116653,72393,bad science,1278625780 +116653,72393,fake documentary,1278625786 +116653,72393,hoax,1278625789 +116653,72393,Milla Jovovich,1278625790 +116653,72919,Hugh Grant,1291056953 +116653,72919,Sarah Jessica Parker,1291056957 +116653,73017,Atmospheric,1273050482 +116653,73017,Guy Ritchie,1273050473 +116653,73017,Jude Law,1273050481 +116653,73017,Rachel McAdams,1273050478 +116653,73017,Robert Downey Jr.,1273050476 +116653,73321,Bible,1282692852 +116653,73321,Christianity,1282692847 +116653,73321,dystopia,1282692775 +116653,73321,post-apocalyptic,1282692857 +116653,73321,Stylistic,1282692842 +116653,73413,road trip,1312915529 +116653,73664,dragons,1317455627 +116653,74458,Leonardo DiCaprio,1292252895 +116653,74458,Martin Scorsese,1292252894 +116653,74789,Alan Rickman,1281184026 +116653,74789,Johnny Depp,1281184015 +116653,74789,Lewis Carroll,1281184051 +116653,74789,Stephen Fry,1281184017 +116653,74789,Tim Burton,1281184014 +116653,74789,visually appealing,1281184019 +116653,77833,Afghanistan,1294355025 +116653,77833,confrontational,1294355059 +116653,77833,war,1294355096 +116653,79132,Ellen Page,1285457184 +116653,79132,visually appealing,1285457198 +116653,79702,Michael Cera,1291897041 +116653,79702,stylized,1291897044 +116653,79702,video games,1291897048 +116653,79702,visually appealing,1291897051 +116663,2525,animal attack,1371404443 +116663,2525,jaws rip-off,1371404476 +116664,1944,Oscar (Best Directing),1203076493 +116670,296,dark comedy,1369985891 +116728,120392,magic realism,1425105498 +116728,120392,romantic,1425105498 +116728,120392,talky,1425105498 +116777,26178,kubrick,1137562791 +116783,47,credits,1241406614 +116783,47,Kevin Spacey,1241406598 +116783,47,Morgan Freeman,1241406591 +116783,47,predictable,1241406584 +116783,50,Crime,1241291171 +116783,50,ensemble cast,1241291151 +116783,50,great ending,1241291141 +116783,50,heist,1241291144 +116783,50,Kevin Spacey,1241291141 +116783,50,organized crime,1241291176 +116783,50,suspense,1241291138 +116783,50,twist ending,1241291135 +116783,58,poetry,1176057192 +116783,215,conversation,1241194530 +116783,246,high school,1188250056 +116783,246,NBA,1188250070 +116783,260,aliens,1241291491 +116783,260,family movie,1241291820 +116783,260,good versus evil,1241291644 +116783,260,heroic journey,1241291543 +116783,260,joseph campbell's study of mythology influenced,1241291815 +116783,260,quotable,1241291436 +116783,260,robots,1241291446 +116783,260,sci-fi,1241291467 +116783,260,space,1241291463 +116783,296,Bruce Willis,1241484940 +116783,296,crime,1241484944 +116783,296,drugs,1241484951 +116783,296,gratuitous cursing,1241485026 +116783,296,multiple storylines,1241484930 +116783,296,nonlinear,1241484953 +116783,296,notable soundtrack,1241484932 +116783,296,Quentin Tarantino,1241484956 +116783,296,Samuel L. Jackson,1241484959 +116783,296,violence,1241484936 +116783,368,gambling,1171033588 +116783,368,poker,1171033588 +116783,541,adapted from:book,1242234506 +116783,541,androids,1242234509 +116783,541,based on a book,1242234512 +116783,541,dystopia,1242234519 +116783,541,existentialism,1242234523 +116783,541,future,1242234526 +116783,541,Philip K. Dick,1242234499 +116783,541,sci-fi,1242234501 +116783,541,stylized,1242234503 +116783,735,adaptation,1163796992 +116783,735,zombies,1163796992 +116783,904,Alfred Hitchcock,1241291727 +116783,904,claustrophobic,1241291722 +116783,904,Grace Kelly,1241291686 +116783,904,James Stewart,1241291676 +116783,904,obsession,1241291716 +116783,904,photographer,1241291709 +116783,904,tense,1241291697 +116783,904,Thelma Ritter,1241291694 +116783,904,thriller,1241291700 +116783,904,voyeurism,1241291702 +116783,910,black and white,1241291333 +116783,910,costumes,1241291894 +116783,910,farce,1241291335 +116783,910,great last line,1241291909 +116783,910,jazz,1241291918 +116783,910,Marilyn Monroe,1241291342 +116783,910,men in drag,1241291344 +116783,910,organized crime,1241291346 +116783,910,Quotable,1241291880 +116783,910,romantic comedy,1241291358 +116783,912,Humphrey Bogart,1241316138 +116783,912,nazi villains,1241316161 +116783,912,quotable,1241316123 +116783,919,based on a book,1241291043 +116783,919,dreamlike,1241291081 +116783,919,fantasy,1241291055 +116783,919,heartwarming,1241291085 +116783,919,Highly quotable,1241291089 +116783,919,witches,1241291067 +116783,923,Amazing Cinematography,1242234174 +116783,923,atmospheric,1242234176 +116783,923,Biography,1242234180 +116783,923,biopic,1242234178 +116783,923,enigmatic,1242234183 +116783,923,Highly quotable,1242234185 +116783,923,mystery,1242234188 +116783,923,Orson Welles,1242234190 +116783,923,poignant,1242234193 +116783,923,Rosebud,1242234204 +116783,953,alternate universe,1241315419 +116783,953,angels,1241315408 +116783,953,inspirational,1241315352 +116783,953,James Stewart,1241315346 +116783,953,propaganda,1241315390 +116783,953,World War II,1241315374 +116783,953,zuzu's petals,1241315399 +116783,1150,courtroom drama,1241484790 +116783,1150,Gerard Depardieu,1241587836 +116783,1150,identity,1241484804 +116783,1150,medieval,1241484774 +116783,1173,dark comedy,1242234149 +116783,1173,lavish,1242234153 +116783,1173,LOVERS ON THE LAM,1242234156 +116783,1173,Peter Greenaway,1242234162 +116783,1173,sexual,1242234167 +116783,1173,stylized,1242234164 +116783,1198,action,1241291776 +116783,1198,archaeology,1241291603 +116783,1198,biblical,1241291607 +116783,1198,good versus evil,1241291611 +116783,1198,Harrison Ford,1241291587 +116783,1198,homage,1241291780 +116783,1198,indiana jones,1241485331 +116783,1198,nazi villains,1241485353 +116783,1198,Quotable,1241291595 +116783,1198,World War II,1241291597 +116783,1199,black comedy,1241476464 +116783,1199,dreamlike,1241476468 +116783,1199,dystopia,1241476471 +116783,1199,quirky,1241476481 +116783,1199,satire,1241485621 +116783,1199,sci-fi,1241476473 +116783,1199,Terry Gilliam,1241476487 +116783,1199,thought-provoking,1241476476 +116783,1204,atmospheric,1242233812 +116783,1204,based on true story,1242233836 +116783,1204,Biography,1242233814 +116783,1204,Biopic,1242233845 +116783,1204,cinematography,1242233879 +116783,1204,epic,1242233817 +116783,1204,History,1242233825 +116783,1204,Middle East,1242233827 +116783,1204,Peter O'Toole,1242233854 +116783,1204,War,1242233864 +116783,1204,World War I,1242233830 +116783,1207,adapted from:book,1241291200 +116783,1207,atmospheric,1241291203 +116783,1207,bittersweet,1241291209 +116783,1207,Brock Peters,1241291281 +116783,1207,courtroom drama,1241291231 +116783,1207,faithful to book,1241315529 +116783,1207,Gregory Peck,1241291261 +116783,1207,lawyer,1241291214 +116783,1207,morality,1241291290 +116783,1207,nostalgic,1241291219 +116783,1207,race issues,1241291185 +116783,1207,racism,1241291190 +116783,1207,Robert Duvall,1241291266 +116783,1209,atmospheric,1241485057 +116783,1209,elegiac,1241587885 +116783,1209,morricone score,1241587868 +116783,1209,sweeping,1241485044 +116783,1209,western,1241485051 +116783,1234,confidence game,1241194674 +116783,1234,gambling,1241194675 +116783,1234,Paul Newman,1241484705 +116783,1234,poker,1170545337 +116783,1234,Robert Redford,1241484707 +116783,1234,scam,1241484709 +116783,1261,zombies,1241194560 +116783,1262,WWII,1137353884 +116783,1267,Angela Lansbury,1241315180 +116783,1267,assassination,1241315156 +116783,1267,Cold War,1241315131 +116783,1267,Communism,1241315196 +116783,1267,Frank Sinatra,1241315189 +116783,1267,good acting,1241315141 +116783,1267,mind control,1241315171 +116783,1267,thriller,1241315148 +116783,1272,WWII,1137353881 +116783,1278,Best Performance: Gene Wilder as Dr. Frederick Frankenstein,1242234761 +116783,1278,black and white,1242234763 +116783,1278,comedy,1242234846 +116783,1278,farce,1242234768 +116783,1278,Gene Wilder,1242234810 +116783,1278,Madeline Kahn,1242234834 +116783,1278,Marty Feldman,1242234834 +116783,1278,Mel Brooks,1242234772 +116783,1278,monster,1242234798 +116783,1278,parody,1242234776 +116783,1278,Peter Boyle,1242234834 +116783,1278,Quotable,1242234780 +116783,1278,spoof,1242234785 +116783,1281,Adolf Hitler,1242233953 +116783,1281,amnesia,1242233955 +116783,1281,anti-war,1242233962 +116783,1281,black and white,1242233959 +116783,1281,Charlie Chaplin,1242233937 +116783,1281,Nazi Germany,1242233970 +116783,1281,political,1242233978 +116783,1281,propaganda,1242233944 +116783,1281,satire,1242233946 +116783,1281,World War II,1242233948 +116783,1292,Best Performance: Peter Sellers as Chance the Gardener,1242234550 +116783,1292,Peter Sellers,1242234560 +116783,1292,political satire,1242234562 +116783,1292,satire,1242234564 +116783,1394,comedy,1241484840 +116783,1394,deadpan,1241484846 +116783,1394,Holly Hunter,1241484888 +116783,1394,kidnapping,1241484898 +116783,1394,Nicolas Cage,1241484857 +116783,1394,quirky,1241484863 +116783,1927,anti-war,1242234634 +116783,1927,based on a book,1242234599 +116783,1927,literary adaptation,1242234605 +116783,1927,war,1242234613 +116783,1927,World War I,1242234608 +116783,1942,Good Book Bad Movie,1241194525 +116783,1942,Political,1142626558 +116783,1942,Politics,1142626503 +116783,2019,Amazing Cinematography,1241291554 +116783,2019,atmospheric,1241291558 +116783,2019,samurai,1241291562 +116783,2019,toshiro mifune,1241291571 +116783,2117,dystopia,1241193611 +116783,2117,George Orwell,1241193614 +116783,2128,heist,1241194662 +116783,2171,date movie,1241194634 +116783,2171,great soundtrack,1241194634 +116783,2176,Gay Lead Character,1202186943 +116783,2176,long takes,1241194660 +116783,2176,murder,1202186955 +116783,2300,Broadway,1241316045 +116783,2300,fraud,1241316051 +116783,2351,affectionate,1242233631 +116783,2351,Best Performance: Giulietta Masina as Cabria,1242233650 +116783,2351,bittersweet,1242233636 +116783,2351,compassionate,1242233638 +116783,2351,Federico Fellini,1242233654 +116783,2351,Giulietta Masina,1242233665 +116783,2351,H with an H of G,1242233679 +116783,2351,PROSTITUTES,1242233645 +116783,2357,Brazil,1242234317 +116783,2357,compassionate,1242234319 +116783,2357,heartwarming,1242234322 +116783,2357,letters,1242234324 +116783,2357,Rio de Janeiro,1242234326 +116783,2357,South America,1242234332 +116783,2357,UNLIKELY FRIENDSHIPS,1242234329 +116783,2442,biopic,1241194581 +116783,2442,classical music,1241194585 +116783,2442,music,1241194583 +116783,2731,childhood,1242234694 +116783,2731,France,1242234655 +116783,2731,Francois Truffaut,1242234658 +116783,2731,lyrical,1242234679 +116783,2731,new wave,1242234685 +116783,2731,Paris,1242234663 +116783,2731,reflective,1242234691 +116783,2731,runaway,1242234669 +116783,2935,farce,1241194610 +116783,2935,screwball,1241194609 +116783,2968,don't touch it it's evil,1169154785 +116783,3030,Akira Kurosawa,1242234854 +116783,3030,samurai,1242234890 +116783,3030,sword fighting,1242234894 +116783,3030,tense,1242234898 +116783,3030,Toshiro Mifune,1242234861 +116783,3093,H with an H of G,1138038878 +116783,3134,Erich von Stroheim,1242234055 +116783,3134,lyrical,1242234005 +116783,3134,prison escape,1242234032 +116783,3134,prisoners of war,1242234032 +116783,3134,war,1242234038 +116783,3134,World War I,1242234016 +116783,3181,adapted from:play,1241484664 +116783,3181,Alan Cumming,1241484673 +116783,3181,anachronistic,1241484673 +116783,3181,Julie Taymor,1241484657 +116783,3181,Shakespeare,1241484652 +116783,3181,visually appealing,1241484655 +116783,3224,based on a book,1241290953 +116783,3224,desert,1241290957 +116783,3224,haunting,1241290959 +116783,3224,metaphor,1241290987 +116783,3224,sand,1241290990 +116783,3224,TRAPPED OR CONFINED,1241290998 +116783,3289,bureaucracy,1242233560 +116783,3289,childhood,1242233562 +116783,3289,China,1242233565 +116783,3289,great performance by young actor,1242233617 +116783,3289,moving,1242233623 +116783,3289,rural,1242233570 +116783,3289,school,1242233580 +116783,3289,shy person,1242233583 +116783,3289,teacher,1242233586 +116783,3360,basketball,1158595204 +116783,3360,David and Goliath,1241194593 +116783,3360,sports,1158595211 +116783,3435,dialogue,1241476450 +116783,3435,film noir,1241315721 +116783,3435,fraud,1241315770 +116783,3435,murder,1241315817 +116783,3435,snappy dialog,1241315744 +116783,3504,great writing,1241315063 +116783,3504,i'm as mad as hell and i'm not going to take it any more,1241315111 +116783,3504,journalism,1241315029 +116783,3504,Peter Finch,1241315052 +116783,3504,satire,1241484618 +116783,3504,television,1241315038 +116783,3504,The Media,1241476432 +116783,3555,war,1137353853 +116783,3555,WWII,1137353847 +116783,3606,New York City,1347745827 +116783,3608,adapted from:TV series,1293821549 +116783,3608,great chase scenes,1293821604 +116783,3608,quest,1293821573 +116783,3700,aliens,1242234343 +116783,3700,black comedy,1242234346 +116783,3700,BOUNTY HUNTERS,1242234401 +116783,3700,drugs,1242234415 +116783,3700,Joe Morton,1242234348 +116783,3700,John Sayles,1242234360 +116783,3700,metaphor,1242234392 +116783,3700,New York City,1242234368 +116783,3700,race issues,1242234392 +116783,3700,speechless,1242234443 +116783,3905,mockumentary,1293821211 +116783,3996,amazing photography,1241315678 +116783,3996,china,1241315682 +116783,3996,Kick-Butt Women,1241315666 +116783,3996,martial arts,1241315671 +116783,3996,sword fighting,1241485579 +116783,3996,wuxia,1241485577 +116783,4037,con men,1242233890 +116783,4037,confidence game,1242233904 +116783,4037,David Mamet,1242233892 +116783,4037,poker,1170545267 +116783,4037,twists & turns,1242233924 +116783,4152,costume drama,1193084815 +116783,4152,France,1193084833 +116783,4152,Louis XIV,1193084833 +116783,4226,backwards,1242233800 +116783,4226,investigation,1242233772 +116783,4226,memory,1242233770 +116783,4226,mystery,1242233765 +116783,4226,nonlinear,1242233767 +116783,4226,psychological,1242233763 +116783,4226,short-term memory loss,1242233757 +116783,4226,stylized,1242233760 +116783,4226,tense,1242233780 +116783,4226,twist ending,1242233755 +116783,4848,Atmospheric,1242233695 +116783,4848,David Lynch,1242233693 +116783,4848,disturbing,1242233697 +116783,4848,dreamlike,1242233701 +116783,4848,hallucinatory,1242233705 +116783,4848,lesbian,1242233732 +116783,4848,Los Angeles,1242233736 +116783,4848,movie business,1242233709 +116783,4848,nonlinear,1242233711 +116783,4848,scary,1242233720 +116783,4848,stylized,1242233714 +116783,4848,surreal,1242233716 +116783,4873,dreams,1241194702 +116783,4914,deadpan,1242234475 +116783,4914,French New Wave,1242234453 +116783,4914,Jean-Luc Godard,1242234455 +116783,4914,LOVERS ON THE LAM,1242234462 +116783,4914,Neo-Noir,1242234466 +116783,4914,Paris,1242234490 +116783,4925,Spoof,1151595575 +116783,4941,great soundtrack,1241194563 +116783,4941,space opera,1241194563 +116783,4993,faithful to book,1241315272 +116783,4993,fantasy,1241315227 +116783,4993,good versus evil,1241315230 +116783,4993,high fantasy,1241315257 +116783,4993,joseph campbell's study of mythology influenced,1241315285 +116783,4993,magic,1241315245 +116783,5026,18th century,1244728499 +116783,5026,atmospheric,1244728459 +116783,5026,Beast Of Gévaudan,1244728461 +116783,5026,courtesan,1244728464 +116783,5026,lavish,1244728481 +116783,5026,martial arts,1244728469 +116783,5026,Monster movie,1244728509 +116783,5026,stylized,1244728473 +116783,5026,wuxia,1244728491 +116783,5299,RomCom,1149626135 +116783,5380,adaptation,1158763525 +116783,5380,Oscar Wilde,1158763525 +116783,5380,play adaptation,1158763526 +116783,5470,adaptation,1158763539 +116783,5470,Oscar Wilde,1158763529 +116783,5470,play adaptation,1158763539 +116783,5602,caper movie,1241194613 +116783,5602,Ealing,1241194614 +116783,5618,dreamlike,1241186053 +116783,5618,fantasy,1241186058 +116783,5937,Allegory,1241195038 +116783,5937,Biography,1241195010 +116783,5937,France,1193085139 +116783,5937,French Revolution,1193085154 +116783,5937,Gérard Depardieu,1241194995 +116783,5937,History,1241195026 +116783,5937,passionate,1241195000 +116783,5991,adapted from B'way,1242234259 +116783,5991,based on a play,1242234261 +116783,5991,courtroom,1242234266 +116783,5991,jazz,1242234268 +116783,5991,murder,1242234270 +116783,5991,musical,1242234272 +116783,5991,prison,1242234276 +116783,5991,stylized,1242234289 +116783,6533,espionage,1246499062 +116783,6533,great chase scenes,1246499049 +116783,6533,heist,1246499125 +116783,6533,San Francisco,1246499012 +116783,6533,Screwball Comedy,1246498980 +116783,6533,subgenre:screwball,1246498953 +116783,6539,pirates,1241194653 +116783,6618,soccer,1148396064 +116783,6641,immigration,1299623756 +116783,6641,nonlinear,1299623747 +116783,6669,Akira Kurosawa,1241315440 +116783,6669,cathartic,1241315466 +116783,6669,lyrical,1241315452 +116783,6669,meaning of life,1241315478 +116783,6669,philosophical,1241315513 +116783,6669,poignant,1241315454 +116783,6669,purposefulness,1241315444 +116783,6669,terminal illness,1241315448 +116783,6755,JFK,1181610616 +116783,6863,rock and roll,1241194664 +116783,6971,1940's,1241476500 +116783,6971,atmospheric,1241476502 +116783,6971,dreamlike,1241476504 +116783,6971,Germany,1241476516 +116783,6971,Lars von Trier,1241476564 +116783,6971,stylized,1241476526 +116783,6971,trains,1241476506 +116783,6971,World War II,1241476508 +116783,6985,Best Performance: Maria Falconetti as Joan of Arc,1241315953 +116783,6985,forceful,1241315607 +116783,6985,French,1241315609 +116783,6985,historical,1241315893 +116783,6985,new score,1241485449 +116783,6985,passionate,1241315606 +116783,6985,restored,1241315901 +116783,6985,saint,1241315606 +116783,6985,silent,1241315940 +116783,7367,caper movie,1154375420 +116783,7367,Remake,1241194616 +116783,7371,austere,1242234077 +116783,7371,breathtaking,1242234079 +116783,7371,cult film,1242234125 +116783,7371,disturbing,1242234081 +116783,7371,drama,1242234083 +116783,7371,James Caan,1242234102 +116783,7371,Lars von Trier,1242234086 +116783,7371,narrated,1242234136 +116783,7371,Nicole Kidman,1242234088 +116783,7371,philosophy,1242234116 +116783,7371,political,1242234074 +116783,7371,small towns,1242234092 +116783,7371,social control,1242234093 +116783,7579,adaptation,1158764729 +116783,7579,Jane Austen,1158764720 +116783,7802,1970s,1244729177 +116783,7802,Coney Island,1244729165 +116783,7802,gangs,1244729126 +116783,7802,gritty,1244729138 +116783,7802,New York City,1244729149 +116783,7802,tense,1244729129 +116783,7802,The Bronx,1244729165 +116783,8633,Early CGI,1168371404 +116783,8636,superhero,1181572710 +116783,8638,Paris,1184104273 +116783,8807,Buddy movie,1241194575 +116783,8807,race issues,1241194576 +116783,8807,road trip,1241194577 +116783,8874,Zombies,1241194667 +116783,8910,detective,1190580851 +116783,8910,existentialism,1190580851 +116783,8910,philosophy,1190580851 +116783,8972,secret societies,1159562824 +116783,8981,divorce,1150301194 +116783,8981,play adaptation,1150301268 +116783,26479,Gilbert & Sullivan,1181076366 +116783,26479,operetta,1181076366 +116783,32300,spies,1241194552 +116783,32300,spying,1241194553 +116783,35836,funny,1242234719 +116783,35836,geeks,1242234720 +116783,35836,great dialogue,1242234722 +116783,35836,Judd Apatow,1242234724 +116783,35836,Los Angeles,1242234726 +116783,35836,salespeople,1242234738 +116783,35836,sex comedy,1241194521 +116783,35836,Steve Carell,1242234733 +116783,35836,supporting characters,1242234752 +116783,35836,virginity,1242234735 +116783,39869,Slavery,1158607884 +116783,40629,adaptation,1158764712 +116783,40629,Jane Austen,1158764698 +116783,42718,dystopia,1219348461 +116783,42718,setting:Paris,1219348449 +116783,43460,Adaptation,1156175004 +116783,44195,politics,1241194688 +116783,45635,BDSM,1241194638 +116783,45635,Biopic,1241194641 +116783,45635,Bondage,1241194637 +116783,46974,9/11,1159972819 +116783,47610,stage magic,1241194601 +116783,48394,great villain,1241194646 +116783,48696,adultery,1194141384 +116783,52722,sequel,1181572749 +116783,52975,cameo: John Waters,1219348412 +116783,52975,civil rights,1241194573 +116783,53125,pirates,1241194652 +116783,53972,hackers,1183651316 +116783,54503,buddie movie,1241194679 +116783,54503,high school,1201475888 +116783,54503,HIGH SCHOOL LIFE,1201475905 +116783,54503,highschool,1201475913 +116783,54503,virginity,1201475865 +116783,55856,fairy tale,1293821969 +116783,55856,fantasy,1293821980 +116783,55856,stylized animation,1293821986 +116783,56171,adaptation,1199242893 +116783,56171,witches,1199242908 +116783,56757,cannibalism,1204067160 +116783,56757,gothic,1204067199 +116783,56757,setting:London,1204067208 +116783,60684,adapted from:comic,1241185219 +116783,60684,author:Alan Moore,1241185206 +116783,60684,comics,1241185204 +116783,60684,When bad movies happen to good comics,1241185263 +116783,61323,stupid criminals,1241194534 +116783,62434,Amateur Porn,1241195192 +116783,62434,Bechdel Test:Fail,1241195491 +116783,62434,Elizabeth Banks,1241195176 +116783,62434,Kevin Smith,1241195163 +116783,62434,plot:romance during porno shoot,1241195207 +116783,62434,Seth Rogen,1241195173 +116783,62434,Sex Comedy,1241195185 +116783,63113,007 (series),1241195048 +116783,63113,Daniel Craig,1241195053 +116783,63113,James Bond,1241195056 +116783,63113,Judi Dench,1241195060 +116783,63113,SequelTo:Casino Royale[2006],1241195080 +116783,63113,vengeance,1241195075 +116783,65577,adaptation,1241195615 +116783,65577,animation,1241195572 +116783,65577,betrayal,1241195575 +116783,65577,Boldo,1241195668 +116783,65577,mice,1241195572 +116783,65577,plucky hero,1241195570 +116783,65577,rats,1241195576 +116783,65577,too many notes,1241195575 +116783,67408,alien invasion,1241194859 +116783,67408,all the best parts are in the trailer,1241194859 +116783,67408,animation,1241194859 +116783,67408,monsters,1241194859 +116783,67408,snarky,1241194859 +116783,68237,cloning,1293821875 +116783,68237,twist ending,1293821866 +116783,74553,animation,1282737734 +116783,74553,fantasy,1282737707 +116783,74553,Ireland,1282737530 +116783,74553,magic,1282737540 +116783,74553,medieval,1282737539 +116783,74553,monks,1282737559 +116783,74553,stylized,1282737575 +116783,74553,vikings,1282737615 +116783,74791,whimsical,1293821522 +116783,76077,1980s,1293821433 +116783,82169,Christian allegory,1293820709 +116783,82169,dragons,1293820780 +116783,82169,sword and sorcery,1293820799 +116783,82169,talking animals,1293820752 +116783,84944,cowboys,1299623216 +116783,84944,hallucinatory,1299623206 +116783,84944,spaghetti western,1299623284 +116797,3421,Overrated,1171482577 +116798,1,animation,1213364079 +116798,1,disney,1213364083 +116798,2355,animation,1213364540 +116798,2355,Disney,1213364538 +116798,2355,Pixar,1213364542 +116798,6956,high school life,1213435287 +116798,6956,HSNU,1213435275 +116798,6956,Taiwan,1213435278 +116798,8529,Krakozhia,1213379750 +116798,43930,fortune,1213379246 +116798,43930,kiss,1213379227 +116798,43930,Lindsay Lohan,1213379237 +116798,54780,anthropology,1213379180 +116798,55245,not good for youth,1213378845 +116798,55732,adoption,1213462573 +116798,55732,children,1213462526 +116798,55732,psychology,1213462546 +116798,58293,bad for history-sense,1213379280 +116812,318,hope,1436472546 +116812,318,prison escape,1436472546 +116812,318,spiritual,1436472546 +116812,45503,meditation,1436472610 +116812,45503,spiritual,1436472677 +116854,1732,Coen Brothers,1290309791 +116860,1060,vegas,1189406972 +116868,6377,Disney,1139524482 +116869,590,historical,1428261626 +116869,590,Visually stunning,1428261609 +116869,1527,dystopia,1428261560 +116869,1527,humorous,1428261584 +116869,1527,Luc Besson,1428261554 +116869,1527,visually appealing,1428261546 +116869,1676,Robert Heinlein,1428261519 +116869,1676,satire,1428261468 +116869,1676,space,1428261528 +116873,1198,adventure,1299758963 +116873,1198,atmospheric,1299758966 +116873,2571,alternate reality,1299759008 +116873,2571,cyberpunk,1299759010 +116873,2571,stylized,1299759003 +116873,2571,virtual reality,1299759001 +116873,4306,animation,1299795415 +116873,5618,adventure,1299758915 +116873,5618,animation,1299758917 +116873,5618,dreamlike,1299758920 +116873,5618,fairy tale,1299758921 +116873,5618,fantasy,1299758911 +116873,5618,Hayao Miyazaki,1299758909 +116873,5952,fantasy,1299759015 +116873,5952,high fantasy,1299759013 +116873,6952,asylum,1300970856 +116873,6952,Psychological horror,1300970858 +116873,6952,Robert Downey Jr.,1300970851 +116873,8360,Eddie Murphy,1299795428 +116873,8360,Mike Myers,1299795432 +116873,8360,parody,1299795436 +116873,8961,Adventure,1299758593 +116873,8961,animation,1299758589 +116873,38038,Aardman,1299758889 +116873,38038,british,1299758903 +116873,38038,claymation,1299758893 +116873,38038,comedy,1299758894 +116873,38038,quirky,1299758896 +116873,41566,adventure,1299758711 +116873,41566,christianity,1299758703 +116873,41566,fantasy,1299758707 +116873,41566,Fantasy World,1299758706 +116873,41566,magic,1299758722 +116873,41566,mythology,1299758717 +116873,47610,Paul Giamatti,1300997416 +116873,47610,twist ending,1300997407 +116873,48780,atmospheric,1299758993 +116873,48780,magic,1299758992 +116873,48780,steampunk,1299758990 +116873,52328,horror story,1302722147 +116873,57640,beautiful effects,1318537115 +116873,59501,adventure,1299758667 +116873,59501,Caspian's accent,1299758653 +116873,59501,fantasy,1299758670 +116873,59501,not true to the book,1299758658 +116873,66934,anti-hero,1305138544 +116873,66934,good dialogue,1305138541 +116873,66934,musical,1305138534 +116873,71535,funny,1299758830 +116873,71535,zombies,1299758834 +116873,72737,2D animation,1319666124 +116873,72737,music,1319666110 +116873,74458,insanity,1299758956 +116873,74458,plot twist,1299758935 +116873,74458,too long,1299758948 +116873,74458,twist ending,1299758941 +116873,74789,dissapointing,1300664973 +116873,74789,Helena Bonham Carter,1300664969 +116873,74789,not true to the book,1300665029 +116873,76093,soundtrack,1302777003 +116873,79293,bad ending,1319658973 +116873,79293,unrealistic,1319658977 +116873,81847,animated animal:chameleon,1299795561 +116873,81847,singing,1299795535 +116873,81847,Zachary Levi,1299795527 +116873,82461,visually appealing,1302120893 +116873,90866,Asa Butterfield,1330552210 +116873,91529,Michael Caine,1343895002 +116895,318,great soundtrack,1453977620 +116895,527,great soundtrack,1453977727 +116895,79132,Christopher Nolan,1453977556 +116895,79132,great soundtrack,1453977559 +116895,79132,Leonardo DiCaprio,1453977549 +116895,80463,great soundtrack,1453977798 +116895,80463,trent reznor,1453977789 +116895,112556,great soundtrack,1453977838 +116895,112556,trent reznor,1453977824 +116895,116797,Benedict Cumberbatch,1453977761 +116895,116797,great soundtrack,1453977756 +116895,116797,mathematics,1453977744 +116895,139644,tension,1453977510 +116921,111,Classic,1143045300 +116921,111,cult film,1143045295 +116921,1945,classic performance,1143045605 +116921,4226,special,1143045147 +116921,4848,Breathtaking,1143044719 +116921,4878,my favourite,1143044672 +116921,7361,beautiful,1143044680 +116921,7361,brilliant,1143044678 +116921,41997,flawed but worthwhile,1143044746 +116928,2167,vampires,1152062947 +116938,260,Science Fiction,1444721709 +116938,260,special effects,1444721718 +116941,515,Butler,1139151362 +116941,515,Emma Thompson,1144920485 +116941,515,excellent,1144920485 +116941,2436,World War II,1139151630 +116942,50,boring,1269421522 +116942,50,twist ending,1269421487 +116942,1089,boring,1269422838 +116942,2571,alternate reality,1269421388 +116942,2571,boring,1269422886 +116942,2571,dystopia,1269421404 +116942,2571,martial arts,1269421398 +116942,2571,useless use of violence,1269421459 +116942,6711,nothing happens,1269421559 +116958,47,psychology,1271779397 +116958,47,twist ending,1241251612 +116958,47,twists & turns,1241251614 +116958,50,heist,1271779295 +116958,50,twist ending,1271779296 +116958,110,action,1271780340 +116958,110,bravery,1271780351 +116958,110,Mel Gibson,1271780338 +116958,163,Antonio Banderas,1271780828 +116958,165,action,1241252268 +116958,165,Samuel L. Jackson,1241252264 +116958,293,Action,1271780154 +116958,293,assassin,1271780156 +116958,293,imdb top 250,1271780159 +116958,293,Jean Reno,1271780172 +116958,293,Luc Besson,1271780172 +116958,296,action,1271780611 +116958,296,dark comedy,1271780609 +116958,296,Quentin Tarantino,1271780607 +116958,356,psychology,1271780777 +116958,356,Tom Hanks,1271780774 +116958,367,comic book,1271780674 +116958,367,Jim Carrey,1271780672 +116958,480,dinosaurs,1271780191 +116958,480,Steven Spielberg,1228122219 +116958,589,action,1271779329 +116958,589,dystopia,1271779335 +116958,589,narrated,1271779327 +116958,593,psychology,1271780506 +116958,593,serial killer,1271780503 +116958,780,action,1271780238 +116958,780,alien invasion,1271780237 +116958,780,aliens,1271780234 +116958,858,Oscar (Best Picture),1271780763 +116958,1061,prison,1241252668 +116958,1061,revenge,1241252661 +116958,1061,vengeance,1241252674 +116958,1073,Fantasy,1271780411 +116958,1073,Johnny Depp,1271780413 +116958,1089,Quentin Tarantino,1271780541 +116958,1097,aliens,1271780812 +116958,1259,coming of age,1271779358 +116958,1259,friendship,1271779351 +116958,1259,Stephen King,1271779348 +116958,1265,Fantasy,1228122480 +116958,1527,action,1271780315 +116958,1527,aliens,1271780296 +116958,1527,Bruce Willis,1271780315 +116958,1527,sci-fi,1271780294 +116958,1580,action,1271780137 +116958,1580,aliens,1271780140 +116958,1580,comic book,1271780141 +116958,1625,twist ending,1271780288 +116958,1682,dystopia,1271779308 +116958,1682,fantasy,1271779303 +116958,1682,Jim Carrey,1271779306 +116958,1704,mathematics,1271780755 +116958,1713,comedy of manners,1271780107 +116958,1923,comedy,1271772772 +116958,2000,action,1271780710 +116958,2000,comedy,1271780716 +116958,2000,Mel Gibson,1271780707 +116958,2001,action,1271780711 +116958,2001,comedy,1271780714 +116958,2001,Mel Gibson,1271780702 +116958,2002,Mel Gibson,1271780698 +116958,2231,Edward Norton,1271780514 +116958,2231,gambling,1271780517 +116958,2231,poker,1271780511 +116958,2353,espionage,1271780805 +116958,2353,Will Smith,1271780807 +116958,2490,action,1271780622 +116958,2490,Mel Gibson,1271780620 +116958,2490,narrated,1271780618 +116958,2542,Guy Ritchie,1271780692 +116958,2762,twist ending,1228122116 +116958,2959,action,1228122014 +116958,2959,narrated,1228122004 +116958,2959,philosophy,1271779271 +116958,2959,social commentary,1271779262 +116958,3147,Stephen King,1271780750 +116958,3147,Tom Hanks,1271780748 +116958,3949,atmospheric,1271780571 +116958,4011,comedy,1241251501 +116958,4011,Guy Ritchie,1241251539 +116958,4011,imdb top 250,1241251490 +116958,4011,Jason Statham,1241251493 +116958,4011,twist ending,1241251527 +116958,4226,nonlinear,1271780665 +116958,4226,twist ending,1271780663 +116958,4886,Pixar,1271780117 +116958,4963,heist,1228122158 +116958,5349,Action,1271780490 +116958,5349,comic book,1271780492 +116958,5349,superhero,1271780495 +116958,5418,action,1271780378 +116958,5418,espionage,1271780376 +116958,5418,Matt Damon,1271780380 +116958,5445,action,1271780129 +116958,5445,dystopia,1271780131 +116958,5464,father-son relationship,1271780538 +116958,5464,Tom Hanks,1271780524 +116958,5574,action,1271780452 +116958,5574,cars,1271780450 +116958,5574,Jason Statham,1271780449 +116958,5574,Luc Besson,1271780459 +116958,5608,based on a true story,1271780323 +116958,5903,dystopia,1271780801 +116958,5952,Action,1271780185 +116958,5952,fantasy,1271780182 +116958,5989,con artists,1271780884 +116958,5989,Leonardo DiCaprio,1271780870 +116958,5989,Tom Hanks,1271780879 +116958,5989,true story,1271780871 +116958,5989,twists & turns,1271780875 +116958,6377,Pixar,1271780780 +116958,6378,action,1271780733 +116958,6378,Edward Norton,1271780731 +116958,6378,heist,1271780729 +116958,6539,action,1271779256 +116958,6539,Johnny Depp,1271779258 +116958,6539,pirates,1271779253 +116958,6708,twist ending,1228122181 +116958,6789,Monica Bellucci,1271780406 +116958,7445,action,1271780681 +116958,7445,Denzel Washington,1271780678 +116958,8371,comic book,1271780859 +116958,8371,Vin Diesel,1271780859 +116958,8636,action,1271780484 +116958,8636,comic book,1271780486 +116958,8636,superhero,1271780488 +116958,8665,action,1271780371 +116958,8665,espionage,1271780369 +116958,8665,Matt Damon,1271780373 +116958,8798,action,1271772740 +116958,8798,assassin,1271772789 +116958,8798,atmospheric,1271772793 +116958,8798,character driven,1271772817 +116958,8798,Coen Brothers,1271772861 +116958,8798,dark,1271772796 +116958,8798,drama,1271772864 +116958,8798,great performances,1271772798 +116958,8798,one day,1271772804 +116958,8798,Tom Cruise,1271772810 +116958,8984,Brad Pitt,1271780058 +116958,8984,George Clooney,1271780075 +116958,8984,heist,1228122148 +116958,30707,narrated,1271780659 +116958,30749,genocide,1271780739 +116958,30749,true story,1271780737 +116958,32587,Action,1271779388 +116958,32587,comic book,1271779391 +116958,34405,action,1271779402 +116958,34405,dystopia,1271779407 +116958,34405,sci-fi,1271779405 +116958,34405,social commentary,1271779435 +116958,34405,social message,1271779435 +116958,44191,action,1271779286 +116958,44191,comic book,1271779291 +116958,44191,dystopia,1271779288 +116958,44195,dark comedy,1271779317 +116958,44195,narrated,1271779320 +116958,44195,satire,1271779322 +116958,44665,Revenge,1271780686 +116958,44665,twist ending,1271780688 +116958,46976,fantasy,1228122085 +116958,46976,narrated,1271779338 +116958,46976,surreal,1271779341 +116958,47099,based on a true story,1271780585 +116958,47099,bittersweet,1271780587 +116958,47099,true story,1271780582 +116958,47610,Edward Norton,1271780258 +116958,47610,twist ending,1271780256 +116958,48516,atmospheric,1271780834 +116958,48516,Martin Scorsese,1271780832 +116958,53322,Heist,1228122146 +116958,54286,action,1271780361 +116958,54286,espionage,1271780366 +116958,55247,based on a true story,1228122236 +116958,55247,road trip,1228122241 +116958,59315,Comic Book adaption,1271780228 +116958,59315,Marvel,1271780194 +116958,59315,Robert Downey Jr.,1271780228 +116958,59315,superhero,1271780199 +116958,59369,action,1241252467 +116958,59369,agent,1241252498 +116958,59369,fight scenes,1241252490 +116958,60040,comic book,1271780267 +116958,60040,Ed Norton,1271780262 +116958,60684,comic book,1271779276 +116958,60684,dystopia,1271779279 +116958,60684,superhero,1271779282 +116958,61352,intelligence operations,1271780468 +116958,61352,muslim,1271780463 +116958,61352,spy thriller,1271780466 +116958,62374,cia,1271780393 +116958,62374,middle east,1271780398 +116958,62374,war,1271780397 +116958,63082,nonlinear,1271779370 +116958,64614,Clint Eastwood,1241252375 +116958,64614,life & death,1241252395 +116958,64614,revenge,1241252369 +116958,68157,Brad Pitt,1271781047 +116958,68157,Quentin Tarantino,1271781045 +116958,68157,slow paced,1271781079 +116958,68157,World War II,1271781055 +116958,70286,action,1271772628 +116958,70286,aliens,1271772599 +116958,70286,alternate history,1271772621 +116958,70286,genetics,1271772645 +116958,70286,IMDB Top 250,1271772662 +116958,70286,intelligent sci-fi,1271772597 +116958,70286,justice,1271772652 +116958,70286,redemption,1271772675 +116958,70286,sci-fi,1271772612 +116958,70286,slow paced,1271772671 +116958,70286,social commentary,1271772594 +116958,70286,South Africa,1271772654 +116958,72998,3d,1271781147 +116958,72998,3D version,1271781147 +116958,74458,Martin Scorsese,1271781228 +116960,260,sci-fi,1442333530 +116960,260,space adventure,1442333537 +116972,260,epic adventure,1441322877 +116972,260,Intergalactic,1441322859 +116973,2599,Hilarious!! :D,1142893619 +116973,39231,much better than i thought!,1142893715 +116996,58295,heist,1329612943 +116996,58295,Jason Statham,1329612939 +116996,58295,london,1329612946 +116996,58295,true story,1329612974 +117042,260,classic,1437114240 +117042,260,exhilarating,1437114226 +117070,77979,child soldiers,1422169099 +117070,77979,drama,1422169099 +117070,77979,war,1422169099 +117083,2427,nature,1146783631 +117083,6214,hard to watch,1146792794 +117100,1161,Academy Award - Best Foreign Film,1152649415 +117100,5496,neo-realism,1152649379 +117100,31116,WWI. pacificsm,1152638354 +117100,32022,iraq,1152649500 +117100,32022,military,1152649500 +117100,39292,mccarthyism,1152645032 +117100,39292,television,1152645032 +117100,39292,witchhunts,1152645032 +117100,39869,racism,1152649401 +117100,42738,sequels,1152639272 +117100,43460,postmodern,1152639173 +117100,43836,remakes,1152639152 +117100,44191,fascism,1152639021 +117100,44191,graphic novel,1152639021 +117100,44193,shakespeare,1152639037 +117100,44193,teen,1152639037 +117100,44193,twelfth night,1152639037 +117100,44195,big tobacco,1152638907 +117100,44761,drug rings,1152638618 +117100,44761,high school,1152638618 +117100,44972,sequels,1152638850 +117100,44972,spoof,1152638850 +117100,44974,internet,1152638825 +117100,45081,video game,1152638781 +117100,45106,satire,1152638786 +117100,45221,gymnastics,1152638676 +117100,45221,high school,1152638676 +117100,45221,teen,1152638676 +117100,45447,christianity,1152638476 +117100,45447,conspiracy theory,1152638476 +117100,45447,gnosticism,1152638476 +117100,45525,cuba,1152638428 +117100,45720,fashion,1152638319 +117100,45720,magazines,1152638319 +117100,45722,pirates,1152638231 +117100,45722,sequels,1152638231 +117104,260,Science Fiction,1444521449 +117104,260,Star Wars,1444521441 +117145,47,great ending,1443312190 +117145,47,philosophical,1443312206 +117145,47,religion,1443312196 +117145,1210,father-son relationship,1443312013 +117145,1210,space opera,1443312004 +117145,1210,war,1443312022 +117145,5903,bullet ballet,1443311941 +117145,5903,martial arts,1443311955 +117145,34405,SPACE TRAVEL,1443312251 +117145,68358,space travel,1443312495 +117145,68358,spock,1443312485 +117145,104841,sci-fi,1443312431 +117145,104841,space,1443312434 +117145,104841,zero gravity,1443312409 +117145,109487,artificial intelligence,1443312296 +117145,109487,black hole,1443312305 +117145,109487,love,1443312327 +117145,109487,science fiction,1443312288 +117145,109487,space,1443312312 +117145,109487,time travel,1443312290 +117145,111759,action,1443312538 +117145,111759,time loop,1443312532 +117190,7914,wanttosee,1203516793 +117192,1221,classic,1156465678 +117194,5526,ki-duk kim,1155856355 +117194,8014,ki-duk kim,1155856324 +117194,120466,Stupid as Hell,1431641639 +117212,96966,lgbt,1442249926 +117212,96966,transgender,1442249923 +117212,142240,gay,1442249734 +117212,142240,lgbt,1442249693 +117212,142240,transgender,1442249668 +117212,142242,lgbt,1442249866 +117212,142242,transgender,1442249864 +117212,142244,documentary,1442250730 +117212,142244,gender,1442250654 +117212,142244,intersex,1442250651 +117212,142244,lgbt,1442250667 +117212,142244,transgender,1442250647 +117224,260,2016,1451764004 +117224,1196,2016,1451764079 +117224,1210,2016,1451764114 +117224,5705,2016,1453595811 +117224,69604,2016,1451766121 +117224,102880,2016,1451766064 +117250,60684,comic book,1236831825 +117250,60684,misanthropic,1236831826 +117255,296,comedy,1423509004 +117255,296,organized crime,1423509004 +117255,296,thriller,1423509004 +117267,2580,own,1202260845 +117267,6957,Fuck,1202264282 +117286,80549,comedy,1453589086 +117286,80549,Emma Stone,1453589091 +117286,80549,funny,1453589087 +117286,80549,strong female lead,1453589098 +117286,80549,witty,1453589080 +117286,134130,based on book,1453590677 +117286,134130,geeky,1453590685 +117286,134130,matt damon,1453590668 +117286,134368,action,1453589010 +117286,134368,comedy,1453589007 +117286,134368,feminist,1453589012 +117286,134368,paris,1453589017 +117286,138036,humour,1453962975 +117286,138036,spy,1453962953 +117286,138036,stylish,1453962975 +117293,2959,atmospheric,1431179312 +117293,2959,based on a book,1431179317 +117293,2959,disturbing,1431179298 +117293,2959,mindfuck,1431179337 +117293,2959,philosophy,1431179296 +117293,2959,surreal,1431179293 +117293,2959,thought-provoking,1431179310 +117293,2959,twist ending,1431179283 +117293,103341,cornetto trilogy,1431178211 +117293,103341,Edgar Wright,1431178204 +117293,103341,good cast,1431178229 +117293,103341,Nick Frost,1431178207 +117293,103341,Simon Pegg,1431178209 +117293,103341,slow start,1431178222 +117293,106002,deception,1431177990 +117293,106002,twist ending,1431177971 +117319,2144,John Hughes,1168123788 +117331,3408,Julia Roberts,1297036906 +117331,3436,Julia Roberts,1288313780 +117331,3448,music,1285547080 +117331,3448,Robin Williams,1285541605 +117331,3949,depressing,1288472771 +117331,3949,disturbing,1288472780 +117331,3949,unrelentingly bleak,1288472754 +117331,4308,colourful,1288314245 +117331,4308,Ewan McGregor,1288314253 +117331,4308,musical,1288314284 +117331,4308,Nicole Kidman,1288314263 +117331,4308,soundtracks,1288314296 +117331,4313,Christina Ricci,1288314134 +117331,4313,great movie,1288314165 +117331,4313,Johnny Depp,1288314147 +117331,4880,family,1288314016 +117331,4880,touching,1288314008 +117331,4880,very good,1288314030 +117331,4993,beautifully filmed,1288298566 +117331,4993,fantasy,1288298523 +117331,6539,Johnny Depp,1288315356 +117331,6539,pirates,1288315362 +117331,7361,Jim Carrey,1288472941 +117331,7458,crappy mythology,1288313257 +117331,7458,unhistorical,1288313287 +117331,44974,Ellen Page,1291293583 +117331,45722,comedy,1288315415 +117331,45722,funny,1288315403 +117331,45722,pirates,1288315422 +117331,56389,Jude Law,1291227453 +117331,56389,Natalie Portman,1291227434 +117331,56389,Norah Jones,1291227447 +117331,56389,Rachel Weisz,1291227511 +117331,56389,visually appealing,1291227525 +117331,56389,Wong Kar Wai,1291227495 +117331,56941,all,1288313596 +117331,56941,best love story,1288313716 +117331,56941,Gerard Butler,1288313537 +117331,56941,Hilary Swank,1288313670 +117331,56941,irish accent,1288313543 +117331,68073,funny,1285539805 +117331,68073,Music,1285539791 +117331,68073,rock and roll,1285539799 +117331,72731,horrible,1287800025 +117331,72731,lame,1287800016 +117331,72731,pointless,1287800033 +117331,76093,cute,1293496073 +117331,76093,dragons,1293496030 +117331,76093,fantasy,1293496039 +117331,76093,vikings,1293496047 +117331,79132,Ellen Page,1288472257 +117331,79132,predictable,1288472275 +117331,79357,Diane Kruger,1287792402 +117331,79357,Jared Leto,1287792459 +117331,79357,nonlinear,1287792424 +117361,6008,Jean-Pierre Dardenne,1414181079 +117361,6008,Luc Dardenne,1414181082 +117397,260,George Lucas,1432003954 +117397,260,space opera,1432003938 +117434,26122,disturbing,1446315708 +117434,57502,anime,1446315736 +117434,57502,surreal,1446315733 +117441,318,Morgan Freeman,1423471771 +117441,318,stephen king,1423471877 +117441,318,wrongful imprisonment,1423471877 +117441,109374,funny,1421115741 +117441,109374,quirky,1421115732 +117441,109374,visually appealing,1421115728 +117441,109374,Wes Anderson,1421115739 +117441,112556,good adaptation,1418463767 +117448,260,did'nt get it,1431543646 +117448,260,overrated,1431543659 +117448,593,eerie,1431544283 +117448,593,riveting,1431544283 +117448,593,slow,1431544283 +117465,115617,american,1430376959 +117465,115617,animation,1430376959 +117465,115617,family,1430376959 +117475,260,sci fi,1434385378 +117475,260,Star Wars,1434385381 +117498,356,masterpiece,1430257300 +117498,356,quotable,1430257300 +117498,356,touching,1430257300 +117499,49772,Edward Norton,1420780174 +117499,49772,emotional,1420780180 +117499,49772,naomi watts,1420780188 +117499,58490,Amy Adams,1421632362 +117499,58490,Hidden identity,1421632404 +117499,58490,Period romantic comedy,1421632380 +117499,89864,Joseph Gordon-Levitt,1422845656 +117509,593,Anthony Hopkins,1247275782 +117509,593,Hannibal Lecter,1247275799 +117509,593,Jodie Foster,1247275786 +117509,593,psychology,1247275790 +117509,780,apocalypse,1247275714 +117509,780,US President,1247275704 +117509,922,atmospheric,1247275753 +117509,922,black comedy,1247275749 +117509,922,dark,1247275756 +117509,2160,Atmospheric,1247275830 +117509,2160,Roman Polanski,1247275875 +117535,260,fantasy,1433929201 +117535,260,space,1433929208 +117546,1923,semen,1427134158 +117546,69122,funny,1427134128 +117546,69122,Zach Galifianakis,1427134136 +117561,356,philosophical,1440404485 +117561,82202,thriller,1440404532 +117585,77177,china culture,1427639906 +117585,77177,nature,1427639906 +117585,77177,wilderness,1427639906 +117585,91902,drama,1424208247 +117585,91902,family,1424208247 +117585,91902,life choices,1424208247 +117585,107627,journey of self-discovery,1425797118 +117585,107627,medicine,1425797118 +117585,107627,pursuing a dream,1425797118 +117585,114945,animation,1421685417 +117585,114945,fantasy,1421685417 +117585,114945,romance,1421685417 +117604,434,Clint Eastwood,1246534147 +117604,434,Sylvester Stallone,1246534145 +117604,480,adventure,1246533985 +117604,480,Steven Spielberg,1246533988 +117604,541,artificial intelligence,1246534050 +117604,541,assassin,1246534048 +117604,541,based on a book,1246534032 +117604,541,classic,1246534042 +117604,541,cyberpunk,1246534029 +117604,541,dystopia,1246534060 +117604,541,fantasy,1246534045 +117604,541,future,1246534036 +117604,541,imdb top 250,1246534055 +117604,541,Philip K. Dick,1246534027 +117604,541,robots,1246534039 +117604,593,Anthony Hopkins,1246534342 +117604,593,cannibalism,1246534346 +117604,593,gothic,1246534348 +117604,593,Hannibal Lecter,1246534350 +117604,593,Jodie Foster,1246534352 +117604,593,Oscar (Best Actor),1246534363 +117604,593,Oscar (Best Actress),1246534365 +117604,593,Oscar (Best Directing),1246534367 +117604,593,Oscar (Best Picture),1246534375 +117604,593,psychology,1246534376 +117604,593,serial killer,1246534371 +117604,750,anti-war,1246534089 +117604,750,black comedy,1246534076 +117604,750,cold war,1246534074 +117604,750,comedy,1246534086 +117604,750,cynical,1246534084 +117604,750,dark comedy,1246534083 +117604,750,satire,1246534081 +117604,750,Stanley Kubrick,1246534079 +117604,1203,courtroom,1246534271 +117604,1203,courtroom drama,1246534273 +117604,1203,crime,1246534283 +117604,1203,drama,1246534279 +117604,1203,good dialogue,1246534287 +117604,1203,gritty,1246534289 +117604,1203,low budget,1246534293 +117604,1203,racism,1246534296 +117604,1203,social commentary,1246534299 +117604,1214,monster,1246534009 +117604,1214,sci-fi,1246534016 +117604,1262,historical,1246534249 +117604,1262,POWs,1246534260 +117604,1262,prison break,1246534252 +117604,1262,prison escape,1246534246 +117604,1262,World War II,1246534241 +117604,1262,WWII,1246534243 +117604,1580,action,1246533947 +117604,1580,alien,1246533950 +117604,1580,aliens,1246533952 +117604,1580,comedy,1246533955 +117604,1580,conspiracy,1246533953 +117604,1580,Oscar Winner,1246533964 +117604,1580,parody,1246533971 +117604,1580,Tommy Lee Jones,1246533957 +117604,3826,B-Movie,1246534163 +117604,3826,boring,1246534165 +117604,3826,Josh Brolin,1246534168 +117604,8494,Steve McQueen,1246534219 +117604,27073,Heath Ledger,1246708588 +117604,51255,action,1246708896 +117604,51255,black comedy,1246708898 +117604,51255,british comedy,1246708901 +117604,51255,Funny as hell,1246708907 +117604,51255,parody,1246708903 +117604,51255,police,1246708905 +117604,51255,Timothy Dalton,1246708915 +117604,64620,based on a true story,1246534182 +117604,64620,history,1246534200 +117604,64620,journalism,1246534185 +117604,64620,Kevin Bacon,1246534187 +117604,64620,Ron Howard,1246534196 +117604,64839,Darren Aronofsky,1246533908 +117604,64839,movie to see,1246534322 +117604,64839,Nudity (Topless),1246534318 +117604,64839,sport:professional wrestling,1246534314 +117604,64839,strippers,1246534317 +117604,64839,touching,1246534311 +117604,64839,violence,1246533916 +117614,2542,british,1138506454 +117614,4011,british,1138506438 +117614,6942,british,1138506512 +117614,27831,british,1138506482 +117622,1682,dystopia,1302996962 +117631,318,overcoming obstacles,1437091577 +117631,318,prison escape,1437091577 +117631,318,uplifting,1437091577 +117653,260,"action, scifi",1438909847 +117653,260,fantasy action,1438909843 +117653,260,future,1438909813 +117653,260,Harrison Ford,1438909855 +117653,260,Science Fiction,1438909796 +117659,3623,action,1433941886 +117659,3623,Tom Cruise,1433941885 +117659,45186,action,1433941912 +117659,45186,spy,1433941910 +117659,45186,Tom Cruise,1433941908 +117659,53972,action packed,1433941856 +117659,53972,bruce willis,1433941848 +117667,260,mystery,1440841589 +117692,3498,Istanbul,1391206064 +117692,96811,shaky camera,1393965209 +117692,108882,acting,1391699645 +117692,108882,effects,1391699636 +117692,108928,action,1393281405 +117692,108928,cast,1393281399 +117692,108928,german sync,1393281425 +117692,108928,matt damon,1393281385 +117709,4255,Tom Green,1162383933 +117715,1913,dreamlike,1299362612 +117715,31921,Sherlock Holmes,1299362623 +117715,33072,mockumentary,1299362570 +117730,96588,predictable,1389908173 +117730,102993,Feel good,1390833390 +117730,111617,FeelGood,1408213783 +117738,69406,the acting,1262104491 +117738,69406,the actors,1262104511 +117738,69406,the end.,1262104451 +117738,69406,the views,1262104521 +117751,260,cult classic,1432615115 +117751,260,sci-fi,1432615110 +117756,2722,hilarious,1145589240 +117764,260,classic,1439880302 +117764,260,EPIC,1439880358 +117764,260,space action,1439880279 +117776,215,ethan hawke,1387491790 +117776,215,intelligent,1387491801 +117776,215,reflective,1387491794 +117776,215,romantic,1387491816 +117776,1258,disturbing,1407899474 +117776,1258,dreamlike,1407899475 +117776,1258,ghosts,1407899481 +117776,1258,psychological,1407899468 +117776,2275,desert,1397223949 +117776,2275,southwest,1397223934 +117776,2275,west,1397223938 +117776,4378,California,1397224025 +117776,7324,wild west,1397224250 +117776,7361,alternate reality,1387491873 +117776,7361,Charlie Kaufman,1387491862 +117776,7361,nonlinear,1387491869 +117776,7361,psychology,1387491866 +117776,7361,surreal,1387491874 +117776,7361,surrealism,1387491876 +117776,26326,Alejandro Jodorowsky,1387492177 +117776,26326,dreamlike,1387492185 +117776,26326,hallucinatory,1387492181 +117776,26326,Jodorowsky,1387492174 +117776,26326,psychedelic,1387492167 +117776,26326,surreal,1387492169 +117776,26326,weird,1387492171 +117776,49932,David Lynch,1387492228 +117776,49932,surreal,1387492232 +117776,49932,weird,1387492234 +117776,74458,atmospheric,1410035925 +117776,74458,mystery,1410035913 +117776,74458,psychological,1410035898 +117805,260,action,1436672730 +117805,260,adventure,1436672632 +117805,260,good versus evil,1436672725 +117808,260,Science Fiction,1437471967 +117808,260,starship,1437472005 +117808,134853,psychology,1437472179 +117814,2302,Marissa Tomei,1160584449 +117840,45183,Bad Acting,1189378639 +117847,69280,shopping,1296336285 +117853,260,Science Fiction,1441555042 +117853,260,space adventure,1441555048 +117854,4745,classic,1431543964 +117854,4745,teens,1431543964 +117854,4745,tragic,1431543964 +117867,260,"action, scifi",1436247743 +117867,260,epic adventure,1436247728 +117867,527,based on a true story,1436247921 +117867,527,holocaust,1436247919 +117867,2617,adventure,1436247816 +117867,2617,romance,1436247813 +117867,2617,treasure,1436247842 +117867,4993,Adventure,1436248102 +117867,4993,fantasy,1436248099 +117867,66097,dark,1436248015 +117867,66097,fairy tale,1436248021 +117867,66097,Surreal,1436248023 +117867,74458,plot twist,1436247985 +117867,74458,psychological,1436247979 +117867,103688,based on a true story,1436247939 +117867,103688,haunted house,1436247943 +117878,55247,inspiring,1306948702 +117878,55247,road trip,1306948702 +117898,750,black and white,1442772855 +117898,750,nuclear war,1442772867 +117898,750,satire,1442772835 +117898,1580,aliens,1442772952 +117898,1580,sci-fi,1442772961 +117898,4306,animation,1442772698 +117898,4306,comedy,1442772707 +117910,2641,sci-fi,1187095841 +117910,3785,comedy,1187095819 +117910,4447,comedy,1187095868 +117910,4975,comedy,1187095917 +117910,5679,horror,1187095812 +117928,910,comedy,1238813024 +117928,3712,comedy,1238813050 +117944,593,Anthony Hopkins,1241711854 +117944,593,based on book,1241711902 +117944,593,gothic,1241711861 +117944,593,Hannibal Lecter,1241711888 +117944,593,Jodie Foster,1241711851 +117944,593,Oscar (Best Actor),1241711878 +117944,593,Oscar (Best Actress),1241711876 +117944,593,psychology,1241711883 +117944,593,serial killer,1241711893 +117944,2959,Brad Pitt,1241711943 +117944,2959,surreal,1241711953 +117944,4310,Action,1233945567 +117944,4310,Romance,1233945562 +117944,4310,World War II,1233945544 +117958,260,Science Fiction,1434149614 +118007,110,epic,1434915845 +118007,110,historical,1434915822 +118007,110,Nudity (Topless),1434915835 +118007,1464,David Lynch,1446063878 +118007,1464,disturbing,1446063909 +118007,1464,Nudity (Topless),1446063874 +118007,1464,strange,1446063919 +118007,1464,surreal,1446063898 +118007,85414,happy ending,1446063770 +118007,85414,intelligent,1446063774 +118007,85414,parallel universe,1446063783 +118007,85414,time loop,1446063753 +118007,95088,feel good,1445619512 +118007,95088,funny,1445619516 +118007,95088,time travel,1445619510 +118007,106920,artificial intelligence,1445619539 +118007,106920,Human Computer Interaction,1445619583 +118007,106920,meaning of life,1445619543 +118007,106920,sci-fi,1445619549 +118007,106920,thought-provoking,1445619537 +118013,1261,cult film,1428872304 +118013,1261,demons,1428872319 +118013,1261,gore,1428872311 +118013,1261,horror,1428872295 +118013,1261,possession,1428872309 +118013,1321,horror,1428872334 +118013,6502,horror,1428872229 +118013,7387,horror,1428872204 +118013,53326,horror,1428872168 +118013,53326,original,1435702701 +118013,53326,scary as hell,1435702701 +118013,131451,cult,1435704345 +118020,344,comedy,1284059366 +118020,344,goofy,1284059385 +118020,344,Jim Carrey,1284059369 +118020,344,Jim Carrey being Jim Carrey,1284059371 +118020,344,sex jokes,1284059380 +118020,344,very funny,1284059394 +118020,1923,Ben Stiller,1284059133 +118020,1923,boring,1284059191 +118020,1923,comedy,1284059135 +118020,1923,fun,1284059137 +118020,3752,comedy,1284059268 +118020,3752,dumb,1284059304 +118020,3752,Farelly Brothers,1284059322 +118020,3752,Funny as hell,1284059273 +118020,3752,Hilarious,1284059274 +118020,3752,Jim Carrey,1284059280 +118020,3752,romance,1284059312 +118020,4816,ben stiller,1284059441 +118020,4816,Funny as hell,1284059444 +118020,69122,comedy,1284059085 +118020,69122,stupid stereotypes,1284059083 +118032,110,Mel Gibson,1144499559 +118032,111,Jodie Foster,1239673541 +118032,111,Robert De Niro,1239673539 +118032,150,Ed Harris,1164683973 +118032,150,Tom Hanks,1147828758 +118032,161,Denzel Washington,1164686391 +118032,161,Gene Hackman,1164686391 +118032,161,Jason Robards,1164686409 +118032,161,Viggo Mortensen,1164686391 +118032,168,Julia Ormond,1144501542 +118032,168,Richard Gere,1160277540 +118032,168,Sean Connery,1144500168 +118032,208,Dennis Hopper,1160277801 +118032,208,Kevin Costner,1160277795 +118032,247,Peter Jackson,1147830040 +118032,258,Joss Acklund,1160277853 +118032,260,Alec Guiness,1147829702 +118032,260,George Lucas,1220313075 +118032,260,Harrison Ford,1147829702 +118032,260,Star Wars,1147829702 +118032,296,Bruce Willis,1220313649 +118032,296,Christopher Walken,1164685424 +118032,296,John Travolta,1160275672 +118032,296,Quentin Tarantino,1160264527 +118032,296,Samuel L. Jackson,1160264567 +118032,296,Uma Thurman,1160277686 +118032,318,Morgan Freeman,1147830809 +118032,318,Stephen King,1160264000 +118032,329,Patrick Stewart,1160279921 +118032,329,Star Trek,1160277709 +118032,329,William Shatner,1160279921 +118032,356,Sally Field,1160278132 +118032,356,Tom Hanks,1147828765 +118032,377,Dennis Hopper,1172031033 +118032,377,Keanu Reeves,1172031052 +118032,457,Harrison Ford,1220313326 +118032,457,Tommy Lee Jones,1164684074 +118032,480,Michael Crichton,1220315628 +118032,480,Steven Spielberg,1160276811 +118032,515,Anthony Hopkins,1239672294 +118032,515,Christopher Reeve,1239672299 +118032,515,Emma Thompson,1239672297 +118032,527,Liam Neeson,1144500637 +118032,527,Steven Spielberg,1147831658 +118032,589,Arnold Schwarzenegger,1160276002 +118032,590,Kevin Costner,1160276313 +118032,592,Jack Nicholson,1220315855 +118032,593,Anthony Hopkins,1144499413 +118032,593,Jodie Foster,1144499462 +118032,593,Jonathan Demme,1220314132 +118032,593,Scott Glenn,1147830427 +118032,593,Thomas Harris,1220311903 +118032,648,Tom Cruise,1160276901 +118032,733,Ed Harris,1220315434 +118032,733,Nicolas Cage,1160279427 +118032,733,Sean Connery,1160279425 +118032,750,George C.Scott,1160278111 +118032,750,Peter Sellers,1220315988 +118032,750,Stanley Kubrick,1160275726 +118032,760,World War II,1164686293 +118032,781,Liv Tyler,1147830148 +118032,858,Al Pacino,1144499577 +118032,858,Diane Keaton,1147829521 +118032,858,Francis Ford Copolla,1144499579 +118032,858,James Caan,1144501034 +118032,858,Mario Puzo,1220313953 +118032,858,Marlon Brando,1144501034 +118032,897,Ingrid Bergman,1144500179 +118032,903,Alfred Hitchcock,1220313802 +118032,903,James Stewart,1220313806 +118032,904,Alfred Hitchcock,1147831576 +118032,904,Grace Kelly,1147831562 +118032,904,James Stewart,1147831562 +118032,906,Ingrid Bergman,1144499514 +118032,906,Maurice Chevallier,1160275763 +118032,908,Alfred Hitchcock,1144500546 +118032,908,Cary Grant,1144500551 +118032,908,James Mason,1220314554 +118032,909,Billy Wilder,1172029485 +118032,909,Fred McMurray,1144500033 +118032,909,Jack Lemmon,1144500027 +118032,912,Claude Rains,1144501019 +118032,912,Humphrey Bogart,1144499569 +118032,912,Michael Curtiz,1144499366 +118032,912,Sidney Greenstreet,1144501019 +118032,912,World War II,1147829202 +118032,913,Humphrey Bogart,1144499850 +118032,913,John Huston,1220312231 +118032,913,Sidney Greenstreet,1144501255 +118032,913,Sydney Greenstreet,1220312230 +118032,914,Audrey Hepburn,1160264442 +118032,914,Rex Harrison,1160264434 +118032,919,Bert Lahr,1164684662 +118032,919,Frank Morgan,1147830995 +118032,919,Jack Haley,1164684680 +118032,919,Judy Garland,1144501108 +118032,919,Ray Bolger,1147830995 +118032,919,Victor Fleming,1172030155 +118032,920,Civil War,1147831347 +118032,920,Clark Gable,1144500233 +118032,920,Leslie Howard,1160276528 +118032,920,Olivia deHavilland,1160276518 +118032,920,Vivian Leigh,1147831340 +118032,921,Peter O'Toole,1147829901 +118032,923,Orson Welles,1144500082 +118032,924,Stanley Kubrick,1160264007 +118032,928,Alfred Hitchcock,1147831565 +118032,928,Laurence Olivier,1220314667 +118032,928,Lawrence Olivier,1164684420 +118032,930,Alfred Hitchcock,1239673507 +118032,931,Alfred Hitchcock,1239673586 +118032,931,Gregory Peck,1239673584 +118032,931,Ingrid Bergman,1239673588 +118032,946,World War II,1220314793 +118032,948,Elizabeth Taylor,1144500219 +118032,948,James Dean,1144500211 +118032,948,Rock Hudson,1144500223 +118032,952,David Niven,1160276138 +118032,953,Frank Capra,1220316307 +118032,953,James Stewart,1160264310 +118032,969,Humphrey Bogart,1144499476 +118032,969,Katherine Hepburn,1144499647 +118032,969,Robert Morley,1147831009 +118032,1028,Dick Van Dyke,1160276860 +118032,1028,Julie Andrews,1160276854 +118032,1035,Christopher Plummer,1160279545 +118032,1035,Julie Andrews,1160279545 +118032,1079,Jamie Lee Curtis,1220314861 +118032,1081,Julie Andrews,1160277360 +118032,1083,Jack Lemmon,1147831375 +118032,1089,Quentin Tarantino,1175118801 +118032,1090,Forest Whitaker,1220314638 +118032,1090,Oliver Stone,1160264507 +118032,1090,Vietnam War,1160264509 +118032,1090,Willem Dafoe,1220314636 +118032,1096,Kevin Kline,1160275956 +118032,1096,Meryl Streep,1144499635 +118032,1097,Steven Spielberg,1144501508 +118032,1101,Tom Cruise,1164685217 +118032,1103,James Dean,1147827927 +118032,1104,Elia Kazan,1172029740 +118032,1104,Karl Malden,1160278606 +118032,1104,Marlon Brando,1144500752 +118032,1104,Tennessee Williams,1172029738 +118032,1104,Vivian Leigh,1220313109 +118032,1125,Peter Sellers,1160279404 +118032,1135,Ellen Burstyn,1164685118 +118032,1135,Goldie Hawn,1160277676 +118032,1136,John Cleese,1220315274 +118032,1183,Ralph Fiennes,1147830571 +118032,1196,George Lucas,1220313052 +118032,1196,Harrison Ford,1147829717 +118032,1196,Star Wars,1144500720 +118032,1197,Andre the Giant,1220312478 +118032,1197,Billy Crystal,1160278456 +118032,1197,Chris Sarandon,1220312484 +118032,1197,Christopher Guest,1220312326 +118032,1197,Mandy Patinkin,1160278467 +118032,1197,Peter Falk,1160264522 +118032,1197,Robin Wright Penn,1220312471 +118032,1197,William Goldman,1220312443 +118032,1198,Bill Hootkins,1144501326 +118032,1198,Harrison Ford,1144499924 +118032,1198,Steven Spielberg,1220312317 +118032,1200,James Cameron,1172028624 +118032,1200,Sigourney Weaver,1160264029 +118032,1201,Clint Eastwood,1160264266 +118032,1201,Sergio Leone,1160278183 +118032,1203,Sidney Lumet,1177542128 +118032,1204,Alec Guiness,1144499609 +118032,1204,Anthony Quayle,1144501074 +118032,1204,Anthony Quinn,1144501069 +118032,1204,Peter O'Toole,1144499388 +118032,1204,World War I,1164686169 +118032,1206,Malcolm McDowell,1164684019 +118032,1206,Stanley Kubrick,1160264114 +118032,1207,Gregory Peck,1144499976 +118032,1207,Robert Duvall,1144501371 +118032,1208,Francis Ford Copolla,1160278005 +118032,1208,Marlon Brando,1160264075 +118032,1210,George Lucas,1220313048 +118032,1210,Harrison Ford,1220313046 +118032,1210,Star Wars,1144500725 +118032,1212,Orson Welles,1220314963 +118032,1214,Ridley Scott,1220316600 +118032,1214,Sigourney Weaver,1160264024 +118032,1219,Alfred Hitchcock,1144499918 +118032,1219,Anthony Harvey,1160264552 +118032,1219,Janet Leigh,1160264543 +118032,1220,Dan Ackroyd,1160276183 +118032,1220,John Belushi,1160276176 +118032,1221,Al Pacino,1144499668 +118032,1221,Diane Keaton,1144501168 +118032,1221,Francis Ford Coppola,1220312068 +118032,1221,Lake Tahoe,1220314263 +118032,1221,Robert De Niro,1220311997 +118032,1221,Robert Duvall,1220314258 +118032,1222,Stanley Kubrick,1144501547 +118032,1222,Vietnam War,1164686143 +118032,1225,F. Murray Abraham,1160277979 +118032,1227,Sergio Leone,1160278432 +118032,1231,Barbara Hershey,1164684447 +118032,1231,Ed Harris,1160278499 +118032,1231,Sam Shepard,1147831160 +118032,1231,Scott Glenn,1147831160 +118032,1231,Tom Hanks,1220312378 +118032,1233,World War II,1147831238 +118032,1234,Paul Newman,1144500743 +118032,1234,Ray Walston,1160275980 +118032,1234,Robert Redford,1144500743 +118032,1234,Robert Shaw,1160275985 +118032,1237,Ingmar Bergman,1147831649 +118032,1237,Max von Sydow,1160278554 +118032,1240,Arnold Schwarzenegger,1160276005 +118032,1240,James Cameron,1172029593 +118032,1242,Morgan Freeman,1220312687 +118032,1247,Anne Bancroft,1144501046 +118032,1247,Dustin Hoffman,1144499588 +118032,1247,Katherine Ross,1145058484 +118032,1247,Mike Nichols,1220314004 +118032,1247,Simon and Garfunkel,1172030187 +118032,1250,Alec Guiness,1144499492 +118032,1250,David Kean,1144499501 +118032,1250,William Holden,1160278063 +118032,1250,World War II,1147829213 +118032,1252,Jack Nicholson,1177542145 +118032,1252,Roman Polanski,1177542250 +118032,1254,Humphrey Bogart,1144499984 +118032,1254,John Mills,1160276040 +118032,1258,Jack Nicholson,1160264639 +118032,1258,Stanley Kubrick,1160264627 +118032,1258,Stephen King,1160264624 +118032,1262,Charles Bronson,1160278205 +118032,1262,Richard Attenborough,1147831364 +118032,1262,Steve McQueen,1144500244 +118032,1262,World War II,1147829242 +118032,1263,Robert De Niro,1160264126 +118032,1263,Vietnam War,1164686106 +118032,1265,Bill Murray,1160279041 +118032,1266,Clint Eastwood,1144500845 +118032,1266,Gene Hackman,1144500845 +118032,1266,Morgan Freeman,1144500845 +118032,1266,Richard Harris,1144500845 +118032,1272,George C. Scott,1144499904 +118032,1272,Karl Maldin,1144501304 +118032,1272,Stephen Young,1220312339 +118032,1272,World War II,1147829344 +118032,1276,George Kennedy,1144501480 +118032,1276,Paul Newman,1144500100 +118032,1278,Gene Wilder,1175119058 +118032,1278,Marty Feldman,1175119086 +118032,1278,Mel Brooks,1175118436 +118032,1283,Gary Cooper,1147827901 +118032,1284,Howard Hawks,1172029473 +118032,1284,Humphrey Bogart,1220312560 +118032,1287,Charlton Heston,1160278038 +118032,1291,Denholm Elliott,1220312203 +118032,1291,Harrison Ford,1144499680 +118032,1291,John Rhys-Davies,1220312196 +118032,1291,River Phoenix,1220312118 +118032,1291,Sean Connery,1144501188 +118032,1291,Steven Spielberg,1220312050 +118032,1293,Ben Kingsley,1144499521 +118032,1293,Trevor Howard,1144501155 +118032,1299,John Malkovich,1220312142 +118032,1299,Sam Watterston,1160278295 +118032,1299,Vietnam War,1164686158 +118032,1303,Michael Caine,1144500354 +118032,1303,Sean Connery,1144500354 +118032,1304,Katherine Ross,1144501461 +118032,1304,Paul Newman,1144500056 +118032,1304,Robert Redford,1144500061 +118032,1333,Alfred Hitchcock,1144500043 +118032,1333,Tippi Hedren,1160276163 +118032,1343,Martin Scorsese,1239673797 +118032,1343,Nick Nolte,1239673806 +118032,1343,Robert De Niro,1147828010 +118032,1344,Gregory Peck,1239673209 +118032,1344,Robert Mitchum,1239673217 +118032,1345,Piper Laurie,1160276248 +118032,1345,Stephen King,1160276241 +118032,1356,Jonathan Frakes,1172029791 +118032,1356,Patrick Stewart,1144500679 +118032,1356,Star Trek,1144500674 +118032,1356,Whoopi Goldberg,1220313009 +118032,1371,DeForest Kelley,1220313025 +118032,1371,Leonard Nimoy,1160277727 +118032,1371,Star Trek,1144500686 +118032,1371,William Shatner,1160277720 +118032,1372,Leonard Nimoy,1147831760 +118032,1372,Star Trek,1144500657 +118032,1372,William Shatner,1147831702 +118032,1373,Leonard Nimoy,1147831752 +118032,1373,Star Trek,1144500664 +118032,1373,William Shatner,1147831708 +118032,1374,Gene Roddenberry,1172029772 +118032,1374,Leonard Nimoy,1160279604 +118032,1374,Ricardo Montalban,1160277231 +118032,1374,Star Trek,1144500694 +118032,1374,William Shatner,1160279604 +118032,1375,Christopher Lloyd,1220312979 +118032,1375,Gene Roddenberry,1220314703 +118032,1375,Leonard Nimoy,1147831727 +118032,1375,Star Trek,1147831680 +118032,1375,William Shatner,1147831720 +118032,1376,Leonard Nimoy,1147831741 +118032,1376,Star Trek,1147831688 +118032,1376,William Shatner,1147831734 +118032,1380,John Travolta,1160279034 +118032,1380,Olivia Newton-John,1160279034 +118032,1391,Tim Burton,1220314938 +118032,1580,Tommy Lee Jones,1172028571 +118032,1580,Will Smith,1220313546 +118032,1610,Sean Connery,1160276681 +118032,1635,Elijah Wood,1147830191 +118032,1635,Tobey Maguire,1160279104 +118032,1674,Harrison Ford,1144500884 +118032,1682,Jim Carrey,1172028758 +118032,1690,Winona Ryder,1239673825 +118032,1704,Matt Damon,1160278177 +118032,1704,Robin Williams,1160264258 +118032,1721,David Warner,1147830457 +118032,1721,James Cameron,1220311802 +118032,1721,Kate Winslet,1147830443 +118032,1721,Kathy Bates,1147830443 +118032,1721,Leonardo DiCaprio,1147830443 +118032,1727,Robert Redford,1164685007 +118032,1792,Tommy Lee Jones,1160277774 +118032,1801,Gabriel Byrne,1220312803 +118032,1801,Gerard Depardieu,1220312805 +118032,1801,Jeremy Irons,1144500364 +118032,1801,John Malkovich,1160277597 +118032,1801,Leonardo DiCaprio,1147831473 +118032,1876,Morgan Freeman,1164684961 +118032,1894,Harrison Ford,1220315442 +118032,1917,Ben Affleck,1220315827 +118032,1917,Bruce Willis,1160277471 +118032,1927,World War I,1239673546 +118032,1931,Charles Laughton,1144500957 +118032,1931,Clark Gable,1144500540 +118032,1934,Frank Capra,1239673171 +118032,1934,James Stewart,1239673169 +118032,1934,Lionel Barrymore,1239673655 +118032,1944,World War II,1147831288 +118032,1945,Elia Kazan,1177542339 +118032,1945,Lee J. Cobb,1239673512 +118032,1945,Marlon Brando,1147829480 +118032,1949,Leo McKern,1147830413 +118032,1949,Orson Welles,1220311688 +118032,1949,Paul Scofield,1144499401 +118032,1949,Robert Shaw,1160278353 +118032,1949,Wendy Hiller,1144501086 +118032,1950,Rod Steiger,1144499673 +118032,1950,Sidney Poitier,1144501180 +118032,1953,Gene Hackman,1160264186 +118032,1954,Sylvester Stallone,1160279437 +118032,1955,Dustin Hoffman,1172029025 +118032,1956,Donald Sutherland,1144500562 +118032,1956,Mary Tyler Moore,1147831516 +118032,1957,Olympics,1160276257 +118032,1959,Klaus Maria Brandauer,1220314603 +118032,1959,Meryl Streep,1144500578 +118032,1959,Robert Redford,1144500578 +118032,1961,Dustin Hoffman,1160278485 +118032,1964,Donald Sutherland,1160277073 +118032,1964,Jane Fonda,1160277067 +118032,1994,Craig T.Nelson,1160279379 +118032,1997,Max von Sydow,1160276400 +118032,2006,Anthony Hopkins,1144500388 +118032,2006,Antonio Banderas,1144500388 +118032,2006,Catherine Zeta-Jones,1144500388 +118032,2013,Gene Hackman,1220314923 +118032,2013,Shelley Winters,1160279867 +118032,2023,Al Pacino,1147829555 +118032,2023,Francis Ford Copolla,1172029160 +118032,2028,Matt Damon,1220314341 +118032,2028,Steven Spielberg,1160264593 +118032,2028,Tom Hanks,1144499961 +118032,2028,Vin Diesel,1160278524 +118032,2028,World War II,1144499966 +118032,2054,Rick Moranis,1160277814 +118032,2058,Samuel L. Jackson,1160279266 +118032,2067,Alec Guiness,1144500136 +118032,2067,Julie Christie,1144500136 +118032,2067,Omar Sharif,1144500136 +118032,2067,Ralph Richardson,1144500136 +118032,2115,Harrison Ford,1144500266 +118032,2115,Steven Spielberg,1160277016 +118032,2183,Alfred Hitchcock,1239673670 +118032,2183,Doris Day,1239673672 +118032,2183,James Stewart,1239673674 +118032,2194,Brian De Palma,1220313188 +118032,2194,Kevin Costner,1144500862 +118032,2194,Robert De Niro,1220313185 +118032,2194,Sean Connery,1144500862 +118032,2204,Alfred Hitchcock,1239673089 +118032,2206,Alfred Hitchcock,1239673142 +118032,2206,Cary Grant,1239673144 +118032,2206,Joan Fontaine,1239673627 +118032,2210,Alfred Hitchcock,1239673645 +118032,2262,Demi Moore,1160277438 +118032,2269,Demi Moore,1160277838 +118032,2269,Robert Redford,1160277823 +118032,2269,Woody Harrelson,1160279983 +118032,2301,Mel Brooks,1160276667 +118032,2313,Anthony Hopkins,1144500157 +118032,2313,John Hurt,1147830226 +118032,2313,Wendy Hiller,1147830226 +118032,2324,World War II,1220316359 +118032,2336,cate blanchett,1239673280 +118032,2336,Geoffrey Rush,1239673294 +118032,2336,Joseph Fiennes,1239673306 +118032,2375,Tom Hanks,1144500527 +118032,2393,Jonathan Frakes,1175118506 +118032,2393,Patrick Stewart,1175118528 +118032,2393,Star Trek,1175118524 +118032,2405,Kathleen Turner,1144500295 +118032,2405,Michael Douglas,1147831407 +118032,2406,Kathleen Turner,1144500627 +118032,2406,Michael Douglas,1147831625 +118032,2413,Christopher Lloyd,1220312623 +118032,2414,Sherlock Holmes,1220313216 +118032,2414,Steven Spielberg,1144500896 +118032,2427,John Travolta,1239673364 +118032,2427,Sean Penn,1239673366 +118032,2467,F. Murray Abraham,1144499877 +118032,2467,Sean Connery,1144499864 +118032,2498,Christopher Lloyd,1164684917 +118032,2520,Burt Lancaster,1160277444 +118032,2520,Helen Hayes,1160277457 +118032,2520,Van Heflin,1160279732 +118032,2527,Yul Brynner,1160277402 +118032,2571,Carrie-Anne Moss,1172029914 +118032,2571,Keanu Reeves,1144500519 +118032,2571,Lawrence Fishburn,1144500413 +118032,2617,Brendan Fraser,1164685063 +118032,2617,Rachel Weisz,1147831493 +118032,2628,Ewan McGregor,1220316448 +118032,2628,George Lucas,1220313063 +118032,2628,Liam Neeson,1220313070 +118032,2628,Natalie Portman,1220313067 +118032,2628,Samuel L. Jackson,1220313038 +118032,2628,Star Wars,1144500709 +118032,2640,Christopher Reeve,1144500761 +118032,2640,Gene Hackman,1147830786 +118032,2640,Marlon Brando,1220313128 +118032,2641,Christopher Reeve,1160277752 +118032,2641,Gene Hackman,1220315464 +118032,2642,Christopher Reeve,1160277897 +118032,2643,Christopher Reeve,1160277912 +118032,2643,Gene Hackman,1220314980 +118032,2670,Clark Gable,1239673641 +118032,2670,Robert Wise,1239673651 +118032,2670,World War II,1239673639 +118032,2706,Allison Hannigan,1160278731 +118032,2706,Mena Suvari,1164684756 +118032,2706,Sean Penn,1172028695 +118032,2706,Tara Reid,1160276119 +118032,2716,Bill Murray,1144501871 +118032,2716,Dan Ackroyd,1144501871 +118032,2716,Rick Moranis,1147831323 +118032,2716,Sigourney Weaver,1160276498 +118032,2717,Bill Murray,1160277553 +118032,2717,Dan Ackroyd,1160279794 +118032,2717,Sigourney Weaver,1164684985 +118032,2728,Charles Laughton,1164684624 +118032,2728,Herbert Lom,1164684505 +118032,2728,Kirk Douglas,1164684505 +118032,2728,Tony Curtis,1164684505 +118032,2739,Steven Spielberg,1160278874 +118032,2739,Whoopie Goldberg,1144500092 +118032,2746,Frank Oz,1172029966 +118032,2746,Rick Moranis,1147831442 +118032,2762,Bruce Willis,1147830228 +118032,2762,M. Night Shyamalan,1147830239 +118032,2763,Pierce Brosnan,1144500789 +118032,2794,Chevy Chase,1160277525 +118032,2852,Denzel Washington,1239673595 +118032,2863,Beatles,1160276585 +118032,2871,Burt Reynolds,1144501495 +118032,2871,Jon Voight,1144500110 +118032,2921,Clint Eastwood,1160276656 +118032,2922,Clint Eastwood,1160276583 +118032,2929,Diane Keaton. Maureen Stapleton,1147831604 +118032,2929,Warren Beatty,1147831604 +118032,2941,Ray Walston,1160279553 +118032,2944,Lee Marvin,1160264133 +118032,2944,Telly Savalas,1160264143 +118032,2944,World War II,1164686115 +118032,2947,Gert Frobe,1160279002 +118032,2947,Sean Connery,1160279002 +118032,2951,Clint Eastwood,1160264166 +118032,2968,Ralph Richardson,1144500819 +118032,2968,Sean Connery,1220313165 +118032,2991,James Bond,1220315664 +118032,2991,Sean Connery,1160279164 +118032,2993,James Bond,1220314991 +118032,2993,Sean Connery,1160277306 +118032,3011,Jane Fonda,1160277285 +118032,3037,Dustin Hoffman,1160264330 +118032,3039,Don Ameche,1164685235 +118032,3039,Eddie Murphy,1164685247 +118032,3062,Henry Fonda,1160264344 +118032,3062,John Wayne,1144499704 +118032,3062,Robert Mitchum,1164684192 +118032,3062,Sean Connery,1144499699 +118032,3062,World War II,1147829174 +118032,3066,World War II,1160277329 +118032,3068,James Mason,1164685269 +118032,3068,Paul Newman,1147828905 +118032,3088,James Stewart,1160264292 +118032,3095,Henry Fonda,1177542420 +118032,3095,John Steinbeck,1239673534 +118032,3098,Robert Redford,1147828573 +118032,3098,Wilford Brimley,1220313623 +118032,3099,Warren Beatty,1160277697 +118032,3100,Robert Redford,1160279417 +118032,3147,Frank Darabont,1160278213 +118032,3147,Stephen King,1160264278 +118032,3147,Tom Hanks,1144500245 +118032,3152,Peter Bogdanovich,1147831417 +118032,3168,Peter Fonda,1160276355 +118032,3175,Tim Allen,1160278974 +118032,3196,William Holden,1160275964 +118032,3196,World War II,1147829272 +118032,3197,Sean Connery,1160277670 +118032,3198,Dustin Hoffman,1144500583 +118032,3198,Steve McQueen,1144500585 +118032,3201,Jack Nicholson,1164685905 +118032,3296,Sidney Poitier,1160277317 +118032,3334,Humphrey Bogart,1144500287 +118032,3362,Al Pacino,1160280264 +118032,3372,World War II,1160276201 +118032,3379,Gregory Peck,1147831504 +118032,3385,John Candy,1147828830 +118032,3385,Tom Hanks,1147828809 +118032,3386,Kevin Costner,1160277044 +118032,3386,Oliver Stone,1220315600 +118032,3406,Gregory Peck,1144500069 +118032,3408,Julia Roberts,1160276386 +118032,3417,Burt Lancaster,1160276292 +118032,3420,Al Pacino,1160276076 +118032,3421,John Belushi,1144501387 +118032,3421,National Lampoon,1172029498 +118032,3451,Katherine Hepburn,1160275788 +118032,3451,Sidney Poitier,1160275778 +118032,3451,Spencer Tracy,1160275798 +118032,3468,George C. Scott,1144499597 +118032,3468,Jackie Gleason,1147828620 +118032,3468,Paul Newman,1144499593 +118032,3468,Piper Laurie,1144501059 +118032,3469,Spencer Tracy,1177542609 +118032,3471,Craig T. Nelson,1160278852 +118032,3494,John Wayne,1160277343 +118032,3507,Jack Lemmon,1160278420 +118032,3507,Walter Mattau,1160278428 +118032,3519,Gregory Peck,1160276446 +118032,3519,World War II,1160278963 +118032,3524,Dudley Moore,1160277479 +118032,3524,John Gielgud,1160277488 +118032,3529,Jack Nicholson,1172030579 +118032,3529,Jessica Lange,1172030575 +118032,3545,Joel Grey,1160276223 +118032,3545,Liza Minelli,1160276231 +118032,3549,Frank Sinatra,1160279055 +118032,3549,Marlon Brando,1160276575 +118032,3555,World War II,1147829286 +118032,3556,Kirsten Dunst,1175120900 +118032,3556,Sophia Coppola,1175120865 +118032,3578,Derek Jacobi,1164685643 +118032,3578,Joaquin Phoenix,1147830354 +118032,3578,Richard Harris,1164685665 +118032,3578,Ridley Scott,1160264250 +118032,3578,Russell Crowe,1147830354 +118032,3628,World War II,1160278957 +118032,3643,World War II,1160277530 +118032,3654,World War II,1160276566 +118032,3671,Gene Wilder,1220315876 +118032,3671,Mel Brooks,1160264089 +118032,3681,Clint Eastwood,1160264174 +118032,3691,Phoebe Cates,1160277884 +118032,3724,Donald Sutherland,1160278882 +118032,3724,Jane Fonda,1160278882 +118032,3733,John Houseman,1160279360 +118032,3753,Mel Gibson,1147830282 +118032,3755,Diane Lane,1160277660 +118032,3755,George Clooney,1144499910 +118032,3755,Jake Gyllenhaal,1164685103 +118032,3755,John C. Reilly,1220312328 +118032,3755,Mark Wahlberg,1147831106 +118032,3755,Mary Elizabeth Mastrantonio,1220312332 +118032,3755,Wolfgang Petersen,1220314306 +118032,3801,Ben Gazzara,1160264055 +118032,3801,George C. Scott,1144499552 +118032,3801,James Stewart,1144499484 +118032,3801,Lee Remick,1164683941 +118032,3812,Woody Allen,1160276390 +118032,3871,Van Heflin,1239673600 +118032,3871,Van Johnson,1239673602 +118032,3873,Jane Fonda,1144499542 +118032,3873,Lee Marvin,1144499536 +118032,3916,Denzel Washington,1220315397 +118032,3948,Robert De Niro,1160279197 +118032,4022,Tom Hanks,1164685349 +118032,4041,Debra Winger,1144499887 +118032,4041,Lou Gossett Jr.,1144501275 +118032,4041,Richard Gere,1144499894 +118032,4042,John Wayne,1160278713 +118032,4047,Civil War,1147831308 +118032,4047,Martin Sheen,1160264237 +118032,4148,Anthony Hopkins,1147830614 +118032,4148,Julianne Moore,1147830614 +118032,4148,Ridley Scott,1164684996 +118032,4186,Jack Lemmon,1160276472 +118032,4186,Walter Matthau,1160276465 +118032,4187,Sidney Poitier,1144499690 +118032,4212,Agatha Christie,1220315958 +118032,4212,Peter Ustinov,1160276326 +118032,4223,Ed Harris,1160276373 +118032,4223,Jude Law,1144499529 +118032,4223,Rachel Weisz,1147831031 +118032,4223,World War II,1144501144 +118032,4246,Hugh Grant,1160276205 +118032,4246,Renee Zellweger,1160278812 +118032,4262,Al Pacino,1160264605 +118032,4262,Brian De Palma,1220313683 +118032,4262,Brian DePalma,1172029648 +118032,4262,F. Murray Abraham,1160278539 +118032,4270,Brendan Fraser,1164685054 +118032,4270,Rachel Weisz,1160279834 +118032,4278,World War II,1239673255 +118032,4291,Dolly Parten,1160279286 +118032,4291,Lily Tomlin,1160279286 +118032,4299,Heath Ledger,1220310989 +118032,4299,Paul Bettany,1239673845 +118032,4299,Shannyn Sossamon,1239673847 +118032,4308,Nicole Kidman,1160276908 +118032,4310,Ben Affleck,1220316044 +118032,4310,Cuba Gooding Jr.,1220316070 +118032,4310,Kate Beckinsale,1160277647 +118032,4310,World War II,1147829309 +118032,4327,Charles Bronson,1144499737 +118032,4327,Eli Wallach,1220312168 +118032,4327,Horst Buchholz,1220312165 +118032,4327,James Coburn,1144499822 +118032,4327,Robert Vaughn,1144499833 +118032,4327,Steve McQueen,1144499727 +118032,4327,Yul Brynner,1144499720 +118032,4328,Yul Brynner,1160279886 +118032,4337,Candice Bergen,1144501346 +118032,4337,Richard Attenborough,1160279473 +118032,4337,Steve McQueen,1144499958 +118032,4338,World War II,1164686214 +118032,4339,Frank Sinatra,1144500871 +118032,4339,Trevor Howard,1144500876 +118032,4339,World War II,1160277393 +118032,4344,Halle Berry,1220314816 +118032,4344,John Travolta,1220314782 +118032,4349,Art Garfunkel,1239673352 +118032,4349,Martin Balsam,1239673354 +118032,4349,Mike Nichols,1239673356 +118032,4367,Angelina Jolie,1175119476 +118032,4370,Haley Joel Osment,1160279703 +118032,4370,Jude Law,1220316580 +118032,4370,Steven Spielberg,1160277430 +118032,4406,Edmond O'Brien,1220312820 +118032,4406,James Stewart,1144500343 +118032,4406,John Wayne,1144500343 +118032,4406,Lee Marvin,1160275862 +118032,4427,Anthony Hopkins,1147831434 +118032,4427,Katherine Hepburn,1147831434 +118032,4427,Peter O'Toole,1144501871 +118032,4429,Gregory Peck,1144499858 +118032,4429,Richard Baseheart,1147831086 +118032,4443,Sean Connery,1160279347 +118032,4450,Jim Schutze,1175120733 +118032,4638,Michael Crichton,1220315631 +118032,4638,Sam Neill,1160279986 +118032,4704,John Wayne,1160276989 +118032,4710,John Wayne,1160279485 +118032,4842,Christopher Walken,1239673275 +118032,4842,Tom Berenger,1239673326 +118032,4844,Bruce Willis,1160278747 +118032,4855,Clint Eastwood,1160276346 +118032,4865,Geoffrey Rush,1220313324 +118032,4865,Johnny Depp,1147829822 +118032,4896,Daniel Radcliffe,1147830678 +118032,4896,Emma Watson,1160276630 +118032,4896,Maggie Smith,1147830718 +118032,4896,Richard Harris,1147830663 +118032,4916,Henry Fonda,1160279208 +118032,4916,World War II,1160276881 +118032,4923,World War II,1160276556 +118032,4958,Owen Wilson,1175121251 +118032,4963,Brad Pitt,1220313598 +118032,4963,Elliott Gould,1160279299 +118032,4963,George Clooney,1160279288 +118032,4963,Julia Roberts,1220313605 +118032,4963,Matt Damon,1160279299 +118032,4993,Elijah Wood,1147829966 +118032,4993,Ian McKellen,1220314507 +118032,4993,Liv Tyler,1147830120 +118032,4993,Orlando Bloom,1147829966 +118032,4993,Peter Jackson,1147829980 +118032,4993,Viggo Mortensen,1147829966 +118032,4995,Russell Crowe,1220313237 +118032,5001,Humphrey Bogart,1160279464 +118032,5001,World War II,1160279464 +118032,5008,Agatha Christie,1220313202 +118032,5008,Charles Laughton,1164684608 +118032,5010,Ewan McGregor,1175121025 +118032,5010,Josh Hartnett,1175121035 +118032,5010,Ridley Scott,1144501430 +118032,5060,Donald Sutherland,1160264391 +118032,5060,Elliott Gould,1160264404 +118032,5060,Korean War,1164686184 +118032,5060,Robert Altman,1220316367 +118032,5060,Sally Kellerman,1160278334 +118032,5064,Alexandre Dumas,1220310856 +118032,5064,James Caviezel,1239673771 +118032,5064,Richard Harris,1239673768 +118032,5107,Bruce Willis,1160279801 +118032,5107,Colin Farrell,1172030754 +118032,5107,World War II,1172030763 +118032,5152,Mel Gibson,1220315740 +118032,5152,Vietnam War,1220315717 +118032,5225,Maribel Verdu,1175120210 +118032,5266,Jodie Foster,1160279351 +118032,5349,Cliff Robertson,1160279566 +118032,5349,Kirsten Dunst,1147829044 +118032,5349,Tobey Maguire,1160279566 +118032,5378,Ewan McGregor,1220313059 +118032,5378,George Lucas,1220313055 +118032,5378,Natalie Portman,1220313057 +118032,5378,Star Wars,1144500714 +118032,5388,Al Pacino,1147829588 +118032,5388,Robin Williams,1160276713 +118032,5418,Matt Damon,1175119171 +118032,5418,Robert Ludlum,1199222453 +118032,5420,Nicholas Cage,1147829396 +118032,5420,World War II,1147829396 +118032,5445,Max von Sydow,1160279219 +118032,5445,Milla Jovovich,1220315232 +118032,5445,Steven Spielberg,1160276883 +118032,5445,Tom Cruise,1160276889 +118032,5464,Jude Law,1144499948 +118032,5464,Paul Newman,1144499952 +118032,5464,Tom Hanks,1144499942 +118032,5472,Howard da Silva,1160276089 +118032,5479,Harrison Ford,1144500274 +118032,5479,Liam Neeson,1160277572 +118032,5493,James Coburn,1160276699 +118032,5497,James Coburn,1160279337 +118032,5502,Joaquin Phoenix,1147830316 +118032,5502,M. Night Shyamalan,1160279523 +118032,5502,Mel Gibson,1147830272 +118032,5505,Jake Gyllenhaal,1220313365 +118032,5505,Jennifer Anniston,1160276538 +118032,5507,Samuel L. Jackson,1220315106 +118032,5507,Vin Diesel,1160277811 +118032,5630,Anthony Hopkins,1144499932 +118032,5630,Edward Norton,1144499937 +118032,5630,Philip Seymour Hoffman,1220312388 +118032,5630,Ralph Fiennes,1160279395 +118032,5679,Naomi Watts,1147830087 +118032,5693,John Travolta,1172029657 +118032,5707,Paul Newman,1164684721 +118032,5707,Sally Field,1164684721 +118032,5747,World War I,1160264195 +118032,5810,Brittany Murphey,1160278698 +118032,5810,Eminem,1160276102 +118032,5816,Daniel Radcliffe,1147830702 +118032,5816,Emma Watson,1160276601 +118032,5816,Maggie Smith,1147830740 +118032,5816,Richard Harris,1147830750 +118032,5872,Halle Berry,1220310946 +118032,5872,James Bond,1220310962 +118032,5872,Pierce Brosnan,1175118476 +118032,5876,Brendan Fraser,1239673103 +118032,5876,Graham Greene,1160280372 +118032,5876,Michael Caine,1239673107 +118032,5899,Michael Caine,1220315111 +118032,5902,Maggie Gyllenhaal,1220311333 +118032,5902,Meryl Streep,1220311318 +118032,5902,Nicolas Cage,1220311075 +118032,5944,Jonathan Frakes,1175118609 +118032,5944,LeVar Burton,1175119503 +118032,5944,Patrick Stewart,1175119514 +118032,5944,Star Trek,1175118607 +118032,5952,Elijah Wood,1147830022 +118032,5952,Ian McKellen,1172030298 +118032,5952,John Rhys-Davies,1220314277 +118032,5952,Liv Tyler,1164684246 +118032,5952,Orlando Bloom,1147830022 +118032,5952,Peter Jackson,1144499712 +118032,5952,Viggo Mortensen,1147830022 +118032,5956,Cameron Diaz,1220312672 +118032,5956,Daniel Day-Lewis,1144500192 +118032,5956,Leonardo DiCaprio,1144501556 +118032,5956,Martin Scorsese,1220312674 +118032,5989,Christopher Walken,1160278839 +118032,5989,Leonardo DiCaprio,1147828849 +118032,5989,Steven Spielberg,1220313267 +118032,5989,Tom Hanks,1147828849 +118032,5995,Adrien Brody,1220316066 +118032,5995,Roman Polanski,1199221474 +118032,5995,World War II,1160280221 +118032,6092,Diane Franklin,1160277582 +118032,6101,Jack Lemmon,1160276899 +118032,6186,Jeff Daniels,1239673407 +118032,6186,Mira Sorvino,1239673418 +118032,6186,Robert Duvall,1239673416 +118032,6187,Kate Winslett,1160279148 +118032,6187,Kevin Spacey,1160276825 +118032,6213,Bruce Willis,1160277758 +118032,6213,Monica Bellucci,1160277760 +118032,6301,Dustin Hoffman,1160277248 +118032,6301,Sam Peckinpah,1160277245 +118032,6301,Susan George,1160277254 +118032,6303,Michael Crichton,1220315135 +118032,6305,Julie Christie,1160276415 +118032,6305,Ray Bradbury,1172029230 +118032,6333,Hugh Jackman,1220315125 +118032,6333,Ian Mckellen,1220315123 +118032,6365,Carrie Ann Moss,1160279189 +118032,6365,Keanu Reeves,1160279189 +118032,6365,Lawrence Fishburn,1160279189 +118032,6378,Charlize Theron,1160276763 +118032,6378,Donald Sutherland,1160276723 +118032,6378,Edward Norton,1160277034 +118032,6378,Jason Statham,1220313447 +118032,6378,Mark Wahlberg,1220316313 +118032,6394,John Wayne,1160278772 +118032,6416,Tom Courtenay,1239673563 +118032,6422,Civil War,1160279487 +118032,6422,James Stewart,1160279494 +118032,6435,World War II,1160277639 +118032,6441,Michael Caine,1220315859 +118032,6441,World War II,1160278757 +118032,6448,James Stewart,1160276430 +118032,6450,Robert Mitchum,1160276983 +118032,6457,World War II,1160279532 +118032,6458,George Peppard,1160276173 +118032,6458,World War I,1160278793 +118032,6459,James Mason,1164686477 +118032,6459,World War II,1160276340 +118032,6498,Peter O'Toole,1160276940 +118032,6533,Barbara Striesand,1172029347 +118032,6533,Madeline Kahn,1172029349 +118032,6537,Arnold Schwarzenegger,1220314955 +118032,6537,Clare Danes,1160279946 +118032,6539,Geoffrey Rush,1160264494 +118032,6539,Johnny Depp,1144500596 +118032,6539,Keira Knightley,1164684365 +118032,6539,Orlando Bloom,1144500598 +118032,6541,Sean Connery,1160277859 +118032,6564,Angelina Jolie,1175119546 +118032,6567,Anna Paquin,1239673778 +118032,6567,Ed Harris,1239673361 +118032,6567,Joaquin Phoenix,1220310849 +118032,6567,Scott Glenn,1239673777 +118032,6662,Peter Sellers,1147831536 +118032,6663,Peter Sellers,1147831530 +118032,6724,Ryan O'Neal,1164684344 +118032,6724,Tatum O'Neal,1164684344 +118032,6787,Robert Redford,1160277969 +118032,6852,author:Truman Capote,1220312743 +118032,6852,Truman Capote,1160278245 +118032,6870,Clint Eastwood,1160280388 +118032,6870,Sean Penn,1160280396 +118032,6874,Quentin Tarantino,1160278283 +118032,6874,Uma Thurman,1160263691 +118032,6934,Keanu Reeves,1164685034 +118032,6936,Will Ferrell,1160276357 +118032,6947,Paul Bettany,1220314536 +118032,6947,Russell Crowe,1144500396 +118032,7025,World War II,1164686192 +118032,7056,Jimmy Cagney,1160275926 +118032,7062,Burt Lancaster,1144500041 +118032,7062,Thelma Ritter,1147831213 +118032,7073,Peter Sellers,1160278568 +118032,7076,Steve McQueen,1160276208 +118032,7084,Woody Allen,1160275911 +118032,7111,Robert Mitchum,1160279455 +118032,7121,Katherine Hepburn,1160277953 +118032,7121,Spencer Tracy,1160277945 +118032,7143,Tom Cruise,1160276822 +118032,7153,Elijah Wood,1147829999 +118032,7153,Ian McKellen,1220314140 +118032,7153,Liv Tyler,1164684234 +118032,7153,Miranda Otto,1164684258 +118032,7153,Orlando Bloom,1147829999 +118032,7153,Peter Jackson,1144499378 +118032,7153,Viggo Mortensen,1147829999 +118032,7156,Vietnam War,1199222606 +118032,7158,Ben Kingsley,1239673737 +118032,7158,Jennifer Connelly,1239673733 +118032,7160,Charlize Theron,1160280365 +118032,7160,Christina Ricci,1160280365 +118032,7162,Civil War,1160276269 +118032,7162,Donald Sutherland,1160278863 +118032,7162,Jude Law,1147828706 +118032,7162,Nicole Kidman,1160276265 +118032,7162,Renee Zellweger,1220313263 +118032,7200,Gary Cooper,1239673378 +118032,7200,Otto Preminger,1239673373 +118032,7200,Rod Steiger,1239673376 +118032,7216,Humphrey Bogart,1160276666 +118032,7254,Ashton Kutcher,1160276214 +118032,7311,John Mills,1239673132 +118032,7324,Viggo Mortensen,1160276653 +118032,7379,Billy Bob Thornton,1239673394 +118032,7438,Quentin Tarantino,1160278272 +118032,7438,Uma Thurman,1160263701 +118032,7451,Lindsay Lohan,1220310942 +118032,7454,Hugh Jackman,1164684871 +118032,7454,Kate Beckinsale,1164684871 +118032,7458,Brad Pitt,1147829865 +118032,7458,Orlando Bloom,1147829865 +118032,7458,Peter O'Toole,1147829865 +118032,7479,World War II,1175118808 +118032,7493,Joanne Woodward,1144500801 +118032,7493,Lee J. Cobb,1160278621 +118032,7560,Henry Fonda,1144499994 +118032,7560,Larry Hagman,1147831276 +118032,7560,Walter Matthau,1220312665 +118032,7646,Stephen King,1160279890 +118032,7714,Richard Harris,1147830852 +118032,7714,Vanessa Redgrave,1147830860 +118032,7762,Alec Guinness,1239673509 +118032,7814,Christopher Plummer,1164686691 +118032,7814,Orson Welles,1220315712 +118032,7814,Rod Steiger,1164686691 +118032,7842,Frank Herbert,1220310840 +118032,7842,William Hurt,1239672975 +118032,7980,Robert Redford,1164684807 +118032,7980,Sean Connery,1164686437 +118032,7980,World War II,1144501449 +118032,8033,Audrey Hepburn,1147831390 +118032,8033,Hugh Griffith,1160278229 +118032,8033,Peter O'Toole,1144500256 +118032,8167,Basil Rathbone,1177542531 +118032,8167,Michael Curtiz,1239673165 +118032,8167,Olivia de Havilland,1239673163 +118032,8191,Genevieve Bujold,1160276133 +118032,8191,Richard Burton,1144500020 +118032,8207,Frederick Forsyth,1160278086 +118032,8272,Richard Harris,1172029261 +118032,8332,Glenda Jackson,1147828498 +118032,8337,Humphrey Bogart,1144500078 +118032,8368,Daniel Radcliffe,1147830686 +118032,8368,Emma Watson,1160276622 +118032,8368,Maggie Smith,1147830725 +118032,8371,Vin Diesel,1160277501 +118032,8401,Basil Rathbone,1239673613 +118032,8404,Basil Rathbone,1239673634 +118032,8404,Sherlock Holmes,1239673159 +118032,8446,Forrest Tucker,1220316138 +118032,8446,John Wayne,1220316137 +118032,8446,World War II,1147829312 +118032,8529,Steven Spielberg,1160277268 +118032,8529,Tom Hanks,1144500768 +118032,8595,George C. Scott,1147828960 +118032,8636,Kirsten Dunst,1147829055 +118032,8636,Tobey Maguire,1160279574 +118032,8665,Matt Damon,1160276188 +118032,8665,Robert Ludlum,1220315899 +118032,8675,World War II,1164686130 +118032,8772,John le Carre,1239673519 +118032,8772,Oskar Werner,1239673521 +118032,8772,Richard Burton,1239673517 +118032,8781,Meryl Streep,1160276841 +118032,8783,Bryce Dallas Howard,1160277370 +118032,8783,Joaquin Phoenix,1147830324 +118032,8783,M. Night Shyamalan,1147830255 +118032,8783,Sigourney Weaver,1160277381 +118032,8866,Kirsten Dunst,1147829013 +118032,8866,Paul Bettany,1220315758 +118032,8870,Julianne Moore,1175119406 +118032,8923,Nastassia Kinski,1160277279 +118032,8923,Roman Polanski,1220313137 +118032,8958,Jamie Foxx,1220311205 +118032,8970,Dustin Hoffman,1220311150 +118032,8970,Johnny Depp,1160280348 +118032,8970,Julie Christie,1239673109 +118032,8970,Kate Winslet,1175118719 +118032,8972,Nicholas Cage,1147829424 +118032,8977,Al Pacino,1220311520 +118032,8977,Angelina Jolie,1239673462 +118032,8977,Anthony Hopkins,1239673460 +118032,8977,Christopher Plummer,1239673870 +118032,8977,Colin Farrell,1220311517 +118032,8977,Oliver Stone,1220311519 +118032,8977,Rosario Dawson,1239673873 +118032,8984,Brad Pitt,1220315315 +118032,8984,George Clooney,1160277617 +118032,8984,Julia Roberts,1160277632 +118032,8984,Matt Damon,1160277619 +118032,25866,Errol Flynn,1239673136 +118032,25866,Michael Curtiz,1239673138 +118032,25916,World War II,1190602888 +118032,25999,Marlon Brando,1220315744 +118032,26084,Robert Preston,1220315303 +118032,26085,Marlon Brando,1144500934 +118032,26085,Trevor Howard,1144500934 +118032,26111,John Gielgud,1220311871 +118032,26111,Peter O'Toole,1220311871 +118032,26111,Richard Burton,1220311871 +118032,26117,hit men,1220313472 +118032,26139,John Wayne,1220315613 +118032,26139,Kirk Douglas,1220315615 +118032,26198,Henry Fonda,1172028154 +118032,26198,Lucille Ball,1172028163 +118032,27721,jodie foster,1239672605 +118032,27721,Julianne Moore,1175121118 +118032,27821,Nicole Kidman,1175119325 +118032,27821,Sean Penn,1175119327 +118032,27821,Sydney Pollack,1239673780 +118032,27839,Naomi Watts,1147830099 +118032,30749,Joaquin Phoenix,1220312715 +118032,30749,Nick Nolte,1239672433 +118032,30812,Jude Law,1175120984 +118032,30812,Leonardo DiCaprio,1147828688 +118032,30812,Martin Scorsese,1175120993 +118032,32261,World War II,1160279631 +118032,32587,Brittany Murphy,1239673752 +118032,32587,Bruce Willis,1220311061 +118032,32587,Elijah Wood,1220311346 +118032,32587,Jessica Alba,1220311377 +118032,32587,Quentin Tarantino,1220310784 +118032,32587,Rosario Dawson,1239673755 +118032,32587,Rutger Hauer,1220311358 +118032,32587,Sigourney Weaver,1220311380 +118032,32596,Penélope Cruz,1239673864 +118032,32721,World War II,1220315864 +118032,33036,George Kennedy,1172028940 +118032,33493,Ewan McGregor,1220313748 +118032,33493,George Lucas,1220313735 +118032,33493,Natalie Portman,1220313714 +118032,33493,Samuel L. Jackson,1220313733 +118032,33493,Star Wars,1160277239 +118032,33679,Angelina Jolie,1160276914 +118032,33679,Brad Pitt,1160276912 +118032,33794,Christian Bale,1220313240 +118032,33794,Morgan Freeman,1220313242 +118032,34536,World War II,1175120105 +118032,36517,John le Carre,1220310628 +118032,36517,Rachel Weisz,1190603525 +118032,36517,Ralph Fiennes,1199222110 +118032,36527,Anthony Hopkins,1175119249 +118032,36527,Gwyneth Paltrow,1175119260 +118032,36529,Nicolas Cage,1239673346 +118032,37741,Phillip Seymour Hoffman,1147827880 +118032,37741,Truman Capote,1175120012 +118032,39183,Michelle Williams,1190603345 +118032,39435,Antonio Banderas,1144500909 +118032,39435,Catherine Zeta-Jones,1144500909 +118032,39869,Bryce Dallas Howard,1175120280 +118032,40278,Desert Storm,1164686520 +118032,40583,Christopher Plummer,1239672817 +118032,40583,George Clooney,1175120191 +118032,40583,Matt Damon,1175120180 +118032,40815,Daniel Radcliffe,1147830693 +118032,40815,Emma Watson,1160276611 +118032,40815,Maggie Smith,1147830732 +118032,40815,Ralph Fiennes,1147830652 +118032,40819,Joaquin Phoenix,1160280251 +118032,40819,Reece Witherspoon,1160280251 +118032,41569,Naomi Watts,1147830056 +118032,41569,Peter Jackson,1147830041 +118032,41863,Tommy Lee Jones,1175118923 +118032,41997,Steven Spielberg,1220310694 +118032,43836,Kevin Kline,1160280009 +118032,43836,Steve Martin,1144499324 +118032,44004,netflixq,1147828132 +118032,45028,Garrison Keilor,1175120641 +118032,45028,Robert Altman,1175120631 +118032,45447,Tom Hanks,1164685372 +118032,45499,Hugh Jackman,1220315119 +118032,45499,Ian Mckellen,1220315118 +118032,45499,Patrick Stewart,1172028332 +118032,45722,Jack Davenport,1220314591 +118032,45722,Johnny Depp,1220312895 +118032,45722,Keira Knightley,1220312902 +118032,45722,Orlando Bloom,1220312900 +118032,45722,Stellan Skarsgard,1220314589 +118032,45730,M. Night Shyamalan,1175118563 +118032,46972,Ben Stiller,1220315186 +118032,46972,Dick Van Dyke,1220315188 +118032,46972,Robin Williams,1220315184 +118032,47629,Helen Mirren,1172027930 +118032,47950,Ben Affleck,1239673842 +118032,48304,Mel Gibson,1175119158 +118032,48516,Martin Scorsese,1175119910 +118032,48598,Gwyneth Paltrow,1239673176 +118032,48598,Sigourney Weaver,1175118658 +118032,48598,Truman Capote,1175119135 +118032,48738,Forest Whitaker,1199221211 +118032,48738,Idi Amin,1199222616 +118032,48780,Christian Bale,1199221571 +118032,48780,Hugh Jackman,1199221583 +118032,48780,Michael Caine,1220310648 +118032,48780,Scarlet Johannson,1199221586 +118032,48783,Clint Eastwood,1175118761 +118032,48783,World War II,1220310805 +118032,49272,Daniel Craig,1177542775 +118032,49272,James Bond,1177542780 +118032,49530,Jennifer Connelly,1239673702 +118032,49530,Leonardo DiCaprio,1177542695 +118032,49651,Sylvester Stallone,1175120226 +118032,49822,Angelina Jolie,1199221869 +118032,49822,Matt Damon,1199221854 +118032,49822,Robert De Niro,1199221862 +118032,50064,Beau Bridges,1239673424 +118032,50064,Cate Blanchett,1239673422 +118032,50064,George Clooney,1175119444 +118032,50064,Tobey Maguire,1175118489 +118032,50064,World War II,1220310985 +118032,50068,World War II,1177541888 +118032,50274,Peter O'Toole,1175118649 +118032,50274,Vanessa Redgrave,1239672620 +118032,51077,Nicholas Cage,1175119664 +118032,51086,Jim Carrey,1175119637 +118032,51471,Albert Finney,1220310716 +118032,51471,Ioan Gruffudd,1177542889 +118032,51471,Michael Gambon,1220310718 +118032,51575,John Travolta,1175119683 +118032,51678,Marlon Brando,1177542434 +118032,52241,Jeff Daniels,1239673152 +118032,53125,Geoffrey Rush,1220310898 +118032,53125,Jack Davenport,1220310900 +118032,53125,Johnny Depp,1220310878 +118032,53125,Keira Knightley,1220310881 +118032,53125,Orlando Bloom,1220310886 +118032,53322,Al Pacino,1220315325 +118032,53322,Brad Pitt,1220315323 +118032,53322,George Clooney,1220315330 +118032,53322,Matt Damon,1220315327 +118032,53737,Peter O'Toole,1190602557 +118032,53921,Angelina Jolie,1220311444 +118032,54997,Christian Bale,1199221816 +118032,54997,Russell Crowe,1199221797 +118032,55052,Keira Knightley,1239672739 +118032,55118,Naomi Watts,1239673094 +118032,55118,Viggo Mortensen,1239673572 +118032,55274,Cate Blanchett,1239672718 +118032,55274,Clive Owen,1239672721 +118032,55274,Geoffrey Rush,1239672723 +118032,55805,Albert Finney,1239673727 +118032,55805,Marisa Tomei,1239673719 +118032,55805,Philip Seymour Hoffman,1220310748 +118032,55805,Sidney Lumet,1239673722 +118032,55820,Tommy Lee Jones,1220310455 +118032,56757,Johnny Depp,1220313094 +118032,56757,Tim Burton,1220313102 +118032,56775,Ed Harris,1220311488 +118032,56775,Harvey Keitel,1239673438 +118032,56775,Helen Mirren,1220311492 +118032,56775,Jon Voight,1220311490 +118032,56775,Nicolas Cage,1220311484 +118032,56782,Daniel Day-Lewis,1220310271 +118032,58559,Christian Bale,1220311608 +118032,58559,Heath Ledger,1239673526 +118032,58559,Michael Caine,1220311611 +118032,58559,Morgan Freeman,1220311606 +118032,60937,Brendan Fraser,1239673465 +118032,60937,Maria Bello,1239673877 +118032,62437,James Cromwell,1239672930 +118032,62437,Oliver Stone,1239672920 +118032,64034,David Thewlis,1239672385 +118032,64034,World War II,1239672373 +118032,66798,Andy Garcia,1239673862 +118032,66798,Jean Reno,1239673859 +118032,66798,Steve Martin,1239673444 +118057,37731,gang brawls,1294193948 +118057,37731,unrealistic,1294193942 +118071,2762,I see dead people,1151457804 +118077,296,cool,1434753359 +118077,296,great soundtrack,1434753359 +118077,296,quentin tarantino,1434753359 +118089,593,cannibalism,1165919523 +118089,593,Hannibal Lector,1165924084 +118089,593,Jodie Foster,1165924090 +118089,593,serial killer,1165919529 +118089,780,stupid,1165949841 +118089,1464,overrated,1165919300 +118089,2617,stupid,1165949821 +118089,2706,stupid,1165949807 +118089,3785,stupid,1165949815 +118089,4878,Cool but freaky,1175982444 +118089,27660,animation,1165923707 +118089,27788,time travel,1166355697 +118089,32587,comic book,1165923675 +118089,33679,Angelina Jolie,1165922842 +118089,33679,Shooting and shooting,1165922844 +118089,38061,super funney,1173155867 +118089,43919,stupid,1165949894 +118089,48774,Potential Oscar Nom,1173155778 +118107,356,classic,1256148687 +118107,356,drama,1256148678 +118107,356,great soundtrack,1256148731 +118107,356,psychology,1258689738 +118107,356,Tom Hanks,1256148671 +118107,356,war,1256148736 +118129,296,Tarantino,1140901772 +118129,527,holocaust,1140902132 +118129,778,drugs,1140902183 +118129,924,Kubrick,1140902053 +118129,1089,Tarantino,1140901774 +118129,1136,comedy,1141473263 +118129,1136,Gilliam,1141472767 +118129,1193,psycho,1140902119 +118129,1194,drugs,1140901994 +118129,1194,hippie,1140901994 +118129,1194,puff away,1140901972 +118129,1206,Kubrick,1140901733 +118129,1597,Mel Gibson,1140901741 +118129,1809,drama,1140901890 +118129,1809,japan,1140901888 +118129,1918,action,1140901754 +118129,1918,comedy,1140901752 +118129,1921,mindfuck,1398979080 +118129,2692,surreal,1140901932 +118129,2706,dumb,1140902195 +118129,2706,stupid,1140902190 +118129,2843,kusturica,1140901699 +118129,2931,gypsy,1142781473 +118129,2931,kusturica,1142781473 +118129,3000,Miyazaki,1140902033 +118129,4052,geeks,1140901908 +118129,4226,complicated,1398979136 +118129,4226,nonlinear,1398979124 +118129,4226,plot twist,1398979131 +118129,4226,tense,1398979142 +118129,4848,art house,1140901925 +118129,4874,good,1140901800 +118129,5617,BDSM,1140901812 +118129,5618,Miyazaki,1140901953 +118129,5690,Miyazaki,1140901796 +118129,5971,Miyazaki,1140901860 +118129,5992,egotism,1140901849 +118129,5992,girlie movie,1140901851 +118129,5995,holocaust,1140901866 +118129,7371,breathtaking,1141516635 +118129,7371,drama,1141516635 +118129,7371,von Trier,1141516635 +118129,7438,Tarantino,1140902020 +118129,8327,Kitano,1140901844 +118129,8581,geeks,1140901875 +118129,8914,clever,1398979049 +118129,8914,complicated,1398979040 +118129,8914,hard sf,1398979068 +118129,8914,intellectual,1398979055 +118129,8914,midfuck,1398979029 +118129,8914,time travel,1398979060 +118129,27604,japan,1140901949 +118129,27773,visually appealing,1398979100 +118129,27834,fatherhood,1150566243 +118129,33004,humor,1140902162 +118129,33004,sci-fi,1140902160 +118129,34072,Penguins value their babies,1140902025 +118129,65642,Not enough complicated,1398978830 +118129,65642,Nudity (Topless),1398978869 +118129,65642,predictable,1398978856 +118129,65642,time travel,1398978839 +118129,65642,too predictable,1398978883 +118129,96610,Bruce Willis,1398978912 +118129,96610,dystopia,1398978941 +118129,96610,illogical,1398978921 +118129,96610,plot holes,1398978927 +118129,96610,time travel,1398978917 +118141,1274,comic book,1147086379 +118141,1527,milla,1138724869 +118141,1809,Takeshi Kitano,1147777265 +118141,2019,kurosawa,1156602066 +118141,2019,toshiro mifune,1156602066 +118141,2788,Gilliam,1139478847 +118141,2788,MontyPython,1139478847 +118141,2905,kurosawa,1156602103 +118141,2905,toshiro mifune,1156602103 +118141,3793,comic book,1147086435 +118141,4640,Takeshi Kitano,1147777190 +118141,4865,alan moore,1147086410 +118141,4865,comic book,1147086395 +118141,4865,Comics,1141296790 +118141,4865,Depp,1141296790 +118141,5219,milla,1138724838 +118141,5464,comic book,1147086480 +118141,6333,comic book,1147086426 +118141,7373,comic book,1147086418 +118141,8012,Takeshi Kitano,1147777343 +118141,8327,Takeshi Kitano,1147777335 +118141,8370,Takeshi Kitano,1147777287 +118141,8636,comic book,1147086474 +118141,26840,Takeshi Kitano,1147777278 +118141,30803,Kim Ki-duk,1152124913 +118141,32587,comic book,1147086369 +118141,34319,ewan mcgregor,1162909776 +118141,34319,scarlett johansson,1162909776 +118141,34405,josh whedon,1142949698 +118141,37733,comic book,1147086443 +118141,39183,Gay Cowboy,1139478696 +118141,41997,Dramatic,1141296622 +118141,41997,israel,1141296716 +118141,41997,palestine,1141296716 +118141,41997,terrorism,1141296572 +118141,41997,true story,1141296619 +118141,44191,alan moore,1147086339 +118141,44191,comic book,1147086339 +118141,47629,Helen Mirren,1171488790 +118157,115617,funny,1430338573 +118157,115617,happy ending,1430338573 +118157,115617,sarcastic,1430338573 +118173,62721,black comedy,1430512560 +118173,62721,comedy,1430512560 +118173,62721,detective movie,1430512560 +118184,260,fav,1442934873 +118184,260,Star Wars,1442934853 +118197,260,aliens,1432124301 +118197,260,atmospheric,1432124303 +118197,260,classic,1430828754 +118197,260,Science Fiction,1430828772 +118197,288,brutality,1432124096 +118197,288,mindfuck,1432124093 +118197,288,psychedelic,1432124102 +118197,356,inspirational,1432045909 +118197,356,Oscar (Best Actor),1432123984 +118197,356,psychology,1432045912 +118197,527,Nazi Germany,1432124801 +118197,665,drama,1432045780 +118197,665,great music,1432045795 +118197,778,dark comedy,1432046118 +118197,778,surreal,1432046123 +118197,924,artificial intelligence,1432124040 +118197,924,futuristic,1432124045 +118197,924,philosophical,1432124047 +118197,924,sci-fi,1432124041 +118197,1136,imdb top 250,1432124072 +118197,1136,Monty Python,1432124065 +118197,1136,parody,1432124062 +118197,1196,classic,1432124320 +118197,1196,sci-fi,1432124322 +118197,1196,Star Wars,1432124317 +118197,1210,great soundtrack,1432124346 +118197,1210,Star Wars,1432124334 +118197,1584,aliens,1432124127 +118197,1584,future,1432124133 +118197,1584,religion,1432124129 +118197,1584,sci-fi,1432124124 +118197,2571,philosophy,1432045717 +118197,2571,virtual reality,1432045711 +118197,2628,fantasy,1432124228 +118197,2628,Natalie Portman,1432124229 +118197,2628,Star Wars,1432124221 +118197,2762,Bruce Willis,1432045579 +118197,2762,psychological,1432045569 +118197,4720,afterlife,1432045621 +118197,4720,Horror,1432045605 +118197,5378,robots,1432124256 +118197,5378,Star Wars,1432124251 +118197,6016,based on a true story,1432046031 +118197,7254,psychology,1432045548 +118197,7254,sci-fi,1432045536 +118197,33493,great soundtrack,1432124279 +118197,33493,sci-fi,1432124275 +118197,33493,Star Wars,1432124272 +118197,56339,horror,1432123945 +118197,56339,twist ending,1432123949 +118197,79132,alternate reality,1432045684 +118197,79132,mindfuck,1432045693 +118197,103980,acting,1432045872 +118197,103980,Woody Allen,1432045869 +118197,111360,comedy,1432124676 +118197,111360,funny,1432124676 +118197,111360,Scarlett Johansson,1432045482 +118197,111360,scifi,1432045490 +118197,111360,tricky,1432124676 +118206,260,inspiring,1433613522 +118206,260,space,1433613499 +118206,133389,amitabh bachan,1433613700 +118206,133389,excellent actors,1433613711 +118239,1704,thoughtful,1428330579 +118239,2329,great acting,1428330464 +118239,4995,twist ending,1428330506 +118239,111759,futuristic,1428330663 +118239,111759,good script,1428330663 +118239,111759,sci-fi,1428330663 +118254,5237,military academy,1225194028 +118277,296,action,1420837481 +118277,296,fast paced,1420837481 +118277,296,great acting,1420837481 +118277,58295,1970s,1354049912 +118277,58295,london,1354049908 +118277,58295,robbery,1354049918 +118277,77800,dark comedy,1439624576 +118277,77800,funny,1439624579 +118277,81932,boxing,1295107218 +118308,260,action,1436875072 +118308,260,special effects,1436875079 +118344,7502,gritty,1422235847 +118344,7502,tv miniseries,1422235847 +118344,7502,world war ii,1422235847 +118373,186,Robin Williams,1276884248 +118377,136020,Moore-esque,1446920402 +118377,145418,communist witch-hunt,1446920368 +118395,296,Best Performance: Samuel L. Jackson as Jules Winnfield,1194234090 +118395,296,Highly quotable,1194234085 +118395,296,moral ambiguity,1194234079 +118395,296,tarantino is god,1194234076 +118395,296,THRILL CRIME,1194234081 +118395,318,cinematographer-director,1194234503 +118395,318,examines relationship between our lives and our freedom,1194234535 +118395,318,institutionalization,1194234549 +118395,318,tim robbins performance,1194234482 +118395,333,Chris Farley,1194374506 +118395,333,Funniest Movies,1194374509 +118395,551,beautiful,1194409984 +118395,551,creepy,1194409984 +118395,551,johnny depp,1194409984 +118395,551,Tim Burton,1194409966 +118395,1193,institutionalization,1194234675 +118395,1193,relationship between mental illnesses and sanity,1194234694 +118395,1197,chearful a must see classic,1194235422 +118395,1197,Christopher Guest,1194235435 +118395,1197,feel-good,1194235408 +118395,1197,i own this,1194235425 +118395,1197,Quotable,1194235457 +118395,1197,seen more than once,1194235430 +118395,1884,cynical,1194236553 +118395,1884,drugs,1194236649 +118395,1884,freedom from society,1194236649 +118395,1884,gonzo,1194236649 +118395,1884,hunter s. thompson,1194236649 +118395,1884,satirical,1194236669 +118395,2858,biting,1194233865 +118395,2858,cinematographically examines issues in contemporary cultre,1194233804 +118395,2858,excellent cinematography,1194233874 +118395,2858,surrealism,1194233896 +118395,2959,Palahniuk's twisted worlds taken to the screen,1194234201 +118395,2959,psychologicsl games,1194234242 +118395,2959,questioning sanity,1194234250 +118395,2959,subversion,1194234209 +118395,3000,anime,1194235971 +118395,3000,environmental,1194235967 +118395,3000,fantasy world,1194235974 +118395,3000,Hayao Miyazaki,1194235960 +118395,3000,jobs verses environment,1194236018 +118395,3000,Owned,1194235962 +118395,3000,wilderness,1194235972 +118395,3786,coming-of-age,1194237753 +118395,3786,lesbian,1194237759 +118395,3786,satire,1194237756 +118395,3786,sexuality,1194237755 +118395,4034,drugs,1194236763 +118395,4034,POLICE CORRUPTION,1194236773 +118395,4816,ben stiller,1194235147 +118395,4816,good to own and watch over and over,1194235147 +118395,4816,hysterical,1194235147 +118395,4816,mindless one liners,1194235147 +118395,4816,Will Ferrell,1194235147 +118395,5618,anime,1194235878 +118395,5618,characters were beautiful. themes of responsibility to others and nature,1194235878 +118395,5618,Miyazaki,1194235878 +118395,6218,closeted homosexual,1194237387 +118395,6218,family tolerance,1194237379 +118395,6218,Funny,1194237372 +118395,6218,soccer,1194237374 +118395,6218,women's lib,1194237408 +118395,6331,heartwarming,1194235697 +118395,6331,spelling bee,1194235697 +118395,7361,brought me almost too and painfully involved with the story,1194234374 +118395,7361,colourful,1194234338 +118395,7361,Futuristmovies.com,1194234315 +118395,46578,indie,1194235596 +118395,46578,Nietzche,1194235634 +118395,46578,off-beat comedy,1194235634 +118395,46578,Steve Carell,1194235634 +118395,48394,beautiful,1194235783 +118395,48394,creates a new world,1194235783 +118395,48394,visually appealing,1194235783 +118395,53125,adventure. boats,1194298303 +118395,53125,johnny depp,1194298303 +118395,53125,pirates,1194298334 +118395,55269,Adrien Brody,1194234795 +118395,55269,cinematography,1194234880 +118395,55269,Owen Wilson,1194234794 +118395,55269,The ensemble of previous Anderson movies coming together in a whoole new beautiful world,1194234880 +118395,55269,the train,1194234880 +118395,55269,Wes Anderson movies,1194234880 +118395,55765,conspiracy,1194409633 +118395,55765,crime,1194409623 +118395,55765,drugs,1194409617 +118395,55765,gangster,1194409595 +118395,55765,historical,1194409608 +118395,55765,Ridley Scott,1194409589 +118395,55765,Russell Crowe,1194409585 +118423,1573,cheesy ending,1414814960 +118423,2959,overrated,1393069097 +118423,31413,austrian,1393059550 +118423,31413,drugs,1393059494 +118423,31413,psychology,1393059498 +118423,31413,thoughtful,1393059534 +118423,90405,great idea wasted,1399394002 +118423,97304,heroism,1396807113 +118434,50,twist ending,1449956861 +118457,300,crime,1366498599 +118457,300,intelligent,1366498615 +118457,300,Ralph Fiennes,1366498589 +118457,300,Robert Redford,1366498593 +118457,373,Dennis Hopper,1366582316 +118457,373,film noir,1366582313 +118457,373,J.T. Walsh,1366582305 +118457,373,John Dahl,1366582309 +118457,474,Anamorphic Blow-Up,1366499119 +118457,474,assassination,1366499122 +118457,474,Clint Eastwood,1366499111 +118457,474,John Malkovich,1366499103 +118457,474,suspenseful,1366499125 +118457,1997,satan,1366498635 +118457,1997,satanism,1366498636 +118457,2761,animation,1366498247 +118457,2761,based on a book,1366498243 +118457,2761,classical animation,1366498227 +118457,2761,emotional,1366498239 +118457,2761,friendship,1366498233 +118457,2761,Jennifer Aniston,1366498191 +118457,2761,redemption,1366498255 +118457,2761,robots,1366498227 +118457,2761,small town,1366498202 +118457,2761,Vin Diesel,1366498196 +118457,2890,anti-war,1366498374 +118457,2890,black comedy,1366498360 +118457,2890,caper,1366498363 +118457,2890,George Clooney,1366498349 +118457,2890,Gulf War,1366498347 +118457,2890,humorous,1366498354 +118457,2890,iraq,1366498386 +118457,2890,Mark Wahlberg,1366498317 +118457,2890,satirical,1366498367 +118457,2890,tense,1366498382 +118457,3068,screenwriter:David Mamet,1366498953 +118457,3068,Sidney Lumet,1366498957 +118457,3075,atmospheric,1366769609 +118457,3075,black and white,1366769604 +118457,3075,Catherine Deneuve,1366769592 +118457,3075,eerie,1366769623 +118457,3075,loneliness,1366769626 +118457,3075,Roman Polanski,1366769585 +118457,3075,sisters,1366769617 +118457,3527,aliens,1366500266 +118457,3527,Arnold Schwarzenegger,1366500252 +118457,3527,Jesse Ventura,1366500262 +118457,3527,predator,1366500257 +118457,5266,David Fincher,1366580907 +118457,5266,Kristen Stewart,1366580896 +118457,5266,thriller,1366580913 +118457,5388,Christopher Nolan,1366580810 +118457,5388,detective,1366580835 +118457,5388,Hilary Swank,1366580814 +118457,5388,insomnia,1366580827 +118457,5388,murder,1366580822 +118457,5388,police investigation,1366580818 +118457,5388,Robin Williams,1366580880 +118457,5388,thought-provoking,1366580841 +118457,5445,crime,1366580724 +118457,5893,femme fatale,1366582249 +118457,5893,John Dahl,1366582245 +118457,5893,Linda Fiorentino,1366582237 +118457,5893,modern noir,1366582242 +118457,6787,conspiracy,1366499446 +118457,6787,Dustin Hoffman,1366499475 +118457,6787,investigation,1366499467 +118457,6787,thriller,1366499480 +118457,6932,Hayden Christensen,1366498774 +118457,6932,hoax,1366498765 +118457,6932,Peter Sarsgaard,1366498758 +118457,6932,TWENTYSOMETHING LIFE,1366498779 +118457,7018,Alan J. Pakula,1366499496 +118457,7018,fantastic plot twister,1366499510 +118457,7018,Harrison Ford,1366499503 +118457,51540,crime,1366770532 +118457,51540,David Fincher,1366770504 +118457,51540,investigation,1366770511 +118457,51540,investigative journalism,1366770526 +118457,51540,Jake Gyllenhaal,1366770508 +118457,51540,long,1366770523 +118457,51540,Mark Ruffalo,1366770500 +118457,51540,Robert Downey Jr.,1366770495 +118457,51540,serial killer,1366770493 +118457,51540,slow,1366770517 +118457,55276,corporate espionage,1366498908 +118457,55276,Sydney Pollack,1366498897 +118457,55276,Tilda Swinton,1366498890 +118457,55276,Tom Wilkinson,1366498894 +118457,63062,angelina jolie,1366770574 +118457,71579,adultery,1366499674 +118457,71579,BBC Films,1366499691 +118457,71579,biographical,1366499702 +118457,71579,bittersweet,1366499707 +118457,71579,british,1366499684 +118457,71579,coming of age,1366499660 +118457,71579,Emma Thompson,1366499688 +118457,71579,May-December romance,1366499681 +118457,71579,Paris,1366499711 +118457,71579,school,1366499667 +118457,71579,virginity,1366499662 +118457,73808,Dark,1366770656 +118457,73808,Hong-jin Na,1366770650 +118457,73808,police,1366770662 +118457,90439,big corporations,1366498845 +118457,90439,Cynicism,1366498828 +118457,90439,ethics,1366498832 +118457,90439,Kevin Spacey,1366498823 +118457,90439,New York City,1366498854 +118457,90439,realistic,1366498817 +118457,90439,suspense,1366498812 +118479,8784,Natalie Portman,1449553675 +118479,72011,Anna Kendrick,1449553720 +118479,72011,George Clooney,1449553723 +118479,79684,Emma Stone,1452668693 +118479,88163,Emma Stone,1448864584 +118479,88163,romantic comedy,1448864589 +118479,94266,Jason Segal,1448864649 +118490,508,aids,1188501978 +118490,508,gay,1188501972 +118490,508,Oscar (Best Actor),1188501964 +118490,1091,comedy,1188501798 +118490,1091,funny,1188501798 +118490,1556,boat,1188501819 +118490,6373,comedy,1188501716 +118490,6373,God,1188501716 +118495,260,romance,1439672510 +118495,260,"sf,science fiction",1439672501 +118495,260,thriller,1439672520 +118505,924,Stanley Kubrick,1252117694 +118506,260,original,1439864739 +118506,260,well made,1439864758 +118507,1196,classic,1450012480 +118507,1196,space,1450012471 +118507,2746,musical,1448186012 +118507,2746,Steve Martin,1448186010 +118507,6975,disturbing,1448186224 +118507,6975,Michael Haneke,1448186228 +118507,7318,Mel Gibson,1451475945 +118507,7318,overrated,1451475953 +118507,7318,propaganda,1451475952 +118507,81562,true story,1451923813 +118507,104685,musical,1449089563 +118507,108540,friendship,1452449522 +118507,108540,poverty,1452449546 +118507,109487,Matthew McConaughey,1448628536 +118507,109487,physics,1448628526 +118507,109487,space,1448628519 +118507,109487,time-travel,1448628529 +118507,112689,disturbing,1448186149 +118507,122886,Plot Recycling,1452257297 +118507,131724,fascinating,1449518904 +118507,131724,homicide investigation,1449518906 +118507,131724,investigative journalism,1449518901 +118507,131724,mystery,1449518908 +118516,3684,Soundtrack by Dave Grusin,1442264824 +118516,128620,Continuous shot,1442264758 +118536,260,future fantasy,1442189620 +118536,260,sci-fi,1442189601 +118547,2028,war,1440960918 +118556,370,hilarious,1417112833 +118556,380,Arnold Schwarzenegger,1417111700 +118556,380,espionage,1417111715 +118556,380,funny,1417111718 +118556,380,Jamie Lee Curtis,1417111705 +118556,1079,black comedy,1417112384 +118556,1079,Kevin Kline,1417112369 +118556,1127,amazing photography,1417059903 +118556,1265,alternate reality,1417048217 +118556,1265,Bill Murray,1417048203 +118556,1265,feel-good,1417048215 +118556,1265,original plot,1417048227 +118556,1265,self discovery,1417048221 +118556,1265,time loop,1417048198 +118556,1270,1980s,1417112054 +118556,1270,alternate reality,1417112032 +118556,1270,Christopher Lloyd,1417112022 +118556,1270,classic,1417112051 +118556,1270,Michael J. Fox,1417112035 +118556,1270,Steven Spielberg,1417112044 +118556,1270,time loop,1417112028 +118556,1485,classic comedy,1417112293 +118556,1485,jim carrey,1417112274 +118556,1485,over the top,1417112284 +118556,1625,atmospheric,1417046434 +118556,1625,michael douglas,1417046383 +118556,1625,surprise ending,1417046458 +118556,1704,excellent script,1417059498 +118556,1704,feel-good,1417059596 +118556,1704,genius,1417059608 +118556,1834,David Mamet,1417047011 +118556,1834,mystery,1417046919 +118556,1834,Rebecca Pidgeon,1417047126 +118556,1834,slow,1417047058 +118556,1834,Steve Martin,1417047079 +118556,1834,twist ending,1417046882 +118556,1923,hilarious,1417112328 +118556,2692,alternate reality,1417112514 +118556,2692,notable soundtrack,1417112527 +118556,2692,original,1417112558 +118556,2692,visually appealing,1417112521 +118556,2712,atmospheric,1417112737 +118556,2712,enigmatic,1417112722 +118556,2712,notable soundtrack,1417112746 +118556,2712,Nudity (Full Frontal - Notable),1417112735 +118556,2916,alternate reality,1417112171 +118556,2916,alternate universe,1417112159 +118556,2916,cult film,1417112192 +118556,2916,memory,1417112166 +118556,2916,original plot,1417112179 +118556,2959,atmospheric,1417112627 +118556,2959,dark comedy,1417112634 +118556,2959,Edward Norton,1417112603 +118556,2959,helena bonham carter,1417112616 +118556,2959,twist ending,1417112608 +118556,3147,compassionate,1417059752 +118556,3147,great acting,1417059743 +118556,3949,depressing,1417111514 +118556,3949,disturbing,1417111573 +118556,3949,loneliness,1417111558 +118556,4995,twist ending,1417059558 +118556,6711,Amazing Cinematography,1417047362 +118556,6711,atmospheric,1417047332 +118556,6711,Bill Murray,1417047340 +118556,6711,complex characters,1417048045 +118556,6711,intelligent,1417047348 +118556,6711,reflective,1417047337 +118556,6711,Scarlett Johansson,1417047351 +118556,6711,visually appealing,1417047378 +118556,7158,Jennifer Connelly,1417111600 +118556,8949,dialogue driven,1417048116 +118556,8949,friendship,1417048101 +118556,8949,funny,1417048124 +118556,8949,Nudity (Topless),1417048089 +118556,8949,Paul Giamatti,1417048097 +118556,8949,wine,1417048075 +118556,30803,quiet,1417047481 +118556,30803,Romantic and sweet,1417047486 +118556,72998,beautiful scenery,1417059846 +118556,72998,long,1417059860 +118651,8914,I didn't get it.,1138206912 +118654,31101,crime,1426106312 +118654,31101,meaning of life,1426106312 +118654,31101,revolutionary,1426106312 +118666,296,cult film,1420398533 +118666,296,sarcasm,1420398533 +118666,296,tarantino,1420398533 +118666,2161,soundtrack,1359923249 +118666,2501,inspirational,1338810345 +118666,2501,patriotic,1338810345 +118666,3224,kobo abe,1358108507 +118666,4902,Guillermo del Toro,1359322040 +118666,5673,Adam Sandler,1364739528 +118666,6773,bizarre,1359923122 +118666,6773,grotesque,1359923122 +118666,6936,Christmas,1387830961 +118666,6936,Will Ferrell,1387830957 +118666,6936,Zooey Deschanel,1387830954 +118666,39231,Cameron Crowe,1341091463 +118666,39231,great soundtrack,1358346453 +118666,39231,Kirsten Dunst,1358346459 +118666,39231,Orlando Bloom,1358346462 +118666,39231,romantic,1358346478 +118666,42632,brutality,1374519344 +118666,42632,Chan-wook Park,1374519339 +118666,42632,surreal,1374519354 +118666,48394,Guillermo del Toro,1359322193 +118666,50005,china,1331659877 +118666,50005,cinematography,1331659877 +118666,50005,landscape,1331659877 +118666,56339,Guillermo del Toro,1359322166 +118666,79824,babies,1297925639 +118666,79824,cinematography,1297925639 +118666,79824,french,1297925638 +118666,79824,soundtrack,1297925639 +118666,85211,japanese,1355123109 +118666,85211,murakami,1355123082 +118666,91653,cameron crowe,1334570444 +118666,91653,feel-good,1334570444 +118666,91653,predictable,1334570444 +118666,93287,"""Jack black""",1331659586 +118666,93287,"""owen wilson""",1331659586 +118666,93287,birding,1331659587 +118666,93287,birds,1331659587 +118666,93287,landscapes,1331659587 +118666,93287,nature,1331659586 +118666,93840,bloody,1359732295 +118666,94896,true story,1358346366 +118666,96606,beautiful cinematography,1376413366 +118666,96606,Ron Fricke,1376413362 +118666,97870,disability,1361641112 +118666,97938,emotional,1360434161 +118666,99441,animals,1357071863 +118666,99441,imax,1357071870 +118666,99441,nature,1357071877 +118666,101088,beautiful,1420396245 +118666,103418,latvian,1372798123 +118666,104374,charming,1389333702 +118666,104374,touching,1389333703 +118666,105835,cinematography,1420396126 +118666,105835,confusing,1420396109 +118666,105835,mia wasikowska,1420396143 +118666,105835,surreal,1420396149 +118666,111778,adventure,1420396302 +118666,111778,beautiful,1420396294 +118666,111778,wilderness,1420396286 +118687,260,Cult,1443856142 +118687,260,sci-fi,1443856043 +118690,1080,hilarious,1165878820 +118693,260,New ear of imagination,1442975851 +118693,260,Peek of the future,1442975910 +118696,26,Ei muista,1169467667 +118696,188,Christopher Walken,1173026826 +118696,188,jonossa,1173026827 +118696,198,jonossa,1170887462 +118696,223,pitäs kai jaksaa kattoa,1185878203 +118696,253,book was better,1169756703 +118696,628,jonossa,1169465122 +118696,748,Charlie Sheen,1169590688 +118696,923,jonossa,1169468948 +118696,1199,jonossa,1169468827 +118696,1500,jonossa,1169654880 +118696,1892,Michael Douglas,1169590482 +118696,2268,Ei muista,1169467410 +118696,2822,Ei muista,1170093382 +118696,3213,Ei muista,1169467467 +118696,3386,Ei muista,1169467762 +118696,3980,Can't remember,1169664052 +118696,4007,Ei muista,1169467719 +118696,4210,Ei muista,1169467812 +118696,4902,Guillermo del Toro,1172930798 +118696,5054,Ei muista,1169467678 +118696,5064,Ei muista,1169467739 +118696,5710,bud spencer,1169589675 +118696,5720,bud spencer,1169590025 +118696,5720,terence hill,1169590054 +118696,6213,Ei muista,1169663679 +118696,6618,Ei muista,1169467317 +118696,7099,jonossa,1172930868 +118696,7841,Can't remember,1169467160 +118696,7841,jonossa,1170888082 +118696,7949,jonossa,1170804797 +118696,26203,Can't remember,1169467221 +118696,31184,jonossa,1170888169 +118696,31225,Ei muista,1169467699 +118696,31923,Ei muista,1169467340 +118696,33896,jonossa,1169466860 +118696,37830,jonossa,1169467289 +118696,40148,jonossa,1169467169 +118696,40732,jonossa,1169442744 +118696,42718,jonossa,1170887674 +118696,43932,jonossa,1169244621 +118696,43936,jonossa,1169468042 +118696,44828,jonossa,1169244716 +118696,45183,jonossa,1169244853 +118696,45431,jonossa,1169756866 +118696,45517,jonossa,1169244891 +118696,45720,jonossa,1169244734 +118696,45726,jonossa,1169756578 +118696,45728,jonossa,1169244982 +118696,46578,jonossa,1169244983 +118696,46723,jonossa,1169468632 +118696,46850,jonossa,1169466895 +118696,47099,jonossa,1169993805 +118696,47264,jonossa,1169472393 +118696,47382,jonossa,1169756631 +118696,47518,jonossa,1169244725 +118696,47610,jonossa,1169244894 +118696,47629,jonossa,1170799212 +118696,47952,jonossa,1169244607 +118696,48304,jonossa,1169467394 +118696,48322,jonossa,1169244775 +118696,48394,Guillermo del Toro,1172930836 +118696,48783,lataappa,1169467130 +118696,53000,not as good as the first,1188754653 +118696,53435,jonossa,1185877618 +118696,53972,jonossa,1185877598 +118703,1339,Horror,1196056523 +118703,2294,Adventure,1196056515 +118727,1234,Robert Redford,1140999112 +118727,1234,Sweet thriller,1140999112 +118738,3147,Stephen King,1215027062 +118738,4027,would see again,1219168674 +118738,6303,adapted from:book,1219168501 +118738,68954,Fun,1262133660 +118738,68954,well done,1262133677 +118738,72294,fantastic CG,1262134066 +118738,72294,Ghosts too scary,1262133996 +118738,72294,special effects weird,1262134758 +118745,260,war,1442297365 +118753,260,archetypal,1439231220 +118753,260,George Lucas,1439231152 +118753,260,Harrison Ford,1439231179 +118753,260,Mark Hamill,1439231168 +118766,85025,cinematography,1347195993 +118766,85025,stupid ending,1347195961 +118766,101362,acting,1365623501 +118766,101362,predictable,1365623465 +118766,101362,Special Effects,1365623484 +118766,101362,weak plot,1365623465 +118766,106487,Abrupt ending,1385861185 +118766,108188,Action,1390090991 +118766,108188,predictable,1390090980 +118766,112083,gay,1420237715 +118766,112083,legal,1420237715 +118766,112083,marriage,1420237715 +118790,32,Bruce Willis,1267971589 +118790,293,Gary Oldman,1267972023 +118790,293,Jean Reno,1267972031 +118790,293,Natalie Portman,1267972029 +118790,296,Black comedy,1267971673 +118790,296,dark comedy,1267971669 +118790,296,Eric Stoltz,1267972875 +118790,296,nonlinear,1267971676 +118790,296,rape,1267972816 +118790,296,Samuel L. Jackson,1267971679 +118790,318,Tim Robbins,1267973087 +118790,509,atmospheric,1267974317 +118790,509,beautiful,1267974322 +118790,509,erotic,1267974377 +118790,509,great soundtrack,1267974310 +118790,509,Harvey Keitel,1267974336 +118790,509,Holly Hunter,1267974400 +118790,509,lyrical,1267974388 +118790,551,gothic,1268831397 +118790,778,black comedy,1267972191 +118790,778,Scotland,1267972165 +118790,1073,chocolate,1283937662 +118790,1073,Gene Wilder,1267976057 +118790,1073,whimsical,1267976048 +118790,1172,touching,1283938683 +118790,1173,dark comedy,1267974134 +118790,1173,great soundtrack,1267974147 +118790,1173,Tim Roth,1267974156 +118790,1193,psychology,1267973051 +118790,1230,Diane Keaton,1267972931 +118790,1230,romantic,1267972940 +118790,1243,Gary Oldman,1269271515 +118790,1243,quirky,1269271563 +118790,1243,Tim Roth,1269271525 +118790,1245,Gabriel Byrne,1267975351 +118790,1246,inspirational,1283938583 +118790,1398,Chris O'Donnell,1283937291 +118790,1398,romantic,1283938292 +118790,1398,Sandra Bullock,1283937304 +118790,1408,Daniel Day-Lewis,1267973603 +118790,1408,great soundtrack,1267973639 +118790,1527,Bruce Willis,1283937883 +118790,1527,Gary Oldman,1267971562 +118790,1527,great cinematography,1283937866 +118790,1556,bad sequel,1267975271 +118790,1556,Jason Patric,1267975266 +118790,1605,Benicio Del Toro,1267971188 +118790,2654,Lon Chaney Jr.,1267973802 +118790,2654,werewolf,1267973750 +118790,2654,werewolves,1267973753 +118790,2731,childhood,1267972997 +118790,2731,emotional,1267972979 +118790,2731,reflective,1267972991 +118790,2959,Edward Norton,1267971634 +118790,2959,psychology,1267971640 +118790,3386,Gary Oldman,1267971507 +118790,3420,Al Pacino,1283939092 +118790,3967,british,1267972672 +118790,3967,great soundtrack,1267972653 +118790,3967,musical,1267972641 +118790,4014,chocolate,1267975979 +118790,4014,feel-good,1267975877 +118790,4014,Juliette Binoche,1267975951 +118790,4226,nonlinear,1267971615 +118790,4298,heist,1283938443 +118790,4973,feel-good,1267972095 +118790,4973,great cinematography,1283937840 +118790,4973,great soundtrack,1283938009 +118790,6502,British,1267972419 +118790,6502,london,1267972431 +118790,6502,Zombie,1267972408 +118790,6502,zombies,1267972406 +118790,6874,anime violence,1267972753 +118790,6874,Uma Thurman,1267972758 +118790,7151,Colin Firth,1267972496 +118790,7151,emotional,1267972529 +118790,7151,great soundtrack,1283938043 +118790,7151,visually appealing,1267972541 +118790,27765,Colin Firth,1268830800 +118790,30793,chocolate,1267976095 +118790,33834,John Leguizamo,1283937516 +118790,33834,zombie,1283937520 +118790,35957,Cillian Murphy,1283938489 +118790,52952,childhood,1267974190 +118790,52952,England,1267974183 +118790,55052,childhood,1267973338 +118790,55052,emotional,1267973357 +118790,55052,great cinematography,1283937779 +118790,55052,heartbreaking,1267973342 +118790,55052,James McAvoy,1267973366 +118790,55814,beautiful,1267975744 +118790,55814,great cinematography,1267975791 +118790,55814,touching,1267975759 +118790,55814,true story,1267975821 +118790,56145,atmospheric,1283939059 +118790,56145,gory,1283939024 +118790,58301,intelligent,1267973214 +118790,58301,thought-provoking,1267973228 +118790,58301,Tim Roth,1267973233 +118790,58301,Torture,1267973245 +118790,58332,zombies,1283937573 +118790,71745,childhood,1267973450 +118790,71745,imagination,1267973465 +118790,71745,touching,1267973482 +118790,79132,dreams,1283938403 +118790,79132,visually appealing,1283938406 +118801,4226,twist ending,1322494848 +118801,5995,Oscar (Best Actor),1322494842 +118801,81562,slow,1322502807 +118801,89492,Brad Pitt,1322457150 +118801,89492,sports,1322457141 +118801,90439,strange ending,1322457309 +118825,260,fiction,1440242702 +118825,260,oldie but goodie,1440242714 +118830,8458,drama,1425938727 +118830,8458,exceptional acting,1425938727 +118830,8458,tear jerker,1425938727 +118830,8970,Biography,1426126879 +118830,8970,Heartwarming,1426126862 +118830,8970,Johnny Depp,1426126854 +118830,8970,Kate Winslet,1426126858 +118830,8970,Peter Pan,1426126870 +118830,56757,toplist07,1199028226 +118830,59615,archaeology,1224270004 +118830,74547,comedy,1421727165 +118830,74547,good music,1421727165 +118830,74547,satire,1421727165 +118830,81591,disturbing,1427520081 +118830,81591,madness,1427520085 +118830,81591,Mila Kunis,1427520077 +118830,81591,Natalie Portman,1427520069 +118830,81591,Oscar (Best Actress),1427520091 +118830,81591,overrated,1427520098 +118830,81845,based on a true story,1425270367 +118830,107141,Disney,1397929145 +118830,109487,Anne Hathaway,1428730833 +118830,109487,Christopher Nolan,1428730829 +118830,109487,Matthew McConaughey,1428730840 +118830,109487,sounds,1428730857 +118830,109487,space,1428730836 +118830,109487,time-travel,1428730844 +118830,109487,wormhole,1428730850 +118830,112399,John Maloof,1426126804 +118830,112399,mental illness,1426126808 +118830,112399,photography,1426126812 +118830,112552,J.K. Simmons,1425270204 +118830,112552,jazz,1425270197 +118830,112552,Tense,1425270208 +118830,115617,Disney,1425270283 +118830,115617,superhero,1425270279 +118831,1274,anime,1427072464 +118831,1274,cyberpunk,1427072467 +118831,1274,dystopia,1427072469 +118831,2232,mathematics,1427069787 +118831,2232,mindfuck,1427069801 +118831,2232,psychological,1427069784 +118831,2232,psychology,1427069790 +118831,2232,weird,1427069794 +118831,4873,dialogue driven,1427070038 +118831,4873,dreams,1427069947 +118831,4873,existentialism,1427069949 +118831,4873,intelligent,1427069992 +118831,4873,philosophy,1427069940 +118831,4873,stylized,1427070016 +118831,4873,surreal,1427069944 +118831,4873,thought-provoking,1427069942 +118831,4873,visually stunning,1427069966 +118831,6645,dystopia,1427071978 +118831,7254,time travel,1427072504 +118831,8531,comedy,1427072180 +118831,8644,artificial intelligence,1427071424 +118831,8644,bad adaptation,1427071457 +118831,8644,futuristic,1427071429 +118831,8644,Isaac Asimov,1427071431 +118831,8644,robots,1427071425 +118831,8644,sci-fi,1427071426 +118831,8644,thought provoking,1427071434 +118831,27423,Brazil,1427066854 +118831,27773,depressing,1427066207 +118831,27773,disturbing,1427066192 +118831,27773,revenge,1427066198 +118831,27773,stylized,1427066200 +118831,27773,twist ending,1427066194 +118831,27773,violent,1427066205 +118831,55908,dialogue driven,1427069852 +118831,55908,Excellent use of dialogue,1427069865 +118831,55908,intellectual,1427069849 +118831,55908,intelligent,1427069872 +118831,55908,philosophical,1427069845 +118831,55908,thought-provoking,1427069847 +118831,55908,unique,1427069869 +118831,56174,alone in the world,1427071284 +118831,56174,apocalypse,1427071293 +118831,56174,post-apocalyptic,1427071281 +118831,56174,survival,1427071295 +118831,56174,virus,1427071291 +118831,56174,Will Smith,1427071286 +118831,56174,zombies,1427071282 +118831,56869,brazilian,1427066896 +118831,57368,"""found footage""",1427071328 +118831,57368,alien monster,1427071335 +118831,57368,found footage,1427071347 +118831,57368,giant monster,1427071337 +118831,57368,monster,1427071332 +118831,73321,Bible,1427069497 +118831,73321,Christianity,1427069588 +118831,73321,dystopia,1427069619 +118831,73321,faith,1427069516 +118831,73321,post-apocalyptic,1427069485 +118831,73321,religious propaganda,1427069512 +118831,77658,astronomy,1427071889 +118831,77658,Carl Sagan,1427071891 +118831,77658,science,1427071893 +118831,79357,butterfly effect,1427065778 +118831,79357,philosophy,1427065767 +118831,79357,sci-fi,1427065769 +118831,79357,thought provoking,1427065762 +118831,81276,politics,1427071933 +118831,85342,dark hero,1427065916 +118831,85342,police corruption,1427065916 +118831,85342,social commentary,1427065916 +118831,91485,no plot,1427072111 +118831,91548,beautiful,1427071804 +118831,91548,points of view,1427071816 +118831,94864,bad plot,1427071395 +118831,94864,bad science,1427071377 +118831,103042,alien invasion,1427071521 +118831,103042,comic book,1427071502 +118831,103042,good special effects,1427071590 +118831,103042,long fight scenes,1427071518 +118831,103042,visually appealing,1427071506 +118831,103249,boring,1427071256 +118831,103249,globetrotting,1427071234 +118831,103249,zombies,1427071139 +118831,105954,solitude,1427071010 +118831,106920,original,1427065949 +118831,106920,philosophical,1427065956 +118831,106920,psychology,1427065931 +118831,106920,sci-fi,1427065940 +118831,106920,thought-provoking,1427065938 +118831,106920,transhumanism,1427065944 +118831,107406,poor plot,1427071048 +118849,260,George Lucas.,1435662996 +118849,260,science-fiction,1435662913 +118858,26939,Finnish,1175004203 +118858,44694,Almodovar,1175004308 +118877,6739,Dean Martin,1233838436 +118877,6739,Jerry Lewis,1233838436 +118901,22,thriller,1368473053 +118901,29,dark,1368472106 +118901,31,inspirational,1368472370 +118901,111,dark,1368472106 +118901,111,mental illness,1368472451 +118901,157,politics,1368473001 +118901,161,tense,1368473040 +118901,216,stupid,1368473016 +118901,440,politics,1368473001 +118901,474,tense,1368473039 +118901,519,franchise,1368472264 +118901,555,violent,1368473070 +118901,565,vampires,1378510250 +118901,611,body horror,1378511303 +118901,700,high school,1368472331 +118901,832,tense,1368473039 +118901,832,thriller,1368473053 +118901,861,police,1368472962 +118901,913,black and white,1368471917 +118901,922,black and white,1368471917 +118901,946,nazis,1368472553 +118901,1089,violent,1368473070 +118901,1095,ensemble cast,1368472180 +118901,1175,dark,1368472106 +118901,1200,action,1354784715 +118901,1200,sci-fi,1354784722 +118901,1206,violent,1368473070 +118901,1214,tense,1368473039 +118901,1248,black and white,1368471917 +118901,1262,ensemble cast,1368472180 +118901,1342,Horror,1354798241 +118901,1347,horror,1354783086 +118901,1347,slasher,1354782975 +118901,1357,father-son relationship,1368472250 +118901,1357,mental illness,1368472451 +118901,1390,politics,1368473001 +118901,1396,ensemble cast,1368472180 +118901,1464,mystery,1368472503 +118901,1570,body horror,1378508971 +118901,1570,surreal,1378509048 +118901,1597,thriller,1368473053 +118901,1610,thriller,1368473053 +118901,1834,mystery,1368472503 +118901,1945,black and white,1368471917 +118901,1950,police,1368472962 +118901,1976,slasher,1378510099 +118901,1977,slasher,1378510086 +118901,1979,slasher,1378510075 +118901,1994,Horror,1354782908 +118901,2024,christianity,1368472013 +118901,2026,high school,1368472331 +118901,2058,tense,1368473039 +118901,2082,inspirational,1368472370 +118901,2335,stupid,1368473016 +118901,2353,thriller,1368473053 +118901,2383,police,1368472962 +118901,2490,violent,1368473070 +118901,2500,high school,1368472331 +118901,2734,mental illness,1368472451 +118901,2878,slasher,1378511699 +118901,2882,nazis,1368472553 +118901,2888,high school,1368472331 +118901,2944,ensemble cast,1368472180 +118901,2959,violent,1368473070 +118901,2985,violent,1368473070 +118901,3013,H.P. Lovecraft,1378510479 +118901,3044,mystery,1368472503 +118901,3146,stupid,1368473016 +118901,3178,inspirational,1368472370 +118901,3256,thriller,1368473053 +118901,3266,dark comedy,1354796062 +118901,3273,franchise,1368472264 +118901,3362,police,1368472962 +118901,3435,black and white,1368471917 +118901,3440,franchise,1368472264 +118901,3468,black and white,1368471917 +118901,3519,nazis,1368472553 +118901,3566,christianity,1368472013 +118901,3660,Full Moon Entertainment,1378614958 +118901,3660,Monster,1378614879 +118901,3660,Stop Motion,1378615014 +118901,3661,Full Moon Entertainment,1378614968 +118901,3661,Monster,1378614884 +118901,3661,Stop Motion,1378615024 +118901,3662,Full Moon Entertainment,1378614976 +118901,3662,Monster,1378614888 +118901,3662,Stop Motion,1378615031 +118901,3663,Full Moon Entertainment,1378614985 +118901,3663,Monster,1378614892 +118901,3663,Stop Motion,1378615045 +118901,3664,Full Moon Entertainment,1378614995 +118901,3664,Monster,1378614896 +118901,3664,Stop Motion,1378615054 +118901,3665,Full Moon Entertainment,1378718219 +118901,3666,Full Moon Entertainment,1378718246 +118901,3838,aliens,1378511070 +118901,3839,aliens,1378511021 +118901,3839,possession,1378511020 +118901,3839,post-apocalyptic,1378511020 +118901,3840,revenge,1378509404 +118901,3918,body horror,1378509803 +118901,3919,body horror,1378511355 +118901,3941,campy,1378511620 +118901,3941,exploitation,1378511620 +118901,3941,slasher,1378511620 +118901,3961,campy,1378511725 +118901,3961,demons,1378511725 +118901,3962,campy,1378509981 +118901,3962,demons,1378509981 +118901,3962,magic,1378509981 +118901,3980,inspirational,1368472370 +118901,4019,inspirational,1368472370 +118901,4222,monster,1378511510 +118901,4222,mutants,1378511838 +118901,4388,stupid,1368473016 +118901,4425,nudity (topless - notable),1368472611 +118901,4552,body horror,1378509065 +118901,4552,surreal,1378509058 +118901,4576,monster,1378511849 +118901,4576,mutants,1378511849 +118901,4633,satire,1378509489 +118901,4633,social commentary,1378509489 +118901,4697,monster,1378511575 +118901,4752,mental illness,1378509538 +118901,4752,serial killer,1378509538 +118901,4752,slasher,1378509538 +118901,4754,christianity,1368472013 +118901,4754,folk horror,1378506549 +118901,4865,mystery,1368472503 +118901,4974,stupid,1368473016 +118901,5107,nazis,1368472553 +118901,5363,high school,1368472331 +118901,5413,cannibalism,1378510750 +118901,5546,campy,1378510729 +118901,5546,demons,1378510728 +118901,5546,gore,1378510729 +118901,5546,possession,1378510729 +118901,5606,body horror,1378507036 +118901,5606,classism,1378507014 +118901,5663,World War II,1398493033 +118901,5715,slasher,1372737937 +118901,5755,slasher,1378511386 +118901,5785,stupid,1368473016 +118901,5883,Unrevealed Monster,1397379858 +118901,5891,exploitation,1378511490 +118901,6243,vengeful spirit,1378509362 +118901,6323,mystery,1368472503 +118901,6602,aliens,1378510534 +118901,6602,parasite,1378510548 +118901,6602,social commentary,1378510547 +118901,6803,psychic powers,1378507707 +118901,6808,nazis,1368472553 +118901,7022,social commentary,1378508531 +118901,7029,disease,1378509437 +118901,7029,social commentary,1378509386 +118901,7160,mental illness,1368472451 +118901,7202,H.P. Lovecraft,1378511540 +118901,7492,cult film,1378507930 +118901,7650,folk horror,1378506514 +118901,8781,politics,1368473001 +118901,8892,campy,1378511552 +118901,8892,monster,1378511552 +118901,8893,campy,1378511562 +118901,8893,monster,1378511562 +118901,26248,mental illness,1412304061 +118901,26316,zombies,1413026778 +118901,26540,demons,1378510199 +118901,26540,monster,1378510225 +118901,26569,satire,1378511476 +118901,26569,social commentary,1378511476 +118901,26684,cheesy,1378508133 +118901,26684,dark comedy,1378508133 +118901,26684,frankenstein,1378508133 +118901,27667,ghosts,1378506274 +118901,27667,revenge,1378506297 +118901,27667,vengeful spirit,1378506289 +118901,27668,ghosts,1378509658 +118901,27668,haunted house,1378509667 +118901,27668,revenge,1378509667 +118901,27668,vengeful spirit,1378509667 +118901,27772,ghosts,1378509621 +118901,27772,haunted house,1378509616 +118901,27772,revenge,1378509631 +118901,27772,vengeful spirit,1378509626 +118901,27798,ghosts,1378511241 +118901,27798,haunted house,1378511241 +118901,27798,vengeful spirit,1378511241 +118901,31270,body horror,1378507162 +118901,31270,parasites,1378507125 +118901,31270,social commentary,1378507151 +118901,32686,atmospheric,1378506456 +118901,32686,christianity,1378506417 +118901,32686,cult film,1378506657 +118901,32686,demons,1378506432 +118901,32686,folk horror,1378506495 +118901,32686,possession,1378506442 +118901,32686,satanic cult,1378506645 +118901,32686,superstition,1378506424 +118901,33660,inspirational,1368472370 +118901,34292,cyberpunk,1378509867 +118901,48678,parody,1378508218 +118901,48678,satire,1378508218 +118901,48678,surreal,1378508225 +118901,49973,cult film,1378510301 +118901,49973,gore,1378510301 +118901,49973,zombies,1378510261 +118901,50774,ghosts,1378507173 +118901,50774,vengeful spirit,1378507240 +118901,50774,vietnam war,1378507240 +118901,50774,war,1378507240 +118901,51207,body horror,1378509120 +118901,51207,satire,1378509120 +118901,51207,social commentary,1378509120 +118901,51277,revenge,1378508849 +118901,51540,police,1368472962 +118901,53121,franchise,1368472264 +118901,55290,police,1368472962 +118901,57637,lovecraftian,1378509239 +118901,58964,French new wave,1378507976 +118901,59429,nudity (topless - notable),1368472611 +118901,60030,mental illness,1378506976 +118901,60030,neurosis,1378506975 +118901,60030,romance,1378506976 +118901,60030,serial killer,1378506915 +118901,63113,franchise,1368472264 +118901,64622,nazis,1368472553 +118901,66152,satire,1378509103 +118901,66152,social commentary,1378509103 +118901,69842,ending,1354782207 +118901,69842,romanticisation of an abusive relationship,1354782205 +118901,69842,story,1354782259 +118901,70607,surreal,1378511417 +118901,71304,dark comedy,1354787347 +118901,71304,horror,1354787350 +118901,72958,torture,1378511111 +118901,73478,Full Moon Entertainment,1378718206 +118901,74458,mystery,1368472503 +118901,77540,Robert E. Howard,1378509166 +118901,78062,Full Moon Entertainment,1378718084 +118901,80880,nudity (topless - notable),1368472610 +118901,81132,surreal,1378509330 +118901,82360,zombies,1388574698 +118901,82698,Full Moon Entertainment,1378718072 +118901,88194,ghosts,1378511743 +118901,88194,revenge,1378511747 +118901,89060,slasher,1378508442 +118901,89072,gore,1378506817 +118901,89072,Post apocalyptic,1378506852 +118901,89072,vampires,1378506852 +118901,89720,Slasher,1400511253 +118901,90469,ghosts,1378509464 +118901,90469,haunted house,1378509470 +118901,91241,action,1354781071 +118901,91241,bollywood,1378507074 +118901,91241,comedy,1354781083 +118901,91241,remake,1378507107 +118901,91304,body horror,1378508928 +118901,92391,asylum,1378509935 +118901,92391,ghosts,1378509935 +118901,92696,possession,1378511642 +118901,93819,lovecraftian,1378508732 +118901,93952,haunted house,1378509222 +118901,93952,revenge,1378509222 +118901,94444,monster,1378510124 +118901,94444,parody,1378510124 +118901,94444,satire,1378510124 +118901,94444,surreal,1378510106 +118901,95237,slasher,1378510187 +118901,95237,surreal,1378510181 +118901,95969,Full Moon Entertainment,1378621069 +118901,95969,gore,1378513788 +118901,95969,Gothic,1378622317 +118901,95969,Gothic Horror,1378622302 +118901,95969,practical FX,1378513788 +118901,95969,vampires,1378513788 +118901,97593,Serial Killer,1386714581 +118901,97643,demons,1378510681 +118901,97643,possession,1378510706 +118901,97643,zombies,1378510688 +118901,98975,Body Horror,1371244910 +118901,98975,disease,1378508572 +118901,98975,noir,1378508549 +118901,98975,social commentary,1378508582 +118901,99061,black widow,1378508823 +118901,99061,bollywood,1378508823 +118901,99061,colonialism,1378508823 +118901,99061,dark comedy,1378508823 +118901,99061,romance,1378508823 +118901,99061,serial killer,1378508823 +118901,99064,ghosts,1378511882 +118901,99064,obsession,1378511882 +118901,99064,vengeful spirit,1378511882 +118901,99119,bollywood,1378511172 +118901,99119,magic,1378511172 +118901,99119,slasher,1378511172 +118901,99122,gore,1378505945 +118901,99122,practical FX,1378505956 +118901,99122,vampires,1378505939 +118901,99169,exploitation,1378510017 +118901,99169,Nazis,1378510057 +118901,99169,WWII,1378510057 +118901,99912,ghosts,1378509593 +118901,101739,demons,1378510167 +118901,101739,lovecraftian,1378510167 +118901,102263,ghosts,1378511660 +118901,102263,haunted house,1378511670 +118901,102263,revenge,1378511771 +118901,102263,vengeful spirit,1378511660 +118901,102265,ghosts,1378511682 +118901,102265,haunted house,1378511682 +118901,102265,revenge,1378511766 +118901,102265,vengeful spirit,1378511682 +118901,102447,ghosts,1378506737 +118901,102447,gore,1378506722 +118901,102447,haunted house,1378506737 +118901,102447,vengeful spirit,1378506737 +118901,102802,Satanism,1379137536 +118901,102802,Surreal,1379137502 +118901,102802,Symbolism,1379137508 +118901,102802,Witch,1379137472 +118901,102817,disease,1378510328 +118901,102817,paranoia,1378510332 +118901,102817,parasite,1378510323 +118901,102910,body art,1378507830 +118901,102910,body modification,1378507794 +118901,102910,body ritual,1378507850 +118901,102910,piercings,1378507823 +118901,102910,plastic surgery,1378507817 +118901,102910,suspension,1378507806 +118901,102910,tattoos,1378507827 +118901,102976,body modification,1378508394 +118901,102976,body ritual,1378508394 +118901,102976,documentary,1412845000 +118901,102976,piercings,1378508394 +118901,102976,spirituality,1378508394 +118901,102976,suspension,1378508394 +118901,103003,Amputation,1378614497 +118901,103003,Amputee,1378614504 +118901,103003,B.I.D.D.,1378614479 +118901,103003,Body Dysphoria,1378614602 +118901,103003,Body Integrity Identity Disorder,1378614468 +118901,103003,Mental Illness,1378614586 +118901,103075,classism,1378507296 +118901,103075,social commentary,1378507296 +118901,103105,body horror,1378510775 +118901,103105,gore,1378510787 +118901,103105,surreal,1378510775 +118901,103130,lovecraftian,1378508643 +118901,103219,Slasher,1386946054 +118901,103273,slasher,1378511201 +118901,103363,assassin,1378508701 +118901,103363,bollywood,1378508709 +118901,103363,possession,1378508701 +118901,103363,serial killer,1378508701 +118901,103446,ghosts,1378508262 +118901,103446,serial killer,1378508284 +118901,103446,vengeful spirit,1378508262 +118901,103483,gore,1378506691 +118901,103621,social commentary,1378510500 +118901,103621,surreal,1378510593 +118901,103645,monster,1378510852 +118901,103645,post-apocalyptic,1378510852 +118901,103647,mad science,1378510959 +118901,104386,slasher,1378508424 +118901,104388,slasher,1378511794 +118901,104689,Full Moon Entertainment,1378621102 +118901,104689,gore,1378505702 +118901,104689,practical FX,1378505711 +118901,104689,vampires,1378505698 +118901,104691,Full Moon Entertainment,1378621135 +118901,104691,gore,1378505673 +118901,104691,practical FX,1378505735 +118901,104691,vampires,1378505668 +118901,104693,Full Moon Entertainment,1378621156 +118901,104693,gore,1378505548 +118901,104693,gothic horror,1420267296 +118901,104693,low budget,1420267296 +118901,104693,practical FX,1378505564 +118901,104693,vampires,1378505687 +118901,104719,Full Moon Entertainment,1378621208 +118901,104719,gore,1378513757 +118901,104719,practical FX,1378513757 +118901,104719,vampires,1378513757 +118901,104746,Clowns,1378622593 +118901,104746,Demons,1378622596 +118901,104746,Full Moon Entertainment,1378622786 +118901,104746,Revenge,1378622601 +118901,104748,Clowns,1378622771 +118901,104748,Demons,1378622771 +118901,104748,Full Moon Entertainment,1378622771 +118901,104748,Revenge,1378622771 +118901,104750,Clowns,1378622867 +118901,104750,Demons,1378622866 +118901,104750,Full Moon Entertainment,1378622867 +118901,104750,Revenge,1378622866 +118901,104769,Clowns,1378712919 +118901,104769,Demons,1378712919 +118901,104769,Full Moon Entertainment,1378712919 +118901,104769,Revenge,1378712919 +118901,104772,Full Moon Entertainment,1378718372 +118901,106739,Parody,1385869708 +118901,106739,Slasher,1385869696 +118901,106739,Turkey,1385869701 +118901,106741,Slasher,1385869980 +118901,106741,Turkey,1385869984 +118901,107132,Slasher,1386912792 +118901,108447,Found Footage,1390530642 +118901,108497,blizzard,1421988890 +118901,108497,generic,1421988890 +118901,108497,Slasher,1390608367 +118901,109199,anthology,1392572469 +118901,109720,Rape,1397391448 +118901,109720,STI,1397391300 +118901,109720,Zombies,1397391116 +118901,110746,slasher,1407117478 +118901,111373,possession,1400236294 +118901,111373,supernatural,1400236437 +118901,111990,Paranoia,1402202578 +118901,114680,depression,1412402030 +118901,114680,ghosts,1412402030 +118901,114680,loneliness,1412402041 +118901,114680,vampires,1412402030 +118903,2324,moving,1428412258 +118903,3791,dance,1432298037 +118903,3791,good music,1432298037 +118903,3791,young,1432298037 +118903,40629,english history,1428412708 +118903,40629,jane austen,1428412708 +118903,40629,love story,1428412708 +118903,53125,love Johnny,1428412308 +118907,260,classic sci-fi,1432401901 +118907,260,Science Fiction,1432401914 +118930,1206,atmospheric,1448151755 +118930,1206,brainwashing,1448151768 +118930,1206,cult film,1448151746 +118930,1206,dystopia,1448151742 +118930,1206,psychological,1448151764 +118930,1206,psychology,1448151744 +118930,1206,satirical,1448151762 +118930,1206,social commentary,1448151749 +118930,1206,stanley kubrick,1448151738 +118930,1206,surreal,1448151759 +118930,1206,Surrealism,1448151757 +118930,1206,violent,1448151752 +118930,1221,classic,1448151702 +118930,1221,complex characters,1448151691 +118930,1221,Mafia,1448151700 +118930,1221,organized crime,1448151699 +118930,1221,Robert De Niro,1448151697 +118930,1221,violence,1448151689 +118930,1222,military,1448152109 +118930,1222,political,1448152112 +118930,1222,Stanley Kubrick,1448152104 +118930,1222,war,1448152110 +118930,1952,Dustin Hoffman,1448151832 +118930,1952,loneliness,1448151831 +118930,3011,depressing,1448151862 +118930,5954,Edward Norton,1448151915 +118930,7327,experimental,1448152035 +118930,7327,Ingmar Bergman,1448152037 +118930,7327,psychoanalysis,1448152032 +118954,1219,Alfred Hitchcock,1380926414 +118954,1219,psychology,1380926436 +118954,1219,suspenseful,1380926438 +118954,1219,tense,1380926451 +118956,5952,fantasy,1446635373 +118965,260,good for kids,1431232657 +118965,260,sci-fi,1431232680 +118999,136608,philosophical,1435914627 +118999,136608,sociology,1435914638 +119016,506,gender identity,1163803446 +119016,512,andy robinson,1165526430 +119016,1080,Monty Python,1163803033 +119016,1089,Quentin Tarantino,1163803154 +119016,1235,looks interesting -- plot,1163803090 +119016,1255,Peter Jackson,1163803262 +119016,1288,Christopher Guest,1163803165 +119016,1301,pastiche,1180179452 +119016,1301,Shakespeare,1180179452 +119016,1542,Ewan McGregor,1163803308 +119016,1696,Ian McKellen,1163803292 +119016,1993,andy robinson,1165526585 +119016,2177,Hitchcock,1163803557 +119016,2193,saw when little and liked,1163803585 +119016,3445,Brad Dourif,1163803533 +119016,3445,Rene Auberjonois,1163803533 +119016,3789,looks interesting -- plot,1163803140 +119016,3911,Christopher Guest,1163802845 +119016,3917,andy robinson,1165526337 +119016,3999,siddig,1165526183 +119016,4350,documentary,1163802888 +119016,4350,Peter Jackson,1163802888 +119016,4543,andy robinson,1165526620 +119016,4624,Peter Jackson,1163803569 +119016,4769,germany,1163802999 +119016,4769,individual heroism,1163802993 +119016,4855,andy robinson,1165526313 +119016,4855,Don Siegel,1195177356 +119016,5463,siddig,1165526099 +119016,6125,British sketch comedy,1163802639 +119016,6800,andy robinson,1165526345 +119016,6800,awful Dirty Harry ripoff,1195176960 +119016,6807,Monty Python,1163803039 +119016,6822,Ian McKellen,1163803276 +119016,6847,andy robinson,1165526484 +119016,6881,looks interesting -- plot,1163803470 +119016,6914,looks interesting -- documentary,1163803245 +119016,6989,Henry Woolf,1163803375 +119016,7147,Ewan McGregor,1163802855 +119016,7147,surrealism,1163802857 +119016,7156,looks interesting -- documentary,1180179330 +119016,7348,looks interesting -- plot,1163803232 +119016,7348,mamet,1163803232 +119016,7437,drag,1163803627 +119016,7437,gender identity,1163803627 +119016,7948,Brad Dourif,1163803516 +119016,8496,looks interesting -- plot,1163803460 +119016,8807,Neil Patrick Harris,1163802836 +119016,8880,andy robinson,1165526665 +119016,8952,Monte,1168836178 +119016,8966,Bill Condon,1163803407 +119016,8966,Liam Neeson,1163803386 +119016,26283,andy robinson,1165526328 +119016,26283,Don Siegel,1195177374 +119016,26476,looks interesting -- plot,1163803428 +119016,27899,Armin Shimerman,1163803692 +119016,30749,individual heroism,1163802978 +119016,30749,Rwanda,1163802960 +119016,30818,Kevin Spacey,1163803608 +119016,34072,looks interesting -- documentary,1163803071 +119016,34072,morgan freeman,1163803023 +119016,34072,penguins,1163803016 +119016,34153,looks interesting -- documentary,1163803058 +119016,34437,Bill Murray,1163803314 +119016,34538,Ian McKellen,1163803598 +119016,36523,Margaret Cho,1163803665 +119016,36535,artsy,1163802660 +119016,36535,elijah wood,1163802655 +119016,37729,Depp & Burton,1200206743 +119016,39292,Clooney,1163802907 +119016,39292,journalism,1163802909 +119016,39292,political,1163802907 +119016,40583,siddig,1165435023 +119016,42002,Nathan Lane,1163803675 +119016,42004,gender identity,1163803492 +119016,44195,satire,1163802645 +119016,45730,M. Night Shyamalan,1163803652 +119016,46976,looks interesting -- plot,1167446739 +119016,48394,looks interesting -- atmosphere,1168836373 +119016,49524,siddig,1165434997 +119016,50068,looks interesting -- plot,1179759886 +119016,51662,thermopylae,1173730816 +119016,52281,Quentin Tarantino,1179760002 +119016,52281,Robert Rodriguez,1179760002 +119016,56757,Depp & Burton,1199181600 +119016,56757,Yay! Pie!,1199181599 +119024,4002,John Candy,1291125913 +119024,4002,Steve Martin,1291125893 +119024,7293,Adam Sandler,1291125981 +119024,8528,Ben Stiller,1291125838 +119024,8528,Vince Vaughn,1291125872 +119064,407,BD-R,1366153308 +119064,407,John Carpenter,1366153295 +119064,407,lovecraft,1366153310 +119064,407,lovecraftian,1366153288 +119064,407,Lovecraftian mythology,1366153304 +119064,407,meta-movie,1366153299 +119064,407,protagonist is writer,1366153313 +119064,407,Sam Neill,1366153297 +119064,2288,disturbing,1366153127 +119064,2288,imdb top 250,1366153125 +119064,2288,John Carpenter,1366153121 +119064,2288,Lovecraftian mythology,1366153132 +119064,6059,Al Pacino,1366188620 +119064,6059,Suspense,1366188623 +119064,62081,Shia LaBeouf,1366154104 +119064,62081,video surveillance,1366154107 +119069,342,ABBA,1447409918 +119069,380,arnold,1447409806 +119069,380,funny,1447409822 +119069,380,music,1447409845 +119069,4857,music,1447410080 +119069,7669,author:Jane Austen,1447409995 +119069,7669,Colin Firth,1447409992 +119069,7669,England,1447410010 +119070,116849,blame canada,1423926073 +119070,116849,boring!,1423926073 +119070,116849,wtf?,1423926073 +119081,260,action,1440639083 +119081,260,space,1440639077 +119091,2542,Jason Statham,1221683133 +119091,4011,Jason Statham,1221682973 +119091,6378,Jason Statham,1221683114 +119091,8860,Jason Statham,1221683023 +119091,8957,serial killer,1221682753 +119091,47200,Jason Statham,1221682999 +119091,53129,serial killer,1221682824 +119091,54775,Jason Statham,1221683083 +119104,50,mindfuck,1430419024 +119104,50,unexpected,1430419031 +119117,122882,brutal,1438714601 +119117,122882,energetic,1438714601 +119117,122882,great,1438714601 +119138,3949,Jared Leto,1175870807 +119177,2640,cheesy bad,1145738608 +119179,356,adventure,1433813307 +119179,356,drama,1433813307 +119179,356,feel-good,1433813307 +119192,337,Johnny Depp,1152196863 +119192,337,want to see again,1152196868 +119192,2640,superhero,1152196882 +119221,380,explodeytime,1137197952 +119221,589,explodeytime,1137197943 +119221,780,explodeytime,1137197955 +119221,2683,craptacular,1137197569 +119221,6541,explodeytime,1138571759 +119221,8376,painful,1138571643 +119221,27846,More boring than purgatory,1140399699 +119221,33679,craptacular,1137197820 +119221,33679,explodeytime,1137197820 +119227,1232,Tarkovsky,1307214531 +119227,3503,Tarkovsky,1307214545 +119227,27856,BMW,1299060739 +119227,27856,Bumer,1301789240 +119227,27856,Russian,1299060739 +119227,27856,Russian mafia,1299060739 +119227,84844,Aleksey Balabanov,1299061135 +119227,84844,Russian,1299061135 +119227,84844,Sergey Bodrov Jr.,1299061135 +119227,93490,brotherhood,1332019274 +119227,93490,crime,1332019264 +119227,93490,Mafia,1332019253 +119227,93490,Russian Mafia,1332019257 +119239,2001,action,1137533319 +119242,260,Action,1434370740 +119242,260,Science Fiction,1434370726 +119242,48516,Action,1434448323 +119242,48516,gangster,1434448348 +119242,48516,ironic,1434448360 +119242,48516,suspense,1434448335 +119246,593,cerebral,1438366120 +119246,593,horror classic,1438366120 +119246,593,thriller,1438366120 +119255,7099,Studio Ghibli,1417502253 +119257,67252,fighting,1431969859 +119257,83478,fighting,1431969872 +119259,260,Science Fiction,1444200567 +119259,260,space action,1444200542 +119283,377,Keanu Reeves,1219590627 +119302,199,bittersweet,1380739600 +119302,199,French,1380739596 +119302,199,musical,1380739587 +119302,318,best dialogs,1427304707 +119302,318,english,1427304707 +119302,318,story line,1427304707 +119302,1131,French,1380224516 +119302,4447,better than expected,1389638141 +119302,4447,chick flick,1389638140 +119302,4447,comedy,1389638115 +119302,4447,dumb but funny,1389638129 +119302,4447,friendship,1389638132 +119302,4447,girlie movie,1389638122 +119302,4447,lawyers,1389638145 +119302,4973,beautifully filmed,1378225822 +119302,4973,comedy,1378225852 +119302,4973,notable soundtrack,1378225872 +119302,4973,Paris,1378225845 +119302,4973,romance,1378225867 +119302,5995,Oscar (Best Actor),1378226892 +119302,5995,Oscar (Best Directing),1378226897 +119302,5995,World War II,1378226889 +119302,6535,dumb,1389638070 +119302,6535,stupid,1389638074 +119302,8638,Paris,1378227022 +119302,30749,Africa,1380740720 +119302,30749,based on a true story,1380740527 +119302,30749,journalism,1380740730 +119302,30749,true story,1380740523 +119302,30749,United Nations,1380740726 +119302,50912,French,1378226960 +119302,50912,Natalie Portman,1378226979 +119302,50912,Paris,1378226992 +119302,50912,romance,1378226963 +119302,57183,Aamir Khan,1389636718 +119302,63082,India,1378227478 +119302,63082,music,1378227469 +119302,64034,based on a book,1378226280 +119302,64034,Holocaust,1378226315 +119302,64034,Kids,1378226320 +119302,64034,Nazis,1378226326 +119302,64034,sad,1378226360 +119302,64034,Vera Farmiga,1378226336 +119302,64034,World War II,1378226329 +119302,64622,based on a book,1389289495 +119302,64622,great acting,1389289491 +119302,64622,Holocaust,1389289541 +119302,64622,nazis,1389289490 +119302,64622,Nudity (Full Frontal - Notable),1389289483 +119302,64622,Nudity (Full Frontal),1389289520 +119302,64622,Nudity (Rear),1389289524 +119302,64622,philosophical,1389289529 +119302,64622,World War II,1389289527 +119302,68886,marriage,1380739501 +119302,73881,extremely stupid humor,1378227336 +119302,73881,India,1378227340 +119302,73881,Rajkumar Hirani,1378227443 +119302,78729,Kiefer Sutherland,1397295826 +119302,86882,comedy,1378226859 +119302,86882,nostalgic,1378226856 +119302,86882,Paris,1378226818 +119302,86882,romance,1378226864 +119302,86882,thought-provoking,1378226846 +119302,86882,Woody Allen,1378226821 +119302,88810,based on a book,1389976426 +119302,88810,great acting,1389976449 +119302,88810,social commentary,1389976446 +119302,92259,emotional,1378226723 +119302,92259,feel good movie,1378226735 +119302,92259,hilarious,1378226730 +119302,92259,rich and poor,1378226727 +119302,95201,adultery,1399821130 +119302,95201,great cast,1399821108 +119302,95201,love,1399821112 +119302,95201,made me smile,1399821116 +119302,95201,pleasant,1399821120 +119302,95201,woody allen,1399821102 +119302,97304,suspenseful,1389555121 +119302,97304,true story,1389555124 +119302,97921,dark humor,1388344740 +119302,97921,father-son relationship,1388344775 +119302,97921,Julia Stiles,1388344758 +119302,97921,rated-R,1388344765 +119302,97921,romance,1388344748 +119302,97938,3d,1378227505 +119302,97938,great photograpy,1378227499 +119302,100714,boring,1389555207 +119302,100714,fighting,1389555213 +119302,100714,Julie Delpy,1389555202 +119302,100714,phylosophycal,1389555228 +119302,100714,talky,1389555233 +119302,101864,Morgan Freeman,1389121591 +119302,104374,time travel,1389204614 +119302,104374,touching,1389204617 +119302,106749,Clemence Poesy,1389121210 +119302,106749,death,1389121225 +119302,106749,undeveloped female characters,1389121216 +119303,318,morality,1432768483 +119303,318,prison,1432768476 +119303,7502,military,1432768566 +119303,7502,Patriotic,1432768518 +119303,7502,realistic,1432768563 +119303,7502,war,1432768560 +119303,7502,World War II,1432768568 +119303,45517,Disney animated feature,1432768656 +119303,45517,exciting,1432768669 +119303,45517,instills good moral values,1432768648 +119303,122892,funny dialogues,1432768628 +119303,122892,good vs evil,1432768628 +119303,122892,superhero,1432768628 +119318,4041,love,1194965153 +119318,4041,military,1194965165 +119318,4973,France,1194965220 +119318,4973,French,1194965220 +119338,122882,action,1434038500 +119338,122882,adventure,1434038500 +119338,122882,post-apocalyptic,1434038500 +119342,260,action,1432776227 +119342,260,space,1432776223 +119349,593,Sexualized violence,1179554882 +119363,1235,Cat Stevens,1431357842 +119363,1235,classic,1431357848 +119363,1235,dark comedy,1431357873 +119363,1235,heartwarming,1431357858 +119363,1235,quirky,1431357852 +119363,1265,Bill Murray,1431357667 +119363,1265,Classic,1431357629 +119363,1265,comedy,1431357651 +119363,1265,funny,1431357622 +119363,1265,insightful,1431357693 +119363,1265,philosophical,1431357682 +119363,1265,romantic,1431357647 +119363,34111,atheism,1431357914 +119363,34111,englightening,1431357933 +119363,34111,intelligent,1431357922 +119363,55908,excellent script,1431357776 +119363,55908,philosophical,1431357731 +119363,55908,thought-provoking,1431357741 +119381,593,anthony hopkins,1424668366 +119381,593,classic,1424668366 +119381,593,suspense,1424668366 +119381,1270,classic,1424668451 +119381,1270,time travel,1424668438 +119381,1569,Cameron Diaz,1306879484 +119381,1569,Dermot Mulroney,1306812775 +119381,1569,Julia Roberts,1306812775 +119381,1923,Ben Stiller,1306764394 +119381,1923,Cameron Diaz,1306764394 +119381,1923,funny,1306764402 +119381,4823,Christmas,1306764028 +119381,4823,Kate Beckinsale,1306764028 +119381,4823,New York City,1306764042 +119381,4995,Josh Lucas,1306812315 +119381,4995,mathematics,1306812433 +119381,4995,Russell Crowe,1306812315 +119381,5620,Josh Lucas,1306764001 +119381,5620,Reese Witherspoon,1306764001 +119381,6006,Ashton Kutcher,1306764247 +119381,6155,Kate Hudson,1306764136 +119381,6287,Adam Sandler,1306764348 +119381,6287,funny,1306764357 +119381,6287,Jack Nicholson,1306764348 +119381,6287,Marisa Tomei,1306764348 +119381,7173,Ben Stiller,1306764267 +119381,7173,Jennifer Aniston,1306764267 +119381,8958,Jamie Foxx,1306812577 +119381,31685,Eva Mendes,1302654652 +119381,31685,Kevin James,1302654652 +119381,31685,Will Smith,1302654652 +119381,33794,Christian Bale,1306764718 +119381,34162,Isla Fisher,1306764460 +119381,34162,Owen Wilson,1306764460 +119381,34162,Rachel McAdams,1306764460 +119381,34162,Vince Vaughn,1306764460 +119381,44004,Sarah Jessica Parker,1306764174 +119381,44004,Zooey Deschanel,1306764166 +119381,45726,Kate Hudson,1306764311 +119381,45726,Owen Wilson,1306764305 +119381,48780,based on a book,1307740408 +119381,48780,Christian Bale,1307740394 +119381,48780,Hugh Jackman,1307740394 +119381,48780,Michael Caine,1307740394 +119381,48780,Scarlett Johansson,1307740394 +119381,51540,Jake Gyllenhaal,1307742916 +119381,51540,Mark Ruffalo,1307742916 +119381,51540,Robert Downey Jr.,1307742916 +119381,55765,based on a true story,1307577052 +119381,55765,Denzel Washington,1307577046 +119381,55765,Russell Crowe,1307577046 +119381,58559,Christian Bale,1306764740 +119381,58559,Heath Ledger,1306764740 +119381,58998,Hawaii,1306764559 +119381,58998,Jason Segel,1306764559 +119381,58998,Kristen Bell,1306764559 +119381,58998,Mila Kunis,1306764559 +119381,59421,Ashton Kutcher,1306764228 +119381,59421,Cameron Diaz,1306764228 +119381,67087,comedy,1306764518 +119381,67087,Jason Segel,1306764518 +119381,67087,Jon Favreau,1306764518 +119381,67087,Rashida Jones,1306764518 +119381,69406,Ryan Reynolds,1306763934 +119381,69406,Sandra Bullock,1306763934 +119381,70183,Gerard Butler,1306764199 +119381,70183,Katherine Heigl,1306764204 +119381,72998,beautiful scenery,1421991796 +119381,72998,futuristic,1421991820 +119381,72998,graphic design,1421991790 +119381,72998,visual,1421991810 +119381,72998,visually stunning,1421991805 +119381,73017,Jude Law,1306764698 +119381,73017,Rachel McAdams,1306764698 +119381,73017,Robert Downey Jr.,1306764698 +119381,79132,Joseph Gordon-Levitt,1306764782 +119381,79132,Leonardo DiCaprio,1306764782 +119381,79132,visually appealing,1306764794 +119381,79224,Jaden Smith,1304939935 +119381,84374,Ashton Kutcher,1306812656 +119381,84374,Natalie Portman,1306812656 +119381,104712,bittersweet,1416640768 +119381,109487,space,1421991697 +119384,1,children,1284588869 +119384,1,computer animation,1284588868 +119384,1,Disney,1284588860 +119384,1,family,1284588873 +119384,1,Pixar,1284588865 +119384,592,atmospheric,1284588907 +119384,592,Batman,1284588894 +119384,592,dystopian,1284588895 +119384,592,Jack Nicholson,1284588903 +119384,592,Tim Burton,1284588901 +119384,593,Anthony Hopkins,1284587120 +119384,593,cannibalism,1284587117 +119384,593,disturbing,1284587106 +119384,593,Oscar (Best Actor),1284587102 +119384,593,Oscar (Best Actress),1284587100 +119384,593,Oscar (Best Picture),1284587098 +119384,593,psychology,1284587123 +119384,593,serial killer,1284587113 +119384,593,tense,1284587125 +119384,608,black comedy,1298427477 +119384,608,dark comedy,1298427479 +119384,1251,dreams,1284588200 +119384,1251,humorous,1284588206 +119384,1251,surreal,1284588192 +119384,1653,dystopia,1284588359 +119384,1653,dystopic future,1284588356 +119384,1653,inspiring,1284588364 +119384,1653,sci-fi,1284588353 +119384,2076,atmospheric,1284587632 +119384,2076,David Lynch,1284587626 +119384,2076,Dennis Hopper,1284587650 +119384,2076,disturbing,1284587638 +119384,2076,hallucinatory,1284587641 +119384,2076,ominous,1284587658 +119384,2076,surreal,1284587646 +119384,2318,dark,1284588281 +119384,2318,dark comedy,1284588279 +119384,2318,dark humor,1284588283 +119384,2318,loneliness,1284588291 +119384,2318,Philip Seymour Hoffman,1284588276 +119384,2318,social commentary,1284588287 +119384,3108,Jeff Bridges,1284588244 +119384,3108,Robin Williams,1284588237 +119384,3108,Terry Gilliam,1284588238 +119384,4645,Japan,1284587567 +119384,4645,Psychological,1284587464 +119384,4645,Surreal,1284587471 +119384,4645,Tense,1284587467 +119384,4878,derivative,1284587799 +119384,4878,rip off,1284587805 +119384,5056,Werner Herzog,1283966322 +119384,5515,stylized,1283966298 +119384,5853,body horror,1284587239 +119384,5853,David Cronenberg,1284587242 +119384,5890,friendship,1298427123 +119384,5890,funny,1298427126 +119384,5890,upbeat,1298427119 +119384,6290,Ironic,1298427253 +119384,6711,atmospheric,1298427409 +119384,6711,Bill Murray,1298427410 +119384,6711,bittersweet,1298427425 +119384,6711,cultural differences,1298427416 +119384,6711,intelligent,1298427423 +119384,6711,Melancholic,1298427418 +119384,6711,Oscar Nominee: Director,1298427431 +119384,6711,relationships,1298427420 +119384,6711,Scarlett Johansson,1298427434 +119384,6874,action,1284587294 +119384,6874,Quentin Tarantino,1284587287 +119384,6874,quirky,1284587290 +119384,6874,stylized,1284587292 +119384,6874,Tarantino,1284587304 +119384,6874,violence,1284587301 +119384,7096,art study,1284588128 +119384,7096,artist,1284588132 +119384,7096,artists,1284588135 +119384,7438,action,1284587339 +119384,7438,martial arts,1284587362 +119384,7438,Quentin Tarantino,1284587319 +119384,7438,quirky,1284587321 +119384,7438,stylized,1284587352 +119384,7438,Tarantino,1284587325 +119384,7438,violence,1284587329 +119384,7438,violent,1284587334 +119384,8910,Irony,1298427347 +119384,8910,psuedointellectual,1298427371 +119384,8910,satire,1298427355 +119384,8914,complex,1284587735 +119384,8914,complicated plot,1284587708 +119384,8914,disturbing,1284587730 +119384,8914,intellectual,1284587727 +119384,8914,low budget,1284587733 +119384,8914,mindfuck,1284587713 +119384,8914,paradox,1284587721 +119384,8957,gore,1298427225 +119384,27773,depressing,1284587417 +119384,27773,disturbing,1284587426 +119384,27773,hallucinatory,1284587413 +119384,27773,stylized,1284587431 +119384,27773,tense,1284587418 +119384,27773,twist ending,1284587410 +119384,49932,David Lynch,1284587222 +119384,49932,Harry Dean Stanton,1284587225 +119384,49932,surreal,1284587226 +119384,53883,Adam Curtis,1284587179 +119384,53883,politics,1284587154 +119384,53883,stock footage,1284587173 +119384,54185,artist,1284588090 +119384,54185,artistic,1284588090 +119384,54185,cinematography,1284588090 +119384,54185,Epic,1284588053 +119384,54185,stylized,1284588090 +119384,60585,Drama,1284587252 +119384,60585,German,1284587268 +119384,60585,Psychological,1284587258 +119384,60585,Rainer Werner Fassbinder,1284587249 +119384,61323,Coen Brothers,1298427467 +119384,61323,dark comedy,1298427455 +119384,61323,funny,1298427463 +119384,61323,stupidity,1298427461 +119384,72405,dark comedy,1284586974 +119384,72405,hallucination,1284586976 +119384,72405,Nicolas Cage,1284587007 +119384,72405,Werner Herzog,1284586971 +119384,78039,depressing,1298427172 +119384,78039,thought provoking,1298427180 +119384,81054,black and white,1288306826 +119384,81054,black humor,1288306833 +119384,81054,Fassbinder,1288306782 +119384,81054,stylized,1288306789 +119403,260,action,1433082708 +119403,260,Science Fiction,1433082672 +119403,260,space,1433082678 +119408,151621,Australia,1453758146 +119408,151621,Couple relations,1453758314 +119408,151621,Family relations,1453758238 +119408,151621,Missing daughter,1453758223 +119408,151621,Road trip,1453758253 +119408,151621,Western Australia,1453758279 +119445,3824,Richard Gere,1292003030 +119460,1717,Great movie,1185997756 +119460,3785,hilariously bad,1185997688 +119460,4262,gangsters,1185997708 +119460,4975,Fantastic!,1185997771 +119460,6502,thriller,1185997736 +119460,6934,sci-fi,1185997689 +119460,7147,fantasy,1185997691 +119460,8622,documentary,1185997743 +119464,6365,epilepsy warning,1214122285 +119483,208,adventure,1439132464 +119483,208,survival,1439132459 +119483,253,fantasy,1441566439 +119483,253,horror,1441566443 +119483,253,vampire,1441566433 +119483,253,vampires,1441566425 +119483,1197,fantasy,1439133971 +119483,1197,pirates,1439133968 +119483,1704,Ben Affleck,1439131855 +119483,1704,genius,1439131846 +119483,1704,intellectual,1439131862 +119483,1704,intelligent,1439131853 +119483,1704,math,1439131865 +119483,1704,mathematics,1439131844 +119483,1704,Matt Damon,1439131843 +119483,1704,Robin Williams,1439132249 +119483,2028,cinematography,1439132117 +119483,2028,realistic,1439132119 +119483,2028,Steven Spielberg,1439132107 +119483,2028,Tom Hanks,1439132106 +119483,2949,james bond,1439133094 +119483,4022,Tom Hanks,1439131195 +119483,4963,con men,1439131067 +119483,4963,feel good movie,1439131064 +119483,4963,George Clooney,1439131052 +119483,4963,heist,1439131050 +119483,4963,Matt Damon,1439131054 +119483,4993,fantasy,1439135945 +119483,4993,Magic,1439135948 +119483,4993,tolkien,1439135956 +119483,4993,wizards,1439135953 +119483,4995,genius,1439131255 +119483,4995,math,1439131250 +119483,4995,mathematics,1439131252 +119483,5464,Tom Hanks,1441567161 +119483,5989,based on a book,1439131751 +119483,5989,based on a true story,1439131762 +119483,5989,con artists,1439131742 +119483,5989,con men,1439131758 +119483,5989,intelligent,1439131759 +119483,5989,Leonardo DiCaprio,1439131737 +119483,5989,Steven Spielberg,1439131740 +119483,5989,Tom Hanks,1439131746 +119483,5989,true story,1439131738 +119483,5989,twists & turns,1439131745 +119483,6539,adventure,1439132210 +119483,6539,fantasy,1439132229 +119483,6539,johnny depp,1439132209 +119483,6539,keira knightley,1439132223 +119483,6539,pirates,1439132208 +119483,6539,sword fight,1439132219 +119483,6893,heist,1439131044 +119483,27773,based on comic,1439134822 +119483,30707,boxing,1441566997 +119483,44199,bank robbery,1441567343 +119483,44199,heist,1441567346 +119483,44199,intelligent thriller,1441567341 +119483,44199,twist ending,1441567339 +119483,49272,James Bond,1439133074 +119483,51662,amazing photography,1439132983 +119483,51662,Nudity (Topless),1439132994 +119483,51662,rape,1439133006 +119483,51662,sword fight,1439132986 +119483,52604,Ryan Gosling,1439131126 +119483,58559,Batman,1439131704 +119483,58559,comic book,1439131715 +119483,58559,Comic Book adaption,1439131721 +119483,60126,Anne Hathaway,1441566240 +119483,60126,espionage,1441566244 +119483,60126,Steve Carell,1441566252 +119483,68358,adventure,1439130995 +119483,68358,sci-fi,1439131005 +119483,68358,Simon Pegg,1439131002 +119483,68358,space travel,1439130998 +119483,69406,Ryan Reynolds,1439131931 +119483,69406,Sandra Bullock,1439131929 +119483,74851,Paris,1439134781 +119483,80463,based on true story,1439131793 +119483,80463,computers,1439131786 +119483,80463,hacking,1439131787 +119483,80463,Jesse Eisenberg,1439131789 +119483,80463,true story,1439131790 +119483,90439,realistic,1439132370 +119483,102407,based on a book,1439134075 +119483,102407,beautiful,1439134069 +119483,102407,cinematography,1439134073 +119483,102407,Leonardo DiCaprio,1439134066 +119483,102407,visually appealing,1439134079 +119483,102445,J.J. Abrams,1439130934 +119483,102445,science fiction,1439130906 +119483,102445,Simon Pegg,1439130947 +119483,102445,space,1439130914 +119483,103372,Sandra Bullock,1439132084 +119483,104841,beautiful,1439132013 +119483,104841,cinematography,1439132002 +119483,104841,George Clooney,1439132015 +119483,104841,physics,1439132007 +119483,104841,sandra bullock,1439132004 +119483,104841,sci-fi,1439132019 +119483,104841,space,1439132000 +119483,104841,visually appealing,1439131999 +119483,104841,visually stunning,1439132009 +119483,106002,based on a book,1439132814 +119483,106002,Orson Scott Card,1439132817 +119483,106002,space,1439132812 +119483,116797,Alan Turing,1439132174 +119483,116797,Benedict Cumberbatch,1439132179 +119483,116797,code breaking,1439132184 +119483,116797,Computers,1439132176 +119483,116797,cryptography,1439132167 +119483,116797,genius,1439132186 +119483,116797,Keira Knightley,1439132190 +119483,116797,mathematics,1439132178 +119483,117533,computers,1439131966 +119483,117533,documentary,1439131961 +119483,117533,edward snowden,1439131964 +119483,117533,nonfiction,1439131969 +119484,53996,Excellent FXs,1299065317 +119484,53996,Special Effects,1299065304 +119484,67923,Ridiculous,1299218658 +119484,68791,artificial intelligence,1298969269 +119484,68791,bad plot,1298969276 +119484,68791,Christian Bale,1298969285 +119484,68791,FIGHTING THE SYSTEM,1298969289 +119484,68791,sci-fi,1298969298 +119484,69526,confusing,1314165542 +119484,81562,loneliness,1337657283 +119484,81562,slow,1337657297 +119484,81562,wilderness,1337657304 +119492,77658,Carl Sagan,1312418292 +119492,79578,boring,1310340815 +119492,79578,unrealistic,1310340832 +119511,58376,financial power,1290410203 +119524,260,action,1446819668 +119524,260,EPIC,1446819677 +119524,260,sci-fi,1446819659 +119524,260,space,1446819664 +119524,260,Star Wars,1446819671 +119524,4993,beautifully filmed,1446819630 +119524,4993,fantasy,1446819621 +119524,4993,wizards,1446819638 +119592,143389,french revolution,1453806918 +119592,143389,musical,1453806910 +119592,143389,"musical, french revolution",1453806875 +119620,50,Surprise,1266541275 +119659,2106,Nazis,1214346185 +119780,260,fantasy,1440336062 +119780,260,future,1440336082 +119792,47,Morgan Freeman,1276715055 +119792,47,noir,1276715058 +119792,1208,Vietnam war,1311511849 +119792,1645,Al Pacino,1313356960 +119792,1645,Christianity,1313356983 +119792,1645,deal with the devil,1313357019 +119792,1645,devil,1313357015 +119792,1653,dystopia,1281734758 +119792,1653,dystopic future,1281734762 +119792,1653,future,1281734760 +119792,1653,sci-fi,1281734770 +119792,1653,Uma Thurman,1281734752 +119792,2232,mathematics,1263676921 +119792,3203,Nicole Kidman,1311511752 +119792,3203,Sam Neill,1311511813 +119792,3203,Sea,1311511820 +119792,3441,acting,1276987989 +119792,3826,illogical,1313273013 +119792,3826,Nudity (Topless - Notable),1313272983 +119792,3984,007,1281389426 +119792,3984,007 (series),1281389428 +119792,3984,Nudity (Topless - Brief),1281389418 +119792,3984,Sean Connery,1281389423 +119792,5049,Eddie Murphy,1274822901 +119792,5049,Nick Nolte,1274822930 +119792,5049,Nudity (Topless),1274822904 +119792,5693,disco,1293487346 +119792,5693,John Travolta,1293487284 +119792,5693,sexy,1293487342 +119792,8914,physics,1274441220 +119792,35836,romantic comedy,1312034247 +119792,51080,espionage,1313272905 +119792,51080,spying,1313272855 +119792,51080,true story,1313272862 +119792,52328,camera,1274441085 +119792,52328,camerawork,1274441085 +119792,52328,stupid twist,1274441093 +119792,55276,George Clooney,1281635394 +119792,55908,immortality,1281626817 +119792,55908,philosophical,1281626809 +119792,55908,thought-provoking,1281626806 +119792,59369,espionage,1313348843 +119792,59369,kidnapping,1313349248 +119792,59369,Paris,1313349274 +119792,59369,revenge,1313349257 +119792,65982,sci-fi,1281637923 +119792,65982,vikings,1281637919 +119792,72011,George Clooney,1281547975 +119792,72011,loneliness,1281547980 +119792,72011,Nudity (Rear),1281547986 +119792,72011,thoughtful,1281547994 +119792,74851,John Travolta,1276511479 +119792,74851,Paris,1276511495 +119792,74948,justice,1313330072 +119792,74948,revenge,1313330098 +119792,74948,vigilante justice,1313330068 +119792,75985,biomedical ethics,1281787098 +119792,75985,choreographic violence,1281787103 +119792,75985,gore,1281787079 +119792,75985,twist ending,1281787071 +119792,79132,heist,1309023730 +119792,79132,surreal,1309023722 +119792,79132,thought-provoking,1309023712 +119792,79695,Arnold Schwarzenegger,1307791578 +119792,79695,Bruce Willis,1307791581 +119792,79695,Jason Statham,1307791576 +119792,79695,Sylvester Stallone,1307791572 +119792,79695,violence,1307791590 +119792,80219,action,1312316096 +119792,80219,Don Johnson,1312316115 +119792,80219,Steven Seagal,1312316127 +119792,80219,violent,1312316120 +119792,84613,cave,1312488166 +119800,7361,surreal,1334802147 +119804,569,baseball,1287036628 +119804,1285,veronica sawyer smokes,1290765215 +119804,62434,Pittsburgh,1274930498 +119804,74532,Bruce Willis,1274929199 +119804,74532,Kevin Smith,1274929215 +119804,74532,Seann William Scott,1274929206 +119804,74532,Tracy Morgan,1274929210 +119804,74946,pittsburgh,1274930453 +119804,87232,Jennifer Lawrence,1322555532 +119804,87232,Michael Fassbender,1322555509 +119804,91529,Anne Hathaway,1343464585 +119804,91529,Batman,1343464580 +119804,91529,ending,1343464607 +119804,91529,great ending,1343464603 +119804,91529,Joseph Gordon-Levitt,1343464638 +119804,91529,Michael Caine,1343464650 +119804,91529,Tom Hardy,1343464597 +119811,73569,kung fu,1452369530 +119811,80680,gangster,1451769931 +119811,80680,taiwanese,1451769939 +119813,70,bloody,1368726740 +119813,173,comics,1368726834 +119813,307,reflective,1368726823 +119813,308,enigmatic,1368726792 +119813,353,dark hero,1368726677 +119813,541,visual,1368726687 +119813,866,neo-noir,1368726654 +119813,866,stylish,1368726642 +119813,903,enigmatic,1368726792 +119813,913,noir thriller,1368726631 +119813,924,visual,1368726688 +119813,1089,bloody,1368726739 +119813,1129,lone hero,1368726773 +119813,1179,neo-noir,1368726654 +119813,1199,cerebral,1368726699 +119813,1199,visual,1368726687 +119813,1199,visually appealing,1368726802 +119813,1212,noir,1368726712 +119813,1237,reflective,1368726823 +119813,1241,gruesome,1368726813 +119813,1245,neo-noir,1368726654 +119813,1248,noir,1368726712 +119813,1248,noir thriller,1368726631 +119813,1249,stylish,1368726642 +119813,1251,reflective,1368726823 +119813,1264,stylish,1368726642 +119813,1270,awesome soundtrack,1368726666 +119813,1289,meditative,1368726751 +119813,1305,melancholic,1368726619 +119813,1464,enigmatic,1368726792 +119813,1527,visual,1368726688 +119813,1527,visually appealing,1368726802 +119813,1617,neo-noir,1368726654 +119813,1748,cerebral,1368726699 +119813,2076,neo-noir,1368726654 +119813,2571,visual,1368726687 +119813,2640,comics,1368726834 +119813,2726,noir thriller,1368726631 +119813,2912,stylish,1368726642 +119813,2917,noir,1368726712 +119813,2966,melancholic,1368726618 +119813,3364,noir,1368726712 +119813,3677,meditative,1368726751 +119813,3702,lone hero,1368726773 +119813,3703,lone hero,1368726773 +119813,3741,meditative,1368726751 +119813,3793,comics,1368726834 +119813,3917,gruesome,1368726813 +119813,4105,gruesome,1368726813 +119813,4144,melancholic,1368726619 +119813,4848,visually appealing,1368726802 +119813,4878,cerebral,1368726699 +119813,4881,noir,1368726712 +119813,5349,comics,1368726834 +119813,5388,psychological,1368726783 +119813,6669,meditative,1368726751 +119813,6874,bloody,1368726740 +119813,6874,dark hero,1368726677 +119813,7022,bloody,1368726740 +119813,8636,comics,1368726834 +119813,8783,Atmospheric,1219151898 +119813,8783,M. Night Shyamalan,1219151894 +119813,8957,gruesome,1368726813 +119813,32587,bloody,1368726740 +119813,32587,visual,1368726688 +119813,33794,comics,1368726834 +119813,34437,melancholic,1368726619 +119813,44761,noir,1368726712 +119813,52281,bloody,1368726739 +119813,79132,cerebral,1368726699 +119816,1,animation,1138336930 +119816,1,computer animation,1138336930 +119816,1,pixar,1138336912 +119816,1,toys,1138336930 +119816,16,las vegas,1137777781 +119816,16,Martin Scorsese,1137777760 +119816,16,mob,1137777782 +119816,32,end of the world,1137778110 +119816,32,future,1137778110 +119816,32,sci-fi,1137778110 +119816,32,time travel,1137778110 +119816,47,crime,1137777975 +119816,47,investigation,1137777976 +119816,47,seven deadly sins,1137777987 +119816,62,music,1138336630 +119816,111,assassination,1137778014 +119816,111,insane,1137778027 +119816,111,Martin Scorsese,1137778012 +119816,150,NASA,1137778653 +119816,150,space,1137778651 +119816,170,computers,1138336467 +119816,170,hackers,1138336467 +119816,170,internet,1138336467 +119816,175,drugs,1137777913 +119816,175,teenagers,1137777913 +119816,185,computers,1137735155 +119816,253,dracula,1138336952 +119816,253,vampire,1138336952 +119816,253,vampires,1138336952 +119816,260,fantasy,1137734935 +119816,260,sci-fi,1137734935 +119816,260,space,1137734935 +119816,260,space-opera,1137734935 +119816,296,crime,1137777951 +119816,296,hit men,1137777961 +119816,296,murder,1137777951 +119816,296,Quentin Tarantino,1137777951 +119816,318,prison,1137777997 +119816,318,prison escape,1137778006 +119816,318,Stephen King,1137777998 +119816,431,Brian De Palma,1137777757 +119816,431,crime,1137777754 +119816,441,1970s,1137777826 +119816,441,drugs,1137777826 +119816,480,sci-fi,1137734789 +119816,527,Holocaust,1137778588 +119816,527,war,1137778590 +119816,541,distopia,1137778733 +119816,541,fantasy,1137778733 +119816,541,future,1137778733 +119816,541,sci-fi,1137778733 +119816,551,animation,1137778804 +119816,551,christmas,1137778804 +119816,551,halloween,1137778804 +119816,551,Tim Burton,1137778804 +119816,593,cannibalism,1137778832 +119816,593,serial killer,1137778823 +119816,608,Coen Brothers,1137777866 +119816,661,animation,1137778786 +119816,661,fantasy,1137778786 +119816,661,Roald Dahl,1137778786 +119816,663,comedy,1137777921 +119816,663,drugs,1137777930 +119816,663,kids in the hall,1137777921 +119816,750,comedy,1137777845 +119816,750,Stanley Kubrick,1137777858 +119816,778,drugs,1137778047 +119816,778,heroin,1137778047 +119816,780,aliens,1137735088 +119816,924,avante-garde,1137734874 +119816,924,sci-fi,1137734874 +119816,924,space,1137734874 +119816,1042,music,1138336645 +119816,1088,dance,1138336670 +119816,1088,music,1138336669 +119816,1093,drugs,1138336608 +119816,1093,jim morrison,1138336608 +119816,1097,aliens,1137735018 +119816,1097,sci-fi,1137735012 +119816,1097,space,1137735012 +119816,1127,sci-fi,1137778719 +119816,1127,water,1137778719 +119816,1196,fantasy,1137734922 +119816,1196,sci-fi,1137734922 +119816,1196,space,1137734922 +119816,1196,space opera,1137778626 +119816,1199,avante garde,1138336823 +119816,1199,distopia,1138336823 +119816,1199,fantasy,1138336823 +119816,1199,future,1138336823 +119816,1210,fantasy,1137734985 +119816,1210,sci-fi,1137734985 +119816,1210,space,1137734985 +119816,1210,space-opera,1137734985 +119816,1225,composer,1138336575 +119816,1225,mozart,1138336591 +119816,1225,music,1138336591 +119816,1225,music history,1138336591 +119816,1225,Salieri,1138336794 +119816,1258,cabin fever,1137778817 +119816,1258,Stephen King,1137778810 +119816,1265,comedy,1137778750 +119816,1270,comedy,1138336382 +119816,1270,sci-fi,1138336382 +119816,1270,time travel,1138336371 +119816,1288,heavy metal,1138336513 +119816,1288,mockumentary,1138336512 +119816,1288,music,1138336510 +119816,1288,rock and roll,1138336519 +119816,1343,remake,1137778742 +119816,1449,mockumentary,1137779001 +119816,1580,aliens,1137735096 +119816,1641,stripping,1137778933 +119816,1653,distopia,1137734997 +119816,1653,sci-fi,1137734998 +119816,1704,genius,1137778957 +119816,1704,math,1137778957 +119816,1753,comedy,1137778975 +119816,1753,drugs,1137778975 +119816,1753,marijuana,1137778975 +119816,1784,comedy,1137778894 +119816,1784,obsessive compulsive disorder,1137778894 +119816,1967,David Bowie,1137778990 +119816,1967,muppets,1137778983 +119816,2011,comedy,1137778906 +119816,2011,sci-fi,1137778906 +119816,2011,time travel,1137778899 +119816,2021,fantasy,1137778917 +119816,2021,sci-fi,1137778917 +119816,2028,Steven Spielberg,1137778525 +119816,2028,World War II,1137778524 +119816,2324,Holocaust,1137778583 +119816,2342,music,1138336615 +119816,2342,rock and roll,1138336622 +119816,2571,distopia,1137735036 +119816,2571,fantasy,1137735036 +119816,2571,sci-fi,1137735036 +119816,3471,alien,1137735069 +119816,3471,sci-fi,1137735078 +119816,3471,space,1137735078 +119816,3615,computer animation,1137735241 +119816,3897,groupie,1138336666 +119816,3897,music,1138336666 +119816,4571,rock and roll,1138336538 +119816,4571,time travel,1138336536 +119816,4874,alien,1137734895 +119816,4874,fantasy,1137734895 +119816,4874,sci-fi,1137734895 +119816,4973,avante garde,1137778219 +119816,4973,whimsical,1137778329 +119816,4980,rock and roll,1138336540 +119816,4980,time travel,1138336539 +119816,4993,fantasy,1137778418 +119816,4993,Tolkien,1137778388 +119816,4993,trilogy,1137778418 +119816,4995,genius,1137778320 +119816,4995,math,1137778320 +119816,4995,nobel prize,1137778320 +119816,4995,schizophrenia,1137778320 +119816,5064,fantasy,1137778370 +119816,5418,amnesia,1138246607 +119816,5418,memory,1138246607 +119816,5418,spy,1138246607 +119816,5418,spying,1138246607 +119816,5502,aliens,1137734829 +119816,5669,guns,1137778360 +119816,5669,violence in america,1137778360 +119816,5791,art,1137778384 +119816,5902,avante garde,1137778210 +119816,5952,fantasy,1137778434 +119816,5952,Tolkien,1137778434 +119816,5952,trilogy,1137778434 +119816,5995,Holocaust,1137778439 +119816,5995,piano,1137778466 +119816,5995,World War II,1137778466 +119816,6333,comic,1137734967 +119816,6333,sci-fi,1137734967 +119816,6780,black holes,1137778343 +119816,6780,physics,1137778343 +119816,6979,computers,1138336417 +119816,7153,fantasy,1137778430 +119816,7153,Tolkien,1137778430 +119816,7153,trilogy,1137778430 +119816,7361,avante-garde,1137734729 +119816,7361,sci-fi,1137778375 +119816,8360,computer animation,1137735203 +119816,8360,fable,1137735328 +119816,8376,comedy independent must-see,1137734577 +119816,30793,fantasy,1137735321 +119816,30793,roald dahl,1137735321 +119816,33493,fantasy,1137778677 +119816,33493,sci-fi,1137778677 +119816,33493,space,1137778670 +119816,33493,space opera,1137778669 +119816,33880,avante garde,1138246537 +119816,33880,independent film,1138246537 +119816,34072,antarctica,1138245865 +119816,34072,documentary,1138245865 +119816,34072,penguins,1138245865 +119816,34072,survival,1138245865 +119816,41566,animals,1138336906 +119816,41566,fantasy,1138336906 +119819,60,magic,1137521608 +119819,265,magic,1137521245 +119819,314,magic,1137521209 +119819,531,magic,1137521204 +119819,3088,magic,1137521443 +119819,4014,magic,1137521174 +119819,4896,magic,1137521531 +119819,5816,magic,1137521523 +119819,6173,magic,1137521186 +119819,7147,magic,1137521562 +119819,8368,magic,1137521295 +119819,30991,magic,1137521112 +119819,40815,magic,1137521597 +119821,5618,adventure,1431567548 +119821,5618,fairy tale,1431567545 +119821,5618,hallucinatory,1431567571 +119821,5618,imagination,1431567591 +119821,5971,anime,1431567665 +119821,5971,Cute,1431567687 +119821,5971,feel-good,1431567675 +119821,5971,visually appealing,1431567669 +119821,59784,funny,1431567800 +119821,59784,Kung Fu,1431567794 +119821,60069,Animation,1431567429 +119821,60069,funny,1431567437 +119821,60069,robots,1431567454 +119821,60069,Sci-Fi,1431567448 +119821,78499,adventure,1431567369 +119821,78499,animation,1431567358 +119823,18,Antonio Banderas,1248000054 +119823,18,Madonna,1248000066 +119823,18,multiple storylines,1248000041 +119823,18,Quentin Tarantino,1248000024 +119823,393,fighting,1247362172 +119823,393,nostalgic,1247362274 +119823,393,video game,1247362160 +119823,393,video game adaptation,1247362186 +119823,1088,cheesy,1247362121 +119823,1088,chick flick,1247362127 +119823,1088,music,1247362113 +119823,1088,Patrick Swayze,1247362107 +119823,1088,romance,1247362098 +119823,1101,aviation,1247362048 +119823,1101,fighter jet planes,1247362066 +119823,1584,astronomy,1247353930 +119823,1645,demons,1247364920 +119823,1645,devil,1247364920 +119823,1645,Keanu Reeves,1247364920 +119823,1645,satan,1247364920 +119823,1876,astronomy,1247353950 +119823,2791,AFI 100 (Laughs),1247363996 +119823,2791,AFI 100 (Movie Quotes),1247363968 +119823,2791,classic,1247363986 +119823,2791,comedy,1247363986 +119823,2791,farce,1247363986 +119823,2791,Leslie Nielsen,1247363968 +119823,2791,Parody,1247363986 +119823,3081,atmospheric,1247975516 +119823,3081,Dark,1247975507 +119823,3081,visually appealing,1247975526 +119823,3275,Boston,1247363412 +119823,3275,dark humor,1247363402 +119823,3275,Irish,1247363395 +119823,3745,animation,1247361193 +119823,3745,astronomy,1247361228 +119823,3745,future,1247361212 +119823,3745,space,1247361198 +119823,3949,depressing,1247364376 +119823,3949,disturbing,1247364375 +119823,3949,intense,1247364395 +119823,3949,psychology,1247364376 +119823,3997,cheap,1247353280 +119823,4223,sniper,1247363352 +119823,4874,astronomy,1247362885 +119823,6502,british,1247362402 +119823,6502,horror,1247362397 +119823,6502,post-apocalyptic,1247362390 +119823,6502,virus,1247362376 +119823,6502,Zombie,1247362365 +119823,7090,amazing photography,1247363075 +119823,7090,Epic,1247363098 +119823,7090,martial arts,1247363098 +119823,7090,visual appealing,1247363098 +119823,8360,animation,1247361765 +119823,8360,Funniest Movies,1247361781 +119823,8360,hilarious,1247361794 +119823,8360,parody,1247361794 +119823,8874,black comedy,1247362436 +119823,8874,British,1247362466 +119823,8874,dark humor,1247362466 +119823,8874,parody,1247362466 +119823,8874,Simon Pegg,1247362466 +119823,8874,zombies,1247362484 +119823,8985,Ryan Reynolds,1247364634 +119823,27674,complicated plot,1247999938 +119823,27674,multiple storylines,1247999918 +119823,27904,surrealism,1247363149 +119823,27904,vector graphic,1247363160 +119823,33004,humor,1247361297 +119823,33004,sarcasm,1247361311 +119823,33004,space,1247361304 +119823,33166,multiple storylines,1247999868 +119823,33166,race issues,1247999897 +119823,33683,horror,1247362305 +119823,33683,plot twist,1247362323 +119823,33683,psycho,1247362314 +119823,37384,comedy,1247364113 +119823,37384,Ryan Reynolds,1247364108 +119823,40581,Ryan Reynolds,1247364600 +119823,40581,Sad but true ;),1247364582 +119823,44665,twist,1247363377 +119823,44849,amazing photography,1247363126 +119823,44849,animation,1247361658 +119823,44849,graphic,1247361664 +119823,50794,Ryan Reynolds,1247364557 +119823,50794,surprisingly good,1247364537 +119823,51662,action,1247363317 +119823,51662,amazing photography,1247363243 +119823,51662,atmospheric,1247363243 +119823,51662,comic book,1247363254 +119823,51662,stylized,1247363243 +119823,51662,sword fight,1247363313 +119823,51935,Mark Wahlberg,1247364700 +119823,51935,sniper,1247364706 +119823,57223,action,1247353236 +119823,57223,bad plot,1247353248 +119823,57223,dragons,1247353230 +119823,57326,Jason Statham,1247353187 +119823,57326,plot,1247353198 +119823,59315,marvel,1247354092 +119823,59315,technology,1247354114 +119823,59369,action,1247363441 +119823,59369,CIA,1247363448 +119823,59369,realistic,1247363435 +119823,60684,plot,1247354185 +119823,60684,When bad movies happen to good comics,1247354206 +119823,63992,Teen movie,1247364672 +119823,66090,depressing,1247364486 +119823,66090,intense,1247364486 +119823,66090,Underrated,1247364486 +119823,67252,boring,1247363658 +119823,67252,lame fight scenes,1247363666 +119823,67252,worse than expected,1247363686 +119823,68319,action,1247353012 +119823,68319,comic,1247353022 +119823,68319,Ryan Reynolds,1247364800 +119823,68358,action,1247352975 +119823,68358,animation,1247352986 +119823,68358,space,1247352971 +119823,69481,action,1247352926 +119823,69481,realistic,1247352937 +119823,69481,war,1247352930 +119833,3730,reflective,1192990034 +119835,7163,author:Philip K. Dick,1313701479 +119835,7163,Philip K. Dick,1313701475 +119835,7163,sci-fi,1313701471 +119835,8360,Dreamworks,1241738215 +119835,8360,fairy tale,1241738220 +119835,8360,Funniest Movies,1241738225 +119835,8360,hilarious,1241738237 +119835,8360,Mike Myers,1241738229 +119835,8360,parody,1241738210 +119835,8784,Zach Braff,1241738746 +119835,36529,political,1241738752 +119835,38038,Aardman,1241738047 +119835,38038,animation,1241738142 +119835,38038,british,1241738058 +119835,38038,british comedy,1241738053 +119835,38038,claymation,1241738148 +119835,38038,dogs,1241738089 +119835,38038,guns,1241738093 +119835,38038,hilarious,1241738064 +119835,38038,Oscar (Best Animated Feature),1241738155 +119835,38038,parody,1241738072 +119835,38038,quirky,1241738077 +119835,38038,satirical,1241738081 +119835,38038,stop-motion,1241738159 +119835,38038,talking animals,1241738163 +119835,38038,Wallace & Gromit,1241738133 +119835,60753,prison,1221984957 +119853,1270,Steven Spielberg,1329074979 +119853,1270,time travel,1329074981 +119853,2011,sci-fi,1329074976 +119853,2011,time travel,1329074973 +119853,2012,time travel,1329074970 +119874,97913,nostalgic,1354921568 +119874,97913,Sarah Silverman,1354921563 +119874,97913,video games,1354921559 +119875,116823,pg-13:intense sci-fi action and violence,1423771205 +119875,116823,revolution,1423771205 +119875,116823,women,1423771205 +119884,260,classic,1433269938 +119884,260,intense,1433269934 +119884,260,sci-fi,1433269942 +119885,81845,true story,1445328641 +119893,1234,organized crime,1402348705 +119897,86880,Johnny Depp,1322025028 +119897,86880,mermaid,1322025019 +119905,593,Acting,1376878153 +119905,593,Horror,1376878151 +119905,593,Nothing at all,1376878147 +119915,260,epic adventure,1434237448 +119915,260,space action,1434237440 +119920,59315,adventure,1214928923 +119920,59315,Marvel,1214928874 +119923,296,cult,1452446915 +119923,296,Quentin Tarantino,1452446905 +119923,296,Uma Thurman,1452446912 +119940,260,darth vader,1437793671 +119940,260,luke skywalker,1437793667 +119957,474,secret service,1296331097 +119965,7090,amazing photography,1159598644 +119965,30749,To Watch Soon,1182071530 +119971,260,classic sci-fi,1440877703 +119971,260,scifi cult,1440877693 +119996,260,action,1442105207 +119996,260,scifi,1442105203 +120016,59295,bad science,1285757855 +120016,59295,creationism,1285757861 +120016,59295,intelligent design,1285757874 +120016,59295,misinformation,1285757871 +120016,59295,onesided,1285757866 +120016,59295,propaganda,1285757860 +120016,59295,religion,1285757869 +120034,150,based on a true story,1355188138 +120034,223,stoner comedy,1355175702 +120034,293,assassin,1355176422 +120034,296,dark comedy,1355275437 +120034,296,Quentin Tarantino,1355174788 +120034,337,bittersweet,1355177294 +120034,337,Leonardo DiCaprio,1355177288 +120034,337,oscar bait,1355177362 +120034,356,romance,1355174913 +120034,357,Romance,1355274065 +120034,377,Romance,1355174663 +120034,529,father-son relationship,1355176005 +120034,924,Stanley Kubrick,1355274094 +120034,1079,literate,1355188772 +120034,1302,baseball,1355177114 +120034,1625,Michael Douglas,1355175405 +120034,2248,John Cusack,1355177011 +120034,2398,Christmas,1355195214 +120034,2565,musical,1355195365 +120034,2571,Keanu Reeves,1355175005 +120034,2948,007,1355175387 +120034,2948,espionage,1355175382 +120034,2948,james bond,1355175384 +120034,2949,007,1355175377 +120034,2949,espionage,1355175371 +120034,2949,james bond,1355175374 +120034,3098,baseball,1355176921 +120034,3098,sappy,1355176927 +120034,3098,sports,1355176925 +120034,3911,absurd,1355188725 +120034,3911,mockumentary,1355188731 +120034,4499,con artists,1355188452 +120034,5445,Tom Cruise,1355174539 +120034,6188,midlife crisis,1355189289 +120034,6874,Quentin Tarantino,1355189016 +120034,6942,british,1355176894 +120034,6942,Romance,1355176902 +120034,7454,atmospheric,1355275974 +120034,7454,Hugh Jackman,1355275967 +120034,7454,monsters,1355275969 +120034,8972,Nicolas Cage,1355195323 +120034,30707,oscar bait,1355176822 +120034,30793,Tim Burton,1355195265 +120034,34405,joss whedon,1355175621 +120034,41566,fantasy world,1355174771 +120034,51255,british comedy,1355285651 +120034,59315,Robert Downey Jr.,1355175664 +120034,59315,superhero,1355175682 +120034,59369,fight scenes,1355176033 +120034,73017,Atmospheric,1355177262 +120034,81537,Zach Galifianakis,1355284819 +120034,94780,fairy tale,1355285012 +120034,95167,Kick-Butt Women,1355176294 +120034,96110,Zach Galifianakis,1355284956 +120034,98193,rape,1355176324 +120052,260,captivating,1442099792 +120052,260,imaginative,1442099814 +120053,6867,but a little slow,1138422519 +120053,6867,cute,1138422519 +120053,41863,to-rent,1155428542 +120063,1204,atmospheric,1240909020 +120063,1204,awesome soundtrack,1240909021 +120063,1204,based on true story,1240909027 +120063,1204,desert,1240909033 +120063,1204,Middle East,1240909038 +120063,1204,Oscar (Best Cinematography),1240909049 +120063,1204,Oscar (Best Directing),1240909048 +120063,1269,dark comedy,1241599060 +120063,1269,too long,1241599104 +120063,2427,atmospheric,1240909242 +120063,2427,meditative,1240909239 +120063,2427,nature,1240909253 +120063,2427,Terrence Malick,1240909235 +120063,2932,Ennio Morricone,1240909269 +120063,2932,Terrence Malick,1240909271 +120063,3741,atmospheric,1240909306 +120063,3741,road movie,1240909310 +120063,3741,Terrence Malick,1240909313 +120063,4102,NOT A MOVIE,1290956451 +120063,4572,Ridley Scott,1240909655 +120063,4819,Got nothing to do with figure skating,1291496413 +120063,5022,Dirk Bogarde,1240910690 +120063,5022,Harold Pinter,1240910673 +120063,5022,Joseph Losey,1240910687 +120063,5119,Albert Finney,1242375271 +120063,5119,kitchen sink,1242375284 +120063,6035,Jean Gabin,1241889583 +120063,6539,Johnny Depp,1242595964 +120063,6934,Philosophical,1241521666 +120063,6934,sequel,1241521673 +120063,7265,Paris 68,1240909566 +120063,7336,repulsive,1241251167 +120063,7924,Akira Kurosawa,1240909728 +120063,7924,Toshirô Mifune,1240909735 +120063,8694,Fred Astaire,1240910952 +120063,25759,montage,1241250961 +120063,25788,Howard Hawks,1240910713 +120063,26471,NOT A MOVIE,1290956459 +120063,27803,Alejandro Amenábar,1240909114 +120063,27803,Javier Bardem,1240909120 +120063,31672,easily confused with other movie(s) (title),1240477962 +120063,31672,Hark Tsui,1240477956 +120063,37382,Keira Knightley,1242552691 +120063,38499,NOT A MOVIE,1223984963 +120063,39659,Pier Paolo Pasolini,1240477995 +120063,39659,Terence Stamp,1240477997 +120063,40752,Takeshi Kitano,1241250907 +120063,42418,atmospheric,1240909352 +120063,42418,beautiful,1240909365 +120063,42418,Christian Bale,1240909359 +120063,42418,Colin Farrell,1240909362 +120063,42418,lyrical,1240909370 +120063,42418,Terrence Malick,1240909357 +120063,42723,stupid stereotypes,1241941934 +120063,42783,love story,1241250792 +120063,42783,melodrama,1241250792 +120063,42783,visually stunning,1241250792 +120063,43376,based on a true story,1240909163 +120063,43376,beautiful,1240909164 +120063,43376,conversation,1240909205 +120063,43415,Wong Kar-wai,1241521577 +120063,44555,Berlin,1240909065 +120063,44555,surveillance,1240909077 +120063,46441,Bud Spencer,1240478035 +120063,48744,Underrated,1240909484 +120063,49355,Jean Gabin,1240909684 +120063,49355,Jean Renoir,1240909698 +120063,54378,Tommi Korpela,1240912599 +120063,55269,Owen Wilson,1240910629 +120063,55269,spiritual journey,1240910623 +120063,55269,Wes Anderson,1240910615 +120063,60336,Denis Lavant,1240908793 +120063,60336,Julie Delpy,1240477917 +120063,60336,Juliette Binoche,1240908757 +120063,60990,Yasujiro Ozu,1240908879 +120063,62203,probably hardest gore ever,1241251037 +120063,62764,Louis Malle,1240477947 +120063,62764,weird,1240910904 +120063,62916,James Mason,1240910841 +120063,63698,stylized,1242375225 +120063,64278,psychoanalysis,1241250870 +120063,64278,Zizek,1241250875 +120063,64280,cinéma vérité,1242152547 +120063,65263,Harold Lloyd,1240477937 +120063,65638,yuppies,1240908817 +120063,65907,Reino Nordin,1240908936 +120063,71108,Golden Palm,1252913444 +120063,71976,Fritz Lang,1259603636 +120063,72276,Fritz Lang,1260525002 +120063,72626,short,1291885389 +120063,77854,NOT A MOVIE,1290956266 +120106,593,cannibalism,1423344130 +120106,593,fiction,1423344130 +120106,593,stupid_woman,1423344130 +120106,620,Werner Herzog,1185818514 +120106,1273,Jim Jarmusch,1185930100 +120106,1921,maths,1185930162 +120106,2019,western,1185930040 +120106,2931,kusturica,1185930017 +120106,6935,revolution,1355787654 +120106,7124,documentary,1185929957 +120106,26616,Werner Herzog,1198280208 +120106,51596,bugs,1373805165 +120106,51596,mockumentary,1373805161 +120106,51596,space,1373805146 +120106,51596,space program,1373805151 +120106,71106,british comedy,1360118019 +120106,84152,drugs,1377204728 +120106,103590,space,1373803726 +120106,103590,space program,1373803726 +120106,103593,engineering,1373803690 +120106,103593,scientist hero,1373803690 +120106,103593,soviet,1373803654 +120106,103593,space,1373803655 +120106,103593,space program,1373803655 +120106,108054,russia,1417389604 +120106,110439,magic,1450058968 +120106,110439,sorcery,1450058996 +120106,110439,witchcraft,1450059009 +120106,118290,posta,1417918832 +120106,118290,postapocalyptic,1417918844 +120106,118290,robot,1417918821 +120106,118446,history,1418008167 +120106,118446,india,1418008158 +120106,118446,russia,1418008154 +120106,127658,jail,1423090611 +120106,127658,planet,1423090607 +120106,137473,israel,1436326188 +120106,137473,jesus,1436326176 +120106,137473,special agents,1436326250 +120106,137473,time machine,1436326183 +120106,137473,ызусшфд фпутеы,1436326240 +120106,144058,chukotka,1444572184 +120106,144058,gold,1444572189 +120106,144058,gold-diggers,1444572276 +120106,144058,remake,1444572173 +120106,144058,sixties,1444572178 +120106,148707,atmospheric,1450047091 +120106,148707,Fedorchenko,1450047146 +120106,148707,melancholy,1450047123 +120106,148707,surreal,1450047102 +120106,148707,visually appealing,1450047113 +120110,260,classic,1435942530 +120110,260,Nerd,1435942520 +120110,101142,animation,1436563067 +120110,101142,funny,1436563067 +120110,101142,stone age,1436563067 +120110,115149,action,1437763143 +120110,115149,killer,1437763143 +120110,115149,widows/widowers,1437763143 +120110,115617,animation,1435944890 +120110,115617,kids,1435944890 +120110,115617,robots,1435944890 +120110,120635,action,1438439306 +120110,120635,murder,1438439306 +120110,120635,police,1438439306 +120182,260,action,1432135741 +120182,260,classic sci-fi,1432135734 +120182,260,sci-fi,1432135674 +120235,909,Gay Cowboy,1144562432 +120238,260,sci-fi,1435238971 +120238,260,space action,1435238976 +120239,48043,philosophical,1275270487 +120239,48043,thought-provoking,1275270409 +120244,260,robots,1439793431 +120244,260,sci-fi,1439793386 +120255,35636,80s,1427916225 +120255,35636,teen,1427916225 +120255,35636,witch,1427916225 +120255,111320,christian,1424462675 +120255,111320,unbearable,1424462675 +120255,111320,white people,1424462675 +120255,120132,musical,1422240733 +120255,120132,remake,1422240733 +120255,120132,too long,1422240733 +120266,1230,New York,1442681715 +120266,1230,romantic,1442681712 +120266,1230,Woody Allen,1442681709 +120266,115713,artificial intelligence,1442681179 +120266,115713,sci-fi,1442681183 +120266,134853,Animation,1442681254 +120266,134853,family,1442681265 +120275,4226,nonlinear,1451911761 +120275,4226,psychology,1451911764 +120275,27773,revenge,1451911718 +120275,27773,twist ending,1451911700 +120304,118097,Christmas,1417558457 +120317,96751,Lighting,1354555761 +120317,96751,original story,1354555752 +120317,96751,Richard Gere,1354555752 +120317,96751,Susan Sarandon,1354555752 +120317,96811,cinematography,1354555661 +120317,96811,Michael Pena,1354555349 +120317,96811,Original story,1354555661 +120317,96821,atmospheric,1354555794 +120317,96821,based on a book,1354555720 +120317,96821,Emma Watson,1354555720 +120317,96821,Ensemble Cast,1354555720 +120317,96821,resonant,1354555794 +120317,97304,propaganda,1354555872 +120317,97938,Direction,1354555848 +120317,97938,sound effects,1354555847 +120317,97938,visual effects,1354555847 +120339,111743,funny,1415255308 +120339,111743,witty,1415255306 +120348,260,culte,1442705588 +120348,260,Science Fiction,1442705610 +120386,260,exciting,1441923290 +120386,260,good acting,1441923312 +120386,260,great soundtrack,1441923302 +120386,260,great story,1441923294 +120427,260,epic adventure,1435867993 +120427,260,good vs evil,1435868000 +120427,260,sci-fi,1435867985 +120459,4995,biography,1433250924 +120459,4995,math,1433250916 +120459,4995,psychology,1433250902 +120459,4995,schizophrenia,1433250910 +120459,4995,twist ending,1433250932 +120459,55247,great soundtrack,1433250436 +120459,55247,self discovery,1433250421 +120459,77177,China,1433251146 +120459,77177,nature,1433251150 +120459,105011,history,1433251190 +120459,105011,math,1433251184 +120501,318,adventure,1437938962 +120501,318,friendship,1437938962 +120501,318,prison,1437938962 +120501,318,smart,1437938962 +120501,356,comedy drama adventure,1434645750 +120501,356,justice,1434645750 +120501,356,meaning of life,1434645750 +120519,296,great soundtrack,1433240336 +120519,296,multiple storylines,1433240336 +120519,296,quinten tarantino,1433240336 +120524,253,adapted from:book,1307591047 +120524,253,based on a book,1307591083 +120524,253,Kirsten Dunst,1307591077 +120524,253,Nudity (Full Frontal),1307591069 +120524,253,Tom Cruise,1307591038 +120524,253,vampire,1307591066 +120524,72483,ending,1307590818 +120529,1230,neurosis,1424303832 +120529,1230,quirky,1424303852 +120529,1230,relationships,1424303854 +120529,1230,thought-provoking,1424303849 +120529,1230,witty,1424303839 +120529,1237,atmospheric,1406676901 +120529,1237,Death,1406676922 +120529,1237,dreamlike,1406676908 +120529,1237,existentialism,1406676907 +120529,1237,Ingmar Bergman,1406676916 +120529,1237,medieval,1406676918 +120529,1237,meditative,1406676919 +120529,1237,religion,1424625076 +120529,1454,Richard Linklater,1410529324 +120529,1454,suburbia,1410529321 +120529,2131,autumnal,1407016440 +120529,2131,bleak,1407016434 +120529,2131,reflective,1407016436 +120529,2427,World War II,1425333344 +120529,3676,Atmospheric,1408138464 +120529,3676,David Lynch,1408138460 +120529,3676,disturbing,1408138465 +120529,3676,dreamlike,1408138473 +120529,3676,ominous,1408138469 +120529,3676,surreal,1408138462 +120529,3741,atmospheric,1424303812 +120529,3925,bleak,1424625431 +120529,3925,enigmatic,1424625430 +120529,3925,understated,1424625420 +120529,6123,Chris Marker,1424625464 +120529,6123,visually appealing,1424625457 +120529,6711,atmospheric,1428260103 +120529,6711,bittersweet,1428260098 +120529,6711,isolation,1428910392 +120529,6711,loneliness,1428910411 +120529,6711,Melancholic,1428260101 +120529,6890,austere,1424625219 +120529,6890,disturbing,1424625215 +120529,6890,enigmatic,1424625213 +120529,7063,dreamlike,1408138391 +120529,7063,insanity,1408138388 +120529,7063,megalomania,1407016456 +120529,7063,obsession,1407016462 +120529,7063,South America,1407016458 +120529,7063,stylized,1408138384 +120529,7063,Werner Herzog,1408138380 +120529,7327,cerebral,1424625122 +120529,7327,psychology,1424625120 +120529,26326,surreal,1424624846 +120529,26326,weird,1424624841 +120529,56274,Nicole Kidman,1406676882 +120529,56274,Noah Baumbach,1406676867 +120529,56782,greed,1424625385 +120529,56782,morality,1424625400 +120529,56782,religion,1424625391 +120529,56782,visually appealing,1424625389 +120529,59519,cinematography,1407629809 +120529,59519,friendship between young adults,1407629832 +120529,59519,writers,1407629824 +120529,59519,young intellectuals,1407629841 +120529,71464,black humour,1424732549 +120529,71464,dark comedy,1407016383 +120529,71464,depression,1407016401 +120529,71464,Jewish,1424732546 +120529,71464,judaism,1407016403 +120529,71464,Philosophical,1407016388 +120529,71464,slow,1407016406 +120529,71464,suburbia,1407016408 +120529,73983,character study,1407635218 +120529,73983,Sebastián Silva,1424303998 +120529,74916,Dark comedy,1408138496 +120529,82684,meaningless,1408138593 +120529,87234,Coming Of Age,1407017147 +120529,90947,city life,1407788752 +120529,90947,depression,1407788775 +120529,91077,Hawaii,1408138574 +120529,94959,bittersweet,1424624863 +120529,94959,coming of age,1424624865 +120529,96728,disturbing,1406676983 +120529,96728,Paul Thomas Anderson,1406676977 +120529,99058,depressing,1408138526 +120529,99058,mean-spirited,1408138530 +120529,99058,nihilism,1408138533 +120529,100556,absurd,1408138412 +120529,100556,surreal,1408138415 +120529,100556,thought provoking,1408138417 +120529,102800,Noah Baumbach,1406677067 +120529,103984,ironic,1408138433 +120529,106841,bleak atmosphere,1424303914 +120529,111287,Sebastián Silva,1402677921 +120529,112421,mental illness,1411844560 +120529,112421,Michael Fassbender,1411844564 +120529,112421,soundtrack,1411844567 +120529,115569,dark,1424303888 +120529,127130,Noah Baumbach,1450200234 +120549,112,Jackie Chan,1156360311 +120549,112,mixed marriage,1156360311 +120549,2194,gansters,1156360283 +120549,2194,Kevin Costner,1156360283 +120549,2194,law enforcement,1156360283 +120549,2194,Prohibition,1156360283 +120549,3044,Emma Thompson,1156360872 +120549,3044,Kenneth Branagh,1156360872 +120549,3044,past life,1156360872 +120549,34405,Joss Whedon,1156360473 +120549,34405,Nathan Filion,1156360473 +120549,34405,western,1156360473 +120549,43396,Anthony Hopkins,1156360431 +120549,43396,motorcycle,1156360431 +120552,260,classic sci-fi,1440304835 +120552,260,sci-fi,1440304830 +120578,3578,history,1453370587 +120578,3578,sword fight,1453370600 +120578,3578,War,1453371081 +120578,6016,atmospheric,1452683237 +120593,441,high school,1402451697 +120593,441,small town,1402451695 +120593,1672,courtroom,1402236491 +120593,1672,Matt Damon,1402236502 +120593,84392,a couple of well-thought surprises break the formula,1402236456 +120593,84392,legal,1402236464 +120597,260,ROBOTS AND ANDROIDS,1440986187 +120597,260,romance,1440967631 +120597,260,space epic,1440986179 +120599,318,friendship,1432995503 +120599,318,great ending,1432995508 +120599,318,inspirational,1432995520 +120599,318,prison escape,1432995516 +120608,50,short-term memory loss,1368317401 +120608,107,treasure,1368317099 +120608,150,stranded,1368317145 +120608,208,dark hero,1368317181 +120608,353,dark hero,1368317182 +120608,380,arnold,1368317222 +120608,485,arnold,1368317222 +120608,589,arnold,1368317222 +120608,592,dark hero,1368317181 +120608,866,neo-noir,1368317280 +120608,898,screwball comedy,1368317239 +120608,905,screwball comedy,1368317239 +120608,910,screwball comedy,1368317239 +120608,913,noir thriller,1368317128 +120608,1179,neo-noir,1368317280 +120608,1206,short-term memory loss,1368317401 +120608,1240,arnold,1368317222 +120608,1245,neo-noir,1368317280 +120608,1248,noir thriller,1368317127 +120608,1253,mars,1368317162 +120608,1291,spielberg,1368317428 +120608,1291,treasure,1368317099 +120608,1387,spielberg,1368317428 +120608,1391,mars,1368317162 +120608,1396,conspiracy theory,1368317340 +120608,1580,conspiracy theory,1368317340 +120608,1694,jesus,1368317075 +120608,1894,stranded,1368317145 +120608,2022,christian,1368317259 +120608,2022,jesus,1368317075 +120608,2028,spielberg,1368317428 +120608,2076,neo-noir,1368317280 +120608,2115,spielberg,1368317428 +120608,2115,treasure,1368317099 +120608,2143,dragon,1368317355 +120608,2405,treasure,1368317099 +120608,2571,dark hero,1368317181 +120608,2612,fabulous women's picutre noir hybrid,1137371560 +120608,2617,treasure,1368317099 +120608,2662,mars,1368317162 +120608,2726,noir thriller,1368317127 +120608,2840,jesus,1368317075 +120608,2916,arnold,1368317222 +120608,3052,jesus,1368317075 +120608,3300,stranded,1368317145 +120608,4786,feh,1137371567 +120608,5135,bollywood,1368317053 +120608,5445,spielberg,1368317428 +120608,6539,treasure,1368317099 +120608,7013,noir thriller,1368317128 +120608,7318,jesus,1368317075 +120608,8366,christian,1368317259 +120608,8622,conspiracy theory,1368317340 +120608,51884,bollywood,1368317053 +120660,39,teen slang,1453046974 +120660,2500,clique,1453047079 +120664,55245,rubbish,1205614846 +120701,356,classic,1434494730 +120701,356,long,1434494730 +120701,356,touching,1434494730 +120743,215,conversation,1255823236 +120743,215,dialogue,1255823262 +120743,215,vienna,1255823272 +120743,441,marijuana,1255823694 +120743,597,capitalism,1255824618 +120743,597,shopping,1266530130 +120743,1060,90s,1255821817 +120743,1206,dystopia,1255821690 +120743,1232,masterpiece,1255821193 +120743,1237,death,1255821948 +120743,1584,carl sagan,1255823148 +120743,1584,religion,1255823175 +120743,1608,america porn,1255824377 +120743,1619,Buddhism,1266530719 +120743,1619,Eastern philosophy,1266530715 +120743,1619,Tibet,1266530728 +120743,1704,autodidact,1255822900 +120743,1704,orphan,1255823049 +120743,1730,Dalai Lama,1268526239 +120743,1784,Comedy,1255823342 +120743,1884,drugs,1266530526 +120743,1921,low budget,1266531812 +120743,1921,Sacred geometry,1266531797 +120743,2231,poker,1255823562 +120743,2502,rebellion,1255823613 +120743,2858,social commentary,1255823402 +120743,3160,multiple storylines,1266531591 +120743,3285,marijuana,1255821120 +120743,3285,travel,1255821120 +120743,3285,utopia,1255821120 +120743,3481,90s,1255822387 +120743,3481,actor talks to audience,1255822276 +120743,3481,based on a book,1255822584 +120743,3481,chicago,1255822291 +120743,3481,music,1255822256 +120743,3481,record store,1255822243 +120743,3481,relationships,1255822558 +120743,3481,vinyl,1255822341 +120743,3503,atmospheric,1255821274 +120743,3503,dreamlike,1266531622 +120743,3949,loneliness,1302224195 +120743,3949,social commentary,1302224190 +120743,4553,consumerism,1255823502 +120743,4873,metaphysics,1266531525 +120743,4873,philosophy,1266531510 +120743,4888,minimalist,1255823540 +120743,8529,original plot,1266531051 +120743,8638,dialogue,1255823304 +120743,26422,hippies,1266531360 +120743,43899,loneliness,1266531892 +120743,44191,Alan Moore,1255824238 +120743,44191,anarchist revolutionary,1255824183 +120743,44191,dystopia,1255824207 +120743,44759,cliche,1266532335 +120743,47099,capitalism,1266530924 +120743,48043,atmospheric,1266531266 +120743,48043,mystic,1266531287 +120743,52973,marijuana,1255823647 +120743,53207,cliche,1266532402 +120743,55247,self discovery,1266531606 +120743,55269,India,1266530565 +120743,55269,spiritual journey,1266530572 +120743,55908,entirely dialogue,1266531477 +120743,55908,intellectual,1266531429 +120743,55908,philosophical,1266531473 +120743,55908,unique,1266531467 +120743,58103,cliche,1266532474 +120743,59369,cliche,1266530183 +120743,59900,tasteless,1266529985 +120743,63876,politics,1255822146 +120743,72998,colonialism,1270758185 +120743,72998,ecology,1270758159 +120743,72998,imperialism,1270758289 +120743,95443,cliche,1407278760 +120743,134130,cheesy ending,1453068289 +120743,134130,overrated,1453068307 +120755,500,Comedy,1334399328 +120755,500,cross dressing,1334399284 +120755,500,divorce,1334399301 +120755,500,nanny,1334399334 +120755,500,not funny,1334399322 +120755,500,Robin Williams,1334399419 +120755,500,suspense,1334399413 +120755,778,addiction,1341774097 +120755,778,black comedy,1341774100 +120755,778,Ewan McGregor,1341774120 +120755,778,social commentary,1341774110 +120755,780,disaster,1324941241 +120755,780,humorous,1324941229 +120755,780,sci-fi,1324941233 +120755,780,Will Smith,1324941213 +120755,1199,black comedy,1341662223 +120755,1199,dreamlike,1341662231 +120755,1199,dystopia,1341662225 +120755,1199,Robert De Niro,1341662219 +120755,1199,satire,1341662238 +120755,1199,satirical,1341662239 +120755,1199,sci-fi,1341662242 +120755,1199,thought-provoking,1341662215 +120755,1240,Arnold Schwarzenegger,1343313169 +120755,2724,Chick Flick,1352124822 +120755,2724,Julia Roberts,1352124809 +120755,2916,Arnold Schwarzenegger,1343892497 +120755,2916,cyberpunk,1343892505 +120755,2916,dystopia,1343892502 +120755,2916,sci-fi,1343892507 +120755,2916,virtual reality,1343892512 +120755,3826,boring,1343282506 +120755,3826,illogical,1343282521 +120755,3826,invisibility,1343282534 +120755,3826,unrealistic,1343282617 +120755,3996,Action,1343283898 +120755,3996,atmospheric,1343283902 +120755,3996,beautifully filmed,1343283901 +120755,3996,Kung Fu,1343283888 +120755,3996,martial arts,1343283889 +120755,3996,romance,1343283917 +120755,6902,Amy Smart,1337003732 +120755,6902,funny,1337003784 +120755,6902,Gary Oldman,1337003760 +120755,6902,Michael J. Fox,1337003743 +120755,6902,mindfuck,1337003741 +120755,7143,Japanese culture,1343283801 +120755,7143,martial arts,1343283776 +120755,7143,samurai,1343283779 +120755,8914,Complicated,1337003874 +120755,8914,complicated plot,1337003868 +120755,8914,intellectual,1337003841 +120755,8914,low budget,1337003885 +120755,8914,mindfuck,1337003836 +120755,8914,thought-provoking,1337003850 +120755,8914,time travel,1337003838 +120755,31201,adventure,1424276392 +120755,31201,children,1424276392 +120755,31201,funny,1424276392 +120755,45186,damsel in distress,1332954533 +120755,45186,espionage,1332954431 +120755,45186,Simon Pegg,1332954407 +120755,45186,Tom Cruise,1332954412 +120755,45186,unrealistic,1332954461 +120755,54995,Bruce Willis,1327423312 +120755,58025,egomaniacs,1349722817 +120755,58025,Samuel L. Jackson,1349722825 +120755,60397,Meryl Streep,1324942031 +120755,60397,music:ABBA,1324942046 +120755,60397,Musical,1334400601 +120755,60397,Pierce Brosnan,1334400570 +120755,62376,adventure,1334398355 +120755,62376,atmosphere,1334398379 +120755,62376,based on a book,1334398374 +120755,62376,Bill Murray,1334398364 +120755,62376,post-apocalyptic,1334398382 +120755,62376,social criticism,1334398499 +120755,62376,steampunk,1334398351 +120755,63992,chick flick,1324941416 +120755,63992,love story,1324941435 +120755,63992,romance,1324941406 +120755,63992,Teen movie,1324941413 +120755,63992,unintentional comedy,1324941440 +120755,72171,blaxploitation,1332954824 +120755,72171,Doesn't take itself seriously,1332954841 +120755,72171,martial arts,1332954854 +120755,72171,theme music,1332954886 +120755,72171,too much,1332954849 +120755,79132,great soundtrack,1324941114 +120755,79132,music,1324941131 +120755,79132,thought-provoking,1324941148 +120755,82167,Anne Hathaway,1334400389 +120755,88140,Nazis,1349646777 +120755,88140,steampunk,1349646747 +120755,88140,Tommy Lee Jones,1349646716 +120755,91500,dystopia,1349707197 +120755,91500,Happy ending,1349707659 +120755,91500,love,1349707681 +120755,91500,segregation,1349707573 +120755,93805,Julia Dietze,1334435160 +120755,93805,parody,1334435168 +120755,93805,steampunk,1334435164 +120755,120799,Alan Taylor,1449399515 +120755,120799,Arnold Schwarzenegger,1449399523 +120761,48774,apocalypse,1350786183 +120761,48774,imdb top 250,1350786191 +120761,48774,visually appealing,1350786187 +120770,1217,To See,1148952469 +120780,296,drugs,1421008071 +120780,296,gangster,1421008071 +120780,296,non-linear,1421008071 +120780,318,prison,1424632727 +120780,318,redemption,1424632727 +120780,318,twist ending,1424632727 +120780,356,endearing,1422216803 +120780,356,flashbacks,1422216803 +120780,356,history,1422216803 +120780,2571,action,1425676358 +120780,2571,dystopia,1425676358 +120780,2571,superpowers,1425676358 +120780,95654,chess,1425677277 +120824,290,maori,1164191150 +120824,290,violent,1164191167 +120828,2413,blackmail,1451793425 +120828,2413,cult classic,1451793422 +120828,2413,hilarious,1451793413 +120828,2413,Madeline Kahn,1451793430 +120828,2413,murder,1451793416 +120828,2413,quirky,1451793411 +120828,2413,whodunit,1451793418 +120830,260,fantasy,1444996727 +120830,260,serial,1444996723 +120830,260,space opera,1444996715 +120835,260,drama,1438571785 +120835,260,scifi cult,1438571791 +120835,260,space action,1438571774 +120849,260,Science Fiction,1435089770 +120849,260,Star Wars,1435089753 +120849,103840,Lithuanian,1445597001 +120849,144968,lithuanian,1445596901 +120849,144968,photography,1445596909 +120863,1288,farce,1311012025 +120863,1288,heavy metal,1311012000 +120863,1288,mockumentary,1311012013 +120863,1288,music,1311012021 +120863,1288,music business,1311012023 +120863,1288,quirky,1311012011 +120863,1288,rock and roll,1311012003 +120863,1288,satire,1311012006 +120863,1288,witty,1311012009 +120863,48385,mockumentary,1311011976 +120863,63131,obvious plot,1311011937 +120863,63131,Paul Rudd,1311011930 +120863,67087,Jason Segel,1311011854 +120863,67087,Paul Rudd,1311011856 +120863,67087,Rush,1311011861 +120863,69122,absurd,1311011905 +120863,69122,drugs,1311011890 +120863,69122,Nudity (Topless),1311011894 +120863,86833,clever script,1311011821 +120863,86833,female driven comedy,1311011818 +120863,86833,unlikeable characters,1311011814 +120863,87232,comic book,1311011195 +120863,87232,superhero,1311011197 +120881,5218,animated,1438578256 +120881,5218,kids,1438578256 +120881,5218,talking animals,1438578256 +120881,108879,Disney,1438637637 +120881,108879,musical,1438637646 +120896,108488,alcoholism,1425315692 +120896,108488,on the run,1425315645 +120896,108488,strangers,1425315645 +120896,108488,survival,1425315645 +120896,112733,cult,1448850650 +120896,113037,career,1430571143 +120896,113037,film school,1430571143 +120896,113037,porn industry,1430571143 +120896,121033,doping,1432205883 +120896,121033,olympics,1432205890 +120896,128324,alien technology,1431288299 +120896,128324,cult,1431288299 +120896,128324,time travel,1431288299 +120897,1270,future,1441584260 +120897,2273,Chris Tucker,1441584226 +120897,2273,Jackie Chan,1441584215 +120904,1206,Beethoven,1432121634 +120904,1206,cult film,1432121671 +120904,1206,psychology,1432121655 +120904,1206,stanley kubrick,1432121643 +120904,2076,color,1432121699 +120904,2076,David Lynch,1432121738 +120904,2076,disturbing,1432121714 +120904,2076,weird,1432121725 +120904,56251,futurama,1432121486 +120904,56251,intelligent humor,1432121533 +120908,5902,Bibliothek,1189483138 +120915,72226,the fox,1317409379 +120936,356,good music,1437191138 +120936,356,great actor,1437191138 +120936,356,story,1437191138 +120956,5878,Watch This,1137368365 +120960,93790,drama,1433118844 +120960,93790,intrigue,1433118844 +120960,93790,sad but good,1433118844 +120983,8939,Robin Williams,1170492957 +121026,42718,dystopia,1230849129 +121026,42718,free running,1186340950 +121026,42718,martial arts,1186340983 +121026,42718,parkour,1186340950 +121033,260,action,1434867890 +121033,260,adventure,1434867894 +121033,260,Daring Rescue,1434761231 +121033,260,epic,1434761109 +121033,260,future,1434867902 +121033,260,futuristic,1435515409 +121033,260,good versus evil,1435515493 +121033,260,good vs evil,1434867919 +121033,260,Master Villain,1434867994 +121033,260,Oscar Winner,1434761131 +121033,260,Outer Space,1434867996 +121033,260,Reluctant Partners,1434761217 +121033,260,saga,1434867892 +121033,260,sci-fi,1434867887 +121033,260,space,1435515344 +121033,260,space adventure,1434867998 +121033,260,space epic,1434867889 +121033,260,space opera,1435515353 +121033,260,Space Travel,1434761170 +121033,260,Special Effects,1434761273 +121033,541,androids,1434865194 +121033,541,artificial intelligence,1434865197 +121033,541,California,1434868233 +121033,541,Cult Classic,1434867966 +121033,541,existentialism,1434865619 +121033,541,Fugitives,1434867777 +121033,541,futuristic,1434865203 +121033,541,Los Angeles,1434867973 +121033,541,man versus machine,1434865369 +121033,541,melancholy,1434865478 +121033,541,mortality,1434865448 +121033,541,neo-noir,1434865780 +121033,541,sci-fi,1434865199 +121033,541,Society,1434867779 +121033,541,thriller,1434867976 +121033,541,USA,1434868218 +121033,920,American Civil War,1434866203 +121033,920,based on a book,1434866211 +121033,920,Civil War,1434866202 +121033,920,Costuming,1434867794 +121033,920,drama,1434866443 +121033,920,Georgia,1434867809 +121033,920,historical,1434866220 +121033,920,historical drama,1434866445 +121033,920,Love Triangle,1434867792 +121033,920,Romance,1434866216 +121033,920,social commentary,1434866209 +121033,920,USA,1434867829 +121033,920,war,1434866197 +121033,1034,1990's,1435418469 +121033,1034,20th Century,1435418463 +121033,1034,California,1435418482 +121033,1034,Clever,1435418320 +121033,1034,Crime,1435418445 +121033,1034,Crimes,1435418388 +121033,1034,Cynical,1435418614 +121033,1034,Disturbing,1435418313 +121033,1034,Drug abuse,1435418428 +121033,1034,Independent,1435418603 +121033,1034,Irreverent Humor,1435418492 +121033,1034,Life is a Bitch,1435418373 +121033,1034,Murder,1435418362 +121033,1034,On the Road,1435418500 +121033,1034,On the Run,1435418615 +121033,1034,Realistic,1435418511 +121033,1034,Rough,1435418306 +121033,1034,Serial Killer,1435418661 +121033,1034,Serious,1435418502 +121033,1034,Social Decay,1435418436 +121033,1034,Society,1435418397 +121033,1034,Suspenseful,1435418296 +121033,1034,Thriller,1435418447 +121033,1034,Unlikely criminals,1435418608 +121033,1034,Urban,1435418478 +121033,1034,USA,1435418479 +121033,1034,Youth,1435418414 +121033,1036,1980's,1435051966 +121033,1036,20th Century,1435051962 +121033,1036,action,1435051664 +121033,1036,based on a book,1435051995 +121033,1036,California,1435051983 +121033,1036,christmas,1435051671 +121033,1036,Clever,1435051874 +121033,1036,crime,1435051819 +121033,1036,Exciting,1435051877 +121033,1036,explosions,1435051678 +121033,1036,Heist,1435052031 +121033,1036,heroism,1435051801 +121033,1036,Hostages,1435051932 +121033,1036,incompetent cops,1435051763 +121033,1036,intense,1435051757 +121033,1036,lone hero,1435051668 +121033,1036,Los Angeles,1435051976 +121033,1036,One Man Army,1435052036 +121033,1036,police,1435051760 +121033,1036,Realistic,1435052012 +121033,1036,Rescue,1435051940 +121033,1036,Rough,1435051872 +121033,1036,Save the Day,1435052027 +121033,1036,Serious,1435052010 +121033,1036,skyscraper,1435051766 +121033,1036,Suspenseful,1435051896 +121033,1036,tense,1435051673 +121033,1036,terrorism,1435051675 +121033,1036,thriller,1435051680 +121033,1036,USA,1435051832 +121033,1036,violence,1435051770 +121033,1059,1990's,1434889281 +121033,1059,20th Century,1434889306 +121033,1059,based on a play,1434889104 +121033,1059,California,1434889272 +121033,1059,Drama,1434889384 +121033,1059,Drugs and Alcohol,1434889325 +121033,1059,Fall in Love,1434889195 +121033,1059,Forbidden Love,1434889373 +121033,1059,Love,1434889212 +121033,1059,Realistic,1434889316 +121033,1059,Rivalry,1434889185 +121033,1059,romance,1434889381 +121033,1059,shakespeare,1434889363 +121033,1059,Social Differences,1434889235 +121033,1059,Stylized,1434889170 +121033,1059,Suburbs,1434889276 +121033,1059,Tragic Love,1434889378 +121033,1059,True Love,1434889375 +121033,1059,USA,1434889269 +121033,1059,Violent Content,1434889337 +121033,1059,Young Lovers,1434889372 +121033,1059,Youth,1434889188 +121033,1282,animation,1434866643 +121033,1282,classical,1434867162 +121033,1282,classical music,1434866636 +121033,1282,Disney,1434866638 +121033,1282,Fantasy,1434867204 +121033,1282,surreal,1434866641 +121033,1320,Action,1434948164 +121033,1320,aliens,1434948042 +121033,1320,Bleak,1434948114 +121033,1320,Deadly Creatures,1434948148 +121033,1320,Evil Alien,1434948141 +121033,1320,franchise,1434948044 +121033,1320,Future,1434948179 +121033,1320,Horror,1434948166 +121033,1320,Outer Space,1434948188 +121033,1320,prison,1434948240 +121033,1320,rape,1434948250 +121033,1320,Rough,1434948116 +121033,1320,sci-fi,1434948036 +121033,1320,Strong Female Presence,1434948216 +121033,1320,Survival,1434948226 +121033,1320,Thriller,1434948169 +121033,1617,1950's,1435138393 +121033,1617,20th Century,1435138387 +121033,1617,All Star Cast,1435138427 +121033,1617,Ambition,1435138294 +121033,1617,anti-hero,1435138078 +121033,1617,Based on a Book,1435138448 +121033,1617,California,1435138408 +121033,1617,Clever,1435138225 +121033,1617,conspiracy,1435138057 +121033,1617,corrupt cops,1435138120 +121033,1617,corruption,1435138084 +121033,1617,Crime,1435138075 +121033,1617,Cynical,1435138239 +121033,1617,detective,1435138362 +121033,1617,detective thriller,1435138091 +121033,1617,Dishonesty,1435138313 +121033,1617,Drama,1435138093 +121033,1617,Fighting Crime,1435138340 +121033,1617,Fighting the System,1435138347 +121033,1617,Gang,1435138322 +121033,1617,Gloomy,1435138227 +121033,1617,Hollywood,1435138413 +121033,1617,LA,1435138410 +121033,1617,Los Angeles,1435138101 +121033,1617,Murder,1435138269 +121033,1617,mystery,1435138130 +121033,1617,neo-noir,1435138429 +121033,1617,noir,1435138134 +121033,1617,Police,1435138095 +121033,1617,police corruption,1435138147 +121033,1617,Police Detective,1435138278 +121033,1617,Police Investigation,1435138286 +121033,1617,Prostitution,1435138331 +121033,1617,Realistic,1435138451 +121033,1617,Rivalry,1435138310 +121033,1617,Rough,1435138229 +121033,1617,Serious,1435138453 +121033,1617,Sexual Content,1435138473 +121033,1617,suspense,1435138070 +121033,1617,Tense,1435138241 +121033,1617,Thriller,1435138369 +121033,1617,Uncover Truth,1435138262 +121033,1617,USA,1435138407 +121033,1690,Action,1434966925 +121033,1690,aliens,1434966799 +121033,1690,Androids and Robots,1434966959 +121033,1690,Bleak,1434966854 +121033,1690,Danger,1434966894 +121033,1690,Deadly Creature,1434966876 +121033,1690,Evil Alien,1434966869 +121033,1690,franchise,1434966815 +121033,1690,Future,1434966966 +121033,1690,horror,1434966928 +121033,1690,Outer Space,1434966964 +121033,1690,Rough,1434966857 +121033,1690,sci-fi,1434966801 +121033,1690,sequel,1434966808 +121033,1690,space,1434966804 +121033,1690,Space Travel,1434966893 +121033,1690,Strong Female Presence,1434966961 +121033,1690,Survival,1434966884 +121033,1935,based on a book,1434867496 +121033,1935,Black and White,1434867443 +121033,1935,coal miners,1434867489 +121033,1935,Coming of Age,1434867436 +121033,1935,Drama,1434867447 +121033,1935,Emotional,1434867450 +121033,1935,Family Life,1434867441 +121033,1935,Realistic,1434867444 +121033,1935,Sentimental,1434867433 +121033,1935,Touching,1434867449 +121033,1935,Village Life,1434867435 +121033,1935,Voice Over,1434867445 +121033,1935,Wales,1434868132 +121033,1935,Working Class,1434867438 +121033,1935,Youth,1434867439 +121033,2018,Adventure,1434868485 +121033,2018,animals,1434868303 +121033,2018,animation,1434868390 +121033,2018,based on book,1434868372 +121033,2018,classic,1434868381 +121033,2018,coming of age,1434868375 +121033,2018,Danger,1434868472 +121033,2018,Dealing With Death,1434868436 +121033,2018,Disney,1434868301 +121033,2018,Drama,1434868543 +121033,2018,Emotional,1434868422 +121033,2018,Family,1434868537 +121033,2018,Friends,1434868546 +121033,2018,In the Woods,1434868515 +121033,2018,Melodrama,1434868533 +121033,2018,Musical,1434868499 +121033,2018,talking animals,1434868384 +121033,2018,Touching,1434868424 +121033,2018,Youth,1434868544 +121033,2571,man versus machine,1434766542 +121033,2571,Mind Bending,1434766508 +121033,2571,noir,1434766586 +121033,2571,saga,1434766594 +121033,2571,save the world,1434766320 +121033,2571,society,1434766530 +121033,2622,Shakespeare,1434889419 +121033,2857,1960's,1434957615 +121033,2857,20th Century,1434957624 +121033,2857,Adventure,1434957580 +121033,2857,animation,1434957430 +121033,2857,Anti War,1434957536 +121033,2857,Dry Humor,1434957662 +121033,2857,England,1434957632 +121033,2857,Escapades,1434957565 +121033,2857,Europe,1434957641 +121033,2857,Fantasy,1434957595 +121033,2857,Fighting the System,1434957557 +121033,2857,Imaginary Kingdom,1434957521 +121033,2857,Music,1434957545 +121033,2857,Offbeat,1434957499 +121033,2857,psychedelic,1434957410 +121033,2857,rock and roll,1434957415 +121033,2857,Stylized,1434957494 +121033,2857,Submarine,1434957674 +121033,2857,surreal,1434957669 +121033,2857,The Beatles,1434957413 +121033,2857,Underwater,1434957659 +121033,2857,Witty,1434957501 +121033,3330,1920's,1434868797 +121033,3330,Americana,1434868694 +121033,3330,Bittersweet,1434868614 +121033,3330,coming of age,1434868741 +121033,3330,Drama,1434868789 +121033,3330,Forbidden Love,1434868787 +121033,3330,Gloomy,1434868617 +121033,3330,Kansas,1434868759 +121033,3330,Love,1434868633 +121033,3330,Melodrama,1434868770 +121033,3330,mental illness,1434868611 +121033,3330,Realistic,1434868773 +121033,3330,Romance,1434868636 +121033,3330,Small Town,1434868754 +121033,3330,social commentary,1434868729 +121033,3330,Society,1434868657 +121033,3330,Teenage Love,1434868781 +121033,3330,Tragic Love,1434868779 +121033,3330,Unfulfilled Love,1434868690 +121033,3330,USA,1434868756 +121033,3330,Young Lovers,1434868783 +121033,3330,Youth,1434868660 +121033,3363,1960's,1434957995 +121033,3363,20th Century,1434958045 +121033,3363,Americana,1434958148 +121033,3363,Bittersweet,1434957790 +121033,3363,Buddies,1434958088 +121033,3363,California,1434958052 +121033,3363,cars,1434958167 +121033,3363,Comedy,1434957938 +121033,3363,coming of age,1434957860 +121033,3363,Drama,1434957934 +121033,3363,Ensemble Cast,1434958065 +121033,3363,Feel Good,1434957797 +121033,3363,Friends,1434957898 +121033,3363,friendship,1434957758 +121033,3363,Humorous,1434957805 +121033,3363,Innocence Lost,1434987336 +121033,3363,love,1434957894 +121033,3363,Realistic,1434958072 +121033,3363,Romance,1434957904 +121033,3363,Small Town,1434958049 +121033,3363,Teenage Love,1434958127 +121033,3363,USA,1434958043 +121033,3363,Way of Life,1434957882 +121033,3363,Youth,1434957864 +121033,3668,based on a play,1434888996 +121033,3668,Couples,1434888914 +121033,3668,Drama,1434888954 +121033,3668,Europe,1434888974 +121033,3668,Fall in Love,1434889043 +121033,3668,Italy,1434888970 +121033,3668,Love,1434889038 +121033,3668,Love Affair,1434889039 +121033,3668,Melodrama,1434888986 +121033,3668,Realistic,1434889026 +121033,3668,Romance,1434888901 +121033,3668,Shakespeare,1434888823 +121033,3668,Social Differences,1434888940 +121033,3668,Tragic Love,1434889034 +121033,3668,True Love,1434889041 +121033,3668,Young Lovers,1434889046 +121033,3668,Youth,1434889036 +121033,3897,1970's,1434890546 +121033,3897,20th Century,1434890558 +121033,3897,Americana,1434890398 +121033,3897,Based on True Story,1434890572 +121033,3897,bittersweet,1434890358 +121033,3897,Celebrity Culture,1434890475 +121033,3897,coming of age,1434890292 +121033,3897,drama,1434890482 +121033,3897,Drugs and Alcohol,1434890600 +121033,3897,Feel Good,1434890355 +121033,3897,Fish Out of Water,1434890447 +121033,3897,Innocence Lost,1434890422 +121033,3897,journalism,1434890294 +121033,3897,music,1434890489 +121033,3897,On the Road,1434890560 +121033,3897,Realistic,1434890585 +121033,3897,rock and roll,1434890286 +121033,3897,Semi Serious,1434890582 +121033,3897,Sentimental,1434890381 +121033,3897,Unfulfilled Love,1434890456 +121033,3897,USA,1434890543 +121033,3897,Way of Life,1434890434 +121033,3897,Youth,1434890431 +121033,4835,1970's,1435516145 +121033,4835,20th Century,1435516136 +121033,4835,Ambition,1435515997 +121033,4835,Artists and Showbiz,1435516027 +121033,4835,Based on a True Story,1435516168 +121033,4835,biography,1435516117 +121033,4835,Captivating,1435515914 +121033,4835,Drama,1435516105 +121033,4835,Emotional,1435515871 +121033,4835,Family Problems,1435516020 +121033,4835,Hopes,1435516006 +121033,4835,Human Nature,1435516041 +121033,4835,Human Spirit,1435516045 +121033,4835,Kentucky,1435516156 +121033,4835,Life is a Bitch,1435516093 +121033,4835,Love,1435516007 +121033,4835,Music,1435516114 +121033,4835,Musician's Life,1435515979 +121033,4835,Realistic,1435516175 +121033,4835,Rich and Poor,1435516035 +121033,4835,Rising To Stardom,1435515990 +121033,4835,Romance,1435516009 +121033,4835,Sentimental,1435515905 +121033,4835,Serious,1435516187 +121033,4835,Sincere,1435515927 +121033,4835,Touching,1435515924 +121033,4835,USA,1435516154 +121033,4835,Way of Life,1435516077 +121033,7057,Based on a Play,1434889719 +121033,7057,Battle of the Sexes,1434889606 +121033,7057,Black and White,1434889696 +121033,7057,Comedy,1434889636 +121033,7057,Couples,1434889610 +121033,7057,Curses Spells and Rituals,1434889564 +121033,7057,Ensemble Cast,1434889672 +121033,7057,Fall in Love,1434889587 +121033,7057,Fantasy,1434889638 +121033,7057,Farce,1434889649 +121033,7057,Greece,1434889648 +121033,7057,Humorous,1434889537 +121033,7057,Love,1434889588 +121033,7057,Mistaken Identity,1434889577 +121033,7057,Multiple Stories,1434889676 +121033,7057,Romance,1434889592 +121033,7057,Semi Serious,1434889686 +121033,7057,Shakespeare,1434889471 +121033,7057,Stylized,1434889549 +121033,7057,Talky,1434889739 +121033,7057,True Love,1434889624 +121033,7057,Unfulfilled Love,1434889633 +121033,7057,Weddings,1434889572 +121033,8810,21st Century,1435047554 +121033,8810,action,1435047361 +121033,8810,aliens,1435047350 +121033,8810,Antarctica,1435047347 +121033,8810,Anti Hero,1435047513 +121033,8810,Bleak,1435047403 +121033,8810,Danger,1435047472 +121033,8810,Deadly Creature,1435047432 +121033,8810,Escapades,1435047481 +121033,8810,Evil Alien,1435047442 +121033,8810,franchise,1435047351 +121033,8810,Gory,1435047568 +121033,8810,Heroic Mission,1435047464 +121033,8810,horror,1435047364 +121033,8810,Rough,1435047405 +121033,8810,Save the World,1435047457 +121033,8810,sci-fi,1435047628 +121033,8810,Space and Aliens,1435047470 +121033,8810,Special Effects,1435047585 +121033,8810,Unlikely Allies,1435047621 +121033,47404,21st Century,1434986225 +121033,47404,Adventure,1434986240 +121033,47404,anime,1434986048 +121033,47404,Asia,1434986190 +121033,47404,Based on Comics,1434986209 +121033,47404,Danger,1434986151 +121033,47404,Dealing With Death,1434986110 +121033,47404,Fantasy,1434986240 +121033,47404,Introspection,1434986112 +121033,47404,Japan,1434986211 +121033,47404,Mind and Soul,1434986154 +121033,47404,Offbeat,1434986092 +121033,47404,quirky,1434986064 +121033,47404,Righting the Wronged,1434986131 +121033,47404,Self Discovery,1434986114 +121033,47404,Siblings Relations,1434986164 +121033,47404,surreal,1434986045 +121033,56801,21st Century,1435066255 +121033,56801,Action,1435066241 +121033,56801,aliens,1435066117 +121033,56801,Bleak,1435066163 +121033,56801,Colorado,1435066267 +121033,56801,Danger,1435066206 +121033,56801,Deadly Creature,1435066185 +121033,56801,Evil Alien,1435066191 +121033,56801,franchise,1435066098 +121033,56801,Future,1435066257 +121033,56801,Gory,1435066279 +121033,56801,Horror,1435066245 +121033,56801,Rough,1435066157 +121033,56801,Save the World,1435066197 +121033,56801,Sci-fi,1435066233 +121033,56801,Small Town,1435066269 +121033,56801,Space and Aliens,1435066210 +121033,56801,Special Effects,1435066286 +121033,56801,Survival,1435066224 +121033,56801,Thriller,1435066243 +121033,56801,USA,1435066266 +121033,61160,action,1434967156 +121033,61160,adventure,1434967167 +121033,61160,animation,1434967147 +121033,61160,Battles,1434967185 +121033,61160,Computer Animated,1434967288 +121033,61160,Conspiracies,1434967224 +121033,61160,Escapades,1434967204 +121033,61160,Future,1434967245 +121033,61160,Futuristic,1434967273 +121033,61160,Good versus Evil,1434967195 +121033,61160,Heroes,1434967223 +121033,61160,Master Warrior,1434967210 +121033,61160,Outer Space,1434967251 +121033,61160,Rescue,1434967213 +121033,61160,sci-fi,1434967152 +121033,61160,space,1434967158 +121033,61160,Space Wars,1434967184 +121033,104374,family bonds,1442674032 +121033,104374,family relationships,1442674028 +121033,104374,love,1442674029 +121033,104374,time travel,1442674017 +121033,104374,touching,1442674019 +121033,115713,21st Century,1435507223 +121033,115713,AI,1435506976 +121033,115713,Androids and Robots,1435507163 +121033,115713,artificial intelligence,1435507509 +121033,115713,Captivating,1435507051 +121033,115713,Contemplative,1435507077 +121033,115713,cybernetics,1435506983 +121033,115713,Drama,1435507212 +121033,115713,Future,1435507324 +121033,115713,futuristic,1435506973 +121033,115713,Isolation,1435507137 +121033,115713,Man Versus Machine,1435507326 +121033,115713,Manipulations,1435507170 +121033,115713,Mind Bending,1435507088 +121033,115713,Nudity,1435507278 +121033,115713,Psychological,1435507177 +121033,115713,sci-fi,1435506958 +121033,115713,Serious,1435507256 +121033,115713,Surreal,1435507254 +121033,115713,technology,1435506971 +121033,115713,Tense,1435507069 +121033,115713,thought provoking,1435506960 +121033,115713,Twists and Turns,1435507242 +121033,117529,action,1434797780 +121033,117529,adventure,1434797776 +121033,117529,Chase,1434797700 +121033,117529,danger,1434797702 +121033,117529,exciting,1434797723 +121033,117529,Experiment Gone Awry,1434797747 +121033,117529,sci-fi,1434797787 +121033,117529,Special Effects,1434797831 +121033,117529,Suspenseful,1434797719 +121033,117529,theme park,1434797819 +121033,119571,based on a true story,1434799651 +121033,119571,coming of age,1434868142 +121033,119571,drama,1434799639 +121033,119571,friends,1434799649 +121033,119571,hardcase students,1434799647 +121033,119571,high school,1434799466 +121033,119571,independent,1434799641 +121033,119571,realistic,1434799643 +121033,119571,youth,1434799645 +121033,122882,action,1434798898 +121033,122882,adventure,1434799108 +121033,122882,anti-hero,1434761874 +121033,122882,apocalypse,1434761874 +121033,122882,bleak,1434761874 +121033,122882,car chase,1434799030 +121033,122882,chase,1434798910 +121033,122882,chases and races,1434761874 +121033,122882,desert,1434799038 +121033,122882,dystopia,1434761874 +121033,122882,dystopian,1434798907 +121033,122882,feminism,1434798891 +121033,122882,future dystopia,1434761874 +121033,122882,futuristic,1434761874 +121033,122882,getting home,1434761874 +121033,122882,good versus evil,1434761874 +121033,122882,on the road,1434761874 +121033,122882,on the run,1434761874 +121033,122882,post apocalyptic,1434798931 +121033,122882,rough,1434761874 +121033,122882,sci-fi,1434761874 +121033,122882,society,1434761874 +121033,122882,special effects,1434761874 +121033,122882,strong violent content,1434761874 +121033,122882,survival,1434761874 +121033,122882,suspenseful,1434761874 +121033,122882,visually appealing,1434799074 +121033,122882,wasteland,1434798963 +121033,127202,Based on a book,1450234731 +121033,127202,Death,1450234676 +121033,127202,Death and dying,1450234711 +121033,127202,Friendship,1450234682 +121033,127202,High school,1450234690 +121033,127202,Teens,1450234669 +121033,127202,terminal illness,1450234655 +121033,135510,1940's,1434958575 +121033,135510,Couples,1434958555 +121033,135510,Drama,1434958568 +121033,135510,Fall in Love,1434958623 +121033,135510,Forbidden Love,1434958626 +121033,135510,Georgia,1434958603 +121033,135510,High School,1434958590 +121033,135510,Love,1434958526 +121033,135510,Love Affair,1434958553 +121033,135510,Melodrama,1434958608 +121033,135510,Realistic,1434958612 +121033,135510,Romance,1434958628 +121033,135510,School,1434958592 +121033,135510,Sentimental,1434958457 +121033,135510,Social Differences,1434958496 +121033,135510,Teenage Life,1434958520 +121033,135510,Teenage Love,1434958621 +121033,135510,Touching,1434958452 +121033,135510,Tragic Love,1434958560 +121033,135510,Unfulfilled Love,1434958509 +121033,135510,USA,1434958595 +121033,135510,Vengeance,1434958546 +121033,135510,Young Lovers,1434958624 +121033,135510,Youth,1434958532 +121033,135649,21st Century,1435069631 +121033,135649,Couples,1435069577 +121033,135649,Crime,1435069616 +121033,135649,Crimes,1435069565 +121033,135649,Destructive Relationship,1435069596 +121033,135649,Drama,1435069613 +121033,135649,Europe,1435069637 +121033,135649,France,1435069633 +121033,135649,French,1435069555 +121033,135649,Gloomy,1435069549 +121033,135649,Love,1435069578 +121033,135649,Murder,1435069604 +121033,135649,Nudity,1435069649 +121033,135649,Offbeat,1435069551 +121033,135649,Realistic,1435069656 +121033,135649,Romance,1435069581 +121033,135649,Serial Killer,1435069680 +121033,135649,Serious,1435069654 +121033,135649,Sexual,1435069673 +121033,135649,Young Lovers,1435069684 +121033,136505,21st Century,1435715576 +121033,136505,Bleak,1435715507 +121033,136505,Boat,1435715607 +121033,136505,Dishonesty,1435715563 +121033,136505,Drama,1435715569 +121033,136505,Europe,1435715586 +121033,136505,Human Nature,1435715549 +121033,136505,Immigrants,1435715524 +121033,136505,Life is a Bitch,1435715544 +121033,136505,Mind and Soul,1435715538 +121033,136505,Moral Dilemma,1435715531 +121033,136505,North Sea,1435715726 +121033,136505,Ocean,1435715603 +121033,136505,Parents and Children,1435715557 +121033,136505,Realistic,1435715673 +121033,136505,Sea,1435715605 +121033,136505,Serious,1435715680 +121033,136505,Ship,1435715609 +121033,136505,Suspenseful,1435715512 +121033,136507,Drama,1435715815 +121124,27773,korean,1443035454 +121124,27773,twist ending,1443035444 +121124,27773,violent,1443035463 +121124,79132,alternate reality,1443035506 +121124,79132,surreal,1443035512 +121132,7502,ensemble cast,1424310585 +121132,7502,historical,1424310585 +121132,7502,miniseries,1424313732 +121132,7502,world war ii,1424310585 +121132,8668,angst,1427394035 +121132,8668,generation x,1427394035 +121132,8668,juliette lewis,1427394035 +121132,107980,ptsd,1434845583 +121132,107980,torture,1434845583 +121132,107980,wwii,1434845583 +121137,356,sappy,1432238314 +121137,356,tearjerker,1432238314 +121137,356,touching,1432238314 +121137,593,lotion,1435603172 +121137,593,psychopath,1435603172 +121137,593,tense,1435603172 +121160,296,drugs,1431537001 +121160,296,nonlinear timeline,1431537001 +121160,296,nudity,1431537001 +121166,14,Anthony Hopkins,1188726619 +121166,14,Drama,1188726619 +121166,277,christmas,1188726251 +121166,372,generation X,1188726516 +121166,372,Romance,1188726516 +121166,914,Musical,1188726261 +121166,1120,Drama,1188726379 +121166,1120,Woody Harrelson,1188726379 +121166,1179,Angelica Huston,1188726568 +121166,1179,Drama,1188726568 +121166,1179,John Cusack,1188726568 +121166,1231,astronauts,1188726518 +121166,1231,Drama,1188726518 +121166,1339,coppola,1188726184 +121166,1953,car chase,1188726433 +121166,1953,Cops,1188726433 +121166,1953,Crime,1188726433 +121166,1953,Drama,1188726433 +121166,1953,Gene Hackman,1188726433 +121166,1994,Horror,1188726458 +121166,1994,Spielberg,1188726458 +121166,1994,Thriller,1188726458 +121166,2080,Animation,1188726335 +121166,2080,Children,1188726335 +121166,2080,Disney,1188726335 +121166,3785,Comedy,1188726641 +121166,3785,spoof,1188726641 +121166,6934,Sci-Fi,1188726619 +121166,6934,Sequel,1188726619 +121166,32587,Action,1188726663 +121166,32587,Crime,1188726663 +121166,32587,Film-Noir,1188726663 +121166,32587,Robert Rodriguez,1188726663 +121171,457,Great Movie!,1191999558 +121185,590,war,1139031521 +121191,6242,better than the american version,1244008198 +121191,7981,better than the american version,1244008222 +121196,2683,sixties,1226633644 +121196,5418,based on a book,1226633555 +121196,5952,based on a book,1226572081 +121196,5952,fantasy,1226572091 +121196,5952,magic,1226572101 +121196,6377,animation,1226572164 +121196,6377,father-son relationship,1226572188 +121196,6377,Pixar,1226572143 +121196,7438,martial arts,1226573195 +121196,8961,animation,1226572243 +121196,8961,Pixar,1226572223 +121196,8961,superhero,1226572253 +121196,58559,Comic Book adaption,1226572024 +121253,260,sci-fi,1444784416 +121253,260,space action,1444784430 +121255,3948,silly,1444424858 +121255,5995,music,1444424813 +121255,5995,sad,1444424804 +121309,135,submarine,1425861918 +121309,161,submarine,1425861765 +121309,161,underwater,1425861777 +121309,216,Adam Sandler,1426664049 +121309,216,stupid,1426664051 +121309,344,Dumb,1426810287 +121309,344,Jim Carrey,1426810276 +121309,344,silly fun,1426810283 +121309,524,football,1427795010 +121309,524,sports,1427795012 +121309,569,baseball,1427795651 +121309,569,sports,1427795656 +121309,741,anime,1426662959 +121309,778,black comedy,1426698818 +121309,778,British,1426698805 +121309,778,Scottish,1426698831 +121309,778,surreal,1426698824 +121309,1005,sports,1430398386 +121309,1020,Jamaica,1427795800 +121309,1020,Olympics,1427795806 +121309,1020,sports,1427795816 +121309,1202,black comedy,1426663985 +121309,1202,British,1426663987 +121309,1231,astronauts,1427039550 +121309,1231,NASA,1427039554 +121309,1231,space,1427039553 +121309,1231,space program,1427039558 +121309,1231,true story,1427039557 +121309,1233,claustrophobic,1425861639 +121309,1233,long,1425861647 +121309,1233,ocean,1425861576 +121309,1233,realistic,1425861634 +121309,1233,submarine,1425861565 +121309,1233,too long,1425861621 +121309,1233,U-boat,1425861570 +121309,1233,underwater,1425861578 +121309,1233,World War II,1425861657 +121309,1233,WWII,1425861660 +121309,1292,political satire,1430331238 +121309,1292,satire,1430331241 +121309,1610,claustrophobic,1425861752 +121309,1610,cold war,1425861756 +121309,1610,MIND GAMES,1425861738 +121309,1610,ocean,1425861733 +121309,1610,Race against time,1425861751 +121309,1610,sean connery,1425861716 +121309,1610,submarine,1425861714 +121309,1610,Tom Clancy,1425861743 +121309,1610,underwater,1425861731 +121309,1732,coen brothers,1427034181 +121309,1779,first contact,1425861938 +121309,1779,sci-fi,1425861931 +121309,1779,sea bottom,1425861936 +121309,1779,time travel,1425861940 +121309,1779,underwater,1425861933 +121309,1876,apocalypse,1425862108 +121309,1876,astronomy,1425862111 +121309,1876,end of the world,1425862124 +121309,1876,natural disaster,1425862109 +121309,1909,David Duchovny,1427033129 +121309,1917,apocalypse,1425862076 +121309,1917,Ben Affleck,1426664608 +121309,1917,Bruce Willis,1425862072 +121309,1917,disaster,1426664614 +121309,1917,end of the world,1425862081 +121309,1917,Owen Wilson,1426664615 +121309,1917,sci-fi,1425862084 +121309,1917,space,1425862074 +121309,1917,space program,1425862079 +121309,1917,spaceship,1425862099 +121309,2042,sports,1430398375 +121309,2082,sports,1430373167 +121309,2232,mathematics,1426810497 +121309,2447,football,1427795765 +121309,2447,sport:American football,1427795783 +121309,2447,sports,1427795784 +121309,2710,found footage,1430549672 +121309,2710,Handycam,1427034205 +121309,2710,unsteady-cam,1427034212 +121309,2840,jesus,1427031541 +121309,2840,religion,1427031550 +121309,3052,Catholicism,1426666956 +121309,3052,Christianity,1426666957 +121309,3052,jesus,1426666950 +121309,3052,religion,1426666945 +121309,3052,thought-provoking,1426666962 +121309,3361,baseball,1427795752 +121309,3409,premonition,1427760726 +121309,3555,submarine,1425861783 +121309,3555,World War II,1425861784 +121309,3578,Ridley Scott,1426810609 +121309,3578,Russell Crowe,1426810607 +121309,3753,history,1426810719 +121309,3753,Mel Gibson,1426810717 +121309,3861,football,1427795261 +121309,3861,sports,1427795260 +121309,3916,american football,1427795039 +121309,3916,football,1427795032 +121309,3916,racism,1427795047 +121309,3916,sports,1427795035 +121309,4221,football,1427795360 +121309,4221,sports,1427795361 +121309,4225,NASA,1427039575 +121309,4225,space program,1427039583 +121309,4367,Angelina Jolie,1426665846 +121309,4623,baseball,1427795714 +121309,4623,sport:baseball,1427795731 +121309,4623,sports,1427795732 +121309,4771,baseball,1427795538 +121309,4771,sports,1427795543 +121309,4974,cheerleading,1426663422 +121309,4974,stupid,1426663418 +121309,5103,baseball,1427795708 +121309,5103,Baseball Movie,1427795707 +121309,5103,sports,1427795709 +121309,5171,inventor,1425862023 +121309,5171,time travel,1425862021 +121309,5479,history,1425861820 +121309,5479,submarine,1425861817 +121309,5971,anime,1426663366 +121309,6058,premonition,1427760764 +121309,6156,England,1426667209 +121309,6156,Jackie Chan,1426667208 +121309,6156,Owen Wilson,1426667206 +121309,6283,anime,1427033485 +121309,6315,football,1427795394 +121309,6315,sports,1427795393 +121309,6315,sports comedy,1427795404 +121309,6373,God,1426667071 +121309,6373,Morgan Freeman,1426667074 +121309,6373,religion,1426667072 +121309,6541,Sean Connery,1425861892 +121309,6541,submarine,1425861904 +121309,6550,Rowan Atkinson,1426809748 +121309,6711,complex characters,1426662652 +121309,6711,loneliness,1426662660 +121309,6713,anime,1427033018 +121309,6887,drama,1427794961 +121309,6887,football,1427794951 +121309,6887,sports,1427794949 +121309,6947,historical,1426810675 +121309,6947,Russell Crowe,1426810673 +121309,6947,sailing,1426810677 +121309,7318,Biblical,1426810793 +121309,7318,Christian,1426810796 +121309,7318,Christianity,1426810791 +121309,7318,jesus,1426810786 +121309,7318,Jesus Christ,1426810800 +121309,7318,religion,1426810788 +121309,7361,jim carrey,1426662611 +121309,7361,surrealism,1426662623 +121309,7381,Bruce Willis,1427794923 +121309,8361,apocalypse,1426664646 +121309,8361,catastrophe,1426664643 +121309,8361,natural disaster,1426664645 +121309,8493,airplane,1425861807 +121309,8493,based on a true story,1425861795 +121309,8493,World War II,1425861796 +121309,8675,submarine,1425861832 +121309,8675,World War II,1425861833 +121309,8864,baseball,1427795445 +121309,8864,sport:baseball,1427795448 +121309,8864,sports,1427795455 +121309,8864,Sports Coordinator:Mark Ellis,1427795459 +121309,26743,anime,1426663453 +121309,26870,baseball,1427795614 +121309,26870,sport:baseball,1427795617 +121309,26870,sports,1427795624 +121309,26887,airplane,1425861965 +121309,26887,airport,1425861966 +121309,26887,time travel,1425861958 +121309,27002,astronauts,1427039606 +121309,27002,NASA,1427039601 +121309,27002,space,1427039602 +121309,27002,Tom Hanks,1427039609 +121309,27002,true story,1427039604 +121309,27156,anime,1426662906 +121309,27660,anime,1427033499 +121309,27660,cyberpunk,1427033502 +121309,27674,multiple storylines,1426668902 +121309,27728,anime,1426662988 +121309,31225,basketball,1427795132 +121309,31225,sports,1427795131 +121309,31658,anime,1426701491 +121309,33646,football,1427795423 +121309,33646,sports,1427795421 +121309,38388,soccer,1427795839 +121309,38388,sports,1427795836 +121309,42730,Basketball,1427795114 +121309,42730,sports,1427795112 +121309,43396,1960s,1427039692 +121309,43396,biography,1427039714 +121309,43396,true story,1427039696 +121309,44709,spelling bee,1427795096 +121309,45210,9/11,1426810860 +121309,47644,football,1427795242 +121309,47644,sports,1427795240 +121309,48161,sports,1427795149 +121309,49793,drama,1427794999 +121309,49793,football,1427795001 +121309,49793,sports,1427794978 +121309,50798,stupid,1426662831 +121309,52328,dark,1427033871 +121309,52328,madness,1427033875 +121309,52328,space,1427033863 +121309,52328,spaceships,1427033868 +121309,55176,space,1427039639 +121309,55176,space program,1427039653 +121309,56782,Paul Thomas Anderson,1426663744 +121309,56782,slow,1426663719 +121309,57532,stupid,1426663252 +121309,58315,Mike Myers,1426809805 +121309,65261,anime,1426666174 +121309,65899,time loop,1427031183 +121309,67197,aliens,1425862002 +121309,67197,apocalypse,1425861990 +121309,67197,apocalyptic,1425861996 +121309,67197,end of the world,1425861988 +121309,67197,sci-fi,1425861986 +121309,68194,british,1427033942 +121309,68194,soccer,1427033944 +121309,68194,sports,1427033951 +121309,70286,action,1428231141 +121309,70286,aliens,1428231137 +121309,70286,evil corporations,1428231191 +121309,70286,fake documentary,1428231152 +121309,70286,genetics,1428231139 +121309,70286,humor,1428231143 +121309,70286,mockumentary,1428231182 +121309,70286,Neill Blomkamp,1428231173 +121309,70286,satire,1428231156 +121309,70286,sci-fi,1428231134 +121309,70533,anime,1426662891 +121309,71379,Boring,1427034321 +121309,71379,Handycam,1426662481 +121309,71379,over-hyped,1426662494 +121309,71379,paranormal,1426662517 +121309,71379,slow,1426662489 +121309,72378,apocalypse,1425862033 +121309,72378,end of the world,1425862058 +121309,72378,sci-fi,1425862037 +121309,72378,science fiction,1425862040 +121309,72378,Special Effects,1425862031 +121309,72641,American Football,1427795065 +121309,72641,football,1427795061 +121309,72641,Sandra Bullock,1427795055 +121309,72641,sports,1427795058 +121309,79057,action,1426664432 +121309,79057,aliens,1426664431 +121309,81537,Zach Galifianakis,1426662812 +121309,83613,aliens,1426664448 +121309,83613,Daniel Craig,1426664450 +121309,84944,adult humor,1426809901 +121309,84944,Johnny Depp,1426809889 +121309,90469,boring,1427034290 +121309,90469,camerawork,1427034292 +121309,92259,french comedy,1427039738 +121309,93748,anime,1427032981 +121309,94018,alien invasion,1426664464 +121309,94018,aliens,1426664457 +121309,94018,Navy,1426664461 +121309,94018,sci-fi,1426664459 +121309,94018,ship,1426664473 +121309,94478,Johnny Depp,1426810015 +121309,96832,surreal,1426663067 +121309,101097,cold war,1425861839 +121309,101097,Ed Harris,1425861841 +121309,101097,submarine,1425861844 +121309,102123,stupid,1426663783 +121309,102481,Google,1426667117 +121309,102481,owen wilson,1426667125 +121309,102481,vince vaughn,1426667140 +121309,103253,class conflict,1428231107 +121309,103253,cyborgs,1428231124 +121309,103253,exo-skeleton,1428231091 +121309,103253,future,1428231112 +121309,103253,Inequality,1428231119 +121309,103253,Matt Damon,1428231079 +121309,103253,Neill Blomkamp,1428231063 +121309,103253,poverty,1428231121 +121309,103253,sci-fi,1428231070 +121309,103253,science fiction,1428231075 +121309,103253,visually stunning,1428231087 +121309,103306,Found footage,1427796902 +121309,103306,space,1427796893 +121309,103639,Sport,1428229627 +121309,104712,not funny enough,1452935364 +121309,106002,aliens,1426665412 +121309,106002,Harrison Ford,1426665432 +121309,106002,space,1426665414 +121309,106002,twist ending,1426665420 +121309,109487,black hole,1426662580 +121309,109487,good science,1426662553 +121309,109487,Matthew McConaughey,1426667371 +121309,109487,physics,1426662571 +121309,109487,relativity,1426662541 +121309,109487,sci-fi,1426662551 +121309,109487,space,1426662534 +121309,109487,time travel,1426662549 +121309,109487,time-travel,1426662536 +121309,109487,wormhole,1426662543 +121309,109848,slow,1426666859 +121309,110127,Darren Aronofsky,1426666776 +121309,110730,Johnny Depp,1426666551 +121309,110730,Morgan Freeman,1426666566 +121309,111443,cooking,1426666453 +121309,111443,food,1426666456 +121309,111759,Alien Invasion,1427793603 +121309,111759,time loop,1427793590 +121309,111759,time travel,1427793594 +121309,111759,Tom Cruise,1427793612 +121309,113771,found footage,1430549646 +121309,114180,maze,1426666507 +121309,114329,english comedy,1430122308 +121309,114678,Simon Pegg,1430122393 +121309,114678,slow development,1430122464 +121309,116797,code breaking,1426543384 +121309,116797,Computers,1426543378 +121309,116797,cryptography,1426543369 +121309,116797,history,1426543386 +121309,116797,informatics,1426543390 +121309,116797,mathematics,1426543375 +121309,117545,asterix,1430061531 +121309,118706,Capitalism,1425861394 +121309,118706,ocean,1425861612 +121309,118706,sea,1425861366 +121309,118706,submarine,1425861353 +121309,118706,underwater,1425861610 +121309,119068,modern technology,1430946102 +121309,120138,Aamir Khan,1426668250 +121309,120138,comedy,1425847363 +121309,120138,god,1426668231 +121309,120138,Rajkumar Hirani,1426668252 +121309,120138,religion,1426668222 +121309,120138,religious intolerance,1425847363 +121309,120138,very funny,1425847363 +121309,129241,comedy,1426496563 +121309,129241,greek,1426496563 +121309,129241,hillarious,1426496563 +121309,130396,slow,1426663308 +121309,130402,anime,1426664095 +121309,130444,good idea - bad script,1426698756 +121309,130444,time travel,1426701287 +121309,132046,alternate reality,1444234465 +121309,132046,Disney,1444234513 +121309,132046,Future,1444234469 +121309,132046,George Clooney,1444234459 +121309,132046,sci-fi,1444234462 +121309,132046,visually appealing,1444234476 +121334,2901,cult classic,1145496994 +121334,2901,disturbing,1145496994 +121334,2901,memorable,1145496994 +121342,260,epic adventure,1443686752 +121342,260,sci-fi,1443686762 +121372,260,adventure,1442124510 +121372,260,futuristic,1442124522 +121372,260,Syfy,1442124500 +121385,58559,action,1442401222 +121385,58559,Christopher Nolan,1442401213 +121385,58559,Heath Ledger,1442401210 +121385,58559,Morgan Freeman,1442401224 +121385,68157,Brad Pitt,1442401240 +121385,68157,Quentin Tarantino,1442401234 +121385,68157,World War II,1442401236 +121432,110,essential,1436010679 +121432,110,favorite with men,1436010679 +121432,110,role models,1436010679 +121432,153,authenticity,1328350686 +121432,153,destiny,1328350736 +121432,153,Drew Barrymore,1328350836 +121432,153,growing up,1328350673 +121432,153,Jim Carrey,1328350636 +121432,153,love triangles,1328350805 +121432,153,nostalgia,1328350621 +121432,153,purpose in life,1328350755 +121432,153,Tommy Lee Jones,1328350645 +121432,260,hero's journey,1431090010 +121432,260,must see,1431090010 +121432,260,nostalgic,1431090010 +121432,592,Jack Nicholson,1332587301 +121432,592,Michael Keaton,1332587316 +121432,924,silence,1357047854 +121432,1101,achievment,1319547333 +121432,1101,comraderie,1319547221 +121432,1101,inspiring,1319547198 +121432,1101,nostalgic,1319547310 +121432,1101,purpose in life,1319547235 +121432,1101,unlikable characters,1319547202 +121432,1266,theme song,1362919636 +121432,1459,directing,1436011099 +121432,1459,Music,1436011069 +121432,1459,soundtrack,1436011087 +121432,1620,Morgan Freeman,1436010989 +121432,1722,Michelle Yeoh,1350830946 +121432,1907,Ming-Na,1350279476 +121432,1907,Signature Disney comic relief,1350279449 +121432,1907,Songs,1350279410 +121432,2421,Tamlyn Tomita,1344420379 +121432,2485,Freddie Prinze Jr.,1322750658 +121432,2485,Matthew Lillard,1322750671 +121432,2485,rachel leigh cook's beautiful face,1322750694 +121432,2485,Slow in parts,1322750706 +121432,2485,Stupid on purpose,1322750722 +121432,2540,Chow Yun Fat,1338024997 +121432,2549,nostalgic,1330428261 +121432,2549,theme song,1330428292 +121432,2571,hero's journey,1437873757 +121432,2571,overrated,1437873757 +121432,2571,psychology and the nature of reality,1437873757 +121432,2582,better than expected,1350738799 +121432,2582,clever,1350653990 +121432,2582,hilarious,1350738751 +121432,2582,Hong Kong,1350738773 +121432,2582,lighthearted,1350653967 +121432,2582,slapstick,1350653948 +121432,2582,witty,1350653953 +121432,2888,f bomb,1316603645 +121432,2888,guilty pleasure,1316603594 +121432,2888,Melissa Joan Hart,1316603982 +121432,2888,melodramatic,1316604023 +121432,2888,music,1316603674 +121432,2888,orange,1316604035 +121432,2888,soundtrack,1316604910 +121432,2888,unnecessary f bomb,1336313803 +121432,3882,90s,1316603538 +121432,3882,high school,1316603551 +121432,3882,nostalgia,1316603530 +121432,4701,Hong Kong,1332586897 +121432,4701,light hearted,1332586916 +121432,5313,Kelly Hu,1336829833 +121432,5349,nostalgic,1332587447 +121432,5349,Willem Dafoe,1332587460 +121432,5400,Jerry Goldsmith,1339246988 +121432,5400,Liev Schreiber,1339247016 +121432,5418,cinematography,1316517947 +121432,5418,director,1316517909 +121432,5418,freedom,1316518017 +121432,5418,nostalgic,1316517994 +121432,5418,silence,1316517919 +121432,5418,sound editing,1316517931 +121432,6686,Basicly a kids movie,1323006827 +121432,6686,Bloopers,1323006768 +121432,6686,Boring action,1323006722 +121432,6686,Christy Chung,1323006642 +121432,6686,Hong Kong,1323006624 +121432,6686,lighthearted,1323006741 +121432,6808,Bechdel Test:Pass,1333269131 +121432,6947,J. S. Bach Prelude BWV1007,1331035141 +121432,26612,finale,1341999254 +121432,40815,dance,1347798672 +121432,40815,Katie Leung,1347798686 +121432,40815,soundtrack,1347798706 +121432,45412,ambient,1348650143 +121432,45412,Directing,1348650094 +121432,45412,silence,1348650099 +121432,45412,Takako Matsu,1348650137 +121432,46322,Betty Sun,1360329692 +121432,48093,Alan Mak,1361879210 +121432,48093,Anne Suzuki,1361879365 +121432,48093,Anthony Wong,1361879286 +121432,48093,Atmospheric,1361879315 +121432,48093,Edison Chen,1361879072 +121432,48093,Hong Kong,1361879518 +121432,48093,Japan,1361879508 +121432,48093,Jay Chou,1361879277 +121432,48093,Kenny Bee,1361879691 +121432,48093,Night,1361879158 +121432,48093,Racing scenes,1361879203 +121432,48093,Shawn Yue,1361879381 +121432,48093,Wai-keung Lau,1361879126 +121432,48516,evil,1316518349 +121432,48516,Mark Wahlberg,1316518320 +121432,48516,matt damon,1316518279 +121432,52956,Cecilia Cheung,1356528188 +121432,52956,Christmas,1356528194 +121432,52956,cinematography,1356528148 +121432,52956,Daniel Wu,1356528354 +121432,52956,disturbing,1356670016 +121432,52956,disturbing violence,1356528331 +121432,52956,driector,1356528157 +121432,52956,Hong Kong,1356528166 +121432,52956,tragedy,1356528415 +121432,55276,Mercedes S-Class,1352462494 +121432,55276,soundtrack,1352462471 +121432,58306,Khulan Chuluun,1364555989 +121432,58306,romance,1364555962 +121432,62081,unlikeable characters,1316518397 +121432,67867,Chow Yun Fat,1338081829 +121432,67867,Jamie Chung,1338081807 +121432,79293,commercial,1316518139 +121432,79293,social conditioning,1316518120 +121432,80463,cinematography,1331542850 +121432,80463,dialogue,1331542839 +121432,80463,director,1331542863 +121432,80463,Music,1331542802 +121432,80463,script,1331542829 +121432,83349,Cameron Diaz,1328350529 +121432,83349,Jay Chou,1328350425 +121432,83349,lighthearted,1328350435 +121432,83349,Seth Rogen,1328350551 +121432,83349,slapstick,1328350500 +121432,83349,Unlikable protagonist,1330430222 +121432,88140,authentic men,1323436138 +121432,88140,authenticity,1323436057 +121432,88140,positive,1323436088 +121432,88140,positive themes,1323436199 +121432,88140,role models,1323436066 +121432,88140,theme song,1323436234 +121432,91529,Joseph Gordon-Levitt,1344068989 +121432,91529,unsatisfying ending,1344069007 +121432,92507,Camera work,1329521389 +121432,92507,Denzel Washington,1329521427 +121432,92507,Ryan Reynolds,1329521418 +121432,92507,Vera Farmiga,1329521435 +121432,95510,Andrew Garfield,1341359942 +121432,95510,digital cinematography,1341391459 +121432,95510,Emma Stone,1341359508 +121432,95510,family friendly,1341359730 +121432,95510,Martin Sheen,1341359613 +121432,95510,Reboot,1341359526 +121432,95510,Shot using RED Epic,1341391413 +121432,95510,watch the credits,1341359861 +121432,96079,Berenice Marlohe,1355287657 +121432,96079,China,1355287712 +121432,96079,Sam Mendes,1355287743 +121432,100315,charming,1361704698 +121432,100315,Hong Kong,1360045511 +121432,100315,Miriam Yeung Chin Wah,1360044447 +121432,100315,Richie Ren,1360044458 +121432,100315,romantic comedy,1360424256 +121432,100743,"""Piggy""",1362228950 +121432,100743,Hong Kong,1361705386 +121432,100743,Kate Tsui,1361705378 +121432,100743,soundtrack,1361705403 +121432,100743,Tony Leung Ka-Fei,1362228931 +121432,100830,air race,1361797122 +121432,100830,Beautiful acting,1361796587 +121432,100830,controversial,1361796718 +121432,100830,intense,1361796632 +121432,100830,Japan,1361796729 +121432,100830,Jin-Young Jang,1361796577 +121432,100830,plot twist,1361796663 +121432,100830,romance,1361880280 +121432,100830,soundtrack,1361796669 +121432,100830,South Korea,1361796594 +121432,100830,torture,1361796947 +121432,100830,tradegy,1361796988 +121432,103228,Rinko Kikuchi,1388810695 +121432,116742,art direction,1431952538 +121432,116742,Chinese,1431952458 +121432,116742,cinematography,1431952536 +121432,116742,Hong Kong,1431952433 +121432,116742,inspiring,1431952300 +121432,116742,Jay Chou,1431952548 +121432,116742,Lun Mei Gwei,1431952509 +121432,116742,music,1431952267 +121432,116742,piano,1431952271 +121432,116742,school,1431952459 +121432,116742,Taiwan,1431952450 +121440,2706,boring,1446747247 +121440,2706,sexuality,1446747234 +121440,5218,animation,1446747296 +121440,5218,cartoon,1446747280 +121440,5218,pixar,1446747302 +121440,135887,boring,1446747262 +121440,135887,childhood,1446747271 +121440,135887,kids,1446747267 +121442,1373,Star Trek,1269258308 +121442,6365,cyberpunk,1269258188 +121442,6934,sci-fi,1269258180 +121446,608,coen bros,1139313933 +121446,1732,coen bros,1139313934 +121446,3683,coen bros,1139313914 +121446,6873,coen bros,1139313923 +121446,7367,coen bros,1139313924 +121447,260,scifi,1434566213 +121447,260,space adventure,1434566244 +121473,6942,great soundtrack,1430714175 +121473,6942,Romance,1430713821 +121473,6942,witty,1430714172 +121473,48780,romance,1430713716 +121473,48780,Scarlett Johansson,1430713722 +121473,48780,sci-fi,1430713719 +121473,48780,thriller,1430713714 +121473,48780,twists & turns,1430713725 +121473,116797,code breaking,1430713634 +121473,116797,Computers,1430713622 +121473,116797,cryptography,1430713636 +121538,3768,chuck norris,1171662275 +121543,2232,low budget,1452716196 +121543,2232,mindfuck,1452716192 +121543,2232,psychological,1452716203 +121543,2232,weird,1452716206 +121543,8914,clever,1452716096 +121543,8914,complex,1452716108 +121543,8914,complicated plot,1452716098 +121543,8914,intellectual,1452716093 +121543,8914,low budget,1452716100 +121543,8914,Sci-Fi,1452716106 +121543,8914,time travel,1452716091 +121543,113741,mind bending,1452716155 +121543,113741,parallel universe,1452716157 +121543,115680,time travel,1452716129 +121543,115680,twist ending,1452716137 +121557,260,coming of age,1442367877 +121557,260,good vs evil,1442367896 +121604,153,action,1237069839 +121604,153,superhero,1237069839 +121604,356,comedy,1237069417 +121604,356,drama,1237069402 +121604,539,Comedy,1237069343 +121604,539,Drama,1237069343 +121604,539,Romance,1237069343 +121604,592,action,1237069855 +121604,592,superhero,1237069855 +121604,912,drama,1237070008 +121604,912,romance,1237070008 +121604,912,sad ending,1237070008 +121604,1562,action,1237069800 +121604,1562,superhero,1237069800 +121604,1721,romance,1237069963 +121604,1721,sad ending,1237069963 +121604,2424,comedy,1237069479 +121604,2424,romance,1237069480 +121604,2571,Action,1237070157 +121604,2572,comedy,1237070681 +121604,2572,romantic,1237070669 +121604,2572,teen,1237070664 +121604,2671,drama,1237069570 +121604,2671,romance,1237069570 +121604,2706,comedy,1237070577 +121604,2706,teen,1237070580 +121604,2858,Drama,1237070863 +121604,3793,action,1237069824 +121604,3793,superhero,1237069825 +121604,4718,comedy,1237070711 +121604,4718,teen,1237070700 +121604,4886,Animation,1237070939 +121604,4886,Comedy,1237070939 +121604,4995,Drama,1237070261 +121604,5349,action,1237069663 +121604,5349,superhero,1237069663 +121604,5989,comedy,1237069439 +121604,5989,drama,1237069439 +121604,6333,action,1237069813 +121604,6333,superhero,1237069813 +121604,6365,action,1237069767 +121604,6377,Animation,1237070919 +121604,6377,Comedy,1237070919 +121604,7293,comedy,1237070034 +121604,7293,romance,1237070034 +121604,7361,romance,1237070073 +121604,7373,action,1237069788 +121604,7373,superhero,1237069788 +121604,8636,action,1237069680 +121604,8636,superhero,1237069680 +121604,8961,action,1237069878 +121604,8961,animation,1237069878 +121604,8961,comedy,1237069889 +121604,8961,superhero,1237069878 +121604,33794,action,1237069623 +121604,33794,superhero,1237069623 +121604,52722,action,1237069747 +121604,52722,superhero,1237069747 +121604,58559,action,1237070363 +121604,58559,superhero,1237070353 +121604,59784,Animation,1237070956 +121604,59784,Comedy,1237070956 +121604,64957,drama,1237069060 +121644,260,fantasy,1437733401 +121644,260,fantasy action,1437733446 +121644,260,good for kids,1437733438 +121657,260,sci-fi,1442822858 +121657,260,Star Wars,1442822864 +121669,4975,Tom Cruise,1167159094 +121681,41285,romance,1364683338 +121683,69757,artistic,1440533003 +121683,69757,bittersweet,1440532999 +121683,69757,cynicism,1440532991 +121683,69757,indie music,1440533024 +121683,69757,no happy ending,1440533018 +121683,69757,quirky,1440533007 +121683,95873,quirky,1440532954 +121683,95873,writers,1440532962 +121690,260,sci-fi,1437971098 +121690,260,space adventure,1437971102 +121695,540,sliver,1189375892 +121695,1298,seize,1189375905 +121695,1779,sphere,1189375891 +121696,50,great ending,1241442509 +121696,50,mindfuck,1241442497 +121696,2959,action,1241442405 +121696,2959,psychology,1241442389 +121696,2959,schizophrenia,1241442395 +121696,2959,social commentary,1241442400 +121696,2959,surreal,1241442390 +121696,4011,british,1241442454 +121696,4011,Crime,1241442466 +121696,4011,Great dialogue,1241442431 +121696,4011,Guy Ritchie,1241442472 +121696,4011,gypsy accent,1241442435 +121696,4848,David Lynch,1241442581 +121696,4848,dreamlike,1241442601 +121696,4848,mindfuck,1241442586 +121696,4878,mindfuck,1241442349 +121696,4878,mystery,1241442337 +121696,4878,psychology,1241442329 +121696,6774,David Cronenberg,1241442274 +121696,61240,swedish,1241442251 +121696,61240,vampires,1241442235 +121706,1610,sean connery,1429784606 +121706,6874,Quentin Tarantino,1429784550 +121712,253,vampires,1262902999 +121712,3246,Denzel Washington,1259446074 +121712,48322,pranks,1262902857 +121726,27821,awful accent,1305620391 +121727,260,drama,1438226424 +121727,260,romance,1438226431 +121738,924,artificial intelligence,1323452022 +121738,924,sci-fi,1323452032 +121738,924,space,1323452034 +121738,924,Stanley Kubrick,1323452021 +121742,94748,basketball,1426726735 +121742,94748,college sports,1426726735 +121742,94748,women's sports,1426726735 +121742,102989,apartheid,1423454765 +121742,102989,based on a true story,1423454765 +121742,102989,racism,1423454765 +121742,131818,fan,1428200530 +121742,131818,firefly,1428200530 +121742,131818,serenity,1428200530 +121745,97,racism,1176414176 +121745,1884,drugs,1145593639 +121745,4326,civil rights,1145593171 +121745,4873,drugs,1145593656 +121745,6398,racing,1176528546 +121745,7439,dull,1145587621 +121745,8622,liberal,1176414366 +121745,8622,politics,1176414360 +121745,27912,politics,1176414322 +121745,37240,Military-Industrial Complex,1176414054 +121788,2763,intelligent,1251671699 +121788,4306,animation,1252271095 +121788,4306,comedy,1252271102 +121788,4886,animation,1251671894 +121788,4886,comedy,1251671901 +121788,4963,witty,1251671839 +121788,6378,action,1251671743 +121788,6378,twists & turns,1251671763 +121788,8961,action,1252271128 +121788,8961,Adventure,1252271138 +121788,8961,comedy,1252271142 +121788,8961,superhero,1252271146 +121788,54272,comedy,1256938413 +121788,59315,adventure,1252271194 +121788,59315,superhero,1252271196 +121788,68319,action,1251672011 +121788,68319,superhero,1251672004 +121803,260,fantasy,1434988172 +121803,260,sci-fi,1434988165 +121822,73860,coming-of-age,1422938317 +121822,73860,mother-son relationship,1422938317 +121822,73860,music,1422938317 +121824,260,fantasy,1436511005 +121824,260,Science Fiction,1436510952 +121824,260,space,1436510997 +121856,1,funny,1287505424 +121856,1,Pixar,1287505413 +121856,47,Brad Pitt,1307816404 +121856,47,Morgan Freeman,1307816409 +121856,47,twists & turns,1307816419 +121856,110,freedom,1294866754 +121856,110,historical,1305232257 +121856,110,Oscar (Best Picture),1305232263 +121856,232,Ang Lee,1290536688 +121856,232,China,1290536700 +121856,296,低俗小说,1288974719 +121856,296,暴力,1288974729 +121856,318,based on a book,1285796750 +121856,318,Morgan Freeman,1285796739 +121856,318,Stephen King,1285796746 +121856,356,american dream,1285966055 +121856,356,american spirit,1285966055 +121856,356,bittersweet,1285966018 +121856,356,经典,1336732506 +121856,356,history,1285966070 +121856,356,vietnam war,1285966064 +121856,446,China Culture,1288996396 +121856,446,Gong Li,1285966923 +121856,446,Leslie Cheung,1285963851 +121856,446,opera,1285963863 +121856,446,Zhang Fengyi,1285963870 +121856,527,atmospheric,1294867244 +121856,527,history,1285799562 +121856,527,Holocaust,1285799580 +121856,527,sexuality,1285799586 +121856,527,touching,1285799549 +121856,527,true story,1285799542 +121856,1678,Children,1288892603 +121856,1678,Chinese,1288892484 +121856,1678,Culture,1288892487 +121856,1678,culture clash,1288892529 +121856,1678,history,1288892549 +121856,1678,love,1288892583 +121856,1960,biography,1294263443 +121856,1960,China,1294263421 +121856,1960,Emma Thompson,1279089733 +121856,1960,Emperor,1294263467 +121856,1960,Qing Dynasty,1279089733 +121856,1960,zhun long,1294263436 +121856,2324,?,1288974822 +121856,2355,animation,1273723154 +121856,2355,Pixar,1273723157 +121856,2621,culture revolution,1285800493 +121856,2621,ugly,1285800519 +121856,2621,wang xiaolu,1285800541 +121856,2762,Bruce Willis,1285797367 +121856,2762,ghosts,1285797234 +121856,2762,horror,1285797345 +121856,2762,psychology,1285797061 +121856,2762,sad but good,1286849292 +121856,2762,scary,1285797347 +121856,2762,suspense,1286392021 +121856,2762,touching,1285797065 +121856,2762,twist ending,1285797023 +121856,2972,Li Gong,1307548296 +121856,2972,Yimou Zhang,1307548282 +121856,3787,comedy,1279089640 +121856,3787,Jiang Wu,1279089665 +121856,3989,violence,1288977151 +121856,4848,mindfuck,1295890632 +121856,4973,atmospheric,1290809841 +121856,5068,Beijing,1285800303 +121856,5068,teenagers,1285800335 +121856,5445,anime,1294868956 +121856,5690,anti-war,1286384751 +121856,5690,Studio Ghibli,1286384744 +121856,6350,@childhood,1294422149 +121856,6350,adventure,1294422127 +121856,6350,fantasy,1294422132 +121856,6350,Hayao Miyazaki,1294422110 +121856,6350,Studio Ghibli,1294422121 +121856,6668,family bonds,1279089489 +121856,6668,love,1279089521 +121856,6668,Yimou Zhang,1279089505 +121856,6942,Hugh Grant,1292962543 +121856,6942,multiple storylines,1292962512 +121856,6942,witty,1292962500 +121856,26606,ghosts,1279090014 +121856,31878,Zhou xingchi,1279089905 +121856,33166,cultural conflict,1285796900 +121856,33166,Nudity (Topless - Brief),1285796959 +121856,33166,race issues,1285796950 +121856,33166,twist ending,1285796972 +121856,33585,waste of time and money to see this,1279089348 +121856,41997,Nudity (Full Frontal),1288985392 +121856,41997,true story,1288985404 +121856,41997,violence,1288985407 +121856,44555,Oscar (Best Foreign Language Film),1294430487 +121856,49530,Africa,1279088940 +121856,49530,Leonardo DiCaprio,1279088945 +121856,49530,war,1279088949 +121856,50005,China,1307638801 +121856,50005,Classical Chinese,1307638804 +121856,50005,Yimou Zhang,1307638810 +121856,55253,Ang Lee,1290627603 +121856,55253,china,1290627401 +121856,55253,Nudity (Full Frontal - Notable),1307129022 +121856,55253,Nudity (Full Frontal),1307129017 +121856,55253,sexy,1279089818 +121856,55253,Shanghai,1307129030 +121856,55253,violence,1307129044 +121856,55253,World War II,1290627603 +121856,60827,Bingbing Fan,1285800245 +121856,60827,society,1285800256 +121856,64622,based on a book,1279089232 +121856,64622,betrayal,1279089241 +121856,68237,cloning,1288713708 +121856,68237,future,1288713747 +121856,68237,twist ending,1288713724 +121856,68954,adventure,1321160715 +121856,68954,children,1321160723 +121856,68954,computer animation,1321160707 +121856,70286,redemption,1285796056 +121856,70286,unique,1285796068 +121856,72378,action,1289930865 +121856,72378,Bible,1289929082 +121856,72378,China,1289929041 +121856,72378,John Cusack,1289930768 +121856,72378,sci-fi,1288985984 +121856,72378,science fiction,1288985978 +121856,72378,slow,1289930893 +121856,72998,@2010,1294433073 +121856,72998,James Cameron,1294433058 +121856,79132,Mindfuck Movie,1294868028 +121856,79242,好人,1291783917 +121856,79242,cute,1291783917 +121856,79242,love,1291783917 +121856,79242,test,1291783917 +121856,80463,based on true story,1286847864 +121856,80463,facebook,1286847448 +121856,80463,protagonist is a computer programmer,1288045792 +121856,80463,setting:Harvard University,1288045799 +121856,80463,social network,1286847463 +121856,80463,true story,1288045762 +121856,80941,测试,1288974904 +121856,81564,bad to good,1291755837 +121856,81834,based on a book,1292961691 +121856,81834,British,1292961716 +121856,81834,dark,1292961696 +121856,81834,magic,1292961698 +121856,81932,Mark Wahlberg,1298998306 +121856,82459,dd,1298432168 +121856,86781,great soundtrack,1309380432 +121856,86781,slow,1309380442 +121856,87222,3d,1307463307 +121856,87222,animation,1307463310 +121856,87222,Chinese factor,1307463333 +121870,29,bleak,1416418719 +121870,29,dark,1416418737 +121870,29,visually appealing,1416418731 +121870,3556,adolescence,1415913226 +121870,3556,dreamlike,1415913195 +121870,3556,enigmatic,1415913207 +121870,3556,great soundtrack,1415913210 +121870,3556,narrated,1415913448 +121870,3556,psychology,1415913201 +121870,3556,stylized,1415913442 +121870,3556,visually appealing,1415913193 +121870,5992,intellectual,1415913929 +121870,5992,lesbian,1415913920 +121870,5992,nonlinear,1415913924 +121870,5992,queer,1415913937 +121870,5992,Virginia Woolf,1415913942 +121870,8873,adventure,1416229838 +121870,8873,Che Guevara,1416229867 +121870,8873,cinematography,1416229860 +121870,8873,good dialogue,1416229852 +121870,8873,political,1416421287 +121870,8873,politics,1416229841 +121870,8873,road trip,1416229857 +121870,8873,South America,1416229834 +121870,44694,mother-daughter relationship,1416094262 +121870,44694,Pedro Almodovar,1416419167 +121870,44694,Penelope Cruz,1416094268 +121870,44694,Spain,1416094273 +121870,44694,visually appealing,1416094257 +121870,81591,atmospheric,1416184799 +121870,81591,ballet,1416184823 +121870,81591,dance,1416184785 +121870,81591,dark,1416184802 +121870,81591,lesbians,1416184813 +121870,81591,madness,1416184790 +121870,81591,music,1416184809 +121870,81591,sex,1416184782 +121870,81591,visceral,1416184795 +121870,96606,beautiful cinematography,1415913826 +121870,96606,meditative,1415913830 +121870,105355,coming of age,1416094425 +121870,105355,fine art,1416094416 +121870,105355,homosexuality,1416094422 +121870,105355,lesbian,1416094412 +121870,105355,visually appealing,1416094438 +121870,105844,black history,1416229915 +121870,105844,bravery,1416229941 +121870,105844,cinematography,1416229898 +121870,105844,civil rights,1416229955 +121873,296,Quentin Tarantino,1328837315 +121880,260,classic sci-fi,1438147299 +121880,260,space,1438147283 +121890,4306,Funny,1435181933 +121890,4306,witty,1435181953 +121890,4886,cute,1435182615 +121890,4886,funny,1435182613 +121890,4886,hilarious,1435182610 +121890,6377,funny,1435219057 +121890,76093,depth of emotion,1435181736 +121890,79091,funny,1435182536 +121890,79091,hilarious,1435182543 +121890,103075,wasted potential,1435182329 +121890,115617,funny,1435182448 +121893,260,hero quest,1437269502 +121893,260,Science Fiction,1437269496 +121893,356,feel-good,1437269626 +121893,356,purpose in life,1437269626 +121893,356,spiritual journey,1437269626 +121896,43,historical,1368560763 +121896,44,awesome soundtrack,1368560359 +121896,50,excellent script,1368560321 +121896,110,factual,1368560779 +121896,110,revolution,1368560909 +121896,272,revolution,1368560908 +121896,288,brutality,1368560346 +121896,290,brutality,1368560346 +121896,308,poland,1368560662 +121896,446,revolution,1368560908 +121896,521,noir thriller,1368560302 +121896,527,amazing photography,1368560925 +121896,541,visual,1368560375 +121896,593,excellent script,1368560321 +121896,858,oscar (best directing),1368560574 +121896,913,noir thriller,1368560303 +121896,924,visual,1368560375 +121896,946,poland,1368560662 +121896,946,wartime,1368560495 +121896,991,historical,1368560763 +121896,1090,war movie,1368560394 +121896,1096,poland,1368560662 +121896,1125,series,1368560463 +121896,1127,amazing photography,1368560925 +121896,1129,lone hero,1368560603 +121896,1199,visual,1368560375 +121896,1213,oscar (best directing),1368560574 +121896,1219,amazing photography,1368560925 +121896,1231,factual,1368560779 +121896,1233,best war films,1368560443 +121896,1248,noir thriller,1368560303 +121896,1262,best war films,1368560444 +121896,1263,war movie,1368560394 +121896,1270,awesome soundtrack,1368560359 +121896,1291,series,1368560463 +121896,1358,oscar (best directing),1368560574 +121896,1374,series,1368560463 +121896,1527,visual,1368560375 +121896,1682,modern fantasy,1368560703 +121896,1693,historical,1368560763 +121896,1777,awesome soundtrack,1368560359 +121896,1918,series,1368560463 +121896,2002,series,1368560463 +121896,2006,lone hero,1368560603 +121896,2028,war movie,1368560395 +121896,2161,fantasy world,1368560940 +121896,2193,fantasy world,1368560940 +121896,2194,oscar (best directing),1368560574 +121896,2329,brainwashing,1368560688 +121896,2336,factual,1368560779 +121896,2427,war movie,1368560394 +121896,2436,wartime,1368560495 +121896,2571,visual,1368560375 +121896,2670,wwii,1368560724 +121896,2726,noir thriller,1368560302 +121896,2858,excellent script,1368560321 +121896,2944,best war films,1368560444 +121896,2944,wwii,1368560724 +121896,2968,fantasy world,1368560940 +121896,2997,modern fantasy,1368560703 +121896,3053,historical,1368560763 +121896,3066,wwii,1368560724 +121896,3147,oscar (best directing),1368560574 +121896,3196,wwii,1368560724 +121896,3386,factual,1368560779 +121896,3448,war movie,1368560394 +121896,3481,awesome soundtrack,1368560360 +121896,3504,brainwashing,1368560688 +121896,3654,wartime,1368560495 +121896,3702,lone hero,1368560603 +121896,3703,lone hero,1368560603 +121896,3811,wartime,1368560495 +121896,3836,wartime,1368560495 +121896,3836,wwii,1368560724 +121896,3949,oscar (best directing),1368560574 +121896,4235,amazing photography,1368560925 +121896,4816,brainwashing,1368560688 +121896,4896,fantasy world,1368560940 +121896,5010,best war films,1368560443 +121896,5618,fantasy world,1368560940 +121896,6016,amazing photography,1368560925 +121896,7013,noir thriller,1368560303 +121896,7143,amazing photography,1368560925 +121896,8368,fantasy world,1368560940 +121896,8493,wartime,1368560495 +121896,8493,wwii,1368560724 +121896,8622,factual,1368560779 +121896,32587,brutality,1368560346 +121896,37733,brutality,1368560346 +121896,41573,christmas,1293050177 +121896,48304,brutality,1368560346 +121896,48394,brutality,1368560346 +121896,66870,abuse,1245036942 +121896,66870,alcholics,1245036942 +121896,66870,camera,1245036890 +121896,66870,photography,1245036942 +121896,66870,war,1245036942 +121896,69481,best war films,1368560444 +121896,104374,Romance,1445492910 +121909,78290,reality,1426802543 +121909,78290,trash,1426802543 +121909,78290,war,1426802543 +121919,2600,alternate reality,1369475911 +121919,2600,mindfuck,1369475906 +121919,2600,multiple realities,1369475916 +121919,2600,Sci-Fi,1369475903 +121919,2600,surreal,1369475924 +121919,2600,techno-evolution,1369475921 +121919,2600,video game,1369475951 +121919,2600,virtual reality,1369475926 +121919,48394,atmospheric,1369475762 +121919,48394,bittersweet,1369475774 +121919,48394,disturbing,1369475790 +121919,48394,fairy tale,1369475764 +121919,48394,fantasy,1369475771 +121919,48394,psychology,1369475785 +121919,48394,surreal,1369475782 +121919,48394,twist ending,1369475777 +121919,48394,violence,1369475788 +121920,6408,drunk monkeys,1226377690 +121959,553,acting,1451346086 +121959,553,cowboys,1451346093 +121959,553,Doc Holliday,1451346078 +121959,553,gunfight,1451346098 +121959,553,Western,1451346102 +121959,56782,cerebral,1451346149 +121959,56782,Daniel Day-Lewis,1451346134 +121959,56782,father-son relationship,1451346145 +121959,56782,Oscar (Best Actor),1451346141 +121959,102407,1920s,1451346020 +121959,102407,Carey Mulligan,1451346006 +121959,102407,disappointing,1451346014 +121959,102407,F. Scott Fitzgerald,1451346011 +121959,102407,Leonardo DiCaprio,1451345997 +121959,102407,Period piece,1451345991 +121959,102407,stylized,1451346018 +121973,1260,Fritz Lang,1146322070 +121973,2068,Ingmar Bergman,1146322580 +121973,3587,Dario Argento,1146323470 +121973,4437,Dario Argento,1146323348 +121973,4768,Fritz Lang,1146321353 +121973,5017,Fritz Lang,1146321446 +121973,7064,Jean Cocteau,1146322238 +121973,7115,Dario Argento,1146323367 +121973,7328,Ingmar Bergman,1146322510 +121973,7331,Ingmar Bergman,1146322545 +121973,7713,Val Lewton,1146322626 +121973,7883,Val Lewton,1146322677 +121973,7913,Mario Bava,1146323007 +121973,7936,Ingmar Bergman,1146322483 +121973,8035,Dario Argento,1146323523 +121973,8198,Fritz Lang,1146321377 +121973,8670,Fritz Lang,1146321362 +121973,25954,Jean Cocteau,1146322258 +122036,90603,Batman,1447563910 +122036,90603,Cartoon,1447563925 +122036,91529,dark,1435213107 +122036,91529,dystopia,1435213140 +122036,91529,great ending,1435213095 +122036,91529,intense,1435213131 +122070,2959,action,1241127152 +122070,2959,Brad Pitt,1241127139 +122070,2959,disturbing,1241127197 +122070,2959,Edward Norton,1241127142 +122070,2959,mental illness,1241127169 +122070,2959,powerful ending,1241127159 +122070,2959,psychology,1241127146 +122070,2959,TERRORISM,1241127215 +122070,2959,violence,1241127213 +122070,3949,addiction,1241127358 +122070,3949,based on a book,1241127415 +122070,3949,depressing,1241127369 +122070,3949,disturbing,1241127410 +122070,3949,drugs,1241127387 +122070,3949,Nudity (Full Frontal - Notable),1241127434 +122070,3949,Nudity (Full Frontal),1241127432 +122070,3949,psychology,1241127428 +122070,48385,hard to watch,1241126796 +122070,48385,Male nudity,1241126800 +122070,48385,Nudity (Full Frontal - Notable),1241126803 +122070,48385,Nudity (Full Frontal),1241126805 +122074,1196,classic,1440247348 +122074,1196,music,1440247368 +122074,1221,leadership,1440247187 +122092,247,matricide,1266353562 +122092,112552,masochistic,1436911722 +122108,260,cult classic,1432035342 +122108,260,dork,1432035285 +122109,260,hero's journey,1444747485 +122109,260,Science Fiction,1444747479 +122109,260,space,1444747472 +122109,858,crime,1444747521 +122109,858,italy,1444747523 +122109,858,Marlon Brando,1444747532 +122109,858,Oscar (Best Picture),1444747529 +122118,648,suspense,1142099827 +122118,2355,fun,1142099760 +122125,8950,bleak,1298338300 +122125,8950,Christian Bale,1298338293 +122125,8950,insomnia,1298338296 +122125,8950,post-traumatic stress disorder,1298338303 +122125,8950,powerful ending,1298338306 +122125,8950,predictable,1298338310 +122125,8950,psychology,1298338319 +122125,8950,schizophrenia,1298338314 +122125,8950,stylized,1298338316 +122137,111,Deconstructive,1139754010 +122137,162,Fucked up,1137727613 +122137,296,indebted to godard,1421641895 +122137,296,quentin tarantino,1421641895 +122137,296,zeitgeist-y,1421641895 +122137,608,Quirky,1139754088 +122137,924,Breathtaking,1137703820 +122137,924,Mindfuck,1137703820 +122137,1237,Breathtaking,1137727370 +122137,1252,Incest,1137707274 +122137,1699,Underrated,1139754219 +122137,1719,Incest,1137727358 +122137,1913,Breathtaking,1137727633 +122137,1913,Enigmatic,1137727633 +122137,2076,Fucked up,1137707258 +122137,2395,Quirky,1139753983 +122137,2439,Depressing,1139754112 +122137,2712,Breathtaking,1137727273 +122137,2712,Erotic,1137727330 +122137,3676,fucked up,1137702667 +122137,3676,Lynch,1137702667 +122137,4226,Mindfuck,1137727454 +122137,4273,Haunting,1137815668 +122137,4422,Breathtaking,1137727416 +122137,4422,Lyrical,1137727416 +122137,4848,Breathtaking,1137727471 +122137,4848,Enigmatic,1137727471 +122137,4848,Erotic,1137727471 +122137,4848,Mindfuck,1137727471 +122137,4873,Overrated,1137702800 +122137,4903,Depressing,1137702773 +122137,4914,Deconstructive,1139754023 +122137,4979,Quirky,1139754153 +122137,5147,Breathtaking,1137727507 +122137,5147,Lyrical,1137727507 +122137,5258,Breathtaking,1137727428 +122137,5258,Lyrical,1137727428 +122137,5878,Breathtaking,1137727493 +122137,6218,Overrated,1137702834 +122137,6291,Depressing,1137702743 +122137,6385,Overrated,1137702848 +122137,6440,Enigmatic,1137727402 +122137,6708,grifting,1137702629 +122137,6711,Melancholic,1137727445 +122137,6954,self-satisfied,1145068171 +122137,7158,Depressing,1137702863 +122137,7158,Overrated,1137702863 +122137,7371,Underrated,1139754183 +122137,8195,Breathtaking,1137727393 +122137,8195,Enigmatic,1137727393 +122137,8618,Deconstructive,1139754195 +122137,8949,Melancholic,1137727484 +122137,33880,overrated,1139753902 +122137,33880,quirky,1139753902 +122137,34338,Vulgar,1138499119 +122137,34528,quirky,1139753923 +122137,36276,Deconstructive,1139754035 +122137,36276,Haunting,1139754035 +122137,38061,Self-satisfied,1139507680 +122137,39183,Breathtaking,1137815564 +122137,42418,Breathtaking,1137815591 +122137,42418,Epic,1137815591 +122137,42418,Haunting,1137815591 +122137,45440,Misanthropic,1148619337 +122137,45440,Underrated,1148669463 +122150,16,based on a book,1247207332 +122150,16,mafia,1247207335 +122150,16,Martin Scorsese,1247207339 +122150,293,assassin,1247207325 +122150,293,disturbing,1247207323 +122150,428,al pacino,1247207421 +122150,428,mafia,1247207466 +122150,428,Robert De Niro,1247207425 +122150,435,Coen Brothers,1247207521 +122150,593,psychology,1247207373 +122150,593,serial killer,1247207367 +122150,710,Damon Wayans,1247206366 +122150,710,Dan Aykroyd,1247206355 +122150,710,Daniel Stern,1247206369 +122150,1089,nonlinear,1247207494 +122150,1089,organized crime,1247207490 +122150,1089,Quentin Tarantino,1247207493 +122150,1213,based on a book,1247207318 +122150,1213,dark comedy,1247207314 +122150,1213,organized crime,1247207316 +122150,1220,classic,1247207342 +122150,1220,Dan Aykroyd,1247205418 +122150,1220,music,1247206790 +122150,1220,rhythm & blues,1247206815 +122150,1220,Saturday Night Live,1247206770 +122150,1220,surreal,1247206810 +122150,1221,mafia,1247207311 +122150,1221,organized crime,1247207308 +122150,1228,Martin Scorsese,1247207383 +122150,1396,black comedy,1247207479 +122150,1396,computers,1247207483 +122150,1396,heist,1247207477 +122150,1772,sequel,1247206537 +122150,2064,auto industry layoffs,1247207075 +122150,2064,business,1247207035 +122150,2064,capitalism,1247207001 +122150,2064,corporate America,1247207067 +122150,2064,Michael Moore,1247207026 +122150,2064,propaganda,1247207081 +122150,2265,black comedy,1247207399 +122150,2265,Chevy Chase,1247207395 +122150,2265,John Candy,1247207392 +122150,2301,goofy,1247206952 +122150,2301,Mel Brooks,1247205679 +122150,2301,Nudity (Topless - Brief),1247206948 +122150,2423,Classic,1247207412 +122150,2716,Bill Murray,1247206878 +122150,2716,ghosts,1247206864 +122150,2716,horror comedy,1247206899 +122150,2716,New York City,1247206917 +122150,2716,nyc,1247206900 +122150,2716,occult technology,1247206875 +122150,2716,paranormal,1247206867 +122150,2716,Rick Moranis,1247206869 +122150,2716,saturday night live,1247206886 +122150,2716,sci-fi,1247206906 +122150,2716,Sigourney Weaver,1247206908 +122150,2716,THEATER,1247206894 +122150,3949,based on a book,1247207504 +122150,3949,drugs,1247207499 +122150,3949,psychology,1247207501 +122150,4873,drugs,1247207458 +122150,5773,John Belushi,1247206527 +122150,8622,anti-Bush,1247207100 +122150,8622,iraq,1247207106 +122150,8622,Iraq War,1247207112 +122150,8622,political,1247207117 +122150,8874,parody,1247207472 +122150,26555,Chevy Chase,1247207455 +122150,63082,nonlinear,1247207363 +122150,64614,revenge,1247207516 +122150,64839,identity crisis,1247207462 +122161,296,action,1449843173 +122161,296,bruce willis,1449843164 +122161,296,comedy,1449843194 +122161,296,crime,1449843180 +122161,296,cult film,1449843189 +122161,296,violent,1449843185 +122179,1249,action,1208717250 +122179,1249,assassins,1208717243 +122179,1249,foreign,1208717232 +122179,1249,remade,1208717255 +122188,31123,french,1421526294 +122188,31123,hilarious,1421526294 +122188,31123,very funny,1421526294 +122188,37495,colorful,1423500088 +122188,37495,japanese,1423500088 +122188,37495,surrealism,1423500088 +122188,74740,let me out,1422626805 +122188,74740,maths,1422626805 +122188,74740,puzzling,1422626805 +122188,120853,short,1443034858 +122221,72641,story and Sandra,1272000017 +122241,8666,cats,1412981777 +122241,8666,super-hero,1412981766 +122253,1605,hostage,1268730674 +122253,1605,kidnapping,1268730685 +122253,1605,romance,1268730681 +122253,32587,atmospheric,1268730538 +122254,1934,government,1442500070 +122254,1934,quirky,1442500073 +122260,2453,inspiration for life,1196473998 +122260,3105,inspiration for life,1196473862 +122260,7487,writer,1198555828 +122260,43914,writer,1194215560 +122260,48043,inspiration for life,1196473953 +122271,48738,violent,1253641558 +122281,5650,Based on a TV show,1292944996 +122285,2985,superhero,1279311746 +122285,3843,campy,1279379467 +122285,3843,wtf ending,1279379472 +122285,44974,Ellen Page,1279379788 +122285,51662,Nudity (Topless),1279312114 +122285,54785,Nudity (Full Frontal),1279310996 +122285,65045,aliens,1279319378 +122285,65045,low budget,1279319376 +122285,65045,supermarket,1279319382 +122285,68237,cloning,1279379518 +122285,68237,death,1279379521 +122285,68237,death/fatality,1279379523 +122285,68237,dystopia,1279379526 +122285,68237,interesting,1279379543 +122285,68237,psychology,1279379533 +122285,68237,Sam Rockwell,1279379529 +122285,68237,Sci-fi,1279379531 +122285,68237,science,1279379540 +122285,68237,solitude,1279379534 +122285,68237,space,1279379536 +122285,68237,technology,1279379538 +122285,72998,James Cameron,1279310588 +122285,72998,sci-fi,1279310605 +122285,72998,Sigourney Weaver,1279310609 +122315,260,classic sci-fi,1439803574 +122315,260,space opera,1439803592 +122315,55908,intellectual,1439803859 +122315,55908,intelligent,1439803866 +122315,55908,philosophical,1439803848 +122315,55908,thought-provoking,1439803852 +122315,55908,unique,1439803841 +122315,68237,isolation,1439803898 +122315,68237,solitude,1439803911 +122329,2858,kevin spacey,1440354550 +122329,2858,thought-provoking,1440354561 +122329,5605,Scotland,1440611877 +122329,93721,hard work,1440611847 +122344,2329,amazing photography,1199737337 +122344,2329,super interesting,1199737332 +122375,260,good for kids,1436560279 +122375,260,hero's journey,1436560271 +122375,293,friendship,1436561651 +122375,293,touching,1436561660 +122375,3246,inspiring,1436561740 +122380,98056,depress,1439781312 +122380,98056,French,1439781285 +122380,98056,Sad,1439781299 +122380,98056,sorrow,1439781306 +122426,260,action,1433773887 +122426,260,sci-fi,1433773878 +122436,98809,based on a book,1452862541 +122436,98809,fantasy,1452862553 +122436,98809,magic,1452862550 +122440,2580,black comedy,1355217183 +122440,2580,comedy,1355217186 +122440,26974,Bizarre,1349771545 +122440,26974,SUBURBAN DYSFUNCTION,1349771536 +122440,26974,youth gone wild,1349771548 +122445,103688,cliche,1453303019 +122445,103688,Horror,1453303024 +122445,103688,predictable,1453303014 +122445,103688,supernatural,1453303029 +122459,344,goofy,1258875057 +122459,344,Jim Carrey being Jim Carrey,1258875082 +122459,344,silly fun,1258875073 +122459,555,Patricia Arquette,1414541235 +122459,555,violent,1414541228 +122459,904,Hitchcock,1424370540 +122459,1136,bizarre ending,1258875344 +122459,1136,british comedy,1258875331 +122459,1136,hilarious,1258875351 +122459,1136,satire,1258875335 +122459,1136,satirical,1258875339 +122459,1136,Terry Gilliam,1258875354 +122459,1199,surreal,1421610366 +122459,1199,Terry Gilliam,1421610378 +122459,1199,weird,1421610359 +122459,1225,classical music,1258875000 +122459,1225,historical,1258874995 +122459,1225,mozart,1258875010 +122459,1225,music,1258874986 +122459,1246,Robin Williams,1258874887 +122459,1347,death scenes,1271840928 +122459,1347,Freddy Crueger,1271840917 +122459,1347,Johnny Depp,1271840909 +122459,1702,Robin Williams,1258874791 +122459,1884,drugs,1258875375 +122459,1884,hallucinatory,1258875381 +122459,1884,satirical,1258875389 +122459,1884,Terry Gilliam,1258875394 +122459,2160,Antichrist,1258756035 +122459,2160,based on a book,1258756082 +122459,2160,based on book,1258756076 +122459,2160,Mia Farrow,1258756064 +122459,2160,Roman Polanski,1258756039 +122459,2160,satan,1258756050 +122459,2160,scary,1405651001 +122459,2160,WITCHCRAFT,1258756053 +122459,2278,car chase,1258875291 +122459,2278,Jean Reno,1258875306 +122459,2278,Robert De Niro,1258875298 +122459,2354,Based on a cartoon,1258874834 +122459,2762,Atmospheric,1258875027 +122459,2762,ghosts,1258875047 +122459,2762,surprise ending,1258875041 +122459,2762,twist ending,1258875038 +122459,3498,disturbing,1265497508 +122459,3527,aliens,1258874957 +122459,3527,Arnold Schwarzenegger,1258874961 +122459,3527,scifi cult,1258874965 +122459,3677,photography,1374769490 +122459,4754,cult film,1269570284 +122459,4754,Nudity (Topless - Notable),1269570295 +122459,4754,pagan,1269570279 +122459,4754,sexual,1269570302 +122459,4754,twist ending,1269570306 +122459,6503,Drew Barrymore,1258874744 +122459,26048,drama,1265520814 +122459,26048,japanese,1265520801 +122459,26048,war,1265520807 +122459,26631,author:Lewis Carroll,1275968297 +122459,26631,miniaturization,1275968299 +122459,26631,stop motion,1275968302 +122459,27002,Tom Hanks,1258863865 +122459,44671,aliens,1424183494 +122459,44671,surreal,1424183494 +122459,44671,werner herzog,1424183494 +122459,66665,slow,1257558865 +122459,71304,vampires,1258756652 +122459,77658,astronomy,1281334629 +122459,77658,Carl Sagan,1281334634 +122459,77658,free to download,1281334639 +122459,77658,science,1281334647 +122459,82703,vampires,1444660193 +122459,112552,music,1428522437 +122459,112552,musicians,1428522443 +122459,114758,hackers,1414552716 +122459,114758,nudity (topless),1414552713 +122459,114758,Sasha Grey,1414552754 +122480,4144,Wong Kar Wai,1444919176 +122484,260,good for kids,1438832763 +122484,260,space,1438832773 +122490,260,space,1443914589 +122494,94810,androids,1429465919 +122494,94810,artificial intelligence,1429465919 +122494,94810,family,1429465919 +122517,891,slasher,1177423706 +122517,1347,slasher,1177423859 +122517,1969,slasher,1177423857 +122517,1970,slasher,1177423849 +122517,1971,slasher,1177423852 +122517,1972,slasher,1177423854 +122517,1974,slasher,1177423522 +122517,1975,slasher,1177423716 +122517,1976,slasher,1177423719 +122517,1977,slasher,1177423737 +122517,1978,slasher,1177423734 +122517,1979,slasher,1177423724 +122517,1981,slasher,1177423731 +122517,1982,slasher,1177423687 +122517,1983,slasher,1177423697 +122517,1985,slasher,1177423690 +122517,1986,slasher,1177423694 +122517,2107,slasher,1177423700 +122517,5323,slasher,1177423794 +122517,5323,space,1177423796 +122517,5476,slasher,1177423703 +122517,5691,slasher,1177423791 +122517,5697,slasher,1177423953 +122517,5766,slasher,1177423936 +122517,6615,slasher,1177423802 +122546,260,classic sci-fi,1440064287 +122546,260,fun,1440064265 +122572,260,classic,1433566122 +122572,260,epic,1433566127 +122630,109487,makes you think,1421681251 +122630,109487,space,1421681251 +122630,109487,special effects,1421681251 +122630,113521,adult humor,1424630618 +122630,113521,cam gigandet,1424630618 +122630,113521,funny,1424630618 +122630,117726,funny,1423246299 +122630,117726,russell brand,1423246299 +122630,117726,thought-provoking,1423246299 +122646,11,Romance,1286207849 +122646,74,predictable,1344119245 +122646,356,classic,1286062598 +122646,356,running,1286062591 +122646,356,Tom Hanks,1286062583 +122646,377,Bechdel Test:Fail,1286214272 +122646,377,Keanu Reeves,1286214260 +122646,377,Sandra Bullock,1286214262 +122646,440,Sigourney Weaver,1286206702 +122646,541,sci-fi,1286214250 +122646,860,Armin Rohde,1286214719 +122646,860,Joachim Król,1286214716 +122646,860,Sönke Wortmann,1286214711 +122646,860,Til Schweiger,1286214714 +122646,1059,Amazing Cinematography,1286205527 +122646,1059,Claire Danes,1286205522 +122646,1059,Leonardo DiCaprio,1286205530 +122646,1059,shakespeare,1286205514 +122646,1059,updated classics,1286205520 +122646,1513,Janeane Garofalo,1286490464 +122646,1513,Mira Sorvino,1286490461 +122646,1704,Matt Damon,1286207038 +122646,1704,Robin Williams,1286207042 +122646,1727,Robert Redford,1286214027 +122646,1816,Heather Graham,1286572645 +122646,1895,Ethan Embry,1287012743 +122646,1895,Teen movie,1287012742 +122646,1897,beautiful,1290024688 +122646,1968,high school,1286207921 +122646,2396,Ben Affleck,1286205442 +122646,2396,Gwyneth Paltrow,1286205440 +122646,2396,love story,1286205447 +122646,2396,romance,1286205451 +122646,2396,Shakespeare,1286205453 +122646,2431,Monica Potter,1296639716 +122646,2431,Robin Williams,1296639630 +122646,2572,Heath Ledger,1286208941 +122646,2572,Julia Stiles,1286208937 +122646,2572,shakespeare,1286208943 +122646,2599,dark comedy,1286206762 +122646,2599,lesbian,1286206765 +122646,2599,politics,1286206771 +122646,2599,Reese Witherspoon,1286206764 +122646,2600,alternate reality,1286206838 +122646,2600,David Cronenberg,1286206842 +122646,2600,Jennifer Jason Leigh,1286206846 +122646,2600,surreal,1286206851 +122646,2600,virtual reality,1286206849 +122646,2724,Richard Gere,1285003325 +122646,2959,action,1286205203 +122646,2959,Brad Pitt,1286205185 +122646,2959,philosophy,1286205195 +122646,2959,surreal,1286205199 +122646,2959,twist ending,1286205188 +122646,2959,violence,1286205189 +122646,3210,Jennifer Jason Leigh,1286206895 +122646,3210,Nicolas Cage,1286206900 +122646,3210,Sean Penn,1286206901 +122646,3257,romance,1286207869 +122646,3536,Ben Stiller,1286207224 +122646,3536,Jenna Elfman,1286207222 +122646,3743,Claire Forlani,1286051644 +122646,4007,Charlie Sheen,1287352863 +122646,4007,Daryl Hannah,1287353325 +122646,4007,Michael Douglas,1287352883 +122646,4054,Julia Stiles,1286207770 +122646,4054,romance,1286207772 +122646,4069,Jennifer Lopez,1285003196 +122646,4168,Ben Foster,1286492057 +122646,4168,Kirsten Dunst,1286491804 +122646,4168,Melissa Sagemiller,1286491828 +122646,4168,Shakespeare,1286491839 +122646,4345,Hollywood,1286205684 +122646,4345,Jennifer Jason Leigh,1286205680 +122646,4372,Kirsten Dunst,1286213098 +122646,4381,comedy,1286214657 +122646,4381,Gérard Depardieu,1286214661 +122646,4389,Bechdel Test:Pass,1285017419 +122646,4389,lesbian,1285017410 +122646,4389,Mischa Barton,1285017411 +122646,4389,Piper Perabo,1285017410 +122646,4447,Reese Witherspoon,1286213347 +122646,4782,Brittany Murphy,1286617241 +122646,4782,dating,1286617255 +122646,4782,Edward Burns,1286617244 +122646,4782,Heather Graham,1286617250 +122646,4963,George Clooney,1284997736 +122646,4963,heist,1284997744 +122646,4963,Julia Roberts,1284997746 +122646,4963,Matt Damon,1284997751 +122646,4965,Stockard Channing,1287783350 +122646,5418,Franka Potente,1286207906 +122646,5418,Matt Damon,1286207900 +122646,5524,Kate Bosworth,1286135490 +122646,5524,predictable,1286135499 +122646,5524,surfing,1286135493 +122646,5524,teen,1286135502 +122646,5525,Martina Gedeck,1286212975 +122646,5525,Sandra Nettelbeck,1286212988 +122646,5525,soundtrack,1286212997 +122646,5620,Reese Witherspoon,1285003309 +122646,5620,romantic comedy,1285003310 +122646,5633,Cate Blanchett,1286214945 +122646,5633,Giovanni Ribisi,1286214947 +122646,5633,Tom Tykwer,1286214956 +122646,5667,Alexis Bledel,1292882142 +122646,5667,coming of age,1292882145 +122646,5668,Michelle Pfeiffer,1286214833 +122646,5668,Robin Wright Penn,1286214832 +122646,5957,Hugh Grant,1285003032 +122646,5957,Romance,1285003146 +122646,5957,Sandra Bullock,1285003039 +122646,6006,Ashton Kutcher,1292711533 +122646,6006,Brittany Murphy,1292711529 +122646,6155,Kate Hudson,1285003126 +122646,6155,Matthew McConaughey,1285003127 +122646,6215,Frances McDormand,1286207251 +122646,6215,Kate Beckinsale,1286207247 +122646,6215,Lisa Cholodenko,1286207261 +122646,6215,Natascha McElhon,1286207271 +122646,6215,rock and roll,1286207274 +122646,6218,football,1296856429 +122646,6218,Keira Knightley,1296856423 +122646,6238,Andie MacDowell,1286214633 +122646,6238,Gérard Depardieu,1286214638 +122646,6287,Adam Sandler,1286214220 +122646,6287,Jack Nicholson,1286214222 +122646,6292,Ellen Page,1289678546 +122646,6292,Molly Parker,1289678549 +122646,6373,comedy,1286205867 +122646,6373,Jennifer Aniston,1286205866 +122646,6373,Morgan Freeman,1286205870 +122646,6378,Charlize Theron,1286208435 +122646,6619,Brittany Murphy,1286208645 +122646,6867,depression,1284997363 +122646,6867,loneliness,1284997354 +122646,6867,small town,1284997371 +122646,6942,Billy Bob Thornton,1286213380 +122646,6942,Keira Knightley,1286213382 +122646,7024,BFI modern classic,1286213842 +122646,7024,Pier Paolo Pasolini,1286213836 +122646,7034,coming of age,1285016801 +122646,7034,lesbian,1285016801 +122646,7034,small town,1285016806 +122646,7161,Piper Perabo,1286206246 +122646,7173,Ben Stiller,1286212788 +122646,7173,Debra Messing,1286212796 +122646,7173,jennifer aniston,1286212801 +122646,7371,Lars von Trier,1286214890 +122646,7371,Nicole Kidman,1286214893 +122646,7371,social commentary,1286214895 +122646,7444,Jennifer Garner,1286050880 +122646,7444,Mark Ruffalo,1286050884 +122646,7444,romance,1286050886 +122646,7450,Julianne Moore,1285003116 +122646,7450,Pierce Brosnan,1285003117 +122646,8366,Jena Malone,1286213906 +122646,8366,Mandy Moore,1286213916 +122646,8366,Mary-Louise Parker,1286213909 +122646,8665,Franka Potente,1286207944 +122646,8665,Julia Stiles,1286207945 +122646,8665,Matt Damon,1286207944 +122646,8866,Kirsten Dunst,1286214202 +122646,8866,romantic,1286214205 +122646,8869,Katie Holmes,1286206961 +122646,8869,president,1286206963 +122646,8910,satire,1286214880 +122646,8968,Don Cheadle,1284997399 +122646,8968,Salma Hayek,1284997397 +122646,8968,thief,1284997393 +122646,8984,Catherine Zeta-Jones,1284997622 +122646,8984,George Clooney,1284997603 +122646,8984,Julia Roberts,1284997616 +122646,8984,Matt Damon,1284997613 +122646,8984,Robbery,1284997611 +122646,26237,classic,1286208818 +122646,26237,great cinematography,1286208828 +122646,26237,Michelangelo Antonioni,1286208804 +122646,26237,Pink Floyd,1286208810 +122646,27647,lesbian,1286205548 +122646,27647,love story,1286205495 +122646,27805,Kimberly Williams,1285065131 +122646,27805,Patrick Dempsey,1285065134 +122646,27888,indecent proposal,1286915065 +122646,27888,Neve Campbell,1286915056 +122646,27888,new york,1286915060 +122646,27888,slow,1286915062 +122646,30898,Evan Rachel Wood,1286208632 +122646,30898,Kevin Costner,1286208674 +122646,31221,bad acting,1286206798 +122646,31221,Jennifer Garner,1286206796 +122646,31408,Marco Kreuzpaintner,1286213877 +122646,31408,Robert Stadlober,1286213884 +122646,31433,Debra Messing,1286208696 +122646,31433,Dermot Mulroney,1286208701 +122646,31433,wedding,1284996926 +122646,31685,Eva Mendes,1285003159 +122646,31685,Kevin James,1285003171 +122646,31685,Will Smith,1285003160 +122646,32300,Angela Robinson,1296125095 +122646,32300,Jordana Brewster,1296125071 +122646,32300,lesbian,1296125064 +122646,32300,parody,1296125067 +122646,32300,Sara Foster,1296125095 +122646,33138,Ellen Barkin,1286207535 +122646,33145,Amanda Peet,1296492792 +122646,33145,Ashton Kutcher,1296492796 +122646,33145,happy ending,1296492801 +122646,33166,Paul Haggis,1286206672 +122646,33166,Sandra Bullock,1286206656 +122646,33166,social commentary,1286206658 +122646,33649,lesbian,1286205381 +122646,33649,Wonderful Asian Film That Shows Why We Shouldn't Hide Who We Really Are,1286205399 +122646,34162,Owen Wilson,1286214174 +122646,34162,Rachel McAdams,1286214176 +122646,34162,Vince Vaughn,1286214172 +122646,35957,non-bloody thriller,1286207745 +122646,35957,Rachel McAdams,1286207729 +122646,35957,suspense,1286207741 +122646,36525,Mark Ruffalo,1286207191 +122646,36525,Reese Witherspoon,1286207189 +122646,36525,Romance,1286207196 +122646,39449,Meryl Streep,1286207578 +122646,39449,therapist,1286207590 +122646,39449,Uma Thurman,1286207574 +122646,40629,adaptation,1286213959 +122646,40629,Classic,1286213958 +122646,40629,Jane Austen,1286213963 +122646,40629,Keira Knightley,1286213955 +122646,41573,Claire Danes,1286207977 +122646,41573,Diane Keaton,1286207979 +122646,41573,Rachel McAdams,1286207981 +122646,42009,Piper Perabo,1286206269 +122646,42736,lesbian,1285016452 +122646,43744,lesbian,1286062627 +122646,43744,Piper Perabo,1286062625 +122646,43744,queer,1286062630 +122646,43744,Romance,1286062632 +122646,43914,Will Ferrell,1286208788 +122646,43914,writer,1286208785 +122646,43914,Zooey Deschanel,1286208735 +122646,44974,Ellen Page,1287855573 +122646,44974,Sandra Oh,1287855575 +122646,44974,tense,1287855578 +122646,45221,gymnastics,1286269426 +122646,45221,Jeff Bridges,1286269431 +122646,45221,Missy Peregrym,1286269433 +122646,45221,sexy girls,1286269433 +122646,45672,Adam Sandler,1286206569 +122646,45672,cheesy,1286206570 +122646,45672,Kate Beckinsale,1286206567 +122646,45720,Anne Hathaway,1286214004 +122646,45720,Bechdel Test:Pass,1286214010 +122646,45720,Meryl Streep,1286213999 +122646,45720,New York,1286214005 +122646,45720,Stanley Tucci,1286214007 +122646,46083,Art,1286207357 +122646,46083,Björk,1286207354 +122646,46083,Matthew Barney,1286207347 +122646,49286,Cameron Diaz,1286208080 +122646,49286,Kate Winslet,1286208070 +122646,49793,Kimberly Williams,1285861252 +122646,49793,Matthew McConaughey,1285861271 +122646,49793,true story,1285861258 +122646,50792,Jennifer Garner,1286213068 +122646,50802,Diane Keaton,1286205306 +122646,50802,Lauren Graham,1286205300 +122646,50802,Mandy Moore,1286205301 +122646,50802,Piper Perabo,1286205298 +122646,51084,Drew Barrymore,1285002991 +122646,51084,Hugh Grant,1285002977 +122646,51084,pop,1285002988 +122646,51094,Heather Graham,1286206088 +122646,51094,lesbian,1286206100 +122646,51931,9/11,1285103253 +122646,51931,adam sandler,1285103257 +122646,51931,Liv Tyler,1285103257 +122646,51931,post-traumatic stress disorder,1285103268 +122646,52545,lesbian,1286207607 +122646,53322,Brad Pitt,1284997644 +122646,53322,George Clooney,1284997635 +122646,53322,Matt Damon,1284997641 +122646,53322,smart,1284997640 +122646,53993,Lauren Graham,1286205899 +122646,53993,Steve Carell,1286205905 +122646,55052,Keira Knightley,1286212848 +122646,55052,war,1286212850 +122646,55451,Bechdel Test:Pass,1286214068 +122646,55451,Emily Blunt,1286214062 +122646,55451,lesbian,1286214060 +122646,56174,depressing,1287609434 +122646,56174,religion,1287609439 +122646,56174,Will Smith,1287609421 +122646,56174,zombies,1287609422 +122646,56367,Ellen Page,1286213323 +122646,56367,Jennifer Garner,1286213327 +122646,56367,Michael Cera,1286213330 +122646,56563,modernism,1287937271 +122646,56563,typography,1287937258 +122646,56949,Katherine Heigl,1285003215 +122646,56949,romance,1285003222 +122646,56949,romantic comedy,1285003228 +122646,57669,dark comedy,1287872488 +122646,58047,Isla Fisher,1286213127 +122646,58047,Rachel Weisz,1286213131 +122646,58162,Simon Pegg,1296774569 +122646,58803,Kate Bosworth,1286208994 +122646,58803,Kevin Spacey,1286208997 +122646,58803,mathematics,1286209002 +122646,58998,Kristen Bell,1286213201 +122646,58998,Paul Rudd,1286213209 +122646,58998,romance,1286213211 +122646,59107,Evan Rachel Wood,1286208446 +122646,59107,Uma Thurman,1286208448 +122646,60074,bad script,1286207081 +122646,60074,Charlize Theron,1286207076 +122646,60074,Will Smith,1286207079 +122646,60599,Zooey Deschanel,1286206987 +122646,60641,Melissa George,1286062048 +122646,60857,Ellen Page,1286208579 +122646,60857,experimental,1286208582 +122646,61250,dumb blonde,1286361282 +122646,61250,friendship,1286361291 +122646,61250,playboy girl,1286361282 +122646,61323,Coen Brothers,1286206021 +122646,61323,dark comedy,1286206023 +122646,61323,satire,1286206028 +122646,62155,great soundtrack,1286207418 +122646,62155,Kat Dennings,1286207544 +122646,62155,Michael Cera,1286207422 +122646,62155,New York City,1286207425 +122646,62265,Isabella Rossellini,1286207819 +122646,62265,Uma Thurman,1286207817 +122646,62344,Anne Hathaway,1286207641 +122646,62344,dysfunctional family,1286207645 +122646,62434,Sex Comedy,1286208855 +122646,62434,Sexual Humor,1286208853 +122646,62511,Philip Seymour Hoffman,1286207804 +122646,62511,surreal,1286207798 +122646,62511,Theater,1286207800 +122646,62796,Kristen Bell,1286206922 +122646,62796,Nora Zehetner,1286206925 +122646,64032,Christmas,1293141814 +122646,64032,Reese Witherspoon,1293141806 +122646,64278,Film Theory & Criticism,1286208510 +122646,64278,Zizek,1286208508 +122646,64969,Jim carrey,1286208753 +122646,64969,romantic comedy,1286208751 +122646,64969,Zooey Deschanel,1286208749 +122646,65088,Keri Russell,1287401926 +122646,65230,animal:dog,1285706890 +122646,65230,dogs,1285706897 +122646,65230,Owen Wilson,1285706887 +122646,67193,Clive Owen,1286205101 +122646,67193,Julia Roberts,1286205101 +122646,67193,marriage,1286205110 +122646,67839,Rachel McAdams,1286208485 +122646,67839,soldier,1286208492 +122646,68135,high school,1287007375 +122646,68135,Zac Efron,1287007368 +122646,68157,black comedy,1286213303 +122646,68157,Brad Pitt,1286213296 +122646,68157,great soundtrack,1286213300 +122646,68157,Quentin Tarantino,1286213293 +122646,68159,Ben Affleck,1289675174 +122646,68159,Rachel McAdams,1289675171 +122646,68159,Robin Wright Penn,1289675185 +122646,68159,Russell Crowe,1289675178 +122646,69253,predictable,1295022713 +122646,69606,Jennifer Garner,1286207065 +122646,69757,romance,1284997333 +122646,69757,Zooey Deschanel,1284997308 +122646,70133,Jeff Daniels,1286649319 +122646,70133,Lauren Graham,1286649230 +122646,70133,Olivia Thirlby,1286649549 +122646,70183,Katherine Heigl,1286214082 +122646,70183,ridiculous end,1286214085 +122646,70562,Brittany Murphy,1332116253 +122646,71156,Ewan McGregor,1286214688 +122646,71156,George Clooney,1286214686 +122646,71156,Kevin Spacey,1286214691 +122646,71520,Jennifer Garner,1286208382 +122646,71520,Tina Fey,1286208384 +122646,71668,Kristen Bell,1286206592 +122646,71668,Malin Akerman,1286206615 +122646,71668,Vince Vaughn,1286206597 +122646,71902,Anne Heche,1296078237 +122646,71902,Ashton Kutcher,1296078242 +122646,72011,Bechdel Test:Pass,1286214144 +122646,72011,George Clooney,1286214138 +122646,72011,Jason Reitman,1286214157 +122646,72605,Jake Gyllenhaal,1296730015 +122646,72605,Natalie Portman,1296730021 +122646,72605,Tobey Maguire,1296730023 +122646,72720,beautiful cinematography,1286205802 +122646,72720,Colin Firth,1286205790 +122646,72720,Ginnifer Goodwin,1286205794 +122646,72720,good cinematography,1286205799 +122646,72720,Julianne Moore,1286205787 +122646,72919,Hugh Grant,1286206739 +122646,72919,Sarah Jessica Parker,1286206741 +122646,73015,Alec Baldwin,1286205326 +122646,73015,Meryl Streep,1286205318 +122646,73135,Zooey Deschanel,1286208019 +122646,74450,Anne Hathaway,1286205578 +122646,74450,Jennifer Garner,1286205569 +122646,74450,Jessica Biel,1286205573 +122646,74488,Alicja Bachleda-Curus,1287698802 +122646,74488,Colin Farrell,1287698808 +122646,74488,Neil Jordan,1287698814 +122646,74688,Amanda Seyfried,1290445051 +122646,78209,Elisabeth Moss,1286748836 +122646,78209,Rose Byrne,1286748848 +122646,78209,Russell Brand,1286748840 +122646,78316,Amanda Seyfried,1286207305 +122646,78653,Birgit Minichmayr,1286205159 +122646,78653,urlaub,1286205166 +122646,79185,Cameron Diaz,1290445083 +122646,79185,Tom Cruise,1290445089 +122646,79185,unrealistic,1290445092 +122646,79242,Lisa Cholodenko,1290031329 +122646,79590,Catherine Zeta-Jones,1286208546 +122646,79590,romance,1286208557 +122646,79848,Hilary Duff,1288016583 +122646,79848,Olivia Thirlby,1288016586 +122646,79884,Christian Ulmen,1286213181 +122646,79884,Nora Tschirner,1286213179 +122646,80166,Jason Bateman,1287855670 +122646,80166,Jennifer Aniston,1287855663 +122646,80775,countryside,1296431350 +122646,80775,Gemma Arterton,1296431294 +122646,80775,good acting,1296431271 +122646,80775,romantic comedy,1296431270 +122646,80775,small town,1296431354 +122646,80820,alyssa milano,1296512369 +122646,80820,twist ending,1296512363 +122646,80820,worst ending ever,1296512353 +122646,80858,bad script,1297278636 +122646,80858,dumb,1297278557 +122646,80858,Kristen Bell,1297278651 +122646,80858,predictable,1297278656 +122646,82167,Anne Hathaway,1296592220 +122646,82167,happy ending,1296592242 +122646,88785,Leslie Mann,1337591159 +122646,88785,Olivia Wilde,1337591162 +122646,89492,baseball,1331670827 +122646,89492,Brad Pitt,1331670826 +122646,89492,math,1331670842 +122646,89492,Philip Seymour Hoffman,1331670835 +122646,89492,Robin Wright,1331670867 +122646,91658,Daniel Craig,1331670748 +122646,91658,remake,1331670761 +122646,92509,amnesia,1333016087 +122646,92509,Channing Tatum,1333016113 +122646,92509,plot,1333016107 +122646,92509,Rachel McAdams,1333016100 +122650,260,Star Wars,1431542677 +122701,169,adventure,1223397571 +122701,1894,adventure,1223547852 +122701,2764,angela,1224501254 +122701,26524,crazy,1224173402 +122710,1921,paranoid,1175009340 +122710,2320,Stephen King,1175009338 +122710,36517,politics,1174413723 +122710,48598,Sigourney Weaver,1175009335 +122710,48598,Truman Capote,1175009333 +122710,53207,ClearPlay,1230086887 +122710,53207,R,1230086876 +122710,55284,ClearPlay,1217246108 +122710,63033,ClearPlay,1238113301 +122768,608,ending,1448390233 +122768,608,suspence,1448390235 +122768,608,thriller,1448390228 +122768,147768,bla,1448389679 +122769,2959,mindfuck,1451815026 +122769,79139,magic,1451814810 +122769,79139,predictable,1451814802 +122796,1036,Bruce Willis,1239390048 +122796,1206,Malcolm McDowell,1239389419 +122796,1206,Stanley Kubrick,1239389374 +122796,1213,Martin Scorsese,1239389555 +122796,1213,Ray Liotta,1239389635 +122796,1213,Robert De Niro,1239389565 +122796,1213,Samuel L. Jackson,1239389587 +122796,1617,Curtis Hanson,1239389783 +122796,1617,Danny DeVito,1239389716 +122796,1617,Guy Pearce,1239389745 +122796,1617,James Cromwell,1239389753 +122796,1617,Kevin Spacey,1239389726 +122796,1617,Kim Basinger,1239389763 +122796,1617,Russell Crowe,1239389730 +122796,2683,Heather Graham,1240093259 +122796,2683,Mike Myers,1240093245 +122796,2683,Robert Wagner,1240093318 +122796,3578,Ridley Scott,1239629933 +122796,3578,Russell Crowe,1239629919 +122796,6323,John Cusack,1239389499 +122796,6323,Ray Liotta,1239389504 +122796,6863,Jack Black,1239042201 +122796,33166,Sandra Bullock,1239826419 +122796,41569,Jack Black,1239042657 +122796,41569,Peter Jackson,1239042283 +122796,45666,Jack Black,1239041766 +122796,46347,Bruce Dickinson,1239389871 +122796,46347,Ronnie James Dio,1239390148 +122796,49396,Jack Black,1239042159 +122796,49396,Kyle Gass,1239042149 +122796,61132,Ben Stiller,1239041825 +122796,61132,Jack Black,1239041842 +122796,61132,Robert Downey Jr.,1239041909 +122796,61132,Tom Cruise,1239041882 +122808,260,epic,1443710401 +122808,260,sci-fi,1443710398 +122822,19,One of the worst movies of all time,1306114411 +122822,19,over the top,1306114415 +122822,19,Stupid as Hell,1306114421 +122822,344,Dumb,1306114265 +122822,344,Stupid as Hell,1306114257 +122822,370,Comedy,1306114828 +122822,370,hilarious,1306114830 +122822,466,Onderbroekenlol,1306114884 +122822,586,nostalgia,1306114606 +122822,858,atmospheric,1430856792 +122822,858,classic,1430856779 +122822,858,crime,1430856948 +122822,858,Mafia,1430856782 +122822,858,New York City,1430856930 +122822,858,organized crime,1430856785 +122822,858,violence,1430856935 +122822,2278,car chase,1444388166 +122822,2278,crime,1444388139 +122822,2278,intelligent,1444388141 +122822,2278,spy thriller,1444388147 +122822,2617,archaeology,1341264282 +122822,2617,curse,1341264280 +122822,2617,Imhotep,1341264288 +122822,2617,mummy,1341264291 +122822,2716,comedy,1306114557 +122822,2716,ghosts,1306114562 +122822,2763,bowler hat,1419372367 +122822,2763,heist,1361401575 +122822,2763,millionare,1419372303 +122822,2763,museum,1361433676 +122822,2763,Nina Simone - Sinnerman,1419372481 +122822,2763,painting,1361433663 +122822,2763,son of man,1419372408 +122822,2763,son of man painting,1419372394 +122822,2763,steals,1419372320 +122822,2763,switching places,1361401805 +122822,2763,troyan horse,1361401907 +122822,2959,classic,1390775932 +122822,2959,disturbing,1350489820 +122822,2959,mindfuck,1350489839 +122822,2959,psychology,1350489848 +122822,2959,surreal,1350489838 +122822,2959,thought-provoking,1350489836 +122822,3300,aliens,1352765871 +122822,3300,anti-hero,1352765815 +122822,3300,futuristic,1352765822 +122822,3300,poor character development,1352765827 +122822,3300,Riddick,1352765816 +122822,3409,cheesiness,1390855386 +122822,3409,cool concept,1390855395 +122822,3409,gore,1390855399 +122822,3753,Mel Gibson,1340817521 +122822,3869,I laughed continuosly throughout this film,1306114913 +122822,3949,atmospheric,1343515814 +122822,3949,dark,1343515825 +122822,3949,disturbing,1343515828 +122822,4446,alien invasion,1386104813 +122822,4446,computer animation,1386104804 +122822,4446,equilibrium,1386104898 +122822,4446,ghosts,1386104898 +122822,4720,ghosts,1341176684 +122822,4720,surprise ending,1341176660 +122822,4720,twist ending,1341176657 +122822,4756,boring,1446324864 +122822,4756,horrible costumes,1446325113 +122822,4756,terrible acting,1446324679 +122822,4756,terrible plot,1446324681 +122822,5128,great soundtrack,1339882376 +122822,5294,mission from God,1390830800 +122822,5294,moraly questionable,1390830809 +122822,5294,serial killer,1390830785 +122822,5294,twist ending,1390830788 +122822,5294,Underrated,1390830793 +122822,5418,assassin,1340829907 +122822,5418,based on a book,1340829946 +122822,5418,espionage,1340829958 +122822,5463,action,1372061393 +122822,5463,bad plot,1372061338 +122822,5463,dragons,1372061382 +122822,5463,Post apocalyptic,1372061368 +122822,5463,post-apocalyptic,1372061363 +122822,5463,skydiving,1372061356 +122822,5502,Alien Invasion,1341264421 +122822,5502,aliens,1341264423 +122822,5502,horror,1341264426 +122822,5502,Mel Gibson,1341264432 +122822,5502,sci-fi,1341264438 +122822,5502,silly,1341264454 +122822,5541,Onderbroekenlol,1306114968 +122822,5541,parody,1306114983 +122822,5679,paranormal,1344263249 +122822,5679,weird,1344263335 +122822,6365,alternate reality,1341440151 +122822,6365,Post apocalyptic,1341440156 +122822,6365,thought-provoking,1341440187 +122822,6365,virtual reality,1341440167 +122822,6768,16th century,1386352662 +122822,6768,Catholicism,1386352657 +122822,6768,christian,1386352660 +122822,6768,god,1386352674 +122822,6768,lust for power,1386352682 +122822,6768,Luther,1386352665 +122822,6768,reformation,1386352670 +122822,6768,religion,1386352667 +122822,7254,ending sucked,1341093844 +122822,7254,happy ending,1341093880 +122822,7254,nudity,1341093805 +122822,7254,thought-provoking,1341093765 +122822,7254,time travel,1341093760 +122822,7254,twist ending,1341093756 +122822,7317,american idiocy,1383691615 +122822,7317,humor for the narrow-minded,1383691475 +122822,7317,Nudity (Topless),1383691459 +122822,7361,brainwash,1391024703 +122822,7361,memory,1391025459 +122822,7361,memory loss,1391025469 +122822,7361,resistance,1391024722 +122822,7361,slow start,1309111373 +122822,8950,creepy,1417242521 +122822,8950,powerful ending,1417242501 +122822,8950,psychology,1417242526 +122822,8950,schizophrenia,1417242513 +122822,8950,twist ending,1417242496 +122822,8957,Disturbing,1342422211 +122822,8957,gore,1355699133 +122822,8957,mindfuck,1342422205 +122822,8957,serial killer,1416786301 +122822,8957,surprise ending,1342422207 +122822,8957,torture,1416786307 +122822,8957,twist ending,1416786303 +122822,30850,anti-Semitism,1345536772 +122822,30850,Jews,1345536813 +122822,30850,Shakespeare,1345536949 +122822,34532,Hoodoo,1341259245 +122822,34532,magic,1341262671 +122822,34532,surreal,1341262687 +122822,34532,Twist Ending,1341256408 +122822,34532,Voodoo,1341256410 +122822,42723,brutal,1340371034 +122822,42723,disturbing,1340371038 +122822,42723,Nudity (Topless),1340371031 +122822,42723,stupid stereotypes,1340371028 +122822,42723,torture,1340371048 +122822,42723,unlikeable characters,1340371056 +122822,47952,addictive,1406784439 +122822,47952,ipswich,1406784456 +122822,47952,magic,1406784439 +122822,47952,powers,1406784439 +122822,47952,salem witch trials,1406784440 +122822,47952,superpowers,1406784440 +122822,48304,unrealistic,1311508786 +122822,48678,gore,1426928775 +122822,48678,lacks story,1426928755 +122822,48678,silly,1426928764 +122822,48943,bad sequel,1341093670 +122822,48943,predictable,1341093671 +122822,48943,time travel,1341093673 +122822,49272,espionage,1350194218 +122822,49272,James Bond,1350194213 +122822,49272,poker,1350194215 +122822,49649,audience intelligence underestimated,1343943580 +122822,49649,bad acting,1343943585 +122822,49649,cliche,1343943588 +122822,49649,destiny,1343943591 +122822,49649,dragons,1343943597 +122822,49649,predictable,1343943602 +122822,49649,teen,1343943611 +122822,52604,Anthony Hopkins,1340817637 +122822,52604,no happy ending,1340817649 +122822,52604,twist,1340817660 +122822,52604,twist ending,1340817656 +122822,53435,genital mutilation,1340371463 +122822,53435,Nudity (Full Frontal),1340378668 +122822,53435,Nudity (Topless),1340371486 +122822,53435,paranoia,1340378648 +122822,57274,spanish,1344149452 +122822,58154,costumes,1353451876 +122822,58154,dull,1353451807 +122822,58154,rushed,1353451854 +122822,59040,angel,1341264536 +122822,59040,archangel,1341264538 +122822,59040,cliche,1341264528 +122822,59040,fallen angel,1341264533 +122822,59040,low budget,1341264558 +122822,59040,poor script,1341264525 +122822,59369,car chase,1371415614 +122822,59369,CIA,1371415616 +122822,59369,espionage,1371415624 +122822,59369,father daughter relationship,1371415628 +122822,59369,happy ending,1371415671 +122822,59369,revenge,1371415652 +122822,59369,unrealistic,1371415639 +122822,60937,sequel,1371996521 +122822,60937,should'a stopped at 2,1371996519 +122822,61262,bad ending,1341262869 +122822,61262,Demon,1341262881 +122822,61262,flat Story,1341263157 +122822,61262,Gore,1341262871 +122822,61262,no nudity,1341263132 +122822,61262,Nuns,1341262900 +122822,61262,Schizophrenia,1341262875 +122822,61350,predictable,1342422132 +122822,61350,unresolved,1342422123 +122822,62376,overrated,1440796618 +122822,62376,plot holes,1440796536 +122822,62376,story,1440796550 +122822,62376,weak implementation,1440796518 +122822,67799,time travel,1391846222 +122822,67799,Twist ending,1391846185 +122822,71530,alternate reality,1340817416 +122822,72698,bad acting,1343249896 +122822,72698,beautiful scenery,1343249886 +122822,72698,slow paced,1343249855 +122822,73929,religion,1340546152 +122822,73929,underdeveloped,1340546137 +122822,74530,bad acting,1374409632 +122822,74530,childish,1374409617 +122822,74530,dialogue,1374409629 +122822,74530,predictable,1374409620 +122822,74530,silly,1374409624 +122822,77427,abduction,1386366242 +122822,77427,bad acting,1386366227 +122822,77427,body horror,1386366229 +122822,77427,disturbing,1386366232 +122822,77427,fake,1386366214 +122822,77427,illogical,1386366333 +122822,77427,science project,1386366222 +122822,77427,sick,1386366219 +122822,77427,stupid,1386366224 +122822,78349,confusing ending,1343900426 +122822,78349,experiment,1343900433 +122822,78349,group psychology,1343900435 +122822,78349,isolation,1343900438 +122822,78349,mediocre acting,1343900446 +122822,78893,acting,1340548643 +122822,78893,action choreography,1340548648 +122822,78893,audience intelligence underestimated,1340548654 +122822,78893,Avatar trilogy,1340548668 +122822,78893,characters,1340548657 +122822,78893,childish,1340548685 +122822,78893,rushed,1340548660 +122822,79868,birthmark,1429740021 +122822,79868,demon masks,1429740030 +122822,79868,demons,1429740034 +122822,79868,gang,1429740042 +122822,80363,3d,1340781153 +122822,80363,Bad direction,1340781107 +122822,80363,bad plot,1340781105 +122822,80363,childish plot,1340781110 +122822,80363,physics,1340781226 +122822,80363,silly,1340781128 +122822,80363,unrealistic,1340781135 +122822,80363,virus,1340781137 +122822,80363,zombies,1340781141 +122822,81140,6 souls,1362435495 +122822,81140,death,1362435540 +122822,81140,devil,1362435139 +122822,81140,dirt,1362435613 +122822,81140,illness,1362435128 +122822,81140,multiple personalities,1362435073 +122822,81140,murder,1362435473 +122822,81140,religion,1362435331 +122822,81140,soul extraction,1362435644 +122822,81140,soul stealing,1362435687 +122822,81140,souls,1362435078 +122822,81140,witch,1362435708 +122822,81731,12th century,1342040157 +122822,81731,Historical Fiction,1342040213 +122822,81731,medieval,1342040233 +122822,81731,Nudity (Topless),1342040241 +122822,81731,series,1342040273 +122822,82095,Alien Invasion,1386105107 +122822,82095,aliens,1386105112 +122822,82095,evil ending,1392063129 +122822,82095,Hate it or Love it,1392063135 +122822,82095,stupid ending,1386105082 +122822,82152,Beauty and the Beast,1386104632 +122822,82447,poor ending,1430301744 +122822,82447,prison camp,1430301754 +122822,82461,alternate reality,1378157988 +122822,82461,artificial intelligence,1378157991 +122822,82461,futuristic,1378157996 +122822,82461,video games,1378158007 +122822,82461,virtual reality,1378158010 +122822,83480,badwriting,1352585716 +122822,83480,Christianity,1352585710 +122822,83480,demons,1352585775 +122822,83480,exorcism,1352585704 +122822,83480,journey,1352585773 +122822,83480,knights,1352585691 +122822,83480,Nicolas Cage,1352585824 +122822,83480,plague,1352585802 +122822,83480,predictable,1352585688 +122822,83480,witch,1352585775 +122822,85056,action,1374398369 +122822,85056,superhero,1374398373 +122822,85056,the dog,1374398376 +122822,85414,parallel universe,1386534975 +122822,85414,powerful ending,1386535042 +122822,85414,time loop,1386534981 +122822,85414,time travel,1386534978 +122822,85414,twist ending,1386535012 +122822,85414,twists & turns,1386535031 +122822,85510,audience intelligence underestimated,1340545977 +122822,85510,ridiculous,1340545993 +122822,85510,stupid,1340545995 +122822,86835,church,1340474406 +122822,86835,Dimensionalized 2-D to 3-D,1340474253 +122822,86835,mindless vampires,1340474530 +122822,86835,stupid,1340476045 +122822,86835,vampires,1340474295 +122822,87232,Marvel,1340473500 +122822,87430,audience intelligence underestimated,1390160984 +122822,87430,comic book,1390160993 +122822,87430,space,1390160990 +122822,89087,assassin,1440705045 +122822,90405,corruption,1386543150 +122822,90405,future,1386543154 +122822,90405,immortality,1386543148 +122822,90405,plot holes,1386543167 +122822,90405,sci-fi,1386543152 +122822,90405,thought-provoking,1386543164 +122822,90890,Adam Sandler,1340103984 +122822,90890,multiple roles,1340103985 +122822,91104,nothing happens,1339073401 +122822,91474,funny,1379192373 +122822,91474,such potential.....such a FAIL,1379192369 +122822,91474,TERRIBLE SCRIPTING,1379192365 +122822,91500,dull,1390764520 +122822,91500,dull story,1390764520 +122822,91529,Bane's contradictory plans,1344532684 +122822,91529,Predictable,1344532693 +122822,92206,disturbing,1340386435 +122822,92206,gruesome,1340386425 +122822,92206,twist,1340386461 +122822,93840,betting,1392062966 +122822,93840,clever,1392062904 +122822,93840,dark comedy,1392062902 +122822,93840,funny,1392062907 +122822,93840,gore,1392062908 +122822,93840,killing,1392063025 +122822,93840,satire,1392062914 +122822,93840,zombies,1392062918 +122822,93982,cheesy clues,1347425858 +122822,93982,weak characters,1347425880 +122822,94018,bad science,1345536733 +122822,94018,Poor Plot,1345536731 +122822,94864,aliens,1352765627 +122822,94864,corporations,1352765738 +122822,94864,disease,1352765644 +122822,94864,exploration,1352765649 +122822,94864,scifi,1352765685 +122822,94864,self discovery,1352765762 +122822,94864,self-sacrifice,1352765692 +122822,94864,space travel,1352765681 +122822,94864,technology,1352765683 +122822,95875,aftermath of war,1352197713 +122822,95875,memory,1352197631 +122822,96079,007 (series),1360188169 +122822,96691,bad acting,1371678320 +122822,96691,bad cgi,1371678322 +122822,96691,bad dialogue,1371678325 +122822,96691,bad fights,1371678327 +122822,96691,no suspense,1371678336 +122822,96691,pointless,1371678331 +122822,97938,BORING!,1365795740 +122822,97938,talky,1365795721 +122822,98203,boring plot,1353349507 +122822,98203,ridiculous,1353349384 +122822,98243,playful,1364060053 +122822,98243,plot,1364060057 +122822,98809,adventure,1363468533 +122822,98809,beautiful scenery,1363468530 +122822,98809,fantasy world,1363468536 +122822,98809,Tolkien,1363468526 +122822,99296,cruelty,1408303426 +122822,99296,game,1408303447 +122822,99296,good acting,1408303778 +122822,99296,pretentious,1408303374 +122822,99296,Sad ending,1408303378 +122822,99296,sadistic,1408303638 +122822,99296,silly but fun,1408303482 +122822,99296,stupid,1408303390 +122822,99296,suspensful,1408303392 +122822,99728,Action,1365273526 +122822,99728,cops,1365273522 +122822,99728,Likeable cast,1365273505 +122822,99728,no character depth,1365273511 +122822,99728,terrible script,1365273517 +122822,99800,Duct tape,1429472156 +122822,100302,evil corporation,1382301398 +122822,100302,love story,1382301396 +122822,100397,short films,1361820307 +122822,101164,abduction,1362815022 +122822,101164,abuse,1362814841 +122822,101164,memory,1362814793 +122822,101164,reincarnation,1362814756 +122822,101864,future,1378709453 +122822,101864,post-apocalyptic,1378709456 +122822,101864,space,1378709451 +122822,101864,technology,1378709447 +122822,101864,twists & turns,1378709476 +122822,101864,weird,1378709458 +122822,101864,weird ending,1378709458 +122822,102072,black ops,1373525039 +122822,102072,CIA,1373525041 +122822,103228,aliens,1385537668 +122822,103228,combot,1385537682 +122822,103228,dimensions,1385537735 +122822,103228,giant robots,1385537673 +122822,103228,happy ending,1385537784 +122822,103228,nuclear bomb,1385537776 +122822,103228,visually appealing,1385537794 +122822,103253,cliche characters,1385414496 +122822,103253,cyborgs,1385414500 +122822,103253,future,1385414530 +122822,103253,shallow characters,1385414509 +122822,103282,bad screenplay,1371996795 +122822,103282,bad script,1371996788 +122822,103282,boring,1371998267 +122822,103282,dragons,1371998698 +122822,103282,orcs,1371996758 +122822,103282,parasitic dragons,1371996747 +122822,103282,ridiculous,1371998257 +122822,104243,aliens,1383644927 +122822,104243,couldn't bear to watch it all,1383645302 +122822,104243,Garbage,1383644923 +122822,104243,plot,1383644971 +122822,104312,bad plot,1381578663 +122822,104312,cliche,1381578665 +122822,104312,magic,1381578695 +122822,104312,plot holes,1381578667 +122822,104312,shadow hunters,1381578691 +122822,104841,bad science,1389538246 +122822,104841,cheesy,1389538249 +122822,104841,Didn't finish,1389538337 +122822,104841,Hollow,1389538262 +122822,104841,overrated,1389538252 +122822,106002,alien invasion,1389962328 +122822,106002,aliens,1390049915 +122822,106002,deception,1389962331 +122822,106002,games,1389962331 +122822,106002,genocide,1389964066 +122822,106002,overpopulation,1390049925 +122822,106002,training,1389962556 +122822,106002,war,1389962328 +122822,106487,acting,1416785503 +122822,106487,based on a book,1416785478 +122822,106487,dystopia,1416785508 +122822,106487,visually appealing,1416785483 +122822,106489,adapted from:book,1389564152 +122822,106489,dragon,1389564109 +122822,106489,expected more,1389564181 +122822,106489,weak story,1389564102 +122822,106559,B rated movie,1429480407 +122822,106559,hot bodies,1429480460 +122822,106559,ridiculous plot,1429480374 +122822,106559,sex,1429480441 +122822,106559,wandering dick,1429480439 +122822,108243,atmosphere,1398114002 +122822,108243,cult,1398114121 +122822,108243,dark,1398114093 +122822,108243,First Person Movie,1398114060 +122822,108243,pregnancy,1398113988 +122822,108243,shaky camera,1398113990 +122822,108243,symbolism,1398114035 +122822,111759,ending,1417379275 +122822,111759,original plot,1417379288 +122822,111759,repeating day,1417379261 +122822,111759,sci-fi,1417379283 +122822,111759,time loop,1417379294 +122822,111781,Action,1443304864 +122822,111781,tedious,1443304861 +122822,113769,anubis,1426460378 +122822,113769,disease,1426460478 +122822,113769,fungus,1426460482 +122822,113769,"good start, bad ending",1426460370 +122822,113769,grave robbing,1426460412 +122822,113769,inaccuracies,1426460393 +122822,113769,no escape,1426460491 +122822,113769,poor excecution,1426460799 +122822,113769,poor story,1426460806 +122822,114180,plot holes,1418453540 +122822,114180,survival,1418453584 +122822,115569,awkward guy,1417650134 +122822,115569,gripping,1417650070 +122822,115569,trap,1417650107 +122822,115569,unetical,1417650199 +122822,117893,weak story,1417391860 +122822,119655,dragon,1427007726 +122822,119655,knight,1427007704 +122822,119655,rushed,1427007691 +122822,119655,shallow story,1427007824 +122822,119655,witch,1427007712 +122822,127096,bad science,1431970605 +122822,127096,camera,1431970587 +122822,127096,disappointing,1431970500 +122822,127096,time travel,1431970505 +122822,130490,sequel divergent,1429467541 +122822,138610,at night,1439750264 +122822,138610,atmospheric,1439750490 +122822,138610,decent movie,1439750387 +122822,138610,found footage,1439750338 +122822,138610,jump scares,1439750323 +122822,138610,lame ending,1439750320 +122822,138610,scary,1439750348 +122822,138610,survival horror,1439750352 +122822,138610,unnerving,1439750324 +122832,3300,Vin Diesel,1146205083 +122832,4369,Vin Diesel,1146205097 +122832,8784,quirky,1146539407 +122832,32017,Vin Diesel,1146205069 +122849,7361,bittersweet,1300233451 +122849,7361,quirky,1300233474 +122849,59369,bad writing,1300234284 +122849,111360,dumb science,1423359922 +122849,111360,Scarlett Johansson,1423359916 +122849,115149,Revenge,1423359846 +122853,260,old movie,1434845559 +122858,7566,Up series,1204137370 +122878,32,complicated,1443347326 +122878,32,post-apocalyptic,1443347300 +122878,32,time travel,1443347276 +122878,318,based on a book,1209584441 +122878,318,friendship,1209322318 +122878,318,hope,1209322318 +122878,318,Justice,1209584540 +122878,318,prison,1209322241 +122878,318,United States,1209864688 +122878,356,American history,1209482984 +122878,356,history,1211139298 +122878,356,United States,1211139287 +122878,356,Vietnam war,1211139234 +122878,356,war,1211139263 +122878,480,dinosaurs,1209482995 +122878,527,history,1209752592 +122878,527,Holocaust,1209752588 +122878,527,Nazis,1210974745 +122878,527,true story,1209752586 +122878,527,World War II,1209752584 +122878,541,based on a book,1209584216 +122878,541,future,1209584242 +122878,750,politics,1211731149 +122878,750,satire,1211731160 +122878,1196,aliens,1449694401 +122878,1196,great soundtrack,1449694401 +122878,1196,Harrison Ford,1449694375 +122878,1196,Star Wars,1449694377 +122878,1198,archaeology,1212751389 +122878,1198,egypt,1212751401 +122878,1198,Nazis,1212751391 +122878,1210,aliens,1449694298 +122878,1210,father-son relationship,1449694358 +122878,1210,Harrison Ford,1449694295 +122878,1210,sci-fi,1449694295 +122878,1210,Star Wars,1449694295 +122878,1258,based on a book,1209909258 +122878,1258,Hotel,1209909404 +122878,1258,insanity,1209909268 +122878,1258,Stephen King,1209909157 +122878,1258,United States,1209909300 +122878,1291,archaeology,1210974591 +122878,1291,Nazis,1211730910 +122878,1407,high school,1210367467 +122878,1407,killing,1210367481 +122878,1407,mental illness,1210367435 +122878,1407,United States,1210367446 +122878,1693,slavery,1209322492 +122878,1693,United States,1209864727 +122878,1801,France,1209866043 +122878,1801,monarchy,1209866082 +122878,1801,Paris,1209866064 +122878,1801,Versailles,1209866052 +122878,2028,war,1209585055 +122878,2028,World War II,1209584986 +122878,2120,based on a book,1209817919 +122878,2120,killing,1210367596 +122878,2120,Stephen King,1209817927 +122878,2120,United States,1209864752 +122878,2628,desert,1449694243 +122878,2628,Ewan McGregor,1449694242 +122878,2628,Jar Jar Binks,1449694229 +122878,2628,Natalie Portman,1449694224 +122878,2628,sci-fi,1449694219 +122878,2628,Star Wars,1449694215 +122878,2707,conspiracy,1211138851 +122878,2707,killing,1211138984 +122878,2707,spionage,1211138984 +122878,2707,terrorism,1211138851 +122878,2707,United States,1211138851 +122878,2858,United States,1209864716 +122878,2991,Caribbean,1209413423 +122878,2991,James Bond,1209413184 +122878,2991,Voodoo,1209413423 +122878,2993,spionage,1209322524 +122878,3168,drugs,1209322590 +122878,3168,road trip,1209864773 +122878,3168,United States,1209864765 +122878,3910,blindness,1209322427 +122878,3910,death penalty,1209322447 +122878,3910,dreams,1209322442 +122878,3910,United States,1209864708 +122878,4103,based on a book,1209863993 +122878,4103,China,1209322409 +122878,4103,Japan,1209863945 +122878,4103,prison,1209864123 +122878,4103,War,1209864040 +122878,4103,World War II,1209322384 +122878,5890,friendship,1210795369 +122878,5890,mental illness,1210795411 +122878,5890,norway,1210795411 +122878,6016,Brazil,1211393323 +122878,6016,crime,1211393347 +122878,6016,drugs,1211393335 +122878,6016,killing,1211393456 +122878,6016,money,1211393475 +122878,6373,god,1210178836 +122878,6373,religion,1210178838 +122878,6373,United States,1210178855 +122878,6617,United States,1209864735 +122878,7063,El Dorado,1210850689 +122878,8254,Arizona,1214231399 +122878,8874,england,1213827668 +122878,8874,zombies,1213827676 +122878,30749,Africa,1211911788 +122878,30749,history,1211911851 +122878,30749,killing,1211911869 +122878,30749,Rwanda,1211911828 +122878,30749,United Nations,1211911818 +122878,30749,war,1211911822 +122878,31410,Berlin,1209603563 +122878,31410,Germany,1209603587 +122878,31410,Nazis,1210974643 +122878,31410,suicide,1209603578 +122878,31410,war,1209585150 +122878,31410,World War II,1209585138 +122878,33794,Christian Bale,1450041277 +122878,33794,dark,1450041285 +122878,33794,stylized,1450041300 +122878,33794,superhero,1450041275 +122878,36529,money,1209322367 +122878,36529,smuggling,1209322367 +122878,36529,weapons,1209322368 +122878,44191,killing,1210367531 +122878,48385,road trip,1209864628 +122878,48385,United States,1209864609 +122878,48738,Africa,1209393130 +122878,48738,based on a book,1209322468 +122878,48738,History,1209484584 +122878,48738,Uganda,1209322479 +122878,49265,Africa,1214682803 +122878,49265,Rwanda,1214682803 +122878,50872,cooking,1211734240 +122878,50872,France,1211734261 +122878,50872,paris,1211734242 +122878,50872,pixar,1211734238 +122878,51086,United States,1209864742 +122878,52604,murder,1213187387 +122878,52604,trial,1213187425 +122878,52604,United States,1213187346 +122878,53894,Canada,1213290700 +122878,53894,corruption,1213290659 +122878,53894,Cuba,1213290688 +122878,53894,England,1213290714 +122878,53894,France,1213290726 +122878,53894,politics,1213290652 +122878,53894,United States,1213290674 +122878,53972,terrorism,1209322584 +122878,53972,United States,1209864759 +122878,54503,friendship,1210850783 +122878,54503,high school,1210850774 +122878,54503,United States,1210850836 +122878,55247,Alaska,1213607675 +122878,55247,animals,1213607663 +122878,55247,based on a true story,1213607668 +122878,55247,freedom,1213607671 +122878,55247,United States,1213607692 +122878,56587,friendship,1213607785 +122878,56885,Segregation,1214489659 +122878,57368,E.T.,1211730977 +122878,57368,Handycam,1211730999 +122878,57368,New York City,1211730979 +122878,59615,archaeology,1211730871 +122878,59615,E.T.,1211730788 +122878,59615,El Dorado,1211730788 +122878,59615,South America,1211730788 +122878,59615,United States,1211730788 +122878,110730,artificial intelligence,1430076026 +122878,110730,consciousness,1430076053 +122878,110730,nano-technology,1430076036 +122878,110730,nanobots,1430076068 +122878,110730,network,1430075983 +122878,110730,ridiculous,1430076016 +122878,114184,duty,1430042111 +122878,114184,friendship,1430042111 +122878,114184,guantanamo,1430042111 +122878,139120,Arranged marriage,1453842389 +122885,25826,In Netflix queue,1167518671 +122912,589,apocalypse,1446655789 +122912,589,future,1446655783 +122912,589,sci-fi,1446655777 +122912,589,time travel,1446655774 +122912,858,classic,1446655849 +122912,1203,good dialogue,1446655944 +122912,1270,time travel,1446655888 +122912,122882,post apocalypse,1446656203 +122927,4014,Johnny Depp,1137907860 +122927,56805,biopic,1271009327 +122927,93498,acting,1358087783 +122927,93498,election,1358087793 +122927,93498,good performance,1358087780 +122927,93498,Julianne Moore,1358087774 +122927,93498,Woody Harrelson,1358087787 +122927,99114,Christoph Waltz,1358086232 +122927,99114,Don Johnson,1358086231 +122927,99114,Jamie Foxx,1358086265 +122927,99114,Leonardo DiCaprio,1358086239 +122927,99114,Over the top,1358086250 +122927,99114,Quentin Tarantino,1358086236 +122946,1292,naive,1357141233 +122946,1292,Oscar (Best Supporting Actor),1357141239 +122946,1292,Peter Sellers,1357141244 +122946,1292,television,1357141268 +122946,54426,communism,1357140978 +122946,54426,Corneliu Porumboiu,1357140956 +122946,54426,original,1357140948 +122946,54426,Romania,1357140990 +122946,71108,anger,1357141915 +122946,71108,atmospheric,1357141851 +122946,71108,black and white,1357141905 +122946,71108,Golden Palm,1357141919 +122946,71108,Michael Haneke,1357141891 +122946,71108,no soundtrack,1357141895 +122946,71108,Palme d'Or,1357141917 +122946,71108,small town,1357141923 +122946,71108,suspense,1357141925 +122946,71108,thought-provoking,1357141898 +122946,83184,characters,1357141771 +122946,83184,dark ending,1357141882 +122946,83184,Korean,1357141780 +122946,83184,too long,1357141759 +122946,83184,violence,1357141749 +122946,88690,edgar allan poe,1357141671 +122946,88690,mistery,1357141689 +122946,88690,murder,1357141685 +122946,88690,stupid plot,1357141643 +122946,89000,acting,1357141956 +122946,89000,Argentina,1357141944 +122946,89000,lawyers,1357141956 +122946,89000,police corruption,1357141951 +122946,89000,Ricardo Darin,1357141948 +122946,90531,classical music,1357157054 +122946,90531,frustration,1357157105 +122946,90531,long takes,1357157031 +122946,90531,New York City,1357157075 +122946,90531,running scene,1357157065 +122946,90531,self-destruction,1357157107 +122946,91529,dark,1357141197 +122946,91529,imdb top 250,1357141203 +122946,91529,intense,1357141178 +122946,91529,plot twist,1357141186 +122946,91535,fast paced,1357141359 +122946,91535,franchise,1357141310 +122946,91535,genetic engineering,1357141333 +122946,91535,Rachel Weisz,1357141286 +122946,91535,spies,1357141308 +122946,93164,Character study,1357142082 +122946,93164,hitchcockian,1357142069 +122946,93164,murder,1357142105 +122946,93164,obsession,1357142117 +122946,93164,suspense,1357142059 +122946,94864,aliens,1357141439 +122946,94864,bad plot,1357141433 +122946,94864,boring,1357141456 +122946,94864,predictable,1357141424 +122946,94864,scary,1357141466 +122946,94864,sci fi,1357141443 +122946,94864,space travel,1357141452 +122946,95441,bromance,1357141382 +122946,95441,buddy movie,1357141390 +122946,95441,crude humor,1357141396 +122946,95441,directorial debut,1357141411 +122946,95441,Mark Wahlberg,1357141400 +122946,95441,Mila Kunis,1357141415 +122946,95441,Nudity (Topless),1357141378 +122946,96415,buddhism,1357142017 +122946,96415,Korean,1357142036 +122946,96415,sci fi,1357142010 +122946,96415,script fail,1357142047 +122946,96415,Short Stories,1357142005 +122946,96415,zombies,1357142025 +122946,96861,happy ending,1357141732 +122946,96861,kidnapping,1357141719 +122946,96861,predictable,1357141702 +122946,96861,Revenge,1357141706 +122946,97752,atmospheric,1357141475 +122946,97752,independent film,1357141505 +122946,97752,multiple roles,1357141483 +122946,97752,visually appealing,1357141488 +122946,98122,computer game,1357141600 +122946,98122,indie,1357141598 +122946,98122,Microsoft,1357141595 +122946,98122,software developers,1357141612 +122946,98809,adventure,1357141027 +122946,98809,author:J. R. R. Tolkein,1357141024 +122946,98809,beautiful scenery,1357141081 +122946,98809,big budget,1357141085 +122946,98809,epic,1357141076 +122946,98809,franchise,1357141058 +122946,98809,magic,1357141061 +122946,98809,Middle Earth,1357141063 +122946,98809,Peter Jackson,1357141053 +122946,98809,too long,1357141068 +122946,98963,artsy,1432563538 +122946,98963,brazilian,1432563538 +122946,98963,slow-paced,1432563538 +122946,120110,desert,1425915906 +122946,120110,kidnapping,1425915906 +122946,120110,surreal,1425915906 +122946,120110,viggo mortensen,1425915906 +122946,120110,western,1425915906 +122951,260,science fantasy,1441834199 +122951,260,space adventure,1441834183 +123009,318,great ending,1442462269 +123009,318,inspirational,1442462245 +123050,1236,Adrienne Shelly,1448832875 +123050,1236,bittersweet,1448832867 +123050,1236,black comedy,1448832886 +123050,1236,ECCENTRIC FAMILIES,1448832903 +123050,1236,melancholy,1448832909 +123050,1236,quirky,1448832897 +123050,1236,SUBURBAN DYSFUNCTION,1448832883 +123050,1236,understated,1448832938 +123050,81591,Darren Aronofsky,1448832532 +123050,81591,disturbing,1448832561 +123050,81591,overrated,1448832544 +123050,112552,good music,1448832481 +123050,112552,J.K. Simmons,1448832493 +123050,112552,music,1448832468 +123050,112552,school drama,1448832490 +123050,113315,Boredom,1448832758 +123050,113315,dark comedy,1448832732 +123050,113315,funny,1448832736 +123050,113315,kafkaesque,1448832740 +123050,113315,military,1448832681 +123050,113315,military bureaucracy,1448832713 +123054,260,Oscar (Best Effects - Visual Effects),1430415440 +123054,260,politics,1430415490 +123054,260,Saturn Award (Best Science Fiction Film),1430415476 +123054,260,space travel,1430415460 +123055,1220,classic,1137492099 +123055,2706,comedy,1137492111 +123055,8957,interesting,1137568934 +123055,41285,interesting,1137493809 +123055,41569,new version classical,1137569072 +123072,7458,based on a myth,1451492622 +123075,260,adventure,1442455565 +123075,260,sci-fi,1442455553 +123095,260,darth vader,1430912742 +123095,260,George Lucas,1430912725 +123095,260,love,1430912735 +123111,1027,Kevin Costner,1410026486 +123111,3967,inspirational,1410026144 +123111,44191,Natalie Portman,1410025997 +123111,48304,Mel Gibson,1410026741 +123111,86332,adventure.,1390061903 +123111,86332,comic book,1409415665 +123111,86332,Marvel,1409415667 +123111,86332,superhero,1409415661 +123155,7153,fiction,1449443770 +123157,260,fairy tale,1437877137 +123157,260,good for kids,1437877159 +123157,260,sci-fi,1437877129 +123157,57368,bad story,1437877895 +123157,57368,boring,1437877895 +123157,57368,horror,1437877895 +123161,260,Science Fiction,1437335677 +123161,260,space,1437335684 +123161,134853,emotion,1437335941 +123161,134853,introspective,1437335941 +123161,134853,teenager,1437335941 +123210,140170,Netflix,1438708567 +123215,296,pulp,1171569435 +123215,6874,action martial-arts revenge,1171569392 +123215,7361,dream,1188924399 +123215,7361,imagination,1188924463 +123215,7361,love,1188924399 +123215,7361,mind,1188924399 +123215,7361,photography,1188924399 +123215,7361,sci-fi,1188924399 +123215,7438,action martial-arts revenge,1171569394 +123228,4011,Jason Statham,1451755907 +123228,4011,twist ending,1451755897 +123238,296,awesome,1426830492 +123238,296,bloody,1426830492 +123238,296,uma thurman,1426830492 +123259,84954,Matrix,1304141769 +123259,84954,pirates of the caribbean,1304141812 +123259,84954,the black,1304141829 +123259,84954,The Rock,1304141844 +123266,55908,philosophical,1446397833 +123266,55908,thought-provoking,1446397823 +123290,260,classic sci-fi,1436461542 +123290,260,sci-fi,1436461529 +123302,260,i hear its good,1442151187 +123302,260,never seen it,1442151174 +123314,6,Top 10 ever,1140539744 +123314,31,seen at the cinema,1171184486 +123314,32,seen at the cinema,1171183297 +123314,44,seen at the cinema,1171183861 +123314,47,seen at the cinema,1171182333 +123314,47,Top 10 ever,1140539825 +123314,47,watched 1995,1144258169 +123314,50,seen at the cinema,1171183277 +123314,52,seen at the cinema,1171182802 +123314,52,watched 1995,1169945817 +123314,66,Crap,1138214451 +123314,70,seen at the cinema,1171182932 +123314,153,seen at the cinema,1171183046 +123314,153,watched 1995,1171183046 +123314,165,seen at the cinema,1171184449 +123314,165,watched 1995,1169948513 +123314,196,seen at the cinema,1171184858 +123314,198,seen at the cinema,1171182623 +123314,208,seen at the cinema,1171182582 +123314,230,Can't remember,1166822152 +123314,260,seen at the cinema,1171184847 +123314,273,seen at the cinema,1171184206 +123314,292,seen at the cinema,1171182755 +123314,296,seen at the cinema,1171183767 +123314,296,watched 1994,1169947985 +123314,316,seen at the cinema,1183307349 +123314,318,Top 10 ever,1140539790 +123314,319,seen at the cinema,1171183625 +123314,337,Can't remember,1195239364 +123314,345,watched 2007,1178533681 +123314,356,seen at the cinema,1171182944 +123314,357,seen at the cinema,1171184246 +123314,367,seen at the cinema,1171184061 +123314,377,seen at the cinema,1171182651 +123314,380,seen at the cinema,1171182609 +123314,442,seen at the cinema,1171184462 +123314,454,Can't remember,1168880292 +123314,457,seen at the cinema,1171182923 +123314,466,seen at the cinema,1171184160 +123314,480,seen at the cinema,1171182875 +123314,494,seen at the cinema,1171184270 +123314,500,seen at the cinema,1171183854 +123314,508,Can't remember,1168880370 +123314,517,seen at the cinema,1171184945 +123314,539,Can't remember,1168880281 +123314,588,seen at the cinema,1171183088 +123314,589,seen at the cinema,1171182322 +123314,648,seen at the cinema,1171183867 +123314,733,seen at the cinema,1171182425 +123314,778,seen at the cinema,1171182614 +123314,830,Can't remember,1168880099 +123314,904,Top 10 ever,1140539818 +123314,920,Can't remember,1166821930 +123314,1036,Top 10 ever,1140539773 +123314,1047,seen at the cinema,1171184109 +123314,1049,seen at the cinema,1171184187 +123314,1061,seen at the cinema,1171182674 +123314,1101,Can't remember,1168880409 +123314,1196,seen at the cinema,1171182638 +123314,1201,watched 2007,1168877859 +123314,1206,Can't remember,1168880437 +123314,1220,Can't remember,1168880428 +123314,1222,Can't remember,1168880498 +123314,1249,Can't remember,1166822140 +123314,1252,Can't remember,1195239314 +123314,1259,Can't remember,1168880395 +123314,1265,seen at the cinema,1171182902 +123314,1307,watched 2006,1163451423 +123314,1356,seen at the cinema,1171183575 +123314,1357,seen at the cinema,1171183619 +123314,1376,Can't remember,1195238543 +123314,1377,seen at the cinema,1171184605 +123314,1388,Not bad sequel,1138214483 +123314,1393,seen at the cinema,1171182880 +123314,1394,Can't remember,1195238652 +123314,1407,seen at the cinema,1171182690 +123314,1438,seen at the cinema,1171184480 +123314,1466,seen at the cinema,1171184442 +123314,1476,seen at the cinema,1171183773 +123314,1485,seen at the cinema,1171182845 +123314,1499,seen at the cinema,1171184633 +123314,1513,seen at the cinema,1171184918 +123314,1527,seen at the cinema,1171184258 +123314,1544,seen at the cinema,1171184098 +123314,1552,seen at the cinema,1171184515 +123314,1552,watched 1997,1169948565 +123314,1573,seen at the cinema,1171184265 +123314,1584,seen at the cinema,1171182524 +123314,1589,seen at the cinema,1171184498 +123314,1610,Can't remember,1168880361 +123314,1616,seen at the cinema,1171184984 +123314,1625,seen at the cinema,1171184194 +123314,1627,seen at the cinema,1171182604 +123314,1639,Can't remember,1168169437 +123314,1641,seen at the cinema,1171184200 +123314,1645,seen at the cinema,1171182386 +123314,1645,watched (1997),1165707702 +123314,1676,seen at the cinema,1171183568 +123314,1682,seen at the cinema,1171182410 +123314,1717,seen at the cinema,1171183633 +123314,1721,seen at the cinema,1171183516 +123314,1722,seen at the cinema,1171184753 +123314,1727,seen at the cinema,1171184166 +123314,1729,seen at the cinema,1171184134 +123314,1730,seen at the cinema,1171184122 +123314,1732,seen at the cinema,1171182548 +123314,1747,seen at the cinema,1171183266 +123314,1748,seen at the cinema,1171182997 +123314,1784,seen at the cinema,1171183068 +123314,1792,seen at the cinema,1171184728 +123314,1805,seen at the cinema,1171182573 +123314,1805,watched 1998,1169945580 +123314,1835,seen at the cinema,1171184529 +123314,1884,seen at the cinema,1171182510 +123314,1909,seen at the cinema,1171183245 +123314,1912,seen at the cinema,1171182761 +123314,1920,seen at the cinema,1171184874 +123314,1923,seen at the cinema,1171184780 +123314,1961,Can't remember,1168880323 +123314,1968,Can't remember,1168880381 +123314,2028,seen at the cinema,1171183653 +123314,2094,seen at the cinema,1171184934 +123314,2124,Can't remember,1166821994 +123314,2140,watched 2007,1169943739 +123314,2141,Can't remember,1166822083 +123314,2167,seen at the cinema,1171182543 +123314,2194,Top 10 ever,1140539836 +123314,2231,watched 2006,1169947946 +123314,2232,seen at the cinema,1171184491 +123314,2278,seen at the cinema,1171184913 +123314,2289,Can't remember,1195239377 +123314,2291,Can't remember,1168880489 +123314,2394,seen at the cinema,1171182438 +123314,2396,seen at the cinema,1171184895 +123314,2427,seen at the cinema,1171184767 +123314,2428,seen at the cinema,1171182963 +123314,2470,Can't remember,1195239356 +123314,2490,seen at the cinema,1171183808 +123314,2542,seen at the cinema,1171182471 +123314,2571,seen at the cinema,1171182811 +123314,2571,watched 1999,1169945841 +123314,2617,seen at the cinema,1171182780 +123314,2628,seen at the cinema,1171184830 +123314,2700,seen at the cinema,1171184869 +123314,2712,seen at the cinema,1171182968 +123314,2722,seen at the cinema,1171184470 +123314,2722,watched 1999,1169948536 +123314,2762,seen at the cinema,1171183597 +123314,2762,watched 1999,1169947839 +123314,2791,Can't remember,1166822016 +123314,2792,Can't remember,1166822005 +123314,2797,Can't remember,1168880464 +123314,2808,seen at the cinema,1171183284 +123314,2959,seen at the cinema,1171182365 +123314,2959,Top 10 ever,1140539736 +123314,2959,watched 1999,1144258113 +123314,2987,Can't remember,1168880352 +123314,2997,seen at the cinema,1171183022 +123314,3033,seen at the cinema,1171184863 +123314,3081,seen at the cinema,1171184880 +123314,3082,seen at the cinema,1171183253 +123314,3147,seen at the cinema,1171182912 +123314,3160,seen at the cinema,1171184086 +123314,3174,seen at the cinema,1171184071 +123314,3175,watched 2006,1168879810 +123314,3250,Can't remember,1166822036 +123314,3253,seen at the cinema,1171184688 +123314,3254,seen at the cinema,1171184683 +123314,3255,seen at the cinema,1171182850 +123314,3361,Can't remember,1166822131 +123314,3363,Can't remember,1166822046 +123314,3418,Can't remember,1195238589 +123314,3429,watched 2006,1167647525 +123314,3471,Can't remember,1195238568 +123314,3512,seen at the cinema,1171182706 +123314,3578,seen at the cinema,1171182505 +123314,3623,seen at the cinema,1171182796 +123314,3638,James Bond,1171185046 +123314,3701,Can't remember,1166822026 +123314,3703,watched 2006,1138996103 +123314,3710,Can't remember,1166821973 +123314,3752,seen at the cinema,1171184048 +123314,3770,watched 2007,1169388230 +123314,3793,seen at the cinema,1171182565 +123314,3793,watched 2000,1144258008 +123314,3869,seen at the cinema,1171183836 +123314,3999,watched 2006,1169946259 +123314,4011,seen at the cinema,1171182657 +123314,4018,watched 2000,1166821489 +123314,4027,seen at the cinema,1171183822 +123314,4144,Watched 2008,1200940719 +123314,4239,watched 2007,1171910227 +123314,4250,Movie that you forget easily,1138454963 +123314,4267,Watched 2008,1201951902 +123314,4270,seen at the cinema,1171182787 +123314,4308,seen at the cinema,1171182345 +123314,4370,seen at the cinema,1171184661 +123314,4383,watched 2006,1165253347 +123314,4558,seen at the cinema,1171183290 +123314,4565,Can't remember,1166822070 +123314,4641,watched 2006,1167647712 +123314,4816,seen at the cinema,1171182398 +123314,4886,watched 2006,1160318421 +123314,4963,seen at the cinema,1171182771 +123314,4993,seen at the cinema,1171182464 +123314,5015,watched 2007,1185437015 +123314,5107,watched 2007,1186170518 +123314,5146,watched 2006,1157093962 +123314,5152,watched 2006,1171184699 +123314,5218,seen at the cinema,1171182489 +123314,5254,seen at the cinema,1171184592 +123314,5266,seen at the cinema,1171184997 +123314,5299,seen at the cinema,1171183849 +123314,5312,Watched 2008,1200851666 +123314,5349,seen at the cinema,1171183591 +123314,5349,watched 2002,1169947812 +123314,5378,seen at the cinema,1171182645 +123314,5502,seen at the cinema,1171182681 +123314,5574,watched 2006,1171184744 +123314,5588,watched 2006,1157093919 +123314,5612,watched 2006,1169946333 +123314,5679,seen at the cinema,1171182431 +123314,5872,seen at the cinema,1171184454 +123314,5952,seen at the cinema,1171182825 +123314,5995,watched 2005,1144258127 +123314,6022,Can't remember,1166822059 +123314,6059,watched 2006,1146840728 +123314,6188,watched 2006,1169948082 +123314,6218,watched 2006,1166821722 +123314,6281,seen at the cinema,1171183792 +123314,6333,watched 2005,1144258016 +123314,6365,seen at the cinema,1171184054 +123314,6377,seen at the cinema,1171182957 +123314,6378,watched 2006,1169945947 +123314,6503,seen at the cinema,1171184542 +123314,6537,seen at the cinema,1171182418 +123314,6593,watched 2005,1152371165 +123314,6615,watched 2006,1168698500 +123314,6617,watched 2006,1165706914 +123314,6708,watched 2007,1178008660 +123314,6711,seen at the cinema,1171184104 +123314,6755,watched 2006,1163451186 +123314,6870,watched 2006,1169948119 +123314,6879,watched 2006,1165706849 +123314,6942,watched 2005,1152370910 +123314,6957,watched 2007,1168169241 +123314,7034,seen at the cinema,1171183612 +123314,7143,watched 2005,1144258135 +123314,7149,watched 2007,1180626276 +123314,7153,seen at the cinema,1171182831 +123314,7155,watched 2007,1182973060 +123314,7158,watched 2006,1145778420 +123314,7162,watched 2005,1144257903 +123314,7254,watched 2005,1144258199 +123314,7318,watched 2007,1177186318 +123314,7325,watched 2006,1168879762 +123314,7361,seen at the cinema,1178008704 +123314,7445,watched 2007,1170272672 +123314,7451,watched 2006,1169948176 +123314,7458,watched 2006,1169946298 +123314,7981,watched 2006,1146840629 +123314,8360,watched 2005,1168169637 +123314,8361,watched 2006,1169946072 +123314,8373,watched 2006,1152371140 +123314,8636,seen at the cinema,1171183583 +123314,8636,watched 2004,1169947792 +123314,8645,watched 2006,1169948217 +123314,8665,watched 2006,1169946140 +123314,8866,watched 2006,1169946246 +123314,8907,watched 2006,1142880479 +123314,8908,watched 2006,1169945901 +123314,8917,watched 2006,1171184800 +123314,8947,seen at the cinema,1171184173 +123314,8961,watched 2006,1144258154 +123314,8963,watched 2006,1143233176 +123314,8966,watched 2007,1174414849 +123314,8972,watched 2006,1166821659 +123314,8984,seen at the cinema,1171185008 +123314,8984,watched 2005,1171185018 +123314,27773,watched 2006,1144257884 +123314,27808,watched 2007,1172965332 +123314,27822,watched 2006,1169948069 +123314,27831,watched 2006,1165253165 +123314,27839,seen at the cinema,1171183663 +123314,27873,watched 2007,1195238092 +123314,30707,watched 2006,1169945430 +123314,30820,watched 2006,1144257867 +123314,31433,watched 2007,1187719211 +123314,31660,watched 2007,1185437149 +123314,31685,watched 2005,1168169522 +123314,31878,watched 2006,1167647743 +123314,31952,seen at the cinema,1171184504 +123314,31952,watched 2005,1169948763 +123314,32300,watched 2006,1167647936 +123314,32587,seen at the cinema,1171183603 +123314,32587,watched 2005,1169947857 +123314,32596,watched 2006,1152370450 +123314,33166,watched 2006,1159058806 +123314,33437,watched 2006,1145778377 +123314,33493,seen at the cinema,1171184838 +123314,33615,seen at the cinema,1171184092 +123314,33615,watched 2005,1169948235 +123314,33679,watched 2007,1185437732 +123314,33794,seen at the cinema,1171182557 +123314,33794,watched 2005,1144257927 +123314,33836,Movie I didn't watch to the end,1140539586 +123314,34048,watched 2006,1147611209 +123314,36525,watched 2006,1145778758 +123314,36529,watched 2006,1147611334 +123314,37382,watched 2006,1157093999 +123314,37727,watched 2006,1168879784 +123314,37729,watched 2006,1168169373 +123314,37733,watched 2006,1145778343 +123314,38798,watched 2006,1145389115 +123314,39183,watched 2006,1169946122 +123314,39446,seen at the cinema,1171183640 +123314,39446,watched 2006,1138996188 +123314,40278,watched 2006,1158444281 +123314,40819,watched 2006,1158444315 +123314,41569,watched 2006,1166882418 +123314,41571,watched 2007,1174676055 +123314,41997,watched 2006,1166821745 +123314,42007,watched 2007,1194290828 +123314,42723,watched 2007,1185437079 +123314,43917,watched 2007,1172601362 +123314,44022,seen at the cinema,1171184154 +123314,44022,watched 2006,1144257848 +123314,44191,watched 2006,1144257969 +123314,44195,watched 2007,1173727479 +123314,44199,watched 2006,1158444270 +123314,44974,watched 2007,1172965313 +123314,45081,watched 2008,1200297882 +123314,45210,watched 2006,1158444183 +123314,45447,watched 2007,1169194261 +123314,45501,watched 2006,1167647449 +123314,45672,watched 2007,1173624391 +123314,45722,watched 2006,1163888887 +123314,45726,watched 2007,1189624832 +123314,45732,watched 2007,1170272701 +123314,46578,seen at the cinema,1171182836 +123314,46578,watched 2007,1168169182 +123314,46965,watched 2007,1172601337 +123314,46970,watched 2007,1193416262 +123314,46974,watched 2007,1173027700 +123314,48385,watched 2007,1195239832 +123314,48412,watched 2007,1173599289 +123314,48414,watched 2007,1177186508 +123314,48516,watched 2007,1178818174 +123314,48738,watched 2007,1187719238 +123314,48780,watched 2007,1180171063 +123314,48877,watched 2007,1193586244 +123314,49272,seen at the cinema,1171184556 +123314,49272,watched 2006,1165252974 +123314,49278,watched 2007,1182973036 +123314,49286,seen at the cinema,1171182354 +123314,49286,watched 2006,1166821090 +123314,49347,watched 2007,1195493059 +123314,49651,seen at the cinema,1171182291 +123314,49651,watched 2007,1171182066 +123314,51086,watched 2007,1195493020 +123314,51709,watched 2007,1193416826 +123314,52328,watched 2007,1189624924 +123314,52973,Watched 2008,1200851620 +123314,53125,seen at the cinema,1183307075 +123314,53125,watched 2007,1183307075 +123314,53972,watched 2007,1198913714 +123314,54272,seen at the cinema,1186306112 +123314,54272,watched 2007,1186306112 +123314,56174,Watched 2008,1199739853 +123323,296,mindfuck,1420436295 +123323,296,monologue,1420436295 +123323,296,quentin tarantino,1420436295 +123355,260,good vs evil,1435983676 +123381,296,Quentin Tarantino,1374409751 +123381,1884,drugs,1374410146 +123381,2329,Edward Norton,1374409726 +123381,2329,prison,1374409723 +123381,2571,post-apocalyptic,1374409659 +123381,2571,sci-fi,1374409662 +123381,2959,psychology,1374409599 +123381,2959,twist ending,1374409605 +123381,6502,zombies,1374410257 +123381,55765,based on a true story,1374410504 +123381,55765,organized crime,1374410501 +123381,61024,drugs,1374410040 +123381,71899,dark comedy,1374460507 +123381,85414,twist ending,1374460314 +123392,44195,disappointing,1173186441 +123395,260,classic sci-fi,1439913604 +123395,260,"sci-fi, space",1439913591 +123408,4995,nobel prize,1143926765 +123408,7563,dutch,1151881598 +123408,7586,dutch,1151881692 +123419,858,classic,1146942951 +123450,318,drama,1446671431 +123450,318,friendship,1446671413 +123450,318,imdb top 250,1446671442 +123453,2116,adaptation,1190422357 +123453,4149,silly,1206538282 +123453,4993,AWESOME,1190422280 +123453,7153,REALLY AWESOME,1190422315 +123453,55830,arts+crafts,1206538124 +123453,55830,Below R,1206538097 +123453,55830,videotape,1206538150 +123453,56805,silly,1206538238 +123469,260,A classic scifi movie,1442202940 +123469,260,Science Fiction,1442202950 +123469,3654,"World War II, action",1442203888 +123469,101319,Historical,1442203844 +123469,101319,World War II,1442203823 +123493,3178,excellent,1169491611 +123497,296,funny hardcore,1434079001 +123497,296,gangsters,1434079001 +123497,296,tarrantino,1434079001 +123500,293,French director,1447038845 +123500,293,Gary Oldman,1447038866 +123500,293,Jean Reno,1447038856 +123500,293,Luc Besson,1447038838 +123500,293,Natalie Portman,1447038858 +123500,1089,gangsters,1447038809 +123500,1089,Quentin Tarantino,1447038794 +123500,2571,artificial intelligence,1447038901 +123500,2571,cult film,1447038907 +123500,2571,dystopia,1447038897 +123500,2571,sci-fi,1447038893 +123500,2571,surreal,1447038911 +123503,5956,scorsese is god but this movie really sucks,1155532923 +123503,5956,violent,1155532902 +123503,6754,NOT a matrix ripoff because it has nothing to do with the lame ass matrix shit,1155533525 +123528,1097,dated,1158381878 +123528,2398,dated,1158382415 +123528,3448,Bruno Kirby,1158383333 +123528,4361,dated,1158382975 +123552,185,computers,1427491363 +123552,2571,dystopic future,1427411305 +123552,2571,hackers,1427411305 +123552,2571,philosophical,1427411305 +123552,4052,geeks,1427491303 +123552,6370,Erasmus,1427412292 +123552,6370,exchange student,1427412306 +123552,6370,exchange year,1427412308 +123552,72733,apartheid,1427491485 +123552,72733,rugby,1427491477 +123552,110235,male prostitute,1427651239 +123559,22,thriller,1368178401 +123559,29,dark,1368177921 +123559,30,Gong Li,1243000144 +123559,30,Yimou Zhang,1243000133 +123559,161,tense,1368178369 +123559,194,ensemble cast,1332283599 +123559,216,stupid,1368178343 +123559,288,ultra-violence,1242993625 +123559,288,violence,1242993628 +123559,293,great acting,1242725004 +123559,293,Jean Reno,1242725037 +123559,293,Luc Besson,1242725045 +123559,293,Natalie Portman,1242725039 +123559,349,Willem Dafoe,1242996120 +123559,453,Michael J. Fox,1333625504 +123559,519,franchise,1368178023 +123559,527,Nazis,1333036698 +123559,718,Jean Reno,1242725129 +123559,849,Kurt Russell,1389958378 +123559,861,police,1368178278 +123559,1089,violent,1368178437 +123559,1129,Kurt Russell,1389958157 +123559,1129,snake plissken,1389958154 +123559,1201,Clint Eastwood,1375212799 +123559,1201,Ennio Morricone,1375212808 +123559,1201,Sergio Leone,1375212803 +123559,1206,violent,1368178437 +123559,1209,Charles Bronson,1375212586 +123559,1209,Ennio Morricone,1375212721 +123559,1209,Jason Robards,1375212614 +123559,1214,tense,1368178368 +123559,1248,black and white,1368177860 +123559,1249,Jean Reno,1242724896 +123559,1249,Luc Besson,1242724926 +123559,1249,stylized,1242724940 +123559,1262,ensemble cast,1368177955 +123559,1280,Gong Li,1242994208 +123559,1280,Zhang Yimou,1242994225 +123559,1287,christianity,1368177898 +123559,1357,father-son relationship,1368178004 +123559,1357,mental illness,1368178116 +123559,1372,Star Trek,1333143279 +123559,1416,Madonna,1242994925 +123559,1464,mystery,1368178132 +123559,1517,spoof,1242993852 +123559,1589,ensemble cast,1368177955 +123559,1610,thriller,1368178401 +123559,1611,gay,1242724809 +123559,1611,Gus Van Sant,1242724814 +123559,1611,River Phoenix,1242724816 +123559,1950,police,1368178279 +123559,2024,christianity,1368177899 +123559,2026,high school,1368178061 +123559,2076,dark,1368177921 +123559,2320,Ian McKellen,1211686608 +123559,2335,stupid,1368178343 +123559,2353,thriller,1368178402 +123559,2411,nationalism,1242994782 +123559,2411,unintentionally funny,1242994755 +123559,2425,Brendan Gleeson,1242729821 +123559,2501,father-son relationship,1368178005 +123559,2528,dystopia,1242994694 +123559,2683,parody,1242993762 +123559,2683,spoof,1242993765 +123559,2722,Thomas Jane,1242994022 +123559,2722,unintentionally funny,1242994052 +123559,2827,Clea DuVall,1242994652 +123559,2827,surprise ending,1242994640 +123559,2882,nazis,1368178170 +123559,2919,politics,1368178303 +123559,2944,ensemble cast,1368177955 +123559,2959,violent,1368178437 +123559,3053,Luc Besson,1243026975 +123559,3155,Chow Yun Fat,1341686220 +123559,3256,thriller,1368178401 +123559,3273,franchise,1368178023 +123559,3362,police,1368178278 +123559,3430,Charles Bronson,1331925098 +123559,3435,black and white,1368177860 +123559,3440,franchise,1368178023 +123559,3527,predator,1370784848 +123559,3786,Clea DuVall,1336072784 +123559,3948,Ben Stiller,1332030038 +123559,3948,Owen Wilson,1332030326 +123559,3977,Sam Rockwell,1389652644 +123559,3980,inspirational,1368178087 +123559,3998,David Morse,1242995569 +123559,3998,Meg Ryan,1242995562 +123559,3998,Russell Crowe,1242995566 +123559,4019,inspirational,1368178086 +123559,4240,Jean Reno,1242725265 +123559,4240,remake,1242725281 +123559,4240,remake of a french film,1242725281 +123559,4383,Jean Reno,1242725089 +123559,4383,Jean-Christophe Grange,1243027193 +123559,4383,Vincent Cassel,1242725092 +123559,4388,stupid,1368178343 +123559,4865,dark,1368177921 +123559,4878,dreamlike,1242730337 +123559,4878,enigmatic,1242730339 +123559,4878,Jake Gyllenhaal,1242730321 +123559,4878,maggie gyllenhaal,1242730309 +123559,4878,surreal,1242730334 +123559,4878,thought-provoking,1242730330 +123559,4911,Michael Palin,1242996405 +123559,4911,Terry Gilliam,1242996364 +123559,4974,stupid,1368178343 +123559,5010,Eric Bana,1242723943 +123559,5010,Ewan McGregor,1242724039 +123559,5010,Josh Hartnett,1242723996 +123559,5010,Ron Eldard,1242724228 +123559,5010,war,1242723967 +123559,5010,war movie,1242723969 +123559,5026,Vincent Cassel,1242725395 +123559,5107,nazis,1368178171 +123559,5184,John Hurt,1360073140 +123559,5184,Kris Kristofferson,1360073112 +123559,5218,pixar,1368178245 +123559,5291,Akira Kurosawa,1331926635 +123559,5291,based on a book,1331926645 +123559,5481,Michael Caine,1242993717 +123559,5481,parody,1242993710 +123559,5481,spoof,1242993708 +123559,5784,Ron Eldard,1242724141 +123559,5954,Edward Norton,1440701791 +123559,6027,River Phoenix,1242729960 +123559,6214,brutal,1242725430 +123559,6214,graphic violence,1242725460 +123559,6214,hard to watch,1242725455 +123559,6214,Monica Bellucci,1242725453 +123559,6214,rape,1242725435 +123559,6214,reverse timeline,1242725447 +123559,6214,Vincent Cassel,1242725449 +123559,6378,Edward Norton,1242993943 +123559,6378,ensemble cast,1242993956 +123559,6537,franchise,1368178023 +123559,6550,parody,1242995410 +123559,6808,nazis,1368178170 +123559,6890,adolescence,1242724695 +123559,6890,enigmatic,1242724697 +123559,6890,Gus Van Sant,1242724701 +123559,6932,Hayden Christensen,1242995274 +123559,6932,Peter Sarsgaard,1242995267 +123559,7160,mental illness,1368178116 +123559,7377,Ryan Gosling,1369472759 +123559,7458,Brad Pitt,1327356716 +123559,7458,Eric Bana,1327356720 +123559,7562,extremely violent,1331409628 +123559,7562,Monica Bellucci,1331409615 +123559,7562,ultra-violence,1331409632 +123559,7562,Vincent Cassel,1331409622 +123559,7562,violence,1331409635 +123559,8142,gore,1375306669 +123559,8142,Takashi Miike,1375306674 +123559,8142,violence,1375306665 +123559,8327,slow paced,1331926484 +123559,8327,surreal,1331926493 +123559,8361,Dennis Quaid,1242721764 +123559,8361,Jake Gyllenhaal,1242721769 +123559,8370,Takeshi Kitano,1393271270 +123559,8370,weird,1393271283 +123559,8781,politics,1368178304 +123559,8783,M. Night Shyamalan,1318370291 +123559,8860,Chris Evans,1249783634 +123559,8860,RACE AGAINST TIME,1249783618 +123559,26476,great soundtrack,1393271046 +123559,26476,Nagisa Ã?shima,1393271043 +123559,27271,great soundtrack,1393271140 +123559,27271,Nagisa Ã?shima,1393271085 +123559,27450,Juliette Lewis,1242725372 +123559,27450,Vincent Cassel,1242725369 +123559,27689,Jean Reno,1242725075 +123559,27689,Jean-Christophe Grange,1243027230 +123559,27788,Adrien Brody,1369414086 +123559,27904,Philip K. Dick,1385762141 +123559,27904,Robert Downey Jr.,1385762139 +123559,27904,visually appealing,1385762146 +123559,30749,Jean Reno,1242724415 +123559,30825,Ben Stiller,1242994390 +123559,31696,tilda swinton,1391294728 +123559,34048,Tim Robbins,1242721671 +123559,34048,worst ending ever,1242721679 +123559,34319,Ewan McGregor,1242721496 +123559,34319,product placement,1242721367 +123559,34319,Scarlett Johansson,1242721377 +123559,34319,Sean Bean,1242721466 +123559,34319,Steve Buscemi,1242721479 +123559,35957,Cillian Murphy,1369414470 +123559,36401,Monica Bellucci,1391294018 +123559,36401,Terry Gilliam,1391293998 +123559,36535,colourful,1242729898 +123559,36535,elijah wood,1242729851 +123559,36535,Eugene Hutz,1242729887 +123559,36535,ukraine,1242729865 +123559,36931,Jackie Chan,1331912778 +123559,38061,Robert Downey Jr.,1392741038 +123559,39427,Ryan Gosling,1369489305 +123559,44022,Comedy,1242995113 +123559,44022,slapstick,1242995108 +123559,44191,adapted from:comic,1242731071 +123559,44191,based on a comic,1242731075 +123559,44191,comic book,1242731073 +123559,44191,thought-provoking,1242731092 +123559,44191,visually appealing,1242731094 +123559,44900,Samuli Vauramo,1365154055 +123559,45175,cross dressing,1323618283 +123559,45175,cross dressing men,1323618274 +123559,45175,queer,1323618290 +123559,45175,transvestites,1323618280 +123559,46335,Japan,1346670853 +123559,46335,Tokyo,1346670856 +123559,46976,Dustin Hoffman,1323034486 +123559,46976,Emma Thompson,1323034483 +123559,46976,Maggie Gyllenhaal,1323034479 +123559,47610,Edward Norton,1242994326 +123559,47610,Paul Giamatti,1242994328 +123559,47610,predictable,1242994331 +123559,47610,surprise ending,1242994336 +123559,48043,Hugh Jackman,1241524144 +123559,48043,visually appealing,1241524153 +123559,48394,Guillermo del Toro,1321538536 +123559,48394,violence,1321538551 +123559,48516,boston accent,1327356637 +123559,48516,Leonardo DiCaprio,1327356614 +123559,48516,Mark Wahlberg,1327356623 +123559,48780,Hugh Jackman,1269800636 +123559,48780,Michael Caine,1269800682 +123559,48780,Scarlett Johansson,1269800644 +123559,49272,Daniel Craig,1438654764 +123559,49272,gambling,1438654752 +123559,49649,bad acting,1321540062 +123559,49649,predictable,1321540170 +123559,49772,Edward Norton,1341686272 +123559,50944,Donnie Yen,1388613543 +123559,51080,Ryan Phillippe,1318416087 +123559,51540,police,1368178278 +123559,52241,Joseph Gordon-Levitt,1341170990 +123559,52328,Chris Evans,1249783429 +123559,52328,Cillian Murphy,1249783405 +123559,52328,Danny Boyle,1249783437 +123559,52328,great soundtrack,1249783409 +123559,52885,Satoshi Kon,1356909759 +123559,52885,soundtrack,1356909757 +123559,52950,Russian,1242731399 +123559,53121,franchise,1368178023 +123559,53464,Chris Evans,1395520619 +123559,53464,Ioan Gruffudd,1395520635 +123559,53464,Marvel,1395520674 +123559,53464,superhero,1395520686 +123559,54962,Melissa McCarthy,1397854648 +123559,54962,Ryan Reynolds,1397854645 +123559,54997,violent,1321538198 +123559,55052,James McAvoy,1438467373 +123559,55269,Adrien Brody,1328561201 +123559,55269,cinematography,1328561204 +123559,55269,Owen Wilson,1328561209 +123559,55269,Train,1328561217 +123559,55280,Emily Mortimer,1242993236 +123559,55280,Ryan Gosling,1242993212 +123559,55284,Jake Gyllenhaal,1377897379 +123559,55284,Reese Witherspoon,1377897412 +123559,56171,Ian McKellen,1321539773 +123559,56339,Guillermo del Toro,1365153832 +123559,57669,Brendan Gleeson,1247057990 +123559,57669,drugs,1247057970 +123559,57669,notable cast,1247057978 +123559,58025,Hayden Christensen,1318415962 +123559,58025,Jamie Bell,1318415969 +123559,58047,Rachel Weisz,1289740659 +123559,58047,Ryan Reynolds,1289740654 +123559,58154,Natalie Portman,1319397661 +123559,58154,Scarlett Johansson,1319397657 +123559,58293,historically inaccurate,1372462519 +123559,59315,Gwyneth Paltrow,1336052400 +123559,59315,Jeff Bridges,1336052395 +123559,59315,Robert Downey Jr.,1336052397 +123559,59387,Lee Pace,1397854749 +123559,59387,visually appealing,1397854736 +123559,59615,indiana jones,1376089176 +123559,59615,Shia LaBeouf,1376089267 +123559,60037,Bad Science,1371228884 +123559,60037,M. Night Shyamalan,1371228874 +123559,60072,original,1391294412 +123559,60072,stylish,1391294415 +123559,60072,Timur Bekmambetov,1391294400 +123559,60463,Lordi,1324246856 +123559,62792,Edward Norton,1376340735 +123559,62999,dancing,1388613124 +123559,63033,hard to watch,1324152877 +123559,63033,Mark Ruffalo,1247057767 +123559,63033,rape,1324152696 +123559,63082,Danny Boyle,1321539000 +123559,63082,great soundtrack,1321538952 +123559,63082,music,1321538948 +123559,63113,franchise,1368178023 +123559,63119,Eugene Hutz,1321538403 +123559,63189,Finnish,1242733378 +123559,63189,historical,1242733413 +123559,63853,Hugh Jackman,1241524226 +123559,63853,Nicole Kidman,1241524231 +123559,64622,nazis,1368178171 +123559,65601,Jensen Ackles,1331914795 +123559,66097,animation,1318448686 +123559,66297,boring,1242992825 +123559,66297,overrated,1242992829 +123559,66297,stupid,1242992831 +123559,68157,black comedy,1389563621 +123559,68157,Michael Fassbender,1389780592 +123559,68157,visually appealing,1389563623 +123559,68237,Kevin Spacey,1346670629 +123559,68237,Sam Rockwell,1346670734 +123559,68358,Eric Bana,1242721192 +123559,68358,sci fi,1242721207 +123559,68358,Star Trek,1242721202 +123559,68791,Terminator,1318370155 +123559,68932,Robert Downey Jr.,1289740289 +123559,69406,chemistry between actors,1394370950 +123559,69406,Ryan Reynolds,1394370946 +123559,69406,Sandra Bullock,1394370948 +123559,69481,War,1269790012 +123559,69757,Joseph Gordon-Levitt,1395520845 +123559,69844,Tom Felton,1398078932 +123559,70286,social commentary,1321539395 +123559,70728,Tom Hardy,1331935959 +123559,71057,giant robots,1289744571 +123559,71156,George Clooney,1394020945 +123559,71156,Jeff Bridges,1394020940 +123559,72479,Ben Foster,1358278471 +123559,73017,Robert Downey Jr.,1392741218 +123559,73572,flamingoes,1324152458 +123559,74156,Ray Winstone,1269790854 +123559,74458,mystery,1368178132 +123559,74530,bad acting,1321539881 +123559,74530,Bad direction,1321539920 +123559,74530,everything located in the USA,1321539937 +123559,74530,predictable,1321539927 +123559,76251,gore,1324247783 +123559,76251,violence,1324247775 +123559,77561,Gwyneth Paltrow,1392740958 +123559,77561,Marvel Cinematic Universe,1392740950 +123559,77561,Robert Downey Jr.,1392740909 +123559,77561,Sam Rockwell,1392740947 +123559,77561,superhero,1392740969 +123559,78039,Ryan Gosling,1370439351 +123559,78088,Ryan Reynolds,1318369700 +123559,78105,Alfred Molina,1327356937 +123559,78105,Jake Gyllenhaal,1327356941 +123559,78105,parkour,1327356947 +123559,79132,alternate reality,1327150469 +123559,79132,Joseph Gordon-Levitt,1327150500 +123559,79132,Leonardo DiCaprio,1327150472 +123559,79132,Michael Caine,1327150476 +123559,79132,visually appealing,1327150481 +123559,80463,Mark Zuckerberg,1318416216 +123559,80549,witty,1372462384 +123559,80880,nudity (topless - notable),1368178207 +123559,80917,romance,1328561255 +123559,80917,unsympathetic characters,1328561258 +123559,81562,Danny Boyle,1321538847 +123559,81562,James Franco,1321538829 +123559,81591,Natalie Portman,1321538722 +123559,81591,Vincent Cassel,1321538718 +123559,81834,Tom Felton,1398112484 +123559,82378,Ryan Gosling,1390336614 +123559,82459,Jeff Bridges,1318445256 +123559,83349,Jay Chou,1336052284 +123559,83525,Takeshi Kitano,1393270954 +123559,84696,Bill Bailey,1391693786 +123559,84696,Edinburgh,1391693789 +123559,85025,cinematography,1328561349 +123559,85025,Jamie Bell,1328561315 +123559,85025,Scotland,1328561321 +123559,85414,Jake Gyllenhaal,1318364667 +123559,85414,mindfuck,1318364684 +123559,85414,predictable,1318364694 +123559,85414,science fiction,1318364674 +123559,86279,documentary,1332585750 +123559,86279,eerie,1332585742 +123559,86279,meditative,1332585756 +123559,86279,surreal,1332585721 +123559,86332,Marvel,1392740657 +123559,86332,Marvel Cinematic Universe,1392740611 +123559,86332,Natalie Portman,1323705933 +123559,86332,superhero,1392740609 +123559,86332,Tom Hiddleston,1392740600 +123559,87232,homoerotic subtext,1389047472 +123559,87232,James McAvoy,1389047475 +123559,87232,Marvel,1389047482 +123559,87232,Michael Fassbender,1325449222 +123559,87232,Nazis,1389047486 +123559,87232,superhero,1389047496 +123559,87304,Christopher Plummer,1358714780 +123559,87430,Ryan Reynolds,1336051910 +123559,88140,Chris Evans,1331398135 +123559,88140,Marvel,1394926506 +123559,88140,Marvel Cinematic Universe,1394926509 +123559,88140,superhero,1394926515 +123559,88163,Emma Stone,1394370794 +123559,88163,Ryan Gosling,1394370792 +123559,88235,Brendan Gleeson,1356910266 +123559,88744,James Franco,1318364732 +123559,89047,Joseph Gordon-Levitt,1318364865 +123559,89490,Alexander Skarsgard,1341171140 +123559,89490,remake,1341171154 +123559,89745,Chris Evans,1389047207 +123559,89745,Mark Ruffalo,1338646451 +123559,89745,Marvel,1338646494 +123559,89745,Marvel Cinematic Universe,1389047233 +123559,89745,Robert Downey Jr.,1338646421 +123559,89745,Tom Hiddleston,1389047194 +123559,89804,Ryan Gosling,1358007925 +123559,89804,unlikeable characters,1358007939 +123559,89864,drugs,1357127264 +123559,90249,Hugh Jackman,1395520562 +123559,90249,Rocky Homage,1395520504 +123559,90270,Alexander Skarsgard,1369489117 +123559,90403,Milla Jovovich,1356619999 +123559,90405,bad pacing,1340399908 +123559,90405,Cillian Murphy,1376087906 +123559,90439,financial crisis,1331397987 +123559,90439,Jeremy Irons,1331397948 +123559,90439,Kevin Spacey,1331397938 +123559,90439,realistic,1331397991 +123559,90439,tense,1331397983 +123559,90933,Tom Hiddleston,1397589017 +123559,91077,George Clooney,1394463247 +123559,91126,Tom Hiddleston,1397588970 +123559,91535,Edward Norton,1375303095 +123559,91535,Jeremy Renner,1375303097 +123559,91535,Rachel Weisz,1375303103 +123559,91542,Robert Downey Jr.,1392741268 +123559,91978,Sam Worthington,1355769298 +123559,92420,found footage,1393781374 +123559,92768,Helsinki,1344844588 +123559,93512,pot,1375212879 +123559,93512,signs,1375212875 +123559,94018,Alexander Skarsgard,1375541510 +123559,94018,Tadanobu Asano,1375541521 +123559,94070,Judi Dench,1365153723 +123559,94150,Maggie Gyllenhaal,1358007700 +123559,94780,Kristen Stewart,1391293794 +123559,94780,weak plot,1391293791 +123559,94864,Michael Fassbender,1340397055 +123559,94864,Noomi Rapace,1340397035 +123559,94959,Edward Norton,1373449572 +123559,94959,Wes Anderson,1373449560 +123559,95058,Robert Pattinson,1398114182 +123559,95207,Timur Bekmambetov,1372180761 +123559,95207,visually appealing,1372180796 +123559,95449,Nudity (Topless),1375561559 +123559,96417,Joseph Gordon-Levitt,1385761510 +123559,96432,alcoholism,1372180573 +123559,96432,Shia LaBeouf,1372180709 +123559,96432,Tom Hardy,1372180605 +123559,96728,Philip Seymour Hoffman,1391983653 +123559,97306,dark comedy,1389044931 +123559,97306,Sam Rockwell,1389044926 +123559,97752,visually appealing,1390414756 +123559,97866,pacing,1387554171 +123559,97866,surreal,1387554104 +123559,97923,Don Cheadle,1393182474 +123559,97938,Ang Lee,1376746152 +123559,97938,religious overtones,1376746201 +123559,97938,surreal,1376746191 +123559,97938,visually appealing,1376746192 +123559,101525,Ryan Gosling,1390775173 +123559,101741,Danny Boyle,1388870940 +123559,101741,James McAvoy,1388870950 +123559,101741,Mindfuck,1388870911 +123559,101741,Vincent Cassel,1388870922 +123559,101864,sci-fi,1385762915 +123559,102125,Ben Kingsley,1389047394 +123559,102125,Gwyneth Paltrow,1369414246 +123559,102125,Iron Man,1369414251 +123559,102125,Mark Ruffalo,1369414241 +123559,102125,Marvel,1389047382 +123559,102125,Robert Downey Jr.,1369414233 +123559,102125,superhero,1369414237 +123559,102445,Star Trek,1371164071 +123559,102684,Hallucinatory,1389459719 +123559,102684,Ryan Gosling,1389459695 +123559,102684,ultra-violence,1389459710 +123559,102783,Chris Evans,1369605071 +123559,102783,Tennessee Williams,1369605089 +123559,103228,giant robots,1375823851 +123559,103228,Guillermo del Toro,1375823848 +123559,103228,Ron Perlman,1375823856 +123559,103228,visually appealing,1375823864 +123559,103253,Diego Luna,1376745979 +123559,103253,Neill Blomkamp,1376745789 +123559,103253,Sharlto Copley,1376745971 +123559,103253,visually stunning,1376745987 +123559,103772,Hugh Jackman,1375453825 +123559,103772,Japan,1375453827 +123559,104841,Sandra Bullock,1385761861 +123559,104841,visually appealing,1385761877 +123559,104879,Hugh Jackman,1440388505 +123559,104879,Jake Gyllenhaal,1440388509 +123559,105213,Joseph Gordon-Levitt,1385761701 +123559,105844,Chiwetel Ejiofor,1391628273 +123559,105844,Michael Fassbender,1391628271 +123559,106072,Chris Hemsworth,1385761924 +123559,106072,Marvel Cinematic Universe,1385761930 +123559,106072,Tom Hiddleston,1385761921 +123559,106489,not true to the book,1439131984 +123559,106489,too long,1439131989 +123559,106918,imagination,1439135353 +123559,106918,scenic,1439135357 +123559,106918,visually appealing,1439135329 +123559,110102,Captain America,1396543014 +123559,110102,Chris Evans,1396543003 +123559,110102,Marvel Cinematic Universe,1396543006 +123559,110102,superhero,1396543021 +123559,110586,Brendan Gleeson,1438467289 +123559,110968,historically inaccurate,1440373166 +123559,111921,shailene woodley,1439144497 +123559,112070,Julianne Moore,1440701695 +123559,115170,Robert Downey Jr.,1439343641 +123559,115617,super-hero,1440387660 +123559,115617,superhero,1440387638 +123559,116797,historical inaccuracy,1439421952 +123559,122900,ants,1439139417 +123559,122900,Marvel,1439137856 +123559,122900,superhero,1439137861 +123559,135288,Based on a novel,1438654374 +123559,135288,Ian McKellen,1438654129 +123598,6467,on server,1171306796 +123608,924,sci-fi,1222374048 +123608,924,space,1222374051 +123608,1089,Quentin Tarantino,1222371316 +123608,1097,space,1222370973 +123608,1196,sci-fi,1222370917 +123608,1196,space,1222370924 +123608,1210,sci-fi,1222370995 +123608,1210,space,1222370993 +123608,4011,comedy,1222371285 +123608,4973,notable soundtrack,1222370473 +123608,5952,based on a book,1222374121 +123608,5952,fantasy,1222374119 +123608,6539,Johnny Depp,1222370931 +123608,32587,comic book,1222371003 +123608,33794,superhero,1222369927 +123612,593,action,1430333622 +123612,593,psychological,1430333622 +123612,593,suspenseful,1430333622 +123612,3535,insanity,1430334389 +123612,3535,psychology,1430334384 +123612,4963,con men,1439533214 +123612,4963,heist,1439533208 +123612,53322,Con artists,1439533183 +123612,53322,Matt Damon,1439533170 +123612,58803,blackjack,1439533113 +123612,58803,con artists,1439533125 +123612,58803,gambling,1439533118 +123612,58803,Kevin Spacey,1439533116 +123612,58803,Massachusetts Institute of Technology,1439533129 +123612,58803,mathematics,1439533107 +123612,71530,sci-fi,1450902586 +123612,71530,technology,1450902592 +123612,109487,artificial intelligence,1442113637 +123612,109487,relativity,1442113626 +123612,109487,sci-fi,1442113619 +123612,109487,thought-provoking,1442113640 +123612,109487,time-travel,1442113623 +123612,110730,artificial intelligence,1450902564 +123612,110730,nano-technology,1450902568 +123612,115210,World War II,1439533346 +123612,115713,artificial intelligence,1439533259 +123612,115713,philosophical,1439533267 +123612,115713,Psychological,1439533275 +123612,115713,sci-fi,1439533261 +123612,115713,thought provoking,1439533265 +123612,116797,cryptography,1439533296 +123612,116797,mathematics,1439533300 +123612,119145,action,1439533242 +123612,119145,spy,1439533231 +123612,129354,con artist,1439534063 +123612,129354,swindle,1439534066 +123612,129354,Will Smith,1439534060 +123612,132046,Future,1450902615 +123612,132046,sci-fi,1450902612 +123612,143385,spy,1450903124 +123612,143385,ww2,1450903130 +123646,260,awesome,1437253596 +123646,260,epic,1437253596 +123646,260,masterpiece,1437253596 +123659,3552,stoner movie,1177341446 +123661,1676,Nudity (Topless),1336412798 +123661,1983,Nudity (Topless),1336412387 +123661,2231,holdem,1336503558 +123661,2231,language,1336503554 +123661,2231,Nudity (Topless),1336503540 +123661,55442,animation,1336420547 +123661,59315,action,1336420758 +123661,59315,adventure,1336420737 +123661,59315,based on a comic,1336420719 +123661,59315,comic book,1336420722 +123661,59315,funny,1336420742 +123661,59315,Jeff Bridges,1336420746 +123661,59315,Marvel,1336420750 +123661,59315,military,1336420756 +123661,59315,murder,1336420766 +123661,59315,Robert Downey Jr.,1336420725 +123661,59315,superhero,1336420769 +123661,59315,torture,1336420761 +123661,59315,vigilante,1336420728 +123671,117533,documentary,1429405728 +123671,117533,freedom,1429405728 +123671,117533,surveillance,1429405728 +123671,128594,chick flick,1426814859 +123671,128594,love story,1426814859 +123671,128594,romance,1426814859 +123698,356,alabama,1438138980 +123698,356,historical twist,1438138980 +123698,356,meaning of life,1438138980 +123710,102445,too much action,1372150297 +123731,3949,Jared Leto,1300683806 +123731,52443,botany,1279605394 +123731,52443,distopia,1279605417 +123731,52443,everything,1279605389 +123731,52443,imagination,1279605407 +123731,52443,story,1279605399 +123731,52712,justin chatwin,1279819331 +123731,52885,charaters,1279603559 +123731,52885,soundtrack,1279603576 +123731,52885,story,1279603565 +123731,72380,Cameron Diaz,1279829458 +123731,72380,depressing,1279829458 +123731,78893,acting,1279603410 +123731,78893,characters,1279603392 +123731,78893,editing,1279603407 +123731,78893,effects,1279603395 +123731,78893,recreation,1279603419 +123731,78893,rushed,1279603446 +123731,78893,story,1279603401 +123739,893,adapted from:book,1194372791 +123739,893,lies,1194372736 +123739,893,vonnegut,1194372648 +123739,7323,communism,1194372959 +123739,7323,lies,1194372949 +123739,44195,Lobbyism,1194371831 +123739,44195,propaganda,1194371831 +123739,44555,communism,1194372851 +123739,51037,memory loss,1195668763 +123739,51037,survival,1195668763 +123744,1200,space,1446623465 +123744,134130,Space,1446623368 +123745,2762,M. Night Shyamalan,1157283537 +123745,5254,vampire,1157281249 +123745,27020,Angelina Jolie,1157284468 +123745,45662,Antichrist,1157283649 +123758,32,great ending,1426269154 +123758,32,post-apocalyptic,1426269150 +123758,32,time travel,1426269135 +123758,32,twist ending,1426269139 +123758,4344,computers,1428262209 +123758,5218,animation,1425563563 +123758,5218,funny,1425563567 +123758,5218,pixar,1425563575 +123758,5954,powerful ending,1426269063 +123758,44665,Morgan Freeman,1428262338 +123758,44665,twist ending,1428262333 +123758,61167,religion,1426269107 +123758,62644,social experiment,1428261255 +123758,92259,emotional,1425563651 +123758,92259,friendship,1425563655 +123758,92259,funny,1425563658 +123758,92259,touching,1425563662 +123758,96610,sci-fi,1425563814 +123758,96610,time travel,1425563811 +123758,98122,documentary,1425823882 +123758,98122,technology,1425823882 +123758,98122,video games,1425823882 +123758,109487,relativity,1426268867 +123758,109487,time-travel,1426268861 +123758,116397,plot twist,1425823757 +123758,116397,surprising,1425823763 +123758,116797,code breaking,1428238641 +123758,116797,Computers,1428238687 +123758,116797,cryptography,1428238633 +123758,116797,genius,1428238689 +123758,116797,mathematics,1428238697 +123758,116797,World War II,1428238704 +123772,87234,great soundtrack,1446738988 +123838,260,sci-fi,1432878275 +123838,260,space,1432878284 +123843,260,must see,1443480895 +123899,457,chase,1429719809 +123899,457,Harrison Ford,1429719803 +123899,457,tense,1429719823 +123899,457,Tommy Lee Jones,1429719805 +123899,2467,investigation,1429731276 +123899,2467,Sean Connery,1429731267 +123899,64622,coming of age,1429719628 +123899,64622,great acting,1429719650 +123899,80463,based on a true story,1429731437 +123899,80463,internet,1429731411 +123899,80463,software developers,1429731420 +123903,260,Science Fiction,1440448261 +123903,260,space,1440448265 +123907,48394,war movie,1245014977 +123919,3554,african american,1428455226 +123928,260,good for kids,1440145313 +123928,260,science fantasy,1440145323 +123931,260,empire,1439484922 +123931,260,jedi,1439484937 +123931,260,light saber,1439484933 +123931,260,Star Wars,1439484914 +123932,1198,action,1428452750 +123932,1198,adventure,1428453264 +123932,1198,biblical,1428453275 +123932,1198,classic,1428452753 +123932,1198,great soundtrack,1428453280 +123932,1198,Harrison Ford,1428452745 +123932,1198,indiana jones,1428452726 +123932,1198,Nazis,1428453269 +123932,1198,Steven Spielberg,1428452739 +123932,6539,adventure,1428453323 +123932,6539,comedy,1428453329 +123932,6539,funny,1428453331 +123932,6539,magic,1428453357 +123932,6539,romance,1428453342 +123932,6539,sword fight,1428453334 +123932,6539,treasure,1428453325 +123932,6539,treasure hunt,1428453348 +123990,33162,Director's Cut,1327269860 +123990,33162,theatrical cut,1327269891 +124015,260,adventure,1438489420 +124015,260,Science Fiction,1438489411 +124019,32,Brad Pitt,1426689074 +124019,32,Bruce Willlis,1426689049 +124019,32,dystopia,1426689031 +124019,32,Madeleine Stowe,1426689064 +124019,32,post-apocalyptic,1426689097 +124019,32,sci-fi,1426689020 +124019,47,atmospheric,1426700217 +124019,47,Brad Pitt,1426700160 +124019,47,David Fincher,1426700179 +124019,47,disturbing,1426700190 +124019,47,Gwyneth Paltrow,1426700173 +124019,47,Kevin Spacey,1426700182 +124019,47,Morgan Freeman,1426700169 +124019,47,thriller,1426700211 +124019,47,twist ending,1426700185 +124019,47,violence,1426700196 +124019,50,Kevin Spacey,1426699182 +124019,50,suspense,1426699186 +124019,50,thriller,1426699201 +124019,50,twist ending,1426699218 +124019,296,Bruce Willis,1426698737 +124019,296,Christopher Walken,1426698789 +124019,296,cult film,1426699042 +124019,296,dark comedy,1426698644 +124019,296,ensemble cast,1426698940 +124019,296,great soundtrack,1426698719 +124019,296,Harvey Keitel,1426698692 +124019,296,John Travolta,1426698663 +124019,296,multiple storylines,1426698702 +124019,296,nonlinear,1426698696 +124019,296,Quentin Tarantino,1426698642 +124019,296,quirky,1426698927 +124019,296,Samuel L. Jackson,1426698671 +124019,296,Steve Buscemi,1426698777 +124019,296,stylized,1426698707 +124019,296,Tim Roth,1426698654 +124019,296,Uma Thurman,1426698684 +124019,296,violence,1426698930 +124019,541,atmospheric,1426699852 +124019,541,cult film,1426699832 +124019,541,cyberpunk,1426699827 +124019,541,Daryl Hannah,1426699817 +124019,541,dreamlike,1426699847 +124019,541,dystopia,1426699823 +124019,541,Harrison Ford,1426699789 +124019,541,Ridley Scott,1426699782 +124019,541,Rutger Hauer,1426699794 +124019,541,sci-fi,1426699820 +124019,541,Sean Young,1426699799 +124019,541,stylized,1426699835 +124019,593,Anthony Hopkins,1426697566 +124019,593,disturbing,1426697572 +124019,593,Jodie Foster,1426697568 +124019,593,psychology,1426697563 +124019,593,suspense,1426697578 +124019,608,Coen Brothers,1426699587 +124019,608,dark comedy,1426699591 +124019,608,Frances McDormand,1426699600 +124019,608,quirky,1426699634 +124019,608,Steve Buscemi,1426699602 +124019,608,violence,1426699643 +124019,608,William H. Macy,1426699614 +124019,778,British,1426699921 +124019,778,dark comedy,1426699894 +124019,778,drugs,1426699900 +124019,778,Ewan McGregor,1426699884 +124019,778,great soundtrack,1426699903 +124019,778,social commentary,1426699897 +124019,778,surreal,1426699907 +124019,778,violence,1426699910 +124019,858,Al Pacino,1426699077 +124019,858,atmospheric,1426699142 +124019,858,James Caan,1426699098 +124019,858,mafia,1426699068 +124019,858,Marlon Brando,1426699070 +124019,858,Robert Duvall,1426699091 +124019,858,violence,1426699138 +124019,924,sci-fi,1426688878 +124019,1089,cult film,1426698860 +124019,1089,dark comedy,1426698903 +124019,1089,ensemble cast,1426698911 +124019,1089,Harvey Keitel,1426698813 +124019,1089,low budget,1426698891 +124019,1089,Michael Madsen,1426698818 +124019,1089,multiple storylines,1426698873 +124019,1089,nonlinear,1426698851 +124019,1089,Quentin Tarantino,1426698827 +124019,1089,quirky,1426698870 +124019,1089,Steve Buscemi,1426698841 +124019,1089,stylized,1426698881 +124019,1089,Tim Roth,1426698823 +124019,1089,violence,1426698879 +124019,1213,disturbing,1426698970 +124019,1213,Joe Pesci,1426699007 +124019,1213,mafia,1426698960 +124019,1213,Martin Scorsese,1426698964 +124019,1213,Ray Liotta,1426699002 +124019,1213,Robert De Niro,1426698995 +124019,1213,Samuel L. Jackson,1426698974 +124019,1213,violence,1426698968 +124019,1214,Ridley Scott,1426697717 +124019,1214,sci-fi,1426697711 +124019,1214,Sigourney Weaver,1426697723 +124019,1214,thriller,1426697713 +124019,1219,Alfred Hitchcock,1426697035 +124019,1219,horror,1426697043 +124019,1320,David Fincher,1426700415 +124019,1320,sci-fi,1426700427 +124019,1320,Sigourney Weaver,1426700422 +124019,1391,comedy,1426689560 +124019,1391,Jack Nicholson,1426689537 +124019,1391,Natalie Portman,1426689549 +124019,1391,Tim Burton,1426689552 +124019,1584,Jodie Foster,1426688807 +124019,1584,Matthew McConaughey,1426688815 +124019,1584,sci-fi,1426688797 +124019,1682,dark comedy,1426689426 +124019,1682,Ed Harris,1426689505 +124019,1682,Jim Carrey,1426689428 +124019,1682,social commentary,1426689509 +124019,1729,Bridget Fonda,1426700549 +124019,1729,dark comedy,1426700565 +124019,1729,great soundtrack,1426700569 +124019,1729,Micheal Keaton,1426700560 +124019,1729,Quentin Tarantino,1426700530 +124019,1729,quirky,1426700564 +124019,1729,Robert De Niro,1426700536 +124019,1729,Samuel L. Jackson,1426700541 +124019,1729,violence,1426700576 +124019,1784,comedy,1426689374 +124019,1784,Greg Kinnear,1426689354 +124019,1784,Helen Hunt,1426689346 +124019,1784,Jack Nicholson,1426689337 +124019,1784,relationships,1426689367 +124019,2858,Annette Bening,1426699726 +124019,2858,bittersweet,1426699754 +124019,2858,dark comedy,1426699703 +124019,2858,Kevin Spacey,1426699699 +124019,2858,powerful ending,1426699707 +124019,2858,social commentary,1426699738 +124019,2858,surreal,1426699718 +124019,2959,Brad Pitt,1426700334 +124019,2959,dark comedy,1426700363 +124019,2959,David Fincher,1426700083 +124019,2959,disturbing,1426700372 +124019,2959,Edward Norton,1426700338 +124019,2959,Helena Bonham Carter,1426700356 +124019,2959,quirky,1426700374 +124019,2959,social commentary,1426700361 +124019,2959,surreal,1426700359 +124019,2959,thought-provoking,1426700378 +124019,2959,twist ending,1426700327 +124019,2959,violence,1426700325 +124019,3481,90s,1426697534 +124019,3481,comedy,1426697527 +124019,3481,great soundtrack,1426697492 +124019,3481,Jack Black,1426697510 +124019,3481,John Cusack,1426697499 +124019,3481,relationships,1426697521 +124019,3499,James Caan,1426697625 +124019,3499,Kathy Bates,1426697629 +124019,3499,thriller,1426697615 +124019,4027,Coen Brothers,1426697258 +124019,4027,George Clooney,1426697265 +124019,4027,great soundtrack,1426697277 +124019,4027,John Goodman,1426697287 +124019,4027,John Turturro,1426697271 +124019,4308,Ewan McGregor,1426688733 +124019,4308,musical,1426688700 +124019,4308,Nicole Kidman,1426688730 +124019,4979,Anjelica Huston,1426689605 +124019,4979,Ben Stiller,1426689625 +124019,4979,Bill Murray,1426689593 +124019,4979,dark comedy,1426689616 +124019,4979,dysfunctional family,1426698362 +124019,4979,Gene Hackman,1426689584 +124019,4979,Owen Wilson,1426689622 +124019,4979,Wes Anderson,1426689609 +124019,5266,David Fincher,1426700126 +124019,5266,Forest Whitaker,1426700107 +124019,5266,Jodie Foster,1426700101 +124019,5266,Kristen Stewart,1426700128 +124019,5266,thriller,1426700131 +124019,6016,Alice Braga,1426698624 +124019,6016,black comedy,1426698600 +124019,6016,disturbing,1426698587 +124019,6016,Fernando Meirelles,1426698615 +124019,6016,multiple storylines,1426698593 +124019,6016,Rio de Janeiro,1426698590 +124019,6016,stylized,1426698585 +124019,6711,Bill Murray,1426689159 +124019,6711,bittersweet,1426689190 +124019,6711,relationships,1426689183 +124019,6711,Scarlett Johansson,1426689166 +124019,6711,Sofia Coppola,1426689173 +124019,7323,Daniel Brühl,1426689772 +124019,7323,social commentary,1426689795 +124019,7361,dreamlike,1426697133 +124019,7361,Jim Carrey,1426697112 +124019,7361,Kate Winslet,1426697123 +124019,7361,nonlinear,1426697096 +124019,7361,surreal,1426697090 +124019,8950,Christian Bale,1426697340 +124019,8950,disturbing,1426697350 +124019,8950,psychology,1426697345 +124019,8950,surreal,1426697353 +124019,32587,Bruce Willis,1426697416 +124019,32587,Clive Owen,1426697427 +124019,32587,Mickey Rourke,1426697436 +124019,32587,multiple storylines,1426697443 +124019,32587,Quentin Tarantino,1426697448 +124019,32587,stylized,1426697459 +124019,34437,Bill Murray,1426698281 +124019,34437,bittersweet,1426698338 +124019,34437,Chloë Sevigny,1426698329 +124019,34437,Tilda Swinton,1426698289 +124019,35836,Catherine Keener,1426688676 +124019,35836,comedy,1426688623 +124019,35836,Steve Carell,1426688649 +124019,48774,Clive Owen,1426688945 +124019,48774,dystopia,1426688967 +124019,48774,julianne moore,1426688960 +124019,48774,Michael Caine,1426688952 +124019,48774,social commentary,1426688976 +124019,51540,David Fincher,1426700251 +124019,51540,Jake Gyllenhaal,1426700246 +124019,51540,Mark Ruffalo,1426700240 +124019,51540,Robert Downey Jr.,1426700235 +124019,51540,stylized,1426700262 +124019,51540,suspense,1426700280 +124019,55269,Adrien Brody,1426698191 +124019,55269,Anjelica Huston,1426698211 +124019,55269,Bill Murray,1426698198 +124019,55269,dark comedy,1426698227 +124019,55269,dysfunctional family,1426698246 +124019,55269,Owen Wilson,1426698186 +124019,55269,Wes Anderson,1426698215 +124019,56782,cerebral,1426689691 +124019,56782,Daniel Day-Lewis,1426689673 +124019,56782,morality,1426689686 +124019,60069,animation,1426688328 +124019,60069,pixar,1426688311 +124019,61323,Brad Pitt,1426689230 +124019,61323,Coen Brothers,1426689223 +124019,61323,dark comedy,1426689249 +124019,61323,Frances McDormand,1426689242 +124019,61323,George Clooney,1426689235 +124019,61323,John Malkovich,1426689256 +124019,61323,Tilda Swinton,1426698398 +124019,61323,weird,1426689268 +124019,64839,identity crisis,1426688449 +124019,64839,Marisa Tomei,1426688443 +124019,64839,Mickey Rourke,1426688426 +124019,64957,bittersweet,1426700034 +124019,64957,Brad Pitt,1426700011 +124019,64957,Cate Blanchett,1426700005 +124019,64957,David Fincher,1426700041 +124019,64957,drama,1426700031 +124019,64957,Tilda Swinton,1426700016 +124019,68358,sci-fi,1426688521 +124019,68954,animation,1426688384 +124019,68954,pixar,1426688379 +124019,70286,sci-fi,1426688551 +124019,70286,social commentary,1426688572 +124019,92259,emotional,1426697208 +124019,92259,friendship,1426697201 +124019,94959,Bill Murray,1426698462 +124019,94959,bittersweet,1426698467 +124019,94959,Bruce Willis,1426698477 +124019,94959,Edward Norton,1426698464 +124019,94959,Frances McDormand,1426701018 +124019,94959,Harvey Keitel,1426698475 +124019,94959,stylized,1426698520 +124019,94959,surreal,1426698485 +124019,94959,Wes Anderson,1426698459 +124019,109374,Adrien Brody,1426699283 +124019,109374,Bill Murray,1426699504 +124019,109374,Edward Norton,1426699251 +124019,109374,Harvey Keitel,1426699349 +124019,109374,Jeff Goldblum,1426699361 +124019,109374,Jude Law,1426699495 +124019,109374,Owen Wilson,1426699537 +124019,109374,quirky,1426699551 +124019,109374,Ralph Fiennes,1426699248 +124019,109374,stylized,1426699256 +124019,109374,Tilda Swinton,1426699514 +124019,109374,Tom Wilkinson,1426699528 +124019,109374,visually appealing,1426699549 +124019,109374,Wes Anderson,1426699254 +124019,109374,Willem Dafoe,1426699286 +124019,112556,Ben Affleck,1426699953 +124019,112556,David Fincher,1426700050 +124044,260,future fantasy,1443366844 +124044,260,wars,1443366836 +124047,32587,multifaceted,1139598047 +124117,2,bad cgi,1414087602 +124117,2,horrifying (but not Horror genre),1414087740 +124117,2,Kirsten Dunst,1414087610 +124117,2,magic board game,1414087637 +124117,2,monkey,1414087624 +124117,2,not for kids,1414087688 +124117,10,James Bond,1316102385 +124117,10,Pierce Brosnan,1316102387 +124117,29,atmospheric,1315181169 +124117,29,awkward romance,1350970813 +124117,29,bleak,1315181164 +124117,29,dark fantasy,1315181161 +124117,29,dreamlike,1315181156 +124117,29,hallucinatory,1315181146 +124117,29,Nudity (Topless),1409793408 +124117,29,steampunk,1315181135 +124117,29,stylized,1315181137 +124117,29,visually appealing,1315181132 +124117,32,Brad Pitt,1315545460 +124117,32,Bruce Willis,1315545458 +124117,32,depressing,1315545464 +124117,32,dystopian,1315545469 +124117,32,dystopic future,1315545467 +124117,32,post-apocalyptic,1315545490 +124117,32,Terry Gilliam,1315545455 +124117,32,time travel,1315545453 +124117,47,cynical,1385711616 +124117,47,gore,1385711605 +124117,123,Chungking Mansions,1391585340 +124117,123,Faye Wong,1391411589 +124117,123,good music,1391411768 +124117,123,great acting,1391411600 +124117,123,loneliness,1391411783 +124117,123,obsession,1391411776 +124117,123,Takeshi Kaneshiro,1391411650 +124117,123,Tony Leung Chiu Wai,1391411638 +124117,160,Africa,1337832162 +124117,160,jungle,1337832168 +124117,163,Antonio Banderas,1399784496 +124117,163,Salma Hayek,1399784570 +124117,163,Steve Buscemi,1399784566 +124117,165,Bruce Willis,1330244278 +124117,165,New York City,1330244299 +124117,165,plot point:solving riddles/puzzles,1330244272 +124117,165,Rated R,1330244368 +124117,165,Samuel L. Jackson,1330244279 +124117,173,better than expected,1414086824 +124117,173,comic sidekick,1414086851 +124117,173,highly quotable,1414087541 +124117,173,one-liners,1414087527 +124117,173,Rob Schneider,1414086786 +124117,173,Sylvester Stallone,1414086784 +124117,253,Kirsten Dunst,1412835416 +124117,253,Tom Cruise,1412835411 +124117,253,whiney protagonist,1412837107 +124117,260,adventure,1333603541 +124117,260,Alec Guinness,1386400269 +124117,260,awesome soundtrack,1333603537 +124117,260,George Lucas,1333603558 +124117,260,Harrison Ford,1333603515 +124117,260,Peter Cushing,1385365507 +124117,260,sci-fi,1333603519 +124117,260,space,1333603523 +124117,260,SPACE TRAVEL,1333603550 +124117,260,Star Wars,1333603527 +124117,260,sword fight,1333603525 +124117,273,Frankenstein's monster,1382471655 +124117,296,action,1330675448 +124117,296,Bruce Willis,1330675417 +124117,296,dark humor,1330675467 +124117,296,foul language,1348114325 +124117,296,funny moments,1393914774 +124117,296,gangsters,1330675433 +124117,296,good dialogue,1420350216 +124117,296,great dialogue,1349252018 +124117,296,multiple storylines,1330675422 +124117,296,nonlinear,1330675528 +124117,296,police corruption,1331602541 +124117,296,Quentin Tarantino,1348114353 +124117,296,rape,1330715563 +124117,296,Samuel L. Jackson,1330675413 +124117,296,Uma Thurman,1330675428 +124117,316,James Spader,1315209035 +124117,316,military,1315209001 +124117,316,overrated,1315208995 +124117,316,pyramids,1315209076 +124117,316,Stargate,1315209084 +124117,329,beloved character dies pointlessly,1380262557 +124117,329,Patrick Stewart,1316247214 +124117,329,ruined the franchise,1380262278 +124117,329,Star Trek,1380262238 +124117,329,time travel,1380262232 +124117,329,William Shatner,1316247191 +124117,393,Jean-Claude Van Damme,1424729328 +124117,457,great dialogue,1349251966 +124117,457,Harrison Ford,1349251927 +124117,457,on the run,1391411389 +124117,457,suspense,1349251912 +124117,457,Tommy Lee Jones,1349251891 +124117,480,bad science,1366240892 +124117,480,cloning,1381991913 +124117,480,dinosaurs,1315181611 +124117,480,fun,1366240953 +124117,480,horror,1315181615 +124117,480,Sam Neill,1330059536 +124117,480,Steven Spielberg,1315181629 +124117,480,Suspense,1315181618 +124117,480,tense,1315181624 +124117,480,wonder,1367046745 +124117,533,1930s,1364533512 +124117,533,Alec Baldwin,1364533420 +124117,533,atomic bomb,1364534825 +124117,533,bad script,1364533490 +124117,533,David Koepp,1364533596 +124117,533,mind control,1364533644 +124117,533,no character development,1364533742 +124117,533,psychic powers,1364533544 +124117,533,pulp hero,1344702638 +124117,533,Russell Mulcahy,1364533467 +124117,541,action,1328841862 +124117,541,author:Philip K. Dick,1328758603 +124117,541,film noir,1328758598 +124117,541,Harrison Ford,1328758590 +124117,541,narrated,1328841867 +124117,541,Nudity (Topless),1328758622 +124117,541,Philip K. Dick,1328758587 +124117,565,Guillermo del Toro,1415082638 +124117,565,Ron Perlman,1415082635 +124117,565,vampires,1415083216 +124117,588,Aladdin,1411451331 +124117,588,Arabian Nights,1394101165 +124117,588,djinn,1412140118 +124117,588,magic carpet,1394101135 +124117,588,princess who doesn't like being a princess,1412140184 +124117,588,Robin Williams,1412140098 +124117,592,Batman,1381028397 +124117,592,Batman kills,1381028183 +124117,592,contrived romance,1381028073 +124117,592,dated,1381029066 +124117,592,Kim Basinger,1381028076 +124117,592,superhero,1381028091 +124117,594,fairy tale,1349596346 +124117,595,Disney,1381029276 +124117,616,animal:cat,1403757419 +124117,737,bounty hunter(s),1396928012 +124117,741,2D/3D hybrid Animation,1315207873 +124117,741,anime,1332998652 +124117,741,artificial intelligence,1315207924 +124117,741,cyberpunk,1315895750 +124117,741,fanservice,1377931865 +124117,741,Japan,1377109923 +124117,741,Nudity (Animated),1377109909 +124117,741,overrated,1315207850 +124117,747,Christopher Lee,1397796021 +124117,747,some funny parts,1397796056 +124117,780,alien invasion,1315208745 +124117,780,aliens,1343711091 +124117,780,Area 51,1315208847 +124117,780,conspiracy theory,1315208758 +124117,780,Jeff Goldblum,1315208799 +124117,780,rousing,1315208839 +124117,780,sci-fi,1343711062 +124117,780,US President,1315208771 +124117,780,Will Smith,1343711043 +124117,899,classic Hollywood,1315440641 +124117,899,enjoyable,1315440635 +124117,899,movie business,1315440632 +124117,899,set in the 1920s,1315440626 +124117,902,animal:cat,1403757123 +124117,902,Audrey Hepburn,1316385259 +124117,902,gigolo,1385869977 +124117,902,Mickey Rooney,1385870007 +124117,902,racist humor,1403757108 +124117,902,yellowface,1385869960 +124117,903,Alfred Hitchcock,1344407903 +124117,903,Dream Sequence,1344407915 +124117,903,HAUNTED BY THE PAST,1344407897 +124117,903,James Stewart,1417942244 +124117,903,Kim Novak,1417942366 +124117,903,obsession,1417942345 +124117,904,Alfred Hitchcock,1316110498 +124117,904,James Stewart,1316110500 +124117,904,photographer,1316110521 +124117,905,bus,1414395519 +124117,905,Clark Gable,1315941167 +124117,905,Claudette Colbert,1315941163 +124117,905,Frank Capra,1315941166 +124117,906,Charles Boyer,1391657817 +124117,906,Ingrid Bergman,1316110119 +124117,908,James Mason,1382043652 +124117,908,Martin Landau,1391411466 +124117,908,on the run,1391411461 +124117,909,Fred MacMurray,1384386104 +124117,910,Marilyn Monroe,1403929864 +124117,910,trains,1403929878 +124117,911,Cary Grant,1345953176 +124117,911,odd sense of humor,1384845385 +124117,912,Conrad Veidt,1395379644 +124117,912,dialogue,1330159378 +124117,912,elegant,1330159374 +124117,912,espionage,1330159283 +124117,912,Humphrey Bogart,1330159275 +124117,912,Nazis,1330159368 +124117,912,quotable,1330159260 +124117,912,World War II,1330159341 +124117,913,Dashiell Hammett,1366434188 +124117,913,Elisha Cook Jr.,1375421382 +124117,913,film-noir,1349595970 +124117,913,Humphrey Bogart,1349595964 +124117,913,Mary Astor,1375421261 +124117,913,Peter Lorre,1349596034 +124117,913,Sydney Greenstreet,1375421854 +124117,913,The Maltese Falcon,1375685601 +124117,915,Humphrey Bogart,1360478292 +124117,916,Audrey Hepburn,1316385197 +124117,916,Bechdel Test:Fail,1382927496 +124117,916,Gregory Peck,1316385194 +124117,916,princess,1382927470 +124117,916,romantic comedy,1316385228 +124117,916,Rome,1316385204 +124117,919,classic,1386733174 +124117,919,colourful,1315440579 +124117,919,Judy Garland,1447404531 +124117,919,witch,1386733163 +124117,924,classic,1315208482 +124117,924,episodic,1330069269 +124117,924,Oscar (Best Effects - Visual Effects),1315208431 +124117,924,shallow plot,1315208414 +124117,924,somber,1315208441 +124117,924,space travel,1315208454 +124117,925,gypsy,1380149551 +124117,925,Marlene Dietrich,1380149496 +124117,925,Ray Milland,1380149480 +124117,928,Alfred Hitchcock,1316109927 +124117,928,Gothic,1316109928 +124117,928,ominous,1316109934 +124117,929,Alfred Hitchcock,1316110390 +124117,929,Europe,1316110408 +124117,929,journalism,1316110402 +124117,930,Alfred Hitchcock,1316110304 +124117,930,Cary Grant,1316110306 +124117,930,Ingrid Bergman,1316110310 +124117,930,Nazis,1316110313 +124117,931,Alfred Hitchcock,1315506174 +124117,931,amnesia,1344407846 +124117,932,Deborah Kerr,1391657108 +124117,932,painful to watch,1391657125 +124117,932,unnecessary remake,1391657142 +124117,933,Alfred Hitchcock,1316229693 +124117,933,Cary Grant,1316229691 +124117,933,Grace Kelly,1316229690 +124117,933,subgenre:cat burglar,1316229683 +124117,940,archery,1330844716 +124117,940,Errol Flynn,1330844681 +124117,940,forest,1330844688 +124117,940,outlaw,1330844706 +124117,940,swashbuckler,1330844702 +124117,942,Dana Andrews,1401510399 +124117,942,good concept,1401509779 +124117,943,aging,1330159917 +124117,943,supernatural romance,1316247778 +124117,946,World War II,1315939842 +124117,947,butler,1391058692 +124117,947,ECCENTRIC FAMILIES,1391058705 +124117,947,Mischa Auer,1391058769 +124117,947,screwball comedy,1391058680 +124117,947,William Powell,1391058675 +124117,948,aging,1402236733 +124117,948,depressing,1402236790 +124117,950,chemistry between actors,1381120409 +124117,950,Dashiell Hammett,1366432579 +124117,950,Myrna Loy,1372138320 +124117,950,snappy banter,1372138332 +124117,950,William Powell,1372138318 +124117,952,author:Jules Verne,1315885268 +124117,952,cameo-fest,1379620100 +124117,952,cameos,1379620124 +124117,952,David Niven,1315885278 +124117,952,Jules Verne,1315885281 +124117,953,alternate reality,1339652350 +124117,953,angel,1316142690 +124117,953,angelic intervention,1316142671 +124117,953,angels,1316142692 +124117,953,black and white,1316142698 +124117,953,Christmas,1316142651 +124117,953,Frank Capra,1316142653 +124117,953,James Stewart,1316142656 +124117,953,small town,1316142679 +124117,955,Cary Grant,1315941353 +124117,955,comedy,1315941392 +124117,955,Katherine Hepburn,1315941381 +124117,955,romantic comedy,1315941397 +124117,955,witty,1315941357 +124117,956,depressing,1349856996 +124117,965,Alfred Hitchcock,1366434425 +124117,965,fugitive,1366434474 +124117,965,on the run,1391411424 +124117,965,thriller,1366434485 +124117,965,train,1366434443 +124117,965,wrongly accused,1366434461 +124117,968,zombies,1442811704 +124117,969,Humphrey Bogart,1316142751 +124117,969,jungle,1316142767 +124117,969,Katherine Hepburn,1316142754 +124117,976,Ernest Hemingway,1330159180 +124117,1009,animal:cat,1409030557 +124117,1009,ESP,1408846537 +124117,1009,Ray Milland,1408846524 +124117,1009,superstitious hicks,1408846671 +124117,1009,telekinesis,1408846574 +124117,1009,UFO,1408846606 +124117,1017,island,1384386362 +124117,1017,James MacArthur,1384386409 +124117,1017,shipwreck,1384386360 +124117,1018,animal:cat,1403757239 +124117,1019,James Mason,1378432479 +124117,1019,Jules Verne,1315810299 +124117,1019,monster:giant cephalopod,1382329327 +124117,1019,sea monster,1315810308 +124117,1019,submarine,1315810311 +124117,1022,fairy tale,1384924565 +124117,1029,bullying,1390975512 +124117,1029,circus,1390975508 +124117,1029,cute,1390975563 +124117,1029,elephants,1390975544 +124117,1029,hallucination,1390975783 +124117,1029,mother-son relationship,1390975593 +124117,1031,animal:cat,1403757075 +124117,1032,animal:cat,1410661868 +124117,1035,1930s,1345617455 +124117,1035,children,1345617462 +124117,1035,Christopher Plummer,1345617433 +124117,1035,Julie Andrews,1345617436 +124117,1035,music,1345617506 +124117,1035,musical,1345617504 +124117,1035,Nazis,1345617489 +124117,1035,World War II,1345617446 +124117,1036,action,1315190926 +124117,1036,Alan Rickman,1315190921 +124117,1036,Bruce Willis,1315190904 +124117,1036,Christmas,1329294188 +124117,1036,crime,1336432040 +124117,1036,explosions,1334464737 +124117,1036,foul language,1348114244 +124117,1036,heroic,1329294237 +124117,1036,heroism,1348114273 +124117,1036,intense,1329294168 +124117,1036,lone hero,1336432013 +124117,1036,R,1336432088 +124117,1036,rousing,1329294148 +124117,1036,sadistic,1315190929 +124117,1036,skyscraper,1336432046 +124117,1036,thriller,1315190944 +124117,1036,violence,1329294161 +124117,1076,better than the book,1416904077 +124117,1076,creepy,1416904051 +124117,1076,ghosts,1416904045 +124117,1076,governess,1416904123 +124117,1076,scary,1416904096 +124117,1086,adultery,1382463638 +124117,1086,Alfred Hitchcock,1315777527 +124117,1086,infidelity,1382463654 +124117,1086,Ray Milland,1372491581 +124117,1086,TREACHEROUS SPOUSES,1315777516 +124117,1089,nonlinear,1407820987 +124117,1097,Steven Spielberg,1315810203 +124117,1099,Christmas,1330873389 +124117,1099,Gene Lockhart,1387860330 +124117,1103,James Dean,1330874893 +124117,1104,New Orleans,1330874958 +124117,1104,setting:New Orleans,1330874955 +124117,1104,Vivian Leigh,1330874950 +124117,1152,Richard Basehart,1339957960 +124117,1177,Alfred Molina,1396488891 +124117,1196,action,1333603620 +124117,1196,adventure,1333603618 +124117,1196,Alec Guinness,1386400587 +124117,1196,aliens,1342860610 +124117,1196,bounty hunter(s),1391761499 +124117,1196,classic,1342860605 +124117,1196,George Lucas,1342860589 +124117,1196,great soundtrack,1333603599 +124117,1196,Harrison Ford,1333603580 +124117,1196,robots,1333603602 +124117,1196,sci-fi,1333603611 +124117,1196,space,1333603583 +124117,1196,Space battle,1342860669 +124117,1196,star wars,1333603584 +124117,1196,sword fight,1333603585 +124117,1196,To Be Continued,1342860658 +124117,1197,fantasy,1377805419 +124117,1197,Highly quotable,1377805414 +124117,1197,Mandy Patinkin,1377805483 +124117,1197,swashbuckler,1377805411 +124117,1197,torture,1377805405 +124117,1198,fun,1405876376 +124117,1198,Good action,1405876382 +124117,1198,Harrison Ford,1405876371 +124117,1200,action,1341210808 +124117,1200,alien,1341210812 +124117,1200,aliens,1341210813 +124117,1200,better than the first,1412724180 +124117,1200,foul language,1341210822 +124117,1200,greedy executive theme,1341210792 +124117,1200,James Cameron,1341210839 +124117,1200,military,1341210836 +124117,1201,bounty hunter(s),1391761196 +124117,1201,Clint Eastwood,1395337279 +124117,1201,complex morality,1397275281 +124117,1201,Eli Wallach,1395337855 +124117,1201,epic,1395337389 +124117,1201,epically meandering,1397275688 +124117,1201,Lee Van Cleef,1395337294 +124117,1201,moral ambiguity,1395337883 +124117,1201,not enough Lee Van Cleef,1395337322 +124117,1201,Nudity (Rear),1395382833 +124117,1201,torture,1395338853 +124117,1201,treasure hunt,1395337352 +124117,1201,war crimes,1395337345 +124117,1204,Alec Guinness,1386400233 +124117,1204,good music,1315778275 +124117,1207,Gregory Peck,1442811864 +124117,1207,Harper Lee,1442811870 +124117,1209,Ennio Morricone,1397284228 +124117,1209,rape,1397284294 +124117,1209,Sergio Leone,1397284231 +124117,1209,trains,1397284333 +124117,1210,adventure,1333603662 +124117,1210,Alec Guinness,1386400603 +124117,1210,bounty hunter(s),1391761559 +124117,1210,George Lucas,1333603691 +124117,1210,great soundtrack,1333603657 +124117,1210,Harrison Ford,1333603635 +124117,1210,redemption,1333603648 +124117,1210,robots,1333603682 +124117,1210,space,1333603641 +124117,1210,Star Wars,1333603637 +124117,1212,mind games,1372491647 +124117,1212,Orson Welles,1316110739 +124117,1214,alien,1341125611 +124117,1214,atmospheric,1341125618 +124117,1214,gruesome,1342593464 +124117,1214,H. R. Giger,1447404601 +124117,1214,horror,1341125627 +124117,1214,Ridley Scott,1342593455 +124117,1214,sci-fi,1341125633 +124117,1214,Sigourney Weaver,1341125598 +124117,1219,Alfred Hitchcock,1378452687 +124117,1219,Anthony Perkins,1378452701 +124117,1219,mother-son relationship,1378452677 +124117,1226,John Wayne,1335509736 +124117,1226,Victor McLaglen,1335509745 +124117,1232,artsy,1385959057 +124117,1232,bad dub,1380355234 +124117,1232,breaks the fourth wall,1376792387 +124117,1232,contemplative,1376792254 +124117,1232,Russian,1376960651 +124117,1232,sepia,1376792344 +124117,1232,slow,1376792279 +124117,1232,slow paced,1376792282 +124117,1232,strange,1376792545 +124117,1232,the book was better,1376792519 +124117,1232,very long,1376792575 +124117,1234,caper,1315369903 +124117,1234,con artists,1315369905 +124117,1234,con men,1315369900 +124117,1234,great soundtrack,1315369923 +124117,1234,Scott Joplin,1365357177 +124117,1237,chess,1409540723 +124117,1237,Death,1409540831 +124117,1237,existentialism,1409540827 +124117,1237,Max von Sydow,1409540715 +124117,1237,plague,1409540847 +124117,1237,seeking meaning,1409540873 +124117,1250,Alec Guinness,1386400183 +124117,1250,Catchy Score,1316142844 +124117,1254,Humphrey Bogart,1330874699 +124117,1254,John Huston,1330874701 +124117,1254,paranoid,1330874673 +124117,1254,Quotable,1330874690 +124117,1256,black and white,1328821355 +124117,1256,Marx Brothers,1316229925 +124117,1256,musical,1328821343 +124117,1260,child killing,1384843068 +124117,1260,Fritz Lang,1384842509 +124117,1260,great acting,1384842344 +124117,1260,mental illness,1384842487 +124117,1260,Peter Lorre,1384842340 +124117,1265,Bill Murray,1402907272 +124117,1265,character development,1403333954 +124117,1265,fun,1405876795 +124117,1265,funny,1403737647 +124117,1265,life changing,1403737585 +124117,1265,Michael Shannon,1403737541 +124117,1265,time loop,1402907282 +124117,1266,bounty hunter(s),1391762389 +124117,1269,Cary Grant,1315777655 +124117,1269,dark comedy,1315777659 +124117,1269,Frank Capra,1315777648 +124117,1269,newlyweds,1349993835 +124117,1270,attempted rape,1401134040 +124117,1270,time travel,1401133962 +124117,1274,animation looks dated,1377804281 +124117,1274,anime,1332998344 +124117,1274,cyberpunk,1315208186 +124117,1274,dystopia,1315208180 +124117,1274,ESP,1332998352 +124117,1274,gore,1377804308 +124117,1274,Nudity (Animated),1377109976 +124117,1274,overrated,1315208165 +124117,1274,PSYCHIC ABILITIES,1332998378 +124117,1274,science fiction,1332998380 +124117,1274,telekinesis,1332998353 +124117,1274,violent,1315208195 +124117,1281,Charlie Chaplin,1315777921 +124117,1281,multiple roles,1315777994 +124117,1281,Nazi Germany,1315777983 +124117,1281,Nazis,1315777975 +124117,1281,satire,1315777928 +124117,1282,classical music,1412652393 +124117,1282,dinosaurs,1412652395 +124117,1282,Greek mythology,1412652279 +124117,1282,Nudity (Animated),1412652218 +124117,1283,genre:western noir,1316106898 +124117,1283,Grace Kelly,1316106838 +124117,1283,gunfight,1316106842 +124117,1284,convoluted,1403847333 +124117,1284,Humphrey Bogart,1316110580 +124117,1287,Charlton Heston,1315884994 +124117,1287,redemption,1329365761 +124117,1287,Roman empire,1315885011 +124117,1287,sweeping,1329365821 +124117,1288,deadpan,1416382501 +124117,1288,mockumentary,1416382490 +124117,1288,satire,1416382521 +124117,1291,Adventure,1367201568 +124117,1291,airships,1400301356 +124117,1291,father-son relationship,1367201552 +124117,1291,Harrison Ford,1367201543 +124117,1291,Nazis,1367201572 +124117,1291,Sean Connery,1367201557 +124117,1291,Steven Spielberg,1367201559 +124117,1291,Venice,1367201538 +124117,1291,zeppelin,1367201623 +124117,1301,good ending,1396506669 +124117,1301,monster:invisible,1396506713 +124117,1303,author:Rudyard Kipling,1334383822 +124117,1303,bad acting,1334383649 +124117,1303,Christopher Plummer,1334383591 +124117,1303,India,1334383574 +124117,1303,Masonic messages,1334383687 +124117,1303,Masons,1334383745 +124117,1303,Michael Caine,1334383549 +124117,1303,Rudyard Kipling,1334383604 +124117,1303,Sean Connery,1334383553 +124117,1303,slow paced,1334383635 +124117,1303,slow start,1334383816 +124117,1304,on the run,1391411317 +124117,1320,BAD special effects,1342511648 +124117,1320,crappy,1342511301 +124117,1320,David Fincher,1368924492 +124117,1320,no suspense,1342511615 +124117,1320,not scary,1342511303 +124117,1320,poor character development,1349594709 +124117,1320,rape,1342511464 +124117,1320,Ruined the franchise,1342511450 +124117,1320,Sigourney Weaver,1342511318 +124117,1320,unnecessary sequel,1349594767 +124117,1320,waste of time,1363398744 +124117,1320,wasted potential,1342511314 +124117,1333,Alfred Hitchcock,1315504877 +124117,1333,animal attacks,1344537256 +124117,1333,birds,1344537262 +124117,1334,monster:blob,1378432282 +124117,1334,Steve McQueen,1378432299 +124117,1334,theme song,1328258840 +124117,1340,Black comedy,1349593668 +124117,1340,Boris Karloff,1349593655 +124117,1340,Colin Clive,1388379162 +124117,1340,Frankenstein's monster,1382470726 +124117,1340,good sequel,1349593688 +124117,1340,gothic,1315942172 +124117,1340,religious symbolism,1315942159 +124117,1340,Universal monsters,1349593644 +124117,1348,German Expressionism,1394938735 +124117,1348,gothic,1315942346 +124117,1348,silent movie,1379299376 +124117,1348,vampires,1379299383 +124117,1350,Biblical,1335510129 +124117,1350,Christianity,1335510104 +124117,1350,devil,1335510140 +124117,1350,religion,1335510111 +124117,1370,bad sequel,1328758253 +124117,1370,Bruce Willis,1328758235 +124117,1370,inferior sequel,1328758275 +124117,1371,DeForest Kelley,1328259209 +124117,1371,lame name,1328259272 +124117,1371,slow,1328259237 +124117,1371,William Shatner,1328259192 +124117,1372,Klingons,1315809778 +124117,1372,Leonard Nimoy,1315809784 +124117,1372,racism,1315809798 +124117,1372,Star Trek,1315809732 +124117,1372,William Shatner,1315809730 +124117,1373,cheap laughs,1379311289 +124117,1373,Star Trek,1316247301 +124117,1373,William Shatner,1379311323 +124117,1374,Captain Kirk,1315809940 +124117,1374,DeForest Kelley,1333602822 +124117,1374,Leonard Nimoy,1315809844 +124117,1374,Ricardo Montalban,1333602808 +124117,1374,sacrifice,1315809892 +124117,1374,Star Trek,1315809831 +124117,1374,William Shatner,1315809827 +124117,1375,aliens,1340350375 +124117,1375,DeForest Kelley,1340350349 +124117,1375,Leonard Nimoy,1340350304 +124117,1375,Star Trek,1340350237 +124117,1375,William Shatner,1340350233 +124117,1376,environmental,1316652892 +124117,1376,Star Trek,1316652894 +124117,1376,time travel,1316652897 +124117,1376,William Shatner,1316652921 +124117,1377,Batman,1385869053 +124117,1377,Batman kills,1385867576 +124117,1377,better than expected,1385868645 +124117,1377,Catwoman,1385868502 +124117,1377,Christopher Walken,1385867593 +124117,1377,Michelle Pfeiffer,1385867579 +124117,1377,sexual references,1385868966 +124117,1377,still the best Catwoman,1385868560 +124117,1377,superhero,1382318571 +124117,1377,Tim Burton,1385868452 +124117,1387,animal attacks,1398666125 +124117,1387,shark,1398666144 +124117,1387,shark-attacks,1398666145 +124117,1387,suspenseful,1398666102 +124117,1388,shark,1400300625 +124117,1460,animal:cat,1403757404 +124117,1527,action,1315181083 +124117,1527,aliens,1315181090 +124117,1527,Bruce Willis,1315181031 +124117,1527,Chris Tucker,1348115333 +124117,1527,colorful,1348115265 +124117,1527,dystopia,1315181073 +124117,1527,dystopic future,1315181070 +124117,1527,futuristic,1315181060 +124117,1527,Gary Oldman,1315181037 +124117,1527,Ian Holm,1348115379 +124117,1527,Luc Besson,1348115420 +124117,1527,Milla Jovovich,1348115413 +124117,1544,cash-in sequel,1406184616 +124117,1544,dinosaurs,1316142080 +124117,1544,drawn out,1367031815 +124117,1544,environmental,1367031872 +124117,1544,inferior sequel,1379221394 +124117,1544,Jeff Goldblum,1316142056 +124117,1544,jungle,1379221436 +124117,1544,predictable,1367031776 +124117,1544,Steven Spielberg,1316142041 +124117,1544,Vince Vaughn,1367031654 +124117,1566,Danny DeVito,1414474857 +124117,1566,formulaic,1414474766 +124117,1566,misinformation,1414474726 +124117,1566,predictable,1414474749 +124117,1566,wrong,1414474785 +124117,1566,wrong. so wrong,1414474745 +124117,1580,aliens,1342764286 +124117,1580,bugs,1342764737 +124117,1580,sci-fi,1342764277 +124117,1580,Tommy Lee Jones,1342764196 +124117,1580,Vincent D'Onofrio,1342764265 +124117,1580,Will Smith,1342764273 +124117,1587,Arnold Schwarzenegger,1315203961 +124117,1587,blood,1315204106 +124117,1587,Boring,1315204101 +124117,1587,brutality,1315204026 +124117,1587,James Earl Jones,1315204062 +124117,1587,muscle,1315204114 +124117,1587,Nudity (Topless),1315203999 +124117,1587,pulp,1315203987 +124117,1587,R,1315204083 +124117,1587,simple,1315204044 +124117,1587,sword and sorcery,1315203971 +124117,1587,unintentionally funny,1315203979 +124117,1599,superhero,1408244005 +124117,1603,Guillermo del Toro,1417598176 +124117,1603,monster:giant insect,1382329528 +124117,1625,David Fincher,1370763499 +124117,1625,Deborah Kara Unger,1370763698 +124117,1625,Michael Douglas,1370763455 +124117,1625,psychological,1370763242 +124117,1625,R,1370763213 +124117,1625,twist ending,1370763441 +124117,1625,unrealistic,1370763202 +124117,1653,dystopia,1315179620 +124117,1653,dystopic future,1315179618 +124117,1653,Ethan Hawke,1315179614 +124117,1653,intelligent,1315179628 +124117,1653,Jude Law,1315179607 +124117,1653,suicide,1315179597 +124117,1653,thought-provoking,1315179600 +124117,1653,Uma Thurman,1315179644 +124117,1676,monster:giant insect,1382422621 +124117,1690,alien series,1342592259 +124117,1690,Brad Dourif,1342592180 +124117,1690,dystopia,1342592208 +124117,1690,dystopic future,1342592189 +124117,1690,Ron Perlman,1342592174 +124117,1690,Sigourney Weaver,1342592169 +124117,1690,Winona Ryder,1342592176 +124117,1748,aliens,1366432731 +124117,1748,amnesia,1347686051 +124117,1748,dark fantasy,1315182436 +124117,1748,dreamlike,1315182438 +124117,1748,dystopia,1335511140 +124117,1748,Kiefer Sutherland,1315546538 +124117,1748,memory,1315182445 +124117,1748,nocturnal,1347686040 +124117,1748,original,1315546547 +124117,1748,prostitution,1350970902 +124117,1748,psychological thriller,1366432781 +124117,1748,R,1335511133 +124117,1748,somber,1347686033 +124117,1748,stylized,1315182450 +124117,1748,surreal,1315182455 +124117,1748,thought-provoking,1315182430 +124117,1748,visually appealing,1315182452 +124117,1748,weird,1335511160 +124117,1748,William Hurt,1399430808 +124117,1792,bad twist ending,1363398837 +124117,1792,Robert Downey Jr.,1363398608 +124117,1792,the original is better,1363398816 +124117,1792,Tommy Lee Jones,1363398612 +124117,1792,unnecessary sequel,1363398637 +124117,1831,bad costumes,1399430664 +124117,1831,dysfunctional family,1399430705 +124117,1831,Gary Oldman,1399430152 +124117,1831,Lacey Chabert,1399525443 +124117,1831,lost in time,1399430610 +124117,1831,Matt LeBlanc,1399430473 +124117,1831,poor effects,1399430515 +124117,1831,time travel,1399430592 +124117,1831,William Hurt,1399525369 +124117,1834,con artists,1315545736 +124117,1834,con men,1315545738 +124117,1834,Hitchcock wannabe,1358222696 +124117,1834,Steve Martin,1315545770 +124117,1834,twist ending,1315545722 +124117,1882,Godzilla Universe,1397160728 +124117,1882,Hank Azaria,1358576605 +124117,1882,Matthew Broderick,1358576637 +124117,1882,monster:giant lizard,1390772354 +124117,1882,Roland Emmerich,1390772380 +124117,1882,Zilla,1382072054 +124117,1907,judgemental of other cultures,1413788780 +124117,1907,preachy,1413709357 +124117,1924,aliens,1333686072 +124117,1924,Bela Lugosi,1366270918 +124117,1924,best worst movie,1333686099 +124117,1924,cult film,1316101237 +124117,1924,Edward D. Wood Jr.,1316101194 +124117,1924,so bad it's good,1316101188 +124117,1924,worst movie ever,1316101218 +124117,1927,anti-war,1316248659 +124117,1927,German perspective,1316248652 +124117,1927,World War I,1316248667 +124117,1937,Barry Fitzgerald,1400698511 +124117,1937,Bing Crosby,1400698498 +124117,1937,priest as protagonist,1400698556 +124117,1938,addiction,1380149128 +124117,1938,alcoholism,1380149123 +124117,1938,great acting,1380149339 +124117,1938,Ray Milland,1380149154 +124117,1938,writer,1380149289 +124117,1940,Judaism,1383617172 +124117,1945,Karl Malden,1392573221 +124117,1947,gang war,1386303433 +124117,1947,gangs,1329606402 +124117,1947,New York City,1329606420 +124117,1954,Burt Young,1390592443 +124117,1954,funny,1379906076 +124117,1954,great dialogue,1379905930 +124117,1954,shyness,1379918861 +124117,1954,Sylvester Stallone,1379905899 +124117,1967,Adventure,1315202726 +124117,1967,crude humor,1332004336 +124117,1967,David Bowie,1315202705 +124117,1967,dreamlike,1315202723 +124117,1967,fantasy,1332004384 +124117,1967,Jennifer Connelly,1315202709 +124117,1967,maze,1315202715 +124117,1967,music,1315202740 +124117,1967,surreal,1315202717 +124117,2006,Anthony Hopkins,1379558894 +124117,2006,Antonio Banderas,1379558929 +124117,2006,Catherine Zeta-Jones,1379559162 +124117,2006,Nudity (Rear),1379558906 +124117,2010,Brigitte Helm,1385011074 +124117,2010,dystopia,1385010872 +124117,2010,Fritz Lang,1385010843 +124117,2010,German Expressionism,1394939480 +124117,2010,great acting,1385011082 +124117,2010,robot,1385010907 +124117,2011,breast implants,1401641061 +124117,2011,Christopher Lloyd,1401641053 +124117,2011,unnecessary sequel,1401641082 +124117,2012,time travel,1401686282 +124117,2012,trains,1401686278 +124117,2018,evil hunter,1416112877 +124117,2033,boring plot,1414129912 +124117,2033,cleavage,1414129467 +124117,2033,Lord of the Rings ripoff,1414129992 +124117,2033,unlikeable characters,1414129887 +124117,2033,worst Disney movie,1414129954 +124117,2034,bad science,1360398711 +124117,2034,Ernest Borgnine,1360398773 +124117,2034,mad scientist,1360398858 +124117,2034,Maximilian Schell,1360398729 +124117,2034,robots,1360398847 +124117,2034,silly,1360399204 +124117,2034,weird ending,1360399392 +124117,2037,con artists,1415082556 +124117,2037,David Niven,1415082501 +124117,2037,Helen Hayes,1415082511 +124117,2037,Jodie Foster,1415082520 +124117,2037,treasure hunt,1415082538 +124117,2041,globetrotting,1396073244 +124117,2041,Oliver Reed,1396073108 +124117,2041,spoof,1396073198 +124117,2041,spy,1349932569 +124117,2041,superhero,1349932326 +124117,2043,Sean Connery,1331175970 +124117,2043,Sean Connery was the best part,1331175978 +124117,2048,awesome,1408669752 +124117,2048,Barrie Ingham,1408673895 +124117,2048,Basil Rathbone as Sherlock Holmes,1408669932 +124117,2048,battle of wits,1408673460 +124117,2048,criminal mastermind,1408673786 +124117,2048,overconfident genius,1408669777 +124117,2048,robots,1408673532 +124117,2048,unapologetically awesome characters,1408681926 +124117,2048,Vincent Price,1408669760 +124117,2056,Jules Verne,1315884780 +124117,2057,animal:cat,1403757390 +124117,2067,Alec Guinness,1386400452 +124117,2078,jungle,1410324503 +124117,2078,Louis Prima,1410324576 +124117,2078,Rudyard Kipling,1410324553 +124117,2078,talking animals,1410324494 +124117,2079,adventure,1384386566 +124117,2079,James MacArthur,1384386593 +124117,2079,Peter Finch,1384386548 +124117,2079,Scotland,1384386558 +124117,2079,swashbuckler,1384386628 +124117,2080,misunderstandings,1415169177 +124117,2080,racial stereotypes,1415169093 +124117,2080,rats,1415169271 +124117,2080,stereotypes,1415169283 +124117,2081,mermaid,1415693855 +124117,2083,Christmas,1331194080 +124117,2083,Frank Oz,1331194071 +124117,2083,fun movie,1331194084 +124117,2083,good acting,1387860528 +124117,2083,Michael Caine,1331194040 +124117,2083,redemption,1331194067 +124117,2083,Victorian era,1331194034 +124117,2084,Christian Bale,1416203274 +124117,2084,corrupt cops,1416203505 +124117,2084,oversimplification,1416209022 +124117,2085,Cruella De Vil,1414077481 +124117,2094,Jennifer Connelly,1337832079 +124117,2094,Joe Johnston,1337832037 +124117,2094,superhero,1337832088 +124117,2094,Timothy Dalton,1337832032 +124117,2105,cyberpunk,1315281814 +124117,2105,hackers,1315281883 +124117,2105,Jeff Bridges,1328463818 +124117,2105,setting:in computer,1315281906 +124117,2105,virtual reality,1315281888 +124117,2115,child labor,1406184292 +124117,2115,Harrison Ford,1315181680 +124117,2115,heart ripped out,1360724753 +124117,2115,Indiana Jones,1315181709 +124117,2115,intentionally annoying heroine,1406183992 +124117,2115,mind control,1406183944 +124117,2115,offensive,1406184096 +124117,2115,Steven Spielberg,1315181683 +124117,2115,torture,1406184203 +124117,2115,voodoo doll,1406184173 +124117,2125,Anjelica Huston,1350369138 +124117,2125,chick flick,1331193972 +124117,2125,cliche,1350369070 +124117,2125,Dougray Scott,1350369166 +124117,2125,Drew Barrymore,1331193951 +124117,2125,feminist,1350369104 +124117,2125,historically inaccurate,1350369143 +124117,2125,women's lib,1331193942 +124117,2135,animals,1387258640 +124117,2135,Bechdel Test:Pass,1387258602 +124117,2140,fantasy,1315180994 +124117,2153,easily confused with other movie(s) (title),1333035757 +124117,2161,Fantasy,1365358848 +124117,2161,over-rated,1315203592 +124117,2167,formulaic,1414570383 +124117,2167,gory,1414570333 +124117,2167,prophecy,1414570367 +124117,2167,The Chosen One,1414570347 +124117,2167,vampires,1414570260 +124117,2179,Alfred Hitchcock,1398315843 +124117,2179,bad acting,1398316038 +124117,2179,boring people doing boring things for two and a half hours,1398315824 +124117,2179,dull,1398316721 +124117,2179,Frederick Stafford,1398316628 +124117,2179,too long,1398316688 +124117,2179,unlikeable characters,1398316816 +124117,2180,Alfred Hitchcock,1397275033 +124117,2180,defection,1397275384 +124117,2180,Julie Andrews,1397275017 +124117,2180,Paul Newman,1397275014 +124117,2183,Alfred Hitchcock,1315940882 +124117,2183,civilian caught up in intrigue,1315940932 +124117,2183,James Stewart,1315940884 +124117,2183,remade by same director,1315940917 +124117,2184,Alfred Hitchcock,1344407962 +124117,2184,plot revolves around troublesome dead body,1344407966 +124117,2185,Alfred Hitchcock,1315941003 +124117,2185,priest as protagonist,1380058899 +124117,2186,Alfred Hitchcock,1315940227 +124117,2186,amusement park,1344537406 +124117,2186,great concept,1344537483 +124117,2186,Robert Walker,1375422258 +124117,2186,tennis,1344537455 +124117,2186,trains,1344537461 +124117,2187,Alastair Sim,1372129237 +124117,2187,great acting,1372129525 +124117,2187,great characters,1372138035 +124117,2187,Jane Wyman,1372128983 +124117,2187,murder,1372129456 +124117,2187,surprisingly good,1372129445 +124117,2187,underrated,1372129871 +124117,2202,Alfred Hitchcock,1344407716 +124117,2202,survival,1344407694 +124117,2203,Alfred Hitchcock,1316110252 +124117,2204,Alfred Hitchcock,1315506532 +124117,2204,sabotage,1385959287 +124117,2206,Alfred Hitchcock,1344407797 +124117,2206,Cary Grant,1344407793 +124117,2206,Joan Fontaine,1344407795 +124117,2207,Alfred Hitchcock,1330925845 +124117,2208,Alfred Hitchcock,1315941051 +124117,2209,Alfred Hitchcock,1330926314 +124117,2209,comedy,1330926321 +124117,2210,Alfred Hitchcock,1316110467 +124117,2211,novelist as protagonist,1315941955 +124117,2212,Alfred Hitchcock,1315940967 +124117,2212,civilian caught up in intrigue,1315940964 +124117,2212,kidnapping,1372437056 +124117,2212,Peter Lorre,1372435843 +124117,2218,boring,1349845571 +124117,2273,Chris Tucker,1368081968 +124117,2273,funny,1368153241 +124117,2273,martial arts,1368082178 +124117,2273,surprisingly funny,1368082174 +124117,2287,monster:giant insect,1382070078 +124117,2288,gory,1417424078 +124117,2288,great special effects,1417424122 +124117,2288,Kurt Russell,1417423945 +124117,2288,Special Effects,1417424103 +124117,2291,ax-grinding,1375850543 +124117,2291,he'll cut your hair and your dog's hair with the same unwashed scissorhands,1315343707 +124117,2291,manipulative,1375850595 +124117,2291,modern fantasy,1315343657 +124117,2291,predictable,1375850568 +124117,2291,SUBURBAN DYSFUNCTION,1315343583 +124117,2291,Tim Burton,1315343544 +124117,2291,Vincent Price,1315343644 +124117,2291,xenophobia,1315343636 +124117,2297,dreamlike,1315343309 +124117,2297,ghosts/afterlife,1315343366 +124117,2297,imaginative,1315343304 +124117,2297,Robin Williams,1315343319 +124117,2297,scenic,1315343316 +124117,2297,suicide,1315343294 +124117,2363,Akihiko Hirata,1382991823 +124117,2363,Akira Takarada,1387082661 +124117,2363,allegory,1405146945 +124117,2363,Godzilla,1382223986 +124117,2363,Godzilla Universe,1382944237 +124117,2363,Japan,1387082667 +124117,2363,Kaiju,1382602773 +124117,2363,Takashi Shimura,1387082779 +124117,2363,Toho,1382602778 +124117,2363,Tokyo,1383634999 +124117,2364,Godzilla,1382224009 +124117,2364,Godzilla Universe,1382944438 +124117,2364,Kaiju,1382602932 +124117,2364,no US release,1412283053 +124117,2364,Toho,1382602937 +124117,2365,Akihiko Hirata,1383697933 +124117,2365,drugs,1383697893 +124117,2365,Godzilla,1327173249 +124117,2365,Godzilla Universe,1382944615 +124117,2365,Kaiju,1365355988 +124117,2365,King Kong,1383697885 +124117,2365,monster:giant cephalopod,1383697098 +124117,2365,monster:giant gorilla,1382286967 +124117,2365,Toho,1382598352 +124117,2365,U.S. version,1383708897 +124117,2366,action,1327002098 +124117,2366,adventure,1327002097 +124117,2366,damsel in distress,1327002093 +124117,2366,dinosaurs,1343710062 +124117,2366,Fay Wray,1343710093 +124117,2366,influential,1383025996 +124117,2366,island,1343710085 +124117,2366,King Kong,1365356109 +124117,2366,Merian C. Cooper,1356592217 +124117,2366,monster,1382321264 +124117,2366,monster:giant gorilla,1378430233 +124117,2366,stop motion,1327002000 +124117,2366,thought-provoking,1356592248 +124117,2367,dumb blonde,1407290448 +124117,2367,environmental,1407290475 +124117,2367,King Kong,1365357938 +124117,2367,monster:giant gorilla,1382287278 +124117,2367,no dinosaurs,1382287311 +124117,2368,King Kong,1365357969 +124117,2368,monster:giant gorilla,1382287257 +124117,2376,Roger Moore,1316103033 +124117,2395,Bill Murray,1425859082 +124117,2395,Jason Schwartzman,1425859087 +124117,2406,adventure,1315283655 +124117,2406,jungle,1315283690 +124117,2406,South America,1315283679 +124117,2406,treasure hunt,1315283676 +124117,2406,writer,1315283667 +124117,2409,Burgess Meredith,1390531849 +124117,2409,Burt Young,1390592408 +124117,2409,Carl Weathers,1390531827 +124117,2409,funny moments,1390592506 +124117,2409,Sylvester Stallone,1390531820 +124117,2409,underdog,1390531844 +124117,2409,unnecessary sequel,1390531810 +124117,2410,beloved character dies pointlessly,1391144008 +124117,2410,Burgess Meredith,1391058224 +124117,2410,Burt Young,1391058431 +124117,2410,Carl Weathers,1391058238 +124117,2410,Hulk Hogan,1391144040 +124117,2410,Mr. T,1391058509 +124117,2410,not funny,1391058575 +124117,2411,boxing,1391143914 +124117,2411,Burt Young,1391143695 +124117,2411,Carl Weathers,1391143681 +124117,2411,character dies,1391143872 +124117,2411,Dolph Lundgren,1391143700 +124117,2411,James Brown,1391143814 +124117,2411,Russia,1391143948 +124117,2411,Sylvester Stallone,1391143970 +124117,2411,training montage,1391143796 +124117,2412,Burgess Meredith,1391226967 +124117,2412,Burt Young,1391227053 +124117,2412,self-parody,1407820793 +124117,2412,Tommy Morrison,1391226989 +124117,2412,unlikable characters,1391227359 +124117,2412,worst of series,1391227118 +124117,2430,King Kong wannabe,1331880145 +124117,2430,Robert Armstrong,1331880181 +124117,2454,scientist experiments on self,1316107769 +124117,2454,teleportation,1316107758 +124117,2454,Vincent Price,1316107762 +124117,2519,so bad it's good,1376275605 +124117,2519,Vincent Price,1316109481 +124117,2527,infidelity,1407979604 +124117,2527,robots,1407976882 +124117,2527,sex robots,1407979604 +124117,2527,Yul Brynner,1407976882 +124117,2529,Nudity (Rear),1379648478 +124117,2529,social commentary,1379648512 +124117,2550,character study,1352185188 +124117,2550,paranormal,1352185005 +124117,2550,Richard Johnson,1352184980 +124117,2550,scary,1352185074 +124117,2550,Slow Opening,1352184991 +124117,2550,unanswered questions,1352185050 +124117,2571,Action,1315179280 +124117,2571,alternate reality,1315179234 +124117,2571,alternate world,1330069450 +124117,2571,Carrie-Anne Moss,1330069501 +124117,2571,cyberpunk,1315179230 +124117,2571,fight scenes,1330069425 +124117,2571,Hugo Weaving,1360995927 +124117,2571,human versus computer,1360995938 +124117,2571,Keanu Reeves,1316103389 +124117,2571,Laurence Fishburne,1380081495 +124117,2571,lobby massacre scene,1326947954 +124117,2571,martial arts,1316103409 +124117,2571,multiple realities,1330069428 +124117,2571,post-apocalyptic,1315179247 +124117,2571,pseudo-philosophical,1375849994 +124117,2571,ruined by sequels,1330994587 +124117,2571,stylized,1315179251 +124117,2571,The Chosen One,1377804854 +124117,2571,thought-provoking,1315179222 +124117,2571,villain steals the show,1381987576 +124117,2571,virtual reality,1315179220 +124117,2579,black and white,1315180204 +124117,2579,Christopher Nolan,1315180200 +124117,2579,finger injuries,1381383571 +124117,2579,out of order,1315180190 +124117,2579,overrated,1384063359 +124117,2579,R,1328485314 +124117,2579,Twist Ending,1315180185 +124117,2579,Underwhelming Acting,1315180179 +124117,2579,Whistling Dog movie,1413410624 +124117,2602,King Kong wannabe,1382287754 +124117,2602,monster:giant gorilla,1382287387 +124117,2617,bald nemesis,1315364247 +124117,2617,bugs,1367982029 +124117,2617,disgusting,1367982038 +124117,2617,Egypt,1367981003 +124117,2617,Indiana Jones wannabe,1367981069 +124117,2617,mummy,1367980994 +124117,2628,desert,1315809555 +124117,2628,Ewan McGregor,1315809481 +124117,2628,George Lucas,1315809485 +124117,2628,Jar Jar Binks,1333604016 +124117,2628,Liam Neeson,1315809491 +124117,2628,Natalie Portman,1315809489 +124117,2628,Samuel L. Jackson,1315809487 +124117,2628,sci-fi,1333603818 +124117,2628,Star Wars,1333603950 +124117,2628,The Chosen One,1377806184 +124117,2628,the original is better,1333603862 +124117,2633,Boris Karloff,1316108222 +124117,2633,mummy,1316108228 +124117,2633,reincarnation,1392746868 +124117,2634,easily confused with other movie(s) (title),1367980732 +124117,2634,Egypt,1367980821 +124117,2634,Hammer Horror,1378961831 +124117,2634,mummy,1378961855 +124117,2634,Peter Cushing,1367980639 +124117,2634,poachers,1368119648 +124117,2641,annoying reporter,1382042604 +124117,2641,superhero,1382042611 +124117,2644,gothic,1315942245 +124117,2644,universal monsters,1315942223 +124117,2644,vampire,1315942228 +124117,2644,vampires,1315942231 +124117,2644,Van Helsing,1414397203 +124117,2647,brain transplant,1382471902 +124117,2647,Dracula,1382471932 +124117,2647,Frankenstein's monster,1382471919 +124117,2647,gothic,1316107958 +124117,2648,Colin Clive,1388379134 +124117,2648,Frankenstein's monster,1382470696 +124117,2648,gothic,1349593805 +124117,2648,trailblazing,1349593793 +124117,2649,Basil Rathbone,1382471590 +124117,2649,Bela Lugosi,1385959203 +124117,2649,Frankenstein's monster,1382471579 +124117,2649,gothic,1316108010 +124117,2650,brain transplant,1382471852 +124117,2650,Frankenstein's monster,1382471767 +124117,2651,Frankenstein's monster,1382470800 +124117,2651,gypsy,1316108086 +124117,2651,universal monsters,1316108067 +124117,2651,werewolf,1316108070 +124117,2652,Frankenstein's monster,1382471721 +124117,2652,Hammer Horror,1420350516 +124117,2652,Peter Cushing,1382471724 +124117,2654,Even a man who is pure in heart and says his prayers by night may become a wolf when the wolfbane blooms and the autumn moon is bright.,1316107899 +124117,2654,fortune-telling,1316107864 +124117,2654,gothic,1316107857 +124117,2654,gypsy,1316107860 +124117,2654,Lon Chaney Jr.,1316107883 +124117,2654,universal monsters,1316107872 +124117,2654,werewolf,1316107876 +124117,2654,werewolves,1316107878 +124117,2660,aliens,1337994468 +124117,2660,horror,1337994475 +124117,2660,sci-fi,1337994455 +124117,2660,science fiction,1337994470 +124117,2660,too much snappy banter,1337994645 +124117,2661,aliens,1405057725 +124117,2661,angry mob,1405057641 +124117,2661,better than expected,1405057779 +124117,2661,crash landing,1405057765 +124117,2661,Ray Bradbury,1405057498 +124117,2661,reasonable aliens,1405057740 +124117,2662,alien invasion,1336431452 +124117,2662,aliens,1336431451 +124117,2662,Christianity,1336431434 +124117,2662,Classic monster,1349593581 +124117,2662,Gene Barry,1336431484 +124117,2662,H.G. Wells,1336431489 +124117,2662,religion,1336431425 +124117,2663,giant monster,1382329126 +124117,2663,monster:giant cephalopod,1382329258 +124117,2663,Ray Harryhausen,1382328758 +124117,2665,aliens,1347832213 +124117,2665,B-movie,1347832344 +124117,2665,doesn't add anything new to the genre,1347832283 +124117,2665,flying saucers,1366269320 +124117,2665,nothing special,1347832376 +124117,2665,Ray Harryhausen,1347832188 +124117,2665,UFOs,1347832516 +124117,2672,alternate reality,1326776769 +124117,2672,crap ending,1326776686 +124117,2672,R language,1326776708 +124117,2672,rated-R,1326776710 +124117,2672,simulated reality,1326776713 +124117,2672,virtual reality,1326776717 +124117,2687,cliche characters,1412742556 +124117,2687,predictable,1412742720 +124117,2687,the book was better,1412742576 +124117,2701,the original is better,1347832734 +124117,2716,Bill Murray,1402724653 +124117,2716,ghosts,1403333862 +124117,2716,sexual references,1402768015 +124117,2717,baby in peril,1403333394 +124117,2717,Bechdel Test:Pass,1403333241 +124117,2717,ghosts,1403333462 +124117,2717,Peter MacNicol,1403333679 +124117,2719,bad cgi,1352185457 +124117,2719,Liam Neeson,1352185360 +124117,2719,Owen Wilson,1352185370 +124117,2719,the original is better,1352185408 +124117,2719,unnecessary remake,1352185395 +124117,2723,good idea... bad movie,1377932770 +124117,2723,lame superpowers,1328943581 +124117,2723,loses its way,1377932797 +124117,2723,superhero,1328943573 +124117,2745,Catholicism,1325748274 +124117,2745,Missionary,1325748267 +124117,2745,Priest,1325748290 +124117,2745,religion,1336432556 +124117,2762,Bruce Willis,1315179830 +124117,2762,M. Night Shyamalan,1315810589 +124117,2781,Bechdel Test:Pass,1366260101 +124117,2781,bizarre,1376275726 +124117,2781,breaks the fourth wall,1376792455 +124117,2781,fear,1366260147 +124117,2781,movie theatre scene,1366260130 +124117,2781,Vincent Price,1366260125 +124117,2810,brutal violence,1414883118 +124117,2810,cerebral,1414883025 +124117,2810,dreamlike,1414883082 +124117,2810,not for everyone,1414883156 +124117,2810,Nudity (Animated),1414882918 +124117,2810,Satoshi Kon,1414883034 +124117,2810,stalker,1414882891 +124117,2814,novelist as protagonist,1315942000 +124117,2814,Vincent Price,1315941995 +124117,2828,Brendan Fraiser,1316101682 +124117,2828,crude humor,1331684100 +124117,2863,music,1334882309 +124117,2863,music:Rock and Roll (1960s),1334882284 +124117,2863,music:Rock and Roll (The Beatles),1334882290 +124117,2863,musical band:The Beatles,1334882296 +124117,2863,quirky,1334882305 +124117,2863,rock and roll,1334882300 +124117,2863,the beatles,1334882302 +124117,2916,Arnold Schwarzenegger,1411605100 +124117,2916,gruesome deaths,1411605136 +124117,2916,Philip K. Dick,1411605098 +124117,2916,Sharon Stone,1411605114 +124117,2918,breaking the fourth wall,1404867297 +124117,2918,crass dialogue,1404931962 +124117,2921,Clint Eastwood,1414087833 +124117,2921,rape,1414088889 +124117,2921,revisionist western,1414087917 +124117,2946,campy,1334100111 +124117,2946,music:Rock and Roll (1960s),1334100098 +124117,2946,music:Rock and Roll (The Beatles),1334100082 +124117,2946,The Beatles,1334100086 +124117,2947,Sean Connery,1315941755 +124117,2948,Sean Connery,1316102108 +124117,2949,Sean Connery,1316101908 +124117,2951,Bechdel Test:Pass,1387172432 +124117,2951,Clint Eastwood,1387172585 +124117,2951,Ennio Morricone,1414088934 +124117,2951,high body count,1387173348 +124117,2951,Sergio Leone,1414088931 +124117,2967,credits,1407307361 +124117,2967,creepy kid,1407307289 +124117,2967,evil children,1407306719 +124117,2967,murder,1407307261 +124117,2967,Patty McCormack,1407307199 +124117,2967,talented child actor,1407307225 +124117,2989,Roger Moore,1316102215 +124117,2990,Timothy Dalton,1316103106 +124117,2991,James Bond,1316102701 +124117,2991,Paul McCartney,1365357203 +124117,2991,Roger Moore,1316102703 +124117,2991,Voodoo,1316102709 +124117,2993,James Bond,1316102853 +124117,2993,Sean Connery,1316102831 +124117,3000,adventure,1315370413 +124117,3000,anime,1332968831 +124117,3000,Billy Bob Thornton,1378110430 +124117,3000,Claire Danes,1378110441 +124117,3000,demons,1315370437 +124117,3000,fanciful,1315370417 +124117,3000,fantasy,1315370415 +124117,3000,gods,1378109084 +124117,3000,gore,1378109043 +124117,3000,Hayao Miyazaki,1315370402 +124117,3000,industrial progress,1332968850 +124117,3000,Japan,1331879523 +124117,3000,nature,1332968863 +124117,3000,Studio Ghibli,1315370424 +124117,3022,Buster Keaton,1366442802 +124117,3022,silent movie,1366442813 +124117,3022,train,1366442843 +124117,3022,trains,1366442842 +124117,3034,anti-crusades,1407980073 +124117,3035,James Cagney,1360567525 +124117,3054,anime,1333035463 +124117,3054,pokemon,1333035474 +124117,3061,Bing Crosby,1383546824 +124117,3061,Fred Astaire,1383546828 +124117,3062,Sean Connery,1316142921 +124117,3062,World War II,1316142930 +124117,3070,Doc Savage inspired,1411016397 +124117,3070,interdimensional travel,1416033644 +124117,3070,Jeff Goldblum,1411016324 +124117,3070,John Lithgow,1411016333 +124117,3070,lame villain,1411016455 +124117,3070,Peter Weller,1411016308 +124117,3070,political satire,1411063047 +124117,3081,audience intelligence underestimated,1350626789 +124117,3081,ax-grinding,1377848505 +124117,3081,bad acting,1350626438 +124117,3081,bad editing,1350626602 +124117,3081,blood,1350626678 +124117,3081,Christina Ricci,1350626886 +124117,3081,Christopher Walken,1350626803 +124117,3081,cliche,1350626451 +124117,3081,Depp & Burton,1350626170 +124117,3081,emotionless,1350626838 +124117,3081,gore,1350626180 +124117,3081,historically inaccurate,1350631337 +124117,3081,Johnny Depp,1350626812 +124117,3081,not scary,1350626498 +124117,3081,poor plot development,1350626580 +124117,3081,R,1350626878 +124117,3081,Tim Burton,1350626226 +124117,3086,fantasy,1330873876 +124117,3086,Oliver Hardy,1418023480 +124117,3086,Stan Laurel,1418023476 +124117,3087,animal:cat,1408596037 +124117,3087,Bechdel Test:Fail,1408595915 +124117,3087,Bill Murray,1408595928 +124117,3087,Karen Allen,1408596329 +124117,3087,Richard Donner,1408596340 +124117,3087,Robert Mitchum,1408596023 +124117,3088,imaginary friend,1330501240 +124117,3088,James Stewart,1330501203 +124117,3121,William Talman,1329630509 +124117,3122,Errol Flynn,1330926665 +124117,3153,Ray Harryhausen,1411451561 +124117,3153,Sinbad,1411451541 +124117,3154,James Cagney,1327608239 +124117,3159,classical music,1416034031 +124117,3159,James Earl Jones,1416034015 +124117,3159,misinterpretation,1416033970 +124117,3217,Fredric March,1330874071 +124117,3300,aliens,1349594440 +124117,3300,could have been better,1327607134 +124117,3300,good concept,1349594424 +124117,3300,good idea... bad movie,1377932163 +124117,3300,poor character development,1327607079 +124117,3300,Riddick,1349594430 +124117,3300,scary monsters,1327607039 +124117,3300,sci-fi,1349594451 +124117,3300,villain as hero,1327607169 +124117,3300,Vin Diesel,1349594446 +124117,3334,Humphrey Bogart,1316386204 +124117,3340,annoying reporter,1409357811 +124117,3340,Bela Lugosi,1409357696 +124117,3340,Edward D. Wood Jr.,1409357714 +124117,3340,mad scientist,1409357766 +124117,3340,octopus,1409357782 +124117,3340,Tor Johnson,1409357731 +124117,3365,John Wayne,1396505503 +124117,3365,quest,1396505510 +124117,3396,cameos,1349596667 +124117,3396,subgenre:road trip,1349596657 +124117,3438,annoying reporter,1407820909 +124117,3438,crime wave,1408326457 +124117,3438,ninja,1408326381 +124117,3438,theme song,1407820909 +124117,3439,David Warner,1412222050 +124117,3452,boring,1380168290 +124117,3452,cliche,1380168215 +124117,3452,gangs,1380168341 +124117,3452,Jet Li,1380168188 +124117,3452,pointless,1380168316 +124117,3452,R,1380168226 +124117,3469,boring,1384386252 +124117,3469,evolution,1384386186 +124117,3469,historically inaccurate,1384386160 +124117,3469,manipulative,1384386219 +124117,3469,Spencer Tracy,1384386145 +124117,3492,desert,1382134203 +124117,3492,kidnapping,1382134144 +124117,3492,only censored version is available,1382134963 +124117,3492,rape (implied),1382134179 +124117,3492,Rudolph Valentino,1382133995 +124117,3492,The Sheik,1382134289 +124117,3494,better than the remake,1410841205 +124117,3494,John Wayne,1410841185 +124117,3494,Robert Duvall,1417199781 +124117,3494,western,1410841217 +124117,3527,alien hunter,1411249517 +124117,3527,Arnold Schwarzenegger,1411243271 +124117,3527,Carl Weathers,1411243267 +124117,3527,dirty jokes,1411243295 +124117,3546,Bechdel Test:Fail,1402649413 +124117,3546,Bette Davis,1402649427 +124117,3546,Victor Buono,1402649444 +124117,3593,religion,1359262970 +124117,3600,Elvis,1330296191 +124117,3633,George Lazenby,1316102282 +124117,3633,James Bond,1316102273 +124117,3635,Roger Moore,1315941845 +124117,3638,Roger Moore,1316102328 +124117,3639,Christopher Lee,1316101974 +124117,3639,James Bond,1316101969 +124117,3639,Roger Moore,1316101982 +124117,3654,Anthony Quinn,1315884901 +124117,3654,World War II,1315884897 +124117,3675,Bing Crosby,1383546660 +124117,3675,Christmas,1383546655 +124117,3675,Danny Kaye,1383546658 +124117,3675,Rosemary Clooney,1383546651 +124117,3675,Vera-Ellen,1383546671 +124117,3681,bounty hunter(s),1391761079 +124117,3681,infanticide,1391760445 +124117,3681,Lee Van Cleef,1391759849 +124117,3681,Nudity (Topless - Brief),1391760479 +124117,3681,rape,1391760464 +124117,3681,tries to be shocking,1391759953 +124117,3697,alien hunter,1411368078 +124117,3697,bad acting,1411367851 +124117,3697,cliche characters,1411368214 +124117,3697,dystopia,1411367832 +124117,3697,unbelievably stupid,1411366864 +124117,3740,black magic,1339730860 +124117,3740,campy,1339730895 +124117,3740,dated,1339730946 +124117,3740,goofy,1339730863 +124117,3740,Kurt Russell,1339730913 +124117,3740,magic,1339730849 +124117,3740,martial arts,1339730852 +124117,3770,dated,1360133138 +124117,3770,dreams,1360133115 +124117,3770,good concept,1360133427 +124117,3770,gore,1360133534 +124117,3770,heart ripped out,1360724811 +124117,3770,psychic powers,1360133616 +124117,3770,slow,1360133163 +124117,3771,Ray Harryhausen,1330410007 +124117,3771,Sinbad,1411451591 +124117,3792,sensual,1387174263 +124117,3793,Bryan Singer,1377415202 +124117,3793,Hugh Jackman,1377415171 +124117,3793,Ian McKellen,1377415217 +124117,3793,James Marsden,1377415190 +124117,3793,marvel,1315180458 +124117,3799,Pokemon,1377807426 +124117,3799,The Chosen One,1377807391 +124117,3807,Ray Harryhausen,1347832039 +124117,3807,Sinbad,1411451581 +124117,3809,Bill Murray,1407906912 +124117,3809,Richard Dreyfuss,1407906912 +124117,3818,James Stewart,1330926579 +124117,3863,dreams,1349594306 +124117,3863,gore,1350081209 +124117,3863,psychopath,1384639565 +124117,3863,style over substance,1350081225 +124117,3863,stylized,1349594286 +124117,3863,unanswered questions,1384639528 +124117,3863,Vincent D'Onofrio,1317505905 +124117,3863,virtual reality,1349594259 +124117,3864,Godzilla,1382147440 +124117,3864,Godzilla Universe,1382944779 +124117,3864,Kaiju,1382504817 +124117,3864,not enough kaiju action,1382503967 +124117,3864,slow,1382504754 +124117,3864,Toho,1382504792 +124117,3864,UFO,1382504027 +124117,3926,Irwin Allen,1369522750 +124117,3928,Bela Lugosi,1316108171 +124117,3928,Bud Abbott,1316108173 +124117,3928,Dracula,1382471534 +124117,3928,Frankenstein's monster,1382471517 +124117,3928,Lon Chaney Jr.,1316108187 +124117,3928,Lou Costello,1316108176 +124117,3930,Richard Denning,1376275161 +124117,3931,Creature Feature,1350286950 +124117,3931,lizard,1350286862 +124117,3931,teenagers,1350287037 +124117,3932,author:H. G. Wells,1316107712 +124117,3932,H.G. Wells,1316107709 +124117,3932,invisibility,1316107704 +124117,3932,lust for power,1316107706 +124117,3932,Universal monsters,1316107698 +124117,3933,island,1350287466 +124117,3934,robot,1382317277 +124117,3934,slow,1382318096 +124117,3959,author:H. G. Wells,1316107261 +124117,3959,George Pal,1316107278 +124117,3959,inventor,1316107273 +124117,3959,time travel,1316107258 +124117,3972,antiques,1393914582 +124117,3972,Axe Gang,1393913810 +124117,3972,Drunken Boxing,1393913600 +124117,3972,Jackie Chan,1393913510 +124117,3972,martial arts,1393913532 +124117,3972,train,1393913632 +124117,3984,Bruce Cabot,1378254740 +124117,3984,gay stereotypes,1378254700 +124117,3984,James Bond,1316102627 +124117,3984,Sean Connery,1316102618 +124117,3994,Bruce Willis,1328504446 +124117,3994,M. Night Shyamalan,1315278933 +124117,3994,no action,1331684337 +124117,3994,predictable,1315278885 +124117,3994,predictable twist ending,1331684383 +124117,3994,Samuel L. Jackson,1366442547 +124117,3994,somber,1366442560 +124117,3994,superhero,1315278844 +124117,3994,train,1366442569 +124117,3996,martial arts,1315197125 +124117,3996,sword fight,1315197141 +124117,3997,brave white hero with cowardly black sidekick,1405145857 +124117,4005,Timothy Dalton,1316103072 +124117,4133,Dolph Lundgren,1409202976 +124117,4133,good special effects,1409203894 +124117,4133,he-man,1409203744 +124117,4133,riding Star Wars' coattails,1409203714 +124117,4135,80's slang,1405568784 +124117,4135,Ashley Bank,1405482717 +124117,4135,Frankenstein's monster,1405568860 +124117,4135,vampires,1405568833 +124117,4135,Van Helsing,1405568891 +124117,4135,werewolves,1405568842 +124117,4188,ballet,1383546796 +124117,4188,Danny Kaye,1383546803 +124117,4188,Hans Christian Andersen,1383546806 +124117,4188,historically inaccurate,1383546739 +124117,4188,unhistorical,1383546729 +124117,4189,bad acting,1379620002 +124117,4189,Christianity,1379619896 +124117,4189,Jesus Christ,1379619898 +124117,4189,long,1379619961 +124117,4189,religion,1379619889 +124117,4189,slow,1379619944 +124117,4196,Boris Karloff,1401686942 +124117,4196,Nick Adams,1401686960 +124117,4196,scary,1401686971 +124117,4226,bleak,1330069549 +124117,4226,Carrie-Anne Moss,1330069528 +124117,4226,complicated,1315179697 +124117,4226,dark,1315179723 +124117,4226,gritty,1330069614 +124117,4226,memory,1315179703 +124117,4226,mystery,1315179706 +124117,4226,narrated,1315179753 +124117,4226,psychological,1330069584 +124117,4226,psychology,1315179708 +124117,4226,R,1330069649 +124117,4226,revenge,1315179748 +124117,4226,short-term memory loss,1329293856 +124117,4226,twist ending,1315179730 +124117,4241,Pokemon,1358221622 +124117,4270,action,1328756295 +124117,4270,adventure,1328756293 +124117,4270,Brendan Fraser,1328756288 +124117,4270,reincarnation,1392747126 +124117,4270,The Chosen One,1377807084 +124117,4277,dinosaurs,1369521560 +124117,4306,NOT Pixar!!,1377804124 +124117,4327,plot: Seven Samurai,1394427203 +124117,4327,Remake of:Seven Samurai (1954),1316133387 +124117,4327,Robert Vaughn,1394427198 +124117,4327,Steve McQueen,1316133433 +124117,4327,Yul Brynner,1316133434 +124117,4369,car chase,1371101930 +124117,4369,cars,1371101407 +124117,4369,Jordana Brewster,1371101610 +124117,4369,Michelle Rodriguez,1371101431 +124117,4369,Paul Walker,1371101586 +124117,4369,Rob Cohen,1371101507 +124117,4369,undercover cop,1371101628 +124117,4369,Vin Diesel,1382768756 +124117,4370,audience intelligence underestimated,1328756760 +124117,4370,depressing,1315281294 +124117,4370,downer ending,1326948683 +124117,4370,drags,1315281393 +124117,4370,dystopia,1315281292 +124117,4370,ending kinda ruined it,1315281341 +124117,4370,formulaic,1315281345 +124117,4370,Haley Joel Osment,1315281311 +124117,4370,Jude Law,1315281317 +124117,4370,manipulative,1326948713 +124117,4370,pathetic,1326948657 +124117,4370,Steven Spielberg,1315281285 +124117,4370,Sucks big time!,1315281405 +124117,4370,too long,1315281409 +124117,4370,waste of celluloid,1315281416 +124117,4405,German Expressionism,1394939075 +124117,4406,black and white,1316133346 +124117,4406,complex morality,1392261399 +124117,4406,Edmond O'Brien,1392262121 +124117,4406,James Stewart,1316133343 +124117,4406,John Carradine,1392261113 +124117,4406,John Wayne,1316133341 +124117,4406,Lee Marvin,1392261061 +124117,4406,Vera Miles,1392261411 +124117,4406,western,1392262113 +124117,4429,Gregory Peck,1316141504 +124117,4429,Richard Basehart,1333464845 +124117,4480,monster:blob,1382321422 +124117,4638,adventure,1323664609 +124117,4638,better than expected,1367200698 +124117,4638,dinosaurs,1330059381 +124117,4638,Joe Johnston,1323664595 +124117,4638,Sam Neill,1323664602 +124117,4638,tropical setting,1367200667 +124117,4638,visual effects,1367200671 +124117,4643,Helena Bonham Carter,1417200620 +124117,4701,Don Cheadle,1368084401 +124117,4701,Jackie Chan,1368082231 +124117,4701,Las Vegas,1368248460 +124117,4701,Nudity (Rear),1368248427 +124117,4701,Ziyi Zhang,1368082547 +124117,4713,subliminal images,1396842146 +124117,4720,atmospheric,1343453454 +124117,4720,clever,1343967307 +124117,4720,ghosts,1343453505 +124117,4720,Nicole Kidman,1343453436 +124117,4720,obnoxious kid,1343453474 +124117,4720,twist ending,1343453463 +124117,4767,Bud Abbott,1315885661 +124117,4767,Lou Costello,1315885662 +124117,4767,mummy,1392747029 +124117,4768,Bernhard Goetzke,1395896442 +124117,4768,criminal mastermind,1395896265 +124117,4768,Fritz Lang,1395896258 +124117,4768,master of disguise,1395896375 +124117,4768,Nudity (Topless),1395896683 +124117,4768,Rudolf Klein-Rogge,1395896399 +124117,4846,Donnie Yen,1379407433 +124117,4846,funny,1379407512 +124117,4846,hilarious martial arts,1379407413 +124117,4846,martial arts,1379407407 +124117,4846,over-the-top action,1379407547 +124117,4848,amnesia,1338322473 +124117,4848,David Lynch,1329293536 +124117,4848,dreamlike,1338322522 +124117,4848,meaningless,1329293721 +124117,4848,no story,1329293750 +124117,4848,pretentious,1348115648 +124117,4848,pseudo-artistic,1348115694 +124117,4848,strange,1329293557 +124117,4848,surreal,1338322491 +124117,4848,surrealism,1338322488 +124117,4848,unnecessary characters,1329293791 +124117,4848,weird,1338322493 +124117,4855,Clint Eastwood,1413709190 +124117,4855,Nudity (Full Frontal - Brief),1413709194 +124117,4855,Nudity (Full Frontal),1413788870 +124117,4855,serial killer,1413709207 +124117,4857,Tradition!,1410840995 +124117,4878,dreamlike,1336461150 +124117,4878,Drew Barrymore,1315202054 +124117,4878,Jake Gyllenhaal,1329294039 +124117,4878,patrick swayze,1315202092 +124117,4878,psychology,1336461153 +124117,4878,sci-fi,1336461155 +124117,4878,social commentary,1315201965 +124117,4878,strange,1329294008 +124117,4878,teenage angst,1329294016 +124117,4878,time travel,1336461157 +124117,4878,unnecessary characters,1329293991 +124117,4887,alternate reality,1327606586 +124117,4887,bad science,1339957135 +124117,4887,dimensions,1410755788 +124117,4887,great soundtrack,1332125770 +124117,4887,great villain,1381987725 +124117,4887,Jet Li,1327606535 +124117,4887,martial arts,1327606531 +124117,4887,rock and roll,1332125755 +124117,4896,Alan Rickman,1315884717 +124117,4896,chess,1315884641 +124117,4896,Christmas,1315884644 +124117,4896,harry potter,1315884659 +124117,4896,magic,1315884625 +124117,4896,school life,1379054141 +124117,4896,The Chosen One,1377805872 +124117,4896,Wizards,1315884628 +124117,4902,ghosts,1413358504 +124117,4902,Guillermo del Toro,1413358363 +124117,4902,villain evil beyond credibility,1413358442 +124117,4918,Maximilian Schell,1350022697 +124117,4943,Edgar Rice Burroughs,1385530226 +124117,4943,Hollow Earth,1385530217 +124117,4943,Peter Cushing,1385530211 +124117,4944,monster:giant insect,1382329450 +124117,4969,Agatha Christie,1372138250 +124117,4969,funny,1372138208 +124117,4975,cryogenics,1315342971 +124117,4975,good soundtrack,1315343001 +124117,4975,hallucination,1315342995 +124117,4975,Nudity (Topless),1386136577 +124117,4975,Penelope Cruz,1375863339 +124117,4975,psychology,1315342942 +124117,4975,strange story,1315342945 +124117,4975,suicide,1326511847 +124117,4975,surreal,1315343075 +124117,4975,Tom Cruise,1315342938 +124117,4975,trippy,1315342948 +124117,4975,virtual reality,1315342952 +124117,4975,weird,1315342950 +124117,4982,ahead of its time,1384062180 +124117,4982,better than everybody thinks,1384063232 +124117,4982,decapitation,1384061369 +124117,4982,middle-aged protagonist,1384063183 +124117,4982,mountain climbing,1384061824 +124117,4982,sisters,1384061984 +124117,4982,telepathy,1384061960 +124117,4982,underrated,1384061811 +124117,4993,Christopher Lee,1397795699 +124117,4993,fantasy,1387336145 +124117,4993,fireworks,1387336117 +124117,4993,Orlando Bloom,1387336153 +124117,5008,Agatha Christie,1380058434 +124117,5008,Charles Laughton,1316229476 +124117,5008,courtroom drama,1316229448 +124117,5008,lawyer as protagonist,1380058502 +124117,5008,Marlene Dietrich,1316229488 +124117,5008,twist ending,1380058488 +124117,5021,Alec Guinness,1386400310 +124117,5026,ax-grinding,1375850396 +124117,5026,Beast Of Gévaudan,1330160554 +124117,5026,disappointing,1375850484 +124117,5026,martial arts,1330160558 +124117,5026,Nudity (Rear),1315439989 +124117,5026,Nudity (Topless),1315439992 +124117,5026,overrated,1375850466 +124117,5026,predictable,1375850452 +124117,5039,dragons,1315203729 +124117,5039,fantasy,1335510047 +124117,5039,looks dated,1335510087 +124117,5039,magic,1335510031 +124117,5039,slow paced,1335510024 +124117,5039,Sorcerers,1335510037 +124117,5039,sword and sorcery,1335510038 +124117,5072,psychopath,1387070026 +124117,5072,robots,1387070003 +124117,5072,See: Metropolis (1927),1396841609 +124117,5072,style over substance,1387069954 +124117,5120,adultery,1372491847 +124117,5120,battle of wits,1408682051 +124117,5120,Bechdel Test:Pass,1372490342 +124117,5120,great acting,1372491685 +124117,5120,humiliation,1373336399 +124117,5120,Laurence Olivier,1372491785 +124117,5120,Michael Caine,1372490316 +124117,5120,mind games,1372491526 +124117,5120,psychological,1372491779 +124117,5120,sexual references,1372490457 +124117,5120,small cast,1372491677 +124117,5120,substance over style,1374542912 +124117,5120,witty,1372491167 +124117,5120,writer,1372491757 +124117,5126,monster:giant insect,1382421762 +124117,5143,The Lone Ranger,1397159629 +124117,5144,mystery,1385959596 +124117,5144,The Lone Ranger,1385959564 +124117,5146,anime,1329727165 +124117,5146,dark fantasy,1329727158 +124117,5146,future,1358487057 +124117,5146,gory,1329727177 +124117,5146,monster hunter,1358486959 +124117,5146,sequel better than original,1358575879 +124117,5146,vampire,1315809360 +124117,5146,vampires,1315809357 +124117,5167,Bob Hope,1367200842 +124117,5171,Guy Pearce,1316293540 +124117,5171,H.G. Wells,1382043566 +124117,5171,inventor,1316293577 +124117,5177,Joseph Cotton,1315940170 +124117,5177,Orson Welles,1315940164 +124117,5228,Bob Hope,1367200859 +124117,5230,Bob Hope,1367200897 +124117,5231,Bob Hope,1367200921 +124117,5232,Bob Hope,1367200935 +124117,5233,Bob Hope,1367200910 +124117,5234,Bob Hope,1367200945 +124117,5254,better than expected,1414657906 +124117,5254,Donnie Yen,1414657832 +124117,5254,Dynamic CGI Action,1414657854 +124117,5254,Guillermo del Toro,1414657815 +124117,5254,Ron Perlman,1414657821 +124117,5254,vampires,1414657863 +124117,5254,Wesley Snipes,1414657818 +124117,5313,comic book feel,1315280532 +124117,5313,Dwayne Johnson,1315280547 +124117,5313,Egypt,1315280453 +124117,5349,Action,1384503843 +124117,5349,colorful,1384503824 +124117,5349,marvel,1315180634 +124117,5349,superhero,1315180623 +124117,5349,Tobey Maguire,1384503750 +124117,5378,cheesy dialogue,1342860511 +124117,5378,Ewan McGregor,1342860296 +124117,5378,Hayden Christensen,1342860327 +124117,5378,Samuel L. Jackson,1342860288 +124117,5378,sci-fi,1333603887 +124117,5378,space opera,1342860278 +124117,5378,Star Wars,1316653385 +124117,5378,The Chosen One,1377806205 +124117,5378,whiney protagonist,1342860271 +124117,5380,Colin Firth,1331700263 +124117,5380,mistaken identity,1331700273 +124117,5380,Oscar Wilde,1331700270 +124117,5380,tattoo,1331700289 +124117,5383,Christopher Lee,1385365346 +124117,5383,Peter Cushing,1385365178 +124117,5383,Sherlock Holmes,1385365380 +124117,5418,action,1334464691 +124117,5418,agent/assassin with false memories/amnesia,1358224591 +124117,5418,amnesia,1334464664 +124117,5418,car chase,1334464695 +124117,5418,fast paced,1315209681 +124117,5418,fighting,1334464700 +124117,5418,Matt Damon,1315209737 +124117,5418,memory,1334464677 +124117,5418,thriller,1334464705 +124117,5436,Alec Guinness,1386400102 +124117,5436,artist,1386400476 +124117,5436,British comedy,1391746098 +124117,5436,great acting,1386400136 +124117,5436,odd,1386406270 +124117,5444,heavy-handed message,1415695548 +124117,5445,corruption,1315179538 +124117,5445,dystopia,1315179535 +124117,5445,Philip K. Dick,1315179516 +124117,5445,police corruption,1315179531 +124117,5445,Steven Spielberg,1315179519 +124117,5445,surveillance,1315179524 +124117,5445,Tom Cruise,1315179554 +124117,5459,aliens,1343353440 +124117,5459,audience intelligence underestimated,1375850928 +124117,5459,conspiracy,1343353532 +124117,5459,crude humor,1343353489 +124117,5459,first was much better,1343353402 +124117,5459,it thought it was funny but it wasn't,1350627476 +124117,5459,Lara Flynn Boyle,1343353771 +124117,5459,lowest common denominator,1350627447 +124117,5459,sci-fi,1343353415 +124117,5459,Tommy Lee Jones,1343353404 +124117,5459,unnecessary sequel,1350627511 +124117,5459,Will Smith,1343353405 +124117,5463,Christian Bale,1315281028 +124117,5463,dragons,1315280922 +124117,5463,Gerard Butler,1315280926 +124117,5463,Matthew McConaughey,1315280976 +124117,5463,Post apocalyptic,1315280998 +124117,5463,post-apocalyptic,1315281002 +124117,5468,alien,1376275452 +124117,5468,King Kong wannabe,1376275428 +124117,5468,Ray Harryhausen,1376275418 +124117,5470,Dorothy Tutin,1331360324 +124117,5470,mistaken identity,1331360145 +124117,5470,Oscar Wilde,1331360149 +124117,5478,monster:giant spider,1382422695 +124117,5502,Alien Invasion,1315192603 +124117,5502,Joaquin Phoenix,1315192597 +124117,5502,M. Night Shyamalan,1328504286 +124117,5502,meditative,1315192617 +124117,5502,Mel Gibson,1328504288 +124117,5507,action,1342163806 +124117,5507,espionage,1342163931 +124117,5507,rock music,1342163765 +124117,5507,Samuel L. Jackson,1342163741 +124117,5507,Vin Diesel,1342163780 +124117,5519,Elvis Presley,1375850796 +124117,5540,bad acting,1315203846 +124117,5540,bad screenplay,1315203848 +124117,5540,Claymation,1315203851 +124117,5540,Laurence Olivier,1315203887 +124117,5540,mythology,1328758067 +124117,5540,Ray Harryhausen,1315203856 +124117,5549,Elvis Presley,1343711919 +124117,5550,Elvis Presley,1330296270 +124117,5554,Elvis Presley,1392010030 +124117,5602,Alec Guinness,1315939902 +124117,5602,Bechdel Test:Pass,1391746006 +124117,5602,British comedy,1391745991 +124117,5602,caper movie,1315939947 +124117,5602,characterization,1315939942 +124117,5602,crazy genius,1315939914 +124117,5602,dark comedy,1315939916 +124117,5602,Ealing,1315939967 +124117,5602,Herbert Lom,1315939962 +124117,5602,mastermind,1315939958 +124117,5602,Peter Sellers,1315939961 +124117,5603,Alec Guinness,1316106617 +124117,5603,British comedy,1391746036 +124117,5603,Ealing Studios,1316106623 +124117,5603,heist,1316106625 +124117,5603,setting:London,1316106630 +124117,5604,Alec Guinness,1316106545 +124117,5604,British comedy,1391746059 +124117,5604,Ealing Studios,1316106538 +124117,5604,FIGHTING THE SYSTEM,1316106536 +124117,5604,humorous,1316106565 +124117,5604,inventor,1316106560 +124117,5604,witty,1316106547 +124117,5618,anime,1332968774 +124117,5618,dragon,1327608863 +124117,5618,environmental,1447404094 +124117,5618,fanciful,1315370241 +124117,5618,fantasy,1315370244 +124117,5618,Hayao Miyazaki,1315370208 +124117,5618,Japan,1332968746 +124117,5618,Oscar (Best Animated Feature),1315370215 +124117,5618,spirits,1376984593 +124117,5618,strange,1327608885 +124117,5618,Studio Ghibli,1315370218 +124117,5618,susuwatari,1376987640 +124117,5618,train,1332968763 +124117,5618,vomiting,1401249758 +124117,5618,weird,1315370220 +124117,5618,witch,1332968798 +124117,5618,yokai,1401175054 +124117,5638,Akira Takarada,1386656802 +124117,5638,Godzilla,1382156290 +124117,5638,Godzilla Universe,1382944589 +124117,5638,Kaiju,1382156293 +124117,5638,Mothra,1382156291 +124117,5638,Shobijin,1386657080 +124117,5638,Toho,1386659329 +124117,5639,audience intelligence underestimated,1375850849 +124117,5639,comedy,1377643215 +124117,5639,deceptive title,1382076949 +124117,5639,for kids,1365356679 +124117,5639,Godzilla,1331193723 +124117,5639,Godzilla Universe,1382944403 +124117,5639,Kaiju,1377643207 +124117,5639,Minilla,1382223788 +124117,5639,stock footage,1382399543 +124117,5639,talking monsters,1331193806 +124117,5639,Toho,1382505106 +124117,5640,Akihiko Hirata,1382991866 +124117,5640,Godzilla,1382147872 +124117,5640,Kaiju,1382147887 +124117,5640,Raymond Burr,1382944724 +124117,5640,Toho,1382750107 +124117,5649,Christopher Lee,1378276125 +124117,5649,Hammer Horror,1378961673 +124117,5649,monster hunter,1378276225 +124117,5649,Peter Cushing,1378276115 +124117,5649,vampires,1378961686 +124117,5649,Van Helsing,1405568956 +124117,5672,anime,1333035418 +124117,5672,Pokemon,1333035436 +124117,5679,ghost story,1315201428 +124117,5679,Gore Verbinski,1315504809 +124117,5679,goretastic,1315201410 +124117,5679,paranormal,1315504846 +124117,5679,supernatural,1315201383 +124117,5679,videotape,1315201392 +124117,5690,anime,1332998418 +124117,5690,anti-war,1424729562 +124117,5690,bleak,1424729573 +124117,5690,depressing,1424729567 +124117,5690,downbeat,1424729587 +124117,5690,grim,1424729578 +124117,5690,horrors of war,1424729581 +124117,5690,Isao Takahata,1377554130 +124117,5690,Japan,1331511403 +124117,5690,maintaining illusion,1377554151 +124117,5690,manipulative,1331511322 +124117,5690,SIBLING RELATIONSHIPS,1315181388 +124117,5690,somber,1424729584 +124117,5690,Studio Ghibli,1331511409 +124117,5690,tragedy,1424729592 +124117,5690,unhistorical,1379311073 +124117,5816,Daniel Radcliffe,1336430472 +124117,5816,fantasy,1336430500 +124117,5816,fantasy world,1336430480 +124117,5816,harry potter,1336430503 +124117,5816,Kenneth Branagh,1336430468 +124117,5816,magic,1336430465 +124117,5816,mystery,1336430533 +124117,5816,school life,1379054165 +124117,5816,Wizards,1336430547 +124117,5847,James Cagney,1360567562 +124117,5872,Pierce Brosnan,1316102452 +124117,5881,anti-intellectualism,1326948414 +124117,5881,audience intelligence underestimated,1375850706 +124117,5881,ax-grinding,1375850132 +124117,5881,boring,1315342746 +124117,5881,Crappy Remake,1315342517 +124117,5881,George Clooney,1315342698 +124117,5881,horrible,1315342729 +124117,5881,Nudity (Rear),1315342702 +124117,5881,pretentious,1375850179 +124117,5881,pseudo-intelligent,1375850165 +124117,5881,pseudo-philosophical,1375850203 +124117,5881,Steven Soderbergh,1315342714 +124117,5881,suicide,1375850185 +124117,5892,dirigibles,1316385057 +124117,5892,Jules Verne wannabe,1326950303 +124117,5892,vikings,1316385114 +124117,5952,Christopher Lee,1397795746 +124117,5971,anime,1332998310 +124117,5971,Cute,1328757338 +124117,5971,family,1328757322 +124117,5971,fantasy,1327983296 +124117,5971,great soundtrack,1327983197 +124117,5971,Hayao Miyazaki,1327983181 +124117,5971,Japan,1327983183 +124117,5971,rural Japan,1389334867 +124117,5971,Studio Ghibli,1327983187 +124117,5971,susuwatari,1376987673 +124117,5971,sweet,1327983192 +124117,5971,Totoro,1327983285 +124117,5971,visually appealing,1327983186 +124117,5974,Arabian Nights,1393398300 +124117,5974,Conrad Veidt,1393398259 +124117,5974,genie,1393398334 +124117,5974,lavish,1393398237 +124117,5974,magic carpet,1394100984 +124117,5974,Sabu,1393398270 +124117,5983,aliens,1367304877 +124117,5983,bodysnatchers,1367304804 +124117,5983,child's perspective,1367304724 +124117,5983,slow,1367304704 +124117,5983,subterranean,1367304850 +124117,5989,based on a true story,1315334636 +124117,5989,con artists,1315334627 +124117,5989,Leonardo DiCaprio,1315334613 +124117,5989,slow,1342592565 +124117,5989,Steven Spielberg,1315334616 +124117,5989,Tom Hanks,1315334618 +124117,5989,true story,1315334621 +124117,6040,dark,1342225995 +124117,6040,ghost,1342225903 +124117,6040,predictable,1342225788 +124117,6040,tooth fairy,1342225825 +124117,6099,1980s,1414300872 +124117,6099,bad editing,1414300516 +124117,6099,big brother,1414300686 +124117,6099,pointless,1414301170 +124117,6099,slow paced,1414300456 +124117,6099,training,1414300754 +124117,6123,interesting,1386136170 +124117,6123,Japan,1386136336 +124117,6123,not for everyone,1386136432 +124117,6123,Nudity (Topless),1386136540 +124117,6157,Action,1330160177 +124117,6157,bad acting,1315205963 +124117,6157,Ben Affleck,1315205921 +124117,6157,blind badass,1380872768 +124117,6157,blindness,1362898202 +124117,6157,Colin Farrell,1315205918 +124117,6157,crap,1315205999 +124117,6157,Daredevil,1362898459 +124117,6157,elektra,1362898444 +124117,6157,gritty,1362898435 +124117,6157,Jennifer Garner,1315206008 +124117,6157,Marvel,1315205931 +124117,6157,not as good as other comic films,1315206017 +124117,6157,superhero,1315205934 +124117,6239,author:Jules Verne,1316107309 +124117,6239,James Mason,1377157860 +124117,6239,Jules Verne,1316107315 +124117,6239,Pat Boone,1377157876 +124117,6242,better than the american version,1404489662 +124117,6242,ESP,1404491798 +124117,6242,Hiroyuki Sanada,1404489623 +124117,6242,Japanese horror,1405741843 +124117,6242,Rikiya Otaka,1404489650 +124117,6242,shock ending,1404489658 +124117,6242,time limit,1404489777 +124117,6294,cliche dialogue,1362193673 +124117,6294,Seann William Scott,1362031807 +124117,6294,sexual references,1362031871 +124117,6294,supernatural powers,1362030857 +124117,6294,superpowered Nazi,1362031015 +124117,6333,action,1315180373 +124117,6333,amnesia,1315180389 +124117,6333,Hugh Jackman,1377415142 +124117,6333,marvel,1315180361 +124117,6333,preachy,1384546029 +124117,6350,adventure,1315178898 +124117,6350,airships,1326949587 +124117,6350,animated masterpiece,1315366033 +124117,6350,anime,1332998331 +124117,6350,aviation,1315178903 +124117,6350,beautiful,1341473562 +124117,6350,Dieselpunk,1335849780 +124117,6350,fantasy,1315366060 +124117,6350,fantasy world,1315178885 +124117,6350,flying,1315366025 +124117,6350,fun,1315366028 +124117,6350,great soundtrack,1315178890 +124117,6350,Hayao Miyazaki,1315178868 +124117,6350,imagination,1315178882 +124117,6350,Japanese,1341473527 +124117,6350,Laputa,1326949580 +124117,6350,Miyazaki,1315366051 +124117,6350,pirates,1397020714 +124117,6350,sky pirates,1377241016 +124117,6350,steampunk,1335849761 +124117,6350,Studio Ghibli,1315366039 +124117,6350,visually appealing,1329294606 +124117,6365,artificial intelligence,1315363481 +124117,6365,car chase,1315363473 +124117,6365,Carrie-Anne Moss,1315363422 +124117,6365,crappy sequel,1315363362 +124117,6365,disappointing,1315363360 +124117,6365,human versus computer,1315363430 +124117,6365,Keanu Reeves,1315363396 +124117,6365,martial arts,1315363389 +124117,6365,The Chosen One,1377806099 +124117,6365,virtual reality,1315363367 +124117,6365,Wachowski Brothers,1315363368 +124117,6371,Pokemon,1390274479 +124117,6378,Charlize Theron,1417330047 +124117,6378,Jason Statham,1417329808 +124117,6378,just watch the original,1417330001 +124117,6378,Mark Wahlberg,1417330051 +124117,6378,mini coopers,1417329819 +124117,6378,misses the point,1417330026 +124117,6378,stereotypical geek,1417330095 +124117,6378,the original was better,1417329948 +124117,6378,tries to be funny,1417329980 +124117,6378,unnecessary remake,1417329933 +124117,6383,Cole Hauser,1382769070 +124117,6383,Eva Mendes,1382767819 +124117,6383,not as good as the first,1382767797 +124117,6383,Paul Walker,1382769267 +124117,6383,pointless,1403563233 +124117,6383,torture,1382768927 +124117,6383,villain's plan is stupid,1403563244 +124117,6405,author:Robert Louis Stevenson,1315884806 +124117,6405,island,1315884843 +124117,6405,pirates,1315884842 +124117,6412,James Stewart,1385713318 +124117,6412,Max Brand,1385713313 +124117,6434,Errol Flynn,1330927244 +124117,6437,espionage,1360567301 +124117,6437,gritty,1360567334 +124117,6437,James Cagney,1360567283 +124117,6437,spies,1360567326 +124117,6437,World War II,1360567312 +124117,6459,James Mason,1316143280 +124117,6459,World War II,1316143283 +124117,6500,1970s,1413876745 +124117,6500,bioweapon,1413876648 +124117,6500,Christopher Lee,1413876326 +124117,6500,Dracula,1413876614 +124117,6500,Hammer Horror,1413876336 +124117,6500,Jessica Van Helsing,1414397036 +124117,6500,Lorrimer Van Helsing,1414397028 +124117,6500,Nudity (Topless),1413876662 +124117,6500,Peter Cushing,1413876315 +124117,6500,vampires,1413876354 +124117,6500,Van Helsing,1413876411 +124117,6534,Eric Bana,1403562955 +124117,6534,Nudity (Rear),1403562412 +124117,6534,stylized,1403562519 +124117,6534,superhero,1403562440 +124117,6534,unlikeable characters,1403562485 +124117,6539,action,1315180828 +124117,6539,adventure,1315180832 +124117,6539,fantasy,1315180838 +124117,6539,funny,1315180858 +124117,6539,Geoffrey Rush,1377848594 +124117,6539,Johnny Depp,1315180813 +124117,6539,magic,1315180844 +124117,6539,pirates,1315180878 +124117,6539,romance,1315180849 +124117,6539,swashbuckler,1403563307 +124117,6541,author:Alan Moore,1315282286 +124117,6541,disappointing,1315282329 +124117,6541,gothic,1315282309 +124117,6541,mina harker,1315282339 +124117,6541,mr. hyde,1315282267 +124117,6541,Peta Wilson,1315282341 +124117,6541,pulp,1315282263 +124117,6541,Sean Connery,1315282259 +124117,6541,steampunk,1315282257 +124117,6550,bathroom humor,1331683561 +124117,6550,crude humor,1331683498 +124117,6550,few funny scenes,1393569229 +124117,6579,comedy,1360567017 +124117,6579,James Cagney,1360566960 +124117,6618,Stephen Chow,1432406676 +124117,6639,Audrey Hepburn,1387258174 +124117,6639,Bechdel Test:Fail,1387258536 +124117,6639,blindness,1387258215 +124117,6639,con artists,1387258233 +124117,6639,obnoxious kid,1387258369 +124117,6649,Alec Guinness,1386400878 +124117,6650,Alec Guinness,1316229354 +124117,6650,British comedy,1391746113 +124117,6650,cynical,1316229365 +124117,6650,Ealing Studios,1316229355 +124117,6650,multiple roles,1316229378 +124117,6650,villain as hero,1331684638 +124117,6654,dragon,1378960258 +124117,6654,Godzilla Universe,1382945066 +124117,6654,Gotengo,1382073242 +124117,6654,Kaiju,1378960289 +124117,6654,lost world,1378960329 +124117,6654,Mu,1382073182 +124117,6654,poor Manda,1382072729 +124117,6654,slow,1378960405 +124117,6654,submarine,1378960055 +124117,6654,undersea kingdom,1383546490 +124117,6655,abduction,1365139574 +124117,6655,Akihiko Hirata,1383697971 +124117,6655,alien invasion,1365139522 +124117,6655,aliens,1365139478 +124117,6655,giant robots,1365139623 +124117,6655,Godzilla Universe,1382945390 +124117,6655,Japan,1365139467 +124117,6655,slow,1365139488 +124117,6655,Toho,1382505181 +124117,6657,monster,1379976719 +124117,6657,Ray Harryhausen,1379976680 +124117,6657,stop motion,1379976726 +124117,6686,action,1339996756 +124117,6686,comedy,1339996896 +124117,6686,crude humor,1339996793 +124117,6686,innuendo,1339996807 +124117,6686,Jackie Chan,1339996754 +124117,6686,Lee Evans,1362031968 +124117,6686,martial arts,1339996839 +124117,6709,action,1339486398 +124117,6709,Antonio Banderas,1339486362 +124117,6709,convoluted plot,1339488359 +124117,6709,gunfights,1339486720 +124117,6709,Johnny Depp,1339486363 +124117,6709,Mickey Rourke,1339486665 +124117,6709,Robert Rodriguez,1339486365 +124117,6709,Salma Hayek,1339486368 +124117,6743,beautiful scenery,1395378896 +124117,6743,greed,1395378872 +124117,6743,India,1395379058 +124117,6743,lost city,1395379038 +124117,6743,Rudyard Kipling,1395379074 +124117,6743,Sabu,1395378931 +124117,6743,talking animals,1395379215 +124117,6753,Haley Joel Osment,1316142588 +124117,6753,Michael Caine,1316142585 +124117,6753,Robert Duvall,1316142586 +124117,6753,unique,1316142610 +124117,6754,Kate Beckinsale,1432406314 +124117,6754,Kevin Grevioux,1418023581 +124117,6754,vampires,1432406318 +124117,6754,werewolves,1432406321 +124117,6764,Below R,1391762570 +124117,6764,bounty hunter(s),1391762565 +124117,6777,Post WWII,1316143176 +124117,6813,courtroom,1401249732 +124117,6813,Don Knotts,1401248304 +124117,6837,Charles Boyer,1391657783 +124117,6849,Albert Finney,1386400913 +124117,6849,Alec Guinness,1386400902 +124117,6849,Ebenezer Scrooge,1387860699 +124117,6849,musical,1386400925 +124117,6849,ridiculous,1387860661 +124117,6849,so bad it's good,1397843617 +124117,6856,James Cagney,1360567876 +124117,6856,musical,1360567897 +124117,6856,patriotic,1316134887 +124117,6857,ninja,1416121478 +124117,6857,Nudity (Animated),1416121533 +124117,6859,deal with the devil,1385958513 +124117,6859,farming,1385958551 +124117,6859,good acting,1385958489 +124117,6859,Simone Simon,1385958304 +124117,6859,Walter Huston,1385958396 +124117,6882,2000s,1381120260 +124117,6882,2080s,1381120270 +124117,6882,Acting,1328084648 +124117,6882,Action,1315439651 +124117,6882,alien invasion,1315439676 +124117,6882,Anne Suzuki,1370670721 +124117,6882,chemistry between actors,1381120369 +124117,6882,end of the world,1315439656 +124117,6882,fun,1335511390 +124117,6882,future,1337223578 +124117,6882,gunfights,1337223619 +124117,6882,hitman,1381120464 +124117,6882,Japan,1370668949 +124117,6882,Takeshi Kaneshiro,1315439665 +124117,6882,time travel,1315439659 +124117,6882,underrated,1370671000 +124117,6893,cars,1416904199 +124117,6893,funny,1416904223 +124117,6893,heist,1416904197 +124117,6893,Michael Caine,1416904177 +124117,6908,monster:giant insect,1382421496 +124117,6910,Hammer Horror,1424729710 +124117,6916,Basil Rathbone,1406603564 +124117,6916,deus ex machina,1406603607 +124117,6916,dragon,1406603634 +124117,6916,hero is a wimp,1406603583 +124117,6923,Basil Rathbone,1330926977 +124117,6923,Basil Rathbone as Sherlock Holmes,1330926969 +124117,6924,Basil Rathbone,1349596076 +124117,6924,Basil Rathbone as Sherlock Holmes,1349596066 +124117,6924,Nigel Bruce,1349596084 +124117,6925,Basil Rathbone,1330926856 +124117,6925,Basil Rathbone as Sherlock Holmes,1330926842 +124117,6925,Sherlock Holmes,1330926845 +124117,6934,Carrie-Anne Moss,1315363793 +124117,6934,crappy sequel,1315363761 +124117,6934,Hugo Weaving,1315363834 +124117,6934,Keanu Reeves,1315363754 +124117,6934,martial arts,1315363781 +124117,6934,The Chosen One,1377806131 +124117,6934,virtual reality,1315363799 +124117,6942,British comedy,1404490344 +124117,6942,Colin Firth,1404490115 +124117,6942,feel good movie,1404490156 +124117,6942,infidelity,1404490743 +124117,6942,Liam Neeson,1404490127 +124117,6942,nationalism,1404491737 +124117,6942,songs,1404490184 +124117,6947,bad puns,1362215153 +124117,6947,boring,1362214973 +124117,6947,every cliche in the book,1362215026 +124117,6947,historically inaccurate,1362217799 +124117,6947,no character development,1362216521 +124117,6947,Paul Bettany,1362214980 +124117,6947,Russell Crowe,1362215235 +124117,6947,slow,1362215061 +124117,6959,boring,1365064118 +124117,6959,David Thewlis,1365064157 +124117,6959,drab,1365064130 +124117,6959,Gerard Butler,1315283110 +124117,6959,Neal McDonough,1365064189 +124117,6966,Frances McDormand,1410422495 +124117,6966,Jenny Agutter,1410462519 +124117,6966,parody,1410422425 +124117,6966,revenge,1410422799 +124117,6966,tongue-in-cheek,1410422436 +124117,6985,contortionists,1385066650 +124117,6985,French,1385066887 +124117,6985,silent,1385066686 +124117,6987,Conrad Veidt,1394864806 +124117,6987,German Expressionism,1394864864 +124117,6987,see it before it's SPOILED!!,1394938068 +124117,6987,somnambulist,1394864928 +124117,6995,Arnold Schwarzenegger,1332784974 +124117,6995,kinda stupid,1332785290 +124117,6995,shirtless men,1332785229 +124117,7013,good and evil,1315942387 +124117,7013,Peter Graves,1380259788 +124117,7013,Robert Mitchum,1366432900 +124117,7013,self-proclaimed preacher,1385197744 +124117,7027,John Cleese,1442811961 +124117,7056,gangsters,1360567213 +124117,7056,James Cagney,1360567201 +124117,7056,Jean Harlow,1360567244 +124117,7056,Prohibition,1360567222 +124117,7057,James Cagney,1360567424 +124117,7057,Olivia de Havilland,1360567480 +124117,7057,Shakespeare,1360567450 +124117,7064,fairy tale,1384924484 +124117,7072,John Wayne,1381988125 +124117,7075,Basil Rathbone,1315777720 +124117,7075,Danny Kaye,1315777717 +124117,7075,fencing,1339957360 +124117,7075,medieval,1315777742 +124117,7075,musical,1339957347 +124117,7075,swashbuckler,1315777746 +124117,7075,whimsical,1315777735 +124117,7076,gritty,1342593026 +124117,7076,Nudity (Topless - Brief),1365356467 +124117,7076,Robert Vaughn,1394427171 +124117,7076,somber,1342593029 +124117,7076,Steve McQueen,1342593032 +124117,7087,Alec Guinness,1386400816 +124117,7087,Bechdel Test:Fail,1386400807 +124117,7090,Action,1315365764 +124117,7090,amazing photography,1328861534 +124117,7090,atmospheric,1315365757 +124117,7090,Beautiful,1315365759 +124117,7090,colorful,1328861510 +124117,7090,disappointing ending,1328861459 +124117,7090,Epic,1315365815 +124117,7090,Jet Li,1315365810 +124117,7090,kung fu,1315365730 +124117,7090,stylized,1315365738 +124117,7090,unapologetically awesome characters,1408682467 +124117,7090,visually appealing,1315365734 +124117,7090,wuxia,1315365735 +124117,7091,absurd,1316229243 +124117,7091,Marx brothers,1316229224 +124117,7099,anime,1332998526 +124117,7099,anti-war,1447404215 +124117,7099,bugs,1377415410 +124117,7099,ecology,1447404207 +124117,7099,environmental,1447404211 +124117,7099,Hayao Miyazaki,1332998527 +124117,7099,Japan,1332998572 +124117,7099,Patrick Stewart,1377415028 +124117,7099,post-apocalyptic,1377414851 +124117,7099,prophecy,1377805059 +124117,7099,Studio Ghibli,1332998537 +124117,7099,tankjacking,1377414881 +124117,7099,the book was better,1377805171 +124117,7099,The Chosen One,1377805032 +124117,7122,Alan Bates,1414474324 +124117,7122,anti-war,1414474330 +124117,7122,Genevieve Bujold,1414474557 +124117,7122,heavy-handed message,1414474622 +124117,7122,insane asylum,1414474634 +124117,7122,Nudity (Rear),1414474650 +124117,7132,Groucho Marx,1315777820 +124117,7132,Harpo Marx,1315777824 +124117,7132,music,1315777841 +124117,7153,adventure,1315197067 +124117,7153,Elijah Wood,1333603499 +124117,7153,ensemble cast,1315197065 +124117,7153,epic adventure,1333603405 +124117,7153,fantasy,1315197059 +124117,7153,great soundtrack,1315197087 +124117,7153,high fantasy,1333603446 +124117,7153,Ian McKellen,1333603460 +124117,7153,magic,1315197054 +124117,7153,multiple storylines,1315197057 +124117,7153,Orlando Bloom,1333603400 +124117,7153,Peter Jackson,1333603427 +124117,7163,Aaron Eckhart,1315206913 +124117,7163,author:Philip K. Dick,1315206888 +124117,7163,Ben Affleck,1315206896 +124117,7163,Philip K. Dick,1315206891 +124117,7163,sci-fi,1365064242 +124117,7163,Uma Thurman,1315206899 +124117,7217,Humphrey Bogart,1316110633 +124117,7227,nuns,1395970935 +124117,7302,Arabian Nights,1394100515 +124117,7302,Douglas Fairbanks Sr,1394100470 +124117,7302,epic,1394100571 +124117,7302,fantasy,1394100489 +124117,7302,fun,1394100536 +124117,7302,lavish,1394100543 +124117,7302,magic carpet,1394100929 +124117,7308,action,1377136398 +124117,7308,cliche,1377136375 +124117,7308,explosions,1377135557 +124117,7308,Indiana Jones wannabe,1392525172 +124117,7308,Nazis by any other name,1377240419 +124117,7308,painful to watch,1377136258 +124117,7308,parody,1392525145 +124117,7308,so bad it's almost good,1377135633 +124117,7308,spoof,1377135665 +124117,7308,stereotypes,1377136040 +124117,7308,the book was better,1377135568 +124117,7308,torture,1377136363 +124117,7309,Douglas Fairbanks Sr,1401947120 +124117,7309,pirates,1401947131 +124117,7309,swashbuckler,1401947117 +124117,7324,long distance race with horses in the desert,1315280255 +124117,7324,middle east,1315280352 +124117,7324,Viggo Mortensen,1315280272 +124117,7347,John Turturro,1315210937 +124117,7347,Johnny Depp,1315210942 +124117,7347,psychology,1315210963 +124117,7347,split personality,1315210977 +124117,7347,Stephen King,1315210928 +124117,7347,writer,1315210932 +124117,7373,catholic,1315362944 +124117,7373,clockwork devices,1315363009 +124117,7373,fantasy,1315362985 +124117,7373,gothic,1315363002 +124117,7373,Guillermo del Toro,1378432236 +124117,7373,Hellboy,1334630778 +124117,7373,monster hunter,1358487107 +124117,7373,monster:eldritch abomination,1378431646 +124117,7373,occult,1315362950 +124117,7373,occult technology,1315362959 +124117,7373,Ron Perlman,1315362971 +124117,7373,Selma Blair,1315362977 +124117,7373,steampunk,1315362928 +124117,7405,Bob Hope,1367200964 +124117,7407,Bud Abbott,1382287414 +124117,7407,Lou Costello,1382287420 +124117,7407,monster:giant gorilla,1382287432 +124117,7408,Bud Abbott,1316248502 +124117,7408,fairy tale,1356592156 +124117,7408,Lou Costello,1316248499 +124117,7420,Ann-Margret,1392009928 +124117,7420,Elvis Presley,1330296126 +124117,7454,ax-grinding,1375849851 +124117,7454,bad special effects,1375849552 +124117,7454,David Wenham,1349594624 +124117,7454,Frankenstein's monster,1382470756 +124117,7454,good concept,1349594499 +124117,7454,gothic,1315280726 +124117,7454,Hugh Jackman,1315280614 +124117,7454,monster hunter,1358487027 +124117,7454,monsters,1315280697 +124117,7454,steampunk,1315280616 +124117,7454,vampire,1315280709 +124117,7454,vampires,1315280624 +124117,7454,Van Helsing,1414397253 +124117,7454,wasted potential,1384639008 +124117,7454,werewolf,1315280711 +124117,7454,werewolves,1315280625 +124117,7482,bad acting,1315182970 +124117,7482,Bruce Lee,1315182940 +124117,7482,HEROIC MISSION,1315182942 +124117,7482,martial arts,1315182945 +124117,7482,Nudity (Topless - Brief),1315182954 +124117,7482,Nudity (Topless),1315182951 +124117,7482,slow,1315182957 +124117,7569,Sean Connery,1316102780 +124117,7570,James Bond,1316102529 +124117,7570,Roger Moore,1316102530 +124117,7570,unfunny comedy,1316102572 +124117,7619,Anne Bancroft,1393389367 +124117,7619,great acting,1393389313 +124117,7619,Patty Duke,1393389376 +124117,7706,Marx Brothers,1316229293 +124117,7713,Simone Simon,1358225112 +124117,7713,Val Lewton,1316109687 +124117,7728,John Garfield,1330874549 +124117,7757,Golden Fleece,1375903446 +124117,7757,monsters,1375903476 +124117,7757,Ray Harryhausen,1375903452 +124117,7762,Alec Guinness,1386400706 +124117,7826,Danny Kaye,1330159736 +124117,7827,brainwashing,1330159645 +124117,7827,corporate espionage,1326511621 +124117,7827,cyberpunk,1326511625 +124117,7827,double agents,1326511637 +124117,7827,gadgets,1326511704 +124117,7827,R,1326511684 +124117,7827,sci-fi,1326511632 +124117,7831,snappy banter,1372138527 +124117,7832,snappy banter,1372138551 +124117,7833,snappy banter,1372138604 +124117,7834,snappy banter,1372138505 +124117,7835,snappy banter,1372138577 +124117,7840,adapted from:poem,1315778156 +124117,7840,Anglo-Indian relations,1315778180 +124117,7840,author:Rudyard Kipling,1315778150 +124117,7840,India,1315778169 +124117,7840,Rudyard Kipling,1315778172 +124117,7881,gratuitous underwear scene,1395463117 +124117,7881,pre-code Hollywood,1395463393 +124117,7881,voodoo zombies,1395463038 +124117,7881,zombies,1395463006 +124117,7883,Val Lewton,1330810710 +124117,7891,another adaptation of _I Am Legend_,1316143722 +124117,7891,author:Richard Matheson,1316143696 +124117,7891,Vincent Price,1316143714 +124117,7894,missing scenes,1402815743 +124117,7894,rape,1402815810 +124117,7894,revolution,1402815838 +124117,7894,Sergio Leone,1402815761 +124117,7900,Frankenstein's monster,1382471630 +124117,7900,Hammer Horror,1414396424 +124117,7901,Edgar Allan Poe,1375849362 +124117,7925,Akira Kurosawa,1315197294 +124117,7925,greed,1382927237 +124117,7925,Japan,1382927242 +124117,7925,princess,1382927215 +124117,7925,related:Star Wars,1315197307 +124117,7925,samurai,1315197284 +124117,7925,Toshiro Mifune,1315197281 +124117,7948,"""Nobody with a good car needs to be justified.""",1331015951 +124117,7948,Brad Dourif,1331015650 +124117,7948,good acting,1385197873 +124117,7948,murder,1331016220 +124117,7948,self-proclaimed preacher,1385197845 +124117,8003,Val Lewton,1330810788 +124117,8008,Cyd Charisse,1347073483 +124117,8008,Gene Kelly,1316654105 +124117,8008,musical,1316654110 +124117,8008,Van Johnson,1347073489 +124117,8019,apartment,1405402608 +124117,8019,creepy,1405402852 +124117,8019,divorce,1405402675 +124117,8019,good dub,1405402921 +124117,8019,great acting,1405402839 +124117,8019,Japanese horror,1405402565 +124117,8019,Mirei Oguchi,1405402641 +124117,8019,mother daughter relationship,1405402757 +124117,8019,neglected children,1405402334 +124117,8019,Rio Kanno,1405402433 +124117,8019,water,1405402697 +124117,8147,dated,1342592615 +124117,8147,flowers for algernon,1342592594 +124117,8147,Oscar (Best Actor),1315370752 +124117,8147,social commentary,1342592588 +124117,8167,Basil Rathbone,1328076985 +124117,8167,Errol Flynn,1328077038 +124117,8167,fencing,1328076996 +124117,8167,pirates,1397020686 +124117,8167,swashbuckler,1328076983 +124117,8167,sword fight,1328077027 +124117,8206,dated slang,1379909067 +124117,8206,Fay Wray,1316109590 +124117,8206,Frank McHugh,1365355646 +124117,8206,Glenda Farrell,1365355610 +124117,8206,Lionel Atwell,1316109596 +124117,8206,Michael Curtiz,1316109603 +124117,8206,snappy banter,1365355596 +124117,8206,wax museum,1382042143 +124117,8228,bad editing,1375511264 +124117,8228,Bechdel Test:Pass,1375686959 +124117,8228,Dashiell Hammett,1375685695 +124117,8228,Dudley Digges,1375511199 +124117,8228,easily confused with other movie(s) (title),1349595922 +124117,8228,not as good as the remake,1375686886 +124117,8228,The Maltese Falcon,1375685676 +124117,8228,Una Merkel,1375511251 +124117,8235,Harold Lloyd,1379122962 +124117,8235,Mildred Davis,1379298725 +124117,8235,real stunts,1379123545 +124117,8235,silent movie,1379299303 +124117,8253,action,1315182690 +124117,8253,adventure,1315182689 +124117,8253,anime,1315182692 +124117,8253,Directorial Debut,1315182693 +124117,8253,dub adds swearing,1380352798 +124117,8253,funny,1315182684 +124117,8253,Hayao Miyazaki,1315182674 +124117,8253,Japan,1332998937 +124117,8253,Lupin III,1315182700 +124117,8253,Studio Ghibli,1332998961 +124117,8262,hard to rate,1394938649 +124117,8262,Rex Ingram,1394938468 +124117,8295,Fay Wray,1379909112 +124117,8295,hunting,1379909458 +124117,8330,Alec Guinness,1386400743 +124117,8334,children,1365357057 +124117,8334,coming of age,1365357044 +124117,8334,gritty,1365356884 +124117,8334,John Wayne,1365356853 +124117,8334,violent,1365356995 +124117,8337,authority,1330875066 +124117,8337,Fred MacMurray,1330875085 +124117,8337,Humphrey Bogart,1330875043 +124117,8337,personality disorder,1330875046 +124117,8339,Alec Guinness,1386400841 +124117,8341,Alec Guinness,1386400636 +124117,8361,climate change,1415399021 +124117,8361,Dennis Quaid,1415399010 +124117,8361,global warming,1415398979 +124117,8368,school life,1379054217 +124117,8370,blind badass,1386224776 +124117,8371,audience intelligence underestimated,1328756837 +124117,8371,bounty hunter(s),1396927876 +124117,8371,Judi Dench,1327606668 +124117,8371,kinda stupid,1327606698 +124117,8371,lame sequel,1327606716 +124117,8371,Riddick,1332785332 +124117,8371,ruined the franchise,1358576134 +124117,8371,sci-fi,1332785336 +124117,8371,shallow plot,1396927908 +124117,8371,The Chosen One,1377807174 +124117,8371,unnecessary sequel,1358576120 +124117,8371,Vin Diesel,1327606675 +124117,8401,author:Arthur Conan Doyle,1330873614 +124117,8401,Basil Rathbone,1330873606 +124117,8401,battle of wits,1408673639 +124117,8401,private detective,1330873610 +124117,8404,author:Arthur Conan Doyle,1315778578 +124117,8404,Basil Rathbone,1315778574 +124117,8404,Basil Rathbone as Sherlock Holmes,1315778571 +124117,8404,Sherlock Holmes,1315778584 +124117,8451,juvenile delinquents,1331360984 +124117,8451,rock and roll,1331360926 +124117,8477,Bechdel Test:Pass,1386136046 +124117,8477,experimental,1386136110 +124117,8477,short,1386136096 +124117,8477,time travel,1386136086 +124117,8491,James Cagney,1360567142 +124117,8491,mother-son relationship,1316106718 +124117,8491,trains,1360567166 +124117,8492,Alastair Sim,1387860477 +124117,8500,Godzilla,1382944102 +124117,8500,Godzilla Universe,1382944316 +124117,8500,Kaiju,1382944144 +124117,8500,King Caesar,1382944305 +124117,8500,MechaGodzilla,1387344858 +124117,8500,Toho,1382944149 +124117,8526,awful movie,1315283039 +124117,8526,inventor,1315283065 +124117,8526,Jackie Chan,1315283021 +124117,8526,Jules Verne,1315283034 +124117,8526,martial arts,1315283023 +124117,8526,not funny,1315283032 +124117,8526,Slaughtered the book,1315283026 +124117,8526,steampunk,1315283028 +124117,8542,Marx Brothers,1316229185 +124117,8600,gangster,1360567091 +124117,8600,Humphrey Bogart,1360567075 +124117,8600,James Cagney,1360567057 +124117,8615,archaeology,1356846768 +124117,8615,Fu Manchu,1356846975 +124117,8615,Lawrence Grant,1356845561 +124117,8615,pre-code Hollywood,1356847357 +124117,8615,stereotypes,1356846729 +124117,8615,subgenre:yellow peril,1356846886 +124117,8615,torture,1357195845 +124117,8615,yellowface,1385870293 +124117,8636,action,1332822434 +124117,8636,Alfred Molina,1384546156 +124117,8636,Danny Elfman,1332822369 +124117,8636,Doc Ock,1332822400 +124117,8636,Kirsten Dunst,1315180576 +124117,8636,marvel,1315180563 +124117,8636,New York City,1332822440 +124117,8636,Sam Raimi,1338870207 +124117,8636,songs,1335671750 +124117,8636,superhero,1315180553 +124117,8636,Tobey Maguire,1332822383 +124117,8644,cyborg,1407906550 +124117,8644,dated CGI,1407906550 +124117,8644,robots,1407906550 +124117,8644,Will Smith,1407906551 +124117,8647,Elvis Presley,1392009887 +124117,8647,hillbillies,1316384720 +124117,8647,outhouse,1316384723 +124117,8665,Matt Damon,1350358300 +124117,8666,cats,1425802121 +124117,8666,superhero,1425801989 +124117,8677,Flash Gordon,1362527164 +124117,8677,sci-fi,1362527151 +124117,8677,Serial,1348190859 +124117,8679,forgettable,1330296465 +124117,8693,James Cagney,1360567810 +124117,8700,forgettable,1366269704 +124117,8700,World War II,1366269734 +124117,8711,Cary Grant,1316935749 +124117,8718,interesting,1330874636 +124117,8718,mental illness,1330874631 +124117,8718,Olivia de Havilland,1330874625 +124117,8761,animal:cat,1403757179 +124117,8767,Elsa Lanchester,1403886192 +124117,8767,galling,1403847304 +124117,8767,good beginning,1403886313 +124117,8767,idiotic characters,1403846739 +124117,8767,John Farrow,1403846836 +124117,8767,manhunt,1403846824 +124117,8767,murder,1403846798 +124117,8767,painful to watch,1403846629 +124117,8767,Ray Milland,1403846692 +124117,8767,unlikeable characters,1403846679 +124117,8771,Basil Rathbone as Sherlock Holmes,1330927290 +124117,8773,Basil Rathbone as Sherlock Holmes,1328258172 +124117,8773,battle of wits,1408673718 +124117,8773,Lionel Atwell,1408673701 +124117,8773,Sherlock Holmes,1328258181 +124117,8778,Basil Rathbone,1349595712 +124117,8778,Basil Rathbone as Sherlock Holmes,1349595669 +124117,8778,Nigel Bruce,1349595723 +124117,8783,Adrien Brody,1403420591 +124117,8783,M. Night Shyamalan,1403420589 +124117,8783,Not what was expected but still good,1403420614 +124117,8783,William Hurt,1403420679 +124117,8810,Antarctica,1413344898 +124117,8810,PG-13,1413344884 +124117,8818,Elvis Presley,1392009978 +124117,8818,world's fair,1392010005 +124117,8865,airships,1400301079 +124117,8865,Angelina Jolie,1333686350 +124117,8865,annoying reporter,1400300923 +124117,8865,aviation,1335068897 +124117,8865,cool technology,1333686354 +124117,8865,dieselpunk,1315276554 +124117,8865,dirigibles,1315276641 +124117,8865,giant robots,1315276572 +124117,8865,homage,1400300943 +124117,8865,Jude Law,1400301050 +124117,8865,overly stylised,1315276591 +124117,8865,robots,1400300934 +124117,8865,sepia,1333686325 +124117,8879,Agatha Christie,1364876658 +124117,8879,Albert Finney,1348114562 +124117,8879,all-star cast,1364876699 +124117,8879,great score,1348114546 +124117,8879,Sean Connery,1315940540 +124117,8879,setting:train,1315940535 +124117,8879,train,1348114572 +124117,8896,aliens,1383440859 +124117,8896,better than expected,1383517223 +124117,8896,Gloria Talbott,1383440949 +124117,8896,great title,1383440916 +124117,8896,interspecies marriage,1383441398 +124117,8896,newlyweds,1383440876 +124117,8914,bad science,1342593285 +124117,8914,good idea... bad movie,1379649993 +124117,8914,indie,1315279217 +124117,8914,plot holes,1342593273 +124117,8914,pretentious,1365063834 +124117,8914,pseudo-intelligent,1365063806 +124117,8914,Shane Carruth,1315279205 +124117,8914,slow,1315279092 +124117,8914,time travel,1327381348 +124117,8928,cleavage,1415903385 +124117,8928,vampires,1415903352 +124117,8939,brain implants,1334035400 +124117,8939,good story murdered,1334035386 +124117,8939,Jim Caviezel,1334035416 +124117,8939,memory,1334035393 +124117,8939,Retro-Futurism,1334035498 +124117,8939,retro-futuristic,1334035507 +124117,8939,Robin Williams,1334035396 +124117,8939,sci-fi,1334035394 +124117,8939,wooden laptop,1334035600 +124117,8947,animal:cat,1403757041 +124117,8947,nonlinear,1402807965 +124117,8950,bleak,1316328667 +124117,8950,Christian Bale,1316328639 +124117,8950,guilt,1316328676 +124117,8950,insomnia,1316328656 +124117,8950,psychological,1316328645 +124117,8961,action,1337208924 +124117,8961,Adventure,1337208926 +124117,8961,Pixar,1337208968 +124117,8961,Samuel L. Jackson,1337208953 +124117,8961,superhero,1337208913 +124117,8961,superheroes,1337208995 +124117,8970,fairly bad,1332888143 +124117,8970,J.M. Barrie,1332888128 +124117,8970,Johnny Depp,1332888087 +124117,8970,Kate Winslet,1315343914 +124117,8970,Peter Pan,1332888123 +124117,8970,playwright,1332888180 +124117,8972,better than expected,1392573340 +124117,8972,Christopher Plummer,1316142486 +124117,8972,Diane Kruger,1392573298 +124117,8972,Jon Voight,1316142497 +124117,8972,Nicolas Cage,1316142490 +124117,8972,puzzle solving,1316142512 +124117,8972,Sean Bean,1316142448 +124117,8972,secret societies,1333593877 +124117,8972,treasure hunt,1333593875 +124117,8983,Beautiful,1315365641 +124117,8983,colorful,1315365615 +124117,8983,lacks substance,1315365667 +124117,8983,martial arts,1315365617 +124117,8983,stylized,1315365635 +124117,8983,unrealistic,1315365633 +124117,8983,wuxia,1315365625 +124117,8983,Ziyi Zhang,1315365684 +124117,9011,SUPERNATURAL ROMANCE,1316247934 +124117,25737,German Expressionism,1394938519 +124117,25737,golem/automaton,1394938533 +124117,25741,alcoholism,1393313655 +124117,25741,Death,1393312813 +124117,25741,good acting,1393312724 +124117,25741,sickness,1393313640 +124117,25742,German Expressionism,1394938964 +124117,25743,desert,1381470572 +124117,25743,kidnapping,1381470454 +124117,25743,Rudolph Valentino,1381470362 +124117,25743,The Sheik,1382134255 +124117,25743,writer,1381470421 +124117,25744,about the wrongly accused--not really about witches,1393059015 +124117,25744,biased,1393059330 +124117,25744,creepy,1393059188 +124117,25744,inquisition,1393058863 +124117,25744,mockumentary,1393058857 +124117,25747,Harold Lloyd,1379298785 +124117,25747,hypochondria,1379298828 +124117,25747,revolution,1379298855 +124117,25747,silent movie,1379299102 +124117,25747,tropical,1379299061 +124117,25763,Louise Brooks,1415695344 +124117,25763,sensual,1415695401 +124117,25763,silent movie,1415695366 +124117,25767,Conrad Veidt,1395543169 +124117,25767,Mary Philbin,1395543199 +124117,25769,Buster Keaton,1316229776 +124117,25769,hurricane,1335509471 +124117,25769,Marion Byron,1399700431 +124117,25769,silent movie,1379299333 +124117,25769,steamboats,1399700548 +124117,25773,Edward G. Robinson,1317017391 +124117,25773,gangsters,1366563167 +124117,25777,Marx Brothers,1330844816 +124117,25783,annoying reporter,1356590844 +124117,25783,atmospheric,1356590483 +124117,25783,cannibalism,1380058758 +124117,25783,Fay Wray,1356590246 +124117,25783,synthetic flesh!,1380058711 +124117,25786,Boris Karloff,1422652498 +124117,25786,funny,1422652481 +124117,25786,Old Dark House,1339957679 +124117,25786,Raymond Massey,1422652530 +124117,25793,camera tricks,1392880330 +124117,25793,dream sequence,1392880477 +124117,25793,odd,1392880383 +124117,25793,shadows,1392880357 +124117,25793,vampires,1392880248 +124117,25796,Boris Karloff,1349846527 +124117,25798,author:H. G. Wells,1316246735 +124117,25798,Bela Lugosi,1366563465 +124117,25798,Charles Laughton,1366563456 +124117,25802,dinosaurs,1365356301 +124117,25802,Helen Mack,1365356284 +124117,25802,King Kong,1365356239 +124117,25802,monster:giant gorilla,1378431857 +124117,25802,Robert Armstrong,1349594081 +124117,25802,the original is better,1349594057 +124117,25802,unnecessary sequel,1363398695 +124117,25803,Dwight Frye,1350287282 +124117,25803,Fay Wray,1350287271 +124117,25803,mad scientist,1350287317 +124117,25812,Leslie Howard,1316229144 +124117,25812,Nigel Bruce,1316229147 +124117,25812,Raymond Massey,1316229149 +124117,25818,1920s,1366562457 +124117,25818,betrayal,1366562672 +124117,25818,Heather Angel,1366562387 +124117,25818,Oscar (Best Actor),1366562518 +124117,25818,Oscar (Best Directing),1366562560 +124117,25818,Oscar (Best Screenplay),1366562634 +124117,25819,Bela Lugosi,1356497030 +124117,25819,Lionel Barrymore,1356496892 +124117,25819,plot holes,1356497338 +124117,25819,short,1356566489 +124117,25819,stupid twist,1356496944 +124117,25822,werewolf,1330925971 +124117,25822,werewolves,1330925964 +124117,25828,Humphrey Bogart,1330873533 +124117,25829,Angkor Wat,1349994220 +124117,25829,jungle,1349994288 +124117,25829,swamp,1349994363 +124117,25829,World War I,1349994346 +124117,25829,zombies,1349994310 +124117,25855,1920s,1316111028 +124117,25855,Humphrey Bogart,1316111020 +124117,25855,James Cagney,1360567941 +124117,25855,Priscilla Lane,1360567983 +124117,25855,setting:NYC,1316111037 +124117,25855,singing,1316111047 +124117,25866,Errol Flynn,1330874442 +124117,25866,pirates,1330874488 +124117,25866,unhistorical,1330874458 +124117,25871,annoying reporter,1356592059 +124117,25871,Bud Abbott,1356592098 +124117,25871,Dick Powell,1375423238 +124117,25871,Lou Costello,1356592108 +124117,25871,musical,1356592074 +124117,25879,Nazis,1316385726 +124117,25879,setting:NYC,1316385723 +124117,25879,World War II,1316385704 +124117,25884,Bob Hope,1329811514 +124117,25887,all-star cast,1366612278 +124117,25887,vignettes,1366612547 +124117,25900,Simone Simon,1385958358 +124117,25900,Val Lewton,1316248125 +124117,25904,espionage,1400697805 +124117,25904,Fritz Lang,1400697907 +124117,25904,Marjorie Reynolds,1400697980 +124117,25904,Ray Milland,1380149566 +124117,25904,the book was better,1400697900 +124117,25904,World War II,1380149579 +124117,25913,Boris Karloff,1339957892 +124117,25913,classic horror,1339957912 +124117,25913,Val Lewton,1339957878 +124117,25918,New York City,1330926466 +124117,25923,Alec Guinness,1386400673 +124117,25930,James Mason,1317833886 +124117,25931,Bing Crosby,1362527018 +124117,25931,Bob Hope,1362527011 +124117,25931,funny,1362527041 +124117,25976,better than the first,1363398992 +124117,25976,Bob Hope,1363398926 +124117,25976,Jane Russell,1363398953 +124117,25976,Roy Rogers,1363398882 +124117,25999,punks,1350022736 +124117,26006,Bob Hope,1367200978 +124117,26013,Godzilla Universe,1382945126 +124117,26013,Kaiju,1376275354 +124117,26013,Rodan,1382156156 +124117,26013,Toho,1382945138 +124117,26019,better than expected,1392431350 +124117,26019,great ending,1392432558 +124117,26019,invisibility,1392431404 +124117,26019,Kynaston Reeves,1392431606 +124117,26019,saved by the ending,1392432612 +124117,26019,Sibonetics,1392431463 +124117,26021,Elvis Presley,1330295887 +124117,26098,great title,1379447846 +124117,26099,cult,1384752009 +124117,26099,Hammer Horror,1384415361 +124117,26099,seen,1384415459 +124117,26099,vampires,1384415369 +124117,26122,kabuki mask,1420350403 +124117,26122,odd,1420350413 +124117,26124,Adam West,1387245566 +124117,26124,Mars,1387245547 +124117,26124,survival,1387245592 +124117,26134,Christopher Lee,1397795463 +124117,26134,Hammer Horror,1397795430 +124117,26134,monks,1397795488 +124117,26134,vampires,1397795475 +124117,26140,better than expected,1395970687 +124117,26140,demons,1395970084 +124117,26140,Esperanto,1395969962 +124117,26140,incubi,1395970639 +124117,26140,seduction,1395970091 +124117,26140,succubi,1395970631 +124117,26140,William Shatner,1395969947 +124117,26152,Adam West,1381028251 +124117,26152,Batman,1381028222 +124117,26152,campy,1381028229 +124117,26152,Frank Gorshin,1381028293 +124117,26152,superhero,1381028207 +124117,26162,Kaiju,1384191488 +124117,26162,Tokyo,1384191895 +124117,26185,Christopher Lee,1388987882 +124117,26185,cleavage,1388987900 +124117,26185,Dracula,1388987832 +124117,26185,Hammer Horror,1388987823 +124117,26214,Christopher Lee,1412534615 +124117,26214,Dracula,1412487947 +124117,26214,Hammer Horror,1412487955 +124117,26214,Nudity (Topless),1412487934 +124117,26223,Gamera,1392794720 +124117,26223,Kaiju,1392794739 +124117,26223,seen,1392794731 +124117,26266,1870s,1412580866 +124117,26266,1970s,1412580852 +124117,26266,Christopher Lee,1412580619 +124117,26266,Dracula,1412580655 +124117,26266,Hammer Horror,1412580940 +124117,26266,hippies,1412580665 +124117,26266,Jessica Van Helsing,1414396990 +124117,26266,Lorrimer Van Helsing,1414396974 +124117,26266,Peter Cushing,1412580595 +124117,26266,seen,1412580604 +124117,26266,sensual,1412580837 +124117,26266,Stephanie Beacham,1412580631 +124117,26266,vampires,1412580693 +124117,26266,Van Helsing,1412580646 +124117,26453,Alec Guinness,1386400774 +124117,26479,comedy,1330675745 +124117,26479,Gilbert & Sullivan,1321428213 +124117,26479,musical,1321428210 +124117,26479,pirates,1330675742 +124117,26479,Rex Smith,1362898338 +124117,26479,substance over style,1379560036 +124117,26479,swashbuckler,1321428208 +124117,26502,Bechdel Test:Pass,1387860372 +124117,26502,George C. Scott,1387860360 +124117,26546,Jiangshi,1391744173 +124117,26662,airships,1400301258 +124117,26662,anime,1315182771 +124117,26662,aviation,1315182783 +124117,26662,coming of age,1315182792 +124117,26662,Hayao Miyazaki,1315182761 +124117,26662,magic,1315182764 +124117,26662,Studio Ghibli,1376896116 +124117,26662,talking animals,1315182797 +124117,26662,trains,1315182769 +124117,26662,witch,1315182796 +124117,26662,zeppelin,1367201651 +124117,26764,Captain America,1366564264 +124117,26776,1920s,1377241343 +124117,26776,aerial dogfights,1332998828 +124117,26776,anime,1332998823 +124117,26776,aviation,1332998878 +124117,26776,Hayao Miyazaki,1332998811 +124117,26776,Italy,1332998871 +124117,26776,Japan,1332998812 +124117,26776,magic realism,1377240624 +124117,26776,sky pirates,1377240995 +124117,26776,Studio Ghibli,1332998817 +124117,26776,unanswered questions,1377239980 +124117,26801,cannibalism,1399396392 +124117,26801,Donnie Yen,1399396297 +124117,26801,eunuchs,1399396372 +124117,26801,great ending,1399396549 +124117,26801,inn,1399396466 +124117,26865,Amazing kung fu,1328254416 +124117,26865,fighting,1336431942 +124117,26865,Jet Li,1328254403 +124117,26865,martial arts,1328254411 +124117,26903,anime,1332140573 +124117,26903,better than:The Cat Returns,1377803661 +124117,26903,books,1332140534 +124117,26903,cats,1332140632 +124117,26903,Hayao Miyazaki,1332140537 +124117,26903,inspiring,1332140660 +124117,26903,Japan,1332140540 +124117,26903,school life,1379053979 +124117,26903,screenwriter:Hayao Miyazaki,1402374846 +124117,26903,Studio Ghibli,1315202307 +124117,26903,teenage girl,1315202325 +124117,26903,urban,1377933530 +124117,26903,writer,1315202291 +124117,26903,Yoshifumi Kondo,1377681720 +124117,26958,England,1368415084 +124117,26958,funny moments,1368415312 +124117,26958,Jane Austen,1368415240 +124117,26958,made for TV,1368415266 +124117,26958,Mark Strong,1368414413 +124117,26958,matchmaker,1368415427 +124117,26958,Raymond Coulthard,1368414848 +124117,27032,amnesia,1366781052 +124117,27032,comedy,1366781464 +124117,27032,fun,1366781344 +124117,27032,Jackie Chan,1366781048 +124117,27032,Jackie Chan's Best,1366781502 +124117,27032,martial arts,1366781054 +124117,27032,Michelle Ferre,1366781294 +124117,27032,secret service,1366781327 +124117,27032,slow start,1375864670 +124117,27032,spy,1366781308 +124117,27032,twists & turns,1366781407 +124117,27266,slow,1332888037 +124117,27395,bloody,1394690981 +124117,27395,bridge,1394690907 +124117,27395,Buddhist monk,1394690935 +124117,27395,Daisuke Ryu,1394691035 +124117,27395,high body count,1394690874 +124117,27395,seen,1394690891 +124117,27395,slow,1394691061 +124117,27395,takes itself too seriously,1394691639 +124117,27455,Baragon,1385624920 +124117,27455,Godzilla,1385624412 +124117,27455,Godzilla Universe,1385629147 +124117,27455,guardian monsters,1385625611 +124117,27455,juvenile delinquents,1385628286 +124117,27455,Kaiju,1383763289 +124117,27455,King Ghidorah,1385624905 +124117,27455,Mothra,1385624897 +124117,27455,role reversal,1385624768 +124117,27455,Shusuke Kaneko,1385627770 +124117,27455,Toho,1383763295 +124117,27611,bad acting,1342592438 +124117,27611,cynical,1342592428 +124117,27611,political,1327608174 +124117,27611,politics,1327608178 +124117,27611,too serious,1342592403 +124117,27660,A Detective Story,1380746930 +124117,27660,animals die :(,1380701182 +124117,27660,Beyond,1380746581 +124117,27660,Final Flight of the Osiris,1380747132 +124117,27660,gore,1380700710 +124117,27660,Kid's Story,1380747026 +124117,27660,Matriculated,1380747009 +124117,27660,Nudity (Animated),1380700703 +124117,27660,Program,1380746948 +124117,27660,The Second Renaissance 1 & 2,1380747103 +124117,27660,World Record,1380746967 +124117,27675,bleak,1384639462 +124117,27675,criminals,1368153594 +124117,27675,drab,1384639450 +124117,27675,government research,1346219245 +124117,27675,had potential,1398390865 +124117,27675,Hideo Sakaki,1346219168 +124117,27675,Japan,1346219387 +124117,27675,possession,1346219455 +124117,27675,prison,1345617280 +124117,27675,sci-fi,1345617254 +124117,27675,slow paced,1346219331 +124117,27675,suicide,1346219123 +124117,27675,weird,1384639378 +124117,27731,anime,1333035802 +124117,27731,Anne Hathaway,1328757295 +124117,27731,believe in yourself cliche,1377803753 +124117,27731,inferior sequel,1328757250 +124117,27731,Japan,1333035817 +124117,27731,See: Whisper of the Heart,1328757261 +124117,27731,Studio Ghibli,1328757173 +124117,27731,the original is better,1367190828 +124117,27731,unnecessary sequel,1377109584 +124117,27742,action,1379188970 +124117,27742,beloved character dies pointlessly,1395027496 +124117,27742,cameo:Jackie Chan,1395028300 +124117,27742,Edison Chen,1395027419 +124117,27742,Ekin Cheng,1395028076 +124117,27742,loses its way,1395029686 +124117,27742,monster hunter,1379188908 +124117,27742,seen,1395027179 +124117,27742,vampires,1379188925 +124117,27772,animal:cat,1403757010 +124117,27772,Japanese horror,1405741995 +124117,27772,Ju-on series,1405742013 +124117,27772,nonlinear,1408505376 +124117,27772,Toshio is SOOOO cute!,1405741249 +124117,27773,bizarre,1333425627 +124117,27773,brutal,1326527703 +124117,27773,great concept,1336432420 +124117,27773,imperfect,1326950154 +124117,27773,Korea,1333425616 +124117,27773,Korean,1333425617 +124117,27773,octopus gets bad rap,1326950094 +124117,27773,stylized,1326527711 +124117,27798,haunted house,1407821135 +124117,27798,Japanese horror,1407821135 +124117,27798,Ju-on series,1407821135 +124117,27798,nonlinear,1408505406 +124117,27798,pregnancy,1407821134 +124117,27904,drugs,1335421190 +124117,27904,Keanu Reeves,1335421127 +124117,27904,Nudity (Animated),1377110082 +124117,27904,Philip K. Dick,1335421129 +124117,27904,Robert Downey Jr.,1335421131 +124117,27904,rotoscope,1335421178 +124117,27904,the book was better,1377805211 +124117,27904,undercover cop,1335421152 +124117,27904,weird,1335421148 +124117,27904,Winona Ryder,1335421142 +124117,27904,Woody Harrelson,1335421144 +124117,27905,anti-war commentary,1335510785 +124117,27905,bad special effects,1335510694 +124117,27905,Japan,1375849499 +124117,27905,martial arts,1331602339 +124117,27905,strange,1335510834 +124117,27905,superhero,1335510813 +124117,30712,Suspense,1329277375 +124117,30712,Tense,1329277374 +124117,30712,Train,1329277371 +124117,30808,baseball,1379649686 +124117,30808,formulaic,1379649707 +124117,30808,Ray Milland,1379649676 +124117,30810,Bill Murray,1415903538 +124117,30810,father-son relationship,1415903603 +124117,30810,great soundtrack,1415903549 +124117,30810,Nudity (Topless),1415903561 +124117,30810,Owen Wilson,1415903595 +124117,30810,stylized,1415903553 +124117,30810,visually appealing,1415903622 +124117,30810,Willem Dafoe,1415903607 +124117,30816,Gerard Butler,1361681601 +124117,30816,hero is a wimp,1361683203 +124117,30816,Nudity (Rear),1361683039 +124117,30816,Patrick Wilson,1361681728 +124117,30816,pretentious,1365064016 +124117,30863,Bud Abbott,1391058856 +124117,30863,Lou Costello,1391058863 +124117,31079,Godzilla,1382066415 +124117,31079,Godzilla Universe,1382944492 +124117,31079,Kaiju,1382066451 +124117,31079,Kamacuras,1382223536 +124117,31079,Minilla,1382223513 +124117,31079,monster:giant insect,1382070051 +124117,31079,monster:giant spider,1382399180 +124117,31116,Gary Cooper,1316143015 +124117,31158,lowest common denominator,1350628839 +124117,31158,not funny,1350628876 +124117,31158,They don't even go to Mars!,1350628881 +124117,31221,contrived romance,1408303361 +124117,31221,Jennifer Garner,1408243185 +124117,31221,Kirsten Prout,1408243199 +124117,31221,superhero,1408243211 +124117,31221,unlikeable characters,1408243295 +124117,31349,curse,1390882411 +124117,31349,election,1390879748 +124117,31349,Fredric March,1390879701 +124117,31349,love potion,1390882442 +124117,31349,SUPERNATURAL ROMANCE,1390879677 +124117,31349,Susan Hayward,1390882061 +124117,31349,witch,1390879778 +124117,31364,disturbing,1422652221 +124117,31364,gritty,1422652228 +124117,31364,Joon-ho Bong,1422652148 +124117,31364,police brutality,1422652212 +124117,31364,rape,1422652283 +124117,31364,serial killer,1422652155 +124117,31364,Song Kang-ho,1422652262 +124117,31364,torture,1422652232 +124117,31389,Daleks,1344406208 +124117,31389,Doctor Who,1344406327 +124117,31389,Peter Cushing,1385365593 +124117,31389,sci-fi,1344406253 +124117,31389,swamp,1349994644 +124117,31389,time travel,1344406231 +124117,31528,Brian Donlevy,1381987997 +124117,31528,french foreign legion,1315778459 +124117,31528,Ray Milland,1381987938 +124117,31528,villain steals the show,1381987926 +124117,31645,giant squid,1339956977 +124117,31645,John Wayne,1339957095 +124117,31645,Paulette Goddard,1339957072 +124117,31645,Ray Milland,1339956920 +124117,31645,Susan Hayward,1339957000 +124117,31658,aging,1380749761 +124117,31658,anime,1329293369 +124117,31658,anti-war,1315370356 +124117,31658,better than the book,1381987831 +124117,31658,dreamlike,1315370361 +124117,31658,fanciful,1315370364 +124117,31658,fantasy,1329293382 +124117,31658,fantasy world,1329293380 +124117,31658,Hayao Miyazaki,1315370336 +124117,31658,Joe Hisaishi,1315370340 +124117,31658,magic,1315370373 +124117,31658,steampunk,1315370337 +124117,31658,wizards,1315370370 +124117,31660,Alfred Molina,1383527732 +124117,31660,anime,1333686249 +124117,31660,Anna Paquin,1383527723 +124117,31660,drab,1383520495 +124117,31660,Patrick Stewart,1383527730 +124117,31660,sepia,1333686312 +124117,31660,steampunk,1333686221 +124117,31660,visually interesting--that's about it,1383520475 +124117,31854,Gary Cooper,1330873814 +124117,31878,1940s,1370143294 +124117,31878,action,1370143202 +124117,31878,Axe Gang,1393913704 +124117,31878,fun,1405876944 +124117,31878,great story,1394350918 +124117,31878,kung fu,1370142112 +124117,31878,Nudity (Rear),1370143110 +124117,31878,slapstick,1394350709 +124117,31878,Stephen Chow,1370142083 +124117,31950,closed-minded hero,1379816522 +124117,31950,Dana Andrews,1379816105 +124117,31950,demons,1379816562 +124117,31950,good concept,1401510446 +124117,32076,adventure,1382738705 +124117,32076,Akira Takarada,1384192971 +124117,32076,dance marathon,1384041331 +124117,32076,Ebirah,1382738849 +124117,32076,fun,1382749921 +124117,32076,Godzilla,1382156353 +124117,32076,Godzilla Universe,1382944369 +124117,32076,good characters,1383601455 +124117,32076,island,1382739250 +124117,32076,Kaiju,1382156378 +124117,32076,Mothra,1382156356 +124117,32076,Toho,1382602866 +124117,32078,Godzilla,1382223934 +124117,32078,Godzilla Universe,1382944568 +124117,32078,Kaiju,1382602896 +124117,32078,mecha,1385710876 +124117,32078,MechaGodzilla,1387344981 +124117,32078,Rodan,1385710805 +124117,32078,Toho,1382602902 +124117,32139,dull,1375850744 +124117,32280,corruption,1393568743 +124117,32280,crime boss,1393568645 +124117,32280,criminals,1393568490 +124117,32280,great ending,1393609606 +124117,32280,great sets,1393568701 +124117,32280,musical,1393568612 +124117,32280,prostitution,1393568626 +124117,32395,atmospheric,1392959507 +124117,32395,Hiroshi Koizumi,1392958907 +124117,32395,Ishiro Honda,1392958733 +124117,32395,Kumi Mizuno,1392958839 +124117,32395,mushrooms,1392959565 +124117,32395,shipwreck,1392958719 +124117,32395,survival,1392959538 +124117,32395,Toho,1392958757 +124117,32395,unusual,1392959593 +124117,32395,writer,1392959202 +124117,32452,family,1377329492 +124117,32452,funny,1377330357 +124117,32452,Isao Takahata,1377329397 +124117,32452,not enough Nonoko,1377328784 +124117,32452,Studio Ghibli,1377328738 +124117,32452,true to life,1377328764 +124117,32452,vignettes,1377329598 +124117,32452,whose neighbors?,1377329313 +124117,32456,animal attacks,1378799288 +124117,32456,animals die :(,1378800659 +124117,32456,anime,1378799301 +124117,32456,breaks the fourth wall,1378799357 +124117,32456,ecology,1378799069 +124117,32456,environmental,1378799065 +124117,32456,genitalia,1378799612 +124117,32456,Isao Takahata,1378799099 +124117,32456,man vs. nature,1378799071 +124117,32456,murder,1378799085 +124117,32456,not for kids,1378799172 +124117,32456,Nudity (Animated),1378799422 +124117,32456,preachy,1378799457 +124117,32456,shape shifter,1378799278 +124117,32456,social commentary,1378799196 +124117,32456,Studio Ghibli,1378799043 +124117,32456,talking animals,1378799120 +124117,32456,tanuki,1378799244 +124117,32456,wtf,1378799057 +124117,32554,2090s,1413125890 +124117,32554,anime,1413130927 +124117,32554,anthology,1413130682 +124117,32560,aliens,1383020047 +124117,32560,flying saucers,1383020372 +124117,32560,Godzilla,1382147662 +124117,32560,Godzilla Universe,1382944428 +124117,32560,great special effects,1383020065 +124117,32560,Kaiju,1382602849 +124117,32560,King Ghidorah,1382147712 +124117,32560,Nick Adams,1401687197 +124117,32560,Rodan,1383020036 +124117,32560,Toho,1382602855 +124117,32587,Bruce Willis,1345528183 +124117,32587,brutal,1345528402 +124117,32587,cliche,1345754318 +124117,32587,Clive Owen,1345528405 +124117,32587,corruption,1345528174 +124117,32587,cynical,1345528560 +124117,32587,Dark hero,1345528619 +124117,32587,episodic,1345533786 +124117,32587,Frank Miller,1345528409 +124117,32587,glorifying violence,1345533880 +124117,32587,gritty,1345528178 +124117,32587,pedophile,1345754303 +124117,32587,repetitive,1345528918 +124117,32587,senseless violence,1345528820 +124117,32587,style over substance,1345528344 +124117,32587,stylized violence,1345528584 +124117,32596,Africa,1375863537 +124117,32596,Clive Cussler,1375863524 +124117,32596,comic sidekick,1375863477 +124117,32596,Matthew McConaughey,1375863103 +124117,32596,Penélope Cruz,1375863363 +124117,32596,Penelope Cruz,1375863233 +124117,32596,Rainn Wilson,1375863187 +124117,32596,slow start,1375864631 +124117,32898,aliens,1366443499 +124117,32898,moon,1366443483 +124117,32898,visually appealing,1366443479 +124117,33158,better than expected,1403422629 +124117,33158,Nona Gaye,1371284227 +124117,33158,Samuel L. Jackson,1371283726 +124117,33158,Scott Speedman,1371283744 +124117,33158,Willem Dafoe,1371284294 +124117,33255,Bette Davis,1330926092 +124117,33255,Errol Flynn,1330926081 +124117,33294,anime,1358575677 +124117,33294,dystopia,1358575763 +124117,33294,gore,1358575608 +124117,33294,monster hunter,1358575515 +124117,33294,Nudity (Animated),1377109825 +124117,33294,vampires,1358575645 +124117,33294,werewolves,1358575662 +124117,33312,Marx Brothers,1316654322 +124117,33389,based on a true story,1396483950 +124117,33389,Christianity,1396484027 +124117,33389,concentration camp,1396484598 +124117,33389,Jews,1396484076 +124117,33389,middle-aged protagonist,1396484138 +124117,33389,Nazis,1396483922 +124117,33389,oppression,1396484580 +124117,33389,seen,1396484622 +124117,33389,World War II,1396484655 +124117,33393,Gregory Peck,1400698646 +124117,33393,missionary,1400698663 +124117,33393,priest as protagonist,1400698653 +124117,33493,crappy sequel,1315277994 +124117,33493,dark,1315278040 +124117,33493,Ewan McGregor,1315278031 +124117,33493,forgone conclusion,1349219236 +124117,33493,George Lucas,1315278033 +124117,33493,Hayden Christensen,1315278059 +124117,33493,mystic warriors,1315278156 +124117,33493,Natalie Portman,1315278016 +124117,33493,robots,1349219261 +124117,33493,Samuel L. Jackson,1315278066 +124117,33493,sci-fi,1315278072 +124117,33493,somber,1315277997 +124117,33493,space opera,1315278095 +124117,33493,Star Wars,1315278010 +124117,33493,The Chosen One,1377806219 +124117,33493,whiney protagonist,1342860192 +124117,33555,not scary,1349594185 +124117,33587,ghosts,1349593974 +124117,33587,Ray Milland,1349593948 +124117,33610,brutal,1330927606 +124117,33610,grim,1366563517 +124117,33660,1930s,1363061473 +124117,33660,feel good movie,1363062492 +124117,33660,feel-good,1363062513 +124117,33660,great depression,1363061476 +124117,33660,historically inaccurate,1363061546 +124117,33660,husband-wife relationship,1363061483 +124117,33660,Ron Howard,1363061510 +124117,33660,Russell Crowe,1363061452 +124117,33660,shallow,1363062339 +124117,33660,villainizes Max Baer,1363061914 +124117,33681,3D in your face,1405212372 +124117,33681,better than expected,1405212353 +124117,33681,dreams,1405212328 +124117,33681,Robert Rodriguez,1405212249 +124117,33681,superhero,1405212021 +124117,33681,tongue-in-cheek,1405212230 +124117,33755,Godzilla,1383545987 +124117,33755,Godzilla Universe,1383545979 +124117,33755,Kaiju,1383545997 +124117,33755,Toho,1383546002 +124117,33790,Alec Guinness,1331176335 +124117,33790,British comedy,1391745886 +124117,33794,action,1338870059 +124117,33794,atmospheric,1315179340 +124117,33794,batman,1315179337 +124117,33794,Batman kills,1381028136 +124117,33794,Christian Bale,1336430414 +124117,33794,Christopher Nolan,1336430406 +124117,33794,dark,1315179334 +124117,33794,fear,1381028158 +124117,33794,Gary Oldman,1336430400 +124117,33794,gritty,1336430360 +124117,33794,Liam Neeson,1336430422 +124117,33794,Michael Caine,1315179330 +124117,33794,ninja,1338870045 +124117,33794,philosophical,1337832301 +124117,33794,stylized,1315179348 +124117,33794,superhero,1315179325 +124117,33794,thought-provoking,1315179346 +124117,33794,vigilante,1315179343 +124117,33801,action,1382070503 +124117,33801,aliens,1382070619 +124117,33801,Ebirah,1382739184 +124117,33801,fun,1382070426 +124117,33801,Gigan,1382157611 +124117,33801,Godzilla,1382070423 +124117,33801,Godzilla Universe,1382944265 +124117,33801,Gotengo,1382073260 +124117,33801,heroism,1382286778 +124117,33801,Japan,1382075127 +124117,33801,Kaiju,1382070546 +124117,33801,King Caesar,1382930712 +124117,33801,martial arts,1382228400 +124117,33801,Matrix-inspired action,1382071791 +124117,33801,Mothra,1382157639 +124117,33801,mutants,1382070625 +124117,33801,poor Manda,1382072752 +124117,33801,Rodan,1382930698 +124117,33801,Toho,1382400549 +124117,33801,unapologetically awesome characters,1408682300 +124117,33801,X,1382070586 +124117,33801,Zilla,1382072760 +124117,33905,boxing,1366563267 +124117,33905,Paul Newman,1366563266 +124117,33905,Steve McQueen,1366563286 +124117,34048,alien invasion,1331683905 +124117,34048,book was better,1315192694 +124117,34048,cliche,1315192687 +124117,34048,Dakota Fanning,1331683900 +124117,34048,hero not sympathetic enough,1331683945 +124117,34048,overrated,1315192680 +124117,34048,slow,1315192668 +124117,34048,Steven Spielberg,1315192664 +124117,34048,terrible ending,1331683927 +124117,34048,Tom Cruise,1315192665 +124117,34048,unnecessary remake,1390772796 +124117,34048,weak ending,1331683923 +124117,34057,bizarre,1382147149 +124117,34057,environmental,1382147140 +124117,34057,Godzilla,1382147100 +124117,34057,Godzilla can fly?!?!!,1382147298 +124117,34057,Godzilla Universe,1382944685 +124117,34057,Hedorah,1382147110 +124117,34057,Kaiju,1382147179 +124117,34057,pollution,1382147164 +124117,34057,psychedelic,1382374131 +124117,34057,social commentary,1382147322 +124117,34143,Ariel Gade,1406266798 +124117,34143,Jennifer Connelly,1406266692 +124117,34143,John C. Reilly,1406266752 +124117,34143,Pete Postlethwaite,1406266688 +124117,34143,stupid ending,1406266723 +124117,34143,the original is better,1406266706 +124117,34143,unnecessary remake,1406267167 +124117,34150,boring,1315205623 +124117,34150,Chris Evans,1315205577 +124117,34150,heroine in tight suit,1315205600 +124117,34150,idiotic,1315205583 +124117,34150,Jessica Alba,1315205574 +124117,34150,Marvel,1315205589 +124117,34150,nothing special,1315205634 +124117,34150,Special Effects,1315205586 +124117,34150,superhero,1315205652 +124117,34319,action,1328755821 +124117,34319,cloning,1315207045 +124117,34319,dystopia,1315207117 +124117,34319,Ewan McGregor,1315206993 +124117,34319,freedom,1328755813 +124117,34319,future,1315207049 +124117,34319,immortality,1315206990 +124117,34319,Michael Bay,1315207014 +124117,34319,multiple roles,1315207012 +124117,34319,Scarlett Johansson,1328755806 +124117,34319,Sean Bean,1328755871 +124117,34319,thriller,1315207113 +124117,34332,better than expected,1417634520 +124117,34332,Kurt Russell,1417634548 +124117,34332,Michael Giacchino,1417634443 +124117,34332,superhero,1417634439 +124117,34405,beloved character dies pointlessly,1380354852 +124117,34405,Joss Whedon,1328841375 +124117,34405,social commentary,1315182257 +124117,34405,social message,1380354930 +124117,34450,1930s,1376023574 +124117,34450,comedy,1376023567 +124117,34450,gangsters,1376020824 +124117,34450,Jackie Chan,1376020805 +124117,34450,martial arts,1376020831 +124117,34488,Richard Basehart,1329277116 +124117,35347,2D animation,1414730425 +124117,35347,cat killing,1414730458 +124117,35347,George Orwell,1414730409 +124117,35347,the book was better,1414730402 +124117,36086,Amrish Puri,1406183772 +124117,36086,Anupam Kher,1406183763 +124117,36086,father-son relationship,1406183636 +124117,36086,mother daughter relationship,1406183658 +124117,36086,ShahRukh Khan,1406183553 +124117,36401,barely tolerable,1315884486 +124117,36401,bugs,1331683292 +124117,36401,Fantasy,1329366399 +124117,36401,grotesque,1349594845 +124117,36401,Heath Ledger,1315884442 +124117,36401,Matt Damon,1315884475 +124117,36401,Terry Gilliam,1315884469 +124117,36426,Bela Lugosi,1330757813 +124117,36426,espionage,1382463218 +124117,36426,forgettable,1349991370 +124117,36553,Tyrone Power,1330926158 +124117,36576,con artists,1390273274 +124117,36576,Gary Cooper,1390273256 +124117,36576,pre-code Hollywood,1390273810 +124117,36576,Shirley Temple,1390274324 +124117,37720,better than expected,1346219571 +124117,37720,Catholicism,1346219504 +124117,37720,Exorcism,1346219509 +124117,37720,occult,1346219510 +124117,37720,possession,1346219513 +124117,37720,priest,1346219515 +124117,37720,religion,1346219617 +124117,37830,hero is a jerk,1380611558 +124117,37830,no character development,1331621764 +124117,37830,no plot,1380611698 +124117,37830,sword fight,1315363997 +124117,38061,abusive father,1361857610 +124117,38061,black comedy,1361857635 +124117,38061,breaks the fourth wall,1376792439 +124117,38061,coincidences,1361858857 +124117,38061,crude humor,1361858238 +124117,38061,Michelle Monaghan,1361857391 +124117,38061,R,1361936695 +124117,38061,Robert Downey Jr.,1361857357 +124117,38061,some funny parts,1361858737 +124117,38061,torture,1361859071 +124117,39801,yokai,1401175098 +124117,39934,just another war movie,1331790961 +124117,40033,Aladdin,1411443796 +124117,40033,Arabian Nights,1411443747 +124117,40033,demons,1411451251 +124117,40033,djinn,1411443787 +124117,40033,imaginative,1411451667 +124117,40033,magic,1411451840 +124117,40033,monsters,1411451651 +124117,40033,prince,1411451773 +124117,40033,princess,1411451783 +124117,40033,silent movie,1411451743 +124117,40033,silhouettes,1411451717 +124117,40033,visually stunning,1411443756 +124117,40033,witch,1411443811 +124117,40425,deceptive title,1382043463 +124117,40425,Hammer Horror,1378961294 +124117,40425,monster hunter,1378961069 +124117,40425,Peter Cushing,1378961062 +124117,40425,vampires,1378961709 +124117,40425,Van Helsing,1378961087 +124117,40478,DeForest Kelley,1333602748 +124117,40815,Alan Rickman,1336430709 +124117,40815,boarding school,1336430682 +124117,40815,dance,1336430658 +124117,40815,Daniel Radcliffe,1336430667 +124117,40815,destiny,1336430670 +124117,40815,ghosts,1336430689 +124117,40815,harry potter,1336430661 +124117,40815,magic,1336430674 +124117,40815,mermaid,1336430723 +124117,40815,school life,1379054254 +124117,40815,witch,1336430690 +124117,40815,Wizards,1336430663 +124117,40851,brother-brother relationship,1413790814 +124117,40851,Jonah Bobo,1413791035 +124117,40851,magic board game,1413791111 +124117,40851,obnoxious kid,1413790835 +124117,40851,Retro-Futurism,1413790985 +124117,40851,twist ending,1413790801 +124117,41104,bad make-up effects,1384325391 +124117,41104,Dr. Frankenstein,1384325262 +124117,41104,Frankenstein's monster,1384325373 +124117,41104,Hammer Horror,1384325298 +124117,41104,hypnosis,1384325324 +124117,41104,Peter Cushing,1384325308 +124117,41566,alternate universe,1330409929 +124117,41566,C.S. Lewis,1315203157 +124117,41566,Christian,1360725007 +124117,41566,christianity,1315203166 +124117,41566,fantasy,1315203172 +124117,41566,Fantasy World,1328504007 +124117,41566,magic,1335510940 +124117,41566,obnoxious kid,1335510894 +124117,41566,religion,1315203175 +124117,41566,religious overtones,1328503972 +124117,41566,talking animals,1330409916 +124117,41566,witch,1335510936 +124117,41569,1930s,1331602172 +124117,41569,Adrien Brody,1315180742 +124117,41569,adventure,1331602166 +124117,41569,dinosaurs,1331602167 +124117,41569,endless unrealistic action,1349219426 +124117,41569,heavy-handed,1406350890 +124117,41569,Jack Black,1315180771 +124117,41569,jungle,1315180753 +124117,41569,monster:giant gorilla,1382287151 +124117,41569,Naomi Watts,1315180745 +124117,41569,Peter Jackson,1315180779 +124117,41569,the original is better,1349219450 +124117,41569,unlikeable characters,1406350964 +124117,41569,unnecessary remake,1349219401 +124117,41831,Errol Flynn,1330926909 +124117,41831,General Custer,1330926927 +124117,42341,funny,1414089188 +124117,42341,John Cleese,1414089164 +124117,42341,seen,1414089153 +124117,42341,skits,1414089179 +124117,42550,Alec Guinness,1386401144 +124117,42718,parkour,1447404905 +124117,42946,Jackie Chan,1397019636 +124117,42946,pirates,1397020608 +124117,43011,monster:eldritch abomination,1382322178 +124117,43014,animals die :(,1403756893 +124117,43014,Hammer Horror,1403756426 +124117,43014,Harold Lang,1403756611 +124117,43014,interesting characters,1403756862 +124117,43081,Gamera,1389839072 +124117,43081,Gyaos,1389839234 +124117,43081,Kaiju,1389839085 +124117,43081,Osaka Castle,1389839162 +124117,43608,post-apocalyptic,1380149870 +124117,43608,Ray Milland,1380149693 +124117,43832,bad special effects,1375849457 +124117,43832,Cthulhu,1375849205 +124117,43832,H.P. Lovecraft,1375849190 +124117,43832,low budget,1375849170 +124117,43832,monster:eldritch abomination,1378431689 +124117,43832,silent movie,1375849184 +124117,44856,drawn out,1416986991 +124117,44856,Hammer Horror,1416986958 +124117,44856,werewolf,1416986948 +124117,45179,Alan Ladd,1390882360 +124117,45179,Brian Donlevy,1390882387 +124117,45179,Veronica Lake,1390882375 +124117,45192,dragon,1412924791 +124117,45192,epic,1412924745 +124117,45192,Fritz Lang,1412924347 +124117,45192,German,1412924761 +124117,45192,legend,1412924707 +124117,45194,Attila the Hun,1413125172 +124117,45194,Fritz Lang,1413125041 +124117,45194,Margarete Schon,1413125321 +124117,45194,Nudity (Rear),1413125491 +124117,45194,revenge,1413125268 +124117,45194,Rudolf Klein-Rogge,1413125136 +124117,45194,villain evil beyond credibility,1413358767 +124117,45335,James Cagney,1360567770 +124117,45335,musical,1360567783 +124117,45499,Ellen Page,1315204724 +124117,45499,Hugh Jackman,1315204628 +124117,45499,Ian Mckellen,1315204677 +124117,45499,ice skating,1315204711 +124117,45499,jealousy,1315204730 +124117,45499,Marvel,1315204631 +124117,45499,Patrick Stewart,1315204691 +124117,45499,politics,1315204683 +124117,45499,supernatural powers,1315204636 +124117,45679,Tom Conway,1330810635 +124117,45679,Val Lewton,1330810637 +124117,45722,Adventure,1315280107 +124117,45722,definitley not as good as first,1315280150 +124117,45722,Gore Verbinski,1315280099 +124117,45722,Johnny Depp,1315280057 +124117,45722,Keira Knightley,1315280041 +124117,45722,lackluster plot,1315280114 +124117,45722,monster:giant cephalopod,1382329365 +124117,45722,Orlando Bloom,1348792703 +124117,45722,pirates,1348792727 +124117,45722,ready for sequel,1378432548 +124117,45722,unnecessary sequel,1315280064 +124117,45730,monster,1377551700 +124117,45730,pretentious,1377553727 +124117,45730,slow,1377551722 +124117,45730,strange characters,1377551827 +124117,45730,unnecessary characters,1377553678 +124117,46322,1900s,1328860184 +124117,46322,action,1328860214 +124117,46322,heavy-handed message,1331539897 +124117,46322,Jet Li,1328860179 +124117,46322,Martial Arts,1328860231 +124117,46322,nationalism,1398750640 +124117,46322,redemption,1328860233 +124117,46322,responsibility,1328860206 +124117,46322,revenge,1331539916 +124117,46322,slow,1365063532 +124117,46322,wuxia,1328860196 +124117,46335,Lucas Black,1416336132 +124117,46335,Sonny Chiba,1416336114 +124117,46335,Tokyo,1416336084 +124117,46530,annoying reporter,1382042745 +124117,46530,anti-smoking,1365063238 +124117,46530,Brandon Routh,1315279601 +124117,46530,Bryan Singer,1315279594 +124117,46530,James Marsden,1365063335 +124117,46530,Kate Bosworth,1365063305 +124117,46530,Kevin Spacey,1365063347 +124117,46530,overpowered hero,1331683848 +124117,46530,superhero,1315279865 +124117,46530,Superman,1365063378 +124117,46530,unlikeable characters,1382042758 +124117,46653,battle scenes,1330296532 +124117,46770,beloved character dies pointlessly,1383155130 +124117,46770,Bollywood,1383155195 +124117,46770,Hrithik Roshan,1383155299 +124117,46770,long,1383155232 +124117,46770,Priyanka Chopra,1383155323 +124117,46770,seeing the future,1383155375 +124117,46770,seen,1383155838 +124117,46770,superhero,1383155141 +124117,46972,Dick Van Dyke,1408759854 +124117,46972,evil monkey,1408760092 +124117,46972,Owen Wilson,1408759865 +124117,46972,Robin Williams,1408759856 +124117,47129,German,1410144331 +124117,47129,German Expressionism,1410144281 +124117,47129,no dialogue,1410144379 +124117,47129,seen,1410144264 +124117,47129,shadow puppets,1410144309 +124117,47129,shadows,1410144300 +124117,47129,silent movie,1410144500 +124117,47146,Hollywood,1343711749 +124117,47146,James Cagney,1343711673 +124117,47484,FBI,1330873766 +124117,47484,James Cagney,1330873775 +124117,47610,CGI instead of real tricks,1377586531 +124117,47610,Edward Norton,1315179952 +124117,47610,lack of character depth,1315179972 +124117,47610,magic,1315179967 +124117,47610,Paul Giamatti,1377158051 +124117,47610,predictable,1315179957 +124117,47610,stage magic,1315179983 +124117,47665,comedy,1330926380 +124117,47665,Edward G. Robinson,1330926368 +124117,47810,evil cult,1404177142 +124117,47810,matriarch,1404170847 +124117,47810,Molly Parker,1404177219 +124117,47810,Nicolas Cage,1404169898 +124117,47810,uncooperative characters,1404170792 +124117,47810,unintentionally serious,1404177098 +124117,48043,fountain of youth,1315342317 +124117,48043,Hugh Jackman,1315342292 +124117,48043,immortality,1315342294 +124117,48043,visually appealing,1315342365 +124117,48043,Visuals,1315342334 +124117,48394,alternate reality,1315181475 +124117,48394,atmospheric,1315181473 +124117,48394,blood,1315366186 +124117,48394,brutal violence,1330160405 +124117,48394,Doug Jones,1413358608 +124117,48394,fantasy,1315181468 +124117,48394,gore,1315366183 +124117,48394,gruesome,1330160382 +124117,48394,Guillermo del Toro,1342592945 +124117,48394,imagination,1315181471 +124117,48394,overly brutal,1327608820 +124117,48394,social commentary,1315181484 +124117,48394,Spain,1342592952 +124117,48394,torture,1327608755 +124117,48394,villain evil beyond credibility,1413358555 +124117,48394,violence,1315181462 +124117,48407,Genghis Khan,1396506594 +124117,48407,John Wayne,1396506520 +124117,48407,Susan Hayward,1396506533 +124117,48516,annoying soundtrack,1356590568 +124117,48516,foul language,1331100627 +124117,48516,Jack Nicholson,1331101276 +124117,48516,Leonardo DiCaprio,1331100511 +124117,48516,Mark Wahlberg,1331100513 +124117,48516,organized crime,1331100518 +124117,48516,pervasive language,1331100809 +124117,48516,sudden silences,1331101243 +124117,48516,undercover cop,1331100523 +124117,48780,Christian Bale,1315179127 +124117,48780,Christopher Nolan,1342859589 +124117,48780,complicated,1315179177 +124117,48780,costume drama,1326949692 +124117,48780,David Bowie,1326949680 +124117,48780,finger injuries,1381383527 +124117,48780,Hugh Jackman,1326949677 +124117,48780,London,1342859571 +124117,48780,magic,1315179164 +124117,48780,Michael Caine,1326949731 +124117,48780,obsession,1404171040 +124117,48780,psychological,1326949736 +124117,48780,Scarlett Johansson,1326949713 +124117,48780,secrets,1326949748 +124117,48780,tense,1315179155 +124117,48780,twists & turns,1328485226 +124117,49060,no US release,1402031352 +124117,49060,seen,1402014864 +124117,49060,Studio Ghibli,1402014870 +124117,49272,corpses,1366613396 +124117,49272,Daniel Craig,1340865962 +124117,49272,Martin Campbell,1366613354 +124117,49272,parkour,1323023698 +124117,49272,PG-13,1366662323 +124117,49272,torture,1366613374 +124117,49278,car chase,1339958029 +124117,49278,Denzel Washington,1333260219 +124117,49278,implausible plot elements,1333260294 +124117,49278,James Caviezel,1339958066 +124117,49278,sci-fi,1333260315 +124117,49278,setting:New Orleans,1333260232 +124117,49278,time,1333260235 +124117,49278,time travel,1333260330 +124117,49278,unsatisfying,1339958023 +124117,49524,Oscar Isaac,1379619655 +124117,49524,the book was better,1379619736 +124117,49571,vampire,1330926037 +124117,49571,vampires,1330926023 +124117,49571,Van Helsing,1414397234 +124117,49591,pulp hero,1344753775 +124117,49649,audience intelligence underestimated,1328756981 +124117,49649,bad acting,1315191646 +124117,49649,clichéd,1328757060 +124117,49649,destiny,1315191640 +124117,49649,Nice adaptation of the book,1315191621 +124117,49649,predictable,1328757106 +124117,49651,reflective,1391305224 +124117,49651,Sylvester Stallone,1391305217 +124117,49668,first love,1379372680 +124117,49668,Harold Lloyd,1379299424 +124117,49668,Nudity (Rear),1379918901 +124117,49668,shyness,1379371937 +124117,49668,silent movie,1379299420 +124117,49668,stuttering,1379372139 +124117,49668,writer,1379372072 +124117,49737,action,1338961880 +124117,49737,archaeology,1338961803 +124117,49737,China,1338961860 +124117,49737,dreams,1338961905 +124117,49737,Hee-seon Kim,1338961976 +124117,49737,Jackie Chan,1338961550 +124117,49737,martial arts,1338961476 +124117,49815,amazing artwork,1332049624 +124117,49815,anime,1332049620 +124117,49815,beautiful,1332049627 +124117,49815,Dream Sequence,1332049769 +124117,49815,dreams,1332049755 +124117,49815,friendship,1332049642 +124117,49815,loneliness,1332049612 +124117,49815,Makoto Shinkai,1331193425 +124117,49815,narcolepsy,1332049668 +124117,49815,parallel universe,1332049719 +124117,49815,romance,1332049607 +124117,49815,sci-fi,1332049728 +124117,49815,visually appealing,1332049604 +124117,49815,war,1332049637 +124117,50005,martial arts,1326528888 +124117,50005,R,1326528895 +124117,50005,R:violence,1326528933 +124117,50005,sword fight,1326528956 +124117,50641,bakeneko,1385190817 +124117,50641,bizarre,1385191864 +124117,50641,bizarre deaths,1385196300 +124117,50641,cat,1385197165 +124117,50641,freaky,1385197083 +124117,50641,haunted house,1385190834 +124117,50641,Japanese horror,1385191755 +124117,50641,monster:furniture,1385334062 +124117,50641,Nobuhiko Obayashi,1385350167 +124117,50641,not for everyone,1385197265 +124117,50641,Nudity (Topless),1403334807 +124117,50641,strangely compelling,1385192141 +124117,50641,unpredictable,1385192074 +124117,50641,unsettling,1385197096 +124117,50641,weird,1385190775 +124117,51037,amnesia,1335590073 +124117,51037,easily confused with other movie(s) (title),1335632679 +124117,51037,good concept,1335590116 +124117,51037,Jim Caviezel,1335590099 +124117,51037,memory loss,1335590080 +124117,51037,plot twist,1335590082 +124117,51037,psychological,1335590150 +124117,51044,disturbing,1361056217 +124117,51044,great soundtrack,1361056152 +124117,51044,magic realism,1361428710 +124117,51044,no plot,1361056142 +124117,51044,Paul McCartney,1361057197 +124117,51044,psychedelic,1361056181 +124117,51044,surreal,1361056234 +124117,51044,The Beatles,1361055894 +124117,51077,adapted from:comic,1315205846 +124117,51077,Marvel,1315205804 +124117,51077,Nicholas Cage,1315205791 +124117,51287,Colin Clive,1388379185 +124117,51287,costumes,1388379279 +124117,51287,Peter Lorre,1388379083 +124117,51321,Val Lewton,1330926757 +124117,51412,author:Philip K. Dick,1315207404 +124117,51412,bad ending,1315207396 +124117,51412,crap,1315207398 +124117,51412,Incomplete story,1315207394 +124117,51412,jessica biel,1315207423 +124117,51412,Philip K. Dick,1315207376 +124117,51412,plot twist,1315207386 +124117,51412,psychic powers,1315207438 +124117,51412,unfinished,1315207391 +124117,51678,James Mason,1385959668 +124117,51678,Shakespeare,1385959711 +124117,51698,Henry Kuttner,1379917227 +124117,51698,obnoxious kid,1327001777 +124117,51698,Rainn Wilson,1379917270 +124117,51698,time travel,1315192421 +124117,51709,Agent Yellow,1379142398 +124117,51709,Hae-il Park,1379142059 +124117,51709,Korea,1379139367 +124117,51709,nationalism,1398750720 +124117,51709,pollution,1379139385 +124117,51709,R,1379139268 +124117,51709,social commentary,1379142831 +124117,51709,stupid ending,1379139427 +124117,52202,Vincent Price,1329630630 +124117,52427,funny,1394341736 +124117,52427,hectic,1394341900 +124117,52427,Koki Mitani,1394341829 +124117,52427,Kyoka Suzuki,1394342106 +124117,52427,radio,1394341844 +124117,52427,show business,1394341980 +124117,52427,surprisingly good,1394342206 +124117,52427,Toho,1394342266 +124117,52427,Toshiaki Karasawa,1394342152 +124117,52427,writer,1394341744 +124117,52435,Boris Karloff,1369436772 +124117,52435,Christmas,1316247643 +124117,52435,Dr. Seuss,1316247627 +124117,52443,anime,1339565822 +124117,52443,bad science,1339566130 +124117,52443,beautiful scenery,1339565872 +124117,52443,no character development,1339565969 +124117,52660,Criswell,1403929078 +124117,52660,Edward D. Wood Jr.,1403929405 +124117,52660,ghost-chaser,1403929131 +124117,52660,ghosts,1403929452 +124117,52660,Jeannie Stevens,1403929252 +124117,52660,no ghouls,1403929067 +124117,52722,Cheesy,1315204876 +124117,52722,jealousy,1315204832 +124117,52722,Marvel,1315204827 +124117,52722,New York City,1315204949 +124117,52722,revenge,1315204856 +124117,52722,Sam Raimi,1315204904 +124117,52722,silly plot,1315204941 +124117,52806,anime,1333035199 +124117,52806,convoluted,1377682814 +124117,52806,deus ex machina,1333035398 +124117,52806,dragons,1316293158 +124117,52806,Dream Sequence,1316293154 +124117,52806,fantasy,1316293143 +124117,52806,Goro Miyazaki,1316293141 +124117,52806,magic,1316293147 +124117,52806,Studio Ghibli,1316293145 +124117,52806,unanswered questions,1378715869 +124117,52806,Willem Dafoe,1378715228 +124117,52806,wizards,1378714957 +124117,52885,anime,1315182597 +124117,52885,beautiful animation,1315182599 +124117,52885,dreams,1315182587 +124117,52885,Nudity (Animated),1377110046 +124117,52885,R,1315182585 +124117,52885,surreal,1315182582 +124117,52922,Richard Basehart,1343711953 +124117,53125,adventure,1315277828 +124117,53125,Geoffrey Rush,1315277787 +124117,53125,Gore Verbinski,1315277842 +124117,53125,Johnny Depp,1315277779 +124117,53125,Keira Knightley,1315277888 +124117,53125,manipulative,1331621991 +124117,53125,Orlando Bloom,1315277883 +124117,53125,over the top,1315277855 +124117,53125,pretty bad,1315277857 +124117,53125,stupid ending,1315277868 +124117,53125,swashbuckler,1315277872 +124117,53370,Godzilla,1383635698 +124117,53370,Godzilla Universe,1383635704 +124117,53370,Kaiju,1383635730 +124117,53370,Mothra,1383635725 +124117,53370,Toho,1383635736 +124117,53373,Godzilla,1383545744 +124117,53373,Godzilla Universe,1383545756 +124117,53373,Kaiju,1383545765 +124117,53373,Toho,1383545771 +124117,53375,Godzilla,1383635207 +124117,53375,Godzilla Universe,1383635197 +124117,53375,Kaiju,1383635222 +124117,53375,King Ghidorah,1383635215 +124117,53375,Toho,1383635228 +124117,53379,Val Lewton,1329630227 +124117,53464,Bechdel Test:Pass,1379276553 +124117,53464,Chris Evans,1330160215 +124117,53464,Ioan Gruffudd,1315205744 +124117,53464,Jessica Alba,1315205741 +124117,53464,Marvel,1315205748 +124117,53464,sequel better than original,1330160233 +124117,53464,superhero,1315205759 +124117,53953,author:Stephen King,1328504120 +124117,53953,horror,1315200865 +124117,53953,John Cusack,1328504104 +124117,53953,Mikael HÃ¥fström,1328504132 +124117,53953,psychological,1328504097 +124117,53953,Samuel L. Jackson,1315200811 +124117,53953,scary,1315200876 +124117,53953,setting:hotel,1315200833 +124117,53953,Stephen King,1315368811 +124117,53953,supernatural,1315200836 +124117,53953,theatrical version is better,1315200842 +124117,53972,action,1323664732 +124117,53972,action packed,1323664728 +124117,53972,Bruce Willis,1328758365 +124117,53972,parkour,1323664687 +124117,53972,PG-13,1366662405 +124117,53972,stunts,1328758401 +124117,53972,United States,1336432650 +124117,53972,unrealistic action,1336432687 +124117,53972,unrealistic but well done,1366662432 +124117,53996,crude humor,1366612892 +124117,53996,enormously long battle scene,1350627190 +124117,53996,giant robots,1366612876 +124117,53996,John Turturro,1315363205 +124117,53996,lowest common denominator,1350627235 +124117,53996,man versus machine,1315363222 +124117,53996,Michael Bay,1350627292 +124117,53996,military,1315363233 +124117,53996,Steven Spielberg,1315363200 +124117,53996,US President,1350627245 +124117,54001,school life,1379054291 +124117,54190,The Beatles,1366271996 +124117,54241,colonialism,1330158906 +124117,54241,Gary Cooper,1384385492 +124117,54241,India,1330158904 +124117,54259,adventure,1315180944 +124117,54259,author:Neil Gaiman,1315180940 +124117,54259,Claire Danes,1331879418 +124117,54259,crude humor,1329639074 +124117,54259,fantasy,1315180926 +124117,54259,fantasy world,1315180925 +124117,54259,gay stereotypes,1378254385 +124117,54259,magical aging/immortality,1331879444 +124117,54259,Neil Gaiman,1331879467 +124117,54259,not funny,1365062693 +124117,54259,Robert De Niro,1315180917 +124117,54286,action,1315182852 +124117,54286,conspiracy,1331621669 +124117,54286,fast paced,1331621692 +124117,54286,shaky camera,1331621657 +124117,54286,spy thriller,1315182889 +124117,54648,not funny,1368152208 +124117,54648,predictable,1368152279 +124117,54648,sexual references,1368159458 +124117,54648,sexualized violence,1368152603 +124117,54648,taxi driver,1368152367 +124117,54962,Christianity,1331176688 +124117,55106,Gary Cooper,1330159010 +124117,55106,love triangle,1330159042 +124117,55259,don't watch,1326950495 +124117,55259,lame,1326950513 +124117,55259,pointless,1326950531 +124117,55259,stupid,1326950476 +124117,55278,Bechdel Test:Pass,1373260568 +124117,55278,cinematography so bad it hurts,1373260953 +124117,55278,Harold Pinter,1373262629 +124117,55278,humiliation,1373336350 +124117,55278,R,1373260770 +124117,55278,sexual references,1373261774 +124117,55278,surveillance,1373261723 +124117,55278,the original is better,1373260994 +124117,55278,violence,1373260783 +124117,55389,Bette Davis,1395453690 +124117,55389,creepy,1395453700 +124117,55389,great acting,1395462963 +124117,55389,Hammer Horror,1395453777 +124117,55389,nanny,1395453900 +124117,55389,obnoxious kid,1395453741 +124117,55389,seen,1395543118 +124117,55628,bad acting,1349750516 +124117,55628,so bad it's good,1349750448 +124117,55628,stereotypical black comic relief,1349845304 +124117,55628,there is no monster and it doesn't walk,1349750306 +124117,55820,bounty hunter(s),1391762144 +124117,56145,anti-intellectualism,1315201207 +124117,56145,audience intelligence underestimated,1375850695 +124117,56145,author:Stephen King,1315200995 +124117,56145,ax-grinding,1375850225 +124117,56145,bad cgi,1326948231 +124117,56145,bleak atmosphere,1331791244 +124117,56145,crappy,1349595160 +124117,56145,depressing,1326948176 +124117,56145,disaster,1349595175 +124117,56145,Frank Darabont,1331791345 +124117,56145,gory,1331791360 +124117,56145,grotesque,1331791313 +124117,56145,hates the army,1331791288 +124117,56145,idiotic,1349595098 +124117,56145,irreligion,1326948140 +124117,56145,mob mentality,1315201101 +124117,56145,predictable,1315200958 +124117,56145,religious nuts,1315201186 +124117,56145,remake,1349595035 +124117,56145,social commentary,1315200952 +124117,56145,stephen king,1331791228 +124117,56145,stereotypes,1349595069 +124117,56145,Stupid as Hell,1326948162 +124117,56145,stupid stereotypes,1349595060 +124117,56152,Amy Adams,1417718235 +124117,56152,audience intelligence underestimated,1417718391 +124117,56152,formulaic,1417718846 +124117,56152,hurts itself trying to be PC,1417719579 +124117,56152,James Marsden,1417718232 +124117,56152,predictable,1417718155 +124117,56152,too worried it will offend people,1417719353 +124117,56171,anti religion,1367305113 +124117,56171,anti-religion,1343453593 +124117,56171,bad acting,1343453691 +124117,56171,derivative,1384415746 +124117,56171,disappointing,1343453666 +124117,56171,dull,1343453633 +124117,56171,Ian McKellen,1343453599 +124117,56171,irreligion,1343453608 +124117,56171,Phillip Pullman,1343453603 +124117,56171,predictable,1384415738 +124117,56171,tries to be controversial,1384415865 +124117,56171,watered down,1384415877 +124117,56775,Diane Kruger,1377242511 +124117,56775,Ed Harris,1331683624 +124117,56775,Nicolas Cage,1316142257 +124117,56775,puzzle solving,1316142263 +124117,56775,treasure hunt,1349845659 +124117,56775,villain with southern accent,1331683741 +124117,56915,audience intelligence underestimated,1328757848 +124117,57223,disappointing,1377157631 +124117,57223,dragons,1315364614 +124117,57223,Korean,1377157607 +124117,57223,stupid ending,1347688806 +124117,57368,decent acting,1385788685 +124117,57368,Drew Goddard,1385788571 +124117,57368,giant monster,1385784126 +124117,57368,lame title,1385788485 +124117,57368,shaky camera,1385781923 +124117,57368,subliminal images,1396842117 +124117,57368,unanswered questions,1385791905 +124117,57473,annoying reporter,1356591313 +124117,57473,Humphrey Bogart,1356590648 +124117,57504,Anime,1315895605 +124117,57504,classical music,1315895602 +124117,57504,Japan,1332126134 +124117,57504,Japanese,1332998916 +124117,57504,Mamoru Hosoda,1332126157 +124117,57504,school life,1379054401 +124117,57504,time travel,1315895599 +124117,57640,action,1315178769 +124117,57640,adventure,1315178764 +124117,57640,beautiful effects,1315178762 +124117,57640,better than the first,1315362823 +124117,57640,colorful,1328758532 +124117,57640,Danny Elfman,1328758562 +124117,57640,elves,1336461676 +124117,57640,fairytale,1336461679 +124117,57640,fantasy,1315178759 +124117,57640,good sequel,1315362809 +124117,57640,Guillermo del Toro,1416034344 +124117,57640,Hellboy,1334630758 +124117,57640,improved sequel,1328758541 +124117,57640,magic,1315178756 +124117,57640,Ron Perlman,1315178748 +124117,57640,sequel,1326949531 +124117,57640,set:mechanical gearworks,1315362797 +124117,57640,strong female characters,1382044804 +124117,57640,tooth fairies,1326949494 +124117,58025,action,1315207593 +124117,58025,concept,1315207582 +124117,58025,didn't like him,1349933188 +124117,58025,egomaniacs,1315207575 +124117,58025,Hayden Christensen,1336461481 +124117,58025,Samuel L. Jackson,1315207545 +124117,58025,silly,1315207549 +124117,58025,teen,1349933227 +124117,58025,teleportation,1315207555 +124117,58025,terrible plot,1315207553 +124117,58025,unlikeable characters,1349933199 +124117,58105,beautiful,1328756528 +124117,58105,comedic violence,1315203455 +124117,58105,fantasy,1315203527 +124117,58105,girl with swords,1315203416 +124117,58105,magic,1315203535 +124117,58105,obnoxious kid,1327001637 +124117,58105,silly,1315203426 +124117,58293,ancient civilization,1330059358 +124117,58293,bc,1330059353 +124117,58293,cavemen,1315192018 +124117,58293,disappointing,1315192139 +124117,58293,historically inaccurate,1330059326 +124117,58293,interesting concept,1315192150 +124117,58293,prehistoric fantasy,1330059341 +124117,58559,anti-hero,1315210510 +124117,58559,Batman,1338870118 +124117,58559,Christian Bale,1315210464 +124117,58559,Christopher Nolan,1343103276 +124117,58559,corrupt cops,1331602394 +124117,58559,corruption,1331602380 +124117,58559,DC Comics,1315210475 +124117,58559,Gary Oldman,1315210516 +124117,58559,gritty,1315210446 +124117,58559,Heath Ledger,1315210427 +124117,58559,Joker,1329726990 +124117,58559,Maggie Gyllenhaal,1338870105 +124117,58559,Michael Caine,1315210482 +124117,58559,Morgan Freeman,1343103316 +124117,58559,nocturnal,1315210536 +124117,58559,overrated,1343103388 +124117,58559,psychological thriller,1315210571 +124117,58559,shallow,1363062443 +124117,58559,superhero,1315210552 +124117,58559,tough choices,1350886984 +124117,58559,unsatisfying ending,1343176819 +124117,58559,villain steals the show,1381987765 +124117,58559,violence,1315210501 +124117,58652,crude humor,1394350083 +124117,58652,father-son relationship,1394349980 +124117,58652,Stephen Chow,1394350047 +124117,58722,Akihiko Hirata,1388901316 +124117,58722,aliens,1388901767 +124117,58722,Godzilla,1382163121 +124117,58722,Godzilla Universe,1382944790 +124117,58722,Kaiju,1382602674 +124117,58722,mad scientist,1388901614 +124117,58722,MechaGodzilla,1387344922 +124117,58722,Titanosaurus,1388901273 +124117,58722,Toho,1382602678 +124117,58803,blackjack,1329365965 +124117,58803,con artist,1329366008 +124117,58803,con artists,1329366011 +124117,58803,counting cards,1329366032 +124117,59037,Emile Hirsch,1405569359 +124117,59037,fun,1404282457 +124117,59037,Matthew Fox,1404281843 +124117,59037,monkey,1404283343 +124117,59037,over the top,1404283300 +124117,59037,Racing,1404282475 +124117,59037,Roger Allam,1404328153 +124117,59037,Scott Porter,1404281159 +124117,59037,unapologetically awesome characters,1408682028 +124117,59037,vibrant colors,1405569358 +124117,59103,cliche,1378843679 +124117,59103,drunkenness,1339123169 +124117,59103,fantasy,1378843996 +124117,59103,formulaic,1339123030 +124117,59103,Jackie Chan,1339122976 +124117,59103,Jet Li,1339122966 +124117,59103,kung fu,1339122958 +124117,59103,martial arts,1339122957 +124117,59103,nice visuals,1339123008 +124117,59103,unoriginal,1339123112 +124117,59126,anti-intellectualism,1356592848 +124117,59126,atheism,1356592347 +124117,59126,audience intelligence underestimated,1356592414 +124117,59126,Bill Maher,1356592473 +124117,59126,irreligion,1356592393 +124117,59126,irreverent,1356592436 +124117,59126,not funny,1356592387 +124117,59126,slow,1356592495 +124117,59126,stupid,1356592363 +124117,59126,stupidity,1356592440 +124117,59126,unfunny,1356592750 +124117,59126,waste of time,1356592727 +124117,59315,Bechdel Test:Pass,1382927648 +124117,59315,betrayal,1366433215 +124117,59315,funny,1315180310 +124117,59315,Gwyneth Paltrow,1342764817 +124117,59315,Jeff Bridges,1315180303 +124117,59315,Marvel,1342764814 +124117,59315,Marvel Cinematic Universe,1366433329 +124117,59315,Robert Downey Jr.,1342764808 +124117,59315,superhero,1315180296 +124117,59315,The Avengers,1342764967 +124117,59369,divorce,1338869239 +124117,59369,Famke Janssen,1338869227 +124117,59369,father daughter relationship,1338869203 +124117,59369,gritty,1366662546 +124117,59369,Liam Neeson,1338869231 +124117,59369,Maggie Grace,1338869315 +124117,59369,Paris,1338869295 +124117,59369,protective father,1375169625 +124117,59369,torture,1366662556 +124117,59369,white slavery,1338869288 +124117,59440,anti-abortion,1331539542 +124117,59440,Eduardo Verastegui,1331539705 +124117,59440,pro-life,1331539553 +124117,59440,regret,1331539611 +124117,59501,adventure,1315203362 +124117,59501,Ben Barnes,1315203373 +124117,59501,better than the first,1382044670 +124117,59501,not true to the book,1328503859 +124117,59501,talking animals,1382044642 +124117,59615,1950s,1315209240 +124117,59615,adventure,1315209236 +124117,59615,ants,1342764490 +124117,59615,archaeology,1330410080 +124117,59615,Area 51,1315209230 +124117,59615,bad writing,1315209310 +124117,59615,Cate Blanchett,1315209228 +124117,59615,Harrison Ford,1315209204 +124117,59615,indiana jones,1315209449 +124117,59615,nuclear bomb,1315209467 +124117,59615,Shia LaBeouf,1342764444 +124117,59615,silly,1315209332 +124117,59615,South America,1315209210 +124117,59615,Steven Spielberg,1315209214 +124117,59836,John Wayne,1397532060 +124117,59942,dinosaurs,1369522165 +124117,59942,greed,1369522710 +124117,59942,Irwin Allen,1369522224 +124117,59942,jungle girl,1369522483 +124117,59942,lost world,1369522341 +124117,59942,not true to the book,1369522306 +124117,59942,revenge,1369522459 +124117,59942,stereotypes,1369522205 +124117,59945,Douglas Fairbanks Sr,1402237190 +124117,60007,Doctor Who,1349846002 +124117,60007,Paul McGann,1349846017 +124117,60040,comic book,1315205088 +124117,60040,Edward Norton,1404197439 +124117,60040,Hulk,1366433819 +124117,60040,Liv Tyler,1404197436 +124117,60040,Marvel,1342764930 +124117,60040,Marvel Cinematic Universe,1366433798 +124117,60040,superhero,1342764919 +124117,60040,The Avengers,1333508550 +124117,60040,William Hurt,1404197414 +124117,60069,cliche,1390976590 +124117,60069,consumerism,1377804378 +124117,60069,cynical,1377804347 +124117,60069,Dumbo wannabe,1390976539 +124117,60069,dystopia,1377804356 +124117,60069,dystopic future,1350545770 +124117,60069,ecology,1377804372 +124117,60069,environmental,1350545667 +124117,60069,manipulative,1377804334 +124117,60069,social commentary,1350545674 +124117,60072,Angelina Jolie,1315206172 +124117,60072,animals die,1315206423 +124117,60072,anti-religion,1326948581 +124117,60072,assassin,1315206165 +124117,60072,assassin-in-training,1315206167 +124117,60072,audience intelligence underestimated,1328756697 +124117,60072,brutal violence,1315206240 +124117,60072,Fight club wannabe failure,1315206373 +124117,60072,glorifying violence,1315206411 +124117,60072,gore,1326948497 +124117,60072,infidelity,1315206210 +124117,60072,insulting,1326948547 +124117,60072,insults audience's intelligence,1326948531 +124117,60072,James McAvoy,1315206152 +124117,60072,Morgan Freeman,1315206175 +124117,60072,murder,1315206155 +124117,60072,plot twist,1315206191 +124117,60072,R,1326948505 +124117,60072,TOO much violence,1315206200 +124117,60074,bad ending,1424729490 +124117,60074,Charlize Theron,1424729506 +124117,60074,derailed by twist,1424729482 +124117,60074,superhero,1424729513 +124117,60126,Anne Hathaway,1316384243 +124117,60126,crude humor,1343102498 +124117,60126,lowest common denominator,1350627766 +124117,60126,not funny,1382044366 +124117,60126,predictable,1316384294 +124117,60126,secret service,1343102486 +124117,60126,unnecessary remake,1316384277 +124117,60179,ancient book,1407477727 +124117,60179,castle,1407478062 +124117,60179,demons,1407477966 +124117,60179,imaginative,1407477621 +124117,60179,Jack Woods,1407477582 +124117,60179,monster:eldritch abomination,1407477947 +124117,60179,monsters,1407477993 +124117,60179,picnic,1407477812 +124117,60179,stop motion,1407478245 +124117,60514,Brendan Fraser,1315192343 +124117,60514,Jules Verne,1315192296 +124117,60514,obnoxious kid,1328756469 +124117,60616,Alec Guinness,1386401049 +124117,60937,Brendan Fraser,1315282569 +124117,60937,Isabella Leong,1365062507 +124117,60937,Jet Li,1330160329 +124117,60937,wasted potential,1365062570 +124117,61160,bounty hunter(s),1396927405 +124117,61401,Characters lack depth,1335510424 +124117,61401,Frank Miller,1315364845 +124117,61401,Golden Fleece,1375903366 +124117,61401,immortality,1315364858 +124117,61401,Samuel L. Jackson,1315364841 +124117,61401,Scarlett Johansson,1335510204 +124117,61401,stylized,1335510200 +124117,61401,superhero,1315364872 +124117,62081,action packed,1316652486 +124117,62081,cyberterrorism,1316652482 +124117,62081,Hitchcock wannabe,1358224375 +124117,62081,Michelle Monaghan,1361857486 +124117,62081,video surveillance,1358224402 +124117,62376,Bill Murray,1402768322 +124117,62376,corrupt government,1396841897 +124117,62376,Martin Landau,1396841232 +124117,62376,monster:giant mole,1396841557 +124117,62376,Saoirse Ronan,1396841215 +124117,62376,See: Metropolis (1927),1396841139 +124117,62376,subterranean,1396841948 +124117,62394,bad acting,1356663748 +124117,62394,glorifying violence,1356663921 +124117,62394,Mark Wahlberg,1356663611 +124117,62394,Mila Kunis,1356663613 +124117,62394,no depth,1356663820 +124117,62394,Olga Kurylenko,1356664010 +124117,62394,police brutality,1356663899 +124117,62394,Visuals,1356663825 +124117,62970,magic,1316653105 +124117,62970,steampunk,1316653100 +124117,62970,Zooey Deschanel,1316653099 +124117,63113,convoluted plot,1340866041 +124117,63113,Daniel Craig,1340866015 +124117,63113,revenge,1340866085 +124117,63113,secret service,1340866094 +124117,63647,Shintaro Katsu,1387298364 +124117,63989,Lionel Barrymore,1356747083 +124117,63989,slow,1356747110 +124117,64114,better than expected,1380943858 +124117,64114,firefighters,1380943907 +124117,64114,porn addiction,1380944012 +124117,64167,an experience,1399566198 +124117,64167,David Thewlis,1331194452 +124117,64167,dinosaurs,1331194427 +124117,64167,untrue to book,1331194419 +124117,64511,Lord Dunsany,1330059476 +124117,64548,Boris Karloff,1349845509 +124117,64548,not scary,1349845461 +124117,64548,Turhan Bey,1349845498 +124117,64548,waste of time,1384638785 +124117,64921,Aladdin,1411451486 +124117,64921,Arabian Nights,1411451446 +124117,64921,Shemp Howard,1330926719 +124117,64921,Sinbad,1411451461 +124117,64993,anime,1329116819 +124117,64993,Art Direction,1331193493 +124117,64993,comes very close to being perfect,1329116804 +124117,64993,does he even care?,1329116930 +124117,64993,Japan,1329116817 +124117,64993,Kanae Sumida,1329116983 +124117,64993,love,1331193477 +124117,64993,Makoto Shinkai,1329116826 +124117,64997,mockbuster,1390772656 +124117,65261,anime,1315202454 +124117,65261,children,1315202482 +124117,65261,cute,1376636461 +124117,65261,environmental,1315202450 +124117,65261,environmentalism,1315202463 +124117,65261,fish out of water,1332998793 +124117,65261,flood,1401777759 +124117,65261,funny,1376636576 +124117,65261,goddess,1376636707 +124117,65261,Hayao Miyazaki,1315202432 +124117,65261,Japan,1332998782 +124117,65261,Liam Neeson,1376636472 +124117,65261,ocean,1376636487 +124117,65261,strange story,1315202438 +124117,65261,Studio Ghibli,1315202474 +124117,65293,Bette Davis,1375685951 +124117,65293,Dashiell Hammett,1375685165 +124117,65293,funny,1375685855 +124117,65293,good dialogue,1375686304 +124117,65293,Maynard Holmes,1375686056 +124117,65293,not as good as the remake,1375686839 +124117,65293,The Maltese Falcon,1375685364 +124117,65293,Warren William,1375685871 +124117,65350,Gary Cooper,1330926253 +124117,65350,monkey,1330926243 +124117,65514,Donnie Yen,1378675500 +124117,65514,Ip Man,1378675507 +124117,65514,kung fu,1378541578 +124117,65514,Lynn Hung,1378541642 +124117,65514,martial arts,1378541571 +124117,65514,unhistorical,1378541917 +124117,65685,books,1315283240 +124117,65685,Brendan Fraser,1315283230 +124117,65685,fantasy world,1315283242 +124117,65685,Helen Mirren,1315283248 +124117,65685,Paul Bettany,1315283235 +124117,66171,action,1327606775 +124117,66171,Chris Evans,1327606749 +124117,66171,Dakota Fanning,1327606744 +124117,66171,psychic powers,1327606752 +124117,66365,bounty hunter(s),1400300989 +124117,66622,forgettable,1375511746 +124117,66785,bounty hunter(s),1391837255 +124117,66785,finger injuries,1381383174 +124117,66785,no English dub,1378585211 +124117,66785,Oriental Western,1381382568 +124117,66785,three-way duel,1381383409 +124117,66785,train robbery,1381382409 +124117,66785,trains,1381382400 +124117,66785,treasure hunt,1381382397 +124117,66934,could have been better,1349932827 +124117,66934,disappointing,1367982436 +124117,66934,funny,1315183279 +124117,66934,good idea... bad movie,1377932223 +124117,66934,great soundtrack,1315183265 +124117,66934,loses its way,1349932891 +124117,66934,musical,1315183257 +124117,66934,parody,1315183309 +124117,66934,superhero,1315183255 +124117,66934,twist downer ending,1315183251 +124117,67197,aliens,1315192560 +124117,67197,apocalypse,1346219757 +124117,67197,end of the world,1315192544 +124117,67197,mystery,1315192571 +124117,67197,Nicolas Cage,1315192533 +124117,67197,time travel,1346219734 +124117,67667,Ricardo Montalban,1330927419 +124117,67867,bad costumes,1407393751 +124117,67867,not faithful to the book,1407393393 +124117,67867,ridiculous characters,1407393343 +124117,67869,Buster Crabbe,1348114736 +124117,67869,Flash Gordon,1348114708 +124117,67869,Jean Rogers,1348114754 +124117,67869,no comic relief,1348114878 +124117,67869,Serial,1335511219 +124117,68237,plot twist,1315181260 +124117,68319,action,1341473043 +124117,68319,bad cgi,1341473067 +124117,68319,bad plot,1315205202 +124117,68319,body alteration,1315205330 +124117,68319,cheesy,1315205142 +124117,68319,Danny Huston,1377415088 +124117,68319,Hugh Jackman,1377415095 +124117,68319,Marvel,1315205165 +124117,68319,one-dimensional characters,1315205133 +124117,68319,Patrick Stewart,1315205174 +124117,68319,revenge,1315205183 +124117,68319,Ryan Reynolds,1315205214 +124117,68319,Taylor Kitsch,1341472955 +124117,68319,Wolverine,1315205222 +124117,68358,action,1333603718 +124117,68358,alternate reality,1331621543 +124117,68358,Chris Hemsworth,1383951365 +124117,68358,Chris Pine,1383951451 +124117,68358,fast paced,1331621575 +124117,68358,shaky camera,1331621533 +124117,68358,space,1333603748 +124117,68358,space battle,1333603750 +124117,68358,Star Trek,1333603744 +124117,68358,time travel,1331621541 +124117,68358,Winona Ryder,1383951408 +124117,68474,John Wayne,1399700969 +124117,68474,singing cowboy,1399700957 +124117,68791,action,1330059097 +124117,68791,Christian Bale,1330059074 +124117,68791,Sam Worthington,1330059162 +124117,68791,sci-fi,1330059094 +124117,68791,weak plot,1330059081 +124117,68848,Adrien Brody,1374476794 +124117,68848,boring protagonist,1374477025 +124117,68848,con artists,1374476862 +124117,68848,illogical,1374476966 +124117,68848,Mark Ruffalo,1374476805 +124117,68848,Nudity (Rear),1374476904 +124117,68848,plot holes,1374477094 +124117,68848,Rachel Weisz,1374477121 +124117,68848,Rinko Kikuchi,1374476834 +124117,68848,stupid ending,1374477194 +124117,68848,stupid main character,1374476787 +124117,68952,Animals die :(,1407028081 +124117,68952,bad cgi,1407027747 +124117,68952,Bechdel Test:Fail,1407027725 +124117,68952,cat killing,1407084985 +124117,68952,curse,1407085008 +124117,68952,disgusting--not scary,1407027814 +124117,68952,Killing kittens,1407084991 +124117,68952,not funny,1407027774 +124117,68952,Sam Raimi,1407028056 +124117,68952,stereotypes,1407085169 +124117,68952,ugly,1407085244 +124117,68952,vomit,1407085031 +124117,68952,warped sense of humor,1407085079 +124117,68954,adventure,1333035889 +124117,68954,bittersweet,1337565101 +124117,68954,divorce,1333035913 +124117,68954,Pixar,1337565078 +124117,68954,South America,1333035898 +124117,68954,unlikely heroes,1333035894 +124117,69042,Flash Gordon,1362527217 +124117,69042,Mars,1362527236 +124117,69042,Serial,1348190791 +124117,69136,Amitabh Bachchan,1406434827 +124117,69372,henshin hero,1415695273 +124117,69372,Hitoshi Matsumoto,1415694021 +124117,69372,kaiju,1415693953 +124117,69372,mockumentary,1415693960 +124117,69372,parody,1415694288 +124117,69372,superhero,1415694058 +124117,69453,Edgar Rice Burroughs,1328258999 +124117,69453,lost world,1398666285 +124117,69526,audience intelligence underestimated,1315192889 +124117,69526,crude humor,1366612947 +124117,69526,Egypt,1366612954 +124117,69526,John Turturro,1366612964 +124117,69526,lowest common denominator,1350627078 +124117,69526,plot holes,1315192871 +124117,69526,racist,1315192876 +124117,69526,robots,1315192911 +124117,69818,bad acting,1350450311 +124117,69818,boring,1350450246 +124117,69818,brainless,1350450501 +124117,69818,cynical,1350450221 +124117,69818,Eva Green,1350450328 +124117,69818,painful to watch,1350450393 +124117,69818,slow,1350450362 +124117,69844,disappointing,1315183159 +124117,69844,fantasy,1315183176 +124117,69844,magic,1368153472 +124117,69844,school life,1379054329 +124117,69951,Andrew Garfield,1330409342 +124117,69951,audience intelligence underestimated,1375850671 +124117,69951,ax-grinding,1375850295 +124117,69951,Christopher Plummer,1330409340 +124117,69951,Colin Farrell,1315366317 +124117,69951,Heath Ledger,1315366345 +124117,69951,immortality,1330409333 +124117,69951,Johnny Depp,1330409367 +124117,69951,Jude Law,1315366338 +124117,69951,poorly thought out premise,1375850338 +124117,69951,surreal,1330409362 +124117,69951,terry gilliam,1315366310 +124117,70293,affected,1316385506 +124117,70293,chick flick,1342592718 +124117,70293,shallow,1316385476 +124117,70293,slow,1316385477 +124117,70305,Alexander Ludwig,1409030783 +124117,70305,alien assassin,1409031077 +124117,70305,AnnaSophia Robb,1409030767 +124117,70305,cliche villain,1409030690 +124117,70305,dog,1409030660 +124117,70305,Dwayne Johnson,1409030600 +124117,70305,evil government,1409031032 +124117,70305,preachy,1409031000 +124117,70336,action,1342765032 +124117,70336,brainless fun,1336431859 +124117,70336,Byung-hun Lee,1370676927 +124117,70336,Channing Tatum,1336431708 +124117,70336,Christopher Eccleston,1370677116 +124117,70336,Dennis Quaid,1370677018 +124117,70336,explosions,1336431801 +124117,70336,fun,1336431829 +124117,70336,guilty pleasure,1382043415 +124117,70336,Joseph Gordon-Levitt,1315193072 +124117,70336,ninja,1370677054 +124117,70336,sci-fi,1315193092 +124117,70336,Sienna Miller,1336431725 +124117,70336,style over substance,1315193081 +124117,70795,James Cagney,1360567686 +124117,70819,car chase,1411187262 +124117,70819,carnival,1411187457 +124117,70819,convoluted,1411187300 +124117,70819,John Wayne,1399824362 +124117,70819,Serial,1411187540 +124117,70819,ventriloquist,1411187280 +124117,71057,ax-grinding,1375850037 +124117,71057,Christopher Plummer,1330160768 +124117,71057,dull,1328821177 +124117,71057,dystopia,1315278340 +124117,71057,John C. Reilly,1400698837 +124117,71057,Lame Ending,1315278357 +124117,71057,Martin Landau,1330160781 +124117,71057,Poorly paced,1315278402 +124117,71057,predictable,1315278359 +124117,71057,weak characters,1315278325 +124117,71057,weak story,1315278376 +124117,71102,flashback overload,1402032212 +124117,71102,John Wayne,1331880869 +124117,71102,Serial,1329006668 +124117,71302,aliens,1404710356 +124117,71302,infidelity,1404710380 +124117,71302,not enough monster action,1404710633 +124117,71302,UFO,1404710366 +124117,71530,Bruce Willis,1315806090 +124117,71530,explosions,1315806117 +124117,71530,Husband Wife Relationship,1315806098 +124117,71579,Carey Mulligan,1410422215 +124117,71579,cliche characters,1410422236 +124117,71579,dumb blonde,1410422255 +124117,71579,spoilers for Jane Eyre,1410422302 +124117,72258,Chuck Norris,1414569892 +124117,72258,dog,1414569894 +124117,72258,only for dogpeople,1414570171 +124117,72258,predictable,1414570029 +124117,72258,racism,1414569923 +124117,72369,anti-war,1350461907 +124117,72369,assassin,1350461722 +124117,72369,beautiful,1379312998 +124117,72369,betrayal,1379311891 +124117,72369,depressing,1350462017 +124117,72369,Goemon,1393219817 +124117,72369,infanticide,1350461695 +124117,72369,Japan,1379311905 +124117,72369,ninja,1350461730 +124117,72369,stylized,1350461659 +124117,72369,thieves,1350461923 +124117,72369,too long,1350461656 +124117,72369,unhistorical,1350461827 +124117,72369,Yosuke Eguchi,1350461866 +124117,72378,anti-intellectual,1358576441 +124117,72378,audience intelligence underestimated,1358576283 +124117,72378,bad plot,1358576287 +124117,72378,bad science,1358576285 +124117,72378,contrived,1358576525 +124117,72378,John Cusack,1358576295 +124117,72378,NO substance,1358576351 +124117,72731,creepy kiss,1417199932 +124117,72731,Saoirse Ronan,1417199865 +124117,72731,serial killer,1417199869 +124117,72731,Stanley Tucci,1417199857 +124117,72731,too long,1417199917 +124117,72737,1920s,1412139103 +124117,72737,New Orleans,1412139098 +124117,72737,Voodoo,1412138841 +124117,72852,Judex,1432406644 +124117,72998,aliens,1315178573 +124117,72998,beautiful scenery,1315178518 +124117,72998,colorful,1331511112 +124117,72998,deus ex machina,1331960584 +124117,72998,environmental,1315277706 +124117,72998,jungle,1331511105 +124117,72998,misanthropic,1331960634 +124117,72998,politics,1331960566 +124117,72998,race issues,1315277680 +124117,72998,racism,1315178555 +124117,72998,Sam Worthington,1331960617 +124117,72998,science fiction,1315178534 +124117,72998,social commentary,1379311175 +124117,72998,stereotypes,1315277686 +124117,72998,style over substance,1334630481 +124117,73017,Atmospheric,1315191117 +124117,73017,grotesque,1331684240 +124117,73017,Guy Ritchie,1315191017 +124117,73017,Jude Law,1315191030 +124117,73017,Rachel McAdams,1331684224 +124117,73017,Robert Downey Jr.,1315191015 +124117,73017,Victorian,1331684210 +124117,73854,Burl Ives,1381029555 +124117,73854,Christmas,1381029534 +124117,73854,reindeer,1381029596 +124117,73854,Santa Claus,1381029588 +124117,74164,Conrad Veidt,1393653526 +124117,74164,remade,1393653958 +124117,74438,blood,1397362080 +124117,74438,Jet Li,1397362001 +124117,74438,martial arts,1397362093 +124117,74438,weird,1397362016 +124117,74458,Ben Kingsley,1316494189 +124117,74458,insanity,1316494218 +124117,74458,Leonardo DiCaprio,1316494169 +124117,74458,Mark Ruffalo,1335510544 +124117,74458,Mental Institution,1316494174 +124117,74458,nazis,1316494212 +124117,74458,Nudity (Full Frontal),1404704937 +124117,74458,psychological,1316494176 +124117,74458,Psychological Thriller,1335510538 +124117,74458,twisted ending,1335510531 +124117,74458,unnecessary nudity,1326949880 +124117,74530,arbitrary rules,1378255806 +124117,74530,black guy as funny sidekick,1315191718 +124117,74530,Chris Columbus,1378255860 +124117,74530,fantasy,1328756018 +124117,74530,gods,1328756109 +124117,74530,Greek mythology,1328756104 +124117,74530,Logan Lerman,1371433070 +124117,74530,not true to the book,1371433039 +124117,74530,Pierce Brosnan,1315191729 +124117,74530,predictable,1315191691 +124117,74530,Sean Bean,1315191701 +124117,74530,Uma Thurman,1328756093 +124117,74545,adultery,1315180056 +124117,74545,Ewan McGregor,1315180094 +124117,74545,Pierce Brosnan,1315180087 +124117,74545,pretentious,1367190949 +124117,74545,Roman Polanski,1315180083 +124117,74545,slow,1315180049 +124117,74545,weak plot,1315180051 +124117,74553,cliche,1379310550 +124117,74553,massacre,1379310303 +124117,74553,not for kids,1379310375 +124117,74553,stereotypes,1379310412 +124117,74553,stylized,1379310453 +124117,74789,Alan Rickman,1337994822 +124117,74789,Anne Hathaway,1315202849 +124117,74789,Christopher Lee,1337994814 +124117,74789,Danny Elfman,1337994806 +124117,74789,Depp & Burton,1329293460 +124117,74789,dissapointing,1315202879 +124117,74789,fantasy,1329293455 +124117,74789,Helena Bonham Carter,1315203028 +124117,74789,Johnny Depp,1337994884 +124117,74789,Lewis Carroll,1337994850 +124117,74789,not true to the book,1315202834 +124117,74789,talking animals,1358264509 +124117,74789,the book was better,1334630662 +124117,74789,Tim Burton,1315202832 +124117,74789,unimaginative,1315203006 +124117,74789,visuals,1315202961 +124117,75351,Las Vegas,1378408168 +124117,75351,vampires,1378408198 +124117,75397,Andy Devine,1360567635 +124117,75397,James Cagney,1360567612 +124117,75805,bounty hunter(s),1391762285 +124117,75992,poor adaptation,1329277194 +124117,76134,Basil Rathbone,1366559862 +124117,76134,Basil Rathbone as Sherlock Holmes,1366559733 +124117,76134,Rondo Hatton,1366559790 +124117,76175,action,1315191970 +124117,76175,Bad remake,1343709910 +124117,76175,drab,1343709885 +124117,76175,fantasy,1333126712 +124117,76175,Gemma Arterton,1315191803 +124117,76175,gods,1333126715 +124117,76175,Greek,1315191975 +124117,76175,Liam Neeson,1315191881 +124117,76175,Mads Mikkelsen,1343709923 +124117,76175,misotheistic,1327608469 +124117,76175,Ralph Fiennes,1327608294 +124117,76175,Sam Worthington,1315191833 +124117,76251,brutal,1315206495 +124117,76251,foul language,1331102140 +124117,76251,good idea... bad movie,1377932414 +124117,76251,gore,1331102172 +124117,76251,great soundtrack,1315206605 +124117,76251,long,1315206461 +124117,76251,lousy script,1326948316 +124117,76251,Nicholas Cage,1315206480 +124117,76251,not funny,1315206455 +124117,76251,violence,1315206458 +124117,76251,what if...,1326948347 +124117,76722,Humphrey Bogart,1360567394 +124117,76722,James Cagney,1360567379 +124117,76722,western,1360567387 +124117,76811,alien,1341125740 +124117,76811,great title,1379456788 +124117,76811,sci-fi,1341125810 +124117,77412,Isao Takahata,1381029696 +124117,77412,panda,1402374723 +124117,77412,screenwriter:Hayao Miyazaki,1402374669 +124117,77412,talking animals,1402375012 +124117,77481,Bela Lugosi wannabe,1349752432 +124117,77481,bland hero,1349818582 +124117,77481,comedy,1349818629 +124117,77481,jungle,1349818598 +124117,77481,stereotypical black comic relief,1349818527 +124117,77481,zombies,1349818549 +124117,77540,arbitrary rules,1386479605 +124117,77540,drab,1386476419 +124117,77540,James Purefoy,1386474886 +124117,77540,the book was better,1386474911 +124117,77561,Don Cheadle,1315204492 +124117,77561,Gwyneth Paltrow,1315204490 +124117,77561,Marvel,1315204477 +124117,77561,Marvel Cinematic Universe,1366433385 +124117,77561,Mickey Rourke,1342764882 +124117,77561,Robert Downey Jr.,1315204458 +124117,77561,Sam Rockwell,1315204461 +124117,77561,Samuel L. Jackson,1315204464 +124117,77561,Scarlett Johansson,1315204499 +124117,77561,superhero,1315204467 +124117,77561,The Avengers,1342764981 +124117,78105,action,1315191366 +124117,78105,adventure,1315191368 +124117,78105,Alfred Molina,1315191370 +124117,78105,based on a video game,1315278279 +124117,78105,Ben Kingsley,1315191463 +124117,78105,Jake Gyllenhaal,1315191379 +124117,78105,parkour,1315191362 +124117,78105,stylized,1315191388 +124117,78349,group psychology,1371192729 +124117,78349,mediocre ending,1371192743 +124117,78349,one room,1371193371 +124117,78349,psychological,1371192994 +124117,78349,torture,1371192983 +124117,78349,underwhelming,1371193063 +124117,78420,murder,1343711802 +124117,78420,Richard Basehart,1333464807 +124117,78420,Valentina Cortese,1343711846 +124117,78467,bounty hunter(s),1396927500 +124117,78469,Bradley Cooper,1315209996 +124117,78469,sleazy,1400273322 +124117,78469,the original is better,1400273336 +124117,78499,Ken,1420350102 +124117,78557,Amitabh Bachchan,1406434653 +124117,78557,genie,1406434719 +124117,78557,magic,1406434894 +124117,78723,Alec Guinness,1386401076 +124117,78723,Charles Dickens,1386401097 +124117,78893,audience intelligence underestimated,1315192211 +124117,78893,bad dialogue,1347688491 +124117,78893,colorful,1347688614 +124117,78893,fantasy,1315192195 +124117,78893,M. Night Shyamalan,1347688619 +124117,78893,Noah Ringer,1347688550 +124117,78893,not funny,1347688717 +124117,78893,style over substance,1347688571 +124117,78893,unfinished storyline,1347688737 +124117,79132,action,1315505919 +124117,79132,Christopher Nolan,1342859489 +124117,79132,clever,1343967336 +124117,79132,complicated,1315505916 +124117,79132,confusing plot,1342859446 +124117,79132,dream,1326949951 +124117,79132,dreamlike,1315178621 +124117,79132,dreams,1326949953 +124117,79132,Ellen Page,1326949947 +124117,79132,fast paced,1315505902 +124117,79132,great soundtrack,1315178633 +124117,79132,heist,1342859457 +124117,79132,innovative,1315505905 +124117,79132,Intense,1315505924 +124117,79132,Joseph Gordon-Levitt,1350333769 +124117,79132,Leonardo DiCaprio,1315178603 +124117,79132,Los Angeles,1329761105 +124117,79132,memory,1315178643 +124117,79132,Michael Caine,1315505940 +124117,79132,mind games,1315505929 +124117,79132,multiple realities,1329761128 +124117,79132,Paris,1329761103 +124117,79132,thought-provoking,1329761139 +124117,79132,thoughtful,1326949962 +124117,79132,thriller,1315178650 +124117,79132,visually appealing,1315178609 +124117,79139,Alfred Molina,1396488821 +124117,79139,believe in yourself,1396488727 +124117,79139,cliche,1315191565 +124117,79139,crude humor,1329639043 +124117,79139,Jay Baruchel,1396488661 +124117,79139,magic,1315191576 +124117,79139,Nicolas Cage,1396488649 +124117,79139,The Chosen One,1377807258 +124117,79528,author:Robert Louis Stevenson,1330873975 +124117,79528,Robert Louis Stevenson,1330873980 +124117,79695,all-star cast,1412058328 +124117,79695,feels unfinished,1412058211 +124117,79695,Jet Li,1412058144 +124117,79695,Mickey Rourke,1412058138 +124117,79695,one dimensional characters,1412058134 +124117,79695,torture,1412058264 +124117,79702,Chris Evans,1329294576 +124117,79702,crude humor,1329294547 +124117,79702,fight scenes,1329294392 +124117,79702,stylized,1330160462 +124117,79702,video games,1329294415 +124117,79832,Ray Milland,1329812057 +124117,80226,Edgar Rice Burroughs,1348792516 +124117,80311,Roy Rogers,1332435299 +124117,80505,mockbuster,1390772567 +124117,80748,Gary Cooper,1402031429 +124117,80748,weird,1402031437 +124117,80748,weirder than the Tim Burton version,1402031521 +124117,80808,annoying reporter,1400790176 +124117,80808,Darren McGavin,1400790041 +124117,80808,immortality,1400790139 +124117,80808,John Carradine,1400790272 +124117,80808,serial killer,1400790148 +124117,80808,underground city,1400790101 +124117,80917,aliens,1386824595 +124117,80917,Gareth Edwards,1386823635 +124117,80917,monster:giant cephalopod,1386824568 +124117,80969,Andrew Garfield,1315342140 +124117,80969,annoying characters,1375851055 +124117,80969,audience intelligence underestimated,1375850961 +124117,80969,bad script,1315342136 +124117,80969,boarding school,1342592849 +124117,80969,Carey Mulligan,1315342203 +124117,80969,cynical,1349845686 +124117,80969,depressing,1315342124 +124117,80969,dystopia,1326948929 +124117,80969,England,1330243571 +124117,80969,Keira Knightley,1315342114 +124117,80969,manipulative,1326948990 +124117,80969,not science fiction,1375850994 +124117,80969,one-sided love story,1326949027 +124117,80969,pornography,1330243564 +124117,80969,pretentious,1326948920 +124117,80969,slow and predictable plot,1315342179 +124117,80969,superficial,1365061912 +124117,80969,surgery,1365061847 +124117,81193,James Cagney,1360567715 +124117,81193,musical,1360567727 +124117,81229,aging,1330715641 +124117,81229,Bruce Willis,1315209799 +124117,81229,contrived,1315209787 +124117,81229,Helen Mirren,1315209797 +124117,81229,murder,1315209867 +124117,81229,not funny,1365062147 +124117,81229,Richard Dreyfuss,1315209844 +124117,81591,body horror,1342592488 +124117,81591,gruesome,1342592466 +124117,81591,Natalie Portman,1342592513 +124117,81591,obsession,1342592481 +124117,81591,psychological,1315201670 +124117,81834,Alan Rickman,1329727082 +124117,81834,British,1329727100 +124117,81834,Daniel Radcliffe,1329727081 +124117,81834,dark fantasy,1329727097 +124117,81834,on the run,1391411359 +124117,81845,1930s,1315334474 +124117,81845,Colin Firth,1315334472 +124117,81845,complex characters,1315334468 +124117,81845,great performances,1315334448 +124117,81845,Guy Pearce,1359180098 +124117,81845,Helena Bonham Carter,1315334504 +124117,81845,stammering,1315334497 +124117,81845,stuttering,1379372187 +124117,81845,uplifting,1315334452 +124117,81847,deadpan,1328820117 +124117,81847,fairy tale,1328819402 +124117,81847,Ron Perlman,1328820134 +124117,81847,subgenre:fairy tale,1328819386 +124117,81847,Zachary Levi,1328819457 +124117,82169,author:C.S. Lewis,1315203297 +124117,82169,Christian allegory,1315203269 +124117,82169,dragons,1315203305 +124117,82169,magic,1315203310 +124117,82169,talking animals,1315203325 +124117,82459,Coen Brothers,1315182008 +124117,82459,Costumes,1315182018 +124117,82459,Jeff Bridges,1315182006 +124117,82459,Josh Brolin,1416986865 +124117,82459,Matt Damon,1315182003 +124117,82459,remake,1315182026 +124117,82459,Speech Patterns,1416986855 +124117,82459,stupid ending,1416986900 +124117,82459,the original is better,1416986882 +124117,82461,bad acting,1315277540 +124117,82461,colorful,1315277532 +124117,82461,Jeff Bridges,1315277521 +124117,82461,Poor plot development,1315277613 +124117,82461,pseudo-philosophical,1363201977 +124117,82461,style over substance,1350114465 +124117,82461,virtual reality,1331684297 +124117,82765,ancient China,1405831422 +124117,82765,anti-war,1405831154 +124117,82765,Jackie Chan,1405831126 +124117,82765,Leehom Wang,1405831153 +124117,83132,adapted from:book,1342859968 +124117,83132,Anime,1335222365 +124117,83132,beautiful,1335249117 +124117,83132,better than the book,1335222587 +124117,83132,bittersweet,1335222450 +124117,83132,colorful,1335222394 +124117,83132,detail,1335222353 +124117,83132,Hiromasa Yonebayashi,1335222546 +124117,83132,Japan,1335222479 +124117,83132,screenwriter:Hayao Miyazaki,1402384746 +124117,83132,Studio Ghibli,1335222368 +124117,83132,unnecessary villain,1377240047 +124117,83613,aliens,1317139146 +124117,83613,amnesia,1369877876 +124117,83613,better than expected,1341473126 +124117,83613,cowboys,1317139145 +124117,83613,Daniel Craig,1317139140 +124117,83613,Harrison Ford,1317139136 +124117,83613,Jon Favreau,1341473107 +124117,83613,Olivia Wilde,1317139204 +124117,83613,Sam Rockwell,1317139214 +124117,83613,western,1341473162 +124117,84140,Sonny Chiba,1432406586 +124117,84152,Abbie Cornish,1316246419 +124117,84152,audience intelligence underestimated,1328757640 +124117,84152,Bradley Cooper,1316246415 +124117,84152,concept,1316246393 +124117,84152,drugs,1316246446 +124117,84152,empty,1328757672 +124117,84152,lifeless supporting characters,1316246407 +124117,84152,pseudo-intelligent,1326948882 +124117,84152,Robert De Niro,1316246421 +124117,84152,stupid,1326948859 +124117,84152,twisted ending,1316246437 +124117,84176,carnival,1393482705 +124117,84176,Conrad Veidt,1393482130 +124117,84176,Emil Jannings,1393482154 +124117,84176,German Expressionism,1394937937 +124117,84176,Jack the Ripper,1393482671 +124117,84176,NOT horror,1393482628 +124117,84176,stories,1393482521 +124117,84176,writer,1393482091 +124117,84395,Anthony Hopkins,1379619553 +124117,84395,demons,1379619549 +124117,84395,exorcism,1346219670 +124117,84601,amnesia,1335632955 +124117,84601,assassin,1335632965 +124117,84601,conspiracy,1335632897 +124117,84601,Diane Kruger,1335632924 +124117,84601,easily confused with other movie(s) (title),1335632728 +124117,84601,January Jones,1335632994 +124117,84601,Liam Neeson,1335632922 +124117,84601,paranoia,1335632894 +124117,84954,author:Philip K. Dick,1328757967 +124117,84954,fate,1315179445 +124117,84954,Matt Damon,1315179426 +124117,84954,Philip K. Dick,1315179422 +124117,84954,superficial,1315179461 +124117,85056,bland hero,1349933258 +124117,85056,cheesy,1315207689 +124117,85056,childish plot,1315207687 +124117,85056,cliche,1315207691 +124117,85056,superhero,1315207707 +124117,85131,Aaron Eckhart,1330160087 +124117,85131,alien invasion,1345528952 +124117,85131,aliens,1345528955 +124117,85131,cliche,1315192782 +124117,85131,invasion,1330160095 +124117,85131,Marine Corps,1345528962 +124117,85131,Michelle Rodriguez,1315192797 +124117,85131,sci-fi,1345528969 +124117,85131,shaky camera,1315192785 +124117,85131,Unoriginal,1315192789 +124117,85179,anime,1329606309 +124117,85179,great villain,1416639638 +124117,85179,Hanafuda,1329627370 +124117,85179,Japanese,1329606314 +124117,85179,Mamoru Hosoda,1329606329 +124117,85179,virtual reality,1329606318 +124117,85414,good concept,1361857448 +124117,85414,intelligent,1315333754 +124117,85414,interesting,1315333673 +124117,85414,Jake Gyllenhaal,1315333685 +124117,85414,Michelle Monaghan,1361857432 +124117,85414,parallel universe,1315333748 +124117,85414,science fiction,1326949794 +124117,85510,abuse,1326949128 +124117,85510,audience intelligence underestimated,1328757804 +124117,85510,bad accents,1315277298 +124117,85510,Jena Malone,1315277267 +124117,85510,lame ending,1326949106 +124117,85510,lobotomy,1315276849 +124117,85510,lowest common denominator,1350628001 +124117,85510,martial arts,1315277280 +124117,85510,men shown as monsters,1326949185 +124117,85510,Misandry,1315277344 +124117,85510,murder,1315277260 +124117,85510,objectifying women,1326949262 +124117,85510,Rape Culture,1315277362 +124117,85510,setting:asylum,1315277322 +124117,85510,setting:brothel,1315276844 +124117,85510,stylized,1315276841 +124117,85510,Surreal,1315277353 +124117,85510,women as sexual objects,1400911831 +124117,85510,Zack Snyder,1315277373 +124117,85788,better than expected,1398390107 +124117,85788,scary,1398390127 +124117,86332,action,1337832534 +124117,86332,Anthony Hopkins,1315204250 +124117,86332,Chris Hemsworth,1315204324 +124117,86332,cliche characters,1362526208 +124117,86332,gods,1315204243 +124117,86332,Kenneth Branagh,1315204230 +124117,86332,Marvel,1315204226 +124117,86332,Marvel Cinematic Universe,1366433447 +124117,86332,Natalie Portman,1315204218 +124117,86332,Norse,1315204274 +124117,86332,sibling rivalry,1315204201 +124117,86332,superhero,1315204197 +124117,86332,The Avengers,1315204278 +124117,86332,Tom Hiddleston,1337832548 +124117,86518,German Expressionism,1394939012 +124117,86835,ax-grinding,1375849883 +124117,86835,cliche,1375849917 +124117,86864,dubbed in English - great!,1384569293 +124117,86864,Godzilla Universe,1382945005 +124117,86864,great special effects,1384570050 +124117,86864,Hiroshi Koizumi,1392359379 +124117,86864,Ishiro Honda,1384569131 +124117,86864,Japan,1365355917 +124117,86864,Kaiju,1365355908 +124117,86864,monster:giant insect,1384569202 +124117,86864,Mothra,1382157675 +124117,86864,Shobijin,1384570496 +124117,86864,Toho,1384569116 +124117,86866,Anguirus,1382839461 +124117,86866,Godzilla,1382839445 +124117,86866,Godzilla Universe,1382944346 +124117,86866,Kaiju,1382602824 +124117,86866,Osaka Castle,1398965311 +124117,86866,Toho,1382602830 +124117,86866,upbeat,1382838442 +124117,86880,Bechdel Test:Pass,1368153380 +124117,86880,mermaid,1315191265 +124117,86880,pirates,1397020729 +124117,86892,child labor,1407040435 +124117,86892,cute kid,1407040380 +124117,86892,drugs,1407040529 +124117,86892,kidnapping,1407040512 +124117,86892,Nudity (corpse),1407040347 +124117,86892,organ harvesting,1407040415 +124117,86982,alien invasion,1365356560 +124117,86982,aliens,1365356546 +124117,86982,Baragon,1382944475 +124117,86982,Godzilla,1392506460 +124117,86982,Godzilla Universe,1382944455 +124117,86982,Gorosaurus,1392505672 +124117,86982,Japan,1365356503 +124117,86982,Kaiju,1365356486 +124117,86982,Mothra,1382470965 +124117,86982,Rodan,1382944471 +124117,86982,Toho,1385784247 +124117,87232,1960s,1335671646 +124117,87232,James McAvoy,1335671630 +124117,87232,Nazis,1335671634 +124117,87232,New York,1335671662 +124117,87232,superhero,1335671637 +124117,87306,Elle Fanning,1360996361 +124117,87306,J.J. Abrams,1360996080 +124117,87306,manipulative,1327608083 +124117,87306,Not Directed by Steven Spielberg,1315282051 +124117,87306,predictable,1360996085 +124117,87306,scientific errors,1315282046 +124117,87306,Steven Spielberg,1360996388 +124117,87306,unbelievable characters,1315282038 +124117,87306,Uneven performances,1315282040 +124117,87430,audience intelligence underestimated,1328757539 +124117,87430,Badly made,1315205366 +124117,87430,Boring,1315205425 +124117,87430,cheesy,1398965280 +124117,87430,colorful,1328757560 +124117,87430,Geoffrey Rush,1366613166 +124117,87430,Green Lantern,1366613148 +124117,87430,lowest common denominator,1350627801 +124117,87430,Martin Campbell,1366613227 +124117,87430,no imagination,1328757508 +124117,87430,psionic power,1366613139 +124117,87430,Ryan Reynolds,1350627823 +124117,87430,superhero,1377848646 +124117,87430,superpowers,1315205450 +124117,87433,Godzilla,1382155975 +124117,87433,Godzilla Universe,1382944822 +124117,87433,Kaiju,1382155964 +124117,87433,King Ghidorah,1382155989 +124117,87433,Mothra,1382155977 +124117,87433,precognition,1382925918 +124117,87433,princess,1382927130 +124117,87433,Rodan,1382944838 +124117,87433,Shobijin,1384570564 +124117,87433,Toho,1382602814 +124117,87483,CGI animals,1347261236 +124117,87483,Clark Gregg,1347261304 +124117,87483,crude humor,1347261172 +124117,87483,predictable,1347261354 +124117,88140,action,1326947831 +124117,88140,authentic men,1326947825 +124117,88140,authenticity,1326947829 +124117,88140,Captain America,1335068705 +124117,88140,Chris Evans,1315178962 +124117,88140,cool people like this movie,1366433695 +124117,88140,dialogue,1342764631 +124117,88140,dieselpunk,1315282947 +124117,88140,Hayley Atwell,1315179004 +124117,88140,heroic,1329294301 +124117,88140,Hugo Weaving,1315179050 +124117,88140,Joe Johnston,1315178994 +124117,88140,Marvel,1315178986 +124117,88140,Marvel Cinematic Universe,1366433632 +124117,88140,military,1337832756 +124117,88140,not afraid to take risks,1367769857 +124117,88140,patriotic,1326947795 +124117,88140,patriotism,1398751379 +124117,88140,positive,1326947803 +124117,88140,positive themes,1326947808 +124117,88140,retro,1342764687 +124117,88140,role models,1326947843 +124117,88140,soldiers,1337832662 +124117,88140,stylized,1366433641 +124117,88140,superhero,1315178970 +124117,88140,The Avengers,1337832600 +124117,88140,theme song,1315178973 +124117,88140,Tommy Lee Jones,1342764662 +124117,88140,World War II,1332822504 +124117,88237,bully,1376896506 +124117,88237,good acting,1376894933 +124117,88237,Lenka song,1376895098 +124117,88237,Maeve Dermody,1376895239 +124117,88237,Ryan Kwanten,1376895250 +124117,88237,strange characters,1376894951 +124117,88237,superhero,1376894873 +124117,88278,German Expressionism,1394938798 +124117,88349,mockbuster,1390772601 +124117,88744,deceptive trailers,1411506738 +124117,89045,not a movie,1391226945 +124117,89190,audience intelligence underestimated,1328756950 +124117,89190,Bechdel Test:Fail,1403847054 +124117,89190,brutal,1325748558 +124117,89190,crappy remake,1341473251 +124117,89190,hard to watch,1341473220 +124117,89190,Jason Momoa,1341473195 +124117,89190,predictable,1341473389 +124117,89190,too much blood,1327607704 +124117,89492,artistic license,1402550751 +124117,89492,baseball,1402548725 +124117,89492,Brad Pitt,1402548715 +124117,89492,Chris Pratt,1402548656 +124117,89492,Jonah Hill,1402548052 +124117,89492,Lenka song,1376897986 +124117,89492,strange ending,1402548693 +124117,89607,atmospheric,1384751248 +124117,89607,creepy doll,1384751021 +124117,89607,good acting,1384750716 +124117,89607,Hammer Horror,1384750662 +124117,89607,insanity,1384750691 +124117,89607,Jennie Linden,1384750764 +124117,89607,Moira Redmond,1384750861 +124117,89607,murder,1384751067 +124117,89607,nightmares,1384750895 +124117,89607,psychological,1384750871 +124117,89732,best of the series so far,1349857961 +124117,89732,Bulldog Drummond,1382043229 +124117,89732,castle,1349858077 +124117,89732,favorite,1349858038 +124117,89732,fun,1349857911 +124117,89732,Heather Angel,1349858009 +124117,89732,heroism,1371804689 +124117,89732,Ray Milland,1326948003 +124117,89732,swamp,1349994764 +124117,89745,action,1337832389 +124117,89745,beloved character dies pointlessly,1380262623 +124117,89745,Captain America,1335037353 +124117,89745,Chris Evans,1336415601 +124117,89745,Chris Hemsworth,1336415644 +124117,89745,excellent acting,1337832386 +124117,89745,fast paced,1337832392 +124117,89745,fun,1337832375 +124117,89745,Great action,1340866193 +124117,89745,great dialogue,1349252201 +124117,89745,great humor,1336415631 +124117,89745,Gwyneth Paltrow,1340866231 +124117,89745,Hulk,1336415597 +124117,89745,Iron Man,1335037411 +124117,89745,joss whedon,1336415639 +124117,89745,Mark Ruffalo,1336415623 +124117,89745,Marvel,1337832442 +124117,89745,Marvel Cinematic Universe,1366433520 +124117,89745,Robert Downey Jr.,1337832414 +124117,89745,Samuel L. Jackson,1340866290 +124117,89745,Scarlett Johansson,1337832417 +124117,89745,stylized violence,1337832401 +124117,89745,superhero,1335037396 +124117,89745,superhero team,1337832404 +124117,89745,The Avengers,1337832433 +124117,89745,Thor,1335037420 +124117,89745,visually appealing,1337832403 +124117,89745,visually stunning,1340866215 +124117,89780,easily confused with other movie(s) (title),1330243352 +124117,89780,mockbuster,1358837041 +124117,89780,Not Bad Not Good,1326947695 +124117,89881,subterranean,1379650337 +124117,89881,superhero,1377643348 +124117,89881,Superman,1377643343 +124117,89883,intentionally bad,1382318400 +124117,89883,superhero,1382318411 +124117,89904,1920s,1338839168 +124117,89904,a tribute to the silent era,1332303896 +124117,89904,Hollywood,1338839111 +124117,89904,Jean Dujardin,1338839225 +124117,89904,movie business,1338839189 +124117,89904,silent movie,1342859675 +124117,89904,slow pacing,1338839175 +124117,89904,visually appealing,1338839143 +124117,89983,high body count,1400271884 +124117,89983,odd sense of humor,1400272201 +124117,89983,Rajnikanth,1400272330 +124117,89983,robots,1400272316 +124117,90243,Hideo Gosha,1390639525 +124117,90243,honor,1390639607 +124117,90243,Miyuki Kuwano,1390639471 +124117,90243,samurai,1390639334 +124117,90243,Tetsuro Tanba,1390639394 +124117,90249,feel-good,1379906142 +124117,90249,Hugh Jackman,1326950385 +124117,90249,obnoxious kid,1326950411 +124117,90249,robots,1326950416 +124117,90249,Rocky wannabe,1385959406 +124117,90249,Science Fiction,1328756564 +124117,90249,unresolved,1328756572 +124117,90403,airships,1345923536 +124117,90403,Alexandre Dumas,1345924077 +124117,90403,choppy editing,1345953220 +124117,90403,crude humor,1345923562 +124117,90403,Freddie Fox,1345924087 +124117,90403,Gabriella Wilde,1345923858 +124117,90403,Juno Temple,1345924070 +124117,90403,Logan Lerman,1345923592 +124117,90403,Milla Jovovich,1345923527 +124117,90403,Orlando Bloom,1345923550 +124117,90403,sword fight,1345923544 +124117,90405,Amanda Seyfried,1332483072 +124117,90405,dystopia,1332482914 +124117,90405,eternal youth,1332482916 +124117,90405,fugitive,1332483017 +124117,90405,immortality,1332482887 +124117,90405,Olivia Wilde,1341472664 +124117,90405,plot holes,1332483010 +124117,90405,sci-fi,1332482925 +124117,90578,Claire Geare,1374220401 +124117,90578,Daniel Craig,1374219725 +124117,90578,psychological,1374220451 +124117,90578,Taylor Geare,1374220043 +124117,90578,twist,1374220442 +124117,90578,underwhelming,1374221167 +124117,90746,action,1332126231 +124117,90746,alcoholism,1326950757 +124117,90746,Daniel Craig,1333593688 +124117,90746,great opening credits,1326950730 +124117,90746,Journalist,1332126273 +124117,90746,motion capture,1332126224 +124117,90746,nice transitions,1326950715 +124117,90746,not as good as the book,1349219835 +124117,90746,pirates,1397020789 +124117,90746,Planes,1332126292 +124117,90746,Steven Spielberg,1332126208 +124117,90746,sword fight,1332126287 +124117,90746,treasure hunt,1333593715 +124117,90866,a tribute to the silent era,1332303808 +124117,90866,Asa Butterfield,1335510621 +124117,90866,Ben Kingsley,1332287379 +124117,90866,clockwork devices,1332287505 +124117,90866,creepy robot,1332287469 +124117,90866,France,1379466267 +124117,90866,Georges Méliès,1379466222 +124117,90866,Harold Lloyd,1379466162 +124117,90866,Jude Law,1332287612 +124117,90866,makes fun of disabled people,1332287959 +124117,90866,Martin Scorsese,1379466178 +124117,90866,Paris,1332287431 +124117,90866,Sacha Baron Cohen,1335510628 +124117,90866,set:mechanical gearworks,1332287489 +124117,90866,unlikable protagonist,1332287585 +124117,90866,visually appealing,1332287712 +124117,91054,anti-Japanese,1331880498 +124117,91054,Batman,1331880712 +124117,91054,Serial,1331880841 +124117,91054,subgenre:yellow peril,1357194943 +124117,91054,superhero,1377643567 +124117,91054,yellowface,1385869173 +124117,91077,George Clooney,1335595366 +124117,91094,cameo-fest,1349061744 +124117,91094,comeback,1349061738 +124117,91094,muppets,1349061834 +124117,91094,musical,1349061754 +124117,91485,all-star cast,1412664141 +124117,91485,better than the first,1412724308 +124117,91485,Chuck Norris,1412664081 +124117,91485,Dolph Lundgren,1412664093 +124117,91485,Jean-Claude Van Damme,1412664082 +124117,91485,Jet Li,1412664088 +124117,91485,Nan Yu,1412664250 +124117,91485,verging on self-parody,1412724064 +124117,91500,dystopia,1447404656 +124117,91500,shaky camera,1447404664 +124117,91529,Anne Hathaway,1343102426 +124117,91529,audience intelligence underestimated,1368084600 +124117,91529,Bane's contradictory plans,1358222525 +124117,91529,Bane's voice,1342765202 +124117,91529,Batman,1343102350 +124117,91529,cheesy,1398751554 +124117,91529,Christian Bale,1343102585 +124117,91529,Christopher Nolan,1343102312 +124117,91529,contrived romance,1376373347 +124117,91529,flashback overload,1358222434 +124117,91529,Gary Oldman,1343102327 +124117,91529,hard to hear lines,1347261677 +124117,91529,Joseph Gordon-Levitt,1343102331 +124117,91529,Michael Caine,1376373355 +124117,91529,overrated,1384063436 +124117,91529,Predictable,1343102317 +124117,91529,pretentious,1348115608 +124117,91529,superhero,1343102322 +124117,91529,Tom Hardy,1343102369 +124117,91529,too much Bruce Wayne not enough Batman,1347262153 +124117,91529,wasted villain,1368084627 +124117,91535,Jeremy Renner,1350970438 +124117,91535,mention Bourne often enough and it's a Bourne movie,1350970394 +124117,91535,motorcycle chase,1350970513 +124117,91535,Rachel Weisz,1350970429 +124117,91535,shaky cam,1350970169 +124117,91542,Action Movie,1338869872 +124117,91542,Bromance,1330403726 +124117,91542,gender disguise,1330403720 +124117,91542,Guy Ritchie,1330403662 +124117,91542,Jude Law,1330403677 +124117,91542,racial stereotypes,1365061671 +124117,91542,Robert Downey Jr.,1330403676 +124117,91542,setting:Victorian England,1330403711 +124117,91542,Weak plot,1349304169 +124117,91630,Josh Holloway,1338869964 +124117,91666,Alec Guinness,1386400987 +124117,91713,Hollywood,1330874373 +124117,91713,James Cagney,1330874384 +124117,91752,Pokemon,1405314360 +124117,91786,anime,1332891361 +124117,91786,Emmy Altava,1332891284 +124117,91786,father-daughter relationship,1330244195 +124117,91786,Inspector Grosky,1332891309 +124117,91786,London,1332891350 +124117,91786,Luke Triton,1332891270 +124117,91786,plot point:solving riddles/puzzles,1330244187 +124117,91786,Professor Layton,1330244224 +124117,91786,puzzle solving,1377242563 +124117,91978,bad language,1331601892 +124117,91978,corrupt cops,1331602068 +124117,91978,heist,1331602010 +124117,91978,Sam Worthington,1331601963 +124117,91978,shaky camera,1331621495 +124117,91995,Cameron Mitchell,1405666482 +124117,91995,carnival,1405666496 +124117,91995,gorilla suit,1405665712 +124117,91995,Lee J. Cobb,1405666503 +124117,91995,Lee Marvin,1405665879 +124117,91995,murder mystery,1405665839 +124117,91995,Raymond Burr,1405665864 +124117,92210,aliens,1330326626 +124117,92210,alternate timeline,1330326630 +124117,92210,anime,1330327046 +124117,92210,Christmas,1333425009 +124117,92210,fun,1335511421 +124117,92210,Haruhi Suzumiya,1330326659 +124117,92210,high school,1333424945 +124117,92210,Japan,1330326634 +124117,92210,school life,1379054082 +124117,92210,supernatural,1330326595 +124117,92210,time travel,1330326596 +124117,92210,wonderfully convoluted story,1330412784 +124117,92210,Yuki Nagato,1330531846 +124117,92234,colorful,1330979574 +124117,92234,World War II,1330979580 +124117,92343,heist,1333464905 +124117,92343,Richard Basehart,1333464657 +124117,92393,China,1352095883 +124117,92393,convoluted,1352095942 +124117,92393,dubbed in English - great!,1352095751 +124117,92393,long,1352095870 +124117,92393,poor dialogue,1352095817 +124117,92393,twist ending,1352095370 +124117,92422,atmospheric,1339957520 +124117,92422,better than expected,1339652654 +124117,92422,Daniel Radcliffe,1339652696 +124117,92422,ghosts,1339652988 +124117,92422,ghosts/afterlife,1339653004 +124117,92422,horror,1339652435 +124117,92422,Old Dark House,1339652294 +124117,92422,scary,1339652551 +124117,92422,unsatisfying ending,1339652598 +124117,92518,Doctor Who,1385365833 +124117,92518,dubbed in English - horrible!,1332784633 +124117,92518,giant robots,1378430428 +124117,92518,Godzilla Universe,1383065317 +124117,92518,Gorosaurus,1392505725 +124117,92518,island,1358838955 +124117,92518,Japanese,1332784838 +124117,92518,Kaiju,1382945343 +124117,92518,King Kong,1332784563 +124117,92518,Linda Miller,1349857408 +124117,92518,monster fights,1332784764 +124117,92518,monster:giant gorilla,1378430433 +124117,92518,so bad it's good,1332784529 +124117,92518,submarine,1358838916 +124117,92518,Toho,1382750062 +124117,92681,bad science,1334630244 +124117,92681,beautiful scenery,1334630034 +124117,92681,crude humor,1334630043 +124117,92681,father son relationship,1334630415 +124117,92681,giant bugs,1334630372 +124117,92681,great visuals,1334630085 +124117,92681,Jules Verne,1334630015 +124117,92681,Michael Caine,1334630063 +124117,92681,sequel better than original,1334630319 +124117,92681,style over substance,1334630577 +124117,92681,the book was better,1334630608 +124117,92817,Buddhist monks,1367305227 +124117,92817,China,1367305194 +124117,92817,demons,1367305007 +124117,92817,fantasy,1367304993 +124117,92817,Jet Li,1367304981 +124117,92817,martial arts,1367305282 +124117,92817,monster hunter,1367305017 +124117,92817,talking animals,1367305060 +124117,92819,cannibalism,1398965515 +124117,92819,eunuchs,1399396482 +124117,92819,inn,1399396514 +124117,92819,Jet Li,1398749696 +124117,92819,martial arts,1398749581 +124117,92819,poison,1398749648 +124117,92819,sandstorm,1398749635 +124117,92819,Tartars,1398749569 +124117,92843,not true to the book,1329811451 +124117,92843,The Ritz Brothers,1329877020 +124117,93240,dealing with death,1385530154 +124117,93240,death,1385530007 +124117,93240,Hollow Earth,1385530113 +124117,93240,Makoto Shinkai,1385530018 +124117,93265,father-son relationship,1395805707 +124117,93265,fatherhood,1395805723 +124117,93265,inspirational,1395806743 +124117,93265,Ken Bevel,1395805795 +124117,93265,T.C. Stallings,1395806038 +124117,93295,Peter Lorre,1331539493 +124117,93344,apocalypse,1406343649 +124117,93344,B-movie,1406343729 +124117,93344,British,1406343715 +124117,93344,great title,1392181328 +124117,93344,low budget,1406343632 +124117,93344,not much screaming,1406343585 +124117,93344,pregnancy,1406343682 +124117,93344,robots,1406343604 +124117,93363,Action,1332216266 +124117,93363,Barsoom,1332216378 +124117,93363,better than expected,1366272095 +124117,93363,Edgar Rice Burroughs,1332216260 +124117,93363,female warriors,1333126960 +124117,93363,flying jokes,1332216331 +124117,93363,great soundtrack,1341472854 +124117,93363,lame title,1382043787 +124117,93363,Lynn Collins,1347833067 +124117,93363,Mars,1332216264 +124117,93363,sci-fi,1335068802 +124117,93363,Taylor Kitsch,1341472801 +124117,93363,too worried it will offend people,1375650152 +124117,93363,villain has no motive,1382043712 +124117,93502,atheism,1359180533 +124117,93502,Christianity,1359180541 +124117,93502,irreligion,1359180543 +124117,93502,religion,1359180537 +124117,93520,Captain Marvel,1332363224 +124117,93520,Serial,1332363257 +124117,93520,superhero,1332363404 +124117,93522,fun,1332482492 +124117,93522,Serial,1332482506 +124117,93544,China,1332482665 +124117,93544,missionary,1332482635 +124117,93544,rape,1332482651 +124117,93544,seen,1385713473 +124117,93544,unsatisfying ending,1344297627 +124117,93544,villain gets no comeuppance,1332482806 +124117,93544,war,1333603369 +124117,93544,William Holden,1333603241 +124117,93547,Bela Lugosi,1332482538 +124117,93547,Serial,1332482519 +124117,93563,Guy Pearce,1332706918 +124117,93563,prison,1332706945 +124117,93610,alien invasion,1399958739 +124117,93610,dubbed in English - great!,1400273438 +124117,93610,end of the world,1399960598 +124117,93610,Japan,1399960629 +124117,93610,melodramatic,1399960556 +124117,93610,space travel,1399960582 +124117,93610,Takashi Yamazaki,1399960049 +124117,93748,anime,1333602697 +124117,93750,anime,1333602711 +124117,93766,action,1333686487 +124117,93766,adventure,1333686526 +124117,93766,doesn't live up to its full potential,1337669827 +124117,93766,drab,1337669885 +124117,93766,fantasy,1333686474 +124117,93766,Greek mythology,1338839068 +124117,93766,monsters,1333686497 +124117,93766,Sam Worthington,1337669692 +124117,93785,Barbara Steele,1349594378 +124117,93785,necrophilia,1335166785 +124117,93797,made for TV,1334882103 +124117,93797,Marvel,1334882116 +124117,93797,superhero,1334882125 +124117,93816,Barbara Steele,1349594345 +124117,93838,brutal,1400825740 +124117,93838,grunge,1400825672 +124117,93838,high body count,1400825706 +124117,93838,martial arts,1400825677 +124117,93838,minimal plot,1400826378 +124117,93838,primal,1406963307 +124117,93838,shaky camera,1400825648 +124117,93838,stupid title,1400825944 +124117,93838,violence,1400825735 +124117,93840,Chris Hemsworth,1335595330 +124117,93840,conspiracy,1369118303 +124117,93840,gods,1369118292 +124117,93840,gore,1336623289 +124117,93840,homage,1417719552 +124117,93840,horror comedy,1369118278 +124117,93840,hurts itself trying to be PC,1417719456 +124117,93840,monsters,1369118387 +124117,93840,R,1335595210 +124117,93840,rated-R,1369118366 +124117,93840,too worried it will offend people,1404491667 +124117,93865,Frankenstein,1335508606 +124117,93865,Frankenstein's monster,1382471501 +124117,93865,short,1343711262 +124117,93865,silent movie,1335508648 +124117,93980,the original is better,1335117820 +124117,93980,unnecessary remake,1335117714 +124117,94018,alien invasion,1358576208 +124117,94018,aliens,1358576207 +124117,94018,Liam Neeson,1358576212 +124117,94018,product placement,1340650537 +124117,94018,Rihanna,1340650426 +124117,94018,sci-fi,1340650322 +124117,94018,silly but fun,1347832931 +124117,94018,Taylor Kitsch,1341472922 +124117,94306,Bela Lugosi,1348114149 +124117,94306,Jack Haley,1348114112 +124117,94480,bad acting,1337209101 +124117,94777,Bechdel Test:Pass,1375776195 +124117,94777,disgusting scenes,1375775933 +124117,94777,heart ripped out,1375778822 +124117,94777,Josh Brolin,1375775890 +124117,94777,time travel,1375775903 +124117,94777,Tommy Lee Jones,1375776812 +124117,94777,twist,1375775905 +124117,94777,Will Smith,1375775855 +124117,94780,bugs,1349219614 +124117,94780,Charlize Theron,1340308908 +124117,94780,Chris Hemsworth,1340308950 +124117,94780,drab,1343709809 +124117,94780,dwarves,1340309015 +124117,94780,fairy tale,1340308877 +124117,94780,fantasy,1340308880 +124117,94780,Kristen Stewart,1343709754 +124117,94780,main character is boring,1349219561 +124117,94780,subgenre:fairy tale,1340308914 +124117,94864,archaeology,1359352551 +124117,94864,bad make-up effects,1359400140 +124117,94864,bad science,1359400069 +124117,94864,bad script,1359400090 +124117,94864,Charlize Theron,1359352496 +124117,94864,Michael Fassbender,1359352261 +124117,94864,Noomi Rapace,1359352511 +124117,94864,predictable,1359399947 +124117,94864,prequel,1359399971 +124117,94864,pseudo-philosophical,1359400017 +124117,94864,religion,1359352216 +124117,94864,Ridley Scott,1359352410 +124117,94864,stupid characters,1359355540 +124117,94864,unanswered questions,1359352371 +124117,95088,feminist,1358014375 +124117,95296,war,1342164348 +124117,95298,action,1343065551 +124117,95298,fantasy,1343065499 +124117,95298,Korean,1377155760 +124117,95298,magic,1343065536 +124117,95298,monster hunter,1377155825 +124117,95510,Andrew Garfield,1341472477 +124117,95510,bad editing,1346825778 +124117,95510,dangling plotlines,1346824950 +124117,95510,Emma Stone,1346811706 +124117,95510,Marvel,1341472518 +124117,95510,missing scenes,1346825824 +124117,95510,not as good as the original,1346811689 +124117,95510,Rhys Ifans,1346811736 +124117,95510,Spider-Man,1341472502 +124117,95510,superhero,1346811699 +124117,95558,child's perspective,1362355442 +124117,95558,Dwight Henry,1362115325 +124117,95558,emotional,1362115308 +124117,95558,great acting,1362115390 +124117,95558,independence,1362117102 +124117,95558,Quvenzhane Wallis,1362115280 +124117,95558,shaky camera,1362115289 +124117,95875,agent/assassin with false memories/amnesia,1358224534 +124117,95875,bad guys can't aim,1348538726 +124117,95875,bad science,1348539194 +124117,95875,check your brain at the door,1348544783 +124117,95875,Colin Farrell,1348537443 +124117,95875,Kate Beckinsale,1348537687 +124117,95875,lens flares,1348543852 +124117,95875,Nudity (Topless),1348537801 +124117,95875,Philip K. Dick,1348537435 +124117,95875,plot holes,1348537536 +124117,95875,robots,1348538524 +124117,95875,Sci-fi,1348537551 +124117,95875,the whole movie is just one long chase scene,1348537515 +124117,95875,unlikeable characters,1348537590 +124117,95875,unnecessary remake,1348538608 +124117,95875,wrong accents,1348542995 +124117,96079,atmospheric,1365059066 +124117,96079,beautifully filmed,1365060946 +124117,96079,Daniel Craig,1365059099 +124117,96079,great cinematography,1365060932 +124117,96079,Javier Bardem,1365059095 +124117,96079,locations,1365060961 +124117,96079,nostalgic,1365059144 +124117,96079,Ralph Fiennes,1365061200 +124117,96079,Sam Mendes,1365060923 +124117,96079,Scotland,1365059107 +124117,96079,trains,1365061181 +124117,96131,1940s,1344895018 +124117,96131,action,1344894917 +124117,96131,retro-futuristic,1344894886 +124117,96131,superhero,1344894843 +124117,96131,Takeshi Kaneshiro,1344894813 +124117,96144,aliens,1344754147 +124117,96144,B-movie,1344754445 +124117,96144,Japan,1379651035 +124117,96144,unintentionally funny,1379651022 +124117,96146,Chuck Norris,1408302263 +124117,96146,flashback overload,1408302263 +124117,96146,not enough action,1408302262 +124117,96146,slow paced,1408302263 +124117,96193,gadgets,1345754117 +124117,96193,robots,1345754164 +124117,96193,sci-fi,1345754058 +124117,96193,Serial,1345754011 +124117,96193,space travel,1345754083 +124117,96417,awkward pacing,1350970597 +124117,96417,bicycling,1350333042 +124117,96417,bike messengers,1350333083 +124117,96417,bikers,1350333031 +124117,96417,corruption,1350333001 +124117,96417,Dania Ramirez,1350333209 +124117,96417,Joseph Gordon-Levitt,1350333216 +124117,96417,no brakes,1350333687 +124117,96417,police corruption,1350333004 +124117,96545,Gilbert & Sullivan,1347073249 +124117,96545,Kenny Baker,1347073429 +124117,96545,Martyn Green,1347073217 +124117,96545,musical,1347073458 +124117,96545,the play was better,1347073342 +124117,96598,reunion,1347074355 +124117,96598,Robert Conrad,1347074398 +124117,96598,Ross Martin,1347074414 +124117,96598,secret service,1347074372 +124117,96598,steampunk,1347074328 +124117,96598,western,1347074438 +124117,96610,Bruce Willis,1407743136 +124117,96610,dystopia,1407742471 +124117,96610,Nudity (Topless),1407742504 +124117,96610,time travel,1407743126 +124117,96610,unlikeable characters,1407743101 +124117,96730,reunion,1347685594 +124117,96730,Robert Conrad,1347685626 +124117,96730,Ross Martin,1347685635 +124117,96730,secret service,1347685664 +124117,96730,steampunk,1347685606 +124117,96730,western,1347685654 +124117,96861,contrived,1375169767 +124117,96861,Famke Janssen,1375169519 +124117,96861,Istanbul,1375169733 +124117,96861,Liam Neeson,1375169713 +124117,96861,Maggie Grace,1375169711 +124117,96861,pointless,1375169698 +124117,96861,torture,1375169657 +124117,96861,unnecessary sequel,1375169534 +124117,96960,boy genius,1348792379 +124117,96960,professor,1348792437 +124117,96960,robot,1348792411 +124117,96960,sci-fi,1348792420 +124117,97029,Japan,1432406836 +124117,97031,aliens,1389759427 +124117,97031,flying saucers,1389759342 +124117,97031,great title,1389759494 +124117,97031,monster:blob,1389759384 +124117,97031,plane crash,1389759305 +124117,97031,vampires,1389759288 +124117,97035,bats,1394427081 +124117,97035,bizarre deaths,1394426950 +124117,97035,gruesome deaths,1394426637 +124117,97035,it just keeps getting weirder,1394426833 +124117,97035,Japanese horror,1394426745 +124117,97035,Nudity (Topless),1394426437 +124117,97035,skeletons,1394426673 +124117,97035,vengeance,1394426448 +124117,97035,weird,1394426428 +124117,97188,Ethan Hawke,1400913944 +124117,97188,evil deity,1400914633 +124117,97188,ghost children,1400914618 +124117,97188,jump scares,1400913482 +124117,97188,nagging wife,1400914784 +124117,97188,obnoxious kid,1400914600 +124117,97188,scary,1400913506 +124117,97188,unnerving,1400914170 +124117,97188,writer,1400913535 +124117,97230,David Fincher,1368924453 +124117,97230,F Bomb,1368603530 +124117,97230,Film Theory & Criticism,1368602568 +124117,97230,interviews,1368602624 +124117,97230,James Cameron,1368602649 +124117,97230,movie business,1368603180 +124117,97230,no conclusion,1376075893 +124117,97242,Daleks,1349846434 +124117,97242,Doctor Who,1349846410 +124117,97242,Peter Cushing,1385365869 +124117,97242,seen,1385365863 +124117,97242,time travel,1349846458 +124117,97246,Charlie Chan,1349856229 +124117,97246,Egypt,1349856333 +124117,97246,mystery,1349856492 +124117,97246,stereotypical black comic relief,1349856209 +124117,97250,Charlie Chan,1349857729 +124117,97250,Ray Milland,1349857678 +124117,97283,intentionally bad,1382321196 +124117,97283,monster,1382321216 +124117,97283,not funny,1349933566 +124117,97283,Roger Corman,1349933594 +124117,97296,newlyweds,1349993707 +124117,97296,skulls,1350022366 +124117,97304,Ben Affleck,1365058414 +124117,97304,Hollywood,1365058545 +124117,97304,R,1365058507 +124117,97304,R:language,1365058429 +124117,97304,revolution,1374644794 +124117,97457,levitation,1367130242 +124117,97457,Maximilian Schell,1350286695 +124117,97457,Ricardo Montalban,1350286708 +124117,97457,saint,1405146764 +124117,97457,seen,1385713404 +124117,97709,Chinese landscapes,1363585348 +124117,97709,fun,1363585940 +124117,97709,machines,1363585368 +124117,97709,martial arts,1350933287 +124117,97709,steampunk,1350933358 +124117,97709,strange,1363585393 +124117,97709,villain is a pushover,1363585855 +124117,97713,Kaiju,1384192558 +124117,97713,space,1388731235 +124117,97713,space travel,1388731221 +124117,97713,Tokyo,1388731247 +124117,97742,cliche,1381383881 +124117,97742,finger injuries,1381383865 +124117,97752,Doona Bae,1424729141 +124117,97752,Hugh Grant,1424729125 +124117,97752,Jim Broadbent,1424729187 +124117,97752,R,1385869415 +124117,97752,Tom Hanks,1424729150 +124117,97752,yellowface,1385869433 +124117,97913,arbitrary rules,1362692144 +124117,97913,cameos,1379620153 +124117,97913,crude humor,1360724620 +124117,97913,fun,1360725072 +124117,97913,good soundtrack,1362526398 +124117,97913,heart ripped out,1360724690 +124117,97913,obnoxious kid,1362526306 +124117,97913,redemption,1360724641 +124117,97913,Sarah Silverman,1362526360 +124117,97913,Turbo-tastic!,1360774531 +124117,97913,video games,1360724922 +124117,97938,amazing cgi,1365570457 +124117,97938,animals die :(,1365569182 +124117,97938,atheism,1365629519 +124117,97938,beautiful,1365568990 +124117,97938,deceptive,1404656338 +124117,97938,depressing,1379313115 +124117,97938,great photograpy,1365568969 +124117,97938,not for kids,1379313165 +124117,97938,pretentious,1379313242 +124117,97938,pseudo-philosophical,1365569457 +124117,97938,self-deception,1365569636 +124117,97938,stunning visual effects,1365570516 +124117,97938,stupid ending,1379313280 +124117,97938,vegetarians,1365569792 +124117,97938,visually appealing,1365568974 +124117,98069,Shintaro Katsu,1387298291 +124117,98069,Toshiro Mifune,1387298318 +124117,98154,historically inaccurate,1358013499 +124117,98154,Tommy Lee Jones,1358013612 +124117,98239,Adrianne Palicki,1358837967 +124117,98239,better than expected,1379313314 +124117,98239,Chris Hemsworth,1358837208 +124117,98239,Hollywood hates North Korea,1403422679 +124117,98239,implausible,1358838431 +124117,98239,invasion,1358838620 +124117,98239,Josh Hutcherson,1358837210 +124117,98239,Josh Peck,1358837989 +124117,98239,Marine Corps,1358838561 +124117,98239,occupation,1358838598 +124117,98499,bad dub,1380354640 +124117,98499,dub adds swearing,1380353217 +124117,98499,Emotional Kung Fu,1380353594 +124117,98499,funny,1380354137 +124117,98499,Jackie Chan,1380353161 +124117,98604,1960s,1379052866 +124117,98604,anime,1354643420 +124117,98604,beautiful,1379053647 +124117,98604,Goro Miyazaki,1379053537 +124117,98604,great soundtrack,1379053448 +124117,98604,romance,1379052816 +124117,98604,school life,1379054026 +124117,98604,screenwriter:Hayao Miyazaki,1402384795 +124117,98604,Studio Ghibli,1354643431 +124117,98607,aliens,1380610885 +124117,98607,anime,1354644476 +124117,98607,cars,1380610878 +124117,98607,fun,1380609667 +124117,98607,great concept,1380610986 +124117,98607,mafia,1380610866 +124117,98607,no plot,1380611026 +124117,98607,Nudity (Animated),1380609462 +124117,98607,over the top,1380610599 +124117,98607,racing,1354644492 +124117,98607,sci-fi,1354644500 +124117,98607,stylized,1380749720 +124117,98607,unanswered questions,1380611254 +124117,98621,anime,1354659287 +124117,98621,sci-fi,1354659294 +124117,98621,seen,1402386115 +124117,98809,48 fps,1355866245 +124117,98809,author:J. R. R. Tolkein,1355866254 +124117,98809,crude humor,1355869864 +124117,98809,exaggerated,1372138756 +124117,98809,family movie,1355869969 +124117,98809,fantasy,1362945193 +124117,98809,fantasy world,1355866266 +124117,98809,Gollum,1355869908 +124117,98809,Martin Freeman,1355869930 +124117,98809,Peter Jackson,1358303613 +124117,98809,Tolkien,1358303581 +124117,98809,trolls,1397540729 +124117,99007,great narration,1405817202 +124117,99007,Nicholas Hoult,1405816981 +124117,99007,post-apocalyptic,1405817256 +124117,99007,zombies,1405817229 +124117,99114,bounty hunter(s),1391761253 +124117,99143,acrobat,1366271681 +124117,99143,circus,1366271694 +124117,99143,clowns,1366271711 +124117,99143,dance,1366271670 +124117,99143,surreal,1366271601 +124117,99143,The Beatles,1366271571 +124117,99143,very little dialogue,1366271754 +124117,99149,Anne Hathaway,1356497642 +124117,99149,France,1356497577 +124117,99149,Hugh Jackman,1356497536 +124117,99149,musical,1356497528 +124117,99149,revolution,1359360025 +124117,99149,Russell Crowe,1356497652 +124117,99149,Samantha Barks,1357691020 +124117,99149,shaky camera,1357690892 +124117,99149,singing,1359360001 +124117,99487,game,1379741547 +124117,99487,gore,1379741386 +124117,99487,James Remar,1379741169 +124117,99487,low budget,1379741725 +124117,99487,murder,1379741825 +124117,99487,Shadow is the only heroic character,1379741478 +124117,99487,superhero,1379749063 +124117,99487,unheroic heroes,1379741130 +124117,99820,anime,1358221651 +124117,99820,flashback overload,1358221794 +124117,99820,Pokemon,1358221500 +124117,99820,seen,1405314567 +124117,99822,anime,1358222369 +124117,99822,flashback overload,1358222360 +124117,99822,Pokemon,1358221571 +124117,99822,seen,1405314574 +124117,100010,mockbuster,1358836986 +124117,100163,Gemma Arterton,1390772469 +124117,100163,Jeremy Renner,1390772471 +124117,100163,R,1390772495 +124117,100205,aliens,1383877018 +124117,100205,Anguirus,1382156676 +124117,100205,cockroaches,1383877038 +124117,100205,Gigan,1382156684 +124117,100205,Godzilla,1382156418 +124117,100205,Godzilla Universe,1382944538 +124117,100205,Kaiju,1382602658 +124117,100205,King Ghidorah,1383876969 +124117,100205,talking monsters,1383876992 +124117,100205,Toho,1382602663 +124117,100302,beautiful,1379518539 +124117,100302,forbidden love,1379519268 +124117,100302,suspension of disbelief required,1379519032 +124117,100469,gadgets,1399613901 +124117,100469,Jackie Chan,1399610855 +124117,100469,pirates,1399610973 +124117,100469,treasure hunt,1399610999 +124117,100509,fantasy,1403564003 +124117,101025,audience intelligence underestimated,1375850886 +124117,101025,cliche,1367903266 +124117,101025,crude humor,1367903183 +124117,101025,fairy tale,1367903281 +124117,101025,fantasy,1367903201 +124117,101025,giants,1367903310 +124117,101074,better than the remake,1362269718 +124117,101074,Bing Crosby,1362269653 +124117,101074,Disney,1362269757 +124117,101074,Scary Movies To See on Halloween,1362269960 +124117,101074,short,1362269774 +124117,101074,very funny,1362269931 +124117,101076,Byung-hun Lee,1370319371 +124117,101076,ninja,1370319827 +124117,101076,not enough Bruce Willis,1370319946 +124117,101076,politically correct,1370319750 +124117,101112,eye candy,1369708212 +124117,101112,Fantasy,1369707678 +124117,101112,James Franco,1369707682 +124117,101112,magician,1386733284 +124117,101112,Mila Kunis,1369707702 +124117,101112,Sam Raimi,1369707711 +124117,101112,strong women,1369709638 +124117,101182,Bill Bixby,1362984856 +124117,101182,blind badass,1380872644 +124117,101182,blindness,1362898157 +124117,101182,Daredevil,1362897980 +124117,101182,Hulk,1362898068 +124117,101182,Rex Smith,1362897949 +124117,101182,superhero,1362898000 +124117,101362,high body count,1403420943 +124117,101362,Hollywood hates North Korea,1403422570 +124117,101362,meaningless violence,1403420965 +124117,101362,torture,1403422258 +124117,101640,Bollywood,1392746419 +124117,101640,drugs,1381722135 +124117,101640,Priyanka Chopra,1381720977 +124117,101640,remake,1381722148 +124117,101640,twist ending,1381722100 +124117,101640,unlikeable characters,1382042810 +124117,101708,anime,1365150696 +124117,101708,cyborgs,1365150722 +124117,101708,Japan,1365150703 +124117,101710,courtroom,1365151359 +124117,101726,caveman,1365204328 +124117,101726,dinosaurs,1365203867 +124117,101726,island,1365203915 +124117,101726,kinda stupid,1365204610 +124117,101726,silly title,1365204375 +124117,101747,Godzilla Universe,1382945186 +124117,101747,good versus evil,1382455638 +124117,101747,Japan,1365305614 +124117,101747,Kaiju,1365306778 +124117,101747,Kumi Mizuno,1365305516 +124117,101747,Russ Tamblyn,1365306171 +124117,101747,Toho,1385784166 +124117,101864,Tom Cruise,1370405243 +124117,101864,twists & turns,1370405015 +124117,101962,Mamoru Hosoda,1389334558 +124117,101962,nature,1407743399 +124117,101962,raising children,1389334580 +124117,101962,rural Japan,1389334537 +124117,101962,single mother,1389334511 +124117,101962,wolves,1389334505 +124117,101967,alien invasion,1366259814 +124117,101967,flying saucers,1366259906 +124117,101967,Japan,1366259824 +124117,101967,long,1366259833 +124117,101967,mind control,1366259977 +124117,101967,slow,1366259839 +124117,101967,space station,1366259955 +124117,101967,spaceships,1366259862 +124117,101967,Toho,1383020540 +124117,101989,King Kong wannabe,1366350822 +124117,101989,monster:giant gorilla,1378432009 +124117,101989,murder,1366351116 +124117,101989,slow,1366432254 +124117,101991,Akihiko Hirata,1383698005 +124117,101991,H-bomb,1366351978 +124117,101991,horror,1366351922 +124117,101991,Ishiro Honda,1366351886 +124117,101991,Japan,1366351941 +124117,101991,monster,1383698025 +124117,101991,police investigation,1366351811 +124117,101991,Toho,1382750012 +124117,102025,itching powder,1366506804 +124117,102025,Kaiju,1366506679 +124117,102025,Korean,1366506652 +124117,102025,monster,1366506818 +124117,102025,newlyweds,1366506837 +124117,102025,obnoxious kid,1366506620 +124117,102047,airplane,1366562983 +124117,102047,Bette Davis,1366562999 +124117,102047,comedy,1366562993 +124117,102047,James Cagney,1366562941 +124117,102047,romance,1366563013 +124117,102049,Bud Abbott,1366563862 +124117,102049,funny,1366563897 +124117,102049,Lou Costello,1366563869 +124117,102049,Mexico,1366563884 +124117,102088,artsy,1378681576 +124117,102088,decreased frame rate,1378675431 +124117,102088,Ip Man,1378675528 +124117,102088,just enough story to connect the action scenes,1378682436 +124117,102088,martial arts,1378675563 +124117,102088,meandering,1378675473 +124117,102088,more Gong Er than Ip Man,1378683073 +124117,102088,style over substance,1378675543 +124117,102088,stylized,1378683556 +124117,102125,action,1367638682 +124117,102125,action packed,1367982282 +124117,102125,deceptive trailers,1411506777 +124117,102125,Don Cheadle,1368084468 +124117,102125,funny,1367638741 +124117,102125,hurts itself trying to be PC,1417719420 +124117,102125,improved sequel,1367638830 +124117,102125,Iron Man,1367686368 +124117,102125,Mandarin twist,1367638127 +124117,102125,Marvel Cinematic Universe,1367613832 +124117,102125,not afraid to take risks,1367637951 +124117,102125,PG-13,1367982168 +124117,102125,Robert Downey Jr.,1367613814 +124117,102125,Shane Black,1367638857 +124117,102125,snappy banter,1367623135 +124117,102125,superhero,1367613818 +124117,102125,terrorism,1367613891 +124117,102125,too worried it will offend people,1375650060 +124117,102156,alien invasion,1367127949 +124117,102156,aliens,1367127941 +124117,102156,Mars,1367128020 +124117,102156,Republic serial,1367127863 +124117,102156,Serial,1367127763 +124117,102180,all-star cast,1367201388 +124117,102180,Bob Hope,1367201378 +124117,102180,corny,1367201493 +124117,102180,Lon Chaney Jr.,1367201404 +124117,102180,Venice,1367201506 +124117,102180,Vincent Price,1367201422 +124117,102327,Empire State Building,1367903084 +124117,102407,1920s,1368247665 +124117,102407,anachronistic music,1368901210 +124117,102407,beautiful,1368247727 +124117,102407,Carey Mulligan,1368247382 +124117,102407,F. Scott Fitzgerald,1368247602 +124117,102407,humanizes Daisy,1374644282 +124117,102407,Leonardo DiCaprio,1368247370 +124117,102407,Tobey Maguire,1368247416 +124117,102445,Bechdel Test:Pass,1372285431 +124117,102445,Benedict Cumberbatch,1372285531 +124117,102445,derivative,1372285384 +124117,102445,fast paced,1372362186 +124117,102445,gratuitous underwear scene,1395463170 +124117,102445,inferior sequel,1382927702 +124117,102445,lens flares,1382930183 +124117,102445,male gaze,1382930142 +124117,102445,ruined the franchise,1397535909 +124117,102445,Simon Pegg,1372285338 +124117,102445,unoriginal,1372285371 +124117,102735,1970s,1369436080 +124117,102735,Captain America,1369436516 +124117,102735,easily confused with other movie(s) (title),1369436264 +124117,102735,made for TV,1369435850 +124117,102735,slow,1369435826 +124117,102735,superhero,1369435841 +124117,102749,1970s,1369458109 +124117,102749,aging,1369458167 +124117,102749,Captain America,1369458191 +124117,102749,Christopher Lee,1369458145 +124117,102749,made for TV,1369458101 +124117,102749,superhero,1369458176 +124117,102749,terrorism,1369458217 +124117,102880,aliens,1373336536 +124117,102880,animal attacks,1373336493 +124117,102880,animals die :(,1373336499 +124117,102880,doesn't add anything new to the genre,1377643794 +124117,102880,father-son relationship,1373336261 +124117,102880,fear,1373336303 +124117,102903,CGI instead of real tricks,1377586501 +124117,102903,cheats,1377583069 +124117,102903,Dave Franco,1377581700 +124117,102903,good music,1377586451 +124117,102903,humiliation,1377581677 +124117,102903,Jesse Eisenberg,1377581636 +124117,102903,Mark Ruffalo,1377581640 +124117,102903,Michael Caine,1377582851 +124117,102903,Morgan Freeman,1377586611 +124117,102903,overcomplicated,1377586590 +124117,102903,pseudo-intelligent,1377583346 +124117,102903,Robin Hood wannabe,1377585496 +124117,102903,shaky camera,1377586582 +124117,102903,smug jerks,1377584455 +124117,102903,twist creates plot holes,1379313469 +124117,102903,Woody Harrelson,1377582860 +124117,103042,alien invasion,1376373407 +124117,103042,cheesy,1398751495 +124117,103042,collateral damage,1376370991 +124117,103042,contrived romance,1376367706 +124117,103042,David S. Goyer,1376371898 +124117,103042,first contact,1398751520 +124117,103042,flashback overload,1376372300 +124117,103042,forced poignancy,1376372398 +124117,103042,Kevin Costner,1376367152 +124117,103042,mixed messages,1376372274 +124117,103042,product placement,1376367028 +124117,103042,Russell Crowe,1376372626 +124117,103042,shaky camera,1376370053 +124117,103042,superhero,1376366918 +124117,103042,Zack Snyder,1376367114 +124117,103141,Bechdel Test:Pass,1381029452 +124117,103190,anime,1371431502 +124117,103190,bittersweet,1371432102 +124117,103190,CGI,1371431704 +124117,103190,fantasy,1371431582 +124117,103190,father daughter relationship,1371432079 +124117,103190,Japan,1371431491 +124117,103190,loss,1371497949 +124117,103190,magic,1371431609 +124117,103190,memories,1371431522 +124117,103190,mirrors,1371431728 +124117,103190,toys,1371804250 +124117,103228,Burn Gorman,1401383107 +124117,103228,grunge,1401383249 +124117,103228,Guillermo del Toro,1374006969 +124117,103228,Kaiju,1374006944 +124117,103228,lame title,1382043883 +124117,103228,Mako Mori Test:Pass,1384500840 +124117,103228,Mana Ashida,1401383085 +124117,103228,mecha,1374120022 +124117,103228,Rinko Kikuchi,1374119879 +124117,103228,Ron Perlman,1374006932 +124117,103228,straightforward,1379313647 +124117,103228,stylized,1401383203 +124117,103228,visually appealing,1379313578 +124117,103249,Brad Pitt,1372535391 +124117,103249,chase scenes,1372535481 +124117,103249,globetrotting,1372535578 +124117,103324,addiction,1406691979 +124117,103324,dull,1406692104 +124117,103324,James Griffith,1406692277 +124117,103324,more like a werewolf,1406692349 +124117,103324,predictable,1406692073 +124117,103324,skip it,1406692613 +124117,103324,slow,1406692119 +124117,103324,vampire in name only,1406692154 +124117,103339,anti-military,1402649599 +124117,103339,Die Hard wannabe,1402649623 +124117,103339,fun,1403421282 +124117,103339,funny,1403421282 +124117,103339,Jamie Foxx,1402649661 +124117,103384,Armie Hammer,1397159933 +124117,103384,ashamed of source material,1378192642 +124117,103384,cannibalism,1378195977 +124117,103384,crude humor,1378198131 +124117,103384,gay stereotypes,1378254331 +124117,103384,genocide,1378195734 +124117,103384,Gore Verbinski,1378192511 +124117,103384,gritty,1378254524 +124117,103384,hero is a wimp,1378192921 +124117,103384,inconsistent tone,1378489836 +124117,103384,Johnny Depp,1378192508 +124117,103384,Native American stereotypes,1397159910 +124117,103384,redface,1378194704 +124117,103384,ridicules heroes,1397159822 +124117,103384,social commentary,1378197567 +124117,103384,stereotypes,1378192666 +124117,103384,the original is better,1378254833 +124117,103384,trains,1378254488 +124117,103384,unbelievably evil villain cliche,1397160540 +124117,103384,unoriginal,1378196657 +124117,103651,inferior sequel,1379221360 +124117,103651,machines,1374221531 +124117,103651,martial arts,1374221475 +124117,103651,Peter Stormare,1379221661 +124117,103651,steampunk,1374221470 +124117,103688,1970s,1401263001 +124117,103688,cute kids,1401262799 +124117,103688,paranormal investigators,1401263057 +124117,103688,Patrick Wilson,1401262820 +124117,103772,contrived romance,1380003686 +124117,103772,Hugh Jackman,1374814474 +124117,103772,Japan,1374814480 +124117,103772,yakuza,1386742029 +124117,104017,Captain America,1400791071 +124117,104017,El Santo,1400791148 +124117,104017,Spider-Man,1400791089 +124117,104017,superhero,1400791034 +124117,104074,Golden Fleece,1375903404 +124117,104074,Greek mythology,1375903231 +124117,104074,monsters,1375903677 +124117,104074,Nathan Fillion,1375903708 +124117,104074,not faithful to the book,1375903647 +124117,104099,anime,1376004206 +124117,104099,Lupin III,1376003980 +124117,104099,Nudity (Animated),1377109788 +124117,104099,Nudity (Topless),1376003961 +124117,104132,Africa,1376188364 +124117,104132,greed,1376188344 +124117,104132,Sam Katzman,1376195849 +124117,104132,treasure hunt,1376188136 +124117,104132,zombies,1376188125 +124117,104135,airplane,1376196680 +124117,104135,Kaiju,1376196787 +124117,104135,Sam Katzman,1376196304 +124117,104135,so bad it's good,1376196289 +124117,104135,technobabble,1376196598 +124117,104139,Sam Katzman,1376258760 +124117,104139,so bad it's almost good,1376258726 +124117,104139,werewolf,1376258657 +124117,104153,annoying kid,1376274935 +124117,104153,police,1376275087 +124117,104153,Richard Denning,1376274907 +124117,104153,Sam Katzman,1376274888 +124117,104233,Bob Hope,1376636392 +124117,104243,bad language,1400909791 +124117,104243,bounty hunter(s),1396927843 +124117,104243,cutesy pet,1400910388 +124117,104243,Dave Bautista,1400909424 +124117,104243,David Twohy,1400913246 +124117,104243,dog,1400909498 +124117,104243,gore,1400910404 +124117,104243,Katee Sackhoff,1400909517 +124117,104243,LGBT stereotypes,1400969087 +124117,104243,Nudity (Topless),1400912718 +124117,104243,Rape Culture,1400912857 +124117,104243,slow,1400909619 +124117,104243,Vin Diesel,1400909623 +124117,104243,women as sexual objects,1400911806 +124117,104247,baby,1387517873 +124117,104247,blind badass,1387517891 +124117,104247,Shintaro Katsu,1387517974 +124117,104247,Zatoichi,1387517879 +124117,104283,anime,1376637556 +124117,104283,dreams,1393824193 +124117,104283,fighter planes,1393825659 +124117,104283,flying,1393824181 +124117,104283,Hayao Miyazaki,1376637259 +124117,104283,Japan,1376637582 +124117,104283,Joseph Gordon-Levitt,1393824683 +124117,104283,seen,1396484696 +124117,104283,Studio Ghibli,1376637562 +124117,104283,World War II,1376637571 +124117,104335,Baba Yaga,1376880510 +124117,104335,dragon,1376880561 +124117,104335,fairy tale,1376880480 +124117,104335,Russian,1376881495 +124117,104698,awkward dialogue,1378436165 +124117,104698,great title,1378436551 +124117,104698,island,1378430100 +124117,104698,monster:tree,1378430477 +124117,104698,so bad it's good,1378430020 +124117,104908,afterlife,1398567652 +124117,104908,possession,1398567689 +124117,104908,serial killer,1398567570 +124117,104969,boxing,1379465545 +124117,104969,doesn't show the fights,1379465995 +124117,104969,Harold Lloyd,1379466376 +124117,104969,horses,1379466442 +124117,104969,milkman,1379466021 +124117,105077,corruption,1379908800 +124117,105077,dated slang,1379908968 +124117,105077,election,1379908913 +124117,105077,Harold Lloyd,1379908707 +124117,105077,racial stereotypes,1379910049 +124117,105077,racism,1379908846 +124117,105077,strippers,1379909827 +124117,105077,Una Merkel,1379908764 +124117,105165,anti-subterranea,1380250488 +124117,105165,decline of civilization,1380250083 +124117,105165,Hugh Marlowe,1380249235 +124117,105165,mutants,1380250979 +124117,105165,post-apocalyptic,1380249263 +124117,105165,Rod Taylor,1380249245 +124117,105165,time travel,1380250794 +124117,105178,alien invasion,1380259890 +124117,105178,aliens,1380259882 +124117,105178,monster:giant insect,1387083056 +124117,105178,monster:giant lizard,1390772302 +124117,105178,Peter Graves,1380259755 +124117,105178,saving the world in your PJs,1380260738 +124117,105178,slow,1380260844 +124117,105178,so bad it's good,1380259732 +124117,105181,great title,1380261251 +124117,105181,monster,1380261271 +124117,105181,scary,1380261260 +124117,105314,blind badass,1380870749 +124117,105314,Disney,1393314254 +124117,105314,Disney World Cinema,1380872190 +124117,105314,fun,1380870846 +124117,105314,India,1380871338 +124117,105314,magic,1380870964 +124117,105314,prehensile hair,1380870941 +124117,105314,Siddharth,1380870835 +124117,105314,snakes,1380871277 +124117,105314,sword fight,1380873651 +124117,105599,aquaphobia,1381982974 +124117,105599,Bollywood,1392746523 +124117,105599,clones,1381991964 +124117,105599,Kay Kay Menon,1381982254 +124117,105599,Priyanka Chopra,1381982284 +124117,105599,seen,1386479757 +124117,105599,slow motion,1381987421 +124117,105599,The Chosen One,1381982344 +124117,105599,villain steals the show,1381982225 +124117,105601,adultery,1381982595 +124117,105601,An Inner Sanctum Mystery,1381982691 +124117,105601,annoying detective,1382042402 +124117,105601,deceptive title,1382042542 +124117,105601,guilt,1382042420 +124117,105601,hypnosis,1381982707 +124117,105601,J. Carrol Naish,1381982554 +124117,105601,Lon Chaney Jr.,1381982569 +124117,105601,unlikeable characters,1381982520 +124117,105616,An Inner Sanctum Mystery,1382042197 +124117,105616,annoying detective,1382042299 +124117,105616,deceptive title,1382042462 +124117,105616,guilt,1382042313 +124117,105616,hypnosis,1382041745 +124117,105616,Lon Chaney Jr.,1382042209 +124117,105616,villain has no motive,1382043017 +124117,105616,wax museum,1382042185 +124117,105659,An Inner Sanctum Mystery,1382135279 +124117,105659,Evelyn Ankers,1382135300 +124117,105659,jealousy,1382135334 +124117,105659,Lon Chaney Jr.,1382135289 +124117,105659,skepticism,1382135363 +124117,105659,superstition,1382135664 +124117,105659,Voodoo,1382135428 +124117,105772,annoying characters,1382399350 +124117,105772,B-movie,1382399072 +124117,105772,great title,1382399251 +124117,105772,monster:giant spider,1382399237 +124117,105772,no explanation,1382399457 +124117,105772,teenagers,1382399495 +124117,105776,anti-gravity,1382399907 +124117,105776,Edison Studios,1382400014 +124117,105776,H.G. Wells,1382400058 +124117,105776,Mars,1382400030 +124117,105776,short,1382400018 +124117,105776,silent movie,1382400242 +124117,105796,Gene Autry,1402236903 +124117,105803,Baragon,1382470420 +124117,105803,Frankenstein's monster,1382470625 +124117,105803,Godzilla Universe,1382945163 +124117,105803,great beginning,1382470848 +124117,105803,Kaiju,1382470458 +124117,105803,Nick Adams,1401687241 +124117,105803,Toho,1382470830 +124117,105803,World War II,1382470880 +124117,105811,Godzilla,1382489127 +124117,105811,Godzilla Universe,1382944527 +124117,105811,Kaiju,1382489136 +124117,105811,monster:giant insect,1382598232 +124117,105811,Toho,1382489146 +124117,105813,Gigan,1397184806 +124117,105813,Godzilla,1382489383 +124117,105813,Godzilla Universe,1382944666 +124117,105813,Kaiju,1382489395 +124117,105813,Megalon,1397184815 +124117,105813,Toho,1382489388 +124117,105813,undersea kingdom,1397874173 +124117,105827,Desghidorah,1409104861 +124117,105827,environmental,1409104904 +124117,105827,Godzilla Universe,1382945021 +124117,105827,good use for a tie,1409202871 +124117,105827,Kaiju,1382569716 +124117,105827,Mothra,1382569710 +124117,105827,preachy,1409104918 +124117,105827,Toho,1382569772 +124117,105837,Godzilla,1382582149 +124117,105837,Godzilla Universe,1382944560 +124117,105837,Kaiju,1382582157 +124117,105837,mecha,1400699093 +124117,105837,Toho,1382582162 +124117,105844,Chiwetel Ejiofor,1384647780 +124117,105844,cliche villain,1384663291 +124117,105936,Godzilla Universe,1382945763 +124117,105936,Kaiju,1382945770 +124117,105936,Toho,1382945776 +124117,105938,Akihiko Hirata,1392008745 +124117,105938,Godzilla Universe,1382946120 +124117,105938,Kaiju,1382946127 +124117,105938,Toho,1382946134 +124117,105938,Varan,1392008698 +124117,105959,An Inner Sanctum Mystery,1383064764 +124117,105959,Lon Chaney Jr.,1383064530 +124117,105959,murder,1383064778 +124117,105959,seance,1383064851 +124117,105959,strange characters,1383064596 +124117,105961,Godzilla Universe,1383065241 +124117,105961,Kaiju,1383065165 +124117,105961,Mothra,1383065148 +124117,105961,Toho,1383065257 +124117,105963,Godzilla Universe,1383065499 +124117,105963,Kaiju,1383065511 +124117,105963,Mothra,1383065486 +124117,105963,time travel,1383065517 +124117,105963,Toho,1383065505 +124117,106002,bullying,1384290985 +124117,106002,cliche characters,1384291055 +124117,106002,Harrison Ford,1384290921 +124117,106002,overpopulation,1384313835 +124117,106002,predictable,1384290905 +124117,106068,historical,1383601340 +124117,106068,Judaism,1383601289 +124117,106068,Nazis,1383601156 +124117,106068,seen,1398391250 +124117,106068,World War II,1383545546 +124117,106072,Chris Hemsworth,1383951180 +124117,106072,Jaimie Alexander,1383951190 +124117,106072,Marvel Cinematic Universe,1383951109 +124117,106072,superhero,1383951223 +124117,106072,Tom Hiddleston,1383951147 +124117,106094,Godzilla,1392358977 +124117,106094,Godzilla Universe,1383634870 +124117,106094,Hiroshi Koizumi,1392359221 +124117,106094,Kaiju,1383634897 +124117,106094,mecha,1400699159 +124117,106094,MechaGodzilla,1387345849 +124117,106094,Mothra,1383634889 +124117,106094,Shobijin,1392359647 +124117,106094,Toho,1383634903 +124117,106094,Tokyo,1383634914 +124117,106243,Godzilla,1384192218 +124117,106243,Godzilla Universe,1384192237 +124117,106243,Kaiju,1384192256 +124117,106243,mecha,1400699033 +124117,106243,MechaGodzilla,1387345021 +124117,106243,Toho,1384192250 +124117,106245,Akira Takarada,1384193010 +124117,106245,Ishiro Honda,1384192849 +124117,106441,books,1391494345 +124117,106441,Geoffrey Rush,1391494234 +124117,106441,Nazis,1391494371 +124117,106441,Sophie Nelisse,1391494201 +124117,106441,writer,1391494331 +124117,106489,dragon,1388270027 +124117,106489,Evangeline Lilly,1388268430 +124117,106489,love triangle,1388268814 +124117,106489,not enough Bilbo,1388293529 +124117,106489,not true to the book,1388293633 +124117,106489,Stephen Fry,1388268534 +124117,106491,costumes,1390370802 +124117,106491,false advertising,1390369987 +124117,106491,Hiroyuki Sanada,1404489892 +124117,106491,Keanu Reeves,1390367442 +124117,106491,pretentious,1404490014 +124117,106561,action packed,1396073314 +124117,106561,babies in peril,1396073544 +124117,106561,Hrithik Roshan,1385333942 +124117,106561,shape shifter,1396073707 +124117,106561,superhero,1385333880 +124117,106561,virus,1396073682 +124117,106565,experimental,1385350251 +124117,106565,funny,1385351084 +124117,106565,Nobuhiko Obayashi,1385350202 +124117,106565,seen,1385365215 +124117,106565,short,1385350095 +124117,106565,vampires,1385350102 +124117,106581,Gene Autry,1402237142 +124117,106590,mockbuster,1390772450 +124117,106696,costumes,1397533216 +124117,106696,good message,1397843281 +124117,106696,great story,1397843332 +124117,106696,Jennifer Lee,1397540611 +124117,106696,not enough Elsa,1397532247 +124117,106696,sister sister relationship,1397843257 +124117,106696,sisters,1397540700 +124117,106696,some crude humor,1397538666 +124117,106696,trolls,1397539116 +124117,106698,Goemon,1393058636 +124117,106698,honorless,1393058727 +124117,106698,ninja,1393058549 +124117,106848,Gamera,1386224243 +124117,106848,Kaiju,1386224239 +124117,106850,blind badass,1386224538 +124117,106850,blindness,1387258336 +124117,106850,gang war,1386271157 +124117,106850,masseur,1386989898 +124117,106850,samurai,1386225330 +124117,106850,seen,1386224648 +124117,106850,yakuza,1386224688 +124117,106850,Zatoichi,1386224703 +124117,106852,blind badass,1386225276 +124117,106852,fugitive,1386299949 +124117,106852,seen,1386225289 +124117,106852,Zatoichi,1386225263 +124117,106906,Gamera,1386401360 +124117,106906,Japan,1386401469 +124117,106906,Kaiju,1386401369 +124117,106906,Osaka Castle,1388379537 +124117,106906,psychopath,1388379599 +124117,106922,blind badass,1386449611 +124117,106922,Japan,1386474769 +124117,106922,seen,1386449676 +124117,106922,Zatoichi,1386449603 +124117,106924,blind badass,1386449821 +124117,106924,funny moments,1386741753 +124117,106924,samurai,1386741979 +124117,106924,seen,1386449829 +124117,106924,yakuza,1386741693 +124117,106924,Zatoichi,1386449811 +124117,106998,blind badass,1386558798 +124117,106998,Japan,1386558867 +124117,106998,Nudity (Rear),1386558815 +124117,106998,seen,1386558788 +124117,106998,Zatoichi,1386558781 +124117,107081,blind badass,1386741922 +124117,107081,gang war,1386989679 +124117,107081,Japan,1386741938 +124117,107081,seen,1386741930 +124117,107081,yakuza,1386989668 +124117,107081,Zatoichi,1386741901 +124117,107159,blind badass,1386989854 +124117,107159,blood,1387072537 +124117,107159,change of tone,1387072744 +124117,107159,disjointed,1387072716 +124117,107159,seen,1386989867 +124117,107159,Zatoichi,1386989838 +124117,107161,blind badass,1386990079 +124117,107161,fireworks,1387336071 +124117,107161,Japan,1386990115 +124117,107161,prodigal son,1387336052 +124117,107161,seen,1386990088 +124117,107161,Shintaro Katsu,1387335964 +124117,107161,yakuza,1387335999 +124117,107161,Zatoichi,1386990067 +124117,107188,blind badass,1387072985 +124117,107188,New Year's Eve,1398816495 +124117,107188,seen,1387073001 +124117,107188,Zatoichi,1387072976 +124117,107262,blind badass,1387297964 +124117,107262,seen,1387297985 +124117,107262,Zatoichi,1387297953 +124117,107264,blind badass,1387298192 +124117,107264,brothel,1403500398 +124117,107264,cute kid,1403500428 +124117,107264,seen,1387298197 +124117,107264,Shintaro Katsu,1387298218 +124117,107264,Zatoichi,1387298185 +124117,107342,blind badass,1387518147 +124117,107342,seen,1387518132 +124117,107342,Zatoichi,1387518124 +124117,107344,blind badass,1387518330 +124117,107344,Japan,1387518346 +124117,107344,seen,1387518336 +124117,107344,Zatoichi,1387518322 +124117,107346,blind badass,1387518514 +124117,107346,seen,1387518521 +124117,107346,Zatoichi,1387518506 +124117,107368,not funny,1387860243 +124117,107406,Bong Joon-ho,1417634140 +124117,107406,Chris Evans,1417634078 +124117,107406,drugs,1417634382 +124117,107406,Jamie Bell,1417634237 +124117,107406,Ko Ah-Sung,1417634276 +124117,107406,post-apocalyptic,1422652380 +124117,107406,revolution,1422652427 +124117,107406,Song Kang-ho,1417634100 +124117,107406,stylish,1417634322 +124117,107406,tilda swinton,1422652364 +124117,107406,train,1417634158 +124117,107406,trains,1417634177 +124117,107662,blind badass,1391745234 +124117,107662,Zatoichi,1391745220 +124117,107737,bounty hunter(s),1391762304 +124117,108056,Pokemon,1390274392 +124117,108190,Bechdel Test:Fail,1404269321 +124117,108190,dystopia,1404269434 +124117,108190,Jai Courtney,1404269371 +124117,108190,The Chosen One,1404359110 +124117,108190,Zoe Kravitz,1404269416 +124117,108503,aliens,1390639884 +124117,108503,disgusting scenes,1390639866 +124117,108503,Gamera,1390639795 +124117,108503,Kaiju,1390639811 +124117,108503,obnoxious kid,1390639894 +124117,108503,stock footage,1390639840 +124117,108540,French,1412488421 +124117,108540,heavy-handed message,1412488302 +124117,108540,poverty,1412488389 +124117,108540,preachy,1412535448 +124117,108689,Aaron Eckhart,1403579735 +124117,108689,demons,1403579827 +124117,108689,Frankenstein's monster,1403579833 +124117,108689,Kevin Grevioux,1403578238 +124117,108689,Yvonne Strahovski,1403578194 +124117,108891,blind badass,1391745341 +124117,108891,seen,1391745347 +124117,108891,Shintaro Katsu,1391745367 +124117,108891,Zatoichi,1391745327 +124117,108893,blind badass,1391745498 +124117,108893,seen,1391745505 +124117,108893,Zatoichi,1391745492 +124117,108895,Gamera,1391759780 +124117,108895,Kaiju,1391759790 +124117,108932,Batman,1391836179 +124117,108932,colorful,1391972270 +124117,108932,fun,1391835356 +124117,108932,good cop/bad cop,1391835877 +124117,108932,Liam Neeson,1391835339 +124117,108932,live-action scenes,1391873633 +124117,108932,Morgan Freeman,1391835621 +124117,108932,robots,1391836231 +124117,108932,SPACESHIP!,1391835722 +124117,108932,The Chosen One,1394006989 +124117,109074,Butterfly,1392274364 +124117,109074,convoluted,1392274560 +124117,109074,cute animals,1392274624 +124117,109074,martial arts,1392274303 +124117,109074,secret service,1392274388 +124117,109074,seen,1392274293 +124117,109074,superpowers,1392274329 +124117,109074,zombies,1392274347 +124117,109153,Ray Harryhausen,1392570220 +124117,109153,stop motion,1392570255 +124117,109185,cats,1392524287 +124117,109185,Kenji Miyazawa,1392524257 +124117,109185,the book was better,1425802164 +124117,109185,trains,1392524273 +124117,109207,action packed,1392616684 +124117,109207,best of both worlds,1399415692 +124117,109207,China,1392618378 +124117,109207,cyborg,1392618526 +124117,109207,Danny Lee,1392617143 +124117,109207,fun,1392618114 +124117,109207,henshin hero,1392793758 +124117,109207,Kaiju,1392618417 +124117,109207,martial arts,1392618396 +124117,109207,monster,1392616712 +124117,109207,seen,1392792093 +124117,109207,superhero,1392616692 +124117,109207,tokusatsu,1392617978 +124117,109277,Bollywood,1392746213 +124117,109277,Boman Irani,1392746282 +124117,109277,Harman Baweja,1392746197 +124117,109277,reincarnation,1392746765 +124117,109277,seen,1392746176 +124117,109277,time travel,1392746237 +124117,109287,compilation of TV series,1392793869 +124117,109287,henshin hero,1392793749 +124117,109287,Kaiju,1392793897 +124117,109287,seen,1392793735 +124117,109287,superhero,1392793905 +124117,109287,Ultraman,1392794828 +124117,109319,Gamera,1392849531 +124117,109319,Japan,1392849554 +124117,109319,Kaiju,1392849545 +124117,109319,seen,1392849537 +124117,109374,Jeff Goldblum,1414090523 +124117,109374,odd sense of humor,1414094094 +124117,109374,Ralph Fiennes,1414090586 +124117,109374,visually appealing,1414090533 +124117,109446,Goemon,1393219707 +124117,109446,infanticide,1393219678 +124117,109446,Japan,1393219746 +124117,109446,ninja,1393219571 +124117,109446,seen,1393219768 +124117,109446,siege,1393219664 +124117,109446,spies,1393219737 +124117,109487,Mackenzie Foy,1415769913 +124117,109487,Matthew McConaughey,1415769914 +124117,109487,thought-provoking,1415769926 +124117,109487,wormhole,1415769928 +124117,109578,9/11 reference,1407392128 +124117,109578,Liam Neeson,1407391861 +124117,109578,Scoot McNairy,1407391872 +124117,109578,terrorism,1407392094 +124117,109578,texting,1407391916 +124117,109602,bad acting,1393733143 +124117,109602,Kaiju,1393732380 +124117,109602,Minoru Kawasaki,1393733166 +124117,109602,parody,1393732401 +124117,109602,political satire,1393732533 +124117,109602,seen,1393732387 +124117,109602,some funny parts,1393732556 +124117,109602,Susumu Kurobe,1393732373 +124117,109633,Makoto Shinkai,1394005813 +124117,109633,pretty,1394005854 +124117,109633,teacher student relationship,1394005900 +124117,109633,underwhelming,1394006058 +124117,109671,Goemon,1394210610 +124117,109671,intrigue,1394210697 +124117,109671,ninja,1394210626 +124117,109671,seen,1394210619 +124117,109769,cold case investigation,1394600416 +124117,109790,demons,1394690549 +124117,109790,Japan,1394690557 +124117,109790,seen,1394690519 +124117,109793,Eric Fleming,1409891498 +124117,109793,excessive kissing,1409891906 +124117,109793,Laurie Mitchell,1409891625 +124117,109793,offensive,1409890815 +124117,109793,planet of women,1409891367 +124117,109793,ugly = bad,1409891665 +124117,109793,Venus,1409891779 +124117,109897,compilation of TV series,1396331802 +124117,110044,biased,1413124697 +124117,110044,Gene Tierney,1413124638 +124117,110044,Glenn Langan,1413124618 +124117,110044,gothic,1413124708 +124117,110044,tough topics,1413124747 +124117,110044,Vincent Price,1413124585 +124117,110048,grandmother-grandson relationship,1395632117 +124117,110048,Harold Lloyd,1395631988 +124117,110048,manhunt,1395632067 +124117,110048,Mildred Davis,1395632019 +124117,110048,seen,1395632000 +124117,110102,action,1395879676 +124117,110102,Captain America,1395879512 +124117,110102,Chris Evans,1395879473 +124117,110102,Marvel Cinematic Universe,1395879604 +124117,110102,Scarlett Johansson,1396900841 +124117,110102,superhero,1395879486 +124117,110127,anti-war,1401777604 +124117,110127,artistic license,1401768417 +124117,110127,CGI animals,1401767854 +124117,110127,CGI timelapse,1412206424 +124117,110127,Darren Aronofsky,1401764122 +124117,110127,dysfunctional family,1401764366 +124117,110127,flood,1401777899 +124117,110127,not true to the book,1401767894 +124117,110127,preachy,1401777635 +124117,110127,psycho environmentalist,1401765405 +124117,110127,Russell Crowe,1401764113 +124117,110127,unlikeable characters,1401767247 +124117,110132,superhero,1396331750 +124117,110297,muppets,1396505455 +124117,110339,made for TV,1396755804 +124117,110339,Nazis,1396755965 +124117,110339,Ossie Davis,1396755908 +124117,110339,painting,1396755925 +124117,110339,pilot,1396756162 +124117,110339,Rod Serling,1396755795 +124117,110339,seen,1396755831 +124117,110339,unlikeable characters,1396755872 +124117,110399,Gene Autry,1402236921 +124117,110501,bloody,1406964510 +124117,110501,high body count,1406964535 +124117,110501,Iko Uwais,1406964472 +124117,110501,martial arts,1406964439 +124117,110501,overcomplicated,1406964420 +124117,110501,shaky camera,1406964825 +124117,110501,undercover cop,1406964765 +124117,110501,Yayan Ruhian,1406964581 +124117,110553,Andrew Garfield,1404888288 +124117,110553,Emma Stone,1404889515 +124117,110553,heavy-handed,1404890619 +124117,110553,missing scenes,1404890525 +124117,110553,Paul Giamatti,1404887966 +124117,110553,superhero,1404887822 +124117,110568,amphibians,1397873942 +124117,110568,great ending,1397874232 +124117,110568,Peggy Neal,1397873973 +124117,110568,Sonny Chiba,1397873957 +124117,110568,submarine,1397873986 +124117,110568,toxic waste,1397874273 +124117,110568,underwater base,1397874090 +124117,110730,Johnny Depp,1400815785 +124117,110730,poorly thought out ending,1400816035 +124117,110730,Rebecca Hall,1400816072 +124117,110884,diplomacy,1398916986 +124117,110884,ninja,1398916559 +124117,110884,Osaka Castle,1398916602 +124117,110884,politics,1398916971 +124117,110884,Raizo Ichikawa,1398916581 +124117,110884,seen,1398916552 +124117,111036,aliens,1399349427 +124117,111036,Starman,1400166842 +124117,111036,superhero,1399349420 +124117,111247,blindness,1399565282 +124117,111247,criminal mastermind,1399565291 +124117,111247,evil protagonist,1399565143 +124117,111247,masseur,1399565377 +124117,111247,rape,1399565307 +124117,111247,seen,1399565004 +124117,111247,Shintaro Katsu,1399565024 +124117,111261,Roy Rogers,1399700138 +124117,111261,singing cowboy,1399700158 +124117,111316,aliens,1399961433 +124117,111316,cute kids,1399961381 +124117,111316,Ken Utsui,1399961405 +124117,111316,nuclear bomb,1399961063 +124117,111316,seen,1399962532 +124117,111316,Starman,1400166820 +124117,111316,superhero,1399960975 +124117,111318,seen,1399962555 +124117,111318,superpowers,1399962569 +124117,111362,Evan Peters,1404359316 +124117,111362,Fan Bingbing,1404359155 +124117,111362,Hugh Jackman,1404359180 +124117,111362,James McAvoy,1404359270 +124117,111362,Michael Fassbender,1404359268 +124117,111362,Nudity (Rear),1404396982 +124117,111362,superhero,1404359264 +124117,111362,time travel,1404359280 +124117,111364,bland hero,1400372807 +124117,111364,Bryan Cranston,1400167251 +124117,111364,Gareth Edwards,1400362373 +124117,111364,Godzilla,1400167083 +124117,111364,Kaiju,1400167115 +124117,111364,not enough Bryan Cranston,1400372134 +124117,111364,not enough monster action,1400372033 +124117,111447,cool,1400388812 +124117,111447,costumes,1400388952 +124117,111447,Eric Tsang,1400471385 +124117,111447,Jay Chou,1400388680 +124117,111447,seen,1400388820 +124117,111447,treasure hunt,1400388699 +124117,111447,writer,1400471440 +124117,111542,alien invasion,1400562361 +124117,111542,aliens,1400562349 +124117,111542,seen,1400562327 +124117,111542,Starman,1400562314 +124117,111542,superhero,1400562321 +124117,111759,Nudity (Rear),1407220944 +124117,111759,powersuit,1407221043 +124117,111759,stupid title,1408938025 +124117,111759,the book was better,1407220932 +124117,111759,time loop,1407220767 +124117,111901,Cinderella,1402236212 +124117,111901,Mary Pickford,1402104329 +124117,111901,seen,1402104302 +124117,111901,silent movie,1402104310 +124117,111961,direct-to-video,1402196507 +124117,111961,fairy tale,1402195595 +124117,111961,GoodTimes Entertainment,1402195583 +124117,111961,low budget,1402196367 +124117,111961,princess,1402195996 +124117,111961,riding Disney's coattails,1402236367 +124117,111961,seen,1402195569 +124117,112066,anime,1402386046 +124117,112066,seen,1402386054 +124117,112183,great performances,1432406208 +124117,112183,Michael Keaton,1432406203 +124117,112283,archvampire,1414396280 +124117,112283,China,1414396462 +124117,112283,Hammer Horror,1403333077 +124117,112283,Leyland Van Helsing,1414397076 +124117,112283,martial arts,1414396294 +124117,112283,Peter Cushing,1414396262 +124117,112283,Shaw Brothers,1414396316 +124117,112283,vampires,1414396286 +124117,112283,Van Helsing,1414396480 +124117,112501,band,1404623014 +124117,112501,love triangles,1404623087 +124117,112501,meaningful,1404656268 +124117,112501,seen,1404622757 +124117,112501,ShahRukh Khan,1404618661 +124117,112517,annoying characters,1404705230 +124117,112517,bait-and-switch,1404710265 +124117,112517,David Hatton,1404710286 +124117,112517,island,1404705257 +124117,112517,Jules Verne,1404705244 +124117,112517,seen,1404710300 +124117,112556,Ben Affleck,1432406272 +124117,112556,interesting,1432406292 +124117,112594,chef,1404962747 +124117,112594,mistaken identity,1404962774 +124117,112594,multiple roles,1404962715 +124117,112594,seen,1404962785 +124117,112594,ShahRukh Khan,1404962695 +124117,112623,CGI,1410837843 +124117,112623,misunderstandings,1410837676 +124117,112623,post-apocalyptic,1410837854 +124117,112623,talking animals,1410837691 +124117,112625,China,1405142841 +124117,112625,intrigue,1405142856 +124117,112625,magician,1405142812 +124117,112625,seen,1405142674 +124117,112625,starts drama ends comedy,1405142779 +124117,112640,cameos,1405229104 +124117,112640,crude humor,1405229030 +124117,112640,seen,1405228798 +124117,112640,ShahRukh Khan,1405228808 +124117,112640,superhero,1405228791 +124117,112640,video games,1405229129 +124117,112705,animal attacks,1405459363 +124117,112705,dull,1405459586 +124117,112705,dysfunctional family,1405459486 +124117,112705,seen,1405459247 +124117,112705,so bad it's almost good,1405459326 +124117,112705,the poster is better than the movie,1405459382 +124117,112751,ghosts,1405741927 +124117,112751,Japanese horror,1405741573 +124117,112751,Ju-on series,1405741557 +124117,112751,seen,1405741442 +124117,112852,all-star cast,1406947521 +124117,112852,characters with individual goals,1406941087 +124117,112852,Chris Pratt,1406939997 +124117,112852,cyborgs,1406947395 +124117,112852,fun,1406940017 +124117,112852,great soundtrack,1406947366 +124117,112852,Marvel Cinematic Universe,1406940006 +124117,112852,space,1406947417 +124117,112893,comics,1406267459 +124117,112893,seen,1406267320 +124117,112893,some funny parts,1406267412 +124117,112897,Antonio Banderas,1413264614 +124117,112897,high body count,1413346477 +124117,112897,Kellan Lutz,1413264694 +124117,112897,Mel Gibson,1413264661 +124117,112897,PG-13,1413265902 +124117,112897,Ronda Rousey,1413264685 +124117,112897,Sylvester Stallone,1413264609 +124117,112911,anachronistic dialogue,1411507139 +124117,112911,deceptive trailers,1411506897 +124117,112911,male gaze,1411506917 +124117,112911,violence,1411507114 +124117,113348,CGI timelapse,1412206376 +124117,113348,robot samurai,1408395147 +124117,114082,Bambi,1410841441 +124117,114082,cartoon,1410841458 +124117,114082,classic,1410841578 +124117,114082,funny,1410841514 +124117,114082,Godzilla,1410841433 +124117,114082,seen,1410841464 +124117,114082,short,1410841452 +124117,114130,love triangle,1410907598 +124117,114130,sea monster,1410907613 +124117,114130,seen,1410907577 +124117,114130,the book was better,1410907741 +124117,114240,Aladdin,1411251297 +124117,114240,direct-to-video,1411251344 +124117,114240,djinn,1411251321 +124117,114240,GoodTimes Entertainment,1411251278 +124117,114240,mockbuster,1411251511 +124117,114240,riding Disney's coattails,1411251491 +124117,114240,seen,1411251252 +124117,114984,Dracula,1413159163 +124117,114984,monster hunter,1413159210 +124117,114984,seen,1413159156 +124117,114984,Shadow of a Doubt... with vampires,1413159293 +124117,114984,vampires,1413159172 +124117,115617,superhero,1415391200 +124117,115669,Angelababy,1414657583 +124117,115669,detective,1414657711 +124117,115669,martial arts,1414657613 +124117,115669,parasites,1414657623 +124117,115669,sea monster,1414657693 +124117,115669,seen,1414657590 +124117,115669,urine drinking,1414657657 +124117,116911,aliens,1416112597 +124117,116911,animation,1416112592 +124117,116911,evil hunter,1416112850 +124117,116911,fantasy,1416112586 +124117,116911,Korean,1416112572 +124117,116911,Kumiho,1416104511 +124117,116911,seen,1416104515 +124117,116911,shadow,1416112609 +124117,116911,teddy bear,1416112828 +124117,116911,unnecessary villain,1416104549 +124117,117438,animation,1416722641 +124117,117438,anime,1416722618 +124117,117438,beautiful,1416722655 +124117,117438,Hiromasa Yonebayashi,1445211573 +124117,117438,seen,1416722570 +124117,117438,Studio Ghibli,1416722609 +124117,117440,Lupin III,1416722784 +124117,117440,seen,1416722775 +124117,117440,thief,1416722801 +124117,117442,Donnie Yen,1416723032 +124117,117442,fantasy,1416723040 +124117,117442,seen,1416723014 +124117,117444,animation,1416724070 +124117,117444,seen,1416724065 +124117,117444,style over substance,1432406383 +124117,117446,anime,1416724440 +124117,117446,seen,1416724437 +124117,117448,remake,1416724620 +124117,117448,seen,1416724606 +124117,117448,witch,1416724611 +124117,117474,Donnie Yen,1416774277 +124117,117474,martial arts,1422651256 +124117,117474,odd,1442811823 +124117,117474,seen,1416774269 +124117,117887,audience intelligence underestimated,1417718730 +124117,117887,disgusting,1417718728 +124117,117887,the book was better,1417718725 +124117,122882,practical effects,1447405545 +124117,122882,Tom Hardy,1447405535 +124117,122882,visually appealing,1447405512 +124150,260,interplanetary,1431913444 +124150,260,space combat,1431913426 +124150,6016,coming of age,1439178494 +124150,7323,communism,1439178814 +124150,7323,idealism,1439178809 +124150,7323,socialism,1439178818 +124150,41997,terrorism,1439178290 +124150,64197,dark,1439178339 +124150,67508,terrorism,1439178580 +124150,81817,terrorism,1439178325 +124169,32,great ending,1367614364 +124169,47,great ending,1367614365 +124169,50,excellent script,1367614149 +124169,318,great ending,1367614364 +124169,522,brutality,1367614321 +124169,858,masterpiece,1367614106 +124169,1088,dancing,1367614348 +124169,1089,stylish,1367614194 +124169,1206,masterpiece,1367614106 +124169,1617,neo-noir,1367614334 +124169,1620,detective,1367614447 +124169,1704,excellent script,1367614149 +124169,1968,teen movie,1367614283 +124169,2542,stylish,1367614194 +124169,2762,excellent script,1367614149 +124169,2762,great ending,1367614365 +124169,2866,musicians,1367614254 +124169,3693,splatter,1367614221 +124169,3791,dancing,1367614348 +124169,4011,stylish,1367614194 +124169,4878,original,1367610927 +124169,4878,surreal,1357090822 +124169,4878,thought-provoking,1357090858 +124169,4878,time travel,1357090838 +124169,5385,musicians,1367614254 +124169,6214,brutality,1367614321 +124169,6874,masterpiece,1367614107 +124169,7153,great ending,1367614364 +124169,27592,brutality,1367614321 +124169,44555,excellent script,1367614149 +124169,96610,original,1367610927 +124169,101283,Olivia Wilde,1381129256 +124188,924,artificial intelligence,1242522886 +124188,924,based on a book,1242522876 +124188,924,meditative,1242522861 +124188,924,sci-fi,1242522842 +124188,924,space,1242522855 +124188,1301,classic,1232683509 +124188,1301,intellectual,1232736392 +124188,1301,mind,1232683557 +124188,1301,space,1232683512 +124188,1584,inspirational,1278377120 +124188,1584,Jodie Foster,1278377125 +124188,1584,sci-fi,1278377131 +124188,1584,space travel,1278377136 +124188,2600,alternate reality,1242522977 +124188,2600,Sci-Fi,1242522987 +124188,2913,funny,1242522793 +124188,4006,Animation,1242523103 +124188,4006,giant robots,1242523088 +124188,4873,dreamlike,1242522736 +124188,4873,philosophy,1242522699 +124188,4873,pseudoscience,1242522697 +124188,4873,rotoscoping,1242522708 +124188,4873,surreal,1242522719 +124188,4874,intellectual,1242522370 +124188,4874,philosophical,1242522371 +124188,4874,psychiatrist,1242522366 +124188,5291,Akira Kurosawa,1242522627 +124188,5291,Criterion,1242522629 +124188,5291,nonlinear,1242522660 +124188,5291,samurai,1242522633 +124188,5618,fantasy,1242522319 +124188,5618,Hayao Miyazaki,1242522325 +124188,5618,Studio Ghibli,1242522328 +124188,37857,animation,1242522600 +124188,37857,fantasy,1242522569 +124188,37857,irish accent,1242522563 +124188,37857,neil gaiman,1242522577 +124188,37857,parallel universe,1242522584 +124188,37857,visually appealing,1242522557 +124188,55908,philosophical,1238880378 +124188,60857,experimental,1238881177 +124205,296,Bruce Willis,1241043309 +124205,296,John Travolta,1241043293 +124205,296,nonlinear,1241043293 +124205,296,Samuel L. Jackson,1241043293 +124205,1089,nonlinear,1247157663 +124205,1089,organized crime,1247157656 +124205,1089,Quentin Tarantino,1247157659 +124205,1562,Action,1246372273 +124205,1562,Batman,1246372278 +124205,1732,black comedy,1249344488 +124205,1732,bowling,1249344493 +124205,1732,Coen Brothers,1249344486 +124205,1732,crime,1249344497 +124205,1732,dark comedy,1249344501 +124205,1732,Philip Seymour Hoffman,1249344506 +124205,1732,quirky,1249344512 +124205,8950,Brad Anderson,1250950799 +124205,8950,Christian Bale,1250950793 +124205,8950,memory,1250950803 +124205,8950,twist ending,1250950811 +124205,48516,gangsters,1246371810 +124205,48516,imdb top 250,1246371802 +124205,48516,Jack Nicholson,1246371795 +124205,48516,Leonardo DiCaprio,1246371786 +124205,48516,Martin Scorsese,1246371798 +124205,48516,police corruption,1246371815 +124205,48516,violence,1246371812 +124205,49013,Tim Allen,1246372284 +124205,58559,action,1246371891 +124205,58559,based on a comic,1246371874 +124205,58559,Batman,1246371871 +124205,58559,Christian Bale,1246371836 +124205,58559,Comic Book adaption,1246371865 +124205,58559,comics,1246371872 +124205,58559,Gary Oldman,1246371839 +124205,58559,Heath Ledger,1246371862 +124205,58559,imdb top 250,1246371876 +124205,58559,Michael Caine,1246371843 +124205,58559,Morgan Freeman,1246371847 +124205,58559,murder,1246371895 +124205,58559,Oscar (Best Supporting Actor),1246371888 +124205,58559,vigilante,1246371883 +124205,58559,violence,1246371882 +124205,58559,violent,1246371879 +124205,66934,anti-hero,1251029639 +124205,66934,Awesome,1251029646 +124205,66934,Captain Hammer,1251029648 +124205,66934,Dr. Horrible,1251029640 +124205,66934,joss whedon,1251029652 +124205,66934,Neil Patrick Harris,1251029636 +124205,66934,too short,1251029653 +124205,67997,BBC Films,1248706940 +124205,67997,James Gandolfini,1248706929 +124205,67997,politics,1248706934 +124205,67997,satire,1248706938 +124205,68157,Brad Pitt,1251715979 +124205,68157,dialogue,1251715971 +124205,68157,Quentin Tarantino,1251715976 +124205,68319,bad cgi,1246371969 +124205,68319,funny,1246371981 +124205,68319,hugh jackman,1246371983 +124205,68319,inconsistent with other movies,1246371990 +124205,68319,Ryan Reynolds,1246371973 +124205,68319,Storytelling,1246371977 +124205,68358,alternate reality,1243780118 +124205,68358,dumb,1246371908 +124205,68358,future,1246371927 +124205,68358,linear,1243780115 +124205,68358,plot twist,1243780118 +124205,68358,Simon Pegg,1246371923 +124205,68358,space,1243780118 +124205,68358,Star Trek,1246371917 +124205,68358,time travel,1243780118 +124205,70286,aliens,1250258245 +124205,70286,genetics,1250258237 +124205,72998,3d,1261614534 +124205,72998,badass colonel,1261614531 +124205,72998,blue indians in space,1261614543 +124205,72998,effects,1261614511 +124205,72998,native exploitation,1261614547 +124205,72998,sci-fi,1261614513 +124205,72998,sigorney weaver,1261614516 +124205,72998,too long,1261614519 +124205,72998,visual,1261614523 +124205,78039,Ryan Gosling,1294468699 +124205,81641,based on a true story,1291456040 +124205,81641,naomi watts,1291456035 +124205,81641,sean penn,1291456029 +124205,82459,Coen Brothers,1296090760 +124205,82459,Jeff Bridges,1296090749 +124205,82459,Josh Brolin,1296090758 +124205,82459,Matt Damon,1296090755 +124205,85131,cliche,1303619892 +124205,85131,Cliches,1303619893 +124205,91529,Anne Hathaway,1343113416 +124205,91529,Bane's voice,1343113412 +124205,91529,Christian Bale,1343113409 +124205,91529,Christopher Nolan,1343113398 +124205,91529,Gary Oldman,1343113403 +124205,91529,plot twist,1343113397 +124205,93510,Channing Tatum,1333625545 +124205,93510,Ice Cube,1333625528 +124205,93510,Jonah Hill,1333625540 +124205,93510,meta,1333625535 +124205,93510,self-aware,1333625531 +124205,94266,Alison Brie,1347363831 +124205,94266,Chris Pratt,1347363836 +124205,94266,Emily Blunt,1347363813 +124205,94266,Jason Segal,1347363811 +124205,94266,too long,1347363807 +124205,96565,annoying characters,1365952039 +124205,98809,too long,1356869844 +124205,99114,brutal,1359038533 +124205,99114,Christoph Waltz,1359038514 +124205,99114,Humour,1359038522 +124205,99114,Jonah Hill,1359038519 +124205,99114,Leonardo DiCaprio,1359038510 +124205,99114,profanity,1359038524 +124205,99114,Quentin Tarantino,1359038517 +124205,99114,Samuel L. Jackson,1359038505 +124205,102125,Christmas,1407991240 +124205,102125,comic book,1407991261 +124205,102125,disability,1407991265 +124205,102125,Marvel,1407991248 +124205,102125,Robert Downey Jr.,1407991245 +124205,102125,romance,1407991254 +124205,102125,terrorism,1407991251 +124205,102125,visually appealing,1407991269 +124205,102445,Bechdel Test:Fail,1370866401 +124205,102445,J.J. Abrams,1370866411 +124205,102445,Spock/Uhuru relationship.,1370866423 +124205,102445,Zachary Quinto,1370866405 +124205,106696,animation,1404654598 +124205,106696,fantasy world,1404654626 +124205,106696,music,1404654588 +124205,106696,musical,1404654575 +124205,106696,sister sister relationship,1404654578 +124205,106696,sisters,1404654609 +124205,106696,Too fast,1404654584 +124205,106696,writing,1404654583 +124205,108932,Batman,1404660604 +124205,108932,breaking the fourth wall,1404660599 +124205,108932,character development,1404660608 +124205,108932,fun,1404660619 +124205,108932,Jonah Hill,1404660602 +124205,109487,Anne Hathaway,1415284535 +124205,109487,Christopher Nolan,1415284531 +124205,109487,Matthew McConaughey,1415284538 +124205,109487,space,1415284541 +124205,109487,wormhole,1415284544 +124205,112556,Carrie Coon,1413810182 +124205,112556,David Fincher,1413810171 +124205,112556,Neal Patrick Harris,1413810160 +124205,112556,Psychopathy,1413810192 +124205,112852,great soundtrack,1410109524 +124205,112852,Marvel,1410109533 +124205,112852,space,1410109535 +124205,112852,Vin Diesel,1410109540 +124205,113829,Mark Duplass,1410109455 +124205,119141,Evan Goldberg,1419734294 +124205,119141,not worth armageddon,1419734274 +124205,119141,Seth Rogen,1419734291 +124220,318,friendship,1448789540 +124220,318,heartwarming,1448789546 +124220,318,inspirational,1448789538 +124220,318,justice,1448789551 +124220,318,powerful ending,1448789548 +124220,318,prison,1448789562 +124220,318,thought-provoking,1448789543 +124220,318,twist ending,1448789536 +124220,337,bittersweet,1448789267 +124220,337,coming of age,1448789270 +124220,337,small town,1448789273 +124220,1203,classic,1448789800 +124220,1203,courtroom drama,1448789795 +124220,1203,good dialogue,1448789792 +124220,1203,great screenplay,1448789809 +124220,1203,justice,1448789811 +124220,1203,racism,1448789803 +124220,1203,social commentary,1448789797 +124220,1203,thought-provoking,1448789815 +124220,1222,1960s,1448788901 +124220,1222,cinematography,1448788910 +124220,1222,dialogue,1448788904 +124220,1222,military,1448788898 +124220,1222,Stanley Kubrick,1448788893 +124220,1227,Ennio Morricone,1448788752 +124220,1227,epic,1448788748 +124220,1227,organized crime,1448788743 +124220,1227,Sergio Leone,1448788740 +124220,1259,1960s,1448788792 +124220,1259,childhood,1448788788 +124220,1259,coming of age,1448788779 +124220,1259,friendship,1448788797 +124220,1259,INNOCENCE LOST,1448788783 +124220,1259,nostalgic,1448788785 +124220,1276,classic,1448788722 +124220,1276,FIGHTING THE SYSTEM,1448789681 +124220,1276,Paul Newman,1448788710 +124220,1276,prison,1448788712 +124220,1377,Batman,1448789335 +124220,1377,comic book,1448789332 +124220,1377,super-hero,1448789339 +124220,1377,superhero,1448789329 +124220,1956,dysfunctional family,1448789702 +124220,1956,guilt,1448789699 +124220,2871,gritty,1448788851 +124220,2871,rape,1448788864 +124220,2871,rednecks,1448788867 +124220,2871,suspense,1448788861 +124220,3168,freedom,1448789058 +124220,3168,road movie,1448789060 +124220,3168,road trip,1448789048 +124220,3168,social commentary,1448789056 +124220,3677,nature,1448788979 +124220,3677,photography,1448788974 +124220,3677,scenic,1448788982 +124220,3916,good story,1448789428 +124220,3916,inspirational,1448789425 +124220,3916,inspiring,1448789432 +124220,3916,sports,1448789436 +124220,4022,adventure,1448789165 +124220,4022,island,1448789167 +124220,4022,loneliness,1448789170 +124220,4022,man vs. nature,1448789172 +124220,4022,SURVIVAL,1448789159 +124220,4444,martial arts,1448788768 +124220,4447,chick flick,1448789456 +124220,4447,Comedy,1448789452 +124220,4447,Gay stereotypes,1448789468 +124220,4447,lawyers,1448789459 +124220,4614,martial arts,1448789596 +124220,6270,dreamlike,1448788995 +124220,6270,dreams,1448789000 +124220,6270,meditative,1448788998 +124220,6870,Clint Eastwood,1448789496 +124220,6870,crime,1448789488 +124220,6870,drama,1448789486 +124220,6870,great acting,1448789493 +124220,6870,mystery,1448789481 +124220,6870,thriller,1448789491 +124220,6870,twist ending,1448789484 +124220,7090,cinematography,1448790035 +124220,7090,Jet Li,1448790026 +124220,7153,geeky,1448789121 +124220,8873,adventure,1448788691 +124220,8873,politics,1448788684 +124220,8873,road trip,1448788675 +124220,56367,adoption,1448789639 +124220,56367,excellent script,1448789649 +124220,56367,pregnancy,1448789627 +124220,56367,teen pregnancy,1448789636 +124220,56367,teenage pregnancy,1448789645 +124220,56367,teenager,1448789633 +124220,56367,teenagers,1448789642 +124220,77561,comic book,1448789737 +124220,77561,Iron Man,1448789744 +124220,77561,superhero,1448789733 +124220,97938,animals,1449989001 +124220,97938,God's existance,1449989007 +124220,97938,great photograpy,1449988979 +124220,97938,ocean,1449988984 +124220,97938,religious overtones,1449989004 +124220,97938,spiritual journey,1449989013 +124220,97938,stranded,1449988993 +124220,97938,Survival,1449989011 +124220,97938,visually appealing,1449988977 +124220,102194,coming of age,1448788823 +124220,102194,powerful,1448788826 +124220,117529,adventure,1448789933 +124220,117529,dinosaurs,1448789911 +124220,117529,exciting,1448789929 +124220,117529,sci-fi,1448789913 +124220,142448,mountaineering,1448789877 +124222,457,Harrison Ford,1324756903 +124227,480,action,1425067306 +124227,480,dinnosaurs,1425067306 +124227,480,sci-fi,1425067306 +124227,2571,action,1429472170 +124227,2571,especial effects and visuals,1429472170 +124227,2571,sci-fi,1429472170 +124227,112556,mindfuck,1429472918 +124227,112556,unpredictable,1429472910 +124238,260,classic sci-fi,1443257270 +124238,260,lightsabers,1443257285 +124238,260,sci-fi,1443257273 +124238,260,space adventure,1443257208 +124238,260,space war,1443257201 +124238,103249,action,1444560023 +124238,103249,global,1444560030 +124238,103249,outbreak,1444560021 +124238,103249,pandemic,1444560016 +124238,103249,virus,1444560018 +124238,103249,zombies,1444560012 +124274,1213,Martin Scorsese,1440181603 +124274,1732,coen brothers,1440181458 +124274,1732,dark comedy,1440181464 +124274,3949,disturbing,1440181575 +124274,4226,nonlinear,1440181511 +124274,4226,twist ending,1440181514 +124274,6016,multiple storylines,1440181597 +124274,55820,Coen Brothers,1440181403 +124274,55820,great acting,1440181401 +124274,55820,suspense,1440181415 +124274,56782,Daniel Day-Lewis,1440181546 +124274,56782,Oscar (Best Actor),1440181560 +124274,56782,Oscar (Best Cinematography),1440181558 +124274,60069,funny,1440181441 +124274,60069,pixar,1440181431 +124274,68157,dialogue,1440181487 +124274,68157,Quentin Tarantino,1440181481 +124274,94959,coming of age,1440181728 +124274,94959,Wes Anderson,1440181723 +124274,102194,coming of age,1440181755 +124274,102993,coming of age,1440181737 +124274,102993,Sam Rockwell,1440181742 +124274,103539,coming of age,1440207589 +124274,112552,Academy Award Nominee,1440181366 +124274,112552,good acting,1440181358 +124292,260,birth of great scifi ideas,1436474824 +124292,260,original plot,1436474800 +124321,443,surfing,1204342400 +124321,454,book was better,1176680803 +124321,7075,swashbuckler,1204342523 +124321,7236,talking dog,1173835645 +124321,7843,weed,1175044288 +124321,39183,ye haw! Ride em cowboy!!!!,1175043850 +124321,40732,hot girls!,1173835423 +124321,47200,action packed,1241476963 +124321,47200,adrenaline,1241476959 +124321,48738,adapted from:book,1179869566 +124321,56339,ghosts/afterlife,1205668841 +124321,71464,Philosophical,1263244084 +124321,110501,brutal,1446108830 +124321,110501,Indonesia,1446108838 +124321,110501,martial arts,1446108835 +124321,112290,12 years in the making,1403200024 +124321,112290,growing up,1403200121 +124321,112290,heartfelt,1403200105 +124321,112290,realism,1403200050 +124321,134853,bittersweet,1444853564 +124321,134853,childhood,1444853562 +124321,134853,imaginative,1444853578 +124321,134853,Pixar,1444853594 +124321,134853,psychology,1444853560 +124321,134853,thought provoking,1444853552 +124350,260,great classic,1442964803 +124350,260,great effects,1442964825 +124356,47976,Julianne Moore,1235450313 +124356,70599,Eric Bana,1251973272 +124382,293,assassin,1295678726 +124382,293,Gary Oldman,1295678723 +124382,293,Jean Reno,1295678721 +124382,293,Natalie Portman,1295678719 +124382,293,quirky,1295678717 +124382,1094,Forest Whitaker,1301196091 +124382,1094,IRA,1301196100 +124382,1094,Ireland,1301196084 +124382,1094,Stephen Rea,1301196113 +124382,1246,boarding school,1289252043 +124382,1246,drama,1289252055 +124382,1246,English literature,1289252039 +124382,1246,Ethan Hawke,1289252059 +124382,1246,inspirational,1289252051 +124382,1246,philosophy,1289252045 +124382,1246,Robin Williams,1289252022 +124382,1246,Shakespeare,1289252026 +124382,1246,suicide,1289252037 +124382,1246,teen,1289252028 +124382,1835,Nicholas Cage,1295475643 +124382,1835,Nicolas Cage,1295475636 +124382,2762,Bruce Willis,1295308082 +124382,2762,M. Night Shyamalan,1295308085 +124382,2762,mindfuck,1295308088 +124382,2762,psychology,1295308089 +124382,2762,twist ending,1295308091 +124382,2912,Steven Soderbergh,1301196060 +124382,2912,unusual editing,1301196054 +124382,2912,vengence,1301196057 +124382,3148,Michael Caine,1301196010 +124382,3148,Paul Rudd,1301196022 +124382,3148,Tobey Maguire,1301196017 +124382,4011,boxing,1295144711 +124382,4011,Brad Pitt,1295144715 +124382,4011,british,1295144717 +124382,4011,comedy,1295144719 +124382,4011,Crime,1295144721 +124382,4011,cynical,1295144723 +124382,4011,gypsy accent,1295144736 +124382,4011,heist,1295144739 +124382,4011,multiple storylines,1295144748 +124382,4011,quirky,1295144744 +124382,4011,twist ending,1295144741 +124382,5617,BDSM,1302475436 +124382,5617,James Spader,1302475457 +124382,5617,Maggie Gyllenhaal,1302475443 +124382,6942,Colin Firth,1302500018 +124382,6942,ensemble cast,1302499985 +124382,6942,funny,1302499996 +124382,6942,Hugh Grant,1302499982 +124382,6942,Keira Knightley,1302499977 +124382,6942,Liam Neeson,1302500008 +124382,6942,love,1302500046 +124382,6942,multiple storylines,1302499979 +124382,6942,Romance,1302499991 +124382,8784,funny,1295313631 +124382,8784,Great Soundtrack,1295313594 +124382,8784,mental illness,1295313621 +124382,8784,Natalie Portman,1295313603 +124382,8784,quirky,1295313615 +124382,8784,quirky romantic,1295313611 +124382,8784,romance,1295313608 +124382,8784,Zach Braff,1295313605 +124382,8910,Dustin Hoffman,1297022962 +124382,8910,intelligent,1297022979 +124382,8910,Jude Law,1297022974 +124382,8910,Mark Wahlberg,1297022971 +124382,8910,Naomi Watts,1297022977 +124382,8910,philosophy,1297022956 +124382,8910,satire,1297022969 +124382,8910,whimsical,1297022965 +124382,8950,Christian Bale,1295307827 +124382,8950,powerful ending,1295307783 +124382,8950,predictable,1295307755 +124382,8950,psychology,1295307802 +124382,8950,twist ending,1295307789 +124382,8970,Dustin Hoffman,1301196749 +124382,8970,fantasy,1301196747 +124382,8970,Johnny Depp,1301196743 +124382,37731,Elijah Wood,1302578494 +124382,37731,gang brawls,1302578490 +124382,39234,Jim Cada,1295307537 +124382,47099,bittersweet,1302587523 +124382,47099,depressing,1302587532 +124382,47099,father-son relationship,1302587540 +124382,47099,poignant,1302587538 +124382,47099,tearjerking,1302587518 +124382,47099,Will Smith,1302587528 +124382,47423,Addiction,1364094194 +124382,47423,drugs,1364094192 +124382,47423,independent film,1364094195 +124382,47423,Ryan Gosling,1364094189 +124382,53318,alternate reality,1302466068 +124382,53318,british,1302466087 +124382,53318,cult film,1302466089 +124382,53318,grocery store,1302466083 +124382,53318,Sean Biggerstaff,1302466092 +124382,53318,surrealism,1302466065 +124382,55267,Juliette Binoche,1302476453 +124382,55267,predictable,1302476465 +124382,55267,Steve Carrell,1302476455 +124382,55286,Benicio Del Toro,1302377428 +124382,55286,drugs,1302377432 +124382,55286,heroin,1302377441 +124382,55286,non-linear,1302377439 +124382,56333,intellectual,1354444528 +124382,56333,Laura Linney,1354444540 +124382,56333,Philip Seymour Hoffman,1354444542 +124382,58047,cute,1302587398 +124382,58047,politics,1302587403 +124382,58047,romantic comedy,1302587412 +124382,58047,Ryan Reynolds,1302587384 +124382,64716,atonement,1295475105 +124382,64716,Drama,1295475114 +124382,64716,love story,1295475121 +124382,64716,melancholy,1295475123 +124382,64716,unique,1295475120 +124382,64716,Will Smith,1295475118 +124382,66665,great soundtrack,1289451364 +124382,66665,philosophical,1289451376 +124382,66665,quirky,1289451379 +124382,66665,realism,1289451382 +124382,66665,witty,1289451390 +124382,71033,Argentina,1296518316 +124382,71033,cinematography,1296518326 +124382,71033,excellent acting,1296518349 +124382,71033,excellent script,1296518333 +124382,71033,nostalgic,1296518334 +124382,71033,revenge,1296518339 +124382,71033,romance,1296518337 +124382,71518,Ellen Page,1303017618 +124382,71518,Juliette Lewis,1303017621 +124382,71518,Kristen Wiig,1303017620 +124382,71518,landon pigg,1303017630 +124382,72226,George Clooney,1295679743 +124382,72226,hipster-oriented,1295679730 +124382,72226,Jason Schwartzman,1295679733 +124382,72226,Wes Anderson,1295679735 +124382,72226,Willem Dafoe,1295679736 +124382,73983,Sebastián Silva,1296518276 +124382,75341,9/11,1295474757 +124382,75341,cynical protangonist,1295475381 +124382,75341,depressing,1295475934 +124382,75341,depression,1295474796 +124382,75341,drama,1295474770 +124382,75341,Emilie de Ravin,1302478052 +124382,75341,philosophical,1295475358 +124382,75341,Robert Pattinson,1295474804 +124382,75341,romance,1295475342 +124382,75341,sad ending,1295475770 +124382,81562,Amber Tamblyn,1301196226 +124382,81562,James Franco,1301196191 +124382,81562,loneliness,1301196196 +124382,91079,beautiful,1404714162 +124382,91079,character driven,1404714158 +124382,91079,realistic dialogue,1404714164 +124382,91079,understated,1404714166 +124382,94070,Bill Nighy,1354960453 +124382,94070,bittersweet,1354960467 +124382,94070,Judi Dench,1354960459 +124382,94070,Tom Wilkinson,1354960464 +124382,95088,aubrey plaza,1368423952 +124382,95088,funny,1368423955 +124382,95088,great script,1368423958 +124382,95088,soundtrack,1368423960 +124382,95088,Understated charm,1368423963 +124384,4901,espionage,1305668926 +124384,4901,Robert Redford,1305668921 +124384,33679,espionage,1305668766 +124384,33679,spies,1305668769 +124384,62374,Leonardo DiCaprio,1305669089 +124384,74795,conspiracy,1305669041 +124384,74795,espionage,1305669023 +124384,74795,Matt Damon,1305669020 +124416,538,can't remember,1182790621 +124416,778,addiction,1242330477 +124416,778,based on a book,1242330483 +124416,778,black comedy,1242330448 +124416,778,classic,1242330460 +124416,778,dark comedy,1242330446 +124416,778,drug abuse,1242330471 +124416,778,drugs,1242330469 +124416,778,Ewan McGregor,1242330440 +124416,778,great soundtrack,1242330443 +124416,778,imdb top 250,1242330487 +124416,778,Nudity (Full Frontal - Notable),1242330494 +124416,778,Nudity (Full Frontal),1242330490 +124416,778,soccer,1242330455 +124416,778,violence,1242330498 +124416,778,violent,1242330500 +124416,835,queer,1376348061 +124416,1080,British,1242330757 +124416,1080,hilarious,1242330767 +124416,1080,mockumentary,1242330771 +124416,1080,Monty Python,1242330749 +124416,1080,parody,1242330751 +124416,1080,religion,1242330753 +124416,1080,satire,1242330755 +124416,1080,satirical,1242330774 +124416,1080,whimsical,1242330777 +124416,1449,Eugene Levy,1243688754 +124416,1449,farce,1243688760 +124416,1449,humorous,1243688770 +124416,1449,mockumentary,1243688734 +124416,1449,musical,1243688739 +124416,1449,quirky,1243688778 +124416,1449,satirical,1243688728 +124416,1685,disappointing,1251403931 +124416,2310,adolescence,1244906386 +124416,2310,bullying,1244906404 +124416,2310,disability,1244906360 +124416,2310,friendship,1244906346 +124416,2310,knights,1244906436 +124416,2337,amazing soundtrack,1243689026 +124416,2337,boy-on-boy action,1243689017 +124416,2337,dreamlike,1243689014 +124416,2337,Ewan McGregor,1243689005 +124416,2337,glam,1243689011 +124416,2337,Jonathan Rhys Meyers,1243689007 +124416,2337,music,1243689022 +124416,2594,Dark,1242330714 +124416,2594,Twist ending,1242330716 +124416,2857,rock music,1243688984 +124416,2857,surreal,1243688972 +124416,2857,The Beatles,1243688970 +124416,2857,weird animation,1243688979 +124416,3083,Oscar (Best Foreign Language Film),1243688941 +124416,3083,Pedro Almodovar,1243688909 +124416,3083,queer,1243688931 +124416,3083,Spanish,1243688934 +124416,3556,dreamlike,1241369138 +124416,3556,reflective,1241369146 +124416,4102,homophobia,1284558760 +124416,4102,homophobic,1284558753 +124416,4102,warning:homophobia,1284558763 +124416,4147,coming of age,1248482833 +124416,4147,homosexuality,1248482893 +124416,4147,rape,1248482858 +124416,4147,SEXUAL AWAKENING,1248482847 +124416,4470,Finnish,1182713316 +124416,4546,chilly,1243689096 +124416,4546,deliberate,1243689093 +124416,4546,disturbing,1243689053 +124416,5380,mistaken identity,1243688847 +124416,5380,Oscar Wilde,1243688854 +124416,5878,Almodovar,1242330517 +124416,5878,Breathtaking,1242330520 +124416,5878,coma,1242330604 +124416,5878,psychology,1242330543 +124416,6286,Finnish,1182713299 +124416,6539,comedy,1242815315 +124416,6539,Johnny Depp,1242815311 +124416,6770,adultery,1255696167 +124416,6782,Finnish,1182713334 +124416,7361,imagination,1242330904 +124416,7361,memory,1242330901 +124416,7361,nonlinear,1242330895 +124416,7361,quirky,1242330909 +124416,7361,surreal,1242330906 +124416,7361,thought-provoking,1248483263 +124416,7809,Finnish,1182713325 +124416,8511,eating shoes,1248482663 +124416,8589,Finnish,1182713307 +124416,8663,90s,1251403747 +124416,8663,blur,1251403720 +124416,8663,British,1251403806 +124416,8663,british music,1251403806 +124416,8663,britpop,1251403722 +124416,8663,documentary,1251403806 +124416,8663,music,1251403824 +124416,8663,oasis,1251403736 +124416,8663,pop culture,1251403758 +124416,8663,pulp,1251403733 +124416,26448,based on a book,1248482042 +124416,26448,cats,1248482082 +124416,26448,funny,1248482176 +124416,26939,Finnish,1182877648 +124416,27152,finnish,1235143242 +124416,27647,author:Sarah Waters,1376348429 +124416,27671,swedish,1251403620 +124416,27803,disability,1248483358 +124416,27803,euthanasia,1248483332 +124416,27803,FIGHTING THE SYSTEM,1248483393 +124416,27803,poignant,1248483365 +124416,27803,true story,1248483337 +124416,31613,sex,1251578500 +124416,31785,Finnish,1229114252 +124416,31785, ,1229114301 +124416,34540,black comedy,1248482789 +124416,34540,Election type rip-off,1248482796 +124416,34540,manipulation,1248482805 +124416,39052,Finnish,1182713341 +124416,42987,19th century,1376404657 +124416,42987,author:Sarah Waters,1376404476 +124416,42987,based on a book,1376404657 +124416,42987,betrayal,1376404207 +124416,42987,lesbian,1376404193 +124416,43549,based on a true story,1251578406 +124416,44555,corruption,1248483289 +124416,44555,East Germany,1242330807 +124416,44555,freedom of expression,1248483294 +124416,44555,Germany,1242330801 +124416,44555,Human,1242330837 +124416,44555,imdb top 250,1242330840 +124416,44555,Oscar Winner,1242330832 +124416,44555,spying,1242330827 +124416,44555,suicide,1242330815 +124416,44555,surveillance,1242330810 +124416,47778,homosexuality,1231588762 +124416,47778,religion,1231588773 +124416,47778,teen pregnancy,1231588731 +124416,48082,artsy,1242330651 +124416,48082,Bechdel Test:Pass,1242330655 +124416,48082,bittersweet,1242330659 +124416,48082,Charlotte Gainsbourg,1242330646 +124416,48082,dream-like,1242330661 +124416,48082,dreams,1242330663 +124416,48082,fantasy,1242330666 +124416,48082,Gael García Bernal,1242330634 +124416,48082,quirky,1242330631 +124416,48082,R,1242330638 +124416,48082,surreal,1242330629 +124416,49957,abuse,1248483003 +124416,49957,adolescence,1248483022 +124416,49957,school,1248482995 +124416,55901,Swedish,1243870604 +124416,56367,notable soundtrack,1241369014 +124416,56367,pregnancy,1241369009 +124416,56367,witty,1241369012 +124416,62390,autism,1248482514 +124416,62390,children,1248482514 +124416,63082,based on a book,1242330272 +124416,63082,dark side of India,1242330224 +124416,63082,disjointed timeline,1242330241 +124416,63082,love,1242330255 +124416,63082,music,1242330251 +124416,63082,non-linear,1242330246 +124416,63082,nonlinear,1242330229 +124416,63082,poverty,1242330233 +124416,63082,torture,1242330295 +124416,63082,violence,1242330263 +124416,66317,adapted from:book,1251403261 +124416,66317,adapted from:comic,1251403435 +124416,66317,adventure,1251403370 +124416,66317,childhood,1251403292 +124416,66317,comet,1251403339 +124416,66317,end of the world,1251403417 +124416,66317,Finnish,1251403516 +124416,66317,friendship,1251403303 +124416,66317,Japanese,1251403508 +124416,67536,body/gender-switch,1248482413 +124416,68194,british,1257540522 +124416,68667,mockumentary,1246960183 +124416,68886,Charlotte Gainsbourg,1248482343 +124416,68886,French,1248482322 +124416,68886,mother-son relationship,1248482264 +124416,68886,sisters,1255693912 +124416,69712,bad interpretation,1376669303 +124416,69712,ending,1376669323 +124416,70599,book is better,1376775191 +124416,74789,Different from book,1268934441 +124416,77156,19th century,1284642157 +124416,77156,author:Sarah Waters,1376404683 +124416,77156,based on a book,1284642111 +124416,77156,prison,1284642157 +124416,84980,Finnish,1379176162 +124416,87589,lesbian,1376342093 +124416,87589,queer,1376342093 +124416,90809,gender identity,1376405285 +124416,100401,Finnish,1376775742 +124416,100401,marriage,1376775716 +124416,102819,1970s,1379174823 +124416,102819,based on a book,1376670249 +124416,102819,based on a true story,1379174799 +124416,102819,cosmetic surgery,1379174841 +124416,102819,Liberace,1379174866 +124416,102819,piano,1379174823 +124416,102819,queer,1376670623 +124416,102856,based on a true story,1376670039 +124416,102856,kidnapping,1376670067 +124416,104226,friendship,1376669130 +124416,104226,lesbian,1376669119 +124416,104226,queer,1376669119 +124416,104827,gay,1378928444 +124416,104827,homeless,1378928531 +124416,104827,homelessness,1378928444 +124416,104827,mother-son relationship,1378928559 +124416,104827,queer,1378928444 +124416,104827,San Francisco,1378928444 +124416,104827,youth,1378928488 +124418,3578,ancient Rome,1442068334 +124418,3578,history,1442068329 +124418,3578,Rome,1442068327 +124418,4226,complicated,1440325881 +124418,4226,psychology,1440325875 +124418,27773,twist ending,1440325905 +124418,41285,clever,1442067702 +124418,41285,Jonathan Rhys Meyers,1442067722 +124418,41285,non-hollywood ending,1442067708 +124418,41285,Scarlett Johansson,1442067697 +124418,41285,twist,1442067720 +124418,41285,twist ending,1442067717 +124418,41285,Woody Allen,1442067698 +124418,65642,paradox,1441404272 +124418,65642,Spanish,1441404266 +124418,65642,time travel,1441404269 +124418,71535,Emma Stone,1440326312 +124418,71535,zombies,1440326315 +124418,78349,dialogue driven,1441404352 +124418,78349,experiment,1441404364 +124418,78349,group psychology,1441404348 +124418,78349,mediocre ending,1441404398 +124418,78349,mindfuck,1441404362 +124418,78349,psychological,1441404349 +124418,81591,ballet,1440325945 +124418,81591,horror,1440325936 +124418,81591,Mila Kunis,1440325926 +124418,81591,Natalie Portman,1440325953 +124418,81591,twist ending,1440325957 +124418,87306,aliens,1442067974 +124418,87306,Elle Fanning,1442067968 +124418,87306,J.J. Abrams,1442067970 +124418,87306,sci-fi,1442067973 +124418,91500,Jennifer Lawrence,1443287119 +124418,91500,science fiction,1443287117 +124418,94864,aliens,1442068047 +124418,94864,scifi,1442068045 +124418,100556,thought provoking,1442068499 +124418,101864,post-apocalyptic,1442068084 +124418,103253,future,1442068124 +124418,103253,Neill Blomkamp,1442068108 +124418,103253,science fiction,1442068127 +124418,103253,shallow characters,1442068133 +124418,103253,social commentary,1442068124 +124418,103253,unnecessary violence,1442068116 +124418,106487,revolution,1443287207 +124418,106782,based on a true story,1440326244 +124418,106782,Leonardo DiCaprio,1440326233 +124418,106782,Martin Scorsese,1440326236 +124418,106782,Nudity (Full Frontal),1440326226 +124418,106782,Nudity (Topless),1440326230 +124418,106782,true story,1440326246 +124418,109487,Anne Hathaway,1441404046 +124418,109487,artificial intelligence,1441404064 +124418,109487,Christopher Nolan,1441404040 +124418,109487,epic,1441404081 +124418,109487,good science,1441404084 +124418,109487,love,1441404114 +124418,109487,Masterpiece,1441404107 +124418,109487,Matthew McConaughey,1441404056 +124418,109487,relativity,1441404118 +124418,109487,sci-fi,1441404038 +124418,109487,science fiction,1441404054 +124418,109487,space,1441404043 +124418,109487,space travel,1441404060 +124418,109487,thought-provoking,1441404051 +124418,109487,time travel,1441404030 +124418,109487,time-travel,1441404033 +124418,109487,twist ending,1441404079 +124418,109487,visually appealing,1441404095 +124418,109487,wormhole,1441404037 +124418,112290,Ethan Hawke,1442053094 +124418,112290,realism,1442053098 +124418,112556,mindfuck,1442067601 +124418,112556,Rosamund Pike,1442067591 +124418,112556,unpredictable,1442067603 +124418,113741,parallel universe,1441404305 +124418,114935,mindfuck,1441404228 +124418,114935,science fiction,1441404230 +124418,114935,time travel,1441404239 +124418,114935,twist ending,1441404239 +124418,115713,AI,1441404166 +124418,115713,artificial intelligence,1441404148 +124418,115713,Drama,1441404194 +124418,115713,Future,1441404168 +124418,115713,Manipulations,1441404174 +124418,115713,nudity (full frontal),1441404153 +124418,115713,philosophical,1441404160 +124418,115713,plot twist,1441404205 +124418,115713,Psychological,1441404190 +124418,115713,robots,1441404164 +124418,115713,sci-fi,1441404150 +124418,115713,technology,1441404146 +124418,115713,Tense,1441404171 +124418,115713,turing test,1441404146 +124421,40851,wannabe Jumanji,1358727379 +124421,51698,obnoxious kid,1358727427 +124421,51698,Rainn Wilson,1358727442 +124421,51698,spoiled brats,1358727427 +124421,51698,stupid ending,1358727426 +124421,60074,Will Smith,1389762901 +124421,67197,aliens,1358728682 +124421,67197,doesn't make sense,1358728692 +124421,67197,terrible ending,1358728734 +124445,89864,honest,1346015876 +124445,89864,humor,1346015852 +124445,89864,Joseph Gordon-Levitt,1346015864 +124481,1285,Christian Slater,1346634004 +124481,2395,soundtrack,1346633790 +124481,2959,dumb twist,1346632532 +124481,3210,Jennifer Jason Leigh,1346634027 +124481,3210,Sean Penn,1346634043 +124481,39444,hilarious,1346633897 +124481,52973,Seth Rogen,1346634136 +124481,54503,cops,1346634101 +124481,54503,Michael Cera,1346634068 +124481,54503,Seth Rogen,1346634104 +124481,56367,Ellen Page,1346633729 +124481,56367,Michael Cera,1346633729 +124481,56367,soundtrack,1346633729 +124481,61024,James Franco,1346634318 +124481,61024,Seth Rogen,1346634352 +124481,86833,Maya Rudolph,1346634195 +124528,47,serial killer,1321783796 +124528,47,twist ending,1321783798 +124528,296,dark comedy,1321783555 +124528,296,nonlinear,1321783552 +124528,296,Quentin Tarantino,1321783549 +124528,1089,nonlinear,1321783573 +124528,1089,Quentin Tarantino,1321783563 +124528,1193,psychology,1321783461 +124528,1234,twist ending,1321783676 +124528,2571,post-apocalyptic,1321783913 +124528,2571,sci-fi,1321783916 +124528,2959,dark comedy,1321783616 +124528,2959,psychology,1321783618 +124528,2959,twist ending,1321783625 +124528,5618,anime,1321783601 +124528,5618,fantasy,1321783585 +124528,5618,Studio Ghibli,1321783597 +124528,71899,dark comedy,1321783524 +124528,87232,superhero,1321784698 +124532,88140,Cheesy,1374780519 +124554,26614,Spy agencies,1445717353 +124554,26614,superb fighting skills,1445717340 +124554,109487,general relativity,1445717156 +124554,109487,like contact,1445717124 +124554,109487,mystery of unknown,1445717189 +124559,81591,atmospheric,1353446686 +124571,68954,comedy,1439196570 +124571,68954,funny,1439196546 +124571,68954,happy ending,1439196738 +124571,68954,predictable,1439196738 +124571,68954,romance,1439196567 +124571,68954,touching,1439196556 +124571,72356,Pixar,1439196783 +124571,114180,mystery,1439199027 +124571,114180,thriller,1439199049 +124571,115170,Robert Downey Jr.,1439198922 +124571,115617,entertaining,1439198455 +124571,115617,Marvel,1439198443 +124571,115617,pixar,1439198404 +124571,115617,sci-fi,1439198454 +124571,115617,super-hero,1439198409 +124571,115617,very funny,1439198454 +124571,116823,bad ass female lead,1439198767 +124571,116823,fashion,1439198769 +124571,116823,revolution,1439198762 +124571,117176,James Marsh,1439198499 +124571,117176,True story,1439198496 +124571,117529,adventure,1439198799 +124571,117529,exciting,1439198797 +124571,118997,Johnny Depp,1439199132 +124571,118997,meryl streep,1439199142 +124571,119145,action,1439198721 +124571,119145,comedy,1439198700 +124571,119145,samuel l. jackson,1439198701 +124571,119145,spy gadgets,1439198701 +124571,119145,spy thriller,1439198685 +124571,129354,predictable,1439198952 +124571,129354,thief,1439198955 +124571,129354,Will Smith,1439198939 +124571,130490,Action,1439199190 +124571,134368,comedy,1439198566 +124571,134368,melissa mccarthy,1439198566 +124571,134368,secret service,1439198619 +124571,135861,too imaginary,1439197140 +124584,50,complicated,1400668259 +124584,50,mystery,1400668265 +124584,50,twists & turns,1400668267 +124584,1080,based on a book,1398353168 +124584,1080,comedy,1398353157 +124584,1080,Monty Python,1398353154 +124584,1080,satirical,1398353165 +124584,1199,atmospheric,1398672313 +124584,1199,black comedy,1398672302 +124584,1199,classic,1398672321 +124584,1199,dark comedy,1398672306 +124584,1199,dreamlike,1398672325 +124584,1199,dystopia,1398672330 +124584,1199,future,1398672382 +124584,1199,futuristic,1398672389 +124584,1199,imagination,1398672397 +124584,1199,sci-fi,1398672367 +124584,1199,stylized,1398672403 +124584,1199,surreal,1398672347 +124584,1199,thought-provoking,1398672352 +124584,1199,visually appealing,1398672355 +124584,2728,based on a book,1397895036 +124584,2728,Stanley Kubrick,1397895042 +124584,3156,artificial intelligence,1401198238 +124584,3156,future,1401198231 +124584,3156,sci-fi,1401198218 +124584,3156,science fiction,1401198228 +124584,3198,based on a book,1401195229 +124584,3198,based on a true story,1401195226 +124584,3198,escape,1401195245 +124584,3504,Atmospheric,1398672456 +124584,3504,cynical,1398672471 +124584,3504,politics,1398672445 +124584,3504,satire,1398672448 +124584,3504,television,1398672439 +124584,6902,mindfuck,1400488180 +124584,6902,road trip,1400488189 +124584,6902,self discovery,1400488187 +124584,6902,surreal,1400488195 +124584,55908,entirely dialogue,1397751374 +124584,55908,excellent script,1397751408 +124584,55908,immortality,1397751367 +124584,55908,philosophical,1397751350 +124584,55908,psychological,1397751355 +124584,55908,religion,1397751353 +124584,55908,thought-provoking,1397751386 +124584,55908,unique,1397751383 +124584,66097,adapted from:book,1397749968 +124584,66097,alternate reality,1397749923 +124584,66097,based on a book,1397749920 +124584,66097,claymation,1397750000 +124584,66097,storytelling,1397750029 +124584,66097,Surreal,1397749909 +124584,66097,talking animals,1397749939 +124584,66097,Tim Burton,1397749943 +124584,66097,visually stunning,1397749988 +124584,68237,artificial intelligence,1397894353 +124584,68237,mindfuck,1397894365 +124584,68237,plot twist,1397894362 +124584,68237,space,1397894355 +124584,68237,thought-provoking,1397894367 +124584,68237,twist ending,1397894360 +124584,68954,animation,1398672592 +124584,68954,father-son relationship,1398672610 +124584,71106,surreal,1399893899 +124584,72226,based on a book,1397750235 +124584,72226,great cast,1397750299 +124584,72226,hilarious,1397750361 +124584,72226,mature kids,1397750255 +124584,72226,morally counterintuitive,1397750279 +124584,72226,Roald Dahl,1397750239 +124584,72226,stop motion,1397750343 +124584,72226,visually appealing,1397750324 +124584,111622,music,1414859434 +124594,260,Star Wars,1439789469 +124598,10,James Bond,1139047196 +124598,107,treasure,1368385809 +124598,593,Hannibal Lecter,1139046753 +124598,1200,Alien,1139047874 +124598,1214,Alien,1139047843 +124598,1291,treasure,1368385809 +124598,1320,Alien,1139047813 +124598,1690,Alien,1139047892 +124598,1722,James Bond,1139047206 +124598,2022,jesus,1368385786 +124598,2115,treasure,1368385809 +124598,2376,James Bond,1139047149 +124598,2405,treasure,1368385809 +124598,2617,treasure,1368385809 +124598,2947,James Bond,1139047241 +124598,2948,James Bond,1139047176 +124598,2949,James Bond,1139047082 +124598,2989,James Bond,1139047126 +124598,2990,James Bond,1139047691 +124598,2991,James Bond,1139047249 +124598,2993,James Bond,1139047281 +124598,3082,James Bond,1139047220 +124598,3633,James Bond,1139047286 +124598,3635,James Bond,1139047141 +124598,3638,James Bond,1139047299 +124598,3639,James Bond,1139047307 +124598,3984,James Bond,1139047231 +124598,4005,James Bond,1139047124 +124598,4148,Hannibal Lecter,1139046831 +124598,4210,Hannibal Lecter,1139046952 +124598,5135,bollywood,1368385751 +124598,5630,Hannibal Lecter,1139046901 +124598,5872,James Bond,1139047314 +124598,6539,treasure,1368385809 +124598,7318,jesus,1368385785 +124598,7569,James Bond,1139047474 +124598,7570,James Bond,1139047292 +124598,7573,James Bond,1139047184 +124598,8810,Alien,1139047859 +124598,49272,James Bond,1164012726 +124598,53123,good music,1248597913 +124598,53123,London,1248597921 +124598,53123,Oscar (Best Music - Original Song),1248597909 +124598,53123,realistic,1248597939 +124598,69526,audience intelligence underestimated,1248598092 +124598,69526,bad plot,1248598072 +124598,69526,Funny,1248598150 +124598,69526,plot holes,1248598079 +124598,69526,ridiculous,1248598104 +124598,69844,Daniel Radcliffe,1248597789 +124598,69844,Direction,1248597826 +124611,260,classic,1438348265 +124611,260,seventies,1438348278 +124616,1253,black and white,1392504097 +124616,1253,dated directing,1392504110 +124616,1253,sci-fi,1392504157 +124616,1253,science fiction,1392504160 +124616,1625,psychological,1384154768 +124616,1625,thriller,1384154775 +124616,1625,twist ending,1384154773 +124616,1625,Unrealistic Ending,1384154823 +124616,6303,sci-fi,1392534874 +124616,6303,slow,1392534866 +124616,45186,action,1382247398 +124616,45186,better than expected,1382247401 +124616,45186,J.J. Abrams,1382247410 +124616,45186,Michelle Monaghan,1382247418 +124616,71535,Bill Murray,1393751338 +124616,71535,campy,1393751341 +124616,71535,Emma Stone,1393751385 +124616,71535,Woody Harrelson,1393751691 +124616,71535,zombies,1393751394 +124616,80917,creative,1398913095 +124616,80917,realism,1398913085 +124616,93363,better than expected,1388297378 +124616,93363,fantasy,1388297388 +124616,93363,great ending,1388297397 +124616,93363,lame title,1388297403 +124616,93363,sci-fi,1388297408 +124616,93475,atmospheric,1390122029 +124616,93475,ghosts,1390122041 +124616,93475,Rebecca Hall,1390122021 +124616,93475,twist ending,1390122043 +124616,98239,better than expected,1388730299 +124616,102125,action,1382247452 +124616,102125,Gwyneth Paltrow,1382247476 +124616,102125,Robert Downey Jr.,1382247481 +124616,103228,aliens,1383410444 +124616,103228,anime,1383410439 +124616,103228,bad plot,1383410455 +124616,103228,plot holes,1383410466 +124616,103228,silly,1383410430 +124616,103228,torrential downpour,1383410427 +124616,103228,visually appealing,1383410419 +124616,103253,science fiction,1387461371 +124616,103306,aliens,1382247342 +124616,103306,hard science fiction,1382247346 +124616,103339,anti-military,1384154410 +124616,103339,liberal perspective,1384154396 +124616,104243,aliens,1390033675 +124616,104243,Vin Diesel,1390033703 +124616,105653,prison escape,1392504023 +124616,106002,children acting like adults,1388902703 +124616,106002,cliche characters,1388902706 +124616,110407,artificial intelligence,1398530210 +124616,110407,science fiction,1398530207 +124617,318,Amazing,1303089049 +124617,6867,magical,1302228734 +124617,55280,cute,1302215790 +124617,55280,sweet,1302215775 +124617,55280,well acted,1302215798 +124617,66915,Silly,1308712761 +124624,260,George Lucas,1433340181 +124624,260,sci-fi,1433340170 +124641,85438,faithful to book,1304252542 +124644,260,classic,1436017681 +124644,260,romance,1436017652 +124644,260,Science Fiction,1436017646 +124644,260,space action,1436017695 +124644,260,space adventure,1436017659 +124644,942,classic,1436018676 +124644,942,haunting,1436018705 +124644,942,murder mystery,1436018682 +124644,942,romance,1436018668 +124655,1923,comedy,1311523647 +124655,7361,nonlinear,1311523610 +124655,7361,psychology,1311523603 +124655,7361,surreal,1311523608 +124655,56367,comedy,1311523587 +124655,56367,cult film,1311523597 +124655,69122,comedy,1311523640 +124662,260,action,1441983674 +124662,260,adventure,1441983680 +124662,260,fun,1441983684 +124662,260,space,1441983704 +124670,47,twist ending,1318513415 +124670,44665,twist ending,1332806327 +124670,47610,twist ending,1420247860 +124670,71838,violent,1317778741 +124670,86911,Zach Galifianakis,1319668726 +124670,117529,Chris Pratt,1435096787 +124670,117529,dinosaurs,1435096784 +124670,117529,science,1435096798 +124714,593,based on a book,1429767307 +124714,593,psychothriller,1429767307 +124714,593,suspense,1429767307 +124719,2019,samurai,1372761407 +124747,112183,emma stone,1435417644 +124747,112183,michael keaton,1435417644 +124747,112183,oscar (best picture),1435417644 +124753,1203,negotiation,1448600566 +124753,1307,friendzone,1448600414 +124804,260,the force,1432109437 +124804,260,x wing,1432109443 +124830,102123,hilarious,1436976004 +124845,148976,comics,1450638994 +124856,803,relationships,1367943403 +124856,923,Rosebud,1367945149 +124856,1203,great acting,1367943471 +124856,1234,great acting,1367943471 +124856,1617,great ending,1367943554 +124856,1931,oscar (best directing),1367943350 +124856,1945,great acting,1367943471 +124856,2095,family,1367943536 +124856,2924,Jackie Chan Comedy,1158285120 +124856,3467,oscar (best directing),1367943350 +124856,3646,comedy,1367943212 +124856,3674,family,1367943536 +124856,4226,great ending,1367943554 +124856,4387,action,1367943384 +124856,4565,action,1367943384 +124856,4887,action,1367943384 +124856,4928,cerebral,1367943603 +124856,4987,awful...just awful,1146354540 +124856,5250,comedy,1367943212 +124856,5313,action,1367943384 +124856,5942,comedy,1367943212 +124856,6062,Plotless Wonder,1146348933 +124856,6270,visually appealing,1367943450 +124856,6774,weird,1367943432 +124856,6777,dramatic,1367943369 +124856,7117,horror,1367943514 +124856,7560,dramatic,1367943369 +124856,7706,Classic Marx,1158285338 +124856,8042,oscar (best directing),1367943350 +124856,8370,Blind Swordsman,1146349325 +124856,8464,Killing with Kindness,1146349276 +124856,8531,comedy,1367943212 +124856,8542,Funniest Movies,1146349737 +124856,8578,cult classic,1367943486 +124856,30812,wasted potential,1146349213 +124856,31150,Bakshi,1182892566 +124856,33158,action,1367943384 +124856,33312,Classic Marx,1158284837 +124856,33312,talky,1367943573 +124856,34530,comedy,1367943212 +124856,36517,Le Carre's Best Film,1146349422 +124856,37736,story,1367943588 +124856,40962,family,1367943536 +124856,44665,great ending,1367943554 +124856,44709,mentor,1367943182 +124856,45003,horror,1367943513 +124856,47423,Addiction,1165287304 +124856,47610,great ending,1367943554 +124856,47970,relationships,1367943403 +124856,53125,paycheck,1182892129 +124856,66097,storytelling,1367943247 +124856,79357,storytelling,1367943247 +124856,82242,original,1367943114 +124856,90647,story,1367943588 +124856,90746,storytelling,1367943247 +124856,95875,action,1367943383 +124856,98154,oscar (best directing),1367943350 +124856,98809,storytelling,1367943247 +124856,98961,dramatic,1367943369 +124856,109487,Lame,1430580508 +124878,260,saga,1439958063 +124878,260,space epic,1439958069 +124918,260,fantasy,1444713458 +124918,260,the classic sci fi movie. must see.,1444713473 +124921,260,sci-fi,1438093105 +124921,260,Star Wars,1438093096 +124930,208,adventure,1286238272 +124930,208,dystopia,1286238251 +124930,208,dystopic future,1286238259 +124930,208,post-apocalyptic,1286238224 +124930,208,survival,1286238288 +124930,1035,musical,1285101056 +124930,1215,adventure,1285099086 +124930,1215,awesomeness,1285099003 +124930,1215,Bruce Campbell,1285098946 +124930,1215,campy,1285098661 +124930,1215,chainsaw,1285098989 +124930,1215,claymation,1285099029 +124930,1215,dark humor,1286236952 +124930,1219,Alfred Hitchcock,1285098588 +124930,1219,classic,1285098605 +124930,1219,tense,1285098609 +124930,1644,Jennifer Love Hewitt,1286237825 +124930,1644,suspense,1286237835 +124930,1974,campy,1286237755 +124930,1974,classic,1286237780 +124930,1974,horror,1286237776 +124930,1974,slasher,1286237755 +124930,1975,campy,1286237661 +124930,1975,Jason Vorhees,1286237652 +124930,1975,slasher,1286237656 +124930,1976,campy,1286237623 +124930,1976,cheesy,1286237612 +124930,1976,Jason Vorhees,1286237602 +124930,1976,slasher,1286237590 +124930,1981,cheesy,1286237517 +124930,1981,Jason Vorhees,1286237535 +124930,1981,plot,1286237555 +124930,1981,punching heads off,1286237517 +124930,1981,ridiculous,1286237550 +124930,1982,Donald Pleasence,1285099138 +124930,1982,horror,1285099143 +124930,1982,John Carpenter,1285099122 +124930,1982,silent killer,1285099160 +124930,1982,slasher,1285099169 +124930,1983,Donald Pleasence,1286237723 +124930,1983,Halloween,1286237729 +124930,1983,Michael Myers,1286237702 +124930,1983,sequel,1286237684 +124930,1983,slasher,1286237707 +124930,1983,suspense,1286237715 +124930,1984,misleading name,1286237462 +124930,1984,Ruined the franchise,1286237427 +124930,2080,animation,1286238401 +124930,2080,Disney,1285101027 +124930,2096,Disney,1285101036 +124930,2338,Jennifer Love Hewitt,1286237869 +124930,2338,suspense,1286237875 +124930,2565,musical,1285101011 +124930,3074,mountain man,1288657241 +124930,3074,survivalist,1288657240 +124930,3843,campy,1286237323 +124930,3843,cheesy,1286237327 +124930,3843,horror,1286237346 +124930,3843,wtf ending,1286237313 +124930,4878,thought-provoking,1285098635 +124930,5833,atmospheric,1286237002 +124930,5833,campy,1286237021 +124930,5833,cult,1286237005 +124930,5833,fun,1286236989 +124930,5833,horror,1286236993 +124930,5833,survival,1286236997 +124930,6615,corny,1286237929 +124930,6615,horror,1286237947 +124930,6615,Jason Vorhees,1286237914 +124930,6707,Cerina Vincent,1286237246 +124930,6707,crazy,1286237238 +124930,6707,gore,1286237282 +124930,6707,gruesome,1286237294 +124930,6707,pancakes,1286237275 +124930,7387,apocalypse,1286236845 +124930,7387,END OF THE WORLD,1286236810 +124930,7387,gruesome,1286236824 +124930,7387,survival,1286236785 +124930,7387,survivalist,1286236800 +124930,35957,Cillian Murphy,1285100744 +124930,35957,Rachel McAdams,1285100741 +124930,35957,suspense,1285100765 +124930,43608,survival,1286578533 +124930,48774,Clive Owen,1285098485 +124930,48774,dystopia,1285098453 +124930,48774,future,1285098503 +124930,48774,survival,1285098481 +124930,52328,Cillian Murphy,1285100694 +124930,55282,Josh Hartnett,1286237115 +124930,55282,remote location,1286237152 +124930,55282,survival,1286237124 +124930,56174,post-apocalyptic,1286237981 +124930,56174,survival,1286238001 +124930,57368,Handycam,1286238035 +124930,63072,depressing,1285100546 +124930,63072,dystopia,1285100487 +124930,63072,Pointless,1285100509 +124930,63072,post-apocalyptic,1285100488 +124930,68237,isolation,1285100670 +124930,68237,Sam Rockwell,1285100658 +124930,74685,survival,1286237062 +124930,74685,zombies,1286237072 +124957,260,director-screenwriter,1443820868 +124957,260,high-tech,1443820858 +124971,260,good story,1435935074 +124971,260,interesting,1435935063 +124976,260,scifi cult,1437130841 +124987,832,Car chase,1199775046 +124987,2161,Childhood nightmares,1199775495 +124987,4929,Racist As hell,1194495659 +124987,54648,POS movie,1199776440 +124987,55820,coen brothers,1199772861 +124987,56805,Terrible,1207534776 +124996,7063,Werner Herzog,1245494405 +125078,246,Documentary,1143585497 +125078,515,Anthony Hopkins,1143585467 +125078,515,Emma Thompson,1143585467 +125078,515,romance,1143585467 +125078,596,animated,1143585423 +125078,596,Children,1143585423 +125078,596,fantasy,1143585423 +125078,596,musical,1143585423 +125078,1204,desert,1143585247 +125078,1204,war,1143585247 +125078,1250,Alec Guiness,1143585557 +125078,1250,Oscar (Best Picture),1143585614 +125078,1250,war,1143585181 +125078,1250,World War II,1143585181 +125078,7153,CGI,1143585305 +125078,7153,fantasy,1143585349 +125078,7153,Peter Jackson,1143585305 +125098,1299,tag,1427700552 +125098,2324,tag,1427700464 +125109,106489,too long,1391099007 +125114,260,George Lucas,1441546588 +125114,260,sci-fi,1441546558 +125136,81564,anti-hero,1434647905 +125138,50,Kevin Spacey,1439387678 +125138,50,twist ending,1439387680 +125156,356,classic,1421951749 +125156,356,feel-good,1421951749 +125156,356,tom hanks,1421951749 +125156,59387,beautiful,1421951836 +125156,59387,cinematography,1421951852 +125156,59387,imagination,1421951841 +125156,59387,visually stunning,1421951839 +125160,47,serial killer,1217071062 +125160,318,prison,1217070448 +125160,356,Tom Hanks,1217071235 +125160,393,video game adaptation,1217225847 +125160,508,Oscar (Best Actor),1217071305 +125160,1213,mafia,1217070312 +125160,1266,Oscar (Best Picture),1217248335 +125160,1485,jim carrey,1217189317 +125160,1497,Jean-Claude Van Damme,1217225804 +125160,2502,satire,1217887450 +125160,2542,British,1217318379 +125160,2542,Guy Ritchie,1217318377 +125160,2858,suburbia,1217071143 +125160,3160,Philip Seymour Hoffman,1217232156 +125160,3285,not one boring mistake,1217240335 +125160,3328,mafia,1217226683 +125160,3328,samurai,1217226681 +125160,3439,adapted from:comic,1217192876 +125160,3578,Russell Crowe,1217071326 +125160,4034,drugs,1219884639 +125160,4239,Johnny Depp,1219884793 +125160,4262,mafia,1217070482 +125160,4735,Jason Statham,1222700001 +125160,4776,Oscar (Best Actor),1217071353 +125160,4975,remake,1217232068 +125160,5152,Vietnam War,1217327466 +125160,5388,Robin Williams,1217070543 +125160,5400,Morgan Freeman,1217240456 +125160,5504,Robert Rodriguez,1217225779 +125160,6323,twist ending,1217888099 +125160,6565,true story,1221394645 +125160,6595,Samuel L. Jackson,1217326597 +125160,6874,Quentin Tarantino,1217188858 +125160,7153,fantasy,1217071278 +125160,7175,motorcycle,1217225819 +125160,7317,road trip,1217236847 +125160,8373,nicole kidman,1217248499 +125160,27831,drugs,1221394311 +125160,33166,Oscar (Best Picture),1217071255 +125160,34319,action,1217192342 +125160,40148,gangs,1218805377 +125160,43908,Drugs,1225284684 +125160,46578,road trip,1217189817 +125160,48385,road trip,1217191726 +125160,49822,Central Intelligence Agency,1217239925 +125160,51077,Comic Book,1217227039 +125160,54999,Paul Giamatti,1217189020 +125160,55118,organized crime,1225284816 +125160,55267,Steve Carell,1217886940 +125160,55272,drugs,1219884692 +125160,55290,R,1217248261 +125160,55765,based on a true story,1219884527 +125160,55946,ClearPlay,1217225758 +125160,55946,debate,1217225749 +125160,55946,Iraq War,1217225748 +125160,55946,no plot,1217225750 +125160,55946,R,1217225753 +125160,56757,Musical,1217192771 +125160,58559,superhero,1219615588 +125160,59016,Keanu Reeves,1221394418 +125160,60074,Will Smith,1217192243 +125182,2122,creepy,1351735338 +125182,2122,nebraska,1351735360 +125182,31203,broken lizard,1424920516 +125182,31203,colgate,1424920516 +125182,31203,rugby,1424920516 +125182,48626,Cosmos,1354735091 +125182,48626,Football,1354735025 +125182,48626,Franz Beckenbauer,1354735058 +125182,48626,Futbol,1354735014 +125182,48626,New York Sports,1354735073 +125182,48626,Pele,1354735049 +125182,48626,Soccer,1354735005 +125182,48626,sports documentary,1354735036 +125182,97615,CLASS DIFFERENCES,1350510210 +125182,97615,coming of age,1350510156 +125182,97615,fast food,1350510189 +125182,97615,iowa,1350510156 +125182,97615,mississippi river,1350510172 +125182,97715,actors from the wire,1350939119 +125182,97886,Dream Sequence,1351648493 +125182,97886,heart break,1351648446 +125182,97886,Portland,1351648459 +125182,97886,uplifting,1351648507 +125182,97906,30 rock,1351713141 +125182,97906,carnival,1351713136 +125182,97906,idiot friend,1351713158 +125182,97908,coming of age,1351713468 +125182,97908,high school,1351713463 +125182,97908,prostitution,1351713473 +125182,98626,Chloe Sevigny,1354734692 +125182,98626,Judy Greer,1354734700 +125182,98626,loser,1354734730 +125182,98626,Patrick Wilson,1354734678 +125182,98626,Pregnancy,1354734711 +125182,102672,indepth,1424025511 +125182,102672,PBS,1369275393 +125182,102672,ric burns,1369275382 +125182,102672,robert caro,1424025511 +125182,102672,robert moses,1424025511 +125182,104155,larry david,1376975261 +125182,108577,Boston,1390884267 +125182,108577,Charlestown,1390884276 +125182,108577,Drugs,1390884281 +125182,108577,Oxycontin,1390884302 +125182,115538,lance armstrong,1437191946 +125182,115538,sports documentary,1437192002 +125182,122900,comic book,1437608079 +125182,122900,superhero,1437608077 +125182,130466,90s,1428612090 +125182,130466,duke,1428612085 +125182,132074,adiction,1428584485 +125182,132074,baseball,1428584446 +125182,132074,beastie boys,1428584461 +125182,132074,documentary,1428584441 +125182,132074,drugs,1428584473 +125182,132074,sports,1428584448 +125182,132555,30 for 30,1437284429 +125182,132555,basketball,1437284436 +125182,132555,documentary,1437284434 +125182,132555,espn,1437284427 +125182,132555,new york knicks,1437284433 +125182,132555,reggie miller,1437284430 +125182,132557,ice cube,1429741720 +125182,132557,los angeles,1429741708 +125182,132557,n.w.a.,1429741716 +125182,132557,raiders,1429741711 +125182,132559,30 for 30,1437284774 +125182,132559,documentary,1437284777 +125182,132559,espn,1437284779 +125182,132559,fantasy baseball,1429741968 +125182,132559,rotisserie,1429741961 +125182,132559,sports,1437284775 +125182,132561,30 for 30,1429742091 +125182,132561,detroit pistons,1429742073 +125182,132561,sports documentary,1429742082 +125182,132590,documentary,1437666975 +125182,132590,football,1437666989 +125182,132590,sports,1437666967 +125182,134710,documentary,1433824563 +125182,134710,road film,1433824573 +125182,134710,stand up,1433824555 +125182,139086,30 for 30,1437284105 +125182,139086,documentary,1437284125 +125182,139086,espn,1437284109 +125182,139086,sports,1437284120 +125182,139088,30 for 30,1437284321 +125182,139088,documentary,1437284324 +125182,139088,espn,1437284327 +125182,139088,sports,1437284326 +125182,139090,30 for 30,1437284378 +125182,139090,documentary,1437284384 +125182,139090,espn,1437284380 +125182,139090,sports,1437284382 +125182,139092,30 for 30,1437284822 +125182,139092,documentary,1437284827 +125182,139092,espn,1437284824 +125182,139092,sports,1437284826 +125182,139094,30 for 30,1437285018 +125182,139094,documentary,1437285022 +125182,139094,espn,1437285016 +125182,139094,sports,1437285020 +125182,139096,30 for 30,1437285070 +125182,139096,documentary,1437285073 +125182,139096,espn,1437285068 +125182,139096,sports,1437285071 +125182,139098,30 for 30,1437285126 +125182,139098,documentary,1437285131 +125182,139098,espn,1437285127 +125182,139098,sports,1437285129 +125182,139100,30 for 30,1437285250 +125182,139100,documentary,1437285253 +125182,139100,eson,1437285205 +125182,139100,espn,1437285248 +125182,139100,sports,1437285252 +125182,139606,cycling,1437662595 +125182,139606,documentary,1437662602 +125182,139606,sports,1437662600 +125183,597,story-plot,1349758798 +125217,6,Al Pacino,1377859765 +125217,6,atmospheric,1377859791 +125217,6,crime,1377859776 +125217,6,great acting,1377859774 +125217,6,philosophy,1377859797 +125217,6,professionals,1377859821 +125217,6,Robert De Niro,1377859769 +125217,6,suspense,1377859779 +125217,6,tense,1377859781 +125217,32,adventure,1391726496 +125217,32,dystopia,1391726500 +125217,32,genetics,1391726503 +125217,32,time travel,1391726513 +125217,35,bisexual,1373647815 +125217,35,character driven,1373647784 +125217,35,Character study,1373647784 +125217,35,homosexuality,1373647815 +125217,35,intense,1373647825 +125217,35,polyamory,1373647754 +125217,35,sad,1373647825 +125217,50,complicated,1373919250 +125217,50,ensemble cast,1373919193 +125217,50,Gabriel Byrne,1373919225 +125217,50,heist,1373919195 +125217,50,Kevin Spacey,1373919207 +125217,50,organized crime,1373919204 +125217,111,assassination,1392063587 +125217,111,atmospheric,1392063541 +125217,111,cult film,1392063615 +125217,111,disturbing,1392063589 +125217,111,insanity,1392063592 +125217,111,Jodie Foster,1392063594 +125217,111,loneliness,1392063604 +125217,111,mental illness,1392063598 +125217,111,New York,1392063580 +125217,111,New York City,1392063583 +125217,111,psychology,1392063607 +125217,111,Robert De Niro,1392063543 +125217,111,social commentary,1392063578 +125217,162,artist mind,1371762846 +125217,162,biography,1371762848 +125217,162,comic book,1371762851 +125217,162,cynical,1371762855 +125217,162,disturbing,1371762836 +125217,239,cartoon,1368099746 +125217,246,coming of age,1394993620 +125217,246,documentary,1394993620 +125217,246,high school,1394993629 +125217,246,sports,1394993625 +125217,246,too long,1394993616 +125217,337,bittersweet,1365279694 +125217,337,brothers,1365279697 +125217,337,coming of age,1365279685 +125217,337,dysfunctional family,1365279716 +125217,337,Johnny Depp,1365279699 +125217,337,Leonardo DiCaprio,1365279702 +125217,337,mental disability,1365279688 +125217,337,mental illness,1365279690 +125217,337,predictable,1365279730 +125217,337,siblings,1365279704 +125217,355,cartoon,1368099746 +125217,423,irish accent,1368099475 +125217,431,Al Pacino,1380315461 +125217,431,bad ending,1380315551 +125217,431,chase,1380315510 +125217,431,gangster,1380315517 +125217,431,hysterical,1380315539 +125217,431,mafia,1380315514 +125217,431,Nudity (Topless),1380315512 +125217,431,Sean Penn,1380315474 +125217,431,trains,1380315507 +125217,436,erotic,1368099709 +125217,537,erotic,1368099709 +125217,541,androids,1430612268 +125217,541,artificial intelligence,1430612274 +125217,541,based on a book,1430612288 +125217,541,Cinematography,1430612314 +125217,541,classic,1430612272 +125217,541,cyberpunk,1430612275 +125217,541,dystopia,1430612278 +125217,541,existentialism,1430612294 +125217,541,film noir,1430612300 +125217,541,future,1430612280 +125217,541,futuristic,1430612283 +125217,541,memory,1430612285 +125217,541,neo-noir,1430612298 +125217,541,slow paced,1430612290 +125217,541,stylized,1430612265 +125217,541,Vangelis,1430612292 +125217,562,adolescence,1384890884 +125217,562,adolescence is hell,1384890886 +125217,562,bullying,1384890903 +125217,562,depressing,1384890890 +125217,562,disturbing,1384890892 +125217,562,school drama,1384890894 +125217,562,Ugly main character,1384890896 +125217,608,black comedy,1382385824 +125217,608,Coen Brothers,1382385816 +125217,608,crime,1382385820 +125217,608,dark comedy,1382385822 +125217,608,kidnapping,1382385818 +125217,608,strange,1382385838 +125217,760,german,1368099314 +125217,858,classic,1351344696 +125217,858,Nudity (Topless),1351344690 +125217,953,black and white,1357493323 +125217,953,Christmas,1357493309 +125217,953,sentimental,1357493319 +125217,991,irish accent,1368099475 +125217,1023,cartoon,1368099745 +125217,1041,bad acting,1383852176 +125217,1041,chick flick,1383852176 +125217,1193,Jack Nicholson,1369433601 +125217,1193,mental illness,1369433625 +125217,1193,psychological,1369433619 +125217,1203,courtroom,1353100645 +125217,1203,courtroom drama,1353100626 +125217,1203,good dialogue,1353100636 +125217,1203,group psychology,1353100702 +125217,1203,PEER PRESSURE,1353100702 +125217,1203,social commentary,1353100648 +125217,1203,thought-provoking,1353100651 +125217,1213,gritty,1427575626 +125217,1213,mafia,1427575619 +125217,1222,boot camp,1364932894 +125217,1222,dialogue,1364932901 +125217,1222,Vietnam,1364932896 +125217,1227,violence,1339325770 +125217,1246,boarding school,1377637627 +125217,1246,Coming of age,1377637643 +125217,1246,education,1377637630 +125217,1246,friendship,1377637645 +125217,1246,high school,1377637646 +125217,1246,school drama,1377637639 +125217,1258,disturbing,1393539321 +125217,1258,ghosts,1393539307 +125217,1258,suspense,1393539314 +125217,1258,visually appealing,1393539318 +125217,1260,atmospheric,1377718983 +125217,1260,black and white,1377718995 +125217,1263,atmospheric,1401570722 +125217,1263,Christopher Walken,1401570611 +125217,1263,cinematography,1401570662 +125217,1263,friendship,1401570616 +125217,1263,Robert De Niro,1401570618 +125217,1263,suspense,1401570620 +125217,1263,Vietnam,1401570622 +125217,1263,Vietnam War,1401570624 +125217,1263,visually appealing,1401570722 +125217,1357,classical music,1383339926 +125217,1357,father-son relationship,1383339929 +125217,1357,insanity,1383339930 +125217,1357,Jews,1383339966 +125217,1357,mental hospital,1383339932 +125217,1357,music,1383339959 +125217,1357,musicians,1383339960 +125217,1357,Oscar (Best Actor),1383339968 +125217,1357,Psychiatry,1383339956 +125217,1357,schizophrenia,1383339953 +125217,1358,beautiful photography,1378763644 +125217,1358,Billy Bob Thornton,1378763592 +125217,1358,disability,1378763563 +125217,1358,emotion,1378763566 +125217,1358,good soundtrack,1378763626 +125217,1358,Memorable Characters,1378763568 +125217,1358,mental illness,1378763574 +125217,1406,Borderline Personality Disorder,1380401465 +125217,1406,LIVING WITH DISABILITY,1380401443 +125217,1406,WOMEN'S FRIENDSHIP,1380401450 +125217,1610,action,1409175879 +125217,1610,cia,1409175881 +125217,1610,claustrophobic,1409175882 +125217,1610,cold war,1409175904 +125217,1610,espionage,1409175901 +125217,1610,ominous,1409175898 +125217,1610,Race against time,1409175884 +125217,1610,spies,1409175887 +125217,1610,submarine,1409175889 +125217,1610,tense,1409175891 +125217,1610,thriller,1409175892 +125217,1610,War,1409175894 +125217,1625,action,1379017861 +125217,1625,atmosphere,1379017848 +125217,1625,complicated,1379017853 +125217,1625,Michael Douglas,1379017828 +125217,1625,mindfuck,1379017830 +125217,1625,Mystery,1379017821 +125217,1625,neo-noir,1379017825 +125217,1625,paranoia,1379017868 +125217,1625,plot twist,1379017874 +125217,1625,psychological,1379017832 +125217,1625,Sean Penn,1379017833 +125217,1625,surprise ending,1379017838 +125217,1625,suspense,1379017885 +125217,1625,thriller,1379017882 +125217,1627,associations,1384203533 +125217,1627,Billy Bob Thornton,1384203505 +125217,1627,black comedy,1384203481 +125217,1627,Sean Penn,1384203486 +125217,1635,bad plot,1384645136 +125217,1635,dysfunctional family,1384645116 +125217,1635,superficial,1384645149 +125217,1635,understated,1384645124 +125217,1653,atmospheric,1381567063 +125217,1653,dystopia,1381567041 +125217,1653,ethics,1381567057 +125217,1653,future,1381567043 +125217,1653,genetic engineering,1381567045 +125217,1653,genetic selection,1381567049 +125217,1653,genetics,1381567047 +125217,1729,CRIME GONE AWRY,1389029780 +125217,1729,dark comedy,1389029777 +125217,1729,great acting,1389029783 +125217,1729,great soundtrack,1389029774 +125217,1729,Quentin Tarantino,1389029767 +125217,1729,Tarantino,1389029769 +125217,1732,Coen Brothers,1373549150 +125217,1732,cult film,1373549154 +125217,1835,tear jerker,1368099353 +125217,1921,bad go moves,1335042738 +125217,1921,go game,1335042726 +125217,1921,mental illness,1335042677 +125217,1956,guilt,1368099933 +125217,1958,Jack Nicholson,1335050829 +125217,1958,sentimental,1335050837 +125217,1958,tear jerker,1335050833 +125217,1958,Texas,1335050855 +125217,2022,Bible,1342818405 +125217,2022,Christianity,1342818397 +125217,2064,capitalism,1370121902 +125217,2064,documentary critique,1370121912 +125217,2064,Michael Moore,1370121904 +125217,2085,cartoon,1368099746 +125217,2106,germany,1368099819 +125217,2114,bad acting,1389794483 +125217,2114,cheesy,1389794472 +125217,2114,Coming Of Age,1389794441 +125217,2132,dialogue driven,1360270412 +125217,2132,husband-wife relationship,1360270392 +125217,2132,psychological,1360270396 +125217,2132,real-life married couple,1360270400 +125217,2132,relationships,1360270408 +125217,2132,superb acting,1360270410 +125217,2195,comedy,1368099637 +125217,2297,afterlife,1373647972 +125217,2297,ghosts/afterlife,1373647975 +125217,2297,heaven and hell,1373647977 +125217,2297,tear jerker,1373647986 +125217,2318,child abuse,1376253836 +125217,2318,dark,1376253853 +125217,2318,dysfunctional family,1376253838 +125217,2318,immigrants,1376253859 +125217,2318,loneliness,1376253841 +125217,2318,Philip Seymour Hoffman,1376253843 +125217,2318,relationships,1376253845 +125217,2318,social commentary,1376253864 +125217,2329,brother-brother relationship,1382212880 +125217,2329,brothers,1382212880 +125217,2329,cinematography,1382212858 +125217,2329,friendship,1382212861 +125217,2329,male nudity,1382212879 +125217,2329,racism,1382212830 +125217,2329,rape,1382212890 +125217,2329,social commentary,1382212839 +125217,2329,stylized,1382212841 +125217,2329,thought-provoking,1382212837 +125217,2329,violence,1382212886 +125217,2360,disturbing,1351344794 +125217,2360,family,1351344792 +125217,2360,family relationships,1351344798 +125217,2360,father-son relationship,1351344787 +125217,2360,incest,1351344833 +125217,2360,male nudity,1351344805 +125217,2360,psychological,1351344813 +125217,2360,racism,1351344831 +125217,2360,secrets,1351344788 +125217,2360,sexual abuse,1351344828 +125217,2360,siblings,1351344822 +125217,2391,Billy Bob Thornton,1383947642 +125217,2391,noir,1383947669 +125217,2391,Tragedy,1383947649 +125217,2575,boring,1389905451 +125217,2575,drab,1389905419 +125217,2575,strange,1389905451 +125217,2575,talky,1389905424 +125217,2575,understated,1389905437 +125217,2575,WOMEN'S FRIENDSHIP,1389905428 +125217,2579,atmospherically beautiful,1380827701 +125217,2579,black and white,1380827698 +125217,2579,mindfuck,1380827707 +125217,2579,neo-noir,1380827710 +125217,2579,noir,1380827713 +125217,2579,not linear,1380827688 +125217,2579,Twist Ending,1380827725 +125217,2594,better than the american version,1355352746 +125217,2594,mindfuck,1355352729 +125217,2594,psychology,1355352740 +125217,2594,Spain,1355352733 +125217,2594,Twist ending,1355352712 +125217,2607,adolescence gays,1394660810 +125217,2607,coming of age,1394660818 +125217,2607,coming out,1394660811 +125217,2607,gay,1394660819 +125217,2607,high school,1394660813 +125217,2652,horror,1368099401 +125217,2671,British,1426799156 +125217,2671,chick flick,1426799145 +125217,2671,England,1426799152 +125217,2671,Hugh Grant,1426799139 +125217,2671,Julia Roberts,1426799143 +125217,2671,romance,1426799161 +125217,2712,atmospheric,1393884827 +125217,2712,Christmas,1393884858 +125217,2712,disturbing,1393884856 +125217,2712,dreamlike,1393884829 +125217,2712,dreams,1393884861 +125217,2712,Nicole Kidman,1393884864 +125217,2712,notable soundtrack,1393884831 +125217,2712,psychological,1393884833 +125217,2712,sexuality,1393884836 +125217,2712,Stanley Kubrick,1393884849 +125217,2712,surreal,1393884854 +125217,2712,thriller,1393884852 +125217,2732,atmospheric,1370128592 +125217,2732,friendship,1370128638 +125217,2732,love triangles,1370128595 +125217,2732,reflective,1370128603 +125217,2750,boring,1390570440 +125217,2894,erotic,1368099709 +125217,2966,boring,1384979943 +125217,2966,lawn mower,1384979946 +125217,3006,Al Pacino,1382224745 +125217,3006,business,1382224771 +125217,3006,Business is the antagonist,1382224769 +125217,3006,corporations,1382224752 +125217,3006,corruption,1382224753 +125217,3006,docudrama,1382224755 +125217,3006,intelligent,1382224757 +125217,3006,journalism,1382224759 +125217,3006,media,1382224761 +125217,3039,Business is the antagonist,1357493352 +125217,3039,poverty,1357493358 +125217,3039,Wall Street,1357493365 +125217,3105,memory loss,1382130421 +125217,3105,oliver sachs,1382130403 +125217,3105,psychiatrist as protagonist,1382130416 +125217,3105,Psychiatry,1382130424 +125217,3105,sad,1382130478 +125217,3186,depression,1382130527 +125217,3186,Interesting,1382130531 +125217,3186,Mental Hospital,1382130535 +125217,3186,mental illness,1382130504 +125217,3186,psychiatry,1382130507 +125217,3186,psychology,1382130510 +125217,3246,crap ending,1430956618 +125217,3246,racism,1430956616 +125217,3253,nerds,1365298193 +125217,3253,Saturday Night Live,1365298170 +125217,3253,teen,1365298174 +125217,3259,girlie movie,1391034770 +125217,3259,Ireland,1391034767 +125217,3259,Nicole Kidman,1391034765 +125217,3259,Romance,1391034772 +125217,3259,Tom Cruise,1391034763 +125217,3470,70mm,1378589154 +125217,3470,friendship,1378589159 +125217,3470,nature,1378589150 +125217,3470,Russia,1378589146 +125217,3470,Siberia,1378589139 +125217,3470,Sovscope 70,1378589152 +125217,3476,alternate reality,1387967422 +125217,3476,flashbacks,1387967424 +125217,3476,hallucination,1387967420 +125217,3476,insanity,1387967433 +125217,3476,mental illness,1387967435 +125217,3476,multiple realities,1387967426 +125217,3476,paranoia,1387967427 +125217,3476,psychiatry,1387967429 +125217,3505,80s,1409349642 +125217,3505,Cold War,1409349605 +125217,3505,conspiracy,1409349609 +125217,3505,cover up,1409349611 +125217,3505,Kevin Costner,1409349612 +125217,3505,murder,1409349623 +125217,3505,political corruption,1409349615 +125217,3505,secrets,1409349617 +125217,3505,surprise ending,1409349618 +125217,3505,thriller,1409349620 +125217,3505,twist ending,1409349621 +125217,3594,ballet,1372870732 +125217,3594,chick flick,1372870734 +125217,3594,dance,1372870735 +125217,3594,Romance,1372870741 +125217,3646,comedy,1368099637 +125217,3707,erotic,1368099709 +125217,3730,boring,1379611287 +125217,3730,slow,1380315584 +125217,3892,horror,1368099402 +125217,3967,ballet,1351291657 +125217,3967,boxing,1351345015 +125217,3967,coming of age,1351291661 +125217,3967,dance,1351291664 +125217,3967,england,1351345176 +125217,3967,self discovery,1351291668 +125217,3967,tear jerker,1351291683 +125217,3983,family,1355594295 +125217,3983,j.s. bach,1355594319 +125217,3983,mother-son relationship,1355594297 +125217,3983,realistic,1355594302 +125217,3983,SIBLING RELATIONSHIPS,1355594289 +125217,3983,small town,1355594306 +125217,3983,sweet,1355594304 +125217,3985,german,1368099315 +125217,4054,ballet,1372967639 +125217,4054,dance,1372967640 +125217,4054,dance movie,1372967642 +125217,4054,hip hop,1372967646 +125217,4226,amnesia,1351344648 +125217,4226,complicated,1351344644 +125217,4226,memory,1351344641 +125217,4226,nonlinear,1351344650 +125217,4226,psychological,1351344652 +125217,4226,psychology,1351344654 +125217,4226,tense,1351344657 +125217,4271,boring,1383511778 +125217,4283,uncomprehensible,1342377475 +125217,4720,afterlife,1352748610 +125217,4720,gothic,1352748621 +125217,4720,haunted house,1352748613 +125217,4720,Horror,1352748569 +125217,4720,rolling eyes,1352748590 +125217,4776,bad acting,1354652512 +125217,4776,implausible,1354652564 +125217,4873,boring,1403630040 +125217,4878,cult film,1369924081 +125217,4878,mental illness,1369924075 +125217,4878,psychology,1369924070 +125217,4881,Beethoven,1384041863 +125217,4881,Billy Bob Thornton,1384041801 +125217,4881,black and white,1384041798 +125217,4881,Coen Brothers,1384041799 +125217,4881,great cinematography,1384041805 +125217,4881,unusual,1384041810 +125217,4903,austere,1385669525 +125217,4903,harbour,1385669561 +125217,4903,somber,1385669529 +125217,5015,Billy Bob Thornton,1395615189 +125217,5015,death penalty,1395615194 +125217,5015,racism,1395615199 +125217,5015,small town,1395615202 +125217,5015,suicide,1395615201 +125217,5015,want to see again,1395615211 +125217,5105,DEATH OF A CHILD,1378836137 +125217,5105,gothic,1378836128 +125217,5105,NIGHTMARE VACATIONS,1378836133 +125217,5225,coming of age,1349967209 +125217,5225,erotic,1349967184 +125217,5225,Mexican,1349967218 +125217,5250,comedy,1368099637 +125217,5377,british comedy,1373647870 +125217,5377,chick flick,1373647892 +125217,5377,coming of age,1373647892 +125217,5377,dysfunctional family,1373647866 +125217,5377,Hugh Grant,1373647862 +125217,5377,romance,1373647875 +125217,5377,satirical,1373647883 +125217,5377,whimsical,1373647881 +125217,5388,guilt,1368099933 +125217,5419,cartoon,1368099745 +125217,5546,horror,1368099401 +125217,5617,controversial,1392063675 +125217,5617,Maggie Gyllenhaal,1392063663 +125217,5673,hallucinatory,1354477036 +125217,5673,SIBLING RELATIONSHIPS,1354477043 +125217,5693,ballet,1372364581 +125217,5693,dance movie,1372364560 +125217,5693,gritty,1372364556 +125217,5791,accident,1401657279 +125217,5791,spain,1401656982 +125217,5791,surreal,1401656967 +125217,5791,surrealism,1401656968 +125217,5812,1950s,1370121811 +125217,5812,bad acting,1370121824 +125217,5812,homophobia,1370121830 +125217,5812,secrets,1370121816 +125217,5812,stylized,1370121822 +125217,5812,unrequited love,1370121820 +125217,5881,aliens,1381944521 +125217,5881,based on a book,1381944543 +125217,5881,cinematography,1381944517 +125217,5881,existentialism,1381944558 +125217,5881,George Clooney,1381944526 +125217,5881,memory,1381944527 +125217,5881,metaphysics,1381944556 +125217,5881,Nudity (Rear),1381944549 +125217,5881,philosophy,1381944530 +125217,5881,psychology,1381944529 +125217,5881,remake,1381944554 +125217,5881,romance,1381944567 +125217,5881,sci-fi,1381944534 +125217,5881,space,1381944532 +125217,5881,suicide,1381944537 +125217,5881,surreal,1381944540 +125217,5902,black comedy,1364933649 +125217,5902,dark comedy,1364933647 +125217,5902,melancholy,1364933632 +125217,5902,Meryl Streep,1364933635 +125217,5902,quirky,1364933642 +125217,5902,surreal,1364933643 +125217,5942,comedy,1368099637 +125217,5954,crime,1383927585 +125217,5954,depressing,1383927583 +125217,5954,drugs,1383927586 +125217,5954,Edward Norton,1383927569 +125217,5954,Philip Seymour Hoffman,1383927573 +125217,5954,powerful ending,1383927578 +125217,5954,psychology,1383927581 +125217,5992,depression,1393357388 +125217,5992,intellectual,1393357371 +125217,5992,mental illness,1393357370 +125217,5992,Meryl Streep,1393357375 +125217,5992,Nicole Kidman,1393357377 +125217,5992,nonlinear,1393357383 +125217,5992,suicide,1393357381 +125217,5992,Virginia Woolf,1393357378 +125217,6235,german,1368099314 +125217,6286,Finnish,1421101750 +125217,6286,finnland,1421101758 +125217,6301,rape,1344714558 +125217,6301,Sexualized violence,1344714560 +125217,6305,dystopia,1380004632 +125217,6305,fascism,1380004636 +125217,6380,guilt,1368099933 +125217,6561,anti-war,1410104834 +125217,6561,nuclear weapons,1410104831 +125217,6660,ballet,1373310141 +125217,6684,homosexuality,1372870811 +125217,6684,Italy,1372870815 +125217,6684,musician,1372870819 +125217,6684,slow,1372870803 +125217,6787,cold war,1409082034 +125217,6787,conspiracy,1409082017 +125217,6787,Dustin Hoffman,1409082015 +125217,6787,investigation,1409082024 +125217,6787,journalism,1409082021 +125217,6787,Politics,1409082019 +125217,6787,Robert Redford,1409082013 +125217,6787,Watergate,1409082044 +125217,6854,cold war,1410203494 +125217,6854,destroyer,1410203495 +125217,6854,ego,1410203497 +125217,6854,Navy,1410203500 +125217,6854,submarine,1410203501 +125217,6854,tense,1410203517 +125217,6867,friendship,1370121771 +125217,6867,interesting characters,1370121768 +125217,6867,loneliness,1370121772 +125217,6867,train,1370121776 +125217,6867,trains,1370121774 +125217,6867,understated,1370121779 +125217,6971,atmospheric,1389300385 +125217,6971,bleak,1389300383 +125217,6971,hallucinatory,1389300389 +125217,6971,trains,1389300394 +125217,6993,great soundtrack,1384714746 +125217,6993,Woody Allen,1384714743 +125217,7008,erotic,1368099709 +125217,7071,claustrophobic,1370991194 +125217,7071,disfunctional family,1370991189 +125217,7071,insanity,1370991198 +125217,7071,intimate,1370991162 +125217,7071,Madness,1370991201 +125217,7071,mental illness,1370991166 +125217,7071,mismatched couple,1370991189 +125217,7090,amazing photography,1395002472 +125217,7090,atmospheric,1395002474 +125217,7090,beautifully filmed,1395002475 +125217,7090,China,1395002477 +125217,7090,cinematography,1395002479 +125217,7090,martial arts,1395002482 +125217,7090,politics,1395002485 +125217,7090,violence,1395002490 +125217,7090,visually appealing,1395002487 +125217,7099,anime,1352236896 +125217,7099,classic,1352236901 +125217,7099,dystopic future,1352236893 +125217,7099,Japan,1352236906 +125217,7099,sci-fi,1352236890 +125217,7117,horror,1368099402 +125217,7126,downbeat,1394484845 +125217,7126,Nudity (Topless - Notable),1394484868 +125217,7126,too long,1394484852 +125217,7136,beautiful cinematography,1380139042 +125217,7136,paris,1380139030 +125217,7136,strange ending,1380139051 +125217,7139,Christmas,1371557532 +125217,7139,emotional,1371502723 +125217,7139,Ireland,1371502688 +125217,7139,Irish,1371502691 +125217,7139,over the top,1371502699 +125217,7139,tear jerker,1371502699 +125217,7158,culture clash,1370128677 +125217,7158,Iran,1370128703 +125217,7158,misunderstanding,1370128690 +125217,7256,disturbing,1354484337 +125217,7256,Friendship,1354484332 +125217,7256,pivotal decision,1354484345 +125217,7256,survival,1354484351 +125217,7333,oldfashioned,1365298286 +125217,7486,argentina,1381567123 +125217,7486,gay,1381567106 +125217,7486,jealousy,1381567108 +125217,7486,male nudity,1381567111 +125217,7572,long monologues,1429104898 +125217,7767,beautiful,1386091648 +125217,7767,bittersweet,1386091650 +125217,7767,epic,1386091658 +125217,7767,Italian,1386091653 +125217,8261,slow,1355778645 +125217,8261,weird,1355778646 +125217,8464,comedy,1352998089 +125217,8464,documentary,1352998060 +125217,8464,Educational,1352998096 +125217,8464,food,1352998086 +125217,8464,obesity,1352998103 +125217,8464,propaganda,1352998075 +125217,8464,social criticism,1352998069 +125217,8531,comedy,1368099637 +125217,8724,long,1378836221 +125217,8784,bittersweet,1384805692 +125217,8784,cinematography,1384805704 +125217,8784,father-son relationship,1384805695 +125217,8784,mental illness,1384805697 +125217,8784,psychology,1384805699 +125217,8784,quirky romantic,1384805702 +125217,8839,horror,1368099401 +125217,8950,creepy,1355851490 +125217,8950,depressing,1355851492 +125217,8950,grim,1355851495 +125217,26394,ballet,1372880314 +125217,26394,dance,1372880318 +125217,26524,documentary,1378836251 +125217,26699,boring,1384457428 +125217,26699,uninteresting,1384457440 +125217,26838,Dublin,1355068577 +125217,26838,father daughter relationship,1355068564 +125217,26838,gossip,1355068571 +125217,26838,working class,1355068568 +125217,26840,violence,1339325805 +125217,27366,based on a book,1382130901 +125217,27366,black and white,1382130898 +125217,27366,giant stuffed whale,1382130894 +125217,27366,magnetic powers,1382130913 +125217,27366,pretentious,1382130914 +125217,27366,slow paced,1382130886 +125217,27366,surreal,1382130909 +125217,27366,The Melancholy of Resistance,1382130891 +125217,27611,androids,1369432721 +125217,27611,cynical,1365765083 +125217,27611,drama,1365765086 +125217,27611,MILITARY LIFE,1365765056 +125217,27611,original,1365765088 +125217,27611,politics,1365765072 +125217,27611,post-apocalyptic,1365765058 +125217,27611,religion,1365765061 +125217,27611,robots,1365765063 +125217,27611,sci-fi,1365765073 +125217,27611,space,1365765065 +125217,27611,thought-provoking,1365765090 +125217,27611,visually appealing,1365765093 +125217,27862,Africa,1389029843 +125217,27862,civil war,1389029869 +125217,27862,fish out of water,1389029845 +125217,27862,immigrants,1389029850 +125217,27862,sudan,1388615447 +125217,30749,ethnic conflict,1376227139 +125217,31956,nonlinear,1392747642 +125217,32770,brothers,1351344855 +125217,32770,family,1351344859 +125217,32770,family dynamics,1351344853 +125217,32770,posttraumatic stress disorder,1351344902 +125217,32770,psychology,1351344916 +125217,32792,boring,1394654213 +125217,33880,deadpan,1377208108 +125217,33880,overrated,1377208116 +125217,33880,quirky,1377208099 +125217,33880,SUBURBAN DYSFUNCTION,1377208103 +125217,33880,weird,1377208120 +125217,34155,abuse,1384980035 +125217,34155,FAMILIES IN CRISIS,1384979985 +125217,34155,FATHERS AND SONS,1384979987 +125217,34155,humiliation,1384979992 +125217,34155,Liv Ullmann,1384980042 +125217,34155,reflective,1384980039 +125217,34155,slow,1384980072 +125217,34437,Atmospheric,1380837453 +125217,34437,quirky,1380837458 +125217,34437,surreal,1380837461 +125217,34437,understated,1380837463 +125217,34437,unusual,1380837466 +125217,34530,comedy,1368099637 +125217,36276,art house,1353252462 +125217,36276,french suspense,1353252467 +125217,36276,guilt,1353252472 +125217,36276,Haneke,1353252479 +125217,36276,Michael Haneke,1353252476 +125217,36276,non-hollywood ending,1353252484 +125217,36276,talky,1353252488 +125217,36517,Africa,1364933476 +125217,36517,atmospheric,1364933464 +125217,36517,business,1364933480 +125217,36517,corruption,1364933478 +125217,36517,great cinematography,1364933473 +125217,36517,social commentary,1364933467 +125217,36517,tense,1364933469 +125217,36517,visually appealing,1364933471 +125217,37955,art house,1372794101 +125217,37955,ballet,1372794103 +125217,37955,dance,1372794192 +125217,37955,friendship,1372794111 +125217,37955,from the view of children,1372794109 +125217,37955,private school,1372794114 +125217,37955,SEXUAL AWAKENING,1372794124 +125217,37955,teacher student relationship,1372794119 +125217,37955,utopia,1372794122 +125217,38886,1980s,1379101429 +125217,38886,character driven,1379101427 +125217,38886,cinematography,1379101449 +125217,38886,dark comedy,1379101425 +125217,38886,depressing,1379101422 +125217,38886,divorce,1379101423 +125217,38886,dysfunctional family,1379101422 +125217,38886,quirky,1379101416 +125217,38886,relationships,1379101431 +125217,38886,sexuality,1379101438 +125217,38886,writers,1379101439 +125217,39183,bittersweet,1378832771 +125217,39183,great cinematography,1378832774 +125217,39183,great soundtrack,1378832776 +125217,39183,homosexuality,1378832765 +125217,39231,boring,1389822381 +125217,39231,disappointing,1389822383 +125217,39231,Kirsten Dunst,1389822372 +125217,39231,Orlando Bloom,1389822374 +125217,39231,relaxing,1389822378 +125217,39292,politics,1334086870 +125217,39292,understated,1334086877 +125217,40583,caleidoscopial,1378848152 +125217,40583,cerebral,1378931357 +125217,40583,complicated,1378848139 +125217,40583,confrontational,1378848164 +125217,40583,confusion,1378931419 +125217,40583,corruption,1378848159 +125217,40583,espionage,1378848161 +125217,40583,George Clooney,1378931400 +125217,40583,Middle East,1378931386 +125217,40583,multiple storylines,1378848141 +125217,40583,Political,1378848168 +125217,40583,politics,1378931410 +125217,43376,german,1368099314 +125217,44694,secrets,1368099275 +125217,44759,erotic,1368099709 +125217,44966,bully,1389826857 +125217,44966,dogs,1389826855 +125217,44966,oklahoma,1389826852 +125217,45003,horror,1368099401 +125217,45720,fashion,1354915727 +125217,45720,new york city,1354915737 +125217,45720,Paris,1354915740 +125217,46578,dysfunctional family,1371850110 +125217,46578,heartwarming,1371850113 +125217,46578,off-beat comedy,1371850132 +125217,46578,over the top,1371910670 +125217,46578,philosophy,1371850118 +125217,46578,satire,1371850139 +125217,46578,social commentary,1371850136 +125217,46578,superficial,1371910670 +125217,47610,19th century,1394227846 +125217,47610,all spelled out,1394227878 +125217,47610,cinematography,1394227848 +125217,47610,costume drama,1394227850 +125217,47610,Edward Norton,1394227829 +125217,47610,great ending,1394227835 +125217,47610,happy ending,1394227836 +125217,47610,love story,1394227840 +125217,47610,magic,1394227841 +125217,47610,predictable,1394227831 +125217,47610,stage magic,1394227853 +125217,48043,dreamlike,1355594243 +125217,48043,fountain of youth,1355594267 +125217,48043,immortality,1355594259 +125217,48043,multiple storylines,1355594255 +125217,48043,Music,1355594253 +125217,48043,philosophical,1355594245 +125217,48043,religion,1355594270 +125217,48043,thought-provoking,1355594274 +125217,48043,visually appealing,1355594238 +125217,48516,remake,1380753070 +125217,48780,atmospheric,1393275052 +125217,48780,complicated,1393275053 +125217,48780,dark,1393275066 +125217,48780,mystery,1393275065 +125217,48780,nonlinear,1393275054 +125217,48780,philosophy,1393275060 +125217,48780,psychological,1393275058 +125217,48780,revenge,1393275063 +125217,48780,twist ending,1393275061 +125217,51312,Mafia,1365194460 +125217,51312,moving,1365194456 +125217,51455,sudan,1388615516 +125217,52042,male nudity,1343297331 +125217,52042,Nudity (Full Frontal - Notable),1394818880 +125217,52042,Nudity (Full Frontal),1394818882 +125217,52042,Nudity (Rear - Brief),1394818881 +125217,52042,Nudity (Rear),1394818889 +125217,52042,Nudity (Topless - Notable),1394818879 +125217,52042,Nudity (Topless),1394818883 +125217,52042,resistance movement,1343297333 +125217,52319,german,1368099315 +125217,53123,bittersweet,1332570255 +125217,53123,Dublin,1332570304 +125217,53123,Ireland,1332570298 +125217,54286,action,1426808721 +125217,54286,car chase,1426808730 +125217,54286,espionage,1426808717 +125217,54286,Matt Damon,1426808727 +125217,54286,spies,1426808719 +125217,54286,spy,1426808738 +125217,54286,twist ending,1426808724 +125217,54372,atmospheric,1370470955 +125217,54372,French,1370470958 +125217,54372,murder mystery,1370470989 +125217,54881,1980s,1394993550 +125217,54881,competition,1394993552 +125217,54881,documentary,1394993562 +125217,54881,geek,1394993556 +125217,54881,nerds,1394993567 +125217,54881,quirky subculture,1394993557 +125217,55269,brother-brother relationship,1380763041 +125217,55269,dysfunctional family,1380763013 +125217,55269,family dynamics,1380763012 +125217,55269,road movie,1380763047 +125217,55269,road trip,1380763048 +125217,55269,SIBLING RELATIONSHIPS,1380763022 +125217,55269,Train,1380763006 +125217,55269,trains,1380763007 +125217,55286,addiction,1421421530 +125217,55286,family,1421421557 +125217,55286,loss,1421421526 +125217,55286,mourning,1421421545 +125217,55286,nonlinear,1421421561 +125217,55363,based on a true story,1364812654 +125217,55363,beautiful scenery,1364812656 +125217,55363,tense,1364812651 +125217,55363,visually appealing,1364812638 +125217,55363,western,1364812664 +125217,55442,animation,1351345266 +125217,55442,biography,1351345268 +125217,55442,coming of age,1351345272 +125217,55442,Iran,1351345264 +125217,55444,black and white,1390598473 +125217,55444,cinematography,1390598482 +125217,55820,coen brothers,1383682464 +125217,55820,crime,1383682467 +125217,55820,dark,1383682465 +125217,55820,great acting,1383682462 +125217,55820,serial killer,1383682468 +125217,55820,suspense,1383682470 +125217,55820,violent,1383682480 +125217,56367,Ellen Page,1365298128 +125217,56389,road movie,1379843954 +125217,56389,soundtrack,1379843964 +125217,56389,visually appealing,1379843956 +125217,56389,Wong Kar Wai,1379843959 +125217,56515,darfur,1388615592 +125217,56515,sudan,1388615598 +125217,56607,friendship,1368099946 +125217,56607,Middle East,1340011971 +125217,56788,afghanistan,1409089758 +125217,56788,arms dealer,1409089775 +125217,56788,CIA,1409089771 +125217,56788,cold war,1409089770 +125217,56788,Philip Seymour Hoffman,1409089768 +125217,56921,based on a tv show,1369432526 +125217,56921,battlestar galactica,1369432503 +125217,56921,bsg,1369432505 +125217,56921,character drama,1369432521 +125217,56921,Edward James Olmos,1369432501 +125217,56921,lesbian,1369432566 +125217,56921,Mary McDonnell,1369432559 +125217,56921,michelle forbes,1369432619 +125217,56921,sci-fi,1369432490 +125217,56921,space,1369432499 +125217,56921,space opera,1369432628 +125217,56941,Hilary Swank,1333302178 +125217,56941,irish accent,1333302184 +125217,56941,self discovery,1333302198 +125217,57669,beautiful scenery,1391034875 +125217,57669,black comedy,1391034883 +125217,57669,bruges,1391034908 +125217,57669,brugge,1391034892 +125217,57669,friendship,1391034876 +125217,57669,stylized,1391034880 +125217,59313,africa,1389650740 +125217,60766,Obsessed protagonist,1345408028 +125217,60766,suspenseful,1345408032 +125217,61236,animated,1351345210 +125217,61236,animation,1351345212 +125217,61236,autobiography,1351345216 +125217,61236,Biography,1351345219 +125217,61236,Middle East,1351345202 +125217,61236,post-traumatic stress disorder,1351345230 +125217,61236,thought-provoking,1332580919 +125217,61236,touching,1351345207 +125217,62511,confusing,1365194490 +125217,62511,Meta Referential,1365194494 +125217,62511,Schizophrenic,1365194500 +125217,64034,anachronism,1399834783 +125217,64034,British speaking germans,1399834709 +125217,64034,fake,1399834761 +125217,64034,hollywood,1399834726 +125217,64034,no research,1399834761 +125217,64575,Meryl Streep,1380489864 +125217,64575,Philip Seymour Hoffman,1380489863 +125217,64614,Clint Eastwood,1391966654 +125217,64614,culture clash,1391966643 +125217,64614,heartwarming,1391966648 +125217,64620,based on a true story,1408995583 +125217,64620,game,1408995596 +125217,64620,journalism,1408995585 +125217,64620,politics,1408995586 +125217,64620,Suspense,1408995590 +125217,64620,television,1408995592 +125217,64620,true story,1408995588 +125217,66097,alone in the world,1402326425 +125217,66097,animation,1402326412 +125217,66097,Surreal,1402326417 +125217,66371,beautiful scenery,1334086911 +125217,66371,japan,1334086923 +125217,66371,life & death,1334086926 +125217,67255,Nazis,1374696500 +125217,67255,suspense,1374696493 +125217,67997,british,1389390754 +125217,67997,cynical,1389390756 +125217,67997,dialogue,1389390778 +125217,67997,politics,1389390758 +125217,67997,satire,1389390761 +125217,68472,buto,1388615112 +125217,68472,dance,1351344729 +125217,68472,german,1351344760 +125217,68472,germany,1351344742 +125217,68472,japan,1351344725 +125217,68472,sensible,1351344752 +125217,69757,artistic,1383685277 +125217,69757,bad dialogue,1383685297 +125217,69757,chick flick,1383685280 +125217,69757,romance,1383685284 +125217,70432,cold war,1410301641 +125217,70432,thriller,1410301647 +125217,71106,great premise,1367877736 +125217,71106,nerds,1367877724 +125217,71106,shit ending,1367877730 +125217,71106,time travel,1367877727 +125217,71106,watch the credits,1367877743 +125217,71899,asperger syndrome,1397159930 +125217,71899,asperger's syndrome,1397159930 +125217,71899,bittersweet,1397159908 +125217,71899,black comedy,1397159900 +125217,71899,coming of age,1397159905 +125217,71899,dark comedy,1397159912 +125217,71899,friendship,1397159894 +125217,71899,loneliness,1397159915 +125217,71899,mental illness,1397159916 +125217,71899,touching,1397159896 +125217,72249,1920's,1420240962 +125217,72249,ballet,1420240945 +125217,72249,music,1420240938 +125217,72308,bsg,1369432666 +125217,72308,bsg rough summary,1369432682 +125217,72308,character driven,1369432666 +125217,72308,Edward James Olmos,1369432656 +125217,72308,Galactica,1369432687 +125217,72308,lack of story,1369432671 +125217,72308,made for TV,1369432677 +125217,72308,nudity,1369432697 +125217,72308,sci-fi,1369432692 +125217,72308,space,1369432694 +125217,74458,action,1374441079 +125217,74458,insanity,1374441072 +125217,74458,mindfuck,1374441074 +125217,74458,nazis,1374441066 +125217,74458,psychological,1374441069 +125217,74458,World War II,1374441082 +125217,74508,predictable,1365194404 +125217,77596,War,1376638363 +125217,77846,Hollywood,1353176255 +125217,77846,Too Hollywood,1353176255 +125217,78039,depressing,1352979490 +125217,78039,marriage,1352979479 +125217,78039,oral sex,1352979507 +125217,78039,thought provoking,1352979514 +125217,79132,action,1394182907 +125217,79132,alternate reality,1394182920 +125217,79132,dreamlike,1394182932 +125217,79132,heist,1394182910 +125217,79132,Leonardo DiCaprio,1394182922 +125217,79132,suspense,1394182924 +125217,79132,visually appealing,1394182926 +125217,80590,finance,1389905370 +125217,80590,financial crisis,1389905332 +125217,80590,Michael Douglas,1389905302 +125217,80590,money,1389905358 +125217,80590,stock market,1389905337 +125217,80693,coming of age,1392928247 +125217,80693,depression,1392928104 +125217,80693,Keir Gilchrist,1392928268 +125217,80693,mental illness,1392928106 +125217,80693,suicide,1392928108 +125217,80693,touching,1392928111 +125217,80693,Zach Galifianakis,1392928237 +125217,81385,atmospheric,1333923145 +125217,81385,broing plot,1333923191 +125217,81385,visually appealing,1333923162 +125217,83082,american dream,1378159190 +125217,83082,ballet,1378050877 +125217,83082,capitalism,1378159167 +125217,83082,china,1378159167 +125217,83082,communism,1378159167 +125217,85394,boring,1377990395 +125217,85394,cave,1377990419 +125217,85394,ernst reijsiger,1377990451 +125217,85394,human nature,1377990424 +125217,85394,music,1377990443 +125217,85394,prehistoric,1377990426 +125217,86781,disturbing,1395438557 +125217,86781,flashbacks,1395438568 +125217,86781,Middle East,1395438555 +125217,86781,nonlinear,1395438570 +125217,86781,siblings,1395438573 +125217,86781,slow,1395438577 +125217,86781,Unexpected Ending,1395438560 +125217,86882,thought-provoking,1339947548 +125217,86882,Woody Allen,1339947531 +125217,87304,dogs,1391966618 +125217,89638,arthouse,1385586891 +125217,89638,atmospheric,1385586819 +125217,89638,cinematography,1385586819 +125217,89638,Ireland,1385586819 +125217,89638,loneliness,1385586819 +125217,89638,Netherlands,1385586819 +125217,89759,Alzheimer's disease,1384203078 +125217,89759,husband-wife relationship,1384203051 +125217,89759,Iran,1384203055 +125217,89759,Middle East,1384203058 +125217,89759,photography,1384203063 +125217,89759,realism,1384203067 +125217,89759,social commentary,1384203066 +125217,89804,abortion,1379446439 +125217,89804,dialogue,1379446431 +125217,89804,George Clooney,1379446427 +125217,89804,loyalty,1379446429 +125217,89804,politics,1379446416 +125217,89804,Ryan Gosling,1379446425 +125217,89804,scandal,1379446437 +125217,89896,Atmospheric,1381015217 +125217,89896,black and white,1381015404 +125217,89896,cinematography,1381015490 +125217,89896,empty,1381015518 +125217,89896,microcosm,1381015490 +125217,89896,Nietzche,1381015389 +125217,89896,sedate,1381015442 +125217,89896,slow pace,1381015225 +125217,89896,solitude,1381015389 +125217,89896,somber,1381015438 +125217,90357,aggression,1355068692 +125217,90357,drinking,1355068724 +125217,90357,losing control,1355068696 +125217,90357,personal demons,1355068700 +125217,90439,bank,1377637663 +125217,90439,big corporations,1377637683 +125217,90439,corruption,1377637680 +125217,90439,Cynicism,1377637676 +125217,90439,ethics,1377637678 +125217,90439,Kevin Spacey,1377637675 +125217,90439,New York City,1377637687 +125217,90439,tense,1377637671 +125217,91658,rape,1374441097 +125217,93721,craftmanship,1354827485 +125217,93721,documentary,1354827444 +125217,93721,sushi,1354827498 +125217,93721,Tokyo,1354827440 +125217,94959,fantasy,1384714664 +125217,95218,ballet,1372620168 +125217,95218,competition,1372620188 +125217,95218,dance,1372620171 +125217,95218,documentary,1372620178 +125217,95494,ballet,1373404200 +125217,95494,dance,1373404202 +125217,95494,documentary,1373404206 +125217,95494,music,1424164650 +125217,96121,marriage,1399841836 +125217,96121,psychology,1399841836 +125217,96829,child abuse,1374009551 +125217,96829,Community Laws,1374009666 +125217,96829,distrust,1374009587 +125217,96829,hard to watch,1374009633 +125217,96829,Mads Mikkelsen,1374009591 +125217,96829,painful to watch,1374009623 +125217,96829,sexual abuse,1374009565 +125217,96829,Thomas Vinterberg,1374009593 +125217,97304,1980s,1396984702 +125217,97304,cia,1396984700 +125217,97304,espionage,1396984699 +125217,97304,Hollywood,1396984727 +125217,97304,hostage,1396984695 +125217,97304,Iran,1396984693 +125217,97304,Middle East,1396984709 +125217,97304,politics,1396984708 +125217,97304,revolution,1396984709 +125217,97304,suspenseful,1396984696 +125217,97304,tense,1396984711 +125217,97304,thriller,1396984709 +125217,97304,true story,1396984698 +125217,97921,book is better,1371945673 +125217,97921,cliche,1371945679 +125217,97921,dance,1371945647 +125217,97921,family dysfunction,1382033588 +125217,97921,father-son relationship,1382033592 +125217,97921,football,1371945681 +125217,97921,lame ending,1371945695 +125217,97921,loneliness,1371945685 +125217,97921,mental illness,1371945649 +125217,97921,predictable ending,1371945660 +125217,97923,religious overtones,1402397148 +125217,98017,adultery,1395438507 +125217,98017,classical music,1395438430 +125217,98017,father-daughter relationship,1395438507 +125217,98017,mother daughter relationship,1395438508 +125217,98017,philip seymour hoffman,1395438438 +125217,99145,Christmas,1402417189 +125217,99145,death,1402417192 +125217,99145,predictable,1402417186 +125217,99145,tear jerker,1402417206 +125217,99145,touching,1402417197 +125217,99145,tsunami,1402417171 +125217,99145,vacation,1402417181 +125217,100383,business,1406738897 +125217,100383,corruption,1406738899 +125217,100383,doctors,1406738917 +125217,100383,Hitchcockian,1406738914 +125217,100383,Jude Law,1406738935 +125217,100383,medications,1406738906 +125217,100383,psychology,1406738910 +125217,100440,nazis,1430612420 +125217,100440,ultra-violence,1430612421 +125217,100450,action packed,1369083380 +125217,100450,bad acting,1369083327 +125217,100450,cheap sexual tension,1369083354 +125217,100553,documentary,1430251716 +125217,100553,wildlife,1430251719 +125217,100714,marriage,1374696430 +125217,100714,talky,1374696549 +125217,102064,sports,1391966678 +125217,102407,anachronism,1401570750 +125217,102407,disappointing,1401570754 +125217,102407,over-the-top,1401570757 +125217,102407,Period piece,1401570760 +125217,103867,atmospheric,1377723050 +125217,103867,based on a book,1377723048 +125217,103867,beautiful music,1377723105 +125217,103867,beautiful scenery,1377723050 +125217,103867,isolation,1377723074 +125217,103867,love,1377723074 +125217,103867,romantic,1377723093 +125217,103867,solitude,1377723074 +125217,103980,financial crisis,1389873342 +125217,103980,nervous breakdown,1389873333 +125217,103980,tragedy,1389873324 +125217,103980,Woody Allen,1389873321 +125217,104944,Foster Home,1428954588 +125217,105197,family,1406653924 +125217,105197,limited perspective,1406653926 +125217,105197,photography,1406653942 +125217,105197,poignant,1406653928 +125217,105250,psychoanalysis,1428606117 +125217,105257,animals,1421421742 +125217,105257,beautifully filmed,1380577594 +125217,105257,documentary,1421421742 +125217,105257,horses,1380577614 +125217,105257,nature,1380577593 +125217,105257,nature wildlife,1421421742 +125217,105257,Netherlands,1380577636 +125217,105257,Oostvaardersplassen,1380577625 +125217,105257,storytelling,1380577604 +125217,106841,bleak atmosphere,1391459271 +125217,106841,meryl streep,1391459277 +125217,109374,cinematography,1430612188 +125217,109374,eastern europe,1430612199 +125217,109374,europe,1430612201 +125217,109374,great dialogue,1430612193 +125217,109374,quirky,1430612186 +125217,109374,stylized,1430612205 +125217,109374,visually appealing,1430612184 +125217,109374,war,1430612197 +125217,110882,boring,1407423484 +125217,112552,jazz,1426360552 +125217,112552,music,1426360551 +125217,112552,unrealistic,1426360568 +125217,115828,danish,1436960317 +125217,115828,danmark,1436960319 +125217,116797,homosexuality,1428872028 +125217,117533,edward snowden,1430655985 +125241,260,sci-fi,1425974091 +125241,260,space,1425974094 +125241,260,Star Wars,1425974100 +125241,2918,80s,1425975284 +125241,2959,based on a book,1425974033 +125241,2959,dark comedy,1425974016 +125241,2959,mindfuck,1425974040 +125241,2959,twist ending,1425974006 +125244,296,blood,1429244578 +125244,296,guns,1429244578 +125244,296,out of order,1429244578 +125269,58559,Batman,1453043836 +125269,58559,serial killer,1453043847 +125269,58559,superhero,1453043854 +125277,260,Bad acting,1433567334 +125289,1580,sci-fi,1424695899 +125289,1721,true story,1424695776 +125289,6365,sci-fi,1424695959 +125289,72998,3d,1424696078 +125289,72998,effects,1424696078 +125289,72998,sci-fi,1424696067 +125296,4718,funny,1139267449 +125296,4896,magic,1139267381 +125311,2324,melodrama,1426161940 +125311,5218,funny,1426161981 +125311,86332,great performances,1426162029 +125311,86332,super-hero,1426162029 +125311,86332,vikings,1426162029 +125330,260,action,1448802708 +125330,260,fiction,1448802216 +125330,87105,funny,1447988346 +125330,87105,lucky,1447988355 +125370,260,great soundtrack,1440970270 +125370,260,Oscar (Best Costume Design),1440970287 +125372,112946,cute,1425917182 +125372,112946,family,1425917184 +125372,112946,moving,1425917315 +125372,112946,silly,1425917180 +125384,508,denzel washington,1225603974 +125384,8033,peter o'toole,1225603502 +125389,260,good vs evil,1441358899 +125389,260,scifi,1441358890 +125428,260,first of its kind,1439999644 +125428,260,good science fictional technology,1439999665 +125441,110,historical,1433845580 +125441,110,mel gibson,1433845578 +125441,110,Oscar (Best Picture),1433845584 +125441,110,Scotland,1433845589 +125441,356,Oscar (Best Actor),1433845473 +125441,356,psychology,1433845465 +125441,356,romance,1433845462 +125441,356,tom hanks,1433845441 +125441,590,Kevin Costner,1433845547 +125441,590,Oscar (Best Picture),1433845550 +125441,1197,fantasy,1433846683 +125441,1197,romance,1433846676 +125441,3753,history,1433845792 +125441,3753,Mel Gibson,1433845790 +125441,3753,revenge story,1433845795 +125441,6213,Bruce Willis,1433845889 +125455,260,cult classic,1439804489 +125455,260,scifi,1439804481 +125455,260,space epic,1439804497 +125491,2329,Neo-Nazis,1137529620 +125491,5016,Julianne Moore,1137529668 +125491,5992,Julianne Moore,1137529708 +125491,5992,Meryl Streep,1137529718 +125491,5992,Nicole Kidman,1137529718 +125491,33903,good soundtrack,1140380717 +125493,260,sci-fi,1432512153 +125493,260,space opera,1432512183 +125501,2028,best war cinematography,1451168264 +125501,7153,great adaptation,1451168181 +125501,97304,Historically accurate,1451168088 +125501,134130,Relevant,1451168145 +125516,48043,love,1228679010 +125516,48043,mayan,1228679020 +125516,48043,mortality,1228678999 +125525,260,Harrison Ford,1440364184 +125525,260,Star Wars,1440364178 +125537,260,scifi,1432325919 +125545,260,classic sci-fi,1432721731 +125545,260,sci-fi,1432721707 +125562,50,Kevin Spacey,1291884420 +125562,50,organized crime,1291884416 +125562,81,noirish,1278688791 +125562,81,stylish,1278688791 +125562,101,Wes Anderson,1357429398 +125562,175,drugs,1278689032 +125562,175,New York City,1278689023 +125562,175,Nudity (Full Frontal),1278689027 +125562,231,road trip,1291884516 +125562,296,cult film,1278688839 +125562,296,dialogue,1278717291 +125562,296,nonlinear,1278688845 +125562,296,Quentin Tarantino,1278688830 +125562,296,scenic,1278717291 +125562,441,drugs,1291883377 +125562,441,quirky,1291883381 +125562,593,serial killer,1291884506 +125562,608,Coen Brothers,1278688653 +125562,608,dark comedy,1278688658 +125562,632,war movie,1278718492 +125562,714,americana,1278796145 +125562,714,atmospheric,1278796145 +125562,714,great soundtrack,1278796145 +125562,714,imagination,1278796145 +125562,714,Jim Jarmusch,1278796145 +125562,714,road trip,1278796145 +125562,714,strange,1278796145 +125562,714,surreal,1278796145 +125562,714,visionary,1278796145 +125562,714,visually appealing,1278796145 +125562,1232,dystopia,1278688804 +125562,1619,based on a book,1278689095 +125562,1619,Brad Pitt,1278689100 +125562,1619,true story,1278689090 +125562,1732,Coen Brothers,1278688727 +125562,1732,cult film,1291883111 +125562,1732,dark comedy,1278688720 +125562,1913,adapted from:book,1278689016 +125562,1913,Australia,1278689013 +125562,1913,Enigmatic,1278689010 +125562,2288,alien invasion,1278718688 +125562,2288,disturbing,1278718690 +125562,2529,dystopia,1357429756 +125562,2571,dystopia,1291883720 +125562,2571,surreal,1291883712 +125562,2571,virtual reality,1291883716 +125562,2729,romance,1357429454 +125562,2729,Stanley Kubrick,1357429358 +125562,2843,quirky,1278717996 +125562,2921,Clint Eastwood,1278688922 +125562,2921,spaghetti western,1278688925 +125562,2921,surrealism,1278688916 +125562,2924,great Jackie Chan flick,1278689287 +125562,2924,Jackie Chan Comedy,1278689284 +125562,3081,19th century,1278689759 +125562,3081,gothic,1278689759 +125562,3081,Johnny Depp,1278689759 +125562,3081,stylized,1278689759 +125562,3415,enigmatic,1278688610 +125562,3415,meditative,1278688602 +125562,3415,reflective,1278688614 +125562,3415,visually stunning,1278717056 +125562,3476,hallucination,1278689264 +125562,3476,surreal,1278689229 +125562,3476,visionary,1278689264 +125562,3503,atmospheric,1278689331 +125562,3503,space,1278689327 +125562,3556,coming of age,1278718117 +125562,3556,psychology,1278718119 +125562,3627,ghosts,1278718723 +125562,3910,musical,1278689035 +125562,3910,prison,1278689043 +125562,3910,surreal,1278689038 +125562,4027,Coen Brothers,1278688849 +125562,4027,Quirky,1278688855 +125562,4515,Beatles,1278718590 +125562,4515,Biography,1278718599 +125562,4785,atmospheric,1278688629 +125562,4785,cynical,1278688639 +125562,4785,ending twist,1278688646 +125562,4865,19th century,1278689820 +125562,4865,Atmospheric,1278689783 +125562,4865,gothic,1278689820 +125562,4865,psychology,1278689820 +125562,4878,psychology,1278688672 +125562,4878,stylish,1278688690 +125562,4878,surreal,1278688677 +125562,4878,time travel,1278688666 +125562,4927,creepy,1278690107 +125562,4927,disturbing,1278690022 +125562,4927,enigmatic,1278690026 +125562,4927,hallucinatory,1278690032 +125562,4993,fantasy,1291883751 +125562,5026,atmospheric,1278688481 +125562,5026,stylized,1278688487 +125562,5026,werewolf,1278688497 +125562,5137,music documentary,1278718345 +125562,5291,multiple storylines,1278689126 +125562,5291,nonlinear,1278689129 +125562,5291,surreal,1278689119 +125562,5379,anti-Semitism,1278688740 +125562,5379,Ryan Gosling,1278688737 +125562,5379,skinhead,1278688734 +125562,5577,adolescence,1278689279 +125562,5577,Nudity (Topless - Notable),1278689276 +125562,5577,Nudity (Topless),1278689274 +125562,5952,fantasy,1291884231 +125562,5952,multiple storylines,1291884234 +125562,6542,anti-war,1291883370 +125562,6542,Finnish,1278688950 +125562,6542,nature,1291883365 +125562,6542,Russian,1291883374 +125562,6663,slapstick,1278716702 +125562,6890,enigmatic,1278691330 +125562,6890,Gus Van Sant,1278691330 +125562,7153,fantasy,1291883767 +125562,7223,noir,1278717189 +125562,7327,enigmatic,1278689152 +125562,7327,psychology,1278689155 +125562,7347,Johnny Depp,1278688810 +125562,7347,Stephen King,1278688807 +125562,7438,atmospheric,1291884262 +125562,7759,meditative,1278689341 +125562,7759,stylized,1278689338 +125562,7820,disturbing,1278689076 +125562,7820,medieval,1278689087 +125562,7820,psychology,1278689084 +125562,7894,action,1278690094 +125562,7894,wartime,1278690094 +125562,8405,atmospheric,1278688907 +125562,8405,hallucinatory,1278688904 +125562,8405,stylized,1278688911 +125562,8477,memory,1278689143 +125562,8477,narrated,1278689135 +125562,8477,time travel,1278689138 +125562,8484,World War II,1278718829 +125562,8540,war,1278716841 +125562,25793,dreamlike,1278689361 +125562,26150,atmospheric,1278689008 +125562,26150,disturbing,1278689002 +125562,26258,atmospheric,1278689319 +125562,26258,surreal,1278689315 +125562,27834,brother-brother relationship,1291883043 +125562,27834,childhood,1291883047 +125562,27834,cinematography,1278717022 +125562,27834,island,1291883053 +125562,27834,psychology,1278688590 +125562,27834,road trip,1278688583 +125562,27834,tense,1278688596 +125562,31952,dark comedy,1278688995 +125562,31952,subway,1291883064 +125562,31952,surreal,1278688995 +125562,31952,surrealism,1278688995 +125562,31952,trains,1278688958 +125562,32375,browbeatingly boring,1291883468 +125562,32892,black and white,1278689173 +125562,32892,visually appealing,1278689218 +125562,32892,war,1278689179 +125562,32892,World War II,1278689176 +125562,33124,World War II,1278796232 +125562,33340,japanese,1278718813 +125562,36535,Great Soundtrack,1278718096 +125562,41336,anti-religion,1353200079 +125562,42094,existentialism,1278688561 +125562,42094,Spain,1278688566 +125562,42094,Spanish Civil War,1278688576 +125562,42783,avante garde,1352235280 +125562,42783,folklore,1352235280 +125562,42783,love story,1291883039 +125562,42783,nature,1352235280 +125562,42783,surreal,1352235280 +125562,42783,visually stunning,1352235280 +125562,45440,black comedy,1278708876 +125562,48394,stylized,1278717733 +125562,48394,surreal,1278717733 +125562,48394,visually appealing,1278717733 +125562,49394,anti-religion,1278718415 +125562,49615,Chinese,1278689558 +125562,49615,chinese humor,1278689558 +125562,49615,Chinese landscapes,1278689558 +125562,50259,lazy,1278691475 +125562,50259,nature,1278691475 +125562,50259,road trip,1278691475 +125562,50259,scenery,1278691475 +125562,53447,based on a book,1278703264 +125562,53447,murder,1278703268 +125562,53447,skateboarding,1278703249 +125562,53519,dialogue,1278717629 +125562,53519,stylish,1278717629 +125562,53519,stylized,1278717629 +125562,55247,based on a book,1278688897 +125562,55247,based on a true story,1278688894 +125562,55247,road trip,1278688891 +125562,55820,based on a book,1278688868 +125562,55820,Coen Brothers,1278717375 +125562,55820,twist ending,1278688863 +125562,56367,comedy,1278688879 +125562,56367,cult film,1278688884 +125562,56367,pregnancy,1278688873 +125562,61024,Seth Rogen,1278689385 +125562,63062,angelina jolie,1278689056 +125562,63062,based on a true story,1278689048 +125562,63062,Clint Eastwood,1278689059 +125562,67255,computers,1278718361 +125562,67734,quirky,1278689298 +125562,68157,Quentin Tarantino,1291884247 +125562,72011,based on a book,1278688750 +125562,72011,George Clooney,1278688753 +125562,72011,loneliness,1278688747 +125562,72605,Natalie Portman,1278689351 +125562,78160,british comedy,1278717970 +125562,94018,alien invasion,1357429367 +125587,4878,high school,1393699624 +125598,858,Classic Mafia,1442767158 +125615,3730,Gene Hackman,1444595211 +125615,3730,paranoia,1444595208 +125615,86781,deep,1437817396 +125615,86781,intelligent,1437817396 +125615,86781,social,1437817396 +125615,122882,action,1436977447 +125615,122882,cars,1436977447 +125615,122882,distopian,1436977447 +125660,1249,sexy,1186439145 +125660,1267,Political,1186439161 +125660,2424,Romance,1186439117 +125660,3033,goofy,1186439114 +125660,3755,Action,1186439173 +125660,3911,dark comedy,1186439133 +125660,4246,Unorganized,1186439111 +125660,7438,kickass,1186439113 +125682,318,classic,1439263761 +125682,318,friendship,1439263751 +125682,318,inspirational,1439263738 +125682,318,prison,1439263718 +125682,7153,Adventure,1439263823 +125682,7153,lord of the rings,1439263831 +125682,7153,magic,1439263815 +125682,7153,mystic warriors,1439263838 +125693,8807,marijuana,1336846057 +125693,8807,neil patrick harris,1336846057 +125693,8807,NPH,1336846057 +125693,8807,stoner comedy,1336846057 +125693,8807,stoner movie,1336846057 +125693,61024,stoner movie,1336845958 +125693,71535,dark humor,1336845857 +125693,71535,emma stone,1336845857 +125693,71535,post-apocaplyptic,1336845857 +125693,71535,zombies,1336845857 +125693,93510,high school comedy,1336845219 +125693,93510,jonah hill,1336845219 +125693,93510,weed,1336845219 +125701,260,space action,1443460500 +125730,60684,dialog,1242020664 +125730,60684,plot,1242020664 +125730,105429,economics,1381336540 +125737,260,force,1436757179 +125737,260,jedi,1436757190 +125737,260,lightsabers,1436757172 +125740,2571,action,1423608606 +125740,2571,alternate reality,1423608691 +125740,2571,artificial intelligence,1423608637 +125740,2571,computers,1423608695 +125740,2571,cyberpunk,1423608599 +125740,2571,hackers,1423608640 +125740,2571,Keanu Reeves,1423608625 +125740,2571,martial arts,1423608611 +125740,2571,philosophical,1423608608 +125740,2571,philosophy,1423608644 +125740,2571,sci-fi,1423608615 +125740,2571,stylized,1423608636 +125740,2571,thought-provoking,1423608687 +125740,2571,virtual reality,1423608613 +125740,2571,Wachowski Brothers,1423608698 +125753,260,adventure,1440738053 +125753,260,classic sci-fi,1440738045 +125753,497,beautiful,1440740267 +125753,565,Criterion,1442021257 +125753,903,Atmospheric,1440906068 +125753,1230,Woody Allen,1442075944 +125753,1660,100 Essential Female Performances,1441937007 +125753,1913,dreamlike,1441937070 +125753,2010,classic,1440741148 +125753,4447,feminism,1440741357 +125753,4973,atmospheric,1441936729 +125753,4973,beautifully filmed,1440740005 +125753,4973,fairy tale,1441936727 +125753,4973,great soundtrack,1441936723 +125753,4973,stylized,1441936720 +125753,6299,Good Documentary,1444532463 +125753,6299,nature,1444532466 +125753,6299,oscar (best cinematography),1444532460 +125753,7713,atmospheric,1440740224 +125753,8957,gore,1442019608 +125753,8957,torture,1442019602 +125753,25954,Criterion,1440740995 +125753,51255,british comedy,1442106004 +125753,60756,Seth Rogen,1441936362 +125753,60756,will ferrell,1441936349 +125753,86882,Woody Allen,1441936251 +125753,109374,visually appealing,1441936707 +125753,118900,female protagonist,1444531761 +125753,119141,James Franco,1444532324 +125753,119141,Seth Rogen,1444532319 +125753,122882,action,1440739863 +125753,122882,adventure,1440739849 +125753,122882,feminism,1440739844 +125753,122882,feminist,1442671401 +125753,122882,great soundtrack,1440739858 +125753,122882,visually appealing,1440739853 +125818,6705,amazing,1156895319 +125821,364,africa,1264416649 +125821,364,animals,1264416654 +125821,364,Disney,1264416642 +125821,380,action,1264417793 +125821,380,Arnold Schwarzenegger,1264417790 +125821,380,comedy,1264417777 +125821,380,terrorism,1264417788 +125821,1573,John Travolta,1264417493 +125821,3114,computer animation,1264416708 +125821,3114,Disney,1264416723 +125821,3114,Oscar Nominee,1264416716 +125821,5816,based on a book,1264417350 +125821,5816,fantasy,1264417358 +125821,5816,harry potter,1264417355 +125821,27523,korean,1264416877 +125821,40815,based on a book,1264417323 +125821,46322,blindness,1264416993 +125821,72378,audience intelligence underestimated,1264416394 +125821,72378,Excellent FXs,1264416427 +125821,72378,thriller,1264416397 +125821,72407,Nikki Reed,1264417254 +125821,72407,Robert Pattinson,1264417248 +125821,72605,easily confused with other movie(s) (title),1264416845 +125821,72998,3d,1264417137 +125821,72998,graphic design,1264417132 +125821,72998,military,1264417143 +125821,72998,music,1264417145 +125821,72998,war,1264417140 +125854,260,sci-fi,1432437684 +125854,260,space opera,1432437692 +125856,1231,Movie I didn't watch to the end,1157689427 +125856,33836,Movie I didn't watch to the end,1157689397 +125859,114459,teen angst,1423274095 +125859,114459,twist ending,1423274095 +125859,114459,weird,1423274095 +125882,41285,love affair,1444383458 +125882,48696,adultery,1444383919 +125885,837,children,1186803763 +125885,1876,disaster,1186803973 +125885,2116,epic,1186803753 +125885,2424,romance,1186803950 +125885,3825,romantic comedy,1186803855 +125885,3948,comedy,1186803937 +125885,5444,animation,1186803834 +125885,6157,comic book,1186803828 +125894,260,sci-fi,1444808846 +125894,260,space adventure,1444808858 +125905,8784,watch this,1431288063 +125905,87234,great soundtrack,1431287666 +125905,96821,bittersweet,1431288090 +125905,96821,depression,1431288090 +125905,96821,Emma Watson,1431288090 +125905,96821,touching,1431288095 +125908,60069,Pixar,1378454692 +125910,260,classic sci-fi,1437660613 +125910,260,future,1437660625 +125942,130634,action,1430847212 +125942,130634,great soundtrack,1430847212 +125942,130634,humorous,1430847212 +125965,1221,100 Greatest Movies,1433654923 +125965,1221,Mafia,1433654861 +125965,1221,organized crime,1433654874 +125965,3949,dark,1433655225 +125965,3949,drugs,1433655246 +125965,3949,psychology,1433655220 +125965,3949,R:intense depiction of drug addiction,1433655279 +125965,3949,social commentary,1433655213 +125972,48738,disturbing,1400098337 +125974,260,blockbuster,1444779963 +125974,260,great story,1444779912 +125974,260,space action,1444779943 +126004,593,cannibalism,1437406947 +126004,593,psychological,1437406947 +126004,593,tense,1437406947 +126008,31435,inspirational,1320547494 +126008,31435,James McAvoy,1320547479 +126008,80969,atmospheric,1320542252 +126008,80969,bad adaptation,1320542256 +126008,80969,boarding school,1320542265 +126008,80969,chick flick,1320542258 +126008,80969,children,1320542260 +126008,80969,cinematography,1320542270 +126008,80969,depressing,1320542268 +126008,80969,disturbing,1320542273 +126008,80969,emotional,1320542271 +126008,80969,England,1320542274 +126008,80969,great acting,1320542277 +126008,80969,love story,1320542279 +126008,80969,sad,1320542281 +126008,80969,sexuality,1320542292 +126008,80969,slow,1320542294 +126008,80969,thought-provoking,1320542297 +126016,260,Boring,1437407860 +126024,296,cool style,1433609573 +126024,296,dark humor,1433609573 +126024,296,violent,1433609573 +126058,260,sci-fi,1434848640 +126058,260,space adventure,1434848646 +126076,27801,action,1386841772 +126076,27801,buddhism,1386841835 +126076,27801,friendship,1386841811 +126076,27801,martial arts,1386841764 +126076,27801,muay thai,1386841824 +126076,27801,no plot,1386841806 +126076,27801,out-of-water,1386841808 +126076,27801,stunts,1386841783 +126076,27801,violence,1386841800 +126076,27801,wheelchair badass,1386841797 +126090,318,drama,1433498206 +126090,318,friendship,1433498206 +126090,318,prison,1433498206 +126090,508,dramatic,1433498577 +126090,593,cannibalism,1431785408 +126090,593,horror,1431785408 +126090,593,serial killer,1431785408 +126090,1610,setting:submarine,1429459218 +126090,3873,female protagonist,1433498362 +126090,3873,revenge,1433498390 +126090,4308,musical,1433498592 +126090,4802,comedy,1429443678 +126090,4802,setting:submarine,1429443673 +126090,5617,bdsm,1433498268 +126090,5617,dark comedy,1433498275 +126090,5630,Hannibal Lecter,1433498292 +126090,5630,psychology,1433498297 +126090,5630,serial killer,1433498295 +126090,6196,Jet Li,1433498478 +126090,8361,Environmental,1433498320 +126090,8361,global warming,1433498316 +126090,8361,propaganda,1433498325 +126090,8874,black comedy,1433498235 +126090,8874,parody,1433498238 +126090,8874,satire,1433498243 +126090,54999,ridiculous,1433498459 +126090,54999,satire,1433498455 +126090,68941,rape scene,1248943207 +126090,69844,harry potter,1433498407 +126090,69844,magic,1433498404 +126090,83134,black comedy,1433498219 +126090,83134,satire,1433498223 +126090,97913,nostalgic,1433498539 +126090,97913,video games,1433498536 +126090,97921,great characters,1433498648 +126090,116797,autism,1433498506 +126090,116797,cryptography,1430052511 +126090,116797,genius,1430052532 +126090,116797,mathematics,1430052524 +126091,96829,mob mentality,1445056670 +126119,42730,emotional,1150250058 +126119,52604,adultery,1186714034 +126119,52604,murder,1186714032 +126119,52604,netflix,1186714036 +126128,924,philosophical,1416916759 +126128,924,Stanley Kubrick,1416916857 +126128,2395,clever,1399431889 +126128,2395,witty,1399431883 +126128,2712,dreams,1440534901 +126128,55118,atmospheric,1405860313 +126128,55118,mafia,1405860310 +126128,55118,Russian mafia,1405860304 +126128,55118,Viggo Mortensen,1405860320 +126128,72913,communism,1432887769 +126128,72913,Soviet Union,1432887772 +126128,107196,animation,1420446256 +126128,107196,philosophical,1420446256 +126128,107196,quirky,1420446256 +126132,63113,James Bond,1232015940 +126138,34437,Bill Murray,1447939077 +126138,133771,absurdist humor,1447937992 +126138,133771,innovative idea,1447938016 +126173,64957,buttons,1232000779 +126173,73290,Loyalty,1272348589 +126173,81537,banal moral,1313098688 +126173,81537,comedy,1313098691 +126173,81537,Robert Downey Jr.,1313098692 +126173,81562,brave boy,1296168282 +126196,111,Jodie Foster,1298668403 +126196,111,Martin Scorsese,1298668403 +126196,111,Robert De Niro,1298668403 +126196,1228,Joe Pesci,1298668430 +126196,1228,Martin Scorsese,1298668430 +126196,1228,Robert De Niro,1298668430 +126196,1997,child abuse,1299704955 +126196,1997,effective,1299704956 +126196,1997,horror,1299704956 +126196,1997,offensive,1299704955 +126196,1997,religion,1299704955 +126196,1997,scary,1299704956 +126196,1997,sick,1299704955 +126196,3683,actors,1299796784 +126196,3683,Coen Brothers,1299796784 +126196,3683,Frances McDormand,1299796784 +126196,3742,baby,1299796255 +126196,3742,mute,1299796254 +126196,3742,odessa,1299796255 +126196,3742,odessa steps,1299796255 +126196,3742,Old,1299796254 +126196,3742,revolution,1299796255 +126196,4226,Guy Pearce,1298668485 +126196,4226,twist ending,1298668484 +126196,5319,Gastón Pauls,1298668485 +126196,5319,Ricardo Darin,1298668485 +126196,7132,chico marx,1299882016 +126196,7132,Groucho Marx,1299882016 +126196,7132,Harpo Marx,1299882016 +126196,7132,music,1299882016 +126196,30707,boxing,1299449001 +126196,30707,Clint Eastwood,1299449001 +126196,30707,Hilary Swank,1299449001 +126196,30707,Morgan Freeman,1299449001 +126196,50068,Clint Eastwood,1300349439 +126196,50068,Deep,1300349439 +126196,50068,japanese,1300349439 +126196,50068,truth,1300349439 +126196,71579,Alfred Molina,1299362742 +126196,71579,bad message,1299362742 +126196,71579,Carey Mulligan,1299362742 +126196,71579,nothing happens,1299362742 +126196,71579,Peter Sarsgaard,1299362742 +126196,81591,ballet,1298596923 +126196,81591,dark,1298596927 +126196,81591,Mila Kunis,1298596905 +126196,81591,Natalie Portman,1298596883 +126196,81591,Preeettyyy,1298596910 +126196,81591,thriller,1298596936 +126196,81591,Winona Ryder,1298596939 +126196,82459,Coen Brothers,1299164652 +126196,82459,Hailee Steinfeld,1299164664 +126196,82459,Jeff Bridges,1299164643 +126196,82459,Josh Brolin,1299164645 +126196,82459,Matt Damon,1299164633 +126200,260,all-time great,1430235577 +126200,260,classic,1430235557 +126200,260,cult classic,1430235563 +126200,260,sci-fi,1430235548 +126200,260,space opera,1430235552 +126209,318,atmospheric,1452104785 +126209,318,based on a book,1452104789 +126209,318,Best Movie Ever,1452104670 +126209,318,classic,1452104708 +126209,318,drama,1452104781 +126209,318,friendship,1452104695 +126209,318,great acting,1452104787 +126209,318,great ending,1452104710 +126209,318,heartwarming,1452104760 +126209,318,hope,1452104718 +126209,318,imdb top 250,1452104796 +126209,318,inspirational,1452104696 +126209,318,justice,1452104753 +126209,318,Morgan Freeman,1452104700 +126209,318,narrated,1452104798 +126209,318,powerful ending,1452104758 +126209,318,prison,1452104773 +126209,318,prison escape,1452104775 +126209,318,redemption,1452104720 +126209,318,reflective,1452104783 +126209,318,revenge,1452104793 +126209,318,Stephen King,1452104778 +126209,318,thought-provoking,1452104686 +126209,318,Tim Robbins,1452104800 +126209,318,twist ending,1452104705 +126209,4993,Adventure,1452105022 +126209,4993,atmospheric,1452105027 +126209,4993,beautifully filmed,1452105025 +126209,4993,ensemble cast,1452105048 +126209,4993,epic,1452105029 +126209,4993,epic adventure,1452105057 +126209,4993,great soundtrack,1452105037 +126209,4993,music,1452105040 +126209,7153,Adventure,1452104940 +126209,7153,atmospheric,1452104958 +126209,7153,ensemble cast,1452104979 +126209,7153,epic,1452104967 +126209,7153,epic adventure,1452104976 +126209,7153,fantasy,1452104938 +126209,7153,great ending,1452104948 +126209,7153,great soundtrack,1452104970 +126209,7153,imdb top 250,1452104982 +126209,7153,lord of the rings,1452104974 +126209,7153,multiple storylines,1452104964 +126209,7153,mythology,1452104988 +126209,7153,stylized,1452104985 +126209,7153,The third part of the best movie ever!!!!,1452105003 +126209,7153,Tolkien,1452104958 +126209,7502,friendship,1452104894 +126209,7502,great show,1452104921 +126209,7502,realistic,1452104871 +126209,7502,though provoking,1452104875 +126209,7502,touching,1452104883 +126209,7502,true story,1452104871 +126209,7502,World War II,1452104894 +126248,6874,bloody,1428354230 +126248,6874,suspense,1428354253 +126255,136020,"bond, james bond",1446801787 +126265,1777,chick flick,1144616227 +126265,3160,highly symbolic,1145648907 +126276,2858,soundtrack,1438260213 +126276,3949,soundtrack,1438260203 +126276,4226,Mindfuck,1438260249 +126278,1473,Dean Cain,1274206737 +126280,260,sci-fi,1435430947 +126288,58559,Christian Bale,1243071571 +126292,8368,magic,1139082234 +126292,40815,magic,1139082229 +126317,260,classic,1435971386 +126317,260,Every nerd should have seen more than once,1435971391 +126341,5618,Miyazaki,1139930493 +126413,51540,crime,1446644026 +126413,51540,detective,1446644018 +126418,1653,dystopia,1419146740 +126418,1653,sci-fi,1419146744 +126465,8189,French,1147125804 +126465,8189,surrealism,1147125828 +126502,260,fantasy,1433707881 +126502,260,oldie but goodie,1433707897 +126514,2232,paranoia,1280244701 +126514,2232,psychological,1280244693 +126514,2232,psychology,1280244692 +126514,2232,scifi,1280244689 +126514,2232,scifi cult,1280244690 +126514,2571,post apocalyptic,1280244794 +126514,2571,post-apocalyptic,1280244792 +126514,2571,surreal,1280244790 +126514,2571,virtual reality,1280244787 +126514,34405,based on a TV show,1280244637 +126514,34405,sci-fi,1280244632 +126514,34405,space,1280244633 +126514,34405,SPACE TRAVEL,1280244635 +126514,71135,post-apocalyptic,1280244540 +126514,71135,sci-fi,1280244545 +126514,71135,space,1280244549 +126514,71135,space travel,1280244551 +126518,120863,black and white,1447896993 +126524,260,good vs evil,1439914357 +126524,260,space adventure,1439914375 +126550,61240,horror,1344473902 +126550,61240,swedish,1344473888 +126550,61240,vampire,1344473894 +126559,321,repression,1311397704 +126559,337,coming of age,1285611805 +126559,337,family,1285611860 +126559,337,Johnny Depp,1285611832 +126559,337,Leonardo DiCaprio,1285611842 +126559,337,obesity,1285611811 +126559,337,quirky,1285611871 +126559,339,romantic comedy,1285595515 +126559,356,Contradictory,1290163457 +126559,450,feel-good,1285610767 +126559,450,homelessness,1285610738 +126559,500,quirky funny,1285593443 +126559,574,disturbing,1288624843 +126559,581,analysis of subtext,1291655394 +126559,581,fascinating,1291655373 +126559,605,silly,1287315542 +126559,708,silly,1287647451 +126559,788,silly,1288625670 +126559,805,Matthew McConaughey,1287312466 +126559,805,racism,1287312483 +126559,805,Rape,1287312472 +126559,1059,beautiful,1294905299 +126559,1059,cinematography,1294905290 +126559,1059,Leonardo DiCaprio,1294905314 +126559,1059,soundtrack,1294905277 +126559,1097,classic,1289800412 +126559,1172,bittersweet,1295711871 +126559,1270,classic,1294905130 +126559,1271,feel-good,1286025675 +126559,1271,not true to book,1285599757 +126559,1271,quirky,1286025686 +126559,1290,class issues,1291669838 +126559,1290,classic '80s,1291669867 +126559,1290,high school,1291669853 +126559,1408,cinematography,1285613258 +126559,1408,historical depiction,1285613280 +126559,1408,romance,1285613271 +126559,1665,bizarre,1292224373 +126559,1704,Boston,1285611368 +126559,1704,class issues,1285611359 +126559,1704,feel-good,1285611298 +126559,1704,inspirational,1285611307 +126559,1704,Robin Williams,1285611339 +126559,1721,epic,1297508150 +126559,1721,overdone,1285594781 +126559,1721,romance,1297508138 +126559,1730,cinematography,1288265538 +126559,1784,funny,1285611411 +126559,1784,Jack Nicholson,1285611447 +126559,1784,quirky,1285611432 +126559,1784,romance,1286959294 +126559,1873,musical/book better,1286032878 +126559,1897,beautiful,1287314292 +126559,1897,drugs,1287314321 +126559,1897,sad,1287314304 +126559,1921,ambiguous,1376804357 +126559,1921,cinematography,1376804342 +126559,1921,stylized,1376804386 +126559,1921,tense,1376804372 +126559,1950,acting,1337146671 +126559,2059,cute,1290430140 +126559,2059,twins,1290430163 +126559,2076,disturbing,1296242399 +126559,2357,bittersweet,1293704417 +126559,2357,emotional,1293704436 +126559,2427,cinematography,1285600759 +126559,2427,nature,1285600759 +126559,2431,Medicine,1286762737 +126559,2431,Robin Williams,1286762744 +126559,2563,feminist,1313397807 +126559,2563,flat,1313397793 +126559,2563,idealized,1313397802 +126559,2563,In English (should be Italian),1313397781 +126559,2581,high school,1286958380 +126559,2581,silly,1286958371 +126559,2664,scary,1299286300 +126559,2762,no plotholes!,1285597509 +126559,2763,romance,1287647400 +126559,2858,artsy,1287314623 +126559,2858,beautiful,1287314595 +126559,2858,cinematography,1287314608 +126559,2858,dark,1287314637 +126559,2858,Kevin Spacey,1287314617 +126559,2932,cinematography,1313359083 +126559,3046,coming of age,1285612779 +126559,3046,feel-good,1285612793 +126559,3117,bad acting,1313226893 +126559,3117,flat,1313226898 +126559,3148,abortion,1285609833 +126559,3148,based on book,1285609851 +126559,3148,coming of age,1285609843 +126559,3148,Incest,1285609882 +126559,3148,Maine,1285609869 +126559,3148,medicine,1285609906 +126559,3148,Orphans,1285609895 +126559,3185,beautiful,1287313542 +126559,3185,cinematography,1285600679 +126559,3185,love story,1287313569 +126559,3185,social commentary,1285600679 +126559,3185,Underrated,1289897790 +126559,3186,Angelina Jolie,1290289385 +126559,3186,depression,1290289352 +126559,3186,mental health,1290289368 +126559,3210,classic,1294904499 +126559,3210,high school,1294904515 +126559,3502,death,1285610696 +126559,3565,class issues,1285610513 +126559,3565,family,1285610177 +126559,3565,photography,1285610482 +126559,3565,quirky,1286516096 +126559,3565,social commentary,1285610493 +126559,3565,teenage pregnancy,1285610182 +126559,3578,cliche,1285613167 +126559,3578,heroism,1285613230 +126559,3578,predictable,1285613217 +126559,3753,jingoistic,1288077795 +126559,3882,kitsch,1290164830 +126559,3949,cinematography,1289935539 +126559,3949,soundtrack,1289935553 +126559,3969,corny,1287314202 +126559,3969,domestic violence,1285610899 +126559,3969,inspirational,1285610847 +126559,3969,inspirational teacher,1285610879 +126559,4017,artist,1287314542 +126559,4020,psychic,1286768610 +126559,4020,scary,1286768597 +126559,4069,Jennifer Lopez,1286768332 +126559,4069,Matthew McConaughey,1286768312 +126559,4069,predictable,1286768284 +126559,4069,silly,1286768292 +126559,4389,boarding school,1314836640 +126559,4389,cliche,1290289839 +126559,4389,dark,1285612629 +126559,4389,erotic,1290289823 +126559,4389,poor acting,1314836609 +126559,4474,friendship,1285610438 +126559,4724,mental health,1292226596 +126559,4724,quirky,1292226575 +126559,4778,painful,1296241126 +126559,4778,Romania,1296241136 +126559,4778,street children,1296241110 +126559,4973,beautiful,1287648319 +126559,4973,stylized,1287648326 +126559,5011,English instead of subtitles,1313048319 +126559,5011,flat,1313226925 +126559,5011,scenic,1313048257 +126559,5011,unrealistic,1313048340 +126559,5014,Dakota Fanning,1287314090 +126559,5014,feel-good,1285611028 +126559,5014,parenting,1285611001 +126559,5014,unrealistic,1287314150 +126559,5064,betrayal,1294238373 +126559,5064,swashbuckler,1294238383 +126559,5066,corny,1285610323 +126559,5066,plot holes,1285610369 +126559,5066,predictable,1285610378 +126559,5135,colorful,1290268247 +126559,5135,predictable,1290268258 +126559,5135,unrealistic plot,1290268231 +126559,5151,silly,1288626261 +126559,5222,predictable,1285612699 +126559,5222,relationships,1285612726 +126559,5222,sexuality,1285612744 +126559,5293,contrived,1290287472 +126559,5377,feel-good,1287314036 +126559,5377,funny,1287314026 +126559,5377,quirky,1287314019 +126559,5415,book is better,1285610269 +126559,5449,silly,1290254863 +126559,5505,irritating,1290314371 +126559,5505,ridiculous,1290314414 +126559,5667,Alexis Bledel,1285612992 +126559,5667,book was better,1285613016 +126559,5667,coming of age,1285612964 +126559,5679,cinematography,1286800312 +126559,5679,scary,1286800284 +126559,5812,bad acting,1314665528 +126559,5812,stilted,1314665552 +126559,5812,stylized,1314665611 +126559,5945,different from book,1286013728 +126559,5992,multiple connecting storylines,1287314471 +126559,5992,music,1287314484 +126559,5992,sad,1287314441 +126559,5992,suicide,1287314450 +126559,5995,acting,1287313355 +126559,5995,beautiful,1287313321 +126559,5995,World War II,1287313337 +126559,6016,cinematography,1288114317 +126559,6016,gritty,1288114327 +126559,6060,cute,1292224960 +126559,6159,bad acting,1285622232 +126559,6159,boring,1285622216 +126559,6159,coming of age,1285622256 +126559,6159,slow,1285622207 +126559,6159,small town,1285622264 +126559,6218,cute,1287313958 +126559,6218,feel-good,1286086776 +126559,6218,gender in sports,1287313943 +126559,6218,immigrants,1286086755 +126559,6218,soccer,1286086746 +126559,6296,mockumentary,1285954608 +126559,6296,quirky,1285954599 +126559,6619,cute,1288780780 +126559,6619,Dakota Fanning,1288780758 +126559,6683,queer,1291672868 +126559,6683,social commentary,1291672857 +126559,6756,adoption,1286516288 +126559,6756,social commentary,1286516313 +126559,6811,Wesleyan University,1290255163 +126559,6867,dwarf,1289800297 +126559,6867,quirky,1289800319 +126559,6867,trains,1289800305 +126559,6867,understated,1289800282 +126559,6947,boring,1293068211 +126559,6947,overrated,1293068253 +126559,7034,coming of age,1285612105 +126559,7034,quirky,1285612143 +126559,7034,social commentary,1285612115 +126559,7034,teen,1285612137 +126559,7090,beautiful,1377154955 +126559,7090,cinematography,1377154948 +126559,7090,idealistic,1377154964 +126559,7158,cultural differences,1287313842 +126559,7158,dark,1287313900 +126559,7158,intense,1287313872 +126559,7158,misunderstanding,1287313853 +126559,7158,sad,1287313806 +126559,7177,Afghanistan,1286089230 +126559,7177,cinematography,1286089196 +126559,7177,disturbing,1286089358 +126559,7177,Gender Issues,1287648139 +126559,7177,Islam,1286089224 +126559,7177,social commentary,1286089210 +126559,7177,Taliban,1286089249 +126559,7285,disturbing,1286014643 +126559,7285,overdone,1286014653 +126559,7318,inaccurate historical account,1288624964 +126559,7318,propaganda,1288625013 +126559,7346,ludicrous plot,1291656485 +126559,7346,silly,1291656471 +126559,7371,artsy,1288130871 +126559,7371,dark,1288130847 +126559,7371,depressing,1288625325 +126559,7371,disturbing,1288130841 +126559,7371,irritating,1288625344 +126559,7371,philosophical,1288130854 +126559,7371,should have been a play?,1288625299 +126559,7615,book is better,1291655310 +126559,7745,cinematography,1291523017 +126559,7745,little plot development,1291523228 +126559,7745,poor character development,1291523004 +126559,7745,slow,1291522993 +126559,7767,beautiful,1290719541 +126559,7767,epic,1290719577 +126559,7767,psychiatric care,1290719779 +126559,7767,social commentary,1290719789 +126559,8014,cycle of life,1336804071 +126559,8014,few words,1336804049 +126559,8014,meditative,1336803988 +126559,8014,reflective,1336804009 +126559,8014,scenic,1336804020 +126559,8014,slow moving,1336804087 +126559,8464,flawed experiment,1289201658 +126559,8622,sensationalistic,1288624582 +126559,8638,bittersweet,1310371712 +126559,8645,dark,1285595400 +126559,8645,drug trade,1286014705 +126559,8645,gritty,1285595405 +126559,8645,immigrants,1286014722 +126559,8873,Che Guevara,1286015952 +126559,8873,cinematography,1286015981 +126559,8873,social commentary,1286016019 +126559,8873,South America,1286016001 +126559,8873,true story,1286015938 +126559,8949,humor,1286016247 +126559,8965,disappointing,1292996252 +126559,8969,absurd,1290287600 +126559,8977,jared leto,1296814787 +126559,8977,long,1296814758 +126559,8977,slow,1296814766 +126559,27647,based on book,1286085663 +126559,27647,love story,1286085646 +126559,27727,confusing,1300602713 +126559,27727,fragmented,1300602909 +126559,27857,bittersweet,1338723550 +126559,27857,feel-good,1338723541 +126559,27878,documentary,1286014392 +126559,27878,India,1286014374 +126559,27878,photography,1286014358 +126559,27878,social commentary,1286014412 +126559,30707,boxing,1287313717 +126559,30707,gender in sports,1287313735 +126559,30707,Hilary Swank,1287313702 +126559,30707,meaning of family,1287314703 +126559,30707,poverty,1287313746 +126559,30707,social commentary,1287313759 +126559,32300,camp,1294206167 +126559,32300,witty,1294206155 +126559,32584,cinematography,1316236823 +126559,32584,incest,1316236790 +126559,33162,cinematography,1311604795 +126559,33162,underrated,1311604808 +126559,33679,Angelina Jolie,1285611190 +126559,33679,erotic tension,1285611199 +126559,33679,silly premise,1285611219 +126559,33817,disturbing,1288625709 +126559,36517,cinematography,1287312935 +126559,36517,gritty,1287312973 +126559,36517,human rights,1285594696 +126559,36517,smart,1287312964 +126559,36517,social commentary,1285594696 +126559,36535,artsy,1286957409 +126559,36535,Holocaust,1286957372 +126559,36535,quirky,1286957384 +126559,36535,untrue to book,1285601215 +126559,38538,teen rape,1288626821 +126559,38886,quirky,1285593918 +126559,38886,unlikeable characters,1288625584 +126559,39244,Iran,1307179177 +126559,39244,polygamy,1307179161 +126559,39394,poor acting,1325499893 +126559,39394,stilted,1325499882 +126559,41571,based on book,1287647907 +126559,41571,cinematography,1287647889 +126559,41571,Japan,1287647897 +126559,41721,art,1313037703 +126559,41721,boring,1313037694 +126559,42004,insightful,1291706338 +126559,42004,original,1291706325 +126559,42004,quirky,1291706315 +126559,42004,transgender,1291706296 +126559,42418,cinematography,1289649227 +126559,42418,lyrical,1289649259 +126559,43333,cinematography,1287205774 +126559,43333,gender issues,1287205828 +126559,43333,idealized characters,1287205783 +126559,43333,India,1287205813 +126559,43333,little character development,1287205759 +126559,43333,social issues,1287205794 +126559,43744,cute,1292564707 +126559,43744,feel-good,1292564719 +126559,44694,incest,1296240544 +126559,44694,mother-daughter relationship,1296240950 +126559,44694,Pedro Almodovar,1296240588 +126559,44694,Penelope Cruz,1296240576 +126559,44694,visually appealing,1296240563 +126559,45668,Plot holes,1434835426 +126559,45880,cinematography,1288268459 +126559,45880,historically inaccurate,1288268495 +126559,45880,stylized,1288268467 +126559,46105,self-indulgent,1306815331 +126559,46105,trying too hard,1306815346 +126559,46588,No Conclusion,1361435204 +126559,46723,deep meaning,1285592347 +126559,46723,interwoven storylines,1285591460 +126559,46723,social commentary,1285592419 +126559,46723,unrealistic plot connections,1285592135 +126559,46723,visually stunning,1285592224 +126559,46976,humorous,1379306906 +126559,47423,slow,1301146520 +126559,47423,unresolved feeling,1301146844 +126559,47610,lack of character depth,1312008143 +126559,47610,stylized,1312007518 +126559,48304,cinematography,1289908892 +126559,48304,controversial,1289908944 +126559,48304,gruesome,1289908868 +126559,48304,Maya,1289908920 +126559,48394,social commentary,1286032764 +126559,48696,dark,1289217643 +126559,48696,disturbing,1289217636 +126559,48696,good acting,1289217729 +126559,48696,Kate Winslet,1289217660 +126559,48696,satirical,1289217718 +126559,49910,problematic,1292996433 +126559,49961,stereotyped characters,1300518032 +126559,50183,Catholicism,1293350560 +126559,50183,cinematography,1293107699 +126559,50183,controversial,1293350498 +126559,50183,erotic,1293107661 +126559,50183,forbidden love,1293350627 +126559,50183,unconventional,1293107682 +126559,50514,beautiful,1293091944 +126559,50514,emotional,1293091897 +126559,50514,hopeful,1293091989 +126559,50514,music,1293092004 +126559,50514,subtle humor,1293091969 +126559,52773,absurd,1310136072 +126559,52773,boring,1310136061 +126559,52773,predictable,1310136036 +126559,52773,silly,1310136065 +126559,52773,terrible acting,1310136052 +126559,53123,beautiful,1287312187 +126559,53123,charming,1291670045 +126559,53123,felt real,1287312201 +126559,53123,soundtrack,1287312169 +126559,53123,sweet,1287312193 +126559,54190,disappointing,1295657303 +126559,54190,formulaic,1295657368 +126559,54190,visually appealing,1295657398 +126559,54190,weak plot,1295657360 +126559,55247,bittersweet,1290252934 +126559,55247,cinematography,1290252647 +126559,55280,cute,1289933413 +126559,55280,feel-good,1289933421 +126559,55442,animation,1287531314 +126559,55442,humorous,1287531358 +126559,55442,Iran,1287531321 +126559,55442,social commentary,1287531333 +126559,55555,cinematography,1288252631 +126559,55555,culture clash,1288252668 +126559,55555,interwoven lives,1288252654 +126559,55814,cinematography,1290427025 +126559,55814,slow,1290427033 +126559,56587,boring,1290253730 +126559,56587,Jack Nicholson,1290240572 +126559,56587,predictable,1290240583 +126559,56607,afghanistan,1287314933 +126559,56607,based on book,1287314913 +126559,56607,beautiful story,1287314921 +126559,56949,bad dialogue,1299236773 +126559,56949,unbelievable,1299236751 +126559,57243,understated,1297619351 +126559,57453,arranged marriage,1288265407 +126559,57453,condescending,1288626178 +126559,57453,convoluted issues,1288625468 +126559,57453,irritating,1288625477 +126559,58047,bad acting,1298988249 +126559,58047,stilted,1298988262 +126559,58303,cinematography,1297069504 +126559,58303,ethical dilemma,1297069466 +126559,58303,pacing,1297069526 +126559,58303,thought-provoking,1297069487 +126559,59018,beautiful,1296299438 +126559,59018,discrimination,1296299767 +126559,59018,heavy-handed,1296299431 +126559,59018,immigration process in U.S.,1296299755 +126559,59018,real,1296299731 +126559,59018,social commentary,1296299809 +126559,59440,bad acting,1288100322 +126559,59440,condescending,1288626158 +126559,59440,heavy-handed message,1288100159 +126559,59440,plot holes,1288101196 +126559,59440,pro-life,1288100297 +126559,61026,cinematography,1311591361 +126559,61026,war,1311591355 +126559,61075,Penelope Cruz,1287311808 +126559,61075,self-indulgent,1287311764 +126559,61075,slow,1287311755 +126559,62293,costumes,1316413066 +126559,62293,period piece,1316413072 +126559,62344,cinematography,1294127059 +126559,62344,meandering,1294127069 +126559,62344,wedding,1294127047 +126559,62553,coming of age,1285612382 +126559,62553,Dakota Fanning,1285612372 +126559,63082,cinematography,1286016129 +126559,63082,gritty,1286016119 +126559,63082,india,1286016161 +126559,63082,love story,1286016104 +126559,63082,music,1286032574 +126559,63082,nonlinear,1286016113 +126559,63082,social commentary,1286016144 +126559,63082,unrealistic,1287314790 +126559,63992,dry humor,1297599070 +126559,63992,erotic,1297599005 +126559,63992,gothic,1297599012 +126559,63992,visually appealing,1297598997 +126559,64575,cinematography,1290332789 +126559,64575,thought provoking,1290332810 +126559,64614,culture clash,1288160513 +126559,64614,Hmong,1288160475 +126559,64614,redemption,1288160464 +126559,64622,based on book,1287313193 +126559,64622,betrayal,1287313132 +126559,64622,cinematography,1287313246 +126559,64622,coming of age,1287313182 +126559,64622,difficult subject matter,1287313205 +126559,64622,great acting,1287313260 +126559,64622,Holocaust,1287313115 +126559,64622,Kate Winslet,1287313088 +126559,64622,makes you think,1287313168 +126559,64622,philosophical,1287313150 +126559,64622,Ralph Fiennes,1287313098 +126559,64622,romance,1287313105 +126559,66371,beautiful,1297725685 +126559,66371,humorous,1297725741 +126559,66371,understated,1297725723 +126559,66665,cute,1290286959 +126559,66665,pretentious,1290286987 +126559,66665,quirky,1290287003 +126559,67784,cinematography,1309600335 +126559,67784,kristen stewart,1309600319 +126559,67784,slice of life,1309600351 +126559,67784,sweet,1309600342 +126559,69394,brutal,1297507216 +126559,69394,graphic violence,1297507225 +126559,69394,Iran,1297507187 +126559,69394,Stoning,1297507179 +126559,69394,Women's rights,1297507198 +126559,69640,Johnny Depp,1285611668 +126559,69640,True Story,1285611673 +126559,69712,overdone,1285600054 +126559,70293,boring,1292592123 +126559,70293,slow,1292592081 +126559,70567,humorous,1309671746 +126559,70567,subplot,1309671768 +126559,70567,sweet,1309671740 +126559,71033,beautiful,1291654232 +126559,71033,cinematography,1291654224 +126559,71033,memory,1291654242 +126559,71327,beautiful,1296886977 +126559,71327,John Keats,1296887012 +126559,71327,slow,1296886969 +126559,71464,dark comedy,1288112048 +126559,71464,lacking female perspective,1288112103 +126559,71579,great acting,1296975062 +126559,72395,gritty,1312543004 +126559,72395,incest,1312543010 +126559,72641,feel-good,1322030577 +126559,72720,cinematography,1307328834 +126559,72720,suicide,1307328850 +126559,72998,dialogue,1299068305 +126559,72998,Visually stunning,1299068273 +126559,73344,cinematography,1313902923 +126559,73344,editing,1313903336 +126559,73344,graphic violence,1313902884 +126559,73344,great acting,1313902869 +126559,73344,gritty,1313902938 +126559,73344,long,1313902877 +126559,73344,overrated,1313902913 +126559,73344,squirmish,1313903375 +126559,74416,disturbing,1435765805 +126559,74416,Strong acting,1435765861 +126559,74458,bad accent,1312705436 +126559,74458,cinematography,1312705414 +126559,74458,scary,1312705418 +126559,74688,bland,1338365309 +126559,74688,no complexity,1338365300 +126559,74916,self-indulgent,1349562238 +126559,76173,quirky,1307256219 +126559,76173,visually appealing,1307256208 +126559,78445,cinematography,1300528538 +126559,78445,complex characters,1300528554 +126559,78445,post WWII,1300528572 +126559,78445,rape,1300528579 +126559,78445,war,1300528586 +126559,78574,acting,1298980408 +126559,78574,authenticity,1296031025 +126559,79132,cinematography,1294914490 +126559,79132,dreams,1294914512 +126559,79132,surreal,1294914533 +126559,79132,thought-provoking,1294914543 +126559,79242,cute,1289945811 +126559,79242,humorous,1289945828 +126559,79588,cinematography,1310690884 +126559,79702,dry,1297405320 +126559,79702,visually appealing,1297405314 +126559,79723,authentic,1330153912 +126559,79723,subtle,1330153944 +126559,80549,witty,1296371240 +126559,80693,underdeveloped plot,1322323755 +126559,80969,cinematography,1311921573 +126559,80969,disturbing,1311921556 +126559,80969,great acting,1311921581 +126559,80969,metaphoric,1311921624 +126559,81069,Friendship,1434745653 +126559,81069,Prep School,1434745643 +126559,81069,Race,1434745628 +126559,81305,cinematography,1312602094 +126559,81305,forbidden love,1434749219 +126559,81305,Israel,1434749258 +126559,81305,Orthodox Judaism,1434749270 +126559,81305,understated,1312602088 +126559,81347,cinematography,1288073912 +126559,81405,israeli/palestinian conflict,1434743865 +126559,81405,justice,1434743865 +126559,81405,problematic,1291655789 +126559,81405,state policy,1434743865 +126559,81456,cinematography,1348567022 +126559,81456,shallow content,1348567053 +126559,81456,stylized,1348567032 +126559,81512,cinematography,1301641626 +126559,81562,acting,1307765294 +126559,81562,cinematography,1307765221 +126559,81562,determination,1307765229 +126559,81562,graphic,1307765238 +126559,81562,soundtrack,1307765243 +126559,81591,cinematography,1333778658 +126559,81591,predictable,1333778673 +126559,81591,stylized,1333778706 +126559,81819,cinematrophy,1327305852 +126559,81819,depth,1327305902 +126559,81819,good acting,1327305863 +126559,81845,cinematography,1326081828 +126559,81845,dry,1326081840 +126559,81847,fairy tale,1313988906 +126559,81847,visually appealing,1313988846 +126559,81957,Forbidden Love,1434745269 +126559,81957,South Africa,1434745240 +126559,82026,community,1435569530 +126559,82026,Hasidic Judaism,1290689568 +126559,82026,religion,1435569530 +126559,82026,sexist perspective,1291211373 +126559,82026,stereotyped characters,1312008307 +126559,82358,caribbean,1433570116 +126559,82358,Costa Rica,1294239435 +126559,82358,oil company,1433570116 +126559,82722,based on book,1293092810 +126559,83086,bad acting,1309749389 +126559,83086,predictable,1309749403 +126559,84374,cute,1306823182 +126559,84847,based on book,1299266252 +126559,85438,beautiful scenery,1322363761 +126559,86548,flat,1336789688 +126559,86898,abstract,1311741499 +126559,86898,cinematography,1311741363 +126559,86898,meaning of life,1311741376 +126559,86898,music,1311741505 +126559,88692,beautiful scenery,1312529093 +126559,88692,caricatures,1312529350 +126559,88692,choppy editing,1312529174 +126559,88692,Hawaii,1312529374 +126559,88692,poorly acted,1312529087 +126559,88692,simplified history,1312529365 +126559,88692,unengaging,1312529102 +126559,89759,acting,1377507428 +126559,89759,depth,1377507450 +126559,89759,morally complex,1377507478 +126559,91890,no character depth,1375428092 +126559,91890,scattered,1375428110 +126559,93475,cinematography,1375427889 +126559,97921,quirky,1433572369 +126559,98203,cinematography,1353557194 +126559,99114,overdone,1370919888 +126559,99114,visually appealing,1370919905 +126559,101079,cinematography,1376815627 +126559,102407,stylized,1371188400 +126559,103279,Acting,1435976676 +126559,103279,Cinematography,1435976619 +126559,103908,humorous,1375428602 +126559,103908,self-indulgent,1375428594 +126559,104374,Plot holes,1434835499 +126559,106916,stylized,1434751291 +126559,128594,transgender,1433570536 +126564,1674,Seen it many times!,1142019759 +126617,356,inspirational,1441283590 +126617,356,tom hanks,1441283574 +126617,356,touching,1441283588 +126617,115713,artificial intelligence,1441283498 +126617,115713,sci-fi,1441283504 +126617,115713,thought provoking,1441283519 +126643,296,Bruce Willis,1299601239 +126643,296,funny,1299876004 +126643,296,Samuel L. Jackson,1299601218 +126643,296,stylized,1299875999 +126643,6587,funny,1299876061 +126643,78574,boring,1290534194 +126643,78574,not believable,1290534217 +126643,81834,boring,1290527661 +126643,81834,confusing,1290527668 +126655,64969,funny,1243706446 +126655,64969,Zooey Deschanel,1243706449 +126655,66097,claymation,1243706519 +126655,66097,Surreal,1243706527 +126655,68358,Simon Pegg,1243706410 +126655,68358,space,1243706419 +126655,68358,space travel,1243706414 +126655,68358,time travel,1243706416 +126655,74458,boring,1277325837 +126655,74458,whiney,1277325837 +126655,77658,earnest,1369991789 +126655,77658,environmental,1369991794 +126655,77658,made for TV,1369991800 +126655,77658,not a movie,1369991804 +126655,77658,science,1369991762 +126655,77658,tv series,1369991807 +126655,77658,Vangelis,1369991779 +126655,85414,predictable,1315158999 +126655,98809,beautiful scenery,1370263185 +126655,98809,music,1370263178 +126655,101864,atmospheric,1421184701 +126655,101864,Olga Kurylenko,1421184711 +126655,101864,sci-fi,1421184698 +126655,101864,twists & turns,1421184691 +126655,102880,no reception,1384810830 +126655,102880,Shyamalan,1384810830 +126655,103141,Development friendship,1381950751 +126655,104211,LOLd,1389245448 +126655,104243,Rehash Sequel,1389245387 +126655,105769,boring,1418127443 +126655,107563,cheesy,1388176891 +126655,107563,Christmas,1388176874 +126655,111360,dumb science,1417549508 +126655,112868,annoying teens,1413924617 +126655,113378,cliched plot,1413842537 +126655,115235,boring,1416659887 +126656,260,Science Fiction,1442754795 +126656,260,space adventure,1442754771 +126701,25,atmospheric,1245956855 +126701,25,Bibliothek,1202481377 +126701,25,drama,1246477505 +126701,25,great soundtrack,1246477657 +126701,25,love,1237088115 +126701,356,classic,1246477464 +126701,356,conservatism,1246780450 +126701,356,drama,1246048864 +126701,356,great soundtrack,1246477630 +126701,356,Oscar (Best Effects - Visual Effects),1246477469 +126701,356,romance,1246477474 +126701,356,Tom Hanks,1246477478 +126701,592,atmospheric,1245957178 +126701,1094,Oscar (Best Writing - Screenplay Written Directly for the Screen),1245957261 +126701,1183,adultery,1246780771 +126701,1183,love,1246780866 +126701,1183,Oscar (Best Cinematography),1246780787 +126701,1183,Oscar (Best Picture),1246780781 +126701,1183,war,1246780911 +126701,1199,atmospheric,1246780265 +126701,1199,dystopia,1246780246 +126701,1199,satire,1246780259 +126701,1206,atmospheric,1246478054 +126701,1206,dystopia,1246478038 +126701,1206,great soundtrack,1246478059 +126701,1240,Arnold Schwarzenegger,1246477693 +126701,1240,drama,1287608810 +126701,1240,great soundtrack,1245956896 +126701,1240,James Cameron,1246477702 +126701,1240,sci-fi,1246477677 +126701,1305,photography,1334958397 +126701,1305,relationships,1334958408 +126701,1305,road movie,1334958403 +126701,1625,Michael Douglas,1246780315 +126701,1625,plot,1246780292 +126701,1625,twist ending,1246780299 +126701,1954,AFI 100,1246780561 +126701,1954,drama,1246780538 +126701,1954,Inspirational,1246780536 +126701,1954,romance,1246780514 +126701,1954,sport:boxing,1246780550 +126701,4007,Charlie Sheen,1385862445 +126701,4007,Michael Douglas,1246791735 +126701,4007,Oliver Stone,1246791767 +126701,4007,stock market,1246791746 +126701,5916,euthanasia,1202484099 +126701,5916,great dialogue,1246477817 +126701,5995,Golden Palm,1246791896 +126701,5995,true story,1246791875 +126701,5995,World War II,1246791861 +126701,33817,drama,1246477759 +126701,33817,lesbian,1245957229 +126701,33817,love,1237088063 +126701,33817,romance,1246477759 +126701,51091,great soundtrack,1376577428 +126701,51091,Southern theme,1376577421 +126701,58559,Christian Bale,1246780702 +126701,58559,superhero,1246780664 +126701,58559,unrealistic,1246780685 +126701,68791,bad plot,1245956743 +126701,68791,bad script,1246240677 +126701,68791,incongruous,1246231445 +126701,68791,McG,1246477410 +126701,68791,no blood,1251244304 +126701,68791,No humor,1251244318 +126701,68791,weak dialoges,1246132967 +126701,68791,weak plot,1245956741 +126701,68954,children,1287665137 +126701,68954,computer animation,1289186926 +126701,68954,drama,1287608720 +126701,68954,Pixar,1287665159 +126701,68954,touching,1287665144 +126701,96728,Paul Thomas Anderson,1402759262 +126701,96728,Philip Seymour Hoffman,1402759267 +126706,260,Science Fiction,1436462775 +126706,260,space adventure,1436462759 +126706,593,crime,1437119251 +126706,593,serial killer,1437119251 +126706,593,thriller,1437119251 +126718,356,dreamer,1428449892 +126718,356,history,1428449892 +126718,356,usa,1428449892 +126732,3535,not as disturbing as the novel,1158504056 +126732,4010,richard pryor,1162000993 +126732,53550,Christian Bale,1191245183 +126738,69306,foul language,1247868732 +126770,260,my youth,1432522446 +126820,116797,Alan Turing,1421359381 +126898,356,doggedness,1438523971 +126898,356,humor,1438523971 +126898,356,poignant,1438523971 +126935,5618,Japanese,1316896751 +126935,26007,finnish,1316896659 +126935,32562,not a movie,1316897428 +126935,85342,foreign language,1316897547 +126935,86345,not a movie,1316897569 +126935,86345,stand-up comedy,1316897563 +126935,86377,not a movie,1316897658 +126948,111,ohsoso,1137407540 +126948,154,ohsoso,1137407537 +126948,501,ohsoso,1137407539 +126948,698,ohsoso,1142156509 +126948,924,ohsoso,1137407538 +126948,1193,ohsoso,1137407542 +126948,1199,ohsoso,1138613031 +126948,1206,ohsoso,1137407535 +126948,1208,ohsoso,1137407546 +126948,1246,ohsoso,1137407713 +126948,1265,ohsoso,1137407533 +126948,1295,ohsoso,1138814341 +126948,1483,ohsoso,1137407535 +126948,1682,ohsoso,1137407574 +126948,1884,ohsoso,1137407579 +126948,1956,ohsoso,1137407768 +126948,2117,ohsoso,1137407576 +126948,2232,ohsoso,1137407581 +126948,2291,ohsoso,1137407580 +126948,2437,ohsoso,1137407774 +126948,2571,ohsoso,1137407684 +126948,2959,ohsoso,1137407544 +126948,3019,ohsoso,1137407762 +126948,3081,ohsoso,1137407689 +126948,3224,ohsoso,1137407571 +126948,3235,ohsoso,1137407572 +126948,3342,ohsoso,1137407758 +126948,3504,ohsoso,1137407538 +126948,3535,ohsoso,1137407582 +126948,3556,ohsoso,1137407573 +126948,3925,ohsoso,1137407691 +126948,3949,ohsoso,1137407575 +126948,3993,ohsoso,1137407541 +126948,4017,ohsoso,1137407687 +126948,4349,ohsoso,1137407759 +126948,4641,ohsoso,1137407577 +126948,4872,ohsoso,1137407576 +126948,4878,ohsoso,1137407668 +126948,4973,ohsoso,1137407583 +126948,6234,ohsoso,1137407801 +126948,6645,ohsoso,1137522113 +126948,6711,ohsoso,1137407544 +126948,6774,ohsoso,1137407573 +126948,6883,ohsoso,1137407575 +126948,7042,ohsoso,1137407545 +126948,7123,ohsoso,1138476666 +126948,7168,ohsoso,1148975983 +126948,7487,ohsoso,1137407673 +126948,8910,ohsoso,1137407540 +126948,44191,ohsoso,1144702454 +126951,260,"""retrofitted"" future",1442879611 +126951,260,space adventure,1442879645 +126968,3114,cgi,1156747885 +126968,3114,Disney,1156747877 +126968,3114,Pixar,1156747872 +126994,84374,great chemistry,1434449070 +126994,84374,natalie portman,1434449070 +126994,84374,not okay,1434449070 +126998,1942,Oscar (Best Picture),1160874204 +126998,1942,Robert Penn Warren,1160874197 +127016,38061,get,1145705280 +127035,1707,challence,1451122231 +127035,1707,happy,1451122221 +127035,98458,child love,1451122288 +127059,4881,coen bros,1139765026 +127062,480,adventure,1389627961 +127062,480,sci-fi,1389627966 +127062,480,Steven Spielberg,1389627971 +127062,1258,fear,1435665924 +127062,2467,medieval,1389627675 +127062,4326,Alan Parker,1389627833 +127062,4326,true story,1389627841 +127062,74740,dialogue driven,1389627577 +127062,74740,mathematics,1434557197 +127062,74740,psychological,1389627590 +127062,74740,reflection,1434557197 +127062,74740,suspense,1434557197 +127069,62671,what!,1450320805 +127074,260,good science fictional technology,1438109997 +127074,260,oldie but goodie,1438109974 +127075,1285,snappy dialog,1136815296 +127082,296,cult classic,1422595697 +127082,296,dark,1422595697 +127082,296,funny,1422595697 +127087,1253,imdb top 250,1210494552 +127089,6711,atmospheric,1425352343 +127124,57669,black comedy,1301225025 +127124,79132,Orriginal screenplay,1293869507 +127129,367,cartoonish,1439450741 +127129,2571,action,1439450296 +127129,2706,comedy,1439450609 +127129,3793,action,1439450797 +127129,4896,Adventure,1439450708 +127129,4993,epic adventure,1439450414 +127129,5349,superhero,1439450767 +127129,8368,fantasy world,1439450640 +127129,34150,sexy female scientist,1439450465 +127129,50189,comedy,1439450677 +127129,59315,technology,1439450362 +127129,89745,action packed,1439450820 +127129,104841,science,1439450572 +127129,111113,college,1439450534 +127137,296,classic,1420518260 +127137,296,quinten tarantino,1420518260 +127137,296,samuel l. jackson,1420518260 +127137,318,classic,1422250184 +127137,318,great story,1422250184 +127137,318,morgan freeman,1422250184 +127137,356,classic,1421294014 +127137,356,funny,1421294014 +127137,356,tom hanks,1421294014 +127137,924,slow,1421813952 +127137,1136,Monty Python,1421814510 +127137,1732,bowling,1421814258 +127137,1732,cult film,1421814281 +127137,1732,great soundtrack,1421814274 +127137,3578,Epic,1421814469 +127137,5618,adventure,1421814772 +127137,5618,animation,1421814770 +127137,5618,atmospheric,1421814773 +127137,5618,fantasy,1421814767 +127137,5618,imaginative,1421814782 +127137,5618,surreal,1421814777 +127137,8529,airport,1421814723 +127137,8529,humorous,1421814710 +127137,8529,stranded,1421814705 +127137,8529,underrated,1421814717 +127137,8644,Isaac Asimov,1421814684 +127137,8644,product placement,1421814690 +127137,8644,robots,1421814680 +127137,8644,thought provoking,1421814699 +127137,8644,thought-provoking,1421814697 +127137,8807,marijuana,1421814872 +127137,8807,stoner comedy,1421814883 +127137,8807,Stoner Movie,1421814881 +127137,33004,sarcasm,1421814078 +127137,33004,witty,1421814062 +127137,36529,dark comedy,1421815003 +127137,36529,guns,1421815011 +127137,36529,Nicolas Cage,1421814997 +127137,36529,political,1421815019 +127137,36529,politics,1421815023 +127137,36529,violence,1421815009 +127137,45672,cheesy,1421815107 +127137,46976,narrated,1421814745 +127137,50872,animation,1421815119 +127137,50872,Disney,1421815134 +127137,50872,funny,1421815122 +127137,50872,pixar,1421815116 +127137,50872,Pixar animation,1421815130 +127137,50872,restaurant,1421815125 +127137,50872,story,1421815115 +127137,50872,talking animals,1421815121 +127137,51662,blood,1421814308 +127137,51662,comic book,1421814323 +127137,51662,narrated,1421814315 +127137,58559,Atmospheric,1421815046 +127137,58559,DC Comics,1421815066 +127137,58559,Morgan Freeman,1421815043 +127137,59315,Marvel,1421814846 +127137,59315,sci-fi,1421814849 +127137,59315,superheroes,1421814864 +127137,59315,visually appealing,1421814855 +127137,60040,comic book,1421814549 +127137,64716,moving,1421814733 +127137,64716,unique,1421814736 +127137,65088,Imagination,1421815178 +127137,65088,Romantic Comedy,1421815182 +127137,72226,stop motion,1421814333 +127137,73321,dystopia,1421815142 +127137,73321,dystopic future,1421815144 +127137,73321,fight scenes,1421815153 +127137,73321,post-apocalyptic,1421815140 +127137,73321,thought-provoking,1421815145 +127137,73321,visually appealing,1421815149 +127137,76293,funny,1421814235 +127137,77866,adventure,1421814228 +127137,77866,unhistorical,1421814217 +127137,80126,slow,1421813921 +127137,81564,animated,1421814916 +127137,81564,animation,1421814926 +127137,81564,anti-hero,1421814913 +127137,81564,Dreamworks,1421814919 +127137,81564,witty,1421814925 +127137,84772,laidback,1421815034 +127137,84944,adult humor,1421814987 +127137,84944,animation,1421814984 +127137,84944,great voice acting,1421814982 +127137,84944,Johnny Depp,1421814980 +127137,84944,talking animals,1421814990 +127137,88744,genetics,1421814902 +127137,88744,thought-provoking,1421814907 +127137,88744,touching,1421814899 +127137,89492,intelligent,1421814189 +127137,90866,visually appealing,1421814039 +127137,95088,feel good,1421814961 +127137,95088,journalism,1421814963 +127137,95088,Understated charm,1421814954 +127137,95167,animation,1421814943 +127137,95167,No Marriage at the End,1421814935 +127137,95167,Pixar,1421814945 +127137,95875,dystopia,1421814430 +127137,95875,mars,1421814414 +127137,95875,remake,1421814419 +127137,95875,science fiction,1421814424 +127137,96610,bad science,1421814661 +127137,96610,plot holes,1421814651 +127137,101864,atmospheric,1421815173 +127137,101864,cloning,1421815165 +127137,101864,sci-fi,1421815161 +127137,101864,twists & turns,1421815157 +127137,106487,based on a book,1421814828 +127137,106487,dystopia,1421814826 +127137,106487,dystopic future,1421814836 +127137,106487,visually appealing,1421814832 +127137,106920,artificial intelligence,1421814516 +127137,106920,original plot,1421814528 +127137,106920,philosophical,1421814523 +127137,106920,sci-fi,1421814539 +127137,106920,thought-provoking,1421814518 +127137,111113,hilarious,1411663557 +127137,111362,based on a comic,1421814627 +127137,111362,Marvel,1421814629 +127137,111659,visual effects,1421814488 +127137,111759,Alien Invasion,1421814566 +127137,111759,original plot,1421814571 +127137,111759,powersuit,1421814579 +127137,112623,emotional,1421814451 +127137,112623,sci-fi,1421814438 +127137,112623,talking animals,1421814441 +127137,115203,cannabis,1413691146 +127137,115203,informative,1413691154 +127137,115203,marijuana,1413691204 +127137,115203,vimeo-on-demand,1413691190 +127147,260,Meh ok,1440502923 +127156,260,action,1435918550 +127156,260,classic sci-fi,1435918561 +127178,290,disturbing,1353466397 +127178,290,drama,1353466400 +127178,1197,fairy tale,1353466819 +127178,1197,funny,1353466823 +127178,1197,quirky,1353466811 +127178,1197,romance,1353466813 +127178,1307,funny,1353466895 +127178,1307,romance,1353466898 +127178,2020,adapted from book,1353468198 +127178,2020,witty,1353468190 +127178,2291,quirky,1353466716 +127178,3147,social commentary,1353466565 +127178,4246,hugh grant,1353467076 +127178,4246,romance,1353467081 +127178,4308,soundtrack,1353467883 +127178,4973,beautiful,1353466659 +127178,4973,cinematography,1353466651 +127178,4973,fairy tale,1353466626 +127178,4973,quirky,1353466604 +127178,4973,romance,1353466608 +127178,4973,soundtrack,1353466615 +127178,5299,funny,1353467053 +127178,5620,romance,1353466979 +127178,5957,hugh grant,1353467008 +127178,7147,beautiful,1353466739 +127178,7147,quirky,1353466736 +127178,7361,beautiful,1353466771 +127178,7361,romance,1353466774 +127178,7361,thought-provoking,1353466783 +127178,8969,hugh grant,1353467099 +127178,30707,Strong Women,1353466537 +127178,37729,beautiful,1353467829 +127178,37729,romance,1353467831 +127178,44191,beautiful,1353467806 +127178,44191,natalie portman,1353467797 +127178,44191,social commentary,1353467789 +127178,44191,thought-provoking,1353467798 +127178,51084,romance,1353466944 +127178,51084,soundtrack,1353466947 +127178,56949,james marsden,1353466964 +127178,63082,beautiful,1353466694 +127178,63082,cinematography,1353466487 +127178,63082,romance,1353466460 +127178,66203,justin long,1353467129 +127178,69406,romance,1353467027 +127178,69406,vulnerability,1353467035 +127178,80241,boring plot,1353467166 +127178,81591,beautiful,1353467762 +127178,81591,disturbing,1353467753 +127178,81591,mindfuck,1353467756 +127178,81591,natalie portman,1353467749 +127233,533,Comic Book adaption,1187734812 +127233,707,neo-noir,1187442782 +127233,1124,Husband Wife Relationship,1187733252 +127233,1124,parenthood,1187733272 +127233,2848,shakespeare,1199953569 +127233,2951,Sergio Leone,1187442769 +127233,3923,fly,1187545431 +127233,5388,remake,1187636216 +127233,6016,Africa,1187442740 +127233,6373,god,1187442723 +127233,7438,bloody,1215553886 +127233,8798,one day,1187442755 +127246,5,childhood classics,1179775381 +127246,5,it thought it was funny but it wasn't,1179775339 +127246,5,watched under duress,1179775339 +127246,5,worst movies ever,1179775339 +127246,344,comedy,1263689098 +127246,344,crude,1263689070 +127246,344,gross-out,1263689075 +127246,344,jim carrey,1263689103 +127246,344,Jim Carrey being Jim Carrey,1263689085 +127246,344,sex jokes,1263689091 +127246,367,Cameron Diaz,1263689163 +127246,367,Crude,1263689134 +127246,367,Jim Carrey being Jim Carrey,1263689131 +127246,367,sex jokes,1263689139 +127246,370,I'm embarassed to find this funny,1179775917 +127246,370,parody,1179775917 +127246,370,seen under duress,1179775917 +127246,370,seen with my parents,1179775917 +127246,455,animal,1263690764 +127246,455,animal movie,1263690760 +127246,455,unnecessarily sad,1263690774 +127246,551,animated,1179775016 +127246,551,innovative,1179775016 +127246,585,Based on a TV Show,1263690174 +127246,585,Comedy,1263690167 +127246,585,misogyny,1263690190 +127246,586,childhood classics,1179772407 +127246,588,Disney,1263689024 +127246,594,animated,1179773213 +127246,594,childhood classics,1179773213 +127246,594,original medium was better,1179773213 +127246,628,Best Movies Ever,1179777135 +127246,628,courtroom drama,1179777135 +127246,628,Deep,1179777586 +127246,628,Ed Norton,1179777586 +127246,628,laura linney,1179777135 +127246,628,politics,1179777135 +127246,628,psychology,1179777135 +127246,628,thought-provoking,1179777135 +127246,708,chick flick,1179773230 +127246,708,childhood classics,1179773231 +127246,750,Deep,1179777539 +127246,750,politics,1179773349 +127246,750,required in high school in 1997,1179773349 +127246,899,enjoyable,1179774100 +127246,899,light,1179774100 +127246,899,required in high school in 1997,1179774100 +127246,1032,Based on a book,1263690825 +127246,1032,Disney,1263690816 +127246,1032,Disney animated feature,1263690837 +127246,1032,dreamlike,1263690844 +127246,1032,Fairy tale,1263690830 +127246,1032,Lewis Carroll,1263690820 +127246,1032,Surreal,1263690808 +127246,1032,Visuals,1263690812 +127246,1035,classic,1179775033 +127246,1080,over-rated,1179772506 +127246,1080,worn-out,1179772506 +127246,1199,Complex,1179775966 +127246,1199,deep,1179775966 +127246,1199,thought-provoking,1179775966 +127246,1203,courtroom drama,1179773431 +127246,1203,politics,1179773431 +127246,1203,thoought-provoking,1179773431 +127246,1207,book was better,1179774001 +127246,1207,politics,1179774001 +127246,1207,required in high school in 1997,1179774001 +127246,1208,book was better,1179772389 +127246,1208,boring,1179772389 +127246,1208,over-rated,1179772389 +127246,1247,over-rated,1179774914 +127246,1259,high school requirement in 1997,1179772625 +127246,1267,Conspiracy,1263690278 +127246,1267,Political,1263690281 +127246,1267,Psychological,1263690285 +127246,1288,cultural classic,1179775050 +127246,1288,mockumentary,1179775050 +127246,1302,childhood classics,1179775544 +127246,1302,expected more,1179775544 +127246,1302,thinks it's profound but it isn't,1179775544 +127246,1302,watched under duress,1179775544 +127246,1377,brain candy,1179775406 +127246,1377,childhood classics,1179775406 +127246,1377,light,1179775406 +127246,1380,childhood classic,1179773065 +127246,1380,sexist,1179773065 +127246,1381,misogyny,1263688308 +127246,1381,sequel,1263688314 +127246,1500,assassin,1179772541 +127246,1500,funny,1179772551 +127246,1500,light,1179772551 +127246,1500,rewatchable,1179772551 +127246,1569,flick,1179776096 +127246,1625,Action,1263688705 +127246,1625,Mystery,1263688709 +127246,1625,psychological,1263688701 +127246,1625,twist ending,1263688693 +127246,1641,actually funny,1179774525 +127246,1722,James Bond,1179775061 +127246,1748,Deep,1179777480 +127246,1748,hot women,1179777471 +127246,1748,innovative,1179774308 +127246,1748,Jennifer Connelly,1179774308 +127246,1748,rewatchable,1179774308 +127246,1748,speculative fiction,1179774308 +127246,1748,thought-provoking,1179777471 +127246,1777,chick flick,1179773031 +127246,1801,Based on a book,1263690887 +127246,1801,Dumas,1263690882 +127246,1921,Cerebral,1263690128 +127246,1921,Engimatic,1263690123 +127246,1921,Existenti,1263690134 +127246,1921,Gory,1263690146 +127246,1921,Mathematics,1263690119 +127246,1921,Psychology,1263690113 +127246,1921,Stylized,1263690116 +127246,1967,Fantasy,1263690256 +127246,1967,Jennifer Connelly,1263690234 +127246,1967,Jim Henson,1263690238 +127246,1967,Muppets,1263690244 +127246,1967,Nostalgia,1263690249 +127246,2006,Catherine Zeta-Jones,1179773022 +127246,2006,hot women,1179773023 +127246,2006,remake,1179773023 +127246,2105,cultural classic,1179776817 +127246,2105,required in high school in 1997,1179776817 +127246,2161,childhood classic first seen in adulthood,1179776340 +127246,2161,over-rated,1179776340 +127246,2167,flick,1179774999 +127246,2167,over-rated,1179774999 +127246,2294,animated,1179776277 +127246,2294,dreamworks,1179776277 +127246,2321,coming of age,1263689320 +127246,2321,political,1263689326 +127246,2321,preachy,1263689334 +127246,2321,Satire,1263689310 +127246,2321,stylized,1263689314 +127246,2321,thoughtful,1263689323 +127246,2329,Best Movies Ever,1179772910 +127246,2329,Deep,1179772910 +127246,2329,Ed Norton,1179772910 +127246,2329,politics,1179772910 +127246,2329,thought-provoking,1179772910 +127246,2424,flick,1179775939 +127246,2424,worn-out,1179775939 +127246,2572,actually funny,1179776504 +127246,2572,better than expected,1179776504 +127246,2572,enjoyable,1179776504 +127246,2572,Julia Stiles,1179776504 +127246,2657,GLTBQ,1179772828 +127246,2657,it thought it was funny but it wasn't,1179772828 +127246,2657,over-rated,1179772828 +127246,2671,chick flick,1179774866 +127246,2692,fun,1179772361 +127246,2692,thought-provoking,1179772361 +127246,2724,flick,1179777356 +127246,2724,it thought it was funny but it wasn't,1179777369 +127246,2746,Dark Comedy,1263690049 +127246,2746,Musical,1263690045 +127246,2746,Nostalgia,1263690039 +127246,2762,cultural classic,1263689517 +127246,2762,enigmatic,1263689492 +127246,2762,M. Night Shyamalan,1263689480 +127246,2762,psychology,1263689489 +127246,2762,twist ending,1263689484 +127246,2762,unique,1263689502 +127246,2918,coming of age,1263689585 +127246,2918,nostalgia,1263689568 +127246,2918,romp,1263689581 +127246,2959,brad pitt,1263688024 +127246,2959,dark comedy,1263688059 +127246,2959,edward norton,1263688020 +127246,2959,mental illness,1263688045 +127246,2959,philosophy,1263688029 +127246,2959,satirical,1263688040 +127246,2959,twist ending,1263688035 +127246,2959,violence,1263688054 +127246,2987,childhood classics,1179772421 +127246,2987,scary,1179772421 +127246,3108,actually funny,1179777306 +127246,3108,deep,1179777306 +127246,3108,more than expected,1179777305 +127246,3108,Robin Williams,1179777306 +127246,3108,thought-provoking,1179777305 +127246,3175,it should have sucked but didn't,1179773106 +127246,3175,parody,1179773106 +127246,3271,book was better (but neither was good),1179774195 +127246,3271,over-rated,1179774195 +127246,3271,required in high school in 1997,1179774195 +127246,3396,actually funny,1179774350 +127246,3396,childhood classic first seen in adulthood,1179774350 +127246,3396,enjoyable,1179774350 +127246,3396,light,1179774350 +127246,3397,childhood classic first seen in adulthood,1179774509 +127246,3397,light,1179774509 +127246,3448,required in high school in 1997,1179772874 +127246,3448,Robin Williams,1179772874 +127246,3545,better then original medium,1179774441 +127246,3545,GLTBQ,1179774441 +127246,3545,politics,1179774441 +127246,3545,rewatchable,1179774441 +127246,4148,too scared to see it,1179776114 +127246,4226,Christopher Nolan,1263689802 +127246,4226,cult film,1263689774 +127246,4226,dark,1263689776 +127246,4226,memory,1263689760 +127246,4226,nonlinear,1263689780 +127246,4226,psychology,1263689758 +127246,4226,stylized,1263689768 +127246,4226,thoughtful,1263689763 +127246,4226,twist ending,1263689751 +127246,4226,unique,1263689765 +127246,4246,chick flick,1179773131 +127246,4246,fairly bad,1179773150 +127246,4246,instills poor moral values,1179773131 +127246,4246,Renee Zwelleger,1179773131 +127246,4246,sexist,1179773131 +127246,4270,not actually scary,1179775201 +127246,4270,unintentionally funny,1179775201 +127246,4308,flick,1179772277 +127246,4361,childhood classics,1179773292 +127246,4361,GLTBQ,1179773292 +127246,4370,boring,1179772566 +127246,4370,drags,1179772566 +127246,4447,actually funny,1179775443 +127246,4447,better than expected,1179775443 +127246,4447,flick,1179775443 +127246,4641,cultural classic,1179776222 +127246,4641,over-rated,1179776222 +127246,4641,thinks it's profound but it isn't,1179776222 +127246,4720,Nicole Kidman,1179772777 +127246,4720,scary,1179772777 +127246,4816,it thought it was funny but it wasn't,1179776017 +127246,4816,over-rated,1179776017 +127246,4857,childhood classics,1179774325 +127246,4857,original medium was better,1179774325 +127246,4878,Best Movies Ever,1179772290 +127246,4878,funny,1179772323 +127246,4878,thought-provoking,1179772323 +127246,4886,animation,1179774037 +127246,4886,enjoyable,1179774037 +127246,4886,fun,1179774037 +127246,4886,innovative,1179774037 +127246,4886,Pixar,1179774026 +127246,5013,I don't think I got it; willing to try again,1179775470 +127246,5016,based on a book,1263687940 +127246,5016,kevin spacey,1263687934 +127246,5266,flick,1179774955 +127246,5388,compelling,1179774900 +127246,5388,expected more,1179774900 +127246,5388,thought-provoking,1179774900 +127246,5459,crappy sequel,1179772720 +127246,5459,it thought it was funny but it wasn't,1179772757 +127246,5481,comedy,1263689698 +127246,5481,crude,1263689685 +127246,5481,mike myers,1263689683 +127246,5481,Seth green,1263689663 +127246,5481,sex jokes,1263689688 +127246,5481,Spoof,1263689678 +127246,5528,I'm too scared to see this,1179776644 +127246,5618,animated,1179772474 +127246,5618,fun,1179772474 +127246,5618,light,1179772474 +127246,5630,too scared to see it,1179775491 +127246,5952,book was better (but neither was good),1179774607 +127246,5989,better than expected but still overrated,1179774381 +127246,5989,light,1179774381 +127246,5992,based on a book,1263690466 +127246,5992,Intellectual,1263690480 +127246,5992,Meryl Streep,1263690473 +127246,5992,Nicole Kidman,1263690446 +127246,5992,nonlinear,1263690455 +127246,5992,queer,1263690460 +127246,6350,animated,1179773450 +127246,6350,fun,1179773449 +127246,6541,cultural classic,1179776841 +127246,6541,disappointing,1179776841 +127246,6541,original medium was better,1179776841 +127246,6947,boring,1179772373 +127246,6947,over-rated,1179772373 +127246,7090,atmospheric,1263689276 +127246,7090,beautiful,1263689269 +127246,7090,martial arts,1263689273 +127246,7090,subtitles,1263689286 +127246,7090,visually appealing,1263689281 +127246,7254,scary,1179773257 +127246,7254,terrifying,1179773257 +127246,8360,comedy,1263689616 +127246,8360,crude,1263689613 +127246,8360,Dreamworks,1263689611 +127246,8360,Eddie Murphy,1263689608 +127246,8360,funny,1263689636 +127246,8360,satire,1263689622 +127246,8360,talking animals,1263689633 +127246,8376,it thought it was funny but it wasn't,1179773320 +127246,8376,over-rated,1179773320 +127246,8376,Tina Majorino,1179773320 +127246,8529,Catherine Zeta-Jones,1179775166 +127246,8529,flick,1179775166 +127246,8644,book was better,1179772445 +127246,8970,Best Movies Ever,1179772261 +127246,8984,expected more,1179775274 +127246,8984,original good;sequel sucked,1179775275 +127246,31658,animation,1180364023 +127246,31658,diana wynne jones,1180364023 +127246,31658,had no relation to original medium,1180364023 +127246,31658,the book was better,1180364023 +127246,33004,book was better,1179772856 +127246,33004,enjoyable,1179772856 +127246,33004,light,1179772856 +127246,34048,book was better,1179772951 +127246,34048,movie bore no resemblance to book,1179772951 +127246,34405,Hot women,1179774818 +127246,34405,Joss Whedon,1179774818 +127246,34405,original medium was better (but both were good),1179774818 +127246,34405,speculative fiction,1179774818 +127246,41997,innovative,1179772700 +127246,41997,politics,1179772700 +127246,41997,thought-provoking,1179772700 +127246,44195,politics,1179772645 +127246,44195,rob lowe,1179772645 +127246,45447,flick,1179772335 +127246,45517,actually funny,1179774976 +127246,45517,fun,1179774976 +127246,45517,innovative,1179774976 +127246,45517,instills good moral values,1179774976 +127246,45517,Pixar,1179774976 +127246,46972,Good children movie,1263690724 +127246,46972,Museum,1263690718 +127246,46972,Not funny,1263690735 +127246,46972,Slapstick,1263690731 +127246,46976,actually funny,1180363963 +127246,46976,best movies of all times,1180363963 +127246,53000,I'm too scared to see this,1179777859 +127246,55276,Corporate espionage,1263689996 +127246,55276,George Clooney,1263689988 +127246,55276,Slow pacing,1263690009 +127246,58559,Atmospheric,1263688737 +127246,58559,Dark,1263688734 +127246,58559,Heath Ledger,1263688761 +127246,58559,Vigilante,1263688746 +127246,58803,based on a book,1263745379 +127246,58803,based on a true story,1263745353 +127246,58803,con artists,1263745395 +127246,58803,Kevin Spacey,1263745347 +127246,58803,loosely based on a true story,1263745407 +127246,58803,mathematics,1263745368 +127246,60069,dystopia,1263688165 +127246,60069,environmental,1263688171 +127246,60069,original,1263688150 +127246,60069,pixar,1263688158 +127246,60069,Preachy,1263688176 +127246,63062,period piece,1263690936 +127246,63062,police corruption,1263690944 +127246,63062,political,1263690946 +127246,66097,3-d,1263688432 +127246,66097,based on a book,1263688417 +127246,66097,Neil gaiman,1263688425 +127246,66097,stop motion,1263688438 +127246,67408,computer animation,1263745269 +127246,67408,Contrived plot,1263745246 +127246,67408,Crude,1263745250 +127246,67408,Cute,1263745263 +127246,67408,Dreamworks,1263745237 +127246,67408,Predictable,1263745260 +127246,68099,astronomy,1263689233 +127246,68099,boring,1263689239 +127246,68099,slow-paced,1263689243 +127246,68099,space,1263689230 +127246,68099,touching,1263689236 +127246,68954,devastating,1263688107 +127246,68954,heartbreaking,1263688103 +127246,68954,Pixar,1263688098 +127246,70286,intelligent sci-fi,1263689369 +127246,70286,mockumentry,1263689399 +127246,70286,slow paced,1263689417 +127246,70286,social commentary,1263689373 +127246,70286,thoughtful,1263689376 +127246,70286,unique,1263689364 +127246,70286,violence,1263689404 +127246,71057,dark fantasy,1263690601 +127246,71057,devastating,1263690567 +127246,71057,Interesting animation style,1263690594 +127246,71057,Poorly paced,1263690612 +127246,71057,Predictable,1263690546 +127246,71057,Visually appealing,1263690586 +127246,73017,Action,1263688815 +127246,73017,Atmospheric,1263688818 +127246,73017,Based on a book,1263688803 +127246,73017,Historic fiction,1263688823 +127246,73017,Mystery,1263688828 +127246,73017,Sherlock Holmes,1263688810 +127314,356,optimistic,1438450548 +127314,356,suprisingly funny,1438450548 +127314,356,touching,1438450548 +127319,62,tearful,1142050548 +127319,8947,gap commercial,1142050560 +127323,356,comedy,1428270537 +127323,356,feel-good,1428270537 +127323,356,reflective,1428270537 +127336,260,Nail-biting,1438281782 +127336,260,Thrilling,1438281774 +127346,117533,documentary,1433089765 +127346,117533,government agencies,1433089765 +127346,117533,oscar,1433089765 +127352,26704,Stato di grazia,1163760367 +127384,4069,Matthew McConaughey,1416602743 +127384,5463,dragons,1416602965 +127384,5463,Matthew McConaughey,1416602955 +127384,5463,Post apocalyptic,1416602973 +127392,260,classic sci-fi,1433459721 +127392,260,special effects,1433459714 +127405,2908,true story,1273613236 +127405,3969,change the world,1268862754 +127405,3969,kevin spacey,1268862734 +127405,3969,twist ending,1268862736 +127405,5530,Al Pacino,1268862071 +127405,5530,It's cheeky,1268862059 +127405,5530,Winona Ryder,1268862092 +127405,6323,psychology and the nature of reality,1268862589 +127405,6323,serial killer,1268862585 +127405,6323,twist after twist,1268862574 +127405,6323,twist ending,1268862569 +127405,7254,Ashton Kutcher,1268862680 +127405,7254,Mystery,1268862686 +127405,7254,psychology,1268862654 +127431,260,cult classic,1440963121 +127431,260,good for kids,1440963240 +127431,8154,Federico Fellini,1440964361 +127431,57669,dark comedy,1440964081 +127431,71416,absurdity,1441052465 +127431,71416,swing dancing,1441052469 +127436,296,classic,1426728678 +127436,296,cult film,1426728678 +127436,296,dark humor,1426728678 +127447,2427,but it's a bit long.,1163572611 +127447,2427,I'd see it again,1163572611 +127447,5669,I despise documentaries like this.,1163572587 +127454,372,hello,1210155818 +127454,720,good,1210155679 +127454,2746,excellent!,1210155597 +127457,29,weird,1368399857 +127457,50,great acting,1368399883 +127457,150,dramatic,1368399800 +127457,169,family,1368399913 +127457,204,action,1368399811 +127457,232,relationships,1368399823 +127457,318,friendship,1430784936 +127457,318,uplifting,1430784936 +127457,318,wrongful imprisonment,1430784936 +127457,455,family,1368399913 +127457,804,relationships,1368399823 +127457,1015,family,1368399913 +127457,1016,family,1368399913 +127457,1172,mentor,1368399691 +127457,1175,weird,1368399857 +127457,1199,weird,1368399857 +127457,1307,relationships,1368399823 +127457,1358,oscar (best directing),1368399778 +127457,1552,action,1368399811 +127457,1608,action,1368399811 +127457,1623,horror,1368399903 +127457,1639,relationships,1368399823 +127457,1722,action,1368399811 +127457,1991,horror,1368399903 +127457,2167,action,1368399811 +127457,2262,relationships,1368399823 +127457,2291,original,1368399668 +127457,2315,horror,1368399904 +127457,2335,comedy,1368399711 +127457,2371,comedy,1368399711 +127457,2420,mentor,1368399691 +127457,2460,horror,1368399904 +127457,2762,great ending,1368399933 +127457,2858,great acting,1368399882 +127457,3018,horror,1368399903 +127457,3157,family,1368399913 +127457,3421,comedy,1368399711 +127457,3986,action,1368399811 +127457,4085,comedy,1368399710 +127457,4725,horror,1368399904 +127457,4878,cerebral,1368399975 +127457,4878,original,1368399668 +127457,4878,weird,1368399857 +127457,5452,family,1368399913 +127457,5673,weird,1368399857 +127457,5945,loneliness,1368399757 +127457,5995,dramatic,1368399800 +127457,6188,comedy,1368399711 +127457,7147,story,1368399958 +127457,8641,comedy,1368399711 +127457,8981,relationships,1368399823 +127457,37729,visually appealing,1368399870 +127457,79132,cerebral,1368399975 +127457,86320,cinematography,1343447477 +127457,86320,pacing,1343447468 +127457,86320,plot,1343447468 +127457,86320,unclear character motives,1343447468 +127457,90376,disjointed,1343433580 +127457,90376,disjointed timeline,1343433579 +127457,90376,good acting,1343433580 +127457,90376,musical,1343433579 +127457,90376,unrealistic character motivation,1343433579 +127457,90376,unresolved,1343433580 +127474,29,weird,1367694330 +127474,32,great ending,1367694481 +127474,47,great ending,1367694481 +127474,50,great acting,1367694377 +127474,50,storytelling,1367693922 +127474,150,dramatic,1367694251 +127474,169,family,1367694462 +127474,318,great ending,1367694480 +127474,455,family,1367694461 +127474,491,mentor,1367693752 +127474,593,great acting,1367694377 +127474,858,great acting,1367694377 +127474,1185,cerebral,1367694565 +127474,1227,slow,1432568874 +127474,1241,cult classic,1367694408 +127474,1280,visually appealing,1367694365 +127474,1307,relationships,1367694297 +127474,1385,action,1367694270 +127474,1464,weird,1367694330 +127474,1552,action,1367694270 +127474,1554,visually appealing,1367694364 +127474,1595,family,1367694461 +127474,1608,action,1367694270 +127474,1704,great acting,1367694377 +127474,1784,great acting,1367694377 +127474,1921,visually appealing,1367694364 +127474,2076,weird,1367694330 +127474,2167,action,1367694270 +127474,2262,relationships,1367694297 +127474,2315,horror,1367694448 +127474,2335,comedy,1367693886 +127474,2420,mentor,1367693752 +127474,2421,mentor,1367693752 +127474,2762,great ending,1367694481 +127474,2780,horror,1367694448 +127474,2808,action,1367694270 +127474,3006,dramatic,1367694251 +127474,3018,cult classic,1367694407 +127474,3146,comedy,1367693885 +127474,3157,family,1367694461 +127474,3262,weird,1367694330 +127474,3469,dramatic,1367694251 +127474,3740,cult classic,1367694407 +127474,3986,action,1367694270 +127474,4019,mentor,1367693752 +127474,4226,storytelling,1367693922 +127474,4678,weird,1367694330 +127474,4787,mentor,1367693752 +127474,4816,comedy,1367693885 +127474,4878,original,1367693720 +127474,4878,weird,1367694330 +127474,4978,relationships,1367694297 +127474,5008,dramatic,1367694251 +127474,5339,relationships,1367694297 +127474,6016,storytelling,1367693922 +127474,6188,comedy,1367693885 +127474,6379,horror,1367694448 +127474,6695,horror,1367694448 +127474,6793,family,1367694461 +127474,6953,storytelling,1367693922 +127474,6993,relationships,1367694297 +127474,7161,family,1367694461 +127474,7173,comedy,1367693885 +127474,7698,dramatic,1367694251 +127474,8641,comedy,1367693885 +127474,8914,cerebral,1367694566 +127474,8981,relationships,1367694297 +127474,27904,cerebral,1367694565 +127474,37729,visually appealing,1367694364 +127474,44397,horror,1367694448 +127474,48516,oscar (best directing),1367694205 +127474,48780,storytelling,1367693922 +127474,52967,original,1367693720 +127474,71899,loneliness,1367694028 +127474,79132,cerebral,1367694565 +127474,87697,Speed Dating,1308666568 +127474,93840,horror,1367694448 +127474,97304,story,1367694532 +127474,112183,great performances,1424281558 +127474,114494,hacking,1421000375 +127474,114494,mindfuck,1421000375 +127474,114494,stylized,1421000375 +127474,127652,coming of age,1423079642 +127474,127652,contemporary,1423079624 +127474,127652,true story,1423079635 +127486,88125,based on a book,1450290806 +127486,88125,Daniel Radcliffe,1450290803 +127486,88125,fantasy,1450290812 +127486,88125,Harry Potter,1450290818 +127486,88125,magic,1450290798 +127486,89745,Captain America,1450291134 +127486,89745,comic book,1450291113 +127486,89745,Hulk,1450291120 +127486,89745,Iron Man,1450291115 +127486,89745,Marvel,1450291126 +127486,89745,superhero,1450291103 +127486,89745,superhero team,1450291123 +127486,89745,Thor,1450291131 +127486,89745,visually stunning,1450291117 +127486,89864,comedy,1450290354 +127486,89864,Joseph Gordon-Levitt,1450290339 +127486,89864,Seth Rogen,1450290341 +127486,89864,touching,1450290355 +127486,93270,party,1450290163 +127486,95510,comic book,1450291151 +127486,95510,Marvel,1450291149 +127486,95510,special effects,1450291156 +127486,95510,Spider-Man,1450291145 +127486,95510,superhero,1450291147 +127486,106782,based on a true story,1450290840 +127486,106782,drugs,1450290834 +127486,106782,economics,1450290848 +127486,106782,Great acting,1450290860 +127486,106782,Leonardo DiCaprio,1450290832 +127486,106782,Nudity (Full Frontal),1450290837 +127486,106782,Nudity (Topless),1450290851 +127486,106782,true story,1450290854 +127486,106782,Wall Street,1450290844 +127486,109483,relationships,1450290628 +127486,113604,drama,1450290313 +127486,113604,touching,1450290315 +127486,134853,Animation,1450291076 +127486,134853,childhood,1450291094 +127486,134853,Pixar,1450291050 +127488,260,future fantasy,1439913623 +127488,260,space adventure,1439913633 +127514,55269,trains,1329190706 +127514,74458,predictable,1329190538 +127528,32,great ending,1368917871 +127528,50,storytelling,1368917427 +127528,70,cult classic,1368917771 +127528,169,family,1368917823 +127528,204,action,1368917635 +127528,232,relationships,1368917657 +127528,455,family,1368917822 +127528,508,dramatic,1368917607 +127528,668,criterion,1368917485 +127528,858,great acting,1368917746 +127528,858,oscar (best directing),1368917581 +127528,1015,family,1368917823 +127528,1016,family,1368917823 +127528,1175,weird,1368917680 +127528,1199,cerebral,1368917953 +127528,1199,weird,1368917680 +127528,1299,dramatic,1368917607 +127528,1307,relationships,1368917657 +127528,1552,action,1368917634 +127528,1608,action,1368917634 +127528,1623,horror,1368917793 +127528,1704,mentor,1368917349 +127528,1722,action,1368917635 +127528,1921,visually appealing,1368917707 +127528,1952,loneliness,1368917514 +127528,1991,horror,1368917793 +127528,2076,weird,1368917680 +127528,2108,story,1368917930 +127528,2291,original,1368917285 +127528,2315,horror,1368917793 +127528,2335,comedy,1368917380 +127528,2355,story,1368917930 +127528,2371,comedy,1368917380 +127528,2394,story,1368917930 +127528,2460,horror,1368917793 +127528,2762,great ending,1368917871 +127528,3018,horror,1368917793 +127528,3070,cult classic,1368917771 +127528,3157,family,1368917822 +127528,3421,comedy,1368917380 +127528,3462,talky,1368917913 +127528,3470,criterion,1368917485 +127528,4085,comedy,1368917380 +127528,4725,horror,1368917793 +127528,4848,visually appealing,1368917707 +127528,4878,cerebral,1368917953 +127528,4878,original,1368917285 +127528,4878,weird,1368917680 +127528,5945,loneliness,1368917514 +127528,5995,dramatic,1368917607 +127528,6188,comedy,1368917380 +127528,6787,story,1368917930 +127528,6987,criterion,1368917485 +127528,7147,story,1368917930 +127528,7327,criterion,1368917485 +127528,8154,criterion,1368917485 +127528,8641,comedy,1368917380 +127528,8981,relationships,1368917657 +127528,27741,off-beat,1332642253 +127528,32587,storytelling,1368917427 +127528,50872,story,1368917930 +127528,79132,cerebral,1368917953 +127535,2959,action,1332568458 +127535,2959,atmospheric,1332568464 +127535,2959,philosophical,1332568469 +127535,2959,social commentary,1332568476 +127545,260,space adventure,1437902271 +127545,260,space epic,1437902292 +127551,116797,helpless,1432821055 +127551,116797,stressful,1432821055 +127551,116797,well-made,1432821055 +127554,356,bravery,1437423674 +127554,356,entertaining,1437423674 +127554,356,moving,1437423674 +127586,296,Quentin Tarantino,1398710749 +127586,318,prison,1394033664 +127586,318,prison escape,1394033669 +127586,318,psychology,1394033705 +127586,318,thought-provoking,1394033683 +127586,318,twist ending,1394033673 +127586,356,bittersweet,1394033729 +127586,356,psychology,1394033726 +127586,1784,classic,1397484547 +127586,1784,Jack Nicholson,1397484527 +127586,1784,psychology,1397484524 +127586,1784,relationships,1397484539 +127586,1784,Romance,1397484542 +127586,1784,slow,1397484533 +127586,2959,based on a book,1401609815 +127586,2959,philosophy,1401609812 +127586,2959,psychological,1401609809 +127586,2959,twist ending,1401609818 +127586,3578,Rome,1394041068 +127586,3949,atmospheric,1402261999 +127586,3949,depressing,1402262036 +127586,3949,drugs,1402261997 +127586,3949,psychology,1402262005 +127586,4262,Al Pacino,1410098939 +127586,4262,drugs,1410098942 +127586,6874,Japan,1394033992 +127586,6874,martial arts,1394033977 +127586,6874,Quentin Tarantino,1394033980 +127586,6874,stylized,1394033989 +127586,6874,violence,1394033984 +127586,7143,martial arts,1394039998 +127586,8910,Dustin Hoffman,1394034483 +127586,8910,existentialism,1394034463 +127586,8910,Mark Wahlberg,1394034460 +127586,8910,Naomi Watts,1394034458 +127586,8910,philosophy,1394034461 +127586,8910,psychology,1394034455 +127586,30810,Bill Murray,1402239060 +127586,30810,comedy,1402239058 +127586,30810,visually appealing,1402239052 +127586,30810,Wes Anderson,1402239055 +127586,54503,cocaine,1402072511 +127586,54503,comedy,1402072516 +127586,54503,Seth Rogen,1402072504 +127586,55247,atmospheric,1394034222 +127586,55247,based on a true story,1394034224 +127586,55247,bittersweet,1394034226 +127586,55247,psychology,1394034215 +127586,55247,road trip,1394034196 +127586,55247,self discovery,1394034218 +127586,55269,Bill Murray,1402172571 +127586,55269,cinematography,1402172568 +127586,55269,dark comedy,1402172560 +127586,55269,spiritual journey,1402172554 +127586,55269,Wes Anderson,1402172557 +127586,60293,drugs,1397156364 +127586,60293,sex,1397156375 +127586,60293,slow,1397156372 +127586,60293,weed,1397156360 +127586,81562,hallucination,1394034273 +127586,81562,intense,1394034277 +127586,81562,loneliness,1394034280 +127586,81562,man vs. nature,1394034269 +127586,81562,nature,1394034251 +127586,81562,psychology,1394034267 +127586,81562,slow,1394034247 +127586,81562,survival,1394034249 +127586,85414,mindfuck,1401609926 +127586,99114,Funny,1394034050 +127586,99114,Leonardo DiCaprio,1394034052 +127586,99114,Quentin Tarantino,1394034044 +127586,99114,violence,1394034046 +127586,99114,visually appealing,1394034059 +127586,104841,3D,1394041123 +127586,104841,physics,1394041095 +127586,104841,visually appealing,1394041110 +127586,105504,hijacking,1394033865 +127586,105504,tense,1394033861 +127586,106920,artificial intelligence,1394033895 +127586,106920,Human Computer Interaction,1394033898 +127586,106920,psychology,1394033885 +127586,106920,thought-provoking,1394033886 +127586,109374,cinematography,1396879697 +127586,109374,visually appealing,1396879687 +127586,109374,war,1396879705 +127586,109374,Wes Anderson,1396879693 +127621,99114,Revenge,1359579254 +127656,68358,action,1259658483 +127674,1354,lars von trier,1149839783 +127679,260,good vs evil,1435458890 +127679,260,sci-fi,1435458885 +127679,134853,feel good,1435459041 +127679,134853,funny,1435459041 +127679,134853,thought provoking,1435459041 +127704,154,Bunuel,1148336856 +127704,353,Proyas,1148257755 +127704,750,Stanley Kubrick,1148257508 +127704,908,Hitchcock,1148257492 +127704,923,Orson Welles,1148257560 +127704,1208,drugs,1148257477 +127704,1217,Kurosawa,1148473521 +127704,1237,Ingmar Bergman,1148380184 +127704,1305,Wim Wenders,1148259353 +127704,1529,90210 on acid,1160788752 +127704,1611,Gus Van Sant,1148259034 +127704,1748,Proyas,1148257893 +127704,1884,drugs,1148257575 +127704,1921,Darren Aronofsky,1148337902 +127704,2076,David Lynch,1148380268 +127704,2289,Robert Altman,1148473545 +127704,2599,MTV,1148241826 +127704,2600,cronenberg,1148336885 +127704,2873,paul auster,1159993271 +127704,2966,David Lynch,1148380174 +127704,3108,Gilliam,1148336390 +127704,3552,stoner movie,1148257555 +127704,3676,David Lynch,1148337802 +127704,3949,Darren Aronofsky,1148337926 +127704,4144,Wong Kar Wai,1148380046 +127704,5269,Haneke,1148336908 +127704,5878,Almodovar,1148257529 +127704,5995,Roman Polanski,1148379949 +127704,6460,Orson Welles,1148336844 +127704,6641,Haneke,1148336931 +127704,6975,Haneke,1167682917 +127704,7123,cronenberg,1148336790 +127704,7361,Charlie Kaufman,1148257571 +127704,8367,Haneke,1148336944 +127704,36276,Haneke,1148336757 +127719,586,classic,1239568974 +127719,586,comedy,1239568980 +127719,39292,historical,1239569026 +127719,39292,journalism,1239569028 +127721,3949,depressing,1142430848 +127721,27773,depressing,1142430882 +127746,4025,chick flick,1267575228 +127746,8531,black comedy,1267575352 +127764,53468,Canadian,1218686331 +127764,53468,zombies,1218686315 +127790,40148,That it makes you think in the end.,1284160578 +127814,912,bittersweet,1447736049 +127814,912,classic,1447736034 +127814,912,classic romance,1447736052 +127814,912,espionage,1447736038 +127814,912,Film Noir,1447736046 +127814,912,romance,1447736043 +127814,912,World War II,1447736041 +127814,1295,based on a book,1447735787 +127814,1295,Milan Kundera,1447735789 +127814,1295,photography,1447735793 +127814,1295,refugee,1447735923 +127814,1295,revolution,1447735921 +127831,260,sci-fi,1431376780 +127831,260,space,1431376788 +127831,296,all star cast,1431377703 +127831,296,good dialogue,1431377703 +127831,296,violence,1431377703 +127839,260,Futuristic,1444688766 +127839,260,Jedi,1444688748 +127843,110,beautiful scenery,1424021675 +127843,110,golden globe winner,1424021675 +127843,110,highly quotable,1424021675 +127858,6187,Alan Parker,1269052079 +127858,6187,excellent script,1269052079 +127858,6187,political,1269052079 +127858,6187,thought-provoking,1269052079 +127860,1203,classic,1314909486 +127860,1203,good dialogue,1314909504 +127860,1203,gritty,1314909509 +127860,1203,low budget,1314909492 +127860,1203,social commentary,1314909497 +127860,1203,thought-provoking,1314909478 +127860,2291,dark,1314909216 +127860,2291,gothic,1314909237 +127860,2291,surreal,1314909212 +127860,2291,Tim Burton,1314909223 +127860,4226,complicated,1314909619 +127860,4226,dark,1314909622 +127860,4226,dreamlike,1314909616 +127860,4226,nonlinear,1314909636 +127860,4226,psychological,1314909633 +127860,4226,psychology,1314909627 +127860,4226,revenge,1314909602 +127860,4226,stylized,1314909608 +127860,4226,tense,1314909611 +127860,4226,twist ending,1314909598 +127860,7147,dreamlike,1314909297 +127860,7147,reflective,1314909319 +127860,7147,stylized,1314909329 +127860,7147,surreal,1314908975 +127860,7147,Tim Burton,1314909305 +127860,7147,twist ending,1314909311 +127860,37729,dark,1314909392 +127860,37729,gothic,1314909402 +127860,37729,Helena Bonham Carter,1314909413 +127860,37729,Tim Burton,1314909387 +127860,48780,twist ending,1314909069 +127860,56093,dark,1314909546 +127860,56093,ethics,1314909553 +127860,56093,psychology,1314909543 +127860,56757,dark comedy,1314909144 +127860,56757,Johnny Depp,1314909148 +127860,56757,serial killer,1314909138 +127860,58559,atmospheric,1314909677 +127860,58559,Batman,1314909109 +127860,58559,music,1314909704 +127860,58559,psychological thriller,1314909694 +127860,58559,psychology,1314909104 +127860,58559,stylized,1314909672 +127860,58559,thriller,1314909685 +127860,71468,dreams,1314909019 +127860,71468,surreal,1314909023 +127860,79132,alternate reality,1314909053 +127860,79132,sci-fi,1314909049 +127883,27773,stylish,1206591136 +127886,1130,Joe Dante,1244182839 +127886,1130,werewolf,1244182844 +127886,1130,werewolves,1244182836 +127910,356,journey,1438268350 +127910,356,love,1438268350 +127910,356,story of life,1438268350 +127922,67429,animated,1431214992 +127922,67429,feminist,1431214992 +127922,67429,hindu,1431214992 +127966,1292,A wonderful satire address the importance American society has placed on cultural savvy and political connectedness over intellect/critical thinking.,1140241228 +127977,260,apocolypse,1437428303 +127977,260,beautiful,1437428275 +127977,260,coming of age,1437428253 +127977,260,end of the world,1437428295 +127977,260,suspensful,1437428312 +127983,31658,Studio Ghibli,1360380733 +127990,110,Medieval,1151067228 +127990,253,vampire,1139002252 +127990,316,sci-fi,1151067472 +127990,593,serial killer,1151067445 +127990,741,cyberpunk,1151067372 +127990,1127,sci-fi,1151067287 +127990,1233,submarine,1151067320 +127990,1270,adventure,1151067195 +127990,1270,time travel,1151067193 +127990,1350,demons,1151067417 +127990,1377,super-hero,1151067311 +127990,1610,submarine,1151067391 +127990,2011,time travel,1151067198 +127990,2115,archaeology,1151067402 +127990,2291,Tim Burton,1151067240 +127990,2420,classic,1151066578 +127990,3081,Dark,1151067451 +127990,3081,Tim Burton,1151067449 +127990,3578,Rome,1151067254 +127990,3996,martial arts,1151067235 +127990,4027,Quirky,1151067068 +127990,4865,Johnny Depp,1151067361 +127990,5349,comic book,1151067458 +127990,5349,super-hero,1151067456 +127990,6755,B-movie,1151066729 +127990,7454,vampires,1151066702 +127990,7649,Michael Vejar,1151067186 +127990,7649,sci-fi,1151067188 +127990,8961,super-hero,1151067181 +127990,26152,camp,1151067203 +127990,26865,martial arts,1151067355 +127990,37830,anime,1151067159 +127990,37830,cgi,1151067153 +127990,37830,videogame,1151067157 +128007,1136,British,1138500425 +128007,1220,classic,1138500298 +128007,2028,WWII,1138500482 +128007,2355,animation,1138500286 +128007,7153,epic,1138500361 +128032,260,saga,1435351913 +128032,260,sci-fi,1435351924 +128059,17,18th century,1338986883 +128059,17,Jane Austen,1338986861 +128059,17,romance,1338986899 +128059,17,trials and tribulations,1338986891 +128059,28,18th century,1338986070 +128059,28,Jane Austen,1338986080 +128059,302,16th century,1339426830 +128059,302,costume drama,1339426938 +128059,302,lives of women,1339426867 +128059,302,massacre,1339426889 +128059,302,religious conflict,1339426923 +128059,838,Jane Austen,1338985812 +128059,1732,black comedy,1339423936 +128059,1732,Coen Brothers,1339423960 +128059,2336,costume drama,1339426402 +128059,2336,Elizabethan,1339426432 +128059,2336,lives of women,1339426453 +128059,2336,nobility,1339426606 +128059,2739,unhappy marriage,1339425537 +128059,2739,women's rights,1339425602 +128059,4246,funny,1338987108 +128059,4246,mister darcy,1338987054 +128059,4246,romantic comedy,1338987149 +128059,5502,alien invasion,1339424873 +128059,6815,chase. woman in distress,1338984877 +128059,6815,humorous,1338984877 +128059,7151,17th century,1339425769 +128059,7151,costume drama,1339425789 +128059,7151,lives of women,1339426369 +128059,7151,painter,1339425856 +128059,7151,visually stunning,1339425840 +128059,40629,18th century,1338986676 +128059,40629,Jane Austen,1338986662 +128059,40629,mister darcy,1338986715 +128059,40629,romance,1338986690 +128059,40629,trials and tribulations,1338986810 +128059,51834,Jane Austen,1339425164 +128059,51834,romance,1339425201 +128059,55274,costume drama,1339426645 +128059,55274,Elizabethan,1339426673 +128059,55274,lives of women,1339426685 +128059,55274,nobility,1339426659 +128059,57669,black comedy,1337786925 +128059,62293,18th century,1339425345 +128059,62293,costume drama,1339425361 +128059,62293,lives of women,1339426499 +128059,62293,nobility,1339426589 +128059,62293,unhappy marriage,1339425411 +128059,62293,women's rights,1339425709 +128059,74508,18th century,1338986304 +128059,74508,Jane Austen,1338986125 +128059,74508,romance,1338986366 +128059,89678,18th century,1338986433 +128059,89678,foolish,1338986601 +128059,89678,Jane Austen,1338986425 +128059,89678,romance,1338986445 +128063,541,Philip K. Dick,1159813056 +128063,541,sci-fi,1159813060 +128063,5165,zombie,1159813829 +128063,7235,Takashi Miike,1159813836 +128068,51077,Eva Mendes,1360107544 +128068,51077,SO bad,1360107520 +128068,86332,Bechdel Test:Fail,1359705182 +128068,113378,emotions,1436823506 +128068,120466,artificial intelligence,1436803593 +128068,120466,Touching,1436803568 +128081,82,Oscar (Best Foreign Language Film),1201813050 +128081,111,Golden Palm,1201354261 +128081,199,Golden Palm,1201354661 +128081,213,Oscar (Best Foreign Language Film),1201813065 +128081,296,Golden Palm,1201353783 +128081,446,Golden Palm,1201353828 +128081,509,Golden Palm,1201353810 +128081,665,Golden Palm,1201353754 +128081,1041,Golden Palm,1201353736 +128081,1157,Golden Palm,1201355389 +128081,1161,Golden Palm,1201354201 +128081,1161,Oscar (Best Foreign Language Film),1201813523 +128081,1172,Oscar (Best Foreign Language Film),1201813219 +128081,1184,Oscar (Best Foreign Language Film),1201813189 +128081,1186,Golden Palm,1201353936 +128081,1208,Golden Palm,1201354218 +128081,1212,Golden Palm,1201355216 +128081,1251,Oscar (Best Foreign Language Film),1201814540 +128081,1305,Golden Palm,1201354013 +128081,1446,Oscar (Best Foreign Language Film),1201812979 +128081,1859,Golden Palm,1201353720 +128081,1860,Oscar (Best Foreign Language Film),1201812998 +128081,1938,Golden Palm,1201355275 +128081,1946,Golden Palm,1201354966 +128081,2068,Oscar (Best Foreign Language Film),1201813377 +128081,2075,Oscar (Best Foreign Language Film),1201813446 +128081,2285,Golden Palm,1201354502 +128081,2324,Oscar (Best Foreign Language Film),1201812962 +128081,2351,Oscar (Best Foreign Language Film),1201814407 +128081,2512,Golden Palm,1201354056 +128081,2673,Golden Palm,1201353679 +128081,2745,Golden Palm,1201353967 +128081,2848,Golden Palm,1201355132 +128081,2927,Golden Palm,1201355326 +128081,2943,Oscar (Best Foreign Language Film),1201813143 +128081,2969,Golden Palm,1201354599 +128081,2969,Oscar (Best Foreign Language Film),1201814598 +128081,2971,Golden Palm,1201354179 +128081,3010,Golden Palm,1201353652 +128081,3083,Oscar (Best Foreign Language Film),1201812935 +128081,3091,Golden Palm,1201354155 +128081,3470,Oscar (Best Foreign Language Film),1201813599 +128081,3730,Golden Palm,1201354329 +128081,3788,Golden Palm,1201354568 +128081,3816,Oscar (Best Foreign Language Film),1201813344 +128081,3910,Golden Palm,1201353633 +128081,3996,Oscar (Best Foreign Language Film),1201812908 +128081,4037,plot twist,1247609268 +128081,4046,Golden Palm,1201354905 +128081,4297,Golden Palm,1201353879 +128081,4297,Oscar (Best Foreign Language Film),1201796645 +128081,4424,Oscar (Best Foreign Language Film),1201814012 +128081,4788,Oscar (Best Foreign Language Film),1201813507 +128081,4806,Oscar (Best Foreign Language Film),1201814579 +128081,4967,Oscar (Best Foreign Language Film),1201812885 +128081,5060,Golden Palm,1201354487 +128081,5073,Golden Palm,1201353607 +128081,5087,Oscar (Best Foreign Language Film),1201813546 +128081,5373,Golden Palm,1201353256 +128081,5475,Oscar (Best Foreign Language Film),1201814761 +128081,5725,Golden Palm,1201354129 +128081,5995,Golden Palm,1201353585 +128081,6101,Golden Palm,1201354102 +128081,6146,Oscar (Best Foreign Language Film),1201813398 +128081,6216,Oscar (Best Foreign Language Film),1201812853 +128081,6271,Oscar (Best Foreign Language Film),1201813722 +128081,6440,Golden Palm,1201353901 +128081,6442,Oscar (Best Foreign Language Film),1201813092 +128081,6666,Oscar (Best Foreign Language Film),1201813706 +128081,6778,Oscar (Best Foreign Language Film),1201813166 +128081,6791,Oscar (Best Foreign Language Film),1201813247 +128081,6890,Golden Palm,1201353479 +128081,6954,Oscar (Best Foreign Language Film),1201812827 +128081,7044,Golden Palm,1201353922 +128081,7088,Golden Palm,1201354812 +128081,7088,Oscar (Best Foreign Language Film),1201814444 +128081,7089,Oscar (Best Foreign Language Film),1201813691 +128081,7106,Oscar (Best Foreign Language Film),1201813624 +128081,7206,Oscar (Best Foreign Language Film),1201814422 +128081,7234,Oscar (Best Foreign Language Film),1201814390 +128081,7700,Golden Palm,1201355000 +128081,7820,Oscar (Best Foreign Language Film),1201814465 +128081,7939,Oscar (Best Foreign Language Film),1201814485 +128081,8068,Oscar (Best Foreign Language Film),1201814507 +128081,8154,Golden Palm,1201354794 +128081,8239,Golden Palm,1201354751 +128081,8456,Oscar (Best Foreign Language Film),1201814802 +128081,8505,Golden Palm,1201353701 +128081,8622,Golden Palm,1201353534 +128081,8724,Golden Palm,1201354705 +128081,8748,Oscar (Best Foreign Language Film),1201814558 +128081,26302,Golden Palm,1201354347 +128081,27803,Oscar (Best Foreign Language Film),1201812790 +128081,44204,Oscar (Best Foreign Language Film),1201812755 +128081,44937,Golden Palm,1201353501 +128081,47894,Golden Palm,1201353449 +128081,55069,Golden Palm,1201353396 +128081,63808,Golden palm,1241513474 +128081,81751,Golden Palm,1340664541 +128081,86898,Golden Palm,1340665016 +128130,296,funny,1421066807 +128130,296,great performances,1421066807 +128130,296,quentin tarantino,1421066807 +128150,260,"space, adventure",1439118571 +128152,260,action,1439165594 +128152,260,sci-fi,1439165588 +128167,260,action,1440942244 +128167,260,sci-fi,1440942234 +128167,260,space opera,1440942248 +128183,4212,Agatha Christie,1159844531 +128185,8012,Beat Takeshi,1314181567 +128186,593,psychological,1403995222 +128186,593,psychology,1403995214 +128186,1258,based on a book,1403995009 +128186,1258,cult film,1403994999 +128186,1258,disturbing,1403995013 +128186,1258,imdb top 250,1403995016 +128186,1258,mental illness,1403995002 +128186,1258,psychological,1403994996 +128186,7502,American propaganda,1403995531 +128186,7502,pro military,1403995520 +128186,63876,gay,1403995433 +128186,63876,glbt,1403995446 +128186,63876,thought-provoking,1403995437 +128186,71535,dark comedy,1404055440 +128186,71535,post-apocalyptic,1404055450 +128186,71535,witty,1404055454 +128186,105355,bittersweet,1404055645 +128186,105355,lesbian,1404055634 +128186,105355,queer,1404055615 +128186,105355,slow,1404055624 +128186,105355,visually appealing,1404055640 +128186,105355,well written,1404055628 +128186,105519,philosophical,1403994920 +128186,105519,weak ending,1403994937 +128186,111362,Marvel,1403995168 +128186,111362,superhero,1403995182 +128186,111362,superpowers,1403995178 +128188,1186,Steven Soderbergh,1242645418 +128188,1321,allright,1242644401 +128188,1321,werewolf,1242644243 +128188,54997,review,1242644380 +128188,62265,Uma Thurman,1242644055 +128188,68954,good moive,1246941906 +128188,68954,storytelling,1246941915 +128190,6269,child abuse,1149039269 +128190,8949,buddy,1141486125 +128190,37741,slow-moving,1146369219 +128219,260,Boring,1444961520 +128219,260,outdated,1444961528 +128226,260,Science Fiction,1436429587 +128228,260,adventure,1431114746 +128228,260,scifi cult,1431114754 +128253,260,funny,1434985306 +128253,260,Science Fiction,1434985287 +128254,115713,artificial intelligence,1446877937 +128254,115713,sci-fi,1446877933 +128268,318,feel good,1416225848 +128268,318,grub,1416225859 +128268,318,Morgan Freeman,1416225843 +128268,318,prison escape,1416225887 +128268,318,tim,1416225914 +128291,140631,horror,1439355204 +128291,140631,indie,1439355207 +128291,140631,monster movie,1439355198 +128291,140631,old school feel,1439355194 +128304,296,quirky,1305974751 +128304,296,Samuel L. Jackson,1305974745 +128304,1653,dystopia,1306497136 +128304,1653,sci-fi,1306497139 +128304,2571,alternate reality,1305974660 +128304,2571,cyberpunk,1305974663 +128304,2571,dystopia,1305974665 +128304,2571,martial arts,1305974642 +128304,2571,post apocalyptic,1305974654 +128304,2571,post-apocalyptic,1305974655 +128304,2571,virtual reality,1305974658 +128304,7438,Japan,1305974730 +128304,7438,Quentin Tarantino,1305974726 +128304,7438,stylized,1305974729 +128304,44191,comic book,1305974692 +128304,44191,politics,1305974695 +128304,56782,Daniel Day-Lewis,1306497186 +128304,70286,intelligent,1305974845 +128304,70286,mock documentary,1305974841 +128304,70286,satire,1305974833 +128304,70286,social commentary,1305974830 +128304,80917,creative,1306497113 +128304,80917,no action,1306497104 +128304,80917,science fiction,1306497111 +128304,85131,Cheesy Soundtrack,1305974594 +128304,85131,cliche,1305974591 +128304,85131,Unoriginal,1305974593 +128310,260,good vs evil,1442731406 +128310,260,great story,1442731410 +128310,260,interesting,1442731428 +128330,260,let the force be with you,1437011235 +128330,260,Star Wars,1437011227 +128356,260,geeky,1438050919 +128356,260,sci-fi,1438050914 +128369,3275,Boston,1206310395 +128369,3275,Irish Americans,1206310395 +128377,4619,childhood fav,1191022815 +128392,260,good science fictional technology,1444327071 +128392,260,good story,1444327059 +128392,141058,good,1444327595 +128450,61026,Romance of the Three Kingdoms,1255144422 +128450,68486,Romance of the Three Kingdoms,1255144435 +128465,276,family,1188533235 +128465,277,children's story,1188533111 +128465,362,animated classic,1188533171 +128465,1994,sci-fi. dark,1188533136 +128465,5377,romance,1188533150 +128465,7147,family bonds,1188533161 +128489,377,Don't get dead,1321936925 +128489,377,good acting,1321936903 +128489,377,Keanu Reeves,1321936941 +128489,377,Wooden Acting,1321936938 +128489,541,artificial intelligence,1317443481 +128489,541,cyberpunk,1317443476 +128489,541,Robot rape scene,1317443552 +128489,541,sci-fi,1317443478 +128489,593,based on a book,1315948555 +128489,593,cannibalism,1315948545 +128489,593,classic,1315948536 +128489,593,gothic,1315948525 +128489,593,Hannibal Lecter,1315948533 +128489,593,mental illness,1315948522 +128489,595,Gaston,1320722204 +128489,595,The beast,1320722214 +128489,733,A hole,1319861497 +128489,733,Cut the chit chat A-Hole,1319861534 +128489,733,Michael Bay,1319861478 +128489,733,Nicolas Cage,1319861414 +128489,733,Nudity (Nic Cage),1319861462 +128489,733,Sean Connery,1319861474 +128489,733,Zeus Butthole,1319861563 +128489,1028,catchy score,1317528051 +128489,1028,childhood,1317493808 +128489,1028,classic,1317493803 +128489,1028,Dick Van Dyke,1317493788 +128489,1028,Julie Andrews,1317493784 +128489,1028,musical,1317493785 +128489,1028,surreal,1317493797 +128489,1028,villain nonexistent or not needed for good story,1317493786 +128489,1101,Gay Subtext,1320738710 +128489,1101,Oscar (Best Music - Original Song),1320738718 +128489,1101,Playing with those Boys,1320738730 +128489,1206,based on a book,1315963496 +128489,1206,disturbing,1315963484 +128489,1206,dystopia,1315963492 +128489,1206,Nudity (Full Frontal),1315963475 +128489,1206,psychology,1315963482 +128489,1206,Stanley Kubrick,1315963420 +128489,1206,Surrealism,1315963479 +128489,1206,Tits,1315963413 +128489,1552,Danny Trejo,1319158564 +128489,1552,dave chapelle,1319158533 +128489,1552,Great Actions,1319158572 +128489,1552,Homestuck,1319158578 +128489,1552,John Cusack,1319158541 +128489,1552,John Malkovich,1319158538 +128489,1552,Nicolas Cage,1319158529 +128489,1552,soundtrack,1319158547 +128489,1552,Steve Buscemi,1319158527 +128489,1573,deep,1319935764 +128489,1573,Drama,1319935788 +128489,1573,John Travolta,1319935754 +128489,1573,John Woo,1319935755 +128489,1573,Nicolas Cage,1319935752 +128489,1573,Nudity (Nic Cage),1319935736 +128489,1573,ridiculous,1319935759 +128489,1573,Romance,1319935774 +128489,1873,adapted from:book,1319935657 +128489,1873,adapted from:play/opera,1319935659 +128489,1873,classic,1319935660 +128489,1873,Geoffrey Rush,1319935674 +128489,1873,Liam Neeson,1319935665 +128489,1873,Slow Pacing,1319935681 +128489,1873,Uma Thurman,1319935652 +128489,1917,Animal crackers,1319076057 +128489,1917,apocalypse,1319075976 +128489,1917,Ben Affleck,1319075970 +128489,1917,Bruce Willis,1319075973 +128489,1917,Cheesy (bad),1319076018 +128489,1917,cheesy (good),1319075994 +128489,1917,Guns in space,1319076040 +128489,1917,Homestuck,1319076023 +128489,1917,humorous,1319075988 +128489,1917,Owen Wilson,1319075966 +128489,1917,sci-fi,1319075981 +128489,1917,space,1319075982 +128489,2011,Great Scott!,1318104189 +128489,2012,Great Scott!,1318104233 +128489,2012,Nudity (Rear - Brief),1318104221 +128489,2114,outer space,1315963686 +128489,2114,pony boy curtis,1315963622 +128489,2114,Ponyboy Dies,1315963642 +128489,2114,Stay gold,1315963632 +128489,2288,aliens,1322296021 +128489,2288,Antarctica,1322296006 +128489,2288,based on a book,1322296015 +128489,2288,Lovecraftian mythology,1322295988 +128489,2288,paranoia,1322295991 +128489,2288,shape shifter,1322295985 +128489,2288,Special Effects,1322296012 +128489,2550,eerie,1319947790 +128489,2550,ghosts,1319947798 +128489,2550,gothic,1319947800 +128489,2550,haunted house,1319947801 +128489,2550,horror,1319947802 +128489,2550,music,1319947837 +128489,2550,paranormal,1319947821 +128489,2550,Scary Movies To See on Halloween,1319947846 +128489,2550,Slow Opening,1319947804 +128489,2550,suspense,1319947819 +128489,4011,Brad Pitt,1314920363 +128489,4011,Guy Ritchie,1314920385 +128489,4011,multiple storylines,1314920352 +128489,4011,narrated,1314920376 +128489,4011,quirky,1314920359 +128489,4571,Awful hair/outfits,1319958318 +128489,4571,Bad Music,1319958326 +128489,4571,Everything,1319958283 +128489,4571,Excrutiating,1319958241 +128489,4786,1970's,1320732068 +128489,4786,Boring,1320732064 +128489,4786,Poor visual quality,1320732073 +128489,4786,to see: b-grade horror,1320732039 +128489,5544,adapted from:book,1319167397 +128489,5544,Bollocks,1319167382 +128489,5544,Malcolm McDowell,1319167388 +128489,5544,Popycock,1319167370 +128489,5544,See also:The Time Machine(1960),1319167405 +128489,6874,classic,1314671093 +128489,6874,Japan,1314671084 +128489,6874,Kaboom Cereal,1314671068 +128489,6874,nonlinear,1314671075 +128489,6874,Quentin Tarantino,1314671089 +128489,7438,No kaboom cereal,1314671136 +128489,8690,aliens,1329625587 +128489,8690,First half of the movie,1329625601 +128489,8690,Second half of the movie,1329625607 +128489,8690,time travel,1329625594 +128489,8690,Tralfamadore,1329625627 +128489,8690,World War II,1329625591 +128489,27351,based on manga,1329974121 +128489,27351,cult horror,1329974129 +128489,27351,curse,1329974141 +128489,27351,decapitation,1329974143 +128489,27351,surrealism,1329974125 +128489,30820,could go farther,1317510405 +128489,30820,disturbing,1317510398 +128489,30820,Disturbing and moving,1317510413 +128489,30820,honest,1317510439 +128489,30820,Kevin Bacon,1317510436 +128489,30820,secrets,1317510411 +128489,36529,Africa,1320722069 +128489,36529,based on a true story,1320722064 +128489,36529,Jared Leto,1320722153 +128489,36529,Nicolas Cage,1320722055 +128489,36529,No Cage-Fu,1320722048 +128489,39183,1970s,1320712913 +128489,39183,1980s,1320712911 +128489,39183,Heath Ledger,1320712901 +128489,39183,Heath ledger flabby ass,1320712803 +128489,39183,Jake Gyllenhaal ass,1320712873 +128489,39183,Jake Gyllenhaal.,1320712891 +128489,39183,Love story,1320713040 +128489,39183,melancholy,1320712916 +128489,39183,Nudity (Topless - Notable),1320712971 +128489,39183,Oscar (Best Directing),1320713034 +128489,39183,Oscar (Best Music - Original Score),1320712964 +128489,39183,scenic,1320712985 +128489,42002,Musical Sucks.,1315964880 +128489,42002,poor substitute for original movie,1315964840 +128489,42002,Uma Thurman,1315964834 +128489,42002,will ferrel,1315964818 +128489,42002,will ferrell = nazi,1315964806 +128489,44004,annoying,1322289588 +128489,44004,cheesy,1322289603 +128489,44004,chick flick,1322289595 +128489,44004,Matthew McConaughey,1322289628 +128489,44004,Nudity (Rear),1322289580 +128489,44004,Sarah Jessica Parker,1322289624 +128489,44004,sarah jessica parker should not be in movies,1322289569 +128489,44004,unfunny,1322289664 +128489,44004,Zooey Deschanel,1322289556 +128489,47810,Bear Punch,1316318696 +128489,47810,Cage-Fu,1316318685 +128489,47810,cult,1316318706 +128489,47810,Nicolas Cage,1316318676 +128489,47810,unintentional comedy,1316318673 +128489,51412,16 Nic cages,1321994832 +128489,51412,Ending,1321994769 +128489,51412,In the Nic of Time,1321994731 +128489,51412,Nicolas Cage,1321994753 +128489,51412,Nicolas cage:Time god,1321994749 +128489,51412,Philip K. Dick,1321994759 +128489,51412,plot twist,1321994808 +128489,51412,supernatural powers,1321994804 +128489,51412,time travel,1321994756 +128489,53468,1950s,1322278954 +128489,53468,Canadian,1322278940 +128489,53468,post-apocalyptic,1322278947 +128489,53468,satire,1322278956 +128489,53468,social commentary,1322278957 +128489,53468,witty,1322278958 +128489,53468,zombies,1322278960 +128489,65261,environmentalism,1320875363 +128489,65261,Hayao Miyazaki,1320875247 +128489,65261,Japan,1320875252 +128489,65261,strange story,1320875250 +128489,65868,gothic,1319138576 +128489,65868,plot:Repossessed organs,1319138573 +128489,67197,aliens,1315951599 +128489,67197,mystery,1315951602 +128489,67197,Nicolas Cage,1315951604 +128489,67197,unintentional comedy,1315951609 +128489,67799,Bad End,1317518543 +128489,67799,boobies,1317518626 +128489,67799,crappy sequel,1317518558 +128489,67799,Mexican rape scene,1317518588 +128489,67799,Nudity (Topless),1317518641 +128489,67799,Rap,1317518546 +128489,67799,Time travelling incest yandere,1317518537 +128489,67799,To See,1317518550 +128489,67799,Twist ending,1317518568 +128489,68941,Dennis Iliadis,1319076122 +128489,68941,Hand in the garberator,1319076140 +128489,68941,Silly rape scene,1319076118 +128489,69951,dwarf,1315948896 +128489,69951,hanging,1315948891 +128489,69951,Heath Ledger,1315948883 +128489,69951,imagination,1315948886 +128489,69951,immortality,1315948890 +128489,69951,Johnny Depp,1315948887 +128489,69951,surreal,1315948888 +128489,70946,anti-vegetarian propaganda,1314671446 +128489,70946,Claudio Fragasso,1314671500 +128489,70946,Nilbog,1314671418 +128489,70946,Oh My Goood!,1314671389 +128489,70946,Popcorn sex,1314671432 +128489,70946,We do not piss on hospitality,1314671396 +128489,71205,Bechdel Test:Pass,1314920299 +128489,71205,funny,1314920314 +128489,71205,Megan Fox,1314920282 +128489,71205,weird,1314920311 +128489,73321,Bible,1316745491 +128489,73321,Christianity,1316745494 +128489,73321,Denzel Washington,1316745504 +128489,73321,fight scenes,1316745510 +128489,73321,future,1316745509 +128489,73321,post-apocalyptic,1316745500 +128489,73321,thought-provoking,1316745497 +128489,74754,acting,1314671294 +128489,74754,extended sex scene,1314671271 +128489,74754,flabby ass,1314671250 +128489,74754,Flabby man ass,1314671247 +128489,74754,Juliette Danielle,1314671328 +128489,74754,melodramatic,1314671276 +128489,74754,so bad it's good,1314671283 +128489,74754,Straight Sex,1314671344 +128489,74754,Tommy Wiseau,1314671266 +128489,74754,unintentional comedy,1314671257 +128489,74754,unintentionally funny,1314671259 +128489,74754,you're tearing me apart lisa,1314671255 +128489,85510,anime cliches,1319853895 +128489,85510,lobotomy,1319853889 +128489,85510,Special Effects,1319853820 +128489,85510,stylized,1319853822 +128489,85510,Surreal,1319853866 +128489,89275,Crispin Glover,1315950506 +128489,89275,Guy who looks like Shaggy,1315950496 +128489,89275,pothead,1315950498 +128489,89275,Scooby-Doo,1315950499 +128489,89275,terrible acting,1315950502 +128489,89275,unintentional comedy,1315950503 +128489,89281,Awful Editing,1314920192 +128489,89281,Coathanger Standoff,1314920218 +128489,89281,So bad it's hard to watch,1314920188 +128489,89281,Unintentially Funny,1314920194 +128489,90249,android(s)/cyborg(s),1319075882 +128489,90249,boxing,1319075883 +128489,90249,father-son relationship,1319075899 +128489,90249,hugh jackman,1319075880 +128489,90249,near-future,1319075903 +128489,90249,sport:boxing,1319075892 +128489,90405,amazing premise,1321067533 +128489,90405,sci-fi,1321067539 +128493,59369,action,1234197272 +128493,59369,thriller,1234197292 +128511,2019,Kurosawa,1171263553 +128541,1721,action,1443124608 +128541,1721,historical,1443124615 +128541,1721,Realistic,1443124622 +128568,1059,lazy,1281582330 +128568,8870,bad ending,1282163731 +128568,40148,Sorter,1281580053 +128568,43908,Jason Statham,1281900858 +128568,43928,stupid,1281581606 +128568,53519,car chase,1281581495 +128568,53519,too long,1281581529 +128568,59731,american culture,1281580838 +128568,62849,funny,1281579570 +128568,66639,Chris Klein,1262708977 +128568,67255,rape,1281580892 +128568,68319,action,1243917722 +128568,68319,CGI,1243917739 +128568,68319,Characters,1243917776 +128568,68791,action,1243917228 +128568,68791,CGI,1243917278 +128568,68791,Common,1243917241 +128568,71156,absurdism,1281580229 +128568,76251,Nicolas Cage,1271990560 +128568,79091,main character,1281580780 +128568,79091,Steve Carell,1280375863 +128568,79139,Jay Baruchel,1319397352 +128568,79139,Nicolas Cage,1319397338 +128568,79695,bad direction,1319397267 +128568,79695,boring,1319397263 +128568,79695,plot,1319397271 +128568,79702,fight scenes,1281748207 +128568,79702,Kieran Culkin,1281748094 +128568,79702,Mary Elizabeth Winstead,1281748122 +128568,79702,Michael Cera,1281748080 +128568,81834,long,1292049162 +128568,89774,Nick Nolte,1319395833 +128568,89774,Tom Hardy,1319395810 +128573,1305,bittersweet,1280850258 +128573,1305,melancholy,1280850275 +128573,2997,dark comedy,1290561196 +128573,3415,childhood,1306781876 +128573,3415,dreamlike,1306781871 +128573,3415,Tarkovsky,1306781901 +128573,3415,visually stunning,1306781920 +128573,3476,hallucination,1281442846 +128573,3476,nonlinear,1281442856 +128573,4878,mystery,1247062853 +128573,4878,sci-fi,1290517388 +128573,4878,surreal,1290517392 +128573,4878,thought-provoking,1247062861 +128573,4878,time travel,1247062869 +128573,7013,atmospheric,1252599589 +128573,7013,dreamlike,1252599593 +128573,7013,good and evil,1252599596 +128573,7013,love/hate,1252599600 +128573,7371,experimental,1306167268 +128573,7371,social commentary,1306167272 +128573,7371,Underrated,1306167276 +128573,8405,atmospheric,1339684249 +128573,41941,casino,1274882149 +128573,41941,crime,1274882149 +128573,41941,epilepsy,1274882149 +128573,41941,forest,1274882149 +128573,41941,hunting,1274882149 +128573,41941,taxidermist,1274882175 +128573,46578,heartwarming,1246532829 +128573,46578,off-beat comedy,1246532836 +128573,46578,road trip,1246532840 +128573,48043,artistic,1243856730 +128573,48043,cerebral,1243856736 +128573,48043,love,1243856744 +128573,48043,Music,1243856725 +128573,48043,visually appealing,1243856720 +128573,59387,beautiful,1244460264 +128573,59387,fantasy world,1244460275 +128573,59387,visually stunning,1244460324 +128573,69134,Art Movie,1306167694 +128573,69134,atmospheric,1306167536 +128573,69134,cinematography,1306167559 +128573,69134,Mental Illness,1306167602 +128600,94041,method acting,1350903145 +128622,260,dark side,1439045337 +128622,260,sci-fi,1439045351 +128655,318,Morgan Freeman,1425585985 +128655,318,prison,1425585995 +128680,27373,Billy Crystal,1277254174 +128685,6092,Nudity (Full Frontal - Notable),1201666500 +128690,260,classic,1440074302 +128690,260,Science Fiction,1440074287 +128696,8929,horses,1254872912 +128698,590,Oscar (Best Picture),1147278719 +128703,99986,biographical,1396773454 +128703,99986,documentary,1421269347 +128703,99986,emotional documentary,1396773390 +128703,99986,modern art,1421269347 +128703,99986,performance art,1396773427 +128703,99986,powerful,1421269347 +128703,107771,literature,1397072068 +128703,107771,musical,1397072118 +128703,107771,reference,1397072068 +128703,107771,visually stunning,1397072113 +128703,109374,Wes Anderson,1394644248 +128703,113225,cute,1421269732 +128703,114342,european film,1426951962 +128703,115569,dark,1421269619 +128703,115569,great shooting,1421269670 +128703,115569,Jake Gyllenhaal,1421269605 +128703,115569,monsterous,1421269655 +128703,115569,scary,1421269615 +128703,118896,european film,1426951793 +128703,134587,cute,1433544005 +128703,134587,good music,1433544027 +128703,134587,handsome guy,1433544036 +128703,134587,music,1433543986 +128703,134587,romance,1433543994 +128707,260,classic,1439796459 +128707,260,sci-fi,1439796450 +128733,68157,gratuitous violence,1440275054 +128733,68157,unusual plot structure,1440275043 +128760,318,friendship,1426469672 +128760,318,psychology,1426469678 +128760,4995,inspirational,1426469627 +128760,4995,mathematics,1426469630 +128810,7361,dream,1452903449 +128810,7361,love,1452903440 +128810,58559,Heath Ledger,1452903664 +128810,60069,Sci-Fi,1452903813 +128810,76111,lies,1452903561 +128810,79132,complicated,1452903720 +128810,79132,visually appealing,1452903722 +128810,89759,lies,1452903505 +128810,106782,Leonardo DiCaprio,1452903755 +128812,260,old FX quality,1432017294 +128812,260,sci-fi,1432017279 +128812,293,disturbing,1436787926 +128812,293,friendship,1436787936 +128812,293,hitman,1436787933 +128812,64197,boring,1439529369 +128812,64197,dark,1439529361 +128812,64197,true story,1439529357 +128812,83796,crime,1435611061 +128812,83796,thriller,1435611061 +128812,83796,twists & turns,1435611061 +128812,90374,Disturbing,1432677667 +128812,95377,Pixar,1438678487 +128812,95377,short,1438678472 +128812,95377,twist,1438678495 +128812,101360,serial killer,1432071395 +128812,101360,suspense,1432071387 +128812,105742,computer hacker,1438117287 +128812,105742,diplomacy,1438117296 +128812,105742,freedom of information,1438117326 +128812,110828,crime,1433252649 +128812,110828,drama,1433252649 +128812,110828,shocking,1433252649 +128812,111622,relationships,1438117201 +128812,111622,soundtrack,1438117192 +128812,111622,too sweet,1438117183 +128812,112552,child abuse,1432023205 +128812,112552,music,1432023205 +128812,112552,shocking,1432023205 +128812,113188,bleak,1436964537 +128812,113188,boring,1436816175 +128812,115147,love,1436767405 +128812,115147,occasionally boring,1436960696 +128812,115147,romantic,1436767396 +128812,115147,sappy,1436767470 +128812,115147,too long,1436960678 +128812,120466,AI,1438117387 +128812,120466,artificial intelligence,1438117367 +128812,120466,cyberpunk,1438117383 +128812,120466,robots,1438117363 +128812,120466,Touching,1438117382 +128812,133891,orphan,1432633109 +128812,133891,psychological torment,1432633109 +128812,133891,shocking,1432633109 +128815,68153,ddd,1240843853 +128840,1438,family drama,1188836540 +128840,2872,legend,1188836560 +128840,2953,funny,1188836576 +128840,6373,funny,1188836665 +128840,6870,thriller,1188836636 +128912,260,"action, adventure",1438016894 +128921,1653,atmospheric,1449452751 +128921,1653,beautiful,1449452780 +128921,1653,directorial debut,1449452789 +128921,1653,Ethan Hawke,1449452800 +128921,1653,future,1449452745 +128921,1653,futuristic,1449452748 +128921,1653,genetic engineering,1449452765 +128921,1653,genetic selection,1449452786 +128921,1653,genetics,1449452757 +128921,1653,inspirational,1449452807 +128921,1653,intelligent,1449452782 +128921,1653,Jude Law,1449452754 +128921,1653,powerful ending,1449452761 +128921,1653,racism,1449452811 +128921,1653,realistic sci/fi,1449452793 +128921,1653,rebellion,1449452796 +128921,1653,sad ending,1449452776 +128921,1653,social commentary,1449452817 +128921,1653,space travel,1449452768 +128921,1653,thought-provoking,1449452759 +128921,1653,Uma Thurman,1449452763 +128921,1653,visually appealing,1449452743 +128921,2297,afterlife,1449453406 +128921,2297,alternate reality,1449453397 +128921,2297,based on a book,1449453422 +128921,2297,ghosts/afterlife,1449453420 +128921,2297,heaven and hell,1449453415 +128921,2297,imaginative,1449453403 +128921,2297,philosophy,1449453398 +128921,2297,Robin Williams,1449453408 +128921,2297,scenic,1449453410 +128921,2297,suicide,1449453412 +128921,2297,surreal,1449453417 +128921,2297,visually appealing,1449453401 +128921,3176,1950s,1449453220 +128921,3176,based on a book,1449453218 +128921,3176,boy-on-boy action,1449453252 +128921,3176,Cate Blanchett,1449453205 +128921,3176,creepy,1449453193 +128921,3176,crime,1449453202 +128921,3176,disturbing,1449453213 +128921,3176,great acting,1449453260 +128921,3176,great cast,1449453238 +128921,3176,Gwyneth Paltrow,1449453188 +128921,3176,italy,1449453226 +128921,3176,Jude Law,1449453182 +128921,3176,male nudity,1449453277 +128921,3176,Matt Damon,1449453186 +128921,3176,murder,1449453197 +128921,3176,obsession,1449453195 +128921,3176,Philip Seymour Hoffman,1449453216 +128921,3176,psychology,1449453207 +128921,3176,R:brief nudity,1449453281 +128921,3176,secrets,1449453224 +128921,3176,serial killer,1449453210 +128921,3176,snob,1449453246 +128921,3176,stolen identity,1449453244 +128921,3176,suspense,1449453200 +128921,3176,very clever,1449453265 +128921,3176,Very interesting,1449453255 +128921,3285,drugs,1449454681 +128921,3285,great soundtrack,1449454689 +128921,3285,island,1449454686 +128921,3285,Leonardo DiCaprio,1449454671 +128921,3285,romance,1449454683 +128921,3285,travel,1449454673 +128921,3285,utopia,1449454677 +128921,4878,atmospheric,1449455767 +128921,4878,cerebral,1449455772 +128921,4878,hallucinatory,1449455782 +128921,4878,imaginary friend,1449455787 +128921,4878,jake gyllenhaal,1449455763 +128921,4878,mental illness,1449455793 +128921,4878,mindfuck,1449455758 +128921,4878,mystery,1449455802 +128921,4878,philosophy,1449455760 +128921,4878,psychological,1449455804 +128921,4878,psychology,1449455753 +128921,4878,stylized,1449455778 +128921,4878,surreal,1449455750 +128921,4878,thought-provoking,1449455755 +128921,4878,time travel,1449455748 +128921,4878,weird,1449455784 +128921,7361,alternate reality,1449455703 +128921,7361,beautiful,1449455686 +128921,7361,bittersweet,1449455715 +128921,7361,colourful,1449455700 +128921,7361,comedy,1449455676 +128921,7361,complicated,1449455690 +128921,7361,dreamlike,1449455713 +128921,7361,Elijah Wood,1449455696 +128921,7361,emotional,1449455702 +128921,7361,fantasy,1449455711 +128921,7361,imagination,1449455683 +128921,7361,imdb top 250,1449455721 +128921,7361,jim carrey,1449455718 +128921,7361,Kate Winslet,1449455705 +128921,7361,love,1449455727 +128921,7361,melancholy,1449455674 +128921,7361,nonlinear,1449455662 +128921,7361,philosophy,1449455693 +128921,7361,psychology,1449455680 +128921,7361,quirky,1449455723 +128921,7361,romance,1449455728 +128921,7361,surreal,1449455669 +128921,7361,surrealism,1449455731 +128921,7361,thought-provoking,1449455664 +128921,8784,friendship,1449455245 +128921,8784,funny,1449455233 +128921,8784,mental illness,1449455235 +128921,8784,Natalie Portman,1449455230 +128921,8784,psychology,1449455243 +128921,8784,quirky romantic,1449455228 +128921,8784,romance,1449455226 +128921,8910,David O. Russell,1449456215 +128921,8910,Dustin Hoffman,1449456201 +128921,8910,existentialism,1449456195 +128921,8910,funny,1449456203 +128921,8910,intelligent,1449456220 +128921,8910,Jude Law,1449456187 +128921,8910,Mark Wahlberg,1449456189 +128921,8910,Naomi Watts,1449456192 +128921,8910,off-beat comedy,1449456205 +128921,8910,philosophy,1449456193 +128921,8910,psychology,1449456208 +128921,8910,stylized,1449456209 +128921,8910,whimsical,1449456217 +128921,30820,child abuse,1449455013 +128921,30820,could go farther,1449455050 +128921,30820,disturbing,1449455019 +128921,30820,Disturbing and moving,1449455036 +128921,30820,honest,1449455029 +128921,30820,Kevin Bacon,1449455040 +128921,30820,mental health,1449455052 +128921,30820,paedophilia,1449455021 +128921,30820,pedophile,1449455043 +128921,33171,child abuse,1449454979 +128921,33171,disturbing,1449454985 +128921,33171,gay,1449454967 +128921,33171,homosexuality,1449454981 +128921,33171,joseph gordon-levitt,1449454964 +128921,33171,male nudity,1449454969 +128921,33171,male prostitute,1449454975 +128921,33171,memories,1449454990 +128921,33171,queer,1449454972 +128921,33171,repression,1449454988 +128921,34319,action,1449456113 +128921,34319,cloning,1449456066 +128921,34319,dystopia,1449456108 +128921,34319,Ewan McGregor,1449456060 +128921,34319,freedom,1449456076 +128921,34319,future,1449456064 +128921,34319,genetics,1449456062 +128921,34319,immortality,1449456111 +128921,34319,predictable,1449456073 +128921,34319,Scarlett Johansson,1449456055 +128921,34319,sci-fi,1449456116 +128921,34319,surprise ending,1449456078 +128921,34319,thriller,1449456069 +128921,46976,destiny,1449455288 +128921,46976,dustin hoffman,1449455299 +128921,46976,emma thompson,1449455296 +128921,46976,existentialism,1449455284 +128921,46976,fantasy,1449455281 +128921,46976,heartbreaking,1449455291 +128921,46976,heartwarming,1449455263 +128921,46976,humorous,1449455294 +128921,46976,insanity,1449455286 +128921,46976,love,1449455292 +128921,46976,Maggie Gyllenhaal,1449455270 +128921,46976,modern fantasy,1449455272 +128921,46976,narrated,1449455268 +128921,46976,quirky,1449455277 +128921,46976,storytelling,1449455303 +128921,46976,touching,1449455274 +128921,46976,Will Ferrell,1449455265 +128921,55274,Cate Blanchett,1449456319 +128921,55274,Clive Owen,1449456321 +128921,59995,British,1449455102 +128921,59995,depressing,1449455092 +128921,59995,identity,1449455097 +128921,59995,moving,1449455089 +128921,59995,suicide,1449455094 +128921,70286,action,1449452586 +128921,70286,alien invasion,1449452513 +128921,70286,aliens,1449452463 +128921,70286,alternate history,1449452563 +128921,70286,atmospheric,1449452459 +128921,70286,bleak,1449452624 +128921,70286,cgi,1449452620 +128921,70286,creative plot,1449452539 +128921,70286,directorial debut,1449452629 +128921,70286,evil corporations,1449452533 +128921,70286,evil humans,1449452542 +128921,70286,genetics,1449452490 +128921,70286,gore,1449452572 +128921,70286,heartbreaking,1449452482 +128921,70286,humor,1449452486 +128921,70286,IMDB Top 250,1449452521 +128921,70286,intelligent,1449452611 +128921,70286,intelligent sci-fi,1449452589 +128921,70286,justice,1449452608 +128921,70286,mockumentary,1449452644 +128921,70286,political commentary,1449452618 +128921,70286,redemption,1449452610 +128921,70286,role reversal,1449452535 +128921,70286,satire,1449452641 +128921,70286,sci-fi,1449452558 +128921,70286,segregation,1449452632 +128921,70286,shaky cam,1449452581 +128921,70286,slum,1449452567 +128921,70286,social commentary,1449452592 +128921,70286,social segregation,1449452518 +128921,70286,South Africa,1449452614 +128921,70286,Special Effects,1449452504 +128921,70286,swearing,1449452552 +128921,70286,thoughtful,1449452528 +128921,70286,thriller,1449452510 +128921,70286,transformation,1449452474 +128921,70286,unique,1449452605 +128921,70286,unpredictable,1449452597 +128921,70286,unrealistic,1449452601 +128921,70286,violence,1449452507 +128921,70286,weapons,1449452477 +128921,70286,xenophobia,1449452548 +128921,71530,bad plot,1449456024 +128921,71530,Bruce Willis,1449456035 +128921,71530,future,1449456030 +128921,71530,predictable,1449456021 +128921,71530,technology,1449456043 +128921,71530,thought-provoking,1449456026 +128921,72011,airplane,1449455360 +128921,72011,Anna Kendrick,1449455342 +128921,72011,business,1449455356 +128921,72011,cynicism,1449455324 +128921,72011,George Clooney,1449455319 +128921,72011,Jason Bateman,1449455326 +128921,72011,loneliness,1449455321 +128921,72011,Nudity (Rear),1449455336 +128921,72011,self discovery,1449455347 +128921,72011,thoughtful,1449455333 +128921,72011,travel,1449455350 +128921,72011,United States,1449455345 +128921,72011,witty,1449455331 +128921,79132,action,1449453028 +128921,79132,alternate reality,1449452987 +128921,79132,ambiguous ending,1449453053 +128921,79132,big budget,1449453069 +128921,79132,cerebral,1449453040 +128921,79132,cinematography,1449453061 +128921,79132,clever,1449453007 +128921,79132,complex,1449453142 +128921,79132,complicated,1449453022 +128921,79132,confusing plot,1449453109 +128921,79132,drama,1449453014 +128921,79132,dream,1449453151 +128921,79132,dream within a dream,1449453048 +128921,79132,dreamlike,1449452989 +128921,79132,dreams,1449453025 +128921,79132,Ellen Page,1449453043 +128921,79132,ensemble cast,1449453059 +128921,79132,fantasy,1449453018 +128921,79132,great cast,1449453111 +128921,79132,great soundtrack,1449453082 +128921,79132,imagination,1449453140 +128921,79132,imaginative,1449453096 +128921,79132,imdb top 250,1449453098 +128921,79132,intellectual,1449453033 +128921,79132,Intelligent scifi,1449453118 +128921,79132,Intense,1449453147 +128921,79132,interesting,1449453104 +128921,79132,Joseph Gordon-Levitt,1449453001 +128921,79132,Leonardo DiCaprio,1449452992 +128921,79132,makes you think,1449453050 +128921,79132,Marion Cotillard,1449453134 +128921,79132,mind games,1449453137 +128921,79132,mindfuck,1449453003 +128921,79132,multiple interpretations,1449452996 +128921,79132,multiple realities,1449453065 +128921,79132,open ending,1449453131 +128921,79132,original,1449453075 +128921,79132,original plot,1449453122 +128921,79132,philosophy,1449453005 +128921,79132,plot twist,1449453100 +128921,79132,predictable,1449453093 +128921,79132,psychological,1449453031 +128921,79132,psychology,1449453088 +128921,79132,questions reality,1449453114 +128921,79132,sci-fi,1449453125 +128921,79132,science fiction,1449453080 +128921,79132,special effects,1449453102 +128921,79132,subconscious,1449453115 +128921,79132,surreal,1449452984 +128921,79132,suspense,1449453021 +128921,79132,thought-provoking,1449452982 +128921,79132,thriller,1449453090 +128921,79132,twist ending,1449452998 +128921,79132,unpredictable,1449453077 +128921,79132,visually appealing,1449452980 +128921,79132,visually stunning,1449453071 +128921,84152,Bradley Cooper,1449455848 +128921,84152,cinematography,1449455872 +128921,84152,clever,1449455863 +128921,84152,concept,1449455852 +128921,84152,drugs,1449455850 +128921,84152,entertaining,1449455854 +128921,84152,human potential,1449455846 +128921,84152,interesting premise,1449455869 +128921,84152,Robert De Niro,1449455857 +128921,84152,smart,1449455842 +128921,84152,thought provoking,1449455844 +128921,84152,unfinished storyline,1449455866 +128921,84152,visual effects,1449455871 +128921,84152,visually appealing,1449455839 +128921,84954,Emily Blunt,1449455890 +128921,84954,free will,1449455912 +128921,84954,good actors,1449455905 +128921,84954,Matt Damon,1449455893 +128921,84954,Romance,1449455914 +128921,84954,sexy leading actresses,1449455897 +128921,95670,Tyler Perry,1449453514 +128921,100390,road trip,1449453369 +128921,102194,coming of age,1449455117 +128921,102194,good acting,1449455124 +128921,102194,Matthew McConaughey,1449455119 +128921,102194,powerful,1449455115 +128921,102407,1920s,1449456347 +128921,102407,beautiful,1449456351 +128921,102407,cinematography,1449456356 +128921,102407,Leonardo DiCaprio,1449456349 +128921,102407,Period piece,1449456364 +128921,102407,stylized,1449456353 +128921,102407,visually appealing,1449456362 +128921,102993,coming of age,1449455187 +128921,102993,heartwarming,1449455196 +128921,102993,infidelity,1449455206 +128921,102993,parent-children relationship,1449455212 +128921,102993,predictable plot,1449455209 +128921,102993,Steve Carell,1449455201 +128921,102993,summer,1449455203 +128921,102993,vacation,1449455194 +128921,103048,coming of age,1449455177 +128921,103253,class conflict,1449456001 +128921,103253,future,1449455990 +128921,103253,Inequality,1449456005 +128921,103253,Jodie Foster,1449455978 +128921,103253,Matt Damon,1449455976 +128921,103253,visually stunning,1449455983 +128921,103980,Cate Blanchett,1449455379 +128921,103980,depressing,1449455385 +128921,103980,narcissism,1449455388 +128921,104841,3D,1449452696 +128921,104841,atmospheric,1449452673 +128921,104841,beautiful,1449452723 +128921,104841,cheesy,1449452681 +128921,104841,cinematography,1449452664 +128921,104841,George Clooney,1449452708 +128921,104841,Hollow,1449452700 +128921,104841,intense,1449452667 +128921,104841,isolation,1449452705 +128921,104841,physics,1449452719 +128921,104841,predictable,1449452678 +128921,104841,sandra bullock,1449452713 +128921,104841,science,1449452721 +128921,104841,setting:space,1449452692 +128921,104841,slow action,1449452688 +128921,104841,space,1449452716 +128921,104841,suspense,1449452711 +128921,104841,visually appealing,1449452661 +128921,104841,visually stunning,1449452670 +128921,106918,Afghanistan,1449453484 +128921,106918,Ben Stiller,1449453464 +128921,106918,daydream,1449453467 +128921,106918,Greenland,1449453475 +128921,106918,Iceland,1449453477 +128921,106918,imagination,1449453442 +128921,106918,inspirational,1449453437 +128921,106918,mother-son relationship,1449453453 +128921,106918,New York City,1449453479 +128921,106918,photographer,1449453458 +128921,106918,photography,1449453440 +128921,106918,positive thinking,1449453461 +128921,106918,remake,1449453481 +128921,106918,romance,1449453450 +128921,106918,scenic,1449453447 +128921,106918,surreal,1449453473 +128921,106918,travel,1449453444 +128921,106918,visually appealing,1449453435 +128921,106918,workplace,1449453454 +128921,106920,beautiful,1449455630 +128921,106920,bittersweet,1449455597 +128921,106920,boring,1449455625 +128921,106920,embarrasing,1449455642 +128921,106920,intelligent,1449455610 +128921,106920,joaquin phoenix,1449455635 +128921,106920,loneliness,1449455595 +128921,106920,love,1449455622 +128921,106920,meaning of life,1449455601 +128921,106920,philosophical,1449455592 +128921,106920,predictable,1449455613 +128921,106920,psychology,1449455590 +128921,106920,quirky,1449455649 +128921,106920,sad,1449455628 +128921,106920,Scarlett Johansson,1449455588 +128921,106920,science fiction,1449455639 +128921,106920,thought-provoking,1449455599 +128921,106920,touching,1449455618 +128921,109487,ambitious,1449452848 +128921,109487,Anne Hathaway,1449452923 +128921,109487,artificial intelligence,1449452852 +128921,109487,atmosphere,1449452883 +128921,109487,beautiful,1449452942 +128921,109487,cliché finale,1449452944 +128921,109487,corny,1449452894 +128921,109487,emotional,1449452964 +128921,109487,end of the world,1449452915 +128921,109487,epic,1449452858 +128921,109487,exploration,1449452917 +128921,109487,good science,1449452868 +128921,109487,interesting ideea,1449452932 +128921,109487,Jessica Chastain,1449452950 +128921,109487,love,1449452886 +128921,109487,Masterpiece,1449452846 +128921,109487,Matthew McConaughey,1449452843 +128921,109487,Murphy's Law,1449452946 +128921,109487,philosophical issues,1449452837 +128921,109487,relativity,1449452901 +128921,109487,sci-fi,1449452958 +128921,109487,science fiction,1449452928 +128921,109487,Self-Indulgent,1449452910 +128921,109487,sentimental,1449452926 +128921,109487,space,1449452841 +128921,109487,space exploration,1449452892 +128921,109487,space travel,1449452935 +128921,109487,spectacle,1449452877 +128921,109487,suspense,1449452952 +128921,109487,thought-provoking,1449452865 +128921,109487,time paradox,1449452913 +128921,109487,time travel,1449452834 +128921,109487,time-travel,1449452854 +128921,109487,twist ending,1449452897 +128921,109487,visually appealing,1449452860 +128921,109487,wasted potential,1449452881 +128921,111360,drugs,1449455962 +128921,111360,fast paced action,1449455953 +128921,111360,intense,1449455956 +128921,111360,Morgan Freeman,1449455964 +128921,111360,Scarlett Johansson,1449455945 +128921,111360,strong female lead,1449455959 +128921,112290,Ambitious,1449455152 +128921,112290,childhood,1449455146 +128921,112290,coming of age,1449455150 +128921,112290,Ethan Hawke,1449455158 +128921,112290,growing up,1449455137 +128921,112290,quietly beautiful,1449455141 +128921,112497,alcoholism,1449453357 +128921,112497,road trip,1449453359 +128921,112556,Ben Affleck,1449453312 +128921,112556,interesting,1449453317 +128921,112556,mindfuck,1449453300 +128921,112556,murder,1449453305 +128921,112556,Neal Patrick Harris,1449453315 +128921,112556,Predictable Twist,1449453320 +128921,112556,Psychopathy,1449453302 +128921,112556,psychothriller,1449453310 +128921,112556,Rosamund Pike,1449453322 +128921,112556,unpredictable,1449453298 +128921,114074,adultery,1449455551 +128921,114074,Bill Hader,1449455548 +128921,114074,heartfelt,1449455553 +128921,114074,hopeful,1449455554 +128921,114074,Kristen Wiig,1449455541 +128921,114074,relationships,1449455558 +128921,114074,siblings,1449455562 +128921,114074,suicide,1449455560 +128921,114074,tender,1449455556 +128922,260,Thrilling,1439580998 +128922,260,wow,1439581005 +128922,94959,cinematography,1439581404 +128922,94959,coming of age,1439581434 +128922,94959,dreamlike,1439581431 +128922,94959,entrancing,1439581424 +128922,94959,fun,1439581411 +128922,94959,quirky,1439581391 +128934,260,Science Fiction,1442538184 +128934,260,space adventure,1442538198 +128934,69757,Joseph Gordon-Levitt,1442538499 +128934,69757,Zooey Deschanel,1442538491 +128954,260,sci-fi,1440364768 +128954,260,space,1440364780 +128957,260,awesome,1439794384 +128957,260,legendary,1439794379 +128968,3978,golf,1312670415 +128969,85179,hanafuda,1420536518 +128969,117446,Kamiya,1420536646 +128973,260,space adventure,1444764067 +128973,260,"space epic,good for kids,cult classic,sci-fi",1444764092 +128973,260,Star Wars,1444764079 +128987,364,best disney movie,1161734640 +129007,780,aliens invasion,1430513884 +129007,780,us air force,1430513884 +129007,780,will smith,1430513884 +129017,260,old,1442025896 +129048,4306,animation,1311213280 +129048,50685,affair,1311211313 +129048,50685,friendship,1311211313 +129048,59014,fart,1311211482 +129048,69757,funny,1311211377 +129048,69757,no happy ending,1311211377 +129048,73881,Amazing display of friendship,1311186097 +129048,73881,Funny,1311186113 +129048,80860,babies,1311292261 +129048,82167,Anne Hathaway,1311220653 +129048,82167,happy ending,1311220666 +129048,82167,Jake Gyllenhaal,1311220648 +129048,86298,comedy,1316798347 +129048,86298,cute animation,1316798320 +129048,86298,funny,1316798307 +129048,86298,made me laugh,1316798312 +129048,86298,songs werent that great,1316798341 +129048,86298,witty lines,1316798328 +129082,969,Adventure,1231943093 +129082,5613,French Film,1231943025 +129104,1,pixar,1447344160 +129104,1,Tom Hanks,1447344166 +129104,32,bruce willis,1446133567 +129104,32,post-apocalyptic,1446133554 +129104,32,sci-fi,1446133561 +129104,32,time travel,1446133551 +129104,50,thriller,1447342070 +129104,70,plot twist,1447354708 +129104,70,vampires,1447354683 +129104,104,Adam Sandler,1452269709 +129104,104,comedy,1452269712 +129104,110,action,1447170509 +129104,110,historical,1447170505 +129104,110,Medieval,1447170507 +129104,110,revenge,1447354401 +129104,110,war,1447344513 +129104,150,moon,1446135519 +129104,150,space,1446135510 +129104,150,Tom Hanks,1447344023 +129104,160,action,1452270552 +129104,160,monster,1452270547 +129104,161,submarine,1447342461 +129104,165,action,1447169084 +129104,165,bruce willis,1447169081 +129104,165,Samuel L. Jackson,1447169087 +129104,170,hackers,1447341391 +129104,170,video games,1447341380 +129104,196,aliens,1447159696 +129104,223,black and white,1447158721 +129104,223,comedy,1452096290 +129104,223,jay and silent bob,1447158729 +129104,223,Kevin Smith,1447158718 +129104,246,sports,1447342763 +129104,253,brad pitt,1447341709 +129104,253,tom cruise,1447341726 +129104,253,vampires,1447341754 +129104,260,action,1447170366 +129104,260,aliens,1446135374 +129104,260,robots,1446135382 +129104,260,sci-fi,1446135331 +129104,260,space,1446135344 +129104,260,Star Wars,1446135350 +129104,260,war,1447344487 +129104,293,Action,1447170395 +129104,293,assassin,1447170388 +129104,303,Sam Raimi,1447353580 +129104,318,Morgan Freeman,1447170401 +129104,318,plot twist,1447354647 +129104,318,prison,1447170404 +129104,318,revenge,1447354382 +129104,318,Stephen King,1447170410 +129104,329,Patrick Stewart,1447355057 +129104,329,space,1447355061 +129104,329,Star Trek,1447355059 +129104,356,comedy,1447343774 +129104,356,tom hanks,1447343770 +129104,356,war,1447344561 +129104,380,action,1452095717 +129104,380,Arnold Schwarzenegger,1452095715 +129104,380,spies,1452095723 +129104,435,aliens,1446132375 +129104,457,action,1447170540 +129104,480,Dinosaurs,1447345184 +129104,480,samuel l. jackson,1447353302 +129104,480,Steven Spielberg,1447345186 +129104,527,Steven Spielberg,1447344832 +129104,527,war,1447344495 +129104,527,World War II,1447344313 +129104,551,Christmas,1446220539 +129104,551,claymation,1446220545 +129104,551,Halloween,1446220532 +129104,551,Tim Burton,1446220530 +129104,589,action,1447162847 +129104,589,apocalypse,1452096891 +129104,589,Arnold Schwarzenegger,1447162841 +129104,589,dystopia,1447179896 +129104,589,robots,1447162845 +129104,589,sci-fi,1447162843 +129104,589,time travel,1447162839 +129104,593,Anthony Hopkins,1447341992 +129104,593,prison,1447354259 +129104,593,serial killer,1447341990 +129104,593,thriller,1447342007 +129104,648,Action,1446135197 +129104,648,Tom Cruise,1446135200 +129104,661,claymation,1446220587 +129104,673,aliens,1452268900 +129104,673,animation,1452268926 +129104,733,Action,1447354057 +129104,733,Nicolas Cage,1447354048 +129104,733,prison,1447354052 +129104,733,Sean Connery,1447354041 +129104,780,aliens,1446132616 +129104,780,apocalypse,1446132621 +129104,780,disaster,1446132638 +129104,780,sci-fi,1446132618 +129104,786,Arnold Schwarzenegger,1452095810 +129104,786,conspiracy,1452095813 +129104,788,comedy,1452269702 +129104,798,action,1452269619 +129104,798,Sylvester Stallone,1452269629 +129104,799,Ghosts,1446132084 +129104,805,revenge,1447354394 +129104,805,Samuel L. Jackson,1447353076 +129104,849,dystopia,1452271714 +129104,849,Kurt Russell,1452271712 +129104,924,sci-fi,1446135489 +129104,924,slow,1446135500 +129104,924,space,1446135492 +129104,968,black and white,1446131443 +129104,968,George A. Romero,1446131460 +129104,968,horror,1446131445 +129104,968,zombies,1446131438 +129104,1035,World War II,1447344382 +129104,1036,action,1447169022 +129104,1036,Bruce Willis,1447169016 +129104,1097,aliens,1447345193 +129104,1097,Steven Spielberg,1447345195 +129104,1127,aliens,1447342501 +129104,1127,James Cameron,1447342506 +129104,1127,sci-fi,1447342499 +129104,1127,submarine,1447342516 +129104,1129,1980s,1446221144 +129104,1129,action,1446221082 +129104,1129,dystopia,1446221073 +129104,1129,John Carpenter,1446221076 +129104,1129,Kurt Russell,1446221078 +129104,1196,action,1447170464 +129104,1196,aliens,1446135463 +129104,1196,robots,1446135474 +129104,1196,sci-fi,1446135455 +129104,1196,space,1446135457 +129104,1196,Star Wars,1446135477 +129104,1196,war,1447344552 +129104,1197,fantasy,1447354417 +129104,1197,revenge,1447354428 +129104,1198,action,1447170549 +129104,1198,Steven Spielberg,1447344843 +129104,1198,World War II,1447344325 +129104,1200,aliens,1446135614 +129104,1200,horror,1446135621 +129104,1200,monster,1446135626 +129104,1200,sci-fi,1446135612 +129104,1200,space,1446135616 +129104,1210,action,1447170476 +129104,1210,aliens,1446135533 +129104,1210,robots,1446135536 +129104,1210,sci-fi,1446135526 +129104,1210,space,1446135529 +129104,1210,Star Wars,1446135528 +129104,1210,war,1447344586 +129104,1214,aliens,1446135439 +129104,1214,horror,1446135443 +129104,1214,monster,1446135448 +129104,1214,sci-fi,1446135437 +129104,1214,space,1446135441 +129104,1215,bruce campbell,1446218739 +129104,1215,claymation,1446218746 +129104,1215,cult classic,1446218718 +129104,1215,dark humor,1446218721 +129104,1215,horror,1446218729 +129104,1215,Sam Raimi,1446218724 +129104,1215,TIME TRAVEL,1447162832 +129104,1215,zombies,1446218731 +129104,1233,submarine,1447342470 +129104,1233,war,1447344632 +129104,1233,World War II,1447344374 +129104,1240,Action,1447162862 +129104,1240,Arnold Schwarzenegger,1447162856 +129104,1240,robots,1447162864 +129104,1240,Sci-Fi,1447162858 +129104,1240,time travel,1447162854 +129104,1255,aliens,1447170052 +129104,1255,cult film,1447170048 +129104,1256,black and white,1447343807 +129104,1256,satire,1447343805 +129104,1260,serial killer,1447343319 +129104,1261,Bruce Campbell,1446131644 +129104,1261,cult film,1446131649 +129104,1261,dark humor,1446131647 +129104,1261,horror,1446131656 +129104,1261,possession,1446131662 +129104,1261,Sam Raimi,1447353517 +129104,1261,zombies,1446131650 +129104,1270,sci-fi,1447162871 +129104,1270,Steven Spielberg,1447344892 +129104,1270,time travel,1447162869 +129104,1278,satire,1447343762 +129104,1278,spoof,1447342952 +129104,1291,Steven Spielberg,1447344876 +129104,1320,aliens,1447159649 +129104,1320,Horror,1447159658 +129104,1320,sci-fi,1447159654 +129104,1321,werewolves,1446131677 +129104,1342,Horror,1446132120 +129104,1356,aliens,1446132803 +129104,1356,Borg,1447168970 +129104,1356,Patrick Stewart,1447168979 +129104,1356,sci-fi,1446132801 +129104,1356,space,1447168977 +129104,1356,Star Trek,1446132797 +129104,1356,time travel,1446132814 +129104,1371,aliens,1446133213 +129104,1371,sci-fi,1446133199 +129104,1371,slow,1446133202 +129104,1371,Star Trek,1446133196 +129104,1372,aliens,1446132975 +129104,1372,sci-fi,1446132973 +129104,1372,Star Trek,1446132971 +129104,1373,aliens,1446133183 +129104,1373,space,1446133181 +129104,1373,Star Trek,1446133178 +129104,1374,aliens,1446132848 +129104,1374,sci-fi,1446132829 +129104,1374,Star Trek,1446132831 +129104,1375,aliens,1446132892 +129104,1375,sci-fi,1446132911 +129104,1375,Star Trek,1446132890 +129104,1376,Star Trek,1446132775 +129104,1376,time travel,1446132779 +129104,1387,horror,1447344922 +129104,1387,monster,1447344920 +129104,1387,shark,1447344908 +129104,1387,Steven Spielberg,1447344910 +129104,1391,aliens,1446132347 +129104,1391,comedy,1452096387 +129104,1391,Parody,1446132355 +129104,1438,disaster,1452269597 +129104,1438,volcano,1452269599 +129104,1499,action,1452269320 +129104,1499,monster,1452269314 +129104,1515,disaster,1452269552 +129104,1515,sci-fi,1452269566 +129104,1515,volcano,1452269572 +129104,1517,comedy,1452269068 +129104,1517,parody,1452269050 +129104,1527,aliens,1447169036 +129104,1527,Bruce Willis,1447169031 +129104,1527,Milla Jovovich,1447169032 +129104,1527,sci-fi,1447169029 +129104,1544,Adventure,1452269782 +129104,1544,dinosaurs,1452269774 +129104,1552,action,1452270745 +129104,1552,Nicolas Cage,1452270747 +129104,1552,prison,1452270749 +129104,1580,aliens,1447169988 +129104,1580,sci-fi,1446132566 +129104,1584,aliens,1452269667 +129104,1584,first contact,1452269676 +129104,1584,sci-fi,1452269659 +129104,1584,space,1452269671 +129104,1586,action,1452277471 +129104,1586,war,1452277464 +129104,1587,1980s,1446134176 +129104,1587,Arnold Schwarzenegger,1446134159 +129104,1587,Fantasy,1446134155 +129104,1591,comic book,1447163717 +129104,1591,superhero,1447163748 +129104,1597,Patrick Stewart,1447355089 +129104,1610,sean connery,1447342048 +129104,1610,submarine,1447342046 +129104,1610,thriller,1447342043 +129104,1653,dystopia,1446133468 +129104,1653,sci-fi,1446133463 +129104,1676,aliens,1447170139 +129104,1676,satire,1447170134 +129104,1676,sci-fi,1447170140 +129104,1676,space,1447170137 +129104,1690,aliens,1447159626 +129104,1690,sci-fi,1447159628 +129104,1690,space,1447159631 +129104,1726,Kevin Costner,1447159411 +129104,1726,post-apocalyptic,1447159408 +129104,1777,Adam Sandler,1452270770 +129104,1777,comedy,1452270776 +129104,1831,sci-fi,1452277423 +129104,1831,space,1452277425 +129104,1876,apocalypse,1452268828 +129104,1876,disaster,1452268834 +129104,1876,sci-fi,1452268837 +129104,1882,Godzilla,1452269205 +129104,1882,monster,1452269203 +129104,1882,sci-fi,1452269195 +129104,1911,comedy,1452277446 +129104,1917,apocalypse,1452269086 +129104,1917,sci-fi,1452269090 +129104,1917,space,1452269079 +129104,1963,spoof,1447342965 +129104,1991,horror,1447161736 +129104,2003,comedy,1452269488 +129104,2003,horror,1452269493 +129104,2003,monster,1452269473 +129104,2028,Steven Spielberg,1447344127 +129104,2028,Tom Hanks,1447344125 +129104,2028,war,1447344130 +129104,2028,World War II,1447344123 +129104,2058,Samuel L. Jackson,1447353235 +129104,2115,Steven Spielberg,1447345049 +129104,2167,action,1447164115 +129104,2167,comic book,1447164120 +129104,2167,Marvel,1447164118 +129104,2167,vampires,1447164117 +129104,2174,claymation,1446220616 +129104,2174,supernatural,1446220614 +129104,2174,Tim Burton,1446220601 +129104,2203,serial killer,1447343340 +129104,2273,Action,1452271218 +129104,2273,Chris Tucker,1452271216 +129104,2273,Comedy,1452271220 +129104,2273,Jackie Chan,1452271214 +129104,2288,aliens,1446220883 +129104,2288,horror,1446220886 +129104,2288,John Carpenter,1446220892 +129104,2288,Kurt Russell,1446220888 +129104,2288,sci-fi,1446220904 +129104,2315,horror,1447161752 +129104,2324,war,1447344613 +129104,2324,World War II,1447344333 +129104,2353,thriller,1447342028 +129104,2360,plot twist,1447354674 +129104,2393,aliens,1446133115 +129104,2393,sci-fi,1446133118 +129104,2393,Star Trek,1446133112 +129104,2431,comedy,1452277496 +129104,2431,drama,1452277489 +129104,2431,Robin Williams,1452277480 +129104,2502,comedy,1446222247 +129104,2571,action,1447170497 +129104,2571,dystopia,1446134434 +129104,2571,post apocalyptic,1447168930 +129104,2571,sci-fi,1446134430 +129104,2670,submarine,1447342482 +129104,2701,sci-fi,1452268887 +129104,2701,steampunk,1452268891 +129104,2701,Will Smith,1452268866 +129104,2706,comedy,1452269040 +129104,2713,action,1452269353 +129104,2713,monster,1452269346 +129104,2722,shark,1447345407 +129104,2723,comedy,1452271693 +129104,2723,parody,1452271684 +129104,2723,superheroes,1452271675 +129104,2761,animation,1452271569 +129104,2761,robots,1452271549 +129104,2762,Bruce Willis,1447169054 +129104,2762,ghosts,1447169051 +129104,2762,m. night shyamalan,1447354735 +129104,2762,plot twist,1447354738 +129104,2762,supernatural,1447169076 +129104,2791,spoof,1447343034 +129104,2826,fantasy,1452272389 +129104,2826,vikings,1452272391 +129104,2857,Submarine,1447342567 +129104,2890,Action,1452268814 +129104,2890,war,1452268819 +129104,2916,Arnold Schwarzenegger,1452095656 +129104,2916,conspiracy,1452095673 +129104,2916,dystopia,1452095661 +129104,2916,mars,1452095677 +129104,2916,sci-fi,1452095669 +129104,2916,virtual reality,1452095667 +129104,2985,cyborgs,1446221038 +129104,2985,robots,1446221040 +129104,2985,sci-fi,1446221043 +129104,2985,superhero,1446221059 +129104,3033,comedy,1452096443 +129104,3033,parody,1446132678 +129104,3033,sci-fi,1446132686 +129104,3114,animation,1452269013 +129104,3114,Pixar,1452269011 +129104,3134,war,1447344625 +129104,3147,prison,1447354066 +129104,3147,Stephen King,1447344117 +129104,3147,Tom Hanks,1447344115 +129104,3175,aliens,1446132734 +129104,3175,parody,1446132724 +129104,3175,sci-fi,1446132722 +129104,3196,World War II,1447344340 +129104,3198,prison,1447354123 +129104,3300,aliens,1446134719 +129104,3300,anti-hero,1446134714 +129104,3300,sci-fi,1446134711 +129104,3300,Vin Diesel,1446134717 +129104,3328,samurai,1447352638 +129104,3359,sports,1447342792 +129104,3527,action,1447170192 +129104,3527,aliens,1447170189 +129104,3527,Arnold Schwarzenegger,1447170187 +129104,3527,sci-fi,1447170194 +129104,3527,survival,1447170197 +129104,3578,action,1447344650 +129104,3578,revenge,1447354445 +129104,3578,War,1447344644 +129104,3593,aliens,1447159727 +129104,3624,action,1452271404 +129104,3624,comedy,1452271398 +129104,3624,Jackie Chan,1452271385 +129104,3624,Owen Wilson,1452271387 +129104,3698,Arnold Schwarzenegger,1452095739 +129104,3698,Dystopia,1452095743 +129104,3698,survival,1452095746 +129104,3703,action,1447162172 +129104,3703,dystopia,1447162161 +129104,3703,post-apocalyptic,1447162159 +129104,3740,1980s,1446134205 +129104,3740,Kurt Russell,1446134216 +129104,3793,comic book,1446221395 +129104,3793,marvel,1446221400 +129104,3793,Patrick Stewart,1447355050 +129104,3793,superhero,1446221393 +129104,3793,X-men,1447340843 +129104,3868,spoof,1447342987 +129104,3916,football,1447342724 +129104,3916,inspirational,1447342732 +129104,3916,sports,1447342727 +129104,3997,dragon,1452276987 +129104,3997,fantasy,1452276993 +129104,4090,animated,1452271604 +129104,4103,Steven Spielberg,1447345022 +129104,4103,World War II,1447345013 +129104,4105,bruce campbell,1446131592 +129104,4105,cult film,1446131599 +129104,4105,dark humor,1446131589 +129104,4105,Sam Raimi,1447353544 +129104,4105,zombies,1446131596 +129104,4223,War,1447344449 +129104,4223,World War II,1447344259 +129104,4270,adventure,1452270634 +129104,4270,comedy,1452270637 +129104,4270,mummy,1452270640 +129104,4299,medieval,1446222055 +129104,4343,aliens,1446132404 +129104,4343,comedy,1452096453 +129104,4443,space,1447343211 +129104,4443,space western,1447343221 +129104,4519,animation,1452271662 +129104,4519,dinosaurs,1452271656 +129104,4533,zombies,1446131706 +129104,4638,adventure,1452269244 +129104,4638,dinosaurs,1452269248 +129104,4643,post-apocalyptic,1447159467 +129104,4643,sci-fi,1447343526 +129104,4701,action,1452271354 +129104,4701,Chris Tucker,1452271348 +129104,4701,Comedy,1452271360 +129104,4701,Jackie Chan,1452271347 +129104,4728,comedy,1452096050 +129104,4896,based on a book,1452277069 +129104,4896,dragons,1452277072 +129104,4896,Fantasy,1452277065 +129104,4896,harry potter,1452277067 +129104,4993,Action,1447170571 +129104,4993,fantasy,1447170562 +129104,5040,Arnold Schwarzenegger,1446134104 +129104,5040,fantasy,1446134102 +129104,5040,sequel,1446134136 +129104,5064,prison,1447353982 +129104,5064,revenge,1447353992 +129104,5171,time travel,1447159434 +129104,5244,samurai,1447352650 +129104,5254,comic book,1447164140 +129104,5254,Marvel,1447164141 +129104,5254,vampires,1447164136 +129104,5313,action,1452270673 +129104,5349,Action,1447163365 +129104,5349,Comic book,1447163357 +129104,5349,marvel,1447163369 +129104,5349,superhero,1447163354 +129104,5418,action,1447183800 +129104,5418,assassin,1447183803 +129104,5418,thriller,1447342081 +129104,5445,dystopia,1447345223 +129104,5445,Steven Spielberg,1447345218 +129104,5445,Tom Cruise,1447345220 +129104,5459,aliens,1446132433 +129104,5459,sci-fi,1446132426 +129104,5459,sequel,1446132436 +129104,5464,Tom Hanks,1447344152 +129104,5478,action,1452269407 +129104,5478,monster,1452269397 +129104,5540,Claymation,1446220632 +129104,5540,Greek mytholog,1446220636 +129104,5540,mythology,1446220629 +129104,5679,horror,1446132272 +129104,5679,remake,1446132296 +129104,5679,supernatural,1446132287 +129104,5816,based on a book,1452277162 +129104,5816,fantasy,1452277161 +129104,5816,harry potter,1452277159 +129104,5934,samurai,1447352998 +129104,5944,aliens,1446133147 +129104,5944,sci-fi,1446133145 +129104,5944,Star Trek,1446133143 +129104,5952,Action,1447170448 +129104,5952,fantasy,1447170433 +129104,5952,war,1447344464 +129104,5989,Steven Spielberg,1447344899 +129104,6156,action,1452271498 +129104,6156,comedy,1452271509 +129104,6156,Jackie Chan,1452271488 +129104,6156,Owen Wilson,1452271491 +129104,6157,Action,1447163655 +129104,6157,comic book,1447163653 +129104,6157,marvel,1447163651 +129104,6157,superhero,1447163647 +129104,6250,aliens,1447159750 +129104,6250,Stephen King,1447159753 +129104,6264,action,1452269133 +129104,6264,sci-fi,1452269121 +129104,6333,action,1447164072 +129104,6333,comic book,1447164069 +129104,6333,marvel,1447164067 +129104,6333,Patrick Stewart,1447355037 +129104,6333,superhero,1447164065 +129104,6365,dystopia,1446134478 +129104,6365,sci-fi,1446134476 +129104,6502,apocalypse,1452096882 +129104,6502,British,1446131231 +129104,6502,epidemic,1446131237 +129104,6502,horror,1446131475 +129104,6502,Post apocalyptic,1446131243 +129104,6502,post-apocalyptic,1446131200 +129104,6502,survival,1447183783 +129104,6502,virus,1446131251 +129104,6502,zombies,1446131205 +129104,6534,comic book,1447163940 +129104,6534,marvel,1447163945 +129104,6534,superhero,1447163942 +129104,6541,comic book,1447163962 +129104,6541,Sean Connery,1447163964 +129104,6541,superhero,1447163967 +129104,6650,serial killer,1447343352 +129104,6659,action,1452269433 +129104,6659,monster,1452269425 +129104,6707,horror,1446132169 +129104,6731,George A. Romero,1446131278 +129104,6731,horror,1446131275 +129104,6731,zombies,1446131273 +129104,6754,supernatural,1446133622 +129104,6754,vampires,1446133600 +129104,6754,werewolves,1446133602 +129104,6755,B-movie,1447159166 +129104,6755,Bruce Campbell,1447159171 +129104,6804,Sam Raimi,1447353589 +129104,6934,dystopia,1446134499 +129104,6934,sci-fi,1446134492 +129104,6966,Sam Raimi,1447353527 +129104,7013,serial killer,1447343374 +129104,7099,Patrick Stewart,1447354994 +129104,7143,Honor,1447170525 +129104,7143,samurai,1447170521 +129104,7143,Tom Cruise,1447170530 +129104,7153,Adventure,1447344601 +129104,7153,fantasy,1447344600 +129104,7153,war,1447344595 +129104,7163,sci-fi,1447160522 +129104,7293,Adam Sandler,1452270791 +129104,7293,Comedy,1452270799 +129104,7360,horror,1446131496 +129104,7360,post-apocalyptic,1447168916 +129104,7360,remake,1446131502 +129104,7360,zombies,1446131081 +129104,7373,comic book,1447163785 +129104,7373,occult,1447163791 +129104,7373,superhero,1447163782 +129104,7387,apocalypse,1446131187 +129104,7387,George A. Romero,1446131181 +129104,7387,horror,1446131183 +129104,7387,survival,1447183776 +129104,7387,zombies,1446131089 +129104,7454,Hugh Jackman,1446133769 +129104,7454,supernatural,1446133789 +129104,7454,vampires,1446133764 +129104,7454,werewolves,1446133766 +129104,7934,spoof,1447343010 +129104,8132,sports,1447342821 +129104,8225,remake,1446131127 +129104,8225,zombies,1446131123 +129104,8361,apocalypse,1452269160 +129104,8361,climate change,1452269178 +129104,8361,disaster,1452269172 +129104,8361,sci-fi,1452269183 +129104,8371,sci-fi,1446135092 +129104,8371,sequel,1446135103 +129104,8371,Vin Diesel,1446135094 +129104,8529,Steven Spielberg,1447345203 +129104,8636,comic book,1447163319 +129104,8636,marvel,1447163321 +129104,8636,superhero,1447163317 +129104,8644,robots,1446134509 +129104,8644,sci-fi,1446134507 +129104,8675,submarine,1447342551 +129104,8810,aliens,1447159603 +129104,8810,sci-fi,1447159611 +129104,8830,Action,1452269277 +129104,8830,monster,1452269284 +129104,8874,black comedy,1447170705 +129104,8874,comedy,1452096302 +129104,8874,dark comedy,1452097394 +129104,8874,horror,1447170726 +129104,8874,parody,1452097814 +129104,8874,satire,1447343719 +129104,8874,Simon Pegg,1447170709 +129104,8874,spoof,1447170713 +129104,8874,zombies,1447170703 +129104,8961,Pixar,1447353179 +129104,8961,Samuel L. Jackson,1447353174 +129104,8961,superhero,1447353181 +129104,8985,Marvel,1447164149 +129104,8985,vampires,1447164147 +129104,27002,Tom Hanks,1447344138 +129104,27822,shark,1447345399 +129104,30810,submarine,1447342537 +129104,31221,comic book,1447163674 +129104,31221,marvel,1447163670 +129104,31221,superhero,1447163672 +129104,31658,anime,1447344438 +129104,31658,fantasy,1447344443 +129104,31658,war,1447344434 +129104,33162,action,1446222023 +129104,33162,medieval,1446222019 +129104,33162,war,1447344478 +129104,33794,batman,1446221368 +129104,33794,comic book,1446221373 +129104,33794,DC,1446221376 +129104,33794,samurai,1447352458 +129104,33794,superhero,1446221361 +129104,33834,George A. Romero,1446131146 +129104,33834,post-apocalyptic,1446131149 +129104,33834,zombies,1446131139 +129104,34048,aliens,1447159256 +129104,34048,sci-fi,1447159259 +129104,34048,Tom Cruise,1447159254 +129104,34150,comic book,1447164042 +129104,34150,Marvel,1447164039 +129104,34150,superhero,1447164037 +129104,34405,dystopia,1447179906 +129104,34405,Joss Whedon,1446135562 +129104,34405,sci-fi,1446135545 +129104,34405,space,1446135547 +129104,34405,space western,1446135567 +129104,36401,Fantasy,1452276875 +129104,37729,claymation,1446220570 +129104,37729,Tim Burton,1446220564 +129104,38061,dark comedy,1446222040 +129104,38061,plot twist,1447354657 +129104,38061,Robert Downey Jr.,1446222044 +129104,38061,satire,1447343794 +129104,40732,horror,1446131347 +129104,41566,based on a book,1452277095 +129104,41566,fantasy,1452277085 +129104,41569,adventure,1452270326 +129104,41569,dinosaurs,1452270331 +129104,41569,Jack Black,1452270329 +129104,41569,monster,1452270333 +129104,41569,Peter Jackson,1452270324 +129104,42725,video games,1447341413 +129104,42738,supernatural,1446133704 +129104,42738,vampires,1446133688 +129104,42738,werewolves,1446133690 +129104,44195,satire,1447343736 +129104,44731,video games,1447341439 +129104,44828,aliens,1452269507 +129104,44828,monster,1452269517 +129104,44828,sci-fi,1452269510 +129104,45499,Action,1447163465 +129104,45499,comic book,1447163446 +129104,45499,Hugh Jackman,1447163451 +129104,45499,Magneto,1447163463 +129104,45499,marvel,1447163448 +129104,45499,superhero,1447163444 +129104,45499,wolverine,1447163455 +129104,46530,comic book,1447164053 +129104,46530,DC Comics,1447164056 +129104,46530,superhero,1447164051 +129104,46530,Superman,1447164054 +129104,48774,apocalypse,1446134269 +129104,48774,Clive Owen,1446134282 +129104,48774,dystopia,1446134267 +129104,48774,sci-fi,1446134274 +129104,48774,survival,1446134300 +129104,51077,Comic Book,1447163688 +129104,51077,Marvel,1447163695 +129104,51077,Nicolas Cage,1447163686 +129104,51255,british comedy,1452097823 +129104,51255,parody,1452097844 +129104,51255,Simon Pegg,1452097826 +129104,51709,monster,1447159122 +129104,52722,comic book,1447163551 +129104,52722,Marvel,1447163550 +129104,52722,superhero,1447163548 +129104,53000,post-apocalyptic,1446131264 +129104,53000,zombies,1446131267 +129104,53464,comic book,1447164030 +129104,53464,Marvel,1447164018 +129104,53464,superhero,1447164025 +129104,53468,Canadian,1447159110 +129104,53468,post-apocalyptic,1447159106 +129104,53468,zombies,1447159086 +129104,53996,action,1452270380 +129104,53996,robots,1452270368 +129104,53996,sci-fi,1452270375 +129104,54648,action,1452271455 +129104,54648,Chris Tucker,1452271439 +129104,54648,comedy,1452271441 +129104,54648,Jackie Chan,1452271444 +129104,54995,zombies,1447159185 +129104,56171,fantasy,1452276976 +129104,56174,post-apocalyptic,1447159215 +129104,56174,survival,1447159221 +129104,56174,zombies,1447159217 +129104,56801,aliens,1447159575 +129104,57274,"""found footage""",1446131309 +129104,57274,creepy,1446131313 +129104,57274,found footage,1446131323 +129104,57274,Handycam,1446131305 +129104,57274,horror,1446131295 +129104,57274,infection,1446131301 +129104,57274,virus,1446131298 +129104,57274,zombies,1446131293 +129104,57368,"""found footage""",1446134902 +129104,57368,monster,1446134910 +129104,57368,shaky camera,1446134913 +129104,57640,action,1447163820 +129104,57640,comic book,1447163817 +129104,57640,superhero,1447163814 +129104,58559,action,1446221176 +129104,58559,Batman,1446221165 +129104,58559,comic book,1446221183 +129104,58559,samurai,1447352435 +129104,58559,serial killer,1447343329 +129104,58559,superhero,1446221172 +129104,58559,thriller,1447342095 +129104,59315,action,1446221206 +129104,59315,comic book,1446221202 +129104,59315,Marvel,1446221199 +129104,59315,Robert Downey Jr.,1446221197 +129104,59315,superhero,1446221194 +129104,59501,based on a book,1452277011 +129104,59501,fantasy,1452277010 +129104,59501,narnia,1452277014 +129104,60040,comic book,1447163382 +129104,60040,Marvel,1447163389 +129104,60040,superhero,1447163384 +129104,60069,Animation,1446135601 +129104,60069,dystopia,1446135578 +129104,60069,pixar,1446135574 +129104,60069,post-apocalyptic,1447168941 +129104,60069,robots,1446135575 +129104,60069,sci-fi,1446135588 +129104,60069,space,1447179823 +129104,60684,comic book,1446221247 +129104,60684,superhero,1446221241 +129104,60937,action,1452270731 +129104,61132,Robert Downey Jr.,1452096623 +129104,61132,satire,1452096628 +129104,61132,Tom Cruise,1452096633 +129104,61240,horror,1447343390 +129104,61240,vampires,1447343382 +129104,63072,depressing,1447168873 +129104,63072,post-apocalyptic,1447168867 +129104,63072,survival,1447168869 +129104,63826,horrer,1446131392 +129104,63826,Monster,1446131427 +129104,63826,parasite,1446131407 +129104,64497,aliens,1447159496 +129104,64497,apocalyptic,1447159503 +129104,65682,supernatural,1446133670 +129104,65682,vampires,1446133637 +129104,65682,werewolves,1446133640 +129104,65685,adventure,1452276952 +129104,65685,fantasy,1452276940 +129104,68237,moon,1446135409 +129104,68237,Sci-fi,1446133490 +129104,68237,slow,1446133498 +129104,68237,space,1446135402 +129104,68319,comic book,1446221469 +129104,68319,hugh jackman,1446221464 +129104,68319,Marvel,1446221471 +129104,68319,superhero,1446221467 +129104,68319,Wolverine,1447341091 +129104,68358,plot twist,1447354720 +129104,68358,sci-fi,1446135424 +129104,68358,space,1446135422 +129104,68358,Star Trek,1446135417 +129104,68358,time travel,1446135420 +129104,68791,action,1447160423 +129104,68791,plot holes,1447160449 +129104,68791,post-apocalyptic,1447160416 +129104,68791,robots,1447160421 +129104,68791,sci-fi,1447160419 +129104,68952,comedy,1452096424 +129104,68952,horror,1446132023 +129104,68952,Sam Raimi,1447353499 +129104,68952,supernatural,1447162743 +129104,69526,action,1452270412 +129104,69526,robots,1452270409 +129104,69844,fantasy,1446221915 +129104,69844,harry potter,1446221917 +129104,69844,magic,1446221913 +129104,70159,horror,1452266236 +129104,70159,surprise ending,1452266239 +129104,70286,aliens,1446133291 +129104,70286,mockumentary,1446133310 +129104,70286,sci-fi,1446133297 +129104,71135,sci-fi,1446134754 +129104,71379,demon possession,1452265702 +129104,71379,ending,1452265696 +129104,71379,found footage,1452265725 +129104,71379,horror,1452265715 +129104,71379,supernatural,1452265743 +129104,71530,Bruce Willis,1446134539 +129104,71530,robots,1446134548 +129104,71530,sci-fi,1446134536 +129104,71535,dark comedy,1447158912 +129104,71535,parody,1452097859 +129104,71535,post-apocalyptic,1447158906 +129104,71535,zombies,1447158903 +129104,72378,apocalypse,1447159292 +129104,72378,disaster,1447159304 +129104,72393,aliens,1447161428 +129104,72393,Milla Jovovich,1447161431 +129104,72641,inspirational,1447340665 +129104,72641,sports,1447340662 +129104,72998,aliens,1447169965 +129104,72998,sci-fi,1447169961 +129104,73017,Action,1452096552 +129104,73017,Robert Downey Jr.,1452096541 +129104,73017,Sherlock Holmes,1452096544 +129104,73268,dystopia,1447159333 +129104,73268,vampires,1447159329 +129104,73321,post-apocalyptic,1447160546 +129104,73321,survival,1447160551 +129104,74530,fantasy,1452277118 +129104,74530,Greek mythology,1452277120 +129104,74683,sports,1447342772 +129104,74685,survival,1446131173 +129104,74685,virus,1446131170 +129104,74685,zombies,1446131168 +129104,74789,fantasy,1452276915 +129104,76175,gods,1446133954 +129104,76175,Greek mythology,1446133940 +129104,76175,monsters,1446133973 +129104,76175,remake,1446133948 +129104,76251,action,1446221439 +129104,76251,comic book,1446221436 +129104,76251,Nicolas Cage,1446221441 +129104,76251,superhero,1446221433 +129104,77561,action,1447163426 +129104,77561,comic book,1447163424 +129104,77561,Iron Man,1447163429 +129104,77561,Marvel,1447163419 +129104,77561,Robert Downey Jr.,1447163415 +129104,77561,superhero,1447163417 +129104,78499,Pixar,1447344105 +129104,78499,Tom Hanks,1447344109 +129104,79132,sci-fi,1446134402 +129104,79702,comic book,1447162440 +129104,79702,video games,1447162423 +129104,80917,aliens,1446134848 +129104,80917,boring,1446134883 +129104,80917,Monster,1446134875 +129104,80917,sci-fi,1446134861 +129104,81417,found footage,1452265868 +129104,81417,horror,1452265874 +129104,81417,supernatural,1452265889 +129104,81537,comedy,1452096656 +129104,81537,road trip,1452096653 +129104,81537,Robert Downey Jr.,1452096649 +129104,81537,Zach Galifianakis,1452096648 +129104,82095,aliens,1447159548 +129104,82095,boring,1447159553 +129104,82169,based on a book,1452277033 +129104,82169,dragons,1452277035 +129104,82169,fantasy,1452277047 +129104,82169,Narnia,1452277038 +129104,82461,sci-fi,1447160534 +129104,82461,video games,1447341368 +129104,83134,dark comedy,1447158961 +129104,83134,parody,1447158966 +129104,83134,satire,1447343729 +129104,83613,aliens,1447160158 +129104,85131,aliens,1446135037 +129104,85131,sci-fi,1446135033 +129104,85131,shaky camera,1446135041 +129104,85774,sports,1447342782 +129104,85788,ghosts,1446132186 +129104,85788,horror,1446132203 +129104,85788,supernatural,1446132188 +129104,86000,spoof,1447343023 +129104,86332,comic book,1447163845 +129104,86332,Marvel,1447163842 +129104,86332,superhero,1447163840 +129104,86833,comedy,1452085705 +129104,87232,comic book,1447163175 +129104,87232,Marvel,1447163177 +129104,87232,superhero,1447163172 +129104,87232,X-men,1447163179 +129104,87430,comic book,1447163914 +129104,87430,DC,1447163928 +129104,87430,superhero,1447163921 +129104,87520,action,1452270485 +129104,87520,robots,1452270482 +129104,88954,Buddy Movie,1446220677 +129104,88954,Christmas,1446220672 +129104,88954,Claymation,1446220679 +129104,88954,Neil Patrick Harris,1446220670 +129104,89190,remake,1446134056 +129104,89427,shark,1447345426 +129104,89745,action,1446221286 +129104,89745,aliens,1447170123 +129104,89745,Black Widow,1446221325 +129104,89745,Captain America,1446221299 +129104,89745,comic book,1446221283 +129104,89745,Hulk,1446221296 +129104,89745,Iron Man,1446221289 +129104,89745,Joss Whedon,1446221292 +129104,89745,Loki,1446221315 +129104,89745,Marvel,1446221280 +129104,89745,Robert Downey Jr.,1446221274 +129104,89745,Samuel L. Jackson,1447353157 +129104,89745,superhero,1446221276 +129104,89745,Thor,1446221303 +129104,89774,sports,1447342808 +129104,90469,horror,1452267115 +129104,90469,supernatural,1452267124 +129104,90888,Greek mythology,1446134029 +129104,91490,monster,1447345338 +129104,91490,shark,1447345371 +129104,91500,action,1447160304 +129104,91500,dystopia,1447160289 +129104,91500,survival,1447160295 +129104,91529,Batman,1447352534 +129104,91529,comic book,1447352545 +129104,91529,samurai,1447352553 +129104,91529,superhero,1447352537 +129104,91974,supernatural,1446133754 +129104,91974,vampires,1446133734 +129104,91974,werewolves,1446133740 +129104,92391,found footage,1452268007 +129104,92391,horror,1452268001 +129104,92391,supernatural,1452268016 +129104,92938,Action,1447163985 +129104,92938,comic book,1447163998 +129104,93363,Action,1447160014 +129104,93363,aliens,1447160021 +129104,93363,Mars,1447160011 +129104,93363,sci-fi,1447160010 +129104,93766,Greek mythology,1446133999 +129104,93766,monsters,1446134005 +129104,93840,dark comedy,1447158980 +129104,93840,monsters,1447159006 +129104,93840,plot twist,1447158984 +129104,93840,zombies,1447158992 +129104,94018,aliens,1446135071 +129104,94018,sci-fi,1446135068 +129104,94410,Patrick Stewart,1447355019 +129104,94466,satire,1447343745 +129104,94777,aliens,1446132460 +129104,94777,comedy,1452096406 +129104,94777,sci-fi,1446132527 +129104,94777,sequel,1446132551 +129104,94777,time travel,1446132463 +129104,94780,fantasy,1452276825 +129104,94780,Kristen Stewart,1452276829 +129104,94864,aliens,1446134674 +129104,94864,sci-fi,1446134672 +129104,95510,comic book,1447163522 +129104,95510,Marvel,1447163519 +129104,95510,superhero,1447163517 +129104,95720,aliens,1446132391 +129104,95875,action,1447160391 +129104,95875,Sci-fi,1447160389 +129104,96610,Bruce Willis,1446134378 +129104,96610,sci-fi,1446134374 +129104,96610,time travel,1446134372 +129104,96737,Dystopia,1446221006 +129104,96737,sci-fi,1446221008 +129104,97188,serial killer,1447343290 +129104,97304,thriller,1446221610 +129104,97913,disney,1447341353 +129104,97913,video games,1447341307 +129104,98122,documentary,1447341424 +129104,98122,video games,1447341422 +129104,98809,adventure,1452277386 +129104,98809,based on a book,1452277396 +129104,98809,fantasy,1452277388 +129104,98809,Peter Jackson,1452277393 +129104,98809,Tolkien,1452277391 +129104,100810,aliens,1447161407 +129104,100810,supernatural,1447162753 +129104,101025,fantasy,1452276892 +129104,101577,aliens,1447159774 +129104,101864,dystopia,1446134646 +129104,101864,post-apocalyptic,1446134644 +129104,101864,sci-fi,1446134642 +129104,101864,Tom Cruise,1446134649 +129104,102058,deadpool,1447340991 +129104,102058,Hulk,1447341014 +129104,102058,thor,1447341029 +129104,102058,wolverine,1447340993 +129104,102125,action,1447164085 +129104,102125,Marvel,1447164083 +129104,102125,Robert Downey Jr.,1447164079 +129104,102125,robots,1447164088 +129104,102125,superhero,1447164081 +129104,102445,action,1447162577 +129104,102445,aliens,1447162573 +129104,102445,space,1447162564 +129104,102445,Star Trek,1447162566 +129104,102880,aliens,1447159517 +129104,102880,sci-fi,1447159527 +129104,103042,comic book,1447163868 +129104,103042,DC,1447163881 +129104,103042,superhero,1447163863 +129104,103042,Superman,1447163866 +129104,103228,aliens,1446134998 +129104,103228,fun,1446135004 +129104,103228,giant robots,1446134990 +129104,103228,Kaiju,1446135010 +129104,103228,Monster,1446135017 +129104,103228,robots,1446135000 +129104,103228,sci-fi,1446134995 +129104,103253,dystopia,1446134560 +129104,103253,Matt Damon,1446134569 +129104,103253,robots,1446134580 +129104,103253,sci-fi,1446134564 +129104,103306,aliens,1446134793 +129104,103306,boring,1446134826 +129104,103306,sci-fi,1446134811 +129104,103341,aliens,1446220847 +129104,103341,sci-fi,1446220862 +129104,103341,Simon Pegg,1446220845 +129104,103341,slow start,1446220854 +129104,103688,Horror,1446132229 +129104,103688,possession,1446132236 +129104,103688,supernatural,1446132240 +129104,103727,post-apocalyptic,1447159369 +129104,103772,comic book,1447340792 +129104,103772,Marvel,1447340809 +129104,103772,superhero,1447340787 +129104,103772,wolverine,1447341061 +129104,103772,x-men,1447340790 +129104,104074,fantasy,1452277139 +129104,104074,Greek mythology,1452277138 +129104,104243,sci-fi,1446135118 +129104,104243,sequel,1446135137 +129104,104243,space western,1447343204 +129104,104243,Vin Diesel,1446135116 +129104,104841,sci-fi,1446133338 +129104,104841,space,1446135395 +129104,104908,horror,1447343307 +129104,104908,serial killer,1447343301 +129104,106002,aliens,1447159797 +129104,106002,sci-fi,1447159803 +129104,106002,space,1447159795 +129104,106072,comic book,1447163903 +129104,106072,marvel,1447163897 +129104,106072,superhero,1447163891 +129104,106487,action,1447160370 +129104,106487,dystopia,1447160321 +129104,106487,survival,1447160356 +129104,106489,adventure,1452272480 +129104,106489,based on a book,1452272489 +129104,106489,dragon,1452272486 +129104,106489,fantasy,1452272482 +129104,106489,Peter Jackson,1452272502 +129104,106489,Tolkien,1452272499 +129104,106642,Doctor Who,1447162881 +129104,106642,sci-fi,1447162885 +129104,106642,time travel,1447162883 +129104,107406,dystopia,1446134319 +129104,107406,post-apocalyptic,1446134316 +129104,107406,sci-fi,1446134336 +129104,107982,shark,1447345326 +129104,108190,action,1447160243 +129104,108190,dystopia,1447160234 +129104,108689,demons,1446133869 +129104,108689,Frankenstein,1446133861 +129104,108689,gargoyles,1446133859 +129104,108689,poorly written,1446133879 +129104,108689,supernatural,1446133893 +129104,108932,Batman,1446221873 +129104,108932,Lego,1446221893 +129104,108932,robots,1447162295 +129104,108945,remake,1447160489 +129104,108945,sci-fi,1447160501 +129104,109374,prison,1447354101 +129104,109487,sci-fi,1446133368 +129104,109487,space,1446135389 +129104,109487,time travel,1446133410 +129104,110102,Black Widow,1446222122 +129104,110102,Captain America,1446222112 +129104,110102,comic book,1446222119 +129104,110102,Marvel,1446222114 +129104,110102,Nick Fury,1446222126 +129104,110102,Samuel L. Jackson,1447353246 +129104,110102,superhero,1446222106 +129104,110127,bad CGI,1447160614 +129104,110553,comic book,1447163621 +129104,110553,Marvel,1447163626 +129104,110553,superhero,1447163618 +129104,111362,Marvel,1446221941 +129104,111362,Patrick Stewart,1447355006 +129104,111362,superhero,1446221938 +129104,111362,time travel,1446221936 +129104,111362,Wolverine,1447341109 +129104,111362,X-men,1447340777 +129104,111364,bland hero,1446134970 +129104,111364,Godzilla,1446134932 +129104,111364,Kaiju,1446134942 +129104,111364,Monster,1446134935 +129104,111364,not enough monster action,1446134979 +129104,111659,fantasy,1452276864 +129104,111759,aliens,1446222154 +129104,111759,sci-fi,1446222147 +129104,111759,time travel,1446222149 +129104,111759,Tom Cruise,1446222151 +129104,112370,action,1452270525 +129104,112370,robots,1452270511 +129104,112623,action,1446222090 +129104,112623,apocalyptic,1446222088 +129104,112623,sci-fi,1446222086 +129104,112852,Action,1447170099 +129104,112852,aliens,1447170112 +129104,112852,comic book,1447162455 +129104,112852,Marvel,1446221771 +129104,112852,sci-fi,1446221757 +129104,112852,space,1446221765 +129104,112852,superhero,1447162363 +129104,112911,Dwayne Johnson,1446133906 +129104,112911,Greek mythology,1446133910 +129104,113345,sci-fi,1446135080 +129104,113348,action,1452270447 +129104,113348,comic book,1452270449 +129104,113378,dystopian future,1447160178 +129104,113378,Jeff Bridges,1447160174 +129104,114180,action,1447160263 +129104,114180,dystopia,1447160254 +129104,114180,post-apocalyptic,1447160260 +129104,114180,survival,1447160256 +129104,114552,claymation,1446220651 +129104,115617,action,1447170380 +129104,115617,Animation,1447162258 +129104,115617,comic book,1447162482 +129104,115617,Disney,1447162261 +129104,115617,Marvel,1447163145 +129104,115617,robots,1447179998 +129104,115617,superhero,1447162259 +129104,115713,AI,1446133523 +129104,115713,plot twist,1447354748 +129104,115713,sci-fi,1446133517 +129104,117529,action,1452269821 +129104,117529,adventure,1452269808 +129104,117529,Chris Pratt,1452269813 +129104,117529,dinosaurs,1452269806 +129104,117529,sci-fi,1452269810 +129104,119145,samuel l. jackson,1447353217 +129104,119655,fantasy,1452272424 +129104,120799,action,1447160472 +129104,120799,robots,1447160463 +129104,120799,time travel,1447341853 +129104,122882,action,1452096908 +129104,122882,adventure,1452096928 +129104,122882,apocalypse,1452096960 +129104,122882,dystopian,1452096919 +129104,122882,post apocalyptic,1452096925 +129104,122882,sci-fi,1452096930 +129104,122882,visually appealing,1452096917 +129104,122900,comic book,1447158779 +129104,122900,Marvel,1447158771 +129104,122900,superhero,1447162378 +129104,130490,Action,1447160275 +129104,130490,dystopia,1447160278 +129104,132046,robots,1446134615 +129104,132046,sci-fi,1446134591 +129104,132464,shark,1447345316 +129104,133806,Aliens,1452265367 +129104,133806,Genetic Engineering,1452265371 +129104,133806,sci-fi,1452265380 +129104,134130,sci-fi,1452085738 +129104,134130,Space,1452085736 +129104,142264,Shark,1447345304 +129130,180,Do kupienia,1173253327 +129130,2502,office,1157910286 +129130,27706,Adventure,1164970517 +129130,72378,So bad it's good,1288004940 +129162,260,classic sci-fi,1437151407 +129202,8533,beautiful scenery,1453935700 +129202,8533,romance,1453935703 +129202,8533,romantic,1453935712 +129203,296,crime,1420662742 +129203,296,intelligent,1420662742 +129203,296,non-linear,1420662742 +129203,338,Crowe,1137539928 +129203,4995,crowe,1140552332 +129203,41285,Scarlett Johansson,1208332228 +129203,59016,Keanu Reeves,1208332496 +129214,2406,but a bit passe now.,1141312691 +129214,2406,Good at the time,1141312691 +129214,5445,somewhat predictable but interesting,1141312658 +129214,5445,Tired of Tom,1141312658 +129217,36535,Great Soundtrack,1268525680 +129219,4993,Adventure,1446679663 +129219,4993,based on a book,1446679653 +129219,4993,epic adventure,1446679633 +129219,4993,fantasy,1446679616 +129219,4993,Magic,1446679620 +129219,4993,tolkien,1446679615 +129219,4993,wizards,1446679645 +129219,7153,epic adventure,1446679560 +129219,7153,fantasy,1446679548 +129219,7153,fantasy world,1446679566 +129219,7153,Tolkien,1446679533 +129219,7153,war,1446679547 +129221,231,very funny,1138467644 +129221,318,classic,1138467825 +129221,344,goofy,1138467896 +129221,380,action,1138468928 +129221,442,action,1138469309 +129221,480,action,1138468940 +129221,500,soft,1138467769 +129221,541,boring,1138468731 +129221,586,comedy,1138469210 +129221,587,drama,1138469315 +129221,589,action,1138469301 +129221,592,super-hero,1138468823 +129221,595,Disney,1138468975 +129221,780,action,1138469241 +129221,858,boring,1138467842 +129221,1198,classic,1138468604 +129221,1200,space,1138468572 +129221,1225,drama,1138468719 +129221,1270,adventure,1138468876 +129221,1347,horror,1138468832 +129221,1587,adventure,1138468123 +129221,1587,muscle,1138468123 +129221,1721,drama,1138469280 +129221,1961,true story,1138468617 +129221,1962,poverty,1138468637 +129221,2000,action,1138468889 +129221,2001,action,1138468047 +129221,2005,1980s,1138468071 +129221,2005,magic,1138468071 +129221,2005,super-hero,1138468071 +129221,2011,1980s,1138467698 +129221,2028,action,1138469001 +129221,2028,drama,1138469001 +129221,2028,World War II,1138469001 +129221,2313,drama,1138468694 +129221,2402,action,1138468143 +129221,2403,action,1138469635 +129221,2404,action,1138468525 +129221,2407,soft,1138468392 +129221,2410,boxing,1138468186 +129221,2411,action,1138468265 +129221,2420,bad but good,1138467974 +129221,2513,horror,1138468507 +129221,2571,action,1138469026 +129221,2699,action,1138469254 +129221,2706,teen,1138467720 +129221,2716,action,1138468859 +129221,2717,comedy,1138468154 +129221,2985,super-hero,1138468028 +129221,3527,action,1138468897 +129221,3868,comedy,1138468815 +129221,3869,comedy,1138468919 +129221,4022,drama,1138469374 +129221,4085,action,1138468846 +129221,4214,teen,1138467985 +129221,4333,comedy,1138468238 +129221,4558,comedy,1138468207 +129221,4571,teen,1138468100 +129221,5055,drama,1138469328 +129221,5254,action,1138469397 +129221,6537,action,1138469358 +129221,6664,actio,1138468488 +129221,6934,action,1138469383 +129221,7004,comedy,1138469270 +129221,7308,adventure,1138468469 +129221,7318,Christian,1138469367 +129221,8961,super-hero,1138469510 +129225,90531,self-destruction,1449569654 +129227,1784,comedy,1453608025 +129227,1784,Helen Hunt,1453608011 +129227,1784,Jack Nicholson,1453607997 +129227,1784,neurosis,1453608019 +129227,1784,obsessive compulsive disorder,1453608006 +129227,1784,quirky,1453608016 +129227,1784,relationships,1453608014 +129227,4743,family,1453607906 +129227,4743,immigrant,1453607939 +129227,4743,relationships,1453607903 +129227,4743,sisters,1453607926 +129227,4743,strong woman,1453607942 +129242,33493,space,1197209714 +129246,357,Hugh Grant,1219187331 +129246,357,Kristin Scott Thomas,1219187331 +129246,1193,Jack Nicholson,1219187717 +129246,1193,Milos Forman,1219187717 +129246,5031,Andrei Konchalovsky,1219187502 +129246,5031,Nastassja Kinski,1219187502 +129246,8659,Catherine Breillat,1219188615 +129270,260,jedi,1433546293 +129270,260,Science Fiction,1433546286 +129280,5618,Studio Ghibli,1284127436 +129280,6350,adventure,1284127456 +129280,6350,Studio Ghibli,1284127468 +129280,7380,far from book,1284128955 +129280,8253,Adventure,1284127486 +129280,8253,funny,1284127501 +129280,8253,Studio Ghibli,1284127491 +129280,26776,Studio Ghibli,1284127419 +129280,64993,bittersweet,1284127392 +129329,260,sci-fi,1438096255 +129329,260,space adventure,1438096261 +129329,71135,horror,1440690672 +129329,111759,sci-fi,1440690516 +129369,1203,On Netflix,1452553056 +129378,40969,snowboard,1228031780 +129387,7360,zombies,1271493431 +129391,55247,self discovery,1437852317 +129391,55247,wilderness,1437852294 +129391,56174,alone in the world,1437852208 +129391,56174,apocalypse,1437852229 +129391,56174,Post apocalyptic,1437852201 +129391,56174,post-apocalyptic,1437852240 +129391,56174,zombies,1437852215 +129402,5903,drugs,1220857170 +129402,43928,comic,1220856610 +129403,1721,romance,1445971755 +129403,53996,robots,1445971736 +129408,1982,silent killer,1244045363 +129408,61240,1980s,1244045409 +129408,61240,vampire,1244045398 +129408,61240,vampires,1244045388 +129429,107885,children movies,1446411848 +129454,60289,american girl,1420045380 +129454,60289,teenage girl,1420045380 +129454,60289,wholseome,1420045380 +129463,260,space epic,1437336440 +129463,260,watch before you die,1437336456 +129493,3717,Nice car,1188650586 +129495,41,based on a play,1427127038 +129495,41,corrupt protagonist,1427127057 +129495,41,great acting,1427127032 +129495,41,Ian McKellen,1427127023 +129495,41,playwright:Shakespeare,1427127029 +129495,41,Shakespeare,1427127026 +129495,541,based on a book,1427125926 +129495,541,cyberpunk,1427125849 +129495,541,dreamlike,1427125893 +129495,541,existential,1427125869 +129495,541,existentialism,1427125884 +129495,541,existentialist,1427126139 +129495,541,mortality,1427125905 +129495,541,Nudity (Topless),1427125915 +129495,541,Philip K. Dick,1427125975 +129495,541,philosophical,1427125943 +129495,541,robots,1427125972 +129495,541,sci-fi,1427125846 +129495,670,Apu trilogy,1427126773 +129495,670,ARRANGED MARRIAGES,1427126810 +129495,670,childhood,1427126876 +129495,670,FATHERS AND SONS,1427126802 +129495,670,India,1427126792 +129495,670,lyrical,1427126840 +129495,670,satyajit ray,1427126779 +129495,670,stylized,1427126813 +129495,670,understated,1427126854 +129495,670,WRITER'S LIFE,1427126832 +129495,1683,adapted from:book,1427126573 +129495,1683,author:Henry James,1427126509 +129495,1683,beautifully filmed,1427126562 +129495,1683,Book adaptation,1427126541 +129495,1683,Charlotte Rampling,1427126612 +129495,1683,Helena Bonham Carter Oscar-nomination role,1427126501 +129495,1683,Henry James,1427126482 +129495,1683,honest characterisations,1427126637 +129495,1683,Merchant Ivory,1427126530 +129495,1683,Nudity (Topless - Notable),1427126507 +129495,1683,nudity (topless),1427126496 +129495,1683,period piece,1427126565 +129495,2010,existentialist,1427126114 +129495,2010,Fritz Lang,1427125994 +129495,2010,german expressionism,1427125991 +129495,2010,industrial progress,1427126057 +129495,2010,marxist,1427126039 +129495,2010,robot,1427126048 +129495,2010,sci-fi,1427126091 +129495,2010,science fiction,1427126082 +129495,2010,silent film,1427126074 +129495,2010,visionary,1427126078 +129495,2020,adapted from:book,1427126294 +129495,2020,adultery,1427126273 +129495,2020,aristocracy,1427126394 +129495,2020,corrupt protagonist,1427126345 +129495,2020,flawless art direction,1427126423 +129495,2020,intricate plot,1427126311 +129495,2020,John Malkovich,1427126374 +129495,2020,Keanu Reeves,1427126427 +129495,2020,nudity (topless),1427126403 +129495,2020,Paris,1427126436 +129495,2020,period piece,1427126419 +129495,2020,remake of a french film,1427126450 +129495,2020,well-crafted dialog,1427126327 +129495,2020,witty,1427126391 +129495,2571,Carrie-Anne Moss,1427126200 +129495,2571,cyberpunk,1427126226 +129495,2571,dystopia,1427126170 +129495,2571,hackers,1427126209 +129495,2571,Keanu Reeves,1427126194 +129495,2571,martial arts,1427126176 +129495,2571,philosophical,1427126218 +129495,2571,philosophy,1427126173 +129495,2571,post-apocalyptic,1427126223 +129495,2571,sci-fi,1427126167 +129495,2571,science fiction,1427126186 +129495,2571,stylized,1427126189 +129495,2571,visually stunning,1427126197 +129495,2571,Wachowski Brothers,1427126180 +129495,5291,Akira Kurosawa,1427126934 +129495,5291,black and white,1427126940 +129495,5291,multiple storylines,1427126929 +129495,5291,nonlinear,1427126932 +129495,5291,rape,1427126946 +129495,5291,samurai,1427126936 +129495,7766,Akira Kurosawa,1427126978 +129495,7766,Atmospheric,1427126982 +129495,7766,MacBeth,1427126973 +129495,7766,shakespeare,1427126984 +129495,7766,Toshiro Mifune,1427126975 +129495,55442,biopic,1378205803 +129503,19,Jim Carrey,1160752071 +129505,260,classic,1432083403 +129505,260,sci-fi,1432083395 +129505,296,funny,1432083645 +129505,296,humorous,1432083645 +129505,296,twist ending,1432083645 +129505,318,great ending,1432083504 +129505,318,inspirational,1432083493 +129518,260,Science Fiction,1430236370 +129518,260,space,1430236393 +129520,318,Favorite,1448110609 +129528,296,bad language,1448504871 +129528,296,https://movielens.org/explore?tag=motherfucker&sortBy=tagScore bad language,1448504837 +129538,296,non-linear,1437885844 +129538,296,quirky,1437885844 +129538,296,tarantino,1437885844 +129538,356,60s,1436850143 +129538,356,alternate history,1436850143 +129538,356,feel-good,1436850143 +129538,593,psychothriller,1438663499 +129538,593,quotable,1438663499 +129538,593,twisted,1438663499 +129548,91542,great cinematography,1325336442 +129586,73168,post-apocalyptic,1352535661 +129603,6932,slow and predictable plot,1163558637 +129637,260,EPIC,1430187852 +129637,260,scifi cult,1430187870 +129638,108149,college,1432309792 +129638,108149,documentary,1432309792 +129638,108149,observant,1432309792 +129638,117456,african-american,1428162602 +129638,117456,mtv stp style,1428162602 +129638,117456,romance,1428162602 +129693,260,action,1301943343 +129693,260,adventure,1301943321 +129693,260,fantasy,1301943329 +129693,260,sci-fi,1301943313 +129693,260,space,1301943314 +129693,260,SPACE TRAVEL,1301943335 +129693,2640,DC Comics,1306151866 +129693,2959,Brad Pitt,1301616438 +129693,2959,dark comedy,1301616426 +129693,2959,Edward Norton,1301616394 +129693,2959,philosophy,1301616414 +129693,2959,psychology,1301616431 +129693,2959,twist ending,1301616409 +129693,4015,Stoner,1221340526 +129693,4133,Dolph Lundgren,1302207831 +129693,6902,drugs,1301943740 +129693,6902,funny,1301943743 +129693,6902,Gary Oldman,1301943722 +129693,6902,life philosophy,1301943726 +129693,6902,Michael J. Fox,1301943729 +129693,6902,mindfuck,1301943753 +129693,6902,self discovery,1301943756 +129693,6902,whimsical,1301943734 +129693,7371,cult film,1301616800 +129693,7371,philosophy,1301616804 +129693,7371,social commentary,1301616816 +129693,45666,Jack Black,1301616295 +129693,52950,Nudity (Rear),1301943670 +129693,52950,Russian,1301943674 +129693,59387,fantasy world,1301936188 +129693,59387,imagination,1301943413 +129693,59387,story-in-a-story,1301943423 +129693,59387,surreal,1301936191 +129693,59387,visually appealing,1301943419 +129693,59387,visually stunning,1301943416 +129693,60618,Mila Kunis,1301615311 +129693,60941,clive barker,1301943252 +129693,60941,Vinnie Jones,1301943244 +129693,69122,comedy,1301616701 +129693,69122,drugs,1301616683 +129693,69122,great soundtrack,1301616710 +129693,69122,Zach Galifianakis,1301616690 +129693,69436,bad script,1301616264 +129693,69436,Jack Black,1301616276 +129693,69436,kind of boring,1301616270 +129693,71156,black humor,1301937560 +129693,71156,George Clooney,1301937562 +129693,71156,Kevin Spacey,1301937566 +129693,71205,lesbian subtext,1302165596 +129693,71205,Megan Fox,1302165602 +129693,71500,engaging plot,1301937257 +129693,71500,multiple storylines,1301937239 +129693,71535,post-apocalyptic,1301936501 +129693,71535,zombies,1301936503 +129693,71573,Kate Beckinsale,1302165458 +129693,71573,thriller,1302165462 +129693,72787,black comedy,1301617961 +129693,72787,british,1301617960 +129693,72787,zombies,1301617965 +129693,74458,plot twist,1301937085 +129693,74458,psychological,1301937084 +129693,74458,twist ending,1301937089 +129693,74532,Bruce Willis,1301616185 +129693,74532,Jason Lee,1301616210 +129693,74532,Kevin Smith,1301616200 +129693,74532,Seann William Scott,1301616203 +129693,75813,Edward Norton,1301616912 +129693,75813,good plot,1301616917 +129693,75813,philosophy,1301616922 +129693,76175,3D version,1301616842 +129693,76175,fantasy,1301616847 +129693,76175,Greek,1301616851 +129693,76175,Liam Neeson,1301616843 +129693,77561,based on a comic,1301935378 +129693,77561,comic book,1301935385 +129693,77561,Robert Downey Jr.,1301935368 +129693,77561,Samuel L. Jackson,1301935390 +129693,77561,sci-fi,1301935403 +129693,77561,superhero,1301935394 +129693,77833,Afghanistan,1301615527 +129693,77833,Middle East,1301615532 +129693,77833,war,1301615531 +129693,78088,Middle East,1301937359 +129693,78088,Ryan Reynolds,1301937370 +129693,78218,Samuel L. Jackson,1302166370 +129693,78218,terrorism,1302166376 +129693,78218,torture,1302166386 +129693,78467,boring,1301944929 +129693,78467,poor plot,1301944925 +129693,79132,alternate reality,1301937114 +129693,79132,complicated,1301937127 +129693,79132,dreamlike,1301937114 +129693,79132,surreal,1301937133 +129693,79132,thought-provoking,1301937146 +129693,79132,visually appealing,1301937141 +129693,79357,nonlinear,1301618194 +129693,79357,surreal,1301618200 +129693,79428,miniature sets,1301616060 +129693,79428,Steve Carell,1301616071 +129693,79428,Zach Galifianakis,1301616046 +129693,79879,Ving Rhames,1301616094 +129693,80026,Adapted from: video game,1301937728 +129693,80026,cheesy bad,1301937721 +129693,80026,fighting girls,1301937734 +129693,80026,predictable,1301937741 +129693,80219,action,1301615806 +129693,80219,black comedy,1301615813 +129693,80219,dark humor,1301615817 +129693,80219,Jessica Alba,1301615823 +129693,80219,Robert Rodriguez,1301615830 +129693,80463,dark comedy,1301615866 +129693,80463,loneliness,1301615860 +129693,80846,plot twist,1301936274 +129693,81229,assassin,1304506777 +129693,81229,Bruce Willis,1304506771 +129693,81229,conspiracy,1304506783 +129693,81229,Morgan Freeman,1304506774 +129693,81537,comedy,1301615985 +129693,81537,Robert Downey Jr.,1301615980 +129693,81537,Zach Galifianakis,1301615980 +129693,81564,animated,1301615418 +129693,81564,funny,1301615446 +129693,81564,Jonah Hill,1301615457 +129693,81564,superheroes,1301615473 +129693,81591,ballet,1301615383 +129693,81591,dark,1301615394 +129693,81591,Natalie Portman,1301615369 +129693,81591,repressed sexuality,1301615363 +129693,81591,thriller,1301615401 +129693,81788,crime drama,1301615783 +129693,81788,Elizabeth Banks,1301615764 +129693,81788,thriller,1301615769 +129693,81847,Disney,1301615887 +129693,81847,musical,1301615892 +129693,82167,Anne Hathaway,1301615946 +129693,82167,Jake Gyllenhaal,1301615950 +129693,82461,Jeff Bridges,1301618072 +129693,82461,sci-fi,1301618087 +129693,82461,technology,1301618079 +129693,82461,video games,1301618082 +129693,83349,comic book,1301615030 +129693,83349,gadgets,1301615024 +129693,83349,Seth Rogen,1301615026 +129693,85007,Cancer,1301617159 +129704,260,action,1437782309 +129704,260,sci-fi,1437782314 +129706,318,happy ending,1428176673 +129706,318,mistery,1428176673 +129706,318,prison,1428176673 +129706,2435,great script,1343056607 +129706,2435,old FX quality,1342456721 +129706,5617,BSDM,1343208963 +129706,6551,anarchism,1343467979 +129706,6551,anarchy,1343467973 +129706,7976,unsimulated sex scenes,1343208895 +129706,8798,Tom Cruise,1343421373 +129706,35836,crude humor,1346364000 +129706,40412,soundtrack,1343436765 +129706,43908,Drugs,1342308482 +129706,43908,sexy girls,1342308517 +129706,43921,stylized characters,1343422504 +129706,55363,beautiful scenery,1450363625 +129706,55363,excellent soundscore,1450363616 +129706,55363,visually appealing,1450363621 +129706,59018,cool end,1344950080 +129706,59018,great acting,1344950100 +129706,62849,Thandie Newton,1343209017 +129706,63698,independent film,1342611883 +129706,63698,Nudity (Topless - Brief),1342611896 +129706,70597,independent film,1343059945 +129706,70597,postmodern,1343059986 +129706,90374,cinematography,1450363884 +129706,90374,Disturbing,1450363892 +129706,90374,mesmerizing,1450363886 +129706,90374,sexuality,1450363890 +129706,94401,anticapitalism,1343493313 +129706,94401,ELF,1343493329 +129706,94401,WTO protests,1343493338 +129706,96612,obeying to dominance,1350433860 +129740,1089,Quentin Tarantino,1238102210 +129740,4308,musical,1238102260 +129742,26614,Matt Damon,1233243672 +129744,7940,Not available from Netflix,1185228733 +129756,1196,science fiction,1172874577 +129785,39,teen movie,1448043783 +129785,303,female heroine,1386276038 +129785,303,Sharon Stone,1386275981 +129785,303,western,1386275983 +129785,1088,80's classic,1391876140 +129785,1088,dance,1391876127 +129785,1088,dancing,1391876129 +129785,1088,Patrick Swayze,1391876160 +129785,1101,Tom Cruise,1420241932 +129785,1197,Bechdel Test:Fail,1386459566 +129785,1197,Cult classic,1386459533 +129785,1197,fantasy,1386459537 +129785,1197,fencing,1386459546 +129785,1265,time travel,1386701492 +129785,1285,Bechdel Test:Pass,1356740246 +129785,1285,black comedy,1356740219 +129785,1285,high school,1356740242 +129785,1704,mathematics,1448043705 +129785,1907,strong female lead,1420242057 +129785,1921,great soundtrack,1361649987 +129785,1921,mathematics,1361649984 +129785,2021,David Lynch,1361649936 +129785,2174,winona ryder,1374167192 +129785,2572,feminism,1396392565 +129785,2572,girl power,1396392565 +129785,2572,shakespeare,1396392547 +129785,7323,historical,1357492503 +129785,7669,Colin Firth,1420242176 +129785,7669,period drama,1420242180 +129785,8294,fencing,1381246070 +129785,8784,manic pixie dream girl,1310946459 +129785,40870,humorous,1296584403 +129785,42728,based on legendary literature,1356740775 +129785,42728,medieval,1356740779 +129785,42728,middle ages,1356740781 +129785,56757,Musical,1420242223 +129785,56757,violent,1420242203 +129785,62293,costume drama,1374089660 +129785,62293,lives of women,1374089668 +129785,69757,music,1310946509 +129785,71518,roller derby,1328216109 +129785,74275,black comedy,1268598845 +129785,74275,Ewan McGregor,1268598800 +129785,80463,music,1310946623 +129785,82242,all-male cast,1296584457 +129785,91500,strong female lead,1448043664 +129785,106696,bad script,1448044268 +129785,106696,bad writing,1448044271 +129785,106696,sisters,1448044245 +129894,110773,adventure,1436270209 +129894,110773,comedy,1436270209 +129894,110773,horror,1436270209 +129894,117594,adventure,1436996916 +129894,117594,comedy,1436996916 +129894,117594,thriller,1436996916 +129915,2137,animation,1225810566 +129933,527,humanism,1441840279 +129945,260,jedi,1438443527 +129945,260,sci-fi,1438443516 +129945,260,space,1438443543 +129946,69122,comedy,1267375789 +129955,2788,MontyPython,1140398310 +129966,529,genius,1294973875 +129966,529,prodigy,1294973875 +129976,260,classic sci-fi,1432631811 +129976,260,Star Wars,1432631816 +129977,6754,gothic,1430931097 +129977,6754,nocturnal,1430931103 +129977,6754,vampires,1430931094 +130003,1298,music,1424710539 +130003,1298,nazis,1424710539 +130003,1298,war,1424710539 +130003,44195,business,1424711089 +130003,44195,justice,1424711112 +130003,44195,social commentary,1424711073 +130003,92259,disability,1424710687 +130003,92259,friendship,1424710696 +130019,260,oldschool,1437249426 +130019,260,"stupid,bad science fiction",1437249530 +130019,356,interesting,1437252411 +130019,356,mental illness,1437252411 +130019,356,refreshing,1437252411 +130072,260,classic,1430270618 +130072,260,good vs evil,1430270662 +130072,260,sci-fi,1430270643 +130073,260,Science Fiction,1434334845 +130073,260,space adventure,1434334856 +130099,40732,claustrophobic,1281894289 +130099,40732,goretastic,1281894272 +130099,40732,horror,1281894268 +130099,40732,tense,1281894279 +130119,122882,adventure,1441823821 +130119,122882,dystopian,1441823814 +130119,122882,post apocalypse,1441823812 +130119,122882,sci-fi,1441823832 +130125,4886,epic story,1439984008 +130125,4886,funny,1439984012 +130125,50872,epic,1439983979 +130125,50872,funny,1439983983 +130126,1214,atmospheric,1388282997 +130126,1214,dark,1388282997 +130126,1214,suspense,1388282997 +130126,3819,food,1388283582 +130126,3819,quirky,1388283584 +130126,49272,espionage,1388283037 +130126,96079,psychological,1388283171 +130126,96610,alternate reality,1388283324 +130130,24,albino,1138309199 +130130,333,salesmen,1138308792 +130130,377,bomb,1138308184 +130130,1197,giant,1138308285 +130130,1302,baseball,1140377546 +130130,1302,if you build it they will come,1138308718 +130130,1393,agent,1138308429 +130130,1393,you complete me,1138308437 +130130,1552,airplane,1140378619 +130130,1552,convicts,1140378632 +130130,1552,prison,1140378632 +130130,1610,submarine,1138308697 +130130,1674,Amish,1140378607 +130130,1909,aliens,1140378701 +130130,1909,conspiracy,1140378706 +130130,1909,virus,1140378701 +130130,2321,television,1140378525 +130130,2420,paint the fence,1138309032 +130130,2985,corruption,1140378576 +130130,2985,police,1140378576 +130130,2987,toontown,1140378772 +130130,3253,Garth,1140378483 +130130,3255,Baseball,1140378495 +130130,3255,wartime,1140378507 +130130,3255,women,1140378507 +130130,3448,radio,1140378322 +130130,3448,war,1140378322 +130130,3481,record store,1140378443 +130130,3809,psychiatrist,1138308946 +130130,3809,sailing,1138308946 +130130,3809,vacation,1138308946 +130130,4022,stranded,1138308684 +130130,4022,wilson,1138308684 +130130,4816,male models,1138308874 +130130,5481,dutch,1138308888 +130130,6016,drugs,1138308629 +130130,6016,Rio de Janeiro,1138308621 +130130,30810,Bill Murray,1144036841 +130130,37741,author,1141659264 +130130,37741,death row,1141659264 +130130,37741,In Cold Blood,1141659264 +130130,37741,Truman Capote,1141659264 +130130,40583,middle east,1138308499 +130130,40819,Johnny Cash,1140377675 +130130,41566,fantasy,1138308473 +130141,2396,Oscar (Best Picture),1447211056 +130149,260,good clean fun movie,1436158087 +130149,260,original plot,1436158080 +130149,260,space adventure,1436158072 +130164,127130,cat,1439579038 +130164,134783,Doug Ellin,1439579210 +130171,50,tricky,1150488270 +130171,1060,Perfect timing,1150488367 +130171,2599,dark comedy,1150488515 +130171,2858,special,1150488279 +130171,3911,mockumentary,1150488285 +130171,3967,self discovery,1150488257 +130171,4226,nonlinear,1150488334 +130171,4973,whimsical,1150488250 +130171,7451,seen more than once,1150485371 +130171,7451,suprisingly clever,1150485367 +130171,8784,zero 7,1150488312 +130171,33166,ensemble cast,1150488292 +130172,260,orca,1435746716 +130192,1196,sci-fi,1247833891 +130196,260,future,1431621446 +130196,260,sci-fi,1431621450 +130196,5995,Oscar Winner,1431622454 +130196,5995,war,1431622408 +130196,115617,animation,1431622558 +130196,115617,disney,1431622558 +130196,115617,robotics,1431622558 +130198,356,feel good movie,1432611808 +130198,356,i liked it!!,1432611808 +130198,356,it reminds history,1432611808 +130203,1517,Austin Powers,1453325361 +130203,1517,funny,1453325341 +130203,4963,feel good movie,1453325422 +130203,4963,smart action,1453325438 +130207,916,black and white,1279430887 +130207,923,black and white,1279474820 +130207,74458,Predictable,1279474334 +130207,74754,Tommy Wiseau,1279430346 +130208,6341,moral issues,1437741764 +130208,69134,atmospheric,1444828296 +130208,69134,beautiful scenery,1444828289 +130208,69134,evil,1444828316 +130208,69134,Lars von Trier,1444828302 +130208,69134,Mental Illness,1444828305 +130208,89638,loneliness,1443552707 +130208,97921,dark humor,1436715253 +130208,97921,great characters,1436715266 +130208,97921,Jennifer Lawrence,1436715274 +130208,97921,loneliness,1436715268 +130208,97921,mental illness,1436715259 +130208,99117,funny,1438034981 +130208,102123,hilarious,1436536544 +130208,126599,"sex, love, relationships",1436136652 +130208,134704,The Comedy Central Roast.,1439563044 +130208,134708,The Comedy Central Roast.,1439563752 +130208,151321,emotional,1453243911 +130208,151321,war time,1453243901 +130212,592,Tim Burton,1225648674 +130212,714,Jim Jarmusch,1225637239 +130212,714,Johnny Depp,1225648556 +130212,1279,Jim Jarmusch,1225637120 +130212,1377,Tim Burton,1225648571 +130212,3081,Johnny Depp,1225648611 +130212,3081,Tim Burton,1225648590 +130212,3328,Jim Jarmusch,1225637264 +130212,3355,Johnny Depp,1225648740 +130212,7347,Johnny Depp,1225648638 +130212,7347,Stephen King,1225648638 +130212,7460,Jim Jarmusch,1225637334 +130212,34437,Jim Jarmusch,1225637300 +130250,260,space,1436244445 +130250,137034,teen,1436245006 +130266,5602,Alec Guinness,1407606939 +130266,5602,Alexander Mackendrick,1407606962 +130266,5602,caper movie,1407606954 +130266,5602,Peter Sellers,1407606974 +130273,260,George Lucas,1436478283 +130273,260,good vs evil,1436478276 +130273,92259,100 greatest movies,1436478569 +130273,92259,touching,1436478569 +130273,92259,true story,1436478569 +130274,2144,Nudity (Topless),1408701055 +130274,2371,silly,1408958423 +130274,2915,Nudity (Full Frontal),1408697819 +130274,96829,Danish,1410441643 +130276,671,Comedy,1186267138 +130276,671,JJoel Hodgson,1186267138 +130276,671,Michael J. Nelson,1186267138 +130276,671,parody,1186267138 +130276,671,ROBOTS AND ANDROIDS,1186267138 +130276,671,sci-fi,1186267138 +130276,3916,60s,1186267185 +130276,3916,football,1186267185 +130276,3916,racism,1186267185 +130276,6502,British,1186267040 +130276,6502,Cillian Murphy,1186267040 +130276,6502,Danny Boyle,1186267040 +130276,6502,horror,1186267040 +130276,6502,zombies,1186267040 +130276,8622,conspiracy,1186267042 +130276,8622,documentary,1186267042 +130276,8622,Michael Moore,1186267042 +130320,1,adventure,1247542237 +130320,1,computer animation,1247542220 +130320,1,Pixar,1247542211 +130320,2,animals,1246946401 +130320,2,childhood recaptured,1246946419 +130320,2,herds of CGI animals,1246946413 +130320,2,Kirsten Dunst,1246946409 +130320,2,Robin Williams,1246946408 +130320,36,death penalty,1211433235 +130320,76,so bad it's good,1297065975 +130320,364,africa,1246946205 +130320,364,animals,1246946207 +130320,364,animated,1246946203 +130320,364,coming of age,1246946231 +130320,364,Disney,1246946194 +130320,364,father-son relationship,1246946227 +130320,364,lions,1246946221 +130320,364,Matthew Broderick,1246946212 +130320,364,talking animals,1246946219 +130320,364,Whoopi Goldberg,1246946217 +130320,527,World War II,1246461069 +130320,741,cyberpunk,1241752318 +130320,745,Aardman,1241549239 +130320,745,animation,1241549236 +130320,745,comedy,1241549243 +130320,904,Alfred Hitchcock,1246460792 +130320,904,Hitchcock,1246460766 +130320,904,suspense,1246460783 +130320,924,aliens,1246245355 +130320,924,artificial intelligence,1246245352 +130320,924,cult film,1246245359 +130320,924,first contact,1246245350 +130320,924,realistic,1246245444 +130320,924,space,1242145054 +130320,1148,Aardman,1241549255 +130320,1148,animation,1241549258 +130320,1200,sci-fi,1245562171 +130320,1200,space,1245562174 +130320,1214,aliens,1245562166 +130320,1214,sci-fi,1245562163 +130320,1214,space,1245562160 +130320,1219,Alfred Hitchcock,1241549050 +130320,1219,Hitchcock,1246460809 +130320,1219,psychology,1246460814 +130320,1223,Aardman,1241549267 +130320,1258,based on a book,1231122288 +130320,1258,Stephen King,1165555223 +130320,1258,suspense,1241142772 +130320,1275,immortality,1245562146 +130320,1485,jim carrey,1246946242 +130320,1485,lawyer,1246946248 +130320,1485,over the top,1246946254 +130320,1573,ridiculous,1246245510 +130320,1580,alien,1246946149 +130320,1580,aliens,1246946147 +130320,1580,conspiracy,1246946146 +130320,1580,Tommy Lee Jones,1246946138 +130320,1580,Will Smith,1246946137 +130320,1584,space,1242145062 +130320,1676,Alien Invasion,1246481842 +130320,1676,aliens,1246481844 +130320,1676,future,1246481838 +130320,1676,futuristic,1246481839 +130320,1676,giant space bugs,1246481840 +130320,1676,space,1246481848 +130320,1754,Fallen Angel,1295747877 +130320,1754,religion,1295747888 +130320,2011,time travel,1184166988 +130320,2012,time travel,1184166981 +130320,2028,realism,1241142828 +130320,2028,WWII,1241142828 +130320,2117,George Orwell,1165554873 +130320,2318,aging,1247562289 +130320,2318,dysfunctional family,1247562274 +130320,2318,father-son relationship,1247562284 +130320,2318,immigrants,1247562291 +130320,2318,loneliness,1247562295 +130320,2318,rape,1247562277 +130320,2318,relationships,1247562303 +130320,2318,sexuality,1247562279 +130320,2318,sisters,1247562299 +130320,2701,mad scientist,1246947076 +130320,2701,steampunk,1246947067 +130320,2701,wheelchair badass,1246947098 +130320,2701,Will Smith,1246947072 +130320,2762,twist ending,1241142701 +130320,2762,unique,1241142701 +130320,2921,Clint Eastwood,1241549066 +130320,2973,adultery,1247901383 +130320,2973,philosophical,1247901376 +130320,2973,realistic,1247901412 +130320,2973,Woody Allen,1247901397 +130320,3008,apocolypse,1246946281 +130320,3008,end of the world,1246946300 +130320,3008,multiple storylines,1246946284 +130320,3087,christmas,1165555240 +130320,3114,Pixar,1247542241 +130320,3147,emotional,1254083252 +130320,3400,dinosaur,1241549113 +130320,3527,Arnold Schwarzenegger,1165555291 +130320,3793,super-hero,1246460956 +130320,3793,superhero,1246460947 +130320,3882,cheerleading,1246245485 +130320,3994,unique,1241142648 +130320,4014,atheism,1246460689 +130320,4014,irreligion,1246461150 +130320,4326,1960's Jim Crow,1246946103 +130320,4326,civil rights,1246946096 +130320,4326,Gene Hackman,1246946098 +130320,4326,KKK,1246946109 +130320,4326,Ku Klux Klan,1246946093 +130320,4326,rasicm,1246946112 +130320,4326,true story,1246946118 +130320,4519,animated,1246946391 +130320,4519,dinosaurs,1246946325 +130320,4725,creepy,1241142764 +130320,4725,mental hospital,1241142764 +130320,4725,suspense,1241142764 +130320,5995,World War II,1246460898 +130320,6333,super-hero,1246460969 +130320,6333,superhero,1246460970 +130320,6333,supernatural powers,1246460973 +130320,6373,god,1246079334 +130320,6377,Pixar,1247542172 +130320,6731,zombies,1241549073 +130320,6874,martial arts,1251903336 +130320,6874,Quentin Tarantino,1251903323 +130320,6874,revenge,1251903347 +130320,6874,Uma Thurman,1251903344 +130320,6874,violent,1251903340 +130320,7360,zombies,1241549076 +130320,7387,zombies,1211592823 +130320,7438,kung fu,1251903379 +130320,7438,Quentin Tarantino,1251903357 +130320,8874,zombies,1241142731 +130320,8910,existentialism,1241549064 +130320,8961,Pixar,1247542184 +130320,26810,atheism,1246775276 +130320,26810,irreligion,1246775270 +130320,26810,satirical,1246775168 +130320,27317,Takashi Miike,1241995301 +130320,32587,comic book,1165555218 +130320,33834,zombies,1241549061 +130320,34111,atheism,1246461531 +130320,34111,irreligion,1246461170 +130320,38038,Aardman,1241549229 +130320,38038,animation,1241549232 +130320,42418,atmospheric,1246946022 +130320,42418,beautiful,1246946028 +130320,42418,Christian Bale,1246946042 +130320,42418,colonialism,1246946031 +130320,42418,dreamlike,1246946030 +130320,42418,indians,1246946033 +130320,42418,native americans,1246946017 +130320,42418,Pocahontas,1246946046 +130320,42418,poetry,1246946050 +130320,42725,cannabis,1247290172 +130320,42725,video game testers,1247290178 +130320,45081,unintentionally funny,1241549103 +130320,45081,video game,1180487996 +130320,45499,superhero,1246460989 +130320,45499,supernatural powers,1246460987 +130320,46965,campy,1246245546 +130320,46965,Samuel L. Jackson,1246245555 +130320,50872,cooking,1247542255 +130320,50872,Pixar,1247542248 +130320,50872,rats,1247542253 +130320,50872,talking animals,1247542260 +130320,52281,grindhouse,1246945816 +130320,52281,Quentin Tarantino,1246945795 +130320,52281,zombies,1246945800 +130320,52462,Based on a TV show,1184166348 +130320,53993,Biblical,1246079363 +130320,53993,god,1246079360 +130320,54116,Fate,1204754550 +130320,59126,atheism,1246461606 +130320,59126,Documentary,1246172035 +130320,59126,irreligion,1246461584 +130320,59126,thought-provoking,1246172001 +130320,59126,topic:religion,1246172057 +130320,59295,bad science,1248769476 +130320,59295,christianity,1248769489 +130320,59295,conspiracy theory,1248769465 +130320,59295,creationism,1248769469 +130320,59295,darwinism,1248769478 +130320,59295,evolution,1248769481 +130320,59295,onesided,1248769471 +130320,59295,propaganda,1248769473 +130320,60069,dystopia,1247542145 +130320,60069,Pixar,1247542135 +130320,60069,Post apocalyptic,1247542140 +130320,60069,robots,1247542148 +130320,60069,social commentary,1247542150 +130320,60069,space,1247542152 +130320,62081,Shia LaBeouf,1246245010 +130320,62198,atheism,1247289964 +130320,62198,christianity,1247289974 +130320,62198,evangelism,1247289976 +130320,62198,exposes delusion,1247290025 +130320,62198,irreligion,1247289969 +130320,62198,religion,1247289978 +130320,62198,scam,1247289981 +130320,67197,aliens,1247113757 +130320,67197,easy fix,1247113775 +130320,67197,plot holes,1247113760 +130320,67408,animation,1241549199 +130320,67408,Dreamworks,1241549206 +130320,68319,cheesy,1246461041 +130320,68319,superhero,1246461014 +130320,68358,alternate reality,1241981732 +130320,68358,space,1241981701 +130320,68358,star trek,1241981744 +130320,68358,time travel,1241981706 +130320,68358,unrealistic,1241981721 +130320,68954,Bechdel Test:Fail,1247542102 +130320,68954,death/fatality,1247542073 +130320,68954,heartbreaking,1247542034 +130320,68954,Pixar,1247542038 +130320,68954,storytelling,1247542040 +130320,68954,talking dog,1247542079 +130320,69122,Drinking,1246945669 +130320,69122,Las Vegas,1246945672 +130320,69526,Megan Fox,1246244766 +130320,69526,Shia LaBeouf,1246244756 +130320,73268,dystopia,1281335335 +130323,110,historical,1427590384 +130323,110,inspirational,1427590392 +130323,1196,fantasy,1427590261 +130323,1196,robots,1427590275 +130323,1196,space,1427590266 +130323,5903,Amazing Cinematography,1427590541 +130323,5903,post-apocalyptic,1427590537 +130323,5903,revolution,1427590544 +130323,27611,battles,1427590701 +130323,27611,fantasy,1427590701 +130323,27611,space,1427590701 +130324,38188,real life,1151108066 +130339,260,action,1432486845 +130339,260,sci-fi,1432486838 +130348,54372,mystery,1449989979 +130348,90600,mystery,1449990107 +130348,104879,mystery,1449990049 +130348,112556,PG,1449988365 +130348,144760,thriller,1449987265 +130354,260,Action,1435321908 +130354,260,comedy,1435321916 +130354,260,fantasy,1435321926 +130355,50,ensemble cast,1420746167 +130355,50,excellent script,1420746153 +130355,50,Kevin Spacey,1420746140 +130355,50,suspense,1420746169 +130355,50,twist ending,1420746143 +130355,356,inspirational,1332752027 +130355,356,Tom Hanks,1332752016 +130355,480,adventure,1332752120 +130355,480,cloning,1332752131 +130355,480,dinosaurs,1332752126 +130355,480,genetics,1332752129 +130355,480,sci-fi,1332752138 +130355,593,Anthony Hopkins,1332752064 +130355,593,crime,1332752068 +130355,593,Jodie Foster,1332752074 +130355,593,mental illness,1332752077 +130355,593,psychology,1332752080 +130355,593,serial killer,1332752088 +130355,593,suspense,1332752090 +130355,2959,dark comedy,1420746276 +130355,2959,David Fincher,1420746288 +130355,2959,Edward Norton,1420746262 +130355,2959,philosophical,1420746269 +130355,2959,thought-provoking,1420746271 +130355,2959,twist ending,1420746284 +130355,7147,dreamlike,1320325651 +130355,7147,fantasy,1320325677 +130355,7147,surrealism,1320325641 +130355,7147,Tim Burton,1320325637 +130355,8970,fairy tale,1332752966 +130355,8970,Heartwarming,1332752963 +130355,8970,Johnny Depp,1332752956 +130355,8970,Kate Winslet,1332752958 +130355,8970,Peter Pan,1332752974 +130355,58559,Christian Bale,1420746215 +130355,58559,Christopher Nolan,1420746207 +130355,58559,dark,1420746238 +130355,58559,Heath Ledger,1420746205 +130355,58559,Michael Caine,1420746218 +130355,58559,Morgan Freeman,1420746221 +130355,58559,superhero,1420746226 +130355,89774,Boxing story,1322415708 +130355,89774,brothers,1420745864 +130355,89774,MMA,1322415700 +130355,89774,redemption,1420745864 +130355,89774,Tom Hardy,1322415752 +130355,109487,ambitious,1420745971 +130355,109487,bad dialogue,1420746028 +130355,109487,Christopher Nolan,1420745999 +130355,109487,Matthew McConaughey,1420746048 +130355,109487,Michael Caine,1420746045 +130355,109487,relativity,1420746041 +130355,109487,sentimental,1420746009 +130355,109487,space,1420745984 +130355,109487,thought-provoking,1420746059 +130355,109487,time-travel,1420745975 +130355,109487,wormhole,1420745982 +130355,116797,Alan Turing,1420745925 +130355,116797,cryptography,1420745926 +130355,116797,homosexuality,1420745929 +130355,120462,Bullying,1420745716 +130355,120462,childhood,1420745720 +130355,120462,first love,1420745724 +130355,120462,gabriele salvatores,1420745728 +130355,120462,mutation,1420745731 +130355,120462,superhero,1420745734 +130355,120462,Trieste,1420745741 +130355,120462,Valeria Golino,1420745737 +130356,1080,man..... sandals,1139107250 +130356,1080,Sandals,1139107250 +130356,1485,I would rather suck exhaust than watch this POS again.,1139107221 +130356,4993,One of the best fucking movies ever!!!!!,1139107728 +130356,5952,The second part of the best fucking movies ever!!!!,1139108092 +130356,7153,The third part of the best movie ever!!!!,1139107830 +130360,3784,Bruce Willis,1171910874 +130360,3784,humorous,1171910874 +130360,3784,time travel,1171910874 +130360,4337,Richard Attenborough,1171910722 +130360,8961,dibujos bonita,1137606446 +130384,8207,assassination,1434066708 +130384,8207,Frederick Forsyth,1434066688 +130384,8207,thriller,1434066715 +130384,115617,funny,1434066601 +130384,115617,loyalty,1434066607 +130386,442,On TV all the time,1150229635 +130386,2987,wouldn't see again,1150229625 +130411,1246,inspirational,1302438194 +130411,1645,Al Pacino,1302635588 +130411,1645,psychology,1302635624 +130411,1645,thought-provoking,1302635592 +130411,2324,World War II,1302634975 +130411,2571,artificial intelligence,1302380103 +130411,2571,martial arts,1302380098 +130411,2571,philosophy,1302380093 +130411,2959,philosophy,1302379288 +130411,2959,psychology,1302379294 +130411,3578,epic,1302442039 +130411,3996,martial arts,1302441860 +130411,4226,psychological,1302381078 +130411,4226,psychology,1302381076 +130411,4878,psychology,1302379315 +130411,4886,funny,1302441633 +130411,4995,genius,1302379351 +130411,4995,psychology,1302379352 +130411,5218,funny,1302441736 +130411,5903,post-apocalyptic,1302441681 +130411,5952,fantasy,1302441837 +130411,6377,funny,1302441649 +130411,6934,s,1306740666 +130411,7143,katana,1302442070 +130411,7143,samurai,1302442066 +130411,8836,soundtrack,1302635521 +130411,8950,psychology,1302635654 +130411,27815,inspirational,1302634860 +130411,47099,inspirational,1302635806 +130411,50872,funny,1302441785 +130411,60069,artificial intelligence,1302441596 +130411,64957,cinematography,1302634993 +130411,70286,sci-fi,1302441709 +130411,72998,futuristic,1302441757 +130411,79132,mind games,1302381779 +130411,79132,surreal,1302381756 +130411,79132,thought-provoking,1302381790 +130414,115569,criminal mind,1427182180 +130414,115569,genius,1427182180 +130414,115569,horror,1427182180 +130432,36529,dark comedy,1209314340 +130451,260,action,1440595177 +130451,260,space sci-fi,1440595168 +130452,3418,cowboy,1297463628 +130452,3418,hat,1297463628 +130452,3418,punch,1297463628 +130452,3418,violence,1297463628 +130460,1653,determination,1451615920 +130461,70286,peter jackson,1251849908 +130519,3617,funny,1143569413 +130528,78499,duplicity,1299183207 +130528,78499,oppression,1299183238 +130553,1732,Highly quotable,1188278930 +130558,260,birth of great scifi ideas,1444505618 +130558,260,great soundtrack,1444505609 +130558,260,great story,1444505589 +130558,260,great visual effects,1444505623 +130558,260,scifi,1444505577 +130560,288,hallucinatory,1269004468 +130560,288,psychedelic,1269004469 +130560,288,stylized,1269004483 +130560,296,Black comedy,1242299838 +130560,296,Bruce Willis,1242299854 +130560,296,imdb top 250,1242299863 +130560,296,long monologues,1242299826 +130560,296,multiple storylines,1242299843 +130560,296,nonlinear,1242299846 +130560,296,Quentin Tarantino,1242299834 +130560,673,Bugs Bunny,1269005898 +130560,788,Eddie Murphy,1269014857 +130560,788,Walked out/didn't finish,1269014861 +130560,1246,bittersweet,1268947594 +130560,2291,beautiful,1269014107 +130560,2291,Depp & Burton,1269014110 +130560,2291,dreamlike,1269014104 +130560,2291,Johnny Depp,1269014084 +130560,2291,surreal,1269014099 +130560,2291,Tim Burton,1269014087 +130560,2762,boring,1269014710 +130560,2762,fake,1269014690 +130560,2858,surrealism,1260819135 +130560,2858,thought-provoking,1260819139 +130560,2959,based on a book,1242299683 +130560,2959,Brad Pitt,1242299687 +130560,2959,disturbing,1242299691 +130560,2959,mental illness,1242299694 +130560,2959,powerful ending,1242299696 +130560,2959,psychology,1242299698 +130560,2959,surreal,1242299700 +130560,2959,twist ending,1242299702 +130560,2959,violence,1242299705 +130560,3556,dreamlike,1262894766 +130560,3556,great ending,1262894773 +130560,3556,great soundtrack,1262894769 +130560,3556,melancholy,1262894757 +130560,3556,psychology,1262894749 +130560,3752,dumb,1269014783 +130560,3949,depressing,1269014196 +130560,3949,drugs,1269014194 +130560,3949,Jared Leto,1269014223 +130560,4226,investigation,1242299759 +130560,4226,memory,1242299747 +130560,4226,Mindfuck,1242299772 +130560,4226,paranoid,1242299767 +130560,4226,psychological,1242299751 +130560,4226,short-term memory loss,1242299783 +130560,4226,tense,1242299791 +130560,4226,twist ending,1242299749 +130560,4239,dysfunctional family,1242425553 +130560,4239,Johnny Depp,1242425545 +130560,4239,trippy,1242425547 +130560,4848,dreamlike,1271709344 +130560,4848,nonlinear,1271709285 +130560,4848,surreal,1271709282 +130560,4848,surrealism,1271709278 +130560,4878,dreamlike,1242299955 +130560,4878,good dialogue,1242299941 +130560,4878,hallucinatory,1242299938 +130560,4878,mental illness,1242299930 +130560,4878,mindfuck,1242299929 +130560,4878,mystery,1242299933 +130560,4878,psychology,1242294678 +130560,4878,sci-fi,1242299960 +130560,4878,time travel,1242299964 +130560,5618,animation,1269004400 +130560,5618,anime,1269004385 +130560,5618,door to the different world,1269004390 +130560,5618,hallucinatory,1269004396 +130560,5618,Japan,1269004410 +130560,6502,epidemic,1269007047 +130560,6502,Post apocalyptic,1269007021 +130560,6502,post-apocalyptic,1269007019 +130560,6502,stylized,1277839192 +130560,6502,thriller,1269007028 +130560,6502,virus,1269007050 +130560,6502,visually appealing,1269007035 +130560,6874,imdb top 250,1244918565 +130560,6874,nonlinear,1244918532 +130560,6874,Quentin Tarantino,1244918508 +130560,6874,revenge,1244918528 +130560,6874,violent,1244918549 +130560,7361,bittersweet,1269014434 +130560,7361,imagination,1269014450 +130560,7361,melancholy,1269014444 +130560,7361,memory,1269014437 +130560,7361,surrealism,1269014441 +130560,7438,atmospheric,1269014035 +130560,7438,Quentin Tarantino,1269014023 +130560,7438,violence,1269014027 +130560,8914,clever,1269004564 +130560,8914,complicated plot,1269004560 +130560,8914,disturbing,1269004573 +130560,8914,mindfuck,1269004551 +130560,8914,time travel,1269004554 +130560,27788,complex,1242925451 +130560,27788,confusing,1242925454 +130560,27788,Keira Knightley,1242925443 +130560,27788,makes you think,1242925441 +130560,27788,mindfuck,1242925433 +130560,48394,alternate reality,1254326570 +130560,48394,bittersweet,1254326561 +130560,48394,dark,1254326563 +130560,48394,fairy tale,1254326558 +130560,48394,fantasy,1254326553 +130560,48394,imagination,1254326555 +130560,48394,surreal,1254326548 +130560,48394,twist ending,1254326550 +130560,48877,overrated,1269014750 +130560,48997,artistic,1269004682 +130560,48997,creativity,1269004680 +130560,57669,assassin,1269014655 +130560,57669,black comedy,1269014659 +130560,57669,drama,1269014625 +130560,57669,foul language,1269014632 +130560,57669,irish accent,1269014582 +130560,60609,dark fantasy,1269014493 +130560,60609,good and evil,1269014529 +130560,60609,great story,1269014509 +130560,71468,alternate reality,1269014341 +130560,71468,dark and wonderful,1269014402 +130560,71468,dreams,1269014336 +130560,71468,surreal,1269014359 +130564,4226,psychothriller,1213659998 +130564,56587,friendship,1213660135 +130564,56587,life philosophy,1213660124 +130566,260,classic,1431517362 +130566,260,George Lucas,1431517382 +130571,260,classic sci-fi,1434269535 +130571,260,space adventure,1434269540 +130584,253,fantasy,1431361462 +130584,253,vampires,1431361433 +130584,1552,airplane,1431361115 +130584,1552,Nicolas Cage,1431361087 +130584,1552,violence,1431361078 +130584,53318,alternate reality,1431361168 +130584,53318,insomnia,1431361170 +130606,90243,action,1434619717 +130606,90243,graphic novel,1434619717 +130606,90243,samurai,1434619717 +130606,103057,cliche,1434001461 +130606,103057,feel-good,1434001461 +130606,103057,unoriginal,1434001461 +130607,58559,action,1432232752 +130607,58559,racing,1432232742 +130616,110,Mel Gibson,1158415962 +130616,412,19th century,1158439456 +130616,594,Disney,1158416101 +130616,594,fairy tale,1158416103 +130616,918,classic,1158416268 +130616,920,BEST PICTURE,1158418732 +130616,920,Civil War,1158418350 +130616,920,Oscar (Best Picture),1158418348 +130616,920,Southern theme,1158418728 +130616,920,Vivian Leigh,1158418734 +130616,920,want to see again,1158418736 +130616,922,classic,1158421679 +130616,922,Hollywood,1158421678 +130616,1022,Disney,1158416094 +130616,1022,fairy tale,1158416097 +130616,1225,Mozart,1158440899 +130616,2018,Disney,1158416115 +130616,2080,Disney,1158416100 +130616,2085,Disney,1158416111 +130616,2096,70mm,1158416109 +130616,2565,*Good* Musicals,1158416883 +130616,2644,universal monsters,1158421758 +130616,3546,show business,1158436784 +130616,4359,Marilyn Monroe,1158418577 +130616,7078,Oscar (Best Actress),1158420212 +130616,7451,seen more than once,1158424018 +130616,7451,suprisingly clever,1158424016 +130616,30816,Lovely,1158419209 +130616,30816,Musical,1158419252 +130616,30816,Romance,1158419211 +130636,260,action,1430912661 +130636,260,drama,1430912675 +130643,198,cyberpunk,1451056405 +130643,198,Nudity (Topless),1451056412 +130643,198,sci-fi,1451056408 +130643,198,Science Fiction,1451056419 +130643,648,Action,1450299105 +130643,648,espionage,1450299104 +130643,648,spies,1450299110 +130643,3623,action,1450299158 +130643,3623,espionage,1450299151 +130643,5225,Erotic,1449108316 +130643,5225,Nudity (Full Frontal - Notable),1449108314 +130643,5225,Nudity (Full Frontal),1449108320 +130643,5225,Nudity (Topless),1449108324 +130643,5679,cinematography,1449110650 +130643,5679,horror,1449110629 +130643,5679,Martin Henderson,1449110684 +130643,7265,erotic,1449108355 +130643,7265,Nudity (Full Frontal - Notable),1449108357 +130643,7265,Nudity (Full Frontal),1449108351 +130643,8783,Atmospheric,1449107434 +130643,8783,romantic,1449107458 +130643,8981,Natalie Portman,1449106700 +130643,39183,gay,1449106879 +130643,39183,Nudity (Topless - Notable),1449106890 +130643,41285,Jonathan Rhys Meyers,1449106731 +130643,45186,action,1450299059 +130643,45186,espionage,1450299045 +130643,45186,spy,1450299043 +130643,48774,dystopia,1449106342 +130643,48774,Nudity (Topless),1449106357 +130643,48774,sci-fi,1449106349 +130643,56174,faith,1449106418 +130643,56174,post-apocalyptic,1449106433 +130643,56174,religion,1449106441 +130643,56174,sci-fi,1449106403 +130643,91630,action,1450299001 +130643,91630,cool gadgets,1450298998 +130643,91630,espionage,1450298992 +130643,91630,spy team,1450298995 +130643,109848,male nudity,1449106955 +130643,109848,nudity (full frontal),1449106951 +130643,110058,gay,1449106180 +130643,110058,Male Full Frontal Nudity,1449106183 +130643,110058,Neo-Nazis,1449654791 +130653,260,oldie but goodie,1446990926 +130653,33679,jolie at her peak,1446990959 +130655,260,awful,1436699070 +130655,260,Bad acting,1436699043 +130663,296,dark comedy,1317098106 +130663,296,Quentin Tarantino,1317098102 +130663,2959,philosophy,1317098326 +130663,2959,psychology,1317098323 +130663,2959,social commentary,1317098335 +130663,2959,surreal,1317098330 +130663,2959,twist ending,1317098328 +130663,7438,atmospheric,1317157176 +130663,7438,kung fu,1317157174 +130663,7438,Quentin Tarantino,1317157172 +130663,7438,spaghetti western,1317157181 +130663,7438,visually appealing,1317157187 +130663,27801,buddhism,1317157250 +130663,27801,fighting,1317157249 +130663,27801,martial arts,1317157251 +130663,27801,Tony Jaa,1317157247 +130663,56782,Daniel Day-Lewis,1321238618 +130663,56782,father-son relationship,1321238633 +130663,56782,greed,1321238629 +130663,56782,mining,1321238621 +130663,56782,Oscar (Best Cinematography),1321238620 +130663,56782,religion,1321238623 +130663,56782,visually appealing,1321238625 +130663,64839,identity crisis,1317501423 +130663,64839,Nudity (Topless),1317501444 +130663,64839,sport:professional wrestling,1317501438 +130663,64839,touching,1317501446 +130663,64839,violence,1317501448 +130663,81591,atmospheric,1317501507 +130663,81591,Natalie Portman,1317501487 +130663,81591,psychological,1317501509 +130675,55207,insomnia,1429475411 +130675,55207,love,1429475411 +130675,55207,time control,1429475411 +130675,88179,Unexpected Ending,1426486558 +130675,120466,entertaining,1428482301 +130675,120466,Funny,1428482279 +130675,120466,plot twist,1428482295 +130675,120466,Sad,1428482282 +130675,127096,disappointing,1425446070 +130675,127096,OKAY,1425446025 +130675,127096,science fiction,1425444162 +130675,127096,slightly comical,1425446030 +130675,127096,slow paced,1425446027 +130675,130636,bullying,1430114429 +130675,130636,jumpy,1430114429 +130675,130636,skype,1430114429 +130675,130636,slow-paced,1430114429 +130675,130636,social media,1430114429 +130675,134528,funny,1439378811 +130675,134528,some romance,1439378826 +130675,134528,subtle,1439378815 +130701,260,best movie ever,1441621967 +130701,260,sci-fi,1441621973 +130708,86332,Norse,1304810644 +130719,35,entirely dialogue,1368273555 +130719,107,treasure,1368273103 +130719,150,stranded,1368273191 +130719,185,action,1247729258 +130719,185,computers,1247729246 +130719,185,cyber-intimidation,1247729248 +130719,185,hacking,1247729242 +130719,185,internet,1247729254 +130719,185,Sandra Bullock,1247729251 +130719,353,dark hero,1368273277 +130719,380,arnold,1368273335 +130719,485,arnold,1368273335 +130719,521,noir thriller,1368273152 +130719,586,children,1253668081 +130719,586,for kids,1253668080 +130719,589,arnold,1368273335 +130719,648,mountain climbing,1368273796 +130719,832,conspiracy theory,1368273586 +130719,866,neo-noir,1368273509 +130719,898,screwball comedy,1368273445 +130719,905,screwball comedy,1368273445 +130719,910,screwball comedy,1368273446 +130719,913,noir thriller,1368273152 +130719,927,entirely dialogue,1368273555 +130719,1097,aliens,1247727457 +130719,1097,children,1247727435 +130719,1097,classic,1247727482 +130719,1097,drama,1247727452 +130719,1097,emotional,1247727454 +130719,1097,family,1247727435 +130719,1097,happy ending,1247727441 +130719,1097,Oscar (Best Music - Original Score),1247727468 +130719,1097,Steven Spielberg,1247727445 +130719,1097,stranded,1368273191 +130719,1179,neo-noir,1368273509 +130719,1206,disturbing,1310498381 +130719,1206,dystopia,1310498385 +130719,1206,psychology,1310498374 +130719,1206,violence,1310498370 +130719,1230,new york city,1247727954 +130719,1230,screwball,1247727503 +130719,1230,Woody Allen,1247727505 +130719,1240,arnold,1368273335 +130719,1240,Arnold Schwarzenegger,1247729110 +130719,1240,assassin,1247729366 +130719,1240,sci-fi,1247729365 +130719,1240,violent,1247729370 +130719,1245,neo-noir,1368273509 +130719,1248,noir thriller,1368273152 +130719,1291,spielberg,1368274049 +130719,1291,treasure,1368273103 +130719,1293,Ben Kingsley,1247729049 +130719,1293,biographical,1247729066 +130719,1293,colonialism,1247729085 +130719,1293,India,1247729073 +130719,1293,Mahatma Gandhi,1247729070 +130719,1387,spielberg,1368274049 +130719,1391,Lame ending,1253670673 +130719,1391,mars,1368273243 +130719,1391,stupid,1253670670 +130719,1396,conspiracy theory,1368273586 +130719,1617,neo-noir,1368273509 +130719,1645,Al Pacino,1286277668 +130719,1645,Keanu Reeves,1286277673 +130719,1645,religion,1286277682 +130719,1688,children cartoon,1247727730 +130719,1688,cute movie,1247727761 +130719,1688,Disney animated feature,1247727751 +130719,1688,Kirsten Dunst,1247727732 +130719,1688,Russia,1247727774 +130719,1688,villain nonexistent or not needed for good story,1247727740 +130719,1721,bittersweet,1247728779 +130719,1721,chick flick,1247728472 +130719,1721,drama,1247727713 +130719,1721,Leonardo DiCaprio,1247728473 +130719,1721,love,1247728791 +130719,1721,love story,1247728777 +130719,1721,natural disaster,1247728787 +130719,1721,Nudity (Topless - Notable),1247728476 +130719,1721,Nudity (Topless),1247728478 +130719,1721,romance,1247727712 +130719,1721,sentimental,1247728755 +130719,1721,true story,1247728752 +130719,1783,noir thriller,1368273152 +130719,1894,stranded,1368273191 +130719,2022,christian,1368273473 +130719,2022,jesus,1368273068 +130719,2028,spielberg,1368274049 +130719,2076,neo-noir,1368273509 +130719,2115,spielberg,1368274050 +130719,2115,treasure,1368273103 +130719,2193,dragon,1368273644 +130719,2273,action turbo,1247727913 +130719,2273,Chris Tucker,1247728399 +130719,2273,Jackie Chan,1247728399 +130719,2273,martial arts,1247728405 +130719,2273,not funny,1247727910 +130719,2353,conspiracy theory,1368273586 +130719,2373,Arnold Schwarzenegger,1247727667 +130719,2373,Betamax,1247727685 +130719,2373,Ennio Morricone,1247727686 +130719,2373,fantasy,1247727677 +130719,2373,pulp,1247727682 +130719,2405,treasure,1368273103 +130719,2617,treasure,1368273103 +130719,2641,based on a comic,1247728962 +130719,2641,Christopher Reeve,1247728957 +130719,2641,phone booth,1247728947 +130719,2641,sci-fi,1247728970 +130719,2662,mars,1368273243 +130719,2726,noir thriller,1368273149 +130719,2840,jesus,1368273068 +130719,2916,arnold,1368273335 +130719,2987,cartoon-reality crossover,1247727584 +130719,2987,Cheesy,1247727601 +130719,2987,no desire to see this,1247728420 +130719,2987,rabbits,1247728437 +130719,2987,wouldn't see again,1247728423 +130719,3067,screwball comedy,1368273445 +130719,3300,stranded,1368273192 +130719,3578,action,1247728065 +130719,3578,drama,1247728056 +130719,3578,history,1247728520 +130719,3578,Period piece,1247728517 +130719,3578,Rome,1247728453 +130719,3578,Russell Crowe,1247727993 +130719,3578,stylized,1247727650 +130719,3578,visceral,1247728054 +130719,3623,mountain climbing,1368273796 +130719,3967,coming of age,1253668162 +130719,3967,homophobia,1253668163 +130719,4344,hacking,1248500525 +130719,4344,Halle Berry,1248500515 +130719,4344,Hugh Jackman,1248500512 +130719,4344,Nudity (Topless - Notable),1248500533 +130719,4454,consumerism,1247727396 +130719,4454,Dream Sequence,1247727372 +130719,4454,free to download,1247727362 +130719,4454,no dialogue,1247727339 +130719,4454,short,1247727341 +130719,4454,social commentary,1247727348 +130719,4454,youtube,1247727410 +130719,4638,stranded,1368273191 +130719,4865,Atmospheric,1247934987 +130719,4865,brutal,1247935020 +130719,4865,England,1247935082 +130719,4865,historical,1247935074 +130719,4865,Johnny Depp,1247934984 +130719,4865,murder,1247935030 +130719,4865,Nudity (Rear),1247935039 +130719,4865,Nudity (Topless),1247935034 +130719,4865,PSYCHIC ABILITIES,1247934991 +130719,4865,serial killer,1247935058 +130719,4865,Thriller,1247935050 +130719,4865,Victorian era,1247935043 +130719,4896,based on a book,1247729310 +130719,4896,good versus evil,1247729285 +130719,5135,bollywood,1368273023 +130719,5418,amnesia,1247726925 +130719,5418,assassin,1247726886 +130719,5418,based on a book,1247726919 +130719,5418,car chase,1247726864 +130719,5418,espionage,1247726906 +130719,5418,france,1247727238 +130719,5418,Matt Damon,1247726863 +130719,5418,memory loss,1247726911 +130719,5445,spielberg,1368274049 +130719,5816,action,1247729318 +130719,5816,adventure,1247729321 +130719,5816,based on a book,1247729006 +130719,5816,boarding school,1247729312 +130719,5816,Daniel Radcliffe,1247728997 +130719,5816,franchise,1247728994 +130719,5816,harry potter,1247728986 +130719,5816,literary adaptation,1247728991 +130719,5816,magic,1247729312 +130719,5816,witch,1247729327 +130719,5816,Wizards,1247729327 +130719,6218,bollywood,1368273023 +130719,6218,culture clash,1247728885 +130719,6218,father daughter relationship,1247729183 +130719,6218,indians,1247728899 +130719,6218,Keira Knightley,1247728901 +130719,6218,lesbian,1247729165 +130719,6218,love,1247728916 +130719,6218,mother daughter relationship,1247729163 +130719,6218,multicultural,1247729219 +130719,6218,soccer,1247729192 +130719,6218,teens,1247729238 +130719,6377,short-term memory loss,1368274029 +130719,6539,treasure,1368273103 +130719,6874,dark hero,1368273277 +130719,6934,cyberpunk,1247729139 +130719,6934,fantasy,1247729140 +130719,6934,Keanu Reeves,1247729123 +130719,6934,Monica Bellucci,1247729145 +130719,6934,sequel,1247729128 +130719,7013,noir thriller,1368273152 +130719,7318,jesus,1368273068 +130719,7386,christian,1368273473 +130719,8366,christian,1368273473 +130719,8529,stranded,1368273191 +130719,8622,conspiracy theory,1368273586 +130719,8665,car chase,1247819954 +130719,8665,espionage,1247819953 +130719,8665,International,1247820689 +130719,8665,kickass,1247819961 +130719,8665,Matt Damon,1247819955 +130719,8666,Batman,1246946485 +130719,8666,Halle Berry,1246946497 +130719,8666,heroine in tight suit,1246946511 +130719,8666,super-hero,1246946548 +130719,33162,christian,1368273473 +130719,51077,Comic Book,1246946691 +130719,51077,Eva Mendes,1246946688 +130719,51077,Nicholas Cage,1246946698 +130719,51884,bollywood,1368273023 +130719,54286,action,1247901991 +130719,54286,assassin,1247902058 +130719,54286,assassin-in-training (scene),1247902043 +130719,54286,espionage,1247902069 +130719,54286,great plot,1247902016 +130719,54286,Julia Stiles,1247902052 +130719,54286,Matt Damon,1247900458 +130719,54286,spy thriller,1247902010 +130719,54286,torture,1247902048 +130719,54286,trilogy,1247902021 +130719,54997,Christian Bale,1309717996 +130719,54997,naive,1309717986 +130719,54997,ridiculous,1309717987 +130719,54999,Clive Owen,1247542715 +130719,54999,gunfight,1247542726 +130719,54999,Paul Giamatti,1310498194 +130719,54999,satire,1247542730 +130719,55805,Nudity (Topless),1253669362 +130719,56174,based on a book,1247729030 +130719,56174,great acting,1247729025 +130719,56174,horror,1247729030 +130719,56174,post-apocalyptic,1247729015 +130719,56174,suspenseful,1247729032 +130719,56174,vampire,1247729015 +130719,56174,Will Smith,1247729010 +130719,56174,Zombie dogs,1247729021 +130719,56174,zombies,1247729015 +130719,59869,biologists,1425019329 +130719,59869,sci-fi,1425019329 +130719,59869,time travel,1425019329 +130719,60072,action,1247727872 +130719,60072,adapted from:comic,1247727869 +130719,60072,Angelina Jolie,1247727800 +130719,60072,assassin,1247727802 +130719,60072,assassin-in-training,1247727877 +130719,60072,based on a comic,1247728025 +130719,60072,brutal violence,1247728487 +130719,60072,bullets,1247727828 +130719,60072,comic book,1247728493 +130719,60072,father-son relationship,1247727857 +130719,60072,graphic novel,1247727881 +130719,60072,gun fu,1247727842 +130719,60072,James McAvoy,1247728010 +130719,60072,Morgan Freeman,1247727813 +130719,60072,murder,1247728020 +130719,60072,plot twist,1247727825 +130719,60072,rats,1247727848 +130719,60072,stylish,1247727816 +130719,60072,unintentional comedy,1247727885 +130719,60074,alcoholic,1253670922 +130719,60074,anti-hero,1253670920 +130719,60074,bad ending,1253670897 +130719,60074,bad script,1253670917 +130719,60074,superhero,1253670901 +130719,60074,Will Smith,1253670902 +130719,68319,cheesy,1247467333 +130719,68319,Comic Book adaption,1247467319 +130719,68319,hugh jackman,1247467320 +130719,68319,Storytelling,1247467341 +130719,68319,superhero,1247467323 +130719,70015,based on a true story,1307466255 +130719,70015,non-linear,1307466276 +130719,88069,bollywood,1435204169 +130719,88069,delhi,1435204169 +130719,88069,macguffin,1435204169 +130719,113778,detective,1423580000 +130719,113778,nudity (topless),1423580000 +130719,113778,over-the-top action,1423580000 +130719,114758,blackmail,1429263710 +130719,114758,twist ending,1429263710 +130719,114758,voyeurism,1429263710 +130733,63992,high school,1239264197 +130733,63992,Sexy Male Vampire,1239264176 +130733,63992,Teen movie,1239264201 +130733,63992,Vampire Human Love,1239264189 +130733,63992,vampires,1239264195 +130756,866,didn't see,1186412166 +130756,1907,Fun to watch,1186412183 +130756,3752,funny,1186412120 +130756,3916,Great movie,1186412661 +130756,4447,dumb but funny,1186412083 +130767,61240,atmospheric,1305719009 +130767,61240,bittersweet,1305719028 +130767,61240,love story,1305719050 +130767,61240,serial killer,1305719031 +130767,61240,vampire,1305719039 +130767,61240,vampires,1305719036 +130788,120466,artificial intelligence,1426050920 +130788,120466,johannesburg,1426050920 +130788,120466,setting:south africa,1426050920 +130798,60684,comic book,1237723364 +130822,260,good science fictional technology,1433222991 +130822,260,good vs evil,1433222989 +130831,54286,action,1429593751 +130831,54286,espionage,1429593708 +130832,260,good vs evil,1434786223 +130832,260,space adventure,1434786220 +130837,87,Nice,1427949253 +130837,5418,Against all odds,1427950199 +130837,5418,Gripping,1427949869 +130861,109487,Christopher Nolan,1448646773 +130861,109487,relativity,1448646777 +130861,109487,sci-fi,1448646769 +130861,109487,space,1448646771 +130861,109487,thought-provoking,1448646779 +130861,109487,time-travel,1448646775 +130861,115713,AI,1448646749 +130861,115713,futuristic,1448646751 +130861,115713,nudity (full frontal),1448646754 +130861,115713,philosophical,1448646745 +130861,115713,robots,1448646747 +130861,115713,sci-fi,1448646739 +130861,115713,thought provoking,1448646743 +130864,32,brad pitt,1452994564 +130864,32,bruce willis,1452994565 +130864,32,great ending,1452994559 +130864,32,time travel,1452994539 +130864,4022,isolation,1452994381 +130864,4022,SURVIVAL,1452994367 +130864,4022,Tom Hanks,1452994369 +130864,4874,intellectual,1452994337 +130864,4874,Kevin Spacey,1452994335 +130864,4874,philosophical,1452994347 +130864,5989,feel good movie,1452995764 +130864,5989,smart,1452995767 +130864,5989,twists & turns,1452995760 +130864,68157,Christoph Waltz,1452994705 +130864,68157,great acting,1452994677 +130864,68157,unusual plot structure,1452994683 +130864,90428,emotional,1452994817 +130864,90428,nudity (topless),1452994830 +130864,90439,corruption,1452996027 +130864,90439,Kevin Spacey,1452996013 +130864,90439,strange ending,1452996036 +130864,90439,suspense,1452996029 +130864,93740,Ewan McGregor,1452995454 +130864,93740,quirky,1452995420 +130864,93740,romance,1452995436 +130864,96610,clever,1452994447 +130864,96610,time travel,1452994435 +130864,106002,bullying,1452995022 +130864,106002,children acting like adults,1452995013 +130864,107406,dystopia,1452994485 +130864,107406,illogical,1452994498 +130864,107406,poor plot,1452994479 +130864,150850,black comedy,1452991100 +130864,150850,cult film,1452991321 +130864,150850,new zealand,1452991223 +130864,150850,zombies,1452991167 +130869,318,atmospheric,1444926333 +130869,318,Morgan Freeman,1444926316 +130869,318,thought-provoking,1444926322 +130869,1222,dialogue,1444904201 +130869,2959,psychology,1444904091 +130869,2959,social commentary,1444904102 +130869,2959,thought-provoking,1444904101 +130869,2959,twist ending,1444904083 +130869,4878,philosophy,1444904061 +130869,4878,thought-provoking,1444904053 +130869,108709,realistic,1444904119 +130869,108709,war,1444904123 +130870,1,Cartoon,1174405495 +130870,1,Disney,1174405495 +130870,7,Romance,1174402452 +130870,11,Drama,1174411069 +130870,11,Romance,1174411069 +130870,17,English,1174402430 +130870,17,Romance,1174402430 +130870,39,Romance,1174411004 +130870,74,Romance,1174401950 +130870,150,Drama,1174405377 +130870,168,Romance,1174410720 +130870,168,War,1174410720 +130870,186,Romance,1174411135 +130870,207,Romance,1174402040 +130870,224,Romance,1174410735 +130870,293,Action,1174401627 +130870,293,Guns,1174412595 +130870,339,Romance,1174410828 +130870,356,Drama,1174410712 +130870,377,Action,1174410437 +130870,440,Romance,1174411177 +130870,446,Culture,1174401721 +130870,446,Foreign,1174401596 +130870,480,Action,1174410663 +130870,480,Suspense,1174410663 +130870,491,Drama,1174402641 +130870,497,English,1174410484 +130870,497,Romance,1174410484 +130870,500,Drama,1174410946 +130870,527,Culture,1174401714 +130870,527,History,1174401535 +130870,539,Romance,1174410367 +130870,588,Cartoon,1174410819 +130870,588,Disney,1174410819 +130870,589,Action,1174405507 +130870,589,Suspense,1174405507 +130870,590,Culture,1174405206 +130870,590,Drama,1174405206 +130870,590,War,1174405206 +130870,597,Romance,1174410468 +130870,780,Action,1174410982 +130870,837,Drama,1174410952 +130870,838,English,1174410998 +130870,838,Romance,1174410998 +130870,858,Action,1174694505 +130870,858,Guns,1174694505 +130870,898,Romance,1174694748 +130870,898,Strong Women,1174694748 +130870,902,Romance,1174410790 +130870,912,Classic,1174410767 +130870,912,Romance,1174410767 +130870,919,Classic,1174405391 +130870,920,Epic,1174404623 +130870,920,Romance,1174404623 +130870,1025,Cartoon,1174410837 +130870,1025,Disney,1174410837 +130870,1088,Dance,1174410742 +130870,1088,Romance,1174410742 +130870,1091,80's,1174411210 +130870,1091,Not worth it,1174411210 +130870,1188,Dance,1174402386 +130870,1196,Action,1174412710 +130870,1196,SciFi,1174402402 +130870,1197,Romance,1174410874 +130870,1204,Culture,1174401799 +130870,1204,War,1174402187 +130870,1207,Classic,1174694776 +130870,1207,History,1174694776 +130870,1221,Action,1174410652 +130870,1221,Guns,1174410652 +130870,1262,War,1174694693 +130870,1265,Comedy,1174411168 +130870,1580,Action,1174410535 +130870,1678,Culture,1174401814 +130870,1694,Drama,1174411058 +130870,1721,Romance,1174402319 +130870,1960,Culture,1174402695 +130870,1960,Foreign,1174402695 +130870,2081,Cartoon,1174410572 +130870,2081,Disney,1174410572 +130870,2100,80's,1174411099 +130870,2137,Cartoon,1174405283 +130870,2144,80's,1174410858 +130870,2145,80's,1174410886 +130870,2245,80's,1174411085 +130870,2394,Biblical,1174401671 +130870,2394,Cartoon,1174412609 +130870,2398,Christmas,1174402613 +130870,2406,80's,1174411123 +130870,2406,Action,1174411123 +130870,2406,Romance,1174411123 +130870,2424,Romance,1174402015 +130870,2571,Action,1174401768 +130870,2571,Guns,1174412621 +130870,2581,Romance,1174410473 +130870,2690,English,1174410990 +130870,2690,Romance,1174410990 +130870,2724,Romance,1174410460 +130870,2797,80's,1174411194 +130870,2804,Christmas,1174411034 +130870,3079,English,1174402631 +130870,3079,Romance,1174402631 +130870,3087,Christmas,1174411108 +130870,3186,Drama,1174404657 +130870,3257,Action,1174405322 +130870,3257,Romance,1174405322 +130870,3259,Romance,1174410726 +130870,3270,Drama,1174411185 +130870,3270,Romance,1174411185 +130870,3408,Drama,1174404677 +130870,3408,Strong Women,1174404677 +130870,3510,Drama,1174404664 +130870,3555,Action,1174402130 +130870,3555,War,1174402130 +130870,3578,Action,1174401857 +130870,3578,Epic,1174401861 +130870,3578,War,1174402216 +130870,3594,Dance,1174411047 +130870,3594,Romance,1174411047 +130870,3717,Action,1174404643 +130870,3717,Cars,1174404643 +130870,3844,Strong Women,1174405798 +130870,3996,Action,1174405240 +130870,3996,Culture,1174405240 +130870,3996,Kick-Butt Women,1174405240 +130870,4008,Drama,1174405313 +130870,4018,Romance,1174405427 +130870,4025,Drama,1174410524 +130870,4246,Romance,1174410774 +130870,4310,Action,1174402516 +130870,4310,War,1174402516 +130870,4367,Action,1174402800 +130870,4367,Kick-Butt Women,1174402800 +130870,4447,Comedy,1174411159 +130870,4886,Cartoon,1174410492 +130870,4973,Foreign,1174410807 +130870,4973,Romance,1174410807 +130870,4992,Romance,1174410584 +130870,4993,Action,1174402659 +130870,4993,Epic,1174402659 +130870,5066,Romance,1174405433 +130870,5299,Romance,1174402565 +130870,5299,Strong Women,1174402565 +130870,5349,Action,1174402410 +130870,5452,Drama,1174411233 +130870,5620,Romance,1174405790 +130870,5952,Action,1174401815 +130870,5952,Epic,1174401783 +130870,5957,Romance,1174405438 +130870,5970,Drama,1174410934 +130870,6183,Doris Day,1174402484 +130870,6183,Romance,1174402484 +130870,6539,Action,1174410901 +130870,6539,Suspense,1174410901 +130870,6539,War,1174410901 +130870,6765,Romance,1174402099 +130870,6765,Strong Women,1174402111 +130870,6886,Culture,1174405357 +130870,6886,Romance,1174405357 +130870,6886,War,1174405357 +130870,6942,Romance,1174410560 +130870,7082,Doris Day,1174402362 +130870,7082,Romance,1174402362 +130870,7085,Doris Day,1174410451 +130870,7085,Romance,1174410451 +130870,7090,Action,1174401843 +130870,7090,Culture,1174401846 +130870,7090,Kick-Butt Women,1174402893 +130870,7149,Romance,1174402417 +130870,7151,Drama,1174401912 +130870,7154,Strong Women,1174410512 +130870,7155,Drama,1174411052 +130870,7177,Culture,1174401710 +130870,7177,Foreign,1174401566 +130870,7177,Women's Rights,1174401576 +130870,7255,Romance,1174405404 +130870,7361,Drama,1174401934 +130870,7458,Epic,1174401616 +130870,7458,War,1174402150 +130870,7585,Romance,1174402377 +130870,7614,Musical,1174410923 +130870,7701,Drama,1174411143 +130870,8385,Doris Day,1174410547 +130870,8385,Romance,1174410547 +130870,8533,Romance,1174402556 +130870,8643,Drama,1174410753 +130870,8961,Cartoon,1174412800 +130870,8961,Disney,1174402812 +130870,8977,Action,1174402008 +130870,8977,Epic,1174401963 +130870,8977,War,1174402232 +130870,8983,Action,1174401826 +130870,8983,Culture,1174401831 +130870,8983,Kick-Butt Women,1174402885 +130870,8983,War,1174402197 +130870,27721,Foreign,1174402063 +130870,27721,Romance,1174402069 +130870,30812,Drama,1174405370 +130870,30816,Musical,1174412729 +130870,30816,Romance,1174402502 +130870,31694,Romance,1174410779 +130870,33679,Action,1174402605 +130870,33679,Cars,1174412757 +130870,33679,Kick-Butt Women,1174402844 +130870,34336,Romance,1174410939 +130870,34608,Romance,1174694391 +130870,34608,Strong Women,1174694391 +130870,36525,Romance,1174410961 +130870,41997,Action,1174401692 +130870,41997,Culture,1174401698 +130870,42007,Romance,1174410869 +130870,48161,Sports,1174410151 +130870,48412,Action,1174410132 +130870,48412,Suspense,1174412811 +130870,48600,Biblical,1174410222 +130870,49272,007,1174344178 +130870,49272,action,1174344183 +130870,49286,Romance,1174410187 +130870,49793,Sports,1174402031 +130870,50802,Romance,1174405359 +130921,318,gripping,1432029245 +130921,318,prison escape,1432029245 +130921,318,thought-provoking,1432029245 +130921,356,handicapped,1434617196 +130921,356,inspiration,1434617196 +130921,356,slow-paced,1434617196 +130921,4226,brain teaser,1432029198 +130958,7502,historical,1449675403 +130958,7502,true story,1449675411 +130958,7502,World War II,1449675407 +130968,1320,allegory,1206108970 +130969,501,David Thewlis,1180863755 +131019,866,lesbian,1188072064 +131019,1188,romance,1188072010 +131019,2080,children,1188071974 +131019,3755,drama,1188071988 +131019,4447,chick flick,1188072045 +131019,6934,action,1188072028 +131025,296,assassin,1389042503 +131025,296,dark comedy,1389042491 +131025,296,multiple storylines,1389042486 +131025,296,nonlinear,1389042483 +131025,296,Quentin Tarantino,1389042473 +131025,2145,wired 50 greatest soundtracks,1389043282 +131025,5608,based on a true story,1413467944 +131025,5608,psychological,1413467948 +131025,5608,psychology,1413467939 +131025,5608,thought-provoking,1413467955 +131025,44195,narrated,1413477523 +131025,44195,social commentary,1413477507 +131025,44974,Ellen Page,1389042714 +131025,44974,intense,1389042729 +131025,44974,paedophilia,1389042745 +131025,44974,psychology,1389042734 +131025,44974,thriller,1389042737 +131025,44974,torture,1389042723 +131025,54281,coming of age,1389043127 +131025,54281,incoherent,1389043136 +131025,54281,Robert Downey Jr.,1389043125 +131025,67734,great soundtrack,1389043331 +131025,81591,Natalie Portman,1389042779 +131025,81591,psychological,1389042783 +131025,81591,thriller,1389042797 +131025,81591,twist ending,1389042800 +131025,97832,jonny weston,1365116552 +131025,97832,surfing,1365116552 +131025,106489,adapted from book,1389042339 +131025,106489,peter jackson,1389042329 +131025,106489,too long,1389042369 +131025,106489,too many sequels,1389042381 +131025,114180,based on a book,1413467856 +131025,114180,psycologic experiment,1413467885 +131025,114180,to be continued,1413467864 +131029,27,a bit boring,1415853658 +131029,356,memorable,1380293900 +131029,454,ending,1389743456 +131029,454,good overall film,1389743475 +131029,920,American Civil War,1380229503 +131029,920,based on a book,1380229581 +131029,920,book was better,1380229528 +131029,920,Civil War,1380229560 +131029,920,war,1380229512 +131029,1257,gets better as it goes,1388438414 +131029,1257,quirky,1388438324 +131029,1257,silly,1388438346 +131029,1285,characters boring,1387820051 +131029,1285,didnt finish,1387820967 +131029,1645,twist ending,1388359710 +131029,1784,long,1385449461 +131029,3039,hilarious,1397257304 +131029,3039,racism,1397257285 +131029,3105,Great acting,1380658718 +131029,3105,Robin Williams,1380658761 +131029,3147,good guy dies,1380231624 +131029,4014,Lent (religion),1389823190 +131029,4014,Refreshing,1389823111 +131029,4226,violence,1392693137 +131029,7154,Julia Roberts,1428557060 +131029,53123,music store scene,1391530155 +131029,59725,Sarah Jessica Parker,1380294188 +131029,60293,gets better as it goes,1390426523 +131029,60293,Jamaican supplier,1390426494 +131029,68954,animated,1380225667 +131029,68954,follow your dreams,1380225742 +131029,68954,original plot,1380225693 +131029,69712,bad interpretation,1441554284 +131029,69712,ending,1441554288 +131029,69712,Worst book adaptation,1441554316 +131029,72018,expected more,1398699676 +131029,72018,surprisingly boring,1398699678 +131029,72641,book was better,1380294030 +131029,79132,want to see again,1387499698 +131029,86320,cinematography,1396963730 +131029,86320,Didn't finish,1396963694 +131029,86487,excellent acting,1415853880 +131029,86487,mini series (not movie),1415853862 +131029,86487,stays with you,1415853854 +131029,86487,twist ending,1415853876 +131029,93840,good ending,1389678238 +131029,96606,intense,1387080965 +131029,96655,Fantastic Getaway,1380560257 +131029,96655,Fantastic Getaway!!!,1380560277 +131029,96655,humor,1380560239 +131029,102066,best friends,1387248370 +131029,102066,stupid ending,1387248355 +131029,102800,best friends,1387229113 +131029,102800,dance,1387229093 +131029,102800,original,1387229034 +131029,102800,quirky,1387229020 +131029,102800,white people,1387229004 +131029,102854,brutality,1380225347 +131029,102854,gang rape,1380225408 +131029,102854,rape,1380225324 +131029,102854,Spanish,1380225374 +131029,103048,coming of age,1416636813 +131029,103235,artistic,1411738434 +131029,103235,beautiful,1411738434 +131029,103235,beautifully tragic,1411738537 +131029,103235,cinematography,1411738459 +131029,103235,compelling,1411738459 +131029,103235,Favorite,1411738517 +131029,103235,stays with you,1415853558 +131029,103235,story,1411738434 +131029,103235,twist ending,1411738435 +131029,103539,book was better,1387821324 +131029,103541,roleplaying game,1389310507 +131029,103606,characters,1385446794 +131029,103606,DRUG ADDICTION,1385446829 +131029,103606,feel good movie,1385446794 +131029,103606,forgiveness,1387478078 +131029,103606,great acting,1385446871 +131029,103606,heartwarming,1385446871 +131029,103606,Memorable Characters,1385446831 +131029,104272,Educational,1386706024 +131029,104272,horrifying,1386705995 +131029,104272,memorable,1386705984 +131029,104272,sad,1386705969 +131029,104272,slavery,1386705977 +131029,105213,Joseph Gordon-Levitt,1388349856 +131029,105213,New Jersey,1388349815 +131029,105835,confusing,1415853151 +131029,106841,boring,1394916867 +131029,106841,Julia Roberts,1394916809 +131029,106841,meryl streep,1394916821 +131029,106841,no point,1394916910 +131029,106841,surprisingly boring,1394916887 +131029,106916,Jennifer Lawrence,1388972145 +131029,109853,cute!,1428527106 +131029,109853,perfect,1428527096 +131029,110675,weak characters,1428521462 +131029,110771,surprisingly good,1415853613 +131029,111259,bad acting,1415853263 +131029,111360,ending,1415852999 +131029,111743,distasteful,1415853329 +131029,112556,blackmail,1413687250 +131029,112556,Good adaptation,1413687236 +131029,112556,good adaptation of the book,1413687236 +131029,112556,unpredictable,1413687277 +131029,112868,good watch,1416636663 +131029,112868,predictable,1416636671 +131029,112868,stupid ending,1416636647 +131029,112868,tense,1416636612 +131029,113741,couldn't sleep after watching,1411738071 +131029,113741,Freaked me out!,1411738004 +131029,113741,mind bending,1411738024 +131029,114601,not as funny as I expected,1416636728 +131029,114795,war,1416028832 +131029,117344,bad ending,1427668721 +131029,118997,meryl streep,1424738739 +131029,120466,die antwoord,1435976852 +131029,120466,violence,1435976844 +131042,2028,action,1444691491 +131042,2028,historical,1444691518 +131042,2028,World War II,1444691487 +131042,3578,action,1444613444 +131042,3578,drama,1444613447 +131042,3578,heroism,1444613441 +131042,3578,history,1444613494 +131042,4306,comedy,1444613184 +131042,6378,action,1444691841 +131042,6378,heist,1444691851 +131042,6378,twists & turns,1444691845 +131042,6539,action,1444612990 +131042,6539,adventure,1444613001 +131042,6539,funny,1444613012 +131042,6539,Suspense,1444613020 +131042,7502,historical,1444613555 +131042,7502,military,1444613534 +131042,7502,realistic,1444613581 +131042,7502,World War II,1444613529 +131042,54286,action,1444613329 +131042,54286,spy,1444613317 +131042,54286,suspense,1444613340 +131042,54286,twist ending,1444613347 +131042,59369,action packed,1444614046 +131042,59369,thriller,1444614041 +131042,76093,action,1444613805 +131042,76093,cute,1444613814 +131042,88744,bad science,1444691805 +131042,88744,thought-provoking,1444691814 +131042,89492,baseball,1444614434 +131042,89492,based on a true story,1444614445 +131042,89492,sports,1444614442 +131042,89745,action,1444613719 +131042,89745,humor,1444613710 +131042,91542,fight scenes,1444614236 +131042,91542,Funny,1444614212 +131043,2731,critique of french society,1171820801 +131044,260,computer graphics,1437806398 +131044,260,easy going story,1437806485 +131044,2762,psychology,1437807064 +131044,45668,Keanu Reeves,1437807506 +131044,45668,love story,1437807504 +131044,45668,Sandra Bullock,1437807519 +131044,104841,sandra bullock,1437807451 +131044,109487,physics,1437807149 +131044,109487,sci-fi,1437807168 +131073,147831,dark comedy,1448479539 +131073,147831,offensive,1448545332 +131073,147833,dark comedy,1448479585 +131102,296,needless gratuitous violence,1169331173 +131102,750,always applicable to present,1169330385 +131102,750,insanely funny,1169330385 +131102,800,great direction,1169330751 +131102,800,impressive,1169330751 +131102,1212,musical score drives me crazy!,1169329036 +131102,4226,brilliant in concept & execution,1169330335 +131102,8949,modern male friendship,1169330927 +131102,46578,quirky good,1169330719 +131102,46772,Amy Sedaris - nuff said!,1175572931 +131102,48738,possibly scarring,1173237235 +131112,1673,porn industry,1170637966 +131112,1682,held captive,1170638908 +131112,1721,adventure at sea,1170638967 +131112,1721,distress call,1170638967 +131112,1721,SOS,1170638967 +131112,1779,sea bottom,1170639190 +131112,1907,Asian culture,1170639328 +131112,2321,Tobey Maguire,1170637725 +131112,2336,head-of-state,1170637872 +131112,2336,monarchy,1170637872 +131112,2617,special effects,1170637784 +131112,2686,Samuel L. Jackson,1170637681 +131112,2700,adult humor,1170637563 +131112,2702,Spike Lee,1170637506 +131112,2890,gold heist,1170639031 +131112,3354,space calamity,1170639361 +131112,3354,space travel,1170639361 +131112,3896,Ryan Phillippe,1170637471 +131112,5349,Tobey Maguire,1170639133 +131112,6220,remake,1170638728 +131112,6333,sequels,1170638656 +131112,6565,Tobey Maguire,1170639225 +131112,6947,seafaring,1170637827 +131112,7162,appalachia,1170638439 +131112,7162,colonial days,1170638439 +131112,7263,sports,1170639395 +131112,7360,remake,1170638362 +131112,8636,Tobey Maguire,1170639113 +131112,8836,old fashion romance,1170638879 +131112,8970,life of noted author,1170638285 +131112,27790,a welcome surprise,1170639461 +131112,27790,original subject,1170639461 +131112,30793,children's novel,1170637944 +131112,30816,remake,1170639293 +131112,32587,graphic novel,1170637625 +131112,33615,Africa,1170638833 +131112,33679,erotic tension,1170638805 +131112,36529,gun smuggling,1170639504 +131112,37739,sports,1170638227 +131112,39435,sword fighting,1170639539 +131112,45081,guilty pleasure,1170638125 +131112,45722,seafaring,1170639265 +131112,46974,9/11,1170638697 +131112,47642,bullying,1423007730 +131112,47642,childhood,1423007730 +131112,47642,dare,1423007730 +131112,48385,racially offensive,1170638613 +131112,48385,religiously offensive,1170638613 +131112,48774,futuristic,1170638508 +131112,49272,007,1170638558 +131112,49272,first novel,1170638558 +131112,49272,James Bond,1170638558 +131112,51077,not true to the book,1172866978 +131123,1197,comedy,1282611372 +131123,1197,fantasy,1282611377 +131123,2791,Parody,1282675113 +131123,7099,post-apocalyptic,1282611390 +131123,8874,black comedy,1329513253 +131123,8874,parody,1329513250 +131123,8874,Simon Pegg,1329513245 +131123,8874,spoof,1329513248 +131123,8874,zombie,1329513243 +131123,8874,zombies,1329513239 +131123,26776,animation,1282611384 +131123,60069,dystopia,1329513462 +131123,60069,Sci-Fi,1329513467 +131123,71535,dark comedy,1329513302 +131123,71535,post-apocalyptic,1329513289 +131123,71535,quotable,1329513297 +131123,71535,witty,1329513293 +131123,71535,zombies,1329513291 +131124,5618,Japan,1440370195 +131124,73881,education,1440370263 +131141,260,action,1444410941 +131141,260,future fantasy,1444410927 +131150,8,Library System,1291733389 +131150,10,Bob*ola,1422230026 +131150,10,MTSKAF,1372721914 +131150,17,BGAB LRC,1271595935 +131150,69,BGAB LRC,1271595057 +131150,69,Bob*ola,1362091848 +131150,69,Comedy Need to See,1404297036 +131150,111,movie to see,1299809959 +131150,176,Bob*ola,1422236733 +131150,215,BGAB LRC,1271593317 +131150,230,BGAB LRC,1271596485 +131150,232,Bob*ola,1422233386 +131150,232,Netflix DVD,1291732683 +131150,246,movie to see,1142475298 +131150,289,Bob*ola,1362102916 +131150,318,inspirational,1330200848 +131150,362,movie to see,1232149217 +131150,408,sg,1259502097 +131150,671,BGAB LRC,1271595578 +131150,678,Netflix Streaming,1291731652 +131150,678,Short Movie,1291731662 +131150,709,Wixom Library,1291732391 +131150,805,Bob*ola,1422233328 +131150,899,movie to see,1218157980 +131150,904,movie to see,1153401007 +131150,910,movie to see,1144315801 +131150,918,movie to see,1218158073 +131150,923,movie to see,1147899131 +131150,932,Bob*ola,1422237118 +131150,940,movie to see,1218158056 +131150,986,Netflix Streaming,1291732800 +131150,998,Bob*ola,1362100125 +131150,1013,movie to see,1152651682 +131150,1034,BGAB LRC,1271595023 +131150,1035,movie to see,1156367882 +131150,1049,KAF,1330200140 +131150,1103,movie to see,1142475429 +131150,1177,Bob*ola,1422236693 +131150,1189,movie to see,1152651859 +131150,1193,movie to see,1144803897 +131150,1201,movie to see,1142475589 +131150,1207,movie to see,1153400973 +131150,1208,movie to see,1142475082 +131150,1215,movie to see hd,1310247125 +131150,1223,Netflix Streaming,1291646315 +131150,1223,Short Movie,1291731805 +131150,1224,movie to see,1149495253 +131150,1225,movie to see,1147551130 +131150,1228,movie to see,1144803807 +131150,1242,KAF,1330200093 +131150,1249,movie to see,1147051688 +131150,1253,movie to see,1228442688 +131150,1259,MTSKAF,1372210013 +131150,1262,movie to see,1153913334 +131150,1263,movie to see,1147051487 +131150,1267,movie to see,1142475630 +131150,1268,movie to see,1145018942 +131150,1272,BGAB LRC,1271595682 +131150,1272,movie to see,1144315890 +131150,1286,movie to see,1147551112 +131150,1288,movie to see,1150802914 +131150,1290,Netflix Streaming,1291649962 +131150,1342,KAF,1330198154 +131150,1357,KAF,1330198731 +131150,1361,Bob*ola,1422230224 +131150,1361,Library System,1291731557 +131150,1361,MTSKAF,1373343620 +131150,1374,Bob*ola,1422229966 +131150,1397,BGAB LRC,1271593291 +131150,1431,movie to see,1228442814 +131150,1431,ub recommended,1147726918 +131150,1547,Bob*ola,1362102431 +131150,1547,movie to see,1300494832 +131150,1587,KAF,1324994543 +131150,1660,BGAB LRC,1271594838 +131150,1754,BGAB LRC,1271596131 +131150,1754,Bob*ola,1362091537 +131150,1754,movie to see hd,1310255037 +131150,1801,MTSKAF,1371938929 +131150,1884,movie to see,1228442727 +131150,1909,movie to see,1230499591 +131150,1944,movie to see,1143017299 +131150,1950,BGAB LRC,1271595251 +131150,1950,movie to see,1156378886 +131150,1952,KAF,1330198679 +131150,1954,inspirational,1330200887 +131150,1965,movie to see,1299809668 +131150,2005,Bob*ola,1422235062 +131150,2005,movie to see,1217730839 +131150,2005,mts,1371938558 +131150,2005,MTSKAF,1371938559 +131150,2020,Bob*ola,1362091001 +131150,2020,movie to see,1232149318 +131150,2046,Bob*ola,1362091374 +131150,2077,movie to see,1229089464 +131150,2078,movie to see,1232149208 +131150,2083,movie to see,1226795365 +131150,2096,movie to see,1228442841 +131150,2122,KAF,1330198227 +131150,2125,Netflix DVD,1291646058 +131150,2125,Wixom Library,1291645679 +131150,2154,movie to see,1147051510 +131150,2197,KAF,1330198563 +131150,2205,Library System,1291732175 +131150,2232,KAF,1330198403 +131150,2288,Bob*ola,1422237044 +131150,2288,MTSKAF,1371938956 +131150,2289,movie to see,1142475690 +131150,2311,bg,1259501796 +131150,2320,BGAB LRC,1271593241 +131150,2330,Bob*ola,1422230186 +131150,2330,Library System,1291646372 +131150,2340,BGAB LRC,1271595486 +131150,2346,movie to see,1153913277 +131150,2372,Bob*ola,1362091677 +131150,2372,movie to see,1299809838 +131150,2393,Bob*ola,1422235185 +131150,2423,movie to see,1226795381 +131150,2467,MTSKAF,1372283804 +131150,2482,Library System,1291732119 +131150,2511,Bob*ola,1422236885 +131150,2541,KAF,1330198363 +131150,2610,Bob*ola,1422237536 +131150,2624,movie to see,1154035890 +131150,2664,movie to see,1145487639 +131150,2700,Bob*ola,1422233306 +131150,2700,MTSKAF,1371938813 +131150,2707,movie to see,1150802714 +131150,2883,Zooey Deschanel,1272369827 +131150,2886,movie to see,1142475251 +131150,2976,KAF,1330198053 +131150,3032,BGAB LRC,1271595636 +131150,3066,BGAB LRC,1271596114 +131150,3071,movie to see,1233616937 +131150,3077,Wixom Library,1291645780 +131150,3090,Library System,1291731486 +131150,3102,Netflix Streaming,1291649771 +131150,3125,BGAB LRC,1271594778 +131150,3138,Netflix Streaming,1291649926 +131150,3146,Comedy Need to See,1404297052 +131150,3177,Comedy Need to See,1404297347 +131150,3196,Netflix DVD,1291731706 +131150,3246,Bob*ola,1422233217 +131150,3272,KAF,1330197898 +131150,3275,movie to see,1190572534 +131150,3329,Bob*ola,1422237267 +131150,3338,Netflix Streaming,1291646226 +131150,3429,movie to see,1150802664 +131150,3451,Bob*ola,1422236820 +131150,3508,MTSKAF,1371938735 +131150,3566,movie to see,1233713636 +131150,3617,Comedy Need to See,1404296967 +131150,3623,movie to see,1218158170 +131150,3629,movie to see,1218158022 +131150,3638,Bob*ola,1422233234 +131150,3720,BGAB LRC,1271596017 +131150,3720,Bob*ola,1362100525 +131150,3728,MTSKAF,1372283498 +131150,3761,BGAB LRC,1271592931 +131150,3785,BGAB,1268217333 +131150,3858,KAF,1330198209 +131150,3897,movie to see,1149495201 +131150,3897,Zooey Deschanel,1272369835 +131150,3937,Netflix Streaming,1291731990 +131150,3979,Comedy Need to See,1404297588 +131150,4029,movie to see,1144315817 +131150,4047,BGAB LRC,1271595089 +131150,4047,MTSKAF,1371938515 +131150,4052,sg,1259504925 +131150,4102,Bob*ola,1362091480 +131150,4103,Bob*ola,1422237355 +131150,4231,movie to see,1149495682 +131150,4247,movie to see,1154983975 +131150,4247,ub recommended,1147814880 +131150,4255,Comedy Need to See,1404297473 +131150,4299,sg,1259502433 +131150,4304,movie to see,1156367902 +131150,4326,Bob*ola,1422230276 +131150,4372,movie to see,1153913538 +131150,4388,Bob*ola,1362100077 +131150,4432,movie to see,1153401047 +131150,4468,BGAB LRC,1271593096 +131150,4526,Bob*ola,1362102609 +131150,4526,KAF,1323960752 +131150,4571,movie to see,1150803085 +131150,4595,movie to see,1152651698 +131150,4602,KAF,1323963709 +131150,4616,movie to see,1233616950 +131150,4640,KAF,1330198120 +131150,4710,movie to see,1232149591 +131150,4713,KAF,1330197775 +131150,4713,sg,1259503508 +131150,4721,sg,1259504749 +131150,4735,Bob*ola,1362091914 +131150,4735,KAF,1323963507 +131150,4743,Bernie L recommends,1151071672 +131150,4748,To See with Rachel,1190157685 +131150,4774,Zooey Deschanel,1272369796 +131150,4845,Comedy Need to See,1404297665 +131150,4867,movie to see,1142475442 +131150,4890,movie to see,1144803495 +131150,4973,movie to see,1142475062 +131150,4989,Comedy Need to See,1404297336 +131150,4993,movie to see,1150803060 +131150,5009,Bob*ola,1362089824 +131150,5009,KAF,1323962227 +131150,5009,movie to see,1147552396 +131150,5026,KAF,1324994706 +131150,5026,movie to see hd,1310247468 +131150,5038,Library System,1291732740 +131150,5060,movie to see,1144803963 +131150,5064,movie to see,1144803763 +131150,5066,sg,1259502629 +131150,5151,bg,1259501985 +131150,5296,movie to see,1153913188 +131150,5323,MTSKAF,1371938656 +131150,5339,Bob*ola,1422237584 +131150,5363,Zooey Deschanel,1272369822 +131150,5389,Bob*ola,1422233183 +131150,5415,movie to see,1143771055 +131150,5418,movie to see,1218158125 +131150,5478,Bob*ola,1422237341 +131150,5480,movie to see,1143770842 +131150,5505,Zooey Deschanel,1272369845 +131150,5524,BGAB LRC,1271596302 +131150,5617,movie to see,1218158110 +131150,5618,movie to see,1144315942 +131150,5669,movie to see,1142475161 +131150,5670,movie to see,1147051846 +131150,5677,Zooey Deschanel,1272369861 +131150,5747,Bob*ola,1422236718 +131150,5788,BGAB LRC,1271593004 +131150,5796,KAF,1330198191 +131150,5804,movie to see,1142475470 +131150,5809,movie to see,1145487529 +131150,5903,BGAB LRC,1271594795 +131150,5945,movie to see,1149495534 +131150,5952,Bob*ola,1362089605 +131150,5952,movie to see,1229350647 +131150,5995,BGAB LRC,1271592964 +131150,5995,movie to see,1144315921 +131150,6014,Bob*ola,1362099135 +131150,6155,movie to see,1143770962 +131150,6158,movie to see,1232149183 +131150,6159,Zooey Deschanel,1272369752 +131150,6196,Bob*ola,1362090971 +131150,6196,KAF,1323963125 +131150,6196,movie to see hd,1310247541 +131150,6280,Bob*ola,1362089695 +131150,6280,KAF,1323961601 +131150,6280,movie to see,1299809703 +131150,6280,movie to see hd,1310247050 +131150,6298,Comedy Need to See,1404297676 +131150,6323,Bob*ola,1362092632 +131150,6323,movie to see hd,1310255467 +131150,6329,Zooey Deschanel,1272369778 +131150,6331,BGAB LRC,1271595971 +131150,6331,movie to see,1147899118 +131150,6333,movie to see,1150802786 +131150,6338,movie to see,1153913458 +131150,6342,KAF,1330198851 +131150,6383,Bob*ola,1362089623 +131150,6383,KAF,1330197713 +131150,6385,Bob*ola,1422236509 +131150,6385,movie to see,1142475750 +131150,6440,BGAB LRC,1271593304 +131150,6482,movie to see,1147051737 +131150,6502,KAF,1323961350 +131150,6502,movie to see hd,1310246966 +131150,6503,movie to see,1147051624 +131150,6567,movie to see,1199026633 +131150,6591,Bob*ola,1422237606 +131150,6591,movie to see,1153913565 +131150,6593,movie to see,1142475283 +131150,6615,Bob*ola,1362091831 +131150,6620,sg,1259504786 +131150,6750,sg,1259504958 +131150,6805,KAF,1330198382 +131150,6816,BGAB LRC,1271596090 +131150,6867,movie to see,1143771043 +131150,6873,BGAB LRC,1271596354 +131150,6881,BGAB LRC,1271596392 +131150,6888,Bob*ola,1362100081 +131150,6889,movie to see,1143770976 +131150,6936,movie to see,1144803562 +131150,6936,Zooey Deschanel,1272369840 +131150,6947,movie to see,1142475362 +131150,6948,movie to see,1143770944 +131150,6959,movie to see,1145487663 +131150,6980,BGAB LRC,1271595560 +131150,6993,Bob*ola,1362092101 +131150,6993,KAF,1323963678 +131150,6993,movie to see,1232149476 +131150,7036,To See with Rachel,1190157570 +131150,7073,Bob*ola,1362100211 +131150,7075,movie to see,1218158095 +131150,7084,Bob*ola,1422236257 +131150,7090,Bob*ola,1362092266 +131150,7096,movie to see,1190557550 +131150,7104,bg,1259501758 +131150,7139,movie to see,1142475328 +131150,7153,movie to see,1150802857 +131150,7155,movie to see,1142475180 +131150,7156,movie to see,1149495283 +131150,7160,movie to see,1143771069 +131150,7247,movie to see,1228442876 +131150,7256,movie to see,1149495464 +131150,7262,Bob*ola,1362090701 +131150,7294,movie to see,1144315841 +131150,7324,movie to see,1143771031 +131150,7346,Comedy Need to See,1404297007 +131150,7347,movie to see,1142475487 +131150,7348,BGAB LRC,1271596550 +131150,7360,Bob*ola,1362091169 +131150,7360,movie to see hd,1310247671 +131150,7373,movie to see,1229089573 +131150,7381,movie to see,1142475721 +131150,7386,movie to see,1218590635 +131150,7395,movie to see,1142475213 +131150,7419,Bob*ola,1422236669 +131150,7438,movie to see,1145487619 +131150,7439,movie to see,1217730398 +131150,7451,Bob*ola,1362102689 +131150,7451,movie to see,1300494856 +131150,7482,Bob*ola,1362091503 +131150,7502,Bob*ola,1422229613 +131150,7502,MTSKAF,1372209993 +131150,7541,bg,1259501590 +131150,7566,Wixom Library,1291645767 +131150,7614,movie to see,1142475397 +131150,7669,Bob*ola,1422233414 +131150,8033,Bob*ola,1422236085 +131150,8228,Wixom Library,1291731402 +131150,8235,movie to see,1218158037 +131150,8368,movie to see,1143496745 +131150,8373,movie to see,1142475708 +131150,8464,movie to see,1149495449 +131150,8531,Comedy Need to See,1404297454 +131150,8533,movie to see,1144315763 +131150,8622,movie to see,1143770909 +131150,8638,Library System,1291732598 +131150,8640,Bob*ola,1362092858 +131150,8643,To See with Rachel,1190158022 +131150,8665,movie to see,1218158139 +131150,8810,Bob*ola,1362089881 +131150,8810,KAF,1323962360 +131150,8865,movie to see,1142475524 +131150,8866,movie to see,1147551167 +131150,8874,Bob*ola,1362100169 +131150,8874,Comedy Need to See,1404297019 +131150,8911,To See with Rachel,1190151195 +131150,8918,BGAB LRC,1271594824 +131150,8918,Zooey Deschanel,1272369800 +131150,8950,BGAB LRC,1271596580 +131150,8957,movie to see,1233617185 +131150,8958,Bob*ola,1362099910 +131150,8958,KAF,1330199750 +131150,8958,movie to see,1142475411 +131150,8958,MTSKAF,1371938771 +131150,8968,sg,1259502859 +131150,8970,movie to see,1142475264 +131150,8972,movie to see,1218158188 +131150,8981,movie to see,1142475227 +131150,8983,MTSKAF,1372535045 +131150,8985,Bob*ola,1362090506 +131150,8985,movie to see hd,1310247335 +131150,25788,movie to see,1233616896 +131150,25927,movie to see,1226795142 +131150,26198,Library System,1291646015 +131150,26198,Netflix DVD,1291645987 +131150,26444,Bob*ola,1362101172 +131150,26504,Netflix Streaming,1291732306 +131150,26539,Bob*ola,1362091280 +131150,26561,Netflix Streaming,1291650010 +131150,26580,Bob*ola,1362101290 +131150,26629,Bob*ola,1362092846 +131150,27373,Baseball,1368360786 +131150,27373,history,1368360808 +131150,27478,Comedy Need to See,1404297405 +131150,27618,sg,1259502593 +131150,27735,Bob*ola,1362102202 +131150,27801,Bob*ola,1362099325 +131150,27808,movie to see,1144803698 +131150,27831,BGAB LRC,1271595390 +131150,27837,Bob*ola,1362091697 +131150,27837,movie to see,1147551218 +131150,27839,movie to see,1199026418 +131150,27841,movie to see,1218590672 +131150,27871,Bob*ola,1362100260 +131150,27904,BGAB LRC,1271595918 +131150,27904,sg,1259502563 +131150,30749,movie to see,1142475311 +131150,30793,movie to see,1142475197 +131150,30812,movie to see,1147051546 +131150,30822,movie to see,1154983965 +131150,31284,Netflix Streaming,1291650053 +131150,31422,movie to see,1142475141 +131150,31658,06 Oscar Nominated Best Movie - Animation,1138745619 +131150,31878,Bob*ola,1362092930 +131150,32017,movie to see,1142475646 +131150,32174,movie to see,1229089446 +131150,32261,BGAB LRC,1271596079 +131150,32296,movie to see,1142475380 +131150,32298,BGAB LRC,1271596412 +131150,32302,Watch with Dad,1190150638 +131150,32587,movie to see,1147552199 +131150,32596,Bob*ola,1362100032 +131150,32596,movie to see,1142475455 +131150,32598,movie to see,1145487575 +131150,33004,movie to see,1145487557 +131150,33004,Zooey Deschanel,1272369810 +131150,33036,Bob*ola,1362100921 +131150,33036,movie to see,1230499450 +131150,33081,BGAB LRC,1271596447 +131150,33145,sg,1259502458 +131150,33154,Bob*ola,1422236068 +131150,33162,BGAB LRC,1271596368 +131150,33162,Bob*ola,1362092873 +131150,33166,06 Oscar Nominated Best Movie,1138744946 +131150,33171,MTSKAF,1372182358 +131150,33437,movie to see,1144803521 +131150,33499,movie to see,1153913223 +131150,33646,movie to see,1147051459 +131150,33669,Bob*ola,1362102409 +131150,33669,movie to see,1300494807 +131150,33836,movie to see,1143496744 +131150,34072,movie to see,1143771083 +131150,34150,movie to see,1147051373 +131150,34271,movie to see,1217730246 +131150,34319,movie to see,1142475612 +131150,34332,movie to see,1147051704 +131150,34332,To See with Rachel,1190158563 +131150,34405,Bob*ola,1362100112 +131150,34405,movie to see,1142475505 +131150,34437,BGAB LRC,1271596433 +131150,34542,Bob*ola,1422237413 +131150,34542,movie to see,1144804008 +131150,36276,Michael Moore Favorite,1153660947 +131150,36517,movie to see,1142475543 +131150,36519,movie to see,1143771005 +131150,36529,Bob*ola,1362098947 +131150,37240,MTSKAF,1371939025 +131150,37384,Bob*ola,1362101741 +131150,37384,Comedy Need to See,1404297631 +131150,37386,movie to see,1147552164 +131150,37729,06 Oscar Nominated Best Movie - Animation,1138745593 +131150,37731,KAF,1323963649 +131150,37733,movie to see,1143771020 +131150,37741,06 Oscar Nominated Best Movie,1138744916 +131150,37741,movie to see,1147552117 +131150,37853,movie to see,1147051646 +131150,37855,BGAB LRC,1271595748 +131150,37855,Michael Moore Favorite,1153661054 +131150,38038,Bob*ola,1422236612 +131150,38038,movie to see,1143017263 +131150,38046,Bob*ola,1362100143 +131150,38798,BGAB LRC,1271595236 +131150,38992,movie to see,1156378809 +131150,39183,06 Oscar Nominated Best Movie,1138744808 +131150,39234,movie to see,1154640063 +131150,39292,06 Oscar Nominated Best Movie,1138744970 +131150,39292,movie to see,1143770992 +131150,39307,movie to see,1233616982 +131150,39307,To See with Rachel,1190158210 +131150,39381,BGAB LRC,1271595780 +131150,39435,movie to see,1147552071 +131150,39446,movie to see,1233617189 +131150,40412,Bob*ola,1422237319 +131150,40412,MTSKAF,1372014121 +131150,40414,06 Oscar Nominated Best Movie - Animation,1143497699 +131150,40581,movie to see,1142475347 +131150,40583,BGAB LRC,1271596057 +131150,40629,Bob*ola,1422236279 +131150,40732,Bob*ola,1362100900 +131150,40819,Bob*ola,1422233257 +131150,40819,movie to see,1142475736 +131150,40851,movie to see,1229350672 +131150,40851,To See with Rachel,1190158424 +131150,40962,movie to see,1229089531 +131150,41285,Scarlett Johansson,1371976861 +131150,41566,movie to see,1153913433 +131150,41569,movie to see,1145487593 +131150,41571,Bob*ola,1362102658 +131150,41571,KAF,1323960587 +131150,41997,06 Oscar Nominated Best Movie,1138744992 +131150,41997,movie to see,1150803175 +131150,42018,BGAB LRC,1271595544 +131150,42163,Bob*ola,1422236997 +131150,42197,BGAB LRC,1271595311 +131150,42730,Wixom Library,1291732060 +131150,42732,BGAB LRC,1271595378 +131150,42738,Bob*ola,1362101659 +131150,43396,MTSKAF,1371938991 +131150,43560,movie to see,1233617038 +131150,43560,To See with Rachel,1190158350 +131150,43677,Movie to see 2,1291731276 +131150,43679,Bob*ola,1362091586 +131150,43684,BGAB LRC,1271595953 +131150,43917,movie to see,1154639944 +131150,43936,bg,1259501755 +131150,44004,Zooey Deschanel,1272369784 +131150,44191,movie to see,1218158232 +131150,44193,movie to see,1190572929 +131150,44193,To See with Rachel,1190557641 +131150,44204,06 Oscar Nominated Best Movie - Foreign Language,1143497659 +131150,44225,movie to see,1299645372 +131150,44665,KAF,1324994602 +131150,44761,KAF,1324994181 +131150,44974,BGAB LRC,1271595168 +131150,45074,Bob*ola,1362102313 +131150,45183,BGAB LRC,1271595793 +131150,45186,movie to see,1217732969 +131150,45361,sg,1259504853 +131150,45442,Bob*ola,1362099598 +131150,45672,KAF,1330198324 +131150,45722,Bob*ola,1362099525 +131150,45728,BGAB LRC,1271594653 +131150,45728,Bob*ola,1362090947 +131150,45728,Comedy Need to See,1404296950 +131150,45728,KAF,1330197730 +131150,45732,KAF,1330199731 +131150,45732,movie to see,1299809923 +131150,45928,MTSKAF,1371939010 +131150,45950,sg,1259504878 +131150,46972,movie to see,1190572923 +131150,46976,movie to see,1190572865 +131150,47099,movie to see,1190571929 +131150,47124,movie to see,1229350565 +131150,47200,movie to see,1228442787 +131150,47423,BGAB LRC,1271595154 +131150,47465,BGAB LRC,1271596101 +131150,47516,To See with Rachel,1190157931 +131150,47518,Bob*ola,1362089774 +131150,47518,Comedy Need to See,1404297441 +131150,47518,KAF,1323961671 +131150,47518,movie to see hd,1310247083 +131150,47518,sg,1259502741 +131150,47610,BGAB LRC,1271595194 +131150,47610,Bob*ola,1362101198 +131150,47610,movie to see,1190572847 +131150,47629,BGAB LRC,1271595863 +131150,47629,Bob*ola,1362100694 +131150,47629,KAF,1330199890 +131150,47629,movie to see,1232149502 +131150,47640,KAF,1330197969 +131150,47642,To see with Rachel,1190158582 +131150,47894,BGAB LRC,1271596190 +131150,48043,BGAB LRC,1271594933 +131150,48043,movie to see,1190572545 +131150,48161,movie to see,1190572521 +131150,48304,BGAB LRC,1271593110 +131150,48304,Bob*ola,1362090084 +131150,48304,KAF,1323962431 +131150,48304,movie to see,1233425039 +131150,48319,Bob*ola,1362091728 +131150,48319,Movie to see 2,1291731917 +131150,48319,movie to see hd,1310255180 +131150,48322,movie to see,1190572913 +131150,48326,sg,1259503425 +131150,48385,BGAB LRC,1271594567 +131150,48385,movie to see,1199026366 +131150,48412,movie to see,1190572886 +131150,48414,movie to see,1190572893 +131150,48598,BGAB LRC,1271595225 +131150,48696,BGAB LRC,1271595425 +131150,48738,BGAB LRC,1271595364 +131150,48774,movie to see,1233425061 +131150,48783,BGAB LRC,1271594895 +131150,48856,BGAB LRC,1271595141 +131150,48877,movie to see,1233617195 +131150,48982,movie to see,1190572541 +131150,48997,BGAB LRC,1271595701 +131150,49130,movie to see,1190596286 +131150,49272,movie to see,1229350612 +131150,49274,movie to see,1190571378 +131150,49278,movie to see,1190572537 +131150,49286,Bob*ola,1362092556 +131150,49286,KAF,1323963828 +131150,49286,movie to see hd,1310255435 +131150,49314,Bob*ola,1362092131 +131150,49314,KAF,1323963744 +131150,49347,KAF,1323960340 +131150,49528,Bob*ola,1362101598 +131150,49530,movie to see,1190572283 +131150,49647,movie to see,1190572903 +131150,49651,movie to see,1190572526 +131150,49772,BGAB LRC,1271595672 +131150,49793,movie to see,1191666082 +131150,49822,movie to see,1190572718 +131150,49910,movie to see,1190572842 +131150,49961,BGAB LRC,1271595622 +131150,50066,BGAB LRC,1271596046 +131150,50068,BGAB LRC,1271595409 +131150,50068,Bob*ola,1362098915 +131150,50068,movie to see,1229800469 +131150,50068,movie to see hd,1310255592 +131150,50160,BGAB LRC,1271595531 +131150,50440,Bob*ola,1362099658 +131150,50442,sg,1259503480 +131150,50601,movie to see,1191665965 +131150,50601,To See with Rachel,1190158432 +131150,50601,Zooey Deschanel,1272369759 +131150,50685,BGAB LRC,1271596147 +131150,50685,movie to see,1199026733 +131150,50740,MTSKAF,1372014324 +131150,50800,movie to see,1190572964 +131150,50802,movie to see,1190572877 +131150,50851,Bob*ola,1422236004 +131150,50872,movie to see,1217732986 +131150,51077,movie to see,1190572943 +131150,51080,BGAB LRC,1271594594 +131150,51082,BGAB LRC,1271594703 +131150,51086,movie to see,1190572947 +131150,51091,BGAB LRC,1271594552 +131150,51091,Bob*ola,1362090482 +131150,51091,KAF,1330198003 +131150,51091,movie to see hd,1310247300 +131150,51255,BGAB LRC,1271595179 +131150,51255,movie to see,1190572726 +131150,51412,Bob*ola,1362099244 +131150,51471,BGAB LRC,1271593079 +131150,51540,BGAB LRC,1271596200 +131150,51540,Bob*ola,1362101962 +131150,51575,movie to see,1218158249 +131150,51662,movie to see,1218590567 +131150,51662,sg,1259501881 +131150,51698,movie to see,1229350530 +131150,51884,BGAB LRC,1271595592 +131150,51903,movie to see,1190571937 +131150,51905,Bob*ola,1424008468 +131150,51905,Watch with kids,1424008468 +131150,51925,movie to see,1190572881 +131150,51933,BGAB LRC,1271595734 +131150,51935,movie to see,1190572933 +131150,52245,movie to see,1190572897 +131150,52287,movie to see,1190572917 +131150,52448,BGAB LRC,1271595124 +131150,52458,movie to see,1191666049 +131150,52460,Bob*ola,1362099404 +131150,52460,KAF,1330199696 +131150,52545,BGAB LRC,1271595820 +131150,52604,BGAB LRC,1271592947 +131150,52724,movie to see,1191666065 +131150,52952,Bob*ola,1422237242 +131150,52967,BGAB LRC,1271593276 +131150,52973,movie to see,1190572853 +131150,52975,movie to see,1199026718 +131150,53000,KAF,1323961412 +131150,53000,movie to see,1190572282 +131150,53000,movie to see hd,1310246989 +131150,53004,movie to see,1190571566 +131150,53121,movie to see,1190572937 +131150,53123,BGAB LRC,1271595659 +131150,53125,Bob*ola,1362099515 +131150,53207,KAF,1330197746 +131150,53322,movie to see,1190571910 +131150,53460,movie to see,1190571390 +131150,53460,Zooey Deschanel,1272369850 +131150,53464,movie to see,1190571847 +131150,53466,movie to see,1233616921 +131150,53519,BGAB LRC,1271594746 +131150,53519,Bob*ola,1362091311 +131150,53519,movie to see hd,1310247721 +131150,53550,BGAB LRC,1271595875 +131150,53550,Bob*ola,1362099968 +131150,53550,KAF,1330199954 +131150,53569,BGAB LRC,1271593056 +131150,53894,movie to see,1190571930 +131150,53953,movie to see,1191665940 +131150,53972,movie to see,1190572859 +131150,53993,movie to see,1190572951 +131150,53996,movie to see,1190572870 +131150,53999,Bob*ola,1362090650 +131150,54001,MTSKAF,1371938603 +131150,54004,movie to see,1199026609 +131150,54190,BGAB LRC,1271592988 +131150,54190,sg,1259502769 +131150,54256,movie to see,1229089434 +131150,54259,movie to see,1199026805 +131150,54272,movie to see,1190571930 +131150,54276,Bob*ola,1362102520 +131150,54281,movie to see,1217730168 +131150,54286,movie to see,1217733020 +131150,54290,Bob*ola,1362090565 +131150,54503,movie to see,1199026766 +131150,54513,BGAB LRC,1271596068 +131150,54612,BGAB LRC,1271595892 +131150,54732,KAF,1330197921 +131150,54732,movie to see,1199026695 +131150,54736,movie to see,1217731008 +131150,54775,Bob*ola,1362101818 +131150,54780,movie to see,1217731026 +131150,54785,Bob*ola,1362092082 +131150,54787,Bob*ola,1362091296 +131150,54787,movie to see hd,1310247701 +131150,54995,BGAB LRC,1271595716 +131150,54995,Bob*ola,1362099579 +131150,54995,KAF,1330199992 +131150,54997,movie to see,1217730923 +131150,54999,Bob*ola,1362100188 +131150,55071,BGAB LRC,1271595608 +131150,55080,BGAB LRC,1271594582 +131150,55080,Bob*ola,1362100791 +131150,55245,KAF,1323963535 +131150,55247,movie to see,1218590693 +131150,55250,Bob*ola,1362101115 +131150,55250,movie to see,1230499734 +131150,55267,movie to see,1218590654 +131150,55269,BGAB LRC,1271594732 +131150,55272,Bob*ola,1362101855 +131150,55276,BGAB LRC,1271595517 +131150,55276,movie to see,1232149445 +131150,55280,BGAB LRC,1271595346 +131150,55280,Bob*ola,1422236574 +131150,55280,MTSKAF,1371938707 +131150,55282,KAF,1323961522 +131150,55282,movie to see hd,1310247013 +131150,55290,BGAB LRC,1271595107 +131150,55290,Bob*ola,1362091964 +131150,55440,BGAB LRC,1271596381 +131150,55440,Bob*ola,1362091615 +131150,55440,movie to see hd,1310255071 +131150,55444,Bob*ola,1422237167 +131150,55444,movie to see,1217730185 +131150,55577,movie to see,1233617201 +131150,55732,BGAB LRC,1271595456 +131150,55768,movie to see,1199026677 +131150,55805,movie to see,1217730750 +131150,55830,BGAB LRC,1271594506 +131150,55830,Bob*ola,1362090442 +131150,55830,KAF,1330197944 +131150,55830,movie to see hd,1310247266 +131150,55851,BGAB LRC,1271594687 +131150,55872,KAF,1330197842 +131150,55908,MTSKAF,1371938903 +131150,55955,movie to see,1226795055 +131150,55995,movie to see,1199026591 +131150,55999,movie to see,1199026653 +131150,56145,movie to see,1226795413 +131150,56156,movie to see,1199026786 +131150,56169,Bob*ola,1362090178 +131150,56169,KAF,1323962901 +131150,56169,movie to see hd,1310247180 +131150,56171,movie to see,1233617001 +131150,56251,BGAB LRC,1271595075 +131150,56286,BGAB LRC,1271595209 +131150,56333,BGAB LRC,1271595905 +131150,56587,movie to see,1217733035 +131150,56607,BGAB LRC,1271595327 +131150,56607,movie to see,1299809867 +131150,56671,Zooey Deschanel,1272369767 +131150,56715,Bob*ola,1422236234 +131150,56757,BGAB LRC,1271596035 +131150,56757,Bob*ola,1362100558 +131150,56757,movie to see,1230499550 +131150,56775,movie to see,1217730790 +131150,56805,Bob*ola,1362101797 +131150,56805,Comedy Need to See,1404297382 +131150,56885,movie to see,1217731480 +131150,56915,Bob*ola,1362172768 +131150,56915,movie to see,1299645675 +131150,56941,BGAB LRC,1271595806 +131150,56945,movie to see,1228442902 +131150,56949,movie to see,1230499622 +131150,57370,movie to see,1232149349 +131150,57453,BGAB LRC,1271593255 +131150,57526,movie to see,1217730463 +131150,57532,movie to see,1219108133 +131150,57640,Bob*ola,1362092171 +131150,57640,KAF,1323963799 +131150,57640,movie to see,1229089577 +131150,57655,BGAB LRC,1271595295 +131150,57669,movie to see,1217730225 +131150,57951,movie to see,1217730209 +131150,58025,movie to see,1219108109 +131150,58047,movie to see,1219108100 +131150,58105,movie to see,1217731500 +131150,58156,Comedy Need to See,1404297362 +131150,58156,movie to see,1219108145 +131150,58191,movie to see,1232149097 +131150,58291,movie to see,1217730447 +131150,58293,movie to see,1218590556 +131150,58295,movie to see,1217730375 +131150,58297,Bob*ola,1362091400 +131150,58297,movie to see hd,1310247758 +131150,58309,BGAB LRC,1271596165 +131150,58559,movie to see,1226795319 +131150,58627,Bob*ola,1362099213 +131150,58655,movie to see,1219108084 +131150,58803,movie to see,1217730708 +131150,58839,Bob*ola,1362092944 +131150,58839,KAF,1330200020 +131150,58839,movie to see,1219108121 +131150,58839,movie to see hd,1310255543 +131150,59016,Bob*ola,1362100502 +131150,59018,BGAB LRC,1271596279 +131150,59018,Bob*ola,1362101351 +131150,59018,movie to see,1229089545 +131150,59022,movie to see,1217730562 +131150,59037,movie to see,1218590583 +131150,59118,movie to see,1233617116 +131150,59126,BGAB LRC,1271596496 +131150,59141,movie to see,1218590617 +131150,59256,movie to see,1228442752 +131150,59295,movie to see,1230499609 +131150,59306,Bob*ola,1362099843 +131150,59315,movie to see,1219108240 +131150,59333,movie to see,1229089500 +131150,59336,BGAB LRC,1271596509 +131150,59336,movie to see,1218590602 +131150,59369,movie to see,1232149489 +131150,59387,BGAB LRC,1271594876 +131150,59387,Bob*ola,1422235100 +131150,59418,sg,1259504826 +131150,59421,movie to see,1217731515 +131150,59440,BGAB LRC,1271594533 +131150,59501,movie to see,1228443003 +131150,59615,movie to see,1229089489 +131150,59727,Bob*ola,1362101322 +131150,59727,movie to see,1229801195 +131150,59731,Bob*ola,1362090462 +131150,59731,movie to see,1229089591 +131150,59784,movie to see,1217730323 +131150,59900,movie to see,1217730480 +131150,60037,Bob*ola,1362101155 +131150,60037,Zooey Deschanel,1272369855 +131150,60040,movie to see,1226795230 +131150,60069,movie to see,1226795177 +131150,60072,movie to see,1226795336 +131150,60074,movie to see,1219108250 +131150,60126,Bob*ola,1362091886 +131150,60126,KAF,1323963453 +131150,60126,movie to see,1226795080 +131150,60289,movie to see,1229800456 +131150,60291,Bob*ola,1422237394 +131150,60291,movie to see,1229089422 +131150,60514,movie to see,1228443029 +131150,60516,movie to see,1230499689 +131150,60599,Zooey Deschanel,1272369747 +131150,60756,Comedy Need to See,1404296980 +131150,60756,KAF,1330199932 +131150,60756,movie to see,1228442713 +131150,60756,Sundays at Tiffany's,1362100467 +131150,60766,BGAB LRC,1271595442 +131150,60939,movie to see,1233425127 +131150,60943,movie to see,1233617147 +131150,60948,BGAB LRC,1271596539 +131150,60950,Bob*ola,1362101721 +131150,60950,movie to see,1233425019 +131150,61075,BGAB LRC,1271596564 +131150,61132,movie to see,1226795299 +131150,61250,Bob*ola,1362100682 +131150,61250,KAF,1330199911 +131150,61250,movie to see,1229800483 +131150,61262,Bob*ola,1362099058 +131150,61262,KAF,1330199674 +131150,61267,movie to see,1230499673 +131150,61323,movie to see,1229350738 +131150,61350,Bob*ola,1362090351 +131150,61350,KAF,1323962946 +131150,61350,movie to see hd,1310247226 +131150,61697,movie to see,1232149235 +131150,61705,KAF,1323963853 +131150,61729,movie to see,1229350586 +131150,61941,BGAB LRC,1271596264 +131150,61986,movie to see,1232149546 +131150,61991,Bob*ola,1362099043 +131150,62137,Bob*ola,1362102534 +131150,62293,BGAB LRC,1271596250 +131150,62376,movie to see,1233617167 +131150,62394,Bob*ola,1362098995 +131150,62394,movie to see,1226795285 +131150,62434,movie to see,1233617088 +131150,62439,Bob*ola,1362102595 +131150,62439,KAF,1323960663 +131150,62553,movie to see,1233617020 +131150,62577,Bob*ola,1362091656 +131150,62577,KAF,1323963349 +131150,62577,movie to see,1300494719 +131150,62577,movie to see hd,1310255100 +131150,62586,movie to see,1232149333 +131150,62792,Bob*ola,1362099640 +131150,62792,movie to see,1232149155 +131150,62799,Bob*ola,1362101099 +131150,62799,Netflix DVD,1291649882 +131150,62956,movie to see,1230499644 +131150,62970,Zooey Deschanel,1272369792 +131150,63062,movie to see,1230499481 +131150,63082,movie to see,1232149269 +131150,63113,BGAB LRC,1271596595 +131150,63113,Bob*ola,1362099887 +131150,63131,movie to see,1229380134 +131150,63436,movie to see,1233617206 +131150,63479,Bob*ola,1362100153 +131150,63481,BGAB LRC,1271596462 +131150,63853,Bob*ola,1362090151 +131150,63853,KAF,1323962601 +131150,63853,movie to see hd,1310247155 +131150,63859,movie to see,1232149565 +131150,63876,movie to see,1229350693 +131150,64116,movie to see,1233424996 +131150,64231,KAF,1332201593 +131150,64249,movie to see,1229089514 +131150,64575,movie to see,1233617072 +131150,64622,movie to see,1232851254 +131150,64839,movie to see,1232149301 +131150,64957,movie to see,1232149288 +131150,65001,BGAB LRC,1271594669 +131150,65126,KAF,1330198270 +131150,65130,movie to see,1232149065 +131150,65216,movie to see,1232149579 +131150,65465,BGAB LRC,1271596523 +131150,65514,MTSKAF,1371938643 +131150,65567,Bob*ola,1362099339 +131150,65567,KAF,1330199771 +131150,65601,Bob*ola,1362099109 +131150,65682,Bob*ola,1362101665 +131150,65802,family friendly,1389107673 +131150,66130,KAF,1330198254 +131150,66198,Bob*ola,1362101215 +131150,66659,Bob*ola,1362101626 +131150,67138,Zooey Deschanel,1272369773 +131150,67255,movie to see,1300494961 +131150,67255,Wixom Library,1291645144 +131150,67361,Bob*ola,1362091460 +131150,67534,Comedy Need to See,1404297463 +131150,67734,Bob*ola,1362089810 +131150,67734,Comedy Need to See,1404297251 +131150,67867,Bob*ola,1362091425 +131150,67867,KAF,1323963259 +131150,67997,MTSKAF,1371938629 +131150,68073,KAF,1330199569 +131150,68073,Wixom Library,1291644628 +131150,68319,movie to see,1300495014 +131150,68536,BGAB LRC,1271595988 +131150,68552,KAF,1330198345 +131150,68901,KAF,1330198286 +131150,69253,Bob*ola,1362102560 +131150,69406,Alaska,1262807757 +131150,69526,Bob*ola,1362101523 +131150,69757,Zooey Deschanel,1272369742 +131150,69784,Bob*ola,1362090618 +131150,69844,MTSKAF,1372209999 +131150,70159,BGAB LRC,1271596231 +131150,70567,movie to see hd,1310246176 +131150,70597,Zooey Deschanel,1272369815 +131150,70728,KAF,1330198070 +131150,70984,Bob*ola,1362100573 +131150,71069,Bob*ola,1362092057 +131150,71129,KAF,1330198628 +131150,71325,Wixom Library,1291644356 +131150,71518,Wixom Library,1291644425 +131150,71533,Bob*ola,1362099264 +131150,71619,Wixom Library,1291644573 +131150,71745,Wixom Library,1291644700 +131150,71876,Wixom Library,1291644533 +131150,71899,Bob*ola,1362098980 +131150,71899,movie to see,1299809901 +131150,72043,Bob*ola,1362099076 +131150,72167,Bob*ola,1362090547 +131150,72167,Wixom Library,1291644860 +131150,72228,KAF,1330198542 +131150,72405,Bob*ola,1362100616 +131150,73027,Wixom Library,1291645268 +131150,73135,Zooey Deschanel,1272369866 +131150,73168,KAF,1330198170 +131150,73266,Comedy Need to See,1404297643 +131150,73323,Bob*ola,1362102326 +131150,73323,KAF,1323961077 +131150,74131,Wixom Library,1291645002 +131150,74324,Bob*ola,1422235155 +131150,74452,Bob*ola,1362101385 +131150,74452,KAF,1330199806 +131150,74452,movie to see,1299810088 +131150,74452,Wixom Library,1291645085 +131150,74508,MTSKAF,1372014284 +131150,74685,Bob*ola,1362100865 +131150,74685,KAF,1330199861 +131150,74685,movie to see,1299810056 +131150,74698,Wixom Library,1291645190 +131150,74789,KAF,1323962262 +131150,74789,movie to see,1299809740 +131150,74944,Bob*ola,1362090584 +131150,74944,KAF,1330198091 +131150,74944,movie to see,1299809766 +131150,74944,movie to see hd,1310247433 +131150,75351,BGAB LRC,1271596211 +131150,75440,Bob*ola,1362101886 +131150,75985,Bob*ola,1362099955 +131150,75985,movie to see hd,1310246932 +131150,75985,Wixom Library,1291645236 +131150,76079,wixom library,1291645431 +131150,76175,Bob*ola,1362090919 +131150,76175,KAF,1330198308 +131150,76175,movie to see,1299809794 +131150,77349,KAF,1330197820 +131150,77364,Wixom Library,1291645513 +131150,77421,KAF,1330198419 +131150,77672,KAF,1324994273 +131150,77800,Comedy Need to See,1404297699 +131150,77837,Bob*ola,1362102180 +131150,77837,KAF,1323961196 +131150,77846,Bob*ola,1422236651 +131150,78316,Bob*ola,1362172741 +131150,78316,movie to see,1299645460 +131150,79008,Bob*ola,1422237498 +131150,79008,MTSKAF,1371938806 +131150,79720,movie to see hd,1310246510 +131150,79796,Bob*ola,1362090713 +131150,79897,Bob*ola,1362102844 +131150,80126,movie to see,1299645582 +131150,80166,Bob*ola,1362101417 +131150,80549,Bob*ola,1362172846 +131150,80549,movie to see,1299645433 +131150,80586,Bob*ola,1362102855 +131150,80586,KAF,1323960370 +131150,80615,KAF,1323960482 +131150,80615,movie to see,1299645514 +131150,80693,Comedy Need to See,1404297654 +131150,80831,Bob*ola,1362098896 +131150,80839,Bob*ola,1362172820 +131150,80839,movie to see,1299645542 +131150,80860,KAF,1323960517 +131150,80939,movie to see,1299645411 +131150,80969,Bob*ola,1362102577 +131150,81191,Bob*ola,1362172801 +131150,81191,movie to see,1299645622 +131150,81427,KAF,1330198026 +131150,81535,Bob*ola,1362102472 +131150,81535,movie to see,1299645487 +131150,81564,Bob*ola,1362102677 +131150,81591,KAF,1323960231 +131150,81845,Bob*ola,1362101241 +131150,81845,KAF,1330199831 +131150,82095,Bob*ola,1362100016 +131150,82143,Bob*ola,1422235363 +131150,82461,Bob*ola,1362101538 +131150,82534,Bob*ola,1362101404 +131150,83134,Bob*ola,1362101586 +131150,83910,KAF,1323961122 +131150,84374,KAF,1323960782 +131150,84772,Comedy Need to See,1404297086 +131150,84944,Bob*ola,1362099900 +131150,85056,Bob*ola,1362092607 +131150,85397,MTSKAF,1371938790 +131150,85401,Comedy Need to See,1404297617 +131150,85510,KAF,1323961006 +131150,85788,Bob*ola,1362092666 +131150,86059,Bob*ola,1362102786 +131150,86298,Bob*ola,1362099995 +131150,86298,KAF,1323960916 +131150,86548,Bob*ola,1362101839 +131150,86628,Bob*ola,1362092797 +131150,86852,Bob*ola,1362100740 +131150,86880,Bob*ola,1362099541 +131150,87234,KAF,1330198778 +131150,87298,Comedy Need to See,1404297598 +131150,87304,KAF,1330198487 +131150,87529,Bob*ola,1362101946 +131150,87876,Bob*ola,1362090669 +131150,88515,Bob*ola,1362090521 +131150,88810,Bob*ola,1422229489 +131150,89030,Bob*ola,1362091861 +131150,89047,KAF,1330198596 +131150,89074,Bob*ola,1362102820 +131150,89074,KAF,1323960422 +131150,89321,KAF,1330198823 +131150,89490,KAF,1330198756 +131150,90154,Bob*ola,1362100638 +131150,90374,KAF,1330198662 +131150,90376,KAF,1330198884 +131150,90382,Bob*ola,1362100713 +131150,90746,Bob*ola,1362102298 +131150,91010,KAF,1330198461 +131150,91094,Bob*ola,1362102251 +131150,91290,KAF,1330198708 +131150,91323,Comedy Need to See,1404297690 +131150,91386,Bob*ola,1362102800 +131150,91628,Bob*ola,1362099230 +131150,91628,MTSKAF,1372283614 +131150,91972,Bob*ola,1362100655 +131150,92008,MTSKAF,1372534822 +131150,92259,MTSKAF,1372182563 +131150,92391,Bob*ola,1362092021 +131150,92448,Bob*ola,1362102984 +131150,92448,KAF,1330198953 +131150,92719,Comedy Need to See,1404297304 +131150,93270,Bob*ola,1362099770 +131150,93297,Bob*ola,1362089794 +131150,93766,Bob*ola,1362101927 +131150,93855,Bob*ola,1362091941 +131150,94777,Bob*ola,1362099011 +131150,94959,Bob*ola,1362102078 +131150,94965,Bob*ola,1362101479 +131150,95558,Bob*ola,1362102157 +131150,95695,Bob*ola,1362091632 +131150,96655,MTSKAF,1372283965 +131150,96691,Bob*ola,1362102096 +131150,97232,MTSKAF,1372283406 +131150,98087,Comedy Need to See,1404297419 +131150,98124,Bob*ola,1422236679 +131150,98369,Bob*ola,1362102116 +131150,99574,MTSKAF,1371938760 +131150,99813,Bob*ola,1422236542 +131150,99813,MTSKAF,1372013997 +131150,99910,MTSKAF,1372778093 +131150,100163,MTSKAF,1371938578 +131150,100302,MTSKAF,1372445716 +131150,100810,MTSKAF,1371938494 +131150,101285,MTSKAF,1372445686 +131150,101763,MTSKAF,1372534690 +131150,102051,MTSKAF,1372535252 +131150,102154,MTSKAF,1371945319 +131150,102278,MTSKAF,1372445852 +131150,102286,MTSKAF,1372182751 +131150,103042,MTSKAF,1372534897 +131150,103335,Bob*ola,1422229896 +131150,103341,Comedy Need to See,1404297274 +131150,103659,Bob*ola,1422229644 +131150,104241,Comedy Need to See,1404297288 +131150,105213,Comedy Need to See,1404297128 +131150,107348,Comedy Need to See,1404297315 +131150,107702,Comedy Need to See,1404297395 +131150,109374,2015 Academy Award Nomination BEST PICTURE,1422215128 +131150,109374,Academy Award Nominee,1422216285 +131150,110586,Bob*ola,1422237134 +131150,112175,2015 Academy Award Nomination ANIMATED FEATURE FILM,1422215882 +131150,112175,Academy Award Nominee,1422216428 +131150,112175,Bob*ola,1422229526 +131150,112183,2015 Academy Award Nomination BEST ACTOR,1422215578 +131150,112183,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1422215735 +131150,112183,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1422215812 +131150,112183,2015 Academy Award Nomination BEST PICTURE,1422215049 +131150,112183,Academy Award Nominee,1422216223 +131150,112290,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1422215725 +131150,112290,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1422215780 +131150,112290,2015 Academy Award Nomination BEST PICTURE,1422215083 +131150,112290,Academy Award Nominee,1422216233 +131150,112370,Bob*ola,1422237561 +131150,112552,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1422215753 +131150,112552,2015 Academy Award Nomination BEST PICTURE,1422215139 +131150,112552,Academy Award Nominee,1422216294 +131150,112556,2015 Academy Award Nomination BEST ACTRESS,1422215670 +131150,112556,Academy Award Nominee,1422216336 +131150,113705,2015 Academy Award Nomination BEST ACTRESS,1422215646 +131150,113705,Academy Award Nominee,1422216318 +131150,114180,Bob*ola,1422235128 +131150,114552,2015 Academy Award Nomination ANIMATED FEATURE FILM,1422215868 +131150,114552,Academy Award Nominee,1422216413 +131150,114554,2015 Academy Award Nomination ANIMATED FEATURE FILM,1422215909 +131150,114554,Academy Award Nominee,1422216402 +131150,114662,2015 Academy Award Nomination BEST ACTOR,1422215533 +131150,114662,2015 Academy Award Nomination BEST PICTURE,1422215029 +131150,114662,Academy Award Nominee,1422216210 +131150,115170,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1422215709 +131150,115170,Academy Award Nominee,1422216355 +131150,115617,2015 Academy Award Nomination ANIMATED FEATURE FILM,1422215859 +131150,115617,Academy Award Nominee,1422216381 +131150,116161,2015 Academy Award Nomination BEST ACTOR,1422215521 +131150,116161,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1422215743 +131150,116161,Academy Award Nominee,1422216303 +131150,116797,2015 Academy Award Nomination BEST ACTOR,1422215554 +131150,116797,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1422215800 +131150,116797,2015 Academy Award Nomination BEST PICTURE,1422215061 +131150,116797,Academy Award Nominee,1422216241 +131150,116797,Bob*ola,1422235332 +131150,117176,2015 Academy Award Nomination BEST ACTOR,1422215596 +131150,117176,2015 Academy Award Nomination BEST ACTRESS,1422215629 +131150,117176,2015 Academy Award Nomination BEST PICTURE,1422215108 +131150,117176,Academy Award Nominee,1422216262 +131150,117444,2015 Academy Award Nomination ANIMATED FEATURE FILM,1422215893 +131150,117444,Academy Award Nominee,1422216389 +131150,117881,2015 Academy Award Nomination BEST ACTRESS,1422215659 +131150,117881,Academy Award Nominee,1422216328 +131150,118700,2015 Academy Award Nomination BEST PICTURE,1422215071 +131150,118700,Academy Award Nominee,1422216251 +131150,118900,2015 Academy Award Nomination BEST ACTRESS,1422215680 +131150,118900,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1422215789 +131150,118900,Academy Award Nominee,1422216344 +131150,118997,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1422215828 +131150,118997,Academy Award Nominee,1422216371 +131159,47,terrible ending,1287967616 +131159,110,Owned,1287968169 +131159,231,stupid,1287967611 +131159,339,owned,1197179357 +131159,356,Owned,1287968164 +131159,539,owned,1287967854 +131159,953,Owned,1287968180 +131159,1197,fun,1287967770 +131159,1265,Owned,1287968178 +131159,1704,owned,1287968176 +131159,2398,Owned,1287968197 +131159,3360,owned,1287968179 +131159,3578,Owned,1287967842 +131159,40629,owned,1287968199 +131159,80358,Christianity,1289401982 +131159,80358,searching for god,1289401982 +131159,80463,true story,1287966784 +131159,80693,coming of age,1287966701 +131159,80693,depression,1287966701 +131159,80693,funny,1287966701 +131159,80693,mental illness,1287966701 +131159,80693,suicide,1287966700 +131187,260,classic sci-fi,1436389321 +131187,260,fantasy,1436389352 +131187,260,good vs evil,1436389331 +131187,356,drama,1436463826 +131187,356,journey,1436463826 +131187,356,political,1436463826 +131245,374,parents,1186079168 +131245,546,Luigi Mario,1186079105 +131245,1298,Musical,1186079041 +131245,1717,unknown calls,1186078490 +131245,2096,classic,1186078977 +131245,2431,doctors,1186078987 +131245,2953,Christmas,1186078629 +131245,4270,Ancient Egypt,1186078430 +131245,4367,adventure,1186078650 +131245,4446,CGI,1186079003 +131245,4975,cryogenics,1186078562 +131245,6157,Marvel,1186079229 +131245,6373,God,1186079028 +131245,6870,drama,1186078680 +131245,7373,monsters hunter,1186079259 +131248,3441,war,1139985965 +131248,4223,War,1139986147 +131248,4223,WWII,1139986147 +131248,4310,War,1139986089 +131248,7980,war,1139985935 +131248,40278,war,1139986032 +131255,84952,revenge,1434391724 +131255,84952,vengeance,1434391718 +131282,260,Oscar (Best Costume Design),1433656013 +131282,260,sci-fi,1433655972 +131295,260,hhh,1440088876 +131295,260,woaa,1440088867 +131307,260,George Lucas,1443299260 +131307,260,sci-fi,1443299246 +131323,1827,documentary,1171666084 +131323,8873,politics,1171667841 +131323,33903,idealism,1171667714 +131323,33903,politics,1171667714 +131323,44191,idealism,1171667020 +131323,44191,politics,1171667008 +131335,356,comedy/drama,1440394586 +131335,356,drama,1440394570 +131335,356,tom hanks,1440394563 +131335,48516,Leonardo DiCaprio,1440394629 +131335,48516,Martin Scorsese,1440394642 +131335,48516,organized crime,1440394624 +131345,1769,guns,1193836948 +131345,4640,yakuza,1194271845 +131345,7022,nice story,1193839679 +131360,47,philosophical,1284962648 +131360,47,religion,1284962644 +131360,47,twist ending,1284962640 +131360,1552,Nicolas Cage,1284965178 +131360,1552,prison,1284965196 +131360,1625,Mystery,1287032987 +131360,1625,twist ending,1287032983 +131360,1748,dark,1297758474 +131360,1748,dark fantasy,1297758470 +131360,1748,dystopia,1297758462 +131360,1748,mindfuck,1297758464 +131360,1748,Post apocalyptic,1297758467 +131360,1748,sci-fi,1297758477 +131360,1748,stylized,1297758476 +131360,1748,surreal,1297758465 +131360,1748,thought-provoking,1297758466 +131360,2028,war,1284963916 +131360,2028,World War II,1284963906 +131360,2502,comedy,1284961938 +131360,2502,mike judge,1284961941 +131360,2502,off-beat comedy,1284961953 +131360,2502,office,1284961955 +131360,2571,artificial intelligence,1284961917 +131360,2571,computers,1284961918 +131360,2571,sci-fi,1284961911 +131360,2571,surreal,1284961913 +131360,2571,virtual reality,1284961907 +131360,2959,dark comedy,1284962002 +131360,2959,disturbing,1284962004 +131360,2959,surreal,1284961993 +131360,2959,twist ending,1284961999 +131360,3578,revenge,1297758403 +131360,3578,Rome,1284962315 +131360,3578,stylized,1284962312 +131360,5903,post-apocalyptic,1286510485 +131360,6502,low budget,1284962568 +131360,6502,post-apocalyptic,1284962565 +131360,6502,romance,1284962577 +131360,6502,visually appealing,1284962573 +131360,6902,mindfuck,1286509754 +131360,8529,funny,1287033020 +131360,8529,Tom Hanks,1287033018 +131360,8874,black comedy,1297758437 +131360,8874,parody,1284962500 +131360,8874,spoof,1284962497 +131360,8874,zombies,1284962495 +131360,34048,aliens,1284964406 +131360,34048,cliche,1284964419 +131360,34048,H.G. Wells,1284964412 +131360,34048,remake,1284964414 +131360,34048,Steven Spielberg,1284964409 +131360,34048,Tom Cruise,1284964408 +131360,34319,dystopia,1297828508 +131360,34319,future,1297828524 +131360,34319,sci-fi,1297828512 +131360,34319,surprise ending,1297828514 +131360,34319,thriller,1297828515 +131360,44191,dark,1297758350 +131360,44191,dystopia,1297758341 +131360,44191,thought-provoking,1297758343 +131360,44665,Bruce Willis,1284962615 +131360,44665,guilty pleasure,1297758423 +131360,44665,Morgan Freeman,1284962608 +131360,44665,Revenge,1284962610 +131360,44665,twist ending,1284962611 +131360,47200,best movie ever,1284964116 +131360,47200,Jason Statham,1284964093 +131360,47200,stupid,1284964101 +131360,47200,videogame like,1284964098 +131360,47610,surprise ending,1286509438 +131360,47610,twist ending,1286509434 +131360,48780,twist ending,1284962670 +131360,49530,South Africa,1297758370 +131360,58332,"""found footage""",1284962191 +131360,58332,horror,1284962195 +131360,58332,zombies,1284962187 +131360,59315,afghanistan,1284963524 +131360,59315,Robert Downey Jr.,1284963516 +131360,59315,torture,1297758419 +131360,59727,tense,1284964225 +131360,60072,Morgan Freeman,1286510229 +131360,60072,plot twist,1286510225 +131360,66509,Adam Sandler,1284964021 +131360,66509,Seth Rogen,1284964029 +131360,66509,stand-up comedy,1284964025 +131360,68157,assassination,1297758411 +131360,68157,Brad Pitt,1284963944 +131360,68157,gore,1284963950 +131360,68157,World War II,1284963945 +131360,69122,comedy,1284965029 +131360,69122,one liners,1284965033 +131360,71379,ending,1284964258 +131360,71379,low budget,1284964248 +131360,71379,original ending,1284964255 +131360,71535,horror,1284962529 +131360,71535,parody,1284962542 +131360,71535,post-apocalyptic,1284962525 +131360,71535,short,1284962544 +131360,71535,zombies,1284962520 +131360,73017,Atmospheric,1284965137 +131360,73017,Jude Law,1284965130 +131360,73017,murder,1284965140 +131360,73017,mystery,1284965140 +131360,73017,Robert Downey Jr.,1284965132 +131360,74532,Bruce Willis,1284963836 +131360,74532,jealousy,1284963846 +131360,74532,Tracy Morgan,1284963842 +131360,74685,thriller,1284962855 +131360,74685,virus,1284962851 +131360,74685,zombies,1284962851 +131360,74795,Iraq War,1284962383 +131360,74795,Matt Damon,1284962389 +131360,74795,military,1284962385 +131360,74795,U.S. Army,1284962392 +131360,75985,biomedical ethics,1284964303 +131360,75985,evil corporation,1284964319 +131360,75985,illogical economics,1284964314 +131360,75985,Jude Law,1284964306 +131360,75985,surgery,1284964309 +131360,75985,twist ending,1284964303 +131360,76251,Nicolas Cage,1284963594 +131360,78349,mindfuck,1287033040 +131360,79132,alternate reality,1287033253 +131360,79132,mindfuck,1287033250 +131372,2710,low budget,1185839847 +131379,260,Jedi,1437969194 +131379,260,Star Wars,1437969189 +131381,260,fantasy,1440434019 +131381,260,supernatural powers,1440434026 +131384,1,classic,1190240465 +131384,1,Disney,1190240465 +131384,32,strong director,1190240495 +131384,47,evil,1190239970 +131384,47,Suspenseful,1190239970 +131384,316,overrated,1190240060 +131384,500,Robin Williams,1190240372 +131384,527,realism,1190239678 +131384,527,redemptive,1190239678 +131384,527,strong director,1190239696 +131384,588,Disney,1190239708 +131384,588,family comedy,1190239537 +131384,588,good versus evil,1190239537 +131384,588,musical,1190239537 +131384,608,offbeat humor,1190239857 +131384,608,strong director,1190239857 +131384,608,violent,1190239857 +131384,780,alien invasion,1190239382 +131384,780,ensemble cast,1190239382 +131384,780,patriotic,1190239382 +131384,858,strong director,1190239235 +131384,1073,better than the remake,1190240036 +131384,1073,classic,1190240036 +131384,1097,emotional,1190239752 +131384,1097,strong director,1190239752 +131384,1210,classic,1190239456 +131384,1210,strong director,1190239456 +131384,1923,overrated,1190240140 +131384,2683,consistent,1190239895 +131384,2683,obvious,1190239895 +131384,2716,Bill Murray,1190240095 +131384,2716,sci-fi,1190240106 +131384,2997,John Cusack,1190240208 +131384,2997,offbeat humor,1190240208 +131384,2997,original,1190240208 +131384,3897,earnest,1190240287 +131384,3897,great soundtrack,1190240287 +131384,3897,strong director,1190240287 +131384,4027,strong director,1190240157 +131384,4886,classic,1190239799 +131384,4886,disney,1190239799 +131384,4886,vivid characters,1190239799 +131384,5445,futuristic,1190240327 +131384,5445,strong director,1190240327 +131384,6377,classic,1190239610 +131384,6377,disney,1190239720 +131384,6377,fish,1190239611 +131384,6377,underwater,1190239611 +131384,6377,vivid characters,1190239610 +131384,6874,violent,1190239818 +131384,7438,violent,1190239264 +131384,46578,indie,1190240246 +131384,48516,strong director,1190239997 +131384,54272,could have been better,1190240124 +131384,54732,obvious,1190239937 +131394,1215,time travel,1207322339 +131394,3892,dissection,1207322399 +131394,3892,scary,1207322388 +131408,95441,bromantic comedy,1436186168 +131408,95441,Funny,1436186184 +131412,44199,Clever,1159923865 +131454,1220,classic,1206684800 +131454,8957,mindfuck,1206685962 +131474,68858,Italy,1244204774 +131478,30812,aviation,1445051463 +131478,30812,madness,1445051474 +131482,260,Classic,1440370126 +131482,260,must see,1440370142 +131517,4833,atmospheric,1354234860 +131538,260,sci-fi,1439829229 +131538,260,Star Wars,1439829240 +131539,1300,coming of age,1201598163 +131541,2716,comedy,1441115953 +131541,2716,supernatural,1441115937 +131541,128606,drama,1441115973 +131544,593,serial killer,1234860290 +131544,1373,not a goog movie,1234860265 +131550,5218,Excelente!,1137188293 +131550,8641,Péssimo,1137188222 +131564,260,"action, adventure",1435524494 +131589,260,Science Fiction,1441494920 +131589,260,space adventure,1441494928 +131589,260,space epic,1441494934 +131594,111759,alien invasion,1437159779 +131594,111759,time travel,1437159779 +131594,111759,war,1437159779 +131621,110,historical,1447843744 +131621,110,Medieval,1447843747 +131621,110,war,1447843749 +131621,1466,1970s,1447844057 +131621,1466,Al Pacino,1447844052 +131621,1466,Johnny Depp,1447844049 +131621,1466,Mafia,1447844048 +131621,1466,organized crime,1447844055 +131621,1954,boxing,1447844074 +131621,1954,classic,1447844088 +131621,1954,sports,1447844079 +131621,1954,Sylvester Stallone,1447844077 +131621,4993,beautifully filmed,1447843231 +131621,4993,epic adventure,1447843269 +131621,4993,fantasy,1447843226 +131621,4993,mythology,1447843248 +131621,4993,tolkien,1447843238 +131621,31658,animation,1447843932 +131621,31658,anime,1447843918 +131621,31658,romance,1447843922 +131621,91529,based on a comic,1447843570 +131621,91529,Batman,1447843515 +131621,91529,Christian Bale,1447843513 +131621,91529,superhero,1447843511 +131621,91529,Tom Hardy,1447843562 +131621,109487,Christopher Nolan,1447843185 +131621,109487,Matthew McConaughey,1447843194 +131621,109487,plot holes,1447843211 +131621,141688,gangster,1447843476 +131621,141688,Tom Hardy,1447843468 +131635,1103,Emerson must see,1199853597 +131635,4447,comedy,1206366103 +131679,597,prostitution,1198150364 +131701,318,thought-provoking,1432133291 +131701,858,Al Pacino,1432133430 +131701,858,classic,1432133445 +131701,858,Marlon Brando,1432133438 +131701,858,organized crime,1432133448 +131701,858,robert de niro,1432133434 +131701,5418,Franka Potente,1432133366 +131701,5418,thriller,1432133379 +131701,111759,action,1432133514 +131701,111759,time loop,1432133507 +131701,111759,time travel,1432133510 +131715,147835,Comedy,1448540340 +131727,1252,Exceptional Acting,1141836409 +131727,1252,Incest,1141836397 +131758,98122,crowd funded,1426176848 +131758,98122,documentary,1426176848 +131758,98122,video games,1426176848 +131811,56367,current,1202813095 +131818,665,crazy,1365583915 +131818,665,cynical,1365583962 +131818,665,great music,1365583886 +131818,665,unorthodox,1365583888 +131818,1900,realistic,1365584093 +131818,2360,masterpiece,1327484569 +131818,6666,meaningless,1366103354 +131818,26122,nudity,1366103159 +131818,27700,shallow,1365145040 +131818,48774,atmospheric,1366103558 +131818,48774,dystopia,1366103535 +131818,48774,sci-fi,1366103539 +131818,48774,social commentary,1366103563 +131818,86320,boring,1327483772 +131818,86320,dissapointing,1327483792 +131818,89470,disappointing,1326721588 +131820,81823,crime,1430427434 +131820,81823,revenge as motive,1430427434 +131820,81823,social drama,1430427434 +131820,139052,charlize theron,1437493921 +131820,139052,drama,1437493921 +131820,139052,murder,1437493921 +131837,608,based on a true story,1442046127 +131837,858,classic,1442046034 +131837,858,great acting,1442046040 +131837,858,masterpiece,1442046058 +131837,102125,action packed,1442045805 +131837,102125,humour,1442045798 +131837,102125,Marvel,1442045811 +131837,102125,Robert Downey Jr.,1442045764 +131851,52281,2 movies in 1,1180660243 +131855,1136,Comedy,1435725498 +131855,1136,Monty Python,1435725488 +131859,527,Steven Spielberg,1364555643 +131864,593,crime,1433377054 +131864,593,horror,1433377054 +131864,593,psycholgical thriller,1433377054 +131864,858,Mafia,1433376926 +131864,48516,organized Crime,1433376952 +131864,115569,Crime,1433383431 +131864,115569,Thriller,1433383435 +131864,127208,Fitness,1433376983 +131864,132796,Disaster,1433377167 +131864,132796,Doomsday,1433377176 +131864,132796,Thriller,1433377161 +131874,93855,grotesque,1424052588 +131874,93855,social criticism,1424052588 +131874,93855,violence,1424052588 +131893,318,drama,1426021357 +131893,318,feel-good,1426021357 +131893,318,prison escape,1426021357 +131893,480,adventure,1429645005 +131893,480,children,1429645005 +131893,480,dinosaurs,1429645005 +131893,1147,boxing,1376127524 +131893,1147,documentary,1376127532 +131893,1147,Muhammad Ali,1376127518 +131893,66203,Jennifer Aniston,1376683271 +131893,95939,ken loach,1375725091 +131893,95939,social realism,1375725070 +131893,95939,socialist,1375725080 +131893,99114,soundtrack,1361627011 +131893,102684,Black comedy,1376036588 +131893,102684,Hallucinatory,1376036613 +131893,102684,Muay thai,1376036631 +131893,102684,violence,1376036648 +131893,103341,aliens,1375703620 +131893,103341,cornetto trilogy,1375703485 +131893,103341,drinking,1375703485 +131893,103341,funny,1375703485 +131893,103341,good cast,1375703485 +131893,103341,pub crawl,1375703620 +131893,103341,satire,1375703485 +131906,260,hero's journey,1439773613 +131906,260,space opera,1439773583 +131924,296,shit my pans,1440949723 +131924,1193,crazy movie,1440949706 +131934,1201,Sergio Leone,1434357877 +131934,1201,spacious,1434357921 +131934,1209,ennio morricone,1434357783 +131934,1209,epic,1434357770 +131934,1267,Cold War,1434357850 +131934,1784,sappy,1434357731 +131934,3949,music,1434109899 +131939,32,dystopia,1438404895 +131939,32,time travel,1438404888 +131939,32,twist ending,1438404891 +131939,1214,alien series,1438205235 +131939,2232,bad acting,1435153789 +131939,116797,Computers,1438403624 +131939,116797,cryptography,1438403616 +131939,116797,World War II,1438403629 +131940,260,fairy tale,1433494914 +131940,260,quest,1433494925 +131940,356,feel good,1433495176 +131940,356,purpose in life,1433495176 +131940,356,social commentary,1433495176 +131960,260,classic,1438265111 +131960,260,jedi,1438265104 +131993,220,B Movie,1450066450 +131993,1130,80s video,1450058566 +131993,1241,aka Dead Alive,1447376847 +131993,1241,B Movie,1450066712 +131993,1255,B Movie,1450069750 +131993,1261,evil hand,1450071596 +131993,1673,Paul Thomas Anderson,1374805987 +131993,1719,grief,1432355062 +131993,1912,Steven Soderbergh,1374805412 +131993,1950,available at CML,1172694558 +131993,2360,Thomas Vinterberg,1374806437 +131993,2579,Netflix Streaming,1390887846 +131993,2606,evil hand,1450071575 +131993,2912,Steven Soderbergh,1374805446 +131993,2952,Paul Thomas Anderson,1374806056 +131993,3160,Paul Thomas Anderson,1374806082 +131993,3408,Steven Soderbergh,1374805499 +131993,3692,80s video,1450065709 +131993,3696,80s video,1450064371 +131993,4034,Steven Soderbergh,1374805478 +131993,4222,80s video,1450063893 +131993,4497,Bad Movie Nite,1450065284 +131993,4624,80s video,1450066685 +131993,4915,80s video,1450060382 +131993,4963,Steven Soderbergh,1374805531 +131993,5157,80s video,1450054843 +131993,5172,Steven Soderbergh,1374805568 +131993,5592,80s video,1450063911 +131993,5673,Paul Thomas Anderson,1374806122 +131993,5704,80s video,1450063744 +131993,5704,B Movie,1450063748 +131993,5881,Steven Soderbergh,1374805587 +131993,5919,80s video,1450065202 +131993,7156,editing to communicate theme,1452537430 +131993,7156,jump-cut editing,1452537316 +131993,7562,france,1453661897 +131993,7566,available at CML,1172694214 +131993,7989,80s video,1450058297 +131993,8168,80s video,1450059388 +131993,8854,80s video,1450058876 +131993,8855,80s video,1450058778 +131993,8984,Steven Soderbergh,1374805624 +131993,26510,80s video,1450056691 +131993,26510,star wars,1450056696 +131993,26542,Star Wars,1450059829 +131993,26558,80s video,1450064774 +131993,26629,80s video,1450065456 +131993,27834,available at CML,1172693683 +131993,33154,available at CML,1172694459 +131993,34437,Jim Jarmusch,1401033541 +131993,34552,isolation,1453356421 +131993,34552,tearjerker,1453356408 +131993,39234,female director,1453875127 +131993,42413,80s video,1450060036 +131993,42413,anthology,1450060050 +131993,44555,not at CML,1172694030 +131993,44937,available at CML,1172694433 +131993,45210,available at CML,1172694361 +131993,48043,not at CML,1172694410 +131993,49132,available at CML,1172694136 +131993,49817,animal protection,1450059980 +131993,49817,animated,1450059965 +131993,49817,dogs,1450059950 +131993,49817,UK,1450060007 +131993,51077,Comic Book,1172693420 +131993,51077,Nicholas Cage,1172693413 +131993,51207,80s video,1450055495 +131993,53022,80s video,1450054421 +131993,53322,Steven Soderbergh,1374805704 +131993,53548,black and white,1391740363 +131993,53548,death ray,1391741071 +131993,53548,gorilla suit,1391740328 +131993,53548,low budget,1391741105 +131993,53548,shirtless men,1391741608 +131993,53548,so bad it's good,1391740219 +131993,53548,youtube,1391740140 +131993,55132,gay,1451493235 +131993,55132,gay romance,1451493243 +131993,56782,Paul Thomas Anderson,1374806013 +131993,57940,80s video,1450057446 +131993,60037,good bad,1447376917 +131993,65518,80s video,1450058409 +131993,65521,80s video,1450058574 +131993,66152,80s video,1450063878 +131993,69722,80s video,1450056776 +131993,71211,Steven Soderbergh,1374805721 +131993,72612,animated,1450070931 +131993,72612,short,1450070936 +131993,74164,evil hand,1450071550 +131993,74754,so bad it's good,1433906134 +131993,74754,unintentional comedy,1433906107 +131993,74754,you're tearing me apart lisa,1433906121 +131993,81782,trains,1374807031 +131993,89470,Steven Soderbergh,1374805791 +131993,90376,grief,1432355085 +131993,91304,80s video,1450064938 +131993,91304,Best of the Worst,1450064950 +131993,91304,RLM,1450064954 +131993,92008,Steven Soderbergh,1374805832 +131993,93196,80s video,1450060576 +131993,93950,80s video,1450060549 +131993,95135,female director,1453874719 +131993,95449,Steven Soderbergh,1374805819 +131993,96460,based on a true story,1450071225 +131993,96629,80s video,1450063860 +131993,96728,Paul Thomas Anderson,1374806226 +131993,96829,Thomas Vinterberg,1374806419 +131993,97330,80s video,1450056419 +131993,98175,female director,1453922835 +131993,100383,Steven Soderbergh,1374805327 +131993,101182,80s video,1450065440 +131993,103645,80s video,1450063837 +131993,104041,80s video,1450058868 +131993,104135,so bad it's good,1450070997 +131993,104321,female director,1453874695 +131993,104673,80s video,1450055613 +131993,105020,80s video,1450056512 +131993,105386,good bad,1447376950 +131993,105581,80s video,1450055532 +131993,105948,80s video,1450065391 +131993,106485,B Movie,1450066618 +131993,106729,Half in the Bag,1450065033 +131993,106729,RLM,1450065026 +131993,107232,80s video,1450055430 +131993,107658,80s video,1450056136 +131993,108595,artist,1420218423 +131993,108595,documentary,1420218423 +131993,108595,visual arts,1420218423 +131993,110591,possession,1449816614 +131993,112772,80s video,1450065084 +131993,114219,80s video,1450062201 +131993,114265,female director,1453874749 +131993,114486,film history,1450071038 +131993,114486,schlock,1449816701 +131993,116660,coming out,1451492441 +131993,116660,gay,1451492318 +131993,116660,gay romance,1451492324 +131993,117434,ambition,1450071476 +131993,117434,Fame,1450071470 +131993,117460,80s video,1450055665 +131993,118854,1930s,1422113980 +131993,118854,documentary,1422113980 +131993,118854,"documentary, ken burns",1418448002 +131993,118854,ken burns,1422113980 +131993,119832,B-movie,1450061860 +131993,119846,80s video,1450061903 +131993,119856,Best of the Worst,1450061778 +131993,119856,RLM,1450061781 +131993,119870,B-movie,1450061926 +131993,121061,French,1450070892 +131993,121061,revenge,1450070899 +131993,122298,80s video,1450063215 +131993,123178,80s video,1450059668 +131993,123349,80s video,1450060727 +131993,123441,80s video,1450060858 +131993,124507,80s video,1450064652 +131993,124507,Jules Verne,1450064662 +131993,125021,80s video,1450060704 +131993,126713,Best of the Worst,1450062573 +131993,126713,RLM,1450062576 +131993,127600,80s video,1450058710 +131993,127604,80s video,1450058726 +131993,128215,80s video,1450065115 +131993,128245,80s video,1450062605 +131993,129052,prison,1450063358 +131993,129659,female director,1453875147 +131993,129677,80s video,1450061805 +131993,130044,Blind Protagonist,1450071302 +131993,130044,blindness,1450071258 +131993,130044,retirement community,1450071375 +131993,130044,Werewolf,1450071264 +131993,130044,werewolves,1450071286 +131993,130824,80s video,1450059054 +131993,130824,prison,1450059059 +131993,131305,80s video,1450062343 +131993,131540,80s video,1450063544 +131993,131794,80s video,1450063678 +131993,131798,80s video,1450062620 +131993,131870,80s video,1450062419 +131993,131870,mutants,1450062429 +131993,131886,80s video,1450062913 +131993,131994,80s video,1450062124 +131993,131996,80s video,1450062106 +131993,132018,80s video,1450062064 +131993,132024,80s video,1450064595 +131993,132522,harper lee,1429582942 +131993,132522,novel,1429582964 +131993,132522,to kill a mockingbird,1429582979 +131993,133822,80s video,1450055713 +131993,134164,fun B-movie,1432868488 +131993,134170,B-movie,1432865723 +131993,134499,anthology,1453353358 +131993,134499,claymation,1453353397 +131993,134517,nudity,1450071192 +131993,134601,Adaptation,1433637502 +131993,134601,H. G. Wells,1433637480 +131993,137004,mockumentary,1450072004 +131993,138746,80s video,1450063111 +131993,139263,80s video,1450060162 +131993,140133,80s video,1450059922 +131993,141882,based on a true story,1450071094 +131993,142314,Best of the Worst,1450061223 +131993,142314,RLM,1450061295 +131993,145012,80s video,1450064348 +131993,146291,80s video,1450061431 +131993,147182,B Movie,1450066501 +131993,147182,monsters,1447993472 +131993,147182,practical effects,1447993462 +131993,148881,short film,1453564563 +132042,44555,imdb top 250,1235504647 +132052,433,short-term memory loss,1368045367 +132052,521,neo-noir,1368045213 +132052,1068,noir thriller,1368044919 +132052,1234,caper,1138987767 +132052,1359,arnold,1368045096 +132052,1422,conspiracy theory,1368045250 +132052,1544,spielberg,1368045382 +132052,1693,spielberg,1368045383 +132052,1783,neo-noir,1368045212 +132052,2579,neo-noir,1368045212 +132052,2739,spielberg,1368045382 +132052,2819,conspiracy theory,1368045250 +132052,3489,spielberg,1368045382 +132052,3698,arnold,1368045096 +132052,3783,neo-noir,1368045212 +132052,3986,arnold,1368045097 +132052,3997,dragon,1368045279 +132052,4189,christian,1368045177 +132052,4189,jesus,1368044838 +132052,4370,spielberg,1368045383 +132052,4558,arnold,1368045097 +132052,4612,jesus,1368044838 +132052,4802,screwball comedy,1368045139 +132052,5146,dark hero,1368045024 +132052,5882,treasure,1368044875 +132052,5893,neo-noir,1368045212 +132052,6157,dark hero,1368045024 +132052,6254,screwball comedy,1368045139 +132052,6450,stranded,1368044967 +132052,6609,jesus,1368044838 +132052,6683,bollywood,1368044796 +132052,6768,christian,1368045177 +132052,7004,arnold,1368045097 +132052,7217,noir thriller,1368044919 +132052,7223,noir thriller,1368044919 +132052,7335,noir thriller,1368044919 +132052,7373,dark hero,1368045023 +132052,7584,screwball comedy,1368045139 +132052,7943,noir thriller,1368044920 +132052,8167,treasure,1368044875 +132052,8711,screwball comedy,1368045139 +132052,8972,conspiracy theory,1368045250 +132052,25850,screwball comedy,1368045139 +132052,25927,noir thriller,1368044919 +132052,26398,mars,1368045002 +132052,27822,stranded,1368044967 +132052,34048,spielberg,1368045383 +132052,34072,nature wildlife,1139247991 +132052,40819,biography,1138987739 +132052,40819,music,1138987739 +132052,40826,musical,1145290174 +132052,44761,neo-noir,1368045212 +132052,52241,short-term memory loss,1368045367 +132052,55732,mars,1368045002 +132052,56775,conspiracy theory,1368045250 +132052,57951,treasure,1368044876 +132052,60684,dark hero,1368045024 +132052,68554,conspiracy theory,1368045250 +132052,74624,christian,1368045177 +132052,81562,mountain climbing,1368045329 +132052,84601,short-term memory loss,1368045367 +132052,86880,treasure,1368044875 +132052,90746,treasure,1368044875 +132052,91529,dark hero,1368045024 +132052,91976,stranded,1368044967 +132052,95875,mars,1368045002 +132052,97938,stranded,1368044967 +132052,122892,comic book,1433741789 +132052,122892,superhero,1433741786 +132057,318,foul language,1173948900 +132063,837,children,1186691341 +132063,1464,strange,1186691449 +132063,1894,crap,1186691353 +132063,1912,music,1380895982 +132063,2404,cult film,1186691475 +132063,2404,ridiculous,1186691475 +132063,2600,strange,1186691307 +132063,2734,destruction,1186691507 +132063,2734,islands,1186691507 +132063,3741,freaks,1186691693 +132063,3741,hippie,1186691693 +132063,3896,cult scene,1187187433 +132063,3967,humorous,1186691204 +132063,3988,mean,1186691325 +132063,4262,action,1186691185 +132063,4262,drama,1186691185 +132063,4351,cult film,1186691455 +132063,4367,Girl Power,1186691252 +132063,4975,fantasy,1186691226 +132063,5528,oppression,1186691400 +132063,6373,funny,1186691276 +132063,8636,Comic Book adaption,1187188022 +132063,8810,adaptation,1186691653 +132063,8810,transposition,1186691653 +132063,33493,action,1186691157 +132063,35836,blockbuster,1186691426 +132063,39183,Gay,1186691549 +132063,45499,comic book,1186691560 +132063,52281,half good,1188035587 +132063,72720,beautiful cinematography,1366487690 +132063,79702,cultural references,1289587662 +132063,79702,Michael Cera,1289587680 +132063,79702,video games,1289587683 +132063,80864,tragedy,1341248096 +132063,82461,graphics,1331847585 +132063,82461,music,1331847576 +132063,96079,beautifully filmed,1361643832 +132063,96079,cinematography,1361643822 +132063,96079,unrealistic,1361643951 +132063,96079,weak plot,1361643938 +132063,99114,good soundtrack,1361643758 +132063,99114,Samuel L. Jackson,1361643689 +132063,99114,violence,1361643687 +132063,99114,weak plot,1361643736 +132079,4993,epic,1435591265 +132086,432,lame,1139042077 +132086,2109,funniest movie ever,1139042426 +132086,7983,brilliant,1139042236 +132103,150,Ron Howard,1148672905 +132112,1208,anti-war,1441367896 +132112,1208,mythical,1441367890 +132112,1208,Vietnam,1441367899 +132112,4011,brad pitt,1441367947 +132112,4011,comedy,1441367950 +132170,260,father-son relationship,1431982581 +132170,260,space,1431982573 +132170,112552,learning,1431983820 +132170,112552,music,1431983820 +132170,112552,teaching,1431983820 +132202,122882,post apocalypse,1442010876 +132202,122882,visually appealing,1442010881 +132212,45028,Musical,1165642741 +132237,260,science fantasy,1441715036 +132237,260,Space Saga,1441715022 +132251,300,slow starter,1229982809 +132251,1628,less than 300 ratings,1225183875 +132251,8667,polyamory,1230846766 +132251,9013,less than 300 ratings,1224941972 +132251,25866,less than 300 ratings,1224941895 +132251,26007,less than 300 ratings,1226098440 +132251,27611,less than 300 ratings,1226705358 +132251,31435,less than 300 ratings,1224941962 +132251,32025,less than 300 ratings,1224941909 +132251,33451,less than 300 ratings,1226705349 +132251,36056,less than 300 ratings,1224941847 +132251,45210,slow starter,1232316879 +132251,51277,less than 300 ratings,1226857099 +132251,61240,less than 300 ratings,1226857085 +132251,62801,less than 300 ratings,1227194665 +132251,63992,HIGH SCHOOL LIFE,1232232746 +132251,63992,Teen movie,1232232732 +132251,63992,vampires,1232232713 +132251,85788,slow start,1319313537 +132251,85788,uneven,1319313541 +132276,1274,atmospheric,1248597842 +132276,1274,dystopia,1248597819 +132276,1274,future,1248597832 +132276,1274,stylized,1248597838 +132276,2712,atmospheric,1248597761 +132276,2712,dreamlike,1248597756 +132276,2712,enigmatic,1248597763 +132276,3535,comical violence,1248597726 +132276,3535,funny,1248597715 +132276,3535,serial killer,1248597719 +132276,3535,violence,1248597721 +132276,57910,comedy,1248597315 +132276,58559,Batman,1248597419 +132276,58559,dark,1248597428 +132276,58559,vigilante,1248597435 +132276,60069,dystopia,1248597468 +132276,60069,heartfelt,1248597489 +132276,60069,pixar,1248597466 +132276,60069,Post apocalyptic,1248597471 +132276,60069,romance,1248597483 +132276,68358,alternate reality,1248597098 +132276,68358,future,1248597103 +132276,68358,plot twist,1248597111 +132276,68358,sci-fi,1248597106 +132276,68358,space travel,1248597109 +132276,68954,adventure,1248597177 +132276,68954,Pixar,1248597161 +132276,68954,so well done,1248597185 +132276,68954,storytelling,1248597165 +132276,68954,talking animals,1248597191 +132276,69122,great soundtrack,1248597232 +132276,69122,Zach Galifinakis,1248597224 +132276,69844,Comedy,1248597274 +132276,69844,magic,1248597271 +132287,95744,romance.,1407657314 +132287,114678,happiness,1438435628 +132294,260,action adventure,1439777528 +132294,260,scifi,1439777537 +132300,1,pixar,1447584989 +132300,1,Tom Hanks,1447584996 +132300,47,brad pitt,1440151035 +132300,47,dark,1440151040 +132300,47,Kevin Spacey,1440151026 +132300,47,morgan freeman,1440151031 +132300,47,philosophical,1440151051 +132300,47,powerful ending,1440151038 +132300,47,twist ending,1440151029 +132300,260,sci-fi,1440152202 +132300,260,Star Wars,1440152206 +132300,288,freedom,1440149759 +132300,288,impulse,1440149774 +132300,428,mafia,1448277994 +132300,428,Robert De Niro,1448277993 +132300,665,crazy,1444361541 +132300,665,Emir Kusturica,1444361535 +132300,778,black comedy,1440151211 +132300,778,British,1440151217 +132300,778,dark comedy,1440151209 +132300,778,social commentary,1440151214 +132300,1196,sci-fi,1440152191 +132300,1196,Star Wars,1440152188 +132300,1200,aliens,1440152236 +132300,1200,military,1440152243 +132300,1200,sci-fi,1440152233 +132300,1210,sci-fi,1440152175 +132300,1210,Star Wars,1440152174 +132300,1213,dark comedy,1440150519 +132300,1213,mafia,1440150514 +132300,1213,Martin Scorsese,1440150526 +132300,1213,robert de niro,1440150517 +132300,1214,aliens,1440152253 +132300,1214,sci-fi,1440152254 +132300,1222,military,1443387474 +132300,1222,Stanley Kubrick,1443387468 +132300,1222,Vietnam war,1443387476 +132300,1222,war,1443387490 +132300,1464,mindfuck,1441658711 +132300,1464,Nudity (Topless),1441658695 +132300,1464,surreal,1441658702 +132300,1527,Bruce Willis,1445941399 +132300,1527,dystopia,1445941413 +132300,1527,futuristic,1445941403 +132300,1527,Gary Oldman,1445941406 +132300,1527,humorous,1445941416 +132300,1527,Luc Besson,1445941420 +132300,1527,Milla Jovovich,1445941401 +132300,1527,satirical,1445941411 +132300,1527,sci-fi,1445941396 +132300,1625,David Fincher,1440151358 +132300,1625,michael douglas,1440151355 +132300,1625,mindfuck,1440151357 +132300,1625,psychological,1440151361 +132300,1625,twist ending,1440151352 +132300,1653,dystopia,1440152390 +132300,1653,sci-fi,1440152392 +132300,1653,Uma Thurman,1440152397 +132300,1961,Exceptional Acting,1440150961 +132300,2028,historical,1440150995 +132300,2028,history,1440150998 +132300,2028,Steven Spielberg,1440150990 +132300,2028,Tom Hanks,1440150988 +132300,2028,visceral,1440151012 +132300,2028,war,1440151002 +132300,2028,World War II,1440150986 +132300,2340,Anthony Hopkins,1440150826 +132300,2340,Brad Pitt,1440150825 +132300,2628,sci-fi,1440152144 +132300,2628,space,1440152145 +132300,2628,Star Wars,1440152141 +132300,2710,atmospheric,1441777058 +132300,2710,original,1441777048 +132300,2710,suspense,1441777054 +132300,3285,Leonardo DiCaprio,1440154266 +132300,3285,utopia,1440154264 +132300,3617,comedy,1440152876 +132300,4008,anti-war,1441633342 +132300,4008,innocence lost,1441633336 +132300,4008,Vietnam War,1441633345 +132300,4011,guy ritchie,1440149851 +132300,4011,irony,1440149877 +132300,4022,Tom Hanks,1440152515 +132300,4148,Anthony Hopkins,1440150593 +132300,4262,Al Pacino,1440153598 +132300,4262,organized crime,1440153601 +132300,4370,artificial intelligence,1440152585 +132300,4370,dystopia,1440152587 +132300,4370,sci-fi,1440152590 +132300,4370,Steven Spielberg,1440152589 +132300,4896,harry potter,1440152077 +132300,4989,method man,1440150665 +132300,4989,redman,1440150668 +132300,4989,weed,1440150673 +132300,5378,sci-fi,1440152126 +132300,5378,Star Wars,1440152124 +132300,5425,aviation,1446109239 +132300,5425,world war II,1446109241 +132300,5608,human nature,1443388098 +132300,5608,psychology,1443388095 +132300,5608,thought-provoking,1443388103 +132300,5617,erotic,1440151079 +132300,5816,harry potter,1440152047 +132300,6323,twist ending,1444363406 +132300,7143,historical,1440152633 +132300,7143,samurai,1440152629 +132300,8529,tom hanks,1440152525 +132300,8957,clever,1443387660 +132300,8957,mindfuck,1443387658 +132300,8957,original,1443387673 +132300,8957,serial killer,1443387686 +132300,8957,surprise ending,1443387664 +132300,8957,torture,1443387682 +132300,8957,twist ending,1443387653 +132300,26246,disturbing,1441633116 +132300,26246,psychological,1441633181 +132300,26246,trapped,1441633182 +132300,26246,war,1441633175 +132300,33679,Angelina Jolie,1440150888 +132300,33679,Brad Pitt,1440150890 +132300,33679,funny,1440150892 +132300,34319,dystopia,1440154431 +132300,40815,harry potter,1440152088 +132300,47610,Edward Norton,1440151386 +132300,47610,twist ending,1440151389 +132300,48738,History,1440154564 +132300,55247,Alaska,1442523664 +132300,55247,atmospheric,1442523667 +132300,55247,great soundtrack,1442523659 +132300,55247,Music,1442523684 +132300,55247,road trip,1442523670 +132300,55247,self discovery,1442523694 +132300,55247,wilderness,1442523677 +132300,55820,dark,1440150913 +132300,55820,great acting,1440150910 +132300,55908,excellent script,1442613816 +132300,55908,Excellent use of dialogue,1442613798 +132300,55908,intellectual,1442613802 +132300,55908,intelligent,1442613805 +132300,55908,philosophical,1442613770 +132300,55908,thought-provoking,1442613773 +132300,55908,unique,1442613808 +132300,60069,artificial intelligence,1440152565 +132300,60069,dystopia,1440152557 +132300,60069,pixar,1440152553 +132300,60069,quirky,1440152567 +132300,60069,robots,1440152556 +132300,60069,Sci-Fi,1440152559 +132300,60069,space,1440152561 +132300,63992,Teen movie,1440155099 +132300,68237,artificial intelligence,1440152370 +132300,68237,dystopia,1440152361 +132300,68237,Kevin Spacey,1440152364 +132300,68237,psychology,1440152375 +132300,68237,Sci-fi,1440152358 +132300,68237,space,1440152359 +132300,68237,twist ending,1440152372 +132300,68358,sci-fi,1440152788 +132300,68358,space,1440152790 +132300,68358,Star Trek,1440152786 +132300,76251,dark comedy,1440150725 +132300,76251,humorous,1440150719 +132300,85510,Cinematography,1440151111 +132300,85510,insanity,1440151118 +132300,85510,Surreal,1440151109 +132300,87869,actually funny,1440150638 +132300,87869,black comedy,1440150627 +132300,87869,Jennifer Aniston,1440150633 +132300,93764,Samuel L. Jackson,1440150859 +132300,94864,aliens,1440152276 +132300,94864,Ridley Scott,1440152280 +132300,94864,scifi,1440152278 +132300,96610,clever,1440152482 +132300,96610,dystopia,1440152479 +132300,96610,sci-fi,1440152473 +132300,96610,time travel,1440152475 +132300,97752,dystopia,1440152424 +132300,97752,sci-fi,1440152428 +132300,97752,Tom Hanks,1440152426 +132300,97752,visually appealing,1440152422 +132300,97938,animals,1440585962 +132300,97938,cinematography,1440585948 +132300,97938,great photograpy,1440585965 +132300,97938,surreal,1440585955 +132300,97938,visually appealing,1440585950 +132300,102445,science fiction,1440154064 +132300,102445,space,1440154056 +132300,102445,Star Trek,1440154054 +132300,104841,bad science,1440152324 +132300,104841,cinematography,1440152334 +132300,104841,physics,1440152312 +132300,104841,sci-fi,1440152337 +132300,104841,science,1440152313 +132300,104841,space,1440152303 +132300,104841,visually appealing,1440152302 +132300,104841,visually stunning,1440152316 +132300,106782,Amoral,1440151189 +132300,106782,Anti-Hero,1440151173 +132300,106782,Funny,1440151175 +132300,106782,Leonardo DiCaprio,1440151166 +132300,106782,Martin Scorsese,1440151168 +132300,111759,sci-fi,1440152819 +132300,111759,time loop,1440152817 +132300,112556,David Fincher,1440150554 +132300,112556,meticulous,1440150563 +132300,112556,mindfuck,1440150551 +132300,112556,unpredictable,1440150548 +132300,116138,corruption,1440153805 +132300,116138,politics,1440153806 +132300,116138,social commentary,1440153803 +132300,117176,physics,1440153779 +132300,117176,Stephen Hawking,1440153777 +132300,118696,Peter Jackson,1440153843 +132300,118696,Tolkien,1440153844 +132300,122882,charlize theron,1440150789 +132300,122882,dystopian,1440150788 +132300,122882,post apocalypse,1440150780 +132300,122882,visually appealing,1440150782 +132300,134130,sci-fi,1451911726 +132300,134130,scientific,1451911733 +132300,134130,Space,1451911724 +132300,134130,space travel,1451911734 +132300,134130,Survival Instinct,1451911730 +132300,140110,Robert De Niro,1450519068 +132360,58559,Atmospheric,1334475162 +132360,58559,Batman,1334475136 +132360,58559,Christian Bale,1334475154 +132360,58559,Heath Ledger,1334475151 +132360,58559,Morgan Freeman,1334475160 +132360,72378,bad acting,1334711494 +132360,72378,cgi,1334711485 +132360,72378,John Cusack,1334711476 +132360,72378,predictable,1334711481 +132360,72378,Special Effects,1334711503 +132360,72378,stupid,1334711464 +132360,72378,Woody Harrelson,1334711525 +132368,68659,Kristen Bell,1252477412 +132368,68659,movie reference jokes,1252477393 +132368,68659,only a few jokes,1252477390 +132368,68659,Seth Rogen,1252477444 +132396,1569,Julia Roberts,1287784298 +132396,1704,Matt Damon,1287784346 +132396,1961,autism,1287784614 +132396,4979,Wes Anderson,1287784587 +132396,5106,britney spears,1287784759 +132396,66097,Tim Burton,1287784476 +132396,72226,Wes Anderson,1287784381 +132396,72367,jackie o,1287784704 +132396,78105,long,1292227783 +132396,80549,high school,1287784400 +132396,80549,sexuality,1287784437 +132396,80862,documentary,1287784826 +132396,80862,makes you think,1287784838 +132396,80862,social networking,1287784823 +132396,81564,animated,1290450313 +132396,82173,TWENTYSOMETHING LIFE,1360822750 +132399,260,classic sci-fi,1435002720 +132399,260,Science Fiction,1435002711 +132403,172,book was better,1302832179 +132403,172,cyberpunk,1302832163 +132403,172,Sci-Fi,1302832167 +132403,172,William Gibson,1302832241 +132403,377,Action,1302561422 +132403,377,tense,1302561430 +132403,377,Thriller,1302561428 +132403,377,visceral,1302561417 +132403,543,fun,1303468318 +132403,851,biography,1302995033 +132403,851,soundtrack,1302994901 +132403,851,visual arts,1302995005 +132403,1282,artistic,1302774519 +132403,1282,classical music,1302774339 +132403,1282,Disney,1302774351 +132403,1282,unique,1302774513 +132403,1291,action,1302734485 +132403,1291,Adventure,1302734482 +132403,1291,mystery,1302734642 +132403,1291,pure entertainment,1302734844 +132403,1291,Steven Spielberg,1302734533 +132403,1391,Parody,1302774196 +132403,1391,sci-fi,1302774199 +132403,1391,Tim Burton,1302774194 +132403,1831,poor effects,1302736020 +132403,1831,sci-fi,1302735901 +132403,1831,weak plot,1302736056 +132403,1957,biographical,1303200539 +132403,1957,compelling,1303200695 +132403,1957,overlong,1303200387 +132403,2115,action,1303201623 +132403,2115,adventure,1303201619 +132403,2115,pulp,1303201610 +132403,2745,Christianity,1302509141 +132403,2745,colonialism,1302509246 +132403,2745,massacre,1302509106 +132403,2745,message,1302509085 +132403,2745,slavery,1302509244 +132403,2801,Cate Blanchett,1303202787 +132403,2801,disturbing violence,1303202773 +132403,2801,tragically stupid,1303202820 +132403,2890,anti-war,1302735569 +132403,2890,black comedy,1302735565 +132403,2890,confrontational,1302735575 +132403,2890,Gulf War,1302735637 +132403,2890,stylized,1302735665 +132403,2953,copy of original,1302993267 +132403,3753,drama,1302735426 +132403,3753,revenge story,1302735388 +132403,3753,war,1302735355 +132403,4728,purile,1302738403 +132403,4728,weak plot,1302738466 +132403,4878,atmospheric,1302696172 +132403,4878,mystery,1302696207 +132403,4878,quirky,1302696189 +132403,4878,thought-provoking,1302696228 +132403,4896,Adventure,1302696520 +132403,4896,fantasy,1302696527 +132403,4896,ghosts,1302696563 +132403,4896,mystery,1302696549 +132403,6104,British,1302508287 +132403,6104,Monty Python,1302508237 +132403,6104,no real storyline,1302580943 +132403,6104,sketch comedy,1302580890 +132403,6104,spoof,1302508272 +132403,7153,adapted from:book,1302562707 +132403,7153,adventure,1302562587 +132403,7153,atmospheric,1302562631 +132403,7153,based on a book,1302562710 +132403,7153,ensemble cast,1302562582 +132403,7153,fantasy,1302562584 +132403,7153,multiple storylines,1302562761 +132403,7153,scenic,1302562734 +132403,7153,war,1302562805 +132403,8528,Idiotic,1303201469 +132403,8917,Gross-out,1302738031 +132403,8917,political commentary,1302738057 +132403,8917,satire,1302738062 +132403,8983,lacks substance,1302904663 +132403,8983,spectacle,1302904521 +132403,8983,unrealistic,1302904673 +132403,31658,adventure,1302943901 +132403,31658,book was better,1302943839 +132403,31658,fantasy,1302943859 +132403,31658,war,1302943890 +132403,39703,acting,1302596308 +132403,39703,Cate Blanchett,1302596244 +132403,39703,Hugo Weaving,1302596285 +132403,48082,can't identify with hero,1302995512 +132403,48082,fantasy,1302995326 +132403,48082,inventive,1302995269 +132403,50068,brutality,1302595348 +132403,50068,Character study,1302595284 +132403,50068,imdb top 250,1302595337 +132403,50068,intimate,1302595296 +132403,50068,japan,1302595321 +132403,50068,meditative,1302595309 +132403,50068,World War II,1302595318 +132403,51255,action,1302579385 +132403,51255,british comedy,1302579315 +132403,51255,murder,1302579333 +132403,51255,police,1302579363 +132403,51255,surreal,1302579375 +132403,51255,twists & turns,1302579319 +132403,51255,violence,1302579323 +132403,57669,descends into surreal nonsense,1303287317 +132403,60818,fantasy,1303215129 +132403,61967,dull,1303782794 +132403,61967,overlong,1303782887 +132403,64839,a lot of back of head shots,1302992548 +132403,64839,identity crisis,1302992310 +132403,64839,large amount of film contributed nothing to the story,1302992423 +132403,64839,sex scenes,1302992463 +132403,64839,sport:professional wrestling,1302992490 +132412,3424,racism,1174334168 +132424,2549,video game adaptation,1209844067 +132424,4446,computer animation,1209846842 +132447,74553,beautiful,1429146051 +132447,74553,religious,1429146051 +132447,74553,secrets,1429146051 +132452,1198,kkkk,1444151227 +132452,1198,lll,1444151225 +132472,296,Black comedy,1282378634 +132472,1241,awesome zombie flick,1282378795 +132472,1241,Best gore/horror movie ever,1282378799 +132472,1241,campy,1282378802 +132472,1241,So funny,1282378809 +132472,1255,campy,1282378851 +132472,1255,Peter Jackson,1282378847 +132472,1255,really bad,1282378858 +132472,1261,black comedy,1282378758 +132472,1261,campy,1282378703 +132472,1261,dark humor,1282378720 +132472,1261,horror,1282378725 +132472,1261,humorous,1282378746 +132472,1261,zombies,1282378715 +132472,6707,bloody,1282378940 +132472,6707,gore,1282378945 +132472,48678,awesome,1282378893 +132472,48678,excessive,1282378897 +132472,48678,so bad it's funny,1282378906 +132472,55553,sheep zombies,1282378988 +132472,55553,Zombies,1282378991 +132489,89804,Ryan Gosling,1344409582 +132513,2579,flashbacks,1421596048 +132513,6717,Buddhism,1417362143 +132513,8607,family,1451183871 +132513,60983,Buddhism,1418080807 +132513,60983,Canadian,1418080803 +132513,60983,Catholic,1418080818 +132513,60983,Chinese diaspora,1417363832 +132513,60983,Christianity,1418080812 +132513,60983,Confucian,1418080858 +132513,60983,conversion,1418080826 +132513,60983,religion,1417363826 +132513,60983,spiritual,1418080846 +132513,62198,70s,1421287142 +132513,62198,christianity,1421287075 +132513,62198,documentary,1421287070 +132513,62198,pentecostal,1421287103 +132513,62198,preacher,1421287120 +132513,62198,priest,1421287106 +132513,62198,religion,1421287066 +132513,63676,identity,1442635521 +132513,63676,persona,1442635543 +132513,63676,psychological,1442635531 +132513,74787,cheesy,1428029046 +132513,74787,stereotypes,1428026917 +132513,80551,About rich people without real problems,1417363118 +132513,104283,dreams,1421466408 +132513,104283,guilt,1421466389 +132513,104283,love,1421466393 +132513,104283,memory,1421466391 +132513,106302,assassination,1424142972 +132513,106302,south korea,1424142972 +132513,106302,war prisoners,1424142972 +132513,111031,desire,1450891677 +132513,111031,God,1450891666 +132513,111031,Marxism,1450891646 +132513,111031,psychoanalysis,1450891613 +132513,111031,superego,1450891685 +132513,117873,Documentary,1417361878 +132513,117873,guru,1417361915 +132513,117873,Hinduism,1417361870 +132513,117873,India,1417362046 +132513,117873,meditation,1417361908 +132513,117873,philosophical,1420363345 +132513,117873,religion,1417362037 +132513,117873,yoga,1417361862 +132513,118202,agriculture,1418080713 +132513,118202,animal husbandry,1418080738 +132513,118202,beef,1421696351 +132513,118202,carbon footprint,1418080654 +132513,118202,climate change,1418080387 +132513,118202,Documentary,1418080393 +132513,118202,ecological footprint,1418080650 +132513,118202,farming,1418080640 +132513,118202,food industry,1418080699 +132513,118202,green,1421696351 +132513,118202,Informative,1418080399 +132513,118202,sustainability,1418080643 +132513,119141,bromance,1419571265 +132513,119141,comedy,1419571240 +132513,129703,beggars,1425701184 +132513,129703,Hinduism,1425701196 +132513,129703,patriarchy,1425701156 +132513,129703,poverty,1425701150 +132513,129703,sexism,1425701154 +132513,130626,adaptation,1427085717 +132513,130626,manga,1427085713 +132513,130626,quirky,1427085800 +132513,132379,abuse,1429062041 +132513,132379,adolescence,1429062110 +132513,132379,city,1429062055 +132513,132379,documentary,1429062030 +132513,132379,family,1429062143 +132513,132379,mental illness,1429062061 +132513,132379,urban,1429062051 +132513,146277,documentary,1446766707 +132513,146277,meditation,1446766728 +132513,146277,mind,1446766746 +132513,146277,mindfulness,1446766730 +132513,146277,retreat,1446766768 +132513,146429,Buddhism,1447000362 +132513,146429,Buddhist,1447000368 +132513,146429,Canadian,1447000429 +132513,146429,contemporary,1447000355 +132513,146429,documentary,1447000436 +132513,146429,Kyoto,1447000399 +132513,146429,modern,1447000357 +132513,146429,Pure Land,1447000359 +132513,146429,religion,1447000376 +132513,148160,documentary,1449202306 +132513,148160,earthquake,1449202351 +132513,148160,fukushima,1449202378 +132513,148160,kyoto,1449202369 +132513,148160,nuclear disaster,1449202360 +132513,148160,sendai,1449202380 +132513,148160,tokyo,1449202367 +132513,148160,tsunami,1449202341 +132513,148464,debate,1449607897 +132513,148464,gang,1449607918 +132513,148464,jury,1449607898 +132513,148729,Asian,1450148554 +132513,148729,Boston,1450148483 +132513,148729,Canadian,1450148478 +132513,148729,Chinatown,1450148487 +132513,148729,competition,1450148543 +132513,148729,New York,1450148480 +132513,148729,San Francisco,1450148499 +132513,148729,Toronto,1450148490 +132513,148729,volleyball,1450148523 +132513,148729,Washington DC,1450148493 +132513,149434,actors,1451094960 +132513,149434,Asian-American,1451094741 +132513,149434,Chinese,1451094469 +132513,149434,directing,1451094765 +132513,149434,East Asian,1451095279 +132513,149434,Filipino,1451094941 +132513,149434,Japanese,1451094474 +132513,149434,Korean,1451094572 +132513,149434,movie writing,1451094760 +132513,149434,producer,1451094770 +132513,149434,Vietnamese,1451094550 +132513,151197,biography,1453171772 +132513,151197,Buddhism,1453171800 +132513,151197,celebrity,1453171796 +132513,151197,guru,1453171776 +132513,151197,India,1453171779 +132513,151197,New York City,1453171787 +132513,151677,dance,1453951844 +132513,151677,drugs,1453951843 +132513,151677,India,1453951830 +132513,151677,music,1453951845 +132513,151677,nudity,1453951859 +132513,151677,spirituality,1453951836 +132513,151677,trippy,1453951839 +132513,151677,Yogi,1453951834 +132522,5782,Not Luc Besson,1207379028 +132538,260,classic,1435195602 +132549,260,Star Wars,1438929680 +132555,4306,animation,1446872734 +132555,4993,fantasy,1446872710 +132572,260,deep universe,1431402771 +132572,260,sci-fi,1431402784 +132574,260,space battle,1433478735 +132574,260,space opera,1433478721 +132596,3387,John Candy,1208600777 +132596,3387,Sir John Candy,1208600790 +132596,4002,John Candy,1208600719 +132596,4002,Sir John Candy,1208600719 +132596,4679,John Candy,1208600673 +132596,4679,Sir John Candy,1208600673 +132604,29,atmospheric,1398409125 +132604,29,children,1398409122 +132604,29,dystopia,1398409113 +132604,29,hallucinatory,1398409139 +132604,29,steampunk,1398409103 +132604,260,space,1242029296 +132604,293,Action,1242044416 +132604,318,classic,1241708296 +132604,318,drama,1241708294 +132604,318,friendship,1241708240 +132604,318,justice,1241708284 +132604,318,prison,1241708289 +132604,318,prison escape,1241708237 +132604,318,reflective,1241708286 +132604,344,comedy,1241779298 +132604,344,Dumb,1241779270 +132604,344,Jim Carrey,1241779273 +132604,344,silly fun,1241779293 +132604,344,very dumb,1241779280 +132604,344,very funny,1241779277 +132604,353,cult film,1241768287 +132604,353,film noir,1241768280 +132604,353,gothic,1241768272 +132604,380,Arnold Schwarzenegger,1241708086 +132604,380,comedy,1241708104 +132604,380,Funny as hell,1241708109 +132604,380,Jamie Lee Curtis,1241708093 +132604,485,parody,1241708538 +132604,485,stupid,1241708564 +132604,519,franchise,1368562680 +132604,551,atmospheric,1241776305 +132604,551,beautiful,1241776309 +132604,551,cult film,1241776234 +132604,551,gothic,1241776229 +132604,551,halloween,1241776266 +132604,551,Tim Burton,1241776194 +132604,551,whimsical,1241776207 +132604,589,action,1242043302 +132604,589,Arnold Schwarzenegger,1242043293 +132604,778,based on a book,1241708142 +132604,778,black comedy,1241708134 +132604,778,British,1241708138 +132604,778,drug abuse,1241708165 +132604,861,police,1368563003 +132604,913,black and white,1368562601 +132604,1036,action,1241707972 +132604,1036,Bruce Willis,1241707957 +132604,1036,christmas,1241707974 +132604,1036,lone hero,1241708009 +132604,1036,terrorism,1241707969 +132604,1079,British,1242043849 +132604,1079,John Cleese,1242043855 +132604,1089,violent,1368563056 +132604,1175,dark,1368562639 +132604,1175,post-apocalyptic,1398408718 +132604,1197,fairy tale,1241707451 +132604,1197,humorous,1241707443 +132604,1197,whimsical,1241707463 +132604,1206,violent,1368563056 +132604,1214,tense,1368563035 +132604,1279,humorous,1241707403 +132604,1279,Jim Jarmusch,1241707399 +132604,1279,Roberto Benigni,1241707394 +132604,1279,Winona Ryder,1241707390 +132604,1288,deadpan,1398409305 +132604,1288,heavy metal,1398409266 +132604,1288,mockumentary,1398409258 +132604,1370,aviation,1241775675 +132604,1370,Bruce Willis,1241775679 +132604,1370,fighting,1241775734 +132604,1391,alien invasion,1241775203 +132604,1391,funny,1241775192 +132604,1391,Tim Burton,1241775173 +132604,1464,mystery,1368562742 +132604,1527,Bruce Willis,1241707914 +132604,1527,Chris Tucker,1241707946 +132604,1527,futuristic,1241707937 +132604,1527,Gary Oldman,1241707920 +132604,1527,humorous,1241707929 +132604,1527,Milla Jovovich,1241707904 +132604,1527,sci-fi,1241707918 +132604,1610,thriller,1368563046 +132604,1748,steampunk,1409207790 +132604,2024,christianity,1368562620 +132604,2026,high school,1368562693 +132604,2076,dark,1368562639 +132604,2082,inspirational,1368562706 +132604,2105,classic,1241779417 +132604,2105,computers,1241779441 +132604,2105,cyberpunk,1241779420 +132604,2105,sci-fi,1241779415 +132604,2105,virtual reality,1241779423 +132604,2371,Chevy Chase,1241768792 +132604,2371,impostor,1241768825 +132604,2371,investigation,1241768817 +132604,2371,journalism,1241768817 +132604,2371,police corruption,1241768839 +132604,2378,funny,1241776841 +132604,2378,Michael Winslow,1241776853 +132604,2378,police,1241776444 +132604,2378,silly,1241776841 +132604,2378,Steve Guttenberg,1241776848 +132604,2383,police,1368563003 +132604,2500,high school,1368562693 +132604,2571,solipsism,1242043422 +132604,2692,alternate endings,1241708314 +132604,2692,humorous,1241708317 +132604,2692,nonlinear,1241708304 +132604,2692,notable soundtrack,1241708306 +132604,2692,surreal,1241708309 +132604,2888,high school,1368562692 +132604,2959,Brad Pitt,1241706834 +132604,2959,Edward Norton,1241706832 +132604,2959,philosophy,1241706829 +132604,2959,violent,1368563056 +132604,2968,history,1241779408 +132604,2968,Terry Gilliam,1241779389 +132604,2985,violent,1368563056 +132604,3000,atmospheric,1241707003 +132604,3000,environmental,1241706991 +132604,3000,Hayao Miyazaki,1241707009 +132604,3033,Bill Pullman,1241708175 +132604,3033,comedy,1241708181 +132604,3033,hilarious,1241708190 +132604,3033,idiotic,1241708193 +132604,3033,Mel Brooks,1241708177 +132604,3033,spoof,1241708187 +132604,3033,star wars,1241708196 +132604,3175,aliens,1241768532 +132604,3175,parody,1241768507 +132604,3175,space,1241768538 +132604,3175,Star Trek,1241768512 +132604,3273,franchise,1368562680 +132604,3581,90s club culture,1241707787 +132604,3581,British,1241707892 +132604,3581,drugs,1241707793 +132604,3581,friendship,1241707880 +132604,3581,funny,1241707880 +132604,3581,My DVDs,1241707791 +132604,3581,romance,1241707880 +132604,4011,Brad Pitt,1241708219 +132604,4011,british,1241708222 +132604,4011,comedy,1241708224 +132604,4011,cynical,1241708226 +132604,4011,Jason Statham,1241708212 +132604,4203,bikers,1241768023 +132604,4203,Buddy movie,1241767999 +132604,4203,crime,1241768078 +132604,4203,friendship,1241768023 +132604,4203,Mickey Rourke,1241768091 +132604,4203,understated,1241767970 +132604,4306,animation,1241707133 +132604,4306,crude humor,1241707205 +132604,4306,Disney,1241707213 +132604,4306,Eddie Murphy,1241707126 +132604,4306,fairy tale,1241707185 +132604,4306,parody,1241707173 +132604,4388,stupid,1368563025 +132604,4499,10/10,1289570811 +132604,4499,classic,1289570796 +132604,4499,Michael Caine,1289570762 +132604,4499,one of the best movies ever,1289570774 +132604,4499,Steve Martin,1289570765 +132604,4874,intellectual,1242043669 +132604,4874,Kevin Spacey,1242043674 +132604,4878,atmospheric,1290523968 +132604,4878,teen,1290523945 +132604,5091,Jacqueline Bisset,1241775856 +132604,5091,Jean-Paul Belmondo,1241775894 +132604,5091,love story,1241775925 +132604,5091,parody,1241775897 +132604,5091,self-mocking,1241775966 +132604,5091,spoof,1241775894 +132604,5541,aviation,1241707726 +132604,5541,Charlie Sheen,1241707739 +132604,5541,Jim Abrahams,1241707733 +132604,5541,parody,1241707743 +132604,5541,So funny,1241707751 +132604,5782,Jean-Paul Belmondo,1242047940 +132604,5785,stupid,1368563025 +132604,5903,bullet ballet,1242045008 +132604,5903,dystopia,1242044944 +132604,6323,mystery,1368562742 +132604,6502,British,1241779328 +132604,6502,horror,1241779330 +132604,6502,post-apocalyptic,1241779335 +132604,6502,survival,1241779375 +132604,6502,Zombie,1241779317 +132604,6502,zombies,1241779326 +132604,6537,franchise,1368562680 +132604,7000,heist,1241775367 +132604,7000,humorous,1241775295 +132604,7000,rousing,1241775340 +132604,7000,Underrated,1241775344 +132604,7000,understated,1241775344 +132604,7000,upbeat,1241775439 +132604,7022,anomie,1241776979 +132604,7022,controversial,1241776909 +132604,7022,Japan,1241776869 +132604,7022,school,1241776942 +132604,7022,survival,1241776882 +132604,7022,Takeshi Kitano,1241776915 +132604,7022,weapons,1241776950 +132604,7153,oscar (best cinematography),1368562865 +132604,7254,Ashton Kutcher,1241777292 +132604,7254,mental health,1241777440 +132604,7254,stupid,1241777423 +132604,7254,stupidity,1241777424 +132604,7562,extremely violent,1242045588 +132604,7562,violence,1242045572 +132604,8361,global warming,1241777248 +132604,8361,propaganda,1241777241 +132604,8361,silly,1241777255 +132604,8781,politics,1368563016 +132604,8874,black comedy,1241708344 +132604,8874,British,1241708349 +132604,8874,dark humor,1241708352 +132604,8874,Edgar Wright,1241708342 +132604,8874,Funniest Movies,1241708363 +132604,8874,Simon Pegg,1241708354 +132604,8874,zombies,1241708347 +132604,26347,fairy tale,1241707604 +132604,26347,romance,1241707604 +132604,32460,Comedy,1241707273 +132604,32460,hostage,1241707363 +132604,32460,Mafia,1241707296 +132604,32460,Not available from Netflix,1241707380 +132604,32460,Nudity (Topless),1241707373 +132604,32460,road trip,1241707291 +132604,32460,terminal illness,1241707363 +132604,32587,Action,1241707043 +132604,32587,artistic,1241707037 +132604,32587,multiple storylines,1242029259 +132604,33004,based on a book,1241767941 +132604,33004,book was better,1241768868 +132604,33004,dolphins,1241768864 +132604,33004,humor,1241767939 +132604,33004,sarcasm,1241768852 +132604,33004,space,1241768858 +132604,39768,optimistic,1242046818 +132604,39768,romantic,1242046828 +132604,39768,war,1242046811 +132604,42197,british comedy,1241707497 +132604,42197,dark humor,1241707497 +132604,48385,mockumentary,1241777471 +132604,48385,obscene,1241777674 +132604,48385,overrated,1241777704 +132604,48385,plebian,1241777674 +132604,48385,road trip,1241777504 +132604,48385,tasteless,1241777674 +132604,48385,vulgar,1241777453 +132604,51255,action,1241707672 +132604,51255,action spoof,1241707674 +132604,51255,black comedy,1241707676 +132604,51255,british comedy,1241707679 +132604,51255,buddy movie,1241707682 +132604,51255,imdb top 250,1241707689 +132604,51255,macabre,1241707692 +132604,51255,movie to see,1241707696 +132604,51255,parody,1241707699 +132604,51255,police,1241707701 +132604,53121,franchise,1368562680 +132604,54259,fairy tale,1241706945 +132604,54259,humor,1241706964 +132604,54259,Michelle Pfeiffer,1241706910 +132604,54259,Robert De Niro,1241706973 +132604,55269,brother-brother relationship,1421680111 +132604,57669,friendship,1241767909 +132604,57669,hitman,1241767892 +132604,57669,suicide,1241767911 +132604,60684,gore,1399877805 +132604,60684,simplistic,1399877817 +132604,60684,superhero,1399877799 +132604,63113,franchise,1368562680 +132604,66097,gothic,1408310318 +132604,66097,Tim Burton,1408310314 +132604,66297,boring,1242045921 +132604,66297,overrated,1242045939 +132604,66297,stupid,1242045923 +132604,72998,graphic design,1267641743 +132604,72998,overly simplistic,1267641762 +132604,72998,sci-fi,1267641769 +132604,74851,John Travolta,1274180299 +132604,104841,isolation,1421680065 +132604,104841,realistic,1421680076 +132604,104841,space,1421680079 +132604,112183,Edward Norton,1424561513 +132604,112556,mindfuck,1424283416 +132604,112556,Predictable Twist,1424283360 +132604,112556,Rosamund Pike,1424283378 +132616,111921,cancer,1432408468 +132616,111921,love,1432408468 +132616,111921,teenager,1432408468 +132636,12,spoof,1188258162 +132636,32,dystopia,1197915297 +132636,141,homosexuality,1213089006 +132636,235,biopic,1197915747 +132636,235,movie business,1197915742 +132636,518,literary adaptation,1188834731 +132636,541,dystopia,1200958574 +132636,750,cold war,1197914551 +132636,750,nuclear weapons,1197914551 +132636,775,literary adaptation,1190562999 +132636,780,Area 51,1200332400 +132636,858,mafia,1197914419 +132636,904,voyeurism,1197915381 +132636,931,psychoanalysis,1197915652 +132636,965,literary adaptation,1185305294 +132636,969,literary adaptation,1191245326 +132636,976,literary adaptation,1185305259 +132636,1084,biopic,1185303637 +132636,1090,Vietnam war,1196103481 +132636,1103,youth,1185305048 +132636,1136,absurd,1197914815 +132636,1136,medieval,1197914834 +132636,1161,literary adaptation,1185303300 +132636,1193,literary adaptation,1185303391 +132636,1206,dystopia,1197915205 +132636,1206,literary adaptation,1185303166 +132636,1208,Vietnam war,1188257710 +132636,1213,mafia,1197915947 +132636,1222,Vietnam war,1188258280 +132636,1225,biopic,1185303221 +132636,1225,Wolfgang Amadeus Mozart,1197915248 +132636,1237,medieval,1197914843 +132636,1251,movie business,1196717991 +132636,1262,concentration camp,1197915938 +132636,1262,historical,1185305200 +132636,1262,World War II,1188258360 +132636,1272,biopic,1197916316 +132636,1272,World War II,1197916316 +132636,1281,Adolf Hitler,1197914430 +132636,1281,Nazi Germany,1188258354 +132636,1284,literary adaptation,1185303205 +132636,1288,mockumentary,1139656880 +132636,1293,biopic,1185303019 +132636,1293,India,1188258288 +132636,1293,Mahatma Gandhi,1197914880 +132636,1337,literary adaptation,1189507229 +132636,1584,literary adaptation,1185305276 +132636,1747,political,1204996888 +132636,1748,dystopia,1197915496 +132636,1884,biopic,1185303531 +132636,1884,drugs,1188258231 +132636,1884,Hunter S. Thompson,1197914497 +132636,1884,literary adaptation,1185303542 +132636,1913,literary adaptation,1185302935 +132636,1927,literary adaptation,1185305754 +132636,1927,World War I,1188257595 +132636,1944,World War II,1188258273 +132636,1960,biopic,1185305171 +132636,2009,dystopia,1197916420 +132636,2028,World War II,1200958365 +132636,2067,literary adaptation,1185303554 +132636,2067,revolution,1197916693 +132636,2067,Russia,1197914570 +132636,2067,Russian revolution,1197916693 +132636,2114,literary adaptation,1185305081 +132636,2117,dystopia,1185304860 +132636,2117,literary adaptation,1185304860 +132636,2160,literary adaptation,1185304822 +132636,2178,strangulation,1197914490 +132636,2194,mafia,1197916538 +132636,2287,ants,1196717361 +132636,2488,voyeurism,1197914246 +132636,2644,literary adaptation,1185305267 +132636,2731,youth,1185303042 +132636,2927,adultery,1197916616 +132636,2943,historical,1185305164 +132636,2944,World War II,1188258094 +132636,3062,World War II,1197915068 +132636,3148,abortion,1203881960 +132636,3235,biopic,1197914104 +132636,3235,Hunter S. Thompson,1197914104 +132636,3435,literary adaptation,1200332489 +132636,3503,literary adaptation,1185302946 +132636,3535,literary adaptation,1185304975 +132636,3578,ancient Rome,1211229650 +132636,3654,literary adaptation,1185305381 +132636,3723,literary adaptation,1196717068 +132636,3730,espionage,1197916299 +132636,3730,paranoia,1197916299 +132636,3742,political,1196717283 +132636,3788,photography,1197292718 +132636,4188,ballet,1197915148 +132636,4188,biopic,1188258413 +132636,4188,Hans Christian Andersen,1197915148 +132636,4191,swinging sixties,1188257636 +132636,4223,World War II,1190024150 +132636,4234,espionage,1185304769 +132636,4234,literary adaptation,1185304769 +132636,4234,Panama,1197916394 +132636,4234,South America,1197916394 +132636,4320,historical,1197916624 +132636,4320,USA,1197916624 +132636,4338,air war,1205694002 +132636,4338,leadership,1205693998 +132636,4338,World War II,1205693998 +132636,4349,literary adaptation,1185303189 +132636,4407,El Salvador,1197916442 +132636,4407,photography,1197916442 +132636,4407,South America,1197916442 +132636,4865,19th century,1197914478 +132636,4865,Jack the Ripper,1197914478 +132636,4865,London,1197914478 +132636,4976,biopic,1185303476 +132636,4976,Iris Murdoch,1197914369 +132636,5171,literary adaptation,1212424026 +132636,5180,punk,1185303133 +132636,5348,Hollywood,1188258436 +132636,5348,movie business,1188258436 +132636,5377,literary adaptation,1188257508 +132636,5380,literary adaptation,1188258470 +132636,5445,dystopia,1185302970 +132636,5445,literary adaptation,1185302958 +132636,5508,Manchester,1197915884 +132636,5528,photography,1197292703 +132636,5528,stalker,1197292693 +132636,5608,prison,1203358009 +132636,5666,literary adaptation,1188825809 +132636,5680,biopic,1185304967 +132636,5791,biopic,1185305247 +132636,5791,Frida Kahlo,1197915977 +132636,5816,literary adaptation,1188258420 +132636,5956,New York,1197915964 +132636,6439,World War II,1188257729 +132636,6441,World War II,1188257786 +132636,6591,Catholicism,1196716642 +132636,6591,historical,1202750738 +132636,6591,Ireland,1202750738 +132636,6591,religion,1185303089 +132636,6660,ballet,1186847446 +132636,6671,biopic,1185303025 +132636,6671,schizophrenia,1197914902 +132636,6724,Great Depression,1197915129 +132636,6777,historical,1185304890 +132636,6787,biopic,1185303234 +132636,6787,conspiracy,1188257557 +132636,7064,fairy-tale adaptation,1188257844 +132636,7065,Ku Klux Klan,1197915528 +132636,7087,literary adaptation,1185302929 +132636,7143,Japan,1197915505 +132636,7153,literary adaptation,1185305101 +132636,7371,political,1197915181 +132636,7388,biopic,1185304948 +132636,7720,literary adaptation,1185303152 +132636,7769,historical,1185305179 +132636,7820,medieval,1197915285 +132636,7820,religion,1185303271 +132636,7841,literary adaptation,1185305436 +132636,7980,World War II,1197916593 +132636,8341,literary adaptation,1185304843 +132636,8398,Noel Coward,1185302855 +132636,8622,conspiracy,1188258219 +132636,8622,political,1196717119 +132636,8622,terrorism,1197914518 +132636,8622,USA,1197914518 +132636,8714,biopic,1203358135 +132636,8714,Cole Porter,1203358121 +132636,8765,literary adaptation,1197292774 +132636,8779,World War II,1186341394 +132636,8873,biopic,1185303404 +132636,8873,Che Guevara,1197914287 +132636,8882,split personality,1204484133 +132636,25923,Charles Dickens,1197914446 +132636,25923,literary adaptation,1188258375 +132636,26131,colonialism,1204484078 +132636,26131,historical,1204484078 +132636,26230,hypnosis,1196715173 +132636,27850,globalisation,1185305012 +132636,27850,Tampere,1185305012 +132636,30707,boxing,1197915713 +132636,30820,paedophilia,1185303246 +132636,31410,historical,1196717595 +132636,31410,Nazi Germany,1188258149 +132636,31410,World War II,1188258125 +132636,32649,fascism,1205693939 +132636,32649,homosexuality,1205693939 +132636,32674,literary adaptation,1188258487 +132636,37545,literary adaptation,1185303282 +132636,39183,homosexuality,1196715252 +132636,39183,literary adaptation,1196715243 +132636,39292,historical,1185304900 +132636,39292,political,1196717516 +132636,39292,USA,1197916234 +132636,39869,political,1197914986 +132636,40870,homosexuality,1189507265 +132636,41566,literary adaptation,1185305430 +132636,46559,Guantanamo,1197915360 +132636,46559,political,1196716872 +132636,46559,USA,1197915360 +132636,47999,religion,1203882131 +132636,48738,historical,1185304882 +132636,48738,Idi Amin,1197916358 +132636,49272,literary adaptation,1196715852 +132647,111,Can't remember,1150745607 +132647,296,Can't remember,1150746028 +132647,296,Quentin Tarantino,1153173333 +132647,608,Can't remember,1150745776 +132647,678,good,1150822215 +132647,858,Can't remember,1150759801 +132647,858,classic,1150759801 +132647,858,movie to see,1150822638 +132647,903,Alfred Hitchcock,1150835382 +132647,903,Can't remember,1150745752 +132647,903,movie to see,1150828743 +132647,923,Orson Welles,1150835917 +132647,930,Alfred Hitchcock,1150833927 +132647,1193,Milos Forman,1150741854 +132647,1201,Sergio Leone,1150833228 +132647,1201,spaghetti western,1150833232 +132647,1208,Francis Ford Copolla,1150833243 +132647,1218,John Woo,1150840045 +132647,1228,movie to see,1150828701 +132647,1248,Orson Welles,1150829044 +132647,1348,old classic,1153057163 +132647,1789,movie to see,1150774657 +132647,1945,Marlon Brando,1150833766 +132647,2028,Can't remember,1150835608 +132647,2186,movie to see,1150828679 +132647,2726,Can't remember,1150743066 +132647,2726,Stanley Kubrick,1150743111 +132647,2959,Can't remember,1150835910 +132647,3174,Milos Forman,1150834853 +132647,3307,very good,1150776227 +132647,3629,classic,1150835087 +132647,3683,Coen Brothers,1150833505 +132647,3730,Francis Ford Copolla,1150834995 +132647,3949,Darren Aronofsky,1150835865 +132647,4235,very good,1150776055 +132647,4546,movie to see,1150761439 +132647,5147,Can't remember,1150828763 +132647,5147,Ingmar Bergman,1150835448 +132647,5147,movie to see,1150828763 +132647,5291,Can't remember,1150760038 +132647,5291,movie to see,1150828601 +132647,5618,anime,1150828724 +132647,5782,good,1150822304 +132647,6669,Akira Kurosawa,1153173377 +132647,6818,Russian,1150833894 +132647,6920,Jean-Pierre Melville,1153174231 +132647,7234,old classic,1153057187 +132647,7361,Can't remember,1150760990 +132647,7925,Kurosawa,1150821988 +132647,7925,movie to see,1150822255 +132647,7926,Can't remember,1150760014 +132647,7926,movie to see,1150760014 +132647,7934,Woody Allen,1153059088 +132647,25753,stroheim,1150835466 +132647,26052,Robert Bresson,1153174121 +132647,26082,edo,1170113617 +132647,26242,Steven Spielberg,1150835545 +132647,26349,movie to see,1150833626 +132647,26840,movie to see,1150761664 +132647,27592,movie to see,1150760170 +132647,27773,seen,1153055988 +132647,39381,Australian,1150828934 +132647,39381,movie to see,1150834684 +132647,44195,movie to see,1150761421 +132647,46967,vanxo,1168811626 +132647,48738,want to see,1167744225 +132664,116797,true story,1450145077 +132684,94466,dark,1429223061 +132684,94466,technology,1429223061 +132684,94466,thought-provoking,1429223061 +132697,78836,camerawork,1439779634 +132697,78836,Mind Games,1439779638 +132697,78836,psychedelic,1439779631 +132699,7439,John Travolta,1395610587 +132699,27773,revenge,1395604048 +132699,34150,Cheesy,1395609034 +132699,46322,Huo Yuanjia,1395600354 +132699,48678,bad acting,1395614797 +132699,48678,gore,1395614802 +132699,53464,bad acting,1395609090 +132699,53464,Cheesy,1395609101 +132699,77561,Don Cheadle,1395610227 +132699,86332,Bad Adaptation,1395610407 +132699,86332,cheesy,1395609169 +132699,86332,Chick Flick,1395609219 +132699,86332,Corny,1395609177 +132699,89745,Bad Adaptation,1395611123 +132699,89745,Corny,1395609625 +132699,89745,humor,1395609844 +132699,89745,predictable,1395609857 +132699,95510,Bad Adaptation,1395610328 +132699,95510,Corny,1395610394 +132699,102125,bad adaptation,1395610268 +132699,102125,Don Cheadle,1395608658 +132699,102125,predictable,1395608642 +132699,102125,romance,1395610299 +132699,102125,shallow plot,1395608632 +132699,106072,Bad Adaptation,1395610437 +132699,106072,Chick Flick,1395609607 +132699,106072,Corny,1395609258 +132699,106072,Jane Foster,1395609408 +132699,107348,racist humor,1396235521 +132699,112852,groot,1422317283 +132699,112852,space,1422317269 +132725,260,Science Fiction,1442057712 +132725,260,space action,1442057728 +132727,1270,adventure,1232824972 +132727,1270,comedy,1232824966 +132727,1270,sci-fi,1232824963 +132727,1270,teen,1232824976 +132727,1270,time travel,1232824961 +132727,1625,action,1232824925 +132727,1625,psychological,1232824922 +132727,1625,twist ending,1232824865 +132727,6378,caper,1232824748 +132727,6378,con men,1232824763 +132738,78469,action packed,1280833336 +132738,78469,cheesy,1280833346 +132738,78469,Funny,1280833335 +132738,78469,good casting,1280833336 +132738,78469,jessica biel,1280833343 +132751,142608,portugal,1442764203 +132775,296,cult film,1367614767 +132775,296,Quentin Tarantino,1367614746 +132775,296,Samuel L. Jackson,1367614749 +132775,1387,AFI 100 (Movie Quotes),1367535297 +132775,1387,classic,1367535302 +132775,1387,music,1367535306 +132775,1387,ocean,1367535290 +132775,1387,shark,1367535288 +132775,1387,Steven Spielberg,1367535275 +132775,1387,suspense,1367535294 +132775,1982,character:Michael Myers,1367534916 +132775,1982,classic,1367534921 +132775,1982,John Carpenter,1367534910 +132775,1982,serial killer,1367534907 +132775,1982,slasher,1367534929 +132775,2107,character:Michael Myers,1367534984 +132775,2107,Jamie Lee Curtis,1367534980 +132775,2107,Michael Myers,1367534977 +132775,2107,serial killer,1367534991 +132775,4105,campy,1367498280 +132775,4105,Cult classic,1367498263 +132775,4105,demons,1367498281 +132775,4105,low budget,1367498284 +132775,4105,rape,1367498295 +132775,4124,Awful...just awful,1367535335 +132775,4124,ridiculous,1367535330 +132775,4262,Al Pacino,1367535025 +132775,4262,corruption,1367535043 +132775,4262,drugs,1367535033 +132775,4262,gangsters,1367535035 +132775,4262,mafia,1367535030 +132775,4262,remake,1367535054 +132775,5047,parody,1367535576 +132775,5047,ridiculous,1367535571 +132775,5047,Whacky,1367535583 +132775,5165,atmospheric,1367535464 +132775,5165,Lucio Fulci,1367535469 +132775,5165,ZOMBIES,1367535472 +132775,6731,George A. Romero,1367535420 +132775,6731,horror,1367535424 +132775,7360,Good remake,1367535121 +132775,7360,Zombie Movie,1367535109 +132775,7360,zombies,1367535115 +132775,7387,George A. Romero,1367535167 +132775,7387,survival,1367535173 +132775,7387,zombies,1367535175 +132775,52245,hilarious,1367535722 +132775,52245,ice skating,1367535723 +132775,52245,movie to see,1367535725 +132775,52245,Will Ferrell,1367535727 +132775,67073,zombies,1367535625 +132781,47099,inspirational,1432357079 +132781,47099,true story,1432357103 +132781,72998,Especial effects and visuals,1432359475 +132781,72998,thought-provoking,1432359502 +132781,74458,plot twist,1432357173 +132781,74458,Psychological Thriller,1432357157 +132807,29,Legenda PT-BR,1150128410 +132807,147,drug abuse,1367940853 +132807,147,drug addiction,1367940520 +132807,170,geeks,1367940769 +132807,224,Madness,1180974800 +132807,318,powerful ending,1367940911 +132807,441,weed,1367940609 +132807,599,gunfight,1367940835 +132807,913,highly quotable,1367940745 +132807,1061,sexual abuse,1367940968 +132807,1089,dark humor,1367940926 +132807,1136,funniest movies,1367941003 +132807,1193,Madness,1180974761 +132807,1193,powerful ending,1367940911 +132807,1194,weed,1367940610 +132807,1213,gangster,1367940558 +132807,1213,Legenda PT-BR,1149860424 +132807,1221,highly quotable,1367940745 +132807,1240,highly quotable,1367940745 +132807,1262,Legenda PT-BR,1149860487 +132807,1266,gunfight,1367940836 +132807,1266,Legenda PT-BR,1149861952 +132807,1284,Legenda PT-BR,1152981501 +132807,1288,Legenda PT-BR,1150747517 +132807,1299,powerful ending,1367940912 +132807,1340,Legenda PT-BR,1149858149 +132807,1466,gangster,1367940558 +132807,1466,Legenda PT-BR,1149862030 +132807,1699,Madness,1180974642 +132807,1785,gangster,1367940558 +132807,1884,drug abuse,1367940853 +132807,1884,drugs,1171297841 +132807,1923,funniest movies,1367941003 +132807,1950,race issues,1367940948 +132807,2134,geeks,1367940769 +132807,2329,Legenda PT-BR,1149861071 +132807,2329,race issues,1367940948 +132807,2361,Legenda PT-BR,1150981872 +132807,2401,gunfight,1367940837 +132807,2791,funniest movies,1367941003 +132807,2862,pornography,1367929634 +132807,3019,drug abuse,1367940853 +132807,3075,Madness,1180974776 +132807,3075,sexual abuse,1367940968 +132807,3108,eccentricity,1367940791 +132807,3451,race issues,1367940948 +132807,3671,race issues,1367940948 +132807,3681,Legenda PT-BR,1149860523 +132807,3831,marijuana,1171297753 +132807,3871,gunfight,1367940836 +132807,3949,powerful ending,1367940911 +132807,4011,dark humor,1367940926 +132807,4034,drug abuse,1367940853 +132807,4239,drug abuse,1367940853 +132807,4262,highly quotable,1367940745 +132807,4327,gunfight,1367940836 +132807,4406,gunfight,1367940836 +132807,4776,undercover cop,1367940873 +132807,4878,Legenda PT-BR,1149860964 +132807,4878,Madness,1180974651 +132807,4979,eccentricity,1367940791 +132807,5954,Legenda PT-BR,1149861149 +132807,6016,powerful ending,1367940911 +132807,6197,Madness,1180974894 +132807,6214,brutality,1367929570 +132807,6591,sexual abuse,1367940968 +132807,6870,powerful ending,1367940912 +132807,7008,pornography,1367929635 +132807,7025,Legenda PT-BR,1149859519 +132807,7071,Madness,1180974668 +132807,7123,drug addiction,1367940520 +132807,7123,Madness,1180974612 +132807,7235,brutality,1367929569 +132807,7304,Legenda PT-BR,1149866423 +132807,7587,Legenda PT-BR,1149860606 +132807,8690,Legenda PT-BR,1151957677 +132807,8807,weed,1367940610 +132807,8865,Legenda PT-BR,1149866589 +132807,25788,gangster,1367940559 +132807,26242,Legenda PT-BR,1149857925 +132807,26662,Legenda PT-BR,1149860734 +132807,27592,brutality,1367929569 +132807,27741,Legenda PT-BR,1149859586 +132807,27878,Legenda PT-BR,1149861719 +132807,30749,Legenda PT-BR,1149860234 +132807,30812,eccentricity,1367940792 +132807,33454,Madness,1180974661 +132807,37733,Legenda PT-BR,1149860926 +132807,38061,dark humor,1367940927 +132807,39427,Legenda PT-BR,1151964635 +132807,40278,Legenda PT-BR,1149860881 +132807,40870,Québécois,1204731939 +132807,41863,Legenda PT-BR,1149861106 +132807,41997,Legenda PT-BR,1149857947 +132807,44195,Legenda PT-BR,1149857894 +132807,44195,sarcasm,1367940822 +132807,57669,dark humor,1367940926 +132807,61323,dark humor,1367940926 +132807,64575,sexual abuse,1367940968 +132808,260,crime,1437140264 +132808,260,espionage,1437140232 +132808,260,mystery,1437140251 +132808,260,organized crime,1437140307 +132808,260,spy,1437140236 +132808,318,genius,1437505013 +132808,318,jailbreak,1437505013 +132808,318,mystery,1437505013 +132808,7762,espionage,1443193968 +132808,59369,CIA,1443194086 +132808,89085,Mossad,1443194408 +132808,89753,Cold War,1443592131 +132808,89753,confusing,1443592142 +132808,89753,Spies,1443592123 +132828,260,cult classic,1434131122 +132828,260,spaceships,1434131171 +132866,62376,adventure,1280953486 +132866,69951,imaginative,1280953340 +132866,69951,No plot!!!,1280953339 +132866,76175,acting and story,1280953435 +132866,76175,Special Effects,1280953435 +132880,260,classic,1442873895 +132880,260,Harrison Ford,1442873905 +132880,260,Science Fiction,1442873883 +132885,356,S M A R T MOVIE!!!,1140258043 +132891,58922,drama,1425371299 +132891,58922,hungarian,1425371299 +132891,58922,sports,1425371299 +132891,80004,based on a true story,1424003865 +132891,80004,drama,1424003865 +132891,80004,romance,1424003865 +132926,31,based on a book,1407565280 +132926,31,inspirational,1407565284 +132926,31,social commentary,1407565276 +132926,1094,twist ending,1407565493 +132926,1225,Oscar (Best Actor),1407565188 +132926,1225,Oscar (Best Picture),1407565198 +132926,1225,true story,1407565193 +132926,1238,heartwarming,1407565378 +132926,1238,quirky,1407565374 +132926,1270,based on a book,1407565255 +132926,1270,sci-fi,1407565259 +132926,1270,Steven Spielberg,1407565251 +132926,1296,adapted from:book,1407565026 +132926,1296,beautiful scenery,1407565017 +132926,1296,Daniel Day-Lewis,1407565022 +132926,1339,vampires,1407565305 +132926,1580,aliens,1407565704 +132926,1580,twist ending,1407565700 +132926,1791,easily confused with other movie(s) (title),1407565100 +132926,1791,Nudity (Topless - Notable),1407565107 +132926,2248,high school,1407565063 +132926,2248,John Cusack,1407565059 +132926,2248,Romance,1407565068 +132926,2692,nonlinear,1407565047 +132926,2692,surreal,1407565038 +132926,2692,time travel,1407565033 +132926,2762,twist ending,1407565473 +132926,3044,twist ending,1407565561 +132926,3083,homosexuality,1407566320 +132926,3083,Spanish,1407566201 +132926,4973,atmospheric,1407565214 +132926,4973,cult film,1407565207 +132926,4973,quirky,1407565203 +132926,7323,Cold War,1407565328 +132926,7323,historical,1407565332 +132926,27815,heartwarming,1407565267 +132926,27815,inspirational,1407565271 +132926,27815,music,1407565264 +132926,33493,fantasy,1407565739 +132926,33493,space,1407565736 +132926,33493,twist ending,1407565733 +132926,47610,twist ending,1407565356 +132926,56367,cult film,1407565363 +132926,63992,based on a book,1407565124 +132926,63992,fantasy,1407565116 +132926,63992,vampires,1407565120 +132926,71464,coen brothers,1407564600 +132926,88125,based on a book,1407565342 +132926,88125,fantasy,1407565345 +132926,88125,magic,1407565339 +132926,89904,movie business,1407565229 +132926,89904,Oscar (Best Picture),1407565246 +132926,89904,romance,1407565236 +132926,103249,Brad Pitt,1407566089 +132926,103249,zombies,1407566084 +132926,106487,based on a book,1407564672 +132926,106487,dystopia,1407564666 +132926,106487,social commentary,1407564677 +132927,260,cult classic,1432818886 +132927,260,Star Wars,1432818900 +132971,2278,car chase,1420130205 +132990,260,dark,1436882687 +132990,260,love,1436882659 +132997,1,animation,1294130548 +132997,1,Pixar,1294130548 +132997,260,Harrison Ford,1294129861 +132997,260,Sci-Fi,1294129861 +132997,260,Star Wars,1294129861 +132997,316,Not Michael Shanks and RDA,1294130580 +132997,316,sci-fi,1294130580 +132997,364,animation,1294130421 +132997,364,Hans Zimmer,1294130421 +132997,364,soundtrack,1294130421 +132997,480,dinosaurs,1294130815 +132997,593,psychology,1294130722 +132997,593,twists & turns,1294130722 +132997,595,animation,1294130887 +132997,671,comedy,1294130403 +132997,671,parody,1294130403 +132997,671,sci-fi,1294130403 +132997,733,Nicolas Cage,1294129696 +132997,910,classic,1294130686 +132997,914,Audrey Hepburn,1294130743 +132997,914,classic,1294130743 +132997,954,classic,1294130765 +132997,954,James Stewart,1294130765 +132997,1033,animals,1294131083 +132997,1033,animation,1294131083 +132997,1073,musical,1294130513 +132997,1136,british comedy,1294130774 +132997,1136,comedy,1294130774 +132997,1196,Harrison Ford,1294129848 +132997,1196,sci-fi,1294129837 +132997,1196,Star Wars,1294129848 +132997,1197,comedy,1294130338 +132997,1197,fantasy,1294130370 +132997,1198,Action,1294129886 +132997,1198,Harrison Ford,1294129886 +132997,1210,Harrison Ford,1294129832 +132997,1210,sci-fi,1294129832 +132997,1210,Star Wars,1294129832 +132997,1291,Harrison Ford,1294130834 +132997,1411,Kenneth Branagh,1294131028 +132997,1721,Kate Winslet,1294130946 +132997,1721,Leonardo DiCaprio,1294130946 +132997,2005,ugh,1294131207 +132997,2085,animals,1294130897 +132997,2085,animation,1294130897 +132997,2085,Dalmatian Plantation,1294130909 +132997,2194,gangsters,1294131150 +132997,2394,animated,1294130386 +132997,2394,egypt,1294130386 +132997,2394,Hans Zimmer,1294130386 +132997,2394,soundtrack,1294130386 +132997,2398,James Stewart,1294130985 +132997,2398,Stress,1294130985 +132997,2571,Keanu Reeves,1294130791 +132997,2571,sci-fi,1294130791 +132997,2628,Ewan McGregor,1294130635 +132997,2628,sci-fi,1294130635 +132997,2628,Star Wars,1294130635 +132997,2762,twist ending,1294130699 +132997,2804,christmas movie,1294131233 +132997,2804,i hate this movie with a fiery passion,1294131233 +132997,2804,really really bad,1294131233 +132997,2804,ugh,1294131233 +132997,2863,Beatles,1294131021 +132997,2959,psychology,1294130840 +132997,3159,animation,1294131091 +132997,3409,stress,1294131188 +132997,3526,comedy,1294130732 +132997,3793,superhero,1294130468 +132997,4232,Antonio Banderas,1294131157 +132997,4306,animation,1294130954 +132997,4886,animation,1294130781 +132997,4886,Pixar,1294130781 +132997,4963,comedy,1294129904 +132997,4963,crime,1294129904 +132997,4963,George Clooney,1294129904 +132997,4963,Matt Damon,1294129904 +132997,4993,fantasy,1294130798 +132997,5349,comic book,1294129686 +132997,5349,James Franco,1294130668 +132997,5349,superhero,1294129691 +132997,5618,animated,1294130267 +132997,5618,soundtrack,1294130267 +132997,5618,Studio Ghibli,1294130267 +132997,5952,Elijah Wood,1294130997 +132997,5952,fantasy,1294130997 +132997,6377,animation,1294130444 +132997,6377,Pixar,1294130444 +132997,7153,Elijah Wood,1294131006 +132997,7153,fantasy,1294131006 +132997,8961,animated,1294129916 +132997,8961,comedy,1294129916 +132997,8961,family,1294129916 +132997,8961,superhero,1294129916 +132997,33794,Christian Bale,1294130458 +132997,33794,Cillian Murphy,1294130458 +132997,33794,Hans Zimmer,1294130458 +132997,33794,soundtrack,1294130458 +132997,33794,superhero,1294129775 +132997,34405,comedy,1294130287 +132997,34405,sci-fi,1294130287 +132997,41566,Narnia,1294130193 +132997,41566,soundtrack,1294130193 +132997,50872,Pixar,1294131180 +132997,50872,ugh,1294131180 +132997,58559,Christian Bale,1294130860 +132997,58559,Maggie Gyllenhaal,1294130860 +132997,58559,superhero,1294130860 +132997,59315,RDJ,1294129786 +132997,59315,superhero,1294129779 +132997,59501,fantasy,1294130879 +132997,59501,Narnia,1294130870 +132997,59501,soundtrack,1294130879 +132997,60684,hot ladies,1294131275 +132997,60684,superhero,1294131199 +132997,60684,ugh,1294131199 +132997,66934,comedy,1294131124 +132997,66934,Felicia Day,1294131124 +132997,66934,Neil Patrick Harris,1294131124 +132997,66934,sad ending,1294131124 +132997,66934,sci-fi,1294131124 +132997,66934,twist downer ending,1294131124 +132997,68358,hot ladies,1294130648 +132997,68358,sci-fi,1294130648 +132997,69757,I hate Summer,1294130927 +132997,69757,Joseph Gordon-Levitt,1294130927 +132997,73017,Hans Zimmer,1294129879 +132997,73017,Jude Law,1294129879 +132997,73017,RDJ,1294129879 +132997,73017,soundtrack,1294130180 +132997,73017,Victorian,1294129879 +132997,74946,bromantic comedy,1300151054 +132997,74946,Jay Baruchel,1300151054 +132997,76093,animated,1294130164 +132997,76093,Jay Baruchel,1294130164 +132997,76093,soundtrack,1294130164 +132997,77561,hot ladies,1294131422 +132997,77561,RDJ,1294129794 +132997,77561,Scarlett Johansson,1294131422 +132997,77561,superhero,1294129794 +132997,79132,Hans Zimmer,1294130119 +132997,79132,Joseph Gordon-Levitt,1294130129 +132997,79132,soundtrack,1294130171 +132997,81847,animation,1294130562 +132997,81847,musical,1294130562 +132997,82169,Narnia,1294131137 +132997,82169,Will Poulter,1294131137 +132997,82461,hot ladies,1294130234 +132997,82461,sci-fi,1294130234 +132997,82461,soundtrack,1294130234 +133004,8371,sci-fi,1446663834 +133012,50,organized crime,1314761903 +133012,160,Michael Crichton,1314840700 +133012,1653,dystopia,1314839746 +133012,3000,dystopia,1314763868 +133012,3000,surreal,1314763873 +133012,3578,Rome,1314766382 +133012,6350,anime,1314763599 +133012,6350,Studio Ghibli,1314763593 +133012,6711,atmospheric,1328384569 +133012,6711,bittersweet,1328384589 +133012,6711,complex characters,1328384587 +133012,6711,intelligent,1328384582 +133012,6711,relationships,1328384575 +133012,6711,Scarlett Johansson,1328384564 +133012,7153,fantasy,1314761609 +133012,26662,Studio Ghibli,1314763969 +133012,52241,Heist,1314765852 +133012,54997,Christian Bale,1314761855 +133012,54997,Russell Crowe,1314761851 +133012,77328,10/10,1314763703 +133012,81845,Oscar (Best Picture),1314761939 +133012,82767,no sex scenes,1316456302 +133012,84187,amazing artwork,1314761978 +133012,84392,poor camera work,1432188435 +133012,91529,unsatisfying ending,1342879007 +133012,109243,contemplative,1431844579 +133012,109243,gritty,1431844579 +133012,109243,mature,1431844579 +133012,113642,cinematography,1421481654 +133012,113642,low key,1421481654 +133012,113642,slow,1421481654 +133012,113741,intelligent,1432182532 +133012,113741,tense,1432182536 +133018,2987,genious animations - love real - artificial mix,1137113589 +133019,4229,fun movie,1138341346 +133019,5459,good,1138341348 +133019,5459,intriguing,1138341349 +133044,276,sexy,1189478027 +133044,671,Not seen it,1189478067 +133044,1717,horrible,1189478099 +133044,3252,gothic,1189478091 +133044,3826,oddly moving,1189478014 +133044,3916,inspiring,1189478075 +133044,3967,NO good,1189477987 +133044,4270,ghosts/afterlife,1189478059 +133044,4975,awsome,1189478138 +133044,8622,revolutionary,1189478001 +133060,356,boredom,1323401952 +133060,377,action packed,1394404366 +133060,377,Keanu Reeves,1394404361 +133060,653,bittersweet,1323399812 +133060,653,dreamlike,1323399825 +133060,653,high fantasy,1323399823 +133060,1499,comedy,1323401936 +133060,1499,MATEO,1323401389 +133060,1499,why did it have to be snakes?,1323401414 +133060,1721,drama,1323399853 +133060,1721,love story,1323399856 +133060,1721,romance,1323399859 +133060,1721,survival,1323399860 +133060,1997,religion,1323401604 +133060,2762,ghosts,1323401671 +133060,2762,horror,1323401678 +133060,2762,mindfuck,1323401648 +133060,2762,suspense,1323401665 +133060,2762,touching,1323401667 +133060,3081,19th century,1446353111 +133060,3081,atmospheric,1446353081 +133060,3081,dark fantasy,1446353101 +133060,3081,Fantasy,1446353088 +133060,3081,Mystery,1446353090 +133060,3081,visually appealing,1446353079 +133060,3578,ancient Rome,1446500551 +133060,3578,Roman empire,1446500549 +133060,3578,Rome,1446500538 +133060,4720,atmospheric,1394403592 +133060,4993,beautifully filmed,1323400391 +133060,4993,high fantasy,1323400366 +133060,4993,music,1323400383 +133060,5026,atmospheric,1434632566 +133060,5618,alternate reality,1323400407 +133060,5618,anime,1323400409 +133060,5618,dreamlike,1323400411 +133060,5618,fairy tale,1323400422 +133060,5618,fantasy,1323400414 +133060,5618,hallucinatory,1323400424 +133060,5618,Japan,1323400430 +133060,5618,surreal,1323400428 +133060,5797,atmospheric,1434592833 +133060,5797,dreamlike,1434592830 +133060,6270,dreamlike,1434633283 +133060,6270,dreams,1434633285 +133060,6754,Dark,1323400194 +133060,6754,fantasy,1323400189 +133060,6754,gothic,1323400174 +133060,6754,heroine in tight suit,1323400198 +133060,6754,Kate Beckinsale,1323400180 +133060,6754,nocturnal,1323400184 +133060,6754,revenge,1323400203 +133060,7454,gothic,1323399739 +133060,7454,Hugh Jackman,1351817538 +133060,7454,Kate Beckinsale,1323399735 +133060,7454,werewolves,1323399726 +133060,8132,Roman Empire,1394404902 +133060,31696,demons,1323400257 +133060,31696,gothic,1323400268 +133060,31696,Keanu Reeves,1323400252 +133060,31696,supernatural,1323400262 +133060,36401,fairy tales,1434632891 +133060,48394,atmospheric,1351817170 +133060,48394,bittersweet,1351817162 +133060,48394,disturbing,1351817165 +133060,48394,fairy tale,1351817216 +133060,48394,military,1351817197 +133060,48394,surreal,1351817177 +133060,48394,violence,1351817207 +133060,48394,world war II,1351817185 +133060,48696,dark,1399365475 +133060,48696,reflective,1399365487 +133060,55118,rape,1394404026 +133060,56339,depressing,1394403656 +133060,56339,fairy tale,1394403652 +133060,56339,Guillermo del Toro,1394403643 +133060,56339,imaginary friend,1351816911 +133060,59387,beautiful,1394420541 +133060,59387,fantasy world,1394420547 +133060,59387,imagination,1394420545 +133060,59387,surreal,1434632020 +133060,60069,pixar,1394404780 +133060,60069,robots,1394404783 +133060,65682,dark,1323399778 +133060,67255,bisexual,1323843548 +133060,67255,dark,1323843559 +133060,67255,incest,1323844701 +133060,67255,investigation,1323843555 +133060,67255,murder,1323844676 +133060,67255,Nudity (Topless - Notable),1323844706 +133060,67255,racism,1323844671 +133060,67255,rape,1323844646 +133060,67255,suspense,1323844657 +133060,67255,violence,1323844654 +133060,68954,Pixar,1394405159 +133060,71745,dreamlike,1434669926 +133060,71745,fantasy world,1434669919 +133060,71745,imagination,1434669917 +133060,71745,Soundtrack,1434669921 +133060,71745,surreal,1434669924 +133060,72998,aliens,1323400308 +133060,72998,anti-war,1323400336 +133060,72998,beautiful,1323400318 +133060,72998,music,1323400332 +133060,72998,predictable,1446331440 +133060,72998,rebellion,1323400341 +133060,72998,romance,1323400321 +133060,72998,war,1323400347 +133060,78499,Comedy,1323400507 +133060,78499,Pixar,1323400475 +133060,78499,Pixar animation,1323400479 +133060,79132,alternate reality,1394404700 +133060,79132,dreamlike,1394404703 +133060,79132,fantasy,1394404707 +133060,79132,Ken Watanabe,1394404689 +133060,79132,Leonardo DiCaprio,1394404692 +133060,79132,thought-provoking,1394404697 +133060,79879,genital mutilation,1323401503 +133060,83134,absurd,1446330538 +133060,83134,funny,1446330489 +133060,83134,satire,1446330534 +133060,85397,cliche,1351817245 +133060,85397,dark fantasy,1323399686 +133060,85397,little red riding hood,1351817269 +133060,85397,love triangle,1351817300 +133060,85397,mystery,1351817263 +133060,85397,retelling,1351817336 +133060,85397,SUPERNATURAL ROMANCE,1351817286 +133060,86332,Chris Hemsworth,1323401850 +133060,86332,funny,1323400136 +133060,86332,Marvel,1323400127 +133060,86332,mythology,1323400044 +133060,86332,Norse,1323400088 +133060,86332,superhero,1323400123 +133060,89190,brutal,1351817457 +133060,89190,Jason Momoa,1351817468 +133060,89190,too much blood,1351817466 +133060,90374,cat killing,1399365786 +133060,97188,dumb ending,1380928709 +133060,97188,occult,1380928732 +133060,97188,overshowing,1380928717 +133060,97701,no plot,1351816696 +133060,98809,exaggerated,1446500893 +133060,109578,thrilling,1401693488 +133060,112515,Dog killing,1446332012 +133060,117529,dinosaurs,1447981877 +133060,117529,tyrannosaurus rex,1447981880 +133064,115713,futuristic,1436140139 +133064,115713,plot twist,1436140154 +133064,115713,sci-fi,1436140136 +133064,115713,thought provoking,1436140132 +133076,2762,plot twist,1440047750 +133076,2762,twist ending,1440047756 +133076,2959,Brad Pitt,1440047781 +133076,2959,philosophical,1440047789 +133076,2959,twist ending,1440047778 +133086,372,90s,1186111099 +133086,372,grunge,1186111099 +133086,724,teen,1186111118 +133086,838,period drama,1186111109 +133086,916,Audrey Hepburn,1186111263 +133086,916,black and white,1186111263 +133086,1244,black and white,1186111156 +133086,1244,classic,1186111156 +133086,1244,Woody Allen,1186111156 +133086,1907,animation,1186111200 +133086,2080,animation,1186111076 +133086,2096,animation,1186111240 +133086,2391,thriller,1186111190 +133086,3645,black and white,1186111415 +133086,3645,foreign,1186111415 +133086,5377,based on a book,1186111137 +133086,5618,animation,1186111182 +133086,5618,foreign,1186111182 +133114,1260,Fritz Lang,1182856607 +133118,1270,classic,1445785280 +133118,1270,inventor,1445785308 +133118,1270,rock and roll,1445785297 +133118,1270,time travel,1445785284 +133135,786,action,1172472153 +133135,786,Arnold Schwarzenegger,1172472158 +133135,786,railgun,1172472164 +133135,832,acting,1172472595 +133135,1198,action,1172473341 +133135,1222,military,1172472570 +133135,1222,Vietnam,1172472566 +133135,1358,billy bob thorton,1172473059 +133135,1586,Demi Moore,1172475142 +133135,1586,military,1172475137 +133135,2001,action,1172472280 +133135,2353,action-packed,1172471981 +133135,2353,exciting,1172471973 +133135,2763,Pierce Brosnan,1172472719 +133135,2763,thriller,1172472716 +133135,3527,Schwartzenegger,1172472100 +133135,3527,weapons,1172472107 +133135,3744,Samuel L.Jackson,1172474284 +133135,3994,Bruce Willis,1172472330 +133135,4085,action,1172472739 +133135,4085,Eddie Murphy,1172472744 +133135,5010,factual,1172472377 +133135,6537,action,1172472210 +133135,44665,Bruce Willis,1172473224 +133135,44665,Revenge,1172473232 +133168,260,classic,1435608330 +133168,260,masterpiece,1435608337 +133168,260,sci-fi,1435608321 +133168,111384,brutal,1437609388 +133168,111384,sad,1435609026 +133168,111384,thriller,1435609036 +133168,122882,action,1435609226 +133168,122882,desert,1435609226 +133168,122882,suspense,1435609226 +133171,293,love story,1438559083 +133171,318,classic,1438559353 +133171,318,encouragement,1438559353 +133171,318,tim burton,1438559353 +133171,3265,Chow Yun Fat,1438559166 +133186,25,intimate,1440354547 +133186,25,Nudity (Topless),1440354544 +133186,778,black comedy,1440351358 +133186,778,dark comedy,1440351356 +133186,778,great soundtrack,1440351383 +133186,778,Nudity (Full Frontal - Notable),1440351367 +133186,778,Nudity (Full Frontal),1440351365 +133186,1653,dystopia,1440351622 +133186,1653,Ethan Hawke,1440351640 +133186,1653,powerful ending,1440351632 +133186,1653,sci-fi,1440351624 +133186,1653,science fiction,1440351643 +133186,1653,thought-provoking,1440351627 +133186,1653,Uma Thurman,1440351629 +133186,1653,visually appealing,1440351636 +133186,1673,Nudity (Full Frontal),1440352683 +133186,1673,Nudity (Topless - Notable),1440352524 +133186,2571,alternate reality,1440350181 +133186,2571,Carrie-Anne Moss,1440350193 +133186,2571,dystopia,1440350172 +133186,2571,martial arts,1440350206 +133186,2571,sci-fi,1440350170 +133186,2571,thought-provoking,1440350209 +133186,2712,Nudity (Full Frontal - Notable),1440350802 +133186,2712,Nudity (Full Frontal),1440350812 +133186,2712,psychological,1440350806 +133186,2712,sexual,1440350809 +133186,2712,sexuality,1440350800 +133186,2712,voyeurism,1440351871 +133186,2858,dark comedy,1440351304 +133186,2858,great acting,1440351312 +133186,2858,Nudity (Topless),1440351318 +133186,2858,sexuality,1440351310 +133186,2858,thought-provoking,1440351307 +133186,2979,Nudity (Topless - Notable),1440354165 +133186,2979,nudity (topless),1440354163 +133186,3476,insanity,1440350034 +133186,3476,multiple realities,1440350057 +133186,3476,Nudity (Topless),1440350039 +133186,3476,surreal,1440350030 +133186,3476,twist ending,1440350048 +133186,3949,dark,1440351288 +133186,3949,Nudity (Full Frontal - Notable),1440351281 +133186,3949,Nudity (Full Frontal),1440351276 +133186,3949,psychological,1440351283 +133186,4390,controversial,1440354012 +133186,4848,Erotic,1440349996 +133186,4848,Nudity (Full Frontal - Notable),1440349983 +133186,4848,sexual,1440349998 +133186,4865,Nudity (Full Frontal),1440352463 +133186,4865,Nudity (Rear),1440352468 +133186,4865,Nudity (Topless),1440352465 +133186,4872,nudity (full frontal),1440353976 +133186,4872,sexuality,1440353974 +133186,4872,unsimulated sex,1440353972 +133186,5617,controversial,1440354214 +133186,5617,erotic,1440354197 +133186,5617,Nudity (Full Frontal),1440354208 +133186,5617,Nudity (Topless - Notable),1440354210 +133186,5617,sex,1440354203 +133186,5617,sexuality,1440354200 +133186,5617,sexy,1440354217 +133186,5891,Nudity (Full Frontal - Notable),1440354033 +133186,6281,Colin Farrell,1440353353 +133186,6334,nudity (topless - notable),1440354247 +133186,6365,alternate reality,1440350529 +133186,6365,thought-provoking,1440350532 +133186,7163,Uma Thurman,1440350419 +133186,7265,erotic,1440351439 +133186,7265,Nudity (Full Frontal - Notable),1440351447 +133186,7265,Nudity (Full Frontal),1440351441 +133186,7265,sexual,1440351444 +133186,7285,Nudity (Topless - Notable),1440354277 +133186,7285,Nudity (Topless),1440354280 +133186,7285,oral,1440354288 +133186,7285,sex,1440354283 +133186,8371,action,1440350488 +133186,8371,sci-fi,1440350491 +133186,8588,Heather Graham,1440352714 +133186,8588,Nudity (Full Frontal - Notable),1440352708 +133186,8588,nudity (full frontal),1440352710 +133186,8588,Nudity (Topless - Notable),1440352712 +133186,8644,futuristic,1440350296 +133186,8644,thought-provoking,1440350303 +133186,8966,homosexuality,1440354331 +133186,8966,polyamory,1440354341 +133186,8966,queer,1440354338 +133186,8966,sex,1440354326 +133186,8966,sexuality,1440354328 +133186,27727,complex characters,1440354513 +133186,27727,love story,1440354520 +133186,27727,Nudity (Full Frontal),1440354517 +133186,27773,Nudity (Full Frontal),1440354367 +133186,27773,twist ending,1440354363 +133186,33585,real sex,1440353987 +133186,33585,sex,1440353989 +133186,34319,dystopia,1440350571 +133186,34319,Scarlett Johansson,1440350391 +133186,34319,sci-fi,1440350576 +133186,34319,surprise ending,1440350565 +133186,42723,Nudity (Topless),1440354053 +133186,48744,erotic,1440353947 +133186,48744,gay,1440353949 +133186,48744,Nudity (Full Frontal),1440353953 +133186,48744,orgy,1440353955 +133186,48744,queer,1440353942 +133186,48744,unsimulated sex scenes,1440353939 +133186,51412,psychic powers,1440350444 +133186,51412,supernatural powers,1440350440 +133186,53318,Nudity (Full Frontal),1440351773 +133186,53435,Nudity (Topless),1440354071 +133186,66171,psychic powers,1440350460 +133186,79132,alternate reality,1440350134 +133186,79132,surreal,1440350145 +133186,79132,thought-provoking,1440350131 +133186,81591,dark,1440351249 +133186,81591,sex,1440351254 +133186,81591,visceral,1440351259 +133186,92694,Eva Green,1440351559 +133186,92694,nudity (topless),1440351557 +133186,95875,Kate Beckinsale,1440350327 +133186,101243,Unsimulated Sex,1440353875 +133186,105355,nudity (full frontal),1440353784 +133186,105355,unsimulated sex,1440353794 +133186,106920,thought-provoking,1440351572 +133186,108727,sexuality,1440353862 +133186,108727,unsimulated sex,1440353860 +133186,109374,Ralph Fiennes,1440351742 +133186,109673,female nudity,1440351505 +133186,109673,nudity (topless),1440351503 +133186,109848,nudity (full frontal),1440354414 +133186,111529,homosexuality,1440352987 +133186,116128,Heather Graham,1440352622 +133186,132922,nudity (full frontal),1440353908 +133186,132922,unsimulated sex,1440353910 +133193,318,励志,1429697949 +133193,318,坚强,1429697949 +133193,318,奋斗,1429697949 +133213,54290,Why the terrorists hate us,1194116837 +133221,296,bruce willis,1438256199 +133221,296,cult film,1438256389 +133221,296,john travolta,1438256199 +133221,296,masterpiece,1438256398 +133221,296,Quentin Tarantino,1438256385 +133221,1729,great soundtrack,1438256362 +133221,1729,Quentin Tarantino,1438256350 +133221,4874,Kevin Spacey,1438256762 +133221,6155,Matthew McConaughey,1438256849 +133221,7099,Hayao Miyazaki,1438256551 +133221,7099,Studio Ghibli,1438256549 +133221,56367,comedy,1438256234 +133221,56367,cult film,1438256219 +133221,56367,Ellen Page,1438256209 +133221,67734,Jesse Eisenberg,1438256109 +133221,67734,Kristen Stewart,1438256112 +133221,67734,Ryan Reynolds,1438256115 +133221,96821,Emma Watson,1438256253 +133242,286,bad story,1373468659 +133242,286,fbb,1353769101 +133242,286,Muscles,1353769103 +133242,286,Strong Women,1353769672 +133242,286,Sue Price,1353769105 +133242,4367,Girl Power,1353769615 +133242,4367,heroine in tight suit,1353769613 +133242,4367,Kick-Butt Women,1353769628 +133242,4367,strong women,1353769610 +133242,4666,fbb,1353770581 +133242,4666,Raye Hollitt,1353770583 +133242,6564,fighting,1353769573 +133242,6564,heroine in tight suit,1353769570 +133242,6564,Kick-Butt Women,1353769577 +133242,6564,martial arts,1353769581 +133242,6564,Strong Women,1353769585 +133242,6754,fangs,1373469019 +133242,6754,female vampre,1373469015 +133242,6754,vampire,1373469009 +133242,6754,vampires,1373469007 +133242,30707,boxing,1373468960 +133242,30707,sports,1373468949 +133242,30707,Strong female,1373468932 +133242,30707,violence,1373468944 +133270,260,action,1440164494 +133270,260,Science Fiction,1440164484 +133273,364,Disney,1271018524 +133273,1258,Stephen King,1271018137 +133273,1721,Oscar (Best Picture),1271018365 +133273,2329,Edward Norton,1271018757 +133273,2762,Bruce Willis,1271018374 +133273,2762,twist ending,1271018378 +133273,4993,beautifully filmed,1271018509 +133273,6942,multiple storylines,1271018726 +133273,7153,Oscar (Best Picture),1271018272 +133273,56145,apocalypse,1271018465 +133273,56174,post-apocalyptic,1271018552 +133273,60069,dystopia,1271018676 +133292,65514,Donnie Yen,1447077455 +133306,6,ending lame,1213418083 +133306,293,Lame ending,1213418974 +133306,1183,very sad,1213419373 +133306,1200,better than original,1213418159 +133306,3996,beautiful,1213418191 +133306,7438,overrated,1213418765 +133306,55118,Nudity (Full Frontal - Notable),1213419275 +133306,55118,Nudity (Full Frontal),1213419275 +133306,55946,debate,1213420009 +133306,55946,no plot,1213420009 +133306,56171,kids movie,1213419969 +133306,57368,irritating camera work,1213419937 +133312,1199,dystopia,1449502404 +133325,32,R,1210555409 +133325,318,R,1188090369 +133325,356,PG-13,1154062967 +133325,541,R,1154233521 +133325,750,PG,1160980640 +133325,778,R,1188685721 +133325,858,R,1160980542 +133325,1080,R,1160980583 +133325,1206,R,1154485301 +133325,1380,PG,1162914847 +133325,1625,R,1154062892 +133325,1653,PG-13,1195879188 +133325,1682,Andrew Niccol,1207446376 +133325,1682,PG,1160980780 +133325,1961,R,1154233461 +133325,2009,PG,1210555442 +133325,2321,PG-13,1154233449 +133325,2502,R,1160980763 +133325,2567,PG-13,1154485528 +133325,2571,R,1160980887 +133325,2716,PG,1188685794 +133325,2762,PG-13,1154283484 +133325,2858,Alan Ball,1207448120 +133325,2858,R,1154233508 +133325,2918,PG-13,1154062939 +133325,2959,Jim Uhls,1207447656 +133325,2959,R,1160980846 +133325,3204,R,1162914826 +133325,3421,R,1160449499 +133325,3578,R,1210555422 +133325,3852,R,1188090659 +133325,4215,PG-13,1162914940 +133325,4226,R,1159675975 +133325,4700,G,1162914914 +133325,4718,R,1162914312 +133325,4816,PG-13,1195879303 +133325,4878,R,1154233293 +133325,4963,PG-13,1160980862 +133325,4975,R,1195879268 +133325,5025,PG-13,1188686013 +133325,5151,R,1195879319 +133325,5283,R,1154485443 +133325,5670,R,1188090452 +133325,5810,R,1162914376 +133325,5903,R,1160980901 +133325,6188,R,1162914163 +133325,6287,PG-13,1154485511 +133325,6377,G,1160980563 +133325,7293,PG-13,1159675578 +133325,7361,R,1159676040 +133325,8464,PG-13,1154233474 +133325,8533,Jan Sardi,1207446906 +133325,8533,Jeremy Leven,1207446906 +133325,8533,PG-13,1162914238 +133325,8641,PG-13,1160980924 +133325,8869,PG,1154485595 +133325,8914,PG-13,1160980808 +133325,8914,Shane Carruth,1207446404 +133325,8961,PG,1160980819 +133325,8972,PG,1160980873 +133325,27816,PG-13,1154233762 +133325,27904,R,1154062804 +133325,33794,Christopher Nolan,1207447869 +133325,33794,David S. Goyer,1207447869 +133325,33794,PG-13,1159675813 +133325,34162,Bob Fisher,1207446275 +133325,34162,R,1160980791 +133325,34162,Steve Faber,1207446271 +133325,34405,PG-13,1188685962 +133325,35836,R,1159675718 +133325,36527,PG-13,1160981012 +133325,36529,R,1188090279 +133325,36535,PG-13,1154283312 +133325,39444,R,1188090644 +133325,44191,R,1163365514 +133325,44195,R,1154062843 +133325,44613,PG-13,1154485578 +133325,44974,R,1154283249 +133325,45186,PG-13,1162914336 +133325,45210,R,1154063001 +133325,45447,PG-13,1160981001 +133325,45501,PG-13,1162914877 +133325,45517,G,1162914207 +133325,45666,PG,1162914860 +133325,45726,PG-13,1162914926 +133325,45728,R,1159730100 +133325,45732,PG-13,1162914897 +133325,46530,PG-13,1162914220 +133325,46572,R,1159729969 +133325,46578,R,1159730065 +133325,46772,R,1160981064 +133325,46970,PG-13,1162914352 +133325,46976,PG-13,1162914950 +133325,47518,PG-13,1160980605 +133325,48385,R,1162914148 +133325,48516,R,1161156470 +133325,48780,Christopher Nolan,1207446433 +133325,48780,Jonathan Nolan,1207446433 +133325,48780,PG-13,1162915084 +133325,49272,PG-13,1188090395 +133325,50872,G,1195879209 +133325,51255,R,1188090974 +133325,52281,R,1188090190 +133325,54001,PG-13,1195879245 +133325,54272,PG-13,1188685692 +133328,6016,dvd,1203345801 +133337,3702,Futuristmovies.com,1186333752 +133337,3702,post-apocalyptic,1186333759 +133337,6934,Post apocalyptic,1186333855 +133339,54259,fairy tale,1379384704 +133339,54259,fantasy,1379384714 +133339,54259,fantasy world,1379384701 +133339,54259,romance,1379384715 +133378,50,great acting,1441609272 +133378,50,Kevin Spacey,1441609169 +133378,50,storytelling,1441609276 +133378,50,thriller,1441609285 +133378,318,great acting,1441609150 +133378,318,hope,1441609253 +133378,318,Morgan Freeman,1441609144 +133378,318,powerful ending,1441609261 +133378,7153,high fantasy,1441609376 +133378,7153,mystic warriors,1441609404 +133378,7153,Peter Jackson,1441609382 +133378,7153,Tolkien,1441609386 +133378,7153,wizards,1441609400 +133378,79132,alternate reality,1441609314 +133378,79132,Christopher Nolan,1441609332 +133378,79132,Leonardo DiCaprio,1441609321 +133378,79132,suspense,1441609350 +133378,79132,thought-provoking,1441609324 +133378,79132,twist ending,1441609336 +133378,79132,visually appealing,1441609318 +133378,81591,ballet,1441609448 +133378,81591,dance,1441609455 +133378,81591,dark,1441609445 +133378,81591,disturbing,1441609465 +133378,81591,horror,1441609472 +133378,81591,mental illness,1441609451 +133378,81591,Natalie Portman,1441609433 +133378,81591,New York City,1441609461 +133378,81591,Oscar (Best Actress),1441609438 +133378,81591,psychological,1441609468 +133378,109487,Anne Hathaway,1441609505 +133378,109487,artificial intelligence,1441609491 +133378,109487,Christopher Nolan,1441609487 +133378,109487,Hans Zimmer,1441609504 +133378,109487,Matthew McConaughey,1441609485 +133378,109487,physics,1441609497 +133378,109487,relativity,1441609551 +133378,109487,sci-fi,1441609515 +133378,109487,space,1441609512 +133378,109487,thought-provoking,1441609495 +133378,109487,time travel,1441609510 +133378,109487,time-travel,1441609552 +133378,112556,Ben Affleck,1441609626 +133378,112556,mindfuck,1441609641 +133378,112556,Psychopathy,1441609637 +133378,112556,Rosamund Pike,1441609624 +133378,112556,unpredictable,1441609632 +133378,116797,Alan Turing,1441609568 +133378,116797,Benedict Cumberbatch,1441609582 +133378,116797,code breaking,1441609579 +133378,116797,Computers,1441609577 +133378,116797,cryptography,1441609566 +133378,116797,genius,1441609585 +133378,116797,mathematics,1441609575 +133378,116797,World War II,1441609572 +133381,16,Robert De Niro,1245520333 +133381,593,Oscar (Best Actor),1245513312 +133381,593,psychology,1245513171 +133381,593,serial killer,1245513163 +133381,1136,absurd,1245522685 +133381,1136,Monty Python,1245522689 +133381,1704,genius,1245522743 +133381,1704,mathematics,1245522736 +133381,1704,psychology,1245522738 +133381,1704,Robin Williams,1245522741 +133381,1721,Oscar (Best Picture),1245522864 +133381,2628,sci-fi,1245513383 +133381,2959,mental illness,1245513283 +133381,6874,Quentin Tarantino,1245520620 +133381,33004,absurd,1245522647 +133381,33004,humor,1245522628 +133381,33004,sarcasm,1245522634 +133381,35347,allegory,1245521730 +133381,36529,Nicolas Cage,1245513203 +133381,44191,comic book,1245513157 +133381,52604,Anthony Hopkins,1245522045 +133381,56757,Johnny Depp,1245513207 +133381,56757,Tim Burton,1245513213 +133391,1375,ok,1365164599 +133396,62733,Worse Movie,1269055534 +133465,356,intelligence,1435270597 +133465,356,luck,1435270597 +133465,356,variety,1435270597 +133478,4975,psychology,1226963097 +133478,4975,surreal,1226963091 +133478,51086,psychology,1226963213 +133484,6666,hallucinatory,1430460294 +133484,6666,surreal,1430459974 +133484,7460,Atmospheric,1430459937 +133484,7460,Jim Jarmusch,1430459935 +133489,491,yeah but damn is she hot,1236167154 +133502,260,classic,1437265569 +133502,260,space opera,1437265560 +133502,4033,historical,1437265880 +133502,4033,politics,1437265874 +133502,4033,thriller,1437265871 +133502,7802,gangs,1437265811 +133502,7802,straight,1437265829 +133502,8207,assassin,1437265746 +133502,8207,thriller,1437265725 +133504,253,based on a book,1241366057 +133504,253,Kirsten Dunst,1241366014 +133504,253,Tom Cruise,1241366180 +133504,253,vampires,1241366044 +133504,4973,beautifully filmed,1241364905 +133504,4973,fairy tale,1241364910 +133504,5128,book was better,1241366283 +133504,5128,Vampires,1241366206 +133504,33493,bast background universe,1241363400 +133513,318,based on a book,1254443116 +133513,318,justice,1254443134 +133513,318,prison escape,1254443126 +133513,318,sentimental,1254443155 +133513,318,thought-provoking,1254443123 +133513,318,twist ending,1254443145 +133513,986,inspirational,1254581129 +133513,2497,based on a book,1254581411 +133513,2497,tear-jerker,1254581430 +133513,4973,feel-good,1254467808 +133513,4973,French,1254467799 +133513,4973,quirky,1254467804 +133513,4973,romantic but not cheesy,1254467821 +133513,4973,whimsical,1254467824 +133513,5400,tom clancy,1238464000 +133513,6880,gore,1254581613 +133513,6880,graphic violence,1254581609 +133513,6880,unnecessary remake,1254581590 +133513,6880,violence,1254581597 +133513,7318,bloody,1254443291 +133513,7318,brutal,1254443306 +133513,7318,torture,1254443284 +133513,7318,violent,1254443286 +133513,7451,Amy Poehler,1254443063 +133513,27555,mockumentary,1237836893 +133513,36517,Africa,1254444611 +133513,36517,based on a book,1254444607 +133513,36517,Business is the antagonist,1254444609 +133513,36517,conspiracy,1254444639 +133513,36517,jean le carre,1254444618 +133513,36517,social commentary,1254444624 +133513,36708,animated,1254581332 +133513,36708,based on a TV show,1254581336 +133513,44974,suspenseful,1254442867 +133513,46578,comedy,1254443508 +133513,46578,dark comedy,1254443476 +133513,46578,dysfunctional family,1254443473 +133513,46578,family,1254443489 +133513,46578,feel-good,1254443503 +133513,46578,funny,1254443492 +133513,46578,off-beat comedy,1254443483 +133513,46578,quirky,1254443479 +133513,46578,road trip,1254443499 +133513,46578,satire,1254443501 +133513,48394,imagination,1254443221 +133513,53189,awkward,1254581288 +133513,53189,Jermaine Clement,1254581276 +133513,53189,misfits,1254581299 +133513,53189,off-beat comedy,1254581269 +133513,59295,bad science,1270774337 +133513,59295,biology,1270774330 +133513,59295,christianity,1270774343 +133513,59295,conspiracy theory,1270774334 +133513,59295,creationism,1270774328 +133513,59295,misinformation,1270774319 +133513,59295,onesided,1270774322 +133513,59295,propaganda,1270774316 +133513,59295,religion,1270774349 +133513,63876,biography,1270774395 +133513,63876,character based on real person:Harvey Milk,1254443410 +133513,63876,Emile Hirsch,1270774388 +133513,63876,gay,1270774405 +133513,63876,politics,1254443411 +133513,63876,Sean Penn,1270774390 +133513,68157,alternate history,1254443013 +133513,68157,gratuitous violence,1254443000 +133513,68157,Quentin Tarantino,1254443003 +133513,68157,satire,1254442995 +133513,68157,unusual plot structure,1254443009 +133513,68954,dreams,1270774210 +133513,68954,friendship,1270774208 +133513,68954,Pixar,1270774216 +133513,68954,sad but good,1270774204 +133513,68954,touching,1270774206 +133513,69481,cliche,1270774163 +133513,69481,colonialism,1270774160 +133513,69481,explosions,1270774154 +133513,69481,inaccurate,1270774157 +133513,69481,Iraq War,1270774149 +133513,71057,dystopia,1270774568 +133513,71057,good versus evil,1270774566 +133513,71057,post-apocalyptic,1270774554 +133513,71057,visually appealing,1270774557 +133513,71282,America-centric,1258918960 +133513,71282,informative,1258918939 +133513,71282,investigative journalism,1258918949 +133513,71745,adapted from:book,1258919341 +133513,71745,fantasy world,1258919369 +133513,71745,kids movie,1258919363 +133513,71745,Mother Son Relationship,1258919375 +133513,71745,stylized,1258919389 +133518,260,action,1441637808 +133518,260,Science Fiction,1441637790 +133518,89745,action,1441638110 +133518,104074,fantasy,1441638078 +133531,858,crime,1427509077 +133556,63062,angelina jolie,1242149826 +133556,63062,Clint Eastwood,1242149831 +133556,63062,John Malkovich,1242149836 +133556,64620,awesome performance,1242149875 +133556,64620,Frank Langella,1242149880 +133556,64620,Ron Howard,1242149866 +133571,39183,bittersweet,1441509143 +133571,39183,cowboy,1441509159 +133571,39183,homosexuality,1441509139 +133571,39183,sad,1441509155 +133571,39183,Tragedy,1441509151 +133571,53125,comedy,1441509063 +133571,53125,Johnny Depp,1441509056 +133571,53125,treasure,1441509066 +133571,109487,artificial intelligence,1441509111 +133571,109487,black hole,1441509117 +133571,109487,love,1441509107 +133571,109487,sci-fi,1441509088 +133571,109487,sentimental,1441509098 +133571,109487,time-travel,1441509102 +133606,1241,Beginning Sucked,1360262783 +133606,1241,Couldn't keep interest,1360262783 +133606,86833,awkward situations,1360787423 +133606,86833,chick flick,1360787459 +133606,86833,comedy,1360787462 +133606,86833,girl power,1360787456 +133606,86833,unlikeable characters,1360787451 +133606,89864,cancer awareness,1360001723 +133606,89864,comedy,1360001388 +133606,89864,emotional,1360001723 +133606,89864,friendship,1360001383 +133606,89864,predictable results,1360001723 +133606,96821,Captivating,1360170644 +133606,96821,character development,1360170644 +133606,96821,child molestation,1360170644 +133606,96821,Emma Watson's American Accent,1360170644 +133606,96821,Suicide,1360170644 +133606,99007,comedic horror,1360770958 +133606,99007,cured by love/hope,1360770936 +133606,99007,romance,1360770917 +133606,99007,Self-Aware Zombies,1360771024 +133606,99007,unconventional zombies,1360770995 +133606,99007,Well Plotted,1360770915 +133606,99007,Zombies,1360770915 +133606,100487,SUPERNATURAL ROMANCE,1363950083 +133624,1793,Australian,1347362738 +133647,1285,cult film,1346974803 +133675,3977,strong female leads,1442471704 +133675,6874,karma,1442471527 +133675,6874,strong female lead,1442471512 +133675,7438,strong female lead,1442471559 +133683,318,prison escape,1143538876 +133694,356,historical,1421609115 +133694,356,tom hanks,1421609115 +133694,356,vietnam war,1421609115 +133709,260,Classic Movie,1437139229 +133709,260,Super Sci Fi,1437139245 +133747,16,casino,1386692922 +133747,16,Martin Scorsese,1386692902 +133747,16,narrated,1386692928 +133747,16,Robert De Niro,1386692907 +133747,16,violent,1386692909 +133747,296,action,1331748813 +133747,296,atmospheric,1331748802 +133747,296,multiple storylines,1331748796 +133747,296,Quentin Tarantino,1331748789 +133747,296,Samuel L. Jackson,1331748791 +133747,296,stylized,1331748807 +133747,508,Denzel Washington,1409603326 +133747,508,Gay Lead Character,1409603333 +133747,508,homosexuality,1409603318 +133747,508,lgbt,1409603321 +133747,508,weak ending,1409603352 +133747,1089,cult film,1331748899 +133747,1089,imdb top 250,1331748909 +133747,1089,low budget,1331748904 +133747,1089,Quentin Tarantino,1331748896 +133747,1199,disgusting,1394469139 +133747,1199,long,1394469159 +133747,1199,sweaty,1394469146 +133747,1206,disturbing,1391803957 +133747,1206,stylized,1391803962 +133747,2762,excellent script,1385832261 +133747,2762,great ending,1385832254 +133747,2762,mindfuck,1385832252 +133747,2762,twist ending,1385832245 +133747,3593,aliens,1401702965 +133747,3593,BAD special effects,1401702984 +133747,3593,Forest Whitaker,1401702967 +133747,3593,scientologist,1401702976 +133747,3593,stupid,1401702974 +133747,4369,fashion,1331749264 +133747,4369,macho,1331749270 +133747,4369,Michelle Rodriguez,1331749253 +133747,4369,Paul Walker,1331749259 +133747,4369,racing,1331749249 +133747,4369,street race,1331749241 +133747,4369,Vin Diesel,1331749247 +133747,4814,kidnapping,1409919220 +133747,4814,Michael Douglas,1409919201 +133747,5294,mission from God,1401722115 +133747,5294,religion,1401722105 +133747,5294,religious,1401722117 +133747,5294,twist ending,1401722120 +133747,6323,creepy,1385832434 +133747,6323,mystery,1385832418 +133747,6323,suspense,1385832423 +133747,6323,suspenseful,1385832428 +133747,6323,twist ending,1385832420 +133747,6383,Cars,1331749318 +133747,6383,street race,1331749320 +133747,6711,Bill Murray,1409660882 +133747,6711,bittersweet,1409660911 +133747,6711,loneliness,1409660905 +133747,6711,Scarlett Johansson,1409660907 +133747,7347,Johnny Depp,1385832545 +133747,7347,mystery,1385832553 +133747,26554,alone in the world,1400927431 +133747,26554,apocalypse,1400927435 +133747,26554,Empty Planet,1400927450 +133747,26554,jealousy,1400927460 +133747,26554,last man on earth,1400927438 +133747,26554,Post Apocalypse,1400927441 +133747,26554,post-apocalyptic,1400927445 +133747,34532,Twist Ending,1401375936 +133747,34532,Voodoo,1401375960 +133747,35957,Airplane,1395525827 +133747,35957,hit by car,1395525815 +133747,35957,weak ending,1395525804 +133747,35957,Wes Craven,1395525819 +133747,53953,author:Stephen King,1331749062 +133747,53953,claustrophobic,1331749060 +133747,53953,horror,1331749065 +133747,53953,John Cusack,1331749071 +133747,53953,numbers,1331749077 +133747,53953,predictable ending,1331749098 +133747,53953,Samuel L. Jackson,1331749074 +133747,53953,scary,1331749076 +133747,53953,setting:hotel,1331749087 +133747,53953,Stephen King,1331749070 +133747,53953,supernatural,1331749085 +133747,57274,"""found footage""",1385831105 +133747,57274,bloody,1385831142 +133747,57274,creepy,1385831122 +133747,57274,horror,1385831108 +133747,57274,infection,1385831121 +133747,57274,virus,1385831119 +133747,57274,zombies,1385831137 +133747,69757,chick flick,1391901325 +133747,71379,atmospheric,1331748972 +133747,71379,demon possession,1331748970 +133747,71379,ending,1331748977 +133747,71379,entertaining,1331748979 +133747,71379,low budget,1331748961 +133747,71379,multiple endings,1331748982 +133747,71379,Realism,1331748963 +133747,71379,scary,1331748959 +133747,74791,surreal,1385843346 +133747,81591,dark,1393085694 +133747,81591,lesbian,1393085698 +133747,81591,Natalie Portman,1393085684 +133747,81591,New York City,1393085690 +133747,81591,twist ending,1393085686 +133747,84601,americans in europe,1394373012 +133747,84601,car accident,1394372928 +133747,84601,conspiracy,1394372926 +133747,84601,explosion,1394372941 +133747,84601,Liam Neeson,1394372933 +133747,84601,mistery,1394372949 +133747,90524,cheesy bad,1401796392 +133747,90524,sexy protagonist,1401796394 +133747,90524,Taylor Lautner,1401796394 +133747,90746,3D effects,1331749404 +133747,90746,action,1331749406 +133747,90746,animation,1331749420 +133747,90746,childish,1331749425 +133747,90746,comic book,1331749415 +133747,90746,motion capture,1331749418 +133747,90746,Planes,1331749412 +133747,90746,Steven Spielberg,1331749408 +133747,91681,boring,1408829968 +133747,91681,tension,1408829977 +133747,91681,too long,1408829968 +133747,94959,dreamlike,1388768897 +133747,94959,island,1388768901 +133747,94959,stylized,1388768907 +133747,94959,surreal,1388768909 +133747,94959,Wes Anderson,1388768903 +133747,97923,religious overtones,1401376149 +133747,100083,crude humor,1386264809 +133747,100083,offensive,1386264802 +133747,101973,internet,1409671065 +133747,101973,masturbation,1409671055 +133747,101973,suicide,1409671052 +133747,103235,artistic,1401730403 +133747,103235,beautiful,1401730403 +133747,103235,beautiful music,1401730403 +133747,103235,twist ending,1401730368 +133747,103253,class conflict,1392763974 +133747,103253,ending kinda ruined it,1392763963 +133747,103253,Jodie Foster,1392763968 +133747,103253,visually stunning,1392763961 +133747,103596,self-aware,1409005038 +133747,103596,trash,1409005032 +133747,104841,cgi,1394227583 +133747,104841,intense,1394227585 +133747,104841,religion,1394227589 +133747,104841,space,1394227578 +133747,104841,visually appealing,1394227576 +133747,104841,visually stunning,1394227580 +133747,105504,performances,1394747313 +133747,105504,tom hanks,1394747282 +133747,107769,franchise,1396124094 +133747,108932,anti-conformity,1401973983 +133747,108932,cheesy,1401974007 +133747,108932,Liam Neeson,1401973991 +133747,108932,visually appealing,1401974024 +133747,108945,remake,1416004944 +133747,108945,Special Effects,1416004949 +133747,109374,Jeff Goldblum,1405196860 +133747,109374,visually appealing,1405196855 +133747,109374,Wes Anderson,1405196858 +133747,109487,Anne Hathaway,1426875338 +133747,109487,Christopher Nolan,1426875333 +133747,109487,good science,1426875351 +133747,109487,Masterpiece,1426875355 +133747,109487,Matthew McConaughey,1426875345 +133747,109487,physics,1426875343 +133747,109487,sci-fi,1426875362 +133747,109578,airplane,1401986092 +133747,109578,Liam Neeson,1401986099 +133747,109673,female nudity,1402080623 +133747,109673,male nudity,1402080614 +133747,109673,wasted potential,1402080647 +133747,110127,Biblical,1405256885 +133747,110127,Logan Lerman,1405256904 +133747,110127,not true to the book,1405256919 +133747,110127,preachy,1405256878 +133747,110127,psycho environmentalist,1405256875 +133747,110127,religion,1405256896 +133747,110127,Russell Crowe,1405256911 +133747,110127,unlikeable characters,1405256881 +133747,110553,bad plot,1408382050 +133747,110553,boring,1408382138 +133747,110553,Dane DeHaan,1408382167 +133747,110553,dialogue,1408382057 +133747,110553,too long,1408382142 +133747,110553,wtf ending,1408382127 +133747,111364,franchise,1401564908 +133747,111364,gradual tension,1401565917 +133747,111364,special effects,1401564904 +133747,111759,action,1404593890 +133747,111759,aliens,1404593888 +133747,111759,original plot,1404593893 +133747,111759,Tom Cruise,1404593883 +133747,112852,childish,1408137971 +133747,112852,Chris Pratt,1408137945 +133747,112852,great soundtrack,1408137949 +133747,112852,vasted potential,1408137971 +133747,112852,Vin Diesel,1408137929 +133773,1252,polanski,1191706129 +133773,5995,polanski,1191706328 +133818,260,classic sci-fi,1436034468 +133818,260,Good vs evil sci-fi,1436034456 +133818,356,growing up,1436034706 +133818,356,historical,1436034706 +133818,356,monologue,1436034706 +133854,965,classic hitchcock,1439648901 +133854,1262,Evergreen WW II,1439649646 +133854,2987,toon detective,1439648771 +133854,6662,Sellers Classic Comedy,1439649354 +133854,6808,WWII Thrillers,1439649550 +133880,260,anurag,1432335045 +133896,181,Action,1231865881 +133896,858,melancholy,1242014081 +133896,858,organized crime,1242014070 +133896,1267,conspiracy,1261149125 +133896,1997,scary,1241931299 +133896,2571,martial arts,1248985030 +133896,2628,Samuel L. Jackson,1242014307 +133896,2959,Brad Pitt,1241931083 +133896,2959,Edward Norton,1241931081 +133896,8622,political,1257996933 +133896,26152,Batman,1233690363 +133896,26502,Christmas,1240071336 +133896,36850,Jackie Chan,1239908783 +133896,36850,Maggie Cheung,1240176943 +133896,58559,Batman,1233688693 +133896,58803,blackjack,1240849924 +133896,58803,casino,1257997001 +133896,58803,mathematics,1257996982 +133896,58803,predictable,1257996969 +133896,64957,long,1244655516 +133896,68319,sequel,1244655462 +133896,72998,graphic design,1266984493 +133896,72998,long,1266984514 +133896,97188,the deputy,1382167605 +133902,7669,almost as good as the book,1282758327 +133902,7669,romantic,1282758269 +133902,47610,cool,1284193003 +133902,47610,twist ending,1284192986 +133902,49649,ed speleers,1284192448 +133902,49649,Horrible adaptation of the book,1284192452 +133902,51834,18th century,1284193267 +133902,51834,Jane Austen,1284193287 +133902,51834,romance,1284193273 +133902,51834,soundtrack,1284193298 +133902,63992,awesome soundtrack,1284192515 +133902,63992,good soundtrack,1282758099 +133902,68135,geeks,1284402752 +133902,68135,predictable,1284402771 +133902,72407,awesome soundtrack,1282758130 +133902,72407,Taylor Lautner,1284192584 +133902,78772,awesome soundtrack,1282758115 +133909,4239,based on a true story,1349479236 +133909,4239,cocaine,1349479218 +133909,4239,dysfunctional family,1349479220 +133909,4239,true story,1349479228 +133909,33817,disturbing,1351365680 +133909,33817,lesbian,1351365687 +133909,33817,Nudity (Topless),1351365689 +133909,33817,romance,1351365695 +133909,48696,SUBURBAN DYSFUNCTION,1349546569 +133909,55110,boring,1349646820 +133909,70567,cliche,1349546338 +133909,74416,coming of age,1349479347 +133909,74416,depressing,1349479317 +133909,74416,disturbing,1349479321 +133909,74416,loneliness,1349479336 +133909,74416,realistic,1349479327 +133909,74416,social conflicts,1349479323 +133909,74416,tense,1349479340 +133909,74416,violent,1349479330 +133909,77312,Colin Firth,1349479129 +133909,77312,Willa Holland,1349479124 +133909,78574,Based on a book,1349479187 +133909,78574,death,1349479191 +133909,78574,drama,1349479168 +133909,78574,drugs,1349479166 +133909,78574,father daughter relationship,1349479175 +133909,78574,slow,1349479198 +133909,78574,teenage girl,1349479180 +133909,97921,Jennifer Lawrence,1363548458 +133929,260,fantasy,1444578969 +133929,260,sci-fi,1444578964 +133970,50851,cocaine,1445266668 +133970,106782,based on a true story,1445266617 +133970,106782,drugs,1445266613 +133970,106782,Leonardo DiCaprio,1445266606 +133970,106782,Martin Scorsese,1445266610 +133970,106782,Wall Street,1445266620 +134015,6322,good acting,1137512485 +134015,6322,plot twist,1137512485 +134023,260,forbidden love,1434155443 +134023,260,space action,1434155432 +134023,356,running,1434155780 +134023,356,starting your own business,1434155780 +134023,356,unrequited love,1434155780 +134053,1726,the book was better,1145384943 +134053,3256,the book was better,1145384969 +134060,118246,Juliette Binoche,1437767799 +134060,132520,depressing,1429577214 +134060,132520,violent,1429577222 +134077,260,Science Fiction,1444467494 +134077,260,space,1444467476 +134077,260,war,1444467482 +134083,260,classic,1435533955 +134083,260,oldie but goodie,1435533972 +134096,930,Alfred Hitchcock,1285103321 +134096,930,Cary Grant,1285103329 +134096,930,Claude Rains,1285103373 +134096,930,Ingrid Bergman,1285103324 +134096,4848,David Lynch,1285174413 +134096,4848,Naomi Watts,1285174410 +134096,8206,Fay Wray,1285103111 +134096,8206,Glenda Farrell,1285103108 +134096,8206,Michael Curtiz,1285103152 +134096,33004,Sam Rockwell,1285163756 +134096,33004,Zooey Deschanel,1285163751 +134096,49932,Laura Dern,1285363078 +134096,77561,Robert Downey Jr.,1285174358 +134096,77561,Sam Rockwell,1285174362 +134098,50,great ending,1439951799 +134098,1172,emotional,1439951925 +134098,1221,classic,1439951674 +134098,2324,emotional,1439951900 +134098,2762,great ending,1439951595 +134098,3578,action,1439951515 +134098,5995,holocaust,1439951951 +134098,6016,favela,1439951756 +134098,7502,friendship,1439951717 +134098,58559,Batman,1439951831 +134098,77658,science,1439951855 +134098,98809,Tolkien,1439952010 +134119,2858,kevin at his best,1437293044 +134119,58559,Heath Ledger,1437293162 +134119,58559,Heath Ledger - lifetime role,1437293178 +134119,127098,family values,1437293118 +134119,127098,monotonous,1437293118 +134119,127098,socially relevant,1437293118 +134155,2958,American Indian,1178416494 +134155,2958,Native,1178416494 +134155,2958,Native Americans,1178416494 +134181,1196,Sci-fi,1445493779 +134181,1196,Star Wars,1445493796 +134181,3082,007,1445493835 +134181,115713,AI,1445493887 +134185,364,Jeremy Irons,1371227491 +134185,551,music,1371227849 +134185,588,music,1371227429 +134185,588,prince abubu,1371227421 +134185,588,Robin Williams,1371227407 +134185,3793,awesome powers,1371226957 +134185,3793,comic book,1371226981 +134185,3793,mutants,1371226972 +134185,6333,awesome powers,1371226885 +134185,6333,based on comic,1371226925 +134185,6333,mutants,1371226867 +134185,6333,rogue,1371226901 +134185,8874,dark comedy,1371227664 +134185,34405,dystopia,1371227752 +134185,34405,space cowboys,1371227735 +134185,44665,twist ending,1371227948 +134185,48394,disturbing,1371227792 +134185,48394,twisted fairytale,1371227822 +134185,60684,dark,1371227029 +134185,68358,funny,1371226744 +134185,68358,Lens flares,1371226705 +134185,68358,visually appealing,1371226730 +134185,68954,emotional,1371227207 +134185,78499,emotional,1371227254 +134185,78499,funny,1371227246 +134185,78499,i cried,1371227272 +134185,79091,minions,1371226103 +134185,79702,comic book,1371227096 +134185,79702,fight scenes,1371227138 +134185,79702,hilarious,1371227121 +134185,79702,music,1371227126 +134185,79702,surreal,1371227084 +134185,81847,magical hair,1371227380 +134185,81847,maximus,1371227350 +134185,81847,they never get his nose right,1371227363 +134185,86332,Loki steals the show,1371226217 +134185,86332,love story,1371226256 +134185,86332,Natalie Portman,1371226220 +134185,87232,James McAvoy,1371226377 +134185,87232,wolverine cameo,1371226342 +134185,89745,action,1371226610 +134185,89745,humor,1371226585 +134185,95510,Andrew Garfield,1371226280 +134185,102125,Ben Kingsley,1371226422 +134185,102125,Gwyneth Paltrow,1371226431 +134185,102125,Robert Downey Jr.,1371226478 +134185,102125,rushed ending,1371226465 +134185,102445,Anton Yelchin,1371227582 +134185,102445,Benedict Cumberbatch,1371227609 +134185,102445,bromance,1371227633 +134185,102445,Simon Pegg,1371227592 +134193,260,best movie ever,1435343944 +134193,260,Science Fiction,1435343936 +134193,260,space adventure,1435343931 +134207,307,family,1246582907 +134214,971,Paul Newman,1233332191 +134214,2858,Oscar (Best Picture),1190645723 +134214,6858,Polish movie,1190645176 +134214,7241,Polish movie,1190710446 +134214,8056,Paul Newman,1233332152 +134214,55765,Denzel Washington,1206603966 +134214,55820,Oscar (Best Picture),1206603679 +134214,60397,Pierce Brosnan,1223563577 +134214,67847,polish movie,1239875121 +134250,413,Rockin,1186530107 +134250,546,Retarded,1186530137 +134250,1091,McCray,1186530164 +134250,1665,English,1186530348 +134250,2117,Book,1186530378 +134250,2840,Religious,1186530183 +134250,2953,Awesome,1186530092 +134250,3439,Kasey Jones,1186530475 +134250,3608,Inspiring,1186530138 +134250,3916,Sports,1186530058 +134250,3999,Extreme,1186530385 +134250,4103,Electric,1186530332 +134250,4351,Hot Fuzz,1186530268 +134250,4621,Talking Babies,1186530301 +134250,4623,Wild,1186530258 +134250,4857,Jewish,1186530452 +134250,4975,Thriller,1186530057 +134250,5308,Steve Guttenberg,1186530409 +134250,6218,Sports,1186530092 +134250,6502,Zombie,1186530060 +134250,6620,Artistic,1186530355 +134250,8622,LIberal,1186530059 +134250,30810,Kinda Boring,1186530366 +134250,35836,Erotic Thriller,1186530241 +134250,39183,Flaming,1186530399 +134251,260,light saber,1431716209 +134251,260,space,1431716216 +134263,64614,classic car,1240904164 +134263,64614,Clint Eastwood,1240904154 +134263,64614,gangsters,1240904169 +134263,64614,life & death,1240904159 +134263,64614,patriotic,1240904167 +134263,79132,Christopher Nolan,1279983705 +134263,79132,clever,1279983711 +134263,79132,Leonardo DiCaprio,1279983718 +134263,79132,questions reality,1279983726 +134263,79132,visually appealing,1279983722 +134263,81229,aging,1291658996 +134263,81229,Bruce Willis,1291659037 +134263,81229,Helen Mirren,1291659036 +134268,97921,Bradley Cooper,1357362346 +134268,97921,mental illness,1357362336 +134268,97921,predictable,1357362358 +134268,97921,serious topics,1357362349 +134268,127098,comedians,1422688700 +134268,127098,comedy,1422688691 +134268,127098,stand up,1422688683 +134279,260,fuckdisney,1439411795 +134279,260,space,1439411805 +134294,260,action,1432467017 +134294,260,EPIC,1432467003 +134294,260,romance,1432467049 +134294,260,sci-fi,1432466987 +134294,260,space opera,1432467022 +134301,296,Samuel L. Jackson,1394796140 +134301,1196,dark,1394796328 +134301,1196,great soundtrack,1394796287 +134301,1196,music,1394796301 +134301,1333,where exactly is the suspense?,1394794800 +134301,1373,really bad plot,1394795008 +134301,1374,brainwashing,1394795153 +134301,1374,uniforms,1394795248 +134301,1375,bad plot,1394795129 +134301,1375,Enterprise lost,1394795076 +134301,1375,self-destruct finally carried out,1394795215 +134301,1590,scary,1414358141 +134301,1590,tense,1414358159 +134301,2571,Action,1394795942 +134301,2571,philosophy,1394795926 +134301,2571,reflective,1394795930 +134301,2571,soundtrack,1394796009 +134301,2571,thought-provoking,1394795934 +134301,2628,Jar Jar Binks,1395008018 +134301,2628,lightsaber duel,1395008019 +134301,2628,music,1395008019 +134301,3857,scared shitless,1394795544 +134301,3949,emotional,1394796165 +134301,4993,ensemble cast,1394795861 +134301,4993,great soundtrack,1394795869 +134301,6874,violence,1394795976 +134301,7438,brutal,1394795663 +134301,7438,happy ending,1394795663 +134301,7438,twist ending,1394795729 +134301,8957,great ending,1394796203 +134301,8957,surprise ending,1394796210 +134301,8957,twist ending,1394796181 +134301,27368,laugh out loud,1394795815 +134301,33004,book is so much better,1394664668 +134301,33493,dark,1394796259 +134301,33493,great soundtrack,1394796248 +134301,48780,ensemble cast,1394796109 +134301,48780,twist ending,1394796094 +134301,48997,read the book instead,1394664583 +134301,48997,waste of time,1394795265 +134301,52328,great soundtrack,1394796367 +134301,52328,portrayal of religious zeal,1394796483 +134301,56171,read the book instead,1394805644 +134301,57669,Colin Farrell,1394795765 +134301,57669,moving,1394795747 +134301,57669,music,1394795593 +134301,63082,destiny,1394794399 +134301,63082,emotional,1394794287 +134301,63082,great soundtrack,1394794298 +134301,63082,happy ending,1394794355 +134301,63082,heartwarming,1394794301 +134301,71264,what the fuck?,1394795396 +134301,74228,scary implications,1394794205 +134301,85131,nothing happens,1394794750 +134301,87529,laugh out loud,1394794472 +134301,87529,parody of fantasy genre,1394794471 +134301,87529,perfect,1394794472 +134301,91974,didn't like in 3-D,1394797122 +134301,94735,not as good as the others,1394796562 +134301,95207,what the fuck?,1394654147 +134301,95207,which historical person is gonna be next?,1394794684 +134301,95207,who thought of this?,1394794684 +134301,97752,what's this about?,1394794826 +134301,98203,battle in the mind,1394797176 +134301,98809,music,1394794895 +134301,98809,too much action,1394795444 +134301,98809,younger Gandalf,1394795457 +134301,101864,twist ending,1395007857 +134301,103688,cliche,1394794868 +134301,106489,Smaug,1394795471 +134301,106489,too much action,1394795296 +134301,106489,younger Gandalf,1394795471 +134301,108190,unintelligent,1407183561 +134301,109673,men > women,1394654117 +134301,109673,nudity (topless),1394794546 +134301,109673,out-of-character incompetence,1394654526 +134301,109673,sequel with nothing new,1394654303 +134301,109673,soundtrack,1394654326 +134301,109673,unmoving emotions,1394794945 +134301,110102,brutal violence,1396639044 +134301,110102,Nazis,1396639044 +134301,110102,Scarlett Johannson,1396639044 +134301,114847,artificial intelligence,1414358213 +134301,114847,post-apocalyptic,1414358207 +134301,114847,robots,1414358198 +134316,2948,Sean Connery,1358530631 +134316,4886,cute,1358528681 +134316,4886,Pixar,1358528669 +134316,99149,Anne Hathaway,1358530023 +134316,99149,Hugh Jackman,1358530028 +134316,99149,musical,1358530003 +134316,99149,Russell Crowe,1358530008 +134316,99149,Samantha Barks,1358530031 +134316,101088,insubstantial,1362339710 +134316,101088,Matthew Goode,1362339762 +134316,101088,Mia Wasikowska,1362339739 +134316,101088,Nicole Kidman,1362339753 +134316,101088,piano music,1362339668 +134316,101088,psychological thriller,1362339637 +134316,101088,stylish,1362339644 +134326,8643,Hilary Duff,1446628898 +134334,318,brilliant,1196812259 +134334,318,Jail,1196812259 +134334,318,Morgan Freeman,1196812259 +134334,318,OscarMissed,1196812259 +134334,356,Oscar (Best Actor),1196812297 +134334,356,Oscar (Best Picture),1196812297 +134334,356,Tom Hanks,1196812297 +134354,260,classic,1439782835 +134354,260,sci-fi,1439782862 +134354,5618,Studio Ghibli,1439783485 +134354,108979,Yoko Kanno,1439783660 +134373,19,detective,1368432337 +134373,25,melancholic,1368403596 +134373,39,teen movie,1368432059 +134373,46,women,1368431977 +134373,47,great ending,1368432240 +134373,50,excellent script,1368431838 +134373,288,brutality,1368432134 +134373,318,great ending,1368432239 +134373,549,musicians,1368432023 +134373,587,supernatural,1368431782 +134373,735,splatter,1368431916 +134373,799,supernatural,1368431782 +134373,904,suspenseful,1368432087 +134373,910,screwball comedy,1368432417 +134373,913,noir thriller,1368428577 +134373,923,masterpiece,1368428625 +134373,924,masterpiece,1368428625 +134373,1033,unlikely friendships,1368432299 +134373,1088,dancing,1368432215 +134373,1089,original,1368403529 +134373,1172,mentor,1368428600 +134373,1188,dancing,1368432215 +134373,1213,stylish,1368431870 +134373,1219,suspenseful,1368432087 +134373,1241,splatter,1368431916 +134373,1245,neo-noir,1368432176 +134373,1249,stylish,1368431870 +134373,1275,mentor,1368428600 +134373,1307,unlikely friendships,1368432299 +134373,1387,suspenseful,1368432087 +134373,1537,dancing,1368432215 +134373,1617,detective,1368432337 +134373,1617,neo-noir,1368432175 +134373,1620,detective,1368432337 +134373,1704,mentor,1368428600 +134373,1719,melancholic,1368403596 +134373,1968,teen movie,1368432059 +134373,2144,teen movie,1368432059 +134373,2194,excellent script,1368431838 +134373,2291,original,1368403529 +134373,2420,mentor,1368428600 +134373,2542,stylish,1368431870 +134373,2726,noir thriller,1368428577 +134373,2858,excellent script,1368431838 +134373,2863,musicians,1368432023 +134373,2866,musicians,1368432023 +134373,3005,detective,1368432337 +134373,3067,screwball comedy,1368432416 +134373,3083,women,1368431978 +134373,3418,women,1368431978 +134373,3499,suspenseful,1368432087 +134373,3791,dancing,1368432215 +134373,4018,women,1368431977 +134373,4054,dancing,1368432215 +134373,4085,detective,1368432337 +134373,4878,original,1368403529 +134373,5065,supernatural,1368431782 +134373,5693,dancing,1368432215 +134373,6731,splatter,1368431916 +134373,7013,noir thriller,1368428577 +134373,33834,splatter,1368431916 +134373,34437,melancholic,1368403596 +134373,37733,brutality,1368432134 +134373,42723,splatter,1368431916 +134373,48304,brutality,1368432134 +134373,49110,Eric Idle,1282705761 +134373,49110,Greg Beeman,1282705842 +134373,49110,Jeffrey Jones,1282705820 +134373,49110,Jon Lovitz,1282705782 +134373,49110,Kathy Ireland,1282705845 +134373,49110,Teri Garr,1282705816 +134373,49110,Wallace Shawn,1282705818 +134416,527,holocaust,1449725026 +134416,527,imdb top 250,1449725040 +134416,527,Nazis,1449724992 +134416,527,Oscar (Best Picture),1449725007 +134416,527,Steven Spielberg,1449725048 +134416,527,true story,1449725002 +134416,527,war,1449725038 +134416,527,WWII,1449725031 +134416,107069,Navy SEALs,1449726004 +134447,48394,lush,1168554175 +134447,49530,R,1168554459 +134460,3578,Epic,1450548219 +134460,3578,Rome,1450548216 +134460,4963,heist,1450553524 +134460,4963,las vegas,1450553528 +134460,46970,nascar,1452305316 +134460,46970,Will Ferrell,1452305311 +134460,48385,comedy,1450581593 +134460,48385,crude humor,1450581591 +134460,48385,Nudity (Full Frontal - Notable),1450581578 +134460,48385,Nudity (Full Frontal),1450581576 +134460,48385,R,1450581573 +134460,53322,Heist,1450553458 +134460,79592,buddy movie,1450507822 +134460,79592,funny,1450507827 +134460,79592,Mark Wahlberg,1452313092 +134460,79592,police,1452305232 +134460,79592,Will Ferrell,1452305235 +134460,108156,buddy movie,1450669856 +134460,108156,crime,1450669813 +134460,110127,Biblical,1450548281 +134460,122886,Star Wars,1450547509 +134460,134170,80's nostalgia,1450581537 +134465,260,George Lucas,1439801349 +134465,260,space adventure,1439801362 +134469,260,classic,1439486595 +134469,260,fantasy,1439486559 +134469,260,space action,1439486563 +134469,260,space adventure,1439486531 +134581,3852,PUA,1257140742 +134581,4441,Bruce Lee,1244740385 +134581,7482,Bruce Lee,1244676178 +134581,63062,Jeffery Donoven,1244684852 +134605,105,Favourite film,1441399987 +134605,182,friendship,1441403434 +134605,182,southern theme,1441403427 +134605,260,cult classic,1441399543 +134605,260,Harrison Ford,1441399599 +134605,608,dark humor,1441402462 +134605,608,Steve Buscemi,1441402452 +134605,608,strong female,1441402448 +134605,648,Tom Cruise,1441402340 +134605,1088,coming of age,1441403480 +134605,1088,southern theme,1441403473 +134605,1183,Ralph Fiennes,1441400045 +134605,1246,inspirational,1441402114 +134605,2858,coming of age,1441402539 +134605,2858,excellent script,1441402542 +134605,2858,loneliness,1441402552 +134605,2858,powerful ending,1441402547 +134605,2858,reflective,1441402549 +134605,3100,Southern theme,1441401790 +134605,3706,Southern theme,1441401511 +134605,3706,Voodoo,1441401517 +134605,4014,feel-good,1441404806 +134605,4014,small town,1441404810 +134605,4027,America,1441401355 +134605,4027,country,1441401277 +134605,4027,great soundtrack,1441401285 +134605,4027,Southern theme,1441401370 +134605,5034,love,1441403513 +134605,5971,country life,1441404332 +134605,5971,feel-good,1441404328 +134605,5971,Hayao Miyazaki,1441404314 +134605,5971,Japan,1441404319 +134605,5971,visually appealing,1441404325 +134605,6711,bittersweet,1441401019 +134605,6711,loneliness,1441401010 +134605,6711,Melancholic,1441401012 +134605,8957,great ending,1441404278 +134605,8957,twist ending,1441404279 +134605,62553,Southern theme,1441403309 +134605,85412,trolls,1441404245 +134605,89804,unlikeable characters,1441402581 +134605,90057,Michael Shannon,1441400330 +134605,97024,Marion Cotillard,1441400447 +134605,102194,Brilliant film,1441399851 +134605,102194,coming of age,1441399877 +134605,102194,good acting,1441399882 +134605,102194,netflix,1441399869 +134605,102194,powerful,1441399865 +134605,102993,coming of age,1441402265 +134605,102993,heartwarming,1441402272 +134605,103048,coming of age,1441399913 +134605,105355,coming of age,1441402712 +134605,105355,loneliness,1441402715 +134605,106100,Jared Leto,1441400669 +134605,106100,Matthew McConaughey,1441400666 +134605,110730,consciousness,1441401722 +134605,110730,cyborgs,1441401730 +134605,110730,poorly thought out ending,1441401712 +134605,110730,predictable,1441401715 +134605,112946,great soundtrack,1441402619 +134605,112946,Strong characters,1441402631 +134605,119068,coming of age,1441402894 +134605,119068,modern technology,1441402892 +134606,78499,animation,1439480300 +134612,260,CGI,1433787493 +134612,260,sci fi,1433787482 +134641,356,alabama,1426386764 +134641,356,disability,1426386764 +134641,356,ping pong,1426386764 +134641,588,musical,1418055578 +134641,4489,Eddie Murphy,1418055633 +134641,4489,multiple roles,1418055631 +134676,260,Star Wars,1431113848 +134676,8644,action,1431113794 +134676,8644,artificial intelligence,1431113779 +134676,8644,Will Smith,1431113785 +134676,68954,adventure,1431113989 +134676,68954,animation,1431113969 +134676,68954,comedy,1431113974 +134676,68954,computer animation,1431113986 +134676,68954,funny,1431113965 +134676,68954,Pixar,1431113955 +134676,68954,talking animals,1431113960 +134690,32,twist ending,1190912698 +134690,110,epic,1190913123 +134690,110,violent,1190913123 +134690,230,kathy bates,1190815010 +134690,608,crime gone awry,1190914790 +134690,628,twist ending,1190913276 +134690,1020,jamaica,1190815120 +134690,1200,violent,1190913028 +134690,1258,violent,1190912983 +134690,1274,violent,1190913428 +134690,1589,stallone,1187050440 +134690,1620,twist ending,1190815256 +134690,1625,twist ending,1190913144 +134690,1717,slasher,1187049921 +134690,1779,mind,1187049980 +134690,1883,politics,1190815128 +134690,1907,chinese,1187049874 +134690,2018,deer,1190815091 +134690,2028,violent,1190912958 +134690,2116,epic,1187050492 +134690,2116,tolkien,1187050492 +134690,2137,spiders,1190815219 +134690,2137,talking animals,1190815219 +134690,2391,crime gone awry,1190815077 +134690,2428,sports,1190815232 +134690,2579,out of order,1190912628 +134690,2580,drugs,1190913632 +134690,2600,alternate reality,1187050483 +134690,2762,ghost,1190912814 +134690,2762,twist ending,1190912689 +134690,2841,ghost,1187050518 +134690,2959,imaginary friend,1190912387 +134690,3113,schwarzenegger,1187050466 +134690,3247,catholic,1190815108 +134690,3578,violent,1190913371 +134690,3785,spoof,1190815038 +134690,3826,invisible man,1190815098 +134690,3916,football,1187049917 +134690,4262,crime,1190815071 +134690,4262,violent,1190912968 +134690,4270,summer,1187049909 +134690,4447,reese witherspoon,1190815064 +134690,4720,twist ending,1190913544 +134690,4963,caper,1190913679 +134690,4975,surreal,1187049929 +134690,6323,imaginary friend,1190914108 +134690,6323,John Cusack,1190914087 +134690,6323,twist ending,1190914082 +134690,6378,caper,1187049861 +134690,6870,cops,1187049951 +134690,6870,thriller,1187049951 +134690,6874,violent,1190913060 +134690,7147,twist ending,1190913354 +134690,7347,imaginary friend,1190912424 +134690,8874,violent,1190913290 +134690,8950,imaginary friend,1190912364 +134690,30707,boxing,1190912912 +134690,31427,imaginary friend,1190912329 +134690,32587,crime gone awry,1190912994 +134690,32587,violent,1190912994 +134690,44199,caper,1190912893 +134690,44199,twist ending,1190912903 +134690,44665,twist ending,1190912677 +134690,44709,feel good,1190913329 +134690,47610,twist ending,1190913243 +134690,49272,james bond,1190912856 +134697,260,sci fi,1433209527 +134697,260,space action,1433209539 +134703,778,drugs,1438679735 +134703,1036,sweet90s,1438679806 +134703,4011,goblin,1438679751 +134703,109487,science,1438679658 +134721,260,clever names,1441588333 +134721,260,cute robots,1441588326 +134730,555,tarantino is god,1167334119 +134753,73881,All_Is_Well,1427587284 +134753,73881,Funny,1427587225 +134753,77561,sci-fi,1427587369 +134759,4993,Magic,1445802148 +134759,7153,epic,1445802121 +134759,7153,fantasy,1445802072 +134759,7153,great soundtrack,1445802085 +134759,7153,lord of the rings,1445802101 +134759,7153,magic,1445802076 +134759,106782,3-hours of sex and drugs,1445803784 +134759,106782,Nudity (Full Frontal),1445803756 +134759,106782,prostitution,1445803778 +134759,112556,mindfuck,1445803172 +134763,858,organized crime,1423767256 +134775,47200,Jason Statham,1205618144 +134783,260,good versus evil,1437606945 +134783,260,scifi cult,1437606945 +134783,260,starship pilots,1437606945 +134833,260,classic sci-fi,1439591366 +134833,260,EPIC,1439591361 +134856,8805,heroes,1137850620 +134856,34548,the acting,1256410161 +134895,74458,Acting,1271589486 +134895,74458,Predictable,1271589483 +134920,253,debased,1139265367 +134920,253,mediocre plot,1139265367 +134920,427,skipped this sick story,1139277302 +134920,608,debased,1139265310 +134920,608,mediocre plot,1139265310 +134920,1092,debased,1165357977 +134920,5328,waste of time,1165358619 +134920,6754,Good plot but not okay,1138060824 +134920,7444,created for teens,1137453478 +134920,8369,gore,1137455373 +134920,8369,mediocre plot,1137455373 +134920,26350,boring,1165358722 +134920,27266,waste of time,1157398246 +134920,30659,poignant living life story,1139277509 +134920,31807,B rated sex movie,1138061048 +134920,31807,not okay,1138061048 +134920,32602,aimless scene changing,1145456840 +134920,32602,misrepresented on dvd,1145456839 +134920,32602,plotless,1145456840 +134920,32602,waste of time,1145456839 +134920,33685,uninspiring,1137454123 +134920,33823,boring,1137455302 +134920,33823,mediocre plot,1137455302 +134920,34072,Penguins value their babies,1137455100 +134920,34271,debased,1157398113 +134920,34321,degrading redux,1138060924 +134920,34332,cute,1137454931 +134920,34405,good sci-fi flick,1137454279 +134920,34437,mediocre plot,1144528465 +134920,34437,waste of time,1144528465 +134920,34534,genre is violence,1144528526 +134920,34542,foul language,1140382452 +134920,34542,lost nature opportunity,1140382452 +134920,34542,waste of time,1144528739 +134920,35836,debased,1139277214 +134920,35836,gratuitous sex,1139277214 +134920,35836,mediocre plot,1139277214 +134920,36401,cute,1137455242 +134920,36529,Mediocre Hollywood agenda movie,1137718367 +134920,37477,a lot of laughs,1144528963 +134920,37477,adult,1144528963 +134920,37477,foul language,1144528963 +134920,38992,mediocre plot,1144529021 +134920,39414,adult,1174172466 +134920,40732,sick plot,1174172165 +134920,40732,zombie plot,1174172165 +134920,40851,poor sequel to Jumanji,1145456922 +134920,40959,debased,1165357681 +134920,40966,debased,1157398369 +134920,41571,slow and predictable plot,1137454080 +134920,41997,90 minute story stretched to ~180,1151437961 +134920,41997,overkill,1151437961 +134920,42011,a Hollywood political message,1137454669 +134920,42011,funny,1137454669 +134920,42015,Venetian story of true love,1138060757 +134920,42018,nude show,1165359378 +134920,42418,70's style ending,1152644573 +134920,42418,boring,1152644573 +134920,42418,great scenery,1152644573 +134920,42418,poor music,1152644573 +134920,42721,gratuitous sex,1137454593 +134920,42721,mediocre plot,1137454593 +134920,42730,great music,1152575962 +134920,42730,my history,1152575962 +134920,42730,witness to discrimination,1152575962 +134920,42734,fun family movie,1138060663 +134920,42738,Good plot but not okay,1138060808 +134920,42740,dumb,1174173421 +134920,43556,Naval story interests me,1139277600 +134920,43912,good story,1140382515 +134920,43912,great cast,1140382515 +134920,44199,foul mouthed,1174172731 +134920,44199,good story,1174172731 +134920,44665,blood gore,1165358113 +134920,44759,debased,1165357967 +134920,44864,sick,1174173205 +134920,45447,faithful to book,1148073824 +134920,45447,fast paced,1148073824 +134920,45447,typical Ron Howard,1148073824 +134920,45447,typical Tom Hanks,1148073824 +134920,45726,adult,1174172933 +134920,45732,adult comedy,1174172992 +134920,46530,good sequel,1152133076 +134920,46530,well done with new cast,1152133076 +134920,46723,hollywood babling,1174172646 +134920,46865,funny,1174172957 +134920,46965,adult,1174172432 +134920,46965,debased,1174172432 +134920,47200,debased,1174172113 +134920,48304,"Tribe dialogue ""He's f**ked!"" Incredulous",1166401762 +134920,48774,b-rated,1174172846 +134920,48774,sick plot,1174172846 +134920,49824,great for 60's crowd,1174172889 +134920,50804,adult,1174172371 +134920,51575,adult comedy,1174172232 +134920,51662,blood and guts,1174171948 +134926,778,dark comedy,1438975943 +134926,778,great soundtrack,1438975938 +134926,778,social commentary,1438975925 +134926,778,surreal,1438975952 +134926,116897,argentina,1438976152 +134926,116897,dark humor,1438976144 +134926,116897,Excellent acting,1438976155 +134941,175,controversial,1427868830 +134941,175,drugs,1424205308 +134941,175,Harmony Korine,1438728348 +134941,175,indecent,1438728358 +134941,175,Larry Clark,1424205315 +134941,175,New York City,1424205312 +134941,175,skateboarding,1438728346 +134941,175,youth gone wild,1438728355 +134941,288,dark comedy,1441161238 +134941,288,psychedelic,1441161234 +134941,288,stylized,1441161240 +134941,356,based on a book,1357530950 +134941,356,emotional,1357530929 +134941,535,dark comedy,1438827373 +134941,535,multiple storylines,1438827376 +134941,648,predictable,1361339390 +134941,648,Tom Cruise,1361339385 +134941,1213,based on a book,1361492858 +134941,1213,disturbing,1361492861 +134941,1213,mafia,1361492856 +134941,1213,Robert De Niro,1361492850 +134941,1213,Samuel L. Jackson,1361492853 +134941,1273,deadpan,1441926354 +134941,1273,Jim Jarmusch,1441926349 +134941,1273,stylized,1441926351 +134941,1279,BRIEF ENCOUNTERS,1439987484 +134941,1279,episodic,1439987489 +134941,1279,humorous,1439987491 +134941,1279,Jim Jarmusch,1439987510 +134941,1279,multilingual,1441843864 +134941,1279,multiple locations,1441843856 +134941,1279,multiple storylines,1439987479 +134941,1279,quirky,1441843851 +134941,1279,Winona Ryder,1439987487 +134941,1965,black comedy,1439852435 +134941,1965,cult classic,1439852444 +134941,1965,dark comedy,1439852438 +134941,1965,punk,1439852441 +134941,1965,surreal,1439852445 +134941,2318,dark,1427868871 +134941,2318,dark comedy,1427868868 +134941,2318,dark humor,1427868865 +134941,2318,dysfunctional family,1435597756 +134941,2318,social commentary,1427868862 +134941,2318,Todd Solondz,1435597758 +134941,2336,British,1339340638 +134941,2336,monarchy,1339340609 +134941,2395,wes anderson,1341545836 +134941,2596,cult film,1424206132 +134941,2596,Jason Segel,1424206128 +134941,2596,Matthew Lillard,1424206119 +134941,2596,narrated,1424206126 +134941,2596,punk,1424206116 +134941,2596,punks,1424206123 +134941,2596,sarcasm,1424206130 +134941,2959,atmospheric,1424493264 +134941,2959,dark comedy,1424493277 +134941,2959,overrated,1424493292 +134941,2959,philosophical,1424493271 +134941,2959,social commentary,1424493274 +134941,2959,thought-provoking,1424493267 +134941,3160,cynical,1426310214 +134941,3160,melancholy,1426310211 +134941,3160,multiple storylines,1426310204 +134941,3160,Paul Thomas Anderson,1426310207 +134941,3160,stylized,1426310217 +134941,3252,Al Pacino,1357616061 +134941,3252,atmospheric,1357616059 +134941,3252,based on book,1357616041 +134941,3252,blindness,1357616068 +134941,3252,good acting,1357616037 +134941,3252,great acting,1357616042 +134941,3252,Philip Seymour Hoffman,1357616046 +134941,3481,music,1424206213 +134941,3481,quirky,1424206218 +134941,3623,cheesy,1361339418 +134941,3623,Lame ending,1361339411 +134941,3623,Tom Cruise,1361339414 +134941,3911,absurd,1341708763 +134941,3911,Funny as hell,1341708742 +134941,3911,improvised,1341708750 +134941,3911,mockumentary,1341708748 +134941,4450,Larry Clark,1438785903 +134941,4873,cinematography,1361313437 +134941,4873,dreams,1361313433 +134941,4873,existentialism,1361313420 +134941,4873,intelligent,1361313431 +134941,4873,metaphysics,1361313417 +134941,4873,philosophy,1361313428 +134941,4873,quirky,1361313443 +134941,4873,surreal,1361313426 +134941,4873,thought-provoking,1361313424 +134941,5569,fucked,1441245010 +134941,6975,dark humor,1424206182 +134941,6975,dialogue driven,1424206173 +134941,6975,disturbing,1424206171 +134941,6975,long takes,1424206175 +134941,6978,deadpan,1437430975 +134941,7156,reflective,1424206257 +134941,7265,michael pitt,1441161559 +134941,7460,Atmospheric,1427868668 +134941,7460,dialogue driven,1427868659 +134941,7460,episodic,1427868655 +134941,7460,Jim Jarmusch,1427868650 +134941,7460,minimalist,1427868664 +134941,7460,no plot,1427868679 +134941,7460,surreal,1427868675 +134941,7460,Tom Waits,1427868672 +134941,7460,Wu Tang Clan,1427868696 +134941,26947,Nicolas Winding Refn,1443551677 +134941,26974,Bizarre,1427868092 +134941,26974,Gonz,1427868552 +134941,26974,harmony korine,1427868099 +134941,26974,stoner rock,1427868108 +134941,26974,SUBURBAN DYSFUNCTION,1427868119 +134941,45186,Philip Seymour Hoffman,1361339432 +134941,45186,Tom Cruise,1361339429 +134941,48385,social commentary,1341904398 +134941,55444,black and white,1424493157 +134941,55444,cinematography,1424493155 +134941,55444,depressing,1424493173 +134941,55444,joy division,1424493150 +134941,55444,music,1424493152 +134941,58998,hilarious,1341569920 +134941,58998,male nudity,1341569903 +134941,69134,atmospheric,1424206274 +134941,69134,beautiful scenery,1424206276 +134941,69134,Lars von Trier,1424206280 +134941,78039,depressing,1376627164 +134941,78039,emotional,1376627319 +134941,78039,great performances,1376627166 +134941,78039,realism,1376627157 +134941,78039,Ryan Gosling,1376627154 +134941,78039,sad,1376627161 +134941,78039,sad ending,1376627308 +134941,78039,stylized,1376627314 +134941,78039,thought provoking,1376627159 +134941,79091,funny,1374637787 +134941,79091,heartwarming,1374637785 +134941,79091,pixar,1374637780 +134941,79091,quirky,1374637778 +134941,79091,Steve Carell,1374637776 +134941,79091,visually appealing,1374637792 +134941,80489,ben affleck,1339877710 +134941,87234,great soundtrack,1424206375 +134941,87234,stylistic,1424206379 +134941,87302,aesthetically pleasing,1427753815 +134941,87302,brutality,1380681903 +134941,87302,dark,1427753815 +134941,87302,disturbing,1380681861 +134941,87302,gruesome,1380681856 +134941,87302,ultra-violence,1427753815 +134941,87302,violent,1380681890 +134941,89804,Ryan Gosling,1427868969 +134941,90061,loose narrative,1435597539 +134941,91529,Bane's voice,1343163473 +134941,91529,Batman,1343163476 +134941,91529,Christian Bale,1343163469 +134941,91529,Christopher Nolan,1343163462 +134941,91529,great ending,1343163503 +134941,91529,intense,1343163482 +134941,91630,Tom Cruise,1361339471 +134941,93598,Bland,1376633437 +134941,93855,child killing,1346656782 +134941,93855,social comentary,1346656785 +134941,93855,social criticism,1346656788 +134941,94896,mathew mcconaughey,1424205850 +134941,94896,Richard Linklater,1424205826 +134941,95761,disturbing,1375668362 +134941,95761,great story,1375668365 +134941,96728,cinematography,1424205754 +134941,96728,great performances,1424205747 +134941,96728,Joaquin Phoenix,1424205749 +134941,96728,Paul Thomas Anderson,1424205744 +134941,96728,unique,1424205756 +134941,96728,visually appealing,1424205752 +134941,96829,hard to watch,1424697780 +134941,96829,painful to watch,1424697775 +134941,99114,Great performances,1361253470 +134941,99114,long,1361253500 +134941,99114,Quentin Tarantino,1361253460 +134941,101285,gucci mane,1427868388 +134941,101285,harmony korine,1427868375 +134941,101285,pretty,1427869080 +134941,101285,trill,1427869102 +134941,102194,Matthew McConaughey,1436395323 +134941,102684,beautifully filmed,1424492788 +134941,102684,Ryan Gosling,1424492792 +134941,102684,soundtrack,1424492797 +134941,102684,ultra-violence,1424492794 +134941,102800,black-and-white,1424205423 +134941,103801,Anna Kendrick,1448411436 +134941,103801,Joe Swanberg,1448411449 +134941,103801,Olivia Wilde,1448411441 +134941,104457,adam wingard,1439852315 +134941,104879,absorbing,1424206525 +134941,104879,acting,1424206521 +134941,104879,atmospheric,1424206530 +134941,104879,Jake Gyllenhaal,1424206523 +134941,104879,morality,1424206528 +134941,106920,boring,1424206067 +134941,106920,dystopia,1424206060 +134941,106920,joaquin phoenix,1424206056 +134941,106920,meaning of life,1424206072 +134941,106920,philosophical,1424206046 +134941,106920,predictable,1424206079 +134941,106920,quirky,1424206075 +134941,106920,Scarlett Johansson,1424206053 +134941,106920,Spike Jonze,1424206069 +134941,106920,thought-provoking,1424206048 +134941,107196,Noam Chomsky,1424814994 +134941,107771,atmospheric,1427868739 +134941,107771,Jim Jarmusch,1427868744 +134941,107771,visually stunning,1427868750 +134941,108727,Lars von Trier,1424205522 +134941,108727,story,1424205529 +134941,108729,Jake Gyllenhaal,1424492378 +134941,108729,tense,1424492367 +134941,108729,toronto,1424492387 +134941,108981,Lars von Trier,1427868895 +134941,109487,artificial intelligence,1426518286 +134941,109487,atmosphere,1426518438 +134941,109487,good science,1426518245 +134941,109487,interesting ideea,1426518248 +134941,109487,Matthew McConaughey,1426518239 +134941,109487,philosophical issues,1426518427 +134941,109487,physics,1426518288 +134941,109487,relativity,1426518241 +134941,109487,sentimental,1426518291 +134941,109487,sounds,1426518433 +134941,109487,space,1426518237 +134941,109487,spectacle,1426518284 +134941,109487,thought-provoking,1426518243 +134941,110882,strong performance,1425408528 +134941,112183,dark,1424814869 +134941,112183,Edward Norton,1424814862 +134941,112183,great performances,1424814860 +134941,112183,single shot,1424814865 +134941,112290,Ethan Hawke,1424205786 +134941,112290,growing up,1424205790 +134941,112290,realism,1424205782 +134941,112290,Richard Linklater,1424205793 +134941,112421,Maggie Gyllenhaal,1435597605 +134941,112552,jazz,1424205234 +134941,112552,realistic,1424205245 +134941,112556,good adaptation,1426310402 +134941,113862,maika monroe,1435597700 +134941,114760,anna kendrick,1448411410 +134941,114760,Joe Swanberg,1448411417 +134941,115122,dark comedy,1441037659 +134941,115122,mockumentary,1441037656 +134941,115122,vampires,1441037668 +134941,116799,Countercultural,1424815294 +134941,116799,drug jokes,1424815325 +134941,116799,Joaquin Phoenix,1424815298 +134941,116799,Owen Wilson,1424815297 +134941,116799,Paul Thomas Anderson,1424815300 +134941,116799,Private investigator,1424815291 +134941,116799,visually appealing,1424815309 +134941,116897,dark humor,1437430745 +134941,116897,Excellent acting,1437430747 +134941,116897,multiple short stories,1437430756 +134941,121231,Creepy,1435597501 +134941,121231,David Robert Mitchell,1435597517 +134941,121231,disasterpiece,1435598452 +134941,121231,rich vreeland,1435598454 +134941,121231,score,1435597503 +134953,555,tarantino is god,1235098074 +134976,2137,@2010,1365173578 +134976,2137,@childhood,1365173578 +134976,2137,animation,1365173578 +134988,60684,alternate reality,1368860906 +134988,60684,sci-fi,1368860912 +134988,60684,superhero,1368860913 +134993,7101,Notable Nudity,1172977574 +134995,3408,Socially Irrelevant,1202930345 +135032,6,seen 2011,1323123342 +135032,17,seen 2012,1325973257 +135032,105,seen 2011,1298746751 +135032,150,adventure,1424158626 +135032,150,Seen 2008,1230225517 +135032,150,space,1424158626 +135032,150,tom hanks,1424158626 +135032,161,seen 2015,1440773476 +135032,215,seen 2014,1408307649 +135032,289,seen 2011,1303243608 +135032,337,seen 2011,1324747227 +135032,337,seen more than once,1324747227 +135032,339,seen 2015,1435487632 +135032,342,Seen 2009,1246133137 +135032,346,Seen 2013,1367437535 +135032,347,Seen 2014,1407789383 +135032,356,Seen 2009,1261563853 +135032,360,Seen 2014,1396354952 +135032,361,Seen 2013,1382384737 +135032,361,seen more than once,1382384737 +135032,440,president,1216130441 +135032,468,Seen 2008,1216241480 +135032,517,Seen 2014,1402416256 +135032,544,seen 2010,1270726387 +135032,593,seen 2015,1438845402 +135032,608,seen 2012,1327250751 +135032,608,seen more than once,1327250751 +135032,866,Seen 2013,1374614465 +135032,901,seen 2012,1333302016 +135032,902,seen 2015,1436512635 +135032,908,Seen 2014,1406926031 +135032,908,seen more than once,1406926031 +135032,909,seen 2015,1436720994 +135032,911,Seen 2008,1223495765 +135032,911,Seen 2013,1384114275 +135032,911,seen more than once,1384114275 +135032,914,Seen 2013,1364642016 +135032,914,seen at the cinema,1420020831 +135032,914,seen more than once,1364642016 +135032,915,Seen 2009,1232207561 +135032,924,seen 2011,1320181693 +135032,924,seen more than once,1320181693 +135032,930,seen 2010,1286258975 +135032,969,seen 2016,1453719655 +135032,969,seen more than once,1453719664 +135032,994,seen 2015,1440773547 +135032,1042,Seen 2013,1360788938 +135032,1073,seen 2010,1262333736 +135032,1088,seen 2010,1262594292 +135032,1203,seen 2015,1435487234 +135032,1214,seen 2010,1273648082 +135032,1226,seen 2015,1428858598 +135032,1230,Seen 2013,1362426707 +135032,1244,Seen 2008,1219524179 +135032,1296,Seen 2008,1219611534 +135032,1300,seen 2011,1325011559 +135032,1305,seen 2012,1325453923 +135032,1344,seen 2011,1301089331 +135032,1353,seen 2012,1328375073 +135032,1393,Seen 2008,1229809229 +135032,1394,seen 2011,1305661766 +135032,1457,seen 2012,1356192221 +135032,1589,Seen 2009,1249333011 +135032,1833,Seen 2008,1220986766 +135032,1844,seen 2015,1438685100 +135032,1876,Seen 2009,1233958879 +135032,1876,seen 2011,1309641420 +135032,1912,seen 2012,1331838704 +135032,1912,seen more than once,1331838704 +135032,2000,Seen 2008,1224968127 +135032,2115,seen 2015,1426195003 +135032,2160,seen 2010,1285447956 +135032,2181,Seen 2014,1407011885 +135032,2181,seen more than once,1407011885 +135032,2201,seen 2012,1340777520 +135032,2203,Seen 2009,1232905784 +135032,2206,seen 2010,1293279681 +135032,2245,Seen 2014,1406751079 +135032,2245,seen more than once,1406751079 +135032,2334,Seen 2014,1406374639 +135032,2429,Seen 2009,1236460857 +135032,2521,Seen 2009,1234639835 +135032,2712,Seen 2014,1402416290 +135032,2731,seen 2010,1287310504 +135032,2750,seen 2010,1282416357 +135032,2803,seen more than once,1419539536 +135032,2927,seen 2011,1324827625 +135032,2947,seen 2012,1353960423 +135032,2947,seen more than once,1353960423 +135032,3075,Seen 2009,1235169138 +135032,3125,Seen 2014,1406491614 +135032,3134,Seen 2009,1239481804 +135032,3148,Seen 2009,1253358508 +135032,3176,seen 2011,1295048342 +135032,3207,Seen 2013,1372611287 +135032,3255,Seen 2008,1230208933 +135032,3258,Seen 2008,1216671017 +135032,3259,seen 2011,1310925735 +135032,3307,seen 2012,1340777402 +135032,3307,seen more than once,1340777402 +135032,3310,seen 2012,1338739797 +135032,3310,seen more than once,1338739797 +135032,3355,Seen 2008,1218907528 +135032,3379,seen 2012,1343078798 +135032,3379,seen more than once,1343078797 +135032,3435,seen 2011,1307900527 +135032,3451,seen 2011,1303763781 +135032,3451,seen at the cinema,1303763782 +135032,3451,seen more than once,1303763781 +135032,3499,seen 2011,1299431425 +135032,3526,Seen 2009,1260092100 +135032,3529,Seen 2014,1405517298 +135032,3529,seen more than once,1405517298 +135032,3565,Seen 2008,1223230921 +135032,3578,seen 2011,1324851705 +135032,3809,Seen 2014,1405329873 +135032,3809,seen more than once,1405329873 +135032,3849,seen 2012,1330886713 +135032,3872,Seen 2009,1244136504 +135032,3893,Seen 2008,1224277230 +135032,3897,Seen 2013,1387907721 +135032,3948,seen 2010,1271414702 +135032,3966,Seen 2013,1372104287 +135032,3984,seen 2012,1361909772 +135032,3984,seen more than once,1361909772 +135032,4014,seen 2015,1451378231 +135032,4014,seen more than once,1451378234 +135032,4022,seen 2010,1263466612 +135032,4117,Seen 2009,1244233273 +135032,4234,Seen 2013,1374308860 +135032,4238,seen 2015,1437296120 +135032,4280,seen 2012,1348900679 +135032,4355,Seen 2009,1255244870 +135032,4410,seen 2012,1338580871 +135032,4410,seen more than once,1338580871 +135032,4835,Seen 2008,1216664673 +135032,5011,seen 2011,1312397733 +135032,5105,Seen 2014,1402416478 +135032,5118,Seen 2008,1217877057 +135032,5299,Seen 2013,1360874760 +135032,5397,Seen 2013,1384114446 +135032,5446,Seen 2009,1255244717 +135032,5506,Seen 2008,1219695636 +135032,5620,seen 2015,1439488636 +135032,5635,Seen 2008,1225473158 +135032,5673,Seen 2008,1230208980 +135032,5827,seen 2013,1376857952 +135032,5872,Halle Berry,1217882646 +135032,5872,Seen 2008,1217882577 +135032,5876,Seen 2008,1222029354 +135032,5945,Seen 2014,1393386885 +135032,5945,seen on airplane,1393386885 +135032,5995,Seen 2008,1227907540 +135032,6006,Seen 2014,1404198741 +135032,6187,Seen 2009,1235251697 +135032,6228,seen 2014,1417975992 +135032,6286,seen 2012,1328722591 +135032,6293,Seen 2008,1225571464 +135032,6341,Seen 2014,1406398373 +135032,6367,Seen 2014,1404757673 +135032,6412,Seen 2013,1362343511 +135032,6593,seen 2011,1319316125 +135032,6699,seen 2010,1270207653 +135032,6711,Scarlett Johansson,1222029434 +135032,6711,seen more than once,1222029423 +135032,6753,Seen 2008,1221502446 +135032,6770,Seen 2008,1224277011 +135032,6858,seen 2011,1309641598 +135032,6873,seen 2012,1337283910 +135032,6873,seen more than once,1337283910 +135032,6942,seen 2009,1260701138 +135032,6942,seen more than once,1324747266 +135032,6957,seen 2014,1419539425 +135032,6992,seen 2014,1419539453 +135032,7034,seen 2010,1289765331 +135032,7044,seen 2010,1286810863 +135032,7072,seen 2015,1428251604 +135032,7130,Seen 2014,1399301325 +135032,7136,seen 2010,1291237768 +135032,7137,Seen 2009,1236980506 +135032,7147,seen 2010,1262343545 +135032,7158,Seen 2008,1218750234 +135032,7173,seen 2015,1447579029 +135032,7212,Seen 2013,1384114412 +135032,7255,seen 2010,1273660075 +135032,7366,seen 2012,1328730169 +135032,7379,seen 2015,1436866453 +135032,7438,Seen 2008,1217876840 +135032,7442,Seen 2008,1218916114 +135032,7450,Seen 2009,1231190726 +135032,7619,seen 2011,1312700244 +135032,7697,seen 2015,1443450552 +135032,7809,Seen 2014,1398886441 +135032,7896,seen 2010,1287866222 +135032,8121,seen 2011,1325280133 +135032,8361,seen 2012,1333400068 +135032,8369,Seen 2013,1372971790 +135032,8383,Seen 2009,1234023946 +135032,8529,Seen 2008,1224102373 +135032,8532,seen 2010,1270287412 +135032,8533,seen 2015,1450547519 +135032,8618,seen 2011,1313269315 +135032,8638,Seen 2014,1408390876 +135032,8641,Seen 2008,1216241560 +135032,8652,seen 2015,1436721152 +135032,8781,Seen 2009,1232207413 +135032,8784,seen 2012,1355572632 +135032,8784,seen 2015,1438684490 +135032,8784,seen more than once,1438684497 +135032,8798,seen 2011,1321125026 +135032,8799,seen 2010,1282245194 +135032,8813,Seen 2008,1225549582 +135032,8838,Seen 2008,1219495867 +135032,8916,seen 2010,1264851197 +135032,8949,seen 2010,1263642151 +135032,8958,seen 2010,1273923426 +135032,8981,seen 2010,1270381284 +135032,25865,seen 2011,1313339543 +135032,25940,seen 2011,1322941528 +135032,26067,seen 2010,1285447912 +135032,26072,seen 2014,1419795068 +135032,26283,seen 2012,1353168903 +135032,26349,Seen 2014,1407789439 +135032,26359,seen 2010,1293279722 +135032,26520,seen 2012,1329426220 +135032,26900,seen 2011,1324924933 +135032,27641,seen 2015,1437853527 +135032,27719,seen 2012,1345060725 +135032,27744,seen 2011,1322316608 +135032,27808,seen 2012,1361913898 +135032,27820,seen 2010,1263028392 +135032,27821,seen 2011,1299533540 +135032,27866,seen 2012,1345562133 +135032,30848,seen 2010,1282498378 +135032,30898,Seen 2008,1230761923 +135032,31685,Seen 2009,1255254692 +135032,32291,Seen 2014,1393386804 +135032,32291,seen on airplane,1393386805 +135032,32584,seen 2011,1311529322 +135032,32770,seen 2010,1279226860 +135032,33145,seen 2011,1293915196 +135032,33166,seen 2010,1266060448 +135032,33166,seen 2015,1440921585 +135032,33166,seen more than once,1440921593 +135032,33722,seen 2012,1325882700 +135032,33880,seen 2011,1294434831 +135032,34319,Seen 2009,1256638219 +135032,35836,Seen 2009,1253949587 +135032,35957,Seen 2013,1363639342 +135032,36276,seen 2010,1266744848 +135032,36517,Seen 2009,1249332918 +135032,37729,Seen 2008,1225549390 +135032,38159,Seen 2013,1360485829 +135032,38798,seen 2010,1267187045 +135032,39183,Seen 2008,1229809272 +135032,39292,Seen 2009,1232306167 +135032,39292,seen 2010,1272769135 +135032,39449,seen 2010,1290374139 +135032,39481,seen 2015,1425026076 +135032,40819,Seen 2009,1232207453 +135032,40819,seen 2011,1319315984 +135032,40819,seen more than once,1319315984 +135032,40887,seen 2012,1331416850 +135032,40952,seen 2011,1297282727 +135032,42004,seen 2010,1264844139 +135032,42958,Seen 2014,1398886316 +135032,43396,seen 2011,1308947895 +135032,44195,seen 2010,1269142462 +135032,44301,Seen 2013,1420020616 +135032,45611,Seen 2008,1226222149 +135032,45720,seen 2010,1265972628 +135032,45726,Seen 2009,1260094289 +135032,45880,seen 2012,1345580641 +135032,46578,seen 2010,1268449802 +135032,46723,seen 2010,1290292572 +135032,47148,Seen 2009,1261894103 +135032,48304,seen 2011,1309641457 +135032,49284,seen 2014,1419855885 +135032,49286,seen 2010,1270811555 +135032,49312,seen 2012,1333138535 +135032,49666,Seen 2013,1373054896 +135032,49822,seen 2012,1326578704 +135032,49822,seen more than once,1326578704 +135032,49961,seen 2011,1310925353 +135032,50274,seen 2012,1342814984 +135032,50514,seen 2010,1280001329 +135032,50792,Seen 2009,1230930091 +135032,50802,Seen 2014,1406279462 +135032,50940,seen 2010,1290893923 +135032,51084,seen 2010,1270374693 +135032,51084,seen 2012,1353843296 +135032,51084,seen more than once,1353843295 +135032,51174,Seen 2008,1226173761 +135032,51884,seen 2010,1274616797 +135032,52037,seen 2012,1345562270 +135032,52579,seen 2011,1293903991 +135032,52591,seen 2010,1282422744 +135032,52973,seen 2011,1302553679 +135032,53123,seen 2013,1357072807 +135032,53318,Seen 2013,1361307130 +135032,53956,seen 2010,1263275316 +135032,54286,Seen 2009,1253949653 +135032,54796,seen 2011,1301864024 +135032,54958,seen 2012,1329603280 +135032,55052,seen 2009,1260701393 +135032,55052,seen 2015,1451157789 +135032,55052,seen more than once,1451157782 +135032,55100,Seen 2014,1401258695 +135032,55253,seen 2010,1292106080 +135032,55253,Seen 2013,1372451546 +135032,55253,seen more than once,1372451546 +135032,55280,Seen 2013,1385909768 +135032,55417,seen 2011,1317494782 +135032,55765,seen 2010,1266662527 +135032,55820,seen 2010,1274614370 +135032,56001,Seen 2013,1371845796 +135032,56333,Seen 2013,1373658502 +135032,56367,Seen 2014,1404330945 +135032,56389,seen 2012,1329566809 +135032,56587,seen 2010,1270462850 +135032,56941,seen 2010,1287347249 +135032,57526,seen 2012,1328909312 +135032,58047,seen 2010,1272769091 +135032,58047,seen 2014,1420198277 +135032,58047,seen more than once,1420198284 +135032,58418,seen 2010,1282506948 +135032,58418,seen 2011,1324146962 +135032,58418,seen more than once,1384787972 +135032,59315,Seen 2014,1403699058 +135032,59435,seen 2010,1280001221 +135032,59602,seen 2011,1324753343 +135032,59910,Seen 2014,1401478176 +135032,60950,seen 2012,1342260467 +135032,61240,seen 2011,1302466435 +135032,61724,seen 2011,1324330790 +135032,62293,seen 2012,1356554302 +135032,62718,seen 2012,1343159060 +135032,63329,seen 2011,1324747311 +135032,63853,Seen 2009,1232899191 +135032,63853,seen at the cinema,1420020704 +135032,64614,Seen 2014,1404732407 +135032,64620,Seen 2014,1406279523 +135032,64997,Seen 2009,1242677597 +135032,65465,Seen 2009,1259740938 +135032,65465,Seen 2013,1388598481 +135032,65465,seen more than once,1388598481 +135032,65465,seen on airplane,1259740938 +135032,67267,Seen 2014,1402429370 +135032,67620,seen 2015,1439900314 +135032,68749,seen 2013,1387914063 +135032,69243,Seen 2014,1403699036 +135032,69406,Seen 2009,1256368307 +135032,69995,seen 2011,1305838509 +135032,70183,seen 2011,1309814211 +135032,70293,seen 2011,1298754155 +135032,70293,seen 2015,1434363913 +135032,70293,seen more than once,1434363919 +135032,70595,Seen 2014,1407240977 +135032,70595,seen more than once,1407240977 +135032,70932,Seen 2009,1256368112 +135032,71033,seen 2011,1298840577 +135032,71438,seen 2010,1271500878 +135032,71438,seen at the cinema,1271500878 +135032,71518,seen 2012,1330894850 +135032,71579,Seen 2009,1255244671 +135032,71579,seen at the cinema,1255244671 +135032,72386,seen 2011,1299409447 +135032,72641,seen 2010,1273913410 +135032,72641,seen at the cinema,1273913410 +135032,72720,seen 2010,1298801433 +135032,72720,seen at the cinema,1298801433 +135032,72733,seen 2010,1276156844 +135032,72733,seen on airplane,1276156844 +135032,72751,seen 2011,1302987891 +135032,73015,seen 2016,1452844000 +135032,73023,seen 2010,1276156880 +135032,73023,seen on airplane,1276156880 +135032,73319,seen 2010,1409055571 +135032,73413,Seen 2014,1406577727 +135032,74327,Seen 2014,1409076964 +135032,74416,seen 2015,1451216206 +135032,74458,Seen 2014,1415001897 +135032,76093,seen 2015,1423925702 +135032,76173,Seen 2014,1408212624 +135032,77312,seen 2011,1295957080 +135032,77370,seen 2011,1307817665 +135032,77421,Seen 2014,1389811320 +135032,78574,Seen 2014,1402598913 +135032,79185,seen 2015,1451065176 +135032,80126,Seen 2014,1401607958 +135032,80432,Seen 2013,1385923667 +135032,80463,seen 2012,1356463195 +135032,80551,seen 2012,1331404147 +135032,80789,seen 2012,1341684924 +135032,81257,Seen 2014,1409514537 +135032,81788,seen 2015,1451058046 +135032,81845,seen 2011,1298831541 +135032,81845,seen at the cinema,1298831541 +135032,82167,seen 2011,1294431657 +135032,82167,seen at the cinema,1294431657 +135032,82202,Seen 2013,1385155019 +135032,82242,seen 2012,1356211224 +135032,82767,Seen 2014,1390688546 +135032,83244,Seen 2013,1374263072 +135032,83302,Seen 2014,1398886359 +135032,84529,seen 2011,1310925655 +135032,84954,seen 2014,1398542837 +135032,84980,seen 2015,1451669668 +135032,84980,seen more than once,1451669662 +135032,86882,seen 2012,1338530212 +135032,86882,seen 2015,1450984866 +135032,86882,seen more than once,1450984859 +135032,88163,seen 2015,1429021764 +135032,88911,seen 2011,1322997966 +135032,89535,seen 2012,1329426167 +135032,89535,seen at the cinema,1420020674 +135032,89864,Seen 2014,1414321473 +135032,90009,seen 2011,1324320431 +135032,91079,seen 2015,1427998304 +135032,91890,seen 2014,1419539386 +135032,92694,seen 2012,1341779763 +135032,93740,seen 2015,1447578981 +135032,93842,seen 2015,1420575152 +135032,94266,Seen 2013,1376858144 +135032,94837,Seen 2013,1388183389 +135032,95175,seen 2012,1345005021 +135032,95441,seen in 2015,1430590347 +135032,95744,seen 2015,1439900467 +135032,96728,seen 2014,1417975518 +135032,96751,seen 2015,1441276707 +135032,96909,Seen 2014,1399301354 +135032,96945,seen 2015,1450547554 +135032,97870,seen 2015,1440861146 +135032,100401,seen 2015,1420305320 +135032,100714,Seen 2014,1408473800 +135032,101350,Seen 2014,1410790044 +135032,101531,seen 2014,1420020557 +135032,104283,Seen 2014,1397416713 +135032,104283,seen at the cinema,1397416713 +135032,104406,Seen 2014,1409082091 +135032,105554,Seen 2014,1401716958 +135032,105755,Seen 2014,1393386843 +135032,105755,seen on airplane,1393386843 +135032,106326,seen 2015,1422365942 +135032,106330,Seen 2014,1393290734 +135032,106330,seen on airplane,1393290734 +135032,106749,Seen 2014,1393387076 +135032,106749,seen on airplane,1393387077 +135032,106920,Seen 2014,1406665315 +135032,107692,seen 2015,1422213193 +135032,107980,Seen 2014,1410985308 +135032,109487,seen 2014,1417975639 +135032,109487,seen at the cinema,1420020753 +135032,109769,seen 2015,1438078864 +135032,112290,seen 2015,1438888910 +135032,113630,Seen 2014,1408961845 +135032,113630,seen more than once,1408961845 +135032,120623,comedy,1420305694 +135032,120623,seen 2014,1420305688 +135032,121173,seen 2015,1420721383 +135032,121294,seen 2015,1423506166 +135032,125910,seen 2015,1421864227 +135032,128688,seen 2015,1424089755 +135032,128690,seen 2015,1441471174 +135032,128910,seen 2015,1424510324 +135032,134881,seen 2015,1436215607 +135032,134881,seen at the cinema,1436215679 +135047,5294,god hand's killer,1301815011 +135055,260,fiction,1433343199 +135055,260,future,1433343189 +135055,260,space,1433343193 +135058,208,apocalypse,1320930136 +135058,208,big budget,1320930140 +135058,208,Dennis Hopper,1320930132 +135058,208,Kevin Costner,1320930134 +135058,208,ocean,1320930145 +135058,208,post-apocalyptic,1320930154 +135058,208,stupid,1320930148 +135058,296,action,1320930196 +135058,296,Black comedy,1320930193 +135058,296,Bruce Willis,1320930197 +135058,296,cult film,1320930200 +135058,296,dark comedy,1320930192 +135058,296,multiple storylines,1320930209 +135058,296,Quentin Tarantino,1320930203 +135058,296,Samuel L. Jackson,1320930204 +135058,296,violence,1320930206 +135058,2916,alternate reality,1320930059 +135058,2916,Arnold Schwarzenegger,1320930056 +135058,2916,campy,1320930062 +135058,2916,cyberpunk,1320930064 +135058,2916,politics,1320930073 +135058,2916,rebellion,1320930075 +135058,2916,terrorism,1320930077 +135058,2985,80s,1320929941 +135058,2985,android(s)/cyborg(s),1320929943 +135058,2985,business,1320929945 +135058,2985,cheesy,1320929947 +135058,2985,dystopia,1320929952 +135058,2985,Good action,1320929984 +135058,2985,over the top,1320929956 +135058,2985,social commentary,1320929962 +135058,2985,superhero,1320929960 +135058,2985,tongue-in-cheek,1320929966 +135059,1537,romance,1365442493 +135059,2253,Pixar,1365442655 +135059,2501,science history,1365442567 +135059,8961,pixar,1365442450 +135059,50872,Pixar,1365442376 +135059,58347,romance,1365442546 +135059,60069,pixar,1365442362 +135059,73000,musical,1365442621 +135059,73000,romance,1365442621 +135059,88179,romance,1365442521 +135074,56367,minnesotan,1201769743 +135074,56367,notable soundtrack,1201770095 +135099,260,action,1439800454 +135099,260,sci-fi,1439800461 +135161,541,cyberpunk,1294768867 +135161,541,dystopia,1294768888 +135161,541,existentialism,1294768880 +135161,541,Philip K. Dick,1294768854 +135161,2594,better than the american version,1294768948 +135161,2594,mindfuck,1294768958 +135161,3959,H.G. Wells,1294768706 +135161,3959,ideas,1294768706 +135161,3959,plot,1294768668 +135161,82461,airport,1294768407 +135161,82461,bad acting,1294768407 +135161,82461,bad plot,1294768407 +135161,82461,dialogue,1294768407 +135161,82461,music,1294768407 +135161,82461,plot,1294768407 +135161,91500,predictable,1371516854 +135174,4022,wilson,1432163116 +135174,48385,weird,1432163040 +135181,145,action,1148757522 +135207,260,bast background universe,1442661878 +135207,79132,sci-fi,1442662817 +135220,5564,bad,1357600563 +135220,5564,creepy stalker,1357600563 +135220,62970,too slow,1357584324 +135220,87430,effects,1357305292 +135220,92152,beautifully filmed,1357564132 +135220,92152,love story,1357564163 +135220,92152,Teen movie,1357564132 +135222,898,screwball comedy,1432757514 +135222,910,Jack Lemmon,1432760788 +135222,910,Marilyn Monroe,1432760785 +135222,910,screwball comedy,1432760767 +135222,910,Tony Curtis,1432760782 +135222,1269,screwball comedy,1432760707 +135222,2413,hilarious,1432757444 +135222,2413,whodunit,1432757485 +135222,2413,wordplay,1432757470 +135222,42002,Broadway,1432758074 +135222,68157,satire,1432758736 +135222,88140,generic,1432757693 +135222,99149,depressing,1432758153 +135222,99149,musical,1432758132 +135222,109374,cinematography,1432757366 +135222,109374,great dialogue,1432757373 +135222,109374,quirky,1432757394 +135222,110102,good character interaction,1432757808 +135222,112183,Broadway,1432757263 +135222,112183,great performances,1432757306 +135222,112183,psychological,1432757294 +135222,112852,flat characters,1432757916 +135222,112852,fun,1432757952 +135222,112852,Great Visuals,1432757895 +135222,118997,musical,1432761083 +135224,2146,80's classic,1206628931 +135228,356,drama,1438371090 +135228,356,nostalgia,1438371090 +135228,356,tom hanks,1438371090 +135259,1245,Coen Brothers,1188187590 +135259,1350,Devil Child,1188187633 +135259,2384,Masterpiece,1188187609 +135259,3113,Devil,1188187616 +135259,8644,Anti-utilitarian,1188187575 +135262,41566,didn't translate well to a movie,1179451440 +135262,52319,easily confused with other movie(s) (title),1263945771 +135262,76251,not funny,1273450552 +135262,76251,tasteless,1273450472 +135269,59315,Marvel,1221491769 +135281,193,Boring,1285013906 +135281,193,dull,1285013933 +135281,193,excessive coarseness,1285013952 +135281,193,Nakedness,1285013896 +135281,193,overacting,1285013914 +135281,495,castration,1285014863 +135281,495,paradoxically tedious sex scenes,1285014886 +135281,495,sadism,1285014851 +135281,913,Humphrey Bogart,1285014693 +135281,1217,Akira Kurosawa,1285015951 +135281,1217,cinematography,1285015938 +135281,1217,Tragedy,1285015968 +135281,1924,So bad it's good,1285013868 +135281,3435,anklet,1285014658 +135281,3435,Barbara Stanwyck,1285014625 +135281,3435,Bleak,1285014607 +135281,3435,Femme fatale,1285014645 +135281,3435,film noir,1285014613 +135281,3435,Fred MacMurray,1285014632 +135281,3435,Insurance scheme,1285014671 +135281,3593,incoherent,1285013835 +135281,3593,scientology propaganda,1285013824 +135281,3742,Influential,1285015990 +135281,3742,Overt propaganda,1285015998 +135281,4390,exploitative,1285015050 +135281,4390,moral ambiguity,1285015086 +135281,4390,unsimulated sex scenes,1285015102 +135281,4775,Golden Raspberry (Worst Actress),1363181017 +135281,4847,Anaïs Reboux,1285014952 +135281,4847,bad ending,1285014923 +135281,4847,Coming of age,1285014960 +135281,6483,stupid,1363181059 +135281,6483,Worst movie ever,1363181050 +135281,6587,Ben Affleck,1285013697 +135281,6587,Dull,1285013738 +135281,6587,Dull. Incoherent. Childish.,1285013734 +135281,6587,Insipid dialogue,1285013645 +135281,6587,Jennifer Lopez,1285013674 +135281,6587,Martin Brest,1285013708 +135281,6587,Unfunny,1285013767 +135281,6587,Unromantic,1285013775 +135281,7008,Nudity (Full Frontal - Notable),1285014806 +135281,7008,overrated,1285014788 +135281,25993,dated,1285015852 +135281,25993,Douglas Sirk,1285015867 +135281,25993,melodramatic,1285015862 +135281,30712,Film Noir,1285014539 +135281,30712,Suspense,1285014549 +135281,30712,Tense,1285014566 +135281,30712,Train,1285014576 +135281,31555,Ronald McDonald cameo,1285013586 +135281,31555,So bad it's good,1285013570 +135281,48744,pseudo-profound,1285014738 +135281,48744,trite,1285014722 +135281,112852,formulaic,1411696369 +135281,112852,Special Effects,1411696374 +135290,260,Fantastic sci fi movie,1442079152 +135292,198,future,1230255505 +135292,198,virtual reality,1230255496 +135292,349,cia,1324042042 +135292,349,Tom Clancy,1324042026 +135292,428,coming of age,1387934949 +135292,428,mafia,1387934953 +135292,428,Robert De Niro,1387934935 +135292,474,secret service,1230253633 +135292,1584,existentialism,1230254836 +135292,1584,future,1230254811 +135292,1584,space,1230254820 +135292,1608,secret service,1230253671 +135292,1610,cia,1230256179 +135292,1653,future,1230254770 +135292,2278,alone,1230254550 +135292,2278,car chase,1230254533 +135292,2334,racism,1230254239 +135292,2692,surreal,1230255176 +135292,2692,time travel,1230255123 +135292,2997,mindfuck,1230255450 +135292,2997,surreal,1230255456 +135292,3256,cia,1230256132 +135292,3717,car chase,1230254574 +135292,3916,racism,1230254298 +135292,4901,cia,1230256212 +135292,4975,existentialism,1230255044 +135292,4975,future,1230255032 +135292,4975,mindfuck,1230255027 +135292,4975,singularity,1230255060 +135292,5266,strong room,1230253887 +135292,5400,cia,1230256088 +135292,5400,secret service,1230256081 +135292,5418,car chase,1230254490 +135292,5418,cia,1230256240 +135292,5445,artificial intelligence,1230254730 +135292,5445,future,1230254665 +135292,6365,car chase,1230254619 +135292,6365,existentialism,1230254955 +135292,6365,future,1230254637 +135292,6365,singularity,1230254644 +135292,7445,bodyguard,1331087691 +135292,7445,Denzel Washington,1331087665 +135292,8529,tom hanks,1184675083 +135292,8644,artificial intelligence,1230254708 +135292,8644,future,1230254699 +135292,8665,car chase,1230254508 +135292,8665,cia,1230256257 +135292,8914,mindfuck,1230255095 +135292,8914,time travel,1230255084 +135292,26614,cia,1230256230 +135292,30749,racism,1230254268 +135292,33004,sci-fi,1230255412 +135292,33004,singularity,1230255412 +135292,33004,space,1230255421 +135292,33166,racism,1230254321 +135292,34319,future,1230203035 +135292,51935,conspiracy,1324041961 +135292,51935,sniper,1324041961 +135292,51935,vengeance,1324041961 +135292,54286,cia,1230256221 +135292,55276,eccentric,1193554411 +135292,55276,fixer,1193554410 +135292,55276,lawyers,1193554411 +135292,55276,loan shark,1193554424 +135292,55276,practicing speech,1193554219 +135292,56885,racism,1230254108 +135292,58103,secret service,1230253944 +135292,59016,Forest Whitaker,1331087643 +135292,60126,car chase,1230254407 +135292,60126,secret service,1230253614 +135320,96775,crime,1419978080 +135320,96775,foreign movie,1419978080 +135320,96775,police investigation,1419978080 +135320,101741,Nudity (Full Frontal),1436243861 +135320,105468,animation,1423697980 +135320,105468,family movie,1423697980 +135320,105468,sequel,1423697980 +135320,106920,artificial intelligence,1430780669 +135320,106920,bittersweet,1430780675 +135320,106920,meaning of life,1430780691 +135320,106920,psychology,1430780677 +135320,106920,sci-fi,1430780681 +135320,110407,artificial intelligence,1423077030 +135320,110407,dystopia,1423077030 +135320,110407,sci-fi,1423077030 +135320,112183,psychological,1421245304 +135320,114007,british,1420773566 +135320,114007,drama,1420773566 +135320,114007,thriller,1420773566 +135331,70286,aliens,1254646036 +135331,70286,alternate history,1254646034 +135331,70286,humor,1254646038 +135331,70286,sci-fi,1254646100 +135331,70286,Special Effects,1254646049 +135331,70286,thriller,1254646083 +135331,79132,Christopher Nolan,1279694059 +135331,79132,Ellen Page,1279694070 +135331,79132,Joseph Gordon-Levitt,1279694061 +135331,79132,Leonardo DiCaprio,1279694072 +135331,79132,makes you think,1279694089 +135331,79132,Marion Cotillard,1279694126 +135331,94466,not a movie,1448846567 +135331,94466,tv series,1448846579 +135331,108583,not a movie,1448846643 +135331,108583,tv series,1448846647 +135374,1297,engineering,1325566574 +135374,1297,smart comedy,1325566571 +135374,1704,genius,1325566781 +135374,2501,engineering,1325566649 +135382,339,cute romance,1175830800 +135382,715,¡Olivier Martinez!,1175830427 +135382,780,don't take it seriously folks!,1175830662 +135382,2067,romantic,1175832236 +135382,5135,mosaic,1175828463 +135382,8969,over the top girlie girl movie,1175829283 +135382,40583,gotta watch 2x,1175828741 +135382,42197,hysterical in a quirky way,1175828090 +135382,44204,unforgetable,1175833931 +135382,45950,Must see!,1175831768 +135382,51884,real,1175828390 +135394,60069,Cute!,1219752511 +135396,260,"all-time great, revolutionary",1444309319 +135410,260,Action,1434766891 +135410,260,adventure,1434766948 +135410,260,Science Fiction,1434766894 +135410,260,space,1434766904 +135415,913,noir thriller,1368329483 +135415,1291,treasure,1368329432 +135415,1894,stranded,1368329518 +135415,2022,jesus,1368329398 +135415,2115,treasure,1368329432 +135415,2405,treasure,1368329432 +135415,2726,noir thriller,1368329482 +135415,3300,stranded,1368329518 +135415,6539,treasure,1368329432 +135415,7318,jesus,1368329398 +135415,60684,based on a comic,1253727687 +135415,60684,Nudity (Topless),1253727691 +135415,60684,sci-fi,1253727694 +135420,1729,tarantino is god,1155090333 +135432,4973,DIVX,1193425833 +135463,260,sci-fi,1430833409 +135478,1228,the best movie ever made. period.,1151401042 +135478,3706,an undiscovered classic,1151400219 +135478,4468,awful reviews...........cannot figure out why. outstanding.,1151400272 +135478,4468,Buenos Aires,1151400297 +135478,4707,SUPERB,1217309816 +135478,5294,ever.,1151400589 +135478,5294,one of the greatest overlooked films,1151400589 +135478,6077,dismissed by all. ingenious.,1151400445 +135478,6279,one of the best i've seen,1151399996 +135478,6852,one of the 10 best movies ever made.,1151400684 +135478,49824,the worst musical ever made.,1170969547 +135478,64037,everything,1344501535 +135478,64037,nothing,1344501525 +135478,89753,sentimentality,1342789771 +135478,109487,Masterpiece,1416175244 +135480,260,sci-fi,1437689508 +135480,260,space opera,1437689513 +135481,593,anthony hopkins,1436353448 +135481,593,jodie foster,1436353448 +135481,593,psychothriller,1436353448 +135481,1625,psychological,1436353259 +135481,1625,twist ending,1436353225 +135481,2353,action-packed,1436353316 +135481,2353,thriller,1436353370 +135503,924,polysemic,1265525639 +135503,2071,AIDS,1263760906 +135503,59362,artsy,1263760858 +135503,59362,slow paced,1263760858 +135510,1220,John Belushi,1193543060 +135510,1225,Mozart's music,1193543006 +135510,1291,franchise,1193542510 +135513,145,comedy,1432876332 +135513,6548,action,1432876351 +135519,81591,Everything!,1300661736 +135519,84570,The ending/It's really corny!,1300661499 +135519,84570,The musical aspect,1300661528 +135557,1240,Arnold Schwarzenegger,1447768451 +135557,1240,artificial intelligence,1447768443 +135557,1240,great dialog,1447768434 +135557,59315,comedy,1447768571 +135557,59315,Robert Downey Jr.,1447768560 +135564,51540,Chloe Sevigny,1252468755 +135576,260,the classic sci fi movie. must see.,1437932935 +135578,260,Innovative,1441980934 +135578,260,sci-fi,1441980921 +135578,260,scifi cult,1441980928 +135579,3622,Classic,1446717089 +135579,3622,comedy,1446717076 +135579,3622,Russia,1446717085 +135579,3622,Soviet Union,1446717067 +135579,120138,Romantic,1447020511 +135589,7263,hockey,1319139705 +135589,7263,HOCKEY PLAYERS,1319139734 +135589,7263,Olympics,1319139692 +135589,7263,Sports,1319139675 +135589,8915,based on a play,1311800082 +135589,8915,cross dressing,1311800063 +135589,8915,cross dressing men,1311800047 +135589,37477,Samuel L. Jackson,1310584641 +135589,44004,Sarah Jessica Parker,1310584420 +135589,44004,sarah jessica parker should not be in movies,1310584543 +135589,58622,boxing,1316291560 +135589,58622,Olympics,1316291574 +135589,58622,sports,1316291566 +135589,60126,Steve Carell,1310585203 +135589,64969,Insulting to Persians,1312823634 +135589,64969,Zooey Deschanel,1312823657 +135589,78893,M. Night Shyamalan,1350774179 +135589,91529,Christian Bale,1391888300 +135589,91529,Gary Oldman,1391888298 +135589,91529,superhero,1391888304 +135589,92420,coming of age,1391888250 +135589,92420,found footage,1391888246 +135589,92420,shaky camera,1369682939 +135589,92420,stupid,1391888239 +135589,92420,teenage angst,1391888241 +135589,96811,shaky camera,1393017852 +135611,318,drama,1428220949 +135611,318,heartwarming,1428220949 +135611,318,intense,1428220949 +135620,1590,Personal demons,1255033327 +135635,495,non-simulated sex,1272770910 +135635,1249,Transcends action thriller genre,1287084891 +135635,4259,Emily Watson,1228050345 +135635,5006,offensive treatment of women,1303789143 +135635,6400,justice,1185089517 +135635,6400,racism,1185089528 +135635,6400,US legal system,1185089509 +135635,7346,Nudity (Topless),1172240679 +135635,8529,inauthentic,1173727400 +135635,8529,unrealistic,1173727400 +135635,27843,crime,1226394173 +135635,34523,relationships,1201065431 +135635,34523,suburbia,1201065431 +135635,42007,Boring,1317863976 +135635,45028,meryl streep,1160639549 +135635,47999,christian fundamentalism,1187873712 +135635,48043,death,1170415216 +135635,48043,grieving,1170415223 +135635,48043,immortality,1170415268 +135635,48319,aerial dogfights,1172044159 +135635,48319,romance,1172044170 +135635,48698,Catholic Church,1192928696 +135635,48698,child abuse,1192928610 +135635,48698,coverup,1192928730 +135635,48698,paedophilia,1192928685 +135635,50685,bittersweet,1448690517 +135635,50685,domestic abuse,1448690525 +135635,50685,Keri Russell,1448690510 +135635,50872,cooking,1191349473 +135635,50872,rats,1191349473 +135635,51575,midlife crisis,1199153196 +135635,51575,motorcycle,1199153196 +135635,52604,Great reveal,1187180450 +135635,53129,serial killer,1186087520 +135635,53921,angelina jolie,1193992210 +135635,54503,garbage,1190809252 +135635,55118,midwife,1195556341 +135635,55118,Russian mafia,1195556341 +135635,55245,excessive coarseness,1193992133 +135635,55245,rubbish,1193992133 +135635,55280,delusional,1223172646 +135635,55280,mental illness,1223172621 +135635,55999,death,1198836741 +135635,55999,Dustin Hoffman,1198836720 +135635,55999,grieving,1198836741 +135635,55999,life,1198836741 +135635,55999,Natalie Portman,1198836719 +135635,59126,fundamentalism,1231937004 +135635,59126,Judaism,1231936992 +135635,59126,naive view of religion,1231973696 +135635,59908,boring,1302559079 +135635,59908,superficial,1302559071 +135635,60950,love,1230632921 +135635,60950,philosophical,1230632940 +135635,60950,relationships,1230632921 +135635,60950,Woody Allen,1230632921 +135635,61236,autobiography,1240101482 +135635,61236,documentary,1240101495 +135635,62344,drug rehabilitation,1234954324 +135635,65418,dog,1254697819 +135635,66097,3D version,1250989871 +135635,70293,Amy Adams,1256068505 +135635,70293,boring,1256068454 +135635,72998,3D version,1262047433 +135635,76251,11 year old explicit violence,1272178595 +135635,76251,humor,1272178576 +135635,80489,acting,1287274380 +135635,80489,action,1287274341 +135635,80489,character driven,1287274322 +135635,80489,Direction,1287274391 +135635,80489,place driven,1287274328 +135635,83798,cinematography,1303789237 +135635,83798,script,1303789248 +135635,85020,action,1302335130 +135635,85020,no depth,1302335111 +135635,85020,shallow,1302335153 +135635,85020,violence,1302335122 +135635,125661,Australia,1421729950 +135635,125661,father-son relationships,1421729935 +135635,125661,flight,1421729962 +135635,125661,forced ending,1421729984 +135635,125661,grief,1421729939 +135635,125661,predictable,1421729975 +135651,45728,Kevin Smith,1171773806 +135651,45728,view askew,1171773808 +135657,8784,Zack Braff,1225204307 +135672,208,fiction,1440976524 +135672,208,sci-fi,1440976530 +135672,260,action,1440931503 +135672,260,sci-fi,1440931498 +135672,260,space adventure,1440931508 +135672,2571,fantasy,1440976502 +135672,2571,philosophy,1440976493 +135693,64839,Darren Aronofsky,1246701010 +135693,64839,sad,1246701014 +135722,34314,improvisational acting,1427473588 +135722,34314,low budget,1427473588 +135722,34314,mumblecore,1427473588 +135802,30707,boxing,1178056871 +135812,88744,makes sense,1315008378 +135843,89870,gay,1361006899 +135865,260,b-film,1439757162 +135865,260,classic sci-fi,1439757142 +135878,27002,space,1318220350 +135878,27002,true story,1318220345 +135878,27006,Orson Welles,1318220375 +135878,27006,true story,1318220379 +135899,31,inspirational,1369173627 +135899,111,mental illness,1369173686 +135899,157,politics,1369173993 +135899,216,stupid,1369174023 +135899,288,Assassinos por Natureza,1302389132 +135899,440,politics,1369173993 +135899,474,tense,1369174040 +135899,519,franchise,1369173497 +135899,527,A Lista de Schindler,1302389114 +135899,861,police,1369173926 +135899,913,black and white,1369173256 +135899,922,black and white,1369173256 +135899,946,nazis,1369173781 +135899,1089,violent,1369174100 +135899,1175,dark,1369173332 +135899,1206,violent,1369174100 +135899,1214,tense,1369174040 +135899,1248,black and white,1369173256 +135899,1287,christianity,1369173292 +135899,1302,father-son relationship,1369173455 +135899,1357,mental illness,1369173686 +135899,1390,politics,1369173993 +135899,1597,thriller,1369174070 +135899,1610,thriller,1369174070 +135899,1945,black and white,1369173256 +135899,2022,A Última Tentação de Cristo,1302389165 +135899,2026,high school,1369173562 +135899,2058,tense,1369174040 +135899,2082,inspirational,1369173627 +135899,2353,thriller,1369174070 +135899,2383,police,1369173926 +135899,2734,mental illness,1369173686 +135899,2882,nazis,1369173780 +135899,2888,high school,1369173562 +135899,2919,politics,1369173993 +135899,2959,violent,1369174100 +135899,3044,mystery,1369173704 +135899,3178,inspirational,1369173627 +135899,3256,tense,1369174040 +135899,3256,thriller,1369174070 +135899,3273,franchise,1369173497 +135899,3435,black and white,1369173256 +135899,3440,franchise,1369173497 +135899,3519,nazis,1369173780 +135899,3980,inspirational,1369173627 +135899,4019,inspirational,1369173626 +135899,4034,oscar (best cinematography),1369173842 +135899,4306,pixar,1369173889 +135899,4865,mystery,1369173704 +135899,4974,stupid,1369174023 +135899,5218,pixar,1369173889 +135899,5363,high school,1369173562 +135899,5785,stupid,1369174023 +135899,5989,father-son relationship,1369173455 +135899,6537,franchise,1369173497 +135899,6808,nazis,1369173780 +135899,7153,oscar (best cinematography),1369173842 +135899,7160,mental illness,1369173686 +135899,8360,pixar,1369173889 +135899,8781,politics,1369173993 +135899,25870,Que Espere o Ceu,1174958216 +135899,32525,Desejos Proibidos,1174958123 +135899,33660,inspirational,1369173627 +135899,46578,beauty pageant,1168999495 +135899,48696,Pecados Intimos,1174958363 +135899,51540,police,1369173926 +135899,53121,franchise,1369173497 +135899,59429,nudity (topless - notable),1369173809 +135899,63113,franchise,1369173497 +135899,64622,nazis,1369173781 +135899,74458,mystery,1369173704 +135902,318,freedom of expression,1325314400 +135916,296,samuel l. jackson,1425492836 +135916,296,tarantino,1425492836 +135916,296,travolta,1425492836 +135925,87876,animation,1426495644 +135925,87876,pixar,1426495644 +135925,87876,racing,1426495644 +135925,91529,Batman,1427278043 +135925,91529,Christopher Nolan,1427278048 +135925,128842,action,1427277948 +135925,128842,dragon,1427277948 +135925,128842,period drama,1427277948 +135934,1232,masterpiece,1169555227 +135934,3415,masterpiece,1169555179 +135934,3503,masterpiece,1169555197 +135934,26150,masterpiece,1169555206 +135967,79505,Erlend Loe,1280838890 +136015,260,classic sci-fi,1443808589 +136015,260,legendary,1443808597 +136016,778,dark comedy,1300852846 +136016,778,drugs,1300852844 +136016,778,Nudity (Full Frontal - Notable),1300852839 +136016,778,Nudity (Full Frontal),1300852841 +136016,1288,Christopher Guest,1301640559 +136016,1288,comedy,1301640506 +136016,1288,music business,1301640523 +136016,1288,rock and roll,1301640495 +136016,1288,satire,1301640497 +136016,1288,witty,1301640500 +136016,2706,Nudity (Topless - Notable),1300767681 +136016,2706,Nudity (Topless),1300767684 +136016,2706,sexuality,1300767692 +136016,2706,teen comedy,1300767688 +136016,4718,Nudity (Topless),1300767714 +136016,4718,sexuality,1300767716 +136016,5283,College Humor,1300767768 +136016,5283,Nudity (Topless),1300767757 +136016,5283,R,1300767759 +136016,5283,Ryan Reynolds,1300767755 +136016,5283,Teen movie,1300767763 +136016,6188,college,1300767820 +136016,6188,Nudity (Topless),1300767799 +136016,6188,Seann William Scott,1300767815 +136016,6188,Vince Vaughn,1300767806 +136016,6188,Will Ferrell,1300767801 +136016,8641,Funniest Movies,1300767886 +136016,8641,hilarious,1300767877 +136016,8641,One of the worst movies of all time,1300767881 +136016,8641,seen more than once,1300767874 +136016,8641,Steve Carell,1300767867 +136016,8641,Vince Vaughn,1300767865 +136016,8641,Will Ferrell,1300767869 +136016,35836,comedy,1301197728 +136016,35836,crude humor,1301197736 +136016,35836,Nudity (Topless - Notable),1301197718 +136016,35836,Nudity (Topless),1301197721 +136016,35836,Seth Rogen,1301197741 +136016,35836,sex,1301197726 +136016,35836,sex comedy,1301197723 +136016,35836,Steve Carell,1301197739 +136016,36529,arms dealer,1300853069 +136016,36529,dark comedy,1300853064 +136016,36529,drugs,1300853066 +136016,36529,Nicolas Cage,1300853062 +136016,36529,Nudity (Topless),1300853074 +136016,46970,Below R,1300767910 +136016,46970,Tarantino,1300767902 +136016,46970,Will Ferrell,1300767900 +136016,52973,drugs,1300767609 +136016,52973,Nudity (Topless - Brief),1300767617 +136016,52973,Nudity (Topless),1300767611 +136016,54503,crude humor,1300767656 +136016,54503,Highly quotable,1300767653 +136016,54503,pornography,1300767660 +136016,54503,Teen movie,1300767647 +136016,54503,virginity,1300767649 +136016,59900,Adam Sandler,1301285234 +136016,59900,Below R,1301285252 +136016,59900,exaggerated,1301285236 +136016,59900,Israeli/Palestinian conflict,1301285239 +136016,59900,over the top,1301285257 +136016,60756,comedy,1300767849 +136016,60756,Seth Rogen,1300767836 +136016,60756,will ferrell,1300767840 +136016,68073,1960s,1301640389 +136016,68073,Bill Nighy,1301640392 +136016,68073,meandering,1301640416 +136016,68073,Philip Seymour Hoffman,1301640403 +136016,68073,pirate radio,1301640408 +136016,68073,rock and roll,1301640411 +136016,68073,soundtrack,1301640424 +136016,80693,mental illness,1301374303 +136016,80693,Zach Galifianakis,1301374311 +136020,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1439595691 +136027,364,animation,1432204475 +136027,364,classic,1432204475 +136027,364,for kids,1432204475 +136054,318,classic,1450129459 +136054,318,great ending,1450129455 +136054,318,imdb top 250,1450129445 +136054,318,Morgan Freeman,1450129430 +136054,318,thought-provoking,1450129442 +136054,318,twist ending,1450129440 +136054,858,crime,1450129944 +136054,858,organized crime,1450129947 +136054,904,Alfred Hitchcock,1450129300 +136054,5989,con artists,1450129765 +136054,5989,intelligent,1450129776 +136054,5989,Leonardo DiCaprio,1450129760 +136054,5989,Steven Spielberg,1450129772 +136054,5989,twists & turns,1450129763 +136054,61024,bromantic,1450129489 +136054,61024,Stoner Movie,1450129493 +136074,1214,androids,1430800695 +136074,1214,futuristic,1430800683 +136074,1214,sci-fi,1430800673 +136074,1214,space,1430800676 +136074,1214,space travel,1430800688 +136074,2571,dystopic future,1430800948 +136074,2571,pg-13:intense sequences of sci-fi violence and action,1430800948 +136074,2571,surreal,1430800948 +136074,58559,Atmospheric,1430800735 +136074,58559,Christopher Nolan,1430800763 +136074,58559,thriller,1430800746 +136074,58559,violent,1430800748 +136074,110882,dramatic,1430800873 +136074,110882,realtime,1430800834 +136074,110882,Tom Hardy,1430800842 +136085,123,plot light,1293577383 +136085,466,bloodiest movie ever,1289182267 +136085,539,annoying kid,1294065176 +136085,551,christmas,1293932105 +136085,551,stop motion,1293932165 +136085,594,animation,1296531164 +136085,594,bad plot,1296531155 +136085,594,terrible characters,1296531155 +136085,596,animation,1296600563 +136085,596,anvilicious,1296600557 +136085,924,boring,1289573007 +136085,924,music,1289572990 +136085,924,slow,1289573028 +136085,924,tedious,1289573027 +136085,968,brilliant ending,1294766917 +136085,968,horror,1294766926 +136085,968,zombies,1294766934 +136085,1022,characters,1296539456 +136085,1199,dystopia,1289613325 +136085,1199,surreal,1289613325 +136085,1199,Terry Gilliam,1289613325 +136085,1407,funny,1296016158 +136085,1407,postmodern,1296016168 +136085,1499,why did it have to be snakes?,1289181615 +136085,2502,comedy,1294076638 +136085,2502,workplace,1294076638 +136085,2761,robot,1294086048 +136085,2938,argentina,1289842014 +136085,2997,mindfuck,1294181478 +136085,2997,surreal,1294181464 +136085,3054,pokemon,1289181793 +136085,3072,boring,1294114080 +136085,3072,overrated,1294114066 +136085,3503,boring,1289826887 +136085,3503,long,1289826887 +136085,3503,slow,1289826887 +136085,3938,bland characters,1298436370 +136085,3938,Nudity (Rear),1298436347 +136085,3938,Nudity (Topless),1298436347 +136085,4064,action,1341861096 +136085,4064,BOOBS,1341861122 +136085,4064,exploitation,1341861092 +136085,4064,nude black women,1341861146 +136085,4064,Nudity (Topless - Notable),1341861116 +136085,4064,Nudity (Topless),1341861116 +136085,4128,Too 80s,1296016209 +136085,4367,action girl,1289221876 +136085,4367,bad plot,1289221894 +136085,4367,boring,1289221894 +136085,5319,Argentina,1288475888 +136085,5319,bielinsky,1288475880 +136085,5319,caper,1288475816 +136085,5319,CONS AND SCAMS,1288476011 +136085,5319,crime,1288475873 +136085,5319,Gastón Pauls,1288475940 +136085,5319,Leticia Bredice,1288475930 +136085,5319,Ricardo Darin,1288475930 +136085,5319,twist ending,1288475837 +136085,5481,blaxploitation,1289182190 +136085,5481,comedy,1289182165 +136085,5481,hilarious,1289182151 +136085,5481,jumped the shark,1289182132 +136085,5481,parody,1289182151 +136085,5481,spoof,1289182151 +136085,5617,sexy,1294269813 +136085,5980,slasher,1296163571 +136085,6410,boring,1294607457 +136085,6410,disco,1294607473 +136085,6410,Joel Schumacher,1294607381 +136085,6410,no plot,1294607409 +136085,6410,No plot!!!,1294607444 +136085,6410,workplace,1294607489 +136085,6679,computers,1294195742 +136085,6679,Free Software Foundation,1294195742 +136085,6679,Linus Torvalds,1294195742 +136085,6679,Linux,1294195742 +136085,6679,Open Source,1294195742 +136085,6679,Richard Stallman,1294195742 +136085,6754,bad acting,1296015999 +136085,6754,bad plot,1296016009 +136085,6754,just bad,1296015985 +136085,6754,overrated,1296015991 +136085,7318,gore,1293823862 +136085,7318,torture,1293823863 +136085,7318,violent,1293823862 +136085,7361,Jim Carrey,1289841998 +136085,7361,nonlinear,1289841988 +136085,7361,surreal,1289841988 +136085,7387,funny,1294980660 +136085,7387,gore,1294980652 +136085,7456,Argentina,1294717581 +136085,7456,boring,1294717602 +136085,7456,narrated,1294717617 +136085,7456,saccharine,1294717591 +136085,7458,glorification of war,1289187354 +136085,8361,inaccurate,1289181396 +136085,8361,Roland Emmerich,1289181376 +136085,8874,hilarious,1293672412 +136085,27523,abuse,1293756962 +136085,27523,long,1293757108 +136085,27523,melodrama,1293756962 +136085,27523,overrated,1293758775 +136085,27523,slapstick,1293756962 +136085,27523,unfunny,1293756976 +136085,27530,korean,1293748370 +136085,34162,comedy,1294884341 +136085,34162,funny,1294884341 +136085,34162,Nudity (Topless),1294884341 +136085,34162,sex,1294884352 +136085,34405,space opera,1291061091 +136085,41285,clever,1294542452 +136085,41285,London,1294542444 +136085,41285,slow,1294542430 +136085,41285,Woody Allen,1294542438 +136085,43267,argentina,1295333765 +136085,43267,buddy comedy,1295333660 +136085,43267,buddy movie,1295333660 +136085,43267,Buenos Aires,1295333904 +136085,43267,Damian Szifron,1295333631 +136085,43267,Deconstructive,1295333679 +136085,43267,Diego Peretti,1295333637 +136085,43267,funny,1295333762 +136085,43267,hilarious,1295333914 +136085,43267,Luis Luque,1295333643 +136085,43267,police,1295333696 +136085,43267,terrorism,1295333696 +136085,44972,boring,1289182351 +136085,44972,leslie nielsen,1289182338 +136085,44972,unfunny,1289182351 +136085,44974,unsympathetic characters,1322824248 +136085,46965,Samuel L. Jackson,1296140545 +136085,46965,silly,1296140522 +136085,46965,snakes on crack,1296140531 +136085,46965,so bad it's good,1296145438 +136085,47997,dumb,1289184032 +136085,49225,documentary,1294701525 +136085,49225,politics,1294701534 +136085,51341,Argentina,1293823735 +136085,51341,characters,1293823750 +136085,51341,Daniel Hendler,1293823735 +136085,51341,slow paced,1293823759 +136085,51662,adapted from:comic,1293823977 +136085,51662,stylized,1293824000 +136085,59615,adventure,1289238214 +136085,59615,indiana jones,1289238199 +136085,59615,nuclear bomb,1289238239 +136085,59615,worse than predecessors,1289238229 +136085,60074,derailed by twist,1289187223 +136085,60126,Based on a TV show,1295230571 +136085,60126,unnecessary remake,1295230549 +136085,65514,action,1345311861 +136085,65514,chinese jingoism,1345311851 +136085,65514,kung fu,1345311872 +136085,65514,martial arts,1345311866 +136085,65514,predictable,1345311856 +136085,66097,creepy,1293998316 +136085,66097,scary,1293998316 +136085,66097,stop motion,1293998316 +136085,66097,surreal,1293998316 +136085,66097,videogame like,1293998316 +136085,66785,overlong,1322824850 +136085,69122,funny,1293567665 +136085,69275,gore,1294779893 +136085,69275,Norwegian,1294779849 +136085,69275,predictable,1294779869 +136085,69275,unfunny,1294779835 +136085,69275,zombies,1294779875 +136085,69526,bad plot,1289221799 +136085,69526,confusing,1289221799 +136085,69526,ridiculous,1289221820 +136085,71033,Argentina,1292335709 +136085,71535,horror,1294375264 +136085,71535,parody,1294375264 +136085,71535,post-apocalyptic,1294375264 +136085,71535,zombies,1294375264 +136085,71677,Argentina,1288922013 +136085,71677,Horacio Camandule,1288922059 +136085,71677,Uruguay,1288922013 +136085,74275,gay,1293834453 +136085,74275,Gay Lead Character,1293834453 +136085,74275,gay romance,1293834453 +136085,74275,Gay sex,1293834453 +136085,76093,adorable,1289871290 +136085,76093,animation,1289871290 +136085,76093,dragons,1289871290 +136085,76093,Dreamworks animation,1289871290 +136085,76093,fantasy,1289871290 +136085,76093,I wanted to hug this movie,1289871290 +136085,76093,vikings,1289871290 +136085,77800,Documentary Style,1293683864 +136085,77800,funny,1293683886 +136085,77800,handheld cameras,1293683873 +136085,77866,gritty,1289187412 +136085,77866,unhistorical,1289187402 +136085,79158,bad plot,1295493724 +136085,79158,japan,1295493650 +136085,79158,offensive,1295493662 +136085,79158,terrible,1295493724 +136085,79158,unfunny,1295493658 +136085,79158,zombies,1295493645 +136085,79293,bad ending,1294969489 +136085,79293,cliche,1294969479 +136085,79553,action,1345311909 +136085,79553,bad plot,1345311906 +136085,79553,kung fu,1345311919 +136085,79553,martial arts,1345311914 +136085,79553,predictable,1345311900 +136085,79702,fast-paced,1293588244 +136085,79702,stylized,1293584515 +136085,79702,videogame like,1293584515 +136085,80463,Aaron Sorkin,1293221282 +136085,83579,accident,1295418443 +136085,83579,Argentina,1295418302 +136085,83579,Federico Luppi,1295418360 +136085,83579,framed,1295418443 +136085,83579,Leonardo Sbaraglia,1295418302 +136085,83579,Miguel Cohan,1295418310 +136085,83579,plot structure,1295418324 +136085,83579,suspense,1295418315 +136085,83619,Adrian Suar,1295523015 +136085,83619,argentina,1295522998 +136085,83619,boring,1295522990 +136085,83619,Claudia Fontan,1295522975 +136085,83619,Claudia Fontán,1295522951 +136085,83619,predictable,1295522990 +136085,83619,unfunny,1295522990 +136085,86332,boring,1310273483 +136085,86332,not enough action,1310273494 +136085,89000,Argentina,1322826432 +136085,89000,Ricardo Darin,1322826438 +136085,91529,third movie curse,1345312000 +136085,93297,acting,1341860929 +136085,93297,action,1341860938 +136085,93297,propaganda,1341860917 +136085,93297,script,1341860924 +136087,1358,Billy Bob Thornton,1151106828 +136138,750,black comedy,1444335357 +136138,750,dark comedy,1444335355 +136138,750,satire,1444335352 +136138,750,satirical,1444335361 +136138,8376,awkward,1444335639 +136138,8376,off-beat comedy,1444335635 +136138,8376,quotable,1444335646 +136152,6768,faith,1432866348 +136152,6768,historical,1432866348 +136152,6768,inspiring,1432866348 +136153,4226,Originality,1352238511 +136166,26472,social commentary,1185337983 +136172,922,film noir,1312575922 +136212,106165,concerning,1421490688 +136212,106165,critical,1421490644 +136212,106165,environment,1421490648 +136214,1,want to see again,1147206650 +136214,11,seen more than once,1146999699 +136214,25,Nicolas Cage,1146557775 +136214,39,seen more than once,1141211496 +136214,47,seen more than once,1146999604 +136214,50,want to see again,1147206687 +136214,62,seen more than once,1148337097 +136214,101,seen more than once,1146999792 +136214,104,seen more than once,1147206862 +136214,110,want to see again,1146999818 +136214,125,want to see again,1146999975 +136214,153,comic book,1146557170 +136214,180,seen more than once,1147000236 +136214,215,seen more than once,1146556728 +136214,216,seen more than once,1146999785 +136214,223,seen more than once,1146999861 +136214,288,want to see again,1146556845 +136214,293,seen more than once,1147000450 +136214,296,seen more than once,1147000466 +136214,300,want to see again,1148337144 +136214,318,seen more than once,1146556888 +136214,329,seen more than once,1147207489 +136214,333,seen more than once,1147206642 +136214,337,want to see again,1141211283 +136214,356,seen more than once,1146999981 +136214,357,seen more than once,1146999986 +136214,364,seen more than once,1148337079 +136214,367,comic book,1146557181 +136214,371,seen more than once,1147000393 +136214,377,seen more than once,1148337200 +136214,380,seen more than once,1147206681 +136214,527,want to see again,1147000531 +136214,586,seen more than once,1148337008 +136214,588,seen more than once,1146999675 +136214,592,comic book,1146557151 +136214,592,seen more than once,1146557151 +136214,595,seen more than once,1146999742 +136214,733,Nicolas Cage,1146557772 +136214,750,want to see again,1146999919 +136214,903,seen more than once,1146556959 +136214,910,want to see again,1147000574 +136214,916,seen more than once,1147000505 +136214,920,want to see again,1147000025 +136214,923,seen more than once,1146556742 +136214,953,seen more than once,1146556815 +136214,1020,seen more than once,1148336896 +136214,1035,seen more than once,1146556903 +136214,1042,seen more than once,1147206590 +136214,1057,seen more than once,1141211380 +136214,1090,seen more than once,1147000416 +136214,1127,seen more than once,1146999666 +136214,1136,seen more than once,1147000290 +136214,1171,want to see again,1141211084 +136214,1186,want to see again,1147207408 +136214,1196,seen more than once,1146556930 +136214,1197,seen more than once,1147000442 +136214,1206,want to see again,1146999869 +136214,1210,seen more than once,1147207520 +136214,1222,want to see again,1146999996 +136214,1247,seen more than once,1141211388 +136214,1265,seen more than once,1147000037 +136214,1270,seen more than once,1146999732 +136214,1274,comic book,1146557104 +136214,1282,seen more than once,1146999959 +136214,1288,seen more than once,1147206609 +136214,1302,seen more than once,1146999967 +136214,1377,comic book,1146557317 +136214,1391,seen more than once,1148337419 +136214,1392,want to see again,1146556759 +136214,1394,Nicolas Cage,1148336409 +136214,1407,seen more than once,1147206959 +136214,1441,seen more than once,1146999749 +136214,1441,want to see again,1146999749 +136214,1552,Nicolas Cage,1146557796 +136214,1573,Nicolas Cage,1146557770 +136214,1573,want to see again,1146999952 +136214,1584,seen more than once,1146999873 +136214,1591,comic book,1146557184 +136214,1617,want to see again,1147000185 +136214,1639,seen more than once,1146556737 +136214,1658,seen more than once,1147000201 +136214,1670,want to see again,1148337269 +136214,1673,seen more than once,1146999788 +136214,1682,want to see again,1141211399 +136214,1693,want to see again,1141211116 +136214,1704,seen more than once,1146556799 +136214,1721,seen more than once,1146556941 +136214,1721,want to see again,1141211134 +136214,1732,want to see again,1147207070 +136214,1777,seen more than once,1147206724 +136214,1784,seen more than once,1146556722 +136214,1797,seen more than once,1148336933 +136214,1840,want to see again,1141211126 +136214,1921,seen more than once,1147000411 +136214,1956,want to see again,1147000366 +136214,1968,seen more than once,1146556734 +136214,2010,seen more than once,1148336741 +136214,2011,seen more than once,1146999735 +136214,2012,seen more than once,1148336842 +136214,2054,seen more than once,1148337015 +136214,2068,want to see again,1148336678 +136214,2144,seen more than once,1146556897 +136214,2167,comic book,1148337293 +136214,2237,want to see again,1146556972 +136214,2248,seen more than once,1146556879 +136214,2313,want to see again,1146999926 +136214,2318,want to see again,1147000048 +136214,2321,seen more than once,1147000419 +136214,2324,want to see again,1147000198 +136214,2395,seen more than once,1146556874 +136214,2411,seen more than once,1147206952 +136214,2427,want to see again,1147206597 +136214,2571,seen more than once,1147000245 +136214,2580,seen more than once,1148336986 +136214,2628,seen more than once,1147207507 +136214,2640,comic book,1146557128 +136214,2640,want to see again,1146557128 +136214,2641,comic book,1147206546 +136214,2641,want to see again,1147206546 +136214,2700,seen more than once,1148336799 +136214,2712,seen more than once,1146999931 +136214,2723,want to see again,1147000349 +136214,2731,want to see again,1146999657 +136214,2759,want to see again,1146999906 +136214,2762,want to see again,1147000561 +136214,2799,seen more than once,1147207359 +136214,2858,seen more than once,1146999687 +136214,2890,seen more than once,1147206620 +136214,2908,seen more than once,1141211369 +136214,2912,seen more than once,1147000208 +136214,2952,seen more than once,1147000055 +136214,2953,seen more than once,1148337404 +136214,2959,seen more than once,1146556795 +136214,3034,seen more than once,1147000497 +136214,3052,seen more than once,1146999909 +136214,3072,Nicolas Cage,1205863799 +136214,3089,want to see again,1146999758 +136214,3160,seen more than once,1146556821 +136214,3210,seen more than once,1146556790 +136214,3218,want to see again,1147000426 +136214,3255,seen more than once,1147000191 +136214,3317,want to see again,1147206755 +136214,3399,seen more than once,1147000545 +136214,3422,seen more than once,1147207440 +136214,3424,seen more than once,1146556779 +136214,3438,comic book,1147206562 +136214,3438,seen more than once,1147206573 +136214,3439,comic book,1147206582 +136214,3439,seen more than once,1147206582 +136214,3504,want to see again,1146556853 +136214,3578,seen more than once,1147000009 +136214,3793,comic book,1146557141 +136214,3793,seen more than once,1146557141 +136214,3897,seen more than once,1146556711 +136214,3910,want to see again,1141211168 +136214,3949,want to see again,1146556867 +136214,3983,want to see again,1147206763 +136214,3994,seen more than once,1146556949 +136214,3996,seen more than once,1146556772 +136214,4014,seen more than once,1147207102 +136214,4015,seen more than once,1148336916 +136214,4017,seen more than once,1147000430 +136214,4023,Nicolas Cage,1146557782 +136214,4029,want to see again,1148336477 +136214,4226,want to see again,1147000256 +136214,4304,seen more than once,1148336470 +136214,4306,seen more than once,1148337187 +136214,4308,seen more than once,1146556827 +136214,4334,want to see again,1146556986 +136214,4380,seen more than once,1146999587 +136214,4447,seen more than once,1148337072 +136214,4641,comic book,1146557107 +136214,4734,seen more than once,1147000160 +136214,4741,seen more than once,1147206633 +136214,4816,seen more than once,1147206770 +136214,4848,want to see again,1147000322 +136214,4886,seen more than once,1146556824 +136214,4888,want to see again,1146999622 +136214,4967,want to see again,1141211178 +136214,4973,seen more than once,1146999684 +136214,4975,seen more than once,1147206696 +136214,4979,seen more than once,1147000514 +136214,4993,seen more than once,1146999573 +136214,5015,want to see again,1147000286 +136214,5074,want to see again,1147206530 +136214,5102,seen more than once,1148337153 +136214,5225,seen more than once,1146556718 +136214,5254,comic book,1148336872 +136214,5299,seen more than once,1147000332 +136214,5349,comic book,1146557116 +136214,5349,seen more than once,1146557116 +136214,5378,seen more than once,1147206512 +136214,5418,want to see again,1146999809 +136214,5420,Nicolas Cage,1173224223 +136214,5421,seen more than once,1146999896 +136214,5450,seen more than once,1147000220 +136214,5464,comic book,1146557221 +136214,5527,seen more than once,1147207347 +136214,5617,seen more than once,1141211469 +136214,5632,want to see again,1146999781 +136214,5673,seen more than once,1141211450 +136214,5785,seen more than once,1147000118 +136214,5816,seen more than once,1148336959 +136214,5952,seen more than once,1141211444 +136214,5954,want to see again,1146999640 +136214,6016,want to see again,1148336663 +136214,6157,comic book,1146557070 +136214,6157,seen more than once,1146557070 +136214,6159,want to see again,1146557007 +136214,6188,seen more than once,1147206927 +136214,6218,want to see again,1147206821 +136214,6291,seen more than once,1146999569 +136214,6331,seen more than once,1147000585 +136214,6333,comic book,1146557082 +136214,6333,seen more than once,1146557086 +136214,6502,want to see again,1146556996 +136214,6534,comic book,1147000092 +136214,6534,want to see again,1147000092 +136214,6565,seen more than once,1148336779 +136214,6620,want to see again,1146999696 +136214,6708,Nicolas Cage,1146557814 +136214,6783,want to see again,1141211454 +136214,6807,seen more than once,1147206914 +136214,6863,seen more than once,1141211460 +136214,6873,seen more than once,1146999550 +136214,6874,seen more than once,1146999555 +136214,6957,want to see again,1148336850 +136214,7034,seen more than once,1141211477 +136214,7099,comic book,1146557422 +136214,7139,want to see again,1146556811 +136214,7361,seen more than once,1141211437 +136214,7366,want to see again,1148336716 +136214,7373,comic book,1146557349 +136214,7373,want to see again,1148336998 +136214,7438,seen more than once,1146999564 +136214,7451,seen more than once,1147000249 +136214,8464,seen more than once,1146999613 +136214,8528,seen more than once,1148337391 +136214,8622,seen more than once,1146999955 +136214,8636,comic book,1146557074 +136214,8636,seen more than once,1146557080 +136214,8641,seen more than once,1147206794 +136214,8665,seen more than once,1183420252 +136214,8807,seen more than once,1147000061 +136214,8910,seen more than once,1179899132 +136214,8961,comic book,1146999544 +136214,8961,seen more than once,1146999544 +136214,8973,seen more than once,1179899220 +136214,32587,comic book,1146557158 +136214,32587,want to see again,1147206976 +136214,33493,seen more than once,1148336805 +136214,33794,comic book,1146557047 +136214,33794,want to see again,1146557047 +136214,34150,comic book,1146557195 +136214,34332,seen more than once,1147000564 +136214,37733,comic book,1146557290 +136214,39183,want to see again,1146999824 +136214,39444,Nicolas Cage,1147001282 +136214,44193,seen more than once,1154015727 +136214,45499,comic book,1148893663 +136214,45732,superhero,1159379684 +136214,46530,comic book,1154015704 +136214,51077,comic book,1178566866 +136214,52722,comic book,1178566936 +136216,61678,karate,1222287654 +136221,3039,Dan Aykroyd,1326608424 +136221,60516,enjoyable,1326610782 +136223,88,Chris Farley,1187401299 +136223,546,video game adaptation,1187401155 +136223,837,book,1187401198 +136223,915,Classic,1187401322 +136223,1012,Animals die :(,1187401531 +136223,1350,scary,1187401239 +136223,1416,musical,1187401152 +136223,1665,British comedy,1187401688 +136223,1688,children cartoon,1187401641 +136223,2046,80s,1187401179 +136223,2133,80s,1187401278 +136223,2423,comedy,1187401151 +136223,2485,teen,1187401154 +136223,2719,Scary,1187401307 +136223,2863,Beatles,1187401349 +136223,3825,dancing on the bar,1187401558 +136223,4015,Teen,1187401386 +136223,4343,funny,1187401461 +136223,4545,80s,1187401724 +136223,4621,80s,1187401660 +136223,4623,80s,1187401569 +136223,5225,strangely compelling,1187401414 +136223,5528,bizarre,1187401473 +136223,6157,comic book,1187401497 +136223,8361,end of the world,1187401626 +136223,39183,gay love,1187401735 +136247,260,Science Fiction,1440999189 +136247,260,war,1440999205 +136253,912,classic romance,1430684170 +136253,109487,hollywood crap,1430684129 +136275,69481,military,1432136330 +136275,69481,thriller,1432136332 +136275,69481,war,1432136327 +136275,79132,Intelligent scifi,1432136190 +136275,79132,thriller,1432136199 +136275,98961,military,1432136304 +136275,98961,terrorism,1432136309 +136275,98961,war,1432136313 +136275,114662,war hero,1432136259 +136275,115210,war hero,1432136240 +136275,115210,World War II,1432136237 +136291,2916,dystopia,1278894283 +136291,4011,Guy Ritchie,1278894960 +136291,6440,Coen Brothers,1278892118 +136293,296,action,1422558411 +136293,296,drugs,1422558411 +136293,296,non-linear,1422558411 +136303,260,fantastic,1443807680 +136308,260,cult classic,1434189939 +136308,260,Every nerd should have seen more than once,1434189951 +136308,356,classic,1434190813 +136308,356,great performances,1434190813 +136308,356,must see!,1434190813 +136308,593,chilling,1436123853 +136308,593,intense,1436123853 +136308,593,shocking,1436123853 +136325,32,original,1368543601 +136325,50,storytelling,1368543691 +136325,111,loneliness,1368543722 +136325,296,storytelling,1368543691 +136325,1089,original,1368543601 +136325,1172,mentor,1368543637 +136325,1466,mentor,1368543637 +136325,1704,mentor,1368543637 +136325,1721,cinematography,1263799715 +136325,1721,james cameron,1263799723 +136325,1721,sinking,1263799729 +136325,2335,comedy,1368543659 +136325,2371,comedy,1368543659 +136325,2420,mentor,1368543637 +136325,3265,charisma,1294616491 +136325,3265,Chow Yun Fat,1294616491 +136325,3265,gunfights,1294616491 +136325,3265,heroic bloodshed,1294616491 +136325,3265,Philip Kwok,1294616491 +136325,3265,style,1294616491 +136325,3265,Tony Leung,1294616491 +136325,3421,comedy,1368543659 +136325,4085,comedy,1368543659 +136325,4226,storytelling,1368543691 +136325,4878,original,1368543601 +136325,5945,loneliness,1368543722 +136325,6188,comedy,1368543660 +136325,8641,comedy,1368543659 +136325,60753,losing loved ones,1296798343 +136325,60753,situation,1296798332 +136325,60753,Stephen Dorff,1296798298 +136325,60753,val kilmer,1296798290 +136325,63276,bromance,1263799778 +136325,63276,fights,1295138596 +136325,63276,Takashi Miike,1295138630 +136325,63276,violence,1263799764 +136325,64231,comic book feel,1343716761 +136325,64231,dominic west,1343716783 +136325,64231,Ray Stevenson,1343716768 +136325,64231,violence,1343716752 +136325,64614,Clint Eastwood,1245643230 +136325,64614,culture clash,1245643235 +136325,64614,mentor,1245643245 +136325,64614,murder,1245643267 +136325,64614,Political Correctness,1245643250 +136325,64614,racism,1245643254 +136325,64839,loneliness,1368543722 +136325,80489,John Hamm,1296798153 +136325,110501,fights,1398586652 +136325,110501,iko uwais,1398586648 +136325,110501,yayan ruhian,1398586643 +136328,260,"sf,science fiction",1435140409 +136334,1704,Robin Williams,1433809331 +136334,4995,intelligent,1433809297 +136334,30749,genocide,1433809121 +136363,318,from novel,1423180777 +136363,318,library setting,1423180777 +136363,318,prison escape,1423180777 +136370,58803,con artists,1286381806 +136370,58803,Jim Sturgess,1286381782 +136370,58803,Laurence Fishburne,1286381821 +136370,58803,loosely based on a true story,1286381837 +136373,61108,blood,1318354511 +136373,61108,history,1318354504 +136398,260,space epic,1440816320 +136398,260,the classic sci fi movie. must see.,1440816337 +136398,898,Cary Grant,1440820704 +136398,902,classic,1440818535 +136398,924,philosophical,1440818704 +136398,924,Stanley Kubrick,1440818693 +136398,931,Alfred Hitchcock,1440818852 +136398,931,Criterion,1440818856 +136398,1212,black and white,1440820823 +136398,1212,Carol Reed,1440820848 +136398,1212,cinematography,1440820836 +136398,1212,classic,1440820831 +136398,1212,Criterion,1440820820 +136398,1212,film noir,1440820844 +136398,1212,great cinematography,1440820825 +136398,1212,music,1440820834 +136398,1212,noir thriller,1440820828 +136398,1212,orson welles,1440820818 +136398,1274,anime,1440820744 +136398,1274,visually stunning,1440820750 +136398,1938,addiction,1440822983 +136398,1938,alcoholism,1440822981 +136398,1938,Oscar (Best Picture),1440822987 +136398,1982,horror,1440821080 +136398,2395,Wes Anderson,1440823326 +136398,2459,disturbing,1440820910 +136398,2459,grim,1440820986 +136398,2459,gruesome,1440820920 +136398,2459,horror,1440820917 +136398,2459,menacing,1440820983 +136398,2459,tense,1440820914 +136398,2729,Stanley Kubrick,1440818724 +136398,2731,black and white,1440823764 +136398,2731,Criterion,1440823769 +136398,2731,Francois Truffaut,1440823773 +136398,2731,new wave,1440823762 +136398,2731,reflective,1440823777 +136398,3108,mental illness,1440820648 +136398,3108,Robin Williams,1440820645 +136398,3134,Criterion,1440822268 +136398,3435,black and white,1440820564 +136398,3435,film noir,1440820568 +136398,3435,noir thriller,1440820572 +136398,3593,So bad its good,1440819412 +136398,7024,banned movie,1440823626 +136398,7024,controversial,1440823631 +136398,7024,disturbing,1440823622 +136398,7072,Criterion,1440817258 +136398,7072,GENRE CLASSIC,1440817253 +136398,25850,Cary Grant,1440818678 +136398,26151,Criterion,1440823553 +136398,26151,reflective,1440823561 +136398,39292,black and white,1440819542 +136398,39292,boring,1440819536 +136398,39292,Didn't finish,1440819501 +136398,39292,historical,1440819485 +136398,39292,plotless,1440819550 +136398,39292,political,1440819488 +136398,39292,politics,1440819483 +136398,39292,unbearable to sit through,1440819524 +136398,69604,larry david,1440822101 +136398,69604,Woody Allen,1440822106 +136398,71542,Anna Wintour,1440818252 +136398,71542,fashion,1440818234 +136398,71542,Vogue magazine,1440818264 +136398,106100,topic:AIDS/HIV,1440817858 +136398,106100,topic:homophobia,1440817871 +136398,106100,transgender,1440817867 +136398,107916,Drug Abuse,1440818182 +136398,107916,fashion,1440818175 +136398,107916,fashion industry,1440818190 +136398,112582,movie business,1440823864 +136398,127198,Film festival favorite,1440818421 +136398,127198,indie film,1440818409 +136398,132614,fashion,1440818286 +136398,132614,Fashion design,1440818319 +136398,132614,Haute Couture,1440818301 +136398,132614,high fashion,1440818309 +136398,137337,alcoholism,1440817128 +136398,137337,depression,1440817131 +136398,137337,emotional,1440817151 +136398,137337,found footage,1440817148 +136398,137337,MUSICIAN DOCUMENTARY,1440817119 +136398,137337,musicians,1440817159 +136398,140715,music culture,1440817505 +136398,140715,rap music,1440817501 +136409,260,adventure,1438826582 +136409,260,Science Fiction,1438826589 +136412,260,Adventure,1434499510 +136412,260,Fantasy,1434499487 +136412,260,Space Opera,1434499479 +136444,260,action,1435889633 +136444,260,sci-fi,1435889628 +136461,8961,Animation,1163127094 +136461,8961,Pixar,1163127075 +136461,46948,Motion Capture,1163127519 +136461,48982,Aardman,1163127063 +136461,48982,Animation,1163127063 +136461,48982,Dreamworks,1163127063 +136467,2959,Brad Pitt,1450158654 +136467,2959,David Fincher,1450158670 +136467,2959,Edward Norton,1450158651 +136467,2959,psychology,1450158647 +136467,2959,twist ending,1450158644 +136467,7254,alternate endings,1450159614 +136467,7254,time travel,1450159601 +136467,7254,twist ending,1450159609 +136467,7361,complicated,1450159849 +136467,7361,jim carrey,1450159862 +136467,7361,melancholy,1450159848 +136467,7361,romance,1450159819 +136467,48516,Leonardo DiCaprio,1448827778 +136467,48516,Martin Scorsese,1448827664 +136467,48516,Matt Damon,1448827798 +136467,74458,Leonardo DiCaprio,1450158865 +136467,74458,Martin Scorsese,1450158872 +136467,74458,mystery,1450158876 +136467,74458,plot twist,1450158869 +136467,74458,psychological,1450158860 +136467,74458,twist ending,1450158863 +136467,81591,creepy,1451876112 +136467,81591,dark,1451876124 +136467,81591,lesbian,1451876149 +136467,81591,lesbians,1451876165 +136467,81591,mental illness,1451876141 +136467,81591,Mila Kunis,1451876138 +136467,81591,Natalie Portman,1451876133 +136467,81591,psychological,1451876108 +136467,81591,Soundtrack,1451876157 +136467,81591,surreal,1451876116 +136467,91529,Christopher Nolan,1450156403 +136467,91529,plot twist,1450156410 +136467,106920,artificial intelligence,1450159902 +136467,106920,Scarlett Johansson,1450159913 +136467,112552,good acting,1452920680 +136467,112552,intense,1452920683 +136467,112552,motivation,1452920687 +136467,112552,psychological,1452920677 +136467,112552,Tense,1452920672 +136467,112556,David Fincher,1450158790 +136467,112556,mindfuck,1450158787 +136467,112556,Neal Patrick Harris,1450158812 +136467,112556,Psychopathy,1450158823 +136467,114935,mindfuck,1450159572 +136467,115713,artificial intelligence,1450159963 +136467,115713,plot twist,1450159968 +136467,121231,Psychological,1451865767 +136467,121231,suspense,1451865774 +136467,121231,teenagers,1451865759 +136471,260,action,1441559699 +136471,260,classic,1441559685 +136489,720,comic,1186669889 +136489,720,cool,1186669889 +136489,720,must see,1186669889 +136489,720,nice,1186669889 +136489,2278,cool,1186669814 +136489,2278,Jean Reno,1186669814 +136489,2278,killer,1186669814 +136489,4246,romance,1186669655 +136489,4262,cool,1186669931 +136489,4262,crime,1186669931 +136489,4262,mafia,1186669931 +136489,4262,must see,1186669931 +136489,4262,nice,1186669931 +136489,4975,cool,1186669994 +136489,4975,scientology,1186669993 +136489,6502,cool,1186669973 +136489,6502,horror,1186669973 +136489,6502,london,1186669973 +136489,6502,rage virus,1186669973 +136489,6502,zombies,1186669973 +136489,6934,blue bullet,1186669875 +136489,6934,matrix,1186669875 +136489,6934,mind fuck,1186669875 +136489,6934,neo,1186669875 +136489,6934,the one,1186669875 +136511,4306,Based on a book,1224425526 +136511,52101,bad movie,1224425208 +136514,318,classic,1427749472 +136514,318,inspirational,1427749463 +136514,78499,animation,1427749429 +136543,260,sci-fi,1436139583 +136543,136736,cheesy,1436140602 +136543,136736,religious,1436140602 +136543,136736,vietnam,1436140602 +136560,69640,1930s,1449002429 +136560,69640,gangsters,1449002433 +136560,102407,1920s,1449002879 +136560,102407,beautiful,1449002882 +136560,102407,Leonardo DiCaprio,1449002875 +136577,344,comedy,1309494094 +136577,346,Beatles,1309565374 +136577,408,Luke Perry,1309493396 +136577,1127,sci-fi,1309494038 +136577,1214,Horror,1309493003 +136577,1214,Ridley Scott,1309492954 +136577,1251,Federico Fellini,1309493259 +136577,2071,based on a book,1309492842 +136577,2730,Stanley Kubrick,1309566125 +136577,3710,Carl Weathers,1309494203 +136577,3970,Lucio Fulci,1309567390 +136577,3986,Arnold Schwarzenegger,1309493188 +136577,4370,Steven Spielberg,1309493605 +136577,5154,Nudity (Full Frontal),1309547738 +136577,5810,Eminem,1309493323 +136577,5902,based on a book,1309494267 +136577,5902,Charlie Kaufman,1309494304 +136577,5902,Spike Jonze,1309494304 +136577,6440,Coen Brothers,1309566135 +136577,7419,Martin Scorsese,1309494667 +136577,8838,Martin Scorsese,1309492881 +136577,8838,Oscar (Best Actress),1309492896 +136577,8906,controversial,1309493104 +136577,33585,unsimulated sex scenes,1309493532 +136577,54190,Julie Taymor,1309494156 +136577,56169,Jessica Alba,1309565015 +136577,80928,stand-up comedy,1309544936 +136581,117533,hard to believe,1432677197 +136581,117533,unsettling,1432677197 +136581,117533,untechnical,1432677197 +136581,133865,propaganda,1432677627 +136585,60756,funny,1445714994 +136585,60756,Highly quotable,1445714996 +136585,60756,will ferrell,1445714992 +136585,89774,Boxing story,1445715207 +136585,89774,MMA,1445715200 +136585,89774,Tom Hardy,1445715205 +136585,106782,drugs,1445715054 +136585,106782,Leonardo DiCaprio,1445715051 +136585,106782,Martin Scorsese,1445715056 +136643,1527,action,1447959089 +136643,1527,aliens,1447959073 +136643,1527,Bruce Willis,1447959044 +136643,1527,humorous,1447959050 +136643,1527,Luc Besson,1447959069 +136643,1527,Milla Jovovich,1447959046 +136643,1527,satirical,1447959066 +136643,1527,sci-fi,1447959038 +136643,1527,visual,1447959062 +136643,84844,mafia,1447959558 +136643,84844,Russian,1447959540 +136643,84844,soundtrack,1447959551 +136646,129937,liam neeson,1453902348 +136673,3077,The Up Series,1439779214 +136697,82744,action,1438463483 +136697,82744,crime,1438463483 +136697,82744,revenge,1438463483 +136727,16,mafia,1148805174 +136727,168,chick flick,1148805190 +136727,1464,overrated,1148812541 +136727,3676,cryptic,1148803895 +136727,4848,cryptic,1148805501 +136727,4848,overrated,1148805505 +136727,4865,alan moore,1148816256 +136727,4993,overrated,1148813001 +136727,5945,Drama,1148815778 +136727,5952,overrated,1148812992 +136727,6541,alan moore,1148816125 +136727,7090,amazing photography,1148805336 +136727,7153,overrated,1148813083 +136727,7373,comic book,1148805316 +136727,8636,super-hero,1148805269 +136727,30707,drama,1148805228 +136727,32587,overrated,1148815951 +136727,40148,cryptic,1149055049 +136727,41569,overrated,1148813128 +136727,44191,alan moore,1148816243 +136763,665,Kusturica,1225142748 +136769,7285,disturbing,1257122811 +136770,260,classic,1431446679 +136770,260,scifi cult,1431446698 +136770,68954,funny,1431448389 +136770,68954,inspirational,1431448389 +136770,68954,uplifting,1431448389 +136774,2819,Intelligent,1453660529 +136774,2819,Robert Redford,1453660542 +136774,2819,thriller,1453660523 +136776,113532,australia,1422564233 +136776,113532,british,1422564233 +136776,113532,comedy,1422564233 +136776,120146,short movie,1420748652 +136787,260,mystic warriors,1436218784 +136787,260,space epic,1436218757 +136806,71057,dystopia,1279683622 +136809,5789,cross dressing,1439842803 +136809,5789,German,1439842814 +136809,5789,Nazis,1439842777 +136809,5789,Spies,1439842790 +136809,5789,Undercover,1439842795 +136809,5789,WWII,1439842781 +136809,30863,Comedy,1439842693 +136809,30863,ghost,1439842680 +136809,30863,Mystery,1439842704 +136838,8865,dieselpunk,1301913073 +136838,26203,evil computer,1172447023 +136838,31804,vampire,1174934458 +136838,51662,Based on a comic book,1176157798 +136838,51662,blood,1176157803 +136838,51662,Epic,1176157786 +136838,51662,HEROIC MISSION,1176157813 +136838,51662,thermopylae,1176157820 +136838,51662,Too much slow motion!,1176157827 +136838,72998,3d,1264357012 +136838,72998,cgi,1264357022 +136838,72998,characters,1264356997 +136838,72998,graphic design,1264357017 +136838,72998,military,1264357026 +136838,72998,music,1264357029 +136838,91890,british,1329249914 +136838,91890,politics,1329249909 +136862,12,Leslie Nielsen,1247522462 +136862,12,Mel Brooks,1247522469 +136862,12,spoof,1247522467 +136862,47,disturbing,1374950674 +136862,47,hopeless ending,1374950665 +136862,47,horror,1374950679 +136862,47,psychology,1374950685 +136862,198,90s dystopia,1376235716 +136862,198,characters,1376235727 +136862,198,cyberpunk,1376235728 +136862,198,virtual reality,1376235749 +136862,296,cult film,1368557508 +136862,296,Quentin Tarantino,1368557499 +136862,318,classic,1368557414 +136862,318,prison,1368557416 +136862,318,reflective,1368557466 +136862,318,Stephen King,1368557459 +136862,333,Chris Farley,1384023824 +136862,353,bittersweet,1378061194 +136862,353,cult film,1378061213 +136862,353,dreamlike,1378061217 +136862,353,revenge,1378061198 +136862,353,romance,1378061201 +136862,356,bittersweet,1368557330 +136862,356,classic,1368557383 +136862,356,cult,1368557369 +136862,356,emotional,1368557340 +136862,356,inspirational,1368557343 +136862,356,quirky,1368557351 +136862,370,Leslie Nielsen,1247521966 +136862,370,parody,1247521992 +136862,474,cliche,1370720706 +136862,474,Clint Eastwood,1370720700 +136862,474,John Malkovich,1370720698 +136862,474,secret service,1370720741 +136862,474,suspense,1370720726 +136862,541,cyberpunk,1383400335 +136862,556,documentary,1365945199 +136862,556,politics,1365945196 +136862,743,Leslie Nielsen,1372005520 +136862,743,parody,1372005523 +136862,802,Good music,1375024283 +136862,802,John Travolta,1375024265 +136862,802,lacks substance,1375024307 +136862,924,classic,1374942192 +136862,924,cult film,1374942194 +136862,1096,death,1384703177 +136862,1096,mental illness,1384703193 +136862,1096,Meryl Streep,1384703233 +136862,1096,war,1384703206 +136862,1199,dreamlike,1388925806 +136862,1199,dystopia,1388925804 +136862,1199,imagination,1388925848 +136862,1199,insanity,1388925832 +136862,1199,surreal,1388925815 +136862,1206,disturbing,1384024010 +136862,1206,dystopia,1384024003 +136862,1206,violence,1384024025 +136862,1251,overrated,1381584825 +136862,1280,polygamy,1374663182 +136862,1280,social commentary,1374663196 +136862,1280,strong,1374663237 +136862,1301,looks dated,1383398073 +136862,1464,boring,1372005254 +136862,1464,mindfuck,1372004847 +136862,1464,overrated,1372004851 +136862,1464,Surreal,1372004930 +136862,1747,black comedy,1374428912 +136862,1747,corruption,1374424629 +136862,1747,cover up,1374425119 +136862,1747,politics,1374309374 +136862,1747,satire,1374424642 +136862,1747,seen more than once,1374425086 +136862,1747,US President,1374309378 +136862,1748,alternate reality,1365326665 +136862,1748,amnesia,1365326627 +136862,1748,memory,1365326645 +136862,1748,Nudity (Topless),1365326674 +136862,1748,sci-fi,1365326694 +136862,1748,visually appealing,1365326658 +136862,1810,disillusionment,1374439561 +136862,1810,politics,1374439552 +136862,1810,suicide,1374439549 +136862,1921,black and white,1371926094 +136862,1921,hallucinatory,1371926100 +136862,1921,mental illness,1371926103 +136862,1967,dreamlike,1378061516 +136862,1967,Jennifer Connelly,1247521612 +136862,1968,coming of age,1380125794 +136862,1968,confusion,1380125897 +136862,1968,high school,1380125796 +136862,1968,relationships,1380125843 +136862,1968,social commentary,1380125781 +136862,1968,teen,1380125789 +136862,2027,Lloyd Bridges,1247522186 +136862,2027,Sexual Humor,1247522231 +136862,2027,spoof,1247522192 +136862,2118,assasination plot,1371323438 +136862,2118,Stephen King,1371323423 +136862,2118,US President,1371323425 +136862,2161,muppets,1247521819 +136862,2161,sweet,1247521798 +136862,2170,Leslie Nielsen,1247522410 +136862,2170,spoof,1247522413 +136862,2416,Rodney Dangerfield,1371406927 +136862,2416,trivial,1371406993 +136862,2502,corporate America,1368464784 +136862,2502,cult film,1368464776 +136862,2502,dark comedy,1368464803 +136862,2502,quirky,1368464812 +136862,2502,workplace,1368464800 +136862,2513,cemetary,1247603467 +136862,2513,dead raising,1247603506 +136862,2513,horror,1247603406 +136862,2513,psychological,1247603443 +136862,2513,Stephen King,1247603410 +136862,2712,psychological,1384023930 +136862,2712,sexuality,1384023926 +136862,2762,death,1373807279 +136862,2762,M. Night Shyamalan,1373807292 +136862,2841,Sexualized violence,1374334858 +136862,2841,suspense,1374334864 +136862,2841,thriller,1374334868 +136862,2985,cult film,1383508303 +136862,2985,dystopia,1383508298 +136862,2986,crappy sequel,1383508353 +136862,2997,quirky,1365886837 +136862,2997,sexuality,1365886842 +136862,2997,surreal,1365886855 +136862,3031,Leslie Nielsen,1384768820 +136862,3174,Andy Kaufman,1388448331 +136862,3174,average,1388448359 +136862,3174,based on a true story,1388448334 +136862,3174,comedians,1388448349 +136862,3174,Courtney Love,1388448326 +136862,3174,Jim Carrey,1388448364 +136862,3358,afterlife,1370695227 +136862,3358,Albert Brooks,1370695105 +136862,3358,death,1370695224 +136862,3358,Meryl Streep,1370695108 +136862,3358,simplistic,1370695161 +136862,3510,alternate reality,1377949230 +136862,3510,fantasy,1377949262 +136862,3510,father son relationship,1377949238 +136862,3510,sports,1377949279 +136862,3510,supernatural,1377949298 +136862,3510,time travel,1377949249 +136862,3552,golf,1371399981 +136862,3552,Nudity (Topless),1371399984 +136862,3552,teen,1371399994 +136862,3706,Christianity,1374950398 +136862,3706,French,1374950605 +136862,3706,Lisa Bonet,1374950518 +136862,3706,looking for himself,1374950423 +136862,3706,Louisiana,1374950578 +136862,3706,mystery,1374950435 +136862,3706,Nudity (Topless),1374950412 +136862,3706,sensual,1374950529 +136862,3706,Voodoo,1374950404 +136862,3736,biting,1381082218 +136862,3736,cynical,1381082269 +136862,3736,journalism,1381082301 +136862,3785,parody,1247521878 +136862,3846,Rodney Dangerfield,1371323531 +136862,3868,Leslie Nielsen,1247521974 +136862,3868,parody,1247521996 +136862,3869,Leslie Nielsen,1247521961 +136862,3869,parody,1247521988 +136862,3988,Christmas,1388448488 +136862,3988,Dr. Seuss,1388448484 +136862,3988,heartbreaking,1388448471 +136862,3988,Jim Carrey,1388448453 +136862,3988,silly,1388448455 +136862,4020,cate blanchett,1373815175 +136862,4020,Hilary Swank,1373815182 +136862,4020,psychic power,1373816156 +136862,4276,Albert Brooks,1371323102 +136862,4713,ambitious,1375016744 +136862,4713,drugs,1375016591 +136862,4713,love,1375016765 +136862,4713,physical effects,1375016641 +136862,4713,scientist experiments on self,1375016598 +136862,4713,simplistic,1375016691 +136862,4713,trippy,1375016601 +136862,4720,alternate reality,1373807370 +136862,4720,dark,1373807376 +136862,4720,death,1373807379 +136862,4720,Drama,1373807381 +136862,5056,Conception of the world,1381584275 +136862,5056,slow,1381584304 +136862,5060,quirky,1376148450 +136862,5060,witty,1376148452 +136862,5147,comming of age,1372618254 +136862,5147,Ingmar Bergman,1372618219 +136862,5147,Swedish,1372618228 +136862,5445,dystopia,1376226403 +136862,5445,interesting concept,1376226389 +136862,5445,sci-fi,1376226428 +136862,5445,Steven Spielberg,1376226409 +136862,5445,violence,1376226417 +136862,5445,vulnerability,1376226496 +136862,5445,weak ending,1376226523 +136862,5501,Dana Carvey,1385846143 +136862,5516,surprisingly powerful,1366480511 +136862,5617,BDSM,1384629291 +136862,5617,Nudity (Full Frontal),1384629301 +136862,5881,death,1375035029 +136862,5881,existentialism,1375034955 +136862,5881,George Clooney,1375034958 +136862,5881,loss,1375035020 +136862,5881,love,1375035008 +136862,5881,memory,1375034967 +136862,5881,space,1375034972 +136862,5881,suicide,1375035040 +136862,5881,surreal,1375034983 +136862,5902,action,1366467967 +136862,5902,black comedy,1366454871 +136862,5902,Charlie Kaufman,1366454864 +136862,5902,ending,1366467974 +136862,5902,Meryl Streep,1366454879 +136862,6101,hope,1389430435 +136862,6101,politics,1389430442 +136862,6373,humorous,1247603013 +136862,6373,Jennifer Aniston,1247521529 +136862,6373,Jim Carrey,1247603000 +136862,6509,human nature,1380120944 +136862,6509,racism,1380120922 +136862,6669,cancer,1372517421 +136862,6669,death,1372517356 +136862,6669,dying,1372517367 +136862,6669,terminal illness,1372517352 +136862,6787,Classic,1381562234 +136862,6787,conspiracy,1381562222 +136862,6787,corruption,1381562224 +136862,6787,journalism,1381562217 +136862,6787,Politics,1381562220 +136862,6787,US President,1381562243 +136862,6818,death,1374423772 +136862,6818,meaningless,1374423887 +136862,6818,one sided,1374423953 +136862,6818,russian world war II propoganda,1374423976 +136862,6818,visceral,1374423911 +136862,6818,war drama,1374423793 +136862,6953,death,1366656976 +136862,6953,life & death,1366656974 +136862,6953,Sean Penn,1366656962 +136862,6953,Tragedy,1366656955 +136862,7021,funny,1374389521 +136862,7021,Martin Short,1374389541 +136862,7034,adolescence,1374671224 +136862,7034,dreams,1374671189 +136862,7034,friendship,1374671186 +136862,7034,homosexuality,1374671202 +136862,7034,lesbian,1374671204 +136862,7163,memory,1377440655 +136862,7163,predict future,1377440638 +136862,7163,Uma Thurman,1377440570 +136862,7361,bittersweet,1365326853 +136862,7361,Jim Carrey,1365326868 +136862,7361,memory,1365326872 +136862,7361,New York City,1365326875 +136862,7745,contentment,1374342532 +136862,7745,mindfulness,1374342611 +136862,7745,music,1374342601 +136862,7745,sensual,1374342581 +136862,7745,tropical,1374342569 +136862,7792,conspiracy,1380371846 +136862,7792,hopeless,1380355203 +136862,8014,bittersweet,1372610457 +136862,8014,buddhist,1372610490 +136862,8464,documentary,1368557590 +136862,8464,obesity,1368557609 +136862,8464,propaganda,1368557604 +136862,8464,social criticism,1368557612 +136862,8533,chick flick,1372862212 +136862,8533,cliche ending,1372862265 +136862,8533,predictable,1372862196 +136862,8638,dialogue,1382282432 +136862,8638,great dialogue,1382282436 +136862,8638,romantic,1382282442 +136862,8710,bleak,1366656638 +136862,8950,Christian Bale,1371997798 +136862,8950,memory,1371997800 +136862,8950,paranoid,1371997810 +136862,8950,schizophrenia,1371997813 +136862,8950,trivial ending,1372610819 +136862,8970,bittersweet,1368979110 +136862,8970,death,1368979137 +136862,8970,Heartwarming,1368979121 +136862,8970,Johnny Depp,1368979124 +136862,8970,Kate Winslet,1368979127 +136862,8981,relationships,1384629356 +136862,26052,tense,1383681775 +136862,27136,Rodney Dangerfield,1373043958 +136862,27618,boring,1379959320 +136862,27618,cliche,1379959333 +136862,33880,quirky,1366656706 +136862,33880,simplistic,1366656893 +136862,34405,funny dialogues,1374335170 +136862,34405,quirky,1373827409 +136862,44972,franchise,1247522394 +136862,44972,parody,1247522443 +136862,44972,spoof,1247522440 +136862,45730,far fetched,1373807095 +136862,45730,purpose in life,1373807217 +136862,45730,slow,1373807175 +136862,45730,water,1373807131 +136862,47830,abuse,1387131990 +136862,47830,Camilla Belle,1387131951 +136862,47830,incest,1387131984 +136862,47830,mental illness,1387131981 +136862,47970,being trapped,1368477618 +136862,47970,cheating,1368477613 +136862,47970,lying,1368477649 +136862,47970,real relationships,1368477675 +136862,47970,what you do not what you say,1368477965 +136862,47970,Zach Braff,1368477641 +136862,48043,death,1371395026 +136862,48043,dying,1371920799 +136862,48043,emotional,1371395120 +136862,48043,fountain of youth,1371395021 +136862,48043,intense,1374942161 +136862,48043,music,1371395133 +136862,48043,Rachel Weisz,1371394998 +136862,48780,batman,1365327861 +136862,48780,Christian Bale,1365327855 +136862,48780,complicated,1365327879 +136862,49278,fast paced,1376753441 +136862,49278,paradox,1376753387 +136862,49278,time,1376753426 +136862,52328,dark,1387133305 +136862,52328,fantasy,1387133324 +136862,52328,psychology,1387133309 +136862,52328,sci-fi,1387133336 +136862,52328,space,1387133311 +136862,52929,BBC Films,1370694826 +136862,52929,death,1370694832 +136862,52929,grief,1370694875 +136862,52929,human nature,1370694896 +136862,52929,revenge,1370694866 +136862,53123,bittersweet,1374309828 +136862,53123,emotional,1374309807 +136862,53123,music,1374309790 +136862,53123,Oscar (Best Music - Original Song),1374309795 +136862,53123,romance,1374309801 +136862,55052,heartbreaking,1366565879 +136862,55052,Keira Knightley,1366565874 +136862,55052,sad,1366565863 +136862,56079,Anna Faris,1372853497 +136862,56079,Stoner Movie,1372853501 +136862,56367,Ellen Page,1375636318 +136862,56367,pregnancy,1375636334 +136862,56367,quirky,1375636337 +136862,56367,witty,1375636342 +136862,62511,Charlie Kaufman,1366567110 +136862,62511,depressing,1366567116 +136862,62511,real,1366567151 +136862,62511,Schizophrenic,1366567132 +136862,63483,cliche,1371895194 +136862,64620,journalism,1366468007 +136862,64620,politics,1366468010 +136862,64620,US President,1366468022 +136862,64622,Kate Winslet,1384686181 +136862,67197,Alex Proyas,1378566142 +136862,67197,catastrophe,1378566190 +136862,67197,death,1378566194 +136862,67197,end of the world,1378566188 +136862,67197,numbers,1378566168 +136862,68237,death,1380127225 +136862,68237,dystopia,1380127206 +136862,68237,Kevin Spacey,1380127221 +136862,68237,psychology,1380127209 +136862,68237,space,1380127212 +136862,70599,Rachel McAdams,1372853225 +136862,71248,dry humor,1368474673 +136862,71248,dull,1368474699 +136862,71248,Kristen Wiig,1368474682 +136862,71248,Mike Judge,1368474687 +136862,71248,Mila Kunis,1368474689 +136862,71484,amazing animation,1390517091 +136862,71484,dystopia,1390517094 +136862,71484,Europe,1390517098 +136862,71484,weak plot,1390517107 +136862,71520,Atheism,1387132935 +136862,71520,delusion,1387132973 +136862,71520,man in the sky,1387132950 +136862,71520,religion,1387132931 +136862,71520,witty,1387132952 +136862,71838,antihero,1377440525 +136862,71838,enjoyable,1377440494 +136862,71838,fantasy,1377440509 +136862,71838,gadgets,1377440514 +136862,71838,revenge,1377440517 +136862,74324,autism,1376594967 +136862,74324,Claire Danes,1376594962 +136862,74324,inspirational,1376594978 +136862,74324,mental illness,1376594972 +136862,74458,captivating,1376148813 +136862,74458,dreams,1376148774 +136862,74458,insanity,1376148778 +136862,74458,island,1376148782 +136862,74458,Martin Scorsese,1376148784 +136862,74458,surreal,1376148842 +136862,76317,death,1365328661 +136862,78759,Blair,1386438812 +136862,78759,Clinton,1386438812 +136862,78759,politics,1386438821 +136862,79357,amnesia,1365327524 +136862,79357,coming of age,1365327427 +136862,79357,confusing,1365327433 +136862,79357,immortality,1365327446 +136862,79357,love affair,1365327452 +136862,79357,memory,1365327502 +136862,79357,nonlinear,1365327461 +136862,79357,nostalgia,1365327473 +136862,79357,romance,1365327481 +136862,79588,American culture,1370713041 +136862,79588,death,1370712868 +136862,79588,guilt,1370712892 +136862,79588,non-peronal,1370713125 +136862,79588,rich people problems,1370713030 +136862,79588,sailing,1370712775 +136862,79588,simplistic,1370712759 +136862,79588,Teen movie,1370712937 +136862,79588,Zac Efron,1370712748 +136862,79599,Odette Annable,1371411041 +136862,81512,death,1373807698 +136862,81512,psychic powers,1373807833 +136862,81791,Elle Fanning,1366566555 +136862,81791,loneliness,1366566534 +136862,81791,sparse dialog,1366566544 +136862,81845,disability,1368979172 +136862,81845,politics,1368979223 +136862,81845,true story,1368979193 +136862,82167,Anne Hathaway,1381777730 +136862,82167,Jake Gyllenhaal,1381777727 +136862,82167,Nudity (Topless),1381774614 +136862,82167,sickness,1381777820 +136862,84152,drugs,1375728481 +136862,84152,entertaining,1375728490 +136862,84601,amnesia,1377440860 +136862,84601,car accident,1377440903 +136862,84601,cliche,1377440939 +136862,84601,ex-ussr spy,1377441339 +136862,84601,explosion,1377441317 +136862,84601,memory,1377440893 +136862,84601,plot,1377441343 +136862,84601,short-term memory loss,1377440885 +136862,84954,Bechdel Test:Fail,1375728198 +136862,84954,captivating,1375727347 +136862,84954,Emily Blunt,1375727317 +136862,84954,intense,1375727339 +136862,84954,love story,1375727363 +136862,84954,New York City,1375727390 +136862,84954,original plot,1375727389 +136862,84954,surreal,1375727393 +136862,85414,captivating,1376162321 +136862,85414,exceptional acting,1376162343 +136862,85414,mind,1376162378 +136862,85414,powerful ending,1376162326 +136862,85414,romance,1376162330 +136862,85414,suspense,1376162312 +136862,85414,terrorism,1376162309 +136862,85414,time loop,1376162336 +136862,86911,Bangkok,1375636501 +136862,86911,monkey,1375636707 +136862,87270,death,1366574919 +136862,87270,emotions,1366574963 +136862,87270,Feelings,1366574950 +136862,87270,guilt,1366574929 +136862,87270,imperfect relationships,1366574985 +136862,87270,Natalie Portman,1366574902 +136862,87485,rough humor,1382282737 +136862,87869,interesting plot,1375642880 +136862,87869,murder,1375642844 +136862,87869,R:language,1375642835 +136862,87869,social commentary,1375642898 +136862,87869,weak ending,1375642831 +136862,88129,Dark,1370695050 +136862,88129,stylized,1370694992 +136862,88129,tense,1370695039 +136862,88129,violence,1370695042 +136862,88405,chemistry between actors,1382282604 +136862,88405,Justin Timberlake,1382282627 +136862,88405,Mila Kunis,1382282622 +136862,88405,New York City,1382282623 +136862,88405,romance,1382282633 +136862,89039,Brit Marling,1379261392 +136862,89039,Parallel worlds,1380127118 +136862,89039,plot,1379261279 +136862,89570,cancer,1387912853 +136862,89570,dealing with loss,1387912874 +136862,89570,love,1387912930 +136862,89804,friendship,1366445258 +136862,89804,smart,1366445260 +136862,89864,cancer,1387132097 +136862,89864,Seth Rogen,1387132113 +136862,89864,touching,1387132110 +136862,90071,amnesia,1365326118 +136862,90071,drama,1365326118 +136862,90071,truth,1365326118 +136862,90528,boredom,1387131691 +136862,90528,depression,1387131684 +136862,90528,Holocaust,1387131652 +136862,90528,love,1387131675 +136862,90528,Nazis,1387131646 +136862,90866,bittersweet,1387131805 +136862,90866,fantasy,1387131752 +136862,90866,heartbreaking,1387131801 +136862,91323,funny lines,1391963239 +136862,91653,Family,1391890295 +136862,91653,predictable,1391890285 +136862,91890,elderly,1365853738 +136862,91890,emotional,1365853690 +136862,91890,government,1365853699 +136862,91890,Meryl Streep,1365853680 +136862,91890,politics,1365853800 +136862,91890,touching,1365853786 +136862,92008,Bechdel Test:Fail,1374685921 +136862,92008,family bonds,1374686091 +136862,92008,fighting,1374686013 +136862,92008,good story,1374686066 +136862,92008,main character:woman,1374685895 +136862,92008,martial arts,1374685972 +136862,92008,revenge,1374685817 +136862,92008,unglamorized spy film,1374685914 +136862,92008,violence,1374686018 +136862,92259,feel good movie,1388447870 +136862,92259,made look better than it is,1388448041 +136862,92259,paralysis,1388447823 +136862,92259,predictable,1388448007 +136862,92259,rich and poor,1388448009 +136862,92259,sexuality,1388447828 +136862,93498,based on a true story,1365854222 +136862,93498,campaign manager,1365854225 +136862,93498,election,1365854235 +136862,93498,good performance,1365854234 +136862,93498,Julianne Moore,1365854242 +136862,93498,politics,1365854245 +136862,93498,Woody Harrelson,1365854275 +136862,94015,beautiful,1382282282 +136862,94015,dwarves,1382281940 +136862,94325,cliche,1376148637 +136862,94325,romance,1376148689 +136862,94325,Zac Efron,1376148628 +136862,94799,Brit Marling,1380124815 +136862,94799,creepy,1380124826 +136862,94799,cult,1380124693 +136862,94799,psychological,1380124695 +136862,95441,crude humor,1391963379 +136862,95441,Funny,1391963407 +136862,95441,Mila Kunis,1391963384 +136862,95441,Seth MacFarlane,1391963394 +136862,95443,cliche,1367175444 +136862,95443,consumerism,1367174948 +136862,95443,human condition,1367175414 +136862,95443,Jenna Fischer,1367174723 +136862,95443,real,1367174707 +136862,95873,flat characters,1381082535 +136862,95873,human nature,1381082533 +136862,96610,Bruce Willis,1365328402 +136862,96610,commercial,1365328385 +136862,96610,complicated,1365328063 +136862,96610,generic,1365328460 +136862,96610,suicide,1365328050 +136862,96610,time travel,1365328070 +136862,96610,violent,1365328053 +136862,96655,future,1367175537 +136862,96655,gentle,1367175525 +136862,96655,human condition,1367175584 +136862,96655,life,1367175602 +136862,96655,memory,1367175527 +136862,96655,robots,1367175533 +136862,96655,sickness,1367175576 +136862,96655,soft crime,1367175534 +136862,96811,brutally honest,1385837138 +136862,96811,death,1385837169 +136862,96811,good ending,1385837206 +136862,96811,Jake Gyllenhaal,1385837118 +136862,96811,realistic relationships,1385837122 +136862,96821,bittersweet,1374680125 +136862,96821,Suicide,1374680150 +136862,96821,touching,1374680153 +136862,97752,death,1375035335 +136862,97752,dystopia,1375035238 +136862,97752,gay,1375035304 +136862,97752,rebellion,1375035282 +136862,97752,sacrifice,1375035358 +136862,97752,touching,1375035325 +136862,97752,visually appealing,1375035247 +136862,97913,cars,1365329614 +136862,97913,crude humor,1365329476 +136862,97913,disney,1365329599 +136862,97913,plot twist,1365329492 +136862,97913,Sarah Silverman,1365329455 +136862,97913,unfair,1365329569 +136862,97921,loneliness,1370109680 +136862,97921,mental illness,1370109685 +136862,98154,American Civil War,1365853835 +136862,98154,great script,1365853941 +136862,98154,patriotic,1365853895 +136862,98154,US President,1365853912 +136862,98400,archetypes,1388448881 +136862,98400,coma,1388448844 +136862,98400,dreams,1388448855 +136862,98400,fantasy,1388448757 +136862,98400,father daughter relationship,1388448806 +136862,98400,father son relationship,1388448793 +136862,98400,suicide,1388448774 +136862,98400,touching,1388448762 +136862,98961,American propaganda,1367174785 +136862,98961,politics,1367174829 +136862,98961,terrorism,1367174819 +136862,98961,United States,1367174822 +136862,99007,comedic horror,1370186802 +136862,99007,funny,1370186813 +136862,99007,unconventional,1370186798 +136862,99007,zombies,1370186823 +136862,99047,abduction,1365329809 +136862,99047,generic plot twist,1365329765 +136862,99047,gore,1365329779 +136862,99750,twisted morale,1376763268 +136862,99750,violence,1376762288 +136862,99917,impossible,1367424769 +136862,100163,entertaining concept,1370181185 +136862,100163,Gemma Arterton,1370181170 +136862,100163,setting,1370181201 +136862,100163,violence,1370181222 +136862,100163,Witches,1370181177 +136862,100244,anti-corporation,1378578364 +136862,100244,Ellen Page,1378578416 +136862,100244,emotional,1378578263 +136862,100244,friendship,1378578502 +136862,100244,loyalty,1378578531 +136862,100244,relationships,1378578251 +136862,100244,revenge,1378578238 +136862,100244,spying,1378578294 +136862,100326,death,1379069072 +136862,100326,old age,1379069079 +136862,100326,stylized,1379069094 +136862,100356,cancer,1365326172 +136862,100356,Dakota Fanning,1365326187 +136862,100356,Jeremy Irvine,1365326235 +136862,100383,disappointing ending,1384802563 +136862,100397,nudity,1372586767 +136862,100397,sexual violence,1372586801 +136862,100397,short films,1372586742 +136862,100397,violence,1372586818 +136862,100440,bodily,1367175262 +136862,100440,human condition,1367175370 +136862,100440,human nature,1367175358 +136862,100440,realistic,1367175310 +136862,100440,sensual,1367175340 +136862,100440,visceral,1367175289 +136862,100527,boring,1376148572 +136862,100527,eye candy galore,1376148554 +136862,100527,North Carolina,1376148556 +136862,100714,affair,1382282400 +136862,100714,boring,1382282516 +136862,100714,fighting,1382282546 +136862,100714,marriage,1382282394 +136862,101025,bad cgi,1374679453 +136862,101025,fantasy,1374679508 +136862,101076,dialogue,1374328568 +136862,101076,senseless violence,1374328621 +136862,101076,Special Effects,1374328640 +136862,101088,beautiful,1381584017 +136862,101088,insubstantial,1381584074 +136862,101088,nonsense story,1381584106 +136862,101112,Fantasy,1381562544 +136862,101142,inspiring,1380125494 +136862,101362,cliche,1372600728 +136862,101362,predictable,1372600693 +136862,101362,Special Effects,1372600706 +136862,101362,weak plot,1372600703 +136862,101864,cliche,1374679588 +136862,101864,cliche ending,1374679688 +136862,101864,drones,1374679656 +136862,101864,dystopia,1374679617 +136862,101864,interesting concept,1374941169 +136862,101864,plot holes,1374679717 +136862,101895,sports,1367175134 +136862,101973,really heavy,1379140068 +136862,102033,entertaining,1378048211 +136862,102033,tragic events as comedy,1378048189 +136862,102123,Danny McBride,1380125374 +136862,102123,dialogue,1380125398 +136862,102123,lacks substance,1380125312 +136862,102123,using real names,1380125293 +136862,102160,death,1371331781 +136862,102160,puzzle,1371331793 +136862,102160,violence,1371331773 +136862,102378,advertising,1383397802 +136862,102378,cynical,1383397844 +136862,102378,New York City,1383397809 +136862,102378,perception is reality,1383397937 +136862,102445,franchise,1380125554 +136862,102445,space,1380125558 +136862,102463,dying,1368557177 +136862,102684,beautifully filmed,1374324980 +136862,102684,music,1374324998 +136862,102684,soundtrack,1374324985 +136862,102684,stylized violence,1374324989 +136862,102686,friendship,1375636640 +136862,102686,generic,1375636601 +136862,102686,unoriginal,1375636610 +136862,102854,Eli Roth,1374308679 +136862,102854,nothing happens,1374308703 +136862,102880,boring,1380124577 +136862,102880,cheap,1380124568 +136862,102880,father-son relationship,1380124456 +136862,102880,fear,1380124459 +136862,102920,death,1370173408 +136862,102920,exhausted,1370173354 +136862,102920,young parents,1370173391 +136862,102922,emotional suffering,1370695371 +136862,102922,financial crisis,1370196134 +136862,102922,pain,1370695318 +136862,102922,suffering,1370695336 +136862,102922,suicide,1370196118 +136862,102922,violence,1370196139 +136862,102978,death,1381082457 +136862,102978,Hilary Swank,1381082439 +136862,102978,malaria,1381082485 +136862,102993,coming of age,1381561947 +136862,102993,Drama,1381561921 +136862,102993,infidelity,1381561935 +136862,103017,unrealistic,1384782374 +136862,103042,bad Special Effects,1384090463 +136862,103042,identity crisis,1384090503 +136862,103042,long fight scenes,1384090488 +136862,103075,cliche,1374936768 +136862,103075,envy,1374937074 +136862,103075,interesting concept,1374936785 +136862,103075,senseless violence,1374936819 +136862,103075,simplistic,1374937041 +136862,103137,Emma Watson,1379139989 +136862,103137,Katie Chang,1379140004 +136862,103228,3D version,1377413132 +136862,103228,anime,1377413112 +136862,103228,giant robots,1377413142 +136862,103228,silly,1377413150 +136862,103228,visually appealing,1377413167 +136862,103249,entertaining,1379082603 +136862,103249,zombies,1379082522 +136862,103253,Diego Luna,1379778115 +136862,103253,dystopia,1379778097 +136862,103253,Inequality,1379778120 +136862,103253,visually stunning,1379778132 +136862,103275,Documentary,1382282342 +136862,103339,cliche,1380364932 +136862,103339,emotional,1380364950 +136862,103339,patriotic,1380364924 +136862,103341,aging,1379078760 +136862,103341,aliens,1379078762 +136862,103341,drinking,1379078438 +136862,103341,Rosamund Pike,1379078749 +136862,103366,Cliches,1372600607 +136862,103366,Jason Statham,1372600584 +136862,103370,amateur film making,1372611341 +136862,103372,mad tv alumns,1373483860 +136862,103372,many comedy actors,1373483782 +136862,103372,snl alumns,1373483920 +136862,103449,Incomplete,1384890717 +136862,103539,raw,1391970421 +136862,103539,teenagers,1391970458 +136862,103539,weird,1391970299 +136862,103606,death,1379759087 +136862,103606,first love,1379759069 +136862,103606,hate,1379759078 +136862,103606,heartbreak,1379759062 +136862,103606,love,1379759047 +136862,103665,kung fu,1374308256 +136862,103665,lung cancer,1374308245 +136862,103667,black and white justice,1374308556 +136862,103667,black and white morals,1374308500 +136862,103667,comic book feel,1374308456 +136862,103667,fantasy,1374308547 +136862,103669,good idea,1374309079 +136862,103669,revenge,1374309089 +136862,103669,senseless violence,1374309143 +136862,103669,slow,1374309069 +136862,103727,boring,1378570377 +136862,103808,funny dialogues,1374941965 +136862,103808,funny moments,1374941921 +136862,103808,horror,1374942070 +136862,103825,bad acting,1378053522 +136862,103825,unoriginal,1378053514 +136862,103980,tragedy,1380355370 +136862,103980,Woody Allen,1380355352 +136862,104129,cliche ending,1376156673 +136862,104129,martial arts,1376156685 +136862,104155,Bill Hader,1384018505 +136862,104155,Danny McBride,1384018571 +136862,104155,larry david,1384018509 +136862,104211,Jason Sudeikis,1377422762 +136862,104211,witty,1377422791 +136862,104241,comic book,1388447708 +136862,104241,glorifying violence,1388447627 +136862,104241,needless violence,1388447681 +136862,104243,aliens,1386442998 +136862,104243,simplistic,1386443022 +136862,104274,plot holes,1388447022 +136862,104312,cliche,1381561677 +136862,104312,cliche characters,1381561688 +136862,104312,Lily Collins,1381561713 +136862,104361,death,1388447539 +136862,104361,loss,1388447532 +136862,104441,drama,1377457692 +136862,104441,intense,1377457715 +136862,104599,no confrontation with facts,1378048408 +136862,104599,political,1378048361 +136862,104599,softball questions,1378048397 +136862,104601,Estella Warren,1378059585 +136862,104601,predictable ending,1378059572 +136862,104601,psychological,1378059563 +136862,104736,conspiracy,1380371877 +136862,104736,hopeless,1380371927 +136862,104736,hopelessness,1380371916 +136862,104841,intense,1387131207 +136862,104841,space,1387131202 +136862,104861,Jemma Dallender,1379079277 +136862,104861,revenge,1379079309 +136862,104861,torture,1379079303 +136862,104879,acting,1384591779 +136862,104879,cheap symbolism,1384591750 +136862,104879,cliche characters,1384591754 +136862,104908,ghosts,1386504314 +136862,104908,horror,1386504311 +136862,104908,horror flick,1386504390 +136862,104908,possession,1386504372 +136862,104913,1970s,1388449212 +136862,104913,based on a true story,1388449175 +136862,104913,cars,1388449167 +136862,104913,great mind,1388449195 +136862,104913,great skill,1388449223 +136862,104925,brutal violence,1386182408 +136862,104925,cowardly main characters,1386182488 +136862,105037,Andy Samberg,1383397702 +136862,105037,Bill Hader,1383397723 +136862,105096,heartbreaking,1379959580 +136862,105096,human condition,1379959565 +136862,105098,aging,1379959740 +136862,105098,social commentary,1379959758 +136862,105213,dating,1388447127 +136862,105213,pornography,1388447121 +136862,105213,Scarlett Johansson,1388447111 +136862,105351,fbi,1388448196 +136862,105351,money laundering,1388448216 +136862,105351,ponzi scheme,1388448239 +136862,105351,setup,1388448180 +136862,105351,Thriller,1388448248 +136862,105351,violence,1388448261 +136862,105355,Adele Exarchopoulos,1387132328 +136862,105355,first heartbreak,1387132360 +136862,105355,homosexuality,1387132424 +136862,105355,loneliness,1387132467 +136862,105731,Chloe Grace Moretz as Carrie,1391970086 +136862,105731,dumbed down original,1390036762 +136862,106030,infection,1383508185 +136862,106072,aliens,1393096100 +136862,106072,great ending,1393096110 +136862,106072,humor,1393096116 +136862,106072,visually appealing,1393096135 +136862,106100,death,1391368912 +136862,106100,dying,1391368921 +136862,106200,death,1384023388 +136862,106200,struggle,1384023443 +136862,106210,dark,1384686023 +136862,106210,death,1384686014 +136862,106210,Karoline Herfurth,1384686053 +136862,106240,time travel,1390762220 +136862,106330,friendship,1391968041 +136862,106330,nudity,1391967972 +136862,106374,death,1384724331 +136862,106374,love,1384724337 +136862,106542,emotional,1390055048 +136862,106542,life after death,1390055133 +136862,106542,love,1390055149 +136862,106696,musical,1389447354 +136862,106696,physical violence,1389447302 +136862,106749,Clemence Poesy,1385917655 +136862,106749,death,1385917481 +136862,106749,loss,1385917486 +136862,106749,undeveloped female characters,1385917447 +136862,106782,betrayal,1390029316 +136862,106782,drugs,1390030597 +136862,106782,intense,1390029298 +136862,106782,prostitution,1390030587 +136862,106782,Wall Street,1390029269 +136862,106839,biography,1388447265 +136862,106916,bittersweet,1388487941 +136862,106916,Christian Bale,1388487895 +136862,106916,con artists,1388487909 +136862,106918,imagination,1390659054 +136862,106918,plot holes,1390659149 +136862,106918,visually appealing,1390659063 +136862,107069,friendship,1390762316 +136862,107069,senseless violence,1390762291 +136862,107069,war,1390762302 +136862,107141,tragic,1388447191 +136862,107172,bad acting,1387028608 +136862,107172,bad acting by kids,1387029099 +136862,107172,cancer,1387028635 +136862,107172,death,1387028641 +136862,107172,Robbie Kay,1387028597 +136862,107207,Thriller,1387127475 +136862,107209,mediocre acting,1387131576 +136862,107213,dealing with death,1387132872 +136862,107213,delusion,1387132833 +136862,107213,Kaya Scodelario,1387132824 +136862,107213,loss,1387132841 +136862,107213,Loss of child,1387132849 +136862,107651,Annie Clark,1388449085 +136862,107962,boring,1389430275 +136862,108953,blackmail,1391904079 +136862,108953,fantasy,1391904061 +136862,108953,inner monologue,1391903987 +136862,108953,justice,1391904067 +136862,108953,sexuality,1391904040 +136862,109195,Camilla Belle,1392557674 +136862,109397,based on a true story,1393095646 +136862,109397,prison,1393095636 +136862,109399,average acting,1393095885 +136862,109399,Nudity (Topless),1393095843 +136862,109399,sexual abuse,1393095859 +136862,109399,Sexualized violence,1393095871 +136909,6539,Johnny Depp,1226156213 +136909,59315,superhero,1226156266 +136909,64839,sports,1235068567 +136934,4034,drugs,1146314247 +136962,2115,Lucas,1172376026 +137004,778,black comedy,1294465834 +137004,1276,FIGHTING THE SYSTEM,1294466056 +137004,1276,Paul Newman,1294466059 +137004,1304,AFI 100,1294466003 +137004,1304,FIGHTING THE SYSTEM,1294465986 +137004,1304,imdb top 250,1294466007 +137004,1304,Paul Newman,1294465966 +137004,1304,Robert Redford,1294465967 +137017,913,Peter Lorre,1146441255 +137017,1260,Peter Lorre,1146441409 +137017,25904,Fritz Lang,1146441730 +137029,296,gangsters,1433095958 +137029,296,noir,1433095958 +137029,296,violence,1433095958 +137029,318,prison escape,1430087835 +137029,318,redemption,1430087835 +137029,318,wrongful imprisonment,1430087835 +137029,916,black and white,1430087881 +137029,916,classic,1430087887 +137029,3462,black and white,1430087750 +137029,3462,Charles Chaplin,1430087757 +137029,3462,Charlie Chaplin,1430087760 +137029,3462,talky,1430087771 +137029,94466,not a movie,1429902023 +137029,94466,tv series,1429902026 +137029,103044,charlie chaplin,1430087696 +137038,3000,fantasy,1378167052 +137038,3471,Sci-fi,1378167021 +137038,3698,Stephen King,1378167002 +137038,5971,Studio Ghibli,1378145391 +137038,65188,documentary,1378145271 +137059,1,dolls,1339335136 +137059,1,National Film Registry,1228239042 +137059,16,casino,1373458746 +137059,16,memasa's movies,1320925372 +137059,17,Netflix Finland,1397560629 +137059,25,Annemari,1332678775 +137059,25,library,1216662689 +137059,28,library vhs,1193568093 +137059,29,clowny clones,1180630312 +137059,29,memasa's movies,1308833585 +137059,32,agonizing,1328811455 +137059,32,inmate,1328811454 +137059,32,memasa's movies,1319999874 +137059,32,Mental Institution,1328811032 +137059,34,easily confused with other movie(s) (title),1234348499 +137059,34,farm,1234274605 +137059,34,farming,1234274639 +137059,34,food,1234274800 +137059,34,meaty,1234274746 +137059,34,on dvr,1234004512 +137059,34,overrated,1328214013 +137059,34,sheep,1234274542 +137059,36,Annemari,1334221491 +137059,36,Bible,1335270829 +137059,39,Beautiful Woman,1354026783 +137059,39,female director,1354026986 +137059,45,library,1221398244 +137059,47,books,1217263725 +137059,47,detective,1217262191 +137059,47,envy,1217263505 +137059,47,gluttony,1217263274 +137059,47,greed,1217263333 +137059,47,husband-wife relationship,1217263867 +137059,47,library vhs,1199018813 +137059,47,lust,1217263200 +137059,47,numbers,1217262684 +137059,47,pride,1217263529 +137059,47,religion,1217263955 +137059,47,setting:library,1217262797 +137059,47,seven,1217262278 +137059,47,sin,1221349385 +137059,47,sins,1217263662 +137059,47,Sloth,1217263388 +137059,47,week,1217263848 +137059,47,wrath,1217263474 +137059,50,library,1204910353 +137059,65,Golden Raspberry (Worst Actor),1224356118 +137059,70,bar,1199531637 +137059,70,bats,1199531908 +137059,70,bikers,1199533621 +137059,70,bouncer,1199532531 +137059,70,brothers,1199531422 +137059,70,campy,1241684646 +137059,70,cdon,1232798934 +137059,70,frontier,1199531320 +137059,70,hostage,1199531533 +137059,70,intense,1199531376 +137059,70,mexico,1199531353 +137059,70,motorhome,1203196537 +137059,70,my shopping list,1378035445 +137059,70,on the road,1199530576 +137059,70,perverted,1199531090 +137059,70,preacher,1199530434 +137059,70,See Planet Terror,1217426207 +137059,70,sex offender,1199530547 +137059,70,snake,1199532728 +137059,70,Snakes,1224426908 +137059,70,so bad it's good,1241684623 +137059,70,splatter,1199530734 +137059,70,strippers,1199531858 +137059,70,tattoo,1203538024 +137059,70,whip,1199531731 +137059,75,Golden Raspberry (Worst Actor),1224355815 +137059,80,cultural customs and traditions,1226703847 +137059,80,girl,1226703896 +137059,80,goldfish,1226704140 +137059,80,money,1226703979 +137059,80,New Year's Eve,1226703942 +137059,80,on dvr,1226673589 +137059,80,shop (establishment),1226703808 +137059,80,SIBLING RELATIONSHIPS,1226703997 +137059,80,snake,1226704553 +137059,80,soldier,1226704613 +137059,80,tailor,1226704593 +137059,80,Tehran,1226704654 +137059,85,To See,1219145224 +137059,88,easily confused with other movie(s) (title),1226686826 +137059,89,blackmail,1309883466 +137059,89,child in peril,1309883418 +137059,89,conspiracy,1309883605 +137059,89,elevator,1309883790 +137059,89,governor,1309883364 +137059,89,hostage,1309883739 +137059,89,kidnapping,1309883623 +137059,89,on dvr,1309194254 +137059,89,time,1309883525 +137059,89,Vietnam war veteran,1309883843 +137059,89,widows/widowers,1309883686 +137059,89,wrist watch,1309883652 +137059,97,black and white,1241186439 +137059,97,memasa's movies,1308832357 +137059,97,missing gun,1177775586 +137059,97,riot,1177776063 +137059,97,social commentary,1241186437 +137059,110,memasa's movies,1320008152 +137059,111,alienation,1336484017 +137059,111,Golden Palm,1214150413 +137059,111,memasa's movies,1320000427 +137059,111,mohawk,1336484313 +137059,111,movie theatre,1336484118 +137059,111,National Film Registry,1228238191 +137059,111,post-traumatic stress disorder,1336484186 +137059,111,presidential elections,1336484217 +137059,111,taxi driver,1200742649 +137059,111,Vietnam war veteran,1336470713 +137059,121,sexual abuse,1239957962 +137059,121,To See,1239958094 +137059,123,airport,1219337424 +137059,123,birthday,1219338893 +137059,123,BREAKUPS AND DIVORCES,1219338643 +137059,123,cops,1219340078 +137059,123,foggy,1219336764 +137059,123,good music,1241191006 +137059,123,Hong Kong,1219173820 +137059,123,indians,1219338798 +137059,123,ironic,1219339132 +137059,123,jogging,1219339047 +137059,123,jukebox,1219338696 +137059,123,library vhs,1192906399 +137059,123,loneliness,1219339909 +137059,123,May 1,1219338412 +137059,123,Movielens QuickPick,1205511723 +137059,123,my shopping list,1378036017 +137059,123,obsession,1219339819 +137059,123,on dvr,1201850765 +137059,123,pineapple,1219339432 +137059,123,smuggling,1219337309 +137059,123,stewardess,1219339667 +137059,123,sunglasses,1219336887 +137059,123,ticket,1219340163 +137059,123,time,1219339304 +137059,147,based on a true story,1241211603 +137059,147,Catholicism,1220003170 +137059,147,diary,1220020547 +137059,147,escape,1220002908 +137059,147,expelled from school,1220002748 +137059,147,male nudity,1220002845 +137059,147,male prostitute,1220002867 +137059,147,masturbation,1220002936 +137059,147,mother-son relationship,1220003095 +137059,147,New York City,1220003008 +137059,147,on dvr,1219866650 +137059,147,PROSTITUTES,1220002824 +137059,147,school,1220002643 +137059,147,teacher student relationship,1220002732 +137059,147,WRITER'S LIFE,1220003289 +137059,150,based on a true story,1241791282 +137059,150,biographical,1230888180 +137059,150,See: In the Shadow of the Moon,1230927030 +137059,150,space program,1241791294 +137059,154,library vhs,1193949996 +137059,156,memasa's movies,1401214250 +137059,160,gorilla,1244326548 +137059,174,Golden Raspberry (Worst Actor),1224360254 +137059,193,Golden Raspberry (Worst Actress),1224353957 +137059,193,Golden Raspberry (Worst Picture),1224351593 +137059,194,memasa's movies,1401214212 +137059,194,on dvr,1387726770 +137059,194,shop (establishment),1390504506 +137059,198,virtual reality,1241479122 +137059,199,1950s,1234736591 +137059,199,1960s,1234736604 +137059,199,breakthroughs,1241186338 +137059,199,eye candy,1241186335 +137059,199,gas station,1234737440 +137059,199,marriage,1234737383 +137059,199,notable soundtrack,1241186333 +137059,199,on dvr,1227046102 +137059,199,pregnancy,1234737353 +137059,199,saturated,1241186329 +137059,199,shop (establishment),1234737251 +137059,199,wistful,1206516165 +137059,208,gyrocopter,1224839548 +137059,213,library,1218835178 +137059,214,To See,1203341537 +137059,215,library,1224793218 +137059,223,convenience store,1354640169 +137059,223,Netflix Finland,1354630447 +137059,223,To See,1230562366 +137059,232,aging,1201536057 +137059,232,airline company,1201535739 +137059,232,BREAKUPS AND DIVORCES,1201535647 +137059,232,buddhism,1201536073 +137059,232,chefs,1201535332 +137059,232,christening,1201536182 +137059,232,christians,1201535584 +137059,232,cooking,1201535510 +137059,232,FAMILY GATHERINGS,1203194331 +137059,232,fast food,1201535809 +137059,232,father daughter relationship,1201535125 +137059,232,karaoke,1201535947 +137059,232,letters,1201535143 +137059,232,library vhs,1192365659 +137059,232,makes you hungry,1241441974 +137059,232,marriage,1201535096 +137059,232,photography,1201535933 +137059,232,restaurant,1201535107 +137059,232,rival suitor,1201792914 +137059,232,school,1201535987 +137059,232,See: Bella Martha,1223674082 +137059,232,sister sister relationship,1201535789 +137059,232,slow food,1201535915 +137059,232,tasteful,1241441990 +137059,232,teacher,1201535666 +137059,232,volleyball,1201535972 +137059,232,widows/widowers,1201535631 +137059,232,workplace,1201535287 +137059,233,To See,1221395476 +137059,246,National Film Registry,1230732250 +137059,246,Netflix Finland,1396358384 +137059,249,To See,1221068681 +137059,253,interviews,1212944677 +137059,253,Netflix Finland,1356883621 +137059,253,on dvr,1310213973 +137059,253,To See,1213099046 +137059,260,memasa's movies,1365699112 +137059,260,National Film Registry,1228237300 +137059,273,frankenstein,1217156442 +137059,273,remake,1241903855 +137059,288,animated segments,1309382326 +137059,288,incest,1309382604 +137059,288,love,1309380775 +137059,288,media,1309381762 +137059,288,Native Americans,1309382523 +137059,288,on dvr,1309194934 +137059,288,partially black and white,1309382402 +137059,293,girl,1392660182 +137059,293,milk,1392660215 +137059,296,ensemble,1241790995 +137059,296,ensemble cast,1241791012 +137059,296,hit men,1184061472 +137059,296,Mafia,1241791024 +137059,296,memasa's movies,1309262354 +137059,299,MEMBERS OF THE CLERGY,1215899657 +137059,299,priest,1191074620 +137059,299,To See,1203855499 +137059,306,BFI modern classic,1241455139 +137059,306,dogs,1233662592 +137059,306,eavesdropping,1233611875 +137059,306,judge,1233612098 +137059,306,library,1200758837 +137059,306,memasa's movies,1308831927 +137059,306,models,1241455115 +137059,306,neighbors,1233612185 +137059,306,on dvr,1229691577 +137059,306,phone,1233611460 +137059,306,red,1202398227 +137059,307,BFI modern classic,1241268402 +137059,307,bluish,1224512284 +137059,307,car accident,1228714477 +137059,307,memasa's movies,1308832151 +137059,307,swimming pool,1200073520 +137059,308,beautiful,1241266992 +137059,308,BFI modern classic,1241215478 +137059,308,memasa's movies,1308831468 +137059,308,on dvr,1229022570 +137059,308,satirical,1241215488 +137059,308,sequel,1241215510 +137059,308,Three Colors trilogy,1241215493 +137059,308,white,1241215496 +137059,308,wry,1241215500 +137059,318,appeals to all audiences,1387129020 +137059,318,autonomy,1170868080 +137059,318,halfway house,1198511836 +137059,318,memasa's movies,1308838095 +137059,318,overrated,1323771770 +137059,318,parole,1323771292 +137059,318,prison,1170871701 +137059,318,seen more than once,1387124487 +137059,318,thought-provoking,1170871403 +137059,337,brothers,1221327968 +137059,337,disability,1280171522 +137059,337,mental disability,1280171505 +137059,337,obesity,1280171442 +137059,353,bird guardian spirit,1192641967 +137059,353,birds,1192648255 +137059,353,bride,1192650818 +137059,353,cdon,1195926171 +137059,353,extrasensory visual capacity,1192641842 +137059,353,ghosts/afterlife,1192642303 +137059,353,gothic,1241873524 +137059,353,halloween,1192642146 +137059,353,Halloween movie,1241873516 +137059,353,memasa's movies,1308831794 +137059,353,memories,1192651012 +137059,353,nocturnal,1241873528 +137059,353,rain,1192642401 +137059,353,resurgence,1203200633 +137059,353,revenge,1328214695 +137059,353,spirit animal,1328214725 +137059,353,tissue regeneration,1192648750 +137059,353,transference,1192744241 +137059,353,Two Colors: Black and Red,1192650702 +137059,356,amputee,1205419655 +137059,356,memasa's movies,1320000387 +137059,356,mentally impaired,1207382155 +137059,357,Annemari,1339232422 +137059,357,fear of commitment,1339608156 +137059,357,predictable,1339607665 +137059,376,boat,1309356724 +137059,376,child in peril,1309358181 +137059,376,dogs,1309357453 +137059,376,family bonds,1309357697 +137059,376,father-son relationship,1309357614 +137059,376,husband-wife relationship,1309357762 +137059,376,on dvr,1256049761 +137059,376,river,1309356660 +137059,376,See: Deliverance,1354043111 +137059,376,swimming,1309356695 +137059,376,vacation,1309356630 +137059,376,water,1309356684 +137059,376,wilderness,1309356887 +137059,383,Golden Raspberry (Worst Actor),1224360349 +137059,392,To See,1221389528 +137059,412,on dvr,1362926171 +137059,431,on dvr,1219868937 +137059,436,Golden Raspberry (Worst Picture),1224351544 +137059,446,courtesan,1171187590 +137059,446,gay,1171117698 +137059,446,To See,1224887076 +137059,448,easily confused with other movie(s) (title),1239165414 +137059,454,lawyers,1223267880 +137059,461,Teddy Award,1217514326 +137059,474,memasa's movies,1320924846 +137059,475,1970s,1233949123 +137059,475,bad cop,1234033923 +137059,475,based on true story,1241478693 +137059,475,courtroom,1233953990 +137059,475,father-son relationship,1241478679 +137059,475,hippies,1233949186 +137059,475,innocence,1239129331 +137059,475,interrogation,1233959849 +137059,475,lawyers,1233949104 +137059,475,library,1223155958 +137059,475,See: Bloody Sunday,1234902774 +137059,475,terrorism,1233949425 +137059,475,thieves,1233949146 +137059,475,wrongful imprisonment,1232960713 +137059,475,wrongly accused,1244375556 +137059,480,egg,1352979760 +137059,484,dogs,1214761308 +137059,495,library vhs,1221396661 +137059,501,To See,1239398334 +137059,509,ARRANGED MARRIAGES,1243351817 +137059,509,beach,1243351263 +137059,509,Golden Palm,1214150949 +137059,509,good soundtrack,1243351316 +137059,509,great acting,1243351348 +137059,509,library,1199627326 +137059,509,mother daughter relationship,1243351968 +137059,509,on dvr,1243199283 +137059,509,scenic,1243351242 +137059,527,based on a true story,1241791314 +137059,527,black and white,1169936659 +137059,527,Holocaust,1171123292 +137059,527,memasa's movies,1308832179 +137059,527,National Film Registry,1230755242 +137059,535,To See,1221394883 +137059,541,cyberpunk,1255974080 +137059,541,genetics,1255974162 +137059,541,library,1213099333 +137059,541,National Film Registry,1229968107 +137059,541,nocturnal,1318022709 +137059,541,on dvr,1230644727 +137059,551,cult film,1241872480 +137059,551,Danny Elfman score,1241872474 +137059,551,dogs,1233662798 +137059,551,ghosts,1233666336 +137059,551,Halloween movie,1198490394 +137059,551,memasa's movies,1308832847 +137059,555,memasa's movies,1308833644 +137059,565,clockwork devices,1212843071 +137059,581,interviews,1196868948 +137059,581,Teddy Award,1217515148 +137059,586,To See,1221051239 +137059,587,library,1195219851 +137059,587,on dvr,1347361342 +137059,588,genie,1406492672 +137059,588,lamp,1406492643 +137059,588,magic carpet,1406492790 +137059,588,marriage,1406492714 +137059,588,wishes,1406492825 +137059,589,memasa's movies,1319986524 +137059,589,motorcycle,1178389790 +137059,590,library,1226693628 +137059,590,National Film Registry,1229970471 +137059,592,To See,1221052230 +137059,593,Hannibal Lecter,1189457809 +137059,593,manipulation,1189517298 +137059,593,metamorphosis,1189517001 +137059,593,psychiatrist,1189517919 +137059,593,Thomas Harris,1189937071 +137059,594,National Film Registry,1228237338 +137059,595,National Film Registry,1229967699 +137059,596,National Film Registry,1230753068 +137059,597,PROSTITUTES,1250869301 +137059,599,library,1221080816 +137059,599,National Film Registry,1228238253 +137059,608,1980s,1309643692 +137059,608,crime gone awry,1309643612 +137059,608,library,1223804970 +137059,608,National Film Registry,1228235722 +137059,608,on dvr,1309194727 +137059,608,wintry,1309643765 +137059,613,library,1239125066 +137059,617,memasa's movies,1328971624 +137059,628,bishop,1338815490 +137059,628,split personality,1338815695 +137059,628,To See,1221396880 +137059,650,library vhs,1201823571 +137059,665,library,1196705481 +137059,668,To See,1250965107 +137059,668,trains,1250965162 +137059,678,interviews,1349804401 +137059,678,murderer,1349804420 +137059,680,black and white,1309452898 +137059,680,conscience,1310234599 +137059,680,detective,1310234530 +137059,680,on dvr,1309192887 +137059,690,library,1244295237 +137059,719,mentally impaired,1207384463 +137059,720,dogs,1214731586 +137059,720,Wallace and Gromit,1230326398 +137059,722,Ed Wood,1190146958 +137059,729,blindfold,1224886044 +137059,733,memasa's movies,1320925728 +137059,736,storm,1214685846 +137059,741,comic book,1218839431 +137059,741,library,1218839105 +137059,745,dogs,1214731725 +137059,745,motorcycle,1178389830 +137059,745,short,1214731725 +137059,745,Wallace and Gromit,1230326435 +137059,746,National Film Registry,1230729180 +137059,747,Golden Raspberry (Worst Actor),1224355861 +137059,750,anti-war,1241792464 +137059,750,black and white,1170945829 +137059,750,black comedy,1241792467 +137059,750,cold war,1241792469 +137059,750,doomsday,1170888849 +137059,750,memasa's movies,1308838119 +137059,750,multiple roles,1241792451 +137059,750,National Film Registry,1228236836 +137059,750,wheelchair,1219957532 +137059,762,Golden Raspberry (Worst Actress),1224353918 +137059,762,Golden Raspberry (Worst Picture),1224351668 +137059,778,library,1176384801 +137059,778,memasa's movies,1320000341 +137059,780,Fourth of July,1238145286 +137059,781,library vhs,1224889035 +137059,841,eyes,1386100449 +137059,841,face,1229881048 +137059,841,on dvr,1385367736 +137059,851,andy warhol,1329765883 +137059,851,Annemari,1329419918 +137059,851,drugs,1329767462 +137059,858,atmospheric,1179485023 +137059,858,memasa's movies,1319986357 +137059,858,National Film Registry,1230730917 +137059,858,Netflix Finland,1373103199 +137059,860,library vhs,1191868006 +137059,866,To See,1221396390 +137059,867,Golden Raspberry (Worst Actor),1224355883 +137059,880,island,1250937859 +137059,898,library,1309892853 +137059,898,National Film Registry,1230753038 +137059,899,library,1220629073 +137059,899,National Film Registry,1228237464 +137059,900,National Film Registry,1229967041 +137059,900,on dvr,1358005680 +137059,902,1960s,1198272350 +137059,902,apartment,1198319441 +137059,902,Beautiful Woman,1198272240 +137059,902,books,1198273789 +137059,902,diamonds are a girl's best friend,1198272811 +137059,902,diva,1198272103 +137059,902,facades,1198273725 +137059,902,librarians,1198273060 +137059,902,neighbors,1198276022 +137059,902,opportunism,1198323358 +137059,902,retro,1241478950 +137059,902,SOCIAL CLIMBING,1198323296 +137059,902,static,1198273941 +137059,902,stereotypes,1241478958 +137059,902,WRITER'S LIFE,1198272463 +137059,903,acrophobia,1361541082 +137059,903,Beautiful Woman,1361541115 +137059,903,memasa's movies,1362670753 +137059,903,National Film Registry,1228237177 +137059,903,obsession,1361725894 +137059,903,vertigo,1361541988 +137059,904,memasa's movies,1362670814 +137059,904,National Film Registry,1228238020 +137059,904,neighbors,1357997720 +137059,904,on dvr,1355738326 +137059,904,wheelchair,1357997730 +137059,905,National Film Registry,1230748381 +137059,906,acting debut,1215850726 +137059,906,DANGEROUS ATTRACTION,1215850196 +137059,906,house,1215850131 +137059,906,jewel,1215850566 +137059,906,l'homme fatal,1215849137 +137059,906,letters,1215849389 +137059,906,library,1212345127 +137059,906,maid,1215849306 +137059,906,manipulation,1215851410 +137059,906,murder,1215721212 +137059,906,my shopping list,1378035824 +137059,906,painting,1215851449 +137059,906,remake,1310810035 +137059,906,SERVANTS AND EMPLOYERS,1215849532 +137059,906,singer,1215720951 +137059,906,TRAPPED OR CONFINED,1215850386 +137059,908,National Film Registry,1230751839 +137059,909,Christmas,1311016718 +137059,909,corporations,1311016831 +137059,909,easily confused with other movie(s) (title),1239116279 +137059,909,elevator,1311016555 +137059,909,executive,1311016504 +137059,909,EXTRAMARITAL AFFAIRS,1311016598 +137059,909,my shopping list,1379925791 +137059,909,National Film Registry,1229967194 +137059,909,neighbors,1311018449 +137059,909,office romance,1311016665 +137059,909,on dvr,1224884638 +137059,909,suicide attempt,1311016642 +137059,910,Beautiful Woman,1387304414 +137059,910,memasa's movies,1392126430 +137059,910,National Film Registry,1228237399 +137059,910,trains,1387304402 +137059,912,National Film Registry,1228237652 +137059,912,overly sentimental,1241792374 +137059,912,sentimental,1241792388 +137059,912,World War II,1191078150 +137059,913,National Film Registry,1228237093 +137059,914,Annemari,1356268553 +137059,915,library vhs,1221344645 +137059,915,National Film Registry,1230755070 +137059,916,National Film Registry,1230755025 +137059,918,National Film Registry,1230750718 +137059,919,memasa's movies,1397151315 +137059,919,National Film Registry,1228237508 +137059,920,memasa's movies,1308834288 +137059,920,National Film Registry,1228237532 +137059,920,Netflix Finland,1356885871 +137059,920,To See,1217680541 +137059,922,director,1310927144 +137059,922,mansion,1310927055 +137059,922,memasa's movies,1379858132 +137059,922,mental illness,1310927430 +137059,922,narcissism,1310927496 +137059,922,narrated,1310927756 +137059,922,National Film Registry,1228237031 +137059,922,New Year's Eve,1310927284 +137059,922,retirement,1310927885 +137059,922,rich and poor,1310927991 +137059,922,suicide attempt,1310927690 +137059,922,typewriter,1310927575 +137059,922,washed up,1310928032 +137059,922,writing,1310927215 +137059,923,library,1220194745 +137059,923,National Film Registry,1228237045 +137059,924,National Film Registry,1328213400 +137059,924,spaceships,1221238104 +137059,926,National Film Registry,1229966440 +137059,926,on dvr,1385367906 +137059,927,National Film Registry,1228236283 +137059,930,National Film Registry,1230751914 +137059,931,Annemari,1340008213 +137059,931,based on a book,1340111318 +137059,931,doctor-patient relationship,1340111388 +137059,931,library,1196979384 +137059,931,medical thriller,1340111422 +137059,931,psychoanalysis,1340111357 +137059,931,salvador dali,1340111254 +137059,931,WORK ETHICS,1340111450 +137059,933,heist,1320328724 +137059,935,National Film Registry,1229967539 +137059,936,blindfold,1224885122 +137059,936,National Film Registry,1230751784 +137059,938,courtesan,1171904302 +137059,938,National Film Registry,1230730774 +137059,940,National Film Registry,1228242100 +137059,942,National Film Registry,1230749380 +137059,942,on dvr,1359297225 +137059,945,National Film Registry,1228239184 +137059,946,National Film Registry,1228239386 +137059,947,National Film Registry,1230751321 +137059,948,National Film Registry,1230730822 +137059,948,on dvr,1310214303 +137059,950,National Film Registry,1228239783 +137059,951,National Film Registry,1230732149 +137059,953,alternate reality,1230114943 +137059,953,brothers,1230114146 +137059,953,corporations,1230114183 +137059,953,FIRST LOVE,1230114952 +137059,953,hearing impairment,1230114556 +137059,953,library vhs,1212941616 +137059,953,money,1230077474 +137059,953,National Film Registry,1230026944 +137059,954,National Film Registry,1228237231 +137059,955,National Film Registry,1229968752 +137059,965,breakthroughs,1196438896 +137059,965,handcuffs,1196439048 +137059,965,memory guy,1196438869 +137059,965,secrets,1196439122 +137059,965,theatre,1196439069 +137059,965,train,1196438881 +137059,965,wrongly accused,1196438561 +137059,968,National Film Registry,1230751736 +137059,969,National Film Registry,1228242165 +137059,996,memasa's movies,1320008756 +137059,1010,beetle,1215854812 +137059,1022,library vhs,1228161017 +137059,1023,To See,1221394564 +137059,1024,blindfold,1224886506 +137059,1025,library,1221046694 +137059,1027,blind,1213796488 +137059,1027,forced marriage,1213796575 +137059,1027,forest,1213797516 +137059,1027,fortune-telling,1213797561 +137059,1027,freedom,1213796320 +137059,1027,Golden Raspberry (Worst Actor),1241456138 +137059,1027,islam,1213797795 +137059,1027,outlaw,1213796272 +137059,1027,sheriff,1213796417 +137059,1027,SHERIFFS AND OUTLAWS,1213796399 +137059,1027,sword fight,1213797660 +137059,1027,thieves,1214742890 +137059,1027,witch,1213796343 +137059,1032,cards,1230306635 +137059,1032,cats,1230209879 +137059,1032,cdon,1230210430 +137059,1032,classic,1230208797 +137059,1032,classic disney,1241442242 +137059,1032,dreamlike,1241442338 +137059,1032,fairy tale,1241442395 +137059,1032,flowers,1230206220 +137059,1032,girl,1230492381 +137059,1032,madcap,1241442269 +137059,1032,memasa's movies,1351874687 +137059,1032,miniaturization,1230209987 +137059,1032,Parallel universe,1241442345 +137059,1032,rabbit,1241442376 +137059,1032,rabbits,1223720768 +137059,1032,smoking,1230202656 +137059,1032,surrealism,1241442349 +137059,1032,tea,1230202268 +137059,1032,very good for kids and adults,1230209016 +137059,1033,Annemari,1326844391 +137059,1035,library,1210438948 +137059,1035,National Film Registry,1228241565 +137059,1036,Nudity (Topless - Brief),1350935071 +137059,1036,on dvr,1349687595 +137059,1036,police,1350935109 +137059,1037,2000s,1207506560 +137059,1037,animal research,1226090839 +137059,1037,animals,1207390225 +137059,1037,artificial intelligence,1207389436 +137059,1037,bald nemesis,1207495930 +137059,1037,brain,1207047645 +137059,1037,character problems,1241442998 +137059,1037,charmingly outdated CGI,1241443008 +137059,1037,cyberpunk,1207390786 +137059,1037,diabolizing,1207505718 +137059,1037,diary,1207390328 +137059,1037,ethics of science,1207505535 +137059,1037,EXPERIMENTS GONE AWRY,1207389302 +137059,1037,game,1207047434 +137059,1037,games,1207047617 +137059,1037,god,1207494644 +137059,1037,infernal machine,1241443043 +137059,1037,lawn mower,1207505574 +137059,1037,mentally impaired,1221327766 +137059,1037,mind control,1207389360 +137059,1037,poor dialogue,1207505967 +137059,1037,priest,1207389561 +137059,1037,psychic,1207506223 +137059,1037,PSYCHIC ABILITIES,1207506111 +137059,1037,ridiculous training sequence,1241443055 +137059,1037,science,1207041653 +137059,1037,sexuality,1207505433 +137059,1037,stereotyped roles,1207495749 +137059,1037,technology,1207041695 +137059,1037,TECHNOLOGY RUN AMOK,1207045483 +137059,1037,transformation,1207390895 +137059,1037,unintentionally funny,1241443100 +137059,1051,alcoholism,1206374404 +137059,1051,bar,1206374420 +137059,1051,boss,1206374716 +137059,1051,cocaine,1206374674 +137059,1051,debut film,1206377341 +137059,1051,drinking,1206374412 +137059,1051,drugs,1206374684 +137059,1051,ex,1206374582 +137059,1051,ex-girlfriend,1206374571 +137059,1051,funeral,1206374644 +137059,1051,gas station,1206374737 +137059,1051,ice cream,1206374598 +137059,1051,Lolita-fetish,1206375037 +137059,1051,losers,1206375053 +137059,1051,pregnancy,1206374476 +137059,1051,SMALL-TOWN LIFE,1206376858 +137059,1051,stealing,1206377279 +137059,1051,teenagers,1206375027 +137059,1051,tricycle,1206817632 +137059,1051,truck,1206374612 +137059,1051,unemployment,1206374656 +137059,1051,video,1206374804 +137059,1051,video camera,1206374799 +137059,1059,fascinating how a conversation and two people keep you interested,1170947236 +137059,1059,FORBIDDEN LOVE,1226574546 +137059,1059,memasa's movies,1330428835 +137059,1059,Red Curtain trilogy,1167695153 +137059,1068,To See,1203856026 +137059,1069,blindfold,1224885370 +137059,1069,library,1213079734 +137059,1073,Annemari,1347175010 +137059,1073,honesty,1347197442 +137059,1073,remake better than original version,1347197499 +137059,1073,ticket,1347195553 +137059,1079,blindfold,1224885265 +137059,1079,memasa's movies,1308833472 +137059,1081,alter ego,1215855291 +137059,1081,closeted homosexual,1215855448 +137059,1081,To See,1215855530 +137059,1081,transvestism,1215856498 +137059,1084,Beautiful Woman,1358109836 +137059,1084,car chase,1358109892 +137059,1084,National Film Registry,1229968266 +137059,1084,on dvr,1357299631 +137059,1084,on the road,1358109921 +137059,1084,See: Badlands,1366901108 +137059,1089,memasa's movies,1320925009 +137059,1090,library,1240062933 +137059,1090,library vhs,1240062934 +137059,1090,memasa's movies,1320008257 +137059,1090,on dvr,1389110128 +137059,1092,Erotic Thriller,1215900124 +137059,1092,library,1218832497 +137059,1093,Annemari,1326995786 +137059,1094,genitalia,1234096057 +137059,1094,hairdresser,1234042727 +137059,1094,hostage,1234042717 +137059,1094,library,1211826752 +137059,1094,on dvr,1217680594 +137059,1094,penis,1234042747 +137059,1094,soldier,1234048344 +137059,1096,friendship,1309535972 +137059,1096,lies,1309546059 +137059,1096,mental imbalance,1309536047 +137059,1096,on dvr,1309192489 +137059,1096,secrets,1309546050 +137059,1096,wartime,1309535916 +137059,1097,National Film Registry,1229971333 +137059,1097,on dvr,1377202637 +137059,1100,cars,1172325431 +137059,1103,Annemari,1356895548 +137059,1103,memasa's movies,1401214162 +137059,1103,National Film Registry,1230754682 +137059,1104,National Film Registry,1228241298 +137059,1111,beautifully filmed,1241187308 +137059,1111,cdon,1204924208 +137059,1111,Good Documentary,1241187315 +137059,1111,Great score,1241187295 +137059,1111,my shopping list,1378035149 +137059,1117,Down syndrome,1282059987 +137059,1120,wheelchair,1220962402 +137059,1127,memasa's movies,1308831891 +137059,1127,To See,1206798072 +137059,1129,nocturnal,1249377977 +137059,1136,british comedy,1241791691 +137059,1147,library,1217080452 +137059,1148,dogs,1214731402 +137059,1148,short,1214731435 +137059,1148,Wallace and Gromit,1230326373 +137059,1161,controversial,1241186203 +137059,1161,extraordinary,1241186180 +137059,1161,otherness,1177363815 +137059,1161,vertically challenged people,1192205297 +137059,1172,To See,1232898659 +137059,1173,art house,1241193866 +137059,1173,Beautiful use of color,1241193904 +137059,1173,dark comedy,1241193868 +137059,1173,decadent,1241193909 +137059,1173,don't eat while watching,1234800837 +137059,1173,food/cooking?,1234825368 +137059,1173,irreverent,1241193991 +137059,1173,lavish,1241193991 +137059,1173,LOVERS ON THE LAM,1241193875 +137059,1173,male nudity,1234798910 +137059,1173,meaty,1241193881 +137059,1173,memasa's movies,1309092439 +137059,1173,Nudity (Full Frontal - Notable),1234798852 +137059,1173,Nudity (Rear),1234798900 +137059,1173,Nudity (Topless - Notable),1234798705 +137059,1173,pigs,1234800689 +137059,1173,red,1234800444 +137059,1173,restaurant,1241193890 +137059,1173,See: Delicatessen,1234825523 +137059,1173,talky,1241193948 +137059,1173,To See,1220992794 +137059,1173,toilet humor,1241193898 +137059,1175,alternate reality,1241268029 +137059,1175,apartment,1198319413 +137059,1175,atmospheric,1241268055 +137059,1175,Black comedy,1241268024 +137059,1175,clowns,1305725268 +137059,1175,fictional post-war France,1241268016 +137059,1175,janitor,1323716107 +137059,1175,memasa's movies,1308834454 +137059,1175,postwar,1241268022 +137059,1175,sewer,1216567455 +137059,1175,water,1305725235 +137059,1176,memasa's movies,1377425402 +137059,1176,Nudity (Topless - Notable),1403697497 +137059,1178,National Film Registry,1230752298 +137059,1178,on dvr,1226872729 +137059,1183,based on a book,1170868251 +137059,1183,desert,1360315140 +137059,1183,library,1233150914 +137059,1183,library vhs,1233150922 +137059,1183,Netflix Finland,1360230523 +137059,1183,nurse,1233151050 +137059,1183,patient,1233151394 +137059,1183,Sahara,1360315125 +137059,1184,insularity,1250867760 +137059,1184,island,1250684874 +137059,1184,light,1250867062 +137059,1184,Nudity (Topless),1250867105 +137059,1184,PROSTITUTES,1250867091 +137059,1184,smoking,1250937346 +137059,1184,soldier,1250867306 +137059,1184,wartime,1250867617 +137059,1184,WOMEN DURING WARTIME,1250867365 +137059,1185,cdon,1232797500 +137059,1185,cerebral palsy,1232797340 +137059,1185,library,1221344976 +137059,1186,husband-wife relationship,1353508787 +137059,1186,infidelity,1353517657 +137059,1186,lawyers,1353508910 +137059,1186,lies,1353509001 +137059,1186,National Film Registry,1230755380 +137059,1186,no nudity,1353508776 +137059,1186,sister sister relationship,1353508894 +137059,1186,video camera,1353509024 +137059,1186,videotape,1353509015 +137059,1189,National Film Registry,1228239825 +137059,1189,Netflix Finland,1375431267 +137059,1190,abduction,1243534509 +137059,1190,ACTOR'S LIFE,1243533770 +137059,1190,mentally disturbed rejoining society,1243534042 +137059,1190,movie business,1243533761 +137059,1190,movies about movies,1243534422 +137059,1190,my shopping list,1378035716 +137059,1190,Nudity (Topless - Notable),1243533852 +137059,1190,sex scene,1243533911 +137059,1190,stockholm syndrome,1243533784 +137059,1190,wheelchair,1243534433 +137059,1192,Teddy Award,1217514946 +137059,1193,National Film Registry,1230752072 +137059,1193,overrated,1241791739 +137059,1193,stereotypes,1241791715 +137059,1196,memasa's movies,1365699125 +137059,1197,bride,1355669610 +137059,1197,Netflix Finland,1355574620 +137059,1197,princess,1355669592 +137059,1197,To See,1221422011 +137059,1198,National Film Registry,1230754606 +137059,1199,angel,1230420193 +137059,1199,Dream Sequence,1230420262 +137059,1199,dreams,1230420273 +137059,1199,memasa's movies,1365158447 +137059,1199,mother-son relationship,1230421476 +137059,1199,Nudity (Rear),1230423456 +137059,1199,See: Mon oncle,1230420859 +137059,1199,surveillance,1230420251 +137059,1199,workplace,1230420286 +137059,1200,Alien Quadrilogy,1352926935 +137059,1200,egg,1352990161 +137059,1200,girl,1352990220 +137059,1200,memasa's movies,1320000581 +137059,1200,planet,1353002946 +137059,1200,queen,1353007714 +137059,1200,space colony,1353007633 +137059,1201,Annemari,1332669777 +137059,1201,Dollars Trilogy,1345970980 +137059,1201,gold,1356198918 +137059,1201,money,1356198918 +137059,1203,all-male cast,1338562958 +137059,1203,directorial debut,1338563189 +137059,1203,justice,1338563213 +137059,1203,knives,1338815398 +137059,1203,murder,1338563125 +137059,1203,my shopping list,1380635468 +137059,1203,National Film Registry,1228241836 +137059,1203,on dvr,1323902884 +137059,1203,one room,1353517571 +137059,1204,National Film Registry,1230749406 +137059,1204,Netflix Finland,1394879167 +137059,1204,To See,1203883936 +137059,1206,on computer,1227611605 +137059,1207,National Film Registry,1228239310 +137059,1208,Heart of Darkness,1232815246 +137059,1208,memasa's movies,1320008911 +137059,1208,National Film Registry,1229967220 +137059,1209,library,1244296199 +137059,1210,memasa's movies,1365699143 +137059,1211,circus,1309801278 +137059,1211,mostly black and white,1309801190 +137059,1211,on dvr,1309193901 +137059,1212,Golden Palm,1214149438 +137059,1213,memasa's movies,1320924761 +137059,1213,National Film Registry,1230731433 +137059,1213,Netflix Finland,1355572423 +137059,1214,Alien Quadrilogy,1352926894 +137059,1214,cats,1352973302 +137059,1214,cool design,1352916429 +137059,1214,egg,1352979547 +137059,1214,memasa's movies,1319986759 +137059,1214,National Film Registry,1229966479 +137059,1214,TRAPPED OR CONFINED,1352973195 +137059,1215,To See,1240200319 +137059,1217,16th century,1273424007 +137059,1217,brothers,1273424085 +137059,1217,King Lear,1273424051 +137059,1217,library,1218964541 +137059,1218,To See,1203341023 +137059,1219,bathroom,1219955805 +137059,1219,cellar,1219955738 +137059,1219,domineering mother,1219955585 +137059,1219,library vhs,1219955477 +137059,1219,memasa's movies,1377236309 +137059,1219,money,1377201121 +137059,1219,motel,1377201066 +137059,1219,mother-son relationship,1219955623 +137059,1219,National Film Registry,1230753472 +137059,1219,on dvr,1359191953 +137059,1219,shower scene,1377200845 +137059,1220,chase,1213117668 +137059,1220,feel good movie,1241872288 +137059,1220,out from prison,1210499426 +137059,1220,road movie,1241872232 +137059,1220,sunglasses,1219337004 +137059,1220,wired 50 greatest soundtracks,1241872278 +137059,1221,memasa's movies,1319986398 +137059,1221,National Film Registry,1230730927 +137059,1221,Netflix Finland,1373103184 +137059,1222,memasa's movies,1320000729 +137059,1222,Netflix Finland,1355574057 +137059,1223,cards,1230306599 +137059,1223,dogs,1199293269 +137059,1223,holiday,1199293074 +137059,1223,house of cards,1199293733 +137059,1223,Oscar Nominee,1199541980 +137059,1223,rats,1199293654 +137059,1223,robots,1199293598 +137059,1223,series,1199292888 +137059,1223,skiing,1199293686 +137059,1223,tea,1199293210 +137059,1223,very good for kids,1199293930 +137059,1223,Wallace and Gromit,1230326422 +137059,1225,To See,1243534836 +137059,1227,Annemari,1333809907 +137059,1227,gangsters,1345215146 +137059,1227,Nudity (Rear),1345215033 +137059,1227,Nudity (Topless - Brief),1345215016 +137059,1227,Prohibition,1345214995 +137059,1227,too long,1345219497 +137059,1228,1940's,1204923341 +137059,1228,1950s,1204923350 +137059,1228,1960s,1204923360 +137059,1228,Biography,1241478485 +137059,1228,black and white,1241478494 +137059,1228,brothers,1204922159 +137059,1228,cdon,1210437871 +137059,1228,classic,1204922882 +137059,1228,domestic violence,1204922924 +137059,1228,FAMILIES IN CRISIS,1204922775 +137059,1228,husband-wife relationship,1204922718 +137059,1228,jealousy,1204922863 +137059,1228,memasa's movies,1330428798 +137059,1228,National Film Registry,1230754562 +137059,1228,nightclub,1204923241 +137059,1228,sport:boxing,1241478467 +137059,1228,swimming pool,1204922147 +137059,1228,television,1204923227 +137059,1228,unhappy marriage,1204923258 +137059,1228,visceral,1241478529 +137059,1230,library vhs,1309893091 +137059,1230,National Film Registry,1229967086 +137059,1231,memasa's movies,1320924551 +137059,1232,art,1174938488 +137059,1232,austere,1241185100 +137059,1232,belief,1174938187 +137059,1232,existentialism,1241185040 +137059,1232,god,1174938445 +137059,1232,handcar,1200850848 +137059,1232,intellectualness,1174939058 +137059,1232,psychic,1207506277 +137059,1233,classic,1170938841 +137059,1233,claustrophobic,1328214352 +137059,1233,long,1189542914 +137059,1233,memasa's movies,1308832035 +137059,1233,underwater,1189433911 +137059,1234,library,1308765560 +137059,1234,National Film Registry,1228241417 +137059,1235,National Film Registry,1230731988 +137059,1237,actors,1219856320 +137059,1237,board game,1219854524 +137059,1237,church,1219854953 +137059,1237,crusaders,1219857537 +137059,1237,Death,1241195114 +137059,1237,epidemic,1219855265 +137059,1237,existentialism,1241195125 +137059,1237,flagellation,1219854980 +137059,1237,forest,1219859328 +137059,1237,god,1219857293 +137059,1237,grim,1219856158 +137059,1237,husband-wife relationship,1219857003 +137059,1237,knights,1219857550 +137059,1237,on dvr,1204297983 +137059,1237,painter,1219855861 +137059,1237,plague,1219854865 +137059,1237,religion,1219854965 +137059,1237,rural,1219856482 +137059,1237,seven,1220034407 +137059,1237,squire,1219859859 +137059,1237,visionary,1241195144 +137059,1237,witch hunt,1219860795 +137059,1240,memasa's movies,1319986516 +137059,1240,motorcycle,1178390603 +137059,1240,Netflix Finland,1375433239 +137059,1241,To See,1207384863 +137059,1241,virus,1223996530 +137059,1242,library vhs,1216502131 +137059,1242,racism,1240050875 +137059,1244,National Film Registry,1230750521 +137059,1245,To See,1221066808 +137059,1246,memasa's movies,1308833945 +137059,1246,Netflix Finland,1398971780 +137059,1246,teacher,1189776751 +137059,1247,ending,1439391713 +137059,1247,good acting,1439392495 +137059,1247,graduate,1439391563 +137059,1247,National Film Registry,1230731477 +137059,1247,notable soundtrack,1439391606 +137059,1247,older woman younger man,1439391667 +137059,1247,satirical,1439391620 +137059,1247,seduction,1439454457 +137059,1248,National Film Registry,1228239128 +137059,1249,Annemari,1345039822 +137059,1249,cult film,1345138120 +137059,1249,double life,1345133278 +137059,1249,fake suicide,1345193577 +137059,1249,pharmacy,1345193531 +137059,1250,bridge,1392315279 +137059,1250,jungle,1392315308 +137059,1250,National Film Registry,1228238146 +137059,1251,Netflix Finland,1354543102 +137059,1252,library,1308766135 +137059,1252,National Film Registry,1229969957 +137059,1253,National Film Registry,1229970717 +137059,1254,gold,1251442870 +137059,1254,library vhs,1213042914 +137059,1254,National Film Registry,1228238895 +137059,1254,Native Americans,1256294077 +137059,1254,on dvr,1220003884 +137059,1256,Annemari,1341575871 +137059,1256,National Film Registry,1229971303 +137059,1256,political,1341855729 +137059,1256,spy,1341855729 +137059,1256,spy team,1341855729 +137059,1258,hotel,1244307044 +137059,1258,library,1213100026 +137059,1258,memasa's movies,1320000407 +137059,1258,tricycle,1206817596 +137059,1259,dead body,1396899338 +137059,1259,Netflix Finland,1396862525 +137059,1259,railroad track,1396899368 +137059,1260,library vhs,1193565636 +137059,1262,library,1222010099 +137059,1262,motorcycle,1178365523 +137059,1262,on dvr,1309194862 +137059,1262,prisoners of war,1250955390 +137059,1262,tunnel escape,1329246572 +137059,1262,tunnels,1329246598 +137059,1263,friendship,1350494228 +137059,1263,hunting,1350494235 +137059,1263,library,1228999893 +137059,1263,National Film Registry,1229970847 +137059,1263,Pennsylvania,1350498644 +137059,1263,Russian roulette,1349265518 +137059,1265,library,1308765961 +137059,1265,National Film Registry,1230731683 +137059,1265,one day,1193662032 +137059,1265,To See,1213098584 +137059,1265,weatherman,1193662125 +137059,1266,memasa's movies,1320925054 +137059,1266,National Film Registry,1228240507 +137059,1266,PROSTITUTES,1352574095 +137059,1266,To See,1231058525 +137059,1266,widows/widowers,1352574036 +137059,1267,National Film Registry,1230750479 +137059,1267,on dvr,1354545510 +137059,1270,bullying,1353071133 +137059,1270,father-son relationship,1353071114 +137059,1270,inventor,1353071107 +137059,1270,memasa's movies,1320281932 +137059,1270,mother-son relationship,1353071123 +137059,1270,National Film Registry,1229967435 +137059,1270,powerful ending,1353071058 +137059,1271,aging,1189804304 +137059,1271,empowerment,1189804424 +137059,1271,ku klux klan,1189803250 +137059,1271,racism,1189803110 +137059,1271,tomboy,1231789228 +137059,1271,train,1191073585 +137059,1271,village,1189804342 +137059,1272,National Film Registry,1230752316 +137059,1274,library,1223721391 +137059,1274,motorcycle,1178359896 +137059,1274,superhuman,1273679248 +137059,1276,car wash,1379442345 +137059,1276,National Film Registry,1229970260 +137059,1276,nonconformity,1379442179 +137059,1276,on dvr,1366278706 +137059,1276,overrated,1379443433 +137059,1276,resilience,1379442301 +137059,1278,National Film Registry,1228235953 +137059,1279,library vhs,1197147349 +137059,1280,courtesan,1170961625 +137059,1280,To See,1205499086 +137059,1281,amnesia,1180546706 +137059,1281,barber,1219956830 +137059,1281,dictatorship,1216398267 +137059,1281,multiple roles,1241194720 +137059,1281,National Film Registry,1241194803 +137059,1281,political,1219956985 +137059,1281,satire,1241194793 +137059,1281,World War II,1219956768 +137059,1282,library,1345194135 +137059,1282,May 1,1219338514 +137059,1282,National Film Registry,1230027776 +137059,1282,Walpurgis Night,1206005778 +137059,1283,library,1352576058 +137059,1283,National Film Registry,1228237257 +137059,1284,National Film Registry,1229967890 +137059,1285,library,1218837405 +137059,1287,National Film Registry,1229967752 +137059,1288,National Film Registry,1228239605 +137059,1289,docventures,1398972742 +137059,1289,National Film Registry,1230749154 +137059,1291,motorcycle,1178389930 +137059,1293,Gandhi,1200668588 +137059,1293,library,1203860108 +137059,1293,Netflix Finland,1356883641 +137059,1293,nonviolence,1343128475 +137059,1293,trains,1343066131 +137059,1295,library,1221998451 +137059,1296,chick flick,1354369720 +137059,1298,adolescence,1205858604 +137059,1298,animated segments,1207388091 +137059,1298,artistic,1241267707 +137059,1298,blood,1205857817 +137059,1298,childhood,1205858524 +137059,1298,depressing,1205861756 +137059,1298,desert,1205858509 +137059,1298,dreamlike,1241267696 +137059,1298,family dynamics,1205855927 +137059,1298,flowers,1205898193 +137059,1298,foggy,1241267694 +137059,1298,grieving,1205855938 +137059,1298,groupie,1205861661 +137059,1298,hallucinatory,1241267691 +137059,1298,hotel,1205859243 +137059,1298,institutionalization,1205857495 +137059,1298,institutions,1205857483 +137059,1298,loneliness,1205858435 +137059,1298,loss,1205855801 +137059,1298,love,1205858825 +137059,1298,materialism,1205855651 +137059,1298,MISFITS AND OUTSIDERS,1206515656 +137059,1298,MUSICIAN'S LIFE,1205858849 +137059,1298,playground,1205856021 +137059,1298,poet,1205856114 +137059,1298,prejudice,1205858673 +137059,1298,racism,1205859370 +137059,1298,rape,1205861645 +137059,1298,rebellion,1205858762 +137059,1298,riot,1205852435 +137059,1298,school,1205856802 +137059,1298,social commentary,1205852795 +137059,1298,social control,1205852836 +137059,1298,Stoner Movie,1205851067 +137059,1298,surreal,1241267676 +137059,1298,swimming pool,1205852640 +137059,1298,symbolism,1205859055 +137059,1298,teacher,1205856817 +137059,1298,television,1205858427 +137059,1298,train,1205856090 +137059,1298,traumatic childhood,1205855680 +137059,1298,very little dialogue,1205898135 +137059,1298,visceral,1241267760 +137059,1298,wedding,1205858617 +137059,1300,1950s,1231789043 +137059,1300,absent fathers,1231788353 +137059,1300,boxing,1231788885 +137059,1300,child nudity,1232721694 +137059,1300,childhood,1241195738 +137059,1300,coming of age,1241195744 +137059,1300,dogs,1214735928 +137059,1300,flashbacks,1231789378 +137059,1300,friendship,1231788956 +137059,1300,grieving,1231788432 +137059,1300,library vhs,1191518747 +137059,1300,loss,1231852072 +137059,1300,mother-son relationship,1231788223 +137059,1300,Nudity (Topless - Notable),1231788548 +137059,1300,puberty,1231788765 +137059,1300,seasons,1231852058 +137059,1300,sexuality,1231788800 +137059,1300,soccer,1231788926 +137059,1300,teenagers,1231788628 +137059,1300,terminal illness,1231788409 +137059,1300,tomboy,1231789195 +137059,1300,uncle,1231788869 +137059,1300,village,1231788485 +137059,1304,library,1231058261 +137059,1304,National Film Registry,1229969523 +137059,1305,Beautiful Woman,1355419898 +137059,1305,my shopping list,1380635751 +137059,1305,Netflix Finland,1354641449 +137059,1305,searching,1355419884 +137059,1307,Netflix Finland,1390837303 +137059,1320,Alien Quadrilogy,1352926969 +137059,1320,memasa's movies,1320000611 +137059,1333,animal attacks,1230797188 +137059,1333,library,1219955105 +137059,1333,mother-son relationship,1219954874 +137059,1339,To See,1220216852 +137059,1340,Black comedy,1241191263 +137059,1340,blindness,1173288876 +137059,1340,bride,1192650862 +137059,1340,frankenstein,1241191255 +137059,1340,good sequel,1241191251 +137059,1340,Isolation,1173288649 +137059,1340,memasa's movies,1308831838 +137059,1340,morality,1173289313 +137059,1340,multifaceted,1241191236 +137059,1340,National Film Registry,1241191274 +137059,1340,oppression,1173299378 +137059,1340,perfect,1241191242 +137059,1340,religious symbolism,1173288841 +137059,1340,Scary Movies To See on Halloween,1241191245 +137059,1340,sequel,1181578579 +137059,1340,Universal monsters,1241191298 +137059,1343,on dvr,1347528314 +137059,1345,To See,1217518501 +137059,1348,google video,1217087726 +137059,1348,library vhs,1194220685 +137059,1350,To See,1214729731 +137059,1354,delusional,1192919876 +137059,1354,library vhs,1192109034 +137059,1354,male nudity,1192918466 +137059,1354,mental imbalance,1192984542 +137059,1354,Scotland,1192918496 +137059,1354,Sexualized violence,1192918420 +137059,1354,stick-in-the-mud,1192918691 +137059,1357,library,1243962084 +137059,1358,To See,1328782766 +137059,1373,Golden Raspberry (Worst Actor),1224360844 +137059,1380,library,1212941231 +137059,1380,Netflix Finland,1380598087 +137059,1387,memasa's movies,1320925247 +137059,1387,National Film Registry,1230748603 +137059,1387,To See,1221053278 +137059,1393,Netflix Finland,1373102587 +137059,1394,Annemari,1337082612 +137059,1394,infertility,1337711415 +137059,1394,motorcycle,1337711448 +137059,1406,library vhs,1224844689 +137059,1408,memasa's movies,1320924585 +137059,1414,easily confused with other movie(s) (title),1228152856 +137059,1416,Argentina,1200687801 +137059,1431,ninja,1203365091 +137059,1446,1980s,1202138352 +137059,1446,ARRANGED MARRIAGES,1202139579 +137059,1446,childhood,1202138341 +137059,1446,funeral,1202138293 +137059,1446,Going West,1202138421 +137059,1446,gravedigger,1202139545 +137059,1446,graveyard,1202138245 +137059,1446,guardian,1202139815 +137059,1446,historical,1202138191 +137059,1446,library,1191867618 +137059,1446,library vhs,1200671292 +137059,1446,mother-son relationship,1202139605 +137059,1446,movie theatre,1202138395 +137059,1446,musicians,1202138310 +137059,1446,Nudity (Topless - Brief),1202138373 +137059,1446,Oscar (Best Foreign Language Film),1241192200 +137059,1446,parrots,1202139878 +137059,1446,Soviet Union,1202139948 +137059,1446,spinning top,1202139256 +137059,1446,violin,1202138325 +137059,1466,1970s,1217627755 +137059,1466,based on a true story,1241479295 +137059,1466,boat,1217672491 +137059,1466,Christmas,1217628766 +137059,1466,clubs,1217630016 +137059,1466,FAMILIES IN CRISIS,1217629221 +137059,1466,FATHERS AND DAUGHTERS,1217629129 +137059,1466,FATHERS AND SONS,1217629194 +137059,1466,husband-wife relationship,1217629563 +137059,1466,lion,1217629740 +137059,1466,lions,1217629717 +137059,1466,Mafia,1241479338 +137059,1466,marriage,1217629271 +137059,1466,memasa's movies,1320924279 +137059,1466,mother daughter relationship,1217629544 +137059,1466,New York City,1217627938 +137059,1466,photograph,1217694050 +137059,1466,undercover cop,1172262104 +137059,1466,washed up,1217629837 +137059,1475,courtesan,1171904545 +137059,1483,bisexual,1328214655 +137059,1483,car accident,1245178569 +137059,1483,cars,1174604042 +137059,1483,David Cronenberg,1241192430 +137059,1483,death wish,1174604474 +137059,1483,disambiguation:Crash (1996/2004),1321301771 +137059,1483,distorted sense of reality,1174603898 +137059,1483,easily confused with other movie(s) (title),1241192453 +137059,1483,fetish,1174604314 +137059,1483,objectification of people,1174606053 +137059,1483,poor dialogue,1241192471 +137059,1483,prejudiced,1241192468 +137059,1483,sadomasochistic,1174604164 +137059,1483,vapid,1241192467 +137059,1485,adultery,1223659856 +137059,1485,airport,1223660154 +137059,1485,BREAKUPS AND DIVORCES,1223659809 +137059,1485,courtroom,1223659724 +137059,1485,father-son relationship,1223659836 +137059,1485,lies,1223659737 +137059,1485,marriage,1223659827 +137059,1485,rival suitor,1223674128 +137059,1485,WORK ETHICS,1223659919 +137059,1485,workplace,1223659877 +137059,1496,author:Leo Tolstoy,1197122392 +137059,1497,box office flop,1238155308 +137059,1497,Friday night movie,1241126505 +137059,1497,island,1238155565 +137059,1497,monks,1238155619 +137059,1497,pregnancy,1238155134 +137059,1497,product placement,1238155057 +137059,1497,ridiculous training sequence,1241126461 +137059,1497,tattoo,1238179810 +137059,1509,Teddy Award,1217514122 +137059,1527,memasa's movies,1320925684 +137059,1527,To See,1218834233 +137059,1541,camera obscura,1198322652 +137059,1554,bisexual,1237916230 +137059,1554,book,1237996527 +137059,1554,books,1237996551 +137059,1554,calligraphy,1237920442 +137059,1554,diary,1237916258 +137059,1554,fetish,1237973622 +137059,1554,Gay Character,1237973315 +137059,1554,interracial romance,1237973114 +137059,1554,library,1231111766 +137059,1554,library vhs,1231111766 +137059,1554,male nudity,1237916214 +137059,1554,Nudity (Full Frontal - Notable),1237916107 +137059,1554,Nudity (Topless - Notable),1238062380 +137059,1554,WRITER'S LIFE,1237996499 +137059,1568,Teddy Award,1217515395 +137059,1572,library vhs,1196417405 +137059,1584,To See,1239958340 +137059,1586,Golden Raspberry (Worst Actress),1224353857 +137059,1597,conspiracy,1213081460 +137059,1610,memasa's movies,1320000805 +137059,1617,corrupt cops,1384199983 +137059,1617,on dvr,1353585513 +137059,1619,Biography,1241213651 +137059,1619,book,1170940945 +137059,1619,great cinematography,1241213673 +137059,1619,history,1170939776 +137059,1619,mountain climbing,1170940323 +137059,1619,wartime,1170941442 +137059,1635,To See,1217523158 +137059,1641,strippers,1199552011 +137059,1645,memasa's movies,1320925332 +137059,1645,Netflix Finland,1356885514 +137059,1653,library,1230203354 +137059,1653,To See,1206533902 +137059,1673,1970s,1221992254 +137059,1673,1980s,1251475673 +137059,1673,cool design,1251475787 +137059,1673,dark comedy,1251475798 +137059,1673,ensemble cast,1251475519 +137059,1673,Friday night movie,1251490403 +137059,1673,great use of music,1251475582 +137059,1673,memasa's movies,1308831850 +137059,1673,Nudity (Topless - Notable),1251475562 +137059,1673,smoking,1251490386 +137059,1673,To See,1221987741 +137059,1676,Netflix Finland,1360758418 +137059,1680,male-female relationship,1324104701 +137059,1682,acting,1224890428 +137059,1682,ACTOR'S LIFE,1224854851 +137059,1682,advertising,1224853706 +137059,1682,BRIEF ENCOUNTERS,1224855587 +137059,1682,cerebral,1241792549 +137059,1682,constitution of individuality and identity,1224853560 +137059,1682,dark comedy,1224854014 +137059,1682,facades,1224853184 +137059,1682,FORBIDDEN LOVE,1224853758 +137059,1682,freedom,1224853210 +137059,1682,husband-wife relationship,1224855476 +137059,1682,insularity,1224853841 +137059,1682,island,1224853146 +137059,1682,loss,1224853246 +137059,1682,memasa's movies,1346854059 +137059,1682,phobias,1224853177 +137059,1682,product placement,1224853738 +137059,1682,social commentary,1224853892 +137059,1682,social control,1224853866 +137059,1682,strong director,1241792503 +137059,1682,Strong story,1241792500 +137059,1682,surveillance,1224853230 +137059,1682,television show,1224853684 +137059,1682,TV show,1224853693 +137059,1682,twins,1224854216 +137059,1684,See: The Hours,1217453732 +137059,1690,Alien Quadrilogy,1352927001 +137059,1690,memasa's movies,1320000654 +137059,1694,Pentecostal,1217077787 +137059,1704,memasa's movies,1308833428 +137059,1726,Golden Raspberry (Worst Actor),1224355743 +137059,1726,Golden Raspberry (Worst Picture),1224351732 +137059,1729,memasa's movies,1320924986 +137059,1729,Netflix Finland,1355575578 +137059,1730,on dvr,1323976081 +137059,1732,beetle,1215854630 +137059,1732,castration,1215854968 +137059,1732,father daughter relationship,1215854493 +137059,1732,FATHERS AND DAUGHTERS,1215854505 +137059,1732,porn industry,1215853592 +137059,1732,porn stars,1215853524 +137059,1732,ransom,1215853243 +137059,1732,veterans,1215853304 +137059,1732,volkswagen,1215854524 +137059,1732,wheelchair,1216466516 +137059,1734,library vhs,1233090209 +137059,1747,dialogue,1241480072 +137059,1747,election,1232954734 +137059,1747,fake,1232954922 +137059,1747,government,1233760573 +137059,1747,movie business,1233077576 +137059,1747,on dvr,1230987444 +137059,1747,president,1232954716 +137059,1747,sex scandal,1232954633 +137059,1747,topic:propaganda,1241480093 +137059,1748,Netflix Finland,1354543452 +137059,1748,stopping time,1364235285 +137059,1748,telekinesis,1364235999 +137059,1748,To See,1234619688 +137059,1757,accomplices,1204300092 +137059,1757,assassin,1204298885 +137059,1757,assassins,1204298897 +137059,1757,bar,1204299127 +137059,1757,debt collection,1204299860 +137059,1757,father-son relationship,1204299609 +137059,1757,great soundtrack,1204299395 +137059,1757,hit men,1206819663 +137059,1757,jukebox,1204299414 +137059,1757,love,1204298937 +137059,1757,masturbation,1204298377 +137059,1757,memasa's movies,1349084196 +137059,1757,motorcycle,1204299246 +137059,1757,pigs,1204299228 +137059,1757,product placement,1204904673 +137059,1757,selective mutism,1204299043 +137059,1757,smoking,1204299154 +137059,1757,urban,1204297849 +137059,1757,video camera,1204298356 +137059,1760,Golden Raspberry (Worst Actress),1224353812 +137059,1773,library vhs,1232899036 +137059,1784,on dvr,1346750199 +137059,1784,To See,1220216410 +137059,1801,mask,1224352031 +137059,1801,remake,1224352135 +137059,1804,heist,1320329168 +137059,1805,To See,1206282187 +137059,1809,art,1200072590 +137059,1809,bank robbery,1200072515 +137059,1809,bittersweet,1200072624 +137059,1809,BREAKUPS AND DIVORCES,1200231167 +137059,1809,cancer,1200072213 +137059,1809,deceased family member,1200072693 +137059,1809,disability,1200072299 +137059,1809,DOCTORS AND PATIENTS,1200072394 +137059,1809,ex-cop,1200072235 +137059,1809,family,1200072319 +137059,1809,flowers,1200072547 +137059,1809,guilt,1200072342 +137059,1809,hospital,1200072192 +137059,1809,husband-wife relationship,1200072168 +137059,1809,library vhs,1192117335 +137059,1809,loneliness,1200072276 +137059,1809,money,1200072475 +137059,1809,my shopping list,1378035988 +137059,1809,on the road,1200072643 +137059,1809,painter,1200072567 +137059,1809,snow,1200072657 +137059,1809,terminal illness,1200072255 +137059,1809,violent,1200072371 +137059,1809,visual,1200072608 +137059,1827,library,1243963939 +137059,1833,Golden Raspberry (Worst Actor),1224355685 +137059,1834,library vhs,1197199104 +137059,1844,Netflix Finland,1354542933 +137059,1853,Golden Raspberry (Worst Picture),1224325719 +137059,1873,library vhs,1221389764 +137059,1884,desert,1241864039 +137059,1884,hotel,1241864042 +137059,1884,psychedelic,1241863172 +137059,1884,road movie,1241863166 +137059,1888,blindfold,1224887439 +137059,1889,books,1198947703 +137059,1889,conscience,1198948147 +137059,1889,easily confused with other movie(s) (title),1241185976 +137059,1889,fashion clothing,1198947346 +137059,1889,hotel,1198947379 +137059,1889,moody,1241186041 +137059,1889,moral ambiguity,1198948058 +137059,1889,norway,1198947471 +137059,1889,Nudity (Topless),1198948126 +137059,1889,occupational accident,1198947586 +137059,1889,police,1198947426 +137059,1889,school,1198947403 +137059,1889,WRITER'S LIFE,1198947722 +137059,1907,"Christina Aguilera performs ""Reflection""",1172271985 +137059,1917,Golden Raspberry (Worst Actor),1224355581 +137059,1921,black and white,1169936406 +137059,1921,board game,1217672628 +137059,1921,existentialism,1241476897 +137059,1921,headache,1217672679 +137059,1921,my shopping list,1378035632 +137059,1921,Netflix Finland,1356884737 +137059,1921,New York City,1217672769 +137059,1925,National Film Registry,1228237726 +137059,1927,National Film Registry,1229966551 +137059,1929,National Film Registry,1230731509 +137059,1933,National Film Registry,1230749585 +137059,1935,National Film Registry,1230732515 +137059,1936,library,1238930371 +137059,1938,my shopping list,1379925706 +137059,1938,realistic,1391711377 +137059,1939,National Film Registry,1228237210 +137059,1941,library,1232513178 +137059,1941,library vhs,1232513185 +137059,1942,National Film Registry,1229966824 +137059,1942,remade,1229966799 +137059,1944,National Film Registry,1230730158 +137059,1945,National Film Registry,1255600029 +137059,1945,overrated,1255600015 +137059,1946,National Film Registry,1230750593 +137059,1947,Annemari,1338443931 +137059,1947,dance,1350835476 +137059,1947,interracial romance,1350835487 +137059,1947,library,1212942893 +137059,1947,National Film Registry,1228240369 +137059,1950,National Film Registry,1230748058 +137059,1952,bisexual,1201887409 +137059,1952,bus,1201887015 +137059,1952,childhood flashback,1201887122 +137059,1952,Dream Sequence,1201887434 +137059,1952,dreams,1214131649 +137059,1952,flashbacks,1201887104 +137059,1952,friendship,1201888672 +137059,1952,gay,1201887393 +137059,1952,Gay Cowboy,1201887355 +137059,1952,grandmother,1201887690 +137059,1952,incestuous,1201888560 +137059,1952,male prostitute,1201870014 +137059,1952,movie theatre,1201887805 +137059,1952,naivety,1201887646 +137059,1952,National Film Registry,1230750853 +137059,1952,New York City,1201870144 +137059,1952,Nudity (Rear),1201887213 +137059,1952,party,1201888808 +137059,1952,radio,1201887747 +137059,1952,smoking,1201888778 +137059,1952,Texan,1201886678 +137059,1952,wheelchair,1201887843 +137059,1953,National Film Registry,1230730046 +137059,1953,To See,1230121214 +137059,1954,memasa's movies,1320925496 +137059,1954,National Film Registry,1230754973 +137059,1954,simple,1352906836 +137059,1954,To See,1221053417 +137059,1960,communism,1249935146 +137059,1960,lavish,1250961139 +137059,1960,my shopping list,1378035673 +137059,1960,on dvr,1208036523 +137059,1961,library,1196512249 +137059,1964,on dvr,1365075812 +137059,1982,halloween,1356881577 +137059,1982,National Film Registry,1230731827 +137059,1982,Netflix Finland,1354643489 +137059,1991,child in peril,1244279975 +137059,1991,dolls,1244220985 +137059,1991,mother-son relationship,1244233502 +137059,1991,stupid but funny,1244220973 +137059,1991,Voodoo,1244279938 +137059,1992,dolls,1244221028 +137059,1993,dolls,1244221037 +137059,1994,child in peril,1206275070 +137059,1994,dogs,1206274695 +137059,1994,epilepsy warning,1214130248 +137059,1994,father daughter relationship,1206275204 +137059,1994,haunted house,1241478042 +137059,1994,mother daughter relationship,1206275186 +137059,1994,paranormal,1218048330 +137059,1994,smoking,1206274838 +137059,1994,spirits,1206274219 +137059,1994,storm,1206274278 +137059,1994,swimming pool,1206274756 +137059,1994,television,1206281754 +137059,1994,toys,1206274709 +137059,1997,priest,1219956233 +137059,2000,Netflix Finland,1375433488 +137059,2005,Netflix Finland,1375433535 +137059,2010,library vhs,1191866792 +137059,2010,subterranean,1368632720 +137059,2010,working class,1368632025 +137059,2011,electric guitar,1366555531 +137059,2011,gambling,1353433628 +137059,2011,memasa's movies,1320281941 +137059,2012,memasa's movies,1320281952 +137059,2019,my shopping list,1378035908 +137059,2019,seven,1217262396 +137059,2020,aristocracy,1233524154 +137059,2020,liaisons,1233575235 +137059,2020,on dvr,1227812208 +137059,2023,memasa's movies,1319986415 +137059,2023,Netflix Finland,1380598682 +137059,2025,lolita,1326024831 +137059,2028,memasa's movies,1320008237 +137059,2028,Oscar (Best Cinematography),1241791543 +137059,2028,Oscar (Best Directing),1241791546 +137059,2028,Oscar (Best Editing),1241791551 +137059,2028,Oscar (Best Sound),1241791560 +137059,2054,To See,1221051111 +137059,2058,hostage,1309433505 +137059,2058,on dvr,1309194966 +137059,2061,library vhs,1217678414 +137059,2066,National Film Registry,1230752146 +137059,2067,classic,1241267124 +137059,2067,epic,1241267130 +137059,2067,flowers,1241442579 +137059,2067,lavish,1241267137 +137059,2067,memasa's movies,1308832419 +137059,2067,Russian revolution,1241267144 +137059,2068,on dvr,1387726727 +137059,2075,To See,1206822476 +137059,2076,library,1218834423 +137059,2076,memasa's movies,1308834378 +137059,2102,National Film Registry,1228241453 +137059,2116,gardener,1215900539 +137059,2124,Bermuda Triangle,1200256564 +137059,2124,Butler,1200256320 +137059,2124,conjoined twins,1200255544 +137059,2124,doctors,1200255495 +137059,2124,electric chair,1200256732 +137059,2124,false identity,1200256031 +137059,2124,Family,1200255447 +137059,2124,food,1200255994 +137059,2124,golf,1200255448 +137059,2124,gothic,1200255703 +137059,2124,halloween,1200256628 +137059,2124,lawyers,1200254970 +137059,2124,model railroading,1200255956 +137059,2124,money,1200255403 +137059,2124,mother-son relationship,1200254957 +137059,2124,party,1200255675 +137059,2124,school play,1200255475 +137059,2124,secret door,1200256018 +137059,2124,statue,1200255415 +137059,2124,supernatural,1200256697 +137059,2124,sword fight,1200254943 +137059,2124,torture,1200256612 +137059,2124,undead,1200255343 +137059,2124,vault,1200256362 +137059,2130,National Film Registry,1229967279 +137059,2131,library,1243857987 +137059,2132,drinking,1311604123 +137059,2132,husband-wife relationship,1311604196 +137059,2132,infertility,1311605611 +137059,2132,professor,1311606268 +137059,2132,real-life married couple,1311610888 +137059,2136,National Film Registry,1230751964 +137059,2138,See: Pom Poko (a.k.a. The Raccoon War) (Heisei tanuki gassen pompoko),1229878353 +137059,2160,WITCHCRAFT,1180367790 +137059,2161,Netflix Finland,1375435085 +137059,2167,easily confused with other movie(s) (title),1233662249 +137059,2167,Netflix Finland,1386185694 +137059,2173,blindfold,1224885713 +137059,2174,attic,1356007869 +137059,2174,car accident,1356007998 +137059,2174,deceased family member,1356007770 +137059,2174,drowning,1356007973 +137059,2174,husband-wife relationship,1356008054 +137059,2174,miniaturization,1356007937 +137059,2174,Netflix Finland,1354545660 +137059,2176,based on a play,1382192991 +137059,2176,chest,1382104983 +137059,2176,experimental,1382103907 +137059,2176,homosexual undertones,1382104487 +137059,2176,on dvr,1381591352 +137059,2176,one room,1382103926 +137059,2176,party,1382103894 +137059,2176,seamless,1382103941 +137059,2176,strangulation,1382105089 +137059,2186,amusement park,1229940253 +137059,2186,homosexual undertones,1229939740 +137059,2186,mother-son relationship,1229940031 +137059,2186,over-the-top ending,1241213527 +137059,2186,tennis,1229939804 +137059,2186,To See,1224411899 +137059,2186,trains,1229939985 +137059,2194,library,1221568653 +137059,2194,memasa's movies,1320008285 +137059,2196,box office flop,1238155413 +137059,2201,on dvr,1323902689 +137059,2203,National Film Registry,1230755429 +137059,2231,library vhs,1228317323 +137059,2232,bad acting,1392916008 +137059,2232,cube,1392917204 +137059,2232,cult film,1392917282 +137059,2232,mathematics,1170874873 +137059,2232,mental disability,1392916286 +137059,2232,Netflix Finland,1355575220 +137059,2232,numbers,1217263073 +137059,2232,original,1392915974 +137059,2232,room,1392916068 +137059,2232,survival,1392919737 +137059,2232,TRAPPED OR CONFINED,1392917251 +137059,2232,traps,1392917263 +137059,2248,father daughter relationship,1353949336 +137059,2248,graduation,1353949452 +137059,2248,kickboxing,1354034074 +137059,2248,scholarship,1353949384 +137059,2248,taxes,1353949352 +137059,2252,easily confused with other movie(s) (title),1237919332 +137059,2258,ninja,1203365033 +137059,2268,on dvr,1338816519 +137059,2269,Golden Raspberry (Worst Picture),1224351476 +137059,2283,library vhs,1231608275 +137059,2288,Annemari,1351877394 +137059,2288,claustrophobic,1351944966 +137059,2288,flame thrower,1351944939 +137059,2289,cameo-fest,1241174585 +137059,2289,dry funny,1241174593 +137059,2289,movie business,1241174574 +137059,2289,satire,1241174635 +137059,2289,satire:Hollywood insiders,1241174629 +137059,2289,satirical,1241174622 +137059,2289,topic:Hollywood industry,1241174616 +137059,2291,antireligious,1191057704 +137059,2291,homogeneity,1190924603 +137059,2291,memasa's movies,1308831776 +137059,2291,Netflix Finland,1360758505 +137059,2291,xenophobia,1190918439 +137059,2300,National Film Registry,1230753435 +137059,2302,on dvr,1347900705 +137059,2303,National Film Registry,1230751440 +137059,2313,abjection,1177327698 +137059,2313,black and white,1241268119 +137059,2313,cruelty,1177328948 +137059,2313,deformity,1177326602 +137059,2313,England,1319934106 +137059,2313,freak show,1177329161 +137059,2313,history of disability,1177329110 +137059,2313,Joseph Merrick,1241268150 +137059,2313,London,1319934117 +137059,2313,memasa's movies,1308832401 +137059,2313,stylized,1241268132 +137059,2313,true story,1241268136 +137059,2313,Victorian era,1319934065 +137059,2315,dolls,1232726770 +137059,2318,aging,1200666995 +137059,2318,BREAKUPS AND DIVORCES,1200666319 +137059,2318,child abuse,1200668257 +137059,2318,closeted homosexual,1200667868 +137059,2318,dissociation,1200690706 +137059,2318,doctors,1200667966 +137059,2318,dysfunctional family,1200666919 +137059,2318,facades,1200668989 +137059,2318,fantasies,1200666793 +137059,2318,father-son relationship,1200666572 +137059,2318,grandparents,1200667400 +137059,2318,hedonist,1200690935 +137059,2318,immigrants,1200669788 +137059,2318,ironic,1200666459 +137059,2318,ironic title,1241212263 +137059,2318,library vhs,1196417517 +137059,2318,loneliness,1200668292 +137059,2318,marriage,1200666984 +137059,2318,masturbation,1200667287 +137059,2318,neighbors,1200666599 +137059,2318,normality,1200667354 +137059,2318,orgasm,1200668338 +137059,2318,pedophile,1200667159 +137059,2318,perverted,1200667674 +137059,2318,puberty,1200668057 +137059,2318,rape,1200668154 +137059,2318,relationships,1200666974 +137059,2318,salespeople,1200668395 +137059,2318,secrets,1200667370 +137059,2318,self-esteem,1200668017 +137059,2318,self-satisfied people,1200669411 +137059,2318,sexual abuse,1200668183 +137059,2318,sexual fantasy,1200688781 +137059,2318,sexuality,1200668107 +137059,2318,singer,1200667638 +137059,2318,single woman,1200667914 +137059,2318,sisters,1200666673 +137059,2318,story of one family,1200666826 +137059,2318,taxi driver,1200733557 +137059,2318,teacher,1200668306 +137059,2318,teacher student relationship,1200668318 +137059,2318,therapist,1200666551 +137059,2318,ugly duckling,1200670544 +137059,2318,unsociable people,1200669710 +137059,2318,vomit,1200668420 +137059,2318,vomit-inducing,1200669988 +137059,2318,workplace,1200667703 +137059,2318,WRITER'S LIFE,1200667825 +137059,2324,father-son relationship,1189716694 +137059,2324,maintaining illusion,1170945129 +137059,2324,memasa's movies,1308832916 +137059,2324,Reference to Aktion T4,1177326262 +137059,2329,male nudity,1210499610 +137059,2329,memasa's movies,1320000747 +137059,2329,out from prison,1210499397 +137059,2329,partially black and white,1241872827 +137059,2329,rape,1210499650 +137059,2329,siblings,1210499582 +137059,2329,skinhead,1210499486 +137059,2329,tattoo,1210499734 +137059,2329,video camera,1210499510 +137059,2330,To See,1213100534 +137059,2333,Netflix Finland,1355573829 +137059,2333,To See,1221394238 +137059,2334,Golden Raspberry (Worst Actor),1224355656 +137059,2348,library,1240199263 +137059,2353,Netflix Finland,1375436027 +137059,2355,acting,1206470394 +137059,2355,circus,1206470375 +137059,2355,coming of age,1206515310 +137059,2355,community,1206515220 +137059,2355,cultural customs and traditions,1206514937 +137059,2355,flying,1206514876 +137059,2355,food,1206514840 +137059,2355,insects,1206514413 +137059,2355,inventor,1206515174 +137059,2355,nature,1206514464 +137059,2355,royalty,1206514611 +137059,2357,alcoholism,1201440134 +137059,2357,Brazil,1201439603 +137059,2357,bus,1201800959 +137059,2357,child selling,1201440108 +137059,2357,christians,1201440186 +137059,2357,cynicism,1201535021 +137059,2357,letters,1201439779 +137059,2357,library vhs,1193347217 +137059,2357,literacy,1202398849 +137059,2357,literate,1201439501 +137059,2357,loner,1201440332 +137059,2357,orphans,1201439834 +137059,2357,Rio de Janeiro,1201439525 +137059,2357,road trip,1241191867 +137059,2357,spinning top,1202139298 +137059,2357,teacher,1201439388 +137059,2357,trains,1201439983 +137059,2357,UNLIKELY FRIENDSHIPS,1201439956 +137059,2360,chefs,1203194768 +137059,2360,estate,1203194405 +137059,2360,FAMILY GATHERINGS,1203194269 +137059,2360,father-son relationship,1203194497 +137059,2360,forest,1203194936 +137059,2360,Freemason,1203194583 +137059,2360,letters,1203194952 +137059,2360,library vhs,1201822721 +137059,2360,male nudity,1203194515 +137059,2360,racism,1203194909 +137059,2360,secrets,1203194613 +137059,2360,siblings,1203194446 +137059,2360,speech,1203194623 +137059,2360,waitress,1203194803 +137059,2361,amateur film making,1309105305 +137059,2361,anus,1309106557 +137059,2361,birthday,1309105488 +137059,2361,black comedy,1309110676 +137059,2361,cannibalism,1309106286 +137059,2361,castration,1309105026 +137059,2361,disturbing,1309105342 +137059,2361,don't eat while watching,1309109078 +137059,2361,egg,1309105411 +137059,2361,excrement,1309104912 +137059,2361,fire,1309105712 +137059,2361,gross out,1309107287 +137059,2361,incest,1309104639 +137059,2361,kidnapping,1309107219 +137059,2361,low budget,1309105252 +137059,2361,male nudity,1309104583 +137059,2361,Nudity (Full Frontal - Notable),1309105120 +137059,2361,Nudity (Rear),1309105158 +137059,2361,Nudity (Topless - Notable),1309105107 +137059,2361,obesity,1309106588 +137059,2361,on dvr,1228714660 +137059,2361,oral sex,1309105537 +137059,2361,pubic hair,1309105097 +137059,2361,revenge,1309104947 +137059,2361,rivalry,1309105068 +137059,2361,sleaze,1309159936 +137059,2361,trailer home,1309105571 +137059,2361,transvestism,1309105201 +137059,2361,zoophilia,1309106132 +137059,2363,anti-war,1241191970 +137059,2363,giant monster,1241191981 +137059,2363,nuclear,1241191972 +137059,2363,radiation,1226573441 +137059,2366,animated segments,1244374455 +137059,2366,classic,1244323753 +137059,2366,damsel in distress,1244324974 +137059,2366,giant monster,1244323782 +137059,2366,gorilla,1244326465 +137059,2366,island,1244325849 +137059,2366,monster,1244326660 +137059,2366,National Film Registry,1244326669 +137059,2366,nature vs. civilization,1244325836 +137059,2366,on dvr,1230748872 +137059,2366,primitive peoples,1244326806 +137059,2366,puppetry,1244374519 +137059,2366,stereotypes,1244325527 +137059,2371,memasa's movies,1309092945 +137059,2384,pigs,1170920563 +137059,2391,airplane,1376252271 +137059,2391,money,1376249112 +137059,2396,memasa's movies,1391603841 +137059,2398,National Film Registry,1230750996 +137059,2402,archery,1241804785 +137059,2402,camp,1241804504 +137059,2402,Golden Raspberry (Worst Actor),1241804174 +137059,2402,Golden Raspberry (Worst Picture),1241804177 +137059,2402,jungle,1241804669 +137059,2402,loyalty vs. betrayal,1241805059 +137059,2402,torture,1241804861 +137059,2402,unintentionally funny,1241804986 +137059,2403,bad cop,1194124738 +137059,2403,memories,1241214024 +137059,2403,small town,1194124496 +137059,2403,special forces,1194124396 +137059,2403,war hero,1194124349 +137059,2404,Golden Raspberry (Worst Actor),1224361110 +137059,2406,1980s,1316791943 +137059,2411,Golden Raspberry (Worst Actor),1224361598 +137059,2420,Netflix Finland,1375433379 +137059,2423,boss,1229980163 +137059,2423,Classic,1241215375 +137059,2423,family comedy,1241215380 +137059,2423,jinxed character(s),1229979569 +137059,2423,neighbors,1229980364 +137059,2423,White Trash,1229979681 +137059,2427,library,1219164397 +137059,2450,Golden Raspberry (Worst Picture),1224326453 +137059,2455,EXPERIMENTS GONE AWRY,1367594649 +137059,2455,fly,1367594752 +137059,2455,insects,1367594725 +137059,2455,teleportation,1367594816 +137059,2455,To See,1217333202 +137059,2455,transformation,1367594709 +137059,2467,monastery,1358186635 +137059,2467,on dvr,1357399138 +137059,2467,setting:library,1358186607 +137059,2483,priest,1203919273 +137059,2483,To See,1203919444 +137059,2502,office,1241872677 +137059,2502,satire,1241872673 +137059,2502,workplace,1241872665 +137059,2503,Apple,1226099885 +137059,2503,blind,1226091974 +137059,2503,childhood,1226092027 +137059,2503,dysfunctional family,1226577415 +137059,2503,family dynamics,1226091867 +137059,2503,FATHERS AND DAUGHTERS,1226091961 +137059,2503,friendship,1226099929 +137059,2503,fundamentalism,1226099987 +137059,2503,gender,1226577624 +137059,2503,girls,1226092018 +137059,2503,house,1226092071 +137059,2503,ice cream,1226099843 +137059,2503,insularity,1226099516 +137059,2503,Isolation,1226099609 +137059,2503,letters,1226091850 +137059,2503,marriage,1226099869 +137059,2503,media,1226092054 +137059,2503,mirrors,1226099826 +137059,2503,neighbors,1226092089 +137059,2503,on dvr,1222103870 +137059,2503,overprotective parents,1226099422 +137059,2503,religion,1226099563 +137059,2503,saw (tool),1226099701 +137059,2503,social worker,1226091924 +137059,2503,TRAPPED OR CONFINED,1226092037 +137059,2503,twins,1226091987 +137059,2503,women,1226099542 +137059,2529,National Film Registry,1230753129 +137059,2529,Netflix Finland,1355573409 +137059,2530,doomsday,1170888898 +137059,2563,courtesan,1170961804 +137059,2571,anti-authoritarian,1221258804 +137059,2571,atmospheric,1241791419 +137059,2571,dystopia,1241791408 +137059,2571,heroine in tight suit,1241791396 +137059,2571,memasa's movies,1320007956 +137059,2571,Netflix Finland,1375437873 +137059,2571,product placement,1221259056 +137059,2571,virtual reality,1241791387 +137059,2572,Netflix Finland,1375435743 +137059,2585,abroad,1224513919 +137059,2585,airplane,1224509864 +137059,2585,Best romantic movie in years,1241090780 +137059,2585,bluish,1241090792 +137059,2585,childhood,1224515709 +137059,2585,circular,1241090805 +137059,2585,coincidences,1241090807 +137059,2585,coming of age,1224509847 +137059,2585,deceased family member,1224509763 +137059,2585,duality,1224509900 +137059,2585,Filmifriikki,1309359185 +137059,2585,Finland,1224509529 +137059,2585,Finns,1224509505 +137059,2585,FIRST LOVE,1224509712 +137059,2585,Julio Medem,1224513411 +137059,2585,juxtaposition,1224515881 +137059,2585,landscape,1224509794 +137059,2585,library vhs,1192744998 +137059,2585,male nudity,1224510225 +137059,2585,masturbation,1224510193 +137059,2585,multinational settings,1224513810 +137059,2585,my shopping list,1378035183 +137059,2585,nature,1224514057 +137059,2585,nonlinear,1224515565 +137059,2585,Nudity (Rear),1224510212 +137059,2585,play.com,1232899705 +137059,2585,polarity,1224516052 +137059,2585,school,1224510246 +137059,2585,seasons,1224511581 +137059,2585,SEXUAL AWAKENING,1224515968 +137059,2585,Spanish,1224513572 +137059,2585,teen relationships,1224786765 +137059,2585,teenage girl,1224786882 +137059,2585,teens,1224786872 +137059,2594,Beautiful Woman,1389908650 +137059,2594,face,1389951089 +137059,2594,mask,1389951089 +137059,2594,my shopping list,1389908772 +137059,2594,Netflix Finland,1389700531 +137059,2599,library,1240060719 +137059,2608,easily confused with other movie(s) (title),1217606556 +137059,2609,1900s,1241090365 +137059,2609,20th century,1241090367 +137059,2609,acrobat,1200242161 +137059,2609,adoption,1200242753 +137059,2609,apprenticeship,1200241295 +137059,2609,artist,1241090370 +137059,2609,boat,1200241099 +137059,2609,buddhism,1241090372 +137059,2609,carnival,1200242253 +137059,2609,child selling,1200240717 +137059,2609,cross dressing,1200241471 +137059,2609,cultural customs and traditions,1241090380 +137059,2609,deceased family member,1200240860 +137059,2609,gender discrimination,1200242869 +137059,2609,illness,1200241853 +137059,2609,Jail,1200242584 +137059,2609,library vhs,1198683160 +137059,2609,mask,1241090384 +137059,2609,monkey,1200240648 +137059,2609,offspring,1200419522 +137059,2609,opera,1200241337 +137059,2609,orphans,1200240640 +137059,2609,photograph,1200241741 +137059,2609,slave trade,1200241831 +137059,2609,stealing,1200241803 +137059,2609,street children,1200240990 +137059,2609,street performer,1200240624 +137059,2609,successor,1200419537 +137059,2609,sword,1200241191 +137059,2609,temple,1200241074 +137059,2612,Beautiful Woman,1355233909 +137059,2612,my shopping list,1380634702 +137059,2612,National Film Registry,1230750933 +137059,2612,on dvr,1352972799 +137059,2612,restaurant,1355233768 +137059,2617,books,1201440569 +137059,2617,curse,1201440551 +137059,2617,priest,1201802666 +137059,2624,Annemari,1332842454 +137059,2624,my shopping list,1380635831 +137059,2629,letters,1214148778 +137059,2639,Golden Raspberry (Worst Actress),1224354792 +137059,2639,Golden Raspberry (Worst Picture),1224325913 +137059,2644,bats,1206006656 +137059,2644,castle,1206006529 +137059,2644,coffin,1206006586 +137059,2644,concert,1206006768 +137059,2644,count,1206006897 +137059,2644,DANGEROUS ATTRACTION,1206006785 +137059,2644,DOCTORS AND PATIENTS,1206006800 +137059,2644,good versus evil,1206036327 +137059,2644,hypnosis,1206048333 +137059,2644,l'homme fatal,1215850238 +137059,2644,loyalty vs. betrayal,1206006981 +137059,2644,May 1,1219338484 +137059,2644,mirrors,1206006911 +137059,2644,National Film Registry,1241188647 +137059,2644,on dvr,1224884805 +137059,2644,pendant,1206006454 +137059,2644,polygamy,1206006248 +137059,2644,sanitarium,1206006846 +137059,2644,Scary Movies To See on Halloween,1241188668 +137059,2644,seafaring,1206006751 +137059,2644,spiders,1206006695 +137059,2644,trailblazing,1241188641 +137059,2644,undead,1206006814 +137059,2644,universal monsters,1241188675 +137059,2644,vampire,1241188684 +137059,2644,Walpurgis Night,1206005646 +137059,2644,wolves,1206006863 +137059,2648,classic horror,1241195385 +137059,2648,frankenstein,1217156418 +137059,2648,imdb top 250,1241195397 +137059,2648,memasa's movies,1309091766 +137059,2648,National Film Registry,1241195400 +137059,2648,Scary Movies To See on Halloween,1241195411 +137059,2648,sequel better than original,1241195404 +137059,2648,trailblazing,1174402662 +137059,2651,baroness,1203199909 +137059,2651,classic horror,1241089418 +137059,2651,curse,1203199710 +137059,2651,death wish,1203200009 +137059,2651,diary,1203199928 +137059,2651,doctor-patient relationship,1203199672 +137059,2651,festivals,1203199943 +137059,2651,graveyard,1203199591 +137059,2651,gypsy,1203199803 +137059,2651,hospital,1203199702 +137059,2651,mayor,1203199909 +137059,2651,memasa's movies,1309091781 +137059,2651,police,1203199686 +137059,2651,ring,1203199625 +137059,2651,robbers,1203199607 +137059,2651,singing,1203199959 +137059,2651,universal monsters,1241089447 +137059,2651,werewolf,1241089451 +137059,2654,Even a man who is pure in heart and says his prayers by night may become a wolf when the wolfbane blooms and the autumn moon is bright.,1241130172 +137059,2654,fortune-telling,1175532593 +137059,2654,gypsy,1175531814 +137059,2654,memasa's movies,1309091598 +137059,2654,memorable,1175530980 +137059,2654,trailblazing,1241130183 +137059,2654,universal monsters,1241130195 +137059,2657,Catchy Score,1241874191 +137059,2657,cdon,1210436050 +137059,2657,comedy musical,1241874195 +137059,2657,cult classic,1241874202 +137059,2657,glbt,1189689951 +137059,2657,great soundtrack,1179770999 +137059,2657,my shopping list,1378035750 +137059,2657,National Film Registry,1230754980 +137059,2657,offbeat,1198363184 +137059,2657,otherness,1179772487 +137059,2657,transgender,1179762291 +137059,2657,trippy,1179855606 +137059,2657,unconventional,1179771369 +137059,2660,National Film Registry,1228239739 +137059,2662,To See,1221398305 +137059,2664,National Film Registry,1230748186 +137059,2671,ACTOR'S LIFE,1251971871 +137059,2671,on dvr,1233588372 +137059,2671,Overrated,1251874358 +137059,2671,typical julia roberts,1251874378 +137059,2671,wheelchair,1251971841 +137059,2677,concert,1227638323 +137059,2677,life,1227638249 +137059,2677,life in general,1227638258 +137059,2677,music business,1227638308 +137059,2677,MUSICIAN'S LIFE,1227638278 +137059,2677,old age,1227638374 +137059,2677,on dvr,1221395617 +137059,2686,antique,1203173551 +137059,2686,auction,1202397394 +137059,2686,audition,1203172981 +137059,2686,centuries,1202397594 +137059,2686,child prodigy,1202397890 +137059,2686,communists,1202398300 +137059,2686,concert,1202398081 +137059,2686,DEATH OF A SPOUSE,1203195518 +137059,2686,fortune-telling,1202397624 +137059,2686,gypsy,1203173106 +137059,2686,heart problems,1202398065 +137059,2686,hotel,1203173576 +137059,2686,inspiration,1202398140 +137059,2686,legacy,1203173241 +137059,2686,letters,1202398175 +137059,2686,library vhs,1192971196 +137059,2686,monastery,1203172800 +137059,2686,monks,1202397874 +137059,2686,multinational settings,1202397940 +137059,2686,muse,1203173163 +137059,2686,musicians,1202397959 +137059,2686,orphanage,1202397672 +137059,2686,orphans,1202397737 +137059,2686,red,1202398197 +137059,2686,renovation,1203173454 +137059,2686,soulful,1203172945 +137059,2686,teacher,1202397979 +137059,2686,teacher student relationship,1203172964 +137059,2686,violin,1201890344 +137059,2686,woodworking,1202397536 +137059,2686,WRITER'S LIFE,1203173126 +137059,2691,library vhs,1250870561 +137059,2692,animated segments,1289400411 +137059,2692,library,1220088593 +137059,2694,Golden Raspberry (Worst Actor),1224355510 +137059,2700,on dvr,1257181995 +137059,2701,Golden Raspberry (Worst Picture),1224351843 +137059,2701,library vhs,1205496156 +137059,2701,mad scientist,1216467381 +137059,2701,wheelchair,1216467366 +137059,2701,wheelchair badass,1216467315 +137059,2704,library,1222001112 +137059,2706,MILF,1175372568 +137059,2707,on dvr,1385493469 +137059,2710,feels like home made super scary,1241872027 +137059,2710,Golden Raspberry (Worst Actress),1224353760 +137059,2710,low budget,1241872206 +137059,2710,video camera,1241871992 +137059,2712,cdon,1232808031 +137059,2712,mask,1200743020 +137059,2712,real-life married couple,1218959956 +137059,2712,sexual fantasy,1221141724 +137059,2716,Netflix Finland,1354542446 +137059,2718,mentally impaired,1207384331 +137059,2727,ballet,1231432490 +137059,2727,boxing,1231432447 +137059,2727,chase,1231432908 +137059,2727,dancing,1231432479 +137059,2727,mannequin,1231432689 +137059,2727,neighbors,1231432459 +137059,2727,on dvr,1227611690 +137059,2727,short,1228319181 +137059,2727,washed up,1231442585 +137059,2728,library,1231058386 +137059,2729,library vhs,1210451514 +137059,2729,lolita,1326024813 +137059,2730,box office flop,1375894801 +137059,2730,cinematographer:John Alcott,1241188329 +137059,2730,lavish,1241188318 +137059,2730,memasa's movies,1375542251 +137059,2730,narrated,1174064372 +137059,2730,Oscar (Best Cinematography),1241188337 +137059,2730,RISE AND FALL STORIES,1328214079 +137059,2730,scheme,1174064304 +137059,2731,library,1259410033 +137059,2732,memasa's movies,1393865276 +137059,2745,Netflix Finland,1374407374 +137059,2747,library vhs,1193951120 +137059,2757,1930s,1181564675 +137059,2757,ACTOR'S LIFE,1181565585 +137059,2757,asylum,1198333542 +137059,2757,domineering mother,1198333573 +137059,2757,electric shocks,1181564869 +137059,2757,electroshock therapy,1198333404 +137059,2757,Hollywood,1181564643 +137059,2757,lobotomy,1181564886 +137059,2757,mental hospital,1181564838 +137059,2757,normality,1181564973 +137059,2757,Nudity (Topless - Brief),1181578997 +137059,2757,psychiatry,1181564750 +137059,2757,the lobotomy was never fully substantiated,1181585471 +137059,2757,thrilling,1181585774 +137059,2757,true story,1241128283 +137059,2761,"""Duck and cover!""",1353527318 +137059,2761,Atomic bomb,1353527332 +137059,2761,metal,1353527276 +137059,2762,memasa's movies,1308831979 +137059,2775,easily confused with other movie(s) (title),1234602192 +137059,2775,gay,1171119200 +137059,2791,Netflix Finland,1380598387 +137059,2797,female director,1385659020 +137059,2810,To See,1204295706 +137059,2827,pregnancy,1246624064 +137059,2843,drugs,1197305256 +137059,2843,Family,1197305256 +137059,2843,forced marriage,1197304758 +137059,2843,gambling,1197305256 +137059,2843,gypsy,1241183725 +137059,2843,library vhs,1195911530 +137059,2843,Louis I think this is the beginning of a beautiful friendship,1223806854 +137059,2843,madcap,1241183673 +137059,2843,memasa's movies,1372005054 +137059,2843,NOTHING GOES RIGHT,1241183753 +137059,2843,quirky,1241183676 +137059,2843,train,1197304873 +137059,2843,upbeat,1241183684 +137059,2843,vivacious,1241183690 +137059,2843,witty,1241183696 +137059,2858,library,1232662266 +137059,2858,library vhs,1232662256 +137059,2858,memasa's movies,1377236276 +137059,2871,bow & arrow,1354045127 +137059,2871,canoeing,1354045074 +137059,2871,homosexual rape,1354044863 +137059,2871,National Film Registry,1230752499 +137059,2871,rape,1354044850 +137059,2871,water,1354043137 +137059,2871,wilderness,1354042993 +137059,2872,To See,1221050488 +137059,2890,Netflix Finland,1375438087 +137059,2905,based on a book,1244293571 +137059,2905,library,1212943755 +137059,2908,female director,1372358779 +137059,2908,library,1221395099 +137059,2912,out from prison,1244292309 +137059,2912,revenge,1255435225 +137059,2912,unusual editing,1255435253 +137059,2917,library,1218965609 +137059,2918,Netflix Finland,1382976345 +137059,2918,one day,1383505891 +137059,2927,BRIEF ENCOUNTERS,1214148421 +137059,2932,library,1308766252 +137059,2932,National Film Registry,1229970770 +137059,2935,National Film Registry,1230749186 +137059,2936,National Film Registry,1228241205 +137059,2947,gold,1357744453 +137059,2947,on dvr,1353585335 +137059,2950,Golden Raspberry (Worst Actress),1224354872 +137059,2950,island,1213823159 +137059,2951,Dollars Trilogy,1345970578 +137059,2952,To See,1216578596 +137059,2959,fight club,1323972920 +137059,2959,memasa's movies,1308833751 +137059,2959,peer support,1218047840 +137059,2966,Annemari,1356268528 +137059,2966,library vhs,1196419170 +137059,2968,Netflix Finland,1355574933 +137059,2968,To See,1240037095 +137059,2970,dreamer,1183242503 +137059,2970,lavish,1241184941 +137059,2970,memasa's movies,1308833033 +137059,2970,OBSESSIVE QUESTS,1241184946 +137059,2970,personality disorder,1241184951 +137059,2971,Annemari,1334221865 +137059,2971,National Film Registry,1229966619 +137059,2972,library vhs,1212296965 +137059,2984,motorcycle,1178361960 +137059,2985,Netflix Finland,1375437766 +137059,2987,Netflix Finland,1375433432 +137059,2987,rabbits,1223720638 +137059,2997,body/gender-switch,1241791827 +137059,2997,constitution of individuality and identity,1239992073 +137059,2997,head movie,1241791851 +137059,2997,library,1215938321 +137059,2997,madcap,1241791843 +137059,2997,memasa's movies,1351874634 +137059,2997,puppetry,1244374629 +137059,3000,curse,1198349081 +137059,3000,forest,1229880747 +137059,3000,princess,1189529154 +137059,3000,See: Pom Poko (a.k.a. The Raccoon War) (Heisei tanuki gassen pompoko),1229880778 +137059,3002,memasa's movies,1308832256 +137059,3002,on the battlefield of life itself,1183553915 +137059,3011,on dvr,1338625518 +137059,3019,To See,1229351884 +137059,3020,going postal,1241267631 +137059,3020,Netflix Finland,1375438185 +137059,3020,obsession,1184013274 +137059,3022,19th century,1200850062 +137059,3022,acrobat,1200850283 +137059,3022,Best Performance: Buster Keaton as Johnny Gray,1241188000 +137059,3022,cannon,1200850260 +137059,3022,Civil War,1200850517 +137059,3022,civilians at war,1200850526 +137059,3022,cycling,1200850133 +137059,3022,farce,1241188210 +137059,3022,forest,1200850573 +137059,3022,Funny as Hell,1241188020 +137059,3022,great stunts,1241188197 +137059,3022,handcar,1200850765 +137059,3022,library,1192107352 +137059,3022,memasa's movies,1343914879 +137059,3022,National Film Registry,1241188032 +137059,3022,rescue,1200850550 +137059,3022,spies,1200857308 +137059,3022,thunderstorm,1200850435 +137059,3022,train,1200850013 +137059,3030,Over the top,1241193694 +137059,3038,National Film Registry,1230752566 +137059,3052,angel,1221045304 +137059,3052,Catholicism,1221042521 +137059,3052,male nudity,1221053657 +137059,3052,memasa's movies,1308833550 +137059,3053,memasa's movies,1309092638 +137059,3075,apartment,1234382714 +137059,3075,hallucinatory,1241182177 +137059,3075,library,1229607938 +137059,3075,loneliness,1234382954 +137059,3075,sisters,1234382759 +137059,3077,To See,1216465634 +137059,3081,library,1244309072 +137059,3081,library vhs,1244309049 +137059,3083,GLBT,1241871705 +137059,3089,coming of age,1250936867 +137059,3089,cycling,1220087061 +137059,3089,economic depression,1251475738 +137059,3089,father-son relationship,1250551453 +137059,3089,fortune-telling,1250852029 +137059,3089,library,1249944027 +137059,3089,my shopping list,1380634733 +137059,3089,OBSESSIVE QUESTS,1250937435 +137059,3089,postwar,1250935787 +137059,3089,searching,1250937215 +137059,3089,thieves,1250551527 +137059,3089,unemployment,1250935824 +137059,3089,working class,1250618359 +137059,3091,library,1212943685 +137059,3093,library,1352575090 +137059,3095,Annemari,1354459666 +137059,3095,National Film Registry,1228237367 +137059,3097,National Film Registry,1230755607 +137059,3101,Erotic Thriller,1215900015 +137059,3101,memasa's movies,1309174109 +137059,3101,rabbits,1223720752 +137059,3101,stalker,1309174205 +137059,3105,on dvr,1357986698 +137059,3105,To See,1251020990 +137059,3114,dolls,1232726899 +137059,3127,library vhs,1192989053 +137059,3132,library,1209673911 +137059,3146,amputee,1309271278 +137059,3146,fish,1309271098 +137059,3146,giant,1309271386 +137059,3146,gigolo,1309271172 +137059,3146,male nudity,1309271338 +137059,3146,male prostitute,1309271052 +137059,3146,narcolepsy,1309271498 +137059,3146,obesity,1309271409 +137059,3146,on dvr,1309195048 +137059,3146,prostitution,1309271262 +137059,3146,Tourette syndrome,1309271562 +137059,3147,1930s,1218991159 +137059,3147,death row,1218991467 +137059,3147,electric chair,1218991280 +137059,3147,execution,1218990613 +137059,3147,FISH OUT OF WATER,1218994065 +137059,3147,guard,1218991066 +137059,3147,healing,1218993988 +137059,3147,husband-wife relationship,1218994163 +137059,3147,library,1218801472 +137059,3147,life,1218990942 +137059,3147,long,1218989990 +137059,3147,longwinded,1241872903 +137059,3147,male nudity,1218994432 +137059,3147,mouse,1218993462 +137059,3147,old age,1218990912 +137059,3147,otherness,1218995093 +137059,3147,overrated,1241872890 +137059,3147,racism,1218994282 +137059,3147,tattoo,1218994220 +137059,3147,too long,1218990051 +137059,3147,WORK ETHICS,1218994515 +137059,3148,library,1198939127 +137059,3148,on dvr,1262882823 +137059,3148,orphanage,1262882864 +137059,3152,National Film Registry,1230749355 +137059,3152,sexuality,1388347815 +137059,3155,19th century,1232984663 +137059,3155,Annemari,1364651631 +137059,3155,based on a book,1232984561 +137059,3155,based on a true story,1232984818 +137059,3155,box office flop,1232984709 +137059,3155,costume drama,1232984754 +137059,3155,diary,1232984635 +137059,3155,History,1232984691 +137059,3155,Siam,1192453044 +137059,3157,adoption,1230306062 +137059,3157,cats,1230306764 +137059,3157,cheesy,1241213712 +137059,3157,miniatures,1230306981 +137059,3157,mouse,1241213717 +137059,3158,library,1245194327 +137059,3159,library vhs,1230028072 +137059,3159,updated classics,1230113576 +137059,3165,yakuza,1207495494 +137059,3168,library,1220045712 +137059,3168,motorcycle,1178357570 +137059,3168,National Film Registry,1230027087 +137059,3176,bisexuality,1319708569 +137059,3176,false identity,1319708633 +137059,3176,great cast,1319708410 +137059,3176,male nudity,1319708484 +137059,3186,Annemari,1360403409 +137059,3195,remake,1228240121 +137059,3198,based on a book,1221389224 +137059,3198,book was better,1357412909 +137059,3198,library,1219870672 +137059,3198,on dvr,1328625380 +137059,3201,National Film Registry,1230028324 +137059,3202,vertically challenged people,1244643145 +137059,3210,Annemari,1360314580 +137059,3210,National Film Registry,1230028202 +137059,3218,Teddy Award,1217514433 +137059,3224,based on a book,1228144396 +137059,3224,desert,1241091023 +137059,3224,haunting,1228144452 +137059,3224,insects,1228144579 +137059,3224,Male Female Relationship,1228144724 +137059,3224,male nudity,1228145206 +137059,3224,male-female relationship,1324104532 +137059,3224,metaphor,1241091010 +137059,3224,my shopping list,1378035532 +137059,3224,Nudity (Topless),1228145194 +137059,3224,on dvr,1204296744 +137059,3224,rural,1228145776 +137059,3224,TRAPPED OR CONFINED,1228144413 +137059,3224,traps,1228144430 +137059,3224,water,1228170571 +137059,3224,widows/widowers,1228152806 +137059,3246,library,1255254877 +137059,3257,Annemari,1329683579 +137059,3257,unsuspenseful,1330368716 +137059,3262,prequel,1350559775 +137059,3268,Golden Raspberry (Worst Actor),1224360595 +137059,3271,Annemari,1337872215 +137059,3271,Beautiful Woman,1339243753 +137059,3271,library vhs,1207382994 +137059,3271,mentally impaired,1207384255 +137059,3271,ranch,1339243848 +137059,3275,Boston,1177798982 +137059,3275,God-given right to kill?,1176831745 +137059,3275,memasa's movies,1308832468 +137059,3275,Mission From God,1210499313 +137059,3275,vigilantism,1241215301 +137059,3281,Teddy Award,1217515476 +137059,3285,island,1215960392 +137059,3285,library vhs,1215960657 +137059,3285,Netflix Finland,1355575483 +137059,3289,bureaucracy,1200239083 +137059,3289,child labor,1200239576 +137059,3289,childhood,1200236777 +137059,3289,city life,1200237591 +137059,3289,Coca-Cola,1200236845 +137059,3289,discipline,1200239893 +137059,3289,education,1200240195 +137059,3289,library vhs,1198437773 +137059,3289,mayor,1200240057 +137059,3289,MISSING PERSONS,1200237304 +137059,3289,poverty,1200236798 +137059,3289,restaurant,1200237416 +137059,3289,rural,1200236704 +137059,3289,school,1200236681 +137059,3289,shy person,1200239634 +137059,3289,singing,1200236726 +137059,3289,teacher,1200240336 +137059,3289,teacher student relationship,1200240347 +137059,3289,TEACHERS AND STUDENTS,1200240326 +137059,3289,teen,1200240260 +137059,3289,Television Industry,1200238875 +137059,3289,television show,1200238933 +137059,3289,ticket,1200237094 +137059,3289,village,1200240084 +137059,3306,acrobat,1206301433 +137059,3306,apes,1206301509 +137059,3306,chase,1206301423 +137059,3306,circus,1206301136 +137059,3306,clowns,1206301151 +137059,3306,father daughter relationship,1206301241 +137059,3306,felines,1206301277 +137059,3306,fortune-telling,1206301314 +137059,3306,gypsy,1206301354 +137059,3306,horses,1206301261 +137059,3306,library,1193400496 +137059,3306,mirrors,1206301162 +137059,3306,pickpocket,1206301218 +137059,3306,police,1206301184 +137059,3307,National Film Registry,1241188950 +137059,3309,dancing,1214733427 +137059,3309,dogs,1214731238 +137059,3309,restaurant,1214733405 +137059,3309,short,1214731190 +137059,3309,thieves,1214734377 +137059,3309,unemployment,1214731126 +137059,3310,angel,1214729947 +137059,3310,artists,1214729414 +137059,3310,authority,1214729290 +137059,3310,charity,1214730133 +137059,3310,devil,1214729606 +137059,3310,DOCTORS AND PATIENTS,1214729318 +137059,3310,Dream Sequence,1241127635 +137059,3310,illegitimate child,1214725469 +137059,3310,library,1191867067 +137059,3310,orphans,1214725373 +137059,3310,painter,1214729440 +137059,3310,stardom,1214730298 +137059,3310,stone throwing,1214729523 +137059,3310,To See,1203362557 +137059,3317,Bob Dylan,1241268477 +137059,3317,books,1230500832 +137059,3317,box office flop,1230562632 +137059,3317,cannabis,1230500451 +137059,3317,cars,1230501020 +137059,3317,creativity,1230560934 +137059,3317,dead dog,1230500733 +137059,3317,EXTRAMARITAL AFFAIRS,1230500943 +137059,3317,Friday night movie,1241268469 +137059,3317,Gay Character,1230500973 +137059,3317,Golden Globe winner,1241268452 +137059,3317,good casting,1241268454 +137059,3317,great script,1241268457 +137059,3317,HUSBANDS AND WIVES,1230561206 +137059,3317,love,1230500429 +137059,3317,MIDLIFE CRISES,1230501149 +137059,3317,on dvr,1205499243 +137059,3317,on the road,1230501012 +137059,3317,Pittsburgh,1230562037 +137059,3317,prodigies,1230562894 +137059,3317,professor,1230501357 +137059,3317,teacher as protagonist,1241268443 +137059,3317,teacher student relationship,1230500708 +137059,3317,university,1230500774 +137059,3317,weekend,1230501069 +137059,3317,WRITER'S LIFE,1230500430 +137059,3317,writers block,1347198642 +137059,3317,writing process,1230500430 +137059,3320,library vhs,1192306451 +137059,3325,Golden Raspberry (Worst Actress),1224353717 +137059,3328,1990s,1205246965 +137059,3328,assassin,1205248499 +137059,3328,bad premise,1205248215 +137059,3328,bears,1205248481 +137059,3328,birds,1205245787 +137059,3328,books,1205247621 +137059,3328,carrier pigeon,1205245753 +137059,3328,Cartoons,1205248429 +137059,3328,chess,1205247722 +137059,3328,dogs,1205247594 +137059,3328,flashbacks,1205264034 +137059,3328,guns,1205248892 +137059,3328,hip hop,1205247107 +137059,3328,ice cream,1205247666 +137059,3328,mobster,1205248256 +137059,3328,narrated,1205248448 +137059,3328,no swordfighting,1205248630 +137059,3328,pigeons,1205245775 +137059,3328,RZA (composer),1205247262 +137059,3328,television,1205263519 +137059,3328,To See,1203344228 +137059,3328,unintentionally funny,1205247789 +137059,3332,wolves,1203366377 +137059,3339,on dvr,1231860613 +137059,3339,To See,1221393610 +137059,3347,airplane,1345826684 +137059,3347,Annemari,1345280647 +137059,3347,eskimos,1345827068 +137059,3347,male nudity,1345826617 +137059,3347,mouse,1345826883 +137059,3347,survival,1345826925 +137059,3347,To See,1213164662 +137059,3350,National Film Registry,1230754638 +137059,3360,National Film Registry,1230732288 +137059,3362,Gay Lead Character,1309688423 +137059,3362,on dvr,1309193251 +137059,3362,one day,1309688342 +137059,3363,1960s,1212939378 +137059,3363,arcade,1212944516 +137059,3363,cars,1241442913 +137059,3363,coming of age,1212942373 +137059,3363,dance,1212940968 +137059,3363,Drive-In,1212940765 +137059,3363,FIRST LOVE,1212942010 +137059,3363,friendship,1212941020 +137059,3363,gangs,1212941857 +137059,3363,great soundtrack,1241442858 +137059,3363,hormonal,1212941397 +137059,3363,innocence,1239129370 +137059,3363,liquor store,1212942674 +137059,3363,love,1212942086 +137059,3363,moped,1212940673 +137059,3363,National Film Registry,1229966995 +137059,3363,nocturnal,1212941738 +137059,3363,police,1212940996 +137059,3363,radio,1212940588 +137059,3363,Reference to THX 1138,1212940190 +137059,3363,school,1212940954 +137059,3363,street race,1212942546 +137059,3363,wired 50 greatest soundtracks,1212940452 +137059,3364,National Film Registry,1230752421 +137059,3365,library,1352582265 +137059,3365,National Film Registry,1228237436 +137059,3374,National Film Registry,1229970586 +137059,3390,Golden Raspberry (Worst Actress),1224354519 +137059,3391,Golden Raspberry (Worst Actress),1224354495 +137059,3408,library vhs,1218835957 +137059,3408,Netflix Finland,1355494048 +137059,3412,19th century,1231853950 +137059,3412,animals,1231852441 +137059,3412,Animals die :(,1231854296 +137059,3412,based on a book,1231853915 +137059,3412,bears,1231770168 +137059,3412,British Columbia,1231853985 +137059,3412,childhood classics,1328214123 +137059,3412,Dream Sequence,1231852314 +137059,3412,family,1231853408 +137059,3412,honest,1241184258 +137059,3412,hunting,1231852482 +137059,3412,landscape,1231852273 +137059,3412,nature,1241184265 +137059,3412,on dvr,1230917051 +137059,3412,orphans,1231852379 +137059,3412,survival,1231853873 +137059,3412,SURVIVAL IN THE WILDERNESS,1231853888 +137059,3412,wilderness,1231852463 +137059,3415,childhood,1222099160 +137059,3415,library,1196421432 +137059,3415,mother-son relationship,1222099217 +137059,3415,poet,1222098856 +137059,3415,put me to sleep,1222098807 +137059,3415,stutter,1309622571 +137059,3415,stuttering,1228240651 +137059,3418,library,1220789013 +137059,3421,National Film Registry,1230751525 +137059,3421,To See,1221043153 +137059,3424,National Film Registry,1229971014 +137059,3430,DEATH OF A SPOUSE,1309892294 +137059,3430,on dvr,1309192590 +137059,3430,vigilante,1309892223 +137059,3435,confession,1392148005 +137059,3435,FEMMES FATALES,1392143847 +137059,3435,insurance,1392143825 +137059,3435,my shopping list,1379925656 +137059,3437,motorcycle,1178449112 +137059,3438,ninja,1203364939 +137059,3439,ninja,1203364954 +137059,3448,Annemari,1356464819 +137059,3456,blindness,1170887728 +137059,3461,library,1213136819 +137059,3461,Savage,1215959511 +137059,3462,anti-authoritarian,1241193628 +137059,3462,assembly line,1184248807 +137059,3462,factory,1228661850 +137059,3462,happy compilation of characteristic motifs,1241193608 +137059,3462,institutions,1230421088 +137059,3462,jinxed character(s),1241193616 +137059,3462,memasa's movies,1356706503 +137059,3462,National Film Registry,1241193611 +137059,3462,nervous breakdown,1184248485 +137059,3462,perseverance,1241193631 +137059,3462,riot,1184248522 +137059,3462,See: Mon oncle,1228661948 +137059,3462,social commentary,1184246868 +137059,3462,surveillance,1184246095 +137059,3462,working class,1184248411 +137059,3462,workplace,1230421052 +137059,3467,library,1233599082 +137059,3468,National Film Registry,1230732659 +137059,3469,on dvr,1323903184 +137059,3470,based on a book,1352464205 +137059,3470,friendship,1352393255 +137059,3470,hunters,1352393134 +137059,3470,library,1191867778 +137059,3470,nature,1352463879 +137059,3470,siberia,1352393169 +137059,3471,abduction,1344700931 +137059,3471,Annemari,1343739423 +137059,3471,National Film Registry,1229970136 +137059,3475,National Film Registry,1230753097 +137059,3481,library,1221994495 +137059,3481,library vhs,1221994488 +137059,3492,National Film Registry,1228241603 +137059,3495,motorcycle,1178361559 +137059,3498,Annemari,1336568445 +137059,3498,library,1230309733 +137059,3498,Turkey,1337863110 +137059,3503,alien contact,1175750977 +137059,3503,conscience,1175750030 +137059,3503,deceased family member,1221141949 +137059,3503,dreamlike,1241187386 +137059,3503,essence of love,1175750977 +137059,3503,ethics of science,1175750977 +137059,3503,hypnotic,1175750181 +137059,3503,memories,1175753131 +137059,3503,spaceships,1221141880 +137059,3503,Stanislav Lem,1241187375 +137059,3504,Annemari,1348927460 +137059,3504,cynical,1350752708 +137059,3504,library vhs,1308765764 +137059,3504,National Film Registry,1230751609 +137059,3504,television,1350752355 +137059,3508,memasa's movies,1320925128 +137059,3508,National Film Registry,1230752254 +137059,3508,Netflix Finland,1355573964 +137059,3535,PROSTITUTES,1393666515 +137059,3535,yuppies,1393666480 +137059,3545,1930s,1317251476 +137059,3545,abortion,1317252402 +137059,3545,based on a play,1317251424 +137059,3545,bisexual,1317252174 +137059,3545,cabaret,1317252126 +137059,3545,expatriate,1317251645 +137059,3545,glbt,1189690039 +137059,3545,love triangles,1317252259 +137059,3545,National Film Registry,1229969561 +137059,3545,Nazi Germany,1318024573 +137059,3545,Nazis,1317251390 +137059,3545,Oscar (Best Cinematography),1318024569 +137059,3545,Oscar (Best Directing),1317132468 +137059,3545,pre-war,1317252095 +137059,3545,pregnancy,1317252333 +137059,3545,transvestism,1317251800 +137059,3549,Netflix Finland,1354643274 +137059,3550,easily confused with other movie(s) (title),1234737170 +137059,3555,submarine,1255451708 +137059,3555,water,1255451722 +137059,3556,insularity,1173720314 +137059,3556,memasa's movies,1358872624 +137059,3556,visually appealing,1241267168 +137059,3559,artists,1182688579 +137059,3559,ballet,1182688602 +137059,3578,memasa's movies,1309092603 +137059,3590,motorcycle,1178361630 +137059,3593,Golden Raspberry (Worst Actor),1224355455 +137059,3593,Golden Raspberry (Worst Picture),1224352996 +137059,3598,easily confused with other movie(s) (title),1232788877 +137059,3624,princess,1184492259 +137059,3629,Alaska,1180531973 +137059,3629,amnesia,1180531756 +137059,3629,dance,1180531301 +137059,3629,Funny as hell,1241187436 +137059,3629,hunger,1224010722 +137059,3629,memasa's movies,1356706555 +137059,3629,narration of the 1945 version written and spoken by Chaplin himself,1180532376 +137059,3629,National Film Registry,1241187418 +137059,3629,New Year's Eve,1180531519 +137059,3629,RAGS TO RICHES,1241187421 +137059,3629,starving,1180531685 +137059,3634,on dvr,1344347377 +137059,3645,French New Wave,1241175219 +137059,3653,National Film Registry,1230027294 +137059,3665,mentally impaired,1207384057 +137059,3671,National Film Registry,1229968146 +137059,3671,on dvr,1230987472 +137059,3671,sheriff,1309450952 +137059,3671,singing,1309451604 +137059,3676,National Film Registry,1230027451 +137059,3677,divine vs. profane,1206514553 +137059,3677,divine vs. worldly,1241184197 +137059,3677,my shopping list,1378035278 +137059,3677,nature,1206514546 +137059,3677,photography,1241184218 +137059,3677,scenic,1197034592 +137059,3677,Stoner Movie,1185888516 +137059,3678,Netflix Finland,1370280813 +137059,3679,To See,1203365656 +137059,3681,Dollars Trilogy,1345970924 +137059,3682,motorcycle,1178368478 +137059,3683,library,1219842316 +137059,3684,audition,1230047017 +137059,3684,brother-brother relationship,1230046946 +137059,3684,brothers,1230046946 +137059,3684,Christmas,1230046959 +137059,3684,dogs,1230047077 +137059,3684,music,1230046983 +137059,3684,MUSICIAN'S LIFE,1230047006 +137059,3684,musicians,1230046996 +137059,3684,piano,1230043121 +137059,3684,waste of time,1241188282 +137059,3698,anti-hero,1244557977 +137059,3698,bad acting,1244642384 +137059,3698,campy,1244556084 +137059,3698,Dystopia,1244556105 +137059,3698,ex-cop,1244557401 +137059,3698,Friday night movie,1244557912 +137059,3698,good story & bad directing,1244557671 +137059,3698,heroine in tight suit,1244558011 +137059,3698,motorcycle,1244557596 +137059,3698,nostalgic,1244557695 +137059,3698,on dvr,1244203884 +137059,3698,reality TV,1244557725 +137059,3698,so bad it's good,1244557845 +137059,3698,survival,1244556139 +137059,3698,television,1244557742 +137059,3698,topic:propaganda,1244557580 +137059,3698,wrongful imprisonment,1244642449 +137059,3702,motorcycle,1178366826 +137059,3703,archery,1224424938 +137059,3703,bad acting,1241476778 +137059,3703,boomerang,1224424865 +137059,3703,car chase,1224423828 +137059,3703,desert,1224423902 +137059,3703,dogs,1224426770 +137059,3703,flame thrower,1224845369 +137059,3703,gyrocopter,1224839517 +137059,3703,heroism,1224424170 +137059,3703,mask,1224424366 +137059,3703,motorcycle,1178366867 +137059,3703,muscle,1224425267 +137059,3703,Nudity (Topless),1224424792 +137059,3703,on the road,1224426444 +137059,3703,slavery,1224426663 +137059,3703,Snakes,1224426844 +137059,3703,so gay!,1224424030 +137059,3703,tribal,1224423861 +137059,3703,trucks,1224423813 +137059,3703,unintentionally funny,1241476748 +137059,3704,airplane,1232897503 +137059,3704,cult of persona,1241214978 +137059,3704,energy,1232897196 +137059,3704,heroism,1232956576 +137059,3704,messiah,1241214969 +137059,3704,pigs,1232896761 +137059,3704,prejudice,1241214967 +137059,3704,vertically challenged people,1232897268 +137059,3720,easily confused with other movie(s) (title),1221234957 +137059,3720,library vhs,1241029236 +137059,3723,Oedipus Complex,1217605686 +137059,3729,National Film Registry,1230755481 +137059,3730,library,1219958686 +137059,3730,National Film Registry,1229970236 +137059,3732,easily confused with other movie(s) (title),1230730347 +137059,3735,Netflix Finland,1354542521 +137059,3736,cave,1369758927 +137059,3736,journalism,1216467932 +137059,3736,library,1209712522 +137059,3736,my shopping list,1378036388 +137059,3736,news media,1216467796 +137059,3736,newspaper theme,1216467808 +137059,3739,National Film Registry,1228238849 +137059,3741,desert,1366893093 +137059,3741,National Film Registry,1229967468 +137059,3741,on dvr,1357299604 +137059,3742,mutiny,1195847117 +137059,3742,Propaganda,1241186708 +137059,3751,library,1222354242 +137059,3761,drugs,1248194465 +137059,3788,antique,1227895870 +137059,3788,cars,1227895451 +137059,3788,mimes,1227895440 +137059,3788,models,1227895237 +137059,3788,murder,1227895355 +137059,3788,Nudity (Topless),1227895051 +137059,3788,on dvr,1224884586 +137059,3788,photographer,1227895153 +137059,3788,reality or imagination?,1227895337 +137059,3789,National Film Registry,1230752385 +137059,3793,facades,1203196699 +137059,3793,gifts,1203196678 +137059,3793,legislation,1203196852 +137059,3793,motorcycle,1203196354 +137059,3793,school,1203196708 +137059,3793,senators,1203197378 +137059,3793,statue,1203196838 +137059,3793,tolerance,1203196804 +137059,3793,United Nations,1203196756 +137059,3793,wheelchair,1203196087 +137059,3793,White House,1203197092 +137059,3805,motorcycle,1178361444 +137059,3824,library vhs,1193568968 +137059,3824,Netflix Finland,1356882564 +137059,3825,To See,1238224180 +137059,3827,memasa's movies,1320924461 +137059,3834,blindfold,1224889159 +137059,3845,To See,1221399523 +137059,3849,based on a book,1350573952 +137059,3849,mute,1350568525 +137059,3849,on dvr,1344863642 +137059,3849,serial killer,1350568938 +137059,3849,stairs,1232717337 +137059,3851,Movielens QuickPick,1205511440 +137059,3851,To See,1205511960 +137059,3855,affecting,1196870804 +137059,3855,anonymity,1196869747 +137059,3855,cafe,1196866903 +137059,3855,chemistry - not the scientific kind,1241088819 +137059,3855,color symbolism,1197053556 +137059,3855,dating,1196872330 +137059,3855,desire,1196868541 +137059,3855,gynocentric,1241088814 +137059,3855,hospital,1196871572 +137059,3855,hotel,1196867062 +137059,3855,interviews,1196868999 +137059,3855,liaisons,1233575276 +137059,3855,library vhs,1193519195 +137059,3855,mature,1241088806 +137059,3855,Nudity (Topless),1196869834 +137059,3855,Official selection of the Venice Film Festival,1241088789 +137059,3855,orgasm,1196872549 +137059,3855,Paris,1197048538 +137059,3855,passionate,1196871386 +137059,3855,realistic,1241088799 +137059,3855,sensual,1196872996 +137059,3855,sexual fantasy,1196866821 +137059,3855,sexuality,1206690755 +137059,3855,souvenirs,1196868377 +137059,3858,blindfold,1224888114 +137059,3863,library,1217698045 +137059,3871,library,1352582350 +137059,3871,National Film Registry,1230755503 +137059,3897,To See,1218894942 +137059,3902,courtesan,1171904431 +137059,3910,amateur theatre,1346141714 +137059,3910,bad cop,1346083763 +137059,3910,camerawork,1346083944 +137059,3910,library vhs,1192109116 +137059,3910,my shopping list,1378036253 +137059,3910,on dvr,1344424054 +137059,3910,self-sacrifice,1346086204 +137059,3910,trains,1346083822 +137059,3910,workplace,1346083806 +137059,3925,Cannes: Camera d'Or,1241182492 +137059,3925,National Film Registry,1228241356 +137059,3925,not funny,1229376367 +137059,3925,on dvr,1222103730 +137059,3925,what's the point?,1241182376 +137059,3928,National Film Registry,1228241968 +137059,3929,National Film Registry,1229967621 +137059,3932,chemistry,1174415158 +137059,3932,lust for power,1174415474 +137059,3932,mad scientist,1241186062 +137059,3932,memasa's movies,1309091970 +137059,3932,National Film Registry,1230748211 +137059,3949,cathartic,1234638571 +137059,3949,disturbing,1241479554 +137059,3949,eating disorder,1234637995 +137059,3949,electroshock therapy,1234638136 +137059,3949,hospital,1234799161 +137059,3949,loneliness,1234638052 +137059,3949,male-female relationship,1234649162 +137059,3949,memasa's movies,1308832203 +137059,3949,mother-son relationship,1234638018 +137059,3949,Nudity (Rear),1234638265 +137059,3949,prostitution,1234638193 +137059,3949,television show,1200239024 +137059,3966,National Film Registry,1229970923 +137059,3967,ballet,1255520041 +137059,3967,childhood,1255521365 +137059,3967,dancing,1255520052 +137059,3967,deceased family member,1255520194 +137059,3967,father-son relationship,1255519808 +137059,3967,good acting,1255522918 +137059,3967,good soundtrack,1255522901 +137059,3967,grandmother,1255523608 +137059,3967,library,1217692528 +137059,3967,miners,1255522866 +137059,3967,neighbors,1255522551 +137059,3967,See: This Is England,1255520297 +137059,3967,single father,1255520207 +137059,3967,unconventional,1255521395 +137059,3967,widows/widowers,1255520178 +137059,3967,working class,1255520123 +137059,3972,Netflix Finland,1388842320 +137059,3983,absent fathers,1199624169 +137059,3983,accident,1199617441 +137059,3983,infidelity,1199618525 +137059,3983,mother-son relationship,1199617542 +137059,3983,overrated,1199619269 +137059,3983,pool,1199623754 +137059,3983,pot smoking,1199618428 +137059,3983,religion,1199618693 +137059,3983,responsibility,1199618651 +137059,3983,SIBLING RELATIONSHIPS,1199617593 +137059,3983,slow,1241193744 +137059,3983,small town,1199617480 +137059,3983,uncle,1199617950 +137059,3983,workplace,1199617521 +137059,3985,on dvr,1233761055 +137059,3991,dogs,1170920640 +137059,3992,Beautiful Woman,1361725944 +137059,3992,library,1210452895 +137059,3992,library vhs,1250870610 +137059,3992,masturbation,1361727774 +137059,3992,my shopping list,1378036150 +137059,3992,Netflix Finland,1361718713 +137059,3992,teenage boy,1361727817 +137059,3992,teenager,1361727800 +137059,3993,amateur theatre,1192201862 +137059,3993,anti-authoritarian,1192201020 +137059,3993,asylum,1215962218 +137059,3993,cdon,1232798573 +137059,3993,distinctive,1192200838 +137059,3993,DOCTORS AND PATIENTS,1192199933 +137059,3993,dubious medical experiments,1192199759 +137059,3993,flagellation,1192202294 +137059,3993,freedom of expression,1192203973 +137059,3993,hypocrisy,1192201229 +137059,3993,individual liberty,1192203604 +137059,3993,insane asylum,1192201111 +137059,3993,male nudity,1192201069 +137059,3993,marquis de Sade,1195911039 +137059,3993,morality,1241192402 +137059,3993,my shopping list,1378035415 +137059,3993,patriarchy,1192200577 +137059,3993,psychiatry,1192200061 +137059,3993,sadism,1192202645 +137059,3993,Sympathy for the Devil,1192200480 +137059,3993,torture as a method of treatment,1192199905 +137059,3993,Underrated,1241192372 +137059,3993,WRITER'S LIFE,1192200864 +137059,3994,accident,1220965250 +137059,3994,car accident,1220965268 +137059,3994,father-son relationship,1220964136 +137059,3994,husband-wife relationship,1220964119 +137059,3994,memasa's movies,1308833179 +137059,3994,physical therapy,1220964945 +137059,3994,rehabilitation,1220963697 +137059,3994,security guard,1220963637 +137059,3994,train crash,1339157652 +137059,3994,wheelchair,1220961842 +137059,3996,calligraphy,1237920235 +137059,3996,wuxia,1179055881 +137059,4007,Netflix Finland,1385469436 +137059,4007,not as good as I expected,1396983209 +137059,4014,Annemari,1329766116 +137059,4014,naive,1329853919 +137059,4014,overrated,1329853836 +137059,4017,Netflix Finland,1372174751 +137059,4019,basketball,1246998783 +137059,4019,books,1246998674 +137059,4019,friendship,1246998899 +137059,4019,WRITER'S LIFE,1246998877 +137059,4019,writing process,1246998674 +137059,4021,Netflix Finland,1356882872 +137059,4022,island,1214146820 +137059,4027,baptism,1221067125 +137059,4027,frog,1221068120 +137059,4027,governor,1221069623 +137059,4027,hair obsession,1221067267 +137059,4027,Ku Klux Klan,1221069412 +137059,4027,library vhs,1217959306 +137059,4027,racism,1221069275 +137059,4027,updated classics,1241873387 +137059,4033,To See,1230033986 +137059,4034,Annemari,1342625889 +137059,4061,To See,1221589540 +137059,4091,1980s,1316791674 +137059,4103,library vhs,1203866864 +137059,4125,Golden Raspberry (Worst Actor),1224361289 +137059,4125,Golden Raspberry (Worst Picture),1224332007 +137059,4127,easily confused with other movie(s) (title),1397025572 +137059,4128,1980s,1199486182 +137059,4128,adolescence,1199486673 +137059,4128,amusement park,1199486260 +137059,4128,comics,1199486555 +137059,4128,dogs,1199486488 +137059,4128,flying,1199486372 +137059,4128,grandfather,1221600347 +137059,4128,mother-son relationship,1199486130 +137059,4128,motorcycle,1178449415 +137059,4128,stuffed animals,1199486631 +137059,4133,on dvr,1245428164 +137059,4144,apartment,1198320121 +137059,4144,costumes,1241186570 +137059,4144,memasa's movies,1339441389 +137059,4144,moody,1241186657 +137059,4144,nocturnal,1241186661 +137059,4144,retro,1241186546 +137059,4144,Slow moving but a beautie,1241186548 +137059,4144,watch Days of Being Willd first,1241186563 +137059,4160,19th century,1197406891 +137059,4160,captain,1197411194 +137059,4160,colonial power,1197408502 +137059,4160,compassionate,1241088743 +137059,4160,conscience,1241088747 +137059,4160,convicts,1197407453 +137059,4160,correctional treatment,1197411394 +137059,4160,elegant,1197410497 +137059,4160,ethical,1241088753 +137059,4160,expiation,1197411812 +137059,4160,government,1197410327 +137059,4160,horses,1197408697 +137059,4160,husband-wife relationship,1197406957 +137059,4160,island,1197407000 +137059,4160,Juliette Binoche and Daniel Auteuil also together in Hidden (a.k.a. Cache) (2005),1197407355 +137059,4160,legal system,1197408992 +137059,4160,library vhs,1196705896 +137059,4160,my shopping list,1378035113 +137059,4160,sailing ships,1197408666 +137059,4160,Saint Pierre and Miquelon,1197409535 +137059,4160,solidarity,1197409105 +137059,4160,transformation,1197407828 +137059,4160,village,1197409654 +137059,4160,widows/widowers,1197407527 +137059,4161,missing gun,1172945975 +137059,4161,road movie,1241212703 +137059,4174,easily confused with other movie(s) (title),1237888691 +137059,4174,entrepreneurs,1238145124 +137059,4174,FAMILY GATHERINGS,1238145050 +137059,4174,Fourth of July,1238145311 +137059,4174,immigrant experience,1238101698 +137059,4174,immigrants,1238156089 +137059,4174,jewish family,1238145093 +137059,4174,salespeople,1238170105 +137059,4174,television,1238170086 +137059,4174,Thanksgiving,1238145169 +137059,4178,mentally impaired,1207382334 +137059,4203,motorcycle,1178361707 +137059,4223,Netflix Finland,1380598276 +137059,4226,memasa's movies,1308833312 +137059,4226,memory,1319740441 +137059,4235,allegory,1234724843 +137059,4235,car accident,1234725712 +137059,4235,dog fighting,1199010697 +137059,4235,dogs,1168202149 +137059,4235,episodic,1171195565 +137059,4235,loyalty vs. betrayal,1234724804 +137059,4235,memasa's movies,1308831864 +137059,4235,money,1234724896 +137059,4235,See: Three Colors: Red,1234725086 +137059,4236,kolmasulottuvuus.fi,1379274507 +137059,4237,To See,1203921292 +137059,4239,based on a true story,1244923639 +137059,4239,father daughter relationship,1244923390 +137059,4251,Netflix Finland,1375434447 +137059,4255,Golden Raspberry (Worst Actor),1224355411 +137059,4255,Golden Raspberry (Worst Picture),1224352891 +137059,4259,library,1224852904 +137059,4262,memasa's movies,1320008667 +137059,4271,on computer,1222010227 +137059,4271,To See,1206798320 +137059,4272,To See,1203861064 +137059,4277,National Film Registry,1230749716 +137059,4278,See: Why We Fight series,1230052605 +137059,4278,Third Reich,1230061034 +137059,4282,library,1233696213 +137059,4283,on dvr,1325262866 +137059,4289,library,1233696049 +137059,4296,library,1212942220 +137059,4297,library vhs,1239371062 +137059,4298,heist,1222958180 +137059,4298,library,1212355324 +137059,4299,predictable,1241214652 +137059,4306,HEROIC MISSION,1237998170 +137059,4306,library,1220047808 +137059,4306,princess,1237996466 +137059,4308,Bollywood influence,1241479660 +137059,4308,colourful,1241479702 +137059,4308,courtesan,1170957730 +137059,4308,memasa's movies,1308832858 +137059,4308,narcolepsy,1230295598 +137059,4308,Oscar (Best Art Direction - Set Decoration),1241479718 +137059,4308,See: Water for Elephants,1341767809 +137059,4313,World War II,1292854308 +137059,4326,library vhs,1223158922 +137059,4327,library,1352727769 +137059,4327,Netflix Finland,1358256040 +137059,4334,memasa's movies,1308832073 +137059,4338,National Film Registry,1228238650 +137059,4361,Annemari,1337590860 +137059,4361,glbt,1189690093 +137059,4361,National Film Registry,1228239217 +137059,4380,brothers,1233089865 +137059,4380,HAUNTED BY THE PAST,1233089729 +137059,4380,heist,1233089890 +137059,4380,intertwined,1233150597 +137059,4380,male nudity,1233089739 +137059,4380,mental hospital,1233089948 +137059,4380,nurse,1233089819 +137059,4380,on dvr,1227793021 +137059,4380,patient,1233151263 +137059,4380,To See,1216503159 +137059,4381,closeted homosexual,1215855722 +137059,4384,To See,1218992481 +137059,4390,To See,1214744706 +137059,4391,To See,1221389431 +137059,4399,library vhs,1193949850 +137059,4403,National Film Registry,1230732467 +137059,4403,remake,1230027696 +137059,4404,based on a play,1217090968 +137059,4404,books,1217089581 +137059,4404,church,1217093183 +137059,4404,classic horror,1241027815 +137059,4404,dark,1217089820 +137059,4404,DEAL WITH THE DEVIL,1175865784 +137059,4404,death,1217089224 +137059,4404,devil,1217089797 +137059,4404,falsely accused,1217103194 +137059,4404,flying,1217091715 +137059,4404,German,1217099434 +137059,4404,german expressionism,1241027793 +137059,4404,good versus evil,1217088807 +137059,4404,google video,1241027800 +137059,4404,greed,1217138790 +137059,4404,immortality,1217140467 +137059,4404,Johann Wolfgang von Goethe,1241027835 +137059,4404,love,1217101785 +137059,4404,necklace,1217096978 +137059,4404,occult,1217089925 +137059,4404,old age,1217091389 +137059,4404,ominous,1217100397 +137059,4404,on computer,1217156868 +137059,4404,plague,1217088758 +137059,4404,religion,1217089112 +137059,4404,renunciation,1217090357 +137059,4404,resurgence,1217101588 +137059,4404,satan,1217103263 +137059,4404,seduction,1217099155 +137059,4404,selfishness/unselfishness,1217140833 +137059,4404,SIBLING RELATIONSHIPS,1217101841 +137059,4404,sword fight,1217101801 +137059,4404,youth,1217091374 +137059,4406,library,1352576564 +137059,4406,National Film Registry,1230750408 +137059,4419,National Film Registry,1229966582 +137059,4426,National Film Registry,1230749088 +137059,4435,Biography,1239977122 +137059,4437,To See,1310290457 +137059,4454,altruism,1244205758 +137059,4454,artist,1244208979 +137059,4454,assembly line,1244205612 +137059,4454,boss,1244205518 +137059,4454,consumerism,1244205689 +137059,4454,creativity,1244205901 +137059,4454,Dream Sequence,1244205881 +137059,4454,dystopia,1244205268 +137059,4454,easily confused with other movie(s) (title),1243862664 +137059,4454,factory,1244205636 +137059,4454,great music,1244205451 +137059,4454,imagination,1244208961 +137059,4454,inventor,1244205628 +137059,4454,Oscar Nominee,1244219803 +137059,4454,rebellion,1244205955 +137059,4454,sacrifice,1244205743 +137059,4454,short,1243862746 +137059,4454,social commentary,1244206030 +137059,4454,To See,1243862486 +137059,4454,What is Happiness?,1244205250 +137059,4454,workplace,1244205482 +137059,4454,youtube,1244204158 +137059,4470,black comedy,1282059208 +137059,4470,library,1195655082 +137059,4470,proletariat trilogy,1221762916 +137059,4470,To See,1203344367 +137059,4471,Golden Raspberry (Worst Actress),1224354408 +137059,4487,Golden Raspberry (Worst Picture),1224351095 +137059,4508,gorilla,1244326504 +137059,4508,on dvr,1235211690 +137059,4515,Biography,1230309067 +137059,4515,Dali,1230309115 +137059,4515,library,1230309200 +137059,4515,library vhs,1230309214 +137059,4529,cafe,1346686066 +137059,4529,desert,1346686248 +137059,4529,motel,1346686196 +137059,4529,music,1346686174 +137059,4529,not funny,1346686313 +137059,4529,Nudity (Topless),1346686186 +137059,4529,on dvr,1319985622 +137059,4529,stereotypes,1346686676 +137059,4546,cdon,1221388971 +137059,4546,MISSING PERSONS,1200237369 +137059,4552,To See,1223721627 +137059,4558,brother-brother relationship,1230047485 +137059,4558,brothers,1230047476 +137059,4565,ninja,1203365166 +137059,4566,ninja,1203365148 +137059,4567,ninja,1203365114 +137059,4623,blindfold,1224886088 +137059,4640,To See,1203858992 +137059,4641,Annemari,1333639679 +137059,4641,friendship,1333993768 +137059,4642,Teddy Award,1217513511 +137059,4642,To See,1215875113 +137059,4643,altering history,1309188019 +137059,4643,anthropomorphic,1309187712 +137059,4643,apes,1309187215 +137059,4643,astronauts,1309187461 +137059,4643,cage,1309187294 +137059,4643,crash,1309187820 +137059,4643,desert,1309188210 +137059,4643,evolution,1309187558 +137059,4643,genetic engineering,1309188165 +137059,4643,on dvr,1244308861 +137059,4643,race,1309293822 +137059,4643,rebellion,1309187427 +137059,4643,slave trade,1309187622 +137059,4643,slavery,1309187622 +137059,4643,spaceships,1309187953 +137059,4644,amateur detective,1241873251 +137059,4644,bus,1241438842 +137059,4644,flowers,1241442444 +137059,4644,holiday,1241438494 +137059,4644,library,1239116232 +137059,4644,not funny,1241438444 +137059,4644,private detective,1241438924 +137059,4644,restaurant,1241439073 +137059,4644,STARTING OVER,1241438369 +137059,4644,suicide attempt,1241439008 +137059,4644,unhappy marriage,1241438340 +137059,4644,Venice,1241438466 +137059,4652,Golden Raspberry (Worst Actress),1224354331 +137059,4658,Down syndrome,1282218467 +137059,4708,To See,1208002266 +137059,4717,1930s,1244292042 +137059,4717,camp,1244291484 +137059,4717,competition,1244291935 +137059,4717,gangsters,1244291969 +137059,4717,immigrants,1244292115 +137059,4717,kiss,1244309842 +137059,4717,martial arts,1244367070 +137059,4720,afterlife,1197055829 +137059,4720,Beautiful Woman,1241477266 +137059,4720,Bible,1197056262 +137059,4720,cemetary,1197057609 +137059,4720,child actor,1197054881 +137059,4720,foggy,1197057769 +137059,4720,formulaic,1241477287 +137059,4720,gardener,1197056481 +137059,4720,haunted house,1197055658 +137059,4720,house,1197055625 +137059,4720,housekeeper,1197055703 +137059,4720,Isolation,1197057885 +137059,4720,library,1192475892 +137059,4720,mansion,1197056451 +137059,4720,MISCHIEVOUS CHILDREN,1197047696 +137059,4720,mother-daughter relationships,1197058024 +137059,4720,mother-son relationship,1197057961 +137059,4720,mute,1197054601 +137059,4720,photograph,1197057657 +137059,4720,photosensitivity,1197054675 +137059,4720,religion,1197056165 +137059,4720,SERVANTS AND EMPLOYERS,1197055793 +137059,4720,SINGLE PARENTS,1197058390 +137059,4720,upper class,1197055947 +137059,4720,war widow,1197055582 +137059,4720,widows/widowers,1197055592 +137059,4725,coin,1226575964 +137059,4725,mask,1226575873 +137059,4725,mental hospital,1226573600 +137059,4725,multiple personalities,1226575679 +137059,4725,tape recorder,1226575834 +137059,4729,addiction,1208018018 +137059,4729,alcoholism,1208017020 +137059,4729,cancer,1208017545 +137059,4729,FAMILY GATHERINGS,1208017211 +137059,4729,father daughter relationship,1208017789 +137059,4729,great acting,1241025595 +137059,4729,lawyer,1208016996 +137059,4729,library vhs,1202150197 +137059,4729,male nudity,1208017595 +137059,4729,Nudity (Topless),1208016964 +137059,4729,road trip,1208017572 +137059,4729,secrets,1208018298 +137059,4729,whiskey,1208017037 +137059,4729,wistful,1207507239 +137059,4731,easily confused with other movie(s) (title),1239114760 +137059,4741,1970s,1183279190 +137059,4741,commune,1177598603 +137059,4741,conflicts and differences between 2 people,1179501734 +137059,4741,friendship,1177598286 +137059,4741,gender,1177598285 +137059,4741,GENDER-BENDING,1178086909 +137059,4741,loneliness,1177598286 +137059,4741,love,1177598286 +137059,4741,maturity,1177598286 +137059,4741,PARENTHOOD,1177598367 +137059,4741,politics,1177598286 +137059,4741,puberty,1177598286 +137059,4741,sexuality,1177598286 +137059,4741,social criticism,1177598792 +137059,4741,socialism,1177598286 +137059,4741,volkswagen,1195402206 +137059,4769,evacuees,1227625291 +137059,4769,World War II,1227625841 +137059,4775,Golden Raspberry (Worst Actress),1224353642 +137059,4776,library vhs,1224887260 +137059,4776,memasa's movies,1320924819 +137059,4776,Netflix Finland,1356883226 +137059,4776,To See,1224887221 +137059,4777,black and white,1214199555 +137059,4795,World War II,1292850940 +137059,4801,Netflix Finland,1382883547 +137059,4811,1960s,1246624172 +137059,4811,library,1221396515 +137059,4811,motorcycle,1178387308 +137059,4811,rebellion,1246624164 +137059,4831,Golden Raspberry (Worst Picture),1224325808 +137059,4847,library vhs,1217521205 +137059,4848,ACTOR'S LIFE,1221994229 +137059,4848,actors,1221994159 +137059,4848,amnesia,1221994889 +137059,4848,art house,1241456409 +137059,4848,audition,1221995305 +137059,4848,Beautiful Woman,1241456436 +137059,4848,bisexual,1221995124 +137059,4848,experimental,1221991838 +137059,4848,lesbian sex scene,1221995509 +137059,4848,masturbation,1221995373 +137059,4848,memasa's movies,1326121924 +137059,4848,movie business,1221987368 +137059,4848,theatre,1221989568 +137059,4850,library,1217609388 +137059,4855,library,1255192006 +137059,4855,memasa's movies,1320925154 +137059,4865,1800s,1215961784 +137059,4865,19th century,1233150524 +137059,4865,asylum,1215962175 +137059,4865,DOCTORS AND PATIENTS,1215962080 +137059,4865,Freemason,1215962902 +137059,4865,funeral,1215962436 +137059,4865,Joseph Merrick,1241211785 +137059,4865,letters,1215962731 +137059,4865,lobotomy,1215962008 +137059,4865,medicine,1215962470 +137059,4865,murder,1215961970 +137059,4865,Nudity (Full Frontal),1215961935 +137059,4865,Nudity (Rear),1215961949 +137059,4865,opium,1215961843 +137059,4865,police investigation,1215962059 +137059,4865,Prince,1215962690 +137059,4865,PROSTITUTES,1215965610 +137059,4865,PSYCHIC ABILITIES,1215962624 +137059,4865,serial killer,1241211830 +137059,4865,Victorian era,1241211774 +137059,4872,library,1206003205 +137059,4873,constitution of individuality and identity,1214664458 +137059,4873,life,1214664251 +137059,4873,memory,1214664487 +137059,4873,predestination,1214664623 +137059,4873,talky,1241183004 +137059,4873,tango,1214664512 +137059,4878,cdon,1228318582 +137059,4878,deus ex machina,1192897501 +137059,4878,imaginary friend,1218961052 +137059,4878,memasa's movies,1349084241 +137059,4878,rabbits,1223720579 +137059,4878,See: Watership Down,1217453691 +137059,4878,time travel,1241874478 +137059,4880,library vhs,1239971228 +137059,4881,Annemari,1342355691 +137059,4881,library,1234826325 +137059,4881,library vhs,1234826333 +137059,4884,Teddy Award,1217515575 +137059,4886,library vhs,1230023713 +137059,4896,boarding school,1199465367 +137059,4896,book-learned,1199464799 +137059,4896,bravery,1199465355 +137059,4896,cat,1199466697 +137059,4896,cats,1199466761 +137059,4896,centaurs,1199467644 +137059,4896,chess,1199467864 +137059,4896,Christmas,1199466869 +137059,4896,deceased family member,1199468103 +137059,4896,dogs,1199466795 +137059,4896,dragons,1199467514 +137059,4896,exuberant,1199466163 +137059,4896,forest,1199467531 +137059,4896,ghosts,1199466930 +137059,4896,goblins,1199466826 +137059,4896,halloween,1199467964 +137059,4896,humorous,1199469055 +137059,4896,invisibility,1199467429 +137059,4896,librarians,1199465317 +137059,4896,mirrors,1199467466 +137059,4896,owls,1199466528 +137059,4896,school,1199465411 +137059,4896,TEACHERS AND STUDENTS,1199466986 +137059,4896,train,1199466557 +137059,4896,trolls,1199466905 +137059,4896,unicorns,1199467607 +137059,4902,gold,1190143114 +137059,4902,memasa's movies,1308833930 +137059,4902,neither fish nor fowl,1241184642 +137059,4902,orphanage,1202397713 +137059,4902,orphans,1190143114 +137059,4902,paired with:Pan's Labyrinth,1241184621 +137059,4902,pseudo-artistic,1241184648 +137059,4902,Purely as a horror movie this one stinks: even Casper the Friendly Ghost is almost as scary,1241184603 +137059,4902,Spanish Civil War,1190144270 +137059,4920,National Film Registry,1230751940 +137059,4926,blindfold,1224885872 +137059,4947,motorcycle,1178371771 +137059,4963,feel good movie,1243702039 +137059,4963,too many celebrities,1241872574 +137059,4967,memasa's movies,1366476448 +137059,4973,beneficence,1328213735 +137059,4973,feel-good,1241873074 +137059,4973,memasa's movies,1308831875 +137059,4973,saturated,1241873070 +137059,4973,stylized,1241873098 +137059,4979,adoption,1200742765 +137059,4979,BREAKUPS AND DIVORCES,1200742578 +137059,4979,car: Austin-Healey 3000,1241479837 +137059,4979,child prodigy,1200744230 +137059,4979,family bonds,1200750067 +137059,4979,mouse,1200743876 +137059,4979,prodigies,1200744193 +137059,4979,smoking,1200742550 +137059,4979,taxi cabs,1200742603 +137059,4993,gardener,1215900527 +137059,4993,memasa's movies,1319986665 +137059,4993,trilogy,1241182772 +137059,4999,National Film Registry,1229971086 +137059,5000,National Film Registry,1230750692 +137059,5010,Annemari,1334586577 +137059,5010,helicopters,1341578109 +137059,5010,militia,1341576025 +137059,5013,library vhs,1192457490 +137059,5015,memasa's movies,1391603725 +137059,5022,alcoholism,1226091719 +137059,5022,anti-authoritarian,1226091729 +137059,5022,based on a book,1224787992 +137059,5022,DANGEROUS ATTRACTION,1226091800 +137059,5022,England,1226091547 +137059,5022,gullibility,1226091739 +137059,5022,house,1226091510 +137059,5022,housekeeper,1226091510 +137059,5022,library,1222176776 +137059,5022,loyalty vs. betrayal,1226575532 +137059,5022,manipulation,1226091702 +137059,5022,seduction,1226091661 +137059,5022,See: Gaslight,1226575370 +137059,5022,SERVANTS AND EMPLOYERS,1226574720 +137059,5022,switching places,1226575097 +137059,5022,winter,1226091694 +137059,5026,18th century,1216494005 +137059,5026,Beast Of Gévaudan,1216492935 +137059,5026,courtesan,1171121761 +137059,5026,my computer,1329227249 +137059,5026,To See,1203855050 +137059,5028,Annemari,1332515799 +137059,5028,Clock,1335967832 +137059,5028,deceased family member,1335967766 +137059,5028,wrist watch,1335967721 +137059,5051,library,1180019042 +137059,5055,Biography,1232814995 +137059,5055,To See,1232815073 +137059,5056,on dvr,1309193062 +137059,5060,National Film Registry,1230750235 +137059,5063,library,1352576850 +137059,5064,on dvr,1338465382 +137059,5068,cycling,1220086834 +137059,5068,library,1220086774 +137059,5068,on dvr,1321543455 +137059,5072,superhuman,1175694738 +137059,5072,visually appealing,1241185695 +137059,5073,Characters with great depth,1241089090 +137059,5073,deceased family member,1198510581 +137059,5073,Golden Palm,1241089106 +137059,5073,heartbreaking,1171808063 +137059,5073,loss,1171809863 +137059,5073,psychiatrist,1171809774 +137059,5073,psychiatrist as protagonist,1241089095 +137059,5085,National Film Registry,1229969660 +137059,5104,Julio Medem,1224513461 +137059,5106,Golden Raspberry (Worst Actress),1224353566 +137059,5114,flashbacks,1351244223 +137059,5114,Hollywood,1351244178 +137059,5114,National Film Registry,1229967384 +137059,5114,on dvr,1350642103 +137059,5121,on dvr,1247078992 +137059,5121,PROSTITUTES,1347915186 +137059,5134,British,1189936795 +137059,5134,guard,1230477688 +137059,5134,on dvr,1229698689 +137059,5134,prison,1189936269 +137059,5134,remake,1241043446 +137059,5134,RemakeOf:The Longest Yard (1974),1189936629 +137059,5134,soccer,1189936284 +137059,5134,sports,1230468674 +137059,5134,stopped watching,1230468365 +137059,5134,washed up,1230478129 +137059,5135,library vhs,1220197681 +137059,5147,Annemari,1340697589 +137059,5147,old age,1340898884 +137059,5147,road trip,1340899089 +137059,5161,Golden Raspberry (Worst Actress),1224354043 +137059,5177,National Film Registry,1230750289 +137059,5192,island,1250937904 +137059,5193,easily confused with other movie(s) (title),1230748684 +137059,5193,Golden Raspberry (Worst Actor),1224361897 +137059,5224,Netflix Finland,1396862605 +137059,5224,To See,1204297393 +137059,5225,Erotic,1241212833 +137059,5225,hectic,1241212837 +137059,5225,memasa's movies,1333543918 +137059,5225,passionate,1241212834 +137059,5225,road trip,1241212827 +137059,5230,library,1352577061 +137059,5231,National Film Registry,1230754942 +137059,5238,National Film Registry,1230754847 +137059,5243,brothers,1177771318 +137059,5243,MISTAKEN IDENTITIES,1177858956 +137059,5269,based on a book,1226579336 +137059,5269,classical music,1226579841 +137059,5269,domineering mother,1226579566 +137059,5269,memasa's movies,1353243198 +137059,5269,on dvr,1220047129 +137059,5269,piano,1226579462 +137059,5269,sadomasochistic,1226580133 +137059,5269,sex scenes,1226579553 +137059,5269,sexual fantasy,1226579403 +137059,5269,sexuality,1241091953 +137059,5269,teacher student relationship,1226579724 +137059,5288,"""Duck and cover!""",1196700318 +137059,5288,animal cruelty,1241090279 +137059,5288,animal research,1226090784 +137059,5288,Animals die :(,1231854447 +137059,5288,archive footage,1328213969 +137059,5288,Atomic bomb,1196707371 +137059,5288,atrocity,1196700116 +137059,5288,bombs,1230137103 +137059,5288,capitalism,1196699636 +137059,5288,Cold War,1196699510 +137059,5288,communism,1196699636 +137059,5288,God-given right to kill?,1196700231 +137059,5288,H-bomb,1196700136 +137059,5288,hard to watch,1196699867 +137059,5288,History,1241090265 +137059,5288,ignorance,1196700196 +137059,5288,library vhs,1193518335 +137059,5288,McCarthyism,1196699636 +137059,5288,military experiments,1196699772 +137059,5288,radiation,1226573381 +137059,5288,See: Why We Fight series,1230063405 +137059,5288,topic:propaganda,1241090260 +137059,5291,truth,1173107031 +137059,5294,brothers,1197745618 +137059,5294,Directorial Debut,1198320334 +137059,5294,father-son relationship,1197740720 +137059,5294,sheriff,1213041236 +137059,5296,library vhs,1217518282 +137059,5304,Golden Palm,1214149246 +137059,5304,on dvr,1385367687 +137059,5304,World War II,1250682927 +137059,5311,blindfold,1224888321 +137059,5319,Argentina,1320360408 +137059,5319,brother sister relationship,1320333854 +137059,5319,directorial debut,1320331940 +137059,5319,family relationships,1320333838 +137059,5319,forgery,1320334183 +137059,5319,heist,1320328676 +137059,5319,hotel,1320333800 +137059,5319,on dvr,1319985580 +137059,5319,stamps,1320332183 +137059,5319,To See,1203341444 +137059,5342,1980s,1316791827 +137059,5351,To See,1218835604 +137059,5353,blindness,1170887383 +137059,5353,discshop,1191532467 +137059,5353,inspired by a real-life person,1170689542 +137059,5353,To See,1221398609 +137059,5377,Annemari,1330357363 +137059,5377,shy person,1200239726 +137059,5377,single mother,1330445436 +137059,5377,slackers,1330455024 +137059,5379,love,1327426263 +137059,5379,Nudity (Topless),1327426442 +137059,5379,on dvr,1320164205 +137059,5379,self-hatred,1328214179 +137059,5379,skinhead,1327425961 +137059,5379,synagogue,1327426692 +137059,5382,motorcycle,1178368614 +137059,5388,easily confused with other movie(s) (title),1241186011 +137059,5389,narrated,1443353235 +137059,5389,native american,1443353220 +137059,5418,easily confused with other movie(s) (title),1225459966 +137059,5418,realistic action,1241873808 +137059,5425,library,1217691310 +137059,5430,World War II,1292854192 +137059,5445,on dvr,1224853397 +137059,5446,library vhs,1203864193 +137059,5461,blindfold,1224886286 +137059,5464,memasa's movies,1320000365 +137059,5464,Netflix Finland,1391441466 +137059,5464,See: The Limey,1255507102 +137059,5464,This is a bloody movie. Yet I would call it a family movie.,1241455655 +137059,5465,on dvr,1321542922 +137059,5477,cdon,1224274516 +137059,5477,island,1309361295 +137059,5477,Julio Medem,1224513436 +137059,5477,male nudity,1217427552 +137059,5477,Mediterranean,1309361033 +137059,5477,my shopping list,1378035595 +137059,5477,Netflix Finland,1356022640 +137059,5477,Nudity (Full Frontal - Notable),1241126334 +137059,5477,penis,1320876204 +137059,5477,WRITER'S LIFE,1241126342 +137059,5484,blindness,1249840614 +137059,5484,library vhs,1244372468 +137059,5484,lies,1249840678 +137059,5484,obesity,1249845672 +137059,5484,stepmother,1249840838 +137059,5489,memasa's movies,1308833294 +137059,5489,Remake,1241091472 +137059,5489,vampire,1241091469 +137059,5494,fishing,1250936557 +137059,5494,village,1250936722 +137059,5498,my shopping list,1378035943 +137059,5502,crop circles,1223994409 +137059,5502,memasa's movies,1308834913 +137059,5503,conventionalities,1199045577 +137059,5503,families,1199044902 +137059,5503,FAMILIES IN CRISIS,1199044911 +137059,5503,Family,1199045577 +137059,5503,fear of commitment,1199046106 +137059,5503,friends,1199045972 +137059,5503,hectic,1199045868 +137059,5503,LOVE TRIANGLES,1199046193 +137059,5503,marriage,1199045781 +137059,5503,Nudity (Topless - Brief),1199046982 +137059,5503,pregnancy,1199044928 +137059,5503,psychiatrist,1199289508 +137059,5503,remade,1199047464 +137059,5503,remadeAs:The Last Kiss (2006),1199047666 +137059,5503,responsibility,1199045656 +137059,5503,teen,1199289551 +137059,5503,temperamental,1199045087 +137059,5503,temptation,1199045933 +137059,5503,wedding,1199044960 +137059,5504,island,1250939333 +137059,5507,motorcycle,1178387822 +137059,5507,play enough video games and you can become an NSA agent,1241212109 +137059,5507,ridiculous training sequence,1173046572 +137059,5515,library vhs,1199626148 +137059,5516,To See,1203857505 +137059,5525,blindfold,1224888210 +137059,5525,chefs,1201535381 +137059,5525,control freak,1198698804 +137059,5525,customer service,1198698234 +137059,5525,DOCTORS AND PATIENTS,1198698104 +137059,5525,foibles,1198700793 +137059,5525,German punctuality meets Italian spontaneousness (makes it a little bit stereotypical though),1241091177 +137059,5525,Germany,1198699612 +137059,5525,grieving,1198869195 +137059,5525,guardian,1198698618 +137059,5525,"If you particularly valued the drama ingredients of this movie I recommend seeing ""The Son's Room"" (2001)",1241091187 +137059,5525,makes you hungry,1241091251 +137059,5525,mourning,1198698494 +137059,5525,OPPOSITES ATTRACT,1198698917 +137059,5525,perfectionist,1198700882 +137059,5525,piquant,1241091209 +137059,5525,recipe,1205416090 +137059,5525,restaurant,1198697974 +137059,5525,tasteful,1198941143 +137059,5525,WORK ETHICS,1198698342 +137059,5547,library vhs,1221401197 +137059,5547,rare,1221401207 +137059,5576,library vhs,1221347523 +137059,5576,rare,1221388771 +137059,5599,Bora Bora,1228171171 +137059,5599,canoeing,1228176074 +137059,5599,FORBIDDEN LOVE,1228175986 +137059,5599,island,1228171182 +137059,5599,melodrama,1228176331 +137059,5599,National Film Registry,1228235500 +137059,5599,Nudity (Topless - Notable),1228175426 +137059,5599,on dvr,1227795341 +137059,5599,pearl,1228175867 +137059,5599,primitive peoples,1228259559 +137059,5599,religion,1228241052 +137059,5599,sailing ships,1228176031 +137059,5599,swimming,1228175976 +137059,5599,waterfall,1228261257 +137059,5606,mentally impaired,1207384399 +137059,5608,based on a true story,1241185272 +137059,5608,mass behavior,1205860218 +137059,5608,oppression,1206821377 +137059,5608,over-the-top ending,1241185319 +137059,5608,subordination,1184246486 +137059,5612,blindfold,1224889657 +137059,5613,absurd,1217778368 +137059,5613,Agatha Christie-like,1241126194 +137059,5613,closed spaces,1217774737 +137059,5613,dark comedy,1241126277 +137059,5613,dysfunctional family,1241126284 +137059,5613,eye candy,1241126092 +137059,5613,family relationships,1217777212 +137059,5613,FATHERS AND DAUGHTERS,1217778488 +137059,5613,grandmother,1217778609 +137059,5613,house,1217777400 +137059,5613,housekeeper,1217777411 +137059,5613,kitchen maid,1217772882 +137059,5613,kitsch,1241126096 +137059,5613,lesbian character,1217774222 +137059,5613,love,1217773160 +137059,5613,madcap,1241126201 +137059,5613,maid,1217772914 +137059,5613,mother-daughter relationships,1217778476 +137059,5613,murder,1217774890 +137059,5613,murder mystery,1241126223 +137059,5613,over the top,1241126106 +137059,5613,satire,1241126132 +137059,5613,saturated,1241126110 +137059,5613,secrets,1217778542 +137059,5613,See: Gosford Park,1217777057 +137059,5613,SERVANTS AND EMPLOYERS,1217773083 +137059,5613,sister sister relationship,1217778461 +137059,5613,tragicomedy,1217776708 +137059,5613,upbeat,1241126252 +137059,5613,virgin,1217778311 +137059,5613,whodunit,1241126125 +137059,5613,whodunnit,1241126121 +137059,5613,women,1217774205 +137059,5617,cdon,1210436134 +137059,5617,secretary,1197476158 +137059,5617,typewriter,1285254981 +137059,5617,workplace,1285249950 +137059,5618,deities,1170919086 +137059,5618,environmental,1241478317 +137059,5618,extraordinary!!!,1241478334 +137059,5618,frog,1221068212 +137059,5618,memasa's movies,1308831957 +137059,5618,pigs,1170919290 +137059,5618,See: Pom Poko (a.k.a. The Raccoon War) (Heisei tanuki gassen pompoko),1229884459 +137059,5618,Studio Ghibli,1241478286 +137059,5618,transition,1170883407 +137059,5618,very good for kids and adults,1241478126 +137059,5630,blindness,1190062366 +137059,5630,extreme naiveness makes the character of Reba much less believable; she's not a child,1241214260 +137059,5632,1970s,1198685721 +137059,5632,army,1211825840 +137059,5632,IRA,1211825801 +137059,5632,on dvr,1195834767 +137059,5632,riot,1211825937 +137059,5633,easily confused with other movie(s) (title),1217606531 +137059,5633,library vhs,1217606680 +137059,5642,To See,1221130792 +137059,5669,9/11,1174659241 +137059,5669,fear; hate; anger,1174319165 +137059,5669,racism,1174317269 +137059,5673,library,1216578551 +137059,5673,on dvr,1230116305 +137059,5673,phone,1230456778 +137059,5673,SIBLING RELATIONSHIPS,1230327193 +137059,5673,solid comedy,1241214210 +137059,5673,travel,1230480874 +137059,5673,workplace,1230327232 +137059,5675,Golden Raspberry (Worst Actress),1224353523 +137059,5675,Golden Raspberry (Worst Picture),1224352843 +137059,5678,skinhead,1199566488 +137059,5690,anti-war,1241183380 +137059,5690,Best War Films,1241183382 +137059,5690,civilians at war,1197477533 +137059,5690,Firefly,1336828771 +137059,5690,from the view of children,1241183384 +137059,5690,maintaining illusion,1170939189 +137059,5690,memasa's movies,1308831673 +137059,5690,one of the best war movies,1241183387 +137059,5690,sad but good,1241183369 +137059,5690,wartime,1171381749 +137059,5711,on dvr,1348480820 +137059,5716,Golden Raspberry (Worst Actress),1224354692 +137059,5730,ninja,1203365065 +137059,5747,library,1216470177 +137059,5760,easily confused with other movie(s) (title),1228047425 +137059,5761,Golden Raspberry (Worst Actor),1224361795 +137059,5763,on dvr,1346703548 +137059,5788,To See,1217143998 +137059,5788,working class,1217143817 +137059,5791,1920s,1227809968 +137059,5791,1930s,1227810291 +137059,5791,1940s,1227810307 +137059,5791,accident,1227960280 +137059,5791,amazing film about an amazing woman,1241192115 +137059,5791,animated segments,1241088409 +137059,5791,art patron,1227878190 +137059,5791,Biography,1241192065 +137059,5791,bisexual,1227808428 +137059,5791,BOHEMIAN LIFE,1227810190 +137059,5791,car accident,1227810111 +137059,5791,communism,1227809927 +137059,5791,Communist witch hunt,1227809952 +137059,5791,disability,1227810026 +137059,5791,drinking,1227810587 +137059,5791,husband-wife relationship,1227809558 +137059,5791,marriage,1227808248 +137059,5791,mexico,1227810346 +137059,5791,Mexico City,1227810334 +137059,5791,multifaceted,1241088424 +137059,5791,multinational settings,1227808527 +137059,5791,muse,1227878374 +137059,5791,needles,1227811414 +137059,5791,Nudity (Full Frontal),1227808322 +137059,5791,Nudity (Rear),1227808334 +137059,5791,on dvr,1227642590 +137059,5791,painter,1227808294 +137059,5791,painting,1227808304 +137059,5791,passion,1227810222 +137059,5791,photograph,1227810991 +137059,5791,politics,1227808462 +137059,5791,promiscuity,1227808381 +137059,5791,revolution,1227809523 +137059,5791,sexuality,1241088443 +137059,5791,socialism,1227811656 +137059,5791,story of one family,1227809576 +137059,5791,surgery,1230481000 +137059,5791,surprisingly good,1241088447 +137059,5791,surrealism,1241088450 +137059,5791,Underrated,1227809648 +137059,5791,wheelchair,1227810177 +137059,5791,women,1227808236 +137059,5792,on dvr,1239995734 +137059,5792,sexuality,1294401571 +137059,5792,teenagers,1294401597 +137059,5792,To See,1217426746 +137059,5810,1990s,1217762493 +137059,5810,asshole,1241212671 +137059,5810,Eminem is a VICTIM,1250871084 +137059,5810,mediocre,1241212647 +137059,5813,on dvr,1224879451 +137059,5813,religion,1226615781 +137059,5813,religious conversion,1226615781 +137059,5813,spiritual journey,1226578851 +137059,5816,broomstick,1205497140 +137059,5818,library,1206822926 +137059,5825,World War II,1292850617 +137059,5826,library,1352581986 +137059,5839,library,1196702690 +137059,5840,library,1196702779 +137059,5841,island,1213823250 +137059,5856,1960s,1197390355 +137059,5856,adolescence,1197390579 +137059,5856,attic,1197390889 +137059,5856,autosuggestion,1197395783 +137059,5856,bands,1197395267 +137059,5856,bureaucracy,1197406439 +137059,5856,cabaret,1197394901 +137059,5856,centre for cultural activities,1197391919 +137059,5856,coming of age,1197475944 +137059,5856,communism,1197393084 +137059,5856,family bonds,1197395214 +137059,5856,FIRST LOVE,1197390467 +137059,5856,first sexual experience,1197390467 +137059,5856,hiding place,1197395141 +137059,5856,hypnosis,1197393094 +137059,5856,idealism,1197411978 +137059,5856,If you want a more embellished story of prostitution watch Pretty Woman instead,1241018291 +137059,5856,melancholy,1197390667 +137059,5856,municipal administration,1197392140 +137059,5856,not funny,1241018300 +137059,5856,Nudity (Rear),1197392997 +137059,5856,Nudity (Topless - Notable),1197392972 +137059,5856,pimps,1197393165 +137059,5856,poverty,1197391638 +137059,5856,prostitution,1197390323 +137059,5856,Sarajevo,1197390156 +137059,5856,smoking,1197395156 +137059,5856,tart humor,1241018310 +137059,5856,terminal illness,1197390396 +137059,5856,Yugoslavia,1197390077 +137059,5864,Golden Raspberry (Worst Actress),1224354760 +137059,5878,hospital,1387724796 +137059,5881,library vhs,1224852604 +137059,5884,motorcycle,1178369805 +137059,5890,a good comedy about a serious subject,1241125569 +137059,5890,autonomy,1198511245 +137059,5890,better than expected,1241125570 +137059,5890,board game,1200073058 +137059,5890,book-learned,1198518366 +137059,5890,books,1198515022 +137059,5890,cars,1198514703 +137059,5890,Christmas,1198513370 +137059,5890,cooperation,1198511053 +137059,5890,deceased family member,1198510221 +137059,5890,diffidence,1198512591 +137059,5890,eccentricity,1198514855 +137059,5890,friendship,1198509945 +137059,5890,halfway house,1198511688 +137059,5890,Isolation,1198513096 +137059,5890,juxtaposition,1198514337 +137059,5890,library vhs,1196429054 +137059,5890,Ludo (board game),1198518240 +137059,5890,mental,1198514026 +137059,5890,neurosis,1198540917 +137059,5890,oedipal,1198540862 +137059,5890,on the road,1241125704 +137059,5890,Oslo,1198513302 +137059,5890,outpatients,1198511504 +137059,5890,peer support,1198519163 +137059,5890,phobias,1198514774 +137059,5890,poetry,1198513736 +137059,5890,rejoining society,1241125640 +137059,5890,repression,1198518507 +137059,5890,restaurant,1198512876 +137059,5890,routines,1198513218 +137059,5890,seasons,1198513662 +137059,5890,self discovery,1198514076 +137059,5890,self-esteem,1198512819 +137059,5890,social welfare,1198512959 +137059,5890,solid comedy,1241125657 +137059,5890,statue,1198513275 +137059,5890,upbeat,1241125648 +137059,5890,Why is this rated R?,1198515336 +137059,5891,campy,1172528177 +137059,5891,Nudity (Full Frontal - Notable),1172529213 +137059,5891,rape,1216396215 +137059,5891,revenge,1241042095 +137059,5891,writer,1215898230 +137059,5891,WRITER'S LIFE,1216396172 +137059,5892,island,1250937786 +137059,5902,books,1230808555 +137059,5902,brother-brother relationship,1230808815 +137059,5902,evolution,1230808907 +137059,5902,flowers,1230808693 +137059,5902,script,1230808633 +137059,5902,stopped watching,1230468310 +137059,5902,twins,1230808890 +137059,5902,writing process,1230808654 +137059,5906,library vhs,1251446530 +137059,5909,To See,1214761693 +137059,5945,DEATH OF A SPOUSE,1255584505 +137059,5945,widows/widowers,1255599320 +137059,5949,blindfold,1224886137 +137059,5949,To See,1218966007 +137059,5952,memasa's movies,1319986678 +137059,5952,ring,1205417279 +137059,5956,gangs,1212942783 +137059,5956,memasa's movies,1308833459 +137059,5962,Golden Raspberry (Worst Actress),1224354104 +137059,5963,library,1246749562 +137059,5971,Cute!,1241193295 +137059,5971,feel good movie,1241193310 +137059,5971,feel-good,1241193314 +137059,5971,kids and family,1241193335 +137059,5971,memasa's movies,1339441339 +137059,5971,Studio Ghibli,1241193317 +137059,5975,library,1223038436 +137059,5989,memasa's movies,1309095867 +137059,5990,Golden Raspberry (Worst Actor),1224355342 +137059,5991,remake,1176918720 +137059,5992,AIDS,1199487266 +137059,5992,strong woman,1241195230 +137059,5992,updated classics,1241195213 +137059,5992,Virginia Woolf,1241195218 +137059,5992,women,1241195224 +137059,5995,Best War Films,1239993280 +137059,5995,classical music,1208437300 +137059,5995,hiding place,1208437072 +137059,5995,memasa's movies,1308831576 +137059,5995,on dvr,1208036381 +137059,5995,one of the best war movies,1208437621 +137059,5995,piano,1208437309 +137059,5995,To See,1203857965 +137059,5995,Warsaw,1208437114 +137059,6001,memasa's movies,1386146168 +137059,6001,on dvr,1364857033 +137059,6003,CIA Agent,1351327134 +137059,6003,double life,1351327152 +137059,6003,moles,1351327244 +137059,6003,on dvr,1349364393 +137059,6008,To See,1204498424 +137059,6016,based on a true story,1241476550 +137059,6016,drugs,1170972100 +137059,6016,gangs,1170972290 +137059,6016,gritty,1241476486 +137059,6016,memasa's movies,1308832441 +137059,6016,multiple storylines,1241476587 +137059,6016,Netflix Finland,1398971822 +137059,6016,realistic,1241476492 +137059,6016,violence,1170971776 +137059,6017,blindfold,1224887762 +137059,6021,Netflix Finland,1354643201 +137059,6042,secretary,1197476227 +137059,6057,motorcycle,1178362401 +137059,6070,blindfold,1224889284 +137059,6070,sadomasochistic,1224889367 +137059,6070,To See,1224889998 +137059,6107,evacuees,1174334944 +137059,6107,fascism,1174334667 +137059,6107,from the view of children,1218829659 +137059,6107,World War II,1174334583 +137059,6108,library,1240063817 +137059,6114,amateur,1240232592 +137059,6114,directorial debut,1240228777 +137059,6114,idle,1241019496 +137059,6114,New York City,1240229258 +137059,6114,on dvr,1234821141 +137059,6114,slackers,1240229279 +137059,6114,stopped watching,1240202808 +137059,6140,Annemari,1341937554 +137059,6140,murder,1347025207 +137059,6140,Nudity (Topless - Notable),1347025236 +137059,6140,WRITER'S LIFE,1347025225 +137059,6151,Golden Palm,1214150534 +137059,6159,To See,1232793292 +137059,6160,archive footage,1219148393 +137059,6163,BRIEF ENCOUNTERS,1214148470 +137059,6163,DANGEROUS ATTRACTION,1214144532 +137059,6163,doctor-patient relationship,1214144871 +137059,6163,erotomania,1241089128 +137059,6163,flowers,1214145881 +137059,6163,gifts,1214146050 +137059,6163,hospital,1214144329 +137059,6163,husband-wife relationship,1214145511 +137059,6163,jealousy,1214145575 +137059,6163,letters,1214145727 +137059,6163,library,1212946147 +137059,6163,painter,1214145252 +137059,6163,pregnancy,1214146237 +137059,6163,roses,1215244883 +137059,6163,secretary,1214145802 +137059,6163,SELF-DESTRUCTIVE ROMANCE,1241089143 +137059,6163,souvenirs,1214145013 +137059,6163,stalker,1214144958 +137059,6170,National Film Registry,1228237494 +137059,6192,To See,1217079856 +137059,6214,constantly rotating filming,1241130052 +137059,6214,male nudity,1201801134 +137059,6214,rape,1195260326 +137059,6214,strobe effects,1233175365 +137059,6216,library,1209715358 +137059,6218,female athletes,1217696064 +137059,6218,library,1223756637 +137059,6218,women in sport,1217696196 +137059,6219,memasa's movies,1309093220 +137059,6220,rats,1224793981 +137059,6244,Bombay,1198607198 +137059,6244,brothel,1198658065 +137059,6244,dark side of India,1198660209 +137059,6244,drugs,1198607369 +137059,6244,festivals,1198607888 +137059,6244,India,1198607209 +137059,6244,injustice,1198607633 +137059,6244,institutions,1198607652 +137059,6244,MOTHERS AND DAUGHTERS,1198607617 +137059,6244,pimps,1198607448 +137059,6244,poverty,1198684195 +137059,6244,prostitution,1198607349 +137059,6244,runaway,1198607276 +137059,6244,singing,1198607575 +137059,6244,street children,1198607179 +137059,6244,tea,1198607420 +137059,6244,urban,1198607529 +137059,6254,Annemari,1344763243 +137059,6254,based on a play,1344763516 +137059,6254,divorce,1344763318 +137059,6254,dogs,1345899448 +137059,6254,husband-wife relationship,1345893496 +137059,6254,jealousy,1345892289 +137059,6254,National Film Registry,1229967317 +137059,6269,child molestor,1249068011 +137059,6269,pedophile,1200667595 +137059,6270,aging,1228047736 +137059,6270,art,1228129128 +137059,6270,childhood,1228129218 +137059,6270,dreamlike,1241090018 +137059,6270,dreams,1241090014 +137059,6270,episodic,1228047634 +137059,6270,growing up,1241089984 +137059,6270,Late-career surprise,1241089994 +137059,6270,library vhs,1192470211 +137059,6270,life,1228047652 +137059,6270,life in general,1241089985 +137059,6270,on dvr,1216502322 +137059,6271,Annemari,1352020783 +137059,6271,car accident,1354383549 +137059,6271,directing,1354383524 +137059,6271,director,1354383501 +137059,6271,movies about movies,1354383468 +137059,6271,my shopping list,1381930913 +137059,6273,great acting,1243893459 +137059,6273,library vhs,1213042215 +137059,6273,National Film Registry,1230747994 +137059,6281,phone,1255177793 +137059,6281,sniper,1255177852 +137059,6286,atmospheric,1241184735 +137059,6286,cameos,1241184715 +137059,6286,deadpan,1241184711 +137059,6286,executed with economy of expression,1241184701 +137059,6286,Finland Trilogy,1200436124 +137059,6286,good casting,1241184703 +137059,6286,great use of music,1241184705 +137059,6286,jukebox,1204299488 +137059,6286,ruutu.fi,1398698243 +137059,6286,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1241184726 +137059,6287,angry,1244233339 +137059,6291,child prostitution,1232720320 +137059,6291,friendship transcending death,1173629120 +137059,6291,Going West,1173628682 +137059,6291,loyalty vs. betrayal,1173628428 +137059,6291,poverty,1173628139 +137059,6291,See: Italianetz,1217453395 +137059,6291,starry-eyed,1173629484 +137059,6293,boring,1241024681 +137059,6293,directorial debut,1233260821 +137059,6293,friendship,1233258758 +137059,6293,husband-wife relationship,1233258053 +137059,6293,male nudity,1233257991 +137059,6293,marriage,1233258700 +137059,6293,Nudity (Topless),1233258001 +137059,6293,on dvr,1226100691 +137059,6293,promiscuity,1233257958 +137059,6293,reunion,1233258670 +137059,6293,See: Henry and June,1233257936 +137059,6299,To See,1203864108 +137059,6301,bar,1229990801 +137059,6301,cdon,1232797692 +137059,6301,destruction,1229990776 +137059,6301,drinking,1229990793 +137059,6301,flashbacks,1229990068 +137059,6301,hiding place,1229991322 +137059,6301,hunting,1229990713 +137059,6301,husband-wife relationship,1229990693 +137059,6301,memasa's movies,1308831944 +137059,6301,moral ambiguity,1230024091 +137059,6301,rats,1229990758 +137059,6301,Sexualized violence,1229989483 +137059,6301,SMALL-TOWN LIFE,1241128565 +137059,6301,village,1229989558 +137059,6301,Where is the cat?,1229991166 +137059,6322,corruption,1309697156 +137059,6322,on dvr,1230733056 +137059,6322,redhead,1309697105 +137059,6327,To See,1204909548 +137059,6333,amnesia,1203197275 +137059,6333,aviation,1203197045 +137059,6333,circus,1203197721 +137059,6333,Ethic,1203198768 +137059,6333,faith,1203198439 +137059,6333,father son relationship,1203199078 +137059,6333,father-son relationship,1203196984 +137059,6333,genocide,1203198825 +137059,6333,legislation,1203197242 +137059,6333,manipulation,1203197028 +137059,6333,museum,1203197218 +137059,6333,president,1203197148 +137059,6333,senators,1203197388 +137059,6333,storm,1203196956 +137059,6333,teacher,1203198787 +137059,6333,tissue regeneration,1203196656 +137059,6333,wheelchair,1203196112 +137059,6333,White House,1203197082 +137059,6341,library,1228318495 +137059,6344,Christmas,1282051154 +137059,6344,closeted homosexual,1281971413 +137059,6344,lesbian,1328213344 +137059,6344,library,1203921962 +137059,6344,love triangles,1328213342 +137059,6344,male nudity,1282051461 +137059,6344,mother-son relationship,1328213339 +137059,6344,New Year's Eve,1282051222 +137059,6344,unemployment,1281971558 +137059,6365,memasa's movies,1320007986 +137059,6368,To See,1220991418 +137059,6370,exchange student,1219448075 +137059,6370,library,1212946030 +137059,6377,birds,1197047112 +137059,6377,dentist,1196958686 +137059,6377,MISCHIEVOUS CHILDREN,1197047253 +137059,6377,See: The SpongeBob SquarePants Movie,1217453645 +137059,6377,Sydney,1196958849 +137059,6378,deceased family member,1232145428 +137059,6378,ensemble cast,1232145268 +137059,6378,gold,1232145382 +137059,6378,helicopters,1232145590 +137059,6378,on dvr,1230748453 +137059,6378,payback time,1232145460 +137059,6378,safe (for valuables),1232145487 +137059,6378,Venice,1232145533 +137059,6380,To See,1224854568 +137059,6383,cars,1172325493 +137059,6383,crappy sequel,1241191935 +137059,6383,tattoo,1220733029 +137059,6385,library,1200759449 +137059,6385,Netflix Finland,1360230649 +137059,6404,library,1233695812 +137059,6405,island,1250939673 +137059,6412,National Film Registry,1229970884 +137059,6430,alter ego,1226947310 +137059,6430,androgyny,1216670624 +137059,6430,library,1194893990 +137059,6430,on dvr,1221398076 +137059,6430,rock concert footage,1227017937 +137059,6440,Annemari,1342815105 +137059,6440,box,1343835679 +137059,6440,hotel,1343835494 +137059,6440,library,1218833674 +137059,6440,writer's block,1343835561 +137059,6440,writing process,1343835481 +137059,6441,easily confused with other movie(s) (title),1230063787 +137059,6443,National Film Registry,1229967919 +137059,6466,Idi Amin,1178124176 +137059,6484,blindfold,1224887348 +137059,6485,amphibious vehicle,1225459415 +137059,6485,island,1225459427 +137059,6485,jungle,1225459438 +137059,6485,nature wildlife,1241042150 +137059,6485,no plot,1241042158 +137059,6485,not funny,1241042148 +137059,6485,TV show,1225459451 +137059,6485,wilderness,1226142762 +137059,6503,motorcycle,1178389303 +137059,6517,easily confused with other movie(s) (title),1234348483 +137059,6526,Annemari,1332603390 +137059,6526,Atomic bomb,1333639428 +137059,6526,grandmother,1333639450 +137059,6526,library,1218964451 +137059,6534,aircraft,1226091362 +137059,6534,angry,1226091408 +137059,6534,animal research,1226090713 +137059,6534,desert,1226091199 +137059,6534,dogs,1226091034 +137059,6534,EXPERIMENTS GONE AWRY,1226090631 +137059,6534,father daughter relationship,1226091386 +137059,6534,father-son relationship,1226091213 +137059,6534,FORBIDDEN LOVE,1226574464 +137059,6534,genetics,1226090568 +137059,6534,helicopters,1226574312 +137059,6534,lust for power,1226091104 +137059,6534,mad scientist,1226090887 +137059,6534,male nudity,1226091090 +137059,6534,memories,1226091006 +137059,6534,military,1226090980 +137059,6534,murder,1226143986 +137059,6534,radiation,1226573054 +137059,6534,subterranean,1226091153 +137059,6534,tissue regeneration,1226090421 +137059,6537,artificial human,1226770800 +137059,6537,artificial intelligence,1226770784 +137059,6537,car chase,1226771469 +137059,6537,cars,1226771445 +137059,6537,end of the world,1226771418 +137059,6537,female warriors,1226771703 +137059,6537,infernal machine,1226771354 +137059,6537,memasa's movies,1319986536 +137059,6537,motorcycle,1226771454 +137059,6537,not as good as the others,1226771612 +137059,6537,perfect movie to watch when having hangover,1241455022 +137059,6537,repetitive,1226771633 +137059,6537,stopped watching,1230468338 +137059,6537,TECHNOLOGY RUN AMOK,1226771676 +137059,6538,books,1215899265 +137059,6538,desire,1215936175 +137059,6538,diary,1215899339 +137059,6538,drinking,1215900397 +137059,6538,Erotic Thriller,1241185371 +137059,6538,father daughter relationship,1215969349 +137059,6538,France,1215966504 +137059,6538,gardener,1215900445 +137059,6538,imagination,1215898159 +137059,6538,lust,1215966298 +137059,6538,male nudity,1215897951 +137059,6538,masturbation,1215899209 +137059,6538,Nudity (Rear),1215898006 +137059,6538,Nudity (Topless - Notable),1215897993 +137059,6538,sex scenes,1215899533 +137059,6538,sexually leaky,1215935913 +137059,6538,smoking,1215899403 +137059,6538,swimming pool,1214132631 +137059,6538,waiter,1215900301 +137059,6538,whiskey,1215900345 +137059,6538,WRITER'S LIFE,1215898264 +137059,6538,writing,1215898283 +137059,6539,captain,1198346447 +137059,6539,cartoonish,1198348794 +137059,6539,disappointing,1241872322 +137059,6539,father daughter relationship,1198348437 +137059,6539,forced marriage,1198348322 +137059,6539,HEROIC MISSION,1198349203 +137059,6539,medallion,1198348681 +137059,6539,monkey,1198349503 +137059,6539,overrated,1241872356 +137059,6539,rival suitor,1198348594 +137059,6539,sailing ships,1198346082 +137059,6539,sword fight,1198348729 +137059,6539,undead,1198346432 +137059,6539,weaponsmith,1198346643 +137059,6541,comic book,1217697076 +137059,6541,library vhs,1196972860 +137059,6541,pulp,1241211719 +137059,6541,submarine,1214133212 +137059,6541,Venice,1214133228 +137059,6542,anti-war,1241088557 +137059,6542,multinational settings,1176996054 +137059,6542,See: Merry Christmas (Joyeux Noël),1230133079 +137059,6552,heart,1307968905 +137059,6552,library,1212945909 +137059,6552,organ,1307968942 +137059,6552,prostitution,1307991131 +137059,6552,To See,1208001696 +137059,6567,1980s,1181389164 +137059,6567,anti-hero,1181389077 +137059,6567,army,1181317531 +137059,6567,black market,1181375739 +137059,6567,DRUG TRADE,1181375894 +137059,6567,drugs,1181375967 +137059,6567,killing time and others,1181376072 +137059,6567,MILITARY LIFE,1241091588 +137059,6567,premiere (outside Toronto Film Festivals) postponed by two years due to 9/11,1181318402 +137059,6567,The fall of the Berlin wall,1181317379 +137059,6569,hotel,1203173668 +137059,6587,Golden Raspberry (Worst Actor),1224355257 +137059,6587,Golden Raspberry (Worst Actress),1224353420 +137059,6587,Golden Raspberry (Worst Picture),1224352779 +137059,6591,1960s,1181074713 +137059,6591,abuse,1181131001 +137059,6591,Catholicism,1181074205 +137059,6591,compulsory adoption,1181082774 +137059,6591,convent,1181074188 +137059,6591,degradation,1181074256 +137059,6591,deprivation of freedom,1181081901 +137059,6591,despair,1181074289 +137059,6591,hypocrisy,1181083162 +137059,6591,illegitimate child,1181082261 +137059,6591,Ireland,1181082000 +137059,6591,punishment,1181083552 +137059,6591,true story,1241182267 +137059,6611,dogs,1263218236 +137059,6611,library,1223728148 +137059,6618,on dvr,1327343573 +137059,6618,To See,1203854782 +137059,6620,husband-wife relationship,1363283240 +137059,6620,Netflix Finland,1355574289 +137059,6643,Noriko Trilogy,1189626707 +137059,6643,on dvr,1259935719 +137059,6644,To See,1221996691 +137059,6645,androgyny,1207833005 +137059,6645,bald nemesis,1207831370 +137059,6645,cars,1207833311 +137059,6645,clinical,1207829809 +137059,6645,conformity,1207830169 +137059,6645,consumerism,1207830195 +137059,6645,de-genderization,1217507972 +137059,6645,genderlessness,1207831141 +137059,6645,hologram,1207833496 +137059,6645,indifference,1207832035 +137059,6645,medicine,1207829622 +137059,6645,motorcycle,1207833337 +137059,6645,Nudity (Topless),1207829723 +137059,6645,robots,1207831443 +137059,6645,surveillance,1207832794 +137059,6645,utilitarianism,1207832493 +137059,6645,white,1207832135 +137059,6648,courtesan,1170963446 +137059,6660,library,1219957401 +137059,6662,Netflix Finland,1375433801 +137059,6663,doomsday,1170942016 +137059,6665,on dvr,1309193192 +137059,6665,remake,1309812826 +137059,6665,vampires,1309812143 +137059,6668,memasa's movies,1308832765 +137059,6668,picturesque drama,1241043725 +137059,6668,quiet,1244375063 +137059,6668,village,1172470062 +137059,6669,altruism,1241127760 +137059,6669,cancer,1320009658 +137059,6669,cathartic,1241127887 +137059,6669,cdon,1192457953 +137059,6669,Fantastic Foreign Films,1241127838 +137059,6669,funereal,1241127757 +137059,6669,legacy,1241127753 +137059,6669,memasa's movies,1308831610 +137059,6669,poignant,1241127822 +137059,6669,posthumous fame,1174157028 +137059,6669,purposefulness,1241127728 +137059,6669,Underrated piece of genius,1241127771 +137059,6669,virtuous,1241127735 +137059,6672,atrocity,1400533702 +137059,6672,kolmasulottuvuus.fi,1378913564 +137059,6672,photographer,1173632455 +137059,6680,LABOR UNIONS,1215854273 +137059,6680,strippers,1197112694 +137059,6680,To See,1215854062 +137059,6684,library,1216470297 +137059,6690,angel,1323424168 +137059,6690,boxing,1323424028 +137059,6690,brain damage,1323424229 +137059,6690,heaven and hell,1323424053 +137059,6690,lesbian character,1323424193 +137059,6690,library,1206519410 +137059,6690,memasa's movies,1323423720 +137059,6690,shooting,1323540179 +137059,6690,souls,1323424303 +137059,6690,suicide attempt,1323540336 +137059,6690,supermarket,1323540237 +137059,6709,Annemari,1333809746 +137059,6711,Amazing Cinematography,1241480432 +137059,6711,less than I expected,1241480413 +137059,6711,on dvr,1224884762 +137059,6711,overrated,1188565844 +137059,6711,See: In the Mood for Love (Fa yeung nin wa),1217453816 +137059,6726,Alzheimer's disease,1217535896 +137059,6726,library vhs,1217535912 +137059,6726,rare,1221399843 +137059,6726,To See,1217536989 +137059,6727,actors and acting,1310221369 +137059,6727,movie business,1310221331 +137059,6727,on dvr,1309193308 +137059,6727,sniper,1310221402 +137059,6734,invisibility,1180558622 +137059,6756,adoption,1203193452 +137059,6756,baby,1203193397 +137059,6756,ensemble cast,1241025497 +137059,6756,hotel,1203193933 +137059,6756,motherhood,1203193954 +137059,6756,on dvr,1202396904 +137059,6756,pilferage,1203194101 +137059,6756,Reiki,1203193911 +137059,6756,workout,1203193768 +137059,6768,16th century,1239582372 +137059,6768,historically inaccurate,1241043775 +137059,6768,lust for power,1239582232 +137059,6768,Luther,1241043794 +137059,6768,monks,1239639453 +137059,6770,Netflix Finland,1356023425 +137059,6772,library,1195911422 +137059,6772,teacher,1189776884 +137059,6772,teacher as protagonist,1191059621 +137059,6773,cycling,1193692797 +137059,6773,dogs,1179870982 +137059,6773,interesting animation style,1241192264 +137059,6773,no dialogue,1241192277 +137059,6773,train,1191073718 +137059,6780,paralysis,1309801860 +137059,6782,abroad,1241041950 +137059,6782,bands,1241041940 +137059,6782,bar,1223810408 +137059,6782,barber,1223810443 +137059,6782,camp,1223803137 +137059,6782,cars,1223844158 +137059,6782,coffin,1223805456 +137059,6782,Going West,1223807851 +137059,6782,hair,1223804006 +137059,6782,hunger,1223844274 +137059,6782,library,1192476342 +137059,6782,manager,1223802734 +137059,6782,music business,1241041960 +137059,6782,quirky,1241042004 +137059,6782,road movie,1241042035 +137059,6782,rock and roll,1241041970 +137059,6782,ruutu.fi,1398698381 +137059,6782,satire,1241041963 +137059,6783,on dvr,1355149904 +137059,6785,National Film Registry,1230755329 +137059,6785,on dvr,1358521857 +137059,6789,easily confused with other movie(s) (title),1239116513 +137059,6789,library,1239116504 +137059,6789,Nudity (Topless),1242340144 +137059,6789,obsession,1242340104 +137059,6789,real-life married couple,1239116479 +137059,6789,remade,1242340351 +137059,6790,easily confused with other movie(s) (title),1237888704 +137059,6791,library vhs,1197410702 +137059,6796,National Film Registry,1229968306 +137059,6800,motorcycle,1178363347 +137059,6807,british comedy,1241442201 +137059,6836,invisibility,1180558253 +137059,6840,National Film Registry,1230732336 +137059,6852,National Film Registry,1230748036 +137059,6856,National Film Registry,1228236001 +137059,6857,library,1203365341 +137059,6857,ninja,1203364825 +137059,6858,hitchhiker,1310245395 +137059,6858,library,1210005655 +137059,6858,low budget,1310245498 +137059,6858,minimal,1310245540 +137059,6858,on dvr,1309346352 +137059,6858,sailing,1310245732 +137059,6858,swimming,1310245470 +137059,6867,books,1208436580 +137059,6867,librarians,1208436470 +137059,6867,model railroading,1230140136 +137059,6867,model train,1208436914 +137059,6867,phone,1208436380 +137059,6867,satirical,1208436522 +137059,6867,vertically challenged people,1208436433 +137059,6867,video camera,1208436539 +137059,6867,village,1208436485 +137059,6870,library,1217695521 +137059,6870,Netflix Finland,1383505250 +137059,6874,animated segments,1205898013 +137059,6874,eye patch,1309610359 +137059,6874,Kick-Butt Women,1216394691 +137059,6874,memasa's movies,1308832945 +137059,6874,revenge,1241873618 +137059,6874,RZA (composer),1205247329 +137059,6874,See: Samurai Fiction,1217453549 +137059,6874,See: Thriller: A Cruel Picture (Thriller - en grym film),1224842661 +137059,6874,whistling,1217717938 +137059,6874,yakuza,1207495536 +137059,6881,neighbors,1198276066 +137059,6884,DRUG TRADE,1177792231 +137059,6884,inspired by a real-life person,1177792069 +137059,6884,journalism,1241043998 +137059,6884,legislation,1177859357 +137059,6885,library,1197035864 +137059,6885,tattoo,1217161438 +137059,6890,Netflix Finland,1356884839 +137059,6896,To See,1357053977 +137059,6909,blindness,1217104174 +137059,6909,ghosts,1217104271 +137059,6909,remade,1224075361 +137059,6920,on dvr,1385367814 +137059,6932,Bollocks,1230662588 +137059,6932,boss,1230488633 +137059,6932,good story & bad directing,1241184827 +137059,6932,hoax,1230488462 +137059,6932,lies,1230488553 +137059,6932,news industry,1230488213 +137059,6932,news media,1230488185 +137059,6932,newspaper theme,1230488199 +137059,6932,on dvr,1229691001 +137059,6932,overrated,1241184859 +137059,6932,slow and predictable plot,1241184914 +137059,6932,stale,1241184852 +137059,6932,stopped watching,1230468415 +137059,6932,true story,1230488359 +137059,6932,TWENTYSOMETHING LIFE,1230488302 +137059,6932,WORK ETHICS,1241184869 +137059,6932,workplace,1230488580 +137059,6934,memasa's movies,1320007972 +137059,6942,idealistically romantic,1250683384 +137059,6942,on dvr,1221650773 +137059,6942,predictable,1317234870 +137059,6947,library,1232790037 +137059,6947,memasa's movies,1320008366 +137059,6950,Annemari,1351535178 +137059,6950,blindfold,1224887670 +137059,6953,library,1209717312 +137059,6953,Netflix Finland,1356022818 +137059,6954,library,1221393495 +137059,6954,To See,1216493632 +137059,6957,Netflix Finland,1388153536 +137059,6961,adultery,1221601188 +137059,6961,autumnal,1221591952 +137059,6961,breakthroughs,1221592293 +137059,6961,dysfunctional family,1221596200 +137059,6961,England,1221592160 +137059,6961,Erotic,1220047239 +137059,6961,FATHERS AND SONS,1221591914 +137059,6961,grandfather,1221600185 +137059,6961,husband-wife relationship,1221593365 +137059,6961,library,1218965305 +137059,6961,male nudity,1221592060 +137059,6961,melancholy,1221658260 +137059,6961,MEMBERS OF THE PRESS,1221601675 +137059,6961,MOTHERS AND DAUGHTERS,1221591932 +137059,6961,multinational settings,1221592375 +137059,6961,Nudity (Topless - Notable),1221584531 +137059,6961,parliament,1221601381 +137059,6961,passion,1221601614 +137059,6961,politicians,1221591845 +137059,6961,sex scenes,1221592019 +137059,6961,TV show,1221600615 +137059,6961,upper class,1221595940 +137059,6963,To See,1206822312 +137059,6967,To See,1219958238 +137059,6967,ventriloquist,1219958035 +137059,6971,1940's,1201802023 +137059,6971,abroad,1201802421 +137059,6971,Christmas,1201802548 +137059,6971,Europe Trilogy,1189492165 +137059,6971,father-daughter relationship,1201802394 +137059,6971,Germany,1201801984 +137059,6971,hypnosis,1201801813 +137059,6971,idealism,1201802243 +137059,6971,Jews,1201802338 +137059,6971,library vhs,1200757720 +137059,6971,love,1201802525 +137059,6971,model railroading,1201801668 +137059,6971,narrated,1201802079 +137059,6971,Netflix Finland,1374407214 +137059,6971,partially black and white,1201802142 +137059,6971,partisans,1201802308 +137059,6971,postwar,1201801927 +137059,6971,priest,1201802568 +137059,6971,religion,1201802261 +137059,6971,trains,1201802217 +137059,6971,uncle,1201802096 +137059,6971,werewolves,1201801611 +137059,6972,Teddy Award,1217514193 +137059,6974,easily confused with other movie(s) (title),1230730108 +137059,6975,child in peril,1309721007 +137059,6975,despair,1309893336 +137059,6975,egg,1309721115 +137059,6975,Loss of child,1309721215 +137059,6975,on dvr,1309194525 +137059,6975,remote control,1309721164 +137059,6975,sadism,1309721273 +137059,6975,vacation,1309720937 +137059,6985,on dvr,1385367629 +137059,6986,National Film Registry,1229967741 +137059,6987,carnival,1209657559 +137059,6987,fiancée,1209657731 +137059,6987,german expressionism,1241184172 +137059,6987,hypnosis,1209657425 +137059,6987,insane asylum,1209655527 +137059,6987,library vhs,1206517054 +137059,6987,mad scientist,1209657444 +137059,6987,murder,1209657571 +137059,6987,prophecy,1209657583 +137059,6987,Scary Movies To See on Halloween,1241184158 +137059,6987,Sleeper,1209657343 +137059,6987,trailblazing,1241184114 +137059,6988,boxing,1241025259 +137059,6988,buddhism,1241025262 +137059,6988,classic,1241025265 +137059,6988,domestic violence,1210436603 +137059,6988,drinking,1210437463 +137059,6988,father daughter relationship,1210438664 +137059,6988,FORBIDDEN LOVE,1241025271 +137059,6988,gambling,1210437369 +137059,6988,idealism,1241025282 +137059,6988,interracial romance,1241025284 +137059,6988,library vhs,1194977269 +137059,6988,melodrama,1241025293 +137059,6988,my shopping list,1378035252 +137059,6988,National Film Registry,1229968789 +137059,6988,opium,1210437211 +137059,6988,perfect,1241025291 +137059,6988,racial stereotype,1241025303 +137059,6988,racism,1210436586 +137059,6988,religion,1241025315 +137059,6988,unbelief,1210438549 +137059,7000,blindfold,1224887586 +137059,7000,Golden Raspberry (Worst Picture),1224351310 +137059,7008,AMERICANS ABROAD,1316790767 +137059,7008,apartment,1316790980 +137059,7008,bitter,1316791522 +137059,7008,deceased family member,1316791330 +137059,7008,double life,1316790536 +137059,7008,expatriate,1316790796 +137059,7008,film within a film,1316791117 +137059,7008,hotel,1316790900 +137059,7008,masturbation,1316791016 +137059,7008,memasa's movies,1324996274 +137059,7008,Nudity (Rear),1316791450 +137059,7008,Nudity (Topless - Notable),1316791418 +137059,7008,older man younger woman,1316791266 +137059,7008,on dvr,1309193139 +137059,7008,sex scenes,1316791189 +137059,7008,suicide,1316790831 +137059,7011,Annemari,1332865710 +137059,7011,black comedy,1332954686 +137059,7011,bullfighting,1332955125 +137059,7011,male nudity,1332955154 +137059,7011,masturbation,1332954797 +137059,7011,movie theatre,1332955208 +137059,7011,murder,1332955365 +137059,7011,Nudity (Full Frontal),1332955022 +137059,7011,Nudity (Topless),1332955051 +137059,7011,police investigation,1332955308 +137059,7011,religious oppression,1332954936 +137059,7011,teacher student relationship,1332955239 +137059,7013,National Film Registry,1230751703 +137059,7022,anomie,1213444447 +137059,7022,basketball,1213819621 +137059,7022,controversial,1241194283 +137059,7022,Dream Sequence,1214131677 +137059,7022,dreams,1214131691 +137059,7022,exploitation,1241194292 +137059,7022,field trip,1213820935 +137059,7022,friends,1215960148 +137059,7022,game,1213819913 +137059,7022,goretastic,1241194213 +137059,7022,island,1213822271 +137059,7022,obedience,1215960108 +137059,7022,punishment,1215959990 +137059,7022,Savage,1215959464 +137059,7022,school,1213444501 +137059,7022,See: Wishing Stairs (Yeogo goedam 3: Yeowoo gyedan),1232715870 +137059,7022,splatter,1213445410 +137059,7022,surveillance,1213444539 +137059,7022,survival,1241194240 +137059,7022,teacher,1213821961 +137059,7022,To See,1203858662 +137059,7022,trust no one,1213822168 +137059,7022,weapons,1213822848 +137059,7023,ARRANGED MARRIAGES,1201798949 +137059,7023,closeted homosexual,1201796639 +137059,7023,cultural customs and traditions,1201798903 +137059,7023,facades,1201798923 +137059,7023,FATHERS AND SONS,1201799140 +137059,7023,green card,1201799336 +137059,7023,gym,1201796595 +137059,7023,heart problems,1201799388 +137059,7023,interracial romance,1201798595 +137059,7023,library vhs,1197200151 +137059,7023,mother-son relationship,1201799219 +137059,7023,motherhood,1201799229 +137059,7023,Nudity (Topless - Brief),1201798628 +137059,7023,painter,1201796618 +137059,7023,parents,1201798660 +137059,7023,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1201798780 +137059,7023,wedding,1201798677 +137059,7034,abjection,1217506143 +137059,7034,adolescence,1241186102 +137059,7034,birthday,1217509186 +137059,7034,closeted homosexual,1217507481 +137059,7034,coming of age,1217522807 +137059,7034,de-genderization,1217507954 +137059,7034,disability,1217506207 +137059,7034,discrimination,1217507651 +137059,7034,dreams,1217507386 +137059,7034,FIRST LOVE,1217508681 +137059,7034,friendship,1217510698 +137059,7034,glbt,1217509924 +137059,7034,kiss,1217509008 +137059,7034,library vhs,1196545294 +137059,7034,misinformation: disability,1241186118 +137059,7034,mother daughter relationship,1217516526 +137059,7034,Movielens QuickPick,1206007119 +137059,7034,otherness,1241186125 +137059,7034,prejudice,1217507289 +137059,7034,provocative,1217512567 +137059,7034,school,1217502479 +137059,7034,secrets,1217510744 +137059,7034,SEXUAL AWAKENING,1217517907 +137059,7034,sexuality,1217506252 +137059,7034,sister sister relationship,1217510709 +137059,7034,SMALL-TOWN LIFE,1217502421 +137059,7034,social commentary,1217510353 +137059,7034,stereotypes,1241186137 +137059,7034,Teddy Award,1217512983 +137059,7034,virginity,1217509492 +137059,7034,wheelchair,1217509077 +137059,7035,motorcycle,1178380143 +137059,7044,library,1221143451 +137059,7044,on dvr,1403805656 +137059,7055,National Film Registry,1228241158 +137059,7056,National Film Registry,1230753505 +137059,7059,National Film Registry,1230751567 +137059,7063,Heart of Darkness,1241130111 +137059,7063,Kinski got dubbed,1241130122 +137059,7063,megalomania,1241130130 +137059,7063,memasa's movies,1308832510 +137059,7065,National Film Registry,1229967937 +137059,7065,racism,1250877344 +137059,7066,banned movie,1309360144 +137059,7066,communism,1192467544 +137059,7066,Cultural Revolution,1192467875 +137059,7066,History,1241019981 +137059,7066,I'm feeling apologetic for not liking this movie,1192468369 +137059,7066,kite,1206535449 +137059,7066,library vhs,1192107922 +137059,7070,National Film Registry,1230754758 +137059,7071,National Film Registry,1228236142 +137059,7072,library,1352582442 +137059,7075,National Film Registry,1229970385 +137059,7076,National Film Registry,1229969491 +137059,7077,library vhs,1210437703 +137059,7077,rare,1221397967 +137059,7080,Annemari,1397492521 +137059,7080,National Film Registry,1228241918 +137059,7090,calligraphy,1237920267 +137059,7090,easily confused with other movie(s) (title),1237919321 +137059,7090,Netflix Finland,1356023387 +137059,7090,propaganda,1360695132 +137059,7091,absurd,1241126827 +137059,7091,football,1173971884 +137059,7091,slapstick,1173992016 +137059,7091,speakeasy,1231106312 +137059,7092,19th century,1197123950 +137059,7092,adultery,1197124398 +137059,7092,aristocracy,1197124261 +137059,7092,army,1197122730 +137059,7092,author:Leo Tolstoy,1241025378 +137059,7092,classic,1197122730 +137059,7092,dance,1197123895 +137059,7092,dated,1197124116 +137059,7092,dishonor,1197126666 +137059,7092,family roles,1197125218 +137059,7092,FORBIDDEN LOVE,1197125783 +137059,7092,forgiveness,1197123000 +137059,7092,gossip,1197126146 +137059,7092,guilt,1197126929 +137059,7092,high society,1197124772 +137059,7092,horse racing,1197126001 +137059,7092,institutions,1197126345 +137059,7092,jealousy,1197126067 +137059,7092,keeping up appearances,1197125523 +137059,7092,liars,1197124350 +137059,7092,LOVE TRIANGLES,1197124601 +137059,7092,marital duties,1197125447 +137059,7092,morals,1197126758 +137059,7092,mother-son relationship,1197124307 +137059,7092,opera,1197198571 +137059,7092,Russia,1197122730 +137059,7092,sentimental,1241025399 +137059,7092,separation,1197126837 +137059,7092,siblings,1197122730 +137059,7092,Society,1197125299 +137059,7092,steeplechase,1197125938 +137059,7092,train,1197124213 +137059,7092,unhappy marriage,1197122730 +137059,7092,Venice,1197126503 +137059,7099,great soundtrack,1397894450 +137059,7099,memasa's movies,1397151355 +137059,7099,recommended by WWF,1397894387 +137059,7107,librarians,1244643282 +137059,7109,library vhs,1217777906 +137059,7116,To See,1221402749 +137059,7118,To See,1203858136 +137059,7121,National Film Registry,1228242025 +137059,7123,library,1203364075 +137059,7124,archive footage,1379005660 +137059,7128,doomsday,1170944780 +137059,7132,National Film Registry,1230751676 +137059,7134,Europe Trilogy,1189492187 +137059,7139,grieving,1198869180 +137059,7139,IMMIGRANT LIFE,1223041470 +137059,7139,mourning,1178654637 +137059,7139,new beginning,1178654636 +137059,7139,touching,1178654677 +137059,7139,Young Artist Awards - Best Performance in a Feature Film: Young Actress Age Ten or Younger (Emma Bolger),1241191338 +137059,7141,easily confused with other movie(s) (title),1199624925 +137059,7141,To See,1203343443 +137059,7143,Honor,1177362545 +137059,7143,rebellion,1177588084 +137059,7147,conjoined twins,1221422531 +137059,7147,father-son relationship,1221421354 +137059,7147,fish,1221421649 +137059,7147,flowers,1221479205 +137059,7147,giant,1221421891 +137059,7147,male nudity,1221422480 +137059,7147,Nudity (Rear),1221422657 +137059,7147,ring,1221421679 +137059,7147,See: The Fall,1229543628 +137059,7147,storytelling,1241684500 +137059,7151,art patron,1198325646 +137059,7151,author:Tracy Chevalier,1198325701 +137059,7151,based on a book,1198275351 +137059,7151,butcher,1198275595 +137059,7151,camera obscura,1198321735 +137059,7151,class society,1198409583 +137059,7151,colourful,1241187169 +137059,7151,costume drama,1198409428 +137059,7151,Delft,1198274816 +137059,7151,dreamer,1198275622 +137059,7151,gossip,1198275677 +137059,7151,jealousy,1198275726 +137059,7151,maid,1198275037 +137059,7151,Netherlands,1198275014 +137059,7151,painter,1198275058 +137059,7153,gardener,1215900514 +137059,7153,memasa's movies,1319986669 +137059,7153,ring,1205417304 +137059,7154,library vhs,1210436793 +137059,7154,on dvr,1221399900 +137059,7156,Netflix Finland,1354643831 +137059,7156,To See,1220965526 +137059,7158,American dream,1241129866 +137059,7158,culture clash,1241129836 +137059,7158,immigrants,1241129873 +137059,7158,Iranian,1241129877 +137059,7158,Nudity (Rear),1240146524 +137059,7158,on dvr,1223808071 +137059,7158,sad but good,1241183334 +137059,7158,shades of gray,1241129886 +137059,7159,World War II,1292851040 +137059,7160,lesbian,1321535527 +137059,7160,library,1223640849 +137059,7160,memasa's movies,1391603794 +137059,7160,on dvr,1319984681 +137059,7160,Oscar (Best Actress),1321535477 +137059,7162,Netflix Finland,1360255512 +137059,7168,bad story,1241019120 +137059,7168,beautiful women,1241019127 +137059,7168,bisexual,1241019276 +137059,7168,DANGEROUS ATTRACTION,1234287888 +137059,7168,friendship,1234287463 +137059,7168,group sex,1234287304 +137059,7168,incest,1241019135 +137059,7168,jealousy,1234288460 +137059,7168,l'homme fatal,1234287853 +137059,7168,lesbian sex scene,1234288549 +137059,7168,manipulation,1234288877 +137059,7168,masturbation,1234287272 +137059,7168,misogyny,1234289018 +137059,7168,Nudity (Full Frontal - Notable),1234287113 +137059,7168,Nudity (Rear),1234287263 +137059,7168,Nudity (Topless - Notable),1234287181 +137059,7168,on dvr,1234003434 +137059,7168,orgasm,1234287284 +137059,7168,orgy,1234287293 +137059,7168,secretary,1234287416 +137059,7168,sexuality,1234287403 +137059,7168,sexually leaky,1234287391 +137059,7168,SOCIAL CLIMBING,1234288517 +137059,7168,trust,1234287549 +137059,7168,workplace,1234287426 +137059,7171,Netflix Finland,1379626427 +137059,7175,motorcycle,1178369996 +137059,7177,library,1199625299 +137059,7193,Golden Raspberry (Worst Actor),1224361228 +137059,7193,Golden Raspberry (Worst Picture),1224351241 +137059,7204,motorcycle,1178362718 +137059,7206,boss,1228662739 +137059,7206,cars,1228662619 +137059,7206,dogs,1228662610 +137059,7206,factory,1228661713 +137059,7206,house,1228662655 +137059,7206,juxtaposition,1228663021 +137059,7206,library,1201851045 +137059,7206,maid,1228662703 +137059,7206,man versus machine,1241088668 +137059,7206,neighbors,1228662630 +137059,7206,Oscar (Best Foreign Language Film),1241088696 +137059,7206,silent movie aesthetics,1241088671 +137059,7206,uncle,1228661680 +137059,7209,beach,1326711971 +137059,7209,hotel,1326711957 +137059,7209,no plot,1326734216 +137059,7209,vacation,1326655806 +137059,7210,National Film Registry,1230751273 +137059,7210,on dvr,1354624500 +137059,7218,National Film Registry,1230752174 +137059,7223,National Film Registry,1229970972 +137059,7225,Arnold Schwarzenegger,1332512737 +137059,7225,boring,1332512762 +137059,7225,music,1332512752 +137059,7234,library,1233695775 +137059,7234,library vhs,1196770716 +137059,7243,National Film Registry,1228236960 +137059,7248,library,1176756792 +137059,7248,Siam,1192452381 +137059,7253,National Film Registry,1230748328 +137059,7254,alternate endings,1241267957 +137059,7254,alternate reality,1201298164 +137059,7254,asylum,1201301114 +137059,7254,causality,1241267953 +137059,7254,FIRST LOVE,1201536492 +137059,7254,fortune-telling,1201301030 +137059,7254,great script,1241267968 +137059,7254,hypnosis,1201301136 +137059,7254,journal writing,1201301158 +137059,7254,memory,1201301197 +137059,7254,mental health,1201536470 +137059,7254,Netflix Finland,1375437096 +137059,7254,pedophile,1201300957 +137059,7256,survival,1167696569 +137059,7256,To See,1206459628 +137059,7260,Teddy Award,1217513163 +137059,7265,library,1217519582 +137059,7282,library,1197129017 +137059,7282,rare,1221400892 +137059,7282,spoof,1197129505 +137059,7288,library vhs,1251066678 +137059,7288,National Film Registry,1230728882 +137059,7299,inauthentic,1241043652 +137059,7299,inspired by a real-life person,1241043655 +137059,7300,To See,1240039072 +137059,7302,National Film Registry,1228239930 +137059,7303,library,1180795094 +137059,7307,easily confused with other movie(s) (title),1217535041 +137059,7309,library vhs,1231864091 +137059,7309,National Film Registry,1229967984 +137059,7318,androgyny,1189434009 +137059,7318,gross,1241187036 +137059,7318,multiphobic,1241187046 +137059,7318,overrated,1241186953 +137059,7318,portraying impaired people as spawns of satan is dubious if not despicable,1241186980 +137059,7318,violent,1241187124 +137059,7318,way way way overrated,1241187055 +137059,7323,1970s,1213079120 +137059,7323,1980s,1213079138 +137059,7323,East Germany,1178087933 +137059,7323,family bonds,1172701440 +137059,7323,historical,1241193522 +137059,7323,maintaining illusion,1170939271 +137059,7323,socialism,1178087882 +137059,7323,statue,1198541374 +137059,7323,The fall of the Berlin wall,1170938451 +137059,7323,wide spectrum of emotions,1241193485 +137059,7325,not funny,1241193557 +137059,7325,Remake,1241193584 +137059,7325,subgenre:cop buddies,1241193579 +137059,7327,Annemari,1337097896 +137059,7327,Brechtian,1170885887 +137059,7327,nurse,1339526162 +137059,7327,patient,1339530304 +137059,7351,art,1230210902 +137059,7351,artist,1230210934 +137059,7351,artists,1230210922 +137059,7351,Ray Johnson,1230210885 +137059,7352,library,1217506737 +137059,7361,constitution of individuality and identity,1173960641 +137059,7361,memasa's movies,1351171530 +137059,7361,memory,1173960081 +137059,7361,predestination,1173960826 +137059,7365,dark humor,1241027527 +137059,7365,eccentricity,1241027530 +137059,7365,father-son relationship,1208026614 +137059,7365,fortune-telling,1208026640 +137059,7365,gas station,1208436682 +137059,7365,grandmother,1208026458 +137059,7365,If you like Kaurismaki movies this movie might also be for you,1241027519 +137059,7365,library,1221389568 +137059,7365,love,1208026592 +137059,7365,pensive,1208026029 +137059,7365,psychiatry,1208026964 +137059,7365,taxi driver,1208026544 +137059,7365,truant,1208026430 +137059,7365,village,1208036982 +137059,7365,wintry,1241027512 +137059,7367,choir,1284216140 +137059,7367,gospel,1284216151 +137059,7371,art house,1241188377 +137059,7371,ascetic,1344948731 +137059,7371,austere,1344948749 +137059,7371,Brechtian,1241188381 +137059,7371,Community Laws,1241188491 +137059,7371,cult film,1241188394 +137059,7371,degradation,1344948737 +137059,7371,experimental,1241188371 +137059,7371,memasa's movies,1308832021 +137059,7371,social control,1170271764 +137059,7371,Theater,1241188499 +137059,7371,Underrated,1241188516 +137059,7371,USA - Land of Opportunities,1247078707 +137059,7371,village,1172470194 +137059,7373,automata,1241213418 +137059,7373,clockwork devices,1241213420 +137059,7373,daemons,1212842541 +137059,7373,steampunk,1241213415 +137059,7374,2D,1241042296 +137059,7374,cows,1193517481 +137059,7374,foreclosure,1220044257 +137059,7374,horses,1193517494 +137059,7374,rabbits,1193517512 +137059,7374,talking animals,1196536707 +137059,7382,1970s,1241044218 +137059,7382,agonizing,1241044222 +137059,7382,based on a book,1241044230 +137059,7382,childhood,1218894208 +137059,7382,country life,1241044233 +137059,7382,cycling,1218892560 +137059,7382,father-son relationship,1218892986 +137059,7382,field,1218892447 +137059,7382,friends,1218894487 +137059,7382,historical,1241044201 +137059,7382,kidnapping,1218893317 +137059,7382,library,1196512717 +137059,7382,loosely based on true events,1241044216 +137059,7382,MOTHERS AND SONS,1218892999 +137059,7382,parents,1218957577 +137059,7382,pigs,1218892945 +137059,7382,rural,1241044247 +137059,7382,secrets,1218893457 +137059,7382,siblings,1218893009 +137059,7382,subterranean,1218894186 +137059,7382,television,1218893131 +137059,7382,TRAPPED OR CONFINED,1241044237 +137059,7382,wheat,1218892457 +137059,7386,National Film Registry,1228240220 +137059,7387,motorcycle,1178374206 +137059,7387,To See,1309272983 +137059,7396,library,1195066039 +137059,7419,library,1212405434 +137059,7438,coffin,1223806405 +137059,7438,homage,1241874062 +137059,7438,Kick-Butt Women,1216394710 +137059,7438,memasa's movies,1308832304 +137059,7438,spaghetti western,1241874056 +137059,7441,Teddy Award,1217513266 +137059,7442,library,1218991871 +137059,7451,To See,1218837194 +137059,7454,heroine in tight suit,1241193255 +137059,7454,moronic,1241193262 +137059,7458,library,1227627625 +137059,7459,prison,1170871781 +137059,7482,National Film Registry,1230027352 +137059,7482,To See,1308766685 +137059,7486,1990s,1197240582 +137059,7486,abroad,1197240288 +137059,7486,addiction,1197239094 +137059,7486,alone,1197240143 +137059,7486,Argentina,1197238038 +137059,7486,Astor Piazzolla,1241042470 +137059,7486,bar,1197239204 +137059,7486,beaten,1197239603 +137059,7486,bittersweet,1197239722 +137059,7486,Buenos Aires,1197237995 +137059,7486,butchery,1197240379 +137059,7486,cooking,1197239134 +137059,7486,drab,1197241354 +137059,7486,Frank Zappa,1197240453 +137059,7486,gay,1197238075 +137059,7486,great use of music,1241042493 +137059,7486,jealousy,1197241278 +137059,7486,last tango in Buenos Aires,1197239068 +137059,7486,latin rhytms,1197238245 +137059,7486,library vhs,1192305066 +137059,7486,loneliness,1200687472 +137059,7486,male nudity,1197238651 +137059,7486,male prostitute,1197241178 +137059,7486,melancholy,1197238895 +137059,7486,on the road,1198604861 +137059,7486,on-off relationship,1197238874 +137059,7486,partially black and white,1197241480 +137059,7486,passionate,1197238922 +137059,7486,quarrelsome,1197240037 +137059,7486,restaurant,1197239217 +137059,7486,second chance,1197238334 +137059,7486,sex scenes,1197238377 +137059,7486,smoking,1197238577 +137059,7486,soccer,1197239274 +137059,7486,some elements of a road movie,1197240836 +137059,7486,STARTING OVER,1197238695 +137059,7486,tango,1197239039 +137059,7486,waterfall,1197241031 +137059,7486,wretched,1197239986 +137059,7487,1930s,1241042230 +137059,7487,based on autobiography,1241042233 +137059,7487,BOHEMIAN LIFE,1183985950 +137059,7487,cinematography,1174606277 +137059,7487,cult film,1239910518 +137059,7487,erotic,1170944247 +137059,7487,lesbian,1170943167 +137059,7487,memasa's movies,1308833733 +137059,7487,See: Frida,1227960417 +137059,7487,Sexual discovery,1170942330 +137059,7487,the first film to receive NC-17 rating,1183990063 +137059,7487,WRITER'S LIFE,1183990103 +137059,7502,my shopping list,1378036081 +137059,7566,7n Up (series),1255623630 +137059,7566,To See,1216465621 +137059,7569,gyrocopter,1224839656 +137059,7569,submarine,1255509206 +137059,7574,Annemari,1326844617 +137059,7574,DEATH OF A SPOUSE,1329208110 +137059,7574,family crisis,1329155624 +137059,7574,static,1329155750 +137059,7574,trains,1329208087 +137059,7584,National Film Registry,1228236222 +137059,7587,library vhs,1196429598 +137059,7614,National Film Registry,1230752019 +137059,7626,blindfold,1224888589 +137059,7700,library,1191866860 +137059,7713,National Film Registry,1229969871 +137059,7728,Annemari,1360497099 +137059,7728,murder,1361465788 +137059,7745,library,1233599534 +137059,7745,library vhs,1233599543 +137059,7754,library vhs,1249841569 +137059,7756,Annemari,1335700881 +137059,7766,Toho,1241178918 +137059,7769,16th century,1197741537 +137059,7769,better than expected,1241018720 +137059,7769,buddhism,1192630920 +137059,7769,civilians at war,1197032605 +137059,7769,combat strategy,1192641097 +137059,7769,compassion-stirring,1192640828 +137059,7769,despair,1192631156 +137059,7769,female warriors,1192633762 +137059,7769,fight for freedom,1192633732 +137059,7769,freedom,1192777671 +137059,7769,funeral customs,1206003729 +137059,7769,furious,1192632102 +137059,7769,hereafter,1192633680 +137059,7769,historical,1241018732 +137059,7769,last resort,1192630903 +137059,7769,military superiority,1199822276 +137059,7769,Should be linked with war movies such as 300; Braveheart; Talvisota,1192633143 +137059,7769,Siam,1241018738 +137059,7769,Superior numbers of Burmese soldiers vs. one village,1192630197 +137059,7769,survival,1192632154 +137059,7769,sword fight,1192630962 +137059,7769,village,1192630724 +137059,7770,island,1250939707 +137059,7773,To See,1203857455 +137059,7789,9/11,1178123769 +137059,7789,library,1218801198 +137059,7809,FATHERS AND SONS,1188305672 +137059,7809,filmed in Puolanka (Finland),1188309458 +137059,7809,real-life married couple,1241043481 +137059,7809,the couple is also married off-screen,1188245992 +137059,7809,WOMEN DURING WARTIME,1241043490 +137059,7809,women's auxiliary corps (Lotta),1188306337 +137059,7836,National Film Registry,1228236099 +137059,7896,National Film Registry,1228237003 +137059,7897,library,1220972215 +137059,7900,frankenstein,1217156481 +137059,7915,adoption,1203359561 +137059,7915,bird,1203359497 +137059,7915,father daughter relationship,1203359527 +137059,7915,father son relationship,1203359544 +137059,7915,forgery,1203359687 +137059,7915,gambling,1203360016 +137059,7915,gay samurai,1203537892 +137059,7915,great soundtrack,1241027606 +137059,7915,great use of music,1241027609 +137059,7915,homage,1241027601 +137059,7915,library vhs,1193693439 +137059,7915,martial arts,1203359875 +137059,7915,massage,1203359988 +137059,7915,mostly black and white,1203358467 +137059,7915,ninja,1203359848 +137059,7915,quirky,1241027597 +137059,7915,red,1241027594 +137059,7915,samurai,1203361232 +137059,7915,slow motion,1203360036 +137059,7915,stone throwing,1203361382 +137059,7915,stylized,1203360062 +137059,7915,sword,1203358511 +137059,7915,sword fight,1203358490 +137059,7915,tattoo,1203359461 +137059,7915,water,1203360313 +137059,7915,yakuza,1203359461 +137059,7919,breakthroughs,1241024610 +137059,7919,cdon,1232734869 +137059,7919,drinking,1175497211 +137059,7919,gangs of japan,1217608178 +137059,7919,gangsters,1175497042 +137059,7919,saving face,1175497098 +137059,7919,tuberculosis,1175496939 +137059,7924,library,1212943371 +137059,7925,16th century,1220192717 +137059,7925,gold,1220184361 +137059,7925,greed,1220184416 +137059,7925,hiding place,1220188629 +137059,7925,library,1212943262 +137059,7925,princess,1220184374 +137059,7925,samurai,1220184470 +137059,7926,cdon,1232735015 +137059,7932,To See,1203363937 +137059,7936,Annemari,1335973222 +137059,7936,island,1335973262 +137059,7937,childhood,1192121927 +137059,7937,desire,1196868509 +137059,7937,escapism,1192121137 +137059,7937,Faith Trilogy,1175692789 +137059,7937,hotel,1192120854 +137059,7937,illness,1192121489 +137059,7937,jealousy,1192121219 +137059,7937,longing,1192121606 +137059,7937,lust,1192307613 +137059,7937,masturbation,1204298512 +137059,7937,Nudity (Topless - Notable),1192121760 +137059,7937,quiet,1192120710 +137059,7937,seclusion,1192121411 +137059,7937,selfishness/unselfishness,1192307461 +137059,7937,SIBLING RELATIONSHIPS,1192120788 +137059,7937,train,1192122091 +137059,7937,vacation,1192120898 +137059,7937,variety show,1192204685 +137059,7937,vertically challenged people,1192205158 +137059,7937,very little dialogue,1192897606 +137059,7937,wartime,1192122131 +137059,7938,complaints,1176404728 +137059,7938,Faith Trilogy,1241027758 +137059,7938,love,1176405797 +137059,7938,my shopping list,1378035877 +137059,7938,priest,1176404054 +137059,7938,renunciation,1176403760 +137059,7938,secularization of the Church,1176405034 +137059,7938,self-hatred,1176405248 +137059,7938,suffering,1176406024 +137059,7938,suicide,1176404774 +137059,7938,unbelief,1176404017 +137059,7938,village,1176405685 +137059,7938,widows/widowers,1176405720 +137059,7939,dysfunctional family,1176309122 +137059,7939,Faith Trilogy,1241027965 +137059,7939,god,1176308378 +137059,7939,incestuous,1176309253 +137059,7939,mental illness,1176309305 +137059,7940,goth,1241024748 +137059,7941,Annemari,1340195345 +137059,7941,Russian roulette,1340702034 +137059,7943,easily confused with other movie(s) (title),1230748807 +137059,7943,National Film Registry,1230748797 +137059,7976,To See,1217520418 +137059,7981,better than the american version,1241185538 +137059,7981,inspirational,1241185567 +137059,7981,stylized,1241185550 +137059,7981,undercover cop,1172322000 +137059,7995,motorcycle,1178368224 +137059,8011,archive footage,1219144287 +137059,8012,bad-mouthing protagonist,1193691062 +137059,8012,childhood,1193690432 +137059,8012,cycling,1193690432 +137059,8012,Dream Sequence,1241089518 +137059,8012,dreams,1241089520 +137059,8012,FATHERS AND SONS,1202139680 +137059,8012,friendship,1193692094 +137059,8012,gambling,1193690433 +137059,8012,guardian,1202139719 +137059,8012,hitchhiker,1193690432 +137059,8012,library vhs,1192116997 +137059,8012,memasa's movies,1308831597 +137059,8012,MOTHERS AND SONS,1193690432 +137059,8012,motorcycle,1193692282 +137059,8012,road trip,1241089528 +137059,8012,searching,1241089532 +137059,8012,See: Tokyo Godfathers,1230223577 +137059,8012,summer vacation,1241089553 +137059,8012,surreal,1241089536 +137059,8012,tattoo,1193691828 +137059,8012,UNLIKELY FRIENDSHIPS,1201439921 +137059,8012,wry,1241089541 +137059,8014,Atmospheric,1241183957 +137059,8014,atonement,1220033820 +137059,8014,buddhist,1241183972 +137059,8014,calligraphy,1237920387 +137059,8014,cat,1220033356 +137059,8014,character driven,1241184000 +137059,8014,episodic,1220033724 +137059,8014,great photograpy,1241183981 +137059,8014,insularity,1220033543 +137059,8014,Isolation,1220033643 +137059,8014,lust,1220034346 +137059,8014,memasa's movies,1368904096 +137059,8014,monks,1220033427 +137059,8014,seasons,1198513693 +137059,8014,seclusion,1220034232 +137059,8014,sex scene,1220034027 +137059,8014,Snakes,1220034121 +137059,8042,National Film Registry,1230750665 +137059,8044,National Film Registry,1230732701 +137059,8117,black comedy,1290615887 +137059,8122,motorcycle,1178377799 +137059,8125,National Film Registry,1228236935 +137059,8125,To See,1204475522 +137059,8126,National Film Registry,1230755581 +137059,8128,Annemari,1333975980 +137059,8128,friendship,1334078370 +137059,8128,library,1210001725 +137059,8128,my shopping list,1380635683 +137059,8128,Nazis,1334078332 +137059,8128,wartime,1334069899 +137059,8132,easily confused with other movie(s) (title),1332956058 +137059,8133,ACTOR'S LIFE,1201821587 +137059,8133,actors,1201821580 +137059,8133,CLASS DIFFERENCES,1203198896 +137059,8133,class trilogy,1201852616 +137059,8133,corporate,1201821699 +137059,8133,Danish,1201904865 +137059,8133,FAMILIES IN CRISIS,1201821415 +137059,8133,funeral,1201821379 +137059,8133,hunting,1201822162 +137059,8133,loyalty vs. betrayal,1201822464 +137059,8133,management,1201822033 +137059,8133,materialism,1201822253 +137059,8133,merger,1201822303 +137059,8133,Nudity (Full Frontal - Brief),1201821533 +137059,8133,Nudity (Topless),1201821525 +137059,8133,son,1201822317 +137059,8133,steel mill,1201821854 +137059,8133,successor,1201822130 +137059,8133,suicide,1201821399 +137059,8133,theatre,1201821601 +137059,8133,WORK ETHICS,1201822196 +137059,8133,workplace,1201822186 +137059,8134,aviation,1178321079 +137059,8134,motorcycle,1178321079 +137059,8134,pollution,1178321079 +137059,8134,Visual spectacle,1241026168 +137059,8143,courtesan,1171904218 +137059,8154,Netflix Finland,1354643884 +137059,8157,comic book,1216566681 +137059,8157,Dream Sequence,1216566633 +137059,8157,end of war,1216566726 +137059,8157,girl,1216566653 +137059,8157,library,1216566450 +137059,8157,little red riding hood,1216566576 +137059,8157,museum,1216566461 +137059,8157,nocturnal,1216567110 +137059,8157,post-traumatic stress disorder,1216566486 +137059,8157,postwar,1216567706 +137059,8157,riot,1216566558 +137059,8157,sewer,1216567608 +137059,8157,sewer/tunnel chase,1216566593 +137059,8157,special forces,1216566536 +137059,8157,volkswagen,1216566613 +137059,8157,wolves,1216567906 +137059,8157,World War II,1216566702 +137059,8189,annoying little girl,1326120733 +137059,8191,library,1199470667 +137059,8197,Hiroshima,1369142372 +137059,8197,interracial romance,1369664038 +137059,8197,library,1224879378 +137059,8197,memasa's movies,1369473178 +137059,8207,library,1233666828 +137059,8235,National Film Registry,1230755104 +137059,8253,To See,1203342595 +137059,8254,blindfold,1224885528 +137059,8254,library,1223724205 +137059,8264,co-dependancy,1386877471 +137059,8264,decay,1386877423 +137059,8264,docventures,1398972952 +137059,8264,estate,1386877378 +137059,8264,mother daughter relationship,1386877490 +137059,8270,hairdresser,1192987266 +137059,8270,library,1199626704 +137059,8275,library vhs,1228153838 +137059,8292,based on a book,1273151569 +137059,8292,Dostoyevsky,1273151591 +137059,8292,library,1245500289 +137059,8327,dolls,1232726591 +137059,8327,Filmifriikki,1217757484 +137059,8327,Movielens QuickPick,1205511676 +137059,8327,To See,1203884586 +137059,8338,library,1199487775 +137059,8340,library,1239977410 +137059,8341,Charles Dickens,1241090105 +137059,8341,poverty,1241090136 +137059,8360,library,1220047842 +137059,8360,Netflix Finland,1372170992 +137059,8362,basic values,1174855004 +137059,8362,formulaic,1241089574 +137059,8362,grieving,1198869207 +137059,8362,guardian,1174854194 +137059,8362,mourning,1174854572 +137059,8362,oldschoolish,1241089584 +137059,8362,prom,1174854399 +137059,8362,upbringing,1174852305 +137059,8365,AGE DISPARITY ROMANCE,1241025079 +137059,8365,British,1241025070 +137059,8365,Character study,1241025051 +137059,8365,DEATH OF A SPOUSE,1228160361 +137059,8365,dialogue driven,1241025053 +137059,8365,easily confused with other movie(s) (title),1228152892 +137059,8365,mature,1241025059 +137059,8365,motherhood,1228152930 +137059,8365,MOTHERS AND DAUGHTERS,1228152920 +137059,8365,Nudity (Topless),1228175524 +137059,8365,older woman younger man,1228153003 +137059,8365,siblings,1228160330 +137059,8365,widows/widowers,1228153135 +137059,8367,library,1192518029 +137059,8368,broomstick,1205497172 +137059,8370,but amazing swordaction,1241185398 +137059,8370,cross dressing,1217608334 +137059,8370,sword fight,1198351153 +137059,8384,National Film Registry,1230749785 +137059,8405,Annemari,1334397785 +137059,8405,husband-wife relationship,1334569003 +137059,8405,insomnia,1334568926 +137059,8405,painter,1334568991 +137059,8405,To See,1239907470 +137059,8459,National Film Registry,1230732018 +137059,8459,To See,1215935726 +137059,8464,educational,1241441830 +137059,8464,fast food truths,1241441870 +137059,8464,obesity,1241441785 +137059,8464,us culture,1241441797 +137059,8482,painting,1215851597 +137059,8482,To See,1215850879 +137059,8483,motorcycle,1178380375 +137059,8485,buddhism,1203341290 +137059,8485,To See,1203341230 +137059,8488,adaptation,1171116012 +137059,8488,courtesan,1171117524 +137059,8491,burn victim,1217606433 +137059,8491,car chase,1217607971 +137059,8491,cars,1217607980 +137059,8491,chase,1217606859 +137059,8491,coverup,1217607691 +137059,8491,domineering mother,1217607925 +137059,8491,Drive-In,1217606946 +137059,8491,gangs,1217608113 +137059,8491,gangsters,1217608126 +137059,8491,headache,1217672706 +137059,8491,hearing impairment,1217675950 +137059,8491,heist,1217606772 +137059,8491,husband-wife relationship,1217629589 +137059,8491,infidelity,1217608460 +137059,8491,library,1196690755 +137059,8491,lip reading,1217607149 +137059,8491,mother-son relationship,1241090318 +137059,8491,National Film Registry,1241090315 +137059,8491,oedipal,1241090334 +137059,8491,Oedipus Complex,1241090325 +137059,8491,police,1217607453 +137059,8491,prison,1217607373 +137059,8491,trains,1217606261 +137059,8491,undercover cop,1217607384 +137059,8502,remake,1228241753 +137059,8507,freaks,1195987852 +137059,8507,National Film Registry,1230730013 +137059,8511,library,1219259349 +137059,8511,National Film Registry,1230747935 +137059,8516,Annemari,1356859052 +137059,8516,insightful,1356964810 +137059,8516,my shopping list,1380634718 +137059,8516,partially black and white,1356964660 +137059,8516,wartime,1356964832 +137059,8526,inventor,1245420597 +137059,8526,martial arts,1245420615 +137059,8526,remake,1245421303 +137059,8526,Slaughtered the book,1245420561 +137059,8526,statue,1245420624 +137059,8528,blindfold,1224886307 +137059,8529,library,1244202752 +137059,8530,library,1233598539 +137059,8533,CLASS DIFFERENCES,1233587024 +137059,8533,covers a lifespan,1241191396 +137059,8533,FIRST LOVE,1233587544 +137059,8533,generations,1234001928 +137059,8533,life choices,1233587049 +137059,8533,memories,1233587263 +137059,8533,memory loss,1233587623 +137059,8533,notebook,1214132171 +137059,8533,nursing home,1233587089 +137059,8533,on dvr,1227046435 +137059,8533,Rachel McAdams is hot,1241191384 +137059,8533,summery,1234001994 +137059,8533,To See,1204496088 +137059,8573,beautiful,1241026211 +137059,8573,debut film,1176645310 +137059,8573,dreamlike,1241026231 +137059,8573,fantasy world,1176645438 +137059,8573,love,1176645365 +137059,8573,multiple roles,1176995235 +137059,8573,my shopping list,1378035561 +137059,8573,notable soundtrack,1176645267 +137059,8573,on dvr,1224884785 +137059,8573,photographer,1176646459 +137059,8576,library vhs,1208019030 +137059,8589,based on a book,1176994275 +137059,8589,memasa's movies,1320361516 +137059,8599,easily confused with other movie(s) (title),1242442611 +137059,8600,basketball,1200156493 +137059,8600,corruption,1200156650 +137059,8600,gambling,1200156611 +137059,8600,gangster,1241088721 +137059,8600,library,1198954924 +137059,8600,money,1200156571 +137059,8600,pool,1200156589 +137059,8600,priest,1200156493 +137059,8600,safe (for valuables),1200156571 +137059,8601,on dvr,1338719218 +137059,8601,short,1338815998 +137059,8602,National Film Registry,1230755459 +137059,8603,Teddy Award,1217514496 +137059,8606,National Film Registry,1230753543 +137059,8606,short,1230753615 +137059,8607,baby,1230222223 +137059,8607,cross dressing,1230223910 +137059,8607,father daughter relationship,1230222245 +137059,8607,Gay Character,1230224347 +137059,8607,Japanese 'It's a Wonderful Life',1241089206 +137059,8607,searching,1230222116 +137059,8607,To See,1229896845 +137059,8609,To See,1214759731 +137059,8612,dogs,1214761278 +137059,8612,National Film Registry,1230749284 +137059,8618,library,1352576294 +137059,8618,National Film Registry,1230748715 +137059,8620,easily confused with other movie(s) (title),1240082010 +137059,8622,9/11,1172679115 +137059,8622,Golden Palm,1214151242 +137059,8622,Golden Raspberry (Worst Actor),1224355198 +137059,8622,library,1220195320 +137059,8641,Netflix Finland,1375435429 +137059,8641,news media,1393189867 +137059,8641,news story,1393189880 +137059,8641,rivalry,1393189893 +137059,8645,pregnancy,1177190163 +137059,8656,austere,1308049867 +137059,8656,lawyer,1308050107 +137059,8656,library,1224792817 +137059,8656,multiple storylines,1308049844 +137059,8656,murder,1308049800 +137059,8656,taxi driver,1308049788 +137059,8656,The Decalogue series,1241863962 +137059,8656,wandering,1308050463 +137059,8661,National Film Registry,1230732544 +137059,8665,realistic action,1241478853 +137059,8666,advertising,1203200789 +137059,8666,amusement park,1203201551 +137059,8666,basketball,1203201113 +137059,8666,Beautiful Woman,1241183790 +137059,8666,cats,1203200700 +137059,8666,comic book,1216565725 +137059,8666,cosmetics,1203201396 +137059,8666,drowning,1203200885 +137059,8666,duality,1203199496 +137059,8666,extrasensory visual capacity,1203200182 +137059,8666,female power,1203200324 +137059,8666,FEMMES FATALES,1203201852 +137059,8666,Gay Character,1203200823 +137059,8666,Golden Raspberry (Worst Actress),1224353363 +137059,8666,Golden Raspberry (Worst Picture),1224351885 +137059,8666,gynocentric,1203200373 +137059,8666,heroine in tight suit,1241183802 +137059,8666,management,1203200396 +137059,8666,mask,1203200427 +137059,8666,models,1203200772 +137059,8666,occult,1217101257 +137059,8666,painter,1203200452 +137059,8666,police,1203201021 +137059,8666,resurgence,1203200655 +137059,8666,ridiculous training sequence,1241183805 +137059,8666,superficial,1203201484 +137059,8666,supernatural,1203200910 +137059,8666,symbolism,1241183855 +137059,8666,transformation,1203201234 +137059,8666,wasted potential,1241183813 +137059,8666,whip,1203201661 +137059,8666,WORK ETHICS,1203201790 +137059,8666,workplace,1203200842 +137059,8670,allegory,1243954221 +137059,8670,based on a book,1243954306 +137059,8670,car chase,1243954115 +137059,8670,DOCTORS AND PATIENTS,1243954012 +137059,8670,german expressionism,1243953923 +137059,8670,ghosts reincarnation,1243954712 +137059,8670,hypnosis,1243953952 +137059,8670,library vhs,1191866674 +137059,8670,mental hospital,1243954188 +137059,8679,National Film Registry,1230732628 +137059,8690,World War II,1217672254 +137059,8703,To See,1224787064 +137059,8742,Golden Raspberry (Worst Actress),1224354599 +137059,8742,motorcycle,1178377587 +137059,8748,library vhs,1196951406 +137059,8748,rare,1221397000 +137059,8751,National Film Registry,1230731748 +137059,8751,To See,1230021467 +137059,8783,forest,1199469341 +137059,8783,memasa's movies,1308834003 +137059,8783,village,1172470136 +137059,8784,actors,1206385837 +137059,8784,home,1206386061 +137059,8784,jewish,1206385955 +137059,8784,memasa's movies,1350243712 +137059,8784,motorcycle,1206385785 +137059,8784,on the road,1206386006 +137059,8784,party,1206385861 +137059,8784,restaurant,1206385773 +137059,8784,spin the bottle,1206385909 +137059,8784,swimming pool,1206385991 +137059,8785,Noriko Trilogy,1189626687 +137059,8795,library,1231443681 +137059,8797,National Film Registry,1230755134 +137059,8798,assassins,1223208080 +137059,8798,cars,1223207789 +137059,8798,lawyers,1223267707 +137059,8798,memasa's movies,1308833574 +137059,8798,nightclub,1223208123 +137059,8798,taxi cabs,1223207803 +137059,8798,taxi driver,1223207628 +137059,8800,To See,1217827395 +137059,8810,memasa's movies,1352895002 +137059,8815,memasa's movies,1309092226 +137059,8833,19th century,1230295342 +137059,8833,aristocracy,1230295484 +137059,8833,Bollywood influence,1230295981 +137059,8833,bourgeois,1230293833 +137059,8833,disappointing,1241090475 +137059,8833,high society,1230295535 +137059,8833,husband-wife relationship,1230294136 +137059,8833,marriage,1230294143 +137059,8833,remake,1230294491 +137059,8833,SOCIAL CLIMBING,1230294173 +137059,8833,Society,1230295433 +137059,8833,upper class,1230295420 +137059,8849,Golden Raspberry (Worst Actor),1224361445 +137059,8849,Golden Raspberry (Worst Picture),1224326486 +137059,8865,alternate universe,1241192732 +137059,8865,aviation,1189005783 +137059,8865,future art deco,1241192727 +137059,8865,possible futures of the past,1241192702 +137059,8865,steampunk,1241192708 +137059,8865,understated,1189433731 +137059,8865,unique look,1241192711 +137059,8865,visually appealing,1241192693 +137059,8873,library,1201905549 +137059,8873,motorcycle,1178360879 +137059,8873,road trip,1243758394 +137059,8874,British,1224408499 +137059,8874,memasa's movies,1320924407 +137059,8910,activism,1239910165 +137059,8910,corporate,1239429689 +137059,8910,existentialism,1241192997 +137059,8910,library,1239116120 +137059,8910,salespeople,1239429507 +137059,8910,whimsical,1241193018 +137059,8912,taxi driver,1223207713 +137059,8922,epidemic,1219855435 +137059,8922,Europe Trilogy,1189492219 +137059,8928,Beautiful Woman,1243980385 +137059,8928,campy,1243980253 +137059,8928,madcap,1243980265 +137059,8928,Nudity (Topless - Brief),1244307073 +137059,8928,on dvr,1234003520 +137059,8937,good soundtrack that doesn't fit in the movie,1256309769 +137059,8937,sports,1256309802 +137059,8949,Annemari,1332603062 +137059,8949,dialogue driven,1332694589 +137059,8949,Film Pinot Noir,1229350983 +137059,8949,infidelity,1332691761 +137059,8949,library,1229947860 +137059,8949,To See,1208001950 +137059,8950,on dvr,1319985283 +137059,8950,PROSTITUTES,1347915259 +137059,8957,claustrophobic,1241212344 +137059,8957,DOCTORS AND PATIENTS,1226099249 +137059,8957,photographer,1226099227 +137059,8957,saw (tool),1226099756 +137059,8957,Toilet Monster,1226099170 +137059,8957,TRAPPED OR CONFINED,1226099170 +137059,8958,on dvr,1365073099 +137059,8961,my shopping list,1378035792 +137059,8966,interviews,1255168661 +137059,8966,male nudity,1255159920 +137059,8967,dolls,1232726784 +137059,8970,Biography,1241215132 +137059,8970,memasa's movies,1309092556 +137059,8970,SINGLE PARENTS,1194469552 +137059,8970,WRITER'S LIFE,1194469512 +137059,8973,actors,1203193238 +137059,8973,blackmail,1202399725 +137059,8973,Catholicism,1202399399 +137059,8973,choir,1202399741 +137059,8973,drags,1202399534 +137059,8973,drugs,1202399543 +137059,8973,glbt,1202399570 +137059,8973,male nudity,1202399560 +137059,8973,movie business,1202399518 +137059,8973,movie theatre,1203193255 +137059,8973,movies about movies,1202399458 +137059,8973,Netflix Finland,1375438713 +137059,8973,priest,1202399662 +137059,8973,religion,1202399845 +137059,8973,renunciation,1202399819 +137059,8973,revenge,1202399858 +137059,8973,school,1202399399 +137059,8973,sex reassignment surgery,1202399899 +137059,8973,sex scenes,1202399426 +137059,8973,sexual abuse,1202399618 +137059,8973,sexuality,1202399426 +137059,8973,singing,1202399748 +137059,8973,soccer,1202399760 +137059,8973,teacher,1202399601 +137059,8973,unbelief,1202399832 +137059,8974,underwater,1189433801 +137059,8983,9th century,1218920185 +137059,8983,female warriors,1218923823 +137059,8983,forest,1218923685 +137059,8983,heroine,1218923871 +137059,8983,saturated,1218957345 +137059,8983,Visual spectacle,1218924024 +137059,8984,great soundtrack,1242045782 +137059,8984,on dvr,1234003364 +137059,8985,RZA (composer),1205247454 +137059,9008,invisibility,1180558504 +137059,9013,less than 300 ratings,1212945818 +137059,25738,library vhs,1249935879 +137059,25738,Native Americans,1258898485 +137059,25746,To See,1217534336 +137059,25750,amateur detective,1347461150 +137059,25750,Dream Sequence,1347461009 +137059,25750,innovative,1347461045 +137059,25750,movie theatre,1347461104 +137059,25750,National Film Registry,1230755539 +137059,25750,pocket watch,1347460995 +137059,25750,projectionist,1347461083 +137059,25750,rival suitor,1347465280 +137059,25750,stealing,1347460944 +137059,25752,easily confused with other movie(s) (title),1230730117 +137059,25752,National Film Registry,1230730085 +137059,25753,greed,1217138607 +137059,25753,National Film Registry,1230731659 +137059,25755,National Film Registry,1230752928 +137059,25757,easily confused with other movie(s) (title),1230748671 +137059,25757,National Film Registry,1230748662 +137059,25763,To See,1217087366 +137059,25764,National Film Registry,1229969613 +137059,25766,National Film Registry,1228237119 +137059,25769,Annemari,1341133792 +137059,25769,classic,1341135351 +137059,25769,library,1238063455 +137059,25769,library vhs,1238063577 +137059,25769,memasa's movies,1392126452 +137059,25769,rivalry,1341165992 +137059,25771,Nudity (Topless),1224795832 +137059,25771,short,1224794419 +137059,25771,To See,1226571163 +137059,25773,National Film Registry,1230749622 +137059,25774,on dvr,1385367988 +137059,25788,library vhs,1197199206 +137059,25788,National Film Registry,1230755217 +137059,25797,National Film Registry,1230731201 +137059,25822,memasa's movies,1309091680 +137059,25825,easily confused with other movie(s) (title),1230730362 +137059,25833,courtesan,1173439709 +137059,25840,National Film Registry,1230753363 +137059,25850,New Year's Eve,1310298090 +137059,25850,on dvr,1309192794 +137059,25852,remade,1310810059 +137059,25855,drinking,1231112038 +137059,25855,economic depression,1231106143 +137059,25855,end of war,1231105900 +137059,25855,FALL FROM POWER,1231112062 +137059,25855,lawyers,1231105882 +137059,25855,legislation,1231104637 +137059,25855,library,1176383610 +137059,25855,montage sequence,1231112017 +137059,25855,singing,1231112029 +137059,25855,speakeasy,1231106359 +137059,25855,taxi driver,1231104585 +137059,25855,underground economy,1231105770 +137059,25856,my shopping list,1389039303 +137059,25856,National Film Registry,1228236050 +137059,25856,Netflix Finland,1388154622 +137059,25865,letters,1214148669 +137059,25885,Adolf Hitler,1230202350 +137059,25885,air force,1230144465 +137059,25885,deprivation of freedom,1230141868 +137059,25885,Disney,1241016722 +137059,25885,ethnic conflict,1230158147 +137059,25885,eugenics,1230203531 +137059,25885,fascism,1230140324 +137059,25885,Free to download,1241016699 +137059,25885,freedom,1230139222 +137059,25885,good versus evil,1230142157 +137059,25885,google video,1241016737 +137059,25885,historically inaccurate,1230143768 +137059,25885,History,1241016692 +137059,25885,indoctrination,1230141136 +137059,25885,Internet Archive,1241016691 +137059,25885,legislation,1230141739 +137059,25885,manchurian,1230157980 +137059,25885,mass behavior,1230140027 +137059,25885,my addition to ML,1230328280 +137059,25885,narrated,1230164117 +137059,25885,National Film Registry,1241016682 +137059,25885,Nazis,1230139912 +137059,25885,news media,1230140781 +137059,25885,Oscar (Best Documentary Feature),1241016679 +137059,25885,political,1230139668 +137059,25885,POLITICAL UNREST,1230144206 +137059,25885,propaganda,1230134352 +137059,25885,racism,1230142300 +137059,25885,religion,1230139556 +137059,25885,stereotypes,1230139881 +137059,25885,subordination,1230142451 +137059,25885,symbolism,1230140241 +137059,25885,Third Reich,1230142772 +137059,25885,USA,1230135488 +137059,25885,well done,1241016666 +137059,25885,Why We Fight series,1241016656 +137059,25885,world politics,1230141579 +137059,25885,World War II,1230135109 +137059,25893,National Film Registry,1230750794 +137059,25905,National Film Registry,1230750960 +137059,25914,16th century,1336936923 +137059,25914,Annemari,1336304514 +137059,25923,library,1203863166 +137059,25926,neorealism,1250936210 +137059,25926,postwar,1250935957 +137059,25941,National Film Registry,1230749474 +137059,25942,National Film Registry,1230749753 +137059,25943,National Film Registry,1230751351 +137059,25952,letters,1214148575 +137059,25963,library vhs,1250609146 +137059,25963,street children,1259338732 +137059,25995,Samurai Trilogy,1250939205 +137059,25996,National Film Registry,1230755833 +137059,25999,motorcycle,1178361083 +137059,26005,Samurai Trilogy,1250939193 +137059,26007,based on a book,1223985365 +137059,26007,library,1222440672 +137059,26012,Samurai Trilogy,1250939173 +137059,26055,easily confused with other movie(s) (title),1250976464 +137059,26064,businessman,1217718326 +137059,26064,cdon,1232732761 +137059,26064,corporate,1217717710 +137059,26064,corruption,1217717678 +137059,26064,deceased family member,1217718518 +137059,26064,Filmifriikki,1255255158 +137059,26064,funeral,1217717733 +137059,26064,Hamlet,1241025652 +137059,26064,library,1212943479 +137059,26064,MEMBERS OF THE PRESS,1217718647 +137059,26064,my shopping list,1378035345 +137059,26064,play.com,1220541106 +137059,26064,postwar,1217717501 +137059,26064,revenge,1217717747 +137059,26064,Shakespearean,1241025644 +137059,26064,siblings,1217719428 +137059,26064,To See,1203854205 +137059,26064,wedding,1217717723 +137059,26064,whistling,1217717890 +137059,26078,Netflix Finland,1368906287 +137059,26082,To See,1204297951 +137059,26084,National Film Registry,1230751234 +137059,26117,easily confused with other movie(s) (title),1230748818 +137059,26131,library,1191519010 +137059,26131,on dvr,1204498222 +137059,26133,Christmas,1224248830 +137059,26133,library vhs,1224427857 +137059,26138,World War II,1292850881 +137059,26150,Biblical,1191861228 +137059,26150,iconography,1191861120 +137059,26150,library vhs,1191341563 +137059,26150,painter,1219855783 +137059,26150,reconciling,1191860352 +137059,26150,vow of silence,1195401834 +137059,26163,National Film Registry,1229971158 +137059,26170,Annemari,1339143479 +137059,26170,black,1339433358 +137059,26170,bride,1339433327 +137059,26170,FEMMES FATALES,1339433424 +137059,26170,homage to Hitchcock,1339424258 +137059,26170,revenge,1339433386 +137059,26170,wedding,1339433397 +137059,26211,easily confused with other movie(s) (title),1243862684 +137059,26220,car chase,1310144802 +137059,26220,cars,1310144738 +137059,26220,hit men,1309536441 +137059,26220,my addition to ML,1251900085 +137059,26220,on dvr,1256294509 +137059,26220,racing,1310144755 +137059,26220,revenge,1310144698 +137059,26222,drinking,1181667905 +137059,26222,FAMILIES IN CRISIS,1181667381 +137059,26222,friendship,1181667950 +137059,26222,gossip,1181667451 +137059,26222,imagination,1181667314 +137059,26222,poverty,1181667293 +137059,26222,slum,1181667252 +137059,26222,Tokyo,1181667268 +137059,26222,wife swapping,1181667603 +137059,26228,library,1272711604 +137059,26242,cafe,1198606603 +137059,26242,cars,1198606852 +137059,26242,chase,1198606524 +137059,26242,dusty,1198607805 +137059,26242,grudge,1198606826 +137059,26242,hinterland,1241127680 +137059,26242,monotonous,1241127678 +137059,26242,no plot,1241127675 +137059,26242,on the road,1198604808 +137059,26242,overrated,1241127665 +137059,26242,pointless,1241127668 +137059,26242,road rage,1241127689 +137059,26242,trucks,1199533736 +137059,26269,Lone Wolf and Cub series,1230222592 +137059,26270,Lone Wolf and Cub series,1230222650 +137059,26317,Nudity (Full Frontal - Notable),1358004622 +137059,26317,Nudity (Topless - Notable),1358004612 +137059,26317,on dvr,1357299576 +137059,26317,rape,1358015299 +137059,26340,Netflix Finland,1375435288 +137059,26350,library,1221571619 +137059,26350,on dvr,1310214155 +137059,26366,National Film Registry,1230731896 +137059,26430,library,1244813532 +137059,26471,Netflix Finland,1400588556 +137059,26472,National Film Registry,1230027183 +137059,26476,library,1203858933 +137059,26524,gay,1309434233 +137059,26524,news media,1250311900 +137059,26524,on dvr,1250104498 +137059,26524,politicians,1309434329 +137059,26524,politics,1250182319 +137059,26560,based on a book,1249817307 +137059,26560,remake,1249817291 +137059,26560,World War II,1260116694 +137059,26585,A Better Tomorrow Trilogy,1335692664 +137059,26585,brothers,1335692129 +137059,26585,counterfeiting,1335692234 +137059,26585,police,1335692169 +137059,26585,Subgenre: Heroic Bloodshed,1170887007 +137059,26585,Triad,1335692314 +137059,26587,Ten Commandments,1309546735 +137059,26599,1980s,1197909443 +137059,26599,closeted homosexual,1197908099 +137059,26599,correspondence,1197908062 +137059,26599,Flaming,1197908447 +137059,26599,gay,1197907536 +137059,26599,glbt,1197907556 +137059,26599,letters,1201534865 +137059,26599,male nudity,1197907569 +137059,26599,masturbation,1197908689 +137059,26599,mother daughter relationship,1197908135 +137059,26599,movie business,1197907891 +137059,26599,movies about movies,1198337840 +137059,26599,not funny,1241025543 +137059,26599,pseudonym,1197908264 +137059,26599,See: Happy Together (Buenos Aires Affair) (Chun gwong cha sit),1217517113 +137059,26599,siblings,1197909592 +137059,26599,Teddy Award,1217514565 +137059,26599,transsexuals,1197909066 +137059,26606,To See,1282058552 +137059,26612,A Better Tomorrow Trilogy,1335692703 +137059,26614,easily confused with other movie(s) (title),1225459935 +137059,26616,dubbed in English - horrible!,1241019544 +137059,26616,memasa's movies,1308833963 +137059,26616,Nudity (Topless - Notable),1183536874 +137059,26616,slave trade,1183498782 +137059,26649,library,1352574567 +137059,26662,airplane,1205497436 +137059,26662,apprenticeship,1205497323 +137059,26662,artists,1205497898 +137059,26662,attic,1205497801 +137059,26662,aviation,1205497407 +137059,26662,bakery,1205498691 +137059,26662,baking,1205497785 +137059,26662,beneficence,1205498502 +137059,26662,birds,1205497739 +137059,26662,broomstick,1205497042 +137059,26662,cats,1205497767 +137059,26662,cows,1205497859 +137059,26662,cycling,1205497458 +137059,26662,feel-good,1241185600 +137059,26662,flying,1205497416 +137059,26662,forest,1205497882 +137059,26662,girl,1205531856 +137059,26662,library,1195900623 +137059,26662,painting,1205497909 +137059,26662,radio,1205497551 +137059,26662,sea,1205497696 +137059,26662,storm,1205498738 +137059,26662,Studio Ghibli,1241185621 +137059,26662,talking animals,1205498361 +137059,26662,television,1205497957 +137059,26662,train,1205497655 +137059,26662,trains,1205497668 +137059,26662,watch the credits,1205495945 +137059,26662,zeppelin,1212582209 +137059,26680,1950s,1227017595 +137059,26680,cars,1227017572 +137059,26680,hair,1227017808 +137059,26680,Jail,1227017664 +137059,26680,juvenile deliquent,1241091675 +137059,26680,motorcycle,1227017583 +137059,26680,on dvr,1224854655 +137059,26680,orphanage,1227188530 +137059,26680,parody,1227017498 +137059,26680,rock and roll,1241091682 +137059,26680,tattoo,1227017606 +137059,26691,library vhs,1232634477 +137059,26691,rare,1232634520 +137059,26713,1960s,1215984276 +137059,26713,abroad,1215983728 +137059,26713,adoption,1215983610 +137059,26713,BRIEF ENCOUNTERS,1215984807 +137059,26713,mother-son relationship,1215983591 +137059,26713,on the fence,1216222707 +137059,26713,searching,1215984401 +137059,26713,time,1216233086 +137059,26713,To See,1211723834 +137059,26713,trains,1215984211 +137059,26713,wistful,1215984176 +137059,26729,Heart of Darkness,1232815319 +137059,26734,Golden Raspberry (Worst Actress),1224354236 +137059,26743,To See,1229034584 +137059,26776,aviation,1169934560 +137059,26776,pigs,1170919235 +137059,26776,Studio Ghibli,1241183496 +137059,26777,library,1250960225 +137059,26791,Golden Raspberry (Worst Actress),1224354149 +137059,26791,Golden Raspberry (Worst Picture),1224351380 +137059,26840,Movielens QuickPick,1205511824 +137059,26840,To See,1203344419 +137059,26865,blindfold,1224885465 +137059,26865,To See,1214743031 +137059,26898,ex-cop,1193481527 +137059,26898,gay,1193481555 +137059,26898,library vhs,1192711194 +137059,26898,safe (for valuables),1193497465 +137059,26898,Sexualized violence,1193481206 +137059,26898,violent,1193481234 +137059,26898,yakuza,1193481576 +137059,26903,antique,1221502976 +137059,26903,books,1221506811 +137059,26903,cats,1221477742 +137059,26903,comic book,1221503319 +137059,26903,famous theme song,1221479440 +137059,26903,Filmifriikki,1221591086 +137059,26903,FIRST LOVE,1241025104 +137059,26903,ghibli,1221478090 +137059,26903,girl,1221479367 +137059,26903,John Denver,1221478782 +137059,26903,librarians,1221502849 +137059,26903,mature,1241025108 +137059,26903,memasa's movies,1308831392 +137059,26903,prequel,1221478869 +137059,26903,prequel to:The Cat Returns,1221478621 +137059,26903,re-watch,1221570586 +137059,26903,school,1221479408 +137059,26903,setting:library,1221500430 +137059,26903,shop (establishment),1221570197 +137059,26903,teenage girl,1241025120 +137059,26903,teenager,1241025121 +137059,26903,violin,1221498773 +137059,26903,writer,1221506931 +137059,26939,autumnal,1200434926 +137059,26939,bank,1200435185 +137059,26939,Butler,1200435706 +137059,26939,cooking,1200434956 +137059,26939,cool design,1241027869 +137059,26939,dark comedy,1241027870 +137059,26939,dogs,1200435104 +137059,26939,drinking,1200434765 +137059,26939,economic depression,1200434785 +137059,26939,Finland Trilogy,1241027876 +137059,26939,gambling,1200434746 +137059,26939,library vhs,1191867290 +137059,26939,memasa's movies,1340980394 +137059,26939,movie theatre,1200435084 +137059,26939,restaurant,1200434718 +137059,26939,ruutu.fi,1398698321 +137059,26939,siblings,1200435147 +137059,26939,smoking,1200434798 +137059,26939,unemployment,1200434681 +137059,26939,workplace,1200436844 +137059,26954,bug hunt,1248196898 +137059,26954,easily confused with other movie(s) (title),1244455053 +137059,26954,gypsy,1248220399 +137059,26954,Julio Medem,1246804584 +137059,26954,male nudity,1248193749 +137059,26954,my addition to ML,1244455696 +137059,26954,Nudity (Rear),1248193737 +137059,26954,Nudity (Topless - Notable),1248193722 +137059,26954,sexual,1248193694 +137059,26954,village,1248194011 +137059,26954,wine,1248196969 +137059,27005,To See,1207240712 +137059,27108,black and white,1249411933 +137059,27108,Finnish,1249411869 +137059,27108,library,1249412067 +137059,27108,my addition to ML,1249412098 +137059,27112,memasa's movies,1320924356 +137059,27152,1980s,1237986210 +137059,27152,bad acting,1237986344 +137059,27152,cameos,1237984441 +137059,27152,drinking,1237984552 +137059,27152,music,1237984427 +137059,27152,musicians,1237984418 +137059,27152,predictable,1241019587 +137059,27152,punk rock,1241019578 +137059,27152,summery,1241019600 +137059,27152,To See,1231607186 +137059,27152,youth,1237984499 +137059,27186,curse,1229965776 +137059,27186,library vhs,1192710395 +137059,27186,magic,1229965839 +137059,27186,perseverance,1229965876 +137059,27186,rare,1230309413 +137059,27216,library vhs,1247949696 +137059,27266,1960s,1231070608 +137059,27266,2000s,1231070623 +137059,27266,androids,1231070830 +137059,27266,father daughter relationship,1231112435 +137059,27266,fear of commitment,1231070679 +137059,27266,gambling,1231070662 +137059,27266,hotel,1231071006 +137059,27266,library,1197201693 +137059,27266,melancholy,1231112488 +137059,27266,memories,1231071042 +137059,27266,numbers,1231070548 +137059,27266,on dvr,1220787569 +137059,27266,UNREQUITED LOVE,1231070502 +137059,27266,WRITER'S LIFE,1231070793 +137059,27271,19th century,1203195064 +137059,27271,androgyny,1203195084 +137059,27271,death penalty,1203195471 +137059,27271,execution,1203195449 +137059,27271,Filmifriikki,1232798126 +137059,27271,gay,1203195257 +137059,27271,gay samurai,1203537841 +137059,27271,geisha,1203195241 +137059,27271,great music,1241024824 +137059,27271,great soundtrack,1241024826 +137059,27271,great use of music,1241024828 +137059,27271,jealousy,1203195229 +137059,27271,library vhs,1193086623 +137059,27271,militia,1203195623 +137059,27271,my shopping list,1378035495 +137059,27271,samurai,1203195053 +137059,27271,sword fighting,1203195558 +137059,27271,understated,1320185944 +137059,27317,audition,1203173021 +137059,27340,1930s,1228260693 +137059,27340,baby,1228263842 +137059,27340,bad acting,1241019764 +137059,27340,bad casting,1241019771 +137059,27340,book-learned,1228340266 +137059,27340,Borneo,1228264750 +137059,27340,colonial power,1228260284 +137059,27340,concubine,1228264913 +137059,27340,culture clash,1228340124 +137059,27340,empire,1228262823 +137059,27340,father daughter relationship,1228265376 +137059,27340,illegitimate child,1228265140 +137059,27340,interracial romance,1228259838 +137059,27340,island,1228264771 +137059,27340,library vhs,1199567206 +137059,27340,on dvr,1221399783 +137059,27340,pointless,1241019795 +137059,27340,Predictable and unoriginal.,1241019781 +137059,27340,primitive peoples,1228259637 +137059,27340,tattoo,1228263359 +137059,27340,tribal,1228259824 +137059,27340,unhappy marriage,1228265447 +137059,27365,library,1249068599 +137059,27365,library vhs,1249068599 +137059,27376,Berlin,1250878681 +137059,27376,tunnels,1250867958 +137059,27376,Wall,1250876543 +137059,27397,memasa's movies,1328378934 +137059,27410,1940s,1217961857 +137059,27410,conspiracy,1213081338 +137059,27410,drinking,1217960228 +137059,27410,easily confused with other movie(s) (title),1217534993 +137059,27410,genocide,1217960951 +137059,27410,lawyers,1217961025 +137059,27410,legislation,1217961071 +137059,27410,library vhs,1203854512 +137059,27410,meeting,1217960539 +137059,27410,race,1217961365 +137059,27410,Reference to Aktion T4,1217961766 +137059,27410,secrets,1217994769 +137059,27410,SS,1217961738 +137059,27410,villa,1217960660 +137059,27410,World War II,1217960708 +137059,27416,a good comedy about a serious subject,1241089246 +137059,27416,ARRANGED MARRIAGES,1220811374 +137059,27416,forced marriage,1220811474 +137059,27416,friendship,1220812869 +137059,27416,grandmother,1220812407 +137059,27416,impotence,1220812641 +137059,27416,interracial romance,1241089256 +137059,27416,library vhs,1218925643 +137059,27416,Nudity (Topless),1220811773 +137059,27416,sex shop,1220812721 +137059,27432,To See,1223042764 +137059,27450,library,1230053446 +137059,27450,rare,1230064910 +137059,27482,cube,1392938125 +137059,27491,To See,1212946837 +137059,27523,To See,1203884502 +137059,27563,animated segments,1241027635 +137059,27563,dark comedy,1217777359 +137059,27563,unconventional,1171743364 +137059,27592,Movielens QuickPick,1205511502 +137059,27592,Revenge Trilogy,1178283708 +137059,27592,To See,1205511755 +137059,27608,god,1219266752 +137059,27641,memasa's movies,1308832559 +137059,27641,over-the-top ending,1320362396 +137059,27660,matrix,1241187882 +137059,27660,memasa's movies,1320008027 +137059,27660,several short films,1241187891 +137059,27664,motorcycle,1178369282 +137059,27671,1950s,1239722442 +137059,27671,based on a book,1239722426 +137059,27671,Berlinale 2003,1241017359 +137059,27671,deceased family member,1239721665 +137059,27671,Finnish,1241017366 +137059,27671,mother daughter relationship,1239722550 +137059,27671,predictable,1241017373 +137059,27671,rural,1241017437 +137059,27671,school,1239722526 +137059,27671,See: Mother of Mine,1239722144 +137059,27671,single mother,1239722483 +137059,27671,sister sister relationship,1239722600 +137059,27671,swamp,1239722351 +137059,27671,teacher student relationship,1239722578 +137059,27671,widows/widowers,1244545095 +137059,27700,1950s,1200156231 +137059,27700,based on a book,1200080176 +137059,27700,boarding school,1200072982 +137059,27700,books,1200155759 +137059,27700,bullying taken too far,1200074729 +137059,27700,cruelty,1200074141 +137059,27700,despotic,1200074114 +137059,27700,domestic violence,1204922995 +137059,27700,elitism,1200073676 +137059,27700,expelled from school,1200073279 +137059,27700,Finns,1200080032 +137059,27700,FIRST LOVE,1200080100 +137059,27700,fraternity,1200074458 +137059,27700,friendship,1200155647 +137059,27700,Gandhi,1200155892 +137059,27700,hierarchy,1200073912 +137059,27700,humiliation,1200156276 +137059,27700,kitchen maid,1200127726 +137059,27700,library vhs,1192742385 +137059,27700,love,1200074500 +137059,27700,Mahatma Gandhi,1200668562 +137059,27700,memasa's movies,1340980323 +137059,27700,morals,1241089026 +137059,27700,multinational settings,1200731693 +137059,27700,nonconformity,1200073168 +137059,27700,nonresistance,1200155906 +137059,27700,oppression,1200156074 +137059,27700,piano,1200072908 +137059,27700,racism,1200081492 +137059,27700,sadism,1200073814 +137059,27700,schoolyard fight,1201536016 +137059,27700,smoking,1200073707 +137059,27700,soccer,1200155518 +137059,27700,stepfather,1200073306 +137059,27700,subordination,1200074591 +137059,27700,suppression,1200156120 +137059,27700,swedish,1200080070 +137059,27700,swimming,1200073392 +137059,27700,swimming pool,1200073339 +137059,27700,TEACHERS AND STUDENTS,1200080205 +137059,27700,upper class,1218918813 +137059,27700,waitress,1218918565 +137059,27700,whipping,1200419245 +137059,27700,WORK ETHICS,1218994583 +137059,27706,child in peril,1290767805 +137059,27706,deceased family member,1290767901 +137059,27706,fire,1290767928 +137059,27706,guardian,1290767853 +137059,27717,competition,1238222623 +137059,27717,dysfunctional family,1241018200 +137059,27717,father-son relationship,1238180330 +137059,27717,Gay Character,1238180367 +137059,27717,girl,1238179952 +137059,27717,juvenile deliquent,1241018203 +137059,27717,karaoke,1238180408 +137059,27717,money,1238180017 +137059,27717,mother daughter relationship,1238180316 +137059,27717,SIBLING RELATIONSHIPS,1241018209 +137059,27717,song contest,1238180116 +137059,27717,talent,1238179986 +137059,27717,tattoo,1238179830 +137059,27721,based on a book,1339073065 +137059,27721,library,1176386617 +137059,27722,cdon,1191349708 +137059,27722,Movielens QuickPick,1206007159 +137059,27722,on dvr,1320007114 +137059,27727,alcoholism,1225458212 +137059,27727,ARRANGED MARRIAGES,1201799035 +137059,27727,easily confused with other movie(s) (title),1234602219 +137059,27727,male nudity,1225460652 +137059,27727,memasa's movies,1308833008 +137059,27727,Nudity (Full Frontal - Notable),1225458076 +137059,27727,sex scenes,1225458063 +137059,27727,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1241089071 +137059,27727,suicide attempt,1225484384 +137059,27728,easily confused with other movie(s) (title),1239117656 +137059,27731,See: Whisper of the Heart,1241090159 +137059,27731,Studio Ghibli,1241090173 +137059,27731,transition,1171743175 +137059,27741,19th century,1203344132 +137059,27741,cdon,1210435096 +137059,27741,cultural customs and traditions,1241090537 +137059,27741,epic,1241090532 +137059,27741,families,1181596983 +137059,27741,hierarchy,1181596492 +137059,27741,memasa's movies,1308832123 +137059,27741,samurai,1203344144 +137059,27741,single father,1241090529 +137059,27743,1960s,1309207079 +137059,27743,astronauts,1309206446 +137059,27743,brother-brother relationship,1309205995 +137059,27743,brothers,1309205986 +137059,27743,Canada,1309205609 +137059,27743,childhood,1309206827 +137059,27743,cosmonauts,1309206484 +137059,27743,deceased family member,1309205765 +137059,27743,drugs,1309206657 +137059,27743,elevator,1309206168 +137059,27743,fish,1309206889 +137059,27743,Gay Character,1309206095 +137059,27743,gay couple,1309206600 +137059,27743,liars,1309207005 +137059,27743,losers,1309260644 +137059,27743,melancholy,1309205670 +137059,27743,moon,1309205937 +137059,27743,mother-son relationship,1309206958 +137059,27743,multiple roles,1309206243 +137059,27743,on dvr,1309194765 +137059,27743,Russia,1309205653 +137059,27743,satire,1309206022 +137059,27743,sauna,1309205840 +137059,27743,space program,1309206734 +137059,27743,suicide,1309206540 +137059,27743,tattoo,1309206301 +137059,27743,telemarketing,1309205805 +137059,27743,weatherman,1309205740 +137059,27743,workplace,1309207096 +137059,27744,amnesia,1223472188 +137059,27744,baking,1223471954 +137059,27744,chick flick,1223661596 +137059,27744,family drama,1223471893 +137059,27744,husband-wife relationship,1223472030 +137059,27744,library,1193518121 +137059,27744,old age,1223471929 +137059,27744,secrets,1223471786 +137059,27744,unhappy marriage,1223471834 +137059,27768,actually funny,1250270543 +137059,27768,memasa's movies,1343914966 +137059,27773,claustrophobic,1241194431 +137059,27773,memasa's movies,1308832222 +137059,27773,Netflix Finland,1375435969 +137059,27773,Revenge Trilogy,1178283737 +137059,27773,stylized,1241194405 +137059,27773,TRAPPED OR CONFINED,1189457954 +137059,27773,vengeance,1241194415 +137059,27773,wings of freedom,1241948844 +137059,27784,library,1239972777 +137059,27784,my addition to ML,1239972768 +137059,27784,phone,1239995000 +137059,27801,Bangkok,1193583993 +137059,27801,chase,1241183586 +137059,27801,drugs,1193583785 +137059,27801,gambling,1193583766 +137059,27801,great stunts,1241183545 +137059,27801,illegal martial arts tournament,1193584338 +137059,27801,Mission,1193584447 +137059,27801,motorcycle,1193583744 +137059,27801,Sexualized violence,1193584541 +137059,27801,sister sister relationship,1193584928 +137059,27801,speech synthesizer,1193583912 +137059,27801,statue,1193584887 +137059,27801,tuk-tuks,1193584832 +137059,27801,wheelchair badass,1193584191 +137059,27803,euthanasia,1354642237 +137059,27803,library,1197061963 +137059,27803,Movielens QuickPick,1206035766 +137059,27803,overrated,1255688925 +137059,27803,See: Diving Bell and the Butterfly The (Scaphandre et le papillon),1354642202 +137059,27820,Animal movie,1241042366 +137059,27820,childhood,1219348644 +137059,27820,colt,1219347209 +137059,27820,desert,1219347472 +137059,27820,family,1219348682 +137059,27820,great cinematography,1241042335 +137059,27820,on dvr,1201853300 +137059,27820,sheep,1219348568 +137059,27820,singing,1219348748 +137059,27828,Alzheimer's disease,1217535574 +137059,27831,DRUG TRADE,1230669486 +137059,27831,Nudity (Topless),1230667225 +137059,27831,overrated,1230716082 +137059,27834,bluish,1231877930 +137059,27834,brother-brother relationship,1231875508 +137059,27834,childhood,1231936786 +137059,27834,fishing,1231875496 +137059,27834,island,1241043856 +137059,27834,on dvr,1221994823 +137059,27834,road trip,1241043848 +137059,27834,secrets,1231875701 +137059,27834,See: Three Colors: Blue,1231881057 +137059,27834,water,1241043871 +137059,27838,Netflix Finland,1386185668 +137059,27843,1970s,1217354238 +137059,27843,Biography,1241019396 +137059,27843,birthday,1217356410 +137059,27843,bullying,1217354949 +137059,27843,catholic,1217353909 +137059,27843,childhood,1217355965 +137059,27843,Civil War,1217353464 +137059,27843,class,1217355695 +137059,27843,CLASS DIFFERENCES,1241019400 +137059,27843,class society,1241019403 +137059,27843,communists,1217355545 +137059,27843,coup,1241019406 +137059,27843,cycling,1217357164 +137059,27843,dictatorship,1241019409 +137059,27843,FATHERS AND DAUGHTERS,1217356353 +137059,27843,flag,1217355835 +137059,27843,friendship,1217353747 +137059,27843,kiss,1217356686 +137059,27843,Latin America,1217353687 +137059,27843,male nudity,1217427384 +137059,27843,military,1217353853 +137059,27843,mother-son relationship,1217356328 +137059,27843,movie theatre,1217356834 +137059,27843,on dvr,1216397897 +137059,27843,politics,1241019436 +137059,27843,poverty,1217424404 +137059,27843,priest,1217354118 +137059,27843,race,1217425038 +137059,27843,rich and poor,1217356957 +137059,27843,sad,1217355197 +137059,27843,school,1217354300 +137059,27843,schoolyard fight,1217354313 +137059,27843,See: Italianetz,1217453462 +137059,27843,SIBLING RELATIONSHIPS,1217355981 +137059,27843,swimming pool,1217354904 +137059,27843,teenage girl,1217356600 +137059,27843,teenagers,1217356508 +137059,27857,Annemari,1340463829 +137059,27857,library,1250883409 +137059,27857,Nudity (Full Frontal - Brief),1342365741 +137059,27857,Nudity (Topless),1342365752 +137059,27857,village,1250883346 +137059,27865,assassin,1205415660 +137059,27865,comic book,1226696221 +137059,27865,Dark hero,1226696196 +137059,27865,female warriors,1205415660 +137059,27865,ninja,1226696272 +137059,27865,sword fighting,1226696149 +137059,27865,teenage girl,1226696012 +137059,27865,To See,1203362076 +137059,27866,library,1220302411 +137059,27866,on dvr,1354624476 +137059,27869,brother-brother relationship,1325013209 +137059,27869,Filmifriikki,1325013745 +137059,27869,on dvr,1308764363 +137059,27869,To See,1207385405 +137059,27873,library,1230116027 +137059,27878,Netflix Finland,1395837335 +137059,27878,photographer,1198684563 +137059,27899,library,1239959416 +137059,27904,flowers,1212168565 +137059,27904,surveillance,1212168637 +137059,30707,birthday,1217695875 +137059,30707,boxing drama,1241266811 +137059,30707,coach,1217695012 +137059,30707,gender,1217692053 +137059,30707,gender discrimination,1217692107 +137059,30707,hospital,1217696667 +137059,30707,imdb top 250,1241266884 +137059,30707,library,1201807455 +137059,30707,Manipulative. Well-acted.,1241266824 +137059,30707,most overrated movie ever,1241266771 +137059,30707,mother daughter relationship,1217695960 +137059,30707,narrated,1217694628 +137059,30707,overrated,1241266837 +137059,30707,poverty,1217695204 +137059,30707,priest,1217693596 +137059,30707,waitress,1217694205 +137059,30749,Africa,1193510159 +137059,30749,African Atrocities,1224841553 +137059,30749,bribery,1193508678 +137059,30749,civil war,1193507710 +137059,30749,COLONIALISM,1193507921 +137059,30749,dehumanization,1193507519 +137059,30749,factual,1241267217 +137059,30749,inter-tribal marriage,1193507014 +137059,30749,international politics,1193509195 +137059,30749,joint responsibility of nations,1193509069 +137059,30749,journalism,1193507191 +137059,30749,memasa's movies,1308832345 +137059,30749,orphans,1193509268 +137059,30749,post-colonial conflict,1193510172 +137059,30749,rebellion,1193509425 +137059,30749,refugee,1193508161 +137059,30749,story of one family,1193506567 +137059,30749,topic:propaganda,1193507428 +137059,30749,Tragedy,1193507301 +137059,30749,tribal,1193507347 +137059,30749,whiskey,1193508693 +137059,30793,androgyny,1189432067 +137059,30793,childhood flashback,1189431736 +137059,30793,clowny clones,1189532973 +137059,30793,dark,1241215554 +137059,30793,dentist,1189431615 +137059,30793,factory,1250938139 +137059,30793,families,1189431491 +137059,30793,father-daughter relationship,1189431562 +137059,30793,grandparents,1189430594 +137059,30793,greed,1189431109 +137059,30793,misbehavior,1189432810 +137059,30793,parents,1189431458 +137059,30793,PG,1189431230 +137059,30793,Roald Dahl,1189542338 +137059,30793,silly fun,1241215567 +137059,30793,ticket,1200237116 +137059,30803,my computer,1328713786 +137059,30803,my shopping list,1378036050 +137059,30803,very little dialogue,1204298533 +137059,30812,Annemari,1335700915 +137059,30812,aviation,1191449762 +137059,30812,slow,1335811790 +137059,30812,wasted potential,1335810723 +137059,30848,deceased family member,1290524241 +137059,30848,on dvr,1233587192 +137059,30850,memasa's movies,1356706479 +137059,30850,Nudity (Topless - Notable),1248207232 +137059,30850,Shakespeare,1248206995 +137059,30850,women disguised as men,1248207041 +137059,30867,To See,1243433819 +137059,30996,National Film Registry,1230749672 +137059,31042,aviation,1191509600 +137059,31042,motorcycle,1178371938 +137059,31042,World War I,1250878386 +137059,31116,National Film Registry,1230755304 +137059,31184,library,1192518706 +137059,31270,To See,1219254532 +137059,31364,To See,1203341071 +137059,31410,anti-Semitism,1197476941 +137059,31410,Biography,1241182954 +137059,31410,civilians at war,1197476972 +137059,31410,distorted sense of reality,1197477442 +137059,31410,DOCTORS AND PATIENTS,1197477308 +137059,31410,drinking,1197476854 +137059,31410,Eva Braun,1197476319 +137059,31410,hitler,1230051397 +137059,31410,Hitler Youth (HJ),1197477231 +137059,31410,memasa's movies,1308833075 +137059,31410,Nudity (Topless),1197477060 +137059,31410,officers,1197477904 +137059,31410,secretary,1197476262 +137059,31410,suicide,1197477643 +137059,31410,WOMEN DURING WARTIME,1197476071 +137059,31435,cdon,1221316197 +137059,31435,cerebral palsy,1221316008 +137059,31435,disability,1221315962 +137059,31435,To See,1221315860 +137059,31437,Annemari,1333362139 +137059,31437,based on a true story,1250975790 +137059,31584,1940's,1201890464 +137059,31584,2000s,1201890414 +137059,31584,anti-Semitism,1201889673 +137059,31584,childhood,1201890067 +137059,31584,civilians at war,1201890587 +137059,31584,FORBIDDEN LOVE,1201890572 +137059,31584,generations,1201890695 +137059,31584,husband-wife relationship,1201889856 +137059,31584,interfaith marriage,1201889886 +137059,31584,jewish,1201889916 +137059,31584,memories,1201889939 +137059,31584,mother daughter relationship,1201889787 +137059,31584,musicians,1201890091 +137059,31584,piano,1201890113 +137059,31584,ring,1201890727 +137059,31584,Underrated,1201904715 +137059,31584,violin,1201890299 +137059,31584,World War II,1201889656 +137059,31617,on dvr,1319984621 +137059,31658,aging,1200667071 +137059,31658,life,1198938692 +137059,31658,memasa's movies,1308833393 +137059,31658,overrated,1241192877 +137059,31658,steampunk,1241192881 +137059,31660,big budget,1171731154 +137059,31660,memasa's movies,1308834107 +137059,31660,pulp,1241089952 +137059,31660,steampunk,1241089906 +137059,31660,Swing and a Miss,1241089901 +137059,31660,visually interesting--that's about it,1241089889 +137059,31660,watch the credits,1205496932 +137059,31672,easily confused with other movie(s) (title),1233662267 +137059,31682,Teddy Award,1217515775 +137059,31689,mafia,1366308045 +137059,31689,memasa's movies,1326293755 +137059,31689,Netflix Finland,1356884512 +137059,31689,porn industry,1215853824 +137059,31689,pornography,1215853792 +137059,31689,To See,1215853892 +137059,31705,thai boxing,1217517381 +137059,31705,To See,1207382600 +137059,31785,library vhs,1229896024 +137059,31813,alcoholism,1364920371 +137059,31813,drug abuse,1364920393 +137059,31813,halfway house,1368874666 +137059,31813,my addition to ML,1364896918 +137059,31813,Netflix Finland,1364896904 +137059,31813,nuns,1364920357 +137059,31854,National Film Registry,1230751121 +137059,31878,To See,1203855283 +137059,31952,easily confused with other movie(s) (title),1229693299 +137059,31952,murder,1229025645 +137059,31952,narcolepsy,1229002435 +137059,31952,on dvr,1226611198 +137059,31952,rivalry,1228997509 +137059,31952,See: Delicatessen,1229030887 +137059,31952,subterranean,1228998261 +137059,31952,symbolism,1229002492 +137059,31956,library,1217513808 +137059,31998,apartment,1229030491 +137059,31998,doll sex,1229032280 +137059,31998,dolls,1232727116 +137059,31998,explicit sex scene,1229032457 +137059,31998,father-son relationship,1229033108 +137059,31998,friendship,1229034037 +137059,31998,loneliness,1229034048 +137059,31998,morality,1250974191 +137059,31998,my addition to ML,1230327919 +137059,31998,Notable Nudity,1229030453 +137059,31998,porn industry,1250974189 +137059,31998,reality TV,1229033994 +137059,31998,sex scenes,1229031371 +137059,31998,video camera,1229033410 +137059,31998,vomit-inducing,1250974175 +137059,32025,easily confused with other movie(s) (title),1217513442 +137059,32179,library,1206345612 +137059,32211,explicit sex scene,1224841472 +137059,32211,exploitation,1224841324 +137059,32211,heroine,1224843716 +137059,32211,lesbian,1224841432 +137059,32211,male nudity,1224879635 +137059,32211,masturbation,1224841414 +137059,32211,Nudity (Rear),1224879646 +137059,32211,rape,1224879689 +137059,32211,rare,1224879599 +137059,32211,revenge,1224841798 +137059,32211,sexual abuse,1224839879 +137059,32211,slow motion,1224880397 +137059,32211,To See,1224844090 +137059,32211,unsimulated sex scenes,1224839772 +137059,32211,violence,1224880193 +137059,32213,cube,1392938147 +137059,32263,based on a book,1344958537 +137059,32263,corrupt cops,1344958563 +137059,32263,hit men,1344958650 +137059,32263,jailbreak,1344958611 +137059,32263,money,1344958590 +137059,32263,Nudity (Topless),1344958548 +137059,32263,on dvr,1323903088 +137059,32263,private detective,1344958528 +137059,32263,rainy,1345030713 +137059,32263,wedding,1344958599 +137059,32285,1960s,1309294365 +137059,32285,bands,1309293394 +137059,32285,brother-brother relationship,1309294337 +137059,32285,brothers,1309294328 +137059,32285,competition,1309293633 +137059,32285,drinking,1309293462 +137059,32285,ferry,1309293961 +137059,32285,festivals,1309294572 +137059,32285,Irish,1309293597 +137059,32285,mother daughter relationship,1309294017 +137059,32285,musicians,1309294466 +137059,32285,Nudity (Topless),1309293996 +137059,32285,on dvr,1234820934 +137059,32285,violin,1309293891 +137059,32456,animal attacks,1230797102 +137059,32456,Animals die :(,1229938976 +137059,32456,anthropomorphic,1229879893 +137059,32456,anti-authoritarian,1229888390 +137059,32456,baby boom,1229884845 +137059,32456,bizarre,1229879354 +137059,32456,destruction,1229883832 +137059,32456,ecology,1229887993 +137059,32456,environment,1224082553 +137059,32456,environmental,1241019042 +137059,32456,extraordinary!!!,1241019049 +137059,32456,face,1229881070 +137059,32456,fighting,1229888402 +137059,32456,FIGHTING THE SYSTEM,1229888412 +137059,32456,flying,1229885981 +137059,32456,folk tale,1224082350 +137059,32456,forest,1229880656 +137059,32456,genitalia,1229879037 +137059,32456,illusionist,1229895310 +137059,32456,magic,1229886241 +137059,32456,man vs nature,1230797014 +137059,32456,man vs. nature,1229887102 +137059,32456,meeting,1229887936 +137059,32456,message picture,1241019063 +137059,32456,metamorphosis,1229877780 +137059,32456,my addition to ML,1230327869 +137059,32456,narrated,1224841102 +137059,32456,news media,1229888503 +137059,32456,on computer,1224079351 +137059,32456,rebellion,1229885506 +137059,32456,resistance movement,1229883726 +137059,32456,seasons,1229886039 +137059,32456,shape shifter,1224082323 +137059,32456,singing,1229883667 +137059,32456,spirits,1229884564 +137059,32456,statue,1229880524 +137059,32456,Studio Ghibli,1224841132 +137059,32456,supernatural,1229881384 +137059,32456,survival,1229887515 +137059,32456,tanuki,1224082260 +137059,32456,television,1229880401 +137059,32456,television show,1229888488 +137059,32456,unconventional,1241019091 +137059,32456,urban,1229881603 +137059,32562,adoption,1324931777 +137059,32562,Alzheimer's disease,1324929578 +137059,32562,asthma,1324932132 +137059,32562,baby,1324931777 +137059,32562,bad luck,1324929551 +137059,32562,bullying,1324932343 +137059,32562,cancer,1324929550 +137059,32562,carpe diem,1324932207 +137059,32562,cigarettes,1324929550 +137059,32562,claymation,1324929604 +137059,32562,dark comedy,1324929656 +137059,32562,disability,1324929550 +137059,32562,DOCTORS AND PATIENTS,1324929550 +137059,32562,facts of life,1324932043 +137059,32562,hospital,1324931755 +137059,32562,husband-wife relationship,1324929550 +137059,32562,Jewish,1324931884 +137059,32562,life,1324932318 +137059,32562,lightning,1324929646 +137059,32562,magnetism,1324931830 +137059,32562,nudists,1324932006 +137059,32562,nurse,1324929550 +137059,32562,nursing home,1324929551 +137059,32562,old age,1324929550 +137059,32562,smoking,1324929550 +137059,32562,suicide,1324932273 +137059,32562,thalidomide,1324932100 +137059,32562,Tourette syndrome,1316293898 +137059,32562,youtube,1338719947 +137059,32582,parrots,1251455204 +137059,32587,cool design,1241479929 +137059,32587,goretastic,1197048426 +137059,32587,memasa's movies,1309092020 +137059,32587,narrated,1196492466 +137059,32587,PROSTITUTES,1196097598 +137059,32593,volkswagen,1220043737 +137059,32596,amature,1286116780 +137059,32600,art house,1171141098 +137059,32600,courtesan,1171120850 +137059,32600,episodic,1171195528 +137059,32600,To See,1212939836 +137059,32617,motorcycle,1178387611 +137059,32627,Golden Raspberry (Worst Actor),1224361669 +137059,32632,motorcycle,1178361347 +137059,32657,short,1272371507 +137059,32743,prequel,1353333012 +137059,32770,brothers,1214146997 +137059,32770,family dynamics,1214147039 +137059,32770,on dvr,1309195080 +137059,32770,prisoners,1310392002 +137059,32844,based on a play,1310913484 +137059,32844,my shopping list,1380634625 +137059,32844,on dvr,1310246464 +137059,32844,PROSTITUTES,1310913223 +137059,32844,remake,1310913578 +137059,32844,wartime,1310913331 +137059,32853,World War II,1292851383 +137059,32875,directorial debut,1326655923 +137059,32892,library,1224844806 +137059,32892,library vhs,1224844783 +137059,32898,aliens,1330020038 +137059,32898,anthropomorphic,1330015696 +137059,32898,spaceships,1330019883 +137059,33004,bureaucracy,1217176322 +137059,33004,end of the world,1217169763 +137059,33004,hitchhiker,1217169823 +137059,33004,mouse,1217169741 +137059,33004,not as good as the book,1241213091 +137059,33004,overrated,1241213084 +137059,33004,president,1217169792 +137059,33004,tea,1217169856 +137059,33004,unfilmable original work,1241213071 +137059,33008,car accident,1245178656 +137059,33008,corruption,1245176774 +137059,33008,journalism,1245176712 +137059,33008,Journalist,1245176730 +137059,33008,lust for power,1245176838 +137059,33008,news media,1245176758 +137059,33008,on dvr,1243339734 +137059,33008,political thriller,1245176960 +137059,33008,politics,1245176697 +137059,33021,drugs,1281963185 +137059,33021,my addition to ML,1281963161 +137059,33021,not funny,1291904894 +137059,33021,nuns,1284711546 +137059,33072,art,1325707497 +137059,33072,biographer,1325707565 +137059,33072,forgery,1325707633 +137059,33072,fraud,1217671576 +137059,33072,I'm feeling apologetic for not liking this movie,1325707460 +137059,33072,mockumentary,1217671483 +137059,33072,Nudity (Rear - Brief),1325707600 +137059,33072,Nudity (Topless - Brief),1325707710 +137059,33072,on dvr,1325687813 +137059,33124,library,1196513755 +137059,33138,abortion,1280519563 +137059,33138,Christianity,1280519591 +137059,33138,independent film,1280519998 +137059,33138,indie,1280520007 +137059,33138,pedophile,1280519797 +137059,33138,pregnancy,1280519358 +137059,33138,runaway,1280519713 +137059,33138,teenage girl,1280519403 +137059,33138,teenage pregnancy,1280519419 +137059,33138,To See,1246749900 +137059,33162,memasa's movies,1308832928 +137059,33162,See: Arn: The Knight Templar,1326743120 +137059,33166,confrontational,1198682774 +137059,33166,cultural conflict,1198683232 +137059,33166,easily confused with other movie(s) (title),1221995191 +137059,33166,guns,1198682788 +137059,33166,police,1198682755 +137059,33166,See: House of Sand and Fog,1241268693 +137059,33171,alien abduction,1223994877 +137059,33171,brainwashing,1178056654 +137059,33171,dissociation,1178058113 +137059,33171,gay,1178056654 +137059,33171,male nudity,1178056902 +137059,33171,male prostitute,1197241135 +137059,33171,memories,1178057038 +137059,33171,PROSTITUTES,1232721470 +137059,33171,prostitution,1178056654 +137059,33171,repression,1178056655 +137059,33171,See: Happiness,1217584797 +137059,33171,UFO lore,1178645814 +137059,33245,easily confused with other movie(s) (title),1244642659 +137059,33310,my addition to ML,1239726327 +137059,33330,child actor,1256750246 +137059,33330,my addition to ML,1234867605 +137059,33330,See: Mother of Mine,1256750450 +137059,33330,wartime,1256750070 +137059,33330,World War II,1256750172 +137059,33437,blindness,1323973229 +137059,33437,dark comedy,1323973040 +137059,33437,father figure,1323972986 +137059,33437,fight club,1323972875 +137059,33437,Friday night movie,1323972706 +137059,33437,library,1220086050 +137059,33437,loan shark,1323973447 +137059,33437,loss,1323973127 +137059,33437,martial arts,1323972751 +137059,33437,Nudity (Topless - Brief),1323973597 +137059,33437,obedience,1323975233 +137059,33437,on dvr,1321542774 +137059,33437,piano,1323972855 +137059,33437,repression,1323973509 +137059,33437,TRAPPED OR CONFINED,1323975395 +137059,33451,library,1227813106 +137059,33487,child prostitution,1232720345 +137059,33487,father daughter relationship,1271877430 +137059,33487,library,1232720071 +137059,33487,memasa's movies,1366476312 +137059,33487,my addition to ML,1232719987 +137059,33487,PROSTITUTES,1232720383 +137059,33487,prostitution,1232720240 +137059,33487,rare,1232720084 +137059,33564,divorce,1309358021 +137059,33585,blindfold,1224886730 +137059,33585,Filmifriikki,1221398955 +137059,33585,To See,1221398782 +137059,33585,unsimulated sex scenes,1232814793 +137059,33615,anthropomorphic,1213978564 +137059,33615,dreams,1214131577 +137059,33615,freedom,1213978639 +137059,33615,island,1213978584 +137059,33615,zoo,1213978540 +137059,33649,lesbians hiding their identities,1241477673 +137059,33649,saving face,1189803949 +137059,33649,To See,1217508330 +137059,33660,1930s,1216355799 +137059,33660,Biography,1241194158 +137059,33660,childhood,1216466229 +137059,33660,economic depression,1216355778 +137059,33660,husband-wife relationship,1216355815 +137059,33660,library,1197035061 +137059,33660,MEMBERS OF THE PRESS,1217090505 +137059,33660,news media,1216355885 +137059,33660,radio,1216355919 +137059,33660,RAGS TO RICHES,1216467560 +137059,33660,sport:boxing,1241194144 +137059,33660,story of one family,1216466860 +137059,33660,washed up,1216395747 +137059,33669,library,1239909472 +137059,33677,library,1184497569 +137059,33679,Annemari,1326995973 +137059,33679,husband-wife relationship,1332177201 +137059,33725,cameos,1218828041 +137059,33725,deafness,1218826215 +137059,33725,disability,1218826133 +137059,33725,disc jockey (scene),1218827024 +137059,33725,hearing impairment,1218826956 +137059,33725,Ibiza,1218960936 +137059,33725,imaginary friend,1218961090 +137059,33725,library,1217607291 +137059,33725,music business,1218832752 +137059,33725,MUSICIAN'S LIFE,1218832690 +137059,33725,Nudity (Topless - Brief),1218828013 +137059,33725,whiskey,1218827966 +137059,33750,1980s,1327170864 +137059,33750,based on a true story,1327170700 +137059,33750,bus,1327171057 +137059,33750,child actor,1327170963 +137059,33750,child in peril,1327170897 +137059,33750,child soldiers,1327170919 +137059,33750,childhood,1327170729 +137059,33750,from the view of children,1327170740 +137059,33750,memasa's movies,1326293871 +137059,33750,priest,1327171137 +137059,33750,radio,1327170794 +137059,33750,single mother,1327170712 +137059,33750,young love,1327171015 +137059,33794,dark hero,1241480349 +137059,33834,library,1250956455 +137059,33880,Netflix Finland,1375436249 +137059,33896,cannibalism,1172249091 +137059,33896,don't eat while watching,1234800780 +137059,33896,malevolence,1172253010 +137059,33896,not for the squeamish,1328213428 +137059,33896,uneven,1241043531 +137059,33903,To See,1217508485 +137059,33966,Golden Raspberry (Worst Actor),1224360524 +137059,34048,2000s,1214685653 +137059,34048,child in peril,1214686344 +137059,34048,father daughter relationship,1214686250 +137059,34048,storm,1214685702 +137059,34048,tripods,1214686187 +137059,34072,beautifully filmed,1241191745 +137059,34072,birds,1231858804 +137059,34072,Family,1182702768 +137059,34072,memasa's movies,1308832895 +137059,34072,Netflix Finland,1398971608 +137059,34072,Penguins value their babies,1241191762 +137059,34072,See: The Bear,1231857868 +137059,34072,survival,1241191779 +137059,34148,Netflix Finland,1354542852 +137059,34150,heroine in tight suit,1241192150 +137059,34150,invisibility,1226578000 +137059,34150,mask,1226572976 +137059,34150,on dvr,1226100943 +137059,34150,radiation,1226573083 +137059,34153,accident,1245178621 +137059,34153,car accident,1220965319 +137059,34153,disability,1211826878 +137059,34153,discshop,1212408697 +137059,34153,friendship,1211827008 +137059,34153,LIVING WITH DISABILITY,1241128367 +137059,34153,male-female relationship,1244743292 +137059,34153,memasa's movies,1351874596 +137059,34153,obscure sports,1172239761 +137059,34153,on dvr,1220538908 +137059,34153,physical therapy,1221045827 +137059,34153,quirky subculture,1241128388 +137059,34153,rehabilitation,1241128405 +137059,34153,sexuality,1241128410 +137059,34153,sport:wheelchair rugby,1241128395 +137059,34153,sports,1224017887 +137059,34153,wheelchair,1211826996 +137059,34153,wheelchair badass,1241128429 +137059,34153,wheelchair rugby,1172239744 +137059,34155,library,1194956331 +137059,34162,false identity,1204495841 +137059,34162,funeral,1204495865 +137059,34162,Gay Character,1204495776 +137059,34162,Nudity (Rear),1204495750 +137059,34162,Nudity (Topless),1204495734 +137059,34162,painting,1204495802 +137059,34162,sailing,1204495821 +137059,34164,To See,1210435974 +137059,34198,To See,1212945983 +137059,34229,library,1352575275 +137059,34375,Annemari,1333013340 +137059,34375,cooking,1338111997 +137059,34375,Deportation,1338111857 +137059,34375,food,1338111949 +137059,34386,AGE DISPARITY ROMANCE,1232632833 +137059,34386,child in peril,1232632382 +137059,34386,erotomania,1232570933 +137059,34386,jealousy,1232633096 +137059,34386,Journalist,1232571200 +137059,34386,mother daughter relationship,1232632404 +137059,34386,my addition to ML,1232632365 +137059,34386,Nudity (Topless - Brief),1232571251 +137059,34386,obsession,1232570959 +137059,34386,phone,1232570972 +137059,34386,piano,1232719187 +137059,34386,pregnancy,1232571184 +137059,34386,psychiatry,1232632606 +137059,34386,teenage girl,1232571173 +137059,34405,hot girls!,1170921039 +137059,34405,terrible character development and weak plot? You'll LOVE this movie!!!,1241213493 +137059,34437,amateur detective,1326025023 +137059,34437,don juan,1326025572 +137059,34437,ex-girlfriend,1326025153 +137059,34437,flowers,1326024555 +137059,34437,letters,1326024651 +137059,34437,library,1203264131 +137059,34437,lolita,1326024689 +137059,34437,memasa's movies,1353243248 +137059,34437,neighbors,1326025057 +137059,34437,Nudity (Full Frontal),1326025229 +137059,34437,Paternity,1326025112 +137059,34437,pink,1326024599 +137059,34437,searching,1326024877 +137059,34437,teenage girl,1326024984 +137059,34437,typewriter,1326025460 +137059,34437,womanizing,1326025273 +137059,34530,Golden Raspberry (Worst Actor),1224355155 +137059,34542,library,1192473925 +137059,34800,barber,1309279877 +137059,34800,diamonds,1309279401 +137059,34800,hotel,1309279790 +137059,34800,male nudity,1309279931 +137059,34800,Nudity (Topless - Notable),1309279441 +137059,34800,on dvr,1309194300 +137059,34800,security guard,1309279551 +137059,34800,Sex Comedy,1309279707 +137059,34800,teen comedy,1309279676 +137059,34800,waitress,1309279489 +137059,35629,family gatherings,1367772168 +137059,35629,Iceland,1234883441 +137059,35629,library,1234883377 +137059,35629,my addition to ML,1234870416 +137059,35836,virginity,1217509467 +137059,36056,library,1352576446 +137059,36276,art house,1241091098 +137059,36276,french suspense,1241091110 +137059,36276,memasa's movies,1308833404 +137059,36276,overrated,1241091116 +137059,36276,talky,1196958410 +137059,36276,television show,1200238970 +137059,36397,birds,1241027671 +137059,36397,pigeons,1241027668 +137059,36397,plot goes down like a lead balloon - or a pigeon,1241027655 +137059,36517,Netflix Finland,1356023888 +137059,36527,cliche,1241127089 +137059,36527,control freak,1214132911 +137059,36527,deceased family member,1214131893 +137059,36527,father daughter relationship,1214131815 +137059,36527,flashbacks,1214131326 +137059,36527,funeral,1214131921 +137059,36527,geeks,1214132746 +137059,36527,mental illness,1214131987 +137059,36527,notebook,1214132126 +137059,36527,science,1214132798 +137059,36527,sister sister relationship,1214132940 +137059,36527,story of one family,1214132869 +137059,36527,talky,1214132729 +137059,36527,teacher,1214131794 +137059,36527,teacher student relationship,1214131804 +137059,36527,university,1214132762 +137059,36529,based on a true story,1309260703 +137059,36529,breaking the fourth wall,1309261550 +137059,36529,Brooklyn,1309260785 +137059,36529,child soldiers,1309261366 +137059,36529,cold war,1309260737 +137059,36529,diamonds,1309260900 +137059,36529,husband-wife relationship,1309261434 +137059,36529,multinational settings,1309260557 +137059,36529,on dvr,1309194487 +137059,36529,organized crime,1309261255 +137059,36535,my computer,1328713977 +137059,36535,To See,1206821095 +137059,36708,To See,1221046367 +137059,37240,9/11,1219143803 +137059,37240,To See,1220045230 +137059,37335,Kick-Butt Women,1310581765 +137059,37335,kidnapping,1310581777 +137059,37335,on dvr,1310392553 +137059,37382,Amelie-esque color scheme,1241126587 +137059,37382,fast-cut,1241126636 +137059,37382,foggy,1241126642 +137059,37382,inspired by a real-life person,1170544823 +137059,37382,saturated,1241126632 +137059,37545,austere,1241024509 +137059,37545,based on a book,1183389977 +137059,37545,brutality,1183388897 +137059,37545,DOCTORS AND PATIENTS,1183397482 +137059,37545,dubious medical experiments,1183397376 +137059,37545,insanity,1183389405 +137059,37545,jealousy,1183390118 +137059,37545,memasa's movies,1308831905 +137059,37545,military,1183389775 +137059,37545,understated,1183465791 +137059,37626,Annemari,1342355624 +137059,37626,blind,1342630084 +137059,37626,grocery store,1342530422 +137059,37626,husband-wife relationship,1342530464 +137059,37626,orange,1342614093 +137059,37653,library,1231608737 +137059,37653,memasa's movies,1326293793 +137059,37720,1970s,1221993727 +137059,37720,better than expected,1241127360 +137059,37720,courtroom drama,1221650647 +137059,37720,Exorcism,1221993151 +137059,37720,Law court drama spiced with horror.,1241127375 +137059,37720,memasa's movies,1309092212 +137059,37720,priest,1221997582 +137059,37720,See: Requiem,1239967981 +137059,37720,spirits,1221738084 +137059,37720,strong performances carry this flick,1241127397 +137059,37720,true story,1241127427 +137059,37729,animated Opera,1241193423 +137059,37729,aristocracy,1234649753 +137059,37729,ARRANGED MARRIAGES,1234649506 +137059,37729,bluish,1234649934 +137059,37729,Burton repeats himself.,1241193411 +137059,37729,butterflies,1234710771 +137059,37729,Danny Elfman score,1241193407 +137059,37729,destiny,1234649611 +137059,37729,forced marriage,1234649536 +137059,37729,gothic,1241193434 +137059,37729,memasa's movies,1308833788 +137059,37729,not as good as ...,1241193443 +137059,37729,ring,1234649338 +137059,37729,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1234649660 +137059,37729,spiders,1234649563 +137059,37729,undead,1234650130 +137059,37729,wedding,1234649328 +137059,37733,library,1217333064 +137059,37853,memasa's movies,1320925587 +137059,37853,To See,1240064333 +137059,37855,1950s,1239970542 +137059,37855,Biography,1239970443 +137059,37855,To See,1239970574 +137059,37857,library,1220046053 +137059,37955,all-female cast,1241018871 +137059,37955,ambivalent,1241018870 +137059,37955,art house,1241018868 +137059,37955,ballet,1241018874 +137059,37955,based on a book,1239115665 +137059,37955,boarding school,1239114841 +137059,37955,butterflies,1239117825 +137059,37955,child nudity,1239114823 +137059,37955,claustrophobic,1239117523 +137059,37955,coffin,1239115593 +137059,37955,coming of age,1239115505 +137059,37955,directorial debut,1239115733 +137059,37955,disturbing,1239115516 +137059,37955,dreamlike,1241018878 +137059,37955,easily confused with other movie(s) (title),1239114785 +137059,37955,eerie,1241018945 +137059,37955,equivocal,1241018917 +137059,37955,forest,1239132233 +137059,37955,friendship,1239117479 +137059,37955,from the view of children,1239130723 +137059,37955,girls,1239115720 +137059,37955,girls in prison,1239115335 +137059,37955,grotesque,1239130515 +137059,37955,innocence,1239129256 +137059,37955,institutions,1239115259 +137059,37955,insularity,1239132458 +137059,37955,library,1217627529 +137059,37955,metamorphosis,1239124062 +137059,37955,obedience,1239129871 +137059,37955,provocative,1239163086 +137059,37955,rare,1221397120 +137059,37955,school,1239117319 +137059,37955,SERVANTS AND EMPLOYERS,1239131368 +137059,37955,SEXUAL AWAKENING,1239133586 +137059,37955,sexuality,1239133537 +137059,37955,swimming,1239115454 +137059,37955,teacher student relationship,1239115236 +137059,37955,teenage girl,1239115492 +137059,37955,theatre,1239117211 +137059,37955,utopia,1239115536 +137059,37955,water,1239115442 +137059,37955,What is Happiness?,1239117593 +137059,37955,wings of freedom,1239124097 +137059,38038,Wallace and Gromit,1241195006 +137059,38086,accident,1232717233 +137059,38086,art school,1232729120 +137059,38086,audition,1232716871 +137059,38086,ballet,1241017173 +137059,38086,betrayal,1232729393 +137059,38086,boarding school,1241017208 +137059,38086,bullying,1232716830 +137059,38086,competition,1232716659 +137059,38086,curse,1232716617 +137059,38086,dolls,1232726509 +137059,38086,dormitory,1232715921 +137059,38086,friendship,1232717890 +137059,38086,friendship transcending death,1232729263 +137059,38086,ghosts,1232718149 +137059,38086,girls,1232715944 +137059,38086,Giselle (ballet),1241017199 +137059,38086,high school,1232728988 +137059,38086,jealousy,1241684138 +137059,38086,lesbian subtext,1241130749 +137059,38086,loneliness,1232717222 +137059,38086,LOVE TRIANGLES,1232718443 +137059,38086,magic,1232718730 +137059,38086,memasa's movies,1309106639 +137059,38086,my addition to ML,1232716538 +137059,38086,numbers,1232718454 +137059,38086,obesity,1232716757 +137059,38086,piano,1232719100 +137059,38086,school,1232715762 +137059,38086,series,1232717524 +137059,38086,stairs,1232717317 +137059,38086,statue,1232717212 +137059,38086,undead,1232887368 +137059,38086,wishes,1232715969 +137059,38097,To See,1232746886 +137059,38159,library vhs,1235210891 +137059,38159,loneliness,1243805812 +137059,38159,neighbors,1243805641 +137059,38159,nocturnal,1243805618 +137059,38159,Nudity (Rear - Brief),1244306969 +137059,38159,rare,1235210902 +137059,38159,surrogate,1243858503 +137059,38159,The Decalogue series,1241863927 +137059,38159,voyeurism,1243805583 +137059,38198,fishing,1250843533 +137059,38499,1980s,1224274892 +137059,38499,AIDS,1224274884 +137059,38499,based on a play,1224275001 +137059,38499,closeted homosexual,1224274943 +137059,38499,gay,1224274874 +137059,38499,library,1224274862 +137059,38824,abroad,1227626116 +137059,38824,award,1241175698 +137059,38824,based on a book,1227626090 +137059,38824,based on book,1238881335 +137059,38824,childhood,1227626105 +137059,38824,deceased family member,1238880594 +137059,38824,dysfunctional family,1238881202 +137059,38824,end of war,1238880961 +137059,38824,evacuees,1227625424 +137059,38824,Finnish,1241018464 +137059,38824,HAUNTED BY THE PAST,1238881188 +137059,38824,historical,1238881105 +137059,38824,History,1241018433 +137059,38824,letters,1238880691 +137059,38824,library,1227613787 +137059,38824,mother-son relationship,1241018474 +137059,38824,my addition to ML,1230327847 +137059,38824,rural,1238881247 +137059,38824,surrogate,1238880850 +137059,38824,traumatic childhood,1227626017 +137059,38824,WOMEN DURING WARTIME,1241018446 +137059,38824,World War II,1227625786 +137059,38886,Netflix Finland,1355572515 +137059,39052,amateur,1241089278 +137059,39052,campy,1241089288 +137059,39052,fantasia,1171734508 +137059,39052,Free to download,1241089295 +137059,39052,Star Trek,1241089315 +137059,39052,youtube,1241089301 +137059,39183,Annemari,1326844583 +137059,39183,closeted homosexual,1337248238 +137059,39183,cowboys,1337255390 +137059,39183,gay,1337247706 +137059,39183,sheep,1337248272 +137059,39234,female director,1311006998 +137059,39234,labor unions,1311006846 +137059,39234,miners,1311006551 +137059,39234,misogyny,1311006784 +137059,39234,on dvr,1309611149 +137059,39234,single mother,1311006719 +137059,39234,working women,1311006626 +137059,39292,black and white,1177165540 +137059,39292,CBS,1177165559 +137059,39292,censorship,1241193836 +137059,39292,Communist witch hunt,1241193803 +137059,39292,history,1241193808 +137059,39292,journalism,1241193811 +137059,39292,McCarthyism,1241193816 +137059,39292,memasa's movies,1308833438 +137059,39292,political,1241193818 +137059,39381,Annemari,1333713837 +137059,39381,brother-brother relationship,1335621458 +137059,39381,captain,1335621476 +137059,39381,husband-wife relationship,1335621527 +137059,39381,rape,1335624482 +137059,39381,whipping,1335624619 +137059,39425,disability,1309802056 +137059,39425,rare,1221400855 +137059,39425,To See,1206534114 +137059,39446,on dvr,1227638636 +137059,39659,Annemari,1332787403 +137059,39659,maid,1332865884 +137059,39659,supernatural,1332865946 +137059,39659,upper class,1332865033 +137059,39659,visitor,1332865869 +137059,39703,library,1244292702 +137059,39703,rare,1244292677 +137059,39869,cards,1247078839 +137059,39869,disappointing,1247078782 +137059,39869,library,1192898855 +137059,39869,male nudity,1247079337 +137059,39869,on dvr,1242933207 +137059,39869,USA - Land of Opportunities,1247078746 +137059,39869,village,1247079318 +137059,40278,memasa's movies,1320008876 +137059,40412,To See,1248822293 +137059,40414,1910s,1230136357 +137059,40414,humane,1230142592 +137059,40414,library,1196022221 +137059,40414,multinational settings,1230141617 +137059,40414,singing,1230140970 +137059,40491,my addition to ML,1230328013 +137059,40491,proletariat trilogy,1221762818 +137059,40494,Finnish,1227044850 +137059,40494,library,1227044819 +137059,40494,rock,1227045034 +137059,40494,tragicomedy,1227044968 +137059,40583,not as good as I expected,1241191700 +137059,40583,political thriller,1245517847 +137059,40586,black and white,1268313646 +137059,40586,library,1225459698 +137059,40586,my addition to ML,1230328388 +137059,40586,rare,1228171331 +137059,40597,cancer,1308069103 +137059,40597,memasa's movies,1308832834 +137059,40597,road trip,1308069091 +137059,40617,dark,1233076979 +137059,40617,deformity,1241018169 +137059,40617,easily confused with other movie(s) (title),1232982731 +137059,40617,homeless,1233077165 +137059,40617,my addition to ML,1232955533 +137059,40617,rats,1233077749 +137059,40617,See: The Descent,1233077410 +137059,40617,sewer/tunnel chase,1233089054 +137059,40617,subterranean,1233077306 +137059,40617,subway,1233077683 +137059,40617,trains,1233076949 +137059,40629,on dvr,1367580845 +137059,40723,loosely based on true events,1188925754 +137059,40723,scary as hell,1241088642 +137059,40723,trust no one,1188922187 +137059,40723,vomit-inducing,1188911132 +137059,40732,easily confused with other movie(s) (title),1224888483 +137059,40732,hot girls!,1241184090 +137059,40815,broomstick,1205497127 +137059,40819,memasa's movies,1320923832 +137059,40828,easily confused with other movie(s) (title),1250976445 +137059,40870,Annemari,1343998963 +137059,40870,brother-brother relationship,1344181828 +137059,40870,father-son relationship,1344181812 +137059,40870,gay,1171118992 +137059,40870,religion,1344075873 +137059,40870,smoking,1344075795 +137059,41285,blindfold,1224884713 +137059,41285,Netflix Finland,1354630410 +137059,41527,friendship,1242390663 +137059,41527,Golden Globe winner,1242390154 +137059,41566,faun,1198937766 +137059,41569,island,1271614560 +137059,41571,Annemari,1326996203 +137059,41571,courtesan,1171904337 +137059,41571,library,1239912030 +137059,41575,library,1221661564 +137059,41699,16th century,1336998250 +137059,41699,Annemari,1336849588 +137059,41699,banned movie,1336998501 +137059,41699,color sequence,1336998419 +137059,41769,Annemari,1369750490 +137059,41769,To See,1221397326 +137059,41863,To See,1208036062 +137059,41997,blindfold,1224885150 +137059,41997,library,1206005297 +137059,41997,Netflix Finland,1375438245 +137059,41997,on dvr,1239640482 +137059,42004,domineering mother,1198333621 +137059,42004,drugs,1197919890 +137059,42004,dysfunctional family,1197919158 +137059,42004,educational,1241129616 +137059,42004,family bonds,1197919158 +137059,42004,juvenile deliquent,1197919674 +137059,42004,loner,1197919401 +137059,42004,male nudity,1197920014 +137059,42004,male prostitute,1197919366 +137059,42004,native americans,1197919838 +137059,42004,PROSTITUTES,1232721592 +137059,42004,roadtrip,1241129741 +137059,42004,sex reassignment surgery,1197919338 +137059,42004,telemarketing,1197919502 +137059,42004,therapist,1197919713 +137059,42004,transgender,1241129760 +137059,42018,To See,1213818389 +137059,42053,Golden Raspberry (Worst Actress),1224353330 +137059,42053,Golden Raspberry (Worst Picture),1224352324 +137059,42094,frankenstein,1217156364 +137059,42094,Spanish Civil War,1217156287 +137059,42094,To See,1214745943 +137059,42217,Noriko Trilogy,1189626660 +137059,42632,child murder,1178566201 +137059,42632,disturbing,1241091860 +137059,42632,memasa's movies,1308833341 +137059,42632,Revenge Trilogy,1178283681 +137059,42638,my computer,1328716326 +137059,42718,on computer,1213867872 +137059,42723,memasa's movies,1320925547 +137059,42723,To See,1215959814 +137059,42728,based on a book,1250421915 +137059,42728,library,1250423548 +137059,43376,anti-war,1241088884 +137059,43376,based on a true story,1241088905 +137059,43376,interrogation,1241088887 +137059,43376,memasa's movies,1308831554 +137059,43376,Reference to Aktion T4,1177282197 +137059,43376,resistance movement,1241088900 +137059,43376,See: Requiem,1241441446 +137059,43376,WOMEN DURING WARTIME,1241088895 +137059,43376,World War II,1177350163 +137059,43391,1980s,1229007643 +137059,43391,1990s,1229180900 +137059,43391,alcohol,1229006733 +137059,43391,anti-hero,1241018834 +137059,43391,bar,1229010870 +137059,43391,Biography,1241018799 +137059,43391,conviction,1229023550 +137059,43391,domestic violence,1229011594 +137059,43391,drinking,1229006744 +137059,43391,falling,1229031697 +137059,43391,gullibility,1241018806 +137059,43391,husband-wife relationship,1229009469 +137059,43391,manager,1229016341 +137059,43391,my addition to ML,1230327970 +137059,43391,news media,1229017457 +137059,43391,Olympics,1229016357 +137059,43391,on dvr,1229002292 +137059,43391,police,1229009609 +137059,43391,satire,1241018812 +137059,43391,satirical,1229007632 +137059,43391,singing,1229013003 +137059,43391,ski jumping,1241018815 +137059,43391,sports,1229007678 +137059,43391,strippers,1229010822 +137059,43391,success,1229027835 +137059,43391,travel,1229009529 +137059,43396,1960s,1245501258 +137059,43396,abroad,1245499168 +137059,43396,based on a true story,1245496928 +137059,43396,desert,1245496977 +137059,43396,motorcycle,1245496902 +137059,43396,road trip,1245497029 +137059,43396,transvestism,1245500999 +137059,43415,brother-brother relationship,1242993581 +137059,43415,cousins,1243005460 +137059,43415,directorial debut,1242993558 +137059,43415,gangsters,1242993611 +137059,43415,on dvr,1242810288 +137059,43419,19th century,1220129161 +137059,43419,bank robbery,1220028181 +137059,43419,Beautiful Woman,1241027440 +137059,43419,CLASS DIFFERENCES,1220044036 +137059,43419,father daughter relationship,1220042951 +137059,43419,fiancée,1220048182 +137059,43419,foreclosure,1220044204 +137059,43419,friendship,1220043071 +137059,43419,gold,1220046685 +137059,43419,good versus evil,1220047940 +137059,43419,heist,1220046505 +137059,43419,heroine,1220042785 +137059,43419,imperialism,1220045134 +137059,43419,Kick-Butt Women,1241027426 +137059,43419,kiss,1220028457 +137059,43419,knives,1220034474 +137059,43419,Latino/Latina,1220042613 +137059,43419,male nudity,1220028525 +137059,43419,mexico,1220043543 +137059,43419,police,1220046409 +137059,43419,priest,1220028493 +137059,43419,repetitive,1220047992 +137059,43419,revenge,1220028411 +137059,43419,safe (for valuables),1220042538 +137059,43419,science,1220046397 +137059,43419,train,1220028164 +137059,43460,library,1220213166 +137059,43836,no words can describe how bad this movie is,1241090597 +137059,43836,not funny; bad remake,1241090616 +137059,43836,remake,1241090602 +137059,43836,xenophobic,1241090633 +137059,43921,missing gun,1172946165 +137059,44168,National Film Registry,1230751377 +137059,44191,ambiguous,1171466431 +137059,44191,memasa's movies,1308832548 +137059,44191,moral ambiguity,1199009457 +137059,44191,social control,1170689696 +137059,44191,visually appealing,1241477055 +137059,44195,overrated,1241213844 +137059,44199,Annemari,1335603822 +137059,44199,HOSTAGE SITUATIONS,1345314398 +137059,44301,abuse,1214169111 +137059,44301,bar,1214169221 +137059,44301,drab,1214167715 +137059,44301,drinking,1214169246 +137059,44301,FEMMES FATALES,1214167783 +137059,44301,Finland Trilogy,1241019713 +137059,44301,guard,1218991098 +137059,44301,gullibility,1214169348 +137059,44301,loneliness,1214168201 +137059,44301,melancholy,1214167740 +137059,44301,ruutu.fi,1398698438 +137059,44301,sardonic,1241019743 +137059,44301,security guard,1214168003 +137059,44301,smoking,1214168845 +137059,44301,surveillance,1214659027 +137059,44301,To See,1213445112 +137059,44555,bald nemesis,1207833238 +137059,44555,eavesdropping,1233611915 +137059,44555,freedom of expression,1245269618 +137059,44555,memasa's movies,1308832276 +137059,44555,Netflix Finland,1375438297 +137059,44555,spies,1200857357 +137059,44555,spying,1172497677 +137059,44587,National Film Registry,1230751408 +137059,44633,1980s,1291801712 +137059,44633,1990s,1291801730 +137059,44665,Annemari,1332153556 +137059,44665,Likeable main character,1332260222 +137059,44665,memasa's movies,1391603761 +137059,44665,To See,1221048854 +137059,44694,adultery,1192987022 +137059,44694,Beautiful Woman,1197047993 +137059,44694,gorgeous Penelope Cruz,1241185760 +137059,44694,hairdresser,1192986847 +137059,44694,superstition,1192986299 +137059,44759,Erotic Thriller,1215900135 +137059,44759,Golden Raspberry (Worst Actress),1224353295 +137059,44759,Golden Raspberry (Worst Picture),1224352570 +137059,44777,alien abduction,1223994724 +137059,44777,alien contact,1241018051 +137059,44777,aliens,1223993966 +137059,44777,British,1241018044 +137059,44777,crop circles,1223994489 +137059,44777,homage,1241018037 +137059,44777,male nudity,1223994068 +137059,44777,my addition to ML,1230327951 +137059,44777,nerds,1241018032 +137059,44777,sex scenes,1223994573 +137059,44777,television show,1223994217 +137059,44777,TV show,1223994133 +137059,44777,UFOS,1223994034 +137059,44788,religious bigotry,1204921352 +137059,44788,To See,1204921298 +137059,44849,To See,1204904752 +137059,44900,library,1238169998 +137059,44900,library vhs,1238170005 +137059,44900,music business,1234821287 +137059,44900,youth,1238169924 +137059,44929,Netflix Finland,1356884696 +137059,44937,1000th rating,1347381895 +137059,44937,adoption,1347381485 +137059,44937,baby,1347381088 +137059,44937,belgium,1347381518 +137059,44937,black market,1347381625 +137059,44937,boyfriend girlfriend relationship,1347381113 +137059,44937,cellphone scene,1347438620 +137059,44937,child selling,1347381568 +137059,44937,despicable character,1347381421 +137059,44937,on dvr,1328713638 +137059,44937,regrets,1347382255 +137059,44937,stealing,1347381133 +137059,44937,thieves,1347381658 +137059,44974,To See,1230023950 +137059,45003,easily confused with other movie(s) (title),1233576069 +137059,45081,based on a computer game,1191341473 +137059,45081,unintentionally funny,1241128746 +137059,45183,To See,1237986617 +137059,45210,easily confused with other movie(s) (title),1232797155 +137059,45329,library,1235211562 +137059,45329,my addition to ML,1235211533 +137059,45329,rare,1235211577 +137059,45335,National Film Registry,1230728940 +137059,45442,3 stars for special effects,1241091323 +137059,45447,bullshit history,1244374845 +137059,45447,museum,1216665836 +137059,45499,better than first part,1241213227 +137059,45499,duality,1203199474 +137059,45499,father son relationship,1203199222 +137059,45499,HAUNTED BY THE PAST,1203198963 +137059,45499,ice skating,1203199363 +137059,45499,intense,1241213244 +137059,45499,jealousy,1203199449 +137059,45499,motorcycle,1203198945 +137059,45499,tattoo,1203199339 +137059,45499,tissue regeneration,1203196641 +137059,45499,wheelchair,1203196099 +137059,45517,cars,1172325234 +137059,45517,CGI doesn't help an average movie!,1241192632 +137059,45635,beautiful woman,1438373034 +137059,45635,censorship,1438373993 +137059,45635,female director,1438380548 +137059,45666,monastery,1280003129 +137059,45732,Not Even Uma Could Save This Dizaster! Wanda Yikes!,1241125298 +137059,45928,To See,1203363224 +137059,45950,earth,1241188615 +137059,45950,important,1221314973 +137059,46322,blindness,1181502632 +137059,46322,calligraphy,1237920190 +137059,46322,easily confused with other movie(s) (title),1239165428 +137059,46322,westernization,1181538773 +137059,46335,cars,1172325365 +137059,46530,superhero,1241193171 +137059,46559,docudrama,1220358978 +137059,46559,falsely accused,1226578600 +137059,46559,George Bush,1241027311 +137059,46559,interrogation,1226578475 +137059,46559,library,1217827230 +137059,46559,numbers,1226578412 +137059,46559,on dvr,1221397864 +137059,46559,prison,1226578579 +137059,46578,dark comedy,1241442076 +137059,46578,Gay Character,1334765413 +137059,46578,nonconformity,1241442032 +137059,46578,road trip,1241442040 +137059,46578,suicide attempt,1336170939 +137059,46723,library,1199018658 +137059,46723,Nudity (Full Frontal - Notable),1248822985 +137059,46803,National Film Registry,1228235896 +137059,46865,Golden Raspberry (Worst Actor),1224355055 +137059,46948,anthropomorphic,1206889021 +137059,46948,basketball,1206535282 +137059,46948,coming of age,1206535753 +137059,46948,friends,1206535554 +137059,46948,games,1207041434 +137059,46948,house,1206534946 +137059,46948,kite,1206535477 +137059,46948,neighbors,1206535221 +137059,46948,not funny,1241125922 +137059,46948,poor dialogue,1241125924 +137059,46948,prejudiced,1241125944 +137059,46948,puberty,1206535719 +137059,46948,SPOILY: Nebbercracker = Gollum,1206536897 +137059,46948,stereotypes,1241125958 +137059,46948,UNLIKELY FRIENDSHIPS,1206536615 +137059,46965,aviation,1170272836 +137059,46965,B-movie,1243282138 +137059,46965,campy,1243282149 +137059,46965,Friday night movie,1243373622 +137059,46970,blindfold,1224886605 +137059,46970,cars,1310213460 +137059,46970,divorce,1310213575 +137059,46970,Gay Character,1310213473 +137059,46970,on dvr,1258552748 +137059,46972,museum,1216665748 +137059,46974,courage,1241090450 +137059,46974,World Trade Center,1355170540 +137059,46976,Annemari,1330447096 +137059,46976,books,1331980314 +137059,46976,library,1210436400 +137059,46976,memasa's movies,1404749199 +137059,46976,Netflix Finland,1375435624 +137059,46976,wrist watch,1331980520 +137059,46976,writing process,1331987234 +137059,47099,on dvr,1353412656 +137059,47099,salesmen,1382974729 +137059,47202,assembly line,1326534296 +137059,47202,burn victim,1326533493 +137059,47202,cellphone scene,1326534353 +137059,47202,deafness,1326533748 +137059,47202,factory,1326534465 +137059,47202,female director,1326533604 +137059,47202,food,1326533994 +137059,47202,HAUNTED BY THE PAST,1326533924 +137059,47202,hearing impairment,1326533316 +137059,47202,holiday,1326533482 +137059,47202,Impersonation,1326534390 +137059,47202,Nudity (Topless),1326533538 +137059,47202,nurse,1326533354 +137059,47202,oil,1326534043 +137059,47202,pain,1326534526 +137059,47202,patient,1326534243 +137059,47202,refugee,1326534191 +137059,47202,scarry and strong,1326533881 +137059,47202,urination,1326534134 +137059,47202,workaholic,1326533692 +137059,47202,working women,1326533707 +137059,47221,idiotic,1243304151 +137059,47221,male nudity,1243264558 +137059,47423,Netflix Finland,1355572591 +137059,47423,Oscar Nom 2007,1230022879 +137059,47423,Oscar Nominee,1230022975 +137059,47423,Oscar Nominee: Lead Actor,1230023053 +137059,47491,Bible,1243716933 +137059,47491,black comedy,1243713941 +137059,47491,cerebral palsy,1243713418 +137059,47491,church,1243713651 +137059,47491,convicts,1243713508 +137059,47491,disability,1243713994 +137059,47491,FATHERS AND SONS,1243714017 +137059,47491,hospital,1243713662 +137059,47491,Neo-Nazis,1243713440 +137059,47491,out from prison,1244202171 +137059,47491,priest,1243713519 +137059,47491,racism,1243713983 +137059,47491,rural,1243713450 +137059,47491,starry-eyed,1243713701 +137059,47491,trees,1243713408 +137059,47610,cinematography,1241194985 +137059,47610,cool effects,1241194875 +137059,47610,Oscar Nom 2007,1241194857 +137059,47629,car accident,1255170084 +137059,47629,deceased family member,1255169990 +137059,47629,flowers,1255169877 +137059,47629,funereal,1255169836 +137059,47629,good acting,1255169690 +137059,47629,memasa's movies,1351874720 +137059,47629,monarchy,1255169363 +137059,47629,news media,1255170066 +137059,47629,Prime Minister,1255169526 +137059,47629,princess,1189529118 +137059,47629,queen,1255169404 +137059,47629,strong female lead,1255169431 +137059,47670,ARRANGED MARRIAGES,1243351872 +137059,47670,bride,1243004613 +137059,47670,bureaucracy,1243004708 +137059,47670,cousins,1243005507 +137059,47670,israel,1240232760 +137059,47670,marriage,1243004651 +137059,47670,middle east,1243004783 +137059,47670,on dvr,1240232701 +137059,47805,dogs,1214761289 +137059,47894,brothers,1310730020 +137059,47940,library,1240063959 +137059,47970,remake,1199047751 +137059,47999,abortion,1204908036 +137059,47999,bowling,1204907837 +137059,47999,Camp was shut down,1241127203 +137059,47999,children,1204906415 +137059,47999,conservatism,1204908271 +137059,47999,creationism,1204907217 +137059,47999,evolution,1204907231 +137059,47999,fundamentalism,1241127245 +137059,47999,George Bush,1241127211 +137059,47999,global warming,1204907088 +137059,47999,harry potter,1204908054 +137059,47999,homeschooling,1204910484 +137059,47999,homophobia,1204906537 +137059,47999,horror of religion,1232491520 +137059,47999,indoctrination,1241127252 +137059,47999,intelligent design,1204907406 +137059,47999,Islamophobia,1204906524 +137059,47999,juxtaposition,1204905383 +137059,47999,mass behavior,1241127257 +137059,47999,militaristic,1241127264 +137059,47999,nationalism,1241127267 +137059,47999,patriotic,1204907904 +137059,47999,Pentecostal,1204906968 +137059,47999,politics,1204908527 +137059,47999,predestination,1204908492 +137059,47999,radical,1204907062 +137059,47999,radio,1205497603 +137059,47999,religious bigotry,1241127275 +137059,47999,religious conversion,1204910616 +137059,47999,religious oppression,1241127279 +137059,47999,RELIGIOUS ZEALOTRY,1204910822 +137059,47999,Republicans,1204908544 +137059,47999,right wing,1204908356 +137059,47999,rightism,1204908412 +137059,47999,science,1204907268 +137059,47999,separation of church and state,1204907467 +137059,47999,sin,1241127301 +137059,47999,warmongering,1204907984 +137059,47999,WITCHCRAFT,1204908088 +137059,48167,black and white,1308325079 +137059,48167,cameos,1308325270 +137059,48167,disability,1241216703 +137059,48167,library,1241198051 +137059,48167,my addition to ML,1241198030 +137059,48167,road trip,1241211467 +137059,48167,wheelchair,1358421712 +137059,48304,disappointing,1241186831 +137059,48304,out of the frying pan into the fire,1185730749 +137059,48304,overrated,1241186826 +137059,48304,tribal,1185730856 +137059,48304,wallows in violence,1241186834 +137059,48326,remake,1229966781 +137059,48385,mockumentary,1241215215 +137059,48385,road trip,1241215228 +137059,48394,calligraphy,1237920163 +137059,48394,faun,1198937555 +137059,48394,imagination,1198937410 +137059,48394,memasa's movies,1381354616 +137059,48394,Netflix Finland,1398971922 +137059,48394,paired with:Devil's Backbone,1241267575 +137059,48394,Parallel universe,1198937523 +137059,48516,original is better,1189514282 +137059,48530,ambulance,1310495545 +137059,48530,angel,1310502681 +137059,48530,bank robbery,1310495490 +137059,48530,brother-brother relationship,1310495422 +137059,48530,child birth,1310495666 +137059,48530,funeral,1310495588 +137059,48530,love,1310495563 +137059,48530,Mental Institution,1310495370 +137059,48530,on dvr,1310246522 +137059,48530,Oslo,1310495626 +137059,48530,prisoners,1310495390 +137059,48530,suicide attempt,1310495468 +137059,48543,my addition to ML,1325699075 +137059,48598,blindfold,1224885559 +137059,48682,Iran,1223721165 +137059,48682,soccer,1223721887 +137059,48682,women,1223722825 +137059,48682,women disguised as men,1223721925 +137059,48696,child molestor,1249067967 +137059,48696,Nudity (Topless - Notable),1249129478 +137059,48696,swimming pool,1249378160 +137059,48696,To See,1205499411 +137059,48698,female director,1363628150 +137059,48698,Netflix Finland,1354643756 +137059,48698,priest,1363628097 +137059,48698,To See,1212947226 +137059,48738,adapted from:book,1178124308 +137059,48738,dictatorship,1216398696 +137059,48738,genocide,1178125516 +137059,48738,History,1241191608 +137059,48738,Idi Amin,1178121095 +137059,48738,terror,1178120695 +137059,48738,"the antagonist watches ""Deep Throat""",1178194856 +137059,48738,Uganda,1178121095 +137059,48744,anal sex,1348579267 +137059,48744,clubs,1348578528 +137059,48744,couple relationship,1348578950 +137059,48744,dildo,1348579080 +137059,48744,dominatrix,1348578555 +137059,48744,drag queen movie,1348578896 +137059,48744,erection,1348578740 +137059,48744,fellatio,1348579019 +137059,48744,gay,1348578516 +137059,48744,Gay Interest,1348579066 +137059,48744,husband-wife relationship,1348578964 +137059,48744,independent film,1348579311 +137059,48744,interracial marriage,1348578701 +137059,48744,male nudity,1348578481 +137059,48744,male prostitute,1348578570 +137059,48744,marriage counseling,1348579760 +137059,48744,masturbation,1348578813 +137059,48744,New York City,1348578771 +137059,48744,on dvr,1321555466 +137059,48744,orgasm,1348578631 +137059,48744,orgy,1348578638 +137059,48744,penis,1348578601 +137059,48744,remote control,1348579102 +137059,48744,suicide attempt,1348579145 +137059,48744,swimming pool,1348579295 +137059,48744,To See,1217070779 +137059,48744,video camera,1348578916 +137059,48774,baby,1201800046 +137059,48774,boat,1201800617 +137059,48774,bus,1201801003 +137059,48774,cannabis,1201800157 +137059,48774,gypsy,1201800599 +137059,48774,illegal immigration,1201799978 +137059,48774,motorcycle,1201800180 +137059,48774,overrated,1241214431 +137059,48774,pregnancy,1201800057 +137059,48774,refugee,1201800291 +137059,48774,stereotypes,1241214434 +137059,48774,survival,1201800664 +137059,48774,uprising,1201800015 +137059,48774,waste of celluloid,1241214480 +137059,48774,xenophobia,1241214462 +137059,48780,Annemari,1335532682 +137059,48780,rivalry,1341511755 +137059,48780,To See,1206822218 +137059,48783,flag,1223808385 +137059,48783,World War II,1189006681 +137059,48833,Netflix Finland,1355575307 +137059,48883,To See,1216501403 +137059,48997,Nudity (Topless - Notable),1312298643 +137059,48997,on dvr,1310931805 +137059,48997,over-the-top ending,1312298575 +137059,48997,perfume,1312298721 +137059,48997,scent,1312298764 +137059,48997,waterboarding,1312298959 +137059,49265,History,1234002483 +137059,49312,Annemari,1336396531 +137059,49312,car accident,1336483684 +137059,49312,funeral,1336483860 +137059,49312,neighbors,1336483816 +137059,49396,devil,1279799863 +137059,49396,To See,1221422964 +137059,49422,on dvr,1399628274 +137059,49530,1990s,1203251725 +137059,49530,Africa,1203255221 +137059,49530,atrocity,1203255170 +137059,49530,child soldiers,1203254431 +137059,49530,Civil War,1203251751 +137059,49530,diamonds,1203252247 +137059,49530,FATHERS AND SONS,1203261684 +137059,49530,imprisonment,1203253494 +137059,49530,journalism,1203254909 +137059,49530,mining,1203252380 +137059,49530,MISSING PERSONS,1203261672 +137059,49530,orphans,1203258638 +137059,49530,photography,1203259948 +137059,49530,PROSTITUTES,1203253415 +137059,49530,rebels,1203253712 +137059,49530,refugee,1203254031 +137059,49530,separation,1203256250 +137059,49530,smuggling,1203254605 +137059,49649,cliche,1241126974 +137059,49649,coming of age,1189687252 +137059,49649,destiny,1189687617 +137059,49649,extrasensory visual capacity,1192641801 +137059,49649,JOURNEY OF SELF-DISCOVERY,1189687964 +137059,49649,spirit animal,1212583483 +137059,49649,teen,1241126981 +137059,49649,Weak directing,1241127003 +137059,49651,boxing,1217140049 +137059,49651,father-son relationship,1294851544 +137059,49651,restaurant,1294851246 +137059,49772,abroad,1221344316 +137059,49772,based on a book,1221347982 +137059,49772,DOCTORS AND PATIENTS,1221344338 +137059,49772,high society,1221344515 +137059,49772,husband-wife relationship,1221344307 +137059,49772,imperialism,1221347821 +137059,49772,nuns,1221347734 +137059,49772,orphanage,1221345818 +137059,49772,remake,1221345165 +137059,49772,science,1221499968 +137059,49772,unhappy marriage,1221344362 +137059,49822,World War II,1292852219 +137059,49856,classical music,1309631039 +137059,49856,concert,1309631366 +137059,49856,library,1243963294 +137059,49856,low stakes for a suspense drama,1321301900 +137059,49856,nanny,1309631318 +137059,49856,Nudity (Topless - Brief),1309631204 +137059,49856,on dvr,1309511541 +137059,49856,swimming pool,1309631259 +137059,49856,upper class,1309698236 +137059,50003,B-movie,1241026095 +137059,50003,competition,1212147771 +137059,50003,dumb but funny,1241026122 +137059,50003,geek,1213820175 +137059,50003,geeks,1212147914 +137059,50003,heroine,1212146186 +137059,50003,hot girls!,1241026102 +137059,50003,ludicrous,1241026103 +137059,50003,martial arts,1212146363 +137059,50003,needles,1212344819 +137059,50003,ninja,1212146382 +137059,50003,princess,1212146476 +137059,50003,statue,1212147495 +137059,50003,stupid but funny,1241026113 +137059,50003,surveillance,1212153014 +137059,50003,Teen movie,1212146578 +137059,50003,video game adaptation,1212145666 +137059,50003,volleyball,1212146533 +137059,50003,wuxia,1212145363 +137059,50005,calligraphy,1237920136 +137059,50005,library,1218920360 +137059,50005,Netflix Finland,1364897027 +137059,50011,To See,1217317586 +137059,50068,letters,1201535237 +137059,50068,library,1238062964 +137059,50068,on dvr,1351763553 +137059,50189,blindfold,1224886964 +137059,50514,To See,1215969715 +137059,50517,beach,1234739134 +137059,50517,cafe,1234710649 +137059,50517,constitution of individuality and identity,1241018238 +137059,50517,face,1234600776 +137059,50517,jealousy,1234709354 +137059,50517,male-female relationship,1234708959 +137059,50517,on dvr,1234600482 +137059,50517,photographer,1234710699 +137059,50517,plastic surgery,1241018248 +137059,50517,statue,1234739088 +137059,50517,surgery,1234738915 +137059,50658,7n Up (series),1255623799 +137059,50658,To See,1221738261 +137059,50742,7n Up (series),1255623440 +137059,50798,faun,1198938126 +137059,50806,Golden Raspberry (Worst Actor),1224354987 +137059,50842,actors,1343930092 +137059,50842,Annemari,1343835779 +137059,50842,boss,1343929752 +137059,50842,dry humor,1343933888 +137059,50842,lawyers,1343929669 +137059,50842,lies,1343930034 +137059,50842,To See,1217316875 +137059,50842,workplace,1343929684 +137059,50851,Netflix Finland,1390221179 +137059,50872,anthropomorphic,1224787367 +137059,50872,blindfold,1224884266 +137059,50872,books,1224786412 +137059,50872,chefs,1224774506 +137059,50872,community,1224773447 +137059,50872,customer service,1224774359 +137059,50872,Family,1224774344 +137059,50872,imaginary friend,1224786364 +137059,50872,imagination,1224786355 +137059,50872,kitchen,1224786458 +137059,50872,lawyers,1224773487 +137059,50872,Pixar's Formula Starting To Get Stale,1241212451 +137059,50872,recipe,1205416030 +137059,50872,restaurant,1224774344 +137059,50872,See: Wallace and Gromit: The Curse of the Were-Rabbit,1224787866 +137059,50872,television show,1224774655 +137059,50872,TV show,1224774604 +137059,50872,will (law),1224786188 +137059,50912,episodic,1196081170 +137059,50912,memasa's movies,1391603953 +137059,50912,Paris,1196081025 +137059,50940,disability,1310482488 +137059,50940,Nudity (Topless - Brief),1310482771 +137059,50940,on dvr,1309676244 +137059,50940,serial killer,1310482735 +137059,50940,suicide,1310482750 +137059,50940,wedding,1310482722 +137059,50940,wheelchair,1310482496 +137059,50999,adapted from:book,1234115922 +137059,50999,amusement park,1234115982 +137059,50999,anthropomorphic,1234116063 +137059,50999,birds,1234116046 +137059,50999,chicken,1234116030 +137059,50999,Danish,1233964130 +137059,50999,Hans Christian Andersen,1250844094 +137059,50999,List J,1234026088 +137059,50999,my addition to ML,1233963092 +137059,50999,not funny,1240849198 +137059,50999,plot goes down like a lead balloon - or a pigeon,1240849209 +137059,50999,rats,1234115966 +137059,50999,See: Valiant,1234116501 +137059,50999,updated classics,1250844100 +137059,51007,on dvr,1309194449 +137059,51077,motorcycle,1178363743 +137059,51091,on dvr,1338552431 +137059,51255,british comedy,1241211876 +137059,51277,library,1251489875 +137059,51277,monastery,1310316958 +137059,51277,monks,1310316929 +137059,51277,on dvr,1309176519 +137059,51277,training montage,1310317108 +137059,51304,1990s,1221653214 +137059,51304,based on a true story,1241016967 +137059,51304,Canada,1221567389 +137059,51304,controversial,1221571819 +137059,51304,husband-wife relationship,1221567052 +137059,51304,incest,1241016971 +137059,51304,my addition to ML,1230327930 +137059,51304,rape,1241016977 +137059,51304,serial killer,1221566974 +137059,51304,SERIAL KILLERS,1232791404 +137059,51304,video camera,1221567664 +137059,51314,library,1250868717 +137059,51575,motorcycle,1178362288 +137059,51662,abjection,1328213454 +137059,51662,captain,1199823827 +137059,51662,combat strategy,1199905557 +137059,51662,could have been better,1241267531 +137059,51662,deformity,1199820046 +137059,51662,dehumanization,1328213464 +137059,51662,elephant,1199826244 +137059,51662,elephants,1199826343 +137059,51662,Extreme violence is good for growing youth,1199908053 +137059,51662,FATHERS AND SONS,1199904709 +137059,51662,homoerotic,1241267337 +137059,51662,king,1200071655 +137059,51662,macho,1199904930 +137059,51662,male nudity,1199820634 +137059,51662,messenger,1199822408 +137059,51662,military superiority,1199822337 +137059,51662,misogyny,1199904980 +137059,51662,offensive,1241267372 +137059,51662,oracle,1199822702 +137059,51662,overrated,1241267383 +137059,51662,persians,1199827623 +137059,51662,prejudice,1241267392 +137059,51662,priest,1199822644 +137059,51662,queen,1200071673 +137059,51662,rape,1199820711 +137059,51662,rhinoceros,1199826613 +137059,51662,shallow,1199823751 +137059,51662,spartans,1199827081 +137059,51662,sword and sandal,1199822444 +137059,51662,wolves,1199906150 +137059,51662,xenophobia,1241267398 +137059,51694,To See,1219261145 +137059,51705,library,1212946347 +137059,51709,child in peril,1354719536 +137059,51709,Netflix Finland,1354542875 +137059,51709,To See,1221396594 +137059,51884,library,1220197561 +137059,51931,9/11,1219144093 +137059,51939,ninja,1203364886 +137059,51991,adoption,1202398599 +137059,51991,aeromodelling,1203179969 +137059,51991,book,1202398810 +137059,51991,child selling,1202398614 +137059,51991,gloomy,1202399962 +137059,51991,Isolation,1203192995 +137059,51991,literacy,1202398826 +137059,51991,Militsiya,1202399228 +137059,51991,MISSING PERSONS,1202399005 +137059,51991,MOTHERS AND SONS,1241019672 +137059,51991,orphanage,1202397801 +137059,51991,PROSTITUTES,1202398793 +137059,51991,searching,1241019655 +137059,51991,spring,1202398676 +137059,51991,train,1202399250 +137059,51991,trucks,1203179993 +137059,51991,winter,1202398676 +137059,51991,woodworking,1202398755 +137059,52042,Beautiful Woman,1241089759 +137059,52042,end of war,1212348894 +137059,52042,espionage,1212348662 +137059,52042,false identity,1241089765 +137059,52042,male nudity,1212347981 +137059,52042,memasa's movies,1308832047 +137059,52042,Netflix Finland,1356883690 +137059,52042,Nudity (Full Frontal - Notable),1328214237 +137059,52042,Nudity (Rear - Brief),1238062549 +137059,52042,Nudity (Rear),1328214248 +137059,52042,Nudity (Topless - Notable),1238062302 +137059,52042,philatelist,1212348946 +137059,52042,resistance movement,1241089774 +137059,52042,singer,1212348793 +137059,52042,singing,1212348779 +137059,52042,stamps,1320332212 +137059,52042,WOMEN DURING WARTIME,1241089776 +137059,52241,mentally impaired,1207383696 +137059,52241,Netflix Finland,1355572933 +137059,52281,exploitation,1241188797 +137059,52281,genre spoof,1241188744 +137059,52281,machine gun leg,1241188754 +137059,52281,motorcycle,1178390109 +137059,52281,Sexy ladies,1241188812 +137059,52328,easily confused with other movie(s) (title),1221235007 +137059,52328,spaceships,1241185457 +137059,52328,sunglasses,1221314691 +137059,52448,memasa's movies,1322224757 +137059,52579,Annemari,1346922198 +137059,52579,To See,1248822510 +137059,52668,To See,1213136524 +137059,52885,dreamlike,1241090045 +137059,52885,psychedellic,1241090061 +137059,52952,1980s,1241090965 +137059,52952,acting debut,1234002079 +137059,52952,bullying,1233960174 +137059,52952,childhood,1233961037 +137059,52952,coming of age,1241090968 +137059,52952,deceased family member,1233959905 +137059,52952,father figure,1233961542 +137059,52952,flag,1234129148 +137059,52952,friendship,1233961510 +137059,52952,INNOCENCE LOST,1233961047 +137059,52952,nationalism,1233960046 +137059,52952,out from prison,1234960979 +137059,52952,racism,1233960030 +137059,52952,smoking,1234048251 +137059,52952,soldier,1233960994 +137059,52952,suburbia,1233960266 +137059,52952,tattoo,1234129223 +137059,52952,teenager,1233960115 +137059,52952,To See,1212176067 +137059,52967,Alzheimer's disease,1217535764 +137059,52967,Annemari,1348927506 +137059,52967,memory,1348942764 +137059,52967,memory loss,1348942776 +137059,52967,nurse,1348942811 +137059,52967,nursing home,1348942749 +137059,53024,EXPERIMENTS GONE AWRY,1243534257 +137059,53024,To See,1243534717 +137059,53038,National Film Registry,1230754716 +137059,53121,library,1220047876 +137059,53123,Annemari,1357053042 +137059,53123,immigrants,1357483684 +137059,53123,memasa's movies,1381354658 +137059,53129,on dvr,1344863600 +137059,53129,To See,1221143838 +137059,53161,To See,1216427848 +137059,53322,library,1243701324 +137059,53464,invisibility,1213076665 +137059,53519,jukebox,1205413423 +137059,53519,Kick-Butt Women,1216394784 +137059,53550,To See,1207386100 +137059,53737,To See,1215936512 +137059,53883,To See,1226667721 +137059,53894,library,1237918377 +137059,53953,claustrophobic,1241028404 +137059,53953,hotel,1241028404 +137059,53953,manager,1223806554 +137059,53953,memasa's movies,1308833154 +137059,53953,numbers,1217262729 +137059,53953,theatrical version is better,1201284449 +137059,53956,accident,1234883555 +137059,53956,British,1234880126 +137059,53956,british comedy,1234880139 +137059,53956,brother-brother relationship,1234883607 +137059,53956,coffin,1234880653 +137059,53956,deceased family member,1234880007 +137059,53956,FAMILY GATHERINGS,1234879826 +137059,53956,List J,1234026287 +137059,53956,male nudity,1234879720 +137059,53956,overrated,1241091825 +137059,53956,vertically challenged people,1234879739 +137059,53956,wheelchair,1234883512 +137059,53996,Netflix Finland,1375437723 +137059,54001,broomstick,1205497205 +137059,54075,based on a book,1326735197 +137059,54075,desert,1326735432 +137059,54075,holy war,1326735284 +137059,54075,illegitimate child,1326735409 +137059,54075,Jan Guillou,1326742878 +137059,54075,Jerusalem,1326742998 +137059,54075,king,1326735244 +137059,54075,library,1221682490 +137059,54075,monastery,1326735056 +137059,54075,monks,1326735070 +137059,54075,nunnery,1326735186 +137059,54075,nuns,1326735091 +137059,54075,sister sister relationship,1328213915 +137059,54075,sword fight,1326734318 +137059,54116,male-female relationship,1324104647 +137059,54190,To See,1232898869 +137059,54196,island,1217533053 +137059,54268,golf,1197130915 +137059,54272,pollution,1288791965 +137059,54274,Golden Raspberry (Worst Actress),1224353241 +137059,54274,Golden Raspberry (Worst Picture),1224352684 +137059,54276,blindfold,1224888182 +137059,54276,remake,1199545747 +137059,54328,library,1251446630 +137059,54372,library,1244371536 +137059,54372,Netflix Finland,1354542592 +137059,54503,beer,1206271644 +137059,54503,cocaine,1206271664 +137059,54503,drinking,1206271626 +137059,54503,false identity,1206271582 +137059,54503,friendship,1206271691 +137059,54503,gayish,1206271333 +137059,54503,liquor store,1215245400 +137059,54503,nerds,1206271558 +137059,54503,oldschoolish,1241194490 +137059,54503,OverHyped,1241194531 +137059,54503,overrated,1241194487 +137059,54503,party,1206271512 +137059,54503,police,1206271611 +137059,54503,pornography,1206271438 +137059,54503,self discovery,1206271841 +137059,54503,shopping,1206271745 +137059,54503,singing,1206271678 +137059,54503,stupid comedy,1241194483 +137059,54503,teen,1241194479 +137059,54503,Teen movie,1241194505 +137059,54686,child in peril,1218296005 +137059,54686,coming of age,1218297059 +137059,54686,even worse than Eragon,1241024658 +137059,54686,female warriors,1218297338 +137059,54686,good versus evil,1218297118 +137059,54686,King Arthur,1221046072 +137059,54686,mask,1218297036 +137059,54686,mediocre,1241024645 +137059,54686,mediocre acting,1241024651 +137059,54686,mediocre plot,1241024647 +137059,54686,sword,1218295954 +137059,54686,sword and sandal,1218297439 +137059,54691,based on a book,1227809330 +137059,54691,easily confused with other movie(s) (title),1228047445 +137059,54691,library,1227809260 +137059,54691,my addition to ML,1230328222 +137059,54691,Nudity (Full Frontal),1258821947 +137059,54691,Nudity (Topless - Notable),1258821959 +137059,54691,rare,1229689872 +137059,54691,wheelchair,1258898453 +137059,54780,To See,1220198026 +137059,54796,library,1239959218 +137059,54881,1980s,1229872472 +137059,54881,2000s,1229872551 +137059,54881,arcade,1229868411 +137059,54881,competition,1241126879 +137059,54881,donkey kong,1241126897 +137059,54881,father daughter relationship,1229868465 +137059,54881,father-son relationship,1229868455 +137059,54881,games,1241126904 +137059,54881,geek,1241126860 +137059,54881,husband-wife relationship,1229868444 +137059,54881,quirky subculture,1241126870 +137059,54881,rivalry,1241126908 +137059,54881,talent,1229869780 +137059,54881,teacher,1229873325 +137059,54881,To See,1212167930 +137059,54881,underdog,1241126911 +137059,54881,world record,1241126915 +137059,54995,amputee,1205414275 +137059,54995,barbecue,1205413915 +137059,54995,biochemical weapons,1205414680 +137059,54995,crude humor,1241185130 +137059,54995,explosions,1205414867 +137059,54995,helicopters,1205415803 +137059,54995,hospital,1205414573 +137059,54995,lesbian,1241185138 +137059,54995,memasa's movies,1369581289 +137059,54995,military,1205414649 +137059,54995,motorcycle,1205413296 +137059,54995,needles,1205414594 +137059,54995,Nudity (Topless),1205414053 +137059,54995,Osama bin Laden,1205415144 +137059,54995,recipe,1205415999 +137059,54995,ring,1205414901 +137059,54995,sex scene,1205415060 +137059,54995,sheriff,1205414622 +137059,54995,splatter,1205413541 +137059,54995,strippers,1205413614 +137059,54995,tattoo,1205413623 +137059,54995,Texan,1205413957 +137059,54995,twins,1205415077 +137059,54997,Annemari,1361015250 +137059,54997,father-son relationship,1361814178 +137059,54997,library,1228318728 +137059,54999,To See,1210453010 +137059,55052,atonement,1220033850 +137059,55052,books,1211827434 +137059,55052,childhood,1211827124 +137059,55052,imagination,1211827329 +137059,55052,letters,1211827308 +137059,55052,life,1211827228 +137059,55052,nurse,1211827374 +137059,55052,setting:library,1217506885 +137059,55052,To See,1205496302 +137059,55052,twins,1211827289 +137059,55067,1970s,1241018650 +137059,55067,better than the american version,1241018653 +137059,55067,cool design,1241018656 +137059,55067,epilepsy,1239968466 +137059,55067,Exorcism,1239968087 +137059,55067,friendship,1239968838 +137059,55067,martyrdom,1239968704 +137059,55067,mental illness,1239968101 +137059,55067,possession,1239968501 +137059,55067,typewriter,1239968536 +137059,55069,1980s,1280933446 +137059,55069,To See,1207240147 +137059,55071,To See,1238064644 +137059,55094,Netflix Finland,1355575836 +137059,55094,To See,1207850101 +137059,55100,AGE DISPARITY ROMANCE,1232727423 +137059,55100,dolls,1232728203 +137059,55100,mother daughter relationship,1232728248 +137059,55118,baby,1205531826 +137059,55118,barbershop,1205531468 +137059,55118,chauffeur,1205532068 +137059,55118,Christmas,1205531648 +137059,55118,diary,1205531586 +137059,55118,drinking,1205531723 +137059,55118,father-son relationship,1205531932 +137059,55118,KGB,1205532123 +137059,55118,kitchen,1205531543 +137059,55118,male nudity,1205532196 +137059,55118,motorcycle,1205531489 +137059,55118,premature birth,1205531442 +137059,55118,prostitution,1205531611 +137059,55118,racism,1205531564 +137059,55118,rape,1205531959 +137059,55118,restaurant,1205531522 +137059,55118,Russian mafia,1241187677 +137059,55118,tattoo,1205531673 +137059,55118,To See,1205419069 +137059,55118,uncle,1205532153 +137059,55154,1980s,1203536285 +137059,55154,board game,1203536179 +137059,55154,Catholicism,1203536244 +137059,55154,Christmas,1203536156 +137059,55154,class society,1203536265 +137059,55154,college,1203531978 +137059,55154,friendship,1203531936 +137059,55154,hair,1223804073 +137059,55154,hair obsession,1203536444 +137059,55154,mafia,1216426733 +137059,55154,mobster,1203531961 +137059,55154,New York City,1217628043 +137059,55154,nightclub,1203536204 +137059,55154,relationship drama with a mob twist,1203536132 +137059,55154,relationships,1203536229 +137059,55154,Underrated,1207466768 +137059,55154,whipping,1210438341 +137059,55167,Annemari,1344076169 +137059,55176,1960s,1221316364 +137059,55176,archive footage,1241027208 +137059,55176,aviation,1241027229 +137059,55176,Cold War,1221316337 +137059,55176,earth,1241027227 +137059,55176,History,1241027220 +137059,55176,spiritual journey,1221315146 +137059,55176,To See,1208035967 +137059,55205,interviews,1212944753 +137059,55245,curse,1239907711 +137059,55247,1990s,1213162184 +137059,55247,animals,1213163721 +137059,55247,bears,1213163952 +137059,55247,books,1213162286 +137059,55247,freedom,1213162380 +137059,55247,freedom from society,1241187571 +137059,55247,hippie,1213162860 +137059,55247,hitchhiker,1196770102 +137059,55247,hunting,1213162938 +137059,55247,kayaking,1213163786 +137059,55247,male nudity,1213164055 +137059,55247,materialism,1213162099 +137059,55247,memasa's movies,1346854007 +137059,55247,nudists,1213163054 +137059,55247,Nudity (Full Frontal),1213163194 +137059,55247,Nudity (Topless - Notable),1213162997 +137059,55247,road trip,1241187561 +137059,55247,siblings,1213163350 +137059,55247,skinning,1213163505 +137059,55247,trains,1213161976 +137059,55247,true story,1241187555 +137059,55247,wolves,1213164343 +137059,55253,library,1217523095 +137059,55253,Netflix Finland,1356022975 +137059,55253,To See,1204295492 +137059,55255,To See,1239739696 +137059,55269,on dvr,1328614090 +137059,55272,nightclub,1213080216 +137059,55276,chemical,1392908397 +137059,55276,company,1392908397 +137059,55276,To See,1204909520 +137059,55280,boring,1392567000 +137059,55280,dolls,1392567014 +137059,55280,loneliness,1392567072 +137059,55290,addiction,1215852671 +137059,55290,author:Dennis Lehane,1215852527 +137059,55290,bar,1215852791 +137059,55290,based on a book,1215852492 +137059,55290,childhood,1215852735 +137059,55290,detective,1215852838 +137059,55290,MISSING PERSONS,1215852580 +137059,55290,pedophile,1215852920 +137059,55290,police investigation,1215852882 +137059,55363,on dvr,1357986659 +137059,55363,To See,1212168248 +137059,55369,French New Wave,1323903308 +137059,55369,happiness,1341256825 +137059,55369,life,1341256854 +137059,55369,my shopping list,1380635598 +137059,55369,on dvr,1323903319 +137059,55369,workplace,1341256841 +137059,55442,1980s,1219259990 +137059,55442,1990s,1219327040 +137059,55442,abroad,1219258915 +137059,55442,airport,1219337545 +137059,55442,autobiographical,1219260205 +137059,55442,black and white,1219258372 +137059,55442,childhood,1219258292 +137059,55442,comic book,1219259107 +137059,55442,coming of age,1219260065 +137059,55442,communists,1219259883 +137059,55442,depression,1219326935 +137059,55442,fundamentalism,1219260827 +137059,55442,gender discrimination,1219328448 +137059,55442,god,1219266611 +137059,55442,grandmother,1219265769 +137059,55442,gynocentric,1219327695 +137059,55442,History,1219259902 +137059,55442,interesting animation style,1241128137 +137059,55442,Islamistic,1219260880 +137059,55442,mature,1241128143 +137059,55442,melancholy,1219328548 +137059,55442,multinational settings,1219328719 +137059,55442,nuns,1219259715 +137059,55442,politics,1219259916 +137059,55442,punk,1219259781 +137059,55442,punk rock,1219259767 +137059,55442,Shah,1219260595 +137059,55442,Tehran,1219258089 +137059,55442,To See,1203860258 +137059,55442,TOTALITARIAN STATES,1219259953 +137059,55442,university,1219260958 +137059,55442,WOMEN DURING WARTIME,1219326974 +137059,55444,easily confused with other movie(s) (title),1229693254 +137059,55444,Movielens QuickPick,1205511627 +137059,55444,MUSICIAN'S LIFE,1205858898 +137059,55444,Netflix Finland,1356881951 +137059,55451,Annemari,1368873604 +137059,55498,blindfold,1224888815 +137059,55498,To See,1224888909 +137059,55553,activism,1239910183 +137059,55553,activist,1226576934 +137059,55553,brothers,1226577177 +137059,55553,cooking,1226576889 +137059,55553,easily confused with other movie(s) (title),1226686805 +137059,55553,farm,1226576724 +137059,55553,food,1229350670 +137059,55553,mad scientist,1226577113 +137059,55553,mutants,1226577057 +137059,55553,mutation,1226577034 +137059,55553,New Zealand,1226577192 +137059,55553,sheep,1241027930 +137059,55555,library,1225485310 +137059,55721,Golden Bear (Best Film),1232794334 +137059,55721,Netflix Finland,1375438793 +137059,55765,1960s,1216469917 +137059,55765,1970s,1216469965 +137059,55765,based on a true story,1241192941 +137059,55765,corruption,1216419478 +137059,55765,facades,1216419660 +137059,55765,interracial marriage,1216420092 +137059,55765,mafia,1216419923 +137059,55765,mother-son relationship,1216419600 +137059,55765,police,1216419803 +137059,55765,smuggling,1216420208 +137059,55765,To See,1209051768 +137059,55805,To See,1208028443 +137059,55814,great cinematography,1323872749 +137059,55814,hospital,1323883363 +137059,55814,inaccurate,1323877746 +137059,55814,locked-in syndrome,1323879561 +137059,55814,memasa's movies,1368538658 +137059,55814,Netflix Finland,1354641475 +137059,55814,on dvr,1320009545 +137059,55814,slow,1323879607 +137059,55814,wheelchair,1323976869 +137059,55820,1980s,1213078296 +137059,55820,coin,1226576266 +137059,55820,hitchhiker,1213040804 +137059,55820,memasa's movies,1391603887 +137059,55820,motel,1213365527 +137059,55820,Movielens QuickPick,1205510128 +137059,55820,Netflix Finland,1356883435 +137059,55820,sheriff,1213040564 +137059,55820,taxi driver,1213040745 +137059,55830,Netflix Finland,1360230714 +137059,55901,depressing,1309460938 +137059,55901,dreams,1309461387 +137059,55901,episodic,1309461184 +137059,55901,library,1239165108 +137059,55901,on dvr,1309194887 +137059,55901,too artsy,1309461503 +137059,55908,dialogue,1241091762 +137059,55908,dialogue driven,1241091757 +137059,55908,immortality,1241091773 +137059,55908,List J,1234034454 +137059,55908,one set,1241091785 +137059,55908,To See,1207467066 +137059,55908,what if...,1241091796 +137059,56003,To See,1218959132 +137059,56015,library,1337006606 +137059,56015,on dvr,1375631422 +137059,56060,hotel,1325503183 +137059,56060,on dvr,1320163959 +137059,56060,waiter,1325503248 +137059,56145,apocalypse,1219445258 +137059,56145,disaster,1219444737 +137059,56145,expiation,1219445317 +137059,56145,father-son relationship,1219444910 +137059,56145,giant monster,1219444650 +137059,56145,insects,1219444664 +137059,56145,juxtaposition,1219445431 +137059,56145,monster,1219444538 +137059,56145,preacher,1219445915 +137059,56145,religious conversion,1219445756 +137059,56145,SMALL-TOWN LIFE,1219445050 +137059,56145,supermarket,1219445184 +137059,56152,library,1240165805 +137059,56156,PROSTITUTES,1207425646 +137059,56156,tattoo,1207465690 +137059,56158,Christmas,1224891131 +137059,56171,aircraft,1212838409 +137059,56171,alcohol,1212583646 +137059,56171,anthropomorphic,1212834706 +137059,56171,authority,1212583307 +137059,56171,automata,1212843107 +137059,56171,aviation,1212582548 +137059,56171,bad pronunciation of Pekkala is definitely funny,1241184345 +137059,56171,child in peril,1212583021 +137059,56171,clockwork devices,1212842860 +137059,56171,coming of age,1212838058 +137059,56171,daemons,1212840930 +137059,56171,flying,1212582548 +137059,56171,girl,1212582331 +137059,56171,kidnapping,1212582882 +137059,56171,KIDS IN TROUBLE,1212583042 +137059,56171,magic,1212838481 +137059,56171,Parallel universe,1212582868 +137059,56171,polar bear,1212583633 +137059,56171,shape shifter,1212836872 +137059,56171,spirit animal,1212583438 +137059,56171,steampunk,1241184414 +137059,56171,whiskey,1212583657 +137059,56174,Annemari,1368873543 +137059,56174,Dream Sequence,1375974456 +137059,56174,New York City,1375974525 +137059,56174,To See,1210432189 +137059,56251,Based on a TV show,1241267072 +137059,56251,To See,1217795201 +137059,56286,androgyny,1226940972 +137059,56339,childhood,1218047968 +137059,56339,deformity,1218047588 +137059,56339,HAUNTED BY THE PAST,1218048433 +137059,56339,house,1218048411 +137059,56339,husband-wife relationship,1218048720 +137059,56339,imaginary friend,1218048609 +137059,56339,mask,1218047502 +137059,56339,medium,1218048167 +137059,56339,memasa's movies,1326296193 +137059,56339,MISSING PERSONS,1218047933 +137059,56339,mother-son relationship,1218048458 +137059,56339,Netflix Finland,1402141491 +137059,56339,orphanage,1241125759 +137059,56339,paranormal,1218048276 +137059,56339,peer support,1218047709 +137059,56339,See: The Devil's Backbone,1218961825 +137059,56339,social worker,1218048699 +137059,56339,wheelchair,1218047643 +137059,56367,List J,1243861548 +137059,56367,pregnancy,1246747809 +137059,56367,teenage girl,1246747865 +137059,56367,teenage pregnancy,1246747725 +137059,56367,teenagers,1246748033 +137059,56389,library,1241218422 +137059,56474,author:George Bataille,1320280143 +137059,56474,based on a book,1320280095 +137059,56474,Canary Islands,1320280271 +137059,56474,DEATH OF A PARENT,1320279797 +137059,56474,DEATH OF A SPOUSE,1320280020 +137059,56474,FORBIDDEN LOVE,1320280465 +137059,56474,Gran Canaria,1320280290 +137059,56474,homoerotic,1320279854 +137059,56474,incestuous,1320279442 +137059,56474,island,1320279500 +137059,56474,male nudity,1320279681 +137059,56474,masturbation,1320279720 +137059,56474,mother-son relationship,1320279555 +137059,56474,Nudity (Full Frontal),1320279954 +137059,56474,Nudity (Rear),1320279911 +137059,56474,Nudity (Topless - Notable),1320279580 +137059,56474,on dvr,1319985465 +137059,56474,penis,1320279691 +137059,56474,swimming pool,1320356830 +137059,56474,widows/widowers,1320280521 +137059,56607,Annemari,1356388208 +137059,56607,library,1240036586 +137059,56715,afterlife,1217631039 +137059,56715,suicide,1217631026 +137059,56715,To See,1218993110 +137059,56757,barber,1226930721 +137059,56757,easily confused with other movie(s) (title),1245421795 +137059,56757,gothic,1241187496 +137059,56757,great cinematography,1241187528 +137059,56757,London,1215972144 +137059,56757,To See,1209658375 +137059,56757,Victorian era,1241187457 +137059,56757,visually appealing,1241187518 +137059,56782,Annemari,1326844273 +137059,56782,memasa's movies,1353332420 +137059,56782,Movielens QuickPick,1205511574 +137059,56782,Netflix Finland,1356882226 +137059,56782,WORK ETHICS,1351689975 +137059,56788,on dvr,1362845297 +137059,56788,To See,1209714069 +137059,57027,dialogue driven,1323864250 +137059,57027,divorce,1323864353 +137059,57027,MOTHERS AND SONS,1323864396 +137059,57027,MURDER INVESTIGATIONS,1323864318 +137059,57027,on dvr,1321542875 +137059,57027,professor,1323867368 +137059,57027,unsuspenseful,1323899789 +137059,57027,videotape,1323864278 +137059,57027,word game,1323864232 +137059,57223,To See,1224793655 +137059,57274,firefighters,1309705828 +137059,57274,isolation,1309706107 +137059,57274,on dvr,1309610837 +137059,57274,police,1309706057 +137059,57274,reporter,1309705941 +137059,57274,television show,1309705897 +137059,57368,Netflix Finland,1355573175 +137059,57504,To See,1238882942 +137059,57534,accident,1224075015 +137059,57534,blindfold,1224887522 +137059,57534,blindness,1217104209 +137059,57534,extrasensory visual capacity,1224075783 +137059,57534,fire,1224077376 +137059,57534,ghosts,1217104236 +137059,57534,hospital,1224075005 +137059,57534,memasa's movies,1351038624 +137059,57534,MUSICIAN'S LIFE,1224074963 +137059,57534,spirits,1224075041 +137059,57534,violin,1224074951 +137059,57640,To See,1215898102 +137059,57669,Annemari,1342533826 +137059,57669,belgium,1349623725 +137059,57669,child killing,1349623787 +137059,57669,crime gone awry,1349623870 +137059,57669,crime lord,1349623861 +137059,57669,guilt,1349623759 +137059,57669,imdb top 250,1230023423 +137059,57669,Netflix Finland,1356885316 +137059,57669,suicide attempt,1349623818 +137059,57669,To See,1217535268 +137059,57669,vertically challenged people,1230023473 +137059,57669,Xmas theme?,1349624172 +137059,57792,on dvr,1324476671 +137059,57910,castration,1215855087 +137059,57910,To See,1221400081 +137059,58078,To See,1214665453 +137059,58103,To See,1203885170 +137059,58154,Netflix Finland,1356884861 +137059,58185,kolmasulottuvuus.fi,1379277901 +137059,58191,afghanistan,1224248532 +137059,58191,kolmasulottuvuus.fi,1379273568 +137059,58191,legislation,1226578995 +137059,58191,on dvr,1223472370 +137059,58191,To See,1207828997 +137059,58287,easily confused with other movie(s) (title),1242045559 +137059,58301,Annemari,1378729693 +137059,58301,breaking the fourth wall,1385804083 +137059,58301,cabin,1385804305 +137059,58301,dogs,1385804281 +137059,58301,egg,1385804245 +137059,58301,grim,1385831055 +137059,58301,remote control,1385804620 +137059,58301,tormenting,1385804512 +137059,58301,underwear,1385804156 +137059,58303,concentration camp,1357908848 +137059,58303,counterfeiting,1335692276 +137059,58303,end of war,1357910479 +137059,58303,library,1238062713 +137059,58303,money,1357907913 +137059,58303,Netflix Finland,1354542655 +137059,58303,Operation Bernhard,1357907996 +137059,58303,sabotage,1357907926 +137059,58303,survival,1357910469 +137059,58303,To See,1220084745 +137059,58306,on dvr,1390221370 +137059,58351,Netflix Finland,1386185719 +137059,58351,To See,1210064259 +137059,58376,Netflix Finland,1356022690 +137059,58425,library,1309346540 +137059,58520,directorial debut,1325700424 +137059,58559,Batman (series),1241268269 +137059,58559,dark,1241268279 +137059,58559,mask,1230419640 +137059,58559,To See,1216468607 +137059,58706,List J,1234034506 +137059,58706,mother-son relationship,1256837544 +137059,58879,Annemari,1343498129 +137059,58879,concert,1343575903 +137059,58879,interviews,1343576342 +137059,58879,library,1243965225 +137059,58879,the rolling stones,1343498289 +137059,58879,To See,1213118583 +137059,58972,island,1250938683 +137059,59018,To See,1225460277 +137059,59044,Alzheimer's disease,1217532545 +137059,59044,memory loss,1217532588 +137059,59103,library,1243859113 +137059,59103,To See,1220378573 +137059,59126,talk show host,1373971250 +137059,59141,1980s,1241042584 +137059,59141,bullying,1219448264 +137059,59141,childhood,1219447624 +137059,59141,exchange student,1219447951 +137059,59141,friendship,1219448736 +137059,59141,imagination,1219447724 +137059,59141,kiss,1219447891 +137059,59141,kite,1219448113 +137059,59141,light,1219448665 +137059,59141,mother-son relationship,1219447450 +137059,59141,movie theatre,1219448457 +137059,59141,movies about movies,1219448508 +137059,59141,nursing home,1219447586 +137059,59141,school,1219448275 +137059,59141,smoking,1219448651 +137059,59141,To See,1217533765 +137059,59141,video camera,1219447370 +137059,59260,adoption,1310666096 +137059,59260,apartment,1310666211 +137059,59260,library,1250870961 +137059,59260,mask,1310666070 +137059,59260,nanny,1310666052 +137059,59260,Nudity (Full Frontal),1310666141 +137059,59260,on dvr,1257181910 +137059,59260,PROSTITUTES,1310666230 +137059,59313,library,1229860985 +137059,59313,rare,1229860985 +137059,59315,afghanistan,1224248461 +137059,59315,comic book,1221067862 +137059,59315,exoskeleton,1224264493 +137059,59315,flying,1224249833 +137059,59315,heart problems,1224263908 +137059,59315,mask,1224352195 +137059,59315,overrated,1241213037 +137059,59315,secretary,1224249924 +137059,59315,To See,1221067769 +137059,59336,To See,1219841699 +137059,59369,Netflix Finland,1378911763 +137059,59369,prostitution,1378911803 +137059,59382,boring,1292339419 +137059,59382,child actor,1292339807 +137059,59382,nanny,1292339374 +137059,59382,on dvr,1291983002 +137059,59382,piano,1292339838 +137059,59382,puppetry,1292339585 +137059,59382,reference to The Red Balloon,1292339750 +137059,59387,1920s,1230470755 +137059,59387,addiction,1229689998 +137059,59387,broken hearts,1230480750 +137059,59387,falling,1229690265 +137059,59387,fantasy world,1241090196 +137059,59387,governor,1230480489 +137059,59387,hospital,1229543803 +137059,59387,imagination,1241090199 +137059,59387,injuries,1230480724 +137059,59387,intertwined,1241090202 +137059,59387,mask,1229617427 +137059,59387,memasa's movies,1309092842 +137059,59387,nurse,1230480624 +137059,59387,patient,1233151305 +137059,59387,pharmaceutical,1230480582 +137059,59387,storytelling,1241090209 +137059,59387,stunning,1241090211 +137059,59387,surgery,1230481037 +137059,59387,To See,1217633996 +137059,59418,on dvr,1403517033 +137059,59590,choir,1217532773 +137059,59602,AGE DISPARITY ROMANCE,1241017296 +137059,59602,based on a book,1241017281 +137059,59602,Beautiful Woman,1241017285 +137059,59602,books,1239723707 +137059,59602,BREAKUPS AND DIVORCES,1239723493 +137059,59602,cohabitation,1239723553 +137059,59602,epilepsy,1239723348 +137059,59602,Nudity (Rear),1239723401 +137059,59602,Nudity (Topless),1241017301 +137059,59602,on dvr,1239640542 +137059,59602,poetry,1239723327 +137059,59602,rival suitor,1239723584 +137059,59602,See: Elegy,1241968022 +137059,59602,swimming pool,1239723377 +137059,59602,teacher student relationship,1241017327 +137059,59602,university,1239723313 +137059,59715,easily confused with other movie(s) (title),1233576084 +137059,59725,predictable,1316293955 +137059,59731,archive footage,1235172615 +137059,59731,Arnold Schwarzenegger,1235211828 +137059,59731,Pro Wrestling,1223995805 +137059,59731,sports,1223996003 +137059,59731,To See,1223995867 +137059,59731,too long,1241027554 +137059,59784,anti-hero,1241186277 +137059,59784,destiny,1229345199 +137059,59784,easily confused with other movie(s) (title),1251030198 +137059,59784,father-son relationship,1229350772 +137059,59784,food,1229350552 +137059,59784,good versus evil,1229345460 +137059,59784,obesity,1229351099 +137059,59784,To See,1217609180 +137059,59784,warriors,1229345381 +137059,59795,choir,1217076961 +137059,59795,Christianity,1217070282 +137059,59795,Christmas,1216394122 +137059,59795,consumerism,1216394236 +137059,59795,materialism,1217070130 +137059,59795,MEMBERS OF THE CLERGY,1217090471 +137059,59795,Pentecostal,1216394959 +137059,59795,To See,1216395019 +137059,59985,library,1240063157 +137059,59995,To See,1249563215 +137059,60040,comic book,1219865859 +137059,60069,best animated movie in years,1241195534 +137059,60069,Biblical fantasy,1241195495 +137059,60069,captain,1229531577 +137059,60069,consumerism,1229531722 +137059,60069,Cute!,1241195507 +137059,60069,ecology,1241195521 +137059,60069,environment,1241195565 +137059,60069,environmental,1241195526 +137059,60069,obesity,1229531541 +137059,60069,robots,1241195553 +137059,60069,spaceships,1229617053 +137059,60069,To See,1215939486 +137059,60137,To See,1214130481 +137059,60161,Based on a TV show,1223726364 +137059,60161,To See,1223726383 +137059,60333,antarctica,1217532282 +137059,60333,To See,1217532270 +137059,60336,library vhs,1241948180 +137059,60363,B-movie,1241015791 +137059,60363,campy,1241015817 +137059,60363,gore,1223995214 +137059,60363,Nudity (Rear),1223981097 +137059,60363,Nudity (Topless - Notable),1223980943 +137059,60363,porn stars,1223986736 +137059,60363,strippers,1241015741 +137059,60363,stripping,1224064073 +137059,60363,travesty,1224164783 +137059,60363,virus,1223996280 +137059,60363,zombies,1241015728 +137059,60382,Netflix Finland,1368633576 +137059,60405,library,1228914936 +137059,60461,memasa's movies,1322224406 +137059,60463,elevator,1305035467 +137059,60463,hospital,1305035029 +137059,60463,monster,1305035018 +137059,60463,stopping time,1305035560 +137059,60463,wheelchair,1305034972 +137059,60487,halloween,1224427747 +137059,60487,library,1224427694 +137059,60522,rare,1221401029 +137059,60522,To See,1215938831 +137059,60654,lesbian,1217520886 +137059,60684,memasa's movies,1358872695 +137059,60684,superhero,1248194367 +137059,60688,easily confused with other movie(s) (title),1217534954 +137059,60766,archive footage,1358026848 +137059,60766,on dvr,1355149162 +137059,60766,partially black and white,1358026764 +137059,60766,wire walker,1358026818 +137059,60766,World Trade Center,1355170568 +137059,60816,To See,1238172577 +137059,60943,my computer,1328713906 +137059,60943,Netflix Finland,1355494024 +137059,60950,artists,1238836585 +137059,60950,bisexual,1238853394 +137059,60950,chick flick,1241091353 +137059,60950,friendship,1238836705 +137059,60950,narrated,1241091383 +137059,60950,scenic,1241091370 +137059,60950,To See,1221071130 +137059,61026,memasa's movies,1322224365 +137059,61026,Netflix Finland,1388152919 +137059,61075,AGE DISPARITY ROMANCE,1241967904 +137059,61075,bittersweet,1241973398 +137059,61075,memasa's movies,1309092060 +137059,61075,teacher student relationship,1241967953 +137059,61132,ACTOR'S LIFE,1238836267 +137059,61132,DRUG TRADE,1238836453 +137059,61132,irreverent,1241185910 +137059,61132,jungle,1238853286 +137059,61132,parody,1241185913 +137059,61132,To See,1221326616 +137059,61236,animation,1376085503 +137059,61236,Biography,1234229984 +137059,61236,dissociation,1376085603 +137059,61236,my shopping list,1378036428 +137059,61236,on dvr,1355738310 +137059,61236,To See,1232722003 +137059,61240,1980s,1226685988 +137059,61240,based on a book,1226686094 +137059,61240,library,1238063651 +137059,61240,school,1325239351 +137059,61240,suburbia,1226686555 +137059,61240,To See,1226668176 +137059,61240,wintry,1325239385 +137059,61279,variety show,1224076404 +137059,61323,on dvr,1319985027 +137059,61394,news media,1362225597 +137059,61394,television,1362225668 +137059,61646,brother-brother relationship,1323715937 +137059,61646,closeted homosexual,1323772455 +137059,61646,directorial debut,1245194056 +137059,61646,father-son relationship,1323715945 +137059,61646,infertility,1323772400 +137059,61646,interviews,1323772335 +137059,61646,janitor,1323715994 +137059,61646,library,1245194012 +137059,61646,male-female relationship,1323772194 +137059,61646,massage,1323772485 +137059,61646,on dvr,1320007404 +137059,61646,parole,1323716319 +137059,61646,pregnancy,1323715921 +137059,61646,prisoners,1323715911 +137059,61646,stroke,1323773157 +137059,61724,cashier,1382469138 +137059,61724,garbage man,1382469064 +137059,61724,library,1221973818 +137059,61724,library vhs,1221973818 +137059,61724,my addition to ML,1230328414 +137059,61724,my shopping list,1382469200 +137059,61724,on dvr,1376071872 +137059,61724,proletariat trilogy,1221973988 +137059,61724,rare,1221973826 +137059,61729,dentist,1231423252 +137059,61729,To See,1223674375 +137059,62010,Finnish,1223155754 +137059,62010,rare,1223028183 +137059,62010,To See,1223038107 +137059,62115,Animals die :(,1349797185 +137059,62115,argument,1349797292 +137059,62115,deceased family member,1349797133 +137059,62115,guns,1349797231 +137059,62115,Irish,1349797164 +137059,62115,irish accent,1349797172 +137059,62115,loss,1349797370 +137059,62115,Loss of child,1349797389 +137059,62115,photograph,1349797313 +137059,62115,rabbits,1349797264 +137059,62115,short,1349687731 +137059,62115,smoking,1349797354 +137059,62115,trains,1349797124 +137059,62203,To See,1309631857 +137059,62250,memasa's movies,1394276797 +137059,62250,Netflix Finland,1354542490 +137059,62376,family,1239460504 +137059,62376,steampunk,1241027358 +137059,62376,stylistic,1241027387 +137059,62394,based on a computer game,1224890880 +137059,62394,computer game,1224890915 +137059,62394,memasa's movies,1309511563 +137059,62394,To See,1224891046 +137059,62394,video game adaptation,1224890899 +137059,62511,memasa's movies,1369581260 +137059,62594,on dvr,1378822033 +137059,62644,Netflix Finland,1354543265 +137059,62644,teacher student relationship,1363714860 +137059,62662,library,1309634863 +137059,62662,Netflix Finland,1355572324 +137059,62729,absent fathers,1324839800 +137059,62729,Christmas,1324839720 +137059,62729,flying,1324839765 +137059,62729,fugitive,1324840162 +137059,62729,reindeer,1324840058 +137059,62729,single mother,1324840075 +137059,62729,To See,1225459796 +137059,62729,wolves,1324839732 +137059,62801,Lone Wolf and Cub series,1230222632 +137059,62801,samurai,1230292630 +137059,62803,Lone Wolf and Cub series,1245444809 +137059,62849,good soundtrack,1246750655 +137059,62849,painting,1246750474 +137059,62849,To See,1231961626 +137059,63062,child in peril,1401654617 +137059,63062,memasa's movies,1404747676 +137059,63062,on dvr,1390766984 +137059,63072,Netflix Finland,1375437983 +137059,63082,brothers,1335876488 +137059,63082,dark side of India,1239911520 +137059,63082,Golden Globe winner,1231769915 +137059,63082,interrogation,1239125518 +137059,63082,List J,1238882479 +137059,63082,obsession,1335953126 +137059,63082,RAGS TO RICHES,1241025948 +137059,63082,singing,1230478822 +137059,63082,To See,1228997905 +137059,63189,16th century,1238833133 +137059,63189,better than expected,1241018507 +137059,63189,brother-brother relationship,1241018538 +137059,63189,end of war,1241018513 +137059,63189,Finnish,1241018610 +137059,63189,frontier,1238833725 +137059,63189,hinterland,1238835862 +137059,63189,library,1238063822 +137059,63189,mysticism,1241018514 +137059,63189,sauna,1292340382 +137059,63189,sins,1241018520 +137059,63189,soldier,1241018594 +137059,63189,To See,1226572340 +137059,63189,village,1238577292 +137059,63189,water,1241018531 +137059,63329,childhood,1292921586 +137059,63329,Christmas,1292854747 +137059,63329,on dvr,1292853040 +137059,63329,orphans,1292921561 +137059,63329,Santa Claus,1292854735 +137059,63329,To See,1226754693 +137059,63515,monastery,1250938452 +137059,63515,monks,1250938452 +137059,63647,exploitation,1230222822 +137059,63647,grindhouse,1230222822 +137059,63647,rape,1230222854 +137059,63647,samurai,1230222822 +137059,63647,To See,1230223016 +137059,63808,Netflix Finland,1378734051 +137059,63853,aboregines,1241088605 +137059,63853,Australia,1241088607 +137059,63853,horses,1240490362 +137059,63859,cats and dogs,1237588053 +137059,63859,comic sidekick,1241089336 +137059,63859,on the road,1241089339 +137059,63859,pigeons,1237906845 +137059,63859,Stereoscopic 3-D,1241089354 +137059,63859,superhero,1241089342 +137059,63989,dolls,1232728547 +137059,63992,To See,1239276173 +137059,64034,Annemari,1345885783 +137059,64034,concentration camp,1345995698 +137059,64034,family crisis,1345995528 +137059,64034,from the view of children,1345995541 +137059,64197,easily confused with other movie(s) (title),1234737150 +137059,64197,To See,1234710065 +137059,64278,on dvr,1319985341 +137059,64280,National Film Registry,1230732320 +137059,64285,Aardman,1230308539 +137059,64285,bakery,1230323478 +137059,64285,baking,1230323478 +137059,64285,dogs,1230376964 +137059,64285,love,1230326252 +137059,64285,mannequin,1231432723 +137059,64285,short,1230326055 +137059,64285,Wallace and Gromit,1230326352 +137059,64499,To See,1243869489 +137059,64501,Annemari,1368873900 +137059,64501,To See,1243869560 +137059,64552,on dvr,1349265589 +137059,64575,Catholic school,1370293099 +137059,64575,Netflix Finland,1360230601 +137059,64575,To See,1230998861 +137059,64614,old age,1251151796 +137059,64620,president,1234558425 +137059,64622,library,1255523113 +137059,64622,Netflix Finland,1354542547 +137059,64622,postwar,1354893727 +137059,64622,To See,1239972104 +137059,64701,directorial debut,1378742750 +137059,64701,Netflix Finland,1378733975 +137059,64701,out from prison,1378799267 +137059,64839,heart attack,1309346015 +137059,64839,memasa's movies,1320281904 +137059,64839,Nudity (Topless - Notable),1309345919 +137059,64839,on dvr,1308848326 +137059,64839,steroids,1309346725 +137059,64839,strippers,1309345941 +137059,64839,stripping,1309345953 +137059,64839,striptease,1309345970 +137059,64839,To See,1233932244 +137059,64839,washed up,1309346665 +137059,64903,Adolf Hitler,1230202435 +137059,64903,air force,1230052349 +137059,64903,archive footage,1230053065 +137059,64903,Europe,1230063930 +137059,64903,Free to download,1240849050 +137059,64903,google video,1241016390 +137059,64903,hard to rate,1230053662 +137059,64903,hard to watch,1230053687 +137059,64903,hitler,1230051338 +137059,64903,Hitler Youth (HJ),1230051327 +137059,64903,Holocaust,1230053294 +137059,64903,Internet Archive,1241016373 +137059,64903,library vhs,1230048129 +137059,64903,my addition to ML,1230328305 +137059,64903,narrated,1230051772 +137059,64903,National Film Registry,1241016369 +137059,64903,Nazis,1230049250 +137059,64903,Poland,1230053640 +137059,64903,propaganda,1230048129 +137059,64903,short,1241016409 +137059,64903,USA,1230046657 +137059,64903,Why We Fight series,1241016365 +137059,64903,World War II,1230051078 +137059,64906,Adolf Hitler,1230202365 +137059,64906,aerial dogfights,1230062962 +137059,64906,air force,1230061223 +137059,64906,bombs,1230062643 +137059,64906,easily confused with other movie(s) (title),1230063798 +137059,64906,evacuees,1230062475 +137059,64906,fire,1230064419 +137059,64906,Free to download,1241016858 +137059,64906,freedom,1230060577 +137059,64906,hitler,1230060410 +137059,64906,Internet Archive,1241016855 +137059,64906,library vhs,1230044862 +137059,64906,London,1230062694 +137059,64906,my addition to ML,1230328292 +137059,64906,narrated,1230164135 +137059,64906,National Film Registry,1241016852 +137059,64906,Nazis,1230060358 +137059,64906,nocturnal,1230064040 +137059,64906,propaganda,1230045829 +137059,64906,radar,1230062132 +137059,64906,RAF,1230060324 +137059,64906,Third Reich,1230061010 +137059,64906,USA,1230048257 +137059,64906,Why We Fight series,1241016845 +137059,64906,WOMEN DURING WARTIME,1241016927 +137059,64906,World War II,1230051184 +137059,64918,library,1230115384 +137059,64918,rare,1230115395 +137059,64926,bullshit history,1241016226 +137059,64926,Free to download,1241016446 +137059,64926,History,1241016450 +137059,64926,Internet Archive,1241016452 +137059,64926,library vhs,1230133957 +137059,64926,my addition to ML,1230328318 +137059,64926,narrated,1230164164 +137059,64926,National Film Registry,1241016254 +137059,64926,Nazis,1230158328 +137059,64926,Oscar Nominee: Best Documentary Feature,1241016262 +137059,64926,propaganda,1230133994 +137059,64926,USA,1230158584 +137059,64926,Why We Fight series,1241016246 +137059,64926,winter,1230164618 +137059,64926,World War II,1230133927 +137059,64942,Golden Bear (Best Film),1232794432 +137059,64957,aging,1375038917 +137059,64957,Annemari,1326844537 +137059,64957,old age,1375038930 +137059,64959,Adolf Hitler,1230233800 +137059,64959,air force,1230232825 +137059,64959,bombs,1230232813 +137059,64959,child in peril,1241016065 +137059,64959,combat strategy,1230233711 +137059,64959,Europe,1230233782 +137059,64959,fire,1230234224 +137059,64959,France,1230233246 +137059,64959,Free to download,1241016019 +137059,64959,hard to rate,1230235289 +137059,64959,Internet Archive,1241016045 +137059,64959,my addition to ML,1230328269 +137059,64959,National Film Registry,1241016194 +137059,64959,Nazis,1230229274 +137059,64959,Netherlands,1230234063 +137059,64959,norway,1230232740 +137059,64959,occupation,1230235947 +137059,64959,Paris,1230236008 +137059,64959,propaganda,1230225895 +137059,64959,refugee,1230234725 +137059,64959,traitor,1230232567 +137059,64959,USA,1230225885 +137059,64959,Why We Fight series,1241016593 +137059,64959,World War II,1230225865 +137059,64969,easily confused with other movie(s) (title),1239478594 +137059,64969,motorcycle,1239478653 +137059,64969,workplace,1239478854 +137059,64983,amputee,1309610465 +137059,64983,conspiracy,1309610423 +137059,64983,coup,1309610550 +137059,64983,eye patch,1309610303 +137059,64983,no happy ending,1309610185 +137059,64983,on dvr,1309195109 +137059,64983,Third Reich,1309610662 +137059,64983,To See,1238062643 +137059,65130,Annemari,1352713695 +137059,65261,To See,1244238078 +137059,65315,library,1231607251 +137059,65514,Netflix Finland,1389700555 +137059,65514,To See,1255190584 +137059,65562,Cuba,1232379739 +137059,65562,friendship,1368809419 +137059,65562,husband-wife relationship,1368809434 +137059,65562,library,1232368304 +137059,65562,my addition to ML,1232368228 +137059,65562,rare,1232368294 +137059,65564,aerial dogfights,1232467032 +137059,65564,air force,1232467068 +137059,65564,archive footage,1232467007 +137059,65564,atrocity,1232466945 +137059,65564,bombs,1232467017 +137059,65564,books,1232466776 +137059,65564,China,1232369522 +137059,65564,civilians at war,1232466457 +137059,65564,civilization,1232466563 +137059,65564,Free to download,1241016159 +137059,65564,History,1241016161 +137059,65564,industrial progress,1232466687 +137059,65564,Internet Archive,1241016174 +137059,65564,invasion,1232466354 +137059,65564,Japan,1232466298 +137059,65564,military,1232467078 +137059,65564,my addition to ML,1232379566 +137059,65564,National Film Registry,1241016170 +137059,65564,politics,1232466749 +137059,65564,propaganda,1232369143 +137059,65564,terror,1232466986 +137059,65564,USA,1232369157 +137059,65564,Why We Fight series,1241016539 +137059,65564,World War II,1232369604 +137059,65614,island,1250937830 +137059,65665,easily confused with other movie(s) (title),1232788860 +137059,65672,Golden Bear (Best Film),1232794173 +137059,65702,American culture,1238076038 +137059,65702,american dream,1238075962 +137059,65702,Free to download,1241016825 +137059,65702,freedom,1238076189 +137059,65702,History,1241016821 +137059,65702,idealism,1238075392 +137059,65702,Internet Archive,1241016818 +137059,65702,isolationist,1238076327 +137059,65702,my addition to ML,1232956081 +137059,65702,National Film Registry,1241016816 +137059,65702,nationalism,1238075407 +137059,65702,politics,1238157065 +137059,65702,pompous,1238075895 +137059,65702,propaganda,1232956162 +137059,65702,stopped watching,1238101589 +137059,65702,Why We Fight series,1241016756 +137059,65702,World War II,1232956143 +137059,65974,2000s,1233755979 +137059,65974,book,1241017079 +137059,65974,business,1233755937 +137059,65974,business tycoon,1233755951 +137059,65974,corporate,1241017124 +137059,65974,corporate greed,1233756237 +137059,65974,CRIMES AGAINST HUMANITY,1233756541 +137059,65974,cult of persona,1233760177 +137059,65974,death of a president,1233756068 +137059,65974,dictatorship,1233755694 +137059,65974,ethics,1241017032 +137059,65974,European Film Awards nominee,1241017016 +137059,65974,Finnish,1241017019 +137059,65974,freedom of expression,1241017034 +137059,65974,government,1233760540 +137059,65974,human rights,1241017060 +137059,65974,indoctrination,1233760328 +137059,65974,international politics,1233757455 +137059,65974,islam,1233756096 +137059,65974,megalomania,1233756300 +137059,65974,multinational settings,1233757521 +137059,65974,my addition to ML,1233757186 +137059,65974,news media,1241017107 +137059,65974,oppression,1233758119 +137059,65974,phone,1233757573 +137059,65974,politics,1241017087 +137059,65974,president,1233755721 +137059,65974,satirical,1241017043 +137059,65974,successor,1233756703 +137059,65974,surreal,1241017085 +137059,65974,topic:propaganda,1241017049 +137059,65974,Turkmenistan,1233755682 +137059,65974,WORK ETHICS,1233758006 +137059,66059,library vhs,1308663586 +137059,66097,alternate universe,1244305984 +137059,66097,dolls,1249815259 +137059,66097,memasa's movies,1309511587 +137059,66097,To See,1243860664 +137059,66130,autism,1234609485 +137059,66130,Kick-Butt Women,1234609364 +137059,66130,martial arts,1234609375 +137059,66130,thai boxing,1234609432 +137059,66130,thailand,1234609389 +137059,66130,To See,1234609533 +137059,66156,easily confused with other movie(s) (title),1242442570 +137059,66156,FATHERS AND DAUGHTERS,1242443564 +137059,66156,great use of music,1242443371 +137059,66156,prison,1242443016 +137059,66156,prison escape,1242443084 +137059,66156,subterranean,1242563018 +137059,66246,library,1237917331 +137059,66354,remake,1235210785 +137059,66371,death,1400178750 +137059,66371,on dvr,1366196143 +137059,66785,Annemari,1339530493 +137059,66870,library,1238019400 +137059,66934,death ray,1353584216 +137059,66934,overrated,1353584252 +137059,67252,Annemari,1341937525 +137059,67252,revenge,1342355370 +137059,67255,biblical references,1308226242 +137059,67255,bisexual,1308226789 +137059,67255,dildo,1308226376 +137059,67255,family gatherings,1308226006 +137059,67255,flashbacks,1308226335 +137059,67255,guardian,1308226106 +137059,67255,hackers,1308226088 +137059,67255,incest,1308226429 +137059,67255,journalism,1308226064 +137059,67255,Millenium trilogy,1308764895 +137059,67255,misogyny,1308226699 +137059,67255,motorcycle,1308226900 +137059,67255,Nazis,1308226141 +137059,67255,Nudity (Topless - Notable),1308226640 +137059,67255,photograph,1308226281 +137059,67255,smoking,1308226668 +137059,67255,tattoo,1308226181 +137059,67295,easily confused with other movie(s) (title),1251030173 +137059,67295,short,1251030162 +137059,67508,based on a book,1279207473 +137059,67508,Germany,1279207424 +137059,67508,library,1250870343 +137059,67508,Nudity (Full Frontal - Brief),1279207592 +137059,67508,Nudity (Topless - Notable),1279207574 +137059,67508,Oscar Nominee: Best Foreign Language Film,1250870269 +137059,67508,terrorism,1279207424 +137059,67799,To See,1239639205 +137059,67949,easily confused with other movie(s) (title),1240082023 +137059,67997,Netflix Finland,1354545306 +137059,67997,To See,1250958701 +137059,68073,To See,1243859241 +137059,68157,easily confused with other movie(s) (title),1256651581 +137059,68173,Annemari,1334495205 +137059,68173,strike,1334579647 +137059,68222,easily confused with other movie(s) (title),1241029010 +137059,68222,my addition to ML,1241028840 +137059,68222,remake,1241041802 +137059,68237,To See,1255437866 +137059,68263,library,1308662820 +137059,68263,To See,1250974834 +137059,68324,To See,1241683770 +137059,68347,Netflix Finland,1356022864 +137059,68511,library,1249068955 +137059,68511,Nudity (Full Frontal - Brief),1256651441 +137059,68511,Nudity (Topless - Notable),1256651441 +137059,68511,on dvr,1256583806 +137059,68522,easily confused with other movie(s) (title),1244455006 +137059,68574,easily confused with other movie(s) (title),1250624974 +137059,68843,lesbian,1244322872 +137059,68932,To See,1250884997 +137059,68952,bank,1317047579 +137059,68954,ballooning,1244456495 +137059,68954,To See,1244323376 +137059,69027,on dvr,1399628297 +137059,69134,genitalia,1247080137 +137059,69134,male nudity,1259240264 +137059,69134,To See,1247080187 +137059,69140,easily confused with other movie(s) (title),1245421786 +137059,69224,library vhs,1244544798 +137059,69224,my addition to ML,1244544849 +137059,69224,security guard,1244545027 +137059,69224,single mother,1244545052 +137059,69284,comic book,1367528734 +137059,69284,masturbation,1367528768 +137059,69284,Netflix Finland,1356883821 +137059,69284,obesity,1367528747 +137059,69284,sex,1367528760 +137059,69284,summery,1367528781 +137059,69324,World War II,1245498804 +137059,69394,library,1309687720 +137059,69394,sister sister relationship,1328270670 +137059,69394,village,1328536537 +137059,69458,Netflix Finland,1364897557 +137059,69481,Annemari,1330720223 +137059,69481,bombs,1331660807 +137059,69481,female director,1354788541 +137059,69481,To See,1250311846 +137059,69757,Annemari,1368873498 +137059,69757,To See,1250624805 +137059,69784,fame,1330166607 +137059,69784,gay slur,1330166661 +137059,69784,male nudity,1330166702 +137059,69784,mind-numbing,1330253874 +137059,69784,penis,1330166898 +137059,69934,Annemari,1356949514 +137059,69934,easily confused with other movie(s) (title),1248197280 +137059,69934,remake,1248197280 +137059,69949,Dante,1308743255 +137059,69949,hit men,1308076931 +137059,70293,on dvr,1365427787 +137059,70451,occupation,1309622027 +137059,70451,on dvr,1309194902 +137059,70451,resistance movement,1309622991 +137059,70567,To See,1251020192 +137059,70728,Netflix Finland,1357748030 +137059,70862,electric guitar,1366555064 +137059,70862,Netflix Finland,1356881758 +137059,71033,Netflix Finland,1354543012 +137059,71057,animation style,1255622269 +137059,71057,co-producer: Tim Burton,1255630724 +137059,71057,dolls,1255622226 +137059,71057,giant robots,1255623887 +137059,71057,interesting animation style,1255624086 +137059,71057,man versus machine,1255624234 +137059,71057,post-apocalyptic,1255623937 +137059,71057,predictable,1255624116 +137059,71057,robots,1255624157 +137059,71057,survival,1255624198 +137059,71057,visually appealing,1255622226 +137059,71108,memasa's movies,1335367091 +137059,71264,father-son relationship,1351103110 +137059,71264,food,1351103067 +137059,71264,glasses,1351104989 +137059,71264,inventor,1351103058 +137059,71264,natural disaster,1351103395 +137059,71264,nerds,1351103156 +137059,71264,on dvr,1349947845 +137059,71264,romance,1351103038 +137059,71264,weather forecaster,1351103014 +137059,71462,Animals die :(,1372187044 +137059,71462,cruelty,1372189116 +137059,71462,slaughter,1372189150 +137059,71484,Adult Animation,1330263233 +137059,71484,animation,1330262028 +137059,71484,Annemari,1330183277 +137059,71484,dreary,1330263716 +137059,71484,dystopia,1330261599 +137059,71484,Europe,1330261674 +137059,71484,interracial love,1330261845 +137059,71484,mind control,1330261923 +137059,71484,Nudity (Topless),1330261972 +137059,71484,subway,1330262088 +137059,71484,swedish,1330263278 +137059,71484,underground,1330263544 +137059,71535,memasa's movies,1309092709 +137059,71579,Netflix Finland,1388842256 +137059,71619,Annemari,1330175693 +137059,71640,kolmasulottuvuus.fi,1379273588 +137059,71640,Netflix Finland,1376248501 +137059,71653,biography,1255701432 +137059,71653,mafia,1255701486 +137059,71653,my addition to ML,1255701331 +137059,71653,Prohibition,1255701455 +137059,71748,library,1308051394 +137059,71748,To See,1308051417 +137059,71899,Annemari,1347104730 +137059,71899,correspondence,1347281021 +137059,71899,Jewish,1347281054 +137059,71899,letters,1347281011 +137059,71899,slow paced,1347280997 +137059,72011,Netflix Finland,1380598495 +137059,72226,animation style,1339503559 +137059,72226,Annemari,1339401913 +137059,72226,cousins,1339505742 +137059,72226,father-son relationship,1339505714 +137059,72226,foxes,1339505652 +137059,72226,survival,1339503640 +137059,72356,memasa's movies,1404750295 +137059,72386,melodrama,1326907159 +137059,72386,on dvr,1326898950 +137059,72395,Netflix Finland,1355574373 +137059,72554,guard,1308856214 +137059,72554,pregnancy,1308856190 +137059,72554,riot,1308856443 +137059,72605,easily confused with other movie(s) (title),1309208255 +137059,72605,remake,1309208272 +137059,72641,adoption,1337095624 +137059,72641,african american,1337095515 +137059,72641,Annemari,1336471877 +137059,72641,feel good,1337095115 +137059,72641,interracial,1337095894 +137059,72641,private school,1337095559 +137059,72641,sports,1337095392 +137059,72641,upper class,1337095278 +137059,72720,memasa's movies,1404749121 +137059,72720,on dvr,1355149218 +137059,72720,professor,1384370481 +137059,72737,african american,1336828707 +137059,72737,Annemari,1336745932 +137059,72737,black magic,1336828582 +137059,72737,Firefly,1336828736 +137059,72737,frog,1336828663 +137059,72737,Prince,1336831990 +137059,72737,princess,1336832016 +137059,72980,memasa's movies,1309561642 +137059,73023,alcoholism,1334152446 +137059,73023,Annemari,1334055266 +137059,73323,burn victim,1308658248 +137059,73323,courtroom,1308658535 +137059,73323,DOCTORS AND PATIENTS,1308658426 +137059,73323,hospital,1308658323 +137059,73323,lawyers,1308659592 +137059,73323,Millenium trilogy,1308764875 +137059,73323,Nudity (Topless - Brief),1308658441 +137059,73323,tattoo,1308764934 +137059,73401,on dvr,1362500712 +137059,73808,ex-cop,1386507090 +137059,73808,Netflix Finland,1386276104 +137059,73808,pimps,1386507122 +137059,74111,Annemari,1342682787 +137059,74111,based on a book,1342814623 +137059,74416,female director,1354643699 +137059,74416,Netflix Finland,1354643698 +137059,74416,single mother,1363810529 +137059,74416,teen angst,1363810615 +137059,74416,teenage girl,1363810605 +137059,74458,Annemari,1339319721 +137059,74458,memasa's movies,1309092735 +137059,74504,blindness,1310809332 +137059,74504,letters,1310809526 +137059,74504,out from prison,1310809432 +137059,74504,priest,1310809360 +137059,74504,religion,1310809712 +137059,74510,burn victim,1308658127 +137059,74510,cunnilingus,1308316066 +137059,74510,father daughter relationship,1308315391 +137059,74510,heroine,1308315700 +137059,74510,human trafficking,1308315575 +137059,74510,Millenium trilogy,1308764852 +137059,74510,motorcycle,1308315812 +137059,74510,Nudity (Topless - Notable),1308315900 +137059,74510,police,1308315765 +137059,74510,pubic hair,1308315955 +137059,74510,smoking,1308315989 +137059,74510,tattoo,1308315478 +137059,74545,Netflix Finland,1383505476 +137059,74750,Annemari,1332595554 +137059,74750,To See,1325262815 +137059,75428,Annemari,1341475564 +137059,75428,illegitimate child,1342692119 +137059,75428,PROSTITUTES,1342692130 +137059,75434,easily confused with other movie(s) (title),1308069571 +137059,75436,bad acting,1344877352 +137059,75436,bad editing,1344877383 +137059,75436,camping trip,1345109204 +137059,75436,Nudity (Topless),1344877336 +137059,75436,on dvr,1330006154 +137059,75436,sexuality,1344877298 +137059,75436,swimming,1344877410 +137059,76093,Annemari,1336123919 +137059,76093,father-son relationship,1336172247 +137059,76173,weapons industry,1330959605 +137059,76251,father daughter relationship,1352474822 +137059,76251,on dvr,1352366755 +137059,76738,male nudity,1312985938 +137059,76738,my shopping list,1394800244 +137059,76738,sauna,1292340353 +137059,76738,To See,1292339932 +137059,77240,Netflix Finland,1354543064 +137059,77455,consumerism,1327230454 +137059,77455,dolls,1327230746 +137059,77455,immigrants,1327230661 +137059,77455,interviews,1327230484 +137059,77455,memasa's movies,1343914911 +137059,77788,library,1309643952 +137059,77800,Annemari,1361968630 +137059,77800,video camera,1362070653 +137059,77833,kolmasulottuvuus.fi,1379276876 +137059,77951,World War II,1292854552 +137059,78039,Annemari,1334931227 +137059,78039,CRUMBLING MARRIAGES,1335445771 +137059,78039,cunnilingus,1335446158 +137059,78039,Nudity (Rear),1335446487 +137059,78039,Nudity (Topless),1335446300 +137059,78039,nurse,1335446017 +137059,78088,Annemari,1351095664 +137059,78088,cellphone scene,1352741058 +137059,78088,coffin,1352741109 +137059,78088,hostage,1352741089 +137059,78088,truckers,1352741185 +137059,78316,Annemari,1350661952 +137059,78335,absent fathers,1309545607 +137059,78335,choir,1309545878 +137059,78335,coming of age,1309545469 +137059,78335,dreams,1309545107 +137059,78335,grandmother,1309545837 +137059,78335,moon,1309545327 +137059,78335,Moscow,1309545727 +137059,78335,mother daughter relationship,1309544967 +137059,78335,on dvr,1309437473 +137059,78335,selective mutism,1309545410 +137059,78335,single mother,1309545271 +137059,78335,suicide attempt,1309545489 +137059,78335,supernatural powers,1309545210 +137059,78335,teenage girl,1309545649 +137059,78335,UNREQUITED LOVE,1309545767 +137059,78335,wishes,1309544869 +137059,78499,Annemari,1339232763 +137059,78499,dolls,1339335040 +137059,78499,escape,1339334619 +137059,78499,good versus evil,1339338208 +137059,78499,kindergarten,1339334714 +137059,78499,overrated,1339335236 +137059,78499,toys,1339334978 +137059,78499,TOYS COME TO LIFE,1339334990 +137059,78499,watch the credits,1339334541 +137059,78574,Annemari,1334498681 +137059,78574,MISSING PERSONS,1334667413 +137059,78574,siblings,1334667616 +137059,78635,1910s,1308762596 +137059,78635,1918,1308762539 +137059,78635,based on a book,1308659337 +137059,78635,Civil War,1308741745 +137059,78635,class society,1308762490 +137059,78635,family relationships,1308762764 +137059,78635,independence,1308741700 +137059,78635,Nudity (Rear),1308762711 +137059,78635,Nudity (Topless - Brief),1308762694 +137059,78635,priest,1308830434 +137059,78635,socialism,1308741679 +137059,78635,Under the North Star trilogy,1308742644 +137059,78635,WOMEN DURING WARTIME,1308763634 +137059,78635,working class,1308763351 +137059,79057,memasa's movies,1353332386 +137059,79091,adoption,1348235369 +137059,79091,Annemari,1347179922 +137059,79091,miniaturization,1348388560 +137059,79091,moon,1348235298 +137059,79132,memasa's movies,1381737421 +137059,79242,Annemari,1351437617 +137059,79242,female director,1356273191 +137059,79242,sperm donor,1356268075 +137059,79357,Annemari,1336123022 +137059,79357,Netflix Finland,1398971730 +137059,79430,gay rights,1309434838 +137059,79533,library,1310932092 +137059,79536,1960s,1321301070 +137059,79536,alcohol,1280995895 +137059,79536,bootlegging,1280995861 +137059,79536,drugs,1280995895 +137059,79536,gangs,1280996077 +137059,79536,my addition to ML,1280995969 +137059,79617,memasa's movies,1309091695 +137059,79702,Annemari,1356691701 +137059,79702,ex-boyfriend,1356808296 +137059,79702,Gay Character,1356808437 +137059,80454,based on a true story,1285433734 +137059,80454,lobotomy,1340036582 +137059,80454,mental hospital,1285433720 +137059,80454,mental illness,1285433705 +137059,80454,Nudity (Topless),1285433774 +137059,80454,princess,1285433834 +137059,80454,schizophrenia,1285433953 +137059,80454,tragicomedy,1336828865 +137059,80463,biography,1403548536 +137059,80463,corporations,1403547447 +137059,80463,facebook,1403547402 +137059,80463,on dvr,1346854131 +137059,80463,twins,1403548519 +137059,80489,Annemari,1335701065 +137059,80551,Annemari,1350661784 +137059,80586,egg,1365006440 +137059,80586,neighbors,1365006354 +137059,80586,Netflix Finland,1364895683 +137059,80586,teen,1365006342 +137059,80586,teenage girl,1365006330 +137059,80586,trees,1365006428 +137059,80590,Annemari,1369750394 +137059,80615,birds,1445087863 +137059,80615,childish,1445087808 +137059,80615,flying,1445087873 +137059,80831,Netflix Finland,1372171106 +137059,80969,Annemari,1336123587 +137059,80969,drawing,1336678762 +137059,80969,hospital,1336652079 +137059,80969,love triangles,1336668836 +137059,80969,Organ donor,1336647795 +137059,80969,surgery,1336652054 +137059,80969,young love,1336668801 +137059,81018,on dvr,1385367882 +137059,81046,on dvr,1346068917 +137059,81257,Annemari,1335973035 +137059,81257,bombs,1336170747 +137059,81257,deceased family member,1336142062 +137059,81257,DOCTORS AND PATIENTS,1336071144 +137059,81257,friendship,1336071035 +137059,81257,Golden Globe winner,1336142496 +137059,81257,Oscar (Best Foreign Language Film),1336142408 +137059,81257,school,1336071056 +137059,81257,surgery,1336071118 +137059,81385,algeria,1346954024 +137059,81385,Annemari,1341218489 +137059,81385,based on a true story,1346953964 +137059,81385,dull,1346954178 +137059,81385,history,1346954357 +137059,81385,monastery,1346953886 +137059,81385,monks,1346953877 +137059,81385,village,1346953897 +137059,81562,Annemari,1334313445 +137059,81562,hallucination,1334422997 +137059,81562,split screen,1334423064 +137059,81591,To See,1309346303 +137059,81641,Annemari,1341040384 +137059,81641,nuclear weapons,1347112930 +137059,81641,political thriller,1347112945 +137059,81751,on dvr,1355149942 +137059,81753,library,1308663281 +137059,81753,To See,1308663275 +137059,81788,on dvr,1357986622 +137059,81791,on dvr,1385367939 +137059,81817,memasa's movies,1356443734 +137059,81819,memasa's movies,1331394670 +137059,81834,Netflix Finland,1360756157 +137059,81845,memasa's movies,1335367144 +137059,81847,hair,1372959330 +137059,81847,Netflix Finland,1372171435 +137059,81847,tower,1372959344 +137059,82242,all-male cast,1291832543 +137059,82242,based on short films Rare Exports Inc. and Rare Exports: The Official Safety Instructions,1291831292 +137059,82242,Christmas,1291802270 +137059,82242,filmed in Norway,1291831356 +137059,82242,Finnish,1291802257 +137059,82242,macabre,1291829045 +137059,82242,male nudity,1291832581 +137059,82242,my addition to ML,1291802357 +137059,82242,Santa Claus,1291802297 +137059,82324,memasa's movies,1388144624 +137059,82378,based on a true story,1313491526 +137059,82459,Annemari,1336396568 +137059,82459,teenage girl,1336736936 +137059,82461,father-son relationship,1324072049 +137059,82463,Annemari,1334766186 +137059,82463,British,1348339305 +137059,82463,drinking,1348339194 +137059,82463,friendship,1348339182 +137059,82463,husband-wife relationship,1348339141 +137059,82463,seasons,1348339082 +137059,82527,Annemari,1337590913 +137059,82527,death,1338190476 +137059,82527,Jewish,1338190513 +137059,82527,wedding,1338194297 +137059,82667,Netflix Finland,1364895768 +137059,82767,Netflix Finland,1375434378 +137059,83086,Annemari,1347025585 +137059,83134,accident,1334313592 +137059,83134,Annemari,1334222220 +137059,83134,cabin,1334313557 +137059,83369,Annemari,1352713650 +137059,83803,memasa's movies,1404750449 +137059,83803,Pixar,1321398777 +137059,83803,tolerance,1321398703 +137059,84392,Netflix Finland,1380599179 +137059,84448,heist,1320331998 +137059,84772,agent,1333827177 +137059,84772,anti-religion,1333827706 +137059,84772,Area 51,1333826870 +137059,84772,comic books,1333826759 +137059,84772,evolution,1333827660 +137059,84772,healing,1333827222 +137059,84772,humor,1333828433 +137059,84772,invisibility,1333826995 +137059,84772,male-female relationship,1333827026 +137059,84772,nerds,1333826668 +137059,84772,Resurrection,1333827383 +137059,84772,supernatural powers,1333827083 +137059,84772,UFOS,1333826831 +137059,84775,alcoholism,1364404124 +137059,84775,drugs,1364404114 +137059,84775,Netflix Finland,1354542624 +137059,84944,Annemari,1336999584 +137059,84944,water,1337113679 +137059,84954,Annemari,1351437693 +137059,85211,memasa's movies,1324839598 +137059,85410,based on a book,1308742534 +137059,85410,end of war,1308830510 +137059,85410,funeral,1308830706 +137059,85410,generations,1308830769 +137059,85410,husband-wife relationship,1308830785 +137059,85410,my addition to ML,1308742507 +137059,85410,old age,1308830740 +137059,85410,priest,1308830499 +137059,85410,Under the North Star trilogy,1308742602 +137059,85410,World War II,1308830697 +137059,85438,Good remake,1404050829 +137059,85547,activism,1326206450 +137059,85547,bunnies,1326205568 +137059,85547,charity,1326205983 +137059,85547,civil rights,1326206546 +137059,85547,feminism,1326205673 +137059,85547,freedom of expression,1326205618 +137059,85547,history,1326206340 +137059,85547,journalism,1326205518 +137059,85547,mansion,1326206007 +137059,85547,McCarthyism,1326206635 +137059,85547,Nudity (Full Frontal - Brief),1326205537 +137059,85547,Nudity (Rear),1326205555 +137059,85547,Nudity (Topless - Notable),1326205454 +137059,85547,on dvr,1319985424 +137059,85547,playboy,1326206098 +137059,85547,playboy girl,1326206109 +137059,85547,racism,1326205603 +137059,85547,religion,1326205694 +137059,85547,sexuality,1326294059 +137059,85736,memasa's movies,1404750253 +137059,85774,death,1363642388 +137059,85885,bathroom,1353517730 +137059,85885,Beautiful Woman,1353517261 +137059,85885,hotel,1353517388 +137059,85885,Nudity (Full Frontal - Notable),1353517335 +137059,85885,Nudity (Rear),1353517360 +137059,85885,Nudity (Topless - Notable),1353517324 +137059,85885,one room,1353517406 +137059,85885,painting,1353517702 +137059,85885,sex scenes,1353517310 +137059,85885,shower scene,1353517447 +137059,86277,memasa's movies,1366476525 +137059,86279,catastrophe,1376226526 +137059,86279,Educational,1376226680 +137059,86279,electricity,1376226966 +137059,86279,energy,1376226980 +137059,86279,enlightening,1376226669 +137059,86279,environmental,1376226444 +137059,86279,existence,1376226844 +137059,86279,Finland,1376225649 +137059,86279,future,1376225830 +137059,86279,generations,1376226146 +137059,86279,humankind,1376227137 +137059,86279,legacy,1376226272 +137059,86279,modern life,1376227016 +137059,86279,natural disaster,1376226309 +137059,86279,natural resources,1376226600 +137059,86279,Netflix Finland,1373033428 +137059,86279,Nuclear disaster,1376226433 +137059,86279,nuclear power,1376225883 +137059,86279,nuclear power environmental issues,1376225920 +137059,86279,Nuclear Power Plant,1376225905 +137059,86279,nuclear waste,1376225638 +137059,86279,ominous,1376225761 +137059,86279,post-apocalyptic,1376226613 +137059,86279,radiation,1376225973 +137059,86279,technology,1376227150 +137059,86279,time,1376226736 +137059,86279,tunnels,1376225663 +137059,86279,uranium,1376226873 +137059,86298,birds,1310132757 +137059,86298,endangered species,1310132725 +137059,86298,parrots,1310132992 +137059,86320,my computer,1328713934 +137059,86320,on dvr,1346854189 +137059,86332,Annemari,1337591083 +137059,86332,brothers,1337800303 +137059,86332,king,1337800343 +137059,86548,Annemari,1339706712 +137059,86548,trains,1341748091 +137059,86781,deceased family member,1387208859 +137059,86781,Netflix Finland,1386185756 +137059,86882,Netflix Finland,1375427742 +137059,86882,overrated,1376490157 +137059,87194,my computer,1328714077 +137059,87222,Annemari,1337415854 +137059,87222,Dream Sequence,1337536247 +137059,87222,memory,1337536231 +137059,87222,my computer,1328713854 +137059,87222,wolves,1337536212 +137059,87234,Netflix Finland,1378200913 +137059,87304,To See,1321292354 +137059,87306,amateur film making,1339085705 +137059,87306,Annemari,1338982971 +137059,87306,bad plot,1339085925 +137059,87306,train crash,1339143692 +137059,87306,video camera,1339085429 +137059,87408,1980s,1369932637 +137059,87408,acting debut,1369934948 +137059,87408,amateur actors,1369934757 +137059,87408,observation class,1369932029 +137059,87408,on dvr,1366893112 +137059,87408,school,1369931896 +137059,88125,Netflix Finland,1380599384 +137059,88129,memasa's movies,1350243669 +137059,88129,my computer,1328713825 +137059,88129,neighbors,1334490953 +137059,88129,Nudity (Topless),1334495747 +137059,88140,World War II,1317251181 +137059,88163,babysitting,1360863800 +137059,88163,Netflix Finland,1356883914 +137059,88163,womanizing,1360863657 +137059,88267,Annemari,1350282122 +137059,88267,balloon,1351869093 +137059,88267,book,1351868948 +137059,88267,hand-drawn,1351868874 +137059,88267,honey,1351868891 +137059,88267,hunger,1351868855 +137059,88267,monster,1351868937 +137059,88810,1960s,1347974348 +137059,88810,maid,1347970178 +137059,88810,Mississippi,1347974236 +137059,88810,on dvr,1346854151 +137059,88810,racism,1347974133 +137059,88810,southern US,1347974164 +137059,88810,writers,1347974209 +137059,89118,on dvr,1385367762 +137059,89343,Annemari,1351438014 +137059,89449,Annemari,1340008098 +137059,89449,hairdresser,1340208020 +137059,89449,letters,1340207986 +137059,89449,mother daughter relationship,1340208046 +137059,89490,Annemari,1350661749 +137059,89492,baseball,1374230268 +137059,89492,memasa's movies,1350243689 +137059,89492,To See,1320875391 +137059,89535,bar,1315997612 +137059,89535,deadpan,1315997730 +137059,89535,disease,1315997564 +137059,89535,friendship,1315997600 +137059,89535,hospital,1315997632 +137059,89535,husband-wife relationship,1315997592 +137059,89535,illegal immigration,1315997512 +137059,89535,my addition to ML,1315996911 +137059,89535,my shopping list,1380636236 +137059,89535,police investigation,1315997548 +137059,89535,ruutu.fi,1398698286 +137059,89535,shoes,1315997477 +137059,89753,on dvr,1385367845 +137059,89774,brother-brother relationship,1342727950 +137059,89774,father-son relationship,1342727964 +137059,89774,imdb top 250,1342727985 +137059,89774,sports,1342728122 +137059,89774,teacher,1342728070 +137059,89774,tournament,1342728382 +137059,89864,ruutu.fi,1398358283 +137059,89904,ACTOR'S LIFE,1330708367 +137059,89904,dogs,1330707998 +137059,89904,memasa's movies,1372004998 +137059,89904,Netflix Finland,1393688246 +137059,89904,To See,1329739948 +137059,90249,my computer,1328713880 +137059,90374,Annemari,1369581352 +137059,90531,Netflix Finland,1393688283 +137059,90594,bigotry,1319935188 +137059,90594,camera,1319934930 +137059,90594,Catholic Church,1319934673 +137059,90594,conservatism,1319935509 +137059,90594,demonstration,1319935333 +137059,90594,discrimination,1319934739 +137059,90594,election,1319935011 +137059,90594,Equality,1319935635 +137059,90594,family issues,1319935094 +137059,90594,gay,1319740678 +137059,90594,gay couple,1319934220 +137059,90594,Gay Interest,1319935581 +137059,90594,gay marriage,1319934346 +137059,90594,gay parade,1319935471 +137059,90594,gay parenting,1319934637 +137059,90594,gay rights,1319934257 +137059,90594,gay slur,1319935455 +137059,90594,government,1319935000 +137059,90594,homophobia,1319934502 +137059,90594,interviews,1319934975 +137059,90594,kiss,1319935358 +137059,90594,legislation,1319934268 +137059,90594,media,1319934613 +137059,90594,on dvr,1319741051 +137059,90594,politicians,1319934905 +137059,90594,politics,1319934885 +137059,90594,pope,1319934597 +137059,90594,priest,1319935060 +137059,90594,rightism,1319935274 +137059,90594,Rome,1319935675 +137059,90594,senators,1319934866 +137059,90600,author:Jo Nesbø,1320357502 +137059,90600,bald,1320357950 +137059,90600,based on a book,1320009799 +137059,90600,Beautiful Woman,1320356656 +137059,90600,car crash,1320357034 +137059,90600,dogs,1320356610 +137059,90600,headhunter,1320355460 +137059,90600,mercenaries,1320357573 +137059,90600,my addition to ML,1319709783 +137059,90600,Nudity (Rear - Brief),1320356485 +137059,90600,Nudity (Topless - Brief),1320356469 +137059,90600,painting,1320355483 +137059,90600,theft,1320356932 +137059,90746,action right from the start to the very end,1328213626 +137059,90746,alcoholism,1320875225 +137059,90746,captain,1320874112 +137059,90746,dogs,1320854700 +137059,90746,friendship,1320874317 +137059,90746,Journalist,1320874187 +137059,90746,kidnapping,1320874155 +137059,90746,memasa's movies,1393865214 +137059,90746,miniatures,1320875023 +137059,90746,motion capture,1328213636 +137059,90746,Planes,1320874247 +137059,90746,producer:Peter Jackson,1328213646 +137059,90746,sailing ships,1320874731 +137059,90746,sword fight,1320874286 +137059,90746,treasure hunt,1328213657 +137059,90866,automata,1359807895 +137059,90866,clockwork devices,1359807979 +137059,90866,train station,1359807848 +137059,90866,visually interesting--that's about it,1359807747 +137059,91077,deceased family member,1439476924 +137059,91077,wistful,1439477047 +137059,91204,cliche,1321959581 +137059,91204,directorial debut,1321985161 +137059,91204,drug dealing,1321959630 +137059,91204,my addition to ML,1321974850 +137059,91204,pimps,1321974860 +137059,91204,Pretty Woman twist,1323540769 +137059,91204,PROSTITUTES,1321974874 +137059,91204,prostitution,1321959659 +137059,91290,Annemari,1335604774 +137059,91290,apartment,1335951349 +137059,91290,based on a book,1335953813 +137059,91290,Beautiful Woman,1335951870 +137059,91290,family relationships,1335951401 +137059,91290,France,1335951380 +137059,91290,girl,1335951636 +137059,91290,Holocaust,1335951843 +137059,91290,husband-wife relationship,1335951827 +137059,91290,Jewish,1335951421 +137059,91290,Journalist,1335951735 +137059,91290,key,1335951706 +137059,91290,multinational settings,1335951754 +137059,91290,occupation,1335951545 +137059,91290,pregnancy,1335952155 +137059,91290,World War II,1335951476 +137059,91488,flying,1388144002 +137059,91488,imagination,1388144281 +137059,91488,snowman,1388143982 +137059,91500,memasa's movies,1388144601 +137059,91529,Netflix Finland,1370772033 +137059,91628,New Year's Eve,1356881504 +137059,91630,nuclear war,1350161836 +137059,91658,Netflix Finland,1378200650 +137059,91658,remake,1323975021 +137059,92152,Sex Comedy,1333810318 +137059,92210,my addition to ML,1325793037 +137059,92214,my addition to ML,1325794234 +137059,92243,memasa's movies,1404747802 +137059,92243,Netflix Finland,1376235057 +137059,92259,art,1354563529 +137059,92259,caregiver,1354559613 +137059,92259,classical music,1354563539 +137059,92259,Fabergé Egg,1354559414 +137059,92259,Faberge egg,1354563509 +137059,92259,feel good movie,1354559072 +137059,92259,friendship,1354559632 +137059,92259,one-dimensional characters,1354563418 +137059,92259,overrated,1354559129 +137059,92259,paralysis,1354559468 +137059,92259,quadriplegia/tetraplegia,1354559266 +137059,92259,See: Rust and Bone (De rouille et d'os),1354560283 +137059,92259,sexuality,1354559328 +137059,92259,upper class,1354559512 +137059,92259,wheelchair,1354559544 +137059,92314,baby,1439126541 +137059,92314,blackmail,1439126528 +137059,92314,memasa's movies,1404750126 +137059,92314,pregnancy,1439126536 +137059,92314,stealing,1439126372 +137059,92314,storage,1439126333 +137059,92687,bootlegging,1383821104 +137059,92687,boys,1383821019 +137059,92687,Continuation War,1383820982 +137059,92687,german soldier,1383821049 +137059,92687,on dvr,1369698521 +137059,93162,Moscow,1330425320 +137059,93162,my addition to ML,1330425167 +137059,93475,Annemari,1351533859 +137059,93752,acid,1402603845 +137059,93752,burn victim,1402603808 +137059,93752,face,1402603899 +137059,93752,legislation,1402603986 +137059,93752,Netflix Finland,1399290634 +137059,93752,plastic surgery,1402603932 +137059,93752,women,1402603872 +137059,93805,bad execution,1333906767 +137059,93805,dark side,1333975458 +137059,93805,Julia Dietze,1333906931 +137059,93805,moon,1333906528 +137059,93805,Netflix Finland,1355575368 +137059,93805,overrated,1333906382 +137059,93805,president,1333907031 +137059,93805,space colony,1353007678 +137059,93805,spaceships,1333906999 +137059,93805,UFOS,1333906984 +137059,93805,visually interesting--that's about it,1333906486 +137059,93840,cabin,1334403750 +137059,93840,ruutu.fi,1398698192 +137059,93842,DEATH OF A SPOUSE,1377712261 +137059,94109,1910s,1335279712 +137059,94109,Annemari,1335269467 +137059,94109,based on a true story,1336723777 +137059,94109,island,1335279542 +137059,94109,juvenile deliquent,1335279886 +137059,94109,my addition to ML,1335201839 +137059,94109,sexual abuse,1335279774 +137059,94109,uprising,1335279634 +137059,94150,1880s,1350231312 +137059,94150,DOCTORS AND PATIENTS,1350231149 +137059,94150,female director,1350231522 +137059,94150,feminism,1350231089 +137059,94150,history,1350231010 +137059,94150,hysteria,1350231117 +137059,94150,light,1350231250 +137059,94150,London,1350231052 +137059,94150,machines,1350231187 +137059,94150,medical,1350230997 +137059,94150,orgasm,1350231065 +137059,94150,predictable,1350231270 +137059,94150,vibrator,1350494312 +137059,94864,memasa's movies,1366476394 +137059,94864,prequel,1338815641 +137059,94939,Annemari,1338982646 +137059,94939,brothers,1339004744 +137059,94939,drummer,1339004685 +137059,94939,drums,1339004697 +137059,94939,metronome,1339004718 +137059,94939,my addition to ML,1338982659 +137059,94939,police,1339004672 +137059,94939,tone deafness,1339004865 +137059,94959,boy scouts,1404218543 +137059,94959,correspondence,1404218958 +137059,94959,feel-good,1404218572 +137059,94959,girl,1404218879 +137059,94959,girl meets boy,1404218895 +137059,94959,memasa's movies,1369581320 +137059,94959,New England,1404218490 +137059,94959,orphans,1404218607 +137059,94959,pen pal,1404218983 +137059,94959,searching,1404218805 +137059,94959,solid comedy,1404241064 +137059,94959,sympathetic characters,1404219778 +137059,94959,young love,1404218816 +137059,95167,princess,1378072411 +137059,95175,based on a true story,1344946312 +137059,95175,father-son relationship,1345474465 +137059,95175,feel-good,1345474821 +137059,95175,no tension,1345474481 +137059,95175,on dvr,1344944483 +137059,95175,school,1345474711 +137059,95175,teacher as protagonist,1345474667 +137059,95175,TEACHERS AND STUDENTS,1345474733 +137059,95175,Tourette syndrome,1344946278 +137059,95311,memasa's movies,1404750217 +137059,95311,rabbits,1399574174 +137059,95311,stage magic,1399573909 +137059,95875,memory,1377974528 +137059,96034,Annemari,1343930692 +137059,96034,directorial debut,1344944613 +137059,96034,ferry,1344944663 +137059,96034,island,1344787013 +137059,96034,MISSING PERSONS,1344787139 +137059,96034,my addition to ML,1343930734 +137059,96034,Nudity (Full Frontal - Brief),1344787108 +137059,96034,Nudity (Rear - Brief),1344787066 +137059,96034,Nudity (Topless - Notable),1344787048 +137059,96150,rich,1382559931 +137059,96488,docventures,1398972504 +137059,96488,memasa's movies,1383405996 +137059,96610,memasa's movies,1376584732 +137059,96662,Annemari,1357578539 +137059,96662,bands,1357578593 +137059,96662,institutionalization,1357672388 +137059,96662,mental disability,1357578635 +137059,96662,punk rock,1357578570 +137059,96662,sexuality,1357672460 +137059,96662,taboo,1357672442 +137059,96728,Netflix Finland,1385469401 +137059,96737,based on a comic,1379143704 +137059,96737,memasa's movies,1381572222 +137059,96811,video camera,1376584274 +137059,96821,memasa's movies,1376584756 +137059,96821,overrated,1404734421 +137059,96829,kindergarten,1391625553 +137059,96829,pedophilia,1391625512 +137059,96909,Annemari,1399287793 +137059,96909,ruutu.fi,1399288459 +137059,97024,accident,1353868569 +137059,97024,amputee,1353868584 +137059,97024,disability,1354033813 +137059,97024,father-son relationship,1353868646 +137059,97024,fight club,1353868705 +137059,97024,killer whale,1392918271 +137059,97024,LIVING WITH DISABILITY,1354033826 +137059,97024,memasa's movies,1368904068 +137059,97024,Nudity (Topless),1353868744 +137059,97024,realistic,1353868731 +137059,97024,security guard,1353868786 +137059,97024,sex scenes,1353925217 +137059,97024,whales,1353868602 +137059,97051,cave,1405514078 +137059,97153,AGE DISPARITY ROMANCE,1349878254 +137059,97153,bailiff,1349878145 +137059,97153,dancing,1349878068 +137059,97153,father-son relationship,1349878376 +137059,97153,loneliness,1349878452 +137059,97153,my addition to ML,1349437085 +137059,97153,nursing home,1349878337 +137059,97153,older man younger woman,1349878288 +137059,97153,on dvr,1349437077 +137059,97153,tango,1349877769 +137059,97153,wistful,1349878397 +137059,97153,workplace,1349878512 +137059,97172,EXPERIMENTS GONE AWRY,1403031523 +137059,97172,homage,1403024202 +137059,97172,Netflix Finland,1403517476 +137059,97172,science,1403031550 +137059,97186,doping,1379273987 +137059,97186,scandal,1379274003 +137059,97186,skiing,1379273968 +137059,97304,memasa's movies,1376584669 +137059,97304,political thriller,1376852669 +137059,97306,memasa's movies,1381591398 +137059,97692,Anonymous,1398270401 +137059,97692,Netflix Finland,1398270342 +137059,97921,Beautiful Woman,1393508933 +137059,97921,ex-wife,1393508732 +137059,97921,letters,1393508651 +137059,97921,Netflix Finland,1391441540 +137059,97921,restraining order,1393436941 +137059,97921,therapist,1393436963 +137059,97936,19th century,1357931909 +137059,97936,infidelity,1357931965 +137059,97938,memasa's movies,1381572270 +137059,97938,religion,1356624691 +137059,97938,tigers,1356542875 +137059,98122,Netflix Finland,1382026884 +137059,98124,Joker,1373104501 +137059,98124,mutants,1373312406 +137059,98124,Netflix Finland,1372170948 +137059,98124,retirement,1373312368 +137059,98629,based on a book,1379271440 +137059,98629,HAUNTED BY THE PAST,1379271381 +137059,98797,Netflix Finland,1378733630 +137059,98809,dwarf,1355858784 +137059,98961,Osama bin Laden,1405541374 +137059,98973,glacier,1373738577 +137059,98973,global warming,1373738598 +137059,98973,ice,1373738545 +137059,98973,photographer,1373738619 +137059,98973,photography,1373738611 +137059,98981,free to download,1356088629 +137059,98981,short,1356088556 +137059,98981,trains,1355754224 +137059,98981,youtube,1356088636 +137059,99114,BOUNTY HUNTERS,1361133314 +137059,99114,germans,1361134428 +137059,99114,memasa's movies,1389050653 +137059,99305,Netflix Finland,1398972340 +137059,99728,Netflix Finland,1388155485 +137059,99795,docventures,1398972553 +137059,99795,on dvr,1381941208 +137059,99795,PROSTITUTES,1382021301 +137059,99813,Joker,1375631509 +137059,99813,Netflix Finland,1375432761 +137059,100013,ALS,1381595351 +137059,100013,heavy metal,1381595547 +137059,100013,rock,1381595599 +137059,100034,Beauty,1387539155 +137059,100034,docventures,1398972995 +137059,100034,Japan,1387538973 +137059,100034,models,1387538987 +137059,100034,scouting,1387539111 +137059,100034,siberia,1387539069 +137059,100034,teenage girl,1387538944 +137059,100034,WORK ETHICS,1387539404 +137059,100034,youth,1387539539 +137059,100072,narrated,1437916159 +137059,100106,on dvr,1385367592 +137059,100517,beauty pageant,1385131058 +137059,100517,conservatism,1385131072 +137059,100517,docventures,1398972791 +137059,100517,nationalism,1385316118 +137059,100517,women,1385131003 +137059,100556,docventures,1398972705 +137059,101525,bank robbery,1365327225 +137059,101525,corrupt cops,1365327351 +137059,101525,memasa's movies,1393865188 +137059,101525,motorcycle,1365327047 +137059,102194,deliberate,1403514505 +137059,102194,good acting,1403514519 +137059,102860,drinking,1382996748 +137059,102860,smoking,1382996756 +137059,102860,social exclusion,1382996706 +137059,102860,unemployment,1382996677 +137059,103042,Netflix Finland,1398701449 +137059,103228,giant robots,1373206890 +137059,103228,homage,1375693406 +137059,103228,memasa's movies,1401214098 +137059,103228,Netflix Finland,1402252847 +137059,103228,pilot,1375644113 +137059,103228,sea monster,1375644157 +137059,103798,accident,1392063820 +137059,103798,brain injury,1392063645 +137059,103798,brothers,1392063683 +137059,103798,competition,1392063831 +137059,103798,disability,1392063673 +137059,103798,Down syndrome,1392063808 +137059,103798,female director,1392064409 +137059,103798,Netflix Finland,1391441503 +137059,103798,risk,1392063845 +137059,103798,rivalry,1392063703 +137059,103798,snowboard,1392063657 +137059,103798,Snowboarding,1392063865 +137059,103798,sports,1392064805 +137059,103908,artificial insemination,1386267179 +137059,103908,baby,1386266953 +137059,103908,child birth,1386266853 +137059,103908,dating,1386267111 +137059,103908,director,1386267435 +137059,103908,docventures,1398972914 +137059,103908,father daughter relationship,1386266977 +137059,103908,female director,1386266992 +137059,103908,friendship,1386267074 +137059,103908,gay friend,1386266906 +137059,103908,in vitro fertilization,1386267227 +137059,103908,New York City,1386267302 +137059,103908,pregnancy,1386266756 +137059,103908,single mother,1386267019 +137059,103908,sperm donor,1386266816 +137059,104272,captivity,1394470086 +137059,104913,rivalry,1393365051 +137059,105504,2000s,1382387817 +137059,105504,captain,1382387668 +137059,105504,SEAL,1382387899 +137059,105504,ship,1382387762 +137059,105504,Somalia,1382387686 +137059,105844,history,1391434349 +137059,105987,docventures,1398972645 +137059,105987,glorifying,1383229871 +137059,106156,on dvr,1385367546 +137059,106489,dragon,1388266035 +137059,106680,docventures,1398972862 +137059,106696,ice,1398970208 +137059,106696,magic,1398970156 +137059,106696,wintry,1398970128 +137059,106782,Beautiful Woman,1389021277 +137059,106782,drugs,1389021314 +137059,106782,money,1389021303 +137059,106782,Nudity (Full Frontal),1389021529 +137059,106782,Nudity (Topless),1389021547 +137059,106914,president,1386609807 +137059,106918,imagination,1388576116 +137059,106918,magazines,1388576323 +137059,106918,photograph,1388576154 +137059,106918,workplace,1388576142 +137059,107024,husband-wife relationship,1394356367 +137059,107978,easily confused with other movie(s) (title),1397025586 +137059,108983,memasa's movies,1404750491 +137059,109374,painting,1399628335 +137059,109423,memasa's movies,1404749068 +137059,109425,memasa's movies,1404750337 +137059,109993,memasa's movies,1404750405 +137059,110106,on dvr,1396421385 +137061,89862,Sundance,1325194176 +137069,2174,comedy,1219454379 +137073,33794,the best batman's movies,1198026605 +137073,45950,propaganda,1198030692 +137088,1092,Erotic,1167186807 +137088,1092,Notable Nudity,1167186838 +137088,1909,aliens,1167185364 +137088,1909,conspiracy,1167185366 +137088,1909,scifi,1167185344 +137088,2862,Nudity (Full Frontal - Notable),1167186843 +137088,3499,Stephen King,1167251608 +137088,27660,anime,1167185644 +137125,68954,funny,1453352403 +137125,68954,nice movie,1453352417 +137125,68954,warm,1453352400 +137125,122886,action,1453352473 +137125,122886,classic,1453352461 +137141,260,Science Fiction,1437525809 +137141,260,space adventure,1437525786 +137141,858,organized crime,1438000822 +137141,3062,Historical,1438000739 +137141,3062,World War II,1438000711 +137172,858,Mafia,1210350834 +137172,6016,crime,1210350804 +137172,6016,drugs,1210350800 +137172,6016,gangs,1210350809 +137179,53953,psychological,1448942498 +137179,104035,Lots of blood,1448668531 +137179,104035,Violence against women,1448668515 +137179,110591,psychological,1448942552 +137199,115617,animation,1438619458 +137199,115617,family,1438619458 +137199,115617,fun,1438619458 +137199,120799,comedy,1436301535 +137199,120799,pg-13:sci-fi action violence,1436301535 +137199,120799,sequel,1436301535 +137227,79132,psychological,1453676734 +137227,109487,space exploration,1453676695 +137273,260,amazing,1432305559 +137273,260,sci-fi,1432305566 +137273,89745,Captain America,1439776346 +137273,89745,comic book,1439776337 +137273,89745,Hulk,1439776343 +137273,89745,Iron Man,1439776339 +137273,89745,Marvel,1439776332 +137273,89745,Marvel Cinematic Universe,1439776363 +137273,89745,Robert Downey Jr.,1439776329 +137273,89745,Samuel L. Jackson,1439776356 +137273,89745,Scarlett Johansson,1439776334 +137273,89745,The Avengers,1439776360 +137273,89745,Thor,1439776350 +137273,91529,Anne Hathaway,1439776309 +137273,91529,Batman,1439776299 +137273,91529,Christopher Nolan,1439776302 +137273,91529,comic book,1439776305 +137273,91529,comic books,1439776313 +137273,91529,Morgan Freeman,1439776296 +137274,296,action,1266156124 +137274,296,Bruce Willis,1266156126 +137274,296,classic,1266156128 +137274,296,comedy,1266156130 +137274,296,cult film,1266156132 +137274,296,dark comedy,1266156134 +137274,296,drugs,1266156136 +137274,296,Mafia,1266156139 +137274,296,multiple storylines,1266156140 +137274,296,nonlinear,1266156142 +137274,296,organized crime,1266156143 +137274,296,Quentin Tarantino,1266156144 +137274,296,quirky,1266156147 +137274,296,Samuel L. Jackson,1266156148 +137274,296,violence,1266156150 +137274,27773,disturbing,1243091594 +137274,27773,incest,1243091605 +137274,27773,stylized,1243091611 +137274,32770,brothers,1260244362 +137274,32770,Connie Nielsen,1260244354 +137274,32770,family dynamics,1260244356 +137274,61262,bad ending,1263226423 +137274,61262,Kiefer Sutherland,1263226420 +137274,64575,cinematography,1242067871 +137274,64575,Meryl Streep,1242067895 +137274,64575,moral ambiguity,1242067882 +137274,64575,Philip Seymour Hoffman,1242067856 +137274,64614,classic car,1244878775 +137274,64614,Clint Eastwood,1244878755 +137274,64614,culture clash,1244878778 +137274,64614,old men,1244878771 +137274,64614,racism,1244878761 +137274,64614,revenge,1244878794 +137274,68157,alternate history,1263226010 +137274,68157,Brad Pitt,1263226012 +137274,68157,Eli Roth,1263226013 +137274,68157,gore,1263226015 +137274,68157,great acting,1263226017 +137274,68157,Nazis,1263226021 +137274,68157,Quentin Tarantino,1263226019 +137274,68157,revenge,1263226036 +137274,68157,satire,1263226024 +137274,68157,tarantino,1263226026 +137274,68157,too long,1263226028 +137274,68157,vengeance,1263226033 +137274,68157,violence,1263226031 +137274,68157,World War II,1263226030 +137274,68749,Steve Zahn,1263226227 +137274,69784,homosexuality,1248171001 +137274,69784,mockumentary,1248170992 +137274,69784,Nudity (Full Frontal),1248170987 +137274,69784,Sacha Baron Cohen,1248171006 +137274,69784,tasteless,1248170983 +137274,71248,adultery,1263226139 +137274,71248,Ben Affleck,1263226132 +137274,71248,David Koechner,1263226136 +137274,71248,J.K. Simmons,1263226134 +137274,71248,Jason Bateman,1263226141 +137274,71248,Mike Judge,1263226143 +137274,71248,Mila Kunis,1263226145 +137274,72011,commitment,1263225923 +137274,72011,cynicism,1263225925 +137274,72011,George Clooney,1263225928 +137274,72011,Jason Bateman,1263225929 +137274,72011,Jason Reitman,1263225931 +137274,72011,loneliness,1263225933 +137274,72176,Patton Oswalt,1263226251 +137274,72380,boring,1267919035 +137274,72380,lame,1267919037 +137274,72380,no atmosphere,1267919039 +137274,72380,no tension,1267919042 +137274,72733,Africa,1263225981 +137274,72733,Matt Damon,1263225985 +137274,72733,Morgan Freeman,1263225983 +137274,72733,sports,1263225988 +137274,72762,Jean Reno,1267980061 +137274,72762,Matt Dillon,1267980063 +137274,73017,Guy Ritchie,1263225956 +137274,73017,Jude Law,1263225959 +137274,73017,Robert Downey Jr.,1263225961 +137274,73386,Ethan Hawke,1263226177 +137274,73386,Vincent D'Onofrio,1263226179 +137274,74156,Mel Gibson,1267980098 +137274,74789,Alan Rickman,1267918752 +137274,74789,Anne Hathaway,1267918755 +137274,74789,Crispin Glover,1267918758 +137274,74789,Helena Bonham Carter,1267918762 +137274,74789,Johnny Depp,1267918771 +137274,74789,Stephen Fry,1267918774 +137274,74789,Tim Burton,1267918765 +137274,77561,Robert Downey Jr.,1276885958 +137274,77561,Sam Rockwell,1276885961 +137274,77561,Samuel L. Jackson,1276885963 +137276,76,artificial intelligence,1388995408 +137276,76,horror,1388995433 +137276,76,post apocalyptic,1388995419 +137276,76,robots,1388995424 +137276,76,sci-fi,1388995426 +137276,76,so bad it's good,1388995413 +137276,1726,dystopia,1388996088 +137276,1726,future,1388996091 +137276,1726,Nudity (Rear),1388996064 +137276,1726,post-apocalyptic,1388996073 +137276,1726,slow start,1388996097 +137276,1726,Underrated,1388996071 +137276,2710,"""found footage""",1388993976 +137276,2710,atmospheric,1388993956 +137276,2710,creepy,1388993951 +137276,2710,disturbing,1388993948 +137276,2710,low budget,1388993932 +137276,2710,mimics documentary-style,1388993923 +137276,2710,mockumentary,1388993926 +137276,2710,original,1388993943 +137276,2710,scary,1388993928 +137276,2710,suspense,1388993939 +137276,3300,aliens,1388994404 +137276,3300,anti-hero,1388994405 +137276,3300,futuristic,1388994416 +137276,3300,good concept,1388994425 +137276,3300,poor character development,1388994445 +137276,3300,sci-fi,1388994443 +137276,3300,stranded,1388994410 +137276,3300,Vin Diesel,1388994408 +137276,3827,Clint Eastwood,1388995852 +137276,3827,space,1388995855 +137276,4735,b movie,1388995798 +137276,4735,Jason Statham,1388995782 +137276,4735,Mars,1388995788 +137276,4735,sci-fi,1388995786 +137276,5219,action,1388993822 +137276,5219,apocalypse,1388993820 +137276,5219,Michelle Rodriguez,1388993813 +137276,5219,Milla Jovovich,1388993803 +137276,5219,resident evil,1388993829 +137276,5219,video game adaptation,1388993791 +137276,5219,zombie,1388993783 +137276,5219,zombies,1388993785 +137276,5502,aliens,1388995226 +137276,5502,atmospheric,1388995270 +137276,5502,family bonds,1388995265 +137276,5502,horror,1388995241 +137276,5502,humorous,1388995267 +137276,5502,M. Night Shyamalan,1388995245 +137276,5502,Mel Gibson,1388995249 +137276,5502,moral ambiguity,1388995252 +137276,5502,sci-fi,1388995257 +137276,5502,suspenseful,1388995255 +137276,5502,understated,1388995261 +137276,6305,adapted from:book,1388995989 +137276,6305,dystopia,1388995987 +137276,6305,Ray Bradbury,1388995980 +137276,6305,subversive,1388995983 +137276,6502,British,1388994800 +137276,6502,gore,1388994810 +137276,6502,great soundtrack,1388994798 +137276,6502,horror,1388994812 +137276,6502,post-apocalyptic,1388994775 +137276,6502,sci-fi,1388994778 +137276,6502,survival,1388994772 +137276,6502,thought-provoking,1388994769 +137276,6502,visually appealing,1388994764 +137276,6502,zombies,1388994762 +137276,8361,apocalypse,1388994303 +137276,8361,catastrophe,1388994300 +137276,8361,global warming,1388994294 +137276,8361,Jake Gyllenhaal,1388994263 +137276,8361,New York City,1388994271 +137276,8361,Post apocalyptic,1388994268 +137276,8361,sci-fi,1388994277 +137276,8361,thriller,1388994280 +137276,8371,Judi Dench,1388993221 +137276,8371,sci-fi,1388993245 +137276,8371,space,1388993217 +137276,8371,Vin Diesel,1388993219 +137276,8861,Milla Jovovich,1388993851 +137276,33004,aliens,1388992715 +137276,33004,apocalypse,1388992718 +137276,33004,based on a book,1388992710 +137276,33004,british comedy,1388992721 +137276,33004,post-apocalyptic,1388992704 +137276,33004,remake,1388992730 +137276,33004,space,1388992706 +137276,33004,witty,1388992739 +137276,33004,Zooey Deschanel,1388992708 +137276,34048,adapted from:book,1388993098 +137276,34048,alien invasion,1388993138 +137276,34048,aliens,1388993092 +137276,34405,cult film,1388993332 +137276,34405,dystopia,1388993322 +137276,34405,quirky,1388993327 +137276,34405,sci-fi,1388993330 +137276,34405,space,1388993324 +137276,45081,atmospheric,1388993741 +137276,45081,based on a computer game,1388993745 +137276,45081,creepy,1388993736 +137276,45081,dark,1388993739 +137276,45081,disturbing,1388993732 +137276,45081,gore,1388993749 +137276,45081,post-apocalyptic,1388993718 +137276,45081,stylized,1388993725 +137276,45081,unintentionally funny,1388993721 +137276,53000,Jeremy Renner,1388994918 +137276,53000,not as good as the first,1388994906 +137276,53000,post-apocalyptic,1388994865 +137276,53000,zombies,1388994861 +137276,54995,crude humor,1388993659 +137276,54995,grindhouse,1388993619 +137276,54995,lesbian,1388993629 +137276,54995,Nudity (Topless),1388993627 +137276,54995,sex scene,1388993637 +137276,54995,zombies,1388993634 +137276,55282,remote location,1388993533 +137276,55282,snow,1388993515 +137276,55282,survival,1388993517 +137276,55282,vampire,1388993518 +137276,56174,apocalypse,1388996159 +137276,56174,dystopia,1388996157 +137276,56174,horror,1388996166 +137276,56174,loneliness,1388996163 +137276,56174,post-apocalyptic,1388996151 +137276,56174,religion,1388996140 +137276,56174,vampire,1388996146 +137276,56174,Will Smith,1388996144 +137276,56174,zombies,1388996142 +137276,57274,"""found footage""",1388993882 +137276,57274,spanish,1388993873 +137276,57274,zombies,1388993890 +137276,64497,aliens,1388995713 +137276,64497,apocalyptic,1388995715 +137276,64497,religious overtones,1388995697 +137276,64497,remake,1388995699 +137276,64497,shallow characters,1388995702 +137276,64997,easily confused with other movie(s) (title),1388993052 +137276,68358,future,1388993181 +137276,68358,space,1388993178 +137276,68358,Star Trek,1388993176 +137276,68358,time travel,1388993204 +137276,68358,visually appealing,1388993187 +137276,70305,aliens,1388992656 +137276,70305,boring,1388992645 +137276,70305,sci-fi,1388992651 +137276,70305,script,1388992665 +137276,71379,ending,1388994042 +137276,71379,low budget,1388994077 +137276,71379,psychological thriller,1388994050 +137276,72998,aliens,1388995561 +137276,72998,culture clash,1388995565 +137276,72998,futuristic,1388995560 +137276,72998,racism,1388995543 +137276,72998,sci-fi,1388995558 +137276,72998,social commentary,1388995553 +137276,72998,thought-provoking,1388995546 +137276,73268,dystopia,1388993457 +137276,73268,human harvesting,1388993468 +137276,73268,immortality,1388993452 +137276,73268,predictable,1388993445 +137276,73268,vampires,1388993488 +137276,78266,bad acting,1388995315 +137276,78266,childhood issues,1388995298 +137276,78266,experiments gone awry,1388995322 +137276,78266,original plot,1388995339 +137276,78266,plot,1388995310 +137276,78266,predictable,1388995308 +137276,78266,rape,1388995305 +137276,78266,weak ending,1388995300 +137276,83134,black comedy,1388995063 +137276,83134,clever,1388995079 +137276,83134,hillbillies,1388995097 +137276,83134,predictable,1388995045 +137276,83134,satire,1388995076 +137276,85131,aliens,1388994365 +137276,85131,Michelle Rodriguez,1388994362 +137276,85131,poor dialogue,1388994359 +137276,85131,predictable,1388994357 +137276,85131,sci-fi,1388994368 +137276,85131,search and rescue,1388994377 +137276,85131,Unoriginal,1388994370 +137276,85414,Jake Gyllenhaal,1388995909 +137276,85414,mindfuck,1388995912 +137276,85414,twist ending,1388995917 +137276,85788,cliche,1388994199 +137276,85788,ghosts,1388994136 +137276,85788,haunted house,1388994191 +137276,85788,no nudity,1388994141 +137276,85788,slow start,1388994212 +137276,85788,stupid ending,1388994148 +137276,85788,supernatural,1388994155 +137276,85788,tense,1388994152 +137276,87869,actually funny,1388995141 +137276,87869,Colin Farrell,1388995191 +137276,87869,current,1388995197 +137276,87869,Jennifer Aniston,1388995144 +137276,87869,sexism,1388995176 +137276,87869,sexual,1388995181 +137276,87869,social commentary,1388995184 +137276,87869,weak ending,1388995151 +137276,91500,based on a book,1388996027 +137276,91500,dystopia,1388996020 +137276,91500,science fiction,1388996015 +137276,91500,survival,1388996013 +137276,91500,visually stunning,1388996011 +137276,91660,aliens,1388995374 +137276,91660,Moscow,1388995362 +137276,91660,stranded,1388995365 +137276,91660,Visual effects,1388995371 +137276,92192,aliens,1388995519 +137276,92192,boring,1388995521 +137276,92192,documentary style,1388995508 +137276,92192,predictable,1388995506 +137276,92192,space,1388995515 +137276,93840,conspiracy,1388994956 +137276,93840,dark comedy,1388994978 +137276,93840,funny,1388994976 +137276,93840,Nudity (Topless),1388994971 +137276,93840,satire,1388994958 +137276,93840,social commentary,1388994960 +137290,1923,funny as ken,1287845364 +137290,34162,motorboat,1287845423 +137290,42725,adios turd nuggets,1287845763 +137290,42725,Amazing comedy,1287845800 +137290,42725,Crazy,1287845784 +137290,42725,Quotable,1287845818 +137290,54503,mclovin,1287845634 +137290,58998,Russel Brand,1287845530 +137290,62434,anal,1287845466 +137290,63131,kiss my anthea,1287845669 +137304,260,sci-fi,1440367728 +137304,260,starwars,1440367733 +137310,56174,post-apocalyptic,1300561401 +137317,13,Ei muista,1140552109 +137317,48,Katottava,1140552342 +137317,110,so romantic.,1140551843 +137317,239,Katottava,1140552182 +137317,364,IhQ,1140552221 +137317,588,Katottava,1140552298 +137317,595,IhQ,1140552142 +137317,1033,Surullinen,1140552332 +137317,1881,IhQ,1140552249 +137317,2080,Katottava,1140552201 +137317,2123,Ei muista,1140552075 +137317,2139,IhQ,1140552276 +137317,2141,Katottava,1140552322 +137317,2987,*reps*,1140552357 +137317,3745,Katottava,1140552291 +137317,4446,Katottava,1140552163 +137317,4519,Tylsä,1140552213 +137317,4886,Katottava,1140552232 +137317,5218,Katottava,1140552192 +137317,5389,IhQ,1140552285 +137317,6889,IhQ,1140552152 +137317,8807,Bad,1140546409 +137317,8869,Something else,1140546364 +137317,8916,Booring,1140546384 +137317,8984,Sucks big time!,1140546298 +137317,30816,Lovely,1140546339 +137317,31221,dumb but funny,1140546246 +137317,31221,Ihan katottava,1140546242 +137317,37386,Nice,1140546514 +137317,41569,Sad as hell,1140546598 +137317,41571,Uuuuuuuh...Wonderful,1140546563 +137327,1240,ai,1447758195 +137327,4896,jk rowling,1447758162 +137328,299,Robert Carlyle,1327526237 +137328,1080,British,1327526259 +137328,1080,british comedy,1327526278 +137328,1080,Monty Python,1327526275 +137328,1204,Peter O'Toole,1327526145 +137328,1339,Gary Oldman,1327526192 +137328,1967,David Bowie,1327529847 +137328,3082,Robert Carlyle,1327529673 +137328,3753,historical,1327526410 +137328,3753,history,1327526413 +137328,3753,Jason Isaacs,1327526394 +137328,3753,The United States of America,1327526417 +137328,4223,Ed Harris,1327531391 +137328,4223,War,1327531412 +137328,4223,World War II,1327531416 +137328,5010,heroism,1327529418 +137328,5010,Jason Isaacs,1327529391 +137328,5010,USA being the good one,1327529432 +137328,5010,war,1327529428 +137328,5010,war movie,1327529426 +137328,7164,Jason Isaacs,1327526356 +137328,49649,Robert Carlyle,1327364359 +137328,54259,British,1327525999 +137328,54259,Mark Strong,1327525971 +137328,54259,Neil Gaiman,1327525952 +137328,54259,Robert De Niro,1327525962 +137328,61240,dark,1327526316 +137328,68073,British,1327526061 +137328,68073,rock and roll,1327526069 +137328,89753,Gary Oldman,1327524915 +137336,50,Benicio del toro,1221425895 +137344,4958,war,1269258545 +137356,296,amazing dialogues,1443812133 +137356,296,cult film,1443812110 +137375,58559,dark hero,1440388522 +137375,58559,involving action,1440388561 +137375,58559,SuperVillain,1440388585 +137396,858,based on a book,1446283873 +137396,858,crime,1446283862 +137396,858,Mafia,1446283831 +137396,1721,Nudity (Topless),1446284022 +137396,1721,romance,1446284005 +137396,1721,true story,1446284014 +137400,260,awesome soundtrack,1441768402 +137400,260,classic sci-fi,1441768390 +137409,1270,Funny,1137018269 +137409,1270,kinetic,1137018269 +137409,2571,Brilliant,1137018311 +137409,2571,Great heroics,1137018311 +137409,2571,power of myth,1137018311 +137409,2571,Pure action,1137018311 +137409,2571,smart,1137018311 +137409,42011,Acidly funny,1137856230 +137409,42011,smart,1137856230 +137409,43919,allyson hannigan,1153797853 +137409,43919,Not funny,1153797849 +137409,43919,stupid,1153797858 +137409,43932,Only because of Kristen Bell,1174262638 +137409,48385,funny,1165779969 +137496,2858,bittersweet,1316470403 +137496,2858,dark comedy,1316470371 +137496,2858,Oscar (Best Cinematography),1316470389 +137496,2858,Oscar (Best Picture),1316470385 +137496,2858,reflective,1316470387 +137496,2858,sexuality,1316470395 +137496,2858,surrealism,1316470376 +137496,2858,thought-provoking,1316470375 +137514,89759,acting,1328552791 +137514,89759,realism,1328553091 +137514,89759,social commentary,1328553090 +137530,3617,across country,1188405080 +137530,3617,car jump,1188405080 +137530,3617,masturbation,1188405080 +137530,3617,silly,1188405080 +137530,3916,afro-american,1188405028 +137530,3916,football,1188405028 +137530,3916,man power,1188405028 +137530,3916,strugle,1188405028 +137530,3916,Team Work,1188405028 +137530,4270,adventure,1188405031 +137530,4270,egypt,1188405031 +137530,5414,Impersonation,1188411155 +137530,5414,Kidnapping,1188411155 +137530,5414,Look Alike,1188411155 +137530,5414,Mission,1188411155 +137530,5414,Nuclear Weapon,1188411155 +137530,5955,afro-american,1188406589 +137530,5955,anger managment,1188406558 +137530,5955,boy-girl,1188406689 +137530,5955,finding yourself,1188406618 +137530,5955,makes you cry,1188406651 +137530,5955,poverty,1188406733 +137530,5955,psychiatrist,1188406599 +137530,5955,sexual abuse,1188406700 +137530,5955,us navy,1188406579 +137530,6010,Dream Sequence,1188411668 +137530,6010,Fast Food,1188411667 +137530,6010,Hit And Run,1188411667 +137530,6010,Loss Of Daughter,1188411667 +137530,6010,Stabbed In The Back,1188411667 +137530,8622,usa government,1188404870 +137530,35957,non-horror,1285105077 +137530,42418,beauty,1188406986 +137530,42418,great scenery,1188406839 +137530,42418,hunger,1188406914 +137530,42418,John Smith,1188406894 +137530,42418,love story,1188406829 +137530,42418,native americans,1188406927 +137530,42418,nature vs. civilization; native peoples; going native,1188406854 +137530,42418,Pocahontas,1188406845 +137530,42418,poetry,1188406940 +137530,42418,Powhatan,1188406886 +137530,42418,sorrow,1188406951 +137530,42418,winter,1188407015 +137530,43419,Alarm,1188411304 +137530,43419,Beautiful Woman,1188411304 +137530,43419,Explosion,1188411304 +137530,43419,Gun,1188411304 +137530,43419,Mexico,1188411304 +137530,53953,drowning,1188405385 +137530,53953,fathers lov,1188405370 +137530,53953,freezing,1188405398 +137603,3535,Nudity (Topless),1355758824 +137603,3535,psycho,1355758802 +137603,3535,Reese Witherspoon,1355758818 +137620,208,post-apocalyptic,1262983484 +137620,327,Post apocalyptic,1262983550 +137620,422,thriller,1367793522 +137620,541,androids,1275910992 +137620,541,artificial intelligence,1275910995 +137620,541,atmospheric,1247944088 +137620,541,cyberpunk,1247943902 +137620,541,dystopia,1275911029 +137620,541,existentialism,1275911006 +137620,541,future,1275911000 +137620,541,great soundtrack,1275911003 +137620,541,Harrison Ford,1275911018 +137620,541,Philip K. Dick,1275911021 +137620,567,funny,1345304302 +137620,741,cyberpunk,1247944387 +137620,747,stupid,1367793425 +137620,1069,mystery,1367793253 +137620,1080,controversial,1421606412 +137620,1080,hilarious,1421606408 +137620,1080,parody,1421606405 +137620,1080,satire,1421606402 +137620,1200,James Cameron,1247945484 +137620,1200,sci-fi,1247945575 +137620,1200,Sigourney Weaver,1247945469 +137620,1214,claustrophobic,1247945990 +137620,1214,dark,1247945640 +137620,1214,H. R. Giger,1247945631 +137620,1214,horror,1247945782 +137620,1214,Ridley Scott,1247945620 +137620,1214,space,1247945634 +137620,1240,Arnold Schwarzenegger,1247945239 +137620,1240,great soundtrack,1247945244 +137620,1240,James Cameron,1247945247 +137620,1240,stunts,1247945255 +137620,1240,time travel,1247945251 +137620,1251,surreal,1345305731 +137620,1957,inspirational,1367793099 +137620,2001,violence,1350947625 +137620,2431,inspirational,1367793099 +137620,2495,Dreamlike,1273352391 +137620,2495,Surreal,1273352393 +137620,2571,cyberpunk,1247944407 +137620,2571,Keanu Reeves,1247944411 +137620,2594,mindfuck,1249388069 +137620,2594,Nudity (Topless - Notable),1249388170 +137620,2594,Philip K. Dick (uncredited),1249388093 +137620,2807,everything,1345305565 +137620,2905,18th century,1260323360 +137620,2905,humorous,1260323182 +137620,2905,Japan,1260323198 +137620,2905,samurai,1260323165 +137620,2905,sword fighting,1260323208 +137620,2959,dark comedy,1266788940 +137620,2959,social commentary,1266788953 +137620,3088,mental illness,1367793238 +137620,3230,nazis,1367793285 +137620,3427,police,1367793380 +137620,3556,great soundtrack,1247944799 +137620,3556,melancholy,1247944806 +137620,3556,psychology,1247944809 +137620,3556,visually appealing,1247944811 +137620,3654,World War II,1262695829 +137620,3702,cult classic,1402853380 +137620,3702,dystopia,1402853329 +137620,3702,post-apocalyptic,1402853338 +137620,3702,revenge,1402853367 +137620,3822,black and white,1367792831 +137620,3947,assassin,1262907417 +137620,3947,ending,1262907302 +137620,3947,Industrial setting,1262907387 +137620,3947,Michael Caine,1262907326 +137620,3947,story,1262907302 +137620,4043,father-son relationship,1367793024 +137620,4212,mystery,1367793253 +137620,4226,overrated,1249388319 +137620,4300,politics,1367793408 +137620,4437,atmospheric,1247944651 +137620,4437,dreamlike,1247944669 +137620,4498,Clint Eastwood,1255627479 +137620,4498,Dirty Harry,1255627451 +137620,4640,violent,1367793548 +137620,4655,politics,1367793408 +137620,4661,thriller,1367793522 +137620,4725,mental hospital,1281881519 +137620,4728,hilarious,1423860000 +137620,4728,silly,1423859986 +137620,4814,thriller,1367793522 +137620,4848,Atmospheric,1278277780 +137620,4848,David Lynch,1278277768 +137620,4848,dreamlike,1278277777 +137620,4848,mindfuck,1278277763 +137620,4848,surreal,1278277752 +137620,4848,surrealism,1278277760 +137620,4848,symbolism,1278770874 +137620,4874,alien,1275909960 +137620,4874,intellectual,1275909986 +137620,4874,philosophical,1275909957 +137620,4874,psychiatrist,1275909970 +137620,4947,police,1367793380 +137620,4949,campy,1258160627 +137620,4986,acting,1257556103 +137620,4986,Chuck Norris,1257556123 +137620,4986,music,1257556110 +137620,4986,script,1257556072 +137620,5021,ensemble cast,1367792985 +137620,5213,christianity,1367792889 +137620,5498,black and white,1367792831 +137620,5585,stupid,1367793425 +137620,5690,anti-war,1256086467 +137620,5993,politics,1367793408 +137620,6216,nazis,1367793285 +137620,6281,bad acting,1345304613 +137620,6281,unrealistic,1345304616 +137620,6350,adventure,1254223080 +137620,6350,anime,1254223101 +137620,6350,imagination,1254223085 +137620,6350,steampunk,1254223091 +137620,6371,franchise,1367793054 +137620,6398,racing,1345304809 +137620,6398,realism,1345304815 +137620,6615,bad acting,1275904317 +137620,6615,dialogue,1275904322 +137620,6615,Kelly Rowland,1275904476 +137620,6615,Nudity (Topless),1275904308 +137620,6615,stupid teenagers,1275904294 +137620,6639,thriller,1367793522 +137620,6774,surreal,1247942834 +137620,6872,campy,1271975040 +137620,6872,Ona Grauer,1271974993 +137620,6872,videogame,1271975058 +137620,7235,violent,1367793548 +137620,7505,comedy,1296405535 +137620,7505,surreal,1296405538 +137620,7889,Too much singing,1242079400 +137620,7894,Sergio Leone,1203081788 +137620,7981,Hong Kong,1423947515 +137620,7981,story,1423947566 +137620,7981,stylized,1423947518 +137620,7981,undercover cop,1423947535 +137620,8207,assassin,1273352254 +137620,8207,tense,1367793444 +137620,8207,thriller,1367793522 +137620,8340,Clint Eastwood,1255627525 +137620,8340,prison escape,1255627544 +137620,8371,shallow plot,1277814225 +137620,8371,space,1277814231 +137620,8374,Chillout,1340026068 +137620,8477,black and white,1367792831 +137620,8914,boring,1340026027 +137620,8914,mindfuck,1340026036 +137620,25769,father-son relationship,1367793025 +137620,26003,black and white,1367792831 +137620,26269,father-son relationship,1367793025 +137620,27033,dark,1367792918 +137620,27266,boring,1394965215 +137620,27309,nudity (topless - notable),1367793301 +137620,27317,mindfuck,1247943510 +137620,27850,Critical thinking,1271280174 +137620,32128,Bad acting,1423938556 +137620,32128,sports,1423938544 +137620,32892,black and white,1256857240 +137620,32892,Old,1256857234 +137620,34153,inspirational,1367793099 +137620,40732,cave,1265565463 +137620,40732,crap dialog,1265565404 +137620,40732,Direction,1265565507 +137620,40732,overrated,1265565383 +137620,40732,Personalities,1265565453 +137620,40732,predictable,1265565521 +137620,42632,beautiful cinematography,1254702750 +137620,43415,moody,1326748020 +137620,44193,high school,1367793079 +137620,46972,Visuals,1262643086 +137620,48043,Music,1240858866 +137620,48043,Visuals,1240859032 +137620,48304,history,1345305488 +137620,48304,overrated,1390162595 +137620,48394,atmospheric,1247944597 +137620,48394,fascism,1247944626 +137620,48394,Oscar (Best Cinematography),1275906009 +137620,48394,stylized,1275905993 +137620,48394,surreal,1247944607 +137620,48394,violence,1275905982 +137620,48394,visually appealing,1275905965 +137620,48394,world war II,1275905984 +137620,48774,dystopia,1296405381 +137620,48774,sci-fi,1296405376 +137620,49932,surreal,1251156915 +137620,50798,stupid,1367793425 +137620,51086,Acting,1291502104 +137620,51086,psychology,1291502200 +137620,51086,Story,1291502104 +137620,53161,mental hospital,1254702871 +137620,53953,Stephen King,1274566924 +137620,55363,oscar (best cinematography),1367793322 +137620,55442,bad adaptation,1345305422 +137620,56156,assassin,1345304536 +137620,56156,bad acting,1345304525 +137620,56156,bad screenplay,1345304523 +137620,56156,flat characters,1345304527 +137620,56156,Russia,1345304532 +137620,56801,acting,1345304217 +137620,56801,casting,1345304221 +137620,56801,franchise,1345304225 +137620,56801,stupid plot,1345304214 +137620,56801,teenage drama,1345304208 +137620,57274,atmospheric,1321747763 +137620,57274,contamination,1321747793 +137620,57274,spanish,1321747769 +137620,57528,violent,1367793547 +137620,57532,300 Spoof,1345304270 +137620,57532,stupid,1367793425 +137620,57669,dark comedy,1263656217 +137620,58297,futuristic,1423399021 +137620,58297,heroine in tight suit,1423399017 +137620,58297,it's a mess,1423399078 +137620,58297,mad max,1423399031 +137620,58297,post-apocalyptic,1423399024 +137620,58297,unintentional comedy,1423399064 +137620,58297,unrealistic,1423399008 +137620,58351,Brazil,1259093761 +137620,58351,gangsters,1259093757 +137620,58351,music,1259093777 +137620,58351,Rio de Janeiro,1259093751 +137620,58559,Atmospheric,1396807917 +137620,58803,blackjack,1241632520 +137620,58803,Kevin Spacey,1241632570 +137620,59018,humanity,1254223187 +137620,59026,satire,1395813385 +137620,59026,social commentary,1395813482 +137620,59315,Special Effects,1257557897 +137620,60074,bad script,1246096750 +137620,60463,pointless,1278177128 +137620,60684,based on a comic,1261324041 +137620,60684,bullet time overuse,1261323434 +137620,60684,comic book,1261324043 +137620,60684,dystopia,1261323410 +137620,60684,sci-fi,1261324099 +137620,60684,sound effects,1261324029 +137620,60684,superheroes,1261324087 +137620,60684,too long,1261323428 +137620,60684,unlikeable characters,1261324082 +137620,60832,Everything,1321747512 +137620,60832,Nudity (Topless),1321747534 +137620,60832,predictable,1321747572 +137620,60832,story,1321747527 +137620,62511,long,1317041097 +137620,62511,philosophy,1317041109 +137620,62511,surreal,1317041079 +137620,62511,thought-provoking,1317041118 +137620,62792,police,1367793380 +137620,62801,father-son relationship,1367793024 +137620,63072,post-apocalyptic,1278177055 +137620,63072,product placement,1278177046 +137620,63082,India,1259093865 +137620,63082,music,1258750278 +137620,63082,visuals,1258750304 +137620,63436,franchise,1367793054 +137620,64614,racism,1255381545 +137620,64839,sad,1256858586 +137620,64957,boring,1260816771 +137620,64957,too long,1260816772 +137620,65216,based on a true story,1259251566 +137620,65216,Daniel Craig,1259251531 +137620,65216,slow,1259251586 +137620,67923,franchise,1367793054 +137620,67997,ADHD,1278930759 +137620,67997,boring,1278930249 +137620,67997,overrated,1278930313 +137620,67997,script,1278930436 +137620,67997,swearing,1278930283 +137620,68237,dystopia,1266013682 +137620,68237,moon,1266013676 +137620,68237,Sci-fi,1266013680 +137620,68237,space,1266013678 +137620,68319,Marvel,1264810583 +137620,68358,action,1269035182 +137620,68358,alternate reality,1269035193 +137620,68358,future,1269035165 +137620,68358,predictable,1269035169 +137620,68358,sci-fi,1269035154 +137620,68358,script,1269036386 +137620,68358,space,1269035162 +137620,68358,space travel,1269035159 +137620,68358,story,1269036380 +137620,68358,visually appealing,1269035137 +137620,68358,Visuals,1269035148 +137620,68358,Winona Ryder,1269035174 +137620,69481,propaganda,1349636667 +137620,69481,too long,1349636663 +137620,70159,ambiance,1274566211 +137620,70159,story,1274566115 +137620,70286,humor,1273044263 +137620,70286,sci-fi,1273044260 +137620,70286,social commentary,1273044233 +137620,70286,South Africa,1273044367 +137620,71379,bad acting,1281881435 +137620,71379,ending,1281881442 +137620,71379,low budget,1281881462 +137620,71379,remade ending,1281881416 +137620,71379,scary,1281881429 +137620,71464,Annoying,1280091007 +137620,71464,bad ending,1280091005 +137620,71464,coen brothers,1280091013 +137620,71464,slow,1280091003 +137620,71530,cliche,1345630118 +137620,71530,comic book,1345630186 +137620,71530,predictable,1345630116 +137620,71530,robots,1345630178 +137620,71530,sci-fi,1345630113 +137620,71530,special effects,1345630174 +137620,71530,surreal,1345630125 +137620,71530,technology,1345630123 +137620,71530,thought-provoking,1345630130 +137620,73017,Atmospheric,1280090849 +137620,73017,colours,1280090874 +137620,73017,martial arts,1280090909 +137620,73017,Robert Downey Jr.,1280090893 +137620,73017,Sherlock Holmes,1280090942 +137620,73572,First scene,1321747712 +137620,74075,Bad jokes,1420922305 +137620,74075,Boobs,1420922320 +137620,74075,Not even trying,1420922274 +137620,74204,mindfuck,1289560429 +137620,74327,comedy,1278770820 +137620,74677,Critical thinking,1271280212 +137620,74677,Message,1271280252 +137620,74677,politics,1367793408 +137620,74948,political commentary,1345305046 +137620,77455,social commentary,1395813448 +137620,78637,franchise,1367793054 +137620,78836,boring,1345305320 +137620,78836,psychedelic,1345305312 +137620,78836,surrealism,1345305306 +137620,79057,audience intelligence underestimated,1316380624 +137620,79057,childish plot,1316380614 +137620,79132,philosophy,1383558675 +137620,79695,80s nostalgia,1345304921 +137620,79695,boring,1345304907 +137620,79695,plot,1345304909 +137620,79695,Story,1345304912 +137620,80398,honor,1397504728 +137620,80398,Jean Reno,1397504733 +137620,80917,atmospheric,1345305151 +137620,80917,Chillout,1345305112 +137620,80917,creative,1345305099 +137620,80917,science fiction,1345305083 +137620,81564,pixar,1367793342 +137620,81819,good acting,1345304733 +137620,81819,story,1345304755 +137620,82667,disturbing,1395987853 +137620,82667,predictable,1395987895 +137620,82667,visually appealing,1395987860 +137620,83349,predictable,1345304882 +137620,85412,Comedy,1345304961 +137620,85414,parallel universe,1340025908 +137620,85414,predictable,1340025913 +137620,87304,father-son relationship,1367793025 +137620,87306,predictable,1396381090 +137620,87306,trains,1396381087 +137620,88129,atmospheric,1425586099 +137620,88129,car chase,1425586136 +137620,88129,cinematography,1425586108 +137620,88129,Dark,1425586129 +137620,88129,minimalistic,1425586119 +137620,88129,neo-noir,1425586112 +137620,88129,soundtrack,1425586104 +137620,88129,stylized,1425586128 +137620,88129,tense,1425586105 +137620,88129,visually appealing,1425586131 +137620,89190,dialogue,1340025833 +137620,89190,Landscapes,1340025848 +137620,89190,Smirk,1340025877 +137620,91529,Predictable,1383558554 +137620,92420,simple,1383514946 +137620,92420,stupid,1383514900 +137620,94864,3D version,1340314861 +137620,94864,scifi,1340314684 +137620,95875,action,1396298708 +137620,95875,Colin Farrell,1396298713 +137620,95875,cyberpunk,1396298697 +137620,95875,remake,1396298028 +137620,95875,visually appealing,1396298705 +137620,96034,atmospheric,1420922223 +137620,96034,mystery,1420922223 +137620,96034,suspense,1420922223 +137620,99114,violent,1367793548 +137620,99437,atmospheric,1402776713 +137620,99437,comedy,1402776799 +137620,99437,surreal,1402776708 +137620,99787,overly vulgar,1419114149 +137620,99787,some funny parts,1419114145 +137620,101864,cliche,1415478207 +137620,101864,cliche ending,1415478225 +137620,101864,post-apocalyptic,1415478239 +137620,101864,Predictable,1415478179 +137620,102445,boring,1399735157 +137620,102445,predictable,1399735155 +137620,103253,Music,1421526230 +137620,103253,Phasing,1421526194 +137620,103253,science fiction,1421526172 +137620,104841,Simple,1385588386 +137620,106002,predictable,1414946053 +137620,106002,space,1414946060 +137620,106920,predictable,1416957123 +137638,356,sally field,1425054872 +137638,356,tom hanks,1425054872 +137638,356,vietnam war,1425054872 +137638,4056,fantastic ingredients.....and yet EPIC FAIL....don't waste your time.,1338191286 +137638,4056,pace,1338191289 +137638,4056,premise,1338191291 +137638,8884,CIA comedy,1281181206 +137638,78039,zero entertainment value,1373990918 +137638,91474,NOTHING,1336391021 +137638,91474,such potential.....such a FAIL,1336391000 +137638,91474,TERRIBLE SCRIPTING,1336391013 +137638,93988,adaptation,1425054987 +137638,93988,based on book,1425055009 +137638,93988,Daniella Denby-Ashe,1425054972 +137638,93988,Elizabeth Gaskell,1425054982 +137638,93988,Just as good as Pride & Prejudice 1995,1362235240 +137638,93988,mini-series,1425055002 +137638,93988,Period Drama,1425054960 +137638,98699,Christmas,1354891392 +137638,98699,Christmas Miracle,1354891408 +137638,98699,Kids,1354891392 +137638,98699,Romance,1354891391 +137638,102267,adapted from:book,1367593053 +137638,104374,Rachel McAdams,1392497531 +137638,104736,Eric Bana,1390926417 +137638,104736,Jim Broadbent,1390926436 +137638,104736,Rebecca Hall,1390926498 +137638,107050,Andrew McCarthy,1386694574 +137638,107050,based on a book,1386695177 +137638,107050,Horses,1386694527 +137638,107050,New Yorker,1386694549 +137638,107050,Photographer,1386694534 +137638,107050,Romance,1386694521 +137638,107050,Teri Polo,1386694563 +137638,107050,TV movie,1386694491 +137638,109489,artistry,1393441270 +137638,109489,depth of character,1393441304 +137638,109489,Neve Campbell,1393442228 +137638,109489,originality,1393441296 +137638,109489,soundtrack,1393441275 +137638,109489,strong female lead,1393441319 +137638,109489,The flow,1393441255 +137648,50,great ending,1242926063 +137648,50,mindfuck,1242926059 +137648,50,twist ending,1242926055 +137648,318,narrated,1243628850 +137648,318,twist ending,1243628843 +137648,8914,clever,1243695311 +137648,8914,complicated plot,1243695320 +137648,8914,mindfuck,1243695327 +137648,8914,time travel,1243695323 +137648,44665,twist ending,1244078101 +137648,44665,unreliable narrators,1244078110 +137667,2959,action,1423548371 +137667,2959,philosophical,1423548371 +137667,2959,surprising ending,1423548371 +137681,99047,disturbing,1422567509 +137681,99047,pychologically thrilling,1422567509 +137681,99047,violent,1422567509 +137681,127228,different point of view,1423237704 +137681,127228,documentary,1423237704 +137681,127228,thought-provoking,1423237704 +137693,1213,mafia,1446950748 +137693,1213,Martin Scorsese,1446950751 +137693,1213,robert de niro,1446950759 +137714,58559,persistence,1440777730 +137714,91529,Inspiring,1440777698 +137714,91529,Rise,1440777693 +137732,63992,make people act like lunatics,1300162209 +137732,63992,nothing,1300162214 +137732,63992,vampires,1300162212 +137750,260,cult classic,1431340314 +137750,260,must see,1431340332 +137763,329,trekie,1163123502 +137765,353,cult film,1147899909 +137765,5151,Notable Nudity,1158597641 +137766,17,Romance,1449737111 +137766,1201,truly great western,1449737198 +137767,108715,clever,1410238486 +137767,108715,funny,1410238476 +137767,108715,Olivia Wilde,1410238473 +137767,108715,Sam Rockwell,1410238467 +137779,16,mafia,1241911981 +137779,32,dystopia,1241910840 +137779,32,post-apocalyptic,1241908914 +137779,32,psychology,1241910836 +137779,34,adventure,1241910206 +137779,34,Biography,1241910204 +137779,34,talking animals,1241910208 +137779,50,organized crime,1241910011 +137779,50,twist ending,1241910007 +137779,62,inspirational,1241910569 +137779,70,cult film,1241912849 +137779,70,Quentin Tarantino,1241912845 +137779,70,vampires,1241912837 +137779,104,Adam Sandler,1241911832 +137779,104,Hayao Miyazaki,1241911840 +137779,104,sports,1241911836 +137779,111,atmospheric,1241909886 +137779,111,Martin Scorsese,1241909890 +137779,141,comedy,1241910652 +137779,150,based on a true story,1241910442 +137779,150,space,1241910435 +137779,150,true story,1241910431 +137779,173,Sylvester Stallone,1241912251 +137779,208,apocalypse,1241910706 +137779,253,fantasy,1241910592 +137779,292,disease,1241911132 +137779,293,assassin,1241911581 +137779,293,crime,1241911586 +137779,293,disturbing,1241911576 +137779,293,quirky,1241911579 +137779,296,dark comedy,1241908567 +137779,296,nonlinear,1241910080 +137779,296,organized crime,1241910076 +137779,296,Quentin Tarantino,1241908570 +137779,300,based on a true story,1241909804 +137779,300,corruption,1241909800 +137779,300,crime,1241909797 +137779,317,Christmas,1241912078 +137779,317,Tim Allen,1241912086 +137779,317,Xmas theme,1241912080 +137779,318,based on a book,1241908418 +137779,318,twist ending,1241909929 +137779,319,atmospheric,1241913933 +137779,319,crime,1241913939 +137779,319,dark comedy,1241913928 +137779,319,disturbing,1241913930 +137779,319,quirky,1241913941 +137779,327,Post apocalyptic,1241913883 +137779,327,post-apocalyptic,1241913885 +137779,337,Johnny Depp,1241911925 +137779,337,mental illness,1241911923 +137779,342,bittersweet,1241912758 +137779,342,comedy,1241912766 +137779,342,quirky,1241912764 +137779,353,cult film,1241912121 +137779,353,Fantasy,1241912123 +137779,353,gothic,1241912131 +137779,353,revenge,1241912135 +137779,353,rock and roll,1241912127 +137779,356,based on a book,1241910372 +137779,356,Oscar (Best Picture),1241910376 +137779,356,psychology,1241910368 +137779,357,British,1241910353 +137779,357,Hugh Grant,1241910358 +137779,368,Jodie Foster,1241911904 +137779,368,Mel Gibson,1241911908 +137779,368,poker,1241911902 +137779,377,Keanu Reeves,1241911031 +137779,380,Arnold Schwarzenegger,1241911223 +137779,381,alcoholism,1241914359 +137779,381,Meg Ryan,1241914362 +137779,410,quirky,1241911699 +137779,432,lame,1241912440 +137779,441,quirky,1241910792 +137779,466,parody,1241912412 +137779,508,Oscar (Best Actor),1241911731 +137779,508,Tom Hanks,1241911729 +137779,509,atmospheric,1241911857 +137779,509,Oscar (Best Actress),1241911864 +137779,515,Anthony Hopkins,1241912982 +137779,527,Holocaust,1241909898 +137779,527,Oscar (Best Picture),1241909905 +137779,527,true story,1241909894 +137779,532,dark comedy,1241914044 +137779,552,Kiefer Sutherland,1241912665 +137779,552,swashbuckler,1241912668 +137779,586,christmas,1241911489 +137779,592,atmospheric,1241911192 +137779,592,Batman,1241911195 +137779,594,animated,1241911885 +137779,594,classic,1241911876 +137779,594,Disney,1241911882 +137779,594,good versus evil,1241911873 +137779,608,Coen Brothers,1241910164 +137779,608,dark comedy,1241908657 +137779,608,quirky,1241910169 +137779,708,Janeane Garofalo,1241912020 +137779,708,romantic,1241912014 +137779,708,Uma Thurman,1241912022 +137779,708,Veterinarian,1241912027 +137779,733,Alcatraz,1241911344 +137779,733,Sean Connery,1241911347 +137779,733,terrorism,1241911349 +137779,736,disaster,1241908672 +137779,736,twist ending,1241910246 +137779,778,dark comedy,1241910248 +137779,784,black comedy,1241912287 +137779,784,Jim Carrey,1241912290 +137779,858,based on a book,1241910147 +137779,858,Mafia,1241910145 +137779,858,Oscar (Best Picture),1241910151 +137779,902,bittersweet,1241913323 +137779,902,classic,1241913326 +137779,904,Alfred Hitchcock,1241912262 +137779,904,classic,1241912260 +137779,910,classic,1241913166 +137779,919,classic,1241910234 +137779,920,Oscar (Best Actress),1241912175 +137779,920,Oscar (Best Picture),1241912177 +137779,968,disturbing,1241908432 +137779,1073,cult film,1241909993 +137779,1073,surreal,1241909996 +137779,1079,black comedy,1241911754 +137779,1079,dark comedy,1241911749 +137779,1079,quirky,1241911747 +137779,1080,satire,1241911769 +137779,1084,Oscar (Best Cinematography),1241913235 +137779,1088,coming of age,1241913184 +137779,1088,dance,1241913186 +137779,1089,nonlinear,1241909944 +137779,1089,organized crime,1241909939 +137779,1089,Quentin Tarantino,1241909941 +137779,1090,Vietnam War,1241912309 +137779,1094,England,1241912700 +137779,1094,twist ending,1241912697 +137779,1127,Underwater,1241912115 +137779,1136,Monty Python,1241911440 +137779,1193,based on a book,1241910101 +137779,1193,psychology,1241910098 +137779,1197,fantasy,1241911053 +137779,1197,quirky,1241911056 +137779,1206,based on a book,1241910194 +137779,1206,dystopia,1241909226 +137779,1206,psychology,1241909229 +137779,1207,atmospheric,1241912580 +137779,1213,based on a book,1241910128 +137779,1213,dark comedy,1241910120 +137779,1213,organized crime,1241910125 +137779,1219,Alfred Hitchcock,1241910086 +137779,1219,classic,1241911913 +137779,1219,psychology,1241910089 +137779,1219,serial killer,1241910084 +137779,1221,mafia,1241910137 +137779,1221,organized crime,1241910134 +137779,1221,Oscar (Best Picture),1241910139 +137779,1222,Stanley Kubrick,1241911817 +137779,1222,Vietnam War,1241909919 +137779,1225,true story,1241911713 +137779,1235,cult film,1241909965 +137779,1235,dark comedy,1241909963 +137779,1235,quirky,1241909967 +137779,1258,atmospheric,1241910479 +137779,1262,classic,1241913290 +137779,1262,historical,1241913295 +137779,1262,true story,1241913289 +137779,1265,Bill Murray,1241910739 +137779,1265,surreal,1241910743 +137779,1275,immortality,1241913085 +137779,1276,atmospheric,1241913037 +137779,1276,classic,1241913045 +137779,1278,gothic,1241912392 +137779,1278,parody,1241912384 +137779,1278,spoof,1241912387 +137779,1285,black comedy,1241913215 +137779,1285,cult film,1241913217 +137779,1285,dark comedy,1241913220 +137779,1288,rock and roll,1241912276 +137779,1288,satire,1241912271 +137779,1292,satire,1241914079 +137779,1298,classic,1241910311 +137779,1298,cult film,1241910304 +137779,1298,surreal,1241910308 +137779,1302,fantasy,1241912917 +137779,1344,thriller,1241914693 +137779,1378,History,1241910695 +137779,1391,alien invasion,1241912071 +137779,1391,Parody,1241912066 +137779,1394,Coen Brothers,1241912319 +137779,1394,comedy,1241912326 +137779,1394,crime,1241912324 +137779,1396,black comedy,1241912722 +137779,1396,Quirky,1241912727 +137779,1407,mental illness,1241909847 +137779,1407,spoof,1241910482 +137779,1552,airplane,1241912515 +137779,1552,John Cusack,1241912511 +137779,1573,guns,1241910989 +137779,1573,John Travolta,1241910986 +137779,1573,John Woo,1241911931 +137779,1573,Nicholas Cage,1241911935 +137779,1573,stupid,1241911938 +137779,1573,switching places,1241910991 +137779,1580,conspiracy,1241910729 +137779,1641,England,1241910633 +137779,1641,working class,1241910629 +137779,1653,dystopia,1241910755 +137779,1653,future,1241910757 +137779,1653,genetics,1241910752 +137779,1680,alternate universe,1241914007 +137779,1680,nonlinear,1241914012 +137779,1704,mathematics,1241910607 +137779,1704,Oscar (Best Supporting Actor),1241910609 +137779,1704,psychology,1241908536 +137779,1721,atmospheric,1241911377 +137779,1721,true story,1241911379 +137779,1747,satire,1241913095 +137779,1748,dystopia,1241913117 +137779,1748,surreal,1241913113 +137779,1917,archaeology,1241911605 +137779,1917,disaster,1241911617 +137779,1917,space,1241911622 +137779,1917,space program,1241911625 +137779,1961,Oscar (Best Picture),1241910066 +137779,1961,psychology,1241910063 +137779,1961,true story,1241910060 +137779,1997,based on a book,1241912773 +137779,1997,Classic,1241912778 +137779,2003,Christmas,1241913061 +137779,2012,sequel,1241911741 +137779,2028,disturbing,1241911318 +137779,2028,World War II,1241911320 +137779,2081,adapted from:book,1241912490 +137779,2081,Disney,1241912484 +137779,2081,Oscar (Best Music - Original Song),1241912481 +137779,2081,talking animals,1241912478 +137779,2291,dark comedy,1241910380 +137779,2291,Johnny Depp,1241910383 +137779,2291,surreal,1241910385 +137779,2291,Tim Burton,1241911798 +137779,2297,surreal,1241915081 +137779,2318,father-son relationship,1241915024 +137779,2318,loneliness,1241915027 +137779,2318,sexuality,1241915017 +137779,2321,satire,1241912533 +137779,2321,surreal,1241912527 +137779,2329,disturbing,1241911992 +137779,2329,prison,1241910224 +137779,2329,racism,1241910229 +137779,2335,Adam Sandler,1241914314 +137779,2336,Biography,1241913379 +137779,2396,British,1241911530 +137779,2396,Oscar (Best Picture),1241908454 +137779,2502,cult film,1241910108 +137779,2502,satire,1241910111 +137779,2571,atmospheric,1241911260 +137779,2571,dystopia,1241911253 +137779,2571,surreal,1241911255 +137779,2683,parody,1241910822 +137779,2683,spoof,1241910829 +137779,2692,nonlinear,1241910500 +137779,2692,surreal,1241910498 +137779,2700,parody,1241910273 +137779,2700,quirky,1241910271 +137779,2700,satire,1241910276 +137779,2706,Nudity (Topless - Notable),1241910678 +137779,2706,teen,1241910674 +137779,2762,Atmospheric,1241910026 +137779,2762,ghosts,1241910036 +137779,2762,psychology,1241910024 +137779,2762,twist ending,1241910029 +137779,2770,parody,1241913158 +137779,2770,Robert Downey Jr,1241913152 +137779,2770,Steve Martin,1241913155 +137779,2791,spoof,1241911953 +137779,2797,classic,1241911776 +137779,2858,dark comedy,1241911284 +137779,2890,black comedy,1241912901 +137779,2890,comedy,1241912899 +137779,2890,George Clooney,1241912906 +137779,2908,disturbing,1241910408 +137779,2908,true story,1241910406 +137779,2959,dark comedy,1241910157 +137779,2959,psychology,1241910160 +137779,2959,surreal,1241908697 +137779,2997,dark comedy,1241908797 +137779,2997,surreal,1241910425 +137779,2997,surrealism,1241910423 +137779,3081,Fantasy,1241912802 +137779,3081,gothic,1241912814 +137779,3081,Johnny Depp,1241912810 +137779,3081,Tim Burton,1241912806 +137779,3101,personality disorder,1241912931 +137779,3105,based on a book,1241910221 +137779,3105,based on a true story,1241910212 +137779,3105,Robert De Niro,1241910217 +137779,3147,prison,1241910343 +137779,3147,Stephen King,1241910348 +137779,3147,Tom Hanks,1241910350 +137779,3160,multiple storylines,1241913012 +137779,3176,based on a book,1241910019 +137779,3176,psychology,1241910016 +137779,3176,serial killer,1241910014 +137779,3408,based on a true story,1241910769 +137779,3535,psychology,1241913807 +137779,3535,serial killer,1241913805 +137779,3556,psychology,1241914283 +137779,3863,serial killer,1241913711 +137779,3863,surreal,1241913714 +137779,3882,guilty pleasure,1241914888 +137779,3897,coming of age,1241911961 +137779,3897,journalism,1241911965 +137779,3897,rock and roll,1241911969 +137779,3948,Owen Wilson,1241910582 +137779,3948,stupid,1241912448 +137779,3949,psychology,1241913248 +137779,4011,Guy Ritchie,1241910288 +137779,4011,twist ending,1241910290 +137779,4022,drama,1241912151 +137779,4022,stranded,1241912142 +137779,4022,Tom Hanks,1241912149 +137779,4023,Nicolas Cage,1241914768 +137779,4306,Based on a book,1241911468 +137779,4308,musical,1241910870 +137779,4308,stylized,1241910872 +137779,4310,History,1241913782 +137779,4361,Dustin Hoffman,1241913740 +137779,4370,dystopia,1241909983 +137779,4370,robots,1241909988 +137779,4641,bittersweet,1241914393 +137779,4641,quirky,1241914389 +137779,4874,Kevin Spacey,1241914278 +137779,4878,psychology,1241910174 +137779,4878,surreal,1241910176 +137779,4963,Brad Pitt,1241910555 +137779,4963,crime,1241910550 +137779,4963,heist,1241910553 +137779,4973,comedy,1241912046 +137779,4973,coming of age,1241912052 +137779,4973,surreal,1241912043 +137779,4979,Bill Murray,1241909750 +137779,4979,dark comedy,1241909753 +137779,4979,quirky,1241909747 +137779,4995,based on a book,1241909979 +137779,4995,psychology,1241908496 +137779,5013,atmospheric,1241914229 +137779,5013,England,1241914236 +137779,5013,satire,1241914233 +137779,5377,Quirky,1241910450 +137779,5459,conspiracy,1241910725 +137779,5502,Alien Invasion,1241910044 +137779,5528,dark,1241914926 +137779,5669,documentary,1241909856 +137779,5679,disturbing,1241910050 +137779,5679,fantasy,1241910048 +137779,5679,zombies,1241910053 +137779,5902,dark comedy,1241909830 +137779,5902,quirky,1241910684 +137779,5902,surreal,1241909838 +137779,5945,dark comedy,1241914575 +137779,5989,based on a book,1241910395 +137779,5989,Steven Spielberg,1241910392 +137779,5989,true story,1241910390 +137779,5995,historical,1241910527 +137779,5995,holocaust,1241910531 +137779,5995,Oscar (Best Actor),1241910540 +137779,5995,true story,1241909866 +137779,5995,World War II,1241909869 +137779,6218,sports,1241914059 +137779,6365,dystopia,1241910734 +137779,6502,post-apocalyptic,1241910454 +137779,6502,zombies,1241910456 +137779,6711,atmospheric,1241910322 +137779,6711,Bill Murray,1241910318 +137779,6711,Japan,1241910324 +137779,6863,Jack Black,1241910492 +137779,6874,martial arts,1241912219 +137779,6874,Quentin Tarantino,1241912221 +137779,7147,based on a book,1241910819 +137779,7147,Coen Brothers,1241910814 +137779,7147,surreal,1241910817 +137779,7361,cult film,1241910636 +137779,7361,surreal,1241910639 +137779,7438,atmospheric,1241909955 +137779,7438,Quentin Tarantino,1241909960 +137779,8376,off-beat comedy,1241914495 +137779,8376,quirky,1241914493 +137779,8464,documentary,1241910460 +137779,8784,coming of age,1241910620 +137779,8784,psychology,1241910617 +137779,8784,quirky,1241910615 +137779,8874,British,1241909777 +137779,8874,comedy,1241909768 +137779,8874,parody,1241909761 +137779,8874,zombies,1241909765 +137779,8949,dark comedy,1241910296 +137779,32587,atmospheric,1241910474 +137779,32587,multiple storylines,1241908854 +137779,32587,Quentin Tarantino,1241910472 +137779,39183,bittersweet,1241914871 +137779,44195,dark comedy,1241910258 +137779,44195,satire,1241910261 +137779,46578,dark comedy,1241910326 +137779,48516,atmospheric,1241910185 +137779,48516,Mafia,1241910183 +137779,48516,organized crime,1241910181 +137779,48780,atmospheric,1241909175 +137779,48780,based on a book,1241910507 +137779,48780,magic,1241910519 +137779,48780,twist ending,1241910503 +137779,51044,beatles,1241910959 +137779,51255,dystopia,1241909088 +137779,51255,parody,1241909091 +137779,51255,surreal,1241909914 +137779,51662,atmospheric,1241910937 +137779,51662,based on comic,1241910946 +137779,51662,stylized,1241910939 +137779,55820,coen brothers,1241908474 +137779,55820,Oscar (Best Picture),1241908471 +137779,55820,twist ending,1241908477 +137779,56174,post-apocalyptic,1241909053 +137779,56174,zombies,1241910117 +137779,56367,cult film,1241910336 +137779,58559,Batman,1241910645 +137779,58559,Christian Bale,1241910667 +137779,58559,serial killer,1241910642 +137779,60069,dystopia,1241908746 +137794,340,coming-of-age,1427749996 +137794,340,elijah wood,1427749996 +137794,340,kevin costner,1427749996 +137812,1203,group psychology,1445287230 +137851,260,classic,1433159925 +137851,260,Science Fiction,1433159916 +137885,22,thriller,1368649848 +137885,31,inspirational,1368649575 +137885,111,dark,1368649444 +137885,111,mental illness,1368649610 +137885,161,tense,1368649829 +137885,216,stupid,1368649812 +137885,440,politics,1368649794 +137885,474,tense,1368649829 +137885,519,franchise,1368649527 +137885,832,tense,1368649829 +137885,832,thriller,1368649848 +137885,913,black and white,1368649403 +137885,1089,violent,1368649864 +137885,1095,ensemble cast,1368649461 +137885,1206,violent,1368649864 +137885,1214,tense,1368649829 +137885,1248,black and white,1368649403 +137885,1262,ensemble cast,1368649461 +137885,1287,christianity,1368649424 +137885,1357,father-son relationship,1368649508 +137885,1357,mental illness,1368649610 +137885,1390,politics,1368649794 +137885,1396,ensemble cast,1368649461 +137885,1589,ensemble cast,1368649461 +137885,1597,thriller,1368649848 +137885,1610,thriller,1368649848 +137885,1950,police,1368649775 +137885,2024,christianity,1368649424 +137885,2026,high school,1368649556 +137885,2076,dark,1368649444 +137885,2082,inspirational,1368649575 +137885,2335,stupid,1368649812 +137885,2353,thriller,1368649848 +137885,2383,police,1368649775 +137885,2490,violent,1368649864 +137885,2500,high school,1368649556 +137885,2882,nazis,1368649656 +137885,2919,politics,1368649794 +137885,2944,ensemble cast,1368649461 +137885,2959,violent,1368649864 +137885,2985,violent,1368649864 +137885,3044,mystery,1368649639 +137885,3146,stupid,1368649812 +137885,3256,tense,1368649829 +137885,3256,thriller,1368649848 +137885,3273,franchise,1368649527 +137885,3435,black and white,1368649403 +137885,3519,nazis,1368649656 +137885,3683,dark,1368649444 +137885,3980,inspirational,1368649575 +137885,4019,inspirational,1368649575 +137885,4865,dark,1368649444 +137885,4865,mystery,1368649639 +137885,5107,nazis,1368649656 +137885,5785,stupid,1368649812 +137885,6537,franchise,1368649527 +137885,6808,nazis,1368649656 +137885,7153,oscar (best cinematography),1368649712 +137885,33660,inspirational,1368649575 +137885,48304,deus ex machina,1192887554 +137885,53121,franchise,1368649527 +137885,55290,police,1368649775 +137885,59429,nudity (topless - notable),1368649699 +137885,63113,franchise,1368649526 +137885,64622,nazis,1368649656 +137885,74458,mystery,1368649639 +137887,50,commedy,1430283282 +137887,50,conspiracy,1430284216 +137887,50,great acting,1430284223 +137887,50,Kevin Spacey,1430284203 +137887,50,twist ending,1430283273 +137887,104374,drama,1430283714 +137887,104374,fiction,1430283714 +137887,104374,romance,1430283714 +137931,318,inspirational,1264212472 +137931,318,reflective,1264212483 +137931,318,thought-provoking,1264212489 +137931,318,twist ending,1264212468 +137931,628,thought-provoking,1271544488 +137931,628,twist ending,1271544468 +137931,2058,hostages,1263946790 +137931,2058,Psychological,1263946793 +137931,4975,mindfuck,1263946954 +137931,4975,surreal,1263946957 +137931,5108,Denzel Washington,1263838754 +137931,5108,hostages,1263946835 +137931,5108,overdramatic,1263838760 +137931,6016,based on a true story,1263838932 +137931,6016,Brazil,1263838885 +137931,6016,crime,1263838908 +137931,6016,documentary,1263838902 +137931,6016,true story,1263838918 +137931,6016,violence,1263838892 +137931,7090,Action,1263839069 +137931,7090,amazing photography,1263839097 +137931,7090,Beautiful,1263839072 +137931,7090,Epic,1263839079 +137931,7090,Jet Li,1263839041 +137931,7090,kung fu,1263839058 +137931,7090,martial arts,1263839056 +137931,7090,violence,1263839051 +137931,7090,visually appealing,1263839085 +137931,8665,espionage,1263838870 +137931,8665,fugitive,1263838860 +137931,8665,spy,1263838850 +137931,44665,twist ending,1271544460 +137931,46322,1900s,1263839018 +137931,46322,19th century,1263839013 +137931,46322,Jet Li,1263839008 +137931,46322,Martial Arts,1263838976 +137931,46322,redemption,1263838983 +137931,58559,action,1263838805 +137931,58559,Heath Ledger,1263838786 +137931,58559,violence,1263838795 +137931,58559,violent,1263838797 +137931,68358,action,1263831891 +137931,68358,adventure,1263831893 +137931,68358,revenge,1263831885 +137931,68358,sci-fi,1263831872 +137931,68358,time travel,1263831877 +137931,72171,Michael Jai White,1267946358 +137931,72171,theme music,1267946360 +137931,73874,fighting,1264300801 +137931,73874,Kimbo Slice,1264300797 +137931,73874,Michael Jai White,1264300795 +137931,73876,Isaac Florentine,1267946418 +137931,73876,Michael Jai White,1267946330 +137931,73876,Scott Adkins,1267946333 +137943,59810,TV movie,1442809975 +137943,132456,Gandhi,1442810423 +137956,25,haunting,1342620480 +137956,47,great ending,1373924496 +137956,50,great acting,1373924394 +137956,70,cult classic,1373924427 +137956,150,dramatic,1373923860 +137956,204,action,1373923915 +137956,296,storytelling,1373923713 +137956,318,great acting,1373924394 +137956,455,family,1373924475 +137956,593,great acting,1373924394 +137956,858,great acting,1373924394 +137956,858,oscar (best directing),1373923820 +137956,1015,family,1373924475 +137956,1466,mentor,1373923660 +137956,1527,visually appealing,1373924380 +137956,1552,action,1373923915 +137956,1608,action,1373923915 +137956,1617,great acting,1373924394 +137956,1623,horror,1373924452 +137956,1704,mentor,1373923660 +137956,1991,horror,1373924452 +137956,2167,action,1373923915 +137956,2291,original,1373923631 +137956,2335,comedy,1373923688 +137956,2371,comedy,1373923688 +137956,2420,mentor,1373923660 +137956,2762,great ending,1373924496 +137956,2858,great acting,1373924394 +137956,3157,family,1373924475 +137956,3421,comedy,1373923688 +137956,3740,cult classic,1373924427 +137956,3949,oscar (best directing),1373923820 +137956,3994,storytelling,1373923713 +137956,4878,original,1373923631 +137956,5452,family,1373924475 +137956,5878,loneliness,1373923776 +137956,6188,comedy,1373923688 +137956,8622,social commentary,1339021802 +137956,8641,comedy,1373923688 +137956,32587,storytelling,1373923713 +137956,37386,presumptuousness,1342618678 +137956,37386,story,1342618629 +137956,51935,preachy,1342621756 +137956,60684,visually appealing,1373924380 +137956,79132,cerebral,1373924576 +137963,296,neo-noir,1429486980 +137963,296,nonlinear,1429486980 +137963,296,violence,1429486980 +137963,55908,Bad acting,1429486940 +138018,109374,quirky,1437341069 +138018,119141,juvenile,1437340968 +138047,50068,Potential Oscar Nom,1170517856 +138058,296,classic,1434153098 +138058,296,dark comedy,1434153098 +138058,296,intense,1434153098 +138058,318,dramatic,1433114796 +138058,318,heart-wrenching,1433114796 +138058,318,thought-provoking,1433114796 +138058,2208,Surprising,1433623015 +138058,2208,Suspenseful,1433623000 +138060,593,great acting,1435523900 +138060,593,influential,1435523900 +138060,593,maniac,1435523900 +138060,99114,19th century,1435605224 +138060,99114,Over the top,1435605227 +138060,99114,violence,1435605229 +138060,99114,visually appealing,1435605233 +138060,134853,Pixar,1435523852 +138089,94,friendship relations,1245802043 +138089,94,Natalie Portman,1245802040 +138089,94,Uma Thurman,1245802050 +138089,46976,Maggie Gyllenhaal,1263246440 +138089,46976,narrated,1263246463 +138089,46976,surreal,1263246473 +138089,53769,funny,1263246496 +138089,53769,loneliness,1263246498 +138089,53769,realistic,1263246500 +138100,858,cinematography,1302122952 +138100,7458,historical epic,1302122921 +138112,47610,historical film,1450557215 +138112,63113,lovestory,1449417952 +138135,147,Leonardo DiCaprio,1252215619 +138135,8575,Audrey Tautou,1252215270 +138135,8575,French,1252215277 +138135,69757,Matthew Gray Gubler,1252215224 +138135,69757,Zooey Deschanel,1252215146 +138150,261,litterature adaptation,1187627159 +138150,1597,thiller,1187627100 +138150,1729,gangsters,1187627121 +138150,2947,action,1187627108 +138150,4246,Comedy,1187627083 +138150,7438,action,1187627127 +138185,68073,uninteresting,1329413961 +138207,1,great movie,1436915031 +138207,260,great photography,1436807174 +138207,260,great visual effects,1436807111 +138207,2340,very touching,1436915141 +138222,356,bittersweet,1451272224 +138222,356,comedy,1451272220 +138222,356,drama,1451272213 +138222,356,inspirational,1451272230 +138222,356,romance,1451272217 +138222,356,touching,1451272209 +138227,527,jews,1428357469 +138227,527,sad but good,1428357469 +138227,527,world war ii,1428357469 +138270,2762,twist ending,1450644185 +138270,3535,Christian Bale,1450644655 +138277,1235,dark comedy,1259460899 +138277,1235,humorous,1259460915 +138277,1235,must see,1259460925 +138277,1235,suicide,1259460920 +138277,4873,bad science,1259460825 +138277,4873,metaphysics,1259460840 +138277,4873,quirky,1259460846 +138277,4973,beautifully filmed,1259460966 +138277,4973,quirky,1259460958 +138277,4973,whimsical,1259460970 +138320,253,vampires,1291946933 +138320,724,magic,1291947194 +138320,1222,military,1291946690 +138320,1409,angel,1291947768 +138320,2541,high school,1291947783 +138320,3264,dark comedy,1291946886 +138320,3264,vampires,1291946883 +138320,3793,sci-fi,1291946244 +138320,4128,vampires,1291946948 +138320,4367,action,1291947771 +138320,4896,fantasy,1291948348 +138320,4896,magic,1291948344 +138320,5128,Vampires,1291946233 +138320,8972,action,1291947297 +138320,27251,fantasy,1291946193 +138320,56174,post-apocalyptic,1291947019 +138320,56174,sci-fi,1291947015 +138320,56715,dark comedy,1291946442 +138320,58103,assassin,1291947222 +138320,58103,multiple storylines,1291947225 +138320,60072,assassin,1291946240 +138320,63992,based on a book,1291946822 +138320,63992,vampires,1291946819 +138320,65685,fantasy world,1291946219 +138320,66171,psychic powers,1291946283 +138320,66171,twisted ending,1291946287 +138320,72165,vampires,1291946838 +138320,73268,vampires,1291946146 +138320,73929,fantasy,1291946544 +138320,74530,action,1291946228 +138320,74530,fantasy,1291946223 +138320,79695,action,1291946213 +138354,260,Science Fiction,1442654174 +138354,260,space action,1442654192 +138354,79132,clever,1442654386 +138354,79132,intellectual,1442654390 +138354,79132,mindfuck,1442654395 +138377,1196,empire,1449416121 +138377,1200,scary,1449416142 +138381,367,jim carrey,1157829480 +138381,3785,stupid,1157829440 +138381,5816,fantasy,1157829453 +138425,260,Galaxy,1439157471 +138425,260,universe,1439157498 +138456,1653,atmospheric,1447333723 +138456,1653,dystopia,1447333712 +138456,1653,powerful ending,1447333725 +138456,1653,sci-fi,1447333739 +138456,68954,adventure,1447333460 +138456,68954,dreams,1447333480 +138456,68954,feel good movie,1447333470 +138456,68954,heartbreaking,1447333478 +138456,68954,storytelling,1447333465 +138457,541,atmospheric,1280600956 +138457,541,stylized,1280600976 +138457,1748,atmospheric,1280600888 +138457,1748,stylized,1280600905 +138457,1748,surreal,1280600903 +138457,2502,off-beat comedy,1280601349 +138475,296,multiple storylines,1427456721 +138475,296,psychological,1427456721 +138475,296,thugs,1427456721 +138482,260,classic sci-fi,1439156467 +138482,260,space adventure,1439156484 +138504,63859,Below R,1241399334 +138504,63859,cats and dogs,1241399336 +138504,63859,comic sidekick,1241399354 +138504,63859,John Travolta,1241399353 +138504,63859,pigeons,1241399367 +138504,63859,Stereoscopic 3-D,1241399349 +138504,63859,superhero,1241399377 +138504,67408,3D,1241399290 +138504,67408,alien invasion,1241399308 +138504,67408,all the best parts are in the trailer,1241399283 +138504,67408,animation,1241399300 +138504,67408,computer animation,1241399303 +138504,67408,Hugh Laurie,1241399249 +138504,67408,Kiefer Sutherland,1241399277 +138504,67408,Seth Rogen,1241399271 +138508,2406,chick flick,1143601029 +138508,4464,great,1143601157 +138525,2529,damn dirty apes,1159237404 +138525,2529,dystopia,1159237398 +138530,2571,sci-fi,1190093501 +138536,541,androids,1425919965 +138536,541,artificial intelligence,1425919903 +138536,541,atmospheric,1425919897 +138536,541,classic,1425919919 +138536,541,cult film,1425919915 +138536,541,cyberpunk,1425919888 +138536,541,dreamlike,1425919910 +138536,541,dystopia,1425919891 +138536,541,existentialism,1425919908 +138536,541,Harrison Ford,1425919895 +138536,541,Philip K. Dick,1425919893 +138536,541,philosophical,1425919968 +138536,541,sci-fi,1425919890 +138536,541,stylized,1425919899 +138536,729,brothers quay,1425920427 +138536,729,dreamlike,1425920475 +138536,729,enigmatic,1452359070 +138536,729,existentialism,1425920478 +138536,729,hallucinatory,1425920477 +138536,729,surreal,1425920484 +138536,729,symbolism,1425920482 +138536,729,weird,1425920480 +138536,924,artificial intelligence,1425919807 +138536,924,atmospheric,1425919812 +138536,924,cinematography,1425919840 +138536,924,classic,1425919824 +138536,924,cult film,1425919827 +138536,924,masterpiece,1425919817 +138536,924,meditative,1425919837 +138536,924,music,1425919830 +138536,924,philosophical,1425919821 +138536,924,sci-fi,1425919805 +138536,924,space,1425919810 +138536,924,Stanley Kubrick,1425919814 +138536,1101,so bad it's good,1425919148 +138536,1173,black comedy,1441231922 +138536,1173,dark comedy,1441231923 +138536,1173,lavish,1441231930 +138536,1173,theatrical,1441231948 +138536,1217,Akira Kurosawa,1425919460 +138536,1217,atmospheric,1425919462 +138536,1217,Criterion,1425919469 +138536,1217,Japan,1425919478 +138536,1217,lyrical,1425919484 +138536,1217,samurai,1425919465 +138536,1217,shakespeare,1425919466 +138536,1237,dreamlike,1452360612 +138536,1273,atmospheric,1453936547 +138536,1273,deadpan,1453936538 +138536,1273,feel-good,1453936543 +138536,1924,cult film,1425919116 +138536,1924,so bad it's funny,1425919110 +138536,1924,so bad it's good,1425919096 +138536,2010,classic,1425919998 +138536,2010,Fritz Lang,1425920016 +138536,2010,german expressionism,1425919996 +138536,2010,industrial progress,1425920008 +138536,2010,masterpiece,1425920005 +138536,2010,science fiction,1425920014 +138536,2010,visionary,1425920010 +138536,2019,action,1425919581 +138536,2019,Akira Kurosawa,1425919547 +138536,2019,atmospheric,1425919551 +138536,2019,classic,1425919556 +138536,2019,Criterion,1425919563 +138536,2019,epic,1425919554 +138536,2019,Japan,1425919553 +138536,2019,Kurosawa,1425919566 +138536,2019,masterpiece,1425919572 +138536,2019,samurai,1425919549 +138536,2019,stylized,1425919560 +138536,2019,Takashi Shimura,1425919576 +138536,2019,toshiro mifune,1425919569 +138536,2495,atmospheric,1425919395 +138536,2495,Avant Garde,1425919391 +138536,2495,Dreamlike,1425919387 +138536,2495,psychedelic,1425919393 +138536,2495,Social Commentary,1425919402 +138536,2495,Surreal,1425919385 +138536,2495,surrealism,1425919397 +138536,2495,Trippy,1425919390 +138536,2495,Visual Hallucination,1425919400 +138536,3000,atmospheric,1425921318 +138536,3000,fantasy world,1425921317 +138536,3000,great soundtrack,1425921384 +138536,3000,Hayao Miyazaki,1425921314 +138536,3000,Studio Ghibli,1425921313 +138536,3030,Akira Kurosawa,1425919493 +138536,3030,atmospheric,1425919503 +138536,3030,Japan,1425919708 +138536,3030,lone wolf,1425919694 +138536,3030,samurai,1425919495 +138536,3030,sword fighting,1425919704 +138536,3030,Toshiro Mifune,1425919497 +138536,3415,dreamlike,1452359032 +138536,3415,enigmatic,1452359038 +138536,3415,lyrical,1452359045 +138536,3415,meditative,1452359029 +138536,3415,reflective,1452359044 +138536,3415,visually stunning,1452359035 +138536,3503,alien contact,1425919764 +138536,3503,atmospheric,1425919747 +138536,3503,cinematography,1425919855 +138536,3503,dreamlike,1425919749 +138536,3503,enigmatic,1425919759 +138536,3503,existentialism,1425919945 +138536,3503,meditative,1425919757 +138536,3503,psychological,1425919761 +138536,3503,Russian,1425919755 +138536,3503,sci-fi,1425919798 +138536,3503,space,1425919752 +138536,3676,Atmospheric,1425920396 +138536,3676,creepy,1425920403 +138536,3676,cult film,1425920401 +138536,3676,David Lynch,1425920395 +138536,3676,disturbing,1425920398 +138536,3676,dreamlike,1425920400 +138536,3676,hallucinatory,1425920407 +138536,3676,ominous,1425920405 +138536,3676,surreal,1425920393 +138536,4552,cult film,1425920367 +138536,4552,hallucinatory,1425920371 +138536,4552,low-budget,1425920384 +138536,4552,weird,1425920369 +138536,4914,Criterion,1425920678 +138536,4914,French New Wave,1425920673 +138536,4914,Jean-Luc Godard,1425920671 +138536,4914,quirky,1425920675 +138536,5291,Akira Kurosawa,1425919429 +138536,5291,Criterion,1425919436 +138536,5291,enigmatic,1425919433 +138536,5291,masterpiece,1425919423 +138536,5291,multiple storylines,1425919444 +138536,5291,nonlinear,1425919448 +138536,5291,samurai,1425919431 +138536,5291,Toshiro Mifune,1425919525 +138536,5618,adventure,1425922226 +138536,5618,alternate reality,1425922217 +138536,5618,atmospheric,1425922219 +138536,5618,beautiful,1425922235 +138536,5618,coming of age,1425922252 +138536,5618,dreamlike,1425922212 +138536,5618,fantasy,1425922215 +138536,5618,Hayao Miyazaki,1425922209 +138536,5618,Oscar (Best Animated Feature),1425922231 +138536,5618,Studio Ghibli,1425922207 +138536,5939,so bad it's good,1438017794 +138536,5971,feel good movie,1425921353 +138536,5971,feel-good,1425921358 +138536,5971,great soundtrack,1425921376 +138536,5971,Hayao Miyazaki,1425921345 +138536,5971,Studio Ghibli,1425921342 +138536,5971,visually appealing,1425921348 +138536,6123,dream-like,1453885337 +138536,6123,essay film,1453885318 +138536,6643,Classic,1425922483 +138536,6643,Criterion,1425922473 +138536,6643,family,1425922598 +138536,6643,family relationships,1425922600 +138536,6643,masterpiece,1425922488 +138536,6643,sightsound,1425922520 +138536,6643,social commentary,1425922504 +138536,6643,Yasujiro Ozu,1425922471 +138536,6985,Criterion,1425919294 +138536,6985,masterpiece,1425919312 +138536,7136,Criterion,1425920630 +138536,7136,Francois Truffaut,1425920639 +138536,7136,French New Wave,1425920654 +138536,7361,bittersweet,1425921014 +138536,7361,cult film,1425921029 +138536,7361,dreamlike,1425921031 +138536,7361,imagination,1425921024 +138536,7361,memory,1425921017 +138536,7361,quirky,1425921019 +138536,7361,sci-fi,1425921027 +138536,7361,surreal,1425921009 +138536,7361,thought-provoking,1425921011 +138536,7938,thought-provoking,1452360595 +138536,8199,Criterion,1425919363 +138536,8199,Kenji Mizoguchi,1425919361 +138536,8199,masterpiece,1425919365 +138536,8361,apocalypse,1425918908 +138536,8361,unrealistic,1425918886 +138536,8914,cerebral,1425920884 +138536,8914,complicated plot,1425920867 +138536,8914,cult film,1425920908 +138536,8914,dialogue driven,1425920881 +138536,8914,low budget,1425920870 +138536,8914,mindfuck,1425920865 +138536,8914,physics,1425920877 +138536,8914,Sci-Fi,1425920872 +138536,8914,thought-provoking,1425920874 +138536,8914,time travel,1425920863 +138536,26055,classic,1425922641 +138536,26055,Criterion,1425922639 +138536,26258,Alejandro Jodorowsky,1425920226 +138536,26258,atmospheric,1425920228 +138536,26258,cult film,1425920234 +138536,26258,disturbing,1425920230 +138536,26258,hallucinatory,1425920236 +138536,26258,surreal,1425920232 +138536,26326,Alejandro Jodorowsky,1425920287 +138536,26326,cult film,1425920305 +138536,26326,dreamlike,1453037973 +138536,26326,hallucinatory,1425920289 +138536,26326,Jodorowsky,1425920283 +138536,26326,psychedelic,1425920290 +138536,26326,social criticism,1425920285 +138536,26326,surreal,1425920274 +138536,26326,symbolism,1425920276 +138536,26326,weird,1425920281 +138536,26587,thought-provoking,1452360574 +138536,30803,existentialism,1452359746 +138536,30803,magical realism,1452359707 +138536,30803,very little dialogue,1452359720 +138536,42217,classic,1425922570 +138536,42217,Criterion,1425922572 +138536,42217,family,1425922566 +138536,42217,family relationships,1425922586 +138536,42217,masterpiece,1425922568 +138536,42217,social commentary,1425922564 +138536,50641,dreamlike,1438019646 +138536,50641,haunted house,1438019653 +138536,50641,psychedelic,1438019648 +138536,50641,strangely compelling,1438019644 +138536,50641,surreal,1438019650 +138536,50641,weird,1438019651 +138536,56372,Bleak,1450138885 +138536,57069,drama,1422579796 +138536,57069,family,1422579796 +138536,57069,japanese,1422579796 +138536,62331,brain-melting,1438020140 +138536,62331,mindfuck,1438020093 +138536,62331,psychedelic,1438020100 +138536,63676,japanese,1452360998 +138536,63676,new wave,1452360987 +138536,70946,so bad it's good,1438019100 +138536,72142,coming-of-age,1452359618 +138536,72142,crazy,1452359625 +138536,72142,dreamlike,1452359681 +138536,72142,existentialism,1452359670 +138536,72142,religion,1452359632 +138536,74754,absurd,1425918985 +138536,74754,cult film,1425918972 +138536,74754,nonsensical,1425918989 +138536,74754,so bad it's good,1425918949 +138536,74754,terrible acting,1425918967 +138536,74754,unintentional comedy,1425918953 +138536,74754,unintentionally funny,1425918962 +138536,78836,afterlife,1438131329 +138536,78836,camerawork,1438131303 +138536,78836,drugs,1438131313 +138536,78836,ghosts/afterlife,1438131323 +138536,78836,nihilistic,1438131416 +138536,78836,psychedelic,1438131295 +138536,78836,too long,1438131539 +138536,79132,big budget,1425923492 +138536,79132,Boring after 2/3,1425923500 +138536,79132,confusing plot,1425923582 +138536,79132,heist,1425923548 +138536,79132,inconsistencies,1425923511 +138536,79132,Intense,1425923559 +138536,79132,long,1425923485 +138536,79132,nonsensical,1425923521 +138536,79132,too long,1425923528 +138536,79132,too much explaining,1425923530 +138536,91529,audience intelligence underestimated,1425923298 +138536,91529,bad morals,1425923410 +138536,91529,bad science,1425923394 +138536,91529,bad script,1425923390 +138536,91529,based on a comic,1425923425 +138536,91529,bizarre,1425923339 +138536,91529,cheesy,1425923414 +138536,91529,convoluted,1425923317 +138536,91529,dark,1425923269 +138536,91529,dark hero,1425923357 +138536,91529,hard to hear lines,1425923326 +138536,91529,intense,1425923274 +138536,91529,long,1425923329 +138536,91529,non comprehensive characters,1425923311 +138536,91529,overrated,1425923290 +138536,91529,plot holes,1425923360 +138536,91529,political commentary,1425923277 +138536,91529,poor plot,1425923382 +138536,91529,pretentious,1425923367 +138536,91529,unsatisfying ending,1425923281 +138536,94959,cinematography,1425920783 +138536,94959,coming of age,1425920786 +138536,94959,dreamlike,1425920793 +138536,94959,funny,1425920790 +138536,94959,quirky,1425920771 +138536,94959,stylized,1425920773 +138536,94959,surreal,1425920780 +138536,94959,Wes Anderson,1425920769 +138536,98061,coming of age,1435662498 +138536,98061,japanese,1435662498 +138536,98061,melodrama,1435662498 +138536,98607,crazy,1452359932 +138536,98607,kaleidoscopic,1452359946 +138536,99917,artistic,1425920943 +138536,99917,Beautiful,1425920947 +138536,99917,emotionally captivating,1425920991 +138536,99917,existentialism,1425920958 +138536,99917,music,1425920982 +138536,99917,sci-fi,1425920945 +138536,103813,so bad it's good,1438017817 +138536,106920,artificial intelligence,1425922695 +138536,106920,beautiful,1425922727 +138536,106920,bittersweet,1425922701 +138536,106920,Human Computer Interaction,1425922715 +138536,106920,philosophical,1425922705 +138536,106920,psychology,1425922707 +138536,106920,sci-fi,1425922709 +138536,106920,thought-provoking,1425922697 +138536,106920,transhumanism,1425922722 +138536,108579,absurd,1425919037 +138536,108579,bad acting,1425919007 +138536,108579,horrible acting,1425918107 +138536,108579,just horrible,1425919050 +138536,108579,non-sensical,1425919036 +138536,108579,so bad it's good,1425919020 +138536,108579,worst movie ever!,1425918107 +138536,109374,cinematography,1425920742 +138536,109374,quirky,1425920752 +138536,109374,stylized,1425920747 +138536,109374,visually appealing,1425920740 +138536,109374,Wes Anderson,1425920744 +138536,109487,ambitious,1425923114 +138536,109487,bad dialogue,1425923093 +138536,109487,bad science,1425923168 +138536,109487,corny,1425923076 +138536,109487,long,1425923233 +138536,109487,plot holes,1425923155 +138536,109487,relativity,1425923110 +138536,109487,sci-fi,1425923047 +138536,109487,Self-Indulgent,1425923159 +138536,109487,sentimental,1425923062 +138536,109487,space,1425923051 +138536,109487,time travel,1425923101 +138536,109487,time-travel,1425923105 +138536,109487,wasted potential,1425923187 +138536,109487,wormhole,1425923108 +138536,109968,japan,1452360153 +138536,109968,pop culture,1452360148 +138536,109968,samurai,1452360111 +138536,109968,Shion Sono,1452360155 +138536,114066,biopic,1425920594 +138536,114066,musicians,1425920581 +138536,115180,François Truffaut,1425920698 +138536,115180,French New Wave,1425920706 +138536,115180,Quirky,1425920712 +138536,115180,romance,1438016700 +138536,115180,short films,1438016700 +138536,118466,anime,1438019987 +138536,118466,documentary,1438019979 +138536,118466,Studio Ghibli,1438019982 +138536,126929,french,1445379893 +138536,126929,screwball,1445379889 +138536,134853,Animation,1441231674 +138536,134853,childhood,1441231652 +138536,134853,coming of age,1441231642 +138536,134853,emotions,1441231657 +138536,134853,introspective,1441231663 +138536,134853,Pixar,1441231650 +138536,134853,psychology,1441231648 +138536,135846,Screwball,1452359986 +138536,138632,comedy,1452359560 +138536,138632,comic adaption,1452360453 +138536,138632,crazy,1452360040 +138536,138632,kaleidoscopic,1452360030 +138536,138632,manga,1452360034 +138536,138632,manga adaption,1452360445 +138536,138632,rap,1452359557 +138536,138632,screwball,1452360019 +138536,138632,surreal,1452359337 +138536,138632,weird,1452359556 +138536,138632,yakuza,1452360056 +138536,142861,magical realism,1449963281 +138536,150395,japanese,1452354979 +138536,150395,manga,1452354961 +138536,150852,psychological horror,1453028383 +138548,4226,complicated,1442079604 +138548,4226,nonlinear,1442079591 +138548,79132,intellectual,1442079571 +138548,79132,thought-provoking,1442079564 +138567,1244,comedy,1187693062 +138567,1244,relationships,1187693062 +138567,1267,cold war,1187693019 +138567,1267,political,1187693019 +138567,1267,thriller,1187693019 +138567,1438,volcano,1187693190 +138567,1953,car chase,1187693038 +138567,1953,cop,1187693038 +138567,1953,gritty,1187693038 +138567,3617,snake,1187693178 +138567,3617,teen movie,1187693178 +138567,3755,disaster,1187693021 +138567,3755,weather,1187693021 +138567,3916,american football,1187693167 +138567,3916,racism,1187693167 +138567,4262,corruption,1187693137 +138567,4262,drugs,1187693137 +138567,4262,guns,1187693137 +138567,6378,heist,1187693127 +138567,6378,remake,1187693127 +138567,6934,sci-fi,1187693080 +138567,6934,sequel,1187693080 +138567,7147,fantasy,1187693104 +138567,7147,giant,1187693105 +138567,7147,imagination,1187693105 +138590,110,Mel Gibson,1158375721 +138590,110,overrated,1158375723 +138590,778,drugs,1158453939 +138590,2353,exciting,1158375088 +138590,2353,Will Smith,1158375086 +138590,3949,depressing,1158464693 +138590,3949,drugs,1158464692 +138590,4034,drugs,1158375076 +138590,33794,ninja,1158375843 +138598,114246,anti-hero,1430449909 +138598,114246,bleak,1430449909 +138598,114246,redemption,1430449909 +138617,914,audrey hepburn,1139682871 +138617,914,classic,1139682871 +138617,914,family,1139682871 +138617,953,best holocaust movie ever,1139682926 +138617,953,made me cry,1139682926 +138617,1035,classic,1139682899 +138617,1035,family,1139682899 +138617,1035,julie andrews,1139682899 +138617,1380,classic,1139682255 +138617,1380,family,1139682256 +138617,1380,girlie movie,1139682253 +138617,1380,john travolta,1139682249 +138617,1500,assassin,1139682376 +138617,1500,classic,1139682376 +138617,1500,college reunion,1139682376 +138617,1625,action,1139682192 +138617,1625,seen it 5 times; twist at end; awesome,1139682130 +138617,2353,exciting,1139682186 +138617,2502,hilarious,1139682294 +138617,3052,alanis morisette as God,1139682347 +138617,3052,amusing,1139682347 +138617,3052,offensive,1139682316 +138617,26662,anime,1139683080 +138617,26662,Miyazaki,1139683080 +138617,42011,comedic,1139683054 +138617,42011,jim carey,1139683054 +138625,260,Boring,1436123024 +138625,260,fantasy action,1436123014 +138631,32721,war,1437409230 +138631,134853,creative,1437408935 +138658,419,Predictable and unoriginal.,1299854684 +138658,419,sophmoric humor,1299854684 +138705,48385,social commentary,1442035617 +138705,106062,hidden camera,1442035575 +138705,115713,AI,1442035316 +138705,115713,artificial intelligence,1442035301 +138705,115713,consciousness,1442035396 +138705,115713,Contemplative,1442035429 +138705,115713,futuristic,1442035326 +138705,115713,Manipulations,1442035411 +138705,115713,Mind Bending,1442035418 +138705,115713,Nudity,1442035400 +138705,115713,Nudity (Full Frontal - Notable),1442035424 +138705,115713,nudity (full frontal),1442035349 +138705,115713,philosophical,1442035335 +138705,115713,Psychological,1442035387 +138705,115713,robots,1442035366 +138705,115713,sci-fi,1442035364 +138705,115713,technology,1442035368 +138705,115713,thought provoking,1442035310 +138705,115713,turing test,1442035391 +138706,318,friendship,1430083351 +138706,318,meaning of life,1430083351 +138706,318,prison,1430083351 +138706,593,cannibalism,1429032804 +138706,593,crime,1429032804 +138706,593,suspense,1429032804 +138715,1259,extraordinary!!!,1140471875 +138715,31923,classic,1140472214 +138715,34405,aningen corny. star wars wannabe. men bra.,1140471706 +138715,41997,spielberg... *suck*,1140471795 +138715,50872,pixar,1190928859 +138737,40815,best of the series so far,1140378239 +138749,260,#nice,1438262497 +138749,260,EPIC,1438262504 +138778,260,futuristic,1441513722 +138778,260,sci-fi,1441513707 +138787,34437,Disappointing from two geniuses,1144691033 +138807,1222,drill instructor,1439156984 +138807,1222,marines,1439156967 +138822,260,sci-fi,1443140202 +138822,260,Star Wars,1443140206 +138831,112550,Hungarian,1428431853 +138842,508,tom hanks,1147446697 +138856,59715,remake,1228932792 +138886,260,sci-fi,1443071278 +138886,260,space action,1443071295 +138925,1882,Jean Reno,1410288430 +138925,1882,monster:giant lizard,1410288427 +138925,1882,Roland Emmerich,1410288425 +138925,112290,Lorelei Linklater,1415954348 +138925,112290,Partricia Arquette,1415954350 +138925,112290,realism,1415954345 +138925,112290,Richard Linklater,1415954362 +138975,2232,foreign,1137205464 +138975,2232,non-us,1137205464 +138975,2232,weird,1137205464 +138975,2571,braininavat,1137205467 +138975,2571,philosophy,1137205467 +138975,30810,commedy,1139041206 +138975,30810,dark,1139041206 +138975,30810,weird,1139041206 +138980,32,Bruce Willis,1240957434 +138980,32,Post apocalyptic,1240957436 +138980,32,time travel,1166050100 +138980,32,twist ending,1240957444 +138980,260,Harrison Ford,1241082838 +138980,541,cyberpunk,1240957340 +138980,541,cyborgs,1240957352 +138980,541,Philip K. Dick,1240957343 +138980,1089,nonlinear,1241082992 +138980,1089,Quentin Tarantino,1241082990 +138980,1193,Jack Nicholson,1241083068 +138980,1193,mental illness,1241083071 +138980,1196,fantasy,1267121595 +138980,1196,Harrison Ford,1241082834 +138980,1196,sci-fi,1267121589 +138980,1196,space,1267121592 +138980,1198,Harrison Ford,1240957104 +138980,1198,indiana jones,1240957109 +138980,1199,dark comedy,1240957334 +138980,1199,dreamlike,1240957329 +138980,1199,Robert De Niro,1240957327 +138980,1199,surreal,1240957325 +138980,1199,Terry Gilliam,1240957324 +138980,1200,androids,1240957400 +138980,1200,James Cameron,1240957393 +138980,1210,Harrison Ford,1241082810 +138980,1240,Arnold Schwarzenegger,1240957005 +138980,1240,cyborgs,1240957016 +138980,1240,sci-fi,1240957011 +138980,1258,Jack Nicholson,1240957075 +138980,1258,Stanley Kubrick,1240957073 +138980,1274,comic book,1240957422 +138980,1274,PSYCHIC ABILITIES,1240957419 +138980,1291,Harrison Ford,1240957235 +138980,1291,indiana jones,1240957241 +138980,1291,Sean Connery,1240957238 +138980,1347,Freddy Crueger,1241083100 +138980,1347,Johnny Depp,1241083097 +138980,1347,Wes Craven,1241083104 +138980,1732,Coen Brothers,1240957365 +138980,1748,dark fantasy,1240957311 +138980,1748,dreamlike,1240957313 +138980,1748,dystopia,1240957298 +138980,1748,mindfuck,1240957300 +138980,1748,Post apocalyptic,1240957305 +138980,1748,steampunk,1240957302 +138980,1748,surreal,1240957308 +138980,2105,cyberpunk,1241082743 +138980,2105,virtual reality,1241082746 +138980,2467,author:Umberto Eco,1240957129 +138980,2467,Eco,1240957131 +138980,2467,Sean Connery,1240957123 +138980,2571,Keanu Reeves,1240957172 +138980,2571,post apocalyptic,1240957182 +138980,2571,sci-fi,1240957178 +138980,2571,virtual reality,1240957175 +138980,2916,author:Philip K. Dick,1240956953 +138980,2916,dystopia,1240956959 +138980,2916,Philip K. Dick,1240956965 +138980,2916,virtual reality,1240956969 +138980,2985,cyborgs,1241082979 +138980,2985,Paul Verhoeven,1241082981 +138980,3081,Johnny Depp,1241082921 +138980,3081,Tim Burton,1241082917 +138980,4226,dreamlike,1240957161 +138980,4226,memory,1240957155 +138980,4226,Mindfuck,1240957164 +138980,4226,mystery,1166050137 +138980,4226,nonlinear,1240957156 +138980,4226,twist ending,1240957153 +138980,4306,Eddie Murphy,1241082936 +138980,4973,feel-good,1240957388 +138980,4973,surreal,1240957384 +138980,4993,high fantasy,1240957206 +138980,4993,Peter Jackson,1240957192 +138980,5618,anime,1166050121 +138980,5618,Studio Ghibli,1240957049 +138980,5881,George Clooney,1241082846 +138980,5881,Steven Soderbergh,1241082849 +138980,6753,Michael Caine,1241082945 +138980,7099,dystopic future,1241083117 +138980,7099,Studio Ghibli,1241083118 +138980,7361,Charlie Kaufman,1240957264 +138980,7361,Jim Carrey,1240957267 +138980,7361,nonlinear,1240957274 +138980,7361,surreal,1240957273 +138980,30810,Bill Murray,1240957230 +138980,30810,Owen Wilson,1240957226 +138980,30810,Wes Anderson,1240957228 +138980,36363,sci-fi,1258485076 +138980,36535,beautiful scenery,1240957251 +138980,48394,fairy tale,1241083062 +138980,48394,surreal,1241083056 +138980,48820,franka potente,1423064696 +138980,48820,german,1423064696 +138980,48820,suburbia,1423064696 +138980,57502,anime,1258484951 +138980,57502,based on comic,1258484954 +138980,57502,based on manga,1258484970 +138980,57502,comic book,1258484988 +138980,57502,psychedelic,1258484973 +138980,57502,surreal,1258484982 +138980,71156,Ewan McGregor,1268326593 +138980,71156,George Clooney,1268326591 +138980,71156,Jeff Bridges,1268326599 +138980,71156,Kevin Spacey,1268326601 +138980,72011,cynicism,1266958852 +138980,72011,George Clooney,1266958850 +138980,73017,BORING!,1266176264 +138980,73017,Guy Ritchie,1266176271 +138980,73017,Jude Law,1266176274 +138980,73017,Robert Downey Jr.,1266176269 +138980,81591,atmospheric,1296686221 +138980,81591,ballet,1296686225 +138980,81591,Darren Aronofsky,1296686216 +138980,81591,horror,1296686244 +138980,81591,overrated,1296686228 +138980,81591,Vincent Cassel,1296686236 +138980,129364,abrupt ending,1428213762 +138980,129364,dead child,1428213762 +138980,129364,melodrama,1428213762 +138989,112552,Academy Award Nominee,1433439937 +138989,112552,good acting,1433439943 +138989,112552,music,1433439933 +138989,112552,psychological,1433439950 +138989,112552,Tense,1433439944 +139021,260,sci-fi,1441656945 +139021,260,stars,1441657085 +139021,260,visionary,1441657075 +139031,260,classic,1440702181 +139031,260,must see,1440702187 +139121,44694,This is interesting movie with culture and some mental specific colour,1165621731 +139157,260,magic,1434455345 +139164,260,fantasy,1437443041 +139164,260,Science Fiction,1437443038 +139164,260,Star Wars,1437443051 +139164,111921,cheesy,1437443805 +139164,111921,chick flick,1437443805 +139164,111921,dying,1437443805 +139227,260,fantasy,1437683598 +139227,1674,beautiful,1437683849 +139239,1200,sci-fi,1231111853 +139239,1214,sci-fi,1231111860 +139239,1704,mathematics,1231111827 +139239,1704,psychology,1231111821 +139239,2232,psychology,1231111839 +139239,3786,coming of age,1231111849 +139239,3786,lesbian,1231111848 +139239,5618,anime,1231111760 +139239,5618,Studio Ghibli,1231111795 +139239,27884,scrabble,1231111742 +139239,31658,anime,1231111817 +139239,31658,Studio Ghibli,1231111816 +139239,39292,journalism,1231111833 +139239,48394,fantasy,1231111789 +139239,48394,surreal,1231111792 +139248,3448,radio DJ,1137500388 +139250,7262,Kristen Stewart,1247022665 +139250,36519,Jason Statham,1248052074 +139250,54999,ridiculous,1255635900 +139250,54999,satire,1255635904 +139250,54999,ultra-violence,1255635903 +139250,63113,007 (series),1242855531 +139250,63113,action,1242855535 +139250,63113,Daniel Craig,1242855529 +139250,63113,James Bond,1242855526 +139250,63113,secret service,1242855547 +139250,63113,SequelTo:Casino Royale[2006],1242855544 +139250,64497,Keanu Reeves,1243014638 +139250,68358,alternate reality,1242855350 +139250,68358,Star Trek,1242855336 +139250,85131,CGI,1329507681 +139250,85131,cliche,1329507674 +139250,85131,Cliches,1329507669 +139250,85131,plot,1329507695 +139250,85131,repetitive,1329507666 +139250,85131,sci-fi,1329507684 +139250,85131,shaky camera,1329507659 +139250,85131,Unoriginal,1329507665 +139250,85131,warfare,1329507686 +139250,87192,aliens,1415567534 +139250,88140,american idiocy,1398499804 +139250,88140,cheesy,1398499807 +139250,88140,Nazis,1398499815 +139250,104841,acting,1382015213 +139250,104841,cgi,1382015220 +139250,104841,cinematography,1382015125 +139250,104841,score,1382015139 +139250,104841,setting:space,1382015136 +139250,104841,space,1382015129 +139250,104841,suspense,1382015132 +139250,104841,visually appealing,1382015127 +139252,40,hulu,1310860320 +139252,214,non-linear,1196499530 +139252,2677,hulu,1310858799 +139252,3171,hulu,1310864949 +139252,4171,NOT Eugene O'Neill - S. Africa,1203746349 +139252,4703,NOT Depp/Binoche - Different Movie,1232685136 +139252,6350,anime,1137485086 +139252,6609,hulu,1311061556 +139252,7126,hulu,1310864358 +139252,7766,MacBeth,1232692233 +139252,7939,hulu,1310858189 +139252,8253,hulu,1310858868 +139252,26762,hulu,1310858517 +139252,31086,Yakuza Papers I,1173394739 +139252,59485,hulu,1310858543 +139252,70656,hulu,1310864210 +139252,70849,"a.k.a. ""Finger Man""",1358823138 +139252,78168,a/k/a The Weekend Wedding,1309834662 +139252,96075,TV miniseries,1448344699 +139252,140737,TV miniseries,1448344424 +139299,112556,Movies I've watched,1426857544 +139300,1,computer animation,1274197762 +139300,1,funny,1274197770 +139300,1,humorous,1274197764 +139300,1,Pixar,1274197757 +139300,1,Tom Hanks,1274197760 +139300,1,witty,1274197767 +139300,6,Al Pacino,1270996042 +139300,6,crime,1443280866 +139300,6,gunfight,1443280870 +139300,6,Michael Mann,1270996048 +139300,6,realistic action,1443280868 +139300,6,Robert De Niro,1270996045 +139300,6,suspense,1443280865 +139300,6,tense,1443280863 +139300,9,Jean-Claude Van Damme,1350132923 +139300,32,Brad Pitt,1289855704 +139300,32,Bruce Willis,1289855706 +139300,32,post-apocalyptic,1289855711 +139300,32,time travel,1289855708 +139300,32,twist ending,1289855710 +139300,47,Brad Pitt,1271870060 +139300,47,Kevin Spacey,1271870058 +139300,47,Morgan Freeman,1271870052 +139300,47,serial killer,1271870056 +139300,50,Kevin Spacey,1271870361 +139300,104,Adam Sandler,1270992258 +139300,104,Carl Weathers,1270992261 +139300,104,Christopher McDonald,1270992264 +139300,150,astronauts,1252269380 +139300,150,based on a true story,1252269382 +139300,150,catastrophe,1252269395 +139300,150,disaster,1252269398 +139300,150,Gary Sinise,1437134860 +139300,150,History,1252269394 +139300,150,Kevin Bacon,1437134859 +139300,150,moon,1252269384 +139300,150,NASA,1252269385 +139300,150,space,1252269377 +139300,150,space program,1252269381 +139300,150,suspense,1252269406 +139300,150,tense,1252269402 +139300,150,Tom Hanks,1252269386 +139300,150,true story,1252269390 +139300,153,Batman,1270954554 +139300,153,Jim Carrey,1270954551 +139300,165,action,1270991799 +139300,165,Bruce Willis,1270991798 +139300,165,Jeremy Irons,1270991794 +139300,165,Samuel L. Jackson,1270991792 +139300,180,Jeremy London,1271034067 +139300,180,Kevin Smith,1271034064 +139300,223,Kevin Smith,1270954826 +139300,223,view askew,1270954829 +139300,235,Bill Murray,1373579973 +139300,235,Biopic,1373579971 +139300,235,Johnny Depp,1373579965 +139300,235,movie business,1373579993 +139300,235,true story,1373579975 +139300,256,Arnold Schwarzenegger,1270996462 +139300,256,Danny DeVito,1270996464 +139300,256,pregnant man,1270996467 +139300,260,Harrison Ford,1271870178 +139300,260,stylized,1271870185 +139300,260,sword fight,1271870183 +139300,293,hitman,1271034054 +139300,293,Jean Reno,1271034049 +139300,293,Natalie Portman,1271034051 +139300,296,Bruce Willis,1271183312 +139300,296,Quentin Tarantino,1271183309 +139300,296,Samuel L. Jackson,1271183307 +139300,316,Stargate,1271870203 +139300,316,time travel,1271870205 +139300,318,friendship,1422656064 +139300,318,inspirational,1251676224 +139300,318,justice,1251676215 +139300,318,Morgan Freeman,1251676204 +139300,318,prison,1251676211 +139300,318,prison escape,1251676206 +139300,318,reflective,1313423835 +139300,318,revenge,1251676219 +139300,318,thought-provoking,1251676209 +139300,367,Jim Carrey,1271034073 +139300,377,Keanu Reeves,1271870138 +139300,442,dystopia,1424884191 +139300,442,Sandra Bullock,1424884194 +139300,442,Sylvester Stallone,1424884188 +139300,442,time travel,1424884190 +139300,442,Wesley Snipes,1424884193 +139300,457,Harrison Ford,1280426515 +139300,457,Tommy Lee Jones,1280426519 +139300,480,dinosaurs,1270996499 +139300,480,genetics,1270996500 +139300,480,Steven Spielberg,1270996495 +139300,485,arnold,1438273884 +139300,485,Arnold Schwarzenegger,1438273887 +139300,485,deconstruction,1438273888 +139300,485,movie magic,1438273890 +139300,485,parody,1438273886 +139300,539,Tom Hanks,1274441661 +139300,541,artificial intelligence,1264559650 +139300,541,cyberpunk,1264559652 +139300,541,dystopia,1264559657 +139300,541,Harrison Ford,1264559642 +139300,541,Philip K. Dick,1264559646 +139300,541,robots,1264559653 +139300,541,sci-fi,1264559655 +139300,589,Arnold Schwarzenegger,1271870272 +139300,589,sci-fi,1271870274 +139300,589,time travel,1271870277 +139300,592,action,1270954509 +139300,592,atmospheric,1270954515 +139300,592,Batman,1270954520 +139300,592,comic book,1270954518 +139300,592,Jack Nicholson,1270954512 +139300,592,superhero,1270954516 +139300,593,Anthony Hopkins,1286739204 +139300,593,crime,1286739213 +139300,593,Hannibal Lecter,1286739209 +139300,593,Jodie Foster,1286739208 +139300,593,mental illness,1286739211 +139300,593,psychology,1286739215 +139300,593,serial killer,1286739218 +139300,608,black comedy,1405977939 +139300,608,dark comedy,1405977937 +139300,608,murder,1405977941 +139300,608,police,1405977943 +139300,648,Action,1271183066 +139300,648,espionage,1271183070 +139300,648,Tom Cruise,1271183064 +139300,733,Alcatraz,1271869948 +139300,733,Ed Harris,1271869945 +139300,733,Hans Zimmer,1271869951 +139300,733,Nicolas Cage,1271869941 +139300,733,San Francisco,1408107954 +139300,733,Sean Connery,1271869938 +139300,741,cyberpunk,1390256478 +139300,741,overrated,1390256471 +139300,750,black comedy,1282431228 +139300,750,Stanley Kubrick,1282431224 +139300,750,war,1282431231 +139300,780,alien invasion,1270996329 +139300,780,apocalypse,1270996326 +139300,780,Will Smith,1270996318 +139300,849,Kurt Russell,1270991921 +139300,858,Al Pacino,1274568043 +139300,858,Mafia,1274568051 +139300,858,organized crime,1274568054 +139300,904,James Stewart,1293838179 +139300,904,mystery,1293838185 +139300,904,obsession,1304695844 +139300,904,suspense,1293838182 +139300,908,Cary Grant,1272740915 +139300,908,mistaken identity,1272740923 +139300,909,Billy Wilder,1445008349 +139300,909,Jack Lemmon,1445008350 +139300,913,Humphrey Bogart,1428871655 +139300,913,noir thriller,1428871653 +139300,913,Peter Lorre,1428871656 +139300,922,atmospheric,1417964039 +139300,922,film noir,1417964028 +139300,922,gloria swanson,1417964033 +139300,922,Hollywood,1417964030 +139300,922,movie business,1417964035 +139300,922,satirical,1417964037 +139300,923,atmospheric,1419182574 +139300,923,Orson Welles,1419182570 +139300,924,artificial intelligence,1272754661 +139300,924,futuristic,1272754667 +139300,924,space,1272754663 +139300,1005,hockey,1294417600 +139300,1005,sport:ice hockey,1294417598 +139300,1036,Alan Rickman,1270955110 +139300,1036,Bruce Willis,1270955107 +139300,1036,humorous,1270955113 +139300,1036,incompetent cops,1270955115 +139300,1036,thriller,1270955112 +139300,1089,nonlinear,1437062113 +139300,1089,Quentin Tarantino,1437062111 +139300,1095,Jack Lemmon,1442091917 +139300,1097,aliens,1435416579 +139300,1097,Steven Spielberg,1435416577 +139300,1101,airplane,1385504633 +139300,1101,aviation,1385504630 +139300,1101,so bad it's good,1385504639 +139300,1101,Tom Cruise,1385504621 +139300,1101,Val Kilmer,1385504625 +139300,1101,wired 50 greatest soundtracks,1385504637 +139300,1127,Ed Harris,1356203566 +139300,1127,first contact,1356203568 +139300,1127,James Cameron,1356203564 +139300,1127,thought-provoking,1356203571 +139300,1129,Kurt Russell,1270991928 +139300,1129,snake plissken,1270991932 +139300,1136,British,1322087289 +139300,1136,Terry Gilliam,1322087291 +139300,1178,Best War Films,1436909750 +139300,1178,Stanley Kubrick,1436909748 +139300,1196,Harrison Ford,1271870187 +139300,1196,space,1271870189 +139300,1197,Quirky,1432413700 +139300,1197,sword fight,1432413705 +139300,1197,whimsical,1432413707 +139300,1197,witty,1432413703 +139300,1198,Harrison Ford,1278428139 +139300,1198,Steven Spielberg,1278428137 +139300,1199,black comedy,1405887000 +139300,1199,dark comedy,1405887004 +139300,1199,satire,1405887008 +139300,1199,satirical,1405887010 +139300,1200,aliens,1270954306 +139300,1200,sci-fi,1270954305 +139300,1200,space,1270954300 +139300,1200,SPACE TRAVEL,1270954303 +139300,1201,Clint Eastwood,1275423038 +139300,1201,Ennio Morricone,1275423035 +139300,1201,long,1275423042 +139300,1203,confrontational,1306823000 +139300,1203,courtroom drama,1306823002 +139300,1203,ensemble cast,1306823007 +139300,1203,good dialogue,1306823004 +139300,1206,satire,1436737303 +139300,1206,stanley kubrick,1436737294 +139300,1210,Harrison Ford,1271870191 +139300,1210,war,1271870196 +139300,1212,orson welles,1433146654 +139300,1213,biography,1257455570 +139300,1213,crime,1257455576 +139300,1213,dark comedy,1257455567 +139300,1213,gritty,1257455572 +139300,1213,Joe Pesci,1442782966 +139300,1213,mafia,1257455571 +139300,1213,Martin Scorsese,1257455560 +139300,1213,Ray Liotta,1442782968 +139300,1213,Robert De Niro,1257455563 +139300,1214,alien,1270954284 +139300,1214,aliens,1270954285 +139300,1214,sci-fi,1270954289 +139300,1214,space travel,1270954292 +139300,1222,anti-war,1270992042 +139300,1222,boot camp,1270992044 +139300,1222,military,1270992033 +139300,1222,Vietnam,1270992040 +139300,1222,Vietnam War,1270992036 +139300,1222,vietnam war based movie,1270992038 +139300,1228,boxing,1274300274 +139300,1228,Robert De Niro,1274300277 +139300,1231,astronauts,1299269936 +139300,1231,Ed Harris,1299269922 +139300,1231,NASA,1299269929 +139300,1231,space,1299269928 +139300,1231,space program,1299269926 +139300,1231,too long,1299269934 +139300,1231,true story,1299269925 +139300,1231,US history,1299269924 +139300,1234,caper,1288561609 +139300,1234,con men,1288561613 +139300,1234,heist,1288561611 +139300,1234,Paul Newman,1288561599 +139300,1234,Robert Redford,1288561601 +139300,1240,Arnold Schwarzenegger,1271870292 +139300,1248,noir thriller,1444054058 +139300,1248,Orson Welles,1444054056 +139300,1252,Film Noir,1443363936 +139300,1252,Jack Nicholson,1443363934 +139300,1252,mystery,1443363941 +139300,1252,private detective,1443363939 +139300,1253,aliens,1291757943 +139300,1253,first contact,1291757945 +139300,1253,poignant,1291757948 +139300,1265,alternate reality,1270992221 +139300,1265,Bill Murray,1270992210 +139300,1265,time loop,1270992217 +139300,1265,time travel,1270992219 +139300,1266,Clint Eastwood,1448145233 +139300,1266,gene hackman,1448145236 +139300,1266,gritty,1448145238 +139300,1266,Morgan Freeman,1448145234 +139300,1270,future,1270953880 +139300,1270,sci-fi,1270953882 +139300,1270,Steven Spielberg,1270953886 +139300,1270,time travel,1270953883 +139300,1278,Gene Wilder,1448643428 +139300,1278,Mel Brooks,1448643431 +139300,1278,parody,1448643432 +139300,1283,gunfight,1290116366 +139300,1283,real-time,1290116368 +139300,1283,western,1290116373 +139300,1288,Christopher Guest,1408391395 +139300,1288,deadpan,1299365170 +139300,1288,heavy metal,1299365167 +139300,1288,rock and roll,1299365164 +139300,1288,satire,1299365162 +139300,1288,satirical,1408391402 +139300,1301,deliberate,1286137143 +139300,1301,space,1286137145 +139300,1304,bittersweet,1288646929 +139300,1304,crime,1288646931 +139300,1304,Paul Newman,1288646922 +139300,1304,Robert Redford,1288646923 +139300,1304,western,1288646925 +139300,1370,action,1270991782 +139300,1370,airport,1270991780 +139300,1370,Bruce Willis,1270991774 +139300,1373,Deforrest Kelley,1407680713 +139300,1373,James Doohan,1407680704 +139300,1373,Leonard Nimoy,1407680700 +139300,1373,Walter Koenig,1407680709 +139300,1373,William Shatner,1407680703 +139300,1374,William Shatner,1271870160 +139300,1376,Leonard Nimoy,1406027747 +139300,1376,over the top,1406027751 +139300,1376,time travel,1406027744 +139300,1376,William Shatner,1406027745 +139300,1377,batman,1270954565 +139300,1377,Michael Keaton,1270954569 +139300,1377,superhero,1270954567 +139300,1385,action,1446293948 +139300,1387,monster,1323115446 +139300,1387,ominous,1323115449 +139300,1387,Steven Spielberg,1323115453 +139300,1387,tense,1323115455 +139300,1387,visceral,1323115457 +139300,1552,John Malkovich,1270954905 +139300,1552,Steve Buscemi,1270954901 +139300,1562,Arnold Schwarzenegger,1270954447 +139300,1573,John Travolta,1280802278 +139300,1573,Nicolas Cage,1280802276 +139300,1573,stupid,1270991959 +139300,1573,switching places,1270991954 +139300,1580,aliens,1271034162 +139300,1580,sci-fi,1271034165 +139300,1580,scifi,1271034167 +139300,1580,Tommy Lee Jones,1271034156 +139300,1580,Will Smith,1271034157 +139300,1589,ensemble cast,1441486015 +139300,1608,Gary Oldman,1270954278 +139300,1608,Harrison Ford,1270954276 +139300,1610,cold war,1280783000 +139300,1610,Sean Connery,1280782992 +139300,1610,submarine,1280782996 +139300,1617,complicated,1386543174 +139300,1617,conspiracy,1386543165 +139300,1617,corruption,1386543168 +139300,1617,detective,1386543170 +139300,1617,Kevin Spacey,1386543161 +139300,1617,Russell Crowe,1386543159 +139300,1617,suspense,1386543162 +139300,1617,twist ending,1386543164 +139300,1625,David Fincher,1252530740 +139300,1625,Michael Douglas,1252530741 +139300,1625,mindfuck,1252530747 +139300,1625,Mystery,1252530749 +139300,1625,psychological,1252530751 +139300,1625,Sean Penn,1252530753 +139300,1625,the final twist,1252530760 +139300,1625,thriller,1252530763 +139300,1625,twist ending,1252530763 +139300,1639,Ben Affleck,1252589096 +139300,1639,Jason Lee,1252589100 +139300,1639,Kevin Smith,1252589099 +139300,1653,dystopic future,1283200009 +139300,1653,Ethan Hawke,1283199992 +139300,1653,genetic selection,1283200003 +139300,1653,genetics,1283200001 +139300,1653,Jude Law,1283199997 +139300,1653,powerful ending,1283199989 +139300,1653,space travel,1283199987 +139300,1653,Uma Thurman,1283199994 +139300,1673,dark comedy,1439658944 +139300,1673,ensemble cast,1439658948 +139300,1682,Jim Carrey,1271870338 +139300,1682,social commentary,1271870341 +139300,1687,Bruce Willis,1254325824 +139300,1704,Ben Affleck,1292883210 +139300,1704,genius,1292883217 +139300,1704,Matt Damon,1292883209 +139300,1704,Robin Williams,1292883212 +139300,1704,thoughtful,1292883224 +139300,1721,Leonardo DiCaprio,1271870302 +139300,1732,black comedy,1293323274 +139300,1732,Coen Brothers,1293323277 +139300,1748,atmospheric,1291575460 +139300,1748,sci-fi,1291575463 +139300,1748,steampunk,1291575464 +139300,1876,Morgan Freeman,1274441641 +139300,1876,natural disaster,1274441646 +139300,1876,science,1274441649 +139300,1882,Hank Azaria,1270992128 +139300,1882,Matthew Broderick,1270992129 +139300,1882,Roland Emmerich,1270992139 +139300,1882,sci-fi,1270992136 +139300,1917,Ben Affleck,1270954408 +139300,1917,Bruce Willis,1270954405 +139300,1917,space program,1270954410 +139300,1920,toys,1382177550 +139300,1923,Matt Dillon,1385251026 +139300,1954,bittersweet,1301864008 +139300,1954,Inspirational,1301864006 +139300,1954,sport:boxing,1301864006 +139300,1954,sports,1271869960 +139300,1954,Sylvester Stallone,1271869957 +139300,1954,working class,1301864012 +139300,1968,Comedy,1294783399 +139300,1968,John Hughes,1294783397 +139300,1968,school drama,1294783402 +139300,1968,teen,1294783404 +139300,2000,Buddy movie,1363542575 +139300,2000,Danny Glover,1363542567 +139300,2000,Mel Gibson,1363542564 +139300,2009,atmospheric,1318540317 +139300,2009,Charlton Heston,1318540316 +139300,2009,prophetic,1318540331 +139300,2009,sci-fi,1318540327 +139300,2009,twist ending,1318540329 +139300,2011,Christopher Lloyd,1270953893 +139300,2011,Michael J. Fox,1270953895 +139300,2011,sci-fi,1270953898 +139300,2011,sequel,1270953900 +139300,2012,alternate reality,1270953863 +139300,2012,alternate universe,1270953866 +139300,2012,Christopher Lloyd,1270953857 +139300,2012,Michael J. Fox,1270953860 +139300,2012,science fiction,1270953868 +139300,2012,time travel,1270953870 +139300,2028,enormously long battle scene,1252269445 +139300,2028,historical,1264559795 +139300,2028,Matt Damon,1252269442 +139300,2028,Steven Spielberg,1252269453 +139300,2028,Tom Hanks,1252269449 +139300,2028,World War II,1264559798 +139300,2042,hockey,1294417594 +139300,2042,sport:ice hockey,1294417593 +139300,2058,Kevin Spacey,1271183142 +139300,2058,Samuel L. Jackson,1271183139 +139300,2082,hockey,1294417583 +139300,2105,alternate reality,1270954477 +139300,2105,computer game,1270954473 +139300,2105,computers,1270954462 +139300,2105,sci-fi,1270954466 +139300,2105,technology,1270954468 +139300,2105,virtual reality,1270954469 +139300,2115,Harrison Ford,1290449810 +139300,2115,Steven Spielberg,1290449812 +139300,2176,Alfred Hitchcock,1296421052 +139300,2176,James Stewart,1296421055 +139300,2176,long takes,1296421066 +139300,2176,murder,1296421061 +139300,2176,Suspense,1296421063 +139300,2177,Hitchcock,1353789247 +139300,2186,great concept,1419341284 +139300,2194,Brian De Palma,1274047147 +139300,2194,David Mamet,1274047158 +139300,2194,Ennio Morricone,1274047144 +139300,2194,Gangster,1274047160 +139300,2194,gangsters,1274047162 +139300,2194,Kevin Costner,1274047150 +139300,2194,police corruption,1274047154 +139300,2194,Robert De Niro,1274047156 +139300,2194,Sean Connery,1274047151 +139300,2232,mindfuck,1284070794 +139300,2232,psychological,1284070792 +139300,2278,bank robbery,1271870014 +139300,2278,Jean Reno,1271870012 +139300,2278,organized crime,1287234529 +139300,2278,Robert De Niro,1271870009 +139300,2288,aliens,1273960051 +139300,2288,Kurt Russell,1273960050 +139300,2288,Lovecraftian mythology,1273960060 +139300,2288,paranoia,1273960054 +139300,2288,shape shifter,1273960057 +139300,2291,dark comedy,1270991883 +139300,2291,Johnny Depp,1270991874 +139300,2353,espionage,1259532261 +139300,2353,fast paced,1259532257 +139300,2353,Gene Hackman,1259532251 +139300,2353,Will Smith,1259532252 +139300,2363,giant monster,1254146780 +139300,2363,nuclear,1254146789 +139300,2363,radiation,1254146784 +139300,2366,classic,1252262139 +139300,2378,Bubba Smith,1271183265 +139300,2378,Michael Winslow,1271183261 +139300,2402,jungle,1435663052 +139300,2403,post-traumatic stress disorder,1435602087 +139300,2403,Sylvester Stallone,1435602085 +139300,2404,Sylvester Stallone,1435941497 +139300,2409,boxing,1323278572 +139300,2409,Carl Weathers,1323278574 +139300,2409,fighting,1323278576 +139300,2409,nostalgic,1323278578 +139300,2409,sport:boxing,1323278569 +139300,2409,Sylvester Stallone,1271869972 +139300,2410,boxing,1323362250 +139300,2410,Burgess Meredith,1323362252 +139300,2410,Carl Weathers,1323362243 +139300,2410,Mr. T,1323362254 +139300,2410,sports,1323362257 +139300,2410,Sylvester Stallone,1271869982 +139300,2410,Tony Burton,1323362247 +139300,2410,underdog,1323362259 +139300,2411,boxing,1323445663 +139300,2411,Carl Weathers,1323445672 +139300,2411,competitive sport,1323445673 +139300,2411,Dolph Lundgren,1271869988 +139300,2411,music,1323445668 +139300,2411,soundtrack,1323445670 +139300,2411,sport:boxing,1323445661 +139300,2411,Sylvester Stallone,1271869985 +139300,2411,training montage,1271869991 +139300,2412,boxing,1323533619 +139300,2412,Burgess Meredith,1323533621 +139300,2412,Sylvester Stallone,1323533617 +139300,2420,Pat Morita,1271033835 +139300,2502,corporate America,1271183208 +139300,2502,crime gone awry,1271183209 +139300,2502,hilarious,1271183206 +139300,2502,satire,1271183204 +139300,2527,androids,1420288864 +139300,2527,Michael Crichton,1420288867 +139300,2527,sci-fi,1420288866 +139300,2529,Charlton Heston,1287505172 +139300,2529,far future,1287505185 +139300,2529,forceful,1287505187 +139300,2529,post-apocalyptic,1287505182 +139300,2529,social commentary,1287505189 +139300,2530,doomsday,1287677012 +139300,2541,Reese Witherspoon,1270954940 +139300,2541,Ryan Philippe,1270954937 +139300,2541,Sarah Michelle Gellar,1270954935 +139300,2541,Selma Blair,1270954943 +139300,2571,cyberpunk,1271034103 +139300,2571,Keanu Reeves,1271034099 +139300,2571,sci-fi,1271034105 +139300,2571,virtual reality,1271034101 +139300,2579,Christopher Nolan,1279922681 +139300,2628,Ewan McGregor,1271870166 +139300,2648,gothic,1448292219 +139300,2648,mad scientist,1448292218 +139300,2660,Robert Cornthwaite,1293898324 +139300,2664,Don Siegel,1290200087 +139300,2664,evil twin,1290200095 +139300,2664,paranoid,1290200091 +139300,2701,Will Smith,1271870398 +139300,2716,Bill Murray,1273447071 +139300,2722,Thomas Jane,1270955032 +139300,2722,unintentionally funny,1270955033 +139300,2726,heist,1436283457 +139300,2726,noir thriller,1436283454 +139300,2726,Stanley Kubrick,1436283458 +139300,2730,Stanley Kubrick,1436533245 +139300,2761,cold war,1285099730 +139300,2761,robot,1285099724 +139300,2761,robots,1285099726 +139300,2791,absurd,1283031053 +139300,2791,dumb but funny,1283031047 +139300,2791,Leslie Nielsen,1283031051 +139300,2797,being a kid again,1280960066 +139300,2797,Tom Hanks,1280960070 +139300,2797,toys,1280960073 +139300,2858,black comedy,1270954319 +139300,2858,dark comedy,1270954322 +139300,2858,thought-provoking,1270954328 +139300,2890,George Clooney,1271870297 +139300,2890,Mark Wahlberg,1271870296 +139300,2918,Matthew Broderick,1361394730 +139300,2918,teen movie,1361394741 +139300,2951,Clint Eastwood,1295689737 +139300,2951,Ennio Morricone,1295689734 +139300,2951,morricone score,1295689745 +139300,2951,spaghetti western,1295689739 +139300,2951,standoff,1295689748 +139300,2951,western,1295689741 +139300,2959,Brad Pitt,1270991992 +139300,2959,Edward Norton,1270991988 +139300,2985,cyborgs,1271869919 +139300,2985,robots,1271869927 +139300,2985,superhero,1271869922 +139300,2985,television,1271869924 +139300,2985,tongue-in-cheek,1354988073 +139300,2986,robots,1271869933 +139300,3007,movie business,1402861407 +139300,3052,Ben Affleck,1270991845 +139300,3052,Kevin Smith,1270991848 +139300,3052,Matt Damon,1270991850 +139300,3052,view askew,1270991855 +139300,3114,computer animation,1273447066 +139300,3114,Pixar,1273447059 +139300,3114,Tom Hanks,1273447062 +139300,3147,death penalty,1278973635 +139300,3147,heartwarming,1278973632 +139300,3147,Sam Rockwell,1278973628 +139300,3147,Tom Hanks,1278973627 +139300,3317,college,1316469190 +139300,3317,Michael Douglas,1316469181 +139300,3317,Robert Downey Jr,1316469182 +139300,3317,writer,1316469186 +139300,3327,Mick Foley,1429364773 +139300,3338,Space,1296593262 +139300,3384,terrorism,1253900846 +139300,3384,Walter Matthau,1271870254 +139300,3386,conspiracy theory,1419085458 +139300,3386,courtroom,1419085460 +139300,3435,film noir,1440363869 +139300,3435,Fred MacMurray,1440363866 +139300,3435,noir thriller,1440363871 +139300,3471,aliens,1273355292 +139300,3471,first contact,1273355280 +139300,3471,invasion,1273355296 +139300,3471,Sci-fi,1273355298 +139300,3471,space,1273355300 +139300,3471,Steven Spielberg,1273355284 +139300,3527,action,1252278886 +139300,3527,alien,1252278888 +139300,3527,aliens,1252278858 +139300,3527,Arnold Schwarzenegger,1252278856 +139300,3527,Carl Weathers,1252278892 +139300,3527,chase,1252278896 +139300,3527,guns,1252278900 +139300,3527,hunting,1252278859 +139300,3527,military,1252278878 +139300,3527,predator,1252278884 +139300,3527,sci-fi,1252278863 +139300,3527,scifi cult,1252278866 +139300,3527,survival,1252278871 +139300,3527,violent,1252278875 +139300,3527,weapons,1252278873 +139300,3535,Christian Bale,1270954351 +139300,3535,insanity,1270954361 +139300,3535,psychology,1270954355 +139300,3535,serial killer,1270954357 +139300,3578,Russell Crowe,1270992074 +139300,3578,War,1270992077 +139300,3617,Amy Smart,1271869911 +139300,3617,Seann William Scott,1271869914 +139300,3623,Cruise,1323526830 +139300,3623,espionage,1323526828 +139300,3623,suspense,1323526841 +139300,3623,Tom Cruise,1323526837 +139300,3681,Ennio Morricone,1313355141 +139300,3681,Lee Van Cleef,1313355142 +139300,3681,morricone score,1313355149 +139300,3681,western,1313355146 +139300,3868,Leslie Nielsen,1283802994 +139300,3948,Ben Stiller,1271034124 +139300,3948,Robert De Niro,1271034127 +139300,3986,arnold,1424884212 +139300,3994,Bruce Willis,1252270935 +139300,3994,comics,1252270936 +139300,3994,Samuel L. Jackson,1252270941 +139300,3994,superhero,1252270943 +139300,3994,understated,1252270946 +139300,4022,boring,1252269337 +139300,4022,life-changing,1252269354 +139300,4022,stranded,1252269358 +139300,4022,SURVIVAL,1252269355 +139300,4022,Tom Hanks,1252269356 +139300,4027,coen brothers,1436801391 +139300,4027,George Clooney,1436801394 +139300,4027,great soundtrack,1436801393 +139300,4027,John Goodman,1436801400 +139300,4027,prison escape,1436801395 +139300,4103,Christian Bale,1422192246 +139300,4103,World War II,1422192249 +139300,4105,campy,1323555423 +139300,4223,Jude Law,1443106391 +139300,4223,sniper,1443106389 +139300,4223,World War II,1443106388 +139300,4226,amnesia,1270951704 +139300,4226,psychological,1270951698 +139300,4270,Brendan Fraser,1271183136 +139300,4270,unintentionally funny,1271183133 +139300,4308,Ewan McGregor,1271183108 +139300,4369,street race,1304190713 +139300,4369,Stupid as Hell,1304190711 +139300,4369,Vin Diesel,1304190709 +139300,4370,androids,1279483881 +139300,4370,artificial intelligence,1279483884 +139300,4370,robots,1279483888 +139300,4370,sci-fi,1279483886 +139300,4626,End of the world,1271183032 +139300,4734,Ben Affleck,1270996383 +139300,4734,Kevin Smith,1270996379 +139300,4734,view askew,1270996381 +139300,4813,doomsday,1326584696 +139300,4813,sci-fi,1326584687 +139300,4816,Will Ferrell,1271870428 +139300,4855,AFI 100 (Movie Quotes),1293720426 +139300,4855,Clint Eastwood,1293720418 +139300,4855,police,1293720422 +139300,4855,setting:San Francisco,1293720424 +139300,4878,alternate timeline,1291238946 +139300,4878,music,1291238954 +139300,4878,time travel,1291238950 +139300,4886,animation,1271183089 +139300,4886,Comedy,1271183093 +139300,4886,cute,1271183095 +139300,4886,Pixar,1271183083 +139300,4886,Pixar animation,1271183086 +139300,4896,fantasy,1316275601 +139300,4896,good versus evil,1316275598 +139300,4896,humorous,1316275602 +139300,4896,mystery,1316275595 +139300,4896,school drama,1316275604 +139300,4941,great soundtrack,1360077076 +139300,4941,Max von Sydow,1360077079 +139300,4941,So bad it's good,1360077074 +139300,4941,Timothy Dalton,1360077077 +139300,4963,Brad Pitt,1271183163 +139300,4963,casino,1271183169 +139300,4963,crime,1271183168 +139300,4963,George Clooney,1271183166 +139300,4963,Matt Damon,1271183161 +139300,4993,beautifully filmed,1271033983 +139300,4993,wizards,1271033989 +139300,4995,based on a true story,1393107341 +139300,4995,insanity,1393107345 +139300,4995,inspirational,1393107346 +139300,4995,Russell Crowe,1393107348 +139300,4995,schizophrenia,1393107349 +139300,4995,true story,1393107352 +139300,5010,based on a true story,1440951433 +139300,5010,Ewan McGregor,1440951431 +139300,5010,heroism,1440951428 +139300,5010,military,1440951436 +139300,5010,Ridley Scott,1440951425 +139300,5010,true story,1440951430 +139300,5010,War,1440951426 +139300,5163,original,1368047134 +139300,5349,Kirsten Dunst,1271870144 +139300,5349,Tobey Maguire,1271870141 +139300,5378,Ewan McGregor,1271870171 +139300,5388,Al Pacino,1279658594 +139300,5388,Christopher Nolan,1279658598 +139300,5388,detective,1279658605 +139300,5388,Hilary Swank,1279658601 +139300,5388,Robin Williams,1279658599 +139300,5418,amnesia,1270954704 +139300,5418,assassin,1270954706 +139300,5418,espionage,1270954713 +139300,5418,Matt Damon,1270954702 +139300,5418,realistic action,1270954708 +139300,5418,Robert Ludlum,1270954709 +139300,5418,spy,1270954714 +139300,5445,artificial intelligence,1264559682 +139300,5445,dystopia,1264559689 +139300,5445,future,1264559691 +139300,5445,futuristic,1264559693 +139300,5445,Philip K. Dick,1264559686 +139300,5445,sci-fi,1264559698 +139300,5445,Steven Spielberg,1264559683 +139300,5445,time travel,1264559695 +139300,5445,Tom Cruise,1312319750 +139300,5449,Adam Sandler,1271183123 +139300,5459,Tommy Lee Jones,1271034172 +139300,5459,Will Smith,1271034175 +139300,5528,Robin Williams,1299535854 +139300,5528,suspense,1299535859 +139300,5604,Alec Guinness,1434357987 +139300,5618,adventure,1437322451 +139300,5618,alternate reality,1437322443 +139300,5618,atmospheric,1437322446 +139300,5618,dragons,1437322453 +139300,5618,dreamlike,1437322441 +139300,5618,fantasy,1437322440 +139300,5618,Hayao Miyazaki,1437322438 +139300,5618,Studio Ghibli,1437322437 +139300,5618,surreal,1437322448 +139300,5618,whimsical,1437322445 +139300,5785,simply: why???,1270996373 +139300,5816,adventure,1321700325 +139300,5816,alan rickman,1321700307 +139300,5902,Charlie Kaufman,1436129537 +139300,5902,dark comedy,1436129535 +139300,5902,Nicolas Cage,1436129538 +139300,5902,writers,1436129544 +139300,5902,writing process,1436129547 +139300,5903,Christian Bale,1270991894 +139300,5903,gun fu,1270991897 +139300,5903,post-apocalyptic,1270991904 +139300,5952,Viggo Mortensen,1271034010 +139300,5956,Cameron Diaz,1270955135 +139300,5956,Daniel Day-Lewis,1270955130 +139300,5956,Leonardo DiCaprio,1270955133 +139300,5956,Martin Scorsese,1270955138 +139300,5971,Cute,1416679906 +139300,5971,feel good movie,1416679904 +139300,5971,Hayao Miyazaki,1416679900 +139300,5971,nature,1416679910 +139300,5971,Studio Ghibli,1416679898 +139300,5971,visually appealing,1416679902 +139300,5989,crime,1264559750 +139300,5989,Leonardo DiCaprio,1264559739 +139300,5989,Steven Spielberg,1264559748 +139300,5989,Tom Hanks,1264559744 +139300,5989,true story,1264559753 +139300,6016,based on a true story,1282603044 +139300,6016,black comedy,1282603050 +139300,6016,crime,1282603053 +139300,6016,true story,1282603047 +139300,6157,Ben Affleck,1270955009 +139300,6157,Colin Farrell,1270955013 +139300,6157,heroine in tight suit,1270955017 +139300,6157,Jennifer Garner,1270955006 +139300,6157,superhero,1270955011 +139300,6188,Luke Wilson,1271183216 +139300,6188,Will Ferrell,1271183215 +139300,6213,Antoine Fuqua,1275946089 +139300,6213,Bruce Willis,1275946089 +139300,6281,Colin Farrell,1264559714 +139300,6281,Kiefer Sutherland,1264559718 +139300,6281,Philip K. Dick,1264559720 +139300,6287,Adam Sandler,1270954393 +139300,6287,Jack Nicholson,1270954396 +139300,6323,psychology,1270996224 +139300,6323,psychology and the nature of reality,1270996227 +139300,6333,super-hero,1271870411 +139300,6333,superhero,1271870414 +139300,6365,cyberpunk,1271034084 +139300,6365,Keanu Reeves,1271034079 +139300,6365,virtual reality,1271034081 +139300,6373,Jim Carrey,1270954754 +139300,6373,Morgan Freeman,1270954755 +139300,6373,Steve Carell,1270954758 +139300,6377,heartwarming,1364058487 +139300,6377,Pixar,1364058483 +139300,6377,talking animals,1364058485 +139300,6383,crappy sequel,1304370172 +139300,6440,Coen Brothers,1413749271 +139300,6440,Hollywood,1413749272 +139300,6440,John Goodman,1413749269 +139300,6440,john turturro,1413749279 +139300,6440,movie business,1413749274 +139300,6440,writers,1413749275 +139300,6440,writers at work,1413749277 +139300,6537,Arnold Schwarzenegger,1271870284 +139300,6539,Johnny Depp,1271183252 +139300,6593,Jamie Lee Curtis,1281045418 +139300,6593,Lindsay Lohan,1281045416 +139300,6711,Bill Murray,1387751638 +139300,6711,bittersweet,1387751641 +139300,6711,complex characters,1387751645 +139300,6711,Melancholic,1387751644 +139300,6711,reflective,1387751648 +139300,6800,awful Dirty Harry ripoff,1310746998 +139300,6800,motorcycle,1310746996 +139300,6800,Sylvester Stallone,1310746993 +139300,6863,Jack Black,1271870023 +139300,6874,assassin,1307225375 +139300,6874,Japan,1307225368 +139300,6874,kung fu,1307225378 +139300,6874,martial arts,1307225366 +139300,6874,nonlinear,1307225373 +139300,6874,Quentin Tarantino,1307225362 +139300,6874,revenge,1307225369 +139300,6874,Uma Thurman,1307225365 +139300,6874,visceral,1307225372 +139300,6910,original,1368047135 +139300,6934,cyberpunk,1271034092 +139300,6934,Keanu Reeves,1271034087 +139300,6934,sci-fi,1271034095 +139300,6934,virtual reality,1271034089 +139300,6979,artificial intelligence,1359318183 +139300,6979,Cold War,1359318188 +139300,6979,command line inteface,1359318190 +139300,6979,computer cracker,1359318196 +139300,6979,Matthew Broderick,1359318192 +139300,6979,nuclear war,1359318195 +139300,7099,coming of age,1406289343 +139300,7099,environmental,1406289345 +139300,7099,fantasy world,1406289352 +139300,7099,great soundtrack,1406289354 +139300,7099,Hayao Miyazaki,1406289340 +139300,7099,Japan,1406289350 +139300,7099,steampunk,1406289355 +139300,7099,Studio Ghibli,1406289342 +139300,7099,war,1406289348 +139300,7153,atmospheric,1271034000 +139300,7254,alternate reality,1270954762 +139300,7254,suspense,1270954766 +139300,7254,time travel,1270954763 +139300,7263,hockey,1271183008 +139300,7263,Kurt Russell,1271183013 +139300,7263,Sports,1271183025 +139300,7263,underdogs,1271183016 +139300,7366,Ben Affleck,1270996388 +139300,7366,Kevin Smith,1270996389 +139300,7366,liv tyler,1270996392 +139300,7373,comic book,1274197541 +139300,7373,cool dialogues,1274197538 +139300,7373,Guillermo del Toro,1274197528 +139300,7373,Ron Perlman,1274197531 +139300,7373,steampunk,1274197534 +139300,7373,superhero,1274197536 +139300,7502,military,1296390447 +139300,7502,true story,1296390444 +139300,7502,World War II,1296390443 +139300,7649,Bruce Boxleitner,1325894101 +139300,7649,sci-fi,1325894104 +139300,7925,16th century,1289251578 +139300,7925,Criterion,1289251575 +139300,7925,greed,1289251581 +139300,7925,Toshirô Mifune,1289251566 +139300,7925,Toshiro Mifune,1289251562 +139300,7981,Anthony Wong Chau-Sang,1285365453 +139300,7981,Tony Leung,1285365462 +139300,7981,undercover cop,1285365460 +139300,8340,Clint Eastwood,1273762931 +139300,8340,prison escape,1273762933 +139300,8368,alan rickman,1323618073 +139300,8368,Daniel Radcliffe,1323618084 +139300,8368,Gary Oldman,1323618080 +139300,8368,time travel,1323618076 +139300,8447,mutants,1290977914 +139300,8528,obscure sports,1270991841 +139300,8529,funny,1252269483 +139300,8529,slow,1252269477 +139300,8529,Tom Hanks,1252269480 +139300,8533,generations,1357857756 +139300,8533,life choices,1357857750 +139300,8533,Rachel McAdams,1357857744 +139300,8533,Ryan Gosling,1357857746 +139300,8533,sentimental,1357857748 +139300,8581,apple,1281012047 +139300,8581,computers,1281012042 +139300,8581,history,1281012043 +139300,8581,non-fiction,1281012055 +139300,8581,true story,1281012046 +139300,8641,Fred Willard,1270954383 +139300,8641,Judd Apatow movie,1270954387 +139300,8641,Paul Rudd,1270954373 +139300,8641,Steve Carell,1270954375 +139300,8641,Steve Carrell,1270954377 +139300,8641,Will Ferrell,1270954379 +139300,8644,android(s)/cyborg(s),1270996189 +139300,8644,artificial intelligence,1270996185 +139300,8644,futuristic,1270996187 +139300,8644,Isaac Asimov,1270996182 +139300,8644,Will Smith,1270996180 +139300,8665,espionage,1270954720 +139300,8665,Matt Damon,1270954717 +139300,8665,realistic action,1270954727 +139300,8665,Robert Ludlum,1270954723 +139300,8798,assassin,1270954882 +139300,8798,great performances,1270954888 +139300,8798,Michael Mann,1270954880 +139300,8798,revenge,1270954884 +139300,8798,Tom Cruise,1270954890 +139300,8874,black comedy,1273447105 +139300,8874,Simon Pegg,1273447109 +139300,8961,action,1270996314 +139300,8961,Pixar,1364148028 +139300,8961,Samuel L. Jackson,1270996303 +139300,8961,superhero,1270996299 +139300,8984,Matt Damon,1271183194 +139300,26007,finnish,1273763104 +139300,26153,racing,1411827007 +139300,26153,Toshirô Mifune,1411827008 +139300,26242,chase,1421957150 +139300,26242,thriller,1421957148 +139300,26729,movie business,1405634033 +139300,26776,aerial dogfights,1396685039 +139300,26776,Hayao Miyazaki,1396685037 +139300,26776,magic realism,1396685042 +139300,26914,history,1311808121 +139300,26914,William Shatner,1311808125 +139300,27002,NASA,1251676328 +139300,27002,space,1251676330 +139300,27002,true story,1251676334 +139300,27216,Finland,1251676069 +139300,27397,Chan-wook Park,1302817954 +139300,27397,friendship,1302817956 +139300,27674,black comedy,1279141131 +139300,27674,easy fun,1279141134 +139300,27674,mindless,1279141127 +139300,27674,multiple storylines,1279141137 +139300,27773,twist ending,1272493170 +139300,30707,boxing,1271034201 +139300,30707,Clint Eastwood,1271034197 +139300,30707,Morgan Freeman,1271034199 +139300,30707,sports,1271034205 +139300,30812,aviation,1402861277 +139300,30812,biography,1402861279 +139300,30812,biopic,1402861280 +139300,30812,Cate Blanchett,1402861267 +139300,30812,Jude Law,1402861268 +139300,30812,Leonardo DiCaprio,1402861264 +139300,30812,Martin Scorsese,1402861261 +139300,30812,movie business,1402861273 +139300,30812,true story,1402861271 +139300,30825,Ben Stiller,1271034115 +139300,30825,Dustin Hoffman,1271034117 +139300,30825,Robert De Niro,1271034112 +139300,32587,black comedy,1273013235 +139300,32587,Bruce Willis,1273013231 +139300,32587,stylized,1273013233 +139300,33493,Ewan McGregor,1271870174 +139300,33660,boxing,1252269414 +139300,33660,Paul Giamatti,1270954820 +139300,33660,Russell Crowe,1252269416 +139300,33660,sports,1252269420 +139300,33660,true story,1252269424 +139300,33679,Angelina Jolie,1271183112 +139300,33679,Brad Pitt,1271183115 +139300,33679,Doug Liman,1271183118 +139300,33794,action,1270954536 +139300,33794,alter ego,1270954538 +139300,33794,atmospheric,1270954541 +139300,33794,batman,1270954529 +139300,33794,Christian Bale,1270954528 +139300,33794,superhero,1270954531 +139300,33794,vigilante,1270954534 +139300,34048,alien invasion,1290696482 +139300,34048,Steven Spielberg,1271870382 +139300,34048,Tim Robbins,1290696484 +139300,34048,Tom Cruise,1271870385 +139300,34162,Vince Vaughn,1271870390 +139300,34405,black comedy,1271870045 +139300,34405,dystopia,1271870047 +139300,34405,Firefly,1271870040 +139300,34405,space,1271870042 +139300,34523,Jamie Bell,1270954809 +139300,35836,Judd Apatow,1270954244 +139300,35836,Seth Rogen,1270954241 +139300,35836,Steve Carell,1270954238 +139300,36529,arms dealer,1271034021 +139300,36529,dark comedy,1271034023 +139300,36529,Nicolas Cage,1271034018 +139300,38061,black comedy,1292105355 +139300,38061,clever,1292105357 +139300,38061,private detective,1292105360 +139300,38061,Robert Downey Jr,1292105346 +139300,38061,val kilmer,1292105353 +139300,38061,witty,1292105351 +139300,40815,competition,1323633554 +139300,40815,Gary Oldman,1323633545 +139300,40815,ghosts/afterlife,1323633549 +139300,41569,monster,1271033850 +139300,41569,Peter Jackson,1271033845 +139300,43396,Anthony Hopkins,1255466782 +139300,43396,based on a true story,1255466785 +139300,43396,indian motorcycle,1255466787 +139300,43396,motorcycle,1255466788 +139300,43396,road trip,1255466790 +139300,44191,thought-provoking,1271870365 +139300,44199,bank robbery,1251676290 +139300,44199,Clive Owen,1251676295 +139300,44199,Denzel Washington,1251676287 +139300,44199,heist,1251676298 +139300,44199,intelligent thriller,1251676302 +139300,44665,assassination,1271034035 +139300,44665,Bruce Willis,1271034027 +139300,44665,Morgan Freeman,1271034033 +139300,44788,private detective,1280768896 +139300,44788,social commentary,1280768898 +139300,44828,alien invasion,1272413023 +139300,44828,Elizabeth Banks,1272413014 +139300,44828,nathan fillion,1272413016 +139300,44828,pseudo-zombies,1272413029 +139300,45186,Billy Crudup,1324146516 +139300,45186,espionage,1324146518 +139300,45186,J.J. Abrams,1324146514 +139300,45186,Laurence Fishburne,1324146521 +139300,45186,Michelle Monaghan,1324146524 +139300,45186,Philip Seymour Hoffman,1324146527 +139300,45186,Simon Pegg,1324146529 +139300,45186,Tom Cruise,1324146510 +139300,45186,Ving Rhames,1324146512 +139300,45210,aviation,1318452232 +139300,45210,based on a true story,1318452230 +139300,45210,emotional,1318452239 +139300,45210,heroism,1318452234 +139300,45210,self-sacrifice,1318452244 +139300,45210,true story,1318452228 +139300,45210,visceral,1318452247 +139300,45499,Hugh Jackman,1271870408 +139300,45517,cars,1300652344 +139300,45517,Paul Newman,1300652336 +139300,45517,Pixar,1300652336 +139300,45517,race,1300652342 +139300,45517,redemption,1300652340 +139300,45672,Adam Sandler,1270954847 +139300,45672,Kate Beckinsale,1270954849 +139300,45672,Sean Astin,1270954851 +139300,45722,Johnny Depp,1271183245 +139300,45728,Kevin Smith,1270954833 +139300,45728,Rosario Dawson,1270954836 +139300,45728,slackers,1270954844 +139300,46335,cars,1304793461 +139300,46335,Tokyo,1304793453 +139300,46335,unintentionally funny,1304793455 +139300,46578,Steve Carell,1271033942 +139300,46965,quotable,1271870124 +139300,46965,Samuel L. Jackson,1271870122 +139300,46970,Will Ferrell,1271870260 +139300,46972,Ricky Gervais,1271183147 +139300,46976,modern fantasy,1271870232 +139300,46976,Will Ferrell,1271870227 +139300,47200,adrenaline,1270954915 +139300,47200,Jason Statham,1270954913 +139300,47610,Edward Norton,1259702987 +139300,47610,Paul Giamatti,1259702985 +139300,47610,stage magic,1259702990 +139300,47644,Greg Kinnear,1290682751 +139300,47644,Mark Wahlberg,1290682754 +139300,47644,underdog,1290682757 +139300,47830,Elisha Cuthbert,1271183317 +139300,47937,weapons industry,1271870065 +139300,47997,decline of civilization,1270996244 +139300,47997,Justin Long,1270996239 +139300,48043,dreamlike,1272668774 +139300,48043,Hugh Jackman,1272668768 +139300,48043,Music,1272668777 +139300,48043,time travel,1272668770 +139300,48043,visually appealing,1272668772 +139300,48385,Sacha Baron Cohen,1270954699 +139300,48394,alternate reality,1287438241 +139300,48394,atmospheric,1287438242 +139300,48394,bittersweet,1287438239 +139300,48394,surreal,1287438237 +139300,48516,corruption,1270955063 +139300,48516,gangsters,1270955061 +139300,48516,Jack Nicholson,1270955049 +139300,48516,Leonardo DiCaprio,1252269460 +139300,48516,Martin Scorsese,1270955059 +139300,48516,Matt Damon,1270955052 +139300,48516,organized crime,1270955055 +139300,48516,police corruption,1252269466 +139300,48516,undercover cop,1270955057 +139300,48774,apocalypse,1254325515 +139300,48774,atmospheric,1254325515 +139300,48774,Clive Owen,1254325496 +139300,48774,end of the world,1254325500 +139300,48774,future,1254325511 +139300,48774,Michael Caine,1254325503 +139300,48774,sci-fi,1254325508 +139300,48774,survival,1254325504 +139300,48780,atmospheric,1251676280 +139300,48780,Christian Bale,1251676260 +139300,48780,Hugh Jackman,1251676263 +139300,48780,Michael Caine,1251676268 +139300,48780,mystery,1312844320 +139300,48780,nonlinear,1251676272 +139300,48780,obsession,1251676283 +139300,48780,psychological,1312844319 +139300,48780,surprising ending,1251676267 +139300,48780,teleportation,1251676274 +139300,49272,espionage,1270954774 +139300,49272,James Bond,1270954772 +139300,49272,spies,1270954777 +139300,49278,Denzel Washington,1270955038 +139300,49278,time travel,1270955043 +139300,49278,Tony Scott,1270955044 +139300,49396,Jack Black,1271870265 +139300,49396,Kyle Gass,1271870266 +139300,49396,metal,1299285297 +139300,49530,Civil War,1386285356 +139300,49530,journalism,1386285354 +139300,49530,Leonardo DiCaprio,1251727554 +139300,49530,smuggling,1386285359 +139300,49651,boxing,1271869968 +139300,49651,earnest,1323792856 +139300,49651,Inspiring,1323792852 +139300,49651,reflective,1323792847 +139300,49651,Sylvester Stallone,1271869962 +139300,50872,food/cooking,1364148004 +139300,50872,imaginary friend,1364148007 +139300,50872,pixar,1364148000 +139300,51255,black comedy,1270996107 +139300,51255,british comedy,1270996110 +139300,51255,Edgar Wright,1270996103 +139300,51255,Simon Pegg,1270996101 +139300,51540,based on a true story,1251676433 +139300,51540,David Fincher,1251676436 +139300,51540,Robert Downey Jr,1251676422 +139300,51540,Robert Downey Jr.,1251676426 +139300,51540,serial killer,1251676426 +139300,51540,true story,1251676432 +139300,51540,unresolved,1304695906 +139300,51662,action,1270954229 +139300,51935,conspiracy,1310383275 +139300,51935,Mark Wahlberg,1271870071 +139300,51935,shooter,1271870078 +139300,51935,sniper,1271870074 +139300,52241,Isla Fisher,1271033970 +139300,52241,Joseph Gordon-Levitt,1271033968 +139300,52245,Jenna Fischer,1270954613 +139300,52245,Jon Heder,1270954620 +139300,52245,Will Arnett,1270954616 +139300,52245,Will Ferrell,1270954612 +139300,52973,absolutely hilarious,1252270993 +139300,52973,Jason Segel,1252270995 +139300,52973,Judd Apatow,1252270998 +139300,52973,Judd Apatow movie,1252271000 +139300,52973,Paul Rudd,1252271004 +139300,53125,BORING!,1271183240 +139300,53972,action packed,1271033947 +139300,53972,bruce willis,1271033950 +139300,53972,terrorism,1271033960 +139300,53996,transformation,1271870323 +139300,54001,alan rickman,1323711652 +139300,54001,Gary Oldman,1323711654 +139300,54001,Ralph Fiennes,1323711656 +139300,54256,Andy Samberg,1270996115 +139300,54256,Bill Hader,1270996118 +139300,54256,Isla Fisher,1270996121 +139300,54256,Will Arnett,1270996123 +139300,54259,coming of age,1367702631 +139300,54259,Robert De Niro,1367702619 +139300,54259,whimsical,1367702622 +139300,54272,Hank Azaria,1271870102 +139300,54281,Anton Yelchin,1252269582 +139300,54281,Robert Downey Jr.,1252269576 +139300,54286,espionage,1270954734 +139300,54286,Matt Damon,1270954731 +139300,54286,murder,1270954741 +139300,54286,Robert Ludlum,1270954732 +139300,54286,spies,1270954738 +139300,54503,high school,1252270780 +139300,54503,HIGH SCHOOL LIFE,1252270782 +139300,54503,Judd Apatow movie,1252270776 +139300,54503,Michael Cera,1252270773 +139300,54503,police,1252270786 +139300,54503,self discovery,1252270772 +139300,54503,Seth Rogen,1252270770 +139300,54736,explosions,1271033879 +139300,54736,Jamie Foxx,1271033868 +139300,54736,Jason Bateman,1271033874 +139300,54736,Jennifer Garner,1271033870 +139300,54736,terrorism,1271033877 +139300,54881,documentary,1271033858 +139300,54881,underdog,1310229951 +139300,54881,video games,1271033855 +139300,54997,Ben Foster,1254239301 +139300,54997,Christian Bale,1254239307 +139300,54997,Russell Crowe,1254239310 +139300,54997,violent,1254239313 +139300,55031,Kevin Smith,1270951949 +139300,55031,Scott Mosier,1270951952 +139300,55176,archive footage,1270996278 +139300,55176,aviation,1270996285 +139300,55176,History,1270996280 +139300,55176,space,1270996283 +139300,55290,Casey Affleck,1255291946 +139300,55290,detective,1255291954 +139300,55290,Ed Harris,1255291951 +139300,55290,Morgan Freeman,1255291950 +139300,55290,police investigation,1255291955 +139300,55765,Denzel Washington,1270954333 +139300,55765,Russell Crowe,1270954336 +139300,55820,Adaptation,1255209758 +139300,55820,brutal,1255209771 +139300,55820,great acting,1255209768 +139300,55820,tension,1255209762 +139300,55820,Tommy Lee Jones,1255209763 +139300,56012,Kevin Smith,1270951995 +139300,56145,giant monster,1284066893 +139300,56174,alone in the world,1270996144 +139300,56174,last man on earth,1270996152 +139300,56174,post-apocalyptic,1270996146 +139300,56174,Will Smith,1270996142 +139300,56367,Ellen Page,1270996474 +139300,56367,Jason Reitman,1270996476 +139300,56367,Jennifer Garner,1270996479 +139300,56367,Michael Cera,1270996481 +139300,56367,notable soundtrack,1270996483 +139300,56782,Daniel Day-Lewis,1385928662 +139300,56782,western,1385928675 +139300,56921,space,1282151411 +139300,56921,war,1282151415 +139300,57368,alien monster,1251676387 +139300,57368,city under attack,1270954862 +139300,57368,Drew Goddard,1270954872 +139300,57368,mockumentary,1251676405 +139300,57368,monster,1251676394 +139300,57368,New York City,1270954869 +139300,57368,sci-fi,1251676390 +139300,57528,Sylvester Stallone,1271183323 +139300,57528,violent,1435941488 +139300,57640,beautiful effects,1270996070 +139300,57640,Guillermo del Toro,1270996060 +139300,57640,Ron Perlman,1270996062 +139300,57640,superhero,1270996065 +139300,57669,assassin,1253920876 +139300,57669,Colin Farrell,1253920853 +139300,57669,comedy,1253920881 +139300,57669,dark comedy,1253920881 +139300,57669,foul language,1253920873 +139300,57669,hitman,1253920870 +139300,57669,irish accent,1253920855 +139300,57669,Ralph Fiennes,1253920858 +139300,57669,stylized,1253920860 +139300,57669,suicide,1253920867 +139300,57669,violent,1253920864 +139300,58103,assassination,1271870369 +139300,58103,multiple storylines,1271870371 +139300,58156,Will Arnett,1271870033 +139300,58156,Will Ferrell,1271870036 +139300,58559,action,1251676353 +139300,58559,based on a comic,1251676356 +139300,58559,Batman,1251676346 +139300,58559,Christian Bale,1251676350 +139300,58559,Gary Oldman,1251676359 +139300,58559,Heath Ledger,1251676343 +139300,58559,Michael Caine,1251676373 +139300,58559,Morgan Freeman,1251676363 +139300,58559,serial killer,1251676367 +139300,58559,superhero,1251676368 +139300,58559,vigilante,1251676372 +139300,58998,Jason Segel,1270992001 +139300,58998,Kristen Bell,1270992010 +139300,58998,Paul Rudd,1270992007 +139300,59315,android(s)/cyborg(s),1251676239 +139300,59315,arms dealer,1251676241 +139300,59315,based on a comic,1251676243 +139300,59315,comic book,1251676246 +139300,59315,Marvel,1251676234 +139300,59315,military,1251676248 +139300,59315,Robert Downey Jr.,1251676228 +139300,59315,superhero,1251676231 +139300,59315,technology,1251676256 +139300,59315,vigilante,1251676253 +139300,59336,Chiwetel Ejiofor,1271869904 +139300,59369,Liam Neeson,1283121293 +139300,59369,thriller,1283121298 +139300,59369,unrealistic,1283121301 +139300,59615,aliens,1280802238 +139300,59615,Harrison Ford,1270996334 +139300,59615,stupid,1280802241 +139300,59621,bank robbery,1270953849 +139300,59731,Arnold Schwarzenegger,1253901010 +139300,59731,cheating,1253901014 +139300,59731,sports,1253901018 +139300,59731,steroids,1253901018 +139300,59784,Jack Black,1271033922 +139300,59784,Kung Fu,1271033924 +139300,59784,martial arts,1271033926 +139300,59810,corruption,1252262234 +139300,59810,election,1252262228 +139300,59810,Kevin Spacey,1252262241 +139300,60040,Edward Norton,1270996291 +139300,60069,pixar,1271870377 +139300,60471,Michael Vartan,1254946075 +139300,60471,Radha Mitchell,1271869997 +139300,60674,Stargate,1271870215 +139300,60684,based on a comic,1251676463 +139300,60684,cold war,1251676483 +139300,60684,comic book,1251676465 +139300,60684,graphic novel,1251676468 +139300,60684,nuclear war,1251676480 +139300,60684,sci-fi,1251676470 +139300,60684,stylized violence,1251676473 +139300,60684,superhero,1251676477 +139300,60766,actual footage,1284930741 +139300,60766,emotion,1284930748 +139300,60766,Obsessed protagonist,1284930747 +139300,60766,twin towers,1284930744 +139300,61024,bromantic,1390248757 +139300,61024,buddy movie,1390248755 +139300,61024,James Franco,1390248746 +139300,61024,Seth Rogen,1390248749 +139300,61132,Ben Stiller,1271870332 +139300,61132,Robert Downey Jr.,1271870335 +139300,61240,Beautiful,1280095463 +139300,61240,black humour,1280095467 +139300,61240,swedish,1280095471 +139300,61240,vampire,1280095475 +139300,61240,vampires,1280095472 +139300,61729,Ricky Gervais,1279462266 +139300,62374,espionage,1385936990 +139300,62374,Leonardo DiCaprio,1385936982 +139300,62374,Ridley Scott,1385936986 +139300,62374,Russell Crowe,1385936984 +139300,62394,Beau Bridges,1309466281 +139300,62394,Mark Wahlberg,1309466265 +139300,62394,Script,1309466271 +139300,62394,Visuals,1309466269 +139300,62434,Elizabeth Banks,1271870421 +139300,62434,Kevin Smith,1271870419 +139300,63062,angelina jolie,1296339054 +139300,63062,Clint Eastwood,1296339057 +139300,63062,police corruption,1296339061 +139300,63082,feel-good,1252442809 +139300,63082,gritty,1252442811 +139300,63082,music,1252442814 +139300,63082,nonlinear,1252442818 +139300,63082,poverty,1252442819 +139300,63082,violence,1252442821 +139300,63113,Daniel Craig,1274441804 +139300,63113,James Bond,1353164280 +139300,63131,Elizabeth Banks,1252271015 +139300,63131,Paul Rudd,1252271017 +139300,63131,Seann William Scott,1252271019 +139300,64116,original,1368047135 +139300,64839,aging,1251676132 +139300,64839,Aronofsky,1251676120 +139300,64839,sports,1251676147 +139300,66509,Adam Sandler,1259414392 +139300,66509,honest,1259414406 +139300,66509,Judd Apatow,1259414396 +139300,66509,Leslie Mann,1259414402 +139300,66509,Seth Rogen,1259414395 +139300,66509,stand-up comedy,1259414399 +139300,66785,Funny,1302253570 +139300,66785,gunfights,1302253581 +139300,66785,Kang-ho Song,1302253575 +139300,66785,slapstick,1302253573 +139300,66785,treasure hunt,1302253578 +139300,66934,anti-hero,1275430110 +139300,66934,Captain Hammer,1275430107 +139300,66934,Dr. Horrible,1275430104 +139300,66934,good dialogue,1275430112 +139300,66934,joss whedon,1275430092 +139300,66934,mad scientist,1275430094 +139300,66934,Nathan Fillion,1275430089 +139300,66934,Neil Patrick Harris,1275430090 +139300,67087,Andy Samberg,1270996164 +139300,67087,Jaime Pressly,1270996172 +139300,67087,Jason Segel,1270996165 +139300,67087,Paul Rudd,1270996167 +139300,67087,Rashida Jones,1270996169 +139300,67197,bad science,1271033905 +139300,67197,father-son relationship,1271033912 +139300,67197,Nicolas Cage,1271033915 +139300,67695,Seth Rogen,1259414496 +139300,67734,Jesse Eisenberg,1252270919 +139300,67734,Kristen Stewart,1252270921 +139300,67734,Ryan Reynolds,1252270924 +139300,67923,cars,1304890277 +139300,67923,Ridiculous,1304890279 +139300,67923,Vin Diesel,1304890273 +139300,68157,alternate history,1252355618 +139300,68157,Brad Pitt,1252355613 +139300,68157,Christoph Waltz,1252355614 +139300,68157,Dead Nazis,1252355621 +139300,68157,gratuitous violence,1252355630 +139300,68157,unusual plot structure,1252355635 +139300,68157,violence,1252355638 +139300,68157,World War II,1252355643 +139300,68159,Ben Affleck,1259414426 +139300,68159,Helen Mirren,1259414421 +139300,68159,Rachel McAdams,1259414424 +139300,68159,Russell Crowe,1259414422 +139300,68237,clones,1258490287 +139300,68237,dystopia,1258490292 +139300,68237,moon,1258490291 +139300,68237,Sam Rockwell,1258490298 +139300,68237,Sci-fi,1258490299 +139300,68237,space,1258490302 +139300,68319,Ryan Reynolds,1259414536 +139300,68358,action,1251676157 +139300,68358,adventure,1251676159 +139300,68358,funny,1251676188 +139300,68358,sci-fi,1251676184 +139300,68358,space,1251676174 +139300,68358,space travel,1251676172 +139300,68358,Star Trek,1251676168 +139300,68358,teleportation,1251676179 +139300,68358,time travel,1251676177 +139300,68659,star wars,1270991977 +139300,68791,bad plot,1252270802 +139300,68791,bad script,1252270803 +139300,68791,cheesy morals,1252270807 +139300,68791,Christian Bale,1271870289 +139300,68791,No humor,1252270812 +139300,68954,Pixar,1271870353 +139300,69122,comedy,1251676315 +139300,69122,great soundtrack,1251676318 +139300,69122,Las Vegas,1270992251 +139300,69122,police,1270992253 +139300,69122,Zach Galifinakis,1251676313 +139300,69458,boxing,1251676446 +139300,69458,sports,1251676443 +139300,69481,action,1270996135 +139300,69481,realistic,1270996132 +139300,69481,War,1270996128 +139300,69526,Michael Bay,1259414522 +139300,69526,ridiculous,1259414519 +139300,69640,1930s,1259414447 +139300,69640,bank robbery,1259414450 +139300,69640,Dillinger,1259414455 +139300,69640,gangsters,1259414453 +139300,69640,Johnny Depp,1259414458 +139300,69640,Michael Mann,1259414461 +139300,69757,cynicism,1259414383 +139300,69757,humor,1259414380 +139300,69757,Joseph Gordon-Levitt,1259414372 +139300,69757,Zooey Deschanel,1259414374 +139300,69844,Alan Rickman,1323805786 +139300,69844,Helena Bonham Carter,1323805790 +139300,70032,Zach Galifianakis,1280768883 +139300,70286,aliens,1270991815 +139300,70286,alternate history,1270991813 +139300,70286,genetics,1270991816 +139300,70286,humor,1270991824 +139300,70286,intelligent sci-fi,1270991811 +139300,70286,sci-fi,1270991819 +139300,70286,transformation,1270991821 +139300,71106,Chris O'Dowd,1379259211 +139300,71106,nerds,1379259214 +139300,71106,time travel,1379259216 +139300,71264,Andy Samberg,1264559828 +139300,71264,Bill Hader,1264559839 +139300,71264,Bruce Campbell,1264559835 +139300,71264,Neil Patrick Harris,1264559833 +139300,71500,Dylan Baker,1287158373 +139300,71500,multiple storylines,1287158369 +139300,71520,Jennifer Garner,1279462279 +139300,71520,Louis C.K.,1279462275 +139300,71520,Ricky Gervais,1279462271 +139300,71520,riddled with cliché,1279462284 +139300,71535,Abigail Breslin,1265072445 +139300,71535,Emma Stone,1265072454 +139300,71535,Jesse Eisenberg,1265072449 +139300,71535,Woody Harrelson,1265072450 +139300,71535,zombies,1265072459 +139300,72011,airport,1270951677 +139300,72011,George Clooney,1270951673 +139300,72011,Jason Bateman,1271870357 +139300,72998,badass colonel,1261510039 +139300,72998,futuristic,1270954423 +139300,72998,James Cameron,1270954417 +139300,72998,military,1270954420 +139300,72998,sci-fi,1261510134 +139300,73017,Robert Downey Jr.,1264559604 +139300,73017,Sherlock Holmes,1264559608 +139300,73321,Denzel Washington,1385766275 +139300,73321,dystopic future,1385766279 +139300,73321,Gary Oldman,1385766277 +139300,73321,twist ending,1385766284 +139300,74152,Zach Galifianakis,1281913859 +139300,74458,Jackie Earle Haley,1270951639 +139300,74458,Leonardo DiCaprio,1270951633 +139300,74458,Mark Ruffalo,1270951636 +139300,74458,Martin Scorsese,1270951631 +139300,74458,psychological,1270951644 +139300,74545,black humour,1293148607 +139300,74545,Ewan McGregor,1293148604 +139300,74795,Matt Damon,1270951658 +139300,74795,Paul Greengrass,1270951663 +139300,76093,Christopher Mintz-Plasse,1286915231 +139300,76093,Gerard Butler,1286915241 +139300,76093,I wanted to hug this movie,1286915235 +139300,76093,Jonah Hill,1286915244 +139300,76093,vikings,1286915238 +139300,76210,superhero,1270954011 +139300,76210,vigilante,1270954013 +139300,76210,Woody Harrelson,1270954009 +139300,76251,Christopher Mintz-Plasse,1271870440 +139300,76251,comic book,1297804732 +139300,76251,great soundtrack,1297804743 +139300,76251,Hit Girl,1271870442 +139300,76251,humor,1297804739 +139300,76251,humorous,1297804737 +139300,76251,Lyndsy Fonseca,1271870446 +139300,76251,Matthew Vaughn,1271870443 +139300,76251,Nicolas Cage,1297804734 +139300,76251,original plot,1297804745 +139300,76251,soundtrack,1297804740 +139300,76251,superhero,1271870438 +139300,77561,based on a comic,1273447003 +139300,77561,Jon Favreau,1273446989 +139300,77561,Mickey Rourke,1273446999 +139300,77561,Robert Downey Jr.,1273447001 +139300,77561,Sam Rockwell,1273446992 +139300,77561,Samuel L. Jackson,1273446994 +139300,77561,superhero,1273447008 +139300,77667,Stupid as Hell,1429006645 +139300,78034,Christian Cooke,1280621862 +139300,78034,Jack Doolan,1280621870 +139300,78034,Ricky Gervais,1280621863 +139300,78034,Stephen Merchant,1280621867 +139300,78034,Tom Hughes,1280621864 +139300,78088,Ryan Reynolds,1293217019 +139300,78160,Ricky Gervais,1279462236 +139300,78162,Ricky Gervais,1279462232 +139300,78499,Don Rickles,1287176126 +139300,78499,Pixar,1287176131 +139300,78499,Tim Allen,1287176134 +139300,78499,Tom Hanks,1287176129 +139300,78544,Ricky Gervais,1281660087 +139300,78574,cinematography,1292447374 +139300,78574,Jennifer Lawrence,1292447369 +139300,78574,John Hawkes,1292447370 +139300,78574,resilience,1292447377 +139300,78729,Robert Carlyle,1282151396 +139300,79091,animation,1437408154 +139300,79091,funny,1437408153 +139300,79091,heartwarming,1437408151 +139300,79091,mad scientist,1437408152 +139300,79091,minions,1437408155 +139300,79091,Steve Carell,1437408157 +139300,79132,alternate reality,1279819896 +139300,79132,Christopher Nolan,1279819873 +139300,79132,dreamlike,1290033230 +139300,79132,Ellen Page,1279819890 +139300,79132,fast paced,1290033234 +139300,79132,Joseph Gordon-Levitt,1279819877 +139300,79132,Ken Watanabe,1279819885 +139300,79132,Leonardo DiCaprio,1279819878 +139300,79132,Marion Cotillard,1279819887 +139300,79132,music,1290033224 +139300,79132,Tom Hardy,1279819880 +139300,79132,visually appealing,1290033222 +139300,79242,Mark Ruffalo,1298412838 +139300,79592,Mark Wahlberg,1297202289 +139300,79592,Michael Keaton,1297202283 +139300,79592,Will Ferrell,1297202286 +139300,79702,cultural references,1288386159 +139300,79702,Edgar Wright,1288386162 +139300,79702,Kieran Culkin,1288386154 +139300,79702,Mary Elizabeth Winstead,1288386152 +139300,79702,Michael Cera,1288386151 +139300,79702,video games,1288386158 +139300,80463,based on true story,1288210803 +139300,80463,computers,1288210800 +139300,80463,Jesse Eisenberg,1288210796 +139300,80489,Ben Affleck,1288441621 +139300,80489,Direction,1288441628 +139300,80489,place driven,1288441627 +139300,80549,Emma Stone,1318368021 +139300,80549,family relationships,1318368027 +139300,80549,high school,1318368035 +139300,80549,satire,1318368032 +139300,81562,danny boyle,1294434275 +139300,81562,true story,1294434277 +139300,81591,Darren Aronofsky,1293055672 +139300,81591,Mila Kunis,1293055675 +139300,81591,Natalie Portman,1293055674 +139300,81834,Alan Rickman,1323902587 +139300,81834,Helena Bonham Carter,1323902586 +139300,81834,Ralph Fiennes,1323902584 +139300,81845,based on a true story,1298326921 +139300,81845,disability,1298326924 +139300,81845,father-son relationship,1298326933 +139300,81845,friendship,1298326935 +139300,81845,Guy Pearce,1298326919 +139300,81845,true story,1298326928 +139300,81845,war,1298326926 +139300,81932,Amy Adams,1298846028 +139300,81932,Christian Bale,1298846030 +139300,81932,drug addict,1298846035 +139300,81932,Mark Wahlberg,1298846025 +139300,81932,sports,1298846032 +139300,81932,true story,1298846034 +139300,82459,Barry Pepper,1293920728 +139300,82459,Coen Brothers,1293920730 +139300,82459,Jeff Bridges,1293920722 +139300,82459,Josh Brolin,1293920724 +139300,82459,Matt Damon,1293920725 +139300,82461,artificial intelligence,1314993874 +139300,82461,computers,1314993872 +139300,82461,daft punk,1293148591 +139300,82461,Jeff Bridges,1293148592 +139300,82461,virtual reality,1314993866 +139300,82744,cliche,1296823145 +139300,82744,Dwayne Johnson,1296823143 +139300,83134,absurd,1393795554 +139300,83134,black comedy,1393795556 +139300,83134,horror comedy,1393795560 +139300,83134,satire,1393795558 +139300,83219,movie business,1299285150 +139300,83349,Christoph Waltz,1295565275 +139300,83349,comic book,1295565284 +139300,83349,gadgets,1295565280 +139300,83349,parody,1295565286 +139300,83349,Seth Rogen,1295565277 +139300,83506,Ricky Gervais,1390248763 +139300,84152,Bradley Cooper,1302801130 +139300,84152,concept,1302801135 +139300,84152,Robert De Niro,1302801137 +139300,84772,character development,1329168923 +139300,84772,Kristen Wiig,1329168917 +139300,84772,Nick Frost,1329168914 +139300,84772,Seth Rogen,1329168918 +139300,84772,Simon Pegg,1329168913 +139300,84944,cowboys,1329000366 +139300,84944,great voice acting,1329000368 +139300,84944,heroic journey,1329000370 +139300,84944,Johnny Depp,1329000359 +139300,84944,self discovery,1329000372 +139300,84944,Soundtrack,1329000363 +139300,84944,spaghetti western,1329000361 +139300,84944,western,1329000362 +139300,84954,Emily Blunt,1300392958 +139300,84954,Matt Damon,1300392958 +139300,84954,Philip K. Dick,1312319684 +139300,85414,Duncan Jones,1305229370 +139300,85414,Jake Gyllenhaal,1305229373 +139300,85774,sports,1315059772 +139300,85881,adolescent psychology,1329686251 +139300,85881,Alex Shaffer,1329686249 +139300,85881,elder care,1329686265 +139300,85881,Paul Giamatti,1329686270 +139300,85881,Thomas McCarthy,1329686273 +139300,86332,3d,1306874504 +139300,86332,Chris Hemsworth,1304971509 +139300,86332,comic book,1304971519 +139300,86332,Kenneth Branagh,1304971520 +139300,86332,mythology,1304971515 +139300,86332,Natalie Portman,1304971514 +139300,86332,viking's mythology,1304971516 +139300,86345,Louis C.K.,1304802836 +139300,86644,cars,1304971527 +139300,86833,Chris O'Dowd,1326144461 +139300,86833,flawed characters,1326144466 +139300,86833,Kristen Wiig,1326144469 +139300,86882,Adrien Brody,1329891039 +139300,86882,Owen Wilson,1329891037 +139300,86882,thought-provoking,1329891044 +139300,86882,time travel,1329891045 +139300,86882,whimsical,1329891047 +139300,87232,comic book,1308086177 +139300,87232,covert operation,1308086179 +139300,87232,Matthew Vaughn,1307688555 +139300,87232,superhero,1308086169 +139300,87306,Elle Fanning,1437581360 +139300,87306,J.J. Abrams,1312485596 +139300,87306,Lens flares,1312485599 +139300,87306,Steven Spielberg,1437581364 +139300,87306,Story,1312485601 +139300,87869,Colin Farrell,1379277380 +139300,87869,jason bateman,1379277378 +139300,87869,Jennifer Aniston,1379277376 +139300,88125,Daniel Radcliffe,1323982314 +139300,88125,Emma Watson,1323982316 +139300,88125,great acting,1323982320 +139300,88125,Ralph Fiennes,1323982311 +139300,88125,Rupert Grint,1323982326 +139300,88125,top-notch special effects,1323982324 +139300,88127,stand-up comedy,1316466999 +139300,88129,ambient music,1318274741 +139300,88129,atmospheric,1318274743 +139300,88129,minimalistic,1318274746 +139300,88129,ryan gosling,1318274748 +139300,88140,biographical style,1318715513 +139300,88140,Chris Evans,1318715500 +139300,88140,comic book,1318715515 +139300,88140,Hayley Atwell,1318715497 +139300,88140,Hugo Weaving,1318715498 +139300,88140,Marvel,1318715506 +139300,88163,Emma Stone,1318886757 +139300,88163,Ryan Gosling,1318886755 +139300,88744,genetics,1313686856 +139300,88744,James Franco,1313686853 +139300,89039,Brit Marling,1328735048 +139300,89343,Kevin Smith,1323019847 +139300,89343,shoot out,1323019852 +139300,89470,disease,1388269034 +139300,89470,Matt Damon,1388269027 +139300,89470,Steven Soderbergh,1388269030 +139300,89470,suspense,1388269035 +139300,89492,based on a true story,1329605394 +139300,89492,Brad Pitt,1329605396 +139300,89492,father daughter relationship,1329605399 +139300,89492,Philip Seymour Hoffman,1329605404 +139300,89492,Realistic,1329605406 +139300,89492,sports,1329605408 +139300,89492,true story,1329605409 +139300,89492,underdog,1329605412 +139300,89745,Captain America,1336420061 +139300,89745,Chris Evans,1336420063 +139300,89745,Chris Hemsworth,1336420064 +139300,89745,comic book,1336420065 +139300,89745,great humor,1336420066 +139300,89745,great screenplay,1336420069 +139300,89745,Hulk,1336420072 +139300,89745,Iron Man,1336420075 +139300,89745,joss whedon,1336420076 +139300,89745,Loki,1336420078 +139300,89745,Mark Ruffalo,1336420079 +139300,89745,Robert Downey Jr.,1336420082 +139300,89745,samuel jackson,1336420083 +139300,89745,Scarlett Johansson,1336420085 +139300,89745,superhero,1336420090 +139300,89745,superhero team,1336420087 +139300,89745,Tom Hiddleston,1336420093 +139300,89774,Gavin O'Connor,1324075393 +139300,89774,MMA,1324075396 +139300,89774,Nick Nolte,1324075398 +139300,89774,Tom Hardy,1324075400 +139300,89804,Evan Rachel Wood,1328824729 +139300,89804,George Clooney,1328824733 +139300,89804,Paul Giamatti,1328824736 +139300,89804,Phillip Seymour Hoffman,1328824739 +139300,89804,Ryan Gosling,1328824741 +139300,89864,Anna Kendrick,1329342514 +139300,89864,emotional,1329342524 +139300,89864,Joseph Gordon-Levitt,1329342526 +139300,89864,Seth Rogen,1329342528 +139300,89864,touching,1329342530 +139300,90746,action right from the start to the very end,1321380789 +139300,90746,friendship,1321380794 +139300,90746,Simon Pegg,1321380801 +139300,90746,Steven Spielberg,1321380808 +139300,90866,bittersweet,1376171887 +139300,90866,Martin Scorsese,1376171883 +139300,90866,Sacha Baron Cohen,1376171889 +139300,91077,family bonds,1352755745 +139300,91077,George Clooney,1352755743 +139300,91094,comeback,1386026451 +139300,91094,Jason Segel,1386026449 +139300,91094,muppets,1386026453 +139300,91094,puppets,1386026454 +139300,91500,battle royale,1333032704 +139300,91500,intense,1333032706 +139300,91500,shaky camera,1333032711 +139300,91500,social comentary,1333032713 +139300,91500,television,1333032709 +139300,91529,Batman,1356197306 +139300,91529,Christian Bale,1356197304 +139300,91529,Gary Oldman,1356197309 +139300,91529,Michael Caine,1356197313 +139300,91529,Morgan Freeman,1356197311 +139300,91529,superhero,1356197315 +139300,91630,Brad Bird,1328651466 +139300,91630,comedic moments,1328651473 +139300,91630,Simon pegg,1328651462 +139300,91630,spy team,1328651475 +139300,91630,Tom Cruise,1328651464 +139300,92008,spy on the run,1344784324 +139300,92420,revenge,1335559420 +139300,92420,sci-fi,1335559418 +139300,92420,supernatural powers,1335559416 +139300,92420,teenage angst,1335559422 +139300,93443,hockey,1357512708 +139300,93443,sport:hockey,1357512706 +139300,93443,sport:ice hockey,1357512703 +139300,93510,Channing Tatum,1341782124 +139300,93510,Johnny Depp,1341782121 +139300,93510,Jonah Hill,1341782118 +139300,93510,self-aware,1341782128 +139300,93510,undercover cops,1341782126 +139300,93721,craftmanship,1372798786 +139300,93721,inspirational,1372798784 +139300,93838,brutal,1390514942 +139300,93838,martial arts,1390514940 +139300,93838,visceral,1390514939 +139300,93840,Chris Helmsworth,1335469626 +139300,93840,Drew Goddard,1335469594 +139300,93840,joss whedon,1335469624 +139300,93840,Kristen Connelly,1335469621 +139300,93840,meta,1335469633 +139300,93840,original,1335469630 +139300,93840,original plot,1335469632 +139300,94864,Charlize Theron,1339964495 +139300,94864,horrible ending,1339964488 +139300,94864,Idris Elba,1339964497 +139300,94864,Michael Fassbender,1339964499 +139300,94864,Sets,1339964503 +139300,95167,coming of age,1439131372 +139300,95167,mother-daughter relationships,1439131370 +139300,95167,No Marriage at the End,1439131378 +139300,95167,Pixar,1439131367 +139300,95441,Mark Wahlberg,1344868871 +139300,95441,Patrick Stewart,1344868869 +139300,96079,beautifully filmed,1351529648 +139300,96079,Daniel Craig,1351529650 +139300,96079,focused,1351529658 +139300,96079,James Bond,1351529660 +139300,96079,Javier Bardem,1353164248 +139300,96079,Judi Dench,1353164246 +139300,96079,Sam Mendes,1351529655 +139300,96610,Bruce Willis,1352755700 +139300,96610,Joseph Gordon-Levitt,1352755697 +139300,96610,mother-son relationship,1352755706 +139300,96610,organized crime,1352755708 +139300,96610,sci-fi,1352755712 +139300,96737,corruption,1379178102 +139300,96737,police corruption,1379178098 +139300,96811,character chemistry,1386628408 +139300,96811,comraderie,1386628403 +139300,96811,excellent acting,1386628405 +139300,96811,good ending,1386628395 +139300,96811,Jake Gyllenhaal,1386628389 +139300,96811,Original story,1386628401 +139300,96811,poignant,1386628400 +139300,96811,police,1386628398 +139300,96811,realistic action,1386628393 +139300,96811,realistic relationships,1386628392 +139300,97304,Ben Affleck,1352755723 +139300,97304,Bryan Cranston,1352755726 +139300,97304,John Goodman,1352755728 +139300,97913,John C. Reilly,1429364820 +139300,97913,nostalgic,1429364817 +139300,97913,video games,1429364815 +139300,97921,David O. Russell,1375479195 +139300,97921,father-son relationship,1375479201 +139300,97921,loneliness,1375479198 +139300,97921,Robert De Niro,1375479193 +139300,98809,beautiful scenery,1356197273 +139300,98809,dwarf,1356197277 +139300,98809,soundtrack,1356197287 +139300,98961,Jessica Chastain,1385250015 +139300,99112,Tom Cruise,1357747183 +139300,99114,Christoph Waltz,1358285251 +139300,99114,Jamie Foxx,1358285254 +139300,99114,Leonardo DiCaprio,1358285253 +139300,99114,Over the top,1358285263 +139300,99114,Quentin Tarantino,1358285256 +139300,99114,Samuel L. Jackson,1358285258 +139300,99114,Spaghetti Western,1358285260 +139300,101864,Morgan Freeman,1366320518 +139300,101864,Tom Cruise,1366320517 +139300,102033,based on a true story,1389738731 +139300,102033,Dwayne Johnson,1389738722 +139300,102033,Mark Wahlberg,1389738725 +139300,102033,The Rock,1389738729 +139300,102033,tragic events as comedy,1389738727 +139300,102123,Danny McBride,1390169439 +139300,102123,James Franco,1390169438 +139300,102123,Michael Cera,1390169433 +139300,102123,movie business,1390169443 +139300,102123,Seth Rogen,1390169436 +139300,102125,Ben Kingsley,1367702598 +139300,102125,Guy Pearce,1367702603 +139300,102125,Iron Man,1367702601 +139300,102125,Marvel Cinematic Universe,1367702607 +139300,102125,not afraid to take risks,1367702610 +139300,102125,Robert Downey Jr.,1367702599 +139300,102125,Shane Black,1367702596 +139300,102125,superhero,1367702613 +139300,102445,Anton Yelchin,1372798756 +139300,102445,bromance,1372798766 +139300,102445,fast paced,1372798764 +139300,102445,J.J. Abrams,1372798754 +139300,102445,John Cho,1372798758 +139300,102445,Simon Pegg,1372798751 +139300,102445,spock,1372798761 +139300,103042,great cast,1372798746 +139300,103141,comedy,1437941546 +139300,103141,Pixar,1437941544 +139300,103228,Guillermo del Toro,1376171899 +139300,103228,Idris Elba,1376171902 +139300,103228,Kaiju,1376171904 +139300,103228,mecha,1376171906 +139300,103228,Ron Perlman,1376171900 +139300,103253,dystopia,1376250550 +139300,103335,crude humor,1437733739 +139300,103335,family,1437733740 +139300,103335,Steve Carell,1437733738 +139300,103341,Edgar Wright,1391378652 +139300,103341,Nick Frost,1391378657 +139300,103341,Simon Pegg,1391378655 +139300,103341,touching,1391378660 +139300,103772,Hugh Jackman,1386499937 +139300,103772,Japan,1386499940 +139300,103772,martial arts,1386499939 +139300,103772,superhero,1386499945 +139300,103883,military,1434813446 +139300,104841,George Clooney,1385249974 +139300,104841,intense,1385249980 +139300,104841,sandra bullock,1385249970 +139300,104841,space,1385249975 +139300,104879,acting,1429273279 +139300,104879,atmospheric,1429273281 +139300,104879,Denis Villeneuve,1429273275 +139300,104879,great ending,1429273277 +139300,104879,Hugh Jackman,1429273271 +139300,104879,Jake Gyllenhaal,1429273269 +139300,104879,morality,1429273272 +139300,104879,thriller,1429273273 +139300,104913,based on a true story,1379443034 +139300,104913,racing,1379443031 +139300,105504,Paul Greengrass,1385249993 +139300,105504,SEAL,1385249991 +139300,105504,suspense,1385249996 +139300,105504,tom hanks,1385249998 +139300,105504,true story,1385250000 +139300,105653,Escape,1385331708 +139300,105653,Jim Caviezel,1385331705 +139300,105653,Sylvester Stallone,1385331702 +139300,106072,Chris Hemsworth,1385249946 +139300,106072,Idris Elba,1385249948 +139300,106072,Jaimie Alexander,1385249951 +139300,106072,Tom Hiddleston,1385249953 +139300,106489,double frame rate,1387318702 +139300,106489,Peter Jackson,1387318701 +139300,106782,Anti-Hero,1402867582 +139300,106782,based on a true story,1402867584 +139300,106782,Leonardo DiCaprio,1402867571 +139300,106782,Martin Scorsese,1402867580 +139300,106782,Matthew McConaughey,1402867592 +139300,106782,Stock Market,1402867589 +139300,107000,history,1391948787 +139300,107000,space,1391948789 +139300,107406,chris evans,1405607413 +139300,107406,jamie bell,1405607417 +139300,107406,john hurt,1405607419 +139300,107406,Korean,1405607425 +139300,107406,tilda swinton,1405607414 +139300,107406,train,1405607422 +139300,107406,trains,1405607420 +139300,108709,realistic,1434877289 +139300,108709,TV miniseries,1434877291 +139300,108709,war,1434877293 +139300,108932,breaking the fourth wall,1402861421 +139300,108932,character development,1402861424 +139300,108932,imagination,1402861430 +139300,108932,inventor,1402861432 +139300,108932,Morgan Freeman,1402861433 +139300,108932,rebellion,1402861435 +139300,109374,Edward Norton,1418487625 +139300,109374,funny,1418487630 +139300,109374,Jeff Goldblum,1418487628 +139300,109374,Ralph Fiennes,1418487634 +139300,109374,visually appealing,1418487632 +139300,109374,Willem Dafoe,1418487627 +139300,109487,ambitious,1416680065 +139300,109487,Christopher Nolan,1416680047 +139300,109487,father - child relationship,1428422288 +139300,109487,good science,1428422282 +139300,109487,Hans Zimmer,1428422277 +139300,109487,Mackenzie Foy,1416680060 +139300,109487,Masterpiece,1428422293 +139300,109487,Matthew McConaughey,1416680046 +139300,109487,Michael Caine,1416680057 +139300,109487,philosophical issues,1428422281 +139300,109487,relativity,1416680073 +139300,109487,thought-provoking,1416680055 +139300,109487,time-travel,1416680058 +139300,109487,wormhole,1416680053 +139300,109850,cars,1424009437 +139300,110102,Anthony Russo,1396685877 +139300,110102,Chris Evans,1396685867 +139300,110102,Joe Russo,1396685870 +139300,110102,Marvel Cinematic Universe,1396685876 +139300,110102,Scarlett Johannson,1396685869 +139300,110102,superhero,1396685876 +139300,110501,car chase,1402867643 +139300,110501,Gareth Evans,1402867645 +139300,110501,iko uwais,1402867648 +139300,110501,mafia,1402867654 +139300,110501,visceral,1402867652 +139300,110553,comic book,1418140297 +139300,110553,Emma Stone,1418140295 +139300,111235,movie business,1404333982 +139300,111362,Ian McKellen,1402867634 +139300,111362,James McAvoy,1402867622 +139300,111362,Jennifer Lawrence,1402867631 +139300,111362,Michael Fassbender,1402867625 +139300,111362,Patrick Stewart,1402867626 +139300,111362,superhero,1402867629 +139300,111364,bland hero,1413622214 +139300,111364,Bryan Cranston,1413622217 +139300,111364,Creature Feature,1413622219 +139300,111364,Monster,1413622223 +139300,111759,Emily Blunt,1402867667 +139300,111759,time loop,1402867668 +139300,111759,Tom Cruise,1402867664 +139300,111781,Tom Cruise,1438786946 +139300,112138,Jonah Hill,1418140329 +139300,112138,Self-referential,1418140334 +139300,112138,undercover cop,1418140332 +139300,112183,alter ego,1424635983 +139300,112183,Edward Norton,1424635977 +139300,112183,Michael Keaton,1424635997 +139300,112183,satire,1424635981 +139300,112183,single shot,1424635985 +139300,112290,Ambitious,1420559142 +139300,112290,Ethan Hawke,1420559136 +139300,112290,Partricia Arquette,1420559138 +139300,112290,Richard Linklater,1420559139 +139300,112552,musicians,1421097663 +139300,112582,movie business,1405634000 +139300,112582,Steve James,1405633998 +139300,112623,Andy Serkis,1406146370 +139300,112623,Matt Reeves,1406146364 +139300,112852,characters with individual goals,1407175425 +139300,112852,Chris Pratt,1407175426 +139300,112852,Dave Bautista,1407175418 +139300,112852,fun,1407175433 +139300,112852,Marvel Cinematic Universe,1407175428 +139300,112852,talking animals,1407175430 +139300,112852,Teamwork,1420041640 +139300,113214,racing,1411224272 +139300,115149,Adrianne Palicki,1416776173 +139300,115149,Keanu Reeves,1416776172 +139300,115210,World War II,1415211451 +139300,115569,gripping,1417555838 +139300,115569,satire,1417555831 +139300,115569,transformative performance,1417555835 +139300,116797,Alan Turing,1424107535 +139300,116797,Benedict Cumberbatch,1424107537 +139300,116797,code breaking,1424107543 +139300,116797,Computers,1424107545 +139300,116797,cryptography,1424107539 +139300,116797,World War II,1424107542 +139300,117176,James Marsh,1424189841 +139300,117176,Stephen Hawking,1424189840 +139300,117529,dinosaurs,1434807555 +139300,122882,charlize theron,1434873117 +139300,122882,Colourful apocalypse,1434873131 +139300,122882,feminism,1434873121 +139300,122882,non-stop,1435941508 +139300,122882,post apocalypse,1434873119 +139300,122882,visually appealing,1434873130 +139300,122882,warlord,1434873126 +139300,122900,comic book,1437681401 +139300,122900,heist,1437681403 +139300,122900,Marvel,1437681402 +139300,127198,Rick Famuyiwa,1445199593 +139300,130634,happy ending,1428587292 +139300,134130,matt damon,1444853533 +139300,134130,Space,1444853532 +139300,134130,Survival Instinct,1444853537 +139300,134853,Amy Poehler,1445780290 +139300,134853,bittersweet,1445780286 +139300,134853,childhood,1445780281 +139300,134853,coming of age,1445780283 +139300,134853,emotions,1445780287 +139300,134853,imaginative,1445780284 +139300,134853,Pixar,1445780280 +139300,134853,psychology,1445780279 +139332,2571,existential,1440482025 +139332,2571,pseudo-philosophical,1440482034 +139332,2571,sci-fi,1440482017 +139357,1,animation,1447009769 +139357,1,Disney,1447009748 +139357,1,pixar,1447009751 +139357,4886,Animation,1447009790 +139357,4886,Disney,1447009788 +139357,4886,Pixar,1447009785 +139357,7153,epic,1447009843 +139357,7153,fantasy,1447009828 +139357,7153,multiple storylines,1447009837 +139361,50,complicated,1255300418 +139361,50,conspiracy,1255300420 +139361,50,Crime,1255300424 +139361,50,heist,1255300426 +139361,50,Kevin Spacey,1255300428 +139361,50,mindfuck,1255300430 +139361,50,organized crime,1255300432 +139361,50,suspense,1255300434 +139361,50,tricky,1255300436 +139361,50,twist ending,1255300438 +139361,215,conversation,1255300183 +139361,215,dialogue,1255300187 +139361,215,ethan hawke,1255300192 +139361,215,minimalist,1255300196 +139361,215,Vienna,1255300204 +139361,215,witty,1255300207 +139361,260,adventure,1264279292 +139361,260,aliens,1264279297 +139361,260,fantasy,1264279299 +139361,260,sci-fi,1264279302 +139361,260,space,1264279305 +139361,260,stylized,1264279309 +139361,260,sword fight,1264279312 +139361,293,Action,1255304831 +139361,293,assassin,1255304831 +139361,293,assassination,1255304836 +139361,293,Jean Reno,1255304841 +139361,293,Natalie Portman,1255304856 +139361,293,quirky,1255304858 +139361,380,Arnold Schwarzenegger,1264279045 +139361,380,comedy,1264279050 +139361,380,James Cameron,1264279048 +139361,555,Christian Slater,1264279020 +139361,555,dialogue,1264279022 +139361,555,Patricia Arquette,1264279028 +139361,555,romance,1264279036 +139361,555,Val Kilmer,1264279032 +139361,555,violence,1264279034 +139361,866,atmospheric,1255471550 +139361,866,tense,1255471555 +139361,1120,Courtney Love,1276469876 +139361,1120,Woody Harrelson,1276469878 +139361,1196,adventure,1264279268 +139361,1196,fantasy,1264279270 +139361,1196,George Lucas,1264279272 +139361,1196,great soundtrack,1264279278 +139361,1196,Harrison Ford,1264279276 +139361,1196,music,1264279281 +139361,1196,robots,1264279287 +139361,1196,sci-fi,1264279280 +139361,1196,space,1264279283 +139361,1196,star wars,1264279284 +139361,1201,Clint Eastwood,1273791665 +139361,1201,Ennio Morricone,1273791672 +139361,1201,long,1273791687 +139361,1201,western,1273791698 +139361,1210,action,1255300993 +139361,1210,adventure,1255300957 +139361,1210,fantasy,1255300961 +139361,1210,Harrison Ford,1255300967 +139361,1210,robots,1255300972 +139361,1210,sci-fi,1255300979 +139361,1210,sequel,1255300981 +139361,1210,space,1255300983 +139361,1210,Star Wars,1255300988 +139361,1210,war,1255300991 +139361,1240,Action,1264279164 +139361,1240,androids,1264279168 +139361,1240,Arnold Schwarzenegger,1264279170 +139361,1240,artificial intelligence,1264279172 +139361,1240,cyborgs,1264279173 +139361,1240,future,1264279175 +139361,1240,sci-fi,1264279178 +139361,1240,time travel,1264279177 +139361,1617,conspiracy,1255308867 +139361,1617,Crime,1255308870 +139361,1617,film noir,1255308871 +139361,1617,Kevin Spacey,1255308876 +139361,1617,Police,1255308882 +139361,1617,Russell Crowe,1255308882 +139361,1617,twist ending,1255308882 +139361,1625,David Fincher,1255311081 +139361,1625,Michael Douglas,1255311083 +139361,1625,mindfuck,1255311088 +139361,1625,Mystery,1255311091 +139361,1625,plot,1255311095 +139361,1625,psychological,1255311096 +139361,1625,the final twist,1255311100 +139361,1625,twist ending,1255311103 +139361,1639,Ben Affleck,1255471407 +139361,1639,great dialogue,1255471412 +139361,1639,Jason Lee,1255471414 +139361,1639,Kevin Smith,1255471417 +139361,1639,love story,1255471421 +139361,1639,sexual identity,1255471424 +139361,1639,sexuality,1255471428 +139361,2194,Brian De Palma,1264279001 +139361,2194,corruption,1264279003 +139361,2194,gangsters,1264279005 +139361,2194,police corruption,1264279011 +139361,2194,Robert De Niro,1264279007 +139361,2194,Sean Connery,1264279009 +139361,2502,comedy,1255304118 +139361,2502,corporate America,1255304120 +139361,2502,cult film,1255304124 +139361,2502,hilarious,1255304127 +139361,2502,off-beat comedy,1255304131 +139361,2502,office,1255304133 +139361,2502,quirky,1255304137 +139361,2502,satire,1255304147 +139361,2502,workplace,1255304149 +139361,2541,manipulation,1255471223 +139361,2541,Reese Witherspoon,1255471227 +139361,2541,Ryan Philippe,1255471232 +139361,2541,Sarah Michelle Gellar,1255471234 +139361,2542,black comedy,1273791905 +139361,2542,crime,1273791918 +139361,2542,dark comedy,1273791916 +139361,2542,Guy Ritchie,1273791907 +139361,2542,hilarious,1273791913 +139361,2542,organized crime,1273791910 +139361,2571,alternate reality,1255299754 +139361,2571,artificial intelligence,1255299452 +139361,2571,atmospheric,1255299454 +139361,2571,computers,1255299765 +139361,2571,cyberpunk,1255299424 +139361,2571,dystopia,1255299777 +139361,2571,fantasy,1255299464 +139361,2571,fight scenes,1255299783 +139361,2571,Keanu Reeves,1255299789 +139361,2571,philosophy,1255299799 +139361,2571,post apocalyptic,1255299429 +139361,2571,sci-fi,1255299429 +139361,2571,virtual reality,1255299434 +139361,2572,comedy,1264278726 +139361,2572,guilty pleasure,1264278715 +139361,2572,Heath Ledger,1264278704 +139361,2572,Joseph Gordon-Levitt,1264278710 +139361,2572,Julia Stiles,1264278713 +139361,2572,romantic,1264278719 +139361,2671,British,1255304257 +139361,2671,Good Romantic Comedies,1255304265 +139361,2671,Hugh Grant,1255304272 +139361,2671,Julia Roberts,1255304268 +139361,2671,romance,1255304282 +139361,2858,black comedy,1255471730 +139361,2858,comedy,1255471733 +139361,2858,coming of age,1255471737 +139361,2858,dark comedy,1255471740 +139361,2858,Kevin Spacey,1255471743 +139361,2858,satirical,1255471748 +139361,2858,social commentary,1255471750 +139361,2858,surrealism,1255471753 +139361,2858,thought-provoking,1255471757 +139361,2890,black comedy,1255300794 +139361,2890,comedy,1255300796 +139361,2890,George Clooney,1255300801 +139361,2890,Mark Wahlberg,1255300804 +139361,2890,military,1255300815 +139361,2890,satirical,1255300806 +139361,2890,stylized,1255300811 +139361,2890,treasure hunt,1255300820 +139361,2959,atmospheric,1255311393 +139361,2959,Brad Pitt,1255311396 +139361,2959,dark comedy,1255311401 +139361,2959,disturbing,1255311404 +139361,2959,Edward Norton,1255311408 +139361,2959,mental illness,1255311411 +139361,2959,psychology,1255311414 +139361,2959,social commentary,1255311417 +139361,2959,surreal,1255311420 +139361,2959,thought-provoking,1255311425 +139361,2959,twist ending,1255311422 +139361,2959,violence,1255311427 +139361,2966,road trip,1274050391 +139361,3275,dark humor,1255471583 +139361,3275,Irish,1255471587 +139361,3275,organized crime,1255471590 +139361,3275,religion,1255471598 +139361,3275,stylized,1255471601 +139361,3275,vigilantism,1255471594 +139361,3471,alien,1273276327 +139361,3471,aliens,1273276325 +139361,3471,first contact,1273276333 +139361,3471,Oscar (Best Cinematography),1273276338 +139361,3471,Sci-fi,1273276344 +139361,3471,space,1273276345 +139361,3471,Steven Spielberg,1273276340 +139361,4007,business,1270585125 +139361,4007,Charlie Sheen,1270585129 +139361,4007,Martin Sheen,1270585132 +139361,4007,Michael Douglas,1270585135 +139361,4007,stock market,1270585183 +139361,4034,corruption,1264279152 +139361,4306,animation,1264279346 +139361,4306,comedy,1264279349 +139361,4963,Brad Pitt,1255304228 +139361,4963,casino,1255304218 +139361,4963,crime,1255304231 +139361,4963,ensemble cast,1255304233 +139361,4963,George Clooney,1255304223 +139361,4963,heist,1255304236 +139361,4963,Julia Roberts,1255304238 +139361,4963,Las Vegas,1255304240 +139361,4963,Matt Damon,1255304244 +139361,4963,witty,1255304248 +139361,4993,Action,1255299959 +139361,4993,adventure,1255299967 +139361,4993,atmospheric,1255299567 +139361,4993,based on a book,1255299963 +139361,4993,based on book,1255299970 +139361,4993,fantasy,1255299972 +139361,4993,fantasy world,1255299974 +139361,4993,high fantasy,1255299979 +139361,4993,magic,1255299981 +139361,4993,music,1255299983 +139361,4993,original plot,1255299986 +139361,4993,scenic,1255299992 +139361,4995,biography,1255471644 +139361,4995,genius,1255471647 +139361,4995,math,1255471656 +139361,4995,mathematics,1255471659 +139361,4995,mental illness,1255471673 +139361,4995,psychology,1255471668 +139361,4995,Russell Crowe,1255471678 +139361,4995,schizophrenia,1255471671 +139361,4995,true story,1255471676 +139361,5378,Ewan McGregor,1264279319 +139361,5378,Natalie Portman,1264279320 +139361,5378,romance,1264279331 +139361,5378,sci-fi,1264279322 +139361,5378,space,1264279323 +139361,5378,Star Wars,1264279325 +139361,5418,action,1255471511 +139361,5418,amnesia,1255471514 +139361,5418,assassin,1255471517 +139361,5418,car chase,1255471520 +139361,5418,Clive Owen,1255471524 +139361,5418,conspiracy,1255471527 +139361,5418,espionage,1255471529 +139361,5418,Matt Damon,1255471532 +139361,5418,spy,1255471535 +139361,5418,survival,1255471540 +139361,5418,thriller,1255471538 +139361,5952,Action,1255299816 +139361,5952,adventure,1255299826 +139361,5952,atmospheric,1255299539 +139361,5952,based on a book,1255299826 +139361,5952,ensemble cast,1255299848 +139361,5952,fantasy,1255299821 +139361,5952,high fantasy,1255299821 +139361,5952,magic,1255299550 +139361,5952,trilogy,1255299868 +139361,5952,Viggo Mortensen,1255299863 +139361,5952,war,1255299555 +139361,6157,Action,1255471162 +139361,6157,Ben Affleck,1255471166 +139361,6157,Colin Farrell,1255471170 +139361,6157,comic book,1255471172 +139361,6157,dark,1255471175 +139361,6157,Jennifer Garner,1255471187 +139361,6157,Michael Clarke Duncan,1255471195 +139361,6157,superhero,1255471192 +139361,6539,action,1255304056 +139361,6539,adventure,1255304060 +139361,6539,comedy,1255304067 +139361,6539,Johnny Depp,1255304072 +139361,6539,pirates,1255304077 +139361,6539,sword fight,1255304079 +139361,6711,atmospheric,1255304922 +139361,6711,Bill Murray,1255304924 +139361,6711,bittersweet,1255304937 +139361,6711,isolation,1255304943 +139361,6711,Japan,1255304940 +139361,6711,Melancholic,1255304947 +139361,6711,relationships,1255304949 +139361,6711,Scarlett Johansson,1255304953 +139361,6711,Sophia Coppola,1255304955 +139361,6711,tokyo,1255304958 +139361,6711,urbane,1255304961 +139361,6874,action,1255300002 +139361,6874,funny,1255300007 +139361,6874,katana,1255300011 +139361,6874,martial arts,1255300016 +139361,6874,Quentin Tarantino,1255300020 +139361,6874,quirky,1255300022 +139361,6874,stylized,1255300026 +139361,6874,Tarantino,1255300030 +139361,6874,violence,1255300034 +139361,6874,violent,1255300034 +139361,7153,Action,1255299888 +139361,7153,adventure,1255299896 +139361,7153,atmospheric,1255299903 +139361,7153,based on a book,1255299908 +139361,7153,ensemble cast,1255299912 +139361,7153,fantasy,1255299915 +139361,7153,high fantasy,1255299921 +139361,7153,literary adaptation,1255299925 +139361,7153,love,1255299930 +139361,7153,original plot,1255299940 +139361,7153,war,1255299945 +139361,7361,bittersweet,1255311454 +139361,7361,comedy,1255311459 +139361,7361,emotional,1255311465 +139361,7361,imagination,1255311462 +139361,7361,Jim Carrey,1255311467 +139361,7361,love,1255311470 +139361,7361,melancholy,1255311473 +139361,7361,quirky,1255311479 +139361,7361,romance,1255311481 +139361,7361,thought-provoking,1255311485 +139361,7366,Ben Affleck,1255308993 +139361,7366,comedy,1255308996 +139361,7366,cute,1255309000 +139361,7366,Kevin Smith,1255309025 +139361,7366,liv tyler,1255309028 +139361,7366,New Jersey,1255309032 +139361,7366,romance,1255309037 +139361,7438,action,1255308952 +139361,7438,atmospheric,1255308957 +139361,7438,Japan,1255308961 +139361,7438,kung fu,1255308963 +139361,7438,martial arts,1255308964 +139361,7438,Quentin Tarantino,1255308965 +139361,7438,quirky,1255308966 +139361,7438,revenge,1255308970 +139361,7438,spaghetti western,1255308978 +139361,7438,stylized,1255308978 +139361,7438,violence,1255308986 +139361,7451,High School,1255304761 +139361,7451,Lindsay Lohan,1255304765 +139361,7451,suprisingly clever,1255304768 +139361,7458,Action,1264279058 +139361,7458,Brad Pitt,1264279063 +139361,7458,Epic,1264279066 +139361,8529,airport,1264279192 +139361,8529,funny,1264279199 +139361,8529,humorous,1264279202 +139361,8529,Tom Hanks,1264279190 +139361,8533,great ending,1255304671 +139361,8533,Rachel McAdams,1255304677 +139361,8533,Romance,1255304680 +139361,8533,Ryan Gosling,1255304683 +139361,8636,New York City,1264279339 +139361,8636,superhero,1264279341 +139361,8636,violence,1264279342 +139361,8638,dialogue,1255300137 +139361,8638,Ethan Hawke,1255300139 +139361,8638,great dialogue,1255300142 +139361,8638,Julie Delpy,1255300147 +139361,8638,minimalist,1255300153 +139361,8638,Paris,1255300156 +139361,8638,Richard Linklater,1255300159 +139361,8638,romance,1255300162 +139361,8638,romantic,1255300167 +139361,8641,Funniest Movies,1255300257 +139361,8641,hilarious,1255300244 +139361,8641,Judd Apatow movie,1255300261 +139361,8641,Paul Rudd,1255300264 +139361,8641,Steve Carell,1255300269 +139361,8641,Steve Carrell,1255300272 +139361,8641,Will Ferrell,1255300251 +139361,8665,amnesia,1255471478 +139361,8665,car chase,1255471481 +139361,8665,espionage,1255471485 +139361,8665,International,1255471488 +139361,8665,Julia Stiles,1255471491 +139361,8665,Matt Damon,1255471494 +139361,8665,Paul Greengras,1255471500 +139361,8665,realistic action,1255471497 +139361,8665,spy,1255471502 +139361,8784,friendship,1255309392 +139361,8784,funny,1255309395 +139361,8784,Great Soundtrack,1255309396 +139361,8784,Natalie Portman,1255309399 +139361,8784,quirky,1255309401 +139361,8784,romance,1255309413 +139361,8798,action,1255471253 +139361,8798,assassin,1255471255 +139361,8798,atmospheric,1255471258 +139361,8798,cars,1255471261 +139361,8798,character driven,1255471264 +139361,8798,dark,1255471268 +139361,8798,great performances,1255471311 +139361,8798,Michael Mann,1255471316 +139361,8798,nightclub,1255471317 +139361,8798,Tom Cruise,1255471321 +139361,8798,violent,1255471321 +139361,32587,atmospheric,1255301178 +139361,32587,based on a comic,1255301184 +139361,32587,black comedy,1255301188 +139361,32587,dark,1255301195 +139361,32587,multiple storylines,1255301199 +139361,32587,stylized,1255301202 +139361,32587,superhero,1255301204 +139361,32587,violence,1255301209 +139361,34048,alien invasion,1264278866 +139361,34048,invasion,1264278874 +139361,34048,sci-fi,1264278880 +139361,34048,Steven Spielberg,1264278876 +139361,34048,Tom Cruise,1264278882 +139361,34405,action,1255303987 +139361,34405,adventure,1255303991 +139361,34405,based on a TV show,1255303993 +139361,34405,based on tv series,1255303996 +139361,34405,black comedy,1255303999 +139361,34405,drama,1255304004 +139361,34405,ensemble cast,1255304009 +139361,34405,Firefly,1255304014 +139361,34405,great dialogue,1255304021 +139361,34405,quirky,1255304025 +139361,34405,sci-fi,1255304025 +139361,34405,space,1255304029 +139361,34405,tense,1255304033 +139361,36527,Anthony Hopkins,1269034842 +139361,36527,geeks,1269034849 +139361,36527,Gwyneth Paltrow,1269034836 +139361,36527,Jake Gyllenhaal,1269034839 +139361,36527,mathematics,1269034844 +139361,36529,arms dealer,1255305236 +139361,36529,dark comedy,1255305240 +139361,36529,guns,1255305242 +139361,36529,Nicolas Cage,1255305246 +139361,36529,smuggling,1255305253 +139361,36529,war,1255305249 +139361,40278,Jake Gyllenhaal,1255309067 +139361,40278,Modern war,1255309078 +139361,40278,sniper,1255309071 +139361,40278,war,1255309074 +139361,40819,biography,1264278893 +139361,40819,Joaquin Phoenix,1264278898 +139361,40819,Johnny Cash,1264278900 +139361,40819,love,1264278902 +139361,40819,music,1264278903 +139361,40819,music business,1264278905 +139361,40819,Reese Witherspoon,1264278911 +139361,40819,true story,1264278913 +139361,43396,Anthony Hopkins,1264278844 +139361,43396,based on a true story,1264278851 +139361,43396,Bonneville Salt Flats,1264278846 +139361,43396,emotional,1264278857 +139361,43396,new zealand,1264278849 +139361,44191,based on a comic,1264278937 +139361,44191,dystopia,1264278924 +139361,44191,Natalie Portman,1287259536 +139361,44191,revenge,1264278928 +139361,44191,sci-fi,1264278926 +139361,44191,thought-provoking,1264278930 +139361,44191,visually appealing,1264278932 +139361,44199,bank robbery,1255309229 +139361,44199,Clive Owen,1255309232 +139361,44199,Denzel Washington,1255309235 +139361,44199,good story,1255309238 +139361,44199,heist,1255309241 +139361,44199,intelligent thriller,1255309246 +139361,44199,Interesting,1255309249 +139361,44199,Jodie Foster,1255309271 +139361,44199,twist ending,1255309253 +139361,44665,assassination,1255304866 +139361,44665,Ben Kingsley,1255304868 +139361,44665,Bruce Willis,1255304872 +139361,44665,Film Noir,1255304875 +139361,44665,gangsters,1255304878 +139361,44665,hitman,1255304881 +139361,44665,mistaken identity,1255304886 +139361,44665,Morgan Freeman,1255304889 +139361,44665,Revenge,1255304892 +139361,44665,stylized,1255304905 +139361,44665,twist,1255304900 +139361,44665,twist ending,1255304896 +139361,45728,dialogue driven,1255471330 +139361,45728,good dialogue,1255471333 +139361,45728,hilarious,1255471336 +139361,45728,Kevin Smith,1255471340 +139361,45728,pop culture references,1255471343 +139361,45728,Rosario Dawson,1255471348 +139361,45728,slackers,1255471357 +139361,45728,workplace,1255471360 +139361,46976,fantasy,1264279227 +139361,46976,metaphysics,1264279230 +139361,46976,surreal,1264279239 +139361,46976,Will Ferrell,1264279232 +139361,46976,writing,1264279234 +139361,48516,atmospheric,1255311552 +139361,48516,corruption,1255311555 +139361,48516,Crime,1255311558 +139361,48516,gangsters,1255311561 +139361,48516,great acting,1255311564 +139361,48516,Jack Nicholson,1255311566 +139361,48516,Leonardo DiCaprio,1255311568 +139361,48516,Martin Scorsese,1255311571 +139361,48516,Matt Damon,1255311573 +139361,48516,murder,1255311575 +139361,48516,organized crime,1255311578 +139361,48516,police corruption,1255311582 +139361,48516,tense,1255311593 +139361,48516,undercover cop,1255311585 +139361,48516,violence,1255311588 +139361,48774,apocalypse,1255471369 +139361,48774,atmospheric,1255471373 +139361,48774,Clive Owen,1255471375 +139361,48774,dystopia,1255471378 +139361,48774,end of the world,1255471382 +139361,48774,futuristic,1255471386 +139361,48774,Michael Caine,1255471389 +139361,48774,pregnancy,1255471396 +139361,48774,sci-fi,1255471394 +139361,48780,atmospheric,1255299223 +139361,48780,dark,1255299673 +139361,48780,David Bowie,1255299668 +139361,48780,Hugh Jackman,1255299713 +139361,48780,Michael Caine,1255299707 +139361,48780,nonlinear,1255299644 +139361,48780,obsession,1255299664 +139361,48780,Scarlett Johansson,1255299656 +139361,48780,steampunk,1255299651 +139361,48780,twist ending,1255299233 +139361,51540,based on a true story,1255300283 +139361,51540,David Fincher,1255300287 +139361,51540,detective,1255300289 +139361,51540,investigation,1255300292 +139361,51540,Jake Gyllenhaal,1255300295 +139361,51540,Journalist,1255300297 +139361,51540,Robert Downey Jr,1255300300 +139361,51540,Robert Downey Jr.,1255300305 +139361,51540,true story,1255300312 +139361,51935,conspiracy,1264278539 +139361,51935,Danny Glover,1264278547 +139361,51935,Mark Wahlberg,1264278541 +139361,51935,sniper,1264278544 +139361,53996,man versus machine,1264279138 +139361,53996,robots,1264279141 +139361,53996,Special Effects,1264279143 +139361,54259,coming of age,1264279254 +139361,54259,fairy tale romance,1264279256 +139361,54259,fantasy,1264279258 +139361,54259,Michelle Pfeiffer,1264279261 +139361,54259,Robert De Niro,1264279263 +139361,54286,action,1255471437 +139361,54286,assassin,1255471439 +139361,54286,conspiracy,1255471442 +139361,54286,espionage,1255471445 +139361,54286,Matt Damon,1255471448 +139361,54286,spy thriller,1255471453 +139361,54286,twist ending,1255471458 +139361,54503,comedy,1255300882 +139361,54503,crude humor,1255300885 +139361,54503,friendship,1255300889 +139361,54503,funny,1255300892 +139361,54503,high school,1255300896 +139361,54503,hilarious,1255300898 +139361,54503,Michael Cera,1255300901 +139361,54503,nerds,1255300903 +139361,54503,police,1255300905 +139361,54503,singing,1255300915 +139361,55247,Alaska,1255300064 +139361,55247,atmospheric,1255300067 +139361,55247,based on a true story,1255300072 +139361,55247,experience,1255300079 +139361,55247,road trip,1255300084 +139361,55247,true story,1255300091 +139361,55247,wilderness,1255300089 +139361,55765,based on a true story,1255471690 +139361,55765,corruption,1255471693 +139361,55765,Denzel Washington,1255471696 +139361,55765,gangster,1255471698 +139361,55765,mafia,1255471703 +139361,55765,Ridley Scott,1255471712 +139361,55765,Russell Crowe,1255471715 +139361,55765,smuggling,1255471721 +139361,55765,true story,1255471718 +139361,55908,dialogue driven,1273791871 +139361,55908,Excellent use of dialogue,1273791875 +139361,55908,intellectual,1273791877 +139361,55908,philosophical,1273791881 +139361,55908,sci-fi,1273791885 +139361,55908,thought-provoking,1273791882 +139361,55908,unique,1273791887 +139361,56003,apocalypse,1291248125 +139361,56003,dystopia,1291248127 +139361,56003,puzzling,1291248122 +139361,56003,surreal,1291248132 +139361,56003,time travel,1291248130 +139361,56003,weird,1291248134 +139361,58559,action,1255311623 +139361,58559,based on a comic,1255311626 +139361,58559,Christian Bale,1255311672 +139361,58559,dark,1255311630 +139361,58559,Gary Oldman,1255311633 +139361,58559,Heath Ledger,1255311636 +139361,58559,Michael Caine,1255311642 +139361,58559,Morgan Freeman,1255311648 +139361,58559,murder,1255311656 +139361,58559,music,1255311659 +139361,58559,superhero,1255311662 +139361,58559,vigilante,1255311665 +139361,58559,violence,1255311669 +139361,58998,good dialogue,1255311219 +139361,58998,Hawaii,1255311223 +139361,58998,hilarious,1255311226 +139361,58998,Jason Segel,1255311229 +139361,58998,Mila Kunis,1255311271 +139361,58998,Paul Rudd,1255311238 +139361,58998,puppets,1255311242 +139361,58998,VACATION ROMANCES,1255311245 +139361,59315,android(s)/cyborg(s),1255309192 +139361,59315,based on a comic,1255309195 +139361,59315,comic book,1255309197 +139361,59315,Marvel,1255309215 +139361,59315,military,1255309208 +139361,59315,super hero,1255309208 +139361,59315,superhero,1255309204 +139361,59369,action,1264279208 +139361,59369,divorce,1264279218 +139361,59369,fight scenes,1264279212 +139361,59369,Liam Neeson,1264279214 +139361,59369,thriller,1264279216 +139361,60684,alternate reality,1255300372 +139361,60684,based on a comic,1255300374 +139361,60684,cold war,1255300382 +139361,60684,comic book,1255300386 +139361,60684,dystopia,1255300386 +139361,60684,sci-fi,1255300391 +139361,60684,storytelling,1255300395 +139361,60684,stylized,1255300401 +139361,60684,stylized violence,1255300398 +139361,60684,superhero,1255300406 +139361,60684,superheroes,1255300408 +139361,60753,Val Kilmer,1255300121 +139361,60766,actual footage,1270237776 +139361,60766,emotion,1270237779 +139361,60766,law breaking,1270237782 +139361,60766,suspenseful,1270237795 +139361,61132,Ben Stiller,1264279100 +139361,61132,Jack Black,1264279107 +139361,61132,Matthew McConaughey,1264279109 +139361,61132,movie business,1264279112 +139361,61132,movie within a movie,1264279113 +139361,61132,parody,1264279115 +139361,61132,Robert Downey Jr.,1264279117 +139361,61132,satire,1264279118 +139361,61132,Tom Cruise,1264279120 +139361,62434,foul language,1264278794 +139361,62434,Kevin Smith,1264278792 +139361,62434,racist humor,1264278802 +139361,62434,Seth Rogen,1264278808 +139361,62434,Sexual Humor,1264278832 +139361,64716,melancholy,1255303980 +139361,64716,Will Smith,1255303980 +139361,64716,Woody Harrelson,1255303980 +139361,64839,Aronofski,1255300343 +139361,64839,awesome performance,1255300347 +139361,64839,sad,1255300357 +139361,64839,sports,1255300360 +139361,64839,touching,1255300361 +139361,64969,Jim carrey,1243020173 +139361,64969,Zooey Deschanel,1243020177 +139361,68073,boat,1255471615 +139361,68073,British,1255471611 +139361,68073,Music,1255471618 +139361,68073,Philip Seymour Hoffman,1264278576 +139361,68073,rock and roll,1255471621 +139361,68157,Brad Pitt,1255309283 +139361,68157,dialogue,1255309287 +139361,68157,ending,1255309289 +139361,68157,great acting,1255309292 +139361,68157,Mélanie Laurent,1255309328 +139361,68157,Quentin Tarantino,1255309295 +139361,68157,satire,1255309301 +139361,68157,unusual plot structure,1255309316 +139361,68157,violence,1255309333 +139361,68157,World War II,1255309318 +139361,68159,journalism,1259110536 +139361,68159,political corruption,1259110538 +139361,68159,Rachel McAdams,1259110541 +139361,68159,Russell Crowe,1259110543 +139361,68237,dystopia,1260558694 +139361,68237,moon,1260558702 +139361,68237,Sam Rockwell,1260558696 +139361,68237,Sci-fi,1260558698 +139361,68237,space,1260558700 +139361,68954,adventure,1261517194 +139361,68954,computer animation,1261517196 +139361,68954,dreams,1261517204 +139361,68954,storytelling,1261517211 +139361,70286,action,1255311499 +139361,70286,aliens,1255311496 +139361,70286,fake documentary,1255311502 +139361,70286,genetics,1255311504 +139361,70286,humor,1255311507 +139361,70286,intelligent sci-fi,1255311510 +139361,70286,sci-fi,1255311514 +139361,70286,transformation,1255311519 +139361,71464,black humour,1267313339 +139361,71464,Bleak,1267313346 +139361,71464,Jewish,1267313338 +139361,71535,Abigail Breslin,1262206745 +139361,71535,Bill Murray,1262206743 +139361,71535,comedy,1262206748 +139361,71535,Emma Stone,1262206750 +139361,71535,funny,1262206760 +139361,71535,post-apocalyptic,1262206763 +139361,71535,Woody Harrelson,1262206765 +139361,71838,revenge,1265152158 +139361,71838,violent,1265152155 +139361,72011,cynicism,1264278946 +139361,72011,George Clooney,1264278950 +139361,72011,Jason Bateman,1264278951 +139361,72011,Jason Reitman,1264278960 +139361,72171,blaxploitation,1267233465 +139361,72171,martial arts,1267233467 +139361,72171,Michael Jai White,1267233469 +139361,72171,parody,1267233471 +139361,72171,theme music,1267233472 +139361,72176,honest,1264453977 +139361,72176,Patton Oswalt,1264453972 +139361,72998,3d,1264278643 +139361,72998,effects,1261155187 +139361,72998,futuristic,1264278646 +139361,72998,Sigourney Weaver,1264278656 +139361,72998,visually stunning,1264278654 +139361,73017,Atmospheric,1264279354 +139361,73017,Guy Ritchie,1264279357 +139361,73017,Jude Law,1264279359 +139361,73017,Rachel McAdams,1264279360 +139361,73017,Robert Downey Jr.,1264279363 +139361,73017,slow motion,1264279365 +139361,73023,Jeff Bridges,1270158255 +139361,73266,Michael Cera,1274476584 +139361,73321,action,1274915799 +139361,73321,Denzel Washington,1274915801 +139361,73321,dystopia,1274915804 +139361,73321,dystopic future,1274915806 +139361,73321,future,1274915808 +139361,73321,Mila Kunis,1274915810 +139361,73321,post-apocalyptic,1274915812 +139361,74156,Mel Gibson,1272314820 +139361,74156,Ray Winstone,1272314822 +139361,74458,acting,1268343325 +139361,74458,Ben Kingsley,1268343347 +139361,74458,ending twist,1268343330 +139361,74458,Leonardo DiCaprio,1268343339 +139361,74458,Mark Ruffalo,1268343341 +139361,74458,Martin Scorsese,1268343343 +139361,74458,psychological,1268343333 +139361,74458,story,1268343336 +139361,74795,Iraq War,1269546493 +139361,74795,Matt Damon,1269546496 +139361,74795,Middle East,1269546511 +139361,74795,Paul Greengrass,1269546498 +139361,74944,Antoine Fuqua,1277421067 +139361,74944,Ethan Hawke,1277421065 +139361,74944,Richard Gere,1277421061 +139361,76210,Elias Koteas,1271543076 +139361,76210,Kat Dennings,1271543074 +139361,76210,vigilante,1271543083 +139361,76210,Woody Harrelson,1271543081 +139361,76251,action,1271792431 +139361,76251,comic book,1271792434 +139361,76251,funny,1271792448 +139361,76251,gory,1271792441 +139361,76251,humorous,1271792436 +139361,76251,pop culture references,1271792437 +139361,76251,superhero,1271792439 +139361,77455,Banksy,1284674812 +139361,77455,Thierry Guetta,1284674816 +139361,77561,Mickey Rourke,1274301221 +139361,77561,Robert Downey Jr.,1274301225 +139361,77561,Sam Rockwell,1274301223 +139361,78034,1970s,1280611256 +139361,78574,cinematography,1293274483 +139361,78574,Jennifer Lawrence,1293274480 +139361,79702,cultural references,1288390726 +139361,79702,cute,1288390730 +139361,79702,Edgar Wright,1288390728 +139361,79702,fight scenes,1288390731 +139361,79702,funny,1288390734 +139361,79702,geeky,1288390733 +139361,79702,Kieran Culkin,1288390738 +139361,79702,Mary Elizabeth Winstead,1288390739 +139361,79702,Michael Cera,1288390741 +139361,79702,music,1288390745 +139361,79702,stylized,1288390742 +139361,79702,video games,1288390747 +139361,81591,Darren Aronofsky,1292882082 +139361,81591,Mila Kunis,1292882085 +139361,81591,Natalie Portman,1292882080 +139361,84954,Matt Damon,1300393520 +139361,87306,cinematography,1312486283 +139361,87306,J.J. Abrams,1312486282 +139364,115617,animation,1427563942 +139364,115617,friends,1427563942 +139364,115617,infantile,1427563942 +139364,115617,super-hero,1427563942 +139396,5267,baseball,1137950846 +139396,6920,atmospheric,1234749245 +139396,34072,documentary,1138861854 +139396,34072,french,1138861854 +139396,34072,morgan freeman,1138861854 +139396,68358,action,1242788362 +139396,68358,adventure,1242788368 +139396,68358,Eric Bana,1242788321 +139396,68358,realistic,1242788348 +139396,68358,Star Trek,1242788340 +139396,68358,Zachary Quinto,1242788340 +139396,106344,farce,1438570705 +139396,106344,silly,1438570705 +139396,106344,spoof,1438570705 +139410,45728,hilarious,1153872484 +139418,1036,Alan Rickman,1206584217 +139418,2009,Charleton Heston,1206584874 +139418,2009,Edward G. Robinson,1206584874 +139418,3032,Charleton Heston,1206584919 +139418,3879,Wesley Snipes,1137873978 +139418,3906,predictable movie,1223869631 +139418,4006,too much 80's music,1190268200 +139418,4265,Formula 1 racing,1137873737 +139418,4411,Dean Martin,1206582685 +139418,4411,Dennis Hopper,1206582758 +139418,4411,George Kennedy,1206582758 +139418,4411,Strother Martin,1206582686 +139418,4577,Vietnam War,1137874019 +139418,4682,Julian Sands,1137873923 +139418,5107,Bruce Willis,1140380403 +139418,5107,prison,1137874055 +139418,5418,spy,1137873752 +139418,6401,John Wayne,1206582922 +139418,6455,John Wayne,1206582546 +139418,6455,Stewart Granger,1206582608 +139418,6652,Clint Eastwood,1206584494 +139418,6652,Robert Duval,1206584494 +139418,6809,Clint Eastwood,1206583897 +139418,6812,Charlie Sheen,1206583969 +139418,6812,Clint Eastwood,1206583969 +139418,8334,Bruce Dern,1206583143 +139418,8334,John Wayne,1206583130 +139418,8446,Forrest Tucker,1206583548 +139418,8446,John Wayne,1206583548 +139418,25934,John Wayne,1229573693 +139418,26181,John Wayne,1137873834 +139418,26181,Kirk Douglas,1137873834 +139418,26249,Terence Hill,1174152892 +139418,34048,weak ending,1137873893 +139418,45503,Nick Nolte,1229568792 +139418,46530,Frank Langella,1176771439 +139418,46530,Kevin Spacey,1176125386 +139418,50151,BORING!,1223869798 +139418,52460,Indians,1206897341 +139418,52460,Vikings,1206897341 +139418,53972,Bruce Willis,1206584397 +139418,57536,Steve Zahn,1229572635 +139419,50,Benicio Del Toro,1243470764 +139419,50,great ending,1243470761 +139419,50,imdb top 250,1243470774 +139419,50,suspense,1243470770 +139419,50,twist ending,1243470768 +139419,1210,George Lucas,1243470793 +139419,1210,Harrison Ford,1243470790 +139419,1210,sci-fi,1243470791 +139419,1210,Star Wars,1243470799 +139419,1210,starship pilots,1243470797 +139423,318,Stephen King,1437003469 +139423,135887,animated,1437003575 +139423,135887,crime,1437003575 +139423,135887,minions,1437003575 +139428,2019,Akira Kurosawa,1441581246 +139428,7566,Documentary,1441581332 +139428,7925,Akira Kurosawa,1441581215 +139432,1079,Humorous,1346268774 +139432,1079,Jamie Lee Curtis,1346268728 +139432,1079,John Cleese,1346268716 +139432,1079,Kevin Kline,1346268722 +139432,5385,music documentary,1346289977 +139432,5385,The Band,1346289950 +139432,38304,biography,1346289856 +139432,38304,Bob Dylan,1346289846 +139432,38304,documentary,1346289873 +139432,38304,music,1346289892 +139441,260,classic,1430609306 +139441,260,sci-fi,1430609309 +139476,130490,action,1429187860 +139476,130490,intelligent,1429187860 +139476,130490,teen,1429187860 +139484,1196,star wars,1170458968 +139484,8225,horror,1170458493 +139484,8225,suspense,1170458514 +139484,8225,zombie,1170458488 +139484,8225,zombies,1170458491 +139484,31270,Nudity (Topless),1170531615 +139494,260,classic sci-fi,1432576919 +139494,260,Star Wars,1432576924 +139495,101864,dystopia,1453490865 +139495,101864,interesting concept,1453490871 +139512,910,Old,1402413524 +139512,1212,Old,1402413537 +139518,91104,amazing story,1353825241 +139518,91104,must see all in order,1353825241 +139518,98203,Fantastic epic story,1353825405 +139520,44761,Joseph Gordon-Levitt,1299183398 +139520,69757,Joseph Gordon-Levitt,1299183497 +139520,69757,Zooey Deschanel,1299183494 +139520,74154,Kristen Bell,1309669779 +139520,79132,Joseph Gordon-Levitt,1299183429 +139520,88129,Ryan Gosling,1315704290 +139520,88163,Ryan Gosling,1312047481 +139536,6537,Arnold Schwarzenegger,1432215750 +139536,6537,time travel,1432215751 +139536,33794,bruce wayne,1432215278 +139536,33794,philosophical,1432215290 +139536,33794,slow,1432215250 +139536,44665,Ben Kingsley,1432215484 +139536,44665,Bruce Willis,1432215477 +139536,44665,twist ending,1432215473 +139536,53318,alternate reality,1432215947 +139536,53318,insomnia,1432215938 +139536,53318,stopping time,1432215950 +139536,111362,saga,1432215535 +139536,111362,time travel,1432215535 +139536,111362,x-men,1432215535 +139565,27773,twist ending,1250616012 +139574,260,action,1432934451 +139574,260,battle,1432934461 +139574,260,fiction,1432934475 +139574,260,speedy,1432934470 +139576,72714,vegan,1445262137 +139576,101741,Mindfuck,1445262737 +139576,144712,documentary,1445262151 +139576,144712,vegan,1445262141 +139579,440,Kevin Kline,1284936173 +139579,440,multiple roles,1284936183 +139579,440,Romance,1284936194 +139579,440,Sigourney Weaver,1284936181 +139579,551,atmospheric,1284928947 +139579,551,gothic,1284928937 +139579,551,musical,1284928962 +139579,551,stop motion,1284929033 +139579,551,Tim Burton,1284928955 +139579,778,addiction,1284931630 +139579,778,based on a book,1284931633 +139579,778,black comedy,1284931630 +139579,778,drugs,1284931642 +139579,778,Ewan McGregor,1284931625 +139579,778,great soundtrack,1284931660 +139579,778,heroin,1284931646 +139579,778,Nudity (Full Frontal),1284931652 +139579,971,alcoholism,1284932256 +139579,971,based on a play,1284932258 +139579,971,Elizabeth Taylor,1284932275 +139579,971,emotional,1284932292 +139579,971,family,1284932315 +139579,971,family relationships,1284932326 +139579,971,father-son relationship,1284932305 +139579,971,Paul Newman,1284932261 +139579,971,Tennessee Williams,1284932266 +139579,1080,Christianity,1284936244 +139579,1080,humorous,1284936229 +139579,1080,Middle East,1284936251 +139579,1080,Monty Python,1284936225 +139579,1080,parody,1284936230 +139579,1080,Quotable,1284936276 +139579,1080,religion,1284936259 +139579,1080,satire,1284936232 +139579,1197,based on a book,1284930447 +139579,1197,comedy,1284930460 +139579,1197,fantasy,1284930443 +139579,1197,funny,1284930437 +139579,1197,quirky,1284930421 +139579,1197,revenge,1284930453 +139579,1197,romance,1284930426 +139579,1197,sword fight,1284930428 +139579,1197,torture,1284930430 +139579,1197,witty,1284930433 +139579,1214,aliens,1284929962 +139579,1214,androids,1284929983 +139579,1214,classic,1284929986 +139579,1214,dark,1284929988 +139579,1214,horror,1284929968 +139579,1214,monster,1284929981 +139579,1214,Ridley Scott,1284929991 +139579,1214,Sigourney Weaver,1284929975 +139579,1214,space,1284929978 +139579,1214,space travel,1284929970 +139579,1214,suspense,1284929972 +139579,1214,visceral,1284929973 +139579,1215,adventure,1284931918 +139579,1215,Bruce Campbell,1284931913 +139579,1215,campy,1284931886 +139579,1215,comedy,1284931890 +139579,1215,dark humor,1284931894 +139579,1215,demons,1284931896 +139579,1215,fantasy,1284931922 +139579,1215,humorous,1284931899 +139579,1220,Aretha Franklin,1284936493 +139579,1220,Cab Calloway,1284936512 +139579,1220,car chase,1284936310 +139579,1220,Carrie Fisher,1284936400 +139579,1220,Dan Aykroyd,1284936390 +139579,1220,explosions,1284936441 +139579,1220,flamethrowers,1284936409 +139579,1220,great soundtrack,1284936321 +139579,1220,John Belushi,1284936396 +139579,1220,John Candy,1284936539 +139579,1220,John Landis,1284936362 +139579,1220,mission from God,1284936475 +139579,1220,music business,1284936347 +139579,1220,musical,1284936328 +139579,1220,musicians,1284936351 +139579,1220,neo-Nazis,1284936322 +139579,1220,notable soundtrack,1284936317 +139579,1220,police,1284936532 +139579,1220,Ray Charles,1284936371 +139579,1220,rhythm & blues,1284936324 +139579,1220,surreal,1284936329 +139579,1278,black and white,1284928839 +139579,1278,Gene Wilder,1284928825 +139579,1278,Madeline Kahn,1284928906 +139579,1278,Marty Feldman,1284928896 +139579,1278,monster,1284928873 +139579,1278,parody,1284928828 +139579,1278,Peter Boyle,1284928911 +139579,1278,Quotable,1284928859 +139579,1408,Adventure,1284931312 +139579,1408,Daniel Day-Lewis,1284931300 +139579,1408,Madeleine Stowe,1284931314 +139579,1408,Michael Mann,1284931320 +139579,1408,romance,1284931340 +139579,1954,bittersweet,1284932375 +139579,1954,boxing,1284932353 +139579,1954,drama,1284932356 +139579,1954,Philadelphia,1284932407 +139579,1954,Sylvester Stallone,1284932361 +139579,1954,working class,1284932385 +139579,2115,action,1284932616 +139579,2115,franchise,1284932620 +139579,2115,Harrison Ford,1284932590 +139579,2115,india,1284932611 +139579,2115,Indiana Jones,1284932594 +139579,2115,pulp,1284932606 +139579,2115,sequel,1284932624 +139579,2115,Steven Spielberg,1284932602 +139579,2278,action,1284935011 +139579,2278,car chase,1284935006 +139579,2278,crime,1284935009 +139579,2278,Jean Reno,1284934999 +139579,2278,Robert De Niro,1284935003 +139579,2321,affectionate,1284931812 +139579,2321,black and white,1284931783 +139579,2321,coming of age,1284931786 +139579,2321,poignant,1284931769 +139579,2321,political,1284931771 +139579,2321,Reese Witherspoon,1284931766 +139579,2321,stylized,1284931779 +139579,2321,Tobey Maguire,1284931796 +139579,2353,Gene Hackman,1284932704 +139579,2353,paranoid,1284932721 +139579,2353,Will Smith,1284932712 +139579,2395,Bill Murray,1284931138 +139579,2395,bittersweet,1284931140 +139579,2395,coming of age,1284931142 +139579,2395,deadpan,1284931159 +139579,2395,high school,1284931144 +139579,2395,quirky,1284931147 +139579,2395,Wes Anderson,1284931151 +139579,2406,adventure,1284932528 +139579,2406,Danny DeVito,1284932526 +139579,2406,jungle,1284932562 +139579,2406,Kathleen Turner,1284932524 +139579,2406,Latin America,1284932553 +139579,2406,Michael Douglas,1284932522 +139579,2406,Robert Zemeckis,1284932556 +139579,2406,Romance,1284932544 +139579,2406,silly fun,1284932540 +139579,2406,South America,1284932537 +139579,2406,treasure hunt,1284932538 +139579,2572,1990s,1284933047 +139579,2572,comedy,1284933018 +139579,2572,Heath Ledger,1284933024 +139579,2572,high school,1284933026 +139579,2572,Julia Stiles,1284933007 +139579,2572,Teen movie,1284933011 +139579,2617,Brendan Fraser,1284936623 +139579,2617,John Hannah,1284936627 +139579,2617,Rachel Weisz,1284936635 +139579,2617,romp,1284936655 +139579,2671,divorced from reality,1284929124 +139579,2671,Hugh Grant,1284929145 +139579,2671,Julia Roberts,1284929148 +139579,2671,romance,1284929078 +139579,2746,dark comedy,1284934924 +139579,2746,monster,1284934931 +139579,2746,Rick Moranis,1284934928 +139579,2746,sadism,1284934937 +139579,2746,Steve Martin,1284934933 +139579,3000,anime,1284929409 +139579,3000,atmospheric,1284929415 +139579,3000,Hayao Miyazaki,1284929419 +139579,3000,Japan,1284929417 +139579,3008,apocalypse,1284935424 +139579,3008,atmospheric,1284935477 +139579,3008,Canada,1284935428 +139579,3008,end of the world,1284935432 +139579,3008,ensemble cast,1284935438 +139579,3008,melancholy,1284935451 +139579,3008,multiple storylines,1284935435 +139579,3008,Sandra Oh,1284935440 +139579,3055,Atom Egoyan,1284937095 +139579,3055,Bob Hoskins,1284937093 +139579,3055,Elaine Cassidy,1284937099 +139579,3055,loneliness,1284937116 +139579,3055,mother-son relationship,1284937153 +139579,3055,serial killer,1284937109 +139579,3489,Bob Hoskins,1284934518 +139579,3489,children,1284934546 +139579,3489,Dustin Hoffman,1284934552 +139579,3489,Julia Roberts,1284934522 +139579,3489,Peter Pan,1284934526 +139579,3489,pirates,1284934560 +139579,3489,Robin Williams,1284934529 +139579,3489,Steven Spielberg,1284934531 +139579,3740,anti-hero,1284931980 +139579,3740,campy,1284931982 +139579,3740,humorous,1284931970 +139579,3740,John Carpenter,1284931944 +139579,3740,Kim Cattrall,1284931975 +139579,3740,Kurt Russell,1284931945 +139579,3740,magic,1284931964 +139579,3740,martial arts,1284931962 +139579,3740,occult,1284932073 +139579,3740,Victor Wong,1284932056 +139579,3863,alternate reality,1284932658 +139579,3863,atmospheric,1284932685 +139579,3863,beautiful cinematography,1284932656 +139579,3863,beautiful scenery,1284932670 +139579,3863,Jennifer Lopez,1284932660 +139579,3863,serial killer,1284932662 +139579,3863,stylized,1284932675 +139579,3863,Vincent D'Onofrio,1284932665 +139579,3967,ballet,1284934958 +139579,3967,british,1284934961 +139579,3967,coming of age,1284934963 +139579,3967,dance,1284934965 +139579,3967,drama,1284934967 +139579,3967,father-son relationship,1284934969 +139579,3967,inspirational,1284934974 +139579,3967,small town,1284934977 +139579,3967,working class,1284934971 +139579,3996,Action,1284931472 +139579,3996,Ang Lee,1284931490 +139579,3996,atmospheric,1284931474 +139579,3996,dreamlike,1284931480 +139579,3996,romance,1284931462 +139579,3996,stylized,1284931466 +139579,3996,sword fight,1284931470 +139579,3996,Ziyi Zhang,1284931485 +139579,4018,Helen Hunt,1284934597 +139579,4018,Mel Gibson,1284934595 +139579,4018,stereotypes,1284934600 +139579,4027,black comedy,1284931041 +139579,4027,Coen Brothers,1284930995 +139579,4027,Musical,1284931020 +139579,4027,prison escape,1284931000 +139579,4027,Quirky,1284930998 +139579,4144,1960s,1284930511 +139579,4144,adultery,1284930507 +139579,4144,atmospheric,1284930472 +139579,4144,elegant,1284930474 +139579,4144,Hong Kong,1284930478 +139579,4144,loneliness,1284930499 +139579,4144,melancholy,1284930480 +139579,4144,moody,1284930482 +139579,4144,neighbors,1284930503 +139579,4144,nocturnal,1284930487 +139579,4144,stylized,1284930485 +139579,4144,Wong Kar Wai,1284930490 +139579,4262,Al Pacino,1284934220 +139579,4262,crime,1284934222 +139579,4262,drugs,1284934227 +139579,4262,gangsters,1284934229 +139579,4262,Michelle Pfeiffer,1284934233 +139579,4262,revenge,1284934271 +139579,4641,adolescence,1284931193 +139579,4641,based on a comic,1284931184 +139579,4641,bittersweet,1284931191 +139579,4641,deadpan,1284931196 +139579,4641,reflective,1284931186 +139579,4641,Steve Buscemi,1284931177 +139579,4641,Thora Birch,1284931216 +139579,4725,abandoned buildings,1284933996 +139579,4725,brad anderson,1284933862 +139579,4725,creepy,1284933879 +139579,4725,dark,1284933962 +139579,4725,david caruso,1284933863 +139579,4725,family relationships,1284933976 +139579,4725,mental hospital,1284933869 +139579,4725,nyctophobia,1284933953 +139579,4725,Psychological Horror,1284933866 +139579,4725,suspense,1284933874 +139579,4725,tape recorder,1284933871 +139579,4816,David Bowie,1284932750 +139579,4816,farce,1284932775 +139579,4816,group sex,1284932784 +139579,4816,male models,1284932770 +139579,4816,models,1284932766 +139579,4816,Will Ferrell,1284932760 +139579,5269,based on a book,1284929492 +139579,5269,incest,1284929548 +139579,5269,Isabelle Huppert,1284929494 +139579,5269,Michael Haneke,1284929501 +139579,5269,sadomasochistic,1284929533 +139579,5269,sexuality,1284929509 +139579,5269,teacher,1284929513 +139579,5269,teacher student relationship,1284929515 +139579,5618,adventure,1284929228 +139579,5618,alternate reality,1284929227 +139579,5618,anime,1284929180 +139579,5618,atmospheric,1284929190 +139579,5618,beautiful,1284929225 +139579,5618,children,1284929197 +139579,5618,dragons,1284929201 +139579,5618,dreamlike,1284929183 +139579,5618,environmental,1284929238 +139579,5618,Hayao Miyazaki,1284929251 +139579,5618,Japan,1284929206 +139579,5812,1950s,1284932200 +139579,5812,1950s housewives,1284932198 +139579,5812,costumes,1284932219 +139579,5812,interracial romance,1284932207 +139579,5812,secrets,1284932216 +139579,5812,stylized,1284932236 +139579,5812,Todd Haynes,1284932213 +139579,7090,Action,1284931407 +139579,7090,amazing photography,1284931426 +139579,7090,atmospheric,1284931424 +139579,7090,China,1284931409 +139579,7090,colourful,1284931417 +139579,7090,Epic,1284931419 +139579,7090,martial arts,1284931413 +139579,7090,passionate,1284931416 +139579,7090,visually appealing,1284931414 +139579,7090,Yimou Zhang,1284931402 +139579,7090,Ziyi Zhang,1284931437 +139579,7373,based on a comic,1284933091 +139579,7373,cool dialogues,1284933059 +139579,7373,fantasy,1284933129 +139579,7373,fighting,1284933104 +139579,7373,gothic,1284933079 +139579,7373,Guillermo del Toro,1284933100 +139579,7373,occult,1284933121 +139579,7373,Ron Perlman,1284933061 +139579,7373,Selma Blair,1284933075 +139579,7982,atmospheric,1284933741 +139579,7982,claustrophobic,1284933743 +139579,7982,creepy,1284933754 +139579,7982,eerie,1284933746 +139579,7982,psychology,1284933749 +139579,7982,scenography,1284933844 +139579,7982,stylized,1284933764 +139579,8874,break-up,1284930175 +139579,8874,British,1284930205 +139579,8874,comedy,1284930298 +139579,8874,Edgar Wright,1284930292 +139579,8874,gore,1284930188 +139579,8874,horror,1284930211 +139579,8874,humorous,1284930229 +139579,8874,parody,1284930198 +139579,8874,Simon Pegg,1284930163 +139579,8874,slackers,1284930181 +139579,8874,zombies,1284930184 +139579,8983,Action,1284931542 +139579,8983,colorful,1284931583 +139579,8983,martial arts,1284931547 +139579,8983,stylized,1284931583 +139579,8983,War,1284931554 +139579,8983,wuxia,1284931558 +139579,8983,Yimou Zhang,1284931561 +139579,8983,Ziyi Zhang,1284931523 +139579,27266,1960s,1284930556 +139579,27266,androids,1284930553 +139579,27266,atmospheric,1284930535 +139579,27266,elegant,1284930550 +139579,27266,melancholy,1284930538 +139579,27266,slow,1284930565 +139579,27266,stylized,1284930543 +139579,27266,Tony Leung Chiu Wai,1284930573 +139579,27266,Wong Kar Wai,1284930544 +139579,27397,Chan-wook Park,1284934300 +139579,27397,DMZ,1284934317 +139579,27397,flashbacks,1284934397 +139579,27397,friendship,1284934304 +139579,27397,investigation,1284934309 +139579,27397,Korea,1284934324 +139579,27397,Moving,1284934351 +139579,27397,nonlinear,1284934387 +139579,27397,tension,1284934312 +139579,27592,brutal,1284930140 +139579,27592,Chan-wook Park,1284930114 +139579,27592,dark,1284930133 +139579,27592,revenge,1284930123 +139579,27592,stylized,1284930130 +139579,27592,vengeance,1284930124 +139579,27592,violent,1284930127 +139579,30810,Angelica Huston,1284931078 +139579,30810,Bill Murray,1284931059 +139579,30810,Cate Blanchett,1284931069 +139579,30810,david bowie,1284931100 +139579,30810,friendship,1284931114 +139579,30810,great soundtrack,1284931087 +139579,30810,ocean,1284931091 +139579,30810,Owen Wilson,1284931068 +139579,30810,stylized,1284931092 +139579,30810,visually appealing,1284931097 +139579,30810,Wes Anderson,1284931062 +139579,30810,whimsical,1284931106 +139579,30810,Willem Dafoe,1284931065 +139579,31364,atmospheric,1284929649 +139579,31364,disturbing,1284929626 +139579,31364,melancholy,1284929622 +139579,31364,police brutality,1284929603 +139579,31364,police investigation,1284929606 +139579,31364,serial killer,1284929633 +139579,31364,understated,1284929612 +139579,31364,wry,1284929615 +139579,38038,british,1284932932 +139579,38038,claymation,1284932927 +139579,38038,comedy,1284932975 +139579,38038,competition,1284932977 +139579,38038,dogs,1284932980 +139579,38038,monster,1284932969 +139579,38038,parody,1284932992 +139579,38038,stop motion,1284932960 +139579,39183,based on a book,1284932144 +139579,39183,emotional,1284932128 +139579,39183,Heath Ledger,1284932095 +139579,39183,homosexuality,1284932132 +139579,39183,Jake Gyllenhaal,1284932104 +139579,39183,literary adaptation,1284932137 +139579,39183,Love story,1284932151 +139579,39183,melancholy,1284932168 +139579,39183,romance,1284932114 +139579,39183,western,1284932121 +139579,41569,Adrien Brody,1284931693 +139579,41569,adventure,1284931699 +139579,41569,dinosaurs,1284931701 +139579,41569,jungle,1284931709 +139579,41569,monster,1284931707 +139579,41569,Naomi Watts,1284931696 +139579,41569,New York,1284931716 +139579,41569,Peter Jackson,1284931695 +139579,41569,stylized,1284931725 +139579,42632,Chan-wook Park,1284929880 +139579,42632,child murder,1284929884 +139579,42632,disturbing,1284929887 +139579,42632,extortion,1284929943 +139579,42632,Korea,1284929928 +139579,42632,prison,1284929896 +139579,42632,revenge,1284929889 +139579,42632,stylized,1284929892 +139579,51255,action,1284930251 +139579,51255,buddy movie,1284930256 +139579,51255,dystopia,1284930254 +139579,51255,Edgar Wright,1284930247 +139579,51255,murder,1284930263 +139579,51255,Simon Pegg,1284930244 +139579,51255,small town,1284930268 +139579,51255,Timothy Dalton,1284930245 +139579,51540,based on a true story,1284929673 +139579,51540,David Fincher,1284929683 +139579,51540,investigation,1284929687 +139579,51540,Jake Gyllenhaal,1284929680 +139579,51540,obsession,1284929689 +139579,51540,Robert Downey Jr.,1284929675 +139579,51540,serial killer,1284929691 +139579,51540,stylized,1284929755 +139579,51709,family drama,1284930601 +139579,51709,horror,1284930687 +139579,51709,Joon-ho Bong,1284930665 +139579,51709,Kang-ho Song,1284930673 +139579,51709,Korea,1284930605 +139579,51709,monster,1284930610 +139579,53468,1950s,1284930323 +139579,53468,Billy Connolly,1284930318 +139579,53468,Canadian,1284930309 +139579,53468,Carrie-Anne Moss,1284930311 +139579,53468,zombies,1284930314 +139579,53766,action,1284933426 +139579,53766,crime,1284933432 +139579,53766,criminals,1284933440 +139579,53766,gunfight,1284933515 +139579,53766,hostage,1284933481 +139579,53766,hostages,1284933474 +139579,53766,Johnnie To,1284933363 +139579,53766,long takes,1284933410 +139579,53766,media politics,1284933577 +139579,53766,siege,1284933555 +139579,53788,Anthony Wong Chau-Sang,1284933290 +139579,53788,Francis Ng,1284933305 +139579,53788,hitman,1284933321 +139579,53788,hitmen,1284933314 +139579,53788,Johnnie To,1284933303 +139579,53788,revenge,1284933341 +139579,53788,Simon Yam,1284933293 +139579,54426,Corneliu Porumboiu,1284936713 +139579,54426,losers,1284936722 +139579,54426,satire,1284936752 +139579,54426,TV show,1284936738 +139579,56782,based on a book,1284930861 +139579,56782,capitalism,1284930899 +139579,56782,Daniel Day-Lewis,1284930859 +139579,56782,father-son relationship,1284930863 +139579,56782,greed,1284930871 +139579,56782,mining,1284930874 +139579,56782,murder,1284930911 +139579,56782,oil,1284930915 +139579,56782,religion,1284930882 +139579,56805,biopic,1284934835 +139579,56805,comedy,1284934901 +139579,56805,Harold Ramis,1284934826 +139579,56805,Jason Schwartzman,1284934845 +139579,56805,John C. Reilly,1284934819 +139579,56805,music,1284934862 +139579,56805,Nudity (Full Frontal - Brief),1284934868 +139579,56805,overlong,1284934888 +139579,56805,parody,1284934816 +139579,56805,Paul Rudd,1284934851 +139579,56805,satire,1284934839 +139579,57640,action,1284933172 +139579,57640,based on a comic,1284933150 +139579,57640,beautiful effects,1284933189 +139579,57640,childish,1284933215 +139579,57640,Guillermo del Toro,1284933139 +139579,57640,quirky,1284933200 +139579,57640,Ron Perlman,1284933142 +139579,57640,Selma Blair,1284933148 +139579,57640,sequel,1284933167 +139579,57669,black comedy,1284932847 +139579,57669,Brendan Gleeson,1284932870 +139579,57669,Colin Farrell,1284932844 +139579,57669,dark comedy,1284932836 +139579,57669,friendship,1284932837 +139579,57669,hitman,1284932839 +139579,57669,hitmen,1284932881 +139579,57669,irish accent,1284932857 +139579,57669,Ralph Fiennes,1284932843 +139579,57669,stylized,1284932851 +139579,57669,violent,1284932860 +139579,58559,action,1284937366 +139579,58559,Christian Bale,1284937383 +139579,58559,dark,1284937381 +139579,58559,Heath Ledger,1284937368 +139579,58559,Maggie Gyllenhaal,1284937449 +139579,58559,Michael Caine,1284937373 +139579,58559,Morgan Freeman,1284937370 +139579,58559,stylized,1284937407 +139579,61132,Ben Stiller,1284934694 +139579,61132,Brandon T. Jackson,1284934781 +139579,61132,Jack Black,1284934698 +139579,61132,jungle,1284934717 +139579,61132,Matthew McConaughey,1284934704 +139579,61132,movie business,1284934714 +139579,61132,parody,1284934702 +139579,61132,Robert Downey Jr.,1284934700 +139579,61132,Tom Cruise,1284934708 +139579,61132,Vietnam War,1284934711 +139579,61240,1980s,1284929833 +139579,61240,based on a book,1284929777 +139579,61240,bittersweet,1284929805 +139579,61240,coming of age,1284929781 +139579,61240,friendship relations,1284929811 +139579,61240,horror,1284929813 +139579,61240,meditative,1284929796 +139579,61240,slow,1284929799 +139579,61240,suburbia,1284929803 +139579,61240,swedish,1284929790 +139579,61240,touching,1284929793 +139579,61240,vampires,1284929788 +139579,65261,anime,1284929293 +139579,65261,children,1284929372 +139579,65261,environmental,1284929314 +139579,65261,friendship,1284929305 +139579,65261,Hayao Miyazaki,1284929296 +139579,65261,Japan,1284929298 +139579,65261,ocean,1284929304 +139579,65261,storm,1284929323 +139579,66785,chase,1284935325 +139579,66785,desert,1284935126 +139579,66785,Funny,1284935123 +139579,66785,gunfight,1284935201 +139579,66785,gunfights,1284935209 +139579,66785,humorous,1284935285 +139579,66785,Kang-ho Song,1284935119 +139579,66785,landscape,1284935192 +139579,66785,overlong,1284935298 +139579,66785,scenery,1284935270 +139579,66785,scenography,1284935262 +139579,66785,slapstick,1284935244 +139579,66785,stylized,1284935217 +139579,66785,train robbery,1284935172 +139579,66785,trains,1284935149 +139579,66785,treasure hunt,1284935181 +139579,66785,western,1284935347 +139579,68237,artificial intelligence,1284930028 +139579,68237,cloning,1284930031 +139579,68237,death,1284930075 +139579,68237,Douglas Jones,1284930102 +139579,68237,dystopia,1284930035 +139579,68237,hallucination,1284930101 +139579,68237,isolation,1284930018 +139579,68237,Kevin Spacey,1284930019 +139579,68237,moon,1284930021 +139579,68237,robot,1284930042 +139579,68237,Sam Rockwell,1284930016 +139579,68237,solitude,1284930024 +139579,68237,space,1284930025 +139579,68237,technology,1284930084 +139579,69481,adrenaline junkie,1284934421 +139579,69481,death,1284934457 +139579,69481,explosions,1284934459 +139579,69481,Iraq,1284934429 +139579,69481,Iraq War,1284934432 +139579,69481,Jeremy Renner,1284934443 +139579,69481,Middle East,1284934427 +139579,69481,Ralph Fiennes,1284934436 +139579,69481,War,1284934455 +139579,71500,Halloween,1284930724 +139579,71500,multiple storylines,1284930727 +139579,73344,mafia,1284930384 +139579,73344,prison,1284930388 +139579,73344,Tahar Rahim,1284930392 +139579,76091,drama,1284937071 +139579,76091,Hye-ja Kim,1284937031 +139579,76091,investigation,1284936915 +139579,76091,Joon-ho Bong,1284936843 +139579,76091,Korea,1284936941 +139579,76091,mental illness,1284936934 +139579,76091,mother-son relationship,1284936894 +139579,76091,murder,1284937018 +139579,76091,stylized,1284936851 +139579,77731,Anthony Wong Chau-Sang,1284933591 +139579,77731,brotherhood,1284933680 +139579,77731,criminals,1284933655 +139579,77731,hitman,1284933629 +139579,77731,hitmen,1284933622 +139579,77731,Hong Kong,1284933696 +139579,77731,Johnnie To,1284933603 +139579,77731,Johnny Hallyday,1284933596 +139579,77731,loyalty,1284933636 +139579,77731,revenge,1284933612 +139579,77731,stylized,1284933702 +139579,77731,Suet Lam,1284933598 +139579,77731,vengeance,1284933612 +139579,79695,action,1284932479 +139579,79695,Arnold Schwarzenegger,1284932476 +139579,79695,Dolph Lundgren,1284932477 +139579,79695,Jason Statham,1284932471 +139579,79695,Sylvester Stallone,1284932472 +139579,79695,violence,1284932500 +139581,260,action,1439760355 +139581,260,sci-fi,1439760343 +139609,14,biographical,1189333940 +139609,230,stephen king,1189333809 +139609,419,television,1189334346 +139609,519,robots,1189334319 +139609,546,video game,1189334251 +139609,838,jane austin,1189333811 +139609,1224,historical,1189334291 +139609,1298,classic rock,1189334199 +139609,1779,Michael Crichton,1189334198 +139609,2137,children's book,1189334268 +139609,2409,boxing,1189334290 +139609,2642,comic books,1189334332 +139609,2863,beatles,1189334360 +139609,2976,ambulance,1189334439 +139609,2986,robots,1189334318 +139609,3362,BANK ROBBERY,1189334122 +139609,3450,elderly,1189334242 +139609,3967,dance,1189334096 +139609,4262,Gangster,1189334019 +139609,4447,chick flick,1189334054 +139609,4448,montreal,1189334415 +139609,4848,los angeles,1189334021 +139609,5377,london,1189333874 +139609,6218,Soccer,1189334166 +139609,8798,los angeles,1189334212 +139611,296,black comedy,1430913594 +139611,296,drugs,1430913594 +139611,296,quentin tarantino,1430913594 +139611,356,heartwarming,1431626953 +139611,356,oscar (best picture),1431626953 +139611,356,tom hanks,1431626953 +139611,593,cannibalism,1435089107 +139611,593,hannibal lecter,1435089107 +139611,593,iconic performance,1435089107 +139611,93510,2014,1426488377 +139611,96337,2014,1426520945 +139611,100440,2014,1426489201 +139611,101070,2014,1426488652 +139611,102684,2014,1426520723 +139611,102792,2015,1437378194 +139611,103335,2014,1430914450 +139611,103984,2014,1426520984 +139611,104841,2014,1426520751 +139611,105355,2014,1426520824 +139611,105769,2014,1426520870 +139611,105844,2014,1426521697 +139611,106100,2014,1426489157 +139611,106438,2014,1426520852 +139611,106452,2015,1426487591 +139611,106696,2014,1430914466 +139611,106747,2014,1426520906 +139611,106920,2014,1426488682 +139611,107406,2015,1426488486 +139611,107771,2014,1426520690 +139611,107883,2015,1426872875 +139611,108727,2014,1426521781 +139611,108981,2014,1426521772 +139611,109374,2014,1426489383 +139611,109487,2014,1426489171 +139611,110461,2015,1426616359 +139611,110873,2015,1426750844 +139611,110882,2015,1435089125 +139611,111360,2015,1426488077 +139611,111443,2014,1426488617 +139611,111759,2015,1426488503 +139611,112070,2015,1426488033 +139611,112138,2015,1426488361 +139611,112183,2015,1426487569 +139611,112290,2014,1426487652 +139611,112290,coming-of-age,1426750963 +139611,112290,quietly beautiful,1426750963 +139611,112290,realism,1426750963 +139611,112550,2015,1439450624 +139611,112552,2015,1426487517 +139611,112556,2014,1426489329 +139611,112946,2015,1426488106 +139611,113705,2015,1426897764 +139611,114074,2015,1426488336 +139611,114342,2014,1426487544 +139611,114678,2015,1426616377 +139611,115122,2015,1437499960 +139611,115667,2015,1426872926 +139611,115713,2015,1435440325 +139611,116138,2015,1426487495 +139611,116161,2015,1435089172 +139611,116781,2015,1426488060 +139611,116797,2015,1426487621 +139611,116823,2014,1426489055 +139611,117456,2015,1426488406 +139611,117533,2015,1430913621 +139611,118246,2015,1426488773 +139611,118696,2014,1426488837 +139611,118896,2015,1435089228 +139611,120110,2015,1426488308 +139611,120284,2015,1449432881 +139611,121169,2015,1431626823 +139611,122882,2015,1431765625 +139611,122886,2015,1453331962 +139611,122948,2015,1430913839 +139611,126919,2015,1437378209 +139611,127186,2014,1430913742 +139611,127298,2015,1426487986 +139611,128360,2016,1453331887 +139611,128671,2015,1437378247 +139611,130290,2015,1426488264 +139611,130292,2014,1426488921 +139611,130294,2014,1426488982 +139611,130296,2014,1426489259 +139611,130298,2014,1426489303 +139611,133255,2014,1430913944 +139611,133437,guilt,1431630007 +139611,133437,Slovenian Oscar candidate,1431629987 +139611,133437,student-teacher relationships,1431630030 +139611,133437,suicide,1431630022 +139611,133771,2016,1453331909 +139611,134130,2015,1449432732 +139611,134214,2015,1450477631 +139611,134368,2015,1449432716 +139611,134853,2016,1453331868 +139611,135133,2015,1449432794 +139611,135887,2015,1451260606 +139611,136020,2015,1449432700 +139611,141485,2015,1442920078 +139611,142458,2015,1442920165 +139623,260,classic,1432649077 +139623,260,Cult,1432649081 +139623,260,sci-fi,1432649067 +139652,4973,oscar-nominated,1447542047 +139652,6711,Oscar Nominee: Director,1447542504 +139652,6711,oscar: screenplay,1447542647 +139691,1101,so bad it's good,1436124848 +139691,119145,action,1434535487 +139691,119145,british,1434535487 +139691,119145,spy,1434535487 +139691,125914,adventure,1435589604 +139691,125914,british,1435589604 +139691,125914,spy,1435589604 +139696,377,Keanu Reeves,1168580282 +139696,588,Disney,1151701788 +139696,2080,Disney,1151701781 +139696,6763,Ben Stiller,1169010943 +139696,45668,Sandra Bullock,1168580267 +139714,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1441994145 +139714,260,the classic sci fi movie. must see.,1441994123 +139733,107406,post-apocalyptic,1439758050 +139738,100799,documentary,1425619125 +139738,100799,drama,1425619125 +139738,100799,war,1425619125 +139759,8939,good story murdered,1174966858 +139759,41566,moraly questionable,1169864433 +139770,2,adventure,1446853492 +139770,2,family,1446853534 +139770,2,fantasy,1446853496 +139770,2,kids,1446853547 +139770,2,magic board game,1446853503 +139770,296,bad ass,1447173445 +139770,296,classic,1447173429 +139770,296,crime,1447173424 +139770,296,cult film,1447173384 +139770,296,dark comedy,1447173372 +139770,296,dark humor,1447173421 +139770,296,great soundtrack,1447173418 +139770,296,multiple storylines,1447173377 +139770,296,nonlinear,1447173374 +139770,296,notable soundtrack,1447173401 +139770,296,organized crime,1447173393 +139770,296,Quentin Tarantino,1447173369 +139770,296,Samuel L. Jackson,1447173380 +139770,296,Tarantino,1447173388 +139770,296,violence,1447173382 +139770,858,classic,1447173223 +139770,858,Mafia,1447173138 +139770,858,Marlon Brando,1447173163 +139770,858,oranges,1447173167 +139770,858,organized crime,1447173144 +139770,858,Oscar (Best Picture),1447173155 +139770,2959,action,1446853665 +139770,2959,Brad Pitt,1446853703 +139770,2959,Chuck Palahniuk,1446853697 +139770,2959,Edward Norton,1446853700 +139770,2959,helena bonham carter,1446853693 +139770,2959,hot dudes,1446853671 +139770,2959,Jared Leto,1446853710 +139770,2959,mental illness,1446853617 +139770,2959,plot twist,1446853653 +139770,2959,psychological thriller,1446853658 +139770,2959,social commentary,1446853669 +139770,2959,violence,1446853667 +139770,3949,ass to ass,1447178443 +139770,3949,atmospheric,1447178406 +139770,3949,dark,1447178399 +139770,3949,Darren Aronofsky,1447178414 +139770,3949,disturbing,1447178397 +139770,3949,drugs,1447178402 +139770,3949,emotional,1447178410 +139770,3949,great acting,1447178421 +139770,3949,independent film,1447178427 +139770,3949,intense,1447178418 +139770,3949,Jared Leto,1447178416 +139770,3949,psychological,1447178425 +139770,3949,psychology,1447178395 +139770,3949,social commentary,1447178404 +139770,3949,soundtrack,1447178560 +139770,4011,brad pitt,1447177989 +139770,4011,comedy,1447177993 +139770,4011,cynical,1447178000 +139770,4011,dark comedy,1447177998 +139770,4011,dark humor,1447178006 +139770,4011,funny,1447178009 +139770,4011,Great dialogue,1447178003 +139770,4011,guy ritchie,1447177991 +139770,4011,heist,1447178012 +139770,4011,Hilarious,1447178016 +139770,4011,organized crime,1447178014 +139770,4011,twist ending,1447177986 +139770,4226,cerebral,1447173933 +139770,4226,Christopher Nolan,1447173915 +139770,4226,cult film,1447173927 +139770,4226,nonlinear,1447173888 +139770,4226,plot twist,1447173920 +139770,4226,psychological,1447173896 +139770,4226,psychological thriller,1447173912 +139770,4226,psychology,1447173892 +139770,4226,tense,1447173929 +139770,4226,twist ending,1447173890 +139770,4306,animation,1447174152 +139770,4306,comedy,1447174154 +139770,4306,Dreamworks,1447174164 +139770,4306,Funny,1447174157 +139770,4306,parody,1447174171 +139770,4306,smart,1447174192 +139770,4306,witty,1447174160 +139770,4993,Adventure,1447172143 +139770,4993,epic,1447172141 +139770,4993,fantasy,1447172136 +139770,4993,great soundtrack,1447172150 +139770,4993,Oscar (Best Cinematography),1447172152 +139770,4995,based on a true story,1447183235 +139770,4995,biography,1447183247 +139770,4995,Drama,1447183221 +139770,4995,Education,1447183229 +139770,4995,genius,1447183262 +139770,4995,insanity,1447183239 +139770,4995,inspirational,1447183251 +139770,4995,intelligent,1447183249 +139770,4995,math,1447183260 +139770,4995,mathematics,1447183266 +139770,4995,mental illness,1447183258 +139770,4995,Oscar (Best Picture),1447183243 +139770,4995,Oscar Winner,1447183231 +139770,4995,psychology,1447183209 +139770,4995,schizophrenia,1447183264 +139770,4995,true story,1447183255 +139770,4995,twist ending,1447183245 +139770,5349,Action,1447176005 +139770,5349,adventure,1447176015 +139770,5349,Comic book,1447175998 +139770,5349,New York City,1447176022 +139770,5349,superhero,1447175995 +139770,5952,Action,1447172593 +139770,5952,Adventure,1447172345 +139770,5952,Epic,1447172349 +139770,5952,fantasy,1447172342 +139770,5952,middle earth,1447172606 +139770,5952,multiple storylines,1447172589 +139770,5952,mythology,1447172583 +139770,5989,based on a true story,1447183381 +139770,5989,based on true story,1447183364 +139770,5989,comedy,1447183355 +139770,5989,con artists,1447183330 +139770,5989,crime,1447183332 +139770,5989,drama,1447183353 +139770,5989,factual,1447183366 +139770,5989,intelligent,1447183338 +139770,5989,Leonardo DiCaprio,1447183322 +139770,5989,smart,1447183378 +139770,5989,Steven Spielberg,1447183327 +139770,5989,Tom Hanks,1447183390 +139770,5989,true story,1447183324 +139770,6874,action,1447173844 +139770,6874,assassin,1447173839 +139770,6874,cinematography,1447173829 +139770,6874,dark hero,1447173851 +139770,6874,funny,1447173849 +139770,6874,Kick-Butt Women,1447173817 +139770,6874,martial arts,1447173813 +139770,6874,nonlinear,1447173864 +139770,6874,Quentin Tarantino,1447173811 +139770,6874,revenge,1447173862 +139770,6874,strong female lead,1447173825 +139770,6874,tarantino,1447173831 +139770,6874,Uma Thurman,1447173859 +139770,6874,violence,1447173841 +139770,7153,Adventure,1447172636 +139770,7153,epic,1447172649 +139770,7153,epic adventure,1447172659 +139770,7153,fantasy,1447172633 +139770,7153,great ending,1447172647 +139770,7153,multiple storylines,1447172654 +139770,7153,Oscar (Best Picture),1447172638 +139770,7438,action,1447177389 +139770,7438,martial arts,1447177382 +139770,7438,Quentin Tarantino,1447177379 +139770,7438,soundtrack,1447177416 +139770,7438,strong female lead,1447177404 +139770,7438,tarantino,1447177394 +139770,7438,twist ending,1447177765 +139770,8360,animation,1447174219 +139770,8360,comedy,1447174221 +139770,8360,fairy tales,1447174247 +139770,8360,Funny,1447174243 +139770,8360,parody,1447174225 +139770,8360,puss in boots,1447174239 +139770,8360,sequel,1447174228 +139770,8636,action,1447176050 +139770,8636,great sequel,1447176046 +139770,8636,superhero,1447176037 +139770,8636,villain,1447176061 +139770,8644,Isaac Asimov,1447184839 +139770,8644,robot,1447184837 +139770,8961,Adventure,1447177809 +139770,8961,animation,1447177820 +139770,8961,comedy,1447177807 +139770,8961,Disney,1447177816 +139770,8961,family,1447177804 +139770,8961,fun,1447177830 +139770,8961,Oscar (Best Animated Feature),1447177813 +139770,8961,Pixar,1447177798 +139770,8961,superhero,1447177801 +139770,33794,Christian Bale,1447183158 +139770,33794,superhero,1447183155 +139770,48516,complex,1447178315 +139770,48516,corruption,1447178235 +139770,48516,Crime,1447178248 +139770,48516,ensemble cast,1447178261 +139770,48516,gangster,1447178252 +139770,48516,great plot,1447178307 +139770,48516,Jack Nicholson,1447178206 +139770,48516,Leonardo DiCaprio,1447178204 +139770,48516,Mafia,1447178223 +139770,48516,Martin Scorsese,1447178210 +139770,48516,Matt Damon,1447178213 +139770,48516,organized crime,1447178208 +139770,48516,original,1447178257 +139770,48516,police corruption,1447178221 +139770,48516,psychology,1447178245 +139770,48516,suspense,1447178228 +139770,48516,twist ending,1447178225 +139770,48516,undercover cop,1447178217 +139770,51662,action,1447182990 +139770,51662,adapted from:comic,1447182998 +139770,51662,epic adventure,1447183013 +139770,51662,male nudity,1447183001 +139770,51662,narrated,1447183005 +139770,51662,one liners,1447183026 +139770,51662,war,1447182993 +139770,52722,action,1447176301 +139770,52722,sequel,1447176156 +139770,52722,villains,1447176166 +139770,53121,bad sequel,1447174292 +139770,58559,Aaron Eckhart,1446853962 +139770,58559,action,1446853864 +139770,58559,Adaptation,1446853887 +139770,58559,Batman,1446853859 +139770,58559,Christian Bale,1446853742 +139770,58559,Christopher Nolan,1446853866 +139770,58559,comic book,1446853880 +139770,58559,Gary Oldman,1446853960 +139770,58559,Hans Zimmer,1446853875 +139770,58559,Heath Ledger,1446853898 +139770,58559,Michael Caine,1446853923 +139770,58559,Non screaming Gary Oldman,1446853957 +139770,58559,sequel,1446853781 +139770,58559,vigilantism,1446853975 +139770,59315,action,1447179489 +139770,59315,adventure,1447179498 +139770,59315,funny,1447179492 +139770,59315,Robert Downey Jr,1447179485 +139770,59315,Robert Downey Jr.,1447179469 +139770,59315,superhero,1447179471 +139770,59315,technology,1447179486 +139770,59315,visually appealing,1447179576 +139770,62849,action,1447178089 +139770,62849,Action/Comedy,1447178083 +139770,62849,cool dialogues,1447178067 +139770,62849,funny,1447178069 +139770,62849,Gerard Butler,1447178065 +139770,62849,good soundtrack,1447178063 +139770,62849,Guy Ritchie,1447178074 +139770,62849,heist,1447178106 +139770,62849,stoners,1447178097 +139770,62849,Tom Hardy,1447178072 +139770,62849,twist ending,1447178100 +139770,63082,adventure,1447174740 +139770,63082,emotional,1447174719 +139770,63082,feel-good,1447174693 +139770,63082,great soundtrack,1447174691 +139770,63082,nonlinear,1447174652 +139770,63082,Poverty,1447174709 +139770,63082,social commentary,1447174655 +139770,68157,alternate history,1447173768 +139770,68157,au revoir shoshana!,1447173744 +139770,68157,black comedy,1447173662 +139770,68157,Brad Pitt,1447173653 +139770,68157,Christoph Waltz,1447173665 +139770,68157,dark comedy,1447173748 +139770,68157,Dead Nazis,1447173682 +139770,68157,dialogue,1447173691 +139770,68157,ending,1447173726 +139770,68157,gratuitous violence,1447173675 +139770,68157,great acting,1447173710 +139770,68157,great plot,1447173763 +139770,68157,great soundtrack,1447173689 +139770,68157,Quentin Tarantino,1447173651 +139770,68157,random unnecessary close-ups of cream,1447173718 +139770,68157,revenge,1447173772 +139770,68157,satire,1447173659 +139770,68157,soundtrack,1447173729 +139770,68157,tarantino,1447173775 +139770,68157,tense,1447173686 +139770,68157,twist ending,1447173723 +139770,68157,unusual plot structure,1447173672 +139770,68157,visually appealing,1447173684 +139770,68157,war,1447173707 +139770,68157,World War II,1447173656 +139770,68954,adventure,1447183637 +139770,68954,animation,1447183663 +139770,68954,comedy,1447183652 +139770,68954,computer animation,1447183639 +139770,68954,emotional,1447183654 +139770,68954,feel good movie,1447183660 +139770,68954,friendship,1447183642 +139770,68954,funny,1447183657 +139770,68954,overrated,1447183629 +139770,68954,Pixar,1447183635 +139770,68954,sweet,1447183646 +139770,68954,touching,1447183665 +139770,69122,cliche,1447184729 +139770,69122,comedy,1447184717 +139770,69122,funny,1447184742 +139770,70286,aliens,1447184622 +139770,70286,atmospheric,1447184675 +139770,70286,intelligent,1447184668 +139770,70286,mockumentary,1447184649 +139770,70286,political commentary,1447184684 +139770,70286,redemption,1447184654 +139770,70286,satire,1447184632 +139770,70286,sci-fi,1447184677 +139770,70286,segregation,1447184646 +139770,70286,social commentary,1447184644 +139770,70286,South Africa,1447184671 +139770,72998,bad science,1447183526 +139770,72998,beautiful scenery,1447183492 +139770,72998,cgi,1447183520 +139770,72998,effects,1447183511 +139770,72998,futuristic,1447183474 +139770,72998,sci-fi,1447183477 +139770,72998,science fiction,1447183509 +139770,72998,special effects,1447183507 +139770,79132,action,1447179082 +139770,79132,alternate reality,1447179017 +139770,79132,clever,1447179050 +139770,79132,complex,1447179116 +139770,79132,dream within a dream,1447179143 +139770,79132,dreamlike,1447179119 +139770,79132,dreams,1447179055 +139770,79132,fantasy,1447179149 +139770,79132,great soundtrack,1447179041 +139770,79132,Hans Zimmer,1447179063 +139770,79132,heist,1447179053 +139770,79132,Leonardo DiCaprio,1447179088 +139770,79132,memory,1447179035 +139770,79132,mindfuck,1447179085 +139770,79132,multiple interpretations,1447179045 +139770,79132,psychological,1447179039 +139770,79132,psychology,1447179130 +139770,79132,sci-fi,1447179078 +139770,79132,soundtrack,1447179141 +139770,79132,surreal,1447179029 +139770,79132,suspense,1447179047 +139770,79132,thought-provoking,1447179106 +139770,79132,thriller,1447179133 +139770,79132,twist ending,1447179076 +139770,79132,visually appealing,1447179019 +139770,81564,animated,1447177886 +139770,81564,animation,1447177890 +139770,81564,anti-hero,1447177869 +139770,81564,Dreamworks,1447177922 +139770,81564,feel good movie,1447177918 +139770,81564,funny,1447177908 +139770,81564,heartwarming,1447177924 +139770,81564,soundtrack,1447177932 +139770,81564,superhero,1447177913 +139770,81564,witty,1447177879 +139770,81591,alter ego,1447178966 +139770,81591,ballet,1447178637 +139770,81591,Cinematography,1447178719 +139770,81591,dance,1447178634 +139770,81591,dark,1447178632 +139770,81591,Darren Aronofsky,1447178713 +139770,81591,disturbing,1447178696 +139770,81591,mental illness,1447178655 +139770,81591,Natalie Portman,1447178612 +139770,81591,obsession,1447178700 +139770,81591,Oscar (Best Actress),1447178659 +139770,81591,psychological,1447178614 +139770,81591,Soundtrack,1447178710 +139770,81591,surreal,1447178643 +139770,81591,tense,1447178625 +139770,81591,thriller,1447178662 +139770,81591,Vincent Cassel,1447178705 +139770,88129,action,1446854404 +139770,88129,antihero,1446854324 +139770,88129,Bloody,1446854382 +139770,88129,Bryan Cranston,1446854326 +139770,88129,car chase,1446854320 +139770,88129,Carey Mulligan,1446854314 +139770,88129,Cliff Martinez,1446854312 +139770,88129,crime,1446854317 +139770,88129,great soundtrack,1446854279 +139770,88129,Nicolas Winding Refn,1446854328 +139770,88129,Oscar Isaac,1446854322 +139770,88129,Ryan Gosling,1446854268 +139770,88129,tense,1446854447 +139770,88129,violence,1446854277 +139770,89745,action,1447170335 +139770,89745,funny,1447170373 +139770,89745,Joss Whedon,1447170618 +139770,89745,Mark Ruffalo,1447170338 +139770,89745,Robert Downey Jr.,1447170325 +139770,89745,Samuel L. Jackson,1447170341 +139770,89745,Scarlett Johansson,1447170331 +139770,89745,Special Effects,1447170605 +139770,89745,superhero,1447170212 +139770,91529,Batman,1447171706 +139770,91529,coward,1447171704 +139770,91529,lazy problem solving,1447171813 +139770,91529,plot twist,1447171667 +139770,91529,Predictable,1447171649 +139770,91529,silly plot,1447171651 +139770,91529,Tom Hardy,1447171661 +139770,91529,unsatisfying ending,1447171640 +139770,92259,acting,1447174402 +139770,92259,based on a true story,1447174449 +139770,92259,emotional,1447174386 +139770,92259,feel good movie,1447174389 +139770,92259,French,1447174432 +139770,92259,french comedy,1447174465 +139770,92259,friendship,1447174371 +139770,92259,funny,1447174393 +139770,92259,hilarious,1447174399 +139770,92259,inspirational,1447174439 +139770,92259,sexuality,1447174458 +139770,92259,touching,1447174396 +139770,92259,unlikely friendships,1447174441 +139770,98809,boring,1447172700 +139770,98809,CGI,1447172703 +139770,98809,dwarf but not really,1447172753 +139770,98809,epic,1447172711 +139770,98809,exaggerated,1447172687 +139770,98809,fantasy,1447172713 +139770,98809,franchise,1447172760 +139770,98809,Peter Jackson,1447172766 +139770,98809,too long,1447172690 +139770,99114,Christoph Waltz,1447173483 +139770,99114,epic,1447173511 +139770,99114,funny,1447173493 +139770,99114,Great performances,1447173489 +139770,99114,Humour,1447173504 +139770,99114,Jamie Foxx,1447173500 +139770,99114,Leonardo DiCaprio,1447173476 +139770,99114,oscar nominee,1447173612 +139770,99114,plot,1447173598 +139770,99114,Quentin Tarantino,1447173474 +139770,99114,Revenge,1447173486 +139770,99114,Samuel L. Jackson,1447173479 +139770,99114,Soundtrack,1447173533 +139770,99114,violence,1447173519 +139770,99114,visually appealing,1447173481 +139770,105844,based on a true story,1447184334 +139770,105844,cinematography,1447184336 +139770,105844,drama,1447184422 +139770,105844,emotional,1447184419 +139770,105844,slavery,1447184375 +139770,105844,tearjerker,1447184417 +139770,105844,white man saving the defenseless black person,1447184362 +139770,106489,benedict cumberbatch,1447172808 +139770,106489,dragon,1447172821 +139770,106489,ending,1447172866 +139770,106489,fantasy,1447172819 +139770,106489,love triangle,1447172813 +139770,106489,Martin Freeman,1447172851 +139770,106489,too long,1447172826 +139770,106489,weak plot,1447172840 +139770,109374,cinematography,1447185364 +139770,109374,colourful sets,1447185385 +139770,109374,funny,1447185373 +139770,109374,great dialogue,1447185377 +139770,109374,odd sense of humor,1447185389 +139770,109374,original,1447185396 +139770,109374,quirky,1447185366 +139770,109374,visually appealing,1447185362 +139770,109374,Wes Anderson,1447185370 +139770,112552,drama,1447183080 +139770,112552,good acting,1447183083 +139770,112552,intense,1447183075 +139770,112552,J.K. Simmons,1447183085 +139770,112552,jazz,1447183068 +139770,112552,Miles Teller,1447183094 +139770,112552,motivation,1447183088 +139770,112552,musicians,1447183073 +139770,112552,perfectionism,1447183097 +139770,112552,psychological,1447183078 +139770,112552,Teacher Student,1447183090 +139770,112552,Tense,1447183070 +139770,118696,Peter Jackson,1447172968 +139770,118696,silly,1447172933 +139770,118696,the first five minutes are the best ones,1447173014 +139770,118696,Throwing physics away,1447172995 +139770,118696,too long,1447172930 +139770,118696,trying too hard to be LOTR,1447172964 +139770,118696,weak ending,1447172950 +139770,122892,Marvel,1447170855 +139770,122892,predictable,1447170890 +139770,122892,sequel,1447171253 +139770,122892,superhero,1447170881 +139770,122892,too much hawkeye,1447170895 +139771,344,Dumb,1153871774 +139771,750,classic,1153871777 +139771,2683,spoof,1153871771 +139771,43836,Steve Martin,1153872011 +139771,44004,chick flick,1153871971 +139777,296,Bruce Willis,1174511732 +139777,296,Uma Thurman,1174511786 +139777,49132,enigmatic,1174509371 +139777,49132,Pierce Brosnan,1174509371 +139777,49132,speech,1174509383 +139777,49132,time travel,1174509371 +139779,260,Boring,1433462811 +139779,260,Never,1433462821 +139779,27584,horror,1435535012 +139779,27584,mystery,1435587348 +139779,27584,thriller,1435587312 +139779,59814,crime,1436142722 +139779,59814,drama,1436142722 +139779,59814,insane,1435872017 +139779,59814,thriller,1436142722 +139779,59814,weird,1435872020 +139779,136602,found footage,1436581674 +139779,136602,thriller,1436581684 +139792,260,sci-fi,1436723724 +139792,260,Science Fiction,1436723304 +139792,260,space adventure,1436723315 +139792,260,space opera,1436723313 +139792,260,spacecraft,1436723358 +139792,260,spaceships,1436724739 +139792,260,Star Wars,1436723307 +139792,541,artificial intelligence,1436724118 +139792,541,dystopia,1436724115 +139792,541,existentialism,1436724124 +139792,541,futuristic,1436724127 +139792,541,sci-fi,1436724113 +139792,924,artificial intelligence,1436724193 +139792,924,sci-fi,1436724191 +139792,924,spacecraft,1436724224 +139792,924,visually appealing,1436724201 +139792,1196,sci-fi,1436723777 +139792,1196,space opera,1436723557 +139792,1196,Star Wars,1436723552 +139792,1200,aliens,1436723387 +139792,1200,sci-fi,1436723738 +139792,1200,space craft,1436723399 +139792,1200,SPACE TRAVEL,1436723408 +139792,1210,sci-fi,1436723766 +139792,1210,space craft,1436723529 +139792,1210,space opera,1436723523 +139792,1210,Star Wars,1436723511 +139792,1214,aliens,1436723930 +139792,1214,horror,1436723935 +139792,1214,sci-fi,1436723928 +139792,1214,space craft,1436723947 +139792,1214,space travel,1436723937 +139792,1214,suspense,1436723932 +139792,2288,alien invasion,1436723434 +139792,2288,aliens,1436723425 +139792,2288,horror,1436723468 +139792,2288,sci-fi,1436723756 +139792,2288,space craft,1436723449 +139792,2628,Jar Jar Binks,1436724561 +139792,2628,sci-fi,1436724552 +139792,2628,space,1436724554 +139792,2628,spacecraft,1436724573 +139792,2628,Star Wars,1436724551 +139792,5378,sci-fi,1436724590 +139792,5378,spacecraft,1436724616 +139792,5378,Star Wars,1436724593 +139792,5881,sci-fi,1436724245 +139792,5881,spacecraft,1436724249 +139792,5881,thought-provoking,1436724288 +139792,27611,humanity,1436723603 +139792,27611,post-apocalyptic,1436723629 +139792,27611,sci-fi,1436723790 +139792,27611,space craft,1436723610 +139792,33493,sci-fi,1436724623 +139792,33493,spacecraft,1436724632 +139792,33493,spaceships,1436724760 +139792,33493,Star Wars,1436724621 +139792,55908,sci-fi,1436724067 +139792,55908,thought-provoking,1436724057 +139792,59315,sci-fi,1436724923 +139792,59315,superhero,1436724920 +139792,59315,technology,1436724931 +139792,68237,dystopia,1436723891 +139792,68237,plot twist,1436723899 +139792,68237,Sci-fi,1436723886 +139792,68237,thought-provoking,1436723897 +139792,70286,aliens,1436723851 +139792,70286,intelligent,1436723861 +139792,70286,sci-fi,1436723853 +139792,97752,dystopia,1436724158 +139792,97752,thought-provoking,1436724160 +139792,97752,visually appealing,1436724155 +139792,104841,intense,1436723681 +139792,104841,physics,1436723684 +139792,104841,sci-fi,1436723696 +139792,104841,science,1436723702 +139792,104841,space,1436723682 +139792,104841,visually appealing,1436723707 +139792,109487,physics,1436724876 +139792,109487,sci-fi,1436724872 +139792,109487,science,1436724883 +139792,109487,spaceships,1436724888 +139792,109487,thought-provoking,1436724874 +139821,296,Quentin Tarantino,1441195370 +139821,6874,Quentin Tarantino,1441195430 +139821,7438,Quentin Tarantino,1441195423 +139863,260,classic,1436128165 +139863,260,must see,1436128158 +139863,260,Science Fiction,1436128147 +139873,1291,Sean Connery,1245388302 +139873,5952,too long,1196362828 +139873,7153,too long,1196362837 +139873,36931,Jackie Chan,1245388542 +139875,260,Action,1440828222 +139875,260,sci-fi,1440828230 +139922,1,avi,1137440588 +139922,1,buy,1137440588 +139922,32,get,1137440626 +139922,36,buy,1137438309 +139922,48,get,1137440642 +139922,50,dvd,1137440636 +139922,150,dvd,1137440446 +139922,215,(s)vcd,1137440202 +139922,215,buy,1137438287 +139922,223,get,1137496870 +139922,231,get,1137496902 +139922,247,dvd,1138639338 +139922,260,dvd,1137438871 +139922,296,dvd-r,1137440575 +139922,318,dvd-r,1138025550 +139922,356,buy,1137440503 +139922,364,avi,1137440565 +139922,480,buy,1137440531 +139922,527,dvd,1137438360 +139922,541,buy,1137438296 +139922,541,dvd-r,1146575837 +139922,586,get,1137496911 +139922,587,buy,1137496906 +139922,588,(s)vcd,1137440441 +139922,589,avi,1137496940 +139922,589,get,1137496940 +139922,592,get,1137496886 +139922,593,dvd,1137438381 +139922,594,(s)vcd,1137438554 +139922,595,avi,1137440455 +139922,596,(s)vcd,1137496983 +139922,783,avi,1137497799 +139922,799,dvd-r,1139492675 +139922,858,DVD,1156792013 +139922,866,dvd,1139492644 +139922,912,(s)vcd,1137497791 +139922,919,get,1137497001 +139922,920,dvd-r,1137440516 +139922,924,dvd-r,1137440429 +139922,1010,dvd,1137440739 +139922,1024,(s)vcd,1137497809 +139922,1025,(s)vcd,1137439134 +139922,1028,dvd,1137438343 +139922,1029,dvd-r,1137440684 +139922,1030,buy,1137440753 +139922,1031,dvd-r,1187618306 +139922,1035,dvd,1137438621 +139922,1073,dvd,1137497813 +139922,1090,dvd-r,1137496987 +139922,1097,dvd,1137438322 +139922,1172,dvd,1137440681 +139922,1185,dvd,1137440741 +139922,1196,dvd,1137438794 +139922,1198,dvd,1137438349 +139922,1200,dvd,1187618016 +139922,1201,dvd-r,1137438221 +139922,1204,dvd,1137496977 +139922,1206,dvd-r,1137784899 +139922,1210,dvd,1137440796 +139922,1214,dvd,1137439284 +139922,1221,DVD,1156792018 +139922,1225,get,1137496962 +139922,1240,dvd-r,1137439813 +139922,1246,dvd-r,1146576242 +139922,1270,dvd,1137439614 +139922,1271,dvd,1187618193 +139922,1286,(s)vcd,1137440769 +139922,1286,buy,1137440769 +139922,1287,dvd,1137439628 +139922,1291,dvd,1137440714 +139922,1293,dvd,1137440712 +139922,1298,dvd-r,1146575940 +139922,1387,buy,1137440720 +139922,1527,dvd,1137440709 +139922,1584,dvd,1137497019 +139922,1587,dvd,1137497016 +139922,1617,get,1137440734 +139922,1625,dvd-r,1146576089 +139922,1653,get,1137497036 +139922,1682,get,1137441024 +139922,1721,buy,1137441026 +139922,1748,dvd-r,1138025439 +139922,1805,get,1137497171 +139922,1923,avi,1137441009 +139922,1960,DVD,1156792315 +139922,1961,get,1137497164 +139922,2003,get,1137497828 +139922,2005,dvd,1137440873 +139922,2011,dvd,1137439614 +139922,2012,dvd,1137497076 +139922,2023,DVD,1156792024 +139922,2028,dvd,1137440973 +139922,2050,dvd,1187619099 +139922,2051,dvd,1187618996 +139922,2067,dvd,1137440815 +139922,2078,(s)vcd,1137440873 +139922,2078,avi,1137440873 +139922,2080,(s)vcd,1137440913 +139922,2085,get,1137440960 +139922,2087,dvd-r,1146576212 +139922,2096,get,1137440992 +139922,2105,dvd,1137441025 +139922,2115,dvd,1137497089 +139922,2161,(s)vcd,1137440952 +139922,2161,dvd,1137440952 +139922,2177,get,1137497074 +139922,2180,avi,1137496336 +139922,2180,get,1137496336 +139922,2194,DVD,1156792258 +139922,2231,dvd-r,1146575793 +139922,2294,avi,1137468873 +139922,2297,(s)vcd,1137439870 +139922,2297,buy,1137439870 +139922,2355,avi,1137497197 +139922,2394,dvd,1137497284 +139922,2414,avi,1137496352 +139922,2414,get,1137496352 +139922,2420,get,1137497868 +139922,2467,dvd,1137439722 +139922,2528,avi,1137497227 +139922,2541,get,1137497203 +139922,2571,dvd,1137439718 +139922,2594,get,1137496281 +139922,2628,dvd,1137496308 +139922,2640,dvd,1137497238 +139922,2641,dvd,1137497891 +139922,2687,(s)vcd,1137496319 +139922,2692,get,1137496296 +139922,2712,get,1137497210 +139922,2716,(s)vcd,1137496267 +139922,2761,(s)vcd,1137439683 +139922,2761,buy,1137439683 +139922,2762,dvd,1137439801 +139922,2858,get,1137496256 +139922,2959,get,1137468947 +139922,2985,get,1137497885 +139922,3033,avi,1137497317 +139922,3034,(s)vcd,1137439783 +139922,3083,get,1137496305 +139922,3100,dvd,1137497915 +139922,3114,avi,1137496344 +139922,3114,buy,1137496344 +139922,3142,dvd,1137439831 +139922,3198,dvd,1137496292 +139922,3358,dvd,1137496287 +139922,3471,dvd,1137496248 +139922,3578,dvd,1137497355 +139922,3611,(s)vcd,1137497923 +139922,3745,get,1137497364 +139922,3751,avi,1137496572 +139922,3793,dvd,1137496680 +139922,3981,avi,1137497911 +139922,3986,dvd,1137497330 +139922,3994,avi,1137496676 +139922,3994,buy,1137496676 +139922,4016,avi,1137496577 +139922,4016,get,1137496577 +139922,4022,get,1137497343 +139922,4226,avi,1137496598 +139922,4226,dvd,1137496598 +139922,4306,buy,1137496616 +139922,4306,get,1137496623 +139922,4308,get,1137496604 +139922,4366,(s)vcd,1137496557 +139922,4370,dvd,1137496508 +139922,4446,dvd,1137497440 +139922,4720,buy,1137439724 +139922,4848,dvd,1137439720 +139922,4878,get,1137497453 +139922,4886,dvd,1137440368 +139922,4896,dvd,1137497942 +139922,4973,(s)vcd,1137440135 +139922,4975,get,1137497422 +139922,4993,dvd,1137440358 +139922,4995,get,1137496566 +139922,5014,get,1137496584 +139922,5073,dvd,1137497431 +139922,5109,avi,1137497955 +139922,5127,avi,1137497447 +139922,5127,get,1137497447 +139922,5214,get,1137497406 +139922,5218,dvd,1137440312 +139922,5349,(s)vcd,1137496651 +139922,5349,buy,1137496651 +139922,5378,dvd,1137440375 +139922,5383,dvd-r,1137812690 +139922,5410,(s)vcd,1137496636 +139922,5410,avi,1137496636 +139922,5410,get,1137496636 +139922,5444,avi,1138639981 +139922,5445,dvd,1137496744 +139922,5477,avi,1137497528 +139922,5500,get,1137496770 +139922,5630,dvd,1137496773 +139922,5809,avi,1137496718 +139922,5809,get,1137496718 +139922,5952,dvd,1137440366 +139922,5955,DVD,1156791996 +139922,5989,buy,1137496707 +139922,5995,avi,1137496780 +139922,5995,get,1137496780 +139922,6016,dvd,1137440308 +139922,6157,(s)vcd,1137497508 +139922,6157,buy,1137497473 +139922,6281,(s)vcd,1137497535 +139922,6333,dvd,1137440387 +139922,6365,dvd,1137497519 +139922,6377,dvd,1137496721 +139922,6645,buy,1137497576 +139922,6743,(s)vcd,1137440347 +139922,6743,avi,1137440347 +139922,6893,dvd,1138025413 +139922,6934,dvd,1137497562 +139922,6979,avi,1137496769 +139922,6979,get,1137496769 +139922,7030,get,1137497570 +139922,7153,dvd,1137440362 +139922,7254,get,1137496703 +139922,7318,buy,1137496759 +139922,7361,get,1137496712 +139922,7369,(s)vcd,1137497636 +139922,7386,dvd,1137497681 +139922,8132,dvd,1137496833 +139922,8207,avi,1137440300 +139922,8207,buy,1137440300 +139922,8340,dvd-r,1137784697 +139922,8360,(s)vcd,1137497641 +139922,8464,(s)vcd,1137497649 +139922,8493,(s)vcd,1137497628 +139922,8533,avi,1137497691 +139922,8581,get,1137496846 +139922,8622,avi,1137497618 +139922,8633,get,1137497622 +139922,8636,(s)vcd,1137496860 +139922,8636,buy,1137496860 +139922,8638,(s)vcd,1137440154 +139922,8638,buy,1137440272 +139922,8959,(s)vcd,1137496822 +139922,8959,buy,1137496822 +139922,8961,dvd,1137440318 +139922,27899,(s)vcd,1137496867 +139922,31410,get,1137497744 +139922,31696,get,1137497705 +139922,32031,buy,1137497734 +139922,32587,buy,1137496850 +139922,33493,dvd,1137440380 +139922,33794,dvd,1137496812 +139922,33830,buy,1137497711 +139922,34150,get,1137497763 +139922,34319,dvd-r,1137497768 +139922,39292,DVD-R,1161204085 +139922,45447,dvd-r,1187618326 +139961,2291,burton,1137321770 +139961,2291,conte,1137321770 +139961,2291,depp,1137321771 +139961,5791,art,1137321746 +139961,5791,salma,1137321746 +139969,6754,vampires,1237079113 +140003,260,future,1432014064 +140003,260,inspiring,1432014043 +140003,115617,animation,1434956793 +140003,115617,lovely characters,1434956793 +140003,115617,robot,1434956793 +140023,480,a classic,1423969027 +140023,480,dinosaurs,1423969027 +140023,480,steven spielberg,1423969027 +140023,1198,action,1427761747 +140023,1198,adventure,1427761747 +140023,1198,harrison ford,1427761747 +140023,3578,action,1308861608 +140023,3578,history,1308861593 +140023,3578,Ridley Scott,1308861578 +140023,3578,Russell Crowe,1308861576 +140023,3578,sword fight,1308861589 +140023,4103,Christian Bale,1343930106 +140023,4103,GREAT MOVIE,1343930108 +140023,4103,John Malkovich,1343930124 +140023,4103,Steven Spielberg,1343930121 +140023,4103,World War II,1343930134 +140023,5418,action,1328045125 +140023,5418,assassin,1328045140 +140023,5418,car chase,1328045129 +140023,5418,Clive Owen,1328045137 +140023,5418,conspiracy,1328045131 +140023,5418,Matt Damon,1328045123 +140023,5418,spying,1328045147 +140023,5418,thriller,1328045145 +140023,5463,americans save the world,1352600649 +140023,5463,Christian Bale,1319413210 +140023,5463,dragons,1352600637 +140023,5463,Matthew McConaughey,1319413215 +140023,5903,Amazing Cinematography,1319413124 +140023,5903,Christian Bale,1319413121 +140023,5903,cult film,1319413147 +140023,5903,gun fights,1319413129 +140023,5903,guns,1319413128 +140023,5903,post-apocalyptic,1319413126 +140023,5903,revolution,1319413140 +140023,5903,stylized,1319413153 +140023,5903,thought-provoking,1319413135 +140023,5903,visually stunning,1319413138 +140023,6942,british,1451029759 +140023,6942,christmas,1451029929 +140023,6942,great soundtrack,1451029768 +140023,6942,Liam Neeson,1451029790 +140023,6942,multiple storylines,1451029801 +140023,6942,predictable,1451029783 +140023,8865,Angelina Jolie,1325051030 +140023,8865,boring,1325050992 +140023,8865,cgi,1325050999 +140023,8865,giant robots,1325051047 +140023,8865,Jude Law,1325050996 +140023,8865,robots,1325051042 +140023,8865,story,1325051050 +140023,54997,Christian Bale,1308505131 +140023,54997,Russell Crowe,1308505133 +140023,64197,Ireland,1316911155 +140023,64197,Michael Fassbender,1316911150 +140023,64197,true story,1316911153 +140023,71550,choppy narrative,1360443700 +140023,71550,predictable,1360443699 +140023,71550,unbelievable characters,1360443697 +140023,72731,based on a book,1330478006 +140023,72731,ending sucked,1330478002 +140023,72731,Mark Wahlberg,1330478017 +140023,72731,slow paced,1330478000 +140023,72731,Stanley Tucci,1330478008 +140023,72731,too long,1330478014 +140023,79796,Battles,1308506429 +140023,79796,Cinematography,1336277115 +140023,79796,Michael Fassbender,1308506425 +140023,79796,Olga Kurylenko,1336277118 +140023,80463,business,1301311770 +140023,80463,cold genius,1301311738 +140023,80463,David Fincher,1301311755 +140023,80463,intensity,1301311748 +140023,80463,software developers,1301311751 +140023,80463,treachery,1301311772 +140023,80463,true story,1301311743 +140023,82093,Colin Farrell,1331442150 +140023,82093,Keira Knightley,1331442151 +140023,82459,boring,1308544379 +140023,82459,camerawork,1308544381 +140023,82459,predictable,1308544377 +140023,84152,Bradley Cooper,1302200023 +140023,84152,cinematography,1309471847 +140023,84152,entertaining,1309471841 +140023,84152,unfinished storyline,1309471837 +140023,84152,visual effects,1302200028 +140023,84570,The musical aspect,1302450273 +140023,84601,Liam Neeson,1301311829 +140023,87232,dialogue,1308862781 +140023,87232,James McAvoy,1308505188 +140023,87232,Kevin Bacon,1308505194 +140023,87232,pace,1308862778 +140023,87232,PG-13:intense sequences of action and violence,1308008075 +140023,87232,soundtrack,1308862771 +140023,87232,X-men,1308008065 +140023,90249,boxing,1318380320 +140023,90249,father-son relationship,1318380328 +140023,90249,hugh jackman,1318380322 +140023,90249,robots,1318380324 +140023,91622,unfulfilling,1332987172 +140023,91622,weak ending,1332987175 +140023,93326,funny,1336277056 +140023,93326,Reese Witherspoon,1336277052 +140023,93326,spy,1336277058 +140023,93980,the original is better,1342983917 +140023,93980,unnecessary remake,1342983914 +140023,97306,Colin Farrell,1359783911 +140023,97306,dark comedy,1359783916 +140023,97306,Woody Harrelson,1359783913 +140023,99007,zombies,1360443759 +140031,4151,Great,1139181843 +140031,32591,Simply charming,1139181835 +140075,4082,down and out,1154106607 +140075,5986,boxing drama,1154106560 +140075,5986,down and out,1154106560 +140079,8914,I didn't get it.,1171291993 +140080,7158,heartbreaking,1345066201 +140080,7158,sad but good,1345066204 +140080,97923,Denzel Washington,1361575917 +140095,19,detective,1449928258 +140095,19,over the top,1449928266 +140095,19,silly fun,1449928261 +140095,1201,Clint Eastwood,1449609984 +140095,1201,Sergio Leone,1449609974 +140095,1201,spaghetti western,1449609978 +140095,58559,Comic Book adaption,1449609897 +140095,58559,dark,1449609891 +140095,109487,bad dialogue,1449928475 +140095,109487,Christopher Nolan,1449928456 +140095,109487,Michael Caine,1449928482 +140095,109487,sci-fi,1449928451 +140095,109487,space,1449928453 +140095,109487,thought-provoking,1449928458 +140095,109487,time travel,1449928460 +140095,109487,visually appealing,1449928471 +140095,111759,Alien Invasion,1449928875 +140095,111759,future,1449928858 +140095,111759,Reluctant Hero,1449928870 +140095,111759,sci-fi,1449928854 +140095,111759,time loop,1449928872 +140095,116797,code breaking,1449929375 +140095,116797,Computers,1449929378 +140095,116797,genius,1449929356 +140095,116797,history,1449929370 +140095,116797,homosexuality,1449929367 +140095,116797,mathematics,1449929377 +140095,116797,World War II,1449929353 +140110,39,chick flick,1434482824 +140110,39,high school,1434482823 +140110,39,teen,1434482826 +140110,39,teen movie,1434482819 +140110,296,storytelling,1434485243 +140110,318,friendship,1434481797 +140110,318,heartwarming,1434481837 +140110,318,hope,1434481834 +140110,318,inspirational,1434481794 +140110,318,justice,1434481824 +140110,318,redemption,1434481840 +140110,318,revenge,1434481828 +140110,318,sentimental,1434481842 +140110,318,twist ending,1434481789 +140110,541,artificial intelligence,1434485644 +140110,541,cyberpunk,1434485636 +140110,541,dystopia,1434485641 +140110,541,robots,1434485649 +140110,541,sci-fi,1434485639 +140110,541,slow,1434485657 +140110,541,stylized,1434485647 +140110,586,childhood classics,1434482668 +140110,586,christmas,1434482673 +140110,586,family,1434482666 +140110,586,nostalgia,1434482663 +140110,593,Anthony Hopkins,1434481885 +140110,593,excellent script,1434481900 +140110,593,Hannibal Lecter,1434481893 +140110,593,investigation,1434481912 +140110,593,Jodie Foster,1434481887 +140110,593,mental illness,1434481902 +140110,593,psychological,1434481905 +140110,593,psychology,1434481883 +140110,593,suspense,1434481891 +140110,593,suspenseful,1434481924 +140110,593,tense,1434481921 +140110,597,chick flick,1434482692 +140110,597,cinderella,1434482696 +140110,597,girlie movie,1434482689 +140110,597,Good Romantic Comedies,1434482700 +140110,597,romance,1434482687 +140110,1021,adoption,1434482805 +140110,1021,feel-good,1434482792 +140110,1021,heartwarming,1434482777 +140110,1021,tear jerker,1434482724 +140110,1203,courtroom,1434481546 +140110,1203,courtroom drama,1434481505 +140110,1203,group psychology,1434481512 +140110,1203,Henry Fonda,1434481529 +140110,1203,justice,1434481532 +140110,1203,low budget,1434481521 +140110,1251,boring,1434485692 +140110,1251,dull,1434485696 +140110,1251,overrated,1434485713 +140110,1265,existentialism,1434483773 +140110,1265,funny,1434483771 +140110,1265,original plot,1434483779 +140110,1265,self discovery,1434483780 +140110,1265,surreal,1434483765 +140110,1704,boston,1434482872 +140110,1704,college,1434482869 +140110,1704,excellent script,1434482859 +140110,1704,feel-good,1434482863 +140110,1704,genius,1434482852 +140110,1704,Great Screenplays,1434482865 +140110,1704,inspirational,1434482861 +140110,1704,mathematics,1434482856 +140110,1704,Matt Damon,1434482842 +140110,1704,mentor,1434482839 +140110,1704,psychology,1434482858 +140110,1704,Robin Williams,1434482841 +140110,1704,university,1434482883 +140110,1721,based on a true story,1434483840 +140110,1721,chick flick,1434483836 +140110,1721,historical,1434483834 +140110,1721,love story,1434483829 +140110,1721,romance,1434483820 +140110,1721,shipwreck,1434483846 +140110,1721,survival,1434483850 +140110,1721,true story,1434483838 +140110,1784,Jack Nicholson,1434823012 +140110,1923,Ben Stiller,1434483955 +140110,1923,Cameron Diaz,1434483957 +140110,1923,comedy,1434483954 +140110,1923,crude humor,1434483959 +140110,1923,fun,1434483962 +140110,1923,goofy,1434483965 +140110,1923,hilarious,1434483967 +140110,1923,sexual,1434483963 +140110,1968,coming of age,1434484314 +140110,1968,coming-of-age,1434484323 +140110,1968,high school,1434484315 +140110,1968,teen,1434484317 +140110,1968,teen movie,1434484311 +140110,2413,whodunit,1434485022 +140110,2502,comedy,1434484237 +140110,2502,office,1434484248 +140110,2502,quirky,1434484246 +140110,2502,revenge,1434484257 +140110,2502,workplace,1434484241 +140110,2696,clever,1434481302 +140110,2696,comedy,1434481282 +140110,2696,French,1434481280 +140110,2696,funny,1434481278 +140110,2696,witty,1434481303 +140110,2706,comedy,1434484184 +140110,2706,Gross-out,1434484195 +140110,2706,high school,1434484187 +140110,2706,sexuality,1434484185 +140110,2706,teen,1434484222 +140110,2706,teen comedy,1434484189 +140110,2706,Teen movie,1434484219 +140110,2706,teenager,1434484226 +140110,2858,coming of age,1434483715 +140110,2858,kevin spacey,1434483703 +140110,2858,mental illness,1434483729 +140110,2858,midlife crisis,1434483709 +140110,2953,childhood classics,1434482975 +140110,2953,Christmas,1434482985 +140110,2953,family,1434482942 +140110,2953,funny,1434482938 +140110,3882,high school,1434485146 +140110,3916,good story,1434481261 +140110,3916,high school,1434481263 +140110,3916,inspirational,1434481254 +140110,3916,inspiring,1434481257 +140110,3983,SIBLING RELATIONSHIPS,1434483647 +140110,4019,friendship,1434481471 +140110,4019,inspirational,1434481468 +140110,4019,mentor,1434481470 +140110,4091,high school,1434483903 +140110,4091,romance,1434483907 +140110,4091,teen,1434483876 +140110,4091,teen movie,1434483875 +140110,4226,complicated,1434482907 +140110,4226,complicated plot,1434482930 +140110,4226,investigation,1434482920 +140110,4226,memory,1434482898 +140110,4226,mystery,1434482911 +140110,4226,nonlinear,1434482891 +140110,4226,psychological,1434482900 +140110,4226,psychology,1434482895 +140110,4226,twist ending,1434482893 +140110,4226,twists & turns,1434482924 +140110,4381,clever,1434481484 +140110,4381,comedy,1434481478 +140110,4381,France,1434481480 +140110,4381,Francis Veber,1434481495 +140110,4381,witty,1434481489 +140110,4641,adolescence,1434482129 +140110,4641,coming of age,1434482124 +140110,4641,dark comedy,1434482139 +140110,4641,quirky,1434482125 +140110,4641,Steve Buscemi,1434482131 +140110,4848,art house,1434485392 +140110,4848,dreamlike,1434485369 +140110,4848,strange,1434485398 +140110,4848,stylized,1434485388 +140110,4848,visually appealing,1434485375 +140110,4848,weird,1434485395 +140110,4878,cerebral,1434485258 +140110,4878,teen,1434485266 +140110,4878,weird,1434485277 +140110,4890,moralistic,1434483753 +140110,4890,romance,1434483746 +140110,5066,cheesy,1434484444 +140110,5066,high school,1434484439 +140110,5066,Romance,1434484437 +140110,5377,british,1434485624 +140110,5679,mystery,1434482560 +140110,5679,suspense,1434482564 +140110,5989,caper,1434770859 +140110,5989,con artists,1434770847 +140110,5989,twists & turns,1434770842 +140110,6711,Amazing Cinematography,1434485492 +140110,6711,atmospheric,1434485484 +140110,7451,clever,1434482502 +140110,7451,clique,1434482492 +140110,7451,High School,1434482479 +140110,7451,innocence lost,1434482495 +140110,7451,Lindsay Lohan,1434482481 +140110,7451,manipulation,1434482489 +140110,7451,revenge,1434482500 +140110,7451,Tina Fey,1434482484 +140110,8533,chick flick,1434484013 +140110,8533,FIRST LOVE,1434484008 +140110,8533,Rachel McAdams,1434483998 +140110,8533,romance,1434483992 +140110,8533,romantic,1434484012 +140110,8533,Ryan Gosling,1434483993 +140110,8533,sentimental,1434483995 +140110,8638,romance,1434484027 +140110,8638,romantic,1434484021 +140110,8641,funny,1434486301 +140110,8641,hilarious,1434486299 +140110,8641,Steve Carell,1434486302 +140110,8957,clever,1434482448 +140110,8957,gore,1434482457 +140110,8957,great ending,1434482474 +140110,8957,mindfuck,1434482450 +140110,8957,original,1434482466 +140110,8957,surprise ending,1434482446 +140110,8957,suspense,1434482461 +140110,8957,twist ending,1434482445 +140110,31123,clever,1434481854 +140110,31123,comedy,1434481862 +140110,31123,Francis Veber,1434481867 +140110,31123,French,1434481851 +140110,31123,witty,1434481858 +140110,33154,corruption,1434484035 +140110,33154,scandal,1434484037 +140110,34162,buddy movie,1434483493 +140110,34162,Christopher Walken,1434483491 +140110,34162,comedy,1434483495 +140110,34162,funny,1434483498 +140110,34162,romance,1434483505 +140110,38886,awkward,1434482176 +140110,38886,childhood,1434482185 +140110,38886,dysfunctional family,1434482165 +140110,38886,quirky,1434482159 +140110,38886,relationships,1434482170 +140110,38886,weird,1434482183 +140110,40629,18th century,1434484064 +140110,40629,british,1434484084 +140110,40629,chick flick,1434484081 +140110,40629,England,1434484060 +140110,40629,Keira Knightley,1434484055 +140110,40629,love,1434484074 +140110,40629,relationships,1434484076 +140110,40629,romance,1434484058 +140110,44193,cheesy,1434484420 +140110,44193,high school,1434484412 +140110,44193,romance,1434484428 +140110,44199,good story,1434483596 +140110,44199,heist,1434483592 +140110,44199,intelligent thriller,1434483585 +140110,44199,mindfuck,1434483607 +140110,44199,twist ending,1434483583 +140110,44555,Berlin,1434481757 +140110,44555,complex characters,1434481726 +140110,44555,drama,1434481760 +140110,44555,East Germany,1434481709 +140110,44555,excellent script,1434481734 +140110,44555,Germany,1434481729 +140110,44555,historical,1434481764 +140110,44555,spying,1434481715 +140110,44555,Stasi,1434481719 +140110,44555,surveillance,1434481724 +140110,44555,suspense,1434481770 +140110,46578,dysfunctional family,1434482362 +140110,46578,family,1434482378 +140110,46578,feel-good,1434482371 +140110,46578,off-beat comedy,1434482367 +140110,46578,quirky,1434482365 +140110,46976,heartwarming,1434482530 +140110,46976,humorous,1434482538 +140110,46976,love,1434482535 +140110,46976,Maggie Gyllenhaal,1434482513 +140110,46976,modern fantasy,1434482517 +140110,46976,quirky,1434482522 +140110,46976,quirky romantic,1434482524 +140110,46976,romance,1434482533 +140110,46976,surreal,1434482510 +140110,46976,touching,1434482515 +140110,46976,Will Ferrell,1434482511 +140110,47423,friendship,1434483548 +140110,47423,mentor,1434483558 +140110,47423,Ryan Gosling,1434483536 +140110,47423,teacher,1434483554 +140110,47423,unresolved,1434483546 +140110,48082,dreamlike,1434482414 +140110,48082,dreams,1434482399 +140110,48082,fanciful,1434482420 +140110,48082,fantasy,1434482408 +140110,48082,quirky,1434482403 +140110,48082,romance,1434482411 +140110,48082,stylized,1434482405 +140110,48082,surreal,1434482397 +140110,48516,Boston,1434482280 +140110,48516,ensemble cast,1434482266 +140110,48516,gangsters,1434482244 +140110,48516,Leonardo DiCaprio,1434482219 +140110,48516,Mafia,1434482254 +140110,48516,Matt Damon,1434482241 +140110,48516,organized crime,1434482232 +140110,48516,psychology,1434482270 +140110,48516,suspense,1434482263 +140110,48516,tense,1434482272 +140110,48516,thriller,1434482286 +140110,48516,undercover cop,1434482246 +140110,48516,violence,1434482261 +140110,50685,romance,1434483528 +140110,51884,coming of age,1434482103 +140110,51884,culture clash,1434482042 +140110,51884,heartwarming,1434481998 +140110,51884,immigrants,1434481952 +140110,52973,pregnancy,1434485135 +140110,53578,clever,1434481441 +140110,53578,comedy,1434481432 +140110,53578,enjoyable,1434481439 +140110,53578,Francis Veber,1434481436 +140110,53578,french,1434481434 +140110,53578,hilarious,1434481438 +140110,53578,witty,1434481446 +140110,54503,Bill Hader,1434482603 +140110,54503,comedy,1434482572 +140110,54503,Coming-Of-Age,1434482605 +140110,54503,crude humor,1434482590 +140110,54503,Emma Stone,1434482594 +140110,54503,friendship,1434482580 +140110,54503,high school,1434482582 +140110,54503,HIGH SCHOOL LIFE,1434482596 +140110,54503,hilarious,1434482584 +140110,54503,Michael Cera,1434482574 +140110,54503,self discovery,1434482598 +140110,54503,Teen movie,1434482585 +140110,55280,comedy-drama,1434482657 +140110,55280,cute,1434482635 +140110,55280,emotional,1434482626 +140110,55280,feel-good,1434482642 +140110,55280,heartwarming,1434482646 +140110,55280,I wanted to hug this movie,1434482648 +140110,55280,mental illness,1434482619 +140110,55280,psychology,1434482632 +140110,55280,quirky,1434482637 +140110,55280,Ryan Gosling,1434482639 +140110,55280,small town,1434482623 +140110,55280,sweet,1434482640 +140110,55280,touching,1434482634 +140110,55280,weird,1434482628 +140110,55280,well acted,1434482655 +140110,56367,comedy,1434483370 +140110,56367,feel-good,1434483374 +140110,56367,high school,1434483365 +140110,56367,Jennifer Garner,1434483400 +140110,56367,Michael Cera,1434483376 +140110,56367,pregnancy,1434483363 +140110,56367,quirky,1434483378 +140110,56367,teen,1434483385 +140110,56367,teen pregnancy,1434483387 +140110,56367,teenage pregnancy,1434483398 +140110,56367,teenager,1434483381 +140110,56367,teenagers,1434483402 +140110,58559,too long,1434484985 +140110,58998,comedy,1434481388 +140110,58998,Hawaii,1434481398 +140110,58998,hilarious,1434481404 +140110,58998,Jason Segel,1434481394 +140110,58998,Jonah Hill,1434481423 +140110,58998,Kristen Bell,1434481405 +140110,58998,Mila Kunis,1434481414 +140110,58998,romance,1434481407 +140110,63131,comedy,1434482193 +140110,63131,funny,1434482201 +140110,63131,Paul Rudd,1434482191 +140110,63131,Seann William Scott,1434482199 +140110,64614,classic car,1434481351 +140110,64614,ending,1434481375 +140110,64614,friendship,1434481343 +140110,64614,heartwarming,1434481355 +140110,64614,mentor,1434481359 +140110,64614,redemption,1434481364 +140110,67734,Bill Hader,1434483002 +140110,67734,coming of age,1434483025 +140110,67734,funny,1434482998 +140110,67734,Jesse Eisenberg,1434482994 +140110,67734,Kristen Wiig,1434483007 +140110,67734,quirky,1434482997 +140110,67734,romance,1434483020 +140110,69122,overrated,1434485601 +140110,69757,bittersweet,1434483049 +140110,69757,cute,1434483064 +140110,69757,nonlinear,1434483038 +140110,69757,relationships,1434483045 +140110,69757,romance,1434483043 +140110,70567,asperger syndrome,1434484949 +140110,70567,cliche,1434484952 +140110,70567,romance,1434484954 +140110,70567,romantic,1434484957 +140110,72011,airplane,1434481140 +140110,72011,airport,1434481129 +140110,72011,Anna Kendrick,1434481136 +140110,72011,George Clooney,1434481123 +140110,72011,loneliness,1434481126 +140110,72011,love story,1434481150 +140110,72011,self discovery,1434481152 +140110,72011,thoughtful,1434810182 +140110,72011,travel,1434481147 +140110,72011,Vera Farmiga,1434481142 +140110,74946,formulaic,1434485407 +140110,77800,dark comedy,1434483408 +140110,77800,funny,1434483412 +140110,77800,Islam,1434483426 +140110,77800,Muslims,1434483436 +140110,77800,religion,1434483422 +140110,77800,Satire,1434483413 +140110,77800,silly,1434483415 +140110,79226,cheesy,1434485335 +140110,79226,romance,1434485338 +140110,79702,based on a comic,1434484777 +140110,79702,fight scenes,1434484773 +140110,79702,geek,1434484800 +140110,79702,geeks,1434484798 +140110,79702,geeky,1434484782 +140110,79702,stylized,1434484757 +140110,79702,video games,1434484762 +140110,80463,Andrew Garfield,1434480763 +140110,80463,college,1434480735 +140110,80463,Jesse Eisenberg,1434480708 +140110,80463,Justin Timberlake,1434480768 +140110,80463,loneliness,1434480733 +140110,80549,comedy,1434484292 +140110,80549,Emma Stone,1434484287 +140110,80549,high school,1434484290 +140110,81591,atmospheric,1434485430 +140110,81591,ballet,1434485436 +140110,81591,dance,1434485435 +140110,81591,overrated,1434485452 +140110,85881,adolescent psychology,1434853120 +140110,85881,heartwarming,1434853277 +140110,88163,comedy,1434480642 +140110,88163,Emma Stone,1434480633 +140110,88163,funny,1434480652 +140110,88163,Julianne Moore,1434480656 +140110,88163,love,1434480661 +140110,88163,romantic comedy,1434480655 +140110,88163,Ryan Gosling,1434480635 +140110,88163,Steve Carell,1434480648 +140110,89492,baseball,1434484358 +140110,89492,sports,1434484349 +140110,89492,underdog,1434484340 +140110,89864,cancer,1434485174 +140110,89864,unrealistic therapist,1434485168 +140110,92259,disability,1434740892 +140110,92259,emotional,1434740907 +140110,92259,friendship,1434740881 +140110,92259,funny,1434740889 +140110,92259,touching,1434740888 +140110,95088,boring,1434752619 +140110,95088,fanciful,1434752691 +140110,95088,overrated,1434752352 +140110,95088,quirky romantic,1434752662 +140110,96821,awkward situations,1434483467 +140110,96821,coming of age,1434483449 +140110,96821,depression,1434483475 +140110,96821,high school,1434483468 +140110,96821,Suicide,1434483460 +140110,96821,touching,1434483451 +140110,97921,Bradley Cooper,1434481569 +140110,97921,dance,1434481680 +140110,97921,dark humor,1434481567 +140110,97921,great characters,1434481655 +140110,97921,humorous,1434481672 +140110,97921,Jennifer Lawrence,1434481562 +140110,97921,loneliness,1434481578 +140110,97921,love,1434481661 +140110,97921,mental illness,1434481565 +140110,97921,Robert De Niro,1434481659 +140110,97921,romance,1434481574 +140110,100717,quirky,1434484489 +140110,100717,relationships,1434484492 +140110,100717,romance,1434484474 +140110,102123,Immature,1434485676 +140110,102123,lacks substance,1434485674 +140110,102123,not funny,1434485681 +140110,102123,story,1434485672 +140110,103539,coming of age,1434484879 +140110,103539,high school,1434484876 +140110,103539,romance,1434484884 +140110,104944,feel-good,1434483290 +140110,104944,foster care,1434483212 +140110,104944,Foster Home,1434483208 +140110,104944,heartwarming,1434483341 +140110,104944,inspirational,1434483285 +140110,104944,mental health,1434483307 +140110,104944,realistic,1434483246 +140110,104944,unrealistic,1434483240 +140110,105213,Joseph Gordon-Levitt,1434483163 +140110,105213,Julianne Moore,1434483169 +140110,105213,love,1434483191 +140110,105213,relationships,1434483172 +140110,105213,romance,1434483179 +140110,105213,Scarlett Johansson,1434483165 +140110,106782,3-hours of sex and drugs,1434485561 +140110,106782,Anti-Hero,1434485585 +140110,106782,based on a book,1434485591 +140110,106782,based on a true story,1434485580 +140110,106782,drugs,1434485567 +140110,106782,greed,1434485569 +140110,106782,prostitution,1434485554 +140110,106782,Stock Market,1434485573 +140110,106782,true story,1434485583 +140110,106782,Wall Street,1434485588 +140110,106920,artificial intelligence,1434483082 +140110,106920,beautiful,1434483144 +140110,106920,bittersweet,1434483089 +140110,106920,dystopia,1434483078 +140110,106920,Human Computer Interaction,1434483110 +140110,106920,joaquin phoenix,1434483103 +140110,106920,loneliness,1434483101 +140110,106920,original,1434483140 +140110,106920,original plot,1434483134 +140110,106920,philosophical,1434483098 +140110,106920,psychology,1434483096 +140110,106920,quirky,1434483137 +140110,106920,Scarlett Johansson,1434483091 +140110,106920,thought-provoking,1434483085 +140110,106920,transhumanism,1434483115 +140110,111921,cancer,1434484836 +140110,111921,teenage romance,1434484838 +140110,112450,parody,1434484822 +140110,112556,Rosamund Pike,1434484393 +140110,120807,comedy,1434486405 +140110,120807,funny,1434486409 +140110,120807,hilarious,1434486413 +140110,120807,humorous,1434486418 +140110,120807,self-deprecating,1434486399 +140111,1907,funny eddie murphy,1186403813 +140111,1907,nicely animated,1186403813 +140111,4447,fun,1186403755 +140111,6934,unsatisfying,1186403709 +140111,33493,great soundtrack,1186403814 +140111,33493,great special efects,1186403814 +140135,260,Action,1434763371 +140135,260,Fiction,1434763340 +140135,356,boring,1434763649 +140135,356,long,1434763649 +140135,356,original,1434763649 +140141,1377,art direction,1437054894 +140141,1377,based on a comic,1437054894 +140141,1377,mood,1437054894 +140141,55363,based on a true story,1437055082 +140141,55363,beautiful scenery,1437055086 +140141,55363,Roger Deakins,1437055114 +140141,55363,tense,1437055093 +140141,55363,visually appealing,1437055088 +140155,113315,army,1434664606 +140155,113315,comedy,1434664606 +140155,113315,israel,1434664606 +140178,4355,hockey,1203312956 +140181,44195,smoking,1165905627 +140182,260,epic adventure,1430170448 +140182,260,scifi cult,1430170441 +140182,593,horror,1433507907 +140182,593,psychological,1433507907 +140182,593,thriller,1433507907 +140185,2640,based on a comic,1423189942 +140185,2640,christopher reeve,1423189942 +140185,2640,gene hackman,1423189942 +140200,6331,Documentary,1358737210 +140200,8464,documentary,1358737213 +140208,98795,history,1425845809 +140208,98795,jazz,1425845809 +140208,98795,music,1425845809 +140211,29,dark,1368291113 +140211,111,dark,1368291113 +140211,111,mental illness,1368291318 +140211,157,politics,1368291620 +140211,216,stupid,1368291639 +140211,440,politics,1368291621 +140211,474,tense,1368291662 +140211,519,franchise,1368291223 +140211,555,violent,1368291716 +140211,861,police,1368291587 +140211,946,nazis,1368291388 +140211,969,adventure,1303829394 +140211,969,Africa,1303829391 +140211,969,classic,1303829387 +140211,969,Humphrey Bogart,1303829381 +140211,969,Katherine Hepburn,1303829379 +140211,969,romance,1303829385 +140211,1089,violent,1368291717 +140211,1095,ensemble cast,1368291151 +140211,1104,mental illness,1368291318 +140211,1175,dark,1368291113 +140211,1206,violent,1368291716 +140211,1214,tense,1368291662 +140211,1262,ensemble cast,1368291151 +140211,1357,father-son relationship,1368291194 +140211,1390,politics,1368291621 +140211,1396,ensemble cast,1368291151 +140211,1459,Clint Eastwood,1304032471 +140211,1459,Gene Hackman,1304032474 +140211,1464,mystery,1368291351 +140211,1589,ensemble cast,1368291151 +140211,1597,thriller,1368291683 +140211,1834,mystery,1368291351 +140211,1950,police,1368291587 +140211,2024,christianity,1368291061 +140211,2026,high school,1368291249 +140211,2076,dark,1368291113 +140211,2335,stupid,1368291639 +140211,2353,thriller,1368291683 +140211,2383,police,1368291587 +140211,2442,mental illness,1368291318 +140211,2490,violent,1368291716 +140211,2500,high school,1368291249 +140211,2501,father-son relationship,1368291194 +140211,2734,mental illness,1368291318 +140211,2882,nazis,1368291388 +140211,2888,high school,1368291249 +140211,2919,politics,1368291620 +140211,2944,ensemble cast,1368291151 +140211,2959,violent,1368291717 +140211,2985,violent,1368291717 +140211,3044,mystery,1368291351 +140211,3146,stupid,1368291639 +140211,3256,tense,1368291662 +140211,3256,thriller,1368291683 +140211,3273,franchise,1368291223 +140211,3440,franchise,1368291223 +140211,3519,nazis,1368291388 +140211,3683,dark,1368291113 +140211,3811,politics,1368291620 +140211,3980,inspirational,1368291273 +140211,4388,stupid,1368291639 +140211,4865,dark,1368291113 +140211,4865,mystery,1368291351 +140211,4974,stupid,1368291639 +140211,5106,high school,1368291249 +140211,5107,nazis,1368291388 +140211,5218,pixar,1368291549 +140211,5363,high school,1368291249 +140211,5785,stupid,1368291639 +140211,6323,mystery,1368291351 +140211,6537,franchise,1368291223 +140211,6808,nazis,1368291388 +140211,7121,Ahead of its time,1303829346 +140211,7121,courtroom,1303829348 +140211,7121,Hepburn and Tracy,1303829352 +140211,7121,Katherine Hepburn,1303829354 +140211,7153,oscar (best cinematography),1368291455 +140211,7160,mental illness,1368291318 +140211,7584,AFI 100 (Laughs),1304123965 +140211,7584,Hepburn and Tracy,1304123956 +140211,8781,politics,1368291621 +140211,53121,franchise,1368291223 +140211,54372,murder mystery,1304030976 +140211,54372,Nudity (Full Frontal - Brief),1304030978 +140211,54372,Nudity (Full Frontal),1304030983 +140211,54372,thriller,1304030989 +140211,54372,twist ending,1304030992 +140211,63113,franchise,1368291223 +140211,64622,nazis,1368291388 +140211,70567,asperger syndrome,1303829295 +140211,70567,emotional,1303829297 +140211,70567,Hugh Dancy,1303829330 +140211,70567,social commentary\,1303829302 +140211,74458,mystery,1368291351 +140249,7346,pornography,1417817485 +140290,3916,Motivation,1192586886 +140290,4223,War,1192586946 +140290,43396,emotional,1192586723 +140290,47099,Feelings,1192586847 +140295,260,holyLucas,1436945717 +140303,260,classic,1433800505 +140303,260,old,1433800513 +140303,260,sci-fi,1433800496 +140303,260,space action,1433800524 +140319,96567,diferent timings,1426470617 +140319,96567,lovestory,1426470617 +140319,96567,romance,1426470617 +140343,3,comedy,1324954652 +140343,6,crime,1293408973 +140343,16,mafia,1285139613 +140343,16,organized crime,1285139607 +140343,32,dark,1285313086 +140343,32,dystopia,1285137722 +140343,32,post-apocalyptic,1285137680 +140343,32,sci-fi,1285137668 +140343,32,time travel,1285312490 +140343,50,Crime,1317539006 +140343,69,comedy,1286513070 +140343,70,vampires,1309129077 +140343,76,sci-fi,1335677873 +140343,88,comedy,1295751379 +140343,104,comedy,1285402494 +140343,104,golf,1297634945 +140343,110,medieval,1285999503 +140343,110,Scotland,1286662652 +140343,110,war,1288142190 +140343,147,drugs,1307252629 +140343,147,true story,1307252637 +140343,150,space,1299192683 +140343,150,true story,1299437255 +140343,151,Scotland,1343282311 +140343,153,superhero,1315534826 +140343,165,action,1319340958 +140343,166,dark comedy,1325570151 +140343,180,comedy,1286513015 +140343,198,sci-fi,1306458924 +140343,208,post-apocalyptic,1285493660 +140343,208,sci-fi,1285493651 +140343,223,comedy,1313125552 +140343,231,comedy,1315708752 +140343,247,true story,1325232458 +140343,253,vampires,1285210662 +140343,260,sci-fi,1285208235 +140343,260,space,1285208238 +140343,272,England,1301622362 +140343,280,prison,1306459022 +140343,288,dark comedy,1325570117 +140343,288,serial killer,1325570125 +140343,296,dark comedy,1285999405 +140343,300,true story,1299437290 +140343,303,western,1324954826 +140343,316,aliens,1299438301 +140343,316,sci-fi,1299438298 +140343,318,prison,1288142725 +140343,354,baseball,1323848068 +140343,356,comedy,1285139120 +140343,368,comedy,1315534976 +140343,368,western,1315534968 +140343,380,espionage,1320209387 +140343,383,western,1285493555 +140343,408,rodeo,1324607116 +140343,428,organized crime,1352532940 +140343,431,crime,1301195874 +140343,441,high school,1324249590 +140343,442,dystopia,1315196368 +140343,442,sci-fi,1315196363 +140343,456,drugs,1324954411 +140343,456,gangsters,1324954402 +140343,471,Comedy,1285138649 +140343,475,Ireland,1340438989 +140343,475,true story,1340438982 +140343,500,Comedy,1340437987 +140343,529,chess,1318143528 +140343,531,England,1292730267 +140343,541,sci-fi,1298585611 +140343,553,western,1285494227 +140343,593,serial killer,1297663067 +140343,593,suspense,1285310662 +140343,610,animation,1301195166 +140343,610,sci-fi,1301195178 +140343,611,horror,1313479133 +140343,648,action,1288493895 +140343,648,espionage,1288493895 +140343,653,dragons,1320647506 +140343,718,French,1312876573 +140343,741,anime,1297635526 +140343,741,Japan,1297635597 +140343,741,sci-fi,1297635640 +140343,778,dark comedy,1312023065 +140343,778,drugs,1312023068 +140343,780,action,1285211050 +140343,780,aliens,1285314820 +140343,780,sci-fi,1285314807 +140343,780,war,1285314883 +140343,858,Mafia,1285137001 +140343,858,organized crime,1285137004 +140343,924,sci-fi,1297661876 +140343,924,space,1297661879 +140343,991,Ireland,1329377729 +140343,1036,action,1314627886 +140343,1061,revenge,1290318720 +140343,1089,crime,1308460042 +140343,1090,Vietnam War,1285140143 +140343,1090,war,1285140140 +140343,1120,biography,1301197353 +140343,1120,comedy,1288493464 +140343,1127,sci-fi,1288155123 +140343,1129,dystopia,1331700014 +140343,1179,Crime,1308460147 +140343,1196,sci-fi,1285139907 +140343,1196,space,1285139910 +140343,1198,action,1285310778 +140343,1198,adventure,1285140058 +140343,1200,aliens,1285312689 +140343,1200,sci-fi,1285137306 +140343,1200,space,1285137309 +140343,1200,suspense,1285139812 +140343,1208,Vietnam War,1326682354 +140343,1208,war,1326682345 +140343,1210,sci-fi,1285139875 +140343,1210,space,1285139877 +140343,1213,mafia,1285138918 +140343,1213,organized crime,1285138921 +140343,1214,aliens,1285312671 +140343,1214,sci-fi,1285139754 +140343,1214,space,1285139756 +140343,1214,suspense,1285139798 +140343,1215,comedy,1285139661 +140343,1217,Japan,1301197144 +140343,1217,samurai,1301197139 +140343,1221,mafia,1285136959 +140343,1221,organized crime,1285136962 +140343,1222,Vietnam War,1285140181 +140343,1222,war,1285139070 +140343,1227,crime,1302155743 +140343,1228,boxing,1324249271 +140343,1231,space,1299802770 +140343,1231,true story,1299802777 +140343,1234,heist,1314242235 +140343,1240,robots,1309566770 +140343,1240,sci-fi,1309566745 +140343,1242,Civil War,1290667608 +140343,1242,true story,1299437246 +140343,1242,war,1290667599 +140343,1265,comedy,1285491669 +140343,1265,time travel,1285491676 +140343,1272,true story,1329024166 +140343,1272,war,1329024159 +140343,1272,World War II,1329024163 +140343,1291,action,1286697067 +140343,1291,adventure,1286697074 +140343,1299,Cambodia,1299436940 +140343,1299,true story,1299437316 +140343,1300,Swedish,1331699316 +140343,1302,baseball,1301016063 +140343,1320,aliens,1285493353 +140343,1320,sci-fi,1285493340 +140343,1320,suspense,1285493348 +140343,1339,vampires,1285402326 +140343,1359,Christmas,1336451386 +140343,1370,action,1317538438 +140343,1378,western,1285493515 +140343,1379,western,1315194901 +140343,1393,comedy,1290319404 +140343,1393,football,1290319419 +140343,1396,comedy,1288142986 +140343,1396,espionage,1288142973 +140343,1407,serial killer,1319955503 +140343,1466,mafia,1328491169 +140343,1466,organized crime,1328491178 +140343,1466,true story,1328491487 +140343,1527,aliens,1285491974 +140343,1527,dystopia,1285491956 +140343,1527,sci-fi,1285491933 +140343,1580,aliens,1285316914 +140343,1580,comedy,1285210128 +140343,1580,sci-fi,1285210131 +140343,1584,sci-fi,1298195217 +140343,1587,Fantasy,1324954522 +140343,1589,crime,1322979468 +140343,1647,crime,1307874227 +140343,1663,comedy,1330223255 +140343,1676,aliens,1285404137 +140343,1676,sci-fi,1285208366 +140343,1676,space,1285208368 +140343,1676,war,1285208360 +140343,1689,comedy,1310080072 +140343,1690,aliens,1297661336 +140343,1690,sci-fi,1297661338 +140343,1717,serial killer,1309129418 +140343,1732,comedy,1285492434 +140343,1732,dark comedy,1285492437 +140343,1757,crime,1301094659 +140343,1757,Hong Kong,1301094648 +140343,1779,sci-fi,1288143745 +140343,1779,suspense,1288143750 +140343,1866,comedy,1303524348 +140343,1876,apocalypse,1347267993 +140343,1883,comedy,1288003815 +140343,1900,Iran,1335167927 +140343,1917,apocalypse,1285493164 +140343,1917,space,1285492470 +140343,1954,boxing,1325232242 +140343,1954,underdog,1328774142 +140343,1960,biography,1301195246 +140343,1960,China,1299439049 +140343,1965,dark comedy,1323848217 +140343,1967,fantasy,1350804493 +140343,1968,high school,1297661005 +140343,2001,comedy,1314628181 +140343,2019,Japan,1303708803 +140343,2019,samurai,1303708798 +140343,2023,mafia,1285491740 +140343,2023,organized crime,1285491762 +140343,2028,war,1285207469 +140343,2028,World War II,1285207475 +140343,2060,comedy,1305438171 +140343,2064,documentary,1306803432 +140343,2115,action,1285310724 +140343,2115,adventure,1285210745 +140343,2140,fantasy,1349569136 +140343,2174,comedy,1297661206 +140343,2174,ghosts,1297661241 +140343,2231,poker,1345358246 +140343,2268,courtroom,1297635306 +140343,2278,action,1316508027 +140343,2278,crime,1316508018 +140343,2302,comedy,1285210095 +140343,2302,courtroom,1297660723 +140343,2311,sci-fi,1285493454 +140343,2311,space,1285493458 +140343,2316,magic,1301892236 +140343,2322,sci-fi,1325232891 +140343,2325,comedy,1319155286 +140343,2336,England,1324249487 +140343,2348,drugs,1312504054 +140343,2348,true story,1312504046 +140343,2375,comedy,1314764786 +140343,2387,dark comedy,1322436378 +140343,2396,England,1345963108 +140343,2406,South America,1298168906 +140343,2409,boxing,1328490796 +140343,2409,underdog,1328774162 +140343,2410,boxing,1328774099 +140343,2411,boxing,1328774197 +140343,2412,boxing,1339812280 +140343,2427,war,1292679128 +140343,2427,World War II,1292679242 +140343,2502,comedy,1285480377 +140343,2539,comedy,1318060829 +140343,2539,mafia,1318060851 +140343,2539,organized crime,1318060834 +140343,2542,comedy,1290319276 +140343,2542,crime,1301460072 +140343,2542,england,1290319255 +140343,2571,alternate reality,1285136575 +140343,2571,dystopia,1285136579 +140343,2571,post-apocalyptic,1285136593 +140343,2571,sci-fi,1285136596 +140343,2580,comedy,1317779167 +140343,2580,drugs,1317779090 +140343,2587,comedy,1290319342 +140343,2587,prison,1290319347 +140343,2600,Sci-Fi,1316670980 +140343,2617,action,1288493833 +140343,2617,egypt,1288493822 +140343,2628,sci-fi,1285208168 +140343,2628,space,1285208171 +140343,2701,sci-fi,1319073506 +140343,2701,steampunk,1319073508 +140343,2706,comedy,1297661093 +140343,2706,high school,1297661090 +140343,2716,comedy,1334374228 +140343,2716,ghosts,1334374339 +140343,2717,comedy,1337227101 +140343,2717,Ghosts,1337227098 +140343,2736,comedy,1297661140 +140343,2762,ghosts,1297661232 +140343,2791,comedy,1297661285 +140343,2795,comedy,1285138742 +140343,2796,comedy,1314559986 +140343,2916,sci-fi,1288154779 +140343,2918,comedy,1285492230 +140343,2918,high school,1297661032 +140343,2944,war,1351406345 +140343,2944,World War II,1351406339 +140343,2959,dark,1285313698 +140343,2959,dark comedy,1285137038 +140343,2985,sci-fi,1340439353 +140343,2985,superhero,1340439356 +140343,3006,true story,1299437461 +140343,3008,apocalypse,1312876322 +140343,3030,Japan,1308775134 +140343,3030,samurai,1308775129 +140343,3033,comedy,1288143603 +140343,3033,sci-fi,1288143598 +140343,3033,space,1288143608 +140343,3062,war,1352532355 +140343,3062,World War II,1352532357 +140343,3066,war,1351406448 +140343,3066,World War II,1351406445 +140343,3098,baseball,1293176024 +140343,3107,firefighters,1338096887 +140343,3117,civil war,1345360704 +140343,3117,war,1345360680 +140343,3155,Thailand,1316314960 +140343,3156,robots,1297661192 +140343,3156,sci-fi,1297661189 +140343,3158,China,1292549963 +140343,3190,sci-fi,1320737153 +140343,3190,space,1320737158 +140343,3246,biography,1308775029 +140343,3246,true story,1308775004 +140343,3256,espionage,1288493553 +140343,3259,Ireland,1288142816 +140343,3259,romance,1288142799 +140343,3264,comedy,1286750779 +140343,3264,vampires,1286750772 +140343,3273,serial killer,1313285652 +140343,3275,organized crime,1307152578 +140343,3300,sci-fi,1285209951 +140343,3300,suspense,1285403409 +140343,3360,basketball,1317265977 +140343,3386,conspiracy theory,1297592252 +140343,3420,courtroom,1301197046 +140343,3450,comedy,1323416435 +140343,3477,Gwar,1336445964 +140343,3489,fantasy,1297634760 +140343,3489,pirates,1297634781 +140343,3503,Russian,1307937614 +140343,3503,sci-fi,1304468517 +140343,3556,high school,1315893300 +140343,3578,action,1297634989 +140343,3578,Rome,1297634993 +140343,3593,aliens,1320647223 +140343,3593,sci-fi,1320647185 +140343,3702,post-apocalyptic,1301197179 +140343,3703,action,1288143696 +140343,3703,dystopia,1288143688 +140343,3703,post-apocalyptic,1288143649 +140343,3704,action,1290319024 +140343,3704,dystopia,1290319032 +140343,3704,post-apocalyptic,1290319017 +140343,3745,animation,1307314471 +140343,3745,post-apocalyptic,1307314509 +140343,3745,sci-fi,1307314381 +140343,3745,space,1307314409 +140343,3753,American Revolution,1305453203 +140343,3753,war,1305452930 +140343,3793,sci-fi,1285999249 +140343,3793,superhero,1288155341 +140343,3826,sci-fi,1340438582 +140343,3827,space,1292312506 +140343,3896,crime,1309566712 +140343,3899,crime,1307937037 +140343,3917,horror,1308863996 +140343,3918,horror,1308863983 +140343,3919,horror,1311476575 +140343,3948,comedy,1300761587 +140343,3967,dance,1292808298 +140343,3967,England,1292808290 +140343,3986,sci-fi,1336445748 +140343,3996,china,1339811896 +140343,3996,martial arts,1339811918 +140343,4008,true story,1303601205 +140343,4008,Vietnam War,1303601190 +140343,4008,war,1303601188 +140343,4011,comedy,1301460004 +140343,4011,Crime,1301460078 +140343,4011,England,1301460009 +140343,4015,comedy,1312144884 +140343,4102,stand-up comedy,1350464289 +140343,4128,vampires,1323416754 +140343,4149,comedy,1340438720 +140343,4234,Panama,1296963231 +140343,4239,drugs,1307252598 +140343,4239,true story,1299437262 +140343,4262,drugs,1322799516 +140343,4262,organized crime,1322799512 +140343,4275,fantasy,1305514673 +140343,4326,racism,1335167181 +140343,4407,El Salvador,1293326532 +140343,4446,aliens,1288141998 +140343,4446,cgi,1288141898 +140343,4446,post-apocalyptic,1288141913 +140343,4446,sci-fi,1288141892 +140343,4450,true story,1343282581 +140343,4594,World War II,1301195594 +140343,4605,dark comedy,1332563525 +140343,4623,baseball,1288500676 +140343,4623,comedy,1285210370 +140343,4623,underdog,1289656529 +140343,4720,ghosts,1320209567 +140343,4734,comedy,1318060590 +140343,4735,sci-fi,1320737306 +140343,4735,zombies,1320737357 +140343,4738,time travel,1315196250 +140343,4842,war,1301197401 +140343,4901,espionage,1286075564 +140343,4939,time travel,1345963482 +140343,4939,world war II,1345963478 +140343,4963,heist,1338097262 +140343,4992,time travel,1337226904 +140343,4993,fantasy,1285138821 +140343,4993,magic,1285315588 +140343,4993,scenic,1285315580 +140343,5009,biography,1301197371 +140343,5009,boxing,1301196038 +140343,5010,war,1293094100 +140343,5011,World War II,1325232338 +140343,5040,fantasy,1340438125 +140343,5041,fantasy,1340439589 +140343,5046,sci-fi,1309567192 +140343,5107,prison,1297634934 +140343,5107,World War II,1297634901 +140343,5110,comedy,1317779396 +140343,5128,Vampires,1295090886 +140343,5138,drugs,1307252623 +140343,5138,gangsters,1285495078 +140343,5152,true story,1299437695 +140343,5152,Vietnam War,1285209598 +140343,5152,war,1285209594 +140343,5173,comedy,1286626311 +140343,5173,ireland,1286626316 +140343,5219,zombies,1288493422 +140343,5254,Action,1316342436 +140343,5254,vampires,1316342456 +140343,5265,dark comedy,1291708581 +140343,5312,crime,1306803673 +140343,5378,sci-fi,1285208192 +140343,5378,space,1285208195 +140343,5410,sci-fi,1301025866 +140343,5410,space,1301026066 +140343,5418,action,1291954979 +140343,5423,crime,1301197438 +140343,5463,dragons,1301196511 +140343,5463,post-apocalyptic,1301196380 +140343,5582,comedy,1326681997 +140343,5608,German,1289869884 +140343,5608,prison,1289869779 +140343,5618,anime,1301197073 +140343,5618,fantasy,1301197080 +140343,5630,serial killer,1322436243 +140343,5636,comedy,1290667920 +140343,5636,crime,1300607832 +140343,5636,heist,1300607838 +140343,5669,documentary,1314859403 +140343,5786,drugs,1310259698 +140343,5786,gangsters,1310259703 +140343,5788,England,1297661799 +140343,5803,comedy,1315196008 +140343,5804,Christmas,1324249763 +140343,5899,true story,1299437826 +140343,5899,war,1293429576 +140343,5900,comedy,1318462371 +140343,5900,Mafia,1318462378 +140343,5900,organized crime,1318462386 +140343,5901,drugs,1307252614 +140343,5902,dark comedy,1336446260 +140343,5903,dystopia,1352179455 +140343,5903,sci-fi,1352179466 +140343,5952,fantasy,1285136626 +140343,5952,magic,1285316026 +140343,5952,scenic,1285316029 +140343,5952,war,1285136764 +140343,5991,musical,1332563171 +140343,6201,england,1291184434 +140343,6223,drugs,1335677145 +140343,6283,anime,1285492303 +140343,6283,sci-fi,1285492329 +140343,6283,space,1285492370 +140343,6287,comedy,1298585154 +140343,6333,sci-fi,1288155299 +140343,6333,superhero,1288155305 +140343,6365,alternate reality,1285210259 +140343,6365,dystopia,1285210261 +140343,6365,post-apocalyptic,1285210274 +140343,6365,sci-fi,1285210292 +140343,6502,post-apocalyptic,1297661996 +140343,6502,zombies,1297661998 +140343,6517,baseball,1322436133 +140343,6523,baseball,1321235151 +140343,6523,japan,1321235210 +140343,6534,Action,1321235738 +140343,6539,adventure,1285139030 +140343,6539,comedy,1285138980 +140343,6539,pirates,1285403260 +140343,6541,steampunk,1319073575 +140343,6541,superhero,1299439003 +140343,6572,heist,1352534235 +140343,6669,Japan,1308286252 +140343,6679,documentary,1340437594 +140343,6688,Czech,1351405784 +140343,6704,high school,1298207501 +140343,6711,japan,1290319106 +140343,6754,action,1285494054 +140343,6754,vampires,1285494045 +140343,6754,werewolves,1285494048 +140343,6755,comedy,1290862758 +140343,6755,mummy,1290862824 +140343,6790,sci-fi,1326066899 +140343,6796,gangsters,1296487520 +140343,6797,mafia,1286927555 +140343,6797,organized crime,1286927567 +140343,6857,anime,1299438669 +140343,6857,ninja,1299438704 +140343,6934,alternate reality,1285210233 +140343,6934,dystopia,1285210236 +140343,6934,post-apocalyptic,1285210239 +140343,6934,sci-fi,1285210241 +140343,6944,comedy,1314725553 +140343,6947,war,1290318904 +140343,7000,comedy,1298819674 +140343,7000,crime,1300607992 +140343,7000,heist,1300607997 +140343,7005,comedy,1299439162 +140343,7005,england,1299439144 +140343,7022,dystopia,1340441074 +140343,7022,Japan,1340441070 +140343,7027,western,1324954836 +140343,7090,china,1340439475 +140343,7090,martial arts,1340439480 +140343,7143,japan,1288143183 +140343,7143,samurai,1288143176 +140343,7143,war,1288143169 +140343,7153,fantasy,1285136716 +140343,7153,magic,1285315743 +140343,7153,scenic,1285315669 +140343,7153,war,1285136741 +140343,7163,sci-fi,1288142215 +140343,7193,comedy,1301197741 +140343,7236,dystopia,1290907856 +140343,7236,post-apocalyptic,1290907849 +140343,7361,sci-fi,1301196739 +140343,7367,crime,1298819721 +140343,7367,heist,1300607874 +140343,7373,superhero,1313125384 +140343,7383,poker,1345358137 +140343,7458,War,1285209651 +140343,7481,aliens,1330223025 +140343,7481,sci-fi,1330223004 +140343,7827,espionage,1316507644 +140343,7827,sci-fi,1316507649 +140343,7925,Japan,1308286147 +140343,7925,samurai,1308286083 +140343,8093,Korean,1306100771 +140343,8132,Boxing,1345360424 +140343,8157,anime,1337997894 +140343,8157,Japan,1337997896 +140343,8371,action,1285313479 +140343,8371,sci-fi,1285139238 +140343,8464,comedy,1298181242 +140343,8464,documentary,1306803426 +140343,8537,CGI,1326682473 +140343,8537,sci-fi,1326682478 +140343,8644,action,1290319501 +140343,8644,robots,1290319476 +140343,8644,sci-fi,1290319470 +140343,8690,World War II,1309042389 +140343,8791,Hong Kong,1296281580 +140343,8800,sci-fi,1299368852 +140343,8837,crime,1312698679 +140343,8862,heist,1301196826 +140343,8939,sci-fi,1313735788 +140343,8972,action,1288493762 +140343,8972,adventure,1288493769 +140343,26695,organized crime,1324618410 +140343,26965,Ireland,1303870991 +140343,27212,England,1350804607 +140343,27420,sci-fi,1334374651 +140343,27441,anime,1301197593 +140343,27441,Japan,1301197597 +140343,27482,sci-fi,1307152437 +140343,27515,China,1317538785 +140343,27611,sci-fi,1285137203 +140343,27611,space,1285137205 +140343,27660,animation,1285402652 +140343,27660,sci-fi,1285402636 +140343,27741,Japan,1285481212 +140343,27741,samurai,1285404265 +140343,27773,Korean,1306100737 +140343,27773,revenge,1290318744 +140343,27788,time travel,1306213300 +140343,27793,aliens,1288154510 +140343,27793,sci-fi,1288154516 +140343,27793,war,1288154521 +140343,27816,war,1345358816 +140343,27816,World War II,1345358822 +140343,30791,horror,1347267475 +140343,31184,CGI,1285493243 +140343,31184,sci-fi,1285493271 +140343,31410,German,1320647018 +140343,31410,war,1320646968 +140343,31410,World War II,1320646982 +140343,31658,anime,1330223416 +140343,31658,fantasy,1330223397 +140343,31804,Russian,1307255958 +140343,31804,vampires,1301347371 +140343,31960,high school,1297662278 +140343,32058,courtroom,1295241182 +140343,32213,sci-fi,1308863842 +140343,32515,Nicaragua,1298177506 +140343,32515,war,1298177511 +140343,33004,comedy,1297634848 +140343,33004,sci-fi,1297634836 +140343,33004,space,1297634839 +140343,33162,medieval,1285210543 +140343,33162,war,1285210548 +140343,33493,sci-fi,1285208216 +140343,33493,space,1285208218 +140343,34111,documentary,1351405628 +140343,34405,sci-fi,1298179268 +140343,34405,space,1298179271 +140343,36401,Fantasy,1337226072 +140343,36517,Africa,1301196862 +140343,36529,Crime,1299438949 +140343,37386,dystopia,1321670385 +140343,37386,sci-fi,1321670381 +140343,37830,cgi,1309129198 +140343,37830,sci-fi,1309129294 +140343,39444,comedy,1330825578 +140343,39796,French,1333259178 +140343,40148,crime,1303871174 +140343,40278,war,1337225705 +140343,41566,fantasy,1285139390 +140343,41566,magic,1285313426 +140343,41566,scenic,1285313790 +140343,42422,aliens,1285404309 +140343,42422,anime,1285209518 +140343,42422,bittersweet,1285209235 +140343,42422,sci-fi,1285209166 +140343,42422,space,1285209169 +140343,42718,action,1293981039 +140343,42718,dystopia,1293981033 +140343,42718,French,1306101058 +140343,42738,action,1285494003 +140343,42738,vampires,1285493947 +140343,42738,werewolves,1285493950 +140343,43928,dystopia,1323591787 +140343,43928,sci-fi,1323591549 +140343,43983,Hong Kong,1288740397 +140343,43983,organized crime,1288740453 +140343,43983,Triad,1288740567 +140343,44115,japan,1286785959 +140343,44115,ninja,1286785955 +140343,44761,high school,1304039219 +140343,44779,Christmas,1324249779 +140343,44779,serial killer,1321235321 +140343,45081,horror,1320536413 +140343,45447,adventure,1297660779 +140343,45447,conspiracy theory,1297660784 +140343,45499,sci-fi,1288155273 +140343,45499,superhero,1288155278 +140343,45672,comedy,1285826799 +140343,45722,Adventure,1285210042 +140343,45722,Comedy,1285210050 +140343,45722,pirates,1285403194 +140343,45880,France,1345964232 +140343,45981,sci-fi,1343281410 +140343,46322,action,1321670141 +140343,46322,China,1321670155 +140343,46322,Martial Arts,1321670148 +140343,46970,racing,1328490911 +140343,47725,French,1310869879 +140343,47894,ireland,1345359523 +140343,48319,war,1301196709 +140343,48319,World War I,1301196689 +140343,48825,Afghanistan,1301125328 +140343,48825,war,1301125333 +140343,48877,serial killer,1308365579 +140343,49615,China,1292198206 +140343,49615,Hong Kong,1292198200 +140343,49615,organized crime,1292198169 +140343,49615,Triad,1292198181 +140343,49737,martial arts,1304662258 +140343,50011,Norwegian,1307343163 +140343,50068,japan,1288408255 +140343,50068,war,1288408226 +140343,50068,World War II,1288408238 +140343,50842,Danish,1324607371 +140343,51662,action,1297661832 +140343,51662,war,1297661841 +140343,52227,dark comedy,1306660333 +140343,52606,crime,1302320542 +140343,52806,fantasy,1329377831 +140343,52806,magic,1329377947 +140343,52952,England,1337998461 +140343,53125,adventure,1285210074 +140343,53125,comedy,1285210078 +140343,53125,pirates,1285403101 +140343,53207,serial killer,1297634160 +140343,54075,medieval,1296963413 +140343,54075,war,1296963429 +140343,54248,dark comedy,1306660268 +140343,54372,French,1318143426 +140343,54881,documentary,1289656451 +140343,54881,underdog,1289656458 +140343,55549,documentary,1306031873 +140343,56003,dystopia,1299436844 +140343,56003,sci-fi,1299436851 +140343,56079,comedy,1301197731 +140343,56079,drugs,1301197729 +140343,56174,post-apocalyptic,1297634637 +140343,56174,zombies,1297634705 +140343,56379,documentary,1301533251 +140343,56921,sci-fi,1352534774 +140343,56921,space,1352534777 +140343,57504,Anime,1285491853 +140343,57504,time travel,1285491856 +140343,57843,crime,1312606885 +140343,57843,drugs,1312606894 +140343,57843,England,1312606813 +140343,58306,biography,1301195253 +140343,58803,blackjack,1345358091 +140343,58803,true story,1303524495 +140343,59112,comedy,1310080203 +140343,59112,drugs,1310080207 +140343,59220,india,1296487655 +140343,59315,sci-fi,1299439179 +140343,59315,superhero,1299439176 +140343,59392,sci-fi,1285480997 +140343,59900,comedy,1335676806 +140343,60020,China,1291937078 +140343,60020,war,1291937032 +140343,60609,crime,1299438117 +140343,60609,Japan,1299438099 +140343,60674,sci-fi,1288420479 +140343,60674,time travel,1288420486 +140343,60684,sci-fi,1286697571 +140343,60684,superhero,1288155380 +140343,60816,fantasy,1326067243 +140343,60816,magic,1329377939 +140343,61024,comedy,1309579817 +140343,61024,drugs,1309579819 +140343,61026,China,1299438643 +140343,61026,war,1299438641 +140343,61240,swedish,1312698891 +140343,61240,vampires,1312698888 +140343,61257,documentary,1313735504 +140343,61312,comedy,1306459201 +140343,61352,espionage,1287102349 +140343,61401,superhero,1310776357 +140343,62250,italy,1310603941 +140343,62250,organized crime,1310603950 +140343,62293,England,1297751534 +140343,62336,anime,1301016167 +140343,62788,vampires,1324607231 +140343,63179,Japan,1285413012 +140343,63479,comedy,1304838470 +140343,64508,aliens,1304838149 +140343,64508,sci-fi,1304838143 +140343,64508,war,1304838154 +140343,64993,anime,1285137618 +140343,64993,bittersweet,1285137650 +140343,64993,Japan,1297635688 +140343,65216,war,1292197858 +140343,65216,World War II,1292197863 +140343,65359,fantasy,1345359684 +140343,65359,magic,1345359679 +140343,65514,action,1290684365 +140343,65514,China,1291937018 +140343,65514,martial arts,1290684376 +140343,65682,action,1299438252 +140343,65682,vampires,1299438256 +140343,65682,werewolves,1299438258 +140343,65802,comedy,1288042754 +140343,65868,musical,1299192897 +140343,65868,sci-fi,1299192918 +140343,66130,martial arts,1337226436 +140343,66130,thailand,1337226452 +140343,66335,anime,1301196243 +140343,66371,japan,1297414942 +140343,66581,comedy,1315013177 +140343,66596,Comedy,1312778737 +140343,66785,Korean,1322887425 +140343,66789,sci-fi,1333604581 +140343,66934,comedy,1290061865 +140343,66934,musical,1299192902 +140343,66934,superhero,1290061873 +140343,67255,Swedish,1312698849 +140343,67799,time travel,1331700576 +140343,68237,Sci-fi,1299438788 +140343,68269,England,1295592790 +140343,68319,sci-fi,1288155235 +140343,68319,superhero,1288155250 +140343,68358,action,1290162264 +140343,68358,sci-fi,1290162275 +140343,68358,space,1290162282 +140343,68486,China,1314814829 +140343,68486,war,1314814823 +140343,68600,comedy,1345358914 +140343,68959,anime,1297635486 +140343,69324,Denmark,1291427589 +140343,69324,World War II,1291427574 +140343,69406,comedy,1291417700 +140343,69436,comedy,1301197055 +140343,70032,dystopia,1289648704 +140343,70286,action,1288156045 +140343,70286,aliens,1288156020 +140343,70286,sci-fi,1288156016 +140343,70286,South Africa,1288156032 +140343,70336,action,1289977568 +140343,70336,sci-fi,1289977575 +140343,70451,Norwegian,1315893744 +140343,70451,true story,1315893793 +140343,70451,war,1315893555 +140343,70451,World War II,1315893548 +140343,70497,heist,1300608075 +140343,70497,Scotland,1300608040 +140343,70497,true story,1300608072 +140343,70562,Japan,1291350401 +140343,70565,comedy,1301196550 +140343,70728,England,1287794278 +140343,70728,prison,1289636906 +140343,71135,sci-fi,1288035148 +140343,71135,space,1288035154 +140343,71156,comedy,1288494016 +140343,71318,aliens,1332563413 +140343,71318,CGI,1332563419 +140343,71318,sci-fi,1332563350 +140343,71450,documentary,1297495288 +140343,71484,dystopia,1291634989 +140343,71530,dystopia,1285494452 +140343,71530,sci-fi,1285494421 +140343,71550,high school,1340440385 +140343,71691,ireland,1299348355 +140343,71691,true story,1299437309 +140343,71732,dark comedy,1329024303 +140343,72129,serial killer,1310703145 +140343,72308,sci-fi,1285137171 +140343,72308,space,1285137087 +140343,72369,Japan,1313975700 +140343,72378,action,1286086942 +140343,72378,apocalypse,1286086959 +140343,73168,post-apocalyptic,1287912641 +140343,73268,dystopia,1301984711 +140343,73268,sci-fi,1301984740 +140343,73268,vampires,1301984714 +140343,73323,Swedish,1310604172 +140343,73344,crime,1299347997 +140343,73344,French,1306101069 +140343,73344,prison,1299348015 +140343,73488,Japan,1301196903 +140343,73664,CGI,1294462770 +140343,73664,dragons,1301283034 +140343,73664,fantasy,1294462834 +140343,73808,Korean,1306100812 +140343,73808,serial killer,1306100810 +140343,73929,apocalypse,1288000413 +140343,74139,war,1287538844 +140343,74139,World War I,1287538855 +140343,74486,Australia,1290333561 +140343,74486,claymation,1290333657 +140343,74510,Swedish,1310604196 +140343,74512,documentary,1290231676 +140343,74789,fantasy,1298901134 +140343,74868,England,1305775372 +140343,75345,korean,1340439744 +140343,75813,drugs,1305497209 +140343,76077,comedy,1302307167 +140343,76077,time travel,1302307174 +140343,76175,action,1295091102 +140343,76175,fantasy,1295091100 +140343,76210,superhero,1320372319 +140343,76244,England,1315708989 +140343,76251,action,1304895263 +140343,76251,superhero,1304895291 +140343,77179,documentary,1311814025 +140343,77561,sci-fi,1309566815 +140343,77561,superhero,1309566818 +140343,77709,anime,1309757436 +140343,77709,war,1309757442 +140343,77772,comedy,1298585310 +140343,77800,dark comedy,1302760838 +140343,77800,England,1302760844 +140343,78105,action,1297414192 +140343,78105,adventure,1297414239 +140343,78105,fantasy,1297414259 +140343,78499,cgi,1319340598 +140343,78655,dark,1287199574 +140343,78893,fantasy,1313375312 +140343,79111,Korean,1352534182 +140343,79111,Korean War,1352534168 +140343,79111,war,1352534162 +140343,79134,comedy,1300522445 +140343,79139,magic,1329377468 +140343,79293,action,1303524569 +140343,79293,espionage,1303524610 +140343,79553,action,1309566942 +140343,79553,Hong Kong,1309566966 +140343,79553,martial arts,1309566946 +140343,79592,comedy,1302986315 +140343,79695,action,1314939585 +140343,79796,action,1291530704 +140343,80162,French,1306101044 +140343,80162,zombies,1305763503 +140343,80363,post-apocalyptic,1307314552 +140343,80363,zombies,1307174427 +140343,80549,comedy,1303601377 +140343,80549,high school,1303601372 +140343,80831,vampires,1330223142 +140343,80839,true story,1309757616 +140343,81080,vampires,1325570688 +140343,81516,England,1308022849 +140343,81535,serial killer,1343856986 +140343,81537,comedy,1299802902 +140343,81731,England,1290578755 +140343,81731,medieval,1290578776 +140343,81932,boxing,1316157218 +140343,81932,true story,1316157248 +140343,82053,true story,1340437871 +140343,82095,aliens,1311476448 +140343,82095,sci-fi,1311476444 +140343,82447,Australia,1348570052 +140343,82459,Western,1333604816 +140343,82461,sci-fi,1318060371 +140343,82926,Danish,1351405298 +140343,83158,England,1302771313 +140343,83525,Japan,1351405506 +140343,83525,organized crime,1351405485 +140343,84154,documentary,1335167539 +140343,84716,Korean,1321335686 +140343,84834,action,1301016387 +140343,84834,China,1301016392 +140343,84834,war,1301016465 +140343,85342,Brazil,1331700412 +140343,85358,comedy,1310790833 +140343,85763,war,1352532747 +140343,85763,World War I,1352532759 +140343,86142,japan,1313285416 +140343,86142,samurai,1313285429 +140343,86320,apocalypse,1335166912 +140343,86332,superhero,1339812538 +140343,86628,organized crime,1326681886 +140343,86750,German,1320209774 +140343,86892,Korean,1310860342 +140343,86973,China,1321335942 +140343,86973,true story,1321669757 +140343,86973,war,1321335945 +140343,86973,world war ii,1321335950 +140343,87306,aliens,1347266729 +140343,87306,sci-fi,1347266723 +140343,87390,documentary,1313897422 +140343,87520,action,1345359134 +140343,87520,robots,1345359140 +140343,87520,sci-fi,1345359149 +140343,88140,superhero,1345358610 +140343,88515,england,1314725715 +140343,88515,serial killer,1314725668 +140343,88744,sci-fi,1335678038 +140343,89472,Italian,1349569265 +140343,89650,England,1317266219 +140343,90249,boxing,1337227375 +140343,90249,robots,1337227377 +140343,90249,sci-fi,1337227382 +140343,90645,England,1333260101 +140343,90899,documentary,1337226235 +140343,90916,crime,1349569031 +140343,91014,China,1352534007 +140343,91014,martial arts,1352533982 +140343,92210,anime,1334381118 +140343,93443,hockey,1345357622 +140343,93563,sci-fi,1352535168 +140343,93721,documentary,1346382938 +140343,93721,Japan,1346382934 +140343,93855,dark comedy,1345359413 +140343,94480,fantasy,1350804478 +140343,96952,documentary,1352179749 +140365,137815,gangster,1444749468 +140365,137815,southern france,1444749494 +140368,1676,future,1446110942 +140368,1676,futuristic,1446110936 +140368,3020,cathartic,1445997937 +140368,3020,going postal,1445997923 +140368,3020,obsession,1445997932 +140368,3020,vigilantism,1445998053 +140368,74948,justice,1445997997 +140368,74948,revenge,1445997994 +140368,74948,vigilante justice,1445998020 +140368,96737,Dystopia,1445997723 +140368,96737,sci-fi,1445997695 +140368,114246,noir thriller,1445997541 +140380,92509,Rachel McAdams,1452852926 +140380,95510,Andrew Garfield,1452699815 +140380,95510,Emma Stone,1452699809 +140380,100714,honest,1453104583 +140380,102407,disappointing,1453223170 +140380,104374,romance,1452698707 +140380,106696,musical,1452699404 +140380,106696,romance,1452699435 +140380,108514,chasing dreams,1452763379 +140380,108514,deepika padukone,1452763331 +140380,108514,musical,1452763340 +140380,111622,romance,1452698937 +140380,112552,Melissa Benoist,1452762645 +140380,115147,Michelle Monaghan,1452700049 +140380,115147,romantic,1452699964 +140386,260,Action comedy,1439452795 +140386,260,romance,1439452798 +140389,6037,Nudity (Full Frontal - Notable),1171669763 +140396,318,classic,1279995551 +140396,318,Morgan Freeman,1279995547 +140396,318,revenge,1279995564 +140396,318,Stephen King,1279995560 +140396,318,twist ending,1279995556 +140396,785,Bill Murray,1279994360 +140396,785,deadpan,1279994349 +140396,785,Farelly Brothers,1279994337 +140396,785,Gross-out,1279994341 +140396,785,humorous,1279994345 +140396,785,madcap,1279994355 +140396,785,Woody Harrelson,1279994351 +140396,911,Audrey Hepburn,1279995839 +140396,911,Cary Grant,1279995843 +140396,911,heist,1279995847 +140396,911,homage to Hitchcock,1279995893 +140396,911,humorous,1279995852 +140396,911,James Coburn,1279995854 +140396,911,light,1279995881 +140396,911,overrated,1279995876 +140396,911,Paris,1279995864 +140396,911,slick,1279995845 +140396,911,surprise ending,1279995858 +140396,911,twist ending,1279995861 +140396,911,urbane,1279995870 +140396,911,VHS,1279995869 +140396,911,Walter Matthau,1279995856 +140396,933,Alfred Hitchcock,1279996529 +140396,933,Cary Grant,1279996511 +140396,933,Grace Kelly,1279996524 +140396,933,Hitchcock,1279996526 +140396,933,Monaco,1279996533 +140396,933,Oscar (Best Cinematography),1279996537 +140396,1527,action,1279994170 +140396,1527,aliens,1279994129 +140396,1527,cinematography,1279994147 +140396,1527,Gary Oldman,1279994134 +140396,1527,Luc Besson,1279994137 +140396,1527,Milla Jovovich,1279994140 +140396,1527,seen more than once,1279994160 +140396,1729,Chris Tucker,1279995974 +140396,1729,conspiracy,1279995990 +140396,1729,gangsters,1279995970 +140396,1729,gay,1279995967 +140396,1729,great plot,1279995963 +140396,1729,interracial romance,1279995956 +140396,1729,Jack Nicholson,1279995993 +140396,1729,Quentin Tarantino,1279995944 +140396,1729,quirky,1279995984 +140396,1729,Samuel L. Jackson,1279995949 +140396,1729,tense,1279995953 +140396,2571,alternate reality,1279995108 +140396,2571,artificial intelligence,1279995071 +140396,2571,computers,1279995100 +140396,2571,cult film,1279995076 +140396,2571,dystopia,1279995095 +140396,2571,Keanu Reeves,1279995073 +140396,2571,philosophical,1279995089 +140396,2571,philosophy,1279995078 +140396,2571,sci-fi,1279995084 +140396,2571,stylized,1279995087 +140396,2571,surreal,1279995081 +140396,2571,virtual reality,1279995082 +140396,2762,Bruce Willis,1279995624 +140396,2762,ghosts,1279995647 +140396,2762,ghosts/afterlife,1279995630 +140396,2762,horror,1279995631 +140396,2762,M. Night Shyamalan,1279995650 +140396,2762,mindfuck,1279995619 +140396,2762,Oscar Nominee,1279995652 +140396,2762,psychology,1279995622 +140396,2762,stylized,1279995642 +140396,2762,suspense,1279995617 +140396,2762,twist ending,1279995645 +140396,2959,based on a book,1279996218 +140396,2959,Brad Pitt,1279996196 +140396,2959,dark comedy,1279996190 +140396,2959,disturbing,1279996210 +140396,2959,Edward Norton,1279996204 +140396,2959,mental illness,1279996233 +140396,2959,philosophy,1279996188 +140396,2959,quirky,1279996214 +140396,2959,surreal,1279996198 +140396,2959,thought-provoking,1279996201 +140396,2959,twist ending,1279996199 +140396,2959,violence,1279996225 +140396,4930,Michael Caine,1279995449 +140396,4930,spies,1279995453 +140396,6780,black holes,1279996143 +140396,6780,genius,1279996156 +140396,6780,physics,1279996153 +140396,6780,science,1279996151 +140396,6808,Clint Eastwood,1279995721 +140396,6808,double twist,1279995747 +140396,6808,Richard Burton,1279995725 +140396,6808,twist,1279995740 +140396,6808,World War II,1279995754 +140396,8950,bleak,1279997975 +140396,8950,Christian Bale,1279997953 +140396,8950,creepy,1279998016 +140396,8950,eerie,1279998023 +140396,8950,imaginary friend,1279998002 +140396,8950,insomnia,1279997979 +140396,8950,Mafia,1279997969 +140396,8950,paranoid,1279998009 +140396,8950,psychology,1279997960 +140396,8950,schizophrenia,1279997996 +140396,8950,stylized,1279997992 +140396,8950,twist ending,1279997964 +140396,48516,atmospheric,1279994658 +140396,48516,gangster,1279994661 +140396,48516,Jack Nicholson,1279994656 +140396,48516,Leonardo DiCaprio,1279994651 +140396,48516,Mafia,1279994663 +140396,48516,Mark Wahlberg,1279994666 +140396,48516,Matt Damon,1279994654 +140396,48516,tense,1279994669 +140396,62956,animation,1279994271 +140396,62956,billy west,1279994289 +140396,62956,futurama,1279994279 +140396,62956,john di maggio,1279994284 +140398,356,Oscar Winner,1448990585 +140398,356,tom hanks,1448990599 +140398,1036,classic Bruce Willis,1448990617 +140398,3578,War,1448990646 +140421,260,sci-fi,1434650430 +140421,260,space opera,1434650437 +140421,72378,disaster movie,1434650942 +140421,72378,john cusack,1434650942 +140421,72378,roland emmerich,1434650942 +140479,47,Brad Pitt,1312855139 +140479,541,Philip K. Dick,1312854932 +140479,1214,sci-fi,1312854817 +140479,2021,Frank Herbert,1312855026 +140479,5046,Philip K. Dick,1312854716 +140479,5445,Philip K. Dick,1312855046 +140479,6502,post-apocalyptic,1312854845 +140479,27611,military,1312854764 +140479,27611,MILITARY LIFE,1312854765 +140479,27611,post-apocalyptic,1312854769 +140479,27611,sci-fi,1312854768 +140479,56174,Will Smith,1312855410 +140479,68237,Sci-fi,1312853865 +140505,1252,Los Angeles,1149270238 +140505,1252,nicolson,1149270222 +140506,260,Boring,1439006125 +140506,260,Science Fiction,1439006137 +140530,3752,Funny as hell,1187547203 +140530,3916,not bad.,1187547252 +140530,4270,okay once,1187547245 +140530,4447,Stupid as Hell,1187547215 +140530,6378,action packed,1187547191 +140537,1,animation,1157998369 +140537,318,best-movie,1158858152 +140537,318,classic,1158858488 +140537,318,prison,1158858155 +140537,318,seen more than once,1158858483 +140537,1556,crappy sequel,1182392487 +140537,40614,Clive Owen,1172002580 +140546,47,Brad Pitt,1376407533 +140546,47,dark,1376407533 +140546,47,horror,1376407533 +140546,1214,alien,1376408390 +140546,1214,aliens,1376408367 +140546,1214,atmospheric,1376408366 +140546,1214,dark,1376408366 +140546,1214,futuristic,1376408366 +140546,1214,horror,1376408367 +140546,1214,Sci-Fi,1376408366 +140546,1214,Sigourney Weaver,1376408367 +140546,1214,suspense,1376408366 +140546,1214,tense,1376408366 +140546,1241,black comedy,1376409271 +140546,1241,funny,1376409254 +140546,1241,gore,1376409254 +140546,1241,gruesome,1376409271 +140546,1241,hilarious,1376409271 +140546,1241,So funny,1376409254 +140546,1241,splatter,1376409271 +140546,1241,zombies,1376409271 +140546,2571,atmospheric,1376408755 +140546,2571,cool,1376408755 +140546,2571,original,1376408755 +140546,2571,sci-fi,1376408755 +140546,2571,surreal,1376408755 +140546,2606,dark comedy,1376409314 +140546,2606,funny,1376409314 +140546,2710,creepy,1376410749 +140546,2710,Handycam,1376410749 +140546,2710,horror,1376410749 +140546,2710,low budget,1376410749 +140546,2710,original,1376410749 +140546,2710,scary,1376410749 +140546,2710,suspense,1376410749 +140546,2710,tense,1376410749 +140546,2710,tension,1376410749 +140546,2843,stupid,1376409492 +140546,4725,boring,1376410604 +140546,4725,low budget,1376410614 +140546,4725,not scary,1376410622 +140546,4725,stupid,1376410605 +140546,5673,music,1376408145 +140546,5673,weird,1376408157 +140546,6214,rape,1376410144 +140546,6502,atmospheric,1376408466 +140546,6502,awesome,1376408466 +140546,6502,futuristic,1376408466 +140546,6502,great soundtrack,1376408466 +140546,6502,horror,1376408466 +140546,6502,music,1376408466 +140546,6502,original,1376408466 +140546,6502,soundtrack,1376408466 +140546,6502,suspense,1376408466 +140546,6502,tense,1376408466 +140546,6502,zombies,1376408466 +140546,7361,Jim Carrey,1376408113 +140546,7361,original,1376408112 +140546,7361,romance,1376408113 +140546,7361,surreal,1376408113 +140546,8949,not that funny,1376409343 +140546,8949,wine,1376409343 +140546,8950,atmospheric,1376408604 +140546,8950,creepy,1376408604 +140546,8950,dark,1376408604 +140546,8950,schizophrenia,1376408604 +140546,8950,tense,1376408604 +140546,8950,twist ending,1376408604 +140546,33683,crazy,1376410517 +140546,33683,gore,1376410482 +140546,33683,horror,1376410482 +140546,33683,lesbian,1376410501 +140546,33683,music,1376410492 +140546,33683,plot twist,1376410482 +140546,33683,psycho,1376410482 +140546,33683,tense,1376410482 +140546,33683,tension,1376410482 +140546,34319,original,1376407943 +140546,40723,scary,1376410352 +140546,40723,tense,1376410352 +140546,40723,tension,1376410353 +140546,40723,underrated,1376410364 +140546,47937,black comedy,1376408563 +140546,47937,comedy,1376408563 +140546,47937,dark comedy,1376408562 +140546,47937,dark humor,1376408563 +140546,47937,funny,1376408563 +140546,47937,horror,1376408563 +140546,47937,humor,1376408563 +140546,51255,black comedy,1376408091 +140546,51255,dark comedy,1376408090 +140546,51255,funny,1376408090 +140546,51255,Simon Pegg,1376408091 +140546,51709,weird,1376410877 +140546,52328,atmospheric,1376410938 +140546,52328,cinematography,1376410935 +140546,52328,dark,1376410940 +140546,52328,great soundtrack,1376410942 +140546,52328,sci-fi,1376410944 +140546,52328,space,1376410945 +140546,55247,music,1376407839 +140546,55820,dark,1376408972 +140546,55820,suspense,1376408972 +140546,55820,tense,1376408972 +140546,55820,tension,1376408972 +140546,55820,thriller,1376408972 +140546,56174,alone in the world,1376408888 +140546,56174,emotional,1376408887 +140546,56174,horror,1376408888 +140546,56174,survival,1376408888 +140546,56174,Will Smith,1376408888 +140546,56174,zombies,1376408888 +140546,57274,bloody,1376410784 +140546,57274,Handycam,1376410784 +140546,57274,horror,1376410792 +140546,57274,infection,1376410784 +140546,57274,Spanish,1376410797 +140546,57274,virus,1376410784 +140546,57274,zombies,1376410784 +140546,58975,creepy,1376408729 +140546,58975,freaky,1376408729 +140546,58975,horror,1376408729 +140546,58975,tension,1376408729 +140546,60072,Angelina Jolie,1376407626 +140546,60072,original,1376407626 +140546,61323,Brad Pitt,1376407382 +140546,61323,dark humor,1376407411 +140546,61323,funny,1376407366 +140546,61323,satire,1376407398 +140546,61323,stupidity,1376407394 +140546,61323,weird,1376407372 +140546,62203,shocking,1376408850 +140546,62203,tension,1376408857 +140546,62203,weird,1376408850 +140546,66090,creepy,1376408682 +140546,66090,dark,1376408682 +140546,66090,disturbing,1376410554 +140546,66090,horror,1376408682 +140546,66090,intense,1376410554 +140546,66090,tense,1376408682 +140546,66090,Tense.,1376410531 +140546,66090,underrated,1376410524 +140546,68157,black comedy,1376407479 +140546,68157,Brad Pitt,1376407479 +140546,68157,dark comedy,1376407460 +140546,68157,satire,1376407479 +140546,69134,weird,1376410121 +140546,70159,horror,1376408705 +140546,70159,original,1376408705 +140546,70159,tense,1376408705 +140546,70159,tension,1376408705 +140546,71379,low budget,1376410693 +140546,71379,not that special,1376410689 +140546,71379,slow,1376410704 +140546,71535,comedy,1376408270 +140546,71535,dark comedy,1376408270 +140546,71535,dark humor,1376408270 +140546,71535,funny,1376408270 +140546,71535,horro,1376408277 +140546,71535,Woody Harrelson,1376408270 +140546,72731,soundtrack,1376408952 +140546,72731,tense,1376408952 +140546,73211,boring,1376410819 +140546,73211,low budget,1376410827 +140546,73211,stupid,1376410815 +140546,74275,funny,1376408074 +140546,74275,Jim carrey,1376408074 +140546,74738,atmosphere,1376407913 +140546,74738,scary,1376407904 +140546,76251,dark comedy,1376408773 +140546,76251,funny,1376408773 +140546,76251,humorous,1376408773 +140546,77427,experiment,1376410242 +140546,77427,horror,1376410247 +140546,77427,very original,1376410223 +140546,79132,original,1376407968 +140546,79132,soundtrack,1376407968 +140546,79132,surreal,1376407968 +140546,79132,suspense,1376407968 +140546,79251,cinematography,1376410431 +140546,79251,disturbing,1376408817 +140546,79251,gore,1376410396 +140546,79251,sick,1376410444 +140546,79251,suicide,1376410410 +140546,79251,suspense,1376408789 +140546,79251,tense,1376408789 +140546,79251,tension,1376408789 +140546,79251,underrated,1376410383 +140546,79702,comedy,1376409620 +140546,79702,funny,1376409620 +140546,79702,geeks,1376409620 +140546,79702,hilarious,1376409620 +140546,79702,Michael Cera,1376409626 +140546,79702,romance,1376409620 +140546,79702,surreal,1376409620 +140546,83134,absurd,1376408492 +140546,83134,black comedy,1376408492 +140546,83134,comedy,1376408492 +140546,83134,dark comedy,1376408492 +140546,83134,funny,1376408492 +140546,83134,gore,1376408492 +140546,83134,horror comedy,1376408492 +140546,83134,satire,1376408492 +140546,84189,revenge,1376407774 +140546,84954,original,1376407635 +140546,85401,black comedy,1376409126 +140546,85401,dark comedy,1376409126 +140546,85401,funny,1376409126 +140546,85401,shocking,1376409126 +140546,90405,future,1376408022 +140546,90405,original,1376408022 +140546,90405,sci-fi,1376408022 +140546,91681,blindness,1376409575 +140546,91681,tense,1376409539 +140546,91681,tension,1376409539 +140546,92058,concept,1376410319 +140546,92058,too disturbing,1376410301 +140546,92192,aliens,1376408924 +140546,92192,original,1376408919 +140546,92192,scary,1376408918 +140546,92192,sci-fi,1376408919 +140546,92192,suspense,1376408919 +140546,92192,tense,1376408919 +140546,92192,tension,1376408919 +140546,93164,original,1377294233 +140546,93840,dark comedy,1376408312 +140546,93840,original,1376408313 +140546,93840,plot twist,1376408313 +140546,93840,weird,1376408317 +140546,94864,aliens,1376408425 +140546,94864,atmospheric,1376408425 +140546,94864,intense,1376408425 +140546,94864,sci-fi,1376408425 +140546,97752,future,1376409407 +140546,97752,sci-fi,1376409407 +140546,97752,trailer was better than the movie,1376409442 +140546,97752,visually appealing,1376409415 +140546,99047,sick,1376409210 +140549,293,corruption,1368050172 +140549,293,drama,1368050186 +140549,293,Jean Reno,1368050167 +140549,293,love story,1368050160 +140549,57669,black comedy,1368050239 +140549,57669,british comedy,1368050249 +140549,57669,dark comedy,1368050262 +140549,57669,depression,1368050255 +140549,57669,suicide,1368050244 +140580,112552,drummer,1425472166 +140580,112552,inspirational,1425472166 +140580,112552,music,1425472166 +140610,7153,cool,1196953404 +140610,7153,like-i-like top pick,1196953436 +140612,260,classic sci-fi,1442105404 +140612,260,one female character,1442105433 +140615,260,Classic,1432748787 +140615,260,Science Fiction,1432748776 +140615,1136,absurd,1435441344 +140615,1136,british comedy,1435441332 +140615,1136,hilarious,1435441334 +140615,1136,humorous,1435441341 +140615,1136,Monty Python,1435441328 +140615,123405,fairy tale,1437580876 +140615,123405,muppets,1437580876 +140615,123405,puppets,1437580876 +140623,130634,action,1428147574 +140623,130634,car racing,1428147636 +140623,130634,paul walker,1428147636 +140648,2072,thriller,1262287428 +140653,3000,Hayao Miyazaki,1250353195 +140653,6385,New Zealand,1242930441 +140653,6618,kung fu,1250353172 +140653,60816,author:Terry Pratchett,1250353125 +140653,60816,discworld,1250353116 +140653,60816,Jeremy Irons,1250353127 +140653,60816,Tim Curry,1250353119 +140669,63436,g,1243425166 +140669,63436,v,1243425166 +140679,58559,Heath Ledger as the Joker,1429636309 +140679,58559,SuperVillain,1429636348 +140679,109487,christopher nolan,1429636587 +140679,109487,cult,1429636587 +140679,109487,sci-fi,1429636587 +140687,41569,Excellent story nearly ruined by ridiculous special effects,1137349510 +140720,4033,Political,1206709384 +140720,55908,dialogue driven,1293544455 +140720,55908,unrealistic characters,1293544383 +140732,1213,organized crime,1311451041 +140732,1227,long,1310941763 +140732,2028,vin diesel,1315769645 +140732,69640,Christian Bale,1324319368 +140732,69640,digital editing,1324319340 +140732,83613,aliens,1312438669 +140732,83613,cowboys,1312438660 +140732,83613,Daniel Craig,1312438750 +140732,88140,comic book,1311653600 +140732,88140,no nazis,1311653573 +140732,90249,boxing,1318310306 +140732,90249,father-son relationship,1318310312 +140732,90249,hugh jackman,1318310298 +140732,90249,near-future,1318310417 +140732,90249,robots,1318310303 +140737,139148,drama,1438413690 +140737,139148,india,1438413690 +140737,139148,mute girl,1438413690 +140741,260,fantasy,1439794643 +140762,6176,Charles Bronson,1249419922 +140762,62198,atheism,1249419913 +140770,32587,Quentin Tarantino,1329543028 +140779,222,ireland,1241049649 +140779,222,Irish,1241049656 +140779,222,Minnie Driver,1241049643 +140779,3355,bad ending,1249092546 +140779,3355,dialogue,1249092589 +140779,3355,Emmanuelle Seigner,1249092577 +140779,3355,Johnny Depp,1249092562 +140779,3355,Mystery,1249092587 +140779,5633,Bad ending,1249743549 +140779,5633,Cate Blanchett,1249743533 +140779,5633,Long slow scenes,1249743561 +140779,7361,Kate Winslet,1240924824 +140779,7361,nonlinear,1240924683 +140779,7361,quirky,1240924705 +140779,8360,sequels,1209225675 +140779,53121,bad sequel,1209225706 +140779,53550,inaccurate,1241390385 +140779,53550,rescuedawnthetruth.com,1241390424 +140779,53550,Werner Herzog,1241390360 +140779,55247,Alaska,1249575382 +140779,55247,based on a true story,1249575385 +140779,55247,road trip,1249575393 +140779,68157,Brad Pitt,1251521996 +140779,68157,Mélanie Laurent,1251521992 +140779,69757,Joseph Gordon-Levitt,1252636725 +140779,69757,Zooey Deschanel,1252636720 +140779,69951,alternate reality,1263332260 +140779,69951,Heath Ledger,1263332270 +140779,69951,Johnny Depp,1263332271 +140779,69951,Jude Law,1263332274 +140779,69951,script,1263332326 +140779,69951,surreal,1263332335 +140779,69951,terry gilliam,1263332276 +140779,71535,funny,1254886715 +140779,71535,short,1254886725 +140779,71535,soundtrack,1254886701 +140779,71535,Woody Harrelson,1254886675 +140779,72386,blindness,1263044769 +140779,72386,Nudity (Topless),1263044778 +140779,72386,Penélope Cruz,1263044782 +140779,72641,Sandra Bullock,1260710761 +140779,72641,true story,1260710770 +140779,72998,3d,1263213714 +140779,72998,cgi,1263213698 +140779,72998,idiot characters,1263213753 +140779,72998,immersive,1263213704 +140779,72998,military,1263213686 +140779,72998,stunning,1263213689 +140779,72998,visual,1263213695 +140779,73017,BORING!,1262532000 +140779,73017,Jude Law,1262532012 +140779,73017,Robert Downey Jr.,1262532003 +140779,74545,Ending,1269437621 +140779,74545,Ewan McGregor,1269437601 +140799,3067,Spanish,1186875278 +140834,260,awesome,1432591031 +140834,260,Favorites,1432591039 +140834,260,Intergalactic,1432591080 +140834,260,sci-fi,1432591022 +140834,260,space,1432591062 +140834,109487,post-apocalyptic,1432592475 +140834,109487,sci-fi,1432592475 +140834,109487,space,1432592475 +140845,3498,based on true story,1422084473 +140845,4390,real sex,1421909684 +140845,6868,based on true story,1422084682 +140845,7951,Clive Barker,1422083370 +140845,26309,based on true story,1422084355 +140845,50442,based on true story,1422084607 +140848,34405,sci-fi,1443997295 +140848,34405,space,1443997307 +140848,60040,comic book,1443997384 +140848,60040,sci fi,1443997387 +140848,60040,superhero,1443997386 +140848,63433,sci-fi,1443997273 +140848,63433,space,1443997275 +140848,106487,dystopia,1443997205 +140848,106487,future,1443997193 +140848,106487,sci-fi,1443997196 +140848,112852,comic book,1443997338 +140848,112852,sci-fi,1443997336 +140848,112852,space,1443997333 +140848,122892,comic book,1443997357 +140848,122892,sci fi,1443997363 +140848,122892,superhero,1443997350 +140854,7101,Notable Nudity,1152541163 +140854,68157,Christoph Waltz,1251599727 +140854,68157,ending,1251599735 +140854,68157,Quentin Tarantino,1251599745 +140854,68157,World War II,1251599747 +140856,1198,archaeology,1137604198 +140856,1198,Indiana Jones,1137604203 +140856,1198,Nazis,1137604199 +140856,4034,drugs,1137603183 +140856,27618,dinosaurs,1137604007 +140856,27618,time travel,1137604004 +140856,35957,wes craven thriller,1137603058 +140871,260,cult classic,1439843523 +140871,260,sci-fi,1439843508 +140879,260,saga,1441986214 +140879,260,wisedom,1441986229 +140879,260,yoda,1441986234 +140889,910,classic,1140141706 +140889,1258,psychological,1140140810 +140889,3994,fresh,1140141642 +140889,6377,boring,1140141172 +140889,6377,cutesy,1140141172 +140902,296,john travolta,1429947648 +140902,296,quentin tarantino,1429947648 +140902,296,samuel l. jackson,1429947648 +140902,356,comedy,1428048916 +140902,356,fun,1428048916 +140902,356,uplifting,1428048916 +140902,7361,alternate reality,1428049062 +140902,7361,beautiful,1428049108 +140902,7361,comedy,1428049082 +140902,7361,dreamlike,1428049100 +140902,7361,fantasy,1428049105 +140902,7361,imagination,1428049066 +140902,7361,jim carrey,1428049085 +140902,7361,love,1428049080 +140902,7361,nonlinear,1428049077 +140902,7361,philosophy,1428049056 +140902,7361,quirky,1428049102 +140902,7361,sci-fi,1428049070 +140902,7361,thought-provoking,1428049087 +140902,30707,Clint Eastwood,1429947439 +140902,30707,Morgan Freeman,1429947443 +140902,35836,comedy,1429947537 +140902,35836,crude humor,1429947554 +140902,35836,funny,1429947539 +140902,35836,Paul Rudd,1429947548 +140902,35836,romantic comedy,1429947543 +140902,35836,Seth Rogen,1429947546 +140902,35836,steve carell,1429947533 +140903,260,sci-fi,1440099042 +140903,260,space,1440099031 +140910,260,harry Potter,1442186643 +140910,260,Hitch,1442186619 +140949,1590,dark,1273973495 +140949,1590,distorted reality,1273973512 +140949,1590,hallucination,1273973508 +140949,1590,horror,1273973543 +140949,1590,pychologically thrilling,1273973591 +140949,1590,sci-fi. dark,1273973556 +140949,2858,coming of age,1286562439 +140949,2858,dark comedy,1286562435 +140949,2858,imdb top 250,1286562495 +140949,2858,midlife crisis,1286562486 +140949,2858,satire,1286562464 +140949,2858,satirical,1286562478 +140949,2858,sexuality,1286562445 +140949,2858,surrealism,1286562449 +140949,2858,thought-provoking,1286562457 +140949,4308,quirky,1306869348 +140949,4308,Sexualized violence,1306869341 +140949,4725,bad pacing,1273989317 +140949,4725,creepy,1273989333 +140949,4725,psychology,1273989323 +140949,4725,suspense,1273989330 +140949,4725,Well Done,1273989326 +140949,6214,constantly rotating filming,1304742025 +140949,6214,disturbing,1304742046 +140949,6214,graphic violence,1304742021 +140949,6214,reverse timeline,1304742036 +140949,7361,quirky romantic,1270310805 +140949,7361,thought-provoking,1280465505 +140949,8966,bisexuality,1286562332 +140949,8966,sexuality,1286562323 +140949,46578,off-beat comedy,1270310753 +140949,46578,quirky,1270310713 +140949,50601,bullying,1299546220 +140949,50601,death of a child,1299546224 +140949,50601,hurried ending,1299546277 +140949,50601,movie to see,1299546271 +140949,50601,sad,1299546209 +140949,50601,teen relationships,1299546204 +140949,50601,Zooey Deschanel,1299546199 +140949,53953,claustrophobic,1279170695 +140949,53953,Hotel,1279170698 +140949,55282,bad acting,1288044640 +140949,59995,Andrew Garfield,1288141488 +140949,59995,depressing,1288141479 +140949,59995,identity,1288141466 +140949,69134,cinematography,1299040316 +140949,76293,James Franco,1276404371 +140949,76293,Steve Carell,1276404363 +140949,76293,Tina Fey,1276404365 +140949,79132,clever,1280465431 +140949,79132,Ellen Page,1280465424 +140949,79132,intellectual,1280465411 +140949,79132,Joseph Gordon-Levitt,1280465422 +140949,79132,Leonardo DiCaprio,1280465447 +140949,79132,multiple interpretations,1280465453 +140949,79132,surreal,1280465442 +140949,80463,computers,1286562218 +140949,80463,dark comedy,1286505960 +140949,80463,loneliness,1286505960 +140949,87304,homosexuality,1367462789 +140949,87304,Parallelism,1367462821 +140949,87304,realism,1367462798 +140964,5906,french movie,1206387653 +140964,52037,french movie,1206387706 +140964,52579,20th century,1207319941 +140964,52579,biopic,1207319892 +140964,52579,French,1207319941 +140964,52579,historical,1207319941 +140964,52973,sexist,1207319703 +140964,52973,sophomoric,1207319662 +140977,102180,bob hope,1434884268 +140977,102180,campy,1434884268 +140977,102180,funny,1434884268 +140977,121451,family,1433764033 +140977,121451,inspiring,1433764033 +140977,121451,Soccer,1433591750 +140977,121451,Sport,1433591671 +140977,121451,sports,1433764033 +140977,121451,Triumph,1433591676 +140977,129354,hustle,1447477011 +140977,133653,family,1435583546 +140977,133653,innocent,1435583546 +140977,133653,quirky,1435583546 +140977,136223,depression,1435583729 +140977,136223,food,1435583733 +140977,136223,gay,1435583716 +140977,136223,Spanish,1435583711 +140977,136225,Australian,1435583797 +140977,136225,edge of seat,1435583817 +140977,136225,intense,1435583803 +140977,136225,thriller,1435583820 +140977,136225,thuggery,1435583807 +140977,141688,Crime,1453538728 +140977,141916,Gangster,1453985885 +140981,2232,absorbing,1272584327 +140981,2232,brutality,1272584338 +140981,2232,flat characters,1272584375 +140981,2232,intense,1272584359 +140981,2232,thrilling,1272584352 +140981,27482,absorbing,1272584431 +140981,27482,brutality,1272584469 +140981,27482,murder,1272584477 +140987,1228,boxing,1242218397 +140987,25771,Bunuel,1242130348 +140987,49355,Classic,1242130398 +140997,2020,aristocracy,1446575208 +141004,2585,vcr in clpgh,1179716377 +141004,5059,netflix instant watching,1214004602 +141053,553,West,1146322646 +141096,41566,Great movie,1140183447 +141096,41566,I want I talking lion,1140183447 +141154,7361,bittersweet,1340810223 +141154,7361,Charlie Kaufman,1340810218 +141154,7361,Jim Carrey,1340810234 +141154,7361,quirky,1340810216 +141154,7361,surreal,1340810210 +141154,7361,thought-provoking,1340810213 +141154,94126,acting and story,1340810183 +141154,94126,cinematography,1340810137 +141154,94126,Crime,1340810131 +141154,94126,drama,1340810139 +141172,1019,adapted from:book,1233115208 +141172,1704,mathematics,1232513289 +141185,593,fbi,1437793526 +141185,593,serial killer,1437793526 +141185,593,suspence,1437793526 +141202,260,space action,1439532998 +141203,357,Hugh Grant,1223155079 +141203,2571,Keanu Reeves,1223154855 +141203,48516,Di Caprio,1223153527 +141206,127146,documentary,1432435236 +141206,127146,meaning of life,1432435236 +141206,127146,music,1432435236 +141246,1711,Kevin Spacey,1173625332 +141246,4740,british,1175302856 +141246,4740,hugh laurie,1175302846 +141246,34164,dark comedy,1153268298 +141246,41285,non-hollywood ending,1152057817 +141246,41285,slow,1152057784 +141246,41716,Brosnan,1139192663 +141246,43904,just-plain-bad,1152669239 +141246,46578,want to see,1174853601 +141246,51540,based on a true story,1173625647 +141246,51540,Robert Downey Jr.,1173625653 +141246,51540,Too long,1173625616 +141246,51575,John Travolta,1173663226 +141246,51575,Martin Lawrence,1173663226 +141246,51575,roadtrip,1173663226 +141246,52245,ice skating,1176505194 +141246,52245,Jon Heder,1176505194 +141246,52245,Will Ferrell,1176505194 +141246,52375,based on a true story,1193178967 +141246,52375,richard gere,1193178967 +141246,55250,"Dwayne ""The Rock"" Johnson",1193277868 +141246,55250,football,1193277868 +141253,153,Ei muista,1168879424 +141253,293,Ei muista,1168878292 +141253,434,Ei muista,1168879406 +141253,494,Ei muista,1168878844 +141253,593,Katso Sanna!,1146476938 +141253,745,Ei muista,1146476364 +141253,780,Ei muista,1168878578 +141253,858,Katso Sanna!,1146476794 +141253,1036,Ei muista,1168878388 +141253,1042,Katso Sanna!,1146477133 +141253,1120,Katso Sanna!,1146477118 +141253,1200,Katso Sanna!,1146477102 +141253,1291,Ei muista,1146476308 +141253,1610,Katso Sanna!,1146476692 +141253,1617,Ei muista,1168878593 +141253,2273,Ei muista,1146477049 +141253,2329,Ei muista,1146477033 +141253,2600,Ei muista,1168879003 +141253,2985,Ei muista,1168878743 +141253,2989,Ei muista,1168878972 +141253,3160,Ei muista,1168878736 +141253,3175,Ei muista,1168879647 +141253,3499,Ei muista,1168878727 +141253,3793,Katso Sanna!,1146476954 +141253,3916,Ei muista,1146476265 +141253,3949,Ei muista,1168878697 +141253,3994,Ei muista,1168879611 +141253,4011,Ei muista,1168878363 +141253,4023,ei muista,1146477341 +141253,4121,Katso Sanna!,1146477233 +141253,4223,Ei muista,1146476274 +141253,4638,Ei muista,1146477217 +141253,5064,Ei muista,1146476225 +141253,5602,Ei muista,1168879553 +141253,6218,Ei muista,1146477184 +141253,7347,Ei muista,1168879177 +141253,8781,Ei muista,1168879161 +141253,44199,Ei muista,1168878406 +141271,440,Kevin Kline,1378612124 +141271,440,Romance,1378612137 +141271,1358,emotion,1375579094 +141271,1358,John Ritter,1375579108 +141271,5110,comedy,1377369016 +141271,5110,degrading,1377369004 +141271,42725,Nick Swardson Should Have Been Lead His Timing Was Sic!,1154062194 +141271,46723,Africa,1385506925 +141271,46723,deafness,1385506907 +141271,46723,Japan,1385506920 +141271,46723,Mexico,1385506916 +141271,46723,Nudity (Full Frontal),1385506942 +141271,46723,relationships,1385506960 +141271,48774,apocalypse,1381069930 +141271,48774,atmospheric,1381069935 +141271,48774,dystopia,1381069938 +141271,48774,futuristic,1381069943 +141271,48774,survival,1381069947 +141271,48774,thought-provoking,1381069948 +141271,52973,Apatow productions,1380159248 +141271,52973,Hilarious,1380159260 +141271,52973,Seth Rogen,1380159241 +141271,52973,slackers,1380159269 +141271,54997,Ben Foster,1379977229 +141271,54997,Christian Bale,1379977130 +141271,54997,father-son relationship,1379977084 +141271,54997,Russell Crowe,1379977122 +141271,54997,silly,1379977154 +141271,55052,childhood,1379251362 +141271,55052,costumes,1379251990 +141271,55052,great cinematography,1379251330 +141271,55052,Guilt,1379374905 +141271,55052,imagination,1379374838 +141271,55276,fixer,1379823552 +141271,55276,George Clooney,1379823548 +141271,58998,Jonah Hill,1380159115 +141271,58998,Mila Kunis,1380159084 +141271,58998,Russell Brand,1380159103 +141271,60684,alternate reality,1380471769 +141271,60684,Jackie Earle Haley,1380471753 +141271,61024,bromantic,1379162208 +141271,61024,Danny McBride,1379162351 +141271,64575,1960s,1380346365 +141271,64575,Amy Adams,1380346362 +141271,64575,Catholicism,1380346373 +141271,64575,dialogue driven,1380346381 +141271,64575,Meryl Streep,1380346387 +141271,64575,Philip Seymour Hoffman,1380346391 +141271,66203,casting,1251593683 +141271,68237,artificial intelligence,1379625711 +141271,68237,depressing,1379625718 +141271,68237,great soundtrack,1379625724 +141271,68237,moon,1379641695 +141271,68237,psychological,1379646355 +141271,68237,Sam Rockwell,1379646270 +141271,68237,twist ending,1379646385 +141271,69278,creative,1379165464 +141271,69278,Danny McBride,1379165325 +141271,69278,hillarious,1379165399 +141271,69278,Will Ferrell,1379165307 +141271,78574,Children Raising Children,1381022558 +141271,78574,death,1381022523 +141271,78574,drugs,1381022549 +141271,78574,Jennifer Lawrence,1381022514 +141271,78574,music,1381022616 +141271,78574,neighbors,1381022570 +141271,78574,Poverty,1381022498 +141271,78574,realism,1381022580 +141271,79242,Annette Bening,1379388974 +141271,79242,intelligent,1379388939 +141271,86548,1930s,1380854566 +141271,86548,animals,1380854633 +141271,86548,Christoph Waltz,1380854583 +141271,86548,Shallow romance,1380854611 +141271,86548,trains,1380854620 +141271,96610,memory,1378003988 +141271,96610,organized crime,1378003996 +141271,96610,Piper Perabo,1378003875 +141271,96610,sci-fi,1378003765 +141271,96610,stylistic,1378003976 +141271,96610,tense,1378003787 +141271,96610,violent,1378003759 +141271,96610,visually appealing,1378003748 +141271,97858,australian,1425350863 +141271,97858,chaos,1375578727 +141271,97858,colorful,1425350863 +141271,97858,colors,1375578737 +141271,97858,quirky,1425350863 +141271,97858,singing,1375578788 +141271,97921,football,1379762788 +141271,97921,mental illness,1379762840 +141271,97921,Philadelphia,1379762817 +141271,97921,romance,1379762827 +141271,98961,assassination,1377640572 +141271,98961,boring to death,1377640584 +141271,98961,complex morality,1377640506 +141271,98961,spec ops,1377640547 +141271,99145,Ewan McGregor,1379641809 +141271,99145,Naomi Watts,1379641812 +141271,99415,Billy Crystal,1376277817 +141271,99415,childish humor,1376277840 +141271,100163,ninja witches,1375579020 +141271,100163,trolls,1375578988 +141271,100383,drugs,1374461709 +141271,100383,psychology,1374461706 +141271,100383,twist ending,1374461697 +141271,101025,audience intelligence underestimated,1376133512 +141271,101025,Ewan McGregor,1376133330 +141271,101025,giants,1376133356 +141271,101025,romance,1376133347 +141271,101025,wholesome,1376133459 +141271,101895,Harrison Ford,1378344205 +141271,102194,coming of age,1378087339 +141271,102194,Matthew McConaughey,1378087421 +141271,102194,pace,1378087321 +141271,102194,supporting characters,1378087513 +141271,102194,Tye Sheridan,1378087386 +141271,103269,Grit,1420085064 +141271,103269,gritty,1424576478 +141271,103269,heart warming,1424576478 +141271,103269,original,1424576478 +141271,103269,Sap,1420085088 +141271,103269,Tear jerker,1420085068 +141271,103319,McDonalds,1375670319 +141271,104303,Ashton Kutcher,1376868382 +141271,117887,funny,1439866271 +141277,1298,animation,1187341194 +141277,1298,music,1187341194 +141277,1298,trippy,1187341194 +141277,2951,spaghetti western,1187341158 +141277,2951,standoff,1187341158 +141277,6373,comedy,1187341061 +141277,6373,god,1187341024 +141277,6373,news,1187341061 +141277,6373,religion,1187341061 +141284,90127,bad cop,1422821283 +141284,90127,josé coronado,1422821283 +141284,90127,spanish,1422821283 +141284,102675,cancer,1421451929 +141284,102675,disturbing,1421451929 +141284,102675,ice-cream,1421451929 +141305,260,classic,1432515275 +141305,260,sci-fi,1432515285 +141323,1653,ciencia-ficción,1428397433 +141323,1653,Película de culto,1428397489 +141327,1387,music,1263802258 +141327,6299,birds,1275407170 +141327,6299,science,1275408471 +141327,45950,powerpoint,1240846099 +141327,69604,Evan Rachel Wood,1260910442 +141327,69604,Larry David,1260910444 +141327,69604,Patricia Clarkson,1260910458 +141327,74573,brittany snow,1385956267 +141327,74573,Lee Toland Krieger,1385956260 +141327,74573,soundtrack,1385956277 +141327,78039,great performances,1361897798 +141327,78039,marriage,1361897790 +141327,78039,Michelle Williams,1361897770 +141327,78039,realism,1361897779 +141327,78039,Ryan Gosling,1361897773 +141327,79572,childrens,1281561462 +141327,79572,lighthearted,1281561464 +141327,79572,Portland,1281561480 +141327,91784,dialogue,1384928605 +141327,91784,ending,1384928635 +141327,91784,Los Angeles,1384928646 +141327,91784,multiple storylines,1384928615 +141327,103801,friendship,1390720162 +141327,103801,relationships,1390720159 +141327,103801,woman - man friendship,1390720166 +141330,6535,Sickening,1138661279 +141349,48043,artistic,1203786277 +141349,48043,photography - simply excellent movie!,1203786306 +141349,56757,disappointing,1203786207 +141361,260,classic sci-fi,1438223829 +141361,260,futuristic,1438223843 +141363,6539,Johnny Depp,1213205593 +141363,55820,great acting,1219347104 +141363,55820,R,1219347094 +141363,64957,Brad Pitt,1244196908 +141363,64957,Cate Blanchett,1244196915 +141363,64957,drama,1244196919 +141363,64957,sad,1244196930 +141401,260,"stupid,bad science fiction",1436859616 +141401,356,brilliant,1436860721 +141401,356,inspiring,1436860721 +141401,356,touching,1436860721 +141437,296,Quentin Tarantino,1442585827 +141437,2959,twist ending,1442585692 +141437,68954,Pixar,1442585660 +141437,79132,Christopher Nolan,1442585997 +141437,79132,complicated,1442585992 +141437,79132,Leonardo DiCaprio,1442585987 +141437,79132,mindfuck,1442586015 +141437,79132,thought-provoking,1442585985 +141437,79132,twist ending,1442585995 +141437,99114,Quentin Tarantino,1442585784 +141456,91529,Batman,1451139488 +141456,99114,Great performances,1451139508 +141456,99114,Quentin Tarantino,1451139498 +141462,430,teen,1305342986 +141462,2113,stephen king,1302291663 +141462,2195,Norm MacDonald,1302510245 +141462,2806,teen,1305342922 +141462,3017,anthology,1302291480 +141462,3017,stephen king,1302291418 +141462,3709,stephen king,1302291609 +141462,3757,amicus,1303155060 +141462,3757,anthology,1303155053 +141462,4137,teen,1305343138 +141462,5433,Stephen King,1302290944 +141462,6976,amicus,1303155094 +141462,6976,anthology,1303155099 +141462,8626,amicus,1303155171 +141462,8626,anthology,1303155175 +141462,8839,stephen king,1302291633 +141462,26726,John Hughes,1305343203 +141462,54256,future cult classic,1302510082 +141462,70046,amicus,1303155131 +141462,70046,anthology,1303155125 +141462,70946,cult film,1302129648 +141462,70946,Funny as hell,1302129654 +141462,71248,Kristen Wiig,1302510322 +141462,77667,Kristen Wiig,1302510152 +141462,80736,Shelved,1302683203 +141486,2285,Public School,1226646580 +141496,318,Classic,1431546618 +141496,356,Classic,1431546632 +141496,356,oscar,1431545964 +141496,356,tom hanks,1431545964 +141496,3996,Self disipline,1431546702 +141496,109487,Si-Fi,1431546644 +141510,260,space adventure,1440523735 +141510,260,space epic,1440523741 +141513,596,Classic,1332027396 +141513,661,Roald Dahl,1332027832 +141513,837,Roald Dahl,1332028162 +141513,1028,Classic,1332027571 +141513,1088,classic,1332029058 +141513,1088,teen,1332029058 +141513,1097,Classic,1332026994 +141513,1150,based on a book,1332025687 +141513,1270,time travel,1332029343 +141513,1517,Mike Myers,1332029401 +141513,1721,Leonardo DiCaprio,1332029430 +141513,2012,Michael J. Fox,1332029521 +141513,2232,based around one thing,1332032861 +141513,2232,stuck,1332032861 +141513,2424,Meg Ryan,1332028479 +141513,2581,Drew Barrymore,1332031451 +141513,2683,Mike Myers,1332029498 +141513,3825,teen,1332029192 +141513,4447,Reese Witherspoon,1332031380 +141513,4700,based on a book,1332029082 +141513,4973,Foreign film,1332029147 +141513,5989,Leonardo DiCaprio,1332026377 +141513,6281,based around one item,1332031975 +141513,6281,stuck,1332032036 +141513,30793,Roald Dahl,1332027291 +141513,39183,Heath Ledger,1332031633 +141513,41571,Foreign themes,1332032728 +141513,45447,religion,1332028505 +141513,45720,Anne Hathaway,1332031268 +141513,47610,magic,1332026523 +141513,59725,based on tv series,1332031472 +141513,78088,based around one item,1332032081 +141513,78088,stuck,1332032082 +141513,80846,based around one theme,1332032212 +141513,80846,stuck,1332032211 +141513,87232,sci fi,1332026749 +141513,88744,Animals,1332029669 +141521,260,Science Fiction,1444423563 +141524,593,good acting,1431539320 +141524,593,psychothriller,1431539320 +141524,593,unsettling,1431539320 +141524,2329,edward norton,1431361080 +141524,2329,great acting,1431361092 +141524,2329,powerful ending,1431361071 +141524,2329,thought-provoking,1431361066 +141524,2542,Guy Ritchie,1431376940 +141524,2542,multiple storylines,1431376954 +141524,2542,Unique,1431376946 +141524,2997,mindfuck,1431864619 +141524,2997,quirky,1431864603 +141524,8874,black comedy,1431361257 +141524,8874,british comedy,1431361261 +141524,8874,Nick Frost,1431361269 +141524,8874,Simon Pegg,1431361273 +141524,8874,zombies,1431361255 +141524,51255,black comedy,1431361302 +141524,51255,british comedy,1431361304 +141524,51255,Simon Pegg,1431361298 +141524,64614,culture clash,1431361139 +141532,30803,philosophycal,1187729428 +141544,413,adam sandler,1187503706 +141544,413,Brendan Fraser,1187503706 +141544,413,music,1187503655 +141544,413,rock,1187503655 +141544,6373,comedy,1187503654 +141544,6373,god,1187503654 +141544,6373,jim carey,1187503654 +141560,40,disk,1145997692 +141560,101,to-rent,1145997649 +141560,337,VHS,1145997747 +141560,474,to-rent,1145997700 +141560,529,disk,1145997791 +141560,720,to-rent,1145997542 +141560,1079,to-buy,1145997471 +141560,1148,to-rent,1145997549 +141560,1199,to-buy,1145997458 +141560,1955,spindle,1145997771 +141560,2009,to-rent,1145997660 +141560,2150,spindle,1145997529 +141560,2336,to-rent,1145997852 +141560,2883,to-rent,1145997635 +141560,3471,to-rent,1145997844 +141560,4116,to-rent,1145997707 +141560,4871,to-rent,1145997622 +141560,4888,to-rent,1145997682 +141560,5453,disk,1145997595 +141560,5947,disk,1145997588 +141560,5992,to-rent,1145997712 +141560,6436,disk,1145997678 +141560,6442,disk,1145997858 +141560,6618,disk,1145997716 +141560,6662,to-rent,1145997865 +141560,6753,to-rent,1145997507 +141560,7160,disk,1145997795 +141560,7177,disk,1145997732 +141560,7365,disk,1145997672 +141560,8121,disk,1145997570 +141560,8866,to-rent,1145997562 +141560,8914,disk,1145997800 +141560,8958,disk,1145997755 +141560,8983,disk,1145997785 +141560,27878,to-rent,1145997815 +141560,30812,spindle,1145997811 +141560,31225,to-rent,1145997643 +141560,33639,to-rent,1145997805 +141560,37475,to-rent,1145997493 +141560,37729,to-rent,1145997686 +141560,37739,to-rent,1145997500 +141560,37855,to-rent,1145997614 +141560,37857,to-rent,1145997607 +141560,38061,to-rent,1145997762 +141560,40952,to-rent,1145997583 +141560,41863,to-rent,1145997512 +141560,43708,to-rent,1145997628 +141560,44191,to-rent,1145997667 +141560,44195,to-rent,1145997555 +141560,44199,to-rent,1145997738 +141586,1721,sea,1408049660 +141637,99305,funny,1424638588 +141637,99305,satirical,1424638588 +141637,99305,witty,1424638588 +141652,3983,slow,1175278079 +141652,7153,homoerotic hobbit-on-hobbit action,1175278037 +141684,260,sci-fi,1435915410 +141717,11,Aaron Sorkin,1335786745 +141717,900,Gene Kelly,1335786815 +141717,900,Gershwin,1335786816 +141717,900,Oscar Levant,1335786816 +141717,969,Humphrey Bogart,1335786193 +141717,969,John Huston,1335786193 +141717,969,Katharine Hepburn,1335786193 +141717,1032,Disney,1335786458 +141717,4639,Billy Crystal,1335786668 +141717,4639,Catherine Zeta-Jones,1335786667 +141717,4639,Hank Azaria,1335786667 +141717,7121,Katharine Hepburn,1335786024 +141717,7121,Spencer Tracy,1335786024 +141717,7831,Myrna Loy,1335787120 +141717,7831,William Powell,1335787120 +141717,7834,Myrna Loy,1335786246 +141717,7834,William Powell,1335786246 +141717,78469,Bradley Cooper,1335785861 +141717,78469,Liam Neeson,1335785871 +141734,95856,funny,1434291122 +141734,95856,pixar,1434291122 +141734,95856,snowman,1434291122 +141739,260,#nice,1441719258 +141739,260,good to watch,1441719281 +141755,47,Morgan Freeman,1277621371 +141755,47,philosophical,1277621377 +141755,47,psychology,1277621382 +141755,47,serial killer,1277621384 +141755,47,twist ending,1277621381 +141755,4226,amnesia,1277621335 +141755,4226,black and white,1277621337 +141755,4226,dreamlike,1277621342 +141755,4226,Mindfuck,1277621343 +141755,4226,psychology,1277621326 +141755,4226,twist ending,1277621331 +141771,260,good science fiction,1436847856 +141771,260,joseph campbell's study of mythology influenced,1436847845 +141776,55442,conflict with society,1434659856 +141776,55442,exotic culture,1434659856 +141776,55442,real-life cartoon,1434659856 +141814,4643,remake,1139341183 +141821,2729,vladimir nabokov,1339739736 +141821,55814,Julian Schnabel,1339740164 +141861,101,seen more than once,1153154217 +141861,4016,llama face!,1153155555 +141878,260,classic,1435177785 +141878,260,fantasy,1435177785 +141878,260,i have a bad feeling about this,1435177785 +141878,296,anthology,1435824334 +141878,296,dialogue,1435824334 +141878,296,philosophical,1435824334 +141878,356,box of chocolate,1436540156 +141878,356,life story,1436540156 +141878,356,terminal illness,1436540156 +141878,541,artificial intelligence,1435226177 +141878,541,cyberpunk,1435226174 +141878,541,neo-noir,1435226204 +141878,541,Philip K. Dick,1435226179 +141878,593,cannibalism,1437303117 +141878,593,hannibal lecter,1437303117 +141878,593,psychothriller,1437303117 +141878,741,artificial intelligence,1435225965 +141878,741,cyberpunk,1435225940 +141878,741,cyborgs,1435225948 +141878,741,sci-fi,1435225970 +141878,741,visually appealing,1435225963 +141878,1274,cyberpunk,1435226023 +141878,1274,post-apocalyptic,1435226029 +141878,1274,visually stunning,1435226031 +141878,2164,so bad it's good,1437304338 +141878,2164,Worst movie ever,1437304283 +141878,2571,cyberpunk,1435226215 +141878,2571,post-apocalyptic,1435226224 +141878,2571,virtual reality,1435226213 +141878,3535,dark comedy,1435257383 +141878,6857,pseudo historical,1435227448 +141878,8157,alternate history,1435226063 +141878,8157,awesome soundtrack,1435226133 +141878,8157,capital police,1435226087 +141878,8607,anime,1437305322 +141878,8607,christmas,1437305372 +141878,8607,cross dressing,1437305404 +141878,8607,drama,1437305411 +141878,8607,father daughter relationship,1437305318 +141878,8607,homeless,1437305395 +141878,8607,Satoshi Kon,1437305320 +141878,8874,black comedy,1438326125 +141878,8874,Simon Pegg,1438326129 +141878,27728,cyberpunk,1435225995 +141878,32554,cautionary tale,1437250805 +141878,32554,dark humor,1437251083 +141878,32554,Kubrick-esque,1437251080 +141878,32554,soundtrack,1437251077 +141878,32554,Steampunk,1437250777 +141878,51119,ancient japan,1435228500 +141878,51119,Anime,1435228528 +141878,51119,classic,1435228440 +141878,51119,east and west,1435228446 +141878,51119,epic,1435228451 +141878,51119,Monkey Punch,1435228478 +141878,51119,ninja,1435228520 +141878,51119,old west,1435228504 +141878,51119,pseudo historical,1435228460 +141878,71482,Anime adaption,1435229383 +141878,71482,perverted,1435229402 +141878,71482,songs,1435229397 +141878,77709,air combat,1437304117 +141878,77709,alternative history,1437304145 +141878,77709,angst,1437304119 +141878,77709,cloning,1437303997 +141878,77709,dogfights,1437304068 +141878,77709,dystopia,1437304005 +141878,77709,genetic modification,1437304158 +141878,77709,Kenji Kawai,1437303985 +141878,77709,Kildren,1437303987 +141878,77709,Mamoru Oshii,1437303978 +141878,77709,sci-fi,1437304126 +141878,77709,soundtrack,1437303966 +141878,81132,bizarre,1435825043 +141878,81132,mindfuck,1435825075 +141878,81132,slow paced,1435825100 +141878,81132,spectators,1435825060 +141878,81132,surreal,1435825047 +141878,89753,atmosphere,1435394261 +141878,89753,Beautifully shot,1435394259 +141878,89753,Gary Oldman,1435394254 +141878,98607,2D Animation,1435227050 +141878,98607,Handdrawn,1435227045 +141878,98607,high octane,1435226966 +141878,98607,Madhouse,1435227027 +141878,98607,stylised,1435227071 +141878,98607,Takeshi Koike,1435227032 +141878,100729,sci-fi,1437305641 +141878,100729,so bad it's good,1437305636 +141878,109633,Animation,1437305241 +141878,109633,Anime,1437305239 +141878,109633,beautiful,1437305251 +141878,109633,drama,1437305270 +141878,109633,Romance,1437305245 +141878,109633,shoemaker,1437305274 +141878,109633,short,1437305266 +141878,109633,teacher student relationship,1437305281 +141878,110039,Animation,1437305155 +141878,110039,Anime,1437305151 +141878,110039,CG,1437305188 +141878,110039,CGI,1437305190 +141878,110039,Remake,1437305161 +141878,110039,Shinji Aramaki,1437305174 +141878,110039,Space Opera,1437305181 +141878,110039,visually appealing,1437305146 +141878,120466,artificial intelligence,1439845275 +141878,120466,cliche,1439845327 +141878,120466,cyberpunk,1439845352 +141878,120466,die antwoord,1439845285 +141878,120466,Funny,1439845289 +141878,120466,Hugh Jackman,1439845312 +141878,120466,product placement,1439845307 +141878,120466,Touching,1439845301 +141878,135846,Redline prequel,1435228385 +141878,135846,Sci-Fi,1435228360 +141878,135846,Screwball,1435228369 +141878,135846,Space,1435228352 +141878,135846,Takeshi Koike,1435228393 +141878,135848,Anime,1435228673 +141878,135848,assassin,1435228858 +141878,135848,classic,1435228676 +141878,135848,contract killer,1435228868 +141878,135848,cult,1435228720 +141878,135848,exploding bullets,1435228920 +141878,135848,rape,1435228707 +141878,135848,revenge,1435228705 +141878,135848,sex,1435228694 +141878,135848,violence,1435228692 +141878,135850,Humor,1435229177 +141878,135850,Kamurocho,1435229158 +141878,135850,Takashi Miike,1435229163 +141878,135850,the Dragon,1435229217 +141878,135850,Tokyo,1435229150 +141878,135850,video game adaption,1435229143 +141878,135850,Violence,1435229175 +141878,135850,Yakuza,1435229078 +141878,136024,action,1435527180 +141878,136024,anime,1435527173 +141878,136024,assassin,1435527269 +141878,136024,CG,1435527252 +141878,136024,classic,1435527178 +141878,136024,cult,1435527175 +141878,136024,early CGI,1435527237 +141878,136024,gunfights,1435527183 +141878,136024,heavy shadows,1435527260 +141878,136024,mafia,1435527273 +141878,136024,manga,1435527191 +141878,136024,nudity,1435527200 +141878,136024,seinen,1435527214 +141878,136024,sex,1435527205 +141878,136024,stylish,1435527263 +141878,136024,violence,1435527208 +141878,139130,Action,1437304495 +141878,139130,Adventure,1437304498 +141878,139130,Animation,1437304493 +141878,139130,Anime,1437304490 +141878,139130,blood,1437304516 +141878,139130,gore,1437304564 +141878,139130,gunfight,1437304614 +141878,139130,hip-hop,1437304620 +141878,139130,mature,1437304525 +141878,139130,ninja,1437304584 +141878,139130,revenge,1437304520 +141878,139130,Samuel L. Jackson,1437304511 +141878,139130,samurai,1437304577 +141878,139130,silly,1437304530 +141878,139130,soundtrack,1437304617 +141878,139130,swordplay,1437304575 +141878,139130,violence,1437304563 +141878,139132,Animation,1437305063 +141878,139132,Anime,1437305060 +141878,139132,direct to video,1437305079 +141878,139132,nudity,1437305110 +141878,139132,OVA,1437305070 +141878,139132,Satoshi Urushihara,1437305058 +141987,47,atmospheric,1394128823 +141987,47,Brad Pitt,1394128820 +141987,47,drama,1394128827 +141987,47,horror,1394128831 +141987,47,Kevin Spacey,1394128842 +141987,47,Morgan Freeman,1394128825 +141987,47,mystery,1394128843 +141987,47,philosophical,1394128838 +141987,47,psychological,1394128834 +141987,47,psychology,1394128834 +141987,47,serial killer,1394128837 +141987,47,twist ending,1394128832 +141987,111,atmospheric,1394138712 +141987,111,dark,1394138758 +141987,111,Golden Palm,1394138737 +141987,111,imdb top 250,1394138733 +141987,111,loneliness,1394138721 +141987,111,Martin Scorsese,1394138719 +141987,111,mental illness,1394138756 +141987,111,psychology,1394138731 +141987,111,Robert De Niro,1394138710 +141987,111,social commentary,1394138729 +141987,293,crime,1394138211 +141987,293,drama,1394138250 +141987,293,emotional,1394138243 +141987,293,friendship,1394138181 +141987,293,Jean Reno,1394138179 +141987,293,Natalie Portman,1394138246 +141987,293,police corruption,1394138256 +141987,296,action,1394128710 +141987,296,atmospheric,1394128712 +141987,296,Black comedy,1394128690 +141987,296,Bruce Willis,1394128691 +141987,296,dark comedy,1394128689 +141987,296,drugs,1394128697 +141987,296,Mafia,1394128700 +141987,296,multiple storylines,1394128685 +141987,296,nonlinear,1394128696 +141987,296,organized crime,1394128706 +141987,296,Quentin Tarantino,1394128682 +141987,296,Samuel L. Jackson,1394128682 +141987,306,atmospheric,1394128730 +141987,306,Best of Rotten Tomatoes: All Time,1394128731 +141987,306,coincidences,1394128814 +141987,306,Criterion,1394128795 +141987,306,enigmatic,1394128759 +141987,306,French,1394128741 +141987,306,Krzysztof Kieslowski,1394128737 +141987,306,lyrical,1394128763 +141987,306,meditative,1394128755 +141987,306,melancholy,1394128749 +141987,306,models,1394128773 +141987,367,based on a comic,1394139031 +141987,367,hilarious,1394139039 +141987,367,magic,1394139051 +141987,507,absent fathers,1394127388 +141987,507,Clint Eastwood,1394127370 +141987,507,father figure,1394127391 +141987,507,kidnapping,1394127375 +141987,1201,American Civil War,1394127762 +141987,1201,atmospheric,1394127763 +141987,1201,Civil War,1394127769 +141987,1201,classic,1394127771 +141987,1201,Clint Eastwood,1394127760 +141987,1201,complex characters,1394127774 +141987,1201,Ennio Morricone,1394127777 +141987,1201,imdb top 250,1394127813 +141987,1201,irreverent,1394127806 +141987,1201,thought-provoking,1394127829 +141987,1201,western,1394127788 +141987,1228,AFI 100,1394139261 +141987,1228,atmospheric,1394139247 +141987,1228,beautiful,1394139247 +141987,1228,brother-brother relationship,1394139258 +141987,1228,imdb top 250,1394139251 +141987,1228,Martin Scorsese,1394139233 +141987,1228,Oscar (Best Actor),1394139234 +141987,1228,oscar (best cinematography),1394139238 +141987,1228,stylized,1394139239 +141987,1237,afterlife,1394138794 +141987,1237,atmospheric,1394138765 +141987,1237,Criterion,1394138789 +141987,1237,Death,1394138784 +141987,1237,dreamlike,1394138781 +141987,1237,existentialism,1394138771 +141987,1237,imdb top 250,1394138776 +141987,1237,reflective,1394138799 +141987,1237,religion,1394138774 +141987,1237,tense,1394138775 +141987,1258,atmospheric,1394128240 +141987,1258,disturbing,1394128293 +141987,1258,dreamlike,1394128243 +141987,1258,ghosts,1394128242 +141987,1258,imdb top 250,1394128262 +141987,1258,Jack Nicholson,1394128236 +141987,1258,Stanley Kubrick,1394128248 +141987,1258,suspense,1394128267 +141987,1258,visually appealing,1394128287 +141987,1266,AFI 100,1394128880 +141987,1266,Clint Eastwood,1394128527 +141987,1266,great acting,1394128934 +141987,1266,gritty,1394128951 +141987,1266,hitman,1394128932 +141987,1266,imdb top 250,1394128953 +141987,1266,lyrical,1394128952 +141987,1266,Morgan Freeman,1394128929 +141987,1266,oscar (best cinematography),1394128925 +141987,1266,Oscar (Best Directing),1394128960 +141987,1266,Oscar (Best Picture),1394128914 +141987,1266,prostitution,1394128912 +141987,1266,revenge,1394128903 +141987,1266,sexuality,1394128907 +141987,1704,feel-good,1394139467 +141987,1704,imdb top 250,1394139472 +141987,1704,psychology,1394139466 +141987,1921,atmospheric,1394128481 +141987,1921,black and white,1394128479 +141987,1921,disturbing,1394128490 +141987,1921,enigmatic,1394128481 +141987,1921,existentialism,1394128585 +141987,1921,god,1394128674 +141987,1921,life,1394128674 +141987,1921,mathematics,1394128495 +141987,1921,mental illness,1394128588 +141987,1921,music,1394128581 +141987,1921,New York City,1394128592 +141987,1921,notable soundtrack,1394128591 +141987,1921,philosophy,1394128626 +141987,1921,psychology,1394128580 +141987,1921,religion,1394128600 +141987,1921,surreal,1394128600 +141987,2762,Atmospheric,1394128186 +141987,2762,Bruce Willis,1394128173 +141987,2762,enigmatic,1394128210 +141987,2762,excellent script,1394128209 +141987,2762,ghosts,1394128189 +141987,2762,great ending,1394128180 +141987,2762,horror,1394128176 +141987,2762,imdb top 250,1394128195 +141987,2762,psychology,1394128199 +141987,2762,suspense,1394128205 +141987,2762,twist ending,1394128200 +141987,2959,anarchy,1394139207 +141987,2959,anti-corporation,1394139207 +141987,2959,atmospheric,1394128338 +141987,2959,Brad Pitt,1394128331 +141987,2959,dark comedy,1394128347 +141987,2959,disturbing,1394128354 +141987,2959,Edward Norton,1394128330 +141987,2959,imdb top 250,1394128347 +141987,2959,mental illness,1394128359 +141987,2959,philosophy,1394128337 +141987,2959,psychological,1394128366 +141987,2959,psychology,1394128361 +141987,2959,social commentary,1394139168 +141987,2959,surreal,1394128341 +141987,2959,twist ending,1394128341 +141987,2959,violence,1394128342 +141987,3198,book was better,1394129024 +141987,3992,has soul,1394138164 +141987,3992,social commentary,1394138158 +141987,3992,teenager,1394138153 +141987,4720,alternate reality,1394129064 +141987,4720,atmospheric,1394129061 +141987,4720,beautiful,1394129067 +141987,4720,Drama,1394129072 +141987,4720,ghosts,1394129072 +141987,4720,haunted house,1394129077 +141987,4720,Horror,1394129083 +141987,4720,religion,1394129083 +141987,4720,seen more than once,1394129089 +141987,4848,Atmospheric,1394129094 +141987,4848,dark,1394138481 +141987,4848,David Lynch,1394138440 +141987,4848,disturbing,1394129249 +141987,4848,dreamlike,1394138465 +141987,4848,mystery,1394138493 +141987,4848,nonlinear,1394138491 +141987,4848,sexual,1394138452 +141987,4848,stylized,1394138458 +141987,4848,surreal,1394138461 +141987,4848,surrealism,1394138459 +141987,4848,twist ending,1394138486 +141987,4848,visually appealing,1394138485 +141987,5388,Al Pacino,1394139368 +141987,5388,atmospheric,1394139371 +141987,5388,Christopher Nolan,1394139370 +141987,5388,humanity,1394139394 +141987,5388,moral ambiguity,1394139380 +141987,5388,psychological,1394139387 +141987,5388,psychology,1394139379 +141987,5388,thought-provoking,1394139377 +141987,5679,horror,1394139269 +141987,5679,mystery,1394139278 +141987,5679,scary,1394139274 +141987,5679,zombies,1394139270 +141987,5995,beautiful,1394128313 +141987,5995,classical music,1394128312 +141987,5995,Golden Palm,1394128314 +141987,5995,historical,1394128305 +141987,5995,imdb top 250,1394128310 +141987,5995,Oscar Winner,1394128322 +141987,5995,Roman Polanski,1394128318 +141987,5995,true story,1394128305 +141987,5995,World War II,1394128304 +141987,6539,action,1394138908 +141987,6539,adventure,1394138908 +141987,6539,imdb top 250,1394138926 +141987,6539,Johnny Depp,1394138904 +141987,6539,magic,1394138910 +141987,6539,revenge,1394138919 +141987,6539,Suspense,1394138915 +141987,6870,Clint Eastwood,1394139121 +141987,6870,family,1394139131 +141987,6870,imdb top 250,1394139128 +141987,6870,mystery,1394139141 +141987,6870,Oscar (Best Actor),1394139129 +141987,6870,powerful ending,1394139150 +141987,6870,revenge,1394139133 +141987,6870,Sean Penn,1394139134 +141987,6870,twist ending,1394139125 +141987,6870,working class,1394139136 +141987,8861,Post apocalyptic,1394138878 +141987,8861,zombies,1394138882 +141987,8957,clever,1394138823 +141987,8957,gothic,1394380659 +141987,8957,Horror,1394138838 +141987,8957,mindfuck,1394138818 +141987,8957,psychological,1394138833 +141987,8957,surprise ending,1394138813 +141987,8957,twist ending,1394138813 +141987,27803,death,1394127266 +141987,27803,emotional,1394127247 +141987,27803,euthanasia,1394127252 +141987,27803,FIGHTING THE SYSTEM,1394127282 +141987,27803,LIVING WITH DISABILITY,1394127254 +141987,27803,meditative,1394127281 +141987,27803,Oscar (Best Foreign Language Film),1394127289 +141987,27803,SUICIDE,1394127273 +141987,27803,touching,1394127295 +141987,27803,true story,1394127271 +141987,30707,Bittersweet,1394138313 +141987,30707,boxing,1394138309 +141987,30707,Clint Eastwood,1394138318 +141987,30707,drama,1394138348 +141987,30707,emotional,1394138394 +141987,30707,gritty,1394138346 +141987,30707,imdb top 250,1394138344 +141987,30707,Morgan Freeman,1394138311 +141987,30707,Oscar (Best Directing),1394138362 +141987,30707,Oscar (Best Picture),1394138315 +141987,30707,Oscar (Best Supporting Actor),1394138365 +141987,30707,poverty,1394138371 +141987,30707,social commentary,1394138339 +141987,30707,thought-provoking,1394138341 +141987,32587,Action,1394128864 +141987,32587,atmospheric,1394128539 +141987,32587,black comedy,1394128542 +141987,32587,Bruce Willis,1394128537 +141987,32587,imdb top 250,1394128537 +141987,32587,Quentin Tarantino,1394128861 +141987,36529,anti-war,1394139113 +141987,36529,corruption,1394139081 +141987,36529,dark comedy,1394139067 +141987,36529,organized crime,1394139086 +141987,36529,political,1394139069 +141987,36529,politics,1394139082 +141987,41997,politics,1394138977 +141987,41997,religion,1394138987 +141987,41997,revenge,1394138993 +141987,41997,Steven Spielberg,1394138994 +141987,41997,thought-provoking,1394138984 +141987,44191,based on a book,1394127232 +141987,44191,comic book,1394127028 +141987,44191,dark,1394127224 +141987,44191,dystopia,1394127185 +141987,44191,England,1394127031 +141987,44191,imdb top 250,1394127222 +141987,44191,philosophical,1394127231 +141987,44191,philosophy,1394127190 +141987,44191,politics,1394127216 +141987,44191,revenge,1394127216 +141987,44191,sci-fi,1394127197 +141987,44191,thought-provoking,1394127002 +141987,44555,1980s,1394127443 +141987,44555,dictatorship,1394127561 +141987,44555,drama,1394127468 +141987,44555,dystopia,1394127561 +141987,44555,East Germany,1394127425 +141987,44555,FIGHTING THE SYSTEM,1394127561 +141987,44555,imdb top 250,1394127457 +141987,44555,psychology,1394127447 +141987,44555,spying,1394127452 +141987,44555,Stasi,1394127426 +141987,44555,suspense,1394127430 +141987,45722,Adventure,1394139215 +141987,45722,Johnny Depp,1394139215 +141987,46578,dark comedy,1394139358 +141987,46578,dysfunctional family,1394139362 +141987,46578,imdb top 250,1394139332 +141987,46578,independent film,1394139333 +141987,46578,inspirational,1394139349 +141987,46578,satire,1394139348 +141987,46578,social commentary,1394139355 +141987,46578,twist ending,1394139337 +141987,51662,artistic,1394139523 +141987,51662,atmospheric,1394139516 +141987,51662,historically inaccurate,1394139590 +141987,51662,lies,1394139590 +141987,51662,stylized,1394139516 +141987,55820,coen brothers,1394138947 +141987,55820,great acting,1394138966 +141987,55820,imdb top 250,1394138941 +141987,55820,Oscar (Best Picture),1394138940 +141987,55820,plot twist,1394138950 +141987,55820,suspense,1394138954 +141987,56757,cannibalism,1395338354 +141987,56757,Johnny Depp,1395338356 +141987,56757,violence,1395338368 +141987,56757,violent,1395338373 +141987,60069,artificial intelligence,1394128104 +141987,60069,dystopia,1394128075 +141987,60069,emotional,1394128098 +141987,60069,Future,1394128083 +141987,60069,imdb top 250,1394128077 +141987,60069,inspirational,1394128103 +141987,60069,pixar,1394128096 +141987,60069,robots,1394128115 +141987,60069,romance,1394128085 +141987,60069,Sci-Fi,1394128091 +141987,60069,space,1394128089 +141987,60069,thought-provoking,1394128162 +141987,64614,Clint Eastwood,1394380683 +141987,64614,culture clash,1394380701 +141987,64614,friendship,1394380685 +141987,64614,gangs,1394380704 +141987,64614,heartwarming,1394380714 +141987,64614,imdb top 250,1394380695 +141987,64614,life & death,1394380696 +141987,64614,Martyr (non religious),1394380712 +141987,64614,revenge,1394380693 +141987,68157,action,1394128388 +141987,68157,assassination,1394128387 +141987,68157,Brad Pitt,1394128391 +141987,68157,dark comedy,1394128384 +141987,68157,great soundtrack,1394128404 +141987,68157,IMDB Top 250,1394128401 +141987,68157,Quentin Tarantino,1394128415 +141987,68157,revenge,1394128445 +141987,68157,satire,1394128457 +141987,68157,tense,1394128472 +141987,68157,visually appealing,1394128394 +141987,68157,war,1394128422 +141987,68157,World War II,1394128392 +141987,78344,god,1435080205 +141987,78344,Iran,1395338630 +141987,78344,iranian,1435080205 +141987,78344,Middle East,1395338660 +141987,78344,Persian,1395338648 +141987,78344,Persian Cinema,1395338640 +141987,78344,poverty,1435080205 +141987,79132,alternate reality,1394138275 +141987,79132,drama,1394138277 +141987,79132,dreamlike,1394138277 +141987,79132,great soundtrack,1394138408 +141987,79132,Leonardo DiCaprio,1394138282 +141987,79132,philosophy,1394138422 +141987,79132,psychological,1394138298 +141987,79132,psychology,1394138297 +141987,79132,surreal,1394138284 +141987,79132,suspense,1394138426 +141987,79132,thought-provoking,1394138294 +141987,79132,twist ending,1394138296 +141987,79132,visually appealing,1394138290 +141987,81591,atmospheric,1394127880 +141987,81591,classical music,1394127885 +141987,81591,dance,1394127891 +141987,81591,dark,1394127892 +141987,81591,disturbing,1394127906 +141987,81591,drama,1394127950 +141987,81591,emotional,1394127916 +141987,81591,horror,1394127920 +141987,81591,mental illness,1394127947 +141987,81591,music,1394127911 +141987,81591,Natalie Portman,1394127912 +141987,81591,New York City,1394127931 +141987,81591,Oscar (Best Actress),1394127935 +141987,81591,psychology,1394127983 +141987,81591,surreal,1394127936 +141987,81591,suspense,1394127938 +141987,81591,twist ending,1394127940 +141987,81845,cinematography,1394138608 +141987,81845,complex characters,1394138604 +141987,81845,drama,1394138606 +141987,81845,emotional,1394138615 +141987,81845,friendship,1394138623 +141987,81845,Oscar (Best Picture),1394138628 +141987,81845,politics,1394138633 +141987,81845,true story,1394138629 +141987,86898,beautifully filmed,1394127589 +141987,86898,Brad Pitt,1394127637 +141987,86898,cinematography,1394127606 +141987,86898,confusing,1394127589 +141987,86898,father-son relationship,1394127732 +141987,86898,god,1394127732 +141987,86898,Golden Palm,1394127614 +141987,86898,intimate,1394127750 +141987,86898,life & death,1394127739 +141987,86898,love,1394127732 +141987,86898,meaning of life,1394126924 +141987,86898,meditative,1394127668 +141987,86898,mother-son relationship,1394127732 +141987,86898,music,1394127732 +141987,86898,pseudo-profound,1394127663 +141987,86898,Sean Penn,1394127597 +141987,86898,surreal,1394126922 +141987,86898,thought-provoking,1394126921 +141987,89759,Asghar Farhadi,1394379579 +141987,89759,courtroom drama,1394379582 +141987,89759,divorce,1394379583 +141987,89759,husband-wife relationship,1394379591 +141987,89759,open ending,1394379588 +141987,89759,Oscar,1394379594 +141987,89759,realism,1394379584 +141987,89759,social commentary,1394379585 +141987,99114,19th century,1394127157 +141987,99114,desert,1394127150 +141987,99114,drama,1394127126 +141987,99114,Leonardo DiCaprio,1394127099 +141987,99114,murder,1394127164 +141987,99114,music,1394127173 +141987,99114,Quentin Tarantino,1394127143 +141987,99114,racism,1394127133 +141987,99114,Revenge,1394127143 +141987,99114,Spaghetti Western,1394127122 +141987,99114,violence,1394127114 +141987,102753,Asghar Farhadi,1394138514 +141987,102753,Family,1394138538 +141987,102753,French,1394138516 +141987,102753,Iran,1394138530 +141987,102753,Iranian movie,1394138530 +141987,102753,Judgment,1394138546 +141987,102753,social commentary,1394138570 +141987,102753,thought-provoking,1394138570 +141987,106487,CLASS DIFFERENCES,1394139450 +141987,106487,dictatorship,1394139438 +141987,106487,dystopia,1394139407 +141987,106487,FIGHTING THE SYSTEM,1394139438 +141987,106487,gritty,1394139438 +141987,106487,visually appealing,1394139400 +141987,107579,basij militia,1423245750 +141987,107579,comedy,1423245750 +141987,107579,iran,1423245750 +141987,107579,iranian,1423245750 +141987,107579,islamic hardliners,1423245750 +141987,107579,poverty,1423245750 +141987,107579,religion,1423245750 +141987,107579,society,1423245750 +141998,3088,imaginary friend,1208773158 +142000,8132,Not Rome or Crowe,1209696757 +142012,1704,combinatorics,1442085348 +142012,3386,assassination,1442085144 +142012,5817,armenian genocide,1442085617 +142012,5817,Turkey,1442085594 +142030,260,aliens,1432902705 +142030,260,scifi,1432902724 +142049,112852,great soundtrack,1432416116 +142056,79357,Beauty,1445913648 +142056,79357,cinematography,1445913588 +142056,79357,coming of age,1445913614 +142056,79357,confusing,1445913659 +142056,79357,nonlinear,1445913567 +142056,79357,philosophy,1445913592 +142056,79357,soundtrack,1445913604 +142056,79357,thought provoking,1445913582 +142066,7834,Good,1189973095 +142079,2571,classic,1453563649 +142079,96610,plot holes,1453563786 +142080,260,blockbuster,1441987021 +142080,260,space,1441987008 +142080,260,space adventure,1441987017 +142108,296,different,1423525041 +142108,296,unique,1423525041 +142108,296,violent,1423525041 +142132,356,corny,1431769162 +142132,356,historical,1431769162 +142132,356,sincere,1431769162 +142137,3969,Sad ending,1337209622 +142151,260,cult classic,1440379022 +142151,260,Science Fiction,1440379018 +142151,1258,cult film,1440380361 +142151,1258,jack nicholson,1440380355 +142151,1258,psychological,1440380357 +142151,1258,Stanley Kubrick,1440380352 +142151,1704,genius,1440380467 +142151,1704,intellectual,1440380463 +142151,1704,mathematics,1440380466 +142151,1704,psychology,1440380470 +142151,4226,Mindfuck,1440380125 +142151,4226,nonlinear,1440380113 +142151,4226,psychology,1440380115 +142151,4226,twist ending,1440380118 +142151,4995,genius,1440380440 +142151,4995,intelligent,1440380446 +142151,4995,math,1440380438 +142151,4995,mathematics,1440380436 +142151,4995,twist ending,1440380448 +142151,48780,Christopher Nolan,1440380053 +142151,48780,complicated,1440380062 +142151,48780,Hugh Jackman,1440380072 +142151,48780,nonlinear,1440380067 +142151,48780,psychological,1440380064 +142151,48780,twist ending,1440380047 +142151,79132,alternate reality,1440380233 +142151,79132,Christopher Nolan,1440380255 +142151,79132,intellectual,1440380251 +142151,79132,mindfuck,1440380252 +142151,79132,philosophy,1440380242 +142151,79132,sci-fi,1440380239 +142151,79132,twist ending,1440380245 +142151,109487,artificial intelligence,1440379984 +142151,109487,Christopher Nolan,1440380001 +142151,109487,good science,1440379977 +142151,109487,interesting ideea,1440379991 +142151,109487,philosophical issues,1440379996 +142151,109487,physics,1440379925 +142151,109487,relativity,1440380500 +142151,109487,sci-fi,1440380008 +142151,109487,sentimental,1440379993 +142151,109487,space,1440379974 +142151,109487,time travel,1440379981 +142151,109487,time-travel,1440379968 +142179,45210,Emotional and Heroic,1146585789 +142181,48516,organized crime,1238525680 +142185,16,Mafia,1447856411 +142185,16,Martin Scorsese,1447856377 +142185,296,Quentin Tarantino,1447856351 +142185,364,animation,1447856673 +142185,364,Childhood,1447856699 +142185,364,Disney,1447856665 +142185,858,italian mafia,1447856458 +142185,858,Mafia,1447856448 +142185,1089,Quentin Tarantino,1447856254 +142185,1213,mafia,1447856393 +142185,1213,Martin Scorsese,1447856391 +142185,1221,Al Pacino,1447856512 +142185,1221,Mafia,1447856510 +142185,1345,horror,1447856751 +142185,1729,Quentin Tarantino,1447856330 +142185,1954,boxing,1447856945 +142185,1954,Sylvester Stallone,1447856942 +142185,2018,animation,1447856640 +142185,2018,Disney,1447856645 +142185,2018,sad,1447856654 +142185,4262,Al Pacino,1447856431 +142185,4262,mafia,1447856435 +142185,5464,mafia,1447856496 +142185,74458,Leonardo DiCaprio,1447857310 +142185,74458,Martin Scorsese,1447857304 +142185,86332,Marvel,1447856793 +142185,86332,superhero,1447856824 +142185,86332,The Avengers,1447856797 +142185,89745,Captain America,1447856886 +142185,89745,Hulk,1447856879 +142185,89745,Marvel,1447856869 +142185,89745,superhero,1447856865 +142185,89745,The Avengers,1447856900 +142185,89745,Thor,1447856876 +142185,89774,MMA,1447856914 +142185,90249,Fighting Robots,1447857028 +142185,90249,robots,1447857025 +142185,92176,old,1447857131 +142185,92176,olden,1447857175 +142185,99007,chick flick,1447856979 +142185,99007,comedic horror,1447856989 +142185,99007,post-apocalyptic,1447856972 +142185,99007,zombies,1447856961 +142185,134747,old,1447857205 +142185,134747,olden,1447857212 +142185,135741,old,1447857100 +142191,97,classic,1431110669 +142191,97,mathieu kassovitz,1431110669 +142191,97,vincent cassel,1431110669 +142191,260,classic,1431110235 +142191,260,must see,1431110288 +142191,97921,dance,1431110729 +142191,97921,dark humor,1431110717 +142191,97921,Robert De Niro,1431110720 +142191,97921,romance,1431110735 +142191,115210,Brad Pitt,1431111131 +142191,115210,to much gusts,1431111174 +142191,115210,World War II,1431111120 +142194,214,awful,1143936686 +142194,214,bloody,1143936699 +142194,214,gory,1143936686 +142194,214,hard to watch,1143936686 +142194,214,harrowing,1143936699 +142194,1231,cowboy,1145120362 +142194,1231,macho,1145120362 +142194,6898,british,1136039368 +142194,6898,drugs,1136039368 +142194,6898,harsh,1136039368 +142194,7060,christian,1136039301 +142194,7060,kitsch,1136039301 +142194,7060,musical,1136039301 +142194,7060,religious,1136039301 +142194,37733,bullshit rape scene,1186418397 +142194,38886,eighties,1136036612 +142194,38886,family,1136036612 +142194,38886,new york,1136036612 +142194,38886,overrated,1136036612 +142194,38886,twee,1136036612 +142194,39292,blackandwhite,1137622941 +142194,39292,censorship,1137622941 +142194,39292,communism,1137622941 +142194,39292,fifties,1137622924 +142199,260,A little childish,1441487172 +142199,260,good science fiction but a little old,1441487155 +142215,1625,atmospheric,1450708654 +142215,1625,awesome,1450708673 +142215,1625,complicated plot,1450708681 +142215,1625,David Fincher,1450708659 +142215,1625,mindfuck,1450708689 +142215,1625,Mystery,1450708655 +142215,1625,psychological,1450708687 +142215,1625,Sean Penn,1450708652 +142215,1625,suspense,1450708692 +142215,1625,twist ending,1450708695 +142215,2762,Atmospheric,1450708607 +142215,2762,eerie,1450708139 +142215,2762,excellent script,1450708142 +142215,2762,mindfuck,1450708606 +142215,2762,psychological,1450708115 +142215,2762,psychology,1450708118 +142215,2762,smart,1450708130 +142215,2762,surprise ending,1450708617 +142215,2762,thriller,1450708619 +142215,2762,touching,1450708610 +142215,2762,twist ending,1450708628 +142215,2762,unique,1450708613 +142215,2762,unpredictable,1450708622 +142215,90057,mental illness,1449525509 +142215,90057,psychology,1449525516 +142215,134130,Space,1447765737 +142227,50,fell asleep,1212249935 +142227,50,overrated,1212249926 +142227,110,don't remember,1212249776 +142227,111,disturbing,1235836176 +142227,170,computers,1235836880 +142227,180,Kevin Smith,1235835515 +142227,187,underrated,1212247894 +142227,260,sci-fi,1235836226 +142227,260,space,1235836224 +142227,293,assassination,1235836645 +142227,333,overrated,1212250194 +142227,520,don't remember,1212250342 +142227,527,overrated,1212247821 +142227,543,overrated,1212249975 +142227,589,dystopia,1235835743 +142227,858,overrated,1212248201 +142227,903,Alfred Hitchcock,1235836092 +142227,904,Alfred Hitchcock,1235835784 +142227,908,Alfred Hitchcock,1235835873 +142227,919,fantasy,1235836031 +142227,930,Alfred Hitchcock,1235836449 +142227,930,assassination,1235836453 +142227,1077,Woody Allen,1235836266 +142227,1090,Vietnam War,1235836404 +142227,1127,don't remember,1212250171 +142227,1136,don't remember,1212250237 +142227,1193,freedom,1235836444 +142227,1193,psychology,1235836438 +142227,1197,fantasy,1235836399 +142227,1198,watch again,1235835854 +142227,1210,sci-fi,1235836220 +142227,1210,space,1235836221 +142227,1219,Alfred Hitchcock,1235836378 +142227,1222,Stanley Kubrick,1235837090 +142227,1222,Vietnam War,1235837088 +142227,1235,dark comedy,1235836872 +142227,1237,Swedish,1235836276 +142227,1240,sci-fi,1235836161 +142227,1247,coming of age,1235835904 +142227,1251,Fellini,1235835991 +142227,1251,surreal,1235835984 +142227,1254,classic,1235835741 +142227,1259,coming of age,1235836239 +142227,1265,watch again before hating,1212248148 +142227,1269,dark comedy,1235835921 +142227,1289,life changing,1212248080 +142227,1301,sci-fi,1235837098 +142227,1304,watch again,1212247676 +142227,1307,romance,1235836070 +142227,1334,campy,1212249806 +142227,1340,don't remember,1212248852 +142227,1464,David Lynch,1235836654 +142227,1517,don't remember,1212250285 +142227,1625,reality,1235837069 +142227,1625,thriller,1235837084 +142227,1653,dystopia,1235837051 +142227,1653,sci-fi,1235837053 +142227,1883,watch again,1212249757 +142227,1921,underrated,1212247887 +142227,1939,World War II,1235835910 +142227,1945,overrated,1212249279 +142227,1952,Dustin Hoffman,1235836552 +142227,1961,psychology,1235836368 +142227,1961,road movie,1235836364 +142227,2010,industrial progress,1235836598 +142227,2019,Kurosawa,1235836294 +142227,2019,samurai,1235836297 +142227,2072,1980's,1212249897 +142227,2115,Indiana Jones,1235836785 +142227,2134,watch again,1212247764 +142227,2161,Fantasy,1235836466 +142227,2186,Alfred Hitchcock,1235836190 +142227,2287,sci-fi,1235836154 +142227,2455,sci-fi,1235837104 +142227,2478,watch again,1212249911 +142227,2502,watch again,1212247906 +142227,2529,dystopia,1235836408 +142227,2550,horror,1235836796 +142227,2550,independence,1235836864 +142227,2571,dystopia,1235835886 +142227,2571,reality,1235835951 +142227,2612,spoiled brats,1235836520 +142227,2660,aliens,1235836110 +142227,2660,sci-fi,1235836172 +142227,2664,sci-fi,1235836760 +142227,2729,Kubrick,1235836672 +142227,2792,don't remember,1212250157 +142227,2858,watch again,1212249036 +142227,2915,1980s,1235836323 +142227,2915,coming of age,1235836338 +142227,2916,dystopia,1235836113 +142227,2918,1980s,1235837199 +142227,2918,coming of age,1235837208 +142227,2959,identity,1235837191 +142227,2959,surreal,1235837179 +142227,2997,reality,1235835943 +142227,2997,surreal,1235835969 +142227,3000,dystopia,1235836392 +142227,3000,Studio Ghibli,1235836384 +142227,3022,comedy,1235837047 +142227,3070,fell asleep,1212250163 +142227,3147,don't remember,1212248189 +142227,3152,coming of age,1235836735 +142227,3152,Nudity (Topless - Notable),1235836683 +142227,3152,virginity,1235836735 +142227,3169,watch again,1212248375 +142227,3196,World War II,1235836243 +142227,3421,overrated,1212249012 +142227,3480,don't remember,1212248007 +142227,3499,horror,1235836505 +142227,3499,Stephen King,1235836499 +142227,3510,don't remember,1212248253 +142227,3551,Dustin Hoffman,1235836611 +142227,3556,high school,1235836097 +142227,3730,watch again,1212249682 +142227,3948,don't remember,1212247980 +142227,3948,watch again,1212247985 +142227,4079,don't remember,1212250145 +142227,4191,bachelorhood,1212249050 +142227,4226,don't remember,1212247966 +142227,4247,fuck you it's funny,1235835584 +142227,4641,coming of age,1235836885 +142227,4641,depressing,1235837035 +142227,4795,anti-war,1235837303 +142227,4795,comedy,1235837303 +142227,4795,WWII,1235837303 +142227,4848,David Lynch,1235836481 +142227,4848,surreal,1235836475 +142227,4973,surreal,1235835968 +142227,4979,dark comedy,1235836304 +142227,5147,Swedish,1235836054 +142227,5177,Orson Welles,1235836634 +142227,5291,Kurosawa,1235835818 +142227,5445,dystopia,1235837567 +142227,5445,Philip K. Dick,1235837569 +142227,5618,Studio Ghibli,1235836245 +142227,5669,Stupid,1212248925 +142227,5971,fantasy,1235836471 +142227,5971,Studio Ghibli,1235836469 +142227,6229,road movie,1235836088 +142227,6333,don't remember,1212247771 +142227,6448,don't remember,1212248334 +142227,6979,Cold War,1235836062 +142227,6979,computers,1235836065 +142227,6985,French,1235836430 +142227,6987,watch again,1212247666 +142227,7008,disturbing,1235835550 +142227,7013,film noir,1235836463 +142227,7062,jail movie,1212249819 +142227,7123,weird,1212249301 +142227,7156,don't remember,1212248272 +142227,7206,overrated,1212247923 +142227,7234,Fellini,1235835758 +142227,7254,don't remember,1212249743 +142227,7256,survival,1235836117 +142227,7327,Swedish,1235836423 +142227,7361,overrated,1212248406 +142227,7371,disturbing,1212249663 +142227,7698,nuclear disaster films,1212249699 +142227,7700,classic,1235835740 +142227,7700,Golden Palm,1235835727 +142227,7836,1960s,1235836080 +142227,7925,don't remember,1212248112 +142227,7925,watch again,1212248120 +142227,8228,don't remember,1212247993 +142227,8228,watch again,1212247998 +142227,8337,authority,1241125581 +142227,8477,overrated,1212247875 +142227,8582,propaganda,1235836624 +142227,30707,underrated,1212247937 +142227,33004,overrated,1212249512 +142227,50872,pixar,1235836344 +142239,134130,matt damon,1444644342 +142239,134130,sci-fi,1444644303 +142239,134130,Space,1444644309 +142239,134130,Survival Instinct,1444644338 +142254,1682,dark comedy,1280052985 +142254,2066,black and white,1367666210 +142254,3052,controversial,1280052868 +142254,3052,Matt Damon,1280052846 +142254,3176,creepy,1280052886 +142254,3176,Gwyneth Paltrow,1280052902 +142254,3176,Jude Law,1280052897 +142254,3176,Matt Damon,1280052882 +142254,3285,Leonardo DiCaprio,1280052970 +142254,3435,black and white,1367666210 +142254,4298,black and white,1367666209 +142254,7624,Matt Damon,1280052773 +142254,8984,heist,1280045247 +142254,8984,Matt Damon,1280045235 +142254,8984,not as good as the first,1280045231 +142254,53322,Matt Damon,1280052811 +142280,296,nonlinear,1223883784 +142280,296,Quentin Tarantino,1223883782 +142280,1210,fantasy,1223883805 +142280,1210,sci-fi,1223883807 +142280,1210,space,1223883803 +142280,1884,based on a book,1223883794 +142280,1884,drugs,1223883792 +142280,1884,Johnny Depp,1223883791 +142280,2959,based on a book,1223883789 +142280,2959,Edward Norton,1223883788 +142280,2959,psychology,1223883785 +142280,4878,psychology,1223883798 +142280,4878,surreal,1223883795 +142280,4878,time travel,1223883796 +142280,58559,Batman,1223883801 +142280,58559,Heath Ledger,1223883799 +142280,58559,superhero,1223883802 +142286,48516,way too long,1169687325 +142310,1,animation,1241721398 +142310,1,classic,1241721410 +142310,1,comedy,1241721417 +142310,1,computer animation,1241721414 +142310,1,Disney,1241721432 +142310,1,funny,1241721400 +142310,1,humorous,1241721401 +142310,1,Pixar,1241721403 +142310,1,time travel,1241721420 +142310,1,Tom Hanks,1241721407 +142310,1,witty,1241721407 +142310,11,Aaron Sorkin,1241551460 +142310,11,Michael Douglas,1241551490 +142310,11,politics,1241551474 +142310,32,adventure,1241721575 +142310,32,Bruce Willis,1241721562 +142310,32,complicated,1241721571 +142310,32,post-apocalyptic,1241721596 +142310,32,psychology,1241721568 +142310,32,sci-fi,1241721567 +142310,32,time travel,1241721564 +142310,32,twist ending,1241721577 +142310,34,adventure,1243350009 +142310,34,Biography,1243349994 +142310,50,complicated,1241498974 +142310,50,conspiracy,1241745360 +142310,50,Crime,1243362215 +142310,50,Dark,1241745369 +142310,50,puzzle-like,1241498979 +142310,50,rewatchable,1241745347 +142310,50,tricky,1241745354 +142310,50,twist ending,1241498938 +142310,62,Richard Dreyfuss,1241898803 +142310,62,teacher,1241898807 +142310,110,Biography,1243349787 +142310,110,biopic,1243349795 +142310,110,classic,1243349815 +142310,110,historical,1243349779 +142310,110,History,1243349781 +142310,110,medieval,1243349806 +142310,110,Mel Gibson,1243349784 +142310,110,sword fight,1243349821 +142310,110,violent,1243349809 +142310,110,war,1243349812 +142310,111,cult film,1241742634 +142310,111,disturbing,1241742647 +142310,111,Jodie Foster,1241532220 +142310,111,Martin Scorsese,1241532211 +142310,111,Robert De Niro,1241532202 +142310,111,visceral,1241742640 +142310,150,based on a true story,1241499153 +142310,150,History,1241499175 +142310,150,NASA,1241499159 +142310,150,space program,1241499161 +142310,150,Tom Hanks,1241499179 +142310,150,true story,1241499166 +142310,180,Ben Affleck,1242096924 +142310,180,crude humor,1242096951 +142310,180,ensemble,1242096959 +142310,180,Kevin Smith,1242096968 +142310,180,materialism,1242096886 +142310,180,Shannen Doherty,1242096908 +142310,191,Gary Oldman,1241898648 +142310,223,black and white,1242097035 +142310,223,good dialogue,1242097029 +142310,223,irreverent,1242097049 +142310,223,Kevin Smith,1242097014 +142310,223,low budget,1242097025 +142310,223,new jersey,1242097042 +142310,223,witty,1242097018 +142310,235,Biopic,1242680115 +142310,235,Johnny Depp,1242680117 +142310,235,quirky,1242680119 +142310,235,witty,1242680122 +142310,246,basketball,1242935139 +142310,246,Chicago,1242935153 +142310,246,documentary,1242935118 +142310,246,National Film Registry,1242935133 +142310,246,NBA,1242935158 +142310,246,sports,1242935166 +142310,246,true story,1242935161 +142310,247,based on a true story,1243340790 +142310,247,Kate Winslet,1243340818 +142310,247,lesbian,1243340799 +142310,247,New Zealand,1243340801 +142310,247,poignant,1243340827 +142310,247,surreal,1243340806 +142310,247,surrealism,1243340805 +142310,247,visceral,1243340811 +142310,247,wistful,1243340813 +142310,249,Beethoven,1241549472 +142310,249,biographical,1241549482 +142310,249,Gary Oldman,1241549474 +142310,249,great acting,1241549534 +142310,249,historical,1241549485 +142310,275,bad acting,1356931251 +142310,275,bummer,1356931349 +142310,275,Christmas,1356931354 +142310,275,depressing,1356931252 +142310,293,assassin,1241549584 +142310,293,assassins,1241549582 +142310,293,French,1241549588 +142310,293,Gary Oldman,1241549552 +142310,293,great acting,1241549561 +142310,293,humorous,1241549577 +142310,293,quirky,1241549555 +142310,293,touching,1241549566 +142310,296,hard to follow,1241839110 +142310,296,much ado about nothing,1241838334 +142310,296,non-linear,1241838318 +142310,296,nonlinear,1330150977 +142310,296,Quentin Tarantino,1241838321 +142310,300,based on a true story,1241929872 +142310,300,corruption,1241930162 +142310,300,game show,1241929860 +142310,300,slow starter,1241929887 +142310,318,inspirational,1241547985 +142310,318,Stephen King,1241547981 +142310,318,surprise ending,1241547975 +142310,318,thought-provoking,1241547965 +142310,318,twist ending,1241547969 +142310,322,black comedy,1243364469 +142310,322,dark comedy,1243364472 +142310,322,Kevin Spacey,1243364154 +142310,322,mean,1243364160 +142310,322,revenge,1243364461 +142310,326,class issues,1243362922 +142310,326,gritty,1243362914 +142310,326,poignant,1243362913 +142310,326,politics,1243362917 +142310,329,Patrick Stewart,1241745828 +142310,329,Sci-Fi,1241745830 +142310,329,Trekkie,1241745850 +142310,337,brothers,1241537113 +142310,337,coming of age,1241536994 +142310,337,Johnny Depp,1241537141 +142310,349,cia,1243347501 +142310,349,Harrison Ford,1243347536 +142310,349,political,1243347507 +142310,349,rousing,1243347512 +142310,349,tense,1243347514 +142310,356,biopic,1243343378 +142310,356,classic,1243343364 +142310,356,comedy,1243343366 +142310,356,historical,1243343396 +142310,356,history,1243343402 +142310,356,Tom Hanks,1243343385 +142310,356,whimsical,1243343368 +142310,367,comedy,1242679891 +142310,367,funny,1242679887 +142310,367,hilarious,1242679894 +142310,428,dad,1241532353 +142310,428,mafia,1241532320 +142310,428,Robert De Niro,1241532315 +142310,457,AFI 100 (Thrills),1241536103 +142310,457,thriller,1241536121 +142310,457,Tommy Lee Jones,1241536112 +142310,475,based on true story,1242934753 +142310,475,courtroom,1242934797 +142310,475,father-son relationship,1242934786 +142310,475,historical,1242934813 +142310,475,IRA,1242934806 +142310,475,Ireland,1242934780 +142310,475,lawyers,1242934793 +142310,475,prison,1242934789 +142310,475,terrorism,1242934778 +142310,475,wrongful imprisonment,1242934775 +142310,494,Kurt Russell,1242097386 +142310,494,plane,1242097407 +142310,494,Steven Seagal,1242097377 +142310,494,thriller,1242097403 +142310,507,car chase,1242678917 +142310,507,Clint Eastwood,1242678907 +142310,507,father figure,1242678925 +142310,507,road movie,1242678910 +142310,509,19th century,1241532178 +142310,509,girlie movie,1241532130 +142310,509,melancholy,1241532161 +142310,509,New Zealand,1241532138 +142310,527,based on a true story,1241498516 +142310,527,disturbing,1241498553 +142310,527,drama,1241498549 +142310,527,historical,1241498509 +142310,527,history,1241498532 +142310,527,Holocaust,1241498543 +142310,527,Oscar (Best Picture),1241498505 +142310,527,Steven Spielberg,1241498537 +142310,527,World War II,1241498498 +142310,541,classic,1242751649 +142310,541,dreamlike,1242751655 +142310,541,existentialism,1241554095 +142310,541,film noir,1241554081 +142310,541,future,1241554056 +142310,541,Harrison Ford,1241554120 +142310,541,noir,1241554076 +142310,541,Philip K. Dick,1241554058 +142310,541,sci-fi,1241554061 +142310,541,Vangelis,1242751636 +142310,553,gritty,1241550751 +142310,553,outlaws,1241550776 +142310,553,sheriff,1241550786 +142310,553,Western,1241550745 +142310,555,brutality,1330150451 +142310,555,Christian Slater,1330150536 +142310,555,Christopher Walken,1330150432 +142310,555,Dennis Hopper,1330150446 +142310,555,Gary Oldman,1330150428 +142310,555,Quentin Tarantino,1330150895 +142310,555,violence,1330150437 +142310,588,comedy,1242680382 +142310,588,coming of age,1242680373 +142310,588,Disney,1323498987 +142310,588,funny,1242680385 +142310,588,middle east,1323498942 +142310,588,musical,1242680367 +142310,588,rags to riches,1242680412 +142310,588,Robin Williams,1242680397 +142310,589,Arnold Schwarzenegger,1241722043 +142310,589,computers,1241722045 +142310,589,dystopia,1241722054 +142310,589,future,1241722051 +142310,589,sci-fi,1241722037 +142310,589,time travel,1241722038 +142310,590,biopic,1242679139 +142310,590,culture clash,1242679124 +142310,590,historical,1242679121 +142310,590,Kevin Costner,1242679134 +142310,590,US history,1242679109 +142310,593,psychology,1241555222 +142310,593,serial killer,1241555220 +142310,599,bleak,1243352104 +142310,599,gritty,1243352098 +142310,599,National Film Registry,1243352096 +142310,599,western,1243352092 +142310,608,black comedy,1241536403 +142310,608,crime gone awry,1241536393 +142310,608,dark comedy,1241536385 +142310,608,quirky,1241536397 +142310,608,strong female,1241536414 +142310,608,witty,1241536410 +142310,720,Aardman,1241708213 +142310,720,British,1241708223 +142310,720,british comedy,1241708232 +142310,720,comedy,1241708325 +142310,720,funny,1241708336 +142310,720,hilarious,1241708330 +142310,720,Wallace & Gromit,1241708202 +142310,720,witty,1241708339 +142310,736,science,1241536227 +142310,736,storm,1241536231 +142310,736,weather,1241536210 +142310,745,Aardman,1241708502 +142310,745,british,1241708522 +142310,745,british comedy,1241708528 +142310,745,comedy,1241708505 +142310,745,funny,1241708504 +142310,745,hilarious,1241708537 +142310,745,Wallace & Gromit,1241708516 +142310,745,witty,1241708541 +142310,750,anti-war,1241819768 +142310,750,black comedy,1241819772 +142310,750,politics,1241819753 +142310,750,satire,1241819763 +142310,750,satirical,1241819765 +142310,750,Stanley Kubrick,1241819762 +142310,780,alien invasion,1241533180 +142310,780,Will Smith,1241533125 +142310,858,classic,1242065209 +142310,858,family,1242065191 +142310,858,Mafia,1242065165 +142310,858,organized crime,1242065161 +142310,899,classic,1242681402 +142310,899,comedy,1242681408 +142310,899,Gene Kelly,1242681372 +142310,899,movie business,1242681413 +142310,902,Audrey Hepburn,1243349696 +142310,902,classic,1243349705 +142310,902,satirical,1243349700 +142310,902,wistful,1243349709 +142310,906,eerie,1241554908 +142310,906,paranoid,1241554913 +142310,911,Audrey Hepburn,1243347979 +142310,911,humorous,1243347927 +142310,911,slick,1243347992 +142310,911,surprise ending,1243347964 +142310,911,twist ending,1243347970 +142310,912,classic,1241554652 +142310,912,espionage,1241554789 +142310,912,Humphrey Bogart,1241554641 +142310,912,World War II,1241554643 +142310,919,black and white,1241547568 +142310,919,classic,1241547514 +142310,919,midgets,1241547562 +142310,919,musical,1241547547 +142310,919,National Film Registry,1241547529 +142310,923,Biography,1243347592 +142310,923,biopic,1243347589 +142310,923,classic,1243347595 +142310,923,enigmatic,1243347614 +142310,923,literate,1243347586 +142310,923,National Film Registry,1243347617 +142310,923,poignant,1243347579 +142310,924,aliens,1241551689 +142310,924,Arthur C. Clarke,1241551680 +142310,924,artificial intelligence,1241551658 +142310,924,future,1241551671 +142310,924,sci-fi,1241551662 +142310,924,space,1241551665 +142310,924,Stanley Kubrick,1241551663 +142310,942,black and white,1242678639 +142310,942,film noir,1242678608 +142310,942,National Film Registry,1242678625 +142310,942,noir,1242678597 +142310,942,Vincent Price,1242678631 +142310,994,brothers,1241742811 +142310,994,food,1241742799 +142310,994,italian cooking,1241742803 +142310,994,kitchen,1241742820 +142310,994,Liev Schreiber,1241742805 +142310,994,Minnie Driver,1241742825 +142310,1036,Alan Rickman,1241532849 +142310,1036,humorous,1241532801 +142310,1036,terrorism,1241532837 +142310,1036,thriller,1241532864 +142310,1080,British,1241549980 +142310,1080,comedy,1241549945 +142310,1080,humorous,1241549975 +142310,1080,mockumentary,1241549939 +142310,1080,Monty Python,1241549941 +142310,1080,parody,1241549943 +142310,1080,sacrilege,1241549970 +142310,1080,satire,1241549992 +142310,1080,satirical,1241549991 +142310,1080,whimsical,1241549950 +142310,1086,tennis,1343433403 +142310,1093,biopic,1241550903 +142310,1093,drugs,1241550925 +142310,1097,alien,1242679691 +142310,1097,aliens,1242679693 +142310,1097,children,1242679714 +142310,1097,classic,1242679687 +142310,1097,emotional,1242679677 +142310,1097,sci-fi,1242679680 +142310,1097,space,1242679682 +142310,1097,Steven Spielberg,1242679704 +142310,1101,aerial dogfights,1241551075 +142310,1101,aviation,1241551095 +142310,1101,military recruiting tool,1241551115 +142310,1101,testosterone,1241551104 +142310,1127,aliens,1243345218 +142310,1127,Ed Harris,1243345223 +142310,1127,first contact,1243345220 +142310,1127,sci-fi,1243345230 +142310,1136,bizarre ending,1241550102 +142310,1136,British,1241549880 +142310,1136,british comedy,1241549912 +142310,1136,humor,1241549897 +142310,1136,humorous,1241549900 +142310,1136,Monty Python,1241549874 +142310,1136,satire,1241549892 +142310,1136,satirical,1241549888 +142310,1136,spoof,1241549887 +142310,1148,Aardman,1241708145 +142310,1148,brilliant,1241708128 +142310,1148,british,1241708117 +142310,1148,british comedy,1241708124 +142310,1148,comedy,1241708139 +142310,1148,funny,1241708375 +142310,1148,hilarious,1241708161 +142310,1148,Wallace & Gromit,1241708136 +142310,1148,witty,1241708356 +142310,1172,censorship,1243347654 +142310,1172,small town,1243347646 +142310,1178,anti-war,1241551850 +142310,1178,cynical,1241551855 +142310,1178,disturbing,1241551859 +142310,1178,Kirk Douglas,1241551945 +142310,1178,Stanley Kubrick,1241551861 +142310,1180,Irish,1373084370 +142310,1180,Tara Fitzgerald,1373084390 +142310,1193,FIGHTING THE SYSTEM,1242741530 +142310,1193,mental illness,1372739643 +142310,1193,psychological,1242741542 +142310,1193,psychology,1242741540 +142310,1197,Cult classic,1241536279 +142310,1197,humorous,1241536275 +142310,1197,quirky,1241536284 +142310,1197,whimsical,1241536271 +142310,1198,adventure,1242096005 +142310,1198,archaeology,1242096056 +142310,1198,atmospheric,1242096009 +142310,1198,biblical,1242096042 +142310,1198,classic,1242096047 +142310,1198,comedy,1242095965 +142310,1198,epic,1242095992 +142310,1198,Harrison Ford,1242095998 +142310,1198,racism,1242096031 +142310,1198,Steven Spielberg,1242096019 +142310,1198,World War II,1242095976 +142310,1200,alien,1241745568 +142310,1200,aliens,1241745569 +142310,1200,classic,1241745571 +142310,1200,Quotable,1241745586 +142310,1200,sci-fi,1241745581 +142310,1200,space,1241745573 +142310,1200,SPACE TRAVEL,1241745575 +142310,1200,visceral,1241745576 +142310,1201,BOUNTY HUNTERS,1241745261 +142310,1201,Clint Eastwood,1241745227 +142310,1201,complex characters,1241745243 +142310,1201,hanging,1241745252 +142310,1201,humorous,1241745234 +142310,1201,irreverent,1243342429 +142310,1201,quirky,1241745231 +142310,1201,rewatchable,1241745221 +142310,1201,satirical,1241745236 +142310,1201,Sergio Leone,1241745229 +142310,1201,spaghetti western,1241745256 +142310,1201,western,1241745245 +142310,1204,atmospheric,1242742998 +142310,1204,biographical,1242742957 +142310,1204,Biography,1242742947 +142310,1204,Biopic,1242742950 +142310,1204,cinematography,1242742952 +142310,1204,classic,1242742955 +142310,1204,culture clash,1242742945 +142310,1204,desert,1242742972 +142310,1204,epic,1242742970 +142310,1204,History,1242742969 +142310,1204,Middle East,1242743005 +142310,1204,soundtrack,1242743077 +142310,1204,World War I,1242742975 +142310,1206,disturbing,1241551706 +142310,1206,quirky,1241551713 +142310,1206,satire,1241551715 +142310,1206,satirical,1241551717 +142310,1206,Stanley Kubrick,1241551711 +142310,1207,classic,1241711995 +142310,1207,courtroom drama,1241711993 +142310,1207,Gregory Peck,1241712003 +142310,1207,Harper Lee,1242064993 +142310,1207,History,1241712013 +142310,1207,lawyer,1241712016 +142310,1207,poignant,1241712021 +142310,1207,politics,1242065011 +142310,1207,racism,1241712019 +142310,1207,social commentary,1241712023 +142310,1208,adventure,1242065109 +142310,1208,anti-war,1242065123 +142310,1208,classic,1242065111 +142310,1208,Dark,1242065113 +142310,1208,disturbing,1242065115 +142310,1208,drugs,1242065136 +142310,1208,Robert Duvall,1242065058 +142310,1208,surreal,1242065128 +142310,1213,biography,1242104429 +142310,1213,biopic,1242104425 +142310,1213,crime,1242104444 +142310,1213,dark comedy,1242104422 +142310,1213,disturbing,1242681207 +142310,1213,good dialogue,1242104419 +142310,1213,mafia,1242104416 +142310,1213,narrated,1242104413 +142310,1213,organized crime,1242104404 +142310,1213,Robert De Niro,1242104432 +142310,1213,Samuel L. Jackson,1242104410 +142310,1213,violence,1242681197 +142310,1213,violent,1242681200 +142310,1214,alien,1241745539 +142310,1214,aliens,1241745488 +142310,1214,classic,1241745554 +142310,1214,dark,1241745493 +142310,1214,Ian Holm,1241745480 +142310,1214,Ridley Scott,1241745463 +142310,1214,sci-fi,1241745465 +142310,1214,space travel,1241745470 +142310,1214,suspense,1241745549 +142310,1214,visceral,1241745500 +142310,1217,Akira Kurosawa,1242104984 +142310,1217,atmospheric,1242104993 +142310,1217,Criterion,1242104987 +142310,1217,FATHERS AND SONS,1242104990 +142310,1219,Alfred Hitchcock,1242095791 +142310,1219,black and white,1242095802 +142310,1219,classic,1242095826 +142310,1219,Hitchcock,1242095797 +142310,1219,horror,1242095822 +142310,1219,macabre,1242095813 +142310,1219,National Film Registry,1242095832 +142310,1219,psychology,1242095847 +142310,1219,thriller,1242095817 +142310,1220,classic,1242935754 +142310,1220,comedy,1242935753 +142310,1220,Dan Aykroyd,1242936567 +142310,1220,John Candy,1242936526 +142310,1220,road movie,1242935788 +142310,1220,Saturday Night Live,1242935757 +142310,1220,soundtrack,1242935767 +142310,1221,classic,1242680744 +142310,1222,anti-war,1241551740 +142310,1222,indoctrination,1241551746 +142310,1222,political,1241551766 +142310,1222,Stanley Kubrick,1241551744 +142310,1222,Vincent D'Onofrio,1241551770 +142310,1223,Aardman,1241709843 +142310,1223,british,1241709869 +142310,1223,british comedy,1241709875 +142310,1223,comedy,1241709882 +142310,1223,funny,1241709858 +142310,1223,hilarious,1241709866 +142310,1223,quirky,1241709878 +142310,1223,Wallace & Gromit,1241709850 +142310,1225,biographical,1242065443 +142310,1225,biography,1242065450 +142310,1225,biopic,1242065432 +142310,1225,historical,1242065460 +142310,1225,history,1242065454 +142310,1225,Mozart,1242065426 +142310,1225,music,1242065429 +142310,1225,true story,1242065435 +142310,1231,astronauts,1241897450 +142310,1231,BFI modern classic,1241897437 +142310,1231,historical,1241897440 +142310,1231,NASA,1241897428 +142310,1231,space,1241897412 +142310,1231,space program,1241897414 +142310,1231,true story,1241897409 +142310,1231,US history,1241897411 +142310,1233,classic,1243349910 +142310,1233,gritty,1243349907 +142310,1233,submarine,1243349905 +142310,1233,U-boat,1243349901 +142310,1233,World War II,1243349897 +142310,1233,WWII,1243349899 +142310,1234,caper,1241841394 +142310,1234,Classic,1241841390 +142310,1234,con men,1242678511 +142310,1234,confidence game,1241841428 +142310,1234,depression,1242678524 +142310,1234,fun movie,1241841364 +142310,1234,great depression,1242678520 +142310,1234,Paul Newman,1241841340 +142310,1234,Robert Redford,1241841341 +142310,1234,Robert Shaw,1241841446 +142310,1234,surprise ending,1241841346 +142310,1234,twist ending,1241841351 +142310,1235,Cult Classic,1241550171 +142310,1235,dark comedy,1241550173 +142310,1235,humorous,1241550176 +142310,1235,irreverent,1241550185 +142310,1235,quirky,1241550193 +142310,1235,Wierd,1241550203 +142310,1240,Arnold Schwarzenegger,1241721995 +142310,1240,future,1241722006 +142310,1240,sci-fi,1241721998 +142310,1240,tense,1241722002 +142310,1240,time travel,1241721999 +142310,1243,Gary Oldman,1241898667 +142310,1243,quirky,1241898672 +142310,1243,Richard Dreyfuss,1241898669 +142310,1243,Tim Roth,1241898702 +142310,1246,philosophy,1242680439 +142310,1246,Robin Williams,1242680466 +142310,1246,school,1242680470 +142310,1246,Shakespeare,1242680456 +142310,1247,1960s,1243342282 +142310,1247,adultery,1243342259 +142310,1247,classic,1243342258 +142310,1247,comedy,1243342264 +142310,1247,coming of age,1243342247 +142310,1247,cynical,1243342268 +142310,1247,humorous,1243342244 +142310,1247,National Film Registry,1243342276 +142310,1247,quirky,1243342242 +142310,1247,satirical,1243342239 +142310,1247,suburbia,1243342273 +142310,1247,wedding,1243342254 +142310,1250,classic,1243348938 +142310,1250,National Film Registry,1243348931 +142310,1250,true story,1243348926 +142310,1250,World War II,1243348912 +142310,1250,WWII,1243348924 +142310,1252,atmospheric,1243758938 +142310,1252,bleak,1243758941 +142310,1252,cynical,1243758952 +142310,1252,Incest,1243758906 +142310,1252,Jack Nicholson,1243758896 +142310,1252,Los Angeles,1243758944 +142310,1252,neo-noir,1243758928 +142310,1252,private detective,1243758902 +142310,1252,Roman Polanski,1243758898 +142310,1253,aliens,1243345312 +142310,1253,black and white,1243345310 +142310,1253,classic,1243345346 +142310,1253,first contact,1243345315 +142310,1253,National Film Registry,1243345302 +142310,1253,sci-fi,1243345356 +142310,1254,AFI 100,1241306094 +142310,1254,classic,1241306215 +142310,1254,Humphrey Bogart,1241306097 +142310,1254,imdb top 250,1241306109 +142310,1254,Quotable,1241714715 +142310,1254,wry,1241714718 +142310,1257,paperboy,1256936376 +142310,1257,quirky,1242792053 +142310,1259,coming of age,1241554185 +142310,1259,friendship,1241554187 +142310,1259,INNOCENCE LOST,1241745782 +142310,1259,nostalgic,1241554191 +142310,1259,Rob Reiner,1241745788 +142310,1259,Stephen King,1241554199 +142310,1259,wistful,1241554196 +142310,1262,classic,1243342192 +142310,1262,concentration camp,1243342194 +142310,1262,forceful,1243342197 +142310,1262,historical,1243342190 +142310,1262,James Coburn,1243342207 +142310,1262,motorcycle,1243342200 +142310,1262,prison escape,1243342187 +142310,1262,Steve McQueen,1243342179 +142310,1262,true story,1243342177 +142310,1262,World War II,1243342173 +142310,1262,WWII,1243342175 +142310,1263,aftermath of war,1242678716 +142310,1263,coming home,1242678726 +142310,1263,surreal,1242678844 +142310,1265,alternate universe,1243341190 +142310,1265,Bill Murray,1243341214 +142310,1265,Classic,1243341221 +142310,1265,comedy,1243341192 +142310,1265,funny,1243341194 +142310,1265,hilarious,1243341196 +142310,1265,humorous,1243341208 +142310,1265,small town,1243341227 +142310,1265,time loop,1243341201 +142310,1265,time travel,1243341203 +142310,1266,bleak,1241710619 +142310,1266,classic,1241710633 +142310,1266,Clint Eastwood,1241710588 +142310,1266,great acting,1241710624 +142310,1266,gritty,1241710600 +142310,1266,Morgan Freeman,1241710615 +142310,1266,redemption,1241710578 +142310,1266,western,1241710568 +142310,1270,comedy,1241548641 +142310,1270,Funny,1241548684 +142310,1270,future,1241548624 +142310,1270,high school,1241548662 +142310,1270,quirky,1241548627 +142310,1270,sci-fi,1241548670 +142310,1270,teen,1241548666 +142310,1270,time travel,1241548630 +142310,1270,whimsical,1241548655 +142310,1271,funny,1243343331 +142310,1271,humorous,1243343328 +142310,1271,ku klux klan,1243343347 +142310,1271,poignant,1243343323 +142310,1271,Quirky,1243343340 +142310,1271,witty,1243343335 +142310,1272,Biography,1241552652 +142310,1272,biopic,1241553944 +142310,1272,George C. Scott,1241553976 +142310,1272,History,1241552655 +142310,1272,true story,1241552665 +142310,1272,US history,1241552667 +142310,1272,World War II,1241552658 +142310,1272,WWII,1241552661 +142310,1276,atmospheric,1241552347 +142310,1276,confrontational,1241552339 +142310,1276,FIGHTING THE SYSTEM,1241552438 +142310,1276,humorous,1241552341 +142310,1276,Paul Newman,1241552344 +142310,1278,black and white,1241547644 +142310,1278,Gene Wilder,1241547647 +142310,1278,gothic,1241498078 +142310,1278,imdb top 250,1241498129 +142310,1278,parody,1241498085 +142310,1278,Quotable,1241547638 +142310,1278,silly but good,1241498103 +142310,1278,spoof,1241498080 +142310,1283,alone,1243340663 +142310,1283,Classic,1243340627 +142310,1283,Gary Cooper,1243340638 +142310,1283,gunfight,1243340752 +142310,1283,guns,1243340756 +142310,1283,National Film Registry,1243340650 +142310,1283,real-time,1243340653 +142310,1283,western,1243340623 +142310,1293,Ben Kingsley,1242103185 +142310,1293,biographical,1241498335 +142310,1293,biography,1241498432 +142310,1293,biopic,1241498398 +142310,1293,Candice Bergen,1243343061 +142310,1293,colonialism,1241498347 +142310,1293,Exceptional Acting,1241498339 +142310,1293,Martin Sheen,1241498408 +142310,1297,80s,1241550815 +142310,1297,college,1241550876 +142310,1297,engineering,1241550829 +142310,1297,genius,1241550826 +142310,1297,Quotable,1241550857 +142310,1297,science,1241550878 +142310,1297,smart comedy,1241550848 +142310,1297,witty,1241550866 +142310,1299,colonialism,1242743159 +142310,1299,Indochina,1242743215 +142310,1299,Vietnam War,1242743209 +142310,1302,baseball,1242678984 +142310,1302,classic,1242679028 +142310,1302,historical fantasy,1242679009 +142310,1303,adventure,1242741423 +142310,1303,based on true story,1241305846 +142310,1303,culture clash,1242741433 +142310,1303,Michael Caine,1241305842 +142310,1304,FIGHTING THE SYSTEM,1241552319 +142310,1304,humorous,1241552211 +142310,1304,irreverent,1241552195 +142310,1304,Paul Newman,1241552187 +142310,1304,Robert Redford,1241552188 +142310,1304,western,1241552186 +142310,1333,Alfred Hitchcock,1386307632 +142310,1333,Hitchcock,1386307622 +142310,1333,strange,1386307671 +142310,1333,suspense,1386307667 +142310,1333,unusual,1386307664 +142310,1339,Gary Oldman,1241898406 +142310,1339,Winona Ryder,1241898415 +142310,1343,Martin Scorsese,1241532384 +142310,1343,Robert De Niro,1241532388 +142310,1344,Gregory Peck,1241712070 +142310,1344,lawyer,1241712090 +142310,1344,thriller,1241712108 +142310,1356,franchise,1242096443 +142310,1356,Jonathan Frakes,1242096486 +142310,1356,Patrick Stewart,1242096405 +142310,1356,sci-fi,1242096474 +142310,1356,space,1242096463 +142310,1356,Star Trek,1242096423 +142310,1356,time travel,1242096416 +142310,1356,Whoopi Goldberg,1242096419 +142310,1387,classic,1241745754 +142310,1387,franchise,1241745727 +142310,1387,man vs nature,1241745707 +142310,1387,National Film Registry,1241841470 +142310,1387,ominous,1242679748 +142310,1387,Robert Shaw,1241841460 +142310,1387,scary,1241745733 +142310,1387,shark,1242679737 +142310,1387,shark-attacks,1242679738 +142310,1387,Steven Spielberg,1241745715 +142310,1387,tense,1241745702 +142310,1408,cinematography,1242743024 +142310,1408,Daniel Day-Lewis,1242743043 +142310,1408,excellent historical depiction,1242743027 +142310,1408,soundtrack,1242743034 +142310,1466,1970s,1242680668 +142310,1466,based on a true story,1242680645 +142310,1466,FATHERS AND SONS,1242680640 +142310,1466,Johnny Depp,1242680653 +142310,1476,biography,1242680594 +142310,1476,biopic,1242680598 +142310,1476,radio,1242680577 +142310,1476,radio DJ,1242680582 +142310,1476,true story,1242680585 +142310,1500,dark comedy,1241745170 +142310,1500,dialogue,1241745165 +142310,1500,good acting,1241745148 +142310,1500,Minnie Driver,1241745149 +142310,1500,rewatchable,1241745180 +142310,1527,aliens,1241898018 +142310,1527,Chris Tucker,1241898020 +142310,1527,dystopic future,1241898035 +142310,1527,futuristic,1241898067 +142310,1527,Gary Oldman,1241898016 +142310,1527,satirical,1241898056 +142310,1527,sci-fi,1241898024 +142310,1580,sci-fi,1241533401 +142310,1584,aliens,1243344693 +142310,1584,existentialism,1243344689 +142310,1584,first contact,1243344679 +142310,1584,outer space,1243344704 +142310,1584,sci-fi,1243344681 +142310,1584,science,1243344683 +142310,1584,space,1243344684 +142310,1584,space travel,1243344686 +142310,1608,aviation,1241898272 +142310,1608,flight,1241898261 +142310,1608,Gary Oldman,1241898259 +142310,1608,Glenn Close,1241898282 +142310,1608,Harrison Ford,1241898289 +142310,1608,president,1241898287 +142310,1608,terrorism,1241898275 +142310,1608,Wolfgang Petersen,1241898277 +142310,1610,cia,1242934959 +142310,1610,cold war,1242934989 +142310,1610,Race against time,1242934963 +142310,1610,Sean Connery,1242934980 +142310,1610,submarine,1242934947 +142310,1610,tense,1242934965 +142310,1610,Tom Clancy,1242934977 +142310,1619,Biography,1241729577 +142310,1619,Brad Pitt,1241729578 +142310,1619,colonialism,1241729944 +142310,1619,Eastern philosophy,1241729647 +142310,1619,great cinematography,1241729581 +142310,1619,historical,1241729606 +142310,1619,history,1241729583 +142310,1619,Tibet,1241729882 +142310,1643,biographical,1241840196 +142310,1643,Judi Dench,1241840211 +142310,1643,Queen Victoria,1241840236 +142310,1674,Amish,1241554962 +142310,1674,ethical,1241555151 +142310,1682,cerebral,1241714655 +142310,1682,dark comedy,1241714683 +142310,1682,dystopia,1241714646 +142310,1682,Jim Carrey,1241714647 +142310,1682,melancholy,1241714650 +142310,1682,philosophy,1241714675 +142310,1682,poignant,1241714652 +142310,1682,social commentary,1241714657 +142310,1694,Boring,1281188653 +142310,1694,religion,1281188655 +142310,1694,Robert Duvall,1281188668 +142310,1719,atmospheric,1241745424 +142310,1719,bleak,1241745415 +142310,1719,Canada,1241745447 +142310,1719,enigmatic,1241745418 +142310,1719,Ian Holm,1241745442 +142310,1719,Sarah Polley,1241745437 +142310,1721,catastrophe,1243362966 +142310,1721,disaster,1243362971 +142310,1721,historical,1243362945 +142310,1721,History,1243362947 +142310,1721,true story,1243362951 +142310,1730,colonialism,1241729848 +142310,1730,Eastern philosophy,1241729842 +142310,1730,Tibet,1241729866 +142310,1784,Comedy,1243350025 +142310,1805,Nudity (Topless),1241547862 +142310,1805,surprise ending,1241547807 +142310,1805,twist ending,1241547800 +142310,1831,future,1241898550 +142310,1831,Gary Oldman,1241898519 +142310,1831,Matt LeBlanc,1241898541 +142310,1831,sci-fi,1241898523 +142310,1831,space,1241898533 +142310,1883,funny,1241730168 +142310,1883,Halle Berry,1241730225 +142310,1883,political,1241730139 +142310,1883,politics,1241730141 +142310,1883,Warren Beatty,1241730146 +142310,1889,bleak,1243351177 +142310,1889,Criterion,1243351190 +142310,1889,isolation,1243351169 +142310,1889,moody,1243351195 +142310,1889,nocturnal,1243351172 +142310,1909,aliens,1241547405 +142310,1909,conspiracy,1241547398 +142310,1909,David Duchovny,1241547430 +142310,1909,FBI,1241547401 +142310,1909,Martin Landau,1241547426 +142310,1909,scifi,1241547441 +142310,1913,Aborigines,1242096230 +142310,1913,Australia,1242096234 +142310,1913,Criterion,1242096237 +142310,1913,eerie,1242096241 +142310,1913,Enigmatic,1242096258 +142310,1917,Ben Affleck,1241498740 +142310,1917,Golden Raspberry (Worst Actor),1241498733 +142310,1917,long music video,1241498711 +142310,1917,quick cuts,1241498711 +142310,1917,space,1241498743 +142310,1917,space program,1241498746 +142310,1923,Ben Stiller,1241728771 +142310,1923,comedy,1241728725 +142310,1923,fun,1241722076 +142310,1923,goofy,1241728785 +142310,1923,hilarious,1241722072 +142310,1923,raunchy,1241728789 +142310,1939,aftermath of war,1242678673 +142310,1939,coming home,1242678744 +142310,1939,history,1242678664 +142310,1939,National Film Registry,1242678803 +142310,1939,US history,1242678660 +142310,1939,veterans,1242678657 +142310,1939,World War II,1242678654 +142310,1947,classic,1241707974 +142310,1947,National Film Registry,1241707987 +142310,1947,racism,1241708006 +142310,1950,National Film Registry,1242934878 +142310,1950,racism,1242934859 +142310,1950,Rod Steiger,1242934861 +142310,1950,Sidney Poitier,1242934841 +142310,1957,1920s,1242751612 +142310,1957,athletics,1242751583 +142310,1957,historical,1242751563 +142310,1957,history,1242751558 +142310,1957,running,1242751609 +142310,1957,Vangelis,1242751568 +142310,1961,autism,1241819822 +142310,1961,Bonnie Hunt,1241819860 +142310,1961,brothers,1241819814 +142310,1961,disability,1241819858 +142310,1961,Dustin Hoffman,1241819819 +142310,1961,Exceptional Acting,1241819841 +142310,1961,mental illness,1241819856 +142310,1961,psychiatry,1241819826 +142310,1961,psychology,1241819838 +142310,1961,true story,1241819851 +142310,1962,Dan Aykroyd,1243344400 +142310,1962,Drama,1243344398 +142310,1962,Jessica Tandy,1243344404 +142310,1962,Morgan Freeman,1243344259 +142310,1962,racism,1243344395 +142310,1962,social commentary,1243344264 +142310,1964,Donald Sutherland,1241536697 +142310,1964,social commentary,1241536668 +142310,1968,1980's cult,1241730905 +142310,1968,1980s,1241730908 +142310,1968,Brat Pack,1241730927 +142310,1968,cliques,1241730754 +142310,1968,Comedy,1241730899 +142310,1968,coming of age,1241730745 +142310,1968,coming-of-age,1241730739 +142310,1968,cult film,1241730895 +142310,1968,Judd Nelson,1243348971 +142310,1968,school drama,1243348974 +142310,1994,AFI 100 (Movie Quotes),1241532019 +142310,1994,clowns,1241532045 +142310,1994,sci-fi. dark,1241463337 +142310,2000,comedy,1242742798 +142310,2000,death wish,1242742801 +142310,2000,Mel Gibson,1242742811 +142310,2003,Amblin,1241841226 +142310,2003,Christmas,1241841209 +142310,2003,Corey Feldman,1241841217 +142310,2003,horror,1241554339 +142310,2003,small town,1241841235 +142310,2003,Steven Spielberg,1241554361 +142310,2011,1980s,1241548732 +142310,2011,comedy,1241548743 +142310,2011,sequel,1241548704 +142310,2011,time travel,1241548707 +142310,2012,sci-fi,1241548809 +142310,2012,science fiction,1241548820 +142310,2012,sequel,1241548816 +142310,2012,time travel,1241548822 +142310,2012,western,1241548871 +142310,2019,Akira Kurosawa,1242104505 +142310,2019,atmospheric,1242104515 +142310,2019,classic,1242104532 +142310,2019,CULTURE CLASH,1242104537 +142310,2019,drama,1242104543 +142310,2019,epic,1242104546 +142310,2019,historical,1242104520 +142310,2019,samurai,1242104526 +142310,2019,toshiro mifune,1242104510 +142310,2019,western,1242104524 +142310,2066,atmospheric,1241551997 +142310,2066,film noir,1241552037 +142310,2066,gloomy,1241552016 +142310,2066,moody,1241552011 +142310,2066,noir,1241552042 +142310,2066,reflective,1241552008 +142310,2071,Alan Alda,1243350106 +142310,2071,meaningful,1243350201 +142310,2071,social commentary,1243350071 +142310,2114,Brat Pack,1241731209 +142310,2131,bleak,1241554849 +142310,2137,classic,1243347874 +142310,2138,animation,1241708033 +142310,2138,life lessons,1241708099 +142310,2144,Brat Pack,1241731077 +142310,2144,chick flick,1241731097 +142310,2145,Brat Pack,1241730948 +142310,2146,Brat Pack,1241731046 +142310,2194,David Mamet,1242678888 +142310,2194,Gangster,1242678877 +142310,2194,gangsters,1242678875 +142310,2194,Kevin Costner,1242103704 +142310,2194,Prohibition,1242678869 +142310,2241,Brat Pack,1241731264 +142310,2262,Brat Pack,1241731156 +142310,2265,black comedy,1243348510 +142310,2265,Chevy Chase,1243348505 +142310,2265,Dan Aykroyd,1243348527 +142310,2265,Demi Moore,1243348530 +142310,2265,John Candy,1243348512 +142310,2265,Pennsylvania,1243348507 +142310,2265,punishment,1243348524 +142310,2265,silly,1243348520 +142310,2268,Aaron Sorkin,1241551345 +142310,2268,court,1241551386 +142310,2268,courtroom,1241551384 +142310,2268,courtroom drama,1241551224 +142310,2313,19th century,1361670579 +142310,2313,Anthony Hopkins,1361670588 +142310,2313,David Lynch,1361670567 +142310,2313,England,1361670569 +142310,2313,historical,1361670571 +142310,2313,melancholic,1361670584 +142310,2313,melancholy,1361670582 +142310,2313,stylized,1361670594 +142310,2313,true story,1361670577 +142310,2355,coming of age,1243348846 +142310,2355,Disney,1243348842 +142310,2355,FIGHTING THE SYSTEM,1243348858 +142310,2355,funny,1243348867 +142310,2355,humor,1243348869 +142310,2355,humorous,1243348872 +142310,2355,Kevin Spacey,1243348887 +142310,2355,Pixar,1243348836 +142310,2355,Pixar animation,1243348837 +142310,2357,compassionate,1243348068 +142310,2357,gritty,1243348291 +142310,2357,road trip,1243348074 +142310,2371,Chevy Chase,1243348416 +142310,2372,Chevy Chase,1243348469 +142310,2384,dumb,1241498601 +142310,2396,Ben Affleck,1241840530 +142310,2396,British,1241840519 +142310,2396,dramedy,1241840295 +142310,2396,England,1241840513 +142310,2396,Judi Dench,1241840291 +142310,2396,Period,1241840507 +142310,2396,Renaissance,1241840502 +142310,2396,Shakespeare,1241840287 +142310,2401,Clint Eastwood,1242680850 +142310,2401,Michael Moriarty,1242680863 +142310,2401,Western,1242680871 +142310,2420,classic,1242791761 +142310,2420,underdog,1242791765 +142310,2423,Chevy Chase,1241730464 +142310,2423,national lampoon,1241730469 +142310,2427,atmospheric,1241728835 +142310,2427,George Clooney,1241728838 +142310,2427,John Travolta,1241728859 +142310,2427,philosophical,1241728845 +142310,2427,reflective,1241728847 +142310,2427,war,1241728878 +142310,2427,World War II,1241728828 +142310,2450,nonsense,1241548587 +142310,2450,silly,1241548583 +142310,2463,Bette Midler,1241730585 +142310,2463,comedy,1241730595 +142310,2463,Danny DeVito,1241730598 +142310,2471,Aborigines,1242096211 +142310,2471,Australia,1242096218 +142310,2478,Chevy Chase,1243348385 +142310,2478,MISTAKEN IDENTITIES,1243348394 +142310,2501,aeronautics,1242679486 +142310,2501,rocket,1242679464 +142310,2501,science,1242679455 +142310,2501,space,1242679460 +142310,2501,space program,1242679458 +142310,2501,True Story,1242679461 +142310,2528,dystopia,1372965817 +142310,2528,futuristic,1372965858 +142310,2528,sci-fi,1372965827 +142310,2528,science fiction,1372965861 +142310,2563,16th century,1243344576 +142310,2563,Biography,1243344574 +142310,2563,empowerment,1243344566 +142310,2563,History,1243344570 +142310,2563,Period piece,1243344585 +142310,2571,martial arts,1242663781 +142310,2571,philosophical,1242663778 +142310,2571,post apocalyptic,1242751746 +142310,2571,sci-fi,1242663777 +142310,2571,virtual reality,1242751741 +142310,2627,athletics,1243343933 +142310,2627,biopic,1243343964 +142310,2627,cinematography,1243343947 +142310,2627,endurance,1243343918 +142310,2627,running,1243343939 +142310,2716,comedy,1242936898 +142310,2716,Dan Aykroyd,1242936900 +142310,2716,mystery,1242936914 +142310,2716,New York City,1242936938 +142310,2716,paranormal,1242936910 +142310,2716,Rick Moranis,1242936924 +142310,2728,Biography,1241552079 +142310,2728,History,1241552081 +142310,2728,poignant,1241552090 +142310,2728,Rome,1241552073 +142310,2728,Stanley Kubrick,1241552076 +142310,2762,enigmatic,1241547889 +142310,2762,rewatchable,1241745202 +142310,2762,surprise ending,1241498889 +142310,2762,suspense,1241547886 +142310,2762,twist ending,1241498894 +142310,2788,British,1242662726 +142310,2788,British Humor,1242662734 +142310,2788,Monty Python,1242662719 +142310,2788,quirky,1242662693 +142310,2794,Chevy Chase,1243348434 +142310,2795,Chevy Chase,1243348450 +142310,2797,1980s,1241897292 +142310,2797,80's,1241897293 +142310,2797,80s,1241897295 +142310,2797,classic,1241897273 +142310,2797,switching places,1241897288 +142310,2797,Tom Hanks,1241897267 +142310,2819,CIA,1241710742 +142310,2819,conspiracy,1241710754 +142310,2819,intrigue,1241710796 +142310,2819,Robert Redford,1241710734 +142310,2819,thriller,1241710737 +142310,2858,black comedy,1243350217 +142310,2858,comedy,1243350230 +142310,2858,coming of age,1243350220 +142310,2858,dark comedy,1243350215 +142310,2858,Kevin Spacey,1243350213 +142310,2858,satirical,1243350223 +142310,2858,surrealism,1243350221 +142310,2858,thought-provoking,1243350225 +142310,2863,Beatles,1243341093 +142310,2863,comedy,1243341111 +142310,2863,musical,1243341103 +142310,2863,rock and roll,1243341120 +142310,2863,the beatles,1243341097 +142310,2905,Akira Kurosawa,1242104744 +142310,2905,atmospheric,1242104748 +142310,2905,Kurosawa,1242104742 +142310,2905,sword fighting,1242104756 +142310,2905,toshiro mifune,1242104753 +142310,2916,complex script,1242751704 +142310,2916,conspiracy,1242751699 +142310,2916,Philip K. Dick,1242751681 +142310,2916,Sci Fi,1242751685 +142310,2916,sci-fi,1242751691 +142310,2916,space travel,1242751694 +142310,2916,virtual reality,1242751709 +142310,2918,1980s,1241730709 +142310,2918,coming of age,1241730722 +142310,2918,fun,1241730699 +142310,2918,genius,1241730728 +142310,2918,Matthew Broderick,1241730688 +142310,2918,rebellion,1241730690 +142310,2951,classic,1243343519 +142310,2951,Clint Eastwood,1243343503 +142310,2951,gritty,1243343525 +142310,2951,standoff,1243343498 +142310,2951,western,1243343500 +142310,2968,Criterion,1241721536 +142310,2968,funny,1241721514 +142310,2968,good versus evil,1241721525 +142310,2968,history,1241721515 +142310,2968,time,1241721530 +142310,2968,time travel,1241721520 +142310,2976,atmospheric,1241550394 +142310,2976,drama,1241550361 +142310,2976,dreamlike,1241550291 +142310,2976,John Goodman,1241550342 +142310,2976,Martin Scorsese,1241550324 +142310,2976,moody,1241550385 +142310,2976,narrated,1241550367 +142310,2976,nightmare,1241550315 +142310,2976,overlooked,1241550327 +142310,2989,car chase,1241710359 +142310,2989,espionage,1241710061 +142310,2989,International,1241710030 +142310,2989,spy,1241710338 +142310,2989,spy thriller,1241710342 +142310,2997,black comedy,1241730406 +142310,2997,dark comedy,1241730423 +142310,2997,quirky,1241730408 +142310,2997,satirical,1241730431 +142310,2997,sci-fi,1241730417 +142310,2997,surreal,1241730409 +142310,2997,surrealism,1241730410 +142310,2997,weird,1241730415 +142310,3022,black and white,1243343007 +142310,3022,Buster Keaton,1243342998 +142310,3022,Civil War,1243342996 +142310,3022,comedy,1243343012 +142310,3022,funny,1243343019 +142310,3022,great stunts,1243343030 +142310,3022,National Film Registry,1243342655 +142310,3022,train,1243342662 +142310,3022,trains,1243342664 +142310,3030,Akira Kurosawa,1242104603 +142310,3030,atmospheric,1242104626 +142310,3030,Criterion,1242104620 +142310,3030,Japan,1242104636 +142310,3030,Kurosawa,1242104594 +142310,3030,sword fighting,1242104610 +142310,3030,Toshiro Mifune,1242104568 +142310,3066,Best War Films,1241721378 +142310,3066,Japanese,1241721356 +142310,3066,Pearl Harbor attack,1241721345 +142310,3066,World War II,1241721342 +142310,3068,courtroom drama,1243352498 +142310,3068,David Mamet,1243352529 +142310,3068,Paul Newman,1243352495 +142310,3068,realistic,1243352503 +142310,3071,Edward James Olmos,1242790828 +142310,3071,high school,1242790836 +142310,3072,funny,1241550583 +142310,3072,humorous,1241550587 +142310,3072,sweet,1241550573 +142310,3091,Akira Kurosawa,1242104955 +142310,3099,gay,1298866055 +142310,3105,based on a true story,1241532283 +142310,3105,DeNiro,1241532277 +142310,3105,medical,1241532255 +142310,3105,Robert De Niro,1241532262 +142310,3114,computer animation,1241721492 +142310,3114,Disney,1241721488 +142310,3114,funny,1241721479 +142310,3114,humorous,1241721487 +142310,3114,Pixar,1241721472 +142310,3114,sequel,1241721474 +142310,3114,Tom Hanks,1241721471 +142310,3114,whimsical,1241721476 +142310,3147,nostalgic,1243341282 +142310,3147,sentimental,1243341302 +142310,3147,Stephen King,1243341277 +142310,3147,Tom Hanks,1243341279 +142310,3148,charlize theron,1243347741 +142310,3148,Drama,1243347750 +142310,3148,literature,1243347792 +142310,3148,Tobey Maguire,1243347797 +142310,3156,Embeth Davidtz,1242536465 +142310,3156,future,1242536478 +142310,3156,humanity,1242536544 +142310,3156,Robin Williams,1242536482 +142310,3156,robots,1242680343 +142310,3156,sci-fi,1242536449 +142310,3160,coincidences,1243351217 +142310,3160,cynical,1243351239 +142310,3160,downbeat,1243351232 +142310,3160,multiple storylines,1243351260 +142310,3160,REDEMPTION,1243351249 +142310,3160,religious overtones,1243351225 +142310,3201,1970s,1241552262 +142310,3201,confrontational,1241552403 +142310,3201,FIGHTING THE SYSTEM,1241552240 +142310,3201,Jack Nicholson,1241552248 +142310,3201,rebel,1241552279 +142310,3201,rebellion,1241552269 +142310,3317,coming of age,1241498225 +142310,3317,creativity,1241498192 +142310,3317,EXTRAMARITAL AFFAIRS,1241498171 +142310,3317,literature,1241498216 +142310,3317,university,1241498202 +142310,3317,WRITER'S LIFE,1241498175 +142310,3317,writers at work,1241498177 +142310,3317,writing,1241498180 +142310,3350,based on a play,1332709563 +142310,3350,Sidney Poitier,1332709575 +142310,3359,bicycle,1256929754 +142310,3359,coming of age,1256936064 +142310,3359,cycling,1256929760 +142310,3359,Indiana,1256936022 +142310,3359,racing,1256936033 +142310,3361,Kevin Costner,1242679078 +142310,3362,black comedy,1242680694 +142310,3362,Hostage Situation,1242680709 +142310,3362,Sidney Lumet,1242680687 +142310,3362,true story,1242680689 +142310,3363,coming of age,1241554167 +142310,3363,friendship,1241554150 +142310,3363,George Lucas,1241554156 +142310,3363,nostalgia,1241554143 +142310,3363,rock and roll,1241554159 +142310,3386,conspiracy theory,1241898134 +142310,3386,courtroom,1241898138 +142310,3386,docudrama,1241898130 +142310,3386,Gary Oldman,1241898105 +142310,3386,historical,1241898159 +142310,3386,history,1242679166 +142310,3386,politics,1241898125 +142310,3421,beer,1244314484 +142310,3421,college,1244314532 +142310,3421,FIGHTING THE SYSTEM,1244314468 +142310,3421,fraternity,1244314488 +142310,3421,John Belushi,1244314474 +142310,3421,John Landis,1244314477 +142310,3421,Kevin Bacon,1244314480 +142310,3421,National Lampoon,1244314541 +142310,3429,Aardman studios,1243344599 +142310,3429,funny,1243344625 +142310,3429,humorous,1243344621 +142310,3429,quirky,1243344602 +142310,3429,whimsical,1243344604 +142310,3429,witty,1243344606 +142310,3448,Based on a true story,1242680543 +142310,3448,radio,1242680514 +142310,3448,radio DJ,1242680512 +142310,3448,Robin Williams,1242680529 +142310,3448,true story,1242680535 +142310,3448,Vietnam War,1242680532 +142310,3461,allegory,1241818353 +142310,3461,children acting like adults,1241818334 +142310,3461,Criterion,1241818349 +142310,3461,Savage,1241818355 +142310,3461,scary,1241818357 +142310,3468,intense,1241552595 +142310,3468,Paul Newman,1241552486 +142310,3468,style,1241552491 +142310,3469,biology,1242681308 +142310,3469,cerebral,1242681312 +142310,3469,courtroom drama,1242681336 +142310,3469,earnest,1242681326 +142310,3469,FIGHTING THE SYSTEM,1242681328 +142310,3469,religion,1242681316 +142310,3469,true story,1242681319 +142310,3471,alien,1241745619 +142310,3471,aliens,1241745621 +142310,3471,Classic,1243344646 +142310,3471,FIGHTING THE SYSTEM,1241745687 +142310,3471,first contact,1243344652 +142310,3471,National Film Registry,1243344656 +142310,3471,outcast,1241745649 +142310,3471,Sci-fi,1241745633 +142310,3471,space,1243344640 +142310,3471,thriller,1241745626 +142310,3505,espionage,1241547753 +142310,3505,political corruption,1241547737 +142310,3505,rewatchable,1241745333 +142310,3505,surprise ending,1241547719 +142310,3505,twist ending,1241547771 +142310,3535,Christian Bale,1242096821 +142310,3535,insanity,1242096832 +142310,3535,materialism,1242096838 +142310,3535,new york,1242096835 +142310,3535,psychology,1242096818 +142310,3545,historical,1243348787 +142310,3545,history,1243348784 +142310,3545,Liza Minelli,1243348774 +142310,3545,National Film Registry,1243348777 +142310,3545,politics,1243348768 +142310,3552,Chevy Chase,1243348304 +142310,3552,coming-of-age,1243348316 +142310,3552,funny,1243348337 +142310,3552,golf,1243348331 +142310,3552,humorous,1243348343 +142310,3552,snl alums,1243348358 +142310,3552,Ted Knight,1243348313 +142310,3578,Epic,1243342638 +142310,3578,history,1242103519 +142310,3578,Period piece,1242103534 +142310,3578,Ridley Scott,1242103477 +142310,3578,Russell Crowe,1242103473 +142310,3578,sword fight,1243342586 +142310,3578,violence,1243342589 +142310,3654,Anthony Quinn,1361670645 +142310,3654,World War II,1361670625 +142310,3681,Clint Eastwood,1243343431 +142310,3681,western,1243343444 +142310,3686,Chicago,1242937021 +142310,3686,medical school,1242936998 +142310,3686,oliver platt,1242936984 +142310,3702,car chase,1241721764 +142310,3702,cars,1241721759 +142310,3702,DEATH OF A SPOUSE,1241721732 +142310,3702,dystopia,1241721638 +142310,3702,gangs,1241721665 +142310,3702,nuclear war,1241721711 +142310,3702,post apocalyptic,1241721613 +142310,3702,post-apocalyptic,1241721611 +142310,3723,Glenn Close,1243341169 +142310,3723,Ian Holm,1243341166 +142310,3723,Mel Gibson,1243341140 +142310,3723,Oedipal Complex,1243341145 +142310,3723,Oedipus Complex,1243341162 +142310,3723,Shakespeare,1243341136 +142310,3724,aftermath of war,1242678689 +142310,3724,coming home,1242678772 +142310,3724,Donald Sutherland,1242678782 +142310,3724,Vietnam,1242678786 +142310,3751,Aardman studios,1243347817 +142310,3751,funny,1243347825 +142310,3751,humor,1243347829 +142310,3751,humorous,1243347832 +142310,3755,American,1241729466 +142310,3755,George Clooney,1241729444 +142310,3755,natural disaster,1241729449 +142310,3755,thriller,1241729454 +142310,3755,weather,1241729455 +142310,3755,Wolfgang Petersen,1241729446 +142310,3793,based on a comic,1241745914 +142310,3793,based on comic book,1241745921 +142310,3793,character development,1241745890 +142310,3793,comic book,1241745908 +142310,3793,Comic Book adaption,1241745911 +142310,3793,Hugh Jackman,1241745954 +142310,3793,introducing characters,1241745902 +142310,3793,Patrick Stewart,1241745938 +142310,3793,sci-fi,1241745893 +142310,3811,courtroom drama,1243349742 +142310,3811,History,1243349744 +142310,3811,military,1243349755 +142310,3811,South Africa,1243349750 +142310,3819,charming,1241742702 +142310,3819,food,1241742728 +142310,3819,humorous,1241742691 +142310,3819,quirky,1241742682 +142310,3819,satirical,1241742694 +142310,3927,plot holes,1329681940 +142310,3951,culture clash,1243362259 +142310,3951,family drama,1243362243 +142310,3951,melting pot,1243362284 +142310,3952,Gary Oldman,1241549113 +142310,3952,Joan Allen,1241549160 +142310,3952,politics,1241549153 +142310,3952,thriller,1241549434 +142310,3967,ballet,1242753000 +142310,3967,british,1242752971 +142310,3967,coming of age,1242752972 +142310,3967,dance,1242752989 +142310,3967,england,1242752992 +142310,3967,homosexuality,1242752975 +142310,3967,humorous,1242753005 +142310,3967,London,1242752977 +142310,3967,self discovery,1242752986 +142310,3989,archive footage,1241551544 +142310,3989,Germany,1241551540 +142310,3989,Michael Douglas,1241551537 +142310,3989,terrorism,1241551533 +142310,3989,true story,1241551532 +142310,3994,twist ending,1241532903 +142310,4007,Martin Sheen,1241498291 +142310,4007,materialism,1242096859 +142310,4007,Michael Douglas,1241498294 +142310,4007,Nudity (Full Frontal - Brief),1241498300 +142310,4007,Nudity (Rear),1241498305 +142310,4007,Oliver Stone,1241498275 +142310,4007,stock market,1241498310 +142310,4007,US history,1241498284 +142310,4008,activist,1241551162 +142310,4008,anti-war,1241819789 +142310,4008,politics,1241551167 +142310,4008,Vietnam War,1241551174 +142310,4014,Carrie-Anne Moss,1241537246 +142310,4014,Chocolate,1241537276 +142310,4014,French,1241537262 +142310,4014,Johnny Depp,1241537239 +142310,4014,Quirky,1241537255 +142310,4019,inspiring,1242065404 +142310,4019,Sean Connery,1242065401 +142310,4019,writing,1242065411 +142310,4033,cuban missile crisis,1242679202 +142310,4033,historical,1242679195 +142310,4033,history,1242679211 +142310,4033,politics,1242679226 +142310,4033,tense,1242679228 +142310,4033,US History,1242679219 +142310,4037,con men,1242678547 +142310,4037,David Mamet,1242678549 +142310,4037,Joe Mantegna,1242678571 +142310,4037,Mamet,1242678567 +142310,4148,Anthony Hopkins,1241898441 +142310,4148,atmospheric,1241898471 +142310,4148,David Mamet,1241898455 +142310,4148,Gary Oldman,1241898444 +142310,4148,Hannibal Lecter,1241898466 +142310,4148,Julianne Moore,1241898435 +142310,4148,Ridley Scott,1241898437 +142310,4148,serial killer,1241898448 +142310,4225,comedy,1243344435 +142310,4225,NASA,1243344463 +142310,4225,Sam Neill,1243344437 +142310,4225,space program,1243344430 +142310,4226,amnesia,1243343702 +142310,4226,cerebral,1243343670 +142310,4226,disjointed timeline,1243343712 +142310,4226,memory,1243343657 +142310,4226,memory loss,1243343661 +142310,4226,non-linear,1243343689 +142310,4226,nonlinear,1243343683 +142310,4226,twist ending,1243343648 +142310,4310,Ben Affleck,1242103592 +142310,4310,historically inaccurate,1242103569 +142310,4310,jerry bruckheimer,1242103573 +142310,4310,World War II,1242103577 +142310,4310,WWII,1242103579 +142310,4334,enlightening,1243350930 +142310,4334,midlife crisis,1243350949 +142310,4334,reflective,1243351094 +142310,4334,wistful,1243350932 +142310,4338,air war,1241711975 +142310,4338,Gregory Peck,1241711970 +142310,4338,World War II,1241711968 +142310,4465,courtroom drama,1241555196 +142310,4465,Jodie Foster,1241555172 +142310,4465,trial,1241555205 +142310,4474,Bette Midler,1241730611 +142310,4515,Beatles,1242934905 +142310,4515,biographical,1242934896 +142310,4515,Biography,1242934899 +142310,4515,New York City,1242934910 +142310,4616,coming of age,1242742866 +142310,4616,Morgan Freeman,1242742897 +142310,4616,true story,1242742913 +142310,4769,altruism,1241839842 +142310,4769,documentary,1241839838 +142310,4769,germany,1241839847 +142310,4769,Judi Dench,1241839859 +142310,4769,World War II,1241839845 +142310,4809,environment,1241550683 +142310,4809,nuclear,1241550701 +142310,4809,nuclear power,1241550691 +142310,4809,union,1241550677 +142310,4865,19th century,1241537300 +142310,4865,Atmospheric,1241537347 +142310,4865,Horror,1241537341 +142310,4865,Johnny Depp,1241537298 +142310,4865,London,1241537332 +142310,4865,medicine,1241537335 +142310,4865,Thriller,1241537327 +142310,4865,Victorian era,1241537312 +142310,4873,cerebral,1246751995 +142310,4873,dreams,1246751967 +142310,4873,existentialism,1246751955 +142310,4873,metaphysics,1246751986 +142310,4873,philosophy,1246751953 +142310,4873,quirky,1246751960 +142310,4873,rotoscope,1246752082 +142310,4873,rotoscoping,1246751942 +142310,4873,self-important,1246752196 +142310,4878,dreamlike,1241550257 +142310,4878,quirky,1241550242 +142310,4878,sci-fi,1241550255 +142310,4878,thought-provoking,1241550245 +142310,4886,Comedy,1241536358 +142310,4886,John Goodman,1241536353 +142310,4886,Pixar,1241536324 +142310,4896,Alan Rickman,1241549845 +142310,4896,harry potter,1241549849 +142310,4896,mystery,1241549853 +142310,4936,dance,1242791980 +142310,4936,high school,1242791992 +142310,4936,homosexuality,1242791988 +142310,4939,aerial dogfights,1241552116 +142310,4939,Japanese,1241552159 +142310,4939,Kirk Douglas,1241552127 +142310,4939,Martin Sheen,1241552130 +142310,4939,nostalgia,1241552143 +142310,4939,time travel,1241552108 +142310,4939,WWII,1241552133 +142310,4963,Brad Pitt,1241729383 +142310,4963,casino,1241729388 +142310,4963,George Clooney,1241729342 +142310,4963,heist,1241729407 +142310,4963,Las Vegas,1241729347 +142310,4963,Matt Damon,1241729345 +142310,4963,Steven Soderbergh,1241729393 +142310,4963,witty,1241729351 +142310,4967,ethnic conflict,1242752167 +142310,4967,intense,1242752183 +142310,4967,stress,1242752187 +142310,4973,charming,1242752898 +142310,4973,comedy,1242752917 +142310,4973,coming of age,1242752926 +142310,4973,fairy tale,1242752916 +142310,4973,feel-good,1242752904 +142310,4973,idealism,1242752913 +142310,4973,quirky,1242752905 +142310,4973,stylized,1242752911 +142310,4973,surreal,1242752907 +142310,4973,whimsical,1242752909 +142310,4994,censorship,1242680030 +142310,4994,historic drama,1242680101 +142310,4994,HUAC,1242679983 +142310,4994,McCarthyism,1242680055 +142310,4994,Un-American Activities Committee,1242679974 +142310,4995,based on a book,1242678355 +142310,4995,biography,1242678323 +142310,4995,genius,1242678331 +142310,4995,Jennifer Connelly,1242678335 +142310,4995,math,1242678349 +142310,4995,mathematics,1242678340 +142310,4995,mental illness,1242678325 +142310,4995,schizophrenia,1242678321 +142310,4995,true story,1242678318 +142310,5008,court,1241554408 +142310,5008,courtroom drama,1241554394 +142310,5013,atmospheric,1243342383 +142310,5013,Clive Owen,1243342378 +142310,5013,Dark,1243342376 +142310,5013,England,1243342354 +142310,5013,Helen Mirren,1243342357 +142310,5013,literate,1243342393 +142310,5013,murder,1243342388 +142310,5013,Period piece,1243342366 +142310,5013,Robert Altman,1243342359 +142310,5013,satire,1243342361 +142310,5013,witty,1243342371 +142310,5060,Altman,1242743478 +142310,5060,classic,1242743474 +142310,5060,CULTURE CLASH,1242743471 +142310,5060,FIGHTING THE SYSTEM,1242741483 +142310,5060,Korean War,1242741469 +142310,5060,madcap,1242743459 +142310,5060,quirky,1242743464 +142310,5060,Robert Altman,1242743481 +142310,5060,satire,1242741449 +142310,5060,satirical,1242741451 +142310,5060,witty,1242743455 +142310,5060,wry,1242743452 +142310,5184,too long,1273625116 +142310,5184,western,1273625394 +142310,5237,FIGHTING THE SYSTEM,1243364051 +142310,5237,George C. Scott,1243364031 +142310,5237,Sean Penn,1243364096 +142310,5300,western,1361674609 +142310,5319,Predictable,1173323978 +142310,5377,british,1243350296 +142310,5377,british comedy,1243350288 +142310,5377,comedy,1243350292 +142310,5377,Quirky,1243350272 +142310,5377,satirical,1243350275 +142310,5377,whimsical,1243350285 +142310,5418,car chase,1241710214 +142310,5418,CIA,1241710192 +142310,5418,International,1241710177 +142310,5418,Matt Damon,1241710180 +142310,5418,rewatchable,1241745303 +142310,5418,Robert Ludlum,1241710205 +142310,5418,spy,1241710182 +142310,5446,Aborigines,1242096159 +142310,5446,Australia,1242096100 +142310,5446,children,1242096127 +142310,5446,Kenneth Branagh,1242096094 +142310,5446,Peter Gabriel music,1242096076 +142310,5446,scenic,1242096114 +142310,5475,based on a true story,1243350333 +142310,5475,confrontational,1243350321 +142310,5475,forceful,1243350387 +142310,5475,politics,1243350340 +142310,5475,tense,1243350378 +142310,5475,thriller,1243350369 +142310,5502,contrived,1241532993 +142310,5502,silly,1241532981 +142310,5502,understated,1241532965 +142310,5581,Brat Pack,1241731135 +142310,5669,american idiocy,1243349860 +142310,5669,anti-Bush,1243349855 +142310,5669,documentary,1243349851 +142310,5669,guns,1243349879 +142310,5669,politics,1243349848 +142310,5669,racism,1243349872 +142310,5669,violence in america,1243349864 +142310,5690,aftermath of war,1243342153 +142310,5690,anime,1243341902 +142310,5690,anti-war,1243341892 +142310,5690,based on a true story,1243342132 +142310,5690,history,1243341921 +142310,5690,Japan,1243341900 +142310,5690,poignant,1243341913 +142310,5690,wartime,1243341855 +142310,5690,World War II,1243341879 +142310,5690,WW II,1243341874 +142310,5690,WWII,1243341862 +142310,5816,alan rickman,1241549796 +142310,5816,harry potter,1241549793 +142310,5816,sequel,1241549805 +142310,5899,History,1241305666 +142310,5899,Michael Caine,1241305683 +142310,5899,war,1241547611 +142310,5902,black comedy,1241730533 +142310,5902,cerebral,1241730539 +142310,5902,dark comedy,1241730535 +142310,5902,literate,1241730530 +142310,5902,Meryl Streep,1241730547 +142310,5902,writers,1241730523 +142310,5952,atmospheric,1241730260 +142310,5952,complex script,1241730258 +142310,5952,scenic,1241730272 +142310,5952,sequel,1241730263 +142310,6101,Chile,1361769993 +142310,6101,Golden Palm,1361770001 +142310,6101,Jack Lemmon,1361769990 +142310,6101,Palme d'Or,1361769999 +142310,6101,politics,1361770008 +142310,6101,South America,1361769956 +142310,6104,British,1241550143 +142310,6104,Monty Python,1241550132 +142310,6104,sketch comedy,1241550126 +142310,6104,skits,1241550128 +142310,6104,spoof,1241550131 +142310,6230,baseball,1242680775 +142310,6230,belivability,1242681175 +142310,6230,Dramatic,1242681170 +142310,6230,Michael Moriarty,1242680890 +142310,6270,Akira Kurosawa,1242104896 +142310,6270,Kurosawa,1242104910 +142310,6270,meditative,1242104901 +142310,6273,film noir,1241554573 +142310,6273,great acting,1241554586 +142310,6273,Humphrey Bogart,1241554554 +142310,6273,noir,1241554567 +142310,6333,action,1241745984 +142310,6333,aviation,1241746004 +142310,6333,comic book,1241745993 +142310,6333,ensemble cast,1241746016 +142310,6333,father-son relationship,1241746009 +142310,6333,genetics,1241746021 +142310,6333,Hugh Jackman,1241745970 +142310,6333,marvel,1241745991 +142310,6333,mutants,1241745989 +142310,6333,Patrick Stewart,1241745976 +142310,6333,sci-fi,1241745979 +142310,6333,thriller,1241746033 +142310,6377,birds,1243343740 +142310,6377,cgi,1243343614 +142310,6377,children,1243343610 +142310,6377,Comedy,1243343598 +142310,6377,Disney,1243343591 +142310,6377,father-son relationship,1243343604 +142310,6377,funny,1243343596 +142310,6377,memory loss,1243343622 +142310,6377,ocean,1243343631 +142310,6377,Pixar,1243343593 +142310,6377,underwater,1243343743 +142310,6539,action,1241746087 +142310,6539,comedy,1241746090 +142310,6539,fun,1242680260 +142310,6539,funny,1241746067 +142310,6539,ghosts,1241746085 +142310,6539,Johnny Depp,1241746063 +142310,6539,Keira Knightley,1241746072 +142310,6539,pirates,1241746082 +142310,6539,swashbuckler,1241746080 +142310,6539,thriller,1241746069 +142310,6539,zombie,1241746110 +142310,6539,Zombies,1241746112 +142310,6584,Woody Allen,1285728272 +142310,6598,dedication,1243364637 +142310,6598,documentary,1243364560 +142310,6598,Hawaii,1243364551 +142310,6598,Surfing,1243364570 +142310,6598,Visuals,1243364612 +142310,6639,Audrey Hepburn,1243352307 +142310,6639,blindness,1243352325 +142310,6711,atmospheric,1243351109 +142310,6711,Bill Murray,1243351124 +142310,6711,bittersweet,1243351127 +142310,6711,isolation,1243351130 +142310,6711,nocturnal,1243351135 +142310,6711,poignant,1243351116 +142310,6711,reflective,1243351114 +142310,6711,tokyo,1243351121 +142310,6711,wistful,1243351111 +142310,6724,classic,1242678488 +142310,6724,con men,1242678473 +142310,6724,depression,1242678484 +142310,6724,Great Depression,1242678481 +142310,6773,bicycling,1243362607 +142310,6773,dogs,1243362634 +142310,6773,irreverent,1243362612 +142310,6773,kidnapping,1243362653 +142310,6773,quirky,1243362631 +142310,6773,Tour de France,1243362622 +142310,6773,train,1243362645 +142310,6773,whimsical,1243362625 +142310,6787,conspiracy,1241536526 +142310,6787,corruption,1241536611 +142310,6787,Dustin Hoffman,1241536608 +142310,6787,investigation,1241536598 +142310,6787,journalism,1241536554 +142310,6787,Politics,1241536629 +142310,6787,Robert Redford,1241536604 +142310,6787,true story,1241536568 +142310,6807,British,1241550028 +142310,6807,british comedy,1241550018 +142310,6807,comedy,1241550021 +142310,6807,Monty Python,1241550023 +142310,6807,skits,1241550072 +142310,6867,charming,1243366588 +142310,6867,loneliness,1243364662 +142310,6867,neighbors,1243365119 +142310,6867,quirky,1243364695 +142310,6867,satirical,1243366617 +142310,6867,small town,1243364667 +142310,6874,Japan,1339807175 +142310,6874,Quentin Tarantino,1339807169 +142310,6874,stylized,1339807185 +142310,6874,Uma Thurman,1339807171 +142310,6902,choices,1241549020 +142310,6902,Chris Cooper,1241548942 +142310,6902,Gary Oldman,1241548924 +142310,6902,life lessons,1241548998 +142310,6902,life philosophy,1241548994 +142310,6902,road trip,1241549036 +142310,6942,Alan Rickman,1242680278 +142310,6942,british,1242680298 +142310,6942,cute,1242680293 +142310,6942,England,1242680286 +142310,6942,Keira Knightley,1242680282 +142310,6979,artificial intelligence,1243352230 +142310,6979,Barry Corbin,1243352240 +142310,6979,Cold War,1243352213 +142310,6979,hackers,1243352217 +142310,6979,Matthew Broderick,1243352226 +142310,6979,nuclear war,1243352244 +142310,7025,Gary Sinise,1242662920 +142310,7025,history,1242662926 +142310,7025,World War II,1242662916 +142310,7139,american dream,1242103379 +142310,7139,IMMIGRANT LIFE,1242103431 +142310,7139,immigrants,1242103364 +142310,7139,melting pot,1243362305 +142310,7139,new beginning,1242103394 +142310,7139,slow,1242103410 +142310,7158,American dream,1242103286 +142310,7158,Ben Kingsley,1242103262 +142310,7158,culture clash,1242103270 +142310,7158,immigrants,1242103328 +142310,7158,Jennifer Connelly,1242103200 +142310,7158,real estate,1242103251 +142310,7215,Ernest Hemingway,1241721274 +142310,7215,funny,1241721276 +142310,7215,Humphrey Bogart,1241721257 +142310,7236,dog,1247059816 +142310,7236,dystopia,1247059789 +142310,7236,dystopic future,1247059784 +142310,7236,low budget,1247059807 +142310,7236,post-apocalyptic,1247059776 +142310,7256,mountains,1243362678 +142310,7256,nature,1243362704 +142310,7256,survival,1243362672 +142310,7256,true story,1243362675 +142310,7361,comedy,1241730310 +142310,7361,Jim Carrey,1241730296 +142310,7361,non-linear,1241730320 +142310,7361,nonlinear,1241730315 +142310,7361,quirky,1241730299 +142310,7361,sci-fi,1241730301 +142310,7361,surreal,1241730303 +142310,7361,surrealism,1241730304 +142310,7361,thought-provoking,1241730305 +142310,7365,dark humor,1244943708 +142310,7365,eccentricity,1244943654 +142310,7365,father-son relationship,1244943660 +142310,7365,fjords,1244943823 +142310,7365,follow your dreams,1244944633 +142310,7365,fortune-telling,1244943848 +142310,7365,Iceland,1244943844 +142310,7365,pensive,1244943701 +142310,7365,psychiatry,1244943827 +142310,7365,taxi driver,1244943830 +142310,7365,village,1244943833 +142310,7365,wintry,1244943688 +142310,7438,atmospheric,1339807104 +142310,7438,Japan,1339807127 +142310,7438,kung fu,1339807111 +142310,7438,martial arts,1339807107 +142310,7438,Quentin Tarantino,1339807090 +142310,7438,spaghetti western,1339807115 +142310,7438,stylized,1339807094 +142310,7438,thriller,1339807140 +142310,7438,violence,1339807122 +142310,7451,clique,1242791597 +142310,7451,High School,1242791587 +142310,7451,innocence lost,1242791695 +142310,7451,Lindsay Lohan,1242791603 +142310,7451,popularity,1242791595 +142310,7456,allegory,1243352633 +142310,7456,children acting like adults,1243352603 +142310,7456,coming of age,1243352864 +142310,7569,hong kong,1243350882 +142310,7569,japan,1243350895 +142310,7570,James Bond,1241710457 +142310,7618,based on a true story,1241840799 +142310,7618,biographical,1241840795 +142310,7618,Biography,1241840793 +142310,7618,biopic,1241840792 +142310,7618,Charlie Chaplin,1241840824 +142310,7618,Marisa Tomei,1241840816 +142310,7698,corporate greed,1241536835 +142310,7698,social commentary,1241536738 +142310,7705,tennis,1343433612 +142310,7924,Akira Kurosawa,1242104684 +142310,7924,atmospheric,1242104701 +142310,7924,Criterion,1242104712 +142310,7924,film noir,1242104675 +142310,7924,guns,1242104692 +142310,7924,Japan,1242104694 +142310,7924,noir,1242104668 +142310,7924,police,1242104698 +142310,7924,Toshiro Mifune,1242104682 +142310,7925,Akira Kurosawa,1242105114 +142310,7926,Akira Kurosawa,1242104793 +142310,7926,business,1242104839 +142310,7926,businessman,1242104842 +142310,7926,Criterion,1242104830 +142310,7926,Ethic,1242104807 +142310,7926,ethics,1242104811 +142310,7926,Japan,1242104796 +142310,7926,kidnapping,1242104833 +142310,7926,Kurosawa,1242104800 +142310,7926,moral dilemma,1242104822 +142310,7926,police,1242104851 +142310,7926,Toshiro Mifune,1242104802 +142310,7980,classic,1242065319 +142310,7980,History,1242065314 +142310,7980,James Caan,1242065351 +142310,7980,Michael Caine,1242065363 +142310,7980,nostalgia,1242065342 +142310,7980,Sean Connery,1242065369 +142310,7980,World War II,1242065311 +142310,8008,Cyd Charisse,1242681535 +142310,8008,fantasy,1242681573 +142310,8008,Gene Kelly,1242681558 +142310,8008,musical,1242681562 +142310,8008,romance,1242681579 +142310,8008,Van Johnson,1242681569 +142310,8361,global warming,1241536163 +142310,8361,unrealistic,1241536177 +142310,8361,weather,1241536190 +142310,8368,alan rickman,1241549733 +142310,8368,emma thompson,1241549729 +142310,8368,Gary Oldman,1241549720 +142310,8368,harry potter,1241549718 +142310,8368,sequel,1241549739 +142310,8368,time travel,1241549746 +142310,8373,Bette Midler,1241730651 +142310,8373,Christopher Walken,1241730676 +142310,8373,Matthew Broderick,1241730668 +142310,8373,Nicole Kidman,1241730645 +142310,8464,Anti-Corporation,1241715016 +142310,8464,documentary,1241715038 +142310,8464,Educational,1241715013 +142310,8464,expose,1241714989 +142310,8464,food,1241742790 +142310,8464,important,1241715019 +142310,8464,Morgan Spurlock,1241715007 +142310,8464,revealing,1241714992 +142310,8464,social message,1241714997 +142310,8529,airport,1241721164 +142310,8529,funny,1241721153 +142310,8529,heartfelt,1241721229 +142310,8529,humorous,1241721221 +142310,8529,no totally happy ending,1241721184 +142310,8529,Tom Hanks,1241721151 +142310,8529,underrated,1241721148 +142310,8574,claymation,1241712227 +142310,8574,comedy,1241714607 +142310,8574,funny,1241714590 +142310,8574,holiday,1241714622 +142310,8574,Motown,1241714613 +142310,8574,musical,1241712235 +142310,8609,Buster Keaton,1270264005 +142310,8609,Comedy,1270264013 +142310,8609,Historically accurate,1270264038 +142310,8609,silent,1270264050 +142310,8622,comedy,1243343771 +142310,8622,documentary,1243343774 +142310,8622,Guns,1243343797 +142310,8622,Michael Moore,1243343756 +142310,8622,politics,1243343781 +142310,8622,satire,1243343777 +142310,8622,social commentary,1243343758 +142310,8622,US history,1243343787 +142310,8622,war,1243343800 +142310,8665,espionage,1241710254 +142310,8665,International,1241710232 +142310,8665,Matt Damon,1241710235 +142310,8665,spy,1241710266 +142310,8670,creepy,1243363986 +142310,8670,eerie,1243363991 +142310,8670,ominous,1243363952 +142310,8670,stylized,1243363993 +142310,8670,tense,1243363954 +142310,8767,remade later,1241554453 +142310,8767,stilted,1241554519 +142310,8783,Atmospheric,1243352374 +142310,8783,Bryce Dallas Howard,1243352393 +142310,8783,surprise ending,1243352381 +142310,8783,twist ending,1243352369 +142310,8798,atmospheric,1241819907 +142310,8798,character driven,1241819883 +142310,8798,Crime Drama,1241819895 +142310,8798,lawyers,1241819900 +142310,8951,abortion,1243352539 +142310,8951,choice,1243352555 +142310,8951,social commentary,1243352548 +142310,8961,animation,1241532072 +142310,8961,comic book,1241532103 +142310,8961,family,1241532076 +142310,8961,Pixar,1241532082 +142310,8970,Biography,1242680219 +142310,8970,england,1242680235 +142310,8970,Johnny Depp,1242680213 +142310,8970,literary,1242680208 +142310,8970,true story,1242680210 +142310,8984,bad sequel,1241729515 +142310,8984,Brad Pitt,1241729532 +142310,8984,Casey Affleck,1241729551 +142310,8984,Catherine Zeta-Jones,1241729539 +142310,8984,confusing,1241729554 +142310,8984,confusing plot,1241729511 +142310,8984,George Clooney,1241729528 +142310,8984,Julia Roberts,1241729550 +142310,8984,large cast,1241729518 +142310,8984,Matt Damon,1241729529 +142310,8984,not as good as the first,1241729507 +142310,8984,Steven Soderbergh,1241729562 +142310,8987,Bush bashing,1243348819 +142310,8987,politics,1243348813 +142310,9000,Cyd Charisse,1242681626 +142310,9000,Gene Kelly,1242681450 +142310,9000,movie business,1242681461 +142310,9000,musical,1242681474 +142310,25826,corny,1242681283 +142310,25826,Screwball Comedy,1242681275 +142310,25918,alcoholism,1244752992 +142310,25918,family,1244752988 +142310,25918,new york,1244753324 +142310,25918,poverty,1244752983 +142310,25961,Gregory Peck,1241553988 +142310,25961,western,1241553993 +142310,25995,atmospheric,1242104494 +142310,25995,Criterion,1241305751 +142310,25995,Toshirô Mifune,1241305788 +142310,25995,Toshiro Mifune,1241305754 +142310,26064,Akira Kurosawa,1242105046 +142310,26064,corporate,1242105054 +142310,26064,corruption,1242105060 +142310,26064,Criterion,1242105051 +142310,26064,deceased family member,1242105083 +142310,26064,Kurosawa,1242105089 +142310,26064,MEMBERS OF THE PRESS,1242105096 +142310,26064,Toshiro Mifune,1242105043 +142310,26064,wedding,1242105041 +142310,26175,gangsters,1283971353 +142310,26175,historical,1283971353 +142310,26242,allegorical,1242679782 +142310,26242,monster,1242679834 +142310,26242,thriller,1242679771 +142310,26242,truck,1242679774 +142310,26242,trucks,1242679775 +142310,26403,animation,1356933270 +142310,26403,author:J. R. R. Tolkein,1356933248 +142310,26403,musical,1356933297 +142310,26403,Rankin Bass,1356933262 +142310,26403,Tolkein,1356933279 +142310,26695,organized crime,1373136707 +142310,26704,Ed Harris,1241898629 +142310,26704,Gary Oldman,1241898622 +142310,27611,political,1241551614 +142310,27611,sci-fi,1241551606 +142310,27611,space,1241551609 +142310,27721,Audrey Tautou,1243352435 +142310,27721,persistence,1243352430 +142310,27721,World War I,1243352414 +142310,27741,19th century,1243362382 +142310,27741,Character study,1243362369 +142310,27741,cultural customs and traditions,1243362362 +142310,27741,families,1243362376 +142310,27741,Japan,1243362339 +142310,27741,samurai,1243362342 +142310,27741,single father,1243362352 +142310,30707,boxing,1242662858 +142310,30707,Clint Eastwood,1242662855 +142310,30707,dark,1242662888 +142310,30707,Los Angeles,1242662871 +142310,30707,Michael Crichton,1242662866 +142310,30707,Morgan Freeman,1242662861 +142310,30742,frank sinatra,1310355304 +142310,30742,Shirley McClaine,1310355326 +142310,30742,Vincente Minnelli,1310355335 +142310,30793,burton,1241537197 +142310,30793,chocolate,1241537191 +142310,30793,dark,1241537209 +142310,30793,Helena Bonham Carter,1241537214 +142310,30793,Johnny Depp,1241537175 +142310,30793,Tim Burton,1241537200 +142310,30812,aviation,1242103073 +142310,30812,biography,1242103069 +142310,30812,biopic,1242103033 +142310,30812,Cate Blanchett,1242103113 +142310,30812,Howard Hughes,1242103010 +142310,30812,Jude Law,1242103021 +142310,30812,Kate Beckinsale,1242103111 +142310,30812,Leonardo DiCaprio,1242103015 +142310,30812,movie business,1242103103 +142310,30812,nostalgic,1242103093 +142310,30812,true story,1242103061 +142310,30892,bizarre,1241840945 +142310,30892,Documentary,1241840961 +142310,30892,recluse,1241841008 +142310,30892,unusual,1241840950 +142310,31934,Africa,1371440126 +142310,31934,historical,1371440150 +142310,31934,Zoltan Korda,1371440121 +142310,32025,good acting,1241709964 +142310,32025,International,1241710009 +142310,32025,prejudice,1241709973 +142310,32261,air war,1241712132 +142310,32261,historical,1241712149 +142310,32261,history,1241712145 +142310,32261,Spencer Tracy,1241712129 +142310,32261,World War II,1241712126 +142310,33036,Clint Eastwood,1241710144 +142310,33036,double agents,1241710137 +142310,33036,International,1241710131 +142310,33154,business,1243343836 +142310,33154,California,1243343845 +142310,33154,capitalism,1243343838 +142310,33154,corruption,1243343817 +142310,33154,documentary,1243343818 +142310,33154,economics,1243343851 +142310,33154,History,1243343825 +142310,33154,scandal,1243343822 +142310,33154,Texas,1243343831 +142310,33660,Biography,1242678401 +142310,33660,boxing,1242678404 +142310,33660,boxing drama,1242678406 +142310,33660,depression,1242678435 +142310,33660,great depression,1242678395 +142310,33660,RAGS TO RICHES,1242678390 +142310,33660,true story,1242678416 +142310,33794,alter ego,1241549669 +142310,33794,atmospheric,1241549660 +142310,33794,Christian Bale,1241549631 +142310,33794,comic book,1241549675 +142310,33794,dark,1241549653 +142310,33794,Gary Oldman,1241549642 +142310,33794,melancholy,1241549628 +142310,33794,Michael Caine,1241549664 +142310,34048,alien invasion,1241841080 +142310,34048,aliens,1241841041 +142310,34048,father daughter relationship,1241841052 +142310,34048,sci-fi,1241841049 +142310,34048,single father,1241841073 +142310,34048,Steven Spielberg,1241841181 +142310,34048,weak ending,1241841043 +142310,34048,worst ending ever,1241841046 +142310,34072,beautiful,1242741286 +142310,34072,documenatary,1242741283 +142310,34072,france,1242741280 +142310,34072,nature,1242741267 +142310,34072,scenic,1242741289 +142310,34072,survival,1242741263 +142310,34072,wildlife,1242741274 +142310,37240,controversial,1241707950 +142310,37240,corruption,1241707937 +142310,37240,documentary,1241707930 +142310,37240,History,1241707926 +142310,37240,military industrial complex,1241707922 +142310,37269,conflicted,1241642859 +142310,37269,gang,1241642965 +142310,37269,homesteading,1241642977 +142310,37269,loner,1241642996 +142310,37269,thugs,1241642968 +142310,37269,western,1241642832 +142310,37475,grief,1241710688 +142310,37475,Morgan Freeman,1241710670 +142310,37475,redemption,1241710710 +142310,37475,Robert Redford,1241710672 +142310,37475,slow,1241710682 +142310,37475,Wyoming,1241710685 +142310,37729,animation,1242680177 +142310,37729,black comedy,1242680173 +142310,37729,comedy,1242680174 +142310,37729,dark,1242680158 +142310,37729,gothic,1242680170 +142310,37729,Johnny Depp,1242680162 +142310,37729,wedding,1242680185 +142310,37741,biopic,1242064930 +142310,37741,Chris Cooper,1242064879 +142310,37741,eccentricity,1242064925 +142310,37741,gay,1242064927 +142310,37741,Harper Lee,1242064942 +142310,37741,History,1242064911 +142310,37741,homosexuality,1242064923 +142310,37741,journalism,1242064915 +142310,37741,Philip Seymour Hoffman,1242064881 +142310,37741,writers,1242064918 +142310,37741,writers at work,1242064948 +142310,37741,writing,1242064920 +142310,38038,Aardman,1241709585 +142310,38038,british,1241709596 +142310,38038,british comedy,1241709600 +142310,38038,comedy,1241709792 +142310,38038,funny,1241709588 +142310,38038,hilarious,1241709606 +142310,38038,quirky,1241709592 +142310,38038,satirical,1241709613 +142310,38038,Wallace & Gromit,1241709624 +142310,39292,censorship,1241728976 +142310,39292,cerebral,1241728993 +142310,39292,George Clooney,1241728978 +142310,39292,history,1241728980 +142310,39292,HUAC,1242680011 +142310,39292,journalism,1241728981 +142310,39292,McCarthyism,1242680068 +142310,39292,political,1241728985 +142310,40583,cerebral,1241728909 +142310,40583,Chris Cooper,1241728907 +142310,40583,CIA,1241728943 +142310,40583,complex,1241728904 +142310,40583,complicated,1241728934 +142310,40583,confrontational,1241728914 +142310,40583,literate,1241728917 +142310,40583,Matt Damon,1241728922 +142310,40583,oil,1241728926 +142310,40583,Political,1241728894 +142310,40583,politics,1241728898 +142310,40583,world politics,1241728893 +142310,40815,big budget,1241898392 +142310,40815,dance,1241898386 +142310,40815,dark,1241898322 +142310,40815,England,1241898331 +142310,40815,Gary Oldman,1241898314 +142310,40815,teenagers,1241898341 +142310,40819,biography,1243352273 +142310,40819,biopic,1243352271 +142310,40819,drug abuse,1243352282 +142310,40819,DRUG ADDICTION,1243352286 +142310,40819,drugs,1243352284 +142310,40819,musical,1243352265 +142310,40819,true story,1243352269 +142310,41285,slow,1343433237 +142310,41285,tennis,1343433232 +142310,41724,business,1241714849 +142310,41724,expose,1241714841 +142310,41724,revealing,1241714853 +142310,41997,1970s,1243362159 +142310,41997,based on a true story,1243362147 +142310,41997,espionage,1243362154 +142310,41997,history,1243362149 +142310,41997,Islam,1243362151 +142310,41997,Israel,1243362099 +142310,41997,politics,1243362174 +142310,41997,Steven Spielberg,1243362132 +142310,41997,thought-provoking,1243362134 +142310,41997,true story,1243362138 +142310,41997,violence,1243362166 +142310,41997,War,1243362164 +142310,43333,class issues,1243352189 +142310,43333,politics,1243352186 +142310,43333,provocative,1243352192 +142310,44191,comic book,1241710544 +142310,44191,Dark hero,1241710534 +142310,44191,dystopia,1241710529 +142310,44191,historical,1241710518 +142310,44191,idealism,1241710510 +142310,44191,politics,1241710526 +142310,44191,revenge,1241710548 +142310,44191,thought-provoking,1241710524 +142310,44195,corporate greed,1241536871 +142310,44195,dark comedy,1241536498 +142310,44195,dark humor,1241536443 +142310,44195,expose,1241714963 +142310,44195,politics,1241536468 +142310,44195,revealing,1241714960 +142310,44195,satire,1241536430 +142310,44195,social commentary,1241536452 +142310,44195,Sundance award winner,1241536482 +142310,44761,children acting like adults,1241746557 +142310,44761,film noir,1241746565 +142310,44788,censorship,1241721855 +142310,44788,documentary,1241721886 +142310,44788,Hollywood,1241721957 +142310,44788,MPAA,1241721942 +142310,44788,politics,1241721890 +142310,44788,private detective,1241721923 +142310,44788,religious bigotism,1241721861 +142310,44788,religious bigotry,1241721864 +142310,44788,social commentary,1241721857 +142310,45431,better than expected,1241498798 +142310,45431,Dreamworks,1241498789 +142310,45431,Funny,1241532476 +142310,45431,Steve Carell,1241532488 +142310,45431,William Shatner,1241532521 +142310,45499,big budget,1242096553 +142310,45499,father son relationship,1242096571 +142310,45499,Halle Berry,1242096560 +142310,45499,Hugh Jackman,1242096524 +142310,45499,Marvel,1242096563 +142310,45499,mutants,1242096566 +142310,45499,sci-fi,1242096527 +142310,45928,american idiocy,1243352144 +142310,45928,documentary,1243352131 +142310,45928,environmental,1243352134 +142310,45928,true story,1243352124 +142310,46850,competition,1243352007 +142310,46850,documentary,1243352029 +142310,46850,games,1243351950 +142310,46850,intelligent,1243351957 +142310,46850,smart,1243351968 +142310,47423,boring,1241555365 +142310,47423,overrated,1241555383 +142310,47610,19th century,1243362428 +142310,47610,costume drama,1243362485 +142310,47610,Edward Norton,1243362474 +142310,47610,love story,1243362482 +142310,47610,stage magic,1243362480 +142310,47610,surprise ending,1243362423 +142310,47610,twist ending,1243362421 +142310,47629,based on a true story,1242102946 +142310,47629,biographical,1242102948 +142310,47629,biography,1242102950 +142310,47629,biopic,1242102966 +142310,47629,England,1242102953 +142310,47629,Helen Mirren,1242102957 +142310,47629,true story,1242102984 +142310,48516,atmospheric,1242104348 +142310,48516,Crime,1242104386 +142310,48516,gangster,1242104365 +142310,48516,gangsters,1242104376 +142310,48516,gritty,1242104352 +142310,48516,Jack Nicholson,1242104372 +142310,48516,Leonardo DiCaprio,1242104343 +142310,48516,Martin Scorsese,1242104339 +142310,48516,Matt Damon,1242104335 +142310,48516,police corruption,1242104312 +142310,48516,undercover cop,1242104331 +142310,48516,violence,1242104368 +142310,48774,christianity,1242752111 +142310,48774,Clive Owen,1242752133 +142310,48774,future,1242752128 +142310,48774,futuristic,1242752127 +142310,48774,Michael Caine,1242752135 +142310,48774,sci-fi,1242752105 +142310,48774,war,1242752151 +142310,48780,atmospheric,1242096668 +142310,48780,Christian Bale,1242096610 +142310,48780,dark,1242096694 +142310,48780,disjointed timeline,1242096647 +142310,48780,Hugh Jackman,1242096612 +142310,48780,Michael Caine,1242096615 +142310,48780,non-linear,1242096640 +142310,48780,nonlinear,1242096634 +142310,48780,obsession,1242096682 +142310,48780,stage magic,1242096684 +142310,48780,steampunk,1242096687 +142310,48780,twist ending,1242096658 +142310,49347,expose,1241714909 +142310,49347,revealing,1241714909 +142310,50064,Cate Blanchett,1241729292 +142310,50064,George Clooney,1241729226 +142310,50064,historical,1241729239 +142310,50064,intrigue,1241729255 +142310,50064,Steven Soderbergh,1241729271 +142310,50064,Tobey Maguire,1241729296 +142310,50064,World War II,1241729224 +142310,50064,WWII,1241729297 +142310,50068,Character study,1242741332 +142310,50068,Clint Eastwood,1242741329 +142310,50068,earnest,1242741386 +142310,50068,intimate,1242741398 +142310,50068,understated,1242741389 +142310,50068,World War II,1242741320 +142310,51540,Anthony Edwards,1242679567 +142310,51540,based on a true story,1242679538 +142310,51540,investigation,1242679559 +142310,51540,serial killer,1242679581 +142310,51540,true story,1242679527 +142310,51540,unresolved,1242679524 +142310,52435,classic,1242935054 +142310,52435,funny,1242935078 +142310,52435,humor,1242935081 +142310,52435,moral,1242935072 +142310,52604,courtroom drama,1241555277 +142310,52604,murder mystery,1241555319 +142310,52604,trial,1241555315 +142310,52891,based on a true story,1347679933 +142310,52891,cycling,1347679931 +142310,53967,Tom Selleck,1265662362 +142310,53967,Wilford Brimley,1265662363 +142310,54286,car chase,1241710309 +142310,54286,CIA,1241710303 +142310,54286,conspiracy,1241710315 +142310,54286,espionage,1241710287 +142310,54286,International,1241710284 +142310,54286,Matt Damon,1241710289 +142310,54286,Robert Ludlum,1241710291 +142310,54286,spy thriller,1241710319 +142310,54286,twist ending,1241710296 +142310,54881,documentary,1242743090 +142310,54881,games,1242743093 +142310,54881,geek,1242743111 +142310,54881,quirky,1242743099 +142310,54881,quirky subculture,1242743096 +142310,54881,rivalry,1242743108 +142310,54881,underdog,1242743103 +142310,54881,video games,1242743126 +142310,55052,bad child actors,1241747561 +142310,55052,children acting like adults,1241732615 +142310,55052,Keira Knightley,1241730037 +142310,55052,lies,1241730019 +142310,55052,misunderstanding,1241732766 +142310,55052,much ado about nothing,1241748506 +142310,55052,non-linear,1241730050 +142310,55052,Period piece,1241746175 +142310,55052,regrets,1241749826 +142310,55052,slow,1241748501 +142310,55052,Vanessa Redgrave,1241732754 +142310,55094,Tommy Lee Jones,1242743361 +142310,55176,archive footage,1242934600 +142310,55176,aviation,1242934614 +142310,55176,Cold War,1242934618 +142310,55176,History,1242934635 +142310,55176,space,1242934637 +142310,55276,corporate espionage,1241729189 +142310,55276,disillusionment,1241729196 +142310,55276,George Clooney,1241729166 +142310,55286,Benicio Del Toro,1241547356 +142310,55286,brooding,1241547323 +142310,55286,David Duchovny,1241547293 +142310,55286,disjointed timeline,1241547344 +142310,55286,Halle Berry,1241547369 +142310,55286,non-linear,1241730072 +142310,55286,slow,1241547319 +142310,55286,starts weak ends strong,1241730102 +142310,55290,based on a book,1262211521 +142310,55290,Casey Afflec,1270263892 +142310,55290,convoluted,1270263877 +142310,55290,detective,1262211526 +142310,55290,Ed Harris,1270263899 +142310,55290,multilayered,1262211537 +142310,55290,R,1270263949 +142310,55290,twist,1270263922 +142310,55805,Albert Finney,1242064104 +142310,55805,disjointed timeline,1242064065 +142310,55805,Ethan Hawke,1242064101 +142310,55805,Marisa Tomei,1242064091 +142310,55805,non-linear,1242064050 +142310,55805,nonlinear,1242064058 +142310,55805,Philip Seymour Hoffman,1242064071 +142310,55805,R,1242064108 +142310,55805,Sidney Lumet,1242064073 +142310,56367,comedy,1242791125 +142310,56367,high school,1242791128 +142310,56367,hilarious,1242791110 +142310,56367,humor,1242791118 +142310,56367,pregnancy,1242791113 +142310,56367,witty,1242791115 +142310,56757,19th century,1243362551 +142310,56757,Alan Rickman,1243362566 +142310,56757,cannibalism,1243362555 +142310,56757,Depp and Burton,1243362536 +142310,56757,gothic,1243362545 +142310,56757,Johnny Depp,1243362524 +142310,56757,london,1243362560 +142310,56757,Musical,1243362522 +142310,56757,Stephen Sondheim,1243362540 +142310,56757,Tim Burton,1243362527 +142310,56782,Daniel Day-Lewis,1243363889 +142310,56782,father-son relationship,1243363893 +142310,56782,morality,1243362995 +142310,56782,oil,1243363876 +142310,56782,religion,1243362997 +142310,56788,Aaron Sorkin,1241841524 +142310,56788,CIA,1241842919 +142310,56788,corruption,1241841536 +142310,56788,covert operation,1241841550 +142310,56788,drugs,1241842913 +142310,56788,helicopters,1241842916 +142310,56788,Julia Roberts,1241841981 +142310,56788,Philip Seymour Hoffman,1241841527 +142310,56788,politics,1241841532 +142310,56788,satire,1241842922 +142310,56788,strippers,1241842924 +142310,56788,Tom Hanks,1241841530 +142310,57669,belgium,1242097116 +142310,57669,dark comedy,1242097090 +142310,57669,foul language,1242097097 +142310,57669,friendship,1242097094 +142310,57669,irreverent,1242097082 +142310,57669,suicide,1242097120 +142310,58191,documentary,1241714790 +142310,58191,expose,1241714811 +142310,58191,International,1241714761 +142310,58191,politics,1241714755 +142310,58191,revealing,1241714878 +142310,58559,action,1242096785 +142310,58559,Christian Bale,1242096735 +142310,58559,Comic Book adaption,1242096781 +142310,58559,comics,1242096778 +142310,58559,dark,1242096748 +142310,58559,Gary Oldman,1242096743 +142310,58559,gritty,1242096759 +142310,58559,Heath Ledger,1245214197 +142310,58559,Maggie Gyllenhaal,1242096765 +142310,58559,Michael Caine,1242096754 +142310,58559,Morgan Freeman,1242096740 +142310,58559,murder,1242096772 +142310,58559,serial killer,1242096751 +142310,58559,super hero,1242096767 +142310,58559,superhero,1242096769 +142310,58839,comedy,1241729116 +142310,58839,football,1241729111 +142310,58839,George Clooney,1241729081 +142310,58839,historical,1241729129 +142310,58839,Jonathan Pryce,1241729085 +142310,59315,gadgets,1241840734 +142310,59315,Gwyneth Paltrow,1241840741 +142310,59315,Robert Downey Jr,1241840773 +142310,60040,comic book,1244341967 +142310,60069,environment,1242752090 +142310,60069,environmental,1242752092 +142310,60069,Post apocalyptic,1242751775 +142310,60069,Sci-Fi,1242751781 +142310,60069,social commentary,1242751778 +142310,60069,space,1242751783 +142310,60514,derivative,1363464062 +142310,61986,Original,1310355382 +142310,61986,Western,1310355378 +142310,62553,chick flick,1241840869 +142310,62553,drama,1241840893 +142310,62553,life-changing,1241840922 +142310,62553,self-discovery,1241840899 +142310,63072,Charlize Theron,1318207343 +142310,63072,depressing,1318207311 +142310,63072,dystopia,1318207338 +142310,63072,too long,1318207321 +142310,63072,Viggo Mortensen,1318207340 +142310,63082,destiny,1241930232 +142310,63082,disjointed timeline,1241917964 +142310,63082,game show,1241929839 +142310,63082,hard to follow,1241918123 +142310,63082,India,1241929826 +142310,63082,non-linear,1241917979 +142310,63082,nonlinear,1241917971 +142310,63082,overrated,1241930218 +142310,63082,poverty,1241917953 +142310,63082,RAGS TO RICHES,1241930258 +142310,63222,Jean-Claude Van Damme,1242097154 +142310,63853,Aborigines,1242096286 +142310,63853,Australia,1242096294 +142310,63853,Hugh Jackman,1242096297 +142310,63853,Nicole Kidman,1242096310 +142310,63853,World War II,1242096301 +142310,64285,Aardman,1241709709 +142310,64285,british,1241709727 +142310,64285,british comedy,1241709732 +142310,64285,comedy,1241709818 +142310,64285,funny,1241709723 +142310,64285,hilarious,1241709746 +142310,64285,quirky,1241709740 +142310,64285,Wallace & Gromit,1241709716 +142310,64990,Bob Dylan,1276924606 +142310,64990,Folk,1276924611 +142310,64990,Pete Seeger,1276924601 +142310,65261,Animation,1250703410 +142310,65261,anime,1250703410 +142310,65261,environmental,1250703459 +142310,65631,Charlize Theron,1325741882 +142310,65631,political,1325741889 +142310,65631,Protest,1325741875 +142310,66200,Gwyneth Paltrow,1242095733 +142310,66200,Joaquin Phoenix,1242095736 +142310,68319,comic book,1241640473 +142310,68319,Comic Book adaption,1241640463 +142310,68319,hugh jackman,1241640480 +142310,68319,sequel,1241640449 +142310,68358,action,1243757876 +142310,68358,adventure,1243757859 +142310,68358,alternate reality,1243757832 +142310,68358,big budget,1243757836 +142310,68358,quick cuts,1243757814 +142310,68358,sci-fi,1243757821 +142310,68358,space,1243757819 +142310,68358,Star Trek,1243757795 +142310,68358,time travel,1243757867 +142310,68358,Unsteady-cam,1243757841 +142310,68536,Documentary,1327618330 +142310,68536,History,1327618337 +142310,68536,Kubrick,1327618357 +142310,68536,movie business,1327618352 +142310,68791,bad acting,1334631762 +142310,68791,futuristic,1334631782 +142310,68791,post-apocalyptic,1334631771 +142310,68791,sci-fi,1334631769 +142310,68791,weak plot,1334631776 +142310,68932,Beethoven,1314508194 +142310,68932,Jamie Foxx,1314508221 +142310,68932,Journalist,1314508228 +142310,68932,Robert Downey Jr.,1314508216 +142310,69481,anti-war,1268119051 +142310,69481,colonialism,1268119028 +142310,69481,realistic,1268119022 +142310,69481,War,1268119044 +142310,70293,Amy Adams,1265582367 +142310,70293,cooking,1265582390 +142310,70293,food,1265582355 +142310,70293,france,1265582370 +142310,70293,frivolous,1265582380 +142310,70293,lighthearted,1265582409 +142310,70293,shallow,1265582422 +142310,70862,documentary,1262469546 +142310,70862,Jack White,1262469553 +142310,70862,Jimmy Page,1262469563 +142310,70862,rock and roll,1262469567 +142310,70862,The Edge,1262469558 +142310,70862,U2 song,1262469616 +142310,71899,animation,1339121439 +142310,71899,claymation,1339121466 +142310,71899,coming of age,1339121502 +142310,71899,dark comedy,1339121459 +142310,71899,friendship,1339121442 +142310,71899,Philip Seymour Hoffman,1339121456 +142310,71899,stop motion,1339121451 +142310,72113,coming of age,1293846866 +142310,72113,Michael Caine,1293846846 +142310,72113,paranormal,1293846828 +142310,72226,animation,1339121567 +142310,72226,George Clooney,1339121573 +142310,72226,Meryl Streep,1339121558 +142310,72226,Roald Dahl,1339121553 +142310,72226,talking animals,1339121534 +142310,72641,true story,1327618469 +142310,72998,3D,1265532443 +142310,72998,James Cameron,1265532473 +142310,72998,predictable,1265532465 +142310,72998,sci-fi,1265532424 +142310,73017,Action,1273038397 +142310,73017,Bechdel Test:Fail,1273038386 +142310,73017,Guy Ritchie,1273036250 +142310,73017,Jude Law,1273036255 +142310,73017,martial arts,1273061229 +142310,73017,Rachel McAdams,1273036261 +142310,73017,Robert Downey Jr.,1273036259 +142310,73017,Sherlock Holmes,1273036257 +142310,73023,Jeff Bridges,1270264247 +142310,73023,Maggie Gyllenhaal,1270264250 +142310,75983,man vs. nature,1333682470 +142310,75983,melodramatic,1333682491 +142310,75983,Switzerland,1333682457 +142310,77561,based on a comic,1273507440 +142310,77561,Don Cheadle,1273507438 +142310,77561,Gwyneth Paltrow,1273507451 +142310,77561,Samuel L. Jackson,1273507431 +142310,77561,Scarlett Johansson,1273507445 +142310,79132,arbitrary,1298775277 +142310,79132,Ellen Page,1279551755 +142310,79132,fantasy,1298775405 +142310,79132,intellectual,1279551764 +142310,79132,makes you think,1279551761 +142310,79695,boring,1328052012 +142310,79695,Sylvester Stallone,1328052027 +142310,79695,thin story,1328052039 +142310,80463,computers,1299305086 +142310,80463,dark comedy,1299305103 +142310,80463,David Fincher,1299305124 +142310,80463,inaccurate,1299305091 +142310,80463,innovation,1299305122 +142310,80463,loneliness,1299305099 +142310,80463,true story,1299305096 +142310,80590,Carey Mulligan,1288722606 +142310,80590,financial crisis,1288722616 +142310,80590,Michael Douglas,1288722609 +142310,80590,money,1288722635 +142310,80590,Shia LaBeouf,1288722612 +142310,80839,Disney,1326868919 +142310,80839,horses,1326868893 +142310,80839,true story,1326868884 +142310,81562,man vs nature,1333682569 +142310,81562,man vs. nature,1333682556 +142310,81591,atmospheric,1298865890 +142310,81591,ballet,1298865858 +142310,81591,dance,1298865895 +142310,81591,Mila Kunis,1298865915 +142310,81591,Natalie Portman,1298865863 +142310,81591,psychological,1298865865 +142310,81847,animation,1323498867 +142310,81847,death/fatality,1323498878 +142310,81847,Disney,1323498861 +142310,81847,musical,1323498901 +142310,81847,royalty,1323498897 +142310,81847,singing,1323498864 +142310,81847,visually appealing,1323498881 +142310,81847,Zachary Levi,1323498885 +142310,82459,based on a book,1342402364 +142310,82459,Coen Brothers,1342402387 +142310,82459,historical,1342402375 +142310,82459,Jeff Bridges,1342402369 +142310,82459,miscast,1342402350 +142310,82459,predictable,1342402356 +142310,82459,Western,1342402370 +142310,82534,clueless,1302744224 +142310,82534,corporations,1302744232 +142310,82534,greed,1302744246 +142310,82534,unemployment,1302744221 +142310,82767,based on a play,1333682368 +142310,82767,unsympathetic characters,1333682378 +142310,83086,bad acting,1373263716 +142310,83086,musical,1373263730 +142310,83086,predictable,1373263717 +142310,83349,Cameron Diaz,1322795012 +142310,83349,not very funny,1322795018 +142310,83349,predictable,1322795008 +142310,83349,Seth Rogen,1322795038 +142310,83349,Unlikable protagonist,1322795021 +142310,83480,bad effects,1373263626 +142310,83480,bad plot,1373263629 +142310,83480,badwriting,1373263623 +142310,83480,confused,1373263634 +142310,83480,demons,1373263650 +142310,83480,knights,1373263654 +142310,83480,plague,1373263657 +142310,83480,predictable,1373263637 +142310,83480,witch,1373263648 +142310,84392,legal,1300992574 +142310,84392,villain,1300992586 +142310,86833,Judd Apatow,1325381997 +142310,86833,parody,1325382002 +142310,86833,poop humor,1325381988 +142310,86833,unlikeable characters,1325381984 +142310,86882,comedy,1326868981 +142310,86882,dialogue,1326868982 +142310,86882,literate,1326869005 +142310,86882,no ending,1326869034 +142310,86882,Owen Wilson,1326868970 +142310,86882,Paris,1326868985 +142310,86882,quirky,1326868987 +142310,86882,Rachel McAdams,1326869008 +142310,86882,thought-provoking,1326868998 +142310,86882,Woody Allen,1326868976 +142310,88129,Carey Mulligan,1332638351 +142310,88129,heist,1332638310 +142310,88129,ryan gosling,1332638333 +142310,89492,Brad Pitt,1326868851 +142310,89492,Jonah Hill,1326868812 +142310,89492,Philip Seymour Hoffman,1326868818 +142310,89745,humor,1339120692 +142310,89745,humorous,1339120667 +142310,89745,Mark Ruffalo,1339120690 +142310,89745,predictable,1339120730 +142310,89745,Robert Downey Jr.,1339120658 +142310,89745,Scarlett Johansson,1339120701 +142310,89745,superhero,1339120707 +142310,89745,superhero team,1339120710 +142310,89904,silent movie,1327646641 +142310,90057,boring,1341702941 +142310,90057,lies to viewer,1341702957 +142310,90719,Clint Eastwood,1343151534 +142310,90719,cold war,1343151563 +142310,90719,dull,1343151532 +142310,90719,historical,1343151555 +142310,90719,Leonardo DiCaprio,1343151597 +142310,90719,Period piece,1343151555 +142310,90719,slow,1343151571 +142310,91077,Bechdel Test:Pass,1337487633 +142310,91077,family bonds,1337487647 +142310,91077,George Clooney,1337487624 +142310,91077,Hawaii,1337487620 +142310,91077,intelligent,1337487724 +142310,91094,Bechdel Test:Fail,1324304116 +142310,91094,cameo-fest,1324304078 +142310,91094,dancing,1324304177 +142310,91094,setting:LA,1324304127 +142310,91542,alternate history,1370882620 +142310,91542,cheesy,1370882592 +142310,91542,fight scenes,1370882612 +142310,91542,Guy Ritchie,1370882580 +142310,91542,Jude Law,1370882625 +142310,91542,predictable,1370882589 +142310,91542,Robert Downey Jr.,1370882584 +142310,93287,birding,1356933318 +142310,93287,birds,1356933320 +142310,93287,landscapes,1356933324 +142310,93287,nature,1356933321 +142310,93287,Steve Martin,1356933335 +142310,93840,joss whedon,1340647360 +142310,95167,Bechdel Test:Pass,1356933377 +142310,95167,coming of age,1356933367 +142310,95167,Pixar,1356933395 +142310,95167,predictable,1356933384 +142310,95167,Scotland,1356933361 +142310,96079,Bechdel Test:Pass,1356933421 +142310,96079,Commandos,1356933434 +142310,96079,Daniel Craig,1356933428 +142310,96079,James Bond,1356933444 +142310,96079,Javier Bardem,1356933455 +142310,96079,Scotland,1356933424 +142310,96543,historical,1346826975 +142310,96543,Robert Duvall,1346826992 +142310,96543,western,1346826975 +142310,97913,nostalgic,1352997741 +142310,97913,video games,1352997740 +142310,98239,implausible,1363383895 +142310,98239,plot holes,1363383902 +142310,98239,quick cuts,1363383919 +142310,98809,author:J. R. R. Tolkein,1356933214 +142310,98809,crude humor,1356933160 +142310,98809,New Zealand,1356933204 +142310,98809,stretched out,1356933172 +142310,98809,Tolkien,1356933222 +142310,98809,too long,1356933181 +142310,104841,George Clooney,1382230404 +142310,104841,long shots,1382230417 +142310,104841,space,1382230392 +142310,104841,visually appealing,1382230438 +142316,260,all time great,1441683944 +142316,260,rogues,1441683957 +142323,1237,overrated or for certain tastes,1352590462 +142323,2819,conspiracy,1352152504 +142323,2819,espionage,1352152512 +142323,2959,pretentious bullshit,1354023983 +142323,60950,pretentious bullshit,1352466490 +142342,296,dark comedy,1206539656 +142342,296,good dialogue,1206539650 +142355,2571,action,1429734845 +142355,5445,future,1429734901 +142355,84954,original plot,1429735536 +142355,85342,Brazil,1429736718 +142355,85342,foreign language,1429736722 +142355,85342,realistic,1429736711 +142355,102903,illusions,1429735778 +142355,102903,plot,1429735766 +142355,102903,surprise ending,1429735770 +142415,69394,Iranian,1307602719 +142415,69394,islam,1307602721 +142415,69394,Middle East,1307602736 +142418,2023,action,1429766677 +142418,2023,al pacino,1429766677 +142418,2023,drama,1429766677 +142462,260,classic sci-fi,1444995119 +142462,260,space adventure,1444995200 +142463,124859,risk taker,1424724085 +142463,124859,suspenseful,1424724085 +142463,124859,unexpected,1424724085 +142466,70410,psychological,1319403339 +142466,70410,psychology,1319403336 +142466,70410,survival,1319403341 +142480,50,complicated,1358976604 +142480,50,suspense,1358976644 +142480,50,twist ending,1358976721 +142480,1704,inspirational,1358978279 +142480,1704,intelligent,1358978282 +142480,1704,mathematics,1358978267 +142480,2571,alternate reality,1358977629 +142480,2571,cyberpunk,1358977626 +142480,2571,post-apocalyptic,1358977623 +142480,3000,atmospheric,1358977437 +142480,3000,Hayao Miyazaki,1358977433 +142480,3000,Studio Ghibli,1358977431 +142480,3000,surreal,1358977455 +142480,5618,alternate reality,1358977015 +142480,5618,atmospheric,1358977023 +142480,5618,dreamlike,1358977020 +142480,5618,Hayao Miyazaki,1358977010 +142480,5618,Studio Ghibli,1358977008 +142480,7090,amazing photography,1358978231 +142480,7090,atmospheric,1358978222 +142480,7090,stylized,1358978245 +142480,7090,visually appealing,1358978217 +142480,7361,bittersweet,1358978459 +142480,7361,nonlinear,1358978455 +142480,7361,surreal,1358978447 +142480,7361,thought-provoking,1358978451 +142480,8874,black comedy,1358977072 +142480,8874,parody,1358977078 +142480,8874,Simon Pegg,1358977090 +142480,8874,zombies,1358977076 +142480,8917,bizarre,1358976772 +142480,8917,irreverent,1358976774 +142480,8917,political commentary,1358976783 +142480,8917,Trey Parker,1358976997 +142480,44665,stylized,1358977865 +142480,44665,twist ending,1358977839 +142480,49772,Edward Norton,1358977554 +142480,49772,emotional,1358977611 +142480,49772,heartbreaking,1358977564 +142480,49772,intellectual,1358977556 +142480,51255,black comedy,1358978090 +142480,51255,Simon Pegg,1358978093 +142480,51255,surreal,1358978110 +142480,55908,Excellent use of dialogue,1358977708 +142480,55908,philosophical,1358977701 +142480,55908,thought-provoking,1358977667 +142480,61240,atmospheric,1358977978 +142480,61240,bittersweet,1358977983 +142480,61240,vampires,1358977990 +142480,62336,hallucinatory,1358978342 +142480,62336,robots,1358978344 +142480,62336,stylish,1358978312 +142480,62336,surreal,1358978310 +142480,71535,dark comedy,1358976518 +142480,71535,parody,1358976536 +142480,71535,post-apocalyptic,1358976516 +142480,71535,zombies,1358976507 +142480,79132,alternate reality,1358978048 +142480,79132,complicated,1358978051 +142480,79132,dreamlike,1358978054 +142480,79132,thought-provoking,1358978042 +142480,79132,visually appealing,1358978045 +142480,79702,surreal,1358977398 +142480,79702,video games,1358977100 +142480,79702,visually appealing,1358977413 +142480,88129,atmospheric,1358978467 +142480,88129,cinematography,1358978470 +142480,88129,tense,1358978482 +142480,88129,visually appealing,1358978472 +142480,93840,dark comedy,1358978553 +142480,93840,original,1358978543 +142480,93840,plot twist,1358978538 +142480,93840,satire,1358978541 +142480,93840,social commentary,1358978534 +142500,1207,Gregory Peck,1157569822 +142543,2505,Nicolas Cage,1281248155 +142579,60758,adultery,1344130262 +142579,60758,homosexuality,1344130262 +142614,64993,animation,1421227618 +142614,64993,love,1421227618 +142614,64993,makoto shinkai,1421227618 +142614,64993,yearning,1421227618 +142626,81903,b-movie,1435560260 +142626,81903,parody,1435560260 +142626,81903,sequel,1435560260 +142634,260,classic sci-fi,1439788322 +142634,260,space adventure,1439788338 +142634,260,space fight,1439788355 +142692,63072,slow,1354433804 +142692,63072,too long,1354433778 +142692,80590,boring,1373881623 +142692,80590,ending,1373881638 +142692,82095,boring,1354195821 +142692,82095,just not good,1354195801 +142692,82095,lengthy,1354195803 +142692,82095,plot,1354195805 +142692,82202,chemistry between actors,1354175936 +142692,82202,predictable,1354176001 +142692,88877,beautifull,1374980751 +142692,88877,funny,1374980735 +142692,88877,math,1374980764 +142692,88877,strange story,1374980883 +142692,89039,soundtrack,1375034086 +142692,89039,writing,1375034052 +142692,93502,boring,1374947400 +142692,93502,BORING!,1374947400 +142692,93805,dumbest black guy ever (and Asronaut),1357660537 +142692,95508,boring,1375966329 +142692,97311,funny,1358759752 +142692,97715,stupid ending,1359167270 +142692,98054,music,1358780698 +142692,99030,really wrong,1358897188 +142692,99910,Johnny Knoxville,1373461511 +142692,103372,Appallingly bad,1376354626 +142692,103372,awful,1376354482 +142692,103372,Melissa McCarthy,1376354328 +142692,103372,poorly scripted,1376354428 +142692,103372,stupid,1376354259 +142692,103372,Stupid as Hell,1376354259 +142701,5505,tragicomedy,1140960445 +142702,260,action,1440271555 +142702,260,fantasy,1440271544 +142702,260,sci-fi,1440271536 +142709,2160,scary,1180165967 +142713,3499,drama,1366798056 +142713,3499,Stephen King,1366798060 +142713,3499,thriller,1366798058 +142713,61132,Ben Stiller,1352726354 +142713,61132,funny,1352726378 +142713,61132,insanity,1352726403 +142713,61132,Jack Black,1352726373 +142713,61132,Robert Downey Jr.,1352726390 +142713,61132,satire,1352726368 +142713,79592,bad acting,1352726306 +142713,79592,funny,1352726257 +142713,79592,Mark Wahlberg,1352726239 +142713,79592,Will Ferrell,1352726243 +142725,260,adventure,1441323711 +142725,260,sci-fi,1441323703 +142738,260,classic,1434447765 +142738,260,sci-fi,1434447749 +142782,4822,childhood,1431622807 +142782,6753,Heart warming,1431622772 +142782,6753,Vintage,1431622782 +142789,520,good,1140602254 +142789,2529,dramatic,1140602252 +142804,26991,Sabu,1440182792 +142804,27328,SABU,1440182697 +142804,125698,SABU,1440182724 +142804,141664,Korean Film Archive,1441054182 +142804,141706,Korean Film Archive,1441140255 +142809,260,1970s,1438519994 +142809,260,star wars,1438519988 +142817,1080,Biblical,1416747705 +142817,1080,Christianity,1416747709 +142817,1080,hilarious,1416747713 +142817,1080,parody,1416747690 +142817,1258,psychological,1429860760 +142817,2340,Anthony Hopkins,1420320952 +142817,2340,Brad Pitt,1420320954 +142817,2340,death,1420320958 +142817,7502,emotional,1440016089 +142817,7502,friendship,1440016064 +142817,7502,historical,1440016075 +142817,7502,though provoking,1440016078 +142817,7502,touching,1440016527 +142817,89472,Catholicism,1417442356 +142817,89472,Christianity,1417442363 +142817,89472,comedy,1417442396 +142817,89472,fun,1417442262 +142817,89472,Italian,1417442365 +142817,89472,panic attack,1417442255 +142817,89472,psychology,1417442385 +142817,89472,religion,1417442367 +142817,109487,good science,1436598004 +142817,109487,physics,1436598007 +142817,109904,bjj,1423956535 +142817,109904,brazilian,1423956572 +142817,109904,documentary,1423956562 +142817,109904,fighting,1423956593 +142817,109904,gracie,1423956532 +142817,109904,jiu jitsu,1423956556 +142817,109904,Rickson Gracie,1423956529 +142817,110669,deception,1425719994 +142817,110669,fake psychics,1425720043 +142817,110669,magic,1425719990 +142817,114640,alien,1420207307 +142817,114640,bad movie,1420207314 +142817,115130,Bipolar disroder,1431331658 +142817,115130,Chess,1431331624 +142817,116161,Bennett Miller,1444662159 +142817,116161,psychological,1444602409 +142817,132046,Cheesy,1433453473 +142817,132046,For children,1433453461 +142820,99917,visual narrative,1372799379 +142822,102903,stupid ending,1451771225 +142864,4993,Fun,1448812468 +142864,4993,Overly Longwinded,1448812458 +142883,1210,space,1445572734 +142883,1210,Star Wars,1445572744 +142905,1129,action,1150139549 +142905,4625,time travel,1242074685 +142908,2406,adventure,1148172615 +142908,2406,jungle,1148172615 +142923,381,Love,1321380463 +142923,381,love story,1321380463 +142923,3100,Classic,1321380490 +142923,106782,visually appealing,1391714983 +142933,6073,less than 300 ratings,1226533871 +142943,26246,Metallica One video,1308894029 +142943,27044,lots of toplessness,1262721222 +142943,48516,Potential Oscar Nom,1171494417 +142943,68288,weak ending,1250485735 +142943,69481,very intense,1250768048 +142943,71503,incestuous,1261019314 +142943,71503,nudity topless,1261019314 +142943,72424,easily confused with other movie(s) (title),1259402193 +142943,72479,Ben Foster,1262426801 +142943,72479,sad but much good,1262426800 +142943,72980,pretty good movie,1270029426 +142943,74484,just totally awful. bad dialogue,1268114129 +142943,74484,nothing,1268114130 +142943,74946,Alice Eve,1270029685 +142943,74946,hottie,1270029665 +142943,78679,disturbing in a bad way,1288466271 +142943,78701,female nudity,1278457239 +142943,80126,boring,1308683999 +142943,80862,waste of time,1294510810 +142943,82167,female nudity,1292304959 +142943,94931,boring,1341079334 +142943,94931,No plot at al,1341079334 +142943,94931,Nudity (Full Frontal - Notable),1341079334 +142943,95058,nothing happens,1349890874 +142943,95058,stupid ending,1349890874 +142943,95488,Nudity (Topless - Notable),1350891024 +142943,95761,ending sucked,1359162624 +142943,101285,Nudity (Topless),1372316863 +142943,101893,boring,1365975186 +142943,105755,doesn't make sense,1391129473 +142943,105755,impressive cast,1391129473 +142943,105755,no answers,1391129473 +142943,108729,worst ending ever,1397366202 +142943,114925,Editing,1418544908 +142943,114925,Plot Holes,1418544904 +142943,119966,ends abrutly,1419786747 +142943,120474,animation,1420246622 +142943,120474,family friendly,1420246622 +142943,120474,short,1420246622 +142951,593,murder,1437034308 +142951,593,r:violence,1437034308 +142951,593,suspense,1437034308 +142954,858,Al Pacino,1382479847 +142954,858,organized crime,1382479842 +142954,858,oscar (best directing),1382479855 +142954,45503,inspirational,1382993766 +142954,55286,addiction,1382872840 +142954,55286,loss,1382872821 +142954,89864,comicotragedy,1382992612 +142954,89864,drugs,1382992631 +142954,89864,predictable,1382992622 +142954,95167,holes in the plot,1382995199 +142954,95167,Kick-Butt Women,1382995160 +142954,95167,Scotland,1382995175 +142954,103449,Noomi Rapace,1382998932 +142954,106841,Julia Roberts,1388698746 +142954,106841,meryl streep,1388698741 +142961,780,conspiracy theory,1444666173 +142961,780,sci-fi,1444666158 +142961,780,war,1444666175 +142961,780,will smith,1444666149 +142961,4370,artificial intelligence,1444666201 +142961,4370,future,1444666214 +142961,4370,Steven Spielberg,1444666212 +142961,109487,depressing,1444666253 +142961,109487,Masterpiece,1444666280 +142961,109487,philosophical issues,1444666276 +142961,109487,science fiction,1444666274 +142961,109487,space,1444666260 +142961,109487,time travel,1444666267 +142961,109487,time-travel,1444666264 +142961,110730,artificial intelligence,1444666308 +142961,110730,computers,1444666316 +142961,110730,Johnny Depp,1444666310 +142961,110730,Morgan Freeman,1444666313 +142982,260,classic,1449795832 +142982,260,classic sci-fi,1449795838 +142982,260,cult classic,1449795813 +142982,260,George Lucas,1449795805 +142982,260,Harrison Ford,1449795826 +142982,260,Science Fiction,1449795822 +142982,260,space adventure,1449795840 +142982,260,Star Wars,1449795830 +142982,480,adventure,1449796121 +142982,480,Dinosaurs,1449796108 +142982,480,John Williams,1449796103 +142982,480,Oscar (Best Effects - Visual Effects),1449796098 +142982,480,sci-fi,1449796118 +142982,480,Steven Spielberg,1449796090 +142994,3825,music,1231395776 +143007,109487,2014,1416078242 +143007,109487,Cineworld,1416078235 +143019,700,Is available on Netflix,1314301934 +143019,818,Terrible,1314302653 +143019,59421,Terrible Terrible,1314303051 +143024,186,cheesy,1246708321 +143024,186,hugh grant,1246708329 +143024,1049,seen at the cinema,1246708390 +143024,2324,bittersweet,1246386518 +143024,2324,father-son relationship,1246386523 +143024,2324,Holocaust,1246386530 +143024,2324,optimism,1246386549 +143024,2324,survival,1246386558 +143024,5391,coincidences,1246707076 +143024,5391,multiple storylines,1246707067 +143024,5391,nonlinear,1246707084 +143024,6711,atmospheric,1246386984 +143024,6711,isolation,1246387015 +143024,6942,british,1246708035 +143024,6942,christmas,1246708025 +143024,6942,Hugh Grant,1246708008 +143024,7317,comedy,1210633350 +143024,31410,Adolf Hitler,1246385939 +143024,31410,controversial,1246386027 +143024,31410,disturbing,1246385957 +143024,31410,factual,1246386001 +143024,31410,historical,1246385981 +143024,31410,suicide,1246385971 +143024,31410,World War II,1246386011 +143024,44555,corruption,1246386482 +143024,44555,freedom of expression,1246386472 +143024,44555,spying,1246386448 +143024,44555,suicide,1246386452 +143024,48394,bittersweet,1246393905 +143024,48394,twist ending,1246393900 +143038,1732,coen brothers,1440275001 +143038,1732,comedy,1440274984 +143038,1732,great dialogue,1440274982 +143038,1732,great soundtrack,1440275005 +143038,1732,off-beat comedy,1440274987 +143038,109374,cinematography,1440274581 +143038,109374,stylized,1440274573 +143038,109374,visually appealing,1440274565 +143038,109374,Wes Anderson,1440274558 +143043,318,frank darabont,1431424864 +143043,318,stephen king,1431424864 +143043,318,tim robbins,1431424864 +143043,356,great acting,1429390161 +143043,356,poignant,1429390161 +143043,356,very moving,1429390161 +143043,593,best performance: anthony hopkins as hannibal lecter,1430739854 +143043,593,jodie foster,1430739854 +143043,593,jonathan demme,1430739854 +143043,132586,Briatore,1429826535 +143043,132586,documentary,1429826576 +143043,132586,Flavio Briatore,1429826706 +143043,132586,fly on the wall,1429826600 +143043,132586,Football,1429826649 +143043,132586,Hodgson,1429826544 +143043,132586,Loftus Road,1429826608 +143043,132586,Matt Hodgson,1429826778 +143043,132586,QPR,1429826524 +143043,132586,Queens Park Rangers,1429826618 +143043,132586,Soccer,1429826682 +143078,1196,sci-fi,1423939628 +143078,2495,Avant Garde,1421162680 +143078,2495,Social Commentary,1421162682 +143078,2495,Surreal,1421162620 +143078,3510,father-son relationship,1423940048 +143078,3510,time travel,1423940038 +143078,57504,friendship,1421009433 +143078,57504,japanese,1421009440 +143078,57504,time travel,1421009427 +143125,608,Coen Brothers,1424378635 +143125,608,dark comedy,1424378638 +143125,608,quirky,1424378645 +143125,2278,car chase,1424873818 +143125,2278,Robert De Niro,1424873827 +143125,2278,spy thriller,1380393753 +143125,4993,Adventure,1426517022 +143125,55276,George Clooney,1452353957 +143125,55276,Slow pacing,1452353979 +143125,61132,funny,1447607864 +143125,61132,satire,1447607860 +143125,64983,World War II,1426516879 +143125,68157,black comedy,1426516806 +143125,68157,Brad Pitt,1426516798 +143125,68157,Christoph Waltz,1426516809 +143125,68157,dark comedy,1426516795 +143125,68157,dialogue,1426516821 +143125,68157,Quentin Tarantino,1426516797 +143125,68157,satire,1426516803 +143125,68157,World War II,1426516800 +143125,72011,loneliness,1447176959 +143125,72011,Nudity (Rear),1447176992 +143125,72011,Vera Farmiga,1447176983 +143125,72011,witty,1447177003 +143125,89804,politics,1427909610 +143125,89804,Ryan Gosling,1427909614 +143125,97921,Jennifer Lawrence,1380393488 +143125,99114,Christoph Waltz,1426516721 +143125,99114,Great performances,1426516743 +143125,99114,Humour,1426516753 +143125,99114,Quentin Tarantino,1426516714 +143125,99114,Soundtrack,1426516738 +143125,99114,Spaghetti Western,1426516733 +143125,99114,visually appealing,1426516755 +143125,103980,acting,1447177055 +143125,110501,car chase,1427402451 +143125,110501,martial arts,1427402449 +143125,112171,Denzel Washington,1447177554 +143125,112552,good acting,1447607847 +143125,112552,jazz,1447607847 +143125,115713,artificial intelligence,1435410394 +143125,115713,philosophical,1435410406 +143125,115713,sci-fi,1435410398 +143125,115713,thought provoking,1435410403 +143125,122882,charlize theron,1441727356 +143125,122882,dystopian,1441727353 +143125,122882,non-stop,1441727360 +143125,122882,post apocalypse,1441727347 +143125,130618,grippy,1428197462 +143139,3306,Chaplin,1181334082 +143139,6947,Paul Bettany,1180820204 +143147,260,space opera,1438207962 +143147,260,spielberg/lucas,1438207973 +143178,260,classic sci-fi,1440223133 +143178,260,space adventure,1440223156 +143178,260,space war,1440223175 +143178,71033,Argentina,1440223648 +143178,71033,based on a book,1440223677 +143178,71033,beautiful,1440223683 +143178,71033,excellent acting,1440223672 +143178,71033,excellent script,1440223651 +143178,71033,good comedy,1440223546 +143178,71033,love,1440223712 +143178,71033,nostalgic,1440223705 +143178,71033,rape,1440223703 +143178,71033,revenge,1440223645 +143178,71033,Ricardo Darin,1440223666 +143178,71033,Spanish,1440223655 +143178,71033,suspenso,1440223559 +143181,103141,monster,1431958459 +143181,103141,Pixar,1431958456 +143181,112175,dragons,1431958370 +143181,112175,good story,1431958403 +143181,112175,sequel,1431958374 +143198,260,action,1432477555 +143198,260,Science Fiction,1432477552 +143206,296,Classic Film,1138181900 +143209,837,Roald Dhal,1187177781 +143209,1245,Maffia,1187177758 +143209,1693,Hollywood drama,1187177817 +143209,1717,Teen movie,1187177620 +143209,1894,Chick flic,1187177794 +143209,3617,Teen movie,1187177608 +143209,3785,corny,1187177498 +143209,3916,Cheesy,1187177602 +143209,4015,shallow,1187177873 +143209,4015,Teen movie,1187177873 +143209,4262,Classic,1187177549 +143209,4310,Too long,1187177538 +143209,4367,Game related,1187177657 +143209,4975,Purple Sky,1187177630 +143209,5064,costume drama,1187177905 +143209,5225,Fast,1187177972 +143209,5225,Latin,1187177972 +143209,5225,Refreshing,1187177972 +143209,5225,sexy,1187177972 +143209,5528,Robin Williams,1187177940 +143209,5618,cultural classic,1187177572 +143209,5679,cheesy bad,1187177490 +143209,6016,Refreshing,1187177734 +143209,6378,Straightforward,1187177522 +143209,6870,Shallow drama,1187177715 +143209,7147,Dreamy,1187177434 +143243,587,Demi Moore,1378579201 +143243,587,Patrick Swayze,1378579205 +143243,1527,Bruce Willis,1378577490 +143243,1527,humorous,1378577493 +143243,1625,Michael Douglas,1378578909 +143243,1625,plot twist,1378578914 +143243,1625,twist ending,1378578911 +143243,4344,computers,1378578258 +143243,4344,hacking,1378578260 +143243,4344,Nudity (Topless),1378578268 +143243,5541,humor,1378579695 +143243,5541,So funny,1378579698 +143243,5608,brutal,1378579028 +143243,5608,human nature,1378579024 +143243,5608,psychology,1378579014 +143243,5608,thought-provoking,1378579017 +143243,27178,self discovery,1378579088 +143243,30825,Robert De Niro,1378578783 +143243,31807,Twisted Ending,1378580194 +143243,33154,economics,1378577367 +143243,33154,History,1378577379 +143243,33679,Angelina Jolie,1378578339 +143243,33679,Brad Pitt,1378578337 +143243,33679,spies,1378578341 +143243,47610,Edward Norton,1378578888 +143243,47610,stage magic,1378578884 +143243,48780,magic,1378578866 +143243,79860,nazi as good guy,1378578963 +143243,79860,thought-provoking,1378578969 +143243,85367,Jennifer Aniston,1378580814 +143243,88405,sex,1378580910 +143243,89492,Brad Pitt,1378579983 +143243,89492,intelligent,1378579988 +143243,89492,math,1378579991 +143264,1,animation,1278669112 +143264,1,children,1278669119 +143264,1,computer animation,1278669124 +143264,1,Disney,1278669130 +143264,1,imdb top 250,1278669201 +143264,1,John Lasseter,1278669166 +143264,1,Pixar,1278669134 +143264,1,Tom Hanks,1278669145 +143264,6,Al Pacino,1392885732 +143264,6,atmospheric,1392885737 +143264,6,bank robbery,1392885740 +143264,6,crime,1392885743 +143264,6,dialogue,1439538506 +143264,6,great acting,1392885747 +143264,6,gunfight,1439538509 +143264,6,HD MKV,1439538530 +143264,6,imdb top 250,1392885751 +143264,6,long,1439538513 +143264,6,Los Angeles,1392885753 +143264,6,Michael Mann,1392885789 +143264,6,Natalie Portman,1392885756 +143264,6,philosophy,1392885761 +143264,6,police,1439538515 +143264,6,realistic,1439538517 +143264,6,realistic action,1392885765 +143264,6,Robert De Niro,1392885767 +143264,6,suspense,1392885771 +143264,6,tense,1392885777 +143264,6,Val Kilmer,1392885779 +143264,16,na dysku,1431441187 +143264,17,na dysku,1431440342 +143264,25,na dysku,1431442014 +143264,32,Brad Pitt,1279440571 +143264,32,British,1279440681 +143264,32,Bruce Willis,1279440573 +143264,32,Christopher Plummer,1279440656 +143264,32,DVD,1279440543 +143264,32,future,1279440579 +143264,32,great ending,1368284321 +143264,32,imdb top 250,1279440613 +143264,32,original,1368283827 +143264,32,Post apocalyptic,1279440619 +143264,32,Saturn Award (Best Science Fiction Film),1279440628 +143264,32,sci-fi,1279440634 +143264,32,Terry Gilliam,1279440672 +143264,32,time travel,1279440638 +143264,32,twist ending,1279440641 +143264,47,DIVX,1182757535 +143264,47,great ending,1368284322 +143264,70,cult classic,1368284246 +143264,101,na dysku,1431441077 +143264,110,DIVX,1154867779 +143264,111,Do zassania,1156594443 +143264,111,loneliness,1368284012 +143264,115,01/11,1294602640 +143264,115,03/10,1268474910 +143264,115,05/10,1272802697 +143264,115,06/10,1276350825 +143264,115,08/10,1281785454 +143264,115,10/10,1287950782 +143264,115,11/10,1289053974 +143264,115,12/10,1292694829 +143264,150,dramatic,1368284094 +143264,169,family,1368284294 +143264,180,DVD,1398707188 +143264,204,action,1368284120 +143264,215,Austria,1439536809 +143264,215,bittersweet,1376938710 +143264,215,conversation,1376938712 +143264,215,ethan hawke,1376938716 +143264,215,HD MKV,1439536790 +143264,215,intelligent,1376938721 +143264,215,Julie Delpy,1376938752 +143264,215,love story,1376938725 +143264,215,minimalist,1439536799 +143264,215,quirky,1376938729 +143264,215,reflective,1376938732 +143264,215,Richard Linklater,1376938761 +143264,215,romantic,1376938736 +143264,215,trains,1376938740 +143264,215,Vienna,1376938744 +143264,223,Do kupienia,1156713809 +143264,235,Bill Murray,1420897328 +143264,235,Biography,1420897330 +143264,235,black and white,1420897333 +143264,235,DIVX,1420897378 +143264,235,imdb top 250,1420897338 +143264,235,Johnny Depp,1420897340 +143264,235,Martin Landau,1420897361 +143264,235,movie business,1420897343 +143264,235,Oscar (Best Supporting Actor),1420897346 +143264,235,quirky,1420897350 +143264,235,Tim Burton,1420897351 +143264,235,true story,1420897353 +143264,263,Crissy Rock,1402483918 +143264,263,DIVX,1402483933 +143264,263,Ken Loach,1402483857 +143264,263,social commentary,1402483894 +143264,288,DVD,1398706950 +143264,293,Do kupienia,1154867213 +143264,296,DVD,1144440770 +143264,296,storytelling,1368283959 +143264,306,na dysku,1431440054 +143264,307,na dysku,1415617053 +143264,318,DVD,1212516653 +143264,318,great acting,1368284217 +143264,318,great ending,1368284321 +143264,337,na dysku,1431441210 +143264,364,africa,1420899909 +143264,364,animals,1420899911 +143264,364,animation,1420899913 +143264,364,classic,1420899917 +143264,364,coming of age,1420899920 +143264,364,Disney,1420899922 +143264,364,DVD,1420900317 +143264,364,Elton John,1420900282 +143264,364,father-son relationship,1420899925 +143264,364,Hans Zimmer,1420900135 +143264,364,Jeremy Irons,1420900101 +143264,364,lions,1420899928 +143264,364,Matthew Broderick,1420900088 +143264,364,musical,1420899931 +143264,364,Oscar (Best Music - Original Score),1420899934 +143264,364,Oscar (Best Music - Original Song),1420899937 +143264,364,Rob Minkoff,1420900014 +143264,364,Roger Allers,1420900007 +143264,364,Rowan Atkinson,1420900120 +143264,364,talking animals,1420899943 +143264,455,family,1368284294 +143264,469,DVD,1168799621 +143264,475,1970s,1427099568 +143264,475,based on a true story,1427099574 +143264,475,corruption,1427099577 +143264,475,courtroom,1427099580 +143264,475,Daniel Day-Lewis,1427099546 +143264,475,drama,1427099582 +143264,475,father-son relationship,1427099584 +143264,475,great soundtrack,1427099706 +143264,475,history,1427099776 +143264,475,imdb top 250,1427099626 +143264,475,Ireland,1427099591 +143264,475,Jim Sheridan,1427099558 +143264,475,lawyers,1427099594 +143264,475,Pete Postlethwaite,1427099552 +143264,475,police,1427099597 +143264,475,prison,1427099600 +143264,475,terrorism,1427099603 +143264,475,Trevor Jones,1427099671 +143264,475,true story,1427099606 +143264,508,AIDs,1366820708 +143264,508,courtroom,1366820725 +143264,508,death,1366820775 +143264,508,Denzel Washington,1366820727 +143264,508,DIVX,1366820909 +143264,508,dramatic,1368284095 +143264,508,gay,1366820758 +143264,508,Great Songs,1366820875 +143264,508,Jonathan Demme,1366820748 +143264,508,love,1366820753 +143264,508,Oscar (Best Actor),1366820732 +143264,508,sad,1366820767 +143264,508,Tom Hanks,1366820734 +143264,515,na dysku,1431440518 +143264,527,Do kupienia,1161556069 +143264,529,na dysku,1431440901 +143264,541,artificial intelligence,1317747185 +143264,541,atmospheric,1317747189 +143264,541,based on a book,1317747192 +143264,541,cyberpunk,1317747198 +143264,541,DIVX,1317748228 +143264,541,dystopia,1317747203 +143264,541,Harrison Ford,1317747207 +143264,541,imdb top 250,1317747211 +143264,541,Philip K. Dick,1317747213 +143264,541,robots,1317747216 +143264,541,Rutger Hauer,1317747228 +143264,541,sci-fi,1317747218 +143264,541,Vangelis,1317747251 +143264,551,na dysku,1422129241 +143264,555,na dysku,1431441057 +143264,589,na dysku,1422129169 +143264,590,na dysku,1431441229 +143264,593,great acting,1368284217 +143264,593,VHS,1154867416 +143264,595,18th century,1420898593 +143264,595,Alan Menken,1420898753 +143264,595,animation,1420898598 +143264,595,beautiful,1420898602 +143264,595,Disney,1420898607 +143264,595,DIVX,1420898721 +143264,595,Do zassania HD,1420898694 +143264,595,fairy tale,1420898611 +143264,595,France,1420898614 +143264,595,gentle,1420898618 +143264,595,heartwarming,1420898621 +143264,595,humorous,1420898625 +143264,595,kids and family,1420898628 +143264,595,Oscar (Best Music - Original Score),1420898632 +143264,595,Oscar (Best Music - Original Song),1420898636 +143264,595,romance,1420898639 +143264,608,black comedy,1448921198 +143264,608,Carter Burwell,1448921329 +143264,608,Coen Brothers,1448921189 +143264,608,crime,1448921208 +143264,608,dark humor,1448921229 +143264,608,Frances McDormand,1448921231 +143264,608,funny,1448921240 +143264,608,imdb top 250,1448921251 +143264,608,KIDNAPPING,1448921226 +143264,608,Minnesota,1448921218 +143264,608,murder,1448921210 +143264,608,Oscar (Best Actress),1448921254 +143264,608,police,1448921242 +143264,608,quirky,1448921205 +143264,608,snow,1448921256 +143264,608,Steve Buscemi,1448921221 +143264,608,strong female,1448921216 +143264,608,violent,1448921214 +143264,608,William H. Macy,1448921235 +143264,668,criterion,1368283986 +143264,678,na dysku,1384377240 +143264,741,na dysku,1410975247 +143264,748,alien invasion,1264159529 +143264,748,aliens,1264159535 +143264,748,Charlie Sheen,1264159539 +143264,748,David N. Twohy,1264159542 +143264,748,DVD,1264159506 +143264,748,Ron Silver,1264159558 +143264,748,Teri Polo,1264159565 +143264,787,01/10,1262377970 +143264,804,relationships,1368284152 +143264,858,DIVX,1182757570 +143264,858,great acting,1368284217 +143264,904,Alfred Hitchcock,1272363590 +143264,904,DIVX,1272363580 +143264,904,Grace Kelly,1272363636 +143264,904,imdb top 250,1272363605 +143264,904,James Stewart,1272363614 +143264,904,mystery,1272363619 +143264,904,voyeurism,1272363647 +143264,912,black and white,1270498467 +143264,912,classic,1270498476 +143264,912,DIVX,1270498459 +143264,912,Humphrey Bogart,1270498483 +143264,912,imdb top 250,1270498486 +143264,912,Oscar (Best Directing),1270498533 +143264,912,Oscar (Best Picture),1270498538 +143264,912,World War II,1270498505 +143264,1015,family,1368284294 +143264,1016,family,1368284294 +143264,1060,na dysku,1393885482 +143264,1077,na dysku,1431440740 +143264,1079,VHS,1154867289 +143264,1080,DVD,1398707103 +143264,1089,na dysku,1431439125 +143264,1090,anti-war,1317751597 +143264,1090,Charlie Sheen,1317751484 +143264,1090,DIVX,1317751607 +143264,1090,Forest Whitaker,1317751552 +143264,1090,imdb top 250,1317751490 +143264,1090,Oliver Stone,1317751495 +143264,1090,Oscar (Best Directing),1317751498 +143264,1090,Oscar (Best Editing),1317751508 +143264,1090,Oscar (Best Picture),1317751512 +143264,1090,Oscar (Best Sound),1317751516 +143264,1090,psychological,1317751519 +143264,1090,Tom Berenger,1317751583 +143264,1090,Vietnam War,1317751522 +143264,1090,Willem Dafoe,1317751527 +143264,1091,DVD,1153865979 +143264,1109,01/12,1327258395 +143264,1109,11/11,1321718827 +143264,1109,12/11,1323549174 +143264,1111,DVD,1179097848 +143264,1136,Do kupienia,1159801875 +143264,1148,DIVX,1232819827 +143264,1172,mentor,1368283876 +143264,1175,weird,1368284185 +143264,1176,DVD,1234119994 +143264,1185,na dysku,1431440666 +143264,1190,Antonio Banderas,1316356875 +143264,1190,Do zassania,1316357174 +143264,1190,kidnapping,1316356884 +143264,1190,movie business,1316356830 +143264,1190,movies about movies,1316356833 +143264,1190,Nudity (Full Frontal),1316356838 +143264,1190,Pedro Almodovar,1316356845 +143264,1190,Spanish,1316356851 +143264,1193,DVD,1212516626 +143264,1199,cerebral,1368284534 +143264,1199,weird,1368284185 +143264,1200,action,1425983606 +143264,1200,aliens,1425983601 +143264,1200,atmospheric,1425983608 +143264,1200,classic,1425983611 +143264,1200,imdb top 250,1425983613 +143264,1200,James Cameron,1425983645 +143264,1200,military,1425983616 +143264,1200,mkv,1425983664 +143264,1200,Oscar (Best Effects - Visual Effects),1425983620 +143264,1200,sci-fi,1425983623 +143264,1200,Sigourney Weaver,1425983625 +143264,1200,space,1425983628 +143264,1200,suspense,1425983632 +143264,1201,American Civil War,1270498087 +143264,1201,atmospheric,1396298203 +143264,1201,Clint Eastwood,1270498094 +143264,1201,DVD,1396298232 +143264,1201,Ennio Morricone,1270498098 +143264,1201,humorous,1270498103 +143264,1201,imdb top 250,1270498107 +143264,1201,quirky,1396298219 +143264,1201,Sergio Leone,1396298214 +143264,1201,spaghetti western,1396298216 +143264,1201,western,1270498120 +143264,1203,classic,1424212976 +143264,1203,courtroom drama,1424212981 +143264,1203,crime,1424212983 +143264,1203,DIVX,1424213011 +143264,1203,good dialogue,1424212986 +143264,1203,Henry Fonda,1424212964 +143264,1203,imdb top 250,1424212989 +143264,1203,low budget,1424212993 +143264,1203,racism,1424212995 +143264,1203,Sidney Lumet,1424213043 +143264,1203,social commentary,1424212997 +143264,1203,thought-provoking,1424212999 +143264,1207,atmospheric,1438031253 +143264,1207,based on a book,1438031260 +143264,1207,classic,1438031273 +143264,1207,courtroom drama,1438031243 +143264,1207,DVD,1438031290 +143264,1207,Gregory Peck,1438031268 +143264,1207,Oscar (Best Actor),1438031256 +143264,1207,racism,1438031235 +143264,1207,social commentary,1438031240 +143264,1209,atmospheric,1399399566 +143264,1209,Charles Bronson,1399399754 +143264,1209,classic,1399399569 +143264,1209,Claudia Cardinale,1399399733 +143264,1209,Do kupienia,1399399763 +143264,1209,drama,1399399684 +143264,1209,Ennio Morricone,1399399686 +143264,1209,epic,1399399689 +143264,1209,great soundtrack,1399399692 +143264,1209,Henry Fonda,1399399726 +143264,1209,imdb top 250,1399399695 +143264,1209,Jason Robards,1399399748 +143264,1209,Sergio Leone,1399399699 +143264,1209,Spaghetti Western,1399399703 +143264,1209,stylized,1399399707 +143264,1209,trains,1399399710 +143264,1209,violence,1399399714 +143264,1209,visually appealing,1399399720 +143264,1209,western,1399399717 +143264,1213,anti-hero,1448921922 +143264,1213,based on a book,1448921899 +143264,1213,biography,1448921907 +143264,1213,crime,1448921888 +143264,1213,gangsters,1448921901 +143264,1213,good dialogue,1448921891 +143264,1213,imdb top 250,1448921915 +143264,1213,Joe Pesci,1448921895 +143264,1213,mafia,1448921870 +143264,1213,Martin Scorsese,1448921872 +143264,1213,masterpiece,1448921883 +143264,1213,MKV HD,1448921939 +143264,1213,na dysku,1384377093 +143264,1213,organized crime,1448921877 +143264,1213,oscar (best directing),1448921912 +143264,1213,Oscar (Best Supporting Actor),1448921919 +143264,1213,Ray Liotta,1448921905 +143264,1213,robert de niro,1448921875 +143264,1213,Samuel L. Jackson,1448921897 +143264,1213,stylish,1448921886 +143264,1213,stylized,1448921927 +143264,1213,violence,1448921881 +143264,1213,violent,1448921910 +143264,1214,DIVX,1154867476 +143264,1216,dolphins,1319535193 +143264,1216,DVD,1319535179 +143264,1216,Eric Serra,1319535281 +143264,1216,free air diving,1319535217 +143264,1216,Jean Reno,1319535199 +143264,1216,Luc Besson,1319535204 +143264,1216,Nudity (Topless - Brief),1319535207 +143264,1216,sad,1319535301 +143264,1216,water,1319535222 +143264,1217,Akira Kurosawa,1431817852 +143264,1217,Japan,1431817855 +143264,1217,samurai,1431817849 +143264,1217,too long,1431817867 +143264,1221,DIVX,1183656646 +143264,1222,anti-war,1305009067 +143264,1222,DIVX,1305009059 +143264,1222,imdb top 250,1305009300 +143264,1222,political,1305009305 +143264,1222,Stanley Kubrick,1305009308 +143264,1222,Vietnam War,1305009315 +143264,1222,war,1305009322 +143264,1225,18th century,1255682477 +143264,1225,biography,1255682485 +143264,1225,classical music,1255682489 +143264,1225,Do zassania,1255682439 +143264,1225,DVD,1317746202 +143264,1225,F. Murray Abraham,1317746126 +143264,1225,history,1317746184 +143264,1225,imdb top 250,1317746167 +143264,1225,Milos Forman,1317746096 +143264,1225,music,1255682504 +143264,1225,Nudity (Topless),1317746109 +143264,1225,Oscar (Best Actor),1255682512 +143264,1225,Oscar (Best Directing),1255682515 +143264,1225,Oscar (Best Picture),1255682518 +143264,1225,Oscar (Best Sound),1255682521 +143264,1225,Tom Hulce,1317746135 +143264,1225,true story,1255682525 +143264,1225,Wolfgang Amadeus Mozart,1317746146 +143264,1234,VHS,1154867705 +143264,1241,cult classic,1368284246 +143264,1242,American Civil War,1246558082 +143264,1242,based on book,1246558090 +143264,1242,denzel washington,1246558098 +143264,1242,Do zassania,1246558043 +143264,1242,History,1246558110 +143264,1242,Morgan Freeman,1246558117 +143264,1242,true story,1246558124 +143264,1242,War,1246558128 +143264,1248,criterion,1368283986 +143264,1249,DVD,1212516596 +143264,1252,1930s,1320400240 +143264,1252,atmospheric,1320400246 +143264,1252,cynical,1320400251 +143264,1252,DIVX,1320401088 +143264,1252,Film Noir,1320400253 +143264,1252,imdb top 250,1320400259 +143264,1252,Jack Nicholson,1320400262 +143264,1252,Nudity (Topless - Brief),1320400266 +143264,1252,Oscar (Best Writing - Screenplay Written Directly for the Screen),1320400271 +143264,1252,private detective,1320400274 +143264,1252,Roman Polanski,1320400277 +143264,1255,cult classic,1368284246 +143264,1258,atmospheric,1325661559 +143264,1258,based on a book,1325661562 +143264,1258,DIVX,1325661720 +143264,1258,ghosts,1325661568 +143264,1258,imdb top 250,1325661608 +143264,1258,Jack Nicholson,1325661571 +143264,1258,Nudity (Full Frontal),1325661583 +143264,1258,psychological,1325661586 +143264,1258,Scatman Crothers,1325661656 +143264,1258,Stanley Kubrick,1325661591 +143264,1258,Stephen King,1325661594 +143264,1258,visually appealing,1325661598 +143264,1259,based on a book,1317752646 +143264,1259,childhood,1317752648 +143264,1259,coming of age,1317752653 +143264,1259,Corey Feldman,1317752853 +143264,1259,DIVX,1317753357 +143264,1259,friendship,1317752657 +143264,1259,imdb top 250,1317752659 +143264,1259,INNOCENCE LOST,1317752668 +143264,1259,Jerry O'Connell,1317752880 +143264,1259,nostalgic,1317752673 +143264,1259,River Phoenix,1317752845 +143264,1259,Rob Reiner,1317752709 +143264,1259,Stephen King,1317752679 +143264,1259,Wil Wheaton,1317752819 +143264,1262,DIVX,1325662140 +143264,1262,escape,1325662044 +143264,1262,historical,1325662049 +143264,1262,imdb top 250,1325662071 +143264,1262,long,1325662075 +143264,1262,prison escape,1325662089 +143264,1262,Steve McQueen,1325662091 +143264,1262,true story,1325662097 +143264,1262,World War II,1325662099 +143264,1263,boring,1392142464 +143264,1263,Christopher Walken,1392142413 +143264,1263,friendship,1392142417 +143264,1263,imdb top 250,1392142421 +143264,1263,Meryl Streep,1392142424 +143264,1263,Oscar (Best Directing),1392142427 +143264,1263,Oscar (Best Picture),1392142430 +143264,1263,Oscar (Best Supporting Actor),1392142432 +143264,1263,Robert De Niro,1392142436 +143264,1263,too long,1392142447 +143264,1263,Vietnam War,1392142440 +143264,1265,DVD,1177015878 +143264,1266,classic,1383599550 +143264,1266,Clint Eastwood,1383599552 +143264,1266,DIVX,1383599605 +143264,1266,Gene Hackman,1383599555 +143264,1266,great acting,1383599557 +143264,1266,imdb top 250,1383599562 +143264,1266,Morgan Freeman,1383599566 +143264,1266,oscar (best cinematography),1383599569 +143264,1266,Oscar (Best Directing),1383599574 +143264,1266,Oscar (Best Picture),1383599576 +143264,1266,Oscar (Best Supporting Actor),1383599580 +143264,1266,revenge,1383599583 +143264,1266,western,1383599586 +143264,1271,based on a book,1271066387 +143264,1271,Drama,1271066397 +143264,1271,ku klux klan,1271066402 +143264,1271,racism,1271066410 +143264,1271,sentimental,1271066413 +143264,1271,train,1271066417 +143264,1271,women,1271066422 +143264,1281,na dysku,1431439447 +143264,1288,na dysku,1384377270 +143264,1291,action,1420974442 +143264,1291,Adventure,1420974446 +143264,1291,archaeology,1420974448 +143264,1291,Comedy,1420974452 +143264,1291,father-son relationship,1420974455 +143264,1291,Harrison Ford,1420974457 +143264,1291,imdb top 250,1420974460 +143264,1291,indiana jones,1420974473 +143264,1291,John Williams,1420974523 +143264,1291,Nazis,1420974484 +143264,1291,Sean Connery,1420974489 +143264,1291,Sequel,1420974496 +143264,1291,Steven Spielberg,1420974493 +143264,1291,treasure,1420974507 +143264,1300,na dysku,1431439913 +143264,1307,relationships,1368284152 +143264,1394,na dysku,1384377317 +143264,1399,DVD,1154867664 +143264,1420,01/11,1294602562 +143264,1420,02/11,1297599504 +143264,1420,03/10,1268474947 +143264,1420,03/11,1299424206 +143264,1420,05/10,1272802770 +143264,1420,06/10,1276350932 +143264,1420,08/10,1282483775 +143264,1420,10/10,1287950828 +143264,1420,11/10,1289063102 +143264,1420,12/10,1292694848 +143264,1500,na dysku,1403040874 +143264,1527,DVD,1154867122 +143264,1527,visually appealing,1368284201 +143264,1552,action,1368284120 +143264,1608,action,1368284120 +143264,1617,Crime,1255683471 +143264,1617,Danny DeVito,1255683479 +143264,1617,DVD,1398707256 +143264,1617,film noir,1255683485 +143264,1617,great acting,1368284217 +143264,1617,Guy Pearce,1255683491 +143264,1617,Kevin Spacey,1255683495 +143264,1617,Kim Basinger,1255683500 +143264,1617,Oscar (Best Supporting Actress),1255683508 +143264,1617,Russell Crowe,1255683512 +143264,1617,want to see again,1255683522 +143264,1623,horror,1368284274 +143264,1625,action,1383599690 +143264,1625,atmospheric,1383599693 +143264,1625,complicated,1383599698 +143264,1625,David Fincher,1383599701 +143264,1625,DIVX,1383599748 +143264,1625,Michael Douglas,1383599704 +143264,1625,Mystery,1383599706 +143264,1625,paranoia,1383599711 +143264,1625,plot twist,1383599717 +143264,1625,Sean Penn,1383599721 +143264,1625,twist ending,1383599728 +143264,1639,DVD,1177014153 +143264,1639,relationships,1368284152 +143264,1641,DVD,1234120045 +143264,1682,na dysku,1422129194 +143264,1704,Ben Affleck,1271012388 +143264,1704,boston,1271012392 +143264,1704,DIVX,1271013081 +143264,1704,Gus Van Sant,1271012402 +143264,1704,imdb top 250,1271012466 +143264,1704,mathematics,1271012406 +143264,1704,Matt Damon,1271012409 +143264,1704,mentor,1368283876 +143264,1704,Oscar (Best Supporting Actor),1271012416 +143264,1704,Oscar (Best Writing - Screenplay Written Directly for the Screen),1271012548 +143264,1704,psychology,1271012424 +143264,1704,Robin Williams,1271012426 +143264,1711,DIVX,1154867396 +143264,1722,action,1368284121 +143264,1729,na dysku,1431441775 +143264,1732,DVD,1212516510 +143264,1748,na dysku,1431441121 +143264,1768,11/10,1290334551 +143264,1768,12/10,1292696133 +143264,1784,DIVX,1154867510 +143264,1809,na dysku,1431440387 +143264,1819,01/11,1295206461 +143264,1819,01/12,1327258227 +143264,1819,02/11,1297618194 +143264,1819,03/11,1299425655 +143264,1819,05/11,1305463258 +143264,1819,06/11,1307202955 +143264,1819,11/10,1289064466 +143264,1819,11/11,1321718541 +143264,1819,12/10,1292695761 +143264,1819,12/11,1323548873 +143264,1907,animation,1427101337 +143264,1907,China,1427101340 +143264,1907,Disney,1427101343 +143264,1907,Eddie Murphy,1427101345 +143264,1907,great soundtrack,1427101350 +143264,1907,military,1427101353 +143264,1907,musical,1427101355 +143264,1907,strong female lead,1427101358 +143264,1912,na dysku,1431441811 +143264,1915,03/11,1300620417 +143264,1915,05/11,1305463696 +143264,1915,06/11,1307203169 +143264,1915,11/11,1321718813 +143264,1915,12/11,1323549160 +143264,1952,loneliness,1368284012 +143264,1955,1970s,1430251808 +143264,1955,bittersweet,1430251812 +143264,1955,divorce,1430251814 +143264,1955,DIVX,1430251876 +143264,1955,drama,1430251818 +143264,1955,Dustin Hoffman,1430251820 +143264,1955,father-son relationship,1430251824 +143264,1955,Meryl Streep,1430251830 +143264,1955,nudity (topless),1430251834 +143264,1955,Oscar (Best Actor),1430251843 +143264,1955,Oscar (Best Directing),1430251846 +143264,1955,Oscar (Best Picture),1430251853 +143264,1955,Oscar (Best Supporting Actress),1430251858 +143264,1955,Robert Benton,1430251861 +143264,1955,single father,1430251864 +143264,1956,na dysku,1431440609 +143264,1961,autism,1317748124 +143264,1961,Barry Levinson,1317748181 +143264,1961,dark comedy,1317748129 +143264,1961,DIVX,1317748202 +143264,1961,Dustin Hoffman,1317748131 +143264,1961,Hans Zimmer,1317748187 +143264,1961,imdb top 250,1317748262 +143264,1961,Nudity (Topless - Brief),1317748141 +143264,1961,Oscar (Best Actor),1317748145 +143264,1961,Oscar (Best Directing),1317748148 +143264,1961,Oscar (Best Picture),1317748151 +143264,1961,Oscar (Best Writing - Screenplay Written Directly for the Screen),1317748154 +143264,1961,psychology,1317748160 +143264,1961,road movie,1317748164 +143264,1961,Tom Cruise,1317748167 +143264,1991,horror,1368284274 +143264,1997,based on a book,1430254183 +143264,1997,Catholicism,1430254187 +143264,1997,Christianity,1430254153 +143264,1997,Classic,1430254169 +143264,1997,exorcism,1430254173 +143264,1997,horror,1430254166 +143264,1997,imdb top 250,1430254155 +143264,1997,Linda Blair,1430254294 +143264,1997,Max von Sydow,1430254240 +143264,1997,mkv,1430254201 +143264,1997,possession,1430254162 +143264,1997,religion,1430254176 +143264,1997,scary,1430254145 +143264,1997,William Friedkin,1430254217 +143264,2019,DIVX,1163977046 +143264,2023,DIVX,1184496047 +143264,2028,na dysku,1414258973 +143264,2076,weird,1368284185 +143264,2096,na dysku,1431441960 +143264,2124,DIVX,1154867759 +143264,2160,1960s,1430251613 +143264,2160,Atmospheric,1430251473 +143264,2160,based on a book,1430251475 +143264,2160,demons,1430251480 +143264,2160,DIVX,1430251544 +143264,2160,funny,1430251621 +143264,2160,imdb top 250,1430251488 +143264,2160,Krzysztof Komeda,1430251587 +143264,2160,Oscar (Best Supporting Actress),1430251491 +143264,2160,religion,1430251497 +143264,2160,Roman Polanski,1430251494 +143264,2160,satanism,1430251499 +143264,2160,surreal,1430251505 +143264,2167,action,1368284121 +143264,2194,corruption,1396037393 +143264,2194,DIVX,1396037563 +143264,2194,Ennio Morricone,1396037396 +143264,2194,gangsters,1396037401 +143264,2194,historical,1396037409 +143264,2194,Kevin Costner,1396037405 +143264,2194,mafia,1396037518 +143264,2194,organized crime,1396037522 +143264,2194,oscar (best directing),1396037525 +143264,2194,Oscar (Best Supporting Actor),1396037527 +143264,2194,police,1396037530 +143264,2194,police corruption,1396037533 +143264,2194,Prohibition,1396037536 +143264,2194,Robert De Niro,1396037539 +143264,2194,Sean Connery,1396037541 +143264,2194,violence,1396037545 +143264,2262,relationships,1368284152 +143264,2270,01/10,1262378086 +143264,2270,01/11,1294601832 +143264,2270,02/10,1266777554 +143264,2270,02/11,1297598271 +143264,2270,03/10,1268473465 +143264,2270,03/11,1299423474 +143264,2270,05/10,1272802097 +143264,2270,05/11,1304886876 +143264,2270,06/10,1275815800 +143264,2270,06/11,1307201645 +143264,2270,07/10,1279441980 +143264,2270,08/10,1281785066 +143264,2270,09/10,1285430729 +143264,2270,10/09,1254656570 +143264,2270,10/10,1287950036 +143264,2270,11/09,1257674131 +143264,2270,11/10,1289053403 +143264,2270,11/11,1320488847 +143264,2270,12/09,1260111199 +143264,2270,12/10,1291460224 +143264,2270,12/11,1323546493 +143264,2291,original,1368283827 +143264,2315,horror,1368284274 +143264,2321,Do kupienia,1154867199 +143264,2324,bittersweet,1392883784 +143264,2324,comedy,1392883789 +143264,2324,DIVX,1392883830 +143264,2324,father-son relationship,1392883793 +143264,2324,funny,1392883797 +143264,2324,Holocaust,1392883800 +143264,2324,imdb top 250,1392883803 +143264,2324,Italy,1392883806 +143264,2324,Oscar (Best Actor),1392883810 +143264,2324,Oscar (Best Foreign Language Film),1392883813 +143264,2324,Roberto Benigni,1392883842 +143264,2324,survival,1392883820 +143264,2324,World War II,1392883823 +143264,2329,DIVX,1154131450 +143264,2336,DVD,1154867904 +143264,2355,na dysku,1390059964 +143264,2360,dialogue driven,1448920104 +143264,2360,DIVX,1448920114 +143264,2360,dysfunctional family,1448920102 +143264,2360,family,1448920066 +143264,2360,father-son relationship,1448920079 +143264,2360,Nudity (Topless),1448920085 +143264,2360,secrets,1448920071 +143264,2360,sexual abuse,1448920075 +143264,2360,Thomas Vinterberg,1448920097 +143264,2360,Ulrich Thomsen,1448920093 +143264,2396,na dysku,1431440833 +143264,2420,mentor,1368283876 +143264,2467,amateur detective,1396036785 +143264,2467,based on a book,1396036788 +143264,2467,censorship,1396036794 +143264,2467,DIVX,1396036942 +143264,2467,Eco,1396036817 +143264,2467,investigation,1396036819 +143264,2467,medieval,1396036823 +143264,2467,monastery,1396036826 +143264,2467,murder,1396036830 +143264,2467,Nudity (Full Frontal - Notable),1396036833 +143264,2467,Nudity (Topless),1396036838 +143264,2467,religion,1396036841 +143264,2467,Ron Perlman,1396036924 +143264,2467,Sean Connery,1396036881 +143264,2502,comedy,1402484482 +143264,2502,corporate America,1402484486 +143264,2502,DIVX,1402485226 +143264,2502,office,1402484497 +143264,2502,quirky,1402484500 +143264,2502,rebellion,1402484503 +143264,2502,satire,1402484510 +143264,2502,technology,1402484513 +143264,2502,workplace,1402484515 +143264,2529,na dysku,1393885530 +143264,2542,British,1366820399 +143264,2542,dark comedy,1366820396 +143264,2542,DIVX,1366820643 +143264,2542,drugs,1366820407 +143264,2542,Guy Ritchie,1366820411 +143264,2542,imdb top 250,1366820417 +143264,2542,Jason Statham,1366820421 +143264,2542,Lenny McLean,1366820632 +143264,2542,marijuana,1366820428 +143264,2542,multiple storylines,1366820431 +143264,2542,Nudity (Topless),1366820424 +143264,2542,organized crime,1366820434 +143264,2542,poker,1366820654 +143264,2542,Sting,1366820442 +143264,2542,Vinnie Jones,1366820591 +143264,2542,violence,1366820437 +143264,2571,DVD,1210801199 +143264,2580,na dysku,1431441792 +143264,2599,DVD,1154867076 +143264,2628,DIVX,1161023153 +143264,2700,na dysku,1431441880 +143264,2730,na dysku,1431441154 +143264,2745,DVD,1154867831 +143264,2762,great ending,1368284322 +143264,2762,VHS,1154867433 +143264,2788,DVD,1154867022 +143264,2819,1970s,1399395745 +143264,2819,assassins,1399395747 +143264,2819,based on a book,1399395750 +143264,2819,cia,1399395755 +143264,2819,computers,1399395759 +143264,2819,conspiracy,1399395762 +143264,2819,DIVX,1399399842 +143264,2819,espionage,1399395770 +143264,2819,Faye Dunaway,1399395773 +143264,2819,Intelligent,1399395776 +143264,2819,intrigue,1399395779 +143264,2819,oscar (best cinematography),1399395783 +143264,2819,Robert Redford,1399395786 +143264,2819,spy,1399395791 +143264,2819,Sydney Pollack,1399395794 +143264,2819,thriller,1399395796 +143264,2843,DIVX,1246560619 +143264,2843,gypsy,1246560658 +143264,2843,HIDE THE DEAD BODY,1246560755 +143264,2843,humorous,1246560664 +143264,2843,kusturica,1246560669 +143264,2843,train,1246560680 +143264,2858,great acting,1368284217 +143264,2858,VHS,1154866999 +143264,2890,na dysku,1410975696 +143264,2905,na dysku,1384377208 +143264,2918,1980s,1392882457 +143264,2918,Charlie Sheen,1392882463 +143264,2918,classic,1392882467 +143264,2918,comedy,1392882472 +143264,2918,coming of age,1392882475 +143264,2918,DIVX,1392882525 +143264,2918,High School,1392882489 +143264,2918,Matthew Broderick,1392882495 +143264,2918,nostalgia,1392882501 +143264,2918,one day,1392882504 +143264,2918,teen movie,1392882512 +143264,2920,na dysku,1414258953 +143264,2921,na dysku,1384377350 +143264,2930,01/10,1262377594 +143264,2930,02/10,1266176844 +143264,2930,03/10,1268472623 +143264,2930,05/10,1272800918 +143264,2930,11/09,1257673229 +143264,2930,12/09,1260110452 +143264,2933,about nothing,1452116526 +143264,2933,boring,1452116515 +143264,2933,melancholic,1452116496 +143264,2948,na dysku,1384377441 +143264,2949,007,1422305208 +143264,2949,assassin,1422305216 +143264,2949,Bond,1422305229 +143264,2949,espionage,1422305234 +143264,2949,franchise,1422305236 +143264,2949,mad scientist,1422305240 +143264,2949,murder,1422305243 +143264,2949,Obejrzane,1422305202 +143264,2949,Sean Connery,1422305249 +143264,2951,classic,1383600274 +143264,2951,Clint Eastwood,1383600276 +143264,2951,DIVX,1383600319 +143264,2951,Ennio Morricone,1383600279 +143264,2951,gunfight,1383600290 +143264,2951,imdb top 250,1383600347 +143264,2951,Italian,1383600295 +143264,2951,Sergio Leone,1383600298 +143264,2951,spaghetti western,1383600301 +143264,2951,western,1383600305 +143264,2959,DIVX,1162238454 +143264,2987,na dysku,1431442035 +143264,2997,DVD,1154867976 +143264,3000,Do kupienia,1177003853 +143264,3006,Al Pacino,1389122981 +143264,3006,based on a true story,1389122985 +143264,3006,corporations,1389122997 +143264,3006,corruption,1389123000 +143264,3006,DIVX,1389123034 +143264,3006,dramatic,1389123003 +143264,3006,intelligent,1389123011 +143264,3006,journalism,1389123008 +143264,3006,Michael Mann,1389123014 +143264,3006,Russell Crowe,1389123016 +143264,3006,tobacco,1389123019 +143264,3006,USA,1389123023 +143264,3012,06/11,1307780359 +143264,3012,10/09,1254656725 +143264,3012,11/09,1257674118 +143264,3012,11/11,1320488715 +143264,3012,12/09,1260111164 +143264,3052,na dysku,1431441927 +143264,3053,DVD,1154867186 +143264,3081,VHS,1154867698 +143264,3105,based on a book,1276434400 +143264,3105,based on a true story,1276434403 +143264,3105,Drama,1276434414 +143264,3105,dramatic,1368284094 +143264,3105,hospital,1276434416 +143264,3105,Psychiatry,1276434425 +143264,3105,Robert De Niro,1276434428 +143264,3105,Robin Williams,1276434430 +143264,3105,sad,1276434437 +143264,3114,animation,1289763730 +143264,3114,computer animation,1289763738 +143264,3114,Disney,1289763743 +143264,3114,divx,1289763809 +143264,3114,funny,1289763747 +143264,3114,humorous,1289763751 +143264,3114,imdb top 250,1289763754 +143264,3114,John Lasseter,1289763795 +143264,3114,Pixar,1289763769 +143264,3114,Tim Allen,1289763774 +143264,3114,Tom Hanks,1289763776 +143264,3147,1930s,1396297937 +143264,3147,based on a book,1396297941 +143264,3147,death penalty,1396297945 +143264,3147,drama,1396297948 +143264,3147,DVD,1396298050 +143264,3147,emotional,1396297950 +143264,3147,Frank Darabont,1396297984 +143264,3147,great acting,1396297952 +143264,3147,imdb top 250,1396297956 +143264,3147,Michael Clarke Duncan,1396298035 +143264,3147,oscar (best directing),1396297958 +143264,3147,prison,1396297961 +143264,3147,racism,1396297964 +143264,3147,sentimental,1396297967 +143264,3147,social commentary,1396297969 +143264,3147,Stephen King,1396297971 +143264,3147,Tom Hanks,1396297974 +143264,3157,family,1368284294 +143264,3174,do zassania,1154867643 +143264,3198,based on a book,1328558989 +143264,3198,DIVX,1328559063 +143264,3198,Dustin Hoffman,1328558993 +143264,3198,escape,1328558998 +143264,3198,Franklin J. Schaffner,1328559013 +143264,3198,prison,1328559023 +143264,3198,prison escape,1328559020 +143264,3198,sometimes boring,1328559035 +143264,3198,Steve McQueen,1328559025 +143264,3198,Very long,1328559050 +143264,3275,DIVX,1154867893 +143264,3295,03/09,1238273835 +143264,3301,DVD,1154867966 +143264,3303,01/10,1262377942 +143264,3303,01/11,1294601213 +143264,3303,02/10,1266777302 +143264,3303,03/10,1268473189 +143264,3303,05/10,1272801484 +143264,3303,06/10,1275814228 +143264,3303,08/10,1281784629 +143264,3303,09/10,1285429053 +143264,3303,10/09,1254656475 +143264,3303,10/10,1287948694 +143264,3303,11/09,1257674040 +143264,3303,11/10,1289724682 +143264,3303,12/09,1260110936 +143264,3303,12/10,1291459611 +143264,3310,charity,1325661911 +143264,3310,Charlie Chaplin,1325661914 +143264,3310,DIVX,1325661952 +143264,3310,imdb top 250,1325661937 +143264,3310,orphans,1325661942 +143264,3364,DIVX,1271013002 +143264,3364,film noir,1271012985 +143264,3364,John Huston,1271012987 +143264,3378,01/12,1327257471 +143264,3378,05/11,1305462444 +143264,3378,06/11,1307202133 +143264,3378,11/11,1320489138 +143264,3378,12/11,1323548088 +143264,3421,comedy,1368283927 +143264,3456,blindness,1255682254 +143264,3456,DIVX,1255681818 +143264,3456,Iran,1255682268 +143264,3456,Middle East,1255682274 +143264,3504,Atmospheric,1402484067 +143264,3504,brainwashing,1402484073 +143264,3504,comedy,1402484080 +143264,3504,cynical,1402484083 +143264,3504,DIVX,1402485241 +143264,3504,drama,1402484088 +143264,3504,journalism,1402484091 +143264,3504,Nudity (Topless - Brief),1402484101 +143264,3504,Oscar (Best Actor),1402484107 +143264,3504,Oscar (Best Actress),1402484111 +143264,3504,Oscar (Best Supporting Actress),1402484115 +143264,3504,Peter Finch,1402484219 +143264,3504,Robert Duvall,1402484228 +143264,3504,satire,1402484125 +143264,3504,Sidney Lumet,1402484148 +143264,3504,television,1402484128 +143264,3504,want to see again,1402484137 +143264,3504,William Holden,1402484211 +143264,3533,05/11,1305464254 +143264,3533,06/11,1307203452 +143264,3545,based on a play,1427097479 +143264,3545,Berlin,1427097477 +143264,3545,Dance,1427097484 +143264,3545,Germany,1427097486 +143264,3545,Helmut Griem,1427097555 +143264,3545,history,1427097489 +143264,3545,Joel Grey,1427097563 +143264,3545,John Kander,1427097605 +143264,3545,Liza Minnelli,1427097524 +143264,3545,Michael York,1427097518 +143264,3545,mkv,1427097619 +143264,3545,musical,1427097491 +143264,3545,Oscar (Best Actress),1427097494 +143264,3545,Oscar (Best Cinematography),1427097498 +143264,3545,Oscar (Best Directing),1427097500 +143264,3545,Oscar (Best Supporting Actor),1427097504 +143264,3545,politics,1427097507 +143264,3545,World War II,1427097511 +143264,3560,08/10,1282483949 +143264,3578,VHS,1154867584 +143264,3640,Charles Chaplin,1430251153 +143264,3640,comedy,1430251168 +143264,3640,DIVX,1430251187 +143264,3640,social commentary,1430251175 +143264,3677,70mm,1299536525 +143264,3677,boring,1299536565 +143264,3677,landscape,1299536536 +143264,3677,nature,1299536545 +143264,3677,no dialogue,1299536548 +143264,3703,boring,1392884411 +143264,3703,car chase,1392884362 +143264,3703,desert,1392884368 +143264,3703,dystopia,1392884375 +143264,3703,lone hero,1392884378 +143264,3703,Mel Gibson,1392884383 +143264,3703,Nudity (Topless),1392884391 +143264,3703,Post apocalyptic,1392884395 +143264,3703,sequel,1392884402 +143264,3735,Al Pacino,1317750919 +143264,3735,Atmospheric,1317750922 +143264,3735,corruption,1317750925 +143264,3735,DIVX,1317751454 +143264,3735,F. Murray Abraham,1317751012 +143264,3735,New York City,1317750940 +143264,3735,Nudity (Topless),1317750943 +143264,3735,police,1317750951 +143264,3735,police corruption,1317750953 +143264,3735,Sidney Lumet,1317750956 +143264,3735,true story,1317750962 +143264,3740,cult classic,1368284246 +143264,3911,na dysku,1370099880 +143264,3916,na dysku,1431441101 +143264,3949,DIVX,1155852737 +143264,3949,oscar (best directing),1368284061 +143264,3967,na dysku,1431441027 +143264,3986,action,1368284121 +143264,4007,ambition,1448922253 +143264,4007,business,1448922242 +143264,4007,Charlie Sheen,1448922246 +143264,4007,corporate America,1448922251 +143264,4007,greed,1448922263 +143264,4007,Martin Sheen,1448922261 +143264,4007,Michael Douglas,1448922233 +143264,4007,MKV HD,1448922271 +143264,4007,Oliver Stone,1448922244 +143264,4007,Oscar (Best Actor),1448922260 +143264,4007,stock market,1448922241 +143264,4007,US history,1448922249 +143264,4011,Benicio Del Toro,1271012709 +143264,4011,boxing,1271012713 +143264,4011,Brad Pitt,1271012715 +143264,4011,british,1271012722 +143264,4011,comedy,1271012725 +143264,4011,Crime,1271012731 +143264,4011,cynical,1271012736 +143264,4011,DIVX,1271013060 +143264,4011,Guy Ritchie,1271012745 +143264,4011,imdb top 250,1271012758 +143264,4011,Jason Statham,1271012751 +143264,4011,twist ending,1271012765 +143264,4022,drama,1439538353 +143264,4022,HD MKV,1439538375 +143264,4022,helen hunt,1439538364 +143264,4022,island,1439538341 +143264,4022,loneliness,1439538338 +143264,4022,man vs. nature,1439538350 +143264,4022,psychological,1439538348 +143264,4022,Robert Zemeckis,1439538358 +143264,4022,SURVIVAL,1439538334 +143264,4022,Tom Hanks,1439538332 +143264,4027,na dysku,1431439877 +143264,4085,comedy,1368283927 +143264,4223,na dysku,1431441461 +143264,4226,DVD,1182073861 +143264,4226,storytelling,1368283959 +143264,4262,Al Pacino,1247213363 +143264,4262,corruption,1247213283 +143264,4262,crime,1247213287 +143264,4262,drugs,1247213291 +143264,4262,DVD,1398706768 +143264,4262,gangster,1247213296 +143264,4262,imdb top 250,1247213366 +143264,4262,mafia,1247213314 +143264,4262,organized crime,1247213337 +143264,4262,remake,1247213341 +143264,4262,violence,1247213348 +143264,4271,12/11,1323549240 +143264,4306,DVD,1212516555 +143264,4308,VHS,1154867685 +143264,4329,na dysku,1391022254 +143264,4347,Anna Siskova,1427100126 +143264,4347,Bolek Polivka,1427100135 +143264,4347,czech,1427099974 +143264,4347,history,1427099993 +143264,4347,Holocaust,1427099978 +143264,4347,humanity,1427099982 +143264,4347,humorous,1427100108 +143264,4347,Jan Hrebejk,1427100075 +143264,4347,Jaroslav Dusek,1427100101 +143264,4347,nazis,1427099989 +143264,4431,01/11,1294602809 +143264,4431,02/11,1297599703 +143264,4431,03/11,1299424450 +143264,4431,04/11,1303033458 +143264,4431,05/11,1304888626 +143264,4431,06/11,1307202222 +143264,4431,10/10,1287950949 +143264,4431,11/10,1289063575 +143264,4431,12/10,1292694999 +143264,4451,01/11,1294602546 +143264,4451,02/11,1297599482 +143264,4451,03/11,1299424184 +143264,4451,05/11,1304888572 +143264,4451,06/11,1307202194 +143264,4467,DIVX,1155834556 +143264,4668,02/11,1297617676 +143264,4668,03/11,1299425018 +143264,4668,04/11,1303033965 +143264,4668,05/11,1304888935 +143264,4668,06/11,1307202441 +143264,4720,na dysku,1431441351 +143264,4725,horror,1368284274 +143264,4734,Do kupienia,1156713861 +143264,4776,DIVX,1162078618 +143264,4848,visually appealing,1368284201 +143264,4856,01/10,1263728659 +143264,4856,01/11,1294601645 +143264,4856,01/12,1327256646 +143264,4856,02/10,1266777750 +143264,4856,02/11,1297598056 +143264,4856,03/10,1268474332 +143264,4856,03/11,1299423273 +143264,4856,04/11,1303032567 +143264,4856,05/10,1272802110 +143264,4856,05/11,1304886496 +143264,4856,06/10,1275815823 +143264,4856,06/11,1307201246 +143264,4856,07/10,1279442011 +143264,4856,08/10,1281785088 +143264,4856,09/10,1285430770 +143264,4856,10/09,1255168823 +143264,4856,10/10,1287950057 +143264,4856,11/09,1257674238 +143264,4856,11/10,1289053426 +143264,4856,11/11,1320488522 +143264,4856,12/09,1260111303 +143264,4856,12/10,1291460139 +143264,4856,12/11,1323546178 +143264,4861,01/12,1327257321 +143264,4861,03/11,1300619667 +143264,4861,05/10,1272802898 +143264,4861,05/11,1304887097 +143264,4861,06/10,1276943258 +143264,4861,06/11,1307201896 +143264,4861,11/11,1320489028 +143264,4861,12/11,1323547928 +143264,4878,cerebral,1368284535 +143264,4878,DIVX,1154867804 +143264,4878,original,1368283827 +143264,4878,weird,1368284185 +143264,4883,06/09,1246202978 +143264,4886,Andrew Stanton,1343076577 +143264,4886,animation,1343076489 +143264,4886,Comedy,1343076494 +143264,4886,Disney,1343076498 +143264,4886,DIVX,1343076661 +143264,4886,funny,1343076502 +143264,4886,imdb top 250,1343076506 +143264,4886,Oscar (Best Music - Original Score),1343076513 +143264,4886,Oscar (Best Music - Original Song),1343076520 +143264,4886,Pete Docter,1343076535 +143264,4886,Pixar,1343076523 +143264,4886,Randy Newman,1343076595 +143264,4896,DVD,1154867912 +143264,4967,DIVX,1145219679 +143264,4973,DIVX,1154867486 +143264,4993,DVD,1212516578 +143264,4995,DIVX,1142355937 +143264,5010,na dysku,1431441523 +143264,5013,DIVX,1207346491 +143264,5015,bad parents,1364926697 +143264,5015,Billy Bob Thornton,1364926701 +143264,5015,DIVX,1364926795 +143264,5015,Halle Berry,1364926710 +143264,5015,Heath Ledger,1364926781 +143264,5015,Nudity (Full Frontal),1364926717 +143264,5015,Oscar (Best Actress),1364926721 +143264,5015,prison drama,1364926725 +143264,5015,racism,1364926728 +143264,5015,small town,1364926732 +143264,5064,based on a book,1264155047 +143264,5064,DIVX,1264155082 +143264,5064,Guy Pearce,1264155053 +143264,5064,prison,1264155065 +143264,5064,prison escape,1264155068 +143264,5073,DIVX,1154288941 +143264,5130,01/10,1263728805 +143264,5130,01/11,1294602199 +143264,5130,01/12,1327257150 +143264,5130,02/10,1266777919 +143264,5130,02/11,1297598546 +143264,5130,03/10,1268474612 +143264,5130,03/11,1299423920 +143264,5130,04/11,1303033018 +143264,5130,05/10,1272802356 +143264,5130,05/11,1304887039 +143264,5130,06/10,1275816480 +143264,5130,06/11,1307201849 +143264,5130,08/10,1281785249 +143264,5130,09/10,1285431290 +143264,5130,10/09,1256396248 +143264,5130,10/10,1287950436 +143264,5130,11/10,1289053645 +143264,5130,11/11,1320488884 +143264,5130,12/09,1260111364 +143264,5130,12/10,1291460559 +143264,5130,12/11,1323547812 +143264,5178,05/11,1304888555 +143264,5178,06/11,1307202178 +143264,5266,DIVX,1147032058 +143264,5378,DIVX,1161023172 +143264,5444,DIVX,1186261172 +143264,5445,DVD,1222851505 +143264,5446,DIVX,1151871490 +143264,5452,family,1368284294 +143264,5496,06/09,1244323627 +143264,5520,03/11,1300619969 +143264,5520,04/11,1303034180 +143264,5520,05/11,1304889051 +143264,5520,06/11,1307202595 +143264,5603,Alec Guinness,1325661773 +143264,5603,British,1325661799 +143264,5603,DIVX,1325661838 +143264,5603,Ealing Studios,1325661740 +143264,5608,DIVX,1157840791 +143264,5618,Do kupienia,1147637016 +143264,5673,na dysku,1431441979 +143264,5690,DIVX,1159049008 +143264,5767,80s,1387309239 +143264,5767,absurd,1387309188 +143264,5767,Bronislaw Pawlik,1387309179 +143264,5767,communism,1387309216 +143264,5767,DVD,1387309304 +143264,5767,eastern europe,1387309242 +143264,5767,funny,1387309251 +143264,5767,Jerzy Turek,1387309172 +143264,5767,plot,1387309283 +143264,5767,Poland,1387309244 +143264,5767,satire,1387309258 +143264,5767,Stanislaw Bareja,1387309165 +143264,5767,Stanislaw Tym,1387309152 +143264,5767,too short,1387309314 +143264,5816,DVD,1154867815 +143264,5821,05/10,1272802191 +143264,5821,06/10,1275816133 +143264,5821,07/10,1279442158 +143264,5821,08/10,1281785168 +143264,5835,01/11,1295206290 +143264,5835,01/12,1327258102 +143264,5835,02/11,1297617783 +143264,5835,03/11,1299425174 +143264,5835,05/11,1305462827 +143264,5835,06/11,1307202655 +143264,5835,11/11,1320489620 +143264,5835,12/11,1323548752 +143264,5878,loneliness,1368284012 +143264,5881,DIVX,1154867956 +143264,5902,DIVX,1149416230 +143264,5945,DIVX,1154867457 +143264,5945,loneliness,1368284011 +143264,5952,DVD,1154867369 +143264,5956,DVD,1177009034 +143264,5971,anime,1351023425 +143264,5971,Cute,1351023433 +143264,5971,DVD,1351023422 +143264,5971,fantasy,1351023437 +143264,5971,feel good movie,1351023441 +143264,5971,great soundtrack,1351023445 +143264,5971,Hayao Miyazaki,1351023448 +143264,5971,Japan,1351023459 +143264,5971,Joe Hisaishi,1351023475 +143264,5971,Studio Ghibli,1351023464 +143264,5971,visually appealing,1351023466 +143264,5989,DIVX,1188062670 +143264,5991,DIVX,1184496183 +143264,5992,DVD,1154867320 +143264,5995,dramatic,1368284094 +143264,5995,DVD,1167823132 +143264,6016,DIVX,1142355899 +143264,6075,01/11,1294602296 +143264,6075,02/11,1297598594 +143264,6075,03/11,1299423955 +143264,6075,04/11,1303033075 +143264,6075,08/10,1281785313 +143264,6075,12/11,1323546373 +143264,6104,na dysku,1431440448 +143264,6133,01/11,1294602907 +143264,6133,01/12,1327257367 +143264,6133,02/11,1297600511 +143264,6133,03/11,1299424575 +143264,6133,04/11,1303033790 +143264,6133,05/11,1304888824 +143264,6133,06/11,1307202310 +143264,6133,08/10,1282484240 +143264,6133,10/10,1287951160 +143264,6133,11/10,1289063655 +143264,6133,11/11,1320489083 +143264,6133,12/10,1292695076 +143264,6133,12/11,1323547971 +143264,6147,01/10,1262378072 +143264,6147,10/09,1254656541 +143264,6147,11/09,1257674103 +143264,6147,12/09,1260111148 +143264,6151,01/11,1294601810 +143264,6151,01/12,1327256634 +143264,6151,02/11,1297597959 +143264,6151,03/10,1269083088 +143264,6151,03/11,1299422807 +143264,6151,04/11,1303031805 +143264,6151,05/10,1272802666 +143264,6151,05/11,1304886091 +143264,6151,06/10,1276350563 +143264,6151,06/11,1307201193 +143264,6151,08/10,1281785335 +143264,6151,09/10,1285430986 +143264,6151,10/10,1287950134 +143264,6151,10/11,1317555450 +143264,6151,11/10,1289053451 +143264,6151,11/11,1320488472 +143264,6151,12/10,1291460337 +143264,6151,12/11,1323546118 +143264,6173,06/10,1276350978 +143264,6206,01/10,1264325758 +143264,6206,01/11,1294602580 +143264,6206,01/12,1327257182 +143264,6206,02/10,1266778156 +143264,6206,02/11,1297599541 +143264,6206,03/10,1268474787 +143264,6206,03/11,1299424233 +143264,6206,04/11,1303033243 +143264,6206,05/10,1272802585 +143264,6206,05/11,1304888460 +143264,6206,06/10,1276350704 +143264,6206,06/11,1307202083 +143264,6206,08/10,1281785393 +143264,6206,10/10,1287950739 +143264,6206,11/10,1289053916 +143264,6206,11/11,1320488973 +143264,6206,12/10,1292694704 +143264,6206,12/11,1323547851 +143264,6278,01/11,1295206496 +143264,6278,01/12,1327258178 +143264,6278,02/11,1297618125 +143264,6278,03/11,1299425592 +143264,6278,05/11,1305463145 +143264,6278,06/11,1307202804 +143264,6278,11/10,1289725071 +143264,6278,11/11,1321718486 +143264,6278,12/10,1292695776 +143264,6278,12/11,1323548832 +143264,6283,na dysku,1431440691 +143264,6299,DVD,1222728921 +143264,6323,DIVX,1399394882 +143264,6323,James Mangold,1399394950 +143264,6323,John Cusack,1399394840 +143264,6323,multiple storylines,1399394844 +143264,6323,mystery,1399394847 +143264,6323,predictable,1399394850 +143264,6323,psychology,1399394856 +143264,6323,serial killer,1399394859 +143264,6323,split personality,1399394862 +143264,6323,surreal,1399394868 +143264,6323,suspense,1399394870 +143264,6323,thriller,1399394877 +143264,6350,na dysku,1431439416 +143264,6377,DVD,1182073965 +143264,6385,coming of age,1376938292 +143264,6385,destiny,1376938296 +143264,6385,Do kupienia,1376938513 +143264,6385,drama,1376938300 +143264,6385,family traditions,1376938306 +143264,6385,Keisha Castle-Hughes,1376938494 +143264,6385,Lisa Gerrard,1376938623 +143264,6385,maori,1376938311 +143264,6385,New Zealand,1376938315 +143264,6385,Rawiri Paratene,1376938539 +143264,6385,Vicky Haughton,1376938564 +143264,6397,05/11,1305463648 +143264,6397,06/11,1307203109 +143264,6434,01/10,1263729204 +143264,6434,01/11,1294601747 +143264,6434,02/10,1266778085 +143264,6434,03/10,1268474747 +143264,6434,05/10,1272802387 +143264,6434,06/10,1275816528 +143264,6434,07/10,1279442066 +143264,6434,08/10,1281785114 +143264,6434,09/10,1285431072 +143264,6434,10/10,1287950293 +143264,6434,11/10,1289053507 +143264,6434,12/09,1260111435 +143264,6434,12/10,1292694015 +143264,6435,01/11,1294602874 +143264,6435,02/11,1297599683 +143264,6435,12/10,1292695018 +143264,6437,05/10,1275239726 +143264,6437,06/10,1275814214 +143264,6437,07/10,1279441721 +143264,6437,08/10,1281784810 +143264,6441,aviation,1297594166 +143264,6441,too long,1297594182 +143264,6441,World War II,1297594175 +143264,6537,DIVX,1188986435 +143264,6539,DIVX,1161556023 +143264,6552,DIVX,1383600211 +143264,6552,England,1383599921 +143264,6552,hotel,1383599925 +143264,6552,illegal immigration,1383599928 +143264,6552,London,1383599933 +143264,6552,Nudity (Topless - Brief),1383599938 +143264,6552,sexual exploitation,1383599942 +143264,6565,DIVX,1138563410 +143264,6567,DIVX,1145219715 +143264,6599,01/11,1295207441 +143264,6599,01/12,1327258491 +143264,6599,02/11,1297619076 +143264,6599,03/11,1299426383 +143264,6599,06/11,1307203424 +143264,6599,11/11,1322390310 +143264,6617,DIVX,1177009942 +143264,6688,01/11,1294602488 +143264,6688,01/12,1327256724 +143264,6688,02/11,1297599339 +143264,6688,03/11,1299424115 +143264,6688,04/11,1303033157 +143264,6688,05/11,1304887154 +143264,6688,06/11,1307201945 +143264,6688,08/10,1281785438 +143264,6688,10/10,1287950763 +143264,6688,11/10,1289053932 +143264,6688,11/11,1320488749 +143264,6688,12/10,1292694789 +143264,6688,12/11,1323546391 +143264,6692,02/10,1266778171 +143264,6692,03/10,1268474807 +143264,6711,DVD,1143839972 +143264,6761,03/10,1268474823 +143264,6773,DVD,1179095457 +143264,6787,1970s,1343076736 +143264,6787,Alan J. Pakula,1343076796 +143264,6787,based on a book,1343076741 +143264,6787,conspiracy,1343076749 +143264,6787,corruption,1343076753 +143264,6787,DIVX,1343076903 +143264,6787,Dustin Hoffman,1343076755 +143264,6787,History,1343076757 +143264,6787,investigation,1343076761 +143264,6787,journalism,1343076763 +143264,6787,Nixon,1343076855 +143264,6787,Oscar (Best Supporting Actor),1343076766 +143264,6787,Politics,1343076768 +143264,6787,Robert Redford,1343076771 +143264,6787,story,1368284501 +143264,6787,true story,1343076784 +143264,6787,US President,1343076786 +143264,6787,Watergate,1343076833 +143264,6796,DIVX,1291483195 +143264,6796,gangsters,1291483236 +143264,6796,ghetto,1291483242 +143264,6796,Ice Cube,1291483247 +143264,6796,Laurence Fishburne,1291483257 +143264,6796,USA,1291483270 +143264,6807,British,1299533469 +143264,6807,DVD,1299533436 +143264,6807,John Cleese,1299533476 +143264,6807,Monty Python,1299533478 +143264,6807,satire,1299533491 +143264,6807,Terry Gilliam,1299533486 +143264,6867,DIVX,1177008610 +143264,6869,Brazil,1343076045 +143264,6869,documentary,1343076175 +143264,6869,Obejrzane,1343076095 +143264,6869,South America,1343076041 +143264,6870,DVD,1398707026 +143264,6874,na dysku,1390059831 +143264,6902,Bob Gale,1392883015 +143264,6902,DIVX,1392883027 +143264,6902,drugs,1392882949 +143264,6902,existentialism,1392882953 +143264,6902,funny,1392882960 +143264,6902,Gary Oldman,1392882968 +143264,6902,lawyers,1392882971 +143264,6902,life philosophy,1392882976 +143264,6902,police,1392882987 +143264,6902,road trip,1392882990 +143264,6902,self discovery,1392882996 +143264,6902,social commentary,1392882998 +143264,6902,surreal,1392883002 +143264,6942,DVD,1194029713 +143264,6957,DIVX,1154867526 +143264,6987,criterion,1368283986 +143264,7050,09/10,1285429269 +143264,7050,10/10,1287949343 +143264,7089,boring,1430519212 +143264,7089,too long,1430519205 +143264,7090,Obejrzane,1184496286 +143264,7099,adventure,1303756174 +143264,7099,anime,1303756179 +143264,7099,comic book,1303756183 +143264,7099,DVD,1303756316 +143264,7099,dystopic future,1303756186 +143264,7099,environmental,1303756190 +143264,7099,fantasy,1303756192 +143264,7099,Hayao Miyazaki,1303756195 +143264,7099,Japan,1303756201 +143264,7099,Joe Hisaishi,1303756297 +143264,7099,post-apocalyptic,1303756204 +143264,7099,sci-fi,1303756207 +143264,7099,strong female lead,1303756212 +143264,7099,Studio Ghibli,1303756214 +143264,7099,war,1303756218 +143264,7104,Do kupienia,1154866987 +143264,7113,01/11,1294602779 +143264,7113,01/12,1327257615 +143264,7113,02/11,1297599638 +143264,7113,03/10,1269083258 +143264,7113,03/11,1299424412 +143264,7113,04/11,1303034055 +143264,7113,05/10,1272802810 +143264,7113,05/11,1304888993 +143264,7113,06/10,1276351322 +143264,7113,06/11,1307202520 +143264,7113,08/10,1282483893 +143264,7113,10/10,1287950887 +143264,7113,11/10,1289063167 +143264,7113,11/11,1320489367 +143264,7113,12/10,1292694945 +143264,7113,12/11,1323548445 +143264,7125,06/09,1244323790 +143264,7139,na dysku,1384377402 +143264,7141,08/09,1249117244 +143264,7153,great ending,1368284321 +143264,7158,DIVX,1177010584 +143264,7160,na dysku,1430164262 +143264,7162,DIVX,1154867557 +143264,7181,01/10,1263729261 +143264,7181,02/10,1266778108 +143264,7181,03/10,1268474766 +143264,7181,05/10,1272802525 +143264,7181,06/10,1276350629 +143264,7181,08/10,1281785358 +143264,7195,01/10,1262377909 +143264,7195,02/10,1266777192 +143264,7195,03/10,1268473110 +143264,7195,05/10,1272801352 +143264,7195,06/10,1275814125 +143264,7195,07/10,1279441629 +143264,7195,08/10,1281784668 +143264,7195,09/10,1285429234 +143264,7195,10/10,1287948739 +143264,7195,11/09,1257673772 +143264,7195,11/10,1289052799 +143264,7195,12/09,1260110828 +143264,7195,12/10,1291459702 +143264,7238,1940s,1272830045 +143264,7238,Adam Pawlikowski,1272829948 +143264,7238,Andrzej Wajda,1272829953 +143264,7238,black and white,1272830064 +143264,7238,DIVX,1272829930 +143264,7238,Ewa Krzyzewska,1272829965 +143264,7238,history,1272830119 +143264,7238,Poland,1272830009 +143264,7238,Waclaw Zastrzezynski,1272829984 +143264,7238,Zbigniew Cybulski,1272829976 +143264,7318,DIVX,1154867945 +143264,7327,criterion,1368283986 +143264,7344,01/11,1295206626 +143264,7344,02/11,1297618291 +143264,7344,03/11,1299425723 +143264,7344,05/11,1305463612 +143264,7344,06/11,1307203067 +143264,7344,11/10,1290334430 +143264,7344,12/10,1292695875 +143264,7351,01/10,1264325667 +143264,7351,01/12,1327257434 +143264,7351,02/10,1266778070 +143264,7351,03/10,1268474727 +143264,7351,05/10,1272802710 +143264,7351,05/11,1305462401 +143264,7351,06/10,1276350842 +143264,7351,06/11,1307202007 +143264,7351,08/10,1281785466 +143264,7351,10/10,1287950807 +143264,7351,11/10,1289063079 +143264,7351,11/11,1320489000 +143264,7351,12/10,1292694963 +143264,7351,12/11,1323548026 +143264,7361,Charlie Kaufman,1255686600 +143264,7361,DIVX,1255686577 +143264,7361,Jim Carrey,1255686605 +143264,7361,memory,1255686617 +143264,7361,nonlinear,1255686620 +143264,7361,romance,1255686628 +143264,7361,sci-fi,1255686640 +143264,7361,surreal,1255686644 +143264,7366,do zassania,1157047939 +143264,7371,DIVX,1152811789 +143264,7373,DIVX,1152467511 +143264,7418,01/11,1294601128 +143264,7418,11/10,1289724652 +143264,7418,12/10,1291459524 +143264,7438,na dysku,1370099851 +143264,7438,storytelling,1368283959 +143264,7460,DIVX,1159393844 +143264,7475,10/10,1287948551 +143264,7479,05/09,1241972249 +143264,7485,03/09,1236504904 +143264,7502,na dysku,1399576460 +143264,7583,04/09,1238832503 +143264,7583,05/10,1272801190 +143264,7583,06/10,1275813972 +143264,7583,07/10,1279441361 +143264,7583,08/10,1281784300 +143264,7583,09/10,1285428349 +143264,7583,10/10,1286640663 +143264,7649,based on a TV show,1289763581 +143264,7649,predictable,1289763600 +143264,7649,sci-fi,1289763588 +143264,7828,01/11,1294603067 +143264,7828,01/12,1327257692 +143264,7828,02/11,1297617576 +143264,7828,03/11,1299424687 +143264,7828,04/11,1303033912 +143264,7828,05/11,1304888899 +143264,7828,06/11,1307202402 +143264,7828,11/10,1289064383 +143264,7828,11/11,1320489384 +143264,7828,12/10,1292695234 +143264,7828,12/11,1323548503 +143264,7945,11/10,1290334530 +143264,7945,12/10,1292696100 +143264,7949,01/10,1262377999 +143264,7949,01/11,1294601603 +143264,7949,01/12,1327256618 +143264,7949,02/10,1266777446 +143264,7949,02/11,1297597918 +143264,7949,03/10,1268473325 +143264,7949,03/11,1299423212 +143264,7949,04/11,1303032478 +143264,7949,05/10,1272802042 +143264,7949,06/10,1275815571 +143264,7949,07/10,1279441953 +143264,7949,08/10,1281785052 +143264,7949,09/10,1285430648 +143264,7949,10/09,1254656445 +143264,7949,10/10,1287949912 +143264,7949,10/11,1317555428 +143264,7949,11/09,1257674023 +143264,7949,11/10,1289053379 +143264,7949,11/11,1320488456 +143264,7949,12/09,1260111019 +143264,7949,12/10,1291460185 +143264,7949,12/11,1323545950 +143264,7980,Best War Films,1392882030 +143264,7980,classic,1392882033 +143264,7980,DIVX,1392882086 +143264,7980,History,1392882037 +143264,7980,Michael Caine,1392882046 +143264,7980,Richard Attenborough,1392882052 +143264,7980,Robert Redford,1392882057 +143264,7980,Sean Connery,1392882060 +143264,7980,World War II,1392882063 +143264,7981,DIVX,1147636967 +143264,8017,05/09,1241971952 +143264,8057,02/11,1297598426 +143264,8057,03/11,1299423423 +143264,8057,04/11,1303032716 +143264,8057,05/11,1304886859 +143264,8057,06/11,1307201474 +143264,8057,11/11,1320488627 +143264,8120,01/11,1295206268 +143264,8120,01/12,1327257730 +143264,8120,02/11,1297617752 +143264,8120,03/11,1299425138 +143264,8120,05/11,1305463083 +143264,8120,06/11,1307202765 +143264,8120,10/10,1287951642 +143264,8120,11/10,1289064175 +143264,8120,11/11,1320489443 +143264,8120,12/10,1292695540 +143264,8120,12/11,1323548554 +143264,8133,01/10,1264864460 +143264,8133,01/11,1294601409 +143264,8133,02/10,1266777360 +143264,8133,02/11,1297596985 +143264,8133,03/10,1268473285 +143264,8133,03/11,1299422850 +143264,8133,07/10,1279441644 +143264,8133,08/10,1281784682 +143264,8133,09/10,1285429122 +143264,8133,10/09,1254656289 +143264,8133,10/10,1288453393 +143264,8133,11/09,1257673920 +143264,8133,11/10,1289052851 +143264,8133,12/09,1260110918 +143264,8133,12/10,1291459749 +143264,8140,10/09,1255168916 +143264,8154,criterion,1368283986 +143264,8202,09/10,1285428815 +143264,8202,10/09,1255864151 +143264,8232,03/09,1237278363 +143264,8239,cynical,1309929125 +143264,8239,Luis Bunuel,1309929135 +143264,8253,na dysku,1390059891 +143264,8257,George Murphy,1271011973 +143264,8257,History,1271011976 +143264,8257,John Hodiak,1271011985 +143264,8257,Oscar (Best Cinematography),1271012062 +143264,8257,Oscar (Best Writing Story and Screenplay),1271012133 +143264,8257,Ricardo Montalban,1271012002 +143264,8257,Van Johnson,1271012008 +143264,8257,William A. Wellman,1271012020 +143264,8257,World War II,1271012014 +143264,8260,01/11,1294601853 +143264,8260,01/12,1327257021 +143264,8260,02/11,1297598343 +143264,8260,03/11,1299423499 +143264,8260,10/10,1287949322 +143264,8260,11/10,1289052745 +143264,8260,12/10,1291460355 +143264,8275,01/10,1262377461 +143264,8275,01/11,1294598542 +143264,8275,02/10,1266176772 +143264,8275,03/09,1236511592 +143264,8275,03/10,1268471236 +143264,8275,07/10,1279441126 +143264,8275,08/10,1281293943 +143264,8275,09/10,1285427669 +143264,8275,10/10,1286639694 +143264,8330,03/09,1237278509 +143264,8332,03/10,1269083424 +143264,8332,10/09,1254656634 +143264,8332,11/09,1257674194 +143264,8332,12/09,1260111232 +143264,8335,01/12,1327258560 +143264,8340,na dysku,1384377293 +143264,8360,DVD,1179094482 +143264,8368,DVD,1154867153 +143264,8395,01/10,1263728115 +143264,8395,09/09,1252093943 +143264,8456,03/09,1237278830 +143264,8484,01/10,1262377404 +143264,8484,01/11,1295207084 +143264,8484,01/12,1327258524 +143264,8484,02/10,1266176730 +143264,8484,02/11,1297618746 +143264,8484,03/10,1268471130 +143264,8484,03/11,1299426001 +143264,8484,05/11,1305464119 +143264,8484,06/11,1307203365 +143264,8484,11/09,1257673150 +143264,8484,11/10,1290334677 +143264,8484,11/11,1321719006 +143264,8484,12/09,1260110360 +143264,8484,12/10,1292696312 +143264,8505,01/12,1327256281 +143264,8505,05/11,1304885880 +143264,8505,06/11,1307200504 +143264,8505,09/09,1252093654 +143264,8505,10/11,1317552741 +143264,8505,11/11,1320487926 +143264,8505,12/11,1323545567 +143264,8511,01/10,1262377737 +143264,8511,03/10,1269082526 +143264,8511,05/11,1304885498 +143264,8511,06/11,1307200296 +143264,8511,11/09,1257673546 +143264,8511,12/09,1260110563 +143264,8528,Ben Stiller,1425069713 +143264,8528,cheerleading,1425069730 +143264,8528,comedy,1425069732 +143264,8528,DIVX,1425070367 +143264,8528,funny,1425069737 +143264,8528,hilarious,1425069741 +143264,8528,Idiotic,1425069744 +143264,8528,Las Vegas,1425069748 +143264,8528,obscure sports,1425069751 +143264,8528,parody,1425069753 +143264,8528,Rawson Marshall Thurber,1425069942 +143264,8528,sports,1425069757 +143264,8528,Vince Vaughn,1425069764 +143264,8598,DIVX,1146570120 +143264,8607,na dysku,1390059860 +143264,8611,03/11,1300619590 +143264,8611,04/11,1303032935 +143264,8611,05/11,1304887017 +143264,8611,06/11,1307201821 +143264,8611,11/11,1320488864 +143264,8611,12/11,1323547743 +143264,8624,01/11,1295206648 +143264,8624,02/11,1297618361 +143264,8624,03/11,1299425765 +143264,8624,05/11,1305463563 +143264,8624,06/11,1307203047 +143264,8624,11/10,1290334463 +143264,8624,11/11,1321718735 +143264,8624,12/10,1292695911 +143264,8625,01/11,1295206572 +143264,8625,02/11,1297618180 +143264,8625,03/11,1299425634 +143264,8625,05/11,1305463239 +143264,8625,06/11,1307202942 +143264,8625,11/10,1290334415 +143264,8625,12/10,1292695829 +143264,8636,action,1272359480 +143264,8636,comic book,1272359486 +143264,8636,Danny Elfman,1272359631 +143264,8636,DIVX,1272359650 +143264,8636,marvel,1272359492 +143264,8636,New York City,1272359498 +143264,8636,Oscar (Best Effects - Visual Effects),1272359505 +143264,8636,superhero,1272359521 +143264,8636,Tobey Maguire,1272359533 +143264,8638,Do kupienia,1152559512 +143264,8641,comedy,1368283927 +143264,8680,01/10,1263727678 +143264,8680,04/09,1238832743 +143264,8733,06/11,1307779982 +143264,8733,10/11,1317552997 +143264,8736,01/11,1295206912 +143264,8736,12/10,1292696153 +143264,8748,01/10,1263728767 +143264,8748,02/10,1266777900 +143264,8748,03/10,1268474539 +143264,8748,05/10,1272802209 +143264,8748,10/09,1255168805 +143264,8748,12/09,1260111351 +143264,8757,06/09,1244323723 +143264,8777,01/11,1294602677 +143264,8777,01/12,1327257523 +143264,8777,02/11,1297599568 +143264,8777,03/10,1268475001 +143264,8777,03/11,1299424535 +143264,8777,04/11,1303033745 +143264,8777,05/10,1272802799 +143264,8777,05/11,1304888791 +143264,8777,06/10,1276351247 +143264,8777,06/11,1307202278 +143264,8777,08/10,1282483824 +143264,8777,10/10,1287950853 +143264,8777,11/10,1289063126 +143264,8777,11/11,1320489280 +143264,8777,12/10,1292694868 +143264,8777,12/11,1323548232 +143264,8783,DIVX,1154867721 +143264,8784,Do kupienia,1154867133 +143264,8785,boring,1278669003 +143264,8785,Japan,1278669034 +143264,8785,too long,1278669018 +143264,8794,01/11,1304888732 +143264,8794,01/12,1327257495 +143264,8794,02/11,1304888732 +143264,8794,03/11,1304888732 +143264,8794,04/11,1304888732 +143264,8794,05/11,1304888732 +143264,8794,06/11,1307202263 +143264,8794,10/10,1304888732 +143264,8794,11/10,1304888732 +143264,8794,12/10,1304888732 +143264,8794,12/11,1323548170 +143264,8798,na dysku,1431441504 +143264,8833,DIVX,1154867714 +143264,8874,DIVX,1206003123 +143264,8898,01/10,1263728939 +143264,8898,12/09,1260111380 +143264,8917,DIVX,1154131481 +143264,8954,01/10,1262378043 +143264,8954,01/11,1294601562 +143264,8954,01/12,1327256593 +143264,8954,02/10,1266777496 +143264,8954,02/11,1297597686 +143264,8954,03/10,1268473360 +143264,8954,03/11,1299423157 +143264,8954,04/11,1303032382 +143264,8954,05/10,1272802055 +143264,8954,05/11,1304886541 +143264,8954,06/10,1275814724 +143264,8954,06/11,1307201269 +143264,8954,07/10,1279441882 +143264,8954,08/10,1281785002 +143264,8954,09/10,1285429412 +143264,8954,10/09,1254656416 +143264,8954,10/10,1287949784 +143264,8954,11/09,1257673993 +143264,8954,11/10,1289053201 +143264,8954,11/11,1320488600 +143264,8954,12/09,1260111133 +143264,8954,12/10,1291460042 +143264,8954,12/11,1323546278 +143264,8958,Biography,1317748784 +143264,8958,blindness,1317748787 +143264,8958,DIVX,1317748849 +143264,8958,drugs,1317748792 +143264,8958,great acting,1317748798 +143264,8958,Jamie Foxx,1317748825 +143264,8958,Kerry Washington,1317748868 +143264,8958,music,1317748802 +143264,8958,music business,1317748805 +143264,8958,Nudity (Topless - Brief),1317748810 +143264,8958,Oscar (Best Actor),1317748813 +143264,8958,rhythm & blues,1317748817 +143264,8961,DVD,1167826874 +143264,8962,11/10,1290334317 +143264,8972,DIVX,1154867934 +143264,8981,relationships,1368284152 +143264,9011,01/11,1294601910 +143264,9011,02/11,1297598387 +143264,9011,03/11,1299423600 +143264,9011,04/11,1303032851 +143264,9011,05/11,1304886928 +143264,9011,06/11,1307201728 +143264,9011,07/10,1279442081 +143264,9011,09/10,1285431110 +143264,9011,10/10,1287950310 +143264,9011,11/10,1289053524 +143264,9011,12/10,1291460428 +143264,25751,01/12,1327256334 +143264,25751,04/11,1303031667 +143264,25751,05/11,1304885988 +143264,25751,06/11,1307200712 +143264,25751,09/10,1285428618 +143264,25751,10/10,1287948374 +143264,25751,10/11,1317552823 +143264,25751,11/10,1289052268 +143264,25751,11/11,1321717424 +143264,25751,12/10,1291459473 +143264,25751,12/11,1323545583 +143264,25789,06/11,1307204298 +143264,25824,05/11,1306576814 +143264,25825,03/09,1236512090 +143264,25830,08/10,1282483722 +143264,25870,08/09,1250330960 +143264,25881,01/11,1295206247 +143264,25881,02/11,1297617696 +143264,25881,03/11,1300619936 +143264,25881,04/11,1303034119 +143264,25881,05/11,1304889008 +143264,25881,06/11,1307202551 +143264,25881,10/10,1288453744 +143264,25881,11/10,1289064237 +143264,25881,11/11,1320489504 +143264,25881,12/10,1292695501 +143264,25881,12/11,1323548641 +143264,25905,11/10,1290958915 +143264,25908,01/10,1263728614 +143264,25908,02/10,1266777616 +143264,25908,03/10,1268473481 +143264,25908,05/10,1272802069 +143264,25908,06/10,1275815636 +143264,25908,07/10,1279441911 +143264,25908,08/10,1281785037 +143264,25908,10/09,1254656605 +143264,25908,11/09,1257674162 +143264,25908,12/09,1260111216 +143264,25911,01/10,1262377693 +143264,25911,02/10,1266776720 +143264,25911,03/10,1268472646 +143264,25918,11/09,1257673275 +143264,25918,12/09,1260110507 +143264,25929,03/09,1238273554 +143264,25930,02/10,1266777207 +143264,25930,09/09,1252093792 +143264,25941,01/10,1264325516 +143264,25941,02/10,1266776945 +143264,25941,03/10,1268472948 +143264,25941,06/11,1307204275 +143264,25941,11/09,1257673784 +143264,25941,12/09,1260110842 +143264,25943,03/09,1238273518 +143264,25965,11/11,1321718687 +143264,25965,12/11,1323548931 +143264,25972,01/11,1294601954 +143264,25972,02/10,1266778204 +143264,25972,02/11,1297598490 +143264,25972,03/10,1268474854 +143264,25972,03/11,1299423880 +143264,25972,04/11,1303032779 +143264,25972,05/10,1272802540 +143264,25972,05/11,1304886767 +143264,25972,06/10,1276350689 +143264,25972,06/11,1307201514 +143264,25972,08/10,1281785383 +143264,25972,09/10,1285431409 +143264,25972,10/10,1287950392 +143264,25972,11/10,1289053603 +143264,25972,12/10,1291460524 +143264,25975,05/11,1304886844 +143264,25975,06/11,1307201375 +143264,25975,11/10,1289064148 +143264,25975,11/11,1320488568 +143264,25975,12/11,1323546028 +143264,25987,01/12,1327257211 +143264,25987,12/10,1292695169 +143264,25993,11/09,1257673611 +143264,25993,12/09,1260110695 +143264,26009,05/11,1304886108 +143264,26009,06/11,1307200859 +143264,26012,03/09,1238273597 +143264,26025,03/11,1301233520 +143264,26025,04/11,1303032433 +143264,26025,05/11,1304886589 +143264,26025,06/11,1307201298 +143264,26025,10/11,1317553136 +143264,26025,11/11,1320488359 +143264,26025,12/11,1323545774 +143264,26048,01/11,1295207145 +143264,26048,01/12,1327258462 +143264,26048,02/11,1297618796 +143264,26048,03/11,1299426203 +143264,26048,05/11,1305464137 +143264,26048,06/11,1307203377 +143264,26048,11/10,1290959387 +143264,26048,11/11,1321719021 +143264,26048,12/10,1292696260 +143264,26048,12/11,1323549644 +143264,26049,01/11,1294602360 +143264,26049,01/12,1327256348 +143264,26049,02/11,1297598629 +143264,26049,03/11,1299423978 +143264,26049,04/11,1303032961 +143264,26049,05/10,1272802979 +143264,26049,05/11,1304886894 +143264,26049,06/10,1276943334 +143264,26049,06/11,1307201350 +143264,26049,08/10,1282483908 +143264,26049,10/10,1287950934 +143264,26049,10/11,1317552901 +143264,26049,11/10,1289063247 +143264,26049,11/11,1320488051 +143264,26049,12/10,1292694538 +143264,26049,12/11,1323545656 +143264,26073,01/12,1327258501 +143264,26073,02/11,1298152808 +143264,26073,03/11,1300620807 +143264,26073,05/11,1305463903 +143264,26073,06/11,1307203282 +143264,26073,11/11,1321718975 +143264,26073,12/11,1323549280 +143264,26090,11/11,1320489319 +143264,26090,12/11,1323548462 +143264,26107,03/11,1300620390 +143264,26107,05/11,1305463679 +143264,26107,06/11,1307203120 +143264,26113,01/10,1262377708 +143264,26113,02/10,1266777271 +143264,26113,03/10,1268473034 +143264,26113,05/10,1275239574 +143264,26113,06/10,1275813896 +143264,26113,11/09,1257673516 +143264,26113,12/09,1260110548 +143264,26141,06/10,1276943244 +143264,26164,01/11,1296419433 +143264,26164,11/10,1290334511 +143264,26188,01/10,1263728692 +143264,26188,02/11,1298803133 +143264,26188,03/11,1299422493 +143264,26188,06/11,1309026715 +143264,26228,02/11,1297618842 +143264,26228,03/10,1268473543 +143264,26228,03/11,1299426093 +143264,26228,04/11,1303031196 +143264,26228,05/10,1272802023 +143264,26228,05/11,1304885396 +143264,26228,06/10,1275815552 +143264,26228,06/11,1307200195 +143264,26228,07/10,1279441806 +143264,26228,08/10,1281784514 +143264,26228,09/10,1285428728 +143264,26228,10/10,1287948410 +143264,26228,11/10,1290958835 +143264,26228,12/10,1291459372 +143264,26245,01/11,1294601993 +143264,26245,03/10,1269699995 +143264,26245,10/10,1287949757 +143264,26252,01/11,1294598287 +143264,26252,02/11,1297595985 +143264,26252,03/11,1299422025 +143264,26252,10/10,1287948903 +143264,26252,11/10,1289052870 +143264,26252,12/10,1291459647 +143264,26259,01/12,1327257135 +143264,26259,11/11,1322389983 +143264,26259,12/11,1323547724 +143264,26268,01/11,1294599549 +143264,26268,02/11,1298150655 +143264,26268,03/10,1269700110 +143264,26268,05/10,1272802650 +143264,26268,06/10,1276350658 +143264,26268,08/10,1281785325 +143264,26268,09/10,1285430949 +143264,26268,10/10,1287949269 +143264,26268,11/10,1289052517 +143264,26268,12/10,1291459557 +143264,26269,05/09,1241971935 +143264,26270,09/09,1252093125 +143264,26318,03/09,1238274015 +143264,26325,01/11,1295792028 +143264,26325,02/11,1297596010 +143264,26325,03/11,1299421845 +143264,26325,11/11,1321718959 +143264,26360,01/10,1263727539 +143264,26360,11/09,1257672948 +143264,26360,12/09,1260110254 +143264,26378,05/10,1272802477 +143264,26395,01/10,1263728718 +143264,26411,01/12,1327258191 +143264,26411,12/11,1323549101 +143264,26413,01/11,1294599131 +143264,26413,02/11,1297596369 +143264,26413,05/10,1272801248 +143264,26413,06/10,1275814017 +143264,26413,07/10,1279441412 +143264,26463,05/10,1272801084 +143264,26463,06/10,1276350315 +143264,26463,07/10,1279441214 +143264,26463,08/10,1281293865 +143264,26463,09/10,1285427587 +143264,26463,10/10,1286639192 +143264,26463,11/10,1289051892 +143264,26483,05/11,1305463214 +143264,26493,01/11,1294601625 +143264,26493,02/11,1297597979 +143264,26493,10/10,1287949861 +143264,26493,11/10,1289053275 +143264,26493,12/10,1291460104 +143264,26502,01/10,1263727999 +143264,26502,10/09,1254656100 +143264,26560,01/11,1294601190 +143264,26560,02/11,1297596668 +143264,26560,03/11,1299422651 +143264,26560,07/10,1279441457 +143264,26560,08/10,1281784531 +143264,26560,09/10,1285428903 +143264,26560,10/10,1287948498 +143264,26560,11/10,1289052535 +143264,26560,12/09,1260111248 +143264,26560,12/10,1291459584 +143264,26587,dark,1431439713 +143264,26587,DIVX,1431439729 +143264,26587,thought-provoking,1431439723 +143264,26596,01/11,1294602616 +143264,26596,02/11,1297598610 +143264,26596,03/11,1299423867 +143264,26596,04/11,1303032909 +143264,26596,05/11,1304886968 +143264,26596,11/10,1289063887 +143264,26596,12/10,1292694924 +143264,26602,01/11,1294603151 +143264,26602,01/12,1327257681 +143264,26602,02/11,1297617633 +143264,26602,03/11,1299424985 +143264,26602,04/11,1303034100 +143264,26602,05/11,1305463013 +143264,26602,06/11,1307202705 +143264,26602,10/10,1288453809 +143264,26602,11/10,1289064259 +143264,26602,11/11,1321718506 +143264,26602,12/10,1292695480 +143264,26602,12/11,1323548482 +143264,26631,08/09,1249117542 +143264,26644,11/11,1321718841 +143264,26662,Do kupienia,1176939550 +143264,26691,01/12,1327257168 +143264,26693,based on a book,1387308254 +143264,26693,clowns,1387308257 +143264,26693,flashbacks,1387308261 +143264,26693,long,1387308265 +143264,26693,Stephen King,1387308269 +143264,26693,Tim Curry,1387308313 +143264,26699,01/11,1294602339 +143264,26701,02/10,1266777396 +143264,26702,05/10,1272802916 +143264,26702,06/10,1276943015 +143264,26702,07/10,1279441709 +143264,26702,08/10,1281784760 +143264,26702,09/10,1285428548 +143264,26702,10/10,1287948339 +143264,26702,11/10,1289052241 +143264,26703,01/12,1327258215 +143264,26728,01/10,1262378017 +143264,26728,10/09,1255864379 +143264,26728,11/09,1257674071 +143264,26728,12/09,1260111088 +143264,26731,09/09,1252093263 +143264,26760,06/10,1275815710 +143264,26760,07/10,1279441836 +143264,26760,08/10,1281784880 +143264,26760,12/10,1292693821 +143264,26762,01/12,1327257122 +143264,26762,06/11,1307780928 +143264,26762,11/11,1321718160 +143264,26762,12/11,1323547947 +143264,26776,DIVX,1187822449 +143264,26796,01/10,1262377778 +143264,26796,02/10,1266777029 +143264,26796,03/10,1268473053 +143264,26796,05/10,1272801279 +143264,26796,12/09,1260711502 +143264,26797,01/11,1294599597 +143264,26797,02/10,1266777173 +143264,26797,02/11,1297596424 +143264,26797,03/10,1268473074 +143264,26797,03/11,1299422277 +143264,26797,04/11,1303031550 +143264,26797,05/11,1304885819 +143264,26797,06/11,1307200419 +143264,26797,09/10,1285427970 +143264,26842,01/10,1262378057 +143264,26842,10/09,1255168781 +143264,26842,11/09,1257674210 +143264,26934,10/09,1254656258 +143264,26934,11/09,1257673956 +143264,26940,08/09,1250330790 +143264,26998,01/11,1294603086 +143264,26998,01/12,1327257703 +143264,26998,02/11,1297617614 +143264,26998,03/11,1299424957 +143264,26998,04/11,1303033943 +143264,26998,05/11,1304888923 +143264,26998,06/11,1307202425 +143264,26998,10/10,1287951308 +143264,26998,11/10,1289063807 +143264,26998,11/11,1320489398 +143264,26998,12/10,1292695268 +143264,26998,12/11,1323548518 +143264,27009,01/12,1327258057 +143264,27009,11/11,1320489681 +143264,27009,12/11,1323548710 +143264,27067,01/11,1294601273 +143264,27067,01/12,1327256659 +143264,27067,02/11,1297596865 +143264,27067,03/10,1269082598 +143264,27067,03/11,1299422595 +143264,27067,04/11,1303031860 +143264,27067,11/10,1290334065 +143264,27067,11/11,1320488613 +143264,27067,12/10,1291459660 +143264,27067,12/11,1323546296 +143264,27109,nuda,1241002165 +143264,27109,revenge,1241001951 +143264,27109,samurai,1241001973 +143264,27176,12/11,1323548272 +143264,27216,01/10,1262377387 +143264,27216,01/11,1295207564 +143264,27216,02/10,1266176694 +143264,27216,11/10,1290959445 +143264,27217,01/11,1294602926 +143264,27217,02/11,1297600413 +143264,27217,03/11,1299424517 +143264,27217,10/10,1287951052 +143264,27217,11/10,1289063312 +143264,27217,12/10,1292695152 +143264,27223,01/11,1296419459 +143264,27223,02/11,1297618459 +143264,27246,06/10,1275816087 +143264,27246,07/10,1279441864 +143264,27246,08/10,1281784838 +143264,27246,09/10,1285429321 +143264,27255,boring,1274097749 +143264,27255,Iran,1274097756 +143264,27255,Middle East,1274097773 +143264,27329,01/10,1262377443 +143264,27329,02/10,1266176748 +143264,27329,03/10,1268471165 +143264,27329,11/09,1257673047 +143264,27329,12/09,1260110229 +143264,27365,11/09,1257673363 +143264,27365,12/09,1260110466 +143264,27369,01/10,1262377579 +143264,27369,10/09,1254655057 +143264,27369,11/09,1258277863 +143264,27369,12/09,1260711389 +143264,27370,01/10,1263727583 +143264,27370,01/11,1294598992 +143264,27370,02/10,1266776809 +143264,27370,02/11,1297596577 +143264,27370,03/10,1268472719 +143264,27370,03/11,1299422524 +143264,27370,04/11,1303031768 +143264,27370,05/10,1272801028 +143264,27370,05/11,1304885969 +143264,27370,06/10,1275813797 +143264,27370,06/11,1307200761 +143264,27370,07/10,1279441164 +143264,27370,08/10,1281784174 +143264,27370,09/10,1285428051 +143264,27370,10/09,1254655900 +143264,27370,10/10,1287948269 +143264,27370,11/10,1289052156 +143264,27370,12/10,1291459352 +143264,27373,06/10,1276350225 +143264,27397,Do kupienia,1188986458 +143264,27432,04/09,1238833064 +143264,27515,02/11,1298150801 +143264,27515,03/11,1299422894 +143264,27515,04/11,1303031976 +143264,27515,05/11,1304886239 +143264,27515,06/11,1307201141 +143264,27528,10/09,1255864357 +143264,27528,11/09,1257674226 +143264,27528,12/09,1260111338 +143264,27550,01/11,1294601701 +143264,27550,01/12,1327256446 +143264,27550,02/11,1297597533 +143264,27550,03/11,1299422695 +143264,27550,05/11,1304886009 +143264,27550,06/11,1307200745 +143264,27550,10/10,1287950457 +143264,27550,10/11,1317553064 +143264,27550,11/10,1289053664 +143264,27550,11/11,1320488214 +143264,27550,12/10,1291460271 +143264,27550,12/11,1323545812 +143264,27571,02/11,1297618082 +143264,27571,03/11,1299425518 +143264,27636,02/10,1266777585 +143264,27636,05/10,1272802141 +143264,27636,06/11,1308495009 +143264,27636,08/10,1281785152 +143264,27636,10/09,1254656509 +143264,27636,11/09,1257674089 +143264,27646,02/11,1298803093 +143264,27647,01/11,1294601069 +143264,27647,02/11,1297596403 +143264,27647,03/11,1299422235 +143264,27647,10/10,1287951363 +143264,27647,11/10,1289053566 +143264,27647,12/10,1291460322 +143264,27660,DVD,1212516639 +143264,27671,01/10,1262377828 +143264,27671,01/11,1294599275 +143264,27671,01/12,1327256146 +143264,27671,02/10,1266176875 +143264,27671,02/11,1297596224 +143264,27671,03/10,1268472663 +143264,27671,11/09,1257673866 +143264,27671,11/11,1322389289 +143264,27671,12/09,1260110814 +143264,27671,12/11,1323545327 +143264,27706,based on a book,1265580726 +143264,27706,Billy Connolly,1265581028 +143264,27706,Brad Silberling,1265581104 +143264,27706,dustin hoffman,1265581032 +143264,27706,DVD,1157047989 +143264,27706,Emily Browning,1265581133 +143264,27706,jim carrey,1265581040 +143264,27706,Jude Law,1265581045 +143264,27706,macabre,1265581050 +143264,27706,meryl streep,1265581053 +143264,27706,quirky,1265581064 +143264,27706,visually interesting--that's about it,1265581078 +143264,27721,Audrey Tautou,1272751449 +143264,27721,DIVX,1272751413 +143264,27721,Jean-Pierre Jeunet,1272751536 +143264,27721,jodie foster,1272751466 +143264,27721,Romance,1272751474 +143264,27721,Tchéky Karyo,1272751609 +143264,27721,World War I,1272751482 +143264,27731,anime,1304924385 +143264,27731,cats,1304924388 +143264,27731,DVD,1304924379 +143264,27731,Japan,1304924394 +143264,27731,Studio Ghibli,1304924399 +143264,27736,01/11,1294602941 +143264,27736,01/12,1327257109 +143264,27736,02/11,1297617407 +143264,27736,03/11,1299424596 +143264,27736,04/11,1303033815 +143264,27736,05/11,1304888837 +143264,27736,06/11,1307202321 +143264,27736,10/10,1287951336 +143264,27736,11/10,1289063833 +143264,27736,11/11,1320489236 +143264,27736,12/10,1292695285 +143264,27736,12/11,1323547871 +143264,27738,01/11,1294598518 +143264,27738,02/11,1297596641 +143264,27738,03/11,1299422376 +143264,27738,04/11,1303031998 +143264,27738,05/11,1304886252 +143264,27738,06/11,1307201154 +143264,27738,11/10,1289063191 +143264,27738,12/10,1291459946 +143264,27758,02/11,1297598081 +143264,27758,03/11,1299423056 +143264,27758,04/11,1303031828 +143264,27773,bizarre,1447260176 +143264,27773,brutal,1447260151 +143264,27773,Chan-Wook Park,1447260190 +143264,27773,imdb top 250,1447260155 +143264,27773,Korea,1447260140 +143264,27773,Nudity (Full Frontal),1447260163 +143264,27781,02/11,1298805246 +143264,27781,03/11,1299425708 +143264,27781,05/11,1305463271 +143264,27781,06/11,1307202969 +143264,27788,DVD,1167825526 +143264,27812,01/12,1327256382 +143264,27812,06/11,1309026907 +143264,27812,10/11,1317553048 +143264,27812,11/11,1320488147 +143264,27812,12/11,1323545745 +143264,27847,10/10,1288453889 +143264,27847,11/10,1289064324 +143264,27857,10/09,1254655694 +143264,27862,03/11,1301233834 +143264,27866,amazing ending,1272364034 +143264,27866,based on a book,1272363928 +143264,27866,Brad McGann,1272363918 +143264,27866,Colin Moy,1272363939 +143264,27866,DIVX,1272363895 +143264,27866,Emily Barclay,1272363976 +143264,27866,Jimmy Keen,1272363984 +143264,27866,Journalist,1272363992 +143264,27866,Miranda Otto,1272363996 +143264,27866,New Zealand,1272364017 +143264,27866,Nudity (Topless),1272364000 +143264,27878,DIVX,1182072992 +143264,27891,11/11,1321718383 +143264,27891,12/11,1323547794 +143264,27911,01/12,1327258365 +143264,27911,11/11,1321718785 +143264,27911,12/11,1323549143 +143264,27922,03/11,1300620678 +143264,30707,DVD,1165955945 +143264,30712,03/09,1236511768 +143264,30749,DIVX,1154867610 +143264,30793,na dysku,1431442198 +143264,30810,DIVX,1177003042 +143264,30822,DVD,1167827805 +143264,30846,DIVX,1154867518 +143264,30867,01/10,1264325719 +143264,30991,11/10,1289053228 +143264,30991,12/10,1291460055 +143264,31188,01/11,1294602999 +143264,31188,02/11,1297617554 +143264,31188,03/11,1299424667 +143264,31188,04/11,1303033880 +143264,31188,05/11,1304888766 +143264,31188,06/11,1307202348 +143264,31188,10/10,1287951510 +143264,31188,11/10,1289063926 +143264,31188,11/11,1320489491 +143264,31188,12/10,1292695217 +143264,31188,12/11,1323548585 +143264,31247,01/11,1294601928 +143264,31247,02/10,1266777970 +143264,31247,02/11,1297598409 +143264,31247,03/10,1268474651 +143264,31247,03/11,1299423624 +143264,31247,04/11,1303032873 +143264,31247,05/10,1272802447 +143264,31247,05/11,1304886949 +143264,31247,06/10,1275816187 +143264,31247,06/11,1307201743 +143264,31247,09/10,1285431175 +143264,31247,10/10,1287950333 +143264,31247,11/10,1289053541 +143264,31247,11/11,1320488799 +143264,31247,12/10,1291460442 +143264,31247,12/11,1323546430 +143264,31410,DVD,1177017745 +143264,31435,DIVX,1153951050 +143264,31539,07/10,1279441661 +143264,31539,08/10,1281783984 +143264,31539,09/10,1285428133 +143264,31539,10/10,1286639759 +143264,31539,11/10,1289052067 +143264,31545,01/10,1262378031 +143264,31545,01/11,1295207029 +143264,31545,02/11,1297618717 +143264,31545,03/11,1299425981 +143264,31545,05/11,1305463884 +143264,31545,06/11,1307203269 +143264,31545,11/11,1321718991 +143264,31545,12/09,1260711764 +143264,31545,12/10,1292696237 +143264,31547,01/11,1296419743 +143264,31547,02/11,1298152848 +143264,31547,04/10,1272212903 +143264,31547,05/10,1275239482 +143264,31547,06/10,1275813701 +143264,31547,07/10,1279440969 +143264,31547,08/10,1281293771 +143264,31588,03/09,1236509922 +143264,31590,02/11,1298152739 +143264,31590,03/09,1237278736 +143264,31590,03/11,1300620751 +143264,31590,05/11,1305464502 +143264,31590,06/11,1307203496 +143264,31628,01/10,1264325616 +143264,31628,01/12,1327257397 +143264,31628,11/11,1320489098 +143264,31628,12/11,1323548006 +143264,31658,adventure,1303753783 +143264,31658,animation,1303753788 +143264,31658,anime,1303753795 +143264,31658,based on a book,1303753801 +143264,31658,dreamlike,1303753804 +143264,31658,DVD,1303753858 +143264,31658,fantasy,1303753807 +143264,31658,Hayao Miyazaki,1303753810 +143264,31658,humorous,1303753820 +143264,31658,imdb top 250,1303753912 +143264,31658,Japan,1303753823 +143264,31658,Joe Hisaishi,1303754023 +143264,31658,magic,1303753827 +143264,31658,steampunk,1303753830 +143264,31658,Studio Ghibli,1303753837 +143264,31658,stylized,1303753839 +143264,31658,war,1303753849 +143264,31672,02/11,1297618101 +143264,31672,03/11,1299425536 +143264,31672,05/11,1305463104 +143264,31672,06/11,1307202780 +143264,31672,11/10,1289064525 +143264,31672,11/11,1320489262 +143264,31696,DIVX,1187822372 +143264,31785,01/10,1263727767 +143264,31921,03/10,1269082461 +143264,31921,04/10,1272213033 +143264,31921,05/10,1272800751 +143264,31950,01/10,1263728042 +143264,31952,DIVX,1154867571 +143264,32196,01/10,1262377611 +143264,32196,02/10,1266176858 +143264,32196,03/10,1268473017 +143264,32196,05/10,1272801205 +143264,32196,06/10,1275813986 +143264,32196,11/09,1257673755 +143264,32196,12/09,1260110596 +143264,32280,01/11,1295206053 +143264,32280,02/11,1297598150 +143264,32280,03/11,1299423248 +143264,32280,04/11,1303032321 +143264,32280,05/11,1306576375 +143264,32280,06/11,1307200522 +143264,32280,10/11,1317552805 +143264,32352,01/11,1296418802 +143264,32352,01/12,1327257599 +143264,32352,02/11,1297600365 +143264,32352,03/11,1299424484 +143264,32352,04/11,1303033536 +143264,32352,05/11,1304888529 +143264,32352,06/11,1307202249 +143264,32352,11/11,1320489249 +143264,32493,08/10,1282484151 +143264,32511,01/11,1295206963 +143264,32511,02/11,1297618557 +143264,32511,03/11,1299425903 +143264,32511,11/10,1290334600 +143264,32511,12/10,1292696190 +143264,32587,DIVX,1154867864 +143264,32587,storytelling,1368283959 +143264,32646,05/11,1304886446 +143264,32646,06/11,1307201220 +143264,32646,11/11,1320488489 +143264,32646,12/11,1323545973 +143264,32649,01/11,1295206931 +143264,32649,02/11,1297618503 +143264,32649,03/11,1299425859 +143264,32649,11/10,1290334566 +143264,32649,11/11,1321718871 +143264,32649,12/10,1292696171 +143264,32792,01/10,1262377853 +143264,32792,02/10,1266776985 +143264,32792,03/10,1268472998 +143264,32792,11/09,1257673559 +143264,32792,12/09,1260110579 +143264,32844,08/10,1281784855 +143264,32853,03/09,1237278933 +143264,32875,05/11,1306576644 +143264,32875,06/11,1307201362 +143264,32875,11/11,1320488551 +143264,32875,12/11,1323546239 +143264,32943,01/10,1262377665 +143264,32943,12/09,1260110488 +143264,33004,DVD,1212516528 +143264,33008,05/11,1305463043 +143264,33008,06/11,1307202740 +143264,33072,03/09,1238273420 +143264,33119,11/10,1290959331 +143264,33119,11/11,1321718857 +143264,33119,12/10,1292696117 +143264,33162,DIVX,1137342031 +143264,33166,DVD,1182278505 +143264,33261,01/12,1327257773 +143264,33264,01/11,1294601781 +143264,33264,01/12,1327256460 +143264,33264,02/11,1297598214 +143264,33264,03/11,1299423407 +143264,33264,04/11,1303032289 +143264,33264,05/11,1304886420 +143264,33264,06/11,1307201178 +143264,33264,08/10,1282484063 +143264,33264,10/10,1287951089 +143264,33264,10/11,1317553121 +143264,33264,11/10,1289063612 +143264,33264,11/11,1320488341 +143264,33264,12/10,1291460308 +143264,33264,12/11,1323545910 +143264,33340,01/11,1294601891 +143264,33340,02/11,1297598369 +143264,33340,03/11,1299423521 +143264,33340,04/11,1303032830 +143264,33340,05/10,1272802822 +143264,33340,10/10,1287950682 +143264,33340,11/10,1289053892 +143264,33410,05/10,1272801509 +143264,33493,DIVX,1161468840 +143264,33587,08/10,1282484077 +143264,33587,10/10,1287950581 +143264,33587,11/10,1289053835 +143264,33660,na dysku,1431440643 +143264,33760,01/11,1295206686 +143264,33760,02/11,1297618342 +143264,33760,03/11,1299425502 +143264,33794,DIVX,1154867537 +143264,33893,02/10,1266777802 +143264,33893,03/10,1268473304 +143264,33905,05/11,1304885682 +143264,33905,06/11,1307200282 +143264,34048,DIVX,1187822339 +143264,34111,06/11,1307780754 +143264,34153,Dana Adam Shapiro,1272362926 +143264,34153,disability,1272362969 +143264,34153,DIVX,1272362896 +143264,34153,documentary,1272362939 +143264,34153,Henry Alex Rubin,1272362930 +143264,34153,quirky subculture,1272362952 +143264,34153,sports,1272362959 +143264,34238,Andrzej Chyra,1448919417 +143264,34238,Arkadiusz Detmer,1448919562 +143264,34238,Borys Szyc,1448919426 +143264,34238,DIVX,1448919474 +143264,34238,Janusz Bukowski,1448919437 +143264,34238,Konrad Niewolski,1448919463 +143264,34238,Michal Lorenc,1448919452 +143264,34326,Gus Van Sant,1427218046 +143264,34326,kurt cobain,1427218049 +143264,34326,nothing happens,1427218068 +143264,34326,rock and roll,1427218052 +143264,34405,action,1282512314 +143264,34405,adventure,1282512318 +143264,34405,based on a TV show,1282512325 +143264,34405,DIVX,1282512352 +143264,34405,sci-fi,1282512333 +143264,34405,space,1282512337 +143264,34411,08/09,1249117740 +143264,34437,Bill Murray,1405367416 +143264,34437,bittersweet,1405367420 +143264,34437,comedy,1405367423 +143264,34437,Jim Jarmusch,1405367426 +143264,34437,melancholic,1405367430 +143264,34437,Nudity (Full Frontal),1405367435 +143264,34437,obejr,1405367454 +143264,34437,Obejrzane,1405367464 +143264,34437,quirky,1405367441 +143264,34437,road trip,1405367438 +143264,34437,surreal,1405367443 +143264,34548,01/11,1295206387 +143264,34548,01/12,1327257715 +143264,34548,02/11,1297617723 +143264,34548,03/11,1299425087 +143264,34548,04/11,1303034008 +143264,34548,05/11,1304888960 +143264,34548,06/11,1307202495 +143264,34548,11/10,1289064401 +143264,34548,11/11,1320489431 +143264,34548,12/10,1292695697 +143264,34548,12/11,1323548539 +143264,34552,Bill Nighy,1273411449 +143264,34552,David Yates,1273411456 +143264,34552,Do kupienia,1273411422 +143264,34552,Iceland,1273411461 +143264,34552,Kelly Macdonald,1273411466 +143264,34552,Nicholas Hooper,1273411679 +143264,34552,politics,1273411479 +143264,34552,romance,1273411496 +143264,35347,09/09,1252092993 +143264,36363,06/09,1244323512 +143264,36517,DVD,1230280392 +143264,37240,9/11,1244626586 +143264,37240,archive footage,1244626593 +143264,37240,controversial,1244626603 +143264,37240,corruption,1244626608 +143264,37240,DIVX,1244626670 +143264,37240,documentary,1244626618 +143264,37240,History,1244626626 +143264,37240,Iraq War,1244626636 +143264,37240,Military,1244626640 +143264,37240,military industrial complex,1244626644 +143264,37240,politics,1244626654 +143264,37240,war,1244626660 +143264,37335,03/10,1269700138 +143264,37335,06/10,1276351465 +143264,37335,11/10,1290959064 +143264,37495,06/10,1276350642 +143264,37495,07/10,1279441613 +143264,37495,09/10,1285428944 +143264,37626,01/10,1262377985 +143264,37626,02/10,1266777059 +143264,37626,03/10,1268472980 +143264,37626,10/09,1256396113 +143264,37626,12/09,1260111119 +143264,37729,DVD,1212516613 +143264,37729,visually appealing,1368284201 +143264,37976,01/12,1327257506 +143264,37976,04/11,1303033313 +143264,37976,05/11,1304888472 +143264,37976,06/11,1307202103 +143264,37976,10/10,1288453858 +143264,37976,11/10,1289064309 +143264,37976,11/11,1320489206 +143264,37976,12/11,1323548188 +143264,38159,04/09,1240651785 +143264,38320,01/12,1327258431 +143264,38384,09/09,1252093306 +143264,38384,09/10,1285427927 +143264,38384,10/10,1288453254 +143264,38384,11/10,1289052039 +143264,38538,06/10,1276351260 +143264,38538,08/10,1281784792 +143264,38538,09/10,1285429481 +143264,38538,10/10,1287949404 +143264,38824,07/09,1246643537 +143264,39183,DIVX,1155502579 +143264,39292,DIVX,1154867596 +143264,39381,DIVX,1177008057 +143264,39441,03/09,1236504529 +143264,39481,03/10,1269083051 +143264,39818,01/11,1294602405 +143264,39818,02/10,1266778188 +143264,39818,02/11,1297599400 +143264,39818,03/10,1268474841 +143264,39818,03/11,1299424159 +143264,39818,04/11,1303033178 +143264,39818,05/10,1272802684 +143264,39818,05/11,1304887132 +143264,39818,06/10,1276943148 +143264,39818,06/11,1307201931 +143264,39818,10/10,1288453577 +143264,39818,11/10,1289053851 +143264,39818,11/11,1320488814 +143264,39818,12/10,1292694737 +143264,40033,06/11,1307202362 +143264,40226,11/10,1290334616 +143264,40494,05/11,1305462761 +143264,40494,06/11,1307202534 +143264,40494,11/11,1320489348 +143264,40494,12/11,1323548423 +143264,40586,04/09,1238831947 +143264,40591,01/11,1294602836 +143264,40591,01/12,1327256995 +143264,40591,02/11,1298803752 +143264,40591,04/11,1303032620 +143264,40591,05/11,1304886744 +143264,40591,06/11,1307201495 +143264,40591,10/11,1317553182 +143264,40591,11/10,1289064544 +143264,40591,11/11,1320488195 +143264,40591,12/10,1292695344 +143264,40591,12/11,1323546337 +143264,40629,18th century,1351023193 +143264,40629,19th century,1351023197 +143264,40629,based on a book,1351023201 +143264,40629,british,1351023206 +143264,40629,Classic,1351023212 +143264,40629,Dario Marianelli,1351023324 +143264,40629,Donald Sutherland,1351023247 +143264,40629,DVD,1351023340 +143264,40629,England,1351023214 +143264,40629,Jane Austen,1351023220 +143264,40629,Joe Wright,1351023255 +143264,40629,Keira Knightley,1351023223 +143264,40629,romance,1351023229 +143264,40629,Simon Woods,1351023304 +143264,40815,DVD,1143974558 +143264,40819,DIVX,1159220907 +143264,40828,03/10,1269083137 +143264,40828,10/10,1287949820 +143264,40828,11/10,1289053124 +143264,40828,12/10,1291460084 +143264,40870,DIVX,1190462107 +143264,41226,10/09,1256395811 +143264,41336,01/11,1294601110 +143264,41336,02/11,1297596528 +143264,41336,03/10,1269083289 +143264,41336,03/11,1299422451 +143264,41336,04/11,1303031645 +143264,41336,05/10,1272802865 +143264,41336,05/11,1304885775 +143264,41336,09/10,1285428513 +143264,41336,10/10,1286641316 +143264,41336,11/10,1289052648 +143264,41336,12/10,1291459629 +143264,41627,01/11,1295207388 +143264,41627,02/11,1297618807 +143264,41627,03/11,1299426152 +143264,41627,05/11,1305464220 +143264,41627,06/11,1307203438 +143264,41627,07/09,1246643277 +143264,41627,11/10,1290334710 +143264,41627,12/10,1292696331 +143264,41712,01/11,1294601169 +143264,41712,02/11,1297596624 +143264,41712,03/11,1299422003 +143264,41712,04/11,1303031162 +143264,41712,08/10,1282483842 +143264,41712,09/10,1285430861 +143264,41815,01/11,1294602891 +143264,41815,01/12,1327257483 +143264,41815,02/11,1297600439 +143264,41815,03/11,1299424560 +143264,41815,04/11,1303033768 +143264,41815,05/11,1304888808 +143264,41815,06/11,1307202291 +143264,41815,10/10,1287951128 +143264,41815,11/10,1289063632 +143264,41815,11/11,1320489155 +143264,41815,12/10,1292695042 +143264,41815,12/11,1323548134 +143264,41831,09/10,1285429198 +143264,41831,10/10,1287948613 +143264,41831,11/10,1289053147 +143264,41831,12/10,1291459880 +143264,41863,Do kupienia,1163435534 +143264,41997,Do kupienia,1159220867 +143264,42094,03/09,1238273453 +143264,42163,01/10,1262377792 +143264,42163,09/10,1285428178 +143264,42163,10/09,1256395875 +143264,42163,10/10,1286639946 +143264,42163,11/09,1257673973 +143264,42163,11/10,1289052098 +143264,42163,12/09,1260110861 +143264,42213,01/10,1262377927 +143264,42213,02/10,1266777479 +143264,42213,03/10,1268473262 +143264,42213,10/09,1255168759 +143264,42213,11/09,1257674056 +143264,42213,12/09,1260111071 +143264,42351,01/11,1294602422 +143264,42351,02/11,1297597352 +143264,42351,03/11,1299422560 +143264,42351,04/11,1303031286 +143264,42351,05/11,1304885427 +143264,42351,06/11,1307200251 +143264,42351,10/10,1287951553 +143264,42351,11/10,1289063940 +143264,42351,12/10,1292694753 +143264,42546,11/11,1321718525 +143264,42634,DVD,1239701507 +143264,42681,01/11,1294601476 +143264,42681,02/10,1266777679 +143264,42681,02/11,1297597499 +143264,42681,03/10,1268473712 +143264,42681,05/10,1272802085 +143264,42681,06/10,1275814278 +143264,42681,09/10,1285429013 +143264,42681,10/10,1287948665 +143264,42681,11/10,1289052721 +143264,42681,12/10,1291459929 +143264,42734,animation,1420897959 +143264,42734,big bad wolf,1420897963 +143264,42734,clever,1420897966 +143264,42734,computer animation,1420897971 +143264,42734,Cory Edwards,1420897975 +143264,42734,DIVX,1420898070 +143264,42734,fairy tale,1420897977 +143264,42734,nonlinear,1420897984 +143264,42734,parody,1420897987 +143264,42734,Todd Edwards,1420897991 +143264,42734,Tony Leech,1420897995 +143264,42783,01/11,1295205557 +143264,42783,05/11,1304886076 +143264,42783,06/11,1307200776 +143264,42783,10/10,1287951534 +143264,42783,11/10,1289063791 +143264,42783,11/11,1320488030 +143264,42783,12/10,1291460494 +143264,43177,01/11,1294602256 +143264,43177,02/10,1266777939 +143264,43177,02/11,1297598674 +143264,43177,03/10,1269082929 +143264,43177,03/11,1299424085 +143264,43177,05/10,1272802173 +143264,43177,06/10,1275815888 +143264,43177,08/10,1281785346 +143264,43177,10/10,1287950710 +143264,43177,11/10,1289053775 +143264,43376,na dysku,1431440547 +143264,43444,03/11,1301233907 +143264,43497,05/10,1272802319 +143264,43497,06/10,1275816155 +143264,43497,10/10,1287949290 +143264,43497,11/10,1289053054 +143264,43677,10/09,1254655293 +143264,43832,07/09,1246643322 +143264,44100,09/09,1252093249 +143264,44115,03/11,1300619462 +143264,44115,08/10,1281785424 +143264,44199,bank robbery,1427740395 +143264,44199,Christopher Plummer,1427740437 +143264,44199,Clever,1427740399 +143264,44199,Clive Owen,1427740404 +143264,44199,Denzel Washington,1427740406 +143264,44199,DIVX,1427740464 +143264,44199,intelligent thriller,1427740409 +143264,44199,Jodie Foster,1427740455 +143264,44199,New York City,1427740413 +143264,44199,Spike Lee,1427740426 +143264,44199,twist ending,1427740421 +143264,44199,Willem Dafoe,1427740417 +143264,44568,01/11,1294602277 +143264,44568,01/12,1327256216 +143264,44568,02/11,1297599286 +143264,44568,03/11,1299424098 +143264,44568,04/11,1303031887 +143264,44568,05/11,1304886122 +143264,44568,06/11,1307200906 +143264,44568,10/10,1287950528 +143264,44568,10/11,1317553085 +143264,44568,11/10,1289053795 +143264,44568,11/11,1320487948 +143264,44568,12/10,1292694611 +143264,44568,12/11,1323545467 +143264,44597,03/11,1300619100 +143264,44597,04/11,1303031227 +143264,44597,05/10,1272802227 +143264,44597,05/11,1304885456 +143264,44597,06/10,1275815739 +143264,44597,06/11,1307200220 +143264,44597,07/10,1279441965 +143264,44597,08/10,1281784959 +143264,44597,09/10,1285429535 +143264,44597,10/10,1287949842 +143264,44597,11/10,1289053256 +143264,44655,01/11,1294602173 +143264,44655,02/11,1297598237 +143264,44655,03/11,1299423440 +143264,44655,04/11,1303032170 +143264,44655,05/11,1304886351 +143264,44655,06/11,1307201312 +143264,44655,10/10,1288453628 +143264,44655,10/11,1317553150 +143264,44655,11/10,1289063594 +143264,44655,12/10,1291460507 +143264,44709,DIVX,1365450958 +143264,44709,Doug Atchison,1365450754 +143264,44709,feel-good,1365450759 +143264,44709,gentle,1365450763 +143264,44709,good acting,1365450767 +143264,44709,Keke Palmer,1365450810 +143264,44709,Laurence Fishburne,1365450772 +143264,44709,Los Angeles,1365450777 +143264,44709,predictable,1365450782 +143264,44709,sentimental,1365450787 +143264,44709,spelling bee,1365450794 +143264,44709,uplifting,1365450802 +143264,45172,01/12,1327258133 +143264,45172,12/11,1323548950 +143264,45192,01/11,1295206892 +143264,45192,02/11,1297618481 +143264,45192,03/11,1299425843 +143264,45192,05/11,1305463770 +143264,45192,06/11,1307203201 +143264,45192,11/11,1320488896 +143264,45192,12/11,1323547777 +143264,45210,DVD,1194029570 +143264,45335,04/09,1238833169 +143264,45412,08/10,1282483522 +143264,45431,DIVX,1185988181 +143264,45728,brian o'halloran,1332186371 +143264,45728,Comedy,1332186313 +143264,45728,dialogue driven,1332186318 +143264,45728,Do kupienia,1188062223 +143264,45728,fast food,1332186323 +143264,45728,good dialogue,1332186328 +143264,45728,Highly quotable,1332186338 +143264,45728,Jason Mewes,1332186387 +143264,45728,jay and silent bob,1332186343 +143264,45728,Kevin Smith,1332186346 +143264,45728,sequel,1332186351 +143264,45728,view askew,1332186355 +143264,45837,01/11,1294601725 +143264,45837,01/12,1327256581 +143264,45837,02/11,1297597005 +143264,45837,03/10,1269700174 +143264,45837,03/11,1299422874 +143264,45837,04/11,1303032354 +143264,45837,05/10,1272802836 +143264,45837,05/11,1304886827 +143264,45837,06/10,1276943212 +143264,45837,06/11,1307201553 +143264,45837,08/10,1281785261 +143264,45837,09/10,1285431370 +143264,45837,10/10,1287950491 +143264,45837,11/10,1289053737 +143264,45837,11/11,1320488695 +143264,45837,12/10,1291460289 +143264,45837,12/11,1323546259 +143264,45891,01/11,1294602979 +143264,45891,01/12,1327257310 +143264,45891,02/11,1297617535 +143264,45891,03/11,1299425278 +143264,45891,04/11,1303034163 +143264,45891,05/11,1304888440 +143264,45891,06/11,1307201883 +143264,45891,10/10,1287951239 +143264,45891,11/10,1289063745 +143264,45891,11/11,1320489015 +143264,45891,12/10,1292695198 +143264,45891,12/11,1323547911 +143264,46156,01/11,1295207516 +143264,46156,02/11,1297619095 +143264,46156,11/10,1290959562 +143264,46347,DIVX,1272363151 +143264,46347,documentary,1272363185 +143264,46347,music,1272363199 +143264,46578,DIVX,1185992074 +143264,46664,08/09,1249117168 +143264,46723,Alejandro Gonzalez Inarritu,1266752944 +143264,46723,Brad Pitt,1266752951 +143264,46723,cate blanchett,1266752956 +143264,46723,DIVX,1266752908 +143264,46723,Gael García Bernal,1266752965 +143264,46723,Morocco,1266752972 +143264,46723,multiple storylines,1266752976 +143264,46723,Nudity (Full Frontal),1266752983 +143264,47084,01/11,1294602793 +143264,47084,01/12,1327256310 +143264,47084,02/11,1298803543 +143264,47084,03/11,1299423545 +143264,47084,04/11,1303032116 +143264,47084,05/11,1304886304 +143264,47084,06/11,1307201095 +143264,47084,10/10,1287951002 +143264,47084,10/11,1317552967 +143264,47084,11/10,1289063267 +143264,47084,11/11,1320488131 +143264,47084,12/10,1292694982 +143264,47084,12/11,1323545714 +143264,47146,01/11,1295206428 +143264,47146,01/12,1327257745 +143264,47146,02/11,1297618042 +143264,47146,03/11,1299425261 +143264,47146,04/11,1303034140 +143264,47146,05/11,1304889036 +143264,47146,06/11,1307202584 +143264,47146,11/10,1289064446 +143264,47146,11/11,1320489519 +143264,47146,12/10,1292695737 +143264,47146,12/11,1323548690 +143264,47152,01/10,1263728155 +143264,47152,03/10,1268472702 +143264,47152,05/10,1272801139 +143264,47152,06/10,1275813831 +143264,47152,07/10,1279441231 +143264,47239,01/11,1294602221 +143264,47239,01/12,1327257048 +143264,47239,02/11,1297598645 +143264,47239,03/11,1299423995 +143264,47239,04/11,1303033135 +143264,47239,05/11,1304887076 +143264,47239,06/11,1307201862 +143264,47239,10/10,1287950475 +143264,47239,11/10,1289053682 +143264,47239,11/11,1320488941 +143264,47239,12/10,1291460584 +143264,47239,12/11,1323547831 +143264,47287,11/09,1257673725 +143264,47287,12/09,1260110758 +143264,47484,01/11,1295206516 +143264,47484,01/12,1327258239 +143264,47484,02/11,1297618139 +143264,47484,03/11,1299425617 +143264,47484,05/11,1305463169 +143264,47484,06/11,1307202836 +143264,47484,11/10,1289725087 +143264,47484,11/11,1321718579 +143264,47484,12/10,1292695798 +143264,47484,12/11,1323548887 +143264,47634,01/10,1264325364 +143264,47634,02/10,1266176906 +143264,47634,03/10,1268472686 +143264,47634,05/10,1272801121 +143264,47634,06/10,1275813938 +143264,47670,02/11,1297599310 +143264,47670,11/10,1290334202 +143264,47670,12/10,1291460459 +143264,47728,01/11,1294601144 +143264,47728,02/11,1297596322 +143264,47728,03/11,1299422255 +143264,47728,04/11,1303031491 +143264,47728,05/11,1304885841 +143264,47728,06/11,1307200447 +143264,47728,07/10,1279441557 +143264,47728,09/10,1285428652 +143264,47728,10/10,1287948478 +143264,47728,10/11,1317552571 +143264,47728,11/10,1289052434 +143264,47728,11/11,1320487806 +143264,47728,12/10,1291459540 +143264,47836,11/09,1257673838 +143264,47894,DIVX,1202069043 +143264,47904,01/11,1295206981 +143264,47904,01/12,1327258449 +143264,47904,02/11,1297618579 +143264,47904,03/11,1299425916 +143264,47904,05/11,1305463815 +143264,47904,06/11,1307203244 +143264,47904,11/11,1321718906 +143264,47904,12/11,1323549256 +143264,47940,10/09,1255864303 +143264,47940,11/09,1257674009 +143264,47940,12/09,1260111004 +143264,47999,abortion,1392883308 +143264,47999,brainwashing,1392883314 +143264,47999,children,1392883318 +143264,47999,Christianity,1392883321 +143264,47999,disturbing,1392883325 +143264,47999,documentary,1392883328 +143264,47999,harry potter,1392883338 +143264,47999,homophobia,1392883343 +143264,47999,horrifying (but not Horror genre),1392883347 +143264,47999,politics,1392883352 +143264,47999,propaganda,1392883363 +143264,47999,radio,1392883360 +143264,47999,religion,1392883357 +143264,47999,social commentary,1392883377 +143264,48001,01/11,1294602765 +143264,48001,02/11,1297599425 +143264,48001,03/11,1299424367 +143264,48001,05/11,1306576717 +143264,48001,06/11,1307201617 +143264,48001,10/10,1287950972 +143264,48001,11/10,1289063709 +143264,48001,12/10,1292694805 +143264,48043,Clint Mansell,1383597562 +143264,48043,Darren Aronofsky,1383597531 +143264,48043,dreamlike,1383597509 +143264,48043,immortality,1383597513 +143264,48043,multiple storylines,1383597517 +143264,48043,Music,1383597519 +143264,48043,time travel,1383597572 +143264,48043,visually appealing,1383597568 +143264,48059,10/11,1317553032 +143264,48123,05/11,1305462239 +143264,48123,06/11,1307201386 +143264,48301,03/09,1237278886 +143264,48304,DIVX,1213449605 +143264,48394,DIVX,1213357133 +143264,48543,01/10,1262377766 +143264,48543,05/10,1275239686 +143264,48543,06/10,1275814077 +143264,48543,12/09,1260110740 +143264,48575,02/10,1266776911 +143264,48575,03/10,1268472753 +143264,48575,03/11,1299422911 +143264,48575,04/11,1303032197 +143264,48575,05/10,1272802297 +143264,48575,05/11,1304886468 +143264,48575,06/10,1275816414 +143264,48575,07/10,1279441853 +143264,48575,08/10,1281784977 +143264,48575,09/10,1285430453 +143264,48575,10/10,1287949443 +143264,48638,01/11,1294601493 +143264,48638,02/11,1297596910 +143264,48638,03/11,1299422674 +143264,48638,04/11,1303032220 +143264,48638,05/11,1304886401 +143264,48638,06/11,1307201166 +143264,48638,08/10,1281785218 +143264,48638,10/10,1288453508 +143264,48638,11/10,1289053337 +143264,48638,12/10,1291459970 +143264,48660,03/10,1268474514 +143264,48660,08/10,1281784989 +143264,48660,09/10,1285429367 +143264,48682,08/09,1249117358 +143264,48738,DIVX,1202069073 +143264,48774,DIVX,1211658708 +143264,48780,Andy Serkis,1272829316 +143264,48780,atmospheric,1351023128 +143264,48780,based on a book,1272829256 +143264,48780,Christian Bale,1272829259 +143264,48780,Christopher Nolan,1351023116 +143264,48780,David Bowie,1272829263 +143264,48780,David Julyan,1272829370 +143264,48780,DVD,1351023147 +143264,48780,Hugh Jackman,1272829270 +143264,48780,imdb top 250,1272829275 +143264,48780,magic,1272829279 +143264,48780,Michael Caine,1272829282 +143264,48780,Nicola Tesla,1272829393 +143264,48780,nonlinear,1272829285 +143264,48780,Scarlett Johansson,1272829287 +143264,48780,steampunk,1272829293 +143264,48780,twist ending,1272829302 +143264,48909,01/10,1263729103 +143264,48909,01/11,1294601685 +143264,48909,01/12,1327256543 +143264,48909,02/10,1266778001 +143264,48909,02/11,1297598180 +143264,48909,03/10,1268474697 +143264,48909,03/11,1299423329 +143264,48909,04/11,1303032593 +143264,48909,05/10,1272802491 +143264,48909,05/11,1304886658 +143264,48909,06/10,1276350582 +143264,48909,06/11,1307201325 +143264,48909,07/10,1279442171 +143264,48909,08/10,1281785180 +143264,48909,09/10,1285431028 +143264,48909,10/10,1287949881 +143264,48909,11/10,1289053292 +143264,48909,11/11,1320488644 +143264,48909,12/10,1291460204 +143264,48909,12/11,1323546141 +143264,48957,06/11,1307202986 +143264,48982,Andy Serkis,1362432221 +143264,48982,animation,1362432120 +143264,48982,beautiful,1362432123 +143264,48982,Bill Nighy,1362432197 +143264,48982,DIVX,1362432262 +143264,48982,Dreamworks,1362432127 +143264,48982,funny,1362432131 +143264,48982,Ian McKellen,1362432180 +143264,48982,Jean Reno,1362432134 +143264,48982,Kate Winslet,1362432174 +143264,48982,london,1362432138 +143264,48982,musical parodies,1362432143 +143264,48982,rats,1362432146 +143264,48982,romantic,1362432150 +143264,48982,singing slugs,1362432158 +143264,48982,slapstick,1362432165 +143264,48982,Tom Jones,1362432228 +143264,49225,01/10,1264864226 +143264,49225,01/11,1295207416 +143264,49225,02/11,1297619061 +143264,49225,03/10,1268471086 +143264,49225,03/11,1299426345 +143264,49225,04/10,1272212984 +143264,49225,06/11,1307204314 +143264,49225,08/10,1282483318 +143264,49225,09/10,1285427627 +143264,49225,10/10,1286639225 +143264,49225,11/09,1257672898 +143264,49225,11/10,1289051964 +143264,49265,Africa,1266752612 +143264,49265,BBC Films,1266752615 +143264,49265,DIVX,1266752515 +143264,49265,Dominique Horwitz,1266752622 +143264,49265,history,1266752630 +143264,49265,Hugh Dancy,1266752633 +143264,49265,John Hurt,1266752635 +143264,49265,Michael Caton-Jones,1266752639 +143264,49265,Rwanda,1266752645 +143264,49272,DIVX,1190461325 +143264,49284,Brad Silberling,1377607167 +143264,49284,comedy,1377607170 +143264,49284,DIVX,1377607238 +143264,49284,humorous,1377607229 +143264,49284,life lessons,1377607214 +143264,49284,Morgan Freeman,1377607174 +143264,49284,Paz Vega,1377607178 +143264,49355,06/11,1307203563 +143264,49355,11/11,1322390373 +143264,49394,05/10,1272801105 +143264,49394,06/10,1275813778 +143264,49615,05/11,1306576747 +143264,49615,06/11,1307201771 +143264,49688,03/09,1236502503 +143264,49817,01/11,1294601765 +143264,49817,02/11,1297597702 +143264,49817,03/10,1269700022 +143264,49817,03/11,1299423573 +143264,49817,09/10,1285430827 +143264,49817,10/10,1287950078 +143264,49817,11/10,1289053358 +143264,49917,01/10,1262377892 +143264,49917,02/10,1266776689 +143264,49917,03/10,1268472533 +143264,49917,05/10,1272800851 +143264,49917,06/10,1275813877 +143264,49917,07/10,1279441199 +143264,49917,08/10,1281784222 +143264,49917,09/10,1285428014 +143264,49917,10/10,1286640096 +143264,49917,11/10,1290958856 +143264,49917,12/09,1260111418 +143264,50068,na dysku,1431440880 +143264,50245,01/10,1263729139 +143264,50245,02/10,1266777717 +143264,50245,03/10,1268474314 +143264,50245,07/10,1279441339 +143264,50356,01/11,1295206369 +143264,50356,01/12,1327258044 +143264,50356,02/11,1297618016 +143264,50356,03/11,1299425462 +143264,50356,05/11,1305462859 +143264,50356,06/11,1307202667 +143264,50356,11/10,1289064362 +143264,50356,11/11,1320489637 +143264,50356,12/10,1292695656 +143264,50356,12/11,1323548765 +143264,50477,01/11,1294602320 +143264,50477,10/10,1287950869 +143264,50477,11/10,1289063145 +143264,50477,12/10,1291460599 +143264,50514,DIVX,1214174593 +143264,50583,01/12,1327256174 +143264,50583,03/11,1300619198 +143264,50583,04/11,1303031610 +143264,50583,05/11,1304885856 +143264,50583,06/11,1307200479 +143264,50583,10/11,1317552602 +143264,50583,11/11,1320487825 +143264,50583,12/11,1323545374 +143264,50594,01/11,1294601976 +143264,50594,02/11,1297598508 +143264,50594,03/11,1299423897 +143264,50594,04/11,1303032799 +143264,50594,05/11,1304886788 +143264,50594,06/11,1307201528 +143264,50594,08/10,1282484043 +143264,50594,10/10,1287950916 +143264,50594,10/11,1317553196 +143264,50594,11/10,1289063221 +143264,50594,11/11,1320488261 +143264,50594,12/10,1291460545 +143264,50742,07/09,1246643215 +143264,50872,Do kupienia,1194474565 +143264,50872,story,1368284501 +143264,50909,01/12,1327257034 +143264,50909,06/11,1308495028 +143264,50909,11/11,1320488782 +143264,50909,12/10,1292695518 +143264,50909,12/11,1323546411 +143264,51127,01/10,1262377752 +143264,51127,02/10,1266776895 +143264,51127,03/10,1268472798 +143264,51127,05/09,1241972192 +143264,51127,05/10,1272801228 +143264,51127,06/10,1275813926 +143264,51127,07/10,1279441324 +143264,51127,08/10,1281784276 +143264,51127,09/10,1285428306 +143264,51127,10/10,1286640443 +143264,51127,11/10,1289052224 +143264,51255,action,1266752796 +143264,51255,black comedy,1266752804 +143264,51255,british comedy,1266752801 +143264,51255,DIVX,1266752765 +143264,51255,macabre,1266752831 +143264,51255,parody,1266752835 +143264,51255,police,1266752839 +143264,51255,Simon Pegg,1266752841 +143264,51255,small town,1266752849 +143264,51255,surreal,1266752852 +143264,51255,Timothy Dalton,1266752855 +143264,51277,03/09,1236504985 +143264,51312,05/10,1272802334 +143264,51312,06/10,1275816035 +143264,51312,07/10,1279441995 +143264,51312,08/10,1281785077 +143264,51357,01/10,1262377841 +143264,51357,11/09,1257673694 +143264,51357,12/09,1260110653 +143264,51573,10/11,1317552981 +143264,51573,11/10,1289063286 +143264,51709,DIVX,1215027017 +143264,52009,01/12,1327258286 +143264,52009,11/11,1321718623 +143264,52009,12/11,1323549000 +143264,52042,DIVX,1266752243 +143264,52042,espionage,1266752159 +143264,52042,Netherlands,1266752170 +143264,52042,Nudity (Full Frontal),1266752195 +143264,52042,Nudity (Topless),1266752187 +143264,52042,Paul Verhoeven,1266752201 +143264,52042,true story,1266752211 +143264,52042,World War II,1266752220 +143264,52199,01/11,1295206334 +143264,52199,02/11,1297617952 +143264,52199,03/11,1299425399 +143264,52199,11/11,1320489307 +143264,52199,12/10,1292695598 +143264,52424,03/10,1268473503 +143264,52528,01/10,1263728193 +143264,52528,02/10,1266777987 +143264,52528,03/10,1268474680 +143264,52528,10/09,1255864397 +143264,52528,10/10,1286640928 +143264,52528,12/09,1260111272 +143264,52784,03/10,1269700082 +143264,52784,05/10,1272802610 +143264,52784,06/10,1276350719 +143264,52784,08/10,1281785404 +143264,52806,based on a book,1303754959 +143264,52806,DVD,1303754996 +143264,52806,fantasy,1303754966 +143264,52806,Goro Miyazaki,1303754969 +143264,52806,magic,1303754991 +143264,52806,slavery,1303754976 +143264,52806,Studio Ghibli,1303755007 +143264,52806,Tamiya Terashima,1303755065 +143264,52813,11/11,1321717290 +143264,52927,05/11,1304886328 +143264,52927,06/11,1307201129 +143264,52929,01/10,1262377867 +143264,52929,10/09,1255168868 +143264,52929,11/09,1257674177 +143264,52929,12/09,1260110799 +143264,52952,1980s,1255682353 +143264,52952,childhood,1255682357 +143264,52952,DIVX,1255682317 +143264,52952,England,1255682365 +143264,52952,friendship,1255682370 +143264,52952,nationalism,1255682383 +143264,52952,skinhead,1255682386 +143264,52952,suburbia,1255682389 +143264,52967,Alzheimer's disease,1343078500 +143264,52967,DIVX,1343078522 +143264,52967,Gordon Pinsent,1343078549 +143264,52967,Julie Christie,1343078556 +143264,52967,Sarah Polley,1343078633 +143264,52967,Well acted,1343078509 +143264,53161,04/09,1238833210 +143264,53355,01/11,1295206606 +143264,53355,01/12,1327257380 +143264,53355,02/11,1297618218 +143264,53355,03/11,1299425066 +143264,53355,04/11,1303033987 +143264,53355,05/11,1304888947 +143264,53355,06/11,1307202458 +143264,53355,11/10,1290334494 +143264,53355,11/11,1320489293 +143264,53355,12/10,1292695930 +143264,53355,12/11,1323548210 +143264,53406,01/11,1294602504 +143264,53406,02/11,1297599462 +143264,53406,10/10,1288453676 +143264,53406,11/10,1289053955 +143264,53406,12/10,1292694630 +143264,53447,DIVX,1264154043 +143264,53447,Gus Van Sant,1264154024 +143264,53447,murder,1264154021 +143264,53447,skateboarding,1264154029 +143264,53737,01/11,1294598490 +143264,53737,02/11,1297596186 +143264,53737,03/11,1299422129 +143264,53737,04/11,1303031468 +143264,53737,05/10,1272800874 +143264,53737,05/11,1304885796 +143264,53737,06/10,1275813848 +143264,53737,06/11,1307200404 +143264,53737,07/10,1279441183 +143264,53737,08/10,1281784006 +143264,53737,09/09,1252093110 +143264,53737,09/10,1285428086 +143264,53737,10/10,1286639839 +143264,53737,10/11,1317552685 +143264,53737,11/10,1289052198 +143264,53737,11/11,1320487871 +143264,53737,12/09,1260711419 +143264,53737,12/10,1291459327 +143264,53737,12/11,1323545425 +143264,53788,01/10,1262377652 +143264,53788,10/09,1256396134 +143264,53788,11/09,1259518437 +143264,53788,12/09,1260110884 +143264,53835,01/11,1294603102 +143264,53835,02/11,1297600386 +143264,53835,03/11,1299424501 +143264,53835,04/11,1303033578 +143264,53835,05/11,1304888748 +143264,53835,06/11,1307202165 +143264,53835,10/10,1287951428 +143264,53835,11/10,1289063871 +143264,53835,11/11,1320489194 +143264,53835,12/10,1292695328 +143264,53883,01/10,1262377957 +143264,53883,02/10,1266777224 +143264,53883,03/10,1268473090 +143264,53883,05/10,1272801294 +143264,53883,12/09,1260110984 +143264,53887,03/09,1238833117 +143264,54190,1960s,1343077699 +143264,54190,Bruno Delbonnel,1343078071 +143264,54190,DIVX,1343077772 +143264,54190,Julie Taymor,1343077757 +143264,54190,musical,1343077713 +143264,54190,notable soundtrack,1343077716 +143264,54190,Nudity (Topless - Brief),1343077720 +143264,54190,rock and roll,1343077725 +143264,54190,The Beatles,1343077728 +143264,54190,visually appealing,1343077737 +143264,54229,01/11,1296418615 +143264,54229,02/11,1297597752 +143264,54229,03/11,1299423133 +143264,54229,05/11,1304886727 +143264,54241,01/11,1294601290 +143264,54241,02/11,1297596932 +143264,54241,03/11,1299422725 +143264,54241,04/11,1303031914 +143264,54241,05/11,1304886154 +143264,54241,06/11,1307200983 +143264,54241,07/10,1279441767 +143264,54241,08/10,1281784615 +143264,54241,09/10,1285429156 +143264,54241,10/10,1287948594 +143264,54241,11/10,1289052625 +143264,54241,11/11,1320488230 +143264,54241,12/10,1291459677 +143264,54259,Do zassania,1195591880 +143264,54419,03/10,1269700205 +143264,54419,05/10,1272802962 +143264,54426,01/10,1264325796 +143264,54426,01/11,1294601311 +143264,54426,02/10,1266777530 +143264,54426,03/10,1268473174 +143264,54426,05/10,1272801263 +143264,54426,06/10,1275814046 +143264,54426,07/10,1279441524 +143264,54426,08/10,1281784359 +143264,54426,10/10,1287948526 +143264,54426,11/10,1289052574 +143264,54426,12/10,1291459902 +143264,54503,DIVX,1213523817 +143264,54833,03/11,1300619516 +143264,54881,1980s,1265566053 +143264,54881,DIVX,1265565986 +143264,54881,documentary,1265566057 +143264,54881,donkey kong,1265566062 +143264,54881,geek,1265566068 +143264,54881,quirky subculture,1265566074 +143264,54881,video games,1265566081 +143264,55052,based on a book,1343078221 +143264,55052,childhood,1343078224 +143264,55052,Dario Marianelli,1343078370 +143264,55052,DIVX,1343078417 +143264,55052,emotional,1343078228 +143264,55052,great cinematography,1343078234 +143264,55052,great soundtrack,1343078402 +143264,55052,James McAvoy,1343078351 +143264,55052,Joe Wright,1343078307 +143264,55052,Keira Knightley,1343078240 +143264,55052,romance,1343078244 +143264,55052,Saoirse Ronan,1343078322 +143264,55052,Seamus McGarvey,1343078393 +143264,55052,Tragedy,1343078253 +143264,55052,war,1343078249 +143264,55067,06/09,1245436004 +143264,55069,abortion,1271013343 +143264,55069,Golden Palm,1271013351 +143264,55069,Nudity (Full Frontal),1271013358 +143264,55094,army,1317747587 +143264,55094,Charlize Theron,1317747637 +143264,55094,DIVX,1317748216 +143264,55094,Iraq War,1317747593 +143264,55094,Nudity (Topless),1317747611 +143264,55094,Paul Haggis,1317747663 +143264,55094,Susan Sarandon,1317747649 +143264,55094,Tommy Lee Jones,1317747617 +143264,55098,11/11,1321718798 +143264,55156,08/09,1250330744 +143264,55159,07/10,1279441249 +143264,55159,08/10,1281784201 +143264,55167,08/09,1250330819 +143264,55176,1960s,1328558836 +143264,55176,archive footage,1328558840 +143264,55176,aviation,1328558843 +143264,55176,DIVX,1328558897 +143264,55176,documentary,1328558869 +143264,55176,History,1328558856 +143264,55176,sometimes boring,1328558885 +143264,55176,space,1328558860 +143264,55205,Sienna Miller,1270498778 +143264,55205,Steve Buscemi,1270498784 +143264,55276,confusing,1368180241 +143264,55276,corporate espionage,1368180245 +143264,55276,court,1368180249 +143264,55276,DIVX,1368180281 +143264,55276,Drama,1368180254 +143264,55276,George Clooney,1368180258 +143264,55276,great acting,1368180263 +143264,55276,lawyers,1368180266 +143264,55276,Sydney Pollack,1368180338 +143264,55276,Tilda Swinton,1368180273 +143264,55276,Tom Wilkinson,1368180324 +143264,55276,Tony Gilroy,1368180349 +143264,55280,comedy-drama,1343109645 +143264,55280,cute,1343109653 +143264,55280,DIVX,1343109687 +143264,55280,emotional,1343109656 +143264,55280,mental illness,1343109662 +143264,55280,psychology,1343109664 +143264,55280,quirky,1343109667 +143264,55280,Ryan Gosling,1343109671 +143264,55280,small town,1343109674 +143264,55280,sweet,1343109679 +143264,55280,weird,1343109682 +143264,55290,abduction,1362431965 +143264,55290,based on a book,1362431971 +143264,55290,Ben Affleck,1362431978 +143264,55290,Casey Affleck,1362431960 +143264,55290,detective,1362431985 +143264,55290,DIVX,1362432052 +143264,55290,drugs,1362431990 +143264,55290,Ed Harris,1362432022 +143264,55290,kidnapping,1362431995 +143264,55290,morality,1362431999 +143264,55290,Morgan Freeman,1362432002 +143264,55290,police investigation,1362432006 +143264,55290,twist,1362432011 +143264,55442,na dysku,1390059935 +143264,55652,06/10,1276943227 +143264,55652,08/10,1281785194 +143264,55652,09/10,1285431144 +143264,55652,10/10,1287950111 +143264,55652,11/10,1289052700 +143264,55652,12/10,1291459456 +143264,55765,based on a true story,1425985461 +143264,55765,corruption,1425985467 +143264,55765,crime,1425985469 +143264,55765,Denzel Washington,1425985464 +143264,55765,DIVX,1425985573 +143264,55765,drugs,1425985474 +143264,55765,gangster,1425985477 +143264,55765,Josh Brolin,1425985515 +143264,55765,mafia,1425985480 +143264,55765,Nudity (Topless - Brief),1425985482 +143264,55765,organized crime,1425985485 +143264,55765,police,1425985487 +143264,55765,Ridley Scott,1425985489 +143264,55765,Russell Crowe,1425985492 +143264,55765,smuggling,1425985495 +143264,55805,acting,1402482023 +143264,55805,Albert Finney,1402482028 +143264,55805,dolujace,1402482083 +143264,55805,Ethan Hawke,1402482033 +143264,55805,Marisa Tomei,1402482037 +143264,55805,non-linear,1402482046 +143264,55805,Nudity (Topless),1402482055 +143264,55805,Obejrzane,1402482162 +143264,55805,Philip Seymour Hoffman,1402482062 +143264,55805,sad,1402482099 +143264,55805,Sidney Lumet,1402482067 +143264,55805,social commentary,1402482128 +143264,55814,DIVX,1217573860 +143264,55820,1980s,1244628476 +143264,55820,coen brothers,1244628479 +143264,55820,DIVX,1244628427 +143264,55820,great acting,1244628485 +143264,55820,imdb top 250,1244628491 +143264,55820,Javier Bardem,1244628497 +143264,55820,Need to be seen more than once,1244628503 +143264,55820,Oscar (Best Picture),1244628507 +143264,55820,thriller,1244628518 +143264,55820,Tommy Lee Jones,1244628524 +143264,55895,01/10,1262377431 +143264,55895,03/09,1236502055 +143264,55895,03/10,1269699751 +143264,55895,11/09,1259518199 +143264,55895,12/09,1260110207 +143264,55901,03/09,1237712158 +143264,55908,DIVX,1272450258 +143264,55908,Excellent use of dialogue,1272450289 +143264,55908,immortality,1272450293 +143264,55908,intellectual,1272450299 +143264,55908,Jerome Bixby,1272450303 +143264,55908,philosophical,1272450311 +143264,55908,religion,1272450316 +143264,55908,sci-fi,1272450319 +143264,56015,05/11,1305461963 +143264,56015,06/11,1307200148 +143264,56069,01/12,1327258252 +143264,56069,11/11,1321718595 +143264,56069,12/11,1323548901 +143264,56152,Amy Adams,1420897429 +143264,56152,Disney,1420897435 +143264,56152,fairy tale,1420897445 +143264,56152,humorous,1420897450 +143264,56152,james marsden,1420897454 +143264,56152,Kevin Lima,1420897603 +143264,56152,Musical,1420897458 +143264,56152,New York City,1420897461 +143264,56152,parody,1420897463 +143264,56152,romance,1420897468 +143264,56152,satire,1420897473 +143264,56152,Susan Sarandon,1420897476 +143264,56152,Timothy Spall,1420897516 +143264,56171,Do zassania,1197146030 +143264,56286,Bob Dylan,1328559247 +143264,56286,Cate Blanchett,1328559250 +143264,56286,Christian Bale,1328559255 +143264,56286,confusing,1328559263 +143264,56286,DIVX,1328559303 +143264,56286,Heath Ledger,1328559269 +143264,56286,Kris Kristofferson,1328559369 +143264,56286,Marcus Carl Franklin,1328559343 +143264,56286,Mindfuck,1328559273 +143264,56286,music,1328559277 +143264,56286,Nudity (Topless - Brief),1328559281 +143264,56286,Richard Gere,1328559326 +143264,56286,surrealism,1328559290 +143264,56339,Do zassania,1211658746 +143264,56350,01/11,1294599172 +143264,56350,05/10,1272802929 +143264,56350,06/10,1275816293 +143264,56350,08/10,1281785205 +143264,56367,Do zassania,1207671651 +143264,56370,01/11,1294602528 +143264,56370,02/11,1297617337 +143264,56370,03/11,1299424424 +143264,56370,04/11,1303033376 +143264,56370,05/11,1304888490 +143264,56370,06/11,1307202115 +143264,56370,09/10,1285431217 +143264,56370,11/10,1289053621 +143264,56370,12/10,1292694572 +143264,56715,afterlife,1272449801 +143264,56715,alternate reality,1272449807 +143264,56715,dark comedy,1272449816 +143264,56715,DIVX,1272449774 +143264,56715,Goran Dukic,1272449857 +143264,56715,Nudity (Topless),1272449821 +143264,56715,quirky,1272449826 +143264,56715,suicide,1272449838 +143264,56715,Tom Waits,1272449844 +143264,56775,Obejrzane,1200137724 +143264,56782,na dysku,1370099957 +143264,56788,1980s,1362432309 +143264,56788,afghanistan,1362432313 +143264,56788,based on a true story,1362432327 +143264,56788,CIA,1362432330 +143264,56788,cold war,1362432334 +143264,56788,Good dialogue,1362432337 +143264,56788,history,1362432394 +143264,56788,Julia Roberts,1362432341 +143264,56788,Las Vegas,1362432345 +143264,56788,Mike Nichols,1362432374 +143264,56788,Nudity (Topless),1362432348 +143264,56788,Philip Seymour Hoffman,1362432352 +143264,56788,politics,1362432356 +143264,56788,satire,1362432360 +143264,56788,Tom Hanks,1362432363 +143264,56921,based on a tv show,1299535846 +143264,56921,DVD,1299535818 +143264,56921,lesbian,1299535983 +143264,56921,sci-fi,1299535992 +143264,56921,space opera,1299535999 +143264,56921,war,1299536002 +143264,56941,do kina,1202639149 +143264,56949,do kina,1202639286 +143264,57243,confronting stereotypes,1328559784 +143264,57243,Do kupienia,1328559932 +143264,57243,egyptian,1328559794 +143264,57243,Eran Kolirin,1328559806 +143264,57243,Israel,1328559788 +143264,57243,Middle East,1328559791 +143264,57243,Ronit Elkabetz,1328559869 +143264,57243,Sasson Gabai,1328559856 +143264,57243,social commentary,1328559813 +143264,57543,01/12,1327256363 +143264,57543,11/11,1320488111 +143264,57543,12/11,1323545791 +143264,57640,action,1317753376 +143264,57640,based on a comic,1317753380 +143264,57640,Danny Elfman,1317753454 +143264,57640,DIVX,1317753466 +143264,57640,Guillermo del Toro,1317753384 +143264,57640,quirky,1317753390 +143264,57640,Ron Perlman,1317753393 +143264,57640,sequel,1317753396 +143264,57640,superhero,1317753399 +143264,57845,04/09,1238832871 +143264,57972,02/10,1266778224 +143264,57972,02/11,1298150611 +143264,57972,03/10,1268474871 +143264,57972,03/11,1299422057 +143264,57972,04/11,1303031341 +143264,57972,05/11,1304885730 +143264,57972,06/11,1307200237 +143264,57972,08/10,1282483407 +143264,57972,09/10,1285428427 +143264,57972,10/10,1286640571 +143264,57980,01/11,1296419572 +143264,57980,02/11,1297618643 +143264,57980,03/11,1299426022 +143264,57980,06/11,1307203549 +143264,58223,01/11,1294601513 +143264,58223,02/11,1297597574 +143264,58223,03/11,1299423101 +143264,58223,04/11,1303032142 +143264,58223,05/11,1306576548 +143264,58223,06/11,1307200996 +143264,58223,11/10,1289053077 +143264,58223,12/10,1291459817 +143264,58295,DIVX,1225660529 +143264,58299,Dr. Seuss,1272359939 +143264,58299,world inside another world,1272359957 +143264,58303,na dysku,1381518569 +143264,58351,Brazil,1241002047 +143264,58351,DIVX,1241002064 +143264,58351,Rio de Janeiro,1241002043 +143264,58379,01/12,1327257068 +143264,58379,06/11,1307201757 +143264,58379,11/11,1322389795 +143264,58379,12/10,1292695674 +143264,58379,12/11,1323546454 +143264,58554,05/11,1304885704 +143264,58554,06/11,1307779889 +143264,58554,10/11,1317552538 +143264,58559,Batman,1257674438 +143264,58559,Christian Bale,1257674442 +143264,58559,dark,1257674447 +143264,58559,DVD,1257674425 +143264,58559,Gary Oldman,1257674462 +143264,58559,Hans Zimmer,1257674530 +143264,58559,Heath Ledger,1257674466 +143264,58559,imdb top 250,1257674469 +143264,58559,James Newton Howard,1257674530 +143264,58559,Michael Caine,1257674472 +143264,58559,Morgan Freeman,1257674478 +143264,58559,Oscar (Best Supporting Actor),1257674484 +143264,58808,01/12,1327256476 +143264,58808,04/11,1303033647 +143264,58808,11/11,1322389386 +143264,58808,12/11,1323545850 +143264,58889,08/10,1282484136 +143264,58889,11/10,1289724964 +143264,59018,DIVX,1247216192 +143264,59018,immigrants,1247216244 +143264,59018,New York City,1247216250 +143264,59018,Richard Jenkins,1247216257 +143264,59188,05/10,1272800938 +143264,59188,06/10,1275813861 +143264,59387,beautiful,1430252227 +143264,59387,Catinca Untaru,1430252339 +143264,59387,cinematography,1430252231 +143264,59387,DIVX,1430252401 +143264,59387,drugs,1430252465 +143264,59387,fantasy,1430252235 +143264,59387,imagination,1430252237 +143264,59387,story-in-a-story,1430252242 +143264,59387,suicide,1430252460 +143264,59387,surreal,1430252246 +143264,59387,Tarsem Singh,1430252326 +143264,59387,too long,1430252448 +143264,59387,visually appealing,1430252249 +143264,59485,08/10,1282484091 +143264,59549,01/11,1294602700 +143264,59549,02/11,1297599747 +143264,59549,03/11,1299424466 +143264,59549,04/11,1303033487 +143264,59549,05/11,1304887115 +143264,59549,06/11,1307201909 +143264,59549,11/11,1320488737 +143264,59549,12/10,1292695058 +143264,59655,04/11,1303033682 +143264,59684,01/11,1295207584 +143264,59684,02/11,1297619010 +143264,59684,03/11,1299426329 +143264,59684,05/11,1305464556 +143264,59684,06/11,1307203510 +143264,59731,American culture,1328558703 +143264,59731,Arnold Schwarzenegger,1328558706 +143264,59731,DIVX,1328558760 +143264,59731,documentary,1328558739 +143264,59731,drugs,1328558715 +143264,59731,Hypocrisy,1328558718 +143264,59731,social commentary,1328558724 +143264,59731,sports,1328558727 +143264,59731,steroids,1328558729 +143264,59784,action,1420898355 +143264,59784,animals,1420898360 +143264,59784,comedy,1420898362 +143264,59784,father-son relationship,1420898367 +143264,59784,Kung Fu,1420898372 +143264,59784,obejrzane,1420898472 +143264,59832,09/10,1285430601 +143264,59976,01/11,1294601874 +143264,59976,03/11,1300619289 +143264,59976,04/11,1303032061 +143264,59976,05/11,1304886138 +143264,59976,06/11,1307200965 +143264,59976,10/11,1317552952 +143264,59976,11/11,1320488002 +143264,59976,12/10,1291460378 +143264,59995,British,1328559118 +143264,59995,depressing,1328559125 +143264,59995,DIVX,1328559174 +143264,59995,flashbacks,1328559130 +143264,59995,identity,1328559138 +143264,59995,John Crowley,1328559144 +143264,59995,prison,1328559150 +143264,59995,suicide,1328559157 +143264,60069,DVD,1238528032 +143264,60103,01/11,1295205829 +143264,60103,02/11,1297598460 +143264,60103,03/11,1299423349 +143264,60103,04/11,1303032527 +143264,60103,05/11,1304886377 +143264,60103,06/11,1307200841 +143264,60103,11/10,1289725032 +143264,60126,Bill Murray,1293529674 +143264,60126,predictable,1293529668 +143264,60126,stupid,1293529641 +143264,60126,too long,1293529659 +143264,60137,08/09,1249117468 +143264,60295,china,1247216424 +143264,60295,DIVX,1247216389 +143264,60311,01/12,1327256555 +143264,60311,11/11,1320489067 +143264,60311,12/11,1323546310 +143264,60333,antarctica,1255683679 +143264,60333,DIVX,1255683660 +143264,60333,Philosophical,1255683697 +143264,60333,Werner Herzog,1255683701 +143264,60341,01/10,1262377880 +143264,60341,08/09,1249117288 +143264,60341,11/09,1257674331 +143264,60382,09/09,1252093037 +143264,60382,11/09,1258277901 +143264,60382,12/09,1260110396 +143264,60384,01/11,1294601666 +143264,60384,02/10,1266777784 +143264,60384,02/11,1297598130 +143264,60384,03/11,1299423308 +143264,60384,04/11,1303032493 +143264,60384,05/11,1304886608 +143264,60384,06/11,1307201206 +143264,60384,12/10,1292694520 +143264,60397,Amanda Seyfried,1309929223 +143264,60397,Colin Firth,1309929235 +143264,60397,Greece,1309929239 +143264,60397,Island,1309929244 +143264,60397,Meryl Streep,1309929247 +143264,60397,Middle Age Romance,1309929254 +143264,60397,music:ABBA,1309929257 +143264,60397,Musical,1309929261 +143264,60397,Pierce Brosnan,1309929265 +143264,60397,Single Mother,1309929271 +143264,60397,Stellan SkarsgÃ¥rd,1309929275 +143264,60397,Wedding,1309929278 +143264,60461,01/11,1295206668 +143264,60461,02/11,1297617508 +143264,60461,03/11,1300619796 +143264,60461,04/11,1303032645 +143264,60461,05/11,1304886805 +143264,60461,06/11,1307200952 +143264,60503,10/09,1256395938 +143264,60503,11/09,1259518493 +143264,60503,12/09,1260110968 +143264,60551,03/11,1299424394 +143264,60551,04/11,1303033275 +143264,60551,06/10,1276350797 +143264,60551,08/10,1281785372 +143264,60551,10/10,1287950600 +143264,60551,11/10,1289063003 +143264,60551,12/10,1291460477 +143264,60566,01/11,1294598927 +143264,60566,02/11,1297596054 +143264,60566,03/11,1299421900 +143264,60566,06/10,1276943194 +143264,60566,10/10,1287948767 +143264,60566,11/10,1289052487 +143264,60566,12/10,1292693649 +143264,60684,1980s,1328560111 +143264,60684,alternate reality,1328560124 +143264,60684,Billy Crudup,1328560215 +143264,60684,cold war,1328560142 +143264,60684,comic book,1328560139 +143264,60684,Do kupienia,1328560170 +143264,60684,dystopia,1328560144 +143264,60684,Jackie Earle Haley,1328560268 +143264,60684,Jeffrey Dean Morgan,1328560278 +143264,60684,Malin Akerman,1328560253 +143264,60684,Matthew Goode,1328560260 +143264,60684,Nudity (Topless),1328560148 +143264,60684,social commentary,1328560152 +143264,60684,stylized,1328560155 +143264,60684,superhero,1328560158 +143264,60684,vigilantism,1328560160 +143264,60684,visually appealing,1368284201 +143264,60684,Zack Snyder,1328560180 +143264,60760,Do zassania,1217353851 +143264,60766,DIVX,1364927116 +143264,60766,Documentary,1364926469 +143264,60766,James Marsh,1364926509 +143264,60766,Oscar (Best Documentary Feature),1364926477 +143264,60766,World Trade Center,1364926488 +143264,60803,01/11,1294603117 +143264,60803,05/11,1304888854 +143264,60803,10/10,1287951278 +143264,60803,11/10,1289063762 +143264,60803,12/10,1292695392 +143264,60904,01/11,1294598862 +143264,60904,01/12,1327256129 +143264,60904,02/11,1297596144 +143264,60904,03/11,1299422093 +143264,60904,04/11,1303031257 +143264,60904,05/10,1272802563 +143264,60904,05/11,1304885370 +143264,60904,06/10,1275815863 +143264,60904,06/11,1307200169 +143264,60904,07/10,1279441577 +143264,60904,08/10,1281784544 +143264,60904,09/10,1285428690 +143264,60904,10/10,1286641115 +143264,60904,11/10,1289052289 +143264,60904,12/10,1291459424 +143264,60990,01/11,1294598450 +143264,60990,02/11,1297596118 +143264,60990,03/11,1299422399 +143264,60990,04/11,1303031436 +143264,60990,05/11,1304885760 +143264,60990,06/11,1307200381 +143264,60990,07/10,1279442049 +143264,60990,08/10,1281784598 +143264,60990,09/10,1285428779 +143264,60990,10/10,1287948433 +143264,60990,11/10,1289052600 +143264,60990,12/10,1291459403 +143264,61024,buddy movie,1400258390 +143264,61024,comedy,1400258394 +143264,61024,Craig Robinson,1400258578 +143264,61024,drugs,1400258397 +143264,61024,James Franco,1400258563 +143264,61024,marijuana,1400258425 +143264,61024,police corruption,1400258422 +143264,61024,Seth Rogen,1400258432 +143264,61024,Stoner Movie,1400258469 +143264,61024,too long,1400258501 +143264,61024,weed,1400258491 +143264,61026,11/09,1259518235 +143264,61026,12/09,1260110437 +143264,61132,Ben Stiller,1402485138 +143264,61132,DIVX,1402484881 +143264,61132,funny,1402484852 +143264,61132,Jack Black,1402485142 +143264,61132,jungle,1402484856 +143264,61132,Matthew McConaughey,1402485193 +143264,61132,movie business,1402484860 +143264,61132,parody,1402484862 +143264,61132,Robert Downey Jr.,1402485201 +143264,61132,satire,1402484864 +143264,61132,Tom Cruise,1402485203 +143264,61132,Vietnam War,1402484868 +143264,61206,05/11,1305463718 +143264,61206,06/11,1307203181 +143264,61215,03/11,1300620362 +143264,61236,1980s,1328559975 +143264,61236,animation,1328559981 +143264,61236,Ari Folman,1328560028 +143264,61236,autobiographical,1328559983 +143264,61236,Do kupienia,1328560073 +143264,61236,documentary,1328559989 +143264,61236,Israel,1328559993 +143264,61236,memory,1328559996 +143264,61236,Middle East,1328559999 +143264,61236,music,1328560035 +143264,61236,surreal,1328560007 +143264,61236,thought-provoking,1328560012 +143264,61236,touching,1328560015 +143264,61236,war,1328560018 +143264,61240,1980s,1271013528 +143264,61240,adolescence,1271013534 +143264,61240,based on a book,1271013540 +143264,61240,DIVX,1271013674 +143264,61240,imdb top 250,1271013565 +143264,61240,love story,1271013575 +143264,61240,serial killer,1271013580 +143264,61240,swedish,1271013659 +143264,61240,vampires,1271013663 +143264,61257,07/09,1246643569 +143264,61323,Brad Pitt,1425982522 +143264,61323,cia,1425982527 +143264,61323,Coen Brothers,1425982524 +143264,61323,dark comedy,1425982536 +143264,61323,divorce,1425982540 +143264,61323,espionage,1425982543 +143264,61323,Frances McDormand,1425982657 +143264,61323,funny,1425982546 +143264,61323,George Clooney,1425982551 +143264,61323,John Malkovich,1425982554 +143264,61323,mkv,1425982747 +143264,61323,Richard Jenkins,1425982675 +143264,61323,satire,1425982558 +143264,61323,stupidity,1425982560 +143264,61323,Tilda Swinton,1425982576 +143264,61323,weird,1425982566 +143264,61646,07/09,1246643343 +143264,61742,01/11,1294603136 +143264,61742,01/12,1327257446 +143264,61742,02/11,1297617466 +143264,61742,03/11,1299424639 +143264,61742,04/11,1303033858 +143264,61742,05/11,1304888875 +143264,61742,06/11,1307202335 +143264,61742,10/10,1287951480 +143264,61742,11/10,1289063912 +143264,61742,11/11,1320489125 +143264,61742,12/10,1292695460 +143264,61742,12/11,1323548072 +143264,61967,01/11,1295207339 +143264,61967,01/12,1327258512 +143264,61967,02/11,1297618681 +143264,61967,03/11,1299425953 +143264,61967,05/11,1305463849 +143264,61967,06/11,1307203256 +143264,61967,11/10,1290959545 +143264,61967,11/11,1321718948 +143264,61967,12/11,1323549292 +143264,62113,DVD,1398707513 +143264,62153,01/11,1295206588 +143264,62153,02/11,1297618268 +143264,62153,03/11,1299425692 +143264,62153,05/11,1305463337 +143264,62153,06/11,1307203013 +143264,62153,11/10,1290334444 +143264,62153,12/10,1292695891 +143264,62434,DIVX,1265565743 +143264,62434,foul language,1265565804 +143264,62434,Kevin Smith,1265565808 +143264,62434,Nudity (Full Frontal),1265565821 +143264,62434,Nudity (Topless),1265565825 +143264,62434,pornography,1265565832 +143264,62434,racist humor,1265565840 +143264,62434,Seth Rogen,1265565850 +143264,62434,Sexual Humor,1265565867 +143264,62434,Star Wars,1265565872 +143264,62434,watch the credits,1265565878 +143264,62801,03/09,1236502581 +143264,62803,09/09,1252093705 +143264,63062,Do zassania,1236500239 +143264,63082,Anil Kapoor,1325662316 +143264,63082,Ashutosh Lobo Gajiwala,1325662447 +143264,63082,Ayush Mahesh Khedekar,1325662388 +143264,63082,Azharuddin Mohammed Ismail,1325662398 +143264,63082,based on a book,1325662179 +143264,63082,Danny Boyle,1325662261 +143264,63082,Dev Patel,1325662278 +143264,63082,DIVX,1325662232 +143264,63082,Freida Pinto,1325662335 +143264,63082,imdb top 250,1325662251 +143264,63082,India,1325662186 +143264,63082,Irrfan Khan,1325662367 +143264,63082,love,1325662199 +143264,63082,Madhur Mittal,1325662482 +143264,63082,Oscar (Best Directing),1325662204 +143264,63082,Oscar (Best Music - Original Song),1325662207 +143264,63082,Oscar (Best Picture),1325662210 +143264,63082,Rubina Ali,1325662419 +143264,63082,social commentary,1325662217 +143264,63082,Tanay Chheda,1325662439 +143264,63082,Tanvi Ganesh Lonkar,1325662463 +143264,63082,torture,1325662225 +143264,63113,007 (series),1352543371 +143264,63113,action,1352543375 +143264,63113,Daniel Craig,1352543383 +143264,63113,DIVX,1352543925 +143264,63113,James Bond,1352543393 +143264,63113,Paul Haggis,1352543510 +143264,63113,secret service,1352543405 +143264,63113,spy,1352543408 +143264,63179,08/09,1250331064 +143264,63276,06/11,1307780868 +143264,63433,aliens,1317744217 +143264,63433,DIVX,1317744248 +143264,63433,made for TV,1317744225 +143264,63433,space,1317744230 +143264,63515,10/09,1254656319 +143264,63645,01/12,1327257630 +143264,63645,11/11,1320489595 +143264,63645,12/11,1323548808 +143264,63676,01/10,1263728081 +143264,63676,02/10,1266777327 +143264,63676,03/10,1268473219 +143264,63676,05/10,1272801175 +143264,63676,06/10,1275813954 +143264,63676,07/10,1279441268 +143264,63676,08/10,1281784242 +143264,63676,09/10,1285428268 +143264,63676,10/09,1256396146 +143264,63676,10/10,1286640271 +143264,63676,11/10,1289052124 +143264,63676,12/09,1260111321 +143264,63698,11/09,1257673851 +143264,63698,12/09,1260110903 +143264,63808,05/09,1242388535 +143264,63859,animation,1317753958 +143264,63859,Byron Howard,1317754153 +143264,63859,cats and dogs,1317753964 +143264,63859,Chris Williams,1317754161 +143264,63859,John Lasseter,1317754080 +143264,63859,John Travolta,1317753970 +143264,63859,Mark Walton,1317754058 +143264,63859,superhero,1317753981 +143264,63859,Susie Essman,1317754012 +143264,63859,talking animals,1317753983 +143264,63876,biography,1243420245 +143264,63876,character based on real person:Harvey Milk,1243420255 +143264,63876,DIVX,1243420325 +143264,63876,gay,1243420266 +143264,63876,Gus Van Sant,1243420269 +143264,63876,history,1243420272 +143264,63876,Josh Brolin,1243420282 +143264,63876,Oscar (Best Actor),1243420291 +143264,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1243420295 +143264,63876,politics,1243420299 +143264,63876,San Francisco,1243420303 +143264,63876,Sean Penn,1243420307 +143264,64034,based on a book,1278669411 +143264,64034,BBC Films,1278669416 +143264,64034,David Thewlis,1278669488 +143264,64034,history,1278669711 +143264,64034,Holocaust,1278669502 +143264,64034,Nazi Germany,1278669513 +143264,64034,sad,1278669519 +143264,64034,Vera Farmiga,1278669676 +143264,64034,World War II,1278669672 +143264,64197,03/09,1236504721 +143264,64273,06/10,1275815535 +143264,64273,07/10,1279441780 +143264,64278,11/09,1257673478 +143264,64575,Amy Adams,1310019128 +143264,64575,based on a play,1310019138 +143264,64575,Catholicism,1310019142 +143264,64575,Meryl Streep,1310019151 +143264,64575,moral ambiguity,1310019155 +143264,64575,Philip Seymour Hoffman,1310019166 +143264,64575,thought-provoking,1310019180 +143264,64614,Ahney Her,1328559568 +143264,64614,Bee Vang,1328559543 +143264,64614,classic car,1328559421 +143264,64614,Clint Eastwood,1328559426 +143264,64614,comedy,1328559429 +143264,64614,culture clash,1328559433 +143264,64614,DIVX,1328559478 +143264,64614,drama,1328559437 +143264,64614,friendship,1328559440 +143264,64614,gangsters,1328559444 +143264,64614,imdb top 250,1328559502 +143264,64614,life & death,1328559450 +143264,64614,murder,1328559453 +143264,64614,racism,1328559456 +143264,64614,redemption,1328559463 +143264,64614,revenge,1328559469 +143264,64620,based on a play,1310019432 +143264,64620,based on a true story,1310019436 +143264,64620,Frank Langella,1310019488 +143264,64620,history,1310019442 +143264,64620,journalism,1310019447 +143264,64620,Kevin Bacon,1310019507 +143264,64620,Michael Sheen,1310019482 +143264,64620,Richard Nixon,1310019467 +143264,64620,Ron Howard,1310019463 +143264,64839,Clint Mansell,1352543886 +143264,64839,Darren Aronofsky,1352543823 +143264,64839,DIVX,1352543895 +143264,64839,father daughter relationship,1352543729 +143264,64839,identity crisis,1352543732 +143264,64839,loneliness,1368284012 +143264,64839,Mickey Rourke,1352543857 +143264,64839,Nudity (Topless),1352543741 +143264,64839,relationships,1352543748 +143264,64839,sports,1352543753 +143264,64839,touching,1352543758 +143264,64839,violence,1352543760 +143264,64930,06/11,1307781062 +143264,64957,adapted from:book,1320400601 +143264,64957,Alexandre Desplat,1320400716 +143264,64957,Based On Short Story,1320400608 +143264,64957,Brad Pitt,1320400611 +143264,64957,Cate Blanchett,1320400636 +143264,64957,David Fincher,1320400652 +143264,64957,DIVX,1320400597 +143264,64957,drama,1320400615 +143264,64957,original plot,1320400620 +143264,64957,Oscar (Best Effects - Visual Effects),1320400624 +143264,64957,romance,1320400629 +143264,64957,Tilda Swinton,1320400644 +143264,64983,Adolf Hitler,1310019737 +143264,64983,assassination,1310019743 +143264,64983,based on a true story,1310019812 +143264,64983,Bill Nighy,1310019843 +143264,64983,conspiracy,1310019747 +143264,64983,David Bamber,1310019806 +143264,64983,Germany,1310019751 +143264,64983,history,1310019818 +143264,64983,Kenneth Branagh,1310019829 +143264,64983,Nazis,1310019763 +143264,64983,Third Reich,1310019769 +143264,64983,Thomas Kretschmann,1310019864 +143264,64983,Tom Cruise,1310019821 +143264,64983,World War II,1310019778 +143264,64993,01/10,1264325551 +143264,64993,03/10,1268473396 +143264,64993,11/09,1257673431 +143264,65133,04/09,1240651889 +143264,65142,01/11,1294601583 +143264,65142,08/10,1282484188 +143264,65142,10/10,1287950259 +143264,65142,11/10,1289053487 +143264,65142,12/10,1291460154 +143264,65188,10/09,1254654995 +143264,65188,12/09,1260711334 +143264,65235,01/11,1296419313 +143264,65235,02/11,1297617842 +143264,65235,03/11,1299425195 +143264,65235,05/11,1304889022 +143264,65235,06/11,1307202569 +143264,65261,na dysku,1390059912 +143264,65588,03/11,1299424255 +143264,65642,03/09,1236502243 +143264,65709,01/10,1263729028 +143264,65709,02/10,1266777513 +143264,65709,03/10,1268473159 +143264,65709,05/10,1272801467 +143264,65709,06/10,1275814188 +143264,65709,07/10,1279441379 +143264,66092,01/12,1327258073 +143264,66097,alternate reality,1377608864 +143264,66097,animation,1377608867 +143264,66097,based on a book,1377608870 +143264,66097,Bruno Coulais,1377609122 +143264,66097,Dakota Fanning,1377608914 +143264,66097,dark,1377608874 +143264,66097,Dawn French,1377609006 +143264,66097,Do kupienia,1377609195 +143264,66097,dystopia,1377608878 +143264,66097,Fantasy,1377608883 +143264,66097,gothic,1377608886 +143264,66097,Henry Selick,1377608922 +143264,66097,Ian McShane,1377609101 +143264,66097,Jennifer Saunders,1377608991 +143264,66097,Keith David,1377609039 +143264,66097,Neil Gaiman,1377608902 +143264,66097,Pete Kozachik,1377609134 +143264,66097,Robert Bailey Jr.,1377609085 +143264,66097,Surreal,1377608888 +143264,66097,talking animals,1377608892 +143264,66097,Teri Hatcher,1377608973 +143264,66234,02/11,1297618251 +143264,66234,03/11,1299425674 +143264,66234,05/11,1305463290 +143264,66234,06/11,1307202927 +143264,66317,01/10,1263729170 +143264,66317,02/10,1266778048 +143264,66317,03/10,1268474715 +143264,66317,06/10,1275816170 +143264,66320,03/10,1269083179 +143264,66330,01/11,1295206408 +143264,66330,11/10,1289064425 +143264,66330,12/10,1292695717 +143264,66371,08/09,1250330999 +143264,66511,01/11,1295205960 +143264,66511,02/11,1297597516 +143264,66511,03/11,1300619429 +143264,66511,12/10,1292695096 +143264,66544,05/10,1272801068 +143264,66665,08/09,1250330731 +143264,66785,chase,1396036508 +143264,66785,China,1396036511 +143264,66785,desert,1396036513 +143264,66785,DIVX,1396036561 +143264,66785,Funny,1396036516 +143264,66785,gunfight,1396036518 +143264,66785,Korean,1396036526 +143264,66785,slapstick,1396036532 +143264,66785,stylized,1396036535 +143264,66785,trains,1396036538 +143264,66785,treasure hunt,1396036542 +143264,66785,Weird,1396036545 +143264,66785,western,1396036547 +143264,67429,01/10,1263727704 +143264,67429,10/09,1254656192 +143264,67504,01/12,1327258322 +143264,67504,11/11,1321718672 +143264,67504,12/11,1323549061 +143264,67508,05/09,1242388573 +143264,67734,04/09,1240651861 +143264,67999,03/10,1269082878 +143264,67999,05/10,1272802001 +143264,67999,06/10,1276942882 +143264,68073,08/09,1251485468 +143264,68099,08/10,1282484012 +143264,68157,Brad Pitt,1399395336 +143264,68157,Christoph Waltz,1399395422 +143264,68157,dark comedy,1399395342 +143264,68157,Diane Kruger,1399395439 +143264,68157,DIVX,1399399857 +143264,68157,great soundtrack,1399395352 +143264,68157,IMDB Top 250,1399395354 +143264,68157,Mélanie Laurent,1399395413 +143264,68157,Nazis,1399395357 +143264,68157,Oscar (Best Supporting Actor),1399395359 +143264,68157,Paris,1399395362 +143264,68157,Quentin Tarantino,1399395364 +143264,68157,revenge,1399395366 +143264,68157,satire,1399395369 +143264,68157,visually appealing,1399395380 +143264,68157,World War II,1399395383 +143264,68173,01/11,1295206947 +143264,68173,02/11,1297618531 +143264,68173,03/11,1299425880 +143264,68173,05/11,1305463796 +143264,68173,06/11,1307203233 +143264,68173,11/10,1290334583 +143264,68173,11/11,1321718888 +143264,68358,action,1317752037 +143264,68358,adventure,1317752039 +143264,68358,DIVX,1317752225 +143264,68358,franchise,1317752046 +143264,68358,future,1317752049 +143264,68358,imdb top 250,1317752112 +143264,68358,sci-fi,1317752053 +143264,68358,Simon Pegg,1317752057 +143264,68358,space,1317752062 +143264,68358,Star Trek,1317752066 +143264,68358,time travel,1317752075 +143264,68472,02/10,1266777463 +143264,68472,03/10,1268473344 +143264,68486,03/10,1269699823 +143264,68486,05/10,1272800900 +143264,68511,11/09,1257673599 +143264,68511,11/10,1289053317 +143264,68511,12/10,1291460121 +143264,68536,11/09,1257672993 +143264,68536,12/09,1260110299 +143264,68791,action,1328559619 +143264,68791,artificial intelligence,1328559633 +143264,68791,Bryce Dallas Howard,1328559683 +143264,68791,Christian Bale,1328559639 +143264,68791,effects,1328559642 +143264,68791,franchise,1328559650 +143264,68791,futuristic,1328559654 +143264,68791,Helena Bonham Carter,1328559662 +143264,68791,post-apocalyptic,1328559667 +143264,68791,robots,1328559669 +143264,68791,Sam Worthington,1328559692 +143264,68791,sci-fi,1328559671 +143264,68791,sequel,1328559674 +143264,68838,11/09,1259518461 +143264,68872,01/11,1295205494 +143264,68952,bank,1392881756 +143264,68952,DIVX,1392881809 +143264,68952,funny,1392881761 +143264,68952,horror,1392881767 +143264,68952,old school horror,1392881775 +143264,68952,Sam Raimi,1392881782 +143264,68952,twist ending,1392881800 +143264,68954,adventure,1257979193 +143264,68954,computer animation,1257979205 +143264,68954,dogs,1257979210 +143264,68954,dreams,1257979217 +143264,68954,DVD,1289762836 +143264,68954,feel good movie,1257979232 +143264,68954,friendship,1257979235 +143264,68954,happy ending,1257979238 +143264,68954,Pixar,1257979247 +143264,68959,07/09,1246643646 +143264,69088,09/10,1285428585 +143264,69088,10/10,1286640746 +143264,69122,comedy,1385315621 +143264,69122,Drinking,1385315623 +143264,69122,drugs,1385315626 +143264,69122,DVD,1385315795 +143264,69122,Las Vegas,1385315637 +143264,69122,Nudity (Topless),1385315635 +143264,69122,strippers,1385315643 +143264,69122,Vulgar,1385315647 +143264,69134,06/09,1246202907 +143264,69241,01/12,1327258406 +143264,69241,12/11,1323549193 +143264,69394,03/11,1300620488 +143264,69394,05/11,1305464163 +143264,69394,06/11,1307203397 +143264,69394,08/10,1282483878 +143264,69394,09/10,1285430530 +143264,69394,10/10,1287948947 +143264,69394,11/10,1289052316 +143264,69394,12/10,1291459278 +143264,69432,11/11,1320489666 +143264,69481,action,1286720925 +143264,69481,anti-war,1286720933 +143264,69481,DVD,1288122897 +143264,69481,Iraq,1286720942 +143264,69481,Middle East,1286720948 +143264,69481,Oscar (Best Directing),1286721094 +143264,69481,Oscar (Best Editing),1286721129 +143264,69481,Oscar (Best Picture),1286721183 +143264,69481,Oscar (Best Screenplay),1286721215 +143264,69481,Oscar (Best Sound Editing),1286721167 +143264,69481,Oscar (Best Sound),1286721152 +143264,69481,Ralph Fiennes,1286720953 +143264,69481,War,1286720960 +143264,69495,01/12,1327258298 +143264,69495,11/11,1321718658 +143264,69495,12/11,1323549029 +143264,69498,01/10,1263729244 +143264,69498,01/11,1294599330 +143264,69498,02/10,1266777953 +143264,69498,02/11,1297596354 +143264,69498,03/10,1268474628 +143264,69498,05/10,1272802157 +143264,69498,06/10,1275815672 +143264,69498,07/10,1279441939 +143264,69498,08/10,1281784826 +143264,69498,11/10,1289052668 +143264,69498,12/10,1291459508 +143264,69604,10/09,1254656222 +143264,69640,1930s,1295776808 +143264,69640,bank robbery,1295776811 +143264,69640,based on a book,1295776816 +143264,69640,christian bale,1295776820 +143264,69640,Dillinger,1295776826 +143264,69640,DVD,1295776792 +143264,69640,gangsters,1295776832 +143264,69640,Great Depression,1295776837 +143264,69640,Johnny Depp,1295777114 +143264,69640,Michael Mann,1295777119 +143264,69640,true story,1295777127 +143264,69677,01/12,1327258418 +143264,69677,12/11,1323549207 +143264,69685,01/10,1262377722 +143264,69685,02/10,1266176888 +143264,69685,03/10,1269699788 +143264,69685,10/09,1255864249 +143264,69685,11/09,1258278312 +143264,69685,12/09,1260110669 +143264,69757,architecture,1299536212 +143264,69757,DIVX,1299536172 +143264,69757,humor,1299536219 +143264,69757,intelligent,1299536225 +143264,69757,Los Angeles,1299536232 +143264,69757,Marc Webb,1299536235 +143264,69757,quirky,1299536239 +143264,69757,romance,1299536248 +143264,69757,Zooey Deschanel,1299536251 +143264,69784,dicks,1303726197 +143264,69784,DIVX,1303726304 +143264,69784,gay,1303726202 +143264,69784,homosexuality,1303726208 +143264,69784,Nudity (Full Frontal),1303726218 +143264,69784,politics,1303726278 +143264,69784,Sacha Baron Cohen,1303726222 +143264,69784,satire,1303726225 +143264,69784,social commentary,1303726232 +143264,69830,01/12,1327257544 +143264,69830,11/11,1320489462 +143264,69830,12/11,1323548314 +143264,69844,Alan Rickman,1272833082 +143264,69844,based on a book,1272833080 +143264,69844,Daniel Radcliffe,1272833148 +143264,69844,David Thewlis,1272833244 +143264,69844,David Yates,1272833252 +143264,69844,disappointing,1272833097 +143264,69844,DVD,1272833060 +143264,69844,Emma Watson,1272833182 +143264,69844,English,1272833268 +143264,69844,fantasy,1272833101 +143264,69844,harry potter,1272833106 +143264,69844,Helena Bonham Carter,1272833111 +143264,69844,high school,1272833117 +143264,69844,Jim Broadbent,1272833198 +143264,69844,Maggie Smith,1272833120 +143264,69844,magic,1272833124 +143264,69844,Michael Gambon,1272833171 +143264,69844,Robbie Coltrane,1272833228 +143264,69844,Rupert Grint,1272833190 +143264,69844,teenagers,1272833132 +143264,69844,Timothy Spall,1272833207 +143264,69844,Tom Felton,1272833213 +143264,69844,Warwick Davis,1272833219 +143264,69949,01/12,1327257587 +143264,69949,02/11,1297599725 +143264,69949,03/11,1299424274 +143264,69949,04/11,1303033343 +143264,69949,05/11,1304888514 +143264,69949,06/11,1307202149 +143264,69949,11/11,1320489054 +143264,69949,12/11,1323548345 +143264,69988,10/09,1256985688 +143264,70015,03/11,1299425046 +143264,70015,04/11,1303033707 +143264,70015,06/11,1307780699 +143264,70015,12/11,1323545522 +143264,70286,aliens,1303727725 +143264,70286,directorial debut,1303727730 +143264,70286,DIVX,1303727815 +143264,70286,evil corporations,1303727737 +143264,70286,genetics,1303727740 +143264,70286,IMDB Top 250,1303727744 +143264,70286,intelligent,1303727748 +143264,70286,Neill Blomkamp,1303727791 +143264,70286,peter jackson,1303727754 +143264,70286,satire,1303727821 +143264,70286,sci-fi,1303727759 +143264,70286,Sharlto Copley,1303727876 +143264,70286,social commentary,1303727767 +143264,70286,social segregation,1303727773 +143264,70286,violence,1303727776 +143264,70286,weapons,1303727779 +143264,70432,03/10,1268474598 +143264,70432,05/10,1272802126 +143264,70432,06/10,1275815842 +143264,70432,11/10,1289053169 +143264,70451,01/11,1294599308 +143264,70451,02/11,1297596607 +143264,70451,03/11,1299422421 +143264,70451,05/10,1272802281 +143264,70451,05/11,1304885931 +143264,70451,06/10,1275814173 +143264,70451,07/10,1279441104 +143264,70451,08/10,1281784338 +143264,70451,09/10,1285428387 +143264,70451,10/10,1286640366 +143264,70451,11/10,1289052180 +143264,70451,12/10,1291459303 +143264,70497,03/11,1300620244 +143264,70497,05/11,1305462890 +143264,70497,06/11,1307202682 +143264,70521,02/11,1298803242 +143264,70533,12/09,1260111042 +143264,70595,01/11,1295206766 +143264,70595,03/11,1300620329 +143264,70595,11/10,1290334477 +143264,70595,12/10,1292695948 +143264,70670,11/11,1320489168 +143264,70670,12/11,1323548148 +143264,70849,01/11,1295207531 +143264,70849,02/11,1297619110 +143264,70849,03/11,1300620718 +143264,70849,05/11,1305464487 +143264,70849,06/11,1307203574 +143264,70849,11/10,1290959594 +143264,70849,12/10,1292696346 +143264,70871,02/11,1297618416 +143264,70871,03/11,1299425811 +143264,70927,01/11,1296419365 +143264,70927,02/11,1297618310 +143264,70927,03/11,1299425749 +143264,70927,05/11,1305463357 +143264,70927,06/11,1307203035 +143264,71011,01/11,1296417843 +143264,71011,02/11,1297596302 +143264,71011,03/10,1269082774 +143264,71011,05/10,1272802261 +143264,71011,06/10,1275814093 +143264,71011,07/10,1279441539 +143264,71011,08/10,1281784485 +143264,71011,10/10,1286640819 +143264,71033,04/10,1272212961 +143264,71108,01/10,1262377522 +143264,71108,11/09,1259518360 +143264,71108,12/09,1260711363 +143264,71180,10/10,1288453795 +143264,71189,04/11,1303034077 +143264,71189,05/11,1304888608 +143264,71189,06/11,1307202210 +143264,71282,11/09,1257673114 +143264,71304,11/09,1258278366 +143264,71327,01/10,1263729277 +143264,71390,01/10,1263728229 +143264,71390,03/10,1268472515 +143264,71390,05/10,1275239662 +143264,71390,06/10,1275814002 +143264,71390,07/10,1279441443 +143264,71390,08/10,1281784501 +143264,71418,01/12,1327257081 +143264,71418,05/11,1304886999 +143264,71418,06/11,1307201785 +143264,71418,11/11,1320488829 +143264,71418,12/11,1323546470 +143264,71438,03/10,1269700187 +143264,71438,05/10,1272802881 +143264,71438,06/10,1276350733 +143264,71438,08/10,1282483858 +143264,71462,12/09,1260711288 +143264,71464,10/09,1256985636 +143264,71466,05/10,1275239608 +143264,71466,06/10,1275813761 +143264,71466,07/10,1279441491 +143264,71466,08/10,1281784473 +143264,71484,08/10,1282483791 +143264,71494,01/11,1294602661 +143264,71535,Abigail Breslin,1364927025 +143264,71535,Bill Murray,1364926855 +143264,71535,dark comedy,1364926865 +143264,71535,DIVX,1364926904 +143264,71535,funny,1364926874 +143264,71535,post-apocalyptic,1364926876 +143264,71535,road trip,1364926881 +143264,71535,Ruben Fleischer,1364926941 +143264,71535,violence,1364926886 +143264,71535,Woody Harrelson,1364926964 +143264,71535,zombies,1364926889 +143264,71542,01/10,1264325327 +143264,71640,11/10,1290959243 +143264,71640,11/11,1322390176 +143264,71640,12/10,1292695854 +143264,71695,01/11,1295206875 +143264,71695,02/11,1297618434 +143264,71695,03/11,1299425827 +143264,71695,11/10,1290959314 +143264,71695,12/10,1292696078 +143264,71732,05/10,1272802728 +143264,71745,11/09,1257673662 +143264,71867,05/11,1304886710 +143264,71867,10/10,1288453689 +143264,72011,airport,1310018793 +143264,72011,Anna Kendrick,1310018899 +143264,72011,anticorporate,1310018855 +143264,72011,based on a book,1310018797 +143264,72011,business,1310018800 +143264,72011,corporate america,1310018806 +143264,72011,George Clooney,1310018810 +143264,72011,loneliness,1310018816 +143264,72011,Oscar Nominee: Director,1310018828 +143264,72011,United States,1310018839 +143264,72011,wedding,1310018836 +143264,72113,01/11,1295205596 +143264,72113,02/11,1297596755 +143264,72117,03/10,1269700054 +143264,72117,05/10,1272802505 +143264,72117,06/10,1276350609 +143264,72117,07/10,1279441894 +143264,72117,08/10,1281784560 +143264,72142,01/11,1296418576 +143264,72142,02/11,1297598107 +143264,72142,03/11,1299423370 +143264,72142,04/11,1303032671 +143264,72142,05/11,1304886685 +143264,72142,06/11,1307201585 +143264,72142,10/10,1287951216 +143264,72142,11/11,1320488386 +143264,72142,12/10,1292694589 +143264,72142,12/11,1323546045 +143264,72226,animation,1420897705 +143264,72226,based on a book,1420897707 +143264,72226,Bill Murray,1420897710 +143264,72226,bittersweet,1420897713 +143264,72226,father-son relationship,1448921448 +143264,72226,George Clooney,1420897717 +143264,72226,great cast,1448921439 +143264,72226,hilarious,1448921441 +143264,72226,Meryl Streep,1420897722 +143264,72226,Michael Gambon,1420897831 +143264,72226,MKV HD,1448921461 +143264,72226,quirky,1420897792 +143264,72226,stop motion,1420897810 +143264,72226,talking animals,1420897813 +143264,72226,visually appealing,1420897815 +143264,72226,Wes Anderson,1420897819 +143264,72226,Willem Dafoe,1420897821 +143264,72228,06/10,1276350809 +143264,72249,10/10,1288453840 +143264,72249,11/10,1289064219 +143264,72386,Alberto Iglesias,1316357030 +143264,72386,DIVX,1425982444 +143264,72386,Lluis Homar,1316356980 +143264,72386,melodramatic,1425982428 +143264,72386,movies about movies,1316356960 +143264,72386,Nudity (Topless),1316356942 +143264,72386,Pedro Almodóvar,1425982417 +143264,72386,Penelope Cruz,1316356992 +143264,72395,based on a book,1377608176 +143264,72395,child abuse,1377608179 +143264,72395,DIVX,1377608462 +143264,72395,drama,1377608183 +143264,72395,Gabourey Sidibe,1377608371 +143264,72395,intense,1377608187 +143264,72395,Lee Daniels,1377608356 +143264,72395,Mariah Carey,1377608454 +143264,72395,Mo'Nique,1377608380 +143264,72395,New York City,1377608196 +143264,72395,pregnancy,1377608201 +143264,72395,RAPE & SEXUAL ABUSE,1377608205 +143264,72395,realistic,1377608207 +143264,72395,sad but good,1377608212 +143264,72395,school,1377608217 +143264,72605,01/10,1263727964 +143264,72612,10/10,1287951626 +143264,72731,afterlife,1364818904 +143264,72731,based on a book,1364818908 +143264,72731,DIVX,1364927073 +143264,72731,fantasy,1364818915 +143264,72731,Peter Jackson,1364818925 +143264,72731,Saoirse Ronan,1364818950 +143264,72731,serial killer,1364818932 +143264,72731,Stanley Tucci,1364818937 +143264,72731,tense,1364818943 +143264,72735,01/11,1295206479 +143264,72735,03/11,1300620214 +143264,72737,01/10,1263036039 +143264,72980,01/11,1296418851 +143264,72980,02/11,1297617489 +143264,72998,3d,1265919076 +143264,72998,aliens,1303754202 +143264,72998,beautiful,1303754206 +143264,72998,Do kupienia,1265919133 +143264,72998,DVD,1303754245 +143264,72998,ecology,1265919083 +143264,72998,futuristic,1265919087 +143264,72998,graphic design,1265919090 +143264,72998,imdb top 250,1265919093 +143264,72998,James Cameron,1265919096 +143264,72998,James Horner,1303754266 +143264,72998,military,1265919100 +143264,72998,racism,1303754225 +143264,72998,sci-fi,1265919106 +143264,72998,Sigourney Weaver,1265919109 +143264,72998,visually stunning,1265919113 +143264,72998,war,1265919116 +143264,73023,01/10,1264864525 +143264,73117,06/11,1308494885 +143264,73290,03/10,1269083010 +143264,73290,08/10,1281785100 +143264,73469,05/10,1272802847 +143264,73569,01/11,1295206544 +143264,73569,02/11,1297618060 +143264,73569,03/11,1299425477 +143264,73569,05/11,1305463063 +143264,73569,06/11,1307202752 +143264,73569,11/11,1320489333 +143264,73587,03/10,1269700094 +143264,73587,05/10,1272801453 +143264,73587,06/10,1275814059 +143264,73587,07/10,1279441505 +143264,73590,death,1427097692 +143264,73590,DIVX,1427097711 +143264,73590,Nanni Moretti,1427097665 +143264,73590,nudity (topless),1427097657 +143264,73590,Roman Polanski,1427097679 +143264,73608,01/11,1294601387 +143264,73608,02/11,1297596743 +143264,73608,03/11,1299422827 +143264,73608,04/11,1303032032 +143264,73608,05/11,1304886289 +143264,73608,06/10,1276943180 +143264,73608,06/11,1307200821 +143264,73608,08/10,1282483930 +143264,73608,09/10,1285431332 +143264,73608,10/10,1287950356 +143264,73608,10/11,1317552863 +143264,73608,11/10,1289052815 +143264,73608,11/11,1320487982 +143264,73608,12/10,1291459717 +143264,73608,12/11,1323545501 +143264,73664,11/10,1290959266 +143264,73713,01/11,1295206750 +143264,73713,02/11,1297618235 +143264,73713,03/11,1299425573 +143264,73713,05/11,1305463126 +143264,73713,06/11,1307202792 +143264,73713,10/11,1317552622 +143264,73713,11/10,1290959294 +143264,73713,12/10,1292695973 +143264,73759,05/10,1275239645 +143264,73759,06/10,1276350352 +143264,73759,07/10,1279441429 +143264,73759,08/10,1281784454 +143264,73759,09/10,1285428460 +143264,73759,10/10,1286641222 +143264,73759,11/10,1289052464 +143264,73759,12/10,1291459442 +143264,73808,06/11,1307781178 +143264,73824,01/11,1295206816 +143264,73824,01/12,1327258337 +143264,73824,02/11,1297618380 +143264,73824,03/11,1299425797 +143264,73824,05/11,1305463661 +143264,73824,06/11,1307203078 +143264,73824,11/11,1321718704 +143264,73824,12/11,1323549081 +143264,73885,11/11,1320488909 +143264,73885,12/11,1323545830 +143264,74152,03/10,1268473383 +143264,74152,04/10,1272213070 +143264,74327,01/12,1327256250 +143264,74327,02/11,1297617998 +143264,74327,03/11,1299425439 +143264,74327,11/11,1320488765 +143264,74327,12/11,1323546218 +143264,74416,04/10,1272213007 +143264,74416,05/10,1272800778 +143264,74431,05/11,1306576967 +143264,74431,06/11,1307202716 +143264,74431,11/11,1320489180 +143264,74504,01/11,1294601536 +143264,74504,02/11,1297597558 +143264,74504,03/11,1299423079 +143264,74504,05/11,1304886057 +143264,74504,06/10,1276350595 +143264,74504,08/10,1282483970 +143264,74504,10/10,1287950510 +143264,74504,11/10,1289053758 +143264,74504,12/10,1292694440 +143264,74508,03/10,1269082725 +143264,74508,07/10,1279441282 +143264,74508,08/10,1281784257 +143264,74510,03/10,1269699852 +143264,74545,Alexandre Desplat,1364818525 +143264,74545,atmospheric,1364818463 +143264,74545,British,1364818468 +143264,74545,DIVX,1364927177 +143264,74545,espionage,1364818473 +143264,74545,Ewan McGregor,1364818476 +143264,74545,island,1364818480 +143264,74545,location,1364818483 +143264,74545,mystery,1364818487 +143264,74545,Pawel Edelman,1364818540 +143264,74545,Pierce Brosnan,1364818492 +143264,74545,politics,1364818495 +143264,74545,Roman Polanski,1364818498 +143264,74545,suspense,1364818501 +143264,74545,thriller,1364818504 +143264,74545,Tom Wilkinson,1364818856 +143264,74624,Alejandro Amenábar,1365450651 +143264,74624,ancient civilization,1365450561 +143264,74624,atheism,1365450564 +143264,74624,Egypt,1365450568 +143264,74624,lack of historical context,1365450577 +143264,74624,library of alexandria,1365450584 +143264,74624,mathematics,1365450593 +143264,74624,not interesting,1365450596 +143264,74624,philosophy,1365450603 +143264,74624,Rachel Weisz,1365450606 +143264,74624,rationality,1365450611 +143264,74624,religion,1365450615 +143264,74727,01/11,1294602385 +143264,74727,01/12,1327257097 +143264,74727,02/11,1297599376 +143264,74727,03/11,1299424139 +143264,74727,04/11,1303032990 +143264,74727,05/11,1304886909 +143264,74727,06/11,1307201703 +143264,74727,08/10,1282484173 +143264,74727,09/10,1285428979 +143264,74727,10/10,1287948454 +143264,74727,11/10,1289053874 +143264,74727,11/11,1320488926 +143264,74727,12/10,1292694555 +143264,74727,12/11,1323547760 +143264,74789,3D,1297594463 +143264,74789,Alan Rickman,1297594467 +143264,74789,alternate reality,1297594477 +143264,74789,based on a book,1297594481 +143264,74789,Christopher Lee,1297594526 +143264,74789,Danny Elfman,1297594544 +143264,74789,Do kupienia,1297594563 +143264,74789,Helena Bonham Carter,1297594487 +143264,74789,Johnny Depp,1297594489 +143264,74789,Lewis Carroll,1297594493 +143264,74789,Mia Wasikowska,1297594470 +143264,74789,talking animals,1297594497 +143264,74789,Tim Burton,1297594499 +143264,74789,visually appealing,1297594506 +143264,74789,weird,1297594513 +143264,74820,02/11,1297617973 +143264,74820,03/11,1299425423 +143264,74827,06/11,1308495181 +143264,74827,10/10,1288453824 +143264,74827,11/10,1289064278 +143264,76054,08/10,1282483806 +143264,76054,09/10,1285429447 +143264,76054,11/10,1289724626 +143264,76091,05/10,1272802372 +143264,76091,06/10,1275814031 +143264,76093,action,1420898143 +143264,76093,adventure,1420898148 +143264,76093,animation,1420898150 +143264,76093,based on a book,1420898153 +143264,76093,Chris Sanders,1420898273 +143264,76093,comedy,1420898156 +143264,76093,Dean DeBlois,1420898266 +143264,76093,dragons,1420898160 +143264,76093,Dreamworks,1420898164 +143264,76093,fantasy,1420898166 +143264,76093,father-son relationship,1420898169 +143264,76093,friendship,1420898178 +143264,76093,funny,1420898174 +143264,76093,vikings,1420898189 +143264,76111,01/11,1295206833 +143264,76111,03/11,1299425782 +143264,76111,05/11,1305463635 +143264,76137,01/12,1327258113 +143264,76137,11/11,1320489651 +143264,76137,12/11,1323548780 +143264,76158,01/11,1295206313 +143264,76158,02/11,1297617922 +143264,76158,03/11,1299425379 +143264,76158,04/11,1303034203 +143264,76158,05/11,1305462803 +143264,76158,06/11,1307202640 +143264,76158,10/10,1287951677 +143264,76158,11/10,1289064196 +143264,76158,12/10,1292695578 +143264,76173,06/10,1276351229 +143264,76272,07/10,1279441748 +143264,76738,01/11,1294598344 +143264,76738,02/11,1297595943 +143264,76738,03/11,1299421866 +143264,76738,05/11,1304885270 +143264,76738,06/11,1307203337 +143264,76738,11/10,1289724779 +143264,76738,12/10,1291459260 +143264,77154,01/12,1327256236 +143264,77154,05/11,1305462092 +143264,77154,06/11,1307200341 +143264,77154,10/11,1317552770 +143264,77293,02/11,1297596203 +143264,77293,03/11,1299422154 +143264,77293,04/11,1303031102 +143264,77293,06/11,1307203524 +143264,77293,11/11,1320487847 +143264,77293,12/11,1323545348 +143264,77307,07/10,1279441396 +143264,77307,10/10,1286641030 +143264,77316,01/12,1327257008 +143264,77328,10/10,1287948295 +143264,77330,10/10,1287948145 +143264,77353,06/11,1307202998 +143264,77359,10/10,1287948168 +143264,77359,11/10,1289051857 +143264,77455,Banksy,1383599847 +143264,77455,consumerism,1383599812 +143264,77455,documentary,1383599815 +143264,77455,graffiti,1383599820 +143264,77455,quirky humor,1383599829 +143264,77455,Thierry Guetta,1383599835 +143264,77629,09/10,1285427708 +143264,77629,11/10,1290959531 +143264,77833,02/11,1298803726 +143264,77833,03/11,1299423458 +143264,77833,04/11,1303031521 +143264,77833,05/11,1304885949 +143264,77854,01/11,1295207283 +143264,77854,02/11,1297618601 +143264,77854,03/11,1299425934 +143264,77854,04/11,1303031014 +143264,77854,05/11,1305463945 +143264,77854,06/11,1307200117 +143264,77854,12/10,1291459199 +143264,78039,01/11,1296417762 +143264,78103,01/12,1327258274 +143264,78103,11/11,1321718608 +143264,78103,12/11,1323548916 +143264,78162,07/10,1279440945 +143264,78162,08/10,1282483377 +143264,78168,06/11,1308495212 +143264,78218,06/10,1276943030 +143264,78218,07/10,1279441473 +143264,78499,na dysku,1431439362 +143264,78519,01/12,1327257574 +143264,78519,11/11,1320489540 +143264,78519,12/11,1323548331 +143264,78544,01/11,1296417819 +143264,78544,08/10,1282483426 +143264,78574,07/10,1279442186 +143264,78574,08/10,1281783927 +143264,78653,01/11,1296419399 +143264,78898,01/11,1294602741 +143264,78898,02/11,1297599620 +143264,78898,03/11,1299424349 +143264,78898,04/11,1303033111 +143264,78898,05/11,1304887058 +143264,78898,06/11,1307201804 +143264,78898,11/10,1289063692 +143264,78898,12/10,1292695116 +143264,78976,01/12,1327257194 +143264,78976,11/11,1320489218 +143264,78976,12/11,1323547990 +143264,79006,01/11,1294598817 +143264,79006,02/11,1297596080 +143264,79006,10/10,1287950210 +143264,79006,11/10,1289052770 +143264,79006,12/10,1291459490 +143264,79132,alternate reality,1281783135 +143264,79132,cerebral,1368284535 +143264,79132,Cillian Murphy,1281783802 +143264,79132,Dileep Rao,1281783793 +143264,79132,Do zassania,1281783178 +143264,79132,dreams,1281783781 +143264,79132,Ellen Page,1281783682 +143264,79132,Hans Zimmer,1281783145 +143264,79132,Joseph Gordon-Levitt,1281783703 +143264,79132,Ken Watanabe,1281783765 +143264,79132,Leonardo DiCaprio,1281783152 +143264,79132,Michael Caine,1281783824 +143264,79132,Tom Berenger,1281783810 +143264,79132,visually appealing,1281783161 +143264,79242,09/10,1285427790 +143264,79254,01/12,1327258203 +143264,79254,03/11,1300620300 +143264,79254,05/11,1305463193 +143264,79254,06/11,1307202849 +143264,79299,01/11,1294602239 +143264,79299,01/12,1327257331 +143264,79299,02/11,1297598570 +143264,79299,10/10,1287951020 +143264,79299,11/10,1289063726 +143264,79299,12/10,1292694656 +143264,79311,05/13,1368180569 +143264,79311,06/13,1370099577 +143264,79311,08/13,1376938820 +143264,79311,10/13,1381517474 +143264,79311,11/13,1383380515 +143264,79318,01/11,1294601462 +143264,79318,03/11,1299426369 +143264,79318,05/11,1304885326 +143264,79318,06/11,1307204368 +143264,79318,11/10,1290959143 +143264,79318,12/10,1292694771 +143264,79357,Do zassania,1294598105 +143264,79357,Jaco Van Dormael,1294597783 +143264,79357,Jared Leto,1294597786 +143264,79357,nonlinear,1294598013 +143264,79357,sci-fi,1294598067 +143264,79357,surreal,1294598075 +143264,79467,01/12,1327257459 +143264,79467,05/11,1305462713 +143264,79467,06/11,1307202387 +143264,79533,01/11,1294601087 +143264,79533,02/11,1297596439 +143264,79533,03/11,1299422356 +143264,79533,04/11,1303031580 +143264,79533,05/11,1304885905 +143264,79533,06/11,1307200727 +143264,79533,11/11,1320488372 +143264,79533,12/10,1292693736 +143264,79536,03/11,1300619646 +143264,79536,10/10,1287950237 +143264,79536,11/10,1289053466 +143264,79578,02/11,1298151318 +143264,79578,03/11,1299425358 +143264,79578,04/11,1303034026 +143264,79578,05/11,1304888976 +143264,79578,06/11,1307202507 +143264,79677,11/11,1321717464 +143264,79760,04/11,1303033202 +143264,79760,05/11,1304886268 +143264,79760,06/11,1307201047 +143264,79760,10/11,1317552494 +143264,79760,11/11,1320487712 +143264,79760,12/11,1323549603 +143264,79809,12/11,1323548860 +143264,79832,10/11,1317552843 +143264,79832,11/11,1320487966 +143264,79987,01/12,1327257534 +143264,79987,12/11,1323548295 +143264,80181,01/11,1294602851 +143264,80181,11/10,1290334396 +143264,80181,12/10,1292695136 +143264,80185,03/11,1301234231 +143264,80281,11/11,1322390056 +143264,80463,10/10,1286639126 +143264,80646,11/11,1320489477 +143264,80646,12/11,1323548568 +143264,80648,01/12,1327256489 +143264,80648,02/11,1298803195 +143264,80648,03/11,1299422748 +143264,80648,04/11,1303032406 +143264,80648,05/11,1304886573 +143264,80648,06/11,1307201281 +143264,80648,11/11,1320488276 +143264,80648,12/11,1323545886 +143264,80729,01/11,1295206856 +143264,80729,02/11,1297618396 +143264,80862,10/10,1287950374 +143264,80862,11/10,1289053025 +143264,80928,06/11,1308495310 +143264,80969,11/10,1289053585 +143264,81158,12/10,1292693627 +143264,81191,01/11,1296418827 +143264,81191,02/11,1297596946 +143264,81257,05/11,1304886516 +143264,81305,01/12,1327257560 +143264,81305,11/11,1320489581 +143264,81305,12/11,1323548792 +143264,81385,03/11,1301234024 +143264,81456,canadian,1382993395 +143264,81456,love triangles,1382993826 +143264,81456,overrated,1382993380 +143264,81456,Xavier Dolan,1382993386 +143264,81562,adventure,1303751878 +143264,81562,Blue John Canyon,1303751887 +143264,81562,danny boyle,1303751892 +143264,81562,James Franco,1303751905 +143264,81562,loneliness,1303751910 +143264,81562,nature,1303751917 +143264,81562,survival,1303751924 +143264,81562,true story,1303751929 +143264,81562,Utah,1303751933 +143264,81564,11/10,1290334034 +143264,81568,01/12,1327256294 +143264,81568,05/11,1306576889 +143264,81568,06/11,1307201986 +143264,81568,11/11,1320488163 +143264,81568,12/11,1323545698 +143264,81591,atmospheric,1297063899 +143264,81591,ballet,1297063902 +143264,81591,Clint Mansell,1297064112 +143264,81591,dance,1297063906 +143264,81591,dark,1297063911 +143264,81591,Darren Aronofsky,1297063914 +143264,81591,Do zassania,1297064177 +143264,81591,lesbians,1297063918 +143264,81591,madness,1297063922 +143264,81591,Mila Kunis,1297064081 +143264,81591,Natalie Portman,1297063925 +143264,81591,overrated,1297063928 +143264,81591,Vincent Cassel,1297063938 +143264,81591,Winona Ryder,1297064090 +143264,81641,12/10,1292693544 +143264,81788,01/11,1294601258 +143264,81788,02/11,1297596337 +143264,81817,01/11,1295792418 +143264,81817,03/11,1299422334 +143264,81817,04/11,1303031307 +143264,81817,05/11,1304885475 +143264,81817,06/11,1307781159 +143264,81834,Alan Rickman,1290957726 +143264,81834,Alexandre Desplat,1290958085 +143264,81834,based on a book,1290957730 +143264,81834,Bill Nighy,1290957792 +143264,81834,British,1290957920 +143264,81834,Daniel Radcliffe,1290957738 +143264,81834,dark,1290957746 +143264,81834,David Thewlis,1290958035 +143264,81834,David Yates,1290957755 +143264,81834,DVD,1420974095 +143264,81834,Emma Watson,1290957760 +143264,81834,England,1290957913 +143264,81834,Evanna Lynch,1290958055 +143264,81834,franchise,1420974219 +143264,81834,Helena Bonham Carter,1290957856 +143264,81834,Jason Isaacs,1290957834 +143264,81834,magic,1290957771 +143264,81834,Ralph Fiennes,1290957818 +143264,81834,Rupert Grint,1290957774 +143264,81834,Tom Felton,1290958000 +143264,81845,1930s,1297063645 +143264,81845,based on a true story,1297063651 +143264,81845,brothers,1297063658 +143264,81845,Colin Firth,1297063660 +143264,81845,Derek Jacobi,1297063765 +143264,81845,Do zassania,1297063864 +143264,81845,drama,1297063664 +143264,81845,friendship,1297063672 +143264,81845,Guy Pearce,1297063840 +143264,81845,Helena Bonham Carter,1297063669 +143264,81845,London,1297063676 +143264,81845,Michael Gambon,1297063819 +143264,81845,therapy,1297063685 +143264,81845,United Kingdom,1297063689 +143264,81845,want to see again,1297063697 +143264,81845,war,1297063701 +143264,81847,na dysku,1392885339 +143264,81910,01/11,1294602473 +143264,81910,03/11,1301233418 +143264,81910,04/11,1303031128 +143264,81910,05/11,1304885290 +143264,81910,06/11,1307203349 +143264,81932,Amy Adams,1343076984 +143264,81932,boxing,1343076987 +143264,81932,brothers,1343076990 +143264,81932,Christian Bale,1343076992 +143264,81932,David O. Russell,1343077027 +143264,81932,DIVX,1343077196 +143264,81932,family relationships,1343076999 +143264,81932,Mark Wahlberg,1343077002 +143264,81932,Melissa Leo,1343077088 +143264,81932,Oscar (Best Supporting Actor),1343077130 +143264,81932,Oscar (Best Supporting Actress),1343077148 +143264,81932,sports,1343077017 +143264,81932,true story,1343077013 +143264,82037,02/11,1297598443 +143264,82037,03/11,1301234202 +143264,82037,05/11,1305464235 +143264,82037,06/11,1307204332 +143264,82143,01/12,1327256434 +143264,82143,11/11,1321718465 +143264,82143,12/11,1323548724 +143264,82150,11/11,1322389936 +143264,82150,12/11,1323546159 +143264,82242,01/11,1294598202 +143264,82242,12/10,1292693373 +143264,82302,01/12,1327258085 +143264,82302,05/11,1305463029 +143264,82302,06/11,1307202728 +143264,82302,11/11,1320489555 +143264,82302,12/11,1323548739 +143264,82463,bittersweet,1377607837 +143264,82463,British,1377607842 +143264,82463,DIVX,1377607897 +143264,82463,drinking,1377607846 +143264,82463,friendship,1377607850 +143264,82463,husband-wife relationship,1377607853 +143264,82463,Imelda Staunton,1377607885 +143264,82463,Jim Broadbent,1377607876 +143264,82463,Lesley Manville,1377607957 +143264,82463,loneliness,1377607860 +143264,82463,middle-aged people,1377607863 +143264,82463,Mike Leigh,1377607867 +143264,82463,Ruth Sheen,1377607951 +143264,82527,05/11,1305462913 +143264,82527,06/11,1307201958 +143264,82667,03/11,1300619846 +143264,82667,04/11,1303031076 +143264,82667,05/11,1304885248 +143264,82926,12/11,1323548670 +143264,82934,01/12,1327256505 +143264,82934,11/11,1320489041 +143264,82934,12/11,1323546358 +143264,83180,11/11,1320488986 +143264,83270,05/11,1305464017 +143264,83270,06/11,1307203465 +143264,83293,06/11,1307780190 +143264,83332,01/12,1327256519 +143264,83332,11/11,1321717478 +143264,83798,01/12,1327257421 +143264,83803,05/11,1306576454 +143264,83803,06/11,1307200806 +143264,83827,01/12,1327256198 +143264,83827,11/11,1321717356 +143264,83827,12/11,1323545392 +143264,84116,06/11,1307780826 +143264,84154,11/11,1321718644 +143264,84154,12/11,1323549013 +143264,84187,04/11,1303031049 +143264,84187,05/11,1304885346 +143264,84240,11/11,1320488537 +143264,84240,12/11,1323545482 +143264,84716,01/12,1327258146 +143264,84770,01/12,1327256265 +143264,84770,10/11,1317553106 +143264,84770,11/11,1320488244 +143264,84770,12/11,1323545730 +143264,84844,01/12,1327258310 +143264,84844,11/11,1321718718 +143264,84844,12/11,1323549048 +143264,85179,10/11,1317552519 +143264,85259,01/12,1327256074 +143264,85259,06/11,1307780794 +143264,85259,10/11,1317552787 +143264,85259,11/11,1320487730 +143264,85259,12/11,1323545262 +143264,85316,10/11,1317553166 +143264,85354,05/11,1305464578 +143264,85354,06/11,1308495365 +143264,85394,06/11,1307202375 +143264,85412,06/11,1308494772 +143264,85774,11/11,1322389199 +143264,85790,05/11,1305462989 +143264,85790,06/11,1308495122 +143264,85881,06/11,1307204347 +143264,86142,06/11,1307203537 +143264,86290,05/11,1305462685 +143264,86290,06/11,1307779776 +143264,86320,06/11,1309026760 +143264,86377,na dysku,1370099867 +143264,86593,01/12,1327258350 +143264,86593,11/11,1321718752 +143264,86593,12/11,1323549117 +143264,86668,01/12,1327258159 +143264,86668,11/11,1322390246 +143264,86668,12/11,1323548844 +143264,86781,06/11,1307202818 +143264,86882,na dysku,1419962237 +143264,86892,11/11,1320488953 +143264,87308,10/11,1317555385 +143264,87660,01/12,1327256108 +143264,87660,11/11,1320487891 +143264,87660,12/11,1323545301 +143264,87930,01/12,1327256407 +143264,88118,01/12,1327256607 +143264,88118,11/11,1320488402 +143264,88118,12/11,1323545759 +143264,88125,Alan Rickman,1420974128 +143264,88125,Alexandre Desplat,1420974195 +143264,88125,atmospheric,1420974125 +143264,88125,based on a book,1420974132 +143264,88125,Daniel Radcliffe,1420974136 +143264,88125,David Yates,1420974177 +143264,88125,DVD,1420974204 +143264,88125,Emma Watson,1420974139 +143264,88125,epic,1420974143 +143264,88125,fantasy,1420974146 +143264,88125,franchise,1420974149 +143264,88125,Harry Potter,1420974155 +143264,88125,magic,1420974157 +143264,88125,Ralph Fiennes,1420974161 +143264,88345,10/11,1317553014 +143264,88345,11/11,1320488179 +143264,89090,11/11,1321717873 +143264,89090,12/11,1323545189 +143264,89118,Alberto Iglesias,1316356769 +143264,89118,Antonio Banderas,1316356748 +143264,89118,Do zassania,1316356739 +143264,89118,Pedro Almodovar,1316356730 +143264,89343,10/11,1317552884 +143264,89535,12/11,1323546014 +143264,89582,01/12,1327258377 +143264,89582,11/11,1321718769 +143264,89582,12/11,1323549130 +143264,89864,11/11,1322390360 +143264,89904,na dysku,1419962037 +143264,90350,01/12,1327256568 +143264,90603,11/11,1322390103 +143264,90746,11/11,1321718932 +143264,90866,12/11,1323545224 +143264,91077,12/11,1323549521 +143264,91529,Anne Hathaway,1344540045 +143264,91529,Batman,1344540052 +143264,91529,Christian Bale,1344540054 +143264,91529,Christopher Nolan,1344540057 +143264,91529,comic books,1344540062 +143264,91529,Do zassania,1344540495 +143264,91529,franchise,1344540066 +143264,91529,Gary Oldman,1344540069 +143264,91529,Hans Zimmer,1344540381 +143264,91529,Joseph Gordon-Levitt,1344540076 +143264,91529,Michael Caine,1344540079 +143264,91529,Morgan Freeman,1344540096 +143264,91529,Predictable,1344540100 +143264,91529,superhero,1344540104 +143264,91529,Tom Hardy,1344540157 +143264,91529,trilogy,1344540107 +143264,91529,Wally Pfister,1344540479 +143264,92259,disability,1335389946 +143264,92259,Do kupienia,1335390018 +143264,92259,Do zassania,1335390012 +143264,92259,Eric Toledano,1335389959 +143264,92259,Francois Cluzet,1335389992 +143264,92259,Olivier Nakache,1335389961 +143264,92259,Omar Sy,1335390003 +143264,94466,dark,1420900680 +143264,94466,DIVX,1420900692 +143264,94466,dystopia,1420900678 +143264,94466,satire,1420900687 +143264,94466,social commentary,1420900671 +143264,94466,technology,1420900668 +143264,94466,TV series,1420900664 +143264,94466,well constructed,1420900676 +143264,94478,Bella Heathcote,1338028449 +143264,94478,Danny Elfman,1338028515 +143264,94478,Do zassania,1338028530 +143264,94478,eva green,1338028454 +143264,94478,Helena Bonham Carter,1338028467 +143264,94478,johnny depp,1338028458 +143264,94478,Michelle Pfeiffer,1338028500 +143264,94478,the plot,1338028476 +143264,94478,Tim Burton,1338028471 +143264,96062,08/12,1344541677 +143264,96062,10/12,1349177338 +143264,96610,na dysku,1419962928 +143264,97913,na dysku,1422129216 +143264,98485,Do zassania,1399498036 +143264,98485,history,1354217913 +143264,98485,Holocaust,1354217979 +143264,98485,Maciej Stuhr,1354217891 +143264,98485,Poland,1354217979 +143264,98485,Polish movie,1354217979 +143264,98485,social commentary,1354217988 +143264,98485,too simple plot,1354218153 +143264,98485,touching,1354217998 +143264,98485,watch again,1354218173 +143264,98485,Wladyslaw Pasikowski,1354217878 +143264,98485,World War II,1354217979 +143264,98809,adventure,1358841533 +143264,98809,Andy Serkis,1358841629 +143264,98809,based on a book,1358841537 +143264,98809,beautiful scenery,1358841539 +143264,98809,big budget,1358841543 +143264,98809,CGI,1358841547 +143264,98809,Christopher Lee,1358841620 +143264,98809,epic,1358841552 +143264,98809,fantasy,1358841554 +143264,98809,franchise,1358841561 +143264,98809,Howard Shore,1358841641 +143264,98809,Ian Holm,1358841612 +143264,98809,Ian McKellen,1358841591 +143264,98809,magic,1358841565 +143264,98809,New Zealand,1358841569 +143264,98809,Peter Jackson,1358841571 +143264,98809,Tolkien,1358841576 +143264,98809,too long,1358841578 +143264,98961,na dysku,1396818664 +143264,99114,19th century,1425070195 +143264,99114,action,1425070199 +143264,99114,Christoph Waltz,1425070278 +143264,99114,DIVX,1425070352 +143264,99114,Don Johnson,1425070319 +143264,99114,Funny,1425070202 +143264,99114,imdb top 250,1425070206 +143264,99114,Leonardo DiCaprio,1425070209 +143264,99114,love,1425070213 +143264,99114,music,1425070219 +143264,99114,Quentin Tarantino,1425070223 +143264,99114,racism,1425070227 +143264,99114,Revenge,1425070230 +143264,99114,Samuel L. Jackson,1425070234 +143264,99114,violence,1425070237 +143264,99114,visually appealing,1425070240 +143264,99114,western,1425070245 +143264,99349,01/13,1357164289 +143264,99349,02/13,1360610311 +143264,99349,03/13,1363521241 +143264,99349,05/13,1368180528 +143264,99349,06/13,1370099545 +143264,100442,Bartlomiej Topa,1360610029 +143264,100442,corruption,1360610103 +143264,100442,Do zassania,1360610068 +143264,100442,humorous,1360610174 +143264,100442,Marcin Dorocinski,1360610039 +143264,100442,Marian Dziedziel,1360610046 +143264,100442,Poland,1360610146 +143264,100442,sarcasm,1360610115 +143264,100442,social commentary,1360610081 +143264,100442,truth,1360610164 +143264,100442,Wojciech Smarzowski,1360610050 +143264,100617,03/13,1363521258 +143264,100714,beautiful,1424213110 +143264,100714,conversation,1424213116 +143264,100714,DVD,1424213155 +143264,100714,Ethan Hawke,1424213118 +143264,100714,honest,1424213125 +143264,100714,Julie Delpy,1424213150 +143264,100714,marriage,1424213127 +143264,100714,nudity (topless),1424213128 +143264,100714,philosophical,1424213131 +143264,100714,Richard Linklater,1424213122 +143264,100714,romance,1424213134 +143264,100714,talky,1424213139 +143264,100714,unique,1424213141 +143264,101971,01/14,1389122864 +143264,101971,02/14,1392885178 +143264,101971,04/14,1396818323 +143264,101971,05/13,1368180546 +143264,101971,05/14,1399576329 +143264,101971,06/13,1370099558 +143264,101971,06/14,1401866625 +143264,101971,08/13,1376938665 +143264,101971,10/13,1381517451 +143264,101971,11/10,1383380493 +143264,101971,11/13,1384376816 +143264,101971,12/13,1386268533 +143264,102993,coming of age,1445892444 +143264,102993,DVD,1445892530 +143264,102993,heartwarming,1445892464 +143264,102993,Liam James,1445892524 +143264,102993,parent-children relationship,1445892480 +143264,102993,predictable plot,1445892471 +143264,102993,Sam Rockwell,1445892449 +143264,102993,Steve Carell,1445892483 +143264,102993,vacation,1445892474 +143264,104944,05/14,1400618653 +143264,104944,06/14,1401866671 +143264,106100,na dysku,1424516553 +143264,106452,Agata Kulesza,1423692228 +143264,106452,Agata Trzebuchowska,1423692285 +143264,106452,beautifully filmed,1423692307 +143264,106452,black and white,1423692311 +143264,106452,Pawel Pawlikowski,1423692297 +143264,106452,Polish movie,1423692322 +143264,106489,adventure,1390059476 +143264,106489,author:J. R. R. Tolkein,1390059466 +143264,106489,based on a book,1390059479 +143264,106489,Do kupienia,1390059570 +143264,106489,dragon,1390059485 +143264,106489,epic,1390059489 +143264,106489,fantasy,1390059497 +143264,106489,Howard Shore,1390059560 +143264,106489,Ian McKellen,1390059535 +143264,106489,long,1390059505 +143264,106489,Martin Freeman,1390059527 +143264,106489,not true to the book,1390059510 +143264,106489,Peter Jackson,1390059513 +143264,106766,atmospheric,1414258492 +143264,106766,Coen Brothers,1414258496 +143264,106766,folk music,1414258498 +143264,106766,funny,1414258504 +143264,106766,John Goodman,1414258554 +143264,106766,Justin Timberlake,1414258566 +143264,106766,mkv,1430253729 +143264,106766,musicians,1414258507 +143264,106766,New York City,1414258512 +143264,106766,Oscar Isaac,1414258590 +143264,106782,based on a book,1422128085 +143264,106782,based on a true story,1422128091 +143264,106782,drugs,1422128095 +143264,106782,economics,1422128098 +143264,106782,greed,1422128107 +143264,106782,Leonardo DiCaprio,1422128101 +143264,106782,Martin Scorsese,1422128105 +143264,106782,Nudity (Full Frontal),1422128114 +143264,106782,Nudity (Topless),1422128118 +143264,106782,prostitution,1422128121 +143264,106782,Stock Market,1422128125 +143264,106782,true story,1422128127 +143264,106782,visually appealing,1422128129 +143264,106916,amy adams,1396035643 +143264,106916,Anti-Hero,1396035648 +143264,106916,based on a true story,1396035652 +143264,106916,Bradley Cooper,1396035656 +143264,106916,Christian Bale,1396035659 +143264,106916,corruption,1396035663 +143264,106916,David O. Russell,1396035690 +143264,106916,DIVX,1396035701 +143264,106916,Jennifer Lawrence,1396035666 +143264,106916,Louis C.K.,1396035750 +143264,106916,New Jersey,1396035675 +143264,106916,politics,1396035680 +143264,107718,01/14,1390059695 +143264,107718,02/14,1392885155 +143264,107718,04/14,1396818457 +143264,109374,30s,1396162454 +143264,109374,Alexandre Desplat,1396162398 +143264,109374,beetween the wars,1396162595 +143264,109374,Bill Murray,1396162256 +143264,109374,cast,1396162197 +143264,109374,cinematography,1396162201 +143264,109374,Do kupienia,1396162533 +143264,109374,eastern europe,1396162434 +143264,109374,Edward Norton,1396162204 +143264,109374,F. Murray Abraham,1396162313 +143264,109374,funny,1396162210 +143264,109374,Harvey Keitel,1396162340 +143264,109374,hotel,1396162219 +143264,109374,quirky,1396162225 +143264,109374,Ralph Fiennes,1396162264 +143264,109374,Saoirse Ronan,1396162246 +143264,109374,Scott Rudin,1396162381 +143264,109374,stylized,1396162411 +143264,109374,Tilda Swinton,1396162293 +143264,109374,visually appealing,1396162229 +143264,109374,war,1396162464 +143264,109374,Wes Anderson,1396162231 +143264,109374,Willem Dafoe,1396162235 +143264,111124,Afghanistan,1399398635 +143264,111124,Andrzej Chyra,1399398571 +143264,111124,counterfeiting,1399398809 +143264,111124,DIVX,1399399823 +143264,111124,Jerzy Trela,1399398587 +143264,111124,Karolina Gruszka,1399398594 +143264,111124,kidnapping,1399399029 +143264,111124,Marian Dziedziel,1399398564 +143264,111124,police corruption,1399399051 +143264,111124,prison,1399398642 +143264,111124,Robert Wieckiewicz,1399398609 +143264,111124,too simple plot,1399399068 +143264,111759,action,1439538142 +143264,111759,Alien Invasion,1439538149 +143264,111759,aliens,1439538138 +143264,111759,Doug Liman,1439538160 +143264,111759,Emily Blunt,1439538134 +143264,111759,future,1439538144 +143264,111759,HD MKV,1439538178 +143264,111759,original plot,1439538136 +143264,111759,sci-fi,1439538123 +143264,111759,time loop,1439538120 +143264,111759,time travel,1439538127 +143264,111759,Tom Cruise,1439538131 +143264,111759,war,1439538151 +143264,112290,12 years in the making,1410973618 +143264,112290,Do zassania,1410973771 +143264,112290,Ellar Coltrane,1410973630 +143264,112290,Ethan Hawke,1410973648 +143264,112290,Lorelei Linklater,1410973735 +143264,112290,Partricia Arquette,1410973642 +143264,112290,realism,1410973749 +143264,112290,Richard Linklater,1410973613 +143264,112552,Damien Chazelle,1423692094 +143264,112552,DIVX,1423692108 +143264,112552,J.K. Simmons,1423692069 +143264,112552,jazz,1423692079 +143264,115467,03/15,1425982808 +143264,116161,Bennett Miller,1423692518 +143264,116161,Channing Tatum,1423692466 +143264,116161,Mark Ruffalo,1423692458 +143264,116161,social commentary,1423695186 +143264,116161,sport,1423692526 +143264,116161,Steve Carell,1423692473 +143264,116161,wrestling,1423692533 +143264,116797,Alan Turing,1423695455 +143264,116797,Alexandre Desplat,1423695506 +143264,116797,Benedict Cumberbatch,1423695267 +143264,116797,Charles Dance,1423695329 +143264,116797,computers,1423695467 +143264,116797,Do zassania,1423695416 +143264,116797,Keira Knightley,1423695274 +143264,116797,mathematics,1423695287 +143264,116797,World War II,1423695290 +143264,117176,Stephen Hawking,1424212163 +143264,118696,Do kupienia,1420752429 +143264,118696,Peter Jackson,1420752434 +143264,118696,Tolkien,1420752436 +143264,120811,01/15,1420973705 +143264,120813,01/15,1420973721 +143264,120815,01/15,1420973750 +143264,124131,04/15,1430164066 +143264,124273,01/15,1422128824 +143264,124273,02/15,1424515736 +143264,124273,03/15,1425982835 +143264,124273,04/15,1430164053 +143264,125966,01/15,1422128811 +143264,125966,02/15,1424515713 +143264,125966,03/15,1425982791 +143264,127021,02/15,1424515778 +143264,127021,03/15,1425982868 +143264,127451,Abel Korzeniowski,1422909817 +143264,127451,Borys Lankosz,1422909803 +143264,127451,crime,1422909828 +143264,127451,dark,1422909944 +143264,127451,Do zassania,1422909909 +143264,127451,investigation,1422909895 +143264,127451,Jerzy Trela,1422909794 +143264,127451,Poland,1422909868 +143264,127451,polish-jewish history,1422909963 +143264,127451,Robert Wieckiewicz,1422909787 +143264,127451,Sandomierz,1422909864 +143264,127451,social commentary,1422909955 +143264,127451,thriller,1422909959 +143264,127453,Aleksandr Baluev,1422910251 +143264,127453,crime,1422910329 +143264,127453,Do zassania,1422910337 +143264,127453,history,1422910272 +143264,127453,investigation,1422910322 +143264,127453,Legnica,1422910294 +143264,127453,Moscow,1422910307 +143264,127453,Poland,1422910300 +143264,127453,Russia,1422910315 +143264,127453,Tatyana Arntgolts,1422910241 +143264,127453,Waldemar Krzystek,1422910262 +143264,128320,02/15,1424515752 +143264,128320,03/15,1425982846 +143264,128366,02/15,1424515764 +143264,128612,anorexia,1426771253 +143264,128612,father daughter relationship,1426771237 +143264,128612,ghosts,1426771199 +143264,128612,Janusz Gajos,1426771113 +143264,128612,Justyna Suwala,1426771138 +143264,128612,life & death,1426771224 +143264,128612,Maja Ostaszewska,1426771122 +143264,128612,Malgorzata Szumowska,1426771142 +143264,128612,Polish movie,1426771152 +143264,128612,social commentary,1426771162 +143264,128612,sometimes funny,1426771174 +143264,128734,Arkadiusz Jakubik,1424210945 +143264,128734,chaotic,1424211092 +143264,128734,Czeslaw Mozil,1424210977 +143264,128734,Do zassania,1424211173 +143264,128734,Grzegorz Halama,1424210935 +143264,128734,independent film,1424211151 +143264,128734,Krzysztof Skiba,1424211026 +143264,128734,Leszek Mozdzer,1424210988 +143264,128734,Marian Dziedziel,1424210959 +143264,128734,music,1424211081 +143264,128734,Olaf Deriglasoff,1424211008 +143264,128734,punk,1424211106 +143264,128734,Robert Brylewski,1424210930 +143264,128734,satire,1424211047 +143264,128734,social commentary,1424211054 +143264,128734,Sonia Bohosiewicz,1424210953 +143264,128734,Tymon Tymanski,1424210923 +143264,128812,03/15,1425982778 +143264,128812,04/15,1430164017 +143264,129401,03/15,1425982823 +143264,129401,04/15,1430164034 +143264,130518,04/15,1430164078 +143264,132874,Agata Kulesza,1430253204 +143264,132874,do zassania HD,1430253178 +143264,132874,history,1430253215 +143264,132874,Marcin Dorocinski,1430253191 +143264,132874,Poland,1430253227 +143264,132874,Wojciech Smarzowski,1430253180 +143264,134130,based on book,1445199891 +143264,134130,Do zassania,1445199912 +143264,134130,Improvisation,1445199894 +143264,134130,mars,1445199897 +143264,134130,matt damon,1445199879 +143264,134130,Near Future,1445199900 +143264,134130,sci-fi,1445199889 +143264,134130,Space,1445199876 +143264,134130,Survival Instinct,1445199885 +143264,134853,childhood,1438202631 +143264,134853,Do zassania,1438202680 +143264,134853,Pete Docter,1438202666 +143264,134853,Pixar,1438202626 +143264,134853,psychology,1438202637 +143264,134853,San Francisco,1438202642 +143264,141846,apple,1453749730 +143264,146275,do zassania,1446914643 +143271,1,the boys,1137115175 +143271,10,Bond,1138419481 +143271,50,awesome,1137115217 +143271,104,haha,1137115210 +143271,110,mel gibson,1137115205 +143271,260,hot scifi,1137115226 +143271,318,awesome,1137115256 +143271,527,awesome,1137115251 +143271,608,cult,1137115207 +143271,799,cult,1137115208 +143271,858,awesome,1137115202 +143271,898,awesome,1137115213 +143271,904,hitchcock,1137115247 +143271,913,classic,1137115239 +143271,919,classic,1137115241 +143271,921,awesome,1137115211 +143271,923,awesome,1137115267 +143271,947,awesome,1137115291 +143271,953,awesome,1137115280 +143271,1136,awesome,1137115290 +143271,1198,awesome,1137115303 +143271,1722,Bond,1138419486 +143271,3082,Bond,1138419492 +143271,5504,kids,1137115082 +143271,5872,Bond,1138419474 +143271,7017,snipes,1137115079 +143271,31162,Black Comedy,1139582973 +143271,41716,Black Comedy,1138419454 +143271,44195,satire,1144941705 +143271,115017,holiday,1428098957 +143271,115017,sentimental,1428098957 +143271,115017,truman capote,1428098957 +143280,955,Cary Grant,1264344815 +143280,955,Katherine Hepburn,1264344817 +143280,955,witty,1264344820 +143280,1197,fencing,1138021484 +143280,1197,fighting,1138021484 +143280,1197,revenge,1138021484 +143280,1197,true love,1138021484 +143280,1256,Marx Brothers,1264344871 +143280,1256,satire,1264344914 +143280,8535,cole porter,1138021490 +143280,34405,adventure,1138021549 +143280,34405,firefly,1138021549 +143280,34405,space,1138021549 +143286,51935,based on a book,1256960385 +143286,51935,Danny Glover,1256960389 +143286,51935,sniper,1256960362 +143288,110,action,1439064077 +143288,110,Scotland,1439064075 +143288,318,twist ending,1439064996 +143288,326,Gong Li,1439064470 +143288,326,poignant,1439064461 +143288,446,China,1439064509 +143288,446,Gong Li,1439064512 +143288,1280,Cinematography,1439064356 +143288,1280,Gong Li,1439064367 +143288,1280,stylized,1439064353 +143288,1704,excellent script,1439065011 +143288,1704,Matt Damon,1439065008 +143288,1784,Jack Nicholson,1439065026 +143288,1960,biography,1439064436 +143288,1960,China,1439064431 +143288,1960,cinematography,1439064438 +143288,1960,lavish,1439064440 +143288,1960,Oscar (Best Picture),1439064433 +143288,3578,action,1439063984 +143288,3578,Rome,1439063981 +143288,3717,Angelina Jolie,1439063942 +143288,3717,cars,1439063946 +143288,4369,Michelle Rodriguez,1439063932 +143288,4369,racing,1439063928 +143288,58559,Christian Bale,1439064137 +143288,58559,Health Ledger,1439064141 +143288,59369,car chase,1439064793 +143288,64957,Cate Blanchett,1439064868 +143288,64957,original plot,1439064872 +143288,81562,depressing,1439064921 +143288,81591,dark,1439064940 +143288,89087,action,1439064813 +143288,97938,Ang Lee,1439064897 +143288,97938,cinematography,1439064890 +143288,97938,great photograpy,1439064893 +143288,97938,visually appealing,1439064887 +143288,103980,Cate Blanchett,1439064662 +143288,111921,ansel elgort,1439064716 +143299,2959,surreal,1378246401 +143299,2959,twist ending,1378246406 +143299,4226,complicated,1378413286 +143299,4226,great ending,1378413291 +143299,4226,nonlinear,1378413298 +143299,4226,psychological,1378413301 +143299,4226,revenge,1378413309 +143299,4226,tense,1378413314 +143299,4226,time loop,1378413319 +143299,4226,twist ending,1378413316 +143299,102903,illusions,1378245946 +143299,102903,Morgan Freemanm magic,1378245958 +143299,102903,overcomplicated,1378245764 +143299,102903,pseudo-intelligent,1378245961 +143299,102903,stage magic,1378245779 +143300,7228,noir,1165752781 +143309,59315,action,1261887853 +143309,59315,sci-fi,1261887853 +143309,72378,future,1261888070 +143309,72378,Thriller,1261888144 +143309,72998,war,1261887482 +143324,2145,Andrew Dice Clay,1397093389 +143324,7360,One-sided nudity,1339930272 +143324,7360,Sarah Polley,1339930292 +143324,69406,male nudity,1397526252 +143324,69406,racism,1397526488 +143357,70,cult classic,1375193617 +143357,70,vampires,1375193619 +143357,70,violence,1375193625 +143357,597,romance,1375250130 +143357,1197,fairy tale,1375248280 +143357,1197,fantasy,1375248279 +143357,1197,romance,1375248284 +143357,1197,sword fight,1375248290 +143357,1197,witty,1375248294 +143357,1206,disturbing,1402823464 +143357,1206,dystopia,1402823462 +143357,1206,quirky,1402823467 +143357,1206,satire,1402823488 +143357,1206,social commentary,1402823465 +143357,1206,stylized,1402823492 +143357,1206,surreal,1402823515 +143357,1235,cult film,1375193337 +143357,1235,dark humor,1375193339 +143357,1235,quirky,1375193348 +143357,1235,suicide,1375193443 +143357,1246,boarding school,1402825005 +143357,1246,Coming of age,1402824991 +143357,1246,drama,1402824996 +143357,1246,English literature,1402825000 +143357,1246,poetry,1402825001 +143357,1682,dark comedy,1375249421 +143357,1682,dystopia,1375249418 +143357,2325,cult film,1449453681 +143357,2325,Mormon,1449453677 +143357,2325,religion,1449453684 +143357,2325,satire,1449453673 +143357,2572,chick flick,1402824216 +143357,2572,comedy,1402824212 +143357,2572,guilty pleasure,1402824220 +143357,2572,romance,1402824210 +143357,2572,teen,1402824223 +143357,2959,atmospheric,1402823674 +143357,2959,dark comedy,1402823688 +143357,2959,mental illness,1402823692 +143357,2959,social commentary,1402823695 +143357,2959,surreal,1402823671 +143357,3481,break-up,1402824969 +143357,3481,coming of age,1402824971 +143357,3481,music,1402824964 +143357,3481,quirky,1402824960 +143357,3481,relationships,1402824962 +143357,4878,cult film,1402823595 +143357,4878,dreamlike,1402823599 +143357,4878,mental illness,1402823594 +143357,4878,surreal,1402823591 +143357,4878,time travel,1402823601 +143357,4899,comedy,1402823990 +143357,4974,parody,1384007634 +143357,4989,college,1384007547 +143357,4989,drugs,1384007550 +143357,5110,comedy,1402824614 +143357,5110,off-beat comedy,1402824619 +143357,5110,police,1402824616 +143357,6942,christmas,1402825073 +143357,6942,relationships,1402825084 +143357,6942,Romance,1402825078 +143357,6944,Family,1435485393 +143357,6944,wedding,1435485390 +143357,7254,memory,1402823644 +143357,7254,suspense,1402823635 +143357,7254,time travel,1402823623 +143357,7361,alternate reality,1402823558 +143357,7361,cult film,1402823562 +143357,7361,fantasy,1402823552 +143357,7361,quirky,1402823550 +143357,7361,romance,1402823565 +143357,7361,sci-fi,1402823572 +143357,7361,surreal,1402823543 +143357,7361,thought-provoking,1402823568 +143357,8531,comedy,1402823969 +143357,8533,beautiful scenery,1402824947 +143357,8533,Romance,1402824938 +143357,8533,sentimental,1402824940 +143357,8874,british comedy,1375194007 +143357,8874,satire,1375194368 +143357,8874,Simon Pegg,1375194370 +143357,27402,H.P. Lovecraft,1402826348 +143357,27402,Lovecraftian mythology,1402826349 +143357,33683,gore,1402826185 +143357,33683,horror,1402826199 +143357,33683,slasher,1402826206 +143357,35836,comedy,1402824585 +143357,40723,australia,1402826158 +143357,40723,cult film,1402826167 +143357,40723,goretastic,1402826152 +143357,40723,serial killer,1402826160 +143357,40723,tense,1402826163 +143357,46578,coming of age,1402824753 +143357,46578,dark comedy,1402824748 +143357,46578,dysfunctional family,1402824758 +143357,46578,quirky,1402824762 +143357,46578,road trip,1402824751 +143357,46578,satire,1402824761 +143357,48678,bad acting,1375193651 +143357,48678,so bad it's funny,1375193655 +143357,54259,atmospheric,1402824493 +143357,54259,comedy,1402824510 +143357,54259,fairy tale,1402824486 +143357,54259,fantasy,1402824490 +143357,54259,pirates,1402824505 +143357,54259,romance,1402824503 +143357,54503,comedy,1402824548 +143357,54503,high school,1402824552 +143357,54503,hilarious,1402824565 +143357,55280,delusion,1402824833 +143357,55280,feel-good,1402824835 +143357,55280,mental illness,1402824832 +143357,55280,small town,1402824845 +143357,55280,touching,1402824837 +143357,56174,alone in the world,1375249615 +143357,56174,post-apocalyptic,1375249621 +143357,56174,zombies,1375249626 +143357,56367,comedy,1402824708 +143357,56367,cult film,1402824700 +143357,56367,independent film,1402824716 +143357,56367,pregnancy,1402824696 +143357,56367,teen,1402824710 +143357,56367,witty,1402824712 +143357,56715,afterlife,1375193257 +143357,56715,based on a book,1375193270 +143357,56715,black comedy,1375193263 +143357,56715,cult film,1375193266 +143357,56715,dark comedy,1375193289 +143357,56715,magic realism,1375193258 +143357,56715,Nudity (Topless),1375193277 +143357,56715,quirky,1375193283 +143357,56757,cannibalism,1375250014 +143357,56757,dark comedy,1375250038 +143357,56757,serial killer,1375250019 +143357,56949,love story,1449453395 +143357,56949,romantic comedy,1449453394 +143357,57274,"""found footage""",1402825946 +143357,57274,isolation,1402825951 +143357,57274,zombies,1402825944 +143357,57368,"""found footage""",1375248633 +143357,57368,giant monster,1375248645 +143357,57368,mockumentary,1375248631 +143357,57368,shaky camera,1375248639 +143357,59727,disturbing,1402825899 +143357,59727,masked killer,1402825901 +143357,59727,serial killers,1402825892 +143357,59738,horror,1435400754 +143357,59738,mystery,1435400750 +143357,59738,thriller,1435400763 +143357,60072,action,1435400982 +143357,60072,stylish,1435400985 +143357,60941,interesting premise,1402826128 +143357,60941,serial killer,1402826125 +143357,61250,comedy,1402824013 +143357,62155,great soundtrack,1402824048 +143357,62155,Manhattan,1402824078 +143357,62155,New York City,1402824077 +143357,62155,teen,1402824241 +143357,63859,animation,1375248384 +143357,63859,dogs,1402824451 +143357,63859,talking animals,1375248379 +143357,63992,chick flick,1449453260 +143357,63992,unintentional comedy,1449453268 +143357,63992,vampires,1449453258 +143357,66097,alone in the world,1375249601 +143357,66097,alternate reality,1375249586 +143357,66097,dark fantasy,1375249593 +143357,66097,fairy tale,1375249579 +143357,66097,Fantasy,1375249590 +143357,66097,gothic,1375249582 +143357,66097,Surreal,1375249583 +143357,67255,crime,1375248696 +143357,67255,dark,1375248692 +143357,67255,investigation,1375248706 +143357,68952,horror,1375193949 +143357,68952,tongue-in-cheek,1375193955 +143357,69757,Joseph Gordon-Levitt,1375193523 +143357,69757,nonlinear,1375193532 +143357,69757,quirky,1375193507 +143357,69757,relationships,1375193513 +143357,69757,romance,1375193515 +143357,69757,Zooey Deschanel,1375193522 +143357,69784,mockumentary,1449453635 +143357,69784,satire,1449453633 +143357,70159,horror,1402826267 +143357,70159,original,1402826274 +143357,70293,cooking,1449453700 +143357,71379,bad acting,1402825855 +143357,71379,psychological thriller,1402825851 +143357,72737,Disney,1449452991 +143357,72737,fairy tale,1449452995 +143357,72737,New Orleans,1449452992 +143357,74275,black comedy,1433676201 +143357,74275,character development,1433676208 +143357,74275,funny,1433676206 +143357,74275,gay,1433676199 +143357,74275,queer,1433676204 +143357,74754,cult film,1375249828 +143357,74754,so bad it's good,1375249823 +143357,76093,dragons,1375248312 +143357,79091,animation,1402824411 +143357,79091,cute,1402824424 +143357,79091,heartwarming,1402824409 +143357,79091,hilarious,1402824420 +143357,79091,quirky,1402824413 +143357,79091,space travel,1402824416 +143357,79132,alternate reality,1449453842 +143357,79132,Ellen Page,1449453850 +143357,79132,surreal,1449453854 +143357,79702,geeks,1402824112 +143357,79702,quirky,1402824103 +143357,79702,surreal,1402824097 +143357,79702,video games,1402824092 +143357,79702,visually appealing,1402824116 +143357,80549,comedy,1402824158 +143357,80549,family relationships,1402824164 +143357,80549,Gay Lead Character,1402824177 +143357,80549,sexuality,1402824170 +143357,80549,witty,1402824167 +143357,81847,fairy tale,1375248251 +143357,81847,kidnapping,1375248255 +143357,81847,musical,1375248260 +143357,83134,black comedy,1375194044 +143357,84944,animation,1402824308 +143357,84944,hallucinatory,1402824312 +143357,84944,talking animals,1402824316 +143357,84944,western,1402824363 +143357,86295,genre spoof,1402826362 +143357,86295,Self-referential,1402826367 +143357,86295,witty,1402826364 +143357,86833,depressing,1402824659 +143357,86833,offbeat,1402824654 +143357,86833,unlikeable characters,1402824642 +143357,87234,Coming Of Age,1435578133 +143357,87234,drama,1435578149 +143357,87234,First love,1435578142 +143357,87234,great soundtrack,1435578131 +143357,87234,Richard Ayoade,1435578144 +143357,87234,Teenagers,1435578161 +143357,87306,aliens,1405081279 +143357,87306,bad plot,1405081285 +143357,87306,predictable,1405081283 +143357,87306,sci-fi,1405081275 +143357,88140,based on a comic,1435500732 +143357,88140,Marvel,1435500719 +143357,88140,superhero,1435500721 +143357,88140,world war ii,1435500727 +143357,88163,comedy,1402824869 +143357,88163,dysfunctional family,1402824873 +143357,88163,romance,1402824865 +143357,88810,1960s,1449453381 +143357,88810,historical,1449453369 +143357,88810,southern US,1449453382 +143357,89030,Doesn't take itself seriously,1402823718 +143357,89030,high school,1402823810 +143357,89030,pointless,1402823806 +143357,91500,drama,1375249693 +143357,91500,dystopia,1375249687 +143357,91500,thriller,1375249694 +143357,91658,hacking,1449453108 +143357,91658,mystery,1449453109 +143357,91658,revenge,1449453115 +143357,91658,serial killer,1449453112 +143357,91658,strong female lead,1449453122 +143357,92058,body horror,1433675882 +143357,92058,gore,1433675882 +143357,92058,serial killer,1433675882 +143357,93840,dark comedy,1375193991 +143357,93840,satire,1375193986 +143357,93840,social commentary,1375193983 +143357,93840,zombies,1375193994 +143357,94959,bittersweet,1405081404 +143357,94959,dreamlike,1405081420 +143357,94959,quirky,1405081411 +143357,94959,romance,1405081415 +143357,94959,stylized,1405081407 +143357,95088,funny,1405081238 +143357,95088,heartwarming,1405081234 +143357,95088,journalism,1405081232 +143357,95088,misfits,1405081236 +143357,95088,time travel,1405081231 +143357,95309,apocalyptic,1375193111 +143357,95309,chick flick,1375193220 +143357,95309,dark humor,1375193215 +143357,95309,road trip,1375193228 +143357,95309,sci-fi,1375193209 +143357,96610,dystopia,1402823658 +143357,96610,organized crime,1402823655 +143357,96610,time travel,1402823651 +143357,96610,visually appealing,1402823664 +143357,97913,animation,1375248210 +143357,97913,nostalgic,1375248205 +143357,97913,plot twist,1375248207 +143357,97913,video games,1375248202 +143357,99007,comedic horror,1449453149 +143357,99007,zombies,1449453155 +143357,100302,beautiful,1405081357 +143357,100302,love story,1405081355 +143357,100302,suspension of disbelief required,1405081353 +143357,100302,visually appealing,1405081360 +143357,101864,dystopia,1375249701 +143357,101864,post-apocalyptic,1375249705 +143357,102123,apocalypse,1375193030 +143357,102123,demons,1375193051 +143357,102123,hilarious,1375193037 +143357,102123,Seth Rogen,1375193046 +143357,103341,aliens,1405081192 +143357,103341,funny,1405081197 +143357,103341,satire,1405081204 +143357,103341,sci-fi,1405081205 +143357,103372,action,1435586298 +143357,103372,buddy cops,1435586282 +143357,103372,comedy,1435586294 +143357,103372,Melissa McCarthy,1435586285 +143357,103372,police,1435586287 +143357,103688,haunted house,1402826296 +143357,103688,paranormal investigators,1402826308 +143357,103688,supernatural,1402826302 +143357,104337,historical,1449453424 +143357,104337,politics,1449453435 +143357,104337,white house,1449453446 +143357,104457,black comedy,1402826458 +143357,104457,funny,1402826461 +143357,104457,horror,1402826519 +143357,104457,masked killer,1402826456 +143357,104457,slasher,1402826465 +143357,104457,smart,1402826516 +143357,104457,subversive,1402826515 +143357,106002,genocide,1405081322 +143357,106002,space,1405081324 +143357,106696,beautiful,1400372616 +143357,106696,music,1400372611 +143357,106696,sisters,1400372619 +143357,108932,breaking the fourth wall,1402824256 +143357,108932,clever,1402824259 +143357,108932,imagination,1402824267 +143357,108932,robots,1402824265 +143357,108932,stop motion,1402824262 +143357,110809,bad acting,1449453301 +143357,110809,based on a book,1449453298 +143357,110809,chick flick,1449453318 +143357,111362,based on a comic,1402823884 +143357,111362,superhero,1402823874 +143357,111362,superpowers,1402823876 +143357,111362,time travel,1402823871 +143357,111362,X-men,1402823878 +143357,112070,celebs,1435400709 +143357,112070,drama,1435400694 +143357,112070,hollywood,1435400698 +143357,112852,adventure,1435400917 +143357,112852,fantasy,1435400916 +143357,112852,fun,1435400921 +143357,112852,sci-fi,1435400918 +143357,112852,space,1435400940 +143357,112852,space opera,1435400935 +143357,114707,mystery,1435400634 +143357,114707,revenge,1435400634 +143357,114707,supernatural,1435400634 +143357,117529,adventure,1439338999 +143357,117529,Chris Pratt,1439338994 +143357,117529,dinosaurs,1439338978 +143357,117529,Experiment Gone Awry,1439338988 +143357,117529,sci-fi,1439338990 +143357,118900,female protagonist,1449453047 +143357,118900,hiking,1449453027 +143357,125916,based on a book,1433676451 +143357,125916,BDSM,1433676464 +143357,125916,drama,1433676533 +143357,125916,erotic,1433676514 +143357,134853,imaginative,1449452964 +143357,134853,Pixar,1449452979 +143379,39183,gay,1187097703 +143422,163,Action,1146428344 +143422,466,comedy,1146428339 +143480,357,To Watch,1299294566 +143480,1923,Own It,1299296475 +143480,3148,Own It,1299294904 +143480,3948,Own It,1299296455 +143480,4703,to watch,1299295676 +143480,5957,Own It,1299296079 +143480,6155,Own It,1299296029 +143480,6765,Own It,1299294652 +143480,8874,Own It,1299294600 +143480,33669,Own It,1299294447 +143480,34162,Own It,1299296484 +143480,45501,Own It,1299296014 +143480,46578,Own It,1299296403 +143480,46972,Own It,1299294880 +143480,54503,Own It,1299296465 +143480,55269,Own It,1299294851 +143480,56367,Own It,1299296443 +143480,58154,Own It,1299293538 +143480,60756,Own it,1299294738 +143480,60950,Own It,1299294768 +143480,61071,Own It,1299294458 +143480,61250,Own It,1299295071 +143480,61323,Own It,1299295861 +143480,61361,Own It,1299295483 +143480,62250,Own It,1299295585 +143480,63082,Own It,1299294940 +143480,63131,Own It,1299295394 +143480,64229,Own It,1299294522 +143480,64575,Own It,1299294486 +143480,64614,own it,1299294403 +143480,65465,Own It,1299295449 +143480,67087,Own It,1299294707 +143480,67267,Own It,1299294627 +143480,67734,Own It,1299295414 +143480,67997,Own It,1299295231 +143480,68552,Own It,1299294817 +143480,68659,Own It,1299295507 +143480,68848,Own It,1299295800 +143480,68963,Own It,1299294682 +143480,69406,Own It,1299293895 +143480,69436,Own It,1299295745 +143480,69784,Own It,1299295773 +143480,70293,Own It,1299295172 +143480,70599,Own It,1299295722 +143480,70687,Own It,1299295373 +143480,70984,Own It,1299295265 +143480,71619,Own It,1299295352 +143480,72113,Own It,1299295197 +143480,72720,Own It,1299295623 +143480,73413,Own It,1299295535 +143480,74450,Own It,1299295317 +143480,75805,Own It,1299295149 +143480,77312,Own It,1299295043 +143480,80586,Own It,1299297057 +143480,81229,To Watch,1299296570 +143529,1721,Oscar (Best Cinematography),1191119309 +143535,260,Science Fiction,1433168452 +143539,296,nonlinear,1221252894 +143539,2076,David Lynch,1221784796 +143539,4848,David Lynch,1221784873 +143539,32587,Quentin Tarantino,1221252806 +143539,56174,based on a book,1221253206 +143539,56174,zombies,1221253209 +143556,2231,gambling,1171420562 +143560,356,inspirational,1432217257 +143560,356,life story,1432217257 +143560,356,tom hanks,1432217257 +143560,858,family,1432216928 +143560,858,guilt,1432216956 +143560,858,italy,1432217059 +143560,858,management,1432216871 +143560,858,Sicily,1432217069 +143560,858,wine & food,1432217084 +143560,858,wisdom,1432216870 +143560,1225,biography,1432217491 +143560,1225,classical music,1432217479 +143560,1225,genius,1432217513 +143560,1225,inspirational,1432217506 +143560,1225,Mozart,1432217482 +143560,1225,music,1432217485 +143560,1225,true story,1432217489 +143560,1485,comedy,1432217668 +143560,1485,father-son relationship,1432217661 +143560,1485,hilarious,1432217667 +143560,1485,jim carrey,1432217657 +143560,2028,courage,1432217900 +143560,2028,drama,1432217807 +143560,2028,fellowship,1432217855 +143560,2028,Tom Hanks,1432217786 +143560,2028,World War II,1432217783 +143560,2324,emotional,1432217739 +143560,2324,father-son relationship,1432217742 +143560,2324,Italy,1432217745 +143560,2324,optimism,1432217756 +143560,2324,survival,1432217737 +143560,2324,war,1432217753 +143560,2324,World War II,1432217757 +143560,2959,Brad Pitt,1432217285 +143560,2959,psychological,1432217294 +143560,2959,psychology,1432217288 +143560,2959,surreal,1432217302 +143560,4995,biography,1432217548 +143560,4995,genius,1432217537 +143560,4995,inspirational,1432217540 +143560,4995,mental illness,1432217559 +143560,4995,psychology,1432217533 +143560,4995,Russell Crowe,1432217542 +143560,4995,true story,1432217546 +143560,48516,betrayed,1432217212 +143560,48516,Jack Nicholson,1432217197 +143560,48516,Leonardo DiCaprio,1432217200 +143560,48516,Matt Damon,1432217202 +143560,48516,organized crime,1432217204 +143560,51086,Jim Carrey,1432217446 +143560,51086,mentall illnes,1432217401 +143560,51086,obsession,1432217426 +143560,51086,psychology,1432217392 +143585,260,Boring,1437745768 +143585,260,fighting,1437745760 +143585,260,good story,1437745771 +143585,260,interesting,1437745763 +143585,96588,Funny,1437746153 +143585,138610,bad movie,1437746132 +143585,138610,genrally i dont like it,1437746132 +143585,138610,scary,1437746132 +143586,260,action,1433154559 +143586,260,scifi,1433154550 +143592,1704,Matt Damon,1211711259 +143592,1721,Kate Winslet,1211711272 +143592,1961,Dustin Hoffman,1211711267 +143596,86347,action Adventure,1308535518 +143596,86347,foreign,1308535518 +143596,86347,lighthearted,1308535518 +143605,53953,netflix,1186807916 +143607,260,sci-fi,1443636125 +143607,260,space adventure,1443636134 +143616,27822,Nudity (Topless - Notable),1163486567 +143630,150,did i see it?,1137684910 +143630,5608,good german movie,1137684892 +143630,34334,AI,1231108633 +143648,2025,lolita,1393012970 +143656,6047,bogart,1141675199 +143656,6047,film noir,1141675214 +143675,81591,twist ending,1345081096 +143678,1327,creepy singing,1401657631 +143678,1327,haunted house,1401657626 +143678,1350,antichrist,1401656567 +143678,1350,apocalypse,1401656584 +143678,1350,devil,1401656577 +143678,1350,great soundtrack,1401656603 +143678,1350,Gregory Peck,1401656608 +143678,1350,supernatural,1401656595 +143678,1653,atmospheric,1401653513 +143678,1653,beautiful,1401653511 +143678,1653,dystopia,1401653492 +143678,1653,future,1401653496 +143678,1653,genetic engineering,1401653488 +143678,1653,genetics,1401653490 +143678,1653,Jude Law,1401653521 +143678,1653,racism,1401653529 +143678,1653,thought-provoking,1401653501 +143678,1653,Uma Thurman,1401653503 +143678,2009,atmospheric,1401653718 +143678,2009,Charlton Heston,1401653703 +143678,2009,dystopia,1401653700 +143678,2009,FIGHTING THE SYSTEM,1401653705 +143678,2009,overpopulation,1401653709 +143678,2009,TOTALITARIAN STATES,1401653712 +143678,3204,frightening idea,1401656163 +143678,3204,Nazis,1401656160 +143678,4195,art deco,1401656771 +143678,4195,atmospheric,1401656767 +143678,4195,campy,1401656745 +143678,4195,cult classic,1401656743 +143678,4195,horror,1401656759 +143678,4195,over the top,1401656760 +143678,4195,revenge,1401656757 +143678,4195,Scary Movies To See on Halloween,1401656748 +143678,4195,Vincent Price,1401656755 +143678,4195,Violently silly,1401656752 +143678,4927,Criterion,1401653252 +143678,4927,dreamlike,1401653237 +143678,4927,enigmatic,1401653233 +143678,4927,Peter Weir,1401653259 +143678,4927,understated,1401653265 +143678,31921,19th century,1401656722 +143678,31921,subconscious,1401656719 +143678,31948,Antonio Mercero,1401653117 +143678,52328,psychology,1401653604 +143678,79702,quirky,1401658753 +143678,79702,stylized,1401658757 +143678,104841,beautiful,1401653666 +143678,104841,space,1401653669 +143678,104841,visually appealing,1401653672 +143679,260,have not seen it,1443813387 +143679,260,i have bad feeling about this,1443813381 +143679,260,Not my thing,1443813368 +143690,2195,comedy,1368058240 +143690,3646,comedy,1368058240 +143690,5250,comedy,1368058240 +143690,5942,comedy,1368058240 +143690,8531,comedy,1368058240 +143690,34530,comedy,1368058240 +143690,56141,Family life,1364358480 +143690,69103,France,1364358571 +143690,69103,immigration,1364358571 +143690,69103,love,1364358571 +143690,79357,storytelling,1368058271 +143690,81817,terrorism,1364358704 +143694,1913,the movie was very eerie and dreamlike,1265089975 +143703,51678,Marlon Brando,1195562379 +143705,260,good vs evil,1439773919 +143705,260,Overrated,1439773931 +143705,260,Science Fiction,1439773909 +143736,780,stupid,1140104788 +143736,1234,positive,1140104829 +143736,8961,great,1140105765 +143736,32469,great fun,1140104875 +143740,50064,R,1204782171 +143748,10,007 movies are bad.,1359142828 +143748,32,bruce willis,1365639341 +143748,32,ending,1365639341 +143748,32,jeffrey,1365639341 +143748,32,music,1365639355 +143748,32,scenario,1365639341 +143748,47,actually the ending was obvius,1359252271 +143748,47,generally like the movie because of actors and crimes,1359252271 +143748,47,the morgan freeman leaving non-sense,1359252271 +143748,153,Actor's and amateurism,1359143126 +143748,153,Jim Carrey,1359143126 +143748,296,conversations between vincent and jules,1360204518 +143748,296,Jules,1360204518 +143748,296,the part where bruce willis' story told.,1360204518 +143748,296,vincent,1360204518 +143748,393,everything is bad about this movie.,1359143189 +143748,527,liam neeson,1359169496 +143748,527,ralph fiennes' acting,1359169496 +143748,527,too slow,1359169496 +143748,541,atmosphere,1381721523 +143748,541,ending line,1381721523 +143748,541,slowness,1381721523 +143748,541,soundtrack,1381721523 +143748,541,the main character questionable,1381721523 +143748,541,unneseccary scenes,1381721523 +143748,555,christopher walken and dennis hopper scene,1365430444 +143748,555,ending.,1365430412 +143748,555,gary oldman's acting.,1365430444 +143748,555,genrally i dont like it,1365430412 +143748,608,acting,1365294056 +143748,608,last scene,1365294045 +143748,608,murders,1365294056 +143748,1466,al pacino,1383349926 +143748,1466,johnny depp,1383349926 +143748,1466,not sure about ending it was so sudden,1383350015 +143748,1466,reality on ending,1383350004 +143748,1466,some unnecessary family scenes,1383349926 +143748,1466,wise guys,1383349926 +143748,1918,enough with the same ' lethal weapon' movies over and over again.,1359143237 +143748,3098,boring,1387243587 +143748,5364,everything else,1359143294 +143748,5364,Nudity (Topless),1359143294 +143748,5364,sex scenes,1359143294 +143748,6870,i get angry sad and confused about ending but it was good.,1359684646 +143748,8985,this movie shouldn't have been filmed.,1359143050 +143748,51540,ending was good,1359265189 +143748,51540,generally like the movie,1359265189 +143748,51540,mark buffalo,1359265189 +143748,51540,not too bad but rdjr ' s character was got little under my expectations.,1359265189 +143748,67295,easily confused with other movie(s) (title),1439727363 +143748,68157,brad pitt's texas accent was just ridiculous,1359752955 +143748,68157,the film is all about raging jew revenge.,1359752955 +143748,68157,waltz's acting was ok.,1359752955 +143748,96079,1 v 1 with some other spy,1359086584 +143748,96079,boring,1359086336 +143748,96079,classic hollywood bullshit about bad guy talks too much when his about to shoot someone instead of just shoot him.,1359086555 +143748,96079,motorcycle chase,1359086584 +143748,96079,the way of presenting Turkey,1359086422 +143748,96079,they are always talking,1359086336 +143748,99114,first half of the movie,1359085866 +143748,99114,leonard DiCaprio's acting,1359085866 +143748,99114,opening song,1359085902 +143748,99114,songs,1359085798 +143748,99114,that hollywood blow everything up and one guy vs all army thing.,1359085798 +143748,99114,waltz's character was same with his inglourious basterds character.,1359753061 +143748,102481,cast,1382232021 +143748,102481,product placement,1382232008 +143764,593,drama,1430945674 +143764,593,gothic,1430945688 +143764,593,Horror,1430945661 +143764,593,investigation,1430945670 +143764,593,psychological,1430945659 +143764,593,suspense,1430945653 +143764,593,violent,1430945664 +143764,1097,aliens,1430945383 +143764,1097,classic,1430945398 +143764,1097,Steven Spielberg,1430945386 +143764,2005,1980s,1430945304 +143764,2005,adventure,1430945299 +143764,2005,friendship,1430945300 +143764,2005,pirates,1430945297 +143764,2005,treasure,1430945308 +143764,2005,treasure hunt,1430945305 +143764,2167,effects,1430945206 +143764,2167,vampires,1430945202 +143764,2167,Wesley Snipes,1430945209 +143764,2671,British,1430944902 +143764,2671,England,1430944898 +143764,2671,funny,1430944900 +143764,2671,Hugh Grant,1430944909 +143764,2671,Julia Roberts,1430944905 +143764,2671,romance,1430944904 +143764,2867,vampires,1430944665 +143764,6270,Akira Kurosawa,1430942652 +143764,6270,Japan,1430942657 +143764,6270,multiple storylines,1430942665 +143764,6874,kung fu,1430944947 +143764,6874,martial arts,1430944968 +143764,6874,revenge,1430944963 +143764,6874,tarantino,1430944954 +143764,6874,Uma Thurman,1430944967 +143764,6874,violence,1430944945 +143764,6874,violent,1430944958 +143764,7438,kung fu,1430945010 +143764,7438,Quentin Tarantino,1430945001 +143764,8368,Magic,1430942491 +143764,8368,witch,1430942509 +143764,8368,Wizards,1430942514 +143764,8961,Adventure,1430945620 +143764,8961,animation,1430945606 +143764,8961,funny,1430945594 +143764,8961,Pixar,1430945609 +143764,8961,super-hero,1430945612 +143764,8961,superhero,1430945592 +143764,26413,Jackie Chan,1430945062 +143764,26413,kung fu,1430945040 +143764,26413,Woo-ping Yuen,1430945042 +143764,33493,action,1430942748 +143764,33493,dark,1430942733 +143764,33493,Ewan McGregor,1430942725 +143764,33493,robots,1430942754 +143764,33493,Star Wars,1430942757 +143764,39183,emotional,1430945780 +143764,39183,gay,1430945817 +143764,39183,Gay Cowboy,1430945794 +143764,39183,gay romance,1430945850 +143764,39183,Heath Ledger,1430945785 +143764,39183,homosexuality,1430945781 +143764,39183,Jake Gyllenhaal,1430945788 +143764,39183,love,1430945821 +143764,39183,music,1430945799 +143764,39183,Nudity (Topless - Notable),1430945833 +143764,39183,romance,1430945796 +143764,39183,sad,1430945846 +143764,39183,Tragedy,1430945836 +143764,56174,horror,1430945245 +143764,56174,last man on earth,1430945235 +143764,56174,loneliness,1430945240 +143764,56174,post-apocalyptic,1430945227 +143764,56174,survival,1430945233 +143764,56174,zombies,1430945225 +143764,68319,action,1430945758 +143764,68319,hugh jackman,1430945733 +143764,68319,Marvel,1430945741 +143764,68319,Ryan Reynolds,1430945740 +143764,68319,superhero,1430945732 +143764,68319,too many characters,1430945750 +143764,68358,adventure,1430942900 +143764,68358,far future,1430942879 +143764,68358,sci fi,1430942882 +143764,68358,spock,1430942886 +143764,68358,Star Trek,1430942903 +143764,68358,teleportation,1430942876 +143764,68358,Zachary Quinto,1430942893 +143764,70286,aliens,1430944721 +143764,70286,thriller,1430944744 +143764,70286,transformation,1430944734 +143764,70286,violence,1430944726 +143764,70286,weapons,1430944730 +143764,72998,aliens,1430946529 +143764,72998,beautiful scenery,1430946535 +143764,72998,cgi,1430946533 +143764,72998,environmental,1430946522 +143764,72998,futuristic,1430946517 +143764,72998,James Cameron,1430946514 +143764,72998,long,1430946549 +143764,72998,military,1430946519 +143764,72998,Sigourney Weaver,1430946559 +143764,88405,comedy,1430944852 +143764,88405,funny,1430944833 +143764,88405,Justin Timberlake,1430944831 +143764,88405,love story,1430944843 +143764,88405,New York City,1430944841 +143764,94777,funny,1430945432 +143764,94777,time travel,1430945429 +143764,94777,Will Smith,1430945435 +143764,95510,Andrew Garfield,1430942991 +143764,95510,special effects,1430942979 +143764,95510,Spider-Man,1430942989 +143764,95510,superhero,1430942986 +143764,110102,Captain America,1430942955 +143764,110102,Chris Evans,1430942950 +143764,110102,conspiracy,1430942962 +143764,110102,Nazis,1430942959 +143764,110102,Scarlett Johansson,1430942952 +143764,110102,strong woman,1430942970 +143764,111362,Hugh Jackman,1430942920 +143764,111362,Marvel,1430942924 +143764,111362,mutants,1430942930 +143764,111362,superhero,1430942923 +143764,111362,superpowers,1430942928 +143764,111362,time travel,1430942934 +143764,111362,X-men,1430942917 +143764,112852,aliens,1430942328 +143764,112852,characters with individual goals,1430942340 +143764,112852,fun,1430942335 +143764,112852,Great Visuals,1430942329 +143764,112852,Marvel,1430942321 +143764,116797,Alan Turing,1430945885 +143764,116797,code breaking,1430945902 +143764,116797,Computers,1430945903 +143764,116797,cryptography,1430945896 +143764,116797,genius,1430945894 +143764,116797,informatics,1430945898 +143764,116797,World War II,1430945888 +143779,260,space,1440432347 +143781,260,adventure,1437965901 +143781,260,oldie but goodie,1437965897 +143783,38886,Wonderful writing and Jeff Daniels is wonderful!,1149524568 +143797,3578,action,1323826920 +143797,6333,sci-fi,1323826931 +143797,34162,comedy,1323826871 +143806,293,Redemption,1440542206 +143806,858,S,1440541708 +143806,64614,solidarity,1440542043 +143807,260,operatic,1438817102 +143807,260,thrilling,1438817097 +143822,95159,Catholicism,1441205122 +143822,95159,coming of age,1441205089 +143822,95159,friendship between boys,1441205098 +143831,50851,documentary,1449156371 +143831,62374,cia,1446585415 +143831,62374,espionage,1446585422 +143831,62374,middle east,1446585411 +143831,140715,music culture,1449155727 +143831,140715,true story,1449155731 +143831,140715,west coast rap,1449155719 +143840,260,sci-fi,1138528205 +143840,300,TV,1138528052 +143840,457,tv,1138528164 +143840,1036,John McTiernan,1138528204 +143840,1090,action,1138528191 +143840,1090,Oliver Stone,1138528198 +143840,1090,war,1138528195 +143840,3681,action,1138528219 +143840,3681,Sergio Leone,1138528201 +143843,3225,Awful Awards,1138073528 +143843,3275,Willem DaFoe FTW!,1137815088 +143843,3942,Worst movie ever!,1137815142 +143855,260,adventure,1436634248 +143855,260,space,1436634227 +143857,1500,funny,1139712861 +143857,2599,very funny,1139712875 +143874,110,stirring,1138300387 +143874,784,goofy,1138300342 +143874,1653,realistic sci/fi,1138300322 +143875,260,fantasy,1430675232 +143875,260,space,1430675227 +143884,3150,Nudity (Full Frontal - Notable),1178831671 +143884,107406,poor plot,1420218518 +143884,107406,post-apocalyptic,1420218486 +143928,260,father-son relationship,1433612818 +143928,260,lightsabers,1433612811 +143928,260,space adventure,1433612799 +143932,4878,Drew Barrymore,1244248282 +143932,4878,mindfuck,1244248293 +143932,66934,joss whedon,1244248331 +143932,66934,Neil Patrick Harris,1244248334 +143932,66934,too short,1244248345 +143932,67087,Jason Segel,1244248187 +143932,67087,Paul Rudd,1244248190 +143932,71535,Woody Harrelson,1255308622 +143932,71535,zombies,1255308628 +143947,260,have not seen it,1441711291 +143947,3578,ancient Rome,1441711792 +143947,135887,Funny,1441711637 +143948,8207,intrigue,1379861575 +143948,8207,Southern Europe,1379861562 +143948,8207,suspense,1379861508 +143948,8207,tense,1379861512 +143967,260,sci-fi,1442709979 +143967,260,space western,1442709970 +143983,2959,super interesting,1137627328 +143983,7147,May need to see again,1137613425 +144000,3894,drama,1426080828 +144000,70432,cold war,1421395890 +144000,70432,drama,1421395890 +144000,70432,politics,1421395890 +144000,114662,Propaganda,1428691393 +144012,8638,great dialogue,1234475782 +144014,93270,Nudity (Topless),1446240288 +144014,111113,college,1446240016 +144014,111113,crude humor,1446240012 +144014,118874,nudity (topless),1446240167 +144024,1438,funny,1186673433 +144024,1587,Barbarian,1186673420 +144024,1883,atmospheric,1186673409 +144024,2405,action,1186673486 +144024,2478,Amigos,1186673389 +144024,2872,History,1186673448 +144024,2953,family,1186673486 +144024,4367,History,1186673485 +144024,6218,footall,1186673401 +144024,6870,Drama,1186673484 +144035,97,french,1163444987 +144035,296,Tarantino,1163444887 +144035,750,classic,1163444811 +144035,750,Stanley Kubrick,1163444813 +144035,778,drugs,1163444804 +144035,1089,Tarantino,1163444912 +144035,1209,Sergio Leone,1163445048 +144035,1209,spaghetti western,1163445043 +144035,1921,Aronofski,1163445068 +144035,2542,British,1163445112 +144035,2947,james bond,1163445202 +144035,2951,Sergio Leone,1163445186 +144035,2951,spaghetti western,1163445188 +144035,3266,belgian,1163454620 +144035,4235,Inarritu,1163445158 +144035,4235,multiple storylines,1163445160 +144035,5669,documentary,1163445204 +144035,6377,animation,1163445192 +144035,6377,Pixar,1163445193 +144035,7124,documentary,1163444958 +144035,7124,drugs,1163444958 +144035,7371,artsy,1163445123 +144035,7371,Lars von Trier,1163445121 +144035,7438,Tarantino,1163445116 +144035,8360,animation,1163445163 +144035,8958,biopic,1163445255 +144035,8958,music,1163445325 +144035,26294,Sergio Leone,1163445172 +144035,26294,Spaghetti Western,1163445012 +144035,30812,biopic,1163445127 +144035,40819,biopic,1163445294 +144035,40819,music,1163445277 +144035,44195,dark humor,1163454519 +144035,44199,bank robbery,1163445183 +144064,1356,Patrick Stewart,1168500759 +144064,2763,Pierce Brosnan,1168030788 +144064,7153,fantasy,1168212725 +144064,7153,Peter Jackson,1168029740 +144064,8783,Joaquin Phoenix,1168029536 +144064,8783,M. Night Shyamalan,1168029532 +144064,8970,Johnny Depp,1168029116 +144069,260,classic,1436499822 +144069,260,space,1436499829 +144069,134853,clever,1436502186 +144069,134853,hillarious,1436502186 +144069,134853,psychology,1436502186 +144081,3476,occult,1225533007 +144081,37720,exorcism,1225492486 +144081,37720,occult,1225492486 +144089,32,time travel,1137687580 +144089,1917,meteorite,1137686760 +144089,2231,poker,1137687691 +144089,2571,bullet time,1137686840 +144128,1,first cgi film,1157093415 +144128,318,awesome!,1157093479 +144128,344,classic Carrey,1157093750 +144128,480,amazing cgi,1157093617 +144128,2012,waste of celluloid,1157093194 +144128,6539,fun but overrated,1157093984 +144128,45722,better than original,1157094685 +144131,73323,based on a book,1290482910 +144131,90057,Bad ending,1405775858 +144131,106920,challenging,1405775997 +144131,106920,phylosophycal,1405775997 +144146,1663,military,1163877499 +144188,260,oldie but goodie,1431330303 +144188,133347,atmospheric,1431346950 +144188,133347,drama,1431346950 +144188,133347,family,1431346950 +144188,133347,life lessons,1431346950 +144211,296,Black comedy,1440272652 +144211,296,cult film,1440272664 +144211,296,dark comedy,1440272649 +144211,296,drugs,1440272668 +144211,3556,adolescence,1440272982 +144211,3556,dreamlike,1440272977 +144211,3556,sofia coppola,1440273013 +144211,3556,visually appealing,1440272975 +144211,100185,Sean Baker,1440272596 +144213,318,inspirational,1441426256 +144213,318,prison escape,1441426296 +144213,318,sexual violence,1441426417 +144213,1193,Escape,1441426555 +144213,1193,Friendship,1441426491 +144213,1193,mental hospital,1441426479 +144213,1193,sad ending,1441426451 +144213,3408,Inspiring,1441426637 +144213,3408,strong female lead,1441426656 +144226,260,classic sci-fi,1443153519 +144226,260,nerdy,1443153527 +144233,4308,6565858tfkjfk,1175783832 +144233,33722,TAG,1175781920 +144243,2918,comedy,1229714180 +144252,3565,Natalie Portman,1200960883 +144252,3619,Michelle Pfeiffer,1200960671 +144252,3684,Michelle Pfeiffer,1200961574 +144252,8784,Natalie Portman,1200960899 +144252,8981,Natalie Portman,1200960916 +144252,44191,Natalie Portman,1200960930 +144258,111384,slow pace,1410869407 +144264,58998,comedy,1306260926 +144264,58998,hilarious,1306260928 +144264,58998,Paul Rudd,1306260922 +144264,66665,Jeff Daniels,1306260745 +144264,66665,philosophical,1306260874 +144264,66665,witty,1306260879 +144264,67087,Jason Segel,1306260994 +144264,67087,Paul Rudd,1306260998 +144264,67087,Rashida Jones,1306260999 +144264,81834,magic,1305572521 +144271,954,AFI 100,1293308404 +144271,954,disturbing,1293308425 +144271,954,FIGHTING THE SYSTEM,1293308412 +144271,954,Heartwarming,1293308397 +144271,954,humorous,1293308408 +144271,954,imdb top 250,1293308418 +144271,954,politics,1293308393 +144271,1213,crime,1283123273 +144271,1213,imdb top 250,1283123270 +144271,1213,Martin Scorsese,1283123253 +144271,1213,narrated,1283123288 +144271,1213,organized crime,1283123257 +144271,1213,Oscar (Best Supporting Actor),1283123267 +144271,1213,Robert De Niro,1283123263 +144271,1213,Samuel L. Jackson,1283123282 +144271,1213,violence,1283123284 +144271,1784,Jack Nicholson,1284427344 +144271,1784,Oscar (Best Actor),1284427351 +144271,2318,Philip Seymour Hoffman,1286119242 +144271,3100,Oscar (Best Cinematography),1284427480 +144271,3181,Worst movie ever!,1320723385 +144276,260,sci-fi,1436796031 +144392,93297,military,1420133715 +144392,93297,realism,1420133715 +144392,93297,special forces,1420133715 +144402,47,biblical,1452547517 +144402,47,brad pitt,1452547557 +144402,47,crime,1452547527 +144402,47,David Fincher,1452547562 +144402,47,great ending,1452547531 +144402,47,Gwyneth Paltrow,1452547553 +144402,47,imdb top 250,1452547550 +144402,47,investigation,1452547501 +144402,47,Kevin Spacey,1452547554 +144402,47,morgan freeman,1452547543 +144402,47,mystery,1452547511 +144402,47,powerful ending,1452547499 +144402,47,psychological,1452547520 +144402,47,serial killer,1452547493 +144402,47,thriller,1452547505 +144402,47,twist ending,1452547495 +144402,165,bruce willis,1452548016 +144402,165,plot point:solving riddles/puzzles,1452548027 +144402,165,Samuel L. Jackson,1452548018 +144402,480,adventure,1452547811 +144402,480,based on a book,1452547819 +144402,480,children,1452547836 +144402,480,Dinosaurs,1452547808 +144402,480,family,1452547839 +144402,480,genetics,1452547815 +144402,480,John Williams,1452547823 +144402,480,Laura Dern,1452547826 +144402,480,Michael Crichton,1452547834 +144402,480,Oscar (Best Effects - Visual Effects),1452547832 +144402,480,Richard Attenborough,1452547825 +144402,480,Sam Neill,1452547831 +144402,480,sci-fi,1452547813 +144402,480,special effects,1452547828 +144402,480,Steven Spielberg,1452547810 +144402,480,Suspense,1452547842 +144402,593,Anthony Hopkins,1452547596 +144402,593,classic,1452547646 +144402,593,crime,1452547644 +144402,593,good acting,1452547633 +144402,593,great acting,1452547605 +144402,593,Hannibal Lecter,1452547639 +144402,593,imdb top 250,1452547627 +144402,593,Jodie Foster,1452547584 +144402,593,mental illness,1452547590 +144402,593,Oscar (Best Actor),1452547614 +144402,593,Oscar (Best Actress),1452547617 +144402,593,Oscar (Best Directing),1452547611 +144402,593,Oscar (Best Picture),1452547609 +144402,593,psychology,1452547598 +144402,593,psychothriller,1452547602 +144402,593,serial killer,1452547594 +144402,593,strong female lead,1452547625 +144402,593,suspense,1452547600 +144402,718,funny,1452548089 +144402,718,Jean Reno,1452548094 +144402,718,time travel,1452548099 +144402,858,based on a book,1452548423 +144402,858,Mafia,1452548408 +144402,858,robert de niro,1452548404 +144402,1527,Bruce Willis,1452547200 +144402,1527,dystopia,1452547225 +144402,1527,dystopic future,1452547204 +144402,1527,Gary Oldman,1452547207 +144402,1527,humorous,1452547216 +144402,1527,satirical,1452547227 +144402,1527,sci-fi,1452547201 +144402,2011,future,1452547035 +144402,2011,Michael J. Fox,1452547024 +144402,2011,sci-fi,1452547042 +144402,2011,sequel,1452547038 +144402,2011,time travel,1452547013 +144402,2696,comedy,1452548116 +144402,2696,French,1452548118 +144402,2696,funny,1452548115 +144402,2916,alternate reality,1452547316 +144402,2916,cyberpunk,1452547319 +144402,2916,dystopia,1452547312 +144402,2916,Philip K. Dick,1452547295 +144402,2916,Sci Fi,1452547302 +144402,2916,sci-fi,1452547314 +144402,4226,cerebral,1452548005 +144402,4226,great ending,1452548002 +144402,4226,twist ending,1452547984 +144402,8644,dystopia,1452547398 +144402,8644,futuristic,1452547399 +144402,8644,Isaac Asimov,1452547405 +144402,8644,robots,1452547395 +144402,8644,sci-fi,1452547396 +144402,8914,complicated plot,1452547055 +144402,8914,low budget,1452547063 +144402,8914,mindfuck,1452547051 +144402,8914,slow,1452547070 +144402,8914,time travel,1452547050 +144402,60408,Dany Boon,1452548146 +144402,60408,stupid jokes,1452548165 +144402,72998,beautiful scenery,1452547919 +144402,72998,cgi,1452547914 +144402,72998,futuristic,1452547904 +144402,72998,graphic design,1452547920 +144402,72998,sci-fi,1452547902 +144402,72998,too long,1452547910 +144402,72998,visually stunning,1452547906 +144402,88744,action,1452547862 +144402,88744,cgi,1452547868 +144402,88744,computer animation,1452547866 +144402,88744,genetics,1452547854 +144402,88744,sci-fi,1452547860 +144402,88744,special effects,1452547864 +144402,88744,stereotyped characters,1452547878 +144402,88744,thought-provoking,1452547859 +144402,94864,bad science,1452547941 +144402,94864,character motivation,1452547934 +144402,94864,Charlize Theron,1452547952 +144402,94864,dialogue,1452547938 +144402,94864,Michael Fassbender,1452547954 +144402,94864,plot hole,1452547936 +144402,94864,plot holes,1452547945 +144402,94864,predictable,1452547931 +144402,94864,pseudo-philosophical,1452547948 +144402,94864,religion,1452547932 +144402,94864,religious overtones,1452547939 +144402,94864,scifi,1452547957 +144402,94864,sequel bait,1452547929 +144402,94864,space travel,1452547959 +144402,95875,bad remake,1452547472 +144402,95875,Jessica Biel,1452547457 +144402,103228,bad acting,1452547256 +144402,103228,giant robots,1452547248 +144402,103228,ridiculous,1452547251 +144402,103228,robots,1452547274 +144402,103228,romance,1452547268 +144402,103228,sci-fi,1452547259 +144402,104841,bad science,1452547154 +144402,104841,beautiful,1452547178 +144402,104841,cheesy,1452547185 +144402,104841,George Clooney,1452547176 +144402,104841,religion,1452547147 +144402,104841,sandra bullock,1452547170 +144402,104841,sci-fi,1452547156 +144402,104841,space,1452547145 +144402,104841,visually appealing,1452547165 +144402,111364,gradual tension,1452547693 +144402,114935,mindfuck,1452547976 +144402,114935,time travel,1452547975 +144402,117529,action,1452547789 +144402,117529,adventure,1452547766 +144402,117529,Bryce Dallas Howard,1452547753 +144402,117529,Chris Pratt,1452547732 +144402,117529,cliche,1452547723 +144402,117529,Colin Trevorrow,1452547773 +144402,117529,dinosaurs,1452547718 +144402,117529,evil military guy,1452547746 +144402,117529,exciting,1452547730 +144402,117529,Experiment Gone Awry,1452547769 +144402,117529,franchise,1452547792 +144402,117529,Irrfan Khan,1452547750 +144402,117529,island,1452547787 +144402,117529,predictable,1452547759 +144402,117529,sci-fi,1452547733 +144404,7043,avant garde,1452570287 +144404,7043,black and white,1452570294 +144404,7043,french,1452570282 +144410,356,inspiring,1420150336 +144410,356,robert zemeckis,1420150336 +144410,356,tom hanks,1420150336 +144410,593,brilliant,1421002772 +144410,593,cult film,1421002772 +144410,593,thriller,1421002772 +144410,8914,clever,1419711384 +144410,8914,Complicated,1419711416 +144410,8914,complicated plot,1419711381 +144410,8914,indie,1419711404 +144410,8914,intellectual,1419711391 +144410,8914,intelligent,1419711403 +144410,8914,low budget,1419711389 +144410,8914,mindfuck,1419711379 +144410,8914,paradox,1419711406 +144410,8914,physics,1419711408 +144410,8914,Sci-Fi,1419711387 +144410,8914,science,1419711394 +144410,8914,thought-provoking,1419711415 +144410,8914,time travel,1419711376 +144410,90471,drugs,1419711188 +144410,90471,lawyers,1419711190 +144410,99917,artistic,1419711258 +144410,99917,Beautiful,1419711264 +144410,99917,emotionally captivating,1420150949 +144410,99917,sci-fi,1419711260 +144410,99917,Shane Carruth,1420150953 +144410,99917,strong female lead,1420150951 +144410,118202,climate change,1417733664 +144410,118202,Documentary,1417733564 +144410,118202,Informative,1417733617 +144410,134130,Improvisation,1450975606 +144410,134130,optimistic,1450975586 +144410,134130,sci-fi,1450975597 +144410,134130,Space,1450975596 +144414,780,black man,1154825750 +144414,780,sci-fi,1154825750 +144414,780,will smith,1154825750 +144414,3114,animation,1154825704 +144414,3114,computer animation,1154825704 +144414,3996,badly dubbed,1154825702 +144414,3996,meaty,1154825702 +144414,3996,shit,1154825702 +144477,260,classic sci-fi,1441216020 +144477,260,cult classic,1441216074 +144477,260,harrison ford,1441216061 +144495,73501,puupaa,1445156593 +144495,128358,uuno,1445156540 +144542,2028,World War II,1434196046 +144542,2571,science fiction,1434188583 +144542,4993,Oscar,1434188613 +144542,7153,fantasy,1434196065 +144548,356,gump,1425782717 +144548,356,run forrest,1425782717 +144548,356,tom hanks,1425782717 +144556,866,lesbian,1187629314 +144556,2428,high school,1187629389 +144556,2428,horror,1187629389 +144556,3785,parody,1187629248 +144556,4623,baseball,1187629485 +144556,4848,Lynch,1187629304 +144556,5613,Theater,1187630224 +144556,5618,Japanese animation,1187629291 +144556,6881,family,1187630081 +144556,6881,neighbours,1187630082 +144556,6881,New York,1187630082 +144556,6881,solidarity,1187630082 +144556,7387,zombies,1187629940 +144556,8012,Kitano,1187630477 +144556,8012,road movie,1187630477 +144556,8361,catastrophe,1187629515 +144556,8361,climate change,1187629515 +144556,8798,atmospheric,1187629356 +144556,30810,humor,1187629557 +144556,30810,nonsensical,1187629557 +144556,37380,video game adaptation,1187630263 +144556,37380,videogame,1187630263 +144556,40870,gay,1187630623 +144556,45720,fashion,1187630006 +144556,54272,simpsons,1187630333 +144578,89864,heartbreaking,1441919863 +144578,112183,meta,1438990278 +144578,112183,satire,1438990274 +144578,117877,Beautiful,1442605127 +144578,117877,Journey,1442605114 +144578,117877,Rich Colours,1442605124 +144594,92259,funny,1437897638 +144594,92259,surprisingly good,1437897638 +144594,92259,touching,1437897638 +144595,10,007,1244207159 +144595,10,007 (series),1244207160 +144595,10,action,1244207164 +144595,10,espionage,1244207169 +144595,10,gadgets,1244207172 +144595,10,James Bond,1244207167 +144595,10,Judi Dench,1244207179 +144595,10,Pierce Brosnan,1244207181 +144595,10,secret service,1244207184 +144595,10,spies,1244207188 +144595,10,violence,1244207190 +144595,47,Brad Pitt,1244206548 +144595,47,investigation,1244206510 +144595,47,Kevin Spacey,1244206546 +144595,47,Morgan Freeman,1244206550 +144595,47,powerful ending,1244206537 +144595,47,psychology,1244206531 +144595,47,serial killer,1244206524 +144595,47,twist ending,1244206527 +144595,47,twists & turns,1244206530 +144595,47,violent,1244206533 +144595,50,complicated,1281482539 +144595,50,twist ending,1281482534 +144595,762,Demi Moore,1281483223 +144595,762,Nudity (Topless - Notable),1281483190 +144595,762,Nudity (Topless),1281483196 +144595,762,Steven Spielberg,1281483211 +144595,762,Ving Rhames,1281483219 +144595,762,watched it for the boobs,1281483194 +144595,780,action,1244207098 +144595,780,alien invasion,1244207100 +144595,780,aliens,1244207102 +144595,780,Area 51,1244207137 +144595,780,conspiracy theory,1244207152 +144595,780,disaster,1244207104 +144595,780,end of the world,1244207107 +144595,780,humorous,1244207112 +144595,780,sci-fi,1244207115 +144595,780,tense,1244207128 +144595,780,US President,1244207118 +144595,780,war,1244207124 +144595,780,Will Smith,1244207122 +144595,2273,Chris Tucker,1244206621 +144595,2273,Jackie Chan,1244206625 +144595,2273,kung fu,1244206627 +144595,2273,martial arts,1244206631 +144595,2273,surprisingly funny,1244206634 +144595,2571,Action,1244206996 +144595,2571,artificial intelligence,1244207001 +144595,2571,atmospheric,1244207002 +144595,2571,Carrie-Anne Moss,1244207070 +144595,2571,cult film,1244207004 +144595,2571,cyberpunk,1244207007 +144595,2571,epic,1244207084 +144595,2571,hackers,1244207011 +144595,2571,martial arts,1244207014 +144595,2571,philosophy,1244207027 +144595,2571,post apocalyptic,1244207029 +144595,2571,sci-fi,1244207031 +144595,2571,surreal,1244207038 +144595,2571,virtual reality,1244207035 +144595,3578,action,1244207207 +144595,3578,easily confused with other movie(s) (title),1244207213 +144595,3578,history,1244207219 +144595,3578,Ridley Scott,1244207202 +144595,3578,sword fight,1244207227 +144595,3578,violence,1244207225 +144595,3578,violent,1244207232 +144595,3623,action,1244206951 +144595,3623,espionage,1244206955 +144595,3623,Great Actions,1244206964 +144595,3623,John Woo,1244206962 +144595,3623,Lame ending,1244206971 +144595,3623,Tom Cruise,1244206983 +144595,3623,Ving Rhames,1244206985 +144595,4344,action,1277168129 +144595,4344,DVD:alternate endings,1277168122 +144595,4344,hacking,1277168120 +144595,4344,Nudity (Topless - Notable),1277168112 +144595,4344,Nudity (Topless),1277168108 +144595,4701,action,1244206575 +144595,4701,Chris Tucker,1244206571 +144595,4701,funny,1244206579 +144595,4701,Jackie Chan,1244206574 +144595,4701,kung fu,1244206582 +144595,4701,martial arts,1244206584 +144595,7318,Biblical,1244206831 +144595,7318,bloody,1244206835 +144595,7318,Christianity,1244206841 +144595,7318,must see!,1244206875 +144595,7318,overrated,1244206854 +144595,7318,very well made,1244206869 +144595,7318,violent,1244206871 +144595,33493,action,1244206461 +144595,33493,fantasy,1244206470 +144595,33493,great soundtrack,1244206449 +144595,33493,sci-fi,1244206437 +144595,33493,Star Wars,1244206452 +144595,45183,action packed,1244206647 +144595,45183,Asian culture,1244206653 +144595,45183,awesome,1244206656 +144595,45183,Breathtaking choreography,1244206755 +144595,45183,elephant,1244206660 +144595,45183,elephants,1244206665 +144595,45183,extreme stunts,1244206710 +144595,45183,martial arts,1244206675 +144595,45183,Tony Jaa,1244206681 +144595,45183,violence,1244206790 +144595,45183,violent,1244206694 +144595,45186,action,1244206900 +144595,45186,better than expected,1244206894 +144595,45186,espionage,1244206903 +144595,45186,Incredible!,1244206908 +144595,45186,J.J. Abrams,1244206912 +144595,45186,spy,1244206929 +144595,45186,Tom Cruise,1244206923 +144595,45186,Ving Rhames,1244206925 +144595,53000,post-apocalyptic,1194001337 +144595,54004,"""Jessica Biel is hot like hell""",1194646083 +144595,54648,"""jackie chan"" ""chris tucker""",1201290073 +144595,54648,Chris Tucker,1242391595 +144595,54648,Jackie Chan,1242391588 +144595,54648,kung fu,1242391593 +144595,55721,BOPE,1244207245 +144595,55721,brazil,1244207248 +144595,55721,corruption,1244207249 +144595,55721,Favelas,1244207255 +144595,55721,organized crime,1244207268 +144595,55721,police corruption,1244207276 +144595,55721,poverty,1244207279 +144595,55721,rio de janeiro,1244207282 +144595,55721,special police forces,1244207290 +144595,55721,urban violence,1244207295 +144595,55721,War,1244207298 +144595,58559,action,1244207374 +144595,58559,Batman,1244207376 +144595,58559,Christian Bale,1244207378 +144595,58559,dark,1244207381 +144595,58559,Heath Ledger,1244207401 +144595,58559,Morgan Freeman,1244207404 +144595,58559,serial killer,1244207415 +144595,58559,superhero,1244207410 +144595,60069,Animation,1281482622 +144595,60069,family,1281482611 +144595,60069,inspirational,1281482615 +144595,60069,Sci-Fi,1281482604 +144595,60069,social commentary,1281482601 +144595,62081,assassination,1244207315 +144595,62081,big brother,1244207321 +144595,62081,computer controls everything,1244207328 +144595,62081,cyberterrorism,1244207336 +144595,62081,FBI pursuit,1244207340 +144595,62081,spy,1244207352 +144595,62081,surveillance,1244207355 +144595,62081,why the terrorists hate US,1244207365 +144595,71579,1960s,1268764015 +144595,71579,bad ending,1268764027 +144595,71579,England,1268763978 +144595,71579,London,1268763983 +144595,71838,antihero,1281482741 +144595,71838,ending kinda ruined it,1281482734 +144595,71838,revenge,1281482745 +144595,71838,unpredictable,1281482771 +144595,71838,violent,1281482744 +144595,72393,abduction,1278183662 +144595,72393,aliens,1278183664 +144595,72393,conspiracy theory,1278183756 +144595,72393,fake,1278183684 +144595,72393,fake documentary,1278183669 +144595,72393,hoax,1278183680 +144595,72393,Milla Jovovich,1278183689 +144595,72393,paranormal,1278183795 +144595,72393,scary,1278183715 +144595,72393,sumerian culture,1278183695 +144595,73874,fighting,1264171137 +144595,73874,Kimbo Slice,1264171137 +144595,73876,good fights,1278184644 +144595,74156,conspiracy,1278184147 +144595,74156,corporate cover-up,1278184121 +144595,74156,cover up,1278184131 +144595,74156,Mel Gibson,1278184071 +144595,74156,nuclear weapons,1278184201 +144595,74156,secrets,1278184088 +144595,74530,harry potter wannabe,1278184500 +144595,74795,CIA Agent,1278184422 +144595,74795,conspiracy,1278184272 +144595,74795,Corrupt Government,1278184383 +144595,74795,Deception,1278184339 +144595,74795,Espionage,1278184401 +144595,74795,Iraq War,1278184290 +144595,74795,Matt Damon,1278184283 +144595,74795,U.S. Army,1278184369 +144595,74795,Unjustified Invasion,1278184392 +144595,74795,Weapon of Mass Destruction,1278184331 +144595,74851,too much violence,1278183619 +144595,75985,biomedical ethics,1279937885 +144595,75985,twist ending,1279937870 +144595,76251,action,1281367123 +144595,76251,graphic violence,1281367131 +144595,77561,cgi,1278183868 +144595,77561,Don Cheadle,1278183871 +144595,77561,Samuel L. Jackson,1278183853 +144595,77561,Scarlett Johansson,1278183850 +144595,78218,Chaotic Neutral Character,1278970980 +144595,78218,FBI,1278970965 +144595,78218,Samuel L. Jackson,1278970941 +144595,78218,terrorism,1278970959 +144595,78218,torture,1278970948 +144595,79132,alternate reality,1281367018 +144595,79132,complicated,1281367016 +144595,79132,multiple interpretations,1281367045 +144595,79132,visually appealing,1281367055 +144600,1203,open mind,1202446172 +144600,3196,tenacity,1202446140 +144600,3359,unsung masterpiece,1202446259 +144600,3504,prophetic,1202446065 +144600,7121,Ahead of its time,1202446214 +144600,8337,Bogart,1202445902 +144600,39292,history,1202445952 +144602,26702,can't find on DVD,1314164868 +144602,26702,Disturbing and moving,1314164868 +144602,26702,surreal environment,1314164868 +144606,3793,mutants,1430598386 +144606,86332,warrior,1430598369 +144607,62,sappy,1167699447 +144607,316,guilty pleasure,1167698148 +144607,357,guilty pleasure,1167698661 +144607,508,overrated,1167699857 +144607,778,puking,1167699877 +144607,953,Jimmy Stewart,1167700612 +144607,1088,guilty pleasure,1167701421 +144607,1175,Favorites,1167701807 +144607,1211,Favorites,1167702048 +144607,1235,seen more than once,1167701954 +144607,1259,formative,1167699253 +144607,1569,useless,1167701077 +144607,1923,Jonathan Richman,1167699005 +144607,2081,guilty pleasure,1167699563 +144607,2424,enjoyed despite myself,1167701446 +144607,2470,guilty pleasure,1167700284 +144607,2572,guilty pleasure,1167700966 +144607,2671,useless,1167700007 +144607,2724,useless,1167701585 +144607,4022,enjoyed despite myself,1167698318 +144607,4025,enjoyed despite myself,1167700234 +144607,4246,guilty pleasure,1167699113 +144607,4308,enjoyed despite myself,1167699208 +144607,5618,Favorites,1167700080 +144607,6218,guilty pleasure,1167699781 +144607,6299,seen more than once,1167701940 +144607,6942,guilty pleasure,1167699640 +144607,7293,enjoyed despite myself,1167701470 +144607,8361,enjoyed despite myself,1167700727 +144607,8784,enjoyed despite myself,1167698924 +144607,8798,travesty,1167698968 +144607,30707,overrated,1167698879 +144607,30793,misbegotten,1167699381 +144607,34162,enjoyed despite myself,1167699189 +144607,39292,dianne reaves,1167700339 +144607,41566,travesty,1167698514 +144607,44199,surpsing,1167699403 +144607,48394,lush,1167698356 +144607,49272,guilty pleasure,1167698386 +144609,60684,comics,1439972303 +144609,117590,comedy,1439972260 +144609,117590,Jennifer Aniston,1439972266 +144666,112767,confusing,1429900825 +144666,112767,funny,1429900825 +144666,112767,love,1429900825 +144669,3967,ballet,1244642894 +144670,339,ambitioned,1137518124 +144670,508,Moral,1137518049 +144670,590,can see 100 times no bore at all,1137518792 +144670,912,Kitsch,1137518052 +144670,1084,movie of its time,1137518408 +144670,1227,one of the best movies ever,1137519245 +144670,1258,best horror ever seen,1137519225 +144670,1962,brillant artists,1137518578 +144670,1962,slow plot,1137518578 +144670,3825,very girlish,1137518894 +144670,4190,better not see but not so bad after all,1137518646 +144670,4881,unusual,1137518611 +144670,5602,its a bore,1137518676 +144670,5602,now idea why people like this one,1137518676 +144670,5608,frightfully good,1137518354 +144670,6422,oh so dramatic!,1137518729 +144670,6870,too constructed,1137519424 +144670,7056,good action,1137518388 +144670,7070,good music,1137518448 +144670,8364,as bad as the title,1137518543 +144670,26085,anstrengend,1137518292 +144679,4973,movie to see,1192435339 +144712,260,a touch of humor,1437223964 +144712,260,classic sci-fi,1437223819 +144712,94841,teenage runaway,1438202550 +144712,117881,great acting,1438188827 +144712,117881,moving,1438191041 +144712,139553,better than average romance drama,1438188738 +144712,139553,boxer and blind girl,1438188689 +144712,139553,gentle,1437566508 +144712,139553,heart touching romance,1438188689 +144712,139553,mesmerizingly beautiful story,1438188689 +144712,139553,subtle acting,1438188689 +144712,139553,will make you feel,1438188689 +144728,5971,Cute,1439840551 +144728,5971,Hayao Miyazaki,1439840560 +144728,5971,Studio Ghibli,1439840554 +144737,648,Action,1267922650 +144737,3527,action,1267922733 +144737,3527,Arnold Schwarzenegger,1267922731 +144737,3527,weapons,1267923900 +144737,4025,ridiculous,1269534132 +144737,59784,animation,1267521574 +144737,68858,Italy,1273518399 +144737,72998,futuristic,1267839939 +144737,72998,graphic design,1267839921 +144737,72998,James Cameron,1267839916 +144737,72998,music,1267839944 +144737,72998,predictable,1267922585 +144737,72998,visually stunning,1267922609 +144737,73344,Jacques Audiard,1272915351 +144737,73344,mafia,1272915373 +144740,24,albino,1313193534 +144740,24,special powers,1313193531 +144740,586,classic,1315167110 +144740,586,for kids,1315167085 +144740,586,nostalgia,1315167094 +144740,586,seen more than once,1315167098 +144740,586,Xmas theme(?),1315167103 +144740,780,apocalypse,1315169272 +144740,1380,fun songs,1308671278 +144740,1380,predictabile,1308671267 +144740,1961,autism,1314908233 +144740,1961,Oscar (Best Picture),1314908258 +144740,1961,psychology,1314908247 +144740,1961,Tom Cruise,1314908244 +144740,3160,great soundtrack,1314983646 +144740,3160,multiple storylines,1314983636 +144740,3160,Singing scene,1314983669 +144740,3160,Tom Cruise,1314983650 +144740,4226,complicated,1315057539 +144740,4226,narrated,1315057547 +144740,4226,twist ending,1315057564 +144740,4878,Effects,1308784861 +144740,4878,mental illness,1308784821 +144740,4878,philosophy,1308784839 +144740,4878,sci-fi,1308784827 +144740,4878,surreal,1308784831 +144740,4878,time travel,1308784833 +144740,4889,intense,1315166467 +144740,4889,predictable,1315166464 +144740,4889,unrealistic,1315166477 +144740,4896,fantasy,1342296698 +144740,4896,For children,1342296713 +144740,5450,Jake Gyllenhaal,1313535336 +144740,5450,racism,1313535353 +144740,5954,Edward Norton,1311468921 +144740,5954,powerful ending,1311468915 +144740,5954,professor,1311468943 +144740,8376,awkward,1308782695 +144740,8957,clever,1313439010 +144740,8957,mindfuck,1313439004 +144740,8957,plot holes,1313439017 +144740,8957,surprise ending,1313439006 +144740,30820,boring,1320351411 +144740,30820,honest,1320351392 +144740,30820,pedophile,1320351418 +144740,32587,Action,1320351604 +144740,32587,cars,1320351648 +144740,32587,multiple storylines,1320351596 +144740,32587,stylized,1320351593 +144740,32587,surreal,1320351638 +144740,39446,clever,1309167291 +144740,39446,not as good as the first,1309167284 +144740,40278,Jake Gyllenhaal,1315166243 +144740,40278,war,1315166256 +144740,44974,Ellen Page,1314062862 +144740,48520,Jessica Simpson,1315166980 +144740,51540,bad ending,1313879627 +144740,51540,Jake Gyllenhaal,1313879583 +144740,51540,length,1313879613 +144740,52328,effects,1313193421 +144740,52328,ending twist,1313193419 +144740,52328,sci-fi,1313193342 +144740,52328,spaceships,1313193346 +144740,53996,car chase,1313439294 +144740,53996,effects,1313439271 +144740,53996,Megan Fox,1313439288 +144740,55247,Alaska,1308784421 +144740,55247,based on a true story,1308784424 +144740,55247,bittersweet,1308784497 +144740,55247,Interaction with camera (apple part),1308784487 +144740,55247,Music,1308784426 +144740,55820,cinematography,1313438897 +144740,55820,great acting,1313438868 +144740,59387,addiction,1313699272 +144740,59387,cinematography,1313699229 +144740,59387,story-in-a-story,1313699261 +144740,59387,visually appealing,1313699266 +144740,59387,visually stunning,1447940959 +144740,60074,not as good as I expected,1311468843 +144740,60684,comic book,1342295864 +144740,60684,great soundtrack,1342295859 +144740,60684,social commentary,1342295872 +144740,63992,Colors,1311468399 +144740,63992,Emotionless,1311468396 +144740,69122,cliche,1314062585 +144740,69122,flashbacks,1314062599 +144740,69122,great soundtrack,1314062591 +144740,69122,wolf pack,1314062607 +144740,69757,artistic,1314215099 +144740,69757,cheesy,1314215111 +144740,69757,chick flick,1314215115 +144740,71379,ending,1313538537 +144740,71379,low budget,1313538514 +144740,71535,zombies,1315169807 +144740,72605,emotion,1314061492 +144740,72605,Jake Gyllenhaal,1342297171 +144740,72605,remake,1314061445 +144740,72605,slow start,1314062062 +144740,72696,Gorilla scene,1315167040 +144740,72998,effects,1331339898 +144740,72998,futuristic,1331339904 +144740,72998,military,1331339890 +144740,72998,romance,1331339892 +144740,77455,art,1314908126 +144740,77455,Banksy,1314908118 +144740,77455,betrayal,1314908159 +144740,77455,business,1314908128 +144740,77455,marketing,1314908150 +144740,78209,drug use,1314215780 +144740,78209,lame third act,1314215775 +144740,78209,music business,1314215785 +144740,78209,weak scenes,1314215773 +144740,79091,cute girls,1314216050 +144740,79091,heartwarming,1314216046 +144740,80549,PEER PRESSURE,1314908301 +144740,80549,vocabullary,1314908346 +144740,85881,Alex Shaffer,1313879914 +144740,85881,Alex Shafferž,1313879896 +144740,86332,comic book,1342296103 +144740,86332,fast plot development,1342296095 +144740,86332,no character development,1342296072 +144740,86332,predictable,1342296077 +144740,86332,Special Effects,1342296010 +144740,87869,Charlie Day,1319283765 +144740,87869,weak ending,1319283739 +144740,98809,crude humor,1359235621 +144740,98809,Tolkien,1359235628 +144761,45722,Adventure,1310334116 +144763,1907,animated,1259749902 +144763,1907,animation,1259749905 +144763,1907,Asian culture,1259749909 +144763,1907,Disney,1259749915 +144763,1907,family,1259749919 +144763,1907,great soundtrack,1259749922 +144763,1907,ninja,1259749925 +144763,1907,wholesome,1259749927 +144784,556,documentary,1231165149 +144786,70,Better first half,1359613020 +144786,70,George Clooney,1359612988 +144786,70,nudity,1359612989 +144786,70,Quentin Tarantino,1359612988 +144786,70,Robert Rodriguez,1359612988 +144786,70,strippers,1359612988 +144786,111,cult film,1401326696 +144786,111,dark,1401326696 +144786,111,psychopaths,1401326680 +144786,111,Robert De Niro,1401326680 +144786,153,Batman,1359781066 +144786,153,Jim Carrey,1359781073 +144786,153,Joel Schumacher,1359781103 +144786,153,travesty of film,1359781103 +144786,163,Antonio Banderas,1360304262 +144786,163,Robert Rodriguez,1360304316 +144786,163,shootout,1360304262 +144786,173,dystopia,1361851830 +144786,173,future,1361851830 +144786,173,Sylvester Stallone,1361851830 +144786,235,B-movie,1360642537 +144786,235,biography,1360642537 +144786,235,Ed Wood,1360642537 +144786,235,Johnny Depp,1360642537 +144786,235,Tim Burton,1360642537 +144786,235,Tim burton and Johnny Depp,1360642537 +144786,303,Leonardo DiCaprio,1359612827 +144786,303,redemption,1359612827 +144786,303,Russell Crowe,1359612827 +144786,303,Sam Raimi,1359612827 +144786,303,western,1359612827 +144786,317,Tim Allen,1360727679 +144786,367,Cameron Diaz,1359780979 +144786,367,cartoonish,1359780999 +144786,367,Jim Carrey,1359780999 +144786,367,Yellow suit,1359781013 +144786,410,dark comedy,1360303714 +144786,410,gothic,1360303714 +144786,480,based on a book,1359608277 +144786,480,dinosaurs,1359608254 +144786,480,Michael Crichton,1359608269 +144786,480,Steven Spielberg,1359608271 +144786,481,Brad Pitt,1359672796 +144786,481,dark,1359672810 +144786,481,David Duchovny,1359672799 +144786,481,Juliette Lewis,1359672801 +144786,481,photography,1359672820 +144786,481,serial killer,1359672812 +144786,481,ultra-violence,1359672814 +144786,500,Comedy,1359673266 +144786,500,cross dressing,1359673248 +144786,500,Pierce Brosnan,1359673268 +144786,500,Robin Williams,1359673260 +144786,542,stupid but funny,1361852287 +144786,551,dark,1359781482 +144786,551,halloween,1359781482 +144786,551,jack skellington,1359781442 +144786,551,stop motion,1359781459 +144786,551,Tim Burton,1359781442 +144786,553,cowboys,1359606522 +144786,553,dialogue,1359606512 +144786,553,Doc Holliday,1359606536 +144786,553,gunfight,1359606520 +144786,553,Val Kilmer,1359606514 +144786,553,western,1359606516 +144786,589,apocalyptic,1359606876 +144786,589,Arnold Schwarzenegger,1359606831 +144786,589,dystopia,1359606859 +144786,589,future,1359606859 +144786,589,time travel,1359606859 +144786,593,Anthony Hopkins,1374891338 +144786,593,cannibalism,1374891331 +144786,610,nudity,1401326598 +144786,610,ultra-violence,1401326598 +144786,674,cult film,1360643420 +144786,674,Jane Fonda,1360643420 +144786,674,Nudity,1360643420 +144786,674,sci-fi,1360643420 +144786,674,sexuality,1360643435 +144786,733,Alcatraz,1359673227 +144786,733,biological warfare,1359673235 +144786,733,Ed Harris,1359673225 +144786,733,Hans Zimmer,1359673220 +144786,733,Michael Bay,1359673222 +144786,733,Nicolas Cage,1359673216 +144786,733,San Francisco,1359673229 +144786,733,Sean Connery,1359673218 +144786,733,terrorism,1359673237 +144786,761,Skull ring,1361852223 +144786,778,Scottish,1360305198 +144786,1073,candy,1359670849 +144786,1073,Fantasy,1359670839 +144786,1073,Gene Wilder,1359670820 +144786,1073,seen more than once,1359670824 +144786,1073,the creepy tunnel,1359670860 +144786,1079,British,1359671827 +144786,1079,dark comedy,1359671830 +144786,1079,Jamie Lee Curtis,1359671822 +144786,1079,John Cleese,1359671821 +144786,1079,Michael Palin,1359671847 +144786,1079,NOTHING GOES RIGHT,1359671824 +144786,1197,Andre the Giant,1360727380 +144786,1197,Cary Elwes,1360727380 +144786,1197,fantasy,1360727380 +144786,1197,hilarious,1360727380 +144786,1197,quotable,1360727380 +144786,1197,sword fight,1360727380 +144786,1206,based on a book,1359604967 +144786,1206,cult film,1359604965 +144786,1206,disturbing,1359604956 +144786,1206,dystopia,1359604958 +144786,1206,satirical,1359604972 +144786,1206,social commentary,1359604963 +144786,1206,Stanley Kubrick,1359604960 +144786,1206,stylized,1359604973 +144786,1206,ultra-violence,1359672838 +144786,1206,violence,1359604962 +144786,1214,aliens,1359671771 +144786,1214,sci-fi,1359671763 +144786,1214,Sigourney Weaver,1359671779 +144786,1214,space,1359671765 +144786,1214,suspense,1359671768 +144786,1214,thriller,1359671762 +144786,1215,black comedy,1359672260 +144786,1215,Bruce Campbell,1359672237 +144786,1215,Cult classic,1359672225 +144786,1215,deadites,1359672245 +144786,1215,time travel,1359672252 +144786,1219,Alfred Hitchcock,1359673005 +144786,1219,black and white,1359673007 +144786,1219,classic,1359673008 +144786,1219,creepy,1359673010 +144786,1219,serial killer,1359673012 +144786,1219,thriller,1359673015 +144786,1258,bad ending,1359672992 +144786,1258,based on a book,1359672943 +144786,1258,cult film,1359672946 +144786,1258,dark,1359672954 +144786,1258,disturbing,1359672944 +144786,1258,Jack Nicholson,1359672941 +144786,1258,Stanley Kubrick,1359672934 +144786,1258,Stephen King,1359672935 +144786,1278,black and white,1359672002 +144786,1278,comedy,1359672010 +144786,1278,Gene Wilder,1359671992 +144786,1278,Mel Brooks,1359671993 +144786,1278,parody,1359672000 +144786,1278,spoof,1359671995 +144786,1321,werewolves,1359672183 +144786,1333,Alfred Hitchcock,1359673073 +144786,1333,animals,1359673074 +144786,1333,long build-up,1359673105 +144786,1342,Horror,1360643349 +144786,1342,slasher,1360643349 +144786,1343,de niro,1395976855 +144786,1343,disturbing,1395976855 +144786,1343,Juliette Lewis,1395976856 +144786,1343,stalker,1395976856 +144786,1378,comedy,1361851367 +144786,1378,Kiefer Sutherland,1361851367 +144786,1378,western,1361851367 +144786,1425,comedy,1359671914 +144786,1425,Jamie Lee Curtis,1359671891 +144786,1425,John Cleese,1359671892 +144786,1425,Michael Palin,1359671914 +144786,1425,multiple roles,1359671914 +144786,1466,Al Pacino,1401326639 +144786,1466,gangsters,1401326639 +144786,1466,Johnny Depp,1401326639 +144786,1466,mob,1401326639 +144786,1527,Gary Oldman,1359606986 +144786,1527,Milla Jovovich,1359606986 +144786,1562,Alicia Silverstone,1359781257 +144786,1562,Arnold Schwarzenegger,1359781257 +144786,1562,Batman,1359781266 +144786,1562,Chris O'Donnell,1359781256 +144786,1562,George Clooney,1359781257 +144786,1562,nipple suits,1359781257 +144786,1562,travesty of film,1359781256 +144786,1588,John Cleese,1361852181 +144786,1588,slapstick,1361852181 +144786,1690,Ron Perlman,1360727609 +144786,1732,Coen Brothers,1359672924 +144786,1732,Jeff Bridges,1359672920 +144786,1917,apocalypse,1359671744 +144786,1917,Bruce Willis,1359671736 +144786,1917,end of the world,1359671741 +144786,1923,Cameron Diaz,1359607346 +144786,1923,not funny,1359607348 +144786,1968,Brat Pack,1359671723 +144786,1968,coming of age,1359671717 +144786,1968,high school,1359671713 +144786,1968,Molly Ringwald,1359671715 +144786,2107,horror,1360643311 +144786,2107,Jamie Lee Curtis,1360643311 +144786,2107,Josh Hartnett,1360643321 +144786,2107,Michael Myers,1360643311 +144786,2107,slasher,1360643311 +144786,2107,the Shape,1360643311 +144786,2273,funny,1359781698 +144786,2273,Jackie Chan,1359781698 +144786,2273,martial arts,1359781698 +144786,2291,Depp & Burton,1359609146 +144786,2291,gothic,1359609143 +144786,2291,Johnny Depp,1359609137 +144786,2291,Tim Burton,1359609139 +144786,2291,Vincent Price,1359609141 +144786,2340,Anthony Hopkins,1360643237 +144786,2340,Brad Pitt,1360643221 +144786,2340,death,1360643236 +144786,2413,alternate endings,1374861903 +144786,2413,Christopher Lloyd,1374861903 +144786,2413,hilarious,1374861903 +144786,2413,Tim Curry,1374861903 +144786,2428,Nudity (Topless),1360643145 +144786,2428,Robert Rodriguez,1360643145 +144786,2437,gay,1359607569 +144786,2437,Gay Lead Character,1359607565 +144786,2437,Jude Law,1359607577 +144786,2437,Oscar Wilde,1359607562 +144786,2437,Stephen Fry,1359607574 +144786,2459,dark,1360643066 +144786,2459,horror,1360643034 +144786,2459,Leatherface,1360643033 +144786,2459,slasher,1360643033 +144786,2519,Vincent Price,1359609124 +144786,2542,black comedy,1359606441 +144786,2542,British,1359606460 +144786,2542,dark comedy,1359606455 +144786,2542,Guy Ritchie,1359606467 +144786,2542,Jason Statham,1359606457 +144786,2542,multiple storylines,1359606464 +144786,2571,cyberpunk,1359606904 +144786,2571,dystopia,1359606916 +144786,2690,Oscar Wilde,1359610200 +144786,2922,Clint Eastwood,1359606592 +144786,2922,spaghetti western,1359606598 +144786,2922,western,1359606599 +144786,2959,based on a book,1359604644 +144786,2959,Brad Pitt,1359604642 +144786,2959,David Fincher,1359604666 +144786,2959,disturbing,1359604651 +144786,2959,Edward Norton,1359604640 +144786,2959,psychology,1359604648 +144786,2959,twist ending,1359604646 +144786,2985,futuristic,1360305352 +144786,2985,Kurtwood Smith,1360305352 +144786,3081,dark,1359781967 +144786,3081,Johnny Depp,1359781967 +144786,3081,period piece,1359782000 +144786,3081,Tim Burton,1359782000 +144786,3081,ultra-violence,1359781967 +144786,3275,cult classic,1359605152 +144786,3275,dark humor,1359605150 +144786,3275,gay,1359605148 +144786,3275,Irish,1359605155 +144786,3275,Mafia,1359605146 +144786,3275,Nudity (Topless),1359605137 +144786,3275,serial killer,1359605140 +144786,3275,vigilante,1359605141 +144786,3439,based on a comic,1360300488 +144786,3439,goofy,1360300468 +144786,3489,Maggie Smith,1359672725 +144786,3489,Robin Williams,1359672727 +144786,3489,ruffio,1359672738 +144786,3527,predator,1359606952 +144786,3535,based on a book,1359672774 +144786,3535,Christian Bale,1359672747 +144786,3535,dark,1359672771 +144786,3535,Disturbing,1359672763 +144786,3535,insanity,1359672745 +144786,3535,Jared Leto,1359672760 +144786,3535,serial killer,1359672754 +144786,3535,violence,1359672777 +144786,3578,Rome,1359605206 +144786,3702,Australia,1359670986 +144786,3702,car chase,1359670981 +144786,3702,cars,1359670983 +144786,3702,dystopia,1359670978 +144786,3702,Mel Gibson,1359670976 +144786,3702,motorcycle,1359670980 +144786,3702,post-apocalyptic,1359670995 +144786,3702,violent,1359670974 +144786,3703,action,1359671014 +144786,3703,car chase,1359671009 +144786,3703,desert,1359671011 +144786,3703,dogs,1359671013 +144786,3703,dystopia,1359671006 +144786,3703,Mel Gibson,1359671005 +144786,3703,motorcycle,1359671024 +144786,3703,post-apocalyptic,1359671017 +144786,3704,action,1359671058 +144786,3704,cars,1359671071 +144786,3704,cars with weapons,1359671071 +144786,3704,Mel Gibson,1359671045 +144786,3704,messiah,1359671052 +144786,3704,motorcycle,1359671054 +144786,3704,post-apocalyptic,1359671046 +144786,3704,vertically challenged people,1359671049 +144786,3916,Denzel Washington,1359674001 +144786,3916,football,1359674002 +144786,3916,race issues,1359673974 +144786,3916,ryan hurst,1359673930 +144786,3916,sports,1359673996 +144786,3917,demons,1360642863 +144786,3917,gothic,1360642863 +144786,3917,painful,1360642884 +144786,3917,sadomasochistic,1360642863 +144786,3948,Robert De Niro,1359607367 +144786,3948,seen more than once,1359607370 +144786,3949,anti-drugs lesson,1360727422 +144786,3949,intense,1360727422 +144786,3949,Jared Leto,1360727422 +144786,3988,bad memories,1359670750 +144786,3988,Christmas,1359670758 +144786,3988,Jim Carrey,1359670741 +144786,3988,Ron Howard,1359670754 +144786,3988,Xmas theme,1359670767 +144786,4011,boxing,1359606030 +144786,4011,Brad Pitt,1359606011 +144786,4011,british,1359606013 +144786,4011,dark comedy,1359606019 +144786,4011,Guy Ritchie,1359606017 +144786,4011,heist,1359606021 +144786,4011,Jason Statham,1359606016 +144786,4011,multiple storylines,1359606027 +144786,4011,twist ending,1359606023 +144786,4027,1930s,1359671671 +144786,4027,based on a book,1359671619 +144786,4027,Coen Brothers,1359671599 +144786,4027,comedy,1359671622 +144786,4027,George Clooney,1359671608 +144786,4027,great soundtrack,1359671610 +144786,4027,John Turturro,1359671691 +144786,4027,Period piece,1359671632 +144786,4027,prison escape,1359671613 +144786,4027,Tim Blake Nelson,1359671691 +144786,4223,brutal,1359608204 +144786,4223,Ed Harris,1359608200 +144786,4223,Jude Law,1359608188 +144786,4223,Nazis,1359608198 +144786,4223,Rachel Weisz,1359608191 +144786,4223,World War 2,1359608215 +144786,4223,World War II,1359608212 +144786,4223,WWII,1359608209 +144786,4262,Al Pacino,1359605926 +144786,4262,gangsters,1359605932 +144786,4262,mafia,1359605928 +144786,4262,violence,1359605929 +144786,4306,Cameron Diaz,1359606084 +144786,4306,computer animation,1359606104 +144786,4306,Dreamworks,1359606110 +144786,4306,Eddie Murphy,1359606100 +144786,4306,parody,1359606080 +144786,4306,talking animals,1359606115 +144786,4310,love story,1359671497 +144786,4310,Michael Bay,1359671539 +144786,4310,romance in the middle of war,1359671509 +144786,4310,World War II,1359671499 +144786,4327,Steve McQueen,1359606569 +144786,4327,western,1359606571 +144786,4344,hackers,1360642818 +144786,4344,John Travolta,1360642818 +144786,4369,cars,1359673654 +144786,4369,Paul Walker,1359673726 +144786,4369,street race,1359673651 +144786,4369,undercover cop,1359673684 +144786,4369,Vin Diesel,1359673647 +144786,4446,Game related,1359671482 +144786,4446,not related to Final Fantasy,1359671463 +144786,4446,post-apocalyptic,1359671470 +144786,4446,visually stunning,1359671458 +144786,4446,weak characters,1359671460 +144786,4446,weak plot,1359671477 +144786,4636,action,1359608111 +144786,4636,Dolph Lundgren,1359608104 +144786,4865,Jack the Ripper,1361623509 +144786,4865,Johnny Depp,1361623509 +144786,4865,serial killer,1361623509 +144786,4865,Victorian era,1361623510 +144786,4963,Brad Pitt,1359673179 +144786,4963,casino,1359673187 +144786,4963,comedy,1359673191 +144786,4963,Don Cheadle,1359673193 +144786,4963,George Clooney,1359673180 +144786,4963,heist,1359673184 +144786,4963,Matt Damon,1359673182 +144786,4974,Chris Evans,1360304986 +144786,4974,hilarious,1360304986 +144786,4974,spoof,1360304986 +144786,4981,John Cleese,1359671924 +144786,4981,NOTHING GOES RIGHT,1359671932 +144786,5110,Jay Chandrasekhar,1359607292 +144786,5110,Syrup chugging,1359607297 +144786,5266,David Fincher,1359671369 +144786,5266,Jared Leto,1359671365 +144786,5378,bad plot,1359672295 +144786,5378,Ewan McGregor,1359672273 +144786,5378,George Lucas,1359672272 +144786,5378,Hayden Christensen,1359672282 +144786,5378,Natalie Portman,1359672275 +144786,5378,Star Wars,1359672285 +144786,5378,travesty of film,1359672308 +144786,5380,based on play,1359610186 +144786,5380,british,1359610188 +144786,5380,Colin Firth,1359610173 +144786,5380,mistaken identity,1359610184 +144786,5380,Oscar Wilde,1359610182 +144786,5380,Reese Witherspoon,1359610179 +144786,5449,Adam Sandler being the same retarded character he always is.,1361851967 +144786,5449,John Turturro,1361851967 +144786,5507,Rammstein,1360642763 +144786,5507,Samuel L. Jackson,1360642763 +144786,5507,Vin Diesel,1360642763 +144786,5665,forgettable,1395978256 +144786,5789,cross dressing,1359609464 +144786,5789,Eddie Izzard,1359609476 +144786,5789,Nazis,1359609461 +144786,5789,World War II,1359609465 +144786,5903,Christian Bale,1359607029 +144786,5903,dystopia,1359607029 +144786,5956,Bill The Butcher,1359605997 +144786,5956,Cameron Diaz,1359606161 +144786,5956,Daniel Day-Lewis,1359605972 +144786,5956,gay,1359605987 +144786,5956,Leonardo DiCaprio,1359605974 +144786,5956,Liam Neeson,1359605983 +144786,5956,Martin Scorsese,1359605976 +144786,5956,New York City,1359605981 +144786,5956,Nudity (Topless),1359605978 +144786,5956,Victorian era,1359605994 +144786,5956,violent,1359605992 +144786,6005,bill engvall,1359671336 +144786,6005,stand-up comedy,1359671327 +144786,6157,alter ego,1359605848 +144786,6157,Colin Farrell,1359605838 +144786,6157,heroine in tight suit,1359605840 +144786,6157,Marvel,1359605842 +144786,6333,marvel,1359605411 +144786,6373,comedy,1359671302 +144786,6373,god,1359671304 +144786,6373,Jim Carrey,1359671294 +144786,6373,Morgan Freeman,1359671296 +144786,6373,Steve Carell,1359671299 +144786,6383,not as good as the first,1360304884 +144786,6537,androids,1359671128 +144786,6537,apocalypse,1359671126 +144786,6537,Arnold Schwarzenegger,1359671116 +144786,6537,artificial intelligence,1359671114 +144786,6537,Nudity (Topless),1359671110 +144786,6537,time travel,1359671122 +144786,6539,Geoffrey Rush,1359673474 +144786,6629,Vincent Price,1359609223 +144786,6664,Arnold Schwarzenegger,1360301297 +144786,6755,B-movie,1359672195 +144786,6755,Bruce Campbell,1359672193 +144786,6755,comedy,1359672210 +144786,6755,cult classic,1359672208 +144786,6755,Elvis iconography,1359672205 +144786,6755,mental illness,1359672201 +144786,6755,mummy,1359672203 +144786,6977,crime drama,1395977899 +144786,6977,drug trade,1395977899 +144786,6977,gunfight,1395977917 +144786,6977,Wesley Snipes,1395977899 +144786,6990,Donald Sutherland,1395978315 +144786,6990,England,1395978322 +144786,6990,heist,1395978315 +144786,6990,Sean Connery,1395978315 +144786,7076,car chase,1359609598 +144786,7076,gritty,1359609600 +144786,7076,Steve McQueen,1359609595 +144786,7143,Japanese culture,1359605233 +144786,7143,Ken Watanabe,1359605242 +144786,7143,martial arts,1359605237 +144786,7143,R:strong graphic battles,1359605240 +144786,7143,samurai,1359605235 +144786,7143,sword fight,1359605239 +144786,7147,dreamlike,1359671271 +144786,7147,fantasy,1359671273 +144786,7147,surrealism,1359671277 +144786,7147,thought-provoking,1359671281 +144786,7147,Tim Burton,1359671267 +144786,7178,based on a book,1361680252 +144786,7178,jazz,1361680252 +144786,7178,New York,1361680252 +144786,7178,roaring 20s,1361680252 +144786,7178,romance,1361680252 +144786,7254,Ashton Kutcher,1359671224 +144786,7254,change the future,1359671250 +144786,7254,dark,1359671238 +144786,7254,sci-fi,1359671230 +144786,7254,thought-provoking,1359671226 +144786,7347,based on a book,1360727848 +144786,7347,dark,1360727848 +144786,7347,John Turturro,1360727848 +144786,7347,Johnny Depp,1360727848 +144786,7347,Stephen King,1360727848 +144786,7347,suspense,1360727848 +144786,7373,fantasy,1359605713 +144786,7373,gothic,1359605710 +144786,7373,Guillermo del Toro,1359605708 +144786,7373,nazis,1359605705 +144786,7373,occult technology,1359605707 +144786,7373,Ron Perlman,1359605700 +144786,7373,steampunk,1359605701 +144786,7373,want to see again,1359605716 +144786,7438,Japan,1359605115 +144786,7438,martial arts,1359605117 +144786,7438,Quentin Tarantino,1359605104 +144786,7438,Samuel L. Jackson,1359605113 +144786,7438,spaghetti western,1359605106 +144786,7438,stylized,1359605108 +144786,7438,violence,1359605111 +144786,7439,senseless violence,1359608075 +144786,7454,frankenstein,1360642704 +144786,7454,Hugh Jackman,1360642704 +144786,7454,monster,1360642704 +144786,7454,vampires,1360642704 +144786,7454,werewolves,1360642704 +144786,7458,Brad Pitt,1359605300 +144786,7458,Nudity (Rear),1359605305 +144786,7458,Nudity (Topless),1359605306 +144786,7458,Orlando Bloom,1359605302 +144786,7458,rated-R,1359605308 +144786,7802,cult film,1395978627 +144786,7802,gangs,1395978627 +144786,7802,New York City,1395978643 +144786,7802,on the run,1395978636 +144786,7891,I Am Legend,1359609165 +144786,7891,post-apocalyptic,1359609167 +144786,7891,Vincent Price,1359609157 +144786,8640,Stellan Skarsgård,1360301267 +144786,8665,amnesia,1359673135 +144786,8665,car chase,1359673128 +144786,8665,espionage,1359673131 +144786,8665,Matt Damon,1359673130 +144786,8665,seen more than once,1359673133 +144786,8861,Milla Jovovich,1359782116 +144786,8874,British,1359672086 +144786,8874,british comedy,1359672085 +144786,8874,dark comedy,1359672083 +144786,8874,gore,1359672087 +144786,8874,Nick Frost,1359672078 +144786,8874,parody,1359672071 +144786,8874,Simon Pegg,1359672073 +144786,8874,spoof,1359672070 +144786,8874,zombies,1359672069 +144786,8961,superhero,1359671213 +144786,8984,Brad Pitt,1361623448 +144786,8984,George Clooney,1361623448 +144786,8984,heist film,1361623448 +144786,8984,Matt Damon,1361623448 +144786,8984,Vincent Cassel,1361623462 +144786,25788,gangsters,1363581219 +144786,25788,organized crime,1363581218 +144786,25788,shooting,1363581219 +144786,25788,violent,1363581219 +144786,26696,Jean-Claude Van Damme,1374861955 +144786,27706,based on a book,1359670907 +144786,27706,dark comedy,1359670896 +144786,27706,eerie,1359670904 +144786,27706,jim carrey,1359670897 +144786,27706,Jude Law,1359670899 +144786,27706,multiple roles,1359670912 +144786,27706,orphans,1359670901 +144786,30793,based on a book,1359670609 +144786,30793,candy,1359670623 +144786,30793,Christopher Lee,1359670640 +144786,30793,dark,1359670607 +144786,30793,Helena Bonham Carter,1359670605 +144786,30793,Johnny Depp,1359670602 +144786,30793,Tim Burton,1359670603 +144786,30825,not as good as the first,1359607398 +144786,30825,Robert De Niro,1359607384 +144786,31696,Alan Moore,1359605870 +144786,31696,gothic,1359605860 +144786,31696,heaven and hell,1359605859 +144786,31696,lesbian,1359605862 +144786,31696,supernatural,1359605868 +144786,32587,Benicio Del Toro,1359606258 +144786,32587,Bruce Willis,1359606215 +144786,32587,Clive Owen,1359606258 +144786,32587,Frank Miller,1359606230 +144786,32587,noir,1359606258 +144786,32587,Quentin Tarantino,1359606216 +144786,32587,stylized,1359606219 +144786,32587,tommy flanagan,1359606270 +144786,33493,Ewan McGregor,1359672047 +144786,33493,George Lucas,1359672020 +144786,33493,Hayden Christensen,1359672034 +144786,33493,Natalie Portman,1359672024 +144786,33493,Samuel L. Jackson,1359672022 +144786,33493,Star Wars,1359672056 +144786,33679,Angelina Jolie,1359607968 +144786,33679,Brad Pitt,1359607970 +144786,33679,espionage,1359607972 +144786,33679,Kick-Butt Women,1359607975 +144786,33679,sexuality:BDSM,1359607977 +144786,34048,H.G. Wells,1359609327 +144786,34048,overrated,1359609328 +144786,34048,Steven Spielberg,1359609332 +144786,34048,Tom Cruise,1359609330 +144786,35836,Paul Rudd,1359607459 +144786,35836,Seth Rogen,1359607456 +144786,35836,Steve Carell,1359607452 +144786,35957,Cillian Murphy,1359671408 +144786,35957,doesn't live up to its full potential,1359671439 +144786,35957,short,1359671426 +144786,35957,weak ending,1359671414 +144786,36401,Heath Ledger,1374252887 +144786,36401,Matt Damon,1374252887 +144786,36401,Terry Gilliam,1374252893 +144786,36519,Jason Statham,1359607860 +144786,36519,Kate Nauta,1359607857 +144786,36519,shooting,1359607867 +144786,36529,Jared Leto,1360642578 +144786,37729,19th century,1359781539 +144786,37729,dark,1359781539 +144786,37729,Helena Bonham Carter,1359781539 +144786,37729,Johnny Depp,1359781539 +144786,37729,stop motion,1359781538 +144786,40819,Joaquin Phoenix,1359607212 +144786,40819,Johnny Cash,1359607212 +144786,40819,Reese Witherspoon,1359607176 +144786,45722,Action/Comedy,1359673441 +144786,45722,Johnny Depp,1359673410 +144786,45722,Keira Knightley,1359673421 +144786,45722,Orlando Bloom,1359673411 +144786,45722,pirates,1359673413 +144786,45722,sword fight,1359673418 +144786,46578,dark comedy,1360298749 +144786,46578,dysfunctional family,1360298746 +144786,46578,road trip,1360298762 +144786,49272,007,1359673309 +144786,49272,based on a book,1359673316 +144786,49272,Daniel Craig,1359673306 +144786,49272,England,1359673318 +144786,49272,James Bond,1359673308 +144786,49272,long,1359673345 +144786,49272,Mads Mikkelsen,1359673299 +144786,49272,poker,1359673320 +144786,50872,pixar,1359673279 +144786,50872,talking animals,1359673282 +144786,51077,based on a comic,1359605782 +144786,51077,deal with the devil,1359605780 +144786,51077,motorcycle,1359605777 +144786,51077,Nicholas Cage,1359605767 +144786,51077,plain storyline,1359605770 +144786,51255,action spoof,1359671979 +144786,51255,black comedy,1359671961 +144786,51255,British,1359671965 +144786,51255,british comedy,1359671966 +144786,51255,Nick Frost,1359671974 +144786,51255,Simon Pegg,1359671968 +144786,51412,Nicholas Cage,1360643750 +144786,51412,Philip K. Dick,1360643805 +144786,51412,prophesy,1360643805 +144786,51412,supernatural powers,1360643805 +144786,51662,adapted from:comic,1359605282 +144786,51662,comic book,1359605264 +144786,51662,Frank Miller,1359605258 +144786,51662,Gerard Butler,1359605260 +144786,51662,Nudity (Topless),1359605254 +144786,51662,sexualized violence,1359605256 +144786,51662,Zack Snyder,1359605278 +144786,52722,Comic Book adaption,1359605665 +144786,52722,Kirsten Dunst,1359605684 +144786,52722,New York City,1359605690 +144786,52722,unfaithful to source material,1359605680 +144786,52973,Katherine Heigl,1359607425 +144786,52973,Paul Rudd,1359607431 +144786,52973,Seth Rogen,1359607414 +144786,52973,Steve Carell,1359607420 +144786,53125,Geoffrey Rush,1359673463 +144786,53125,Johnny Depp,1359673453 +144786,53125,Keira Knightley,1359673450 +144786,53125,Orlando Bloom,1359673451 +144786,53956,Alan Tudyk,1360298624 +144786,53956,british comedy,1360298624 +144786,53956,dark comedy,1360298648 +144786,53956,Matthew MacFadyen,1360298624 +144786,53972,bruce willis,1359607601 +144786,53972,Justin Long,1359607604 +144786,53972,not as good as the first,1359607618 +144786,53972,Timothy Olyphant,1359607606 +144786,54272,animation,1361851293 +144786,54272,hilarious,1361851293 +144786,54272,simpsons,1361851293 +144786,54286,assassin,1359604628 +144786,54286,based on a book,1359604620 +144786,54286,espionage,1359604605 +144786,54286,Matt Damon,1359604600 +144786,54286,spy thriller,1359604603 +144786,54286,twist ending,1359604630 +144786,54503,comedy,1359608159 +144786,54503,Michael Cera,1359608162 +144786,54503,Seth Rogen,1359608165 +144786,56757,19th century,1359781909 +144786,56757,blades,1359781924 +144786,56757,dark,1359781915 +144786,56757,Helena Bonham Carter,1359781909 +144786,56757,Johnny Depp,1359781909 +144786,56757,Period piece,1359782039 +144786,56757,Sacha Baron Cohen,1359781909 +144786,56757,serial killer,1359781909 +144786,56757,Tim Burton,1359781909 +144786,56757,ultra-violence,1359781909 +144786,56782,Daniel Day-Lewis,1359610328 +144786,57640,beautiful effects,1359605912 +144786,57640,Ron Perlman,1359605915 +144786,60040,adapted from:comic,1359605470 +144786,60040,Below R,1359605475 +144786,60040,comic book,1359605472 +144786,60040,Edward Norton,1359605448 +144786,60040,Liv Tyler,1359605461 +144786,60040,Marvel,1359605466 +144786,60040,The Avengers,1359605450 +144786,60072,Angelina Jolie,1359608034 +144786,60072,assassin,1359608047 +144786,60072,James McAvoy,1359608036 +144786,60072,Morgan Freeman,1359608038 +144786,60684,comic book,1359606297 +144786,60684,dystopia,1359606287 +144786,60684,nuclear war,1359606292 +144786,60684,political commentary,1359606315 +144786,60756,John C. Reilly,1359607318 +144786,60756,Ken Jeong,1359607323 +144786,60756,will ferrell,1359607321 +144786,61024,James Franco,1359607469 +144786,61024,Ken Jeong,1359607481 +144786,61024,Seth Rogen,1359607473 +144786,61024,Stoner Movie,1359607476 +144786,62849,cool dialogues,1359606404 +144786,62849,England,1359606418 +144786,62849,Gerard Butler,1359606415 +144786,62849,Guy Ritchie,1359606413 +144786,62849,multiple storylines,1359606431 +144786,62849,overly complex,1359606410 +144786,62849,Tom Hardy,1359606406 +144786,62849,Tom Wilkinson,1359606408 +144786,63113,007 (series),1359673364 +144786,63113,Daniel Craig,1359673360 +144786,63113,espionage,1359673366 +144786,63113,James Bond,1359673362 +144786,63113,Olga Kurylenko,1359673373 +144786,63113,short,1359673384 +144786,64839,Mickey Rourke,1359607649 +144786,64839,sport:professional wrestling,1359607635 +144786,64839,strippers,1359607637 +144786,68157,Brad Pitt,1359670661 +144786,68157,Christoph Waltz,1359670714 +144786,68157,dark comedy,1359670678 +144786,68157,Quentin Tarantino,1359670659 +144786,68157,revenge,1359670684 +144786,68157,violence,1359670680 +144786,68157,World War II,1359670682 +144786,68319,Comic Book adaption,1359605582 +144786,68319,hugh jackman,1359605580 +144786,68319,Patrick Stewart,1359605576 +144786,68319,Ryan Reynolds,1359605578 +144786,68319,unfaithful to source material,1359605604 +144786,68791,action,1359671156 +144786,68791,Christian Bale,1359671138 +144786,68791,FIGHTING THE SYSTEM,1359671147 +144786,68791,futuristic,1359671158 +144786,68791,post-apocalyptic,1359671140 +144786,68791,robots,1359671142 +144786,69122,comedy,1359607255 +144786,69122,flashbacks,1359607265 +144786,69122,Hilarious,1359607267 +144786,69122,Las Vegas,1359607262 +144786,69122,Nudity (Topless),1359607252 +144786,69122,strippers,1359607257 +144786,69122,Zach Galifianakis,1359607259 +144786,74789,3D,1359670785 +144786,74789,Alan Rickman,1359670793 +144786,74789,Anne Hathaway,1359670791 +144786,74789,based on a book,1359670794 +144786,74789,fantasy,1359670797 +144786,74789,Helena Bonham Carter,1359670790 +144786,74789,Johnny Depp,1359670789 +144786,74789,Tim Burton,1359670787 +144786,74789,visually appealing,1359670798 +144786,74789,weird,1359670800 +144786,74851,blood,1359607998 +144786,74851,espionage,1359608000 +144786,74851,John Travolta,1359607992 +144786,74851,Paris,1359607994 +144786,75446,Salvador Dali,1359609751 +144786,77364,Chris Evans,1359607906 +144786,79293,Angelina Jolie,1359608016 +144786,79293,assassination,1359608018 +144786,79293,espionage,1359608020 +144786,79695,action packed,1359607704 +144786,79695,Arnold Schwarzenegger,1359607690 +144786,79695,Bruce Willis,1359607695 +144786,79695,Jason Statham,1359607687 +144786,79695,Jet Li,1359607707 +144786,79695,Mickey Rourke,1359607678 +144786,79695,Sylvester Stallone,1359607681 +144786,79702,based on a comic,1374252960 +144786,79702,geeks,1374252960 +144786,79702,video games,1374252960 +144786,81229,action,1359607936 +144786,81229,Brian Cox,1401512338 +144786,81229,Bruce Willis,1359607930 +144786,81229,conspiracy,1359607934 +144786,81229,John Malkovich,1359607928 +144786,81229,Morgan Freeman,1359607932 +144786,81834,Alan Rickman,1359611372 +144786,81834,based on a book,1359611387 +144786,81834,British,1359611385 +144786,81834,dark fantasy,1359611383 +144786,81834,England,1359611382 +144786,81834,Harry Potter,1359611374 +144786,81834,Helena Bonham Carter,1359611377 +144786,81834,magic,1359611375 +144786,81834,Ralph Fiennes,1359611378 +144786,82461,amazing soundtrack,1360643606 +144786,82461,computers,1360643566 +144786,82461,dystopia,1360643566 +144786,82461,futuristic,1360643566 +144786,82461,Jeff Bridges,1360643566 +144786,82461,Michael Sheen,1360643656 +144786,82461,video games,1360643566 +144786,82461,visually stunning,1360643581 +144786,83134,Alan Tudyk,1359672113 +144786,83134,black comedy,1359672115 +144786,83134,gore,1359672117 +144786,83134,great premise,1359672135 +144786,83134,multiple storylines,1359672126 +144786,86880,Ian McShane,1359673488 +144786,86880,Johnny Depp,1359673490 +144786,86880,pirates,1359673492 +144786,87232,based on comic,1401326400 +144786,87232,James McAvoy,1401326400 +144786,87232,Jennifer Lawrence,1401326427 +144786,87232,Michael Fassbender,1401326400 +144786,87232,superhero,1401326427 +144786,87232,superpowers,1401326427 +144786,87232,X-men,1401326427 +144786,88140,adapted from:comic,1359605533 +144786,88140,american idiocy,1359605536 +144786,88140,Marvel,1359605521 +144786,88140,Nazis,1359605529 +144786,88140,Tommy Lee Jones,1359605526 +144786,88140,World War II,1359605523 +144786,88699,cars with weapons,1360299078 +144786,88699,Danny Trejo,1360299078 +144786,89745,comic book,1359605331 +144786,89745,Marvel,1359605342 +144786,89745,New York City,1359605344 +144786,89745,Robert Downey Jr.,1359605333 +144786,89745,Samuel L. Jackson,1359605340 +144786,89745,Scarlett Johansson,1359605335 +144786,89745,superhero,1359605337 +144786,89864,Joseph Gordon-Levitt,1359610369 +144786,89864,Seth Rogen,1359610371 +144786,90057,Michael Shannon,1369405676 +144786,91485,80s nostalgia,1359607782 +144786,91485,action packed,1359607782 +144786,91485,Arnold Schwarzenegger,1359607782 +144786,91485,Bruce Willis,1359607782 +144786,91485,Chuck Norris,1359607790 +144786,91485,explosions,1359607782 +144786,91485,Jean-Claude Van Damme,1359607727 +144786,91485,Sylvester Stallone,1359607782 +144786,91500,based on a book,1359607232 +144786,91500,dystopia,1359607230 +144786,91500,Woody Harrelson,1359607234 +144786,91535,chase,1374457179 +144786,91535,Edward Norton,1374457144 +144786,91535,Jeremy Renner,1374457144 +144786,91535,weak story,1374457203 +144786,91542,Guy Ritchie,1359607513 +144786,91542,Jude Law,1359607537 +144786,91542,private detective,1359607530 +144786,91542,Robert Downey Jr.,1359607528 +144786,91542,sherlock holmes,1359607532 +144786,93805,German,1359610576 +144786,93805,Nazis,1359610567 +144786,93805,parody,1359610572 +144786,93805,space travel,1359610578 +144786,93805,steampunk,1359610569 +144786,94780,Chris Hemsworth,1374252830 +144786,94780,evil queen,1374252844 +144786,94780,Kristen Stewart,1374252803 +144786,94780,visually stunning,1374252830 +144786,95510,action,1359603828 +144786,95510,comic book,1359603837 +144786,95510,Reboot,1359603832 +144786,95510,special effects,1359603821 +144786,95510,Spider-Man,1359603816 +144786,95510,superhero,1359603818 +144786,95558,Southern theme,1398558732 +144786,96079,Daniel Craig,1359611195 +144786,96079,James Bond,1359611198 +144786,96417,corruption,1371791873 +144786,96417,Joseph Gordon-Levitt,1371791858 +144786,96417,Michael Shannon,1371791858 +144786,96432,bootlegging,1359610757 +144786,96432,Gary Oldman,1359610764 +144786,96432,Great Depression,1359610732 +144786,96432,moonshine,1359610757 +144786,96432,Prohibition,1359610757 +144786,96432,Shia LaBeouf,1359610734 +144786,96432,Tom Hardy,1359610736 +144786,96432,violent,1359610739 +144786,96737,based on a comic,1395981506 +144786,96737,drug trade,1395981490 +144786,96737,dystopia,1395981490 +144786,96737,gunfight,1395981490 +144786,96737,Karl Urban,1395981490 +144786,96737,Lena Headey,1395981513 +144786,96737,Slo-Mo,1395981531 +144786,96737,soundtrack,1395981523 +144786,96737,ultra-violence,1395981490 +144786,97913,cameos,1359606052 +144786,97913,John C. Reilly,1359606042 +144786,97913,nostalgic,1359606040 +144786,97913,Sarah Silverman,1359606047 +144786,97913,video games,1359606049 +144786,98154,Daniel Day-Lewis,1359611183 +144786,98154,Joseph Gordon-Levitt,1368751023 +144786,98809,adventure,1359611225 +144786,98809,based on a book,1359611227 +144786,98809,Christopher Lee,1359611229 +144786,98809,fantasy,1359611218 +144786,98809,Ian McKellen,1359611220 +144786,98809,Martin Freeman,1359611237 +144786,98809,Peter Jackson,1359611214 +144786,98809,Tolkien,1359611223 +144786,99114,Christoph Waltz,1359670728 +144786,99114,Great performances,1359605185 +144786,99114,Leonardo DiCaprio,1359605166 +144786,99114,Quentin Tarantino,1359605167 +144786,99114,Samuel L. Jackson,1359605171 +144786,99114,Slavery,1359605175 +144786,99114,Soundtrack,1359605181 +144786,99114,Spaghetti Western,1359605173 +144786,99114,violence,1359605177 +144786,99114,western,1359605179 +144786,99149,1800s,1359670376 +144786,99149,19th century,1359670374 +144786,99149,Anne Hathaway,1359670369 +144786,99149,based on a book,1359670373 +144786,99149,France,1359670381 +144786,99149,Hugh Jackman,1359670366 +144786,99149,musical,1359670379 +144786,99149,singing,1359670386 +144786,99149,Victor Hugo,1359670364 +144786,100093,cars with weapons,1360299229 +144786,100093,Danny Trejo,1360299229 +144786,102033,comedy,1368750932 +144786,102033,Mark Wahlberg,1368750925 +144786,102033,Michael Bay,1368750906 +144786,102033,The Rock,1368750925 +144786,102123,apocalypse,1371792029 +144786,102123,Danny McBride,1371792029 +144786,102123,Demonic penises,1371792044 +144786,102123,demons,1371792029 +144786,102123,gore,1371792074 +144786,102123,hilarious,1371792074 +144786,102123,James Franco,1371792030 +144786,102123,Seth Rogen,1371792030 +144786,102125,Ben Kingsley,1368750583 +144786,102125,Marvel,1368750597 +144786,102125,Marvel Cinematic Universe,1368750597 +144786,102125,Robert Downey Jr.,1368750583 +144786,102125,They screwed up The Mandarin,1368750563 +144786,102194,Matthew McConaughey,1398558966 +144786,102194,Michael Shannon,1368750965 +144786,102194,Southern theme,1398558966 +144786,102194,Tye Sheridan,1404183089 +144786,102407,adapted from:book,1368750716 +144786,102407,author:F. Scott Fitzgerald,1368750716 +144786,102407,beautiful,1368750731 +144786,102407,Clothing,1368750778 +144786,102407,jazz,1368750678 +144786,102407,Leonardo DiCaprio,1368750678 +144786,102407,Modern music,1368750645 +144786,102407,Period piece,1368750778 +144786,102407,Tobey Maguire,1368750678 +144786,102407,yellow car,1368750731 +144786,103341,comedy,1396053504 +144786,103341,Edgar Wright,1396053491 +144786,103341,England,1396053517 +144786,103341,Martin Freeman,1396053491 +144786,103341,Nick Frost,1396053491 +144786,103341,sci-fi,1396053504 +144786,103341,Simon Pegg,1396053491 +144786,104881,Christian Bale,1404183133 +144786,104881,revenge,1404183149 +144786,104881,rural,1404183149 +144786,104881,Willem Dafoe,1404183134 +144786,104881,Woody Harrelson,1404183134 +144786,106487,dystopia,1395981645 +144786,106487,Jennifer Lawrence,1395981636 +144786,106489,based on a book,1395981727 +144786,106489,fantasy,1395981726 +144786,106489,Martin Freeman,1395981727 +144786,108928,Bill Murray,1401326734 +144786,108928,George Clooney,1401326734 +144786,108928,John Goodman,1401326734 +144786,108928,Matt Damon,1401326734 +144786,109042,Brian Posehn,1395976940 +144786,109042,fantasy,1395976940 +144786,109042,gore,1395976940 +144786,109042,hilarious,1395976940 +144786,109042,Peter Dinklage,1395976940 +144786,109042,Ryan Kwanten,1395976940 +144786,109243,Nicholas Cage,1404183040 +144786,109243,rural,1404183061 +144786,109243,Tye Sheridan,1404183042 +144786,110102,Chris Evans,1401326477 +144786,110102,Marvel,1401326477 +144786,110102,Marvel Cinematic Universe,1401326477 +144786,110102,superhero,1401326477 +144786,111362,based on a comic,1401326300 +144786,111362,Ian McKellen,1401326281 +144786,111362,James McAvoy,1401326281 +144786,111362,Jennifer Lawrence,1401326332 +144786,111362,Michael Fassbender,1401326281 +144786,111362,Patrick Stewart,1401326281 +144786,111362,superhero,1401326300 +144786,111362,superpowers,1401326332 +144786,111362,X-men,1401326281 +144814,595,Disney,1315947294 +144814,595,Disney animated feature,1315947370 +144814,595,fairy tale,1315947362 +144814,595,heartwarming,1315947351 +144814,858,Al Pacino,1315949116 +144814,858,based on a book,1315949119 +144814,858,classic,1315949113 +144814,858,Mafia,1315949120 +144814,858,robert de niro,1315949129 +144814,1213,crime,1315949166 +144814,1213,dark comedy,1315949164 +144814,1213,gore,1315949168 +144814,1213,Martin Scorsese,1315949158 +144814,1213,Robert De Niro,1315949160 +144814,1213,Samuel L. Jackson,1315949154 +144814,1241,zombie,1315947967 +144814,1732,Coen Brothers,1315947652 +144814,1732,marijuana,1315947635 +144814,1921,mathematics,1315948532 +144814,1921,notable soundtrack,1315948537 +144814,2387,dark comedy,1315948922 +144814,2387,dark humor,1315948924 +144814,5265,Black Comedy,1315949015 +144814,5265,Catherine Keener,1315949018 +144814,5265,Danny DeVito,1315949013 +144814,5265,Edward Norton,1315948985 +144814,5265,Robin Williams,1315949007 +144814,6707,Eli Roth,1315947910 +144814,6707,gore,1315947914 +144814,54910,dark humor,1315948687 +144814,54910,horror,1315948713 +144814,54910,Robert Englund,1315948707 +144814,54910,satire,1315948722 +144814,54910,serial killer,1315948702 +144814,54910,twist ending,1315948730 +144814,71535,dark comedy,1315948797 +144814,71535,gore,1315948794 +144814,71535,IMDB Top 250,1315948819 +144814,71535,violence,1315948804 +144814,71535,zombies,1315948792 +144839,6711,Bill Murray,1291502351 +144839,74152,Zach Galifianakis,1293398660 +144848,407,John Carpenter,1449639780 +144848,407,lovecraftian,1449639778 +144848,799,Ghosts,1449637985 +144848,799,serial killer,1449637987 +144848,799,supernatural,1449637983 +144848,841,atmospheric,1449638837 +144848,968,horror,1449636814 +144848,968,zombies,1449636799 +144848,1215,bruce campbell,1449637309 +144848,1215,Sam Raimi,1449637312 +144848,1215,TIME TRAVEL,1449637322 +144848,1261,black comedy,1449637287 +144848,1261,Bruce Campbell,1449637283 +144848,1261,dark humor,1449637285 +144848,1261,demons,1449637292 +144848,1261,Sam Raimi,1449637290 +144848,1321,dark comedy,1449638013 +144848,1321,werewolf,1449638011 +144848,1321,werewolves,1449638009 +144848,1334,Steve McQueen,1449639256 +144848,1340,Boris Karloff,1449640482 +144848,1340,Universal monsters,1449640479 +144848,1348,F.W. Murnau,1449640543 +144848,1348,german expressionism,1449640546 +144848,1348,vampires,1449640548 +144848,1625,David Fincher,1449640062 +144848,1625,michael douglas,1449640059 +144848,1974,camp,1449640228 +144848,1974,slasher,1449640225 +144848,1975,Jason Vorhees,1449640244 +144848,1975,slasher,1449640242 +144848,1976,Jason Vorhees,1449640256 +144848,1976,slasher,1449640254 +144848,1977,slasher,1449640266 +144848,1978,slasher,1449640280 +144848,1979,slasher,1449640293 +144848,1980,slasher,1449640302 +144848,1981,Jason Vorhees,1449640315 +144848,1981,slasher,1449640317 +144848,1982,Donald Pleasence,1449640199 +144848,1982,halloween,1449640210 +144848,1982,horror,1449640202 +144848,1982,Jamie Lee Curtis,1449640196 +144848,1982,John Carpenter,1449640204 +144848,2119,stephen king,1449638518 +144848,2160,Mia Farrow,1449638692 +144848,2160,Roman Polanski,1449638688 +144848,2160,WITCHCRAFT,1449638696 +144848,2428,aliens,1449639318 +144848,2428,high school,1449639322 +144848,2428,Robert Rodriguez,1449639320 +144848,2459,cannibalism,1449640140 +144848,2459,disturbing,1449640145 +144848,2459,horror,1449640143 +144848,2459,Leatherface,1449640148 +144848,2459,Tobe Hooper,1449640137 +144848,2519,haunted house,1449637749 +144848,2519,Vincent Price,1449637747 +144848,2550,ghosts,1449637798 +144848,2550,gothic,1449637805 +144848,2550,horror,1449637800 +144848,2550,supernatural,1449637794 +144848,2614,killer robots,1449638381 +144848,2644,Bela Lugosi,1449640523 +144848,2644,Tod Browning,1449640518 +144848,2644,universal monsters,1449640525 +144848,2644,vampire,1449640520 +144848,2648,mad scientist,1449640500 +144848,2722,shark,1449638571 +144848,2762,Atmospheric,1449640000 +144848,2762,Bruce Willis,1449639992 +144848,2762,ghosts,1449639997 +144848,2762,m. night shyamalan,1449639990 +144848,2780,Boris Karloff,1449637962 +144848,2780,Edgar Allan Poe,1449637958 +144848,2780,Vincent Price,1449637960 +144848,2782,Edgar Allan Poe,1449637880 +144848,2782,Roger Corman,1449637882 +144848,2782,Vincent Price,1449637878 +144848,2784,Edgar Allan Poe,1449637854 +144848,2784,roger corman,1449637859 +144848,2784,Vincent Price,1449637856 +144848,2841,ghosts,1449639924 +144848,2841,supernatural,1449639922 +144848,2867,Roddy McDowall,1449637613 +144848,2867,vampires,1449637611 +144848,3018,H.P. Lovecraft,1449637355 +144848,3018,horror,1449637352 +144848,3018,mad scientist,1449637353 +144848,3018,zombies,1449637358 +144848,3075,Catherine Deneuve,1449638782 +144848,3075,Roman Polanski,1449638780 +144848,3627,atmospheric,1449638665 +144848,3696,Fred Dekker,1449637400 +144848,3931,Creature Feature,1449639369 +144848,3931,MST3K,1449639372 +144848,3933,island,1449639439 +144848,3933,mst3k,1449639435 +144848,3938,slasher,1449639597 +144848,4105,bruce campbell,1449637260 +144848,4105,cult classic,1449637266 +144848,4105,dark humor,1449637258 +144848,4105,demons,1449637264 +144848,4105,Sam Raimi,1449637271 +144848,4128,1980s,1449637652 +144848,4128,vampires,1449637649 +144848,4403,Edgar Allan Poe,1449637835 +144848,4403,Roger Corman,1449637839 +144848,4403,Vincent Price,1449637837 +144848,4437,Dario Argento,1449638874 +144848,4492,creature feature,1449639222 +144848,4533,zombies,1449637384 +144848,4725,Brad Anderson,1449639881 +144848,4725,horror,1449639873 +144848,4725,mental hospital,1449639875 +144848,4833,atmospheric,1449637781 +144848,4833,haunted house,1449637779 +144848,5294,Bill Paxton,1449639966 +144848,5294,mission from God,1449639971 +144848,5356,MST3K,1449639391 +144848,5356,spiders,1449639389 +144848,5478,creature feature,1449638475 +144848,5478,Scarlett Johansson,1449638472 +144848,5478,spiders,1449638476 +144848,5980,Bob Clark,1449640176 +144848,5980,Christmas,1449640171 +144848,5980,slasher,1449640174 +144848,6323,Amanda Peet,1449639943 +144848,6323,John Cusack,1449639940 +144848,6659,monster,1449638453 +144848,6731,George A. Romero,1449636862 +144848,6731,horror,1449636865 +144848,6731,zombies,1449636860 +144848,6755,Bruce Campbell,1449638124 +144848,6755,Elvis iconography,1449638129 +144848,6755,mummy,1449638126 +144848,6967,ventriloquist,1449638723 +144848,7115,Dario Argento,1449638854 +144848,7115,Giallo,1449638852 +144848,7387,George A. Romero,1449636836 +144848,7387,horror,1449636839 +144848,7387,social commentary,1449636843 +144848,7387,zombies,1449636833 +144848,7713,Jacques Tourneur,1449638758 +144848,7891,Vincent Price,1449639731 +144848,8225,zombies,1449637099 +144848,8874,Edgar Wright,1449638198 +144848,8874,Nick Frost,1449638201 +144848,8874,Simon Pegg,1449638195 +144848,8874,zombies,1449638193 +144848,26122,samurai,1449638815 +144848,26558,advertising,1449637509 +144848,26558,consumerism,1449637510 +144848,26603,alice cooper,1449639796 +144848,26629,clowns,1449639241 +144848,30820,honest,1449640385 +144848,30820,Kevin Bacon,1449640381 +144848,33834,Asia Argento,1449637009 +144848,33834,George A. Romero,1449637006 +144848,33834,zombies,1449637004 +144848,44828,alien invasion,1449637415 +144848,44828,body horror,1449637417 +144848,44828,Elizabeth Banks,1449637420 +144848,44828,James Gunn,1449637424 +144848,44828,nathan fillion,1449637422 +144848,44974,disturbing,1449640418 +144848,44974,Ellen Page,1449640414 +144848,44974,intense,1449640421 +144848,48780,Christian Bale,1449640021 +144848,48780,Christopher Nolan,1449640028 +144848,48780,Hugh Jackman,1449640032 +144848,48780,magic,1449640040 +144848,48780,Michael Caine,1449640024 +144848,48780,Scarlett Johansson,1449640035 +144848,53953,John Cusack,1449639902 +144848,53953,Samuel L. Jackson,1449639904 +144848,53953,Stephen King,1449639899 +144848,55553,mad scientist,1449637445 +144848,55553,New Zealand,1449637448 +144848,55553,sheep zombies,1449637443 +144848,58332,zombies,1449637139 +144848,68952,Alison Lohman,1449638037 +144848,68952,curse,1449638042 +144848,68952,Sam Raimi,1449638033 +144848,71535,Abigail Breslin,1449638164 +144848,71535,Emma Stone,1449638155 +144848,71535,Jesse Eisenberg,1449638166 +144848,71535,Woody Harrelson,1449638160 +144848,71535,zombies,1449638170 +144848,74370,Ti West,1449639833 +144848,75425,George A. Romero,1449637153 +144848,75425,zombies,1449637155 +144848,83134,Alan Tudyk,1449638095 +144848,83134,black comedy,1449638093 +144848,83134,great premise,1449638099 +144848,92309,paranormal,1449639849 +144848,93840,clever,1449638063 +144848,93840,Drew Goddard,1449638071 +144848,93840,joss whedon,1449638067 +144870,133539,buddhism,1432430952 +144870,133539,introspective,1432430952 +144870,133539,spiritual journey,1432430952 +144870,133539,spirituality,1431744074 +144884,50,Suspense,1178989093 +144891,778,Ewan McGregor,1377836623 +144891,778,Nudity (Full Frontal - Notable),1377836631 +144891,1968,80s,1377836992 +144891,1968,coming of age,1377836989 +144891,2712,Nicole Kidman,1377836514 +144891,2712,Nudity (Full Frontal - Notable),1377836507 +144891,3210,Nudity (Full Frontal - Notable),1378104687 +144891,3210,seen more than once,1378104694 +144891,4308,Ewan McGregor,1377836574 +144891,4308,musical,1377836576 +144891,4308,Nudity (Topless - Brief),1377836593 +144891,45501,Jennifer Aniston,1377836293 +144891,45501,Nudity (Topless - Brief),1377836307 +144891,45501,relationships,1377836327 +144891,45501,Vince Vaughn,1377836299 +144891,58998,Nudity (Full Frontal - Notable),1377836806 +144891,58998,Nudity (Topless),1377836813 +144891,58998,Paul Rudd,1377836809 +144891,58998,surfing,1377836810 +144891,87485,Cameron Diaz,1377836867 +144891,87485,Nudity (Topless - Notable),1377836862 +144892,1407,slasher,1164510086 +144892,1407,spoof,1164510089 +144892,1407,Wes Craven,1164510084 +144892,1917,Bruce Willis,1164510070 +144892,1917,end of the world,1164510056 +144892,1917,space,1164510043 +144913,71108,murder mystery,1423358691 +144913,71108,nazi germany,1423358691 +144913,71108,spooky village,1423358691 +144913,95858,animation,1424469725 +144913,95858,pixar,1424469725 +144913,95858,pre movie,1424469725 +144913,103306,2010,1422718078 +144913,103306,aliens,1422718078 +144913,103306,realistic sci-fi,1422718078 +144913,106210,drama,1421223407 +144913,106210,mystery,1421223407 +144913,106210,thriller,1421223407 +144922,364,Disney,1326070920 +144922,364,music,1326070951 +144922,27523,romantic comedy,1326090181 +144922,31364,Kang-ho Song,1326090552 +144922,31364,serial killer,1326090515 +144922,73808,cruelty,1326090396 +144922,73808,serial kill,1326090327 +144922,79132,Mtstery,1326071380 +144922,79132,Sci-Fi,1326071380 +144922,86892,action,1326090222 +144922,86892,Bin won,1326090232 +144922,86892,Thriller,1326090250 +144922,91630,action,1326070847 +144922,91630,tom cruise,1326070847 +144923,5459,Will Smith,1438916155 +144923,34048,Tom Cruise,1438915992 +144931,185,sandra bullock,1185227575 +144931,253,antonio banderas,1185227824 +144931,253,brad pitt,1185227824 +144931,253,kirsten dunst,1185227824 +144931,253,tom cruise,1185227824 +144931,356,robin wright penn,1185225087 +144931,356,tom hanks,1185225087 +144931,368,jodie foster,1185227618 +144931,376,meryl streep,1185227384 +144931,377,sandra bullock,1185230986 +144931,469,antonio banderas,1185227776 +144931,469,glenn close,1185231676 +144931,469,meryl streep,1185227716 +144931,469,winona ryder,1185227776 +144931,508,antonio banderas,1185231778 +144931,508,tom hanks,1185231778 +144931,593,anthony hopkins,1185224172 +144931,593,jodie foster,1185224172 +144931,778,ewan mcgregor,1185224348 +144931,1044,anthony hopkins,1185227359 +144931,1044,julianne moore,1185227359 +144931,1391,annette bening,1185227649 +144931,1391,glenn close,1185231687 +144931,1584,jena malone,1185229953 +144931,1584,jodie foster,1185226976 +144931,1721,kate winslet,1185227340 +144931,1721,leonardo dicaprio,1185227340 +144931,1892,gwyneth paltrow,1185231239 +144931,1892,viggo mortensen,1185231239 +144931,1959,meryl streep,1185227551 +144931,2291,dianne wiest,1185226264 +144931,2291,johnny depp,1185224748 +144931,2291,winona ryder,1185226235 +144931,2316,dianne wiest,1185227467 +144931,2316,evan rachel wood,1185227479 +144931,2316,nicole kidman,1185227467 +144931,2316,sandra bullock,1185227467 +144931,2316,stockard channing,1185227467 +144931,2336,cate blanchett,1185225112 +144931,2337,ewan mcgregor,1185224333 +144931,2337,jonathan rhys meyers,1185224333 +144931,2337,toni collette,1185225346 +144931,2390,ewan mcgregor,1185229786 +144931,2390,michael caine,1185229870 +144931,2442,emily watson,1185224998 +144931,2442,rachel griffiths,1185224998 +144931,2676,anthony hopkins,1185227705 +144931,2712,nicole kidman,1185231507 +144931,2712,tom cruise,1185231507 +144931,2762,haley joel osment,1185230881 +144931,2762,toni collette,1185230881 +144931,2858,allison janney,1185226481 +144931,2858,annette bening,1185226481 +144931,2858,kevin spacey,1185226481 +144931,2858,mena suvari,1185226481 +144931,2858,thora birch,1185226481 +144931,2908,chloe sevigny,1185227286 +144931,2908,hilary swank,1185227286 +144931,2959,brad pitt,1185225838 +144931,2959,edward norton,1185224224 +144931,2959,helena bonham carter,1185225838 +144931,2996,meryl streep,1185227599 +144931,3160,john c. reilly,1185226617 +144931,3160,julianne moore,1185224927 +144931,3160,philip seymour hoffman,1185553249 +144931,3160,tom cruise,1185226617 +144931,3186,angelina jolie,1185224455 +144931,3186,winona ryder,1185224455 +144931,3259,nicole kidman,1185231518 +144931,3259,tom cruise,1185231518 +144931,3418,geena davis,1185277027 +144931,3418,michael pitt,1185277027 +144931,3418,susan sarandon,1185277027 +144931,3534,sandra bullock,1185231040 +144931,3534,viggo mortensen,1185231068 +144931,3556,kirsten dunst,1185224795 +144931,3897,billy crudup,1185553372 +144931,3897,fairuza balk,1185553372 +144931,3897,frances mcdormand,1185553372 +144931,3897,jason lee,1185553372 +144931,3897,kate hudson,1185553372 +144931,3897,patrick fugit,1185553372 +144931,3897,philip seymour hoffman,1185553372 +144931,3897,zooey deschanel,1185553372 +144931,3969,haley joel osment,1185230958 +144931,3969,helen hunt,1185224878 +144931,3969,kevin spacey,1185224878 +144931,4014,johnny depp,1185227019 +144931,4014,judi dench,1185227019 +144931,4014,juliette binoche,1185227019 +144931,4020,cate blanchett,1185229630 +144931,4022,helen hunt,1185230099 +144931,4022,tom hanks,1185230099 +144931,4148,anthony hopkins,1185224205 +144931,4148,julianne moore,1185224213 +144931,4169,alan rickman,1185228479 +144931,4169,rachel griffiths,1185228479 +144931,4239,johnny depp,1185228502 +144931,4239,rachel griffiths,1185228502 +144931,4308,ewan mcgregor,1185224417 +144931,4308,nicole kidman,1185224417 +144931,4318,annette bening,1185227494 +144931,4318,meryl streep,1185227494 +144931,4370,haley joel osment,1185230945 +144931,4641,scarlett johansson,1185225035 +144931,4641,thora birch,1185230496 +144931,4643,helena bonham carter,1185229850 +144931,4720,nicole kidman,1185227563 +144931,4815,anthony hopkins,1185226700 +144931,4874,jeff bridges,1185226666 +144931,4874,kevin spacey,1185224943 +144931,4878,drew barrymore,1185225905 +144931,4878,jake gyllenhaal,1185224240 +144931,4878,jena malone,1185225905 +144931,4878,maggie gyllenhaal,1185229242 +144931,4878,noah wyle,1185225905 +144931,4896,alan rickman,1185228301 +144931,4973,audrey tatou,1185224538 +144931,4993,cate blanchett,1185227682 +144931,4993,elijah wood,1185231154 +144931,4993,viggo mortensen,1185231154 +144931,5016,cate blanchett,1185224837 +144931,5016,judi dench,1185227143 +144931,5016,julianne moore,1185224837 +144931,5016,kevin spacey,1185224837 +144931,5266,jodie foster,1185227544 +144931,5312,michael pitt,1185276990 +144931,5312,sandra bullock,1185276990 +144931,5316,kate winslet,1186863494 +144931,5377,hugh grant,1185227303 +144931,5377,toni collette,1185225516 +144931,5630,anthony hopkins,1185224390 +144931,5630,edward norton,1185224390 +144931,5630,emily watson,1185229290 +144931,5630,philip seymour hoffman,1185553223 +144931,5630,ralph fiennes,1185225222 +144931,5633,cate blanchett,1185229640 +144931,5668,alison lohman,1185224600 +144931,5668,noah wyle,1185229524 +144931,5668,renee zellweger,1185224629 +144931,5668,robin wright penn,1185224629 +144931,5791,antonio banderas,1185227864 +144931,5791,edward norton,1185229687 +144931,5791,salma hayek,1185224474 +144931,5816,alan rickman,1185228294 +144931,5902,maggie gyllenhaal,1185231475 +144931,5902,meryl streep,1185224779 +144931,5902,nicolas cage,1185224779 +144931,5952,cate blanchett,1185227667 +144931,5952,elijah wood,1185231201 +144931,5952,viggo mortensen,1185231201 +144931,5954,edward norton,1185227314 +144931,5954,philip seymour hoffman,1185553284 +144931,5991,john c. reilly,1185230421 +144931,5991,renee zellweger,1185224508 +144931,5992,allison janney,1185225618 +144931,5992,claire danes,1185225618 +144931,5992,ed harris,1185224442 +144931,5992,john c. reilly,1185225618 +144931,5992,julianne moore,1185224434 +144931,5992,meryl streep,1185224434 +144931,5992,miranda richardson,1185225618 +144931,5992,nicole kidman,1185224434 +144931,5992,toni collette,1185225416 +144931,5995,adrien brody,1185224858 +144931,6711,bill murray,1185224674 +144931,6711,scarlett johansson,1185224674 +144931,6884,cate blanchett,1185229648 +144931,7147,alison lohman,1185229539 +144931,7147,ewan mcgregor,1185224519 +144931,7147,helena bonham carter,1185228052 +144931,7151,cillian murphy,1185226934 +144931,7151,colin firth,1185226934 +144931,7151,scarlett johansson,1185225026 +144931,7153,cate blanchett,1185227674 +144931,7153,elijah wood,1185231181 +144931,7153,viggo mortensen,1185231181 +144931,7162,jude law,1185553268 +144931,7162,nicole kidman,1185230535 +144931,7162,philip seymour hoffman,1185553268 +144931,7162,renee zellweger,1185230535 +144931,7265,eva green,1185226967 +144931,7265,michael pitt,1185276976 +144931,7361,jim carrey,1185230321 +144931,7361,kate winslet,1185224484 +144931,7361,kirsten dunst,1185230321 +144931,7371,nicole kidman,1185224491 +144931,8368,alan rickman,1185228343 +144931,8368,emma thompson,1185229382 +144931,8373,nicole kidman,1185227369 +144931,8667,colin farrell,1185226218 +144931,8667,dallas roberts,1185226218 +144931,8667,robin wright penn,1185224688 +144931,8667,sissy spacek,1185226218 +144931,8970,dustin hoffman,1185229080 +144931,8970,johnny depp,1185224702 +144931,8970,kate winslet,1185224702 +144931,27706,dustin hoffman,1185228990 +144931,27706,jim carrey,1185228990 +144931,27706,meryl streep,1185227691 +144931,27721,audrey tatou,1185224281 +144931,27721,gaspard ulliel,1185225934 +144931,27721,jodie foster,1185224290 +144931,30793,helena bonham carter,1185228128 +144931,30793,johnny depp,1185228128 +144931,33171,joseph gordon-levitt,1185226152 +144931,37729,helena bonham carter,1185229835 +144931,37741,philip seymour hoffman,1185553276 +144931,40815,alan rickman,1185228386 +144931,40815,miranda richardson,1185228416 +144931,40815,ralph fiennes,1185227902 +144931,45880,kirsten dunst,1185224919 +144931,46578,toni collette,1185225439 +144931,46723,brad pitt,1185229226 +144931,46723,cate blanchett,1185224530 +144931,46976,dustin hoffman,1185228911 +144931,46976,emma thompson,1185224361 +144931,46976,maggie gyllenhaal,1185228911 +144931,46976,will ferrell,1185228953 +144931,47610,edward norton,1185224192 +144931,47610,jessica biel,1185225805 +144931,48560,annette bening,1185226101 +144931,48560,evan rachel wood,1185226101 +144931,48560,gwyneth paltrow,1185226101 +144931,48560,joseph cross,1185226101 +144931,48696,kate winslet,1185224933 +144931,48774,clive owen,1185226351 +144931,48774,julianne moore,1185224755 +144931,48774,michael caine,1185226367 +144931,48997,alan rickman,1185225774 +144931,48997,ben whishaw,1185225774 +144931,48997,dustin hoffman,1185225774 +144931,49286,kate winslet,1185230362 +144931,49961,cate blanchett,1185224406 +144931,49961,judi dench,1185227106 +144931,50804,gaspard ulliel,1185225282 +144931,51412,jessica biel,1185226529 +144931,51412,nicolas cage,1185224906 +144931,54001,alan rickman,1185230680 +144931,54001,emma thompson,1185230691 +144931,54001,helena bonham carter,1185230680 +144931,54001,ralph fiennes,1185230681 +144972,318,crime,1433167681 +144972,318,drama,1433167681 +144972,318,thriller,1433167681 +144972,593,crime,1430331513 +144972,593,psychothriller,1430331513 +144972,593,thriller,1430331513 +144982,69844,Daniel Radcliffe,1249984052 +144982,69844,Emma Watson,1249984055 +144982,69844,not true to the book,1249984333 +144983,490,Aaron Sorkin,1290470715 +144983,6214,NC-17,1208032790 +144983,6567,1980s,1282937523 +144983,8784,Great Soundtrack,1308931199 +144983,55247,Sean Penn,1212840744 +144983,55253,Nudity (Full Frontal - Notable),1215629436 +144983,55908,dialogue driven,1261256931 +144983,55908,entirely dialogue,1261256925 +144983,55908,open ending,1309533447 +144983,55908,philosophical,1261256923 +144983,55908,thought-provoking,1261256921 +144983,58295,based on a true story,1258148095 +144983,58295,Notable Nudity,1258148103 +144983,58295,Nudity (Topless),1258148122 +144983,58295,racism,1258148115 +144983,58808,based on real events,1253478584 +144983,64575,Meryl Streep,1241033080 +144983,64575,movie to see,1241033088 +144983,64839,aging,1248973475 +144983,64839,no clear ending,1248973492 +144983,64839,sport:professional wrestling,1248973496 +144983,67193,Clive Owen,1287784729 +144983,67255,rape,1295128405 +144983,71466,cheesy,1288469960 +144983,71466,fun,1288469971 +144983,72733,Africa,1276294983 +144983,72733,Clint Eastwood,1276294994 +144983,72733,getdvd,1276295000 +144983,72733,Matt Damon,1276294980 +144983,72733,Morgan Freeman,1276294981 +144983,72733,rugby,1276295007 +144983,72733,seen on airplane,1276295011 +144983,72733,South Africa,1276295015 +144983,72998,3d,1262711408 +144983,72998,dazzling,1262711429 +144983,72998,sci-fi,1262711442 +144983,72998,superficial plot,1262711449 +144983,81788,13,1304715297 +144983,81788,good ending,1304715244 +144983,81788,Olivia Wilde;,1304715230 +144983,81788,Russell Crowe,1304715237 +144983,81788,thriller,1304715239 +144983,81817,not a movie,1319179474 +144983,84374,Natalie Portman,1304198918 +144983,88810,oscar 2012,1328887976 +144983,89492,oscar 2012,1328887558 +144983,89904,oscar 2012,1328887600 +144983,90866,oscar 2012,1328888024 +144983,91077,oscar 2012,1328887797 +144983,91325,Oscar 2012,1328887892 +144989,260,lightsaber duel,1443387625 +144989,260,space epic,1443387633 +144999,260,scifi,1441421381 +145022,1603,Guillermo del Toro,1162868645 +145022,1965,punk,1162868718 +145022,2162,children's story,1162869264 +145022,2348,punk,1162868747 +145022,3833,mst3k,1166625459 +145022,6142,mst3k,1166625399 +145022,6395,Romero,1166625424 +145022,7373,Guillermo del Toro,1162867805 +145022,8122,mst3k,1166625392 +145027,296,crime,1424231159 +145027,296,drugs,1424231159 +145027,296,quentin tarantino,1424231159 +145034,260,oldschool,1435966474 +145041,1880,Nudity (Topless - Notable),1175921912 +145048,260,classic,1440257332 +145048,260,sci-fi,1440257321 +145054,260,"sf,science fiction",1430934724 +145062,260,classic sci-fi,1442498324 +145062,260,ROBOTS AND ANDROIDS,1442498335 +145068,665,World War II,1201821266 +145068,1190,Spanish,1201709071 +145068,1391,Parody,1201821058 +145068,1900,Iran,1201709051 +145068,3342,psychology,1201710046 +145068,3535,serial killer,1201782179 +145068,3814,philosophy,1201710211 +145068,4226,psychology,1201709241 +145068,5319,Argentina,1201710829 +145068,48394,fantasy,1201709361 +145068,48394,fascism,1201709378 +145068,48997,serial killer,1201748950 +145068,50872,animation,1201751008 +145069,260,good,1442139629 +145088,296,non-linear,1421682168 +145088,296,stylish,1421682168 +145088,296,violent,1421682168 +145088,356,anti-hippie,1425677799 +145088,356,faux historical,1425677799 +145088,356,overrated,1425677799 +145088,593,atmospheric,1427236089 +145088,593,psychothriller,1427236089 +145088,593,rewatchable,1427236089 +145088,47491,Anders Thomas Jensen,1239621753 +145136,29,fanciful,1201100373 +145179,260,great story,1444019309 +145179,260,must see,1444019300 +145188,527,holocaust,1441017481 +145188,527,World War II,1441017495 +145188,105844,justice,1441017565 +145188,105844,Nudity,1441017535 +145213,593,detective,1425722460 +145213,593,insane,1425722460 +145213,593,murder,1425722460 +145224,260,Science Fiction,1441349897 +145229,7502,War,1447106294 +145254,318,frank darabont,1427534604 +145254,318,hope,1427534604 +145254,318,morgan freeman,1427534604 +145254,108932,Christopher Miller,1427534306 +145254,109487,NASA,1427534713 +145292,260,darkside,1439989789 +145292,260,jedi,1439989778 +145310,120934,documentary,1434039540 +145310,120934,sequel,1434039540 +145310,120934,war,1434039540 +145318,32,Bruce Willis,1263300678 +145318,32,complicated,1263300682 +145318,32,future,1263300684 +145318,32,imdb top 250,1263300688 +145318,32,Post apocalyptic,1263300691 +145318,32,post-apocalyptic,1263300693 +145318,32,time travel,1263300697 +145318,32,twist ending,1263300672 +145318,507,Clint Eastwood,1309129943 +145318,507,Kevin Costner,1309129949 +145318,589,artificial intelligence,1263300784 +145318,589,imdb top 250,1263300788 +145318,589,nuclear war,1263300790 +145318,589,original plot,1263300792 +145318,589,robots,1263300795 +145318,589,sci-fi,1263300797 +145318,589,time travel,1263300799 +145318,780,Roland Emmerich,1263300524 +145318,780,sci-fi,1263300532 +145318,1882,Roland Emmerich,1263300548 +145318,1917,bad science,1263300733 +145318,1917,Ben Affleck,1263300716 +145318,1917,Billy Bob Thornton,1263300720 +145318,1917,Bruce Willis,1263300718 +145318,1917,Owen Wilson,1263300726 +145318,1917,Steve Buscemi,1263300724 +145318,3114,animation,1295476058 +145318,3114,Funny as hell,1295476067 +145318,3114,imdb top 250,1295476070 +145318,3114,Pixar,1295476074 +145318,3114,Pixar animation,1295476079 +145318,3156,Embeth Davidtz,1284938061 +145318,3156,future,1284938065 +145318,3156,Isaac Asimov,1284938100 +145318,3156,Robin Williams,1284938089 +145318,3156,robots,1284938092 +145318,3156,Sam Neill,1284938095 +145318,3156,sci-fi,1284938097 +145318,4235,multiple storylines,1421700581 +145318,5046,androids,1247616932 +145318,5046,Gary Sinise,1247616923 +145318,5046,Good ending,1247616938 +145318,5046,Madeleine Stowe,1247616942 +145318,5046,mistaken identity,1247616948 +145318,5046,Philip K. Dick,1247616953 +145318,5046,powerful ending,1247616956 +145318,5046,wrongly accused,1247616959 +145318,6867,Michelle Williams,1265504188 +145318,6953,melancholic,1421699659 +145318,6953,multiple storylines,1421699664 +145318,6953,Nonlinear,1421699661 +145318,6953,psychological,1421699654 +145318,8361,Roland Emmerich,1263300505 +145318,8361,sci-fi,1263300519 +145318,8371,Judi Dench,1250503248 +145318,8371,shallow plot,1250503236 +145318,8371,space,1250503238 +145318,8371,Vin Diesel,1250503244 +145318,8784,Natalie Portman,1426543339 +145318,8974,2D animation,1311105426 +145318,8974,hilarious,1311105435 +145318,8974,silly,1311105433 +145318,8974,underwater,1311105441 +145318,27803,emotional,1337207217 +145318,27803,FIGHTING THE SYSTEM,1337207210 +145318,27803,Javier Bardem,1337207203 +145318,27803,terminal illness,1337207200 +145318,30707,Bittersweet,1421700615 +145318,30707,Clint Eastwood,1421700608 +145318,30707,dark,1421700622 +145318,30707,Hilary Swank,1421700611 +145318,30707,thought-provoking,1421700625 +145318,33004,americanized movies,1263300651 +145318,33004,dumbed down,1263300647 +145318,33660,1930s,1282079043 +145318,33660,Paul Giamatti,1282079055 +145318,37380,based on a video game,1289489477 +145318,37380,chainsaw,1289489481 +145318,37380,Dwayne Johnson,1289489487 +145318,37380,Half-Assed Productions,1289489494 +145318,37380,The Rock,1289489501 +145318,37380,video game adaptation,1289489504 +145318,42738,heroine in tight suit,1279718176 +145318,42738,Kate Beckinsale,1279718173 +145318,44665,assassination,1357773035 +145318,44665,Bruce Willis,1357773032 +145318,44665,Film Noir,1357773039 +145318,44665,guilty pleasure,1357773044 +145318,44665,hitman,1357773049 +145318,44665,horse racing,1357773052 +145318,44665,mistaken identity,1357773054 +145318,44665,Morgan Freeman,1357773056 +145318,44665,Nudity (Topless),1357773059 +145318,44665,Revenge,1357773062 +145318,44665,twist ending,1357773066 +145318,44665,violent,1357773068 +145318,47099,based on a true story,1276245774 +145318,47099,bittersweet,1276115928 +145318,47099,happy ending,1276245783 +145318,47099,movie to see,1276245785 +145318,47099,poverty,1276245791 +145318,47099,San Francisco,1276115940 +145318,47099,single parents,1276245793 +145318,47099,true story,1276245795 +145318,47099,Will Smith,1276115952 +145318,48774,apocalypse,1263300595 +145318,48774,atmospheric,1419424580 +145318,48774,based on a book,1263300620 +145318,48774,Clive Owen,1263300590 +145318,48774,depressing,1419424601 +145318,48774,disturbing,1419424577 +145318,48774,end of the world,1263300598 +145318,48774,future,1263300603 +145318,48774,futuristic,1263300601 +145318,48774,imdb top 250,1263300607 +145318,48774,Michael Caine,1263300604 +145318,48774,Nudity (Topless),1419424592 +145318,48774,sci-fi,1263300611 +145318,48774,survival,1263300614 +145318,48774,thought-provoking,1419424583 +145318,48774,visually appealing,1419424588 +145318,54503,Emma Stone,1376785601 +145318,54503,Michael Cera,1376785606 +145318,54503,Seth Rogen,1376785608 +145318,55805,Albert Finney,1245839618 +145318,55805,disjointed timeline,1245839620 +145318,55805,Ethan Hawke,1245839623 +145318,55805,Marisa Tomei,1245839629 +145318,55805,non-linear,1245839631 +145318,55805,nonlinear,1245839633 +145318,55805,Philip Seymour Hoffman,1245839639 +145318,58293,Roland Emmerich,1263300487 +145318,60684,1980s,1243859598 +145318,60684,alternate history,1243859591 +145318,60684,sci-fi,1243859582 +145318,61352,Don Cheadle,1243860909 +145318,61352,Guy Pearce,1243860912 +145318,61352,muslim,1243860920 +145318,62511,depressing,1418756660 +145318,62511,Nudity (Topless),1418756665 +145318,62511,Philip Seymour Hoffman,1418756654 +145318,62511,thought-provoking,1418756656 +145318,63072,Charlize Theron,1294450235 +145318,63072,depressing,1294450253 +145318,63072,Guy Pearce,1294450257 +145318,63072,Kodi Smit-McPhee,1294450266 +145318,63072,post-apocalyptic,1294450276 +145318,63072,Viggo Mortensen,1294450280 +145318,63082,India,1245020502 +145318,63082,nonlinear,1245020511 +145318,64716,Drama,1248131683 +145318,66097,alternate reality,1247616667 +145318,66097,alternate universe,1247616674 +145318,66097,animation,1247616683 +145318,66097,author:Neil Gaiman,1247616687 +145318,66097,Dakota Fanning,1247616692 +145318,66097,Neil Gaiman,1247616697 +145318,66097,Surreal,1247616706 +145318,67197,Nicolas Cage,1263300752 +145318,67197,religious propaganda,1263300763 +145318,67197,thought-provoking,1263300768 +145318,67665,fiasco,1243859555 +145318,67665,satirical,1243859559 +145318,68159,Russell Crowe,1243859649 +145318,68552,Nudity (Topless),1360286188 +145318,68659,Kristen Bell,1247521952 +145318,68954,Pixar,1243859481 +145318,70286,aliens,1251584714 +145318,70286,directorial debut,1251584725 +145318,70286,ending,1251584729 +145318,70286,intelligent sci-fi,1251584735 +145318,70286,transformation,1251584750 +145318,71135,aliens,1275148373 +145318,71135,aliens ripoff,1275148380 +145318,71135,Ben Foster,1275148384 +145318,71135,Dennis Quaid,1275148389 +145318,71135,future,1275148393 +145318,71135,horror,1275148396 +145318,71135,post-apocalyptic,1275148403 +145318,71135,sci-fi,1275148407 +145318,71135,space,1275148410 +145318,71135,unlikeable characters,1275148416 +145318,71135,we've seen this before,1275148419 +145318,71282,America-centric,1287489729 +145318,71899,animation,1276986560 +145318,71899,Eric Bana,1276986539 +145318,71899,Philip Seymour Hoffman,1276986545 +145318,71899,Phillip Seymour Hoffman,1276986548 +145318,71899,Toni Collette,1276986542 +145318,71899,touching,1276986551 +145318,72378,Amanda Peet,1263300366 +145318,72378,audience intelligence underestimated,1263300377 +145318,72378,bad physics,1263300380 +145318,72378,bad plot,1263300383 +145318,72378,bad science,1263300386 +145318,72378,Danny Glover,1263300389 +145318,72378,Excellent FXs,1263300393 +145318,72378,future,1263300397 +145318,72378,John Cusack,1263300355 +145318,72378,Roland Emmerich,1263300426 +145318,72378,sci-fi,1263300404 +145318,72378,science fiction,1263300406 +145318,72378,Special Effects,1263300411 +145318,72378,superstition,1263300416 +145318,72378,Woody Harrelson,1263300368 +145318,72701,Gary Oldman,1280183390 +145318,72701,Jessica Biel,1280183394 +145318,72701,soundtrack,1280183400 +145318,72701,soundtrack features bad cover songs,1280183405 +145318,72731,Mark Wahlberg,1279750482 +145318,72731,Michael Imperioli,1279750485 +145318,72731,Peter Jackson,1279750489 +145318,72731,Rachel Weisz,1279750492 +145318,72731,Rose McIver,1279750494 +145318,72731,Saoirse Ronan,1279750497 +145318,72998,futuristic,1263300836 +145318,72998,long,1263300839 +145318,72998,sci-fi,1263300843 +145318,73321,Bible,1294183081 +145318,73321,Christianity,1294183087 +145318,73321,Gary Oldman,1294183094 +145318,73321,post-apocalyptic,1294183102 +145318,73321,religious propaganda,1294183107 +145318,73321,twist ending,1294183113 +145318,74452,Anthony Hopkins,1276390195 +145318,74452,beautiful color,1276390204 +145318,74452,Benicio Del Toro,1276390182 +145318,74452,Emily Blunt,1276390189 +145318,74452,excellent graphics,1276390212 +145318,74452,Hugo Weaving,1276390216 +145318,74452,moody atmosphere,1276390226 +145318,74452,pointless,1276390231 +145318,74458,Ben Kingsley,1274908235 +145318,74458,ending twist,1274908227 +145318,74458,Jackie Earle Haley,1274908257 +145318,74458,Leonardo DiCaprio,1274908261 +145318,74458,Martin Scorsese,1274908265 +145318,74458,plot twist,1274908269 +145318,78499,animation,1295476094 +145318,78499,Pixar,1295476101 +145318,78499,tear jerker,1295476106 +145318,78499,tense,1295476110 +145318,78499,Timothy Dalton,1295476121 +145318,78499,visually appealing,1295476116 +145318,78772,cgi,1295368152 +145318,78772,graduation,1295368156 +145318,78772,Kristen Stewart,1295368162 +145318,78772,Robert Pattinson,1295368168 +145318,78772,stupid main character,1295368171 +145318,79132,alternate reality,1280146970 +145318,79132,Christopher Nolan,1279491555 +145318,79132,clever,1279491557 +145318,79132,complicated,1280146976 +145318,79132,Ellen Page,1279491559 +145318,79132,heist,1279491563 +145318,79132,intellectual,1279491583 +145318,79132,Leonardo DiCaprio,1279491586 +145318,79132,makes you think,1279491596 +145318,79132,mindfuck,1279491589 +145318,79293,Angelina Jolie,1309164958 +145318,79293,betrayal,1309164945 +145318,79293,not happy ending,1309164952 +145318,79879,Elisabeth Shue,1353109710 +145318,81819,Alejandro González Iñárritu,1305037060 +145318,81819,Javier Bardem,1305037070 +145318,81834,Helena Bonham Carter,1303942702 +145318,81834,Ralph Fiennes,1303942710 +145318,81932,Amy Adams,1350084838 +145318,81932,Christian Bale,1350084866 +145318,81932,Mark Wahlberg,1350084871 +145318,81932,sexy redhead,1350084879 +145318,84772,anti-Christian,1319046238 +145318,84772,Atheism,1319046243 +145318,84772,Nick Frost,1319046229 +145318,84772,Simon Pegg,1319046228 +145318,84954,Emily Blunt,1311844806 +145318,84954,Matt Damon,1311844798 +145318,84954,Philip K. Dick,1311844815 +145318,86781,Unexpected Ending,1318771606 +145318,87232,James McAvoy,1329673284 +145318,87232,Kevin Bacon,1329673300 +145318,87232,Michael Fassbender,1329673308 +145318,88129,minimalistic,1318329428 +145318,88129,Nicolas Winding Refn,1318329434 +145318,88129,ryan gosling,1318329421 +145318,88163,Emma Stone,1319046393 +145318,88163,plot twist,1319046401 +145318,88163,Ryan Gosling,1319046399 +145318,90249,android(s)/cyborg(s),1357517890 +145318,90249,bad science,1357517900 +145318,90249,boxing,1357517903 +145318,90249,ending,1357517908 +145318,90249,Evangeline Lilly,1357517910 +145318,90249,fighting,1357517914 +145318,90249,Fighting Robots,1357517917 +145318,90249,Hugh Jackman,1357517924 +145318,90249,robot,1357517927 +145318,90249,robots,1357517931 +145318,90249,sci-fi,1357517932 +145318,90249,Science Fiction,1357517954 +145318,91630,Brad Bird,1336945796 +145318,91630,Simon pegg,1336945757 +145318,91630,Tom Cruise,1336945766 +145318,92507,conspiracy,1341873886 +145318,92507,Denzel Washington,1341873888 +145318,92507,Ryan Reynolds,1341873891 +145318,92507,Vera Farmiga,1341873896 +145318,93363,MUCH BETTER than I thought,1342955524 +145318,93363,sci-fi,1342955527 +145318,94018,bad science,1344894029 +145318,94018,childish,1344894033 +145318,94018,Liam Neeson,1344894036 +145318,94018,Navy,1344894048 +145318,94018,sci-fi,1344894039 +145318,94018,silly,1344894051 +145318,94018,special effects,1344894054 +145318,94780,boring,1357504251 +145318,94780,charlize theron,1357504246 +145318,94780,Chris Hemsworth,1357504249 +145318,94780,fairy tale,1357504259 +145318,94780,Kristen Stewart,1357504262 +145318,94780,magic,1357504267 +145318,94780,unlikeable characters,1357504271 +145318,94864,aliens,1343427154 +145318,94864,Charlize Theron,1343427145 +145318,94864,Michael Fassbender,1343427141 +145318,94864,predictable,1343427157 +145318,96728,acting,1363816079 +145318,96728,Amy Adams,1363816073 +145318,96728,beautiful,1363816076 +145318,96728,Character study,1363816082 +145318,96728,cinematography,1363816084 +145318,96728,confusing,1363816087 +145318,96728,great performances,1363816089 +145318,96728,Joaquin Phoenix,1363816093 +145318,96728,odd,1363816097 +145318,96728,Paul Thomas Anderson,1363816100 +145318,96728,Philip Seymour Hoffman,1363816103 +145318,96728,strange,1363816107 +145318,96728,unique,1363816113 +145318,96728,visually appealing,1363816111 +145318,97225,animation,1358713551 +145318,97225,Genndy Tartakovsky,1358713554 +145318,97752,adapted from:book,1358606229 +145318,97752,atmospheric,1358606226 +145318,97752,based on a book,1358606234 +145318,97752,Ben Whishaw,1358606456 +145318,97752,connection,1358606239 +145318,97752,great acting,1358606243 +145318,97752,Halle Berry,1358606329 +145318,97752,Hugo Weaving,1358606408 +145318,97752,Jim Sturgess,1358606424 +145318,97752,multiple roles,1358606273 +145318,97752,multiple storylines,1358606280 +145318,97752,philosophy,1358606284 +145318,97752,rebellion,1358606293 +145318,97752,sci-fi,1358606304 +145318,97752,thought-provoking,1358606312 +145318,97752,Tom Hanks,1358606379 +145318,97752,visually appealing,1358606317 +145318,98203,boring plot,1361916734 +145318,98203,Kristen Stewart,1361916779 +145318,98203,makes no sense,1361916739 +145318,98203,plot makes no sense,1361916742 +145318,98203,ridiculous,1361916747 +145318,98203,unintentionally funny,1361916758 +145318,98961,American propaganda,1363005887 +145318,98961,assassination,1363005889 +145318,98961,complex morality,1363005894 +145318,98961,Jessica Chastain,1363005898 +145318,98961,Kathryn Bigelow,1363005905 +145318,99114,Jamie Foxx,1365875678 +145318,99114,Leonardo DiCaprio,1365875652 +145318,99114,Revenge,1365875659 +145318,99114,Samuel L. Jackson,1365875662 +145318,103253,dystopia,1376774110 +145318,103253,Neill Blomkamp,1376774107 +145318,103253,visually stunning,1376774112 +145318,104879,absorbing,1390011167 +145318,104879,acting,1390011172 +145318,104879,atmospheric,1390011175 +145318,104879,Denis Villeneuve,1390011177 +145318,104879,great direction,1390011181 +145318,104879,Hugh Jackman,1390011184 +145318,104879,Jake Gyllenhaal,1390011188 +145318,104879,photography,1390011193 +145318,104879,realistic action,1390011196 +145318,104879,thriller,1390011202 +145318,106782,based on a true story,1417416595 +145318,106782,Funny,1417416602 +145318,106782,Leonardo DiCaprio,1417416592 +145318,106782,Martin Scorsese,1417416590 +145318,106782,Nudity (Full Frontal),1417416588 +145318,112290,Ambitious,1421698218 +145318,112290,Partricia Arquette,1421698213 +145318,112290,Richard Linklater,1421698215 +145318,112556,David Fincher,1418516440 +145318,112556,mindfuck,1418516447 +145318,112623,apocalyptic,1437865717 +145318,112623,post-apocalyptic,1437865727 +145318,112623,sci-fi,1437865713 +145318,112852,sci-fi,1418575797 +145318,112852,space,1418575792 +145318,113573,Eva Green,1429986293 +145318,113573,stylized,1429986289 +145318,114935,mindfuck,1422750927 +145318,114935,time travel,1418755987 +145318,114935,twist ending,1418755990 +145318,115680,time travel,1446938407 +145318,115680,unique story,1446938412 +145318,116797,cryptography,1427931460 +145318,122900,heist,1452908109 +145318,122900,paul rudd,1452908112 +145318,122900,sci-fi,1452908106 +145318,122900,superhero,1452908103 +145318,128360,Quentin Tarantino,1452966523 +145318,128360,tension building,1452966526 +145327,45720,girlie movie,1151942450 +145372,4342,gay,1158889961 +145383,356,emotional,1437677576 +145383,356,epic,1437677576 +145383,356,thought provoking,1437677576 +145385,1722,007,1435804681 +145385,1722,action,1435804678 +145385,1722,bond,1435804683 +145385,2953,Christmas,1435804732 +145385,2953,family,1435804735 +145385,2953,funny,1435804745 +145385,2953,Macaulay Culkin,1435804739 +145385,3578,action,1435800757 +145385,3578,heroism,1435800744 +145385,3578,Rome,1435800760 +145385,3578,Russell Crowe,1435800730 +145385,4344,computers,1435801000 +145385,4344,hacking,1435800976 +145385,4344,Halle Berry,1435800985 +145385,4995,genius,1435800801 +145385,4995,psychology,1435800790 +145385,4995,Russell Crowe,1435800802 +145385,7318,beautifully filmed,1435804623 +145385,7318,Biblical,1435804616 +145385,7318,Christianity,1435804609 +145385,7318,good acting,1435804626 +145385,7318,jesus,1435804605 +145385,7318,Jesus Christ,1435804618 +145385,8131,reality,1435800255 +145385,8131,Will Smith,1435800200 +145385,48516,Leonardo DiCaprio,1435800124 +145385,48516,suspense,1435800145 +145385,50703,inspiration for life,1435800665 +145385,50703,inspirational,1435800667 +145385,53972,action packed,1435801025 +145385,53972,bruce willis,1435801021 +145385,53972,unrealistic action,1435801032 +145395,2,fantasy,1250387719 +145395,2,Robin Williams,1250387724 +145395,17,19th century,1250389350 +145395,17,based on a book,1221963697 +145395,17,chick flick,1221963733 +145395,17,costume drama,1250389350 +145395,17,Great Screenplays,1221963713 +145395,17,heartwarming,1250389350 +145395,17,historical,1250389350 +145395,17,literature,1221963708 +145395,17,period piece,1368187963 +145395,17,romantic,1250389350 +145395,35,entirely dialogue,1368187881 +145395,43,historical,1368188931 +145395,74,chick flick,1368188871 +145395,105,heartwarming,1221966657 +145395,111,character study,1368188332 +145395,151,18th century,1368188228 +145395,215,poignant,1221966985 +145395,215,reflective,1221966979 +145395,215,wistful,1221967005 +145395,236,romantic,1368188059 +145395,265,bittersweet,1250389998 +145395,265,compassionate,1250390056 +145395,265,intimate,1250389994 +145395,265,magic,1250389996 +145395,265,romantic,1250390022 +145395,265,STAR-CROSSED LOVERS,1221965135 +145395,265,SUPERNATURAL ROMANCE,1250390016 +145395,272,period piece,1368187963 +145395,307,reflective,1368188535 +145395,515,period piece,1368187963 +145395,838,18th century,1250390451 +145395,838,comedy,1250390408 +145395,838,costume drama,1368188106 +145395,838,literature,1250390388 +145395,838,Romance,1250390412 +145395,919,wizards,1368189013 +145395,920,historical drama,1228678419 +145395,971,classic,1226802718 +145395,971,Tennessee Williams,1226802711 +145395,991,historical,1368188931 +145395,1196,modern fantasy,1368188609 +145395,1197,modern fantasy,1368188609 +145395,1204,stunning,1368189107 +145395,1207,bittersweet,1250389457 +145395,1207,ethical,1250389457 +145395,1207,heartwarming,1250389457 +145395,1207,poignant,1250389457 +145395,1228,character study,1368188332 +145395,1251,reflective,1368188535 +145395,1259,unlikely friendships,1368187595 +145395,1271,based on a book,1228678473 +145395,1271,unlikely friendships,1368187595 +145395,1277,18th century,1368188228 +145395,1288,hilarious,1368189325 +145395,1296,costume drama,1368188106 +145395,1296,period piece,1368187963 +145395,1307,romantic,1368188058 +145395,1307,unlikely friendships,1368187595 +145395,1674,Character study,1221964387 +145395,1674,compassionate,1250390549 +145395,1674,engaging,1250390549 +145395,1674,ethical,1221964387 +145395,1674,realistic,1250390549 +145395,1682,modern fantasy,1368188609 +145395,1693,historical,1368188931 +145395,1719,reflective,1368188535 +145395,1961,true story,1221967975 +145395,2020,costume drama,1368188106 +145395,2020,period piece,1368187963 +145395,2125,girlie movie,1368188755 +145395,2161,fantasy world,1368189260 +145395,2193,fantasy world,1368189260 +145395,2194,1930s,1260544549 +145395,2313,based on a true story,1221967053 +145395,2333,character study,1368188332 +145395,2336,period piece,1368187963 +145395,2371,comedy,1368188438 +145395,2424,romantic,1368188059 +145395,2502,quirky,1250388951 +145395,2502,slackers,1250388943 +145395,2575,intimate,1368187778 +145395,2671,romantic,1368188059 +145395,2690,comedy,1250390250 +145395,2690,costume drama,1368188106 +145395,2690,engaging,1250390250 +145395,2690,historical,1250390250 +145395,2690,rich settings,1250390250 +145395,2690,romance,1250390250 +145395,2690,witty,1250390250 +145395,2791,hilarious,1368189325 +145395,2912,OUT FOR REVENGE,1226803110 +145395,2912,own,1226803089 +145395,2927,intimate,1368187778 +145395,2968,fantasy world,1368189260 +145395,2997,modern fantasy,1368188609 +145395,3053,historical,1368188931 +145395,3163,creative,1250389256 +145395,3163,ensemble cast,1250389256 +145395,3163,Gilbert & Sullivan,1250389256 +145395,3163,magical,1250389256 +145395,3163,pageantry,1250389256 +145395,3163,Victorian era,1250389256 +145395,3260,costume drama,1368188106 +145395,3260,E.M. Forster,1231644582 +145395,3260,Emma Thompson,1231644601 +145395,3260,romantic,1231644617 +145395,3421,comedy,1368188438 +145395,3421,Funny,1250363143 +145395,3421,slackers,1250363143 +145395,3421,sophomoric,1250363143 +145395,3468,character study,1368188332 +145395,3578,historical,1368188931 +145395,3668,beautiful,1250389490 +145395,3668,Romance,1250389477 +145395,3671,hilarious!,1226803341 +145395,3730,character study,1368188332 +145395,3819,Foodie,1250362775 +145395,3819,quirky,1250362703 +145395,3996,stunning,1368189107 +145395,4069,chick flick,1368188871 +145395,4085,comedy,1368188438 +145395,4144,intimate,1368187778 +145395,4467,18th century,1368188229 +145395,4823,chick flick,1368188871 +145395,4896,fantasy world,1368189260 +145395,4976,Alzheimer's disease,1221965557 +145395,4976,compassionate,1221965574 +145395,5013,atmospheric,1221967133 +145395,5013,costume drama,1250390370 +145395,5013,ensemble cast,1221967133 +145395,5013,historical drama,1250390370 +145395,5013,Period piece,1221967133 +145395,5415,authentic,1315235248 +145395,5415,inspiring,1315235248 +145395,5415,Outré,1315235248 +145395,5464,father and son,1228678277 +145395,5618,dreamlike,1250386640 +145395,5618,fantasy world,1368189260 +145395,5952,wizards,1368189013 +145395,6062,hilarious,1250390861 +145395,6299,Good Documentary,1250387238 +145395,6299,nature,1250387245 +145395,6620,compassionate,1221966573 +145395,6620,nerdy,1221966573 +145395,6620,romance,1221966605 +145395,6620,UNLIKELY FRIENDSHIPS,1221966605 +145395,6729,literary adaptation,1221968454 +145395,6729,merchant-ivory,1221968473 +145395,6729,poignant,1221968486 +145395,6947,adventurous,1250389976 +145395,6947,drama,1250389976 +145395,6947,expansive,1250389976 +145395,6947,heroic,1250389976 +145395,6947,historical,1250389976 +145395,6985,passionate,1221968596 +145395,7087,E.M. Forster,1221965032 +145395,7087,Inspiring,1250389797 +145395,7087,literary adaptation,1221965023 +145395,7087,pageant,1250389797 +145395,7090,stunning,1368189107 +145395,7153,wizards,1368189013 +145395,7156,reflective,1368188535 +145395,7232,atmospheric,1221968339 +145395,7232,exotic,1221968339 +145395,7232,India,1221968339 +145395,7232,merchant-ivory,1221968339 +145395,7572,engaging,1250389409 +145395,7572,thought-provoking,1250389409 +145395,7572,witty,1250389409 +145395,8368,fantasy world,1368189260 +145395,8641,comedy,1368188438 +145395,8949,picaresque drama,1250390767 +145395,8949,romantic,1250390767 +145395,25805,lyrical,1221964118 +145395,25805,stylized,1221964117 +145395,25805,whimsical,1221964124 +145395,37741,character study,1368188332 +145395,41571,intrigue,1250389861 +145395,41571,rich settings,1250389861 +145395,42021,merchant-ivory,1221968094 +145395,42021,poignant,1221968118 +145395,43333,engaging,1228677956 +145395,43333,provocative,1228677964 +145395,55290,foul language,1250388993 +145395,55290,twist,1250389001 +145395,60069,cute,1250390699 +145395,60069,ecology,1221964720 +145395,60069,funny,1250390699 +145395,60069,poignant,1250390699 +145395,60950,engaging,1250390635 +145395,60950,philosophical,1250390632 +145395,60950,romance,1250390640 +145395,60950,scenic,1250390638 +145395,70293,inspiring,1253885177 +145395,70293,poignant,1253885177 +145395,70293,uplifting,1253885177 +145395,78039,intimate,1368187778 +145416,3949,addiction,1344116963 +145416,3949,drugs,1344116960 +145416,3949,emotional,1344116973 +145416,3949,psychology,1344116966 +145416,3949,social commentary,1344116972 +145416,51662,fascistic,1344155915 +145421,260,"sci-fi, space",1443121586 +145421,260,space adventure,1443121600 +145425,37240,In Netflix queue,1140925252 +145425,39419,http://movielens.umn.edu/search?action=newSearch&referrer=movieRow&tag=In%20Netflix%20queue,1140925272 +145445,260,space opera,1439761600 +145452,924,atmospheric,1453082227 +145452,924,classic,1453082230 +145452,924,cult film,1453082242 +145452,924,philosophical,1453082224 +145452,924,revolutionary,1453082261 +145452,924,setting:space/space ship,1453082258 +145452,924,slow,1453082221 +145452,924,spacecraft,1453082256 +145452,924,surreal,1453082238 +145452,1206,cult film,1453081721 +145452,1206,irreverent,1453081745 +145452,1206,psychological,1453081715 +145452,1206,psychology,1453081752 +145452,1206,satirical,1453081718 +145452,1206,social commentary,1453081709 +145452,1206,stylized,1453081731 +145452,1206,surreal,1453081735 +145452,1206,violence,1453081726 +145452,2959,atmospheric,1453081833 +145452,2959,complicated,1453081836 +145452,2959,dark comedy,1453081803 +145452,2959,fighting,1453081823 +145452,2959,mental illness,1453081800 +145452,2959,narrated,1453081842 +145452,2959,philosophical,1453081799 +145452,2959,philosophy,1453081797 +145452,2959,psychology,1453081828 +145452,2959,satirical,1453081824 +145452,2959,social commentary,1453081855 +145452,2959,stylized,1453081849 +145452,2959,surreal,1453081794 +145452,2959,violent,1453081813 +145452,5971,anime,1453081686 +145452,5971,nature spirits,1453081865 +145452,5971,Studio Ghibli,1453081871 +145452,6643,Japan,1453082050 +145452,33794,melancholy,1453082301 +145452,33794,philosophical,1453082283 +145452,33794,stylized,1453082301 +145452,33794,super-hero,1453082280 +145452,33794,trivial,1453082375 +145452,77658,enlightening,1453082113 +145452,77658,evolution,1453082119 +145452,77658,physics,1453082117 +145452,77658,science,1453082110 +145452,109374,great dialogue,1453082142 +145452,109374,murder,1453082164 +145452,109374,odd sense of humor,1453082148 +145452,109374,stylized,1453082136 +145452,109374,visually appealing,1453082134 +145462,260,1970s,1438406066 +145462,260,Classic,1438406052 +145464,736,Bill Paxton,1415718574 +145464,4007,finance,1415720243 +145464,33154,documentary,1415720288 +145464,33154,finance,1415720272 +145464,33154,wall street,1415720278 +145467,1060,coming of age,1387317749 +145467,1704,feel-good,1409390241 +145467,1704,inspirational,1409390244 +145467,1704,Robin Williams,1409390251 +145467,2329,Edward Norton,1375908492 +145467,2329,thought-provoking,1375908501 +145467,2427,nature,1373561656 +145467,2932,atmospheric,1372187916 +145467,2932,cinematography,1372187919 +145467,2932,dreamlike,1372187914 +145467,2932,meditative,1372188075 +145467,3006,Al Pacino,1375724166 +145467,3006,Russell Crowe,1375724161 +145467,3897,coming of age,1371989173 +145467,3983,slow,1372096380 +145467,4226,complicated,1393144244 +145467,4226,dark,1393144268 +145467,4226,dreamlike,1393144283 +145467,4226,twist ending,1393144290 +145467,6645,great cinematography,1380013374 +145467,8784,atmospheric,1371456085 +145467,8784,friendship,1371456072 +145467,8784,Great Soundtrack,1371456047 +145467,8784,quirky,1371456062 +145467,8784,quirky romantic,1371456065 +145467,8950,Christian Bale,1408205484 +145467,8950,great acting,1408205484 +145467,8950,powerful ending,1408205487 +145467,33166,cultural conflict,1375449203 +145467,33166,twist ending,1375449219 +145467,36517,atmospheric,1375293505 +145467,36517,great cinematography,1375293499 +145467,36517,tense,1375293501 +145467,55247,Alaska,1377419305 +145467,55247,atmospheric,1377419313 +145467,55247,road trip,1377419299 +145467,55247,self discovery,1377419301 +145467,55908,excellent script,1387557610 +145467,55908,Excellent use of dialogue,1387557584 +145467,55908,thought-provoking,1387557563 +145467,68848,predictable,1375269092 +145467,68848,stupid ending,1375269108 +145467,84242,James Gandolfini,1371991249 +145467,86345,insightful,1371452314 +145467,86345,Louis C.K.,1371452298 +145467,86345,not a movie,1371452293 +145467,86345,smart,1371452306 +145467,86345,stand-up comedy,1371452302 +145467,88179,Anne Hathaway,1372424077 +145467,89039,Brit Marling,1371451954 +145467,89759,Asghar Farhadi,1375723782 +145467,89759,great acting,1375723777 +145467,89759,lies,1375723751 +145467,89759,realistic,1375723772 +145467,89759,social commentary,1375723756 +145467,96691,pointless,1376658235 +145467,99117,funny,1371451300 +145467,99117,Paul Rudd,1371451317 +145467,100244,ecological,1380130320 +145467,100244,loyalty,1380130322 +145467,101285,James Franco,1372455481 +145467,101864,cliche ending,1374789418 +145467,101864,dystopia,1374789406 +145467,101864,post-apocalyptic,1374789415 +145467,101864,Tom Cruise,1374789435 +145467,102123,dialogue,1383597127 +145467,102123,lacks substance,1383597114 +145467,102123,not funny,1383597110 +145467,104841,cinematography,1389820225 +145467,104841,space,1389820252 +145467,104841,visually appealing,1389820232 +145467,107069,American propaganda,1396381178 +145467,107069,Celebrates militarism,1396381182 +145467,107069,friendship,1396381188 +145467,109374,cinematography,1410822564 +145467,109374,funny,1410822587 +145467,109374,stylized,1410822581 +145467,109374,visually appealing,1410822573 +145467,112290,realism,1417375149 +145467,112556,mindfuck,1420446426 +145467,112556,unpredictable,1420446428 +145467,114180,dystopia,1423841635 +145467,116797,Alan Turing,1422811613 +145467,116797,Benedict Cumberbatch,1422811563 +145467,134130,Improvisation,1452282000 +145467,134130,sci-fi,1452281990 +145467,134130,Survival Instinct,1452282024 +145467,142448,mountaineering,1452846629 +145467,142448,visually appealing,1452846676 +145483,441,high school,1303200053 +145483,441,HIGH SCHOOL LIFE,1303200044 +145483,441,teen,1303200050 +145483,595,fairy tale,1303199818 +145483,1777,chick flick,1303200512 +145483,1895,1990s,1303200205 +145483,1895,high school,1303200194 +145483,1895,teen,1303200200 +145483,2316,magic,1303199152 +145483,2316,women,1303199161 +145483,2858,coming of age,1303200716 +145483,4018,girlie movie,1303199402 +145483,4226,cult film,1303200794 +145483,4226,dreamlike,1303200796 +145483,4226,genius,1303200797 +145483,4226,psychological,1303200788 +145483,4226,psychology,1303200790 +145483,4226,twist ending,1303200792 +145483,4306,Cameron Diaz,1303199760 +145483,4306,Disney,1303199771 +145483,4306,Funny,1303199762 +145483,4823,Good Romantic Comedies,1303201213 +145483,4992,time travel,1303201201 +145483,6870,Drama,1303200766 +145483,6870,mystery,1303200759 +145483,27251,adventure,1303199643 +145483,27251,alternate reality,1303199636 +145483,27251,fairy tale,1303199639 +145483,27251,fantasy,1303199637 +145483,27251,romance,1303199641 +145483,33145,chemistry,1303201490 +145483,33145,happy ending,1303201492 +145483,33145,love,1303201495 +145483,33145,soundtrack,1303201497 +145483,36525,chick flick,1303201183 +145483,36525,Mark Ruffalo,1303201177 +145483,36525,Reese Witherspoon,1303201171 +145483,43930,Lindsay Lohan,1303200458 +145483,49286,better than expected,1303201260 +145483,49286,Cameron Diaz,1303201271 +145483,49286,Jude Law,1303201264 +145483,49286,Kate Winslet,1303201262 +145483,49286,romantic comedy,1303201266 +145483,56367,cult film,1303199963 +145483,56367,feel-good,1303199977 +145483,56367,great soundtrack,1303199981 +145483,56367,high school,1303199972 +145483,56367,Jennifer Garner,1303199974 +145483,56367,Michael Cera,1303199984 +145483,56367,notable soundtrack,1303199970 +145483,56367,witty,1303199987 +145483,56715,afterlife,1303199510 +145483,56715,alternate reality,1303199515 +145483,56715,cinematography,1303199531 +145483,56715,cult film,1303199512 +145483,56715,dark comedy,1303199528 +145483,56715,miracles,1303199517 +145483,56715,russian accent,1303199535 +145483,56715,suicide,1303199525 +145483,56715,Will Arnett,1303199522 +145483,58347,fairy tale,1303199014 +145483,58347,modern fantasy,1303199018 +145483,61250,geek sorority,1303199477 +145483,67734,bordering on girly,1303200013 +145483,67734,Jesse Eisenberg,1303200011 +145483,67734,Kristen Stewart,1303200004 +145483,67734,quirky,1303200016 +145483,67734,Ryan Reynolds,1303200018 +145483,67788,cute,1303199301 +145483,67788,dumb but charming,1303199303 +145483,67788,feel-good,1303199298 +145483,67788,romance,1303199308 +145483,70183,cute,1303199415 +145483,70183,entertaining,1303199423 +145483,70183,good chick flick,1303199429 +145483,70183,relationship advice,1303199417 +145483,71579,bittersweet,1303267969 +145483,71579,coming of age,1303267964 +145483,71579,great acting,1303267962 +145483,71579,romance,1303267978 +145483,71579,visually appealing,1303267982 +145483,74458,Leonardo DiCaprio,1303200817 +145483,74458,Mark Ruffalo,1303200820 +145483,74458,plot twist,1303200814 +145483,74458,psychological,1303200826 +145483,74458,twist ending,1303200823 +145483,78499,adventure,1303199721 +145483,78499,childhood,1303199723 +145483,78499,children,1303199740 +145483,78499,friendship,1303199720 +145483,78499,torture,1303199730 +145483,78499,visually appealing,1303199717 +145483,79293,action,1303200670 +145483,79293,assassination,1303200675 +145483,79293,boring,1303200685 +145483,79293,predictable,1303200666 +145483,80463,college,1303268285 +145483,80463,friendship,1303268282 +145483,80463,Oscar Nominee: Director,1303268279 +145483,80463,true story,1303268276 +145483,80549,clique,1303200164 +145483,80549,funny,1303200171 +145483,80549,high school,1303200162 +145493,1517,screwball,1145564802 +145493,4306,animation,1145564798 +145494,466,cool,1144415095 +145494,1997,scary,1144415103 +145512,260,sci-fi,1440390509 +145512,260,Science Fiction,1440390494 +145537,68237,duncan jones,1318704537 +145537,68237,sam rockwell,1318704537 +145537,68237,sci-fi,1318704554 +145537,68237,space,1318704434 +145558,16,Nudity (Rear),1158968326 +145558,16,Nudity (Topless - Brief),1159170325 +145558,18,Nudity (Topless),1158790680 +145558,20,Nudity (Topless - Brief),1159063333 +145558,25,Nudity (Topless),1158732549 +145558,26,Nudity (Topless),1158735173 +145558,43,Nudity (Topless),1158733103 +145558,46,Nudity (Topless - Brief),1159252657 +145558,49,Nudity (Topless - Notable),1158733193 +145558,68,Nudity (Full Frontal - Notable),1158892552 +145558,70,Nudity (Topless - Brief),1158969690 +145558,71,Nudity (Topless),1158892437 +145558,76,Nudity (Topless),1158735247 +145558,78,Nudity (Topless),1158909433 +145558,79,Nudity (Topless),1158735084 +145558,82,Nudity (Full Frontal),1158733744 +145558,85,Nudity (Full Frontal - Notable),1158735616 +145558,110,Nudity (Topless),1158731607 +145558,122,Nudity (Topless - Brief),1159062512 +145558,125,Nudity (Topless - Brief),1159064093 +145558,129,Nudity (Topless - Notable),1158732602 +145558,132,Nudity (Rear),1158790354 +145558,132,Nudity (Topless - Brief),1159172133 +145558,148,Nudity (Topless - Notable),1158734777 +145558,154,Nudity (Rear),1158733986 +145558,156,Nudity (Topless),1159158102 +145558,163,Nudity (Topless - Brief),1158969666 +145558,170,Nudity (Topless - Brief),1158980041 +145558,175,Nudity (Full Frontal),1158732992 +145558,176,Nudity (Topless),1158733002 +145558,179,Nudity (Topless - Brief),1158908945 +145558,180,Nudity (Topless),1158789099 +145558,183,Nudity (Topless),1242270904 +145558,193,Nudity (Full Frontal - Notable),1158791124 +145558,196,Nudity (Topless - Notable),1158735314 +145558,198,Nudity (Topless),1158733139 +145558,218,Nudity (Topless - Notable),1158732298 +145558,229,Nudity (Topless - Notable),1158732372 +145558,233,Nudity (Topless - Notable),1158731756 +145558,234,Nudity (Full Frontal - Notable),1158790710 +145558,247,Nudity (Topless),1158735008 +145558,249,Nudity (Full Frontal),1159420240 +145558,253,Nudity (Full Frontal),1159340305 +145558,259,Nudity (Topless - Brief),1159137531 +145558,265,Nudity (Full Frontal - Notable),1158733872 +145558,266,Nudity (Topless - Brief),1158966536 +145558,281,Nudity (Topless - Notable),1158732579 +145558,282,Nudity (Full Frontal),1158788023 +145558,291,Nudity (Topless - Notable),1159043380 +145558,302,Nudity (Full Frontal),1158733569 +145558,303,Nudity (Topless - Brief),1158979810 +145558,305,Nudity (Full Frontal),1158785906 +145558,315,Nudity (Rear),1159331090 +145558,315,Nudity (Topless),1158735306 +145558,319,Nudity (Topless - Brief),1158979929 +145558,328,Nudity (Topless),1158792204 +145558,347,Nudity (Topless - Notable),1158884525 +145558,353,Nudity (Rear),1158732052 +145558,354,Nudity (Topless - Brief),1158909555 +145558,379,Nudity (Full Frontal),1159329190 +145558,383,Nudity (Topless - Brief),1159052961 +145558,405,Nudity (Full Frontal),1159069526 +145558,416,Nudity (Topless),1158734782 +145558,422,Nudity (Topless - Brief),1158884647 +145558,426,Nudity (Topless - Notable),1158734806 +145558,427,Nudity (Topless - Notable),1158785892 +145558,431,Nudity (Topless),1158732804 +145558,436,Nudity (Full Frontal - Notable),1158791033 +145558,444,Nudity (Full Frontal - Brief),1159238821 +145558,451,Nudity (Topless - Notable),1158732393 +145558,467,Nudity (Topless - Notable),1158787878 +145558,469,Nudity (Topless - Brief),1158908668 +145558,481,Nudity (Topless - Brief),1158969800 +145558,482,Nudity (Topless - Notable),1158735135 +145558,490,Nudity (Rear),1158789528 +145558,490,Nudity (Topless - Brief),1159172256 +145558,495,Nudity (Full Frontal - Notable),1158735740 +145558,501,Nudity (Topless),1158821995 +145558,506,Nudity (Full Frontal),1158907519 +145558,509,Nudity (Full Frontal - Notable),1158732120 +145558,517,Nudity (Full Frontal - Brief),1159339515 +145558,517,Nudity (Rear),1159339515 +145558,517,Nudity (Topless),1158788865 +145558,518,Nudity (Topless - Notable),1158735236 +145558,521,Nudity (Topless),1158734634 +145558,527,Nudity (Full Frontal - Brief),1159235877 +145558,535,Nudity (Full Frontal - Notable),1158788750 +145558,537,Nudity (Full Frontal - Notable),1158735270 +145558,540,Nudity (Rear),1159328971 +145558,540,Nudity (Topless),1158735298 +145558,541,Nudity (Topless),1158967433 +145558,550,Nudity (Rear),1159064344 +145558,550,Nudity (Topless - Brief),1159064344 +145558,574,Nudity (Full Frontal),1158889273 +145558,606,Nudity (Topless - Brief),1158883125 +145558,611,Nudity (Topless),1158822952 +145558,628,Nudity (Topless - Brief),1158970314 +145558,630,Nudity (Full Frontal - Notable),1158732305 +145558,640,Nudity (Full Frontal - Brief),1159238945 +145558,650,Nudity (Topless - Brief),1158883294 +145558,674,Nudity (Topless - Brief),1159071184 +145558,696,Nudity (Full Frontal),1158734850 +145558,698,Nudity (Full Frontal - Notable),1158892848 +145558,707,Nudity (Topless - Brief),1159052511 +145558,731,Nudity (Topless - Notable),1158735002 +145558,735,Nudity (Topless - Notable),1158732310 +145558,737,Nudity (Topless),1159054022 +145558,762,Nudity (Topless - Notable),1158792165 +145558,766,Nudity (Topless),1158821263 +145558,778,Nudity (Full Frontal - Notable),1159583702 +145558,781,Nudity (Full Frontal - Notable),1158735320 +145558,809,Nudity (Topless - Brief),1158885054 +145558,835,Nudity (Topless - Notable),1158732918 +145558,839,Nudity (Topless - Brief),1159063958 +145558,842,Nudity (Topless),1158818125 +145558,858,Nudity (Topless),1158732409 +145558,864,Nudity (Topless),1158735406 +145558,866,Nudity (Topless - Notable),1158732793 +145558,891,Nudity (Topless),1158819047 +145558,923,Obsession,1158866010 +145558,996,Nudity (Rear),1159331404 +145558,996,Nudity (Topless - Brief),1159331404 +145558,999,Nudity (Topless - Notable),1158734743 +145558,1037,Nudity (Topless),1158790987 +145558,1043,Nudity (Rear),1158909012 +145558,1044,Nudity (Topless - Notable),1158735343 +145558,1053,Nudity (Topless - Notable),1158732585 +145558,1056,Nudity (Full Frontal - Notable),1158732516 +145558,1081,Nudity (Topless),1158735750 +145558,1092,Nudity (Full Frontal - Notable),1158732764 +145558,1093,Nudity (Topless),1158732887 +145558,1120,Nudity (Full Frontal - Notable),1158733088 +145558,1127,Nudity (Topless - Brief),1158968383 +145558,1130,Nudity (Full Frontal),1158819570 +145558,1132,Nudity (Full Frontal),1158733077 +145558,1161,Nudity (Full Frontal),1158892155 +145558,1173,Nudity (Full Frontal - Notable),1158732366 +145558,1179,Nudity (Full Frontal),1158734996 +145558,1183,Nudity (Full Frontal - Notable),1158734950 +145558,1190,Nudity (Full Frontal - Notable),1158735371 +145558,1191,Nudity (Topless),1158824215 +145558,1193,Nudity (Topless - Brief),1158966939 +145558,1194,Nudity (Topless),1158735628 +145558,1199,Nudity (Topless - Brief),1158970359 +145558,1206,Nudity (Full Frontal),1158732852 +145558,1208,Nudity (Topless),1158732278 +145558,1215,Nudity (Topless - Brief),1158971033 +145558,1216,Nudity (Topless - Brief),1158889375 +145558,1225,Nudity (Topless),1158734405 +145558,1227,Nudity (Full Frontal),1159419260 +145558,1240,Nudity (Topless),1158791096 +145558,1249,Nudity (Topless - Brief),1158972376 +145558,1252,Nudity (Topless - Brief),1158969219 +145558,1258,Nudity (Full Frontal),1159342612 +145558,1264,Nudity (Topless),1158734201 +145558,1268,Nudity (Topless - Notable),1158732619 +145558,1273,Nudity (Full Frontal),1159137945 +145558,1275,Nudity (Topless - Brief),1158971358 +145558,1295,Nudity (Full Frontal - Notable),1158733172 +145558,1298,Nudity (Topless),1159053360 +145558,1300,Nudity (Full Frontal - Brief),1159419523 +145558,1321,Nudity (Topless - Brief),1158994921 +145558,1327,Nudity (Topless),1158786481 +145558,1339,Nudity (Topless),1158734818 +145558,1342,Nudity (Topless),1158734855 +145558,1345,Nudity (Full Frontal - Notable),1158788563 +145558,1346,Nudity (Full Frontal - Notable),1158786643 +145558,1354,Nudity (Full Frontal - Notable),1158731775 +145558,1357,Nudity (Topless - Brief),1158972536 +145558,1378,Nudity (Topless - Brief),1159051227 +145558,1379,Nudity (Rear),1158735421 +145558,1385,Nudity (Topless - Notable),1158733177 +145558,1419,Nudity (Full Frontal - Notable),1158733186 +145558,1422,Nudity (Topless - Brief),1159072010 +145558,1428,Nudity (Topless - Notable),1158731871 +145558,1437,Nudity (Topless - Notable),1158732007 +145558,1447,Nudity (Topless),1158734605 +145558,1464,Nudity (Topless - Notable),1158735760 +145558,1475,Nudity (Full Frontal - Notable),1158735130 +145558,1476,Nudity (Full Frontal - Notable),1158788959 +145558,1480,Nudity (Rear),1159138834 +145558,1483,Nudity (Full Frontal - Notable),1158788575 +145558,1498,Nudity (Topless - Notable),1158735079 +145558,1502,Nudity (Full Frontal),1158732528 +145558,1520,Nudity (Topless - Brief),1207545783 +145558,1527,Nudity (Topless - Brief),1158969536 +145558,1554,Nudity (Full Frontal - Notable),1158909509 +145558,1567,Nudity (Topless - Brief),1158965488 +145558,1586,Nudity (Rear),1158732402 +145558,1587,Nudity (Topless),1158734674 +145558,1590,Nudity (Topless),1158732893 +145558,1611,Nudity (Topless),1158735169 +145558,1617,Nudity (Topless - Brief),1158966881 +145558,1627,Nudity (Topless - Brief),1158969512 +145558,1645,Nudity (Full Frontal - Notable),1158732379 +145558,1660,Nudity (Topless - Brief),1158893736 +145558,1663,Nudity (Topless - Notable),1158735339 +145558,1673,Nudity (Full Frontal - Notable),1158732285 +145558,1674,Nudity (Topless - Notable),1158732723 +145558,1676,Nudity (Topless),1158791012 +145558,1683,Nudity (Topless - Notable),1158733363 +145558,1719,Nudity (Full Frontal),1159252009 +145558,1721,Nudity (Topless - Notable),1158791084 +145558,1726,Nudity (Rear),1159330953 +145558,1726,Nudity (Topless),1158882432 +145558,1729,Nudity (Rear),1158732507 +145558,1732,Nudity (Full Frontal - Brief),1159235446 +145558,1748,Nudity (Topless),1158732874 +145558,1753,Nudity (Topless),1159158491 +145558,1784,Nudity (Topless - Brief),1158969502 +145558,1791,Nudity (Topless - Notable),1158734412 +145558,1805,Nudity (Topless - Notable),1158735426 +145558,1836,Nudity (Topless - Brief),1159341862 +145558,1840,Nudity (Topless),1158732431 +145558,1841,Nudity (Full Frontal),1158971102 +145558,1844,Nudity (Topless),1158733779 +145558,1862,Nudity (Full Frontal),1159330163 +145558,1862,Nudity (Rear),1159330163 +145558,1880,Nudity (Topless - Notable),1158732079 +145558,1950,Nudity (Topless - Brief),1159074922 +145558,1952,Nudity (Topless - Brief),1159052143 +145558,1953,Nudity (Rear),1158977714 +145558,1955,Nudity (Topless - Notable),1158732072 +145558,1958,Nudity (Topless - Brief),1159053575 +145558,1961,Nudity (Topless - Brief),1158967539 +145558,1964,Nudity (Topless - Brief),1159079821 +145558,1970,Nudity (Topless),1158818313 +145558,1971,Nudity (Topless),1158882367 +145558,1973,Nudity (Topless - Brief),1158908465 +145558,1974,Nudity (Topless - Brief),1159071925 +145558,1975,Nudity (Full Frontal),1158883917 +145558,1982,Nudity (Topless),1158733635 +145558,1983,Nudity (Topless),1158889126 +145558,2000,Nudity (Topless),1158732997 +145558,2001,Nudity (Topless),1158732555 +145558,2006,Nudity (Topless - Brief),1158970242 +145558,2020,Nudity (Topless - Notable),1158732060 +145558,2022,Nudity (Topless),1158732543 +145558,2023,Nudity (Topless - Brief),1158971560 +145558,2024,Nudity (Topless),1158732665 +145558,2074,Nudity (Full Frontal - Notable),1158792093 +145558,2076,Nudity (Full Frontal - Notable),1158731929 +145558,2100,Nudity (Rear),1158733135 +145558,2100,Nudity (Topless - Brief),1159170114 +145558,2108,Nudity (Topless - Brief),1158979057 +145558,2111,Nudity (Topless),1158734588 +145558,2112,Nudity (Topless),1158732416 +145558,2117,Nudity (Full Frontal - Notable),1158733345 +145558,2118,Nudity (Topless - Brief),1159252975 +145558,2127,Nudity (Full Frontal - Notable),1158732907 +145558,2130,Nudity (Topless),1158731917 +145558,2134,Nudity (Topless - Brief),1159054209 +145558,2144,Nudity (Topless),1158795316 +145558,2159,Nudity (Topless - Brief),1158884972 +145558,2245,Nudity (Topless),1158735410 +145558,2247,Nudity (Topless),1158735156 +145558,2259,Nudity (Full Frontal - Notable),1158788556 +145558,2262,Nudity (Topless - Notable),1158732213 +145558,2263,Nudity (Topless),1158735258 +145558,2269,Nudity (Topless),1158735071 +145558,2280,Nudity (Rear),1159341131 +145558,2280,Nudity (Topless - Brief),1159341131 +145558,2282,Nudity (Full Frontal),1159341992 +145558,2283,Nudity (Full Frontal),1158735264 +145558,2289,Nudity (Topless - Brief),1158972170 +145558,2301,Nudity (Topless - Brief),1159069266 +145558,2303,Nudity (Topless),1158734257 +145558,2312,Nudity (Rear),1158732840 +145558,2314,Nudity (Full Frontal),1158786821 +145558,2318,Nudity (Topless),1158732425 +145558,2328,Nudity (Rear),1158884050 +145558,2329,Nudity (Topless),1158731865 +145558,2331,Nudity (Full Frontal),1158907582 +145558,2333,Nudity (Topless - Brief),1159053632 +145558,2336,Nudity (Topless),1158734132 +145558,2348,Nudity (Topless),1158733126 +145558,2352,Nudity (Topless),1158732776 +145558,2360,Nudity (Topless - Brief),1158889321 +145558,2366,Nudity (Topless - Brief),1159051842 +145558,2367,Nudity (Topless - Brief),1159077898 +145558,2369,Nudity (Topless - Brief),1159052317 +145558,2377,Nudity (Full Frontal - Notable),1158786655 +145558,2378,Nudity (Topless - Brief),1159054322 +145558,2381,Nudity (Topless),1158818026 +145558,2387,Nudity (Rear),1159329139 +145558,2387,Nudity (Topless),1158818891 +145558,2389,Nudity (Topless - Brief),1159079912 +145558,2390,Nudity (Topless - Brief),1159077547 +145558,2396,Nudity (Topless - Notable),1158732128 +145558,2407,Nudity (Rear),1158732322 +145558,2416,Nudity (Topless),1158788504 +145558,2428,Nudity (Topless - Brief),1159054543 +145558,2440,Nudity (Topless - Notable),1158734544 +145558,2442,Nudity (Topless - Brief),1158891341 +145558,2447,Nudity (Topless),1158791076 +145558,2454,Nudity (Topless - Brief),1159171725 +145558,2455,Nudity (Topless - Brief),1158972001 +145558,2457,Nudity (Rear),1158891261 +145558,2457,Nudity (Topless - Brief),1159172442 +145558,2463,Nudity (Topless - Brief),1159068561 +145558,2467,Nudity (Full Frontal - Notable),1158733704 +145558,2474,Nudity (Topless - Brief),1158969542 +145558,2476,Nudity (Topless),1158819102 +145558,2505,Nudity (Full Frontal - Brief),1159238649 +145558,2509,Nudity (Topless - Notable),1158734463 +145558,2518,Nudity (Topless),1158733082 +145558,2528,Nudity (Topless),1158735590 +145558,2541,Nudity (Topless - Brief),1158979692 +145558,2542,Nudity (Topless),1158971273 +145558,2551,Nudity (Topless),1158882631 +145558,2563,Nudity (Topless),1158733248 +145558,2570,Nudity (Topless),1158732739 +145558,2575,Nudity (Full Frontal - Notable),1159585015 +145558,2580,Nudity (Topless),1158972512 +145558,2590,Nudity (Topless),1158786947 +145558,2594,Nudity (Topless - Notable),1158733971 +145558,2598,Nudity (Topless - Brief),1158969590 +145558,2606,Nudity (Topless),1158786761 +145558,2657,Nudity (Topless - Brief),1158969888 +145558,2668,Nudity (Topless),1158884405 +145558,2674,Nudity (Full Frontal - Notable),1158798017 +145558,2686,Nudity (Rear),1159406024 +145558,2686,Nudity (Topless),1158734037 +145558,2688,Nudity (Full Frontal),1158790639 +145558,2701,Nudity (Rear),1158971610 +145558,2702,Nudity (Topless),1158788170 +145558,2704,Nudity (Full Frontal - Notable),1158735666 +145558,2706,Nudity (Topless - Notable),1158732271 +145558,2712,Nudity (Full Frontal - Notable),1158732899 +145558,2730,Nudity (Topless - Brief),1158882906 +145558,2734,Obsession,1238459790 +145558,2750,Nudity (Rear),1159137863 +145558,2763,Nudity (Topless - Notable),1158791090 +145558,2791,Nudity (Topless - Brief),1159068769 +145558,2793,Nudity (Topless - Notable),1158788416 +145558,2794,Nudity (Topless),1158786201 +145558,2795,Nudity (Topless),1158735388 +145558,2829,Nudity (Rear),1158823185 +145558,2841,Nudity (Topless - Notable),1158735326 +145558,2858,Nudity (Topless - Notable),1158731856 +145558,2862,Nudity (Full Frontal - Notable),1158785974 +145558,2867,Nudity (Topless),1158819704 +145558,2872,Nudity (Rear),1159420738 +145558,2872,Nudity (Topless),1159052033 +145558,2881,Nudity (Topless - Brief),1158980105 +145558,2883,Nudity (Topless),1158819531 +145558,2894,Nudity (Full Frontal - Notable),1158786170 +145558,2901,Nudity (Topless),1158823113 +145558,2908,Nudity (Full Frontal - Notable),1158731966 +145558,2915,Nudity (Full Frontal),1158788813 +145558,2916,Nudity (Topless - Brief),1158968190 +145558,2917,Nudity (Full Frontal - Notable),1158732786 +145558,2942,Nudity (Topless),1158792019 +145558,2950,Nudity (Topless - Brief),1159072375 +145558,2959,Nudity (Topless - Brief),1159146391 +145558,2971,Nudity (Topless),1158733599 +145558,2979,Nudity (Topless - Notable),1158786799 +145558,2988,Nudity (Full Frontal - Brief),1159239570 +145558,2988,Nudity (Rear),1159239570 +145558,2988,Nudity (Topless - Notable),1158732113 +145558,2995,Nudity (Topless - Brief),1159077168 +145558,3018,Nudity (Full Frontal - Notable),1158735886 +145558,3032,Nudity (Rear),1159339851 +145558,3032,Nudity (Topless),1158884098 +145558,3039,Nudity (Topless - Notable),1158735384 +145558,3046,Nudity (Topless),1158735065 +145558,3064,Nudity (Topless - Notable),1158791750 +145558,3067,Nudity (Topless - Brief),1159077360 +145558,3082,Nudity (Topless - Brief),1158979122 +145558,3083,Nudity (Topless - Brief),1159071125 +145558,3093,Nudity (Topless - Brief),1158908406 +145558,3099,Nudity (Topless - Brief),1158889409 +145558,3101,Nudity (Topless - Brief),1158969684 +145558,3102,Nudity (Topless - Brief),1158883499 +145558,3113,Nudity (Topless),1158734943 +145558,3125,Nudity (Topless - Notable),1158736166 +145558,3127,Nudity (Full Frontal - Notable),1158786649 +145558,3145,Nudity (Full Frontal),1159340936 +145558,3146,Nudity (Topless - Brief),1158969487 +145558,3148,Nudity (Rear),1159421206 +145558,3148,Nudity (Topless - Brief),1159421206 +145558,3150,Nudity (Full Frontal - Notable),1158736201 +145558,3152,Nudity (Topless - Notable),1158732537 +145558,3160,Nudity (Topless - Brief),1158971471 +145558,3163,Nudity (Full Frontal - Brief),1159339208 +145558,3163,Nudity (Topless),1158882515 +145558,3168,Nudity (Topless - Brief),1158969675 +145558,3173,Nudity (Topless),1158734765 +145558,3181,Nudity (Topless),1158733484 +145558,3186,Nudity (Topless - Brief),1158969571 +145558,3198,Nudity (Topless),1158731592 +145558,3201,Nudity (Topless),1158821636 +145558,3203,Nudity (Rear),1158734906 +145558,3203,Nudity (Topless - Brief),1159171427 +145558,3204,Nudity (Topless - Brief),1158909185 +145558,3210,Nudity (Full Frontal - Notable),1158734959 +145558,3219,Nudity (Topless),1158788919 +145558,3238,Nudity (Topless - Brief),1158908269 +145558,3249,Nudity (Topless - Brief),1158969832 +145558,3258,Nudity (Rear),1158734921 +145558,3262,Nudity (Topless - Notable),1158791274 +145558,3263,Nudity (Topless),1158735399 +145558,3274,Nudity (Full Frontal - Notable),1158791116 +145558,3275,Nudity (Topless),1158733506 +145558,3285,Nudity (Topless),1158732769 +145558,3301,Nudity (Topless - Notable),1158733200 +145558,3316,Nudity (Topless - Notable),1158788898 +145558,3326,Nudity (Topless),1158735394 +145558,3331,Nudity (Topless - Notable),1158786021 +145558,3342,Nudity (Topless - Brief),1158908800 +145558,3355,Nudity (Topless),1158789046 +145558,3361,Nudity (Topless),1158731973 +145558,3421,Nudity (Topless - Notable),1158734759 +145558,3424,Nudity (Topless),1159053511 +145558,3452,Nudity (Topless - Brief),1159070745 +145558,3457,Nudity (Topless - Notable),1158788222 +145558,3476,Nudity (Topless),1158732066 +145558,3478,Nudity (Topless - Brief),1159142304 +145558,3498,Nudity (Topless),1158734138 +145558,3503,Nudity (Topless - Brief),1158907993 +145558,3504,Nudity (Topless - Brief),1159063091 +145558,3505,Nudity (Topless),1158732570 +145558,3508,Nudity (Topless - Brief),1159419147 +145558,3525,Nudity (Topless),1158788498 +145558,3535,Nudity (Topless),1158735684 +145558,3550,Nudity (Topless - Notable),1158735584 +145558,3551,Nudity (Topless),1158735150 +145558,3552,Nudity (Topless),1158732799 +145558,3577,Nudity (Full Frontal - Notable),1158791001 +145558,3617,Nudity (Topless - Notable),1158733109 +145558,3626,Nudity (Full Frontal - Notable),1158788013 +145558,3638,Nudity (Topless - Brief),1159063841 +145558,3639,Nudity (Topless - Brief),1159073700 +145558,3649,Nudity (Topless - Brief),1158893800 +145558,3668,Nudity (Topless - Brief),1158969617 +145558,3684,Nudity (Topless - Brief),1159143168 +145558,3685,Nudity (Topless - Brief),1159080500 +145558,3688,Nudity (Full Frontal - Notable),1158786805 +145558,3691,Nudity (Full Frontal - Notable),1158786457 +145558,3697,Nudity (Full Frontal - Brief),1159330905 +145558,3701,Nudity (Topless - Brief),1159081727 +145558,3705,Nudity (Rear),1159141354 +145558,3706,Nudity (Full Frontal - Notable),1158732747 +145558,3707,Nudity (Rear),1159330580 +145558,3707,Nudity (Topless),1158791696 +145558,3730,Nudity (Full Frontal - Brief),1159421132 +145558,3735,Nudity (Topless),1158734362 +145558,3760,Nudity (Topless),1158889580 +145558,3765,Nudity (Full Frontal - Notable),1158732968 +145558,3770,Nudity (Topless - Brief),1158910012 +145558,3783,Nudity (Full Frontal - Notable),1158734151 +145558,3788,Nudity (Full Frontal),1158908855 +145558,3819,Nudity (Topless - Notable),1158889903 +145558,3824,Nudity (Topless - Brief),1158908901 +145558,3825,Nudity (Topless - Brief),1158969660 +145558,3826,Nudity (Topless - Notable),1158791021 +145558,3863,Nudity (Topless - Brief),1158980263 +145558,3897,Nudity (Topless - Notable),1158731844 +145558,3917,Nudity (Topless - Brief),1159141502 +145558,3947,Nudity (Topless),1158736110 +145558,3949,Nudity (Full Frontal - Notable),1158734157 +145558,3953,Nudity (Full Frontal),1158909279 +145558,3954,Nudity (Topless - Brief),1158965319 +145558,3980,Nudity (Topless - Brief),1159077844 +145558,3981,Nudity (Rear),1158735225 +145558,3981,Nudity (Topless - Brief),1159171474 +145558,3984,Nudity (Topless - Brief),1159070431 +145558,3986,Nudity (Topless - Brief),1159064419 +145558,3992,Nudity (Full Frontal - Notable),1158734493 +145558,3993,Nudity (Topless - Notable),1158736074 +145558,4007,Nudity (Full Frontal - Brief),1159235705 +145558,4007,Nudity (Rear),1158732708 +145558,4008,Nudity (Full Frontal),1159252091 +145558,4014,Nudity (Topless - Brief),1158972687 +145558,4020,Nudity (Topless - Notable),1158735869 +145558,4029,Nudity (Topless - Brief),1159075486 +145558,4036,Nudity (Topless),1158736037 +145558,4041,Nudity (Topless),1158732593 +145558,4056,Obsession,1158866021 +145558,4064,Nudity (Topless - Notable),1158735875 +145558,4084,Nudity (Topless),1158788531 +145558,4086,Nudity (Rear),1158890946 +145558,4088,Nudity (Topless - Notable),1158734787 +145558,4105,Nudity (Topless - Brief),1159070357 +145558,4149,Nudity (Rear),1159330727 +145558,4149,Nudity (Topless),1158883093 +145558,4167,Nudity (Topless),1158791911 +145558,4214,Nudity (Full Frontal - Notable),1158735231 +145558,4223,Nudity (Rear),1159053093 +145558,4234,Nudity (Topless - Brief),1158884865 +145558,4235,Nudity (Topless - Brief),1159421948 +145558,4256,Nudity (Full Frontal - Notable),1158732816 +145558,4262,Nudity (Topless - Brief),1158969708 +145558,4266,Nudity (Topless - Notable),1158791867 +145558,4280,Nudity (Topless),1158732169 +145558,4295,Nudity (Topless - Notable),1158791951 +145558,4308,Nudity (Topless - Brief),1158972055 +145558,4344,Nudity (Topless - Notable),1158791104 +145558,4345,Nudity (Topless),1158735879 +145558,4349,Nudity (Full Frontal),1159564972 +145558,4351,Nudity (Topless),1158732610 +145558,4355,Nudity (Rear),1159338801 +145558,4355,Nudity (Topless),1158786165 +145558,4378,Nudity (Topless),1158733121 +145558,4389,Nudity (Topless - Notable),1158733012 +145558,4390,Nudity (Full Frontal - Notable),1158787826 +145558,4410,Nudity (Topless - Notable),1158732671 +145558,4450,Nudity (Full Frontal - Notable),1158736010 +145558,4465,Nudity (Topless - Brief),1158893374 +145558,4467,Nudity (Topless - Brief),1158969550 +145558,4489,Nudity (Topless),1158732858 +145558,4522,Nudity (Topless),1158789488 +145558,4533,Nudity (Full Frontal - Notable),1158735678 +145558,4546,Obsession,1158865988 +145558,4573,Nudity (Topless),1158734799 +145558,4601,Nudity (Topless),1158790493 +145558,4610,Nudity (Topless - Notable),1158790291 +145558,4615,Nudity (Topless - Notable),1242680183 +145558,4659,Nudity (Rear),1159339459 +145558,4659,Nudity (Topless),1158733116 +145558,4662,Nudity (Topless),1158735252 +145558,4673,Nudity (Topless - Brief),1158884213 +145558,4681,Nudity (Topless - Brief),1159141294 +145558,4699,Nudity (Topless - Notable),1158786141 +145558,4713,Nudity (Rear),1159239887 +145558,4713,Nudity (Topless - Notable),1158732256 +145558,4718,Nudity (Topless),1158734754 +145558,4754,Nudity (Topless - Notable),1158733884 +145558,4776,Nudity (Topless - Brief),1158969600 +145558,4848,Nudity (Full Frontal - Notable),1158731823 +145558,4855,Nudity (Full Frontal - Brief),1159237990 +145558,4865,Nudity (Topless),1158734976 +145558,4870,Nudity (Full Frontal - Notable),1158734446 +145558,4876,Nudity (Full Frontal),1158735356 +145558,4880,Nudity (Rear),1158821723 +145558,4880,Nudity (Topless - Brief),1159170126 +145558,4892,Nudity (Full Frontal - Notable),1158735672 +145558,4932,Nudity (Topless),1158791993 +145558,4973,Nudity (Topless - Brief),1158970647 +145558,4974,Nudity (Topless - Notable),1158787034 +145558,4975,Nudity (Topless),1158732734 +145558,4976,Nudity (Full Frontal - Notable),1158736079 +145558,4979,Nudity (Topless - Brief),1158972144 +145558,5000,Nudity (Topless),1158789093 +145558,5015,Nudity (Full Frontal - Notable),1158785775 +145558,5023,Nudity (Topless - Notable),1158732715 +145558,5026,Nudity (Rear),1159341174 +145558,5026,Nudity (Topless),1158735998 +145558,5049,Nudity (Topless),1158734748 +145558,5060,Nudity (Topless - Brief),1158969347 +145558,5074,Nudity (Topless - Notable),1158735824 +145558,5081,Nudity (Rear),1158734451 +145558,5105,Nudity (Topless - Notable),1158733941 +145558,5110,Nudity (Topless),1158890065 +145558,5151,Nudity (Topless),1158786638 +145558,5161,Nudity (Topless),1158732438 +145558,5219,Nudity (Full Frontal - Brief),1159238593 +145558,5225,Nudity (Full Frontal - Notable),1159071420 +145558,5226,Nudity (Full Frontal - Notable),1158788409 +145558,5269,Nudity (Topless),1158790907 +145558,5275,Nudity (Topless - Notable),1158734550 +145558,5283,Nudity (Topless),1158795200 +145558,5292,Nudity (Topless),1158735292 +145558,5298,Nudity (Full Frontal),1158734687 +145558,5335,Nudity (Full Frontal),1159341027 +145558,5346,Nudity (Full Frontal - Notable),1158790983 +145558,5349,Nudity (Topless - Brief),1158969271 +145558,5364,Nudity (Topless - Notable),1158734556 +145558,5369,Nudity (Full Frontal - Notable),1158786984 +145558,5450,Nudity (Full Frontal - Notable),1158736016 +145558,5477,Nudity (Full Frontal - Notable),1158733355 +145558,5505,Nudity (Topless - Brief),1159141287 +145558,5528,Nudity (Topless),1158735786 +145558,5569,Nudity (Full Frontal),1158734583 +145558,5577,Nudity (Topless - Notable),1158733513 +145558,5605,Nudity (Topless),1158731836 +145558,5617,Nudity (Full Frontal - Notable),1158733877 +145558,5630,Nudity (Topless - Brief),1159064204 +145558,5637,Nudity (Topless),1158732956 +145558,5689,Nudity (Full Frontal),1158734794 +145558,5731,Nudity (Full Frontal),1159585679 +145558,5749,Nudity (Full Frontal - Notable),1158790602 +145558,5769,Nudity (Full Frontal),1158735163 +145558,5791,Nudity (Full Frontal),1159420592 +145558,5809,Nudity (Full Frontal - Notable),1158734599 +145558,5810,Nudity (Rear),1159075892 +145558,5813,Nudity (Topless - Brief),1158970889 +145558,5841,Nudity (Topless),1158791783 +145558,5847,Nudity (Full Frontal - Brief),1186348294 +145558,5878,Nudity (Topless),1158734336 +145558,5881,Nudity (Rear),1158821797 +145558,5902,Nudity (Topless - Notable),1158734143 +145558,5945,Nudity (Topless),1158785767 +145558,5956,Nudity (Topless - Brief),1159340490 +145558,5962,Nudity (Topless - Notable),1158734812 +145558,5996,Nudity (Full Frontal - Notable),1158791334 +145558,5998,Nudity (Topless - Notable),1158790716 +145558,6016,Nudity (Topless - Brief),1159064038 +145558,6036,Nudity (Topless - Notable),1158788756 +145558,6037,Nudity (Full Frontal - Notable),1158791110 +145558,6039,Nudity (Full Frontal),1158785981 +145558,6092,Nudity (Full Frontal - Notable),1158734439 +145558,6111,Nudity (Full Frontal - Notable),1158791566 +145558,6115,Nudity (Full Frontal - Notable),1158787685 +145558,6184,Nudity (Full Frontal - Notable),1158732106 +145558,6187,Nudity (Full Frontal - Brief),1159338378 +145558,6188,Nudity (Topless),1158733290 +145558,6214,Nudity (Full Frontal - Notable),1158736124 +145558,6222,Nudity (Full Frontal - Notable),1158734458 +145558,6223,Nudity (Full Frontal - Notable),1158734693 +145558,6290,Nudity (Rear),1158788132 +145558,6290,Nudity (Topless - Brief),1159171924 +145558,6301,Nudity (Topless - Notable),1158735332 +145558,6344,Nudity (Full Frontal - Notable),1158733320 +145558,6537,Nudity (Rear),1158788402 +145558,6537,Nudity (Topless - Brief),1159171971 +145558,6538,Nudity (Full Frontal - Notable),1158735350 +145558,6548,Nudity (Topless),1158882580 +145558,6552,Nudity (Topless - Brief),1158884326 +145558,6586,Nudity (Topless),1158795214 +145558,6591,Nudity (Full Frontal - Notable),1158733955 +145558,6658,Nudity (Topless - Notable),1158734737 +145558,6663,Nudity (Topless - Brief),1159054789 +145558,6678,Nudity (Topless),1158790552 +145558,6707,Nudity (Topless),1158787953 +145558,6796,Nudity (Topless - Brief),1159078259 +145558,6802,Nudity (Topless - Brief),1158969776 +145558,6807,Nudity (Topless - Brief),1159053422 +145558,6815,Nudity (Rear),1159155546 +145558,6815,Nudity (Topless - Brief),1159170068 +145558,6870,Nudity (Full Frontal - Brief),1159238451 +145558,6872,Nudity (Topless - Notable),1158791820 +145558,6883,Nudity (Topless),1158734469 +145558,6885,Nudity (Full Frontal - Notable),1158786097 +145558,6927,Nudity (Full Frontal - Notable),1158788061 +145558,6942,Nudity (Topless - Notable),1158733655 +145558,6953,Nudity (Topless - Notable),1158733978 +145558,6961,Nudity (Topless),1158732869 +145558,7008,Nudity (Full Frontal - Notable),1158735716 +145558,7010,Nudity (Full Frontal - Notable),1158733018 +145558,7014,Nudity (Full Frontal - Notable),1158792121 +145558,7020,Nudity (Topless),1158733093 +145558,7094,Nudity (Topless - Notable),1158732758 +145558,7095,Nudity (Topless - Notable),1158790182 +145558,7101,Nudity (Topless - Notable),1158734932 +145558,7109,Nudity (Full Frontal - Notable),1158732202 +145558,7137,Nudity (Full Frontal - Notable),1158736117 +145558,7139,Nudity (Topless - Brief),1159158792 +145558,7147,Nudity (Rear),1159051506 +145558,7149,Nudity (Full Frontal - Brief),1159238788 +145558,7155,Nudity (Topless),1158733243 +145558,7158,Nudity (Topless - Brief),1158884767 +145558,7160,Nudity (Topless),1158733992 +145558,7162,Nudity (Topless),1158736003 +145558,7167,Nudity (Topless),1158735504 +145558,7254,Nudity (Full Frontal - Brief),1159237544 +145558,7265,Nudity (Full Frontal - Notable),1158735722 +145558,7285,Nudity (Topless - Notable),1158795517 +145558,7307,Nudity (Full Frontal - Notable),1158790704 +145558,7319,Nudity (Topless - Notable),1158786814 +145558,7323,Nudity (Topless - Brief),1159420449 +145558,7340,Nudity (Topless - Notable),1158735098 +145558,7346,Nudity (Topless),1158795403 +145558,7354,Nudity (Topless),1158735143 +145558,7360,Nudity (Topless - Brief),1159252808 +145558,7361,Nudity (Topless - Brief),1158972319 +145558,7362,Nudity (Topless - Notable),1158786905 +145558,7385,Nudity (Full Frontal - Notable),1158792295 +145558,7442,Nudity (Topless - Notable),1158734725 +145558,7458,Nudity (Rear),1159074154 +145558,7482,Nudity (Topless - Brief),1158882942 +145558,7487,Nudity (Topless - Notable),1158735059 +145558,7521,Nudity (Full Frontal),1159331022 +145558,7521,Nudity (Rear),1159331022 +145558,7616,Nudity (Topless - Notable),1158788658 +145558,7618,Nudity (Topless - Notable),1158734861 +145558,7885,Nudity (Rear),1159338939 +145558,7885,Nudity (Topless),1158735499 +145558,8131,Nudity (Topless - Notable),1158792401 +145558,8201,Nudity (Full Frontal - Notable),1158734771 +145558,8499,Nudity (Topless - Notable),1158788913 +145558,8505,Nudity (Topless),1174411052 +145558,8532,Nudity (Full Frontal - Notable),1158735728 +145558,8585,Nudity (Topless - Notable),1158735184 +145558,8588,Nudity (Full Frontal - Notable),1158790993 +145558,8623,Nudity (Rear),1159158216 +145558,8658,Nudity (Full Frontal - Notable),1158792263 +145558,8702,Nudity (Full Frontal - Notable),1237236121 +145558,8737,Nudity (Topless),1158824113 +145558,8807,Nudity (Topless),1158735930 +145558,8855,Nudity (Full Frontal - Notable),1158792224 +145558,8861,Nudity (Topless),1158786871 +145558,8868,Nudity (Topless - Notable),1158791509 +145558,8948,Nudity (Rear),1159338721 +145558,8948,Nudity (Topless),1158786728 +145558,8949,Nudity (Topless),1158734195 +145558,8950,Nudity (Topless - Notable),1158907710 +145558,8958,Nudity (Topless - Brief),1159081675 +145558,8981,Nudity (Rear),1158821844 +145558,26139,Nudity (Topless - Brief),1173987883 +145558,26158,Nudity (Rear),1221683353 +145558,26170,Nudity (Topless - Brief),1168293868 +145558,26199,Nudity (Topless - Brief),1196545209 +145558,26231,Nudity (Rear),1159330236 +145558,26231,Nudity (Topless),1158792361 +145558,26241,Nudity (Full Frontal),1161986757 +145558,26251,Nudity (Topless - Brief),1215809976 +145558,26318,Nudity (Full Frontal),1181688886 +145558,26359,Nudity (Full Frontal - Notable),1160682645 +145558,26414,Nudity (Topless),1167942405 +145558,26464,Nudity (Full Frontal),1170880324 +145558,26465,Nudity (Topless),1158788296 +145558,26487,Nudity (Topless - Notable),1173987833 +145558,26554,Nudity (Rear),1159418913 +145558,26554,Nudity (Topless),1158733231 +145558,26606,Nudity (Full Frontal - Notable),1161382205 +145558,26677,Nudity (Topless),1158824036 +145558,26700,Nudity (Topless),1181688609 +145558,26746,Nudity (Topless - Brief),1196545141 +145558,26796,Nudity (Topless),1203456989 +145558,26803,Nudity (Topless - Brief),1175534725 +145558,26810,Nudity (Full Frontal),1158792336 +145558,26915,Nudity (Full Frontal),1168293754 +145558,27020,Nudity (Full Frontal - Notable),1158734981 +145558,27022,Nudity (Topless - Notable),1158732157 +145558,27340,Nudity (Topless - Notable),1158792466 +145558,27368,Nudity (Rear),1221422056 +145558,27513,Nudity (Full Frontal),1212795828 +145558,27584,Nudity (Rear),1169843347 +145558,27608,Nudity (Topless),1158791477 +145558,27627,Nudity (Topless),1173388280 +145558,27664,Nudity (Topless),1158791631 +145558,27721,Nudity (Rear),1158970785 +145558,27736,Nudity (Full Frontal),1211678448 +145558,27744,Nudity (Topless),1174411135 +145558,27822,Nudity (Topless - Notable),1158734593 +145558,27866,Nudity (Topless),1201985143 +145558,30810,Nudity (Topless),1158818381 +145558,31270,Nudity (Topless),1169843433 +145558,31408,Nudity (Topless),1158792492 +145558,31522,Nudity (Rear),1160682408 +145558,32460,Nudity (Topless),1193178219 +145558,32587,Nudity (Topless),1158734003 +145558,33036,Nudity (Topless - Brief),1163106214 +145558,33072,Nudity (Topless),1217891576 +145558,33166,Nudity (Topless - Brief),1159421047 +145558,33188,Nudity (Full Frontal - Notable),1158732562 +145558,33454,Nudity (Topless),1163106296 +145558,33592,Nudity (Topless),1179465942 +145558,34162,Nudity (Topless),1158733629 +145558,34198,Nudity (Full Frontal),1160860834 +145558,34292,Nudity (Topless - Brief),1167852954 +145558,34499,Nudity (Topless - Brief),1201984877 +145558,34528,Nudity (Topless - Brief),1158971149 +145558,35836,Nudity (Topless - Notable),1158733787 +145558,36517,Nudity (Rear),1158734100 +145558,36517,Nudity (Topless - Brief),1159170988 +145558,37733,Nudity (Full Frontal - Notable),1158733947 +145558,39183,Nudity (Topless - Notable),1158883008 +145558,39419,Nudity (Full Frontal - Notable),1158735734 +145558,39715,Nudity (Rear),1159338693 +145558,39715,Nudity (Topless),1158734679 +145558,39869,Nudity (Full Frontal - Notable),1158733237 +145558,40412,Nudity (Rear),1159299841 +145558,41411,Nudity (Topless - Brief),1192317959 +145558,41617,Nudity (Topless - Notable),1158788390 +145558,41997,Nudity (Full Frontal),1158891895 +145558,42018,Nudity (Topless - Notable),1158733284 +145558,42197,Nudity (Topless),1174410957 +145558,42721,Nudity (Topless),1158788281 +145558,42900,Nudity (Rear),1160945345 +145558,42900,Nudity (Topless - Brief),1160945345 +145558,44189,Nudity (Full Frontal - Notable),1158791063 +145558,44555,Nudity (Topless - Brief),1171487638 +145558,44665,Nudity (Topless),1158733392 +145558,44694,Nudity (Topless - Brief),1161986819 +145558,44759,Nudity (Full Frontal - Notable),1158788287 +145558,44788,Nudity (Full Frontal),1170880411 +145558,44929,Nudity (Topless),1171487683 +145558,45100,Nudity (Full Frontal - Notable),1250195125 +145558,45440,Nudity (Full Frontal - Notable),1158791408 +145558,45635,Nudity (Full Frontal - Notable),1159299471 +145558,45664,Nudity (Topless),1201380484 +145558,46231,Nudity (Topless),1222457091 +145558,46572,Nudity (Rear),1159904250 +145558,46572,Nudity (Topless),1159904250 +145558,46723,Nudity (Full Frontal),1161984982 +145558,47202,Nudity (Topless),1201985038 +145558,47254,Nudity (Topless - Brief),1168294556 +145558,47274,Nudity (Topless - Brief),1195595103 +145558,47446,Nudity (Full Frontal),1202238994 +145558,47640,Nudity (Topless),1158791365 +145558,47725,Nudity (Topless - Brief),1168294401 +145558,47830,Nudity (Topless),1161986690 +145558,47937,Nudity (Topless - Brief),1201554979 +145558,47940,Nudity (Topless),1217891521 +145558,47978,Nudity (Topless),1195595174 +145558,48142,Nudity (Rear),1159299787 +145558,48142,Nudity (Topless),1159299781 +145558,48304,Nudity (Topless),1165368571 +145558,48342,Nudity (Topless - Brief),1195936175 +145558,48584,Nudity (Topless - Brief),1202238889 +145558,48682,Nudity (Topless - Brief),1212795798 +145558,48696,Nudity (Topless - Brief),1163577245 +145558,48738,Nudity (Topless),1165020782 +145558,48744,Nudity (Full Frontal - Notable),1173334886 +145558,48774,Nudity (Topless - Brief),1167414743 +145558,48856,Nudity (Topless),1173334985 +145558,48997,Nudity (Topless),1167941888 +145558,49263,Nudity (Topless - Brief),1180745075 +145558,49526,Nudity (Topless),1165020617 +145558,49528,Nudity (Topless),1165020569 +145558,49666,Nudity (Full Frontal),1201381270 +145558,50064,Nudity (Topless - Brief),1167414705 +145558,50147,Nudity (Topless - Brief),1167520738 +145558,50189,Nudity (Full Frontal - Notable),1167853059 +145558,50274,Nudity (Topless - Brief),1171487740 +145558,50347,Nudity (Full Frontal),1221512733 +145558,50442,Nudity (Topless - Brief),1168294269 +145558,50447,Nudity (Full Frontal),1168294084 +145558,50514,Nudity (Topless - Brief),1196319661 +145558,50794,Nudity (Topless),1169843669 +145558,50858,Nudity (Topless),1202238811 +145558,51091,Nudity (Topless),1170881001 +145558,51174,Nudity (Topless),1179465780 +145558,51304,Nudity (Topless - Brief),1221593425 +145558,51418,Nudity (Topless - Brief),1174335871 +145558,51662,Nudity (Topless),1173219133 +145558,51666,Nudity (Full Frontal - Brief),1173219341 +145558,52005,Nudity (Topless - Brief),1207777325 +145558,52042,Nudity (Topless),1195936212 +145558,52227,Nudity (Topless - Brief),1201555094 +145558,52241,Nudity (Topless - Brief),1175534795 +145558,52375,Nudity (Topless - Brief),1176419077 +145558,52448,Nudity (Topless - Brief),1209771772 +145558,52456,Nudity (Topless - Brief),1176418993 +145558,52561,Nudity (Topless - Brief),1202238803 +145558,52591,Nudity (Rear - Brief),1216411334 +145558,52644,Nudity (Topless - Brief),1177618969 +145558,52950,Nudity (Rear - Brief),1201984998 +145558,52973,Nudity (Topless - Brief),1179465847 +145558,53127,Nudity (Full Frontal),1180309729 +145558,53189,Nudity (Topless - Brief),1201984753 +145558,53207,Nudity (Rear),1202239049 +145558,53318,Nudity (Full Frontal),1195936279 +145558,53435,Nudity (Topless),1180745220 +145558,53887,Nudity (Topless - Brief),1201380756 +145558,54190,Nudity (Topless - Brief),1190843371 +145558,54196,Nudity (Topless - Brief),1212795882 +145558,54372,Nudity (Full Frontal - Brief),1201380441 +145558,54510,Nudity (Topless - Brief),1219555337 +145558,54796,Nudity (Topless - Brief),1201380596 +145558,54958,Nudity (Topless - Brief),1222375581 +145558,54978,Nudity (Topless - Brief),1212795863 +145558,55069,Nudity (Full Frontal),1201380861 +145558,55080,Nudity (Topless - Brief),1190843099 +145558,55094,Nudity (Topless - Brief),1200447418 +145558,55110,Nudity (Topless - Brief),1202238682 +145558,55118,Nudity (Topless - Brief),1190843092 +145558,55245,Nudity (Topless),1190843462 +145558,55247,Nudity (Topless),1190843535 +145558,55253,Nudity (Full Frontal - Notable),1190843599 +145558,55255,Nudity (Full Frontal),1191530767 +145558,55257,Nudity (Topless),1190843736 +145558,55261,Nudity (Topless - Brief),1191478671 +145558,55269,Nudity (Topless - Brief),1192317924 +145558,55272,Nudity (Topless - Brief),1192317516 +145558,55498,Nudity (Full Frontal),1217891703 +145558,55553,Nudity (Topless - Brief),1195936122 +145558,55765,Nudity (Topless - Brief),1193178294 +145558,55805,Nudity (Topless - Notable),1198969347 +145558,55814,Nudity (Topless - Brief),1201381411 +145558,56001,Nudity (Topless),1195588926 +145558,56003,Nudity (Topless - Brief),1195595148 +145558,56028,Nudity (Topless - Brief),1222375853 +145558,56060,Nudity (Topless),1219555489 +145558,56156,Nudity (Topless - Brief),1195588878 +145558,56274,Nudity (Topless - Brief),1201381175 +145558,56286,Nudity (Topless - Brief),1196545036 +145558,56715,Nudity (Topless),1217891632 +145558,56748,Nudity (Topless - Brief),1221512797 +145558,56788,Nudity (Topless),1198969488 +145558,56805,Nudity (Full Frontal - Brief),1198969436 +145558,57910,Nudity (Topless),1208629732 +145558,58303,Nudity (Topless - Brief),1204402511 +145558,58332,Nudity (Topless - Brief),1222026841 +145558,58334,Nudity (Topless),1220737089 +145558,58367,Nudity (Topless - Brief),1210217386 +145558,58490,Nudity (Rear - Brief),1207777255 +145558,58783,Nudity (Topless),1212266886 +145558,58975,Nudity (Topless - Brief),1207776926 +145558,58998,Nudity (Topless - Brief),1207961184 +145558,59022,Nudity (Topless),1209347712 +145558,59026,Nudity (Topless - Brief),1222204730 +145558,59065,Nudity (Topless - Brief),1221422087 +145558,59105,Nudity (Full Frontal - Brief),1208629845 +145558,59256,Nudity (Topless),1209347763 +145558,59290,Nudity (Full Frontal),1209598932 +145558,59362,Nudity (Topless),1217891397 +145558,59519,Nudity (Topless - Brief),1211678308 +145558,59604,Nudity (Topless - Brief),1221254997 +145558,59725,Nudity (Topless),1212267124 +145558,59729,Nudity (Topless - Brief),1212267009 +145558,59738,Nudity (Topless - Brief),1221767172 +145558,59834,Nudity (Topless - Brief),1222633684 +145558,59915,Nudity (Topless),1212795927 +145558,60044,Nudity (Topless - Brief),1214074105 +145558,60363,Nudity (Topless),1221593334 +145558,60393,Nudity (Topless - Brief),1221512757 +145558,60530,Nudity (Full Frontal),1216150366 +145558,60566,Nudity (Topless - Brief),1222282412 +145558,60654,Nudity (Full Frontal - Notable),1216411408 +145558,60688,Nudity (Topless),1217891359 +145558,60753,Nudity (Topless),1219555288 +145558,60832,Nudity (Topless),1221593484 +145558,61073,Nudity (Full Frontal),1218228252 +145558,61075,Nudity (Topless - Notable),1218228218 +145558,61262,Nudity (Topless - Brief),1219555458 +145558,61354,Nudity (Rear - Brief),1220737277 +145558,61473,Nudity (Topless - Brief),1220737129 +145558,61646,Nudity (Topless),1221683706 +145558,61970,Nudity (Topless - Brief),1222804938 +145558,68324,Nudity (Topless - Brief),1242780329 +145558,68392,Nudity (Topless),1242780280 +145558,68513,Nudity (Topless),1242780207 +145558,68650,Nudity (Topless - Notable),1242678706 +145604,70,cult film,1299738252 +145604,70,Quentin Tarantino,1299738248 +145604,70,twist ending,1299738250 +145604,7932,addiction,1299987482 +145604,7932,New York City,1299987477 +145605,374,Macaulay Culkin,1186882966 +145605,663,Canadian humor,1186880622 +145605,1132,emmanuelle beart,1186883273 +145605,1277,Gerard Depardieu,1186883041 +145605,1295,juliette binoche,1186880681 +145605,1590,slow moving,1186880847 +145605,1688,Disney animated feature,1186883182 +145605,1879,Ashley MacIsaac,1186923893 +145605,1879,Nova Scotia,1186923853 +145605,2117,George Orwell,1186883316 +145605,2384,animal rights,1186880958 +145605,2431,Robin Williams,1186880928 +145605,2840,Christianity,1186882991 +145605,3668,Claire Danes,1186883405 +145605,4367,Angelina Jolie,1186882887 +145605,4848,Complex story,1186880775 +145605,5064,Alexandre Dumas,1186883074 +145605,5618,animation,1186880758 +145605,5620,Drew Barrymore,1186883423 +145605,5679,terrifying,1186881047 +145605,6016,frightning; beautifully filmed,1186880901 +145605,6218,Keira Knightley,1186880830 +145605,6934,conclusion of trilogy,1186881025 +145605,8361,Environment,1186883204 +145605,8622,michael moore,1186882821 +145605,39183,homosexuality,1186883370 +145605,48516,matt damon;,1186883160 +145613,1441,eccentricity,1188248846 +145613,2872,historical epic,1188248808 +145613,3916,football,1188248785 +145613,4447,comedy,1188248737 +145613,8622,social commentary,1188248775 +145628,260,nerdy,1434835548 +145628,260,sci-fi,1434835483 +145666,47,atmospheric,1359296758 +145666,47,disturbing,1359296763 +145666,47,Morgan Freeman,1359296776 +145666,293,drama,1357717747 +145666,293,great acting,1357717749 +145666,293,quirky,1357717738 +145666,296,Black comedy,1357652042 +145666,296,cult film,1357652047 +145666,296,dark comedy,1357652041 +145666,296,multiple storylines,1357652049 +145666,296,Quentin Tarantino,1357652051 +145666,296,quirky,1357652054 +145666,541,dystopia,1357481787 +145666,1721,Oscar (Best Picture),1360451942 +145666,8014,Atmospheric,1357638409 +145666,8014,bittersweet,1357638411 +145666,8014,great photograpy,1357638419 +145666,8014,reflective,1357638429 +145666,27592,absurdism,1357638331 +145666,27592,black humour,1357839177 +145666,27592,camerawork,1357839177 +145666,27592,Chan-wook Park,1357638397 +145666,27592,dark,1357839108 +145666,27592,stylized,1357638326 +145666,27773,disturbing,1357839450 +145666,27773,stylized,1357839441 +145666,30707,drama,1357646798 +145666,38061,black comedy,1357638458 +145666,38061,clever,1357638456 +145666,38061,good dialogue,1357638487 +145666,38061,witty,1357638469 +145666,48780,atmospheric,1357646655 +145666,48780,dark,1357646693 +145666,52328,atmospheric,1357838902 +145666,52328,cinematography,1357838880 +145666,52328,dark,1357838935 +145666,52328,ending twist,1357838972 +145666,52328,space,1357838955 +145666,52328,spaceships,1357838959 +145666,52328,visually stunning,1357838948 +145666,55247,based on a true story,1357647326 +145666,55247,bittersweet,1357647345 +145666,55247,self discovery,1357647347 +145666,56174,alone in the world,1357651313 +145666,56174,dystopia,1357651334 +145666,56174,post-apocalyptic,1357651317 +145666,56174,survival,1357651333 +145666,63072,depressing,1357651122 +145666,63072,dystopia,1357651096 +145666,63072,post-apocalyptic,1357651098 +145666,64614,Clint Eastwood,1357646741 +145666,64614,drama,1357646719 +145666,64614,friendship,1357646750 +145666,64614,redemption,1357646729 +145666,81591,atmospheric,1357646930 +145666,81591,dark,1357646935 +145666,81591,Natalie Portman,1357646948 +145666,81591,obsession,1357646938 +145666,81591,surreal,1357646939 +145666,86332,predictable,1357646829 +145666,88129,atmospheric,1357662466 +145666,88129,car chase,1357662488 +145666,88129,cars,1357662486 +145666,88129,cinematography,1357662473 +145666,88163,comedy,1357662630 +145666,88163,Emma Stone,1357662615 +145666,88163,funny,1357662604 +145676,63082,cinematography,1242661470 +145676,63082,destiny,1242661503 +145676,63082,disjointed timeline,1242661478 +145681,5669,documentary,1260412974 +145681,5669,politics,1260412980 +145699,111,alienation,1452393490 +145699,111,anti-hero,1452393467 +145699,111,assassination,1452393448 +145699,111,cult film,1452393700 +145699,111,dark,1452393698 +145699,111,disturbing,1452393440 +145699,111,Golden Palm,1452393459 +145699,111,imdb top 250,1452393493 +145699,111,insanity,1452393442 +145699,111,killer-as-protagonist(?),1452393479 +145699,111,loneliness,1452393437 +145699,111,Martin Scorsese,1452393434 +145699,111,mental illness,1452393703 +145699,111,nihilism,1452393485 +145699,111,paranoid,1452393452 +145699,111,presidential elections,1452393482 +145699,111,psychology,1452393433 +145699,111,psychopath,1452393445 +145699,111,robert de niro,1452393696 +145699,111,vigilantism,1452393469 +145699,1089,crime,1451676818 +145699,1089,cult film,1451676812 +145699,1089,great soundtrack,1451676797 +145699,1089,humorous,1451676794 +145699,1089,low budget,1451676807 +145699,1089,nonlinear,1451676775 +145699,1089,original,1451676784 +145699,1089,Quentin Tarantino,1451676782 +145699,1089,violence,1451676787 +145699,1089,violent,1451676791 +145699,1089,visceral,1451676821 +145699,3910,2.5,1451219775 +145699,3910,actors and acting,1451219892 +145699,3910,amateur theatre,1451219882 +145699,3910,assassination,1451219805 +145699,3910,austere,1451219804 +145699,3910,awful and anoying singing,1451219743 +145699,3910,beautiful,1451219878 +145699,3910,Björk,1451020058 +145699,3910,Björk,1451219745 +145699,3910,bjork,1451020147 +145699,3910,blindness,1451020080 +145699,3910,camerawork,1451219884 +145699,3910,cathartic,1451219670 +145699,3910,catherine deneuve,1451219879 +145699,3910,crime,1451219876 +145699,3910,dark,1451219867 +145699,3910,David Morse,1451219869 +145699,3910,death penalty,1451020105 +145699,3910,depressing without being uplifting,1451219708 +145699,3910,disability,1451020103 +145699,3910,disturbing,1451020145 +145699,3910,DOWN ON THEIR LUCK,1451219799 +145699,3910,downbeat,1451219897 +145699,3910,drab,1451219871 +145699,3910,drama,1451020137 +145699,3910,dreams,1451219770 +145699,3910,facebook rec,1451219784 +145699,3910,factory,1451219894 +145699,3910,family relationships,1451219861 +145699,3910,Golden Palm,1451219673 +145699,3910,great ending,1451020087 +145699,3910,great music,1451020142 +145699,3910,Great potential,1451219780 +145699,3910,immigrants,1451219704 +145699,3910,injustice,1451020140 +145699,3910,Lars von Trier,1451020051 +145699,3910,library vhs,1451219734 +145699,3910,love,1451219864 +145699,3910,made me cry,1451219736 +145699,3910,mother-son relationship,1451219853 +145699,3910,MOTHERS AND SONS,1451219768 +145699,3910,musical,1451020095 +145699,3910,musicals,1451219855 +145699,3910,my shopping list,1451219874 +145699,3910,on dvr,1451219851 +145699,3910,Palme d'Or,1451219844 +145699,3910,police,1451219721 +145699,3910,prison,1451219732 +145699,3910,sad,1451020093 +145699,3910,Sad ending,1451219830 +145699,3910,SAINTLY FOOLS,1451219739 +145699,3910,self-sacrifice,1451219839 +145699,3910,slow,1451219714 +145699,3910,social criticism,1451219717 +145699,3910,soundtrack,1451219840 +145699,3910,special,1451219773 +145699,3910,stylized,1451219900 +145699,3910,surreal,1451219697 +145699,3910,tearjerking,1451020132 +145699,3910,Touching,1451219828 +145699,3910,tragic,1451219843 +145699,3910,trains,1451219815 +145699,3910,transcendent,1451219817 +145699,3910,United States,1451219807 +145699,3910,want to see again,1451219725 +145699,3910,Washington state,1451219810 +145699,3910,workplace,1451219813 +145699,3910,wrongly accused,1451219801 +145699,68237,alter ego,1451772694 +145699,68237,artificial intelligence,1451772644 +145699,68237,claustrophobic,1451772686 +145699,68237,cloning,1451772663 +145699,68237,depressing,1451772676 +145699,68237,dystopia,1451772646 +145699,68237,future,1451772670 +145699,68237,great soundtrack,1451772672 +145699,68237,hallucination,1451772678 +145699,68237,interesting,1451772682 +145699,68237,isolation,1451772636 +145699,68237,Kevin Spacey,1451772632 +145699,68237,melancholy,1451772635 +145699,68237,mindfuck,1451772679 +145699,68237,moon,1451772665 +145699,68237,plot twist,1451772667 +145699,68237,psychological,1451772638 +145699,68237,psychology,1451772630 +145699,68237,robot,1451772684 +145699,68237,solitude,1451772650 +145699,68237,space,1451772642 +145699,68237,twist ending,1451772648 +145699,86320,acting,1451219989 +145699,86320,anxiety,1451181399 +145699,86320,apocalypse,1451181230 +145699,86320,apocalyptic,1451220073 +145699,86320,Art,1451220087 +145699,86320,beautiful,1451181221 +145699,86320,beautiful cinematography,1451219944 +145699,86320,beautiful music,1451181285 +145699,86320,bi-polar personality,1451220072 +145699,86320,big themes,1451181263 +145699,86320,Charlotte Gainsbourg,1451181254 +145699,86320,Charlotte Gainsburg,1451220043 +145699,86320,cinematography,1451181218 +145699,86320,claustrophobic,1451181271 +145699,86320,depressing,1451219946 +145699,86320,depression,1451181228 +145699,86320,Didn't finish,1451220084 +145699,86320,Drama,1451181270 +145699,86320,end of the world,1451220023 +145699,86320,excellent script,1451219985 +145699,86320,introspective,1451181234 +145699,86320,Kirsten Dunst,1451181223 +145699,86320,Kirsten Dunst sex scene,1451219977 +145699,86320,Lars von Trier,1451181226 +145699,86320,Magic realism,1451181233 +145699,86320,metaphoric images,1451181287 +145699,86320,metaphors,1451181282 +145699,86320,mindblowing,1451220102 +145699,86320,music,1451220094 +145699,86320,nudity (topless),1451220066 +145699,86320,photography,1451181255 +145699,86320,pretentious,1451219993 +145699,86320,Resurrection,1451219974 +145699,86320,sense of futility,1451181266 +145699,86320,sisters,1451181268 +145699,86320,slow,1451220038 +145699,86320,soundtrack,1451220061 +145699,86320,surreal,1451220096 +145699,86320,they all die in the end,1451219968 +145699,86320,twist ending,1451220054 +145699,86320,unclear character motives,1451220020 +145699,107997,atmospheric,1451708752 +145699,107997,cannibalism,1451708742 +145699,107997,cannibals,1451708746 +145699,107997,children,1451708749 +145699,107997,colonial days,1451708776 +145699,107997,Horror,1451708744 +145699,107997,secrets,1451708781 +145699,108727,controversial,1451869382 +145699,108727,Lars von Trier,1451869332 +145699,108727,naration,1451869364 +145699,108727,Nudity (Full Frontal - Notable),1451869355 +145699,108727,nudity (full frontal),1451869359 +145699,108727,sexuality,1451869325 +145699,108727,story,1451869348 +145699,108727,unsimulated sex,1451869376 +145699,108981,Charlotte Gainsbourg,1451869413 +145699,108981,Lars von Trier,1451869407 +145699,108981,nihilist,1451869423 +145699,108981,Nudity (Full Frontal - Notable),1451869411 +145699,108981,nudity (full frontal),1451869454 +145699,108981,sexuality,1451869426 +145699,108981,Unexpected Ending,1451869416 +145699,108981,unsimulated sex,1451869456 +145699,109487,adventure,1451246378 +145699,109487,ambitious,1451246282 +145699,109487,Anne Hathaway,1451246250 +145699,109487,artificial intelligence,1451246240 +145699,109487,astronauts,1451246443 +145699,109487,astronomy,1451246360 +145699,109487,atmosphere,1451246344 +145699,109487,beautiful,1451246373 +145699,109487,black hole,1451246267 +145699,109487,black holes,1451246452 +145699,109487,Christopher Nolan,1451246220 +145699,109487,corny,1451246317 +145699,109487,cosmos,1451246459 +145699,109487,Deus Ex Machina Ending,1451246342 +145699,109487,dystopia,1451246413 +145699,109487,emotional,1451246415 +145699,109487,end of the world,1451246411 +145699,109487,epic,1451246291 +145699,109487,expedition,1451246408 +145699,109487,exploration,1451246371 +145699,109487,father - child relationship,1451246286 +145699,109487,father-daughter conflict,1451246418 +145699,109487,future,1451246454 +145699,109487,good science,1451246234 +145699,109487,great concept,1451246463 +145699,109487,Hans Zimmer,1451246269 +145699,109487,interesting ideea,1451246277 +145699,109487,interstellar trip,1451246421 +145699,109487,long,1451246320 +145699,109487,love,1451246288 +145699,109487,Masterpiece,1451246275 +145699,109487,Matthew McConaughey,1451246233 +145699,109487,Michael Caine,1451246280 +145699,109487,Murphy's Law,1451246448 +145699,109487,Oscar (Best Effects - Visual Effects),1451246424 +145699,109487,Oscar Nominee: Music - Original Score,1451246441 +145699,109487,Oscar Nominee: Production Design,1451246456 +145699,109487,Oscar Nominee: Sound Mixing,1451246439 +145699,109487,philosophical issues,1451246245 +145699,109487,physics,1451246231 +145699,109487,pretentious,1451246375 +145699,109487,relativity,1451246224 +145699,109487,robot,1451246397 +145699,109487,sci-fi,1451246219 +145699,109487,science,1451246392 +145699,109487,science fiction,1451246242 +145699,109487,Self-Indulgent,1451246363 +145699,109487,sentimental,1451246262 +145699,109487,sounds,1451246271 +145699,109487,space,1451246216 +145699,109487,space exploration,1451246322 +145699,109487,space travel,1451246265 +145699,109487,spaceships,1451246446 +145699,109487,special effects,1451246388 +145699,109487,spectacle,1451246358 +145699,109487,suspense,1451246346 +145699,109487,thought-provoking,1451246228 +145699,109487,time dilation,1451246390 +145699,109487,time paradox,1451246339 +145699,109487,time travel,1451246229 +145699,109487,time-travel,1451246222 +145699,109487,twist ending,1451246314 +145699,109487,Visual effect,1451246461 +145699,109487,visually appealing,1451246284 +145699,109487,wormhole,1451246236 +145699,122882,dystopian,1453082528 +145699,122882,feminism,1453082532 +145699,122882,great soundtrack,1453082548 +145699,122882,post apocalypse,1453082535 +145699,122882,violence,1453082543 +145699,133645,based on a book,1453658767 +145699,133645,good acting,1453658769 +145699,133645,lesbian,1453658771 +145699,133645,photography,1453658780 +145699,133645,romance,1453658781 +145699,133645,rooney mara,1453658974 +145699,133645,strong soundtrack,1453658980 +145699,134130,bad ass,1452480225 +145699,134130,beautiful view,1452480232 +145699,134130,entertainment,1452480219 +145699,134130,faithful book adaption,1452480222 +145699,134130,geeky,1452480228 +145699,134130,humanity,1452480215 +145699,134130,Near Future,1452480205 +145699,134130,overrated,1452480242 +145699,134130,sci-fi,1452480175 +145699,134130,Space,1452480180 +145699,134130,stranded hero,1452480188 +145699,134130,Survival Instinct,1452480178 +145699,136016,dinosaurs,1452996894 +145699,136016,Pixar,1452996899 +145699,136562,Kate Winslet,1452997101 +145699,136562,Steve Jobs,1452997090 +145699,139655,boring,1452452818 +145699,148626,finance,1453688713 +145699,148626,interesting,1453688716 +145699,148626,makes good points,1453688718 +145699,149694,bad acting,1451676847 +145728,4226,cerebral,1444621515 +145728,4226,cult film,1444621521 +145728,4226,mind-bending,1444621506 +145735,1961,good,1430824280 +145735,130492,family,1430824401 +145735,130492,love,1430824401 +145735,130492,marraige,1430824401 +145741,3916,american football,1440090387 +145741,3916,based on a true story,1440090393 +145741,3916,good story,1440090391 +145741,4989,Jokes,1440090177 +145741,4989,Weed,1440090150 +145741,7439,jokes,1440090620 +145741,7439,revenge,1440090608 +145741,7439,violence,1440090611 +145741,7502,true story,1440090725 +145741,59143,Documentary,1440090124 +145741,59143,stand-up comedy,1440090135 +145741,59143,Weed,1440090130 +145741,73023,country music,1440090054 +145741,73023,Jeff Bridges,1440090045 +145741,73023,Real life story,1440090076 +145741,82459,Jeff Bridges,1440090007 +145741,82459,Western,1440090012 +145741,97304,funny,1440090824 +145741,97304,suspenseful,1440090831 +145741,97304,tense,1440090821 +145741,97304,True story,1440090816 +145745,80463,based on a true story,1378694473 +145745,80463,business,1378694471 +145745,80463,computers,1378694467 +145747,260,great movie,1435772423 +145747,527,historical,1435772585 +145747,2028,Tom Hanks,1435772612 +145755,109629,disturbing,1428151939 +145755,109629,dreamlike,1428151939 +145755,109629,incestuous,1428151939 +145759,1,soothing,1264876655 +145759,599,complex morality,1264876265 +145759,858,lack of character development,1264876759 +145759,912,boring unless you are a like the characters in the film,1264892209 +145759,949,complex characters,1264876159 +145759,1084,draggy,1264876894 +145759,1183,gripping,1264877215 +145759,1204,deliberate pace,1264876421 +145759,2858,humanizes adult men,1264741211 +145759,2921,surrealism,1264876202 +145759,3703,atmospheric,1264875859 +145759,8910,intelligent,1264876368 +145759,8910,obscure,1264876368 +145759,26111,compelling acting,1264876506 +145759,30810,trippy,1264876325 +145759,64839,dingy,1264876801 +145759,64839,nihilistic,1264876801 +145768,3556,sofia coppola,1163148016 +145768,6323,John Cusack,1161800041 +145768,6367,Ewan McGregor,1161799885 +145768,6367,Renee Zellweger,1161799951 +145790,1251,fantasy,1367108270 +145790,1251,overrated,1367108309 +145791,109487,black hole,1420235701 +145791,109487,monumental,1420235701 +145791,109487,sci-fi,1420235701 +145801,7075,medieval,1205462837 +145807,260,classic,1441880743 +145807,260,sci fi,1441880736 +145915,293,disturbing,1244216683 +145915,293,great acting,1244216678 +145915,293,hitman,1244216677 +145915,356,history,1244217064 +145915,356,Tom Hanks,1244217049 +145915,356,Vietnam,1244217061 +145915,590,based on book,1244217087 +145915,590,compassionate,1244216701 +145915,590,native americans,1244216688 +145915,590,US history,1244217078 +145915,590,war,1244217091 +145915,1220,Buddy movie,1244216950 +145915,1220,car chase,1244216948 +145915,1220,music business,1244216969 +145915,1220,neo-Nazis,1244216962 +145915,1220,road movie,1244216957 +145915,1220,surreal,1244216976 +145915,1291,India,1244216353 +145915,1291,Nazis,1244216334 +145915,1291,Steven Spielberg,1244216336 +145915,1293,colonialism,1244216576 +145915,1293,Exceptional Acting,1244216579 +145915,1884,disturbing,1244216304 +145915,1884,Johnny Depp,1244216307 +145915,1884,literary adaptation,1244216295 +145915,2571,cyberpunk,1244216808 +145915,2571,philosophy,1244216805 +145915,2571,post apocalyptic,1244216801 +145915,4262,Al Pacino,1244216486 +145915,4262,corruption,1244216514 +145915,4262,organized crime,1244216488 +145915,4878,mindfuck,1244226998 +145915,4878,surreal,1244227006 +145915,4878,teen,1244227019 +145915,5952,adapted from:book,1244216662 +145915,5952,atmospheric,1244216640 +145915,5952,awesome soundtrack,1244216653 +145915,5952,original plot,1244216658 +145915,5952,scenic,1244216644 +145915,6016,gangs,1244216369 +145915,6016,South America,1244216387 +145915,26776,flying pigs,1244216524 +145915,56801,aliens,1244297545 +145915,56801,teens,1244297617 +145964,56949,chick movie,1211698097 +145964,56949,comedy romance,1211698097 +145964,56949,James Marsden,1211698097 +145964,56949,Katherine Heigl,1211698097 +145964,56949,love story,1211698097 +145964,59126,daring,1239492026 +145964,59126,hysterical,1239492026 +145964,59126,thought-provoking,1239492026 +145983,260,classic,1430236046 +145983,260,entertaining,1430236056 +145983,260,funny,1430236062 +145994,142602,Comedy,1442745467 +145994,142602,German,1442745473 +146009,50068,Character study,1209441403 +146009,57669,mean corn,1209441101 +146009,57669,old brick,1209441069 +146016,260,drama,1432488287 +146016,260,sci-fi,1432488283 +146023,49651,boxing,1431935204 +146023,59784,comedy,1431934942 +146023,59784,Kung Fu,1431934953 +146023,59784,martial arts,1431934926 +146053,99007,post-apocalyptic,1425441942 +146053,99007,weird relationship,1425441942 +146053,99007,zombies,1425441942 +146053,102165,English,1425441538 +146053,102165,lily collins,1425441547 +146053,115667,based on a book,1425441473 +146053,115667,relationships,1425441465 +146073,750,why the hell anyone would like this movie?,1160593373 +146073,1204,not bad,1160593386 +146074,293,luc beson,1421592145 +146074,293,unique,1421592127 +146074,1580,comedy,1421591992 +146074,1580,conspiracy theory,1421591987 +146074,1580,sci-fi,1421591990 +146074,2657,insanity,1422309518 +146074,2657,Quirky,1422309575 +146074,2657,sexuality,1422309521 +146074,4973,great soundtrack,1421590862 +146074,4973,stylized,1421590857 +146074,4973,surreal,1421590854 +146074,4973,visually appealing,1421590878 +146074,5791,bisexual,1421592741 +146074,5791,Frida Kahlo,1421592772 +146074,5791,mexico,1421592744 +146074,8961,action,1421592058 +146074,8961,funny,1421592056 +146074,30793,quirky,1421594368 +146074,33004,absurd,1421591242 +146074,33004,aliens,1421591260 +146074,33004,based on a book,1421591277 +146074,33004,comedy,1421591229 +146074,33004,dolphins,1421591250 +146074,33004,douglas adams,1421591271 +146074,33004,humor,1421591244 +146074,33004,John Malkovich,1421591256 +146074,33004,sarcasm,1421591247 +146074,33004,sci-fi,1421591225 +146074,33004,space travel,1421591238 +146074,48997,sensuality,1421593347 +146074,51077,Nicolas Cage,1422727359 +146074,51077,plain storyline,1422727365 +146074,51255,action,1421591375 +146074,51255,british comedy,1421591365 +146074,51255,dark comedy,1421591362 +146074,51255,surreal,1421591360 +146074,55269,Bechdel Test:Fail,1421591152 +146074,55269,cinematography,1421591138 +146074,55269,dark comedy,1421591134 +146074,55269,India,1421591136 +146074,55269,spiritual journey,1421591142 +146074,55269,Wes Anderson,1421591132 +146074,59103,jackie chan,1421594745 +146074,59315,action,1421591600 +146074,59315,funny,1421591606 +146074,59315,sci-fi,1421591597 +146074,59315,superheroes,1421591593 +146074,59387,beautiful,1421590754 +146074,59387,beautiful cinematography,1421590760 +146074,59387,cinematography,1421590769 +146074,59387,imagination,1421590797 +146074,59387,visually stunning,1421590756 +146074,60816,nerdy,1421594549 +146074,60816,Terry Pratchett,1421594554 +146074,66097,creepy,1421592303 +146074,66097,dark fairy tale,1421592307 +146074,66097,stop motion,1421592314 +146074,66097,Surreal,1421592291 +146074,66097,visually stunning,1421592309 +146074,66171,acting,1421592946 +146074,66171,predictable,1421592950 +146074,66171,weak plot,1421592955 +146074,66934,anti-hero,1421591887 +146074,66934,comedy,1421591928 +146074,66934,good dialogue,1421591891 +146074,66934,great soundtrack,1421591908 +146074,66934,joss whedon,1421591922 +146074,66934,mad scientist,1421591895 +146074,66934,Nathan Fillion,1421591926 +146074,66934,Neil Patrick Harris,1421591920 +146074,66934,sci-fi,1421591936 +146074,66934,short,1421591944 +146074,66934,too short,1421591942 +146074,66934,twist ending,1421591937 +146074,67429,psychedelic,1421608636 +146074,68358,action,1421592168 +146074,68358,franchise,1421592184 +146074,68358,sci-fi,1421592166 +146074,68358,space,1421592165 +146074,71057,interesting animation style,1421591452 +146074,71057,surreal,1421591461 +146074,71057,visually appealing,1421591448 +146074,74553,Atmospheric,1421616305 +146074,74553,beautiful,1421592277 +146074,74553,stylized,1421592279 +146074,76093,dragons,1421593083 +146074,76093,friendship,1421593090 +146074,76093,vikings,1421593088 +146074,81564,anti-hero,1421592020 +146074,81564,funny,1421592022 +146074,92259,touching,1421591674 +146074,94780,boring,1421594782 +146074,94780,weak plot,1421594786 +146074,94959,Bill Murray,1421590818 +146074,94959,cinematography,1421590833 +146074,94959,dialogue,1421593506 +146074,94959,stylized,1421593503 +146074,94959,surreal,1421590841 +146074,94959,Wes Anderson,1421590822 +146074,95167,holes in the plot,1421593051 +146074,95167,Kick-Butt Women,1421593032 +146074,95510,action,1421593252 +146074,95510,funny,1421593262 +146074,98491,short,1433775098 +146074,102125,shallow plot,1421593243 +146074,103042,cheesy,1421593210 +146074,103042,contrived romance,1421591568 +146074,103042,flashback overload,1421593213 +146074,103042,identity crisis,1421591565 +146074,103042,second half was worse,1421593190 +146074,103042,unengaging,1421593183 +146074,103228,fun,1421591494 +146074,103228,sci-fi,1421591496 +146074,103228,visually appealing,1421591476 +146074,103341,Edgar Wright,1421591312 +146074,103341,Simon Pegg,1421591315 +146074,107771,atmospheric,1421594164 +146074,107771,cinematography,1421594173 +146074,107771,music,1421594152 +146074,107771,soundtrack,1421594177 +146074,107771,visually stunning,1421594175 +146074,109374,cinematography,1421590708 +146074,109374,hotel,1421590734 +146074,109374,quirky,1421590713 +146074,109374,stylized,1421590690 +146074,109374,visually appealing,1421590684 +146074,109374,Wes Anderson,1421590682 +146074,111659,happy ending,1421594287 +146074,112552,jazz,1432986993 +146074,112552,music,1432987001 +146074,122882,action,1432675354 +146074,122882,desert,1432675349 +146074,122882,feminism,1432675328 +146074,122882,post apocalypse,1432675332 +146074,122882,visually appealing,1432675376 +146075,83601,arthouse,1430687089 +146075,83601,psychadelic,1430687089 +146075,83601,trippy,1430687089 +146081,3629,starving,1203514921 +146157,4973,inspirational,1266478907 +146173,8582,media politics,1260658215 +146215,356,bittersweet,1430291639 +146215,356,comedy,1430291653 +146215,356,emotional,1430291663 +146215,356,Funny,1430291676 +146215,356,heartwarming,1430291673 +146215,356,inspirational,1430291643 +146215,356,inspiring,1430291680 +146215,356,optimism,1430307136 +146215,356,psychology,1430291656 +146215,356,Sexuality,1430291666 +146215,356,surprising plot,1430307136 +146215,356,tom hanks,1430291634 +146215,356,touching,1430291670 +146215,1704,boston,1430291740 +146215,1704,college,1430291760 +146215,1704,feel-good,1430291728 +146215,1704,genius,1430291718 +146215,1704,inspirational,1430291725 +146215,1704,intellectual,1430291743 +146215,1704,intelligent,1430291734 +146215,1704,math,1430291752 +146215,1704,Matt Damon,1430291715 +146215,1704,mentor,1430291704 +146215,1704,psychology,1430291721 +146215,1704,Robin Williams,1430291707 +146215,1704,thoughtful,1430291737 +146215,1704,university,1430291756 +146215,2028,action,1430291537 +146215,2028,historical,1430291526 +146215,2028,history,1430291546 +146215,2028,realistic,1430291569 +146215,2028,Steven Spielberg,1430291520 +146215,2028,Tom Hanks,1430291518 +146215,2028,violent,1430291553 +146215,4995,Drama,1430291879 +146215,4995,genius,1430291844 +146215,4995,insanity,1430291872 +146215,4995,inspirational,1430291860 +146215,4995,intelligent,1430291863 +146215,4995,math,1430291854 +146215,4995,mathematics,1430291842 +146215,4995,mental illness,1430291848 +146215,4995,psychology,1430291836 +146215,4995,Russell Crowe,1430291851 +146215,4995,schizophrenia,1430291840 +146215,4995,true story,1430291856 +146215,4995,twist ending,1430291866 +146215,43396,Anthony Hopkins,1430291345 +146215,43396,dreams,1430291356 +146215,43396,emotional,1430291359 +146215,43396,indian motorcycle,1430291377 +146215,43396,motorcycle,1430291352 +146215,43396,new zealand,1430291367 +146215,43396,speed,1430291364 +146215,47099,based on a true story,1430291407 +146215,47099,courage,1430291430 +146215,47099,father-son relationship,1430291427 +146215,47099,happy ending,1430291417 +146215,47099,inspirational,1430291432 +146215,47099,Motivation,1430291443 +146215,47099,San Francisco,1430291424 +146215,47099,true story,1430291421 +146215,47099,Will Smith,1430291409 +146215,69406,chemistry between actors,1430318421 +146215,69406,happy ending,1430318432 +146215,69406,Sandra Bullock,1430318418 +146215,72641,feel good,1430318271 +146215,72641,inspirational,1430318274 +146215,72641,Sandra Bullock,1430318264 +146215,72641,sports,1430318288 +146215,72641,touching,1430318278 +146215,72641,true story,1430318267 +146215,92259,emotional,1430291268 +146215,92259,feel good movie,1430291305 +146215,92259,friendship,1430291263 +146215,92259,funny,1430291271 +146215,92259,paralysis,1430291293 +146215,92259,sexuality,1430291290 +146215,92259,touching,1430291278 +146215,94466,not a movie,1430306967 +146215,94466,satire,1430306973 +146215,94466,Science fiction,1430307020 +146215,94466,technology,1430306975 +146215,94466,tv series,1430306963 +146215,94466,well constructed,1430306992 +146215,97304,anti-hero,1430292270 +146215,97304,Ben Affleck,1430292249 +146215,97304,cia,1430292252 +146215,97304,espionage,1430292243 +146215,97304,funny,1430292275 +146215,97304,great ending,1430292273 +146215,97304,hostage,1430292286 +146215,97304,Iran,1430292240 +146215,97304,Middle East,1430292261 +146215,97304,politics,1430292256 +146215,97304,suspenseful,1430292246 +146215,97304,tense,1430292282 +146215,97304,thriller,1430292259 +146215,97304,True story,1430292237 +146215,104841,beautiful,1430318365 +146215,104841,cinematography,1430318343 +146215,104841,George Clooney,1430318358 +146215,104841,physics,1430318353 +146215,104841,sandra bullock,1430318348 +146215,104841,sci-fi,1430318373 +146215,104841,science,1430318361 +146215,104841,space,1430318337 +146215,104841,suspense,1430318345 +146215,104841,visually appealing,1430318333 +146215,104841,visually stunning,1430318355 +146215,105504,believable,1430291970 +146215,105504,hijacking,1430291963 +146215,105504,ocean,1430291986 +146215,105504,politics,1430291975 +146215,105504,SEAL,1430291979 +146215,105504,Somalia,1430291988 +146215,105504,suspense,1430291957 +146215,105504,tom hanks,1430291959 +146215,105504,true story,1430291954 +146215,107141,Tom Hanks,1430813707 +146215,107141,true story,1431353820 +146215,107141,Well played,1430813720 +146215,115135,acting,1431612650 +146215,115135,cinematography,1431612654 +146215,115135,little dialogue,1431612664 +146215,115135,slow-paced,1431612661 +146215,116897,dark humor,1430307522 +146215,116897,Distorted thinking,1430307618 +146215,116897,violence,1430307522 +146232,114552,Laika,1429290002 +146252,260,"good acting, Direction",1443583007 +146252,260,great story,1443583041 +146292,260,classic sci-fi,1443344158 +146292,260,space action,1443344182 +146292,260,space adventure,1443344178 +146299,236,Meg Ryan,1160252491 +146299,3408,Julia Roberts,1160252462 +146300,1288,Billy Crystal,1147007279 +146300,1526,Billy Crystal,1147007063 +146300,1526,Robin Williams,1147007044 +146300,3156,Robin Williams,1147008435 +146300,3500,Billy Crystal,1147007170 +146300,4333,Billy Crystal,1147007218 +146300,5388,Robin Williams,1147008404 +146316,1032,animation,1142813566 +146320,2288,aliens,1398202018 +146320,2288,Antarctica,1398202040 +146320,2288,claustrophobic,1398202028 +146320,2288,paranoia,1398202015 +146320,2288,snow,1398202034 +146358,117460,3d,1416764152 +146358,117460,booby traps,1416764163 +146358,117460,indiana jones,1416764144 +146358,117460,indiana jones rip off treasure of the four crowns 3D Jonas,1416764104 +146358,117460,treasure hunting,1416764138 +146358,117460,Treasure of the Four Crowns,1416764179 +146358,117462,jaws ripoff,1416764268 +146358,117462,L'ultimo squalo,1416764281 +146370,741,artificial intelligence,1245805220 +146370,741,cyberpunk,1245805208 +146370,741,philosophical,1245805214 +146370,741,techno-evolution,1245805240 +146370,2973,philosophical,1245805486 +146370,4848,disturbing,1245807670 +146370,4848,dreamlike,1245807681 +146370,4848,surreal,1245807676 +146370,7361,Charlie Kaufman,1245806606 +146370,7361,cult film,1245806559 +146370,7361,memory,1245806562 +146370,7361,philosophy,1245806566 +146370,7361,thought-provoking,1245806595 +146370,27728,philosophical,1245805298 +146391,260,Science Fiction,1443129622 +146391,260,scifi cult,1443129632 +146429,3720,20th century,1440425488 +146429,3720,Central Europe,1440425363 +146429,3720,easily confused with other movie(s) (title),1440425243 +146429,3720,Europe,1440425366 +146429,3720,history,1440425372 +146429,3720,wow - so much better than Constant Gardener...,1440425270 +146429,44587,B&W,1440425153 +146429,44587,hunting,1440425163 +146429,44587,Native Americans,1440425140 +146429,44587,north pole,1440425166 +146429,44587,silent,1440425157 +146429,101296,Almodovar,1440425186 +146429,101296,gay,1440424860 +146429,101296,timid,1440425190 +146438,260,sci-fi,1442951547 +146438,260,space adventure,1442951569 +146460,4370,Computer Science's Future,1246348277 +146472,1131,emotional,1291781542 +146472,1131,tragedy,1291781538 +146472,64957,original plot,1291781246 +146472,74458,Predictable,1291780920 +146474,74491,action,1429906745 +146474,74491,history,1429906745 +146474,74491,vikings,1429906745 +146474,110603,boring,1432593901 +146474,110603,drama,1432593901 +146474,110603,religion,1432593901 +146484,1,Tumey's To See Again,1195383359 +146484,1,Tumey's VHS,1195574115 +146484,6,Tumey's DVDs,1179305835 +146484,10,Tumey's DVDs,1185872164 +146484,14,Tumey's VHS,1199470692 +146484,16,Tumey's DVDs,1179306108 +146484,18,Tumey's VHS,1201975074 +146484,32,Tumey's DVDs,1199108461 +146484,47,Tumey's DVDs,1179305942 +146484,47,Tumey's To See Again,1195383294 +146484,50,Tumey's DVDs,1179305787 +146484,97,Tumey's DVDs,1179305622 +146484,110,Tumey's DVDs,1183223106 +146484,111,Tumey's DVDs,1179305757 +146484,111,Tumey's To See Again,1195383339 +146484,163,Tumey's DVDs,1198660963 +146484,165,Tumey's DVDs,1189008601 +146484,223,Tumey's DVDs,1179305904 +146484,260,Tumey's DVDs,1179305796 +146484,293,Tumey's To See Again,1195383382 +146484,296,Tumey's DVDs,1179305762 +146484,300,Tumey's VHS,1189694123 +146484,318,Tumey's DVDs,1179305799 +146484,337,Tumey's DVDs,1189008925 +146484,353,Tumey's DVDs,1179328330 +146484,356,Tumey's DVDs,1200762366 +146484,364,Tumey's VHS,1195574148 +146484,412,Tumey's DVDs,1203594285 +146484,431,Tumey's VHS,1189694198 +146484,457,Tumey's VHS,1195574212 +146484,471,Tumey's DVDs,1179305988 +146484,480,Tumey's DVDs,1187778467 +146484,483,Tumey's DVDs,1203594932 +146484,497,Tumey's VHS,1194081992 +146484,501,Tumey's DVDs,1205669232 +146484,508,Tumey's DVDs,1206264746 +146484,509,Tumey's DVDs,1192629090 +146484,522,Tumey's DVDs,1186576703 +146484,527,Tumey's DVDs,1179305501 +146484,541,Tumey's DVDs,1179305516 +146484,551,Tumey's DVDs,1198614375 +146484,555,Tumey's DVDs,1179305754 +146484,565,Tumey's DVDs,1204827915 +146484,592,Tumey's To See Again,1195383104 +146484,593,Tumey's VHS,1199470679 +146484,595,Tumey's VHS,1203008394 +146484,599,Tumey's DVDs,1181995715 +146484,608,Tumey's To See Again,1195383177 +146484,750,Tumey's To See Again,1195383163 +146484,778,Tumey's DVDs,1203847150 +146484,778,Tumey's To See Again,1195383368 +146484,858,Tumey's DVDs,1179305838 +146484,858,Tumey's To See Again,1195383204 +146484,898,Tumey's DVDs,1205669210 +146484,899,Tumey's VHS,1195574277 +146484,902,Tumey's DVDs,1190308639 +146484,903,Tumey's DVDs,1183823975 +146484,904,Tumey's DVDs,1183823962 +146484,908,Tumey's DVDs,1179306409 +146484,909,Tumey's DVDs,1201720050 +146484,910,Tumey's VHS,1200950023 +146484,912,Tumey's DVDs,1179305436 +146484,913,Tumey's DVDs,1179305889 +146484,919,Tumey's DVDs,1205659148 +146484,920,Tumey's DVDs,1183223235 +146484,921,Tumey's DVDs,1206265169 +146484,922,Tumey's DVDs,1199108413 +146484,923,Tumey's DVDs,1179305844 +146484,924,Tumey's DVDs,1179305631 +146484,926,Tumey's DVDs,1192629176 +146484,930,Tumey's DVDs,1202229642 +146484,938,Tumey's DVDs,1202922727 +146484,948,Tumey's DVDs,1201197384 +146484,953,Tumey's DVDs,1185025867 +146484,954,Tumey's DVDs,1185025862 +146484,955,Tumey's DVDs,1185025961 +146484,964,Tumey's DVDs,1198615289 +146484,965,Tumey's DVDs,1198660939 +146484,969,Tumey's DVDs,1197746691 +146484,1022,Tumey's VHS,1203008334 +146484,1036,Tumey's DVDs,1189008594 +146484,1059,Tumey's DVDs,1202321069 +146484,1060,Tumey's DVDs,1179306052 +146484,1061,Tumey's DVDs,1188388472 +146484,1069,Tumey's DVDs,1199617003 +146484,1079,Tumey's DVDs,1204827990 +146484,1080,Tumey's DVDs,1179306179 +146484,1080,Tumey's To See Again,1195383258 +146484,1086,Tumey's DVDs,1190826487 +146484,1089,Tumey's DVDs,1179305805 +146484,1090,Tumey's DVDs,1192628912 +146484,1095,Tumey's DVDs,1189008969 +146484,1096,Tumey's DVDs,1189008816 +146484,1101,Tumey's DVDs,1190308666 +146484,1103,Tumey's DVDs,1201720062 +146484,1131,Tumey's DVDs,1183823706 +146484,1132,Tumey's DVDs,1183823715 +146484,1136,Tumey's DVDs,1179305887 +146484,1147,Tumey's DVDs,1200326658 +146484,1172,Tumey's DVDs,1198614788 +146484,1173,Tumey's DVDs,1202922304 +146484,1175,Tumey's DVDs,1179307100 +146484,1178,Tumey's DVDs,1188460326 +146484,1185,Tumey's DVDs,1203863069 +146484,1186,Tumey's DVDs,1200821255 +146484,1188,Tumey's DVDs,1202321063 +146484,1190,Tumey's DVDs,1179306637 +146484,1193,Tumey's DVDs,1179305455 +146484,1196,Tumey's DVDs,1179305792 +146484,1198,Tumey's DVDs,1198613722 +146484,1199,Tumey's DVDs,1179306493 +146484,1200,Tumey's DVDs,1179306121 +146484,1201,Tumey's DVDs,1179305470 +146484,1202,Tumey's DVDs,1179305853 +146484,1203,Tumey's DVDs,1183222945 +146484,1204,Tumey's DVDs,1185370065 +146484,1206,Tumey's DVDs,1179305777 +146484,1207,Tumey's DVDs,1183223751 +146484,1208,Tumey's DVDs,1179305780 +146484,1209,Tumey's DVDs,1202922893 +146484,1210,Tumey's DVDs,1179305934 +146484,1211,Tumey's DVDs,1191513776 +146484,1212,Tumey's DVDs,1200821169 +146484,1213,Tumey's DVDs,1183223175 +146484,1214,Tumey's DVDs,1179305920 +146484,1217,Tumey's DVDs,1199108597 +146484,1219,Tumey's DVDs,1179305807 +146484,1221,Tumey's DVDs,1189009289 +146484,1222,Tumey's DVDs,1204136210 +146484,1224,Tumey's DVDs,1198403026 +146484,1225,Tumey's DVDs,1186576934 +146484,1226,Tumey's DVDs,1205669293 +146484,1227,Tumey's DVDs,1179306504 +146484,1228,Tumey's DVDs,1186576386 +146484,1230,Tumey's DVDs,1200497370 +146484,1232,Tumey's DVDs,1199108520 +146484,1233,Tumey's DVDs,1185370027 +146484,1234,Tumey's DVDs,1185025902 +146484,1237,Tumey's DVDs,1200833548 +146484,1244,Tumey's DVDs,1194082026 +146484,1247,Tumey's VHS,1189694145 +146484,1248,Tumey's DVDs,1200227937 +146484,1250,Tumey's DVDs,1185872324 +146484,1252,Tumey's DVDs,1179306015 +146484,1253,Tumey's DVDs,1204828330 +146484,1256,Tumey's DVDs,1198164830 +146484,1258,Tumey's DVDs,1185967219 +146484,1259,Tumey's DVDs,1179305760 +146484,1260,Tumey's DVDs,1185370080 +146484,1262,Tumey's DVDs,1185872337 +146484,1266,Tumey's DVDs,1181995666 +146484,1269,Tumey's DVDs,1205669270 +146484,1270,Tumey's To See Again,1195383094 +146484,1274,Tumey's DVDs,1191513716 +146484,1276,Tumey's DVDs,1204827856 +146484,1277,Tumey's DVDs,1202049930 +146484,1281,Tumey's DVDs,1199616873 +146484,1282,Tumey's VHS,1199470631 +146484,1284,Tumey's DVDs,1179305848 +146484,1287,Tumey's DVDs,1181407229 +146484,1291,Tumey's DVDs,1198613716 +146484,1298,Tumey's DVDs,1203595103 +146484,1299,Tumey's VHS,1189694100 +146484,1304,Tumey's DVDs,1202921525 +146484,1305,Tumey's DVDs,1188460291 +146484,1320,Tumey's DVDs,1193316176 +146484,1321,Tumey's DVDs,1188388548 +146484,1333,Tumey's DVDs,1183823734 +146484,1333,Tumey's To See Again,1195383113 +146484,1343,Tumey's DVDs,1179307087 +146484,1344,Tumey's DVDs,1179307090 +146484,1348,Tumey's DVDs,1198616418 +146484,1350,Tumey's DVDs,1187769260 +146484,1358,Tumey's DVDs,1186576459 +146484,1370,Tumey's DVDs,1189008598 +146484,1387,Tumey's DVDs,1179306545 +146484,1393,Tumey's VHS,1194082131 +146484,1408,Tumey's DVDs,1199108612 +146484,1411,Tumey's VHS,1194082062 +146484,1419,Tumey's DVDs,1179307235 +146484,1466,Tumey's DVDs,1179306007 +146484,1573,Tumey's VHS,1189694200 +146484,1580,Tumey's DVDs,1183223770 +146484,1590,Tumey's DVDs,1199107919 +146484,1617,Tumey's DVDs,1179305768 +146484,1625,Tumey's DVDs,1205669106 +146484,1635,Tumey's DVDs,1198403315 +146484,1645,Tumey's DVDs,1186656356 +146484,1658,Tumey's DVDs,1203241012 +146484,1673,Tumey's DVDs,1198613485 +146484,1674,Tumey's DVDs,1200228039 +146484,1690,Tumey's DVDs,1193316170 +146484,1729,Tumey's DVDs,1193327904 +146484,1730,Tumey's DVDs,1202922231 +146484,1732,Tumey's DVDs,1179305911 +146484,1732,Tumey's To See Again,1195383107 +146484,1840,Tumey's DVDs,1203241028 +146484,1844,Tumey's DVDs,1179306572 +146484,1846,Tumey's DVDs,1201982306 +146484,1912,Tumey's DVDs,1202921540 +146484,1924,Tumey's DVDs,1185370041 +146484,1929,Tumey's DVDs,1201719719 +146484,1931,Tumey's DVDs,1202922470 +146484,1941,Tumey's DVDs,1198613590 +146484,1942,Tumey's DVDs,1204740600 +146484,1943,Tumey's DVDs,1200228003 +146484,1945,Tumey's DVDs,1179305884 +146484,1947,Tumey's DVDs,1203241094 +146484,1953,Tumey's DVDs,1204827706 +146484,1957,Tumey's DVDs,1205668801 +146484,1959,Tumey's DVDs,1185025911 +146484,1960,Tumey's DVDs,1200326674 +146484,1963,Tumey's DVDs,1197483007 +146484,1964,Tumey's DVDs,1199108112 +146484,1965,Tumey's DVDs,1205669366 +146484,1967,Tumey's DVDs,1189097467 +146484,1982,Tumey's DVDs,1186576505 +146484,1994,Tumey's DVDs,1204135905 +146484,1997,Tumey's DVDs,1186576658 +146484,1998,Tumey's DVDs,1186576663 +146484,1999,Tumey's DVDs,1186576660 +146484,2000,Tumey's DVDs,1200491393 +146484,2010,Tumey's DVDs,1179306437 +146484,2018,Tumey's VHS,1203008296 +146484,2019,Tumey's DVDs,1185369974 +146484,2022,Tumey's DVDs,1202921618 +146484,2023,Tumey's DVDs,1189009293 +146484,2028,Tumey's DVDs,1179305801 +146484,2066,Tumey's DVDs,1199617187 +146484,2067,Tumey's DVDs,1203241233 +146484,2068,Tumey's DVDs,1199108426 +146484,2076,Tumey's DVDs,1188460388 +146484,2078,Tumey's VHS,1195381355 +146484,2115,Tumey's DVDs,1198613726 +146484,2116,Tumey's DVDs,1186656443 +146484,2131,Tumey's DVDs,1200833522 +146484,2160,Tumey's DVDs,1187769307 +146484,2176,Tumey's DVDs,1183823983 +146484,2177,Tumey's DVDs,1183823751 +146484,2178,Tumey's DVDs,1183823872 +146484,2179,Tumey's DVDs,1183823858 +146484,2180,Tumey's DVDs,1183823880 +146484,2181,Tumey's DVDs,1183823924 +146484,2182,Tumey's DVDs,1190826519 +146484,2183,Tumey's DVDs,1183823897 +146484,2184,Tumey's DVDs,1183823912 +146484,2185,Tumey's DVDs,1190826549 +146484,2186,Tumey's DVDs,1190826498 +146484,2187,Tumey's DVDs,1190826540 +146484,2194,Tumey's DVDs,1188057111 +146484,2203,Tumey's DVDs,1183823743 +146484,2204,Tumey's DVDs,1183824008 +146484,2208,Tumey's DVDs,1183223445 +146484,2211,Tumey's DVDs,1183223325 +146484,2218,Tumey's DVDs,1183223557 +146484,2223,Tumey's DVDs,1183223540 +146484,2268,Tumey's VHS,1194082087 +146484,2285,Tumey's DVDs,1201197117 +146484,2288,Tumey's DVDs,1182174207 +146484,2301,Tumey's DVDs,1206264838 +146484,2313,Tumey's DVDs,1199107895 +146484,2324,Tumey's DVDs,1179305765 +146484,2329,Tumey's DVDs,1179305917 +146484,2357,Tumey's DVDs,1179306019 +146484,2366,Tumey's DVDs,1190308657 +146484,2389,Tumey's DVDs,1201720090 +146484,2396,Tumey's DVDs,1190907554 +146484,2413,Tumey's DVDs,1189009076 +146484,2427,Tumey's DVDs,1186576306 +146484,2435,Tumey's DVDs,1199470799 +146484,2455,Tumey's DVDs,1202321772 +146484,2459,Tumey's DVDs,1189327200 +146484,2460,Tumey's DVDs,1205669053 +146484,2474,Tumey's DVDs,1200228026 +146484,2519,Tumey's DVDs,1198615772 +146484,2524,Tumey's DVDs,1186577023 +146484,2527,Tumey's DVDs,1205669251 +146484,2571,Tumey's DVDs,1179305825 +146484,2590,Tumey's DVDs,1202229772 +146484,2594,Tumey's DVDs,1199898961 +146484,2664,Tumey's DVDs,1201720027 +146484,2692,Tumey's DVDs,1191253064 +146484,2700,Tumey's DVDs,1188388513 +146484,2710,Tumey's DVDs,1186576330 +146484,2712,Tumey's DVDs,1204400361 +146484,2716,Tumey's DVDs,1192629049 +146484,2726,Tumey's DVDs,1205659181 +146484,2728,Tumey's DVDs,1179305635 +146484,2729,Tumey's DVDs,1201427154 +146484,2730,Tumey's DVDs,1199107757 +146484,2731,Tumey's DVDs,1198229566 +146484,2732,Tumey's DVDs,1201197369 +146484,2745,Tumey's DVDs,1181407243 +146484,2747,Tumey's DVDs,1179307145 +146484,2761,Tumey's DVDs,1199108036 +146484,2762,Tumey's DVDs,1184760134 +146484,2788,Tumey's DVDs,1193316276 +146484,2791,Tumey's DVDs,1179305851 +146484,2858,Tumey's To See Again,1195383027 +146484,2871,Tumey's To See Again,1195383158 +146484,2890,Tumey's DVDs,1186576468 +146484,2908,Tumey's DVDs,1206265013 +146484,2912,Tumey's DVDs,1205051782 +146484,2915,Tumey's DVDs,1200821189 +146484,2916,Tumey's DVDs,1199108579 +146484,2918,Tumey's DVDs,1201427115 +146484,2927,Tumey's DVDs,1198614442 +146484,2935,Tumey's DVDs,1198350868 +146484,2936,Tumey's DVDs,1198350830 +146484,2937,Tumey's DVDs,1198350878 +146484,2943,Tumey's DVDs,1189008872 +146484,2944,Tumey's DVDs,1181995754 +146484,2947,Tumey's DVDs,1198613540 +146484,2948,Tumey's To See Again,1195383184 +146484,2949,Tumey's DVDs,1185872195 +146484,2951,Tumey's DVDs,1179305773 +146484,2959,Tumey's DVDs,1193327690 +146484,2970,Tumey's DVDs,1179328346 +146484,3002,Tumey's DVDs,1179328420 +146484,3016,Tumey's DVDs,1203595046 +146484,3020,Tumey's DVDs,1189694074 +146484,3055,Tumey's DVDs,1205668945 +146484,3058,Tumey's DVDs,1198616732 +146484,3082,Tumey's DVDs,1185872188 +146484,3083,Tumey's DVDs,1179306624 +146484,3088,Tumey's DVDs,1185025844 +146484,3091,Tumey's DVDs,1200497349 +146484,3093,Tumey's DVDs,1200821352 +146484,3095,Tumey's DVDs,1198403210 +146484,3098,Tumey's DVDs,1185025891 +146484,3100,Tumey's DVDs,1201975003 +146484,3108,Tumey's DVDs,1191513736 +146484,3114,Tumey's VHS,1195574128 +146484,3160,Tumey's DVDs,1187513009 +146484,3168,Tumey's DVDs,1199617438 +146484,3173,Tumey's DVDs,1191252893 +146484,3194,Tumey's DVDs,1185025917 +146484,3196,Tumey's DVDs,1189008799 +146484,3201,Tumey's DVDs,1200228229 +146484,3202,Tumey's DVDs,1198614956 +146484,3238,Tumey's DVDs,1199470760 +146484,3265,Tumey's DVDs,1200833413 +146484,3305,Tumey's DVDs,1198616454 +146484,3307,Tumey's DVDs,1199107866 +146484,3310,Tumey's DVDs,1199616946 +146484,3328,Tumey's DVDs,1203595170 +146484,3340,Tumey's DVDs,1179307219 +146484,3361,Tumey's DVDs,1203594960 +146484,3362,Tumey's DVDs,1195146710 +146484,3364,Tumey's DVDs,1179306693 +146484,3365,Tumey's DVDs,1181995651 +146484,3384,Tumey's DVDs,1206264635 +146484,3386,Tumey's DVDs,1182174604 +146484,3462,Tumey's DVDs,1199108261 +146484,3468,Tumey's DVDs,1179305442 +146484,3468,Tumey's To See Again,1195383222 +146484,3471,Tumey's DVDs,1179306158 +146484,3476,Tumey's DVDs,1205659242 +146484,3498,Tumey's DVDs,1182174248 +146484,3503,Tumey's DVDs,1179307307 +146484,3527,Tumey's DVDs,1200821236 +146484,3535,Tumey's DVDs,1205002582 +146484,3545,Tumey's DVDs,1203241259 +146484,3546,Tumey's DVDs,1183223311 +146484,3549,Tumey's DVDs,1201197343 +146484,3551,Tumey's DVDs,1203595074 +146484,3578,Tumey's DVDs,1179305840 +146484,3627,Tumey's DVDs,1186577150 +146484,3629,Tumey's DVDs,1202922206 +146484,3635,Tumey's DVDs,1185872273 +146484,3678,Tumey's DVDs,1181407333 +146484,3681,Tumey's DVDs,1179305993 +146484,3681,Tumey's To See Again,1195383181 +146484,3683,Tumey's DVDs,1179305492 +146484,3683,Tumey's To See Again,1195383117 +146484,3684,Tumey's DVDs,1194722253 +146484,3685,Tumey's DVDs,1196871309 +146484,3706,Tumey's DVDs,1198613360 +146484,3730,Tumey's DVDs,1179306416 +146484,3735,Tumey's DVDs,1205659202 +146484,3741,Tumey's DVDs,1202918174 +146484,3742,Tumey's DVDs,1185967209 +146484,3788,Tumey's DVDs,1202922686 +146484,3793,Tumey's DVDs,1198614611 +146484,3801,Tumey's DVDs,1183223040 +146484,3833,Tumey's DVDs,1198616576 +146484,3836,Tumey's DVDs,1181995683 +146484,3917,Tumey's DVDs,1192628837 +146484,3918,Tumey's DVDs,1192628841 +146484,3931,Tumey's DVDs,1198616800 +146484,3933,Tumey's DVDs,1198616552 +146484,3947,Tumey's DVDs,1192628984 +146484,3949,Tumey's DVDs,1198613328 +146484,4007,Tumey's DVDs,1188388600 +146484,4022,Tumey's DVDs,1185872359 +146484,4027,Tumey's DVDs,1179305818 +146484,4037,Tumey's DVDs,1205659162 +146484,4128,Tumey's DVDs,1187769291 +146484,4144,Tumey's DVDs,1194722183 +146484,4189,Tumey's DVDs,1199616854 +146484,4194,Tumey's DVDs,1198613989 +146484,4226,Tumey's DVDs,1179305821 +146484,4235,Tumey's DVDs,1189327123 +146484,4251,Tumey's DVDs,1199470738 +146484,4262,Tumey's DVDs,1179305945 +146484,4262,Tumey's To See Again,1195383291 +146484,4297,Tumey's DVDs,1189008860 +146484,4298,Tumey's DVDs,1193314700 +146484,4308,Tumey's DVDs,1202321066 +146484,4329,Tumey's DVDs,1198613521 +146484,4329,Tumey's VHS,1189694202 +146484,4349,Tumey's DVDs,1201720105 +146484,4361,Tumey's DVDs,1201197466 +146484,4370,Tumey's DVDs,1186576900 +146484,4378,Tumey's DVDs,1179306138 +146484,4383,Tumey's DVDs,1192628761 +146484,4399,Tumey's DVDs,1203846941 +146484,4406,Tumey's DVDs,1204827895 +146484,4429,Tumey's DVDs,1202229708 +146484,4432,Tumey's DVDs,1205669327 +146484,4506,Tumey's DVDs,1203595201 +146484,4641,Tumey's DVDs,1193314583 +146484,4754,Tumey's DVDs,1202921589 +146484,4795,Tumey's DVDs,1185025935 +146484,4811,Tumey's DVDs,1204828255 +146484,4837,Tumey's DVDs,1206264867 +146484,4840,Tumey's DVDs,1200821330 +146484,4848,Tumey's DVDs,1179305662 +146484,4878,Tumey's DVDs,1179305899 +146484,4886,Tumey's DVDs,1199617277 +146484,4902,Tumey's DVDs,1200496925 +146484,4969,Tumey's DVDs,1206265121 +146484,4970,Tumey's DVDs,1205051756 +146484,4973,Tumey's DVDs,1179305784 +146484,4975,Tumey's VHS,1196871393 +146484,4979,Tumey's DVDs,1200497330 +146484,4993,Tumey's DVDs,1179305830 +146484,5008,Tumey's DVDs,1201197521 +146484,5010,Tumey's DVDs,1183223213 +146484,5013,Tumey's DVDs,1196871175 +146484,5015,Tumey's DVDs,1200592353 +146484,5056,Tumey's DVDs,1198614940 +146484,5058,Tumey's DVDs,1198614966 +146484,5105,Tumey's DVDs,1186747998 +146484,5119,Tumey's DVDs,1203594996 +146484,5121,Tumey's DVDs,1198614885 +146484,5147,Tumey's DVDs,1200833501 +146484,5152,Tumey's DVDs,1200491415 +146484,5184,Tumey's DVDs,1199642708 +146484,5193,Tumey's DVDs,1205425007 +146484,5198,Tumey's DVDs,1203594256 +146484,5269,Tumey's DVDs,1200821210 +146484,5291,Tumey's DVDs,1185369983 +146484,5327,Tumey's DVDs,1203847056 +146484,5352,Remake of Classic,1205684137 +146484,5423,Tumey's DVDs,1191513752 +146484,5459,Tumey's DVDs,1183223762 +146484,5464,Tumey's DVDs,1179305881 +146484,5473,Tumey's DVDs,1197747070 +146484,5488,Tumey's DVDs,1197747065 +146484,5489,Tumey's DVDs,1179328361 +146484,5617,Tumey's DVDs,1204827968 +146484,5618,Tumey's DVDs,1201982201 +146484,5669,Tumey's DVDs,1202321157 +146484,5686,Tumey's DVDs,1189616811 +146484,5712,Tumey's DVDs,1203240921 +146484,5752,Tumey's DVDs,1205425044 +146484,5825,Tumey's DVDs,1198613849 +146484,5878,Tumey's DVDs,1179306458 +146484,5891,Tumey's DVDs,1200071203 +146484,5899,Tumey's DVDs,1185872388 +146484,5945,Tumey's DVDs,1204828426 +146484,5952,Tumey's DVDs,1179305828 +146484,5956,Tumey's DVDs,1186576918 +146484,5959,Tumey's DVDs,1205659222 +146484,5965,Tumey's DVDs,1189009148 +146484,5989,Tumey's DVDs,1194722357 +146484,5990,Tumey's DVDs,1199561268 +146484,5991,Tumey's DVDs,1205668749 +146484,5995,Tumey's DVDs,1179305512 +146484,6003,Tumey's DVDs,1198350726 +146484,6016,Tumey's DVDs,1179305416 +146484,6064,Tumey's DVDs,1200491551 +146484,6140,Tumey's DVDs,1202321179 +146484,6214,Tumey's DVDs,1198613605 +146484,6229,Tumey's DVDs,1202922782 +146484,6254,Tumey's DVDs,1185025952 +146484,6255,Tumey's DVDs,1201719790 +146484,6273,Tumey's DVDs,1200491532 +146484,6296,Tumey's DVDs,1199561334 +146484,6323,Tumey's DVDs,1186577004 +146484,6333,Tumey's DVDs,1198614619 +146484,6350,Tumey's DVDs,1201719827 +146484,6377,Tumey's DVDs,1199617062 +146484,6385,Tumey's DVDs,1198403101 +146484,6396,Tumey's DVDs,1197746829 +146484,6436,Tumey's DVDs,1202921665 +146484,6440,Tumey's DVDs,1179305914 +146484,6509,Tumey's DVDs,1197747046 +146484,6552,Tumey's DVDs,1198613260 +146484,6617,Tumey's DVDs,1182174444 +146484,6650,Tumey's DVDs,1189097504 +146484,6660,Tumey's DVDs,1198614021 +146484,6699,Tumey's DVDs,1206264702 +146484,6755,Tumey's DVDs,1191252947 +146484,6773,Tumey's DVDs,1202229817 +146484,6774,Tumey's DVDs,1200227758 +146484,6783,Tumey's DVDs,1198614704 +146484,6787,Tumey's DVDs,1199617415 +146484,6796,Tumey's VHS,1201975055 +146484,6798,Tumey's DVDs,1206264581 +146484,6807,Tumey's DVDs,1179305961 +146484,6808,Tumey's DVDs,1181995697 +146484,6852,Tumey's DVDs,1203241215 +146484,6870,Tumey's DVDs,1179306533 +146484,6874,Tumey's DVDs,1179305983 +146484,6876,Tumey's DVDs,1206546361 +146484,6920,Tumey's DVDs,1200227996 +146484,6953,Tumey's DVDs,1189616787 +146484,6984,Tumey's DVDs,1204136162 +146484,6986,Tumey's DVDs,1181407224 +146484,6993,Tumey's DVDs,1179305618 +146484,7001,Tumey's DVDs,1201982250 +146484,7008,Tumey's DVDs,1198613305 +146484,7013,Tumey's DVDs,1192629140 +146484,7044,Tumey's DVDs,1198350505 +146484,7056,Tumey's DVDs,1182174550 +146484,7063,Tumey's DVDs,1179328354 +146484,7069,Tumey's To See Again,1195383364 +146484,7076,Tumey's DVDs,1200497388 +146484,7080,Tumey's DVDs,1204135814 +146484,7135,Tumey's DVDs,1201197271 +146484,7139,Tumey's DVDs,1201197537 +146484,7153,Tumey's DVDs,1179305974 +146484,7215,Tumey's DVDs,1202921561 +146484,7235,Tumey's DVDs,1199898884 +146484,7244,Tumey's DVDs,1198616962 +146484,7245,Tumey's DVDs,1198616190 +146484,7311,Tumey's DVDs,1205669084 +146484,7323,Tumey's DVDs,1188057178 +146484,7327,Tumey's DVDs,1200833478 +146484,7367,Tumey's DVDs,1186576729 +146484,7387,Tumey's DVDs,1192628830 +146484,7438,Tumey's DVDs,1179305980 +146484,7458,Tumey's DVDs,1199534718 +146484,7459,Tumey's DVDs,1182174739 +146484,7700,Tumey's DVDs,1202918270 +146484,7728,Tumey's DVDs,1179306844 +146484,7757,Tumey's DVDs,1199108059 +146484,7881,Tumey's DVDs,1198615723 +146484,7889,Tumey's DVDs,1190826428 +146484,7891,Tumey's DVDs,1198615794 +146484,7894,Tumey's DVDs,1187769247 +146484,7896,Tumey's DVDs,1190826473 +146484,7897,Tumey's DVDs,1190826442 +146484,7952,Tumey's DVDs,1187769711 +146484,7981,Tumey's DVDs,1199108020 +146484,8042,Tumey's VHS,1189694189 +146484,8044,Tumey's DVDs,1202922999 +146484,8133,Tumey's DVDs,1204828279 +146484,8136,Tumey's DVDs,1198616308 +146484,8153,Tumey's DVDs,1203847087 +146484,8154,Tumey's DVDs,1200071166 +146484,8183,Tumey's DVDs,1197482979 +146484,8239,Tumey's DVDs,1204561758 +146484,8338,Tumey's DVDs,1198613953 +146484,8341,Tumey's DVDs,1198614478 +146484,8405,Tumey's DVDs,1199107999 +146484,8464,Tumey's DVDs,1196871440 +146484,8491,Tumey's DVDs,1182174531 +146484,8494,Tumey's DVDs,1204135886 +146484,8496,Tumey's DVDs,1199561356 +146484,8516,Tumey's DVDs,1198613977 +146484,8542,Tumey's DVDs,1203595132 +146484,8600,Tumey's DVDs,1182174545 +146484,8604,Tumey's DVDs,1199470861 +146484,8636,Tumey's DVDs,1179306061 +146484,8848,Tumey's DVDs,1204828163 +146484,8874,Tumey's DVDs,1179305870 +146484,8903,Tumey's DVDs,1198617030 +146484,8906,Tumey's DVDs,1202321467 +146484,8928,Tumey's DVDs,1202921644 +146484,8949,Tumey's DVDs,1186576544 +146484,8951,Tumey's DVDs,1206264888 +146484,8959,Tumey's DVDs,1206264801 +146484,8970,Tumey's DVDs,1197746667 +146484,8973,Tumey's DVDs,1179306618 +146484,9010,Tumey's DVDs,1202921984 +146484,25753,Tumey's DVDs,1203594723 +146484,25766,Tumey's DVDs,1203847026 +146484,25850,Tumey's DVDs,1185025945 +146484,25855,Tumey's DVDs,1182174554 +146484,25923,Tumey's DVDs,1198614360 +146484,25927,Tumey's DVDs,1199899019 +146484,26101,Tumey's DVDs,1198615250 +146484,26151,Tumey's DVDs,1198164841 +146484,26231,Tumey's DVDs,1201197455 +146484,26616,Tumey's DVDs,1186048497 +146484,26662,Tumey's DVDs,1200821271 +146484,26776,Tumey's DVDs,1200821291 +146484,27317,Tumey's DVDs,1181407209 +146484,27773,Tumey's DVDs,1179305509 +146484,27788,Tumey's DVDs,1186577062 +146484,27803,Tumey's DVDs,1199108627 +146484,27815,Tumey's DVDs,1199617076 +146484,27831,Tumey's DVDs,1179306085 +146484,27834,Tumey's DVDs,1189616767 +146484,27869,Tumey's DVDs,1179307421 +146484,27904,Tumey's DVDs,1199108382 +146484,30707,Tumey's DVDs,1179305964 +146484,30749,Tumey's DVDs,1179306418 +146484,30810,Tumey's DVDs,1200497307 +146484,31225,Tumey's DVDs,1179328316 +146484,31347,Tumey's DVDs,1198350893 +146484,31410,Tumey's DVDs,1187778482 +146484,31522,Tumey's DVDs,1197747059 +146484,31952,Tumey's DVDs,1205669126 +146484,32587,Tumey's DVDs,1179305937 +146484,32591,Tumey's DVDs,1202922179 +146484,33493,Tumey's DVDs,1179306056 +146484,33660,Tumey's DVDs,1201719875 +146484,34018,Tumey's DVDs,1206265054 +146484,34437,Tumey's DVDs,1199107793 +146484,34482,Tumey's DVDs,1205669149 +146484,34528,Tumey's DVDs,1204828231 +146484,36276,Tumey's DVDs,1201719657 +146484,36517,Tumey's DVDs,1189327248 +146484,37733,Tumey's DVDs,1197808410 +146484,37741,Tumey's DVDs,1203847122 +146484,38038,Tumey's DVDs,1179305861 +146484,39183,Tumey's DVDs,1179306834 +146484,39292,Tumey's DVDs,1187778514 +146484,39381,Tumey's DVDs,1192121533 +146484,40412,Tumey's DVDs,1205668787 +146484,40414,Tumey's DVDs,1199617112 +146484,40583,Tumey's DVDs,1202923056 +146484,40732,Tumey's DVDs,1186576904 +146484,40819,Tumey's DVDs,1201197135 +146484,41863,Tumey's DVDs,1188547557 +146484,41997,Tumey's DVDs,1201427136 +146484,42418,Tumey's DVDs,1199108291 +146484,44694,Tumey's DVDs,1198403166 +146484,44937,Tumey's DVDs,1199108216 +146484,45210,Tumey's DVDs,1201982237 +146484,45499,Tumey's DVDs,1198614615 +146484,45720,Tumey's DVDs,1200228127 +146484,45880,Tumey's DVDs,1199108242 +146484,45928,Tumey's DVDs,1205051721 +146484,46530,Tumey's DVDs,1188547601 +146484,46578,Tumey's DVDs,1200227785 +146484,46855,Tumey's DVDs,1201804618 +146484,46948,Tumey's DVDs,1190644828 +146484,47099,Tumey's DVDs,1204828139 +146484,47306,Tumey's DVDs,1198613999 +146484,47894,Tumey's DVDs,1201982078 +146484,47907,Tumey's DVDs,1202921776 +146484,48043,Tumey's DVDs,1206264472 +146484,48082,Tumey's DVDs,1200226831 +146484,48262,Tumey's DVDs,1204136036 +146484,48326,Tumey's DVDs,1201719846 +146484,48516,Tumey's DVDs,1184760086 +146484,48598,Tumey's DVDs,1201982279 +146484,48696,Tumey's DVDs,1201427072 +146484,48738,Tumey's DVDs,1199108143 +146484,48780,Tumey's DVDs,1201427195 +146484,48783,Tumey's DVDs,1195381287 +146484,48879,Tumey's DVDs,1205668848 +146484,48982,Tumey's DVDs,1201719901 +146484,48997,Tumey's DVDs,1199108348 +146484,49130,Tumey's DVDs,1203241103 +146484,49274,Tumey's DVDs,1199107973 +146484,49314,Tumey's DVDs,1200228189 +146484,49822,Tumey's DVDs,1202921946 +146484,49957,Tumey's DVDs,1200227677 +146484,50068,Tumey's DVDs,1195381311 +146484,51091,Tumey's DVDs,1195146831 +146484,51255,Tumey's DVDs,1199617512 +146484,51540,Tumey's DVDs,1194722297 +146484,51678,Tumey's DVDs,1204135997 +146484,52042,Tumey's DVDs,1202321629 +146484,52328,Tumey's DVDs,1202915931 +146484,52975,Tumey's DVDs,1202321450 +146484,53000,Tumey's DVDs,1198350767 +146484,53127,Tumey's DVDs,1202321350 +146484,53519,Tumey's DVDs,1202321327 +146484,53887,Tumey's DVDs,1201804642 +146484,54272,Tumey's DVDs,1202321307 +146484,54999,Tumey's DVDs,1202321418 +146484,55071,Tumey's DVDs,1203595534 +146486,260,Ride along,1440625365 +146486,260,spy,1440625376 +146493,296,noir thriller,1420162105 +146493,296,quentin tarantino,1420162105 +146493,296,violent,1420162105 +146493,318,morgan freeman,1422722998 +146493,318,prison,1422722998 +146493,318,redemption,1422722998 +146493,356,comedy,1420997006 +146493,356,historical fiction,1420997006 +146493,356,tom hanks,1420997006 +146493,593,horror,1421700268 +146493,593,oscar (best picture),1421700268 +146493,593,suspense,1421700268 +146496,17,Alan Rickman,1177012445 +146496,28,Jane Austen,1177012452 +146496,1233,submarine,1177069397 +146496,1339,gary oldman,1177069361 +146496,1339,vampires,1177069363 +146496,3079,Entisajat,1177012437 +146496,6942,Colin Firth,1177012483 +146496,40629,18th century,1177012389 +146496,40629,Jane Austen,1177012406 +146496,45668,love story,1177012433 +146527,260,Star Wars,1444964727 +146552,2501,will,1212850726 +146566,98695,adventure,1428478951 +146566,98695,sci-fi,1428478958 +146607,24,controversial,1364247739 +146607,94,lolita,1364162019 +146607,166,campy,1364344343 +146607,166,cult film,1364344343 +146607,166,violent,1364344343 +146607,288,controversial,1364165242 +146607,288,violent,1364165262 +146607,445,spoof,1364348222 +146607,507,abduction,1364165831 +146607,507,kidnapping,1364165821 +146607,520,Spoof,1364256174 +146607,592,Michael Keaton,1364160932 +146607,747,so bad it's good,1364255018 +146607,764,obesity,1364247637 +146607,764,quirky,1364247637 +146607,783,negative depiction of disability,1364256142 +146607,833,spoof,1364342266 +146607,851,artist,1364166328 +146607,1004,Stephen Tobolowsky,1364160873 +146607,1017,classic,1378671838 +146607,1017,nostalgic,1378671847 +146607,1094,lgbt,1364165467 +146607,1336,cult film,1364162732 +146607,1336,horror comedy,1364162726 +146607,1377,michael keaton,1364246157 +146607,1380,musical,1364346520 +146607,1419,desert,1364348126 +146607,1419,environment,1364348126 +146607,1419,native tribe,1364348126 +146607,1437,controversial,1364257338 +146607,1483,controversial,1364428376 +146607,1614,lgbt,1364254149 +146607,1676,campy,1364268068 +146607,1676,violent,1364268068 +146607,1833,autism,1364336074 +146607,1924,so bad it's good,1364246476 +146607,1967,puppets,1364255979 +146607,1998,back story,1380604097 +146607,1998,demon,1380604084 +146607,1998,exorcism,1380604074 +146607,1998,possession,1380604079 +146607,1998,special effects,1380604067 +146607,2122,cults,1364268981 +146607,2259,Romp,1364254762 +146607,2265,cult film,1364343466 +146607,2361,controversial,1364258412 +146607,2362,cult film,1364268000 +146607,2362,so bad it's good,1364268000 +146607,2362,transvestite,1364268000 +146607,2449,campy,1364346446 +146607,2449,cult film,1364346455 +146607,2449,puppets,1364346462 +146607,2450,so bad it's good,1364253891 +146607,2460,campy,1379089586 +146607,2460,horror comedy,1379089606 +146607,2616,campy,1364341378 +146607,2787,great storytelling,1379104076 +146607,2787,Mike Starr,1379104097 +146607,2841,telepathy,1364161956 +146607,3178,based on a true story,1364165660 +146607,3210,Stoner,1364267934 +146607,3272,blasphemic,1364246774 +146607,3272,controversial,1364246774 +146607,3477,amazing soundtrack,1364257193 +146607,3669,Nostalgic,1364267852 +146607,3693,campy,1364254682 +146607,3698,Arnold Schwarzenegger,1364255839 +146607,3729,campy,1364254673 +146607,3785,spoof,1364423724 +146607,4133,make up,1377818835 +146607,4282,controversial,1364257134 +146607,4477,stereotypes,1364255809 +146607,4511,Campy,1374725791 +146607,4511,slapstick,1374725776 +146607,4511,supernatural,1374725783 +146607,4587,cult film,1364166165 +146607,4624,controversial,1364247275 +146607,4624,puppets,1364247275 +146607,4642,campy,1364163969 +146607,4649,cult film,1364335116 +146607,4661,erotic thriller,1364258282 +146607,4765,child abuse,1364343308 +146607,4765,controversial,1364343308 +146607,4765,sex offender,1364343308 +146607,4832,campy,1364341094 +146607,4880,condescending,1364335742 +146607,4880,poor writing,1364335730 +146607,4890,offensive,1364163933 +146607,5111,disturbing,1364255700 +146607,5159,environmental,1364166121 +146607,5206,Cult film,1380261349 +146607,5206,exploitation movie,1380261361 +146607,5206,Troma,1380261338 +146607,5364,infidelity,1364166103 +146607,5585,goofy,1382195596 +146607,5585,Halloween,1382195646 +146607,5585,slapstick,1382195618 +146607,5715,campy,1380085104 +146607,5715,cult classic,1380085123 +146607,5715,gory,1380085140 +146607,5715,summer camp,1380085133 +146607,5715,violent,1380085145 +146607,5862,campy,1379108134 +146607,5862,horror spoof,1379108128 +146607,5970,heartbreaking,1364254468 +146607,6214,graphic violence,1364347647 +146607,6214,rape,1364347639 +146607,6215,infidelity,1364269827 +146607,6290,exploitation movie,1381473786 +146607,6290,violent,1381473792 +146607,6301,controversial,1364262857 +146607,6319,inappropriate,1364257027 +146607,6948,hip hop,1364336467 +146607,7024,controversial,1364256718 +146607,7222,so bad it's good,1364345399 +146607,7265,controversial,1364246684 +146607,7265,incest,1364246689 +146607,7932,homelessness,1364256677 +146607,7987,campy,1364340915 +146607,7987,puppets,1364340915 +146607,7987,stop motion,1364340915 +146607,8158,undercover cop,1364350697 +146607,8266,wired 50 greatest soundtracks,1364161234 +146607,8366,religious satire,1364334387 +146607,8959,controversial,1364247166 +146607,26152,campy,1364257898 +146607,26246,nudity,1440358566 +146607,26246,rated r,1440358560 +146607,26702,child abuse,1364161816 +146607,26702,cult film,1364161817 +146607,26998,controversial,1364350203 +146607,26998,disability,1364350196 +146607,27436,based on true story,1377555112 +146607,27436,light weight script,1377566529 +146607,27550,cult,1381814533 +146607,27550,haunted house,1381814525 +146607,27550,religious zealotry,1381814588 +146607,33171,controversial,1364162398 +146607,33171,lgbt,1364162413 +146607,33683,homophobic,1364334989 +146607,34323,gore,1364247124 +146607,34323,graphic,1364247124 +146607,34323,violent,1364247124 +146607,37384,homophobic,1364269582 +146607,40412,Australian,1377662064 +146607,40583,confusing,1364347373 +146607,41573,LGBT,1364161200 +146607,41863,western,1364247094 +146607,42004,lgbt,1364166012 +146607,42418,boring,1364347336 +146607,42418,great cinematography,1364347350 +146607,42418,long,1364347337 +146607,42723,torture,1364254376 +146607,43836,Offensive,1364255396 +146607,43921,child pornography,1364255382 +146607,43921,kidnapping,1364255382 +146607,43921,violence,1364255382 +146607,44779,campy,1364162777 +146607,44788,controversial,1364428874 +146607,44788,ratings system,1364428859 +146607,44974,controversial,1364334580 +146607,45382,Lolita,1364344981 +146607,45652,gun control,1375055928 +146607,45652,multiple storyline,1375055942 +146607,47423,drugs,1364161146 +146607,47999,disturbing,1364428473 +146607,48035,crime spree,1379027279 +146607,48035,criminals,1379027184 +146607,48035,femme fatale,1379027248 +146607,48035,murder,1379027259 +146607,49856,intense,1364342693 +146607,49856,musician,1364342693 +146607,50447,controversial,1364257826 +146607,50447,violent,1364257826 +146607,50912,vignettes,1364246645 +146607,51935,pokies,1364165992 +146607,52042,espionage,1364337002 +146607,52604,Plot Holes,1364269524 +146607,52666,disturbing,1364161912 +146607,52666,slow paced,1364161930 +146607,53024,cults,1364247924 +146607,53999,torture,1364269512 +146607,54004,homophobic,1380604238 +146607,54004,offensive,1364247016 +146607,54004,stereotypes,1364247016 +146607,54341,coming of age,1375060173 +146607,54341,controversial,1375060209 +146607,54341,lgbt,1375060200 +146607,55253,espionage,1364246970 +146607,55253,explicit sex,1364246971 +146607,55875,bizarre,1383881472 +146607,55875,blaxploitation,1383881452 +146607,55875,cult film,1383881431 +146607,55875,free jazz,1383881436 +146607,56587,terrible dialogue,1364246606 +146607,56788,political,1364254291 +146607,57439,New Hampshire,1375058987 +146607,58937,crime,1407373467 +146607,58937,kidnapping,1407373461 +146607,58937,ransom,1407373473 +146607,60032,Lolita,1364161683 +146607,60482,coming of age,1377891600 +146607,60482,culture clash,1377891569 +146607,60482,lolita,1364162381 +146607,60482,racism,1377891522 +146607,60482,sex offender,1377893222 +146607,60482,suburbia,1377301289 +146607,61323,Coen Brothers,1364256463 +146607,64622,controversial,1364165937 +146607,65188,heartbreaking,1364268298 +146607,66090,disturbing,1364268266 +146607,68444,john malcovich,1364347154 +146607,69159,controversial,1364349429 +146607,69159,hand held camera,1364349436 +146607,71520,atheism,1364428826 +146607,72011,infidelity,1364334359 +146607,80158,anti-drugs,1364349048 +146607,80158,multiple characters,1364349048 +146607,80158,nostalgia,1364349048 +146607,80736,child victims,1381379857 +146607,80736,crime,1381377657 +146607,80736,docufiction,1381377411 +146607,80736,found footage,1381377391 +146607,80736,low budget,1381381007 +146607,80736,serial killer,1381381026 +146607,80736,sexual assault,1381380865 +146607,80736,upsetting,1381377458 +146607,80736,violent,1381377450 +146607,80862,online relationships,1364340412 +146607,82041,prom,1364162576 +146607,82041,torture,1364162590 +146607,86882,woody allen,1364165918 +146607,87205,docufiction,1380776100 +146607,87205,found footage,1380776041 +146607,88272,controversial,1364162086 +146607,88272,held captive,1364162120 +146607,88272,violent,1364162104 +146607,89343,gory,1380689015 +146607,89343,guns,1380689033 +146607,89343,religious cult,1380691730 +146607,89343,social commentary,1380688969 +146607,89480,controversial,1364342395 +146607,89761,infidelity,1364257570 +146607,90559,archival footage,1406946384 +146607,90559,celebrity,1406946388 +146607,90559,domestic abuse,1406946360 +146607,90559,substance abuse,1406946382 +146607,90559,television,1406946392 +146607,90559,video diary,1406946409 +146607,92391,creepy,1379119519 +146607,93855,controversial,1364339223 +146607,93855,lolita,1364339230 +146607,96610,time travel,1364161766 +146607,96815,found footage,1375434361 +146607,96815,gory,1375434403 +146607,96815,realistic characters,1375434216 +146607,96815,shorts,1375434266 +146607,99047,abduction,1380859393 +146607,99047,disturbing,1380858843 +146607,103137,based on a true story,1378504881 +146607,103137,black comedy,1378504927 +146607,103137,burglary,1378504896 +146607,103137,celebrity,1378504887 +146607,103137,crime,1378504916 +146607,103137,drugs,1378505090 +146607,103137,vanity,1378505099 +146607,103273,80s horror,1381896375 +146607,103273,campy,1381896380 +146607,103273,cult film,1381896362 +146607,103273,violent,1381896389 +146607,103299,body modification,1377786783 +146607,103299,dark,1377786696 +146607,103483,anthology,1375496612 +146607,103483,found footage,1375496676 +146607,103483,gory,1375496704 +146607,103483,horror,1375496716 +146607,103483,shorts,1375496670 +146607,103784,competition,1374816452 +146607,103784,magicians,1374816348 +146607,103834,heroin,1375055605 +146607,103834,time travel,1375055598 +146607,104513,campy,1377571889 +146607,104513,clowns,1377571908 +146607,104513,cult film,1377571900 +146607,104849,prank calls,1379012396 +146607,104849,serial killer,1379013285 +146607,104849,teenagers,1379012386 +146607,105135,campy,1380085321 +146607,105135,cult classic,1380085330 +146607,105227,9/11,1380440007 +146607,105227,hand held cameras,1380440026 +146607,105227,history,1380439998 +146607,105325,Goofy,1380950876 +146607,105325,Gory,1380950869 +146607,105325,Great cast,1380950919 +146607,105386,CGI,1381206186 +146607,105386,character in wheelchair,1381202977 +146607,105386,child's play,1381202334 +146607,105386,dark comedy,1381202361 +146607,105386,one liners,1381204938 +146607,105386,re-done doll,1381202934 +146607,105481,campy,1381519950 +146607,105481,low budget,1381519933 +146607,105481,slasher,1381519960 +146607,105801,alcohol,1382446636 +146607,105801,Disneyworld,1382446594 +146607,105801,hallucinations,1382446654 +146607,105801,hidden cameras,1382446603 +146607,105801,low budget,1382446665 +146607,106062,hidden camera,1383716064 +146607,106062,jackass,1383716110 +146607,106062,stunts,1383716104 +146607,106438,atheism,1391841988 +146607,106438,christianity,1391842027 +146607,106438,corruption,1391841984 +146607,106438,dramatic comedy,1391841976 +146607,106616,cult film,1385439832 +146607,106736,exploitation,1385866274 +146607,106782,based on a true story,1389486240 +146607,106782,voiceover,1389486223 +146607,106870,found footage,1386310093 +146607,106870,sequel,1386310096 +146607,107612,campy,1388275417 +146607,107612,found footage,1388275414 +146607,107612,retro,1388275427 +146607,108100,corruption,1389766953 +146607,108100,politics,1389766949 +146607,108100,suicide,1389766941 +146607,108316,camp,1390290129 +146607,108316,cult films,1390290135 +146607,108316,horror hosts,1390290125 +146607,108581,body horror,1390887111 +146607,108581,cult film,1390887127 +146607,108581,gore,1390887107 +146607,108581,science,1390887116 +146607,108866,black and white,1391664338 +146607,108866,punk,1391664321 +146607,108866,rare footage,1391664311 +146607,109108,death,1392349083 +146607,109108,investigation,1392349079 +146607,109108,next of kin,1392349090 +146607,109168,campy,1392498919 +146607,109168,cannibals,1392498927 +146607,109168,cult,1392498909 +146607,109168,gridhouse,1392498904 +146607,109205,benefit concert,1392615114 +146607,109205,nuclear power,1392615132 +146607,111551,found footage,1400640279 +146607,112929,crush,1406445947 +146607,112929,diet,1406446742 +146607,112929,doctor,1406445978 +146607,112929,obesity,1406445808 +146607,112929,older man younger woman,1406445963 +146607,112961,coming of age,1406523700 +146607,112961,jealousy,1406528753 +146607,112961,nudity,1406528770 +146607,112961,puberty,1406523708 +146607,112961,underage,1406528767 +146607,113089,sailing,1406946312 +146607,113089,teenager,1406949562 +146607,113227,coming of age,1407539498 +146607,113227,l'effrontee,1407538047 +146607,127136,rated r,1439582182 +146612,97,french,1263684580 +146612,97,social commentary,1263684587 +146612,150,drama,1252077939 +146612,150,tense,1252077943 +146612,150,true story,1252077956 +146612,215,conversation,1316891713 +146612,215,minimalist,1316891722 +146612,319,atmospheric,1341430631 +146612,319,dark comedy,1341430621 +146612,412,family,1306798889 +146612,412,society,1306798882 +146612,471,satirical,1261498917 +146612,471,witty,1261498991 +146612,551,original,1318191961 +146612,628,twist ending,1279453931 +146612,647,military,1313344519 +146612,914,funny,1370097430 +146612,953,black and white,1283468516 +146612,953,heartwarming,1283468486 +146612,953,inspirational,1283468490 +146612,953,small town,1283469043 +146612,953,World War II,1283468498 +146612,968,brilliant ending,1381962784 +146612,1094,transgender,1313865708 +146612,1094,twist ending,1313865693 +146612,1095,Real Estate,1262444300 +146612,1244,classic,1366579247 +146612,1244,relationships,1366579244 +146612,1265,surreal,1321141455 +146612,1265,time loop,1321141453 +146612,1266,Oscar (Best Picture),1267909100 +146612,1345,atmospheric,1336252760 +146612,1357,Australia,1258296263 +146612,1357,true story,1258296242 +146612,1625,psychological,1301434361 +146612,1625,twist ending,1301434791 +146612,1625,unrealistic,1301434372 +146612,1957,running,1332697408 +146612,1957,sports,1332697413 +146612,2073,road trip adventure,1314367186 +146612,2336,historical,1307900109 +146612,2580,humorous,1314722191 +146612,2580,multiple storylines,1314722200 +146612,2596,punk,1280087571 +146612,2598,aviation,1169676270 +146612,2598,Nudity (Topless - Brief),1169676284 +146612,2662,realistic,1311515039 +146612,2762,Atmospheric,1293058878 +146612,2762,enigmatic,1293058882 +146612,2762,psychology,1293058865 +146612,2762,stylized,1293058868 +146612,2762,twist ending,1293058871 +146612,2890,anti-war,1265582652 +146612,2890,Gulf War,1265582646 +146612,2912,revenge,1262550833 +146612,2912,thriller,1262550808 +146612,2912,vengence,1262550826 +146612,3006,Al Pacino,1243893488 +146612,3006,Russell Crowe,1243893483 +146612,3006,true story,1243893495 +146612,3104,fun,1369494252 +146612,3168,road trip,1328458403 +146612,3250,survival,1295218868 +146612,3654,dialogue,1354402643 +146612,3654,World War II,1354402634 +146612,3897,rock and roll,1273359420 +146612,3994,superhero,1250029485 +146612,4008,anti-war,1320535368 +146612,4034,Oscar (Best Directing),1264327525 +146612,4239,based on a true story,1258919616 +146612,4239,dysfunctional family,1258919627 +146612,4239,true story,1258919638 +146612,4381,comedy,1348955608 +146612,4641,adolescence,1260054116 +146612,4641,coming of age,1260054056 +146612,4641,indie,1260054084 +146612,4641,older man younger woman,1260054070 +146612,4641,Scarlett Johansson,1260054053 +146612,4741,1970s,1270497221 +146612,4741,love,1270497213 +146612,4741,sexuality,1270497176 +146612,4741,social criticism,1270497184 +146612,4741,witty,1270497197 +146612,4873,cartoon,1275854085 +146612,4873,philosophy,1275854060 +146612,4873,thought-provoking,1275854063 +146612,4880,family,1277054854 +146612,4880,poignant but boring,1277055433 +146612,4880,touching,1277054820 +146612,4889,unrealistic,1294610853 +146612,4978,realistic,1326579800 +146612,5014,parenting,1307296955 +146612,5014,psychology,1307296629 +146612,5073,psychiatrist,1273960203 +146612,5194,comedy,1266144405 +146612,5294,moraly questionable,1290366145 +146612,5319,twist ending,1349648519 +146612,5329,enigmatic,1319304753 +146612,5446,Aborigines,1260735024 +146612,5608,German,1281893765 +146612,5608,mass behavior,1281875007 +146612,5608,psychology,1281874989 +146612,5608,thought-provoking,1281874998 +146612,5608,true story,1281874993 +146612,5633,Long slow scenes,1264976533 +146612,5669,documentary,1287327044 +146612,5959,Lame ending,1289768054 +146612,5959,tense,1289768206 +146612,6098,comedy,1266143934 +146612,6216,World War II,1407277129 +146612,6323,psychology,1280613242 +146612,6323,twist ending,1280613450 +146612,6502,British,1320004412 +146612,6502,stylized,1320002968 +146612,6502,survival,1320002974 +146612,6552,immigrants,1372533392 +146612,6565,inspirational,1295823199 +146612,6565,realistic,1295823358 +146612,6565,true story,1295823194 +146612,6591,true story,1352677023 +146612,6708,twist ending,1330216034 +146612,6708,unlikely,1330216027 +146612,6807,Funny as hell,1169676412 +146612,6807,Monty Python,1169676410 +146612,6902,life philosophy,1304808622 +146612,6902,self discovery,1304808619 +146612,6942,multiple storylines,1326236853 +146612,7090,atmospheric,1266177085 +146612,7090,Epic,1266177116 +146612,7090,lyrical,1266177088 +146612,7090,passionate,1266177098 +146612,7090,visually appealing,1266177109 +146612,7139,american dream,1262042383 +146612,7139,new beginning,1262042107 +146612,7139,touching,1262042360 +146612,7147,surreal,1263225179 +146612,7802,tense,1363211453 +146612,8493,based on a true story,1323027229 +146612,8493,realistic,1323027238 +146612,8638,dialogue,1275223911 +146612,8638,emotional,1275223965 +146612,8638,minimalist,1275223897 +146612,8638,romance,1275223921 +146612,8640,Myth,1272746063 +146612,8784,cliché ending,1350255768 +146612,8798,great performances,1309648370 +146612,8798,predictable,1309648359 +146612,8950,predictable,1284562631 +146612,8950,psychology,1284562634 +146612,8958,Biography,1269720628 +146612,8958,music business,1269720710 +146612,8981,characters,1269126188 +146612,8981,dialogue,1269126253 +146612,8981,unrealistic,1269126232 +146612,26242,chase,1274619063 +146612,26242,Steven Spielberg,1274619094 +146612,26242,thriller,1274619068 +146612,26242,truck,1274619072 +146612,26941,dark comedy,1266143054 +146612,26941,war,1266143066 +146612,27416,impotence,1270936954 +146612,27416,social,1270937152 +146612,27803,emotional,1278800919 +146612,27803,ethics,1278800999 +146612,27803,true story,1278800924 +146612,27871,racism,1267395826 +146612,27871,segregation,1267395828 +146612,27871,true story,1267395823 +146612,31184,technology,1299331160 +146612,33166,Oscar (Best Picture),1244573908 +146612,33166,political,1244573905 +146612,33166,relationships,1244574185 +146612,33166,social commentary,1244574180 +146612,33558,exotic,1286832755 +146612,33558,nature,1286832785 +146612,33558,realistic,1286834652 +146612,33558,slow,1286834779 +146612,33558,survival,1286832764 +146612,33794,action,1243201906 +146612,33794,atmospheric,1243201916 +146612,33794,Christian Bale,1243201932 +146612,33794,dark,1243201956 +146612,33794,energy,1243459361 +146612,33794,melancholy,1243201928 +146612,33794,superhero,1243201944 +146612,34536,inspirational,1301139045 +146612,34536,realistic,1301139038 +146612,36529,Nicolas Cage,1256497852 +146612,37739,golf,1252077870 +146612,37739,success,1252077882 +146612,37741,writers,1337526961 +146612,39183,emotional,1270999766 +146612,39183,homosexuality,1270998586 +146612,39234,Charlize Theron,1268601128 +146612,39234,true story,1268601146 +146612,39427,psychological,1339955580 +146612,39427,twist ending,1339955586 +146612,39869,thought-provoking,1329604223 +146612,40278,war,1290954824 +146612,40732,stylized,1305467150 +146612,40819,drugs,1272149795 +146612,40819,love,1272149952 +146612,40819,music,1272149781 +146612,40819,true story,1272149784 +146612,42730,inspirational,1288460409 +146612,42730,sports,1288460429 +146612,42730,true story,1288460415 +146612,44709,feel-good,1374701520 +146612,44709,good acting,1374701524 +146612,45950,earth,1282513004 +146612,45950,ecology,1282512986 +146612,45950,environment,1282512983 +146612,45950,global warming,1282512966 +146612,46578,dysfunctional family,1323647433 +146612,47202,thoughtful,1341877151 +146612,47610,unrealistic,1300051310 +146612,47629,based on a true story,1306100090 +146612,47629,boring,1306100151 +146612,47629,politics,1306100084 +146612,47634,police,1287954067 +146612,47634,realistic,1287954077 +146612,47634,rivalry,1287954288 +146612,48043,atmospheric,1344798076 +146612,48043,thought-provoking,1344798082 +146612,48342,realistic,1298667938 +146612,48660,emotional,1271537443 +146612,48774,atmospheric,1262357544 +146612,48780,magic,1247948302 +146612,48780,nonlinear,1247946899 +146612,48780,obsession,1247946951 +146612,48780,twists & turns,1247946947 +146612,49772,emotional,1302126499 +146612,49772,heartbreaking,1302126490 +146612,49772,naomi watts,1302126521 +146612,49772,realistic,1302126510 +146612,49793,true story,1302956494 +146612,49917,documentary,1293923472 +146612,51471,history,1289340312 +146612,51471,political drama,1289340303 +146612,51471,true story,1289340308 +146612,51662,atmospheric,1281218917 +146612,53129,plot twist,1336943544 +146612,53129,serial killer,1336943546 +146612,53318,funny,1343940359 +146612,53318,imagination,1343940348 +146612,53318,surrealism,1343940350 +146612,53550,realistic,1302469907 +146612,55052,emotional,1283604365 +146612,55052,non-linear,1283604378 +146612,55052,realistic,1283604372 +146612,55069,friendship,1396819228 +146612,55069,Realism,1396819222 +146612,55118,father-son relationship,1283011724 +146612,55118,mafia,1282999498 +146612,55118,unrealistic,1283011713 +146612,55290,morality,1327538795 +146612,55444,biography,1324726013 +146612,55765,based on a true story,1324838704 +146612,55814,based on a true story,1250797088 +146612,55814,true story,1250797107 +146612,55908,philosophical,1350772704 +146612,56093,dialogue driven,1366062444 +146612,56367,feel-good,1381962880 +146612,56782,greed,1331426057 +146612,56782,realistic,1331426074 +146612,57274,atmospheric,1324045275 +146612,57972,documentary,1315517102 +146612,57972,ocean,1315518516 +146612,57972,twist ending,1315517116 +146612,58047,ending lame,1332112231 +146612,59336,illogical,1325631252 +146612,68954,dreams,1382991765 +146612,72733,racism,1308519566 +146612,72733,society,1308519551 +146612,72733,sports,1308519555 +146612,72998,characters,1270157021 +146612,72998,visuals,1270197073 +146612,73860,music,1328050978 +146612,74733,atmospheric,1269802093 +146612,74733,blackmail,1269802211 +146612,74733,emotional,1269803856 +146612,74733,murder,1269802169 +146612,74733,social commentary,1269803906 +146612,74733,story,1269802237 +146612,79357,nonlinear,1365889518 +146612,80463,computers,1365286098 +146612,80463,true story,1365286102 +146612,80906,corruption,1376850375 +146612,80906,documentary,1376850387 +146618,1321,John Landis,1166112039 +146623,2160,Oscar (Best Supporting Actress),1446909853 +146623,7099,adventure,1445286141 +146623,7099,anime,1445286127 +146623,7099,ecology,1445286153 +146623,7099,fantasy,1445286144 +146623,7099,Hayao Miyazaki,1445286120 +146623,7099,Miyazaki,1445286148 +146623,7099,post-apocalyptic,1445286136 +146623,106873,beautiful animation,1452352086 +146623,106873,Hideaki Anno,1452352081 +146623,106873,mecha,1452352089 +146623,106873,philosophy,1452352078 +146623,106873,superior sequel,1452352100 +146659,260,classic,1434832705 +146659,260,space,1434832713 +146659,7502,memorable characters,1434833068 +146659,7502,touching,1434833068 +146659,7502,war,1434833068 +146659,115713,dystopic future,1437772023 +146659,115713,sci-fi,1437772023 +146659,115713,twist ending,1437772023 +146678,296,crime,1427722436 +146678,296,must see,1427722436 +146678,296,violent,1427722436 +146678,46855,Criterion,1427722627 +146678,46855,French Resistance,1427722622 +146678,46855,World War II,1427722614 +146683,109187,existential,1441200613 +146683,109187,tragedy,1441200618 +146694,1206,Nudity (Topless - Brief),1205616101 +146694,7438,violence fiction,1205616195 +146708,2571,artificial intelligence,1420664227 +146708,2571,computers,1420664235 +146708,2571,hackers,1420664240 +146708,2571,post apocalyptic,1420664230 +146708,2571,virtual reality,1420664222 +146708,56339,paranormal,1420664503 +146708,70159,Isabelle Fuhrman,1420664427 +146708,70159,orphans,1420664420 +146708,70159,story,1420664431 +146708,79132,dreams,1420664295 +146708,79132,memory,1420664301 +146708,79132,mindfuck,1420664298 +146708,79132,psychological,1420664305 +146708,79132,science fiction,1420664318 +146745,293,assassin,1200167170 +146745,4226,backwards,1199139367 +146745,4226,memory loss,1199139354 +146745,55363,Brad Pitt,1200844131 +146745,55363,Casey Affleck,1200844142 +146745,55363,crime,1200844151 +146745,55363,western,1200844159 +146745,55995,animation,1200844064 +146745,55995,CG animation,1200844081 +146750,93040,history,1363483463 +146750,93040,Ken Burns,1363483462 +146764,823,Eric Rohmer,1239345576 +146764,7136,Francois Truffaut,1239345637 +146772,10,Bond,1145440676 +146772,16,mafia,1145642475 +146772,16,narrated,1145440180 +146772,32,remake,1145441135 +146772,47,scope,1145449717 +146772,47,serial killer,1145642217 +146772,50,unreliable narrators,1199215620 +146772,123,narrated,1190002745 +146772,223,Directorial Debut,1145642497 +146772,247,based on a true story,1145641922 +146772,247,scope,1145449604 +146772,293,hit men,1145641549 +146772,293,scope,1145449478 +146772,296,nonlinear,1145642092 +146772,318,narrated,1145440447 +146772,318,prison,1145642225 +146772,527,based on a true story,1145642201 +146772,527,based on book,1145642201 +146772,527,historical,1145642201 +146772,527,holocaust,1145642180 +146772,541,narrated,1145441246 +146772,589,narrated,1190912989 +146772,593,serial killer,1145642229 +146772,648,memorable sequence,1145441392 +146772,741,2D/3D hybrid Animation,1199393830 +146772,741,Japan,1145424616 +146772,741,Oshii,1145424607 +146772,858,Mafia,1145641894 +146772,866,Directorial Debut,1199394611 +146772,866,heist,1145641312 +146772,866,lesbian,1145641276 +146772,902,classic,1145452116 +146772,902,good score,1145452166 +146772,902,Truman Capote,1145452114 +146772,903,70mm,1145449848 +146772,903,vista vision,1199394675 +146772,1036,scope,1145643013 +146772,1054,16mm,1145440662 +146772,1054,ensemble cast,1145643420 +146772,1054,racism,1145643411 +146772,1136,ruined by nerds,1190003984 +146772,1196,scope,1145642272 +146772,1199,troubled production,1145642429 +146772,1201,scope,1145449596 +146772,1201,spaghetti western,1145641901 +146772,1206,narrated,1145440600 +146772,1213,narrated,1145440198 +146772,1214,scope,1145642388 +146772,1215,narrated,1145440338 +146772,1245,Mafia,1145642027 +146772,1252,scope,1145449449 +146772,1255,16mm,1145642409 +146772,1255,Directorial Debut,1145642397 +146772,1266,revenge,1208710076 +146772,1266,scope,1145449790 +146772,1274,70mm,1145449932 +146772,1274,anime,1145449964 +146772,1274,comic book,1145450002 +146772,1274,influential,1145642356 +146772,1274,otomo,1145450002 +146772,1289,no dialogue,1145641965 +146772,1320,scope,1145450040 +146772,1320,troubled production,1145450040 +146772,1345,Stephen King,1145641319 +146772,1370,retread of the original,1190004487 +146772,1372,good score,1145440458 +146772,1372,open-matte transfer,1145449756 +146772,1372,super35,1145449756 +146772,1374,scope,1145642268 +146772,1425,scope,1145450354 +146772,1617,scope,1145449473 +146772,1673,drugs,1145450139 +146772,1673,ensemble cast,1145450139 +146772,1673,scope,1145450139 +146772,1732,profane,1208709993 +146772,1748,scope,1145449570 +146772,1754,unreliable narrators,1199215651 +146772,1883,Politics,1145377157 +146772,1891,flashbacks,1145441150 +146772,1967,muppets,1145440764 +146772,2167,scope,1145450060 +146772,2288,better than the old version,1145441855 +146772,2288,remake,1199139839 +146772,2288,scope,1145424671 +146772,2291,suburbia,1145441730 +146772,2311,disappointing successor,1145441207 +146772,2329,prison,1145641588 +146772,2329,racism,1145641580 +146772,2391,Tragedy,1145642242 +146772,2455,better than the old version,1145424586 +146772,2455,body horror,1199393907 +146772,2455,romance,1199393916 +146772,2455,tragedy,1145641527 +146772,2455,tragic hero,1199393937 +146772,2490,narrated,1145440916 +146772,2490,troubled production,1145440922 +146772,2551,doctors,1145641487 +146772,2551,drug abuse,1145641487 +146772,2551,drugs,1145641487 +146772,2551,Tragedy,1145641487 +146772,2571,scope,1145449635 +146772,2600,videodrome did it better,1145441193 +146772,2688,military,1145441304 +146772,2688,rape,1145441304 +146772,2761,scope,1145449613 +146772,2804,narrated,1145440363 +146772,2810,anime,1145441409 +146772,2858,narrated,1145440272 +146772,2890,Gulf War,1145441120 +146772,2912,unusual editing,1145440795 +146772,2959,based on book,1145641511 +146772,2959,narrated,1145440283 +146772,2959,scope,1145449458 +146772,2959,unreliable narrators,1199394032 +146772,2976,narrated,1145440581 +146772,3160,ensemble cast,1145440401 +146772,3160,scope,1145449623 +146772,3181,anachronistic,1145440325 +146772,3181,good score,1145440325 +146772,3181,scope,1145449521 +146772,3185,racism,1145441015 +146772,3246,historical,1145641990 +146772,3246,racism,1145641990 +146772,3253,snl,1145441785 +146772,3253,teen,1145441785 +146772,3386,courtroom,1199393220 +146772,3386,historical,1199393238 +146772,3386,Politics,1145449465 +146772,3386,scope,1145449465 +146772,3396,muppets,1145440867 +146772,3424,great cinematography,1145441868 +146772,3424,racism,1145641847 +146772,3471,scope,1145450250 +146772,3504,narrated,1145440886 +146772,3510,time travel,1145450392 +146772,3536,narrated,1145441357 +146772,3556,narrated,1145440510 +146772,3556,suburbia,1145449858 +146772,3645,French New Wave,1145641791 +146772,3645,real-time,1145641791 +146772,3742,odessa,1190912953 +146772,3742,odessa steps,1190912953 +146772,4033,historical,1145440483 +146772,4033,John F. Kennedy,1145642286 +146772,4034,drug war,1208710105 +146772,4034,drugs,1145642293 +146772,4034,ensemble cast,1208710105 +146772,4056,heartbreaking,1145440944 +146772,4103,based on a true story,1145643041 +146772,4103,based on book,1145643041 +146772,4103,World War II,1145643041 +146772,4223,World War II,1145478269 +146772,4226,nonlinear,1145642018 +146772,4226,scope,1145449651 +146772,4246,narrated,1145441255 +146772,4370,sad,1145441220 +146772,4480,remake,1145441238 +146772,4553,allegory,1145441116 +146772,4553,reaganomics,1145441116 +146772,4641,comic book,1145450475 +146772,4643,remake,1190004431 +146772,4850,spectacle,1145441451 +146772,4865,comic book,1145450432 +146772,4878,scope,1145449454 +146772,4878,time travel,1145641378 +146772,4881,great cinematography,1145642006 +146772,4881,narrated,1145440410 +146772,4979,narrated,1145440439 +146772,4979,scope,1145449712 +146772,5072,otomo,1145440851 +146772,5072,reimagining,1145440851 +146772,5072,robots,1145440851 +146772,5072,tezuka,1145440851 +146772,5146,anime,1145441157 +146772,5266,scope,1145449702 +146772,5294,narrated,1145440641 +146772,5294,religion,1145643393 +146772,5349,comic book,1145441041 +146772,5377,based on book,1145642343 +146772,5377,narrated,1145440549 +146772,5445,Philip K. Dick,1145642042 +146772,5445,scope,1145449660 +146772,5617,sexuality,1145642211 +146772,5618,anime,1145642251 +146772,5618,child protagonist,1199139725 +146772,5666,narrated,1147599701 +146772,5679,remake,1145440975 +146772,5690,anime,1145451684 +146772,5690,bombs,1145451742 +146772,5690,ghibli,1145451690 +146772,5690,takahata,1145451700 +146772,5690,Tragedy,1145451742 +146772,5690,true story,1145451742 +146772,5690,World War II,1145451742 +146772,5712,assassination,1304537027 +146772,5712,cinemascope,1304537027 +146772,5712,filmmaking,1304537027 +146772,5712,paranoia,1304537027 +146772,5712,steadicam,1304537027 +146772,5712,train station,1304537027 +146772,5902,narrated,1145440250 +146772,5902,unreliable narrators,1199394390 +146772,5954,new york city,1145449918 +146772,6283,anime,1145440611 +146772,6283,good score,1145450273 +146772,6301,misogyny,1145441066 +146772,6301,rape,1145441056 +146772,6301,vigilante,1145441056 +146772,6350,anime,1145642482 +146772,6433,black and white,1199139798 +146772,6433,experimental,1199139798 +146772,6433,slow motion,1199139798 +146772,6433,Soviet,1199139798 +146772,6440,writers,1145641635 +146772,6534,overambitious,1145441340 +146772,6713,anime,1145441382 +146772,6773,no dialogue,1145440491 +146772,6774,unreliable narrators,1199139640 +146772,6790,great cinematography,1145641630 +146772,6790,virtual reality,1145641630 +146772,6857,anime,1145452030 +146772,6857,samurai,1145642075 +146772,6857,video debut,1145449697 +146772,6940,self mutilation,1190004272 +146772,6987,german expressionism,1145642450 +146772,7022,controversial,1145641649 +146772,7115,Giallo,1145641842 +146772,7118,alternate world,1208710032 +146772,7118,ambitious,1145440522 +146772,7118,directorial debut,1208710032 +146772,7156,History,1145641864 +146772,7156,Vietnam,1145641866 +146772,7158,Depressing,1145440716 +146772,7254,time travel,1145642445 +146772,7323,historical,1145440691 +146772,7360,Directorial Debut,1145450297 +146772,7892,anti-hero,1145441081 +146772,7892,misogyny,1145441081 +146772,8157,alternate history,1408896353 +146772,8157,anime,1145440747 +146772,8157,oshii,1408896350 +146772,8197,narrated,1145440711 +146772,8253,Directorial Debut,1145450177 +146772,8477,narrated,1145440732 +146772,8607,anime,1145642289 +146772,8607,homeless,1199394753 +146772,8636,comic book,1145424662 +146772,8636,scope,1145449483 +146772,8784,zero 7,1145449587 +146772,8961,scope,1145449608 +146772,25753,troubled production,1145441314 +146772,26242,Directorial Debut,1145450310 +146772,26285,Directorial Debut,1145450289 +146772,26776,flying,1145440951 +146772,27706,stephano,1145440782 +146772,27728,2D/3D hybrid Animation,1199393462 +146772,27728,better than the first,1199393377 +146772,27728,controversial,1199393364 +146772,27728,dialogue driven,1145424627 +146772,27731,anime,1145450234 +146772,27731,cats,1145450236 +146772,31658,age issues,1208709930 +146772,31658,anime,1145424638 +146772,31658,anti-war,1208709930 +146772,31658,loosely adapted,1199393310 +146772,31660,anime,1145440474 +146772,31660,pulp,1145642280 +146772,31660,steampunk,1145440471 +146772,31696,comic book,1145642507 +146772,33794,scope,1145449549 +146772,36517,great cinematography,1145641827 +146772,36517,great editing,1145641827 +146772,37733,comic book,1145641940 +146772,39292,historical,1145440683 +146772,39292,journalism,1145643434 +146772,41997,terrorism,1145436954 +146772,44191,comic book,1145437039 +146772,44191,scope,1145449803 +146772,44193,cross-dressing,1145641080 +146772,44195,narrated,1145440209 +146772,44665,unreliable narrators,1199215670 +146772,48774,dystopia,1208709972 +146772,48774,handheld cameras,1199394289 +146772,48774,long takes,1199394270 +146772,48780,nonlinear,1190913086 +146772,49272,scope,1166749389 +146772,51540,investigation,1199394478 +146772,51540,obsession,1199394480 +146772,51540,unresolved,1199394488 +146772,52885,dreams,1200815452 +146772,55118,fight scene,1190912836 +146772,55118,food/cooking,1190912836 +146772,55118,organized crime,1190912836 +146772,55257,broad satire,1191818639 +146772,60341,Iraq War,1239826615 +146772,60341,military,1239826613 +146772,81191,questionable methodology,1304536489 +146772,81191,social commentary,1304536503 +146772,83349,martial arts,1304536927 +146772,83827,brain damage,1304536573 +146772,83827,gender identity,1304536573 +146772,83827,imagination,1304536573 +146772,85179,anime cliches,1304536895 +146772,85179,computers,1304536895 +146772,85179,disaster,1304536895 +146772,85179,family,1304536895 +146772,85179,hacking,1304536895 +146772,85179,virtual reality,1304536895 +146772,86190,beautiful cinematography,1304535986 +146772,86190,great acting,1304535986 +146823,26422,Owned,1184552166 +146852,4995,true story,1442177524 +146852,4995,twist ending,1442177533 +146852,48516,Matt Damon,1442177438 +146852,48516,suspense,1442177428 +146865,47,psychology,1312648437 +146865,1090,psychological,1312648528 +146865,1625,psychological,1312648476 +146865,2959,dark comedy,1312648418 +146865,2959,psychology,1312648420 +146865,3949,psychology,1312648443 +146865,53519,Quentin Tarantino,1312648559 +146865,54503,comedy,1312648381 +146865,55247,psychology,1312648410 +146865,60950,romance,1312648508 +146865,71282,corporations,1312648481 +146865,78209,Comedy,1312648469 +146865,79008,crude humor,1312648429 +146865,79357,nonlinear,1312648456 +146865,80463,dark comedy,1312648514 +146865,81562,loneliness,1312648324 +146865,81562,psychology,1312648335 +146905,592,2º best batmam movie,1137954196 +146905,1485,lawyer,1137517058 +146905,2826,Very interesting,1137437354 +146905,6058,but better!,1137781531 +146905,6058,just a teen movie,1137781531 +146905,6373,religion,1137516937 +146905,6373,Tipical fun movie,1137516930 +146905,6373,without any especial new!,1137516930 +146905,6379,pure cheat,1139023290 +146905,41573,emotion!,1137437640 +146905,41573,fun,1137437640 +146905,41573,great,1137437640 +146905,41997,is right fight fire with fire?,1138461921 +146905,42002,Fantastic,1137438575 +146905,42002,perfect,1137438575 +146906,29,children,1137350608 +146906,29,Santa Claus,1137350608 +146906,47,serial killer,1137351742 +146906,475,based on book,1137351024 +146906,475,historical,1137351024 +146906,475,IRA,1137351024 +146906,475,prison,1137351024 +146906,475,terrorism,1137351024 +146906,527,based on book,1137351643 +146906,527,classic,1137351643 +146906,527,historical,1137351643 +146906,527,Jewish holocaust,1137351643 +146906,527,Oscar winner,1137351643 +146906,527,World War 2,1137351643 +146906,750,based on book,1137350756 +146906,750,cold war,1137350756 +146906,750,satire,1137350756 +146906,910,organized crime,1137351774 +146906,936,communism,1137351380 +146906,936,satire,1137351380 +146906,944,based on book,1137351187 +146906,1029,animals,1137350782 +146906,1029,Disney,1137350782 +146906,1090,Vietnam War,1137369486 +146906,1111,animals,1137351219 +146906,1111,insects,1137351219 +146906,1198,archaeology,1137351459 +146906,1198,Biblical fantasy,1137351459 +146906,1198,epic,1137351459 +146906,1198,Nazis,1137351459 +146906,1213,mafia,1137349632 +146906,1213,organized crime,1137349632 +146906,1241,zombies,1137350704 +146906,1242,American Civil War,1137350899 +146906,1242,based on book,1137350899 +146906,1242,historical,1137350899 +146906,1281,satire,1137350942 +146906,1281,World War 2,1137350942 +146906,1340,Universal monsters,1137350517 +146906,1678,based on book,1137350979 +146906,1734,children,1137351330 +146906,1734,glbt,1137351330 +146906,1734,transgendered,1137351330 +146906,1880,children,1137351130 +146906,2018,animals,1137350488 +146906,2018,based on book,1137350488 +146906,2018,Disney,1137350500 +146906,2019,epic,1137349082 +146906,2019,samurai,1137349082 +146906,2071,AIDS,1137350426 +146906,2071,based on book,1137350426 +146906,2071,glbt,1137350426 +146906,2071,historical,1137350426 +146906,2160,Antichrist,1137351553 +146906,2160,based on book,1137351553 +146906,2313,based on book,1137350847 +146906,2313,historical,1137350847 +146906,2329,neo Nazi,1137350327 +146906,2329,prison,1137350327 +146906,2329,redemption,1137350327 +146906,2395,high school,1137351684 +146906,2398,children,1137351290 +146906,2398,Christmas,1137351290 +146906,2398,courtroom,1137351290 +146906,2398,Santa Claus,1137351290 +146906,2494,historical,1137351061 +146906,2494,Jewish holocaust,1137351061 +146906,2494,World War 2,1137351061 +146906,3932,Universal monsters,1137369578 +146906,4306,based on book,1137349985 +146906,4306,satire,1137349985 +146906,4763,glbt,1137361693 +146906,4763,sports,1137361686 +146906,4763,transgendered,1137361686 +146906,4993,based on book,1137350022 +146906,4993,epic,1137350022 +146906,5093,revenge,1137349090 +146906,5093,terrorism,1137349090 +146906,5309,children,1137361660 +146906,7143,historical,1137349100 +146906,7143,samurai,1137349100 +146906,8341,based on book,1137369624 +146906,8636,Marvel,1137349603 +146906,8636,superhero,1137349603 +146906,8983,wuxia,1137349860 +146906,27618,dinosaurs,1137349473 +146906,27618,time travel,1137349473 +146906,27773,based on comic,1137349925 +146906,27773,revenge,1137349925 +146906,30793,based on book,1137369527 +146906,30793,children,1137369527 +146906,32025,glbt,1137349782 +146906,32025,Mossad,1137349782 +146906,32587,based on comic,1137350057 +146906,33794,DC,1137349581 +146906,33794,superhero,1137349581 +146906,33834,zombies,1137349717 +146906,34072,animals,1137349690 +146906,34523,high school,1137369412 +146906,34579,glbt,1137349348 +146906,34579,revenge,1137349348 +146906,35015,africa,1137349419 +146906,35015,cheetah,1137349419 +146906,39183,glbt,1137350181 +146906,42004,glbt,1137349093 +146906,42004,roadtrip,1137349093 +146906,42004,transgendered,1137349093 +146916,2599,dry funny,1143412541 +146925,260,Boring,1440523041 +146925,260,children,1440522916 +146930,260,scifi,1440094735 +146930,260,war,1440094741 +146938,260,amazing,1436253276 +146938,260,sci-fi,1436253284 +146938,480,action,1436253512 +146938,480,dinosaurs,1436253512 +146938,480,intense,1436253512 +146946,1285,80s,1367288846 +146946,1285,cult classic,1367288842 +146946,2138,dark undertones,1367290299 +146946,2138,not for kids,1367290303 +146946,2294,adult,1367290115 +146946,2294,dark undertones,1367290125 +146946,2706,cult classic,1367289283 +146946,3556,loosely based on the novel,1367288933 +146946,5618,imaginative,1367287628 +146946,5618,original,1367287632 +146946,6619,heavy themes,1367287520 +146946,6619,original plot,1367287530 +146946,6619,sad,1367287533 +146946,7361,Kate Winslet,1367288062 +146946,7361,romance,1367288045 +146946,56367,great soundtrack,1367288750 +146946,56367,quirky,1367288755 +146946,56367,teen coming of age,1367288760 +146946,65585,Anne Hathaway,1367287447 +146946,65585,comedy,1367287449 +146946,65585,romance,1367287452 +146946,65868,creative,1367289603 +146946,65868,cult movie,1367289597 +146946,68954,creative,1367287687 +146946,68954,romantic,1367287683 +146946,71057,slow,1367289947 +146946,80693,bad acting,1367289144 +146946,80693,far from the book,1367289133 +146946,80693,predictable,1367289139 +146946,84374,bad pacing,1367287489 +146946,84944,confusing,1367290086 +146946,84944,slow plot,1367290090 +146946,84944,underdeveloped characters,1367290097 +146946,86817,based off book,1367287405 +146946,86817,comedy,1367287423 +146946,86817,romance,1367287416 +146946,88163,realistic,1367288441 +146946,96821,amazing soundtrack,1367289090 +146946,96821,directed by the author,1367289097 +146954,260,i don't know much about it,1443962168 +146983,34271,In Netflix queue,1137193100 +146983,34405,Firefly,1137193022 +146983,34437,In Netflix queue,1137193148 +146983,37741,In Netflix queue,1137193114 +146983,39183,In Netflix queue,1137193135 +146983,40278,In Netflix queue,1137193159 +146983,40819,In Netflix queue,1137193115 +146983,41997,In Netflix queue,1137193118 +147003,118866,based on true story,1420036418 +147003,118866,feelgood,1420036418 +147003,118866,soccer,1420036418 +147003,119904,battles,1420885041 +147003,119904,british,1420885041 +147003,119904,spy,1420885041 +147003,120476,#scifi,1422784276 +147003,120476,low budget,1422784276 +147003,120476,waste of time,1422784276 +147003,120783,Crime,1420410636 +147003,120783,Doublecross,1420410620 +147003,120783,Prison,1420410605 +147006,260,"sf,science fiction,",1440787803 +147006,260,space adventure,1440787831 +147006,139721,Autism,1440788223 +147006,139721,Maths,1440788214 +147006,139721,Social,1440788204 +147014,2858,great acting,1444906783 +147014,2858,midlife crisis,1444906793 +147014,68157,https://movielens.org/explore?tag=dark%20comedy&sortBy=tagScore,1444906730 +147014,68157,Quentin Tarantino,1444906726 +147014,92259,based on a true story,1444906864 +147014,92259,funny,1444906856 +147022,1,animation,1247855017 +147022,1,Tom Hanks,1247855015 +147022,2,animals,1249829524 +147022,2,board game,1249829603 +147022,2,children,1249829577 +147022,2,fantasy,1249829526 +147022,2,Kirsten Dunst,1249829552 +147022,2,Robin Williams,1249829529 +147022,2,time travel,1249829559 +147022,18,Antonio Banderas,1247911832 +147022,18,dark comedy,1247911841 +147022,18,hotel,1247911869 +147022,18,Madonna,1247911817 +147022,18,Quentin Tarantino,1247911812 +147022,18,Salma Hayek,1247911822 +147022,18,Tim Roth,1247911808 +147022,19,Africa,1248104832 +147022,19,comedy,1248104834 +147022,19,Jim Carrey,1248104828 +147022,32,Brad Pitt,1247843051 +147022,32,Bruce Willis,1247843054 +147022,32,dystopia,1247843056 +147022,32,post-apocalyptic,1247843059 +147022,32,sci-fi,1247843065 +147022,32,twist ending,1247843063 +147022,34,adventure,1249829657 +147022,34,animals,1249829666 +147022,34,children,1249829644 +147022,34,fantasy,1249829677 +147022,34,pigs,1249829649 +147022,34,talking animals,1249829646 +147022,50,action,1372631015 +147022,50,Benicio Del Toro,1372630759 +147022,50,Bryan Singer,1372631045 +147022,50,classic,1372631069 +147022,50,complicated,1372630766 +147022,50,crime,1372630779 +147022,50,ensemble cast,1372630761 +147022,50,heist,1372630785 +147022,50,Kevin Pollak,1372630850 +147022,50,Kevin Spacey,1372630756 +147022,50,Los Angeles,1372631062 +147022,50,New York City,1372630815 +147022,50,Pete Postlethwaite,1372630878 +147022,50,thriller,1372630821 +147022,50,twist ending,1372630824 +147022,50,violence,1372630995 +147022,70,George Clooney,1248007726 +147022,70,horror,1248007798 +147022,70,hostage,1248007765 +147022,70,mexico,1248007806 +147022,70,Quentin Tarantino,1248007722 +147022,70,vampires,1248007749 +147022,70,violence,1248007752 +147022,104,Adam Sandler,1248465757 +147022,104,seen more than once,1248465764 +147022,110,Biography,1247860361 +147022,110,britain,1247860386 +147022,110,drama,1247860529 +147022,110,england,1247860532 +147022,110,historical,1247860358 +147022,110,long,1247860353 +147022,110,medieval,1247860538 +147022,110,Mel Gibson,1247860356 +147022,110,Oscar (Best Picture),1247860546 +147022,110,Oscar Winner,1247860553 +147022,110,war,1247860524 +147022,111,assassination,1299280452 +147022,111,Cybill Shepherd,1299280540 +147022,111,guns,1299280582 +147022,111,Harvey Keitel,1299280560 +147022,111,insanity,1299280572 +147022,111,Jodie Foster,1299280527 +147022,111,Martin Scorsese,1299280423 +147022,111,New York City,1299280427 +147022,111,Peter Boyle,1299280552 +147022,111,Robert De Niro,1299280425 +147022,111,taxi driver,1299280444 +147022,145,action,1247918086 +147022,145,Miami,1247918083 +147022,145,police,1247918092 +147022,145,Téa Leoni,1247918055 +147022,145,Will Smith,1247918058 +147022,150,based on a true story,1249925956 +147022,150,Bill Paxton,1247853166 +147022,150,catastrophe,1247853199 +147022,150,drama,1249925865 +147022,150,Gary Sinise,1247852715 +147022,150,Kevin Bacon,1247852725 +147022,150,Moon,1249925962 +147022,150,Oscar Winner,1247852424 +147022,150,space,1247852434 +147022,150,Tom Hanks,1247852166 +147022,150,true story,1247852171 +147022,163,action,1248862341 +147022,163,Antonio Banderas,1248862312 +147022,163,romance,1248862331 +147022,163,Salma Hayek,1248862322 +147022,163,seen more than once,1248862382 +147022,163,Steve Buscemi,1248862320 +147022,163,thriller,1248862328 +147022,163,violence,1248862335 +147022,170,Angelina Jolie,1248005228 +147022,170,cult film,1248005234 +147022,170,high school,1248005282 +147022,170,internet,1248007334 +147022,170,Jonny Lee Miller,1248005257 +147022,208,Kevin Costner,1248103580 +147022,208,ocean,1248103614 +147022,208,post-apocalyptic,1248103634 +147022,208,sci-fi,1248103617 +147022,231,comedy,1247859104 +147022,231,Farrelly Brothers,1310933531 +147022,231,Jeff Daniels,1310933481 +147022,231,Jim Carrey,1247859096 +147022,231,Lauren Holly,1310933478 +147022,231,road trip,1247859116 +147022,231,slapstick,1310933514 +147022,235,Bill Murray,1248101397 +147022,235,Biography,1248101394 +147022,235,Johnny Depp,1248101391 +147022,235,Oscar Winner,1248101427 +147022,235,Sarah Jessica Parker,1248101406 +147022,235,Tim Burton,1248101387 +147022,235,true story,1248101418 +147022,253,Antonio Banderas,1248861995 +147022,253,Brad Pitt,1248861986 +147022,253,drama,1248861998 +147022,253,horror,1248862005 +147022,253,Kirsten Dunst,1248861988 +147022,253,New Orleans,1248862030 +147022,253,Paris,1248862019 +147022,253,San Francisco,1248862038 +147022,253,Tom Cruise,1248861982 +147022,253,vampires,1248861983 +147022,260,action,1372541254 +147022,260,adventure,1372541224 +147022,260,aliens,1372541222 +147022,260,classic,1372541321 +147022,260,fantasy,1372541231 +147022,260,Harrison Ford,1372541219 +147022,260,sci-fi,1372541236 +147022,260,space,1372541239 +147022,267,boarding school,1249928219 +147022,267,children,1249927878 +147022,267,comedy,1249927845 +147022,267,Damon Wayans,1249927834 +147022,267,hilarious,1249928001 +147022,267,Karyn Parsons,1249928168 +147022,267,military,1249927862 +147022,267,underdog,1249927931 +147022,293,Action,1248103851 +147022,293,French,1247840649 +147022,293,Gary Oldman,1247840651 +147022,293,Jean Reno,1247840642 +147022,293,Luc Besson,1247840939 +147022,293,Natalie Portman,1247840644 +147022,293,seen more than once,1248103952 +147022,296,Bruce Willis,1247688607 +147022,296,comedy,1247688542 +147022,296,cult film,1247688586 +147022,296,Quotable,1247823874 +147022,296,seen more than once,1248863665 +147022,296,violence,1247688596 +147022,318,classic,1247823757 +147022,318,drama,1247823778 +147022,318,friendship,1247823774 +147022,318,inspirational,1247823783 +147022,318,Morgan Freeman,1247823761 +147022,318,prison,1247823765 +147022,318,seen more than once,1247827306 +147022,318,Stephen King,1247823763 +147022,339,Bill Pullman,1248877871 +147022,339,romantic comedy,1248877886 +147022,339,Sandra Bullock,1248877870 +147022,344,comedy,1248104766 +147022,344,Courteney Cox,1248104761 +147022,344,Jim Carrey,1248104671 +147022,355,children,1247859592 +147022,355,comedy,1247859586 +147022,355,John Goodman,1247859569 +147022,355,Rick Moranis,1247859564 +147022,356,Gary Sinise,1247844805 +147022,356,Oscar Winner,1247844787 +147022,356,Quotable,1247823725 +147022,356,Robert Zemeckis,1247844820 +147022,356,seen more than once,1248863635 +147022,356,Tom Hanks,1247844758 +147022,356,war,1247844799 +147022,357,Andie MacDowell,1266705823 +147022,357,Anna Chancellor,1266706360 +147022,357,British,1266705978 +147022,357,Charlotte Coleman,1266706092 +147022,357,comedy,1266706116 +147022,357,David Bower,1266706316 +147022,357,David Haig,1266706326 +147022,357,England,1266705988 +147022,357,funeral,1266705998 +147022,357,Hugh Grant,1266705826 +147022,357,James Fleet,1266706039 +147022,357,John Hannah,1266705949 +147022,357,Kristin Scott Thomas,1266706029 +147022,357,London,1266705982 +147022,357,Mike Newell,1266706203 +147022,357,romance,1266706106 +147022,357,Rowan Atkinson,1266705836 +147022,357,Scotland,1266706135 +147022,357,Simon Callow,1266706069 +147022,357,wedding,1266705958 +147022,364,africa,1247823986 +147022,364,animation,1247823982 +147022,364,father-son relationship,1247848781 +147022,367,Cameron Diaz,1247859203 +147022,367,comedy,1247859206 +147022,367,Jim Carrey,1247823957 +147022,377,Action,1247917810 +147022,377,bomb,1249829869 +147022,377,bus,1249829863 +147022,377,chase,1249829900 +147022,377,Dennis Hopper,1247917906 +147022,377,Jan de Bont,1247917921 +147022,377,Keanu Reeves,1247917799 +147022,377,Sandra Bullock,1247917796 +147022,377,seen more than once,1247917821 +147022,377,Thriller,1247917815 +147022,380,action,1249679250 +147022,380,Arnold Schwarzenegger,1249679228 +147022,380,Bill Paxton,1249679259 +147022,380,comedy,1249679254 +147022,380,Eliza Dushku,1249679263 +147022,380,James Cameron,1249679268 +147022,380,Jamie Lee Curtis,1249679230 +147022,380,spies,1249679234 +147022,455,adventure,1249587526 +147022,455,children,1249587531 +147022,455,Jason James Richter,1249587470 +147022,455,whale,1249587423 +147022,457,Harrison Ford,1247852095 +147022,457,Oscar Winner,1247852110 +147022,457,Tommy Lee Jones,1247852124 +147022,480,action,1248004349 +147022,480,adventure,1248004347 +147022,480,dinosaurs,1248004229 +147022,480,Jeff Goldblum,1283359682 +147022,480,Laura Dern,1283359815 +147022,480,Michael Crichton,1283359715 +147022,480,Oscar Winner,1248004269 +147022,480,Richard Attenborough,1283359841 +147022,480,Sam Neill,1283359802 +147022,480,scenic,1248004200 +147022,480,sci-fi,1248004197 +147022,480,Steven Spielberg,1248004195 +147022,480,want to see again,1248863680 +147022,480,Wayne Knight,1248004340 +147022,500,children,1249678768 +147022,500,comedy,1249678709 +147022,500,cross dressing,1249678734 +147022,500,drama,1249678746 +147022,500,nanny,1249678729 +147022,500,Pierce Brosnan,1249678723 +147022,500,Robin Williams,1249678687 +147022,500,Sally Field,1249678709 +147022,520,comedy,1247828690 +147022,539,Bill Pullman,1252877739 +147022,539,comedy,1252877749 +147022,539,father-son relationship,1252878199 +147022,539,Meg Ryan,1252877741 +147022,539,New York City,1252877805 +147022,539,Seattle,1252877786 +147022,539,single father,1252877864 +147022,539,Tom Hanks,1252877737 +147022,541,action,1283643312 +147022,541,artificial intelligence,1283642035 +147022,541,based on a book,1283642040 +147022,541,cult film,1283642155 +147022,541,drama,1283643328 +147022,541,dystopia,1283642028 +147022,541,future,1283642031 +147022,541,Harrison Ford,1283642024 +147022,541,imdb top 250,1283642053 +147022,541,Los Angeles,1283642073 +147022,541,Ridley Scott,1283642014 +147022,541,robots,1283642057 +147022,541,sci-fi,1283642020 +147022,586,Catherine O'Hara,1261916044 +147022,586,children,1247859663 +147022,586,christmas,1247859645 +147022,586,comedy,1247859649 +147022,586,crime,1249893955 +147022,586,Daniel Stern,1249894234 +147022,586,family,1247859652 +147022,586,Joe Pesci,1261915863 +147022,586,Macaulay Culkin,1247859640 +147022,586,seen more than once,1247859666 +147022,587,Demi Moore,1247917585 +147022,587,ghosts,1247917616 +147022,587,Oscar Winner,1247917598 +147022,587,Patrick Swayze,1247917582 +147022,587,romance,1247917607 +147022,587,Whoopi Goldberg,1247917579 +147022,589,action,1248863807 +147022,589,Arnold Schwarzenegger,1248863791 +147022,589,classic,1248863795 +147022,589,dystopia,1248863814 +147022,589,James Cameron,1248863851 +147022,589,Linda Hamilton,1248863829 +147022,589,robots,1248863799 +147022,589,sci-fi,1248863801 +147022,589,time travel,1248863804 +147022,597,Julia Roberts,1249889962 +147022,597,Richard Gere,1249889964 +147022,597,romance,1249889966 +147022,597,shopping,1249889967 +147022,608,black comedy,1247840596 +147022,608,Coen Brothers,1247840564 +147022,608,crime,1249680896 +147022,608,Frances McDormand,1247840552 +147022,608,kidnapping,1249680910 +147022,608,Minnesota,1247840555 +147022,608,murder,1249680892 +147022,608,police,1249680916 +147022,608,Steve Buscemi,1247840544 +147022,608,William H. Macy,1247840581 +147022,648,Action,1247855738 +147022,648,Tom Cruise,1247855644 +147022,648,Vanessa Redgrave,1247855695 +147022,733,Action,1247917969 +147022,733,Nicolas Cage,1247917950 +147022,733,prison,1247917985 +147022,733,San Francisco,1247917961 +147022,733,Sean Connery,1247917949 +147022,733,thriller,1247917946 +147022,736,action,1247853263 +147022,736,Bill Paxton,1247853260 +147022,736,Helen Hunt,1247853254 +147022,736,Jan de Bont,1249925288 +147022,736,natural disaster,1247853316 +147022,736,Philip Seymour Hoffman,1247853257 +147022,750,apocalypse,1268642306 +147022,750,British,1268642181 +147022,750,classic,1268642191 +147022,750,comedy,1268642178 +147022,750,dark comedy,1268642196 +147022,750,George C. Scott,1268642242 +147022,750,Peter Sellers,1268642214 +147022,750,politics,1268642174 +147022,750,Slim Pickens,1268642407 +147022,750,Stanley Kubrick,1268642165 +147022,750,Sterling Hayden,1268642397 +147022,750,Tracy Reed,1268642426 +147022,750,war,1268642171 +147022,765,comedy,1249479779 +147022,765,drama,1249479779 +147022,765,Francis Ford Coppola,1249479779 +147022,765,Jennifer Lopez,1249479779 +147022,765,Robin Williams,1249479731 +147022,765,want to see again,1249479725 +147022,778,1980s,1356730117 +147022,778,addiction,1356730124 +147022,778,based on a book,1320523656 +147022,778,black comedy,1356730132 +147022,778,British,1320523725 +147022,778,classic,1247842357 +147022,778,crime,1356730140 +147022,778,cult film,1320523878 +147022,778,Danny Boyle,1247842246 +147022,778,dark comedy,1320523646 +147022,778,drugs,1247842264 +147022,778,Ewan McGregor,1247842237 +147022,778,Ewen Bremner,1320523603 +147022,778,great soundtrack,1247842276 +147022,778,imdb top 250,1356730158 +147022,778,Jonny Lee Miller,1320523597 +147022,778,Kelly Macdonald,1320523624 +147022,778,Kevin McKidd,1320523614 +147022,778,Robert Carlyle,1247842314 +147022,778,Scotland,1356730194 +147022,778,Scottish,1320523635 +147022,778,seen more than once,1249842140 +147022,778,social commentary,1320523680 +147022,778,violence,1247842286 +147022,780,Jeff Goldblum,1247855179 +147022,780,sci-fi,1247855105 +147022,780,war,1247855111 +147022,780,Will Smith,1247855111 +147022,788,alter ego,1249680810 +147022,788,comedy,1249680789 +147022,788,Eddie Murphy,1249680782 +147022,788,Jada Pinkett Smith,1249680803 +147022,833,comedy,1249628326 +147022,833,high school,1249628307 +147022,833,Jon Lovitz,1249628251 +147022,833,Louise Fletcher,1249628295 +147022,833,Tia Carrere,1249628255 +147022,858,Al Pacino,1248897400 +147022,858,based on a book,1248897456 +147022,858,drama,1248897666 +147022,858,family,1248897526 +147022,858,Francis Ford Coppola,1248897509 +147022,858,James Caan,1248897445 +147022,858,mafia,1248897240 +147022,858,Marlon Brando,1248897428 +147022,858,New York City,1248897434 +147022,858,Robert De Niro,1248897472 +147022,902,Audrey Hepburn,1387756610 +147022,902,based on a book,1387756694 +147022,902,Blake Edwards,1387756743 +147022,902,classic,1387756688 +147022,902,George Peppard,1387756760 +147022,902,neighbors,1387756726 +147022,902,New York City,1387756619 +147022,902,romance,1387756642 +147022,912,black and white,1253079749 +147022,912,classic,1253079755 +147022,912,drama,1253079758 +147022,912,Humphrey Bogart,1253079629 +147022,912,Ingrid Bergman,1253079640 +147022,912,Oscar Winner,1253079784 +147022,912,Paul Henreid,1253079741 +147022,912,romance,1253079771 +147022,912,war,1253079623 +147022,912,World War II,1253079619 +147022,923,didn't finish,1249829134 +147022,969,adventure,1255955727 +147022,969,Africa,1255955750 +147022,969,based on a book,1255955730 +147022,969,classic,1255955796 +147022,969,Humphrey Bogart,1255955740 +147022,969,John Huston,1255955852 +147022,969,jungle,1255956709 +147022,969,Katherine Hepburn,1255955735 +147022,969,Oscar Winner,1255956728 +147022,969,river,1255955826 +147022,969,romance,1255955793 +147022,969,World War I,1255955740 +147022,1020,bobsled,1249111154 +147022,1020,comedy,1249111168 +147022,1020,inspirational,1249111184 +147022,1020,Jamaica,1249111126 +147022,1020,John Candy,1249111222 +147022,1020,Olympics,1249111130 +147022,1020,quotable,1249112552 +147022,1020,seen more than once,1249110156 +147022,1020,sports,1249111132 +147022,1020,underdogs,1249111139 +147022,1035,1930s,1449677165 +147022,1035,abbey,1449677486 +147022,1035,Anschluss,1449678751 +147022,1035,Austria,1247917434 +147022,1035,children,1247917460 +147022,1035,choir,1247917426 +147022,1035,Christopher Plummer,1449678641 +147022,1035,classic,1247917408 +147022,1035,drama,1449677468 +147022,1035,family,1449677199 +147022,1035,Julie Andrews,1247917476 +147022,1035,long,1449677303 +147022,1035,mountains,1449677236 +147022,1035,musical,1247917429 +147022,1035,nazi,1449677284 +147022,1035,nuns,1449677316 +147022,1035,Oscar Winner,1247917421 +147022,1035,Robert Wise,1449677271 +147022,1035,romantic,1449677380 +147022,1035,Salzburg,1449677320 +147022,1035,seen more than once,1247917408 +147022,1035,true story,1449677331 +147022,1035,war,1449677292 +147022,1035,World War II,1247917405 +147022,1059,action,1282522069 +147022,1059,based on a play,1356733613 +147022,1059,Baz Luhrmann,1247827905 +147022,1059,beautiful,1356733617 +147022,1059,Claire Danes,1247827876 +147022,1059,classic,1356733636 +147022,1059,colourful,1428999150 +147022,1059,great soundtrack,1282522084 +147022,1059,Leonardo DiCaprio,1247827875 +147022,1059,music,1247827893 +147022,1059,romance,1282522063 +147022,1059,Shakespeare,1282522056 +147022,1061,Brad Pitt,1247843654 +147022,1061,child abuse,1247843650 +147022,1061,Dustin Hoffman,1247843656 +147022,1061,Kevin Bacon,1247843659 +147022,1061,prison,1247843786 +147022,1061,revenge,1247843667 +147022,1061,Robert De Niro,1247843662 +147022,1061,true story,1247843665 +147022,1084,1920s,1249925713 +147022,1084,Arthur Penn,1249925769 +147022,1084,based on a true story,1249925558 +147022,1084,biography,1249925558 +147022,1084,classic,1249925802 +147022,1084,crime,1249925471 +147022,1084,Faye Dunaway,1249925486 +147022,1084,gangsters,1249925803 +147022,1084,Oscar Winner,1249925784 +147022,1084,romance,1249925471 +147022,1084,Warren Beatty,1249925504 +147022,1089,nonlinear,1247841115 +147022,1089,Quentin Tarantino,1247841103 +147022,1089,violence,1247841117 +147022,1092,crime,1249927444 +147022,1092,erotic,1249927555 +147022,1092,Michael Douglas,1249927420 +147022,1092,Paul Verhoeven,1249927502 +147022,1092,San Francisco,1249927586 +147022,1092,Sharon Stone,1249927417 +147022,1092,thriller,1249927451 +147022,1193,depressing,1247843581 +147022,1193,Jack Nicholson,1247843571 +147022,1193,Oscar (Best Picture),1247843574 +147022,1199,didn't finish,1253733000 +147022,1208,classic,1247823663 +147022,1208,Quotable,1247823686 +147022,1208,war,1247823660 +147022,1214,aliens,1248863959 +147022,1214,classic,1248863961 +147022,1214,horror,1248863963 +147022,1214,Ian Holm,1248864015 +147022,1214,Ridley Scott,1248863977 +147022,1214,sci-fi,1248863952 +147022,1214,Sigourney Weaver,1248863949 +147022,1214,space,1248863954 +147022,1214,space travel,1248863957 +147022,1220,action,1382792246 +147022,1220,Aretha Franklin,1382792321 +147022,1220,based on a TV show,1382792972 +147022,1220,car chase,1382792106 +147022,1220,Chicago,1382792583 +147022,1220,classic,1382792389 +147022,1220,comedy,1382792384 +147022,1220,cult film,1382792897 +147022,1220,Dan Aykroyd,1382792297 +147022,1220,James Brown,1382792310 +147022,1220,John Belushi,1382792677 +147022,1220,John Landis,1382792457 +147022,1220,music,1382792262 +147022,1220,music business,1382792266 +147022,1220,musical,1382792228 +147022,1220,musicians,1382792993 +147022,1220,neo-Nazis,1382793000 +147022,1220,notable soundtrack,1382792127 +147022,1220,police,1382792271 +147022,1220,Ray Charles,1382792372 +147022,1220,road trip,1382792193 +147022,1220,Saturday Night Live,1382793007 +147022,1220,surreal,1382792198 +147022,1222,1960s,1310492333 +147022,1222,Adam Baldwin,1310491841 +147022,1222,based on a book,1310492237 +147022,1222,drama,1310491736 +147022,1222,imdb top 250,1310491917 +147022,1222,journalism,1310494520 +147022,1222,Matthew Modine,1310491868 +147022,1222,military,1310491772 +147022,1222,R. Lee Ermey,1310492019 +147022,1222,soundtrack,1310492367 +147022,1222,Stanley Kubrick,1310491706 +147022,1222,suicide,1310492385 +147022,1222,Vietnam,1310491709 +147022,1222,Vincent D'Onofrio,1310491805 +147022,1222,war,1310491713 +147022,1240,Action,1248863894 +147022,1240,Arnold Schwarzenegger,1248863893 +147022,1240,James Cameron,1248863896 +147022,1240,Linda Hamilton,1248863918 +147022,1240,sci-fi,1248863901 +147022,1240,time travel,1248863902 +147022,1246,boarding school,1249482715 +147022,1246,drama,1249482670 +147022,1246,high school,1247830526 +147022,1246,inspirational,1247830505 +147022,1246,Peter Weir,1249482692 +147022,1246,Quotable,1247830513 +147022,1246,Robin Williams,1247830495 +147022,1247,adultery,1254207208 +147022,1247,affair,1254220400 +147022,1247,Anne Bancroft,1254207239 +147022,1247,California,1254208245 +147022,1247,classic,1254207261 +147022,1247,comedy,1254207213 +147022,1247,coming of age,1254245747 +147022,1247,drama,1254207228 +147022,1247,Dustin Hoffman,1254207205 +147022,1247,erotic,1254245604 +147022,1247,hotel,1254208532 +147022,1247,Katharine Ross,1254207246 +147022,1247,Los Angeles,1254219146 +147022,1247,love triangle,1254220400 +147022,1247,Mike Nichols,1254208107 +147022,1247,notable soundtrack,1254207196 +147022,1247,parent-children relationship,1254245718 +147022,1247,rebellion,1254245652 +147022,1247,runaway,1254245767 +147022,1247,suburbia,1254208553 +147022,1247,university,1254208542 +147022,1247,wedding,1254245756 +147022,1258,classic,1247830958 +147022,1258,ghosts,1247830950 +147022,1258,horror,1247830935 +147022,1258,Jack Nicholson,1247830908 +147022,1258,seen more than once,1247831007 +147022,1258,Stanley Kubrick,1247830965 +147022,1258,Stephen King,1247830914 +147022,1258,thriller,1247830943 +147022,1265,alternate reality,1268475367 +147022,1265,alternate universe,1420148819 +147022,1265,Andie MacDowell,1268475229 +147022,1265,animals,1268475279 +147022,1265,Bill Murray,1247823223 +147022,1265,character development,1420148829 +147022,1265,Chris Elliott,1249632682 +147022,1265,Classic,1247823248 +147022,1265,comedy,1247823225 +147022,1265,existentialism,1420148781 +147022,1265,Fantasy,1420148835 +147022,1265,feel-good,1420148761 +147022,1265,Harold Ramis,1249632638 +147022,1265,love,1420148848 +147022,1265,original plot,1249632756 +147022,1265,Pennsylvania,1268475304 +147022,1265,romance,1268475246 +147022,1265,small town,1249632600 +147022,1265,surreal,1249632663 +147022,1265,television,1249632717 +147022,1265,time loop,1268475383 +147022,1265,time travel,1247823242 +147022,1265,winter,1268475323 +147022,1270,1980s,1247860789 +147022,1270,Christopher Lloyd,1247860787 +147022,1270,classic,1247860730 +147022,1270,comedy,1253882898 +147022,1270,futuristic,1247860798 +147022,1270,high school,1253882882 +147022,1270,Lea Thompson,1253884256 +147022,1270,Michael J. Fox,1247860786 +147022,1270,Robert Zemeckis,1247860712 +147022,1270,sci-fi,1247860720 +147022,1270,seen more than once,1253884295 +147022,1270,time travel,1247860717 +147022,1270,want to see again,1247860736 +147022,1286,hotel,1248041827 +147022,1286,Jane Seymour,1248041802 +147022,1286,romance,1248041754 +147022,1286,time travel,1248041836 +147022,1367,children,1249586097 +147022,1367,comedy,1249586103 +147022,1367,dogs,1249586046 +147022,1367,Glenn Close,1249585988 +147022,1367,Jeff Daniels,1249586062 +147022,1367,Joely Richardson,1249586069 +147022,1380,classic,1247917233 +147022,1380,great soundtrack,1247917254 +147022,1380,high school,1247917261 +147022,1380,John Travolta,1247917218 +147022,1380,musical,1247917241 +147022,1380,Olivia Newton-John,1247917227 +147022,1391,aliens,1249916295 +147022,1391,comedy,1249916658 +147022,1391,Jack Nicholson,1249916627 +147022,1391,Marlon Brando,1249916672 +147022,1391,Michael J. Fox,1249916669 +147022,1391,Natalie Portman,1249916666 +147022,1391,parody,1249916729 +147022,1391,Pierce Brosnan,1249916674 +147022,1391,Sarah Jessica Parker,1249916676 +147022,1391,sci-fi,1249916736 +147022,1391,Tim Burton,1249916662 +147022,1393,"""Show me the money.""",1247844093 +147022,1393,comedy,1247844148 +147022,1393,Cuba Gooding Jr.,1247844108 +147022,1393,Oscar (Best Supporting Actor),1247844143 +147022,1393,quotable,1247844188 +147022,1393,Renee Zellweger,1247844126 +147022,1393,romance,1247844161 +147022,1393,sports,1247844111 +147022,1393,Tom Cruise,1247844104 +147022,1393,want to see again,1247844172 +147022,1485,comedy,1249680662 +147022,1485,courtroom,1249680670 +147022,1485,father-son relationship,1249680639 +147022,1485,Jim Carrey,1249680648 +147022,1485,marriage,1249680679 +147022,1513,chick flick,1361305452 +147022,1513,comedy,1361305490 +147022,1513,David Mirkin,1361305390 +147022,1513,friendship,1361305427 +147022,1513,high school,1361305340 +147022,1513,Janeane Garofalo,1361305594 +147022,1513,Lisa Kudrow,1361305358 +147022,1513,Mira Sorvino,1361305349 +147022,1513,reunion,1361305496 +147022,1517,comedy,1309988346 +147022,1517,Elizabeth Hurley,1309988238 +147022,1517,James Bond,1309988249 +147022,1517,Las Vegas,1309988298 +147022,1517,London,1309988306 +147022,1517,Mike Myers,1309988233 +147022,1517,parody,1309988245 +147022,1517,time travel,1309988461 +147022,1527,Bruce Willis,1247853455 +147022,1527,Gary Oldman,1247853457 +147022,1527,Ian Holm,1247853482 +147022,1527,Luc Besson,1247853458 +147022,1527,Milla Jovovich,1247853450 +147022,1527,sci-fi,1247853494 +147022,1527,seen more than once,1247853497 +147022,1580,action,1250966113 +147022,1580,aliens,1250966107 +147022,1580,comedy,1250966110 +147022,1580,sci-fi,1250966147 +147022,1580,Tommy Lee Jones,1250966101 +147022,1580,Will Smith,1250966099 +147022,1644,horror,1249925371 +147022,1644,Jennifer Love Hewitt,1249925355 +147022,1644,Sarah Michelle Gellar,1249925359 +147022,1644,thriller,1249925378 +147022,1680,alternate universe,1247916437 +147022,1680,British,1247916436 +147022,1680,Gwyneth Paltrow,1247916432 +147022,1680,London,1247916547 +147022,1682,big brother,1248007653 +147022,1682,dark comedy,1248007595 +147022,1682,drama,1248007600 +147022,1682,dystopia,1248007580 +147022,1682,Ed Harris,1248007568 +147022,1682,Jim Carrey,1248007560 +147022,1682,Laura Linney,1248007577 +147022,1682,original plot,1248007607 +147022,1682,small town,1249632843 +147022,1682,social commentary,1248007586 +147022,1682,voyeurism,1248007590 +147022,1721,catastrophe,1247917691 +147022,1721,historical,1247917673 +147022,1721,James Cameron,1247917707 +147022,1721,Kate Winslet,1247917657 +147022,1721,Leonardo DiCaprio,1247823927 +147022,1721,long,1247917663 +147022,1721,Oscar Winner,1247917685 +147022,1721,romance,1247917716 +147022,1732,Coen Brothers,1247851349 +147022,1772,Dan Aykroyd,1247999623 +147022,1772,seen more than once,1247999635 +147022,1772,sequel,1247999638 +147022,1772,want to see again,1247999656 +147022,1784,classic,1247844420 +147022,1784,Comedy,1247844416 +147022,1784,Cuba Gooding Jr.,1247844412 +147022,1784,Greg Kinnear,1247844410 +147022,1784,Helen Hunt,1247844407 +147022,1784,Jack Nicholson,1247844408 +147022,1784,Oscar Winner,1247844435 +147022,1784,Quotable,1247844443 +147022,1784,seen more than once,1247844425 +147022,1784,want to see again,1247844473 +147022,1882,Jean Reno,1248103692 +147022,1882,Matthew Broderick,1248103687 +147022,1882,monster,1248103696 +147022,1882,New York City,1248103680 +147022,1882,Roland Emmerich,1248103720 +147022,1882,sci-fi,1248103714 +147022,1882,thriller,1248103738 +147022,1961,brothers,1248465335 +147022,1961,dark comedy,1248465298 +147022,1961,Dustin Hoffman,1248465290 +147022,1961,Oscar Winner,1248465314 +147022,1961,road trip,1248465324 +147022,1961,Tom Cruise,1248465294 +147022,1961,true story,1248465326 +147022,2011,classic,1247860865 +147022,2011,Robert Zemeckis,1247860847 +147022,2011,sci-fi,1247860851 +147022,2011,time travel,1247860848 +147022,2012,Christopher Lloyd,1247860946 +147022,2012,Michael J. Fox,1247860901 +147022,2012,Robert Zemeckis,1247860902 +147022,2012,sci-fi,1247860905 +147022,2012,time travel,1247860909 +147022,2012,western,1247860933 +147022,2028,France,1249925918 +147022,2028,Matt Damon,1247844906 +147022,2028,Steven Spielberg,1247844878 +147022,2028,Tom Hanks,1247844874 +147022,2028,Vin Diesel,1249925928 +147022,2028,violent,1247844888 +147022,2028,war,1247844869 +147022,2028,World War II,1247844865 +147022,2054,adventure,1247859306 +147022,2054,children,1247859360 +147022,2054,family,1247859311 +147022,2054,fantasy,1249829824 +147022,2054,original plot,1249829777 +147022,2054,Rick Moranis,1247859301 +147022,2054,seen more than once,1247859319 +147022,2117,big brother,1248007690 +147022,2117,dystopia,1247829380 +147022,2117,George Orwell,1247829317 +147022,2117,John Hurt,1247829484 +147022,2117,Quotable,1247829498 +147022,2117,Richard Burton,1247829471 +147022,2117,seen more than once,1247829365 +147022,2117,Suzanna Hamilton,1247829451 +147022,2268,court,1287603890 +147022,2268,courtroom drama,1287603968 +147022,2268,crime,1287603955 +147022,2268,Demi Moore,1247844028 +147022,2268,drama,1287603949 +147022,2268,Jack Nicholson,1247843988 +147022,2268,Kevin Bacon,1287603871 +147022,2268,Kevin Pollak,1287603921 +147022,2268,Kiefer Sutherland,1287603878 +147022,2268,military,1247844046 +147022,2268,Quotable,1247843985 +147022,2268,Rob Reiner,1249929543 +147022,2268,seen more than once,1247844013 +147022,2268,Tom Cruise,1247843990 +147022,2268,want to see again,1247844000 +147022,2273,action,1409498938 +147022,2273,Brett Ratner,1409498884 +147022,2273,Chinese,1409498961 +147022,2273,Chris Tucker,1409498839 +147022,2273,comedy,1409498902 +147022,2273,crime,1409499032 +147022,2273,Jackie Chan,1409498937 +147022,2273,kidnapping,1409498946 +147022,2273,Los Angeles,1409498972 +147022,2273,martial arts,1409499025 +147022,2273,police,1409498871 +147022,2273,Tom Wilkinson,1409498918 +147022,2273,violence,1409499009 +147022,2324,father-son relationship,1248858542 +147022,2324,Holocaust,1248858562 +147022,2324,Italy,1248858619 +147022,2324,Oscar Winner,1248858500 +147022,2324,Roberto Benigni,1248858538 +147022,2324,seen more than once,1248858707 +147022,2324,World War II,1248858498 +147022,2329,disturbing,1247824868 +147022,2329,Edward Furlong,1249583407 +147022,2329,Edward Norton,1247824854 +147022,2329,prison,1249583427 +147022,2329,racism,1249583418 +147022,2329,violence,1247824890 +147022,2357,alcoholism,1304273592 +147022,2357,Brazil,1304273576 +147022,2357,drama,1304273777 +147022,2357,father-son relationship,1304273606 +147022,2357,Fernanda Montenegro,1304273654 +147022,2357,heartwarming,1304273804 +147022,2357,orphans,1304273794 +147022,2357,religion,1304273760 +147022,2357,Rio de Janeiro,1304273572 +147022,2357,road trip,1304273565 +147022,2357,South America,1304273580 +147022,2357,Vinícius de Oliveira,1304273716 +147022,2357,Walter Salles,1304273736 +147022,2375,comedy,1249634768 +147022,2375,family,1249634768 +147022,2375,marriage,1249634768 +147022,2375,Richard Benjamin,1249634779 +147022,2375,seen more than once,1249634787 +147022,2375,Shelley Long,1249634755 +147022,2375,Tom Hanks,1249634736 +147022,2378,Bubba Smith,1251995740 +147022,2378,classic,1251996095 +147022,2378,comedy,1247828818 +147022,2378,crime,1251996217 +147022,2378,David Graf,1251995779 +147022,2378,dormitory,1251996045 +147022,2378,G.W. Bailey,1251995692 +147022,2378,George Gaynes,1251995758 +147022,2378,Hugh Wilson,1251996211 +147022,2378,Kim Cattrall,1251995762 +147022,2378,Michael Winslow,1251996539 +147022,2378,police,1247828818 +147022,2378,riot,1251996114 +147022,2378,seen more than once,1251996520 +147022,2378,Steve Guttenberg,1247828827 +147022,2379,Bobcat Goldthwait,1252866584 +147022,2379,comedy,1249830268 +147022,2379,crime,1252866520 +147022,2379,David Graf,1252866433 +147022,2379,franchise,1253017378 +147022,2379,Jerry Paris,1252866486 +147022,2379,Lance Kinsey,1253732153 +147022,2379,Michael Winslow,1252866431 +147022,2379,nostalgia,1249830326 +147022,2379,police,1249830681 +147022,2379,seen more than once,1252866425 +147022,2379,Steve Guttenberg,1249830210 +147022,2380,Art Metrano,1253017460 +147022,2380,Bobcat Goldthwait,1253016897 +147022,2380,Bubba Smith,1253017479 +147022,2380,comedy,1253016822 +147022,2380,crime,1253016709 +147022,2380,David Graf,1253017493 +147022,2380,franchise,1253016845 +147022,2380,George Gaynes,1253017451 +147022,2380,Lance Kinsey,1253017549 +147022,2380,Leslie Easterbrook,1253017509 +147022,2380,Marion Ramsey,1253017468 +147022,2380,Michael Winslow,1253016701 +147022,2380,nostalgia,1249830377 +147022,2380,police,1249830684 +147022,2380,seen more than once,1253017426 +147022,2380,Steve Guttenberg,1249830372 +147022,2380,Tim Kazurinsky,1253017522 +147022,2381,Bobcat Goldthwait,1253731771 +147022,2381,Bubba Smith,1253731727 +147022,2381,comedy,1249830135 +147022,2381,crime,1253731383 +147022,2381,David Graf,1253731199 +147022,2381,G.W. Bailey,1253731804 +147022,2381,Jim Drake,1253731374 +147022,2381,Lance Kinsey,1253732048 +147022,2381,Michael Winslow,1253731391 +147022,2381,nostalgia,1253731395 +147022,2381,police,1249830130 +147022,2381,seen more than once,1253731880 +147022,2381,Sharon Stone,1419682083 +147022,2381,Steve Guttenberg,1249830126 +147022,2381,Tim Kazurinsky,1253731748 +147022,2381,Tony Hawk,1253731415 +147022,2382,Alan Myerson,1254512586 +147022,2382,beach,1254512599 +147022,2382,comedy,1254512508 +147022,2382,crime,1254512819 +147022,2382,David Graf,1254512495 +147022,2382,G.W. Bailey,1254512559 +147022,2382,George Gaynes,1254512547 +147022,2382,Miami,1254512596 +147022,2382,Michael Winslow,1254512486 +147022,2382,police,1254512604 +147022,2396,16th century,1356733364 +147022,2396,Ben Affleck,1248465138 +147022,2396,Colin Firth,1356733387 +147022,2396,cross dressing,1356733426 +147022,2396,drama,1356733419 +147022,2396,Elizabethan,1248465123 +147022,2396,England,1248465118 +147022,2396,Gwyneth Paltrow,1248465087 +147022,2396,Joseph Fiennes,1248465153 +147022,2396,Judi Dench,1356733394 +147022,2396,romance,1248465115 +147022,2396,Romeo and Juliet,1356733468 +147022,2396,Shakespeare,1356733404 +147022,2396,theatre,1248465182 +147022,2424,comedy,1248007285 +147022,2424,internet,1248007275 +147022,2424,Meg Ryan,1248007267 +147022,2424,New York City,1248007269 +147022,2424,romance,1248007287 +147022,2424,romantic comedy,1248007280 +147022,2424,Tom Hanks,1248007265 +147022,2507,Barbara Hershey,1249927113 +147022,2507,based on a book,1249927089 +147022,2507,Bruce Willis,1249927087 +147022,2507,comedy,1249927102 +147022,2507,Kurt Vonnegut,1249927085 +147022,2507,Nick Nolte,1249927107 +147022,2507,sci-fi,1249927102 +147022,2542,British,1247842443 +147022,2542,Guy Ritchie,1247842446 +147022,2542,violence,1247842462 +147022,2571,artificial intelligence,1249918270 +147022,2571,Carrie-Anne Moss,1249918293 +147022,2571,cult film,1247822991 +147022,2571,dystopia,1247823012 +147022,2571,Hugo Weaving,1249918786 +147022,2571,Internet,1248007368 +147022,2571,Keanu Reeves,1249918227 +147022,2571,Laurence Fishburne,1249918241 +147022,2571,Oscar Winner,1249918863 +147022,2571,post-apocalyptic,1249918260 +147022,2571,sci-fi,1249918250 +147022,2571,seen more than once,1247827237 +147022,2571,surreal,1249918256 +147022,2571,virtual reality,1247823005 +147022,2571,Wachowski Brothers,1249918338 +147022,2572,1990s,1355929043 +147022,2572,adaptation,1355929049 +147022,2572,based on a play,1355929242 +147022,2572,comedy,1355929052 +147022,2572,coming of age,1355929131 +147022,2572,Heath Ledger,1355929035 +147022,2572,high school,1355929055 +147022,2572,Joseph Gordon-Levitt,1355929058 +147022,2572,Julia Stiles,1355929040 +147022,2572,Larisa Oleynik,1355929167 +147022,2572,Larry Miller,1355929195 +147022,2572,romance,1355929074 +147022,2572,Seattle,1355929109 +147022,2572,Shakespeare,1355929070 +147022,2572,teen,1355929237 +147022,2598,Angelina Jolie,1248004967 +147022,2598,aviation,1248004981 +147022,2598,Billy Bob Thornton,1248004965 +147022,2598,John Cusack,1248004971 +147022,2598,seen more than once,1248005146 +147022,2618,Australia,1308428821 +147022,2618,comedy,1308427831 +147022,2618,courtroom,1308427617 +147022,2618,eccentricity,1308428810 +147022,2618,Eric Bana,1308427680 +147022,2618,family,1308427813 +147022,2618,feel-good,1308427571 +147022,2618,Melbourne,1308428680 +147022,2618,Michael Caton,1308427754 +147022,2618,narrated,1308427838 +147022,2618,Rob Sitch,1308427610 +147022,2618,social commentary,1308427851 +147022,2671,British,1249890108 +147022,2671,drama,1249890112 +147022,2671,England,1249890117 +147022,2671,Hugh Grant,1249890081 +147022,2671,Julia Roberts,1249890077 +147022,2671,romance,1249890082 +147022,2683,Heather Graham,1247858967 +147022,2683,Mike Myers,1247858967 +147022,2683,parody,1247858973 +147022,2683,time travel,1247858981 +147022,2692,alternate endings,1247824320 +147022,2692,Franka Potente,1247824355 +147022,2692,German,1247824335 +147022,2692,nonlinear,1247824362 +147022,2706,Alyson Hannigan,1300059485 +147022,2706,Chris Klein,1300059509 +147022,2706,Chris Weitz,1300059532 +147022,2706,comedy,1248465565 +147022,2706,high school,1300059457 +147022,2706,Jason Biggs,1300059499 +147022,2706,Seann William Scott,1300059515 +147022,2706,sexuality,1300059552 +147022,2706,Shannon Elizabeth,1300059525 +147022,2706,slapstick,1300059467 +147022,2706,teen comedy,1300059471 +147022,2710,forest,1247998372 +147022,2710,found footage,1374948367 +147022,2710,horror,1247998393 +147022,2710,low budget,1247998913 +147022,2710,original,1247998934 +147022,2710,scary,1247998915 +147022,2712,based on a book,1254666430 +147022,2712,Christmas,1254666417 +147022,2712,dreams,1254666397 +147022,2712,erotic,1254666305 +147022,2712,husband-wife relationship,1254666371 +147022,2712,New York City,1254666333 +147022,2712,Nicole Kidman,1254666534 +147022,2712,notable soundtrack,1254666987 +147022,2712,seen more than once,1254665373 +147022,2712,sexual,1254665393 +147022,2712,Stanley Kubrick,1247829664 +147022,2712,Sydney Pollack,1254666529 +147022,2712,thriller,1254665383 +147022,2712,Todd Field,1254667201 +147022,2712,Tom Cruise,1254666532 +147022,2712,voyeurism,1254665386 +147022,2716,Bill Murray,1247861011 +147022,2716,comedy,1247861009 +147022,2716,Dan Aykroyd,1247861020 +147022,2716,ghosts,1247861027 +147022,2716,New York City,1247861069 +147022,2716,sci-fi,1247861035 +147022,2762,Bruce Willis,1247822750 +147022,2762,ghosts,1247822560 +147022,2762,Haley Joel Osment,1247822880 +147022,2762,seen more than once,1247822964 +147022,2791,absurd,1309811831 +147022,2791,airport,1309811695 +147022,2791,aviation,1309811705 +147022,2791,classic,1309813095 +147022,2791,comedy,1309811614 +147022,2791,David Zucker,1309811723 +147022,2791,disaster,1309811905 +147022,2791,Jerry Zucker,1309811732 +147022,2791,Jim Abrahams,1309811650 +147022,2791,Julie Hagerty,1309811788 +147022,2791,Leslie Nielsen,1309811539 +147022,2791,parody,1309811551 +147022,2791,quotable,1409504334 +147022,2791,Robert Hays,1309811800 +147022,2791,romance,1309811957 +147022,2791,seen more than once,1409504310 +147022,2791,slapstick,1309811866 +147022,2791,war,1309811712 +147022,2797,children,1249634324 +147022,2797,comedy,1249634346 +147022,2797,family,1249634330 +147022,2797,Tom Hanks,1249634317 +147022,2858,Annette Bening,1247843503 +147022,2858,coming of age,1294496591 +147022,2858,dark comedy,1247843525 +147022,2858,Kevin Spacey,1247843450 +147022,2858,Mena Suvari,1247843512 +147022,2858,Oscar (Best Picture),1247843486 +147022,2858,violence,1247843493 +147022,2858,want to see again,1294496604 +147022,2916,Arnold Schwarzenegger,1254319525 +147022,2916,based on a short story,1254317247 +147022,2916,dystopia,1254319528 +147022,2916,Mars,1254319534 +147022,2916,memory,1254319592 +147022,2916,mutants,1254319562 +147022,2916,Paul Verhoeven,1254319623 +147022,2916,Philip K. Dick,1254319544 +147022,2916,rebellion,1254319664 +147022,2916,sci-fi,1254319530 +147022,2916,Sharon Stone,1254319541 +147022,2916,space travel,1254319546 +147022,2916,virtual reality,1254319548 +147022,2953,children,1247859511 +147022,2953,Christmas,1247859524 +147022,2953,comedy,1247859516 +147022,2953,family,1247859520 +147022,2953,Macaulay Culkin,1247859506 +147022,2953,New York,1247859508 +147022,2953,seen more than once,1247859531 +147022,2959,Brad Pitt,1247824428 +147022,2959,Chuck Palahniuk,1247824486 +147022,2959,crime,1249923489 +147022,2959,Edward Norton,1247824430 +147022,2959,Helena Bonham Carter,1249923745 +147022,2959,imaginary friend,1360016430 +147022,2959,philosophy,1249923720 +147022,2959,Quotable,1247823827 +147022,2959,seen more than once,1247827226 +147022,2959,surreal,1249923711 +147022,2959,thought-provoking,1247824459 +147022,2959,twist ending,1247824443 +147022,2959,violence,1249923700 +147022,2987,adventure,1249887848 +147022,2987,animation,1249887846 +147022,2987,Bob Hoskins,1249887864 +147022,2987,crime,1249887881 +147022,2987,fantasy,1249887881 +147022,2987,Oscar Winner,1249887936 +147022,2987,Robert Zemeckis,1249887844 +147022,2990,007 (series),1248861817 +147022,2990,James Bond,1248861752 +147022,2990,Robert Davi,1248861828 +147022,2990,seen more than once,1248861742 +147022,2990,Talisa Soto,1248861830 +147022,2990,thriller,1248861777 +147022,2990,Timothy Dalton,1248861768 +147022,2997,John Cusack,1247827993 +147022,2997,John Malkovich,1247828467 +147022,2997,surreal,1247828018 +147022,3147,drama,1247844689 +147022,3147,Michael Clarke Duncan,1247844724 +147022,3147,prison,1247844677 +147022,3147,racism,1247844681 +147022,3147,Stephen King,1247844675 +147022,3147,Tom Hanks,1247844672 +147022,3147,want to see again,1247844745 +147022,3160,Philip Seymour Hoffman,1248863326 +147022,3160,Tom Cruise,1248863329 +147022,3160,want to see again,1248863353 +147022,3176,Cate Blanchett,1248466450 +147022,3176,disturbing,1248466454 +147022,3176,Gwyneth Paltrow,1248466481 +147022,3176,italy,1248466458 +147022,3176,Jude Law,1248466446 +147022,3176,Matt Damon,1248466443 +147022,3176,Philip Seymour Hoffman,1248466445 +147022,3176,seen more than once,1248466500 +147022,3252,Al Pacino,1247830602 +147022,3252,blindness,1349272028 +147022,3252,Chris O'Donnell,1247830724 +147022,3252,coming of age,1349272100 +147022,3252,dance,1349272193 +147022,3252,disability,1349272090 +147022,3252,drama,1349272127 +147022,3252,Manhattan,1349272239 +147022,3252,military,1349272175 +147022,3252,New York City,1349272037 +147022,3252,Philip Seymour Hoffman,1349272080 +147022,3252,sad,1349272113 +147022,3252,school,1349272139 +147022,3252,tango,1349272047 +147022,3252,Thanksgiving,1349272145 +147022,3268,comedy,1247859715 +147022,3268,Sylvester Stallone,1247859706 +147022,3285,great soundtrack,1248007499 +147022,3285,island,1248007463 +147022,3285,Leonardo DiCaprio,1247827015 +147022,3285,romance,1247688221 +147022,3285,seen more than once,1247827038 +147022,3285,Tilda Swinton,1247827088 +147022,3285,travel,1247827050 +147022,3285,utopia,1247688230 +147022,3285,want to see again,1248007492 +147022,3301,Bruce Willis,1248863096 +147022,3301,Matthew Perry,1248863098 +147022,3388,bigfoot,1249065868 +147022,3388,comedy,1249065934 +147022,3388,John Lithgow,1249065878 +147022,3448,Robin Williams,1247830555 +147022,3448,war,1247830558 +147022,3510,drama,1249679117 +147022,3510,father-son relationship,1249679111 +147022,3510,firefighters,1249679132 +147022,3510,time travel,1249679096 +147022,3527,action,1249680473 +147022,3527,aliens,1249680478 +147022,3527,Arnold Schwarzenegger,1249680449 +147022,3527,Jesse Ventura,1249680461 +147022,3527,sci-fi,1249680469 +147022,3578,didn't finish,1249829341 +147022,3617,comedy,1248465500 +147022,3617,road trip,1300059604 +147022,3717,action,1249830845 +147022,3717,Angelina Jolie,1249830853 +147022,3717,cars,1249830862 +147022,3717,crime,1249830876 +147022,3717,Nicolas Cage,1249830847 +147022,3825,comedy,1249831893 +147022,3825,great soundtrack,1249831052 +147022,3825,Piper Perabo,1249830934 +147022,3825,romance,1249830968 +147022,3826,action,1249926088 +147022,3826,Elisabeth Shue,1249926021 +147022,3826,horror,1249926082 +147022,3826,invisibility,1249926034 +147022,3826,invisible man,1249926069 +147022,3826,Kevin Bacon,1249926018 +147022,3826,Paul Verhoeven,1249926061 +147022,3826,sci-fi,1249926026 +147022,3897,coming of age,1281134963 +147022,3897,don't remember,1281134976 +147022,3897,music,1281134949 +147022,3910,1960s,1294496220 +147022,3910,Björk,1294495986 +147022,3910,Bjork,1294496165 +147022,3910,blindness,1294496079 +147022,3910,Catherine Deneuve,1294496153 +147022,3910,crime,1294496065 +147022,3910,David Morse,1294496171 +147022,3910,death penalty,1294496077 +147022,3910,disability,1294496033 +147022,3910,drama,1294496039 +147022,3910,factory,1294496323 +147022,3910,great music,1294496333 +147022,3910,grim,1294496087 +147022,3910,Lars von Trier,1294496018 +147022,3910,musical,1294496005 +147022,3910,police,1294496295 +147022,3910,sad,1294496026 +147022,3910,soundtrack,1294496342 +147022,3910,Washington state,1294496229 +147022,3949,drugs,1248863407 +147022,3949,Ellen Burstyn,1248863507 +147022,3949,Jared Leto,1248863449 +147022,3949,Jennifer Connelly,1248863521 +147022,3949,Marlon Wayans,1248863440 +147022,3949,social commentary,1248863419 +147022,3967,1980s,1262878743 +147022,3967,ballet,1262878145 +147022,3967,boxing,1262878147 +147022,3967,british,1262878143 +147022,3967,dance,1262878151 +147022,3967,drama,1262878154 +147022,3967,england,1262878157 +147022,3967,family,1262878944 +147022,3967,father-son relationship,1262878139 +147022,3967,Gary Lewis,1262878267 +147022,3967,heartwarming,1262878188 +147022,3967,homosexuality,1262878881 +147022,3967,inspirational,1262878200 +147022,3967,Jamie Bell,1262878250 +147022,3967,Julie Walters,1262879084 +147022,3967,mining,1262878572 +147022,3967,poverty,1262878939 +147022,3967,seen more than once,1262878634 +147022,3967,small town,1262878585 +147022,3967,Stephen Daldry,1262878287 +147022,3967,teacher student relationship,1262878914 +147022,3967,working class,1262878170 +147022,3977,Bill Murray,1249890358 +147022,3977,Cameron Diaz,1249890362 +147022,3977,Drew Barrymore,1249890364 +147022,3977,Lucy Liu,1249890366 +147022,3980,Cuba Gooding Jr.,1283296944 +147022,3980,Robert De Niro,1283296942 +147022,3980,want to see again,1283296950 +147022,3996,action,1250933694 +147022,3996,Ang Lee,1250933705 +147022,3996,China,1250933689 +147022,4011,Brad Pitt,1247842489 +147022,4011,british,1247842492 +147022,4011,comedy,1247842504 +147022,4011,Guy Ritchie,1247842501 +147022,4011,twist ending,1247842526 +147022,4018,Helen Hunt,1249925119 +147022,4018,Mel Gibson,1249925117 +147022,4018,Nancy Meyers,1249925134 +147022,4018,romance,1249925126 +147022,4022,adventure,1248007162 +147022,4022,helen hunt,1248007170 +147022,4022,island,1248007162 +147022,4022,Robert Zemeckis,1248007173 +147022,4022,Tom Hanks,1248007162 +147022,4027,Coen Brothers,1247830169 +147022,4027,comedy,1247830198 +147022,4027,George Clooney,1247830172 +147022,4027,great soundtrack,1247851302 +147022,4027,John Goodman,1247830176 +147022,4027,John Turturro,1247830190 +147022,4027,seen more than once,1247830145 +147022,4306,animation,1247826966 +147022,4306,comedy,1247826970 +147022,4308,Baz Luhrmann,1247829915 +147022,4308,Ewan McGregor,1247829880 +147022,4308,musical,1247829862 +147022,4308,Nicole Kidman,1247829864 +147022,4308,Paris,1247829873 +147022,4344,action,1248034617 +147022,4344,Halle Berry,1248034624 +147022,4344,Hugh Jackman,1248034623 +147022,4344,John Travolta,1248034577 +147022,4344,Los Angeles,1248034635 +147022,4447,comedy,1248464651 +147022,4447,Reese Witherspoon,1248464648 +147022,4613,comedy,1249926713 +147022,4613,crime,1249926697 +147022,4613,dogs,1249926685 +147022,4613,James Belushi,1249926685 +147022,4613,police,1249926697 +147022,4700,Anne Hathaway,1248038373 +147022,4700,comedy,1248038445 +147022,4700,Julie Andrews,1248038415 +147022,4700,San Francisco,1248038378 +147022,4700,teen,1248038381 +147022,4703,easily confused with other movie(s) (title),1248101982 +147022,4720,alternate reality,1249635488 +147022,4720,drama,1249635495 +147022,4720,ghosts,1249635469 +147022,4720,haunted house,1249635477 +147022,4720,Nicole Kidman,1249635466 +147022,4720,seen more than once,1249635526 +147022,4720,twist ending,1249635479 +147022,4728,Amy Smart,1250940766 +147022,4728,Breckin Meyer,1250940768 +147022,4728,chase,1250940797 +147022,4728,comedy,1250940763 +147022,4728,Cuba Gooding Jr.,1250940698 +147022,4728,hilarious,1250940760 +147022,4728,It's a Mad Mad Mad Mad World,1250941029 +147022,4728,Jerry Zucker,1250940774 +147022,4728,John Cleese,1250940696 +147022,4728,Jon Lovitz,1250940753 +147022,4728,Las Vegas,1250940824 +147022,4728,money,1250940847 +147022,4728,Nazis,1250940903 +147022,4728,Rowan Atkinson,1250939824 +147022,4728,Seth Green,1250940725 +147022,4728,slapstick,1250940919 +147022,4728,treasure hunt,1250941174 +147022,4728,want to see again,1250940903 +147022,4728,Whoopi Goldberg,1250939828 +147022,4799,It's a Mad Mad Mad Mad World,1250941242 +147022,4799,road trip,1250952467 +147022,4799,want to see again,1250941264 +147022,4848,David Lynch,1247828495 +147022,4848,disturbing,1247828511 +147022,4848,Los Angeles,1247828569 +147022,4848,Naomi Watts,1247828518 +147022,4848,nonlinear,1247828500 +147022,4848,seen more than once,1247828607 +147022,4848,surreal,1247828506 +147022,4878,Drew Barrymore,1247843129 +147022,4878,imaginary friend,1360016400 +147022,4878,Jake Gyllenhaal,1247843111 +147022,4878,Jena Malone,1247843148 +147022,4878,Maggie Gyllenhaal,1247843136 +147022,4878,surreal,1247843118 +147022,4878,time travel,1247843116 +147022,4914,crime,1268860136 +147022,4914,French,1268860197 +147022,4914,French New Wave,1268861276 +147022,4914,hotel,1268862575 +147022,4914,Jean Seberg,1268860076 +147022,4914,Jean-Luc Godard,1268860165 +147022,4914,Jean-Paul Belmondo,1268860056 +147022,4914,nouvelle vague,1268861257 +147022,4914,Paris,1268860122 +147022,4914,romance,1268860153 +147022,4963,action,1266682409 +147022,4963,Andy Garcia,1266683149 +147022,4963,Bernie Mac,1266683208 +147022,4963,Brad Pitt,1247830241 +147022,4963,casino,1266682412 +147022,4963,crime,1266682418 +147022,4963,Elliott Gould,1266683123 +147022,4963,George Clooney,1247830239 +147022,4963,Julia Roberts,1247830326 +147022,4963,Las Vegas,1266682452 +147022,4963,Matt Damon,1247830328 +147022,4963,remake,1247830294 +147022,4963,Steven Soderbergh,1266682443 +147022,4973,Audrey Tautou,1247824253 +147022,4973,comedy,1249894984 +147022,4973,drama,1253772514 +147022,4973,feel-good,1247824275 +147022,4973,France,1253793387 +147022,4973,French,1249894994 +147022,4973,Jamel Debbouze,1253772758 +147022,4973,Jean-Pierre Jeunet,1249895014 +147022,4973,Mathieu Kassovitz,1253772710 +147022,4973,notable soundtrack,1253772523 +147022,4973,Paris,1247824236 +147022,4973,romance,1247824238 +147022,4973,seen more than once,1247824232 +147022,4973,Serge Merlin,1253772741 +147022,4973,surreal,1247824286 +147022,4993,Didn't finish,1249847345 +147022,4995,biography,1247844538 +147022,4995,Ed Harris,1247844577 +147022,4995,inspirational,1247844635 +147022,4995,Jennifer Connelly,1247844591 +147022,4995,nobel prize,1247844525 +147022,4995,Oscar (Best Picture),1247844516 +147022,4995,Oscar Winner,1247844516 +147022,4995,romance,1247844545 +147022,4995,Ron Howard,1247844555 +147022,4995,Russell Crowe,1247844508 +147022,4995,schizophrenia,1247844518 +147022,4995,seen more than once,1247844608 +147022,5151,comedy,1249927623 +147022,5151,Josh Hartnett,1249927614 +147022,5151,romance,1249927623 +147022,5151,San Francisco,1249927607 +147022,5218,animation,1248862948 +147022,5377,british,1249065486 +147022,5377,british comedy,1283462392 +147022,5377,Chris Weitz,1283462495 +147022,5377,comedy,1283462389 +147022,5377,Hugh Grant,1249065483 +147022,5377,London,1283462424 +147022,5377,romance,1249065526 +147022,5377,romantic comedy,1249065493 +147022,5418,based on a book,1249917910 +147022,5418,car chase,1249917867 +147022,5418,Clive Owen,1249917918 +147022,5418,easily confused with other movie(s) (title),1249917857 +147022,5418,Franka Potente,1249917880 +147022,5418,Matt Damon,1247830392 +147022,5418,Mediterranean,1247830419 +147022,5418,remake,1249917890 +147022,5418,Robert Ludlum,1249917904 +147022,5418,spy,1249917900 +147022,5418,thriller,1247830385 +147022,5445,future,1247853758 +147022,5445,sci-fi,1247853747 +147022,5445,Steven Spielberg,1247853744 +147022,5445,time travel,1247853749 +147022,5445,Tom Cruise,1247853746 +147022,5464,Tom Hanks,1248467861 +147022,5464,violence,1248467863 +147022,5502,aliens,1283359980 +147022,5502,Joaquin Phoenix,1283360071 +147022,5502,M. Night Shyamalan,1283359975 +147022,5502,Mel Gibson,1283359970 +147022,5502,sci-fi,1283359987 +147022,5617,erotic,1247912202 +147022,5617,James Spader,1247912215 +147022,5617,Maggie Gyllenhaal,1247912190 +147022,5617,romance,1247913572 +147022,5791,biography,1248862450 +147022,5791,disability,1248862489 +147022,5791,Julie Taymor,1248862650 +147022,5791,Mexico,1248862453 +147022,5791,Oscar Winner,1248862471 +147022,5791,politics,1248862612 +147022,5791,revolution,1248862481 +147022,5791,romance,1248862507 +147022,5791,Salma Hayek,1248862461 +147022,5888,action,1303594972 +147022,5888,Aleksey Balabanov,1303594940 +147022,5888,brothers,1303594934 +147022,5888,crime,1303594959 +147022,5888,easily confused with other movie(s) (title),1247854260 +147022,5888,mafia,1303594979 +147022,5888,quotable,1303594953 +147022,5888,Russian,1247854216 +147022,5888,Saint Petersburg,1303594924 +147022,5888,Sergei Bodrov Jr.,1247854298 +147022,5888,violence,1303594967 +147022,5902,based on a book,1254841625 +147022,5902,Brian Cox,1254846730 +147022,5902,brother-brother relationship,1254842415 +147022,5902,brothers,1254842192 +147022,5902,Cara Seymour,1254842309 +147022,5902,Catherine Keener,1254841903 +147022,5902,Charlie Kaufman,1254837629 +147022,5902,Chris Cooper,1254841943 +147022,5902,comedy,1254841648 +147022,5902,crime,1254842161 +147022,5902,drama,1254841638 +147022,5902,drugs,1254846452 +147022,5902,filmmaking,1254845119 +147022,5902,Florida,1254841614 +147022,5902,flowers,1254842156 +147022,5902,Hollywood,1254841975 +147022,5902,imaginary friend,1254844706 +147022,5902,John Cusack,1254842115 +147022,5902,John Laroche,1254841583 +147022,5902,John Malkovich,1254837939 +147022,5902,Maggie Gyllenhaal,1254837637 +147022,5902,Meryl Streep,1254841586 +147022,5902,mindfuck,1254841600 +147022,5902,murder,1254842171 +147022,5902,New York City,1254841615 +147022,5902,Nicolas Cage,1254837634 +147022,5902,obsession,1254842019 +147022,5902,original plot,1254845168 +147022,5902,Oscar Winner,1254842214 +147022,5902,romance,1254841643 +147022,5902,schizophrenia,1254847249 +147022,5902,seen more than once,1254842246 +147022,5902,Spike Jonze,1254841734 +147022,5902,surreal,1254837947 +147022,5902,Tilda Swinton,1254837930 +147022,5902,twins,1254845526 +147022,5902,writer's block,1254842001 +147022,5902,writers,1254842010 +147022,5989,biography,1247854112 +147022,5989,comedy,1247854115 +147022,5989,drama,1247854118 +147022,5989,Leonardo DiCaprio,1247854102 +147022,5989,Tom Hanks,1247854106 +147022,5989,true story,1247854109 +147022,5995,Adrien Brody,1247914097 +147022,5995,historical,1247914156 +147022,5995,holocaust,1247914131 +147022,5995,Oscar Winner,1247914166 +147022,5995,Poland,1247914134 +147022,5995,Roman Polanski,1247914139 +147022,5995,seen more than once,1248461412 +147022,5995,true story,1247914147 +147022,5995,war,1247914095 +147022,5995,Warsaw,1248461608 +147022,5995,World War II,1247914091 +147022,6003,biographical,1449956487 +147022,6003,biography,1449957367 +147022,6003,Brad Pitt,1449957339 +147022,6003,Charlie Kaufman,1449956432 +147022,6003,cia,1449957372 +147022,6003,double life,1449956474 +147022,6003,Drew Barrymore,1449957352 +147022,6003,George Clooney,1449957362 +147022,6003,Julia Roberts,1449957354 +147022,6003,psychological,1449956449 +147022,6003,Sam Rockwell,1449957348 +147022,6003,surreal,1449956447 +147022,6003,television,1449957331 +147022,6016,Brazil,1249895796 +147022,6016,drama,1249895930 +147022,6016,Portuguese,1249895811 +147022,6016,South America,1249895918 +147022,6016,violence,1249895924 +147022,6250,aliens,1248102645 +147022,6250,Morgan Freeman,1248102631 +147022,6250,Stephen King,1248102638 +147022,6291,disturbing,1247854575 +147022,6291,Russian,1247854600 +147022,6291,social commentary,1247854560 +147022,6291,Swedish,1247854605 +147022,6323,John Cusack,1248102459 +147022,6323,serial killer,1248102472 +147022,6323,thriller,1248102484 +147022,6373,comedy,1247827364 +147022,6373,fantasy,1249929268 +147022,6373,God,1249929328 +147022,6373,Jennifer Aniston,1249929255 +147022,6373,Jim Carrey,1247827361 +147022,6373,Morgan Freeman,1247827362 +147022,6373,sci-fi,1249929284 +147022,6373,television,1249929353 +147022,6373,Tom Shadyac,1249929386 +147022,6377,animation,1247850550 +147022,6377,birds,1247850989 +147022,6377,Disney,1247850660 +147022,6377,fish,1247850996 +147022,6377,Oscar Winner,1247850978 +147022,6488,airport,1250924490 +147022,6488,comedy,1250924516 +147022,6488,Danièle Thompson,1250924596 +147022,6488,France,1250924530 +147022,6488,French,1250924608 +147022,6488,hotel,1251230978 +147022,6488,Jean Reno,1251231001 +147022,6488,Juliette Binoche,1250924424 +147022,6488,romance,1250924516 +147022,6488,seen more than once,1251231019 +147022,6488,Sergi López,1251231058 +147022,6488,want to see again,1250924484 +147022,6502,British,1247859972 +147022,6502,England,1247860017 +147022,6502,post-apocalyptic,1247859964 +147022,6502,sci-fi,1247859970 +147022,6502,thriller,1247860002 +147022,6502,virus,1247860007 +147022,6502,zombies,1247859999 +147022,6519,easily confused with other movie(s) (title),1249634124 +147022,6552,Audrey Tautou,1275110185 +147022,6552,England,1275110234 +147022,6552,hotel,1275110240 +147022,6552,London,1275110189 +147022,6552,Stephen Frears,1275110206 +147022,6664,action,1253732258 +147022,6664,Arnold Schwarzenegger,1253732233 +147022,6664,crime,1253732299 +147022,6664,military,1253732314 +147022,6664,murder,1253732296 +147022,6664,nostalgic,1253732288 +147022,6664,seen more than once,1253732330 +147022,6708,Alison Lohman,1336223112 +147022,6708,crime,1336223052 +147022,6708,drama,1336223080 +147022,6708,father daughter relationship,1336223054 +147022,6708,fatherhood,1336223068 +147022,6708,Los Angeles,1336223064 +147022,6708,Nicholas Cage,1336223062 +147022,6708,Ridley Scott,1336223085 +147022,6708,Sam Rockwell,1336223087 +147022,6709,action,1248862232 +147022,6709,Antonio Banderas,1248862202 +147022,6709,Johnny Depp,1248862213 +147022,6709,Mickey Rourke,1248862214 +147022,6709,Robert Rodriguez,1248862222 +147022,6709,Salma Hayek,1248862205 +147022,6711,Bill Murray,1247827836 +147022,6711,Japan,1247827846 +147022,6711,Scarlett Johansson,1247827838 +147022,6711,seen more than once,1247827854 +147022,6793,Bonnie Hunt,1249586265 +147022,6793,Charles Grodin,1249586156 +147022,6793,children,1249586299 +147022,6793,comedy,1249586299 +147022,6793,Dean Jones,1249586281 +147022,6793,dogs,1249586303 +147022,6794,Bonnie Hunt,1249586512 +147022,6794,Charles Grodin,1249586507 +147022,6794,children,1249586528 +147022,6794,comedy,1249586528 +147022,6794,dogs,1249586528 +147022,6870,based on a book,1249335668 +147022,6870,child abuse,1247824685 +147022,6870,Clint Eastwood,1247824644 +147022,6870,crime,1249335642 +147022,6870,Drama,1247824694 +147022,6870,family,1249335650 +147022,6870,Kevin Bacon,1247824731 +147022,6870,Laura Linney,1249335610 +147022,6870,Laurence Fishburne,1249335620 +147022,6870,Marcia Gay Harden,1249335633 +147022,6870,murder,1249335662 +147022,6870,revenge,1307810546 +147022,6870,scenery,1247824674 +147022,6870,Sean Penn,1247824649 +147022,6870,seen more than once,1249335591 +147022,6870,thriller,1247824682 +147022,6870,Tim Robbins,1247824729 +147022,6870,twist ending,1249335706 +147022,6870,want to see again,1249335864 +147022,6942,airport,1356825285 +147022,6942,Alan Rickman,1356825712 +147022,6942,Bill Nighy,1356825400 +147022,6942,Billy Bob Thornton,1356825289 +147022,6942,British,1356825784 +147022,6942,comedy,1356826142 +147022,6942,Emma Thompson,1356825775 +147022,6942,England,1248467680 +147022,6942,ensemble cast,1356826131 +147022,6942,family,1356826135 +147022,6942,Hugh Grant,1356825353 +147022,6942,Keira Knightley,1248467698 +147022,6942,Laura Linney,1248467712 +147022,6942,Liam Neeson,1356825828 +147022,6942,London,1356825321 +147022,6942,love,1356826160 +147022,6942,Martin Freeman,1356825943 +147022,6942,Martine McCutcheon,1356825993 +147022,6942,President,1356825800 +147022,6942,Prime Minister,1356825332 +147022,6942,Richard Curtis,1356825280 +147022,6942,Rowan Atkinson,1356825340 +147022,6942,seen more than once,1356826121 +147022,6953,Benicio Del Toro,1247917344 +147022,6953,Naomi Watts,1247917342 +147022,6953,Sean Penn,1247917342 +147022,7004,Arnold Schwarzenegger,1247859395 +147022,7004,comedy,1247859403 +147022,7004,elementary school,1247859399 +147022,7063,adventure,1256371023 +147022,7063,Amazon,1256371060 +147022,7063,cult film,1256370996 +147022,7063,dreamlike,1256371085 +147022,7063,El Dorado,1256371028 +147022,7063,German,1256371013 +147022,7063,Klaus Kinski,1256371000 +147022,7063,notable soundtrack,1256450153 +147022,7063,Peru,1256371049 +147022,7063,river,1256371070 +147022,7063,slow,1256372980 +147022,7063,South America,1256371045 +147022,7063,Werner Herzog,1256371002 +147022,7147,didn't finish,1249829298 +147022,7160,Biography,1248466313 +147022,7160,Charlize Theron,1248466230 +147022,7160,Christina Ricci,1248466235 +147022,7160,drama,1248466332 +147022,7160,oscar winner,1248466323 +147022,7160,seen more than once,1248466344 +147022,7160,serial killer,1248466285 +147022,7254,Ashton Kutcher,1248102375 +147022,7254,sci-fi,1248102413 +147022,7254,time travel,1248102383 +147022,7297,Bent Hamer,1256468105 +147022,7297,friendship,1256492947 +147022,7297,humorous,1256492970 +147022,7297,Norway,1256468100 +147022,7297,Norwegian,1256468675 +147022,7297,small town,1256468688 +147022,7297,Swedish,1256468675 +147022,7317,comedy,1248002967 +147022,7317,coming of age,1346540211 +147022,7317,Europe,1346540131 +147022,7317,high school,1346540223 +147022,7317,Michelle Trachtenberg,1346540096 +147022,7317,road trip,1248002968 +147022,7317,Scott Mechlowicz,1346540115 +147022,7317,stupid,1346540238 +147022,7323,Berlin,1249066265 +147022,7323,drama,1249066344 +147022,7323,East Germany,1249066253 +147022,7323,German,1249066331 +147022,7323,Germany,1249066255 +147022,7323,historical,1249066338 +147022,7323,want to see again,1249066398 +147022,7324,desert,1247952094 +147022,7324,horses,1247952045 +147022,7324,middle east,1247952040 +147022,7324,Omar Sharif,1247952147 +147022,7324,racing,1247952064 +147022,7324,Viggo Mortensen,1247952047 +147022,7324,western,1247952088 +147022,7346,easily confused with other movie(s) (title),1249474983 +147022,7347,John Turturro,1247830072 +147022,7347,Johnny Depp,1247830081 +147022,7347,Stephen King,1247830077 +147022,7361,alternate reality,1401490690 +147022,7361,bittersweet,1401490693 +147022,7361,Charlie Kaufman,1247826144 +147022,7361,comedy,1247826154 +147022,7361,cult film,1401490701 +147022,7361,drama,1272922979 +147022,7361,dreamlike,1401490704 +147022,7361,Elijah Wood,1272922935 +147022,7361,emotional,1272922961 +147022,7361,Jim Carrey,1247825747 +147022,7361,Kate Winslet,1272923207 +147022,7361,Kirsten Dunst,1272922921 +147022,7361,love,1247825774 +147022,7361,Mark Ruffalo,1272957610 +147022,7361,memory,1272923087 +147022,7361,Michel Gondry,1272957582 +147022,7361,New York City,1272957164 +147022,7361,nonlinear,1247826130 +147022,7361,relationships,1272923057 +147022,7361,romance,1247826136 +147022,7361,sci-fi,1272922942 +147022,7361,seen more than once,1272923016 +147022,7361,soundtrack,1272923118 +147022,7361,surreal,1272922951 +147022,7361,thought-provoking,1272922956 +147022,7361,trains,1401490906 +147022,7366,Ben Affleck,1249475167 +147022,7366,comedy,1249475334 +147022,7366,drama,1249475357 +147022,7366,father daughter relationship,1249475164 +147022,7366,George Carlin,1249475302 +147022,7366,Jennifer Lopez,1249475169 +147022,7366,Liv Tyler,1249475278 +147022,7366,New Jersey,1249475367 +147022,7366,New York City,1249475357 +147022,7366,Will Smith,1249475182 +147022,7367,Coen Brothers,1249634882 +147022,7367,comedy,1249634897 +147022,7367,crime,1249634888 +147022,7367,New Orleans,1249634874 +147022,7367,Tom Hanks,1249634876 +147022,7450,chemistry,1390346170 +147022,7450,comedy,1390346158 +147022,7450,courtroom,1390346148 +147022,7450,divorce,1390346191 +147022,7450,Ireland,1390346125 +147022,7450,Julianne Moore,1390346108 +147022,7450,lawyers,1390346180 +147022,7450,New York City,1390346118 +147022,7450,Pierce Brosnan,1390346106 +147022,7450,predictable,1390346210 +147022,7450,romance,1390346111 +147022,7451,2000s,1420933044 +147022,7451,Africa,1420933209 +147022,7451,Amanda Seyfried,1420932872 +147022,7451,Amy Poehler,1420932879 +147022,7451,based on a book,1420932846 +147022,7451,comedy,1420933557 +147022,7451,coming of age,1420933641 +147022,7451,drama,1420934168 +147022,7451,friendship,1420934285 +147022,7451,High School,1420932947 +147022,7451,Illinois,1420933215 +147022,7451,Jonathan Bennett,1420933300 +147022,7451,Lacey Chabert,1420932898 +147022,7451,Lindsay Lohan,1420932861 +147022,7451,Lizzy Caplan,1420932877 +147022,7451,manipulation,1420932855 +147022,7451,Mark Waters,1420932997 +147022,7451,Neil Flynn,1420933749 +147022,7451,popularity,1420932852 +147022,7451,quotable,1420933246 +147022,7451,Rachel McAdams,1420932889 +147022,7451,revenge,1420933055 +147022,7451,Saturday Night Live,1420933130 +147022,7451,surprisingly clever,1420932924 +147022,7451,Tim Meadows,1420933223 +147022,7451,Tina Fey,1420932837 +147022,7460,Bill Murray,1248861125 +147022,7460,black and white,1248861127 +147022,7460,Cate Blanchett,1248861147 +147022,7460,Jim Jarmusch,1248861122 +147022,7460,Roberto Benigni,1248861143 +147022,7460,Steve Buscemi,1248861142 +147022,7460,Tom Waits,1248861140 +147022,8131,easily confused with another title,1283818577 +147022,8254,Arizona,1248102084 +147022,8254,Emir Kusturica,1248102110 +147022,8254,Faye Dunaway,1248102082 +147022,8254,great soundtrack,1248102091 +147022,8254,Johnny Depp,1248102082 +147022,8254,surreal,1248102161 +147022,8361,Jake Gyllenhaal,1247911739 +147022,8361,New York City,1247911709 +147022,8361,post-apocalyptic,1247911696 +147022,8361,thriller,1247911717 +147022,8376,comedy,1247918561 +147022,8376,high school,1247918370 +147022,8376,Jon Heder,1247918359 +147022,8376,quotable,1247918365 +147022,8376,seen more than once,1247918545 +147022,8376,small town,1249632914 +147022,8529,airport,1248004474 +147022,8529,Catherine Zeta-Jones,1248004476 +147022,8529,drama,1248004480 +147022,8529,original plot,1248004507 +147022,8529,slow,1248004523 +147022,8529,Steven Spielberg,1248004471 +147022,8529,Tom Hanks,1248004469 +147022,8644,2030s,1421876708 +147022,8644,action,1421876539 +147022,8644,Alan Tudyk,1421876788 +147022,8644,Alex Proyas,1421876880 +147022,8644,artificial intelligence,1247951978 +147022,8644,based on a book,1421876581 +147022,8644,Bridget Moynahan,1421876610 +147022,8644,Chicago,1421876700 +147022,8644,dystopia,1421876528 +147022,8644,future,1421876512 +147022,8644,futuristic,1247951967 +147022,8644,Isaac Asimov,1247952002 +147022,8644,James Cromwell,1421876620 +147022,8644,murder,1421876811 +147022,8644,police,1421876590 +147022,8644,product placement,1421876525 +147022,8644,robots,1421876506 +147022,8644,sci-fi,1421876509 +147022,8644,thought provoking,1421876532 +147022,8644,Will Smith,1247951975 +147022,8784,Great Soundtrack,1247854057 +147022,8784,Natalie Portman,1247854047 +147022,8784,New Jersey,1247854065 +147022,8784,romance,1247854072 +147022,8784,Zach Braff,1247854049 +147022,8866,Kirsten Dunst,1247829556 +147022,8866,Paul Bettany,1247829567 +147022,8866,romantic,1247829569 +147022,8866,sports,1247829582 +147022,8873,1950s,1309645874 +147022,8873,adventure,1309645667 +147022,8873,Amazon,1309645661 +147022,8873,Argentina,1309645504 +147022,8873,based on a book,1309645536 +147022,8873,based on a true story,1309645651 +147022,8873,biographical,1309645539 +147022,8873,biography,1309645545 +147022,8873,Che Guevara,1309645554 +147022,8873,Chile,1309645515 +147022,8873,drama,1309645669 +147022,8873,Gael García Bernal,1309645572 +147022,8873,Latin America,1309645614 +147022,8873,motorcycle,1309645743 +147022,8873,Peru,1309645523 +147022,8873,political,1309645704 +147022,8873,revolution,1309645908 +147022,8873,road trip,1309645493 +147022,8873,Rodrigo De la Serna,1309645585 +147022,8873,social commentary,1309645709 +147022,8873,Spanish,1309645604 +147022,8873,true story,1309645715 +147022,8873,Walter Salles,1309645597 +147022,8949,california,1247830810 +147022,8949,Paul Giamatti,1247830817 +147022,8949,road trip,1247830804 +147022,8949,Thomas Haden Church,1247830834 +147022,8949,wine,1247830807 +147022,8977,action,1258233930 +147022,8977,adventure,1258233941 +147022,8977,Alexandria,1258233990 +147022,8977,ancient civilization,1258234348 +147022,8977,Ancient Greece,1258233762 +147022,8977,Angelina Jolie,1258233721 +147022,8977,Anthony Hopkins,1258233658 +147022,8977,assassination,1258234456 +147022,8977,Babylon,1258234224 +147022,8977,based on a book,1258234476 +147022,8977,based on a true story,1258233920 +147022,8977,battles,1258233860 +147022,8977,biography,1258234523 +147022,8977,Colin Farrell,1258233695 +147022,8977,father-son relationship,1258233902 +147022,8977,history,1258233911 +147022,8977,homosexuality,1258234402 +147022,8977,Jared Leto,1258233702 +147022,8977,Macedonia,1258233979 +147022,8977,mother-son relationship,1258233891 +147022,8977,Oliver Stone,1258233731 +147022,8977,Persia,1258234224 +147022,8977,Rosario Dawson,1258233707 +147022,8977,too long,1258234284 +147022,8977,Val Kilmer,1258233661 +147022,8977,war,1258233860 +147022,8981,Clive Owen,1247853881 +147022,8981,Jude Law,1247853878 +147022,8981,Julia Roberts,1247853877 +147022,8981,London,1247853922 +147022,8981,Natalie Portman,1247853874 +147022,8981,seen more than once,1247853868 +147022,25771,classic,1268862825 +147022,25771,dreams,1268862823 +147022,25771,experimental,1268862833 +147022,25771,Luis Buñuel,1268862816 +147022,25771,surreal,1268862843 +147022,25771,surrealism,1268862844 +147022,26614,easily confused with other movie(s) (title),1249916285 +147022,27674,Barbara Hershey,1281998977 +147022,27674,Ben Foster,1281998981 +147022,27674,Colin Hanks,1281998986 +147022,27674,crime,1281999038 +147022,27674,dark comedy,1281998884 +147022,27674,Greg Marcks,1281999025 +147022,27674,Hilary Swank,1281998882 +147022,27674,multiple storylines,1281998888 +147022,27674,Patrick Swayze,1281998894 +147022,27674,thriller,1281998908 +147022,27706,jim carrey,1248104512 +147022,27706,Jude Law,1248104533 +147022,27706,meryl streep,1248104531 +147022,27808,Adam Sandler,1248862713 +147022,27808,Los Angeles,1248862728 +147022,27808,Paz Vega,1248862750 +147022,27808,romance,1248862714 +147022,27808,Téa Leoni,1248862709 +147022,27815,boarding school,1247916650 +147022,27815,boys' school,1250939002 +147022,27815,choir,1247916656 +147022,27815,drama,1250939041 +147022,27815,feel-good,1247916663 +147022,27815,France,1247916581 +147022,27815,French,1247916584 +147022,27815,Gérard Jugnot,1261421197 +147022,27815,heartwarming,1281134727 +147022,27815,inspirational,1247916709 +147022,27815,seen more than once,1247916578 +147022,27821,action,1323638648 +147022,27821,Africa,1323638863 +147022,27821,assassination,1323638596 +147022,27821,Catherine Keener,1323638876 +147022,27821,New York City,1323638580 +147022,27821,Nicole Kidman,1323638569 +147022,27821,Sean Penn,1323638569 +147022,27821,Sydney Pollack,1323638623 +147022,27821,thriller,1323638610 +147022,30707,boxing,1247824548 +147022,30707,Clint Eastwood,1247824545 +147022,30707,Hilary Swank,1247824574 +147022,30707,Morgan Freeman,1247824531 +147022,30707,Oscar Winner,1247824557 +147022,30749,Africa,1309648158 +147022,30749,civil war,1253170704 +147022,30749,Don Cheadle,1253170697 +147022,30749,drama,1253170739 +147022,30749,genocide,1253170719 +147022,30749,history,1253170975 +147022,30749,imdb top 250,1253170969 +147022,30749,Jean Reno,1253170688 +147022,30749,Joaquin Phoenix,1253170603 +147022,30749,journalism,1253170745 +147022,30749,Nick Nolte,1253170758 +147022,30749,racism,1253170715 +147022,30749,Rwanda,1309648172 +147022,30749,Sophie Okonedo,1253171854 +147022,30749,Terry George,1253171868 +147022,30749,thriller,1253170765 +147022,30749,true story,1253170553 +147022,30749,United Nations,1253170558 +147022,30749,war,1253170558 +147022,30810,adventure,1248861410 +147022,30810,Bill Murray,1248861376 +147022,30810,Cate Blanchett,1248861433 +147022,30810,comedy,1248861403 +147022,30810,Owen Wilson,1248861424 +147022,30810,Wes Anderson,1248861428 +147022,30812,aviation,1248467243 +147022,30812,biography,1248467241 +147022,30812,Cate Blanchett,1248467252 +147022,30812,Drama,1248467268 +147022,30812,Jude Law,1248467235 +147022,30812,Leonardo DiCaprio,1248467233 +147022,30812,Martin Scorsese,1248467238 +147022,30812,movie business,1248467256 +147022,30812,true story,1248467261 +147022,30846,Naomi Watts,1248004614 +147022,30846,Richard Nixon,1248004643 +147022,30846,Sean Penn,1248004595 +147022,30848,alcoholism,1356730812 +147022,30848,coming of age,1451486094 +147022,30848,drama,1451486012 +147022,30848,Gabriel Macht,1247916922 +147022,30848,John Travolta,1247916914 +147022,30848,Louisiana,1247916916 +147022,30848,New Orleans,1247916929 +147022,30848,professor,1451486119 +147022,30848,romance,1451486044 +147022,30848,Scarlett Johansson,1247916911 +147022,30848,seen more than once,1247916958 +147022,30848,Shainee Gabel,1356730835 +147022,30848,university,1451486113 +147022,30848,want to see again,1247916966 +147022,31123,comedy,1250924313 +147022,31123,crime,1250924316 +147022,31123,Francis Veber,1250924321 +147022,31123,French,1250924307 +147022,31123,Gérard Depardieu,1250924301 +147022,31123,Jean Reno,1250924299 +147022,31410,Adolf Hitler,1264893887 +147022,31410,Berlin,1247913946 +147022,31410,Biography,1247913954 +147022,31410,Bruno Ganz,1247913934 +147022,31410,drama,1264893923 +147022,31410,German,1247913988 +147022,31410,historical,1247913952 +147022,31410,history,1264893901 +147022,31410,Oliver Hirschbiegel,1264893952 +147022,31410,seen more than once,1264893979 +147022,31410,war,1264893905 +147022,31410,World War II,1247913950 +147022,31422,children,1249335519 +147022,31422,comedy,1249335515 +147022,31422,Ice Cube,1249335507 +147022,31422,Nia Long,1249335499 +147022,31422,road trip,1249335535 +147022,32460,Comedy,1247827632 +147022,32460,German,1247827616 +147022,32460,Moritz Bleibtreu,1247827660 +147022,32460,road trip,1247827637 +147022,32460,terminal illness,1247827645 +147022,32460,Til Schweiger,1247827624 +147022,32587,Quentin Tarantino,1248862111 +147022,33004,absurd,1250966692 +147022,33004,alien invasion,1250966686 +147022,33004,aliens,1250966678 +147022,33004,apocalypse,1250966434 +147022,33004,based on a book,1250966380 +147022,33004,comedy,1250966450 +147022,33004,dolphins,1250966310 +147022,33004,Garth Jennings,1250966716 +147022,33004,humor,1250966295 +147022,33004,John Malkovich,1250966499 +147022,33004,Martin Freeman,1250966528 +147022,33004,post-apocalyptic,1250966701 +147022,33004,quotable,1250966596 +147022,33004,sci-fi,1250966299 +147022,33004,space travel,1250966611 +147022,33004,Warwick Davis,1250966588 +147022,33136,David Duchovny,1248004083 +147022,33136,Robin Williams,1248004085 +147022,33136,Téa Leoni,1248004089 +147022,33166,Los Angeles,1247843898 +147022,33166,Oscar (Best Picture),1247843867 +147022,33166,Sandra Bullock,1247843870 +147022,33615,animation,1248186133 +147022,33615,Ben Stiller,1248186202 +147022,33615,Chris Rock,1248186200 +147022,33615,comedy,1248186160 +147022,33615,David Schwimmer,1248186207 +147022,33615,island,1248186229 +147022,33615,penguins,1248186139 +147022,33615,Sacha Baron Cohen,1248186154 +147022,33679,action,1249635274 +147022,33679,Angelina Jolie,1248005529 +147022,33679,Brad Pitt,1248005526 +147022,33679,marriage,1249635320 +147022,33679,romance,1248005567 +147022,33679,seen more than once,1249635206 +147022,33679,thriller,1249635286 +147022,33679,Vince Vaughn,1248005532 +147022,34048,aliens,1248034917 +147022,34048,Dakota Fanning,1248034926 +147022,34048,sci-fi,1248034913 +147022,34048,Steven Spielberg,1248034908 +147022,34048,Tom Cruise,1248034911 +147022,34319,Ewan McGregor,1247917122 +147022,34319,future,1247917128 +147022,34319,Scarlett Johansson,1247917120 +147022,34319,sci-fi,1247917166 +147022,34319,surprise ending,1247917141 +147022,34437,Bill Murray,1248861314 +147022,34437,comedy,1248861322 +147022,34437,Jim Jarmusch,1248861320 +147022,34437,road trip,1249634215 +147022,34437,Sharon Stone,1248861316 +147022,34437,Tilda Swinton,1248861318 +147022,36513,2000s,1420923448 +147022,36513,comedy,1420923222 +147022,36513,coming of age,1420923297 +147022,36513,David Kendall,1420923165 +147022,36513,high school,1420922904 +147022,36513,Lacey Chabert,1420923157 +147022,36513,Milo Ventimiglia,1420923285 +147022,36513,prank,1420923480 +147022,36513,predictable,1420923314 +147022,36519,action,1422821939 +147022,36519,Alessandro Gassman,1422822125 +147022,36519,Amber Valletta,1422822135 +147022,36519,car chase,1422821973 +147022,36519,cars,1422822035 +147022,36519,drugs,1422822207 +147022,36519,François Berléand,1422821930 +147022,36519,Jason Statham,1422821905 +147022,36519,Kate Nauta,1422821962 +147022,36519,kidnapping,1422822024 +147022,36519,Louis Leterrier,1422822015 +147022,36519,Luc Besson,1422822182 +147022,36519,Miami,1422821992 +147022,36519,violence,1422821965 +147022,36519,virus,1422822192 +147022,37386,assassin,1249926936 +147022,37386,Charlize Theron,1249926912 +147022,37386,Frances McDormand,1254207064 +147022,37386,Karyn Kusama,1254207054 +147022,37386,post-apocalyptic,1249926924 +147022,37386,sci-fi,1249926926 +147022,37386,utopia,1249926929 +147022,37729,animation,1249065650 +147022,37729,Johnny Depp,1249065653 +147022,37729,Tim Burton,1249065644 +147022,37729,wedding,1249065646 +147022,39183,Ang Lee,1307399002 +147022,39183,Anne Hathaway,1307398980 +147022,39183,based on a book,1307399024 +147022,39183,gay,1307399016 +147022,39183,Heath Ledger,1247911930 +147022,39183,Jake Gyllenhaal,1247911924 +147022,39183,love,1307398937 +147022,39183,Michelle Williams,1307398989 +147022,39183,Oscar (Best Picture),1247911942 +147022,39183,romance,1307398947 +147022,39183,scenic,1247912086 +147022,39183,sexuality,1307398952 +147022,39183,western,1247912103 +147022,39183,Wyoming,1307399062 +147022,39231,great soundtrack,1247851134 +147022,39231,Kirsten Dunst,1247829167 +147022,39231,Orlando Bloom,1247829159 +147022,39231,romantic,1247829200 +147022,39292,Didn't finish,1249926418 +147022,39768,optimistic,1247686953 +147022,39768,scenery,1247688371 +147022,39768,war,1247686962 +147022,40581,Amy Smart,1390352033 +147022,40581,Anna Faris,1390352030 +147022,40581,Christmas,1390352194 +147022,40581,high school,1390352283 +147022,40581,New Jersey,1390352083 +147022,40581,reunion,1390352275 +147022,40581,Roger Kumble,1390352073 +147022,40581,romance,1390352238 +147022,40581,romantic comedy,1390352258 +147022,40581,Ryan Reynolds,1390352035 +147022,40581,small town,1390352291 +147022,40581,teen,1390352312 +147022,41285,romance,1248042026 +147022,41285,Scarlett Johansson,1248041912 +147022,41285,sports,1248041935 +147022,41285,Woody Allen,1248042013 +147022,41573,Christmas,1296606208 +147022,41573,Claire Danes,1249634018 +147022,41573,comedy,1249634057 +147022,41573,Dermot Mulroney,1249634039 +147022,41573,Diane Keaton,1249634015 +147022,41573,drama,1249634057 +147022,41573,family,1249634057 +147022,41573,romance,1249634057 +147022,41573,Sarah Jessica Parker,1249633978 +147022,42734,animation,1249926588 +147022,42734,children,1249926593 +147022,42734,Glenn Close,1249926575 +147022,42734,James Belushi,1249926579 +147022,42734,parody,1249926599 +147022,43396,1960s,1320615150 +147022,43396,aging,1320615171 +147022,43396,Anthony Hopkins,1320615131 +147022,43396,based on a true story,1320615217 +147022,43396,drama,1320615206 +147022,43396,inspirational,1320615194 +147022,43396,Los Angeles,1320615162 +147022,43396,New Zealand,1320615138 +147022,43396,road trip,1320615143 +147022,43396,Roger Donaldson,1320615229 +147022,43396,Utah,1320615243 +147022,44191,Didn't finish,1249916813 +147022,44191,dystopia,1249916827 +147022,44191,Natalie Portman,1247853701 +147022,44191,sci-fi,1249916834 +147022,44555,1980s,1357485724 +147022,44555,1984,1357485788 +147022,44555,adultery,1357485909 +147022,44555,Berlin,1357486121 +147022,44555,drama,1357485762 +147022,44555,East Germany,1357485727 +147022,44555,Florian Henckel von Donnersmarck,1357486019 +147022,44555,German,1357485879 +147022,44555,Germany,1357485730 +147022,44555,historical,1357486132 +147022,44555,psychology,1357486104 +147022,44555,romance,1357485897 +147022,44555,Sebastian Koch,1357486045 +147022,44555,secret service,1357486096 +147022,44555,spying,1357485732 +147022,44555,suicide,1357485817 +147022,44555,theater,1357486072 +147022,44555,thriller,1357485769 +147022,44555,treason,1357485937 +147022,44555,Ulrich Mühe,1357486035 +147022,44555,voyeurism,1357485852 +147022,44555,writer's life,1357485846 +147022,44555,writing,1357485972 +147022,44665,assassin,1266796279 +147022,44665,Ben Kingsley,1266796358 +147022,44665,Bruce Willis,1266796259 +147022,44665,crime,1266796388 +147022,44665,horse racing,1266796396 +147022,44665,Josh Hartnett,1266796342 +147022,44665,Lucy Liu,1266796326 +147022,44665,mistaken identity,1266796294 +147022,44665,Morgan Freeman,1266796261 +147022,44665,organized crime,1266796273 +147022,44665,Stanley Tucci,1266796378 +147022,44665,thriller,1266796440 +147022,44665,twist ending,1266796266 +147022,45208,adventure,1296432106 +147022,45208,Barry Sonnenfeld,1296432001 +147022,45208,Colorado,1296432114 +147022,45208,comedy,1296432098 +147022,45208,dysfunctional family,1296432013 +147022,45208,JoJo,1296432043 +147022,45208,Josh Hutcherson,1296432032 +147022,45208,Nevada,1296432119 +147022,45208,road trip,1296432009 +147022,45208,Robin Williams,1296432015 +147022,45208,Route 66,1296432136 +147022,45208,Utah,1296432126 +147022,45208,vacation,1296432092 +147022,45517,animation,1249627466 +147022,45517,Bonnie Hunt,1249629197 +147022,45517,cars,1249628453 +147022,45517,children,1249629419 +147022,45517,comedy,1249628446 +147022,45517,John Lasseter,1249628439 +147022,45517,Larry The Cable Guy,1249629254 +147022,45517,Owen Wilson,1249629188 +147022,45517,Paul Newman,1249627480 +147022,45517,Pixar,1249629398 +147022,45517,race,1249628510 +147022,45517,road trip,1249628579 +147022,45517,Route 66,1249631695 +147022,45517,small town,1249628457 +147022,45517,Tony Shalhoub,1249629294 +147022,45517,want to see again,1249629508 +147022,45720,Anne Hathaway,1248104163 +147022,45720,Meryl Streep,1248104159 +147022,45720,new york city,1248104153 +147022,45722,Adventure,1248101849 +147022,45722,Comedy,1248101854 +147022,45722,Jack Davenport,1248101917 +147022,45722,Johnny Depp,1248101836 +147022,45722,Keira Knightley,1248101838 +147022,45722,Orlando Bloom,1248101840 +147022,45722,pirates,1248101861 +147022,45722,sequel,1248101844 +147022,46578,Abigail Breslin,1247824180 +147022,46578,Alan Arkin,1324420378 +147022,46578,beauty pageant,1247824119 +147022,46578,comedy,1247824121 +147022,46578,deafness,1324420295 +147022,46578,drugs,1281135187 +147022,46578,family,1267559287 +147022,46578,feel-good,1247824146 +147022,46578,Greg Kinnear,1324420325 +147022,46578,hilarious,1281135198 +147022,46578,inspirational,1247824131 +147022,46578,Paul Dano,1324420345 +147022,46578,road movie,1267559319 +147022,46578,road trip,1247824124 +147022,46578,social commentary,1267559312 +147022,46578,Steve Carell,1324420359 +147022,46578,Toni Collette,1324420331 +147022,46578,twist ending,1267559311 +147022,46723,Alejandro González Iñárritu,1324419843 +147022,46723,Arabic,1324419897 +147022,46723,Brad Pitt,1324419751 +147022,46723,Cate Blanchett,1324419761 +147022,46723,coming of age,1324419976 +147022,46723,deafness,1324420232 +147022,46723,drama,1324420050 +147022,46723,father daughter relationship,1324420224 +147022,46723,French,1324419897 +147022,46723,Japan,1324419788 +147022,46723,Japanese,1324419897 +147022,46723,Mexico,1324419781 +147022,46723,Morocco,1324419772 +147022,46723,multiple storylines,1324419812 +147022,46723,parent-children relationship,1324420023 +147022,46723,San Diego,1324419798 +147022,46723,social commentary,1324419807 +147022,46723,Spanish,1324419897 +147022,46723,suicide,1324420033 +147022,46723,terrorism,1324419907 +147022,46723,visually stunning,1324419803 +147022,46723,wedding,1324420011 +147022,47099,based on a true story,1283818696 +147022,47099,bittersweet,1283818700 +147022,47099,Brian Howe,1283818766 +147022,47099,father-son relationship,1283818665 +147022,47099,feel-good,1283818802 +147022,47099,Gabriele Muccino,1283818672 +147022,47099,happy ending,1283818688 +147022,47099,inspirational,1421967430 +147022,47099,Jaden Smith,1283818743 +147022,47099,movie to see,1283818713 +147022,47099,poverty,1283818683 +147022,47099,San Francisco,1283818675 +147022,47099,single father,1283818658 +147022,47099,single parents,1283818656 +147022,47099,Thandie Newton,1283818736 +147022,47099,understated,1283818706 +147022,47099,want to see again,1283818721 +147022,47099,Will Smith,1283818652 +147022,47629,biography,1248465716 +147022,47629,England,1248465707 +147022,47629,Helen Mirren,1248465729 +147022,47629,true story,1248465712 +147022,48142,1940s,1282057103 +147022,48142,black comedy,1282057132 +147022,48142,Brian De Palma,1282057116 +147022,48142,Hilary Swank,1282057088 +147022,48142,Los Angeles,1282057127 +147022,48142,police,1282057097 +147022,48142,Scarlett Johansson,1282057083 +147022,48304,adventure,1247860653 +147022,48304,Mel Gibson,1247860621 +147022,48304,tribal,1247860634 +147022,48304,violence,1247860635 +147022,48385,comedy,1247688112 +147022,48385,controversial,1254204180 +147022,48385,mockumentary,1254204505 +147022,48385,provocative,1254204216 +147022,48385,quotable,1254204191 +147022,48385,racism,1254204201 +147022,48385,road trip,1254204176 +147022,48385,Sacha Baron Cohen,1254204172 +147022,48516,Jack Nicholson,1247824795 +147022,48516,Leonardo DiCaprio,1247824798 +147022,48516,Martin Scorsese,1247824792 +147022,48516,violence,1247824824 +147022,48516,want to see again,1249335890 +147022,48593,Barry Levinson,1296433679 +147022,48593,Christopher Walken,1296433668 +147022,48593,comedy,1248007052 +147022,48593,Jeff Goldblum,1248007057 +147022,48593,Laura Linney,1248007057 +147022,48593,Robin Williams,1248006966 +147022,48593,US President,1248007057 +147022,48774,Britain,1247859921 +147022,48774,Clive Owen,1247859912 +147022,48774,dystopia,1247859888 +147022,48774,futuristic,1247859929 +147022,48774,Michael Caine,1247859910 +147022,48997,based on a book,1248466013 +147022,48997,Ben Whishaw,1248465977 +147022,48997,Dustin Hoffman,1248465945 +147022,48997,serial killer,1248465988 +147022,48997,thriller,1248466035 +147022,49272,Daniel Craig,1354375153 +147022,49272,James Bond,1354375114 +147022,50872,animation,1247823534 +147022,50872,Brad Bird,1249886687 +147022,50872,children,1327247424 +147022,50872,cooking,1247823538 +147022,50872,Disney,1249886710 +147022,50872,food,1327247414 +147022,50872,France,1249886663 +147022,50872,imaginary friend,1327247404 +147022,50872,inspirational,1327247456 +147022,50872,Paris,1327247385 +147022,50872,Pixar,1249886717 +147022,50872,rats,1249886728 +147022,50872,talking animals,1249886721 +147022,51024,adventure,1269242053 +147022,51024,ancient civilization,1269242107 +147022,51024,Ancient Greece,1269242121 +147022,51024,Andrei Konchalovsky,1269242032 +147022,51024,Armand Assante,1269242002 +147022,51024,epic,1269242462 +147022,51024,family,1269242482 +147022,51024,gods,1269242292 +147022,51024,Homer,1269242342 +147022,51024,Isabella Rossellini,1269242076 +147022,51024,long,1269242570 +147022,51024,Mediterranean,1269242408 +147022,51024,mythology,1269242305 +147022,51024,road trip,1269242453 +147022,51024,Troy,1269242134 +147022,51024,Vanessa L. Williams,1269241938 +147022,52319,easily confused with other movie(s) (title),1289419742 +147022,53125,adventure,1248101681 +147022,53125,comedy,1248101693 +147022,53125,Jack Davenport,1248101733 +147022,53125,Johnny Depp,1248101672 +147022,53125,Keira Knightley,1248101672 +147022,53125,Orlando Bloom,1248101723 +147022,53125,pirates,1248101679 +147022,53125,sequel,1248101675 +147022,53953,based on a book,1296950504 +147022,53953,horror,1296950511 +147022,53953,Hotel,1296950491 +147022,53953,John Cusack,1296950501 +147022,53953,numbers,1296950519 +147022,53953,Samuel L. Jackson,1296950497 +147022,53953,Stephen King,1296950494 +147022,55247,Alaska,1274914353 +147022,55247,based on a book,1274914361 +147022,55247,Catherine Keener,1274914419 +147022,55247,Emile Hirsch,1274914402 +147022,55247,Hal Holbrook,1274914446 +147022,55247,Jena Malone,1274914432 +147022,55247,road trip,1274914370 +147022,55247,Sean Penn,1274914348 +147022,55247,travel,1274914374 +147022,55247,true story,1274914378 +147022,55247,want to see again,1274914492 +147022,55250,American football,1391978318 +147022,55250,Andy Fickman,1391978217 +147022,55250,Boston,1391978152 +147022,55250,comedy,1391978242 +147022,55250,Dwayne Johnson,1391978163 +147022,55250,family,1392016300 +147022,55250,father daughter relationship,1391978116 +147022,55250,Madison Pettis,1391978273 +147022,55250,predictable,1391978291 +147022,55250,Roselyn Sanchez,1392016277 +147022,55250,sports,1391978184 +147022,55269,Adrien Brody,1248861530 +147022,55269,brothers,1248861542 +147022,55269,dark comedy,1248861545 +147022,55269,India,1248861528 +147022,55269,Owen Wilson,1248861536 +147022,55269,road trip,1248861588 +147022,55269,trains,1248861577 +147022,55269,Wes Anderson,1248861533 +147022,55363,assassin,1252495968 +147022,55363,Brad Pitt,1247842600 +147022,55363,Casey Affleck,1247842609 +147022,55363,crime,1252495977 +147022,55363,western,1247843421 +147022,55820,coen brothers,1249841936 +147022,55820,crime,1249841991 +147022,55820,drama,1249841991 +147022,55820,Javier Bardem,1249841921 +147022,55820,Josh Brolin,1249841958 +147022,55820,Oscar Winner,1249841932 +147022,55820,Texas,1249842003 +147022,55820,thriller,1249841964 +147022,55820,Tommy Lee Jones,1249841942 +147022,55820,twist ending,1249841969 +147022,55820,want to see again,1294496639 +147022,56367,comedy,1247687446 +147022,56367,Ellen Page,1247851101 +147022,56367,feel-good,1281135113 +147022,56367,great soundtrack,1247851086 +147022,56367,high school,1281135117 +147022,56367,indie,1281135124 +147022,56367,Jason Reitman,1265757350 +147022,56367,pregnancy,1281135086 +147022,56367,teenager,1281135099 +147022,56587,Jack Nicholson,1247827379 +147022,56587,Morgan Freeman,1247827381 +147022,56587,terminal illness,1247827695 +147022,56941,death,1356809054 +147022,56941,Gerard Butler,1356808848 +147022,56941,Hilary Swank,1356808850 +147022,56941,Ireland,1356808895 +147022,56941,Irish,1356808904 +147022,56941,Lisa Kudrow,1356808926 +147022,56941,New York City,1356808914 +147022,56941,Richard LaGravenese,1356808857 +147022,56941,romance,1356808878 +147022,56941,romantic comedy,1356809010 +147022,56941,self discovery,1356808861 +147022,58154,drama,1249916985 +147022,58154,England,1249916970 +147022,58154,Eric Bana,1249917020 +147022,58154,historical,1249916996 +147022,58154,Natalie Portman,1249916960 +147022,58154,romance,1249916996 +147022,58154,Scarlett Johansson,1249916964 +147022,58301,Brady Corbet,1249681651 +147022,58301,hostage,1249681733 +147022,58301,Michael Haneke,1249681696 +147022,58301,Michael Pitt,1249681629 +147022,58301,Naomi Watts,1249681603 +147022,58301,remake,1249681609 +147022,58301,thriller,1249681619 +147022,58301,Tim Roth,1249681605 +147022,59258,Amy Poehler,1250238645 +147022,59258,Dax Shepard,1250237721 +147022,59258,Greg Kinnear,1250237505 +147022,59258,Philadelphia,1250237646 +147022,59258,pregnancy,1250237494 +147022,59258,Romany Malco,1250237693 +147022,59258,Saturday Night Live,1250237824 +147022,59258,Sigourney Weaver,1250237490 +147022,59258,Steve Martin,1250237518 +147022,59258,surogate mother,1250238110 +147022,59258,Tina Fey,1250237485 +147022,59725,based on a book,1261915764 +147022,59725,Based on a TV show,1261915759 +147022,59725,chick flick,1261915665 +147022,59725,Cynthia Nixon,1261915587 +147022,59725,fashion,1261915676 +147022,59725,infidelity,1261915677 +147022,59725,Kim Cattrall,1261915587 +147022,59725,Kristin Davis,1261915587 +147022,59725,Los Angeles,1261915595 +147022,59725,New York City,1261915552 +147022,59725,romance,1261915598 +147022,59725,Sarah Jessica Parker,1261915555 +147022,59725,wedding,1261915601 +147022,60069,adventure,1253733243 +147022,60069,Andrew Stanton,1253733178 +147022,60069,animation,1253733142 +147022,60069,dystopia,1253733196 +147022,60069,environmental,1253733201 +147022,60069,funny,1253733205 +147022,60069,Pixar,1253733221 +147022,60069,post-apocalyptic,1253733214 +147022,60069,romance,1253733225 +147022,60069,sci-fi,1253733154 +147022,60069,social commentary,1253733185 +147022,61323,Brad Pitt,1247844310 +147022,61323,Coen Brothers,1247844311 +147022,61323,Comedy,1247844306 +147022,61323,Frances McDormand,1247844317 +147022,61323,George Clooney,1247844346 +147022,61323,John Malkovich,1247844319 +147022,61323,Washington DC,1247844336 +147022,63062,Angelina Jolie,1248004744 +147022,63062,Clint Eastwood,1248004751 +147022,63062,John Malkovich,1249635593 +147022,63062,mother-son relationship,1249635581 +147022,63062,police,1249635608 +147022,63062,wrongly accused,1249635613 +147022,63082,Danny Boyle,1287949165 +147022,63082,feel-good,1247827566 +147022,63082,India,1247827487 +147022,63082,love,1247827489 +147022,63082,music,1247827498 +147022,63082,nonlinear,1247827500 +147022,63082,romance,1287949204 +147022,63082,supporting characters,1247827587 +147022,63082,violence,1287949212 +147022,63853,Australia,1247829764 +147022,63853,Baz Luhrmann,1247829769 +147022,63853,Nicole Kidman,1247829778 +147022,63853,story,1247829806 +147022,64614,2000s,1449761867 +147022,64614,Ahney Her,1449761789 +147022,64614,Bee Vang,1449761766 +147022,64614,Brian Haley,1449761817 +147022,64614,Brian Howe,1449761808 +147022,64614,bullying,1449761498 +147022,64614,cars,1449761613 +147022,64614,Christopher Carley,1449761780 +147022,64614,classic car,1449761578 +147022,64614,cliche dialogue,1449761741 +147022,64614,Clint Eastwood,1449761178 +147022,64614,coming of age,1449761709 +147022,64614,Detroit,1449761507 +147022,64614,drama,1449761430 +147022,64614,gangsters,1449761204 +147022,64614,Hmong,1449761895 +147022,64614,Michigan,1449761857 +147022,64614,neighborhood,1449762055 +147022,64614,old age,1449761667 +147022,64614,old men,1449761663 +147022,64614,redemption,1449761215 +147022,64614,revenge,1449761200 +147022,64614,sacrifice,1449761463 +147022,64614,terrible plot,1449761566 +147022,64614,veteran,1449761680 +147022,64614,violence,1449761475 +147022,64622,coming of age,1265540081 +147022,64622,David Kross,1265496277 +147022,64622,father daughter relationship,1265496393 +147022,64622,flashbacks,1265540165 +147022,64622,Germany,1265496287 +147022,64622,Holocaust,1265543341 +147022,64622,Kate Winslet,1265496254 +147022,64622,Lena Olin,1265542604 +147022,64622,prison,1265496369 +147022,64622,Ralph Fiennes,1265496249 +147022,64622,sex,1265540091 +147022,64622,Stephen Daldry,1265540123 +147022,64622,trial,1265496292 +147022,64622,West Germany,1265540094 +147022,64957,Brad Pitt,1247748891 +147022,64957,Cate Blanchett,1252867894 +147022,64957,David Fincher,1247748939 +147022,64957,drama,1247748933 +147022,64957,original plot,1252867932 +147022,64957,romance,1247748965 +147022,64957,touching,1247748963 +147022,65230,comedy,1249626191 +147022,65230,David Frankel,1249628056 +147022,65230,dogs,1249626037 +147022,65230,drama,1249626188 +147022,65230,Florida,1249626272 +147022,65230,Jennifer Aniston,1249626040 +147022,65230,journalism,1249626592 +147022,65230,marriage,1249626174 +147022,65230,Owen Wilson,1249626043 +147022,65230,Philadelphia,1249626286 +147022,65230,pregnancy,1249626176 +147022,66200,affair,1250923713 +147022,66200,Brooklyn,1250923611 +147022,66200,drama,1250923828 +147022,66200,Elias Koteas,1250936130 +147022,66200,family relationships,1250923635 +147022,66200,great soundtrack,1250923837 +147022,66200,Gwyneth Paltrow,1250923389 +147022,66200,Isabella Rossellini,1250923389 +147022,66200,James Gray,1250923741 +147022,66200,Jewish,1250923720 +147022,66200,Joaquin Phoenix,1250923384 +147022,66200,love triangle,1250923722 +147022,66200,New York City,1250923753 +147022,66200,romance,1250923823 +147022,66200,suicide attempt,1250923798 +147022,66200,Vinessa Shaw,1250923729 +147022,66509,Adam Sandler,1267574650 +147022,66509,California,1267574743 +147022,66509,comedy,1267574875 +147022,66509,drama,1267574880 +147022,66509,Hollywood,1267574777 +147022,66509,infidelity,1267574844 +147022,66509,Judd Apatow,1267574719 +147022,66509,Leslie Mann,1267574659 +147022,66509,long,1267574709 +147022,66509,Los Angeles,1267574806 +147022,66509,Seth Rogen,1267574656 +147022,66509,stand-up comedy,1267574865 +147022,67197,airplane crash,1262995213 +147022,67197,Alex Proyas,1262995049 +147022,67197,aliens,1262994954 +147022,67197,apocalypse,1262994979 +147022,67197,elementary school,1262995245 +147022,67197,father-son relationship,1262995033 +147022,67197,Massachusetts,1262995147 +147022,67197,Massachusetts Institute of Technology,1262995095 +147022,67197,Nicolas Cage,1262994949 +147022,67197,Rose Byrne,1262995056 +147022,67197,sci-fi,1262994936 +147022,67197,subway,1262995226 +147022,67255,based on a book,1273189930 +147022,67255,biblical references,1273189933 +147022,67255,crime,1273190026 +147022,67255,hackers,1288998605 +147022,67255,Michael Nyqvist,1273189950 +147022,67255,murder,1273190034 +147022,67255,Niels Arden Oplev,1273189957 +147022,67255,Noomi Rapace,1273189946 +147022,67255,racism,1288998566 +147022,67255,rape,1273190053 +147022,67255,Stockholm,1288998585 +147022,67255,Sven-Bertil Taube,1273189974 +147022,67255,Sweden,1273190010 +147022,67255,Swedish,1273189941 +147022,68157,Adolf Hitler,1267557613 +147022,68157,assassination,1267557620 +147022,68157,Brad Pitt,1267557465 +147022,68157,Christoph Waltz,1267557482 +147022,68157,Eli Roth,1267557624 +147022,68157,French,1267557750 +147022,68157,German,1267557750 +147022,68157,Italian,1267557750 +147022,68157,Jews,1267557725 +147022,68157,Mélanie Laurent,1267558164 +147022,68157,Quentin Tarantino,1267557604 +147022,68157,revenge,1289419808 +147022,68157,violence,1267558201 +147022,68157,visually appealing,1289419819 +147022,68157,war,1267557764 +147022,68157,World War II,1267557611 +147022,68237,claustrophobic,1348950743 +147022,68237,death,1348950746 +147022,68237,drama,1348950789 +147022,68237,dystopia,1348950750 +147022,68237,future,1348950752 +147022,68237,great soundtrack,1348950793 +147022,68237,isolation,1283296208 +147022,68237,Kevin Spacey,1283296183 +147022,68237,Moon,1283296188 +147022,68237,Sam Rockwell,1283296181 +147022,68237,sci-fi,1283296178 +147022,68237,space,1348950775 +147022,68237,technology,1348950778 +147022,68237,twist ending,1348950783 +147022,68954,adventure,1265563315 +147022,68954,boy scouts,1265570561 +147022,68954,children,1265570548 +147022,68954,dogs,1265563319 +147022,68954,dreams,1265570530 +147022,68954,flying,1265570820 +147022,68954,Pete Docter,1265570808 +147022,68954,Pixar,1265570499 +147022,68954,South America,1265570776 +147022,68954,talking animals,1265563332 +147022,69436,bad script,1325960588 +147022,69436,Bible,1325960697 +147022,69436,comedy,1325960625 +147022,69436,disappointment,1325960619 +147022,69436,Harold Ramis,1325960628 +147022,69436,Jack Black,1325960595 +147022,69436,Michael Cera,1325960599 +147022,69436,Middle East,1325960726 +147022,69436,road trip,1325960659 +147022,69436,Roman empire,1325960711 +147022,69436,stupid,1325965577 +147022,69481,action,1264199045 +147022,69481,bombs,1264199136 +147022,69481,death,1264199029 +147022,69481,Iraq,1264199032 +147022,69481,Jeremy Renner,1264199061 +147022,69481,Kathryn Bigelow,1264199071 +147022,69481,military,1264199119 +147022,69481,War,1264199035 +147022,69529,documentary,1259417225 +147022,69529,Earth,1259417332 +147022,69529,Glenn Close,1259417265 +147022,69529,inspirational,1259417257 +147022,69529,nature,1259417234 +147022,69529,social commentary,1259417246 +147022,69529,visually appealing,1259417378 +147022,69529,Yann Arthus-Bertrand,1259417285 +147022,69757,architecture,1299362436 +147022,69757,Joseph Gordon-Levitt,1299362328 +147022,69757,Los Angeles,1299362426 +147022,69757,Marc Webb,1299362411 +147022,69757,office romance,1299362462 +147022,69757,overrated,1299362308 +147022,69757,relationships,1299362344 +147022,69757,romance,1299362337 +147022,70286,1980s,1348950826 +147022,70286,action,1348950070 +147022,70286,alien invasion,1348950096 +147022,70286,aliens,1252576887 +147022,70286,alternate history,1252577013 +147022,70286,apartheid,1348950842 +147022,70286,apartment,1348950842 +147022,70286,fake documentary,1252577039 +147022,70286,genetics,1252577047 +147022,70286,intelligent sci-fi,1252869014 +147022,70286,mockumentary,1348950124 +147022,70286,Neill Blomkamp,1252577096 +147022,70286,Peter Jackson,1252577028 +147022,70286,sci-fi,1252576884 +147022,70286,segregation,1252577033 +147022,70286,Sharlto Copley,1252576912 +147022,70286,slum,1252576951 +147022,70286,social commentary,1252869000 +147022,70286,South Africa,1252576943 +147022,70286,thriller,1252576932 +147022,70286,unpredictable,1348950144 +147022,70286,violence,1348950153 +147022,70286,weapons,1252576962 +147022,70293,Amy Adams,1283462184 +147022,70293,based on a book,1283462259 +147022,70293,biography,1283462231 +147022,70293,Chris Messina,1283462201 +147022,70293,comedy,1283462226 +147022,70293,cooking,1283462209 +147022,70293,food,1283462211 +147022,70293,France,1283462214 +147022,70293,inspiring,1283462219 +147022,70293,Meryl Streep,1283462153 +147022,70293,New York City,1283462172 +147022,70293,Nora Ephron,1283462161 +147022,70293,Paris,1283462177 +147022,70293,Stanley Tucci,1283462182 +147022,70293,uplifting,1283462245 +147022,71154,disaster,1253094288 +147022,71154,drama,1253094263 +147022,71154,less than 300 ratings,1253094239 +147022,71154,London,1253094290 +147022,71154,natural disaster,1421876472 +147022,71154,Robert Carlyle,1253094256 +147022,71154,thriller,1253094411 +147022,71154,Tony Mitchell,1253094484 +147022,71154,weather,1253094393 +147022,71464,Aaron Wolff,1267658288 +147022,71464,biblical,1267658197 +147022,71464,comedy,1267658308 +147022,71464,drama,1267658311 +147022,71464,Ethan Coen,1267658149 +147022,71464,Jessica McManus,1267658292 +147022,71464,Jewish,1267658141 +147022,71464,Joel Coen,1267658148 +147022,71464,Michael Stuhlbarg,1267658158 +147022,71464,Minnesota,1267658340 +147022,71464,Richard Kind,1267658153 +147022,71464,Sari Lennick,1267658271 +147022,71464,suburbia,1267658254 +147022,71579,1960s,1268692038 +147022,71579,adultery,1268692041 +147022,71579,Alfred Molina,1268692299 +147022,71579,Carey Mulligan,1268692080 +147022,71579,coming of age,1268692045 +147022,71579,Dominic Cooper,1268692306 +147022,71579,Emma Thompson,1268692302 +147022,71579,England,1268692034 +147022,71579,London,1268692036 +147022,71579,Lone Scherfig,1268692255 +147022,71579,Peter Sarsgaard,1268692062 +147022,71579,Rosamund Pike,1268692315 +147022,71579,school,1268692172 +147022,71899,Adam Elliot,1275109915 +147022,71899,animation,1275109928 +147022,71899,Australia,1275109923 +147022,71899,Eric Bana,1275109954 +147022,71899,friendship,1275109936 +147022,71899,letters,1275110029 +147022,71899,New York City,1275110000 +147022,71899,Philip Seymour Hoffman,1275109939 +147022,71899,Toni Collette,1275109952 +147022,72011,airport,1265756157 +147022,72011,Anna Kendrick,1265756206 +147022,72011,George Clooney,1265756180 +147022,72011,Jason Reitman,1265757331 +147022,72011,United States,1265756171 +147022,72011,Vera Farmiga,1265756192 +147022,72011,wedding,1265757302 +147022,72226,animation,1267953271 +147022,72226,based on a book,1267953322 +147022,72226,Bill Murray,1267953174 +147022,72226,Brian Cox,1267953375 +147022,72226,George Clooney,1267953157 +147022,72226,Jason Schwartzman,1267953361 +147022,72226,Meryl Streep,1267953167 +147022,72226,Michael Gambon,1267953368 +147022,72226,Owen Wilson,1267953384 +147022,72226,talking animals,1267953305 +147022,72226,Wes Anderson,1267953161 +147022,72226,Willem Dafoe,1267953346 +147022,72395,based on a book,1268165019 +147022,72395,child abuse,1268165007 +147022,72395,drama,1268165112 +147022,72395,Gabourey Sidibe,1268165079 +147022,72395,Harlem,1268165002 +147022,72395,Lee Daniels,1268165021 +147022,72395,Lenny Kravitz,1268164995 +147022,72395,Mariah Carey,1268164991 +147022,72395,Mo'Nique,1268165033 +147022,72395,New York City,1268164998 +147022,72395,Paula Patton,1268165026 +147022,72395,pregnancy,1268165012 +147022,72395,school,1268165096 +147022,72694,Dallas Roberts,1270277891 +147022,72694,drama,1270277816 +147022,72694,drugs,1270277703 +147022,72694,Hollywood,1270277838 +147022,72694,Jack Huston,1270277922 +147022,72694,Jonas Pate,1270277699 +147022,72694,Keke Palmer,1270277716 +147022,72694,Kevin Spacey,1270277697 +147022,72694,Los Angeles,1270277845 +147022,72694,Mark Webber,1270277868 +147022,72694,psychology,1270277706 +147022,72694,Robin Williams,1270278233 +147022,72694,Saffron Burrows,1270278132 +147022,72694,slow,1270278142 +147022,72694,suicide,1270277858 +147022,72733,Africa,1308418195 +147022,72733,apartheid,1308418210 +147022,72733,biography,1308418310 +147022,72733,Clint Eastwood,1308418199 +147022,72733,drama,1308418281 +147022,72733,Matt Damon,1308418202 +147022,72733,Morgan Freeman,1308418205 +147022,72733,rugby,1308418214 +147022,72733,South Africa,1308418195 +147022,72733,sports,1308418220 +147022,73804,adapted from:comic,1347184396 +147022,73804,adventure,1347184486 +147022,73804,Alain Delon,1347184441 +147022,73804,Ancient Greece,1347184633 +147022,73804,Ancient Rome,1347184407 +147022,73804,assassin,1347184763 +147022,73804,Benoit Poelvoorde,1347184871 +147022,73804,Brutus,1347184845 +147022,73804,comedy,1347184331 +147022,73804,comic book,1347184261 +147022,73804,family,1347184590 +147022,73804,fantasy,1347184554 +147022,73804,Frederic Forestier,1347184376 +147022,73804,French,1347184245 +147022,73804,Gerard Depardieu,1347184199 +147022,73804,history,1347184612 +147022,73804,Julius Caesar,1347184838 +147022,73804,Michael Schumacher,1347184719 +147022,73804,Olympics,1347184737 +147022,73804,parody,1347184509 +147022,73804,Roman Empire,1347184234 +147022,73804,sports,1347184746 +147022,73804,Thomas Langmann,1347184385 +147022,73804,Vanessa Hessler,1347184475 +147022,74275,based on a true story,1282521059 +147022,74275,comedy,1282521055 +147022,74275,crime,1282521125 +147022,74275,Ewan McGregor,1282521042 +147022,74275,gay,1282521049 +147022,74275,Glenn Ficarra,1328121729 +147022,74275,Jim Carrey,1282521042 +147022,74275,John Requa,1328121737 +147022,74275,prison,1282521047 +147022,74510,action,1288998435 +147022,74510,based on a book,1288998392 +147022,74510,crime,1288998428 +147022,74510,Daniel Alfredson,1288998408 +147022,74510,hackers,1288998390 +147022,74510,journalism,1288998351 +147022,74510,Michael Nyqvist,1288998353 +147022,74510,murder,1288998451 +147022,74510,Noomi Rapace,1288998355 +147022,74510,Paolo Roberto,1288998421 +147022,74510,sex,1288998374 +147022,74510,Stieg Larsson,1288998402 +147022,74510,Stockholm,1288998469 +147022,74510,Sweden,1288998368 +147022,74510,Swedish,1288998361 +147022,74510,violence,1288998509 +147022,74545,assassination,1293311526 +147022,74545,British,1293311676 +147022,74545,drama,1293311697 +147022,74545,espionage,1293311581 +147022,74545,Ewan McGregor,1293311536 +147022,74545,island,1293311663 +147022,74545,James Belushi,1293311534 +147022,74545,Kim Cattrall,1293311574 +147022,74545,Massachusetts,1293311650 +147022,74545,mystery,1293311715 +147022,74545,Olivia Williams,1293311565 +147022,74545,Pierce Brosnan,1293311545 +147022,74545,plot,1293311731 +147022,74545,politics,1293311547 +147022,74545,Roman Polanski,1293311539 +147022,74545,thriller,1293311721 +147022,74545,Tom Wilkinson,1293311542 +147022,74727,classic,1267658079 +147022,74727,comedy,1267657760 +147022,74727,crime,1267657768 +147022,74727,drama,1267657776 +147022,74727,Evgeni Leonov,1267657756 +147022,74727,kindergarten,1267658048 +147022,74727,prison escape,1267657929 +147022,74727,quotable,1267657858 +147022,74727,Russian,1267657785 +147022,74727,Soviet Union,1267657794 +147022,74727,undercover cop,1267657908 +147022,77307,Aggeliki Papoulia,1297815155 +147022,77307,Anna Kalaitzidou,1297815262 +147022,77307,coming of age,1297815357 +147022,77307,disturbing,1297815135 +147022,77307,drama,1297815107 +147022,77307,family relationships,1297815128 +147022,77307,Giorgos Lanthimos,1297815142 +147022,77307,Greece,1297815102 +147022,77307,Greek,1297815095 +147022,77307,Hristos Passalis,1297815196 +147022,77307,incest,1297815237 +147022,77307,isolation,1297815310 +147022,77307,language,1297815317 +147022,77307,Mary Tsoni,1297815173 +147022,77307,Michelle Valley,1297815229 +147022,77307,parenthood,1297815083 +147022,77307,sex,1297815336 +147022,77307,sexuality,1297815064 +147022,78039,Derek Cianfrance,1307398561 +147022,78039,drama,1307398601 +147022,78039,marriage,1307398567 +147022,78039,Michelle Williams,1307398552 +147022,78039,Pennsylvania,1307398673 +147022,78039,romance,1307398808 +147022,78039,Ryan Gosling,1307398555 +147022,78039,small town,1307398557 +147022,78039,thought provoking,1307398580 +147022,78499,adventure,1291495673 +147022,78499,animation,1291495513 +147022,78499,childhood,1291495611 +147022,78499,children,1291495620 +147022,78499,franchise,1291495733 +147022,78499,Joan Cusack,1291495687 +147022,78499,Lee Unkrich,1291495499 +147022,78499,Pixar,1291495625 +147022,78499,sequel,1291495750 +147022,78499,Tim Allen,1291495633 +147022,78499,Tom Hanks,1291495604 +147022,78499,toys,1291495506 +147022,78499,visually appealing,1291495705 +147022,78574,death,1297296024 +147022,78574,Debra Granik,1297295781 +147022,78574,drama,1297295816 +147022,78574,drugs,1297295964 +147022,78574,family relationships,1297295917 +147022,78574,father daughter relationship,1297295897 +147022,78574,Jennifer Lawrence,1297295785 +147022,78574,John Hawkes,1297295788 +147022,78574,Ozarks,1297295833 +147022,78574,quest,1297295945 +147022,78574,thriller,1297295822 +147022,79132,action,1297123121 +147022,79132,alternate reality,1297123124 +147022,79132,Christopher Nolan,1297123331 +147022,79132,Cillian Murphy,1297123273 +147022,79132,cinematography,1297123166 +147022,79132,Dileep Rao,1297123301 +147022,79132,drama,1297123182 +147022,79132,dreamlike,1297123131 +147022,79132,dreams,1297123128 +147022,79132,Ellen Page,1297123240 +147022,79132,ensemble cast,1297123162 +147022,79132,heist,1297123936 +147022,79132,Joseph Gordon-Levitt,1297123227 +147022,79132,Ken Watanabe,1297123216 +147022,79132,Leonardo DiCaprio,1297123229 +147022,79132,Marion Cotillard,1297123250 +147022,79132,memory,1297123867 +147022,79132,Michael Caine,1297123137 +147022,79132,Pete Postlethwaite,1297123312 +147022,79132,sci-fi,1297123150 +147022,79132,script,1297123952 +147022,79132,subconscious,1297123919 +147022,79132,surreal,1297123373 +147022,79132,thriller,1297123199 +147022,79132,Tom Berenger,1297123286 +147022,79132,Tom Hardy,1297123264 +147022,79132,visually appealing,1297123157 +147022,79242,adultery,1296088882 +147022,79242,Annette Bening,1296088616 +147022,79242,California,1296088829 +147022,79242,college,1296088743 +147022,79242,comedy,1296088768 +147022,79242,coming of age,1296088735 +147022,79242,drama,1296088763 +147022,79242,dysfunctional family,1296088682 +147022,79242,father daughter relationship,1296088708 +147022,79242,father-son relationship,1296088701 +147022,79242,good acting,1296088865 +147022,79242,Josh Hutcherson,1296088787 +147022,79242,Julianne Moore,1296088611 +147022,79242,lesbian,1296088636 +147022,79242,Lisa Cholodenko,1296088608 +147022,79242,love,1296088817 +147022,79242,Mark Ruffalo,1296088630 +147022,79242,marriage,1296088754 +147022,79242,Mia Wasikowska,1296088797 +147022,79242,mother daughter relationship,1296088725 +147022,79242,mother-son relationship,1296088847 +147022,79242,story,1296088651 +147022,79592,Adam McKay,1414855275 +147022,79592,crime,1414855177 +147022,79592,Dwayne Johnson,1414855246 +147022,79592,Eva Mendes,1414855217 +147022,79592,Mark Wahlberg,1414854984 +147022,79592,New York City,1414855131 +147022,79592,police,1414854993 +147022,79592,Will Ferrell,1414854987 +147022,80166,father-son relationship,1406236371 +147022,80166,Jason Bateman,1406236362 +147022,80166,Jeff Goldblum,1406236479 +147022,80166,Jennifer Aniston,1406236366 +147022,80166,Josh Gordon,1406236591 +147022,80166,Juliette Lewis,1406236494 +147022,80166,love story,1406236567 +147022,80166,New York City,1406236353 +147022,80166,Patrick Wilson,1406236533 +147022,80166,predictable ending,1406236411 +147022,80166,relationships,1406236610 +147022,80166,romance,1406236464 +147022,80166,single mother,1406236392 +147022,80166,Will Speck,1406236601 +147022,80463,Andrew Garfield,1296508081 +147022,80463,Armie Hammer,1296508091 +147022,80463,based on true story,1296508021 +147022,80463,college,1296508013 +147022,80463,computers,1296508016 +147022,80463,David Fincher,1296508010 +147022,80463,Harvard,1296508124 +147022,80463,internet,1296514713 +147022,80463,Jesse Eisenberg,1296508005 +147022,80463,Justin Timberlake,1296508063 +147022,80463,law,1296508033 +147022,80463,Rooney Mara,1296508075 +147022,80463,university,1296508047 +147022,80489,action,1297729764 +147022,80489,bank robbery,1297730103 +147022,80489,based on a book,1297730119 +147022,80489,Ben Affleck,1297729761 +147022,80489,Boston,1297729757 +147022,80489,crime,1297729938 +147022,80489,drama,1297729949 +147022,80489,father-son relationship,1297729964 +147022,80489,FBI,1297730521 +147022,80489,heist,1297729930 +147022,80489,hostage,1297730404 +147022,80489,Jeremy Renner,1297729898 +147022,80489,Jon Hamm,1297730025 +147022,80489,Massachusetts,1297729915 +147022,80489,Pete Postlethwaite,1297729836 +147022,80489,police,1297730056 +147022,80489,Rebecca Hall,1297729894 +147022,80489,violence,1297730347 +147022,81229,action,1295792292 +147022,81229,aging,1295793000 +147022,81229,assassin,1295792401 +147022,81229,assassination,1295792411 +147022,81229,Brian Cox,1295792994 +147022,81229,Bruce Willis,1295792214 +147022,81229,cia,1295792273 +147022,81229,comedy,1295792297 +147022,81229,Helen Mirren,1295792241 +147022,81229,John Malkovich,1295792219 +147022,81229,Karl Urban,1295792345 +147022,81229,Mary-Louise Parker,1295792326 +147022,81229,Morgan Freeman,1295792227 +147022,81229,murder,1295792377 +147022,81229,retirement,1295793033 +147022,81229,Richard Dreyfuss,1295792980 +147022,81229,Robert Schwentke,1295792254 +147022,81229,spy,1295792364 +147022,81562,adventure,1296345117 +147022,81562,Danny Boyle,1296345080 +147022,81562,drama,1296345125 +147022,81562,James Franco,1296345084 +147022,81562,loneliness,1296345311 +147022,81562,moving,1296345380 +147022,81562,music,1296345273 +147022,81562,nature,1296345087 +147022,81562,true story,1296345046 +147022,81562,Utah,1296345049 +147022,81562,wilderness,1296345298 +147022,81591,alter ego,1297297636 +147022,81591,ballet,1297297620 +147022,81591,Barbara Hershey,1297297722 +147022,81591,dance,1297297626 +147022,81591,Darren Aronofsky,1297297614 +147022,81591,drama,1297297657 +147022,81591,horror,1297297629 +147022,81591,Mila Kunis,1297297611 +147022,81591,Natalie Portman,1297297609 +147022,81591,New York City,1297297673 +147022,81591,sex,1297297643 +147022,81591,thriller,1297297664 +147022,81591,Vincent Cassel,1297297691 +147022,81591,Winona Ryder,1297297645 +147022,81845,1930s,1297042412 +147022,81845,Australian,1297042423 +147022,81845,based on a true story,1297042191 +147022,81845,brothers,1297042338 +147022,81845,Colin Firth,1297042194 +147022,81845,drama,1297042321 +147022,81845,father daughter relationship,1297042395 +147022,81845,father-son relationship,1297042388 +147022,81845,friendship,1297042329 +147022,81845,Geoffrey Rush,1297042196 +147022,81845,Helena Bonham Carter,1297042198 +147022,81845,king,1297042312 +147022,81845,language,1297042461 +147022,81845,London,1297042239 +147022,81845,royalty,1297042276 +147022,81845,Shakespeare,1297042477 +147022,81845,speech,1297043395 +147022,81845,stutter,1297042490 +147022,81845,therapy,1297042485 +147022,81845,Tom Hooper,1297042225 +147022,81845,true story,1297042362 +147022,81845,United Kingdom,1297042250 +147022,81845,want to see again,1297042442 +147022,81845,war,1297043383 +147022,81932,Amy Adams,1296605902 +147022,81932,boxing,1296605892 +147022,81932,brothers,1296605937 +147022,81932,Christian Bale,1296605993 +147022,81932,David O. Russell,1296605898 +147022,81932,drama,1296605927 +147022,81932,family relationships,1296605969 +147022,81932,Mark Wahlberg,1296606063 +147022,81932,Massachusetts,1296605979 +147022,81932,Melissa Leo,1296606018 +147022,81932,mother-son relationship,1296605947 +147022,81932,sports,1296605894 +147022,81932,true story,1296606356 +147022,82459,19th century,1296688530 +147022,82459,Barry Pepper,1296688454 +147022,82459,based on a book,1296688457 +147022,82459,Coen Brothers,1296688437 +147022,82459,Hailee Steinfeld,1296688435 +147022,82459,Jeff Bridges,1296688430 +147022,82459,Josh Brolin,1296688451 +147022,82459,justice,1296688484 +147022,82459,Matt Damon,1296688449 +147022,82459,New Mexico,1296688469 +147022,82459,revenge,1296688479 +147022,82459,Texas,1296688467 +147022,82459,Western,1296688443 +147022,84844,action,1303594366 +147022,84844,Aleksey Balabanov,1303593870 +147022,84844,Brighton Beach,1303594005 +147022,84844,brothers,1303594544 +147022,84844,Chicago,1303594024 +147022,84844,crime,1303593946 +147022,84844,cult film,1426883060 +147022,84844,drama,1303594552 +147022,84844,mafia,1303594390 +147022,84844,Moscow,1303593880 +147022,84844,quotable,1303594046 +147022,84844,revenge,1303594025 +147022,84844,road trip,1303593990 +147022,84844,Russian,1303593867 +147022,84844,Sergey Bodrov Jr.,1303593858 +147022,84844,soundtrack,1303594052 +147022,85414,action,1322312804 +147022,85414,bombs,1322312920 +147022,85414,Chicago,1322312737 +147022,85414,Duncan Jones,1322312704 +147022,85414,Jake Gyllenhaal,1322312645 +147022,85414,Jeffrey Wright,1322312725 +147022,85414,Michelle Monaghan,1322312664 +147022,85414,military,1322312833 +147022,85414,murder,1322312751 +147022,85414,predictable,1322312957 +147022,85414,romance,1322312947 +147022,85414,science fiction,1322312681 +147022,85414,terrorism,1322312902 +147022,85414,thriller,1322312803 +147022,85414,time,1322312775 +147022,85414,time loop,1322312686 +147022,85414,time travel,1322312690 +147022,85414,trains,1322312768 +147022,85414,Vera Farmiga,1322312713 +147022,86190,action,1308510366 +147022,86190,Cate Blanchett,1308510311 +147022,86190,Eric Bana,1308510314 +147022,86190,Finland,1308510450 +147022,86190,Germany,1308510348 +147022,86190,Joe Wright,1308510390 +147022,86190,Morocco,1308510342 +147022,86190,Saoirse Ronan,1308510317 +147022,86190,thriller,1308510376 +147022,86432,1950s,1364769895 +147022,86432,1960s,1364769902 +147022,86432,Algeria,1364769785 +147022,86432,Arabic,1364769977 +147022,86432,boxing,1364770160 +147022,86432,brother-brother relationship,1364769929 +147022,86432,drama,1364770026 +147022,86432,France,1364769794 +147022,86432,French,1364769969 +147022,86432,independence,1364770019 +147022,86432,Indochina,1364769961 +147022,86432,Jamel Debbouze,1364769836 +147022,86432,Paris,1364769874 +147022,86432,predictable,1364772166 +147022,86432,Rachid Bouchareb,1364769811 +147022,86432,revolution,1364769867 +147022,86432,Roschdy Zem,1364769849 +147022,86432,Sami Bouajila,1364769856 +147022,86432,slow,1364772180 +147022,86432,slum,1364770047 +147022,86432,violence,1364769990 +147022,86432,war,1364770000 +147022,86882,1890s,1327446301 +147022,86882,1920s,1327446290 +147022,86882,Adrien Brody,1327446015 +147022,86882,comedy,1327446005 +147022,86882,France,1327446156 +147022,86882,inspirational,1327446322 +147022,86882,Marion Cotillard,1327446025 +147022,86882,Owen Wilson,1327446325 +147022,86882,Paris,1327445969 +147022,86882,Rachel McAdams,1327446145 +147022,86882,relationships,1327445981 +147022,86882,romance,1327446008 +147022,86882,thought-provoking,1327446271 +147022,86882,time travel,1327446051 +147022,86882,Woody Allen,1327445967 +147022,86882,writers,1327446067 +147022,88129,80s music,1323638016 +147022,88129,action,1323638054 +147022,88129,Albert Brooks,1323638100 +147022,88129,car chase,1323638147 +147022,88129,Carey Mulligan,1323638022 +147022,88129,cars,1323638158 +147022,88129,cinematography,1323638057 +147022,88129,crime,1323638226 +147022,88129,heist,1323638164 +147022,88129,Hollywood,1323638207 +147022,88129,Los Angeles,1323638202 +147022,88129,Nicolas Winding Refn,1323638031 +147022,88129,Oscar Isaac,1323638109 +147022,88129,Ron Perlman,1323638082 +147022,88129,Ryan Gosling,1323638008 +147022,88129,violence,1323638232 +147022,88129,visually appealing,1323638133 +147022,88163,adultery,1328121091 +147022,88163,Analeigh Tipton,1328121244 +147022,88163,comedy,1328121049 +147022,88163,divorce,1328121293 +147022,88163,drama,1328121023 +147022,88163,dysfunctional family,1328121286 +147022,88163,Emma Stone,1328120991 +147022,88163,father daughter relationship,1328121307 +147022,88163,father-son relationship,1328121301 +147022,88163,Glenn Ficarra,1328121176 +147022,88163,high school,1328121069 +147022,88163,John Requa,1328121193 +147022,88163,Jonah Bobo,1328121255 +147022,88163,Josh Groban,1328122422 +147022,88163,Julianne Moore,1328121005 +147022,88163,Kevin Bacon,1328120994 +147022,88163,Marisa Tomei,1328121041 +147022,88163,plot twist,1328121058 +147022,88163,romance,1328121013 +147022,88163,romantic comedy,1328121065 +147022,88163,Ryan Gosling,1328120986 +147022,88163,seduction,1328121946 +147022,88163,Steve Carrell,1328120988 +147022,88405,comedy,1325434192 +147022,88405,Jenna Elfman,1325435012 +147022,88405,Justin Timberlake,1325434108 +147022,88405,Los Angeles,1325434149 +147022,88405,love story,1325434155 +147022,88405,Mila Kunis,1325434111 +147022,88405,New York City,1325434142 +147022,88405,predictable,1325434164 +147022,88405,romance,1325434200 +147022,88405,sex,1325434206 +147022,88405,Will Gluck,1325434127 +147022,88405,Woody Harrelson,1325434115 +147022,88744,action,1326579772 +147022,88744,Andy Serkis,1326579802 +147022,88744,cgi,1326580827 +147022,88744,experiments gone awry,1326580891 +147022,88744,franchise,1326581045 +147022,88744,Freida Pinto,1326579812 +147022,88744,genetics,1326579917 +147022,88744,James Franco,1326579786 +147022,88744,John Lithgow,1326579825 +147022,88744,prequel,1326581054 +147022,88744,Rupert Wyatt,1326579795 +147022,88744,San Francisco,1326579760 +147022,88744,sci-fi,1326579753 +147022,88744,special effects,1326579935 +147022,88744,thriller,1326579844 +147022,88744,violence,1326581079 +147022,88744,virus,1326579768 +147022,89388,breaking the fourth wall,1345722291 +147022,89388,career,1345719588 +147022,89388,chick flick,1345719045 +147022,89388,Christina Hendricks,1345719366 +147022,89388,Douglas McGrath,1345719061 +147022,89388,Greg Kinnear,1345719341 +147022,89388,husband-wife relationship,1345722115 +147022,89388,Jane Curtin,1345719470 +147022,89388,Kelsey Grammer,1345719299 +147022,89388,mother-son relationship,1345719631 +147022,89388,Olivia Munn,1345719388 +147022,89388,Pierce Brosnan,1345719396 +147022,89388,predictable,1345720011 +147022,89388,pregnancy,1345722263 +147022,89388,relationships,1345719560 +147022,89388,romantic comedy,1345719408 +147022,89388,Sarah Jessica Parker,1345719045 +147022,89470,apocalypse,1325353244 +147022,89470,disappointing,1325353550 +147022,89470,Gwyneth Paltrow,1325353300 +147022,89470,Hong Kong,1325353381 +147022,89470,Jude Law,1325353217 +147022,89470,Kate Winslet,1325353219 +147022,89470,kidnapping,1325353514 +147022,89470,Laurence Fishburne,1325353275 +147022,89470,Macau,1325353438 +147022,89470,Marion Cotillard,1325353262 +147022,89470,Matt Damon,1325353265 +147022,89470,Minnesota,1325353357 +147022,89470,Steven Soderbergh,1325353222 +147022,89470,thriller,1325353480 +147022,89470,unrealistic,1325353463 +147022,89470,virus,1325353230 +147022,89492,baseball,1327949499 +147022,89492,based on a book,1327949546 +147022,89492,based on a true story,1327949546 +147022,89492,Bennett Miller,1327949569 +147022,89492,Brad Pitt,1327949510 +147022,89492,California,1327949605 +147022,89492,drama,1327949598 +147022,89492,father daughter relationship,1327949652 +147022,89492,Jonah Hill,1327949513 +147022,89492,numbers,1327949671 +147022,89492,Philip Seymour Hoffman,1327949516 +147022,89492,sports,1327949575 +147022,89492,underdog,1327949980 +147022,89904,1920s,1330900123 +147022,89904,Berenice Bejo,1330900135 +147022,89904,dogs,1330900145 +147022,89904,drama,1330900213 +147022,89904,Hollywood,1330900162 +147022,89904,Jean Dujardin,1330900131 +147022,89904,John Goodman,1330900271 +147022,89904,Los Angeles,1330900174 +147022,89904,Michel Hazanavicius,1330900141 +147022,89904,movie business,1330900279 +147022,89904,original,1330900314 +147022,89904,romance,1330900205 +147022,89904,silent movie,1330900185 +147022,89904,visually appealing,1330900238 +147022,90405,aging,1326049003 +147022,90405,Amanda Seyfried,1326048980 +147022,90405,Andrew Niccol,1326048994 +147022,90405,corruption,1326048997 +147022,90405,crime,1326049076 +147022,90405,dystopia,1326048951 +147022,90405,fugitive,1326049035 +147022,90405,future,1326049109 +147022,90405,Justin Timberlake,1326048967 +147022,90405,Los Angeles,1326048958 +147022,90405,sci-fi,1326048948 +147022,90405,thriller,1326049025 +147022,90405,time,1326049018 +147022,90717,Alan Alda,1328979088 +147022,90717,Ben Stiller,1328978980 +147022,90717,Casey Affleck,1328978988 +147022,90717,comedy,1328979048 +147022,90717,crime,1328979040 +147022,90717,Eddie Murphy,1328978941 +147022,90717,Gabourey Sidibe,1328979321 +147022,90717,heist,1328978939 +147022,90717,Matthew Broderick,1328979002 +147022,90717,New York City,1328978965 +147022,90717,Téa Leoni,1328978955 +147022,90717,Thanksgiving,1328979096 +147022,91077,Alexander Payne,1449914604 +147022,91077,beach,1449922873 +147022,91077,Beau Bridges,1449914886 +147022,91077,cheating,1449922944 +147022,91077,cinematography,1449922890 +147022,91077,coma,1449914580 +147022,91077,drama,1449922899 +147022,91077,emotional,1449914572 +147022,91077,family bonds,1449914575 +147022,91077,family relationships,1449914592 +147022,91077,father daughter relationship,1449922935 +147022,91077,father in law,1449914691 +147022,91077,George Clooney,1449914561 +147022,91077,grief,1449914609 +147022,91077,Hawaii,1449914569 +147022,91077,intelligent,1449914577 +147022,91077,island,1449914975 +147022,91077,rich people,1449922854 +147022,91077,Shailene Woodley,1449914913 +147022,91077,social commentary,1449914649 +147022,91622,adultery,1333999721 +147022,91622,alcoholism,1333999714 +147022,91622,Charlize Theron,1333957001 +147022,91622,comedy,1333999442 +147022,91622,Diablo Cody,1333999726 +147022,91622,high school,1333999556 +147022,91622,Minnesota,1333957017 +147022,91622,Patton Oswalt,1333999469 +147022,91622,small town,1333957034 +147022,91622,unfulfilling,1333957027 +147022,91622,weak ending,1333957029 +147022,91622,writers,1333999456 +147022,92420,action,1345314155 +147022,92420,bullying,1345314053 +147022,92420,coming of age,1345313930 +147022,92420,flying,1345313892 +147022,92420,found footage,1345314417 +147022,92420,Josh Trank,1345313940 +147022,92420,revenge,1345313974 +147022,92420,sci-fi,1345313877 +147022,92420,Seattle,1345313879 +147022,92420,supernatural powers,1345314130 +147022,92420,teenage angst,1345314017 +147022,92420,telekinesis,1345313911 +147022,92420,violence,1345313962 +147022,94299,Anna Kendrick,1390339745 +147022,94299,crime,1390339832 +147022,94299,drama,1390339763 +147022,94299,Jon Gries,1390339795 +147022,94299,Nathan Hope,1390339782 +147022,94299,small town,1390339811 +147022,94299,Tania Raymonde,1390339774 +147022,94299,thriller,1390339758 +147022,94299,whodunnit,1390339903 +147022,94959,1960s,1356912085 +147022,94959,beach,1356912217 +147022,94959,Bill Murray,1356911804 +147022,94959,bittersweet,1356912233 +147022,94959,Bob Balaban,1356912630 +147022,94959,Bruce Willis,1356911806 +147022,94959,comedy,1356911872 +147022,94959,drama,1356911947 +147022,94959,Edward Norton,1356911795 +147022,94959,fantasy,1356911932 +147022,94959,Frances McDormand,1356912026 +147022,94959,island,1356911860 +147022,94959,Jared Gilman,1356912127 +147022,94959,Kara Hayward,1356912006 +147022,94959,love story,1356911810 +147022,94959,New England,1356912054 +147022,94959,original,1356911844 +147022,94959,romance,1356911938 +147022,94959,runaway,1356911835 +147022,94959,scouting,1356912494 +147022,94959,small town,1356911812 +147022,94959,storm,1356911834 +147022,94959,stylized,1356911884 +147022,94959,surreal,1356911881 +147022,94959,Tilda Swinton,1356912018 +147022,94959,wilderness,1356912290 +147022,95441,Boston,1360016310 +147022,95441,buddy movie,1360016510 +147022,95441,cgi,1360016507 +147022,95441,comedy,1360016326 +147022,95441,fantasy,1360016359 +147022,95441,imaginary friend,1360016369 +147022,95441,Mark Wahlberg,1360016304 +147022,95441,Mila Kunis,1360016306 +147022,95441,predictable,1360016321 +147022,95441,Seth MacFarlane,1360016340 +147022,95441,weed,1360016522 +147022,96079,action,1352981263 +147022,96079,China,1352981326 +147022,96079,Daniel Craig,1352981255 +147022,96079,franchise,1352981348 +147022,96079,James Bond,1352981274 +147022,96079,Javier Bardem,1352981364 +147022,96079,Judi Dench,1352981382 +147022,96079,London,1352981302 +147022,96079,Naomie Harris,1352981404 +147022,96079,Sam Mendes,1352981282 +147022,96079,Scotland,1352981311 +147022,96079,thriller,1352981426 +147022,96079,Turkey,1352981317 +147022,96417,action,1409154528 +147022,96417,bad cop,1409154598 +147022,96417,chase,1409155102 +147022,96417,Chinatown,1409155246 +147022,96417,Chinese,1409155153 +147022,96417,corruption,1409154552 +147022,96417,cycling,1409154558 +147022,96417,Dania Ramirez,1409154500 +147022,96417,David Koepp,1409154626 +147022,96417,delivery boy,1409155280 +147022,96417,Joseph Gordon-Levitt,1409154491 +147022,96417,Mandarin,1409155259 +147022,96417,messenger,1409155286 +147022,96417,Michael Shannon,1409155566 +147022,96417,mother-son relationship,1409155375 +147022,96417,New York City,1409154474 +147022,96417,police,1409154537 +147022,96417,thriller,1409154545 +147022,96417,violence,1409154578 +147022,97304,1970s,1361141280 +147022,97304,1980s,1361141287 +147022,97304,Alan Arkin,1361141349 +147022,97304,Ben Affleck,1361141270 +147022,97304,CIA,1361141532 +147022,97304,drama,1361141329 +147022,97304,espionage,1361141522 +147022,97304,father-son relationship,1361141569 +147022,97304,filmmaking,1361141516 +147022,97304,Hollywood,1361141294 +147022,97304,hostage,1361141540 +147022,97304,Iran,1361141272 +147022,97304,John Goodman,1361141274 +147022,97304,Los Angeles,1361141317 +147022,97304,politics,1361141298 +147022,97304,thriller,1361141323 +147022,97304,true story,1361141303 +147022,97304,Victor Garber,1361141401 +147022,97752,1930s,1427622034 +147022,97752,1970s,1427621962 +147022,97752,19th century,1427621995 +147022,97752,2010s,1427621986 +147022,97752,action,1427622369 +147022,97752,Andy Wachowski,1427622285 +147022,97752,atmospheric,1427621890 +147022,97752,based on a book,1427621925 +147022,97752,Ben Whishaw,1427622077 +147022,97752,complicated,1427622277 +147022,97752,David Mitchell,1427622288 +147022,97752,Doona Bae,1427622104 +147022,97752,drama,1427622401 +147022,97752,dystopia,1427621899 +147022,97752,editing,1427622541 +147022,97752,England,1427622025 +147022,97752,future,1427622193 +147022,97752,gay,1427622214 +147022,97752,Halle Berry,1427621929 +147022,97752,Hawaii,1427622162 +147022,97752,Hugh Grant,1427622253 +147022,97752,Hugo Weaving,1427622060 +147022,97752,independent film,1427622270 +147022,97752,Jim Broadbent,1427622233 +147022,97752,Jim Sturgess,1427622145 +147022,97752,Lana Wachowski,1427622299 +147022,97752,multiple roles,1427621919 +147022,97752,multiple storylines,1427621887 +147022,97752,post-apocalyptic,1427622174 +147022,97752,rebellion,1427621910 +147022,97752,sci-fi,1427621901 +147022,97752,Scotland,1427622005 +147022,97752,ship,1427622436 +147022,97752,social commentary,1427621916 +147022,97752,South Korea,1427622015 +147022,97752,suicide,1427622235 +147022,97752,thought-provoking,1427621922 +147022,97752,Tom Hanks,1427621897 +147022,97752,Tom Tykwer,1427622314 +147022,97752,too long,1427622562 +147022,97752,visually appealing,1427621895 +147022,97752,Wachowski Brothers,1427622245 +147022,97921,Bradley Cooper,1359933296 +147022,97921,Chris Tucker,1359933306 +147022,97921,dance,1359933337 +147022,97921,David O. Russell,1359933436 +147022,97921,drama,1359933562 +147022,97921,father-son relationship,1359933633 +147022,97921,Jacki Weaver,1359933429 +147022,97921,Jennifer Lawrence,1359933294 +147022,97921,Julia Stiles,1359933303 +147022,97921,mental illness,1359933440 +147022,97921,Philadelphia,1359933326 +147022,97921,Robert De Niro,1359933314 +147022,97921,romance,1359933451 +147022,97921,romantic comedy,1359933353 +147022,99114,19th century,1359765544 +147022,99114,action,1359765696 +147022,99114,Christoph Waltz,1359765476 +147022,99114,drama,1359765660 +147022,99114,Jamie Foxx,1359765490 +147022,99114,Jonah Hill,1359765480 +147022,99114,Leonardo DiCaprio,1359765454 +147022,99114,Quentin Tarantino,1359765450 +147022,99114,revenge,1359765709 +147022,99114,Samuel L. Jackson,1359765456 +147022,99114,slavery,1359765523 +147022,99114,spaghetti western,1359765585 +147022,99114,violence,1359765515 +147022,99114,western,1359765505 +147022,99145,2000s,1364848212 +147022,99145,action,1364848157 +147022,99145,brother-brother relationship,1364848109 +147022,99145,Christmas,1364848524 +147022,99145,death,1364848376 +147022,99145,disaster,1364848201 +147022,99145,drama,1364848102 +147022,99145,Ewan McGregor,1364848077 +147022,99145,father-son relationship,1364848148 +147022,99145,Geraldine Chaplin,1364848873 +147022,99145,hospital,1364848742 +147022,99145,hotel,1364848357 +147022,99145,Juan Antonio Bayona,1364848080 +147022,99145,mother-son relationship,1364848118 +147022,99145,Naomi Watts,1364848069 +147022,99145,ocean,1364848371 +147022,99145,Ploy Jindachote,1364848338 +147022,99145,predictable,1364848917 +147022,99145,relationships,1364848887 +147022,99145,reunion,1364848224 +147022,99145,Thailand,1364848089 +147022,99145,thriller,1364848140 +147022,99145,Tom Holland,1364849062 +147022,99145,touching,1364848396 +147022,99145,travel,1364848363 +147022,99145,tsunami,1364848183 +147022,99145,vacation,1364848532 +147022,99145,water,1364848192 +147022,109374,1930s,1451762696 +147022,109374,Adrien Brody,1451762596 +147022,109374,Austria,1451762767 +147022,109374,Austria-Hungary,1451762826 +147022,109374,Bill Murray,1451762555 +147022,109374,cinematography,1451762519 +147022,109374,comedy,1451762741 +147022,109374,Eastern Europe,1451762668 +147022,109374,Edward Norton,1451762540 +147022,109374,Europe,1451762689 +147022,109374,F. Murray Abraham,1451762880 +147022,109374,fictional country,1451762949 +147022,109374,funny,1451762528 +147022,109374,great dialogue,1451762531 +147022,109374,Harvey Keitel,1451763891 +147022,109374,hotel,1451762549 +147022,109374,Hungary,1451762831 +147022,109374,Jeff Goldblum,1451762551 +147022,109374,murder,1451762587 +147022,109374,original,1451762614 +147022,109374,Owen Wilson,1451762604 +147022,109374,prison,1451762601 +147022,109374,quirky,1451762516 +147022,109374,Ralph Fiennes,1451762536 +147022,109374,Stefan Zweig,1451762756 +147022,109374,stylized,1451762526 +147022,109374,Tilda Swinton,1451762590 +147022,109374,Tom Wilkinson,1451762610 +147022,109374,Tony Revolori,1451762870 +147022,109374,visually appealing,1451762509 +147022,109374,war,1451762673 +147022,109374,Wes Anderson,1451762522 +147022,109374,Willem Dafoe,1451762573 +147022,111617,Adam Sandler,1420727396 +147022,111617,Africa,1420727349 +147022,111617,comedy,1420727550 +147022,111617,coming of age,1420727900 +147022,111617,Drew Barrymore,1420727386 +147022,111617,father daughter relationship,1420727583 +147022,111617,feel-good,1420727649 +147022,111617,Frank Coraci,1420727475 +147022,111617,Joel McHale,1420727762 +147022,111617,mother-son relationship,1420727603 +147022,111617,romance,1420727544 +147022,111617,single father,1420727618 +147022,111617,single mother,1420727621 +147022,111617,travel,1420727920 +147022,127202,Alfonso Gomez-Rejon,1451295185 +147022,127202,based on a book,1451295419 +147022,127202,comedy,1451295412 +147022,127202,coming of age,1451295281 +147022,127202,drama,1451295406 +147022,127202,film making,1451295396 +147022,127202,friendship,1451295299 +147022,127202,high school,1451295250 +147022,127202,illness,1451295645 +147022,127202,Nick Offerman,1451295263 +147022,127202,Olivia Cooke,1451295206 +147022,127202,parent-children relationship,1451295498 +147022,127202,Pennsylvania,1451295558 +147022,127202,Pittsburgh,1451295240 +147022,127202,romance,1451295447 +147022,127202,social commentary,1451295522 +147022,127202,terminal illness,1451295649 +147022,127202,Thomas Mann,1451295197 +147022,139148,drama,1446328567 +147022,139148,India,1446328712 +147022,139148,lost child,1446328753 +147022,139148,mountains,1446328781 +147022,139148,Pakistan,1446328699 +147022,139148,parent-children relationship,1446328739 +147022,139148,road trip,1446328770 +147039,954,classic,1187756300 +147039,1441,lighthearted,1187756273 +147039,2384,well done,1187756336 +147039,3967,uplifting,1187756234 +147039,4447,cute,1187756182 +147049,37240,Truth behind Iraq War,1187042623 +147049,51709,sea monster,1186443290 +147049,52458,rear window clone,1186364499 +147049,52458,thriller,1186364485 +147049,58975,horror,1209928930 +147049,58975,jungle,1209928930 +147049,58975,mexico,1209928930 +147049,58975,myan,1209928900 +147049,58975,temple,1209928930 +147049,72998,graphics,1264000336 +147049,72998,story,1264000350 +147052,86,coming of age,1427144241 +147052,86,sailing,1427144244 +147052,175,Nudity (Full Frontal),1436987982 +147052,175,teenagers,1438464767 +147052,175,youth gone wild,1436987992 +147052,219,coming of age,1427603083 +147052,1061,child abuse,1444669624 +147052,1097,aliens,1427143112 +147052,1097,emotional,1427143110 +147052,1259,coming of age,1427143454 +147052,1259,friendship,1427143467 +147052,1437,coming of age,1436988342 +147052,1437,incest,1436988331 +147052,1653,atmospheric,1441232806 +147052,1653,dystopia,1436988433 +147052,1653,Ethan Hawke,1436988441 +147052,1653,powerful ending,1441232812 +147052,1653,thought-provoking,1436988453 +147052,1676,fascism,1436988509 +147052,1676,Robert Heinlein,1436988505 +147052,2388,gay,1426540542 +147052,2966,brothers,1427143046 +147052,2966,melancholic,1427143036 +147052,3257,Kevin Costner,1437661142 +147052,3317,coming of age,1436987925 +147052,3317,Gay,1436987933 +147052,3800,Male Full Frontal Nudity,1436988688 +147052,3800,male nudity,1436988690 +147052,4147,coming of age,1378283883 +147052,4147,gay,1378283887 +147052,4147,homosexuality,1378283879 +147052,4147,sexuality,1378283892 +147052,4886,funny,1436988031 +147052,5024,gay relationship,1426540570 +147052,5237,military academy,1427144270 +147052,5445,artificial intelligence,1437013084 +147052,5445,dystopia,1437013088 +147052,5445,futuristic,1437013080 +147052,7265,erotic,1436988202 +147052,7265,Incest,1426540697 +147052,7265,Nudity (Full Frontal),1436988199 +147052,7976,Nudity (Full Frontal),1438465726 +147052,7976,unsimulated sex scenes,1427143081 +147052,8361,Post apocalyptic,1437190741 +147052,31408,coming of age,1436988053 +147052,31408,cute boys,1436988057 +147052,31408,gay,1436988061 +147052,31408,Nudity (Topless),1436988062 +147052,33124,boys' school,1436988577 +147052,33171,child abuse,1427143375 +147052,33171,gay,1436050709 +147052,33171,homosexuality,1427143373 +147052,33171,male nudity,1427143377 +147052,44663,Berlusconi,1378249251 +147052,50379,nudity (full frontal),1426540630 +147052,56474,incest,1426540611 +147052,56474,male nudity,1436988253 +147052,56474,masturbation,1436988250 +147052,56474,Nudity (Full Frontal),1436988259 +147052,59729,incest,1426540684 +147052,61240,adolescence,1427504625 +147052,61240,coming of age,1427504623 +147052,62376,post-apocalyptic,1437189381 +147052,62376,steampunk,1437189379 +147052,71282,food safety,1437009619 +147052,71282,investigative journalism,1437009607 +147052,71282,vegetarians,1437009611 +147052,76093,friendship,1427143012 +147052,78499,childhood,1427143055 +147052,78499,children,1427143063 +147052,78499,friendship,1427143053 +147052,79132,alternate reality,1436987900 +147052,79702,cultural references,1427143154 +147052,79702,geeky,1427143163 +147052,79702,stylized,1427143173 +147052,79702,video games,1427143152 +147052,82635,coming of age,1437010391 +147052,92439,coming of age,1427143713 +147052,97913,geeky,1427143206 +147052,97913,video games,1427143197 +147052,101864,post-apocalyptic,1437189605 +147052,103048,coming of age,1427159056 +147052,106002,aliens,1437944562 +147052,106002,children acting like adults,1437944568 +147052,108791,gay,1436051331 +147052,108791,gay teenager,1436051334 +147052,108791,male nudity,1436051339 +147052,109183,coming out,1426540338 +147052,109183,gay,1426540345 +147052,109183,gay-straight friendship,1426540344 +147052,110235,male prostitute,1426981260 +147052,112334,Aaron Swartz,1436988097 +147052,114180,dystopia,1427910157 +147052,114180,plot holes,1427910152 +147052,115713,AI,1438555207 +147052,115713,artificial intelligence,1438555078 +147052,115713,futuristic,1438555201 +147052,115713,robots,1438555199 +147052,115713,sci-fi,1438555081 +147052,115713,technology,1438555203 +147052,116855,gay romance,1444654408 +147052,117322,gay,1436988222 +147052,117322,incest,1436988221 +147052,120466,AI,1438525775 +147052,120466,artificial intelligence,1438525766 +147052,120466,cyberpunk,1438525771 +147052,120466,future,1438525777 +147052,120466,robots,1438525768 +147052,120466,Touching,1438525774 +147052,130960,gay,1436988483 +147052,134130,mars,1444576140 +147052,134130,Near Future,1444576135 +147052,134130,sci-fi,1444576138 +147052,134130,Space,1444576131 +147102,63992,fantasy,1238878847 +147147,260,future,1434302852 +147147,260,sci-fi,1434302846 +147147,114028,emotional and heroic,1436707212 +147147,114028,fun,1436707212 +147147,114028,homosexuality,1436707212 +147147,120478,amazing photography,1437327269 +147147,120478,historical,1437327269 +147147,120478,magnificent,1437327269 +147179,260,feel-good,1437397911 +147179,260,good for kids,1437397885 +147188,260,Bad acting,1439098981 +147188,260,Meh ok,1439098987 +147217,2843,comedy,1429808411 +147217,2843,country life,1429808411 +147217,2843,satire,1429808411 +147231,1246,boarding school,1436824049 +147231,1246,friendship,1436824045 +147231,1246,High School,1436824041 +147231,1246,inspirational,1436824036 +147231,1246,school,1437543039 +147231,1784,dog,1436823947 +147231,3408,environmental,1436823987 +147231,3408,social commentary,1436823985 +147231,47099,single father,1436825318 +147231,110134,dog,1436781743 +147231,135242,school,1437543025 +147231,139343,family,1437386841 +147240,318,drama,1445296991 +147240,318,prison drama,1445296998 +147240,318,Tim Robbins,1445297014 +147240,480,Dinosaurs,1445297196 +147240,480,special effects,1445297204 +147240,480,Steven Spielberg,1445297207 +147240,1095,Business,1445297308 +147240,1095,drama,1445297286 +147240,1095,famous line,1445297293 +147240,1095,Jack Lemmon,1445297299 +147240,1704,feel-good,1445296773 +147240,1704,inspirational,1445296791 +147240,1704,mathematics,1445296779 +147240,1721,Kate Winslet,1445297081 +147240,1721,love story,1445297068 +147240,1721,music,1445297051 +147240,1721,romance,1445297047 +147240,4995,game theory,1445296851 +147240,4995,genius,1445296844 +147240,4995,mathematics,1445296835 +147240,5445,future,1445297350 +147240,5445,futuristic,1445297331 +147240,5445,Precognition,1445297363 +147240,5445,Steven Spielberg,1445297341 +147240,72998,brilliant,1445297143 +147240,72998,fantasy,1445297115 +147240,72998,James Cameron,1445297118 +147240,72998,visually stunning,1445297126 +147246,1243,absurdist,1214361095 +147246,1366,allegory,1214362864 +147246,1513,guilty pleasure,1214375258 +147246,1753,stoner comedy,1214433506 +147246,3179,Catholicism,1214362581 +147246,3461,allegory,1214433014 +147246,4015,Stoner Movie,1214431982 +147246,4447,guilty pleasure,1214375454 +147246,6016,foreign,1214375658 +147246,6218,guilty pleasure,1214376042 +147246,6373,religion,1214376004 +147246,6776,cricket,1214361246 +147246,8580,Stephen Sondheim,1214434030 +147246,37384,restaurant,1214782941 +147269,3683,Coen Brothers,1218655046 +147273,2232,sick,1206525105 +147280,260,space,1212171467 +147280,788,Eddie Murphy,1210881675 +147280,1196,sci-fi,1212171464 +147280,1198,indiana jones,1212171487 +147280,1210,sci-fi,1212171455 +147280,1240,sci-fi,1212171559 +147280,1291,indiana jones,1212171508 +147280,2231,poker,1212171568 +147280,2571,sci-fi,1212171590 +147280,2628,sci-fi,1212171634 +147280,2947,james bond,1212171609 +147280,2993,james bond,1212171555 +147280,5378,sci-fi,1212171632 +147280,7569,james bond,1212171460 +147280,33493,sci-fi,1212171638 +147280,49272,james bond,1212171535 +147294,260,adventure,1265924863 +147294,260,Fantasy,1265924843 +147294,260,sci-fi,1265924853 +147294,260,space,1265924857 +147294,54259,adventure,1265925684 +147294,54259,comedy,1265925653 +147294,54259,fantasy,1265925675 +147294,54259,humor,1265925664 +147294,54259,magic,1265925665 +147294,54259,magic realism,1265925667 +147294,54259,pirates,1294602295 +147338,356,inspirational,1434314889 +147338,1370,shooting,1425218383 +147338,111360,dumb science,1434314044 +147338,112171,action,1434314995 +147338,112171,bravery,1434314995 +147338,112171,makes sense,1434314995 +147338,112556,failed marriage,1425218284 +147338,112911,action,1434314114 +147338,115149,Action,1434313985 +147338,115210,blood,1434313865 +147338,115210,death,1434313871 +147338,116887,biblical,1434314142 +147338,118702,great challenge,1434313930 +147338,118702,survival,1434313938 +147338,119141,funny,1425218166 +147341,61240,based on a book,1236830202 +147341,61240,vampires,1236830207 +147351,260,original plot,1434925358 +147351,260,space adventure,1434925337 +147355,81562,drama,1295577493 +147355,81562,nature,1295577498 +147355,81591,ballet,1295577546 +147355,81591,overrated,1295577515 +147355,81591,Vincent Cassel,1295577548 +147364,3676,painful,1168041610 +147364,39183,love story,1168041256 +147371,58559,action,1436477130 +147378,296,entirely dialogue,1368926499 +147378,440,conspiracy theory,1368926517 +147378,485,arnold,1368738289 +147378,589,arnold,1368738289 +147378,592,dark hero,1368738241 +147378,1097,stranded,1368738202 +147378,1240,arnold,1368738289 +147378,1270,spielberg,1368926664 +147378,1291,spielberg,1368926664 +147378,1291,treasure,1368738132 +147378,1387,spielberg,1368926664 +147378,1391,mars,1368738224 +147378,1580,conspiracy theory,1368926517 +147378,1617,neo-noir,1368926484 +147378,2022,christian,1368926472 +147378,2022,jesus,1368738098 +147378,2028,spielberg,1368926664 +147378,2115,spielberg,1368926664 +147378,2115,treasure,1368738132 +147378,2405,treasure,1368738132 +147378,2571,dark hero,1368738241 +147378,2617,treasure,1368738132 +147378,2662,mars,1368738224 +147378,2916,arnold,1368738289 +147378,3210,cheerleading,1368738272 +147378,3250,In Netflix queue,1146347186 +147378,3264,cheerleading,1368738272 +147378,5135,bollywood,1368738071 +147378,5445,spielberg,1368926664 +147378,6539,treasure,1368738133 +147378,7318,jesus,1368738098 +147378,7386,christian,1368926472 +147378,8366,christian,1368926472 +147378,8529,stranded,1368738202 +147378,8622,conspiracy theory,1368926517 +147378,33162,christian,1368926472 +147378,63082,bollywood,1368738070 +147381,762,I can't turn away,1197082693 +147381,762,though I know I should . . .,1197082693 +147422,1846,must see!,1231004631 +147422,3726,Shock value,1231003428 +147422,7802,cult film,1231259790 +147449,260,classic sci-fi,1442184552 +147449,260,space adventure,1442184558 +147458,260,cosmos,1432060295 +147458,109487,cosmos,1432060854 +147458,109487,cycling,1432060854 +147458,109487,physics,1432060854 +147460,318,drama,1436037703 +147460,318,prison escape,1436037703 +147460,318,wrongful imprisonment,1436037703 +147468,1279,Criterion,1422719352 +147468,58774,19th century,1409119696 +147468,58774,based on a book,1409119716 +147468,58774,history,1409119696 +147468,58774,Jews,1409119696 +147468,94466,tv series,1419892690 +147468,94558,experimental,1406393583 +147468,94558,visually appealing,1406393573 +147468,112868,atmospheric,1408085605 +147468,112868,experiment,1408085605 +147468,112868,stupid ending,1408085602 +147468,113741,dinner party,1409502932 +147468,113741,drama,1409502934 +147468,113741,multiverse,1409502934 +147468,113741,mystery,1409502934 +147468,122886,Fan service,1451334499 +147468,122886,Plot Recycling,1451334495 +147483,288,Robert Downey Jr.,1292035498 +147483,535,Julianne Moore,1292035521 +147483,535,multiple storylines,1292035553 +147483,535,Robert Downey Jr.,1292035512 +147483,608,black comedy,1354853686 +147483,608,Coen Brothers,1354853688 +147483,608,crime,1354853691 +147483,608,dark comedy,1354853693 +147483,608,funny,1354853695 +147483,608,imdb top 250,1354853698 +147483,608,Oscar (Best Actress),1354853702 +147483,608,quirky,1354853704 +147483,608,sexuality,1354853706 +147483,608,violence,1354853708 +147483,608,violent,1354853710 +147483,608,witty,1354853712 +147483,903,Alfred Hitchcock,1354854095 +147483,903,Atmospheric,1354854091 +147483,903,twist ending,1354854087 +147483,1653,dystopia,1292033026 +147483,1653,dystopic future,1292033031 +147483,1653,future,1292033036 +147483,1653,genetics,1292033034 +147483,1653,interesting,1292033051 +147483,1653,Jude Law,1292033039 +147483,1653,rebellion,1292033048 +147483,1653,seen more than once,1292033046 +147483,1653,space travel,1292033041 +147483,1653,suicide,1292033044 +147483,1653,Uma Thurman,1292033057 +147483,1968,coming of age,1295139722 +147483,1968,coming-of-age,1295139728 +147483,1968,cult film,1295139732 +147483,1968,Drama,1295139738 +147483,1968,ensemble cast,1295139735 +147483,1968,great music,1295139742 +147483,1968,John Hughes,1295139725 +147483,1968,one day,1295139744 +147483,1968,seen more than once,1295139749 +147483,1968,teacher,1295139777 +147483,1968,teen,1295139773 +147483,2134,Robert Downey Jr.,1292035576 +147483,2446,Robert Downey Jr.,1292035662 +147483,3285,Danny Boyle,1291770593 +147483,3285,great soundtrack,1291770600 +147483,3285,Leonardo DiCaprio,1291770587 +147483,3285,not one boring mistake,1291770653 +147483,3285,Nudity (Topless),1291770620 +147483,3285,romance,1291770644 +147483,3285,travel,1291770611 +147483,3285,utopia,1291770603 +147483,3285,Very interesting,1291770605 +147483,3594,ballet,1297022563 +147483,3594,chick flick,1297022674 +147483,3594,dance,1297022560 +147483,3594,Romance,1297022564 +147483,3594,teen,1297022570 +147483,3949,addiction,1295140296 +147483,3949,atmospheric,1295140294 +147483,3949,cinematography,1295140289 +147483,3949,dark,1295140286 +147483,3949,depressing,1295140283 +147483,3949,disturbing,1295140281 +147483,3949,drugs,1295140270 +147483,3949,great acting,1295140246 +147483,3949,imdb top 250,1295140240 +147483,3949,loneliness,1295140237 +147483,4126,Robert Downey Jr.,1292035683 +147483,4516,Robert Downey Jr.,1292035672 +147483,6867,depression,1292036774 +147483,6867,loneliness,1292036787 +147483,6867,midgets,1292036764 +147483,6867,quirky,1292036769 +147483,6867,understated,1292036780 +147483,6892,Robert Downey Jr,1292035564 +147483,6892,Robert Downey Jr.,1292035562 +147483,6952,Robert Downey Jr.,1292035635 +147483,7147,adventure,1292036518 +147483,7147,bittersweet,1292036520 +147483,7147,Coen Brothers,1292036524 +147483,7147,coming of age,1292036526 +147483,7147,dreamlike,1292036528 +147483,7147,fantasy,1292036503 +147483,7147,imagination,1292036505 +147483,7147,imdb top 250,1292036507 +147483,7147,magic,1292036535 +147483,7147,quirky,1292036537 +147483,7147,reflective,1292036539 +147483,7147,surreal,1292036509 +147483,7147,surrealism,1292036511 +147483,7147,Tim Burton,1292036513 +147483,7147,twist ending,1292036515 +147483,7618,Robert Downey Jr,1292035486 +147483,7618,Robert Downey Jr.,1292035481 +147483,8970,Biography,1292036448 +147483,8970,country music,1292036435 +147483,8970,england,1292036408 +147483,8970,fantasy,1292036415 +147483,8970,Heartwarming,1292036433 +147483,8970,imdb top 250,1292036430 +147483,8970,Johnny Depp,1292036402 +147483,8970,Kate Winslet,1292036400 +147483,8970,Oscar (Best Music - Original Score),1292036417 +147483,8970,WRITER'S LIFE,1292036423 +147483,8970,writers,1292036427 +147483,27904,Keanu Reeves,1292035468 +147483,27904,Robert Downey Jr.,1292035461 +147483,33171,dramatic,1308024532 +147483,33171,edgy,1308024537 +147483,33171,gay,1308024523 +147483,33171,homosexuality,1308024541 +147483,33171,Joseph Gordon-Levitt,1308024525 +147483,33171,male nudity,1308024526 +147483,33171,queer,1308024528 +147483,39183,based on a book,1292036246 +147483,39183,bittersweet,1292036223 +147483,39183,controversial,1292036194 +147483,39183,emotional,1292036204 +147483,39183,Heath Ledger,1292036196 +147483,39183,homosexuality,1292036184 +147483,39183,literary adaptation,1292036237 +147483,39183,love,1292036212 +147483,39183,Oscar (Best Directing),1292036189 +147483,39183,Oscar (Best Picture),1292036186 +147483,39183,scenic,1292036207 +147483,39183,sexuality,1292036229 +147483,39292,Robert Downey Jr,1292035624 +147483,39292,Robert Downey Jr.,1292035621 +147483,45720,Anne Hathaway,1292036322 +147483,45720,Chick flick,1292036317 +147483,45720,chickflick,1292036314 +147483,45720,fashion,1292036310 +147483,45720,girlie movie,1292036312 +147483,45720,Meryl Streep,1292036297 +147483,45720,New York,1292036299 +147483,45720,new york city,1292036301 +147483,45720,Oscar Nom 2007,1292036304 +147483,45720,Paris,1292036308 +147483,45720,silly,1292036329 +147483,45720,Stanley Tucci,1292036306 +147483,46976,Emma Thompson,1292036554 +147483,46976,heartbreaking,1292036558 +147483,46976,Maggie Gyllenhaal,1292036551 +147483,46976,metaphysics,1292036598 +147483,46976,narrated,1292036600 +147483,46976,quirky romantic,1292036602 +147483,46976,surreal,1292036577 +147483,46976,touching,1292036595 +147483,46976,writers,1292036588 +147483,46976,writing,1292036591 +147483,47629,based on a true story,1295139919 +147483,47629,biographical,1295139932 +147483,47629,biography,1295139935 +147483,47629,biopic,1295139939 +147483,47629,England,1295139941 +147483,47629,good acting,1295139944 +147483,47629,London,1295139952 +147483,47629,Oscar (Best Actress),1295139949 +147483,47629,Oscar Nominee: Director,1295139966 +147483,47629,poignant,1295139965 +147483,47629,public relations,1295139969 +147483,47629,royalty,1295139972 +147483,47629,strong female lead,1295139974 +147483,47629,true story,1295139976 +147483,48856,Robert Downey Jr.,1292035650 +147483,49666,Robert Downey Jr,1292035607 +147483,49666,Robert Downey Jr.,1292035604 +147483,51540,Robert Downey Jr.,1292035433 +147483,53447,based on a book,1291782671 +147483,53447,Gus Van Sant,1291782656 +147483,53447,murder,1291782667 +147483,53447,skateboarding,1291782661 +147483,54281,Robert Downey Jr.,1292035443 +147483,55247,psychology,1354854258 +147483,58559,action,1292033319 +147483,58559,Atmospheric,1292033316 +147483,58559,Batman,1292033325 +147483,58559,Christian Bale,1292033150 +147483,58559,dark,1292033152 +147483,58559,Heath Ledger,1292033147 +147483,58559,Morgan Freeman,1292033328 +147483,58559,music,1292033302 +147483,58559,Oscar (Best Supporting Actor),1292033299 +147483,58559,psychology,1292033155 +147483,58559,serial killer,1292033157 +147483,58559,stylized,1292033159 +147483,58559,thriller,1292033305 +147483,58559,violence,1292033313 +147483,58559,violent,1292033311 +147483,59315,superhero,1292033338 +147483,59315,torture,1292033341 +147483,61132,Ben Stiller,1292035411 +147483,61132,Hollywood,1292035420 +147483,61132,Jack Black,1292035415 +147483,61132,Robert Downey Jr.,1292035404 +147483,61132,Tom Cruise,1292035408 +147483,62344,Anne Hathaway,1354856429 +147483,62344,cinematography,1354856431 +147483,62344,depression,1354856444 +147483,62344,drug rehabilitation,1354856446 +147483,62344,dysfunctional family,1354856449 +147483,62344,extroversion,1354856451 +147483,62344,family dynamics,1354856454 +147483,62344,grief,1354856457 +147483,62344,meandering,1354856480 +147483,62344,neuroticism,1354856459 +147483,62344,realistic,1354856462 +147483,62344,relationships,1354856464 +147483,62344,siblings,1354856467 +147483,63876,biography,1295140043 +147483,63876,character based on real person:Harvey Milk,1295140034 +147483,63876,Emile Hirsch,1295139995 +147483,63876,Gus Van Sant,1295139992 +147483,63876,homophobia,1295140021 +147483,63876,James Franco,1295139999 +147483,63876,Oscar (Best Actor),1295140007 +147483,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1295140013 +147483,63876,Sean Penn,1295140002 +147483,64620,based on a play,1295139892 +147483,64620,based on a true story,1295139872 +147483,64620,boring,1295139875 +147483,64620,Broadway,1295139870 +147483,64620,Frank Langella,1295139868 +147483,64620,gripping,1295139889 +147483,64620,history,1295139885 +147483,64620,Nixon,1295139883 +147483,64620,Oliver Platt,1295139887 +147483,64620,politics,1295139866 +147483,64620,television,1295139879 +147483,64620,US President,1295139877 +147483,64957,Aging,1292036485 +147483,64957,Brad Pitt,1292036466 +147483,64957,Cate Blanchett,1292036488 +147483,64957,cinematography,1292036473 +147483,64957,drama,1292036477 +147483,64957,music,1292036493 +147483,64957,original plot,1292036471 +147483,64957,Oscar (Best Effects - Visual Effects),1292036469 +147483,67734,funny,1354854476 +147483,67734,quirky,1354854473 +147483,69757,artistic,1292036653 +147483,69757,chick flick,1292036671 +147483,69757,cute,1292036637 +147483,69757,Effects,1292036656 +147483,69757,humor,1292036632 +147483,69757,humorous,1292036635 +147483,69757,IMDB Top 250,1292036648 +147483,69757,indie music,1292036643 +147483,69757,intelligent,1292036645 +147483,69757,quirky,1292036629 +147483,69757,relationships,1292036641 +147483,69757,stylized,1292036659 +147483,69757,Zooey Deschanel,1292036624 +147483,70293,Amy Adams,1292036361 +147483,70293,food,1292036372 +147483,70293,france,1292036373 +147483,70293,Meryl Streep,1292036355 +147483,70293,New York City,1292036367 +147483,70293,Paris,1292036369 +147483,70293,poignant,1292036362 +147483,70293,Stanley Tucci,1292036364 +147483,71535,dark comedy,1354854246 +147483,71535,post-apocalyptic,1354854249 +147483,72011,business,1292036734 +147483,72011,capitalism,1292036720 +147483,72011,corporate america,1292036716 +147483,72011,George Clooney,1292036698 +147483,72011,Jason Bateman,1292036700 +147483,72011,likeable,1292036737 +147483,72011,loneliness,1292036702 +147483,72011,Nudity (Rear),1292036745 +147483,72011,Oscar Nominee: Director,1292036705 +147483,72011,wedding,1292036712 +147483,72011,witty,1292036708 +147483,73017,Jude Law,1292033378 +147483,73017,Robert Downey Jr.,1292033375 +147483,77561,Robert Downey Jr.,1292033409 +147483,79132,alternate reality,1292033074 +147483,79132,big budget,1292033069 +147483,79132,complicated,1292033076 +147483,79132,dreamlike,1292033079 +147483,79132,dreams,1292033082 +147483,79132,ensemble cast,1292033107 +147483,79132,Leonardo DiCaprio,1292033066 +147483,79132,mindfuck,1292033084 +147483,79132,Paris,1292033087 +147483,79132,surreal,1292033094 +147483,79132,visually appealing,1292033089 +147483,79132,visually stunning,1292033105 +147483,79242,adultery,1354857336 +147483,79242,character driven,1354857338 +147483,79242,college,1354857341 +147483,79242,coming of age,1354857343 +147483,79242,cute,1354857345 +147483,79242,dysfunctional family,1354857347 +147483,79242,family relationships,1354857351 +147483,79242,father daughter relationship,1354857353 +147483,79242,father-son relationship,1354857356 +147483,79242,funny,1354857358 +147483,79242,good acting,1354857360 +147483,79242,humorous,1354857362 +147483,79242,intelligent,1354857364 +147483,80463,based on true story,1295139808 +147483,80463,business,1295139830 +147483,80463,college,1295139833 +147483,80463,dark comedy,1295139828 +147483,80463,Jesse Eisenberg,1295139841 +147483,80463,loneliness,1295139812 +147483,80463,social network,1295139845 +147483,80463,true story,1295139816 +147483,80463,university,1295139818 +147483,81537,Robert Downey Jr.,1292035588 +147483,81537,Zach Galifianakis,1292035591 +147483,81591,atmospheric,1295140163 +147483,81591,ballet,1295140166 +147483,81591,creepy,1295140157 +147483,81591,dance,1295140159 +147483,81591,Darren Aronofsky,1295140129 +147483,81591,horror,1295140154 +147483,81591,madness,1295140134 +147483,81591,Mila Kunis,1295140131 +147483,81591,Natalie Portman,1295140137 +147483,81591,Oscar (Best Actress),1308024662 +147483,81591,Oscar Nominee: Director,1308024659 +147483,81591,protagonist is a dancer,1295140152 +147483,81591,protagonist is a performer,1295140148 +147483,81591,sex,1308024664 +147483,94070,Bill Nighy,1354853417 +147483,94070,bittersweet,1354853384 +147483,94070,India,1354853396 +147483,94070,John Madden,1354853422 +147483,94070,Judi Dench,1354853387 +147483,94070,Old age,1354853406 +147483,94070,predictalbe,1354853391 +147483,94070,Regrets,1354853428 +147483,94070,Soundtrack,1354853430 +147483,94070,sure thing,1354853459 +147483,94070,Tom Wilkinson,1354853434 +147483,94959,bittersweet,1354855675 +147483,94959,dialogue,1354855679 +147483,94959,Edward Norton,1354855677 +147483,94959,original,1354855686 +147483,94959,quirky,1354855684 +147483,94959,small town,1354855688 +147483,94959,stylized,1354855690 +147483,96079,007 (series),1354853500 +147483,96079,action,1354853502 +147483,96079,adapted from:book series,1354853504 +147483,96079,beautifully filmed,1354853506 +147483,96079,Daniel Craig,1354853513 +147483,96079,dark,1354853517 +147483,96079,franchise,1354853519 +147483,96079,James Bond,1354853521 +147483,96079,Javier Bardem,1354853523 +147483,96079,London,1354853525 +147483,96079,mental illness,1354853528 +147483,96079,motorcycle,1354853532 +147483,96079,Scotland,1354853539 +147483,96079,Shanghai,1354853536 +147483,96079,thriller,1354853552 +147483,96079,trains,1354853557 +147483,96588,college,1354855627 +147483,96588,predictable,1354855634 +147483,96588,vocalists,1354855624 +147483,97921,Jennifer Lawrence,1354853889 +147483,97921,mental illness,1354853830 +147483,97921,predictable,1354853851 +147483,97921,predictable ending,1354853851 +147483,97921,serious topics,1354853889 +147486,260,cult classic,1442014928 +147486,260,Science Fiction,1442014922 +147496,3275,crime family,1149628465 +147503,260,Science Fiction,1438035846 +147503,260,space opera,1438035855 +147503,134853,depressing,1438035973 +147503,134853,not fun,1438035973 +147503,134853,sad,1438035973 +147574,260,classic sci-fi,1444366173 +147574,260,sci-fi,1444366163 +147574,260,space,1444366168 +147578,1438,nature vs. civilization; native peoples; going native,1187312382 +147578,2478,buddy comedy,1187312359 +147578,2953,children's comedy,1187312396 +147578,6016,historical epic,1187312427 +147578,6870,excellent,1187312410 +147596,260,action,1438787030 +147596,260,sci-fi,1438787014 +147596,260,space,1438787021 +147603,260,camp sci fi,1422607191 +147603,260,jedi,1422607191 +147603,260,space opera,1422607191 +147603,480,adventure,1423305623 +147603,480,dinosaur,1423305623 +147603,480,pg-13:sci-fi action violence,1423305623 +147617,7502,war widow,1365549430 +147635,915,audrey hepburn,1409517003 +147635,915,chick flick,1409517051 +147635,915,classic romantic comedy,1409517021 +147635,915,romance,1409517041 +147635,7669,19th century,1409517217 +147635,7669,England,1409517230 +147635,7669,Jane Austen,1409517222 +147635,7669,made for TV,1409517264 +147635,7669,romantic,1409517248 +147635,7669,rural,1409517257 +147635,7669,story,1409517235 +147635,7669,TV series,1409517243 +147640,122892,Action,1453058662 +147640,122892,Marvel,1453058680 +147640,122892,superhero,1453058669 +147659,260,classic,1437969358 +147659,260,sci-fi,1437969332 +147659,260,space adventure,1437969347 +147659,593,anthony hopkins,1438749440 +147659,593,psycho triller,1438749440 +147659,593,suspense,1438749440 +147676,293,Classical,1450582518 +147676,293,Oscar,1450582553 +147676,111362,Marvel,1450582333 +147676,115617,Touching,1450582442 +147768,924,5 stars,1196006781 +147771,441,Austin,1230439874 +147771,441,TX,1230439874 +147771,1805,pulp,1230439794 +147771,2087,politically incorrect,1230440285 +147771,2087,racial stereotypes,1230440285 +147771,2478,singing animals,1230440414 +147771,2490,director's cut is better,1230439329 +147771,2761,totally overlooked,1230439758 +147771,2859,oversize clothing,1230436810 +147771,3362,Attica!,1230440453 +147771,3863,Tarsem,1230439843 +147771,6537,downer ending,1230440110 +147771,8491,gangsters,1230436746 +147771,8874,Simon Pegg,1230440185 +147776,260,fantasy,1431187882 +147776,260,Science Fiction,1431187892 +147800,5418,realistic action,1174413319 +147800,8665,realistic action,1174413339 +147800,47044,realistic action,1174413592 +147800,47044,stylish,1174413592 +147800,49272,realistic action,1174413277 +147823,277,drama,1188078808 +147823,3752,comedy,1188078905 +147823,3755,drama,1188078777 +147823,3785,comedy,1188078874 +147823,6934,sci-fi,1188078859 +147824,293,great acting,1442665351 +147824,293,hitman,1442665346 +147824,293,love story,1442665342 +147824,293,quirky,1442665359 +147824,296,Black comedy,1442665551 +147824,296,dark comedy,1442665537 +147824,296,multiple storylines,1442665540 +147824,296,stylized,1442665543 +147824,1197,Quirky,1442665447 +147824,1197,romance,1442665449 +147824,1230,quirky,1442927904 +147824,1617,complex,1446036540 +147824,4011,Great dialogue,1447599021 +147824,4011,stylized,1447599029 +147824,4973,beautifully filmed,1442665508 +147824,4973,feel-good,1442665518 +147824,4973,great soundtrack,1442665514 +147824,4973,quirky,1442665509 +147824,4973,stylized,1442665528 +147824,4973,surreal,1442665526 +147824,7099,post-apocalyptic,1444124898 +147824,7099,strong female lead,1444124902 +147824,44665,stylized,1447071456 +147824,55207,artsy,1435902401 +147824,55207,surreal,1435902401 +147824,55207,wee bit romantic,1435902401 +147824,57669,black comedy,1442665385 +147824,57669,dark comedy,1442665383 +147824,57669,stylized,1442665388 +147824,94959,cinematography,1442665624 +147824,94959,love story,1442665627 +147824,94959,quirky,1442665614 +147824,94959,stylized,1442665617 +147824,94959,surreal,1442665620 +147824,110110,dramatic,1437227413 +147824,110110,parent-children relationship,1437227413 +147824,110110,prison,1437227413 +147824,116897,dark humor,1442665572 +147824,138036,stylish,1450080902 +147831,260,action,1439773656 +147831,260,scifi,1439773652 +147834,2692,stylistic,1388829089 +147834,4973,uplifting,1388828874 +147834,64957,too long,1388829000 +147834,74488,Irish,1388828839 +147834,74488,love story,1388828768 +147834,74488,romantic,1388828839 +147834,90866,uplifting,1388828980 +147837,260,future fantasy,1439787679 +147837,260,"space, action, harrison ford, western",1439787664 +147844,260,aliens,1432434923 +147844,260,family,1432434945 +147844,260,galactic empire,1432434918 +147844,260,robots,1432434926 +147844,260,space action,1432434893 +147844,106916,amy adams,1433730594 +147844,106916,christian bale,1433730594 +147844,106916,money,1433730594 +147867,260,classic,1437421807 +147867,260,sci-fi,1437421800 +147868,52319,World War II,1335900622 +147899,47,mystery,1443027203 +147899,47,serial killer,1443027193 +147899,47,violent,1443027208 +147899,110,action,1443027679 +147899,110,epic,1443027691 +147899,110,inspirational,1443027681 +147899,110,mel gibson,1443027668 +147899,110,sword fight,1443027672 +147899,356,feel-good,1443027405 +147899,356,Oscar Winner,1443027432 +147899,356,tom hanks,1443027395 +147899,593,Anthony Hopkins,1443027142 +147899,593,investigation,1443027160 +147899,593,serial killer,1443027145 +147899,593,thriller,1443027153 +147899,1954,boxing,1443027504 +147899,1954,fighting,1443027496 +147899,1954,inspirational,1443027492 +147899,1954,Sylvester Stallone,1443027485 +147899,3147,compassionate,1443027368 +147899,3147,Tom Hanks,1443027349 +147899,3578,action,1443027580 +147899,3578,heroism,1443027573 +147899,3578,Ridley Scott,1443027565 +147899,3578,Russell Crowe,1443027559 +147899,7143,heroism,1443027641 +147899,7143,Honor,1443027633 +147899,7143,Japanese culture,1443027620 +147899,7143,martial arts,1443027616 +147899,7143,samurai,1443027605 +147899,7143,sword fight,1443027627 +147899,8340,Clint Eastwood,1443027028 +147899,8340,prison escape,1443027031 +147899,33166,multiple storylines,1443027272 +147899,33166,Oscar (Best Picture),1443027268 +147899,33794,action,1443027873 +147899,33794,based on a comic,1443027866 +147899,33794,batman,1443027844 +147899,33794,DC Comics,1443027850 +147899,33794,ninja,1443027853 +147899,33794,super hero,1443027846 +147899,33794,superhero,1443027837 +147899,36529,based on a true story,1443026885 +147899,36529,dark comedy,1443026899 +147899,36529,Nicolas Cage,1443026879 +147899,49530,action,1443026856 +147899,58559,action,1443027797 +147899,58559,Batman,1443027762 +147899,58559,comic book,1443027777 +147899,58559,DC Comics,1443027789 +147899,58559,Morgan Freeman,1443027770 +147899,58559,serial killer,1443027791 +147899,58559,superhero,1443027766 +147899,58559,thriller,1443027775 +147899,58559,violence,1443027780 +147899,59315,action,1443027919 +147899,59315,adventure,1443027912 +147899,59315,Marvel,1443027904 +147899,59315,superhero,1443027906 +147899,59315,superheroes,1443027915 +147899,59315,technology,1443027930 +147899,59615,Harrison Ford,1443026732 +147899,59615,indiana jones,1443026711 +147899,59615,Steven Spielberg,1443026736 +147899,60040,comic book,1443030076 +147899,60040,Marvel,1443030084 +147899,60040,superhero,1443030078 +147899,60040,The Avengers,1443030081 +147899,85342,realistic,1443026947 +147908,4998,Old,1232164316 +147920,260,classic sci-fi,1439782997 +147920,260,sci-fi,1439783016 +147920,260,space action,1439783036 +147920,1080,comedy,1439784044 +147920,1080,irreverent,1439784059 +147920,1080,Monty Python,1439784041 +147922,24,albino,1397958126 +147922,24,elegiac,1397958099 +147922,24,special powers,1397958112 +147922,32,Brad Pitt,1413128470 +147922,32,epidemic,1413128451 +147922,32,genetics,1413128483 +147922,32,psychology,1413128461 +147922,32,science fiction,1413128406 +147922,32,time travel,1413128489 +147922,50,Kevin Spacey,1413149341 +147922,50,organized crime,1413149344 +147922,110,Mel Gibson,1374786514 +147922,111,Bernard Herrmann,1381680862 +147922,111,Cybill Shepherd,1381680882 +147922,111,Jodie Foster,1381680871 +147922,141,comedy,1395595791 +147922,141,Gene Hackman,1395595798 +147922,141,Hank Azaria,1395595873 +147922,141,Robin Williams,1395595808 +147922,172,"""I need a computer.""",1395595048 +147922,172,90s sci-fi,1395595090 +147922,172,book was better,1395595140 +147922,172,cyberpunk,1395595058 +147922,172,Henry Rollins,1395595074 +147922,172,Ice-T,1395595171 +147922,172,memory,1395595124 +147922,172,technology,1395595126 +147922,172,William Gibson,1395595065 +147922,203,drag queens,1395595657 +147922,203,John Leguizamo,1395595674 +147922,203,Patrick Swayze,1395595747 +147922,203,queer,1395595711 +147922,203,road trip,1395595720 +147922,203,small town,1395595724 +147922,203,Stockard Channing,1395595696 +147922,203,Wesley Snipes,1395595666 +147922,296,macho,1413128241 +147922,296,organized crime,1374347320 +147922,296,Quentin Tarantino,1413128268 +147922,296,Samuel L. Jackson,1374347314 +147922,296,violence,1374347307 +147922,376,Kevin Bacon,1374786455 +147922,454,author:John Grisham,1374372250 +147922,454,wilford brimley beaten to death,1374372204 +147922,593,excellent script,1374782815 +147922,593,Jodie Foster,1374782695 +147922,593,psychology,1374782801 +147922,593,serial killer,1374782803 +147922,608,crime gone awry,1396205423 +147922,608,dark humor,1396205403 +147922,608,deadpan,1396205405 +147922,608,great music,1396205411 +147922,608,Minnesota,1396205393 +147922,608,police,1396205397 +147922,608,Steve Buscemi,1396205400 +147922,608,William H. Macy,1396205458 +147922,678,Billy Bob Thornton,1376326645 +147922,678,disability,1376326489 +147922,678,mental illness,1376326484 +147922,678,Molly Ringwald,1376326664 +147922,678,murderer,1376326487 +147922,678,psychological,1376326517 +147922,678,short film,1376326468 +147922,750,cold war,1374347975 +147922,750,dark humor,1374347999 +147922,750,irreverent,1374348013 +147922,750,military,1374348036 +147922,750,nuclear bomb,1374348032 +147922,750,paranoia,1374347980 +147922,750,Peter Sellers,1374347951 +147922,750,social commentary,1374347983 +147922,750,Stanley Kubrick,1374347977 +147922,750,witty,1374347994 +147922,780,alien invasion,1413149259 +147922,780,Jeff Goldblum,1413149283 +147922,780,sci-fi,1413149262 +147922,780,US President,1413149240 +147922,788,comedy,1374795480 +147922,788,Crappy Remake,1374795480 +147922,788,Eddie Murphy,1374795442 +147922,788,fat suit,1374795465 +147922,788,multiple roles,1374795516 +147922,788,remake,1374795484 +147922,903,Bernard Herrmann,1381681779 +147922,906,Angela Lansbury,1373749719 +147922,906,atmospheric,1373749539 +147922,906,Charles Boyer,1373749626 +147922,906,Ingrid Bergman,1373749534 +147922,906,Joseph Ruttenberg,1373750028 +147922,906,manipulation,1373749607 +147922,906,tense,1373749548 +147922,906,TRAPPED OR CONFINED,1373749567 +147922,908,adventure,1374785491 +147922,908,Alfred Hitchcock,1374785499 +147922,908,Bernard Herrmann,1381681805 +147922,908,Cary Grant,1374785494 +147922,908,epic,1374785479 +147922,908,Eva Marie Saint,1374785446 +147922,908,Mount Rushmore,1374785471 +147922,908,planes,1374785513 +147922,908,trains,1374785510 +147922,915,Old,1373733455 +147922,915,romance,1373733469 +147922,922,Billy Wilder,1391919620 +147922,922,Erich von Stroheim,1391919617 +147922,922,film noir,1391919636 +147922,922,Gloria Swanson,1391919299 +147922,922,Grand Guignol,1391919075 +147922,922,Hollywood,1391919112 +147922,922,Los Angeles,1391919124 +147922,922,mental illness,1374782640 +147922,922,narcissism,1391919642 +147922,924,atmospheric,1374347786 +147922,924,cinematography,1374347864 +147922,924,evolution,1396205270 +147922,924,groundbreaking,1396205234 +147922,924,meditative,1374347805 +147922,924,sci-fi,1374347793 +147922,924,soundtrack,1396205226 +147922,924,space,1374347795 +147922,924,space travel,1374347890 +147922,924,Stanley Kubrick,1374347791 +147922,924,visionary,1396205238 +147922,924,visually appealing,1374347798 +147922,926,Anne Baxter,1392590535 +147922,926,Bechdel Test:Pass,1374347107 +147922,926,Bette Davis,1374347078 +147922,926,classic,1374347090 +147922,926,Joseph L. Mankiewicz,1374347144 +147922,926,sociopath,1374347160 +147922,926,Theater,1374347128 +147922,927,acting,1392347954 +147922,927,all-female cast,1392348000 +147922,927,entirely dialogue,1392347967 +147922,927,Joan Crawford,1392348572 +147922,927,Norma Shearer,1392348087 +147922,927,Rosalind Russell,1392347929 +147922,1028,classic,1395595273 +147922,1028,Dick Van Dyke,1395595263 +147922,1028,Julie Andrews,1395595255 +147922,1028,London,1395595356 +147922,1028,musical,1395595261 +147922,1028,Oscar (Best Actress),1395595259 +147922,1061,Brad Pitt,1413128856 +147922,1061,Kevin Bacon,1413128882 +147922,1061,sexual abuse,1413128890 +147922,1061,vengeance,1413128934 +147922,1088,1960s,1395595558 +147922,1088,abortion,1395595481 +147922,1088,class differences,1395595466 +147922,1088,coming of age,1395595415 +147922,1088,guilty pleasure,1395595502 +147922,1088,Jennifer Grey,1395595521 +147922,1088,no one puts Baby in a corner,1395595407 +147922,1088,Patrick Swayze,1395595404 +147922,1088,soundtrack,1395595569 +147922,1089,everybody dies,1374347412 +147922,1089,organized crime,1374347459 +147922,1089,Quentin Tarantino,1374347426 +147922,1089,violence,1374347424 +147922,1178,Best War Films,1374348537 +147922,1178,injustice,1374348453 +147922,1178,Kirk Douglas,1374348386 +147922,1178,trench warfare,1374348433 +147922,1178,war and politics,1374348507 +147922,1178,World War I,1374348397 +147922,1219,Anthony Perkins,1374784603 +147922,1219,Bernard Herrmann,1381681824 +147922,1219,cross dressing,1374782860 +147922,1219,suspenseful,1374782851 +147922,1219,thriller,1374782854 +147922,1222,1960s,1374348220 +147922,1222,anti-war,1374348156 +147922,1222,indoctrination,1374348294 +147922,1222,journalism,1374348194 +147922,1222,Matthew Modine,1374348349 +147922,1222,R. Lee Ermey,1374348353 +147922,1222,Stanley Kubrick,1374348175 +147922,1222,suicide,1374348188 +147922,1222,Vincent D'Onofrio,1374348172 +147922,1249,action,1394822050 +147922,1249,Anne Parillaud,1394822002 +147922,1249,Eric Serra,1394822064 +147922,1249,sexy,1394821972 +147922,1258,atmospheric,1376194613 +147922,1258,Isolation,1376194705 +147922,1258,psychological,1376194635 +147922,1258,Stanley Kubrick,1376194609 +147922,1258,Stephen King,1376194606 +147922,1258,suspense,1376194697 +147922,1274,cyberpunk,1413149457 +147922,1274,Japan,1413149468 +147922,1274,psychic powers,1413149452 +147922,1274,science fiction,1413149455 +147922,1301,intellectual,1380508475 +147922,1301,Leslie Nielsen,1380508418 +147922,1301,psychology,1380508475 +147922,1301,sci-fi,1380508475 +147922,1301,space,1380508475 +147922,1333,Alfred Hitchcock,1374639247 +147922,1333,animal attacks,1374639342 +147922,1333,animal horror,1374639273 +147922,1333,birds,1374639263 +147922,1333,classic,1374639348 +147922,1333,eerie,1374639286 +147922,1333,environmental,1374639306 +147922,1333,strange,1374639261 +147922,1333,suspense,1374639300 +147922,1333,unusual,1374639333 +147922,1358,Billy Bob Thornton,1376194187 +147922,1513,1980s,1395595987 +147922,1513,friendship,1395596008 +147922,1513,high school,1395595951 +147922,1513,Janeane Garofalo,1395595945 +147922,1513,Lisa Kudrow,1395595975 +147922,1513,Mira Sorvino,1395595968 +147922,1513,reunion,1395595994 +147922,1552,explosions,1378576771 +147922,1552,John Cusack,1378576754 +147922,1552,John Malkovich,1378576746 +147922,1552,Nicolas Cage,1378576737 +147922,1552,Steve Buscemi,1378576757 +147922,1653,dystopia,1407718093 +147922,1653,Ethan Hawke,1407718090 +147922,1653,sci-fi,1407718096 +147922,1653,social commentary,1407718106 +147922,1653,thought-provoking,1407718102 +147922,1653,Uma Thurman,1407718098 +147922,1836,dry humor,1412647526 +147922,1911,Animals Talking,1374795361 +147922,1911,Eddie Murphy,1374795358 +147922,1911,sad,1374795379 +147922,1911,turd,1374795381 +147922,2130,Burt Lancaster,1380389973 +147922,2130,Louis Malle,1380389941 +147922,2130,Susan Sarandon,1380389912 +147922,2132,based on a play,1373750106 +147922,2132,Elizabeth Taylor,1373750066 +147922,2132,great performances,1373750127 +147922,2132,psychological,1373750134 +147922,2132,Richard Burton,1373750071 +147922,2160,Antichrist,1374998987 +147922,2160,child birth,1374999048 +147922,2160,demons,1374999035 +147922,2160,Dream Sequence,1374999040 +147922,2160,dreamlike,1374999013 +147922,2160,occult,1374998985 +147922,2160,paranoia,1374998978 +147922,2160,religion,1374998981 +147922,2160,satanism,1374998974 +147922,2160,suspense,1374998976 +147922,2160,WITCHCRAFT,1374998971 +147922,2181,Alfred Hitchcock,1381681866 +147922,2181,Bernard Herrmann,1381681840 +147922,2181,dishonesty,1381681898 +147922,2181,romance,1381681917 +147922,2181,Sean Connery,1381681878 +147922,2181,Tippi Hedren,1381681963 +147922,2183,adventure,1381681288 +147922,2183,Alfred Hitchcock,1381680991 +147922,2183,Bernard Herrmann,1381680975 +147922,2183,cinematography,1381681344 +147922,2183,Doris Day,1396121958 +147922,2183,James Stewart,1396121973 +147922,2183,kidnapping,1381681385 +147922,2183,Morocco,1381681086 +147922,2183,thriller,1381681161 +147922,2268,ensemble cast,1374372004 +147922,2268,great performances,1374372001 +147922,2268,Jack Nicholson,1374371992 +147922,2268,Tom Cruise,1374371995 +147922,2488,British,1374782486 +147922,2488,child abuse,1374782412 +147922,2488,Criterion,1374782415 +147922,2488,disturbing,1374782526 +147922,2488,Karlheinz Boehm,1374782518 +147922,2488,Michael Powell,1374782421 +147922,2488,photography,1374782556 +147922,2488,serial killer,1374782530 +147922,2488,television,1374782569 +147922,2488,voyeurism,1374782424 +147922,2529,AFI 100 (Movie Quotes),1374999346 +147922,2529,far future,1374999337 +147922,2529,National Film Registry,1374999356 +147922,2529,original,1374999335 +147922,2529,post-apocalyptic,1374999324 +147922,2529,science fiction,1374999326 +147922,2529,social commentary,1374999328 +147922,2529,violence,1374999359 +147922,2529,visually appealing,1374999361 +147922,2686,beautiful music,1374999236 +147922,2686,beautifully filmed,1374999239 +147922,2686,child prodigy,1374999260 +147922,2686,John Corigliano,1374999217 +147922,2686,Joshua Bell,1374999185 +147922,2686,multinational settings,1374999245 +147922,2686,Samuel L. Jackson,1374999231 +147922,2700,censorship,1373750946 +147922,2700,controversial,1373750941 +147922,2700,irreverent,1373750901 +147922,2700,Matt Stone,1373750780 +147922,2700,musical,1373750793 +147922,2700,Oscar Nominee: Best Song,1373750891 +147922,2700,parody,1373750764 +147922,2700,satire,1373750767 +147922,2700,seen more than once,1373750791 +147922,2700,Trey Parker,1373750787 +147922,2700,war,1373750931 +147922,2712,Christmas,1374347577 +147922,2712,dreamlike,1374347490 +147922,2712,husband-wife relationship,1374347698 +147922,2712,infidelity,1374347551 +147922,2712,Nicole Kidman,1374347494 +147922,2712,notable soundtrack,1374347608 +147922,2712,paranoia,1374347513 +147922,2712,sexuality,1374347568 +147922,2712,socioeconomic status,1374347727 +147922,2712,Stanley Kubrick,1374347492 +147922,2712,Tom Cruise,1374347495 +147922,2712,voyeurism,1374347499 +147922,2728,homosexual undertones,1373750573 +147922,2728,Kirk Douglas,1373750505 +147922,2728,Oscar (Best Cinematography),1373750549 +147922,2728,romance,1373750703 +147922,2728,Stanley Kubrick,1373750491 +147922,2877,cameos,1420999415 +147922,2877,Rock Opera,1420999393 +147922,2877,Roger Daltrey,1420999390 +147922,2877,The Who,1420999430 +147922,2936,class issues,1399648958 +147922,2936,comedy,1399649015 +147922,2936,poverty,1399649042 +147922,2936,Preston Sturges,1399648969 +147922,2936,Veronica Lake,1399648985 +147922,2959,Brad Pitt,1413128348 +147922,2959,consumerism,1413128354 +147922,2959,Edward Norton,1413128344 +147922,2959,macho,1413128326 +147922,2997,Cameron Diaz,1397957165 +147922,2997,Catherine Keener,1397957192 +147922,2997,dark comedy,1397957094 +147922,2997,John Cusack,1397957091 +147922,2997,John Malkovich,1397957088 +147922,2997,marionettes,1397957084 +147922,2997,psychology,1397957155 +147922,2997,surrealism,1397957149 +147922,2997,thought-provoking,1397957152 +147922,3275,crime,1374795305 +147922,3275,macho,1374795295 +147922,3275,Mafia,1374795315 +147922,3275,organized crime,1374795300 +147922,3275,vengeance,1374795310 +147922,3300,sci-fi,1373751175 +147922,3300,suspense,1373751179 +147922,3418,Action,1413128808 +147922,3418,Brad Pitt,1413128752 +147922,3418,car chase,1413128755 +147922,3418,Geena Davis,1413128772 +147922,3418,rape,1413128758 +147922,3418,strong woman,1413128789 +147922,3418,Susan Sarandon,1413128765 +147922,3418,women,1413128791 +147922,3504,journalism,1373751459 +147922,3504,Peter Finch,1373751449 +147922,3504,prescient,1373751337 +147922,3504,The Media,1373751464 +147922,3545,bisexual,1378576115 +147922,3545,Bob Fosse,1378576226 +147922,3545,Dance,1378576199 +147922,3545,Joel Grey,1378576406 +147922,3545,Liza Minnelli,1378576235 +147922,3545,love triangles,1378576248 +147922,3545,musical,1378576148 +147922,3545,Nazi Germany,1378576183 +147922,3545,Oscar (Best Actress),1378576141 +147922,3545,Oscar (Best Cinematography),1378576132 +147922,3545,Oscar (Best Directing),1378576130 +147922,3546,child star,1373750466 +147922,3546,dark,1373750407 +147922,3546,Joan Crawford,1373750353 +147922,3546,Robert Aldrich,1373750435 +147922,3546,show business,1373750428 +147922,3546,sibling rivalry,1373750424 +147922,3646,comedy,1374795848 +147922,3646,fat suit,1374795832 +147922,3646,Martin Lawrence,1374795841 +147922,3676,atmospheric,1378576554 +147922,3676,cult film,1378576550 +147922,3676,dark,1378576560 +147922,3676,David Lynch,1378576522 +147922,3676,hallucinatory,1378576519 +147922,3736,American West,1396204903 +147922,3736,Billy Wilder,1396204746 +147922,3736,Criterion,1396205108 +147922,3736,ethics,1396204793 +147922,3736,journalism,1396204787 +147922,3736,Kirk Douglas,1396204733 +147922,3736,New Mexico,1396204763 +147922,3736,rubbernecking,1396205088 +147922,4011,Brad Pitt,1413128500 +147922,4011,Guy Ritchie,1413128503 +147922,4011,low-brow,1413128547 +147922,4011,macho,1413128508 +147922,4011,organized crime,1413128529 +147922,4037,bad acting,1389225555 +147922,4037,characters,1389225622 +147922,4037,confidence game,1389225617 +147922,4037,David Mamet,1389225560 +147922,4037,disappointingly predictable,1389225604 +147922,4037,plot twist,1389225666 +147922,4037,uncomplicated,1389225590 +147922,4274,Elizabeth Taylor,1389225370 +147922,4274,epic,1389225459 +147922,4274,Joseph L. Mankiewicz,1389225428 +147922,4274,Oscar (Best Cinematography),1389225384 +147922,4274,Rex Harrison,1389225436 +147922,4274,Richard Burton,1389225368 +147922,4274,score,1389225516 +147922,4274,sets,1389225399 +147922,4369,macho,1373751123 +147922,4369,no desire to see this,1373751096 +147922,4369,Paul Walker,1373751103 +147922,4369,stupid,1373751107 +147922,4369,Vin Diesel,1373751105 +147922,4436,architecture,1381681628 +147922,4436,Bernard Herrmann,1381681692 +147922,4436,Brian De Palma,1381681728 +147922,4436,Cliff Robertson,1381681590 +147922,4436,greed,1381681674 +147922,4436,Italy,1381681610 +147922,4436,John Lithgow,1381681555 +147922,4436,New Orleans,1381681486 +147922,4436,slow paced,1381681529 +147922,4847,bad ending,1374788565 +147922,4847,bleak,1374788571 +147922,4847,child rape,1374788587 +147922,4847,cynical,1374788619 +147922,4920,Bette Davis,1413127802 +147922,4920,epic,1413127841 +147922,4920,overbearing mother,1413127941 +147922,4920,Paul Henreid,1413127926 +147922,4920,psychology,1413127827 +147922,4920,romance,1413127962 +147922,4920,self discovery,1413127883 +147922,5145,Czech,1404339648 +147922,5145,deadpan,1404339587 +147922,5145,Milos Forman,1404339585 +147922,5145,relationships,1404339623 +147922,5263,axe murderer,1413127121 +147922,5263,cover-up,1413127272 +147922,5263,Diane Baker,1413126839 +147922,5263,horror,1413127009 +147922,5263,insanity,1413127162 +147922,5263,Joan Crawford,1413126806 +147922,5263,mental illness,1413126936 +147922,5263,murder,1413126923 +147922,5263,psychiatry,1413127191 +147922,5263,sound effects,1413127242 +147922,5341,biographical,1377555335 +147922,5341,black and white,1377555301 +147922,5341,Bob Fosse,1377555331 +147922,5341,drug use,1377555358 +147922,5341,Dustin Hoffman,1377555369 +147922,5341,freedom of expression,1377555307 +147922,5341,Lenny Bruce,1377555364 +147922,5341,sexual repression,1377555347 +147922,5341,stand-up comedy,1377555327 +147922,6188,Andy Dick,1373751247 +147922,6188,fraternity,1373751212 +147922,6188,Jeremy Piven,1373751259 +147922,6188,not funny,1373751202 +147922,6188,Vince Vaughn,1373751222 +147922,6188,Will Ferrell,1373751224 +147922,6587,can't ever rate it - cuz I can't ever watch the whole thing,1378597142 +147922,6639,1960s,1373743365 +147922,6639,AFI 100 (Thrills),1373743330 +147922,6639,Alan Arkin,1373743348 +147922,6639,Audrey Hepburn,1373743344 +147922,6639,Bechdel Test:Pass,1373743353 +147922,6811,Jeremy Piven,1373751281 +147922,7318,based on a book,1373750969 +147922,7318,based on a myth,1373751023 +147922,7318,beautifully filmed,1373750984 +147922,7318,bloody,1373750991 +147922,7318,brutal,1373750993 +147922,7318,Christianity,1373750972 +147922,7318,magic,1373751014 +147922,7318,overrated,1373751036 +147922,7318,propaganda,1373751042 +147922,7318,religion,1373750998 +147922,7318,Sadistic,1373750975 +147922,7318,violent,1373750980 +147922,7817,70s sci-fi,1369189885 +147922,7817,cerebral,1369189930 +147922,7817,costumes,1369189836 +147922,7817,erotic,1369189769 +147922,7817,hallucinatory,1369189753 +147922,7817,Sean Connery,1369189789 +147922,7817,style,1369189981 +147922,8874,anti-hero,1374998828 +147922,8874,black comedy,1374998788 +147922,8874,british comedy,1374998798 +147922,8874,parody,1374998814 +147922,8874,zombies,1374998801 +147922,8914,Complicated,1375053793 +147922,8914,engineers,1375053808 +147922,8914,intellectual,1375053802 +147922,8914,intelligent,1375053800 +147922,8914,sci-fi,1375053798 +147922,8914,science fiction,1375053814 +147922,8914,time travel,1375053797 +147922,8917,foreign policy,1397956826 +147922,8917,hilarious,1397956866 +147922,8917,Kim Jong Il,1397956861 +147922,8917,marionettes,1397956894 +147922,8917,matt damon,1397956910 +147922,8917,Matt Stone,1397956872 +147922,8917,montage,1397956933 +147922,8917,musical,1397956958 +147922,8917,political commentary,1397956965 +147922,8917,satire,1397956967 +147922,8917,soundtrack,1397956905 +147922,8917,Trey Parker,1397956874 +147922,26116,Agnes Moorehead,1391918248 +147922,26116,Bette Davis,1392590456 +147922,26116,blackmail,1391918367 +147922,26116,creepy,1391918449 +147922,26116,Grand Guignol,1391919025 +147922,26116,Louisiana,1391918301 +147922,26116,murder,1391918336 +147922,26116,Noir,1391918220 +147922,26116,Oliva de Havilland,1391918214 +147922,26116,psychological,1391918282 +147922,26116,Psychological horror,1391918282 +147922,26116,Robert Aldrich,1391918228 +147922,26219,Astrodome,1374629209 +147922,26219,birds,1374639202 +147922,26219,car racing,1374634550 +147922,26219,Houston,1374629191 +147922,26219,murder,1374629251 +147922,26219,Rene Auberjonois,1374629229 +147922,26219,Robert Altman,1374629187 +147922,26219,Shelley Duvall,1374629270 +147922,26219,strange,1374629201 +147922,27317,disturbing,1374786529 +147922,27317,torture,1374786544 +147922,27801,buddhism,1378596455 +147922,27801,fighting,1378596450 +147922,27801,martial arts,1378596444 +147922,27801,motorcycle,1378596453 +147922,27801,muay thai,1378596460 +147922,27801,thailand,1378596447 +147922,33166,Matt Dillon,1374795231 +147922,41014,cinematography,1380389863 +147922,47999,christian fundamentalism,1396205331 +147922,47999,horrifying (but not Horror genre),1396205314 +147922,51662,action,1407079341 +147922,51662,amazing photography,1407079404 +147922,51662,artistic,1407079350 +147922,51662,computer animation,1407079329 +147922,51662,forced,1407079357 +147922,51662,stylized,1407079346 +147922,51662,sword fight,1407079374 +147922,60069,dystopia,1373750177 +147922,60069,emotional,1373750200 +147922,60069,Future,1373750181 +147922,60069,Sci-Fi,1373750188 +147922,60069,social commentary,1373750190 +147922,60397,ABBA,1376161759 +147922,60397,Amanda Seyfried,1376161696 +147922,60397,based on a play,1376161702 +147922,60397,beach,1376161917 +147922,60397,broadway,1376161840 +147922,60397,Greece,1376161775 +147922,60397,Island,1376161837 +147922,60397,Meryl Streep,1376161768 +147922,60397,Musical,1376161766 +147922,60397,Paternity,1376161751 +147922,60397,Pierce Brosnan,1376161797 +147922,60397,Stellan Skarsgard,1376161890 +147922,60397,Wedding,1376161736 +147922,61323,Brad Pitt,1413128685 +147922,61323,dark humor,1413128718 +147922,61323,stupidity,1413128715 +147922,64957,Aging,1374790323 +147922,64957,Brad Pitt,1374790281 +147922,64957,Cate Blanchett,1374790352 +147922,64957,makes no sense,1413128628 +147922,64957,New Orleans,1374790291 +147922,65130,1950s,1374999095 +147922,65130,abortion,1374999061 +147922,65130,based on a book,1374999091 +147922,65130,being told the truth and not liking it,1374999086 +147922,65130,disillusionment,1374999144 +147922,65130,infidelity,1374999135 +147922,65130,Kate Winslet,1374999067 +147922,65130,Leonardo DiCaprio,1374999069 +147922,65130,life choices,1374999101 +147922,65130,life-work balance,1374999127 +147922,65130,marriage,1374999083 +147922,65130,Sam Mendes,1374999074 +147922,65130,satisfaction in life,1374999121 +147922,65130,the american dream,1374999122 +147922,68157,Brad Pitt,1369067407 +147922,68157,everybody dies,1374347378 +147922,68157,Nazis,1374347351 +147922,68157,Paris,1369067494 +147922,68157,Quentin Tarantino,1369067440 +147922,68157,revenge porn,1369067451 +147922,68157,soundtrack,1369067488 +147922,68157,torture,1369067500 +147922,68157,vengeance,1374347363 +147922,68157,violence,1369067436 +147922,72395,intense,1378651654 +147922,72395,over coming adversity,1378651642 +147922,72395,teen pregnancy,1378651661 +147922,74795,Left-Wing Propaganda,1408212329 +147922,74795,Propaganda,1408212337 +147922,74795,social commentary,1408212366 +147922,77561,audience intelligence underestimated,1378576914 +147922,77561,bad sequel,1378576941 +147922,77561,lack of character depth,1378576931 +147922,77561,Robert Downey Jr.,1378576894 +147922,77561,Scarlett Johansson,1378576899 +147922,79357,cinematography,1406388041 +147922,79357,divorce,1406388027 +147922,79357,interesting,1406388004 +147922,79357,Jared Leto,1406388181 +147922,79357,possibility,1406388216 +147922,79357,romance,1406388090 +147922,79357,Sarah Polley,1406388096 +147922,79357,sci-fi,1406388045 +147922,79357,Toby Regbo,1406388132 +147922,79357,unpredictable,1406388013 +147922,90531,bleak,1374998892 +147922,90531,child abuse,1374998932 +147922,90531,Michael Fassbender,1374998897 +147922,90531,New York City,1374998899 +147922,90531,self-destruction,1374998885 +147922,91094,Amy Adams,1374639429 +147922,91094,Jason Segel,1374639423 +147922,91094,muppets,1374639443 +147922,91094,music,1374639453 +147922,91094,musical,1374639447 +147922,91094,Walter,1374639483 +147922,91094,weak plot,1374639437 +147922,94864,bad acting,1368817949 +147922,94864,bad science,1398027611 +147922,94864,Charlize Theron,1368817967 +147922,94864,dialogue,1368818051 +147922,94864,intelligent,1398027715 +147922,94864,Michael Fassbender,1368818148 +147922,94864,plot holes,1398027891 +147922,94864,predictable,1368817925 +147922,94864,pseudo-philosophical,1398027932 +147922,94864,religion,1368817927 +147922,94864,Ridley Scott,1398027750 +147922,94864,space jockeys,1398027728 +147922,94864,space travel,1368817910 +147922,94864,special effects,1368818028 +147922,96941,not good,1374795783 +147922,96941,politics,1374795777 +147922,96941,US President,1374795779 +147922,96941,worse than Michael Moore,1374795771 +147922,99917,artistic,1389225272 +147922,99917,breaking cycles,1389225311 +147922,99917,sci-fi,1389225251 +147922,99917,Shane Carruth,1389225258 +147922,99917,strong female lead,1389225263 +147922,99917,Thoreau,1389225266 +147922,99917,Walden,1389225268 +147922,104975,few primary sources,1380405381 +147922,104975,overdramatization,1380405501 +147922,104975,soundtrack,1380405350 +147922,105504,Barkhad Abdi,1408212133 +147922,105504,merchant marine,1408212173 +147922,105504,poverty,1408211889 +147922,105504,Somalia,1408211884 +147922,105504,suspense,1408212009 +147922,105504,Tom Hanks,1408211878 +147922,105504,true story,1408211881 +147922,105504,US Navy,1408211949 +147922,106739,campy,1420999350 +147922,106739,one liners,1398639927 +147922,106739,revenge,1420999350 +147922,106739,ridiculous,1398639943 +147922,106739,Turkey,1398639948 +147922,106739,turkey's voice,1398639973 +147922,108778,Alain Guiraudie,1412646994 +147922,108778,cinematography,1412646959 +147922,108778,cruising,1412647043 +147922,108778,explicit,1412647172 +147922,108778,men,1412647111 +147922,108778,murder,1412647121 +147922,108778,suspense,1412647131 +147922,109487,corn,1418518374 +147922,109487,end of the world,1418518004 +147922,109487,Matthew McConaughey,1418517636 +147922,109487,science fiction,1418517655 +147922,109487,space,1418517641 +147922,109487,time travel,1418517646 +147922,121545,Franz Liszt,1422152732 +147922,121545,irreverent,1420999194 +147922,121545,Ken Russell,1420999225 +147922,121545,musical,1420999192 +147922,121545,rock opera,1422152723 +147922,121545,Roger Daltrey,1420999207 +147942,296,cult film,1430145790 +147942,296,John Travolta,1430145797 +147942,296,non-linear,1430145774 +147942,296,Uma Thurman,1430145798 +147942,555,Christian Slater,1430145747 +147942,555,Christopher Walken,1430145750 +147942,555,Quentin Tarantino,1430145742 +147942,555,romance,1430145739 +147942,555,violent,1430145731 +147942,2571,cyberpunk,1430145887 +147942,2571,hackers,1430145892 +147942,2571,martial arts,1430145902 +147942,116797,biopic,1430145867 +147942,116797,boring,1430145867 +147942,116797,misses the point,1430145867 +147947,260,galactic,1430624560 +147947,260,space,1430624581 +147955,2959,Edward Norton,1366561341 +147955,8914,clever,1361371430 +147955,8914,complicated plot,1361371421 +147955,8914,disturbing,1361371446 +147955,8914,indie,1361371448 +147955,8914,mindfuck,1361371426 +147955,8914,physics,1361371429 +147955,8914,science,1361371428 +147971,260,classic sci-fi,1443713419 +147971,260,futuristic,1443713438 +147979,3863,nbnbn,1313740558 +148009,260,hero's journey,1434488106 +148009,260,space,1434488092 +148042,2692,Amazing kung fu,1141001533 +148070,356,best screenplay,1432645408 +148070,356,captivating,1432645408 +148070,356,direction,1432645408 +148116,27790,great movie about saints,1138135678 +148116,36401,interesting idea had great potential,1138135739 +148117,260,good for pre-teens,1439833326 +148118,260,classic sci-fi,1437596488 +148118,260,good vs evil,1437596493 +148127,436,sex scenes,1281684837 +148127,436,split personality,1281684813 +148127,5612,acting,1281529559 +148127,5612,Action Scenes,1281529399 +148127,5612,child in peril,1281529553 +148127,5612,Courtney Love,1281529399 +148127,5612,crime gone awry,1281529519 +148127,5612,exciting,1281529567 +148127,5612,fun movie,1281529340 +148127,5612,predictable,1281529534 +148127,5612,stuart townsend,1281529399 +148127,5612,suspense,1281529340 +148127,5612,suspenseful,1281529340 +148127,5612,tense,1281529490 +148127,5612,thrilling,1281529490 +148127,6323,appealing,1281528928 +148127,6323,confusing,1281529101 +148127,6323,dark,1281528928 +148127,6323,surreal,1281529239 +148127,6323,survival,1281528928 +148127,6323,suspense,1281529239 +148127,6323,suspenseful,1281529239 +148127,6323,unbelievable,1281529101 +148127,71057,creepy,1281529002 +148127,71057,dark,1281529002 +148127,71057,surreal,1281529237 +148127,71057,suspenseful,1281529237 +148127,71057,twist ending,1281529002 +148146,29,weird,1368477444 +148146,32,great ending,1368477664 +148146,32,original,1368475395 +148146,47,great ending,1368477664 +148146,50,great acting,1368477498 +148146,50,storytelling,1368476950 +148146,70,cult classic,1368477545 +148146,111,loneliness,1368477292 +148146,150,dramatic,1368477374 +148146,169,family,1368477623 +148146,193,NC-17,1191081146 +148146,204,action,1368477396 +148146,232,relationships,1368477423 +148146,296,storytelling,1368476950 +148146,318,great acting,1368477498 +148146,318,great ending,1368477664 +148146,446,gay,1260911446 +148146,446,homosexuality,1260911455 +148146,455,family,1368477623 +148146,508,dramatic,1368477374 +148146,508,homosexual theme,1260911820 +148146,559,NC-17,1191081061 +148146,593,great acting,1368477498 +148146,804,relationships,1368477423 +148146,858,great acting,1368477498 +148146,858,oscar (best directing),1368477329 +148146,913,talky,1368477684 +148146,922,talky,1368477684 +148146,971,talky,1368477684 +148146,1015,family,1368477623 +148146,1016,family,1368477623 +148146,1172,mentor,1368475460 +148146,1173,NC-17,1191080416 +148146,1175,weird,1368477444 +148146,1190,NC-17,1191080521 +148146,1199,cerebral,1368477735 +148146,1199,visually appealing,1368477471 +148146,1199,weird,1368477444 +148146,1241,cult classic,1368477545 +148146,1248,criterion,1368477262 +148146,1255,cult classic,1368477545 +148146,1260,talky,1368477684 +148146,1281,talky,1368477684 +148146,1299,dramatic,1368477374 +148146,1307,relationships,1368477423 +148146,1466,mentor,1368475460 +148146,1483,NC-17,1191080951 +148146,1527,visually appealing,1368477471 +148146,1552,action,1368477396 +148146,1608,action,1368477396 +148146,1617,great acting,1368477498 +148146,1623,horror,1368477584 +148146,1639,relationships,1368477423 +148146,1704,mentor,1368475460 +148146,1722,action,1368477396 +148146,1748,cerebral,1368477735 +148146,1991,horror,1368477584 +148146,2076,weird,1368477444 +148146,2108,story,1368477707 +148146,2167,action,1368477396 +148146,2262,relationships,1368477423 +148146,2291,original,1368475395 +148146,2315,horror,1368477585 +148146,2335,comedy,1368475477 +148146,2355,story,1368477707 +148146,2371,comedy,1368475477 +148146,2394,story,1368477706 +148146,2420,mentor,1368475460 +148146,2460,horror,1368477585 +148146,2762,great ending,1368477664 +148146,2858,great acting,1368477498 +148146,3006,dramatic,1368477374 +148146,3018,horror,1368477585 +148146,3067,spanish farce,1211810128 +148146,3070,cult classic,1368477545 +148146,3157,family,1368477623 +148146,3218,NC-17,1191081088 +148146,3266,NC-17,1191080887 +148146,3281,homosexuality,1263356638 +148146,3421,comedy,1368475477 +148146,3462,talky,1368477684 +148146,3547,gay,1260912155 +148146,3740,cult classic,1368477545 +148146,3986,action,1368477396 +148146,3994,storytelling,1368476950 +148146,4085,comedy,1368475477 +148146,4128,cult classic,1368477545 +148146,4142,evangelical christian trash,1263356937 +148146,4142,propaganda,1263356894 +148146,4226,storytelling,1368476950 +148146,4725,horror,1368477585 +148146,4848,visually appealing,1368477471 +148146,4878,cerebral,1368477735 +148146,4878,original,1368475396 +148146,4878,weird,1368477444 +148146,5452,family,1368477622 +148146,5832,evangelical christian trash,1263357021 +148146,5832,propaganda,1263356955 +148146,5878,loneliness,1368477292 +148146,5945,loneliness,1368477292 +148146,5995,dramatic,1368477374 +148146,6188,comedy,1368475477 +148146,6787,story,1368477706 +148146,6801,spanish farce,1185135134 +148146,7011,NC-17,1191080546 +148146,7125,gay,1260912123 +148146,7147,story,1368477706 +148146,7265,NC-17,1191080394 +148146,7318,propaganda,1263357468 +148146,7327,criterion,1368477262 +148146,7438,storytelling,1368476950 +148146,7474,groundbreaking,1260911232 +148146,7474,Homosexuality,1260911174 +148146,7487,NC-17,1191080909 +148146,7918,Nudity (Full Frontal),1263361528 +148146,8421,spanish farce,1211810081 +148146,8641,comedy,1368475477 +148146,8873,doesn't change the fact that Che slaughtered a plethora of Cubans,1351121978 +148146,8966,homosexuality,1260911467 +148146,8973,NC-17,1191081307 +148146,8981,relationships,1368477423 +148146,26599,male nudity,1260912027 +148146,26599,NC-17,1191081283 +148146,26599,transsexuals,1260912035 +148146,27899,propaganda,1263357435 +148146,32587,storytelling,1368476950 +148146,33171,male nudity,1260911320 +148146,33603,gay marriage,1263356596 +148146,33603,homosexuality,1263356586 +148146,37720,(not really) a true story,1263358100 +148146,37729,visually appealing,1368477471 +148146,39408,evangelical christian trash,1263357050 +148146,39408,propaganda,1263357034 +148146,47808,mumblecore,1243019085 +148146,48543,easily confused with other movie(s) (title),1263356224 +148146,48698,corruption,1263357998 +148146,48698,coverup,1263357998 +148146,48698,the catholic church is the most corrupt organization in history,1263357998 +148146,50872,story,1368477706 +148146,55253,NC-17,1191080354 +148146,59295,evangelical christian trash,1263357151 +148146,59295,propaganda,1263357137 +148146,60684,visually appealing,1368477471 +148146,61646,gay,1260911933 +148146,64114,evangelical christian trash,1263357790 +148146,79132,cerebral,1368477735 +148174,260,Science Fiction,1435230696 +148174,260,space,1435230681 +148199,2657,cult classic,1445608042 +148199,2657,Susan Sarandon,1445608039 +148199,2657,Sweet Transvestite,1445608060 +148199,2657,Tim Curry,1445608034 +148207,3255,baseball,1197130392 +148218,110,medieval,1286977052 +148218,296,dark comedy,1286977055 +148242,260,"action, scifi",1443673676 +148242,260,sci-fi,1444776207 +148242,260,space adventure,1443673683 +148267,92259,emotional,1441629177 +148267,92259,friendship,1441629167 +148273,1101,aviation,1440943993 +148273,1101,Oscar Winner,1440943999 +148273,69481,intense,1440943914 +148273,69481,thriller,1440943902 +148291,1006,author:John Grisham,1276950048 +148291,1220,comedy,1276894111 +148291,1220,great soundtrack,1276894103 +148291,1220,musical,1276894113 +148291,1220,notable soundtrack,1276894097 +148291,3113,apocalypse,1276893907 +148291,3113,Arnold Schwarzenegger,1276893916 +148291,3113,Gabriel Byrne,1276893928 +148291,3113,Nudity (Topless),1276893921 +148291,3113,stylized,1276893930 +148291,4326,Gene Hackman,1276950172 +148291,4326,Willem Dafoe,1276950180 +148291,7022,dystopia,1276894144 +148291,7022,satire,1276894139 +148291,7022,surveillance,1276894149 +148291,26915,goofy,1276893866 +148291,26915,irreverent,1276893878 +148291,26915,Troma,1276893872 +148291,58376,Biased,1276894071 +148291,58376,Bullshit,1276894024 +148291,58376,inaccurate,1276894049 +148291,58376,Lies,1276894056 +148291,58376,Pretentious,1276894037 +148291,60832,dark,1276893963 +148291,60832,Nudity (Topless),1276893976 +148291,60832,twists & turns,1276893970 +148291,68237,dystopia,1276894180 +148291,68237,psychology,1276894177 +148291,68237,solitude,1276894192 +148315,4034,not memorable,1153919371 +148328,2953,devito,1185894931 +148328,2953,funny,1185894932 +148328,2953,New York,1185894932 +148328,4367,angelina jolie,1185894984 +148328,4367,Interesting,1185894984 +148339,296,aggressive,1424643259 +148339,296,quirky,1424643259 +148339,296,well written and structured,1424643259 +148339,1288,under played,1403393969 +148339,59369,lack of perspective,1408307006 +148339,59369,predictable,1408307009 +148339,59369,Primal revenge,1408307008 +148339,91976,intense,1409437173 +148339,97306,atmospheric,1406586315 +148339,97306,bad guy motive,1406586315 +148339,97306,Colin Farrell,1406586315 +148339,97306,edgy,1406586315 +148339,97306,metafilm,1406586315 +148339,97306,movie about a movie,1406586344 +148339,97306,paced,1406586315 +148339,97306,Woody Harrelson,1406586315 +148339,97938,modern christianity,1407192315 +148339,97938,soft-edged,1407192345 +148339,97938,visually captivating,1407192359 +148339,101680,bad plot. senseless,1407624104 +148339,101680,Jim Carrey,1407624110 +148339,101680,jimcarrey-on fire,1407624130 +148339,101680,setting,1407624108 +148339,101680,young jim carrey,1407624146 +148339,103736,good pacing,1409436994 +148339,103736,great acting,1409436995 +148339,103736,weak ending,1409436992 +148339,114670,crazy,1418346145 +148339,114670,crime,1418346115 +148339,114670,dark humor,1418346106 +148339,114670,great pace,1418346125 +148339,114670,horror,1418346109 +148339,114670,justin long,1418346129 +148339,114670,surprising,1418346092 +148339,114670,well written,1418346099 +148352,22,detective,1368260455 +148352,32,great ending,1368260327 +148352,47,great ending,1368260327 +148352,218,women,1368259774 +148352,288,brutality,1368260094 +148352,296,masterpiece,1368259346 +148352,318,great ending,1368260326 +148352,549,musicians,1368259885 +148352,904,suspenseful,1368260035 +148352,913,noir thriller,1368259147 +148352,924,masterpiece,1368259347 +148352,1219,suspenseful,1368260035 +148352,1245,neo-noir,1368260156 +148352,1258,masterpiece,1368259347 +148352,1537,dancing,1368260269 +148352,1617,detective,1368260455 +148352,1617,neo-noir,1368260156 +148352,1704,excellent script,1368259452 +148352,1704,mentor,1368259275 +148352,2076,neo-noir,1368260156 +148352,2291,original,1368258926 +148352,2542,stylish,1368259514 +148352,2762,great ending,1368260327 +148352,2858,excellent script,1368259452 +148352,2866,musicians,1368259884 +148352,2966,melancholic,1368258989 +148352,4020,supernatural,1368259400 +148352,4054,dancing,1368260269 +148352,4878,original,1368258926 +148352,5266,suspenseful,1368260035 +148352,6873,screwball comedy,1368260496 +148352,32587,brutality,1368260095 +148352,53123,musicians,1368259884 +148352,55167,based on manga,1306506656 +148352,55167,beautiful animation,1306506673 +148352,55167,manga,1306506665 +148352,55167,yakuza,1306506766 +148364,81591,have self-confidence,1433429292 +148364,81845,have self-confidence,1433429175 +148410,1732,black comedy,1421017713 +148410,1732,coen brothers,1421017705 +148410,1732,comedy,1421017728 +148410,1732,dark comedy,1421017707 +148410,1732,drugs,1421017752 +148410,1732,great dialogue,1421017746 +148410,1732,great soundtrack,1421017744 +148410,1732,Jeff Bridges,1421017720 +148410,1732,John Goodman,1421017734 +148410,1732,Philip Seymour Hoffman,1421017723 +148410,1732,satirical,1421017717 +148410,1732,Steve Buscemi,1421017737 +148410,1884,drugs,1421017676 +148410,1884,Johnny Depp,1421017649 +148410,1884,satirical,1421017656 +148410,1884,social commentary,1421017669 +148410,93855,dark comedy,1420991558 +148410,93855,ending,1420991581 +148410,93855,social comentary,1420991564 +148410,93855,social criticism,1420991568 +148410,93855,violence,1420991573 +148410,99114,Leonardo DiCaprio,1421017566 +148410,99114,Quentin Tarantino,1421017563 +148410,99114,Revenge,1421017580 +148410,99114,Samuel L. Jackson,1421017568 +148410,99114,violence,1421017572 +148410,103253,Bad ending,1421256300 +148410,103253,dystopia,1421254397 +148410,103253,future,1421254428 +148410,103253,Jodie Foster,1421254406 +148410,103253,Matt Damon,1421254409 +148410,103253,science fiction,1421254401 +148410,103253,shallow characters,1421254418 +148410,103253,Shallow heavy handed commentary,1421256345 +148410,103253,social commentary,1421254422 +148410,103253,Terrible fight choreography,1421256318 +148423,5853,creative,1415132660 +148438,260,adventure,1440307876 +148438,260,sci-fi,1440307866 +148438,260,science fantasy,1440307871 +148451,260,Scifi,1439759263 +148451,260,Space,1439759274 +148478,318,classic,1254376013 +148478,318,Stephen King,1254376018 +148478,2858,dark comedy,1254375939 +148478,2858,Oscar (Best Picture),1254375944 +148484,109869,Stephen Chow,1446996152 +148484,135779,Stephen Chow,1446996127 +148511,150,disaster,1428522226 +148511,150,History,1428522221 +148511,150,NASA,1428522218 +148511,150,space,1428522215 +148511,150,space program,1428522222 +148511,185,computers,1428522408 +148511,185,Sandra Bullock,1428522406 +148511,185,unrealistic,1428522415 +148511,292,biohazard,1428525039 +148511,292,epidemic,1428525045 +148511,292,medical,1428525030 +148511,357,British,1428523186 +148511,357,Comedy,1428523182 +148511,357,Hugh Grant,1428523178 +148511,357,nice,1428523204 +148511,357,wedding,1428523180 +148511,377,Don't get dead,1428522344 +148511,377,predictable plot,1428522362 +148511,377,Sandra Bullock,1428522337 +148511,454,John Grisham,1428522618 +148511,454,tense,1428522608 +148511,454,thriller,1428522614 +148511,904,Alfred Hitchcock,1428522721 +148511,904,Grace Kelly,1428522738 +148511,904,mystery,1428522715 +148511,904,noir thriller,1428522736 +148511,904,suspense,1428522713 +148511,904,suspenseful,1428522732 +148511,904,tense,1428522730 +148511,904,thriller,1428522726 +148511,924,artificial intelligence,1428525611 +148511,924,computer,1428525628 +148511,924,robots,1428525617 +148511,924,soundtrack,1428525619 +148511,1080,controversial,1428522102 +148511,1080,Monty Python,1428522094 +148511,1080,satire,1428522099 +148511,1092,Erotic,1428525705 +148511,1092,Erotic Thriller,1428525717 +148511,1092,Notable Nudity,1428525715 +148511,1092,Sex,1428525721 +148511,1092,Sexualized violence,1428525719 +148511,1092,Sharon Stone,1428525709 +148511,1092,suspense,1428525711 +148511,1092,thriller,1428525707 +148511,1213,Joe Pesci,1428520063 +148511,1213,mafia,1428520047 +148511,1213,organized crime,1428520055 +148511,1213,robert de niro,1428520053 +148511,1213,Samuel L. Jackson,1428520074 +148511,1213,stylish,1428520079 +148511,1213,violence,1428520058 +148511,1219,classic,1428522677 +148511,1219,suspense,1428522682 +148511,1219,suspenseful,1428522674 +148511,1219,tense,1428522687 +148511,1219,thriller,1428522686 +148511,1221,Al Pacino,1428520132 +148511,1221,Mafia,1428520135 +148511,1265,Bill Murray,1428524870 +148511,1265,funny,1428524858 +148511,1265,hilarious,1428524852 +148511,1265,surreal,1428524849 +148511,1265,time loop,1428524868 +148511,1416,Andrew Lloyd Weber,1428520302 +148511,1416,Antonio Banderas,1428520323 +148511,1416,Argentina,1428520333 +148511,1416,history,1428520337 +148511,1416,Madonna,1428520329 +148511,1416,musical,1428520338 +148511,1464,mystery,1428940916 +148511,1464,nonlinear,1428940920 +148511,1464,Nudity (Topless),1428940914 +148511,1464,surreal,1428940913 +148511,1556,predictable,1428522498 +148511,1556,Sandra Bullock,1428522482 +148511,1556,unrealistic,1428522497 +148511,1689,funny,1428524937 +148511,1689,hilarious,1428524939 +148511,1689,spies,1428524931 +148511,2671,British,1428523219 +148511,2671,England,1428523223 +148511,2671,Hugh Grant,1428523217 +148511,2671,Julia Roberts,1428523221 +148511,2671,predictable,1428523226 +148511,2712,Nudity (Full Frontal - Notable),1428940867 +148511,2712,Nudity (Full Frontal),1428940873 +148511,2712,sexual,1428940863 +148511,2712,sexuality,1428940858 +148511,2712,voyeurism,1428940861 +148511,3015,medical thriller,1428522647 +148511,3015,tense,1428522640 +148511,3015,thriller,1428522652 +148511,3252,Al Pacino,1428525753 +148511,3252,beautiful music,1428525797 +148511,3252,great acting,1428525760 +148511,3252,humour,1428525770 +148511,3252,tango,1428525791 +148511,4308,musical,1428520402 +148511,4308,Nicole Kidman,1428520395 +148511,4308,sexuality,1428520410 +148511,4308,Sexualized violence,1428520399 +148511,4308,visually stunning,1428520416 +148511,4529,great songs,1428525176 +148511,4529,musical,1428525164 +148511,4848,Enigmatic,1428940944 +148511,4848,mystery,1428940941 +148511,4848,surreal,1428940936 +148511,5872,james bond,1428520907 +148511,5872,madonna,1428520919 +148511,5995,holocaust,1428522887 +148511,5995,Nazis,1428522901 +148511,5995,Poland,1428522898 +148511,5995,World War II,1428522890 +148511,6235,holocaust,1428522931 +148511,6235,Jews,1428522943 +148511,6235,World War II,1428522925 +148511,6874,nonlinear,1428521310 +148511,6874,Quentin Tarantino,1428521313 +148511,6942,boring,1428523269 +148511,6942,british,1428523252 +148511,6942,christmas,1428523275 +148511,6942,Keira Knightley,1428523256 +148511,6942,predictable,1428523261 +148511,6979,artificial intelligence,1428522032 +148511,6979,Cold War,1428522030 +148511,6979,computers,1428522028 +148511,6979,NORAD,1428522048 +148511,6979,nuclear war,1428522035 +148511,7060,Andrew Lloyd Webber,1428521480 +148511,7060,great soundtrack,1428521472 +148511,7060,jesus,1428521348 +148511,7060,jews,1428521365 +148511,7060,Rock Opera,1428521475 +148511,7153,epic adventure,1428523047 +148511,7153,fantasy,1428523028 +148511,7153,great soundtrack,1428523051 +148511,7153,magic,1428523034 +148511,7153,oscar (best cinematography),1428523041 +148511,7318,bloody,1428525204 +148511,7318,brutal,1428525210 +148511,7318,Christianity,1428525202 +148511,7318,jesus,1428525197 +148511,7318,religion,1428525200 +148511,7570,007,1428520648 +148511,7570,james bond,1428520644 +148511,7570,Roger Moore,1428520646 +148511,30816,Andrew Lloyd Webber,1428520363 +148511,30816,great music,1428520380 +148511,30816,Musical,1428520365 +148511,30816,playwright:Andrew Lloyd Webber,1428520371 +148511,30816,visually appealing,1428520367 +148511,44555,suspense,1428524794 +148511,49649,cliche,1428522540 +148511,49649,dragons,1428522536 +148511,49649,fantasy,1428522547 +148511,49649,predictable,1428522543 +148511,51372,Andrew Lloyd Webber,1428520203 +148511,51372,cats,1428520208 +148511,51372,musical,1428520182 +148511,51662,boring,1428525440 +148511,73000,beautiful actress,1428520247 +148511,73000,music,1428520259 +148511,73000,sexy girls,1428520269 +148511,90439,bad dialogue,1428525876 +148511,90439,Wall Street,1428525857 +148511,91094,muppets,1428522170 +148511,91094,musical,1428522176 +148511,96079,spies,1428521878 +148511,98809,fantasy,1428523329 +148511,98809,fantasy world,1428523327 +148511,99114,brutal,1428523107 +148511,99114,Christoph Waltz,1428523116 +148511,99114,funny,1428523114 +148511,99114,Humour,1428523110 +148511,99114,Quentin Tarantino,1428523098 +148511,99114,Revenge,1428523118 +148511,99114,slavery,1428523104 +148511,103984,bohemian life,1428521956 +148511,103984,boring,1428520600 +148511,103984,high society,1428521956 +148511,103984,non-linear,1428521956 +148511,103984,strange,1428520607 +148511,128518,strange,1428521751 +148513,260,interstellar war,1436779748 +148513,260,old school science fiction,1436779763 +148513,292,outbreak,1436781672 +148513,3082,007,1436780708 +148513,5219,disaster,1436781629 +148513,8168,classic,1436782451 +148513,8168,dick maas,1436782476 +148513,8168,dutch,1436782444 +148513,8168,horror,1436782448 +148513,8168,thriller,1436782446 +148513,8961,007-like,1436781732 +148513,26571,bad neighbours,1436782418 +148513,26571,classic,1436782355 +148513,26571,comedy,1436782358 +148513,26571,dutch,1436782353 +148537,1220,aretha franklin,1170283456 +148537,2709,king prawn,1170731894 +148537,2709,puppetry,1170731856 +148537,3479,rutger hauer,1173248686 +148537,3479,transformation,1173248703 +148537,6283,bazaar marketplace arabic beautiful music,1141600246 +148537,33162,islam,1173248641 +148537,33162,jerusalem,1173248641 +148537,33162,oneness of religions,1173248641 +148537,33162,religious tolerance,1173248641 +148537,45668,jane austen,1173248552 +148537,45668,love story,1173248552 +148537,45668,persuasion,1173248552 +148537,45668,time,1173248524 +148537,46976,visual pun,1170284173 +148537,48780,dark,1173248239 +148537,48780,David Bowie,1173248251 +148537,48780,ominous,1173248234 +148537,48780,Ricky Jay,1173248258 +148537,48780,tesla,1173248243 +148537,48982,Aardman,1173248123 +148537,48982,class,1173248152 +148537,48982,Dreamworks,1173248118 +148537,48982,london,1173248160 +148537,48982,rats,1173248173 +148537,48982,rich and poor,1173248181 +148539,260,sci-fi,1440854759 +148539,260,space,1440854767 +148568,67354,butterfly twinkle powder,1423950085 +148568,67354,campy,1423950085 +148568,67354,zombies,1423950085 +148577,318,inspirational,1435161608 +148577,318,thought-provoking,1435161616 +148577,8950,dark,1435162700 +148577,8950,psychological,1435162636 +148577,8950,psychology,1435162659 +148577,8950,twist ending,1435162691 +148577,74458,mindfuck,1435161553 +148577,74458,mystery,1435161537 +148577,74458,psychological,1435161541 +148578,63876,politics,1231734975 +148581,527,Holocaust,1176844822 +148581,6709,Salma Hayek,1176845153 +148613,7361,romance,1446982564 +148613,7361,sci-fi,1446982567 +148613,48082,Michel Gondry,1446982691 +148613,48082,surreal,1446982695 +148613,64957,Brad Pitt,1446982497 +148613,104374,time travel,1446982634 +148613,106918,Iceland,1446982454 +148613,106918,imagination,1446982455 +148613,106918,inspirational,1446982448 +148613,106918,visually appealing,1446982451 +148616,260,cult classic,1430371569 +148616,260,sci fi,1430371564 +148673,260,star,1435201050 +148673,60827,beauty,1435202471 +148673,117362,love,1435201386 +148701,260,sci-fi,1436142652 +148701,260,space opera,1436142659 +148701,120813,comedy,1437119008 +148701,120813,dark comedy,1437119008 +148701,120813,stand up,1437119008 +148701,128366,biographical,1438527036 +148701,128366,comedy,1438527036 +148701,128366,stand-up comedy,1438527036 +148701,135456,anime,1437809112 +148701,135456,dystopia,1437809112 +148701,135456,sci-fi,1437809112 +148729,43921,depressing,1283015153 +148729,50601,sad,1282958084 +148746,2843,Emir Kusturica,1307468649 +148746,2843,kusturica,1307468643 +148746,4896,based on a book,1311951912 +148746,4896,Children,1311951891 +148746,4896,good versus evil,1311951905 +148746,4896,humorous,1311951899 +148746,5816,harry potter,1311951612 +148746,5816,magic,1311951616 +148746,8368,Gary Oldman,1313771041 +148746,8368,idealistic,1313771035 +148746,8368,magic,1313771044 +148746,8368,time travel,1313771056 +148746,8368,werewolf,1313771032 +148746,8644,action,1305661480 +148746,8644,android(s)/cyborg(s),1305661460 +148746,8644,Dynamic CGI Action,1305661450 +148746,8644,futuristic,1305661470 +148746,8644,Isaac Asimov,1305661486 +148746,8644,robots,1305661456 +148746,8644,sci-fi,1305661442 +148746,8644,Will Smith,1305661429 +148746,40815,adventure,1313770878 +148746,40815,dance,1313770865 +148746,40815,dark,1313770889 +148746,40815,fantasy,1313770871 +148746,40815,harry potter,1313770881 +148746,42738,action,1305736224 +148746,42738,dark fantasy,1305736218 +148746,42738,gothic,1305736211 +148746,42738,heroine in tight suit,1305736203 +148746,42738,Kate Beckinsale,1305736236 +148746,42738,Nudity (Topless),1305736195 +148746,42738,vampires,1305736188 +148746,42738,werewolves,1305736191 +148746,45499,Action,1305661518 +148746,45499,big budget,1305661557 +148746,45499,disability,1305661543 +148746,45499,Dynamic CGI Action,1305661540 +148746,45499,genetics,1305661548 +148746,45499,Marvel,1305661528 +148746,45499,mutants,1305661514 +148746,45499,politics,1305661534 +148746,54001,Emma Watson,1311951773 +148746,54001,harry potter,1311951771 +148746,60040,adapted from:comic,1305661643 +148746,60040,bad cgi,1305661611 +148746,60040,bad sequel,1305661626 +148746,60040,Below R,1305661662 +148746,60040,comic book,1305661666 +148746,60040,Dynamic CGI Action,1305661649 +148746,60040,facepalm,1305661619 +148746,60040,superhero,1305661631 +148746,60040,The Avengers,1305661657 +148746,60072,action,1307398503 +148746,60072,assassin,1307398504 +148746,60072,assassin-in-training,1307398523 +148746,60072,plot twist,1307398506 +148746,60072,stylized violence,1307398511 +148746,60072,Walked out/didn't finish,1307398529 +148746,65672,Golden Bear (Best Film),1313770946 +148746,68319,action,1305661732 +148746,68319,bad plot,1305661715 +148746,68319,cheesy,1305661713 +148746,68319,franchise,1305661745 +148746,68319,hugh jackman,1305661727 +148746,68319,Marvel,1305661721 +148746,68319,sci-fi,1305661723 +148746,68319,sequel,1305661741 +148746,68319,superhero,1305661725 +148746,68319,too long,1305661737 +148746,69844,Alan Rickman,1313771173 +148746,69844,Comedy,1313771170 +148746,69844,disappointing,1313771159 +148746,69844,high school,1313771165 +148746,69844,romance,1313771162 +148746,80166,predictable ending,1306058754 +148746,81156,amazing stunts,1305661300 +148746,81156,crude humor,1305661302 +148746,81156,dick and fart humor,1305661335 +148746,81156,funny pranks,1305661307 +148746,81156,puking,1305661312 +148746,81156,Vulgarity,1305661318 +148746,85056,alien,1305661168 +148746,85056,superhero,1305661155 +148746,85056,supernatural,1305661163 +148746,85056,Timothy Olyphant,1305661178 +148749,319,cynical,1375311995 +148749,319,dark comedy,1375311999 +148749,319,Ewan McGregor,1375312036 +148749,319,music,1375312024 +148766,124841,eurospy,1421438071 +148766,124841,exploitation,1421438071 +148766,124841,secret agent,1421438071 +148771,6333,funny,1140839029 +148783,27846,capitalism,1450000005 +148797,260,classic,1442803866 +148797,260,sci-fi,1442803862 +148803,260,scifi harrisonford,1435095618 +148803,1193,nurse,1435095855 +148810,3400,scarring,1453761158 +148810,3400,traumatic,1453761170 +148810,65188,depressing,1449324027 +148810,65188,devastating,1449323846 +148810,65188,documentary,1449323927 +148810,65188,emotional,1449323860 +148810,65188,family bonds,1449324020 +148810,65188,harrowing,1449323899 +148810,65188,heartbreaking,1449323854 +148810,65188,intriguing,1449323890 +148810,65188,murder of a child,1449323905 +148810,65188,touching,1449324010 +148810,65188,true story,1449324016 +148810,77658,not a movie,1449587790 +148858,1206,dystopia,1416167374 +148858,1206,use of music,1416167356 +148885,16,Martin Scorsese,1237559297 +148885,47,twist ending,1237558827 +148885,216,Funniest Movies,1237559445 +148885,428,Robert De Niro,1237559434 +148885,527,based on a true story,1237558838 +148885,527,Oscar (Best Picture),1237558833 +148885,589,James Cameron,1237558787 +148885,1203,classic,1237559757 +148885,1213,dark comedy,1237559237 +148885,1213,mafia,1237559234 +148885,1259,coming of age,1237558807 +148885,1265,surreal,1237559228 +148885,1265,time travel,1237559226 +148885,1287,long,1237579669 +148885,1625,twist ending,1237559250 +148885,1923,sexual,1237558744 +148885,1968,high school,1237559441 +148885,2028,Steven Spielberg,1237559172 +148885,2329,Edward Norton,1237559316 +148885,2502,cult film,1237559195 +148885,2795,classic comedy,1237579629 +148885,2959,Edward Norton,1237559257 +148885,3252,Al Pacino,1237558846 +148885,3252,Oscar (Best Actor),1237558844 +148885,3271,based on a book,1237559203 +148885,4262,Al Pacino,1237558850 +148885,4776,denzel washington,1237558709 +148885,4776,Oscar (Best Actor),1237558703 +148885,4975,surreal,1237558757 +148885,4975,Tom Cruise,1237558664 +148885,5014,sean penn,1237559387 +148885,6016,based on a book,1237559425 +148885,7153,Oscar (Best Picture),1237559218 +148885,8784,coming of age,1237559243 +148885,8784,psychology,1237559241 +148885,55765,based on a true story,1237559451 +148885,60069,Pixar animation,1237558653 +148885,61024,Stoner Movie,1237559365 +148912,1097,Steven Spielberg,1453147061 +148912,1302,father-son relationship,1453147079 +148912,3471,Steven Spielberg,1453147049 +148912,5502,atmospheric,1453146997 +148912,87306,child actor,1453147026 +148912,87306,cinematography,1453147030 +148912,87306,sci-fi,1453147021 +148912,87306,sweet,1453147032 +148914,260,sci-fi,1433493770 +148914,260,space action,1433493791 +148931,260,:),1434138575 +148931,260,oldie but goodie,1434138586 +148952,1201,spaghetti western,1434638930 +148952,1213,good dialogue,1434638620 +148952,1213,mafia,1434638622 +148952,1213,soundtrack,1434638607 +148952,115617,asian culture,1434638692 +148952,115617,comic book,1434638692 +148952,115617,nano-technology,1434638692 +148978,4903,drama,1439220081 +148978,6870,drama,1439220043 +148980,66762,Juliette Binoche,1335544839 +148980,66762,Netflix Streaming,1335544857 +148980,90866,child,1335406665 +148980,90866,orphans,1335406690 +148980,90866,paris,1335406676 +148980,90866,unreal,1335406657 +148980,91500,ending,1335543706 +148980,91500,love,1335543724 +149027,260,Jedi,1431804461 +149027,260,Zoomm,1431804419 +149035,6,individualism,1257461385 +149035,6,realistic,1257461370 +149035,16,masterpiece,1199432056 +149035,16,violent,1257461287 +149035,101,SIBLING RELATIONSHIPS,1257461260 +149035,104,you're gonna die clown,1257461647 +149035,250,nostalgic,1201810060 +149035,364,plagarized,1257460392 +149035,455,nostalgic,1201804479 +149035,673,nostalgic,1199428668 +149035,782,De Niro's downfall,1257460039 +149035,1015,nostalgic,1201807215 +149035,1100,Top Gun 2,1201760635 +149035,1221,Exceptional Acting,1257461335 +149035,1258,ghosts,1257458996 +149035,1258,Jack Nicholson,1257458982 +149035,1258,Stanley Kubrick,1257458985 +149035,1673,homage,1199500414 +149035,2042,knuckle puck time,1201805385 +149035,2496,die brendan frasier,1201804611 +149035,2791,absurd,1257461587 +149035,3006,corporations,1257461705 +149035,3006,Crisis of conscience,1257461699 +149035,3006,journalism,1257461726 +149035,3006,media,1257461729 +149035,3386,conspiracy theory,1257461428 +149035,3386,controversial,1257461432 +149035,3386,Oliver Stone,1257461450 +149035,3386,Oscar (Best Cinematography),1257461449 +149035,4247,fuck you it's funny,1257460016 +149035,4407,Frightening,1257458762 +149035,4407,James Belushi,1257458743 +149035,4407,James Woods,1257458739 +149035,4407,Latin America,1257458746 +149035,4407,Oliver Stone,1257458755 +149035,4407,photography,1257458752 +149035,4748,nostalgic,1201804147 +149035,4750,nostalgic,1201804138 +149035,5673,pudding,1257461184 +149035,5673,SIBLING RELATIONSHIPS,1257461186 +149035,5816,corny,1199431980 +149035,6001,Sandra Bernhard,1257461146 +149035,7161,terrible film,1201760089 +149035,8042,catholic,1199516326 +149035,34334,all around,1201760823 +149035,34334,terrible career choices,1201760823 +149035,49530,score,1201810506 +149035,59684,black and white,1257458799 +149035,64385,anti-war,1257459393 +149035,64385,Iraq War,1257459387 +149052,34405,must watch tv show first,1185145015 +149052,49276,Hilarious!! :D,1179628432 +149062,260,revolutionary movement,1441670526 +149062,260,space western,1441670442 +149075,337,Johnny Depp,1161546630 +149081,260,adventure,1430422766 +149081,260,far future,1430422762 +149081,81847,cute,1430422967 +149081,81847,fairy tale,1430422967 +149081,81847,funny,1430422967 +149088,4642,cult film,1200698278 +149088,4642,musical,1200698278 +149110,2,monkey,1137183270 +149110,34,pig,1137183232 +149110,589,dystopia,1137183015 +149110,608,frances,1138642467 +149110,1285,cult,1140449566 +149110,1387,shark,1137182716 +149110,1393,scientologist,1140449482 +149110,1875,workplace,1141099846 +149110,2009,dystopia,1137182893 +149110,2018,sad,1141099722 +149110,2287,wilhelm,1149395142 +149110,2502,inicom,1141099755 +149110,2529,dystopia,1137182867 +149110,2571,dystopia,1137182848 +149110,2657,cult,1140449594 +149110,3683,frances,1138642144 +149110,3702,ford,1137182718 +149110,3703,dystopia,1137183200 +149110,4370,dystopia,1137183161 +149110,6002,disturbing,1152547803 +149110,6196,jet lee,1140920970 +149110,6196,unbelievable,1140920959 +149110,6215,frances,1138642545 +149110,6305,dystopia,1137183181 +149110,6645,dystopia,1137182787 +149110,7236,dystopia,1137183168 +149110,35836,ebay,1137182650 +149110,58998,dong shot,1236274667 +149171,1258,Stephen King,1389612649 +149171,2953,Macaulay Culkin,1389613264 +149171,6333,Hugh Jackman,1389613211 +149171,6378,Mark Wahlberg,1389613082 +149171,48394,Guillermo del Toro,1389612795 +149171,106487,strong female lead,1389615762 +149171,106487,Woody Harrelson,1389615776 +149171,106489,benedict cumberbatch,1389610502 +149171,106489,Dubious physics,1389610535 +149171,106489,Martin Freeman,1389610593 +149171,106489,no gollum,1389610483 +149171,106489,not true to the book,1389610564 +149171,106489,sauron,1389610728 +149200,260,action,1440603831 +149200,260,sci-fi,1440603821 +149201,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1440214603 +149201,260,action,1440214595 +149250,296,action,1422145331 +149250,296,cult,1422145331 +149250,296,drugs,1422145331 +149250,356,adventure,1427240772 +149250,356,drama,1427240772 +149250,356,retarded,1427240772 +149250,593,detective,1438034623 +149250,593,phychology,1438034623 +149250,593,thriller,1438034623 +149250,62374,cia,1424825017 +149250,62374,middle east,1424825010 +149250,103549,French,1438530998 +149250,112183,dark,1423437083 +149250,112183,great performances,1423437076 +149266,1674,amish,1288408849 +149274,2683,funny,1449590098 +149274,2683,Gross-out,1449590081 +149274,2683,parody,1449590078 +149274,2683,spoof,1449590090 +149274,3949,great acting,1450783854 +149274,3949,Nudity (Full Frontal - Notable),1450783864 +149274,5481,comedy,1449648561 +149274,5481,parody,1449648554 +149274,5481,sex jokes,1449648544 +149274,5481,spoof,1449648546 +149274,5995,dramatic,1449514953 +149274,5995,long,1449515119 +149274,5995,slow,1449514980 +149274,6777,dramatic,1449825433 +149274,6777,long,1449825477 +149274,7153,Adventure,1451366830 +149274,7153,epic,1451366866 +149274,7153,fantasy,1451366827 +149274,7153,great soundtrack,1451366850 +149274,7153,high fantasy,1451366834 +149274,7153,imdb top 250,1451366860 +149274,7153,lord of the rings,1451366856 +149274,7153,magic,1451366838 +149274,7153,Peter Jackson,1451366842 +149274,7153,wizards,1451366846 +149274,41569,adventure,1451367241 +149274,41569,Peter Jackson,1451367238 +149274,48516,imdb top 250,1449164402 +149274,68157,alternate history,1451367040 +149274,68157,Brad Pitt,1451366988 +149274,68157,Christoph Waltz,1451366997 +149274,68157,great acting,1451366995 +149274,68157,great soundtrack,1451367012 +149274,68157,IMDB Top 250,1451367001 +149274,68157,Quentin Tarantino,1451366985 +149274,68157,visually appealing,1451367042 +149274,95858,animation,1451281044 +149274,95858,Pixar,1451281042 +149274,111360,Morgan Freeman,1449462162 +149274,133699,Anurag Kashyap,1451280889 +149321,149658,Anime,1451519994 +149321,149658,Family,1451520064 +149321,149658,Friendly,1451520045 +149321,149658,Love,1451520057 +149321,149658,Mangá,1451520000 +149321,149658,Ninja,1451520009 +149321,149658,Responsbility,1451520080 +149340,4103,China,1438721312 +149349,8784,Zach Braff,1154032657 +149350,58559,superhero,1219947963 +149356,318,freedom,1450071349 +149356,1704,heartwarming,1450071365 +149356,1961,heartwarming,1450071381 +149356,2571,sci-fi,1450071455 +149356,4995,love,1450071407 +149356,4995,psychology,1450071417 +149356,140110,hearwarning,1450071508 +149371,260,hero's journey,1430568577 +149371,260,quest,1430568605 +149371,112852,comic book,1430569008 +149371,112852,quest,1430569008 +149371,112852,space adventure,1430569008 +149385,3624,culture shock,1430026527 +149385,3624,improvised martial arts,1430026499 +149385,3624,Jackie Chan,1430061510 +149385,3624,martial arts,1430026491 +149385,3624,Western Comedy,1430026484 +149387,27773,based on comic,1436849551 +149387,109487,sci-fi,1436849670 +149387,109487,science fiction,1436849648 +149387,109487,time travel,1436849658 +149395,296,funny,1420133609 +149395,296,quentin tarantino,1420133609 +149395,296,violence,1420133609 +149395,5348,allen is brilliant,1157404521 +149424,2268,Aaron Sorkin,1218718016 +149428,2712,distracting score,1363011956 +149428,2712,distracting soundtrack,1363011984 +149428,39427,cool transitions,1215107058 +149428,39427,transition,1215107072 +149428,85414,Jake Gyllenhaal,1327450671 +149428,89945,creepy,1438117038 +149428,89945,robots,1438117038 +149428,89945,short films,1438117038 +149441,260,action,1431733159 +149441,260,sci-fi,1431733150 +149441,8961,action,1436772149 +149441,8961,animated,1436772165 +149441,8961,comedy,1436772140 +149441,8961,superheroes,1436772156 +149456,69524,thought-provoking,1269783322 +149456,71688,India,1269977713 +149461,955,Screwball Comedy,1174659754 +149461,1339,Bruce Willis,1174662346 +149472,3448,Robin Williams,1232078041 +149489,923,Overrated,1149626570 +149489,1225,bad acting,1150393384 +149489,1228,Best Performance: Robert De Niro as Jake La Motta,1148366077 +149489,1251,overrated,1170527070 +149489,1994,ghosts,1144978792 +149489,3181,Worst movie ever!,1149138952 +149489,3355,bad ending,1148501571 +149489,4105,profoundly annoying,1148042440 +149489,5956,sunk by a cheeseball screenplay,1148448261 +149489,6883,terrible screenplay,1148797202 +149489,8870,awful,1145945938 +149489,8870,bad ending,1145945931 +149489,8910,best movie ever,1154543061 +149489,8910,existentialism,1154543038 +149489,8914,Complicated,1153795530 +149489,33903,bad ending,1147847832 +149489,38188,badly acted,1153795626 +149489,38188,cheap,1153795607 +149489,38188,slow,1153795607 +149508,4381,French,1165576554 +149508,7256,mountains,1148260074 +149527,260,classic sci-fi,1441540001 +149527,260,nostalgia,1441540012 +149555,260,space epic,1435721860 +149555,54910,cult,1436072306 +149555,54910,eclectic,1436072306 +149555,54910,meta-indie,1436072306 +149565,3053,Milla Jovovich,1220407975 +149565,5219,Milla Jovovich,1220408009 +149565,8861,Milla Jovovich,1220408053 +149565,8861,Oded Fehr,1220408025 +149565,50796,based on a book,1236369758 +149565,52460,cliched,1222053544 +149565,55232,Ali Larter,1220408095 +149565,55232,Milla Jovovich,1220408095 +149565,55232,Oded Fehr,1220408095 +149565,60937,should'a stopped at 2,1236136556 +149565,63992,based on a book,1236369735 +149565,64747,Casper Van Dien,1236490843 +149565,65588,mock me please,1236490252 +149591,53894,heath care,1440149042 +149591,53894,insurance,1440149051 +149591,71450,capitalism,1440149072 +149591,71450,Michael Moore,1440149075 +149597,90439,financial crisis,1325547672 +149597,90439,New York City,1325547669 +149597,90439,starts intense bug ends suddenly and with no oomph,1325547658 +149597,90439,strange ending,1325547660 +149597,90439,tense,1325547665 +149597,111622,new york,1447448379 +149597,111921,cheesy,1447626519 +149597,111921,romance,1447626515 +149597,111921,teenage romance,1447626512 +149597,111921,young adult,1447626526 +149620,1961,autism,1229911538 +149620,7346,coming of age,1231341880 +149620,50011,dystopia,1227478628 +149620,50011,metaphorical,1227478657 +149620,59118,bittersweet,1229207699 +149620,59118,drama,1229207699 +149620,59731,cheating,1227392645 +149620,59731,steroids,1227392612 +149620,60074,alcoholic,1231341519 +149646,2058,Samuel L. Jackson,1187778681 +149646,4782,Love Affair,1187776692 +149646,4782,New York City,1187776685 +149646,4823,Good Romantic Comedies,1187776661 +149646,4823,wedding,1187776658 +149653,32,Bruce Willlis,1429142308 +149653,32,time travel,1429142301 +149654,260,George Lucas,1438389879 +149654,260,oldie but goodie,1438389845 +149668,253,lots of blood,1138750384 +149668,750,great,1138750289 +149668,785,curious,1138733685 +149668,1089,viva violence,1138749949 +149668,1090,best war film,1138749981 +149668,1193,Great movie,1138732902 +149668,1645,impressive,1138749783 +149668,1653,interesting,1138749752 +149668,1923,hilarious,1138749724 +149668,2959,awsome,1138733586 +149668,31410,communism,1138732955 +149685,260,adventure,1439813004 +149685,260,sci-fi,1439812993 +149694,260,action,1440714263 +149694,260,sci-fi,1440714267 +149698,117533,edward snowden,1437698867 +149698,117533,security,1437698873 +149699,52604,Anthony Hopkins,1292426561 +149699,52604,courtroom,1292426557 +149699,52604,courtroom drama,1292426545 +149699,52604,murder,1292426554 +149699,52604,murder mystery,1292426549 +149713,260,scifi,1437789127 +149713,260,space,1437789134 +149731,296,cult film,1431694608 +149731,296,gangster,1431694608 +149731,296,soundtrack,1431694608 +149734,4306,almost favorite,1170551806 +149760,4973,creative,1323481233 +149760,4973,drag,1323481260 +149760,4973,funny,1323481233 +149760,4973,happy,1323481233 +149760,4973,innovative,1323481208 +149791,48516,gangsters,1298579636 +149791,48516,organized crime,1298579642 +149799,858,Mafia,1422430845 +149799,3793,action,1422271105 +149799,3793,super-hero,1422271095 +149807,5477,Nudity (Full Frontal - Notable),1229196177 +149818,260,sci-fi,1438369969 +149818,260,space opera,1438369987 +149818,356,historical drama,1438370253 +149818,356,historical fiction,1438370253 +149818,356,melodrama,1438370253 +149822,296,violence,1452175118 +149822,527,history,1452175098 +149822,527,war,1452175086 +149832,260,future fantasy,1442483307 +149832,260,Science Fiction,1442483298 +149832,260,space,1442483257 +149832,260,space action,1442483291 +149832,260,space epic,1442483285 +149854,110,action,1324660823 +149854,110,classic,1324818856 +149854,110,Oscar (Best Cinematography),1324660818 +149854,110,Oscar (Best Picture),1324660827 +149854,356,Oscar (Best Picture),1324660971 +149854,356,Tom Hanks,1324660968 +149854,593,Oscar (Best Picture),1324818833 +149854,593,serial killer,1324818826 +149854,858,organized crime,1324660481 +149854,858,Oscar (Best Picture),1324660492 +149854,1221,organized crime,1324660510 +149854,1221,Oscar (Best Picture),1324660519 +149854,2023,Al Pacino,1324660535 +149854,2023,organized crime,1324660529 +149854,4995,Oscar (Best Picture),1324660916 +149854,4995,psychology,1324660911 +149856,17,chick flick,1137238028 +149856,150,space program,1137238380 +149856,318,stephan king,1137238408 +149856,380,Special effects,1137238490 +149856,2997,off-beat comedy,1137238377 +149856,3114,Disney,1137238378 +149856,5349,Special effects,1137238491 +149856,44828,netflixq,1146550894 +149875,260,classic sci-fi,1444875797 +149875,260,Harrison Ford,1444875809 +149875,260,space adventure,1444875862 +149877,260,classic sci-fi,1440178268 +149877,260,oldie but goodie,1440178302 +149891,260,good special effects,1438284771 +149891,260,sci-fi,1438284747 +149891,296,great soundtrack,1438285087 +149891,296,highly quotable,1438285087 +149891,296,stylish,1438285087 +149939,56949,full of stupid things,1437659384 +149939,56949,James Marsden,1437659436 +149939,56949,love story,1437659433 +149955,97,class conflict,1426754226 +149955,288,mindfuck,1426752631 +149955,288,paranoid,1426752639 +149955,288,psychedelic,1426752634 +149955,1263,american propaganda,1426753995 +149955,3160,depression,1430086660 +149955,3742,class conflict,1426753876 +149955,3742,Classic,1426754311 +149955,3742,Propaganda,1426754337 +149955,4848,Atmospheric,1426752575 +149955,4848,dark,1426752581 +149955,4848,Mindfuck,1426752569 +149955,6530,claustrophobic,1426753144 +149955,6530,mental illness,1426751285 +149955,6530,suicide,1426751289 +149955,8950,depressing,1426749117 +149955,8950,psychodrama,1426752695 +149955,8950,schizophrenia,1426752689 +149955,44191,class conflict,1426754463 +149955,44191,dystopia,1426754449 +149955,55721,foreign language,1426751504 +149955,57669,dark comedy,1426752821 +149955,57669,irish accent,1426752834 +149955,61323,Coen Brothers,1426752867 +149955,63072,depressing,1426748940 +149955,63072,post-apocalyptic,1426748949 +149955,64716,melancholy,1426748824 +149955,65514,martial arts,1436463345 +149955,66289,disturbing,1426747209 +149955,66289,surreal,1426747199 +149955,66289,weird,1426748903 +149955,93164,hitchcockian,1426749551 +149955,93164,suspense,1426749544 +149955,93790,depressing,1426749238 +149955,97306,Dark Comedy,1426752903 +149955,101973,depressing,1426749212 +149955,103017,twisted ending,1426749454 +149955,103253,class conflict,1390183540 +149955,103253,romance,1390183569 +149955,104211,Emma Roberts,1426747807 +149955,105869,beat generation,1395532449 +149955,105869,william burroughs,1395532425 +149955,106766,Coen Brothers,1426749907 +149955,106766,depressing,1426749912 +149955,112552,jazz,1426747697 +149955,112552,Tense,1426747701 +149955,115569,dark,1426753488 +149955,115569,satire,1426753493 +149955,116897,dark humor,1436463480 +149963,260,action,1441465027 +149963,260,CGI,1441465030 +149963,260,sci-fi,1441465002 +149963,260,Star Wars,1441465012 +149996,1234,fun movie,1139779648 +149996,1641,touching,1139781770 +149996,2359,wonderful light touch,1139781668 +149996,5669,Must see!,1139781622 +150019,260,haven't seen it,1434269557 +150019,260,i don't know much about it,1434269578 +150037,47,crime,1146482548 +150037,47,Kevin Spacey,1146482554 +150037,47,serial killer,1146482538 +150037,62,emotion,1146482503 +150037,141,comedy,1146482391 +150037,293,hit men,1146482508 +150037,529,chess,1146482561 +150037,1225,music,1146482371 +150037,1228,boxing,1146482524 +150037,1246,Robin Williams,1146482255 +150037,1276,classic,1146482664 +150037,1276,prison,1146482661 +150037,1704,genius,1146482290 +150037,1732,Coen Brothers,1146482159 +150037,1884,gonzo,1146482261 +150037,2300,Funny as hell,1146482336 +150037,2302,courtroom,1146482323 +150037,2302,enjoyable,1146482321 +150037,2302,entertaining,1146482327 +150037,2858,excellent cinematography,1146482143 +150037,2858,surrealism,1146482119 +150037,2959,anarchism,1146482283 +150037,2997,off-beat comedy,1146482384 +150037,2997,surrealism,1146482382 +150037,3052,religion,1146482402 +150037,3275,crime family,1146482228 +150037,3275,hitmen,1146482213 +150037,3275,Irish,1146482184 +150037,3275,organized crime,1146482199 +150037,3535,not as disturbing as the novel,1146480385 +150037,3535,psychology,1146480389 +150037,3671,Mel Brooks,1146482651 +150037,3996,martial arts,1146482667 +150037,4011,gypsy accent,1146482635 +150037,4878,psychology,1146482415 +150037,4878,time travel,1146482421 +150037,4979,brilliant,1146482535 +150037,4979,witty,1146482531 +150037,4995,math,1146482647 +150037,5577,dramedy,1146482296 +150037,5630,Hannibal Lecter,1146482527 +150037,6296,mockumentary,1146482498 +150037,6787,journalism,1146482117 +150037,6787,Politics,1146482114 +150037,8575,Audrey Tatou,1146480469 +150037,8575,French,1146480455 +150037,8784,apathetic,1146482462 +150037,8784,overly medicated,1146482476 +150037,8784,psychology,1146482455 +150037,8784,Zach Braff,1146482445 +150037,8950,psychology,1146482303 +150037,8950,twist ending,1146482306 +150037,32587,comic book,1146482607 +150037,33794,dark,1146482641 +150037,33794,super-hero,1146482638 +150037,34338,fucking awesome,1146480619 +150037,34338,hilarious,1146480628 +150037,34405,contrived,1146480553 +150037,34437,"better than ""Lost In Translation""",1146480597 +150037,34523,suburbia,1146480418 +150037,39414,a realistic and human romance,1146482598 +150037,39444,marriage,1146482628 +150037,40946,stand-up comedy,1146480427 +150037,40952,spelling bee,1146480496 +150037,42004,gender dysphoria,1146482363 +150037,42004,gender identity,1146482342 +150037,42004,transgendered,1146482345 +150037,43708,to-rent,1146482398 +150037,44191,comic book,1146482366 +150044,296,casual violence,1436986884 +150044,296,fun,1436986884 +150044,296,smart writing,1436986884 +150056,260,Hated it,1434381267 +150056,260,Why?,1434381274 +150070,7090,Jet Li,1147553680 +150084,260,good vs evil,1433268947 +150084,260,hero's journey,1433268936 +150084,260,oldie but goodie,1433268950 +150084,260,sci-fi,1433268915 +150094,296,revival of John Travolta,1261644034 +150094,70862,emphasis on the guitar alone in rock and roll,1261644252 +150094,70862,Jack White,1261644209 +150094,72998,blue indians in space,1261643917 +150098,434,Sylvester Stallone,1315822836 +150098,597,Julia Roberts,1315822330 +150098,1127,aliens,1315821018 +150098,1127,sci-fi,1315821008 +150098,1127,submarine,1315821014 +150098,1200,action,1315821037 +150098,1200,sci-fi,1315821041 +150098,1200,space,1315821043 +150098,1214,aliens,1315821030 +150098,1214,sci-fi,1315821022 +150098,1214,space,1315821026 +150116,7580,evidence history does repeat itself.,1385926294 +150116,7580,This classic film addresses two current issues PTSD and Mental Health,1385926294 +150127,1,animation,1354154589 +150127,1,humorous,1354154576 +150127,1,Pixar,1354154571 +150127,1,time travel,1354154579 +150127,356,bittersweet,1354342925 +150127,356,inspirational,1354342944 +150127,356,Oscar (Best Actor),1354342939 +150127,356,Oscar (Best Picture),1354342936 +150127,356,psychology,1354342934 +150127,356,quirky,1354342929 +150127,356,vietnam war,1354342932 +150127,480,action,1354154792 +150127,480,adventure,1354154789 +150127,480,based on a book,1354154818 +150127,480,cloning,1354154860 +150127,480,genetics,1354154803 +150127,480,Oscar (Best Effects - Visual Effects),1354154855 +150127,590,bittersweet,1354164593 +150127,590,culture clash,1354164568 +150127,590,Oscar (Best Picture),1354164579 +150127,780,action,1354154702 +150127,780,adventure,1354154689 +150127,780,alien invasion,1354154710 +150127,780,apocalypse,1354154681 +150127,4308,Sexualized violence,1354341934 +150127,4995,based on a book,1354343045 +150127,4995,mental illness,1354343048 +150127,4995,true story,1354343053 +150127,4995,twist ending,1354343056 +150127,6214,constantly rotating filming,1354257098 +150127,6214,controversial,1354257102 +150127,6214,Monica Bellucci,1354257089 +150127,6214,NC-17,1354259086 +150127,6214,nonlinear,1354257106 +150127,6214,Nudity (Full Frontal),1354257085 +150127,48997,artistic,1354256468 +150127,48997,based on a book,1354256471 +150127,48997,cannibalism,1354256497 +150127,48997,creativity,1354256517 +150127,48997,Nudity (Topless),1354256461 +150127,48997,serial killer,1354256479 +150127,48997,sexuality,1354256483 +150127,48997,thriller,1354256511 +150127,55118,disturbing,1354258012 +150127,55118,Nudity (Full Frontal),1354257970 +150127,55118,prostitution,1354258006 +150127,55118,rape,1354258017 +150127,55118,Russian mafia,1354257999 +150127,55118,tense,1354257993 +150127,55118,Viggo Mortensen,1354257978 +150127,64839,identity crisis,1354342767 +150127,64839,Nudity (Topless),1354342755 +150127,64839,strippers,1354342772 +150127,64839,violence,1354342776 +150127,64839,visceral,1354342779 +150127,64957,original plot,1354164675 +150127,78574,Based on a book,1354342566 +150127,78574,drugs,1354342606 +150127,78574,realism,1354342588 +150127,78574,Sundance Grand Jury Prize: Dramatic,1354342578 +150127,78574,thriller,1354342584 +150127,88129,atmospheric,1354258554 +150127,88129,cinematography,1354258556 +150127,88129,great car chase,1354258589 +150127,88129,great soundtrack,1354258577 +150127,88129,Nudity (Topless),1354258560 +150127,88129,violence,1354258566 +150127,88129,visually appealing,1354258564 +150127,96612,direction of plot not clear,1357618508 +150137,1089,cast,1397794403 +150137,1089,tarantino is god,1397794403 +150137,7361,cult film,1397794431 +150137,7361,romance,1397794440 +150137,7361,surrealism,1397794436 +150137,7361,thought-provoking,1397794434 +150143,2687,Disney,1367636708 +150143,79132,alternate reality,1367636696 +150144,2028,action,1441783507 +150144,2028,cinematography,1441783519 +150144,2028,drama,1441783512 +150144,5971,fantasy,1441783375 +150144,5971,feel good movie,1441783357 +150144,5971,great soundtrack,1441783371 +150144,5971,Hayao Miyazaki,1441783349 +150144,5971,Studio Ghibli,1441783364 +150144,68954,friendship,1441783302 +150144,68954,heartbreaking,1441783301 +150144,68954,Pixar,1441783286 +150144,68954,storytelling,1441783292 +150144,68954,touching,1441783304 +150166,50,Oscar Winner,1139844849 +150166,110,Oscar Winner,1139844712 +150166,318,Oscar Nominee,1139844587 +150166,356,Oscar Winner,1139844731 +150166,480,Oscar Winner,1139844758 +150166,593,Oscar Winner,1139845038 +150166,780,Oscar Winner,1139844994 +150166,786,Oscar Nominee,1139844964 +150166,1042,Oscar Nominee,1139845061 +150166,1101,Oscar Winner,1139845100 +150166,1287,Oscar Winner,1139844385 +150166,1307,Oscar Nominee,1139844681 +150166,1393,Oscar Winner,1139844470 +150166,1580,Oscar Winner,1139845009 +150166,1784,Oscar Winner,1139844901 +150166,1917,Oscar Nominee,1139844895 +150166,2268,Oscar Nominee,1139844425 +150166,2302,Oscar Winner,1139844537 +150166,2324,Oscar Winner,1139844797 +150166,2355,Oscar Nominee,1139844914 +150166,2571,Oscar Winner,1139844494 +150166,2762,Oscar Nominee,1139844649 +150166,2959,Oscar Nominee,1139844979 +150166,3114,Oscar Nominee,1139845115 +150166,3178,Oscar Nominee,1139844444 +150166,4306,Oscar Winner,1139844613 +150166,4886,Oscar Winner,1139844533 +150166,4995,Oscar Winner,1139844370 +150166,5014,Oscar Nominee,1139844241 +150166,5445,Oscar Nominee,1139844828 +150166,7263,Sports,1139842904 +150166,8360,Oscar Nominee,1139844629 +150166,8866,Sports,1139844928 +150166,8958,Oscar Winner,1139844552 +150166,30707,Oscar Winner,1139844503 +150166,33660,Oscar Nominee,1139844398 +150166,33660,Sports,1139842893 +150171,48780,tesla,1233365258 +150171,64957,life lessons,1233365043 +150186,6381,bad acting,1420487002 +150186,6381,brazil,1420487002 +150186,6381,terrible,1420487002 +150186,100272,black and white,1423944508 +150186,100272,dwarfs,1423944508 +150186,100272,spanish,1423944508 +150186,107718,british,1421778227 +150186,107718,good acting,1421778227 +150186,107718,journalism,1421778227 +150205,4027,1930s,1384810255 +150205,4027,comedy,1384810230 +150205,4027,funny,1384810233 +150205,4027,George Clooney,1384810261 +150205,4027,great soundtrack,1384810227 +150205,4027,notable soundtrack,1384810225 +150205,4027,prison escape,1384810246 +150205,4027,Quirky,1384810223 +150205,4447,actually funny,1384809174 +150205,4447,chick flick,1384809181 +150205,4447,comedy,1384809184 +150205,4447,girlie movie,1384809187 +150205,4447,Luke Wilson,1384809195 +150205,4447,Reese Witherspoon,1384809190 +150205,5995,Adrien Brody,1384810347 +150205,5995,beautiful,1384810344 +150205,5995,holocaust,1384810333 +150205,5995,Nazis,1384810335 +150205,5995,Oscar (Best Actor),1384810351 +150205,5995,Oscar Winner,1384810354 +150205,5995,true story,1384810339 +150205,5995,World War II,1384810341 +150205,79132,suspense,1384809062 +150205,79132,thought-provoking,1384809053 +150205,79132,twist ending,1384809058 +150205,79132,visually appealing,1384809056 +150242,551,Halloween,1225555596 +150242,2482,rock and roll,1225555443 +150254,2901,cult classic,1239042317 +150254,2901,cult film,1239042314 +150254,2905,Akira Kurosawa,1239042258 +150254,2905,Criterion,1239042256 +150254,2905,Toshirô Mifune,1239042270 +150254,4553,conspiracy,1239042564 +150254,5319,crime,1238904089 +150254,6774,surreal,1238904288 +150254,7766,Criterion,1239042223 +150254,7924,Akira Kurosawa,1239042133 +150254,7924,Criterion,1239042129 +150254,8620,Criterion,1239043086 +150276,1270,classic,1425979035 +150276,1270,Funny,1425979042 +150276,68954,emotional,1425979062 +150276,68954,must see,1425979051 +150276,78499,must see,1425979069 +150291,539,Meg Ryan,1430329797 +150291,539,Romance,1430329799 +150291,1307,Good Romantic Comedies,1430329762 +150291,1307,meg ryan,1430329757 +150291,1307,relationships,1430329753 +150291,1307,romance,1430329759 +150291,2424,Meg Ryan,1430329830 +150291,56949,Katherine Heigl,1430329894 +150292,3214,bicycling,1341322802 +150292,3214,cycling,1341322809 +150299,260,c3po,1439797419 +150299,260,George Lucas,1439797428 +150299,260,luke skywalker,1439797413 +150299,260,scifi,1439797397 +150299,260,Star Wars,1439797407 +150342,1747,Albanians,1234916075 +150342,3949,Darren Aronofsky,1231096382 +150342,3949,hip hop montage,1231096382 +150342,3949,SnorriCam,1231096382 +150342,5169,Fritz Lang,1226424408 +150342,34542,Werner Herzog,1226424505 +150342,47150,hospitals,1252722566 +150342,47150,old age,1252722572 +150342,55820,Noir,1231096428 +150342,55820,Tommy Lee Jones,1231096428 +150342,60333,human condition,1231128790 +150342,60333,Werner Herzog,1226424527 +150342,64839,Aronofsky,1246822494 +150342,64839,mass behavior,1246822494 +150342,64839,relationships,1246822494 +150342,68157,alternate history,1251145110 +150342,68157,violence,1251145106 +150342,68237,clones,1247176433 +150342,68237,solitude,1247176455 +150342,69640,digital video,1246822335 +150342,70286,segregation,1250543587 +150356,260,sci-fi,1438545098 +150356,260,space action,1438545115 +150356,81834,adventure,1438545600 +150356,81834,fantasy,1438545600 +150356,81834,magic,1438545600 +150373,2959,atmospheric,1423066475 +150373,2959,author:Chuck Palahniuk,1423066569 +150373,2959,Chuck Palahniuk,1423066542 +150373,2959,dark comedy,1423066452 +150373,2959,David Fincher,1423066466 +150373,2959,Edward Norton,1423066444 +150373,2959,good adaptation of the book,1423066555 +150373,2959,Palahnuik,1423066562 +150373,2959,philosophy,1423066453 +150373,2959,satirical,1423066464 +150373,2959,social commentary,1423066452 +150373,2959,twist ending,1423066443 +150373,8132,easily confused with other movie(s) (title),1445720869 +150373,48711,Christianity,1436667608 +150373,96829,falsely accused,1423309391 +150373,96829,hard to watch,1423309383 +150373,96829,Mads Mikkelsen,1423309366 +150373,96829,paranoia,1423309378 +150373,96829,social rejection,1423309397 +150373,111764,anti-racism,1436667168 +150373,111764,fun,1436667171 +150373,112183,Edward Norton,1426894270 +150373,112183,great performances,1426894275 +150373,112183,satire,1426894276 +150373,112183,single shot,1426894271 +150373,112290,pseudo-intelligent,1416619140 +150373,112552,jazz,1434023378 +150373,112556,David Fincher,1423066076 +150373,112556,false accusation,1423066086 +150373,112556,Psychopathy,1423066113 +150373,113345,awful script,1433375277 +150373,114935,mindfuck,1423943906 +150373,114935,predictable,1423943954 +150373,115713,artificial intelligence,1435432689 +150373,115713,philosophical,1435432704 +150373,115713,sci-fi,1435432701 +150373,115713,thought provoking,1435432694 +150373,116722,adapted from:tv series,1423944336 +150373,116722,based on tv series,1423944336 +150373,116722,mockumentary,1423944336 +150373,116797,informatics,1434239709 +150373,116897,dark humor,1434061505 +150373,118700,civil rights,1435526977 +150373,118700,history,1435526918 +150373,118700,police brutality,1435527076 +150373,118700,racism,1435526925 +150373,118888,Dave Chappelle,1439423450 +150373,118924,Chris Rock,1451611552 +150373,122882,dystopian,1439686830 +150373,122882,post apocalypse,1439686818 +150373,122882,visually appealing,1439686824 +150373,126599,multi story narrative,1440718900 +150373,126599,Multiple Stories,1440718888 +150390,198,hh,1186719381 +150390,1088,ff,1186719377 +150390,2701,jdj,1186719383 +150390,4246,xx,1186719374 +150390,7438,ghg,1186719380 +150398,4993,based on a book,1450269743 +150398,4993,fantasy,1450269740 +150398,5952,based on a book,1450269758 +150398,5952,fantasy,1450269756 +150398,7153,Adventure,1450269722 +150398,7153,based on a book,1450269728 +150398,7153,fantasy,1450269718 +150398,92259,friendship,1450269683 +150398,98809,based on a book,1450269781 +150398,98809,fantasy,1450269778 +150410,58559,Atmospheric,1419620389 +150410,58559,Christopher Nolan,1419620391 +150410,58559,dark,1419620384 +150410,58559,Heath Ledger,1419620374 +150410,58559,psychology,1419620386 +150410,58559,vigilante,1419620387 +150422,35957,wes craven thriller,1137312824 +150422,61075,Nudity (Topless - Notable),1240706865 +150422,96610,time travel,1355541025 +150441,93,Angela Bassett,1173112278 +150441,198,Angela Bassett,1173112264 +150441,477,Angela Bassett,1173112193 +150441,494,Halle Berry,1394127945 +150441,527,black and white,1241116863 +150441,527,Holocaust,1241116829 +150441,527,Nazis,1241116831 +150441,527,Oscar (Best Picture),1241116840 +150441,527,Steven Spielberg,1241116842 +150441,527,World War II,1241116836 +150441,912,black and white,1241116795 +150441,912,espionage,1241116766 +150441,912,Film Noir,1241116781 +150441,912,Humphrey Bogart,1241116761 +150441,912,Nazis,1241116757 +150441,912,Oscar (Best Picture),1241116776 +150441,912,romance,1241116753 +150441,912,World War II,1241116750 +150441,1187,Angela Bassett,1173112329 +150441,1207,courtroom drama,1241116663 +150441,1207,heartwarming,1241116676 +150441,1207,lawyer,1241116707 +150441,1207,Oscar (Best Actor),1241116658 +150441,1207,racism,1241116644 +150441,1207,social commentary,1241116641 +150441,1350,Gregory Peck,1206392279 +150441,1940,anti-Semitism,1241116984 +150441,1940,Gregory Peck,1241116971 +150441,1940,Oscar (Best Picture),1241116979 +150441,2154,Angela Bassett,1173112216 +150441,3246,Angela Bassett,1170956879 +150441,4448,Angela Bassett,1173112311 +150441,4932,Angie Dickinson,1273513923 +150441,4955,less than 300 ratings,1203897848 +150441,8864,Angela Bassett,1173112243 +150441,26271,Billy Dee Williams,1394647975 +150441,26271,Diana Ross,1394647905 +150441,26271,Richard Pryor,1394647976 +150441,30749,Africa,1241116895 +150441,30749,factual,1241116908 +150441,30749,genocide,1241116897 +150441,30749,heroism,1241116939 +150441,30749,holocaust,1241116933 +150441,30749,journalism,1241116916 +150441,30749,racism,1241116900 +150441,30749,survival,1241116926 +150441,30749,thriller,1241116929 +150441,30749,United Nations,1241116919 +150441,31469,Sherlock Holmes,1413949652 +150441,39824,Anthony Perkins,1394648107 +150441,39824,Billy Dee Williams,1394648107 +150441,39824,Diana Ross,1394648029 +150441,44709,Angela Bassett,1170957086 +150441,48879,based on a true story,1397926538 +150441,61319,London,1428159874 +150441,62799,African American,1427687697 +150441,62799,football,1427687613 +150441,62799,Heisman trophy,1427687689 +150441,62799,Syracuse University,1427687633 +150441,84781,Jack Lemmon,1427255544 +150441,84781,Kim Novak,1427255535 +150441,84781,London,1427255568 +150441,84781,Murder,1427255553 +150441,84781,romance,1427255595 +150441,103071,africa,1420138514 +150441,103071,saints,1420138514 +150441,103071,slavery,1420138514 +150441,108748,rape,1421262855 +150441,108748,topic:aids/hiv,1421262855 +150441,108748,zimbabwe,1421262855 +150441,109459,african american,1422407554 +150441,109459,family,1422407554 +150441,109459,parent-children relationship,1422407554 +150441,110138,Affairs,1396060380 +150441,110138,Africa,1396060480 +150441,110138,flirting,1396060480 +150441,110138,funny,1396060480 +150441,110138,Ivory Coast,1396060480 +150441,110138,pregnancy,1396060476 +150441,110163,Dakar,1396147247 +150441,110163,death,1396147264 +150441,110163,dying,1396147405 +150441,110163,Senegal,1396147241 +150441,110163,Today,1396147227 +150441,110284,Alaska,1396468373 +150441,110284,cross cultural,1396468373 +150441,110284,Nigeria,1396468373 +150441,110613,paranoia,1398049196 +150441,110613,psychiatry,1398049196 +150441,110613,psychology,1398049196 +150441,110613,Robert Young,1398049196 +150441,111603,Viola Davis,1400955091 +150441,112367,Africa,1403527285 +150441,112367,boxing,1403527337 +150441,112367,Bukom,1403527337 +150441,112367,Ghana,1403527285 +150441,112367,rags to riches,1423109643 +150441,113474,Cicely Tyson,1408384271 +150441,113474,Civil Rights,1408384251 +150441,113474,Civil War,1408384236 +150441,113474,coming of age,1408384408 +150441,113474,Slavery,1408384244 +150441,119609,contrived plot,1444794465 +150441,129671,dysfunctional family,1425616259 +150441,129671,road trip,1425616235 +150441,129709,Death Valley,1425787388 +150441,129709,gold,1425787352 +150441,129709,greed,1425787371 +150441,129709,Randolph Scott,1425787332 +150441,129709,western,1425787311 +150441,130356,Antichrist,1426612109 +150441,130356,Christian,1426612102 +150441,130356,Gary Bussey,1426612142 +150441,130356,Howie Mandel,1426612174 +150441,130356,Margot Kidder,1426612127 +150441,131568,Arab-Israeli,1427946603 +150441,131568,War,1427946615 +150441,150792,Africa,1452912739 +150441,150792,Christianity,1452912759 +150441,150792,colonialism,1452912728 +150441,150792,Eartha Kitt,1452912772 +150441,150792,Sidney Poitier,1452912787 +150441,150792,terrorism,1452912814 +150493,356,inspiring,1452213601 +150493,356,must see,1452213592 +150493,6378,robbery,1452213562 +150501,48660,suicide,1284838209 +150514,260,childhood classic,1440969848 +150514,260,Favorites,1440969891 +150514,260,space adventure,1440969861 +150535,112,obscenities,1310175846 +150535,6874,martial arts,1310176826 +150535,6874,Quentin Tarantino,1310176830 +150535,6874,violence,1310176815 +150535,6874,violent,1310176833 +150535,31664,final fight,1310175778 +150535,48600,Biblical,1310177312 +150535,48600,Christianity,1310177313 +150535,48600,Persia,1310177320 +150535,48711,Christianity,1310177244 +150535,48711,determination,1310177249 +150535,48711,Football,1310177251 +150535,48711,independent film,1310177254 +150535,48711,poor acting,1310177257 +150535,74580,characters,1310175891 +150535,74580,fun,1310175891 +150535,74580,light-hearted,1310175891 +150535,74580,plot,1310175891 +150535,74580,special effects,1310175891 +150535,88140,Hugo Weaving,1317424292 +150547,94466,dystopia,1441248032 +150573,260,adventu,1436613063 +150573,260,classic,1436613072 +150573,260,sci-fi,1436613058 +150573,115617,action,1437293181 +150573,115617,animation,1437293181 +150573,115617,comedy,1437293181 +150573,122882,cars,1436613408 +150573,122882,post-apocalyptic,1436613408 +150573,122882,sci-fi,1436613408 +150628,32,dark,1300851337 +150628,32,dystopia,1300851321 +150628,32,Post apocalyptic,1300851323 +150628,32,post-apocalyptic,1300851325 +150628,32,psychology,1300851329 +150628,32,sci-fi,1300851327 +150628,32,time travel,1300851328 +150628,32,violence,1300851332 +150628,110,action,1300852766 +150628,110,war,1300852759 +150628,111,atmospheric,1300854230 +150628,111,cult film,1300854223 +150628,111,disturbing,1300854226 +150628,111,grim,1300854246 +150628,111,imdb top 250,1300854252 +150628,111,Jodie Foster,1300854221 +150628,111,New York City,1300854213 +150628,111,Robert De Niro,1300854216 +150628,111,social commentary,1300854236 +150628,111,vigilante,1300854238 +150628,111,vigilantism,1300854240 +150628,111,visceral,1300854242 +150628,208,apocalypse,1300851227 +150628,208,Dennis Hopper,1300851233 +150628,208,dystopia,1300851254 +150628,208,dystopic future,1300851257 +150628,208,Kevin Costner,1300851235 +150628,208,ocean,1300851239 +150628,208,post apocalypse,1300851241 +150628,208,survival,1300851246 +150628,230,child abuse,1301822002 +150628,230,drama,1301822017 +150628,230,incest,1301822003 +150628,230,kathy bates,1301822005 +150628,230,Stephen King,1301822007 +150628,318,atmospheric,1301714551 +150628,318,friendship,1301714545 +150628,318,Stephen King,1301714547 +150628,337,Johnny Depp,1300691697 +150628,337,Leonardo DiCaprio,1300691700 +150628,337,quirky,1300691703 +150628,337,siblings,1300691704 +150628,538,adapted from:play,1301822046 +150628,538,based on a play,1301822043 +150628,538,good dialogue,1301822057 +150628,538,thought provoking,1301822054 +150628,562,comedy,1301715397 +150628,562,indie,1301715393 +150628,562,quirky,1301715391 +150628,608,black comedy,1301468958 +150628,608,Coen Brothers,1301468964 +150628,780,action,1300852040 +150628,780,aliens,1300852042 +150628,780,apocalypse,1300852044 +150628,780,aviation,1300852065 +150628,780,conspiracy theory,1300852062 +150628,780,end of the world,1300852048 +150628,780,sci-fi,1300852057 +150628,780,tense,1300852056 +150628,780,US President,1300852053 +150628,780,Will Smith,1300852049 +150628,924,artificial intelligence,1301469228 +150628,924,atmospheric,1301469232 +150628,924,sci-fi,1301469223 +150628,924,space,1301469225 +150628,924,Stanley Kubrick,1301469221 +150628,1199,black comedy,1301468977 +150628,1199,dark comedy,1301468988 +150628,1199,dreamlike,1301468985 +150628,1199,dystopia,1301468977 +150628,1199,futuristic,1301468984 +150628,1199,surreal,1301468981 +150628,1199,thought-provoking,1301468979 +150628,1206,disturbing,1300690699 +150628,1206,Nudity (Full Frontal),1300690709 +150628,1206,rape,1300690718 +150628,1214,aliens,1300852133 +150628,1214,atmospheric,1300852151 +150628,1214,classic,1300852147 +150628,1214,dark,1300852150 +150628,1214,sci-fi,1300852135 +150628,1214,space,1300852144 +150628,1214,space travel,1300852137 +150628,1214,suspense,1300852139 +150628,1214,thriller,1300852142 +150628,1235,Cult Classic,1300851873 +150628,1235,cult film,1300851877 +150628,1235,dark comedy,1300851878 +150628,1235,Eccentric,1300851892 +150628,1235,good dialogue,1300851889 +150628,1235,humorous,1300851880 +150628,1235,quirky,1300851885 +150628,1258,atmospheric,1301469178 +150628,1258,cult film,1301469199 +150628,1258,Jack Nicholson,1301469191 +150628,1258,mental illness,1301469195 +150628,1258,psychological,1301469184 +150628,1258,Stanley Kubrick,1301469189 +150628,1258,Stephen King,1301469187 +150628,1259,coming of age,1301714600 +150628,1259,friendship,1301714605 +150628,1259,Stephen King,1301714600 +150628,1269,classic,1300691896 +150628,1269,hysterical,1300691914 +150628,1269,murder,1300691916 +150628,1269,screwball comedy,1300691918 +150628,1345,Classic,1301714689 +150628,1345,high school,1301714684 +150628,1345,religion,1301714698 +150628,1345,Stephen King,1301714682 +150628,1584,aliens,1300855490 +150628,1584,beautiful,1300855488 +150628,1584,inspirational,1300855492 +150628,1584,Jodie Foster,1300855469 +150628,1584,sci-fi,1300855471 +150628,1584,science,1300855474 +150628,1584,space,1300855479 +150628,1584,space travel,1300855477 +150628,1584,stoner movie,1300855482 +150628,1653,drama,1300852214 +150628,1653,dystopia,1300852207 +150628,1653,dystopic future,1300852209 +150628,1653,Ethan Hawke,1300852211 +150628,1653,injustice,1300852231 +150628,1653,inspiring,1300852227 +150628,1653,powerful ending,1300852223 +150628,1653,sci-fi,1300852205 +150628,1690,Action,1300852266 +150628,1690,alien series,1300852263 +150628,1690,aliens,1300852240 +150628,1690,sci-fi,1300852241 +150628,1690,Sigourney Weaver,1300852243 +150628,1690,space,1300852248 +150628,1690,Winona Ryder,1300852250 +150628,1880,children,1301821830 +150628,1880,friendship,1301821851 +150628,1880,Hulu,1301821840 +150628,1880,Nudity (Topless - Notable),1301821833 +150628,1880,social commentary,1301821872 +150628,1913,dreamlike,1300692409 +150628,1913,eerie,1300692407 +150628,1913,understated,1300692414 +150628,2176,atmospheric,1301006166 +150628,2176,classic,1301006170 +150628,2176,clever dialogue,1301006172 +150628,2176,James Stewart,1301006148 +150628,2176,long takes,1301006199 +150628,2176,Suspense,1301006154 +150628,2232,cult film,1300692342 +150628,2232,escape,1300692339 +150628,2232,mindfuck,1300692321 +150628,2232,psychological,1300692324 +150628,2232,weird,1300692328 +150628,2288,alien,1300852187 +150628,2288,alien invasion,1300852184 +150628,2288,aliens,1300852172 +150628,2288,Antarctica,1300852174 +150628,2291,comedy,1300855378 +150628,2291,cult film,1300855398 +150628,2291,dark comedy,1300855354 +150628,2291,dreamlike,1300855357 +150628,2291,funny,1300855374 +150628,2291,surreal,1300855369 +150628,2291,Tim Burton,1300855364 +150628,2291,Winona Ryder,1300855366 +150628,2320,holocaust,1301822234 +150628,2320,Ian McKellen,1301822278 +150628,2320,murder,1301822206 +150628,2320,nazi,1301822239 +150628,2320,psychological,1301822200 +150628,2320,psychopaths,1301822189 +150628,2320,sociopaths,1301822184 +150628,2320,violence,1301822252 +150628,2528,classic,1300851657 +150628,2528,dystopia,1300851633 +150628,2528,Farrah Fawcett,1300851635 +150628,2528,futuristic,1300851631 +150628,2528,Nudity (Topless),1300851667 +150628,2528,post-apocalyptic,1300851637 +150628,2528,sci-fi,1300851639 +150628,2528,violence,1300851663 +150628,2571,Action,1300851166 +150628,2571,atmospheric,1300851164 +150628,2571,cult film,1300851162 +150628,2571,dystopia,1300851143 +150628,2571,Keanu Reeves,1300851146 +150628,2571,martial arts,1300851149 +150628,2571,post-apocalyptic,1300851158 +150628,2571,sci-fi,1300851150 +150628,2571,surreal,1300851155 +150628,2571,thought-provoking,1300851154 +150628,2571,virtual reality,1300851153 +150628,2600,Action,1300855283 +150628,2600,alternate reality,1300855256 +150628,2600,mindfuck,1300855264 +150628,2600,multiple realities,1300855266 +150628,2600,Sci-Fi,1300855259 +150628,2600,strange,1300855261 +150628,2600,surreal,1300855262 +150628,2600,Thriller,1300855285 +150628,2729,based on a book,1300690854 +150628,2729,controversial,1300690830 +150628,2729,erotic,1300690848 +150628,2729,kidnapping,1300690844 +150628,2729,obsession,1300690835 +150628,2729,Stanley Kubrick,1300690838 +150628,2729,temptation,1300690841 +150628,2959,atmospheric,1300690655 +150628,2959,based on a book,1300690653 +150628,2959,Brad Pitt,1300690630 +150628,2959,dark comedy,1300690647 +150628,2959,mental illness,1300690676 +150628,2959,philosophical,1300690662 +150628,2959,philosophy,1300690659 +150628,2959,psychological,1300690665 +150628,2959,psychology,1300690631 +150628,2959,social commentary,1300690637 +150628,2959,surreal,1300690638 +150628,2959,twist ending,1300690643 +150628,2959,violence,1300690641 +150628,2997,black comedy,1300691289 +150628,2997,Cameron Diaz,1300691287 +150628,2997,cult film,1300691285 +150628,2997,dark comedy,1300691282 +150628,2997,John Cusack,1300691267 +150628,2997,John Malkovich,1300691260 +150628,2997,surreal,1300691270 +150628,2997,surrealism,1300691269 +150628,2997,thought-provoking,1300691275 +150628,2997,twist ending,1300691279 +150628,2997,whimsical,1300691277 +150628,3147,male nudity,1301714575 +150628,3148,abortion,1300855521 +150628,3148,Drama,1300855528 +150628,3471,aliens,1301469264 +150628,3471,first contact,1301469261 +150628,3471,Sci-fi,1301469266 +150628,3476,hallucination,1300692370 +150628,3476,insanity,1300692372 +150628,3476,Nudity (Topless),1300692374 +150628,3476,paranoia,1300692377 +150628,3476,Tim Robbins,1300692380 +150628,3476,Vietnam War,1300692385 +150628,3499,drama,1301714647 +150628,3499,Stephen King,1301714640 +150628,3499,writer,1301714661 +150628,3499,WRITER'S LIFE,1301714663 +150628,3499,writers,1301714657 +150628,3556,dreamlike,1301715506 +150628,3556,psychology,1301715509 +150628,3556,reflective,1301715513 +150628,4720,atmospheric,1300854958 +150628,4720,claustrophobic,1300854960 +150628,4720,Drama,1300854970 +150628,4720,ghosts,1300854963 +150628,4720,haunted house,1300854956 +150628,4720,Nicole Kidman,1300854953 +150628,4720,surprise ending,1300854948 +150628,4720,twist ending,1300854951 +150628,4873,animated,1300691434 +150628,4873,cerebral,1300691413 +150628,4873,intelligent,1300691425 +150628,4873,no narrative,1300691441 +150628,4873,philosophy,1300691409 +150628,4873,thought-provoking,1300691409 +150628,4873,visually stunning,1300691449 +150628,4878,alternate timeline,1300852011 +150628,4878,atmospheric,1300852014 +150628,4878,cult classic,1300852016 +150628,4878,cult film,1300852018 +150628,4878,dreamlike,1300852010 +150628,4878,funny,1300852021 +150628,4878,high school,1300852020 +150628,4878,mental illness,1300852008 +150628,4878,mystery,1300852004 +150628,4878,psychology,1300851996 +150628,4878,satirical,1300851998 +150628,4878,stylized,1300851995 +150628,4878,surreal,1300851994 +150628,4878,thought-provoking,1300851991 +150628,4878,time travel,1300851988 +150628,5266,action,1300853384 +150628,5266,crime,1300853318 +150628,5266,Forest Whitaker,1300853374 +150628,5266,home invasion,1300853353 +150628,5266,Jodie Foster,1300853306 +150628,5266,mother daughter relationship,1300853360 +150628,5266,survival,1300853332 +150628,5266,thriller,1300853379 +150628,5445,based on a book,1300855014 +150628,5445,futuristic,1300855011 +150628,5445,Philip K. Dick,1300854999 +150628,5445,surreal,1300855007 +150628,5445,time travel,1300855000 +150628,5445,Tom Cruise,1300855002 +150628,5445,violence,1300855005 +150628,5528,bizarre,1300854328 +150628,5528,dark,1300854331 +150628,5528,strange story,1300854324 +150628,5673,Adam Sandler,1300691213 +150628,5673,awkward,1300691247 +150628,5673,Philip Seymour Hoffman,1300691219 +150628,5673,quirky,1300691221 +150628,5673,romance,1300691222 +150628,5673,SIBLING RELATIONSHIPS,1300691225 +150628,5673,whimsical,1300691227 +150628,5772,dialogue,1301647838 +150628,5772,friendship,1301647890 +150628,5772,Great Screenplays,1301647841 +150628,5772,philosophical,1301647879 +150628,5772,philosophy,1301647872 +150628,5903,Amazing Cinematography,1300851082 +150628,5903,Christian Bale,1300851068 +150628,5903,cult film,1300851109 +150628,5903,distopia,1300851131 +150628,5903,dystopia,1300851128 +150628,5903,fascism,1300851117 +150628,5903,revolution,1300851099 +150628,5903,totalitarianism,1300851074 +150628,6711,atmospheric,1301821947 +150628,6711,Bill Murray,1301821956 +150628,6711,cultural differences,1301821962 +150628,6711,friendship,1301821977 +150628,6711,Japan,1301821966 +150628,6711,relationships,1301821950 +150628,6711,Scarlett Johansson,1301821954 +150628,6711,tokyo,1301821968 +150628,6867,cute,1300691625 +150628,6867,dwarf,1300691599 +150628,6867,friendship,1300691602 +150628,6867,loneliness,1300691612 +150628,6867,quirky,1300691614 +150628,6867,trains,1300691616 +150628,6867,understated,1300691620 +150628,7347,Johnny Depp,1301714712 +150628,7347,psychological,1301714740 +150628,7347,psychology,1301714744 +150628,7347,split personality,1301714722 +150628,7347,Stephen King,1301714714 +150628,7347,writer,1301714720 +150628,7347,writers,1301714717 +150628,7360,zombie,1300853091 +150628,7361,bittersweet,1300691135 +150628,7361,comedy,1300691133 +150628,7361,imagination,1300691136 +150628,7361,Jim Carrey,1300691142 +150628,7361,memory,1300691140 +150628,7361,New York City,1300691150 +150628,7361,nonlinear,1300691139 +150628,7361,philosophy,1300691148 +150628,7361,relationships,1300691153 +150628,7361,sci-fi,1300691145 +150628,7361,surreal,1300691147 +150628,7361,surrealism,1300691156 +150628,7361,thought-provoking,1300691143 +150628,8361,action,1300852121 +150628,8361,climate change,1300852086 +150628,8361,Jake Gyllenhaal,1300852092 +150628,8361,natural disaster,1300852114 +150628,8361,New York City,1300852111 +150628,8361,Post apocalyptic,1300852094 +150628,8361,sci-fi,1300852106 +150628,8361,weather,1300852104 +150628,8644,android(s)/cyborg(s),1300851693 +150628,8644,artificial intelligence,1300851683 +150628,8644,Dynamic CGI Action,1300851698 +150628,8644,futuristic,1300851687 +150628,8644,robot,1300851702 +150628,8644,robots,1300851704 +150628,8644,sci-fi,1300851684 +150628,8644,Will Smith,1300851686 +150628,8784,coming of age,1300691568 +150628,8784,friendship,1300691560 +150628,8784,Natalie Portman,1300691572 +150628,8784,psychology,1300691575 +150628,8784,quirky,1300691576 +150628,8784,romance,1300691578 +150628,8784,Zach Braff,1300691580 +150628,8910,activism,1300691337 +150628,8910,Dustin Hoffman,1300691311 +150628,8910,existentialism,1300691298 +150628,8910,intelligent,1300691300 +150628,8910,Jude Law,1300691319 +150628,8910,Naomi Watts,1300691321 +150628,8910,philosophy,1300691309 +150628,8910,satire,1300691303 +150628,8910,want to see again,1300691326 +150628,8910,whimsical,1300691306 +150628,8914,clever,1300854847 +150628,8914,complex,1300854845 +150628,8914,Complicated,1300854842 +150628,8914,complicated plot,1300854822 +150628,8914,intellectual,1300854838 +150628,8914,inventor,1300854852 +150628,8914,low budget,1300854854 +150628,8914,mindfuck,1300854825 +150628,8914,sci-fi,1300854828 +150628,8914,science,1300854832 +150628,8914,time travel,1300854830 +150628,26887,bad acting,1301714466 +150628,26887,Stephen King,1301714492 +150628,26887,survival horror,1301714485 +150628,26887,time travel,1301714494 +150628,26887,tv movie,1301714471 +150628,27491,atmospheric,1300854877 +150628,27491,dark,1300854896 +150628,27491,depression,1300854900 +150628,27491,horror,1300854884 +150628,27491,japanese,1300854927 +150628,27491,moody,1300854888 +150628,27491,slow paced,1300854880 +150628,27491,strange,1300854914 +150628,27491,weird,1300854910 +150628,27904,Keanu Reeves,1300691472 +150628,27904,Philip K. Dick,1300691473 +150628,27904,surrealism,1300691480 +150628,33004,aliens,1300692025 +150628,33004,comedy,1300692010 +150628,33004,robots,1300692037 +150628,33004,sci-fi,1300692018 +150628,33004,Zooey Deschanel,1300692020 +150628,33880,avante garde,1300855039 +150628,33880,bittersweet,1300855022 +150628,33880,Indie,1300855036 +150628,33880,quirky,1300855024 +150628,33880,unique,1300855026 +150628,33880,weird,1300855029 +150628,34319,cloning,1300851584 +150628,34319,dystopia,1300851596 +150628,34319,Scarlett Johansson,1300851584 +150628,34319,sci-fi,1300851586 +150628,34319,thriller,1300851592 +150628,34437,Atmospheric,1300855086 +150628,34437,Awkward,1300855088 +150628,34437,Bill Murray,1300855090 +150628,34437,comedy,1300855099 +150628,34437,open ended endings,1300855105 +150628,34437,quiet,1300855116 +150628,34437,road trip,1300855113 +150628,37495,action,1301713824 +150628,37495,dark comedy,1301713796 +150628,37495,quirky,1301713808 +150628,37495,surreal,1301713798 +150628,37495,weird,1301713812 +150628,37857,parallel universe,1300690369 +150628,38499,AIDS,1294641327 +150628,38499,based on a play,1294641349 +150628,38499,jewish,1294641378 +150628,38499,mormon,1294641372 +150628,38499,religious overtones,1294641331 +150628,38499,touching,1294641407 +150628,44191,action,1300853659 +150628,44191,comic book,1300854004 +150628,44191,dark,1300853662 +150628,44191,dystopia,1300853635 +150628,44191,England,1300854009 +150628,44191,gay,1300853687 +150628,44191,injustice,1300853817 +150628,44191,lesbians,1300853566 +150628,44191,Natalie Portman,1300853798 +150628,44191,political,1300853890 +150628,44191,protest,1300854026 +150628,44191,revenge,1300853652 +150628,44191,revolution,1300853674 +150628,44191,social commentary,1300853571 +150628,44191,terrorism,1300853656 +150628,44191,thought-provoking,1300853638 +150628,44191,visually appealing,1300853640 +150628,46578,beauty pageant,1300691762 +150628,46578,comedy,1300691770 +150628,46578,dark comedy,1300691759 +150628,46578,dysfunctional family,1300691760 +150628,46578,feel-good,1300691779 +150628,46578,homosexuality,1300691782 +150628,46578,off-beat comedy,1300691772 +150628,46578,road trip,1300691756 +150628,46976,Dustin Hoffman,1300691511 +150628,46976,Emma Thompson,1300691514 +150628,46976,Maggie Gyllenhaal,1300691507 +150628,46976,Will Ferrell,1300691499 +150628,46976,writers,1300691532 +150628,48043,artistic,1300691116 +150628,48043,atmospheric,1300691080 +150628,48043,death,1300691114 +150628,48043,dreamlike,1300691081 +150628,48043,fountain of youth,1300691083 +150628,48043,history,1300691108 +150628,48043,Hugh Jackman,1300691086 +150628,48043,immortality,1300691088 +150628,48043,love,1300691096 +150628,48043,Music,1300691093 +150628,48043,philosophical,1300691091 +150628,48043,spain,1300691103 +150628,48043,thought-provoking,1300691099 +150628,48043,time travel,1300691100 +150628,48043,visually appealing,1300691090 +150628,48082,artsy,1300691185 +150628,48082,dreams,1300691167 +150628,48082,psychology,1300691174 +150628,48082,quirky,1300691175 +150628,48082,romance,1300691169 +150628,48082,stylized,1300691171 +150628,48082,surreal,1300691172 +150628,48082,unusual,1300691196 +150628,48394,alternate reality,1300854585 +150628,48394,atmospheric,1300854564 +150628,48394,bittersweet,1300854567 +150628,48394,psychology,1300854579 +150628,48394,stylized,1300854571 +150628,48394,surreal,1300854572 +150628,48394,violence,1300854574 +150628,48744,beautiful,1300854368 +150628,48744,bisexual,1300854400 +150628,48744,controversial,1300854408 +150628,48744,depression,1300854373 +150628,48744,gay,1300854388 +150628,48744,heartwarming,1300854377 +150628,48744,lesbian,1300854395 +150628,48744,New York City,1300854380 +150628,48744,queer,1300854384 +150628,48744,Underrated,1300854357 +150628,48744,uplifting,1300854365 +150628,48774,apocalypse,1300690408 +150628,48774,christianity,1300690406 +150628,48774,dystopia,1300690400 +150628,48774,future,1300690403 +150628,48774,futuristic,1300690413 +150628,48774,Nudity (Topless),1300690428 +150628,48774,pregnancy,1300690425 +150628,48774,sci-fi,1300690415 +150628,48774,survival,1300690420 +150628,48774,thriller,1300690423 +150628,48780,atmospheric,1300854462 +150628,48780,Christian Bale,1300854465 +150628,48780,complicated,1300854483 +150628,48780,enigmatic,1300854479 +150628,48780,great ending,1300854481 +150628,48780,imdb top 250,1300854486 +150628,48780,nonlinear,1300854470 +150628,48780,Scarlett Johansson,1300854471 +150628,48780,twist ending,1300854475 +150628,53129,Dane Cook,1300937852 +150628,53129,Demi Moore,1300937854 +150628,53129,Kevin Costner,1300937856 +150628,53129,murder,1300937859 +150628,53129,serial killer,1300937840 +150628,53129,suspense,1300937917 +150628,53953,claustrophobic,1301715060 +150628,53953,horror,1301715064 +150628,53953,John Cusack,1301715067 +150628,53953,Stephen King,1301715069 +150628,53956,brittish,1300855431 +150628,53956,dark comedy,1300855409 +150628,53956,family,1300855420 +150628,55280,delusional,1300691647 +150628,55280,mental illness,1300691669 +150628,55280,touching,1300691663 +150628,55280,weird,1300691657 +150628,55908,dialogue driven,1300692264 +150628,55908,educational,1300692268 +150628,55908,entirely dialogue,1300692262 +150628,55908,Excellent use of dialogue,1300692301 +150628,55908,intellectual,1300692258 +150628,55908,intelligent,1300692299 +150628,55908,philosophical,1300692275 +150628,55908,religion,1300692291 +150628,55908,science fiction,1300692293 +150628,55908,Underrated,1300692288 +150628,55908,unique,1300692283 +150628,56145,apocalypse,1301714616 +150628,56145,psychological,1301714623 +150628,56145,stephen king,1301714620 +150628,56145,Survival,1301714618 +150628,56174,alone in the world,1300850886 +150628,56174,last man on earth,1300850920 +150628,56174,post-apocalyptic,1300850889 +150628,56174,religion,1300850891 +150628,56174,ruined the book's plot,1300850952 +150628,56174,sci-fi,1300850913 +150628,56174,survival,1300850898 +150628,56174,vampire,1300850901 +150628,56174,virus,1300850903 +150628,56174,Will Smith,1300850910 +150628,56339,foreign language,1300854990 +150628,56339,horror,1300854982 +150628,56339,twist ending,1300854985 +150628,56715,afterlife,1300851843 +150628,56715,alternate reality,1300851841 +150628,56715,dark comedy,1300851814 +150628,56715,quirky,1300851816 +150628,56715,romance,1300851855 +150628,56715,suicide,1300851828 +150628,56715,touching,1300851830 +150628,57464,Christian Slater,1300854186 +150628,57464,twist ending,1300854201 +150628,58808,based on real events,1303684505 +150628,58808,drama,1303684502 +150628,60069,cute,1300851055 +150628,60069,dystopia,1300851016 +150628,60069,funny,1300851039 +150628,60069,Post apocalyptic,1300851024 +150628,60069,robots,1300851031 +150628,60069,romance,1300851029 +150628,60069,Sci-Fi,1300851026 +150628,60069,social commentary,1300851035 +150628,60069,space,1300851033 +150628,60293,Ben Kingsley,1300855548 +150628,60293,depression,1300855545 +150628,60293,drama,1300855567 +150628,60293,Mary-Kate Olsen,1300855555 +150628,60293,psychiatry,1300855550 +150628,60293,teens,1300855558 +150628,60293,weed,1300855560 +150628,61240,atmospheric,1300854612 +150628,61240,coming of age,1300854601 +150628,61240,meditative,1300854603 +150628,61240,strange,1300854649 +150628,61240,suburbia,1300854635 +150628,61240,swedish,1300854606 +150628,61240,touching,1300854607 +150628,61240,violence,1300854628 +150628,61240,violent,1300854632 +150628,62511,confusing,1300691367 +150628,62511,hard to follow,1300691383 +150628,62511,long,1300691374 +150628,62511,Nudity (Topless - Notable),1300691362 +150628,62511,Philip Seymour Hoffman,1300691351 +150628,62511,pointless,1300691378 +150628,62511,surreal,1300691353 +150628,62511,Theater,1300691354 +150628,63033,apocalypse,1300690563 +150628,63033,epidemic,1300690532 +150628,63033,Julianne Moore,1300690596 +150628,63033,Mark Ruffalo,1300690599 +150628,63033,rape,1300690543 +150628,63072,based on a book,1300690507 +150628,63072,Charlize Theron,1300690464 +150628,63072,depressing,1300690483 +150628,63072,dystopia,1300690479 +150628,63072,great acting,1300690490 +150628,63072,post-apocalyptic,1300690504 +150628,63072,survival,1300690496 +150628,65642,complicated,1300692146 +150628,65642,Nudity (Topless),1300692151 +150628,65642,paradox,1300692156 +150628,65642,time travel,1300692153 +150628,66097,alternate universe,1300690338 +150628,66097,animation,1300690341 +150628,66097,creepy,1300690344 +150628,66097,dystopia,1300690346 +150628,66097,gothic,1300690349 +150628,66097,stop motion,1300690351 +150628,66097,Surreal,1300690353 +150628,66097,Tim Burton,1300690355 +150628,68237,artificial intelligence,1300692213 +150628,68237,cloning,1300692208 +150628,68237,death,1300692210 +150628,68237,dystopia,1300692188 +150628,68237,psychology,1300692201 +150628,68237,Sci-fi,1300692191 +150628,68237,solitude,1300692195 +150628,68237,space,1300692199 +150628,68237,twist ending,1300692197 +150628,71106,Chris O'Dowd,1301469096 +150628,71106,friendship,1301469101 +150628,71106,funny,1301469093 +150628,71106,nerds,1301469091 +150628,71106,sci-fi,1301469103 +150628,71106,shit ending,1301469087 +150628,71106,time travel,1301469090 +150628,71135,aliens,1300850984 +150628,71135,amnesia,1300850968 +150628,71135,future,1300850993 +150628,71135,horror,1300850996 +150628,71135,post-apocalyptic,1300850971 +150628,71135,sci-fi,1300851005 +150628,71135,space,1300851003 +150628,71135,space travel,1300850972 +150628,71535,Bill Murray,1300851370 +150628,71535,comedy,1300851381 +150628,71535,dark comedy,1300851373 +150628,71535,funny,1300851375 +150628,71535,gore,1300851376 +150628,71535,road trip,1300851400 +150628,71535,violence,1300851398 +150628,71535,zombies,1300851385 +150628,72367,Drew Barrymore,1302286191 +150628,72367,family,1302286201 +150628,72367,mother daughter relationship,1302286210 +150628,72367,touching,1302286197 +150628,73168,dark,1300851534 +150628,73168,post-apocalyptic,1300851521 +150628,73168,survival,1300851516 +150628,73168,virus,1300851508 +150628,73323,based on a book,1300689728 +150628,73323,corruption,1300689754 +150628,73323,hackers,1300689723 +150628,73323,journalism,1300689750 +150628,73323,Rape,1300689737 +150628,73323,revenge,1300689745 +150628,74228,murder,1300854099 +150628,74228,puzzle,1300854088 +150628,74228,sci fi,1300854114 +150628,74228,scifi,1300854125 +150628,74228,single mother,1300854078 +150628,74228,Surreal,1300854086 +150628,74228,time loop,1300854081 +150628,74228,time travel,1300854108 +150628,74228,visual style,1300854083 +150628,74504,Catholicism,1302238764 +150628,74504,elderly,1302238773 +150628,74504,ex convict,1302238755 +150628,74504,forgiveness,1302238811 +150628,74504,friendship,1302238728 +150628,74504,redemption,1302238823 +150628,74504,tear jerker,1302238741 +150628,74504,touching,1302238745 +150628,77307,cat killing,1300688197 +150628,77307,freedom,1300688172 +150628,77307,incest,1300688181 +150628,77307,isolation,1300688163 +150628,77307,oppression,1300688188 +150628,77307,seclusion,1300688155 +150628,77307,sex,1300688185 +150628,77307,sexuality,1300688183 +150628,77795,German,1300851202 +150628,77795,lengthy,1300851189 +150628,77795,post-apocalyptic,1300851195 +150628,77795,space travel,1300851197 +150628,79357,Beauty,1300691014 +150628,79357,butterfly effect,1300690994 +150628,79357,chaos,1300690996 +150628,79357,cinematography,1300691015 +150628,79357,coming of age,1300691048 +150628,79357,confusing,1300691040 +150628,79357,nonlinear,1300691000 +150628,79357,romance,1300691022 +150628,79357,sci-fi,1300691002 +150628,79357,surreal,1300691011 +150628,79868,dark,1303684158 +150628,79868,family,1303684148 +150628,79868,gore,1303684169 +150628,79868,horror,1303684129 +150628,79868,psychological,1303684144 +150628,79868,Psychological horror,1303684139 +150628,79897,funeral,1300690026 +150628,79897,funeral home,1300690022 +150628,79897,justice,1300690032 +150628,79897,subtlety,1300690015 +150628,80831,coming of age,1300854760 +150628,80831,dark,1300854743 +150628,80831,friendship,1300854800 +150628,80831,horror,1300854708 +150628,80831,middle school,1300854772 +150628,80831,serial killer,1300854698 +150628,80831,vampires,1300854679 +150628,80917,aliens,1292643511 +150628,80917,creative,1292643514 +150628,80917,mexico,1292643539 +150628,80917,octopus,1292643495 +150628,80917,realism,1292643524 +150628,80917,romance,1292643497 +150628,80917,sci fi,1292643501 +150628,80917,science fiction,1292643493 +150628,81018,1950s,1300690177 +150628,81018,depressing without being uplifting,1300690230 +150628,81018,not for kids,1300690287 +150628,81018,show business,1300690328 +150628,81018,silent movie,1300690263 +150628,81018,slow,1300690216 +150628,81018,slow paced,1300690220 +150628,81591,atmospheric,1300854288 +150628,81591,dark,1300854284 +150628,81591,Natalie Portman,1300854265 +150628,81591,psychological,1300854271 +150628,81591,repressed sexuality,1300854276 +150628,81591,visceral,1300854278 +150628,81591,Winona Ryder,1300854280 +150632,39183,gay cowboys eating pudding,1139963877 +150638,134957,cinta,1434496740 +150638,134957,indonesia,1434496740 +150638,134957,rangga,1434496740 +150639,39183,homosexuality,1444278287 +150639,39183,melancholy,1444278294 +150639,39183,music,1444278281 +150639,39183,scenic,1444278299 +150639,78039,music,1444278340 +150676,128592,crazy guy,1426415515 +150676,128592,milf,1426415515 +150676,128592,teacher student relationship,1426415515 +150679,260,#groundbreaking #adventure #goodvsevil,1439841367 +150710,131796,courtroom drama,1439514937 +150710,131796,wwii,1439514948 +150755,136532,b movie,1436395797 +150755,136532,so bad it's good,1436395797 +150755,136532,troll mask,1436395797 +150755,136538,cartoon to big screen,1437672951 +150755,136538,japan,1437672951 +150755,136538,superhero,1437672951 +150755,137074,b-movie,1437023283 +150755,137074,blaxploitation,1437023283 +150755,137074,detective movie,1437023283 +150759,6711,friendship,1354190896 +150759,50872,pixar,1354180224 +150768,260,#hanks #muchstories,1434981477 +150771,2959,Brad Pitt,1386551786 +150771,2959,complicated,1386551799 +150771,2959,dark comedy,1386551715 +150771,2959,Edward Norton,1386551789 +150771,2959,philosophy,1386551746 +150771,2959,psychological,1386551749 +150771,2959,psychology,1386551729 +150771,2959,quirky,1386551744 +150771,2959,social commentary,1386551776 +150771,2959,surreal,1386551706 +150771,2959,twist ending,1386551709 +150771,2959,violence,1386551734 +150795,1968,cliche,1441370539 +150795,1968,teen movie,1441370530 +150795,2959,philosophical,1441370317 +150795,2959,thought-provoking,1441370321 +150795,2959,twist ending,1441370306 +150795,2959,violence,1441370308 +150795,2959,violent,1441370324 +150795,4995,intelligent,1441370219 +150795,4995,mathematics,1441370184 +150795,4995,mental illness,1441370222 +150795,4995,psychology,1441370180 +150795,4995,schizophrenia,1441370191 +150795,4995,scientist,1441370239 +150795,4995,true story,1441370202 +150795,5903,big brother,1441369808 +150795,5903,dystopia,1441369741 +150795,5903,revolution,1441369768 +150795,5903,sci-fi,1441369749 +150795,5903,war,1441369761 +150795,7361,bittersweet,1441370679 +150795,7361,dreamlike,1441370669 +150795,7361,memory,1441370681 +150795,7361,nonlinear,1441370674 +150795,7361,romance,1441370684 +150795,7361,surreal,1441370676 +150795,7361,thought-provoking,1441370671 +150795,40629,classic,1441370394 +150795,40629,relationships,1441370391 +150795,46062,Disney,1441370786 +150795,46062,high school,1441370790 +150795,46062,musical,1441370794 +150795,55247,adventure,1441370451 +150795,55247,based on a true story,1441370430 +150795,55247,bittersweet,1441370471 +150795,55247,freedom,1441370438 +150795,55247,touching,1441370460 +150795,55247,wilderness,1441370435 +150795,86882,art,1441371678 +150795,86882,bittersweet,1441371685 +150795,86882,magical realism,1441371656 +150795,86882,nostalgic,1441371674 +150795,86882,philosophical,1441371669 +150795,86882,quirky,1441371663 +150795,86882,romance,1441371659 +150795,86882,writers,1441371653 +150795,94150,based on a true story,1441370254 +150795,94150,educational,1441370271 +150795,94150,feministic,1441370282 +150795,95441,Funny,1441370812 +150795,96821,Not very realistic,1441370513 +150795,96821,overrated,1441370520 +150795,112552,school drama,1441370582 +150795,112552,unrealistic,1441370611 +150795,134585,beautiful,1441369859 +150795,134585,high school,1441369993 +150795,134585,honest,1441369969 +150795,134585,realistic,1441369950 +150795,134585,sexual harrasment,1441369999 +150795,134585,sexuality,1441369903 +150795,134585,teenage,1441369896 +150795,134585,tennage,1441369864 +150795,134585,thought provoking,1441369940 +150795,134585,touching,1441369855 +150795,134853,Pixar,1441455414 +150812,33817,disturbing,1374451579 +150812,33817,drama,1374451576 +150812,33817,love,1374451593 +150812,33817,romance,1374451573 +150812,95491,family death,1374452152 +150812,95491,high school,1374452125 +150812,95491,isolation,1374452112 +150812,95491,loneliness,1374452117 +150812,95491,romance,1374452121 +150812,95491,score:Andrew Bird,1374452105 +150812,95491,score:Wolf Parade,1374452134 +150826,46578,dark comedy,1430086445 +150826,46578,off-beat comedy,1430086449 +150826,89759,Iran,1430086213 +150826,89759,social commentary,1430086223 +150833,4748,karate,1200697859 +150835,260,Boring,1433901660 +150873,82459,Soliloquy,1443130853 +150873,103249,Dramatic,1443131753 +150879,26326,dark comedy,1284156890 +150879,26326,dreamlike,1284156922 +150879,26326,genius,1284156953 +150888,53207,Nudity (Rear),1228038188 +150890,5679,Saturn Award (Best Actress),1183590491 +150892,76,artificial intelligence,1250280062 +150892,76,Philip K. Dick,1250280054 +150892,76,post apocalyptic,1250280057 +150892,172,author:William Gibson,1302505599 +150892,172,cyberpunk,1302505594 +150892,198,cyberpunk,1322244894 +150892,253,adapted from:book,1241074577 +150892,253,Antonio Banderas,1241074617 +150892,253,author:Anne Price,1241074581 +150892,253,Brad Pitt,1241074606 +150892,253,Kirsten Dunst,1241074620 +150892,253,Nudity (Full Frontal),1241074597 +150892,253,Stephen Rea,1241074663 +150892,253,Tom Cruise,1241074601 +150892,253,vampire,1241074603 +150892,253,vampires,1241074669 +150892,296,Bruce Willis,1241073556 +150892,296,cult film,1241073590 +150892,296,dark comedy,1241073583 +150892,296,imdb top 250,1241073560 +150892,296,John Travolta,1241073615 +150892,296,multiple storylines,1241073567 +150892,296,nonlinear,1241073571 +150892,296,Quentin Tarantino,1241073484 +150892,296,Samuel L. Jackson,1241073491 +150892,296,violence,1241073493 +150892,296,violent,1241073496 +150892,541,adapted from:book,1241072893 +150892,541,androids,1241072955 +150892,541,cyberpunk,1241072952 +150892,541,dark,1241073016 +150892,541,dystopia,1241072905 +150892,541,existentialism,1241072908 +150892,541,future,1241072997 +150892,541,Harrison Ford,1241072968 +150892,541,imdb top 250,1241072970 +150892,541,narrated,1241072977 +150892,541,Nudity (Topless),1241073002 +150892,541,Philip K. Dick,1241072897 +150892,541,robots,1241072984 +150892,541,sci-fi,1241072941 +150892,541,violent,1241072989 +150892,741,anime,1322245083 +150892,741,artificial intelligence,1322245086 +150892,741,cyberpunk,1322245124 +150892,741,philosophical,1322245071 +150892,1222,anti-war,1241074831 +150892,1222,imdb top 250,1241074795 +150892,1222,military,1241074838 +150892,1222,political,1241074846 +150892,1222,Stanley Kubrick,1241074762 +150892,1222,Vietnam,1241074772 +150892,1222,Vietnam War,1241074774 +150892,1562,camp,1344801044 +150892,1924,so bad it's funny,1322245018 +150892,1924,so bad it's good,1318779265 +150892,2427,George Clooney,1241074897 +150892,2427,Jared Leto,1241074900 +150892,2427,John Travolta,1241074904 +150892,2427,narrated,1241074987 +150892,2427,Oscar Nominee: Adapted Screenplay,1241074943 +150892,2427,philosophical,1241074968 +150892,2427,remake,1241074915 +150892,2427,Sean Penn,1241074920 +150892,2427,Terrence Malick,1241074879 +150892,2427,World War II,1241074881 +150892,2959,adapted from:book,1241072381 +150892,2959,Brad Pitt,1241072387 +150892,2959,Edward Norton,1241072390 +150892,2959,imdb top 250,1241072395 +150892,2959,narrated,1241072411 +150892,2959,Nudity (Topless),1241072406 +150892,2959,philosophy,1241072415 +150892,2959,social commentary,1241072418 +150892,2959,surreal,1241072423 +150892,2959,violence,1241072424 +150892,2997,dark comedy,1279662323 +150892,2997,surreal,1279662317 +150892,2997,surrealism,1279662319 +150892,3949,addiction,1241073409 +150892,3949,depressing,1241073463 +150892,3949,disturbing,1241073422 +150892,3949,drug abuse,1241073426 +150892,3949,drugs,1241073433 +150892,3949,heroin,1241073429 +150892,3949,imdb top 250,1241073376 +150892,3949,Nudity (Full Frontal - Notable),1241073400 +150892,3949,social commentary,1241073441 +150892,3994,Bruce Willis,1241073078 +150892,3994,comics,1241073099 +150892,3994,father-son relationship,1241073146 +150892,3994,husband-wife relationship,1241073148 +150892,3994,M. Night Shyamalan,1241073080 +150892,3994,Samuel L. Jackson,1241073084 +150892,3994,super-hero,1241073138 +150892,3994,superhero,1241073130 +150892,4366,ancient civilization,1249758527 +150892,4366,Atlantis,1249758525 +150892,4366,steampunk,1249758520 +150892,4366,underwater,1249758536 +150892,4848,dark,1241074147 +150892,4848,David Lynch,1241074138 +150892,4848,disturbing,1241074145 +150892,4848,Nudity (Full Frontal - Notable),1241074130 +150892,4848,surreal,1241074134 +150892,5291,multiple storylines,1322244749 +150892,5291,nonlinear,1322244752 +150892,8914,Complicated,1275071076 +150892,8914,low budget,1255710230 +150892,8914,sci-fi,1255710217 +150892,8914,time travel,1255710213 +150892,8950,Christian Bale,1241074207 +150892,8950,guilt,1241074215 +150892,8950,memory,1241074242 +150892,8950,Nudity (Topless - Notable),1241074222 +150892,8950,sanity,1241074231 +150892,31696,adapted from:comic,1252186077 +150892,31696,angels,1252186081 +150892,31696,author:Alan Moore,1252186123 +150892,31696,DC Comics,1252186120 +150892,31696,heaven and hell,1252186084 +150892,32587,adapted from:comic,1241073252 +150892,32587,Bruce Willis,1241073257 +150892,32587,Clive Owen,1241073302 +150892,32587,film noir,1241073293 +150892,32587,Frank Miller,1241073300 +150892,32587,imdb top 250,1241073268 +150892,32587,multiple storylines,1241073271 +150892,32587,narrated,1241073273 +150892,32587,Nudity (Topless),1241073276 +150892,32587,Quentin Tarantino,1241073278 +150892,32587,violence,1241073311 +150892,32587,violent,1241073308 +150892,36276,boring,1259585220 +150892,36276,non-hollywood ending,1259585196 +150892,36529,arms dealer,1241074485 +150892,36529,dark comedy,1241074523 +150892,36529,Ethan Hawke,1241074501 +150892,36529,gun smuggling,1241074531 +150892,36529,Nicolas Cage,1241074497 +150892,36529,political,1241074487 +150892,36529,war,1241074495 +150892,36529,World Politics,1241074489 +150892,44191,adapted from:comic,1241071281 +150892,44191,author:Alan Moore,1241071287 +150892,44191,dystopia,1241071320 +150892,44191,Hugo Weaving,1241071429 +150892,44191,imdb top 250,1241071375 +150892,44191,Natalie Portman,1241071373 +150892,44191,politics,1241071387 +150892,44191,revenge,1241071388 +150892,44191,revolution,1241071392 +150892,44191,super-hero,1241071224 +150892,44191,thought-provoking,1241072080 +150892,44665,Film Noir,1310235677 +150892,44665,twist,1310235671 +150892,44665,twist ending,1310235673 +150892,44849,film noir,1297013960 +150892,48043,cancer,1241072202 +150892,48043,Darren Aronofsky,1241072264 +150892,48043,death,1241072120 +150892,48043,disease,1241072206 +150892,48043,dreamlike,1241072210 +150892,48043,fountain of youth,1241072181 +150892,48043,Hugh Jackman,1241072123 +150892,48043,love,1241072217 +150892,48043,medicine,1241072225 +150892,48043,mortality,1241072251 +150892,48043,mythology,1241072220 +150892,48043,Rachel Weisz,1241072237 +150892,48394,atmospheric,1241073755 +150892,48394,fairy tale,1241073675 +150892,48394,fascism,1241073676 +150892,48394,imdb top 250,1241073679 +150892,48394,Oscar (Best Art Direction),1241073682 +150892,48394,Oscar (Best Cinematography),1241073686 +150892,48394,Spanish Civil War,1241073833 +150892,48394,surreal,1241073744 +150892,48394,tragedy,1241073770 +150892,48394,violence,1241073736 +150892,48394,violent,1241073738 +150892,48394,war,1241073741 +150892,48394,world war II,1241073734 +150892,48997,artistic,1257170827 +150892,51255,action spoof,1249668262 +150892,51255,black comedy,1249668267 +150892,51255,dystopia,1249668271 +150892,51255,surreal,1249668256 +150892,54999,gun fu,1303684596 +150892,55721,social commentary,1300570369 +150892,55820,great acting,1241074010 +150892,55820,imdb top 250,1241073966 +150892,55820,Javier Bardem,1241074014 +150892,55820,Oscar (Best Picture),1241073936 +150892,55820,Tommy Lee Jones,1241073974 +150892,55820,twist ending,1241074114 +150892,55820,violent,1241073976 +150892,55908,educational,1241071960 +150892,55908,entirely dialogue,1241071891 +150892,55908,immortality,1241071869 +150892,55908,Jerome Bixby,1241071964 +150892,55908,one set,1241071966 +150892,55908,philosophical,1241071873 +150892,55908,religion,1241071877 +150892,55908,Richard Riehle,1241071969 +150892,55908,thought-provoking,1241071975 +150892,56757,19th century,1241071518 +150892,56757,adapted from:play,1241071487 +150892,56757,Johnny Depp,1241071523 +150892,56757,Musical,1241071506 +150892,56757,playwright:Sondheim,1241071498 +150892,56757,Sacha Baron Cohen,1241071540 +150892,57669,dark comedy,1245436255 +150892,57669,friendship,1245436326 +150892,57669,hitman,1245436325 +150892,57669,irish accent,1245436292 +150892,57669,violent,1245436343 +150892,58103,assassination,1245420965 +150892,58103,fast paced,1245420958 +150892,58103,multiple storylines,1245420893 +150892,58103,murder,1245420968 +150892,58103,secret service,1245420972 +150892,58103,terrorism,1245420978 +150892,60684,adapted from:comic,1241071057 +150892,60684,author:Alan Moore,1241071051 +150892,60684,dystopia,1241071082 +150892,61132,Ben Stiller,1245361000 +150892,61132,Robert Downey Jr.,1245360996 +150892,61132,satire,1245360991 +150892,62511,surreal,1281727556 +150892,63072,dystopia,1279263219 +150892,63072,post-apocalyptic,1279263221 +150892,63992,Bechdel Test:Pass,1291025428 +150892,63992,high school,1291025420 +150892,63992,Teen movie,1291025422 +150892,64030,accelerated fight scenes,1243149184 +150892,64030,happy ending,1243149182 +150892,64030,Jason Statham,1243149189 +150892,64030,short in length,1243149217 +150892,64839,Aronofsky,1252436684 +150892,64983,history,1249407170 +150892,65685,books,1251383127 +150892,65685,Brendan Fraser,1251383100 +150892,66171,psychic powers,1250440893 +150892,66171,to be continued,1250440908 +150892,68319,comic book,1241869296 +150892,68319,hugh jackman,1241869277 +150892,68319,superhero,1241869270 +150892,68358,sci-fi,1259585165 +150892,68791,post-apocalyptic,1255281239 +150892,68791,sci-fi,1255281236 +150892,69757,nonlinear,1297870841 +150892,70336,audience intelligence underestimated,1257769332 +150892,70336,bad plot,1257769199 +150892,70336,infantile,1257769190 +150892,70336,plot holes,1257769192 +150892,71535,post-apocalyptic,1260096564 +150892,71535,zombies,1260096560 +150892,72378,audience intelligence underestimated,1283408119 +150892,72378,bad plot,1283408124 +150892,72378,bad science,1283408122 +150892,72378,Roland Emmerich,1283408134 +150892,72407,werewolves,1291025488 +150892,76251,comic book,1278434764 +150892,76251,superhero,1278434761 +150892,79132,surreal,1283408062 +150892,79702,fight scenes,1286094594 +150892,79702,geeky,1286094604 +150892,79702,video games,1286094600 +150892,84954,author:Philip K. Dick,1398545216 +150892,84954,Bechdel Test:Fail,1398545226 +150892,85412,mythology,1323068468 +150892,86332,adapted from:comic,1322050890 +150892,89761,Viggo Mortensen,1340912130 +150892,89804,Ryan Gosling,1344958766 +150892,94864,Michael Fassbender,1340912055 +150907,3978,magical negro,1196905674 +150909,112552,intense,1428231774 +150909,112552,jazz,1428231775 +150909,112552,jazz music,1428231795 +150909,112552,Miles Teller,1428231793 +150909,112552,motivation,1428231786 +150916,780,Will Smith,1244191194 +150916,1917,space,1244191146 +150916,2959,mindblowing,1245758087 +150916,2959,philosophy,1245758009 +150916,2959,surreal,1245758002 +150916,2959,thought-provoking,1245758087 +150916,6365,thought-provoking,1244190973 +150916,7147,thought-provoking,1244900809 +150916,7367,Coen Brothers,1246882851 +150916,7367,funny,1246882878 +150916,33166,Sandra Bullock,1246049225 +150916,33493,Ewan McGregor,1244191168 +150916,33493,fantasy,1244191170 +150916,34319,Ewan McGregor,1246611126 +150916,34319,Michael Bay,1246611109 +150916,39427,psychological,1244190592 +150916,39427,thought provoking,1244190545 +150916,53996,enormously long battle scene,1246094005 +150916,53996,Michael Bay,1246094065 +150916,53996,Steven Spielberg,1246094065 +150916,56174,psichological,1244191091 +150916,61323,movie to see,1246444715 +150916,61323,satire,1246444646 +150916,64497,aliens,1244922815 +150916,64497,first contact,1244922792 +150916,64497,Keanu Reeves,1244922798 +150916,68319,Transformers soundrack,1249912107 +150916,69526,humanlike robots,1246288777 +150916,69526,Megan Fox,1246288816 +150916,69526,Shia LaBeouf,1246288766 +150916,69526,sufficiently explodey to be good,1246288780 +150920,103030,adoption,1427047190 +150920,103030,injustice,1427047190 +150920,103030,us legal system,1427047190 +150920,120478,beautiful scenery,1425817250 +150920,120478,documentary,1425817250 +150920,120478,photography,1425817250 +150924,47629,Charles and Diana,1436186749 +150924,47629,Corgi,1436186774 +150924,47629,Range Rover,1436186762 +150942,8947,sdzd,1203488024 +150942,27772,fantasy,1203488138 +150967,1261,splatter,1137242114 +150967,4105,splatter,1137242095 +150981,27765,pompous,1172050116 +150981,27765,predictable,1172050116 +150981,27765,unintentionally funny,1172050116 +150981,27765,well-shot,1172050116 +150993,260,"space epic, science fiction, hero's journey",1440109048 +150993,260,"space opera, science fiction, action",1440108990 +151025,59615,ridiculous end,1241384737 +151035,296,Black comedy,1276902265 +151035,296,Bruce Willis,1276902268 +151035,296,classic,1276902270 +151035,296,comedy,1276902272 +151035,296,dark comedy,1276902274 +151035,296,multiple storylines,1276902291 +151035,296,organized crime,1276902294 +151035,296,Quentin Tarantino,1276902278 +151035,296,Samuel L. Jackson,1276902279 +151035,296,violence,1276902284 +151035,356,classic,1276902472 +151035,356,great soundtrack,1276902474 +151035,356,historical,1276902485 +151035,356,inspirational,1276902512 +151035,356,psychology,1276902505 +151035,356,Tom Hanks,1276902490 +151035,356,vietnam war,1276902495 +151035,593,Anthony Hopkins,1277670476 +151035,593,classic,1277670481 +151035,593,crime,1277670484 +151035,593,disturbing,1277670486 +151035,593,drama,1277670488 +151035,593,Hannibal Lecter,1277670489 +151035,593,mental illness,1277670495 +151035,593,psychology,1277670500 +151035,593,serial killer,1277670497 +151035,750,black comedy,1276902665 +151035,750,classic,1276902691 +151035,750,corruption,1276902686 +151035,750,dark comedy,1276902684 +151035,750,military,1276902681 +151035,750,politics,1276902679 +151035,750,satirical,1276902677 +151035,750,Stanley Kubrick,1276902675 +151035,750,war,1276902669 +151035,1073,Gene Wilder,1276902041 +151035,1089,crime,1276902231 +151035,1089,cult film,1276902229 +151035,1089,heist,1276902242 +151035,1089,humorous,1276902233 +151035,1089,organized crime,1276902235 +151035,1089,Quentin Tarantino,1276902207 +151035,1089,thriller,1276902224 +151035,1089,violence,1276902222 +151035,1103,James Dean,1265093191 +151035,1136,British,1276902314 +151035,1136,classic,1276902316 +151035,1136,comedy,1276902318 +151035,1136,funny,1276902333 +151035,1136,humorous,1276902353 +151035,1136,medieval,1276902348 +151035,1136,Monty Python,1276902336 +151035,1136,parody,1276902337 +151035,1136,satirical,1276902346 +151035,1136,Terry Gilliam,1276902342 +151035,1136,witty,1276902344 +151035,1206,classic,1276902793 +151035,1206,cult film,1276902781 +151035,1206,dystopia,1276902776 +151035,1206,Nudity (Full Frontal),1276902779 +151035,1206,psychology,1276902773 +151035,1206,social commentary,1276902769 +151035,1206,Stanley Kubrick,1276902768 +151035,1206,Surrealism,1276902764 +151035,1206,violence,1276902761 +151035,1213,crime,1276902371 +151035,1213,dark comedy,1276902373 +151035,1213,good dialogue,1276902376 +151035,1213,mafia,1276902386 +151035,1213,Martin Scorsese,1276902378 +151035,1213,organized crime,1276902388 +151035,1213,Robert De Niro,1276902379 +151035,1213,violence,1276902391 +151035,1222,military,1276902425 +151035,1222,political,1276902453 +151035,1222,Stanley Kubrick,1276902445 +151035,1222,Vietnam War,1276902447 +151035,1954,classic,1276902159 +151035,1954,competitive sport,1276902162 +151035,1954,drama,1276902166 +151035,1954,Inspirational,1276902164 +151035,1954,Sylvester Stallone,1276902170 +151035,2403,action,1276902530 +151035,2403,classic,1276902548 +151035,2403,post-traumatic stress disorder,1276902542 +151035,2403,Sylvester Stallone,1276902533 +151035,2403,Vietnam war veteran,1276902538 +151035,2918,1980s,1276902651 +151035,2918,Charlie Sheen,1276902619 +151035,2918,comedy,1276902633 +151035,2918,coming of age,1276902629 +151035,2918,High School,1276902622 +151035,2918,John Hughes,1276902626 +151035,2918,Matthew Broderick,1276902621 +151035,2918,rebellion,1276902636 +151035,2959,Brad Pitt,1276902574 +151035,2959,crime,1276902579 +151035,2959,dark comedy,1276902577 +151035,2959,Edward Norton,1276902572 +151035,2959,philosophy,1276902586 +151035,2959,psychology,1276902581 +151035,2959,social commentary,1276902589 +151035,2959,thought-provoking,1276902601 +151035,2959,twist ending,1276902593 +151035,2959,violence,1276902596 +151035,4262,Al Pacino,1276902082 +151035,4262,classic,1276902123 +151035,4262,crime,1276902084 +151035,4262,gangsters,1276902102 +151035,4262,mafia,1276902102 +151035,4262,Nudity (Topless - Brief),1276902113 +151035,4262,organized crime,1276902115 +151035,4262,violence,1276902118 +151035,58559,action,1276902740 +151035,58559,Batman,1276902738 +151035,58559,Christian Bale,1276902733 +151035,58559,dark,1276902735 +151035,58559,Heath Ledger,1276902730 +151035,58559,Morgan Freeman,1276902727 +151035,58559,psychology,1276902721 +151035,58559,violence,1276902714 +151051,6,Al Pacino,1252745486 +151051,6,atmospheric,1252745488 +151051,6,Robert De Niro,1252745484 +151051,110,medieval,1252753818 +151051,112,kung fu,1252744820 +151051,168,chick flick,1252744977 +151051,168,Sean Connery,1252744981 +151051,431,Al Pacino,1252745517 +151051,431,gangster,1252745514 +151051,454,Tom Cruise,1252753979 +151051,466,parody,1252744677 +151051,745,Aardman,1252745092 +151051,745,animation,1252745093 +151051,903,Alfred Hitchcock,1252744860 +151051,903,Atmospheric,1252744863 +151051,903,classic,1252744865 +151051,953,classic,1252744849 +151051,953,fantasy,1252744847 +151051,1088,coming of age,1252745214 +151051,1088,dance,1252745216 +151051,1088,romance,1252745218 +151051,1148,Aardman,1252744730 +151051,1148,animation,1252744728 +151051,1148,robots,1252744724 +151051,1215,cult film,1252745034 +151051,1215,time travel,1252745037 +151051,1221,mafia,1252745547 +151051,1221,organized crime,1252745550 +151051,1270,time travel,1252753947 +151051,1466,Johnny Depp,1252745256 +151051,1466,Mafia,1252745254 +151051,1544,dinosaurs,1252744715 +151051,1617,twist ending,1252753894 +151051,1625,psychological,1252744685 +151051,1625,twist ending,1252744682 +151051,1639,sexuality,1252744641 +151051,1645,Al Pacino,1252745541 +151051,1645,surreal,1252745539 +151051,1722,assassin,1252745054 +151051,1722,james bond,1252745051 +151051,1729,conspiracy,1252745151 +151051,1748,surreal,1252745199 +151051,1954,boxing,1252744800 +151051,2011,time travel,1252744299 +151051,2023,Al Pacino,1252745187 +151051,2023,mafia,1252745185 +151051,2542,dark comedy,1252744951 +151051,2542,Guy Ritchie,1252744957 +151051,2542,organized crime,1252744955 +151051,2617,mummy,1252744489 +151051,2712,atmospheric,1252744614 +151051,2712,dreamlike,1252744611 +151051,2712,Stanley Kubrick,1252744617 +151051,3033,parody,1252745171 +151051,3160,addiction,1252745121 +151051,3160,drugs,1252745119 +151051,3160,multiple storylines,1252745117 +151051,3175,parody,1252744892 +151051,3175,space,1252744894 +151051,3176,psychology,1252744831 +151051,3176,serial killer,1252744829 +151051,3751,aardman,1252744523 +151051,3751,animation,1252744515 +151051,3751,Dreamworks,1252744518 +151051,3793,psychology,1252753918 +151051,3948,Robert De Niro,1252744701 +151051,4011,Brad Pitt,1252744922 +151051,4011,twist ending,1252744920 +151051,4262,Al Pacino,1252745477 +151051,4262,drugs,1252745481 +151051,4262,organized crime,1252745475 +151051,4878,psychology,1252744931 +151051,4878,surreal,1252744928 +151051,4878,time travel,1252744934 +151051,5388,Al Pacino,1252745502 +151051,5388,Robin Williams,1252745498 +151051,5608,psychology,1314468148 +151051,5669,documentary,1252745138 +151051,5669,racism,1252745141 +151051,6711,Bill Murray,1252744995 +151051,6874,nonlinear,1252744448 +151051,6874,Quentin Tarantino,1252744442 +151051,8360,animation,1252745076 +151051,8360,parody,1252745073 +151051,8874,British,1254667923 +151051,8874,parody,1254667920 +151051,8874,zombies,1254667925 +151051,26914,military,1284925102 +151051,26914,nuclear bomb,1284925097 +151051,27773,disturbing,1281800908 +151051,27773,twist ending,1281800911 +151051,27831,british,1314468304 +151051,27831,drugs,1314468302 +151051,27831,organized crime,1314468300 +151051,32587,Quentin Tarantino,1252745128 +151051,33166,multiple storylines,1252754047 +151051,33166,Oscar (Best Picture),1252754052 +151051,33166,twist ending,1252754049 +151051,33903,Nudity (Topless),1287934992 +151051,44555,East Germany,1252745849 +151051,44555,imdb top 250,1252745852 +151051,46976,surreal,1284900921 +151051,46976,Will Ferrell,1284900919 +151051,48394,psychology,1314468136 +151051,48516,Mafia,1281800796 +151051,48516,Martin Scorsese,1281800805 +151051,48780,nonlinear,1252754015 +151051,48780,twist ending,1252754017 +151051,49272,espionage,1252753988 +151051,49272,James Bond,1252753990 +151051,49530,journalism,1314468265 +151051,50872,pixar,1302462378 +151051,51662,atmospheric,1252754095 +151051,52973,drugs,1295179468 +151051,55721,organized crime,1282604855 +151051,55820,coen brothers,1252753866 +151051,55820,Oscar (Best Picture),1252753872 +151051,55820,twist ending,1252753862 +151051,56174,zombies,1252754167 +151051,56782,father-son relationship,1252745641 +151051,57669,dark comedy,1254667896 +151051,57669,drugs,1254667898 +151051,58559,psychology,1281719975 +151051,63082,nonlinear,1252754076 +151051,68522,camerawork,1252748388 +151051,68522,nature,1252748386 +151051,68522,scenic,1252748390 +151051,69122,drugs,1254667889 +151051,69122,Las Vegas,1254667879 +151051,69481,Middle East,1252764491 +151051,69481,War,1252764494 +151051,69757,nonlinear,1292351823 +151051,69757,quirky,1292351829 +151051,71466,cheesy,1302462301 +151051,71466,funny,1302462305 +151051,72011,George Clooney,1264274898 +151051,77866,remake,1284924921 +151051,79132,complicated,1281199054 +151051,79132,surreal,1281199057 +151051,79293,assassination,1284764862 +151051,79293,espionage,1284764865 +151051,79695,Jason Statham,1284764903 +151051,84152,Robert De Niro,1312964119 +151056,36086,Bollywood,1437409645 +151056,36086,ShahRukh Khan,1437409652 +151056,36086,Superhit,1437409638 +151056,73513,India,1437409943 +151056,73513,Patriotism,1437409949 +151056,91844,National Award,1437409975 +151056,91844,Sports,1437409965 +151056,134777,romance,1437410100 +151056,134777,shahrukh khan,1437410100 +151056,134777,yash chopra,1437410100 +151057,48322,Bam Margera,1243267682 +151057,48322,Chris Pontias,1243267689 +151057,48322,Funny,1243267670 +151057,48322,hilarious,1243267661 +151057,48322,Japan,1243267649 +151057,48322,Johnny England,1243267642 +151057,48322,Johnny Knoxville,1243267636 +151057,48322,jonossa,1243267631 +151057,48322,movie to see,1243267626 +151057,48322,reality tv,1243267622 +151057,48322,Ryan Dunn,1243267616 +151057,48322,seen at the cinema,1243267609 +151057,48322,Steve-O,1243267597 +151057,48322,Wee Man,1243267594 +151057,63781,documentary,1424025105 +151057,63781,imax,1424025105 +151057,63781,ocean,1424025105 +151057,100946,crime,1420998588 +151057,100946,french,1420998588 +151057,100946,silent movie,1420998588 +151062,260,luke skywalker,1442827084 +151062,260,Science Fiction,1442827073 +151062,318,classic,1442827165 +151062,318,imdb top 250,1442827201 +151062,5618,Hayao Miyazaki,1442827298 +151062,5618,Japanese animation,1442827308 +151062,5991,Catherine Zeta-Jones,1442829161 +151062,5991,musical,1442829136 +151062,5991,Richard Gere,1442829155 +151062,45722,Adventure,1442829037 +151062,45722,Johnny Depp,1442829025 +151062,60069,Pixar animation,1442829348 +151062,60069,robots,1442829363 +151062,68954,adventure,1442829307 +151062,68954,Pixar animation,1442829288 +151062,109487,Christopher Nolan,1442829100 +151062,109487,science fiction,1442829095 +151062,116797,Benedict Cumberbatch,1442827804 +151062,116797,computer science,1442827832 +151067,1208,Vietnam war,1231420784 +151067,27773,twist ending,1231420720 +151067,30793,roald dahl,1193056783 +151067,48394,fantasy,1231420703 +151067,48394,surreal,1231420699 +151076,260,masterpiece,1435532670 +151076,260,sci-fi,1435532657 +151076,260,space adventure,1435532692 +151076,115713,artificial intelligence,1435535094 +151076,115713,experiment,1435535094 +151076,115713,turing test,1435535094 +151117,2262,Movies I own-DVD,1170809796 +151117,2706,Movies I Own-DVD,1170809698 +151117,3275,Movies I Own-DVD,1170809932 +151117,4718,Movies I own-DVD,1170809743 +151135,260,future,1439786851 +151135,260,sci-fi,1439786840 +151176,111362,time travel,1426312840 +151197,7444,Favorite Movies,1439347129 +151200,112852,adventure,1440204631 +151200,112852,Chris Pratt,1440204620 +151200,112852,Marvel,1440204628 +151200,112852,science fiction,1440204627 +151200,136305,worst movie ever,1440204658 +151200,136305,worstmovieever,1440204595 +151280,260,classic sci-fi,1440430136 +151280,260,computer animation,1440430164 +151280,260,space adventure,1440430169 +151303,47,mystery,1424709560 +151303,47,police detective,1424709560 +151303,47,serial killer,1424709560 +151303,193,erotic,1449506978 +151303,193,striptease,1449506987 +151303,225,Erotic,1449504006 +151303,225,femme fatale,1449506336 +151303,225,seduction,1449504764 +151303,315,explosions,1449506177 +151303,315,femme fatale,1449506183 +151303,315,revenge,1449506169 +151303,373,femme fatale,1449506896 +151303,373,hitman,1449506890 +151303,380,striptease,1449506930 +151303,464,human prey,1449394514 +151303,540,Erotic,1449504185 +151303,547,forest,1449395121 +151303,547,human prey,1449394543 +151303,547,survival,1449395130 +151303,547,wilderness,1449395117 +151303,593,cannibalism,1423985819 +151303,593,fbi,1423985819 +151303,593,serial killer,1423985819 +151303,762,striptease,1449507022 +151303,866,erotic,1449504048 +151303,866,lesbian,1449507369 +151303,903,femme fatale,1449505684 +151303,1092,Erotic,1449503923 +151303,1092,femme fatale,1449505779 +151303,1092,lesbian,1449507283 +151303,1092,seduction,1449504608 +151303,1249,female assassin,1449245714 +151303,1615,survival,1449395300 +151303,1615,wilderness,1449394810 +151303,1617,femme fatale,1449505651 +151303,1645,Seduction,1449504569 +151303,1805,Erotic,1449503942 +151303,1805,lesbian,1449507310 +151303,1805,seduction,1449504685 +151303,1912,heist,1449503798 +151303,1912,prison,1449503803 +151303,2076,femme fatale,1449505806 +151303,2403,forest,1449394269 +151303,2560,cannibalism,1449394876 +151303,2560,forest,1449394862 +151303,2560,wilderness,1449394857 +151303,2586,Erotic,1449504399 +151303,2586,femme fatale,1449506706 +151303,2605,heist,1449503725 +151303,2710,forest,1449393267 +151303,2712,erotic,1449503905 +151303,2719,haunted house,1449238533 +151303,2917,Erotic,1449504167 +151303,2917,femme fatale,1449506402 +151303,2940,femme fatale,1449506427 +151303,3355,femme fatale,1449505760 +151303,3435,femme fatale,1449505956 +151303,3527,human prey,1449394468 +151303,3550,erotic,1449504862 +151303,3707,Erotic,1449504115 +151303,3798,haunted house,1449238584 +151303,4105,forest,1449393445 +151303,4448,heist,1449503701 +151303,4648,lesbian,1449507627 +151303,4699,Erotic,1449503980 +151303,4699,femme fatale,1449506306 +151303,4720,haunted house,1449238656 +151303,4848,Erotic,1449507202 +151303,4848,lesbian,1449507209 +151303,4932,Erotic,1449504150 +151303,4963,heist,1449503606 +151303,5266,home invasion,1449169815 +151303,5588,cannibalism,1449240674 +151303,5809,erotic,1449503408 +151303,5809,femme fatale,1449503496 +151303,5809,heist,1449503161 +151303,5809,lesbian,1449503517 +151303,5809,seduction,1449503485 +151303,5809,striptease,1449503507 +151303,5833,forest,1449393223 +151303,5893,erotic,1449504245 +151303,5893,femme fatale,1449506465 +151303,5893,seduction,1449505508 +151303,6538,Erotic,1449504026 +151303,6707,forest,1449393304 +151303,6862,femme fatale,1449506243 +151303,6874,revenge,1449502110 +151303,6885,Erotic,1449504223 +151303,7032,adultery,1449502593 +151303,7032,revenge,1449502584 +151303,7438,revenge,1449502201 +151303,7445,kidnapping,1449502424 +151303,7445,revenge,1449502418 +151303,7521,lesbian,1449507569 +151303,7616,Erotic,1449504202 +151303,8268,female assassin,1449245693 +151303,8295,human prey,1449394572 +151303,8887,Erotic,1449504380 +151303,8984,heist,1449503642 +151303,26981,prison,1449395572 +151303,26981,survival,1449395621 +151303,27711,female assassin,1449245668 +151303,27773,kidnapping,1449502311 +151303,27773,revenge,1449502305 +151303,32587,femme fatale,1449505617 +151303,32587,revenge,1449502167 +151303,33683,home invasion,1449169863 +151303,37733,witness protection,1449501296 +151303,44397,cannibalism,1449240607 +151303,44759,erotic,1449504093 +151303,44759,femme fatale,1449506359 +151303,44759,seduction,1449504792 +151303,48142,femme fatale,1449506010 +151303,48142,lesbian,1449507329 +151303,53519,car chase,1449502636 +151303,53519,revenge,1449502629 +151303,59369,kidnapping,1449502446 +151303,59369,revenge,1449502441 +151303,59727,home invasion,1449169751 +151303,60538,forest,1449393284 +151303,66090,forest,1449393244 +151303,68157,revenge,1449502036 +151303,69131,hitman,1449501424 +151303,69131,witness protection,1449501417 +151303,69134,forest,1449393481 +151303,74484,lesbian,1449507427 +151303,76079,Erotic,1449503959 +151303,76079,lesbian,1449507347 +151303,79057,human prey,1449394491 +151303,86947,forest,1449395050 +151303,86947,survival,1449395057 +151303,86947,wilderness,1449395043 +151303,88131,murder,1449505446 +151303,88839,femme fatale,1449506623 +151303,89087,female assassin,1449245765 +151303,89230,cannibalism,1449240649 +151303,91972,insanity,1449396056 +151303,91972,post-apocalyptic,1449396289 +151303,91972,shelter,1449395819 +151303,91972,survival,1449395809 +151303,92008,female assassin,1449245744 +151303,92422,haunted house,1449238632 +151303,93475,haunted house,1449238609 +151303,93578,forest,1449393938 +151303,93578,kidnapping,1449394047 +151303,93578,mountain climbing,1449394017 +151303,97946,cannibalism,1449240630 +151303,100383,lesbian,1449507261 +151303,103075,home invasion,1449169838 +151303,103449,Erotic,1449505031 +151303,103449,lesbian,1449505066 +151303,103449,murder,1449505094 +151303,103727,cannibalism,1449240588 +151303,104457,home invasion,1449169788 +151303,104925,witness protection,1449501332 +151303,113573,femme fatale,1449505832 +151303,139267,Erotic,1449504485 +151303,139267,Femme Fatale,1449504506 +151303,139267,Seduction,1449504499 +151356,364,africa,1447679395 +151356,364,animation,1447679400 +151356,364,inspirational,1447679386 +151356,364,musical,1447679397 +151356,1907,animation,1447679356 +151356,1907,family,1447679358 +151356,1907,Girl Power,1447679346 +151356,1907,heroine,1447679359 +151356,1907,strong female lead,1447679347 +151356,2762,Bruce Willis,1447678959 +151356,2762,m. night shyamalan,1447678956 +151356,2762,plot twist,1447678973 +151356,2762,psychological,1447678963 +151356,2762,unpredictable,1447678970 +151356,3996,Ang Lee,1447677818 +151356,3996,beautiful,1447677825 +151356,3996,beautifully filmed,1447677815 +151356,3996,visually stunning,1447677829 +151356,4262,gangster,1447680222 +151356,4262,Michelle Pfeiffer,1447680217 +151356,4886,Animation,1447677980 +151356,4886,cute,1447677985 +151356,4886,hilarious,1447677987 +151356,4973,Audrey Tautou,1447677668 +151356,4973,beautifully filmed,1447677643 +151356,4973,music,1447677654 +151356,4995,insanity,1447678103 +151356,4995,mathematics,1447678062 +151356,4995,mental illness,1447678088 +151356,4995,psychology,1447678098 +151356,4995,twist ending,1447678099 +151356,5618,anime,1447678185 +151356,5618,beautiful,1447678203 +151356,5618,Hayao Miyazaki,1447678187 +151356,5618,Japan,1447678195 +151356,5971,Strong Girl Characters,1453722523 +151356,6377,animation,1447678007 +151356,6377,Comedy,1447678021 +151356,6377,too cute,1447678020 +151356,6539,adventure,1447677955 +151356,6539,magic,1447677962 +151356,8983,amazing photography,1447677795 +151356,8983,Beautiful,1447677803 +151356,8983,beautifully filmed,1447677781 +151356,8983,Zhang Yimou,1447677785 +151356,30749,Africa,1447678351 +151356,30749,ethnic conflict,1447678362 +151356,30749,genocide,1447678349 +151356,30749,Tragedy,1447678358 +151356,57183,Dyslexia,1447678646 +151356,71619,Audrey Tautou,1447678471 +151356,78313,gang,1447679893 +151356,79091,cute,1447678741 +151356,79091,heartwarming,1447678740 +151356,79091,quirky,1447678744 +151356,79132,suspense,1447679085 +151356,79132,thought-provoking,1447679081 +151356,81591,ballet,1447677743 +151356,81591,disturbing,1447677735 +151356,81591,mental illness,1447677757 +151356,81591,psychological,1447677739 +151356,81591,thriller,1447677731 +151356,81591,twist ending,1447677730 +151356,81591,visceral,1447677747 +151356,97938,Ang Lee,1447677857 +151356,97938,cinematography,1447677864 +151356,97938,spiritual journey,1447677868 +151356,97938,twist ending,1447677872 +151356,104841,beautiful,1447679292 +151356,104841,cinematography,1447679289 +151356,104841,Girl Power,1447679281 +151356,104841,suspense,1447679309 +151356,105844,cinematography,1447678396 +151356,105844,slavery,1447678394 +151356,109487,artificial intelligence,1447679213 +151356,109487,good science,1447679215 +151356,109487,space,1447679211 +151356,115617,Animation,1447678694 +151356,115617,cute,1447678708 +151356,115617,japanese influence,1447678705 +151356,115617,robotics,1447678697 +151358,2146,post-college,1229142995 +151358,37384,restaurant,1229142458 +151358,40955,transvestite,1229140689 +151358,44889,satire,1229140863 +151358,61323,dark comedy,1228073481 +151362,260,classic sci-fi,1439889316 +151362,260,sci-fi,1439889308 +151396,1246,bittersweet,1442733414 +151396,1246,Coming of age,1442733407 +151396,1246,friendship,1442733399 +151396,1246,inspirational,1442733403 +151396,96821,amazing soundtrack,1442733447 +151396,96821,based on a book,1442733454 +151396,96821,bittersweet,1442733440 +151396,96821,character development,1442733432 +151396,96821,coming of age,1442733429 +151396,96821,depression,1442733427 +151396,96821,Emma Watson,1442733434 +151396,96821,Romantic,1442733489 +151396,96821,Stephen Chbosky,1442733467 +151396,96821,touching,1442733443 +151410,10,seen more than once,1330628407 +151410,19,detective,1367905713 +151410,32,post-apocalyptic,1358882354 +151410,32,psychology,1358882360 +151410,32,time travel,1358882355 +151410,32,twist ending,1358882356 +151410,39,teen movie,1367905451 +151410,47,crime,1265155211 +151410,47,disturbing,1265155205 +151410,47,Morgan Freeman,1265155239 +151410,47,powerful ending,1265155223 +151410,47,psychology,1265155207 +151410,47,seen more than once,1330628317 +151410,47,serial killer,1231447943 +151410,47,twist ending,1265155237 +151410,50,organized crime,1284840057 +151410,50,seen more than once,1330628338 +151410,50,twist ending,1284840049 +151410,110,historical,1265154910 +151410,110,war,1265154908 +151410,151,18th century,1396444259 +151410,151,Scotland,1396444264 +151410,151,sword fight,1396444251 +151410,153,superhero,1399968288 +151410,153,Tommy Lee Jones,1399968292 +151410,260,Sci-fi,1329995507 +151410,260,seen more than once,1330628510 +151410,260,Soundtrack,1329995507 +151410,293,crime,1265154774 +151410,293,hitman,1329995369 +151410,293,seen more than once,1330628300 +151410,296,crime,1420549232 +151410,296,dark comedy,1265154704 +151410,296,drugs,1265154704 +151410,296,great dialogue,1420549232 +151410,296,multiple storylines,1265154704 +151410,296,organized crime,1280425311 +151410,296,quentin tarantino,1420549232 +151410,296,seen more than once,1330628313 +151410,296,soundtrack,1329995327 +151410,318,adapted from:book,1274718482 +151410,318,Morgan Freeman,1274717652 +151410,318,prison,1231449208 +151410,346,musicians,1367905429 +151410,353,adapted from:comic,1231453562 +151410,353,gothic,1231453572 +151410,356,comedy,1421182095 +151410,356,heartwarming,1421182095 +151410,356,history,1265155620 +151410,356,inspirational,1421182095 +151410,356,psychology,1265155601 +151410,356,seen more than once,1330628284 +151410,356,Vietnam,1231448482 +151410,383,biography,1396107322 +151410,457,predictable,1312040889 +151410,475,corruption,1320082400 +151410,475,historical,1320082380 +151410,475,prison,1320082389 +151410,509,atmospheric,1329645792 +151410,519,Bad acting,1357658375 +151410,519,crappy sequel,1357658379 +151410,519,PG-13,1357658398 +151410,529,based on a true story,1399407561 +151410,529,characters,1399407616 +151410,529,chess,1399407587 +151410,529,child actors,1399407552 +151410,529,ending differs from real life,1399407674 +151410,529,predictable,1399407556 +151410,549,musicians,1367905429 +151410,558,boring,1274711804 +151410,589,action,1330627874 +151410,589,seen more than once,1330627896 +151410,589,stylized,1330627886 +151410,590,based on a book,1395525950 +151410,590,bittersweet,1395525940 +151410,590,culture clash,1395525963 +151410,590,historical,1395525938 +151410,592,atmospheric,1398067333 +151410,592,dark,1398067435 +151410,592,Jack Nicholson,1398067372 +151410,592,seen more than once,1398067361 +151410,592,stylized,1278878318 +151410,592,Tim Burton,1398067381 +151410,593,disturbing,1422037200 +151410,593,psychology,1422037184 +151410,593,serial killer,1422037187 +151410,593,tense,1422037197 +151410,594,animation,1447425733 +151410,594,fairy tale,1447425735 +151410,608,Frances McDormand,1330322087 +151410,736,boring,1274712906 +151410,750,satirical,1328643430 +151410,778,adapted from:book,1276987953 +151410,778,crime,1378968564 +151410,778,dark comedy,1276987936 +151410,778,Irvine Welsh,1276987948 +151410,778,seen more than once,1378968552 +151410,778,social commentary,1276987929 +151410,858,organized crime,1438088506 +151410,866,organized crime,1371198075 +151410,866,stylized,1371198045 +151410,866,tense,1371198058 +151410,912,atmospheric,1349606528 +151410,919,dreamlike,1311265014 +151410,923,atmospheric,1312133514 +151410,924,adapted from:book,1357833894 +151410,924,sci-fi,1357833916 +151410,968,black and white,1382878242 +151410,968,brilliant ending,1382878233 +151410,968,ominous,1382878250 +151410,968,zombies,1382878236 +151410,1033,unlikely friendships,1367905688 +151410,1036,action,1356806026 +151410,1036,humorous,1356806007 +151410,1036,tense,1356806009 +151410,1080,Monty Python,1147413148 +151410,1088,dancing,1367905606 +151410,1089,organized crime,1284752353 +151410,1089,stylish,1367905211 +151410,1089,stylized,1284752360 +151410,1090,history,1370091106 +151410,1090,psychological,1370091070 +151410,1090,Vietnam War,1370091080 +151410,1092,Notable Nudity,1382542865 +151410,1096,based on a book,1389474416 +151410,1096,friendship,1389474437 +151410,1096,mental illness,1389474410 +151410,1096,multiple languages,1389474526 +151410,1096,nazi,1389474431 +151410,1096,secrets,1389474412 +151410,1136,british comedy,1412253068 +151410,1136,medieval,1412253086 +151410,1136,satire,1412253054 +151410,1188,dancing,1367905606 +151410,1196,sci-fi,1329995521 +151410,1196,seen more than once,1330628483 +151410,1196,soundtrack,1329995533 +151410,1196,space,1231449065 +151410,1198,adventure,1314193589 +151410,1200,action,1360781367 +151410,1200,atmospheric,1284639422 +151410,1200,military,1360781353 +151410,1200,suspense,1360781338 +151410,1203,good dialogue,1278601235 +151410,1203,social commentary,1278601238 +151410,1206,dystopia,1329996552 +151410,1206,masterpiece,1367905053 +151410,1206,psychology,1329996569 +151410,1206,satire,1329996546 +151410,1206,seen more than once,1330628389 +151410,1206,social commentary,1329996545 +151410,1206,violence,1329996564 +151410,1208,disturbing,1375695709 +151410,1208,psychological,1375695715 +151410,1208,surreal,1375695712 +151410,1208,Vietnam war,1375695727 +151410,1210,sci-fi,1329995543 +151410,1210,seen more than once,1330628514 +151410,1210,soundtrack,1329995550 +151410,1213,organized crime,1329996389 +151410,1213,seen more than once,1330628411 +151410,1214,atmospheric,1329996663 +151410,1214,dark,1329996674 +151410,1214,seen more than once,1330628379 +151410,1214,suspense,1329996667 +151410,1219,Alfred Hitchcock,1147441566 +151410,1221,great acting,1438719169 +151410,1221,organized crime,1438719154 +151410,1222,boot camp,1357727755 +151410,1222,Music,1357727782 +151410,1222,war,1357727766 +151410,1227,atmospheric,1360705098 +151410,1227,Prohibition,1360705092 +151410,1233,claustrophobic,1413297261 +151410,1233,tense,1413297263 +151410,1233,thought-provoking,1413297265 +151410,1233,World War II,1413297268 +151410,1240,Action,1328890321 +151410,1240,sci-fi,1328890317 +151410,1240,seen more than once,1330628333 +151410,1242,American Civil War,1403953902 +151410,1242,true story,1403953904 +151410,1246,inspirational,1320694437 +151410,1246,philosophy,1320694440 +151410,1247,satirical,1334598872 +151410,1249,assassin,1314462628 +151410,1249,Jean Reno,1314462637 +151410,1252,masterpiece,1367905053 +151410,1254,gold rush,1367687658 +151410,1254,Humphrey Bogart,1367687647 +151410,1254,paranoia,1367687673 +151410,1258,atmospheric,1373015291 +151410,1258,psychological,1373015295 +151410,1259,friendship,1320773428 +151410,1265,deja vu,1329996360 +151410,1265,seen more than once,1330628415 +151410,1265,surreal,1329996368 +151410,1266,BOUNTY HUNTERS,1348936983 +151410,1266,Clint Eastwood,1348936992 +151410,1266,Morgan Freeman,1348936994 +151410,1276,atmospheric,1398800100 +151410,1276,fighting the system,1398800166 +151410,1276,humorous,1398800112 +151410,1283,atmospheric,1383071832 +151410,1283,suspense,1383071844 +151410,1288,mockumentary,1380737446 +151410,1288,rock and roll,1380737439 +151410,1288,satirical,1380737457 +151410,1293,biography,1414410970 +151410,1293,India,1414410973 +151410,1293,religion,1414410992 +151410,1320,BAD special effects,1382611309 +151410,1320,no suspense,1382611326 +151410,1377,dark,1399143296 +151410,1377,superhero,1399143280 +151410,1408,excellent historical depiction,1338049688 +151410,1500,assassin,1329995122 +151410,1500,dark comedy,1329995127 +151410,1500,soundtrack,1329995117 +151410,1527,dystopic future,1329933180 +151410,1527,satirical,1329933159 +151410,1527,seen more than once,1330628276 +151410,1527,stylized,1265155074 +151410,1562,silly,1400183516 +151410,1562,superhero,1400183530 +151410,1584,adapted from:book,1357845090 +151410,1584,aliens,1357844949 +151410,1584,existentialism,1357844969 +151410,1584,inspirational,1357844956 +151410,1584,science,1357844946 +151410,1584,space travel,1357844945 +151410,1590,dark,1377377219 +151410,1590,hallucination,1377377196 +151410,1590,hell,1377377206 +151410,1594,amorality,1397755431 +151410,1594,misogyny,1397755405 +151410,1594,predictable,1397755419 +151410,1594,psychological,1397755414 +151410,1617,great ending,1367905637 +151410,1625,Mystery,1284988893 +151410,1625,unrealistic,1284988907 +151410,1639,great dialogue,1414153590 +151410,1639,sexuality,1414153587 +151410,1653,genetic selection,1311257175 +151410,1676,satire,1329995999 +151410,1676,seen more than once,1330628488 +151410,1676,social commentary,1329996027 +151410,1681,idiotic,1274711861 +151410,1682,dystopia,1329996760 +151410,1682,seen more than once,1330628537 +151410,1682,social commentary,1329996757 +151410,1748,atmospheric,1284639367 +151410,1748,dystopia,1284639358 +151410,1748,thought-provoking,1284639371 +151410,1834,con artists,1395689085 +151410,1834,implausible,1395689099 +151410,1834,twist ending,1395689088 +151410,1884,drugs,1231447673 +151410,1884,hallucinatory,1231447712 +151410,1884,hangover,1231447738 +151410,1884,road movie,1231447700 +151410,1884,satirical,1231447694 +151410,1909,conspiracy,1441739705 +151410,1921,notable soundtrack,1344609042 +151410,1921,psychology,1344609006 +151410,1927,anti-war,1446553270 +151410,1927,German perspective,1446553273 +151410,1927,world war I,1446553267 +151410,1945,organized crime,1365792067 +151410,1961,psychology,1302519194 +151410,2003,Christmas,1376218109 +151410,2003,Gizmo,1376218118 +151410,2003,references for the sake of references,1376218177 +151410,2003,slapstick,1376218196 +151410,2009,atmospheric,1359299157 +151410,2009,dystopia,1359299152 +151410,2019,atmospheric,1327523504 +151410,2019,masterpiece,1367905054 +151410,2019,samurai,1327523502 +151410,2160,atmospheric,1393177283 +151410,2160,paranoia,1393177308 +151410,2160,surreal,1393177292 +151410,2194,corruption,1288905323 +151410,2194,organized crime,1329995933 +151410,2194,Prohibition,1288905314 +151410,2194,seen more than once,1330628500 +151410,2232,original,1287360058 +151410,2232,psychology,1287360044 +151410,2268,corruption,1285018930 +151410,2268,tense,1285018937 +151410,2311,adapted from:book,1357833781 +151410,2311,artificial intelligence,1357833791 +151410,2311,cold war,1357833811 +151410,2311,space travel,1357833794 +151410,2324,bittersweet,1420550873 +151410,2324,emotional,1420550920 +151410,2324,father-son relationship,1420550916 +151410,2324,funny,1420550956 +151410,2324,holocaust,1420550906 +151410,2324,optimism,1420550893 +151410,2324,Roberto Benigni,1420550883 +151410,2329,powerful ending,1274711404 +151410,2329,prison,1231448918 +151410,2329,racism,1231448913 +151410,2329,seen more than once,1330628267 +151410,2329,thought-provoking,1274711396 +151410,2378,dormitory,1414316446 +151410,2378,Michael Winslow,1414316395 +151410,2378,riot,1414316429 +151410,2378,seen more than once,1414316414 +151410,2378,silly,1414316403 +151410,2403,post-traumatic stress disorder,1278787807 +151410,2403,social commentary,1278787825 +151410,2437,gay,1355420294 +151410,2437,Stephen Fry,1355420285 +151410,2442,musicians,1367905429 +151410,2451,boring,1274712240 +151410,2451,idiotic,1274712304 +151410,2529,dystopia,1314124303 +151410,2529,seen more than once,1330628307 +151410,2529,social commentary,1314124306 +151410,2529,twist ending,1314124309 +151410,2530,social commentary,1314386557 +151410,2533,social commentary,1314439261 +151410,2533,time travel,1314439281 +151410,2550,supernatural,1367905140 +151410,2571,atmospheric,1265155385 +151410,2571,dystopia,1265155366 +151410,2571,post apocalyptic,1274710866 +151410,2571,seen more than once,1329995757 +151410,2571,stylized,1265155429 +151410,2571,virtual reality,1265155369 +151410,2579,black and white,1368971038 +151410,2579,crime,1368971095 +151410,2579,not linear,1368971184 +151410,2579,psychology,1368971055 +151410,2579,Twist Ending,1368971023 +151410,2594,psychology,1334745498 +151410,2594,surreal,1334745505 +151410,2594,Twist ending,1334745510 +151410,2644,bad ending,1349620372 +151410,2644,gothic,1349620378 +151410,2672,dystopia,1354792953 +151410,2672,virtual reality,1354792910 +151410,2716,supernatural,1367905140 +151410,2723,parody,1443790132 +151410,2723,STOOOOPID,1443790146 +151410,2723,superheroes,1443790136 +151410,2728,historical,1323897140 +151410,2728,long,1323897154 +151410,2728,Rome,1323897133 +151410,2728,slavery,1323897135 +151410,2730,18th century,1397836659 +151410,2730,atmospheric,1397836657 +151410,2730,cinematography,1397836670 +151410,2730,music,1397836669 +151410,2730,narrated,1397836674 +151410,2762,excellent script,1367905170 +151410,2762,ghosts,1231449565 +151410,2762,twist ending,1231449557 +151410,2788,British,1411996699 +151410,2788,clip show,1411996695 +151410,2788,sketch comedy,1411996704 +151410,2858,midlife crisis,1274768942 +151410,2858,social commentary,1274768908 +151410,2866,musicians,1367905429 +151410,2872,brutal,1410814570 +151410,2872,King Arthur,1410814529 +151410,2872,medieval,1410814574 +151410,2933,melancholic,1367904761 +151410,2959,atmospheric,1265155680 +151410,2959,crime,1265155643 +151410,2959,psychology,1265155666 +151410,2959,satirical,1265155651 +151410,2959,seen more than once,1330628280 +151410,2959,social commentary,1420807477 +151410,2959,thought-provoking,1420807493 +151410,2959,twist ending,1265155661 +151410,2959,violence,1231448561 +151410,2976,atmospheric,1330413595 +151410,2985,superhero,1312030741 +151410,2986,crappy sequel,1357658337 +151410,2987,animation & live action interact,1371241837 +151410,2987,private detective,1371241828 +151410,2997,character that makes you spit fire,1345641602 +151410,2997,dark comedy,1345641568 +151410,2997,psychology,1345641580 +151410,2997,surreal,1345641574 +151410,3000,adventure,1231451459 +151410,3005,detective,1367905713 +151410,3013,splatter,1367905266 +151410,3018,H.P. Lovecraft,1274710605 +151410,3018,Nudity (Full Frontal),1274710619 +151410,3018,splatter,1367905266 +151410,3018,zombies,1274710629 +151410,3022,Civil War,1392240445 +151410,3022,silent movie,1392240434 +151410,3022,trains,1392240452 +151410,3033,parody,1396983221 +151410,3034,medieval,1398076084 +151410,3034,talking animals,1398076085 +151410,3052,controversial,1329996479 +151410,3052,satire,1329996474 +151410,3052,seen more than once,1330628399 +151410,3053,biographical,1388843261 +151410,3053,mental illness,1388843254 +151410,3053,religion,1388843256 +151410,3081,atmospheric,1280422768 +151410,3081,Dark,1280422766 +151410,3081,stylized,1280422778 +151410,3147,death penalty,1231452135 +151410,3147,prison,1231452096 +151410,3213,adapted from:comic,1231453078 +151410,3213,Batman,1231453085 +151410,3252,atmospheric,1359400454 +151410,3252,blindness,1359400469 +151410,3252,great acting,1359400451 +151410,3253,Alice Cooper,1384080373 +151410,3253,music,1384080366 +151410,3386,conspiracy theory,1384706037 +151410,3418,women,1367905300 +151410,3471,effects,1440689001 +151410,3471,ending,1440688972 +151410,3471,first contact,1440689014 +151410,3471,first half,1440688965 +151410,3551,agents,1443956152 +151410,3551,ending,1443956148 +151410,3551,suspense,1443956155 +151410,3578,history,1265154585 +151410,3578,Ridley Scott,1265154585 +151410,3578,Rome,1329995805 +151410,3578,seen more than once,1330628288 +151410,3578,violence,1329995806 +151410,3594,dancing,1367905606 +151410,3671,satirical,1302254060 +151410,3676,atmospheric,1351007962 +151410,3676,ominous,1351007970 +151410,3676,surreal,1351007966 +151410,3693,splatter,1367905266 +151410,3735,70s,1398104652 +151410,3735,atmospheric,1398104665 +151410,3735,corruption,1398104624 +151410,3735,true story,1398104616 +151410,3735,undercover cop,1398104649 +151410,3761,gangs,1231448805 +151410,3761,prison,1231448803 +151410,3761,violence,1231448818 +151410,3791,dancing,1367905606 +151410,3793,adapted from:comic,1231453802 +151410,3798,predictable,1392147865 +151410,3798,suspenseful,1392147828 +151410,3896,bad plot,1354729787 +151410,3896,endless ammo,1354729966 +151410,3896,weapon choreography,1354729799 +151410,3949,addiction,1231447802 +151410,3949,drugs,1231447761 +151410,3949,psychology,1231449249 +151410,3969,idealistic,1231449957 +151410,3969,twist ending,1231449938 +151410,3999,cheesy,1415110613 +151410,3999,mountain climbing,1415110574 +151410,3999,silly premise,1415110611 +151410,3999,special effects,1415110622 +151410,4008,anti-war,1407766450 +151410,4008,politics,1407766455 +151410,4008,Vietnam War,1407766444 +151410,4011,Crime,1276869799 +151410,4011,Great dialogue,1276869815 +151410,4011,stylish,1367905210 +151410,4011,twist ending,1276869818 +151410,4019,friendship,1355575524 +151410,4019,inspiring,1355575493 +151410,4019,writers,1355575537 +151410,4226,great ending,1367905637 +151410,4226,nonlinear,1368959345 +151410,4226,psychology,1274717594 +151410,4226,seen more than once,1330628432 +151410,4226,stylized,1274717589 +151410,4226,twist ending,1274717612 +151410,4262,organized crime,1278613936 +151410,4262,violence,1278613944 +151410,4427,intelligent,1410854954 +151410,4427,plotting,1410854980 +151410,4545,80s,1414515770 +151410,4545,artificial intelligence,1414515741 +151410,4545,existentialism,1414515814 +151410,4713,ominous,1344596237 +151410,4720,supernatural,1367905140 +151410,4725,bad pacing,1291403636 +151410,4725,psychology,1291403631 +151410,4754,atmospheric,1299003784 +151410,4754,disturbing,1299003801 +151410,4754,religion,1299003800 +151410,4754,twist ending,1299003791 +151410,4768,criminal mastermind,1384453912 +151410,4768,gambling,1384453913 +151410,4776,police corruption,1231449025 +151410,4874,atmospheric,1297620088 +151410,4874,philosophical,1297620068 +151410,4878,atmospheric,1276469469 +151410,4878,psychology,1276469417 +151410,4878,seen more than once,1330628403 +151410,4878,social commentary,1276469438 +151410,4881,black and white,1334357727 +151410,4881,great cinematography,1334357714 +151410,4881,narrated,1334357718 +151410,4975,surreal,1312226648 +151410,4993,atmospheric,1288965065 +151410,4993,seen more than once,1330628546 +151410,4995,inspirational,1330541329 +151410,4995,psychology,1330541321 +151410,5064,Amazing Cinematography,1413922590 +151410,5064,class society,1413922645 +151410,5064,prison escape,1413922596 +151410,5064,religion,1413922604 +151410,5064,revenge,1413922592 +151410,5096,cartoonish,1371418060 +151410,5291,multiple storylines,1369072868 +151410,5291,samurai,1369072887 +151410,5349,adapted from:comic,1231453839 +151410,5349,superhero,1356296102 +151410,5385,musicians,1367905429 +151410,5418,action,1311605837 +151410,5569,kidnapping,1377454208 +151410,5569,rape,1377454205 +151410,5569,unintentional comedy,1377454255 +151410,5569,violent,1377454217 +151410,5598,idiotic,1274712895 +151410,5608,prison,1320357847 +151410,5608,psychology,1320357841 +151410,5618,adventure,1231451310 +151410,5618,fairy tale,1231451394 +151410,5630,psychology,1357666850 +151410,5690,history,1265155573 +151410,5690,seen more than once,1330628291 +151410,5690,tragedy,1265155535 +151410,5690,war,1231450597 +151410,5690,World War II,1231448330 +151410,5693,dancing,1367905606 +151410,5747,anti-war,1446056443 +151410,5747,glancing,1446057603 +151410,5747,World War I,1446057252 +151410,5785,crazy,1365773806 +151410,5785,simply: why???,1365773798 +151410,5820,musicians,1367905429 +151410,5902,dark comedy,1419627727 +151410,5902,melancholy,1419627741 +151410,5902,profound,1419627758 +151410,5909,disturbing,1284583360 +151410,5952,atmospheric,1288993279 +151410,5952,seen more than once,1330628507 +151410,5952,war,1288993274 +151410,5989,con artists,1359362234 +151410,5989,true story,1359362228 +151410,5992,depression,1360616478 +151410,5992,intellectual,1360616458 +151410,5992,lesbian,1360616466 +151410,5992,nonlinear,1360616464 +151410,6016,stylized,1284811270 +151410,6016,violence,1284811275 +151410,6193,mentor,1367905017 +151410,6214,constantly rotating filming,1406148667 +151410,6214,controversial,1406148552 +151410,6214,disturbing,1406148558 +151410,6214,mindfuck,1406148687 +151410,6214,nonlinear,1406148566 +151410,6214,rape-revenge,1406149022 +151410,6214,unique,1406148562 +151410,6333,adapted from:comic,1231453828 +151410,6350,adventure,1396798285 +151410,6350,pirates,1396798293 +151410,6350,robots,1396798307 +151410,6350,steampunk,1396798302 +151410,6365,sequel,1344958012 +151410,6534,adapted from:comic,1231454193 +151410,6537,Twist ending,1330867649 +151410,6539,adventure,1231453892 +151410,6539,pirates,1231453877 +151410,6586,Nudity (Topless),1275670458 +151410,6586,teen,1275670452 +151410,6708,con artists,1354567770 +151410,6708,father daughter relationship,1354567755 +151410,6708,obsessive compulsive disorder,1354567725 +151410,6731,menacing,1383048915 +151410,6731,precipitous endling,1383048900 +151410,6731,rushed acting,1383048907 +151410,6731,stereotyped characters,1383048905 +151410,6731,zombies,1383048911 +151410,6785,dancing,1367905606 +151410,6787,based on a book,1389526919 +151410,6787,conspiracy,1389526907 +151410,6787,investigation,1389526931 +151410,6787,journalism,1389526904 +151410,6818,bleak,1414170008 +151410,6818,disturbing,1414169974 +151410,6818,gritty,1414170003 +151410,6818,harsh,1414170042 +151410,6818,World War II,1414169997 +151410,6874,masterpiece,1367905054 +151410,6934,death scene,1344958002 +151410,6934,sequel,1344958002 +151410,7099,adventure,1396798350 +151410,7099,environmental,1396798376 +151410,7099,post-apocalyptic,1396798364 +151410,7099,steampunk,1396798386 +151410,7147,bittersweet,1354996562 +151410,7147,stylized,1354996565 +151410,7153,seen more than once,1330628549 +151410,7217,noir thriller,1367904846 +151410,7223,noir thriller,1367904846 +151410,7235,brutality,1367905515 +151410,7335,noir thriller,1367904846 +151410,7354,Organized crime,1318263263 +151410,7354,supporting characters,1318263301 +151410,7360,Bad remake,1280424510 +151410,7360,mmm... brains...,1147682513 +151410,7360,post-apocalyptic,1280424524 +151410,7360,zombies,1280424522 +151410,7361,bittersweet,1397064811 +151410,7361,surreal,1397064846 +151410,7361,thought-provoking,1397064817 +151410,7371,philosophical,1344620113 +151410,7371,social commentary,1344620112 +151410,7387,social commentary,1382906210 +151410,7387,zombies,1382906213 +151410,7502,emotional,1446113947 +151410,7502,realistic,1311613325 +151410,7502,though provoking,1446113950 +151410,7502,World War II,1446113929 +151410,7814,historical,1368472188 +151410,7814,Rod Steiger,1368472227 +151410,7943,noir thriller,1367904846 +151410,7982,atmospheric,1329996889 +151410,7982,psychology,1329996893 +151410,7982,seen more than once,1330628518 +151410,8014,Atmospheric,1281554875 +151410,8014,great photograpy,1281554867 +151410,8147,philosophy,1302420709 +151410,8147,social commentary,1302420709 +151410,8370,humour,1310059933 +151410,8370,one swipe swordfights,1310059900 +151410,8372,adapted from:comic,1231454209 +151410,8464,american idiocy,1274712879 +151410,8464,boring,1274712886 +151410,8528,Idiotic,1280424462 +151410,8636,adapted from:comic,1356360182 +151410,8636,sequel,1356360126 +151410,8636,superhero,1356360118 +151410,8641,only a few laughs,1380187781 +151410,8665,car chase,1311605857 +151410,8665,fast paced,1311605874 +151410,8783,boring,1274712936 +151410,8783,idiotic,1274712932 +151410,8783,twist ending,1231449739 +151410,8798,assassin,1276469661 +151410,8798,atmospheric,1276469634 +151410,8874,mmm... brains...,1147682481 +151410,8906,controversial,1300618691 +151410,8949,dark comedy,1409573020 +151410,8949,friendship,1409573027 +151410,8949,obsession,1409573032 +151410,8949,road trip,1409573022 +151410,8949,wine,1444413172 +151410,8981,dialogue,1419777338 +151410,8981,good acting,1419777342 +151410,8981,relationships,1419777358 +151410,26007,dialogue,1329995966 +151410,26007,seen more than once,1330628493 +151410,26007,World War II,1274711481 +151410,26285,parody,1444306874 +151410,26285,scifi,1444305480 +151410,26326,social criticism,1416833102 +151410,26326,surreal,1416833090 +151410,26326,symbolism,1416833100 +151410,26717,boring,1445070140 +151410,26717,grifter,1445070115 +151410,27074,adapted from:book,1356774227 +151410,27074,bad adaptation,1356774242 +151410,27134,atmospheric,1402472546 +151410,27134,cheesy ending,1402472586 +151410,27134,cinematography,1402472527 +151410,27134,dark,1402472570 +151410,27592,brutality,1367905515 +151410,27611,post-apocalyptic,1283097453 +151410,27611,sci-fi,1329996588 +151410,27611,seen more than once,1330628383 +151410,27611,space,1329996586 +151410,27700,boarding school,1231448890 +151410,27700,violence,1231448859 +151410,27815,mentor,1367905017 +151410,27831,organized crime,1356722956 +151410,27831,stylish,1367905211 +151410,27839,idiotic,1274711757 +151410,27839,silly,1274711785 +151410,30793,Bad remake,1280424599 +151410,30810,great soundtrack,1320216693 +151410,30810,whimsical,1320216699 +151410,30812,aviation,1444403637 +151410,30812,biography,1444403638 +151410,30812,Leonardo DiCaprio,1444403549 +151410,30812,long,1444403650 +151410,30820,boring,1274712944 +151410,31410,historical,1328636485 +151410,31424,bad adaptation,1274712719 +151410,31424,idiotic,1274712713 +151410,31424,Uwe Boll,1349687756 +151410,31424,Worst movie ever!,1274712681 +151410,31427,twist ending,1231450987 +151410,31696,heaven and hell,1329996502 +151410,31696,seen more than once,1330628395 +151410,32587,adapted from:comic,1231453415 +151410,32587,artistic,1231447928 +151410,33794,adapted from:comic,1231452623 +151410,33794,atmospheric,1325181248 +151410,33794,Batman,1231453482 +151410,33794,dark,1325181264 +151410,33794,Morgan Freeman,1325181299 +151410,33834,idiotic,1274711960 +151410,34150,adapted from:comic,1231452653 +151410,34150,idiotic,1274712328 +151410,34405,black comedy,1277219003 +151410,34405,dystopia,1277219005 +151410,34405,Firefly,1277219022 +151410,34532,Hoodoo,1231449806 +151410,34532,Twist Ending,1231449790 +151410,36401,Dull,1280424658 +151410,37741,biopic,1420483217 +151410,37741,death penalty,1420483207 +151410,37741,Philip Seymour Hoffman,1420483201 +151410,37741,thought provoking,1420483213 +151410,38061,film noir,1231451752 +151410,38061,satire,1231451529 +151410,40414,based on a true story,1356862084 +151410,40414,Christmas,1356862104 +151410,40414,multinational settings,1356862089 +151410,40414,World War I,1356862099 +151410,40586,black and white,1384811151 +151410,40586,Frank,1384811216 +151410,40586,homeless,1384811183 +151410,41566,good versus evil,1274712491 +151410,41566,idiotic,1274712457 +151410,44191,dystopia,1265155163 +151410,44191,idealism,1265155165 +151410,44191,seen more than once,1330628341 +151410,44191,social commentary,1274710737 +151410,44195,corruption,1329996811 +151410,44195,dark comedy,1329996822 +151410,44195,satire,1329996816 +151410,44195,seen more than once,1330628532 +151410,44195,social commentary,1329996813 +151410,44199,bank robbery,1231450247 +151410,44199,great ending,1367905637 +151410,44199,twist ending,1231450251 +151410,44665,great ending,1367905637 +151410,44665,hitman,1329996140 +151410,44665,organized crime,1329996141 +151410,44665,seen more than once,1330628428 +151410,44665,twist ending,1329996142 +151410,44709,mentor,1367905016 +151410,45186,Incredible!,1147682452 +151410,45499,adapted from:comic,1231453707 +151410,45720,Chick flick,1280424492 +151410,45722,Adventure,1231453923 +151410,45722,pirates,1231453914 +151410,45732,stupid,1285057461 +151410,46530,adapted from:comic,1231455375 +151410,47200,fast paced,1311524523 +151410,48043,atmospheric,1384463501 +151410,48043,death,1384463529 +151410,48043,dreamlike,1384463505 +151410,48043,multiple storylines,1384463518 +151410,48043,philosophical,1384463509 +151410,48043,visually appealing,1384463510 +151410,48322,pranks,1368609824 +151410,48394,imagination,1231450553 +151410,48394,violence,1231450550 +151410,48394,war,1231450581 +151410,48394,world war II,1231450577 +151410,48516,Crime,1265155699 +151410,48516,organized crime,1231448687 +151410,48516,police corruption,1231448738 +151410,48516,remake,1265155758 +151410,48516,tense,1265155761 +151410,48516,undercover cop,1265155708 +151410,48516,violence,1231448703 +151410,48738,historical,1278832135 +151410,48825,Afghanistan,1391623846 +151410,48825,Soviet Union,1391623841 +151410,49272,James Bond,1231453200 +151410,49272,poker,1231453248 +151410,49396,Jack Black,1275670532 +151410,49396,music,1275670555 +151410,49396,rock and roll,1275670537 +151410,49396,seen more than once,1330628524 +151410,50601,bullying,1211173620 +151410,50794,hitman,1231450891 +151410,50794,humorous,1231450960 +151410,50794,organized crime,1231450873 +151410,51080,corruption,1317570861 +151410,51080,espionage,1317570853 +151410,51638,Hangover,1231447642 +151410,51662,adapted from:comic,1231452981 +151410,51662,artistic,1231453019 +151410,52722,adapted from:comic,1356630265 +151410,52722,superhero,1356630257 +151410,53125,adventure,1231453952 +151410,53125,pirates,1231453934 +151410,53999,Bad copy of saw,1274712562 +151410,53999,Stupid people,1274712559 +151410,54171,atmospheric,1397160061 +151410,54171,bad ending,1397160121 +151410,54171,scenery,1397160065 +151410,54171,surreal,1397160090 +151410,55765,crime,1265154388 +151410,55765,drugs,1265154388 +151410,55765,general,1265154357 +151410,55820,seen more than once,1330628442 +151410,55820,twist ending,1329996061 +151410,55820,violent,1231449270 +151410,55908,cheesy,1314705525 +151410,55908,excellent script,1367905170 +151410,55908,Excellent use of dialogue,1314705510 +151410,55908,intellectual,1314705507 +151410,55908,thought-provoking,1314705511 +151410,56145,apocalypse,1280267596 +151410,56145,atmospheric,1329996096 +151410,56145,character that makes you spit fire,1345641627 +151410,56145,preacher,1280267591 +151410,56145,seen more than once,1330628438 +151410,56145,stephen king,1280267670 +151410,56169,boring,1274712665 +151410,56169,twist ending,1231451052 +151410,56339,ghosts,1231449904 +151410,56339,supernatural,1367905141 +151410,56339,twist ending,1231449853 +151410,57464,psychology,1376986224 +151410,57464,suicide,1376988628 +151410,57464,surreal,1376986224 +151410,57528,brutality,1278787917 +151410,57528,War,1278787945 +151410,58559,Atmospheric,1274711291 +151410,58559,Heath Ledger,1274711297 +151410,58559,psychology,1274711351 +151410,58559,seen more than once,1330628271 +151410,59103,unoriginal,1346239837 +151410,59315,adapted from:comic,1231452751 +151410,59727,boring,1274712843 +151410,59727,let down,1274712857 +151410,60040,facepalm,1274712201 +151410,60072,adapted from:comic,1231455221 +151410,60072,assassin,1231455340 +151410,60389,based on a true story,1371072644 +151410,60389,social commentary,1371072602 +151410,60389,war,1371072584 +151410,60684,social commentary,1329996726 +151410,60684,stylized,1278888778 +151410,60684,superhero,1329996734 +151410,61024,Stoner Movie,1330244224 +151410,61024,terrible ending,1330244212 +151410,61323,Frances McDormand,1330321944 +151410,61323,seen more than once,1330628541 +151410,62644,social experiment,1320516601 +151410,63033,apocalypse,1397074740 +151410,63033,epidemic,1397074730 +151410,63033,hollow,1397074705 +151410,63033,psychological,1397074733 +151410,63033,rape,1397074720 +151410,63082,social commentary,1311620551 +151410,63131,Epic LARP scene,1330531130 +151410,63131,social commentary,1330531064 +151410,63479,road trip,1275670477 +151410,63479,Seth Green,1275670481 +151410,63479,Teen,1275670505 +151410,63826,stop motion,1391715497 +151410,63853,predictable,1285107596 +151410,63853,story,1285107193 +151410,63992,chick flick,1392735773 +151410,63992,Teen movie,1392735793 +151410,63992,unintentional comedy,1392735781 +151410,63992,vampires,1392735801 +151410,64957,bittersweet,1360962915 +151410,64957,cinematography,1360962934 +151410,64957,philosophical,1360962924 +151410,66097,dystopia,1320341322 +151410,66097,Surreal,1320341320 +151410,66785,stylized,1298996846 +151410,66785,treasure hunt,1298996856 +151410,66915,boring,1274712793 +151410,68157,satire,1274768858 +151410,68157,tense,1274768855 +151410,68205,fast paced,1311524448 +151410,68237,dystopia,1354435103 +151410,68237,psychology,1354435109 +151410,68791,weak plot,1331232950 +151410,68941,rape,1396642042 +151410,68941,remake,1396642056 +151410,68941,silly ending,1396642038 +151410,68941,splatter,1396642044 +151410,68952,annoying characters,1365779829 +151410,68952,occult,1365779854 +151410,68952,poor dialogue,1365779832 +151410,68952,repetitive,1365779845 +151410,68952,stupid ending,1365779841 +151410,68952,tongue-in-cheek,1365779856 +151410,69481,addiction,1437398168 +151410,69481,anti-hero,1437398160 +151410,69481,Iraq War,1437398148 +151410,69481,realistic,1437398136 +151410,69757,artistic,1415038616 +151410,69757,bittersweet,1415038645 +151410,69757,music,1415038642 +151410,69757,nonlinear,1415038621 +151410,69757,quirky,1415038613 +151410,69849,based on a book,1386617955 +151410,69849,historical,1386617926 +151410,69849,slavery,1386617945 +151410,70286,atmospheric,1274711282 +151410,70286,intelligent sci-fi,1274711205 +151410,71135,atmospheric,1349718150 +151410,71135,post-apocalyptic,1349718127 +151410,71135,sci-fi,1349718152 +151410,71135,space,1349718168 +151410,71254,dystopia,1368635810 +151410,71254,predictable,1368635778 +151410,71254,stupid,1368635780 +151410,71254,virtual reality,1368635823 +151410,71379,Boring,1284570230 +151410,71379,not scary,1284570233 +151410,71468,surreal,1345830546 +151410,71468,visually appealing,1345830549 +151410,71535,post-apocalyptic,1276869878 +151410,71535,zombies,1276869872 +151410,71838,antihero,1359280914 +151410,71838,revenge,1359280912 +151410,71838,violent,1359280928 +151410,73808,coincidences,1330629562 +151410,73808,Dark,1330629477 +151410,74431,thought provoking,1312021977 +151410,74452,Bad remake,1280424834 +151410,74452,boring,1276469711 +151410,74452,pointless,1276469729 +151410,74452,predictable,1276469704 +151410,74458,psychological,1278597838 +151410,74458,twist ending,1278597834 +151410,76175,3D,1314204073 +151410,76175,Bad remake,1280424548 +151410,77307,dystopia,1365360506 +151410,77307,ending,1365360477 +151410,77427,bad acting,1347020622 +151410,77427,stupid,1347020619 +151410,77629,addiction,1292448954 +151410,77629,drugs,1292448950 +151410,78469,full of goofs,1333887520 +151410,78469,Funny,1333887526 +151410,78836,drugs,1440710249 +151410,78836,too long,1440710243 +151410,79057,audience intelligence underestimated,1383405215 +151410,79057,childish plot,1383405219 +151410,79132,Intense,1280422825 +151410,79132,seen more than once,1330628419 +151410,79132,surreal,1329996299 +151410,79132,thought-provoking,1314116491 +151410,79132,visually appealing,1280422848 +151410,79796,Battles,1283097006 +151410,80463,true story,1312015122 +151410,81562,psychology,1392064449 +151410,81562,survival,1392064445 +151410,81562,true story,1392064451 +151410,81562,wilderness,1392064460 +151410,81845,complex characters,1320349619 +151410,81845,excellent script,1367905170 +151410,82242,original,1367904546 +151410,82527,realistic,1316877796 +151410,83134,absurd,1331579175 +151410,83134,great premise,1331579322 +151410,83134,pacing,1331579330 +151410,83134,parody,1331579189 +151410,83134,predictable,1331579153 +151410,83613,Olivia Wilde,1315938581 +151410,85131,CGI,1314462081 +151410,85131,plot,1314462091 +151410,85131,sci-fi,1314462097 +151410,85131,warfare,1314462104 +151410,85358,lovecraftian mythology,1395526274 +151410,85358,parody,1395526263 +151410,85358,seen more than once,1330628424 +151410,85360,under the bridge,1305530603 +151410,85881,adolescent psychology,1371385917 +151410,85881,some events border unrealism,1371385671 +151410,86320,beautiful,1308597164 +151410,86320,claustrophobic,1357076379 +151410,86320,depression,1357076385 +151410,86320,introspective,1357076368 +151410,87306,trite,1314116758 +151410,87869,actually funny,1314116588 +151410,87869,black comedy,1314116559 +151410,88744,Plot holes,1326631961 +151410,88744,special effects,1326631978 +151410,88810,historical,1322512416 +151410,88810,powerful,1322512367 +151410,88810,racism,1322512375 +151410,89470,Realistic,1320437343 +151410,91325,9/11,1335291613 +151410,91325,sentimental,1335291543 +151410,91500,predictable,1384982025 +151410,91500,social commentary,1384982060 +151410,91529,Predictable,1342784305 +151410,92058,stupid,1347107434 +151410,93270,funny ending,1378117369 +151410,93270,Nudity (Topless),1378117386 +151410,93270,shaky camera,1378117356 +151410,93270,unlikeable characters,1378117360 +151410,93840,meta,1419875248 +151410,94780,Kristen Stewart,1345298457 +151410,94864,horrible ending,1338878934 +151410,94864,messes up continuity,1338878917 +151410,94864,predictable,1338878860 +151410,94864,scifi,1338878946 +151410,97188,dumb ending,1378968497 +151410,97188,found footage,1378965982 +151410,97188,investigative journalism,1378965975 +151410,97188,occult,1378965966 +151410,97752,atmospheric,1371117176 +151410,97752,dystopia,1371117185 +151410,97752,multiple storylines,1371117196 +151410,97752,social commentary,1371117195 +151410,97785,not scary,1368965536 +151410,97785,the plot makes no sense,1368965475 +151410,97860,cinematography,1376511293 +151410,97860,hired gun,1376511344 +151410,97860,politics,1376511288 +151410,98124,dark,1400614079 +151410,98124,retirement,1400614090 +151410,98809,stupid fight scenes,1360616315 +151410,98961,Inaccurate,1371029264 +151410,98961,plotless,1371029259 +151410,98961,politics,1371029279 +151410,98961,spec ops,1371029245 +151410,99813,action packed,1400614113 +151410,99813,dark,1400614107 +151410,99813,superhero,1400614123 +151410,100810,aliens,1400055223 +151410,100810,posession,1400055259 +151410,100810,psychology,1400055248 +151410,103253,cyborgs,1387120703 +151410,103253,damsel in distress,1387120692 +151410,103253,poverty,1387120714 +151410,103253,shallow characters,1387120681 +151410,103253,social commentary,1387120697 +151410,104841,bad science,1385532564 +151410,104841,intense,1385532580 +151410,104841,visually appealing,1385532574 +151410,105429,economic inequality,1444903207 +151410,105429,thought-provoking,1444903232 +151410,105593,intoxicants,1386841148 +151410,105593,police corruption,1386841095 +151410,105593,surreal,1386841112 +151410,106916,anti-hero,1397639650 +151410,106916,con artists,1397639615 +151410,106916,Predictable,1397639606 +151410,106916,soundtrack,1397639625 +151410,106920,artificial intelligence,1397063268 +151410,106920,bittersweet,1397063272 +151410,106920,predictable,1397063293 +151410,106920,thought-provoking,1397063263 +151410,107653,creative,1431449073 +151410,107653,innocence,1431450662 +151410,107684,/b/,1388598582 +151410,107684,annoying characters,1388598517 +151410,107684,bad acting,1388598570 +151410,107684,stupid plot,1388598554 +151410,109487,bad dialogue,1415648933 +151410,109487,good science bad science,1415648949 +151410,109487,sounds,1415648987 +151410,109487,thought-provoking,1415649015 +151410,109487,time-travel,1415648940 +151410,111443,characters,1451681208 +151410,111443,entrepreneurs,1451681172 +151410,111443,father-son relationship,1451681184 +151410,111443,road trip,1451681170 +151410,111443,Twitter,1451681176 +151410,112290,12 years in the making,1421085555 +151410,112290,Ethan Hawke,1421085550 +151410,112290,growing up,1421242889 +151410,112290,Partricia Arquette,1421085570 +151410,112290,realism,1421085547 +151410,113345,anti-right-wing,1444928745 +151410,113345,awful script,1444928562 +151410,113345,disappointing,1444928619 +151410,113345,obvious,1444928569 +151410,113345,the same plot twice? really?,1444928612 +151410,113630,misunderstandings,1409573107 +151410,114497,gore,1415127910 +151410,114497,jumpscare horror,1415127905 +151410,114662,war hero,1448292725 +151410,115210,good first half,1421086234 +151410,115210,over the top ending,1421086219 +151410,117533,documentary,1444832439 +151410,117533,edward snowden,1444832437 +151410,117533,nsa,1444832443 +151410,117533,privacy,1444832441 +151410,117533,thought provoking,1444832450 +151410,117533,whistleblower,1444832458 +151410,122886,Fan service,1451681108 +151410,122886,Plot Recycling,1451681104 +151410,122886,Star Wars,1451681123 +151410,127152,scientology,1444840607 +151410,128360,characters,1453127053 +151410,128360,Dialogue,1453127035 +151410,128360,tension building,1453127030 +151410,128360,too long,1453127026 +151410,128360,Western,1453127033 +151410,134853,bittersweet,1444047374 +151410,134853,coming of age,1444047385 +151410,134853,psychology,1444047378 +151410,134853,thought provoking,1444047393 +151410,136020,james bond,1447785222 +151415,4027,Cohen Brothers,1307052848 +151415,5128,sexy,1307052365 +151443,260,"action, scifi",1439797140 +151443,260,space adventure,1439797151 +151451,4973,Poetic,1436439070 +151451,117533,privacy,1436439140 +151465,593,creepy,1424017155 +151465,593,good acting,1424017155 +151465,593,sinister,1424017155 +151465,8874,black comedy,1424029494 +151465,8874,gore,1424029502 +151465,8874,spoof,1424029506 +151465,120138,Aamir Khan,1424017562 +151465,120138,Comedy,1424017555 +151475,4226,cult film,1442315268 +151475,4226,nonlinear,1442315245 +151475,4226,psychology,1442315252 +151475,54286,espionage,1442315293 +151475,54286,Matt Damon,1442315295 +151475,54286,spy thriller,1442315299 +151477,260,classic sci-fi,1441651934 +151477,260,Science Fiction,1441651928 +151484,26707,Tatie Danielle,1434715228 +151485,63113,betrayal,1232916306 +151485,63113,revenge,1232916306 +151491,90809,androgyny,1398540344 +151491,90809,children,1398540343 +151491,90809,French Film,1398540344 +151491,90809,LGBT*,1398540344 +151491,90809,summery,1398540344 +151494,35957,Airplane,1443699742 +151494,35957,non-bloody thriller,1443699746 +151494,35957,Rachel McAdams,1443699738 +151494,57368,"""found footage""",1443699802 +151494,57368,feeling of helplessness,1443699815 +151494,57368,shaky camera,1443699806 +151494,59369,action,1443701529 +151494,59369,bad writing,1443701569 +151494,59369,CIA,1443701532 +151494,59369,human trafficking,1443701563 +151494,59369,kidnapping,1443701536 +151494,59369,prostitution,1443701546 +151494,59369,thriller,1443701530 +151494,59369,torture,1443701541 +151494,68237,boring,1444579179 +151494,68237,cloning,1444579130 +151494,68237,death,1444579137 +151494,68237,dialogue driven,1444579140 +151494,68237,directorial debut,1444579147 +151494,68237,hallucination,1444579143 +151494,68237,not really a thriller,1444579159 +151494,68237,one man show,1444579171 +151494,68237,slow paced,1444579120 +151494,79293,Angelina Jolie,1443699638 +151494,79293,betrayal,1443699657 +151494,79293,double agents,1443699658 +151494,79293,espionage,1443699649 +151494,79293,spy,1443699668 +151494,79293,strong female lead,1443699665 +151494,79293,torture,1443701509 +151494,85397,torture,1443701883 +151494,90888,brutal,1443701474 +151494,90888,genital mutilation,1443701476 +151494,90888,Mickey Rourke,1443701490 +151494,90888,poor plot,1443701487 +151494,97304,espionage,1443699831 +151494,97304,Political Thriller,1443699838 +151494,97304,suspenseful,1443699827 +151494,97304,True story,1443699825 +151494,100383,business,1443699687 +151494,100383,doctors,1443699683 +151494,100383,medications,1443699680 +151494,100383,twist ending,1443699677 +151494,103449,Incomplete,1443879669 +151494,104841,intense,1443699767 +151494,104841,sandra bullock,1443699765 +151494,104841,space,1443699761 +151494,104841,visually appealing,1443699774 +151498,116797,interesting,1423764725 +151498,116797,sci-fi,1423764725 +151498,116797,true,1423764725 +151509,260,boring,1441222037 +151509,260,slow,1441222046 +151549,149418,african-american history,1451092676 +151549,149418,assassinations,1451092703 +151549,149418,black history,1451092722 +151549,149418,black power,1451092663 +151549,149418,history,1451092681 +151566,327,character styles,1297938460 +151566,327,Lori Petty,1297938440 +151566,327,Malcolm McDowell,1297938406 +151566,327,punk,1297938466 +151566,345,Terence Stamp,1297937088 +151566,851,Benicio Del Toro,1297938304 +151566,851,David Bowie,1297938300 +151566,1206,Malcolm McDowell,1297938365 +151566,2723,disco,1297938551 +151566,2723,Eddie Izzard,1297938548 +151566,2772,KISS,1297937840 +151566,3477,Damn the man,1297937771 +151566,3477,Gwar,1297937779 +151566,3477,Lucas,1297937773 +151566,3477,Music,1297937778 +151566,3477,Rory Cochrane,1297937776 +151566,3858,John Waters,1297937387 +151566,3882,Eliza Dushku,1297937705 +151566,3977,music,1297936973 +151566,3977,sam rockwell,1297936979 +151566,4228,Jason Lee,1297937947 +151566,4816,Clothing,1297938651 +151566,4816,David Bowie,1297938647 +151566,4941,So bad it's good,1297938503 +151566,6942,Alan Rickman,1297937806 +151566,6942,Colin Firth,1297937809 +151566,7373,Guillermo Del Toro,1297938519 +151566,7373,steampunk,1297938525 +151566,44155,adventure,1297936938 +151566,44155,Eddie Izzard,1297936938 +151566,48744,beautiful,1297937281 +151566,48744,different,1297937283 +151566,48744,independent,1297937288 +151566,49666,Diane Arbus,1297938243 +151566,49666,Freaks,1297938255 +151566,49666,Nicole Kidman,1297938240 +151566,49666,Photography,1297938248 +151566,49666,Robert Downey Jr,1297938236 +151566,49666,Weird,1297938258 +151566,60072,James McAvoy,1297938615 +151566,60756,funny,1297938680 +151566,74275,based on a true story,1297937255 +151566,74275,Ewan McGregor,1297937241 +151566,74275,funny,1297937244 +151566,74275,queer,1297937250 +151617,1276,adults,1428381365 +151617,26662,kids,1428381341 +151617,104283,anime,1428383535 +151617,104283,miyazaki,1428383535 +151617,104283,studio ghibli,1428383535 +151633,1569,Julia Roberts,1394928491 +151633,3147,sad but good,1394267274 +151633,69757,bittersweet,1417579038 +151633,69757,intelligent,1417579018 +151633,69757,no happy ending,1417579025 +151633,69757,quirky,1417579003 +151633,103801,Anna Kendrick,1393222108 +151633,103801,Jake Johnson,1393222165 +151633,103801,Olivia Wilde,1393222190 +151633,107141,Disney,1394267211 +151633,107141,Tom Hanks,1394267211 +151656,260,A little childish,1443897685 +151656,260,old school science fiction,1443897772 +151661,260,adventure,1441864853 +151661,260,c3po,1441864988 +151661,260,Carrie Fisher,1441864977 +151661,260,dogfight,1441864835 +151661,260,Harrison Ford,1441864919 +151661,260,laser sword,1441864873 +151661,260,Mark Hamill,1441864933 +151661,260,r2d2,1441864984 +151661,260,space action,1441864824 +151661,260,space adventure,1441864810 +151661,260,spaceships,1441864842 +151661,260,Star Wars,1441864997 +151661,260,sword fight,1441864863 +151664,5014,Beatles soundtrack,1287883011 +151664,5014,Dakota Fanning,1287883028 +151664,5014,sean penn,1287883025 +151664,5464,boring,1287711857 +151664,5464,violence,1287711840 +151664,5956,acting,1287711742 +151664,5956,boring,1287711794 +151664,5956,writing,1287711730 +151664,41285,not suspenseful,1287882861 +151664,41285,Scarlett Johansson,1287882879 +151664,41285,slow,1287882900 +151665,2731,children,1284436832 +151665,2731,cult,1284436837 +151671,2409,boxing,1378739606 +151671,2959,violence in america,1378739565 +151687,46530,comic book,1153848861 +151700,5878,get,1144668035 +151741,6874,imdb top 250,1251247728 +151741,6874,Japan,1251247728 +151741,6874,martial arts,1251247724 +151741,6874,Quentin Tarantino,1251247720 +151741,6874,Uma Thurman,1251247725 +151741,32587,atmospheric,1251247695 +151741,32587,black comedy,1251247693 +151741,32587,Bruce Willis,1251247687 +151741,32587,dark,1251247708 +151741,32587,film noir,1251247690 +151741,32587,imdb top 250,1251247678 +151741,32587,Quentin Tarantino,1251247681 +151741,32587,stylized,1251247681 +151741,60684,dystopia,1251247216 +151741,64614,Clint Eastwood,1251247625 +151741,67734,Ryan Reynolds,1251247300 +151741,68157,alternate history,1251247251 +151741,68157,Brad Pitt,1251247245 +151741,68157,Dead Nazis,1251247246 +151741,68157,gratuitous violence,1251247254 +151741,68157,Quentin Tarantino,1251247247 +151778,30707,Morgan Freeman,1174494468 +151794,1485,I would rather suck exhaust than watch this POS again.,1201183697 +151815,58559,Christopher Nolan,1429526648 +151815,58559,Heath Ledger,1429526636 +151815,58559,Michael Caine,1429526642 +151815,58559,stylized,1429526657 +151815,79132,alternate reality,1429526384 +151815,79132,complicated,1429526398 +151815,79132,mindfuck,1429526524 +151815,79132,twist ending,1429526412 +151819,5806,Iran,1439803851 +151819,5806,Persian,1439803857 +151819,5806,Samira Makhmalbaf,1439803878 +151819,49951,queer,1439804133 +151819,116839,hebrew,1439802833 +151819,116839,Israel,1439802837 +151819,140864,Argentina,1439803633 +151819,140864,Spanish,1439803637 +151819,140868,adoption,1439804355 +151819,140868,queer,1439804360 +151819,140880,German,1439805912 +151831,296,crime,1438333854 +151831,296,dark comedy,1438333854 +151831,296,ensemble cast,1438333854 +151831,5617,black comedy,1438983263 +151831,5617,dark comedy,1438983238 +151831,5617,erotic,1438983265 +151831,5617,forbidden love,1438983254 +151831,5617,quirky,1438983241 +151831,5617,sexy,1438983250 +151831,5617,unusual love story,1438983236 +151831,39183,bittersweet,1438983168 +151831,39183,forbidden love,1438983203 +151831,39183,Heath Ledger,1438983212 +151831,39183,homosexuality,1438983219 +151831,39183,sexuality,1438983207 +151831,39183,unusual love story,1438983195 +151831,44555,excellent script,1438982770 +151831,44555,great acting,1438982783 +151831,47423,Addiction,1438982230 +151831,47423,independent film,1438982234 +151831,47423,unusual love story,1438982226 +151831,64197,authenticity,1438982990 +151831,64197,great acting,1438982975 +151831,64197,Michael Fassbender,1438982981 +151831,71579,bittersweet,1438982650 +151831,71579,Emma Thompson,1438982678 +151831,71579,great acting,1438982645 +151831,71579,unusual love story,1438982665 +151831,74416,british english,1438982141 +151831,74416,Michael Fassbender,1438982132 +151831,74416,realism,1438982151 +151831,74416,realistic,1438982127 +151831,74416,social conflicts,1438982129 +151831,74416,unusual love story,1438982122 +151831,78574,authenticity,1438982178 +151831,78574,cinematography,1438982203 +151831,78574,cultural authenticity,1438982187 +151831,78574,drugs,1438982168 +151831,78574,realism,1438982165 +151831,81591,atmospheric,1438983333 +151831,81591,dark,1438983372 +151831,81591,psychological,1438983332 +151831,81591,sex,1438983338 +151831,81591,surreal,1438983347 +151831,87232,fantasy,1438983072 +151831,87232,James McAvoy,1438983079 +151831,87232,Michael Fassbender,1438983077 +151831,87232,sci fi,1438983089 +151831,87232,visually appealing,1438983085 +151831,89761,adultery,1438990659 +151831,89761,complicated relationship,1438990634 +151831,89761,Michael Fassbender,1438990615 +151831,89761,sexuality,1438990676 +151831,90531,acting,1438982343 +151831,90531,erotic,1438982326 +151831,90531,Michael Fassbender,1438982311 +151831,90531,self-destruction,1438982299 +151831,101088,dark,1438983322 +151831,101088,psychological thriller,1438983315 +151831,101088,stylish,1438983313 +151831,102407,1920s,1438982393 +151831,102407,stylized,1438982401 +151831,105355,bittersweet,1438983120 +151831,105355,homosexuality,1438983127 +151831,105355,unusual love story,1438983135 +151831,134785,british,1438362121 +151842,5952,based on a book,1227243235 +151842,5952,magic,1227243241 +151842,7153,Oscar (Best Picture),1230051591 +151855,4973,atmospheric,1408297778 +151855,4973,beautifully filmed,1408297774 +151855,4973,quirky,1408297784 +151855,4973,visually appealing,1408297788 +151879,6,overrated,1150006061 +151879,110,overrated,1150006110 +151879,2248,get,1137416299 +151879,6375,get,1137416246 +151879,34271,get,1137416221 +151879,38061,get,1143983570 +151881,1275,multi-movie monster,1199116965 +151881,1301,multi-movie monster,1196694521 +151881,2122,multi-movie monster,1199117021 +151881,4027,oddesy rip-off,1196696634 +151881,4725,Well Done,1144016441 +151881,7901,H.P. Lovecraft,1214996586 +151881,37380,Forbidden Planet for Dummies,1193066090 +151881,65300,Evil Deadish,1231517243 +151881,71838,Obviously sarificed the writer's tale of moral relativism for black and white moralism.,1267175980 +151881,80917,Excellent characterization,1288886675 +151881,80917,Misrepresented,1288886675 +151893,318,inspirational,1350531797 +151893,318,Morgan Freeman,1350531789 +151893,318,reflective,1350531806 +151893,318,thought-provoking,1350531808 +151893,1247,Dustin Hoffman,1353176128 +151893,1247,humorous,1353176131 +151893,1247,notable soundtrack,1353176136 +151893,2467,Eco,1361934409 +151893,2467,inquisition,1353141196 +151893,2467,medieval,1353141178 +151893,2691,ennio morricone,1353142323 +151893,2691,great soundtrack,1353142315 +151893,2691,music,1353142328 +151893,3053,epic,1353141919 +151893,3053,History,1353141922 +151893,3053,R:strong graphic battles,1353141935 +151893,3992,Italian,1353142275 +151893,3992,Monica Bellucci,1353142240 +151893,3992,morality,1353142273 +151893,6711,Melancholic,1353142903 +151893,6711,poignant,1353142890 +151893,33162,history,1353141942 +151893,33162,medieval,1353141805 +151893,34048,action,1353143003 +151893,34048,alien invasion,1353143008 +151893,34048,aliens,1353143001 +151893,34048,based on a book,1353143017 +151893,34048,sci-fi,1353143023 +151893,48304,history,1353142535 +151893,48304,Mel Gibson,1353142528 +151893,48304,survival,1353142519 +151893,48304,suspense,1353142549 +151893,79796,Battles,1353142344 +151893,79796,England,1353142342 +151893,79796,Romans,1353142352 +151893,95441,Boston,1381968332 +151893,95441,buddy movie,1372534226 +151893,95441,CG animation,1372534168 +151893,95441,comedy,1372534136 +151893,95441,crude humor,1372534134 +151893,95441,Funny,1372534204 +151893,95441,Mark Wahlberg,1372534172 +151893,95441,Mila Kunis,1381968299 +151893,95441,Nudity (Topless),1381968315 +151899,296,action,1290971035 +151899,296,comedy,1290971025 +151899,296,cult film,1290971027 +151899,296,dark comedy,1290971023 +151899,296,drugs,1290970993 +151899,296,Mafia,1290970999 +151899,296,multiple storylines,1290970997 +151899,296,nonlinear,1290971018 +151899,296,organized crime,1290971067 +151899,296,pop culture references,1290971061 +151899,296,Quentin Tarantino,1290971009 +151899,296,Samuel L. Jackson,1290971007 +151899,296,violence,1290971003 +151899,338,Can't remember,1379370993 +151899,551,animation,1369689497 +151899,551,halloween,1369689493 +151899,551,musical,1369689518 +151899,551,Nicole Kidman,1369689513 +151899,1211,Berlin,1377288373 +151899,1211,poetic,1377288379 +151899,1274,animation,1369688868 +151899,1274,anime,1369688865 +151899,1274,cyberpunk,1369688856 +151899,1274,dystopia,1369688861 +151899,1274,Japan,1369688858 +151899,1274,science fiction,1369688875 +151899,1274,visually stunning,1369688853 +151899,1355,easily confused with other movie(s) (title),1377299440 +151899,2133,1980s,1394997367 +151899,2133,adventure,1394997370 +151899,2133,Elisabeth Shue,1394997375 +151899,2133,great soundtrack,1394997379 +151899,2133,teen,1394997400 +151899,2133,worth watching,1394997404 +151899,2572,Teen movie,1201459314 +151899,2615,80s nostalgia,1377298796 +151899,2657,aliens,1369688626 +151899,2657,androids,1369688660 +151899,2657,campy,1369688629 +151899,2657,cross dressing,1369688666 +151899,2657,great soundtrack,1369688619 +151899,2657,homosexuality,1369688652 +151899,2657,music,1369688673 +151899,2657,parody,1369688646 +151899,2692,alternate endings,1369689301 +151899,2692,animation,1369689320 +151899,2692,thought-provoking,1369689310 +151899,2692,time loop,1369689307 +151899,2918,80s,1379368496 +151899,2918,classic,1379368500 +151899,2918,John Hughes,1379368524 +151899,2918,Matthew Broderick,1379368504 +151899,2918,teen movie,1379368508 +151899,3000,anime,1200260445 +151899,3571,real time,1378382587 +151899,3617,Teen movie,1201459807 +151899,5040,80s nostalgia,1377288223 +151899,5040,fantasy,1377288195 +151899,5040,heroic fantasy,1377288177 +151899,5040,pulp,1377288201 +151899,5040,sword and sorcery,1377288183 +151899,5283,Teen movie,1201459649 +151899,5540,Ancient Greeks,1290971677 +151899,5540,bad acting,1290971679 +151899,5540,bad fx,1290971682 +151899,5540,Claymation,1290971687 +151899,5540,Greek mytholog,1377288078 +151899,5540,Laurence Olivier,1290971690 +151899,5540,mythology,1290971693 +151899,5540,sword and sandal,1290971697 +151899,6323,John Cusack,1375296935 +151899,6323,multiple storylines,1375296899 +151899,6323,psychology,1375296891 +151899,6323,serial killer,1375296930 +151899,6323,split personality,1375296903 +151899,6323,twist ending,1375296906 +151899,6541,alan moore,1369689028 +151899,6541,B-movie,1369689041 +151899,6541,captain nemo,1369689013 +151899,6541,pulp,1369689035 +151899,6541,steampunk,1369689005 +151899,6882,Action,1377287066 +151899,6882,alien invasion,1377287059 +151899,6882,aliens,1377287063 +151899,6882,future,1377287077 +151899,6882,Japan,1377287039 +151899,6882,Japanese,1377287044 +151899,6882,time travel,1377287053 +151899,6882,underrated,1377287069 +151899,8371,action,1290971596 +151899,8371,comic book,1290971602 +151899,8371,Riddick,1290971591 +151899,8371,sci-fi,1290971594 +151899,8371,shallow plot,1290971587 +151899,8371,space,1290971585 +151899,8371,Vin Diesel,1290971583 +151899,8636,action,1290971124 +151899,8636,comic book,1290971098 +151899,8636,love story,1290971163 +151899,8636,marvel,1290971117 +151899,8636,Oscar (Best Effects - Visual Effects),1290971101 +151899,8636,sequel,1290971105 +151899,8636,superhero,1290971111 +151899,8983,amazing photography,1394994845 +151899,8983,Beautiful,1394994849 +151899,8983,China,1394994854 +151899,8983,fantasy,1394994860 +151899,8983,kung fu,1394994824 +151899,8983,overrated,1394994812 +151899,8983,poor plot,1394994890 +151899,8983,unrealistic,1394994841 +151899,25771,classic,1379368248 +151899,25771,surreal,1379368237 +151899,25771,surrealism,1379368233 +151899,26903,anime,1368909564 +151899,26903,cats,1368909567 +151899,26903,foreign language,1368909570 +151899,26903,ghibli,1368909574 +151899,26903,Hayao Miyazaki,1368909577 +151899,26903,Japan,1368909582 +151899,26903,Studio Ghibli,1368909586 +151899,26903,teenage girl,1368909616 +151899,26903,teenager,1368909620 +151899,26903,writer,1368909591 +151899,26903,writers,1368909594 +151899,27189,humor,1394134522 +151899,27189,Japanese,1394134504 +151899,27189,open ending,1394134536 +151899,27189,samurai,1394134509 +151899,27189,too short,1394134545 +151899,27451,amazing photography,1394995196 +151899,27451,badass,1394995214 +151899,27451,black and white,1394995142 +151899,27451,rock music,1394995171 +151899,27451,superhero,1394995153 +151899,27731,inferior sequel,1394996911 +151899,27731,Japan,1394996917 +151899,27731,Studio Ghibli,1394996905 +151899,31184,anime,1290971757 +151899,31184,complicated plot,1290971850 +151899,31184,Dynamic CGI Action,1290971797 +151899,31184,future,1290971883 +151899,31184,great anime,1290971776 +151899,31184,sci-fi,1290971773 +151899,31184,soundtrack,1290971786 +151899,31184,techno-evolution,1290971883 +151899,31184,technology,1290971883 +151899,31437,Japan,1379372379 +151899,31437,Tokyo,1379372382 +151899,31660,anime,1369689160 +151899,31660,katsuhiro otomo,1369689167 +151899,31660,steampunk,1369689142 +151899,31804,atmospheric,1379369843 +151899,31804,Russia,1379369824 +151899,31804,Timur Bekmambetov,1379369796 +151899,34319,action,1290971956 +151899,34319,cloning,1290972036 +151899,34319,dystopia,1290971971 +151899,34319,Ewan McGregor,1290972017 +151899,34319,freedom,1290972008 +151899,34319,genetics,1290971962 +151899,34319,immortality,1290971965 +151899,34319,Michael Bay,1290972029 +151899,34319,multiple roles,1290972003 +151899,34319,product placement,1290972012 +151899,34319,Scarlett Johansson,1290971986 +151899,34319,sci-fi,1290971976 +151899,34319,surprise ending,1290971984 +151899,34437,Jim Jarmusch,1377286426 +151899,43930,Teen movie,1201459065 +151899,44115,exaggerated,1414697598 +151899,44115,fantasy,1414697603 +151899,44115,japan,1414697614 +151899,44115,japanese,1414697610 +151899,44115,love,1414697617 +151899,44115,ninja,1414697623 +151899,44115,ninjas,1414697625 +151899,44115,supernatural powers,1414697629 +151899,47122,Teen movie,1201459193 +151899,49526,Teen movie,1201459631 +151899,51709,family drama,1192073664 +151899,54503,Teen movie,1198638110 +151899,54734,geeks,1201459140 +151899,54734,Teen movie,1201459140 +151899,55908,intellectual,1378382681 +151899,55908,philosophical,1378382685 +151899,55908,real time,1378382667 +151899,55908,sci-fi,1378382707 +151899,55908,science fiction,1378382710 +151899,55908,thought-provoking,1378382713 +151899,58297,britain,1377287448 +151899,58297,Post apocalyptic,1377287383 +151899,58297,post-apocalyptic,1377287387 +151899,58297,sci-fi,1377287391 +151899,58297,silly,1377287397 +151899,58297,unintentional comedy,1377287394 +151899,60072,Angelina Jolie,1378383502 +151899,60072,gun fu,1378383481 +151899,60072,Morgan Freeman,1378383506 +151899,60072,over the top,1378383534 +151899,60072,unrealistic action,1378383496 +151899,61210,future,1377287295 +151899,61210,post-apocalyptic,1377287311 +151899,61210,ridiculous,1377287339 +151899,61210,roleplaying game,1377287319 +151899,61210,terrible plot,1377287344 +151899,61210,too long,1377287356 +151899,61967,60s,1379282757 +151899,61967,alcohol,1379282885 +151899,61967,alcoholism,1379282885 +151899,61967,entirely dialogue,1379283043 +151899,61967,good acting,1379282704 +151899,61967,good direction,1379282914 +151899,61967,Japanese,1379282658 +151899,61967,marriage,1379282774 +151899,61967,Old,1379282740 +151899,61967,sexism,1379282807 +151899,61967,slice of life,1379282940 +151899,61967,Yasujirô Ozu,1379282672 +151899,61967,Yasujiro Ozu,1389211612 +151899,63276,badass,1394216999 +151899,63276,bromance,1394217005 +151899,63276,cinematography,1394217033 +151899,63276,fights,1394216988 +151899,63276,gangs,1394217043 +151899,63276,japan,1394217039 +151899,63276,stunning,1394217025 +151899,63276,Takashi Miike,1394216992 +151899,63276,yakuza,1394217009 +151899,66934,anti-hero,1379368155 +151899,66934,funny,1379368170 +151899,66934,good dialogue,1379368142 +151899,66934,great soundtrack,1379368164 +151899,66934,joss whedon,1379368178 +151899,66934,low budget,1379368149 +151899,66934,mad scientist,1379368137 +151899,66934,parody,1379368135 +151899,66934,sci-fi,1379368127 +151899,66934,short,1379368125 +151899,66934,superhero,1379368130 +151899,66934,twist ending,1379368133 +151899,67867,Dragon Ball,1414697945 +151899,67867,inaccurate adaptation,1377288293 +151899,67867,not faithful to the book,1414697957 +151899,67867,ridiculous characters,1414697965 +151899,68237,artificial intelligence,1290970883 +151899,68237,cloning,1290970886 +151899,68237,death,1290970951 +151899,68237,directorial debut,1290970906 +151899,68237,dystopia,1290970879 +151899,68237,future,1290970930 +151899,68237,interesting,1290970898 +151899,68237,Kevin Spacey,1290970914 +151899,68237,moon,1290970924 +151899,68237,psychology,1290970917 +151899,68237,robot,1290970921 +151899,68237,Sci-fi,1290970874 +151899,68237,science,1290970937 +151899,68237,technology,1290970876 +151899,68237,twist ending,1290970893 +151899,68319,comic book,1377287840 +151899,68319,Marvel,1377287843 +151899,68319,sci-fi,1377287849 +151899,68319,superhero,1377287846 +151899,70336,bad plot,1377287813 +151899,70336,cheesy,1377287809 +151899,70336,Joseph Gordon-Levitt,1377287804 +151899,70336,sci-fi,1377287795 +151899,71535,Bill Murray,1379368342 +151899,71535,campy,1379368353 +151899,71535,clever,1379368348 +151899,71535,funny,1379368333 +151899,71535,parody,1379368336 +151899,71535,post-apocalyptic,1379368338 +151899,73211,based on a book,1414614044 +151899,73211,character driven,1414614019 +151899,73211,excellent acting,1414614024 +151899,73211,innovative,1414613997 +151899,73211,low budget,1414614061 +151899,73211,original,1414614002 +151899,73211,suspenseful,1414614038 +151899,73211,zombies,1414614011 +151899,77709,anime,1379366534 +151899,77709,forgettable,1379366657 +151899,77709,Japanese,1379366538 +151899,77709,slow paced,1379366548 +151899,77709,unexplained things,1379366606 +151899,77709,war,1379366614 +151899,79702,based on a comic,1378383402 +151899,79702,geek,1378383384 +151899,79702,surreal,1378383393 +151899,79702,video games,1378383395 +151899,79702,visually appealing,1378383378 +151899,80026,Adapted from: video game,1414697904 +151899,80026,bad acting,1414697915 +151899,80026,bad adaptation,1414697922 +151899,80026,predictable,1414697909 +151899,81512,French,1377286368 +151899,81512,psychic powers,1377286379 +151899,81512,unresolved,1377286384 +151899,81847,3D,1379366933 +151899,81847,animation,1379366937 +151899,81847,Disney,1379366733 +151899,81847,fairy tale,1379366707 +151899,81847,mother daughter relationship,1379366723 +151899,81847,musical,1379366956 +151899,81847,Ron Perlman,1379366950 +151899,81847,singing,1379366713 +151899,81847,visually appealing,1379366719 +151899,82095,Alien Invasion,1377287552 +151899,82095,aliens,1377287572 +151899,82095,evil ending,1377287564 +151899,82095,sci-fi,1377287558 +151899,83349,anti-hero,1377287908 +151899,83349,comic book,1377287913 +151899,83349,funny,1377287921 +151899,83349,parody,1377287888 +151899,84716,Korean,1377297942 +151899,85056,action,1368909038 +151899,85056,alien,1368909069 +151899,85056,cheesy,1368909044 +151899,85056,childish plot,1368909028 +151899,85056,cliche,1368909073 +151899,85056,sci-fi,1368909053 +151899,85056,superhero,1368909032 +151899,85056,supernatural,1368909036 +151899,85179,anime,1368909196 +151899,85179,anime cliches,1368909222 +151899,85179,computers,1369688789 +151899,85179,family,1368909216 +151899,85179,Japanese,1368909204 +151899,85179,Mamoru Hosoda,1368909206 +151899,85179,virtual reality,1368909211 +151899,85510,insanity,1377287217 +151899,85510,martial arts,1377287201 +151899,85510,stupid,1377287189 +151899,85510,thin story,1377287214 +151899,85510,video games,1377287192 +151899,85510,visually stunning,1377287175 +151899,85510,war,1377287209 +151899,86142,feudal japan,1394216641 +151899,86142,japan,1394216656 +151899,86142,samurai,1394216644 +151899,86142,sword fight,1394216652 +151899,87306,audience intelligence underestimated,1395009751 +151899,87306,bad ending,1395009764 +151899,87306,bad plot,1395009743 +151899,87306,J.J. Abrams,1395009770 +151899,87306,sci-fi,1395009736 +151899,87306,small town,1395009740 +151899,90057,ambiguous,1395011834 +151899,90057,apocalyptic,1395011840 +151899,90057,apocalyptic storm,1395011843 +151899,90057,dreams,1395011831 +151899,90057,premonition,1395011825 +151899,90057,psychology,1395011809 +151899,90888,genital mutilation,1377287979 +151899,90888,Greek mythology,1377287975 +151899,90888,poor plot,1377287992 +151899,90888,ridiculous,1377287998 +151899,91529,Christian Bale,1375296026 +151899,91529,plot twist,1375296019 +151899,91529,superhero,1375296016 +151899,93766,Greek mythology,1377289815 +151899,93840,clever,1375296837 +151899,93840,dark comedy,1375296834 +151899,93840,original,1375296815 +151899,93840,plot twist,1375296819 +151899,93840,satire,1375296823 +151899,93840,social commentary,1375296811 +151899,93840,weird,1375296826 +151899,95311,short,1379368110 +151899,95311,short movie,1379368104 +151899,97752,1970s,1377286206 +151899,97752,atmospheric,1377286194 +151899,97752,based on a book,1377286144 +151899,97752,complicated,1377286189 +151899,97752,dystopia,1377286133 +151899,97752,future,1377286185 +151899,97752,Hugh Grant,1377286181 +151899,97752,independent film,1377286178 +151899,97752,Nudity (Topless),1377286166 +151899,97752,philosophy,1377286153 +151899,97752,sci-fi,1377286150 +151899,97752,social commentary,1377286162 +151899,97752,thought-provoking,1377286156 +151899,97752,Tom Hanks,1377286169 +151899,97752,visually appealing,1377286159 +151899,99530,Japan,1378382901 +151899,99530,well transformed from manga to live action,1378382888 +151899,101962,anime,1375297252 +151899,101962,fantasy,1375297339 +151899,101962,growing up,1375297359 +151899,101962,japanese,1375297247 +151899,101962,moving,1375297261 +151899,101962,nature,1375297377 +151899,101962,nature vs. civilization,1375297382 +151899,101962,rebellion,1375297547 +151899,101962,rural,1375297499 +151899,101962,rural Japan,1375297495 +151899,101962,school,1375297523 +151899,101962,single mother,1375297461 +151899,101962,werewolves,1375297432 +151899,102794,animation,1369688013 +151899,102794,childish,1369688009 +151899,102794,Japanese,1369687959 +151899,102794,stupid main character,1369688051 +151899,102796,bad ending,1375296624 +151899,102796,death,1375296664 +151899,102796,death/fatality,1375296665 +151899,102796,japanese,1375296667 +151899,102796,slow rythm,1375296624 +151899,102796,weird characters,1375296701 +151899,103042,Christopher Nolan,1375296405 +151899,103042,comic book,1375296397 +151899,103042,Henry Cavill,1375296411 +151899,103042,Over-the-top action.,1375296432 +151899,103042,product placement,1375296436 +151899,103042,superhero,1375296338 +151899,103042,Superman,1375296334 +151899,103042,visually appealing,1375296389 +151899,103042,Zack Snyder,1375296419 +151899,103228,aliens,1375296174 +151899,103228,anime,1375296101 +151899,103228,giant robots,1375296097 +151899,103228,happy ending,1375296196 +151899,103228,Kaiju,1375296090 +151899,103228,mecha,1375296093 +151899,103228,Rinko Kikuchi,1375296128 +151899,103228,robots,1375296124 +151899,103228,Ron Perlman,1375296107 +151899,103228,sci-fi,1395009826 +151899,103228,subgenre:Kaiju,1375296111 +151899,103228,visually appealing,1375296115 +151899,106002,adapted from:book series,1395009652 +151899,106002,alien invasion,1395009644 +151899,106002,aliens,1395009639 +151899,106002,based on a book,1395009529 +151899,106002,children acting like adults,1395009534 +151899,106002,deception,1395009614 +151899,106002,Good adaptation,1395009564 +151899,106002,good adaptation of the book,1395009575 +151899,106002,military,1395009597 +151899,106002,space,1395009590 +151899,106002,twist ending,1395009632 +151899,107406,gnosticism,1415494763 +151899,107406,Plot twist,1415494747 +151899,107406,post-apocalyptic,1415494701 +151899,107406,social commentary,1415494682 +151899,107406,violence,1415494772 +151899,107406,visually interesting--that's about it,1415494733 +151899,109887,great acting,1394995788 +151899,109887,japanese,1394995764 +151899,109887,japanese language,1394995772 +151899,112852,great soundtrack,1409771675 +151899,112852,Marvel,1409771727 +151899,112852,overrated,1409771679 +151899,112852,poor plot,1409771691 +151899,112852,sci-fi,1409771704 +151899,112852,space,1409771731 +151899,112852,talking animals,1409771699 +151909,318,i do not like tim robbins.,1435068771 +151909,318,i do not understand why people like this movie so much.,1435068771 +151909,318,"the movie is okay, not great, not artsy enough.",1435068771 +151909,3768,I'd better not say what I think about this movie,1435069024 +151909,4422,Absolutely fantastic !,1435068929 +151937,260,action,1430962182 +151937,260,Science Fiction,1430962166 +151938,260,Science Fiction,1436228541 +151938,260,space adventure,1436228558 +151940,260,"science fiction, classic",1437946445 +151947,68135,Love story,1242649827 +151948,260,classic sci-fi,1439412935 +151989,260,cult classic,1439737617 +151989,260,sci-fi,1439737606 +151991,133347,Beach,1450647530 +151991,137457,Beach,1450647486 +151991,137457,Island,1450647474 +152009,6502,zombies,1310419758 +152009,78499,Animation,1310418409 +152009,78499,Comedy,1310418418 +152009,78499,Tim Allen,1310418397 +152009,78499,Tom Hanks,1310418384 +152037,260,old,1444631067 +152039,260,exciting,1439652082 +152039,260,Nice Movie,1439652047 +152039,2797,Excellent screen play and execution,1439652534 +152045,1203,exiting,1333265263 +152045,1203,fantastic,1333265262 +152045,1217,wushi,1333265222 +152045,2352,good,1333265180 +152045,77658,history,1333265277 +152050,260,good vs evil,1439498177 +152050,260,sci-fi,1439498153 +152058,198,strange,1257903099 +152058,541,classic,1257900176 +152058,541,cyberpunk,1257900168 +152058,541,fantasy,1257900183 +152058,541,imdb top 250,1257900183 +152058,714,iggy pop!!!,1257900648 +152058,714,Jim Jarmusch,1257900646 +152058,1199,dreamlike,1257900136 +152058,1199,Terry Gilliam,1257900131 +152058,1199,thought-provoking,1257900128 +152058,1258,Nudity (Full Frontal - Notable),1257899858 +152058,1258,psychological,1257899862 +152058,1258,Stanley Kubrick,1257899846 +152058,2600,alternate reality,1257900475 +152058,2600,mindfuck,1257900485 +152058,2600,multiple realities,1257900489 +152058,2600,strange,1257900495 +152058,2600,surreal,1257900493 +152058,2600,techno-evolution,1257900499 +152058,4239,Johnny Depp,1257900562 +152058,4262,classic,1257900600 +152058,4262,imdb top 250,1257900602 +152058,4262,Nudity (Topless - Brief),1257900606 +152058,4816,Funny as hell,1258069804 +152058,5903,Amazing Cinematography,1257901138 +152058,5903,post-apocalyptic,1257901124 +152058,39381,Intense,1257901042 +152075,296,classic movie,1425936367 +152075,296,quentin tarantino,1425936367 +152075,296,violent,1425936367 +152082,7844,Jet Li,1225753952 +152083,1237,atmospheric,1375433353 +152083,1237,black and white,1375433374 +152083,1237,cerebral,1375433371 +152083,1237,chess,1375433325 +152083,1237,Death,1375433342 +152083,1237,existentialism,1375433339 +152083,1237,grim,1375433333 +152083,1237,knights,1375433366 +152083,1237,medieval,1375433337 +152083,1237,meditative,1375433335 +152083,1237,religion,1375433350 +152083,2632,atmospheric,1375433418 +152083,2632,dreamlike,1375433419 +152083,2632,enigmatic,1375433421 +152083,2632,meditative,1375433424 +152083,2632,reflective,1375433427 +152083,8201,reflective,1375497377 +152083,8201,surreal,1375497377 +152083,8201,Tom Waits,1375497377 +152083,26326,dark comedy,1375433119 +152083,26326,dreamlike,1375433127 +152083,26326,hallucinatory,1375433141 +152083,26326,Overly Abstract,1375433124 +152083,26326,psychedelic,1375433133 +152083,26326,religion,1375433135 +152083,26326,sexuality,1375433276 +152083,26326,surreal,1375433129 +152083,26326,symbolism,1375433138 +152102,58998,comedy,1276947305 +152102,58998,Jason Segel,1276947312 +152102,58998,puppets,1276947328 +152127,8784,Zach Braff,1430999188 +152135,260,classic,1442011237 +152135,260,space humor,1442011243 +152153,26163,Bob Dylan,1206623868 +152153,38304,dylan,1164221940 +152186,48501,comedy,1435222832 +152186,48501,turkish comedy,1435222844 +152215,68157,Christoph Waltz,1425545103 +152215,68157,Quentin Tarantino,1425545094 +152224,59000,Winona Ryder,1298162890 +152228,260,adult,1436937555 +152228,260,love story,1436937547 +152228,260,sexy,1436937559 +152230,260,drama,1442927863 +152230,260,sci-fi,1442927874 +152282,43333,bollywood,1147068905 +152285,260,classic sci-fi,1438539373 +152285,260,epic,1438539283 +152285,260,nerdy,1438539322 +152285,260,space adventure,1438539330 +152285,356,based on a book,1438540410 +152285,356,beautiful,1438540410 +152285,356,romance,1438540410 +152318,260,classic sci-fi,1439798053 +152318,260,father-son relationship,1439798043 +152336,260,action,1437319834 +152336,260,Science Fiction,1437319825 +152351,1,animation,1432463448 +152351,1,children,1432463448 +152351,1,comedy,1432463448 +152360,5995,fascism,1430137881 +152360,5995,holocaust,1430137870 +152374,546,a,1189633991 +152374,546,b,1189633992 +152374,546,c,1189633992 +152374,546,d,1189633991 +152374,546,e,1189633993 +152374,546,f,1189633992 +152374,546,g,1189633992 +152374,546,h,1189633992 +152374,546,t,1189633992 +152374,866,lesbian matrix noir,1189633752 +152374,2391,noir spiral snow,1189633834 +152374,2485,a,1189634000 +152374,2485,d,1189633999 +152374,2485,f,1189634000 +152374,2485,g,1189634000 +152374,2485,s,1189634000 +152374,2951,leone,1189633966 +152374,2951,spaghetti westerm,1189633965 +152374,3362,black comedy,1189633935 +152374,3362,pacino,1189633935 +152374,4262,ultraviolence,1189633838 +152374,4270,silly action,1189633885 +152374,4447,ditzy reesewitherspoon comedy,1189633859 +152374,4848,lynch dreams identites hollywood,1189633818 +152374,4975,remake,1189633888 +152381,632,Spanish Civil War,1450196098 +152381,4809,whistleblower,1450196050 +152381,5175,Irish Republican Army (IRA),1450196031 +152381,5175,Northern Ireland,1450196013 +152381,44555,Cold War,1450191531 +152381,44555,communism,1450191536 +152381,44555,East Germany,1450191505 +152381,44555,freedom of expression,1450191515 +152381,44555,german,1450191567 +152381,44555,Germany,1450191519 +152381,44555,historical,1450191563 +152381,44555,spies,1450191553 +152381,44555,spying,1450191557 +152381,44555,Stasi,1450191528 +152381,44555,surveillance,1450191510 +152381,44555,suspense,1450191560 +152414,260,"Family, Action-packed",1442336691 +152414,260,original movie,1442336676 +152426,50,cerebral,1450301369 +152426,50,excellent script,1450301394 +152464,1213,robert de niro,1141507191 +152464,36529,political,1148122383 +152467,260,Science Fiction,1436375847 +152467,260,space adventure,1436375853 +152474,47306,lyrical,1176825493 +152478,260,old FX quality,1433219413 +152478,260,sci-fi,1433219398 +152489,260,cult film,1428941689 +152489,260,sci-fi,1428941689 +152489,260,space opera,1428941689 +152489,296,cult film,1431017444 +152489,296,palme d'or,1431017444 +152489,296,quentin tarantino,1431017444 +152489,322,hollywood,1429693006 +152489,356,gary sinise,1430251171 +152489,356,purpose in life,1430251171 +152489,356,tom hanks,1430251171 +152489,593,cannibalism,1431936415 +152489,593,fbi,1431936415 +152489,593,serial killer,1431936415 +152500,260,part of trilogy,1441628479 +152500,260,science fantasy,1441628433 +152511,59995,confusing plot,1292032077 +152511,80969,Confusing if you haven't read the book,1292032452 +152511,80969,scenery,1292032437 +152511,81834,followed the plot of the book,1292032495 +152511,81834,no resolutions,1292032517 +152511,81834,only half of a story,1292032517 +152515,260,classic,1431380810 +152515,260,Science Fiction,1431380818 +152523,2571,artificial intelligence,1435128797 +152523,2571,comedy,1435128797 +152523,2571,computer paranoia,1435128797 +152564,6502,futuristic,1217544201 +152564,6502,post-apocalyptic,1217544195 +152564,48774,apocalypse,1217544418 +152564,48774,end of the world,1217544425 +152564,56174,alone in the world,1217544152 +152564,56174,post-apocalyptic,1217544167 +152570,608,cruel,1447737693 +152570,608,dark humor,1447737665 +152570,608,witty,1447737678 +152570,79132,clever,1447737740 +152570,79132,imagination,1447737762 +152570,79132,visually stunning,1447737773 +152571,260,Science Fiction,1432698725 +152625,2571,sci-fi,1315775326 +152625,32587,multiple storylines,1315776200 +152625,32587,superhero,1315776194 +152625,34150,superhero,1315776371 +152625,58559,superhero,1315775314 +152625,68319,sci-fi,1315775364 +152625,69644,Animation,1315775341 +152625,85056,superhero,1315776356 +152625,86332,superhero,1315776208 +152633,339,PG,1340484172 +152633,932,TV-G,1340747335 +152633,940,Approved,1340747297 +152633,969,UR,1340747369 +152633,1023,G,1340484096 +152633,1059,PG-13,1340484118 +152633,1934,TV-G,1340483977 +152633,2132,TV-MA,1340484136 +152633,3736,Approved,1340747230 +152633,3793,PG-13,1340484041 +152633,6333,PG-13,1340484016 +152633,6385,PG-13,1340484196 +152633,6856,TV-G,1340483999 +152633,7121,NR,1340747262 +152633,7836,R,1340484047 +152633,45499,PG-13,1340484030 +152633,90376,R,1340484219 +152633,95313,short,1341235331 +152657,922,classic,1139891249 +152657,922,Hollywood story,1139891243 +152657,2203,small towns,1139891381 +152657,3089,neorealism,1139891506 +152657,3089,sad,1139891480 +152674,96737,cinematography,1356819372 +152674,96737,Dystopia,1356819370 +152674,96737,police corruption,1356819362 +152674,96737,post-apocalyptic,1356819350 +152674,96737,sci-fi,1356819353 +152674,96737,slow motion,1356819355 +152674,96737,stylized,1356819358 +152674,103685,disturbing,1374380121 +152674,103685,experimental,1374380121 +152674,103685,historical,1374380121 +152674,103685,magic,1374380121 +152674,103685,mystery,1374380121 +152674,103685,psychedelic,1374380121 +152676,2495,Adult Animation,1341391275 +152676,2495,atmospheric,1341391279 +152676,2495,Avant Garde,1341391283 +152676,2495,Dreamlike,1341391286 +152676,2495,psychedelic,1341391274 +152676,2495,René Laloux,1341391270 +152676,2495,Surreal,1341391266 +152676,2495,Trippy,1341391262 +152676,2495,Visual Hallucination,1341391264 +152676,3592,animation,1341391226 +152676,3592,low budget,1341391236 +152676,3592,sci-fi,1341391228 +152676,3592,Time paradox,1341391230 +152676,3592,time travel,1341391232 +152676,3687,animation,1341391380 +152676,3687,René Laloux,1341391354 +152676,3687,science fiction,1341391354 +152676,3687,time travel,1341391354 +152676,5618,alternate reality,1341391175 +152676,5618,animation,1341391177 +152676,5618,atmospheric,1341391181 +152676,5618,dreamlike,1341391172 +152676,5618,environmental,1341391166 +152676,5618,hallucinatory,1341391170 +152676,5618,Hayao Miyazaki,1341391151 +152676,5618,imdb top 250,1341391199 +152676,5618,Japan,1341391191 +152676,5618,Oscar (Best Animated Feature),1341391185 +152676,5618,Studio Ghibli,1341391162 +152676,77658,astronomy,1341391601 +152676,77658,atheism,1341391643 +152676,77658,biology,1341391603 +152676,77658,earnest,1341391605 +152676,77658,earth,1341391613 +152676,77658,enlightening,1341391616 +152676,77658,environmental,1341391618 +152676,77658,evolution,1341391621 +152676,77658,irreligion,1341391639 +152676,77658,nature,1341391625 +152676,77658,physics,1341391627 +152676,77658,religion,1341391637 +152676,77658,science,1341391628 +152676,77658,space,1341391630 +152689,70032,Jeffers Morning,1249378123 +152692,17,19th century,1352566491 +152692,17,Alan Rickman,1352566444 +152692,17,based on a book,1352566452 +152692,17,British,1352566446 +152692,17,chick flick,1352566450 +152692,17,costume drama,1352566471 +152692,17,Hugh Grant,1352566455 +152692,17,Jane Austen,1352566457 +152692,17,Kate Winslet,1352566460 +152692,17,romance,1352566468 +152692,17,romantic,1352566480 +152692,18,Antonio Banderas,1256053798 +152692,18,Quentin Tarantino,1256053794 +152692,18,Tim Roth,1256053821 +152692,50,Benicio Del Toro,1262625014 +152692,50,imdb top 250,1262625019 +152692,50,Kevin Spacey,1262625005 +152692,50,twist ending,1262625009 +152692,94,Matt Dillon,1311851707 +152692,94,Natalie Portman,1311851695 +152692,94,Uma Thurman,1311851701 +152692,97,black and white,1276000752 +152692,97,cynical,1276000756 +152692,97,french,1276000774 +152692,97,racism,1276000758 +152692,97,social commentary,1276000762 +152692,111,assassination,1270548834 +152692,111,atmospheric,1270548838 +152692,111,Classic,1270548829 +152692,111,cult film,1270548823 +152692,111,disturbing,1270548838 +152692,111,Jodie Foster,1270548838 +152692,111,Martin Scorsese,1270548825 +152692,111,New York City,1270548843 +152692,111,paranoid,1270548847 +152692,111,prostitution,1270548845 +152692,111,Robert De Niro,1270548818 +152692,111,social commentary,1270548847 +152692,111,vigilantism,1270548855 +152692,152,Christopher Walken,1312907470 +152692,152,Lili Taylor,1312907482 +152692,152,vampires,1312907487 +152692,158,Christina Ricci,1281863087 +152692,158,Eric Idle,1281863089 +152692,162,biography,1322929598 +152692,162,comic book,1322929604 +152692,162,disturbing,1322929584 +152692,162,documentary,1322929594 +152692,162,sexual,1322929588 +152692,170,Angelina Jolie,1310407679 +152692,170,computers,1310407688 +152692,170,cult film,1310407690 +152692,170,hackers,1310407695 +152692,170,high school,1310407708 +152692,188,Christianity,1263491764 +152692,188,Christopher Walken,1263491687 +152692,188,religion,1263491753 +152692,188,Slashy,1263491695 +152692,188,Viggo Mortensen,1263491740 +152692,223,black and white,1262886525 +152692,223,dialogue driven,1262886610 +152692,223,Directorial Debut,1262886537 +152692,223,funny,1262886554 +152692,223,great dialogue,1262886585 +152692,247,based on a true story,1288455745 +152692,247,Kate Winslet,1288455752 +152692,247,lesbian,1288455775 +152692,247,LGBT,1288455786 +152692,247,New Zealand,1288455757 +152692,247,Peter Jackson,1288455749 +152692,247,true story,1288455763 +152692,261,adapted from:book,1358444093 +152692,261,based on a book,1358444095 +152692,261,Christian Bale,1358444101 +152692,261,Kirsten Dunst,1358444104 +152692,261,Winona Ryder,1358444090 +152692,277,Christmas,1356357003 +152692,277,remake,1356357007 +152692,293,assassin,1270568207 +152692,293,Gary Oldman,1270568192 +152692,293,hitman,1270568202 +152692,293,Natalie Portman,1270568193 +152692,293,quirky,1270568195 +152692,293,Sniper,1270568241 +152692,299,Catholicism,1279566262 +152692,299,gay,1279566257 +152692,299,homosexuality,1279566261 +152692,299,queer,1279566264 +152692,299,Robert Carlyle,1279566271 +152692,299,Tom Wilkinson,1279566271 +152692,316,James Spader,1273390343 +152692,316,Kurt Russell,1273390319 +152692,316,sci-fi,1273390308 +152692,316,space,1273390309 +152692,319,Danny Boyle,1272381170 +152692,319,dark comedy,1272381164 +152692,319,Ewan McGregor,1272381155 +152692,328,Billy Zane,1257065465 +152692,328,nostalgic,1257065459 +152692,339,chick flick,1319051305 +152692,339,rom com,1319051314 +152692,339,Romance,1319051322 +152692,339,romantic comedy,1319051319 +152692,339,Sandra Bullock,1319051309 +152692,345,Australia,1274124511 +152692,345,cross dressing,1274124513 +152692,345,cross-dressing,1274124599 +152692,345,gay,1274124601 +152692,345,Guy Pearce,1274124612 +152692,345,Hugo Weaving,1274124515 +152692,345,musical,1274124595 +152692,345,queer,1274124524 +152692,345,road movie,1274124580 +152692,345,road trip,1274124585 +152692,345,transgender,1274124524 +152692,345,transvestites,1274124524 +152692,357,British,1339345709 +152692,357,Hugh Grant,1339345710 +152692,357,wedding,1339345715 +152692,366,Heather Langenkamp,1289026627 +152692,366,Robert Englund,1289026631 +152692,366,wes craven,1289026633 +152692,390,campy,1276944604 +152692,390,cars,1276944629 +152692,390,hallucinatory,1276944614 +152692,390,kidnapping,1276944635 +152692,416,Andie MacDowell,1353168486 +152692,416,Drew Barrymore,1353168487 +152692,416,Mary Stuart Masterson,1353168486 +152692,416,repetitive,1353168525 +152692,481,Brad Pitt,1325864877 +152692,481,David Duchovny,1325864899 +152692,481,Juliette Lewis,1325864856 +152692,481,road movie,1325864861 +152692,481,road trip,1325864867 +152692,481,serial killer,1325864865 +152692,515,adapted from:book,1368124629 +152692,515,Anthony Hopkins,1368124586 +152692,515,based on a book,1368124599 +152692,515,Emma Thompson,1368124593 +152692,535,Julianne Moore,1262626524 +152692,535,Los Angeles,1262626531 +152692,535,multiple storylines,1262626533 +152692,535,overrated,1262626557 +152692,535,Robert Downey Jr.,1262626538 +152692,562,adolescence,1350797521 +152692,562,depressing,1350797529 +152692,562,disturbing,1350797543 +152692,562,indie,1350797528 +152692,562,quirky,1350797526 +152692,562,unsettling,1350797541 +152692,581,analysis of subtext,1350804698 +152692,581,based on a book,1350804689 +152692,581,documentary,1350804736 +152692,581,factual,1350804709 +152692,581,fascinating,1350804702 +152692,581,gay,1350804690 +152692,581,lesbian,1350804693 +152692,590,based on a book,1359790638 +152692,590,based on book,1359790641 +152692,590,civil war,1359790644 +152692,590,indians,1359790651 +152692,590,Kevin Costner,1359790638 +152692,628,courtroom drama,1263717450 +152692,628,Edward Norton,1263717439 +152692,628,MURDER INVESTIGATIONS,1263717459 +152692,628,twist ending,1263717444 +152692,674,campy,1366770442 +152692,674,cult film,1366770445 +152692,674,Jane Fonda,1366770448 +152692,674,sci-fi,1366770453 +152692,714,black and white,1277543224 +152692,714,hallucinatory,1277543236 +152692,714,iggy pop,1277543253 +152692,714,Jim Jarmusch,1277543229 +152692,714,John Hurt,1277543266 +152692,714,Johnny Depp,1277543220 +152692,724,chick flick,1273398198 +152692,724,Fairuza Balk,1273398198 +152692,724,high school,1273398195 +152692,724,Neve Campbell,1273398196 +152692,724,private school,1273398202 +152692,724,supernatural,1273398210 +152692,724,teen,1273398215 +152692,724,teenagers,1273398226 +152692,724,witchcraft,1273398207 +152692,724,witches,1273398218 +152692,778,addiction,1262626158 +152692,778,based on a book,1262626167 +152692,778,black comedy,1262626176 +152692,778,British,1262626178 +152692,778,drugs,1262626198 +152692,778,heroin,1262626181 +152692,778,imdb top 250,1262626183 +152692,778,violence,1262626193 +152692,781,Joseph Fiennes,1270568095 +152692,781,Liv Tyler,1270568092 +152692,781,Rachel Weisz,1270568113 +152692,838,adapted from:book,1367648364 +152692,838,based on a book,1367648359 +152692,838,British,1367648368 +152692,838,England,1367648372 +152692,838,Gwyneth Paltrow,1367648378 +152692,838,Jane Austen,1367648375 +152692,838,Romance,1367648382 +152692,908,Alfred Hitchcock,1357382087 +152692,908,Cary Grant,1357382092 +152692,908,James Mason,1357382109 +152692,908,thriller,1357382115 +152692,909,Jack Lemmon,1321473639 +152692,914,Audrey Hepburn,1272544178 +152692,914,based on a play,1272544216 +152692,914,classic,1272544209 +152692,914,Musical,1272544204 +152692,914,Oscar (Best Actor),1272544197 +152692,914,Oscar (Best Cinematography),1272544179 +152692,914,Oscar (Best Directing),1272544191 +152692,914,Oscar (Best Picture),1272544187 +152692,949,based on a book,1290100864 +152692,949,brothers,1290100867 +152692,949,James Dean,1290100863 +152692,949,John Steinbeck,1290100864 +152692,949,siblings,1290100876 +152692,1036,Alan Rickman,1271061416 +152692,1036,Bruce Willis,1271061412 +152692,1057,Edward Norton,1256053983 +152692,1057,musical,1256054011 +152692,1057,Tim Roth,1256054004 +152692,1057,Woody Allen,1256053995 +152692,1060,funny,1262886459 +152692,1060,great dialogue,1262886418 +152692,1060,Heather Graham,1279136912 +152692,1060,Jon Favreau,1279136906 +152692,1060,Vince Vaughn,1279136905 +152692,1061,Brad Pitt,1267378251 +152692,1061,child abuse,1267378252 +152692,1061,Dustin Hoffman,1267378266 +152692,1061,Kevin Bacon,1267378382 +152692,1061,Minnie Driver,1267378268 +152692,1061,revenge,1267378439 +152692,1061,Robert De Niro,1267378258 +152692,1061,Terry Kinney,1267378632 +152692,1061,true story,1267378387 +152692,1061,vengeance,1267378392 +152692,1084,1920s,1270113699 +152692,1084,based on a true story,1270113758 +152692,1084,Biography,1270113765 +152692,1084,biopic,1270113770 +152692,1084,classic,1270113783 +152692,1084,crime,1270113777 +152692,1084,gangsters,1270113773 +152692,1084,Gene Hackman,1270113702 +152692,1084,Oscar (Best Supporting Actress),1270113715 +152692,1084,Oscar Winner,1270113706 +152692,1084,romance,1270113709 +152692,1089,cult film,1262625099 +152692,1089,imdb top 250,1262625108 +152692,1089,low budget,1262625110 +152692,1089,nonlinear,1262625087 +152692,1089,Quentin Tarantino,1262625090 +152692,1089,violence,1262625113 +152692,1094,cross dressing,1304867867 +152692,1094,England,1304867874 +152692,1094,Forest Whitaker,1304867899 +152692,1094,IRA,1304867875 +152692,1094,Ireland,1304867877 +152692,1094,queer,1304867885 +152692,1094,Stephen Rea,1304867894 +152692,1094,transgender,1304867887 +152692,1101,aviation,1351618302 +152692,1101,Meg Ryan,1351618318 +152692,1101,military,1351618322 +152692,1101,Tom Cruise,1351618329 +152692,1101,Val Kilmer,1351618330 +152692,1104,based on a play,1379597980 +152692,1104,downbeat,1379598037 +152692,1104,Marlon Brando,1379597975 +152692,1104,mental illness,1379598040 +152692,1124,aging,1268327011 +152692,1124,Henry Fonda,1268327005 +152692,1124,Jane Fonda,1268327005 +152692,1124,Oscar (Best Actor),1268327021 +152692,1124,Oscar (Best Actress),1268327035 +152692,1175,Black comedy,1282143396 +152692,1175,cannibalism,1282143390 +152692,1175,dark comedy,1282143395 +152692,1175,French,1282143401 +152692,1186,infidelity,1364728320 +152692,1186,James Spader,1364728339 +152692,1186,Steven Soderbergh,1364728326 +152692,1197,1980s,1272291433 +152692,1197,based on a book,1272291428 +152692,1197,classic,1272291413 +152692,1197,comedy,1272291417 +152692,1197,Cult classic,1272291411 +152692,1197,fairy tale,1272291405 +152692,1197,feel-good,1272291473 +152692,1197,funny,1272291474 +152692,1197,quirky,1272291396 +152692,1197,romance,1272291401 +152692,1198,adventure,1266751516 +152692,1198,archaeology,1266751532 +152692,1198,biblical,1266751535 +152692,1198,classic,1266751542 +152692,1198,Harrison Ford,1266751518 +152692,1198,indiana jones,1266751518 +152692,1198,Nazis,1266751520 +152692,1198,Steven Spielberg,1266751527 +152692,1198,World War II,1266751528 +152692,1199,Terry Gilliam,1262283252 +152692,1202,black comedy,1283769228 +152692,1202,drugs,1283769229 +152692,1202,quoteable,1283769238 +152692,1211,German,1257575514 +152692,1211,Nick Cave and the Bad Seeds,1257575517 +152692,1211,Peter Falk,1257575529 +152692,1211,poemlike,1257575542 +152692,1211,poetic,1257575544 +152692,1211,poetry,1257575550 +152692,1215,black comedy,1325106839 +152692,1215,campy,1325106841 +152692,1215,claymation,1325106849 +152692,1215,Cult classic,1325106839 +152692,1215,cult film,1325106854 +152692,1215,horror,1325106857 +152692,1215,satirical,1325106861 +152692,1215,time travel,1325106863 +152692,1228,Biography,1272117522 +152692,1228,black and white,1272117458 +152692,1228,boxing,1272117523 +152692,1228,brothers,1272117529 +152692,1228,classic,1272117527 +152692,1228,Martin Scorsese,1272117450 +152692,1228,Oscar (Best Actor),1272117544 +152692,1228,Robert De Niro,1272117454 +152692,1232,Andrei Tarkovsky,1269689324 +152692,1232,based on a book,1269689280 +152692,1232,dystopia,1269689284 +152692,1232,Russian,1269689291 +152692,1233,classic,1274024840 +152692,1233,claustrophobic,1274024847 +152692,1233,German,1274024845 +152692,1233,Nazis,1274024852 +152692,1233,submarine,1274024824 +152692,1233,too long,1274024833 +152692,1233,U-boat,1274024837 +152692,1233,war,1274024828 +152692,1233,Wolfgang Petersen,1274024894 +152692,1233,World War II,1274024820 +152692,1233,WWII,1274024822 +152692,1235,Cult Classic,1304146938 +152692,1235,cult film,1304146937 +152692,1235,dark comedy,1304146938 +152692,1246,boarding school,1257866193 +152692,1246,friendship,1257866210 +152692,1246,inspirational,1257866217 +152692,1246,philosophy,1257866212 +152692,1246,poetry,1257866239 +152692,1246,Quotable,1257866220 +152692,1246,suicide,1257866214 +152692,1249,assassin,1345225931 +152692,1249,cult film,1345225942 +152692,1249,French,1345225934 +152692,1249,Jean Reno,1345225932 +152692,1251,Federico Fellini,1312049034 +152692,1252,Incest,1293963374 +152692,1252,Jack Nicholson,1293963363 +152692,1252,Los Angeles,1293963361 +152692,1252,Oscar (Best Writing - Screenplay Written Directly for the Screen),1293963382 +152692,1252,private detective,1293963360 +152692,1252,Roman Polanski,1293963356 +152692,1254,Humphrey Bogart,1276269126 +152692,1254,Oscar (Best Directing),1276269140 +152692,1254,Oscar (Best Supporting Actor),1276269142 +152692,1255,aliens,1283754904 +152692,1255,cult film,1283754895 +152692,1255,Directorial Debut,1283754907 +152692,1255,Peter Jackson,1283754894 +152692,1255,splatter,1283754896 +152692,1257,goofy,1273745544 +152692,1257,high school,1273745515 +152692,1257,John Cusack,1273745520 +152692,1257,skiing,1273745540 +152692,1257,suicide attempt,1273745526 +152692,1257,teen,1273745525 +152692,1261,cult classic,1257878172 +152692,1261,cult film,1257878179 +152692,1261,splatter,1257878183 +152692,1261,zombies,1257878189 +152692,1262,POWs,1280567855 +152692,1262,prison break,1280567860 +152692,1262,prison escape,1280567755 +152692,1262,Steve McQueen,1280567739 +152692,1262,true story,1280567754 +152692,1262,World War II,1280567741 +152692,1262,WWII,1280567754 +152692,1270,1980s,1292744508 +152692,1270,based on a book,1292744511 +152692,1270,high school,1292744495 +152692,1270,quirky,1292744502 +152692,1270,sci-fi,1292744497 +152692,1270,Steven Spielberg,1292744504 +152692,1271,based on a book,1279041074 +152692,1271,lesbian,1279041084 +152692,1271,racism,1279041145 +152692,1271,sentimental,1279041132 +152692,1271,tear jerker,1279041138 +152692,1285,black comedy,1278785003 +152692,1285,Christian Slater,1278785008 +152692,1285,cult film,1278785010 +152692,1285,dark comedy,1278785011 +152692,1285,high school,1278785011 +152692,1285,satirical,1278785019 +152692,1285,Winona Ryder,1278785015 +152692,1290,high school,1309287957 +152692,1290,John Hughes,1309287949 +152692,1290,Mary Stuart Masterson,1309287945 +152692,1290,teen,1309287937 +152692,1290,tomboy,1309287930 +152692,1291,Harrison Ford,1310407846 +152692,1291,Nazis,1310407857 +152692,1291,Sean Connery,1310407848 +152692,1291,Steven Spielberg,1310407850 +152692,1296,adapted from:book,1332658164 +152692,1296,Daniel Day-Lewis,1332658159 +152692,1298,animation,1270548514 +152692,1298,artistic,1270548543 +152692,1298,cult film,1270548550 +152692,1298,dark,1270548556 +152692,1298,dreamlike,1270548574 +152692,1298,drugs,1270548517 +152692,1298,great soundtrack,1270548561 +152692,1298,loneliness,1270548534 +152692,1298,music,1270548519 +152692,1298,Musical,1270548525 +152692,1298,rock and roll,1270548532 +152692,1298,surreal,1270548520 +152692,1298,World War II,1270548529 +152692,1304,crime,1347770052 +152692,1304,friendship,1347770050 +152692,1304,Paul Newman,1347770045 +152692,1304,western,1347770059 +152692,1305,bittersweet,1366901382 +152692,1305,Indie,1366901378 +152692,1321,Funny,1323199183 +152692,1321,humorous,1323199182 +152692,1321,werewolf,1323199170 +152692,1321,werewolves,1323199171 +152692,1339,adapted from:book,1289735402 +152692,1339,Anthony Hopkins,1289735413 +152692,1339,based on a book,1289735410 +152692,1339,based on book,1289735422 +152692,1339,Francis Ford Coppola,1289735427 +152692,1339,Gary Oldman,1289735393 +152692,1339,Keanu Reeves,1289735391 +152692,1339,vampires,1289735435 +152692,1339,Winona Ryder,1289735398 +152692,1343,horror,1335198664 +152692,1343,Martin Scorsese,1335198660 +152692,1343,remake,1335198663 +152692,1343,Robert De Niro,1335198660 +152692,1347,franchise,1288885876 +152692,1347,Johnny Depp,1288885867 +152692,1347,Robert Englund,1288885890 +152692,1347,Wes Craven,1288885871 +152692,1358,Billy Bob Thornton,1273831462 +152692,1358,directorial debut,1273831469 +152692,1358,disability,1273831470 +152692,1358,John Ritter,1273831471 +152692,1358,mental illness,1273831475 +152692,1370,Bruce Willis,1287920705 +152692,1370,Renny Harlin,1287920709 +152692,1370,William Sadler,1287920737 +152692,1483,James Spader,1278254699 +152692,1500,80s soundtrack,1282390259 +152692,1500,anti-hero,1282390271 +152692,1500,assassin,1282390263 +152692,1500,Dan Aykroyd,1282390274 +152692,1500,dark comedy,1282390260 +152692,1500,hit men,1282390263 +152692,1500,John Cusack,1282390268 +152692,1500,Minnie Driver,1282390265 +152692,1527,aliens,1370183295 +152692,1527,Bruce Willis,1370183284 +152692,1527,campy,1370183299 +152692,1527,futuristic,1370183302 +152692,1527,Gary Oldman,1370183291 +152692,1527,Luc Besson,1370183307 +152692,1527,Milla Jovovich,1370183287 +152692,1527,satirical,1370183315 +152692,1527,sci-fi,1370183312 +152692,1587,adventure,1290347424 +152692,1587,Arnold Schwarzenegger,1290347416 +152692,1587,Fantasy,1290347427 +152692,1644,Classic teen horror,1349275843 +152692,1644,Freddie Prinze Jr.,1349275822 +152692,1644,horror,1349275850 +152692,1644,Jennifer Love Hewitt,1349275823 +152692,1644,predictable,1349275839 +152692,1644,Ryan Phillippe,1349275832 +152692,1644,Sarah Michelle Gellar,1349275830 +152692,1653,dystopia,1342881334 +152692,1653,Ethan Hawke,1342881346 +152692,1653,genetic engineering,1342881352 +152692,1653,genetics,1342881354 +152692,1653,Jude Law,1342881343 +152692,1653,sci-fi,1342881356 +152692,1653,Uma Thurman,1342881338 +152692,1655,Affleck was the BOMB in Phantoms!,1261938860 +152692,1673,Mark Wahlberg,1310572056 +152692,1673,Paul Thomas Anderson,1310572057 +152692,1673,Philip Seymour Hoffman,1310572059 +152692,1673,Porno Industry,1310572066 +152692,1680,alternate reality,1320159946 +152692,1680,British,1320159949 +152692,1680,Gwyneth Paltrow,1320159941 +152692,1721,based on a true story,1274462190 +152692,1721,catastrophe,1274462176 +152692,1721,chick flick,1274462169 +152692,1721,disaster,1274462165 +152692,1721,Leonardo DiCaprio,1274462142 +152692,1721,Oscar (Best Cinematography),1274462158 +152692,1721,Oscar (Best Directing),1274462157 +152692,1721,Oscar (Best Picture),1274462147 +152692,1721,romance,1274462150 +152692,1721,sentimental,1274462155 +152692,1721,true story,1274462148 +152692,1748,cult film,1365271012 +152692,1748,dystopia,1365271004 +152692,1748,sci-fi,1365271006 +152692,1748,steampunk,1365271020 +152692,1777,1980s,1320003231 +152692,1777,80's,1320003240 +152692,1777,Adam Sandler,1320003226 +152692,1777,chick flick,1320003245 +152692,1777,Drew Barrymore,1320003247 +152692,1777,Jon Lovitz,1320003249 +152692,1784,Helen Hunt,1307446547 +152692,1784,Jack Nicholson,1307446544 +152692,1784,Oscar (Best Actor),1307446550 +152692,1784,Oscar Winner,1307446554 +152692,1821,Gay Lead Character,1354790932 +152692,1821,homosexuality,1354790964 +152692,1821,jennifer aniston,1354790889 +152692,1821,Paul Rudd,1354790896 +152692,1866,hitman,1351273465 +152692,1866,sexuality,1351273419 +152692,1873,based on a book,1367854772 +152692,1873,Claire Danes,1367854796 +152692,1873,Geoffrey Rush,1367854777 +152692,1873,Liam Neeson,1367854778 +152692,1873,Uma Thurman,1367854783 +152692,1895,Ethan Embry,1354388439 +152692,1895,high school,1354388442 +152692,1895,Jason Segel,1354388448 +152692,1895,Jennifer Love Hewitt,1354388446 +152692,1895,Lauren Ambrose,1354388465 +152692,1895,Seth Green,1354388435 +152692,1895,teen,1354388452 +152692,1895,Teen movie,1354388455 +152692,1921,black and white,1274633203 +152692,1921,low budget,1274633218 +152692,1921,mathematics,1274633219 +152692,1921,notable soundtrack,1274633227 +152692,1921,paranoid,1274633222 +152692,1921,psychology,1274633220 +152692,1950,racism,1333172392 +152692,1950,Sidney Poitier,1333172393 +152692,1955,1970s,1313058854 +152692,1955,divorce,1313058858 +152692,1955,Dustin Hoffman,1313058865 +152692,1955,Meryl Streep,1313058904 +152692,1955,Oscar (Best Actor),1313058887 +152692,1955,Oscar (Best Directing),1313058842 +152692,1955,Oscar (Best Picture),1313058844 +152692,1955,Oscar (Best Supporting Actress),1313058846 +152692,1962,Dan Aykroyd,1267119071 +152692,1962,Drama,1267119094 +152692,1962,Morgan Freeman,1267119079 +152692,1962,old age,1267119098 +152692,1962,Oscar,1267119131 +152692,1962,racism,1267119082 +152692,1965,black comedy,1271418505 +152692,1965,cult classic,1271418506 +152692,1965,Emilio Estevez,1271418507 +152692,1965,punk,1271418509 +152692,1965,surreal,1271418513 +152692,1966,deadpan,1312734187 +152692,1966,dialogue driven,1312734231 +152692,1966,Manhattan,1312734188 +152692,1966,upper class,1312734199 +152692,1970,franchise,1288885757 +152692,1970,Patricia Arquette,1288885770 +152692,1970,Robert Englund,1288885761 +152692,1971,franchise,1288885689 +152692,1971,Renny Harlin,1288885731 +152692,1973,franchise,1288885676 +152692,1973,Robert Englund,1288885674 +152692,2009,Charlton Heston,1290960851 +152692,2009,dystopia,1290960871 +152692,2009,twist ending,1291005852 +152692,2010,based on a book,1294485665 +152692,2010,Fritz Lang,1294485676 +152692,2011,sci-fi,1299321503 +152692,2011,sequel,1299321504 +152692,2012,Christopher Lloyd,1299487945 +152692,2012,Michael J. Fox,1299487944 +152692,2012,sci-fi,1299487952 +152692,2012,science fiction,1299487950 +152692,2012,sequel,1299487961 +152692,2012,time travel,1299487954 +152692,2012,western,1299487963 +152692,2022,controversial,1256927133 +152692,2022,edgy,1256927131 +152692,2022,Martin Scorsese,1256927134 +152692,2028,Matt Damon,1270568280 +152692,2028,Sniper,1270568289 +152692,2028,Steven Spielberg,1270568264 +152692,2028,Tom Hanks,1270568275 +152692,2028,Vin Diesel,1270568286 +152692,2028,World War II,1270568266 +152692,2029,gay,1280753281 +152692,2029,Sean Hayes,1280753287 +152692,2059,Dennis Quaid,1350137821 +152692,2059,family,1350137839 +152692,2059,Lindsay Lohan,1350137824 +152692,2059,London,1350137833 +152692,2059,remake,1350137830 +152692,2059,twins,1350137842 +152692,2105,Jeff Bridges,1303232032 +152692,2105,sci-fi,1303232020 +152692,2105,virtual reality,1303232023 +152692,2115,Steven Spielberg,1298361144 +152692,2117,adapted from:book,1325691048 +152692,2117,based on a book,1325691046 +152692,2117,based on book,1325691046 +152692,2117,based on novel,1325691050 +152692,2117,dystopia,1325691054 +152692,2117,fascism,1325691062 +152692,2118,Adaptation,1278254853 +152692,2118,adapted from:book,1278254853 +152692,2118,based on a book,1278254855 +152692,2118,Christopher Walken,1278254859 +152692,2118,David Cronenberg,1278254859 +152692,2120,adapted from:book,1364546240 +152692,2120,based on a book,1364546238 +152692,2120,Stephen King,1364546237 +152692,2125,Anjelica Huston,1363622732 +152692,2125,Drew Barrymore,1363622669 +152692,2125,fairy tale,1363622667 +152692,2125,romance,1363622713 +152692,2132,based on a play,1342275843 +152692,2132,dialogue driven,1342275845 +152692,2132,Elizabeth Taylor,1342275840 +152692,2132,Richard Burton,1342275859 +152692,2134,1980s,1262624872 +152692,2134,Anthony Michael Hall,1262624850 +152692,2134,John Hughes,1262624864 +152692,2134,Robert Downey Jr.,1262624861 +152692,2134,teen,1262624869 +152692,2140,puppets,1304873254 +152692,2153,Based on a TV show,1273405643 +152692,2153,Eddie Izzard,1273405675 +152692,2153,Ralph Fiennes,1273405651 +152692,2153,Sean Connery,1273405646 +152692,2153,Uma Thurman,1273405649 +152692,2154,Whoopi Goldberg,1367057309 +152692,2176,Alfred Hitchcock,1342263579 +152692,2176,James Stewart,1342263578 +152692,2176,long takes,1342263595 +152692,2193,fantasy,1280938195 +152692,2193,George Lucas,1280938185 +152692,2193,Ron Howard,1280938204 +152692,2193,Val Kilmer,1280938175 +152692,2231,Edward Norton,1273689935 +152692,2231,gambling,1273689965 +152692,2231,John Malkovich,1273689955 +152692,2231,John Turturro,1273689950 +152692,2231,Matt Damon,1273689936 +152692,2231,poker,1273689960 +152692,2245,Harrison Ford,1391355093 +152692,2245,Sigourney Weaver,1391355096 +152692,2248,1980s,1273737017 +152692,2248,high school,1273737027 +152692,2248,John Cusack,1273737015 +152692,2248,Lili Taylor,1273737018 +152692,2248,Romance,1273737026 +152692,2248,teen,1273737016 +152692,2262,Brat Pack,1320419644 +152692,2262,break-up,1320419394 +152692,2262,BREAKUPS AND DIVORCES,1320419406 +152692,2262,Demi Moore,1320419353 +152692,2262,James Belushi,1320419433 +152692,2262,Rob Lowe,1320419417 +152692,2269,adultery,1314115998 +152692,2269,Demi Moore,1314115996 +152692,2269,Robert Redford,1314116006 +152692,2269,Woody Harrelson,1314116007 +152692,2288,aliens,1279987366 +152692,2288,based on a book,1279987370 +152692,2288,John Carpenter,1279987379 +152692,2288,Kurt Russell,1279987363 +152692,2288,remake,1279987383 +152692,2288,shape shifter,1279987387 +152692,2297,afterlife,1311529739 +152692,2297,based on a book,1311529737 +152692,2297,Cuba Gooding Jr.,1311529730 +152692,2297,Robin Williams,1311529710 +152692,2297,suicide,1311529716 +152692,2297,surreal,1311529717 +152692,2313,Anthony Hopkins,1273914508 +152692,2313,based on a true story,1273914518 +152692,2313,based on book,1273914519 +152692,2313,black and white,1273914510 +152692,2313,David Lynch,1273914509 +152692,2313,true story,1273914529 +152692,2318,child abuse,1306311937 +152692,2318,dark comedy,1306311944 +152692,2318,dark humor,1306311946 +152692,2318,Philip Seymour Hoffman,1306311950 +152692,2318,rape,1306311955 +152692,2321,black and white,1311734230 +152692,2321,coming of age,1311734234 +152692,2321,heartwarming,1311734225 +152692,2321,Reese Witherspoon,1311734240 +152692,2321,stylized,1311734225 +152692,2337,amazing soundtrack,1262624955 +152692,2337,Christian Bale,1262624917 +152692,2337,david bowie,1262624948 +152692,2337,gay,1262624941 +152692,2337,glam,1262624919 +152692,2337,glam rock,1262624923 +152692,2337,Jonathan Rhys Meyers,1262624921 +152692,2337,queer,1262624928 +152692,2395,Bill Murray,1280063518 +152692,2395,deadpan,1280064107 +152692,2395,high school,1280063522 +152692,2395,quirky,1280063527 +152692,2395,Wes Anderson,1280063531 +152692,2402,action,1351704047 +152692,2402,shallow plot,1351704059 +152692,2402,Sylvester Stallone,1351704053 +152692,2403,action,1351100820 +152692,2403,post-traumatic stress disorder,1351100824 +152692,2403,social commentary,1351100832 +152692,2403,special forces,1351100834 +152692,2403,Sylvester Stallone,1351100828 +152692,2404,action,1352556761 +152692,2404,Golden Raspberry (Worst Actor),1352556767 +152692,2404,holy war,1352556764 +152692,2404,Sylvester Stallone,1352556762 +152692,2413,quirky,1381775008 +152692,2413,Tim Curry,1381774994 +152692,2432,cancer,1382806837 +152692,2432,Divorce,1382806844 +152692,2432,Ed Harris,1382806847 +152692,2432,family,1382806851 +152692,2432,Julia Roberts,1382806842 +152692,2432,Susan Sarandon,1382806856 +152692,2432,terminal illness,1382806839 +152692,2437,biography,1280664063 +152692,2437,biopics,1280664066 +152692,2437,gay,1280664026 +152692,2437,Gay Lead Character,1280664034 +152692,2437,Jude Law,1280664030 +152692,2437,prison,1280664046 +152692,2437,queer,1280664044 +152692,2437,Stephen Fry,1280664036 +152692,2443,Angelina Jolie,1336235339 +152692,2528,Farrah Fawcett,1350404883 +152692,2528,futuristic,1350404887 +152692,2528,Michael York,1350404902 +152692,2528,post-apocalyptic,1350404906 +152692,2528,sci-fi,1350404908 +152692,2529,Charlton Heston,1309772321 +152692,2529,dystopia,1309772322 +152692,2529,post-apocalyptic,1309772324 +152692,2529,twist ending,1309772325 +152692,2542,British,1258143827 +152692,2542,dark comedy,1258143823 +152692,2579,black and white,1265201480 +152692,2579,Christopher Nolan,1265201481 +152692,2579,directorial debut,1265201492 +152692,2580,drugs,1324712030 +152692,2580,Katie Holmes,1324712016 +152692,2580,multiple storylines,1324712035 +152692,2580,Timothy Olyphant,1324712037 +152692,2596,coming of age,1309103543 +152692,2596,cult film,1309103546 +152692,2596,punk,1309103539 +152692,2599,black comedy,1277395746 +152692,2599,dark comedy,1277395748 +152692,2599,high school,1277395755 +152692,2599,lesbian,1277395762 +152692,2599,Matthew Broderick,1277395733 +152692,2599,politics,1277395767 +152692,2599,Reese Witherspoon,1277395738 +152692,2599,satirical,1277395775 +152692,2599,teen,1277395771 +152692,2607,gay,1257271980 +152692,2640,based on a comic,1366550710 +152692,2640,comic book,1366550699 +152692,2640,Marlon Brando,1366550704 +152692,2640,superhero,1366550700 +152692,2664,1950s,1267895750 +152692,2691,ennio morricone,1256053929 +152692,2691,Tim Roth,1256053933 +152692,2707,conspiracy,1376896994 +152692,2707,Jeff Bridges,1376896995 +152692,2707,terrorism,1376897003 +152692,2721,Gay,1306348689 +152692,2728,Biography,1281713193 +152692,2728,History,1281713231 +152692,2728,Rome,1281713234 +152692,2728,Stanley Kubrick,1281713236 +152692,2729,based on a book,1296060010 +152692,2729,James Mason,1296060003 +152692,2729,Stanley Kubrick,1296060008 +152692,2730,18th century,1279136826 +152692,2730,Kubrick,1279136829 +152692,2730,long,1279136843 +152692,2730,narrated,1279136845 +152692,2730,Oscar (Best Cinematography),1279136839 +152692,2730,Stanley Kubrick,1279136832 +152692,2732,French,1266416793 +152692,2732,love triangles,1266416758 +152692,2750,nostalgia,1281183717 +152692,2750,nostalgic,1281183725 +152692,2750,radio,1281183715 +152692,2750,Seth Green,1281183713 +152692,2750,Woody Allen,1281183714 +152692,2764,Steve McQueen,1333119525 +152692,2793,bad cgi,1344229905 +152692,2793,sequel,1344229881 +152692,2793,werewolf,1344229855 +152692,2804,Christmas,1309280644 +152692,2810,anime,1357984944 +152692,2810,distorted reality,1357984946 +152692,2810,stalker,1357984966 +152692,2837,gay,1288756688 +152692,2837,homosexuality,1288756689 +152692,2837,Hugo Weaving,1288756681 +152692,2916,Arnold Schwarzenegger,1291005802 +152692,2916,dystopia,1291005805 +152692,2916,Philip K. Dick,1291005797 +152692,2926,1960s,1266149861 +152692,2926,60s,1266149869 +152692,2926,civil rights,1266149874 +152692,2926,John Waters,1266149937 +152692,2926,rock and roll,1266149877 +152692,2926,segregation,1266149885 +152692,2926,teen,1266149880 +152692,2935,Henry Fonda,1344184330 +152692,2942,dance,1269946927 +152692,2966,David Lynch,1356366323 +152692,2966,road trip,1356366324 +152692,2968,funny,1366298058 +152692,2968,history,1366298059 +152692,2968,John Cleese,1366298073 +152692,2968,Sean Connery,1366298051 +152692,2968,Terry Gilliam,1366298052 +152692,2968,time travel,1366298053 +152692,2973,philosophical,1322593545 +152692,2973,Woody Allen,1322593542 +152692,3005,Angelina Jolie,1353423784 +152692,3005,based on a book,1353423789 +152692,3005,Denzel Washington,1353423786 +152692,3005,Queen Latifah,1353423798 +152692,3005,serial killer,1353423803 +152692,3011,depressing,1345626059 +152692,3011,Jane Fonda,1345626061 +152692,3018,based on a short story,1380384076 +152692,3018,campy,1380384081 +152692,3018,cult classic,1380384090 +152692,3018,H.P. Lovecraft,1380384078 +152692,3018,horror,1380384087 +152692,3018,mad scientist,1380384095 +152692,3018,splatter,1380384098 +152692,3019,addiction,1264097622 +152692,3019,DRUG ADDICTION,1264097621 +152692,3019,drugs,1264097625 +152692,3019,Gus Van Sant,1264097625 +152692,3019,Heather Graham,1264097627 +152692,3087,Bill Murray,1311870966 +152692,3094,adapted from:book,1272455209 +152692,3094,gay,1272455217 +152692,3094,Hugh Grant,1272455214 +152692,3105,based on a book,1311832400 +152692,3105,based on a true story,1311832402 +152692,3105,Robert De Niro,1311832387 +152692,3105,Robin Williams,1311832390 +152692,3148,abortion,1277824375 +152692,3148,adapted from:book,1277824378 +152692,3148,based on a book,1277824384 +152692,3148,charlize theron,1277824364 +152692,3148,Incest,1277824366 +152692,3148,Michael Caine,1277824390 +152692,3148,orphanage,1277824400 +152692,3148,orphans,1277824398 +152692,3148,Oscar (Best Supporting Actor),1277824409 +152692,3148,Paul Rudd,1277824404 +152692,3148,Tobey Maguire,1277824367 +152692,3160,addiction,1262626637 +152692,3160,depression,1262626642 +152692,3160,julianne moore,1262626629 +152692,3160,melancholy,1262626648 +152692,3160,multiple storylines,1262626619 +152692,3160,Philip Seymour Hoffman,1262626617 +152692,3160,Tom Cruise,1262626613 +152692,3186,Angelina Jolie,1262624349 +152692,3186,based on a true story,1262624358 +152692,3186,mental illness,1262624362 +152692,3186,suicide,1262624370 +152692,3186,winona ryder,1262624356 +152692,3198,based on a book,1357501500 +152692,3198,based on a true story,1357501552 +152692,3198,Dustin Hoffman,1357501496 +152692,3198,prison,1357501506 +152692,3198,Steve McQueen,1357501494 +152692,3210,1980s,1265043734 +152692,3210,classic,1265043745 +152692,3210,ensemble cast,1265043763 +152692,3210,high school,1265043741 +152692,3210,Nicolas Cage,1265043807 +152692,3210,Sean Penn,1265043802 +152692,3210,teen,1265043752 +152692,3255,baseball,1356202663 +152692,3255,feminism,1356202685 +152692,3255,madonna,1356202692 +152692,3255,sports,1356202697 +152692,3255,Tom Hanks,1356202673 +152692,3255,women,1356202676 +152692,3255,World War II,1356202672 +152692,3261,Matt Dillon,1311616504 +152692,3261,relationships,1311616505 +152692,3261,seattle,1311616510 +152692,3271,based on a book,1318821430 +152692,3271,Gary Sinise,1318821427 +152692,3271,John Malkovich,1318821425 +152692,3275,brothers,1256058273 +152692,3275,dark humor,1256058272 +152692,3275,Irish,1256058298 +152692,3275,Mafia,1256058276 +152692,3275,silly,1256058292 +152692,3275,twins,1256058290 +152692,3275,vigilantism,1256058283 +152692,3363,friendship,1269782255 +152692,3363,George Lucas,1269782256 +152692,3363,Harrison Ford,1269782266 +152692,3363,rock and roll,1269782274 +152692,3363,teen,1269782284 +152692,3408,based on a true story,1277459407 +152692,3408,Julia Roberts,1277459420 +152692,3408,Oscar (Best Actress),1277459422 +152692,3408,social commentary,1277459430 +152692,3408,true story,1277459425 +152692,3441,Charlie Sheen,1277555591 +152692,3441,Patrick Swayze,1277555589 +152692,3441,war,1277555590 +152692,3499,adapted from:book,1382784733 +152692,3499,based on a book,1382784734 +152692,3499,based on book,1382784739 +152692,3499,Stephen King,1382784730 +152692,3544,alcoholism,1352484490 +152692,3544,Bobcat Goldthwait,1352484538 +152692,3544,clowns,1352484467 +152692,3544,cult film,1352484472 +152692,3545,based on a play,1322337436 +152692,3545,bisexual,1322337438 +152692,3545,Germany,1322337443 +152692,3545,Liza Minnelli,1322337470 +152692,3545,Oscar (Best Cinematography),1322337428 +152692,3545,Oscar (Best Directing),1322337428 +152692,3545,World War II,1322337428 +152692,3551,Dustin Hoffman,1293963457 +152692,3599,Frank Sinatra,1267983397 +152692,3599,Gene Kelly,1267983397 +152692,3606,Frank Sinatra,1269192997 +152692,3606,Gene Kelly,1269192997 +152692,3606,New York,1269192999 +152692,3613,mafia,1367757710 +152692,3730,Francis Ford Coppola,1311403753 +152692,3730,Gene Hackman,1311403768 +152692,3730,Harrison Ford,1311403768 +152692,3730,paranoia,1311403773 +152692,3737,kirk douglas,1324796238 +152692,3745,animation,1394476248 +152692,3745,post-apocalyptic,1394476254 +152692,3745,sci-fi,1394476255 +152692,3745,space,1394476257 +152692,3826,Kevin Bacon,1256058467 +152692,3914,Gay,1269098071 +152692,3914,sexuality,1269098039 +152692,3914,Timothy Olyphant,1269098034 +152692,3914,Zach Braff,1258301625 +152692,3932,adapted from:book,1276338681 +152692,3932,based on a book,1276338679 +152692,3932,mad scientist,1276338676 +152692,3969,alcoholism,1311863745 +152692,3969,haley joel osment,1311863752 +152692,3969,helen hunt,1311863753 +152692,3969,inspirational,1311863761 +152692,3969,kevin spacey,1311863760 +152692,4020,cate blanchett,1351928253 +152692,4020,Hilary Swank,1351928201 +152692,4020,Katie Holmes,1351928267 +152692,4020,Keanu Reeves,1351928196 +152692,4020,psychic power,1351928274 +152692,4020,Sam Raimi,1351928205 +152692,4029,Alec Baldwin,1263058065 +152692,4029,Julia Stiles,1263058079 +152692,4029,Philip Seymour Hoffman,1263058068 +152692,4029,Sarah Jessica Parker,1263058069 +152692,4036,1920s,1272183014 +152692,4036,Eddie Izzard,1272183053 +152692,4036,John Malkovich,1272183022 +152692,4036,Udo Kier,1272183038 +152692,4036,vampire,1272183029 +152692,4036,vampires,1272183028 +152692,4036,Willem Dafoe,1272183024 +152692,4041,Richard Gere,1292298737 +152692,4064,blaxploitation,1282010938 +152692,4064,Pam Grier,1282010940 +152692,4064,revenge,1282010947 +152692,4064,vigilante,1282010950 +152692,4065,blaxploitation,1294598825 +152692,4065,Pam Grier,1294598831 +152692,4065,revenge,1294598838 +152692,4085,action,1370448740 +152692,4085,Eddie Murphy,1370448745 +152692,4085,police,1370448750 +152692,4126,based on a book,1336847235 +152692,4126,drugs,1336847228 +152692,4126,friendship,1336847253 +152692,4126,Robert Downey Jr.,1336847209 +152692,4168,Ben Foster,1332433695 +152692,4168,Kirsten Dunst,1332433694 +152692,4223,Ed Harris,1270568024 +152692,4223,Joseph Fiennes,1270568145 +152692,4223,Jude Law,1270568023 +152692,4223,Nazis,1270568030 +152692,4223,Rachel Weisz,1270568018 +152692,4223,Russia,1270568035 +152692,4223,sniper,1270568040 +152692,4223,World War II,1270568013 +152692,4226,black and white,1260624059 +152692,4226,cult film,1260624059 +152692,4226,imdb top 250,1260624078 +152692,4226,Mindfuck,1260624066 +152692,4226,nonlinear,1260624067 +152692,4226,psychology,1260624074 +152692,4226,stylized,1260624068 +152692,4226,twist ending,1260624071 +152692,4231,Ashley Judd,1273918218 +152692,4231,Greg Kinnear,1273918219 +152692,4231,Hugh Jackman,1273918215 +152692,4278,black and white,1281922771 +152692,4278,history,1281922774 +152692,4278,Nazis,1281922769 +152692,4278,propaganda,1281922762 +152692,4278,Third Reich,1281922767 +152692,4278,World War II,1281922764 +152692,4327,Charles Bronson,1294320742 +152692,4327,Eli Wallach,1294320747 +152692,4327,Steve McQueen,1294320719 +152692,4327,western,1294320728 +152692,4327,Yul Brynner,1294320723 +152692,4329,Angie Dickinson,1292743322 +152692,4329,Dean Martin,1292743328 +152692,4329,John Wayne,1292743336 +152692,4342,gay,1273459128 +152692,4361,1980s,1274408357 +152692,4361,cross-dressing,1274408370 +152692,4361,drag,1274408360 +152692,4361,Dustin Hoffman,1274408354 +152692,4361,Oscar (Best Supporting Actress),1274408379 +152692,4389,boarding school,1280675191 +152692,4389,lesbian,1280675182 +152692,4389,Mischa Barton,1280677155 +152692,4389,Piper Perabo,1280677154 +152692,4389,poor dialogue,1280674781 +152692,4389,suicide,1280677149 +152692,4452,Jon Favreau,1267869179 +152692,4452,organized crime,1267869193 +152692,4452,Vince Vaughn,1267869184 +152692,4467,Eric Idle,1325403731 +152692,4467,fantasy,1325403735 +152692,4467,imagination,1325403742 +152692,4467,story-in-a-story,1325403745 +152692,4467,Terry Gilliam,1325403742 +152692,4467,Uma Thurman,1325403751 +152692,4615,based on a book,1314272199 +152692,4615,crime,1314272166 +152692,4615,homosexuality,1314272172 +152692,4616,high school,1267973366 +152692,4616,Morgan Freeman,1267973348 +152692,4616,true story,1267973359 +152692,4621,babies,1362231429 +152692,4621,John Travolta,1362231430 +152692,4621,Kirstie Alley,1362231436 +152692,4639,Billy Crystal,1367141029 +152692,4639,Catherine Zeta-Jones,1367141035 +152692,4639,Hank Azaria,1367141045 +152692,4639,John Cusack,1367141043 +152692,4639,Julia Roberts,1367141033 +152692,4639,movie business,1367141048 +152692,4639,Seth Green,1367141041 +152692,4642,based on a play,1274035327 +152692,4642,Berlin,1274035327 +152692,4642,campy,1274035330 +152692,4642,cult film,1274035374 +152692,4642,directorial debut,1274035409 +152692,4642,Germany,1274035398 +152692,4642,music,1274035403 +152692,4642,musical,1274035393 +152692,4642,queer,1274035375 +152692,4642,quirky,1274035389 +152692,4642,sexuality,1274035384 +152692,4642,transgender,1274035379 +152692,4724,Cillian Murphy,1264703501 +152692,4724,mental hospital,1264703545 +152692,4724,mental illness,1264703522 +152692,4724,suicide,1264703650 +152692,4734,cameos,1256058024 +152692,4734,cult film,1256058045 +152692,4734,Kevin Smith,1256058031 +152692,4734,parody,1256058061 +152692,4734,Stoner Movie,1256058052 +152692,4734,view askew,1256058035 +152692,4738,New York,1312361613 +152692,4738,time travel,1312361614 +152692,4881,Billy Bob Thornton,1272343188 +152692,4881,black and white,1272343183 +152692,4881,Coen Brothers,1272343217 +152692,4881,James Gandolfini,1272343198 +152692,4881,narrated,1272343192 +152692,4881,scarlett johansson,1272343197 +152692,4896,based on a book,1270568548 +152692,4896,fantasy,1270568571 +152692,4896,magic,1270568582 +152692,4896,Wizards,1270568577 +152692,4981,John Cleese,1260700318 +152692,4995,jennifer connelly,1262625464 +152692,4995,mental illness,1262625402 +152692,4995,paul bettany,1262625439 +152692,4995,psychology,1262625410 +152692,4995,Russell Crowe,1262625412 +152692,4995,schizophrenia,1262625408 +152692,4995,true story,1262625421 +152692,5010,Eric Bana,1335980255 +152692,5010,Orlando Bloom,1335980251 +152692,5010,Ridley Scott,1335980250 +152692,5010,war,1335980259 +152692,5065,Debra Messing,1270129375 +152692,5065,Richard Gere,1270129383 +152692,5222,lesbian,1345270202 +152692,5222,queer,1345270200 +152692,5222,relationships,1345270223 +152692,5222,sexuality,1345270209 +152692,5275,David Carradine,1273666171 +152692,5275,Martin Scorsese,1273666161 +152692,5348,Debra Messing,1277210538 +152692,5348,movie business,1277210543 +152692,5348,Téa Leoni,1277210536 +152692,5348,Woody Allen,1277210535 +152692,5388,Al Pacino,1307198119 +152692,5388,Christopher Nolan,1307198116 +152692,5388,Robin Williams,1307198131 +152692,5418,action,1356936876 +152692,5418,amnesia,1356936881 +152692,5418,assassin,1356936883 +152692,5418,based on a book,1356936890 +152692,5418,Clive Owen,1356936893 +152692,5418,Franka Potente,1356936915 +152692,5418,Matt Damon,1356936878 +152692,5421,Catholicism,1310657219 +152692,5421,Christianity,1310657219 +152692,5421,Emile Hirsch,1310657249 +152692,5421,Jena Malone,1310657239 +152692,5421,Kieran Culkin,1310657225 +152692,5464,1930s,1275201075 +152692,5464,Daniel Craig,1275201081 +152692,5464,father-son relationship,1275201089 +152692,5464,Jude Law,1275201067 +152692,5464,organized crime,1275201099 +152692,5464,Oscar (Best Cinematography),1275201100 +152692,5464,Tom Hanks,1275201062 +152692,5508,Manchester,1257866114 +152692,5508,new wave,1257866118 +152692,5508,true story,1257866129 +152692,5540,Ancient Greeks,1264358136 +152692,5540,Claymation,1264358140 +152692,5540,mythology,1264358145 +152692,5577,adolescence,1272558358 +152692,5577,Claire Danes,1272558358 +152692,5577,dramedy,1272558364 +152692,5577,Jeff Goldblum,1272558356 +152692,5577,Kieran Culkin,1272558354 +152692,5577,Ryan Phillippe,1272558401 +152692,5608,based on a true story,1270057311 +152692,5608,German,1270057320 +152692,5608,mass behavior,1270057307 +152692,5608,over-the-top ending,1270057301 +152692,5608,prison,1270057305 +152692,5608,psychology,1270057309 +152692,5617,BDSM,1272100041 +152692,5617,black comedy,1272100051 +152692,5617,James Spader,1272100053 +152692,5617,Maggie Gyllenhaal,1272100054 +152692,5617,sexuality,1272100073 +152692,5625,Jake Gyllenhaal,1259475142 +152692,5666,adapted from:book,1355254445 +152692,5666,based on a book,1355254444 +152692,5666,Brett Easton Ellis,1355254403 +152692,5666,college,1355254434 +152692,5666,drugs,1355254429 +152692,5666,Jessica Biel,1355254427 +152692,5666,narrated,1355254419 +152692,5666,queer,1355254423 +152692,5666,Shannyn Sossamon,1355254472 +152692,5666,suicide attempt,1355254412 +152692,5690,Studio Ghibli,1289135877 +152692,5690,tear jerker,1289135898 +152692,5690,World War II,1289135873 +152692,5690,WWII,1289135893 +152692,5715,slasher,1295107263 +152692,5762,Rainer Werner Fassbinder,1296307174 +152692,5763,Rainer Werner Fassbinder,1277346890 +152692,5890,based on a book,1324747584 +152692,5890,disability,1324747606 +152692,5890,eccentricity,1324747586 +152692,5890,friendship,1324747588 +152692,5890,mental illness,1324747602 +152692,5890,neurosis,1324747596 +152692,5890,quirky,1324747600 +152692,5890,self discovery,1324747594 +152692,5903,Amazing Cinematography,1257961478 +152692,5903,dystopia,1257961491 +152692,5945,based on a book,1335102640 +152692,5945,Depressing,1335102643 +152692,5945,Jack Nicholson,1335102640 +152692,5945,Kathy Bates,1335102654 +152692,5945,road trip,1335102654 +152692,5995,Adrien Brody,1280842011 +152692,5995,historical,1280842034 +152692,5995,holocaust,1280842031 +152692,5995,Nazis,1280842029 +152692,5995,Poland,1280842026 +152692,5995,Roman Polanski,1280842015 +152692,5995,true story,1280842022 +152692,5995,World War II,1280842012 +152692,6001,Martin Scorsese,1319118815 +152692,6001,Robert De Niro,1319118818 +152692,6001,Sandra Bernhard,1319118816 +152692,6003,adapted from:book,1364498316 +152692,6003,based on a book,1364498310 +152692,6003,directorial debut,1364498318 +152692,6003,George Clooney,1364498319 +152692,6003,Julia Roberts,1364498329 +152692,6003,Sam Rockwell,1364498307 +152692,6040,Emma Caulfield,1339264317 +152692,6063,Jeremy Sisto,1280432959 +152692,6159,small town,1280649804 +152692,6159,Zooey Deschanel,1280649796 +152692,6184,David Bowie,1256123144 +152692,6187,Capital Punishment,1371819251 +152692,6187,Death penalty,1371819254 +152692,6187,Kate Winslet,1371819264 +152692,6187,Kevin Spacey,1371819269 +152692,6222,Anne Heche,1275325555 +152692,6222,awful adaptation,1275325560 +152692,6222,based on a book,1275325552 +152692,6222,childish,1275325615 +152692,6222,Christina Ricci,1275325553 +152692,6222,depression,1275325552 +152692,6222,Jason Biggs,1275325576 +152692,6222,lame,1275325582 +152692,6222,Lou Reed,1275325568 +152692,6222,mental health,1275325575 +152692,6222,pretentious,1275325615 +152692,6222,psychology,1275325569 +152692,6222,writing,1275325571 +152692,6223,addiction,1263837659 +152692,6223,Brittany Murphy,1263837665 +152692,6223,drugs,1263837661 +152692,6223,Jason Schwartzman,1263837671 +152692,6223,John Leguizamo,1263837667 +152692,6223,Mena Suvari,1263837686 +152692,6250,alien invasion,1367159525 +152692,6250,aliens,1367159518 +152692,6250,based on a book,1367159514 +152692,6250,Morgan Freeman,1367159501 +152692,6250,Stephen King,1367159493 +152692,6286,Aki Kaurismäki,1350469320 +152692,6286,amnesia,1350469320 +152692,6286,atmospheric,1350469322 +152692,6286,Finnish,1350469324 +152692,6287,Adam Sandler,1348901350 +152692,6287,Jack Nicholson,1348901353 +152692,6287,John Turturro,1348901365 +152692,6297,Adapted from book,1366638287 +152692,6297,based on a book,1366638290 +152692,6297,children,1366638293 +152692,6297,curse,1366638296 +152692,6297,Patricia Arquette,1366638303 +152692,6297,Shia LeBoeuf,1366638280 +152692,6329,Joseph Gordon-Levitt,1262624231 +152692,6329,mental illness,1262624234 +152692,6329,Mental Institution,1262624235 +152692,6329,Zooey Deschanel,1262624236 +152692,6344,Iceland,1280071641 +152692,6395,George A. Romero,1267639588 +152692,6395,Romero,1267639583 +152692,6441,Michael Caine,1271689931 +152692,6441,Nazis,1271689944 +152692,6441,World War II,1271689928 +152692,6502,British,1257866053 +152692,6502,london,1257866059 +152692,6502,Zombie,1257866084 +152692,6549,Mandy Moore,1364657018 +152692,6564,Angelina Jolie,1359687199 +152692,6581,Sherlock Holmes,1394353913 +152692,6602,B-movie,1288507784 +152692,6638,Cult film,1303391693 +152692,6731,George A. Romero,1290435159 +152692,6731,zombies,1290435167 +152692,6750,Woody Allen,1326550091 +152692,6753,Haley Joel Osment,1312383304 +152692,6753,Michael Caine,1312383308 +152692,6753,Robert Duvall,1312383310 +152692,6776,Bollywood,1333718515 +152692,6776,colonialism,1333718526 +152692,6776,cricket,1333718523 +152692,6776,India,1333718519 +152692,6782,Aki Kaurismäki,1271943696 +152692,6782,camp,1271943701 +152692,6782,Finnish,1271943706 +152692,6782,quirky,1271943711 +152692,6782,road movie,1271943708 +152692,6782,satire,1271943716 +152692,6820,high school,1335378643 +152692,6820,werewolves,1335378641 +152692,6867,charming,1276701274 +152692,6867,cute,1276701282 +152692,6867,depression,1276701278 +152692,6867,friendship,1276701289 +152692,6867,interesting characters,1276701292 +152692,6867,loneliness,1276701286 +152692,6867,Michelle Williams,1276701296 +152692,6867,quirky,1276701299 +152692,6867,small town,1276701304 +152692,6873,black comedy,1338042517 +152692,6873,Catherine Zeta-Jones,1338042521 +152692,6873,Coen Brothers,1338042529 +152692,6873,divorce,1338042538 +152692,6873,George Clooney,1338042513 +152692,6881,family,1325242002 +152692,6881,Katie Holmes,1261909645 +152692,6881,kindness of strangers,1325242024 +152692,6881,New York,1325242009 +152692,6881,quirky,1261909656 +152692,6881,Thanksgiving,1325242015 +152692,6892,Mel Gibson,1268669437 +152692,6892,Robert Downey Jr.,1268669435 +152692,6942,Bill Nighy,1287920241 +152692,6942,Billy Bob Thornton,1287920212 +152692,6942,british,1287920217 +152692,6942,ensemble cast,1287920219 +152692,6942,Hugh Grant,1287920222 +152692,6942,Keira Knightley,1287920221 +152692,6942,multiple storylines,1287920224 +152692,6942,Romance,1287920226 +152692,7001,aliens,1263576454 +152692,7001,disturbing,1263576463 +152692,7001,Donald Sutherland,1263576439 +152692,7001,Jeff Goldblum,1263576441 +152692,7001,Leonard Nimoy,1263576446 +152692,7001,remake,1263576449 +152692,7036,high school,1314804183 +152692,7036,werewolf,1314804187 +152692,7051,Woody Allen,1262233244 +152692,7076,car chase,1280577106 +152692,7076,Steve McQueen,1280577089 +152692,7154,chick flick,1314260459 +152692,7154,college,1314260463 +152692,7154,education,1314260469 +152692,7154,feminism,1314260480 +152692,7154,Julia Roberts,1314260451 +152692,7154,Julia Stiles,1314260480 +152692,7154,Kirsten Dunst,1314260458 +152692,7154,Maggie Gyllenhaal,1314260484 +152692,7162,Jude Law,1256054116 +152692,7162,Nicole Kidman,1256054123 +152692,7162,Renee Zellweger,1256054138 +152692,7162,War,1256054132 +152692,7164,adapted from:book,1361127373 +152692,7164,based on a book,1361127367 +152692,7164,based on book,1361127368 +152692,7164,fantasy,1361127378 +152692,7258,Chris Evans,1347814215 +152692,7258,Scarlett Johansson,1347814220 +152692,7260,gay,1280586333 +152692,7260,Gay Lead Character,1280586338 +152692,7260,homophobia,1280586343 +152692,7260,low budget,1280586349 +152692,7260,Mormon,1280586352 +152692,7260,religion,1280586357 +152692,7325,Based on a TV show,1282011151 +152692,7325,Ben Stiller,1282011154 +152692,7325,Crime,1282011169 +152692,7325,drugs,1282011171 +152692,7325,Owen Wilson,1282011158 +152692,7325,Vince Vaughn,1282011159 +152692,7325,Will Ferrell,1282011160 +152692,7361,Jim Carrey,1262626282 +152692,7361,romance,1262626287 +152692,7361,surreal,1262626284 +152692,7364,cillian murphy,1264613080 +152692,7364,Colin Farrell,1264613073 +152692,7364,Ireland,1264613066 +152692,7364,multiple storylines,1264613069 +152692,7371,cult film,1257866289 +152692,7371,disturbing,1257866301 +152692,7371,narrated,1257866295 +152692,7372,Heath Ledger,1361613687 +152692,7372,Orlando Bloom,1361613696 +152692,7377,Don Cheadle,1265494093 +152692,7377,Jena Malone,1265494098 +152692,7377,Kevin Spacey,1265494096 +152692,7419,black comedy,1276000829 +152692,7419,dark comedy,1276000826 +152692,7419,Martin Scorsese,1276000825 +152692,7419,New York City,1276000833 +152692,7419,Rosanna Arquette,1276000836 +152692,7448,Amy Poehler,1263708783 +152692,7448,Ben Stiller,1263708786 +152692,7448,Christopher Walken,1263708785 +152692,7448,Jack Black,1263708785 +152692,7448,Rachel Weisz,1263708790 +152692,7502,not a movie,1297431639 +152692,7749,French,1278751539 +152692,7749,French New Wave,1278751526 +152692,7749,Jean-Luc Godard,1278751518 +152692,7802,based on a book,1303232543 +152692,7930,Wes Craven,1289108413 +152692,7934,1920s,1277535892 +152692,7934,1930s,1277535886 +152692,7934,black and white,1277535882 +152692,7934,fake documentary,1277535862 +152692,7934,Mia Farrow,1277535876 +152692,7934,mockumentary,1277535872 +152692,7934,parody,1277535867 +152692,7934,psychology,1277535870 +152692,7934,Woody Allen,1277535862 +152692,8042,Harvey Keitel,1272117584 +152692,8042,Martin Scorsese,1272117589 +152692,8042,Robert De Niro,1272117593 +152692,8266,Prince,1261651893 +152692,8266,rock and roll,1261651898 +152692,8361,apocalypse,1265027282 +152692,8361,catastrophe,1265027295 +152692,8361,climate change,1265027297 +152692,8361,Environment,1265027320 +152692,8361,Environmental,1265027318 +152692,8361,natural disaster,1265027298 +152692,8361,propaganda,1265027305 +152692,8501,Jennifer Jason Leigh,1289058046 +152692,8533,Boring,1276409621 +152692,8533,chick flick,1276409596 +152692,8533,CLASS DIFFERENCES,1276409600 +152692,8533,memory loss,1276409606 +152692,8533,Rachel McAdams,1276409592 +152692,8533,Romance,1276409611 +152692,8533,Ryan Gosling,1276409595 +152692,8596,Peter Sellers,1347031411 +152692,8618,Joan Crawford,1281454530 +152692,8618,western,1281454534 +152692,8641,Ben Stiller,1362498772 +152692,8641,Christina Applegate,1362498774 +152692,8641,jack black,1362498765 +152692,8641,Paul Rudd,1362498759 +152692,8641,Steve Carell,1362498750 +152692,8641,Vince Vaughn,1362498753 +152692,8641,Will Ferrell,1362498757 +152692,8665,action,1357020355 +152692,8665,amnesia,1357020339 +152692,8665,assassin,1357020341 +152692,8665,based on a book,1357020335 +152692,8665,conspiracy,1357020343 +152692,8665,Matt Damon,1357020331 +152692,8674,Cillian Murphy,1256096445 +152692,8799,Brittany Murphy,1356634842 +152692,8799,Holly Hunter,1356634853 +152692,8799,Kathy Bates,1356634848 +152692,8799,reality TV,1356634857 +152692,8799,Ron Livingston,1356634846 +152692,8807,Neil Patrick Harris,1407660111 +152692,8807,stoner comedy,1407660116 +152692,8808,romance,1348379140 +152692,8808,royalty,1348379142 +152692,8813,adultery,1370091473 +152692,8813,Mark Ruffalo,1370091471 +152692,8847,Prince,1268105421 +152692,8866,Paul Bettany,1256133628 +152692,8910,Dustin Hoffman,1273816134 +152692,8910,Jude Law,1273816125 +152692,8910,Mark Wahlberg,1273816132 +152692,8910,Naomi Watts,1273816128 +152692,8910,philosophy,1273816139 +152692,8910,satire,1273816151 +152692,8914,clever,1278766158 +152692,8914,complex,1278766159 +152692,8914,Complicated,1278766152 +152692,8914,complicated plot,1278766154 +152692,8914,directorial debut,1278766162 +152692,8914,low budget,1278766167 +152692,8914,mindfuck,1278766170 +152692,8914,sci-fi,1278766171 +152692,8914,time travel,1278766178 +152692,8916,ballroom dancing,1351177602 +152692,8916,Jennifer Lopez,1351177584 +152692,8916,midlife crisis,1351177597 +152692,8916,Richard Gere,1351177590 +152692,8966,adultery,1269793611 +152692,8966,biography,1269793613 +152692,8966,biopic,1269793616 +152692,8966,gay,1269793618 +152692,8966,homosexuality,1269793618 +152692,8966,Liam Neeson,1269793622 +152692,8966,Peter Sarsgaard,1269793633 +152692,8966,psychology,1269793643 +152692,8966,queer,1269793632 +152692,8966,science,1269793629 +152692,8966,sex,1269793624 +152692,8966,sexuality,1269793626 +152692,8966,social commentary,1269793628 +152692,8994,Jerry Lewis,1320487643 +152692,9015,Guy Pearce,1265309861 +152692,9015,Lili Taylor,1265309863 +152692,25923,based on a book,1267882869 +152692,25923,Oscar (Best Cinematography),1267882880 +152692,26152,Batman,1388263323 +152692,26152,cult film,1388263329 +152692,26163,Bob Dylan,1268925804 +152692,26231,hallucinatory,1274978884 +152692,26231,Mick Jagger,1274978867 +152692,26246,Donald Sutherland,1277644824 +152692,26285,cult film,1261938689 +152692,26285,scifi,1261938668 +152692,26502,based on a book,1324724956 +152692,26502,Charles Dickens,1324724960 +152692,26502,Christmas,1324724968 +152692,26554,alone in the world,1325354274 +152692,26554,apocalypse,1325354275 +152692,26554,Isolation,1325354280 +152692,26554,Post Apocalypse,1325354280 +152692,26554,post-apocalyptic,1325354286 +152692,26693,Stephen King,1256055120 +152692,26693,Tim Curry,1256055125 +152692,27020,Angelina Jolie,1270230209 +152692,27020,Faye Dunaway,1270230223 +152692,27020,lesbian,1270230211 +152692,27020,models,1270230212 +152692,27152,finnish,1350469440 +152692,27152,music,1350469445 +152692,27152,musicians,1350469441 +152692,27152,punk rock,1350469448 +152692,27246,Chlöe Sevigny,1276534365 +152692,27246,Ellen Degeneres,1276534366 +152692,27246,lesbian,1276440169 +152692,27246,made for TV,1276534376 +152692,27246,Michelle Williams,1276440177 +152692,27246,Sharon Stone,1276440174 +152692,27266,androids,1269516344 +152692,27266,melancholy,1269516351 +152692,27266,slow,1269516354 +152692,27266,stylized,1269516361 +152692,27266,Wong Kar Wai,1269516358 +152692,27537,social criticism,1409424144 +152692,27537,surreal,1409424147 +152692,27537,Vincenzo Natali,1409424149 +152692,27646,based on a true story,1280502717 +152692,27646,Gay,1280502752 +152692,27646,Lee Pace,1280502703 +152692,27646,military,1280502870 +152692,27646,transgender,1280502860 +152692,27647,19th century,1314475443 +152692,27647,based on book,1314475441 +152692,27647,cross dressing,1314475426 +152692,27647,cross dressing women,1314475422 +152692,27647,lesbian,1314475429 +152692,27647,made for TV,1314475433 +152692,27647,queer,1314475436 +152692,27700,1950s,1271686584 +152692,27700,based on a book,1271686591 +152692,27700,boarding school,1271686592 +152692,27700,bullying,1271686597 +152692,27700,domestic violence,1271686598 +152692,27700,friendship,1271686609 +152692,27700,hierarchy,1271686609 +152692,27700,humiliation,1271686611 +152692,27700,swedish,1271686621 +152692,27790,Danny Boyle,1325841567 +152692,27790,England,1325841571 +152692,27790,inspirational,1325841591 +152692,27790,surreal,1325841582 +152692,27815,boarding school,1289589531 +152692,27815,feel-good,1289589570 +152692,27815,France,1289589562 +152692,27815,heartwarming,1289589533 +152692,27815,inspiring teacher,1289589534 +152692,27815,music,1289589543 +152692,27815,private school,1289589545 +152692,27815,strength through music,1289589537 +152692,27838,Rory Culkin,1296060053 +152692,30707,boxing,1265522042 +152692,30707,Clint Eastwood,1265522044 +152692,30707,drama,1265522051 +152692,30707,hilary swank,1265522111 +152692,30707,Morgan Freeman,1265522048 +152692,30707,narrated,1265522066 +152692,30707,Oscar Winner,1265522077 +152692,30707,sports,1265522095 +152692,30723,Art,1256053959 +152692,30723,Tim Roth,1256053964 +152692,30810,Bill Murray,1404644457 +152692,30810,Cult Classic,1404644460 +152692,30810,off-beat comedy,1404644475 +152692,30810,Owen Wilson,1404644463 +152692,30810,quirky,1404644469 +152692,30810,visually appealing,1404644470 +152692,30810,Wes Anderson,1404644466 +152692,31437,based on a true story,1312982452 +152692,31437,Japan,1312982456 +152692,31437,siblings,1312982462 +152692,31437,Tokyo,1312982464 +152692,31539,movie business,1270365790 +152692,31539,Troy Duffy,1270365796 +152692,31685,Eva Mendes,1362815554 +152692,31685,Kevin James,1362815555 +152692,31685,Will Smith,1362815557 +152692,32298,interracial romance,1363438114 +152692,33166,cultural conflict,1262626451 +152692,33166,multiple storylines,1262626457 +152692,33166,overrated,1262626439 +152692,33166,race issues,1262626462 +152692,33166,racism,1262626464 +152692,33166,Sandra Bullock,1262626465 +152692,33171,child abuse,1262514579 +152692,33171,gay,1262514570 +152692,33171,Joseph Gordon-Levitt,1262514563 +152692,33171,male prostitute,1262514563 +152692,33171,prostitution,1262514567 +152692,33171,queer,1262514568 +152692,33296,Ron Livingston,1354906770 +152692,33296,Ryan Reynolds,1354906766 +152692,33421,Lars von Trier,1296144591 +152692,33660,Biography,1281276341 +152692,33660,boxing,1281276346 +152692,33660,great depression,1281276356 +152692,33660,Renée Zellweger,1281276492 +152692,33660,Russell Crowe,1281276450 +152692,33660,sports,1281276461 +152692,33660,true story,1281276451 +152692,33794,based on a comic,1262624509 +152692,33794,batman,1260624202 +152692,33794,comic book,1260624205 +152692,33817,adolescence,1276787455 +152692,33817,England,1276787436 +152692,33817,lesbian,1276787438 +152692,33817,love,1276787442 +152692,33817,queer,1276787444 +152692,33817,romance,1276787451 +152692,34048,adapted from:book,1277221788 +152692,34048,alien invasion,1277221781 +152692,34048,aliens,1277221778 +152692,34048,based on a book,1277221775 +152692,34048,Dakota Fanning,1277221769 +152692,34048,remake,1277221761 +152692,34048,sci-fi,1277221754 +152692,34048,Steven Spielberg,1277221753 +152692,34048,Tim Robbins,1277221755 +152692,34048,Tom Cruise,1277221752 +152692,34164,dark comedy,1274445024 +152692,34164,Lisa Kudrow,1274445030 +152692,34164,Maggie Gyllenhaal,1274445034 +152692,34164,Steve Coogan,1274445035 +152692,34319,action,1272990182 +152692,34319,dystopia,1272990194 +152692,34319,Ewan McGregor,1272990168 +152692,34319,future,1272990187 +152692,34319,genetics,1272990191 +152692,34319,Scarlett Johansson,1272990171 +152692,34319,scifi,1272990201 +152692,34319,Steve Buscemi,1272990171 +152692,34326,Gus Van Sant,1279980042 +152692,34338,Billy Connolly,1272093439 +152692,34338,Chris Rock,1272093448 +152692,34338,Eddie Izzard,1272093475 +152692,34338,George Carlin,1272093459 +152692,34338,Robin Williams,1272093462 +152692,34338,Whoopi Goldberg,1272093464 +152692,34405,assassin,1356379998 +152692,34405,based on a TV show,1356379988 +152692,34405,cult film,1356379999 +152692,34405,dystopia,1356379985 +152692,34405,sci-fi,1356380028 +152692,34405,space,1356380020 +152692,34437,Bill Murray,1273541390 +152692,34437,Jim Jarmusch,1273541398 +152692,34437,quirky,1273541417 +152692,34437,road trip,1273541414 +152692,34520,Johnny Knoxville,1262625887 +152692,34520,not funny,1262625888 +152692,34520,redneck,1262625895 +152692,34523,drugs,1274612698 +152692,34523,Glenn Close,1274612697 +152692,34523,high school,1274612704 +152692,34523,Jamie Bell,1274612700 +152692,34523,suicide,1274612702 +152692,34528,Amy Adams,1366654206 +152692,34528,class issues,1366654214 +152692,34528,pregnancy,1366654222 +152692,34540,black comedy,1365184866 +152692,34540,Evan Rachel Wood,1365184849 +152692,34540,high school,1365184859 +152692,34540,Ron Livingston,1365184883 +152692,34540,suicide,1365184854 +152692,34542,bears,1303972280 +152692,34542,biopic,1303972288 +152692,34542,documentary,1303972283 +152692,35957,Cillian Murphy,1256096474 +152692,36535,elijah wood,1289668538 +152692,36535,Eugene Hutz,1289668539 +152692,36535,Holocaust,1289668561 +152692,36535,quirky,1289668547 +152692,36535,ukraine,1289668546 +152692,37384,homophobic,1348146428 +152692,37384,Justin Long,1348146279 +152692,37384,Ryan Reynolds,1348146270 +152692,37384,workplace,1348146284 +152692,37857,alternate reality,1280159827 +152692,37857,animation,1280159832 +152692,37857,claymation,1280159834 +152692,37857,fantasy,1280159841 +152692,37857,Fantasy World,1280159846 +152692,37857,irish accent,1280159847 +152692,37857,neil gaiman,1280159850 +152692,37857,parallel universe,1280159852 +152692,37857,Stephen Fry,1280159879 +152692,38538,high school,1280593827 +152692,38538,Kristen Stewart,1280593816 +152692,38538,teenage angst,1280593814 +152692,38600,addiction,1276787385 +152692,38600,alcoholism,1276787384 +152692,38600,based on a book,1276787390 +152692,38600,Charles Bukowski,1276787384 +152692,38600,Lili Taylor,1276787387 +152692,38600,Matt Dillon,1276787387 +152692,38701,Tim Roth,1268563626 +152692,38798,based on a book,1289656743 +152692,38798,Cameron Diaz,1289656743 +152692,38798,chick flick,1289656748 +152692,38798,family bonds,1289656750 +152692,38798,siblings,1289656762 +152692,38798,Toni Collette,1289656760 +152692,39052,amateur,1350469369 +152692,39052,Finnish,1350469375 +152692,39052,low budget,1350469376 +152692,39052,parody,1350469377 +152692,39052,sci-fi,1350469382 +152692,39183,bittersweet,1280675311 +152692,39183,Heath Ledger,1280675291 +152692,39183,homosexuality,1280675300 +152692,39183,literary adaptation,1280675315 +152692,39183,Oscar (Best Directing),1280675325 +152692,39183,Oscar (Best Picture),1280675293 +152692,39183,sexuality,1280675297 +152692,39234,Charlize Theron,1278175996 +152692,39234,Jeremy Renner,1278176002 +152692,39234,Sean Bean,1278176009 +152692,39234,Sissy Spacek,1278175994 +152692,39234,true story,1278175991 +152692,39234,Woody Harrelson,1278175992 +152692,39381,Australia,1307628179 +152692,39381,Guy Pearce,1307628186 +152692,39381,nick cave,1307628174 +152692,39414,based on a book,1352573996 +152692,39414,Claire Danes,1352573999 +152692,39414,Jason Schwartzman,1352574005 +152692,39414,Steve Martin,1352574009 +152692,39444,dark comedy,1347780249 +152692,39444,divorce,1347780247 +152692,39444,dysfunctional family,1347780246 +152692,39444,loser comedy,1347780238 +152692,39444,Michael Caine,1347780233 +152692,39444,Nicolas Cage,1347780223 +152692,39444,unlikeable characters,1347780231 +152692,39886,Dakota Fanning,1270128635 +152692,39886,ensemble cast,1270128636 +152692,39886,Glenn Close,1270128637 +152692,39886,good camera work,1270128661 +152692,39886,multiple storylines,1270128645 +152692,39886,nonlinear,1270128647 +152692,40278,Jake Gyllenhaal,1263738162 +152692,40278,Middle East,1263738134 +152692,40278,War,1263738149 +152692,40414,based on a true story,1274460149 +152692,40414,Christmas,1274460164 +152692,40414,Daniel Brühl,1274460192 +152692,40414,Diane Kruger,1274460154 +152692,40414,french,1274460160 +152692,40414,german,1274460158 +152692,40414,true story,1274460173 +152692,40414,war,1274460172 +152692,40414,World War I,1274460147 +152692,40494,alcoholism,1325439376 +152692,40494,Mika Kaurismäki,1325439376 +152692,40583,complicated,1263919269 +152692,40583,George Clooney,1263919270 +152692,40583,israel,1263919304 +152692,40583,Matt Damon,1263919271 +152692,40583,middle east,1263919278 +152692,40583,oil,1263919278 +152692,40583,Political,1263919275 +152692,40583,political thriller,1263919345 +152692,40583,world politics,1263919276 +152692,40591,Aki Kaurismäki,1274462539 +152692,40629,adapted from:book,1276431111 +152692,40629,based on a book,1276431108 +152692,40629,chick flick,1276431103 +152692,40629,Classic,1276431095 +152692,40629,Donald Sutherland,1276431099 +152692,40629,England,1276431091 +152692,40629,Jane Austen,1276431085 +152692,40629,Keira Knightley,1276431084 +152692,40629,romance,1276431089 +152692,40732,overrated,1262626014 +152692,40870,coming of age,1344156809 +152692,40870,drugs,1344156811 +152692,40870,gay,1344156800 +152692,40870,glbt,1344156817 +152692,40870,great soundtrack,1344156818 +152692,40870,homosexuality,1344156800 +152692,40870,queer,1344156804 +152692,40870,slow,1344156828 +152692,40966,John Malkovich,1268759590 +152692,40966,johnny depp,1268759597 +152692,42002,Broadway,1343135734 +152692,42002,Matthew Broderick,1343135739 +152692,42002,re-make,1343135746 +152692,42002,Remake,1343135744 +152692,42002,Uma Thurman,1343135732 +152692,42002,will ferrel,1343135728 +152692,42004,coming of age,1365246727 +152692,42004,complex characters,1365246729 +152692,42004,drugs,1365246736 +152692,42004,dysfunctional family,1365246737 +152692,42004,gender identity,1365246740 +152692,42004,lgbt,1365246764 +152692,42004,queer,1365246750 +152692,42004,road trip,1365246754 +152692,42004,roadtrip,1365246745 +152692,42004,transgender,1365246744 +152692,42004,transsexuals,1365246743 +152692,42011,Jim Carrey,1337405657 +152692,42728,Ireland,1439663675 +152692,42728,love story,1439663672 +152692,42728,medieval,1439663677 +152692,43376,based on a true story,1317481082 +152692,43376,true story,1317481087 +152692,43376,World War II,1317481089 +152692,43419,friendship,1352030509 +152692,43419,Penelope Cruz,1352030562 +152692,43419,revenge,1352030516 +152692,43419,Salma Hayek,1352030592 +152692,43460,adapted from:book,1271851787 +152692,43460,based on a book,1271851793 +152692,43460,England,1271851804 +152692,43460,Gillian Anderson,1271851806 +152692,43460,Michael Winterbottom,1271851887 +152692,43460,Stephen Fry,1271851846 +152692,43460,Steve Coogan,1271851819 +152692,43549,Clea DuVall,1265029833 +152692,43560,based on a book,1347553828 +152692,43560,Colin Firth,1347553834 +152692,43560,Emma Thompson,1347553835 +152692,43560,fairy tale,1347553856 +152692,43560,magic,1347553855 +152692,43744,Gay,1256056597 +152692,43744,lesbian,1256056596 +152692,43744,London,1256056612 +152692,43744,queer,1256056605 +152692,44191,comic book,1256054094 +152692,44397,cannibalism,1352395122 +152692,44397,gore,1352395132 +152692,44397,rape,1352395135 +152692,44397,remake,1352395124 +152692,44397,torture porn,1352395131 +152692,44555,1980s,1273161760 +152692,44555,Berlin,1273161759 +152692,44555,East Germany,1273161768 +152692,44555,Germany,1273161769 +152692,44555,Oscar (Best Foreign Language Film),1273161774 +152692,44555,Oscar Winner,1273161775 +152692,44555,Stasi,1273161790 +152692,44761,high school,1262534484 +152692,44761,Joseph Gordon-Levitt,1262534481 +152692,44761,pretentious,1262534490 +152692,44864,Catherine Keener,1347288993 +152692,44864,Jennifer Aniston,1347288997 +152692,44864,Joan Cusack,1347289002 +152692,44864,marriage,1347289009 +152692,44929,addiction,1263928461 +152692,44929,Australia,1263928487 +152692,44929,drug addiction,1263928483 +152692,44929,Geoffrey Rush,1263928481 +152692,44929,Heath Ledger,1263928466 +152692,44929,heroin,1263928468 +152692,44929,prostitution,1263928469 +152692,45440,art school,1263035309 +152692,45440,John Malkovich,1263035313 +152692,45440,lesbian,1263035317 +152692,45501,break-up,1348318775 +152692,45501,Jason Bateman,1348318779 +152692,45501,Jennifer Aniston,1348318782 +152692,45501,Vince Vaughn,1348318787 +152692,45506,jeremy renner,1263738061 +152692,45635,1950s,1275232159 +152692,45635,BDSM,1275232160 +152692,45635,biography,1275232175 +152692,45635,Biopic,1275232175 +152692,45635,Bondage,1275232164 +152692,45635,christianity,1275232180 +152692,45635,Lili Taylor,1275232204 +152692,45635,sexual,1275232187 +152692,45635,true story,1275232193 +152692,45666,Jack Black,1310657150 +152692,45666,Mexico,1310657159 +152692,45668,Keanu Reeves,1351405719 +152692,45668,Sandra Bullock,1351405721 +152692,45668,time travel,1351405726 +152692,45720,Anne Hathaway,1281025691 +152692,45720,based on a book,1281025697 +152692,45720,Chick flick,1281025695 +152692,45720,fashion,1281025725 +152692,45720,Meryl Streep,1281025689 +152692,45720,New York,1281025691 +152692,45720,Paris,1281025708 +152692,45728,dialogue driven,1262886659 +152692,45728,Kevin Smith,1262886653 +152692,45728,quotable,1262886717 +152692,45728,rosario dawson,1262886739 +152692,45728,view askew,1262886672 +152692,45880,Kirsten Dunst,1345626588 +152692,46478,August Diehl,1269973280 +152692,46478,Berlin,1269973295 +152692,46478,Ellen Page,1269973279 +152692,46578,overrated,1262626390 +152692,46965,B-movie,1280565898 +152692,46965,campy,1280565899 +152692,46965,Cult film,1280565905 +152692,46965,quotable,1280565916 +152692,46965,Samuel L. Jackson,1280565913 +152692,46970,Sacha Baron Cohen,1346177086 +152692,46970,Will Ferrell,1346177087 +152692,47044,Based on a TV show,1273240863 +152692,47044,Colin Farrell,1273240864 +152692,47044,Jamie Foxx,1352542123 +152692,47044,Michael Mann,1273240854 +152692,47044,unrealistic,1352542140 +152692,47044,unrealistic plot,1352542142 +152692,47099,based on a true story,1269807321 +152692,47099,poverty,1269807392 +152692,47099,San Francisco,1269807324 +152692,47099,Will Smith,1269807323 +152692,47200,adrenaline,1313864546 +152692,47200,Jason Statham,1313864551 +152692,47423,Addiction,1276220623 +152692,47423,drugs,1276220627 +152692,47423,Oscar Nom 2007,1276220630 +152692,47423,Oscar Nominee,1276220642 +152692,47423,Oscar Nominee: Lead Actor,1276220636 +152692,47423,Ryan Gosling,1276220645 +152692,47465,Terry Gilliam,1256054469 +152692,47518,college,1361036943 +152692,47518,Jonah Hill,1361036943 +152692,47518,Justin Long,1361036944 +152692,47518,slackers,1361036949 +152692,47629,based on a true story,1368028102 +152692,47629,biographical,1368028110 +152692,47629,biography,1368028112 +152692,47629,biopic,1368028116 +152692,47629,England,1368028142 +152692,47629,politics,1368028139 +152692,47629,royalty,1368028140 +152692,47629,strong female lead,1368028147 +152692,47629,true story,1368028152 +152692,47725,angelic intervention,1276220739 +152692,47725,black and white,1276220762 +152692,47725,Luc Besson,1276220743 +152692,47894,1920s,1264440719 +152692,47894,Cillian Murphy,1264440709 +152692,47894,ireland,1264440708 +152692,47950,Adrien Brody,1281245475 +152692,47950,Ben Affleck,1281245476 +152692,47950,Bob Hoskins,1281245507 +152692,47950,George Reeves,1281245506 +152692,47950,Superman,1281245482 +152692,47970,Casey Affleck,1366993392 +152692,47970,Zach Braff,1366993404 +152692,48082,artsy,1281118886 +152692,48082,Charlotte Gainsbourg,1281118889 +152692,48082,Gael García Bernal,1281118912 +152692,48082,Michel Gondry,1281118896 +152692,48082,surreal,1281118903 +152692,48229,Charlotte Gainsbourg,1311256038 +152692,48326,Anthony Hopkins,1351873390 +152692,48326,corruption,1351873397 +152692,48326,Jude Law,1351873391 +152692,48326,Kate Winslet,1351873395 +152692,48326,politics,1351873403 +152692,48326,remake,1351873397 +152692,48516,Alec Baldwin,1269760756 +152692,48516,Crime,1269760702 +152692,48516,gangsters,1269760709 +152692,48516,Jack Nicholson,1269760615 +152692,48516,Leonardo DiCaprio,1269760619 +152692,48516,Mafia,1269760713 +152692,48516,Mark Wahlberg,1269760778 +152692,48516,Martin Scorsese,1269760620 +152692,48516,Matt Damon,1269760629 +152692,48516,organized crime,1269760714 +152692,48516,police corruption,1269760721 +152692,48516,remake,1269760726 +152692,48516,undercover cop,1269760722 +152692,48516,violence,1269760727 +152692,48560,based on a book,1270547952 +152692,48560,based on a true story,1270547966 +152692,48560,black comedy,1270547891 +152692,48560,dark comedy,1270547894 +152692,48560,dysfunctional family,1270547879 +152692,48560,evan rachel wood,1270547882 +152692,48560,gay,1270547884 +152692,48560,gwyneth paltrow,1270547879 +152692,48560,homosexuality,1270547881 +152692,48560,lesbian,1270547899 +152692,48560,quirky,1270547907 +152692,48598,Sigourney Weaver,1342977186 +152692,48598,Truman Capote,1342977188 +152692,48698,Catholic Church,1308507303 +152692,48698,Catholicism,1308507305 +152692,48698,child abuse,1308507265 +152692,48698,Christianity,1308507307 +152692,48698,paedophilia,1308507289 +152692,48698,rape,1308507290 +152692,48698,religion,1308507298 +152692,48738,Africa,1270548678 +152692,48738,based on a book,1270548682 +152692,48738,based on a true story,1270548743 +152692,48738,Forest Whitaker,1270548686 +152692,48738,genocide,1270548695 +152692,48738,Gillian Anderson,1270548689 +152692,48738,History,1270548700 +152692,48738,Idi Amin,1270548691 +152692,48738,James McAvoy,1270548701 +152692,48738,Oscar Nom 2007,1270548704 +152692,48738,Uganda,1270548718 +152692,48738,violent,1270548714 +152692,48817,Bobcat Goldthwait,1352085473 +152692,49280,Anthony Hopkins,1270200265 +152692,49280,Ashton Kutcher,1270200257 +152692,49280,Christian Slater,1270200261 +152692,49280,Demi Moore,1270200272 +152692,49280,Elijah Wood,1270200270 +152692,49280,Freddy Rodríguez,1270200281 +152692,49280,Heather Graham,1270200287 +152692,49280,Helen Hunt,1270200289 +152692,49280,Laurence Fishburne,1270200284 +152692,49280,Lindsay Lohan,1270200314 +152692,49280,Martin Sheen,1270200318 +152692,49280,politics,1270200304 +152692,49280,Shia LaBeouf,1270200299 +152692,49280,William H. Macy,1270200308 +152692,49286,break-up,1311109305 +152692,49286,Cameron Diaz,1311109267 +152692,49286,Jack Black,1311109277 +152692,49286,Jude Law,1311109271 +152692,49286,Kate Winslet,1311109270 +152692,49286,Romance,1311109285 +152692,49286,romantic comedy,1311109286 +152692,49312,alan rickman,1272363115 +152692,49312,autism,1272363153 +152692,49312,Carrie-Anne Moss,1272363118 +152692,49312,mental illness,1272363128 +152692,49312,Sigourney Weaver,1272363118 +152692,49666,biopic,1373470806 +152692,49666,Nicole Kidman,1373470790 +152692,49666,Photography,1373470803 +152692,49666,Robert Downey Jr.,1373470797 +152692,49688,Michael Anderson,1350405023 +152692,49688,true story,1350405016 +152692,49688,World War II,1350405019 +152692,49772,adapted from:book,1273073699 +152692,49772,based on a book,1273073696 +152692,49772,china,1273073707 +152692,49772,Edward Norton,1273073685 +152692,49772,naomi watts,1273073688 +152692,49822,Angelina Jolie,1359293764 +152692,49822,Central Intelligence Agency,1359293773 +152692,49822,CIA,1359293776 +152692,49822,Cold War,1359293780 +152692,49822,Matt Damon,1359293783 +152692,49824,Beyoncé Knowles,1293644956 +152692,49824,Eddie Murphy,1293644979 +152692,49824,Jamie Foxx,1293644915 +152692,49824,musical,1293644873 +152692,49824,Oscar Nom 2007,1293644875 +152692,49824,Potential Oscar Nom,1293644896 +152692,49957,adolescence,1265209141 +152692,49957,Gay,1265209177 +152692,49957,school drama,1265209150 +152692,50160,based on a true story,1367141081 +152692,50160,Ewan McGregor,1367141086 +152692,50160,Renee Zellweger,1367141166 +152692,50442,Anton Yelchin,1289965437 +152692,50442,Bruce Willis,1289965433 +152692,50442,Emile Hirsch,1289965441 +152692,50442,Justin Timberlake,1289965425 +152692,50442,true story,1289965426 +152692,50601,sad,1262776609 +152692,50601,Zooey Deschanel,1262776607 +152692,50802,Diane Keaton,1359217315 +152692,50802,Mandy Moore,1359217316 +152692,50802,Piper Perabo,1359217318 +152692,50858,James Gandolfini,1267033234 +152692,50858,Jared Leto,1267033241 +152692,50858,John Travolta,1267033249 +152692,50858,Salma Hayek,1267033233 +152692,50872,animation,1355588357 +152692,50872,Disney,1355588372 +152692,50872,pixar,1355588367 +152692,50872,talking animals,1355588383 +152692,51084,chick flick,1319744443 +152692,51084,Drew Barrymore,1319744440 +152692,51084,Hugh Grant,1319744436 +152692,51187,bullying,1271870663 +152692,51187,England,1271870642 +152692,51187,London,1271870642 +152692,51187,Suicide,1271870653 +152692,51187,teen pregnancy,1271870694 +152692,51187,teenagers,1271870694 +152692,51187,violence,1271870713 +152692,51662,artistic,1257865994 +152692,51662,based on a comic,1262624537 +152692,51662,Epic,1257866003 +152692,51662,Frank Miller,1262624544 +152692,51662,Gerard Butler,1262624548 +152692,51662,stylized,1262624553 +152692,51931,adam sandler,1277659517 +152692,51931,depression,1277659525 +152692,51931,Don Cheadle,1277659520 +152692,51931,Donald Sutherland,1277659529 +152692,51931,Jada Pinkett Smith,1277659567 +152692,51931,Liv Tyler,1277659533 +152692,51931,Manhattan,1277659561 +152692,51931,New York,1277659540 +152692,51931,New York City,1277659555 +152692,51931,post-traumatic stress disorder,1277659549 +152692,52604,Anthony Hopkins,1267858276 +152692,52604,courtroom drama,1267858283 +152692,52604,murder,1267858289 +152692,52604,Ryan Gosling,1267858299 +152692,52712,remake,1344189155 +152692,52722,adapted from:comic,1332339282 +152692,52722,based on a comic,1332339285 +152692,52722,comic book,1332339285 +152692,52722,Kirsten Dunst,1332339287 +152692,52722,Marvel,1332339277 +152692,52722,superhero,1332339288 +152692,52806,based on a book,1272191247 +152692,52806,fantasy,1272191253 +152692,52973,Jason Segel,1312125199 +152692,52973,Katherine Heigl,1312125188 +152692,52973,Paul Rudd,1312125194 +152692,52973,pregnancy,1312125190 +152692,52973,Seth Rogen,1312125193 +152692,53123,Ireland,1296137629 +152692,53123,London,1296137634 +152692,53123,Oscar (Best Music - Original Song),1296137637 +152692,53123,songwriting,1296137643 +152692,53161,insanity,1268571932 +152692,53161,mental hospital,1268571934 +152692,53161,mental illness,1268571929 +152692,53189,misfits,1279708594 +152692,53318,alternate reality,1274108204 +152692,53318,art school,1274108206 +152692,53318,art student as protagonist,1274108214 +152692,53318,british,1274108218 +152692,53318,cult film,1274108221 +152692,53318,imagination,1274108225 +152692,53318,insomnia,1274108227 +152692,53318,male gaze,1274108228 +152692,53318,slackers,1274108234 +152692,53318,stopping time,1274108240 +152692,53318,surreal,1274108244 +152692,53318,surrealism,1274108241 +152692,53466,adapted from:book series,1359217092 +152692,53468,1950s,1380392123 +152692,53468,Carrie-Anne Moss,1380392127 +152692,53468,satire,1380392142 +152692,53468,social commentary,1380392144 +152692,53468,zombies,1380392138 +152692,53519,classic car,1262624755 +152692,53519,dialogue,1262624719 +152692,53519,Kurt Russell,1266673664 +152692,53519,Quentin Tarantino,1262624735 +152692,53519,Rosario Dawson,1266673661 +152692,53519,Zoe Bell,1266673655 +152692,53550,Christian Bale,1274552512 +152692,53550,inaccurate,1274552517 +152692,53550,prison escape,1274552539 +152692,53550,true story,1274552528 +152692,53550,Vietnam War,1274552527 +152692,53921,Angelina Jolie,1353483995 +152692,53921,Michael Winterbottom,1353484000 +152692,53972,action,1324739823 +152692,53972,bruce willis,1324739817 +152692,53972,hackers,1324739826 +152692,53972,Justin Long,1324739828 +152692,53972,Timothy Olyphant,1324739831 +152692,53972,unrealistic,1324739853 +152692,54286,action,1356983000 +152692,54286,assassin,1356983009 +152692,54286,based on a book,1356983005 +152692,54286,Matt Damon,1356982996 +152692,54286,spy thriller,1356983028 +152692,54290,bad message,1355646736 +152692,54290,fashion,1355646740 +152692,54290,friendship,1355646711 +152692,54290,high school,1355646714 +152692,54290,merchandise driven,1355646720 +152692,54290,stereotypes,1355646723 +152692,54290,talent contest,1355646730 +152692,54771,Daniel Craig,1265309804 +152692,54771,Nicole Kidman,1265309805 +152692,54771,remake,1265309816 +152692,55031,Kevin Smith,1269590838 +152692,55118,Naomi Watts,1325340872 +152692,55118,rape,1325340881 +152692,55118,Russian mafia,1325340876 +152692,55118,Viggo Mortensen,1325340870 +152692,55190,Brittany Murphy,1367083162 +152692,55190,gay,1367083164 +152692,55205,Steve Buscemi,1256054504 +152692,55247,adapted from:book,1276452718 +152692,55247,Alaska,1276452719 +152692,55247,based on a book,1276452726 +152692,55247,based on a true story,1276452727 +152692,55247,road trip,1276452735 +152692,55247,Sean Penn,1276452736 +152692,55247,self discovery,1276452739 +152692,55247,true story,1276452741 +152692,55261,Ben Stiller,1342895479 +152692,55261,Malin Akerman,1342895474 +152692,55280,boring,1288519335 +152692,55280,delusion,1288519342 +152692,55280,delusional,1288519340 +152692,55280,Emily Mortimer,1288519305 +152692,55280,mental illness,1288519311 +152692,55280,Ryan Gosling,1288519315 +152692,55286,addiction,1282825957 +152692,55286,Benicio Del Toro,1282825943 +152692,55286,David Duchovny,1282825944 +152692,55286,drugs,1282825957 +152692,55286,Halle Berry,1282825945 +152692,55286,heroin,1282825959 +152692,55286,non-linear,1282825949 +152692,55290,Casey Affleck,1259520509 +152692,55290,Ed Harris,1259520504 +152692,55290,kidnapping,1259520556 +152692,55290,Morgan Freeman,1259520529 +152692,55290,pedophile,1259520529 +152692,55290,police investigation,1259520555 +152692,55290,twist,1259520537 +152692,55765,Denzel Washington,1260700383 +152692,55765,Ridley Scott,1260700392 +152692,55765,Russell Crowe,1260700389 +152692,55814,based on a book,1279714642 +152692,55814,based on a true story,1279714643 +152692,55814,French,1279714649 +152692,55814,true story,1279714656 +152692,55826,Alan Cumming,1265309945 +152692,55826,Barry Pepper,1265309915 +152692,55826,Claire Forlani,1265309957 +152692,55826,Willem Dafoe,1265309917 +152692,56012,Jason Mewes,1270365909 +152692,56012,Kevin Smith,1270365907 +152692,56169,Hayden Christensen,1265222698 +152692,56169,Jessica Alba,1265222699 +152692,56169,twist ending,1265222703 +152692,56587,friendship,1334419533 +152692,56587,Jack Nicholson,1334419525 +152692,56587,Morgan Freeman,1334419526 +152692,56671,Jena Malone,1280600610 +152692,56671,road trip,1280600614 +152692,56671,Zooey Deschanel,1280600606 +152692,56715,afterlife,1289669214 +152692,56715,black comedy,1289669214 +152692,56715,dark comedy,1289669213 +152692,56715,quirky,1289669067 +152692,56715,Shannyn Sossamon,1289669067 +152692,56715,suicide,1289669062 +152692,56715,Tom Waits,1289669059 +152692,56782,Daniel Day-Lewis,1262626703 +152692,56782,overrated,1262626723 +152692,56908,Billy Crudup,1320073785 +152692,56908,Mandy Moore,1320073785 +152692,56949,chick flick,1278344439 +152692,56949,Ed Burns,1278344459 +152692,56949,James Marsden,1278344462 +152692,56949,Judy Greer,1278344466 +152692,56949,Katherine Heigl,1278344442 +152692,56949,marriage,1278344445 +152692,56949,romantic comedy,1278344451 +152692,57274,Foreign,1269437233 +152692,57274,Handycam,1269437230 +152692,57274,horror,1269437249 +152692,57274,panic,1269437246 +152692,57274,quarantine,1269437243 +152692,57274,virus,1269437239 +152692,57274,zombies,1269437236 +152692,57504,friendship,1357585170 +152692,57504,High School,1357585193 +152692,57504,japan,1357585173 +152692,57504,japanese,1357585170 +152692,57504,time travel,1357585181 +152692,57509,Eliza Dushku,1367950824 +152692,57509,Macaulay Culkin,1367950841 +152692,57669,black comedy,1336322301 +152692,57669,dark comedy,1336322301 +152692,58078,Andy Garcia,1277742147 +152692,58078,Brendan Fraser,1277742138 +152692,58078,Emile Hirsch,1277742156 +152692,58078,Forest Whitaker,1277742142 +152692,58078,Kevin Bacon,1277742161 +152692,58078,Sarah Michelle Gellar,1277742135 +152692,58154,based on a book,1370674580 +152692,58154,england,1370674584 +152692,58154,Eric Bana,1370674586 +152692,58154,historical,1370674590 +152692,58154,Natalie Portman,1370674578 +152692,58154,royalty,1370674593 +152692,58154,Scarlett Johansson,1370674574 +152692,58246,John Cusack,1305642962 +152692,58301,Naomi Watts,1271041452 +152692,58301,Remake,1271041438 +152692,58301,Tim Roth,1256053759 +152692,58347,Christina Ricci,1344245903 +152692,58347,fairy tale,1344245910 +152692,58347,James McAvoy,1344245905 +152692,58347,modern fantasy,1344245913 +152692,58347,Nick Frost,1344245917 +152692,58492,based on a book,1282237404 +152692,58492,Kate Beckinsale,1282237407 +152692,58492,Sam Rockwell,1282237412 +152692,58559,based on a comic,1262624624 +152692,58559,Batman,1258793282 +152692,58559,Christian Bale,1258793336 +152692,58559,Gary Oldman,1258793331 +152692,58559,Heath Ledger,1258793319 +152692,58559,Michael Caine,1258793341 +152692,58803,based on a book,1269960826 +152692,58803,based on a true story,1269960804 +152692,58803,con artists,1269960835 +152692,58803,gambling,1269960805 +152692,58803,Kevin Spacey,1269960804 +152692,58803,Las Vegas,1269960805 +152692,58803,mathematics,1269960808 +152692,58803,predictable,1269960820 +152692,58806,Dennis Quaid,1289829669 +152692,58806,Sarah Jessica Parker,1289829669 +152692,58998,break-up,1311095601 +152692,58998,Jason Segel,1311095584 +152692,58998,Paul Rudd,1311095573 +152692,59018,New York City,1289719220 +152692,59018,Richard Jenkins,1289719197 +152692,59118,British,1289819972 +152692,59118,no story,1289819981 +152692,59220,culture shock,1333031736 +152692,59220,india,1333031738 +152692,59220,stereotypes,1333031750 +152692,59339,Diego Luna,1313414764 +152692,59339,suicide,1313414751 +152692,59369,action,1365236061 +152692,59369,kidnapping,1365236055 +152692,59369,Liam Neeson,1365236021 +152692,59369,revenge,1365236034 +152692,59387,beautiful,1259084631 +152692,59387,fantasy world,1259084646 +152692,59387,imagination,1259084649 +152692,59387,story-in-a-story,1259084653 +152692,59387,storytelling,1259084632 +152692,59387,stunts,1259084660 +152692,59387,suicide attempt,1259084664 +152692,59387,visually stunning,1259084668 +152692,59549,gay,1259435655 +152692,59725,Based on a TV show,1324655586 +152692,59725,chick flick,1324655588 +152692,59725,fashion,1324655602 +152692,59725,New York City,1324655585 +152692,59725,predictable,1324655611 +152692,59725,romance,1324655614 +152692,59725,Sarah Jessica Parker,1324655581 +152692,59784,Angelina Jolie,1389538723 +152692,59784,animation,1389538725 +152692,59784,Dustin Hoffman,1389538728 +152692,59784,Jack Black,1389538734 +152692,59784,pixar,1389538721 +152692,59784,Seth Rogen,1389538736 +152692,59985,Emily Mortimer,1293508046 +152692,59985,Ryan Reynolds,1293508046 +152692,59985,Stuart Townsend,1293508047 +152692,59995,Andrew Garfield,1278612219 +152692,59995,British,1278612238 +152692,59995,suicide,1278612232 +152692,60037,bad ending,1319927441 +152692,60037,Bad Science,1319927438 +152692,60037,John Leguizamo,1319927470 +152692,60037,M. Night Shyamalan,1319927439 +152692,60037,Mark Wahlberg,1319927479 +152692,60037,weak dialogue,1319927455 +152692,60037,weak story,1319927447 +152692,60037,weak writing,1319927449 +152692,60037,Zooey Deschanel,1319927457 +152692,60040,comic book,1256053831 +152692,60040,Ed Norton,1256053832 +152692,60040,Edward Norton,1256053842 +152692,60040,Tim Roth,1256053843 +152692,60069,animated,1267202342 +152692,60069,dystopia,1267202322 +152692,60069,oscar,1267202351 +152692,60069,pixar,1267202358 +152692,60069,Post apocalyptic,1267202326 +152692,60069,post-apocalyptic,1267202329 +152692,60069,robots,1267202331 +152692,60069,Sci-Fi,1267202330 +152692,60069,social commentary,1267202333 +152692,60069,space,1267202337 +152692,60072,Angelina Jolie,1256054888 +152692,60072,James McAvoy,1256054893 +152692,60072,plot twist,1256054895 +152692,60074,anti-hero,1275320221 +152692,60074,bad script,1275320219 +152692,60074,Charlize Theron,1275320241 +152692,60074,Jason Bateman,1275320237 +152692,60074,superhero,1275320226 +152692,60074,Will Smith,1275320225 +152692,60293,coming of age,1325701141 +152692,60293,drugs,1325701144 +152692,60293,hip-hop,1325701148 +152692,60293,psychiatry,1325701159 +152692,60293,teen,1325701162 +152692,60293,weed,1325701167 +152692,60397,based on a play,1312886075 +152692,60397,Colin Firth,1312886086 +152692,60397,Meryl Streep,1312886086 +152692,60397,Musical,1312886105 +152692,60397,Pierce Brosnan,1312886095 +152692,60482,Aaron Eckhart,1277132612 +152692,60482,Alan Ball,1277132622 +152692,60482,based on a book,1277132617 +152692,60482,Toni Collette,1277132615 +152692,60737,Cillian Murphy,1272129057 +152692,60737,Lucy Liu,1272129059 +152692,60818,based on a book,1312684550 +152692,60818,fantasy,1312684566 +152692,60818,made for TV,1312684556 +152692,60818,Terry Pratchett,1312684548 +152692,60894,Cillian Murphy,1264326108 +152692,60894,Keira Knightley,1264326110 +152692,60894,love triangles,1264326125 +152692,60894,Sienna Miller,1264326111 +152692,61071,Alexis Bledel,1384094214 +152692,61071,friendship,1384094215 +152692,61236,animated,1282461027 +152692,61236,animation,1282461030 +152692,61236,Middle East,1282461041 +152692,61240,adapted from:book,1302534188 +152692,61240,based on a book,1302534191 +152692,61240,coming of age,1302534179 +152692,61240,swedish,1302534179 +152692,61240,vampire,1302534178 +152692,61240,vampires,1302534180 +152692,61250,Emma Stone,1334993215 +152692,61250,friendship,1334993220 +152692,61250,Kat Dennings,1334993221 +152692,61729,ghosts,1326026010 +152692,61729,Greg Kinnear,1326025989 +152692,61729,Ricky Gervais,1326025986 +152692,61950,Mila Kunis,1277048682 +152692,61950,Peter Stormare,1277048683 +152692,62113,Jeff Bridges,1262543521 +152692,62113,Megan Fox,1262543513 +152692,62113,Simon Pegg,1262543509 +152692,62155,cute,1266691407 +152692,62155,Kat Dennings,1266691396 +152692,62155,Manhattan,1266691414 +152692,62155,Michael Cera,1266691391 +152692,62155,New York City,1266691400 +152692,62344,Anne Hathaway,1314384883 +152692,62344,dysfunctional family,1314384888 +152692,62437,Elizabeth Banks,1293277781 +152692,62437,Josh Brolin,1293277790 +152692,62437,Oliver Stone,1293277794 +152692,62437,politics,1293277796 +152692,62437,Richard Dreyfuss,1293277798 +152692,62577,Greg Kinnear,1293172470 +152692,62577,true story,1293172471 +152692,62718,Aaron Johnson,1292770591 +152692,63033,based on a book,1264266062 +152692,63033,epidemic,1264266058 +152692,63033,Gael García Bernal,1264266057 +152692,63033,Julianne Moore,1264266053 +152692,63033,Mark Ruffalo,1264266049 +152692,63072,Charlize Theron,1263666020 +152692,63072,dystopia,1263666043 +152692,63072,Guy Pearce,1263666018 +152692,63072,post-apocalyptic,1263666033 +152692,63072,Viggo Mortensen,1263666023 +152692,63119,Eugene Hutz,1289668639 +152692,63119,Madonna,1289668645 +152692,63131,Elizabeth Banks,1405024076 +152692,63131,Paul Rudd,1405024078 +152692,63131,Seann William Scott,1405024080 +152692,63859,animation,1354983478 +152692,63859,talking animals,1354983500 +152692,63992,audience intelligence underestimated,1269938165 +152692,63992,fantasy,1256054347 +152692,63992,high school,1256054361 +152692,63992,Kristen Stewart,1256054351 +152692,63992,so bad it's good,1256054325 +152692,63992,unintentional comedy,1269938187 +152692,63992,vampires,1269938186 +152692,64197,Ireland,1280061314 +152692,64197,Michael Fassbender,1280061308 +152692,64197,true story,1280061318 +152692,64501,Benicio Del Toro,1266850080 +152692,64501,Franka Potente,1266850082 +152692,64575,Amy Adams,1366912754 +152692,64575,based on a play,1366912759 +152692,64575,Catholicism,1366912750 +152692,64575,Christianity,1366912765 +152692,64575,dialogue driven,1366912769 +152692,64575,great acting,1366912776 +152692,64575,Meryl Streep,1366912748 +152692,64575,Philip Seymour Hoffman,1366912742 +152692,64575,religion,1366912786 +152692,64575,thought-provoking,1366912813 +152692,64614,classic car,1259084430 +152692,64614,Clint Eastwood,1259084424 +152692,64614,culture clash,1259084431 +152692,64614,mentor,1259084484 +152692,64614,racism,1259084442 +152692,64614,revenge,1259084442 +152692,64839,sport:professional wrestling,1269927352 +152692,64839,sports,1269927350 +152692,64969,Bradley Cooper,1313177487 +152692,64969,feel-good,1313177520 +152692,64969,Jim carrey,1313177497 +152692,64969,Motivation,1313177511 +152692,64969,optimism,1313177508 +152692,64969,positive thinking,1313177509 +152692,64969,Zooey Deschanel,1313177497 +152692,64983,Adolf Hitler,1272299983 +152692,64983,assassin,1272299989 +152692,64983,based on a true story,1272299987 +152692,64983,Bill Nighy,1272299991 +152692,64983,Eddie Izzard,1272300014 +152692,64983,Germany,1272299993 +152692,64983,history,1272299994 +152692,64983,Hitler,1272299999 +152692,64983,Nazis,1272300000 +152692,64983,Tom Cruise,1272300004 +152692,64983,World War II,1272300002 +152692,64993,anime,1357922426 +152692,64993,Japan,1357922430 +152692,64993,japanese,1357922432 +152692,65126,adapted from:book,1317303692 +152692,65126,based on a book,1317303691 +152692,65126,based on book,1317303684 +152692,65126,Chuck Palahniuk,1317303675 +152692,65126,Sam Rockwell,1317303676 +152692,65126,Sex Addict,1317303677 +152692,65130,Kate Winslet,1273678814 +152692,65130,Leonardo DiCaprio,1273678812 +152692,65230,dog,1350465182 +152692,65230,dogs,1350465184 +152692,65230,Family Drama,1350465189 +152692,65230,Jennifer Aniston,1350465194 +152692,65230,journalism,1350465197 +152692,65230,marriage,1350465199 +152692,65230,Owen Wilson,1350465196 +152692,65261,Animation,1357575403 +152692,65261,anime,1357575404 +152692,65261,Hayao Miyazaki,1357575400 +152692,65261,Japan,1357575414 +152692,65261,Studio Ghibli,1357575401 +152692,65585,Anne Hathaway,1379753621 +152692,65585,kate hudson,1379753631 +152692,65585,Wedding,1379753627 +152692,66097,based on a book,1290927539 +152692,66097,claymation,1290927551 +152692,66097,Neil Gaiman,1290927559 +152692,66097,stop motion,1290927572 +152692,66203,adapted from:book,1278176158 +152692,66203,Ben Affleck,1278176155 +152692,66203,chick flick,1278176161 +152692,66203,Drew Barrymore,1278176128 +152692,66203,Jennifer Aniston,1278176151 +152692,66203,Jennifer Connelly,1278176143 +152692,66203,Justin Long,1278176148 +152692,66203,romantic comedy,1278176135 +152692,66203,Scarlett Johansson,1278176132 +152692,66934,anti-hero,1259513668 +152692,66934,musical,1259513694 +152692,66934,Neil Patrick Harris,1259513657 +152692,66934,not a movie,1259513672 +152692,66934,short,1286210250 +152692,66934,too short,1259513676 +152692,67087,Andy Samberg,1279217735 +152692,67087,bromance,1279217703 +152692,67087,bromantic,1279217710 +152692,67087,brother-brother relationship,1279217712 +152692,67087,brothers,1279217715 +152692,67087,friendship,1279217723 +152692,67087,gay friendly,1279217725 +152692,67087,J.K. Simmons,1279217728 +152692,67087,Jon Favreau,1279217732 +152692,67168,high school,1380377725 +152692,67168,tongue-in-cheek,1380377733 +152692,67168,zombies,1380377731 +152692,67197,aliens,1325779204 +152692,67197,apocalypse,1325779210 +152692,67197,catastrophe,1325779218 +152692,67197,end of the world,1325779199 +152692,67197,Nicolas Cage,1325779200 +152692,67197,sci-fi,1325779223 +152692,67197,unintentional comedy,1325779226 +152692,67255,based on a book,1293555082 +152692,67255,cinematography,1293555089 +152692,67255,hackers,1293555094 +152692,67255,rape,1293555098 +152692,67255,swedish,1293555112 +152692,67618,bad casting,1314108563 +152692,67734,Jesse Eisenberg,1287413905 +152692,67734,Kristen Stewart,1287413909 +152692,67734,Ryan Reynolds,1287413912 +152692,67792,Toni Collette,1272821410 +152692,68137,Mika Nakashima,1277997943 +152692,68157,Brad Pitt,1258793377 +152692,68157,Eli Roth,1258793389 +152692,68157,Nazis,1258793393 +152692,68157,Quentin Tarantino,1258793379 +152692,68157,World War II,1258793400 +152692,68194,based on a book,1269452015 +152692,68194,based on a true story,1270548325 +152692,68194,british,1269452041 +152692,68194,Jim Broadbent,1269452023 +152692,68194,Leeds United,1269452032 +152692,68194,soccer,1269452006 +152692,68194,sports,1269452004 +152692,68237,artificial intelligence,1372097299 +152692,68237,Kevin Spacey,1372097312 +152692,68237,plot twist,1372097322 +152692,68237,psychology,1372097325 +152692,68237,Sam Rockwell,1372097339 +152692,68237,Sci-fi,1372097311 +152692,68237,space,1372097328 +152692,68659,geek,1264266121 +152692,68659,Jason Mewes,1279726486 +152692,68659,Kevin Smith,1279726490 +152692,68659,Kristen Bell,1264266115 +152692,68659,pop culture references,1264266142 +152692,68659,road trip,1264266119 +152692,68659,Seth Rogen,1264266115 +152692,68659,star wars,1264266117 +152692,68659,William Shatner,1279726498 +152692,68791,artificial intelligence,1325340767 +152692,68791,Christian Bale,1325340769 +152692,68791,Helena Bonham Carter,1325340783 +152692,68791,post-apocalyptic,1325340776 +152692,68791,Sam Worthington,1325340779 +152692,68791,sci-fi,1325340776 +152692,68793,Amy Adams,1325001999 +152692,68793,Ben Stiller,1325002004 +152692,68793,Hank Azaria,1325002011 +152692,68793,Jay Baruchel,1325002013 +152692,68793,Owen Wilson,1325002034 +152692,68793,Ricky Gervais,1325002016 +152692,68793,Robin Williams,1325002020 +152692,68793,sequel,1325002030 +152692,68793,Steve Coogan,1325002025 +152692,68848,Adrien Brody,1297423326 +152692,68848,con artists,1297423331 +152692,68848,predictable,1297423339 +152692,68941,rape,1354866753 +152692,68941,remake,1354866756 +152692,68941,silly ending,1354866880 +152692,68952,Alison Lohman,1295946176 +152692,68952,cgi,1295946305 +152692,68952,Justin Long,1295946305 +152692,68952,old school horror,1295946395 +152692,68952,poor acting,1295946392 +152692,68952,poor dialogue,1295946344 +152692,68952,Sam Raimi,1295946389 +152692,68952,tongue-in-cheek,1295946385 +152692,68954,adventure,1266935015 +152692,68954,computer animation,1266935010 +152692,68954,friendship,1266935003 +152692,68954,Pixar,1266934988 +152692,68954,predictable,1266934996 +152692,68954,talking animals,1266934991 +152692,68954,tear jerker,1289135941 +152692,69069,cheerleading,1351948681 +152692,69122,Heather Graham,1279994370 +152692,69122,Las Vegas,1279994361 +152692,69275,gore,1350468743 +152692,69275,Nazis,1350468727 +152692,69275,Norwegian,1350468748 +152692,69275,predictable,1350468736 +152692,69275,unfunny,1350468737 +152692,69275,Zombies,1350468730 +152692,69432,Malcolm Ingram,1270377606 +152692,69436,comedy,1355158425 +152692,69436,Jack Black,1355158410 +152692,69436,Michael Cera,1355158410 +152692,69436,Paul Rudd,1355158412 +152692,69481,Guy Pearce,1263737972 +152692,69481,Iraq,1263737983 +152692,69481,Iraq War,1263737984 +152692,69481,Jeremy Renner,1263738095 +152692,69481,Middle East,1263737986 +152692,69481,Ralph Fiennes,1263738012 +152692,69481,War,1263737994 +152692,69640,1930s,1352542194 +152692,69640,bank robbery,1352542192 +152692,69640,christian bale,1352542197 +152692,69640,gangsters,1352542226 +152692,69640,Great Depression,1352542205 +152692,69640,Johnny Depp,1352542196 +152692,69640,Marion Cotillard,1352542213 +152692,69640,Michael Mann,1352542207 +152692,69640,monotonous,1352542208 +152692,69640,slow pace,1352542218 +152692,69640,true story,1352542211 +152692,69757,chick flick,1287310234 +152692,69757,cute,1287310237 +152692,69757,Joseph Gordon-Levitt,1287310255 +152692,69757,Zooey Deschanel,1287310226 +152692,69818,Eva Green,1367001021 +152692,69818,mental illness,1367001024 +152692,69818,multiple storylines,1367001031 +152692,69818,suicide attempt,1367001035 +152692,69844,Alan Rickman,1269196766 +152692,69844,based on a book,1269196740 +152692,69844,fantasy,1269196744 +152692,69844,Helena Bonham Carter,1269196716 +152692,69844,magic,1269196717 +152692,69951,terry gilliam,1262448507 +152692,69951,tom waits,1262448495 +152692,70183,Gerard Butler,1352624978 +152692,70183,insulting to women,1352624984 +152692,70183,Katherine Heigl,1352624979 +152692,70336,80s nostalgia,1280557239 +152692,70336,audience intelligence underestimated,1280557203 +152692,70336,Channing Tatum,1280557339 +152692,70336,childish,1280557210 +152692,70336,infantile,1280557209 +152692,70336,Joseph Gordon-Levitt,1280557270 +152692,70336,Sienna Miller,1280557271 +152692,70562,Brittany Murphy,1355047125 +152692,70562,food,1355047122 +152692,70562,Japan,1355047115 +152692,70562,Tokyo,1355047119 +152692,70769,time loop,1367169087 +152692,70769,Time Travel,1367169094 +152692,70984,1960s,1265998565 +152692,70984,demetri martin,1265998574 +152692,71057,dystopia,1269084925 +152692,71057,Elijah Wood,1269084919 +152692,71057,Jennifer Connelly,1269084927 +152692,71057,man versus machine,1269084932 +152692,71057,post-apocalyptic,1269084910 +152692,71057,predictable,1269084949 +152692,71057,sci-fi,1269084911 +152692,71152,based on a book,1282585740 +152692,71152,Tim Roth,1282585736 +152692,71156,based on a book,1271935428 +152692,71156,drugs,1271935430 +152692,71156,Ewan McGregor,1271935424 +152692,71156,George Clooney,1271935423 +152692,71156,Jeff Bridges,1271935423 +152692,71156,Kevin Spacey,1271935424 +152692,71156,military,1271935432 +152692,71248,adultery,1302603461 +152692,71248,Ben Affleck,1302603446 +152692,71248,black comedy,1302603450 +152692,71248,con artists,1302603454 +152692,71248,drugs,1302603493 +152692,71248,infidelity,1302603460 +152692,71248,Jason Bateman,1302603444 +152692,71248,Mila Kunis,1302603463 +152692,71254,Gerard Butler,1334500004 +152692,71254,sci-fi,1334500014 +152692,71254,virtual reality,1334500005 +152692,71264,father-son relationship,1378666914 +152692,71264,pixar,1378666896 +152692,71322,religion,1280148695 +152692,71379,low budget,1269108646 +152692,71379,psychological thriller,1269108654 +152692,71429,idea is better than the actual film,1300453092 +152692,71429,Robin Williams,1300453083 +152692,71429,suicide,1300453083 +152692,71462,documentary,1366984854 +152692,71466,Andy Garcia,1365318827 +152692,71466,dysfunctional family,1365318824 +152692,71466,Ezra Miller,1365318816 +152692,71484,dystopia,1292904850 +152692,71484,Juliette Lewis,1292904844 +152692,71518,Drew Barrymore,1266673429 +152692,71518,Ellen Page,1266673353 +152692,71518,Juliette Lewis,1266673349 +152692,71518,Kristen Wiig,1266673351 +152692,71520,bad acting,1353178832 +152692,71520,Jennifer Garner,1353178844 +152692,71520,Jonah Hill,1353178846 +152692,71520,not funny,1353178851 +152692,71520,religion,1353178855 +152692,71520,Ricky Gervais,1353178862 +152692,71520,Tina Fey,1353178863 +152692,71579,1960s,1267947962 +152692,71579,adultery,1267947966 +152692,71579,coming of age,1267947969 +152692,71579,Emma Thompson,1267947948 +152692,71579,England,1267947946 +152692,71579,London,1267947947 +152692,71579,Peter Sarsgaard,1267947952 +152692,71700,high school,1380462299 +152692,71700,Noah Segan,1380462351 +152692,71700,rape,1380462294 +152692,71700,zombies,1380462297 +152692,71745,James Gandolfini,1267285502 +152692,71745,Lauren Ambrose,1267285528 +152692,71745,Mark Ruffalo,1267285504 +152692,71745,Max Records,1267285505 +152692,71745,Soundtrack,1267285511 +152692,71745,stylized,1267285513 +152692,71745,touching,1267285514 +152692,71823,Anton Yelchin,1310407992 +152692,71823,Christina Ricci,1310408030 +152692,71823,ensemble cast,1310408047 +152692,71823,Hayden Christensen,1310407955 +152692,71823,Natalie Portman,1310407973 +152692,71823,Orlando Bloom,1310407958 +152692,71823,Romance,1310408080 +152692,71823,Shia LaBeouf,1310408013 +152692,71838,Gerard Butler,1266944059 +152692,71838,Jamie Foxx,1266944071 +152692,71838,revenge,1266944069 +152692,71899,animation,1282379198 +152692,71899,australia,1282379201 +152692,71899,claymation,1282379204 +152692,71899,friendship,1282379229 +152692,71899,mental illness,1282379212 +152692,71899,Philip Seymour Hoffman,1282379231 +152692,71899,Toni Collette,1282379235 +152692,71991,boarding school,1365688192 +152692,71991,Ezra Miller,1365688202 +152692,71991,gloomy,1365688193 +152692,72113,coming of age,1319480078 +152692,72113,Michael Caine,1319480074 +152692,72165,John C Reilly,1347806285 +152692,72165,Salma Hayek,1347806291 +152692,72165,vampires,1347806288 +152692,72167,irish,1268845284 +152692,72167,Norman Reedus,1268845275 +152692,72167,Peter Fonda,1268845264 +152692,72167,Revenge,1268845315 +152692,72167,Sean Patrick Flanery,1268845271 +152692,72167,sequel,1268845288 +152692,72167,vigilante,1268845282 +152692,72226,based on a book,1279502340 +152692,72226,Bill Murray,1279502325 +152692,72226,George Clooney,1279502323 +152692,72226,Jason Schwartzman,1279502334 +152692,72226,Meryl Streep,1279502338 +152692,72226,Owen Wilson,1279502330 +152692,72226,stop motion,1279502326 +152692,72226,Willem Dafoe,1279502320 +152692,72228,Paul Bettany,1332568831 +152692,72228,true story,1332568831 +152692,72294,based on a book,1290569235 +152692,72294,Christmas,1290569267 +152692,72294,Gary Oldman,1290569238 +152692,72294,Jim Carrey,1290569250 +152692,72407,bad acting,1269938049 +152692,72407,Kristen Stewart,1269938044 +152692,72407,Peter Facinelli,1269938066 +152692,72407,Robert Pattinson,1269938067 +152692,72407,sexism and stupidity,1269938073 +152692,72407,Taylor Lautner,1269938075 +152692,72407,unintentional comedy,1269938080 +152692,72407,vampires,1269938090 +152692,72407,vampires do not sparkle,1269938092 +152692,72479,Ben Foster,1276418222 +152692,72479,Jena Malone,1276418223 +152692,72479,military,1276418230 +152692,72479,Steve Buscemi,1276418222 +152692,72479,Woody Harrelson,1276418218 +152692,72605,Jake Gyllenhaal,1274877525 +152692,72605,Natalie Portman,1274877524 +152692,72605,Tobey Maguire,1274877526 +152692,72641,American Football,1325177366 +152692,72641,based on a true story,1325177369 +152692,72641,family,1325177369 +152692,72641,feel good,1325177376 +152692,72641,inspirational,1325177383 +152692,72641,kindness of strangers,1325177386 +152692,72641,racism,1325177392 +152692,72641,Sandra Bullock,1325177361 +152692,72641,sports,1325177397 +152692,72641,true story,1325177363 +152692,72720,adapted from:book,1276533646 +152692,72720,based on a book,1276533646 +152692,72720,beautiful cinematography,1276533646 +152692,72720,Colin Firth,1276533647 +152692,72720,Gay Lead Character,1276533649 +152692,72720,Julianne Moore,1276533654 +152692,72720,Nicholas Hoult,1276533657 +152692,72720,sad,1276533664 +152692,72720,suicide,1276533660 +152692,72731,afterlife,1351605135 +152692,72731,bad cgi,1351605174 +152692,72731,based on a book,1351605134 +152692,72731,Mark Wahlberg,1351605122 +152692,72731,Peter Jackson,1351605140 +152692,72731,Rachel Weisz,1351605123 +152692,72731,serial killer,1351605146 +152692,72731,Stanley Tucci,1351605335 +152692,72731,Susan Sarandon,1351605150 +152692,72737,Disney,1279566686 +152692,72737,John Goodman,1279566678 +152692,72737,New Orleans,1279566675 +152692,72737,Voodoo,1279566675 +152692,72919,Hugh Grant,1379159066 +152692,72919,Sarah Jessica Parker,1379159068 +152692,72919,small town,1379159071 +152692,72998,aliens,1274801758 +152692,72998,cliched plot,1274801761 +152692,72998,futuristic,1274801760 +152692,72998,military,1274801764 +152692,72998,sci-fi,1274801768 +152692,72998,Sigourney Weaver,1274801771 +152692,72998,special effects,1274801785 +152692,72998,style over substance,1274801780 +152692,72998,war,1274801776 +152692,73015,Alec Baldwin,1351951080 +152692,73015,Meryl Streep,1351951062 +152692,73015,polyamory,1351951072 +152692,73015,Steve Martin,1351951077 +152692,73023,country music,1276926961 +152692,73023,Jeff Bridges,1276926943 +152692,73023,Maggie Gyllenhaal,1276926941 +152692,73101,britain,1311182178 +152692,73101,soccer,1311182200 +152692,73101,sports,1311182169 +152692,73211,disease,1267276701 +152692,73211,zombies,1267276696 +152692,73266,based on a book,1280005294 +152692,73266,Justin Long,1280005300 +152692,73266,Michael Cera,1280005297 +152692,73266,Ray Liotta,1280005306 +152692,73266,Steve Buscemi,1280005304 +152692,73268,dystopia,1280855427 +152692,73268,Ethan Hawke,1280855417 +152692,73268,Sam Neill,1280855419 +152692,73268,vampires,1280855420 +152692,73268,Willem Dafoe,1280855423 +152692,73290,based on a true story,1364565797 +152692,73290,remake,1364565820 +152692,73290,Richard Gere,1364565796 +152692,73860,dysfunctional family,1312396716 +152692,73929,angels,1280517496 +152692,73929,better than expected,1280517533 +152692,73929,Biblical,1280517491 +152692,73929,Christianity,1280517496 +152692,73929,Dennis Quaid,1280517496 +152692,73929,horror,1280517514 +152692,73929,Paul Bettany,1280517499 +152692,73929,religion,1280517500 +152692,73929,so bad it's good,1280546124 +152692,73929,underdeveloped,1280517506 +152692,73929,unintentionally funny,1280546122 +152692,74275,based on a true story,1293196968 +152692,74275,Ewan McGregor,1293196973 +152692,74275,gay,1293196984 +152692,74275,Jim Carrey,1293196971 +152692,74275,prison,1293196980 +152692,74275,queer,1293196976 +152692,74327,coming of age,1326550155 +152692,74327,family,1326550160 +152692,74327,self discovery,1326550156 +152692,74416,Michael Fassbender,1273420076 +152692,74450,Anne Hathaway,1313809382 +152692,74450,Ashton Kutcher,1313809381 +152692,74450,Bradley Cooper,1313809388 +152692,74450,Jamie Foxx,1313809398 +152692,74450,Jennifer Garner,1313809389 +152692,74450,Jessica Alba,1313809418 +152692,74450,Jessica Biel,1313809392 +152692,74450,Julia Roberts,1313809395 +152692,74450,multiple storylines,1313809459 +152692,74452,Anthony Hopkins,1356508513 +152692,74452,bad cgi,1356508555 +152692,74452,Benicio Del Toro,1356508507 +152692,74452,Emily Blunt,1356508518 +152692,74452,Hugo Weaving,1356508526 +152692,74452,predictable,1356508516 +152692,74504,Finnish,1277445092 +152692,74532,Adam Brody,1275143891 +152692,74532,Bruce Willis,1275143874 +152692,74532,Jason Lee,1275143894 +152692,74532,Kevin Pollak,1275143902 +152692,74532,Kevin Smith,1275143883 +152692,74532,Seann William Scott,1275143876 +152692,74532,Tracy Morgan,1275143876 +152692,74685,Joe Anderson,1278425511 +152692,74685,remake,1278425204 +152692,74685,Timothy Olyphant,1278425199 +152692,74688,Amanda Seyfried,1378831435 +152692,74688,based on a book,1378831440 +152692,74688,nicholas sparks,1378831437 +152692,74688,no complexity,1378831445 +152692,74750,demon possession,1350383669 +152692,74750,found footage,1350383669 +152692,74750,mockumentary,1350383679 +152692,74750,spanish,1350383689 +152692,74750,zombies,1350383692 +152692,74789,Alan Rickman,1287935037 +152692,74789,Anne Hathaway,1287935031 +152692,74789,Crispin Glover,1287935041 +152692,74789,Helena Bonham Carter,1287935044 +152692,74789,Johnny Depp,1287935050 +152692,74789,Stephen Fry,1287935051 +152692,74789,Tim Burton,1287935051 +152692,74916,Ben Stiller,1314123473 +152692,74916,rhys ifans,1314123466 +152692,74948,drugs,1345286897 +152692,74948,Emily Mortimer,1345286870 +152692,74948,gangs,1345286900 +152692,74948,Michael Caine,1345286869 +152692,74948,revenge,1345286888 +152692,74948,vigilante justice,1345286881 +152692,75341,Emilie de Ravin,1404554074 +152692,75341,ending sucked,1404554078 +152692,75341,heavy handed ending,1404554092 +152692,75341,Pierce Brosnan,1404554087 +152692,75341,Robert Pattinson,1404554081 +152692,75341,romance,1404554084 +152692,75813,Edward Norton,1280085367 +152692,75813,Keri Russell,1280085369 +152692,75813,Richard Dreyfuss,1280085373 +152692,75813,Susan Sarandon,1280085379 +152692,75813,weed,1280085384 +152692,76077,1980s,1314255793 +152692,76077,Crispin Glover,1314255796 +152692,76077,John Cusack,1314255799 +152692,76077,predictable,1314255816 +152692,76093,animation,1288201418 +152692,76093,Gerard Butler,1288201419 +152692,76175,Liam Neeson,1270744025 +152692,76175,Sam Worthington,1270744026 +152692,76251,adapted from:comic,1271507068 +152692,76251,comic book,1271507028 +152692,76251,superhero,1271507032 +152692,76738,Finnish,1290189689 +152692,76755,Cillian Murphy,1403266443 +152692,76755,Ellen Page,1403266446 +152692,76755,Susan Sarandon,1403266448 +152692,76763,Dakota Fanning,1326377596 +152692,76763,glam rock,1326377600 +152692,76763,Kristen Stewart,1326377604 +152692,76763,music business,1326377609 +152692,76763,musicians,1326377614 +152692,76763,rock and roll,1326377620 +152692,76763,true story,1326377593 +152692,76827,based on a book,1350468917 +152692,76827,finnish,1350468920 +152692,77191,cheap jokes,1325092112 +152692,77191,Chris Rock,1325092121 +152692,77191,Tracy Morgan,1325092141 +152692,77217,Frank Sinatra,1325871909 +152692,77266,based on a book,1276615444 +152692,77266,John Malkovich,1276615438 +152692,77312,Catherine Keener,1278395197 +152692,77312,Colin Firth,1278395196 +152692,77312,Hope Davis,1278395206 +152692,77312,Michael Winterbottom,1278395197 +152692,77312,Willa Holland,1278395204 +152692,77427,bad acting,1367406220 +152692,77561,based on a comic,1273388952 +152692,77561,Don Cheadle,1273388873 +152692,77561,Gwyneth Paltrow,1273388876 +152692,77561,Jon Favreau,1273388878 +152692,77561,Mickey Rourke,1273388887 +152692,77561,Robert Downey Jr.,1273388884 +152692,77561,Sam Rockwell,1273388906 +152692,77561,Samuel L. Jackson,1273388895 +152692,77561,Scarlett Johansson,1273388896 +152692,77561,sequel,1273388901 +152692,77629,addiction,1284381432 +152692,77629,documentary,1284381434 +152692,77629,drugs,1284381438 +152692,77798,child abuse,1289115743 +152692,77798,Jackie Earle Haley,1289115749 +152692,77798,remake,1289115760 +152692,77800,dark comedy,1327953562 +152692,77800,terrorism,1327953565 +152692,77837,Al Pacino,1289534638 +152692,77837,biography,1289534647 +152692,77837,John Goodman,1289534632 +152692,77837,made for TV,1289534641 +152692,77837,Susan Sarandon,1289534635 +152692,77837,true story,1289534643 +152692,78088,buried alive,1325079819 +152692,78088,claustrophobic,1325079825 +152692,78088,Iraq,1325079828 +152692,78088,Middle East,1325079831 +152692,78088,predictable,1325079836 +152692,78088,Ryan Reynolds,1325079839 +152692,78209,Comedy,1371286000 +152692,78209,great soundtrack,1371286027 +152692,78209,Jonah Hill,1371286004 +152692,78209,music,1371286022 +152692,78209,music business,1371286019 +152692,78209,Russell Brand,1371286008 +152692,78209,soundtrack,1371286011 +152692,78370,British,1366643948 +152692,78370,downbeat,1366644006 +152692,78370,Robert Pattinson,1366643958 +152692,78499,Pixar,1289135800 +152692,78499,tear jerker,1289135821 +152692,78499,Tom Hanks,1289135803 +152692,78574,white trash,1317303589 +152692,78679,based on a book,1308219832 +152692,78679,bdsm,1308219835 +152692,78679,Casey Affleck,1308219839 +152692,78679,Jessica Alba,1308219843 +152692,78679,Kate Hudson,1308219847 +152692,78679,Michael Winterbottom,1308219845 +152692,78703,Emma Caulfield,1339306150 +152692,78746,cult classic,1404655266 +152692,78746,Documentary,1404655269 +152692,79008,not a movie,1280060513 +152692,79091,animation,1324976184 +152692,79091,Steve Carell,1324976155 +152692,79132,Christopher Nolan,1279957258 +152692,79132,Cillian Murphy,1279957261 +152692,79132,clever,1279957264 +152692,79132,Ellen Page,1279957268 +152692,79132,Joseph Gordon-Levitt,1279957278 +152692,79132,Leonardo DiCaprio,1279957282 +152692,79132,mindfuck,1279957255 +152692,79132,visually appealing,1280060684 +152692,79187,Carey Mulligan,1364498500 +152692,79187,Susan Sarandon,1364498501 +152692,79224,Jackie Chan,1331384678 +152692,79224,Jaden Smith,1331384679 +152692,79224,remake,1331384673 +152692,79242,adultery,1327086258 +152692,79242,lesbian,1327086267 +152692,79293,Angelina Jolie,1296816818 +152692,79357,butterfly effect,1286007628 +152692,79357,Diane Kruger,1286007640 +152692,79357,Jared Leto,1286007642 +152692,79357,nonlinear,1286007646 +152692,79357,sci-fi,1286007656 +152692,79357,surreal,1286007650 +152692,79536,drugs,1281626459 +152692,79592,Eva Mendes,1331658495 +152692,79592,Mark Wahlberg,1331658473 +152692,79592,parody,1331658500 +152692,79592,spoof,1331658502 +152692,79592,Will Ferrell,1331658473 +152692,79684,Emma Stone,1287243881 +152692,79684,Jeff Daniels,1287243893 +152692,79684,Kieran Culkin,1287243881 +152692,79684,Ryan Reynolds,1287243881 +152692,79695,Arnold Schwarzenegger,1283537507 +152692,79695,Bruce Willis,1283537541 +152692,79695,Dolph Lundgren,1283537616 +152692,79695,Mickey Rourke,1283537497 +152692,79695,Sylvester Stallone,1283537498 +152692,79702,based on a comic,1355641548 +152692,79702,Edgar Wright,1286210137 +152692,79702,funny,1355641553 +152692,79702,geeky,1286007486 +152692,79702,Kieran Culkin,1286007488 +152692,79702,Michael Cera,1286007491 +152692,79702,music,1286007501 +152692,79702,quirky,1355641557 +152692,79702,stylized,1286007495 +152692,79702,video games,1355641566 +152692,79702,visually appealing,1355641564 +152692,79897,Bill Murray,1302272660 +152692,79897,Robert Duvall,1302272670 +152692,80166,Jason Bateman,1352542003 +152692,80166,Jeff Goldblum,1352542031 +152692,80166,Jennifer Aniston,1352542008 +152692,80166,Juliette Lewis,1352542035 +152692,80166,Patrick Wilson,1352542050 +152692,80166,predictable ending,1352541998 +152692,80166,single mother,1352542078 +152692,80219,Danny Trejo,1293050723 +152692,80219,Jessica Alba,1293050730 +152692,80219,Lindsay Lohan,1293050733 +152692,80219,Robert De Niro,1293050735 +152692,80219,Robert Rodriguez,1293050738 +152692,80219,Steven Seagal,1293050749 +152692,80463,computers,1300453040 +152692,80463,David Fincher,1300453037 +152692,80463,true story,1300453035 +152692,80489,Ben Affleck,1292762185 +152692,80489,Direction,1292762218 +152692,80549,dialogue,1308328786 +152692,80549,Emma Stone,1308328772 +152692,80549,high school,1308328792 +152692,80549,sexuality,1308328799 +152692,80549,virginity,1308328794 +152692,80549,witty,1308328801 +152692,80551,based on a book,1331363880 +152692,80551,Every foreigner is a wiseman,1331363885 +152692,80551,Female middle-age angst,1331363883 +152692,80551,Julia Roberts,1331363887 +152692,80586,children,1365331214 +152692,80586,teen,1365331206 +152692,80590,Carey Mulligan,1286473639 +152692,80590,Michael Douglas,1286473625 +152692,80590,Shia LaBeouf,1286473598 +152692,80615,Zack Snyder,1287757668 +152692,80775,cheating husband,1325167862 +152692,80775,England,1325167866 +152692,80775,rock-star,1325167874 +152692,80775,small town,1325167877 +152692,80779,Ezra Miller,1365647192 +152692,80779,infidelity,1365647237 +152692,80831,1980s,1407160899 +152692,80831,bullying,1407160919 +152692,80831,dark,1407160922 +152692,80831,remake,1407160926 +152692,80831,vampires,1407160929 +152692,80860,Josh Duhamel,1366135723 +152692,80860,Katherine Heigl,1366135719 +152692,80860,predictable,1366135713 +152692,80860,romantic comedy,1366135726 +152692,80917,aliens,1306410925 +152692,80917,boring,1306410928 +152692,80917,nothing happens,1306411054 +152692,80917,unsympathetic characters,1306410947 +152692,80941,juno temple,1376977816 +152692,80969,based on a book,1305642813 +152692,80969,Carey Mulligan,1305642846 +152692,80969,depressing,1305642823 +152692,80969,Keira Knightley,1305642815 +152692,81229,assassin,1304273095 +152692,81229,Helen Mirren,1304273080 +152692,81229,Mary-Louise Parker,1304273142 +152692,81229,Morgan Freeman,1304273083 +152692,81229,Richard Dreyfuss,1304273084 +152692,81537,Michelle Monaghan,1365235978 +152692,81537,road trip,1365235974 +152692,81537,Robert Downey Jr.,1365235966 +152692,81537,Zach Galifianakis,1365235968 +152692,81562,true story,1312477244 +152692,81591,alter ego,1303815487 +152692,81591,atmospheric,1303815489 +152692,81591,ballet,1303815485 +152692,81591,Natalie Portman,1303815489 +152692,81591,Winona Ryder,1303815495 +152692,81845,based on a true story,1295960742 +152692,81845,Colin Firth,1295960901 +152692,81845,England,1347553957 +152692,81845,Helena Bonham Carter,1295960893 +152692,81845,therapy,1295960919 +152692,81847,adapted from:book,1308923250 +152692,81847,animation,1308923264 +152692,81847,Disney,1308923268 +152692,81847,fairy tale,1308923277 +152692,81847,musical,1308923285 +152692,81847,singing,1308923280 +152692,81949,Anna Paquin,1331908554 +152692,81949,Elijah Wood,1331908557 +152692,82041,australian,1401563861 +152692,82041,horror,1401563864 +152692,82041,suspenseful,1401563871 +152692,82041,torture,1401563869 +152692,82150,buddy movie,1325062101 +152692,82152,Neil Patrick Harris,1357673400 +152692,82202,Angelina Jolie,1332090741 +152692,82202,Johnny Depp,1332090741 +152692,82202,Paul Bettany,1332090762 +152692,82202,Timothy Dalton,1332090768 +152692,82459,based on a book,1370281425 +152692,82459,Coen Brothers,1370281417 +152692,82459,Jeff Bridges,1370281420 +152692,82459,Josh Brolin,1370281457 +152692,82459,Matt Damon,1370281421 +152692,82459,remake,1370281444 +152692,82459,revenge,1370281436 +152692,82459,Western,1370281433 +152692,82767,Aaron Eckhart,1326032313 +152692,82767,based on a play,1326032321 +152692,82767,death of a child,1326032327 +152692,82767,Nicole Kidman,1326032315 +152692,82931,clowns,1311165756 +152692,82931,nostalgia,1311165755 +152692,82931,sadomasochistic,1311165764 +152692,82931,violence,1311165764 +152692,83086,bad acting,1382818772 +152692,83086,predictable,1382818779 +152692,83302,cheating,1313259251 +152692,83302,emotional,1313259255 +152692,83302,husband-wife relationship,1313259261 +152692,83302,Keira Knightley,1313259268 +152692,83302,lack of identification,1313259292 +152692,83302,open end,1313259272 +152692,83302,Sam Worthington,1313259279 +152692,83302,unlikable characters,1313259292 +152692,83349,Christoph Waltz,1306332439 +152692,83349,comic book,1306332439 +152692,83349,Seth Rogen,1306332435 +152692,83613,aliens,1315581346 +152692,83613,cowboys,1315581346 +152692,83613,Daniel Craig,1315581347 +152692,83613,Harrison Ford,1315581347 +152692,83613,Jon Favreau,1315581347 +152692,83613,Sam Rockwell,1315581358 +152692,83976,Michael Winterbottom,1316333681 +152692,83976,Rob Brydon,1316333675 +152692,83976,Steve Coogan,1316333682 +152692,84152,audience intelligence underestimated,1331570596 +152692,84152,Bradley Cooper,1331570594 +152692,84152,drugs,1331570603 +152692,84152,Robert De Niro,1331570605 +152692,84374,Ashton Kutcher,1324991632 +152692,84374,boring,1324991677 +152692,84374,chick flick,1324991647 +152692,84374,Kevin Kline,1324991695 +152692,84374,Natalie Portman,1324991630 +152692,84374,predictable,1324991635 +152692,84772,Kristen Wiig,1309937452 +152692,84772,Nick Frost,1309937440 +152692,84772,Simon Pegg,1309937439 +152692,85179,anime,1379858355 +152692,85179,Mamoru Hosoda,1379858352 +152692,85179,virtual reality,1379858361 +152692,85397,Amanda Seyfried,1415901996 +152692,85401,Ellen Page,1315995620 +152692,85401,Kevin Bacon,1315995664 +152692,85401,Liv Tyler,1315995671 +152692,85401,Rainn Wilson,1315995636 +152692,85401,vigilante,1315995631 +152692,85414,Jake Gyllenhaal,1353849425 +152692,85414,parallel universe,1353849431 +152692,85510,Jena Malone',1302885337 +152692,85510,Zack Snyder,1302885289 +152692,86190,assassin,1320434544 +152692,86190,Cate Blanchett,1320434539 +152692,86190,Eric Bana,1320434551 +152692,86190,Germany,1320434536 +152692,86295,slasher,1333132976 +152692,86295,Wes Craven,1333132976 +152692,86548,Reese Witherspoon,1309245034 +152692,86548,Robert Pattinson,1309245029 +152692,86835,based on a comic,1367589238 +152692,86835,church,1367589228 +152692,86835,dystopia,1367589244 +152692,86835,Paul Bettany,1367589264 +152692,86835,vampires,1367589248 +152692,86882,Adrien Brody,1314875513 +152692,86882,dialogue,1314875517 +152692,86882,magical realism,1314875580 +152692,86882,Owen Wilson,1314875520 +152692,86882,Paris,1314875560 +152692,86882,Rachel McAdams,1314875556 +152692,86882,Woody Allen,1314875570 +152692,86898,cinematography,1314854584 +152692,86898,dinosaurs,1314854584 +152692,87192,alien invasion,1406203886 +152692,87192,aliens,1406203890 +152692,87192,black comedy,1406203911 +152692,87192,British,1406203896 +152692,87192,England,1406203918 +152692,87192,gangsters,1406203903 +152692,87192,London,1406203921 +152692,87192,Nick Frost,1406203901 +152692,87232,adapted from:comic,1308220619 +152692,87232,comic book,1308220622 +152692,87232,James McAvoy,1308220673 +152692,87232,Kevin Bacon,1308220631 +152692,87232,Michael Fassbender,1308220648 +152692,87304,believable,1341078579 +152692,87304,Christopher Plummer,1341078585 +152692,87304,Ewan McGregor,1341078572 +152692,87304,homosexuality,1341078590 +152692,87304,Melanie Laurent,1341078573 +152692,87304,realism,1341078623 +152692,87304,relationships,1341078596 +152692,87306,aliens,1324888144 +152692,87306,audience intelligence underestimated,1324888101 +152692,87306,bad plot,1324888102 +152692,87306,J.J. Abrams,1324888110 +152692,87306,sci-fi,1324888142 +152692,87306,Steven Spielberg,1324888114 +152692,87306,Story,1324888118 +152692,87306,unbelievable characters,1324888123 +152692,87485,Cameron Diaz,1389473216 +152692,87485,high school,1389473224 +152692,87485,Jason Segel,1389473220 +152692,88125,based on a book,1322241651 +152692,88125,Daniel Radcliffe,1322241654 +152692,88125,Emma Watson,1322241662 +152692,88125,franchise,1322241679 +152692,88125,Ralph Fiennes,1322241675 +152692,88125,Rupert Grint,1322241670 +152692,88129,ambient music,1318166702 +152692,88129,cars,1318166707 +152692,88129,cinematography,1318166709 +152692,88129,minimalistic,1318166716 +152692,88129,ryan gosling,1318166719 +152692,88140,adapted from:comic,1321705475 +152692,88140,based on a comic,1321705479 +152692,88140,Chris Evans,1321705485 +152692,88140,comic book,1321705486 +152692,88140,Hugo Weaving,1321705490 +152692,88140,Marvel,1321705540 +152692,88140,superhero,1321705497 +152692,88140,World War II,1321705536 +152692,88163,adultery,1315924900 +152692,88163,Emma Stone,1315924900 +152692,88163,Ryan Gosling,1315924913 +152692,88179,Anne Hathaway,1347169217 +152692,88405,Chick flick,1324912280 +152692,88405,Justin Timberlake,1324912270 +152692,88405,Mila Kunis,1324912261 +152692,88405,predictable,1324912284 +152692,88405,Woody Harrelson,1324912262 +152692,88706,bullying,1368165386 +152692,88706,high school,1368165385 +152692,88706,suicide attempt,1368165386 +152692,88706,teenagers,1368165386 +152692,88810,Emma Stone,1318354197 +152692,88810,segregation,1318354183 +152692,89047,Joseph Gordon-Levitt,1316179903 +152692,89343,Kevin Smith,1315147644 +152692,89343,Religion,1315147657 +152692,89470,ensemble cast,1367090489 +152692,89470,Gwyneth Paltrow,1367090468 +152692,89470,Jude Law,1367090468 +152692,89470,Kate Winslet,1367090471 +152692,89470,Matt Damon,1367090473 +152692,89470,Realistic,1367090478 +152692,89470,Steven Soderbergh,1367090485 +152692,89470,virus,1367090483 +152692,89492,baseball,1367666625 +152692,89492,based on a true story,1367666615 +152692,89492,Brad Pitt,1367666619 +152692,89492,Philip Seymour Hoffman,1367666612 +152692,89492,sports,1367666632 +152692,89753,Cold War,1349630789 +152692,89753,Colin Firth,1349630784 +152692,89753,confusing plot,1349630799 +152692,89753,Gary Oldman,1349630767 +152692,89753,slow paced,1349630796 +152692,89753,Spies,1349630793 +152692,89753,Tom Hardy,1349630780 +152692,89761,adultery,1367427136 +152692,89761,biopic,1367427138 +152692,89761,David Cronenberg,1367427125 +152692,89761,history,1367427134 +152692,89761,Keira Knightley,1367427098 +152692,89761,Michael Fassbender,1367427112 +152692,89761,Psychoanalysis,1367427118 +152692,89761,psychology,1367427117 +152692,89761,Viggo Mortensen,1367427099 +152692,89864,Anna Kendrick,1325259027 +152692,89864,Bryce Dallas Howard,1325259035 +152692,89864,cancer,1325259035 +152692,89864,disease,1325259039 +152692,89864,Joseph Gordon-Levitt,1325259047 +152692,89864,Seth Rogen,1325259048 +152692,89904,1920s,1357399145 +152692,89904,Hollywood,1357399150 +152692,89904,John Goodman,1357399154 +152692,89904,movie business,1357399161 +152692,89904,original,1357399158 +152692,89904,silent movie,1357399171 +152692,90057,Jessica Chastain,1348852468 +152692,90057,mental illness,1348852496 +152692,90057,Michael Shannon,1348852478 +152692,90249,father-son relationship,1431358558 +152692,90249,Hugh Jackman,1431358555 +152692,90345,alien invasion,1347388429 +152692,90345,aliens,1347388434 +152692,90345,Mary Elizabeth Winstead,1347388439 +152692,90345,remake,1347388426 +152692,90376,nihilism,1343930684 +152692,90376,tilda swinton,1343930681 +152692,90405,Cillian Murphy,1403623008 +152692,90405,dystopia,1403623005 +152692,90405,sci-fi,1403623018 +152692,90405,social commentary,1403623020 +152692,90430,based on a play,1325008420 +152692,90476,cancer,1364498652 +152692,90630,feminism,1404667165 +152692,90746,animation,1367501106 +152692,90746,comic book,1367501108 +152692,90746,Daniel Craig,1367501113 +152692,90746,Nick Frost,1367501121 +152692,90746,Simon Pegg,1367501119 +152692,90746,Steven Spielberg,1367501115 +152692,90746,treasure hunt,1367501117 +152692,90866,Ben Kingsley,1333734973 +152692,90866,Martin Scorsese,1333734975 +152692,90866,Sacha Baron Cohen,1333734977 +152692,91010,drugs,1365439974 +152692,91010,dysfunctional family,1365439967 +152692,91010,Ezra Miller,1365439986 +152692,91010,wedding,1365439958 +152692,91077,George Clooney,1333878840 +152692,91077,Hawaii,1333878840 +152692,91079,Anton Yelchin,1344620968 +152692,91079,bad pacing,1344621001 +152692,91079,character driven,1344620968 +152692,91079,Felicity Jones,1344620974 +152692,91104,bad acting,1352228838 +152692,91104,based on a book,1352228826 +152692,91104,nothing happens,1352228819 +152692,91104,unintentionally funny,1352228830 +152692,91104,vampires,1352228834 +152692,91128,based on a book,1337877718 +152692,91128,Hunter S. Thompson,1337877718 +152692,91128,Johnny Depp,1337877726 +152692,91128,journalism,1337877723 +152692,91199,bittersweet,1350237515 +152692,91199,britain,1350237520 +152692,91199,British,1350237523 +152692,91199,England,1350237530 +152692,91199,fear of commitment,1350237511 +152692,91199,gay,1350237490 +152692,91199,Gay Character,1350237500 +152692,91199,Gay Lead Character,1350237504 +152692,91199,gay relationship,1350237540 +152692,91199,gay romance,1350237495 +152692,91199,meditative,1350237547 +152692,91199,realistic relationships,1350237583 +152692,91325,Sandra Bullock,1366043854 +152692,91325,Tom Hanks,1366043852 +152692,91500,adapted from:book,1375237866 +152692,91500,based on a book,1375237870 +152692,91500,dystopia,1375237874 +152692,91500,Woody Harrelson,1375237889 +152692,91505,atmospheric,1375453863 +152692,91505,ethics,1375453868 +152692,91505,Eva Green,1375453880 +152692,91529,Batman,1342809706 +152692,91529,Christopher Nolan,1342809686 +152692,91529,Predictable,1342809715 +152692,91535,bad acting,1357120750 +152692,91535,bad script,1357120809 +152692,91535,Edward Norton,1357120706 +152692,91535,franchise,1357120708 +152692,91535,Jeremy Renner,1357120701 +152692,91535,Rachel Weisz,1357120703 +152692,91535,Rehash Sequel,1357120732 +152692,91542,adapted from:book series,1324668968 +152692,91542,Bromance,1324669006 +152692,91542,Guy Ritchie,1324668983 +152692,91628,multiple storylines,1341900763 +152692,92259,based on a true story,1417290805 +152692,92259,feel good movie,1417290792 +152692,92259,friendship,1417290788 +152692,92420,found footage,1357406946 +152692,92420,supernatural powers,1357406935 +152692,92509,based on a true story,1404675708 +152692,92509,Channing Tatum,1404675701 +152692,92509,Rachel McAdams,1404675704 +152692,92509,romance,1404675706 +152692,92768,dialogue driven,1350469228 +152692,92768,Finnish,1350469219 +152692,92768,Helsinki,1350469207 +152692,93024,Cillian Murphy,1403245581 +152692,93024,Jamie Bell,1403245573 +152692,93270,high school,1366216029 +152692,93270,no plot,1366216031 +152692,93270,shaky camera,1366216035 +152692,93270,unlikeable characters,1366216040 +152692,93510,Channing Tatum,1356770886 +152692,93510,comedy,1356770844 +152692,93510,drugs,1356770854 +152692,93510,funny,1356770894 +152692,93510,high school,1356770847 +152692,93510,Johnny Depp,1356770852 +152692,93510,Jonah Hill,1356770860 +152692,93510,undercover cops,1356770864 +152692,93790,Adrien Brody,1404546529 +152692,93790,Lucy Liu,1404546534 +152692,93840,clever,1349714510 +152692,93840,dark comedy,1349714527 +152692,93840,disappointing ending,1349714552 +152692,93840,funny,1349714512 +152692,93840,original,1349714514 +152692,93840,original plot,1349714518 +152692,93840,satire,1349714534 +152692,93855,Bobcat Goldthwait,1351928114 +152692,93855,dark comedy,1351928049 +152692,93855,Joel Murray,1351928085 +152692,93855,social criticism,1351928046 +152692,93855,terminal illness,1351928066 +152692,93855,violence,1351928061 +152692,94150,based on a true story,1347217739 +152692,94150,sexuality,1347217749 +152692,94280,boarding school,1389554318 +152692,94280,coming of age,1389554320 +152692,94478,Danny Elfman,1365261630 +152692,94478,eva green,1365261634 +152692,94478,Helena Bonham Carter,1365261632 +152692,94478,johnny depp,1365261624 +152692,94478,Michelle Pfeiffer,1365261635 +152692,94478,Tim Burton,1365261626 +152692,94478,vampires,1365261649 +152692,94478,werewolf,1365261654 +152692,94478,witch,1365261656 +152692,94864,aliens,1338823501 +152692,94864,Michael Fassbender,1338823516 +152692,94864,prequel,1338823501 +152692,94953,Jennifer Aniston,1341128201 +152692,94953,Paul Rudd,1341128208 +152692,94953,predictable,1341128226 +152692,94959,Bill Murray,1379686254 +152692,94959,Bruce Willis,1379686259 +152692,94959,Edward Norton,1379686255 +152692,94959,quirky,1379686266 +152692,94959,Wes Anderson,1379686257 +152692,95167,animation,1367510971 +152692,95167,coming of age,1367510943 +152692,95167,mother-daughter relationships,1367510945 +152692,95167,Pixar,1367510952 +152692,95167,Scotland,1367510959 +152692,95309,apocalyptic,1440439208 +152692,95309,Keira Knightley,1440439204 +152692,95309,Steve Carell,1440439210 +152692,95449,Channing Tatum,1356856046 +152692,95449,dancing,1356856023 +152692,95449,Steven Soderbergh,1356856029 +152692,95449,strippers,1356856031 +152692,95510,comic book,1377976684 +152692,95510,Denis Leary,1377976682 +152692,95510,Emma Stone,1377976679 +152692,95510,Martin Sheen,1377976688 +152692,95510,Marvel,1377976690 +152692,95510,Spider-Man,1377976675 +152692,95510,superhero,1377976698 +152692,95558,child's perspective,1371825733 +152692,95558,surreal,1371825746 +152692,95567,Chris Pine,1370267918 +152692,95567,Drama,1370267876 +152692,95567,Elizabeth Banks,1370267911 +152692,95567,family bonds,1370267897 +152692,95761,Emile Hirsch,1370020104 +152692,95761,violent,1370020108 +152692,96079,action,1361382720 +152692,96079,cinematography,1361382723 +152692,96079,franchise,1361382733 +152692,96079,James Bond,1361382729 +152692,96195,coming of age,1350468992 +152692,96195,Drama,1350469001 +152692,96195,Finnish,1350468999 +152692,96195,teenagers,1350468994 +152692,96314,Andy Samberg,1371991430 +152692,96314,divorce,1371991409 +152692,96314,Rashida Jones,1371991422 +152692,96373,Cillian Murphy,1403194863 +152692,96373,Tim Roth,1403194854 +152692,96432,Great Depression,1443812783 +152692,96432,Prohibition,1443812776 +152692,96432,Shia LaBeouf,1443812773 +152692,96432,Tom Hardy,1443812771 +152692,96610,Bruce Willis,1351799803 +152692,96610,Character study,1351799805 +152692,96610,Joseph Gordon-Levitt,1351799791 +152692,96610,sci-fi,1351799797 +152692,96610,time travel,1351799794 +152692,96610,visually appealing,1351799824 +152692,96737,based on a comic,1376904439 +152692,96737,Dystopia,1376904444 +152692,96737,post-apocalyptic,1376904452 +152692,96737,sci-fi,1376904450 +152692,96737,stylized,1376904456 +152692,96737,violence,1376904460 +152692,96821,based on a book,1364146797 +152692,96821,child molestation,1364146834 +152692,96821,coming of age,1364146819 +152692,96821,Emma Watson,1364146820 +152692,96821,Ezra Miller,1364146824 +152692,96857,Cillian Murphy,1403530808 +152692,96857,interesting premise,1403530814 +152692,96857,Robert De Niro,1403530808 +152692,96857,Sigourney Weaver,1403530791 +152692,96857,weak editing,1403530781 +152692,97304,Ben Affleck,1356974444 +152692,97304,hostage,1356974484 +152692,97304,Iran,1356974448 +152692,97304,John Goodman,1356974446 +152692,97304,Middle East,1356974459 +152692,97304,suspenseful,1356974497 +152692,97304,true story,1356974452 +152692,97306,Christopher Walken,1367350194 +152692,97306,Colin Farrell,1367350197 +152692,97306,dark comedy,1367350201 +152692,97306,great cast,1367350204 +152692,97306,metafiction,1367350249 +152692,97306,Sam Rockwell,1367350192 +152692,97306,serial killer,1367350213 +152692,97306,Tom Waits,1367350264 +152692,97306,Woody Harrelson,1367350189 +152692,97752,adapted from:book,1376044207 +152692,97752,based on a book,1376044312 +152692,97752,dystopia,1376044304 +152692,97752,Hugh Grant,1376044303 +152692,97752,multiple storylines,1376044300 +152692,97752,Tom Hanks,1376044294 +152692,97913,animation,1389707195 +152692,97913,disney,1389707197 +152692,97913,video games,1389707191 +152692,97921,father-son relationship,1376989170 +152692,97921,Julia Stiles,1376989172 +152692,97921,loneliness,1376989175 +152692,97921,mental illness,1376989178 +152692,97921,predictable ending,1376989184 +152692,97921,Robert De Niro,1376989181 +152692,97921,romance,1376989188 +152692,97938,based on a book,1377591595 +152692,97938,cgi,1377591632 +152692,97938,India,1377591605 +152692,97938,religion,1377591610 +152692,98017,Catherine Keener,1396771312 +152692,98017,Christopher Walken,1396771292 +152692,98017,classical music,1396771321 +152692,98017,philip seymour hoffman,1396771280 +152692,98087,London,1406576399 +152692,98087,zombies,1406576394 +152692,98124,Animation,1361648124 +152692,98124,batman,1361647899 +152692,98124,frank miller,1361647896 +152692,98203,adapted from:book,1370367950 +152692,98203,bad acting,1370367953 +152692,98203,Kristen Stewart,1370367960 +152692,98203,makes no sense,1370367963 +152692,98203,plot makes no sense,1370367967 +152692,98203,ridiculous,1370367970 +152692,98203,unintentionally funny,1370367974 +152692,98203,vampires,1370367978 +152692,98203,werewolves,1370367980 +152692,98243,action,1389803701 +152692,98243,Adventure,1389803702 +152692,98243,animation,1389803699 +152692,98243,Jude Law,1389803708 +152692,98243,lack of story,1389803709 +152692,98809,adapted from:book,1370157166 +152692,98809,adventure,1370157194 +152692,98809,based on a book,1370157171 +152692,98809,fantasy,1370157185 +152692,98809,Peter Jackson,1370157181 +152692,99114,Jamie Foxx,1359988545 +152692,99114,Jonah Hill,1359988524 +152692,99114,Leonardo DiCaprio,1359988507 +152692,99114,Quentin Tarantino,1359988525 +152692,99114,Revenge,1359988536 +152692,99114,Samuel L. Jackson,1359988513 +152692,99114,Slavery,1359988534 +152692,99114,Spaghetti Western,1359988561 +152692,99114,western,1359988528 +152692,99437,nonlinear,1390112529 +152692,99813,animation,1361647994 +152692,99813,batman,1361647982 +152692,99813,frank miller,1361647981 +152692,99813,superman,1361647984 +152692,101088,stylish,1431891803 +152692,101088,visually stylish,1431891810 +152692,101741,Danny Boyle,1422552435 +152692,101741,James McAvoy,1422552439 +152692,101962,anime,1379789098 +152692,101962,Mamoru Hosoda,1379789103 +152692,102123,apocalypse,1388773832 +152692,102123,Immature,1388773849 +152692,102123,James Franco,1388773835 +152692,102123,Michael Cera,1388773842 +152692,102123,not funny,1388773845 +152692,102123,Seth Rogen,1388773838 +152692,102125,Ben Kingsley,1367169218 +152692,102125,Guy Pearce,1367169221 +152692,102125,Gwyneth Paltrow,1367169208 +152692,102125,Robert Downey Jr.,1367169212 +152692,102407,1920s,1387715504 +152692,102407,adapted from:book,1387715486 +152692,102407,based on a book,1387715490 +152692,102407,Baz Luhrmann,1387715484 +152692,102407,Carey Mulligan,1387715493 +152692,102407,F. Scott Fitzgerald,1387715495 +152692,102407,Leonardo DiCaprio,1387715476 +152692,102407,Tobey Maguire,1387715498 +152692,102684,Ryan Gosling,1377591679 +152692,102684,slow paced,1377591700 +152692,102684,stylized,1377591689 +152692,102684,vengeance,1377591665 +152692,102684,violence,1377591670 +152692,102903,audience intelligence underestimated,1382380889 +152692,102903,deception,1382380741 +152692,102903,entertaining,1382380749 +152692,102903,Isla FIsher,1382380754 +152692,102903,Jesse Eisenberg,1382380744 +152692,102903,magic,1382380759 +152692,102903,Mark Ruffalo,1382380757 +152692,102903,Michael Caine,1382380726 +152692,102903,Morgan Freeman,1382380763 +152692,102903,predictable,1382380792 +152692,102903,surprise ending,1382380775 +152692,102903,Woody Harrelson,1382380736 +152692,103027,adapted from:play,1379788751 +152692,103027,Amy Acker,1379788749 +152692,103027,based on a play,1379788755 +152692,103027,black and white,1379788796 +152692,103027,joss whedon,1379788786 +152692,103027,Shakespeare,1379788777 +152692,103042,comic book,1373136937 +152692,103042,Superman,1373136954 +152692,103042,visually appealing,1373136963 +152692,103042,Zack Snyder,1373136956 +152692,103048,coming of age,1441035904 +152692,103137,based on a true story,1387706540 +152692,103137,Emma Watson,1387706543 +152692,103137,Sofia Coppola,1387706546 +152692,103137,vanity,1387706549 +152692,103137,zeitgeist,1387706574 +152692,103228,Guillermo del Toro,1388359453 +152692,103228,mecha,1388359476 +152692,103249,zombies,1441460098 +152692,103306,Found footage,1397236333 +152692,103306,low budget,1397236335 +152692,103306,space,1397236337 +152692,103315,Anton Yelchin,1378140497 +152692,103315,Willem Dafoe,1378140505 +152692,103341,aliens,1384347987 +152692,103341,cornetto trilogy,1384347990 +152692,103341,Edgar Wright,1384347981 +152692,103341,Nick Frost,1384347998 +152692,103341,Simon Pegg,1384347995 +152692,103384,Johnny Depp,1378348559 +152692,103384,Western,1378348568 +152692,103539,based on a book,1391110030 +152692,103539,coming of age,1391110033 +152692,103539,high school,1391110038 +152692,103624,true story,1422731616 +152692,103688,haunted house,1378866325 +152692,103688,Horror,1378866370 +152692,103688,Lili Taylor,1378866330 +152692,103688,Patrick Wilson,1378866355 +152692,103688,Ron Livingston,1378866346 +152692,103801,friendship,1390750289 +152692,103801,improvisation,1390750323 +152692,103801,relationships,1390750286 +152692,103810,Bruce Willis,1390646043 +152692,103810,John Malkovich,1390646031 +152692,103810,Mary-Louise Parker,1390646033 +152692,103980,Cate Blanchett,1389897711 +152692,103980,Woody Allen,1389897690 +152692,104078,based on a TV show,1388263292 +152692,104078,Steve Coogan,1388263295 +152692,104272,animal rights,1404660099 +152692,104272,corporate America,1404660102 +152692,104272,corporate greed,1404660105 +152692,104339,Demetri Martin,1390764068 +152692,104339,movie business,1390764051 +152692,104374,Bill Nighy,1411683436 +152692,104374,charming,1411683439 +152692,104374,cliche characters,1411683467 +152692,104374,Rachel McAdams,1411683447 +152692,104374,stereotypes,1411683465 +152692,104374,time travel,1411683449 +152692,104841,George Clooney,1396718170 +152692,104841,sandra bullock,1396718164 +152692,104841,sci-fi,1396718201 +152692,104841,space,1396718196 +152692,104841,suspense,1396718216 +152692,105213,directorial debut,1390063529 +152692,105213,Joseph Gordon-Levitt,1390063534 +152692,105213,Julianne Moore,1390063537 +152692,105213,relationships,1390063546 +152692,105213,Scarlett Johansson,1390063539 +152692,105504,tom hanks,1390669329 +152692,105504,true story,1390669332 +152692,105593,based on a book,1406057598 +152692,105593,drugs,1406057607 +152692,105593,Irvine Welsh,1406057600 +152692,105593,police corruption,1406057602 +152692,105593,Scotland,1406057604 +152692,105844,based on a book,1390583500 +152692,105844,based on a true story,1390583503 +152692,105844,Brad Pitt,1390583518 +152692,105844,Michael Fassbender,1390583508 +152692,105844,slavery,1390583545 +152692,105844,Steve McQueen,1390583511 +152692,106072,comic book,1400991875 +152692,106072,Kat Dennings,1400991879 +152692,106072,Natalie Portman,1400991884 +152692,106072,superhero,1400991882 +152692,106100,AIDS,1389635495 +152692,106100,Jared Leto,1389635543 +152692,106100,Matthew McConaughey,1389635484 +152692,106195,coming of age,1404739354 +152692,106195,unlikeable characters,1404739372 +152692,106487,adapted from:book,1394384333 +152692,106487,based on a book,1394384335 +152692,106487,dystopia,1394384338 +152692,106487,revolution,1394384346 +152692,106487,strong female lead,1394384351 +152692,106487,Woody Harrelson,1394384348 +152692,106696,animation,1389468676 +152692,106696,Disney,1389468716 +152692,106696,musical,1389468688 +152692,106782,based on a true story,1405067707 +152692,106782,drugs,1405067712 +152692,106782,greed,1405067715 +152692,106782,Leonardo DiCaprio,1405067702 +152692,106782,Martin Scorsese,1405067704 +152692,106782,Matthew McConaughey,1405067718 +152692,106782,true story,1405067722 +152692,106841,meryl streep,1416839543 +152692,106920,artificial intelligence,1392481082 +152692,106920,joaquin phoenix,1392481089 +152692,106920,loneliness,1392481091 +152692,106920,Scarlett Johansson,1392481087 +152692,106920,thought-provoking,1392481085 +152692,107141,Disney,1408388482 +152692,107141,Emma Thompson,1408388504 +152692,107141,Tom Hanks,1408388486 +152692,107141,true story,1408388490 +152692,107406,chris evans,1397337318 +152692,107406,dystopia,1397337280 +152692,107406,jamie bell,1397337291 +152692,107406,john hurt,1397337327 +152692,107406,Joon-ho Bong,1397371875 +152692,107406,tilda swinton,1397337303 +152692,107771,Anton Yelchin,1395777551 +152692,107771,Jim Jarmusch,1395777521 +152692,107771,Tilda Swinton,1395777526 +152692,107771,Tom Hiddleston,1395777541 +152692,107771,vampires,1395777528 +152692,108932,stop motion,1415976797 +152692,109157,based on a book,1414951532 +152692,109157,Nick Hornby,1414951535 +152692,109157,suicide,1414951538 +152692,109487,Anne Hathaway,1415547809 +152692,109487,Christopher Nolan,1415547805 +152692,109487,Matthew McConaughey,1415547812 +152692,109487,space,1415547817 +152692,110102,Chris Evans,1408184015 +152692,110102,comic book,1408184036 +152692,110102,Marvel,1408184030 +152692,110102,Scarlett Johansson,1408184017 +152692,110459,rape,1424020616 +152692,110459,revenge,1424020620 +152692,110461,punk,1428956431 +152692,110730,artificial intelligence,1404752949 +152692,110730,impossible science,1404752968 +152692,110730,Johnny Depp,1404752953 +152692,110730,science is magic,1404752960 +152692,110882,strong performance,1409329173 +152692,110882,Tom Hardy,1409329188 +152692,110882,unique,1409329176 +152692,111360,Luc Besson,1413092484 +152692,111360,Morgan Freeman,1413092486 +152692,111360,Scarlett Johansson,1413092481 +152692,111362,Bryan Singer,1401204923 +152692,111362,comic book,1401204930 +152692,111362,franchise,1401204937 +152692,111362,James McAvoy,1401204927 +152692,111362,Jennifer Lawrence,1401204933 +152692,111362,Marvel,1401204940 +152692,111362,Michael Fassbender,1401204958 +152692,111362,time travel,1401204943 +152692,111443,food,1423151099 +152692,111622,bittersweet,1410121212 +152692,111622,music,1410121215 +152692,111622,New York,1410121205 +152692,111622,soundtrack,1410121207 +152692,111659,Angelina Jolie,1411303488 +152692,111659,bad acting,1411303486 +152692,111659,fairy tale,1411303490 +152692,112175,sequel,1410194785 +152692,112316,biography,1416343293 +152692,112316,music,1416343290 +152692,112421,Maggie Gyllenhaal,1411412789 +152692,112421,mental illness,1411412779 +152692,112421,Michael Fassbender,1411412771 +152692,112421,musicians,1411412774 +152692,112421,soundtrack,1411412777 +152692,112552,J.K. Simmons,1422461419 +152692,112552,jazz,1421345392 +152692,112552,Miles Teller,1422461411 +152692,112552,musicians,1421345375 +152692,112556,Ben Affleck,1420125879 +152692,112556,David Fincher,1420125867 +152692,112556,Neal Patrick Harris,1420125883 +152692,112852,Chris Pratt,1408117101 +152692,112852,Marvel Cinematic Universe,1408117112 +152692,112852,sci-fi,1408117117 +152692,113188,Guy Pearce,1410722496 +152692,113188,Robert Pattinson,1410722507 +152692,113378,Jeff Bridges,1419144693 +152692,113378,Meryl Streep,1419144695 +152692,113378,utopia,1419144698 +152692,114028,feel good,1419779023 +152692,114028,queer,1419779013 +152692,114670,dark humor,1419851818 +152692,114670,justin long,1419851817 +152692,114670,Kevin Smith,1419851825 +152692,114707,based on a book,1420839426 +152692,114707,Daniel Radcliffe,1420839429 +152692,114707,religion,1420839436 +152692,114707,revenge,1420839439 +152692,114762,Miles Teller,1422461388 +152692,114935,time travel,1419456597 +152692,115149,Keanu Reeves,1421780903 +152692,115149,Revenge,1421780906 +152692,115170,Billy Bob Thornton,1415524567 +152692,115170,Father-Son Relationship,1415524586 +152692,115170,Robert Downey Jr.,1415524577 +152692,115170,Robert Duvall,1415524571 +152692,115170,Small Town,1415524574 +152692,115210,Brad Pitt,1421598696 +152692,115210,World War II,1421598688 +152692,115231,Bill Murray,1427815107 +152692,115569,dark,1421086768 +152692,115617,Disney,1420965354 +152692,115617,superhero,1420965357 +152692,115713,artificial intelligence,1433011525 +152692,115713,sci-fi,1433011529 +152692,117176,James Marsh,1417196154 +152692,117881,Julianne Moore,1430706254 +152692,118082,black comedy,1427726347 +152692,118082,mental illness,1427726351 +152692,118702,war,1428338968 +152692,118880,black and white,1427726318 +152692,118880,vampires,1427726320 +152692,118924,Chris Rock,1423374639 +152692,118985,Amy Adams,1420917544 +152692,118985,Christoph Waltz,1420917548 +152692,118985,Tim Burton,1420917550 +152692,119141,James Franco,1423507441 +152692,119141,Seth Rogen,1423507428 +152692,119145,Matthew Vaughn,1429370788 +152692,119145,violent,1429370791 +152692,121231,horror,1431125366 +152692,122882,post apocalypse,1431863902 +152692,122886,Adam Driver,1450714496 +152692,122886,Harrison Ford,1450714485 +152692,122886,J.J. Abrams,1450714488 +152692,122886,John Boyega,1450714490 +152692,122886,Mark Hamill,1450714498 +152692,122886,Star Wars,1450714483 +152692,122892,comic book,1429972649 +152692,122892,Marvel,1429972647 +152692,122892,superhero,1429972652 +152692,122900,comic book,1447618067 +152692,122900,Marvel,1447618062 +152692,122900,Michael Douglas,1447618072 +152692,122900,paul rudd,1447618076 +152692,122900,sci-fi,1447618069 +152692,122900,superhero,1447618065 +152692,125916,abuse,1430072853 +152692,125916,erotic,1430072857 +152692,138202,Anton Yelchin,1442337065 +152692,141688,Tom Hardy,1451467501 +152728,589,action,1402789369 +152728,589,apocalypse,1402789366 +152728,589,Arnold Schwarzenegger,1402789350 +152728,589,artificial intelligence,1402789354 +152728,589,robots,1402789362 +152728,589,Suspense,1402789359 +152728,589,time travel,1402789356 +152728,1197,based on a book,1402789490 +152728,1197,Cult classic,1402789476 +152728,1197,quirky,1402789469 +152728,1197,revenge,1402789472 +152728,1243,dialogue driven,1402789422 +152728,1243,Gary Oldman,1402789400 +152728,1243,metafiction,1402789429 +152728,1243,quirky,1402789420 +152728,1243,Shakespeare,1402789402 +152728,1243,smart comedy,1402789405 +152728,1243,Tim Roth,1402789411 +152728,1243,Underrated,1402789413 +152728,1243,witty,1402789418 +152728,1682,alternate reality,1402789297 +152728,1682,dark comedy,1402789294 +152728,1682,Jim Carrey,1402789291 +152728,1682,philosophy,1402789299 +152728,1682,social commentary,1402789289 +152728,1682,stylized,1402789302 +152728,2959,atmospheric,1402789772 +152728,2959,Brad Pitt,1402789753 +152728,2959,dark comedy,1402789774 +152728,2959,disturbing,1402789776 +152728,2959,Edward Norton,1402789757 +152728,2959,mental illness,1402789770 +152728,2959,philosophy,1402789762 +152728,2959,social commentary,1402789763 +152728,2959,stylized,1402789766 +152728,2959,surreal,1402789768 +152728,2959,twist ending,1402789765 +152728,4226,complicated,1402789121 +152728,4226,cult film,1402789123 +152728,4226,dark,1402789128 +152728,4226,dreamlike,1402789126 +152728,4226,gritty,1402789163 +152728,4226,memory,1402789130 +152728,4226,mystery,1402789132 +152728,4226,narrated,1402789136 +152728,4226,nonlinear,1402789114 +152728,4226,psychology,1402789108 +152728,4226,revenge,1402789160 +152728,4226,tense,1402789157 +152728,4226,time loop,1402789141 +152728,4226,twist ending,1402789105 +152728,4226,unreliable narrators,1402789096 +152728,4226,violence,1402789117 +152728,4226,weak ending,1402789099 +152728,7361,bittersweet,1402789781 +152728,7361,dreams,1402789830 +152728,7361,memory,1402789830 +152728,7361,non-conventional love stroy,1402789830 +152728,7361,nonlinear,1402789787 +152728,7361,psychology,1402789792 +152728,7361,quirky,1402789793 +152728,7361,surreal,1402789790 +152728,7361,thought-provoking,1402789785 +152728,7438,atmospheric,1402789509 +152728,7438,crime,1402789529 +152728,7438,Japan,1402789526 +152728,7438,kung fu,1402789512 +152728,7438,martial arts,1402789498 +152728,7438,Quentin Tarantino,1402789496 +152728,7438,Samuel L. Jackson,1402789519 +152728,7438,spaghetti western,1402789522 +152728,7438,twist ending,1402789516 +152728,7438,violence,1402789514 +152728,8874,black comedy,1402789919 +152728,8874,British,1402789925 +152728,8874,british comedy,1402789926 +152728,8874,dark comedy,1402789948 +152728,8874,Simon Pegg,1402789928 +152728,8874,spoof,1402789931 +152728,8874,zombies,1402789942 +152728,38061,black comedy,1403073649 +152728,38061,Fore shadowing,1403073700 +152728,38061,noir,1403073649 +152728,38061,parody,1403073649 +152728,38061,Robert Downey Jr,1403073649 +152728,38061,Robert Downey Jr.,1403073660 +152728,44195,based on a book,1402789208 +152728,44195,dark comedy,1402789187 +152728,44195,dark humor,1402789211 +152728,44195,father-son relationship,1402789224 +152728,44195,funny,1402789218 +152728,44195,independent film,1402789216 +152728,44195,social commentary,1402789202 +152728,44195,witty,1402789220 +152728,44788,documentary,1402790107 +152728,46976,modern fantasy,1402790074 +152728,46976,narrated,1402790081 +152728,46976,quirky,1402790075 +152728,48043,fountain of youth,1402789737 +152728,48043,immortality,1402789723 +152728,48043,multiple storylines,1402789740 +152728,48043,religion,1402789734 +152728,48043,thought-provoking,1402789725 +152728,48043,time travel,1402789732 +152728,48043,visually appealing,1402789727 +152728,54503,comedy,1402790151 +152728,54503,Emma Stone,1402790152 +152728,54503,Good acting,1402790136 +152728,54503,Highly quotable,1402790140 +152728,54503,hilarious,1402790147 +152728,56367,Ellen Page,1402789264 +152728,56367,notable soundtrack,1402789269 +152728,56367,witty,1402789273 +152728,60684,alternate reality,1402789325 +152728,60684,comic book,1402789322 +152728,60684,dark,1402789341 +152728,60684,sci-fi,1402789335 +152728,60684,stylized,1402789319 +152728,60684,violence,1402789331 +152728,68157,Brad Pitt,1402789587 +152728,68157,Christoph Waltz,1402789631 +152728,68157,Nazis,1402789578 +152728,68157,Quentin Tarantino,1402789551 +152728,68157,violence,1402789589 +152728,68157,World War II,1402789574 +152728,71535,clever,1402789899 +152728,71535,comedy,1402789898 +152728,71535,dark comedy,1402789858 +152728,71535,dark humor,1402789901 +152728,71535,happy ending,1402789889 +152728,71535,parody,1402789892 +152728,71535,post-apocalyptic,1402789861 +152728,71535,witty,1402789895 +152728,71535,zombies,1402789883 +152728,74275,based on a true story,1402789708 +152728,74275,black comedy,1402789681 +152728,74275,character development,1402789702 +152728,74275,Ewan McGregor,1402789669 +152728,74275,gay,1402789675 +152728,74275,Jim Carrey,1402789668 +152728,74275,queer,1402789678 +152728,74275,twist ending,1402789715 +152728,79132,alternate reality,1402789648 +152728,79132,dreamlike,1402789654 +152728,79132,heist,1402789656 +152728,79132,philosophy,1402789650 +152728,79132,thought-provoking,1402789638 +152728,79132,twist ending,1402789661 +152728,79132,visually appealing,1402789644 +152728,79702,comedy,1402789391 +152728,79702,fight scenes,1402789387 +152728,79702,geek,1402789394 +152728,79702,stylized,1402789386 +152728,79702,video games,1402789379 +152728,79702,visually appealing,1402789381 +152728,79702,whimsical,1402789383 +152728,109323,accents,1403078627 +152728,109323,bad dialogue,1403078568 +152728,109323,bad pacing,1403078568 +152728,109323,thick accents,1403078627 +152728,111362,based on a comic,1402790166 +152728,111362,Jennifer Lawrence,1402790184 +152728,111362,Michael Fassbender,1402790172 +152728,111362,Patrick Stewart,1402790171 +152728,111362,superpowers,1402790175 +152728,111362,time travel,1402790176 +152728,111362,X-men,1402790178 +152761,253,vampires,1265615450 +152761,296,Christopher Walken,1265614420 +152761,296,dark comedy,1265614222 +152761,296,nonlinear,1265614226 +152761,318,Morgan Freeman,1265614763 +152761,353,bittersweet,1265615012 +152761,353,romance,1265615017 +152761,527,black and white,1265614793 +152761,527,World War II,1265614816 +152761,551,Tim Burton,1265615408 +152761,778,based on a book,1265614611 +152761,778,dark comedy,1265614599 +152761,1073,based on a book,1265614499 +152761,1073,Gene Wilder,1265614479 +152761,1203,good dialogue,1265614459 +152761,1206,satire,1265615155 +152761,1275,sword fight,1265615464 +152761,1295,based on a book,1265614540 +152761,1295,photography,1265614557 +152761,1298,animation,1265614876 +152761,1298,artistic,1265614858 +152761,1527,Milla Jovovich,1265615486 +152761,2019,black and white,1265615367 +152761,2019,samurai,1265615356 +152761,2291,Depp & Burton,1265614988 +152761,2291,Johnny Depp,1265614990 +152761,2291,Tim Burton,1265614991 +152761,2297,good cinematography,1265615311 +152761,2297,philosophy,1265615315 +152761,2297,surreal,1265615322 +152761,2571,alternate reality,1265614276 +152761,2571,martial arts,1265614263 +152761,2571,Oscar (Best Effects - Visual Effects),1265614304 +152761,2571,philosophy,1265614280 +152761,2571,post apocalyptic,1265614264 +152761,2857,psychedelic,1265614043 +152761,2857,surreal,1265614042 +152761,2857,The Beatles,1265614035 +152761,2959,based on a book,1265614343 +152761,2959,philosophy,1265614350 +152761,4874,philosophical,1265615424 +152761,4995,schizophrenia,1265615192 +152761,5219,R,1265614202 +152761,5219,zombie,1265614191 +152761,5219,zombies,1265614192 +152761,5420,World War II,1265615271 +152761,5420,WWII,1265615273 +152761,5618,anime,1265614731 +152761,5618,dreamlike,1265614753 +152761,5618,Hayao Miyazaki,1265614742 +152761,6193,Christopher Walken,1265615381 +152761,6283,BOUNTY HUNTERS,1265615122 +152761,6365,Post apocalyptic,1265614934 +152761,6365,post-apocalyptic,1265614936 +152761,6934,apocalypse,1265614900 +152761,6934,Philosophical,1265614906 +152761,6934,philosophy,1265614893 +152761,6934,Post apocalyptic,1265614885 +152761,6934,post-apocalyptic,1265614887 +152761,7147,dreamlike,1265615510 +152761,7147,Tim Burton,1265615508 +152761,7361,bittersweet,1265614697 +152761,7361,imagination,1265614696 +152761,7361,melancholy,1265614703 +152761,7361,philosophy,1265614683 +152761,7361,romance,1265614684 +152761,7361,thought-provoking,1265614689 +152761,8861,Post apocalyptic,1265614173 +152761,8861,post-apocalyptic,1265614150 +152761,8861,zombies,1265614181 +152761,8874,black comedy,1265615339 +152761,8874,dark humor,1265615341 +152761,8874,zombies,1265615350 +152761,8910,existentialism,1265614950 +152761,8910,philosophy,1265614948 +152761,8910,satire,1265614979 +152761,55232,post-apocalyptic,1265614123 +152761,55232,zombies,1265614133 +152761,56174,apocalypse,1265613973 +152761,56174,based on a book,1265613988 +152761,56174,post-apocalyptic,1265613967 +152761,58559,Morgan Freeman,1265614388 +152761,62336,anime,1265614321 +152761,62336,surreal,1265614332 +152761,65802,stupid,1265615914 +152761,65802,unfunny,1265615916 +152761,69481,realistic,1265615546 +152761,71057,post-apocalyptic,1265615770 +152761,71057,visually appealing,1265615772 +152761,71254,predictable,1265615666 +152761,71535,post-apocalyptic,1265615238 +152761,71535,zombies,1265615240 +152768,260,galactic empire,1440453307 +152768,260,sci-fi,1440453298 +152799,50872,a clever chef rat,1453051551 +152799,50872,inspirational,1453051559 +152799,102007,animation,1453135047 +152799,118696,hope,1453135079 +152806,260,Science Fiction,1439921575 +152828,114066,a bit exaggerated,1430072507 +152828,114066,autobiography,1430072507 +152828,114066,good music,1430072507 +152830,296,achronological,1432719203 +152830,296,classic,1432719203 +152830,296,non-linear,1432719203 +152830,296,organized crime,1432719203 +152830,356,chocolates,1433631900 +152830,356,classic,1433631900 +152830,356,storytelling,1433631900 +152864,260,sci-fi,1439893390 +152886,318,adapted from:book,1438490597 +152886,318,atmospheric,1438490585 +152886,318,based on a book,1438490611 +152886,318,crime,1438490619 +152886,318,great performances,1438490622 +152886,318,imdb top 250,1438490601 +152886,318,oscar (best picture),1438490607 +152886,318,prison break,1438490617 +152886,318,prison escape,1438490581 +152886,318,psychology,1438490627 +152886,318,Stephen King,1438490583 +152886,318,thought-provoking,1438490579 +152886,778,adapted from:book,1438491122 +152886,778,addiction,1438491092 +152886,778,based on a book,1438491082 +152886,778,crime,1438491117 +152886,778,dark comedy,1438491106 +152886,778,drug abuse,1438491084 +152886,778,drugs,1438491080 +152886,778,great soundtrack,1438491099 +152886,778,imdb top 250,1438491119 +152886,1198,atmospheric,1438491255 +152886,1198,classic,1438491253 +152886,1198,great soundtrack,1438491265 +152886,1198,imdb top 250,1438491258 +152886,1198,Nazis,1438491273 +152886,1198,treasure hunt,1438491262 +152886,1204,atmospheric,1438491435 +152886,1204,Biography,1438491445 +152886,1204,desert,1438491437 +152886,1204,epic,1438491440 +152886,1204,History,1438491452 +152886,1204,Oscar (Best Picture),1438491443 +152886,1222,1960s,1438490326 +152886,1222,dialogue,1438490316 +152886,1222,Stanley Kubrick,1438490321 +152886,1233,Best of Rotten Tomatoes: All Time,1438490232 +152886,1233,gritty,1438490224 +152886,1233,ocean,1438490252 +152886,1233,realistic,1438490240 +152886,1233,tense,1438490230 +152886,1233,thought-provoking,1438490238 +152886,1258,atmospheric,1438490393 +152886,1258,based on a book,1438490402 +152886,1258,cult film,1438490395 +152886,1258,disturbing,1438490415 +152886,1258,jack nicholson,1438490390 +152886,1258,masterpiece,1438490397 +152886,1258,psychological,1438490386 +152886,1258,psychology,1438490400 +152886,1258,Stanley Kubrick,1438490388 +152886,1258,Stephen King,1438490391 +152886,1258,suspense,1438490411 +152886,1258,visually appealing,1438490407 +152886,1259,1960s,1438490982 +152886,1259,based on a book,1438490979 +152886,1259,classic,1438490981 +152886,1259,nostalgic,1438490973 +152886,1259,Stephen King,1438490970 +152886,1259,tense,1438490976 +152886,1394,Coen Brothers,1438490185 +152886,1394,Cult classic,1438490173 +152886,1394,cult film,1438490181 +152886,1394,off-beat comedy,1438490171 +152886,1394,Quirky,1438490176 +152886,1673,1970s,1438489970 +152886,1673,1980s,1438489972 +152886,1673,drugs,1438489977 +152886,2542,organized crime,1438489996 +152886,2712,atmospheric,1438490343 +152886,2712,enigmatic,1438490347 +152886,2712,notable soundtrack,1438490350 +152886,2712,psychological,1438490360 +152886,2712,Stanley Kubrick,1438490342 +152886,4027,black comedy,1438490783 +152886,4027,bluegrass,1438490789 +152886,4027,coen brothers,1438490771 +152886,4027,country,1438490794 +152886,4027,great soundtrack,1438490772 +152886,4027,prison escape,1438490774 +152886,4027,Quirky,1438490810 +152886,4034,corruption,1438490896 +152886,4034,drug abuse,1438490892 +152886,4034,DRUG TRADE,1438490886 +152886,4034,drugs,1438490883 +152886,4034,oscar (best cinematography),1438490888 +152886,4223,suspense,1438490746 +152886,4235,episodic,1438490072 +152886,4235,imdb top 250,1438490076 +152886,4235,independent film,1438490062 +152886,4235,Mexican,1438490065 +152886,4235,multiple storylines,1438490067 +152886,4239,based on a true story,1438489927 +152886,4239,cocaine,1438489933 +152886,4239,drug trade,1438489943 +152886,4239,drug trafficking,1438489936 +152886,4239,drugs,1438489941 +152886,4239,true story,1438489939 +152886,4262,atmospheric,1438490283 +152886,4262,classic,1438490281 +152886,4262,corruption,1438490300 +152886,4262,crime,1438490291 +152886,4262,drug abuse,1438490288 +152886,4262,drugs,1438490279 +152886,4262,mafia,1438490294 +152886,4262,Miami,1438490286 +152886,4262,organized crime,1438490296 +152886,4326,based on a true story,1438491001 +152886,4326,ku klux klan,1438491007 +152886,4326,racism,1438490999 +152886,4326,true story,1438491004 +152886,4963,con men,1438491638 +152886,4963,crime,1438491636 +152886,4963,good soundtrack,1438491631 +152886,4963,heist,1438491625 +152886,4963,las vegas,1438491628 +152886,4963,plot twist,1438491641 +152886,5225,coming of age,1438492652 +152886,5225,Mexico,1438492639 +152886,5225,quirky,1438492657 +152886,5225,spanish,1438492644 +152886,5502,atmospheric,1438492042 +152886,5502,eerie,1438492038 +152886,5502,Joaquin Phoenix,1438492046 +152886,5502,m. night shyamalan,1438492028 +152886,5502,suspenseful,1438492033 +152886,5502,tense,1438492031 +152886,8376,awkward,1438491830 +152886,8376,camp,1438491835 +152886,8376,independent film,1438491833 +152886,8376,misfits,1438491839 +152886,8376,off-beat comedy,1438491825 +152886,8376,quirky,1438491827 +152886,8376,seen more than once,1438491842 +152886,8783,Atmospheric,1438492007 +152886,8783,Joaquin Phoenix,1438492012 +152886,8783,m. night shyamalan,1438492005 +152886,8783,secrets,1438492010 +152886,8783,surprise ending,1438492014 +152886,8783,suspense,1438492008 +152886,8783,thought-provoking,1438492015 +152886,8783,twist ending,1438492003 +152886,26974,Bizarre,1438492167 +152886,26974,experimental,1438492190 +152886,26974,youth gone wild,1438492173 +152886,48738,based on a true story,1438492820 +152886,48738,History,1438492824 +152886,55820,1980s,1438490098 +152886,55820,based on a book,1438490117 +152886,55820,Coen Brothers,1438490128 +152886,55820,crime,1438490096 +152886,55820,dark,1438490088 +152886,55820,detached,1438490158 +152886,55820,great acting,1438490090 +152886,55820,hitman,1438490149 +152886,55820,Javier Bardem,1438490114 +152886,55820,Oscar (Best Picture),1438490103 +152886,55820,suspense,1438490124 +152886,55820,Texas,1438490105 +152886,56782,cerebral,1438490047 +152886,56782,greed,1438490042 +152886,56782,Oscar (Best Actor),1438490036 +152886,56782,Oscar (Best Cinematography),1438490031 +152886,56782,visually appealing,1438490027 +152886,60756,comedy,1438491871 +152886,60756,funny,1438491860 +152886,60756,Highly quotable,1438491863 +152886,60756,John C. Reilly,1438491869 +152886,60756,will ferrell,1438491858 +152886,99114,bounty hunter,1438488387 +152886,99114,escape,1438488387 +152886,99114,southern theme,1438488387 +152886,102194,fugitive,1438492219 +152886,102194,powerful,1438492221 +152886,109374,cinematography,1438490826 +152886,109374,europe,1438490847 +152886,109374,quirky,1438490828 +152886,109374,stylized,1438490868 +152886,109374,visually appealing,1438490823 +152886,109374,Wes Anderson,1438490833 +152898,26776,action,1187078776 +152898,26776,anime,1187078757 +152898,26776,Hayao Miyazaki,1187078765 +152898,26776,Miyazaki,1187078773 +152898,26776,politics,1187078778 +152898,26776,Studio Ghibli,1187078751 +152902,3688,Nudity (Full Frontal - Notable),1379884983 +152902,3688,Nudity (Full Frontal),1379884414 +152902,4214,Notable Nudity,1379884318 +152902,4214,Nudity (Full Frontal - Notable),1379884322 +152902,4214,teen,1379884328 +152938,260,cult classic,1440252419 +152938,260,Science Fiction,1440252410 +152938,1197,classic,1440252377 +152938,1197,fantasy,1440252389 +152938,1197,witty,1440252373 +152938,34162,comedy,1440252305 +152938,34162,vince vaughn,1440252300 +152938,79132,alternate reality,1440252330 +152938,79132,sci-fi,1440252338 +152938,79132,thought-provoking,1440252333 +152938,79132,twist ending,1440252348 +152967,260,Long and spacey,1438374339 +152967,260,the force,1438374352 +152982,1198,adventure,1343648545 +152982,1198,atmospheric,1343648543 +152982,1198,indiana jones,1343648530 +152982,1198,Nazis,1343648539 +152982,1198,Steven Spielberg,1343648537 +153014,260,classic,1430527495 +153014,260,sci-fi,1430527457 +153037,1199,dystopia,1147905646 +153037,2117,dystopia,1147905803 +153037,3379,post-apocalyptic,1210147225 +153037,3703,dystopia,1147904204 +153037,5064,bad acting,1242298400 +153037,5064,religion,1242225084 +153037,5064,religious overtones,1242225084 +153037,26554,post-apocalyptic,1210146868 +153037,56174,post-apocalyptic,1210147058 +153059,48394,fascism,1171021195 +153059,48394,foreign,1171021192 +153096,1261,this is just haha..,1255145641 +153099,48774,based on a book,1285165375 +153156,1197,comedy and adventure,1357439326 +153156,1197,has everything i love in a movie: romance,1357439326 +153165,1248,black and white,1368272821 +153165,52042,Nudity (Full Frontal - Notable),1378093154 +153165,52042,Nudity (Topless - Notable),1378093169 +153165,52042,Nudity (Topless),1378093159 +153165,67255,Nudity (Topless - Notable),1376879527 +153165,67255,rape,1376879522 +153165,76251,raunchy,1350440590 +153165,97923,Nudity (Full Frontal),1411703888 +153187,260,action,1424657653 +153187,260,cult classic,1424657653 +153187,260,sci-fi,1424657653 +153187,102716,crime,1424658081 +153187,102716,Paul walker,1424658093 +153194,29,children,1241261573 +153194,29,dark fantasy,1241261568 +153194,29,dystopia,1241261552 +153194,29,Jean-Pierre Jeunet,1241261551 +153194,29,steampunk,1241261556 +153194,29,stylized,1241261580 +153194,29,surreal,1241261558 +153194,29,visually appealing,1241261562 +153194,29,whimsical,1241261564 +153194,1089,cult film,1241261351 +153194,1089,low budget,1241261344 +153194,1089,nonlinear,1241261339 +153194,1089,organized crime,1241261385 +153194,1089,Quentin Tarantino,1241261355 +153194,1089,quirky,1241261346 +153194,1089,religion,1241261347 +153194,1089,thriller,1241261363 +153194,1089,violence,1241261376 +153194,1089,visceral,1241261368 +153194,1235,Cult Classic,1241261502 +153194,1235,dark comedy,1241261491 +153194,1235,good dialogue,1241261482 +153194,1235,quirky,1241261511 +153194,1235,suicide,1241261528 +153194,1235,sweet,1241261531 +153194,1721,catastrophe,1241261875 +153194,1721,chick flick,1241261854 +153194,1721,Leonardo DiCaprio,1241261862 +153194,1721,love story,1241261858 +153194,1721,Oscar (Best Cinematography),1241261867 +153194,1721,sentimental,1241261848 +153194,3030,Akira Kurosawa,1241261619 +153194,3030,samurai,1241261641 +153194,4848,David Lynch,1241261414 +153194,4848,lesbian,1241261442 +153194,4848,mindfuck,1241261416 +153194,4848,movie business,1241261437 +153194,4848,mystery,1241261423 +153194,4848,Naomi Watts,1241261429 +153194,4848,Nudity (Full Frontal - Notable),1241261421 +153194,4848,surreal,1241261418 +153194,7934,fake documentary,1242937417 +153194,7934,parody,1242937425 +153194,7934,psychology,1242937419 +153194,7934,Woody Allen,1242937423 +153194,48780,Christian Bale,1241261893 +153194,48780,Hugh Jackman,1241261894 +153194,48780,Michael Caine,1241261896 +153194,48780,nonlinear,1241261899 +153194,48780,predictable,1241261909 +153194,48780,Scarlett Johansson,1241261962 +153194,48780,twists & turns,1241261914 +153194,49286,Cameron Diaz,1241262669 +153194,49286,Jack Black,1241262663 +153194,49286,Jude Law,1241262666 +153194,49286,Kate Winslet,1241262664 +153194,49286,Romance,1241262699 +153194,57368,city under attack,1241261820 +153194,57368,giant monster,1241261826 +153194,57368,Handycam,1241261811 +153194,57368,irritating camera work,1241261803 +153194,57368,mockumentary,1241261807 +153194,57368,New York City,1241261833 +153194,57368,shallow,1241261816 +153194,63876,biography,1241261216 +153194,63876,Emile Hirsch,1241261206 +153194,63876,gay,1241261249 +153194,63876,Gus Van Sant,1241261251 +153194,63876,James Franco,1241261274 +153205,480,action,1428908221 +153205,480,adventure,1428908221 +153205,480,sci-fi,1428908221 +153234,154,Drama,1187456073 +153234,546,Fantasy,1187455806 +153234,1078,Comedy,1187455983 +153234,1132,Drama,1187456085 +153234,1173,Drama,1187456079 +153234,1209,Western,1187456130 +153234,1350,Horror,1187455847 +153234,2116,Adventure,1187455840 +153234,2384,Children,1187455827 +153234,2389,Thriller,1187456192 +153234,2505,Thriller,1187455978 +153234,2648,Horror,1187456056 +153234,3095,Drama,1187455999 +153234,3355,Mystery,1187456122 +153234,3681,Western,1187456049 +153234,5064,Drama,1187455922 +153234,5225,Drama,1187455954 +153234,5444,Children,1187456004 +153234,6157,Action,1187455993 +153234,6385,Drama,1187456093 +153234,6953,Drama,1187455973 +153234,7160,Drama,1187456156 +153234,8957,Thriller,1187456172 +153234,30810,Adventure,1187456112 +153234,48516,Crime,1187456019 +153236,52281,zombies,1180130468 +153250,260,classic,1438821102 +153250,260,sci-fi,1438821099 +153261,260,classic sci-fi,1439764252 +153261,260,cult classic,1439764262 +153261,260,force,1439764321 +153261,260,good for kids,1439764243 +153261,260,jedi,1439764306 +153261,260,Space epic,1439764236 +153261,260,"space epic,good for kids,cult classic,sci-fi",1439764189 +153266,47,David Fincher,1324873009 +153266,70,George Clooney,1331605356 +153266,70,hostage,1331605363 +153266,70,Nudity (Topless - Brief),1331605361 +153266,70,Robert Rodriguez,1331605365 +153266,70,vampires,1331605367 +153266,327,craptacular,1331442553 +153266,327,Malcolm McDowell,1331442551 +153266,327,Naomi Watts,1331442538 +153266,327,post-apocalyptic,1331442573 +153266,327,so bad it's good,1331442564 +153266,327,stupid,1331442580 +153266,377,Keanu Reeves,1321933183 +153266,377,Sandra Bullock,1321933179 +153266,390,atmospheric,1326591980 +153266,390,campy,1326591994 +153266,390,hallucinatory,1326591990 +153266,390,sexual,1326591982 +153266,390,Tura Satana,1326591973 +153266,529,chess,1331515947 +153266,529,Joe Mantegna,1336574873 +153266,529,obvious,1331515945 +153266,529,predictable,1331515942 +153266,529,prodigy,1336574855 +153266,558,books,1336574741 +153266,558,Macaulay Culkin,1336574742 +153266,923,biopic,1408401351 +153266,924,Oscar (Best Effects - Visual Effects),1326861535 +153266,924,Stanley Kubrick,1326861527 +153266,1020,Olympics,1420388372 +153266,1035,Austria,1426973857 +153266,1035,Oscar (Best Picture),1426973864 +153266,1036,Alan Rickman,1360904491 +153266,1207,Gregory Peck,1436837237 +153266,1222,Stanley Kubrick,1386626666 +153266,1345,atmospheric,1382317842 +153266,1345,religion,1382317847 +153266,1345,Sissy Spacek,1382317862 +153266,1345,Stephen King,1382317836 +153266,1552,Nicolas Cage,1398722160 +153266,1552,unintentional comedy,1398722184 +153266,1625,atmospheric,1296407755 +153266,1625,David Fincher,1324872990 +153266,1625,mindfuck,1313501814 +153266,1625,neo-noir,1313501831 +153266,1625,suspense,1296407754 +153266,1625,twist ending,1313501782 +153266,1645,Al Pacino,1390791681 +153266,1645,Keanu Reeves,1390791665 +153266,1653,atmospheric,1445799658 +153266,1653,Ethan Hawke,1445799640 +153266,1653,Jude Law,1445799643 +153266,1653,Uma Thurman,1445799645 +153266,1682,dark comedy,1407439246 +153266,1682,dreamlike,1407439241 +153266,1682,Jim Carrey,1407439248 +153266,1682,surreal,1407439243 +153266,1704,Robin Williams,1386301721 +153266,1748,aliens,1317092578 +153266,1748,amnesia,1317092579 +153266,1748,atmospheric,1317092572 +153266,1748,dystopia,1317092574 +153266,2010,German expressionism,1394982552 +153266,2232,cult film,1325658663 +153266,2232,directorial debut,1325658661 +153266,2232,existentialism,1325658666 +153266,2232,innovative,1325658690 +153266,2232,low budget,1325658673 +153266,2232,mathematics,1325658668 +153266,2232,nihilism,1325658649 +153266,2232,psychological,1325658641 +153266,2275,bad ending,1365390754 +153266,2275,post-apocalyptic,1365390727 +153266,2329,confrontational,1331523405 +153266,2329,Edward Norton,1331523398 +153266,2329,Nazis,1331523407 +153266,2329,Nudity (Topless),1331523434 +153266,2329,powerful ending,1331523397 +153266,2329,prison,1331523408 +153266,2329,racism,1331523419 +153266,2329,skinhead,1331523427 +153266,2329,tense,1331523420 +153266,2329,thought-provoking,1331523424 +153266,2431,cheesy,1409255767 +153266,2431,overly sentimental,1409255770 +153266,2431,Philip Seymour Hoffman,1409255762 +153266,2431,unfunny,1409255772 +153266,2495,atmospheric,1326951317 +153266,2495,Cold War allegory,1326951346 +153266,2495,Dreamlike,1326951306 +153266,2495,psychedelic,1326951355 +153266,2495,Social Commentary,1326951327 +153266,2495,Surreal,1326951305 +153266,2495,surrealism,1326951366 +153266,2495,Trippy,1326951358 +153266,2495,Visual Hallucination,1326951324 +153266,2563,Nudity (Topless),1368906471 +153266,2563,Period piece,1368906473 +153266,2563,Venice,1368906475 +153266,2572,Heath Ledger,1434890496 +153266,2572,Joseph Gordon-Levitt,1434890500 +153266,2712,dreamlike,1386626622 +153266,2712,enigmatic,1386626624 +153266,2712,Stanley Kubrick,1386626627 +153266,2712,Tom Cruise,1386626628 +153266,2718,Amy Adams,1408401267 +153266,2718,black comedy,1408401266 +153266,2718,Kirsten Dunst,1408401263 +153266,2871,rape,1389238494 +153266,2871,survival,1389238513 +153266,2959,atmospheric,1327087993 +153266,2959,Brad Pitt,1327087988 +153266,2959,dark comedy,1327087995 +153266,2959,Edward Norton,1327087991 +153266,2959,insomnia,1327088004 +153266,2959,philosophy,1327087997 +153266,2959,surreal,1327088001 +153266,2959,twist ending,1327087999 +153266,3054,pokemon,1326672807 +153266,3275,Nudity (Topless),1328584362 +153266,3275,siblings,1328584355 +153266,3275,stylized,1328584353 +153266,3275,vigilante,1328584372 +153266,3275,vigilantism,1328584370 +153266,3275,Willem Dafoe,1328584369 +153266,3476,flashbacks,1313721182 +153266,3476,multiple realities,1313721192 +153266,3476,surreal,1313721196 +153266,3476,twist downer ending,1313721188 +153266,3499,James Caan,1323141751 +153266,3499,Oscar (Best Actress),1323141748 +153266,3499,Stephen King,1323141741 +153266,3499,tense,1323141730 +153266,3499,tension,1323141754 +153266,3499,thriller,1323141732 +153266,3565,Natalie Portman,1416608154 +153266,3676,atmospheric,1360111310 +153266,3676,black and white,1360111314 +153266,3676,David Lynch,1360111312 +153266,3676,surreal,1360111321 +153266,3698,Arnold Schwarzenegger,1313294968 +153266,3698,dystopic future,1313294971 +153266,3698,Stephen King,1313294974 +153266,3698,wrongful imprisonment,1313294988 +153266,3863,atmospheric,1381206597 +153266,3863,dark,1381206611 +153266,3863,dreamlike,1381206604 +153266,3863,dreams,1381206600 +153266,3863,H.R. Giger,1382317913 +153266,3863,surreal,1381206603 +153266,3945,Fucking Digimon,1322436977 +153266,3994,atmospheric,1313382037 +153266,3994,Bruce Willis,1313382035 +153266,3994,comics,1313382051 +153266,3994,father-son relationship,1313382040 +153266,3994,M. Night Shyamalan,1313382032 +153266,3994,mindfuck,1313382042 +153266,3994,Samuel L. Jackson,1313382034 +153266,3994,superhero,1313382047 +153266,3994,twist ending,1313382044 +153266,3994,unique,1313382056 +153266,3997,so bad it's good,1300642774 +153266,4011,Brad Pitt,1326079983 +153266,4011,comedy,1326080009 +153266,4011,dark comedy,1326079996 +153266,4011,ensemble cast,1326079998 +153266,4011,Jason Statham,1326079986 +153266,4011,multiple storylines,1326079994 +153266,4090,sentient machine,1336934512 +153266,4441,Bruce Lee,1312695757 +153266,4441,Brucesploitation,1312695814 +153266,4441,exploitation,1312695772 +153266,4441,unintentional comedy,1312695754 +153266,4641,based on a comic,1331515028 +153266,4641,bittersweet,1331515024 +153266,4641,coming of age,1331515026 +153266,4641,dark comedy,1331515023 +153266,4641,depressing,1331515491 +153266,4641,indie,1331515021 +153266,4641,reflective,1331515495 +153266,4641,Scarlett Johansson,1331515020 +153266,4641,suburbia,1331515496 +153266,4680,Nicolas Cage,1391308768 +153266,4680,outlandish,1391308772 +153266,4680,overacting,1391308789 +153266,4816,ben stiller,1325735555 +153266,4816,blue steel,1325735921 +153266,4816,David Bowie,1325735550 +153266,4816,group sex,1325735566 +153266,4878,atmospheric,1313981317 +153266,4878,dreamlike,1313981319 +153266,4878,great soundtrack,1313981337 +153266,4878,mental illness,1313981335 +153266,4878,music,1313981339 +153266,4878,psychological,1313981331 +153266,4878,superhero,1328081990 +153266,4878,time travel,1313981327 +153266,4878,twist ending,1313981329 +153266,5266,David Fincher,1326168597 +153266,5266,Jodie Foster,1326168599 +153266,5266,Kristen Stewart,1326168601 +153266,5502,Alien Invasion,1325819456 +153266,5502,aliens,1325819459 +153266,5502,M. Night Shyamalan,1325819443 +153266,5502,Mel Gibson,1325819465 +153266,5502,plot holes,1325819441 +153266,5502,ridiculous,1325819447 +153266,5502,silly,1325819449 +153266,5564,generic,1341783216 +153266,5564,hot pool scene,1341783241 +153266,5564,predictable,1341783225 +153266,5564,rip off,1341783211 +153266,5629,Bible,1415728666 +153266,5989,Leonardo DiCaprio,1388718857 +153266,6218,Keira Knightley,1426337476 +153266,6218,love,1426337469 +153266,6264,Aaron Eckhart,1400889501 +153266,6264,bad science,1400889546 +153266,6264,so bad it's funny,1400889675 +153266,6350,Hayao Miyazaki,1406676885 +153266,6350,robots,1406676893 +153266,6350,steampunk,1406676894 +153266,6350,Studio Ghibli,1406676888 +153266,6753,Haley Joel Osment,1399854381 +153266,6753,Michael Caine,1399854370 +153266,6753,unique,1399854374 +153266,6942,Keira Knightley,1419210418 +153266,6942,Nudity (Topless),1419210423 +153266,6942,quirky,1419210446 +153266,6966,Sam Raimi,1387073693 +153266,6966,stylized,1387073765 +153266,7022,based on a book,1336704504 +153266,7022,dystopia,1336704494 +153266,7022,island,1336704501 +153266,7022,Japan,1336704487 +153266,7254,alternate reality,1313382013 +153266,7254,child abuse,1313382002 +153266,7254,math,1313382017 +153266,7254,Mystery,1313382014 +153266,7254,Nudity (Full Frontal),1313381998 +153266,7254,psychology,1313381992 +153266,7254,romance,1313382006 +153266,7254,sci-fi,1313382011 +153266,7254,time travel,1313381993 +153266,7254,twist ending,1313382009 +153266,7351,pop art,1350080653 +153266,7482,bad acting,1336698885 +153266,7482,Bruce Lee,1336698875 +153266,7482,Nudity (Topless),1336698878 +153266,7993,art,1328159924 +153266,7993,beatnick culture,1328159896 +153266,7993,low budget,1328159913 +153266,7993,satire,1328159891 +153266,7993,so bad it's good,1328159904 +153266,8366,evangelicalism,1397345007 +153266,8366,Macaulay Culkin,1397345011 +153266,8366,religious satire,1397345014 +153266,8641,Ben Stiller,1323205633 +153266,8641,hilarious,1323205621 +153266,8641,Steve Carell,1323205616 +153266,8641,Vince Vaughn,1323205650 +153266,8641,Will Ferrell,1323205601 +153266,8783,M. Night Shyamalan,1341048659 +153266,8783,Sigourney Weaver,1341048672 +153266,8783,small town,1341048682 +153266,8783,surprise ending,1341048684 +153266,8783,twist ending,1341048687 +153266,8811,predictable,1326672782 +153266,8811,Yu-Gi-Oh!,1326672767 +153266,8974,David Hasselhoff,1360896262 +153266,25771,classic,1326951511 +153266,25771,Dali,1326951493 +153266,25771,Luis Buñuel,1326951480 +153266,25771,mindfuck,1326951484 +153266,25771,Nudity (Topless),1326951486 +153266,25771,salvador dali,1326951491 +153266,25771,short,1326951504 +153266,25771,surreal,1326951495 +153266,25771,surrealism,1326951487 +153266,26810,tense,1381592978 +153266,26810,uncomfortable,1381592997 +153266,27847,artificial intelligence,1342819107 +153266,27847,chess,1342819092 +153266,27847,Garry Kasparov,1342819102 +153266,30905,art,1323231194 +153266,30905,corruption,1323231192 +153266,30905,graffiti,1323231159 +153266,30905,overly dramatic,1323231166 +153266,30905,police brutality,1323231185 +153266,31649,aestheticism,1329270718 +153266,31649,architecture,1329270728 +153266,31649,art history,1329270711 +153266,31649,boring,1329270823 +153266,31649,degenerate art,1329270781 +153266,31649,dry,1329270804 +153266,31649,Entartete Kunst,1329270796 +153266,31649,Holocaust,1329270769 +153266,31649,Nazi Germany,1329270754 +153266,31649,Nazis,1329270754 +153266,31649,slow paced,1329270814 +153266,31649,WWII,1329270733 +153266,31685,Amber Valletta,1428763258 +153266,31685,Eva Mendes,1428763264 +153266,31685,Kevin James,1428763257 +153266,31685,Will Smith,1428763269 +153266,33004,post-apocalyptic,1326606383 +153266,33004,Zooey Deschanel,1326606379 +153266,34162,Christopher Walken,1364532414 +153266,34162,Nudity (Topless),1364532417 +153266,34162,Owen Wilson,1364532427 +153266,34162,stereotypes,1364532420 +153266,34162,Will Ferrell,1364532423 +153266,34319,Michael Bay,1407645141 +153266,34319,Scarlett Johansson,1407645125 +153266,34319,Sean Bean,1407645155 +153266,34323,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1329020311 +153266,34323,Kind of disappointing,1329020324 +153266,34323,overrated,1329020320 +153266,34323,Rob Zombie,1329020314 +153266,34323,talentless,1329020317 +153266,40422,Christopher Lee,1370403024 +153266,40422,vampires,1370403028 +153266,40629,Keira Knightley,1425558117 +153266,41285,Scarlett Johansson,1369544591 +153266,41285,thrilling,1369544593 +153266,41285,Woody Allen,1369544597 +153266,41573,Claire Danes,1448906219 +153266,41573,Sarah Jessica Parker,1448906222 +153266,45081,atmospheric,1312695565 +153266,45081,Bechdel Test:Pass,1334715396 +153266,45081,cinematography,1312695569 +153266,45081,dark,1310172556 +153266,45081,disturbing,1310172555 +153266,45081,tense,1310172555 +153266,45730,disappointing,1326260863 +153266,45730,faerie tale,1326260888 +153266,45730,fairy tale,1326260867 +153266,45730,far fetched,1326260865 +153266,45730,legend,1326260881 +153266,45730,M. Night Shyamalan,1326260868 +153266,45730,stupid,1326260897 +153266,45730,what the fuck did i just watch,1326421181 +153266,45730,what the hell was that?,1326260871 +153266,46967,Scarlett Johansson,1313415420 +153266,48780,atmospheric,1313382527 +153266,48780,batman,1313382530 +153266,48780,Christopher Nolan,1313382753 +153266,48780,complicated,1313382525 +153266,48780,dark,1313382521 +153266,48780,Nicola Tesla,1313382553 +153266,48780,Scarlett Johansson,1313382513 +153266,48780,steampunk,1313382517 +153266,48780,teleportation,1313382519 +153266,48780,twist ending,1313382515 +153266,48780,wolverine,1313382540 +153266,49272,bittersweet,1357435345 +153266,49272,gambling,1357435313 +153266,49272,poker,1357435322 +153266,49286,better than expected,1417929478 +153266,49286,Jude Law,1417929473 +153266,49286,switching places,1417929483 +153266,51540,bad ending,1326430157 +153266,51540,based on a true story,1326430176 +153266,51540,crime,1326430180 +153266,51540,David Fincher,1326430153 +153266,51540,detective,1326430173 +153266,51540,investigative journalism,1326430170 +153266,51540,Jake Gyllenhaal,1326430151 +153266,51540,long,1326430182 +153266,51540,Robert Downey Jr.,1326430149 +153266,51540,slow,1326430160 +153266,51540,stylized,1326430186 +153266,51540,Too long,1326430161 +153266,51540,unresolved,1326430165 +153266,52245,figure skating,1325993055 +153266,52245,ice skating,1325993057 +153266,52245,Jon Heder,1325993050 +153266,52245,Will Ferrell,1325993048 +153266,52435,Christmas,1337201129 +153266,52435,classic,1337201133 +153266,52435,Dr. Seuss,1337201126 +153266,52435,Max The Dog,1337201137 +153266,52435,short,1337201141 +153266,53460,fun,1426845657 +153266,53460,Jeff Bridges,1426845614 +153266,53460,mockumentary,1426845617 +153266,53460,penguins,1426845619 +153266,53460,positive,1426845650 +153266,53460,Shia LaBeouf,1426845622 +153266,53460,Zooey Deschanel,1426845624 +153266,53498,clueless trucker,1324631082 +153266,53498,conceited art critics,1324631140 +153266,53498,Jackson Pollock,1324631064 +153266,54256,Andy Samberg,1362203572 +153266,54256,cool beans,1362203584 +153266,54256,future cult classic,1362203598 +153266,54256,nonsensical,1362203627 +153266,55280,boring,1331784803 +153266,55280,delusion,1331784790 +153266,55280,mental illness,1331784795 +153266,55280,small town,1331784799 +153266,55280,weird,1331784800 +153266,55687,art,1334375461 +153266,55687,child prodigy,1334375473 +153266,55687,dull,1334375495 +153266,55687,fraud,1334375463 +153266,55687,media,1334375484 +153266,55687,opportunism,1334375482 +153266,55687,painting,1334375467 +153266,55687,stage parents,1334375468 +153266,55908,Excellent use of dialogue,1386994320 +153266,58627,hollywood cheese,1316923546 +153266,58627,martial arts,1316923527 +153266,58627,plot holes,1316923535 +153266,59126,unfunny,1381799430 +153266,59336,abrupt end,1364191161 +153266,59336,illogical,1364191174 +153266,59336,martial arts,1364191165 +153266,59336,Tim Allen,1364191168 +153266,59336,unexpected ending,1364191180 +153266,60037,bad ending,1337395873 +153266,60037,M. Night Shyamalan,1337395861 +153266,60037,weak dialogue,1337395868 +153266,60037,weak story,1337395867 +153266,60037,weak writing,1337395865 +153266,60037,Zooey Deschanel,1337395863 +153266,60941,Bradley Cooper,1404518264 +153266,60941,Vinnie Jones,1404518263 +153266,60979,Batman,1373074799 +153266,60979,good animation,1373074797 +153266,60979,no overarching plot,1373074793 +153266,61240,atmospheric,1351476408 +153266,61240,bittersweet,1351476413 +153266,61240,coming of age,1351476415 +153266,61240,swedish,1351476417 +153266,61240,vampires,1351476419 +153266,61262,Epic Ending,1330098806 +153266,61262,Kiefer Sutherland,1330098802 +153266,61262,Nudity (Topless),1330098809 +153266,61262,Schizophrenia,1330098812 +153266,62434,Nudity (Topless),1316208405 +153266,63113,Daniel Craig,1357706357 +153266,63113,plot,1357706370 +153266,63113,rape,1357706362 +153266,63276,badass,1313295246 +153266,63276,badasses everywhere,1313295242 +153266,63276,cinematography,1311344671 +153266,63276,earning respect,1313295227 +153266,63276,gangs,1311344671 +153266,63276,japan,1311344671 +153266,63276,violent youth,1313295221 +153266,63276,yakuza,1313295231 +153266,64030,assassins,1372436666 +153266,64030,cars,1372436664 +153266,64030,generic,1372436646 +153266,64030,Jason Statham,1372436654 +153266,64030,killer as protagonist,1372436652 +153266,64030,unrealistic,1372436656 +153266,64032,Reese Witherspoon,1418438014 +153266,64575,implicit,1415463963 +153266,64575,moral ambiguity,1415463952 +153266,64575,Philip Seymour Hoffman,1415463938 +153266,64575,thought-provoking,1415463946 +153266,65230,Owen Wilson,1401494884 +153266,65882,Emily Browning,1329682384 +153266,65882,mental illness,1329682390 +153266,65882,psychological,1329682382 +153266,65882,schizophrenia,1329682388 +153266,65882,Twist Ending,1329682386 +153266,66130,unintentionally funny,1405396525 +153266,66934,anti-hero,1336874667 +153266,66934,bittersweet,1336874665 +153266,66934,horses,1336877598 +153266,66934,Joss Whedon,1336877573 +153266,66934,Neil Patrick Harris,1336874646 +153266,66934,sad ending,1336874654 +153266,66934,short,1336874661 +153266,67255,Nudity (Topless - Notable),1324611146 +153266,68519,crappy sequel,1313981354 +153266,68519,Donnie Darko,1313981355 +153266,68519,Time travel,1313981356 +153266,68952,funny,1346468324 +153266,68952,Physical conditions subtext,1346468359 +153266,68952,Sam Raimi,1346468320 +153266,68954,bittersweet,1322443034 +153266,68954,romance,1322443055 +153266,68954,tragedy,1322443027 +153266,68954,unnecessarily evil villain,1322444012 +153266,69757,artistic,1331504154 +153266,69757,depressing,1331504179 +153266,69757,great soundtrack,1331504159 +153266,69757,jospeh gorden-levitt,1331504169 +153266,69757,meaning of love,1331504163 +153266,69757,no happy ending,1331504161 +153266,69757,Zooey Deschanel,1331504150 +153266,70946,Oh My Goood!,1313901933 +153266,71838,ending kinda ruined it,1330003555 +153266,71838,predictable ending,1330003559 +153266,71838,unrealistic,1330003561 +153266,72672,cinematography,1311344704 +153266,72672,fights,1311344704 +153266,72672,gangs,1311344704 +153266,72672,violence,1311344704 +153266,72672,yakuza,1311344704 +153266,73321,badass blind man,1313295079 +153266,73321,Bible,1313295028 +153266,73321,books,1313295065 +153266,73321,Christianity,1313295033 +153266,73321,dystopia,1313295041 +153266,73321,dystopic future,1313295038 +153266,73321,genesis,1313295098 +153266,73321,post-apocalyptic,1313295036 +153266,73321,rebuilding society,1313295090 +153266,73321,thought-provoking,1313295047 +153266,73321,twist ending,1313295035 +153266,74754,acting,1321508378 +153266,74754,cult film,1312687107 +153266,74754,extended sex scene,1321508385 +153266,74754,flabby ass,1312687162 +153266,74754,nonsensical,1312687208 +153266,74754,so bad it's good,1312687111 +153266,74754,terrible acting,1312687102 +153266,74754,Tommy Wiseau,1312687124 +153266,74754,unintentional comedy,1312687098 +153266,74754,you're tearing me apart lisa,1312687159 +153266,76093,dragons,1408462767 +153266,76175,Greek mythology,1379389903 +153266,76175,Liam Neeson,1379389897 +153266,76175,predictable,1379389914 +153266,77416,exploitation,1318992289 +153266,77416,nudity (topless),1318992265 +153266,77416,rape,1320036684 +153266,77416,women in prison,1318992269 +153266,77427,bad acting,1329848733 +153266,77427,disturbing,1329848739 +153266,77427,illogical,1329848730 +153266,77427,science project,1329848743 +153266,77455,art,1323224972 +153266,77455,Banksy,1323224961 +153266,77455,betrayal,1323224994 +153266,77455,business,1323224974 +153266,77455,marketing,1323224977 +153266,77455,sellout,1323224998 +153266,77455,Shepard Fairey,1323224963 +153266,77455,Thierry Guetta,1323224982 +153266,77893,bad ending,1405304536 +153266,77893,cinematography,1405304577 +153266,77893,martial arts,1405304547 +153266,77893,sacrifice,1405304569 +153266,78746,Claudio Fragasso being butthurt,1313901986 +153266,78746,Troll 2,1313901993 +153266,79274,antihero,1363227200 +153266,79274,Batman,1363227219 +153266,79274,revenge,1363227213 +153266,79274,sympathetic villain,1363227197 +153266,79293,Angelina Jolie,1335150988 +153266,79293,bad ending,1335151026 +153266,79879,tits,1360896319 +153266,80185,geology,1389238450 +153266,80463,David Fincher,1324873072 +153266,80549,Amanda Bynes,1360896334 +153266,80549,Emma Stone,1360896327 +153266,80693,depression,1357019253 +153266,80693,Emma Roberts,1357019244 +153266,80693,manic pixie dream girl,1357019357 +153266,80693,suicide,1357019268 +153266,80693,Zach Galifianakis,1357019248 +153266,80846,amazing premise,1333819212 +153266,80846,bad execution,1333819220 +153266,80846,excellent cinematography,1333819250 +153266,80846,good acting,1333819186 +153266,80846,M. Night Shyamalan,1333819234 +153266,80846,plot twist,1333819194 +153266,81782,Denzel Washington,1408840811 +153266,81782,family issues,1408840805 +153266,81782,mundane,1408840821 +153266,81845,oscar bait,1336175620 +153266,84414,bad adaptation,1388031928 +153266,84414,based on a comic book,1388031885 +153266,84414,good ending,1388031880 +153266,84414,superman,1388031902 +153266,84601,Diane Kruger,1407630839 +153266,84601,January Jones,1407630852 +153266,84601,Liam Neeson,1407630841 +153266,84942,Nicolas Cage,1356889412 +153266,84942,unintentional comedy,1356889456 +153266,85056,based on a book,1397863218 +153266,85056,bland hero,1397863202 +153266,85056,cheesy,1397863222 +153266,85056,cliche,1397863227 +153266,85056,plot,1397863232 +153266,85056,plot holes,1397863234 +153266,86190,beautiful cinematography,1388879149 +153266,86190,Germany,1388879153 +153266,86190,surrealism,1388879155 +153266,86293,Russell Brand,1430789502 +153266,86295,Bechdel Test:Pass,1328489325 +153266,86295,genre spoof,1328489332 +153266,86295,slasher,1328489336 +153266,86295,unpredictable ending,1328489329 +153266,86295,Wes Craven,1328489327 +153266,86295,witty,1328489330 +153266,86548,Christoph Waltz,1433083053 +153266,86548,Robert Pattinson,1433083057 +153266,86833,baking,1326346055 +153266,86833,Bechdel Test: pass,1326346037 +153266,86833,Bechdel Test:Pass,1326346053 +153266,86833,clever script,1326346073 +153266,86833,comedy,1326346071 +153266,86833,female driven comedy,1326346007 +153266,86833,flawed characters,1326346002 +153266,86833,good soundtrack,1326345999 +153266,86833,poop humor,1326345995 +153266,86833,unlikeable characters,1326345988 +153266,86833,watch the credits,1326346063 +153266,87028,design,1330232087 +153266,87028,fashion school,1330232083 +153266,87028,lesbian subtext,1330232076 +153266,87028,predictable,1330232100 +153266,87028,stalker,1330232073 +153266,88129,atmospheric,1360476611 +153266,88129,cinematography,1360476613 +153266,88129,neo-noir,1360476631 +153266,88129,Nudity (Topless),1360476614 +153266,88129,Ron Perlman,1360476616 +153266,88812,abrupt ending,1357964761 +153266,88812,disappointing,1357964728 +153266,88812,Nudity (Topless),1357964732 +153266,88812,story,1357964739 +153266,88954,Neil Patrick Harris,1321313229 +153266,88954,Nudity (Topless - Notable),1321313232 +153266,89028,folklore,1330142665 +153266,89028,Guillermo del Toro,1330142634 +153266,89028,remake,1330142641 +153266,89102,informative,1350421585 +153266,89275,Crispin Glover,1314718762 +153266,89275,nonsensical,1314718947 +153266,89275,pothead,1314718963 +153266,89275,Scooby-Doo,1314718973 +153266,89275,terrible acting,1314718708 +153266,89275,unintentional comedy,1314718750 +153266,89277,atmospheric,1314718841 +153266,89277,bad adaptation,1314718879 +153266,89277,based on a book,1315258230 +153266,89277,Canadian,1314718795 +153266,89277,cinematography so bad it hurts,1314718824 +153266,89277,H.P. Lovecraft,1314718787 +153266,89277,Photoshop Fire,1314757979 +153266,89277,so bad it's good,1314718801 +153266,89277,terrible cinematography,1314718814 +153266,89745,Iron Man,1336673912 +153266,89745,joss whedon,1336673904 +153266,89745,Scarlett Johansson,1336673907 +153266,89745,sure thing,1336673941 +153266,89846,Bobby Fischer,1342819134 +153266,89846,chess,1342819138 +153266,89864,cute psychiatrist,1322542750 +153266,90405,amazing premise,1321065838 +153266,90405,justice,1321065831 +153266,90873,gang bang,1320803586 +153266,90873,Linda Blair,1320803577 +153266,90873,Nudity (Topless),1320803571 +153266,90873,Protagonist turns into a killer,1321869820 +153266,90873,rape,1320803572 +153266,91488,Christmas movie,1323069390 +153266,91488,Christmas Special,1323069395 +153266,91488,David Bowie,1323069405 +153266,91488,Singing,1323069412 +153266,91490,boobs,1323069587 +153266,91490,cheesy,1323069562 +153266,91490,fucking sharktopus,1323069569 +153266,91490,Horrible acting,1323069603 +153266,91490,octopus,1323069583 +153266,91490,sharks,1323069579 +153266,91490,so bad it's good,1323069542 +153266,91500,child killing,1345405105 +153266,91500,dialogue,1345405122 +153266,91500,dystopia,1345405096 +153266,91500,Jennifer Lawrence,1345405090 +153266,91535,Edward Norton,1356928142 +153266,91535,Jeremy Renner,1356928146 +153266,91535,Shaky cam,1356928148 +153266,91658,based on a book,1324611071 +153266,91658,dark,1335327364 +153266,91658,David Fincher,1324611065 +153266,91658,feminism,1335327333 +153266,91658,hacking,1335327350 +153266,91658,long,1335327346 +153266,91658,rape,1324611164 +153266,91658,remake,1335327358 +153266,91658,Rooney Mara,1335327324 +153266,91658,serial killer,1335327337 +153266,91658,suspense,1324611161 +153266,91976,depressing,1356912529 +153266,91976,gritty,1356912525 +153266,91976,Liam Neeson,1356912507 +153266,91976,life & death,1356912520 +153266,91976,man vs. nature,1356912523 +153266,91976,overdramatic,1356912497 +153266,92214,made for TV,1325803347 +153266,92214,Rutger Hauer,1325803311 +153266,92214,slow pacing,1325803270 +153266,92214,way too long,1325803334 +153266,92509,amnesia,1388032000 +153266,92509,ending kinda ruined it,1388032016 +153266,92509,no sense ending,1388032014 +153266,92509,plot,1388032010 +153266,92509,Rachel McAdams,1388032004 +153266,92511,B-movie,1377614908 +153266,92511,Kristy Swanson,1377614980 +153266,92511,shark week,1377614914 +153266,93139,bad acting,1330402894 +153266,93139,fucking megashark,1330402888 +153266,93139,Roger Corman,1330402873 +153266,93139,so bad it's good,1330402862 +153266,93142,mutants,1330403061 +153266,93142,prequel,1330403043 +153266,93142,slasher,1330403050 +153266,93242,conspiracy,1343502843 +153266,93242,horrible climax,1343502836 +153266,93242,revenge,1343502846 +153266,93242,vigilante,1343502848 +153266,93676,art,1332870821 +153266,93676,art school,1332870844 +153266,93676,compilation,1332870827 +153266,93676,discrimination,1332870833 +153266,93676,feminism,1332870813 +153266,93676,feminist art,1332870817 +153266,93721,Japan,1453690712 +153266,93721,minimalist,1453690710 +153266,93721,sushi,1453690706 +153266,93740,Emily Blunt,1426337423 +153266,93740,Ewan McGregor,1426337362 +153266,93838,awesome martial arts,1405286603 +153266,93838,loud,1405287752 +153266,93838,martial arts,1405286605 +153266,93838,minimal plot,1405286615 +153266,93838,thin plot,1405286608 +153266,93840,ancient gods,1335323816 +153266,93840,meta,1335323822 +153266,93840,original plot,1335323818 +153266,94070,bittersweet,1356645057 +153266,94070,India,1356645070 +153266,94070,Maggie Smith,1356645078 +153266,94070,Old age,1356645060 +153266,94070,predictable,1356645065 +153266,95875,Nudity (Topless),1357175408 +153266,95875,Philip K. Dick,1357175411 +153266,95875,pointless remake,1357175426 +153266,95875,predictable,1357175416 +153266,96079,Daniel Craig,1357427646 +153266,96079,dark,1357427661 +153266,96079,Javier Bardem,1357427641 +153266,96252,Bruce Lee,1345041535 +153266,96252,Kobe Bryant,1345041558 +153266,96252,Mickey Rourke,1345041539 +153266,96252,MMA,1345041541 +153266,96286,Bruce Lee,1345235448 +153266,96286,Jackie Chan,1345235474 +153266,96448,bad script,1360896310 +153266,96448,horrible,1360896299 +153266,96448,nudity (topless),1419012211 +153266,96588,Anna Kendrick,1355546578 +153266,96588,cleavage,1355546584 +153266,96612,psychology,1358644570 +153266,96612,true story,1358644575 +153266,96737,cinematography,1368760402 +153266,96821,bittersweet,1357184541 +153266,96821,coming of age,1357184527 +153266,96821,Emma Watson,1357184519 +153266,96821,relatable,1357184532 +153266,97059,Katy Perry,1349140654 +153266,97059,publicity stunt,1349140670 +153266,97311,abrupt ending,1392832031 +153266,97311,Olivia Wilde,1392832024 +153266,97548,art,1350413523 +153266,97548,dark,1350413630 +153266,97548,disturbing images,1350413622 +153266,97548,dull narration,1350413564 +153266,97548,H.R. Giger,1350413517 +153266,97548,obnoxious audio,1350414822 +153266,97548,production values,1350413557 +153266,97785,Adelaide Clemens,1358744414 +153266,97785,atmosphere,1358744399 +153266,97785,based on a video game,1358744411 +153266,97913,Sarah Silverman,1359958068 +153266,97913,watch the credits,1359958067 +153266,97950,RZA,1359438103 +153266,97950,story,1359437990 +153266,97950,terrible dialogue,1359437981 +153266,98124,frank miller,1362970830 +153266,98124,gritty,1362970839 +153266,99007,cured by love/hope,1374112072 +153266,99007,self-aware,1374112127 +153266,99007,sweet,1374112109 +153266,99058,depressing,1357529346 +153266,99058,no plot,1357529380 +153266,99058,suprisingly good performances,1357529367 +153266,99058,Tim Heidecker,1357529358 +153266,99058,unbelievably sad,1357529424 +153266,99101,Introspection,1356058674 +153266,99101,metaphor,1356058703 +153266,99101,Mood Whiplash,1356058631 +153266,99101,nonsensical plot,1356058668 +153266,99101,surreal,1356210266 +153266,99114,bad physics,1358317493 +153266,99114,Christoph Waltz,1358317486 +153266,99114,Jamie Foxx,1358317488 +153266,99114,Over the top,1358317514 +153266,99149,1800s,1356645454 +153266,99149,19th century,1356645450 +153266,99149,Anne Hathaway,1356645460 +153266,99149,Hugh Jackman,1356645438 +153266,99149,Russell Crowe,1356645441 +153266,99149,Victor Hugo,1356645443 +153266,99180,game industry,1356295635 +153266,99180,Minecraft,1356295638 +153266,99180,slice of life,1356295668 +153266,99180,Sweden,1356295651 +153266,99317,Christmas,1356645389 +153266,99317,cliche,1356645404 +153266,99317,made for TV,1356645384 +153266,99317,predictable,1356645371 +153266,99317,switching places,1356645371 +153266,99748,fighting game,1357968318 +153266,99748,Street Fighter,1357968313 +153266,99750,Michael Shannon,1379898716 +153266,99750,violence,1379898697 +153266,99813,batman,1362970848 +153266,99813,bittersweet,1362970854 +153266,99813,brutal,1362970875 +153266,99813,gritty,1362970880 +153266,99813,nuclear war,1362970861 +153266,99813,superman,1362970869 +153266,100013,bittersweet,1358828785 +153266,100013,inspirational,1358828752 +153266,100013,Marty Friedman,1358828764 +153266,100013,music,1358828758 +153266,100013,tragic,1358828790 +153266,100507,college,1371863661 +153266,100507,crude humor,1371863658 +153266,100507,predictable,1371863655 +153266,101285,black comedy,1375752912 +153266,101285,James Franco,1375752915 +153266,101285,Nudity (Topless),1375752907 +153266,101285,repetition,1375752924 +153266,101285,satire,1375752920 +153266,101285,twist ending,1375752918 +153266,101360,ending,1374208608 +153266,101360,ending kinda ruined it,1372628610 +153266,101360,serial killer,1372628591 +153266,101360,third act,1372628619 +153266,101525,ambitious,1378306539 +153266,101525,Bradley Cooper,1378306525 +153266,101525,corrupt cops,1378306531 +153266,101525,Ryan Gosling,1378306516 +153266,101864,atmospheric,1377796447 +153266,101864,cloning,1377796471 +153266,101864,convoluted,1377796463 +153266,101864,Morgan Freeman,1377796445 +153266,101864,nonsensical,1377796479 +153266,101864,post-apocalyptic,1377796440 +153266,102033,Dwayne Johnson,1386984591 +153266,102033,Michael Bay,1386984586 +153266,102033,tragic events as comedy,1386984581 +153266,102084,Batman,1372996867 +153266,102084,too short,1372996890 +153266,102123,Emma Watson,1380330096 +153266,102123,James Franco,1380330082 +153266,102123,preachy,1380330061 +153266,102123,religion,1380330074 +153266,102407,beautiful,1388895615 +153266,102407,Carey Mulligan,1388895612 +153266,102407,cinematography,1388895617 +153266,102407,Leonardo DiCaprio,1388895604 +153266,102407,stylized,1388895606 +153266,102684,beautifully filmed,1374636729 +153266,102684,ending,1374636739 +153266,102684,overdone,1374636725 +153266,102684,ultra-violence,1374636732 +153266,103042,contrived romance,1378497482 +153266,103042,product placement,1378497488 +153266,103042,unengaging,1378497504 +153266,103042,visually appealing,1378497475 +153266,103042,Zack Snyder,1378497493 +153266,103075,interesting concept,1380938081 +153266,103075,wasted potential,1380938095 +153266,103228,aliens,1374636679 +153266,103228,cinematography,1374636666 +153266,103228,ending,1374636668 +153266,103228,Guillermo del Toro,1374636664 +153266,103228,Ron Perlman,1374636662 +153266,103228,subgenre:Kaiju,1374636658 +153266,103228,visually appealing,1374636683 +153266,103249,plot holes,1379740572 +153266,103454,Batman,1372987642 +153266,103454,film,1372987702 +153266,103454,psychology,1372987688 +153266,103596,B-movie,1377528470 +153266,103596,trash,1377528474 +153266,103596,unintentional comedy,1377528493 +153266,103659,barely PG-13,1377819094 +153266,103659,gritty,1377819074 +153266,103659,time travel,1377819070 +153266,103772,contrived romance,1386626698 +153266,103772,Hugh Jackman,1386626715 +153266,103772,low stakes,1386626708 +153266,103772,slow pacing,1386626700 +153266,104339,awkward romance,1392586042 +153266,104376,anime,1426463921 +153266,104376,art,1377010612 +153266,104376,based on a comic,1426463921 +153266,104376,Hiroshima,1377010621 +153266,104376,manga,1377010606 +153266,104376,WWII,1377010617 +153266,104376,Yoshihiro Tatsumi,1377010603 +153266,104841,acting,1387088012 +153266,104841,cinematography,1387088005 +153266,104841,intense,1387088018 +153266,104841,sandra bullock,1387087994 +153266,104841,Simple,1387088008 +153266,104879,absorbing,1379861724 +153266,104879,acting,1379861753 +153266,104879,bad ending,1379861748 +153266,104879,Hugh Jackman,1379861759 +153266,104879,morality,1379861740 +153266,105213,Joseph Gordon-Levitt,1388879316 +153266,105213,nontraditional,1388879335 +153266,105213,Scarlett Johansson,1388879313 +153266,105355,bittersweet,1406767576 +153266,105355,fine art,1406767585 +153266,105355,loneliness,1406767599 +153266,105355,too long,1406767570 +153266,105622,character development,1382065075 +153266,105622,gaming,1382065047 +153266,105622,geeks,1382065087 +153266,105622,hipsters,1382065058 +153266,105622,pop culture,1382065103 +153266,105622,relatable,1382065127 +153266,105622,stereotypes,1382065067 +153266,105622,unknown actors,1382065038 +153266,105731,dumbed down original,1390454565 +153266,105731,unnecessary remake,1390454579 +153266,106072,Kat Dennings,1406510279 +153266,106072,Natalie Portman,1406510241 +153266,106487,Jennifer Lawrence,1390787061 +153266,106487,social commentary,1390787064 +153266,106696,beautiful,1390787319 +153266,106696,feminist,1390787321 +153266,106696,pacing,1390787328 +153266,106696,storyline,1390787331 +153266,106895,biographical,1386382346 +153266,106895,Guillermo del Toro,1386382338 +153266,106895,Lovecraftian mythology,1386382329 +153266,106916,Christian Bale,1406904457 +153266,106916,Jennifer Lawrence,1406904451 +153266,106920,artificial intelligence,1389644843 +153266,106920,bittersweet,1389644855 +153266,106920,joaquin phoenix,1389644839 +153266,106920,transhumanism,1389644850 +153266,107304,Anime,1388173097 +153266,107304,masculinity,1388173109 +153266,107304,Mecha,1388173094 +153266,107304,willpower,1388173129 +153266,107306,anime,1388173152 +153266,107306,masculinity,1388173167 +153266,107306,willpower,1388173140 +153266,107348,Steve Carell,1396274669 +153266,107348,will ferrell,1396274673 +153266,108190,dystopia,1408840752 +153266,108190,plot holes,1408840749 +153266,108520,art,1390695487 +153266,108520,charisma,1390695518 +153266,108520,fine art,1430789666 +153266,108520,sculpture,1430789666 +153266,108520,spiders,1430789666 +153266,108729,analogue,1404231957 +153266,108729,Denis Villeneuve,1404232057 +153266,108729,Jake Gyllenhaal,1404232070 +153266,108729,mental illness,1404231969 +153266,108729,tense,1404232084 +153266,109379,chess,1436751566 +153266,110102,Scarlett Johansson,1404353631 +153266,110102,strong woman,1404353634 +153266,110553,audience intelligence underestimated,1406329210 +153266,110553,badly written,1406329214 +153266,110553,Emma Stone,1406329219 +153266,110553,heavy-handed,1406329217 +153266,111113,Zac Efron,1409023931 +153266,111362,Jennifer Lawrence,1401842058 +153266,111362,Michael Fassbender,1401842064 +153266,111759,based on a novel,1405872017 +153266,111759,Emily Blunt,1405872011 +153266,111759,ending,1405872044 +153266,111759,time loop,1405872013 +153266,112138,meta,1405481633 +153266,112556,David Fincher,1415728702 +153266,112556,Emily Ratajkowski,1415728778 +153266,112556,Infidelity,1415728794 +153266,112556,marriage,1415728751 +153266,112556,Neil Patrick Harris,1415728734 +153266,112852,all-star cast,1407439285 +153266,112852,great soundtrack,1407439269 +153266,112852,Marvel Cinematic Universe,1407439298 +153266,112852,Vin Diesel,1407439279 +153266,113225,atheism,1428692791 +153266,113225,Colin Firth,1428692776 +153266,113225,Emma Stone,1428692768 +153266,113225,magic,1428692783 +153266,113275,cross-cultural romance,1411941217 +153266,113275,France,1411941229 +153266,113275,rags to riches,1411941235 +153266,113378,artistic,1409255841 +153266,113378,cashing in,1409255874 +153266,113378,plot makes no sense,1409255851 +153266,114180,plot holes,1412948321 +153266,115414,Nicolas Cage,1427024312 +153266,115414,so bad it's bad,1427024300 +153266,115617,setting,1426709842 +153266,115617,superhero,1426709824 +153266,116161,Mark Ruffalo,1436567371 +153266,116161,wrestling,1436567379 +153266,116797,Alan Turing,1420938173 +153266,116797,homosexuality,1420938175 +153266,116887,Christian Bale,1419011938 +153266,116887,Ridley Scott,1419011936 +153266,116887,unreliable narrator,1419011954 +153266,118985,Amy Adams,1420402033 +153266,118985,Christoph Waltz,1420402043 +153266,119141,crude,1424271112 +153266,119141,seth rogan,1424271120 +153266,119141,Seth Rogen,1424271107 +153266,119145,Michael Caine,1424271197 +153266,119145,Sofia Boutella,1424271241 +153266,122886,Daisy Ridley,1452958352 +153266,122886,female protagonist,1452958356 +153266,122886,Mark Hamill,1452958358 +153266,122886,Plot Recycling,1452958366 +153266,131796,Helen Mirren,1428692687 +153266,131796,Ryan Reynolds,1428692682 +153266,136020,Christoph Waltz,1447610990 +153266,136020,Daniel Craig,1447610999 +153266,141054,IMAX,1440133459 +153266,150657,ethics,1453515804 +153266,150657,morals,1453515800 +153266,150657,parenting,1453515794 +153266,150657,questionable ethics,1453515819 +153302,277,touching classic,1189390992 +153302,1267,great classic,1189390984 +153302,2005,funny classic,1189390956 +153302,2080,sappy love story,1189390976 +153302,3755,ok drama,1189391001 +153343,7742,best movie ever,1239008497 +153343,7742,inner thoughts of a bull terrier,1216893928 +153343,7742,sentient dog,1239008249 +153357,104374,time travel,1378545715 +153398,81834,good versus evil,1437118762 +153398,81834,magic school,1437118770 +153398,81834,wizards,1437118789 +153407,1610,sean connery,1153755484 +153407,3793,wolverine,1153755504 +153421,7090,amazing photography,1175011747 +153421,27773,very hard movie,1175014038 +153425,260,action,1439497277 +153425,260,mythology,1439497288 +153425,260,robots,1439497296 +153425,260,scifi,1439497267 +153425,260,starship,1439497305 +153441,30781,eccentric,1434932233 +153441,30781,exciting,1434932233 +153441,30781,mystery,1434932233 +153441,34072,very moving,1138656566 +153441,40815,very dark - not for kids,1138656169 +153441,40962,a reasonable remake,1138656144 +153441,41566,just like the book...,1138656097 +153453,4027,coen brothers,1443972090 +153453,4027,funny,1443972087 +153453,4027,great soundtrack,1443972079 +153453,4973,beautifully filmed,1443972024 +153453,4973,France,1443972028 +153453,4973,French,1443972019 +153453,4973,great soundtrack,1443972032 +153453,109374,cinematography,1443972105 +153453,109374,quirky,1443972103 +153453,109374,visually appealing,1443972108 +153458,1342,Bees,1293494680 +153458,1342,cliché horror ending,1293494718 +153458,1342,Grimy,1293494687 +153458,1342,Grotty setting,1293494736 +153458,1342,Horror Romance,1293494718 +153458,2287,ants,1293445331 +153458,2287,Classic monster,1293445342 +153458,4101,1970s,1293494020 +153458,4101,Australian,1293494055 +153458,4101,Awesome,1293494049 +153458,4101,Awesome Soundtrack,1293494082 +153458,4101,Ballarat,1293494045 +153458,4101,Funny,1293494037 +153458,4101,Melbourne,1293494015 +153458,4101,Punk,1293494010 +153458,4101,Richmond,1293494023 +153458,5486,Boring,1293494450 +153458,5486,not funny,1293494471 +153458,5486,Tim Allen,1293494441 +153458,6701,Documentary Style,1293494195 +153458,6701,gut-wrenching story,1293494220 +153458,6701,harrowing,1293494235 +153458,6701,non-professional acting,1293494208 +153458,27772,atmospheric,1293494557 +153458,27772,better than the american version,1293494537 +153458,27772,Creepy kid,1293494579 +153458,27772,japanese horror,1293494625 +153458,27772,paranormal,1293494569 +153458,27772,paranormal horror,1293494625 +153458,27772,remade,1293494648 +153458,27772,spirits,1293494625 +153458,27904,animated,1293444677 +153458,27904,based on a book,1293444650 +153458,27904,Keanu Reeves,1293444692 +153458,27904,Philip K. Dick,1293444645 +153458,27904,surrealism,1293444670 +153458,32076,Awesome,1293494417 +153458,32076,Bad dub,1293494368 +153458,32076,Funny,1293494354 +153458,32076,Godzilla,1293494341 +153458,32076,monster fights,1293494413 +153458,32076,Monster movie,1293494341 +153458,32076,Mothra,1293494350 +153458,32076,Watch with the English dub,1293494394 +153458,39381,Australian History,1293444429 +153458,39381,Colonial,1293444434 +153458,39381,David Wenham,1293444354 +153458,39381,Flies,1293444420 +153458,39381,Gritty,1293444393 +153458,39381,nick cave,1293444361 +153458,39381,Violent,1293444438 +153458,48516,corruption,1293453400 +153458,48516,ensemble cast,1293453387 +153458,48516,gangsters,1293453391 +153458,48516,police corruption,1293453403 +153458,55820,based on a book,1293453339 +153458,55820,crime,1293453337 +153458,55820,dark,1293453316 +153458,55820,great acting,1293453305 +153458,67408,bad plot,1295773865 +153458,67408,lame,1295773868 +153458,67408,shit dialogue,1295773858 +153458,67408,uncanny valley,1295773840 +153458,78679,bdsm,1293452779 +153458,78679,Michael Winterbottom,1293452771 +153458,78679,mother-son relationship,1293452765 +153458,78679,Unsettling,1293452803 +153472,4407,El Salvador,1380692668 +153472,4655,Central America,1380692741 +153472,4655,El Salvador,1380692709 +153490,2,Robin Williams,1331352051 +153490,29,atmospheric,1331348359 +153490,29,Christmas,1331348385 +153490,29,dark fantasy,1331348361 +153490,29,dreamlike,1331348364 +153490,29,dystopia,1331348366 +153490,29,steampunk,1331348377 +153490,29,surreal,1331348368 +153490,29,visually appealing,1331348372 +153490,29,whimsical,1331348375 +153490,39,radiohead,1331290834 +153490,47,atmospheric,1331347772 +153490,47,dark,1331347777 +153490,48,Native Americans,1331348795 +153490,50,predictable ending,1331355822 +153490,111,atmospheric,1330907357 +153490,111,cult film,1330907359 +153490,111,disturbing,1330907361 +153490,111,paranoid,1330907365 +153490,158,ghosts,1331353356 +153490,199,Catherine Deneuve,1330855950 +153490,215,dialogue,1331289901 +153490,215,one day,1331289877 +153490,231,cult film,1331173042 +153490,231,road trip,1331173055 +153490,239,road trip,1331347895 +153490,253,Antonio Banderas,1331181065 +153490,253,atmospheric,1331181063 +153490,253,gothic,1331181070 +153490,253,vampires,1331181128 +153490,260,atmospheric,1330907085 +153490,260,great soundtrack,1330907089 +153490,260,space,1330907091 +153490,261,Christmas,1331180515 +153490,261,Winona Ryder,1331180503 +153490,266,Anthony Hopkins,1331182951 +153490,266,Brad Pitt,1331182961 +153490,275,annoying,1331182823 +153490,275,Christmas,1331182834 +153490,293,Jean Reno,1331177819 +153490,296,atmospheric,1331172326 +153490,296,cult film,1331172324 +153490,296,multiple storylines,1331172314 +153490,296,nonlinear,1331172312 +153490,296,Quentin Tarantino,1331172317 +153490,296,stylized,1331172321 +153490,307,atmospheric,1331182857 +153490,307,Juliette Binoche,1331182861 +153490,318,atmospheric,1331172214 +153490,318,inspirational,1331172212 +153490,318,thought-provoking,1331172202 +153490,318,twist ending,1331172207 +153490,339,Bill Pullman,1331354290 +153490,351,directorial debut,1331179797 +153490,372,Winona Ryder,1331178731 +153490,410,black comedy,1331179702 +153490,410,gothic,1331179695 +153490,410,morally counterintuitive,1331179692 +153490,441,nostalgic,1331172645 +153490,441,small town,1331172649 +153490,471,New Year's Eve,1331180949 +153490,471,snow,1331180935 +153490,480,tense,1331172559 +153490,491,directorial debut,1331177972 +153490,500,Robin Williams,1331179977 +153490,508,disease,1331183107 +153490,527,atmospheric,1331172839 +153490,527,thought-provoking,1331172845 +153490,539,Bill Pullman,1331180739 +153490,539,New York City,1331180742 +153490,551,atmospheric,1300660109 +153490,551,beautiful,1300660113 +153490,551,Christmas,1300660115 +153490,551,claymation,1300660124 +153490,551,cult film,1300660119 +153490,551,dark,1300660126 +153490,551,gothic,1300660130 +153490,551,great soundtrack,1300660189 +153490,551,halloween,1300660133 +153490,551,stop motion,1300660150 +153490,551,whimsical,1300660153 +153490,555,Dennis Hopper,1331177860 +153490,555,dialogue,1331177856 +153490,555,Quentin Tarantino,1331177848 +153490,562,adolescence,1300663027 +153490,562,disturbing,1300663034 +153490,562,indie,1300663036 +153490,562,poignant,1300663042 +153490,562,quirky,1300663046 +153490,562,unsettling,1300663049 +153490,575,nostalgic,1331178131 +153490,586,Christmas,1300660545 +153490,586,nostalgia,1300660589 +153490,587,subway,1331179856 +153490,589,dystopia,1331172407 +153490,589,future,1331172409 +153490,589,stylized,1331172411 +153490,589,time travel,1331172413 +153490,592,atmospheric,1331001621 +153490,592,tense,1331001627 +153490,593,Anthony Hopkins,1331172862 +153490,593,cannibalism,1331172864 +153490,593,gothic,1331172869 +153490,593,Jodie Foster,1331172872 +153490,593,psychological,1331172874 +153490,593,suspense,1331172877 +153490,661,claymation,1331353389 +153490,661,stop-motion,1331353384 +153490,708,Uma Thurman,1331351978 +153490,719,Michael Keaton,1331352147 +153490,735,cult film,1331172131 +153490,735,dreamlike,1331172134 +153490,735,stylized,1331172138 +153490,735,zombies,1331172136 +153490,750,Stanley Kubrick,1330853967 +153490,778,great soundtrack,1331290240 +153490,783,France,1331347956 +153490,783,Paris,1331347948 +153490,832,Lili Taylor,1331348131 +153490,858,Al Pacino,1330906818 +153490,858,atmospheric,1330906839 +153490,858,John Cazale,1330906815 +153490,858,Marlon Brando,1330906835 +153490,866,directorial debut,1331353073 +153490,866,lesbian,1331353068 +153490,866,tense,1331353077 +153490,898,Cary Grant,1330753027 +153490,898,James Stewart,1330753031 +153490,901,Audrey Hepburn,1330757067 +153490,901,Fred Astaire,1330757072 +153490,902,Audrey Hepburn,1330853657 +153490,903,Atmospheric,1330758412 +153490,903,eerie,1330758419 +153490,903,HAUNTED BY THE PAST,1330758416 +153490,903,obsession,1330758421 +153490,903,paranoid,1330758426 +153490,904,claustrophobic,1330757929 +153490,904,James Stewart,1330757927 +153490,904,tense,1330757939 +153490,907,Astaire and Rogers,1330051909 +153490,907,Eric Blore,1330051911 +153490,908,Cary Grant,1330758399 +153490,908,visually appealing,1330758403 +153490,909,Christmas,1330853249 +153490,909,Jack Lemmon,1330853243 +153490,910,Jack Lemmon,1330758214 +153490,910,Marilyn Monroe,1330758197 +153490,911,Audrey Hepburn,1330854202 +153490,911,Cary Grant,1330854204 +153490,911,surprise ending,1330854208 +153490,912,atmospheric,1330752177 +153490,912,Film Noir,1330752185 +153490,912,Ingrid Bergman,1330752208 +153490,914,Audrey Hepburn,1330855690 +153490,915,audrey hepburn,1300663082 +153490,916,Audrey Hepburn,1330757541 +153490,916,Gregory Peck,1330757545 +153490,917,Shirley Temple,1330053233 +153490,919,dreamlike,1330052226 +153490,922,atmospheric,1330757019 +153490,923,atmospheric,1330751882 +153490,924,atmospheric,1300662961 +153490,924,cult film,1300662964 +153490,924,space,1330853020 +153490,924,Stanley Kubrick,1300662971 +153490,924,surreal,1300662973 +153490,926,Bette Davis,1330758384 +153490,926,great dialogue,1330758388 +153490,928,atmospheric,1330753082 +153490,928,Gothic,1330753094 +153490,928,Laurence Olivier,1330753078 +153490,928,moody,1330753091 +153490,932,Cary Grant,1330757033 +153490,932,too long,1330757043 +153490,935,CinemaScope,1330755866 +153490,936,Greta Garbo,1330053186 +153490,937,Audrey Hepburn,1330756463 +153490,945,Astaire and Rogers,1330051603 +153490,945,Eric Blore,1330051608 +153490,945,Fred Astaire,1330051605 +153490,949,James Dean,1330756828 +153490,951,Cary Grant,1330753428 +153490,959,bad accents,1330052397 +153490,959,Bette Davis,1330052375 +153490,959,Leslie Howard,1330052384 +153490,968,bad stereotypes of women,1330855064 +153490,968,brilliant ending,1330855054 +153490,968,creepy,1330855056 +153490,968,menacing,1330855049 +153490,968,ominous,1330855041 +153490,968,paranoid,1330855043 +153490,968,visceral,1330855046 +153490,968,zombies,1330855038 +153490,986,Anna Paquin,1331353590 +153490,986,Jeff Daniels,1331353607 +153490,1023,Rain,1330853414 +153490,1025,library,1330853694 +153490,1029,elephants,1330752077 +153490,1029,social exclusion,1330752088 +153490,1032,alternate reality,1330758156 +153490,1032,dreamlike,1330758159 +153490,1032,surreal,1330758167 +153490,1032,surrealism,1330758172 +153490,1032,whimsical,1330758164 +153490,1059,great soundtrack,1331355950 +153490,1076,atmospheric,1330853599 +153490,1076,austere,1330853603 +153490,1076,eerie,1330853606 +153490,1076,gothic,1330853610 +153490,1076,haunted house,1330853613 +153490,1076,ominous,1330853616 +153490,1084,controversial,1330854385 +153490,1097,space,1330998835 +153490,1099,Christmas,1330052473 +153490,1103,coming of age,1330757918 +153490,1103,James Dean,1330757916 +153490,1103,Natalie Wood,1330757913 +153490,1104,atmospheric,1330758015 +153490,1104,Marlon Brando,1330758019 +153490,1104,Tennessee Williams,1330758017 +153490,1130,werewolf,1331005839 +153490,1130,werewolves,1331005834 +153490,1171,mockumentary,1331173428 +153490,1175,atmospheric,1300663245 +153490,1175,French,1300663257 +153490,1175,hallucinatory,1300663259 +153490,1175,quirky,1300663262 +153490,1175,stylized,1300663266 +153490,1178,Stanley Kubrick,1330756795 +153490,1193,Jack Nicholson,1330906038 +153490,1193,mental illness,1330906040 +153490,1196,space,1331001213 +153490,1206,atmospheric,1300662528 +153490,1206,controversial,1300662531 +153490,1206,cult film,1300662534 +153490,1206,quirky,1300662547 +153490,1206,Stanley Kubrick,1300662548 +153490,1206,stylized,1300662555 +153490,1206,Surrealism,1300662550 +153490,1207,atmospheric,1330854289 +153490,1207,small town,1330854293 +153490,1210,space,1331001449 +153490,1212,atmospheric,1300663485 +153490,1212,film noir,1300663514 +153490,1212,great cinematography,1300663519 +153490,1212,Orson Welles,1300663524 +153490,1214,atmospheric,1330909005 +153490,1214,space,1330909007 +153490,1214,space travel,1330909010 +153490,1215,campy,1331174064 +153490,1215,Cult classic,1331174053 +153490,1215,cult film,1331174059 +153490,1219,Anthony Perkins,1330853088 +153490,1219,mental illness,1330853103 +153490,1219,tense,1330853106 +153490,1221,Al Pacino,1330907529 +153490,1221,John Cazale,1330907583 +153490,1222,2 movies in 1,1300660738 +153490,1222,Kubrick,1300660787 +153490,1222,Stanley Kubrick,1300660783 +153490,1225,classical music,1330998720 +153490,1230,Woody Allen,1330907254 +153490,1235,Cult Classic,1300660655 +153490,1235,cult film,1300660658 +153490,1235,dark comedy,1300660677 +153490,1235,Eccentric,1300660679 +153490,1235,good dialogue,1300660661 +153490,1235,May-December romance,1300660636 +153490,1235,quirky,1300660633 +153490,1235,reflective,1300660687 +153490,1241,campy,1331178593 +153490,1241,cult film,1331178588 +153490,1241,over-the-top,1331178603 +153490,1244,Woody Allen,1330908676 +153490,1247,Anne Bancroft,1330854031 +153490,1247,coming of age,1330853999 +153490,1247,Dustin Hoffman,1330854008 +153490,1247,Katharine Ross,1330854018 +153490,1247,notable soundtrack,1330854005 +153490,1251,surreal,1330856036 +153490,1252,Film Noir,1330909490 +153490,1254,tense,1330752609 +153490,1258,atmospheric,1330998113 +153490,1258,cult film,1330998111 +153490,1258,dreamlike,1330998105 +153490,1258,ghosts,1330998109 +153490,1258,Horror,1330998102 +153490,1258,Jack Nicholson,1330998100 +153490,1258,psychological,1330998096 +153490,1258,Stanley Kubrick,1330998090 +153490,1258,tense,1330998123 +153490,1258,visually appealing,1330998092 +153490,1259,coming of age,1331001175 +153490,1259,nostalgic,1331001168 +153490,1261,atmospheric,1330998489 +153490,1261,Bruce Campbell,1330998485 +153490,1261,campy,1330998491 +153490,1261,cult classic,1330998493 +153490,1261,cult film,1330998495 +153490,1261,stylized,1330998501 +153490,1265,alternate reality,1331172448 +153490,1265,Bill Murray,1331172451 +153490,1265,existentialism,1331172455 +153490,1265,self discovery,1331172493 +153490,1265,small town,1331172483 +153490,1265,surreal,1331172480 +153490,1265,time loop,1331172488 +153490,1265,time travel,1331172492 +153490,1269,Cary Grant,1330753385 +153490,1269,too long,1330753391 +153490,1270,Crispin Glover,1330998050 +153490,1271,train,1331173291 +153490,1278,Gene Wilder,1330907911 +153490,1278,gothic,1330907914 +153490,1282,classical music,1330752058 +153490,1282,surreal,1330752052 +153490,1288,Christopher Guest,1300658593 +153490,1288,deadpan,1300658690 +153490,1288,directorial debut,1300658802 +153490,1288,documentary,1300658809 +153490,1288,farce,1300658878 +153490,1288,mockumentary,1300658611 +153490,1288,quirky,1300658616 +153490,1288,witty,1300658615 +153490,1289,Philip Glass,1331005318 +153490,1289,phillip glass score,1331005321 +153490,1289,score:Philip Glass,1331005324 +153490,1292,Hal Ashby,1330907494 +153490,1292,Peter Sellers,1330907484 +153490,1295,Daniel Day-Lewis,1331006889 +153490,1295,Juliette Binoche,1331006887 +153490,1298,animated sequence,1300663156 +153490,1298,artistic,1300663141 +153490,1298,cult classic,1300663138 +153490,1298,cult film,1300663131 +153490,1298,dark,1300663135 +153490,1298,dreamlike,1300663129 +153490,1298,great soundtrack,1300663122 +153490,1298,loneliness,1300663116 +153490,1298,surreal,1300663108 +153490,1302,Kevin Costner,1331006748 +153490,1302,thinks it's profound but it isn't,1331006761 +153490,1321,atmospheric,1300663367 +153490,1321,Griffin Dunne,1331003150 +153490,1321,paranoid,1300663408 +153490,1321,surprisingly funny,1300663404 +153490,1321,tense,1300663413 +153490,1321,werewolf,1300663418 +153490,1339,gothic,1331182882 +153490,1339,vampires,1331182876 +153490,1340,gothic,1330052195 +153490,1340,Isolation,1330052198 +153490,1343,paranoia,1331180553 +153490,1344,Gregory Peck,1330854162 +153490,1347,horror,1331001324 +153490,1348,atmospheric,1329456760 +153490,1348,german expressionism,1329456763 +153490,1350,Gregory Peck,1330908548 +153490,1350,Horror,1300663174 +153490,1359,Christmas,1331354032 +153490,1361,disturbing,1300660009 +153490,1361,woods,1331289400 +153490,1361,wrongly accused,1300660045 +153490,1377,Gothic,1331174444 +153490,1377,superhero,1331174448 +153490,1380,great soundtrack,1330907611 +153490,1407,horror,1331347734 +153490,1441,whimsical,1331179744 +153490,1449,Christopher Guest,1331290063 +153490,1449,mockumentary,1331290067 +153490,1449,quirky,1331290074 +153490,1449,small town,1331290071 +153490,1464,art house,1331347684 +153490,1464,atmospheric,1331347682 +153490,1464,clever,1331347691 +153490,1464,creepy,1331347687 +153490,1464,David Lynch,1331347694 +153490,1464,dreamlike,1331347699 +153490,1464,mindfuck,1331347701 +153490,1464,nonlinear,1331347706 +153490,1464,Patricia Arquette,1331347715 +153490,1464,strange,1331347709 +153490,1464,Surreal,1331347711 +153490,1485,corny,1331354127 +153490,1485,over the top,1331354063 +153490,1513,guilty pleasure,1331348178 +153490,1513,unlikely favorites,1331348172 +153490,1517,time travel,1331351509 +153490,1552,airplane,1331355090 +153490,1562,Uma Thurman,1331354757 +153490,1569,Rupert Everett,1331348745 +153490,1678,Culture,1331172760 +153490,1682,alternate reality,1331290162 +153490,1682,small town,1331290159 +153490,1682,voyeurism,1331290156 +153490,1732,bowling,1331347397 +153490,1732,cult film,1331347399 +153490,1835,ending kinda ruined it,1331349483 +153490,1895,Seth Green,1331348827 +153490,1907,Eddie Murphy,1331349136 +153490,1907,heroine,1331349133 +153490,1916,avant-garde romantic comedy,1300662768 +153490,1916,bowling,1300662775 +153490,1916,dialogue driven,1300662778 +153490,1916,quirky,1300662828 +153490,1916,The end of the solitude,1300662823 +153490,1916,Vincent Gallo,1331289103 +153490,1919,Paris,1331355934 +153490,1940,Gregory Peck,1330753448 +153490,1947,Natalie Wood,1330855572 +153490,1961,autism,1331006711 +153490,1961,road movie,1331006714 +153490,1962,Southern theme,1331006509 +153490,1968,overdramatic,1331003679 +153490,1974,campy,1331004538 +153490,1991,Chris Sarandon,1331005091 +153490,1994,haunted house,1331001141 +153490,1997,controversial,1300662179 +153490,1997,creepy,1300662188 +153490,1997,cult,1300662190 +153490,1997,effective,1300662199 +153490,1997,horror,1300662205 +153490,2003,Christmas,1331005775 +153490,2013,claustrophobic,1330907891 +153490,2013,TRAPPED OR CONFINED,1330907870 +153490,2014,child as adult,1330909283 +153490,2048,London,1331003097 +153490,2052,halloween,1331174552 +153490,2059,camping trip,1331351841 +153490,2076,atmospheric,1330998651 +153490,2076,David Lynch,1330998656 +153490,2076,disturbing,1330998665 +153490,2076,dreamlike,1330998660 +153490,2076,hallucinatory,1330998664 +153490,2076,ominous,1330998668 +153490,2076,suburbia,1330998671 +153490,2076,surreal,1330998675 +153490,2078,great soundtrack,1330853053 +153490,2096,visually appealing,1330757695 +153490,2122,cult film,1331004856 +153490,2122,small town,1331004860 +153490,2124,black comedy,1300662940 +153490,2124,halloween,1300662923 +153490,2124,quirky,1300662927 +153490,2131,claustrophobic,1330908501 +153490,2131,tense,1330908511 +153490,2132,dialogue driven,1330854344 +153490,2132,great performances,1330854341 +153490,2145,Andrew Dice Clay,1300663722 +153490,2155,coming of age,1331352195 +153490,2176,atmospheric,1330752299 +153490,2176,long takes,1330752305 +153490,2289,paranoid,1331180692 +153490,2313,atmospheric,1331005271 +153490,2313,David Lynch,1331005269 +153490,2318,loneliness,1331290196 +153490,2321,coming of age,1331353669 +153490,2321,Jeff Daniels,1331353665 +153490,2321,time travel,1331353677 +153490,2321,whimsical,1331353679 +153490,2366,stop motion,1330052999 +153490,2366,stop-motion,1330053001 +153490,2398,Natalie Wood,1330751894 +153490,2400,Christmas,1330998629 +153490,2423,Christmas,1331004900 +153490,2432,cancer,1331354954 +153490,2432,terminal illness,1331354971 +153490,2455,tense,1331003720 +153490,2459,atmospheric,1330906676 +153490,2459,cannibalism,1330906680 +153490,2459,disturbing,1330906686 +153490,2459,grindhouse,1330906701 +153490,2459,menacing,1330906704 +153490,2459,tense,1330906707 +153490,2495,Adult Animation,1300661372 +153490,2495,Avant Garde,1300661348 +153490,2495,Dreamlike,1300660796 +153490,2495,psychedelic,1300661394 +153490,2495,Surreal,1300660798 +153490,2495,surrealism,1300661418 +153490,2495,Trippy,1300660800 +153490,2495,Visual Hallucination,1300661335 +153490,2513,cemetery,1331003511 +153490,2513,zombies,1331003596 +153490,2514,halloween,1331178329 +153490,2519,haunted house,1330757056 +153490,2519,Vincent Price,1330757060 +153490,2552,Austin Pendleton,1331172800 +153490,2552,black comedy,1331172810 +153490,2552,horror comedy,1331172813 +153490,2552,irreverent,1331172803 +153490,2552,zombies,1331172806 +153490,2572,guilty pleasure,1331352598 +153490,2579,directorial debut,1331348889 +153490,2639,cult film,1331005032 +153490,2644,gothic,1330053016 +153490,2647,gothic,1330752839 +153490,2648,controversial,1330052239 +153490,2648,gothic,1330052240 +153490,2649,gothic,1330052822 +153490,2654,gothic,1330752272 +153490,2654,gypsy,1330752274 +153490,2654,Lon Chaney Jr.,1330752251 +153490,2657,awesome soundtrack,1300659801 +153490,2657,cult classic,1300659791 +153490,2657,cult film,1300659793 +153490,2657,great soundtrack,1300659796 +153490,2657,Quirky,1300659784 +153490,2664,horror,1300663227 +153490,2664,paranoid,1300663232 +153490,2664,tense,1300663238 +153490,2692,artistic,1300659605 +153490,2692,intense,1300659591 +153490,2692,nonlinear,1300659586 +153490,2692,notable soundtrack,1300659581 +153490,2692,original,1300659575 +153490,2692,surreal,1300659573 +153490,2692,thought-provoking,1300659571 +153490,2692,visually appealing,1300659563 +153490,2692,whimsical,1300659566 +153490,2699,bugs,1331183004 +153490,2699,Jeff Daniels,1331183017 +153490,2699,medical,1331183030 +153490,2710,creepy,1300662852 +153490,2710,forest,1300662855 +153490,2710,horror,1300662859 +153490,2710,low budget,1300662861 +153490,2710,mockumentary,1300662865 +153490,2712,Christmas,1331289803 +153490,2712,ominous,1331289817 +153490,2712,surreal,1331289793 +153490,2712,tense,1331289809 +153490,2712,voyeurism,1331289792 +153490,2719,haunted house,1331348563 +153490,2726,Sterling Hayden,1330756854 +153490,2727,mannequin,1330756655 +153490,2729,based on a book,1300660386 +153490,2729,controversial,1300660392 +153490,2729,James Mason,1300660396 +153490,2729,Kubrick,1300660398 +153490,2729,May-December romance,1300660404 +153490,2729,obsession,1300660408 +153490,2729,Peter Sellers,1300660403 +153490,2729,Stanley Kubrick,1300660399 +153490,2730,atmospheric,1330907714 +153490,2730,Kubrick,1330907699 +153490,2730,lavish,1330907711 +153490,2730,Stanley Kubrick,1330907703 +153490,2746,cult film,1331002922 +153490,2746,Nostalgia,1331002915 +153490,2762,ghosts,1331348238 +153490,2762,psychological,1331348231 +153490,2762,stylized,1331348233 +153490,2797,May-December romance,1331003001 +153490,2804,Christmas,1330999360 +153490,2804,cult film,1330999373 +153490,2841,annoying characters,1331355386 +153490,2858,rich families,1331290519 +153490,2859,David Byrne,1330998454 +153490,2867,Chris Sarandon,1330998548 +153490,2867,cult film,1330998574 +153490,2867,vampires,1330998552 +153490,2907,Molly Shannon,1331349193 +153490,2908,small town,1331348094 +153490,2918,coming of age,1331001251 +153490,2953,Christmas,1331180580 +153490,2953,hotel,1331180587 +153490,2997,Charlie Kaufman,1331351613 +153490,2997,cult film,1331351604 +153490,3016,Anthology,1331006364 +153490,3016,multiple short stories in one,1331006387 +153490,3016,multiple storylines,1331006399 +153490,3061,Bing Crosby,1330751938 +153490,3061,Christmas,1330751920 +153490,3061,Fred Astaire,1330751927 +153490,3075,atmospheric,1330854466 +153490,3075,claustrophobic,1330854469 +153490,3075,paranoid,1330854478 +153490,3075,rape,1330854482 +153490,3076,Jack Lemmon,1330853727 +153490,3081,atmospheric,1331349689 +153490,3081,visually appealing,1331349684 +153490,3083,Pedro Almodovar,1331353761 +153490,3087,Bill Murray,1300663651 +153490,3087,Christmas,1331006864 +153490,3088,James Stewart,1330757882 +153490,3118,Janet McTeer,1331353520 +153490,3118,southern US,1331353549 +153490,3152,coming of age,1330908285 +153490,3152,nostalgic,1330908282 +153490,3152,small town,1330908273 +153490,3152,SMALL-TOWN LIFE,1330908279 +153490,3157,hugh laurie,1331356204 +153490,3160,great soundtrack,1300660314 +153490,3160,melancholy,1300660306 +153490,3160,multiple storylines,1300660304 +153490,3160,stylized,1300660293 +153490,3160,visually appealing,1300660290 +153490,3174,depressing,1331352115 +153490,3186,asylum,1331347850 +153490,3186,mental illness,1331347857 +153490,3205,atmospheric,1330855113 +153490,3205,Barbara Steele,1330855127 +153490,3258,Goldie Hawn,1331180196 +153490,3264,dark comedy,1331178575 +153490,3264,vampires,1331178568 +153490,3307,Charlie Chaplin,1300662627 +153490,3307,stylized,1330051544 +153490,3310,Charles Chaplin,1329455643 +153490,3330,coming of age,1330854518 +153490,3330,Natalie Wood,1330854515 +153490,3362,Al Pacino,1300662230 +153490,3362,Atmospheric,1300662232 +153490,3362,black comedy,1300662238 +153490,3362,dark comedy,1300662244 +153490,3362,intense,1300662246 +153490,3362,Real Time,1300662248 +153490,3364,atmospheric,1330757384 +153490,3364,Marilyn Monroe,1330757393 +153490,3386,boring,1300663783 +153490,3386,Gary Oldman,1300663807 +153490,3386,historically inaccurate,1300663804 +153490,3386,Oliver Stone,1300663798 +153490,3386,Swearing,1300663794 +153490,3396,cameos,1300663581 +153490,3396,road trip,1300663564 +153490,3415,Andrei Tarkovsky,1330908339 +153490,3415,dreamlike,1330908318 +153490,3415,nostalgic,1330908330 +153490,3415,surreal,1330908323 +153490,3415,visually stunning,1330908321 +153490,3435,Barbara Stanwyck,1330752597 +153490,3435,film noir,1330752582 +153490,3435,stylized,1330752586 +153490,3462,Charles Chaplin,1330051567 +153490,3462,Charlie Chaplin,1330051561 +153490,3471,space,1330908801 +153490,3481,Jack Black,1331771161 +153490,3481,John Cusack,1331771165 +153490,3481,quirky,1331771169 +153490,3489,Christmas,1331173485 +153490,3499,claustrophobic,1331179923 +153490,3499,drab,1331179943 +153490,3499,tense,1331179930 +153490,3499,TRAPPED OR CONFINED,1331179932 +153490,3521,Atmospheric,1331001292 +153490,3521,nostalgic,1331001282 +153490,3535,fantasy world,1331770668 +153490,3535,New York,1331770682 +153490,3535,psychological,1331770687 +153490,3546,Bette Davis,1330853150 +153490,3546,psychological thriller,1330853164 +153490,3565,Ashley Judd,1331773055 +153490,3565,small town,1331773060 +153490,3606,CinemaScope,1330754040 +153490,3608,road trip,1330998986 +153490,3627,atmospheric,1330853868 +153490,3627,carnival,1330853874 +153490,3627,dreamlike,1330853875 +153490,3627,ghosts,1330853882 +153490,3668,Olivia Hussey,1330855496 +153490,3675,Christmas,1330758124 +153490,3675,Danny Kaye,1330758120 +153490,3675,hotel,1330758128 +153490,3676,atmospheric,1330906079 +153490,3676,creepy,1330906081 +153490,3676,cult film,1330906083 +153490,3676,dark,1330906086 +153490,3676,David Lynch,1330906089 +153490,3676,directorial debut,1330906091 +153490,3676,disturbing,1330906092 +153490,3676,dreamlike,1330906096 +153490,3676,hallucinatory,1330906100 +153490,3676,ominous,1330906102 +153490,3676,paranoid,1330906113 +153490,3676,surreal,1330906104 +153490,3676,weird,1330906124 +153490,3683,quirky,1300663007 +153490,3683,surprise ending,1300663015 +153490,3683,witty,1300663020 +153490,3751,claymation,1331771469 +153490,3751,stop motion,1331771475 +153490,3809,Bill Murray,1331177897 +153490,3809,vacation,1331177909 +153490,3821,Eddie Murphy,1331773295 +153490,3821,Janet Jackson,1331773298 +153490,3843,campy,1331003289 +153490,3844,BATTLING ILLNESS,1331004661 +153490,3844,diabetes,1331004666 +153490,3850,desert,1330855185 +153490,3850,Ruth Gordon,1330855175 +153490,3897,coming of age,1331770974 +153490,3910,Björk,1331770744 +153490,3910,downbeat,1331770807 +153490,3910,great ending,1331770809 +153490,3910,grim,1331770789 +153490,3910,Lars von Trier,1331770754 +153490,3910,stylized,1331770757 +153490,3917,disgusting scenes,1331003257 +153490,3949,atmospheric,1331770451 +153490,3949,dark,1331770452 +153490,3949,independent film,1331770459 +153490,3949,loneliness,1331770462 +153490,3949,visually appealing,1331770480 +153490,3988,Christmas,1331772978 +153490,4002,road movie,1330999498 +153490,4002,road trip,1330999495 +153490,4018,stereotypes,1331772943 +153490,4022,loneliness,1331771414 +153490,4022,psychological,1331771423 +153490,4022,stranded,1331771307 +153490,4027,black comedy,1331770954 +153490,4027,great soundtrack,1331770948 +153490,4027,notable soundtrack,1331770941 +153490,4027,Quirky,1331770944 +153490,4067,Christmas,1331174191 +153490,4105,Bruce Campbell,1330998163 +153490,4105,campy,1330998166 +153490,4105,Cult classic,1330998170 +153490,4105,cult film,1330998172 +153490,4128,cult film,1331004573 +153490,4128,small town,1331004570 +153490,4128,vampires,1331004569 +153490,4184,Cary Grant,1330752695 +153490,4184,Christmas,1330752683 +153490,4205,Winona Ryder,1331180663 +153490,4226,cult film,1300660271 +153490,4226,dark,1300660272 +153490,4226,dreamlike,1300660266 +153490,4226,narrated,1300660257 +153490,4226,nonlinear,1300660255 +153490,4226,paranoid,1300660250 +153490,4226,psychological,1300660248 +153490,4226,stylized,1300660244 +153490,4226,tense,1300660236 +153490,4226,twist ending,1300660226 +153490,4226,twists & turns,1300660232 +153490,4235,independent film,1331770229 +153490,4235,multiple storylines,1331770233 +153490,4356,Marilyn Monroe,1330757873 +153490,4359,Marilyn Monroe,1330757411 +153490,4428,atmospheric,1330856290 +153490,4437,atmospheric,1300659391 +153490,4437,creepy,1300659396 +153490,4437,Dario Argento,1300659398 +153490,4437,dreamlike,1300659402 +153490,4437,eerie,1300659403 +153490,4437,Giallo,1300659466 +153490,4437,hallucinatory,1300659471 +153490,4437,horror,1300659473 +153490,4437,ominous,1330905801 +153490,4437,stylized,1300659524 +153490,4515,John Lennon,1300660621 +153490,4533,cult film,1331001754 +153490,4533,Kentucky,1331001743 +153490,4533,zombies,1331001718 +153490,4541,Voodoo,1331007079 +153490,4546,inappropriate music,1331003805 +153490,4564,Audrey Hepburn,1331001675 +153490,4833,atmospheric,1331003839 +153490,4833,ghost story,1331003850 +153490,4833,haunted house,1331003852 +153490,4914,Jean Seberg,1330855248 +153490,4914,Paris,1330855239 +153490,4920,Bette Davis,1330752424 +153490,5013,atmospheric,1300663613 +153490,5013,Dark,1300663636 +153490,5013,Period piece,1300663626 +153490,5013,witty,1300663621 +153490,5060,Bud Cort,1330910213 +153490,5060,drab,1330910223 +153490,5097,Shirley Temple,1330052323 +153490,5103,cult film,1331172613 +153490,5105,atmospheric,1330907294 +153490,5105,dreamlike,1330907299 +153490,5105,gothic,1330907303 +153490,5159,rain forest,1331180887 +153490,5165,atmospheric,1330908073 +153490,5165,creepy,1330908226 +153490,5165,disturbing,1330908228 +153490,5165,Giallo,1330908239 +153490,5250,Gene Wilder,1331003571 +153490,5354,Goldie Hawn,1330855271 +153490,5354,Ingrid Bergman,1330855267 +153490,5392,Marilyn Monroe,1330756170 +153490,5602,Peter Sellers,1330756576 +153490,5660,annoying soundtrack,1330856116 +153490,5673,bittersweet,1300659867 +153490,5673,hallucinatory,1300659870 +153490,5673,Paul Thomas Anderson,1300659873 +153490,5673,quirky,1300659875 +153490,5673,tense,1300659969 +153490,5673,underrated,1300659959 +153490,5673,whimsical,1300659962 +153490,5891,Camille Keaton,1330909631 +153490,5891,campy,1330909628 +153490,5891,glorifies violence against women,1330909983 +153490,5891,revenge,1330909636 +153490,5963,controversial,1330855325 +153490,5970,Anna Chlumsky,1331173166 +153490,5970,Griffin Dunne,1331173166 +153490,5975,Audrey Hepburn,1330755698 +153490,5977,black comedy,1330906417 +153490,5977,irreverent,1330906415 +153490,5977,Ruth Gordon,1330906410 +153490,6065,Peter Sellers,1330755497 +153490,6071,Peter Sellers,1330856358 +153490,6140,Giallo,1331002974 +153490,6242,atmospheric,1331290748 +153490,6242,gritty,1331290756 +153490,6357,bing crosby,1330755978 +153490,6357,louis armstrong,1330755980 +153490,6460,Anthony Perkins,1330854672 +153490,6460,claustrophobic,1330854715 +153490,6516,Ingrid Bergman,1330756233 +153490,6516,Yul Brynner,1330756234 +153490,6639,Audrey Hepburn,1330854312 +153490,6810,small town,1331181239 +153490,6820,Emily Perkins,1331770280 +153490,6820,Katherine Isabelle,1331770277 +153490,6820,werewolf,1331770294 +153490,6820,werewolves,1331770292 +153490,6849,Christmas,1330907425 +153490,6975,dialogue driven,1331290333 +153490,6975,long takes,1331290315 +153490,6975,Michael Haneke,1331290304 +153490,6978,conspiracy theorists,1331180157 +153490,6978,irreverent,1331180124 +153490,6993,realistic female character(s),1331000401 +153490,6993,Woody Allen,1330999452 +153490,6999,Goldie Hawn,1331179896 +153490,6999,Steve Martin,1331179899 +153490,7001,dehumanization,1330906222 +153490,7001,intense,1330906217 +153490,7013,atmospheric,1330756990 +153490,7013,creepy,1330756994 +153490,7013,dreamlike,1330757003 +153490,7013,film noir,1330756999 +153490,7013,stylized,1330757008 +153490,7022,controversial,1331771038 +153490,7050,Astaire and Rogers,1330051892 +153490,7053,Astaire and Rogers,1330051884 +153490,7055,Astaire and Rogers,1330051903 +153490,7060,great soundtrack,1330907652 +153490,7182,Ruth Gordon,1330855209 +153490,7182,Tuesday Weld,1330855206 +153490,7208,Ingrid Bergman,1330752414 +153490,7253,Clara Bow,1329455912 +153490,7387,TRAPPED OR CONFINED,1330907804 +153490,7702,Bing Crosby,1330752671 +153490,7702,Ingrid Bergman,1330752662 +153490,7820,rape,1330854900 +153490,7820,revenge,1330854904 +153490,7881,zombies,1330052871 +153490,7891,last man on earth,1330855153 +153490,7891,post-apocalyptic,1330855156 +153490,7891,Vincent Price,1330855147 +153490,7891,zombies,1330855149 +153490,8033,Audrey Hepburn,1330855619 +153490,8125,atmospheric,1329456678 +153490,8125,dreamlike,1329456680 +153490,8125,stylized,1329456694 +153490,8194,controversial,1330757948 +153490,8194,Tennessee Williams,1330757951 +153490,8338,atmospheric,1330752744 +153490,8338,claustrophobic,1330752751 +153490,8338,stylized,1330752755 +153490,8492,Christmas,1330756844 +153490,8492,Scrooge,1330756846 +153490,8507,atmospheric,1330053048 +153490,8507,circus,1330053045 +153490,8507,controversial,1330053027 +153490,8507,cult classic,1330053029 +153490,8507,cult film,1330053031 +153490,8507,dark,1330053034 +153490,8518,Greta Garbo,1330052214 +153490,8521,Fredric March,1330052084 +153490,8571,Natalie Wood,1330853631 +153490,8614,Goldie Hawn,1331005481 +153490,8712,Cary Grant,1330753005 +153490,8712,Irene Dunne,1330753009 +153490,8712,Randolph Scott,1330753014 +153490,25736,alter ego,1329456438 +153490,25771,surrealism,1329456073 +153490,25777,Groucho Marx,1330052355 +153490,25777,Harpo Marx,1330052348 +153490,25828,Bette Davis,1330052089 +153490,25828,Leslie Howard,1330052091 +153490,25865,Bette Davis,1330752975 +153490,25937,Fred Astaire,1330752776 +153490,25972,Barbara Stanwyck,1330756018 +153490,25972,Marilyn Monroe,1330756022 +153490,26116,Bette Davis,1330855829 +153490,26133,Christmas,1330854239 +153490,26178,Albert Finney,1330853830 +153490,26178,Audrey Hepburn,1330853832 +153490,26189,Peter Sellers,1330855350 +153490,26540,cult film,1330998750 +153490,26540,Giallo,1330998806 +153490,26550,Philip Glass,1331006672 +153490,26587,thought-provoking,1330998527 +153490,26693,clowns,1331173345 +153490,27317,ominous,1331347530 +153490,27317,stylized,1331347524 +153490,27317,tense,1331347519 +153490,27329,Arkansas,1331770180 +153490,27329,wrongly accused,1300660086 +153490,30783,bad dub,1330855760 +153490,30783,Giallo,1330855747 +153490,31502,small town,1330909183 +153490,31502,vampires,1330909188 +153490,32898,Georges Méliès,1329456637 +153490,32898,space,1329456630 +153490,37375,Ginger Rogers,1330752385 +153490,37729,claymation,1300663450 +153490,37729,gothic,1300663458 +153490,37729,stop-motion,1300663463 +153490,42518,Barbara Stanwyck,1330752215 +153490,42518,Christmas,1330752221 +153490,46258,Bette Davis,1330053119 +153490,48035,Anthony Perkins,1330855465 +153490,48035,Tuesday Weld,1330855476 +153490,50909,psychedelic,1330907455 +153490,51573,maya deren,1330751824 +153490,52435,Christmas,1330853569 +153490,55269,cinematography,1300663313 +153490,55269,road movie,1300663326 +153490,55269,road trip,1300663330 +153490,55269,Train,1300663345 +153490,55269,trains,1300663348 +153490,60487,halloween,1330854263 +153490,60803,Christmas,1330853752 +153490,60803,stop motion,1330853754 +153490,66915,Don Bluth,1331180081 +153490,72692,Christmas,1331353712 +153490,77854,bjork,1300658370 +153490,77854,creative,1300658372 +153490,77854,French,1300658545 +153490,77854,imaginative,1300658375 +153490,77854,Michel Gondry,1300658378 +153490,77854,notable soundtrack,1300658386 +153490,77854,quirky,1300658512 +153490,77854,soundtrack,1300658383 +153490,77854,surprisingly funny,1300658399 +153490,77854,surreal,1300658391 +153490,77854,Underrated Director,1300658502 +153490,77854,unique,1300658366 +153490,77854,visually inventive,1300658393 +153490,78093,Clara Bow,1329456525 +153490,78124,Peter Sellers,1330909034 +153490,78528,Barbara Stanwyck,1330753523 +153490,78528,James Mason,1330753534 +153490,83829,snuff,1330856583 +153490,92925,Rain,1329457044 +153490,97302,stop motion,1350002880 +153533,116797,obssesion,1431616507 +153533,116797,scientist,1431616507 +153533,116797,world war ii,1431616507 +153545,1259,coming of age,1421124981 +153545,1259,unlikely friendships,1421124985 +153573,1196,star wars,1162098757 +153573,6377,animation,1162098746 +153573,6377,Pixar,1162098746 +153600,1221,violence,1450840474 +153600,1230,intellectual,1450838465 +153600,1230,relationships,1450838461 +153600,49272,action,1450840545 +153600,49272,torture,1450840555 +153600,81456,love triangles,1450838619 +153600,103984,notable soundtrack,1450838486 +153600,105355,bittersweet,1450838652 +153600,105355,coming of age,1450838651 +153600,105355,visually appealing,1450838644 +153600,112290,episodic,1450838597 +153600,112290,quietly beautiful,1450838589 +153600,112290,realism,1450838601 +153619,1289,phillip glass score,1288022248 +153619,2917,music,1310134154 +153619,4995,Russell Crowe,1200910676 +153619,5620,dialogue,1253954488 +153619,7008,brando,1253235006 +153619,7008,Intellectual,1253235028 +153619,8868,awful,1207717289 +153619,8868,terrible,1207717284 +153619,34437,Bill Murray,1200467112 +153619,34437,great performances,1200467112 +153619,34437,Jim Jarmusch,1200467112 +153619,45517,emotional,1253954631 +153619,55069,abortion,1253232274 +153619,55069,long takes,1253232274 +153619,71464,black comedy,1284274502 +153619,72407,werewolves,1284919495 +153619,78836,boring,1295783910 +153619,81847,animation,1311120434 +153619,81847,fairy tale,1311120444 +153619,81847,songs,1311120405 +153619,86833,comedy,1335793941 +153622,318,friendship,1450129026 +153636,2571,cult film,1299572196 +153636,2571,cyberpunk,1299572186 +153636,2571,imdb top 250,1299572181 +153636,2571,Keanu Reeves,1299572177 +153636,2571,philosophy,1299572193 +153636,2571,stylized,1299572186 +153636,2571,surreal,1299572193 +153636,2571,thought-provoking,1299572191 +153636,7361,quirky,1299572490 +153636,8784,Jim Parsons,1311916724 +153636,27611,complex,1299572119 +153636,27611,military,1299572114 +153636,27611,MILITARY LIFE,1299572116 +153636,27611,mythology,1299572140 +153636,27611,religion,1299572129 +153636,27611,sci-fi,1299572123 +153636,27611,space,1299572126 +153636,27611,thought-provoking,1299572127 +153636,27611,visually appealing,1299572126 +153636,33437,Jet Li,1306499530 +153636,33437,Morgan Freeman,1306499528 +153636,33437,psychology,1306499535 +153636,33437,Sexualized violence,1306499539 +153636,34405,black comedy,1306499388 +153636,34405,funny,1299571960 +153636,34405,quirky,1299571949 +153636,34405,witty,1299571952 +153636,57274,"""found footage""",1342310891 +153636,57274,creepy,1342310906 +153636,57274,Foreign,1342310913 +153636,57274,Handycam,1342310902 +153636,57274,spanish,1342310909 +153636,70286,atmospheric,1299572024 +153636,70286,documentary style,1299572010 +153636,70286,IMDB Top 250,1299572013 +153636,70286,role reversal,1299572020 +153636,70286,sci-fi,1299572030 +153636,72998,beautiful scenery,1299572331 +153636,72998,military,1299572325 +153636,72998,war,1299572332 +153636,79357,Beauty,1299738718 +153636,79357,chaos,1299738722 +153636,79357,cinematography,1299738722 +153636,79357,nonlinear,1299738727 +153636,79357,technobabble,1299738712 +153636,79702,cute,1299738960 +153636,79702,fight scenes,1299738941 +153636,79702,funny,1299738956 +153636,79702,quirky,1299738944 +153636,79702,stylized,1299738949 +153636,79702,video games,1299738949 +153636,80549,Emma Stone,1300011058 +153636,80549,witty,1300011051 +153636,85414,Jake Gyllenhaal,1308459478 +153636,88140,adapted from:comic,1312372601 +153636,88140,campy,1312372607 +153636,88140,dieselpunk,1312372615 +153636,88140,Marvel,1312372609 +153636,90154,Creepy,1342310642 +153636,90154,Slow,1342310646 +153636,92420,found footage,1342310719 +153654,260,classic sci-fi,1436506448 +153654,260,space action,1436506438 +153659,4878,psychology,1231913058 +153659,4878,surreal,1231913060 +153659,4878,time travel,1231913054 +153693,541,cyberpunk,1438578414 +153693,541,Philip K. Dick,1438578402 +153693,541,sci-fi,1438578412 +153693,1240,artificial intelligence,1438577975 +153693,1240,cyberpunk,1438577986 +153693,1240,robots,1438577979 +153693,1240,Sci-Fi,1438577971 +153693,1240,time travel,1438577963 +153693,8914,clever,1438578058 +153693,8914,intelligent,1438578073 +153693,8914,mindfuck,1438578053 +153693,8914,paradox,1438578069 +153693,8914,physics,1438578066 +153693,8914,Sci-Fi,1438578062 +153693,8914,science,1438578075 +153693,8914,thought-provoking,1438578064 +153693,8914,time travel,1438578051 +153693,27904,Philip K. Dick,1438578464 +153693,27904,surreal,1438578470 +153693,27904,unreliable narrator,1438578523 +153727,260,epic,1432434700 +153727,260,Intense,1432434708 +153741,260,classic,1439841866 +153741,260,sci-fi,1439841861 +153772,25,alcoholism,1297055068 +153772,25,dark,1297055075 +153772,25,depressing,1297055044 +153772,25,Nicolas Cage,1297055049 +153772,25,SUICIDE,1297055055 +153772,31,education,1297487829 +153772,31,Michelle Pfeiffer,1297487817 +153772,31,social commentary,1297487851 +153772,39,chick flick,1297051991 +153772,39,fashion,1297051996 +153772,39,girlie movie,1297052000 +153772,39,silly,1297052011 +153772,47,Brad Pitt,1297375438 +153772,47,crime,1297375442 +153772,47,dark,1297375446 +153772,47,disturbing,1297375416 +153772,47,horror,1297375456 +153772,47,Kevin Spacey,1297375436 +153772,47,philosophical,1297375429 +153772,47,powerful ending,1297375425 +153772,47,psychology,1297375420 +153772,47,religion,1297375467 +153772,47,serial killer,1297375423 +153772,110,british,1297050890 +153772,110,england,1297050895 +153772,110,historical,1297050873 +153772,110,History,1297050899 +153772,110,Mel Gibson,1297050868 +153772,110,Nudity (Topless),1297050906 +153772,198,sci-fi,1311286189 +153772,198,stupid,1311286200 +153772,229,psychological,1311081490 +153772,229,Roman Polanski,1311081493 +153772,293,assassination,1297055405 +153772,293,disturbing,1297055398 +153772,293,great acting,1297055446 +153772,293,hitman,1297055394 +153772,293,Jean Reno,1297055381 +153772,293,love story,1297055385 +153772,293,Natalie Portman,1297055375 +153772,293,tense,1297055479 +153772,344,Dumb,1297051313 +153772,344,Jim Carrey,1297051305 +153772,344,not funny,1297051327 +153772,344,silly fun,1297051334 +153772,344,Stupid as Hell,1297051340 +153772,344,very dumb,1297051338 +153772,593,crime,1297050532 +153772,593,serial killer,1297050553 +153772,608,imdb top 250,1297375065 +153772,608,Oscar (Best Actress),1297375050 +153772,778,addiction,1297055622 +153772,778,black comedy,1297055571 +153772,778,dark comedy,1297055573 +153772,778,drugs,1297055576 +153772,778,Nudity (Full Frontal),1297055592 +153772,778,social commentary,1297055601 +153772,778,violence,1297055595 +153772,778,violent,1297055598 +153772,780,action,1297089156 +153772,780,alien invasion,1297089132 +153772,780,aliens,1297089128 +153772,780,sci-fi,1297089121 +153772,780,tense,1297089147 +153772,912,classic,1297055284 +153772,912,drama,1297055320 +153772,912,Nazis,1297055297 +153772,912,war,1297055311 +153772,912,World War II,1297055307 +153772,1059,Claire Danes,1297489625 +153772,1059,great soundtrack,1297489551 +153772,1059,Leonardo DiCaprio,1297489563 +153772,1059,romantic,1297489631 +153772,1203,classic,1299022592 +153772,1203,Henry Fonda,1299022535 +153772,1203,predictable,1299022562 +153772,1203,social commentary,1299022543 +153772,1206,cult film,1297055180 +153772,1206,disturbing,1297055160 +153772,1206,psychology,1297055163 +153772,1206,satire,1297055191 +153772,1206,satirical,1297055193 +153772,1206,social commentary,1297055195 +153772,1206,Surrealism,1297055170 +153772,1206,violence,1297055166 +153772,1251,misogyny,1297115292 +153772,1307,classic,1297055897 +153772,1307,Good Romantic Comedies,1297055864 +153772,1307,meg ryan,1297055870 +153772,1307,romantic comedy,1297055878 +153772,1527,action,1297072903 +153772,1527,Bruce Willis,1297072928 +153772,1527,Milla Jovovich,1297072898 +153772,1527,sci-fi,1297072911 +153772,1597,conspiracy,1397451067 +153772,1597,Julia Roberts,1397451063 +153772,1597,Mel Gibson,1397451054 +153772,1597,thought-provoking,1397451069 +153772,1617,Crime,1297481300 +153772,1617,Kim Basinger,1297481290 +153772,1617,Police,1297481309 +153772,1645,Al Pacino,1297107259 +153772,1645,Charlize Theron,1297107262 +153772,1645,Keanu Reeves,1297107266 +153772,1645,Nudity (Full Frontal),1297107276 +153772,1645,religion,1297107296 +153772,1645,surreal,1297107415 +153772,1645,thought-provoking,1297516175 +153772,2297,suicide,1408145430 +153772,2297,surreal,1408145402 +153772,2297,thought-provoking,1408145597 +153772,2297,visually appealing,1408145438 +153772,2424,Meg Ryan,1297491370 +153772,2529,original,1313363553 +153772,2529,social commentary,1313363542 +153772,2529,twist ending,1313363538 +153772,2541,manipulation,1312386299 +153772,2541,Sarah Michelle Gellar,1312386306 +153772,2541,Seduction,1312386317 +153772,2594,Alejandro Amenábar,1297477693 +153772,2594,Nudity (Topless - Notable),1297477344 +153772,2594,Nudity (Topless),1297477666 +153772,2594,Penélope Cruz,1297477352 +153772,2594,Penélope Cruz,1297477359 +153772,2594,psychology,1297477384 +153772,2594,Sci-Fi,1297477334 +153772,2594,Spain,1297477379 +153772,2594,surreal,1297477712 +153772,2600,alternate reality,1297478241 +153772,2600,Sci-Fi,1297478219 +153772,2600,surreal,1297478224 +153772,2600,virtual reality,1297478222 +153772,2691,great soundtrack,1297490495 +153772,2691,Tim Roth,1297490504 +153772,2692,alternate reality,1297050057 +153772,2692,existential,1297050067 +153772,2692,existentialism,1297050063 +153772,2692,nonlinear,1297050094 +153772,2692,surreal,1297050085 +153772,2843,Emir Kusturica,1297072150 +153772,2843,gypsy,1297072155 +153772,2843,kusturica,1297072164 +153772,2843,vivacious,1297072182 +153772,2858,Kevin Spacey,1297072706 +153772,2858,midlife crisis,1297072740 +153772,2858,social commentary,1297072721 +153772,2858,thought-provoking,1297072724 +153772,2862,controversial,1345748490 +153772,2862,disturbing,1345748493 +153772,2959,Brad Pitt,1297050404 +153772,2959,dark comedy,1297050412 +153772,2959,disturbing,1297050415 +153772,2959,Edward Norton,1297050453 +153772,2959,philosophy,1297050421 +153772,2959,psychology,1297050429 +153772,2959,social commentary,1297050433 +153772,2959,surreal,1297050442 +153772,2959,twist ending,1297050439 +153772,2959,violence,1297050446 +153772,3186,Angelina Jolie,1297483731 +153772,3186,Drama,1297483790 +153772,3186,psychiatry,1297483749 +153772,3186,psychology,1297483762 +153772,3186,winona ryder,1297483743 +153772,3307,bittersweet,1402604132 +153772,3307,Charlie Chaplin,1402604130 +153772,3307,romance,1402604143 +153772,3910,bjork,1311023431 +153772,3910,Lars von Trier,1311023405 +153772,3910,surreal,1311023412 +153772,3992,drama,1297479142 +153772,3992,Italian,1297479084 +153772,3992,Monica Bellucci,1297479058 +153772,3992,Nudity (Full Frontal),1297479067 +153772,3992,social commentary,1297479124 +153772,3999,adventure,1297489220 +153772,3999,alpinism,1297489215 +153772,3999,Extreme,1297489265 +153772,3999,Himalayas,1297489206 +153772,3999,mountain climbing,1297489234 +153772,3999,nature,1297489276 +153772,4218,Keanu Reeves,1299455569 +153772,4312,great soundtrack,1297489991 +153772,4312,Himalayas,1297489975 +153772,4312,mountains,1297490062 +153772,4312,natural acting,1297490092 +153772,4312,nepal,1297490201 +153772,4312,tibet,1297489963 +153772,4447,feminism,1297069847 +153772,4447,stupid,1297069837 +153772,4699,Angelina Jolie,1297483264 +153772,4699,Latin America,1297483268 +153772,4699,Nudity (Topless),1297483284 +153772,4874,fantasy,1297487756 +153772,4874,Kevin Spacey,1297487718 +153772,4874,philosophical,1297487739 +153772,4874,sci-fi,1297487741 +153772,4975,Cameron Diaz,1297478135 +153772,4975,existentialism,1297478106 +153772,4975,Nudity (Topless),1297478100 +153772,4975,Penelope Cruz,1297478093 +153772,4975,psychology,1297478063 +153772,4975,remake,1297478071 +153772,4975,sci-fi,1297478074 +153772,4975,surreal,1297478067 +153772,4975,Tom Cruise,1297478076 +153772,5346,erotism,1297516943 +153772,5346,Nudity (Full Frontal),1297516932 +153772,5346,sexuality,1297516957 +153772,5445,future,1297055696 +153772,5445,Philip K. Dick,1297055741 +153772,5445,sci-fi,1297055703 +153772,5445,Steven Spielberg,1297055711 +153772,5445,surreal,1297055699 +153772,5445,Tom Cruise,1297055708 +153772,5477,complicated,1297488292 +153772,5477,disturbing,1297488249 +153772,5477,foreign,1297488266 +153772,5477,Nudity (Full Frontal),1297488320 +153772,5477,relationships,1297488309 +153772,5477,Spanish,1297488259 +153772,5528,bizarre,1312391842 +153772,5528,creepy,1312391844 +153772,5528,psychotic tendencies,1312391850 +153772,5530,Al Pacino,1322604470 +153772,5530,virtual reality,1322604478 +153772,5530,Winona Ryder,1322604474 +153772,5791,foreign,1297481012 +153772,5791,historical,1297481042 +153772,5791,Mexico,1297481046 +153772,5791,Nudity (Topless),1297481016 +153772,5791,Salma Hayek,1297481033 +153772,5791,spain,1297481055 +153772,5903,unrealistic,1378671415 +153772,5991,Catherine Zeta-Jones,1298424614 +153772,5991,musical,1298424649 +153772,5991,Richard Gere,1298424617 +153772,6016,based on a true story,1297271524 +153772,6016,Brazil,1297271509 +153772,6016,crime,1297271519 +153772,6016,disturbing,1297271515 +153772,6016,gangs,1297271532 +153772,6016,South America,1297271542 +153772,6286,amnesia,1297085857 +153772,6286,drama,1297085894 +153772,6286,Finnish,1297085862 +153772,6286,social commentary,1297085888 +153772,6535,dumb,1297069945 +153772,6535,stupid,1297069936 +153772,6542,Finnish,1297084241 +153772,6542,human relationship,1297084243 +153772,6874,action,1297072393 +153772,6874,funny,1297072397 +153772,6874,Quentin Tarantino,1297072381 +153772,6874,Uma Thurman,1297072384 +153772,6874,violence,1297072387 +153772,7163,author:Philip K. Dick,1397372024 +153772,7163,Philip K. Dick,1397372032 +153772,7163,sci-fi,1397372036 +153772,7163,Uma Thurman,1397372050 +153772,7318,bloody,1297487513 +153772,7318,Mel Gibson,1297487534 +153772,7318,overrated,1297487519 +153772,7318,torture,1297487525 +153772,7318,violent,1297487523 +153772,7361,Jim Carrey,1297466817 +153772,7361,sci-fi,1297466710 +153772,7361,surreal,1297466676 +153772,7361,thought-provoking,1297466699 +153772,7371,cult film,1297050205 +153772,7371,disturbing,1297050207 +153772,7371,Lars von Trier,1297050215 +153772,7371,Nicole Kidman,1297050220 +153772,7371,philosophical,1297050226 +153772,7371,political,1297050355 +153772,7383,Sylvester Stallone,1312463642 +153772,7771,Anthony Quinn,1297609748 +153772,7771,Greece,1297609752 +153772,7771,Realities of life,1297609763 +153772,7771,social commentary,1297609772 +153772,7771,thought-provoking,1297609791 +153772,7944,classic,1297085038 +153772,7944,drama,1297085060 +153772,7944,Social Drama,1297085354 +153772,8604,comedy,1297482264 +153772,8604,foreign,1297482244 +153772,8604,France,1297482277 +153772,8604,French,1297482269 +153772,8914,Complicated,1299440194 +153772,8914,too complicated,1299440208 +153772,8981,Julia Roberts,1297479759 +153772,8981,Natalie Portman,1297479763 +153772,8981,Nudity (Rear),1297479765 +153772,27036,Arthurian legend,1297484121 +153772,27036,England,1297484133 +153772,27036,medieval,1297484177 +153772,27904,drugs,1298243474 +153772,27904,Keanu Reeves,1298243460 +153772,27904,Philip K. Dick,1298243438 +153772,27904,rotoscoping,1298243481 +153772,27904,surrealism,1298243435 +153772,30707,boxing,1297072590 +153772,30707,Clint Eastwood,1297072546 +153772,30707,drama,1297072551 +153772,30707,thought-provoking,1408146225 +153772,30707,violence,1297072611 +153772,31123,comedy,1311023528 +153772,31123,French,1297479713 +153772,31123,Gérard Depardieu,1297479708 +153772,31123,Jean Reno,1297479706 +153772,32587,Jessica Alba,1311859916 +153772,32587,Quentin Tarantino,1311859899 +153772,33493,action,1297468475 +153772,33493,George Lucas,1297468481 +153772,33493,Natalie Portman,1297468464 +153772,33493,sci-fi,1297468471 +153772,39869,disappointing,1311708553 +153772,39869,Lars von Trier,1311708522 +153772,39869,political,1311708547 +153772,39869,Slavery,1311708545 +153772,39869,thought-provoking,1311708540 +153772,44191,England,1297070918 +153772,44191,Natalie Portman,1297070923 +153772,44191,philosophy,1297070950 +153772,44191,social commentary,1297070938 +153772,44191,thought-provoking,1297070934 +153772,44195,cigarettes,1297106451 +153772,44195,dark humor,1297106462 +153772,44195,satire,1297106478 +153772,44195,social commentary,1297106469 +153772,44974,gore,1408736519 +153772,44974,intense,1408736523 +153772,44974,paedophilia,1408736515 +153772,44974,sexual abuse,1408736491 +153772,44974,tension,1408736513 +153772,44974,torture,1408736497 +153772,48193,great soundtrack,1297451426 +153772,48193,Madredeus,1297451433 +153772,49278,sci-fi,1312055515 +153772,49278,time travel,1312055532 +153772,51662,blood,1297488477 +153772,51662,historical,1297488529 +153772,51662,stylized,1297488460 +153772,52170,Mircea Diaconu,1297106187 +153772,52170,view on society,1297106192 +153772,54190,Beatles,1399664947 +153772,54190,Beatles soundtrack,1399664940 +153772,54190,musical,1399664937 +153772,54190,The Beatles,1399664935 +153772,56145,psychological,1297482407 +153772,56145,sci-fi,1297482443 +153772,56145,social commentary,1297483200 +153772,56145,thought-provoking,1297483218 +153772,56587,life philosophy,1313706941 +153772,56587,meaning of life,1313706942 +153772,56587,predictable,1313706955 +153772,57980,black comedy,1312028165 +153772,57980,cynical,1312028172 +153772,57980,dark comedy,1312028167 +153772,59725,chick flick,1297087995 +153772,59725,feminism,1297087970 +153772,59725,predictable,1297088010 +153772,59725,Sarah Jessica Parker,1297087941 +153772,60950,Barcelona,1407878077 +153772,60950,Scarlett Johansson,1407878072 +153772,60950,Woody Allen,1407878069 +153772,61862,Blanca Lewin,1297480056 +153772,61862,foreign,1297480916 +153772,61862,Nudity (Full Frontal),1297480066 +153772,61862,relationships,1297480169 +153772,61862,spain,1297480022 +153772,63082,India,1297072477 +153772,63082,social commentary,1297072486 +153772,63082,torture,1297072496 +153772,63082,violence,1297072494 +153772,70286,aliens,1297071924 +153772,70286,documentary style,1297071477 +153772,70286,mock documentary,1297071766 +153772,70286,Mockumentary,1297071757 +153772,70286,ridiculous,1297071903 +153772,70286,sci-fi,1297071897 +153772,70286,social commentary,1297071083 +153772,70286,social segregation,1297071702 +153772,70286,xenophobia,1297071687 +153772,72980,american movie,1408055960 +153772,72980,Jonathan Tucker,1408055811 +153772,72980,Not as inspiring as the book,1408055740 +153772,72998,aliens,1297072020 +153772,72998,sci-fi,1297072042 +153772,74545,British,1297073053 +153772,74545,drama,1297073086 +153772,74545,politics,1297073067 +153772,74545,Roman Polanski,1297073041 +153772,78349,group psychology,1398898254 +153772,78349,mindfuck,1398898274 +153772,78349,psychological,1398898257 +153772,79132,alternate reality,1297049988 +153772,79132,complicated,1297049968 +153772,79132,Leonardo DiCaprio,1297049976 +153772,79132,sci-fi,1297050009 +153772,79132,surreal,1297049998 +153772,79185,action,1297468922 +153772,79185,adventure,1297468925 +153772,79185,Cameron Diaz,1297468903 +153772,79185,Tom Cruise,1297468909 +153772,79185,unrealistic,1297468918 +153772,79357,surreal,1321873003 +153772,81591,Natalie Portman,1311191333 +153772,81671,classic,1297070521 +153772,81671,indian,1297070516 +153772,81671,Raj Kapoor,1297070546 +153772,84374,Natalie Portman,1298230717 +153772,84374,predictable,1298230732 +153772,86882,magical realism,1315039746 +153772,86882,Woody Allen,1315039754 +153772,89347,magic realism,1315040432 +153772,89347,poetry,1315040548 +153772,89347,surreal,1315040444 +153772,90345,sci-fi,1325192126 +153772,90405,sci-fi,1392827886 +153772,90405,thought-provoking,1392827889 +153772,91500,unrealistic,1381526938 +153772,94278,nudity (topless),1404044597 +153772,94278,vica kerekes,1404044582 +153772,97938,twist ending,1398669012 +153772,103253,dystopia,1392828010 +153772,103253,science fiction,1392828014 +153772,103253,social commentary,1392828002 +153772,106920,artificial intelligence,1392624861 +153772,106920,Scarlett Johansson,1392624878 +153772,106920,sci-fi,1408749785 +153772,106920,thought-provoking,1392624883 +153772,108190,dystopia,1397325965 +153772,108727,Lars von Trier,1406666265 +153772,108981,Lars von Trier,1406666307 +153772,108981,Unexpected Ending,1406666303 +153772,109161,psychological,1402179351 +153772,109161,Roman Polanski,1402179336 +153772,109161,sexuality,1402179361 +153772,110730,impossible science,1408749684 +153772,110730,ridiculous,1408749706 +153772,110730,technophobic,1408749695 +153772,111759,action,1410187967 +153772,111759,sci-fi,1410187956 +153772,112871,Maria Flor,1406192293 +153772,112871,music,1406192267 +153773,260,drama,1442962977 +153773,260,greek myth,1442962987 +153773,260,sci-fi,1442962954 +153773,260,space epic,1442962966 +153773,260,space opera,1442963008 +153773,1046,coming out,1443046824 +153773,1046,council estate,1443046846 +153773,1046,Gay,1443046816 +153773,1046,london,1443046828 +153773,1046,working class,1443046835 +153773,1175,Black comedy,1443824270 +153773,1175,stylized,1443824274 +153773,1235,dark comedy,1443823935 +153773,1235,irreverent,1443823939 +153773,1235,May-December romance,1443823932 +153773,1625,David Fincher,1443047527 +153773,1625,michael douglas,1443047530 +153773,1625,paranoia,1443047535 +153773,1625,plot twist,1443047545 +153773,1625,Sean Penn,1443047538 +153773,1625,thriller,1443047540 +153773,1625,twist ending,1443047524 +153773,2076,Dennis Hopper,1446318794 +153773,2076,disturbing,1446318783 +153773,2076,quirky,1446318780 +153773,2076,sexual,1446318789 +153773,2076,suburbia,1446318797 +153773,2076,weird,1446318786 +153773,2318,dark humor,1443044084 +153773,2318,Todd Solondz,1443044093 +153773,2403,bad cop,1443038513 +153773,2403,post-traumatic stress disorder,1443038517 +153773,2403,Vietnam war veteran,1443038509 +153773,2469,time travel,1443276162 +153773,2710,"""found footage""",1444155939 +153773,2710,forest,1444155929 +153773,2710,Handycam,1444155917 +153773,2710,low budget,1444155932 +153773,2710,original,1444155925 +153773,2710,scary,1444155922 +153773,2871,backwoods horror,1443036829 +153773,2871,folk horror,1443036832 +153773,3039,anticapitalist,1444156481 +153773,3039,Business is the antagonist,1444156444 +153773,3039,capitalism,1444156414 +153773,3039,nurture vs nature,1444156434 +153773,3039,poverty,1444156451 +153773,3039,rags to riches,1444156459 +153773,3039,satire,1444156404 +153773,3039,share holders,1444156417 +153773,3039,switching places,1444156447 +153773,3090,class war,1443279105 +153773,3090,LABOR UNIONS,1443279087 +153773,3090,militants,1443279099 +153773,3090,pacificism,1443279119 +153773,3090,police violence,1443279094 +153773,3090,scabs,1443279127 +153773,3090,unions,1443279108 +153773,3145,Inspiring,1443039474 +153773,3145,marxist,1443039490 +153773,3145,paradigm shift,1443039501 +153773,3145,political,1443039482 +153773,3304,class war,1443469639 +153773,3304,corruption,1443469649 +153773,3304,union,1443469635 +153773,3304,union bureaucrats,1443469646 +153773,3363,coming of age,1443274841 +153773,3363,friendship,1443274850 +153773,3363,George Lucas,1443274845 +153773,3365,genocides,1452117401 +153773,3365,mythology,1452117439 +153773,3365,propaganda,1452117468 +153773,3365,racist,1452117410 +153773,3365,vengeance,1452117418 +153773,3365,Western,1452117428 +153773,3365,wooden,1452117525 +153773,3823,family,1443822914 +153773,3823,London,1443822912 +153773,3823,working class,1443822917 +153773,3911,dogs,1444155867 +153773,3911,improvised,1444155871 +153773,3911,mockumentary,1444155864 +153773,3967,coming of age,1443046632 +153773,3967,homosexuality,1443046621 +153773,3967,independent film,1443046629 +153773,3967,working class,1443046625 +153773,4553,conspiracy,1443043896 +153773,4553,consumerism,1443043909 +153773,4553,John Carpenter,1443043902 +153773,4553,sci-fi,1443043905 +153773,5269,based on a book,1444156279 +153773,5269,sexuality,1444156288 +153773,5269,teacher,1444156283 +153773,5269,teacher student relationship,1444156285 +153773,5275,depression,1443276449 +153773,5275,hobos,1443276424 +153773,5275,militants,1443276455 +153773,5275,union organisers,1443276433 +153773,5275,unions,1443276435 +153773,5475,Costa-Gavras,1450214935 +153773,5475,politics,1450214931 +153773,5475,tense,1450214938 +153773,5767,communism,1443047213 +153773,5859,backwoods horror,1443048011 +153773,5859,cajuns,1443048022 +153773,5859,paranoia,1443048037 +153773,5859,rednecks,1443048018 +153773,6509,ageism,1443048855 +153773,6509,immigration,1443048868 +153773,6509,love,1443048858 +153773,6509,migrants,1443048864 +153773,6509,poetry,1443048880 +153773,6509,racism,1443048853 +153773,6935,coup,1444515240 +153773,6935,inside story,1444515239 +153773,6935,resistance,1444515244 +153773,7042,amour fou,1443045299 +153773,7042,bohemian,1443045304 +153773,7042,mental illness,1443045289 +153773,7042,sexuality,1443045295 +153773,7792,conspiracy,1446153366 +153773,7792,paranoid,1446153370 +153773,7792,political,1446153377 +153773,8906,backwoods horror,1443826053 +153773,8906,cannibalism,1443826071 +153773,8906,colonialism,1443826060 +153773,8906,controversial,1443046327 +153773,8906,folk horror,1443826049 +153773,8906,gruesome,1443046331 +153773,8906,reality television,1443826040 +153773,8906,satire,1443046309 +153773,8906,social commentary,1443046315 +153773,8906,sociopaths,1443046319 +153773,25805,barge,1443035300 +153773,25805,cats,1443035308 +153773,25805,comedy,1443035306 +153773,25805,love,1443035297 +153773,25805,lyrical,1443035315 +153773,25805,poetry,1443035294 +153773,25805,river life,1443035303 +153773,25994,black list,1443047042 +153773,25994,communism,1443047020 +153773,25994,labour class,1443047026 +153773,25994,social justice,1443047030 +153773,25994,strike,1443047033 +153773,25994,trade unions,1443047053 +153773,25994,unions,1443047048 +153773,26131,algeria,1443468529 +153773,26131,colonial power,1443468509 +153773,26131,colonialism,1443468504 +153773,26131,France,1443468546 +153773,26131,national liberation,1443468514 +153773,26131,racism,1443468564 +153773,26131,repression,1443468559 +153773,26131,revolutionary,1443468536 +153773,26131,terrorism,1443468517 +153773,26366,class war,1443468376 +153773,26366,hidden history,1443468388 +153773,26366,labor unions,1443468364 +153773,26366,militants,1443468372 +153773,26366,strike,1443468366 +153773,26366,unions,1443468370 +153773,26505,glasgow,1443046776 +153773,32280,Brecht,1451945964 +153773,32280,criminal underworld,1451946006 +153773,32280,great sets,1451945977 +153773,32280,London,1451946024 +153773,32280,musical,1451945969 +153773,32954,aborigines,1443275924 +153773,32954,australia,1443275918 +153773,32954,racism,1443275898 +153773,32954,return of the repressed,1443275948 +153773,33166,cultural conflict,1443045391 +153773,33166,multiple storylines,1443045388 +153773,33166,social commentary,1443045385 +153773,33880,internet dating,1443827231 +153773,33880,quirky,1443827238 +153773,34645,backwoods horror,1443825847 +153773,34645,cult classic,1443825852 +153773,34645,folk horror,1443825835 +153773,34645,rednecks,1443825841 +153773,34645,religious cult,1443825838 +153773,38881,dystopian,1451946399 +153773,38881,satire,1451946402 +153773,41527,middle east,1444515534 +153773,41527,palestine,1444515527 +153773,41527,terrorism,1444515529 +153773,42094,frankenstein,1447628525 +153773,43009,backwoods horror,1443045026 +153773,43009,calvary,1443045044 +153773,43009,french,1443045030 +153773,43009,horror,1443045038 +153773,43009,religious,1443045034 +153773,43009,surreal,1443045040 +153773,48972,Mental Institution,1446319031 +153773,49856,Intriguing,1443038401 +153773,49856,revenge,1443038398 +153773,55272,nightclub,1445902195 +153773,55721,corruption,1443044061 +153773,55721,Favelas,1443044065 +153773,55814,disability,1445891573 +153773,55814,paralysis,1445891568 +153773,58007,aboriginal culture,1444512653 +153773,58007,devon,1444512643 +153773,58007,sand dunes,1444512645 +153773,58007,tense,1444512669 +153773,58007,uncomfortable,1444512665 +153773,64499,Che Guevara,1444515116 +153773,64499,guerilla war,1444515124 +153773,64499,guerillas,1444515127 +153773,64499,uprising,1444515131 +153773,65660,dreams,1445902970 +153773,65660,migrants,1445902974 +153773,65660,working class,1445902977 +153773,66344,show business,1443825805 +153773,73017,conspiracy,1446851714 +153773,73017,occult,1446851721 +153773,73017,Victorian era,1446851694 +153773,74706,long,1443275743 +153773,74706,paris commune,1443275760 +153773,74706,Peter Watkins,1443275746 +153773,74706,revolution,1443275755 +153773,76860,Australian,1444513316 +153773,76860,backwoods horror,1444513328 +153773,78270,bourgeois,1443038873 +153773,78270,disintegration,1443038890 +153773,78270,may 68,1443038862 +153773,78270,political,1443038894 +153773,78270,revolution,1443038865 +153773,79796,allegory,1445901305 +153773,79796,cgi,1445901276 +153773,79796,cheesy,1445901258 +153773,79796,implausible,1445901284 +153773,79796,romance,1445901261 +153773,79796,Romans,1445901267 +153773,80917,aliens,1443043945 +153773,80917,mexico,1443043950 +153773,80917,social commentary,1443043964 +153773,82324,despair,1443826239 +153773,82324,impotence,1443826243 +153773,82324,peasants,1443826276 +153773,82324,poverty,1443826248 +153773,82324,rural life,1443826245 +153773,82324,turkey,1443826252 +153773,84248,class war,1443469601 +153773,84248,strike,1443469598 +153773,85540,rendition,1444512992 +153773,85540,war on terror,1444512996 +153773,86096,miserable,1443824920 +153773,87298,dark humor,1443276093 +153773,89343,backwoods horror,1443035052 +153773,89343,folk horror,1443035057 +153773,89343,fundamentalists,1443035067 +153773,90374,cult,1443824823 +153773,90374,dysfunctional family,1443824835 +153773,90374,family,1443824829 +153773,90376,disturbing,1443035948 +153773,90376,psychological,1443035959 +153773,90376,tilda swinton,1443035952 +153773,95088,journalism,1443823146 +153773,95088,time travel,1443823150 +153773,97933,Palestine,1443824462 +153773,97933,resistance,1443824464 +153773,100159,britain,1443048452 +153773,100159,caravan holiday,1444156023 +153773,100159,dark humour,1444156018 +153773,100159,psychopath,1443048435 +153773,107543,generic,1446936986 +153773,107543,predictable,1446936969 +153773,107543,scandinoir,1446936967 +153773,108778,amoral,1443822777 +153773,108778,cruising,1443822764 +153773,108778,France,1443822799 +153773,108778,jealousy,1443822812 +153773,108778,lust,1443822781 +153773,108778,summer,1443822771 +153773,108778,swimming,1443822796 +153773,112183,dark,1445890877 +153773,112183,single shot,1445890855 +153773,112183,surreal,1445890873 +153773,112183,theater,1445890866 +153773,114028,lgbt,1443046956 +153773,114028,liberation,1443046948 +153773,114028,miners,1443046941 +153773,114028,NUM,1443046938 +153773,114028,queer,1443046958 +153773,114028,strike,1443046944 +153773,114028,trade unions,1443046934 +153773,114028,unions,1443046930 +153773,116897,anthology,1443823823 +153773,116897,black comedy,1443823818 +153773,116897,dark humor,1443823805 +153773,116897,revenge,1443823812 +153773,117533,surveillance,1443822150 +153773,117533,whistleblower,1443822153 +153773,121231,Creepy,1443821868 +153773,121231,Urban Decay,1443821875 +153773,127652,racism,1450214494 +153773,127652,Rostock,1450214508 +153773,127652,scapegoating,1450214497 +153773,141739,jim allen,1446415855 +153773,143192,amateur actors,1446415956 +153773,143192,class war,1446415948 +153773,143192,factory,1443469480 +153773,143192,loachian,1443469468 +153773,143192,occupation,1446415953 +153773,143192,strike,1446415951 +153773,145919,factory,1446416514 +153773,145919,union,1446416507 +153790,555,action,1210187244 +153790,596,cartoon,1210187290 +153790,596,disney,1210187290 +153790,1120,biographical,1210187315 +153790,1120,drama,1210187315 +153790,1215,comedy,1210187228 +153790,1215,satirical,1210187228 +153790,1747,politics,1210187191 +153794,380,funny,1270206546 +153794,502,miagi,1284491840 +153794,502,monks,1284491846 +153794,502,pat morita,1284491834 +153794,502,romance,1284491825 +153794,541,boring,1318838524 +153794,858,Al Pacino,1270584969 +153794,858,classic,1270585052 +153794,858,Italian,1270585034 +153794,858,mafia,1270585010 +153794,858,Marlon Brando,1270584959 +153794,858,New York City,1270585062 +153794,858,organized crime,1270585020 +153794,858,story,1270584927 +153794,924,boring,1343637729 +153794,924,soundtrack,1346429527 +153794,1199,surreal,1415314512 +153794,1199,weird,1415314505 +153794,1955,acting,1419289801 +153794,1955,drama,1419289810 +153794,2012,Christopher LLoyd,1296163672 +153794,2012,Jules Verne,1296163624 +153794,2012,Michael J. Fox,1296163662 +153794,2023,Al Pacino,1271528140 +153794,2095,classic,1304849179 +153794,2095,dog,1304849188 +153794,2095,elwood,1304849192 +153794,2095,nostalgic,1304849184 +153794,2422,bonsai,1286102711 +153794,2422,karate,1286102740 +153794,2422,Ralph Macchio,1286103636 +153794,2422,story,1286103613 +153794,2422,stupidity,1286102724 +153794,2672,nested virtualization,1294819671 +153794,2672,thriller,1294819712 +153794,3623,action,1270149475 +153794,3623,suspense,1270149481 +153794,3953,boring,1246430694 +153794,3953,ending,1246430694 +153794,3953,talky,1246430694 +153794,3953,terrible,1246430718 +153794,4010,funny,1336634497 +153794,4010,insightful,1336634492 +153794,4010,richard pryor,1336634475 +153794,4226,boring,1246430505 +153794,4226,ending,1246430623 +153794,4226,impossible to understand,1246430580 +153794,4226,nonlinear,1246430525 +153794,4226,unclear,1246430601 +153794,4662,hillarious,1254682970 +153794,5101,boring,1281298363 +153794,5101,four letter words,1281298390 +153794,5101,new orleans,1281298358 +153794,5101,not funny,1281298369 +153794,5101,obscene,1281298338 +153794,5101,richard pryor,1281298353 +153794,5500,classic,1270214965 +153794,5500,funny,1270214952 +153794,5500,silly,1270214957 +153794,5500,spoof,1270214961 +153794,6157,superhero,1297317447 +153794,6889,bears,1284365261 +153794,6889,disney,1284365285 +153794,6889,moose,1284365272 +153794,6889,sad,1284365250 +153794,7021,funny,1271570090 +153794,7021,good idea,1271570105 +153794,7021,Martin Short,1271570128 +153794,8666,cats,1336767880 +153794,8666,halle berry,1336767857 +153794,8666,superhero,1336767841 +153794,30850,archaic language,1371675221 +153794,45672,philosophy,1357647386 +153794,48304,atrocities,1273308539 +153794,48304,chase,1273309814 +153794,48304,cruelty,1273309939 +153794,48304,disgusting,1273308698 +153794,48304,disturbing,1273308682 +153794,48304,gore,1273308501 +153794,48304,gruesome,1273308517 +153794,48304,hard to watch,1273308617 +153794,48304,history,1273309274 +153794,48304,human sacrifice,1273309223 +153794,48304,killing,1273308527 +153794,48304,maya,1273308552 +153794,48304,maya civilization,1273309283 +153794,48304,maya language,1273308556 +153794,48304,mel gibson,1273308590 +153794,48304,murder,1273308507 +153794,48304,native mexicans,1273308575 +153794,48304,revenge,1273309819 +153794,48304,ritual killing,1273309215 +153794,48304,sad,1273308670 +153794,48304,sadism,1273309943 +153794,48304,savagery,1273309232 +153794,48304,senseless violence,1273308600 +153794,48304,suspense,1273308581 +153794,48304,violence,1273308496 +153794,48982,animation,1280171904 +153794,48982,beautiful,1280171899 +153794,48982,funny,1280171919 +153794,48982,parodies,1280171909 +153794,48982,romantic,1280171923 +153794,49272,action,1271868740 +153794,49272,ending,1271868707 +153794,49272,James Bond,1271868755 +153794,49272,poker,1271868729 +153794,49272,thriller,1271868714 +153794,50742,boring,1294747602 +153794,52973,Drugs,1297984025 +153794,52973,Nudity,1297984041 +153794,54286,action,1387032623 +153794,54286,suspense,1387032616 +153794,54286,thriller,1387032631 +153794,57532,300,1357305885 +153794,57532,carmen electra,1357305951 +153794,57532,not funny,1357305891 +153794,57532,vulgar,1357305877 +153794,58025,action,1280614702 +153794,58025,concept,1280614695 +153794,58025,teleportation,1280614709 +153794,58972,children's movie,1271273675 +153794,60684,alternate reality,1281874782 +153794,60684,long,1281874754 +153794,60684,music,1281874769 +153794,60684,soundtrack,1281874765 +153794,60684,suspense,1281874759 +153794,60756,ending,1256674767 +153794,60756,funny,1256674771 +153794,63113,James Bond,1295597443 +153794,63113,plot,1295597430 +153794,63113,revenge,1295597410 +153794,64957,cinematography,1255880663 +153794,64957,music,1255880655 +153794,64957,premise,1255880620 +153794,64957,sad,1255880620 +153794,64957,very long,1255880638 +153794,64969,funny,1246222687 +153794,68659,americana,1286703999 +153794,68659,geek,1286704008 +153794,68659,kristen bell,1286704027 +153794,68659,star trek,1286703994 +153794,68659,star wars,1286703989 +153794,68659,william shatner,1286704045 +153794,68954,animated,1289974640 +153794,68954,boring,1287740075 +153794,68954,dogs,1289974624 +153794,68954,sad,1287740069 +153794,68954,slow,1287740092 +153794,69481,bomb squad,1276011837 +153794,69481,iraq,1276011845 +153794,69481,procedural,1276011849 +153794,69481,thriller,1276011858 +153794,69481,war,1276011840 +153794,71108,black and white,1276204924 +153794,71108,ending,1276204897 +153794,71108,mystery,1276204914 +153794,71108,suspense,1276204909 +153794,71156,absurd,1279748509 +153794,71156,pointless,1279748502 +153794,71464,ending,1271528706 +153794,71464,faith,1271528696 +153794,71464,judaism,1271528688 +153794,71520,atheism,1373733882 +153794,71520,funny,1373733871 +153794,72378,coincidences,1275513875 +153794,72378,kitsch,1275513777 +153794,72378,science fiction,1275513746 +153794,72378,speciel effects,1275513726 +153794,72378,thriller,1275513752 +153794,72489,blood,1284365133 +153794,72489,gore,1284365124 +153794,72489,ninja,1284365164 +153794,72489,poor lighting,1284365147 +153794,72489,violence,1284365176 +153794,74458,infanticide,1337755478 +153794,74458,Leonardo DiCaprio,1337755514 +153794,74458,Period piece,1337755446 +153794,74458,sad,1337796664 +153794,74458,surreal,1337796837 +153794,74458,twist ending,1337755424 +153794,74458,World War II,1337796869 +153794,74827,Arabic,1278919356 +153794,74827,Israel,1278919364 +153794,75395,gore,1318838495 +153794,76251,hit girl,1303305062 +153794,76251,nicolas cage,1303305053 +153794,76251,revenge,1303305078 +153794,76251,suspense,1303305100 +153794,76251,thriller,1303305092 +153794,76251,weapons,1303305074 +153794,79185,action,1336623465 +153794,79185,meaningless title,1336634195 +153794,79185,tom cruise,1336623519 +153794,79702,artistic,1313751175 +153794,79702,video games,1313751172 +153794,81788,crime drama,1294653469 +153794,81788,Elizabeth Banks,1294653556 +153794,81788,good ending,1294653501 +153794,81788,procedural,1294653464 +153794,81788,sad,1294653450 +153794,81788,thriller,1294653447 +153794,83480,Christianity,1318838268 +153794,83480,knights,1318838229 +153794,83480,supernatural,1318838249 +153794,83480,suspense,1318838219 +153794,88744,apes,1414532607 +153794,88744,cgi,1414532607 +153794,88744,epocalipse,1414532602 +153794,88744,San Francisco,1414532607 +153794,88744,virus,1414532602 +153794,88785,nudity,1338105282 +153794,90405,concept,1322564368 +153794,90405,suspense,1322564355 +153794,90717,Ben Stiller,1336838119 +153794,90717,Eddie Murphy,1336838114 +153794,90717,silly,1336838125 +153794,91535,motorcycle chase,1387530517 +153794,91535,weak story,1387530544 +153794,92198,suspense,1337289451 +153794,93510,comedy,1337982462 +153794,93510,funny,1337982365 +153794,93510,high school,1337982404 +153794,94018,alien invasion,1346138359 +153794,94018,heroism,1346138346 +153794,94018,implausible,1346138402 +153794,94018,navy,1346138407 +153794,94018,sci-fi,1346138369 +153794,94018,special effects,1346138385 +153794,95441,cocaine,1403421107 +153794,95441,drugs,1403421090 +153794,98809,slow,1422947221 +153794,98809,special effects,1422947216 +153794,98809,too long,1422947311 +153794,100498,demolition derby,1393537655 +153794,106491,supernatural,1399353914 +153794,109226,acting,1400745326 +153794,109226,direction,1400745326 +153794,109226,horror,1400745336 +153794,112370,multiple villains,1423310152 +153794,112370,Special Effects,1423310182 +153794,112788,Drugs,1444372926 +153794,112897,bad sequel,1435007071 +153794,112897,mel gibson,1435007053 +153794,112897,no story,1435007059 +153848,1220,awesome,1430421940 +153848,1265,old,1430421975 +153862,6867,charming,1452388706 +153862,6867,quirky,1452388690 +153862,6867,satirical,1452388703 +153862,6867,understated,1452388698 +153877,2208,Alfred Hitchcock,1344384427 +153877,3510,Ham Radio,1332346912 +153877,4226,complicated,1343065195 +153877,4226,investigation,1343065189 +153877,4226,nonlinear,1343065180 +153877,4226,psychological,1343065185 +153877,4226,psychology,1343065179 +153877,32587,atmospheric,1343065101 +153877,32587,Bruce Willis,1343065095 +153877,32587,multiple storylines,1343065092 +153877,32587,Quentin Tarantino,1343065089 +153877,54190,Beatles,1372824171 +153877,54190,Beatles soundtrack,1372824173 +153877,54190,The Beatles,1372824175 +153877,84152,thought provoking,1345305436 +153878,318,bittersweet,1431934514 +153878,318,friendship,1431934514 +153878,318,jailbreak,1431934514 +153878,593,independent woman,1427148267 +153878,593,psychothriller,1427148267 +153878,593,suspense,1427148267 +153878,116799,based on a book,1424804329 +153878,116799,Thomas Pynchon,1424804317 +153879,51662,ummarti2007,1176924392 +153882,260,Overrated,1444074460 +153882,260,too long,1444074468 +153882,296,violence,1444076801 +153882,296,violent,1444076807 +153882,674,sexy,1452391414 +153882,858,violence,1444076860 +153882,948,long,1452391224 +153882,2478,Chevy Chase,1452392207 +153882,2478,Steve Martin,1452392195 +153882,3338,archival footage,1452391988 +153882,3338,Criterion,1452391970 +153882,3868,fart jokes,1452392519 +153882,4308,musical,1444077005 +153882,4361,cross dressing,1452391558 +153882,4361,Dustin Hoffman,1452391544 +153882,5669,agenda,1444077709 +153882,6452,"sexist,",1448301218 +153882,6874,violence,1444076939 +153882,7341,kidnapping,1452391477 +153882,81910,agenda,1444077842 +153882,91597,agenda,1444077532 +153882,101850,murder,1444077752 +153885,55247,adventure,1446622291 +153885,55247,freedom,1446622248 +153885,55247,road trip,1446622240 +153885,55247,self discovery,1446622259 +153885,55247,travel,1446622390 +153885,106918,Iceland,1446830144 +153885,106918,photography,1446830153 +153885,106918,travel,1446830142 +153901,56563,design,1266434683 +153901,56563,typography,1266434689 +153902,88744,not realistic superapes,1358338538 +153915,5882,animation,1322873449 +153938,4993,fantasy,1451870471 +153938,5618,anime,1451870443 +153941,260,classic,1440986196 +153941,260,good science fictional technology,1440986189 +153941,260,oldschool,1440986178 +153978,3676,National Film Registry,1296204035 +153978,5449,Adam Sandler,1296202619 +153993,593,drama,1425243907 +153993,593,mystery,1425243907 +153993,593,serial killer,1425243907 +153993,593,thriller,1425243907 +153997,89774,fighting,1452966556 +153997,115713,tech,1452966590 +154001,353,bittersweet,1243056109 +154001,353,cult film,1243056105 +154001,353,film noir,1243056103 +154001,353,ghosts/afterlife,1243056101 +154001,353,gothic,1243056092 +154001,353,halloween,1243056093 +154001,353,revenge,1243056239 +154001,353,romance,1243056096 +154001,353,stylized,1243056100 +154001,541,cyberpunk,1243056866 +154001,541,dystopia,1243056860 +154001,541,memory,1243056863 +154001,541,Philip K. Dick,1243056857 +154001,541,sci-fi,1243056864 +154001,1199,atmospheric,1243055981 +154001,1199,dark,1243055979 +154001,1199,dark comedy,1243055971 +154001,1199,dreamlike,1243055969 +154001,1199,dystopia,1243055972 +154001,1199,satirical,1243055977 +154001,1213,crime,1243054472 +154001,1213,dark comedy,1243054461 +154001,1213,disturbing,1243054483 +154001,1213,gritty,1243054463 +154001,1213,mafia,1243054450 +154001,1213,Martin Scorsese,1243054480 +154001,1213,Oscar (Best Supporting Actor),1243054477 +154001,1213,Robert De Niro,1243054453 +154001,1213,Samuel L. Jackson,1243054454 +154001,1213,violent,1243054457 +154001,1213,visceral,1243054459 +154001,1748,aliens,1243056907 +154001,1748,amnesia,1243056908 +154001,1748,creepy,1243056901 +154001,1748,dark,1243056903 +154001,1748,hallucinatory,1243056916 +154001,1748,identity,1243056919 +154001,1748,mindfuck,1243056900 +154001,1748,Post apocalyptic,1243056894 +154001,1748,steampunk,1243056895 +154001,1748,stylized,1243056909 +154001,1748,surreal,1243056913 +154001,1748,thought-provoking,1243056911 +154001,1884,biopic,1243057795 +154001,1884,disturbing,1243057798 +154001,1884,hallucinatory,1243057762 +154001,1884,Hunter S. Thompson,1243057760 +154001,1884,satirical,1243057774 +154001,1884,Terry Gilliam,1243057765 +154001,2858,dark comedy,1243056977 +154001,2858,powerful ending,1243056983 +154001,2858,social commentary,1243056981 +154001,2858,surrealism,1243056979 +154001,3108,central park,1243055093 +154001,3108,chivalrous,1243055075 +154001,3108,deep,1243055073 +154001,3108,Gilliam,1243055047 +154001,3108,homeless,1243055062 +154001,3108,mental illness,1243055048 +154001,3108,mental imbalance,1243055069 +154001,3108,Oscar (Best Supporting Actress),1243055086 +154001,3108,Robin Williams,1243055090 +154001,3108,Terry Gilliam,1243055053 +154001,3108,thought-provoking,1243055097 +154001,4226,cerebral,1243054730 +154001,4226,nonlinear,1243054719 +154001,4226,psychological,1243054737 +154001,4226,short-term memory loss,1243054725 +154001,4262,Al Pacino,1243054970 +154001,4262,corruption,1243054989 +154001,4262,crime,1243054954 +154001,4262,gangster,1243054964 +154001,4262,guns,1243054981 +154001,4262,organized crime,1243054956 +154001,4262,remake,1243054975 +154001,4262,violence,1243054958 +154001,4262,violent,1243054977 +154001,4878,dreamlike,1243055585 +154001,4878,enigmatic,1243055587 +154001,4878,good dialogue,1243055590 +154001,4878,hallucinatory,1243055588 +154001,4878,mental illness,1243055582 +154001,4878,psychology,1243055593 +154001,4878,sci-fi,1243055579 +154001,4878,surreal,1243055576 +154001,4878,teen,1243055578 +154001,4878,thought-provoking,1243055573 +154001,4878,time travel,1243055575 +154001,6874,Japan,1243055203 +154001,6874,Kick-Butt Women,1243055186 +154001,6874,Quentin Tarantino,1243055184 +154001,6874,revenge,1243055196 +154001,6874,stylized,1243055193 +154001,6874,violence,1243055188 +154001,6874,violent,1243055190 +154001,6874,visceral,1243055191 +154001,7123,author:william s. burroughs,1243055693 +154001,7123,David Cronenberg,1243055691 +154001,7123,disturbing,1243055708 +154001,7123,dreamlike,1243055690 +154001,7123,drugs,1243055697 +154001,7123,hallucinatory,1243055709 +154001,7123,Madness,1243055701 +154001,7123,weird,1243055705 +154001,7360,gory fun,1243056060 +154001,7360,Zack Snyder,1243056071 +154001,7360,Zombie Movie,1243056050 +154001,7387,CANNIBALS,1243056009 +154001,7387,disturbing,1243056031 +154001,7387,END OF THE WORLD,1243056011 +154001,7387,George A. Romero,1243056012 +154001,7387,Goblin,1243056035 +154001,7387,horror,1243056014 +154001,7387,Romero,1243056018 +154001,7387,visceral,1243056028 +154001,7387,zombies,1243056015 +154001,7438,Quentin Tarantino,1243055223 +154001,7438,quirky,1243055232 +154001,7438,revenge,1243055230 +154001,7438,Tarantino,1243055221 +154001,7438,violence,1243055235 +154001,7438,violent,1243055233 +154001,32587,artistic,1243055271 +154001,32587,black comedy,1243055276 +154001,32587,Bruce Willis,1243055285 +154001,32587,cannibalism,1243055269 +154001,32587,Quentin Tarantino,1243055256 +154001,32587,violence,1243055264 +154001,44191,based on a comic,1243055134 +154001,44191,comic book,1243055132 +154001,44191,dystopia,1243055124 +154001,44191,sci-fi,1243055122 +154001,44191,super-hero,1243055137 +154001,44191,thought-provoking,1243055129 +154001,48780,atmospheric,1243054860 +154001,48780,dark,1243054850 +154001,48780,David Bowie,1243054842 +154001,48780,steampunk,1243054855 +154001,55257,Uwe Boll,1243058501 +154001,58559,gritty,1243054811 +154001,60684,author:Alan Moore,1243053955 +154001,60684,Comic Movie,1243054044 +154038,260,Classic,1443450142 +154038,260,old,1443450246 +154038,260,sci-fi,1443450214 +154044,555,dark comedy,1314782269 +154044,555,dialogue,1314782279 +154044,910,Jack Lemmon,1270841621 +154044,910,Tony Curtis,1270841621 +154044,1917,cheesy (good),1314780344 +154044,2019,Akira Kurosawa,1270841538 +154044,4848,Atmospheric,1314782141 +154044,4848,David Lynch,1314782145 +154044,4848,lesbian,1314782163 +154044,4848,movie business,1314782167 +154044,4848,mystery,1314782169 +154044,4848,sexual,1314782172 +154044,4848,surreal,1314782152 +154044,26157,so bad it's good,1314780824 +154044,26157,unintentionally funny,1314780824 +154044,32587,film noir,1270944188 +154044,51662,cheesy but good,1314780494 +154044,52281,2 movies in 1,1314782340 +154044,52281,Quentin Tarantino,1314782322 +154044,52281,Sci-fi,1314782343 +154044,52281,strippers,1314782330 +154044,52281,zombies,1314782328 +154044,55820,coen brothers,1314782491 +154044,55820,crime,1314782477 +154044,55820,drama,1314782479 +154044,55820,great acting,1314782460 +154044,55820,plot twist,1314782469 +154044,55820,suspense,1314782467 +154044,55820,thriller,1314782465 +154044,55820,Tommy Lee Jones,1314782489 +154044,55820,twist ending,1314782463 +154044,57669,Colin Farrell,1314782437 +154044,57669,dark comedy,1314782398 +154044,57669,drama,1314782407 +154044,57669,drugs,1314782407 +154044,57669,friendship,1314782432 +154044,57669,stylized,1314782444 +154051,356,emotionally captivating,1435667517 +154051,356,great acting,1435667517 +154051,356,inspirational,1435667517 +154051,1204,a gripping story of Arabic honor,1435983116 +154051,1204,Omar Sharif was great,1435983077 +154051,1272,great acting,1435982986 +154051,1272,strong leadership,1435983014 +154051,141058,corruption,1440660491 +154051,141058,exploitation,1440660465 +154077,260,"action, scifi",1444825189 +154091,1247,1960s,1372173918 +154099,260,Action packed,1430866441 +154099,260,Science Fiction,1430866450 +154144,54286,Matt Damon,1437067403 +154144,54286,suspense,1437067441 +154152,260,action,1438272507 +154152,260,sci-fi,1438272502 +154163,7018,Legal,1446352989 +154163,7018,Thriller,1446352982 +154163,84392,Crime,1446353016 +154163,84392,Legal,1446353020 +154168,260,action,1432682693 +154181,1101,non-existant storyline,1180964144 +154181,1101,testosteroney - the sweetest treat,1180964203 +154181,1101,though bad for your teeth,1180964203 +154181,5792,one of the greatest scripts of the last 10 years,1180964549 +154181,5792,owned,1180964476 +154194,260,EPIC,1441038506 +154194,260,sci-fi,1441038484 +154195,50,organized crime,1365188216 +154195,50,twist ending,1365188219 +154195,110,based on a true story,1365189568 +154195,111,social commentary,1365188081 +154195,150,based on a book,1365188441 +154195,150,based on a true story,1365188438 +154195,223,quirky,1365189161 +154195,296,dark comedy,1365188015 +154195,296,nonlinear,1365188034 +154195,296,Quentin Tarantino,1365188037 +154195,318,based on a book,1365187898 +154195,318,psychology,1365187904 +154195,318,twist ending,1365188203 +154195,337,based on a book,1365189124 +154195,337,coming of age,1365189127 +154195,527,based on a true story,1365187913 +154195,535,dark comedy,1365189831 +154195,535,multiple storylines,1365189834 +154195,608,based on a true story,1365188136 +154195,608,Coen Brothers,1365188068 +154195,608,dark comedy,1365188074 +154195,778,based on a book,1365189451 +154195,778,dark comedy,1365189454 +154195,1060,funny,1365189108 +154195,1060,Vince Vaughn,1365189105 +154195,1079,dark comedy,1365189615 +154195,1079,quirky,1365189618 +154195,1089,nonlinear,1365188027 +154195,1089,organized crime,1365188019 +154195,1089,Quentin Tarantino,1365188022 +154195,1103,coming of age,1365188886 +154195,1193,based on a book,1365188051 +154195,1193,psychological,1365188055 +154195,1203,classic,1365188271 +154195,1203,social commentary,1365188267 +154195,1245,atmospheric,1365188110 +154195,1245,Coen Brothers,1365188088 +154195,1245,dark comedy,1365188104 +154195,1246,friendship,1365189605 +154195,1246,philosophy,1365189603 +154195,1259,based on a book,1365189642 +154195,1259,coming of age,1365189647 +154195,1259,Stephen King,1365189639 +154195,1307,classic,1365187969 +154195,1307,friendship,1365187966 +154195,1466,based on a true story,1365189581 +154195,1466,organized crime,1365189577 +154195,1500,classic,1365552179 +154195,1500,dark comedy,1365552176 +154195,1500,John Cusack,1365552192 +154195,1704,psychology,1365189496 +154195,1729,based on a book,1365189077 +154195,1729,dark comedy,1365189072 +154195,1729,Quentin Tarantino,1365189074 +154195,1732,Coen Brothers,1365189251 +154195,1732,cult film,1365189256 +154195,1732,dark comedy,1365189254 +154195,1961,based on a true story,1365189511 +154195,1961,dark comedy,1365189508 +154195,1968,cult film,1365188905 +154195,2020,based on a book,1365551989 +154195,2020,time period,1365552019 +154195,2291,dark comedy,1365188737 +154195,2502,cult film,1365189223 +154195,2502,dark comedy,1365189225 +154195,2502,satire,1365189228 +154195,2762,psychological,1365189462 +154195,2762,twist ending,1365189459 +154195,2918,comedy,1365189434 +154195,2918,coming of age,1365189436 +154195,2918,High School,1365189431 +154195,3104,comedy,1365189686 +154195,3362,dark comedy,1365188121 +154195,3362,true story,1365188118 +154195,3481,based on a book,1365189415 +154195,3481,comedy,1365189412 +154195,3481,quirky,1365189409 +154195,4326,based on a true story,1365188824 +154195,4326,Oscar (Best Cinematography),1365188821 +154195,4326,true story,1365188817 +154195,4508,based on a true story,1365188604 +154195,6440,Coen Brothers,1365188001 +154195,6440,disturbing,1365188157 +154195,6440,quirky,1365188153 +154195,6711,atmospheric,1365189095 +154195,6711,friendship,1365189092 +154195,6870,based on a book,1365189711 +154195,6870,twist ending,1365189714 +154195,7263,based on a true story,1365188543 +154195,7263,hockey,1365188522 +154195,7263,Olympics,1365188530 +154195,7263,Sports,1365188526 +154195,30707,social commentary,1365189725 +154195,46578,dark comedy,1365188768 +154195,46578,social commentary,1365188771 +154195,46578,twist ending,1365188774 +154195,68157,dark comedy,1365188754 +154195,68157,Quentin Tarantino,1365188757 +154195,68157,twist ending,1365188760 +154195,77455,documentary,1365376405 +154195,93512,relationships,1365188639 +154200,72113,coming of age,1306939317 +154200,74324,autism,1306995573 +154200,74324,biography,1306995588 +154200,74324,disability,1306995592 +154200,74324,genius,1306995578 +154200,74324,great soundtrack,1306995595 +154200,74324,made for TV,1306995610 +154200,74324,mental illness,1306995580 +154200,74324,science,1306995614 +154216,1222,anti-war,1240863462 +154216,1222,Kubrick,1240863456 +154216,4485,guilty pleasure,1222205405 +154241,260,galactic,1440272888 +154241,260,sci-fi,1440272866 +154252,32,time travel,1151930973 +154252,2431,Red mouse,1151930926 +154252,5014,pretty sucky,1151930891 +154257,79132,clever,1447235507 +154257,79132,twist ending,1447235500 +154257,92259,emotional,1447235458 +154257,92259,inspirational,1447235450 +154295,260,fantasy,1431437296 +154295,260,sci-fi,1431437289 +154297,132798,Emma Watson,1440737735 +154321,48516,not as good as infernal affairs,1204613398 +154324,1722,007,1337196306 +154324,1722,james bond,1337196309 +154324,1831,Gary Oldman,1337277529 +154324,1831,tv remake,1337277533 +154324,1831,weak plot,1337277536 +154324,2804,leg lamp,1337190060 +154324,5944,Star Trek,1337195948 +154324,34405,quirky,1337175024 +154324,34405,witty,1337175021 +154324,40629,based on a book,1337179015 +154324,40629,Classic,1337179011 +154324,40629,great soundtrack,1337179005 +154324,40629,Jane Austen,1337178998 +154324,40629,Keira Knightley,1337179000 +154324,41566,based on book,1337183407 +154324,41566,C.S. Lewis,1337183394 +154324,41566,christianity,1337183418 +154324,41566,good versus evil,1337183399 +154324,58559,Batman,1337182947 +154324,58559,corruption,1337182968 +154324,58559,serial killer,1337182936 +154324,58559,superhero,1337182956 +154324,89745,Gwyneth Paltrow,1337178631 +154324,89745,joss whedon,1337178616 +154324,89745,Robert Downey Jr.,1337178619 +154324,89745,superhero,1337178622 +154324,89745,superhero team,1337178626 +154334,1674,good casting,1336232407 +154335,260,original plot,1436105248 +154335,260,space adventure,1436105260 +154335,2019,chivalry,1436106238 +154335,2019,epic,1436106245 +154335,7482,kung fu,1436107856 +154335,64716,hopeless love,1436106029 +154341,2413,adapted from:game,1427061304 +154341,2413,alternate endings,1427061272 +154341,2413,hilarious,1427061295 +154341,2413,murder,1427061277 +154341,2413,quirky,1427061279 +154341,2413,Tim Curry,1427061308 +154341,2413,twist endings,1427061290 +154341,2712,christmas,1326189287 +154341,2712,heavy handed,1326189318 +154341,2712,illuminati,1326189256 +154341,2712,masks,1326189300 +154341,2712,motifs,1326189282 +154341,2712,secret societies,1326189275 +154341,46976,quirky,1427064338 +154341,46976,Will Ferrell,1427064340 +154341,79702,chiptunes,1297037977 +154341,79702,comic books,1297037977 +154341,79702,video games,1297037977 +154341,82461,alternate reality,1297038089 +154341,82461,computers,1297038089 +154341,82461,futuristic,1297038089 +154341,82461,stylized,1297038066 +154341,82461,techno,1297038089 +154341,82461,technology,1297038089 +154341,82461,video games,1297038089 +154341,85510,mind control,1326189526 +154341,85510,mindfuck,1326189444 +154341,85510,soundtrack,1326189450 +154341,85510,stylized,1326189468 +154341,85510,video games,1326189444 +154341,85510,war,1326189476 +154341,109487,artificial intelligence,1437758039 +154341,109487,bad dialogue,1437758111 +154341,109487,corny,1437758050 +154341,109487,physics,1437758033 +154341,109487,plot holes,1437758047 +154341,109487,relativity,1437758068 +154341,109487,sci-fi,1437758086 +154341,109487,science fiction,1437758077 +154341,109487,space,1437758079 +154341,109487,space travel,1437758094 +154341,109487,time-travel,1437758060 +154346,260,jedi,1434566417 +154346,260,space,1434566410 +154362,851,David Bowie,1239629741 +154362,1726,selfishness/unselfishness,1239629813 +154362,8973,love,1239476535 +154390,590,based on book,1237895646 +154390,590,Oscar (Best Music - Original Score),1237895651 +154390,920,classic,1237895619 +154390,920,Oscar (Best Picture),1237895612 +154444,2600,cronenberg,1152643524 +154444,2600,videodrome did it better,1152643526 +154470,1175,dark comedy,1443723896 +154470,1175,post-apocalyptic,1443723892 +154470,1175,stylized,1443723886 +154470,2997,dark comedy,1443723943 +154470,2997,hallucinatory,1443723980 +154470,2997,John Cusack,1443723973 +154470,2997,modern fantasy,1443723978 +154470,2997,quirky,1443723961 +154470,4973,quirky romantic,1443723851 +154470,5902,dark comedy,1443723991 +154470,5902,meryl streep,1443723999 +154470,5902,quirky,1443723995 +154470,5902,writers,1443724003 +154505,260,classic sci-fi,1441862964 +154505,260,Groundbreaking,1441862978 +154533,31804,Animated subtitles,1301133971 +154537,62250,based on a book,1306095753 +154537,87100,easily confused with other movie(s) (title),1308496687 +154538,260,Science Fiction,1432356163 +154548,5952,heroism,1443757845 +154548,115713,robots,1443757919 +154557,6934,ephemeral reality,1429448160 +154557,31878,spiritual realization,1429448275 +154559,97,confrontational,1304197545 +154559,97,drugs,1304197549 +154559,97,french,1304197538 +154559,97,social commentary,1304197535 +154564,296,guns,1429705737 +154564,296,mafia,1429705737 +154564,296,violence,1429705737 +154567,47,powerful ending,1313363936 +154567,47,twist ending,1313363929 +154567,47,violent,1313363952 +154567,50,complicated,1313363868 +154567,50,Dark,1313363884 +154567,50,funny,1313363892 +154567,50,heist,1313363907 +154567,50,organized crime,1313363911 +154567,50,twist ending,1313363872 +154567,296,action,1313364490 +154567,296,dark comedy,1313364431 +154567,296,dialogue,1313364475 +154567,296,multiple storylines,1313364434 +154567,296,organized crime,1313364495 +154567,296,Quentin Tarantino,1313364480 +154567,296,violence,1313364484 +154567,356,american dream,1313363317 +154567,356,bittersweet,1313363281 +154567,356,classic,1313363284 +154567,356,Oscar (Best Picture),1313363287 +154567,356,Sexuality,1313363291 +154567,356,vietnam war,1313363279 +154567,750,black comedy,1313364129 +154567,750,British,1313364148 +154567,750,military,1313364141 +154567,750,satirical,1313364135 +154567,858,Oscar (Best Picture),1313364614 +154567,880,Marlon Brando,1313363014 +154567,1244,classic,1313363034 +154567,1244,satire,1313363029 +154567,1244,Woody Allen,1313363025 +154567,1265,Bill Murray,1313363626 +154567,1265,romantic,1313363631 +154567,1265,sad people,1313363644 +154567,1265,time loop,1313363624 +154567,1580,comic book,1313364725 +154567,2318,dark comedy,1313363512 +154567,2318,dysfunctional family,1313363532 +154567,2318,loneliness,1313363529 +154567,2318,middle class,1313363557 +154567,2318,Philip Seymour Hoffman,1313363514 +154567,2318,rape,1313363527 +154567,2318,relationships,1313363517 +154567,2318,sad people,1313363548 +154567,2858,bittersweet,1313363697 +154567,2858,black comedy,1313363679 +154567,2858,dark comedy,1313363677 +154567,2858,drugs,1313363693 +154567,2858,mental illness,1313363691 +154567,2858,midlife crisis,1313363688 +154567,2858,Oscar (Best Picture),1313363685 +154567,2858,the plastic bag,1313363724 +154567,2858,thought-provoking,1313363682 +154567,7361,alternate reality,1313363086 +154567,7361,bittersweet,1313363079 +154567,7361,Charlie Kaufman,1313363089 +154567,7361,nonlinear,1313363084 +154567,8981,based on a play,1313363422 +154567,8981,dialogue,1313363420 +154567,8981,divorce,1313363434 +154567,8981,emotional,1313363464 +154567,8981,good acting,1313363424 +154567,8981,infidelity,1313363438 +154567,8981,Jude Law,1313363418 +154567,8981,julie roberts,1313363453 +154567,8981,London,1313363486 +154567,8981,Natalie Portman,1313363483 +154567,8981,seen more than once,1313363481 +154567,27904,based on a book,1313363785 +154567,27904,drugs,1313363776 +154567,27904,psychiatry,1313363778 +154567,27904,Robert Downey Jr.,1313363772 +154567,27904,visually appealing,1313363768 +154567,33138,brilliant,1313363569 +154567,33138,Todd Solondz,1313363571 +154567,33880,avante garde,1313364310 +154567,33880,bittersweet,1313364268 +154567,33880,FATHERS AND SONS,1313364270 +154567,33880,SEXUAL AWAKENING,1313364292 +154567,33880,SUBURBAN DYSFUNCTION,1313364277 +154567,33880,weird,1313364300 +154567,51091,atmospheric,1313364059 +154567,51091,Blues,1313364061 +154567,51091,Justin Timberlake,1313364083 +154567,51091,Samuel L. Jackson,1313364074 +154567,51091,Tumey's DVDs,1313364079 +154567,55995,Angelina Jolie,1313363356 +154567,55995,based on a poem,1313363354 +154567,55995,dragon,1313363366 +154567,55995,John Malkovich,1313363359 +154567,55995,Robert Zemeckis,1313363340 +154567,55995,Stereoscopic 3-D,1313363338 +154567,59339,bittersweet,1313363216 +154567,59339,sad people,1313363216 +154567,59339,suicide,1313363223 +154567,59339,surreal,1313363216 +154567,63082,nonlinear,1313363826 +154567,63082,Oscar (Best Picture),1313363830 +154567,63082,romance,1313363828 +154567,80906,economics,1313426017 +154567,80906,truth,1313426006 +154592,50,Kevin Spacey,1153362254 +154592,153,comic book,1153362268 +154592,153,super-hero,1153362269 +154592,153,superhero,1153362266 +154592,165,Bruce Willis,1153362264 +154592,296,Quentin Tarantino,1153362319 +154592,296,Tarantino,1153362321 +154592,377,Keanu Reeves,1153362247 +154592,527,Steven Spielberg,1153362248 +154592,648,Action,1153362256 +154592,648,Brian De Palma,1153362257 +154592,1210,fantasy,1153362235 +154592,1210,sci-fi,1153362231 +154592,7153,Oscar (Best Picture),1153362309 +154592,7153,Peter Jackson,1153362311 +154592,44195,satire,1153362340 +154592,45722,Johnny Depp,1153362332 +154641,260,sci-fi,1433217600 +154641,260,space,1433217552 +154671,260,adventure,1436276027 +154671,260,sci-fi,1436276018 +154715,1230,funny,1440090019 +154715,1230,quirky,1440090012 +154715,2268,courtroom,1440034788 +154715,2268,courtroom drama,1440034784 +154715,2268,great performances,1440034800 +154715,4011,british,1440034729 +154715,4011,comedy,1440034726 +154715,4011,dialogue,1440034743 +154715,4011,frantic,1440034752 +154715,4011,Great dialogue,1440034756 +154715,4011,guy ritchie,1440034723 +154715,4011,multiple storylines,1440034737 +154715,4226,cult film,1440090214 +154715,4226,Mindfuck,1440090199 +154715,4226,storytelling,1440090217 +154715,4226,tense,1440090206 +154715,4973,quirky,1440089846 +154715,4973,visually appealing,1440089864 +154715,4973,whimsical,1440089857 +154715,4995,genius,1440034666 +154715,4995,inspirational,1440034663 +154715,4995,intelligent,1440034676 +154715,4995,mathematics,1440034659 +154715,4995,psychology,1440034655 +154715,5618,atmospheric,1440034550 +154715,5618,surreal,1440034539 +154715,51540,detective,1440090926 +154715,51540,investigative journalism,1440090933 +154715,51540,Jake Gyllenhaal,1440090938 +154715,87192,England,1440122104 +154715,91630,action,1440090476 +154715,91630,Brad Bird,1440090480 +154715,91630,espionage,1440090495 +154715,96811,camaradarie,1440091005 +154715,112852,characters with individual goals,1440034614 +154715,112852,fun,1440034603 +154715,112852,Marvel Cinematic Universe,1440034628 +154715,112852,sci-fi,1440034598 +154715,112852,space,1440034625 +154715,112852,Teamwork,1440034618 +154715,114935,science fiction,1440034887 +154715,114935,time travel,1440034871 +154715,117176,genius,1440034835 +154715,127206,Comedy,1440090441 +154715,127206,Dialogue,1440090438 +154715,134021,dialogue,1440089905 +154715,134021,writer,1440089898 +154729,47,Gwyneth Paltrow,1420256330 +154729,47,Kevin Spacey,1420256343 +154729,50,complicated,1420256386 +154729,50,suspense,1420256383 +154729,593,classic,1420256283 +154729,593,disturbing,1420256291 +154729,593,psychological,1420256295 +154729,593,suspense,1420256286 +154729,1213,disturbing,1420255866 +154729,1213,good dialogue,1420255858 +154729,1213,gritty,1420255838 +154729,1215,black comedy,1420941584 +154729,1215,comedy,1420941587 +154729,1215,cult classic,1420941582 +154729,1252,atmospheric,1421673799 +154729,1252,bleak,1421673805 +154729,1252,cynical,1421673794 +154729,1252,Film Noir,1421673796 +154729,1252,Jack Nicholson,1424119633 +154729,1732,dark comedy,1429154150 +154729,1732,great soundtrack,1429154163 +154729,1732,Steve Buscemi,1429154159 +154729,2076,David Lynch,1432795314 +154729,2076,dreamlike,1432795309 +154729,2076,surreal,1432795304 +154729,2858,bittersweet,1420256156 +154729,2858,dark comedy,1420256131 +154729,2858,kevin spacey,1420256120 +154729,2858,social commentary,1420256146 +154729,2858,surrealism,1420256124 +154729,3176,psychology,1424119689 +154729,3176,serial killer,1424119684 +154729,4973,whimsical,1424119756 +154729,6874,stylized,1420256243 +154729,6874,visually appealing,1420256239 +154729,8950,atmospheric,1420592765 +154729,8950,bleak,1420592770 +154729,8950,powerful ending,1420592777 +154729,8950,psychology,1420592762 +154729,32587,dark,1420256213 +154729,32587,stylized,1420256194 +154729,32587,visually appealing,1420256199 +154729,76755,Cillian Murphy,1430103052 +154729,80917,creative,1431052709 +154729,80917,science fiction,1431052714 +154729,81819,Javier Bardem,1429154388 +154729,94466,not a movie,1420592958 +154729,94466,tv series,1421051529 +154729,99764,surreal,1420256086 +154729,99764,weird,1420256052 +154729,100810,aliens,1420256027 +154729,100810,bad acting,1420256027 +154729,100810,j.k. simmons,1420256027 +154729,105197,poignant,1420951067 +154729,106452,beautifully filmed,1429154315 +154729,108583,tv series,1424119934 +154729,112519,documentary,1429154267 +154729,112519,horror,1429154267 +154729,112519,melodrama,1429154100 +154729,112519,urban legends,1429154267 +154729,112866,french,1420941845 +154729,112866,giallo,1420610820 +154729,112866,surreal,1420610842 +154729,116397,Ben Kingsley,1424119620 +154729,118702,war,1423747838 +154729,119145,gentlemanly,1426245109 +154741,2959,Brad Pitt,1432245309 +154741,3114,Pixar,1432245631 +154741,3147,Stephen King,1432245555 +154741,3147,Tom Hanks,1432245551 +154741,4886,funny,1432245417 +154741,4886,Pixar,1432245411 +154741,4995,Russell Crowe,1432245539 +154741,4995,twist ending,1432245542 +154741,5989,Leonardo DiCaprio,1432245479 +154741,5989,Tom Hanks,1432245481 +154741,40815,harry potter,1432245670 +154741,40815,Magic,1432245672 +154741,44191,Natalie Portman,1432245459 +154741,44191,thought-provoking,1432245466 +154741,48780,twist ending,1432245395 +154741,49272,James Bond,1432245564 +154741,50872,pixar,1432245375 +154741,54286,espionage,1432245438 +154741,54286,Matt Damon,1432245440 +154741,54286,twist ending,1432245443 +154741,59315,Marvel,1432245524 +154741,59315,Robert Downey Jr.,1432245521 +154741,59315,sci-fi,1432245526 +154741,59315,superhero,1432245519 +154741,60069,pixar,1432245338 +154741,60069,Sci-Fi,1432245341 +154741,68358,sci-fi,1432245605 +154741,68358,Star Trek,1432245601 +154741,68954,adventure,1432245367 +154741,68954,Pixar,1432245360 +154741,73017,Robert Downey Jr.,1432245645 +154741,73017,Sherlock Holmes,1432245647 +154741,76093,cute,1432245620 +154741,91529,Batman,1432245656 +154741,91529,Christopher Nolan,1432245660 +154775,136204,horas ela volta,1450188711 +154775,136204,regina casé,1450188715 +154791,260,princess,1435364169 +154791,260,Star Wars,1435364131 +154807,260,darth vader,1438086107 +154807,260,space adventure,1438086098 +154807,356,highly quotable,1438086287 +154807,356,motivation,1438086287 +154807,356,very moving,1438086287 +154827,1231,entertaining,1186184762 +154827,1231,historical,1186184762 +154827,1231,Tom Hanks,1186184762 +154827,2662,classic,1186185022 +154827,2662,excellent for its time,1186185022 +154827,3826,Kevin Bacon,1186184906 +154827,3826,not good at all,1186184906 +154827,5502,awesome!,1186184822 +154827,5502,M Night,1186184822 +154827,5502,Mel Gibson,1186184822 +154827,5502,OMG,1186184822 +154827,5502,scary,1186184822 +154827,5679,good,1186184862 +154827,5679,phone ringing,1186184862 +154827,6502,unique,1186184888 +154827,7254,2 endings,1186184989 +154827,7254,excellent,1186184989 +154827,7254,twists and turns,1186184989 +154853,260,classic,1434705218 +154853,260,Science Fiction,1434705199 +154856,318,overrated,1447421911 +154856,3717,Action,1447422245 +154856,3717,Angelina Jolie,1447422249 +154856,6378,action,1447422259 +154856,6378,cars,1447422264 +154856,7143,war,1447422226 +154856,106487,Overrated,1447421958 +154856,131724,investigative journalism,1447422133 +154856,131724,yet to see,1447422138 +154856,134130,sci-fi,1447422082 +154856,134130,yet to seen,1447422075 +154856,136020,james bond,1447422098 +154856,136020,yet to see,1447422108 +154856,146876,documentary,1447422165 +154859,235,Nostalgia Critic's Top 20,1274119562 +154859,448,Nostalgia Critic's Top 20,1274119967 +154859,592,Nostalgia Critic's Top 20,1274120564 +154859,923,Nostalgia Critic's Top 20,1274120072 +154859,1199,Nostalgia Critic's Top 20,1274120760 +154859,1206,Nostalgia Critic's Top 20,1274119899 +154859,1207,Nostalgia Critic's Top 20,1274120607 +154859,1225,Nostalgia Critic's Top 20,1274120673 +154859,1272,Nostalgia Critic's Top 20,1274119544 +154859,1282,Nostalgia Critic's Top 20,1274119633 +154859,1411,Nostalgia Critic's Top 20,1274119445 +154859,1884,Nostalgia Critic's Top 20,1274120142 +154859,2139,Nostalgia Critic's Top 20,1274119712 +154859,2321,surreal,1271172641 +154859,2321,witty,1271172642 +154859,2657,cult film,1271172883 +154859,2712,Nostalgia Critic's Top 20,1274120434 +154859,3181,Nostalgia Critic's Top 20,1274119373 +154859,4878,mental illness,1271172664 +154859,4878,psychology,1271172670 +154859,4878,quirky,1271172667 +154859,4878,surreal,1271172663 +154859,5618,Nostalgia Critic's Top 20,1274119827 +154859,6711,Nostalgia Critic's Top 20,1274120367 +154859,8811,Yu-Gi-Oh!,1277700408 +154859,8949,Nostalgia Critic's Top 20,1274119744 +154859,39292,Nostalgia Critic's Top 20,1274120295 +154859,46578,dark comedy,1271172682 +154859,46578,quirky,1271172685 +154859,46976,surreal,1275800080 +154859,56715,cult film,1274028791 +154859,56715,dark comedy,1274028788 +154859,56715,quirky,1274028794 +154859,56757,dark comedy,1275800055 +154859,58559,Nostalgia Critic's Top 20,1274120216 +154859,71899,friendship,1275800116 +154859,71899,touching,1280036735 +154859,79132,clever,1279683986 +154859,79132,mindfuck,1279683982 +154859,79132,surreal,1279683984 +154859,79702,Michael Cera,1293934435 +154859,79702,visually appealing,1293934441 +154904,112552,art,1435427624 +154904,112552,manipulation,1435427624 +154904,112552,psychology,1435427624 +154904,129657,free running,1436637240 +154904,129657,no story,1436637240 +154904,129657,parkour,1436637240 +154917,1221,Al Pacino,1311600756 +154917,1221,mafia,1311600746 +154917,7502,war,1311600844 +154917,58559,Atmospheric,1311530439 +154917,58559,Batman,1311530391 +154917,58559,comic book,1311530398 +154917,58559,dark,1311530428 +154917,58559,Heath Ledger,1311530404 +154917,58559,imdb top 250,1311530451 +154917,58559,Michael Caine,1311530407 +154917,58559,Morgan Freeman,1311530400 +154917,58559,Oscar (Best Supporting Actor),1311530432 +154917,58559,psychology,1311530417 +154917,58559,superhero,1311530388 +154917,58559,vigilante,1311530423 +154917,58559,violence,1311530444 +154922,260,George Lucas,1436813965 +154922,260,original plot,1436813979 +154935,260,love story,1438812916 +154935,260,space action,1438812906 +154976,2302,entertaining,1149612249 +154976,2728,kubrick,1208728181 +154976,2729,Kubrick,1208728121 +154976,7147,Tim Burton,1208577791 +155004,911,adventure,1303712655 +155004,911,romance,1303712672 +155004,1625,dark,1303777745 +155004,1625,Michael Douglas,1303777711 +155004,1625,Mystery,1303777713 +155004,1625,plot twist,1303777736 +155004,1625,plot twists,1303777741 +155004,1625,Sean Penn,1303777729 +155004,1625,thriller,1303777718 +155004,1625,twist ending,1303777716 +155004,1625,unrealistic,1303777756 +155004,2145,1980s,1303777542 +155004,2145,80's,1303777546 +155004,2145,comedy,1303777571 +155004,2145,Molly Ringwald,1303777553 +155004,2145,romance,1303777565 +155004,2414,English,1303713360 +155004,2414,European,1303713365 +155004,2414,realism,1303713414 +155004,2414,Sherlock Holmes,1303713378 +155004,2414,special effects,1303713386 +155004,2414,visual effects,1303713400 +155004,2613,1980s,1303713923 +155004,2613,80s,1303713927 +155004,2613,action,1303713912 +155004,2613,adventure,1303713916 +155004,2613,California,1303713942 +155004,2613,end of the world,1303713902 +155004,2613,humor,1303713934 +155004,2613,sci-fi,1303713907 +155004,2613,zombie,1303713885 +155004,2613,zombies,1303713894 +155004,4045,action,1303713822 +155004,4045,adventure,1303713805 +155004,4045,intrigue,1303713817 +155004,4045,thriller,1303713810 +155004,4045,western,1303713800 +155004,4638,adventure,1303714272 +155004,4638,Sam Neill,1303714254 +155004,4638,special effects,1303714246 +155004,4638,tropical setting,1303714278 +155004,4638,visual effects,1303714267 +155004,4638,weak plot,1303714296 +155004,4638,weak story,1303714292 +155004,4638,weak writing,1303714283 +155004,5764,1980s,1303714122 +155004,5764,California,1303714132 +155004,5764,campy,1303714094 +155004,5764,Michael Chrichton,1303714114 +155004,5764,sci-fi,1303714100 +155004,5764,visual effects,1303714145 +155004,8950,dark,1303777834 +155004,8950,psychodrama,1303777830 +155004,34405,comedy,1303713590 +155004,34405,humor,1303713602 +155004,34405,sci-fi,1303713596 +155004,34405,space,1303713619 +155004,34405,space travel,1303713615 +155004,48780,Christian Bale,1303777782 +155004,48780,dark,1303777789 +155004,48780,magic,1303777776 +155004,48780,Michael Caine,1303777778 +155004,48780,mystery,1303777793 +155004,48780,sci-fi,1303777802 +155004,48780,thriller,1303777796 +155004,60037,disaster,1303714011 +155004,60037,end of the world,1303714005 +155004,60037,M. Night Shyamalan,1303713997 +155004,60037,Pennsylvania,1303714024 +155004,60037,survival,1303714017 +155004,60037,weak dialogue,1303714039 +155004,60037,weak story,1303713986 +155004,60037,weak writing,1303714044 +155004,60514,campy,1303714314 +155004,73017,action,1303714442 +155004,73017,adventure,1303714446 +155004,73017,based on a book,1303714477 +155004,73017,England,1303714456 +155004,73017,English,1303714452 +155004,73017,European,1303714461 +155004,73017,mystery,1303714439 +155004,73017,Sherlock Holmes,1303714434 +155004,79293,action,1303714377 +155004,79293,espionage,1303714369 +155004,79293,implausible,1303714363 +155004,79293,production values,1303714349 +155004,79293,thriller,1303714373 +155004,79293,unrealistic,1303714359 +155013,1,adventure,1246932571 +155013,1,animated,1246932567 +155013,1,animation,1246932566 +155013,1,classic,1246932573 +155013,1,Disney,1246932611 +155013,1,fantasy,1246932578 +155013,1,Pixar,1246932580 +155013,1,Tom Hanks,1246932583 +155013,1,toys,1246932614 +155013,260,action,1290639140 +155013,260,aliens,1290639142 +155013,260,classic,1290639144 +155013,260,Harrison Ford,1290639129 +155013,260,robots,1290639139 +155013,260,sci-fi,1290639132 +155013,260,space,1290639131 +155013,260,SPACE TRAVEL,1290639133 +155013,260,sword fight,1290639134 +155013,260,war,1290639136 +155013,296,assassin,1290639080 +155013,296,atmospheric,1290639082 +155013,296,Black comedy,1290639049 +155013,296,Bruce Willis,1290639061 +155013,296,comedy,1290639051 +155013,296,cult film,1290639047 +155013,296,dark comedy,1290639039 +155013,296,drugs,1290639085 +155013,296,Mafia,1290639064 +155013,296,nonlinear,1290639069 +155013,296,notable soundtrack,1290639066 +155013,296,organized crime,1290639059 +155013,296,Quentin Tarantino,1290639040 +155013,296,quirky,1290639057 +155013,296,Samuel L. Jackson,1290639042 +155013,296,stylized,1290639054 +155013,318,crime,1245865201 +155013,318,Morgan Freeman,1245865190 +155013,318,prison,1245865193 +155013,318,prison escape,1245865203 +155013,318,Stephen King,1245865186 +155013,318,thought-provoking,1245865189 +155013,344,Action,1290639351 +155013,344,comedy,1290639352 +155013,344,Dumb,1290639341 +155013,344,goofy,1290639339 +155013,344,Jim Carrey,1290639346 +155013,344,Jim Carrey being Jim Carrey,1290639342 +155013,344,silly fun,1290639348 +155013,344,very funny,1290639350 +155013,353,adapted from:comic,1247640446 +155013,353,birds,1247640461 +155013,353,bittersweet,1247640463 +155013,353,comic book,1247640472 +155013,353,cult film,1247640477 +155013,353,dreamlike,1247640478 +155013,353,Fantasy,1247640480 +155013,353,film noir,1247640481 +155013,353,ghosts/afterlife,1247640485 +155013,353,gothic,1247640487 +155013,353,gritty,1247640489 +155013,353,halloween,1247640491 +155013,353,heavy metal,1247640495 +155013,353,Nudity (Rear),1247640498 +155013,353,revenge,1247640500 +155013,353,Sexualized violence,1247640509 +155013,353,stylized,1247640502 +155013,353,vigilante,1247640505 +155013,364,africa,1290639402 +155013,364,animals,1290639403 +155013,364,animation,1290639405 +155013,364,coming of age,1290639418 +155013,364,Disney,1290639407 +155013,364,father-son relationship,1290639411 +155013,364,talking animals,1290639414 +155013,364,Whoopi Goldberg,1290639415 +155013,480,adventure,1290639096 +155013,480,cloning,1290639110 +155013,480,dinosaurs,1290639095 +155013,480,Michael Crichton,1290639101 +155013,480,Oscar (Best Effects - Visual Effects),1290639099 +155013,480,Steven Spielberg,1290639103 +155013,480,stylized,1290639104 +155013,480,Suspense,1290639105 +155013,527,black and white,1290639255 +155013,527,disturbing,1290639257 +155013,527,Holocaust,1290639250 +155013,527,true story,1290639251 +155013,527,World War II,1290639252 +155013,551,atmospheric,1245725063 +155013,551,beautiful,1245725062 +155013,551,Christmas,1245725069 +155013,551,claymation,1245725061 +155013,551,cult film,1245725054 +155013,551,dark,1245725075 +155013,551,ghosts,1245725077 +155013,551,gothic,1245725050 +155013,551,halloween,1245725055 +155013,551,musical,1245725056 +155013,551,Tim Burton,1245725051 +155013,551,whimsical,1245725059 +155013,588,Action,1290639270 +155013,588,adventure,1290639275 +155013,588,animation,1290639268 +155013,588,Disney,1290639277 +155013,588,fairy tale,1290639278 +155013,588,kids and family,1290639283 +155013,588,musical,1290639280 +155013,588,Robin Williams,1290639267 +155013,595,affectionate,1246935280 +155013,595,animation,1246935276 +155013,595,classic,1246935283 +155013,595,Disney,1246935285 +155013,595,fairy tale,1246935286 +155013,595,France,1246935288 +155013,595,gentle,1246935289 +155013,595,heartwarming,1246935305 +155013,595,heroine,1246935303 +155013,595,humorous,1246935300 +155013,595,whimsical,1246935298 +155013,661,adapted from:book,1248746143 +155013,661,animation,1248746144 +155013,661,author:Roald Dahl,1248746140 +155013,661,based on a book,1248746135 +155013,661,based on book,1248746138 +155013,661,claymation,1248746124 +155013,661,Disney,1248746124 +155013,661,family,1248746175 +155013,661,fantasy,1248746130 +155013,661,Tim Burton,1248746128 +155013,671,commentary,1245725144 +155013,671,hillarious,1245725140 +155013,671,MST3K,1245725133 +155013,671,parody,1245725153 +155013,671,Sci-Fi,1245725136 +155013,724,chick flick,1247640926 +155013,724,Fairuza Balk,1247640962 +155013,724,girl power,1247640926 +155013,724,goth,1247640931 +155013,724,high school,1247640934 +155013,724,magic,1247640934 +155013,724,Neve Campbell,1247640972 +155013,724,private school,1247640957 +155013,724,Robin Tunney,1247640965 +155013,724,Skeet Ulrich,1247640971 +155013,724,supernatural,1247640955 +155013,724,teen,1247640953 +155013,724,teenagers,1247640950 +155013,724,witch,1247640948 +155013,724,witchcraft,1247640947 +155013,724,witches,1247640945 +155013,780,alien invasion,1290639158 +155013,780,aliens,1290639164 +155013,780,apocalypse,1290639166 +155013,780,aviation,1290639180 +155013,780,disaster,1290639177 +155013,780,end of the world,1290639178 +155013,780,humorous,1290639175 +155013,780,sci-fi,1290639167 +155013,780,scifi,1290639168 +155013,780,Will Smith,1290639170 +155013,837,adaptation,1245980719 +155013,837,adoption,1245980721 +155013,837,clever,1245980711 +155013,837,comedy,1245980712 +155013,837,dark comedy,1245980733 +155013,837,drama,1245980748 +155013,837,fairy tale,1245980729 +155013,837,Fantasy,1245980723 +155013,837,magic,1245980724 +155013,839,gothic,1245865861 +155013,839,sequel,1245865864 +155013,919,black and white,1246932877 +155013,919,classic,1246932869 +155013,919,colourful,1246932878 +155013,919,dreamlike,1246932879 +155013,919,fantasy,1246932881 +155013,919,musical,1246932883 +155013,919,witch,1246932896 +155013,1015,feel-good,1245863218 +155013,1015,nostalgic,1245863208 +155013,1022,children cartoon,1246935322 +155013,1022,fairy tale,1246935331 +155013,1022,fairy-tale,1246935334 +155013,1022,prince,1246935341 +155013,1022,royalty,1246935335 +155013,1032,adapted from:book,1246933374 +155013,1032,alternate reality,1246933377 +155013,1032,based on a book,1246933372 +155013,1032,cats,1246933378 +155013,1032,classic,1246933412 +155013,1032,Disney,1246933381 +155013,1032,dreamlike,1246933382 +155013,1032,fairy tale,1246933385 +155013,1032,miniaturization,1246933400 +155013,1032,Parallel universe,1246933388 +155013,1032,Stoner Movie,1246933397 +155013,1032,surreal,1246933387 +155013,1032,surrealism,1246933392 +155013,1073,classic,1246933478 +155013,1073,colourful,1246933527 +155013,1073,cult film,1246933508 +155013,1073,family bonds,1246933523 +155013,1073,fantastical,1246933480 +155013,1073,Fantasy,1246933482 +155013,1073,musical,1246933520 +155013,1073,surreal,1246933489 +155013,1073,whimsical,1246933488 +155013,1136,British,1245725173 +155013,1136,british comedy,1245725161 +155013,1136,Monty Python,1245725162 +155013,1136,parody,1245725167 +155013,1136,satire,1245725164 +155013,1136,satirical,1245725169 +155013,1196,action,1290639309 +155013,1196,adventure,1290639307 +155013,1196,aliens,1290639311 +155013,1196,classic,1290639313 +155013,1196,fantasy,1290639305 +155013,1196,father-son relationship,1290639315 +155013,1196,George Lucas,1290639297 +155013,1196,Harrison Ford,1290639295 +155013,1196,music,1290639304 +155013,1196,sci-fi,1290639301 +155013,1196,space,1290639300 +155013,1196,star wars,1290639299 +155013,1198,action,1290639363 +155013,1198,adventure,1290639365 +155013,1198,archaeology,1290639366 +155013,1198,classic,1290639368 +155013,1198,comedy,1290639369 +155013,1198,Harrison Ford,1290639371 +155013,1198,indiana jones,1290639372 +155013,1198,Nazis,1290639374 +155013,1198,Steven Spielberg,1290639375 +155013,1198,World War II,1290639377 +155013,1200,action,1247636060 +155013,1200,alien,1247636060 +155013,1200,aliens,1247636063 +155013,1200,androids,1247636066 +155013,1200,classic,1247636068 +155013,1200,imdb top 250,1247636073 +155013,1200,James Cameron,1247636071 +155013,1200,military,1247636076 +155013,1200,monster,1247636080 +155013,1200,Oscar (Best Effects - Visual Effects),1247636083 +155013,1200,Saturn Award (Best Performance by a Younger Actor),1247636085 +155013,1200,Saturn Award (Best Special Effects),1247636087 +155013,1200,sci-fi,1247636089 +155013,1200,space,1247636092 +155013,1200,SPACE TRAVEL,1247636094 +155013,1200,tense,1247636096 +155013,1200,violent,1247636103 +155013,1210,action,1290639195 +155013,1210,adventure,1290639197 +155013,1210,aliens,1290639198 +155013,1210,classic,1290639202 +155013,1210,fantasy,1290639200 +155013,1210,George Lucas,1290639201 +155013,1210,sci-fi,1290639191 +155013,1210,space,1290639192 +155013,1210,Star Wars,1290639190 +155013,1214,alien,1247635969 +155013,1214,aliens,1247635973 +155013,1214,androids,1247635977 +155013,1214,classic,1247635979 +155013,1214,dark,1247635982 +155013,1214,evolutionary theme,1247635983 +155013,1214,futuristic,1247635988 +155013,1214,horror,1247636000 +155013,1214,monster,1247636005 +155013,1214,Saturn Award (Best Science Fiction Film),1247636033 +155013,1214,sci-fi,1247636005 +155013,1214,space,1247636023 +155013,1214,space travel,1247636023 +155013,1214,suspense,1247636025 +155013,1214,suspenseful,1247636029 +155013,1223,british,1245863267 +155013,1223,british comedy,1245863261 +155013,1223,invention,1245863274 +155013,1223,space travel,1245863270 +155013,1223,Wallace & Gromit,1245863257 +155013,1274,dystopia,1245864732 +155013,1274,future,1245864718 +155013,1274,hallucinatory,1245864734 +155013,1274,Japan,1245864722 +155013,1274,PSYCHIC ABILITIES,1245864715 +155013,1274,science fiction,1245864726 +155013,1274,visually stunning,1245864728 +155013,1320,70mm,1247636124 +155013,1320,Alien,1247636120 +155013,1320,alien series,1247636122 +155013,1320,aliens,1247636127 +155013,1320,David Fincher,1247636132 +155013,1320,franchise,1247636133 +155013,1320,prequel,1247636137 +155013,1320,sequel,1247636139 +155013,1320,Sigourney Weaver,1247636140 +155013,1320,spooky,1247636153 +155013,1320,survival,1247636157 +155013,1320,Too Hollywood,1247636144 +155013,1320,troubled production,1247636151 +155013,1320,underrated,1247636150 +155013,1320,wasted potential,1247636146 +155013,1690,Action,1247636211 +155013,1690,Alien,1247636216 +155013,1690,alien series,1247636220 +155013,1690,aliens,1247636224 +155013,1690,Brad Dourif,1247636226 +155013,1690,Dominique Pinon,1247636230 +155013,1690,dystopia,1247636234 +155013,1690,dystopic future,1247636237 +155013,1690,franchise,1247636239 +155013,1690,Horror,1247636246 +155013,1690,sci-fi,1247636248 +155013,1690,sci-fi. dark,1247636265 +155013,1690,Sigourney Weaver,1247636260 +155013,1690,space,1247636253 +155013,1967,a classic!!,1246933268 +155013,1967,Coming-of-Age,1246933252 +155013,1967,David Bowie,1246933254 +155013,1967,good versus evil,1246933265 +155013,1967,maze,1246933262 +155013,1967,muppets,1246933273 +155013,2052,Disney,1245725362 +155013,2052,halloween,1245725352 +155013,2087,adapted from:book,1246935469 +155013,2087,based on a book,1246935472 +155013,2087,Cartoon,1246935475 +155013,2087,coming of age,1246935476 +155013,2087,coming-of-age,1246935478 +155013,2087,Disney,1246935480 +155013,2087,island,1246935482 +155013,2087,London,1246935484 +155013,2087,Peter Pan,1246935485 +155013,2087,pirates,1246935487 +155013,2087,racial stereotype,1246935489 +155013,2087,sword fight,1246935492 +155013,2137,classic,1245865744 +155013,2137,family,1245865854 +155013,2137,sentimental,1245865741 +155013,2137,talking animals,1245865845 +155013,2174,alternate reality,1246934775 +155013,2174,burton,1246934753 +155013,2174,claymation,1246934749 +155013,2174,comedy,1246934742 +155013,2174,cult film,1246934720 +155013,2174,Death,1246934738 +155013,2174,ghosts,1246934734 +155013,2174,ghosts/afterlife,1246934736 +155013,2174,Good Comedy,1246934728 +155013,2174,haunted house,1246934730 +155013,2174,horror,1246934732 +155013,2291,beautiful,1246134513 +155013,2291,compassionate,1246134520 +155013,2291,dark,1246134522 +155013,2291,dark comedy,1246134518 +155013,2291,Depp & Burton,1246134524 +155013,2291,dreamlike,1246134536 +155013,2291,fairy tale,1246134538 +155013,2291,fantasy,1246134539 +155013,2291,funny,1246134540 +155013,2291,gothic,1246134541 +155013,2291,Johnny Depp,1246134543 +155013,2291,love story,1246134548 +155013,2291,quirky,1246134554 +155013,2291,surreal,1246134549 +155013,2291,Tim Burton,1246134553 +155013,2294,Adventure,1247640635 +155013,2294,animation,1247640631 +155013,2294,bugs,1247640635 +155013,2294,capitalism,1247640639 +155013,2294,coming of age,1247640643 +155013,2294,dreamworks,1247640647 +155013,2294,Pixar,1247640650 +155013,2294,talking animals,1247640655 +155013,2321,affectionate,1245725864 +155013,2321,black and white,1245725866 +155013,2321,coming of age,1245725868 +155013,2321,heartwarming,1245725873 +155013,2321,Jeff Daniels,1245725893 +155013,2321,moral ambiguity,1245725876 +155013,2321,satire,1245725879 +155013,2321,surreal,1245725881 +155013,2321,utopia,1245725889 +155013,2321,whimsical,1245725886 +155013,2321,witty,1245725884 +155013,2329,disturbing,1245815339 +155013,2329,holocaust,1245815341 +155013,2329,Nazis,1245815337 +155013,2329,Neo-Nazis,1245815335 +155013,2329,powerful ending,1245815327 +155013,2329,prison,1245815333 +155013,2329,racism,1245815330 +155013,2329,thought-provoking,1245815323 +155013,2413,adapted from:game,1245725567 +155013,2413,DVD:alternate endings,1245725571 +155013,2413,genre:movie as whodunit,1245725585 +155013,2413,hilariously bad,1245725573 +155013,2413,Michael McKean,1245725674 +155013,2413,murder,1245725592 +155013,2413,quirky,1245725579 +155013,2413,Tim Curry,1245725577 +155013,2502,comedy,1246231359 +155013,2502,corporate America,1246231368 +155013,2502,cult film,1246231361 +155013,2502,quirky,1246231377 +155013,2502,satire,1246231362 +155013,2502,workplace,1246231371 +155013,2571,Action,1245983191 +155013,2571,artificial intelligence,1245983190 +155013,2571,cult film,1245983187 +155013,2571,cyberpunk,1245983188 +155013,2571,dystopia,1245983183 +155013,2571,fantasy,1245983166 +155013,2571,Keanu Reeves,1245983181 +155013,2571,martial arts,1245983173 +155013,2571,philosophy,1245983194 +155013,2571,post apocalyptic,1245983193 +155013,2571,sci-fi,1245983168 +155013,2571,surreal,1245983171 +155013,2571,virtual reality,1245983168 +155013,2617,archaeology,1248061561 +155013,2617,curse,1248061561 +155013,2617,mummy,1248061565 +155013,2617,treasure hunt,1248061568 +155013,2657,adultery,1276303204 +155013,2657,aliens,1276303208 +155013,2657,androids,1276303210 +155013,2657,awesome soundtrack,1276303226 +155013,2657,bisexual,1276303215 +155013,2657,campy,1276303217 +155013,2657,classic,1276303219 +155013,2657,cross dressing,1276303221 +155013,2657,cult classic,1276303222 +155013,2657,cult film,1276303200 +155013,2657,great soundtrack,1276303200 +155013,2657,homosexuality,1276303200 +155013,2657,murder,1276303229 +155013,2657,music,1276303231 +155013,2657,musical,1276303233 +155013,2657,Nudity (Topless - Brief),1276303234 +155013,2657,Quirky,1276303238 +155013,2657,sexuality,1276303235 +155013,2657,transgender,1276303237 +155013,2700,adult humor,1276302105 +155013,2700,Animation,1276302107 +155013,2700,Based on a TV show,1276302109 +155013,2700,based on TV series,1276302111 +155013,2700,censorship,1276302118 +155013,2700,controversial,1276302119 +155013,2700,crude humor,1276302120 +155013,2700,free speech,1276302122 +155013,2700,funny,1276302124 +155013,2700,goofy,1276302125 +155013,2700,musical,1276302129 +155013,2700,parody,1276302130 +155013,2700,quirky,1276302131 +155013,2700,satire,1276302136 +155013,2700,satirical,1276302138 +155013,2700,Southern theme,1276302145 +155013,2700,stupidity,1276302146 +155013,2700,Trey Parker,1276302143 +155013,2700,war,1276302142 +155013,2716,Bill Murray,1246135883 +155013,2716,comedy,1246135882 +155013,2716,ghosts,1246135880 +155013,2716,horror comedy,1246135878 +155013,2716,mystery,1246135886 +155013,2716,occult technology,1246135877 +155013,2716,paranormal,1246135868 +155013,2716,paranormal phenomenon,1246135875 +155013,2716,sci-fi,1246135872 +155013,2720,animation remade as live action,1245865910 +155013,2720,Based on a TV show,1245865926 +155013,2721,Cute,1259005791 +155013,2721,Gay,1259005797 +155013,2721,gay romance,1259005791 +155013,2721,positive portyayal of gay relationships,1259005791 +155013,2788,Based on a TV show,1245725926 +155013,2788,British,1245725928 +155013,2788,British Humor,1245725930 +155013,2788,Monty Python,1245725935 +155013,2788,MontyPython,1245725937 +155013,2788,sketch comedy,1245725940 +155013,2858,black comedy,1248745585 +155013,2858,comedy,1248745587 +155013,2858,coming of age,1248745595 +155013,2858,dark comedy,1248745569 +155013,2858,homosexuality,1248745590 +155013,2858,imdb top 250,1248745615 +155013,2858,Kevin Spacey,1248745612 +155013,2858,midlife crisis,1248745582 +155013,2858,Nudity (Topless - Notable),1248745604 +155013,2858,Oscar (Best Actor),1248745610 +155013,2858,Oscar (Best Cinematography),1248745601 +155013,2858,Oscar (Best Directing),1248745607 +155013,2858,Oscar (Best Picture),1248745599 +155013,2858,powerful ending,1248745577 +155013,2858,satirical,1248745579 +155013,2858,sexuality,1248745580 +155013,2858,social commentary,1248745575 +155013,2858,surrealism,1248745569 +155013,2858,thought-provoking,1248745570 +155013,2858,violence,1248745574 +155013,2959,Brad Pitt,1245725431 +155013,2959,disturbing,1245725475 +155013,2959,mental illness,1245725444 +155013,2959,powerful ending,1245725435 +155013,2959,psychology,1245725433 +155013,2959,satirical,1245725453 +155013,2959,surreal,1245725450 +155013,2959,TERRORISM,1245725471 +155013,2987,adventure,1246935263 +155013,2987,animation,1246935262 +155013,2987,animation & live action interact,1246935259 +155013,2987,cartoon-reality crossover,1246935253 +155013,2987,Christopher Lloyd,1246935251 +155013,2987,private detective,1246935225 +155013,2987,rabbits,1246935235 +155013,2987,Roger Rabbit,1246935233 +155013,2987,scary,1246935230 +155013,2987,toontown,1246935229 +155013,3000,anime,1245725008 +155013,3000,anti-war,1245725016 +155013,3000,fantasy world,1245725010 +155013,3000,Hayao Miyazaki,1245724997 +155013,3000,Japan,1245724998 +155013,3000,Neil Gaiman,1245725003 +155013,3000,Studio Ghibli,1245724999 +155013,3000,surreal,1245725001 +155013,3052,Adventure,1246933328 +155013,3052,angel,1246933326 +155013,3052,Ben Affleck,1246933306 +155013,3052,Catholicism,1246933350 +155013,3052,Christianity,1246933324 +155013,3052,controversial,1246933322 +155013,3052,funny,1246933320 +155013,3052,jay and silent bob,1246933319 +155013,3052,Matt Damon,1246933315 +155013,3052,satire,1246933310 +155013,3081,Dark,1245981846 +155013,3081,Depp & Burton,1245981850 +155013,3081,Depp and Burton,1245981859 +155013,3081,Fantasy,1245981854 +155013,3081,ghosts,1245981882 +155013,3081,gothic,1245981892 +155013,3081,horror,1245981894 +155013,3081,Mystery,1245981888 +155013,3081,quirky,1245981868 +155013,3081,Romance,1245981871 +155013,3081,Tim Burton,1245981856 +155013,3081,visually appealing,1245981877 +155013,3114,abandonment,1247640378 +155013,3114,animation,1247640381 +155013,3114,cgi,1247640383 +155013,3114,computer animation,1247640388 +155013,3114,Disney,1247640391 +155013,3114,fanciful,1247640394 +155013,3114,funny,1247640396 +155013,3114,humorous,1247640401 +155013,3114,John Cusack,1247640402 +155013,3114,Oscar Nominee,1247640408 +155013,3114,Pixar,1247640411 +155013,3114,Pixar animation,1247640413 +155013,3114,sequel,1247640417 +155013,3114,Tim Allen,1247640422 +155013,3114,Tom Hanks,1247640421 +155013,3114,whimsical,1247640427 +155013,3275,Boston,1276304144 +155013,3275,dark humor,1276304119 +155013,3275,gay,1276304125 +155013,3275,Irish,1276304122 +155013,3275,Mission From God,1276304141 +155013,3275,religion,1276304139 +155013,3275,serial killer,1276304128 +155013,3275,siblings,1276304135 +155013,3275,stylized,1276304133 +155013,3275,vigilante,1276304129 +155013,3275,vigilantism,1276304130 +155013,3275,Willem Dafoe,1276304131 +155013,3545,based on a play,1245864450 +155013,3545,GLTBQ,1245864441 +155013,3545,politics,1245864443 +155013,3996,china,1245865053 +155013,3996,dreamlike,1245865050 +155013,3996,Kung Fu,1245865040 +155013,3996,martial arts,1245865041 +155013,3996,murder,1245865046 +155013,3996,sword fighting,1245865042 +155013,4016,Disney,1246934802 +155013,4016,Disney animated feature,1246934805 +155013,4016,funny,1246934809 +155013,4016,John Goodman,1246934831 +155013,4016,Latin America,1246934829 +155013,4016,llama face!,1246934816 +155013,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1246934825 +155013,4016,Transformation,1246934819 +155013,4366,Atlantis,1248761156 +155013,4366,Disney,1248761158 +155013,4366,steampunk,1248761162 +155013,4366,underwater,1248761166 +155013,4368,Eddie Murphy,1245865938 +155013,4571,comedy,1248746376 +155013,4571,future,1248746382 +155013,4571,Keanu Reeves,1248746358 +155013,4571,phone booth,1248746386 +155013,4571,rock and roll,1248746344 +155013,4571,sci-fi,1248746344 +155013,4571,soundtrack,1248746348 +155013,4571,teen,1248746389 +155013,4571,teenager,1248746387 +155013,4571,time travel,1248746350 +155013,4571,well-done time travel,1248746351 +155013,4642,Berlin,1246232013 +155013,4642,bittersweet,1246232015 +155013,4642,cult film,1246232007 +155013,4642,dark,1246232025 +155013,4642,funny,1246232018 +155013,4642,Germany,1246232019 +155013,4642,identity crisis,1246232011 +155013,4642,musical,1246232006 +155013,4642,quirky,1246232021 +155013,4642,sexuality,1246232002 +155013,4642,transgender,1246232005 +155013,4722,gay,1245864707 +155013,4874,alien,1276303986 +155013,4874,aliens,1276303989 +155013,4874,astronomy,1276303990 +155013,4874,disturbing scene,1276303998 +155013,4874,fantasy,1276304000 +155013,4874,intellectual,1276304002 +155013,4874,philosophical,1276304006 +155013,4874,psychiatrist,1276304008 +155013,4874,sci-fi,1276304009 +155013,4878,alternate timeline,1245725499 +155013,4878,dreamlike,1245725482 +155013,4878,enigmatic,1245725484 +155013,4878,hallucinatory,1245725485 +155013,4878,psychology,1245725488 +155013,4878,teen,1245725493 +155013,4878,thought-provoking,1245725491 +155013,4878,time travel,1245725489 +155013,4886,animation,1246134823 +155013,4886,Comedy,1246134825 +155013,4886,hilarious,1246134820 +155013,4886,Pixar,1246134816 +155013,4896,adapted from:book,1247636346 +155013,4896,Adventure,1247636349 +155013,4896,based on a book,1247636374 +155013,4896,based on book,1247636376 +155013,4896,Christmas,1247636378 +155013,4896,dragons,1247636392 +155013,4896,family,1247636394 +155013,4896,fantasy,1247636394 +155013,4896,ghosts,1247636398 +155013,4896,good versus evil,1247636399 +155013,4896,halloween,1247636401 +155013,4896,harry potter,1247636403 +155013,4896,humorous,1247636406 +155013,4896,invisibility,1247636419 +155013,4896,magic,1247636409 +155013,4896,mystery,1247636413 +155013,4896,Wizards,1247636409 +155013,4993,Action,1245862321 +155013,4993,adventure,1245862324 +155013,4993,based on a book,1245862316 +155013,4993,fantasy,1245862312 +155013,4993,high fantasy,1245862306 +155013,4993,magic,1245862301 +155013,4993,music,1245862318 +155013,4993,trilogy,1245862327 +155013,4993,wizards,1245862299 +155013,5146,anime,1247635817 +155013,5146,future,1247635823 +155013,5146,vampire,1247635823 +155013,5146,vampires,1247635826 +155013,5219,Milla Jovovich,1245725843 +155013,5219,mmm... brains...,1245725839 +155013,5219,plot point:bio-medical danger,1245725836 +155013,5219,zombie,1245725824 +155013,5419,animation remade as live action,1246932103 +155013,5419,Based on a cartoon,1246932099 +155013,5419,Based on a TV show,1246932096 +155013,5419,drugs,1246932107 +155013,5419,Sarah Michelle Gellar,1246932090 +155013,5618,anime,1245724954 +155013,5618,Hayao Miyazaki,1245724949 +155013,5618,Japan,1245724952 +155013,5618,Studio Ghibli,1245724950 +155013,5816,action,1247636480 +155013,5816,adapted from:book,1247636485 +155013,5816,adventure,1247636487 +155013,5816,alan rickman,1247636489 +155013,5816,based on a book,1247636491 +155013,5816,boarding school,1247636493 +155013,5816,Daniel Radcliffe,1247636496 +155013,5816,fantasy,1247636497 +155013,5816,fantasy world,1247636499 +155013,5816,franchise,1247636793 +155013,5816,harry potter,1247636795 +155013,5816,John Cleese,1247636797 +155013,5816,joseph campbell's study of mythology influenced,1247636800 +155013,5816,Kenneth Branagh,1247636807 +155013,5816,literary adaptation,1247636810 +155013,5816,magic,1247636812 +155013,5816,witch,1247636857 +155013,5816,Wizards,1247636854 +155013,5952,adventure,1245862073 +155013,5952,fantasy,1245862059 +155013,5952,fantasy world,1245862083 +155013,5952,high fantasy,1245862067 +155013,5952,multiple storylines,1245862079 +155013,5952,scenic,1245862063 +155013,5952,sequel,1245862102 +155013,5952,trilogy,1245862091 +155013,5952,war,1245862099 +155013,5971,anime,1245725899 +155013,5971,Cute!,1245725903 +155013,5971,fantasy,1245725906 +155013,5971,feel good movie,1245725908 +155013,5971,Hayao Miyazaki,1245725911 +155013,5971,Japan,1245725916 +155013,5971,Miyazaki,1245725914 +155013,5971,Studio Ghibli,1245725912 +155013,6350,adventure,1245864362 +155013,6350,fantasy,1245864386 +155013,6350,fantasy world,1245864384 +155013,6350,far future,1245864389 +155013,6350,great soundtrack,1245864379 +155013,6350,Hayao Miyazaki,1245864364 +155013,6350,imagination,1245864377 +155013,6350,Japan,1245864393 +155013,6350,Miyazaki,1245864366 +155013,6350,pirate,1245864375 +155013,6350,pirates,1245864373 +155013,6350,sci-fi,1245864370 +155013,6350,steampunk,1245864371 +155013,6350,Studio Ghibli,1245864367 +155013,6539,action,1246935566 +155013,6539,adventure,1246935568 +155013,6539,anti-hero,1246935571 +155013,6539,comedy,1246935569 +155013,6539,funny,1246935565 +155013,6539,ghosts,1246935564 +155013,6539,ghosts/afterlife,1246935562 +155013,6539,imdb top 250,1246935575 +155013,6539,Johnny Depp,1246935557 +155013,6539,magic,1246935573 +155013,6539,pirates,1246935559 +155013,6539,Suspense,1246935553 +155013,6539,swashbuckler,1246935555 +155013,6539,sword fight,1246935544 +155013,6539,thriller,1246935545 +155013,6539,War,1246935549 +155013,6539,zombie,1246935547 +155013,6539,Zombies,1246935546 +155013,6773,awesome music,1246856926 +155013,6773,bicycling,1246856923 +155013,6773,cycling,1246856930 +155013,6773,French,1246856902 +155013,6773,kidnapping,1246856918 +155013,6773,mafia,1246856921 +155013,6773,mob,1246856922 +155013,6773,musicians,1246856896 +155013,6773,no dialogue,1246856885 +155013,6773,quirky,1246856880 +155013,6773,Tour de France,1246856916 +155013,6773,train,1246856905 +155013,6773,whimsical,1246856883 +155013,6888,comedy,1245865641 +155013,6888,parody,1245865643 +155013,6888,stupid,1245865651 +155013,7099,dystopic future,1245725110 +155013,7099,fantasy,1245725107 +155013,7099,fantasy world,1245725112 +155013,7099,far future,1245725104 +155013,7099,Hayao Miyazaki,1245725094 +155013,7099,Miyazaki,1245725099 +155013,7099,sci-fi,1245725115 +155013,7099,Studio Ghibli,1245725091 +155013,7147,action,1246932407 +155013,7147,adventure,1246932409 +155013,7147,bittersweet,1246932395 +155013,7147,coming of age,1246932413 +155013,7147,dreamlike,1246932390 +155013,7147,fantasy,1246932388 +155013,7147,father-son relationship,1246932402 +155013,7147,imagination,1246932387 +155013,7147,imdb top 250,1246932404 +155013,7147,magic,1246932385 +155013,7147,quirky,1246932384 +155013,7147,reflective,1246932399 +155013,7147,surreal,1246932378 +155013,7147,thought-provoking,1246932376 +155013,7147,Tim Burton,1246932374 +155013,7147,twist ending,1246932382 +155013,7153,adventure,1245862144 +155013,7153,high fantasy,1245862138 +155013,7153,literary adaptation,1245862154 +155013,7153,magic,1245862134 +155013,7153,multiple storylines,1245862151 +155013,7153,war,1245862146 +155013,7260,comedy romance,1259000498 +155013,7260,gay,1259000500 +155013,7260,Gay Interest,1259000497 +155013,7260,Gay Lead Character,1259000502 +155013,7260,homophobia,1259000505 +155013,7260,Jacqueline Bisset,1259000546 +155013,7260,less than 300 ratings,1259000552 +155013,7260,Los Angeles,1259000542 +155013,7260,low budget,1259000515 +155013,7260,Mary Kay Place,1259000547 +155013,7260,Mormon,1259000524 +155013,7260,religion,1259000529 +155013,7260,religious oppression,1259000531 +155013,7260,Romance,1259000534 +155013,7260,Teddy Award,1259000549 +155013,7369,animation remade as live action,1246932144 +155013,7369,based on a TV show,1246932143 +155013,7369,Sarah Michelle Gellar,1246932151 +155013,7373,adapted from:comic,1245863226 +155013,7373,fighting,1245863247 +155013,7373,gothic,1245863245 +155013,7373,monsters hunter,1245863240 +155013,7373,steampunk,1245863234 +155013,7373,superhero,1245863232 +155013,7438,action,1259002896 +155013,7438,adventure,1259002899 +155013,7438,atmospheric,1259002903 +155013,7438,classic,1259002905 +155013,7438,crime,1259002907 +155013,7438,drama,1259002909 +155013,7438,imdb top 250,1259002918 +155013,7438,Japan,1259002923 +155013,7438,kung fu,1259002922 +155013,7438,martial arts,1259002926 +155013,7438,Quentin Tarantino,1259002928 +155013,7438,quirky,1259002934 +155013,7438,revenge,1259002932 +155013,7438,Samuel L. Jackson,1259002930 +155013,7438,stylized,1259002990 +155013,7438,Uma Thurman,1259002983 +155013,7438,violence,1259002985 +155013,7438,violent,1259002988 +155013,7451,clique,1276302643 +155013,7451,High School,1276302627 +155013,7451,innocence lost,1276302641 +155013,7451,Lindsay Lohan,1276302629 +155013,7451,manipulation,1276302638 +155013,7451,popularity,1276302636 +155013,7451,revenge,1276302634 +155013,7451,suprisingly clever,1276302631 +155013,8368,adapted from:book,1247636952 +155013,8368,alan rickman,1247636952 +155013,8368,based on a book,1247636955 +155013,8368,boarding school,1247636957 +155013,8368,Daniel Radcliffe,1247636959 +155013,8368,emma thompson,1247636961 +155013,8368,fantasy,1247636963 +155013,8368,franchise,1247636966 +155013,8368,Gary Oldman,1247636969 +155013,8368,harry potter,1247636981 +155013,8368,idealistic,1247636986 +155013,8368,joseph campbell's study of mythology influenced,1247636989 +155013,8368,magic,1247636991 +155013,8368,time travel,1247636993 +155013,8368,werewolf,1247636996 +155013,8368,werewolves,1247636998 +155013,8368,witch,1247637000 +155013,8368,Wizards,1247637001 +155013,8641,Adam McKay,1276303281 +155013,8641,Funniest Movies,1276303291 +155013,8641,hilarious,1276303294 +155013,8641,television,1276303298 +155013,8861,adapted from:game,1245726247 +155013,8861,based on a video game,1245726250 +155013,8861,computer game,1245726253 +155013,8861,Milla Jovovich,1245726238 +155013,8861,Nudity (Topless),1245726241 +155013,8861,video game adaptation,1245726245 +155013,8861,virus,1245726236 +155013,8861,zombies,1245726234 +155013,8874,black comedy,1245724966 +155013,8874,British,1245724987 +155013,8874,british comedy,1245724983 +155013,8874,dark humor,1245724972 +155013,8874,horror,1245724976 +155013,8874,London,1245724974 +155013,8874,Simon Pegg,1245724969 +155013,8874,zombie,1245724978 +155013,8917,bizarre,1246834869 +155013,8917,hilarious,1246834872 +155013,8917,satire,1246834856 +155013,8961,Adventure,1245864929 +155013,8961,comedy,1245864936 +155013,8961,Pixar,1245864899 +155013,8961,super-hero,1245864901 +155013,8961,superhero,1245864909 +155013,26662,airplane,1245725191 +155013,26662,anime,1245725188 +155013,26662,birds,1245725195 +155013,26662,feel-good,1245725198 +155013,26662,Hayao Miyazaki,1245725199 +155013,26662,magic,1245725202 +155013,26662,strong female lead,1245725203 +155013,26662,Studio Ghibli,1245725200 +155013,26662,trains,1245725209 +155013,26662,witch,1245725208 +155013,26693,adapted from:book,1248746069 +155013,26693,author:Stephen King,1248746070 +155013,26693,clowns,1248746067 +155013,26693,Stephen King,1248746064 +155013,26693,Tim Curry,1248746072 +155013,27660,androids,1245864691 +155013,27660,animation,1245864693 +155013,27660,anime,1245864695 +155013,27660,cyberpunk,1245864682 +155013,27660,Keanu Reeves,1245864700 +155013,27660,matrix,1245864684 +155013,27660,several short films,1245864687 +155013,27731,anime,1245725753 +155013,27731,cats,1245725761 +155013,27731,Japan,1245725755 +155013,27731,Studio Ghibli,1245725754 +155013,30793,better than the old version,1245726180 +155013,30793,fantasy,1245726176 +155013,30793,Johnny Depp,1245726170 +155013,30793,quirky,1245726173 +155013,30793,remake,1245726187 +155013,30793,Tim Burton,1245726169 +155013,31193,series:Pooh,1246134682 +155013,31658,anime,1245725258 +155013,31658,dreamlike,1245725272 +155013,31658,fantasy world,1245725260 +155013,31658,Japan,1245725252 +155013,31658,magic,1245725246 +155013,31658,steampunk,1245725248 +155013,31658,Studio Ghibli,1245725244 +155013,31658,stylized,1245725268 +155013,31660,Alfred Molina,1247611290 +155013,31660,anime,1247611227 +155013,31660,Anna Paquin,1247611256 +155013,31660,big budget,1247611258 +155013,31660,fanciful,1247611229 +155013,31660,passionate,1247611268 +155013,31660,Patrick Stewart,1247611273 +155013,31660,steampunk,1247611239 +155013,31660,sweeping,1247611275 +155013,31660,Swing and a Miss,1247611282 +155013,31660,visually interesting--that's about it,1247611280 +155013,31660,watch the credits,1247611285 +155013,31696,adapted from:comic,1248761046 +155013,31696,Alan Moore,1248761047 +155013,31696,angels,1248761049 +155013,31696,author:Alan Moore,1248761054 +155013,31696,comic book,1248761056 +155013,31696,gothic,1248761059 +155013,31696,Keanu Reeves,1248761063 +155013,31696,spiritual warfare,1248761068 +155013,31878,comedy,1246232051 +155013,31878,martial arts,1246232047 +155013,32456,anime,1246135462 +155013,32456,bizarre,1246135436 +155013,32456,environmental,1246135431 +155013,32456,fighting,1246135434 +155013,32456,FIGHTING THE SYSTEM,1246135420 +155013,32456,magic,1246135439 +155013,32456,man vs nature,1246135445 +155013,32456,man vs. nature,1246135424 +155013,32456,rebellion,1246135459 +155013,32456,resistance movement,1246135449 +155013,32456,Studio Ghibli,1246135428 +155013,32456,television,1246135452 +155013,32456,urban,1246135455 +155013,33004,absurd,1245725969 +155013,33004,bureaucracy,1245725966 +155013,33004,dolphins,1245725964 +155013,33004,end of the world,1245725962 +155013,33004,sarcasm,1245725947 +155013,33004,sci-fi,1245725948 +155013,33004,space,1245725950 +155013,33004,whimsical,1245725954 +155013,33004,witty,1245725951 +155013,33794,batman,1245865779 +155013,33794,dark,1245865777 +155013,33794,super-hero,1245865774 +155013,33794,superhero,1245865776 +155013,35836,crude,1245865968 +155013,35836,nerds,1245865975 +155013,35836,nudity,1245866212 +155013,35836,Nudity (Topless - Notable),1245866215 +155013,35836,Nudity (Topless),1245866217 +155013,35836,sex,1245866033 +155013,35836,sex comedy,1245866036 +155013,35836,virginity,1245866048 +155013,36541,homosexuality,1245726078 +155013,36541,horror,1245726078 +155013,36541,Nudity (Rear),1245726098 +155013,37729,black comedy,1245864228 +155013,37729,claymation,1245864252 +155013,37729,dark,1245864226 +155013,37729,Depp & Burton,1245864219 +155013,37729,gothic,1245864224 +155013,37729,Johnny Depp,1245864221 +155013,37729,Tim Burton,1245864222 +155013,37830,amazing fight choreography,1253847667 +155013,37830,anime,1253847669 +155013,37830,based on video game,1253847670 +155013,37830,cgi,1253847673 +155013,37830,computer animation,1253847675 +155013,37830,Dynamic CGI Action,1253847685 +155013,37830,final fantasy,1253847689 +155013,37830,sword fight,1253847699 +155013,37830,video game adaptation,1253847694 +155013,37830,videogame,1253847689 +155013,37857,animation,1245726259 +155013,37857,claymation,1245726261 +155013,37857,dream,1245726263 +155013,37857,fantasy,1245726265 +155013,37857,Fantasy World,1245726267 +155013,37857,neil gaiman,1245726269 +155013,37857,parallel universe,1245726271 +155013,39398,alternate reality,1276303265 +155013,39398,mockumentary,1276303265 +155013,39398,racism,1276303267 +155013,39398,satire,1276303269 +155013,40732,goretastic,1245864169 +155013,40732,horror,1245864171 +155013,40732,spelunking,1245864192 +155013,40815,adapted from:book,1247636896 +155013,40815,adventure,1247636900 +155013,40815,based on a book,1247636902 +155013,40815,classic,1247636905 +155013,40815,competition,1247636907 +155013,40815,dance,1247636909 +155013,40815,dark,1247636911 +155013,40815,destiny,1247636915 +155013,40815,dragons,1247636918 +155013,40815,England,1247636919 +155013,40815,fantasy,1247636921 +155013,40815,Gary Oldman,1247636923 +155013,40815,ghosts,1247636925 +155013,40815,ghosts/afterlife,1247636927 +155013,40815,Good versus evil,1247636931 +155013,40815,harry potter,1247636933 +155013,40815,magic,1247636936 +155013,40815,maze,1247636938 +155013,40815,Wizards,1247636940 +155013,40870,coming of age,1254712308 +155013,40870,drugs,1254712273 +155013,40870,ECCENTRIC FAMILIES,1254712274 +155013,40870,gay,1254712276 +155013,40870,Gay Lead Character,1254712277 +155013,40870,glbt,1254712283 +155013,40870,good direction,1254712280 +155013,40870,homosexuality,1254712285 +155013,40870,humorous,1254712290 +155013,40870,MISFITS AND OUTSIDERS,1254712292 +155013,40870,queer,1254712295 +155013,40870,questioning sexuality,1254712301 +155013,40870,quirky,1254712296 +155013,41566,alternate reality,1245725733 +155013,41566,C.S. Lewis,1245725707 +155013,41566,children,1245725727 +155013,41566,christianity,1245725709 +155013,41566,fantasy,1245725721 +155013,41566,Fantasy World,1245725711 +155013,41566,good versus evil,1245725719 +155013,41566,mythology,1245725713 +155013,41566,Parallel universe,1245725714 +155013,41566,propaganda,1245725716 +155013,42725,Allen Covert,1276302325 +155013,42725,cannabis,1276302328 +155013,42725,David Spade,1276302330 +155013,42725,drugs,1276302332 +155013,42725,Jonah Hill,1276302337 +155013,42725,Jonathan Loughran,1276302338 +155013,42725,Kevin Nealon,1276302340 +155013,42725,marijuana,1276302341 +155013,42725,stoner,1276302345 +155013,42725,Stoner Movie,1276302351 +155013,42725,video game testers,1276302347 +155013,42725,video games,1276302348 +155013,43560,comedy,1276302748 +155013,43560,discipline,1276302749 +155013,43560,Emma Thompson,1276302820 +155013,43560,fairy tale,1276302751 +155013,43560,fun,1276302752 +155013,43560,magic,1276302754 +155013,44191,action,1259002361 +155013,44191,adapted from:comic,1259002364 +155013,44191,based on a book,1259002366 +155013,44191,based on a comic,1259002368 +155013,44191,comic book,1259002370 +155013,44191,dystopia,1259002371 +155013,44191,England,1259002373 +155013,44191,gay,1259002375 +155013,44191,historical,1259002377 +155013,44191,homosexuality,1259002378 +155013,44191,imdb top 250,1259002380 +155013,44191,inspirational,1259002382 +155013,44191,politics,1259002384 +155013,44191,prison,1259002385 +155013,44191,revenge,1259002387 +155013,44191,sci-fi,1259002388 +155013,44191,super-hero,1259002389 +155013,44191,terrorism,1259002394 +155013,44191,thought-provoking,1259002391 +155013,44191,vigilantism,1259002392 +155013,44195,dark comedy,1245724874 +155013,44195,dark humor,1245724880 +155013,44195,social commentary,1245724895 +155013,45081,atmospheric,1245725774 +155013,45081,based on a computer game,1245725776 +155013,45081,Deborah Kara Unger,1245725779 +155013,45081,dystopic,1245725786 +155013,45081,guilty pleasure,1245725788 +155013,45081,Horror Game,1245725791 +155013,45081,post-apocalyptic,1245725794 +155013,45081,video game,1245725806 +155013,45503,ridiculously spiritual,1276302575 +155013,45720,Anne Hathaway,1245725508 +155013,45720,fashion,1245725519 +155013,45720,magazines,1245725521 +155013,45720,New York,1245725523 +155013,45720,Paris,1245725525 +155013,45720,Streep strong & funny,1245725514 +155013,45722,action,1248760981 +155013,45722,Adventure,1248760983 +155013,45722,big budget,1248761034 +155013,45722,cliffhanger,1248761031 +155013,45722,Comedy,1248760977 +155013,45722,funny,1248761011 +155013,45722,Johnny Depp,1248760975 +155013,45722,Keira Knightley,1248760975 +155013,45722,pirates,1248760985 +155013,45722,romantic,1248761023 +155013,45722,seafaring,1248761025 +155013,45722,swashbuckler,1248760993 +155013,45722,thriller,1248760988 +155013,45722,treasure,1248760998 +155013,46578,beauty pageant,1245862667 +155013,46578,dark comedy,1245862655 +155013,46578,dysfunctional family,1245862340 +155013,46578,feel-good,1245862658 +155013,46578,homosexuality,1245862661 +155013,46578,inspirational,1245862664 +155013,46578,off-beat comedy,1245862342 +155013,46578,quirky,1245862348 +155013,46578,road trip,1245862350 +155013,48043,artistic,1246933219 +155013,48043,atmospheric,1246933221 +155013,48043,cerebral,1246933224 +155013,48043,death,1246933217 +155013,48043,dreamlike,1246933206 +155013,48043,fountain of youth,1246933215 +155013,48043,hallucinatory,1246933236 +155013,48043,history,1246933235 +155013,48043,Hugh Jackman,1246933214 +155013,48043,immortality,1246933208 +155013,48043,love,1246933226 +155013,48043,lyrical,1246933232 +155013,48043,Music,1246933212 +155013,48043,religion,1246933229 +155013,48043,spain,1246933228 +155013,48043,visually appealing,1246933209 +155013,48394,fairy tale,1245725039 +155013,48394,fantasy,1245725037 +155013,48394,surreal,1245725034 +155013,48394,twist ending,1245725036 +155013,48394,world war II,1245725030 +155013,49272,007,1245865076 +155013,49272,action,1245865078 +155013,49272,espionage,1245865080 +155013,49272,gambling,1245865105 +155013,49272,London,1245865082 +155013,49272,poker,1245865108 +155013,49272,spies,1245865088 +155013,49272,torture,1245865152 +155013,50601,based on a book,1249368872 +155013,50601,bullying,1249368873 +155013,50601,death of a child,1249368845 +155013,50601,fantasy,1249368856 +155013,50601,hurried ending,1249368853 +155013,50601,liberal messages,1249368858 +155013,50601,sad,1249368860 +155013,50601,teen relationships,1249368864 +155013,50601,Zooey Deschanel,1249368870 +155013,51255,action spoof,1245725322 +155013,51255,black comedy,1245725328 +155013,51255,british comedy,1245725320 +155013,51255,dystopia,1245725334 +155013,51255,parody,1245725315 +155013,51255,police,1245725307 +155013,51255,Simon Pegg,1245725304 +155013,51255,surreal,1245725318 +155013,51662,action,1248760822 +155013,51662,stylized,1248760818 +155013,51662,sword fight,1248760818 +155013,51698,based on a short story,1248760754 +155013,51698,buddhism,1248760754 +155013,51698,future kids powers doll,1248760758 +155013,51698,taoism,1248760761 +155013,51698,time travel,1248760763 +155013,51709,monster,1247635855 +155013,51709,sea monster,1247635856 +155013,52435,Christmas,1245725289 +155013,52435,classic,1245725287 +155013,52435,Dr. Seuss,1245725284 +155013,52885,anime,1245725025 +155013,52885,dreamlike,1245725022 +155013,52885,psychedellic,1245725023 +155013,52975,based on a play,1245725386 +155013,52975,broadway,1245725404 +155013,52975,dancing,1245725398 +155013,52975,happy,1245725400 +155013,52975,high school,1245725388 +155013,52975,musical,1245725379 +155013,53125,adventure,1248760965 +155013,53125,comedy,1248761114 +155013,53125,Johnny Depp,1248760950 +155013,53125,Keira Knightley,1248760966 +155013,53125,Orlando Bloom,1248761130 +155013,53125,pirates,1248761132 +155013,53125,swashbuckler,1248761139 +155013,54259,coming of age,1245724913 +155013,54259,fairy tale romance,1245724916 +155013,54259,magic realism,1245724923 +155013,54259,Neil Gaiman,1245724919 +155013,54259,pirates,1245724921 +155013,54281,Hope Davis,1245864265 +155013,54281,movie to see,1245864268 +155013,54281,redemption,1245864282 +155013,55232,Milla Jovovich,1245864768 +155013,55232,plot point:bio-medical danger,1245864775 +155013,55232,post-apocalyptic,1245864773 +155013,55232,video game adaptation,1245864771 +155013,55232,zombies,1245864770 +155013,56174,alone in the world,1276304025 +155013,56174,apocalypse,1276304025 +155013,56174,based on a book,1276304027 +155013,56174,post-apocalyptic,1276304030 +155013,56174,religion,1276304033 +155013,56174,suspenseful,1276304036 +155013,56174,vampire,1276304038 +155013,56174,virus,1276304041 +155013,56174,Will Smith,1276304035 +155013,56174,zombies,1276304039 +155013,56251,animation,1245863286 +155013,56251,Based on a TV show,1245863288 +155013,56251,futurama,1245863294 +155013,56251,sci fi,1245863296 +155013,56339,deformity,1245864882 +155013,56339,ghosts/afterlife,1245864822 +155013,56339,HAUNTED BY THE PAST,1245864885 +155013,56339,horror,1245864825 +155013,56339,husband-wife relationship,1245864871 +155013,56339,mother-son relationship,1245864887 +155013,56339,twist ending,1245864862 +155013,56367,adoption,1246231659 +155013,56367,comedy,1246231655 +155013,56367,cult film,1246231657 +155013,56367,Ellen Page,1246231639 +155013,56367,high school,1246231653 +155013,56367,hilarious,1246231661 +155013,56367,notable soundtrack,1246231641 +155013,56367,pregnancy,1246231642 +155013,56367,teenage pregnancy,1246231645 +155013,56367,teenager,1246231644 +155013,56367,witty,1246231647 +155013,57274,bloody,1256362203 +155013,57274,Foreign,1256361938 +155013,57274,Handycam,1256361944 +155013,57274,horror,1256362212 +155013,57274,infection,1256362206 +155013,57274,panic,1256362208 +155013,57274,virus,1256361941 +155013,57274,zombies,1256361940 +155013,57640,action,1245725975 +155013,57640,set:mechanical gearworks,1245725995 +155013,58105,based on a book,1247612539 +155013,58105,children,1247612543 +155013,58105,fantasy,1247612548 +155013,58105,Freddie Highmore,1247612561 +155013,58105,Mark Waters,1247612559 +155013,58105,Martin Short,1247612555 +155013,58105,Mary-Louise Parker,1247612549 +155013,58105,Nick Nolte,1247612551 +155013,58105,Seth Rogen,1247612552 +155013,58559,Batman,1245726121 +155013,58559,Heath Ledger,1245726124 +155013,59118,bittersweet,1248293216 +155013,59118,British,1248293206 +155013,59118,drama,1248293211 +155013,59118,feel-good,1248293197 +155013,59118,happy,1248293203 +155013,59118,music,1248293206 +155013,59118,no plot,1248293210 +155013,59315,adapted from:comic,1245862721 +155013,59315,adventure,1245862768 +155013,59315,android(s)/cyborg(s),1245862764 +155013,59315,betrayal,1245862736 +155013,59315,comic book,1245862723 +155013,59315,kidnapping,1245862740 +155013,59315,Marvel,1245862730 +155013,59315,torture,1245862746 +155013,59501,author:C. S. Lewis,1245726147 +155013,59501,C.S. Lewis,1245726148 +155013,59501,fantasy,1245726152 +155013,59501,Jesus freaks,1245726154 +155013,59501,narnia,1245726162 +155013,59549,coming out,1259001023 +155013,59549,gay,1259001024 +155013,59549,Gay Character,1259001028 +155013,59549,Gay Lead Character,1259001029 +155013,59549,gay relationship,1259001031 +155013,59549,gay romance,1259001033 +155013,59549,homosexuality,1259001035 +155013,59549,love story,1259001038 +155013,59549,netflix,1259001040 +155013,59549,queer,1259001042 +155013,59549,responsibility,1259001047 +155013,59549,romance,1259001049 +155013,59549,self discovery,1259001051 +155013,59549,surf,1259001053 +155013,59549,surfing,1259001054 +155013,60069,adventure,1276303407 +155013,60069,beautiful,1276303410 +155013,60069,classic,1276303411 +155013,60069,dystopia,1245724852 +155013,60069,funny,1276303408 +155013,60069,inspirational,1276303405 +155013,60069,pixar,1245724853 +155013,60069,Post apocalyptic,1245724856 +155013,60069,Sci-Fi,1245724859 +155013,60074,alcoholic,1276304077 +155013,60074,anti-hero,1276304077 +155013,60074,plot twist,1276304079 +155013,60074,public relations,1276304081 +155013,60074,super hero,1276304085 +155013,60074,superhero,1276304082 +155013,60074,Will Smith,1276304083 +155013,60161,animation,1245864954 +155013,60161,Based on a TV show,1245864970 +155013,60161,comedy,1245864967 +155013,60161,futurama,1245864983 +155013,60161,sci fi,1245864958 +155013,60522,gore,1276303339 +155013,60522,ridiculous,1276303368 +155013,60538,drugs,1276304386 +155013,60538,hallucinatory,1276304396 +155013,60538,murder,1276304409 +155013,60538,tourists,1276304391 +155013,60684,based on a comic,1245724835 +155013,60684,dystopia,1245724836 +155013,60684,graphic novel,1245724841 +155013,60684,sci-fi,1245724838 +155013,60832,blood,1248745767 +155013,60832,dark,1248745767 +155013,60832,twists & turns,1248745773 +155013,60979,anime,1245864660 +155013,60979,Batman,1245864615 +155013,61240,adolescence,1276303962 +155013,61240,based on a book,1276303962 +155013,61240,bullying,1276303965 +155013,61240,coming of age,1276303967 +155013,61240,swedish,1276303972 +155013,61240,vampire,1276303969 +155013,61240,vampires,1276303970 +155013,61250,dumb blonde,1276304051 +155013,61250,friendship,1276304107 +155013,61250,geek sorority,1276304109 +155013,61250,Nudity (Rear),1276304106 +155013,61250,playboy girl,1276304104 +155013,61250,playboy non bunny,1276304101 +155013,61262,flat Story,1245865720 +155013,61394,black comedy,1276303172 +155013,61394,comedy,1276303174 +155013,61394,dark comedy,1276303175 +155013,61394,journalism,1276303177 +155013,61394,Non sequitur,1276303178 +155013,61394,parody,1276303181 +155013,61394,repeated use of shots,1276303184 +155013,61394,satire,1276303186 +155013,61394,social commentary,1276303187 +155013,61394,Steven Seagal,1276303189 +155013,62155,cute,1276302734 +155013,62155,great soundtrack,1276302723 +155013,62155,Kat Dennings,1276302730 +155013,62155,Manhattan,1276302726 +155013,62155,Michael Cera,1276302728 +155013,62155,New York City,1276302725 +155013,62336,anime,1245725424 +155013,62376,adventure,1245726141 +155013,62376,based on a book,1245726140 +155013,62376,Bill Murray,1245726134 +155013,62376,steampunk,1245726136 +155013,62376,stylistic,1245726137 +155013,62733,"""found footage""",1276303255 +155013,62733,zombies,1276303259 +155013,62956,d&d,1245865018 +155013,62956,fantasy spoof,1245865006 +155013,62956,futurama,1245865009 +155013,62956,intelligent humor,1245865011 +155013,62956,nerd humor,1245865012 +155013,62956,video only,1245865017 +155013,63033,based on a book,1276304173 +155013,63033,blindness,1276304175 +155013,63033,epidemic,1276304178 +155013,64957,Brad Pitt,1245724758 +155013,64957,touching,1245724768 +155013,65261,Animation,1276302931 +155013,65261,anime,1276302931 +155013,65261,beach,1276302933 +155013,65261,environmental,1276302935 +155013,65261,friendship,1276302937 +155013,65261,Ghibli,1276302940 +155013,65261,Hayao Miyazaki,1276302941 +155013,65261,Japan,1276302942 +155013,65261,storm,1276302946 +155013,65261,strange story,1276302945 +155013,65261,Studio Ghibli,1276302944 +155013,65514,fighting,1290639612 +155013,65514,martial arts,1290639614 +155013,66097,alternate reality,1245725534 +155013,66097,alternate universe,1245725536 +155013,66097,animation,1245725538 +155013,66097,author:Neil Gaiman,1245725541 +155013,66097,claymation,1245725543 +155013,66097,gothic,1245725544 +155013,66097,Stereoscopic 3-D,1245725547 +155013,66097,Surreal,1245725548 +155013,66171,Chris Evans,1248745533 +155013,66171,Dakota Fanning,1248745530 +155013,66171,psychic powers,1248745527 +155013,66297,futurama,1245865733 +155013,66297,intelligent humor,1245865730 +155013,66297,sci fi,1245865728 +155013,66934,anti-hero,1245864059 +155013,66934,Captain Hammer,1245864068 +155013,66934,Dr. Horrible,1245864062 +155013,66934,mad scientist,1245864083 +155013,66934,Nathan Fillion,1276303319 +155013,66934,Neil Patrick Harris,1245864072 +155013,66934,parody,1245864078 +155013,66934,short,1245864147 +155013,66934,too short,1245864153 +155013,67186,ghosts,1247611171 +155013,67186,haunted house,1247611170 +155013,67197,Alex Proyas,1248745641 +155013,67197,aliens,1248745650 +155013,67197,Nicolas Cage,1248745644 +155013,67197,sci-fi,1248745636 +155013,68319,comic book,1245726860 +155013,68319,Comic Book adaption,1245726858 +155013,68319,hugh jackman,1245726855 +155013,68319,Marvel,1245726868 +155013,68319,sci-fi,1245726872 +155013,68358,action,1245726195 +155013,68358,alternate reality,1245726198 +155013,68358,future,1245726199 +155013,68358,Leonard Nimoy,1245726220 +155013,68358,Simon Pegg,1245726215 +155013,68358,space,1245726209 +155013,68358,space travel,1245726211 +155013,68358,Star Trek,1245726202 +155013,68358,time travel,1245726204 +155013,68519,crappy sequel,1245727094 +155013,68519,Donnie Darko,1245865953 +155013,68554,action,1245726384 +155013,68554,agnosticism,1245726349 +155013,68554,mystery,1245726405 +155013,68554,not faithful to the book,1245726364 +155013,68554,secrets,1245726396 +155013,68554,thriller,1245726379 +155013,68835,high school,1245724789 +155013,68835,homosexuality,1245724793 +155013,68835,Shakespeare,1245724797 +155013,68835,theater,1245724801 +155013,69122,Drinking,1246932043 +155013,69122,imdb top 250,1246932046 +155013,69122,Las Vegas,1246932049 +155013,69574,alice in wonderland,1257704929 +155013,69574,elementary school,1257704932 +155013,69784,homosexuality,1247635669 +155013,69784,mockumentary,1247635674 +155013,69784,tasteless,1247635677 +155013,70286,aliens,1251012868 +155013,70286,genetics,1251012870 +155013,70286,humor,1251012875 +155013,70286,intelligent sci-fi,1251012872 +155013,70286,justice,1251012879 +155013,70286,redemption,1251012882 +155013,70286,segregation,1251012883 +155013,70286,transformation,1251012884 +155013,70286,weapons,1251012886 +155013,70293,based on a book,1251012948 +155013,70293,biography,1251012959 +155013,70293,food,1251012951 +155013,70293,france,1251012956 +155013,70293,scored,1251012953 +155013,70562,food,1276304349 +155013,70562,Japan,1276304350 +155013,70562,language barrier,1276304375 +155013,70562,Tokyo,1276304348 +155013,71057,current,1253847745 +155013,71057,post-apocalyptic,1253847733 +155013,71057,Simple,1253847736 +155013,71057,Visuals,1253847742 +155013,71135,action,1276304326 +155013,71135,aliens,1276304326 +155013,71135,amnesia,1276304328 +155013,71135,blood,1276304330 +155013,71135,future,1276304332 +155013,71135,horror,1276304336 +155013,71135,mutation,1276304337 +155013,71135,post-apocalyptic,1276304339 +155013,71135,sci-fi,1276304340 +155013,71135,space,1276304341 +155013,71135,space travel,1276304342 +155013,71518,Austin,1276302223 +155013,71518,coming of age,1276302224 +155013,71518,current,1276302228 +155013,71518,Drew Barrymore,1276302226 +155013,71518,Ellen Page,1276302230 +155013,71518,girl power,1276302234 +155013,71518,Juliette Lewis,1276302236 +155013,71518,Kristen Wiig,1276302237 +155013,71518,Marcia Gay Harden,1276302239 +155013,71518,pop counterculture,1276302241 +155013,71518,roller derby,1276302243 +155013,71518,rollerderby,1276302247 +155013,71518,setting:Texas,1276302249 +155013,71518,sport:roller derby,1276302251 +155013,71518,toplist09,1276302254 +155013,71518,Zoe Bell,1276302256 +155013,71535,Bill Murray,1276302283 +155013,71535,clowns,1276302283 +155013,71535,comedy,1276302287 +155013,71535,dark comedy,1276302289 +155013,71535,funny,1276302293 +155013,71535,gore,1276302294 +155013,71535,guns,1276302296 +155013,71535,horror,1276302298 +155013,71535,Jesse Eisenberg,1276302300 +155013,71535,parody,1276302302 +155013,71535,post-apocalyptic,1276302303 +155013,71535,road trip,1276302313 +155013,71535,stylized violence,1276302310 +155013,71535,violence,1276302312 +155013,71535,Woody Harrelson,1276302306 +155013,71535,zombies,1276302309 +155013,72489,between fantastic & realistic,1276304205 +155013,72489,blood,1276304207 +155013,72489,dark,1276304208 +155013,72489,extremely gory,1276304196 +155013,72489,martial arts,1276304196 +155013,72489,ninja,1276304196 +155013,72489,Rain,1276304198 +155013,72489,stylized violence,1276304200 +155013,72947,Christmas,1276303584 +155013,72947,coming out,1276303545 +155013,72947,double meanings,1276303491 +155013,72947,family,1276303571 +155013,72947,gay,1276303467 +155013,72947,innuendo,1276303522 +155013,72947,stoner,1276303608 +155013,72998,aliens,1290639672 +155013,72998,beautiful scenery,1290639674 +155013,72998,futuristic,1290639673 +155013,72998,military,1290639666 +155013,72998,mythology,1290639675 +155013,72998,revolution,1290639680 +155013,72998,sci-fi,1290639670 +155013,72998,Sigourney Weaver,1290639668 +155013,73268,blood,1276304239 +155013,73268,cure,1276304245 +155013,73268,dystopia,1276304246 +155013,73268,dystopic future,1276304238 +155013,73268,Ethan Hawke,1276304236 +155013,73268,human harvesting,1276304234 +155013,73268,immortality,1276304233 +155013,73268,plague,1276304227 +155013,73268,rebels,1276304230 +155013,73268,starvation,1276304224 +155013,73268,undead,1276304225 +155013,73268,vampires,1276304221 +155013,73268,Willem Dafoe,1276304221 +155013,74553,art,1276302387 +155013,74553,magic,1276302453 +155013,74553,nature,1276302398 +155013,77561,based on a comic,1276302799 +155013,77561,Marvel,1276302801 +155013,77561,Robert Downey Jr.,1276302787 +155013,77561,Samuel L. Jackson,1276302787 +155013,77561,superhero,1276302789 +155013,80363,adapted from:video game,1290639537 +155013,80363,Milla Jovovich,1290639531 +155013,80363,resident evil,1290639532 +155013,80363,virus,1290639534 +155013,80363,zombies,1290639535 +155013,81834,based on a book,1290639503 +155022,4979,stylized,1420598577 +155022,96432,crime,1421426116 +155022,96432,drama,1421426116 +155022,96432,prohibition,1421426116 +155022,111732,Stylized,1422853708 +155035,1513,reunion,1312279904 +155035,3683,Coen Brothers,1208071860 +155035,3683,surprise ending,1208071860 +155035,3730,lack of trust,1428128800 +155035,7669,Jane Austen,1268815303 +155035,26068,Nazi Europe,1428041303 +155035,26068,war,1428041294 +155035,41025,costumes,1334047706 +155035,41025,funny classic,1334047707 +155035,41025,intelligent dialogue,1334047707 +155035,41025,Oscar Wilde story,1334047707 +155035,41025,period piece,1334047707 +155035,41025,witty dialogue,1334047707 +155035,50005,Classical Chinese,1208069140 +155035,50005,Emperor,1208069128 +155035,55820,very violent,1208068983 +155035,58559,violent disturbing,1312279342 +155035,69757,boring,1334537650 +155035,69757,sophomoric,1334537650 +155035,69757,uninteresting people,1334537650 +155035,97938,Terrific story,1365156583 +155035,113938,leadership,1428038468 +155035,113938,megalomania,1428038468 +155035,113938,politics,1428038468 +155035,114250,inheritance,1430886676 +155035,114250,mistress,1430886676 +155035,114250,renting,1430886676 +155035,115220,job/career vs. relationship/marriage,1429925978 +155035,115220,princess,1429925978 +155035,115220,royalty,1429925978 +155039,5791,amazing film about an amazing woman,1138008660 +155039,34338,would you please let them tell the joke?,1138348565 +155059,260,good vs evil,1441319453 +155059,260,Science Fiction,1441319441 +155088,260,classic,1440168687 +155088,260,George Lucas,1440168675 +155088,260,sci-fi,1440168681 +155095,3176,secrets,1139094248 +155133,1196,1980s,1453875283 +155133,1196,modern fantasy,1453875279 +155133,1196,sword fight,1453875293 +155160,16,gangster,1332008595 +155160,16,gangsters,1332008942 +155160,16,mob,1332008646 +155160,16,organized crime,1332008612 +155160,16,violent,1332008616 +155160,296,Black comedy,1332008513 +155160,296,multiple storylines,1332008526 +155160,296,stylized,1332008507 +155160,296,violence,1332008518 +155160,431,crime,1332008675 +155160,431,gangster,1332008694 +155160,431,romance,1332008685 +155160,431,sad,1332008688 +155160,555,action,1332008458 +155160,555,romance,1332008465 +155160,555,story,1332008469 +155160,1089,dark comedy,1332008561 +155160,1089,gangster,1332008573 +155160,1089,notable soundtrack,1332008565 +155160,1089,violence,1332008552 +155160,1213,gangsters,1332008891 +155160,1213,gore,1332008894 +155160,1213,violence,1332008897 +155160,3020,Crazy,1332008777 +155160,3020,going postal,1332008764 +155160,3020,Violence,1332008771 +155160,4725,asylum,1332067901 +155160,4725,bad pacing,1332067893 +155160,4725,Boring,1332068022 +155160,4725,missed the mark,1332068129 +155160,4725,pointless,1332068040 +155181,260,luke skywalker,1335314819 +155181,260,space,1335314830 +155181,318,based on a book,1335314357 +155181,318,prison,1335314471 +155181,2391,dark comedy,1335314770 +155187,47610,twist ending,1434830868 +155207,3,comedinha de velhinhos engraçada,1139323636 +155207,32,great actors,1139324489 +155207,318,great actor,1139324416 +155207,509,great drama,1139324969 +155207,597,classical,1139324601 +155207,780,bad movie,1139324472 +155207,858,classical,1139324563 +155207,912,classical,1139324902 +155207,923,classic,1139325923 +155207,1172,classical,1139326054 +155207,1221,classical,1139324838 +155207,1784,great intelligent comedy,1139324958 +155207,1961,classical,1139324844 +155207,2023,what to say about god?,1139323899 +155207,2054,good for a rainy sunday afternoon,1139323820 +155207,2329,absolutely awsome! Great actor!,1139323858 +155207,2524,great action,1139324007 +155207,2700,for fans - best entertainment,1139323803 +155207,2918,changed my life,1139323951 +155207,2959,super cool,1139324885 +155207,2987,for fun,1139323873 +155207,2997,wonderful,1139324861 +155207,3176,very clever,1139323922 +155207,4235,very good,1139325864 +155207,4407,great history movie,1139324148 +155207,4973,fabulous,1139323969 +155207,4973,marvelous,1139323969 +155207,4979,i liked it!!,1139326146 +155207,5617,great humor,1139325908 +155207,6016,great director,1139325030 +155207,7160,great actress,1139325809 +155207,7382,wonderful,1139326073 +155207,8014,great photograpy,1139326128 +155207,8873,very good,1139325886 +155212,260,classic,1443347998 +155212,260,SF,1443347990 +155258,5445,future,1316973825 +155258,5445,futuristic,1316973823 +155258,5445,Philip K. Dick,1316973828 +155258,5445,time travel,1316973832 +155258,7147,dreamlike,1316973253 +155258,7147,quirky,1316973265 +155258,7147,stylized,1316973281 +155258,7147,surreal,1316973250 +155258,7147,surrealism,1316973261 +155258,68237,alter ego,1316972987 +155258,68237,artificial intelligence,1316972984 +155258,68237,dialogue driven,1316972991 +155258,68237,Sci-fi,1316972996 +155258,79132,alternate reality,1316973752 +155258,79132,dreamlike,1316973756 +155258,79132,heist,1316973767 +155258,79132,thought-provoking,1316973759 +155258,85414,deja vu,1316973053 +155258,85414,dumbed down,1316973077 +155258,85414,interesting,1316973083 +155258,85414,mindfuck,1316973087 +155258,85414,plot holes,1316973063 +155258,85414,science fiction,1316973061 +155258,85414,time travel,1316973056 +155258,85414,Weak third act,1316973069 +155263,47,brad pitt,1233519520 +155263,1552,airplane,1242419569 +155263,1552,convicts,1242419568 +155263,1552,Jerry Bruckheimer,1242419566 +155263,1552,Nicolas Cage,1242419565 +155263,1556,Keanu Reeves,1242418732 +155263,1556,Sandra Bullock,1242418723 +155263,1917,Ben Affleck,1242419508 +155263,1917,Bruce Willis,1242419510 +155263,1917,end of the world,1242419513 +155263,1917,humorous,1242419523 +155263,1917,long music video,1242419526 +155263,1917,Owen Wilson,1242419519 +155263,1917,space program,1242419515 +155263,3275,Boston,1252182981 +155263,3275,dark humor,1252183000 +155263,3275,insanity,1252183002 +155263,3275,Irish,1252182975 +155263,3275,Mafia,1252183006 +155263,3275,Mission From God,1252183009 +155263,3275,serial killer,1252182987 +155263,3275,vigilantism,1252183016 +155263,3717,Angelina Jolie,1242419597 +155263,3717,can't remember,1242419607 +155263,3717,carjacking,1242419605 +155263,3717,Nice car,1242419615 +155263,3717,Nicolas Cage,1242419599 +155263,3717,Robert Duvall,1242419604 +155263,3949,Romance,1233519534 +155263,4310,Ben Affleck,1242419493 +155263,4310,History,1242419488 +155263,4310,jerry bruckheimer,1242419490 +155263,4310,Josh Hartnett,1242419472 +155263,4310,Kate Beckinsale,1242419476 +155263,4310,LOVE TRIANGLES,1242419474 +155263,4310,War,1242419483 +155263,4310,World War II,1242419482 +155263,4369,Michelle Rodriguez,1242419632 +155263,4369,no desire to see this,1242419639 +155263,4369,racing,1242419642 +155263,4369,Vin Diesel,1242419634 +155263,4775,Mariah Carey,1242418746 +155263,5014,Dakota Fanning,1252942421 +155263,5014,disability,1252942428 +155263,5014,mental illness,1252942431 +155263,5014,Michelle Pfeiffer,1252942425 +155263,5014,psychology,1252942417 +155263,5014,sean penn,1252942423 +155263,5954,Edward Norton,1233519363 +155263,6187,Death penalty,1233517657 +155263,6187,Kevin Spacey,1233517675 +155263,6187,Nudity (Full Frontal - Brief),1233517688 +155263,6187,Texas,1233517686 +155263,6953,Alejandro Gonzalez Inarritu,1226161637 +155263,6953,Benicio Del Toro,1226161586 +155263,6953,must see,1226161642 +155263,6953,Naomi Watts,1226161582 +155263,6953,Nudity (Topless - Notable),1226161638 +155263,6953,sad but good,1226161635 +155263,6953,Sean Penn,1226161598 +155263,7451,High School,1233519322 +155263,8533,great ending,1233519315 +155263,8533,Romance,1233519316 +155263,8533,Ryan Gosling,1233519303 +155263,27788,twist ending,1253038637 +155263,39427,ryan gosling,1233519427 +155263,40581,Ryan Reynolds,1233519541 +155263,44665,assassination,1242419434 +155263,44665,Ben Kingsley,1242419419 +155263,44665,Bruce Willis,1242419423 +155263,44665,Josh Hartnett,1242419411 +155263,44665,Morgan Freeman,1242419413 +155263,44665,twist,1242419427 +155263,44665,twist ending,1242419428 +155263,44974,controversial,1252942358 +155263,44974,disturbing,1252942364 +155263,44974,Ellen Page,1252942351 +155263,44974,gore,1252942353 +155263,44974,internet,1252942355 +155263,44974,revenge,1252942366 +155263,44974,sexual abuse,1252942362 +155263,44974,To See,1252942372 +155263,48043,immortality,1233519329 +155263,50872,animation,1245156678 +155263,50872,Pixar animation,1245156717 +155263,51931,9-11,1252834674 +155263,51931,9/11,1252834672 +155263,51931,adam sandler,1252834661 +155263,51931,depression,1252834690 +155263,51931,Don Cheadle,1252834668 +155263,51931,New York City,1252834695 +155263,51931,post-traumatic stress disorder,1252834683 +155263,51931,sad,1252834688 +155263,53123,good music,1249701479 +155263,53123,Ireland,1249701482 +155263,53123,Quite Romantic,1249701485 +155263,53769,atmospheric,1252260948 +155263,53769,best viewed in black and white,1252260966 +155263,53769,bittersweet,1252260942 +155263,53769,color version,1252260977 +155263,53769,funny,1252260919 +155263,53769,great dialouge,1252260913 +155263,53769,loneliness,1252260916 +155263,58025,based on a book,1262623735 +155263,58025,Rachel Bilson,1262623714 +155263,58025,Samuel L. Jackson,1262623720 +155263,58025,teleportation,1262623728 +155263,58025,terrible plot,1262623723 +155263,58078,Brendan Fraser,1245156002 +155263,58078,Forest Whitaker,1245156007 +155263,58078,inspirational,1245155959 +155263,58078,Kevin Bacon,1245155986 +155263,58078,Sarah Michelle Gellar,1245155996 +155263,58078,thought-provoking,1245155978 +155263,59369,action,1252183033 +155263,59369,crime,1252183048 +155263,59369,father daughter relationship,1252183044 +155263,59369,kidnapping,1252183040 +155263,59369,Liam Neeson,1252183036 +155263,59369,Paris,1252183038 +155263,59369,thriller,1252183036 +155263,59369,unrealistic,1252183056 +155263,59985,Emily Mortimer,1245155933 +155263,59985,Ryan Reynolds,1245155915 +155263,59985,Stuart Townsend,1245155937 +155263,60756,Adam McKay,1252866098 +155263,60756,John C. Reilly,1252866095 +155263,60756,movie to see,1252866100 +155263,60756,Seth Rogen,1252866092 +155263,60756,will ferrell,1252866090 +155263,61705,didja know there's a black police ociffer on our block? oh man there goes the neighborhood,1262623579 +155263,61705,Samuel L. Jackson,1262623574 +155263,64622,Kate Winslet,1242488955 +155263,64622,movie to see,1242488962 +155263,64716,Drama,1233519482 +155263,64716,Organ donor,1233519499 +155263,64839,bloody,1242569437 +155263,64839,father daughter relationship,1242569459 +155263,64839,movie to see,1242569455 +155263,64839,no clear ending,1242569444 +155263,64839,protagonist try to make things good,1242569470 +155263,64839,sad,1242569464 +155263,64839,sexuality,1242569440 +155263,64839,steroids,1242569450 +155263,64839,touching,1242569466 +155263,65230,dog,1242418428 +155263,65230,Jennifer Aniston,1242418422 +155263,65230,marriage,1242418431 +155263,65230,Owen Wilson,1242418424 +155263,66665,Maya Rudolph,1254407722 +155263,66665,pregnancy,1254407711 +155263,67087,bromantic,1252866015 +155263,67087,friendship,1252865998 +155263,67087,Jaime Pressly,1252866007 +155263,67087,Jason Segel,1252866010 +155263,67087,Paul Rudd,1252866004 +155263,67408,3D,1242418497 +155263,67408,all the best parts are in the trailer,1242418487 +155263,67408,animation,1242418483 +155263,67408,Dreamworks,1242418499 +155263,67408,Hugh Laurie,1242418476 +155263,67408,Kiefer Sutherland,1242418481 +155263,67408,Reese Witherspoon,1242418479 +155263,67408,Seth Rogen,1242418473 +155263,67695,Anna Faris,1249701435 +155263,67695,Seth Rogen,1249701429 +155263,68159,Helen Mirren,1252942137 +155263,68159,journalism,1252942141 +155263,68159,lame ending,1252942126 +155263,68159,political corruption,1252942135 +155263,68159,Rachel McAdams,1252942119 +155263,68159,Russell Crowe,1252942116 +155263,69122,Las Vegas,1245154679 +155263,69526,action,1247492250 +155263,69526,Megan Fox,1247492234 +155263,69526,robots,1247492245 +155263,69526,sequel,1247492247 +155263,69526,Shia LaBeouf,1247492237 +155263,69757,Zooey Deschanel,1260047580 +155263,70133,predictable,1262623660 +155263,70597,Zooey Deschanel,1252866069 +155263,72998,3d,1262623468 +155263,72998,aliens,1262623465 +155263,72998,cgi,1262623430 +155263,72998,James Cameron,1262623451 +155263,72998,military,1262623432 +155263,72998,Sigourney Weaver,1262623434 +155263,72998,war,1262623457 +155263,72998,white guilt,1262623459 +155263,73015,Alec Baldwin,1267735718 +155263,73015,Meryl Streep,1267735713 +155278,74868,terrible adaptation,1422882296 +155278,92793,fairy tale,1430539013 +155278,92793,russian,1430539013 +155278,92793,sweet,1430539013 +155278,96821,coming of age,1430538959 +155278,110328,discovery,1433945378 +155278,110328,mormons,1433945378 +155278,110328,teenage pregnancy,1433945378 +155278,111283,good music,1422881944 +155278,111283,handcuffs,1422881944 +155278,111283,music festival,1422881944 +155278,117849,aliens,1420863419 +155278,117849,earth,1420863419 +155278,117849,the humanity,1420863419 +155302,27473,bad,1433277365 +155302,27473,shit,1433277365 +155302,27473,this is piss,1433277365 +155314,150,nostalgic,1181745109 +155314,150,tom hanks,1181745112 +155314,1298,music,1181704703 +155314,1682,cerebral,1181801031 +155314,1682,reality TV,1181801028 +155314,1732,comedy,1181704887 +155314,1732,drugs,1181704887 +155314,1884,comedy,1181704766 +155314,1884,drugs,1181704766 +155314,1884,hunter s. thompson,1181800683 +155314,1921,cerebral,1181800529 +155314,1921,Darren Aronofsky,1181800572 +155314,1921,maths,1181702513 +155314,1921,notable soundtrack,1181800508 +155314,1921,seen more than once,1181800537 +155314,2843,kusturica,1181703376 +155314,3569,dogma,1181800931 +155314,3910,Björk,1181800722 +155314,3910,blindness,1181800711 +155314,3910,Lars von Trier,1181800705 +155314,3910,want to see again,1181800729 +155314,4011,fighting,1181801083 +155314,4226,AMNESIA,1181695779 +155314,4973,fanciful,1181800965 +155314,4973,innoncence,1181800985 +155314,4973,must see,1181800980 +155314,4973,Paris,1181800969 +155314,4973,romantic,1181696329 +155314,4973,seen more than once,1181800959 +155314,4995,genius,1181695912 +155314,4995,head movie,1181695931 +155314,4995,maths,1181704342 +155314,5047,comedy,1181704974 +155314,6016,realistic,1181696154 +155314,6214,hard to watch,1181705400 +155314,7361,head movie,1181695876 +155314,8370,Japan,1181700808 +155314,8370,Takeshi Kitano,1181700803 +155314,40148,gangs,1189660563 +155314,40148,MAFIA,1189660096 +155314,47423,drugs,1189922251 +155314,47997,future,1186452183 +155314,48043,cerebral,1181800591 +155314,48043,Darren Aronofsky,1181800613 +155314,48043,death,1181693905 +155314,48043,fountain of youth,1181800640 +155314,48043,immortality,1181800598 +155314,48385,extremely funny,1181694141 +155314,48385,humour,1181694150 +155314,48385,satire,1181694156 +155314,48744,sexual,1181701360 +155314,48774,dystopia,1181800429 +155314,48774,end of human,1181800264 +155314,48774,end of world,1181800265 +155314,48774,humanity,1181800265 +155314,48774,infertility,1181800371 +155314,48774,war,1181800265 +155319,260,classic sci-fi,1442105197 +155319,260,sci-fi,1442105191 +155329,58332,zombies,1250496540 +155352,260,good vs evil,1433391027 +155352,260,Science Fiction,1433391009 +155352,296,good dialogue,1433392504 +155352,296,intertwining storylines,1433392504 +155352,296,very funny,1433392504 +155357,141100,Castism,1440217501 +155357,141100,Love,1440217507 +155357,141100,Responsibility,1440217515 +155357,141102,Drama,1440217605 +155357,141102,Family,1440217627 +155357,141102,Love,1440217614 +155357,141102,Pain,1440217643 +155375,47,investigation,1440535924 +155375,47,powerful ending,1440535917 +155375,47,twists & turns,1440535938 +155375,1265,comedy,1440536008 +155375,1265,funny,1440536004 +155376,296,Quentin Tarantino,1300211887 +155376,1089,Quentin Tarantino,1300212244 +155376,2117,based on a book,1300211849 +155376,2959,based on a book,1300211984 +155376,2959,social commentary,1300211988 +155376,2959,surreal,1300212009 +155376,3481,based on a book,1300211970 +155376,3481,relationships,1300211960 +155376,3949,psychology,1300212262 +155376,3949,social commentary,1300212261 +155376,4027,Coen Brothers,1300211911 +155376,5418,espionage,1300210478 +155376,7361,romance,1300212054 +155376,7361,surreal,1300212048 +155376,44191,politics,1300212116 +155376,44191,social commentary,1300212113 +155376,45950,propaganda,1300211387 +155376,54999,satire,1300212144 +155376,55247,self discovery,1300212354 +155376,55820,coen brothers,1300212290 +155376,69757,quirky,1300212099 +155376,69757,romance,1300212074 +155376,71464,coen brothers,1300212177 +155376,71464,dark comedy,1300212193 +155376,79702,cultural references,1300212216 +155388,736,action,1279535427 +155388,736,disaster,1279535427 +155388,1721,Romance,1279535448 +155388,2013,disaster,1279535668 +155388,2522,airport,1279535537 +155388,2950,island,1279535517 +155388,2950,Nudity (Topless - Brief),1279535511 +155388,3250,survival,1279535527 +155388,4310,Action,1279534953 +155388,4310,Romance,1279534950 +155388,4310,World War II,1279534956 +155388,8361,catastrophe,1279535490 +155388,8368,time travel,1279535710 +155394,260,EPIC,1436747592 +155394,260,space opera,1436747544 +155394,104303,apple,1436749828 +155394,104303,biography,1436749828 +155394,104303,steve jobs,1436749828 +155394,140789,Sokurov,1439676703 +155396,123,Hong Kong,1279798796 +155396,123,urbane,1279798801 +155396,123,wong kar wai,1279798803 +155396,356,history,1279798363 +155396,551,animation,1279799176 +155396,551,beautiful,1279799174 +155396,551,Christmas,1279799170 +155396,551,classic,1279799191 +155396,551,halloween,1279799178 +155396,551,humorous,1279799179 +155396,551,Tim Burton,1279799169 +155396,2291,beautiful,1279799152 +155396,2291,Depp & Burton,1279799131 +155396,2291,gothic,1279799146 +155396,2291,Johnny Depp,1279799129 +155396,2291,Tim Burton,1279799137 +155396,4973,beautifully filmed,1279798639 +155396,4973,inspirational,1279798659 +155396,4973,Paris,1279798646 +155396,4973,surreal,1279798645 +155396,6942,british,1279798963 +155396,6942,christmas,1279798966 +155396,6942,directorial debut,1279798991 +155396,6942,great soundtrack,1279798979 +155396,6942,Hugh Grant,1279798975 +155396,6942,Keira Knightley,1279798956 +155396,6942,London,1279799005 +155396,6942,multiple storylines,1279798961 +155396,6942,Romance,1279798958 +155396,7361,Jim Carrey,1279798706 +155396,7361,memory,1279798712 +155396,30793,Johnny Depp,1279799242 +155396,30793,roald dahl,1279799213 +155396,30793,Tim Burton,1279799211 +155396,30812,Cate Blanchett,1279798580 +155396,37729,black comedy,1279799261 +155396,37729,Tim Burton,1279799258 +155396,50912,Elijah Wood,1279798756 +155396,50912,Maggie Gyllenhaal,1279798759 +155396,50912,Natalie Portman,1279798739 +155396,50912,Paris,1279798742 +155396,59725,fashion,1279799396 +155396,59725,New York City,1279799365 +155396,59725,Sarah Jessica Parker,1279799394 +155396,59725,wedding,1279799367 +155396,63082,India,1279798488 +155396,63082,music,1279798521 +155396,63082,poverty,1279798518 +155396,63082,romance,1279798512 +155396,63082,visuals,1279798495 +155396,69757,humor,1279798597 +155396,69757,inspiring,1279798608 +155396,69757,music,1279798604 +155396,69757,romance,1279798599 +155396,78174,based on a TV show,1279799438 +155396,78174,Sarah Jessica Parker,1279799431 +155409,260,classic sci-fi,1439495550 +155409,260,space adventure,1439495536 +155412,858,Oscar (Best Actor),1308844178 +155432,1036,dramatic action,1444054483 +155432,1036,stereotyping,1444054500 +155457,123310,destruction,1428645227 +155457,123310,dopamine,1428645227 +155457,123310,thriller,1428645227 +155462,1464,surreal,1425251199 +155462,4725,brad anderson,1425251555 +155462,4725,mystery,1425251555 +155462,4725,psychological,1425251555 +155462,4848,surreal,1425251142 +155462,8950,psychology,1425251047 +155462,8950,schizophrenia,1425251057 +155464,4022,psychological,1447062856 +155464,4022,stranded,1447062860 +155464,4022,Tom Hanks,1447062853 +155464,47099,based on a true story,1446582476 +155464,55765,based on a true story,1446582913 +155464,56174,alone in the world,1446582634 +155464,56174,Will Smith,1446582639 +155464,59315,superhero,1446582706 +155464,59315,technology,1446582710 +155464,71535,zombies,1446582877 +155464,73321,beautiful scenery,1446582592 +155464,73321,Denzel Washington,1446582598 +155464,73321,future,1446582594 +155464,73321,post-apocalyptic,1446582582 +155464,76093,fantasy,1446582791 +155464,85414,deja vu,1446582763 +155464,85414,interesting,1446582759 +155464,85414,science fiction,1446582772 +155464,85774,Formula 1 racing,1446583946 +155464,85774,true story,1446583949 +155464,92259,emotional,1446582536 +155464,92259,touching,1446582523 +155512,1,animation,1264024101 +155512,1,children,1264024078 +155512,1,clever,1264024107 +155512,1,Disney,1264024085 +155512,1,family,1264024089 +155512,1,funny,1264024092 +155512,1,humorous,1264024094 +155512,1,imdb top 250,1264024095 +155512,1,Pixar,1264024082 +155512,1,Pixar animation,1264024083 +155512,1,Tom Hanks,1264024080 +155512,47,Kevin Spacey,1267777989 +155512,47,powerful ending,1267777985 +155512,47,twist ending,1267777987 +155512,318,directorial debut,1264400547 +155512,318,friendship,1264400545 +155512,318,imdb top 250,1264400555 +155512,318,inspirational,1264400551 +155512,318,Morgan Freeman,1264400529 +155512,318,prison escape,1264400530 +155512,318,reflective,1264400537 +155512,318,thought-provoking,1264400537 +155512,318,twist ending,1264400537 +155512,969,classic,1269586715 +155512,969,romance,1269586720 +155512,1172,heartwarming,1268641576 +155512,1172,Italian,1268641586 +155512,1172,reflective,1268641580 +155512,1203,good dialogue,1268785498 +155512,1203,low budget,1268785491 +155512,1265,Bill Murray,1267667343 +155512,1265,comedy,1267667346 +155512,1265,feel good,1271394957 +155512,1265,feel good movie,1271394948 +155512,1265,feel-good,1271394941 +155512,1265,hilarious,1267667344 +155512,1265,life changing,1271394925 +155512,1265,love,1267667333 +155512,1265,original plot,1267667356 +155512,1265,romance,1267667335 +155512,1265,romantic,1267667337 +155512,1265,small town,1267667339 +155512,1265,surreal,1267667341 +155512,1387,shark,1271393951 +155512,1387,soundtrack,1271393964 +155512,1387,tense,1271393948 +155512,2746,dark comedy,1269296450 +155512,2791,classic,1267842774 +155512,2791,dumb but funny,1267842771 +155512,2791,over the top,1267842769 +155512,2791,Parody,1267842767 +155512,6711,Amazing Cinematography,1264920813 +155512,6711,atmospheric,1264920811 +155512,6711,Bill Murray,1264920810 +155512,6711,platonic friendship,1264920887 +155512,6711,platonic love,1264920846 +155512,6711,reflective,1270868907 +155512,6711,relationships,1264920817 +155512,6711,Scarlett Johansson,1264920815 +155512,8641,Fred Willard,1271124572 +155512,8641,Steve Carell,1271124544 +155512,8641,Will Ferrell,1271124560 +155512,26587,dark,1271398448 +155512,26587,profound,1271398446 +155512,26587,thought-provoking,1271398467 +155512,35836,crude humor,1271124493 +155512,35836,funny,1271907072 +155512,35836,hilarious,1267821878 +155512,35836,romantic comedy,1267821876 +155512,35836,Steve Carell,1271124482 +155512,44555,bald nemesis,1269305925 +155512,44555,ending,1269234490 +155512,44555,freedom of expression,1268550632 +155512,44555,imdb top 250,1288442675 +155512,44555,Oscar (Best Foreign Language Film),1269234460 +155512,44555,Oscar Winner,1269234468 +155512,44555,realisitc acting,1269234523 +155512,44555,spying,1268550639 +155512,44555,surveillance,1268550630 +155512,45431,Steve Carell,1271124663 +155512,46578,Steve Carell,1271124524 +155512,48394,bittersweet,1268539296 +155512,48394,great soundtrack,1268464591 +155512,48394,surreal,1268539299 +155512,50872,cooking,1271373239 +155512,50872,food/cooking,1271373242 +155512,50872,paris,1271373232 +155512,50872,Patton Oswalt,1271373234 +155512,52973,Steve Carell,1271284346 +155512,53993,based on a book,1270860279 +155512,53993,Biblical,1270860273 +155512,53993,Christianity,1270860284 +155512,53993,god,1270860268 +155512,53993,religion,1270860271 +155512,53993,Steve Carell,1271124592 +155512,57669,black comedy,1264388936 +155512,57669,Colin Farrell,1264646612 +155512,57669,comedy,1264388933 +155512,57669,dark comedy,1264388911 +155512,57669,directorial debut,1264388929 +155512,57669,foul language,1264646605 +155512,57669,imdb top 250,1264388920 +155512,57669,irish accent,1264388913 +155512,57669,Ralph Fiennes,1264388916 +155512,57669,slow,1269050326 +155512,57669,stylized,1264388925 +155512,57669,suicide,1264646590 +155512,57669,violent,1264646588 +155512,60069,animated,1264023760 +155512,60069,Animation,1264023758 +155512,60069,imdb top 250,1264023727 +155512,60069,love,1264023732 +155512,60069,Oscar (Best Animated Feature),1264023743 +155512,60069,pixar,1264023720 +155512,60069,Post apocalyptic,1264023773 +155512,60069,robots,1264023762 +155512,60069,romance,1264023750 +155512,60069,Sci-Fi,1264023764 +155512,60069,social commentary,1264023767 +155512,60069,space,1264023770 +155512,60126,Anne Hathaway,1271124607 +155512,60126,hilarious,1271124631 +155512,60126,parody,1271124612 +155512,60126,spoof,1271124610 +155512,60126,Steve Carell,1271124604 +155512,61323,Coen Brothers,1271544331 +155512,61323,dark comedy,1271544319 +155512,61323,stupidity,1271544328 +155512,63082,feel-good,1264024162 +155512,63082,love,1264024158 +155512,63082,music,1264024157 +155512,63082,nonlinear,1264024155 +155512,63082,Oscar (Best Directing),1264024153 +155512,63082,Oscar (Best Music - Original Score),1264024147 +155512,63082,Oscar (Best Music - Original Song),1264024145 +155512,63082,Oscar (Best Picture),1264024144 +155512,63082,violence,1264024142 +155512,63853,story,1295047599 +155512,64614,friendship,1268709801 +155512,64614,old men,1268709798 +155512,68237,solitude,1268539347 +155512,68954,computer animation,1264023908 +155512,68954,devastating,1264023891 +155512,68954,feel good movie,1264023910 +155512,68954,friendship,1264023897 +155512,68954,heartbreaking,1264023914 +155512,68954,Pixar,1264023885 +155512,68954,sad but good,1264023917 +155512,68954,storytelling,1264023923 +155512,68954,talking animals,1264023901 +155512,70286,alternate history,1266369560 +155512,70286,redemption,1266369549 +155512,70286,thoughtful,1266369553 +155512,70286,thriller,1266369556 +155512,71282,America-centric,1266218682 +155512,71282,food safety,1266218688 +155512,71282,investigative journalism,1266218692 +155512,71464,amazing ending,1268344383 +155512,71464,great ending,1268344416 +155512,71464,Michael Stuhlbarg,1268344442 +155512,71535,Bill Murray,1271284304 +155512,72011,adapted from:book,1264024029 +155512,72011,based on a book,1264024032 +155512,72011,business,1264024037 +155512,72011,employer employee relationship,1264024042 +155512,72011,George Clooney,1264024016 +155512,72011,Jason Bateman,1264024006 +155512,72011,Jason Reitman,1264024010 +155512,72011,R,1264024023 +155512,72011,R:language,1264024021 +155512,72479,Woody Harrelson,1270430800 +155512,72733,Africa,1267255601 +155512,72733,Matt Damon,1267255615 +155512,72733,Morgan Freeman,1267255612 +155512,72733,South Africa,1267255620 +155512,72733,sports,1267255605 +155512,74319,based on a true story,1270868854 +155512,74789,great visuals,1268028541 +155512,74789,substantial changes from source of adaption,1268028547 +155512,76293,Steve Carell,1271284286 +155512,79318,uplifting,1308283411 +155522,260,sci-fi,1435468384 +155522,260,space travel,1435468497 +155522,356,love,1435469074 +155522,356,war,1435469074 +155522,356,weirdos are okay,1435469074 +155522,93240,after life,1435469199 +155522,93240,anime,1435469286 +155522,93240,artwork,1435469334 +155522,93240,death,1435469203 +155522,93240,life,1435469337 +155522,93240,love,1435469346 +155542,27266,cinematography beautiful,1308922304 +155542,27266,romance,1308922304 +155542,46976,quirky,1308922246 +155548,260,adventure,1439793744 +155548,260,space,1439793739 +155548,84944,adult humor,1439795139 +155548,84944,animation,1439795136 +155548,84944,great voice acting,1439795151 +155548,84944,hallucinatory,1439795150 +155548,84944,Johnny Depp,1439795145 +155548,84944,quirky style,1439795154 +155548,84944,spaghetti western,1439795132 +155553,260,Science Fiction,1435707114 +155567,4995,inspirational,1453206947 +155567,4995,true story,1453206930 +155584,296,organized crime,1242932015 +155584,329,Patrick Stewart,1244668257 +155584,329,Sci-Fi,1244668266 +155584,329,Star Trek,1244668235 +155584,329,William Shatner,1244668259 +155584,589,artificial intelligence,1251490784 +155584,589,dystopia,1242931589 +155584,589,robots,1242931543 +155584,741,anime,1244669018 +155584,741,artificial intelligence,1244669020 +155584,741,cyberpunk,1244669075 +155584,741,philosophical,1244669056 +155584,924,artificial intelligence,1262728648 +155584,924,sci-fi,1262728666 +155584,1136,british comedy,1244668118 +155584,1136,medieval,1244668160 +155584,1136,Monty Python,1244668120 +155584,1136,Myth,1244668124 +155584,1183,adultery,1242932167 +155584,1196,great soundtrack,1244667996 +155584,1196,Myth,1244667985 +155584,1196,robots,1244667989 +155584,1196,sci-fi,1244667978 +155584,1215,cheesy (good),1252439395 +155584,1274,anime,1151700139 +155584,1967,Adventure,1242931722 +155584,1967,Jennifer Connelly,1242931736 +155584,1967,Jim Henson,1244667629 +155584,1967,maze,1242931731 +155584,2028,horrors of war,1244668790 +155584,2093,fantasy,1244668087 +155584,2093,magical creatures,1244668087 +155584,2105,computer animation,1244667717 +155584,2105,technology,1244667720 +155584,2105,video game,1244667737 +155584,2105,virtual reality,1244667745 +155584,2116,high fantasy,1140037169 +155584,2140,fantasy,1262728604 +155584,2140,Jim Henson,1262728606 +155584,2161,childhood classic first seen in adulthood,1244668933 +155584,2161,Fantasy,1244668884 +155584,2297,surreal,1244668545 +155584,2529,dystopia,1244668831 +155584,2529,satirical,1244668851 +155584,2529,twist ending,1244668844 +155584,2571,artificial intelligence,1244667465 +155584,2571,cyberpunk,1251490853 +155584,2571,dystopia,1244667471 +155584,2571,heroine in tight suit,1244667478 +155584,2571,martial arts,1244667514 +155584,2571,post apocalyptic,1244667507 +155584,2571,sci-fi,1244667489 +155584,2571,virtual reality,1244667487 +155584,2761,robots,1242931797 +155584,2762,surprise ending,1244668747 +155584,2810,anime,1151700125 +155584,2915,prostitution,1244668410 +155584,3000,anime,1244667845 +155584,3000,Hayao Miyazaki,1244667850 +155584,3000,surreal,1244667860 +155584,3997,high fantasy,1140032030 +155584,4591,Monty Python,1258871424 +155584,4941,So bad it's good,1252439365 +155584,4993,high fantasy,1244667563 +155584,4993,Myth,1244667584 +155584,4993,Tolkien,1244667553 +155584,4993,wizards,1244667577 +155584,5039,high fantasy,1140032022 +155584,5069,anime,1151700015 +155584,5072,anime,1208365260 +155584,5146,anime,1151699986 +155584,5618,anime,1242931604 +155584,5618,dreamlike,1244667828 +155584,5618,fantasy,1242931616 +155584,5618,Hayao Miyazaki,1242931607 +155584,5690,anime,1151700035 +155584,5952,high fantasy,1140037068 +155584,5971,anime,1244669130 +155584,5971,Hayao Miyazaki,1244669132 +155584,6093,fantasy,1244668509 +155584,6283,anime,1151700010 +155584,6350,anime,1151700002 +155584,6539,Johnny Depp,1244667430 +155584,6754,heroine in tight suit,1251490672 +155584,6754,Kate Beckinsale,1251490677 +155584,6857,anime,1151700128 +155584,7099,anime,1244668184 +155584,7099,Hayao Miyazaki,1244668198 +155584,7099,post-apocalyptic,1244668203 +155584,7099,sci-fi,1244668206 +155584,7099,strong female lead,1244668193 +155584,7153,high fantasy,1140031954 +155584,8368,harry potter,1244667657 +155584,8368,Wizards,1244667666 +155584,8607,anime,1151700134 +155584,26662,anime,1151700111 +155584,27728,anime,1208365236 +155584,31184,anime,1208365205 +155584,31658,anime,1244668994 +155584,31658,Hayao Miyazaki,1244668987 +155584,31660,anime,1151700026 +155584,34405,dystopia,1244667780 +155584,34405,sci-fi,1244667774 +155584,39183,gay,1242931872 +155584,42738,heroine in tight suit,1251490641 +155584,43928,Milla Jovovich,1258871332 +155584,53996,80s nostalgia,1247751269 +155584,53996,giant robots,1244668580 +155584,53996,man versus machine,1244668615 +155584,53996,robots,1244668577 +155584,53996,Special Effects,1244668584 +155584,65261,anime,1250623127 +155584,65261,Hayao Miyazaki,1250623131 +155584,68319,Marvel,1244667281 +155584,68319,superhero,1244667304 +155584,68358,spock,1242931457 +155584,68358,Star Trek,1242931470 +155584,68791,artificial intelligence,1243353268 +155584,68791,post-apocalyptic,1244667337 +155584,68791,robots,1243353272 +155584,69526,robots,1251355455 +155584,69844,author:J. K. Rowling,1251355374 +155584,69844,fantasy,1251355366 +155584,69844,harry potter,1251355342 +155584,69844,magic,1251355345 +155584,71057,post-apocalyptic,1266235738 +155584,71057,robots,1266235748 +155584,72998,emotion capture,1264006182 +155603,260,action,1438398078 +155603,260,Syfy,1438398050 +155609,5820,Jenny,1163562651 +155609,8740,movielens top pick,1163562443 +155615,260,sci-fi,1442535784 +155615,260,space adventure,1442535792 +155615,89745,action,1442536169 +155615,89745,Marvel,1442536161 +155615,89745,sci-fi,1442536154 +155615,89745,superhero,1442536194 +155619,260,Science Fiction,1438172584 +155619,260,space,1438172596 +155619,260,war,1438172592 +155619,122882,racing,1438173432 +155619,122882,sci-fi,1438173432 +155619,122882,thriller,1438173432 +155621,36247,cute,1421410182 +155621,36247,drama,1421410182 +155621,36247,quirky,1421410182 +155621,78544,funny,1279531506 +155621,78544,Ricky Gervais,1279531506 +155643,673,michael jordan,1286404700 +155643,1089,organized crime,1286404736 +155643,1704,Matt Damon,1286404418 +155643,6874,revenge,1286404497 +155643,6874,Revenge Trilogy,1286404497 +155643,7361,love story,1286404449 +155643,7438,revenge,1286404506 +155643,7438,Revenge Trilogy,1286404506 +155643,71464,dark comedy,1286404831 +155658,2706,comedy,1450783901 +155658,2706,sexuality,1450783905 +155658,44191,anarchy,1450783489 +155658,44191,inspirational,1450783502 +155668,1282,family,1170556197 +155668,1779,crichton,1194673889 +155668,26226,Brian DePalma,1196665595 +155676,260,classic sci-fi,1436274468 +155676,260,nerdy,1436274474 +155682,2701,action,1188570364 +155682,8622,documentary,1188570476 +155683,41997,based on a true story,1254432092 +155683,41997,Steven Spielberg,1254432087 +155691,8427,meatloaf,1164320634 +155692,2949,james bond,1175892582 +155734,6711,great cinematograhy,1345371955 +155734,6711,Japan,1345371944 +155738,58559,comic book,1389095690 +155756,50,Crime,1422655435 +155756,50,funny,1422655441 +155756,50,heist,1422655432 +155756,50,organized crime,1422655428 +155756,50,suspense,1422655425 +155756,364,animation,1422654932 +155756,364,Disney animated feature,1422654926 +155756,480,adventure,1422655094 +155756,480,Dinosaurs,1422655092 +155756,480,sci-fi,1422655100 +155756,480,science,1422655097 +155756,588,adventure,1422654902 +155756,588,Fantasy,1422654901 +155756,588,Oscar (Best Music - Original Score),1422654897 +155756,904,mystery,1422655365 +155756,904,noir thriller,1422655356 +155756,904,suspenseful,1422655362 +155756,1196,adventure,1422655203 +155756,1196,fantasy,1422655201 +155756,1196,modern fantasy,1422655209 +155756,1196,original plot,1422655208 +155756,1196,sci-fi,1422655200 +155756,1196,space,1422655197 +155756,1196,space opera,1422655211 +155756,2324,Oscar (Best Foreign Language Film),1422655389 +155756,2324,tearjerking,1422655386 +155756,2324,World War II,1422655379 +155756,44555,East Germany,1422655462 +155756,44555,spying,1422655463 +155756,44555,suspense,1422655455 +155756,70286,aliens,1422655142 +155756,70286,humor,1422655149 +155756,70286,intelligent sci-fi,1422655146 +155756,70286,satire,1422655155 +155756,70286,sci-fi,1422655145 +155756,70286,unique,1422655157 +155756,77658,astronomy,1422655341 +155756,77658,biology,1422655345 +155756,77658,evolution,1422655343 +155756,88744,biology,1422655129 +155756,88744,computer animation,1422655125 +155756,88744,genetics,1422655121 +155756,88744,sci-fi,1422655123 +155756,97913,disney,1422654868 +155756,103141,animation,1422654839 +155756,103141,comedy,1422654843 +155800,1197,love,1435830720 +155800,1197,romance,1435830711 +155801,109487,Hans Zimmer,1453008860 +155801,109487,sci-fi,1453008886 +155830,45720,Anne Hathaway,1430278894 +155830,45720,fashion,1430278882 +155830,45720,magazines,1430278891 +155830,108212,Gaspard Ulliel,1430208887 +155830,109487,Christopher Nolan,1430016439 +155830,109487,good science,1430016467 +155830,109487,Masterpiece,1430016492 +155830,109487,sci-fi,1430016442 +155830,109487,sentimental,1430016488 +155830,111622,music,1430208525 +155830,112183,dark,1430208556 +155830,112183,great performances,1430208548 +155830,112183,magical realism,1430208561 +155830,112552,Academy Award Nominee,1430208018 +155830,112552,jazz,1430208006 +155830,112552,Tense,1430208009 +155830,112556,David Fincher,1430016620 +155830,112556,mindfuck,1430016574 +155830,112556,unpredictable,1430016559 +155830,112852,childish,1430208598 +155830,112852,great soundtrack,1430208588 +155830,115170,Robert Downey Jr.,1430208642 +155830,116797,Alan Turing,1429952413 +155830,116797,Benedict Cumberbatch,1429952457 +155830,116797,Computers,1429952432 +155830,116797,England,1429952420 +155830,116797,genius,1429952460 +155830,119145,gentlemanly,1430207973 +155830,119145,violent,1430207976 +155852,1288,Christopher Guest,1241035015 +155852,1288,deadpan,1241035029 +155852,1288,mockumentary,1241035019 +155852,1288,music,1241035023 +155852,1288,rock and roll,1241035024 +155852,2916,Arnold Schwarzenegger,1241034963 +155852,2916,dystopia,1241034999 +155852,2916,Philip K. Dick,1241034999 +155852,2916,virtual reality,1241034993 +155852,4816,David Bowie,1241034219 +155852,4816,Funny as hell,1241034225 +155852,4816,goofy,1241034228 +155852,4816,Owen Wilson,1241034244 +155852,4816,Will Ferrell,1241034235 +155852,7217,noir thriller,1368134046 +155852,7223,noir thriller,1368134046 +155852,7937,jealousy,1241434960 +155852,7943,noir thriller,1368134046 +155852,8917,hilarious,1241035041 +155852,8917,politics,1241035042 +155852,8917,satire,1241035040 +155852,31925,adaptation,1421600564 +155852,31925,comedy,1421600564 +155852,31925,historical,1421600564 +155852,34338,bestiality,1292441154 +155852,34338,family,1292441155 +155852,34338,fisting,1292441098 +155852,34338,incest,1292441155 +155852,49518,documentary,1424268282 +155852,49518,electronic,1424268282 +155852,49518,music,1424268282 +155852,69481,realistic,1253042519 +155852,69481,War,1253042522 +155852,114486,bad movies,1420828161 +155852,114486,documentary,1420828161 +155852,114486,movie business,1420828161 +155852,127021,documentary,1425803224 +155852,127021,pop culture,1425803224 +155852,127021,vhs,1425803224 +155862,25,alcoholism,1436236756 +155862,25,based on a book,1436236747 +155862,25,dark,1436236735 +155862,25,depressing,1436236737 +155862,25,drama,1436236754 +155862,25,intimate,1436236751 +155862,25,melancholic,1436236738 +155862,25,Nicolas Cage,1436236742 +155862,25,SUICIDE,1436236740 +155862,57,comedy,1436244410 +155862,57,drama,1436244413 +155862,57,dysfunctional family,1436244401 +155862,57,gay,1436244417 +155862,141,comedy,1436236458 +155862,141,gay,1436236460 +155862,141,Gay stereotypes,1436236462 +155862,141,queer,1436236463 +155862,141,Robin Williams,1436236465 +155862,260,"Outdated, for younger audiences. Action Adventure",1436232897 +155862,260,Overrated,1436232928 +155862,597,chick flick,1436241584 +155862,597,Good Romantic Comedies,1436241579 +155862,597,julia roberts,1436241566 +155862,597,rags to riches,1436241572 +155862,597,Richard Gere,1436241575 +155862,608,black comedy,1436235677 +155862,608,crime,1436235692 +155862,608,dark comedy,1436235675 +155862,608,dark humor,1436235696 +155862,608,Frances McDormand,1436235681 +155862,608,hostage,1436235694 +155862,628,courtroom,1436234638 +155862,628,courtroom drama,1436234641 +155862,628,Richard Gere,1436234634 +155862,628,twist ending,1436234632 +155862,805,courtroom,1436235886 +155862,805,John Grisham,1436235884 +155862,805,racism,1436235881 +155862,920,classic,1436234009 +155862,920,historical,1436234005 +155862,948,Classic,1436233888 +155862,948,Elizabeth Taylor,1436233869 +155862,948,James Dean,1436233880 +155862,948,Rock Hudson,1436233875 +155862,971,classic,1436235587 +155862,971,Elizabeth Taylor,1436235581 +155862,971,Paul Newman,1436235585 +155862,971,Tennessee Williams,1436235583 +155862,1092,Erotic,1436235337 +155862,1092,Erotic Thriller,1436235333 +155862,1092,Michael Douglas,1436235343 +155862,1092,Sex,1436235335 +155862,1092,Sexualized violence,1436235331 +155862,1092,Sharon Stone,1436235339 +155862,1092,thriller,1436235341 +155862,1104,Marlon Brando,1436233936 +155862,1104,Tennessee Williams,1436233943 +155862,1104,Vivien Leigh,1436233938 +155862,1635,Ang Lee,1436237862 +155862,1635,austere,1436237860 +155862,1635,bleak,1436237858 +155862,1635,dysfunctional family,1436237856 +155862,1672,John Grisham,1436235867 +155862,1821,gay,1436235011 +155862,1835,Meg Ryan,1436236786 +155862,1982,horror,1436238380 +155862,1982,serial killer,1436238372 +155862,1982,silent killer,1436238376 +155862,1982,slasher,1436238369 +155862,2029,gay,1436235052 +155862,2029,Sean Hayes,1436235055 +155862,2318,dark comedy,1436233416 +155862,2318,dark humor,1436233411 +155862,2318,dysfunctional family,1436233409 +155862,2318,loneliness,1436233423 +155862,2712,Nicole Kidman,1436234844 +155862,2712,sexual,1436234846 +155862,2712,sexuality,1436234852 +155862,2712,thriller,1436234854 +155862,2712,Tom Cruise,1436234842 +155862,2858,bittersweet,1436234755 +155862,2858,black comedy,1436234768 +155862,2858,coming of age,1436234751 +155862,2858,dark,1436234786 +155862,2858,dark comedy,1436234745 +155862,2858,great acting,1436234770 +155862,2858,kevin spacey,1436234748 +155862,2858,loneliness,1436234759 +155862,2858,sexuality,1436234753 +155862,2858,suburbia,1436234763 +155862,2858,thought-provoking,1436234777 +155862,3005,detective,1436234427 +155862,3005,serial killer,1436234424 +155862,3094,Classic,1436233640 +155862,3094,gay,1436233621 +155862,3176,based on a book,1436238212 +155862,3176,Jude Law,1436238209 +155862,3176,Philip Seymour Hoffman,1436238202 +155862,3176,psychology,1436238198 +155862,3176,suspense,1436238204 +155862,3178,Denzel Washington,1436235810 +155862,3178,inspirational,1436235800 +155862,3948,comedy,1436240692 +155862,3948,funny moments,1436240694 +155862,4681,Danny DeVito,1436235397 +155862,4837,Al Pacino,1436235315 +155862,4837,serial killer,1436235310 +155862,4869,Ethnic Gay,1436235118 +155862,4869,Gay,1436239420 +155862,5015,Billy Bob Thornton,1436234342 +155862,5015,Halle Berry,1436234360 +155862,5015,interracial romance,1436234352 +155862,5065,Richard Gere,1436233461 +155862,5065,Suspense and Mystery,1436233476 +155862,5222,queer,1436235036 +155862,5222,sexuality,1436235038 +155862,5630,Anthony Hopkins,1436239750 +155862,5630,psychology,1436239760 +155862,5630,Ralph Fiennes,1436239763 +155862,5630,serial killer,1436239753 +155862,5630,torture,1436239757 +155862,5963,Lesbian,1436235219 +155862,6096,coming out,1436243496 +155862,6096,gay,1436243483 +155862,6096,homosexuality,1436243487 +155862,6096,sexuality,1436243501 +155862,6287,comedy,1436240669 +155862,6287,funny,1436240665 +155862,6763,funny,1436240641 +155862,6870,Dark,1436233823 +155862,6870,Kevin Bacon,1436233843 +155862,6870,Mystery,1436233807 +155862,6870,Sean Penn,1436233833 +155862,6870,Suspense,1436233812 +155862,6870,Thriller,1436233800 +155862,7078,Bette Davis,1436233968 +155862,7158,cultural differences,1436234308 +155862,7158,culture clash,1436234286 +155862,7158,Depressing,1436234295 +155862,7158,heartbreaking,1436234303 +155862,7158,intense,1436234300 +155862,7158,sad but good,1436234289 +155862,7160,based on a true story,1436244304 +155862,7160,Charlize Theron,1436244305 +155862,7160,dark,1436244309 +155862,7160,lesbian,1436244293 +155862,7160,murder,1436244315 +155862,7160,serial killer,1436244300 +155862,7160,true story,1436244311 +155862,7260,gay,1436234987 +155862,7260,Gay Lead Character,1436234990 +155862,7362,Angelina Jolie,1436234446 +155862,7455,Classic Boy likes Boy story.,1436233158 +155862,7455,coming out,1436242918 +155862,7455,gay,1436242918 +155862,7455,Gay interest film,1436233177 +155862,7455,homosexuality,1436242918 +155862,7455,love,1436242918 +155862,8459,Classic,1436234057 +155862,8459,Montgomery Clift,1436234091 +155862,8459,Olivia de Havilland,1436234112 +155862,8949,dark comedy,1436234711 +155862,8949,depression,1436234715 +155862,8949,Melancholic,1436234723 +155862,8949,midlife crisis,1436234720 +155862,8949,Paul Giamatti,1436234708 +155862,26242,chase,1436242089 +155862,26242,road rage,1436242085 +155862,26242,thriller,1436242087 +155862,34532,mysterious or thrilling,1436241614 +155862,34532,New Orleans,1436241610 +155862,34532,Twist Ending,1436241612 +155862,35836,comedy,1436235507 +155862,35836,funny,1436235503 +155862,35836,Paul Rudd,1436235518 +155862,35836,Seth Rogen,1436235521 +155862,35836,sex,1436235511 +155862,35836,sex comedy,1436235514 +155862,35836,steve carell,1436235505 +155862,39183,bittersweet,1436233735 +155862,39183,controversial,1436233701 +155862,39183,gay,1436233684 +155862,39183,Greatest Gay films,1436233673 +155862,39183,Heath Ledger,1436233689 +155862,39183,homosexuality,1436233680 +155862,39183,Jake Gyllenhaal,1436233687 +155862,40732,suspense,1436235962 +155862,40732,tense,1436235959 +155862,41285,murder mystery,1436238179 +155862,41285,thrilling,1436238176 +155862,44864,Drama,1436234691 +155862,49961,adultery,1436235229 +155862,49961,affair,1436235238 +155862,49961,lesbian,1436235240 +155862,49961,loneliness,1436235251 +155862,49961,manipulation,1436235242 +155862,49961,obsession,1436235234 +155862,49961,sexuality,1436235236 +155862,51540,Mystery,1436233761 +155862,51540,Suspense,1436233766 +155862,52973,Katherine Heigl,1436235485 +155862,52973,Paul Rudd,1436235487 +155862,52973,Steve Carell,1436235490 +155862,56333,Good performance by Seymour Hoffman and Laura Linney,1436233357 +155862,56333,Great Dark Comedy,1436233296 +155862,59549,coming out,1436234960 +155862,59549,gay,1436234947 +155862,59549,Gay Character,1436234965 +155862,59549,Gay Lead Character,1436234964 +155862,59549,gay relationship,1436234952 +155862,59549,gay romance,1436234950 +155862,59549,homosexuality,1436234955 +155862,60471,Suspense,1436235940 +155862,60471,Thriller,1436235935 +155862,61361,feel good,1436237075 +155862,64575,great acting,1436235281 +155862,64575,Meryl Streep,1436235264 +155862,64575,moral ambiguity,1436235277 +155862,64575,Philip Seymour Hoffman,1436235266 +155862,66509,Adam Sandler,1436240493 +155862,66509,Judd Apatow,1436240514 +155862,66509,Leslie Mann,1436240511 +155862,66509,Seth Rogen,1436240515 +155862,72694,bittersweet,1436243344 +155862,72694,black comedy,1436243334 +155862,72694,comedy,1436243338 +155862,72694,dark comedy,1436243327 +155862,72694,dark humor,1436243323 +155862,72694,depression,1436243351 +155862,72694,drama,1436243318 +155862,72694,drama comedy,1436243389 +155862,72694,Kevin Spacey,1436243303 +155862,72694,melancholy,1436243377 +155862,72694,psychology,1436243300 +155862,72720,gay,1436233574 +155862,72720,Gay Lead Character,1436233596 +155862,72720,Julianne Moore,1436233598 +155862,72720,life & death,1436233579 +155862,72720,queer,1436233582 +155862,72720,sad,1436233601 +155862,80549,comedy,1436236612 +155862,80549,Emma Stone,1436236610 +155862,80549,funny,1436236601 +155862,80549,funny dialogues,1436236624 +155862,80549,high school,1436236602 +155862,80549,satire,1436236622 +155862,80549,sexuality,1436236595 +155862,80549,witty,1436236597 +155862,80860,Josh Duhamel,1436238137 +155862,80860,Katherine Heigl,1436238139 +155862,83910,funny,1436240619 +155862,85881,drama,1436234227 +155862,85881,Paul Giamatti,1436234220 +155862,86833,comedy,1436235454 +155862,86833,flawed characters,1436235462 +155862,87869,black comedy,1436234535 +155862,87869,Jennifer Aniston,1436234531 +155862,88810,based on a book,1436236527 +155862,88810,Emma Stone,1436236529 +155862,88810,feel good movie,1436236538 +155862,88810,great acting,1436236534 +155862,88810,historical,1436236544 +155862,88810,Octavia Spencer,1436236550 +155862,88810,racism,1436236523 +155862,88810,segregation,1436236532 +155862,88810,Tearjerker,1436236540 +155862,88810,Viola Davis,1436236536 +155862,89864,comedy,1436234155 +155862,89864,emotional,1436234160 +155862,89864,funny scenes,1436234167 +155862,91077,emotional,1436234255 +155862,91077,George Clooney,1436234248 +155862,97188,Ethan Hawke,1436238338 +155862,97304,hostage,1436236100 +155862,97304,suspenseful,1436236096 +155862,97304,thriller,1436236105 +155862,97304,True story,1436236082 +155862,99117,funny,1436240547 +155862,103372,funny,1436234516 +155862,103372,Melissa McCarthy,1436234513 +155862,103688,haunted house,1436234908 +155862,103688,Patrick Wilson,1436234903 +155862,105869,gay,1436243686 +155862,105869,homosexuality,1436243691 +155862,105869,love,1436243700 +155862,105869,sexuality,1436243696 +155862,115231,babysitting,1436247604 +155862,115231,Comedy,1436247507 +155862,115231,Drama,1436247502 +155862,115231,Melissa McCarthy,1436247490 +155862,117881,aging,1436233525 +155862,117881,drama,1436233520 +155862,117881,Julianne Moore,1436233537 +155862,125916,abuse,1436422064 +155862,125916,based on a book,1436422060 +155862,125916,BDSM,1436422062 +155862,125916,book,1436422073 +155862,125916,erotic,1436422056 +155862,125916,nudity (topless),1436422070 +155896,293,assassin,1188774484 +155896,293,Jean Reno,1188774487 +155896,54286,assassin,1188774519 +155896,54286,assassin-in-training (scene),1188774517 +155896,54286,espionage,1188774515 +155896,54286,Robert Ludlum,1188774524 +155930,6502,Zombie Movie,1211987303 +155951,1176,melancholic,1367714201 +155951,2594,original,1367710878 +155951,4144,melancholic,1367714201 +155951,4878,original,1367710878 +155951,7486,melancholic,1367714201 +155951,8914,clever,1391916371 +155951,8914,complicated plot,1391916363 +155951,8914,low budget,1391916377 +155951,8914,mindfuck,1391916358 +155951,8914,nonlinear,1391916381 +155951,8914,physics,1391916366 +155951,8914,time travel,1391916360 +155951,70286,heartbreaking,1343192832 +155951,83613,better than expected,1347264803 +155951,83613,Olivia Wilde,1347264782 +155951,93363,child killing,1347313380 +155951,96610,original,1367710878 +155951,102088,decreased frame rate,1393480801 +155951,102088,martial arts,1393480857 +155951,102088,more Gong Er than Ip Man,1393480916 +155951,102088,slow paced,1393480848 +155951,109673,female nudity,1404785948 +155969,5690,anime,1346783645 +155969,5690,Best War Films,1346783713 +155969,5690,death,1346783653 +155969,5690,history,1346783736 +155969,5690,Japan,1346783717 +155969,5690,Studio Ghibli,1346783731 +155969,5690,tragedy,1346783633 +155989,260,sci-fi,1433129749 +155989,260,space,1433129741 +156033,260,action,1438057241 +156033,260,good vs evil,1438057191 +156033,260,sci-fi,1438057228 +156033,260,space action,1438057258 +156033,260,space adventure,1438057246 +156042,111759,time travel,1441068939 +156042,111759,Tom Cruise,1441068945 +156086,1645,greatest movie ever,1450483531 +156086,3105,parkinson,1445244974 +156086,3105,simple things,1445245064 +156086,3160,mindfuck,1442233109 +156086,3160,prodigy,1442233114 +156086,3809,funny,1429289951 +156086,3809,therapy,1429289948 +156086,4056,stupid movie dont watch it,1452628245 +156086,6187,unforgettable,1444305743 +156086,6750,cheating,1439451748 +156086,6750,commitment issues,1439451756 +156086,6750,woody allen's best movie,1439451740 +156086,7147,must see,1428521005 +156086,31956,divorce,1442415268 +156086,31956,french,1442415271 +156086,31956,italy,1442415274 +156086,71902,dating,1427470258 +156086,76030,must see,1429883652 +156086,90376,worst movie ever,1436633368 +156086,91690,truest shit,1441648725 +156086,100383,will keep thinking about this one,1446289901 +156086,118202,best movie,1445970846 +156086,118202,informative,1445970850 +156086,118202,must watch,1445970855 +156086,118876,awesome,1429883605 +156086,140110,Entrepreneurship,1444030935 +156086,140110,parents issues,1444030907 +156086,140110,wonderful,1444030897 +156091,393,Jean-Claude Van Damme,1242943621 +156091,589,Arnold Schwarzenegger,1242943949 +156091,589,classic,1242943963 +156091,589,time travel,1242943952 +156091,1036,Alan Rickman,1242943986 +156091,1036,Bruce Willis,1242943981 +156091,53519,car chase,1242608991 +156091,53519,great dialogue,1242608983 +156091,53519,Rosario Dawson,1242609007 +156091,53519,Zoe Bell,1242608957 +156091,57326,Uwe Boll,1242943682 +156091,58559,Batman,1242943890 +156091,58559,Christian Bale,1242943887 +156091,58559,dark,1242943900 +156091,58559,Heath Ledger,1242943882 +156091,58559,Michael Caine,1242943898 +156091,58559,superhero,1242943893 +156091,68358,big budget,1242609162 +156091,68358,Leonard Nimoy,1242609157 +156091,68358,spock,1242609153 +156091,68358,Spok and Uhura turbolift scene,1242609167 +156091,68358,Star Trek,1242609148 +156091,68358,time travel,1242609150 +156091,68358,unrealistic,1242609169 +156091,85510,Cinematography,1302711618 +156091,85510,story,1302711611 +156095,5915,football,1164416696 +156095,5915,soccer,1164416692 +156095,6218,football,1164416656 +156099,1393,determination,1452472617 +156099,1393,goal achievements,1452472597 +156109,6,Al Pacino,1285760191 +156109,6,Michael Mann,1285760184 +156109,6,Robert De Niro,1285760192 +156109,111,Classic,1285789444 +156109,111,Robert De Niro,1285789435 +156109,1101,military,1285790858 +156109,2959,Edward Norton,1285760492 +156109,2959,philosophy,1285760498 +156109,2959,surreal,1285760501 +156109,2959,twist ending,1285760504 +156109,4448,Edward Norton,1285761063 +156109,4448,GOOD PERFORMANCE FROM NORTON,1285761068 +156109,4448,Robert De Niro,1285761060 +156109,4776,denzel washington,1285790200 +156109,4776,Ethan Hawke,1285790202 +156109,5989,feel good movie,1285790515 +156109,5989,Leonardo DiCaprio,1285790509 +156109,5989,Tom Hanks,1285790512 +156109,6953,Benicio Del Toro,1285760556 +156109,6953,Nudity (Topless - Notable),1285760564 +156109,8665,Matt Damon,1285760690 +156109,8665,realistic action,1285760687 +156109,8798,great performances,1285790932 +156109,8798,guns,1285790961 +156109,8798,Michael Mann,1285790968 +156109,31420,Ethan Hawke,1285790320 +156109,31420,Laurence Fishburne,1285790324 +156109,40148,cryptic,1285760049 +156109,40148,guy ritchie,1285760047 +156109,40148,Jason Statham,1285760038 +156109,40148,That it makes you think in the end.,1285760056 +156109,48780,Christian Bale,1285760940 +156109,48780,Scarlett Johansson,1285760941 +156109,48780,twist ending,1285760945 +156109,51935,Mark Wahlberg,1285760632 +156109,51935,revenge,1285760642 +156109,51935,sniper,1285760637 +156109,53550,Christian Bale,1285790025 +156109,53550,rescue,1285790030 +156109,53550,true story,1285790046 +156109,55765,Denzel Washington,1285790155 +156109,66203,scarlett johansson's boobs,1285761229 +156109,79132,clever,1285789594 +156109,79132,dreamlike,1285789582 +156109,79132,Leonardo DiCaprio,1285789571 +156109,79132,mindfuck,1285789580 +156121,33966,Burt Reynolds,1313014939 +156121,75425,insult to own genre,1316553564 +156121,108548,not a movie,1413658864 +156145,260,sci-fi,1439768496 +156145,260,space adventure,1439768520 +156183,260,good,1431991128 +156206,47,twist ending,1338943778 +156206,175,drugs,1338942571 +156206,215,reflective,1338942551 +156206,247,surrealism,1338942630 +156206,1091,catastrophe,1338942618 +156206,1265,time travel,1338949621 +156206,1285,dark comedy,1338949684 +156206,1285,serial killer,1338949686 +156206,2428,aliens,1338942564 +156206,2428,Clea Duvall,1338944490 +156206,2428,parody,1338942560 +156206,2908,disturbing,1338949577 +156206,2997,twist ending,1338943684 +156206,3186,Angelina Jolie,1338944124 +156206,3717,Angelina Jolie,1338944190 +156206,3786,Clea Duvall,1338944530 +156206,3786,lesbian,1338944516 +156206,3786,satire,1338944524 +156206,3897,journalism,1338943740 +156206,3911,quirky,1338949756 +156206,3949,drugs,1338943769 +156206,4226,nonlinear,1338943935 +156206,4226,twist ending,1338943931 +156206,4239,drugs,1338949568 +156206,4367,Angelina Jolie,1338944208 +156206,4720,twist ending,1338944452 +156206,4873,drugs,1338944294 +156206,4878,twist ending,1338944622 +156206,4995,twist ending,1338944634 +156206,5391,Clea Duvall,1338944501 +156206,5391,multiple storylines,1338944508 +156206,5391,nonlinear,1338944505 +156206,5954,drugs,1338943705 +156206,6564,adventure,1338944210 +156206,6711,Bill Murray,1338943664 +156206,6711,friendship,1338943660 +156206,6953,multiple storylines,1338942539 +156206,6953,Nonlinear,1338942535 +156206,6953,psychological,1338942543 +156206,8874,dark comedy,1338943810 +156206,8950,twist ending,1338943847 +156206,27020,Angelina Jolie,1338944163 +156206,27020,drugs,1338944168 +156206,27020,lesbian,1338944165 +156206,44195,dark comedy,1338943868 +156206,44195,drugs,1338943870 +156206,48774,dystopia,1338943820 +156206,53921,Angelina Jolie,1338944157 +156206,55995,Angelina Jolie,1338944195 +156206,58559,superhero,1338944574 +156206,68157,dark comedy,1338942578 +156206,79293,Angelina Jolie,1338944155 +156206,81591,psychological,1338944578 +156206,81591,twist ending,1338944587 +156206,94777,aliens,1338949343 +156214,34435,bollywood,1291948919 +156214,36086,bollywood,1294297512 +156214,55098,bollywood,1291948933 +156214,58111,bollywood,1303199969 +156214,73881,bollywood,1291948952 +156214,83264,bollywood,1294298085 +156228,17,19th century,1453251751 +156228,17,adapted from:book,1453251817 +156228,17,based on a book,1453251761 +156228,17,Hugh Grant,1453251774 +156228,17,very well adapted,1453251830 +156228,105,Meryl Streep,1433606318 +156228,242,18th century,1430316451 +156228,242,brotherhood,1430316472 +156228,242,opera,1430316441 +156228,266,Anthony Hopkins,1430316918 +156228,266,long and boring,1430316945 +156228,296,action,1430262903 +156228,296,dark,1430262903 +156228,296,violence,1430262903 +156228,356,bittersweet,1433606466 +156228,356,good acting,1433606466 +156228,356,historical references,1433606466 +156228,480,90s classic,1437319069 +156228,480,action classic,1437319069 +156228,480,adventure,1437319069 +156228,778,dark comedy,1430274900 +156228,841,black and white,1451689049 +156228,912,black and white,1452479384 +156228,912,classic,1452479374 +156228,971,classic,1430268593 +156228,971,family relationships,1430268602 +156228,971,Tennesse Williams,1430268609 +156228,971,Tennessee Williams,1430268587 +156228,971,unjustified adjustments to the original play,1430268665 +156228,1104,based on a play,1430268725 +156228,1104,exceptional acting,1430268742 +156228,1104,Marlon Brando,1430268715 +156228,1104,poignant,1430268739 +156228,1104,Tennessee Williams,1430268711 +156228,1172,bittersweet,1430268184 +156228,1172,childhood,1430268188 +156228,1172,classical,1430268194 +156228,1172,nostalgic,1430268191 +156228,1190,bizarre,1430317862 +156228,1190,dark comedy,1430269129 +156228,1190,fiercely funny,1430269267 +156228,1190,great dialogues,1430269282 +156228,1190,reflection on love and obsession,1430269384 +156228,1190,satire of romantic comedies,1430269249 +156228,1190,stylized,1430269291 +156228,1247,classic,1452711319 +156228,1247,dark comedy,1452711333 +156228,1247,Dustin Hoffman,1452711301 +156228,1247,psychos,1452711354 +156228,1247,satirical,1452711304 +156228,1247,slow,1452711363 +156228,1271,based on a book,1452051565 +156228,1271,kathy,1452052198 +156228,1271,storytelling,1452051632 +156228,1271,unlikely friendships,1452051560 +156228,1566,bittersweet heroine,1430269880 +156228,1566,Meg rules,1430269821 +156228,1566,soundtrack,1430269777 +156228,1954,bittersweet,1451278053 +156228,2020,John Malkovich,1437319744 +156228,2076,boring,1430270104 +156228,2076,looooooooong delirium,1430270221 +156228,2076,pointless,1430270112 +156228,2076,self indulgent,1430270231 +156228,2750,childhood,1430268131 +156228,2750,music,1430268124 +156228,2750,nostalgic,1430268112 +156228,2750,radio,1430268109 +156228,2750,vignettes,1430268128 +156228,2750,Woody Allen,1430268116 +156228,2805,funny,1430275016 +156228,2959,cathartic,1430267817 +156228,2959,dark comedy,1430267897 +156228,2959,identity,1430267918 +156228,2959,imaginary friend,1430267907 +156228,2959,losing your mind,1430267926 +156228,2959,satirical,1430267827 +156228,2959,subversion,1430267944 +156228,2959,thought provoking,1430267873 +156228,3020,cathartic,1430268056 +156228,3089,amazing direction and acting,1430266768 +156228,3089,"artfully direct, not pretentious",1430266622 +156228,3089,black and white,1430266776 +156228,3089,classic,1430266516 +156228,3089,economic depression,1430266872 +156228,3089,meaningful,1430266655 +156228,3089,reflective,1430266523 +156228,3089,to the point,1430266823 +156228,3089,"touching in a dry, factual way",1430266750 +156228,3089,unpretentious,1430266805 +156228,3481,book by Nick Hornby,1430276614 +156228,4011,cynical,1430267724 +156228,4011,dark comedy,1430267731 +156228,4011,Great dialogue,1430267717 +156228,4011,gypsy accent,1430267736 +156228,4011,Hilarious,1430267721 +156228,4308,stylized,1433606529 +156228,4361,Dustin Hoffman,1437342778 +156228,5319,fast paced,1430318660 +156228,5319,funny,1430318655 +156228,5319,good dialogues,1430318672 +156228,5319,Ricardo Darin,1430318643 +156228,5508,Manchester,1431016205 +156228,5508,rock and roll,1431016214 +156228,5525,better than the American remake,1430320629 +156228,5525,food,1430320597 +156228,5525,italian ugly guy is sexier than Aaron Eckhart,1430320709 +156228,5607,bittersweet,1430318761 +156228,5607,Norma Aleandro,1430318778 +156228,5607,Ricardo Darín,1430318769 +156228,5956,Martin Scorsese,1453522880 +156228,5956,New York City,1453522889 +156228,6001,cynical,1453079849 +156228,6001,Martin Scorsese,1453079852 +156228,6001,New York City,1453079872 +156228,6001,Robert De Niro,1453079857 +156228,6001,satirical,1453079855 +156228,6863,Jack Black,1431451267 +156228,6942,let out some tears,1430263950 +156228,6942,love in general (not only romantic love),1430263923 +156228,6942,no need to be a romance fan to enjoy it,1430263822 +156228,7024,95% of the spectators left early,1430276123 +156228,7024,fucked up,1430276390 +156228,7024,rape,1430276010 +156228,7024,torture,1430276000 +156228,7024,unbereable unless you positively enjoy watching highly abused people,1430276318 +156228,7044,pointless,1430320258 +156228,7147,adapted from:book,1430267330 +156228,7147,based on a book,1430267448 +156228,7147,beautiful,1430267381 +156228,7147,bittersweet,1430267409 +156228,7147,CIRCUSES AND CARNIVALS,1430267434 +156228,7147,colourful,1430267271 +156228,7147,dreamlike,1430267371 +156228,7147,Dreamy,1430267476 +156228,7147,estrangement,1430267342 +156228,7147,fairy tales,1430267309 +156228,7147,fairytale-esque,1430267465 +156228,7147,Fantasy,1430267412 +156228,7147,father-son relationship,1430267287 +156228,7147,FATHERS AND SONS,1430267298 +156228,7147,heartwarming,1430267439 +156228,7147,imagination,1430267283 +156228,7147,"intertwined reality, tale and fantasy",1430267628 +156228,7147,JOURNEY OF SELF-DISCOVERY,1430267305 +156228,7147,magic,1430267416 +156228,7147,quirky,1430267254 +156228,7147,reflective,1430267280 +156228,7147,stories,1430267353 +156228,7147,story,1430267263 +156228,7147,storytelling,1430267317 +156228,7147,stylized,1430267277 +156228,7147,tall tale,1430267479 +156228,7147,tall tales,1430267293 +156228,7147,the fantastic and the ordinary coexist,1430267662 +156228,7147,thought-provoking,1430267443 +156228,7147,truth vs. fantasy,1430267523 +156228,7160,100 Essential Female Performances,1430265410 +156228,7160,adapted from:true story,1430265370 +156228,7160,amazing acting,1430265341 +156228,7160,feel awful (yet must watch),1430265541 +156228,7160,great actress,1430265380 +156228,7160,movie to see,1430265384 +156228,7160,no cliches,1430265561 +156228,7160,outstanding acting,1430265304 +156228,7160,rape,1430265351 +156228,7160,shocking with a purpose,1430265290 +156228,7160,social reflection,1430265318 +156228,7160,vivid non cliche characters,1430265793 +156228,7460,black and white,1430275501 +156228,7460,boring,1430275526 +156228,7460,iggy pop,1430275555 +156228,7460,no plot,1430275534 +156228,7460,Steve Buscemi,1430275542 +156228,7460,Tom Waits,1430275497 +156228,7934,bizarre,1430317835 +156228,7934,black and white,1430317793 +156228,7934,hilarious,1430317825 +156228,7934,jazz,1430317778 +156228,7934,mockumentary,1430317785 +156228,8533,Boring,1430264226 +156228,8533,kiss and shout,1430264687 +156228,8533,manipulative psychos portrayed as dream lovers,1430264691 +156228,8533,overrated,1430264292 +156228,8533,predictable,1430264025 +156228,8533,pure boring pointless romance,1430264697 +156228,8533,riddled with cliché,1430264179 +156228,8533,sappy,1430264233 +156228,8663,britpop,1430320352 +156228,8663,funny,1430320337 +156228,8956,Ian McEwan,1430322158 +156228,8974,charmingly stupid,1430264981 +156228,26291,katharine hepburn great here,1430268849 +156228,26291,Tennessee Williams,1430268820 +156228,27647,anna chancellor,1430322382 +156228,27647,benedict cumberbatch,1430322391 +156228,31658,bittersweet love,1430274015 +156228,31658,dreamlike,1430273995 +156228,31658,slightly ridiculous hero,1430274045 +156228,32335,anarchy,1430319200 +156228,32335,friendship,1430319192 +156228,32335,idealistic,1430319144 +156228,32335,Leonardo Sbaraglia,1430319090 +156228,32335,road movie,1430319183 +156228,33454,really dark,1451786458 +156228,37729,19th century,1430270382 +156228,37729,animation,1430270516 +156228,37729,claymation,1430270510 +156228,37729,gothic,1430270333 +156228,37729,love's B-side,1430270352 +156228,37729,stop-motion,1430270379 +156228,37729,such a handsome shy heart-throbe,1430270505 +156228,37729,visually appealing,1430270375 +156228,42094,childhood portrait,1430268413 +156228,42094,slow paced,1430268423 +156228,43267,action,1430318563 +156228,43267,buddy comedy,1430318574 +156228,43267,Diego Peretti,1430318552 +156228,44633,bittersweet,1444512296 +156228,46578,bittersweet funny characters,1430317321 +156228,46578,comedy,1430317174 +156228,46578,dark comedy,1430317183 +156228,46578,dysfunctional family,1430317176 +156228,46578,independent film,1430317223 +156228,46578,off-beat comedy,1430317267 +156228,46578,social commentary,1430317271 +156228,48997,18th century,1430272493 +156228,48997,ben whishaw,1430272488 +156228,48997,dustin hoffman,1430272512 +156228,50872,animation,1451278086 +156228,50872,clever,1451278081 +156228,50872,food/cooking,1451278091 +156228,50912,episodic,1430266259 +156228,50912,Margo Martindale,1430266253 +156228,50912,vignettes,1430266268 +156228,52694,funny,1430275048 +156228,55052,benedict cumberbatch,1430271501 +156228,55247,freedom,1430270747 +156228,55247,road trip,1430270741 +156228,55247,self discovery,1430270737 +156228,55814,Le scaphandre et le papillon,1430321452 +156228,56286,cate blanchett,1444512562 +156228,60758,BBC Films,1430269716 +156228,60758,Ben Wishaw,1430269600 +156228,60758,not as graceful as the series,1430269700 +156228,60758,not as subtle as the original series,1430269698 +156228,60758,Waugh,1430269718 +156228,69757,bittersweet,1430265889 +156228,69757,cynicism,1430265936 +156228,69757,Funny,1430265895 +156228,69757,great soundtrack,1430265922 +156228,69757,hipster,1430265942 +156228,69757,humor,1430265886 +156228,69757,humorous,1430265874 +156228,69757,indie music,1430265933 +156228,69757,intelligent,1430265900 +156228,69757,mean,1430265962 +156228,69757,no happy ending,1430265905 +156228,69757,nonlinear,1430265925 +156228,69757,quirky,1430265897 +156228,69757,stylized,1430265881 +156228,69757,the B-side of love,1430266127 +156228,69757,"the loser's view, at last",1430266063 +156228,70293,cooking,1444511193 +156228,70293,food,1444511176 +156228,70293,Meryl Streep,1444511170 +156228,70293,New York City,1444511183 +156228,71327,19th century,1430269530 +156228,71327,Ben Whishaw,1430269505 +156228,71327,poets,1430269523 +156228,71745,plot gets lost,1430275870 +156228,71745,stylized,1430275736 +156228,71899,animation,1430266953 +156228,71899,asperger syndrome,1430266934 +156228,71899,bittersweet,1430316766 +156228,71899,character study,1430266938 +156228,71899,claymation,1430266992 +156228,71899,dark comedy,1430316803 +156228,71899,Deep,1430266989 +156228,71899,friendship,1430266965 +156228,71899,letters,1430266983 +156228,71899,loneliness,1430266951 +156228,71899,mental illness,1430266959 +156228,71899,Philip Seymour Hoffman,1430266956 +156228,71899,philosophical,1430266942 +156228,73681,classical music,1430322692 +156228,73681,too many stereotypes and cliches,1430322678 +156228,80551,feel good movie,1453328581 +156228,81018,Mute film,1430262995 +156228,81018,Social reflection,1430262971 +156228,81020,animation,1430267197 +156228,81020,artistic,1430267205 +156228,81020,based on a book,1430267192 +156228,81020,clash of cultures,1430267204 +156228,81020,film within a film,1430267214 +156228,81020,friendship,1430267182 +156228,81020,life & death,1430267212 +156228,81020,life philosophy,1430267194 +156228,86882,1920s,1430266339 +156228,86882,cliche,1430266441 +156228,86882,cliche depiction of writers and artists,1430266377 +156228,86882,French music,1430266405 +156228,86882,Literature,1430266363 +156228,86882,pretentious,1430266328 +156228,86882,writers,1430266343 +156228,89356,Ricardo Darín,1430320126 +156228,89356,Un cuento chino,1430320116 +156228,96079,Ben Wishaw,1430322127 +156228,101233,adapted from:play,1430268890 +156228,101233,based on a play,1430268888 +156228,101233,black and white,1430269036 +156228,101233,final amazing speech is torn apart,1430269014 +156228,101233,playwright:Tennessee Williams,1430268883 +156228,101233,pointless cuttings on the original,1430268945 +156228,101233,Tennessee Williams,1430268885 +156228,106011,beautiful animation,1437318424 +156228,106011,trite plot,1437318444 +156228,106841,"benedict cumbertbatch, the icing on the cake",1430264777 +156228,106841,bleak atmosphere,1430263345 +156228,106841,family drama,1430264799 +156228,106841,meryl streep,1430264783 +156228,106841,"must watch (feel awful, but watch)",1430264774 +156228,106841,outstanding acting,1430264772 +156228,106841,revulsive family drama tennessee-williams-style,1430264768 +156228,108873,Ricardo Darín,1430318468 +156228,113573,black and white,1430272025 +156228,113573,stylized,1430272016 +156228,113573,too many color highlights,1430272048 +156228,116855,good acting,1430319867 +156228,116855,growing up,1430319857 +156228,116855,hoje eu queiro voltar sozinho,1430320025 +156228,116855,romance and friendship,1430319897 +156228,116897,dark humor,1430319631 +156228,116897,Excellent acting,1430319745 +156228,116897,many stories,1430319657 +156228,116897,poignant,1430319715 +156228,116897,Ricardo Darín,1430319729 +156228,117176,on-the-nose dialogues,1432584096 +156228,117907,Ben Whishaw,1433606724 +156228,129838,Maggie Smith,1433607843 +156228,129838,Strange topic,1433607878 +156228,131920,Robert Sheehan,1453347161 +156270,45221,sexy girls,1182705913 +156273,55895,VistaVision,1238961598 +156286,260,adventure,1439183915 +156286,260,EPIC,1439183865 +156286,260,exciting,1439183906 +156286,260,fighting,1439183890 +156286,260,sci-fi,1439183877 +156291,87304,amazing and poignant,1437056384 +156302,356,happy,1431633216 +156302,356,inspiring,1431633216 +156302,356,original,1431633216 +156302,589,apocalypse,1429022098 +156302,589,artificial intelligence,1429022115 +156302,589,cyborgs,1429022107 +156302,589,dystopia,1429022101 +156302,589,future,1429022103 +156302,589,Linda Hamilton,1429022109 +156302,924,aliens,1429022183 +156302,924,Arthur C. Clarke,1429022191 +156302,924,cult film,1429022186 +156302,924,futuristic,1429022179 +156302,924,sci-fi,1429022174 +156302,924,surreal,1429022177 +156302,924,visually appealing,1429022194 +156302,1077,classic,1429022616 +156302,1077,comedy,1429022605 +156302,1077,dystopia,1429022592 +156302,1077,futuristic,1429022596 +156302,1077,Woody Allen,1429022594 +156302,1240,Action,1429022072 +156302,1240,Arnold Schwarzenegger,1429022017 +156302,1240,artificial intelligence,1429022068 +156302,1240,classic,1429022024 +156302,1240,highly quotable,1429022014 +156302,1240,James Cameron,1429022061 +156302,1240,Sci-Fi,1429022031 +156302,1968,1980s,1429021971 +156302,1968,cult film,1429021980 +156302,1968,ensemble cast,1429021990 +156302,1968,great music,1429021976 +156302,1968,Molly Ringwald,1429021986 +156302,1968,school drama,1429021982 +156302,2918,1980s,1429021918 +156302,2918,classic,1429021915 +156302,2918,comedy,1429021933 +156302,2918,coming of age,1429021929 +156302,2918,fun,1429021940 +156302,2918,Matthew Broderick,1429021921 +156302,3421,classic,1429021871 +156302,3421,college,1429021868 +156302,3421,comedy,1429021877 +156302,68358,intelligent,1429021825 +156302,68358,Leonard Nimoy,1429021838 +156302,68358,Zachary Quinto,1429021849 +156302,82461,alternate reality,1429021729 +156302,82461,atmospheric,1429021767 +156302,82461,daft punk,1429021774 +156302,82461,futuristic,1429021739 +156302,82461,Jeff Bridges,1429021724 +156302,82461,sci-fi,1429021707 +156302,82461,video games,1429021717 +156310,260,jedi,1439800526 +156310,260,scifi,1439800516 +156334,67867,Dragon Ball,1250614090 +156334,67867,martial arts,1250614081 +156343,260,classic,1440337876 +156343,260,legendary,1440337893 +156349,296,bloody,1431505600 +156349,296,pop,1431505600 +156349,296,tarantinocore,1431505600 +156359,356,bittersweet,1271643637 +156359,356,classic,1271643648 +156359,356,inspirational,1271643675 +156359,356,Tom Hanks,1271643661 +156359,671,comedy,1278874170 +156359,671,parody,1278874166 +156359,2161,Fantasy,1278874157 +156359,2571,post-apocalyptic,1278874193 +156359,2657,cross dressing,1271643994 +156359,2657,cult classic,1271643949 +156359,2657,great soundtrack,1271643962 +156359,2657,musical,1271643980 +156359,2657,quirky,1271643970 +156359,3000,Studio Ghibli,1278874148 +156359,3000,surreal,1278874145 +156359,4873,philosophy,1278874117 +156359,4873,quirky,1278874122 +156359,4873,surreal,1278874125 +156359,5618,fantasy,1278874106 +156359,5618,Studio Ghibli,1278874109 +156359,7836,rock and roll,1278874134 +156359,37857,alternate reality,1278874184 +156359,48082,romance,1278874102 +156359,48082,surreal,1278874098 +156359,81562,Amber Tamblyn,1301540193 +156359,81562,stranded,1301540200 +156359,81562,survival,1301540162 +156404,5418,action,1451841596 +156404,115713,AI,1451841704 +156404,115713,Drama,1451841718 +156404,115713,Manipulations,1451841714 +156404,115713,Nudity,1451841722 +156404,115713,sci-fi,1451841687 +156404,115713,technology,1451841707 +156404,145839,prospect,1451841646 +156415,260,Classic,1435683451 +156415,260,Science Fiction,1435683445 +156418,91529,Bane's contradictory plans,1344294024 +156442,260,Action,1438070484 +156442,260,Adventure,1438070493 +156442,129354,action,1438071352 +156442,129354,adventure,1438071352 +156442,129354,thriller,1438071352 +156477,3362,intense,1244832549 +156477,6016,Brilliant Film,1280837842 +156477,7178,based on a book,1184431506 +156477,77968,abuse,1437189256 +156477,77968,family,1437189259 +156477,77968,home recordings,1437189266 +156477,77968,powerful,1437189271 +156477,77968,repression,1437189255 +156477,77968,super 8,1437189278 +156477,77968,trauma,1437189261 +156518,133389,deepika padukone,1439917267 +156518,139575,telugu,1439917208 +156524,109487,Matthew McConaughey,1436127814 +156524,109487,sentimental,1436127798 +156531,1983,halloween,1446249426 +156531,51304,lifetime,1444004303 +156531,87304,fave,1442028230 +156531,135508,lifetime,1444004338 +156531,139651,lifetime,1444004292 +156531,141216,lifetime,1444004317 +156533,91548,depiction of America,1377998904 +156556,18,multiple storylines,1265241984 +156556,18,Quentin Tarantino,1265241992 +156556,47,psychology,1265241928 +156556,1721,Oscar (Best Picture),1265241897 +156556,1721,true story,1265241899 +156556,1884,based on a book,1265242019 +156556,1884,drugs,1265242013 +156556,1884,Hunter S. Thompson,1265242047 +156556,2858,Oscar (Best Picture),1265241736 +156556,2959,psychology,1265242005 +156556,3147,Stephen King,1265241714 +156556,3949,addiction,1265241708 +156556,3949,drugs,1265241704 +156556,3949,psychology,1265241707 +156556,6664,Arnold Schwarzenegger,1265241720 +156556,6863,music,1265241816 +156556,6863,rock and roll,1265241687 +156556,8957,serial killer,1265241748 +156556,44191,dystopia,1265241857 +156556,48774,dystopia,1265242321 +156556,49396,Jack Black,1265241914 +156556,49396,rock and roll,1265241912 +156556,49396,satire,1265241910 +156556,63082,Oscar (Best Picture),1265241843 +156656,296,bloody,1430605696 +156656,296,drugs,1430605696 +156656,296,multiple storylines,1430605724 +156656,296,nonlinear,1430605696 +156656,143025,biopic,1443300043 +156658,235,dracula,1430997057 +156658,260,good versus evil,1430919976 +156658,260,rescuing the world,1430919960 +156658,260,Science Fiction,1430919933 +156658,296,drugs,1431947559 +156658,296,film-noir,1431947559 +156658,296,non-linear,1431947559 +156658,356,life story,1430995525 +156658,356,love beats brain,1430995525 +156658,356,meaning of life,1430995525 +156658,27636,berlin,1431000536 +156658,27636,east germany,1431000550 +156658,27636,germany,1431000546 +156658,44665,mindfuck,1430997377 +156658,48879,apartheid,1430998168 +156658,48879,drama,1430998160 +156658,48879,South Africa,1430998203 +156658,48879,true story,1430998190 +156658,76173,french,1431010232 +156658,76173,paris,1431010221 +156658,109161,story in a story,1431007817 +156658,109161,surreal,1431007803 +156659,26044,biography,1371997908 +156659,26044,gangsters,1371998006 +156659,26044,mafia,1371997934 +156659,26044,Rod Steiger,1379708460 +156659,26176,Frederick Wiseman,1237210454 +156659,59684,religion:Christianity,1228840086 +156659,71131,Phelps family,1287069070 +156659,79850,abortion,1287068355 +156659,79850,religion,1287068355 +156659,114331,conspiracy theory,1420603458 +156659,114331,political propaganda,1420603458 +156659,114331,politics,1420603458 +156670,40815,harry potter,1433292695 +156670,40815,Magic,1433292690 +156685,19,Jim Carrey,1260635618 +156685,231,Jim Carrey,1260635584 +156685,296,Black comedy,1260669527 +156685,296,dark comedy,1260669525 +156685,296,Quentin Tarantino,1260669530 +156685,318,atmospheric,1260669487 +156685,318,classic,1260669468 +156685,318,justice,1260669494 +156685,318,thought-provoking,1260669475 +156685,318,twist ending,1260669478 +156685,342,bittersweet,1260669029 +156685,342,comedy,1260669032 +156685,344,Jim Carrey,1260635611 +156685,665,Emir Kusturica,1260669281 +156685,665,Golden Palm,1260669282 +156685,750,anti-war,1260669101 +156685,750,black comedy,1260669104 +156685,750,dark comedy,1260669107 +156685,750,nuclear war,1260669100 +156685,750,satire,1260669106 +156685,750,Stanley Kubrick,1260669095 +156685,784,Jim Carrey,1260635625 +156685,1047,assassins,1260669718 +156685,1047,Geena Davis,1260669720 +156685,1047,ironic,1260669729 +156685,1080,Monty Python,1260669058 +156685,1080,parody,1260669059 +156685,1080,religion,1260669062 +156685,1080,satire,1260669065 +156685,1080,Terry Gilliam,1260669068 +156685,1136,british comedy,1260669083 +156685,1136,Monty Python,1260669071 +156685,1136,parody,1260669072 +156685,1136,satirical,1260669077 +156685,1136,spoof,1260669080 +156685,1136,Terry Gilliam,1260669075 +156685,1178,anti-war,1260635497 +156685,1178,cynical,1260635503 +156685,1178,disturbing,1260635506 +156685,1178,Stanley Kubrick,1260635514 +156685,1199,atmospheric,1260669135 +156685,1199,dark comedy,1260669129 +156685,1199,dreamlike,1260669125 +156685,1199,dystopia,1260669122 +156685,1199,Robert De Niro,1260669127 +156685,1199,surreal,1260669131 +156685,1199,Terry Gilliam,1260669124 +156685,1199,thought-provoking,1260669133 +156685,1210,fantasy,1260669334 +156685,1210,Harrison Ford,1260669337 +156685,1210,sci-fi,1260669335 +156685,1210,space,1260669341 +156685,1210,Star Wars,1260669338 +156685,1747,black comedy,1260668816 +156685,1747,comedy,1260668819 +156685,1747,corruption,1260668814 +156685,1747,politics,1260668823 +156685,1747,satire,1260668825 +156685,1923,comedy,1260669321 +156685,1923,fun,1260669325 +156685,1923,goofy,1260669291 +156685,1923,hilarious,1260669297 +156685,2019,Akira Kurosawa,1260668951 +156685,2019,Kurosawa,1260668956 +156685,2019,toshiro mifune,1260668959 +156685,2683,Hilarious,1260635652 +156685,2683,parody,1260635650 +156685,2683,spoof,1260635654 +156685,2700,adult humor,1260668924 +156685,2700,censorship,1260668926 +156685,2700,parody,1260668917 +156685,2700,satire,1260668914 +156685,2700,south park,1260668919 +156685,2710,boring,1260669585 +156685,2710,Golden Raspberry (Worst Actress),1260669590 +156685,2710,mimics documentary-style,1260669599 +156685,2710,obnoxious,1260669597 +156685,2710,scary,1260669605 +156685,3030,Akira Kurosawa,1260669211 +156685,3030,atmospheric,1260669213 +156685,3030,Toshiro Mifune,1260669235 +156685,3033,goofy,1260669365 +156685,3033,Mel Brooks,1260669363 +156685,3033,parody,1260669355 +156685,3033,space,1260669358 +156685,3033,spoof,1260669357 +156685,3033,star wars,1260669360 +156685,3208,Jon Lovitz,1260669701 +156685,3208,parody,1260669696 +156685,3267,Robert Rodriguez,1260669673 +156685,4027,Coen Brothers,1260669007 +156685,4027,George Clooney,1260669014 +156685,4027,John Goodman,1260669022 +156685,4027,notable soundtrack,1260669001 +156685,4306,animation,1260669448 +156685,4306,comedy,1260669462 +156685,4306,fairy tale,1260669452 +156685,4306,parody,1260669454 +156685,4306,romance,1260669458 +156685,5291,Akira Kurosawa,1260669506 +156685,5291,enigmatic,1260669516 +156685,5291,nonlinear,1260669521 +156685,5291,Toshiro Mifune,1260669509 +156685,6539,action,1260669557 +156685,6539,adventure,1260669561 +156685,6539,comedy,1260669563 +156685,6539,funny,1260669553 +156685,6539,Johnny Depp,1260669545 +156685,6807,british comedy,1260669044 +156685,6807,Monty Python,1260669048 +156685,6807,satire,1260669051 +156685,6807,Terry Gilliam,1260669053 +156685,7361,Jim Carrey,1260669623 +156685,7361,overacting,1260669639 +156685,8360,animation,1260669431 +156685,8360,fairy tale,1260669439 +156685,8360,hilarious,1260669435 +156685,8360,Mike Myers,1260669437 +156685,8360,parody,1260669433 +156685,32587,atmospheric,1260668946 +156685,32587,black comedy,1260668944 +156685,32587,Quentin Tarantino,1260668933 +156685,32587,stylized,1260668938 +156685,44191,dystopia,1260669255 +156685,44191,inspirational,1260669258 +156685,44191,sci-fi,1260669268 +156685,44191,terrorism,1260669264 +156685,44191,thought-provoking,1260669260 +156685,44195,corruption,1260668844 +156685,44195,dark comedy,1260668832 +156685,44195,dark humor,1260668835 +156685,44195,propaganda,1260668848 +156685,44195,social commentary,1260668851 +156685,54259,author:Neil Gaiman,1260668877 +156685,54259,fairy tale romance,1260668871 +156685,54259,Neil Gaiman,1260668863 +156685,54272,animation,1260669397 +156685,54272,comedy,1260669393 +156685,54272,simpsons,1260669400 +156685,59900,exaggerated,1260669201 +156685,71535,funny,1260661784 +156685,71535,parody,1260661932 +156685,71535,Woody Harrelson,1260661782 +156685,78041,Tom Selleck,1281617614 +156685,79185,Cameron Diaz,1281617516 +156685,79185,Tom Cruise,1281617524 +156700,8368,Magic,1179669810 +156716,47,crime,1241082340 +156716,47,mystery,1241082341 +156716,47,powerful ending,1241082342 +156716,47,Psychological drama,1241082342 +156716,47,psychology,1241082343 +156716,47,serial killer,1230418398 +156716,47,twists & turns,1241082344 +156716,318,adaptation,1241082347 +156716,318,friendship,1241082347 +156716,318,justice,1241082349 +156716,318,prison,1241082350 +156716,318,prison escape,1230418315 +156716,318,revenge,1241082352 +156716,318,Stephen King,1230418312 +156716,593,cannibalism,1241082355 +156716,593,crime,1241082359 +156716,593,Hannibal Lecter,1241082363 +156716,593,Jodie Foster,1241082364 +156716,593,psychology,1241082365 +156716,593,serial killer,1241082365 +156716,608,black comedy,1241082284 +156716,608,Coen Brothers,1241082279 +156716,608,crime,1230886516 +156716,608,dark comedy,1241082280 +156716,608,quirky,1230886519 +156716,1265,alternate universe,1242942717 +156716,1265,deja vu,1242942738 +156716,1265,Fantasy,1242942737 +156716,1265,humorous,1242942720 +156716,1265,surreal,1242942723 +156716,1265,time loop,1242942726 +156716,1265,time travel,1242942732 +156716,1748,aliens,1246828191 +156716,1748,dark fantasy,1246828193 +156716,1748,fantasy,1246828173 +156716,1748,identity,1246828188 +156716,1748,memory,1246828176 +156716,1748,mindfuck,1246828176 +156716,1748,surreal,1246828182 +156716,1748,thought-provoking,1246828186 +156716,2329,holocaust,1241552418 +156716,2329,Neo-Nazis,1241552429 +156716,2329,powerful ending,1241552426 +156716,2329,thought-provoking,1241552410 +156716,2571,alternate universe,1241082319 +156716,2571,alternate world,1241082319 +156716,2571,dystopia,1230418508 +156716,2571,martial arts,1230418511 +156716,2571,philosophical,1241082321 +156716,2571,philosophy,1241082322 +156716,2571,post apocalyptic,1241082323 +156716,2571,surreal,1241082324 +156716,2571,virtual reality,1241082325 +156716,2710,Handycam,1241082245 +156716,3160,bleak,1241082561 +156716,3160,coincidences,1241082558 +156716,3160,DRUG ADDICTION,1241082567 +156716,3160,drugs,1241082569 +156716,3160,melancholy,1241082548 +156716,3160,multiple storylines,1241082600 +156716,3160,Philip Seymour Hoffman,1241082537 +156716,3160,racism,1241082575 +156716,3160,Tom Cruise,1241082578 +156716,3160,William H. Macy,1241082540 +156716,3949,Adaptation,1241082645 +156716,3949,addiction,1241082629 +156716,3949,dark,1241082633 +156716,3949,depressing,1241082635 +156716,3949,drug abuse,1241082627 +156716,3949,loneliness,1241082639 +156716,3949,psychology,1241082624 +156716,4027,Coen Brothers,1241082335 +156716,4027,prison escape,1230886567 +156716,4226,memory,1241082328 +156716,4226,mystery,1241082329 +156716,4226,nonlinear,1241082330 +156716,4226,psychological,1241082330 +156716,4226,psychology,1241082331 +156716,4226,short-term memory loss,1241082332 +156716,4226,twist ending,1241082333 +156716,4878,mindfuck,1241082273 +156716,4878,Parallel universe,1241082274 +156716,4878,psychology,1241082274 +156716,4878,surreal,1241082276 +156716,4878,time travel,1241082275 +156716,8950,Christian Bale,1230416724 +156716,8950,creepy,1230416733 +156716,8950,memory,1241082315 +156716,8950,psychology,1241082315 +156716,8950,schizophrenia,1241082316 +156716,8950,twist ending,1241082317 +156716,26974,Bizarre,1241606812 +156716,26974,SUBURBAN DYSFUNCTION,1241606803 +156716,27027,history,1246916698 +156716,27027,philosophy,1246916702 +156716,27592,brutal,1241082370 +156716,27592,revenge,1241082370 +156716,27592,Revenge Trilogy,1230903593 +156716,27592,vengeance,1241082372 +156716,27592,violent,1230903623 +156716,27857,life & death,1244321289 +156716,27857,love,1244321338 +156716,27857,music,1244321277 +156716,37955,art house,1242933800 +156716,37955,coming of age,1242933845 +156716,37955,dreamlike,1242933833 +156716,37955,from the view of children,1242933826 +156716,37955,provocative,1242933820 +156716,37955,SEXUAL AWAKENING,1242933836 +156716,37955,utopia,1242933817 +156716,47200,action packed,1241082259 +156716,47200,adrenaline,1241082260 +156716,47200,adrenaline junkie,1241082261 +156716,47200,epifedrine,1230903534 +156716,47200,Jason Statham,1241082263 +156716,47200,revange,1230903521 +156716,47200,videogame like,1241082264 +156716,48516,gangsters,1241082269 +156716,48516,Mafia,1230418637 +156716,48516,police corruption,1241082270 +156716,48516,undercover cop,1241082271 +156716,53161,Chan-wook Park,1241385354 +156716,53161,mental hospital,1241385340 +156716,53161,slow movie,1241385383 +156716,53161,syborg,1241385343 +156716,56788,cold war,1241082248 +156716,56788,Good dialogue,1230592008 +156716,56788,politics,1241082250 +156716,57274,bloody,1241082241 +156716,57274,Handycam,1241082235 +156716,57274,infection,1241082236 +156716,57274,panic,1241082237 +156716,57274,virus,1241082237 +156716,57274,zombies,1241082238 +156716,57368,Handycam,1241082251 +156716,57368,New York City,1230936768 +156716,57464,Affair,1230676551 +156716,57464,Identity,1241082311 +156716,57464,Imagination,1241082310 +156716,57464,Personality change,1241082309 +156716,57464,Suicide,1230676542 +156716,57464,twist ending,1241082307 +156716,58078,Forest Whitaker,1242660939 +156716,58078,life & death,1242660933 +156716,58078,life choices,1242660935 +156716,58078,life philosophy,1242660931 +156716,60943,financial problems,1230928176 +156716,60943,friendship,1241082291 +156716,60943,smuggling,1241082289 +156716,60943,trailer home,1230928161 +156716,63082,India,1241082378 +156716,63082,life story,1241082377 +156716,63082,Mumbai,1230935978 +156716,63082,Poverty,1230936197 +156716,63082,slum,1241082376 +156716,63082,violence,1230936082 +156716,64614,classic car,1230921916 +156716,64614,culture clash,1241082296 +156716,64614,gang,1241082297 +156716,64614,life & death,1241082298 +156716,64614,mentor,1230921869 +156716,64614,old men,1241082299 +156716,64614,racism,1230921905 +156716,64614,revenge,1241082301 +156716,64614,wasted life,1241082302 +156716,64957,Aging,1241125389 +156716,64957,Aging Disorder,1241125391 +156716,64993,anime,1241082229 +156716,64993,drama,1241082229 +156716,64993,Japan,1230417263 +156716,64993,love,1241082232 +156716,65216,World War II,1241082267 +156716,65642,complicated,1241082506 +156716,65642,plot wending,1241082495 +156716,65642,time travel,1241082467 +156716,66171,psychic powers,1241902425 +156716,66171,twisted ending,1241902431 +156716,68519,Donnie Darko,1242144489 +156716,68519,Time travel,1242144500 +156716,68519,Visions,1242144496 +156716,68522,beautiful scenery,1244128503 +156716,68522,camerawork,1244128514 +156716,68522,nature,1244128480 +156716,68650,blue snow,1242660817 +156716,68650,death,1242660823 +156716,68650,Forest Whitaker,1242660971 +156716,68650,life choices,1242660971 +156716,68650,life philosophy,1242660980 +156716,68650,multiple storylines,1242660897 +156716,69481,death,1246743462 +156716,69481,Iraq,1246743448 +156716,69481,realistic,1246743454 +156716,69481,vision,1246743480 +156716,71106,time travel,1253003511 +156716,76251,action,1270903188 +156716,76251,comic book,1270903180 +156716,76251,humorous,1270903163 +156716,76251,superhero,1270903178 +156716,76251,weapons,1270903206 +156716,79132,alternate reality,1283869538 +156716,79132,complicated,1283869540 +156716,79132,dreams,1283869537 +156716,79132,intellectual,1283869534 +156716,79132,mindfuck,1283869525 +156716,79132,multiple interpretations,1283869532 +156716,79132,surreal,1283869528 +156716,79132,visually appealing,1283869522 +156725,18,Antonio Banderas,1332101305 +156725,18,Bruce Willis,1332101310 +156725,18,fast paced,1332101315 +156725,18,multiple storylines,1332101297 +156725,18,Quentin Tarantino,1332101292 +156725,18,Robert Rodriguez,1332101303 +156725,18,Tarantino,1356840088 +156725,18,Tim Roth,1332101298 +156725,70,cult film,1332101273 +156725,70,mexico,1332101281 +156725,70,Quentin Tarantino,1332101276 +156725,70,Sexualized violence,1332101279 +156725,70,vampires,1332101284 +156725,70,violence,1332101286 +156725,215,bittersweet,1360976460 +156725,215,conversation,1360976459 +156725,215,ethan hawke,1360976465 +156725,215,Julie Delpy,1360976478 +156725,215,quirky,1360976485 +156725,215,reflective,1360976463 +156725,260,action,1450219086 +156725,260,"action, scifi",1450219111 +156725,260,adventure,1330256401 +156725,260,atmospheric,1330256397 +156725,260,classic,1330256403 +156725,260,classic sci-fi,1450219085 +156725,260,cult classic,1450219097 +156725,260,EPIC,1450219093 +156725,260,epic adventure,1450219103 +156725,260,fantasy,1450219088 +156725,260,futuristic,1450219108 +156725,260,George Lucas,1450219100 +156725,260,good vs evil,1450219091 +156725,260,great soundtrack,1330256399 +156725,260,Harrison Ford,1450219098 +156725,260,jedi,1450219106 +156725,260,oldie but goodie,1450219110 +156725,260,sci-fi,1450219082 +156725,260,Science Fiction,1450219082 +156725,260,scifi,1450219102 +156725,260,scifi cult,1450219104 +156725,260,space,1330256391 +156725,260,space action,1450219089 +156725,260,space adventure,1450219084 +156725,260,space epic,1450219095 +156725,260,space opera,1450219090 +156725,260,Star Wars,1330256393 +156725,260,sword fight,1330256394 +156725,296,action,1330187428 +156725,296,multiple storylines,1330187418 +156725,296,nonlinear,1330187431 +156725,296,organized crime,1330187424 +156725,296,Quentin Tarantino,1330187401 +156725,296,quirky,1330187411 +156725,296,Samuel L. Jackson,1330187405 +156725,296,stylized,1330187407 +156725,296,violence,1330187421 +156725,303,Gene Hackman,1363086526 +156725,303,Leonardo DiCaprio,1363086522 +156725,303,Russell Crowe,1363086511 +156725,303,Sam Raimi,1363086507 +156725,303,Sharon Stone,1363086516 +156725,303,western,1363086518 +156725,318,atmospheric,1332099753 +156725,318,Morgan Freeman,1332099759 +156725,318,prison escape,1332099769 +156725,318,Stephen King,1332099735 +156725,318,twist ending,1332099739 +156725,347,disturbing,1343097135 +156725,347,Hugh Grant,1343097137 +156725,347,Nudity (Topless - Notable),1343097133 +156725,347,Nudity (Topless),1343097143 +156725,347,Roman Polanski,1343097139 +156725,356,bittersweet,1363556729 +156725,356,emotional,1363556748 +156725,356,quirky,1363556752 +156725,356,romance,1363556750 +156725,356,Tom Hanks,1363556733 +156725,366,cheesy,1332102143 +156725,366,possessed little kid,1332102148 +156725,366,ridiculous,1332102141 +156725,366,Robert Englund,1332102151 +156725,390,campy,1352119464 +156725,390,exploitation,1352119478 +156725,390,Russ Meyer,1352119473 +156725,390,sexual,1352119467 +156725,390,Tura Satana,1352119471 +156725,541,artificial intelligence,1332117130 +156725,541,cyberpunk,1332117091 +156725,541,dystopia,1332117133 +156725,541,fantasy,1332117152 +156725,541,future,1332117145 +156725,541,sci-fi,1332117093 +156725,541,stylized,1332117095 +156725,553,dialogue,1348710947 +156725,553,great acting,1348710918 +156725,553,great cast,1348710954 +156725,553,gunfight,1348710942 +156725,553,Highly quotable,1348710935 +156725,553,Kurt Russell,1348710922 +156725,553,Val Kilmer,1348710931 +156725,553,western,1348710924 +156725,555,Christopher Walken,1356839964 +156725,555,Dennis Hopper,1356839967 +156725,555,Gary Oldman,1356839974 +156725,555,Quentin Tarantino,1356839971 +156725,555,romance,1356839979 +156725,555,violence,1356839981 +156725,588,Robin Williams,1346900132 +156725,608,black comedy,1387256246 +156725,608,Coen Brothers,1387256249 +156725,608,funny,1387256261 +156725,608,quirky,1387256247 +156725,608,violent,1387256252 +156725,608,witty,1387256254 +156725,714,bleak,1331289293 +156725,714,boring,1331289310 +156725,714,Jim Jarmusch,1331289320 +156725,778,black comedy,1330256581 +156725,778,British,1330256583 +156725,778,dark comedy,1330256579 +156725,778,drugs,1330256585 +156725,778,Ewan McGregor,1330256589 +156725,778,social commentary,1330256586 +156725,778,violent,1330256592 +156725,903,Alfred Hitchcock,1384712757 +156725,903,Atmospheric,1384712759 +156725,903,overrated,1384712787 +156725,903,twist ending,1384712764 +156725,924,artificial intelligence,1330256116 +156725,924,philosophical,1330256123 +156725,924,sci-fi,1330256118 +156725,924,Stanley Kubrick,1330256120 +156725,924,surreal,1330256126 +156725,1047,action,1408042611 +156725,1047,Geena Davis,1408042613 +156725,1047,Samuel L. Jackson,1408042617 +156725,1047,Shane Black,1408042619 +156725,1047,witty,1408042630 +156725,1089,crime,1356840031 +156725,1089,cult film,1356840032 +156725,1089,great soundtrack,1356840053 +156725,1089,nonlinear,1356840039 +156725,1089,notable soundtrack,1356840050 +156725,1089,Quentin Tarantino,1356840042 +156725,1089,quirky,1356840046 +156725,1089,stylized,1356840044 +156725,1089,violence,1356840047 +156725,1196,1980s,1450219229 +156725,1196,action,1450219202 +156725,1196,adventure,1450219198 +156725,1196,aliens,1450219205 +156725,1196,Carrie Fisher,1450219225 +156725,1196,classic,1450219199 +156725,1196,fantasy,1450219197 +156725,1196,father-son relationship,1450219207 +156725,1196,George Lucas,1330256463 +156725,1196,great soundtrack,1330256462 +156725,1196,Harrison Ford,1450219195 +156725,1196,modern fantasy,1450219221 +156725,1196,music,1330256468 +156725,1196,original plot,1450219222 +156725,1196,robots,1450219201 +156725,1196,sci-fi,1330256466 +156725,1196,sequel,1450219228 +156725,1196,space,1330256470 +156725,1196,space opera,1450219203 +156725,1196,Star Wars,1450219195 +156725,1196,sword fight,1330256472 +156725,1196,war,1450219230 +156725,1197,comedy,1338290872 +156725,1197,Cult classic,1338290875 +156725,1197,fairy tale,1338290869 +156725,1197,funny,1338290907 +156725,1197,quirky,1338290900 +156725,1197,romance,1338290885 +156725,1197,sword fight,1338290897 +156725,1197,whimsical,1338290893 +156725,1197,witty,1338290880 +156725,1201,BOUNTY HUNTERS,1330446506 +156725,1201,Civil War,1330446504 +156725,1201,classic,1330446508 +156725,1201,Clint Eastwood,1330446479 +156725,1201,complex characters,1330446485 +156725,1201,Ennio Morricone,1330446477 +156725,1201,imdb top 250,1330446500 +156725,1201,Italian,1330446491 +156725,1201,quirky,1330446498 +156725,1201,Sergio Leone,1330446476 +156725,1201,showdown,1330446510 +156725,1201,spaghetti western,1330446482 +156725,1201,violence in america,1330446513 +156725,1201,western,1330446488 +156725,1203,cinematography,1332099858 +156725,1203,classic,1332099856 +156725,1203,good dialogue,1332099847 +156725,1203,gritty,1332099863 +156725,1203,racism,1332099854 +156725,1203,social commentary,1332099849 +156725,1209,atmospheric,1361218694 +156725,1209,Ennio Morricone,1361218684 +156725,1209,great soundtrack,1361218713 +156725,1209,morricone score,1361218711 +156725,1209,Sergio Leone,1361218686 +156725,1209,Spaghetti Western,1361218691 +156725,1209,stylized,1361218704 +156725,1209,tense,1361218702 +156725,1209,violence,1361218708 +156725,1210,action,1450219248 +156725,1210,adventure,1450219245 +156725,1210,aliens,1450219246 +156725,1210,Carrie Fisher,1450219271 +156725,1210,classic,1450219253 +156725,1210,drama,1450219276 +156725,1210,fantasy,1450219243 +156725,1210,father-son relationship,1450219269 +156725,1210,George Lucas,1450219242 +156725,1210,great ending,1450219259 +156725,1210,great soundtrack,1450219251 +156725,1210,Harrison Ford,1450219241 +156725,1210,Oscar (Best Music - Original Score),1450219274 +156725,1210,robots,1450219266 +156725,1210,sci-fi,1450219237 +156725,1210,sequel,1450219267 +156725,1210,space,1450219239 +156725,1210,space opera,1450219249 +156725,1210,Star Wars,1450219238 +156725,1210,starship pilots,1450219272 +156725,1210,war,1450219260 +156725,1228,black and white,1361218557 +156725,1228,boring,1361218576 +156725,1228,brother-brother relationship,1361218641 +156725,1228,photography,1361218633 +156725,1228,Robert De Niro,1361218561 +156725,1228,Unlikable protagonist,1361219101 +156725,1245,Caspar's son,1361131601 +156725,1245,Coen Brothers,1361131537 +156725,1245,dark comedy,1361131539 +156725,1245,Film Noir,1361131543 +156725,1245,gangsters,1361131546 +156725,1245,Mafia,1361131548 +156725,1245,quirky,1361131553 +156725,1245,tense,1361131555 +156725,1245,twists & turns,1361131550 +156725,1245,witty,1361131552 +156725,1252,cynical,1343096262 +156725,1252,ending,1343096763 +156725,1252,Film Noir,1343096265 +156725,1252,Jack Nicholson,1343096267 +156725,1252,mystery,1343096942 +156725,1252,private detective,1343096270 +156725,1252,Roman Polanski,1343096784 +156725,1252,witty dialogues,1343096776 +156725,1255,16mm,1358789004 +156725,1255,alien invasion,1358789013 +156725,1255,aliens,1358789009 +156725,1255,campy,1358788991 +156725,1255,gore,1358789019 +156725,1255,Peter Jackson,1358788986 +156725,1255,really bad,1358788983 +156725,1255,ugly,1358788980 +156725,1261,black comedy,1360190099 +156725,1261,Bruce Campbell,1360190101 +156725,1261,cult classic,1360190104 +156725,1261,dark humor,1360190110 +156725,1261,humorous,1360190114 +156725,1261,splatter,1360190123 +156725,1261,zombies,1360190118 +156725,1271,heartwarming,1370546440 +156725,1271,humorous,1370546438 +156725,1271,Quirky,1370546433 +156725,1273,black and white,1331289275 +156725,1295,Juliette Binoche,1330445612 +156725,1295,Philip Kaufman,1330445604 +156725,1295,photography,1330445607 +156725,1371,Leonard Nimoy,1372823663 +156725,1371,sci-fi,1372823713 +156725,1371,slow,1372823670 +156725,1371,Star Trek,1372823669 +156725,1371,William Shatner,1372823671 +156725,1374,Leonard Nimoy,1372823795 +156725,1374,sci-fi,1372823687 +156725,1374,Science Fiction,1372823700 +156725,1374,Star Trek,1372823696 +156725,1374,William Shatner,1372823689 +156725,1590,distorted reality,1403136478 +156725,1590,hallucination,1403136480 +156725,1590,insanity,1403136497 +156725,1590,Sam Neill,1403136477 +156725,1590,scary,1403136491 +156725,1590,tense,1403136486 +156725,1590,violent,1403136488 +156725,1704,genius,1330466752 +156725,1704,Great Screenplays,1330466757 +156725,1704,intelligent,1330466755 +156725,1704,mathematics,1330466722 +156725,1704,psychology,1330466760 +156725,1704,Robin Williams,1330466712 +156725,1729,gritty,1356840121 +156725,1729,Quentin Tarantino,1356840102 +156725,1729,quirky,1356840107 +156725,1729,Samuel L. Jackson,1356840104 +156725,1729,violence,1356840112 +156725,1748,atmospheric,1332972666 +156725,1748,dark,1332972703 +156725,1748,dystopia,1332972671 +156725,1748,film noir,1332972694 +156725,1748,memory,1332972683 +156725,1748,Post apocalyptic,1332972678 +156725,1748,sci-fi,1332972708 +156725,1748,steampunk,1332972674 +156725,1748,surreal,1332972690 +156725,1748,visually appealing,1332972686 +156725,1882,Godzilla,1332736346 +156725,1882,Jean Reno,1332736344 +156725,1882,Matthew Broderick,1332736339 +156725,1882,Roland Emmerich,1332736341 +156725,1884,great soundtrack,1330256612 +156725,1884,hallucinatory,1330256610 +156725,1884,Johnny Depp,1330256608 +156725,1884,Terry Gilliam,1330256614 +156725,1884,true story,1330256616 +156725,1968,coming of age,1414243847 +156725,1968,school drama,1414243851 +156725,1969,slasher,1332102099 +156725,1970,dreams,1332102082 +156725,1970,Patricia Arquette,1332102087 +156725,1970,Robert Englund,1332102080 +156725,1975,fun horror,1332101930 +156725,1975,Jason Vorhees,1332101932 +156725,1975,slasher,1332101934 +156725,1976,horror,1332101914 +156725,1976,Jason Vorhees,1332101910 +156725,1976,serial killer,1332101911 +156725,1977,franchise,1332101977 +156725,1977,Jason,1332101975 +156725,1977,slasher,1332101973 +156725,1978,boring,1332102031 +156725,1978,Jason,1332102027 +156725,1978,slasher,1332102019 +156725,1979,breaks the fourth wall,1332101891 +156725,1979,funny,1332101889 +156725,1979,Jason,1332101893 +156725,1979,supernatural,1332101897 +156725,1980,masked killer,1332102008 +156725,1980,psychic,1332102003 +156725,1980,telekinesis,1332102007 +156725,2000,action,1438570578 +156725,2000,Buddy movie,1438570588 +156725,2000,comedy,1438570585 +156725,2000,Mel Gibson,1438570582 +156725,2025,erotic,1339346740 +156725,2025,temptation,1339346745 +156725,2060,dumb,1331766513 +156725,2060,funny once,1331766525 +156725,2060,toilet humour,1331766515 +156725,2160,Antichrist,1343097015 +156725,2160,Atmospheric,1343097016 +156725,2160,creepy,1343097020 +156725,2160,dreamlike,1343097037 +156725,2160,Roman Polanski,1343097022 +156725,2186,Alfred Hitchcock,1363033877 +156725,2186,great concept,1363033869 +156725,2231,card games,1443281675 +156725,2231,Edward Norton,1443281664 +156725,2231,gambling,1443281677 +156725,2231,John Malkovich,1443281672 +156725,2231,Matt Damon,1443281667 +156725,2231,poker,1443281679 +156725,2288,alien invasion,1446608181 +156725,2288,aliens,1446608166 +156725,2288,Antarctica,1446608180 +156725,2288,blood,1446608195 +156725,2288,claustrophobic,1446608187 +156725,2288,disturbing,1446608178 +156725,2288,horror,1446608173 +156725,2288,John Carpenter,1446608174 +156725,2288,Kurt Russell,1446608171 +156725,2288,lovecraftian,1446608190 +156725,2288,Lovecraftian mythology,1446608185 +156725,2288,paranoia,1446608168 +156725,2288,remake,1446608196 +156725,2288,sci-fi,1446608193 +156725,2288,shape shifter,1446608176 +156725,2288,Special Effects,1446608191 +156725,2403,action,1449344966 +156725,2403,bad cop,1449344974 +156725,2403,classic,1449344992 +156725,2403,memories,1449344997 +156725,2403,messed with the wrong guy,1449344990 +156725,2403,post-traumatic stress disorder,1449344968 +156725,2403,simple plot,1449344983 +156725,2403,small town,1449344999 +156725,2403,social commentary,1449344976 +156725,2403,special forces,1449344995 +156725,2403,Sylvester Stallone,1449344963 +156725,2403,Vietnam war veteran,1449344979 +156725,2403,war hero,1449344986 +156725,2455,body horror,1331766014 +156725,2455,David Cronenberg,1331766006 +156725,2455,horror,1331766022 +156725,2455,mad scientist,1331765994 +156725,2455,tense,1331766026 +156725,2455,tragic hero,1331766000 +156725,2530,"""damn dirty apes""",1341510171 +156725,2530,ACTION,1341510159 +156725,2530,Cult film,1341510167 +156725,2530,doomsday,1341510153 +156725,2530,post-apocalyptic,1341510156 +156725,2530,social commentary,1341510151 +156725,2530,WTF? horrible sequel and storyboard,1341510147 +156725,2600,alternate reality,1361227925 +156725,2600,David Cronenberg,1361227928 +156725,2600,interesting,1361227995 +156725,2600,Jennifer Jason Leigh,1361227981 +156725,2600,Jude Law,1361227931 +156725,2600,mindfuck,1361227937 +156725,2600,Sci-Fi,1361227939 +156725,2617,action,1409538749 +156725,2617,adventure,1409538748 +156725,2617,archaeology,1409538729 +156725,2617,big budget,1409538744 +156725,2617,books,1409538746 +156725,2617,Brendan Fraser,1409538725 +156725,2617,campy,1409538735 +156725,2617,egypt,1409538739 +156725,2617,mummy,1409538725 +156725,2617,Rachel Weisz,1409538732 +156725,2617,treasure hunt,1409538725 +156725,2672,director's career,1350248210 +156725,2672,great ending,1350248149 +156725,2672,great plot,1350248157 +156725,2672,Gretchen Mol,1350248120 +156725,2672,simulated reality,1350248128 +156725,2687,Disney,1346899908 +156725,2687,Jane,1346899910 +156725,2687,Phil Collins,1346899902 +156725,2772,comedy,1332476088 +156725,2772,coming of age,1332476093 +156725,2772,KISS,1332476097 +156725,2772,rock and roll,1332476102 +156725,2916,conspiracy,1354233344 +156725,2916,cult film,1354233345 +156725,2916,dystopia,1354233357 +156725,2916,memory,1354233352 +156725,2916,sci-fi,1354233353 +156725,2921,Clint Eastwood,1391924294 +156725,2921,dark,1391924307 +156725,2921,violence,1391924297 +156725,2921,western,1391924302 +156725,2959,Brad Pitt,1330187581 +156725,2959,dark comedy,1330187566 +156725,2959,disturbing,1330187584 +156725,2959,Edward Norton,1330187587 +156725,2959,psychology,1330187569 +156725,2959,social commentary,1330187576 +156725,2959,twist ending,1330187571 +156725,2959,violence,1330187578 +156725,2966,boring,1361219300 +156725,2966,David Lynch,1361219292 +156725,3016,George A. Romero,1339346580 +156725,3016,multiple short stories in one,1339346582 +156725,3075,atmospheric,1343097192 +156725,3075,loneliness,1343097186 +156725,3075,MENTAL ILLNESS,1343097180 +156725,3075,paranoid,1343097188 +156725,3075,Roman Polanski,1343097177 +156725,3267,crime,1332100821 +156725,3267,directing,1332100816 +156725,3267,Robert Rodriguez,1332100807 +156725,3267,violence,1332100814 +156725,3300,aliens,1381450352 +156725,3300,anti-hero,1381450354 +156725,3300,David N. Twohy,1381450364 +156725,3300,futuristic,1381450358 +156725,3300,sci-fi,1381450343 +156725,3300,stranded,1381450347 +156725,3300,Vin Diesel,1381450362 +156725,3301,Bruce Willis,1331768162 +156725,3301,Matthew Perry,1331768164 +156725,3355,bad ending,1343097215 +156725,3355,devil,1343097223 +156725,3355,Johnny Depp,1343097226 +156725,3355,Roman Polanski,1343097219 +156725,3355,satanism,1343097229 +156725,3476,flashbacks,1341264279 +156725,3476,hallucination,1341264277 +156725,3476,mental illness,1341264282 +156725,3476,nonlinear,1341264286 +156725,3476,paranoia,1341264289 +156725,3476,surreal,1341264291 +156725,3476,Tim Robbins,1341264293 +156725,3476,twist ending,1341264299 +156725,3499,claustrophobic,1442537389 +156725,3499,horror,1442537398 +156725,3499,hostage,1442537407 +156725,3499,Kathy Bates,1442537396 +156725,3499,menacing,1442537402 +156725,3499,scary,1442537405 +156725,3499,stephen king,1442537388 +156725,3499,suspenseful,1442537387 +156725,3499,tense,1442537391 +156725,3499,thriller,1442537393 +156725,3698,Arnold Schwarzenegger,1404738032 +156725,3698,campy,1404738045 +156725,3698,corruption,1404738037 +156725,3698,Dystopia,1404738033 +156725,3698,dystopic future,1404738039 +156725,3698,Stephen King,1404738040 +156725,3698,survival,1404738034 +156725,3698,television,1404738036 +156725,3702,Mel Gibson,1359413295 +156725,3702,One of the worst movies of all time,1359413250 +156725,3702,the plot made no sense,1359413278 +156725,3702,violent,1359413223 +156725,3703,action,1404495522 +156725,3703,atmospheric,1404495543 +156725,3703,cars,1404495547 +156725,3703,dystopia,1404495524 +156725,3703,heroism,1404495538 +156725,3703,lone hero,1404495535 +156725,3703,Mel Gibson,1404495530 +156725,3703,Nudity (Topless),1404495526 +156725,3703,Post apocalyptic,1404495531 +156725,3703,post-apocalyptic,1404495527 +156725,3704,cars with weapons,1406736625 +156725,3704,cult of persona,1406736617 +156725,3704,lone hero,1406736622 +156725,3704,Mel Gibson,1406736612 +156725,3704,Post apocalyptic,1406736613 +156725,3847,B-movie,1352119418 +156725,3847,nazis,1352119410 +156725,3847,over the top,1352119408 +156725,3932,lust for power,1331766079 +156725,3932,mad scientist,1331766066 +156725,3932,Universal monsters,1331766069 +156725,4085,comedy,1439121111 +156725,4085,detective,1439121106 +156725,4085,funny,1439121108 +156725,4159,Elvis iconography,1331518913 +156725,4159,Kurt Russell,1331518900 +156725,4159,not to be taken seriously,1331518910 +156725,4226,complicated,1330256979 +156725,4226,memory,1330256975 +156725,4226,nonlinear,1330256968 +156725,4226,psychology,1330256972 +156725,4226,twist ending,1330256973 +156725,4262,action,1331597454 +156725,4262,Al Pacino,1331597431 +156725,4262,atmospheric,1331597459 +156725,4262,corruption,1331597462 +156725,4262,crime,1331597457 +156725,4262,drugs,1331597433 +156725,4262,Michelle Pfeiffer,1331597449 +156725,4262,violence,1331597437 +156725,4327,Charles Bronson,1392070537 +156725,4327,gunfight,1392070555 +156725,4327,James Coburn,1392070539 +156725,4327,Steve McQueen,1392070533 +156725,4327,western,1392070569 +156725,4327,Yul Brynner,1392070549 +156725,4437,atmospheric,1332473933 +156725,4437,Dario Argento,1332473930 +156725,4437,dreamlike,1332473931 +156725,4437,stylized,1332473935 +156725,4533,brains!,1358788470 +156725,4533,cult film,1358788480 +156725,4533,humorous,1358788483 +156725,4533,satirical,1358788476 +156725,4533,zombies,1358788473 +156725,4552,but this is a bit thick.,1332473853 +156725,4552,cyberpunk,1332473856 +156725,4552,grainy,1332473858 +156725,4658,atmospheric,1358788847 +156725,4658,stylized,1358788855 +156725,4662,hillarious,1333457021 +156725,4734,cult film,1331766324 +156725,4734,jay and silent bob,1331766316 +156725,4734,Kevin Smith,1331766309 +156725,4734,multiple roles,1331766327 +156725,4734,view askew,1331766311 +156725,4845,Zach Galifianakis,1331519171 +156725,4881,Billy Bob Thornton,1364516717 +156725,4881,black and white,1364516720 +156725,4881,Coen Brothers,1364516697 +156725,4881,James Gandolfini,1364516706 +156725,4890,Jack Black,1332475707 +156725,4898,Steve Martin,1424714998 +156725,4899,black comedy,1331519032 +156725,4899,Martin Lawrence,1331519036 +156725,4979,pretentious,1442538865 +156725,4979,Wes Anderson,1442538869 +156725,5004,Birdie num nums,1333457067 +156725,5004,Blake Edwards,1333457079 +156725,5004,comedy,1333457084 +156725,5004,must see!,1333457077 +156725,5004,peter sellers,1333457071 +156725,5021,alec guiness,1333457209 +156725,5021,genre spoof?,1333457191 +156725,5021,Peter Sellers,1333457224 +156725,5093,Arnold Schwarzenegger,1404738222 +156725,5093,revenge,1404738225 +156725,5159,environmental,1359526011 +156725,5159,Robin Williams,1359526014 +156725,5159,Tim Curry,1359526019 +156725,5219,Paul W.S. Anderson,1357183223 +156725,5225,beautiful,1332474711 +156725,5225,bittersweet,1332474709 +156725,5225,comedy,1332474702 +156725,5225,drama,1332474705 +156725,5225,erotic,1332474707 +156725,5225,humorous,1332474716 +156725,5225,witty,1332474700 +156725,5378,alien,1450219184 +156725,5378,aliens,1450219186 +156725,5378,complex script,1450219174 +156725,5378,Ewan McGregor,1450219168 +156725,5378,fantasy,1450219179 +156725,5378,franchise,1450219161 +156725,5378,futuristic,1450219170 +156725,5378,George Lucas,1450219154 +156725,5378,Hayden Christensen,1450219166 +156725,5378,mystic warriors,1450219182 +156725,5378,Natalie Portman,1450219155 +156725,5378,robots,1450219158 +156725,5378,romance,1450219188 +156725,5378,Samuel L. Jackson,1450219157 +156725,5378,sci-fi,1450219149 +156725,5378,sequel,1450219160 +156725,5378,space,1450219152 +156725,5378,space opera,1450219171 +156725,5378,Star Wars,1450219151 +156725,5378,starship pilots,1450219178 +156725,5387,crappy movie,1331678066 +156725,5387,jennifer lopez,1331678033 +156725,5388,Al Pacino,1346880089 +156725,5388,atmospheric,1346880097 +156725,5388,Christopher Nolan,1346880106 +156725,5388,insomnia,1346880094 +156725,5388,Robin Williams,1346880092 +156725,5501,better as a child,1331519110 +156725,5628,action,1332473455 +156725,5628,comedy,1332473452 +156725,5628,Jean Reno,1332473448 +156725,5653,cathartic,1358470323 +156725,5653,gritty,1358470318 +156725,5653,quirky,1358470313 +156725,5653,Spaghetti Western,1358470305 +156725,5653,tense,1358470310 +156725,5796,james bond,1333457260 +156725,5796,Orson Welles,1333457257 +156725,5796,parody,1333457252 +156725,5796,Peter Sellers,1333457249 +156725,5796,Woody Allen,1333457246 +156725,5891,disturbing,1352119353 +156725,5891,grim,1352119341 +156725,5891,gritty,1352119343 +156725,5891,revenge,1352119330 +156725,5891,tense,1352119349 +156725,6157,Action,1332806097 +156725,6157,Ben Affleck,1332806094 +156725,6157,Colin Farrell,1332806108 +156725,6157,comic book,1448315397 +156725,6157,dark,1332806100 +156725,6157,dark hero,1448315388 +156725,6157,Jennifer Garner,1448315395 +156725,6157,Kevin Smith,1332806090 +156725,6157,Marvel,1332806088 +156725,6157,Michael Clarke Duncan,1332806086 +156725,6157,superhero,1332806083 +156725,6214,brutal,1332474447 +156725,6214,disturbing,1332474432 +156725,6214,Monica Bellucci,1332474438 +156725,6214,reverse timeline,1332474434 +156725,6281,bad acting,1353039505 +156725,6281,Colin Farrell,1353039516 +156725,6281,dialogue driven,1353039524 +156725,6281,Forest Whitaker,1353039529 +156725,6281,interesting,1353039520 +156725,6281,Joel Schumacher,1353039499 +156725,6281,Kiefer Sutherland,1353039493 +156725,6281,unrealistic,1353039513 +156725,6323,John Cusack,1339371891 +156725,6323,multiple storylines,1339371900 +156725,6323,psychology,1339371893 +156725,6323,suspense,1339371894 +156725,6323,thriller,1339371916 +156725,6323,twist ending,1339371896 +156725,6428,Clint Eastwood,1391925249 +156725,6428,Don Siegel,1391925253 +156725,6428,Ennio Morricone,1391925244 +156725,6666,hallucinatory,1332736158 +156725,6666,Luis Buñuel,1332736153 +156725,6666,Luis Bunuel,1332736148 +156725,6666,satirical,1332736144 +156725,6666,surreal,1332736145 +156725,6707,bloody,1332101784 +156725,6707,Eli Roth,1332101780 +156725,6707,gore,1332101793 +156725,6707,gruesome,1332101788 +156725,6709,action,1332100851 +156725,6709,Antonio Banderas,1332100841 +156725,6709,choreographic violence,1332100848 +156725,6709,Danny Trejo,1332100845 +156725,6709,Johnny Depp,1332100828 +156725,6709,Mickey Rourke,1332100836 +156725,6709,Robert Rodriguez,1332100833 +156725,6709,Salma Hayek,1332100838 +156725,6731,claustrophobic,1358788506 +156725,6731,George A. Romero,1358788504 +156725,6731,gore,1358788508 +156725,6731,Gore Effects,1358788518 +156725,6731,horror,1358788512 +156725,6731,zombie,1358788521 +156725,6731,zombies,1358788502 +156725,6755,B-movie,1330444522 +156725,6755,Bruce Campbell,1330444495 +156725,6755,comedy,1330444533 +156725,6755,cult film,1330444518 +156725,6755,elvis,1330444510 +156725,6755,Elvis iconography,1330444497 +156725,6755,great soundtrack,1330444531 +156725,6755,mummy,1330444527 +156725,6755,Underrated,1330444512 +156725,6774,body horror,1331289057 +156725,6774,creepy,1331289086 +156725,6774,cynical,1331289083 +156725,6774,David Cronenberg,1331289050 +156725,6774,kitsch,1331289064 +156725,6774,silly plot,1331289079 +156725,6774,surreal,1331289071 +156725,6858,boring,1343097102 +156725,6858,directorial debut,1343097082 +156725,6858,low budget,1343097089 +156725,6858,no plot,1343097113 +156725,6858,Roman Polanski,1343097086 +156725,6874,assassin,1331597228 +156725,6874,imdb top 250,1331597244 +156725,6874,Japan,1331597219 +156725,6874,kung fu,1331597226 +156725,6874,nonlinear,1331597233 +156725,6874,Quentin Tarantino,1331597201 +156725,6874,quirky,1331597271 +156725,6874,stylized,1331597205 +156725,6874,Uma Thurman,1331597211 +156725,6874,violence,1331597215 +156725,6874,violent,1331597280 +156725,6874,visually appealing,1331597209 +156725,6880,graphic violence,1332102212 +156725,6880,serial killer,1332102225 +156725,6880,violence,1332102216 +156725,6909,atmospheric,1332102439 +156725,6975,breaking the fourth wall,1332474254 +156725,6975,dark humor,1332474259 +156725,6975,dialogue driven,1332474274 +156725,6975,disturbing,1332474249 +156725,6975,long takes,1332474266 +156725,6975,Michael Haneke,1332474251 +156725,6975,remote control,1332474271 +156725,6975,scary music,1332474262 +156725,7007,Bruce Willis,1407982767 +156725,7007,cool dialogues,1407982773 +156725,7008,controversial,1332474665 +156725,7008,disturbing,1332474670 +156725,7008,film within a film,1332474686 +156725,7008,HAUNTED BY THE PAST,1332474683 +156725,7008,marlon brando,1332474673 +156725,7022,brutal,1330443933 +156725,7022,controversial,1330443906 +156725,7022,dreams,1330443930 +156725,7022,explosions,1330443927 +156725,7022,hot girls!,1330443942 +156725,7022,martial arts,1330443906 +156725,7022,survival,1330443908 +156725,7022,Takeshi Kitano,1330443910 +156725,7022,violent,1330443916 +156725,7022,weapons,1330443913 +156725,7073,Blake Edwards,1331288909 +156725,7073,Clousseau,1331288912 +156725,7073,Inspector Clouseau (series),1331288899 +156725,7073,Peter Sellers,1331288905 +156725,7115,atmospheric,1332473978 +156725,7115,creepy,1332473982 +156725,7115,creepy singing,1332473987 +156725,7115,Dario Argento,1332473967 +156725,7115,head through glass,1332473972 +156725,7115,stylized,1332473991 +156725,7123,David Cronenberg,1332474744 +156725,7123,dreamlike,1332474740 +156725,7123,drugs,1332474747 +156725,7123,hallucinatory,1332474734 +156725,7147,action,1330189375 +156725,7147,adventure,1330189377 +156725,7147,bittersweet,1330189358 +156725,7147,fantasy,1330189345 +156725,7147,magic,1330189369 +156725,7147,quirky,1330189354 +156725,7147,reflective,1330189387 +156725,7147,romance,1330189380 +156725,7147,surrealism,1330189351 +156725,7147,Tim Burton,1330189363 +156725,7147,twist ending,1330189349 +156725,7149,Comedy,1356836767 +156725,7149,Jack Nicholson,1356836769 +156725,7149,May-December romance,1356836773 +156725,7149,Romance,1356836775 +156725,7150,Farrelly Brothers,1332475677 +156725,7150,Matt Damon,1332475673 +156725,7151,17th century,1363569519 +156725,7151,Colin Firth,1363569503 +156725,7151,emotional,1363569523 +156725,7151,scarlett johansson,1363569500 +156725,7151,visually appealing,1363569506 +156725,7153,adventure,1330256491 +156725,7153,fantasy,1330256484 +156725,7153,fantasy world,1330256488 +156725,7153,high fantasy,1330256498 +156725,7153,multiple storylines,1330256493 +156725,7153,stylized,1330256481 +156725,7265,Bernardo Bertolucci,1339346766 +156725,7265,erotic,1339346771 +156725,7265,eva green,1339346761 +156725,7265,french,1339346763 +156725,7265,michael pitt,1339346776 +156725,7265,NC-17,1339346779 +156725,7265,sexual,1339346757 +156725,7438,action,1356839805 +156725,7438,Quentin Tarantino,1356839815 +156725,7438,quirky,1356839824 +156725,7438,spaghetti western,1356839817 +156725,7438,stylized,1356839811 +156725,7438,violence,1356839819 +156725,7438,visually appealing,1356839822 +156725,7439,better than expected,1332806179 +156725,7439,blood,1332806193 +156725,7439,John Travolta,1332806170 +156725,7439,revenge,1332806173 +156725,7439,senseless violence,1332806165 +156725,7439,superhero,1332806159 +156725,7439,Thomas Jane,1332806167 +156725,7439,violence,1332806190 +156725,7448,Christopher Walken,1331519135 +156725,7448,Jack Black,1331519128 +156725,7618,based on a true story,1330466631 +156725,7618,Biography,1330466601 +156725,7618,Charlie Chaplin,1330466619 +156725,7618,movie business,1330466806 +156725,7618,Robert Downey Jr,1330466612 +156725,7618,Robert Downey Jr.,1330466615 +156725,7618,topic:Charlie Chaplin,1330466641 +156725,8225,horror,1358788644 +156725,8225,remake,1358788640 +156725,8225,suspense,1358788648 +156725,8225,Tom Savini,1358788636 +156725,8225,zombies,1358788635 +156725,8371,bad plot,1381450425 +156725,8371,David Twohy,1381450429 +156725,8371,lame sequel,1381450406 +156725,8371,sci-fi,1381450417 +156725,8371,shallow plot,1381450411 +156725,8371,unnecessary effects,1381450450 +156725,8371,Vin Diesel,1381450420 +156725,8373,Matthew Broderick,1333492601 +156725,8373,Nicole Kidman,1333492596 +156725,8528,Ben Stiller,1331766478 +156725,8528,hilarious,1331766471 +156725,8528,Idiotic,1331766491 +156725,8528,Vince Vaughn,1331766483 +156725,8533,predictable,1356836687 +156725,8533,Rachel McAdams,1356836677 +156725,8533,Romance,1356836703 +156725,8533,sad,1356836680 +156725,8533,sentimental,1356836683 +156725,8666,bad acting,1332806244 +156725,8666,bad plot,1332806249 +156725,8666,she's not catwoman,1332806235 +156725,8874,black comedy,1355789028 +156725,8874,british comedy,1355789041 +156725,8874,satire,1355789039 +156725,8874,Simon Pegg,1355789029 +156725,8874,spoof,1355789034 +156725,8874,violent,1355789036 +156725,8874,zombies,1355789032 +156725,8914,a good waste of 1 hour,1355191348 +156725,8914,bad science,1355191227 +156725,8914,Complicated,1355191199 +156725,8914,low budget,1355191208 +156725,8914,plot holes,1355191202 +156725,8914,uncomprehensive screenplay and plot,1355191265 +156725,8957,clever,1330189055 +156725,8957,Disturbing,1330188994 +156725,8957,gore,1330189076 +156725,8957,original,1330189058 +156725,8957,serial killer,1330189073 +156725,8957,surprise ending,1330189064 +156725,8957,suspense,1330189060 +156725,8957,twist ending,1330189045 +156725,8959,Nicole Kidman,1333491685 +156725,9010,beautiful color,1331289472 +156725,9010,cruel characters,1331289488 +156725,9010,ending,1331289528 +156725,9010,excellent cinematography,1331289484 +156725,9010,fantastical imagery,1331289479 +156725,9010,French,1331289497 +156725,9010,Marion Cotillard,1331289475 +156725,9010,sad ending,1331289517 +156725,25771,classic,1332736110 +156725,25771,experimental,1332736096 +156725,25771,Luis Buñuel,1332736087 +156725,25771,mindfuck,1332736123 +156725,25771,surreal,1332736117 +156725,25771,To See,1332736105 +156725,26152,cult film,1332101595 +156725,26152,funny,1332101602 +156725,26152,hilarious,1332101598 +156725,26152,super-hero,1332101607 +156725,26875,Gerard Depardieu,1354155085 +156725,26875,Roman Polanski,1354155089 +156725,26875,twist ending,1354155092 +156725,27004,horror,1358789525 +156725,27004,vampires,1358789531 +156725,27004,western,1358789524 +156725,27134,beautiful effects,1332806338 +156725,27134,Gerard Depardieu,1332806314 +156725,27155,batman,1332101508 +156725,27155,double life,1332101500 +156725,27155,superhero,1332101501 +156725,27368,french,1351209153 +156725,27478,Sacha Baron Cohen,1332475689 +156725,27592,Chan-wook Park,1330187491 +156725,27592,vengeance,1330187495 +156725,27611,androids,1363316444 +156725,27611,military,1363316470 +156725,27611,MILITARY LIFE,1363316436 +156725,27611,political,1363316468 +156725,27611,politics,1363316440 +156725,27611,post-apocalyptic,1363316431 +156725,27611,religion,1363316447 +156725,27611,sci-fi,1363316426 +156725,27611,space,1363316428 +156725,27773,Chan-wook Park,1397035111 +156725,27773,depressing,1397035115 +156725,27773,disturbing,1397035107 +156725,27773,revenge,1397035118 +156725,27773,twist ending,1397035105 +156725,27773,vengeance,1397035119 +156725,27773,violent,1397035121 +156725,27788,Adrien Brody,1442067662 +156725,27788,Keira Knightley,1442067659 +156725,27788,time travel,1442067654 +156725,27790,bittersweet,1360658527 +156725,27790,danny boyle,1360658544 +156725,27790,heartbreaking,1360658534 +156725,27790,heartwarming,1360658536 +156725,27790,inspirational,1360658528 +156725,27790,stylized,1360658530 +156725,27831,british,1332466171 +156725,27831,British gangster,1332466127 +156725,27831,ending,1332466176 +156725,27831,guy ritchie,1332466159 +156725,27831,slow pace,1332466167 +156725,27831,surprise ending,1332466169 +156725,27865,assassin,1332735966 +156725,27865,female warriors,1332735960 +156725,27865,teenage girl,1332735962 +156725,30803,silent,1442538730 +156725,30803,very little dialogue,1442538738 +156725,30816,Andrew Lloyd Webber,1332475525 +156725,30816,Gerard Butler,1332475514 +156725,30816,Joel Schumacher,1332475529 +156725,30816,visually appealing,1332475519 +156725,31162,biographical,1339346792 +156725,31162,peter sellers,1339346788 +156725,31221,comic book,1332805970 +156725,31221,Frank Miller,1332805958 +156725,31221,heroine in tight suit,1332805964 +156725,31221,plot,1332805981 +156725,31660,steampunk,1332200803 +156725,31804,alternate reality,1332475042 +156725,31804,Dynamic CGI Action,1332475048 +156725,31804,great cinematography,1332475039 +156725,32587,Action,1332101324 +156725,32587,atmospheric,1332101322 +156725,32587,based on comic,1332101329 +156725,32587,black comedy,1332101331 +156725,32587,Bruce Willis,1332101333 +156725,32587,comic book,1332101334 +156725,32587,Mickey Rourke,1332101362 +156725,32587,multiple storylines,1332101339 +156725,32587,Quentin Tarantino,1332101342 +156725,32587,stylized,1332101344 +156725,32587,violence,1332101349 +156725,33162,Orlando Bloom,1332473345 +156725,33162,Ridley Scott,1332473347 +156725,33164,SEE PARIS DIE!,1332102468 +156725,33437,Jet Li,1331518681 +156725,33437,Morgan Freeman,1331518678 +156725,33437,psychology,1331518673 +156725,33437,Sexualized violence,1331518689 +156725,33493,dark,1330256514 +156725,33493,Ewan McGregor,1330256512 +156725,33493,George Lucas,1450219137 +156725,33493,good versus evil,1330256524 +156725,33493,great soundtrack,1450217371 +156725,33493,Natalie Portman,1330256510 +156725,33493,no happy ending,1450219132 +156725,33493,robots,1450217371 +156725,33493,Samuel L. Jackson,1330256526 +156725,33493,sci-fi,1450217370 +156725,33493,sequel,1330256521 +156725,33493,space,1330256517 +156725,33493,space opera,1450219139 +156725,33493,Star Wars,1330256520 +156725,33499,Jennifer Lopez,1332476451 +156725,33836,bad,1333492560 +156725,33836,had potential but imploded,1333492557 +156725,33836,Nicole Kidman,1333492564 +156725,34048,action,1332736476 +156725,34048,cliche,1332736471 +156725,34048,overrated,1332736465 +156725,34048,remake,1332736463 +156725,34048,sci-fi,1332736479 +156725,34048,Special Effects,1332736458 +156725,34048,Steven Spielberg,1332736451 +156725,34048,terrible ending,1332736453 +156725,34048,Tom Cruise,1332736449 +156725,34405,action,1331765368 +156725,34405,black comedy,1331765371 +156725,34405,cult film,1331765363 +156725,34405,dystopia,1331765349 +156725,34405,funny,1331765360 +156725,34405,joss whedon,1331765389 +156725,34405,Nathan Fillion,1331765399 +156725,34405,quirky,1331765353 +156725,34405,witty,1331765356 +156725,35957,Cillian Murphy,1441311030 +156725,35957,Rachel McAdams,1441310817 +156725,35957,suspense,1441310822 +156725,36519,Good action,1332806532 +156725,36519,Jason Statham,1332806536 +156725,36519,violence,1332806539 +156725,37731,Elijah Wood,1332100570 +156725,37731,extremely violent,1332100567 +156725,37731,gang brawls,1332100565 +156725,37731,senseless violence,1332100581 +156725,37731,weak plot,1332100574 +156725,37733,complex characters,1331290022 +156725,37733,David Cronenberg,1331290013 +156725,37733,graphic violence,1331290017 +156725,37733,Viggo Mortensen,1331289997 +156725,37733,Violence,1331290010 +156725,38886,pretentious,1442539048 +156725,39381,Australian History,1332100225 +156725,39381,Gritty,1332100221 +156725,39381,Guy Pearce,1332100206 +156725,39381,John Hurt,1332100218 +156725,39381,nick cave,1332100209 +156725,39381,Violent,1332100216 +156725,39869,Lars von Trier,1332474804 +156725,39869,racism,1332474812 +156725,39869,stylish,1332474808 +156725,39869,thought-provoking,1332474815 +156725,41285,boring,1330192115 +156725,41285,London,1330192140 +156725,41285,slow,1330192111 +156725,41285,tennis,1330192127 +156725,41285,twist,1330192129 +156725,41285,Woody Allen,1330192102 +156725,42723,brutal,1331289893 +156725,42723,controversial,1331289888 +156725,42723,horror,1331289881 +156725,42723,stupid stereotypes,1331289898 +156725,42723,unlikeable characters,1331289871 +156725,42723,violence pornography,1331289868 +156725,43419,Kick-Butt Women,1357183444 +156725,43419,Penelope Cruz,1357183438 +156725,43419,Salma Hayek,1357183431 +156725,43836,Inspector Clouseau (series),1331519088 +156725,43836,More funny than anyone gives it credit for. Do critics not have senses of humour?,1331519099 +156725,43836,remake,1331519076 +156725,44193,Amanda Bynes,1332475947 +156725,44193,cross dressing women,1332475952 +156725,44193,shakespeare,1332475959 +156725,44397,cannibalism,1352119693 +156725,44397,mutation,1352119695 +156725,44397,torture porn,1352119703 +156725,44397,typical horror,1352119699 +156725,44761,dialogue,1355788633 +156725,44761,directorial debut,1355788612 +156725,44761,low budget,1355788625 +156725,44761,Rian Johnson,1355788620 +156725,44761,slow,1355788599 +156725,44828,body horror,1343835805 +156725,44828,campy,1343835809 +156725,44972,stupid,1399073974 +156725,44972,unfunny,1399073975 +156725,45081,atmospheric,1332475295 +156725,45081,blood,1332475302 +156725,45081,disturbing,1332475300 +156725,45081,guilty pleasure,1332475306 +156725,45081,Horror Game,1332475292 +156725,45635,1950s,1339346660 +156725,45635,biographical,1339346690 +156725,45635,Biopic,1339346654 +156725,45635,christianity,1339346658 +156725,45635,nostalgic,1339346681 +156725,45635,sexual,1339346668 +156725,45635,stylized,1339346674 +156725,45635,true story,1339346671 +156725,45662,alright remake,1332102247 +156725,45662,antichrist,1332102243 +156725,45662,just like the first one,1332102251 +156725,45666,better than expected,1332475657 +156725,45666,Jack Black,1332475651 +156725,46970,Will Ferrell,1434070435 +156725,47610,19th century,1408621116 +156725,47610,Edward Norton,1408621099 +156725,47610,stage magic,1408621105 +156725,47610,twist ending,1408621110 +156725,48082,can't identify with hero,1442538773 +156725,48082,Gael García Bernal,1442538671 +156725,48082,pretentious,1369715746 +156725,49274,Antarctica,1333492580 +156725,49274,penguins,1333492587 +156725,49274,Robin Williams,1333492585 +156725,50003,B-movie,1332101089 +156725,50003,hot girls!,1332101097 +156725,50003,martial arts,1332101110 +156725,50003,stupid but funny,1332101091 +156725,50003,video game adaptation,1332101094 +156725,50601,AnnaSophia Robb,1385308623 +156725,50601,movie to see,1385308638 +156725,50601,sad,1385308633 +156725,50601,teen relationships,1385308629 +156725,50601,Zooey Deschanel,1385308626 +156725,50954,body exchange,1332475855 +156725,51091,atmospheric,1339346873 +156725,51091,Christina Ricci,1339346871 +156725,51091,Justin Timberlake,1339346889 +156725,51091,lurid,1339346883 +156725,51091,REDEMPTION,1339346894 +156725,51091,Samuel L. Jackson,1339346879 +156725,51091,sensual,1339346895 +156725,51255,action,1355788981 +156725,51255,action spoof,1355788977 +156725,51255,black comedy,1355788983 +156725,51255,British,1355789002 +156725,51255,british comedy,1355788975 +156725,51255,dark comedy,1355789006 +156725,51255,funny,1355789009 +156725,51255,Simon Pegg,1355788991 +156725,51255,violence,1355788997 +156725,51939,animation,1332101528 +156725,51939,tmnt,1332101536 +156725,52281,2 movies in 1,1332100861 +156725,52281,Edgar Wright,1332100866 +156725,52281,Gore,1332100872 +156725,52281,Kurt Russell,1332100862 +156725,52281,murder,1332100886 +156725,52281,Quentin Tarantino,1332100869 +156725,52281,Sci-fi,1332100884 +156725,52281,serial killer,1332100875 +156725,52281,Tarantino,1332100880 +156725,52281,violence,1332100882 +156725,52281,zombies,1332100877 +156725,52694,cute,1332475590 +156725,52694,funny,1332475593 +156725,52694,Rowan Atkinson,1332475601 +156725,52694,Willem Dafoe,1332475596 +156725,53129,Kevin Costner,1445118265 +156725,53129,plot twist,1445118262 +156725,53129,serial killer,1445118275 +156725,53435,bad script,1352119529 +156725,53435,disturbing,1352119510 +156725,53435,Eli Roth,1352119492 +156725,53435,genital mutilation,1352119507 +156725,53435,shocking,1352119504 +156725,53464,bad acting,1332806036 +156725,53464,bad jokes,1332806031 +156725,53464,bad plot,1332806043 +156725,53464,Chris Evans,1332806005 +156725,53464,superheroes,1332806013 +156725,53464,worst sequel to an already bad movie,1332806068 +156725,53519,car chase,1356839839 +156725,53519,great dialogue,1356839843 +156725,53519,great soundtrack,1356839841 +156725,53519,Kick-Butt Women,1356839847 +156725,53519,Kurt Russell,1356839854 +156725,53519,Quentin Tarantino,1356839849 +156725,53519,stylized,1356839851 +156725,54256,Andy Samberg,1331766431 +156725,54256,funny,1331766445 +156725,54256,future cult classic,1331766441 +156725,54259,adventure,1332285826 +156725,54259,british,1332285825 +156725,54259,crude humor,1332285821 +156725,54259,fairy tale,1332285781 +156725,54259,fantasy,1332285776 +156725,54259,pirates,1332285783 +156725,54259,Robert De Niro,1332285777 +156725,54259,romance,1332285817 +156725,54259,visually appealing,1332285785 +156725,54272,animation,1363316760 +156725,54272,Based on a TV show,1363316754 +156725,54272,cameo:Tom Hanks,1363316750 +156725,54272,comedy,1363316753 +156725,54272,father-son relationship,1363316765 +156725,54272,hilarious,1363316780 +156725,54272,humorous,1363316774 +156725,54272,simpsons,1363316777 +156725,54785,Danny Trejo,1352119566 +156725,54785,gave new depth to Michael Mayers,1352119616 +156725,54785,Malcolm McDowell,1352119569 +156725,54785,over the top,1352119572 +156725,54785,remake,1352119580 +156725,54785,slasher,1352119581 +156725,54785,violent,1352119584 +156725,54787,James Wan,1352119728 +156725,54787,John Goodman,1352119718 +156725,54787,Kevin Bacon,1352119722 +156725,54787,revenge,1352119724 +156725,54962,alternate reality,1332475373 +156725,54962,bad plot,1332475356 +156725,54962,multiple storylines,1332475371 +156725,54962,stupid twist,1332475361 +156725,55031,funny,1358787862 +156725,55031,Jason Mewes,1358787859 +156725,55031,Kevin Smith,1358787850 +156725,55031,movie business,1358787858 +156725,55118,atmospheric,1350765026 +156725,55118,direction,1350765126 +156725,55118,father-son relationship,1350765109 +156725,55118,Naomi Watts,1350765053 +156725,55118,Nudity (Full Frontal - Notable),1350765035 +156725,55118,racism,1350765080 +156725,55118,rape,1350765077 +156725,55118,russian,1350765094 +156725,55118,Russian mafia,1350765087 +156725,55118,tense,1350765042 +156725,55118,Viggo Mortensen,1350765024 +156725,55118,violence,1350765060 +156725,55118,violent,1350765057 +156725,55290,Ben Affleck,1444611513 +156725,55290,Casey Affleck,1444611487 +156725,55290,conspiracy,1444611506 +156725,55290,detective,1444611509 +156725,55290,kidnapping,1444611503 +156725,55290,morality,1444611494 +156725,55290,Morgan Freeman,1444611496 +156725,55290,mystery,1444611512 +156725,55290,police investigation,1444611507 +156725,55363,boring,1391924233 +156725,55363,Brad Pitt,1391924236 +156725,55363,Casey Affleck,1391924244 +156725,55363,Sam Rockwell,1391924241 +156725,55363,tense,1391924255 +156725,55363,western,1391924258 +156725,55553,sheep zombies,1358788455 +156725,55553,Zombies,1358788457 +156725,55820,great acting,1330187517 +156725,55908,dialogue driven,1353547618 +156725,55908,Excellent use of dialogue,1353547622 +156725,56145,apocalypse,1409789697 +156725,56145,atmospheric,1409789699 +156725,56145,monster,1409789703 +156725,56145,social commentary,1409789711 +156725,56145,stephen king,1409789705 +156725,56145,Survival,1409789709 +156725,56145,twist ending,1409789714 +156725,56156,bad acting,1332100986 +156725,56156,bad screenplay,1332100963 +156725,56156,direction,1332100981 +156725,56156,flat characters,1332100975 +156725,56156,Timothy Olyphant,1332100912 +156725,56156,video game adaptation,1332100917 +156725,56805,funny,1442705825 +156725,56805,parody,1442705807 +156725,57504,Anime,1341086504 +156725,57504,drama,1341086516 +156725,57504,heartwarming,1341086503 +156725,57504,japanese,1341086510 +156725,57504,original,1341086511 +156725,57504,time travel,1341086497 +156725,57640,based on a comic,1332809255 +156725,57640,beautiful effects,1332809244 +156725,57640,better than the first,1332809268 +156725,57640,Guillermo del Toro,1332809247 +156725,57640,superhero,1332809251 +156725,57951,Matthew McConaughey,1331678119 +156725,58301,dark humor,1332474348 +156725,58301,forth wall,1332474342 +156725,58301,long takes,1332474341 +156725,58301,Michael Haneke,1332474320 +156725,58301,Michael Pitt,1332474338 +156725,58301,Naomi Watts,1332474327 +156725,58301,remake,1332474353 +156725,58301,Tim Roth,1332474331 +156725,58301,Torture,1332474335 +156725,58332,George A. Romero,1335300503 +156725,58332,hilarious,1335300511 +156725,58332,zombies,1335300506 +156725,59022,george bush smoking pot,1331766697 +156725,59022,kal penn,1331766709 +156725,59022,Neil Patrick Harris,1331766698 +156725,59022,Unrated,1331766705 +156725,59037,Christina Ricci,1356838977 +156725,59037,Emile Hirsch,1356838975 +156725,59037,visually stunning,1356838964 +156725,59037,Wachowski brothers,1356838981 +156725,59256,Ewan McGregor,1343482533 +156725,59256,Hugh Jackman,1343482534 +156725,59256,twist,1343482531 +156725,59315,android(s)/cyborg(s),1330256359 +156725,59315,based on a comic,1330256357 +156725,59315,comic book,1330256355 +156725,59315,funny,1330256361 +156725,59315,Robert Downey Jr.,1330256346 +156725,59315,sci-fi,1330256352 +156725,59315,superhero,1330256348 +156725,59315,vigilante,1330256350 +156725,59369,action,1352242119 +156725,59369,action packed,1352242123 +156725,59369,cynical,1352242140 +156725,59369,fight scenes,1352242133 +156725,59369,hard-line action,1352242158 +156725,59369,Liam Neeson,1352242128 +156725,59369,one liners,1352242152 +156725,59369,revenge,1352242130 +156725,59369,torture,1352242144 +156725,60522,gore,1352119452 +156725,60522,ridiculous,1352119449 +156725,60522,to see: b-grade,1352119446 +156725,60684,alternate reality,1330187731 +156725,60684,cinematography,1330187736 +156725,60684,comic book,1330187718 +156725,60684,dystopia,1330187734 +156725,60684,great soundtrack,1330187729 +156725,60684,social commentary,1330187725 +156725,60684,stylized,1330187721 +156725,60684,superhero,1330187723 +156725,60684,vigilantism,1330187741 +156725,60832,Everything,1332475318 +156725,60832,Nudity (Topless),1332475327 +156725,60832,story,1332475320 +156725,60832,twists & turns,1332475322 +156725,60950,Scarlett Johansson,1330254473 +156725,60950,Woody Allen,1330254471 +156725,60979,anime,1332101473 +156725,60979,Batman,1332101478 +156725,60979,good animation,1332101482 +156725,60979,vigilante,1332101485 +156725,61160,No John Williams music,1394754162 +156725,61160,shallow,1394754168 +156725,61248,cars with weapons,1332101204 +156725,61248,good action,1332101200 +156725,61248,good stunts,1332101199 +156725,61248,Jason Statham,1332101193 +156725,61248,video game like,1332101196 +156725,61250,Anna Faris,1332475802 +156725,61250,Emma Stone,1332475809 +156725,61250,geek sorority,1332475806 +156725,61394,Non sequitur,1331766637 +156725,61394,parody,1331766654 +156725,61394,repeated use of shots,1331766634 +156725,61394,social commentary,1331766645 +156725,61394,Steven Seagal as Cock Puncher,1331766647 +156725,61401,based on a comic,1356838703 +156725,61401,Characters lack depth,1356838699 +156725,61401,Frank Miller,1356838706 +156725,61401,Samuel L. Jackson,1356838692 +156725,61401,Scarlett Johansson,1356838690 +156725,61401,stylish,1356838688 +156725,61401,stylized,1356838681 +156725,61401,superhero,1356838683 +156725,62113,Jeff Bridges,1332476418 +156725,62113,Megan Fox,1332476415 +156725,62113,Simon Pegg,1332476409 +156725,62203,bloody,1332474232 +156725,62203,ending,1332474234 +156725,62203,extremely violent,1332474212 +156725,62203,plot twist,1332474229 +156725,62203,shocking,1332474222 +156725,62203,torture,1332474217 +156725,62336,anime,1331290109 +156725,62336,mecha,1331290116 +156725,62336,rock and roll,1331290111 +156725,62394,awful screenplay,1332101035 +156725,62394,bad acting,1332101040 +156725,62394,based on a computer game,1332101021 +156725,62394,Script,1332101011 +156725,62394,video game adaptation,1332101014 +156725,62437,Oliver Stone,1445103227 +156725,62733,"""found footage""",1358788751 +156725,62733,remake,1358788757 +156725,62733,zombies,1358788760 +156725,63082,nonlinear,1360658651 +156725,63082,soundtrack,1360658672 +156725,63082,storry,1360658660 +156725,63131,comedy,1331766389 +156725,63131,funny,1331766417 +156725,63131,geeks,1331766415 +156725,63131,Kiss,1331766404 +156725,63131,obvious plot,1331766411 +156725,63131,silly,1331766399 +156725,63131,unfunny,1331766396 +156725,63393,cheesy,1358789782 +156725,63393,jonas brothers,1358789797 +156725,63393,lame,1358789786 +156725,64030,action,1332806498 +156725,64030,Jason Statham,1332806501 +156725,64030,stupid,1332806506 +156725,64575,great acting,1446608158 +156725,64575,Meryl Streep,1446608150 +156725,64575,moral ambiguity,1446608157 +156725,64575,Philip Seymour Hoffman,1446608148 +156725,64622,coming of age,1332100292 +156725,64622,flashbacks,1332100296 +156725,64622,Kate Winslet,1332100286 +156725,64622,nazi germany,1332100287 +156725,65514,Donnie Yen,1331289741 +156725,65514,kung fu,1331289746 +156725,65514,martial arts,1331289751 +156725,65514,slow motion scenes,1331289753 +156725,65601,bad twist ending,1332101703 +156725,65601,stupid,1332101694 +156725,65642,no ending,1355191498 +156725,65642,not believable,1355191499 +156725,65642,Not enough complicated,1355191511 +156725,65642,paradox,1355191547 +156725,65642,Spanish,1355191585 +156725,65642,time travel,1355191543 +156725,66934,anti-hero,1332100170 +156725,66934,comedy,1332100177 +156725,66934,good dialogue,1332100177 +156725,67923,Jordana Brewster,1388794177 +156725,67923,Paul Walker,1388794173 +156725,67923,Vin Diesel,1388794167 +156725,68157,assassination,1339974327 +156725,68157,black comedy,1339974307 +156725,68157,Brad Pitt,1339974311 +156725,68157,dark comedy,1339974314 +156725,68157,gore,1339974333 +156725,68157,Oscar (Best Supporting Actor),1339974317 +156725,68157,Paris,1339974341 +156725,68157,Quentin Tarantino,1339974303 +156725,68157,satire,1339974294 +156725,68157,tense,1339974321 +156725,68157,violence,1339974299 +156725,68157,visually appealing,1339974292 +156725,68157,World War II,1339974295 +156725,68237,artificial intelligence,1339537544 +156725,68237,claustrophobic,1339537563 +156725,68237,dialogue driven,1339537549 +156725,68237,Kevin Spacey,1339537541 +156725,68237,psychology,1339537536 +156725,68237,Sci-fi,1339537532 +156725,68237,space,1339537534 +156725,68358,action,1372823648 +156725,68358,adventure,1372823646 +156725,68358,sci-fi,1372823635 +156725,68358,space,1372823639 +156725,68358,Star Trek,1372823720 +156725,68358,time travel,1372823644 +156725,68519,charmless,1331677577 +156725,68519,crappy sequel,1331677566 +156725,68519,dull characters,1331677562 +156725,68659,Jason Mewes,1332806636 +156725,68659,Kevin Smith,1332806639 +156725,68659,pop culture references,1332806648 +156725,68659,Seth Rogen,1332806645 +156725,68659,star wars,1332806643 +156725,68941,Dennis Iliadis,1333403964 +156725,68941,funny as hell,1333403986 +156725,68941,Hand in the garberator,1333403949 +156725,68941,remake,1333403968 +156725,68941,revenge,1333403943 +156725,68941,splatter,1333403961 +156725,68945,uncomprehensive screenplay and plot,1359527418 +156725,69134,atmospheric,1332474486 +156725,69134,beautiful scenery,1332474480 +156725,69134,cinematography,1332474477 +156725,69134,disturbing,1332474497 +156725,69134,Lars von Trier,1332474472 +156725,69134,psychology,1332474492 +156725,69134,weird,1332474495 +156725,69436,Jack Black,1332476563 +156725,69436,Michael Cera,1332476570 +156725,69436,Paul Rudd,1332476573 +156725,69481,action,1330190450 +156725,69481,Iraq War,1330190392 +156725,69481,Kathryn Bigelow,1436144740 +156725,69481,Middle East,1330190394 +156725,69481,Oscar (Best Directing),1330190456 +156725,69481,Oscar (Best Picture),1330190402 +156725,69481,Oscar (Best Screenplay),1330190465 +156725,69481,Oscar (Best Sound),1330190468 +156725,69481,propaganda,1330190400 +156725,69481,War,1330190397 +156725,70305,AnnaSophia Robb,1385519168 +156725,70305,Dwayne Johnson,1385519170 +156725,70599,Rachel McAdams,1378437635 +156725,70599,time travel,1378437639 +156725,70728,prison,1332473472 +156725,70728,Tom Hardy,1332473465 +156725,71033,Argentina,1344168980 +156725,71033,cinematography,1344169034 +156725,71033,foreign language,1344169037 +156725,71033,romance,1344168987 +156725,71033,weak ending,1344169073 +156725,71135,amnesia,1403136349 +156725,71135,atmospheric,1403136356 +156725,71135,horror,1403136345 +156725,71135,mental illness,1403136350 +156725,71135,orcs,1403136321 +156725,71135,post-apocalyptic,1403136334 +156725,71135,sci-fi,1403136336 +156725,71135,space,1403136364 +156725,71135,space travel,1403136359 +156725,72165,John C Reilly,1357478102 +156725,72165,Salma Hayek,1357478111 +156725,72226,Jason Schwartzman,1442538945 +156725,72226,pretentious,1442538964 +156725,72226,Roald Dahl,1442538955 +156725,72226,Wes Anderson,1442538947 +156725,72489,between fantastic & realistic,1332735925 +156725,72489,blood,1332735911 +156725,72489,extremely gory,1332735902 +156725,72489,martial arts,1332735905 +156725,72489,not intense enough,1332735931 +156725,72489,plot,1332735914 +156725,72489,stylized violence,1332735908 +156725,72720,beautiful cinematography,1352150199 +156725,72720,Colin Firth,1352150192 +156725,72720,styling,1352150220 +156725,72720,twist ending,1352150195 +156725,73000,Daniel Day-Lewis,1332475403 +156725,73268,dystopia,1332474868 +156725,73268,Ethan Hawke,1332474865 +156725,73268,Willem Dafoe,1332474872 +156725,73804,cameos,1351209267 +156725,73804,French,1351209246 +156725,73804,Gerard Depardieu,1351209256 +156725,73804,Michael Schumacher,1351209259 +156725,74452,Anthony Hopkins,1332101675 +156725,74452,bad ending,1332101654 +156725,74452,Bad remake,1332101655 +156725,74452,beautiful color,1332101664 +156725,74452,Benicio Del Toro,1332101661 +156725,74452,excellent graphics,1332101667 +156725,74452,Hugo Weaving,1332101671 +156725,74452,moody atmosphere,1332101669 +156725,74452,predictable,1332101646 +156725,74452,stupid,1332101650 +156725,74452,stupid twist,1332101652 +156725,74458,atmospheric,1330256885 +156725,74458,insanity,1330256883 +156725,74458,Leonardo DiCaprio,1330256874 +156725,74458,Martin Scorsese,1330256893 +156725,74458,plot twist,1330256880 +156725,74458,twist ending,1330256888 +156725,74458,twisted ending,1330256889 +156725,74471,Bad direction,1350407950 +156725,74471,terrible acting,1350406650 +156725,74545,assassination,1343097162 +156725,74545,ending,1343097003 +156725,74545,espionage,1343096983 +156725,74545,Ewan McGregor,1343096974 +156725,74545,Pierce Brosnan,1343096977 +156725,74545,Roman Polanski,1343096987 +156725,74545,slow,1343096979 +156725,74545,suspense,1343096999 +156725,74868,Ben Barnes,1357478565 +156725,75425,George A. Romero,1358788805 +156725,75425,weak characters,1358788813 +156725,75425,zombies,1358788808 +156725,76077,John Cusack,1345909783 +156725,76077,time travel,1345909785 +156725,76175,action,1342010093 +156725,76175,Special Effects,1342010090 +156725,76251,action,1330190124 +156725,76251,adapted from:comic,1330190121 +156725,76251,comic book,1330190117 +156725,76251,gore,1330190144 +156725,76251,great soundtrack,1330190114 +156725,76251,hilarious,1330190128 +156725,76251,humorous,1330189527 +156725,76251,Nicolas Cage,1330190132 +156725,76251,quirky,1330189753 +156725,76251,satire,1330190140 +156725,76251,stylized,1330189533 +156725,76251,superhero,1330189528 +156725,76251,suspense,1330190134 +156725,76251,vigilante,1330189531 +156725,76251,violence,1330189749 +156725,76763,rock and roll,1419595911 +156725,77307,cat killing,1332474583 +156725,77307,coming of age,1332474575 +156725,77307,destruction of the nuclear family's model,1332474570 +156725,77307,disturbing,1332474560 +156725,77307,isolation,1332474578 +156725,77307,Rule-making,1332474563 +156725,77364,action,1332805918 +156725,77364,comedy,1332805905 +156725,77364,Jeffrey Dean Morgan,1332805911 +156725,77427,bad acting,1332101842 +156725,77427,body horror,1332101832 +156725,77427,illogical,1332101838 +156725,77427,sick,1332101835 +156725,77427,stupid,1332101837 +156725,77798,dog killing,1332102183 +156725,77798,Freddy Krueger,1332102187 +156725,77798,Jackie Earle Haley,1332102181 +156725,77798,remake,1332102170 +156725,77798,slasher,1332102174 +156725,77866,long,1395896820 +156725,77866,Mark Strong,1395896814 +156725,77866,Russell Crowe,1395896803 +156725,78088,wasted potential,1358790430 +156725,78266,beastiality,1332475116 +156725,78266,genetics,1332475099 +156725,78266,monster,1332475101 +156725,78266,plot,1332475113 +156725,78266,sex scene,1332475122 +156725,78266,sexy,1332475129 +156725,78266,Vincenzo Natali,1363317943 +156725,78266,weak ending,1332475107 +156725,78467,boring,1332805854 +156725,78467,John Malkovich,1332805842 +156725,78467,Josh Brolin,1332805838 +156725,78467,Megan Fox,1332805845 +156725,79091,flat characters,1332099877 +156725,79091,heartwarming,1332099884 +156725,79091,mad scientist,1332099907 +156725,79091,predictable,1332099879 +156725,79091,Steve Carell,1332099905 +156725,79134,Adam Sandler,1407798369 +156725,79134,bad plot,1407798355 +156725,79134,Chris Rock,1407798363 +156725,79134,few funny scenes,1407798347 +156725,79134,No plot at al,1407798355 +156725,79134,Rob Schneider,1407798359 +156725,79224,Eastern philosophy,1395069125 +156725,79224,fight scenes,1395069129 +156725,79224,inspirational,1395069133 +156725,79224,Jackie Chan,1395069111 +156725,79224,Jaden Smith,1395069115 +156725,79224,visually appealing,1395069119 +156725,79251,dark humor,1332474515 +156725,79251,disturbing,1332474522 +156725,79251,incest,1332474538 +156725,79251,twist ending,1332474526 +156725,79251,violence,1332474534 +156725,79274,animation,1332101446 +156725,79274,antihero,1332101453 +156725,79274,Batman,1332101443 +156725,79274,sympathetic villain,1332101449 +156725,79357,beautiful photography,1351544623 +156725,79357,cinematography,1351544570 +156725,79357,direction,1351544634 +156725,79357,nonlinear,1351544564 +156725,79357,too long,1351544696 +156725,79428,climbing the corporate ladder,1331766766 +156725,79428,miniature sets,1331766764 +156725,79428,Paul Rudd,1331766756 +156725,79428,remake,1331766750 +156725,79428,Steve Carell,1331766757 +156725,79428,Zach Galifianakis,1331766759 +156725,79879,3D version,1332101751 +156725,79879,blood,1332101760 +156725,79879,Christopher Lloyd,1332101762 +156725,79879,death/fatality,1332101754 +156725,79879,Eli Roth,1339346624 +156725,79879,genital mutilation,1339346628 +156725,79879,Nudity (Full Frontal),1332101748 +156725,79879,tits,1332101745 +156725,80026,Adapted from: video game,1332101059 +156725,80026,bad acting,1332101072 +156725,80026,bad fights,1332101064 +156725,80026,cheesy bad,1332101056 +156725,80026,predictable,1332101055 +156725,80166,Jason Bateman,1388800593 +156725,80166,Jeff Goldblum,1388800600 +156725,80166,Jennifer Aniston,1388800595 +156725,80166,predictable ending,1388800591 +156725,80219,action,1332100777 +156725,80219,black comedy,1332100768 +156725,80219,dark humor,1332100770 +156725,80219,gore,1332100775 +156725,80219,Robert Rodriguez,1332100758 +156725,80219,stylized,1332100768 +156725,80219,violent,1332100761 +156725,80363,bad plot,1357183138 +156725,80363,clones,1357183132 +156725,80363,Paul W.S. Anderson,1357183149 +156725,80363,physics,1357183142 +156725,80489,action,1331597047 +156725,80489,bank robbery,1331597004 +156725,80489,based on a book,1331597039 +156725,80489,Ben Affleck,1331597010 +156725,80489,Boston,1331597006 +156725,80489,character driven,1331596996 +156725,80489,crime,1331596999 +156725,80489,Direction,1331597030 +156725,80489,father-son relationship,1331597044 +156725,80489,heist,1331597033 +156725,80831,atmospheric,1442537603 +156725,80831,bullying,1442537595 +156725,80831,dark,1442537599 +156725,80831,remake,1442537593 +156725,80831,vampires,1442537597 +156725,81512,anticlimactic,1443281827 +156725,81591,atmospheric,1330256730 +156725,81591,dark,1330256772 +156725,81591,horror,1330256764 +156725,81591,mental illness,1330256760 +156725,81591,Natalie Portman,1330256726 +156725,81591,psychological,1330256756 +156725,81591,thriller,1330256758 +156725,82667,disturbing,1442270023 +156725,82667,revenge,1442270014 +156725,82667,serial killer,1442270019 +156725,82667,torture,1442270016 +156725,82667,visually appealing,1442270021 +156725,84152,Bradley Cooper,1354376135 +156725,84152,entertaining,1354376151 +156725,84152,smart,1354376177 +156725,84152,visually appealing,1354376140 +156725,84189,remake,1352119388 +156725,84189,revenge,1352119382 +156725,84189,torture,1352119383 +156725,84374,cute,1332476391 +156725,84374,Kevin Kline,1332476397 +156725,84374,Natalie Portman,1332476389 +156725,84392,Matthew McConaughey,1417890903 +156725,84414,action,1359929423 +156725,84414,good ending,1359929429 +156725,84414,superman,1359929416 +156725,84944,adult humor,1384924537 +156725,84944,cowboys,1384924539 +156725,84944,desert,1384924541 +156725,84944,spaghetti western,1384924543 +156725,85022,comedy,1332475881 +156725,85022,funny,1332475883 +156725,85022,Owen Wilson,1332475877 +156725,85401,disturbing,1343835861 +156725,85401,Ellen Page,1343835856 +156725,85401,violent,1343835868 +156725,85414,action,1360920312 +156725,85414,colourful,1360920303 +156725,85414,Jake Gyllenhaal,1360920267 +156725,85414,mindfuck,1360920289 +156725,85414,parallel universe,1360920297 +156725,85414,romance,1360920281 +156725,85414,thriller,1360920307 +156725,85414,time loop,1360920277 +156725,85414,time travel,1360920275 +156725,85414,twist ending,1360920271 +156725,85788,boring,1381631027 +156725,85788,cliche,1381631032 +156725,85788,stupid ending,1381631030 +156725,85796,B-movie,1358787833 +156725,85796,Rutger Hauer,1358787837 +156725,86190,beautiful cinematography,1331518598 +156725,86190,Cate Blanchett,1331518604 +156725,86190,great acting,1331518625 +156725,86190,strong female lead,1331518612 +156725,86295,genre spoof,1358788318 +156725,86295,Self-referential,1358788316 +156725,86295,slasher,1358788320 +156725,86295,unpredictable ending,1358788312 +156725,86295,Wes Craven,1358788310 +156725,86295,witty,1358788314 +156725,86644,Dwayne Johnson,1442490583 +156725,86644,Jordana Brewster,1388794209 +156725,86644,Paul Walker,1388794128 +156725,86644,silly,1388794143 +156725,86644,superior sequel,1388794134 +156725,86644,The Rock,1388794137 +156725,86644,unrealistic,1388794140 +156725,86644,Vin Diesel,1388794130 +156725,86781,disturbing,1442537079 +156725,86781,slow,1442537081 +156725,86781,twist ending,1442537086 +156725,86781,Unexpected Ending,1442537078 +156725,87529,boring,1331766786 +156725,87529,dissapointing,1331766788 +156725,87529,james franco,1331766812 +156725,87529,Natalie Portman,1331766800 +156725,88129,feel-bad,1355788738 +156725,88129,ryan gosling,1355788705 +156725,88129,score,1331677256 +156725,88129,tense,1355788720 +156725,88129,violence,1331677302 +156725,88163,comedy,1399575234 +156725,88163,Emma Stone,1399575245 +156725,88163,father daughter relationship,1399575275 +156725,88163,father-son relationship,1399575272 +156725,88163,plot twist,1399575255 +156725,88163,romantic comedy,1399575263 +156725,88163,Ryan Gosling,1399575251 +156725,88163,Steve Carell,1399575257 +156725,88744,authenticity,1330256249 +156725,88744,beautiful,1330256242 +156725,88744,cgi,1330256338 +156725,88744,prequel,1330256236 +156725,88744,realistic,1330256233 +156725,88744,special effects,1330256230 +156725,88744,thought-provoking,1330256244 +156725,88810,based on a book,1443390516 +156725,88810,Emma Stone,1443390510 +156725,88810,great acting,1443390514 +156725,88810,racism,1443390508 +156725,88810,social commentary,1443390512 +156725,88810,Tearjerker,1443390518 +156725,88810,Viola Davis,1443390523 +156725,88954,bad sequel,1359525804 +156725,88954,Buddy Movie,1359525742 +156725,88954,Claymation,1359525756 +156725,88954,friendship,1359525754 +156725,88954,Neil Patrick Harris,1359525746 +156725,88954,not as funny as the previous ones,1359525820 +156725,89118,disturbing,1443281528 +156725,89118,Pedro Almodóvar,1443281523 +156725,89190,brutal,1332805937 +156725,89190,Jason Momoa,1332805940 +156725,89190,too much blood,1332805943 +156725,89343,independent film,1341086677 +156725,89343,Kevin Smith,1341086543 +156725,89343,michael parks,1341086667 +156725,89343,RELIGIOUS ZEALOTRY,1341086549 +156725,89343,shoot out,1341086547 +156725,89470,bad science,1332099639 +156725,89470,boring,1332099664 +156725,89470,disappointing,1332099644 +156725,89470,slow,1332099648 +156725,89470,unrealistic,1332099651 +156725,89492,baseball,1348102033 +156725,89492,Brad Pitt,1348102028 +156725,89492,father daughter relationship,1348102045 +156725,89492,great acting,1348102050 +156725,89492,more intresting for american audiences,1348102169 +156725,89492,Realistic,1348102038 +156725,89492,sad ending,1348102146 +156725,89492,underdog,1348102057 +156725,89745,action,1443054157 +156725,89745,Captain America,1336704564 +156725,89745,Chris Evans,1443054179 +156725,89745,comic book,1335523726 +156725,89745,ensemble cast,1443054171 +156725,89745,excellent cinematography,1443054181 +156725,89745,fast paced,1443054166 +156725,89745,fun,1443054172 +156725,89745,great humor,1335523927 +156725,89745,great screenplay,1335523936 +156725,89745,Gwyneth Paltrow,1443054189 +156725,89745,Hulk,1336704552 +156725,89745,humor,1443054176 +156725,89745,humorous,1443054167 +156725,89745,Iron Man,1443054155 +156725,89745,joss whedon,1335523671 +156725,89745,Loki,1443054190 +156725,89745,Mark Ruffalo,1336704557 +156725,89745,Marvel,1443054120 +156725,89745,Marvel Cinematic Universe,1443054178 +156725,89745,one of the best comic book movies,1335523720 +156725,89745,Robert Downey Jr.,1335523686 +156725,89745,samuel jackson,1335523735 +156725,89745,Samuel L. Jackson,1443054159 +156725,89745,Scarlett Johansson,1336704548 +156725,89745,stylized violence,1443054185 +156725,89745,superhero,1443054118 +156725,89745,superhero team,1335523696 +156725,89745,The Avengers,1443054182 +156725,89745,Thor,1443054169 +156725,89745,Tom Hiddleston,1443054163 +156725,89745,visually appealing,1443054161 +156725,89745,visually stunning,1443054174 +156725,89745,watch the credits,1443054187 +156725,89753,acting,1331285802 +156725,89753,Beautifully shot,1331285793 +156725,89753,Gary Oldman,1331285788 +156725,89753,great direction,1331285832 +156725,89753,photography,1331285811 +156725,89864,emotional,1341674644 +156725,89864,friendship,1341674649 +156725,89864,Seth Rogen,1341674635 +156725,89864,touching,1341674641 +156725,89904,movie business,1340143902 +156725,89904,original,1340143906 +156725,89904,pretentious,1340143908 +156725,89904,visually appealing,1340143896 +156725,90249,android(s)/cyborg(s),1339974054 +156725,90249,boxing,1339974057 +156725,90249,ending,1339974082 +156725,90249,father-son relationship,1339974062 +156725,90249,predictable,1339974087 +156725,90249,robots,1339974073 +156725,90249,Science Fiction,1339974079 +156725,90249,silly plot,1339974090 +156725,90249,unresolved,1339974095 +156725,90345,alien invasion,1333404038 +156725,90345,Mary Elizabeth Winstead,1333404040 +156725,90403,airships,1341675051 +156725,90403,cheesy at times,1341675057 +156725,90403,great photograpy,1341675077 +156725,90403,Juno Temple,1357183315 +156725,90403,Milla Jovovich,1341675063 +156725,90403,Orlando Bloom,1341675060 +156725,90403,steampunk,1341675046 +156725,90403,sword fight,1341675093 +156725,90405,corruption,1332475006 +156725,90405,dystopia,1332475003 +156725,90405,immortality,1332475009 +156725,90405,sci-fi,1332475000 +156725,90522,Rowan Atkinson,1349871095 +156725,90603,Batman,1332101411 +156725,90603,frank miller,1332101418 +156725,90647,Antonio Banderas,1331549504 +156725,90647,clever,1331549510 +156725,90647,Self-referential,1331549513 +156725,90647,stylized,1331549516 +156725,90717,Ben Stiller,1378710844 +156725,90717,Casey Affleck,1378710858 +156725,90717,crime,1378710855 +156725,90717,crude humor,1378710852 +156725,90717,Eddie Murphy,1378710841 +156725,90717,Matthew Broderick,1378710846 +156725,90746,3D effects,1332200712 +156725,90746,action,1332200714 +156725,90746,alcoholism,1332200726 +156725,90746,animation,1332200716 +156725,90746,Daniel Craig,1332200751 +156725,90746,Nick Frost,1332200755 +156725,90746,Simon Pegg,1332200749 +156725,90746,Steven Spielberg,1332200722 +156725,90746,sword fight,1332200736 +156725,90746,treasure hunt,1332200719 +156725,90866,3D,1331894567 +156725,90866,Ben Kingsley,1331894471 +156725,90866,bittersweet,1331894509 +156725,90866,cinematography,1331894557 +156725,90866,Direction,1331894532 +156725,90866,Martin Scorsese,1331894457 +156725,90866,Sacha Baron Cohen,1331894464 +156725,90888,Action Scenes,1335299920 +156725,90888,fight scenes,1335299923 +156725,90888,stylized,1335299918 +156725,91094,Amy Adams,1363316614 +156725,91094,cameos,1363316684 +156725,91094,comeback,1363316618 +156725,91094,cute,1363316599 +156725,91094,funny,1363316694 +156725,91094,Jack Black,1363316664 +156725,91094,Jason Segel,1363316664 +156725,91094,muppets,1363316604 +156725,91094,Zach Galifianakis,1363316664 +156725,91134,acting,1339973984 +156725,91134,character based on real person:Laurence Olivier,1339973991 +156725,91134,character based on real person:Marilyn Monroe,1339973970 +156725,91134,Marilyn Monroe,1339973974 +156725,91134,Michelle Williams,1339973976 +156725,91134,setting:England,1339973980 +156725,91500,battle royale,1332799132 +156725,91500,shaky camera,1332805602 +156725,91500,social comentary,1332805629 +156725,91529,Batman,1345909252 +156725,91529,Christian Bale,1345909255 +156725,91529,Gary Oldman,1345909249 +156725,91529,intense,1345909284 +156725,91529,Joseph Gordon-Levitt,1345909247 +156725,91529,Michael Caine,1345909244 +156725,91529,tom hardy,1345909322 +156725,92420,Beautifully Clever use of Camera,1409847072 +156725,92420,coming of age,1409847063 +156725,92420,found footage,1409847061 +156725,92420,sci-fi,1409847059 +156725,92420,supernatural powers,1409847056 +156725,92420,teenage angst,1409847066 +156725,92422,atmospheric,1347157540 +156725,92422,better than expected,1347157538 +156725,92422,scary,1347157548 +156725,92422,unsatisfying ending,1347157531 +156725,92829,bad sequel,1331765870 +156725,92938,Action,1341696918 +156725,92938,cliche,1341696962 +156725,92938,cool antihero,1341697002 +156725,92938,Goofy,1341696914 +156725,92938,mindless,1341696920 +156725,92938,Nic Cage,1341696910 +156725,92938,Superhero,1341696932 +156725,93270,found footage,1442949665 +156725,93270,shaky camera,1442949670 +156725,93270,unlikeable characters,1341727903 +156725,93287,"""owen wilson""",1423393530 +156725,93287,Jack Black,1423393515 +156725,93287,Steve Martin,1423393523 +156725,93363,Action,1347747325 +156725,93363,female warriors,1347747351 +156725,93363,funny moments,1347747366 +156725,93363,Lynn Collins,1347747791 +156725,93363,MUCH BETTER than I thought,1347747331 +156725,93363,sci-fi,1347747357 +156725,93510,awesome johnny depp cameo,1337689062 +156725,93510,Brie Larson,1337689071 +156725,93510,Jonah Hill,1337689118 +156725,93510,self-aware,1337689122 +156725,93766,action,1342010073 +156725,93766,adventure,1342010071 +156725,93766,CGI,1342010077 +156725,93805,ending,1344101082 +156725,93805,Nazis,1344101076 +156725,93805,steampunk,1344101087 +156725,93805,unpredictable,1344101083 +156725,93831,cute,1339974017 +156725,93831,fun,1339974020 +156725,93831,funny,1339974025 +156725,93831,nostalgic,1339974031 +156725,93831,Sean William Scott,1339974037 +156725,93840,ancient gods,1337689184 +156725,93840,cabin,1336704500 +156725,93840,clever,1334794261 +156725,93840,Drew Goddard,1336704504 +156725,93840,Fran Kranz,1336704492 +156725,93840,funny,1334794081 +156725,93840,gore,1336704486 +156725,93840,joss whedon,1334794094 +156725,93840,meta,1334794084 +156725,93840,monsters,1334794139 +156725,93840,original,1334794251 +156725,93840,original plot,1334794087 +156725,93840,R,1337689199 +156725,93840,witty,1337689193 +156725,93982,bad ending,1348363592 +156725,93982,cheesy clues,1348363601 +156725,93982,John Cusack,1348363611 +156725,93982,Luke Evans,1348363652 +156725,93982,terrible cgi bullet,1348363682 +156725,93982,weak characters,1348363647 +156725,94218,funny,1359526371 +156725,94218,independent,1359526393 +156725,94218,low budget,1359526387 +156725,94677,sacha baron cohen,1338290634 +156725,94677,satire,1338290638 +156725,94677,the helicopter scene,1341675146 +156725,94864,aliens,1340054321 +156725,94864,best visual effects I've ever seen,1340054432 +156725,94864,casting,1340054380 +156725,94864,Good ending,1340054348 +156725,94864,Michael Fassbender,1340054314 +156725,94864,Noomi Rapace,1340054335 +156725,94864,scifi,1340054325 +156725,94864,Sets,1340054391 +156725,95207,American Civil War,1357478043 +156725,95207,Predictable,1357478053 +156725,95207,Timur Bekmambetov,1357478080 +156725,95307,Malin Akerman,1348791341 +156725,95307,musical,1348791321 +156725,95307,Tom Cruise,1348791330 +156725,95441,crude humor,1352681953 +156725,95441,directorial debut,1352682000 +156725,95441,Mark Wahlberg,1352681952 +156725,95441,Mila Kunis,1352681985 +156725,95441,Patrick Stewart,1352681950 +156725,95441,Seth MacFarlane,1352681942 +156725,95510,Andrew Garfield,1342193341 +156725,95510,digital cinematography,1342193346 +156725,95510,Emma Stone,1342193349 +156725,95510,Martin Sheen,1342193369 +156725,95510,Shot using RED Epic,1342193362 +156725,95510,Spider-Man,1342193353 +156725,96079,007 (series),1351814956 +156725,96079,action,1351814950 +156725,96079,beautiful cinematography,1351814934 +156725,96079,beautifully filmed,1351814978 +156725,96079,chase scenes,1351814980 +156725,96079,destruction,1351814967 +156725,96079,focused,1351814971 +156725,96079,sad ending,1351814940 +156725,96079,Sam Mendes,1351814945 +156725,96110,ending,1350870270 +156725,96110,funny,1350870264 +156725,96110,satire,1350870258 +156725,96110,Will Ferrell,1350870253 +156725,96110,Zach Galifianakis,1350870255 +156725,96281,Clever,1363431033 +156725,96281,funny,1363431051 +156725,96281,zombies,1363431027 +156725,96610,bad science,1349653982 +156725,96610,Bruce Willis,1349653959 +156725,96610,dystopia,1349654049 +156725,96610,good writing,1349653979 +156725,96610,Joseph Gordon-Levitt,1349653948 +156725,96610,sci-fi thriller,1349654672 +156725,96610,tense,1349653953 +156725,96610,time travel,1349653950 +156725,96610,visually appealing,1349653945 +156725,96691,bad acting,1357183077 +156725,96691,bad cgi,1357183083 +156725,96691,bad dialogue,1357183090 +156725,96691,bad fights,1357183096 +156725,96691,Michelle Rodriguez,1357183108 +156725,96861,Liam Neeson,1357061805 +156725,96861,Revenge,1357061809 +156725,97188,horror,1381631007 +156725,97188,investigative journalism,1381630942 +156725,97225,Andy Samberg,1363316359 +156725,97225,animation,1363316363 +156725,97225,cute,1363316374 +156725,97225,monsters,1363316366 +156725,97304,Ben Affleck,1357860357 +156725,97304,Bryan Cranston,1357860494 +156725,97304,funny,1357860382 +156725,97304,hollywood,1357860430 +156725,97304,Iran,1357860401 +156725,97304,John Goodman,1357860355 +156725,97304,propaganda,1357860441 +156725,97306,Christopher Walken,1381091928 +156725,97306,dark comedy,1381091931 +156725,97306,Sam Rockwell,1381091934 +156725,97306,Woody Harrelson,1381091938 +156725,97665,Gerard Depardieu,1351209162 +156725,97752,great acting,1356911367 +156725,97752,multiple storylines,1356911341 +156725,97752,Tom Hanks,1356911337 +156725,97752,too long,1356911359 +156725,97752,visually appealing,1356911336 +156725,97785,Adelaide Clemens,1359929137 +156725,97785,atmosphere,1359929152 +156725,97785,the plot makes no sense,1359929191 +156725,97913,animation,1360017766 +156725,97913,cameos,1360017754 +156725,97913,disney,1360017758 +156725,97913,John C. Reilly,1360017757 +156725,97913,nostalgic,1360017752 +156725,97913,Sarah Silverman,1360017761 +156725,97913,video games,1360017760 +156725,97921,Bradley Cooper,1358965735 +156725,97921,Jennifer Lawrence,1358965731 +156725,97921,predictable ending,1358965740 +156725,97936,author:Leo Tolstoy,1357174115 +156725,97936,bad screenplay,1357174143 +156725,97936,Joe Wright,1357174110 +156725,97936,kiera knightley,1357174037 +156725,97938,Ang Lee,1357093627 +156725,97938,author:Yann Martel,1357093660 +156725,97938,cinematography,1357093561 +156725,97938,Direction,1357093563 +156725,97938,great photograpy,1357093580 +156725,97938,religion,1357093620 +156725,97938,sound effects,1357093641 +156725,97938,spiritual journey,1357093635 +156725,97938,visual effects,1357093569 +156725,97950,Action,1357103990 +156725,97950,Lucy Liu,1357103983 +156725,97950,story,1357103992 +156725,97950,visually appealing,1357103985 +156725,98124,batman,1359310190 +156725,98124,frank miller,1359310149 +156725,98809,author:J. R. R. Tolkein,1356653227 +156725,98809,beautiful scenery,1356653232 +156725,98809,big budget,1356653253 +156725,98809,CGI,1356653234 +156725,98809,fantasy world,1356653250 +156725,98809,Middle Earth,1356653239 +156725,98809,Peter Jackson,1356653244 +156725,98809,soundtrack,1356653241 +156725,99114,a fresh and original vew of the western genre,1358470418 +156725,99114,brutal,1358470365 +156725,99114,Christoph Waltz,1358470347 +156725,99114,Flashbacks,1358470370 +156725,99114,Funny,1358470387 +156725,99114,Jamie Foxx,1358470349 +156725,99114,Leonardo DiCaprio,1358470340 +156725,99114,Over the top,1358470352 +156725,99114,rated-R,1358470373 +156725,99114,Revenge,1358470359 +156725,99114,Samuel L. Jackson,1358470341 +156725,99114,Spaghetti Western,1358470343 +156725,99114,too long,1358470375 +156725,99114,violence,1358470355 +156725,99117,Paul Rudd,1406736483 +156725,99149,Hugh Jackman,1365030167 +156725,99149,Russell Crowe's singing,1365030174 +156725,99149,Sacha Baron Cohen,1365030170 +156725,99149,shaky camera,1365030176 +156725,99149,singing,1365030200 +156725,99813,batman,1359310175 +156725,99813,frank miller,1359310159 +156725,99813,sad ending,1359310170 +156725,99813,superman,1359310185 +156725,99901,cult,1358477550 +156725,99901,funny,1358477571 +156725,99901,low budget,1359526426 +156725,100083,crude humor,1376536178 +156725,100083,embarassing scenes,1376536185 +156725,100083,offensive,1376536189 +156725,100083,R language,1376536183 +156725,100163,Gemma Arterton,1368329114 +156725,100163,Jeremy Renner,1368329116 +156725,100163,steampunk,1368329118 +156725,100203,bad acting,1359526898 +156725,100203,bad adaptation,1359526906 +156725,100203,bad plot,1359526930 +156725,100203,characters overreacting,1359526924 +156725,100203,Stupid as Hell,1359526947 +156725,100498,John Moore,1360883180 +156725,100737,terrible acting,1370864472 +156725,101076,action,1385936788 +156725,101076,dialogue,1385936765 +156725,101076,Dwayne Johnson,1385936769 +156725,101076,hooah,1385936779 +156725,101076,ninja,1385936783 +156725,101076,North Korea,1385936786 +156725,101076,Ray Stevenson,1385936772 +156725,101076,Special Effects,1385936776 +156725,101088,Chan-wook Park,1370602100 +156725,101088,psychological thriller,1370602107 +156725,101088,stylish,1370602112 +156725,101362,Action,1435198156 +156725,101362,Special Effects,1435198165 +156725,101362,weak plot,1435198160 +156725,101741,Danny Boyle,1424714854 +156725,101741,James McAvoy,1424714861 +156725,101741,Mindfuck,1424714852 +156725,102033,comedy,1376615429 +156725,102033,Michael Bay,1376615433 +156725,102123,cast,1383056912 +156725,102123,hilarious,1383056905 +156725,102123,James Franco,1383056918 +156725,102123,Michael Cera,1383056888 +156725,102123,Seth Rogen,1383056883 +156725,102125,Ben Kingsley,1367378423 +156725,102125,Gwyneth Paltrow,1367378426 +156725,102125,humour,1367378452 +156725,102125,Rebecca Hall,1367378436 +156725,102125,Robert Downey Jr.,1367378430 +156725,102125,Shane Black,1367378444 +156725,102125,superhero,1367378448 +156725,102445,J.J. Abrams,1372860342 +156725,102445,Leonard Nimoy,1372860356 +156725,102445,Simon Pegg,1372860316 +156725,102445,Star Trek,1372860320 +156725,102686,Zach Galifianakis,1369714596 +156725,102716,action,1442490606 +156725,102800,Noah Baumbach,1442539099 +156725,102800,pretentious,1442539085 +156725,102993,AnnaSophia Robb,1388119751 +156725,102993,Sam Rockwell,1388119775 +156725,102993,Steve Carell,1388119738 +156725,103042,action,1394753619 +156725,103042,alien invasion,1394753636 +156725,103042,Amy Adams,1394753643 +156725,103042,big budget,1394753616 +156725,103042,cinematography,1394753608 +156725,103042,comic book,1394753605 +156725,103042,Direction,1371604269 +156725,103042,Kevin Costner,1394753601 +156725,103042,long fight scenes,1394753623 +156725,103042,Russell Crowe,1394753598 +156725,103042,superhero,1394753591 +156725,103042,visually appealing,1371604287 +156725,103042,Zack Snyder,1371604257 +156725,103075,brutal,1381111585 +156725,103075,interesting concept,1381111580 +156725,103075,senseless violence,1381111588 +156725,103228,anime,1382321605 +156725,103228,giant robots,1382321592 +156725,103228,Guillermo del Toro,1382321612 +156725,103228,Ron Perlman,1382321600 +156725,103228,visually appealing,1382321596 +156725,103235,Geoffrey Rush,1408541263 +156725,103235,twist ending,1408541267 +156725,103253,cyborgs,1415439475 +156725,103253,dystopia,1415439469 +156725,103253,robots,1415439478 +156725,103253,science fiction,1415439472 +156725,103253,visually stunning,1415439470 +156725,103306,Found footage,1410771344 +156725,103306,hard science fiction,1410771337 +156725,103306,low budget,1410771346 +156725,103306,space,1410771340 +156725,103306,visually stunning,1410771342 +156725,103335,crude humor,1386816564 +156725,103335,Steve Carell,1386816560 +156725,103341,cornetto trilogy,1384402738 +156725,103341,drinking,1384402744 +156725,103341,Edgar Wright,1384402742 +156725,103341,funny,1384402757 +156725,103341,Simon Pegg,1384402749 +156725,103655,Jeff Bridges,1378437599 +156725,103655,Ryan Reynolds,1378437611 +156725,103688,Horror,1381321003 +156725,103688,possession,1381321006 +156725,103772,comic book,1394753699 +156725,103772,Hugh Jackman,1394753689 +156725,103772,Japan,1394753696 +156725,103772,low stakes,1394753686 +156725,103772,superhero,1394753690 +156725,103772,yakuza,1394753693 +156725,103810,funny,1386240369 +156725,103810,John Malkovich,1386240361 +156725,103810,Mary-Louise Parker,1386240364 +156725,104137,boring,1386724002 +156725,104137,meaningless,1386724005 +156725,104137,weird,1386724029 +156725,104211,Ed Helms,1384702343 +156725,104211,hilarious,1384702355 +156725,104211,Jason Sudeikis,1384702332 +156725,104211,Jennifer Aniston,1384702334 +156725,104211,witty,1384702338 +156725,104218,Adam Sandler,1407798424 +156725,104241,brutal,1383056848 +156725,104241,brutality,1383056852 +156725,104241,Chloe Moretz,1383056844 +156725,104241,Jim Carrey,1383056860 +156725,104241,vigilante,1383056855 +156725,104243,aliens,1394753871 +156725,104243,exaggerated,1394753860 +156725,104243,simplistic,1394753875 +156725,104243,space western,1394753877 +156725,104243,Vin Diesel,1394753864 +156725,104312,bad plot,1395069024 +156725,104312,cliche,1395069022 +156725,104312,cliche characters,1395069014 +156725,104312,fantasy,1395069051 +156725,104312,Lily Collins,1395069056 +156725,104312,magic,1395069060 +156725,104312,plot holes,1395069010 +156725,104374,Bill Nighy,1399637642 +156725,104374,charming,1399637639 +156725,104374,Rachel McAdams,1399637638 +156725,104374,time travel,1399637633 +156725,104374,touching,1399637635 +156725,104841,cinematography,1387330237 +156725,104841,George Clooney,1387330257 +156725,104841,intense,1387330260 +156725,104841,physics,1387330275 +156725,104841,plot,1387330380 +156725,104841,sandra bullock,1387330252 +156725,104841,visually appealing,1387330250 +156725,104879,absorbing,1388960312 +156725,104879,American culture,1388960333 +156725,104879,Denis Villeneuve,1388960323 +156725,104879,great ending,1388960327 +156725,104879,Hugh Jackman,1388960307 +156725,104879,morality,1388960316 +156725,104925,brutal violence,1387156981 +156725,104925,goodfellas,1387156990 +156725,104925,Mafia,1387156994 +156725,105213,Joseph Gordon-Levitt,1388205543 +156725,105213,Julianne Moore,1388205530 +156725,105213,Scarlett Johansson,1388205549 +156725,105355,Abdellatif Kechiche,1389157353 +156725,105355,Adele Exarchopoulos,1389157340 +156725,105355,lesbian,1389157346 +156725,105355,queer,1389157348 +156725,105593,corruption,1400054094 +156725,105593,intoxicants,1400054088 +156725,105593,police corruption,1400054087 +156725,105593,Scotland,1400054085 +156725,105593,surreal,1400054091 +156725,105653,Mikael HÃ¥fström,1390351982 +156725,105653,prison,1390351994 +156725,105653,prison escape,1390351988 +156725,105653,Sylvester Stallone,1390351977 +156725,105653,torture,1390351997 +156725,105731,Chloe Grace Moretz as Carrie,1413154653 +156725,105731,Stephen King,1413154649 +156725,105844,Chiwetel Ejiofor,1389049160 +156725,105844,Michael Fassbender,1389049175 +156725,105844,toplist13,1389049157 +156725,106062,hilarious,1399402701 +156725,106062,jackass,1399402706 +156725,106062,stupid,1399402710 +156725,106072,Alan Taylor,1385164450 +156725,106072,bad physics,1385164463 +156725,106072,bad science,1385164466 +156725,106072,Chris Hemsworth,1385164424 +156725,106072,humor,1385164442 +156725,106072,humorous,1385164469 +156725,106072,Marvel Cinematic Universe,1385164415 +156725,106072,superhero,1385164416 +156725,106072,Tom Hiddleston,1385164420 +156725,106072,unrealistic,1385164456 +156725,106441,narration,1390363231 +156725,106441,touching,1390363218 +156725,106487,acting,1386236880 +156725,106487,excellent script,1386236884 +156725,106487,Jennifer Lawrence,1386236890 +156725,106487,visually appealing,1386236896 +156725,106487,Woody Harrelson,1386236893 +156725,106489,fantasy,1395896683 +156725,106489,hobbit,1395896698 +156725,106489,Ian McKellen,1395896671 +156725,106489,Orlando Bloom,1395896633 +156725,106489,Peter Jackson,1395896664 +156725,106489,too long,1395896648 +156725,106491,asian mysticism,1388177183 +156725,106491,Carl Rinsch,1388177163 +156725,106491,Cary-Hiroyuki Tagawa,1388177098 +156725,106491,expository dialogue,1388177008 +156725,106491,Hiroyuki Sanada,1388177074 +156725,106491,Keanu Reeves,1388176974 +156725,106491,stupid plot,1388176985 +156725,106782,Funny,1397068685 +156725,106782,Leonardo DiCaprio,1397068676 +156725,106782,Martin Scorsese,1397068677 +156725,106782,visually appealing,1397068680 +156725,106916,Bradley Cooper,1388794075 +156725,106916,Christian Bale,1388794092 +156725,106916,David O. Russell,1388793963 +156725,106916,Jennifer Lawrence,1388794082 +156725,106920,artificial intelligence,1406414438 +156725,106920,beautiful,1406414443 +156725,106920,bittersweet,1406414444 +156725,106920,joaquin phoenix,1406414426 +156725,106920,loneliness,1406414434 +156725,106920,psychology,1406414433 +156725,106920,Scarlett Johansson,1406414428 +156725,106920,sci-fi,1406414439 +156725,107314,spike lee,1397035076 +156725,107348,Steve Carell,1395790407 +156725,107348,will ferrell,1395790411 +156725,107406,chris evans,1399152341 +156725,107406,dark,1450216178 +156725,107406,dystopia,1399152342 +156725,107406,dystopian,1450216128 +156725,107406,jamie bell,1450216097 +156725,107406,john hurt,1399152299 +156725,107406,Joon-ho Bong,1399152340 +156725,107406,Plot twist,1450216108 +156725,107406,post-apocalyptic,1399152336 +156725,107406,revolution,1450216122 +156725,107406,sci-fi,1450216104 +156725,107406,snow,1450216106 +156725,107406,social commentary,1450216094 +156725,107406,surreal,1450216102 +156725,107406,tilda swinton,1399152335 +156725,107406,train,1450216130 +156725,107406,trains,1450216132 +156725,107406,violence,1450216099 +156725,108729,doppelganger,1441757803 +156725,108729,Jake Gyllenhaal,1441757793 +156725,108729,mental illness,1441757796 +156725,108729,mindfuck,1441757805 +156725,108729,Psychological,1441757792 +156725,108729,tense,1441757798 +156725,109187,surreal,1443221712 +156725,109187,Terry Gilliam,1443221707 +156725,109374,pretentious,1442538928 +156725,109374,Wes Anderson,1442538917 +156725,109487,Christopher Nolan,1416775776 +156725,109487,Matthew McConaughey,1416776001 +156725,109487,Michael Caine,1416776025 +156725,109487,time-travel,1416775777 +156725,109487,wormhole,1416775999 +156725,109578,Liam Neeson,1403331609 +156725,109578,thrilling,1403331610 +156725,110102,Chris Evans,1396566391 +156725,110102,comic book,1396566402 +156725,110102,Marvel Cinematic Universe,1396566394 +156725,110102,superhero,1396566398 +156725,111360,editing,1409399968 +156725,111360,fast paced action,1409399988 +156725,111360,intense,1409400002 +156725,111360,Luc Besson,1409399950 +156725,111360,Scarlett Johansson,1409399953 +156725,111362,Bryan Singer,1404495467 +156725,111362,Hugh Jackman,1404495475 +156725,111362,Jennifer Lawrence,1404495451 +156725,111362,Michael Fassbender,1404495455 +156725,111362,Nudity (Rear),1404495448 +156725,111362,Patrick Stewart,1404495449 +156725,111362,superhero,1404495456 +156725,111362,time travel,1404495458 +156725,111362,X-men,1404495462 +156725,111364,bland hero,1409524709 +156725,111364,Bryan Cranston,1409524711 +156725,111364,Creature Feature,1409524723 +156725,111364,Godzilla,1409524703 +156725,111364,gradual tension,1409524724 +156725,111364,great photograpy,1409524728 +156725,111364,Kaiju,1409524730 +156725,111364,Monster,1409524705 +156725,111364,not enough Bryan Cranston,1409524738 +156725,111364,not enough monster action,1409524756 +156725,111364,special effects,1409524702 +156725,111375,Gillian Jacobs,1405550292 +156725,111443,food,1408659016 +156725,111443,Jon Favreau,1408659019 +156725,111443,Miami,1408659014 +156725,111443,road trip,1408659008 +156725,111443,Twitter,1408659013 +156725,111743,Seth MacFarlane,1401906814 +156725,111759,Doug Liman,1402975624 +156725,111759,Emily Blunt,1402975511 +156725,111759,ending,1402975637 +156725,111759,time loop,1402975512 +156725,111759,Tom Cruise,1402975513 +156725,112138,meta,1409703346 +156725,112138,Self-referential,1409703348 +156725,112171,violent,1422903368 +156725,112175,dragons,1449344824 +156725,112175,good story,1449344826 +156725,112290,Ethan Hawke,1415478443 +156725,112290,realism,1415478441 +156725,112370,Michael Bay,1403559046 +156725,112370,transformers,1403559045 +156725,112552,J.K. Simmons,1426278047 +156725,112552,music,1426278050 +156725,112552,Tense,1426278046 +156725,112556,Ben Affleck,1413154569 +156725,112556,David Fincher,1413154567 +156725,112556,interesting,1442536573 +156725,112556,mindfuck,1413154605 +156725,112556,Neal Patrick Harris,1413154565 +156725,112556,Psychopathy,1413154581 +156725,112556,psychothriller,1442536565 +156725,112556,Rosamund Pike,1442536556 +156725,112556,unpredictable,1419595148 +156725,112788,cameron diaz,1420680109 +156725,112788,Jason Segel,1420680111 +156725,112852,aliens,1409877522 +156725,112852,great soundtrack,1409877385 +156725,112852,Great Visuals,1409877392 +156725,112852,Marvel,1409877390 +156725,112852,science fiction,1409877531 +156725,112852,space,1409877388 +156725,112852,talking animals,1409877389 +156725,112852,Vin Diesel,1409877386 +156725,112852,violent,1409877537 +156725,112897,action-packed,1409600620 +156725,112897,Antonio Banderas,1409600661 +156725,112897,Arnold Schwarzenegger,1409600651 +156725,112897,campy,1409600629 +156725,112897,nostalgic,1409600641 +156725,112897,Sylvester Stallone,1409600608 +156725,112911,action,1414512837 +156725,112911,Dwayne Johnson,1414512835 +156725,113573,comic book,1410771388 +156725,113573,Eva Green,1410771371 +156725,113573,film noir,1410771387 +156725,113573,Frank Miller,1410771377 +156725,113573,great photograpy,1410771413 +156725,113573,Jessica Alba,1410771428 +156725,113573,nudity (topless),1410771379 +156725,113573,Robert Rodriguez,1410771382 +156725,113573,stylized,1410771395 +156725,113573,violence,1410771391 +156725,113741,intelligent,1442117250 +156725,113741,mind bending,1442117247 +156725,113741,mystery,1442117246 +156725,113741,parallel universe,1442117246 +156725,113741,sci-fi,1442117252 +156725,114180,dystopia,1420228171 +156725,114180,maze,1420228176 +156725,114180,survival,1420228173 +156725,115210,Brad Pitt,1442007011 +156725,115210,realistic,1442007017 +156725,115210,World War II,1442007013 +156725,115569,dark,1423429534 +156725,115569,gripping,1423429536 +156725,115569,Jake Gyllenhaal,1423429538 +156725,115569,sociopath,1423429542 +156725,115680,sci-fi,1442161728 +156725,115680,thriller,1442161724 +156725,115680,time travel,1442161721 +156725,115680,twist ending,1442161720 +156725,115680,unexpected ending,1442161726 +156725,115713,artificial intelligence,1432145142 +156725,115713,robots,1432145148 +156725,115713,sci-fi,1432145144 +156725,116161,Mark Ruffalo,1439679500 +156725,116161,Pacing,1439679511 +156725,116797,Benedict Cumberbatch,1425674022 +156725,116797,code breaking,1425674024 +156725,116797,cryptography,1425674020 +156725,116797,World War II,1425674018 +156725,117529,dinosaurs,1434139165 +156725,119141,Seth Rogen,1421346401 +156725,119145,gentlemanly,1424553424 +156725,119145,Matthew Vaughn,1424553427 +156725,122882,action,1450215741 +156725,122882,adventure,1450215948 +156725,122882,apocalyptic,1450215968 +156725,122882,beautiful,1450216008 +156725,122882,brutal,1450216018 +156725,122882,car chase,1450215963 +156725,122882,cars,1450216002 +156725,122882,cgi,1450216011 +156725,122882,charlize theron,1450215944 +156725,122882,chase,1450215956 +156725,122882,Colourful apocalypse,1450215957 +156725,122882,crazy characters,1450216048 +156725,122882,deformity,1450216045 +156725,122882,desert,1450215942 +156725,122882,dystopian,1450215939 +156725,122882,explosions,1450216076 +156725,122882,feminism,1450215940 +156725,122882,feminist,1450215952 +156725,122882,franchise,1450216061 +156725,122882,great soundtrack,1450215965 +156725,122882,Intense,1450216065 +156725,122882,mad max,1450215967 +156725,122882,non-stop,1450215946 +156725,122882,on the run,1450216052 +156725,122882,over the top,1450216018 +156725,122882,photography,1450216049 +156725,122882,post apocalypse,1450215937 +156725,122882,post apocalyptic,1450215949 +156725,122882,post-apocalyptic,1450215962 +156725,122882,practical effects,1450216006 +156725,122882,sci-fi,1450215951 +156725,122882,special effects,1450215954 +156725,122882,Tom Hardy,1450215959 +156725,122882,violence,1450215960 +156725,122882,visually appealing,1450215937 +156725,122882,warlord,1450215999 +156725,122882,wasteland,1450216000 +156725,122886,Adam Driver,1451008527 +156725,122886,BB-8,1451008525 +156725,122886,Carrie Fisher,1451008519 +156725,122886,Daisy Ridley,1451008522 +156725,122886,Fan service,1451008529 +156725,122886,franchise,1451008518 +156725,122886,Harrison Ford,1451008510 +156725,122886,J.J. Abrams,1451008513 +156725,122886,Jedi Knight,1451008531 +156725,122886,John Boyega,1451008516 +156725,122886,John Williams,1451008533 +156725,122886,Mark Hamill,1451008514 +156725,122886,Star Wars,1451008509 +156725,122892,comic book,1431003816 +156725,122892,Marvel,1431003822 +156725,122892,superhero,1431003820 +156725,122900,comic book,1442705068 +156725,122900,entertaining,1442705071 +156725,122900,heist,1442705067 +156725,122900,Marvel,1442705064 +156725,122900,Michael Douglas,1442705073 +156725,122900,paul rudd,1442705075 +156725,122900,sci-fi,1442705069 +156725,122900,superhero,1442705065 +156725,122902,stupid plot,1439120043 +156725,122902,terrible acting,1439120059 +156725,127096,found footage,1442953970 +156725,127096,science fiction,1442953965 +156725,127096,stupid ending,1442953975 +156725,127096,time travel,1442953964 +156725,128838,creepy,1445809482 +156725,128838,dark,1445809488 +156725,128838,Guillermo del Toro,1445809456 +156725,128838,tom hiddleston,1445809473 +156725,129354,con artist,1442566546 +156725,129354,Will Smith,1442566543 +156725,129937,Jaume Collet-Serra,1429241069 +156725,129937,liam neeson,1429241033 +156725,130450,pirates,1445603618 +156725,130634,car chase,1442502115 +156725,130634,direction,1442502127 +156725,130634,james wan,1442502135 +156725,130634,moving,1442502138 +156725,130634,Paul Walker,1442502112 +156725,130636,Internet,1445100442 +156725,130636,skype,1445100444 +156725,130636,social media,1445100445 +156725,132796,Dwayne Johnson,1446343906 +156725,134130,Improvisation,1444010012 +156725,134130,Space,1444010007 +156725,134130,Survival Instinct,1444010010 +156725,134368,comedy,1443116206 +156725,134368,melissa mccarthy,1443116204 +156725,134853,Amy Poehler,1445666095 +156725,134853,Animation,1445666069 +156725,134853,bittersweet,1445666080 +156725,134853,childhood,1445666071 +156725,134853,coming of age,1445666072 +156725,134853,creative,1445666078 +156725,134853,emotions,1445666081 +156725,134853,happiness,1445666088 +156725,134853,imaginative,1445666083 +156725,134853,Pixar,1445666065 +156725,134853,psychology,1445666067 +156725,134853,thought provoking,1445666090 +156725,135861,funny,1441496289 +156725,136598,funny,1442094981 +156725,136598,road trip,1442094984 +156725,138036,humour,1441916133 +156725,138036,stylish,1441916135 +156725,141544,80's,1444492542 +156725,141544,cheesy,1444492525 +156725,141544,corny,1444492531 +156725,141544,cult,1444492514 +156725,141544,post-apocalyptic,1444492497 +156725,141688,biopic,1448250397 +156725,141688,gangster,1448250393 +156725,141688,great acting,1448250413 +156725,141688,Tom Hardy,1448250395 +156725,143239,angelina jolie,1449864422 +156725,143239,angelina wears no bra for the entire film,1449864455 +156725,143239,brad pitt,1449864467 +156725,143239,direction,1449864469 +156725,143239,slow plot,1449864482 +156728,296,action,1425572308 +156728,296,great soundtrack,1425572308 +156728,296,quentin tarantino,1425572308 +156728,2355,Animated,1425573022 +156728,2355,childhood flashback,1425573018 +156728,58559,action,1425572518 +156728,58559,joker,1425572525 +156728,58559,thriller,1425572530 +156728,81845,drama,1425572449 +156728,81845,politics,1425572456 +156728,81845,true story,1425572477 +156735,999,ensemble cast,1368107370 +156735,1097,aliens,1159646295 +156735,2012,science fiction,1159646281 +156735,2443,ensemble cast,1368107370 +156735,2483,dark,1368107343 +156735,2583,ensemble cast,1368107370 +156735,4029,ensemble cast,1368107370 +156735,4043,father-son relationship,1368107682 +156735,4345,ensemble cast,1368107370 +156735,5021,ensemble cast,1368107370 +156735,6260,christianity,1368107312 +156735,25769,father-son relationship,1368107682 +156735,26003,black and white,1368107279 +156735,26122,dark,1368107344 +156735,26269,father-son relationship,1368107682 +156735,27033,dark,1368107343 +156735,87304,father-son relationship,1368107682 +156745,60128,Nudity (Topless),1289482619 +156745,60128,threesome,1289482625 +156774,3741,malik,1156037028 +156774,27905,appaling,1158015359 +156803,1213,biography,1394537147 +156803,1270,comedy,1394537226 +156803,1270,quirky,1394537226 +156809,16,Eric's Dvds,1145843109 +156809,42,Eric's Dvds,1145843426 +156809,50,Eric's Dvds,1145844356 +156809,110,Eric's Dvds,1145843087 +156809,163,Eric's Dvds,1145843991 +156809,165,Eric's Dvds,1145843441 +156809,175,Eric's Dvds,1145844130 +156809,260,Eric's Dvds,1145843847 +156809,288,Eric's Dvds,1145843666 +156809,293,Eric's Dvds,1145843775 +156809,296,Eric's Dvds,1145844226 +156809,356,Eric's Dvds,1145843478 +156809,364,Eric's Dvds,1145844176 +156809,428,Eric's Dvds,1145843095 +156809,431,Eric's Dvds,1145843382 +156809,589,Eric's Dvds,1145843857 +156809,592,Eric's Dvds,1145843937 +156809,741,Eric's Dvds,1145843487 +156809,1036,Eric's Dvds,1145843435 +156809,1089,Eric's Dvds,1145843792 +156809,1091,Eric's Dvds,1146151467 +156809,1196,Eric's Dvds,1145843047 +156809,1200,Eric's Dvds,1145843297 +156809,1201,Eric's Dvds,1145843499 +156809,1210,Eric's Dvds,1145843263 +156809,1214,Eric's Dvds,1145843292 +156809,1240,Eric's Dvds,1145844327 +156809,1245,Eric's Dvds,1145843639 +156809,1274,Eric's Dvds,1145843903 +156809,1320,Eric's Dvds,1145845094 +156809,1370,Eric's Dvds,1145845153 +156809,1465,Eric's Dvds,1145844927 +156809,1617,Eric's Dvds,1145843577 +156809,1625,Eric's Dvds,1145844022 +156809,1690,Eric's Dvds,1145845085 +156809,1729,Eric's Dvds,1145843553 +156809,1923,Eric's Dvds,1145843875 +156809,1997,Eric's Dvds,1145843462 +156809,2058,Eric's Dvds,1145843735 +156809,2114,Eric's Dvds,1145843754 +156809,2122,Eric's Dvds,1145844460 +156809,2167,Eric's Dvds,1145843355 +156809,2273,Eric's Dvds,1145844255 +156809,2490,Eric's Dvds,1145843765 +156809,2502,Eric's Dvds,1145844207 +156809,2571,Eric's Dvds,1145843232 +156809,2700,Eric's Dvds,1145844296 +156809,2860,Eric's Dvds,1145845113 +156809,2959,Eric's Dvds,1145843141 +156809,3020,Eric's Dvds,1145843131 +156809,3246,Eric's Dvds,1145842941 +156809,3527,Eric's Dvds,1146151743 +156809,3578,Eric's Dvds,1145844554 +156809,3698,Eric's Dvds,1145844250 +156809,3752,Eric's Dvds,1145843601 +156809,3793,Eric's Dvds,1145844373 +156809,3948,Eric's Dvds,1145843623 +156809,3996,Eric's Dvds,1145840427 +156809,4224,Eric's Dvds,1145844522 +156809,4226,Eric's Dvds,1145843238 +156809,4262,Eric's Dvds,1145843036 +156809,4489,Eric's Dvds,1145843412 +156809,4616,Eric's Dvds,1145844159 +156809,4776,Eric's Dvds,1145843270 +156809,4846,Eric's Dvds,1145844121 +156809,4889,Eric's Dvds,1145843511 +156809,4896,Eric's Dvds,1145844046 +156809,4963,Eric's Dvds,1145843746 +156809,4993,Eric's Dvds,1145843207 +156809,4995,Eric's Dvds,1145844419 +156809,5010,Eric's Dvds,1145844430 +156809,5254,Eric's Dvds,1145844435 +156809,5349,Eric's Dvds,1145843252 +156809,5418,Eric's Dvds,1145843953 +156809,5445,Eric's Dvds,1145844819 +156809,5464,Eric's Dvds,1145844908 +156809,5502,Eric's Dvds,1145844957 +156809,5509,Eric's Dvds,1145845605 +156809,5528,Eric's Dvds,1145844846 +156809,5572,Eric's Dvds,1145843921 +156809,5669,Eric's Dvds,1145844448 +156809,5952,Eric's Dvds,1145844183 +156809,5954,Eric's Dvds,1145844384 +156809,6016,Eric's Dvds,1145840407 +156809,6022,Eric's Dvds,1145843306 +156809,6185,Eric's Dvds,1145843974 +156809,6365,Eric's Dvds,1145843594 +156809,6537,Eric's Dvds,1145843862 +156809,6721,Eric's Dvds,1145845661 +156809,6874,Eric's Dvds,1145843182 +156809,6934,Eric's Dvds,1145844772 +156809,6936,Eric's Dvds,1145844510 +156809,6948,Eric's Dvds,1145843883 +156809,6953,Eric's Dvds,1145843281 +156809,7090,Eric's Dvds,1145843517 +156809,7143,Eric's Dvds,1145844147 +156809,7153,Eric's Dvds,1145843012 +156809,7160,Eric's Dvds,1145843648 +156809,7254,Eric's Dvds,1145843376 +156809,7318,Eric's Dvds,1145844218 +156809,7325,Eric's Dvds,1145844306 +156809,7346,Eric's Dvds,1145844031 +156809,7367,Eric's Dvds,1146151771 +156809,7438,Eric's Dvds,1145843562 +156809,7439,Eric's Dvds,1145844232 +156809,7449,Eric's Dvds,1145845209 +156809,7458,Eric's Dvds,1145845043 +156809,7482,Eric's Dvds,1145844009 +156809,8360,Eric's Dvds,1145844277 +156809,8361,Eric's Dvds,1145844493 +156809,8622,Eric's Dvds,1145843118 +156809,8636,Eric's Dvds,1145843837 +156809,8640,Eric's Dvds,1145843570 +156809,8641,Eric's Dvds,1145843073 +156809,8644,Eric's Dvds,1145844590 +156809,8665,Eric's Dvds,1145843364 +156809,8781,Eric's Dvds,1145843217 +156809,8784,Eric's Dvds,1145845196 +156809,8798,Eric's Dvds,1145843403 +156809,8810,Eric's Dvds,1145845076 +156809,8835,Eric's Dvds,1145844860 +156809,8865,Eric's Dvds,1145844285 +156809,8917,Eric's Dvds,1145844321 +156809,8947,Eric's Dvds,1145844036 +156809,8957,Eric's Dvds,1145843810 +156809,8958,Eric's Dvds,1145843026 +156809,8961,Eric's Dvds,1145843545 +156809,8962,Eric's Dvds,1145844538 +156809,8972,Eric's Dvds,1145844201 +156809,8983,Eric's Dvds,1145843533 +156809,27808,Eric's Dvds,1145845006 +156809,27821,Eric's Dvds,1145843167 +156809,30749,Eric's Dvds,1145840446 +156809,30825,Eric's Dvds,1145843616 +156809,31184,Eric's Dvds,1145843330 +156809,31685,Eric's Dvds,1145844080 +156809,31696,Eric's Dvds,1145843418 +156809,31878,Eric's Dvds,1145843197 +156809,32019,Eric's Dvds,1145844412 +156809,32031,Eric's Dvds,1145843802 +156809,32298,Eric's Dvds,1145845227 +156809,32587,Eric's Dvds,1145843829 +156809,32596,Eric's Dvds,1145844261 +156809,33004,Eric's Dvds,1145843528 +156809,33166,Eric's Dvds,1145843967 +156809,33437,Eric's Dvds,1145844349 +156809,33679,Eric's Dvds,1145843656 +156809,33794,Eric's Dvds,1145843341 +156809,34162,Eric's Dvds,1145843890 +156809,34271,Eric's Dvds,1145842931 +156809,35836,Eric's Dvds,1145843056 +156809,35957,Eric's Dvds,1145843785 +156809,36517,Eric's Dvds,1145844468 +156809,36529,Eric's Dvds,1145843587 +156809,37382,Eric's Dvds,1145843999 +156809,37720,Eric's Dvds,1145844528 +156809,39446,Eric's Dvds,1145843819 +156809,40339,Eric's Dvds,1145843392 +156809,40614,Eric's Dvds,1145843987 +156809,40959,Eric's Dvds,1145844106 +156812,105844,real,1384275330 +156826,59315,funny,1449684196 +156826,59315,superhero,1449684188 +156826,59315,technology,1449684195 +156826,89745,Hulk,1449684218 +156826,89745,Iron Man,1449684216 +156842,986,Animal movie,1245300638 +156842,2858,Oscar (Best Picture),1245301006 +156842,45720,fashion,1245300839 +156842,57504,Anime,1245302449 +156842,64969,Jim carrey,1245300900 +156864,1884,drugs,1321128251 +156864,1884,great soundtrack,1321128238 +156864,1884,hallucinatory,1321128234 +156864,1884,satirical,1321128258 +156864,1884,social commentary,1321128261 +156864,2571,science,1305559486 +156864,56174,loneliness,1305559386 +156864,56174,predictable,1305559372 +156867,260,sci-fi,1430769168 +156867,122892,Marvel,1430769607 +156867,122892,superhero,1430769617 +156872,79132,沈思,1447214734 +156872,109487,physics,1447214833 +156874,866,Dramatic,1186690183 +156874,1012,tear jerker,1186690663 +156874,1620,Edge of your seat,1186690448 +156874,1801,Interesting,1186690409 +156874,2125,light,1186690408 +156874,2143,puppets,1186690765 +156874,2405,fun movie,1186690275 +156874,2662,classic,1186690479 +156874,2840,religious theme,1186690467 +156874,2863,Beatles,1186690506 +156874,3070,Fun fun,1186690535 +156874,4015,stupid,1186690572 +156874,4262,drug abuse,1186690199 +156874,4446,Game related,1186690342 +156874,4848,strangely compelling,1186690191 +156874,5171,remake,1186690799 +156874,5528,Could be true,1186690636 +156874,5618,Amazing Cinematography,1186690209 +156874,5992,Makes you think,1186690705 +156874,6373,hysterical,1186690343 +156874,6502,futuristic,1186690236 +156874,6708,fun movie,1186690624 +156874,6870,Dark hero,1186690292 +156874,7373,graphic novel,1186690690 +156874,8970,Johnny Depp,1186690508 +156874,53972,action packed,1186691057 +156874,53972,Bruce Willis,1186691057 +156874,53996,rewatchable,1186691014 +156888,119145,seen,1446631565 +156888,138036,seen,1446631586 +156900,260,Action comedy,1434728819 +156900,260,romance,1434728844 +156900,260,Science Fiction,1434728828 +156900,80969,sad,1434729378 +156900,90374,creepy,1434729234 +156900,90374,mystery,1434729234 +156900,90374,pyschology,1434729234 +156900,90376,psychological,1434728938 +156900,96821,Ezra Miller,1434729157 +156911,628,twist ending,1352685297 +156930,260,amazaballs,1437878278 +156930,260,classic sci-fi,1437878291 +156933,96610,clever,1426365356 +156933,96610,dystopia,1426365347 +156933,96610,time travel,1426365362 +156933,96610,visually appealing,1426365352 +156933,114935,mindfuck,1426364439 +156933,114935,time travel,1426364442 +156933,114935,twist ending,1426364448 +156944,81845,Britain,1428999396 +156944,81845,historical,1428999386 +156954,33794,comic book,1207602593 +156966,64030,Jason Statham,1238878056 +156967,741,cyberpunk,1298339641 +156967,1036,Bruce Willis,1298339660 +156967,1274,dystopia,1298337607 +156967,1274,post-apocalyptic,1298337601 +156967,27801,drugs,1298337613 +156967,77455,eccentric,1298337629 +156987,527,holocaust,1432513966 +156987,527,oscar (best picture),1432513966 +156987,527,world war ii,1432513966 +156987,2019,Criterion,1378222617 +156987,2019,epic,1378222635 +156987,2019,historical,1378222625 +156992,79132,sci-fi,1449179334 +156992,91542,sherlock holmes,1449179389 +157013,3160,Paul Thomas Anderson,1152991453 +157015,106100,dramatic,1422229041 +157015,106100,uplifting,1422229041 +157015,106100,witty dialogue,1422229041 +157017,4246,based on a book,1448898249 +157017,4246,British,1448898242 +157017,4246,Colin Firth,1448898245 +157017,4246,comedy,1448898257 +157017,4246,girlie movie,1448898236 +157017,4246,guilty pleasure,1448898253 +157017,4246,Hugh Grant,1448898240 +157017,4246,Jane Austen,1448898260 +157017,4246,love story,1448898251 +157017,4246,Renee Zellweger,1448898259 +157017,4246,Romance,1448898231 +157017,4246,romantic comedy,1448898264 +157022,107,treasure,1368726964 +157022,1291,treasure,1368726964 +157022,1748,aliens,1274478537 +157022,1748,dark,1274478488 +157022,1748,dreamlike,1274478483 +157022,1748,post apocalyptic,1274478495 +157022,1748,surreal,1274478509 +157022,2022,jesus,1368726915 +157022,2115,treasure,1368726964 +157022,2232,gory,1272915990 +157022,2232,psychological,1272915894 +157022,2232,scifi,1272915981 +157022,2840,jesus,1368726915 +157022,4677,dog,1273006791 +157022,4881,black and white,1304172575 +157022,5881,soundtrack,1275680461 +157022,7318,jesus,1368726915 +157022,47997,dystopia,1270218725 +157022,47997,social commentary,1270218785 +157022,63072,dystopia,1273004266 +157022,63072,post-apocalyptic,1273004260 +157022,64497,john cleese,1272992229 +157022,64497,remake,1272992256 +157022,74458,ben kingsley,1275492771 +157022,74458,too long,1275492810 +157022,80126,assassin,1304172105 +157022,80126,long takes,1304172072 +157022,80126,slow,1304172141 +157022,80126,sniper,1304172076 +157022,82459,western,1310171724 +157022,88129,action,1327349999 +157022,88129,atmospheric,1327349964 +157022,88129,cars,1327350007 +157022,88129,crime,1327350004 +157022,88129,slow,1327349943 +157022,88129,tense,1327349950 +157022,88129,violence,1327350001 +157023,293,brave,1441327724 +157023,293,great acting,1441327703 +157023,293,sad ending,1441327720 +157030,102903,entertaining,1383664259 +157036,10,007,1161199943 +157036,10,james bond,1161199945 +157036,18,tarantino,1161197431 +157036,32,Brad Pitt,1161198426 +157036,32,Bruce Willis,1161198424 +157036,47,the best,1161194641 +157036,70,Tarantino,1161196012 +157036,110,Mel Gibson,1161197810 +157036,153,comic book,1161199071 +157036,153,super-hero,1161199074 +157036,153,superhero,1161199073 +157036,165,action,1161198856 +157036,165,Bruce Willis,1161198854 +157036,208,sci-fi,1161199676 +157036,231,Jim Carrey,1161199638 +157036,344,Dumb,1161199058 +157036,344,Jim Carrey,1161199056 +157036,356,Tom Hanks,1161199364 +157036,356,Vietnam,1161199366 +157036,364,animation,1161199612 +157036,364,Disney,1161199611 +157036,367,comic book,1161199550 +157036,367,funny,1161199558 +157036,367,jim carrey,1161199551 +157036,480,dinosaurs,1161198604 +157036,480,Steven Spielberg,1161198602 +157036,500,cross dressing,1161199468 +157036,500,Robin Williams,1161199464 +157036,589,Arnold Schwarzenegger,1161198574 +157036,592,super-hero,1161198819 +157036,597,girlie movie,1161200015 +157036,597,Julia Roberts,1161200014 +157036,780,action,1161198890 +157036,899,classical,1161194979 +157036,924,Stanley Kubrick,1161198501 +157036,1036,action,1161198558 +157036,1036,Bruce Willis,1161198556 +157036,1061,Brad Pitt,1161198402 +157036,1183,Oscar (Best Picture),1161200029 +157036,1183,Oscar (Best Supporting Actress),1161200026 +157036,1200,aliens,1161198700 +157036,1200,space,1161198698 +157036,1206,Stanley Kubrick,1161195881 +157036,1210,fantasy,1161198703 +157036,1210,sci-fi,1161198704 +157036,1210,space,1161198701 +157036,1227,Sergio Leone,1161195935 +157036,1240,Arnold Schwarzenegger,1161198560 +157036,1240,time travel,1161198563 +157036,1258,Stanley Kubrick,1161198507 +157036,1265,Bill Murray,1161199585 +157036,1265,seen more than once,1161199591 +157036,1265,super interesting,1161199602 +157036,1265,time travel,1161199588 +157036,1370,action,1161198844 +157036,1370,Bruce Willis,1161198841 +157036,1377,super-hero,1161199078 +157036,1377,superhero,1161199080 +157036,1527,Luc Besson,1161199168 +157036,1527,sci-fi,1161199167 +157036,1562,Action,1161199122 +157036,1573,John Travolta,1161200004 +157036,1573,Nicolas Cage,1161200005 +157036,1610,action,1161198720 +157036,1610,submarine,1161198723 +157036,1682,Jim Carrey,1161195252 +157036,1704,Robin Williams,1161198032 +157036,1721,drama,1161198996 +157036,1721,Oscar (Best Picture),1161199001 +157036,1721,romance,1161198998 +157036,1918,action,1161198911 +157036,1918,comedy,1161198912 +157036,2000,action,1161198745 +157036,2000,classic,1161198764 +157036,2001,action,1161198899 +157036,2001,Mel Gibson,1161198904 +157036,2076,sexuality,1161198079 +157036,2115,action,1161198783 +157036,2115,Harrison Ford,1161198781 +157036,2232,scifi cult,1161195441 +157036,2366,action,1161198670 +157036,2366,classic,1161198668 +157036,2404,action,1161199125 +157036,2411,action,1161199114 +157036,2571,virtual reality,1161195208 +157036,2617,mummy,1161199960 +157036,2617,stupid,1161199967 +157036,2628,fantasy,1161198948 +157036,2628,sci-fi,1161198964 +157036,2641,superhero,1161198978 +157036,2683,stupid,1161199730 +157036,2692,artistic,1161194815 +157036,2706,stupid,1161199524 +157036,2706,teen,1161199513 +157036,2948,007,1161200143 +157036,2949,007,1161200145 +157036,2959,Brad Pitt,1161194591 +157036,2985,cyborgs,1161200081 +157036,2985,sci-fi,1161200088 +157036,2991,007,1161200141 +157036,2997,surrealism,1161194560 +157036,3000,anime,1161194950 +157036,3114,Disney,1161199469 +157036,3114,Pixar,1161199472 +157036,3275,crime family,1161200251 +157036,3275,Pulp,1161200252 +157036,3328,samurai,1161196965 +157036,3386,politics,1161195279 +157036,3527,action,1161198804 +157036,3527,Arnold Schwarzenegger,1161198801 +157036,3578,Russell Crowe,1161197789 +157036,3697,action,1161199103 +157036,3751,family,1161199734 +157036,3751,funny,1161199745 +157036,3753,Mel Gibson,1161197834 +157036,3785,stupid,1161198217 +157036,3949,depressing,1161197090 +157036,3949,drugs,1161197088 +157036,3994,Bruce Willis,1161197655 +157036,4011,Guy Ritchie,1161198420 +157036,4023,life,1161195301 +157036,4152,chefs,1161197886 +157036,4246,girlie movie,1161198168 +157036,4310,History,1161199097 +157036,4310,World War II,1161199095 +157036,4388,comedy,1161198206 +157036,4963,crime,1161198411 +157036,4993,fantasy,1161197868 +157036,5218,animated,1161198149 +157036,5378,sci-fi,1161198969 +157036,5528,photography,1161197053 +157036,5528,Robin Williams,1161197051 +157036,5608,good german movie,1161194842 +157036,5669,documentary,1161199686 +157036,5669,guns,1161199687 +157036,5669,Michael Moore,1161199682 +157036,5679,japanese horror,1161200052 +157036,5872,007,1161200135 +157036,5903,dystopia,1161195348 +157036,5952,fantasy,1161197870 +157036,6365,virtual reality,1161195213 +157036,6377,Disney,1161199474 +157036,6377,Pixar,1161199476 +157036,6537,sci-fi,1161198991 +157036,6537,time travel,1161198983 +157036,6539,Johnny Depp,1161197986 +157036,6711,Japan,1161194461 +157036,6888,stupid,1161198212 +157036,6902,nice and kind,1161197625 +157036,6934,virtual reality,1161195211 +157036,7153,fantasy,1161197866 +157036,7323,seen more than once,1161195629 +157036,7371,Theater,1161194534 +157036,7438,Quentin Tarantino,1161198310 +157036,7458,Brad Pitt,1161198446 +157036,7573,007,1161200105 +157036,7649,sci-fi,1161199186 +157036,7649,TV,1161199189 +157036,7756,History,1161195680 +157036,8622,Michael Moore,1161199627 +157036,8622,politics,1161199618 +157036,8622,terrorism,1161199629 +157036,8636,comic book,1161198729 +157036,8636,super-hero,1161198730 +157036,8638,Best romantic movie in years,1161195026 +157036,8644,future,1161198872 +157036,8644,sci-fi,1161198882 +157036,8665,Matt Damon,1161199501 +157036,8810,action,1161199064 +157036,8810,Alien,1161199067 +157036,8970,Johnny Depp,1161197354 +157036,8977,History,1161197766 +157036,26152,super-hero,1161198831 +157036,32587,comic book,1161197639 +157036,33493,sci-fi,1161198771 +157036,33493,space,1161198773 +157036,33615,funny,1161195480 +157036,33679,Angelina Jolie,1161198437 +157036,33679,Brad Pitt,1161198435 +157036,34048,action,1161199035 +157036,34048,sci-fi,1161199042 +157036,34048,Tom Cruise,1161199034 +157036,39292,historical,1161196446 +157036,40148,guy ritchie,1161195747 +157036,41569,monkey,1161199531 +157036,41569,stupid,1161199539 +157036,44022,Comedy,1161198188 +157036,45447,bullshit history,1161195831 +157036,45722,Johnny Depp,1161197984 +157036,46530,comic book,1161199907 +157036,46530,stupid,1161199917 +157036,46530,superhero,1161199910 +157040,1217,stunning,1315976331 +157040,1217,too long,1315976325 +157040,1279,irreverant,1315885920 +157040,3147,too long,1316821539 +157040,3505,stupid ending,1317005067 +157040,3505,twist ending,1317005116 +157040,4276,few jokes,1318117222 +157040,31545,too long,1315976121 +157040,31545,touching,1315976101 +157042,296,Emerson must see,1164399309 +157042,590,AFI 100,1164399992 +157042,599,AFI 100,1164400631 +157042,599,Emerson must see,1164399392 +157042,898,AFI 100,1164399645 +157042,904,AFI 100,1164400559 +157042,904,Emerson must see,1164399321 +157042,905,romantic comedy,1163967874 +157042,909,AFI 100,1164400247 +157042,910,romantic comedy,1163967847 +157042,913,AFI 100,1164400533 +157042,913,Emerson must see,1164399257 +157042,919,AFI 100,1164400637 +157042,919,Emerson must see,1164399411 +157042,920,AFI 100,1164400505 +157042,920,Emerson must see,1164399196 +157042,922,AFI 100,1164400627 +157042,922,Emerson must see,1164399379 +157042,926,AFI 100,1164400408 +157042,926,Emerson must see,1164399059 +157042,953,AFI 100,1164400520 +157042,953,Emerson must see,1164399228 +157042,955,AFI 100,1164400447 +157042,955,Emerson must see,1164398836 +157042,1094,Emerson must see,1164398850 +157042,1103,AFI 100,1164400571 +157042,1103,Emerson must see,1164398974 +157042,1104,AFI 100,1164400614 +157042,1104,Emerson must see,1164399003 +157042,1193,AFI 100,1164399519 +157042,1206,AFI 100,1164400468 +157042,1206,Emerson must see,1164399120 +157042,1207,AFI 100,1164399577 +157042,1208,AFI 100,1164400430 +157042,1208,Emerson must see,1164399076 +157042,1213,AFI 100,1164400516 +157042,1213,Emerson must see,1164399210 +157042,1219,AFI 100,1164400552 +157042,1219,Emerson must see,1164399295 +157042,1228,AFI 100,1164399548 +157042,1252,AFI 100,1164400454 +157042,1252,Emerson must see,1164399106 +157042,1256,AFI 100,1164400492 +157042,1256,Emerson must see,1164398868 +157042,1260,Emerson must see,1164398911 +157042,1266,AFI 100,1164400280 +157042,1267,AFI 100,1164400541 +157042,1267,Emerson must see,1164399278 +157042,1284,Emerson must see,1164398755 +157042,1304,AFI 100,1164399630 +157042,1931,AFI 100,1164400110 +157042,1939,AFI 100,1164399603 +157042,2066,Emerson must see,1164398942 +157042,2076,Emerson must see,1164398781 +157042,2303,Emerson must see,1164398927 +157042,2648,AFI 100,1164400501 +157042,2648,Emerson must see,1164398884 +157042,2935,Emerson must see,1164398899 +157042,3089,Emerson must see,1164399091 +157042,3095,AFI 100,1164399496 +157042,3363,AFI 100,1164400041 +157042,3365,AFI 100,1164400596 +157042,3365,Emerson must see,1164399362 +157042,3424,Emerson must see,1164399143 +157042,3435,AFI 100,1164400488 +157042,3435,Emerson must see,1164399180 +157042,3451,AFI 100,1164400333 +157042,3788,Emerson must see,1164398736 +157042,3871,AFI 100,1164399835 +157042,4361,AFI 100,1164399671 +157042,4914,Emerson must see,1164398820 +157042,5291,Emerson must see,1164398959 +157042,6783,Emerson must see,1164398986 +157042,7070,Emerson must see,1164399043 +157042,8154,Emerson must see,1164399165 +157042,25788,Emerson must see,1164399347 +157042,25996,Emerson must see,1164399028 +157069,260,classic,1440045869 +157069,260,space,1440045887 +157086,260,EPIC,1436059094 +157086,260,space,1436059104 +157102,85394,anthropology,1444119229 +157102,85394,archeology,1444119239 +157102,132902,feminism,1444119187 +157102,132902,gender equality,1444119193 +157122,5903,dystopia,1440040920 +157122,8835,revenge,1440038270 +157122,134368,melissa mccarthy,1440019761 +157147,4095,70mm,1170585588 +157147,4095,lesbian,1170585601 +157163,593,BEST PICTURE,1170997216 +157163,593,Saturn Award (Best Makeup),1170997206 +157175,79091,funny,1439775606 +157191,260,cult classic,1431805655 +157191,260,EPIC,1431805646 +157224,112552,musicians,1438323076 +157224,112552,oscar (best editing),1438323076 +157224,112552,oscar (best supporting actor),1438323076 +157237,2571,alternate reality,1435839576 +157237,2571,dystopia,1435839579 +157237,2571,martial arts,1435839590 +157237,2571,virtual reality,1435839569 +157237,44191,dystopia,1435839544 +157237,44191,inspirational,1435839555 +157237,44191,politics,1435839557 +157237,44191,thought-provoking,1435839547 +157237,79132,alternate reality,1435839627 +157237,79132,complicated,1435839623 +157237,79132,intellectual,1435839631 +157237,79132,mindfuck,1435839621 +157237,79132,multiple interpretations,1435839644 +157237,79132,thought-provoking,1435839636 +157237,79132,visually appealing,1435839617 +157264,260,Science Fiction,1434375063 +157264,260,sword fight,1434375074 +157267,111628,alligators,1436579011 +157267,111628,sci-fi,1436579011 +157267,111628,snakes,1436579011 +157267,136513,halloween,1437267266 +157267,136513,puppets,1437267266 +157267,136513,standu up comedy,1437267266 +157338,2542,Owned,1167431015 +157347,7235,Takashi Miike,1138999114 +157347,27317,Takashi Miike,1138999115 +157347,27563,Takashi Miike,1139001593 +157361,45186,action,1444462021 +157361,45186,espionage,1444462028 +157361,53972,action,1444462007 +157361,53972,action packed,1444462003 +157383,260,EPIC,1438554939 +157383,260,futuristic,1438554948 +157383,260,saga,1438554973 +157403,260,classic,1436417469 +157403,260,classic sci-fi,1436417452 +157403,318,classic,1436417572 +157403,318,drama,1436417576 +157403,1197,classic,1436417605 +157403,1197,comedy,1436417602 +157441,356,based on a book,1421021087 +157441,356,comedy,1421021087 +157441,356,picaresque drama,1421021087 +157441,593,anthony hopkins,1422054659 +157441,593,creepy,1422054659 +157441,593,serial killer,1422054659 +157441,3365,Best Performance: John Wayne as Ethan Edwards,1198596122 +157441,5472,musical,1212201600 +157441,7941,Ingmar Bergman,1184806089 +157441,8423,Harold Lloyd,1209302921 +157441,8423,silent comedy,1209302933 +157441,37375,Academy Award: Best Actress,1246971180 +157441,55765,mafia,1228225170 +157441,134393,Crude humor,1452641216 +157441,134393,not subtle,1452641221 +157452,33903,it's all true,1156518541 +157506,260,classic,1441652451 +157506,260,cult film,1441652459 +157506,260,sci-fi,1441652434 +157506,260,space,1441652450 +157506,8961,Adventure,1441657049 +157506,8961,animation,1441657028 +157506,8961,comedy,1441657035 +157506,8961,Disney,1441657039 +157506,8961,imdb top 250,1441657043 +157506,8961,superhero,1441657031 +157520,6773,Fantastic!,1137888990 +157525,260,classic,1431629201 +157525,260,sci-fi,1431629193 +157531,1230,Noiva Nervosa,1146839412 +157531,1230,Noivo Neurótico,1146839412 +157531,51084,Date movie,1175443585 +157542,89492,believe in yourself,1439901652 +157542,89492,hope,1439901650 +157542,147847,adrenaline,1451892790 +157553,39307,poverty,1203638922 +157595,260,classic,1442368682 +157595,260,sci-fi,1442368675 +157626,296,gritty,1423243527 +157626,296,nonlinear,1423243527 +157626,296,violent,1423243527 +157634,923,black and white,1451955371 +157634,923,cinematography,1451955347 +157634,923,Highly quotable,1451955361 +157634,923,Innovative,1451955361 +157634,923,masterpiece,1451955343 +157634,923,poignant,1451955343 +157634,923,thought provoking,1451955365 +157634,8981,good acting,1451955513 +157634,86833,clever script,1451955599 +157634,86833,comedy,1451955602 +157634,86833,crude humor,1451955596 +157634,86833,female driven comedy,1451955606 +157634,86833,offbeat,1451955618 +157634,86833,poop humor,1451955594 +157650,49735,gay,1436632271 +157650,49735,lgbt,1436632265 +157650,91199,cute,1436630472 +157650,91199,introspective,1436630472 +157650,91199,playful,1436630472 +157650,94466,dark,1431952081 +157650,94466,intelligent,1431952081 +157650,94466,twisted,1431952081 +157650,114028,emotional,1435093488 +157650,114028,heartwarming,1435093488 +157650,114028,inspiring,1435093488 +157684,356,Tom Hanks,1305876137 +157684,919,fantasy,1305876268 +157684,1023,adapted from:book,1305876020 +157684,1023,Disney,1305876017 +157684,1028,surreal,1305876373 +157684,1035,Oscar (Best Picture),1305876043 +157684,1269,dark comedy,1305876250 +157684,1721,romance,1305876298 +157684,2028,Nathan Fillion,1305876321 +157684,3147,Tom Hanks,1305876496 +157684,4022,Tom Hanks,1305876176 +157684,5745,Alan Alda,1306099742 +157684,5816,magic,1305876503 +157684,6539,pirates,1305876336 +157684,8530,Ireland,1305876169 +157684,8970,fantasy,1305876150 +157684,8970,Johnny Depp,1305876144 +157684,34405,Nathan Fillion,1305589811 +157684,48780,twist ending,1305876059 +157684,50685,bittersweet,1305876031 +157684,56941,Gerard Butler,1305876092 +157684,56941,romantic,1305876096 +157684,62265,Colin Firth,1306387474 +157684,62265,Jeffery Dean Morgan,1306387523 +157684,63853,Australia,1305876259 +157684,63853,World War II,1305876256 +157684,66934,parody,1305876162 +157684,66934,superhero,1305876158 +157684,72718,Nathan Fillion,1305778433 +157684,81845,based on a true story,1305876120 +157684,81845,Oscar (Best Picture),1305876114 +157690,589,time travel,1358747076 +157690,1222,action,1388569277 +157690,3916,football,1388562783 +157732,1747,politics,1188263867 +157732,1747,satire,1188263867 +157732,2424,chick flick 212,1188263835 +157732,2424,hanks,1188263835 +157732,2424,ryan,1188263835 +157732,2947,action,1188263755 +157732,2947,bond,1188263756 +157732,3033,spoof,1188263880 +157732,3033,star wars,1188263880 +157732,7438,bloody,1188263801 +157732,7438,kung fu,1188263801 +157732,7438,Tarantino,1188263801 +157757,648,Action,1448856438 +157757,2571,sci-fi,1448856323 +157757,147940,Drama,1448856274 +157763,144148,4K,1444711642 +157763,144148,timelapse,1444711639 +157768,32,adventure,1378486251 +157768,32,Brad Pitt,1378486260 +157768,32,Bruce Willis,1378486258 +157768,32,complicated,1378486263 +157768,32,dystopia,1378486245 +157768,32,future,1378486248 +157768,32,post-apocalyptic,1378486243 +157768,32,sci-fi,1378486234 +157768,32,time travel,1378486237 +157768,32,twist ending,1378486240 +157768,32,violence,1378486254 +157768,111,atmospheric,1378488117 +157768,111,dark,1378488116 +157768,111,Jodie Foster,1378488120 +157768,589,apocalypse,1378489364 +157768,589,Arnold Schwarzenegger,1378489369 +157768,589,computers,1378489372 +157768,589,dystopia,1378489366 +157768,589,sci-fi,1378489359 +157768,589,time travel,1378489356 +157768,924,atmospheric,1378672626 +157768,924,philosophical,1378672632 +157768,924,sci-fi,1378672631 +157768,1199,dark comedy,1378488276 +157768,1199,dystopia,1378488274 +157768,1199,future,1378488281 +157768,1199,surreal,1378488279 +157768,1199,thought-provoking,1378488278 +157768,1240,Action,1378489328 +157768,1240,Arnold Schwarzenegger,1378489341 +157768,1240,artificial intelligence,1378489330 +157768,1240,future,1378489339 +157768,1240,great soundtrack,1378489337 +157768,1240,Nudity (Topless),1378489332 +157768,1240,robots,1378489331 +157768,1240,time travel,1378489334 +157768,1527,Bruce Willis,1378544138 +157768,1527,futuristic,1378544129 +157768,1527,Milla Jovovich,1378544130 +157768,1527,sci-fi,1378544136 +157768,1527,stylized,1378544132 +157768,1653,dystopia,1430157645 +157768,1653,sci-fi,1430157619 +157768,1653,space travel,1430157622 +157768,1653,visually appealing,1430157624 +157768,1676,Alien Invasion,1387749521 +157768,1676,aliens,1387749522 +157768,1676,Nudity (Topless),1387749526 +157768,2010,classic,1378488321 +157768,2010,German expressionism,1378488312 +157768,2010,science fiction,1378488315 +157768,2353,espionage,1378674132 +157768,2353,paranoid,1378674136 +157768,2353,thriller,1378674134 +157768,2672,alternate reality,1399487862 +157768,2672,average plot,1399487883 +157768,2672,belivable science,1399487858 +157768,2672,dystopia,1399487864 +157768,2672,nested virtualization,1399487865 +157768,2672,rated-R,1399487876 +157768,2672,simulated reality,1399487855 +157768,2672,virtual reality,1399487854 +157768,2672,virtual-reality,1399487852 +157768,2762,ghosts,1378489266 +157768,2819,assassins,1413749172 +157768,2819,cia,1413749163 +157768,2819,conspiracy,1413749162 +157768,2819,conspiracy theory,1413749173 +157768,2819,espionage,1413749176 +157768,2951,action,1378487715 +157768,2951,cinematography,1378487744 +157768,2951,gritty,1378487728 +157768,2951,morricone score,1378487713 +157768,2951,Sergio Leone,1378487711 +157768,2951,spaghetti western,1378487708 +157768,2959,dark comedy,1378486316 +157768,2959,philosophy,1378486314 +157768,2959,social commentary,1378486310 +157768,2959,twist ending,1378486312 +157768,3556,dreamlike,1378487455 +157768,3556,great ending,1378487459 +157768,3556,Kirsten Dunst,1378487453 +157768,3556,melancholy,1378487457 +157768,3556,stylized,1378487470 +157768,3556,visually appealing,1378487467 +157768,4226,black and white,1378486369 +157768,4226,dreamlike,1378486374 +157768,4226,great ending,1378486365 +157768,4226,memory,1378486357 +157768,4226,nonlinear,1378486359 +157768,4226,time loop,1378486363 +157768,4226,twist ending,1378486355 +157768,4776,corruption,1378561631 +157768,4776,detective thriller,1378561655 +157768,4776,great acting,1378561649 +157768,4776,Notable Nudity,1378561634 +157768,4776,Nudity (Topless - Brief),1378561641 +157768,4776,Nudity (Topless),1378561639 +157768,4878,atmospheric,1378486285 +157768,4878,high school,1378486289 +157768,4878,sci-fi,1378486292 +157768,4878,social commentary,1378486294 +157768,4878,surreal,1378486280 +157768,4878,thought-provoking,1378486301 +157768,4878,time travel,1378486282 +157768,4878,twist ending,1378486298 +157768,5445,dystopia,1378486470 +157768,5445,future,1378486465 +157768,5445,futuristic,1378486467 +157768,5445,Philip K. Dick,1378486462 +157768,5445,Steven Spielberg,1378486484 +157768,5445,surreal,1378486472 +157768,5445,time travel,1378486478 +157768,5445,Tom Cruise,1378486474 +157768,5445,violence,1378486475 +157768,5903,dystopia,1378487164 +157768,6790,dystopia,1378489049 +157768,6790,sci-fi,1378489047 +157768,6790,virtual reality,1378489042 +157768,7254,alternate reality,1378486515 +157768,7254,mathematics,1378486518 +157768,7254,Nudity (Full Frontal),1378486528 +157768,7254,sci-fi,1378486520 +157768,7254,time travel,1378486521 +157768,7254,twist ending,1378486523 +157768,7254,twists & turns,1378486526 +157768,8644,action,1378487084 +157768,8644,android(s)/cyborg(s),1378487087 +157768,8644,artificial intelligence,1378487082 +157768,8644,Isaac Asimov,1378487090 +157768,8644,sci-fi,1378487098 +157768,27773,disturbing,1378486338 +157768,27773,Nudity (Full Frontal),1378486336 +157768,27773,violent,1378486340 +157768,34319,action,1378487017 +157768,34319,dystopia,1378487015 +157768,34319,future,1378487020 +157768,34319,israel,1378487028 +157768,34319,Scarlett Johansson,1378487011 +157768,34319,sci-fi,1378487013 +157768,34319,surprise ending,1378487024 +157768,36517,conspiracy,1378489074 +157768,36517,great cinematography,1378489080 +157768,36517,social commentary,1378489078 +157768,40583,complicated,1378489104 +157768,40583,corruption,1378489106 +157768,40583,espionage,1378489108 +157768,40583,George Clooney,1378489090 +157768,40583,multiple storylines,1378489094 +157768,40583,tense,1378489096 +157768,40583,thought-provoking,1378489098 +157768,44191,comic book,1378487184 +157768,44191,dystopia,1378487173 +157768,44191,historical,1378487190 +157768,44191,imdb top 250,1378487187 +157768,44191,prison,1378487193 +157768,44191,teen,1378487179 +157768,44191,terrorism,1378487178 +157768,44191,thought-provoking,1378487175 +157768,44665,Film Noir,1378750410 +157768,44665,great ending,1378750403 +157768,44665,Nudity (Topless),1378750415 +157768,44665,organized crime,1378750407 +157768,44665,twist ending,1378750408 +157768,48516,organized crime,1378561608 +157768,48516,twist ending,1378561615 +157768,48516,undercover cop,1378561612 +157768,50842,Danish,1378488217 +157768,50842,dry humor,1378488221 +157768,50842,Lars von Trier,1378488219 +157768,51412,time travel,1413749398 +157768,52722,Kirsten Dunst,1378487433 +157768,54372,murder mystery,1378561477 +157768,54372,mystery,1378561479 +157768,54372,Nudity (Full Frontal),1378561475 +157768,57368,"""found footage""",1378750147 +157768,57368,mockumentary,1378750137 +157768,57368,sci-fi,1378750139 +157768,57368,shaky camera,1378750142 +157768,58559,action,1378487245 +157768,58559,dystopia,1378487247 +157768,58559,psychology,1378487249 +157768,58559,violence,1378487252 +157768,60074,Charlize Theron,1399487391 +157768,60074,plot twist,1399487402 +157768,60684,alternate reality,1378487208 +157768,60684,cold war,1378487209 +157768,60684,dystopia,1378487206 +157768,60684,Nudity (Topless),1378487204 +157768,60684,superhero,1378487212 +157768,60684,visually appealing,1378487216 +157768,60950,bisexual,1378544076 +157768,60950,philosophical,1378544080 +157768,60950,Scarlett Johansson,1378544074 +157768,60950,sexuality,1378544083 +157768,64497,Jennifer Connelly,1378560737 +157768,71106,friendship,1378750464 +157768,71106,funny,1378750462 +157768,71106,nerds,1378750471 +157768,71106,shit ending,1378750479 +157768,71106,time travel,1378750465 +157768,71530,cliche,1378487124 +157768,71530,dystopia,1378487111 +157768,71530,predictable,1378487122 +157768,71530,sci-fi,1378487109 +157768,71530,technology,1378487119 +157768,73321,Bible,1387748845 +157768,73321,Christianity,1387748846 +157768,73321,dystopia,1387748851 +157768,73321,dystopic future,1387748854 +157768,73321,post-apocalyptic,1387748849 +157768,73321,thought-provoking,1387748858 +157768,73321,twist ending,1387748860 +157768,77561,Gwyneth Paltrow,1378487371 +157768,77561,lack of character depth,1378487364 +157768,77561,Scarlett Johansson,1378487369 +157768,79357,cinematography,1378486581 +157768,79357,immortality,1378486576 +157768,79357,Nudity (Topless),1378486568 +157768,79357,philosophy,1378486570 +157768,79357,romance,1378486574 +157768,79357,sci-fi,1378486559 +157768,79357,surreal,1378486557 +157768,79357,thought provoking,1378486564 +157768,82459,atmospheric,1378487812 +157768,82459,Jeff Bridges,1378487817 +157768,82459,predictable,1378487823 +157768,84152,cinematography,1378486943 +157768,84152,drugs,1378486939 +157768,84152,entertaining,1378486941 +157768,84152,smart,1378486947 +157768,84152,thought provoking,1378486949 +157768,84152,visually appealing,1378486945 +157768,84954,angels,1378486976 +157768,84954,fate,1378486970 +157768,84954,original plot,1378486967 +157768,84954,Philip K. Dick,1378486966 +157768,84954,Romance,1378486974 +157768,86882,love,1378544018 +157768,86882,Owen Wilson,1378544009 +157768,86882,thought-provoking,1378544016 +157768,86882,time travel,1378544013 +157768,86882,Woody Allen,1378544007 +157768,89039,characters,1378672589 +157768,89039,cinematography,1378672578 +157768,89039,parallel universe,1378672582 +157768,89039,Parallels worlds,1378672581 +157768,89745,action,1378487308 +157768,89745,action packed,1378487307 +157768,89745,Gwyneth Paltrow,1378487311 +157768,89745,humorous,1378487314 +157768,89745,predictable,1378487303 +157768,89745,Scarlett Johansson,1378487301 +157768,89745,visually appealing,1378487318 +157768,89745,visually stunning,1378487315 +157768,90405,dystopia,1387748753 +157768,90405,future,1387748755 +157768,90430,clashing world views,1378488162 +157768,90430,good acting,1378488170 +157768,90430,satire,1378488158 +157768,90430,social commentary,1378488164 +157768,90600,man on the run,1378561569 +157768,90600,Nudity (Rear - Brief),1378561532 +157768,90600,Nudity (Topless - Brief),1378561561 +157768,90600,special forces,1378561565 +157768,91529,dark,1378487281 +157768,91529,fantasy,1378487272 +157768,91529,plot twist,1378487275 +157768,91660,aliens,1378560721 +157768,91660,Moscow,1378560719 +157768,91660,stranded,1378560714 +157768,91660,Visual effects,1378560716 +157768,92507,Camera work,1378674020 +157768,92507,CIA,1378674007 +157768,92507,conspiracy,1378674006 +157768,92507,espionage,1378674010 +157768,95309,apocalyptic,1378543953 +157768,95309,end of the world,1378543967 +157768,95309,Keira Knightley,1378543955 +157768,95309,sci-fi,1378543957 +157768,95510,funny,1378487414 +157768,95510,nerds kicking butt,1378487389 +157768,95875,action,1378487066 +157768,95875,mars,1378487047 +157768,95875,memory,1378487048 +157768,95875,Nudity (Topless),1378487052 +157768,95875,Philip K. Dick,1378487045 +157768,95875,remake,1378487058 +157768,95875,robots,1378487063 +157768,96610,complicated,1378486423 +157768,96610,dystopia,1378486425 +157768,96610,film noir,1378486427 +157768,96610,future,1378486431 +157768,96610,paranormal,1378486441 +157768,96610,sci-fi,1378486433 +157768,96610,time travel,1378486419 +157768,96811,bad ending,1378561691 +157768,96811,cinematography,1378561688 +157768,98809,adventure,1378486190 +157768,98809,based on a book,1378486201 +157768,98809,big budget,1378486194 +157768,98809,crude humor,1378486211 +157768,98809,magic,1378486209 +157768,98809,Peter Jackson,1378486206 +157768,99114,Funny,1387749382 +157768,99114,Spaghetti Western,1387749385 +157768,137595,dancing,1437250828 +157768,137595,funny,1437250828 +157768,137595,sexy,1437250828 +157786,707,jennifer Connelly,1329757314 +157786,2712,dreamlike,1304616213 +157786,2712,enigmatic,1304616209 +157786,2712,nudity,1304616278 +157786,2712,paranoia,1304616240 +157786,2712,psychological,1304616222 +157786,2712,sexuality,1304616226 +157786,2712,stanley kubrick,1304616231 +157786,2712,surreal,1304616270 +157786,2712,thriller,1304616235 +157786,3015,boom mike visible,1364155349 +157786,3569,explicit sex,1250891570 +157786,3706,film noir,1383169053 +157786,4002,sexual humor,1319910896 +157786,4617,boring,1253479556 +157786,4617,gambling,1253479565 +157786,4848,Laura Harring,1251885632 +157786,5110,boring,1398076642 +157786,5110,unfunny,1398076660 +157786,5617,black comedy,1298540061 +157786,6223,irritating,1417286563 +157786,6223,not a comedy,1417286541 +157786,6341,Boring,1303342886 +157786,7116,one of the most tense and suspenseful movies ever made,1355679436 +157786,8638,Verbose,1279759156 +157786,8800,boring,1280353394 +157786,8800,slow,1280353367 +157786,44761,film noir,1329757426 +157786,48142,1940s,1333367863 +157786,54997,silly,1375965046 +157786,61240,boring,1249898530 +157786,61240,preposterous,1249898521 +157786,63131,immature,1247694634 +157786,63131,obvious plot,1247694628 +157786,63131,unfunny,1247694661 +157786,65514,chinese propaganda,1306697596 +157786,65514,foreign language,1306697367 +157786,67997,boring,1251452116 +157786,67997,verbose,1251452103 +157786,71108,mystery,1327243621 +157786,71108,too long,1327243633 +157786,74275,gay,1281737114 +157786,75985,Jude Law,1298488391 +157786,77421,not a comedy,1304592372 +157786,78679,Graphic violence,1295799105 +157786,78679,Stupid ending,1295799114 +157786,79553,bad plot,1306697314 +157786,79553,predictable,1306697317 +157786,79553,unengaging sequel,1306697340 +157786,80489,unoriginal,1301865609 +157786,80831,remake of a swedish film,1300009098 +157786,82244,Remake,1321210245 +157786,83613,Boring,1329873203 +157786,83613,Cliched,1329873210 +157786,83613,Unintentional pastiche,1329873195 +157786,83613,Unintentionally laughable,1329873238 +157786,84601,Frantic ripoff,1327243346 +157786,86911,Boring,1326118962 +157786,86911,formulaic,1326119023 +157786,86911,Nasty characters,1326118990 +157786,86911,Not funny,1326118967 +157786,86911,Unlikable characters,1326118976 +157786,87192,Monster design poor,1328325407 +157786,87192,Not a comedy,1328325392 +157786,87192,Not funny,1328325398 +157786,87192,Rap,1328325420 +157786,88163,Cliched,1329882196 +157786,88163,Predictable,1329882191 +157786,88515,Condones police violence,1326240879 +157786,88515,Promotes suspension of due process,1326240910 +157786,88515,Unoriginal,1326240988 +157786,88744,Bad CGI,1326241306 +157786,88744,Excessive CGI,1326241316 +157786,88744,Plot holes,1326241493 +157786,89087,Poor plot,1327058371 +157786,89470,disappointing,1328324641 +157786,89470,lacks contemplative depth,1328324656 +157786,90439,boring,1330051195 +157786,93840,bad acting,1348879889 +157786,93840,brainless,1348879708 +157786,93840,Gore,1348879601 +157786,93840,half-baked,1348879765 +157786,93840,idiotic,1348879776 +157786,93840,imbecilic,1348879799 +157786,93840,moronic,1348879723 +157786,93840,original plot,1348880530 +157786,93840,pointless,1348879814 +157786,93840,sick,1348879676 +157786,93840,Stupid,1348879585 +157786,93840,unintelligent,1348879745 +157786,93840,witless,1348879740 +157786,98154,False history,1361376268 +157786,98154,Historically inaccurate,1361376251 +157786,98154,Inaccurate,1361376212 +157786,98239,implausible,1373491078 +157786,98961,American propaganda,1361376015 +157786,98961,Fictional,1361376045 +157786,98961,Inaccurate,1361376035 +157786,102123,apocalypse,1386635172 +157786,102123,boring,1386634488 +157786,102123,Immature,1386634480 +157786,102123,Not funny,1386634463 +157786,102123,Stupid,1386634473 +157786,102903,audience intelligence underestimated,1384623806 +157786,102903,shaky camera,1384623793 +157786,102903,stupid ending,1384623784 +157786,102993,predictable plot,1396214896 +157786,104576,distasteful,1383414824 +157786,104576,Gore,1383414690 +157786,104576,rape,1383414712 +157786,104576,violence against women,1383414736 +157786,105653,weak plot,1396271944 +157786,105653,weak plot twist,1396271954 +157786,107069,American propaganda,1395516194 +157786,107069,Celebrates militarism,1395516223 +157794,394,underrated,1136567470 +157794,3183,ed harris,1136894962 +157794,3183,sleeper,1136894961 +157794,3728,Great,1136593985 +157794,4642,Terrible,1135688095 +157794,5446,Great Movie!,1136593884 +157794,8362,cute and nice,1136807911 +157798,208,dark hero,1368658969 +157798,353,dark hero,1368658969 +157798,380,arnold,1368659020 +157798,485,arnold,1368659020 +157798,589,arnold,1368659019 +157798,592,dark hero,1368658968 +157798,866,neo-noir,1368659105 +157798,1240,arnold,1368659020 +157798,1291,treasure,1368658844 +157798,1391,mars,1368658948 +157798,2022,christian,1368659073 +157798,2022,jesus,1368658810 +157798,2115,treasure,1368658844 +157798,2405,treasure,1368658844 +157798,2617,treasure,1368658844 +157798,2916,arnold,1368659019 +157798,3527,sci-fi,1313755873 +157798,7318,jesus,1368658810 +157798,7361,short-term memory loss,1368659295 +157852,32,brad pitt,1431318136 +157852,32,dystopia,1431550916 +157852,32,end of the world,1431318107 +157852,32,imdb top 250,1431318147 +157852,32,post-apocalyptic,1431318129 +157852,318,Stephen King,1431281163 +157852,778,drugs,1431358057 +157852,778,Ewan McGregor,1431358055 +157852,1206,disturbing,1431357875 +157852,1206,dystopia,1431357880 +157852,1206,psychology,1431357878 +157852,1206,social commentary,1431357888 +157852,1214,atmospheric,1435959532 +157852,1214,futuristic,1435959541 +157852,1214,horror,1435959536 +157852,1214,sci-fi,1435959522 +157852,1214,space,1435959524 +157852,1214,space travel,1435959534 +157852,1214,tense,1435959530 +157852,1214,thriller,1435959539 +157852,1407,horror,1431358281 +157852,1407,slasher,1431358279 +157852,1407,teen,1431358292 +157852,1682,dystopia,1431551059 +157852,1729,drugs,1431345100 +157852,1729,Quentin Tarantino,1431345045 +157852,2273,Funny,1434889294 +157852,2580,black comedy,1447747642 +157852,2580,Katie Holmes,1447747640 +157852,2580,multiple storylines,1447747652 +157852,2628,bast background universe,1431357732 +157852,2628,Ewan McGregor,1431357711 +157852,2628,Natalie Portman,1431357704 +157852,2628,Star Wars,1431357701 +157852,3186,mental illness,1431285625 +157852,3785,parody,1435907629 +157852,3897,drugs,1431291911 +157852,3897,LSD,1431291907 +157852,3897,semi-autobiographical,1431291961 +157852,4995,biography,1432571756 +157852,4995,genius,1432571745 +157852,4995,inspirational,1432571753 +157852,4995,math,1432571750 +157852,4995,mathematics,1432571743 +157852,4995,mental illness,1432571747 +157852,4995,Russell Crowe,1432571748 +157852,4995,schizophrenia,1432571740 +157852,4995,true story,1432571751 +157852,5989,Christopher Walken,1431284329 +157852,5989,intelligent,1431284335 +157852,5989,Leonardo DiCaprio,1431284320 +157852,5989,twists & turns,1431284332 +157852,6711,loneliness,1433708690 +157852,8690,World War II,1431268244 +157852,8957,mindfuck,1431284268 +157852,26007,finnish,1431282379 +157852,26007,World War II,1431282382 +157852,26246,pasifistic,1431268362 +157852,26246,World War I,1431268376 +157852,27643,Aleksi Mäkelä,1431357593 +157852,27643,criminals,1431357627 +157852,27643,finnish,1431357622 +157852,27643,Jasper Pääkkönen,1431357625 +157852,27643,true story,1431357585 +157852,27643,Vesa-Matti Loiri,1431357601 +157852,27717,comedy,1431357955 +157852,27717,finnish,1431357950 +157852,27717,original,1431357965 +157852,31785,Aku Louhimies,1431268012 +157852,31785,butterfly effect,1431268033 +157852,31785,Finnish,1431268036 +157852,44974,disturbing,1431357089 +157852,44974,Ellen Page,1431357085 +157852,44974,thriller,1431357099 +157852,54503,drinking,1431358082 +157852,54503,high school,1431358078 +157852,54503,Teen movie,1431358074 +157852,54503,virginity,1431358077 +157852,58559,Christopher Nolan,1431281057 +157852,58559,Heath Ledger,1431281046 +157852,58559,thriller,1431281053 +157852,60950,Javier Bardem,1436092208 +157852,60950,philosophical,1436092192 +157852,60950,Scarlett Johansson,1436092201 +157852,60950,Woody Allen,1436092194 +157852,64620,history,1431282341 +157852,64620,politics,1431282339 +157852,64620,US President,1431282346 +157852,65230,dog,1431357226 +157852,65230,dogs,1431357236 +157852,68237,artificial intelligence,1431550890 +157852,68237,clones,1431550874 +157852,68237,dystopia,1431550862 +157852,68237,future,1431550873 +157852,68237,isolation,1431550880 +157852,68237,Kevin Spacey,1431550876 +157852,69481,anti-war,1431284304 +157852,69481,realistic,1431284296 +157852,69481,war,1431284302 +157852,70293,cooking,1431282252 +157852,70293,food,1431282255 +157852,70293,Julia Child,1431282265 +157852,70293,Meryl Streep,1431282253 +157852,70293,Stanley Tucci,1431282267 +157852,70293,uplifting,1431282261 +157852,71322,Dome Karukoski,1431282424 +157852,71322,losing virginity,1431282405 +157852,71322,teens,1431282412 +157852,72131,Michael Jackson,1436609082 +157852,72714,animal rights,1431267853 +157852,72714,intensive animal farming,1431267853 +157852,72714,vegan,1431267853 +157852,89060,slasher,1436564212 +157852,89118,disturbing,1431357276 +157852,89118,mindfuck,1431357290 +157852,89118,psychopaths,1431357287 +157852,93432,documentary,1434999144 +157852,93432,food,1434999142 +157852,93432,vegan,1434999140 +157852,104441,thriller,1431357194 +157852,106100,cowboy,1422142228 +157852,106100,drugs,1422142228 +157852,106100,oscar nominee: best picture,1422142228 +157852,106100,oscar nominee: lead actor,1422142228 +157852,106100,transexual,1422142228 +157852,108548,not a movie,1431543409 +157852,110106,Aku Louhimies,1431268144 +157852,110106,butterfly effect,1431268170 +157852,110106,finnish,1431268149 +157852,112556,David Fincher,1431281010 +157852,112556,mindfuck,1431281013 +157852,112556,Neal Patrick Harris,1431281023 +157852,112556,Psychopathy,1431281016 +157852,112556,Rosamund Pike,1431281025 +157852,112556,unpredictable,1431281008 +157852,113741,Freaked me out!,1432663312 +157852,113741,intelligent,1432663304 +157852,113741,mind bending,1432663292 +157852,113741,mystery,1432663296 +157852,113741,parallel universe,1432663288 +157852,113741,psychothriller,1432663300 +157852,114958,finnish movie,1450879965 +157852,115721,finnish,1431459777 +157852,115721,finnish summer,1431459776 +157852,115721,indie,1431459786 +157852,115721,road trip,1431459758 +157852,116161,Pacing,1431357794 +157852,116797,cryptography,1431280986 +157852,116797,history,1431280970 +157852,116797,World War II,1431280976 +157852,118900,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1431281118 +157852,118900,drugs,1431281137 +157852,118900,hiking,1431281089 +157852,121231,Creepy,1436040416 +157852,130496,finnish,1431357853 +157852,130496,Samuel L Jackosn,1431357855 +157852,133375,dark,1431284137 +157852,133375,Finnish,1431284132 +157852,133375,Horror,1431284130 +157852,133375,Thriller,1431284128 +157852,133391,unrealistic,1431365197 +157852,133677,running,1431939804 +157852,133677,Usain Bolt,1431939816 +157852,133679,family,1431940309 +157852,138034,finnish,1436774320 +157852,138034,Lauri Törhönen,1436774330 +157852,138034,Seen 2015,1436774354 +157912,232,aging,1363909183 +157912,232,China,1363909186 +157912,232,cooking,1363909188 +157912,232,food,1363909198 +157912,232,food/cooking,1363909194 +157912,232,minimalist,1363909202 +157912,232,photography,1363909215 +157912,232,warm,1363909265 +157912,1223,claymation,1363909138 +157912,1223,funny,1363909147 +157912,1223,gentle,1363909150 +157912,1223,rats,1363909131 +157912,1223,robots,1363909134 +157912,1223,space travel,1363909143 +157912,1223,Wallace & Gromit,1363909140 +157912,1243,metafiction,1363981832 +157912,1243,quirky,1363981831 +157912,1243,smart comedy,1363981836 +157912,2890,anti-war,1362187699 +157912,2890,black comedy,1362187702 +157912,2890,controversial,1362187706 +157912,2890,George Clooney,1362187688 +157912,2890,iraq,1362187721 +157912,2890,Mark Wahlberg,1362187710 +157912,2890,Middle East,1362187718 +157912,2890,satirical,1362187691 +157912,2890,stylized,1362187696 +157912,3030,good soundtrack,1328660796 +157912,3358,ghosts/afterlife,1363909757 +157912,3358,Meryl Streep,1363909874 +157912,3358,predictable,1363909795 +157912,3358,too long,1363909810 +157912,3358,too simple plot,1363909817 +157912,4027,1930s,1363908838 +157912,4027,adaptation,1363908844 +157912,4027,adventure,1363908901 +157912,4027,black comedy,1363908899 +157912,4027,Coen Brothers,1363908846 +157912,4027,epic,1363908903 +157912,4027,funny,1363908905 +157912,4027,George Clooney,1363908848 +157912,4027,great soundtrack,1363908849 +157912,4027,Musical,1363908853 +157912,4027,notable soundtrack,1363908851 +157912,4027,Period piece,1363908887 +157912,4027,Quirky,1363908893 +157912,4027,updated classics,1363908889 +157912,4874,jeff bridges,1347664787 +157912,4874,Kevin Spacey,1347664733 +157912,4874,outcast teaches us all a cheesy lesson,1347664737 +157912,4874,pretentious,1347664741 +157912,4874,psychiatrist as protagonist,1347664744 +157912,4874,story arc,1347664843 +157912,4973,Audrey Tautou,1363909572 +157912,4973,beautifully filmed,1363909584 +157912,4973,funny,1363909598 +157912,4973,great soundtrack,1363909577 +157912,4973,idealism,1363909579 +157912,4973,inspirational,1363909596 +157912,4973,Paris,1363909600 +157912,4973,quirky,1363909587 +157912,4973,stylized,1363909591 +157912,4979,ensemble cast,1362188146 +157912,4979,Wes Anderson,1362188138 +157912,4979,witty,1362188149 +157912,5445,artificial intelligence,1362187243 +157912,5445,based on a book,1362187228 +157912,5445,dystopia,1362187230 +157912,5445,future,1362187222 +157912,5445,futuristic,1362187225 +157912,5445,Philip K. Dick,1362187217 +157912,5445,surreal,1362187234 +157912,5445,Tom Cruise,1362187214 +157912,5902,based on a book,1363997172 +157912,5902,Charlie Kaufman,1363997156 +157912,5902,comedy,1363997174 +157912,5902,dark comedy,1363996627 +157912,5902,Meryl Streep,1363997158 +157912,5902,narrated,1363997160 +157912,5902,Nicolas Cage,1363996629 +157912,5902,Nudity (Topless - Notable),1363996631 +157912,5902,obsession,1363997163 +157912,5902,quirky,1363997165 +157912,5903,Christian Bale,1366398836 +157912,5903,dystopia,1366398840 +157912,5903,thought-provoking,1366398844 +157912,7143,historical,1362187374 +157912,7143,Japan,1362187379 +157912,7143,Japanese culture,1362187382 +157912,7143,Ken Watanabe,1362187370 +157912,7143,Tom Cruise,1362187362 +157912,27846,documentary,1363909504 +157912,27846,documentary critique,1363909463 +157912,27846,Noam Chomsky,1363909486 +157912,27846,visually appealing,1363909519 +157912,27904,based on a book,1363908042 +157912,27904,conspiracy,1363908053 +157912,27904,drug abuse,1363908048 +157912,27904,drugs,1363908044 +157912,27904,Keanu Reeves,1363908024 +157912,27904,Philip K. Dick,1363908026 +157912,27904,philosophical,1363908411 +157912,27904,psychology,1363908181 +157912,27904,Robert Downey Jr.,1363908484 +157912,27904,sacrifice,1363908411 +157912,27904,sci-fi,1363908031 +157912,27904,social commentary,1363908162 +157912,27904,twist ending,1363908116 +157912,27904,undercover cop,1363908477 +157912,27904,visually appealing,1363908033 +157912,27904,Winona Ryder,1363908038 +157912,31225,goal getting,1347664907 +157912,31225,Samuel L. Jackson,1347664890 +157912,38798,based on a book,1363640527 +157912,38798,bittersweet,1363640537 +157912,38798,character driven,1363640541 +157912,38798,cinematography,1363640549 +157912,38798,family bonds,1363640553 +157912,38798,siblings,1363640561 +157912,38798,Toni Collette,1363640566 +157912,38798,unrealistic ending,1363640627 +157912,39292,thought-provoking,1365951818 +157912,48744,controversial,1366408806 +157912,48744,depression,1366408809 +157912,48744,heartwarming,1366408812 +157912,48744,queer,1366408820 +157912,48744,relationships,1366408822 +157912,48744,sex scenes,1328491732 +157912,48744,unsimulated sex scenes,1366408802 +157912,51255,action,1366408332 +157912,51255,black comedy,1366408323 +157912,51255,british comedy,1366408321 +157912,51255,Nick Frost,1366408365 +157912,51255,parody,1366408325 +157912,51255,subgenre:cop buddies,1366408327 +157912,51255,twists & turns,1366408338 +157912,53123,bad realization,1363981415 +157912,53123,characters,1363981427 +157912,53123,good idea,1363981409 +157912,53123,music,1363981333 +157912,53123,nothing seems to happen,1363981452 +157912,53123,pretentious,1366408738 +157912,56367,adoption,1344636395 +157912,56788,1980s,1366408928 +157912,56788,afghanistan,1366408926 +157912,56788,Good dialogue,1366408920 +157912,56788,politics,1366408915 +157912,56788,true story,1366408917 +157912,58559,Atmospheric,1363909354 +157912,58559,Christopher Nolan,1363909380 +157912,58559,game theory,1363909362 +157912,58559,Heath Ledger,1363909367 +157912,58559,psychology,1363909356 +157912,58559,vigilante justice,1363909428 +157912,59985,good idea,1363898812 +157912,59985,I expected More,1363898722 +157912,60950,bisexual,1363910350 +157912,60950,narrated,1363910356 +157912,60950,scenic,1363910373 +157912,60950,sexuality,1363910372 +157912,60950,Spain,1363910370 +157912,60950,threesome,1363910368 +157912,60950,weddings,1363910383 +157912,62511,Charlie Kaufman,1364071587 +157912,62511,Meta Referential,1364071592 +157912,62511,Mise en abyme,1364071620 +157912,62511,Nudity (Topless),1364071623 +157912,62511,Philip Seymour Hoffman,1364071627 +157912,62511,postmodern,1364071632 +157912,62511,surreal,1364071629 +157912,62511,thought-provoking,1364071630 +157912,68833,buddhism,1342295154 +157912,68833,cooking,1342295158 +157912,68833,images,1342295165 +157912,68833,Zen,1342295484 +157912,69757,hollywood ending,1363956131 +157912,69757,humor,1363956121 +157912,69757,intelligent,1363956117 +157912,69757,Joseph Gordon-Levitt,1363956150 +157912,69757,music,1363956114 +157912,69757,relationships,1363956111 +157912,69757,stylized,1363956109 +157912,72694,doesn't live up to its full potential,1347624433 +157912,72694,drugs,1347624447 +157912,72694,healing,1347624423 +157912,72694,Kevin Spacey,1347624440 +157912,72694,psychology,1347624443 +157912,72694,Robin Williams,1347624453 +157912,72694,slow,1347624472 +157912,72694,suicide,1347624456 +157912,80551,feel good movie,1363955545 +157912,80551,Female middle-age angst,1363955428 +157912,80551,hollywood ending,1363955890 +157912,80551,idealized,1363955619 +157912,80551,India,1363954885 +157912,80551,Italy,1363954883 +157912,80551,Julia Roberts,1363954780 +157912,80551,lesson,1363955799 +157912,80551,relationships,1363954782 +157912,80551,scenery,1363954784 +157912,80551,sometimes condescending,1363955318 +157912,80551,soundtrack,1363955482 +157912,80551,well made,1363955024 +157912,85401,ending dialogue,1365693371 +157912,85401,Liv Tyler,1365693350 +157912,85401,Rainn Wilson,1365693358 +157912,85401,realistic,1365693346 +157912,86345,honest,1362771492 +157912,86345,insightful,1362771489 +157912,86345,Louis C.K.,1362771416 +157912,86345,not a movie,1362771423 +157912,86345,smart,1362771495 +157912,86345,stand-up comedy,1362771417 +157912,86345,swearing,1362771413 +157912,86345,violence,1362771420 +157912,86347,explicit language,1364083235 +157912,86347,Louis C.K.,1364083190 +157912,86347,witty,1364083185 +157912,87194,conversion,1363910104 +157912,87194,Good acting,1363909974 +157912,87194,Martin Sheen,1363909969 +157912,87194,missionary,1363910119 +157912,87194,predictable,1363909957 +157912,87194,religion,1363909959 +157912,90430,clashing world views,1363910773 +157912,90430,good acting,1363910764 +157912,90430,lifting the veil,1363910789 +157912,90430,real life,1363910733 +157912,90430,real time,1363910735 +157912,90430,social commentary,1363910749 +157912,91077,based on a book,1363909303 +157912,91077,coping,1363909317 +157912,91077,family bonds,1363909286 +157912,91077,funny,1363909329 +157912,91077,George Clooney,1363909282 +157912,91077,grief,1363909288 +157912,91077,healing,1363909325 +157912,91077,intelligent,1363909291 +157912,91077,warm,1363909331 +157912,93498,based on a true story,1365851067 +157912,93498,good performance,1365851053 +157912,93498,politics,1365851055 +157912,93498,Woody Harrelson,1365851058 +157912,93805,alternate history,1364078537 +157912,93805,crowdfunded,1364078559 +157912,93805,Finnish,1364078567 +157912,93805,inconsistencies,1364078708 +157912,93805,overrated,1364078550 +157912,93805,spaceships,1364078542 +157912,93805,steampunk,1364078539 +157912,93805,too ambitious,1364078647 +157912,93805,unpredictable,1364078544 +157912,94959,coming of age,1363909010 +157912,94959,funny,1363909018 +157912,94959,original,1363909022 +157912,94959,quirky,1363909001 +157912,94959,stylized,1363909004 +157912,94959,Wes Anderson,1363909007 +157912,94959,wilderness,1363909027 +157912,95558,child's perspective,1366570116 +157912,95558,great acting,1366570122 +157912,95558,surreal,1366570128 +157912,98154,American Civil War,1365951878 +157912,98154,great script,1365951867 +157912,98154,historically inaccurate,1365951870 +157912,98154,politics,1365951873 +157912,98154,racism,1365951875 +157922,260,hero's journey,1435058385 +157922,260,space epic,1435058373 +157936,59784,Kung Fu,1226445587 +157952,4886,seen more than once,1168454084 +157957,1193,Oscar (Best Picture),1222964655 +157976,2788,British,1297796917 +158040,3578,tragic hero,1179716947 +158045,27456,dor,1180413068 +158045,45722,nyong,1180350127 +158045,49647,try,1172051079 +158045,51077,sip,1180407697 +158052,27772,not remotely scary,1145139362 +158060,6565,Equestrian,1299390940 +158060,59126,atheism,1247013981 +158060,59126,Christianity,1247013993 +158060,59126,Documentary,1247013986 +158060,59126,fundamentalism,1247013999 +158060,59126,islam,1247014008 +158060,59126,thought-provoking,1247014004 +158060,59126,topic:religion,1247014019 +158080,62,bands,1284358711 +158080,62,cheesy,1284358725 +158080,62,classical music,1284358698 +158080,62,composer,1284358718 +158080,62,feel-good,1284358731 +158080,62,high school,1284358741 +158080,62,sappy,1284358752 +158080,1197,quirky,1283565099 +158080,1225,classical music,1284358968 +158080,1225,historically inaccurate,1284359010 +158080,1225,music,1284358976 +158080,1225,tom hulce,1284358987 +158080,1243,absurd,1283564919 +158080,1243,dialogue driven,1283564928 +158080,1243,Shakespeare,1283564960 +158080,1243,smart,1283564947 +158080,1243,smart comedy,1283564911 +158080,1243,witty,1283564944 +158080,1297,80s,1283564667 +158080,1297,college,1283564772 +158080,1297,lasers,1283564621 +158080,1297,nerds,1283564613 +158080,1297,popcorn,1283564854 +158080,1297,quotable,1283564678 +158080,1297,revenge,1283564818 +158080,1297,science,1283564640 +158080,1297,smart,1283564630 +158080,1297,smart comedy,1283564795 +158080,1297,Val Kilmer,1283564660 +158080,1297,witty,1283564780 +158080,1357,Australia,1284358941 +158080,1357,classical music,1284358848 +158080,1357,music is key to story (not Musical genre),1284358930 +158080,1357,musicians,1284358900 +158080,1357,piano,1284358857 +158080,1357,rachmaninoff,1284358885 +158080,2054,disney,1284358458 +158080,2054,kids movie,1284358442 +158080,2054,Rick Moranis,1284358451 +158080,2108,kind,1324721266 +158080,2108,magical realism,1324721252 +158080,2108,surreal,1324721257 +158080,2253,dreamlike,1324721322 +158080,2253,kind,1324721326 +158080,2253,music,1324721316 +158080,2253,Robin Williams,1324721310 +158080,2253,surreal,1324721298 +158080,2291,dreamlike,1324721376 +158080,2291,johnny depp,1324721390 +158080,2291,kind,1324721380 +158080,2291,surreal,1324721360 +158080,2291,tim burton,1324721365 +158080,2291,winona ryder,1324721370 +158080,2858,midlife crisis,1284390077 +158080,3949,addiction,1284389946 +158080,3949,dark,1284389957 +158080,3949,drugs,1284389925 +158080,3949,heroin,1284389970 +158080,3949,loneliness,1284389955 +158080,3949,unrelentingly bleak,1284390012 +158080,6934,cyberpunk,1283563826 +158080,7185,80s,1289108002 +158080,7185,aliens,1289107979 +158080,7185,cia,1289108021 +158080,7185,clowns,1289108083 +158080,7185,comedy,1289107992 +158080,7185,corny,1289108273 +158080,7185,dominatrix,1289108304 +158080,7185,predictable,1289108016 +158080,7185,ridiculous,1289108313 +158080,8939,memory,1324721497 +158080,8939,robin williams,1324721492 +158080,32825,cheesy,1284358110 +158080,32825,cryonics,1284358103 +158080,32825,subtitles,1284358093 +158080,32825,time travel,1284358023 +158080,55276,ethics,1330130579 +158080,55276,George Clooney,1330130596 +158080,55276,lawyers,1330130574 +158080,55276,Tilda Swinton,1330130586 +158080,59315,comic book,1284358657 +158080,59315,engineering,1284358645 +158080,59315,Gwyneth Paltrow,1284358628 +158080,59315,Robert Downey Jr.,1284358617 +158080,59315,sci-fi,1284358599 +158080,59753,japanese,1324722070 +158080,59753,surreal,1324722049 +158080,59753,tragic,1324722065 +158080,71131,current events,1284389479 +158080,71131,documentary,1284389406 +158080,71131,gay,1284389473 +158080,71131,kansas,1284389525 +158080,71131,louis theroux,1284389429 +158080,71131,religion,1284389465 +158080,74624,ancient civilization,1283564531 +158080,74624,astronomy,1283564548 +158080,74624,atheism,1283564336 +158080,74624,historical,1283564465 +158080,74624,hypatia,1283564342 +158080,74624,lack of historical context,1283564437 +158080,74624,library of alexandria,1283564489 +158080,74624,library setting,1283564500 +158080,74624,mathematics,1283564555 +158080,74624,philosophy,1283564355 +158080,74624,rationality,1283564566 +158080,79702,adolescent,1284358177 +158080,79702,cute,1284358238 +158080,79702,duel,1284358207 +158080,79702,garage band,1284358229 +158080,79702,geeky,1284358235 +158080,79702,hyperactive,1284358260 +158080,79702,music,1284358218 +158080,79702,stylized,1284358495 +158080,79702,video games,1284358195 +158080,84152,smart drugs,1324721587 +158080,84152,transhumanism,1324721584 +158080,90439,based on a true story,1323581691 +158080,90439,finance,1323581609 +158080,90439,Kevin Spacey,1323581665 +158080,90439,New York City,1323581674 +158080,90439,realistic,1323581600 +158080,90439,smart people,1323581625 +158080,90439,tense,1323581637 +158080,90439,Wall Street,1389595128 +158080,90439,Zachary Quinto,1323581653 +158080,106782,based on a true story,1389595248 +158080,106782,economics,1389594862 +158080,106782,finance,1389595212 +158080,106782,gratuitous debauchery,1389594866 +158080,106782,inaccurate,1389594866 +158080,106782,length,1389594879 +158080,106782,Martin Scorsese,1389595267 +158080,106782,message of book mostly lost,1389594866 +158080,106782,profanity,1389594879 +158080,106782,sex scenes,1389595306 +158080,106782,unlikeable characters,1389594866 +158080,106782,Wall Street,1389594862 +158103,16,corruption,1333808551 +158103,16,gamble,1333808551 +158103,16,mafia,1333808551 +158103,16,soundtrack,1333808395 +158103,16,violence,1333808551 +158103,82,fantasy,1334408193 +158103,82,strong woman,1334408173 +158103,111,Classic,1200426350 +158103,265,exaggerated,1333809811 +158103,347,disturbing,1334410214 +158103,535,too long,1335034923 +158103,593,madness,1432463221 +158103,593,psychothriller,1432463221 +158103,593,serial killer,1432463221 +158103,750,black and white,1333808289 +158103,750,idiocy,1333808290 +158103,750,sarcasm,1333808290 +158103,750,unreasonable,1333808290 +158103,780,alien invasion,1387123274 +158103,780,aliens,1387123277 +158103,780,apocalypse,1387123288 +158103,780,aviation,1387123280 +158103,780,sci-fi,1387123283 +158103,858,Al Pacino,1333806025 +158103,858,family relationships,1333806024 +158103,858,italians,1333806024 +158103,858,mafia,1333806024 +158103,858,Marlon Brando,1333806024 +158103,858,organized crime,1333806024 +158103,858,photography,1333806025 +158103,858,soundtrack,1333806024 +158103,904,assassination,1333805422 +158103,904,thriller,1333805422 +158103,1077,funny,1333807402 +158103,1077,ironic,1333807402 +158103,1077,slapstick,1333807402 +158103,1092,Sharon Stone,1163645623 +158103,1092,suspense,1163645601 +158103,1120,freedom of expression,1333809471 +158103,1175,colors,1333810051 +158103,1175,photography,1333810076 +158103,1189,1980,1430904142 +158103,1189,Errol Morris,1430904149 +158103,1189,wrongly accused,1430904127 +158103,1193,insubordination,1333805762 +158103,1193,opression,1333805762 +158103,1193,rebel,1333805762 +158103,1199,atmospheric,1433671567 +158103,1199,black comedy,1433671363 +158103,1199,bureaucracy,1433671425 +158103,1199,dark comedy,1433671369 +158103,1199,futuristic,1433671577 +158103,1199,satire,1433671564 +158103,1199,surreal,1433671366 +158103,1199,thought-provoking,1433671375 +158103,1201,American Civil War,1333805884 +158103,1201,photography,1333805884 +158103,1201,soundtrack,1333805884 +158103,1221,family relationships,1333805942 +158103,1221,immigration,1333805942 +158103,1221,mafia,1333805942 +158103,1228,black and white,1333805513 +158103,1228,boxing,1333805513 +158103,1228,brother-brother relationship,1333805513 +158103,1228,Decadence,1333805514 +158103,1228,photography,1333805514 +158103,1228,soundtrack,1333805514 +158103,1230,beginning of relationship,1333806724 +158103,1230,comedy,1333806724 +158103,1230,couple relationship,1333806724 +158103,1230,funny,1333806724 +158103,1230,neurosis,1333806724 +158103,1234,bets,1333805348 +158103,1234,cheating,1333805336 +158103,1234,Paul Newman,1163648481 +158103,1234,poker,1333805348 +158103,1234,soundtrack,1333805364 +158103,1244,impossible relationship,1333805792 +158103,1244,love,1333805792 +158103,1244,photography,1333805792 +158103,1258,fear,1333807463 +158103,1258,thriller,1333807437 +158103,1279,BRIEF ENCOUNTERS,1358703167 +158103,1279,multilingual,1358703104 +158103,1279,multiple locations,1358703180 +158103,1279,multiple storylines,1358703107 +158103,1279,nocturnal,1358703109 +158103,1279,Roberto Benigni,1358703098 +158103,1279,taxi drivers,1358703137 +158103,1279,Winona Ryder,1358703114 +158103,1292,funny,1333808953 +158103,1292,naive,1333808953 +158103,1304,friendship,1333808699 +158103,1304,fugitive,1333808684 +158103,1304,irreverent,1333808641 +158103,1304,soundtrack,1333808618 +158103,1304,western,1333808677 +158103,1305,impossible relationship,1333805663 +158103,1305,isolation,1333805662 +158103,1305,jealousy,1333805662 +158103,1305,photography,1333805663 +158103,1305,soundtrack,1333805662 +158103,1354,loneliness,1333808860 +158103,1354,love,1333808860 +158103,1354,mental illness,1333808860 +158103,1354,psychological,1333808860 +158103,1354,relationships,1333808860 +158103,1354,Tragedy,1333808878 +158103,1682,big brother,1333807332 +158103,1682,rebel,1333807332 +158103,1732,characters,1439123247 +158103,1732,funny,1439123286 +158103,1732,violence,1439123293 +158103,1784,psychological,1333810229 +158103,1784,relationships,1333810229 +158103,2028,photography,1333809399 +158103,2065,fantasy,1333805542 +158103,2068,disturbing,1333808225 +158103,2068,mother-son relationship,1333808225 +158103,2068,stepfather,1333808225 +158103,2160,Atmospheric,1358692668 +158103,2160,horror,1358692670 +158103,2160,Roman Polanski,1358692673 +158103,2160,satanism,1358692676 +158103,2160,scary,1358692678 +158103,2160,surreal,1358692681 +158103,2160,WITCHCRAFT,1358692682 +158103,2176,Alfred Hitchcock,1200426674 +158103,2176,classic,1200426671 +158103,2264,cheating,1333810394 +158103,2360,disturbing,1333806516 +158103,2360,dogma 95,1333806516 +158103,2360,family relationships,1333806516 +158103,2360,Groundbreaking,1333806516 +158103,2467,censorship,1333809653 +158103,2467,inquisition,1333809653 +158103,2467,investigation,1333809653 +158103,2976,Robert De Niro,1163648716 +158103,2997,surrealism,1333810183 +158103,3075,insanity,1430903773 +158103,3075,loneliness,1430903778 +158103,3075,MENTAL ILLNESS,1430903769 +158103,3075,paranoid,1430903781 +158103,3075,Roman Polanski,1430903784 +158103,3386,boring,1333810416 +158103,3578,history,1368371160 +158103,3578,Oscar (Best Picture),1368371169 +158103,3578,Ridley Scott,1368371227 +158103,3578,Rome,1368371192 +158103,3578,Russell Crowe,1368371181 +158103,3578,slavery,1368371196 +158103,3578,sword fight,1368371144 +158103,3655,foods,1333804871 +158103,3655,PROSTITUTES,1333804871 +158103,3655,surrealism,1333804871 +158103,3910,assassination,1333806440 +158103,3910,blindness,1333806440 +158103,3910,disturbing,1333806441 +158103,3910,injustice,1333806441 +158103,3910,love,1333806441 +158103,3910,mother-son relationship,1333806441 +158103,3949,disturbing,1370097002 +158103,3949,drug abuse,1370097053 +158103,3949,DRUG ADDICTION,1370097071 +158103,3949,emotional,1370097004 +158103,3949,heroin,1370097057 +158103,3949,intense,1370096996 +158103,3949,loneliness,1370097022 +158103,3949,quick cuts,1370097067 +158103,3949,Romance,1370097024 +158103,3949,sex,1370097062 +158103,3949,tragic,1370097035 +158103,4409,dark,1333804816 +158103,4409,fearful,1333809312 +158103,4662,hillarious,1387653712 +158103,4705,funny,1333808597 +158103,4973,colors,1333806828 +158103,4973,details,1333806828 +158103,4973,innocence,1333806828 +158103,4973,magic,1333806828 +158103,4973,naive,1333806828 +158103,4973,photography,1333806828 +158103,4973,soundtrack,1333806828 +158103,5004,slapstick,1333809495 +158103,5014,father daughter relationship,1333809895 +158103,5014,love,1333809895 +158103,5319,cheating,1333807746 +158103,5339,cynical,1389609022 +158103,5339,Liam Neeson,1389609053 +158103,5339,Mia Farrow,1389609016 +158103,5339,midlife crisis,1389609025 +158103,5339,relationships,1389608998 +158103,5339,Woody Allen,1389609001 +158103,5368,heroism,1333804309 +158103,5368,World War II,1333804309 +158103,5368,WWII,1333804309 +158103,5464,mafia,1333809425 +158103,5607,alzheimer,1333804698 +158103,5989,cheating,1333810093 +158103,6666,meaningless,1370097580 +158103,6666,satirical,1370097589 +158103,6997,labor unions,1333804932 +158103,7063,insanity,1443215098 +158103,7063,Klaus Kinski,1443215095 +158103,7063,megalomania,1443215102 +158103,7063,South America,1443215088 +158103,7147,fantasy,1333810165 +158103,7151,17th century,1427032667 +158103,7151,visually appealing,1427032651 +158103,7151,visually stunning,1427032971 +158103,7156,unreasonable,1333808165 +158103,7361,fantasy,1333806051 +158103,7361,love,1333806051 +158103,7361,photography,1333806051 +158103,7371,ethics,1333806319 +158103,7371,revenge,1333806319 +158103,7371,setting,1333806343 +158103,7419,anxiety,1333810295 +158103,7419,bad luck,1333810323 +158103,7419,crazy people,1333810323 +158103,7419,surrealism,1333810295 +158103,7456,Argentina,1200426541 +158103,7456,childhood,1333809206 +158103,7456,innocence,1333809206 +158103,7771,great soundtrack,1333805081 +158103,7934,funny,1333807174 +158103,7934,jazz,1333807174 +158103,7934,mimicry,1333807174 +158103,7934,multiple personalities,1333807174 +158103,8800,betrayal,1333808344 +158103,8800,big brother,1333805251 +158103,8800,cloning,1333805250 +158103,8800,future,1333805251 +158103,8800,great soundtrack,1333805251 +158103,8800,impossible love,1333808325 +158103,8800,impossible relationship,1333808318 +158103,8800,multi language,1333805250 +158103,8800,photography,1333805251 +158103,8800,soundtrack,1333805251 +158103,8950,dark,1333809748 +158103,8950,disturbing,1333809748 +158103,8950,Dostoyevsky,1333809748 +158103,8950,guilty,1333809748 +158103,8970,children,1333810033 +158103,8970,fantasy,1333810033 +158103,30749,riot,1333809912 +158103,30820,mental imbalance,1333809145 +158103,30820,thought-provoking,1333809145 +158103,31410,authoritarianism,1333806164 +158103,31410,irrationality,1333806164 +158103,31410,Madness,1333806164 +158103,31410,World War II,1333806164 +158103,33903,complex relationships,1390251972 +158103,33903,germany,1390251960 +158103,33903,interesting concept,1390251950 +158103,33903,politics,1390251963 +158103,33903,psychology,1390251966 +158103,33903,thought-provoking,1390251954 +158103,34542,documentary,1340553802 +158103,34542,mental illness,1340553804 +158103,36529,Africa,1387122986 +158103,36529,arms dealer,1387122989 +158103,36529,based on a true story,1387122945 +158103,36529,cocaine,1387123141 +158103,36529,drugs,1387123137 +158103,36529,Ethan Hawke,1387123101 +158103,36529,Jared Leto,1387123125 +158103,36529,Justice,1387122966 +158103,36529,new york city,1387122977 +158103,36529,Nicolas Cage,1387122957 +158103,36529,organized crime,1387122936 +158103,36529,politics,1387122938 +158103,36529,World Politics,1387122981 +158103,44555,big brother,1333808025 +158103,44555,cold war,1333808025 +158103,44555,communism,1333808025 +158103,44555,disturbing,1333808025 +158103,46976,chicago,1358692412 +158103,46976,fantasy,1333988906 +158103,46976,modern fantasy,1358692445 +158103,46976,surreal,1358692397 +158103,46976,Will Ferrell,1358692419 +158103,46976,writers,1358692402 +158103,48193,photography,1333809764 +158103,48193,soundtrack,1333809764 +158103,48214,Wim Wenders,1209876265 +158103,49299,Buenos Aires,1333807973 +158103,49299,community,1333807973 +158103,49299,leadership,1333807973 +158103,49299,politics,1333807973 +158103,49299,social commentary,1333807973 +158103,49299,social criticism,1333807973 +158103,51662,amazing photography,1402238509 +158103,51662,based on comic,1402238505 +158103,51662,historical,1402238513 +158103,51662,sword fight,1402238494 +158103,54997,loyalty,1333810346 +158103,57147,assassination,1333804787 +158103,57147,moral dilemma,1333804787 +158103,61236,animated,1387635382 +158103,61236,animation,1387635378 +158103,61236,cruelty of war,1387635351 +158103,61236,history,1387635357 +158103,61236,Middle East,1387635395 +158103,61236,post-traumatic stress disorder,1387635361 +158103,61236,psychological,1387635401 +158103,61236,slow paced,1387635429 +158103,61236,surreal,1387635367 +158103,61236,thought-provoking,1387635343 +158103,61236,war,1387635370 +158103,64839,decadent,1333807259 +158103,64839,disturbing,1333807260 +158103,64839,unfaithfulness,1333807260 +158103,69458,decadence,1333804527 +158103,71108,anger,1333805046 +158103,71108,fear,1333805046 +158103,71108,german village,1333805045 +158103,71108,hate,1333805046 +158103,71108,repression,1333805046 +158103,71108,sexual abuse,1333805046 +158103,72405,addiction,1333809022 +158103,72405,corruption,1333804897 +158103,72405,crime,1333809022 +158103,72405,drugs,1333804905 +158103,72405,injustice,1333809022 +158103,72405,surrealism,1333804897 +158103,81819,immigrants,1333804628 +158103,81845,friendship,1333809871 +158103,81845,leadership,1333809871 +158103,85012,Palme d'Or,1365307266 +158103,87004,3D,1358692588 +158103,87004,artistic,1358692575 +158103,87004,boring,1358692513 +158103,87004,dance,1358692503 +158103,87004,documentary,1358692505 +158103,87004,nothing happens,1358692554 +158103,87004,slow paced,1358692527 +158103,87004,Wim Wenders,1358692499 +158103,89759,realism,1333809320 +158103,89896,Atmospheric,1358692331 +158103,89896,black and white,1358692351 +158103,89896,slow pace,1358692304 +158103,90439,big corporations,1358692058 +158103,90439,business,1358691979 +158103,90439,career,1358692000 +158103,90439,Cynicism,1358692047 +158103,90439,ethics,1358691985 +158103,90439,financial crisis,1358692006 +158103,90866,fantasy,1333805161 +158103,94896,black comedy,1358692211 +158103,94896,Jack Black,1358692231 +158103,94896,Richard Linklater,1358692226 +158103,94896,true story,1358692234 +158103,96020,Argentina,1370135330 +158103,96020,Buenos Aires,1370135330 +158103,96020,internet,1370135302 +158103,96020,loneliness,1370135316 +158103,96020,modern life,1370135297 +158103,96020,relationship,1370135280 +158103,99114,visually appealing,1437203542 +158103,100556,documentary,1453663822 +158103,100556,Indonesia,1453663817 +158103,100556,thought provoking,1453663807 +158103,105429,politics,1434872791 +158103,105429,Robert Reich,1434872776 +158103,106916,Anti-Hero,1419113584 +158103,106916,based on a true story,1419113602 +158103,106916,Christian Bale,1419113617 +158103,106916,soundtrack,1419113626 +158103,108979,anime,1432463133 +158103,109374,fantasy,1407102459 +158103,109374,visually appealing,1407102462 +158103,116155,British,1446367643 +158103,116155,Loneliness,1446367634 +158103,116155,Philosophical,1446367637 +158103,116797,history,1427032573 +158103,118880,Antihero,1449964373 +158103,118880,black and white,1449964386 +158103,118880,vampires,1449964383 +158104,260,action,1442768831 +158104,260,science fantasy,1442768841 +158104,260,science fiction,1442768812 +158104,260,space adventure,1442768820 +158107,260,classic,1432622431 +158107,260,sci-fi,1432622440 +158107,112552,dramatic,1432622574 +158107,112552,intense,1432622574 +158107,112552,music,1432622574 +158155,1907,Disney animated feature,1187469750 +158155,3752,Jim Carrey,1187469751 +158155,3785,satirical,1187469717 +158155,4447,Reese Witherspoon,1187469751 +158155,5377,british comedy,1187469715 +158155,5679,japanese horror,1187469716 +158163,215,cerebral,1414219944 +158163,215,conversation,1414219947 +158163,215,dialogue,1414219923 +158163,215,intelligent,1414219954 +158163,215,minimalist,1414219972 +158163,215,reflective,1414219942 +158163,215,romantic,1414219964 +158163,215,witty,1414219965 +158163,8638,dialogue,1414219978 +158163,8638,great dialogue,1414219985 +158163,8638,romantic,1414219980 +158163,100714,cerebral,1414220021 +158163,100714,conversation,1414220019 +158163,100714,dialogue,1414220018 +158163,100714,philosophical,1414220017 +158170,1214,aliens,1306031815 +158170,1214,atmospheric,1306031825 +158170,1214,horror,1306031828 +158170,1214,Oscar (Best Effects - Visual Effects),1306031833 +158170,1214,outerspace,1306031818 +158170,1214,scary,1306031843 +158170,1214,sci-fi,1306031835 +158170,1214,space,1306031821 +158170,1214,space travel,1306031823 +158170,1214,thriller,1306031837 +158170,2571,alternate reality,1306031671 +158170,2571,artificial intelligence,1306031634 +158170,2571,atmospheric,1306031674 +158170,2571,awareness,1306031662 +158170,2571,consciousness,1306031666 +158170,2571,cyberpunk,1306031638 +158170,2571,dystopia,1306031632 +158170,2571,philosophical,1306031654 +158170,2571,philosophy,1306031649 +158170,2571,post apocalyptic,1306031651 +158170,2571,sci-fi,1306031639 +158170,2571,stylized,1306031641 +158170,2571,surreal,1306031647 +158170,2571,thought-provoking,1306031645 +158170,2571,virtual reality,1306031642 +158170,2719,beautiful,1306032411 +158170,2719,dark,1306032413 +158170,2719,haunted house,1306032406 +158170,2719,Scary,1306032408 +158170,2762,afterlife,1306032096 +158170,2762,Atmospheric,1306032094 +158170,2762,Bruce Willis,1306032079 +158170,2762,death,1306032100 +158170,2762,Drama,1306032075 +158170,2762,eerie,1306032104 +158170,2762,enigmatic,1306032092 +158170,2762,ghosts/afterlife,1306032077 +158170,2762,mindfuck,1306032081 +158170,2762,psychological,1306032082 +158170,2762,suspense,1306032085 +158170,2762,thriller,1306032088 +158170,2762,touching,1306032090 +158170,2762,twist ending,1306032084 +158170,2858,beautiful,1306030541 +158170,2858,beauty,1306030548 +158170,2858,dark comedy,1306030531 +158170,2858,dreams,1306030529 +158170,2858,Oscar (Best Picture),1306030526 +158170,2858,passionate,1306030551 +158170,2858,satirical,1306030508 +158170,2858,sexuality,1306030512 +158170,2858,social commentary,1306030515 +158170,2858,surrealism,1306030510 +158170,2858,thought-provoking,1306030518 +158170,2959,atmospheric,1306029336 +158170,2959,dark comedy,1306029324 +158170,2959,disturbing,1306029356 +158170,2959,Edward Norton,1306029347 +158170,2959,mental illness,1306029349 +158170,2959,philosophical,1306029362 +158170,2959,psychological,1306029329 +158170,2959,psychology,1306029331 +158170,2959,quirky,1306029333 +158170,4308,beautiful,1306029579 +158170,4308,beautifully filmed,1306029596 +158170,4308,colourful,1306029530 +158170,4308,Ewan McGregor,1306029524 +158170,4308,great soundtrack,1306029600 +158170,4308,lyrical,1306029519 +158170,4308,musical,1306029522 +158170,4308,Nicole Kidman,1306029527 +158170,4308,Oscar (Best Art Direction - Set Decoration),1306029562 +158170,4308,Oscar (Best Costume Design),1306029565 +158170,4308,passionate,1306029536 +158170,4308,quirky,1306029546 +158170,4308,seen more than once,1306029548 +158170,4308,sentimental,1306029544 +158170,4308,stylized,1306029541 +158170,4370,artificial intelligence,1306031596 +158170,4370,Bittersweet,1306031598 +158170,4370,emotional,1306031617 +158170,4370,fairy tale,1306031609 +158170,4370,future,1306031619 +158170,4370,Jude Law,1306031622 +158170,4370,Steven Spielberg,1306031611 +158170,4720,afterlife,1306032047 +158170,4720,alternate reality,1306032045 +158170,4720,atmospheric,1306032049 +158170,4720,beautiful,1306032056 +158170,4720,dark,1306032059 +158170,4720,death,1306032061 +158170,4720,Drama,1306032040 +158170,4720,eerie,1306032036 +158170,4720,gothic,1306032033 +158170,4720,haunted house,1306032031 +158170,4720,Isolation,1306032026 +158170,4720,Nicole Kidman,1306032029 +158170,4720,religion,1306032023 +158170,4720,scary,1306032039 +158170,4720,seen more than once,1306032021 +158170,4720,twist ending,1306032019 +158170,4873,awareness,1306028827 +158170,4873,beautiful,1306029258 +158170,4873,cinematography,1306028827 +158170,4873,consciousness,1306028827 +158170,4873,dreams,1306028827 +158170,4873,lucidity,1306028827 +158170,4873,metaphysics,1306029250 +158170,4873,mindblowing,1306028827 +158170,4873,philosophy,1306028867 +158170,4873,strange,1306028859 +158170,4873,surreal,1306029253 +158170,4873,visually stunning,1306029264 +158170,4878,alternate timeline,1306029277 +158170,4878,atmospheric,1306029279 +158170,4878,dreamlike,1306029286 +158170,4878,mind,1306029304 +158170,4878,philosophy,1306029288 +158170,4878,psychological,1306029309 +158170,4878,psychology,1306029275 +158170,4878,surreal,1306029284 +158170,4878,thought-provoking,1306029313 +158170,4878,time travel,1306029310 +158170,4973,beautiful,1306029484 +158170,4973,beautifully filmed,1306029473 +158170,4973,fairy tale,1306029494 +158170,4973,french,1306029507 +158170,4973,great soundtrack,1306029501 +158170,4973,quirky,1306029476 +158170,4973,romance,1306029478 +158170,4973,stylized,1306029487 +158170,4973,surreal,1306029491 +158170,4973,whimsical,1306029480 +158170,5445,corruption,1306031775 +158170,5445,dystopia,1306031732 +158170,5445,future,1306031741 +158170,5445,futuristic,1306031744 +158170,5445,mystery,1306031779 +158170,5445,precognition,1306031752 +158170,5445,Steven Spielberg,1306031734 +158170,5679,cinematography,1306032308 +158170,5679,creepy,1306032306 +158170,5679,disturbing,1306032303 +158170,5679,mystery,1306032325 +158170,5679,scary,1306032312 +158170,5679,suspense,1306032310 +158170,5679,thriller,1306032314 +158170,5679,weird,1306032319 +158170,6502,British,1306031976 +158170,6502,death,1306032000 +158170,6502,great soundtrack,1306031982 +158170,6502,horror,1306031979 +158170,6502,low budget,1306031994 +158170,6502,survival,1306031987 +158170,6502,suspense,1306031990 +158170,6502,thriller,1306031984 +158170,6502,visually appealing,1306031993 +158170,6502,Zombie,1306031971 +158170,6502,zombies,1306031974 +158170,6874,cinematography,1306029410 +158170,6874,nonlinear,1306029389 +158170,6874,Quentin Tarantino,1306029379 +158170,6874,quirky,1306029386 +158170,6874,stylized,1306029383 +158170,6874,visually appealing,1306029398 +158170,7361,bittersweet,1306030403 +158170,7361,dreamlike,1306030413 +158170,7361,imagination,1306030411 +158170,7361,memory,1306030398 +158170,7361,nonlinear,1306030396 +158170,7361,quirky,1306030423 +158170,8874,black comedy,1306032570 +158170,8874,British,1306032538 +158170,8874,british comedy,1306032568 +158170,8874,comedy,1306032540 +158170,8874,hilarious,1306032544 +158170,8874,parody,1306032546 +158170,8874,zombies,1306032565 +158170,27904,animated,1306071888 +158170,27904,conspiracy,1306071893 +158170,27904,drugs,1306071897 +158170,27904,paranoia,1306071896 +158170,27904,surreal,1306071875 +158170,27904,surveillance,1306071883 +158170,27904,visually appealing,1306071878 +158170,27904,weird,1306071881 +158170,44191,beautiful,1306031707 +158170,44191,comic book,1306031685 +158170,44191,dark,1306031703 +158170,44191,inspirational,1306031686 +158170,44191,passionate,1306031711 +158170,44191,philosophy,1306031688 +158170,44191,politics,1306031690 +158170,44191,prison,1306031698 +158170,44191,social commentary,1306031691 +158170,44191,thought-provoking,1306031692 +158170,45081,atmospheric,1306032495 +158170,45081,cinematography,1306032515 +158170,45081,creepy,1306032505 +158170,45081,dimensions,1306032500 +158170,45081,horror,1306032502 +158170,45081,Horror Game,1306032477 +158170,45081,post-apocalyptic,1306032484 +158170,45081,stylized,1306032490 +158170,45081,video game,1306032471 +158170,46976,heartbreaking,1306030475 +158170,46976,insanity,1306030478 +158170,46976,metaphysics,1306030470 +158170,46976,modern fantasy,1306030481 +158170,46976,storytelling,1306030472 +158170,46976,surreal,1306030466 +158170,46976,Will Ferrell,1306030498 +158170,46976,writing,1306030484 +158170,48780,atmospheric,1306032170 +158170,48780,complicated,1306032168 +158170,48780,dark,1306032177 +158170,48780,enigmatic,1306032179 +158170,48780,great ending,1306032159 +158170,48780,magic,1306032173 +158170,48780,mystery,1306032182 +158170,48780,psychological,1306032163 +158170,48780,steampunk,1306032161 +158170,48780,twist ending,1306032157 +158170,53468,1950s,1306033286 +158170,53468,black comedy,1306033288 +158170,53468,clever,1306033291 +158170,53468,post-apocalyptic,1306033282 +158170,53468,satire,1306033276 +158170,53468,social commentary,1306033274 +158170,53468,witty,1306033280 +158170,53468,zombies,1306033272 +158170,54190,Beatles,1306029621 +158170,54190,beautiful,1306029645 +158170,54190,extremely creative,1306029637 +158170,54190,great sound track,1306029629 +158170,54190,passionate,1306029648 +158170,54190,visually appealing,1306029632 +158170,54771,aliens,1306031914 +158170,54771,bodysnatchers,1306031898 +158170,55247,adventure,1306071749 +158170,55247,Alaska,1306071733 +158170,55247,based on a true story,1306071730 +158170,55247,beautiful,1306071744 +158170,55247,bittersweet,1306071736 +158170,55247,great soundtrack,1306071740 +158170,55247,nature,1306071755 +158170,55247,self discovery,1306071727 +158170,55247,wilderness,1306071753 +158170,55872,inspirational,1306029833 +158170,55872,Musical,1306029829 +158170,55872,power of music,1306029814 +158170,55872,thought-provoking,1306029817 +158170,55872,unique,1306029819 +158170,56339,creepy,1306032375 +158170,56339,eerie,1306032379 +158170,56339,fairy tale,1306032373 +158170,56339,foreign language,1306032368 +158170,56339,HAUNTED BY THE PAST,1306032355 +158170,56339,haunted house,1306032385 +158170,56339,horror,1306032366 +158170,56339,paranormal,1306032364 +158170,56339,twist ending,1306032360 +158170,57368,"""found footage""",1306031944 +158170,57368,fake authentic,1306031963 +158170,57368,Handycam,1306031932 +158170,57368,mockumentary,1306031934 +158170,57368,startling,1306031953 +158170,70286,aliens,1306033312 +158170,70286,atmospheric,1306033315 +158170,70286,intelligent,1306033318 +158170,70286,mockumentary,1306033320 +158170,70286,role reversal,1306033331 +158170,70286,social commentary,1306033322 +158170,70286,social segregation,1306033326 +158170,71535,dark comedy,1306033217 +158170,71535,funny,1306033219 +158170,71535,horror,1306033224 +158170,71535,parody,1306033229 +158170,71535,post-apocalyptic,1306033215 +158170,71535,witty,1306033232 +158170,71535,zombies,1306033230 +158170,72393,abduction,1306032264 +158170,72393,aliens,1306032266 +158170,72393,awareness,1306032283 +158170,72393,conspiracy theory,1306032269 +158170,72393,Milla Jovovich,1306032285 +158170,72393,paranormal,1306032272 +158170,72393,psychology,1306032277 +158170,72393,space,1306032280 +158170,79702,based on a comic,1306029420 +158170,79702,cultural references,1306029426 +158170,79702,fantasy,1306029427 +158170,79702,funny,1306029423 +158170,79702,music,1306029459 +158170,79702,music is key to story (not Musical genre),1306029454 +158170,79702,quirky,1306029430 +158170,79702,stylized,1306029433 +158170,79702,video games,1306029445 +158170,79702,videogame like,1306029438 +158170,79702,visually appealing,1306029436 +158187,589,visual effects,1378511442 +158227,36056,redemption,1421155793 +158227,36056,revisionist western,1421155793 +158227,36056,western,1421155793 +158227,41627,samurai,1421155423 +158227,122749,samurai,1421155523 +158242,1252,complicated,1445691055 +158242,5506,romance,1443299169 +158242,5956,Daniel Day-Lewis,1445715503 +158242,27922,jerry seinfeld,1435081625 +158242,27922,stand up comedy,1435081625 +158242,27922,very funny,1435081625 +158242,44761,slow,1443550260 +158242,55820,slow paced,1443357984 +158242,55820,suspense,1443357949 +158242,55820,tension,1443357994 +158242,55820,thriller,1443357951 +158242,55820,twist ending,1443357982 +158242,66240,Ellen Muth,1344683520 +158242,74530,harry potter wannabe,1275688282 +158242,78209,drug use,1296745727 +158242,78209,vomit,1296745727 +158242,79185,action,1444421663 +158242,79185,adventure,1444421674 +158242,79185,fun,1444421656 +158242,80549,Emma Stone,1374940454 +158242,80549,witty,1374940456 +158242,83374,slow,1303662715 +158242,87306,Elle Fanning,1337658157 +158242,88129,slow,1443714788 +158242,88163,plot twist,1363420163 +158242,88163,Steve Carell,1363420178 +158242,89745,joss whedon,1337657979 +158242,89745,Robert Downey Jr.,1345656653 +158242,93766,CGI,1339850599 +158242,93840,Fran Kranz,1345827481 +158242,93840,joss whedon,1345827320 +158242,93840,witty,1345827340 +158242,94018,special effects,1344224726 +158242,94018,Taylor Kitsch,1344224739 +158242,95875,Kate Beckinsale,1352827225 +158242,97938,visual effects,1361550176 +158242,99114,Christoph Waltz,1366136105 +158242,99114,Funny,1366136086 +158242,99114,Leonardo DiCaprio,1366136115 +158242,102125,Robert Downey Jr.,1378466203 +158242,102125,silly,1378466196 +158242,103228,Ron Perlman,1389983477 +158242,103253,ending kinda ruined it,1390069016 +158242,103253,visually stunning,1390068966 +158242,103372,funny,1390080179 +158242,103372,Sandra Bullock,1390080163 +158242,104841,sandra bullock,1389460050 +158242,104841,visually appealing,1389460047 +158242,106072,visually appealing,1392494478 +158242,106072,visually stunning,1392494434 +158242,106487,adaptation,1390676431 +158242,106487,Jennifer Lawrence,1390676410 +158242,106489,too long,1395608080 +158242,107883,Nimrat Kaur,1410060453 +158242,109864,Based on a TV show,1394952369 +158242,109864,fun,1394921444 +158242,109864,nostalgic,1394921444 +158242,109864,witty dialogue,1394952295 +158242,111364,bland hero,1408824485 +158242,111743,funny,1409768859 +158242,111743,witty,1409768884 +158242,111759,Emily Blunt,1411071763 +158242,116823,Jennifer Lawrence,1432489384 +158242,120799,Illogical,1443206362 +158242,120799,Plot holes,1443206397 +158242,122882,action,1435081665 +158242,122882,visually appealing,1435081668 +158242,133195,action,1449318018 +158255,81788,crime drama,1452313509 +158255,81788,good ending,1452313503 +158255,81788,jailbreak,1452313499 +158255,81788,Russell Crowe,1452313500 +158255,81788,thriller,1452313506 +158265,32,adventure,1248635175 +158265,32,Post apocalyptic,1248635182 +158265,32,sci-fi,1248635153 +158265,32,time travel,1248635164 +158265,1080,British,1248634492 +158265,1080,Monty Python,1248634502 +158265,1200,androids,1248635415 +158265,1200,sci-fi,1248635409 +158265,1200,SPACE TRAVEL,1248635409 +158265,1214,aliens,1248635360 +158265,1214,horror,1248635356 +158265,1214,monster,1248635377 +158265,1214,sci-fi,1248635346 +158265,1214,space,1248635344 +158265,1214,space travel,1248635350 +158265,1320,prequel,1248635710 +158265,1682,original plot,1248636039 +158265,1997,unscary,1248636578 +158265,2329,Nazis,1248635975 +158265,2329,Neo-Nazis,1248635967 +158265,2329,racism,1248635980 +158265,2329,violence,1248635984 +158265,3550,bauhaus!,1248635856 +158265,3550,goth,1248635861 +158265,6378,action,1248635252 +158265,6378,Crime,1248635257 +158265,6378,robbery,1248635264 +158265,6502,post-apocalyptic,1248636183 +158265,6502,pseudo-zombies,1248636206 +158265,6888,stupid,1248636637 +158265,8914,clever,1248635050 +158265,8914,low budget,1248635033 +158265,8914,time travel,1248635039 +158265,26258,atmospheric,1248636093 +158265,26258,existentialism,1248636097 +158265,26258,surreal,1248636115 +158265,27773,based on comic,1248636254 +158265,27773,macabre,1248636239 +158265,27773,violent,1248636247 +158265,48780,atmospheric,1248635937 +158265,48780,based on a book,1248635930 +158265,48780,enigmatic,1248635940 +158265,48780,magic,1248635928 +158265,55820,boring,1248636459 +158265,55820,senseless,1248636438 +158265,55820,slow paced,1248636356 +158265,58154,based on a book,1248635109 +158265,58154,historical,1248635112 +158265,58295,based on a true story,1248635802 +158265,58295,robbery,1248635811 +158265,61323,stupidity,1248634576 +158265,62113,based on a book,1248634855 +158270,260,Every nerd should have seen more than once,1433093773 +158270,260,light saber,1433093783 +158277,47,crime,1332448570 +158277,47,dark,1332448574 +158277,47,disturbing,1332448576 +158277,47,psychology,1332448563 +158277,47,religion,1332448581 +158277,47,serial killer,1332448567 +158277,47,twist ending,1332448566 +158277,593,crime,1332532758 +158277,593,disturbing,1332532756 +158277,593,mental illness,1332532754 +158277,593,psychological,1332532747 +158277,593,psychology,1332532742 +158277,593,serial killer,1332532751 +158277,593,suspense,1332532749 +158277,2762,mindfuck,1332448700 +158277,2762,psychological,1332448696 +158277,2762,psychology,1332448702 +158277,2762,suspense,1332448707 +158277,2762,touching,1332448690 +158277,2762,twist ending,1332448681 +158277,5989,con artists,1332532433 +158277,5989,twists & turns,1332532427 +158277,74275,black comedy,1332532595 +158277,74275,Con Artist,1332532599 +158277,74275,crime,1332532600 +158282,92259,foreign,1451990738 +158282,92259,friendship,1451990767 +158282,92259,inspirational,1451990758 +158291,1924,Bela Lugosi,1366657074 +158291,1924,Edward D. Wood Jr.,1366657082 +158291,49591,gadgets,1366656981 +158291,49591,hero,1366656884 +158291,49591,irony,1366656862 +158296,36,death penalty,1409357077 +158296,36,drama,1409357090 +158296,36,Nun,1409357081 +158296,111,atmospheric,1403927758 +158296,111,classic,1403927725 +158296,111,dark,1403927731 +158296,111,disturbing,1403927729 +158296,111,mental illness,1403927733 +158296,111,New York City,1403927740 +158296,111,Robert De Niro,1403927721 +158296,165,action,1403932579 +158296,165,Bruce Willis,1403932572 +158296,165,New York City,1403932584 +158296,165,Samuel L. Jackson,1403932574 +158296,165,terrorism,1403932582 +158296,173,cheesy lines,1404181022 +158296,173,corruption,1404181031 +158296,173,dystopia,1404181018 +158296,173,future,1404181017 +158296,173,police,1404181015 +158296,173,police corruption,1404181012 +158296,173,sci-fi,1404181049 +158296,364,2D animation,1403932005 +158296,527,based on a true story,1406139484 +158296,527,black and white,1406139433 +158296,527,drama,1406139426 +158296,593,cannibalism,1404019498 +158296,593,classic,1404019511 +158296,593,drama,1404019513 +158296,593,fbi,1404019508 +158296,593,investigation,1404019510 +158296,593,mental illness,1404019520 +158296,593,psychology,1404019496 +158296,593,serial killer,1404019493 +158296,593,suspense,1404019502 +158296,648,CIA,1403927446 +158296,648,espionage,1403927468 +158296,648,Jean Reno,1403927450 +158296,648,predictable,1403927454 +158296,648,spies,1403927465 +158296,648,Tom Cruise,1403927436 +158296,680,artificial intelligence,1404357643 +158296,680,black and white,1404180413 +158296,680,computer,1404357576 +158296,680,conscience,1404357606 +158296,680,drama,1404357584 +158296,680,dystopia,1404180369 +158296,680,mind control,1404357632 +158296,680,mystery,1404357595 +158296,680,satire,1404357618 +158296,680,sci-fi,1404357597 +158296,680,sexism,1404357625 +158296,733,Alcatraz,1403927369 +158296,733,biological warfare,1403927374 +158296,733,Nicolas Cage,1403927368 +158296,733,prison,1403927377 +158296,733,Sean Connery,1403927366 +158296,733,terrorism,1403927371 +158296,904,Alfred Hitchcock,1403928545 +158296,904,classic,1403928550 +158296,904,James Stewart,1403928546 +158296,904,suspense,1403928553 +158296,904,voyeurism,1403928549 +158296,908,Alfred Hitchcock,1403928607 +158296,908,classic,1403928612 +158296,908,Martin Landau,1403928646 +158296,908,mistaken identity,1403928621 +158296,908,suspense,1403928617 +158296,908,thriller,1403928615 +158296,924,boring,1403928814 +158296,924,slow,1403928808 +158296,933,Alfred Hitchcock,1403928659 +158296,933,anti-hero,1403928680 +158296,933,atmospheric,1403928674 +158296,933,Monaco,1403928676 +158296,1036,action,1403932491 +158296,1036,Bruce Willis,1403932492 +158296,1036,christmas,1403932497 +158296,1036,humorous,1403932495 +158296,1036,police,1403932525 +158296,1036,skyscraper,1403932518 +158296,1036,terrorism,1403932505 +158296,1036,thriller,1403932503 +158296,1088,1960s,1404358687 +158296,1088,1980s,1404358690 +158296,1088,dancing,1404358668 +158296,1088,music,1404358674 +158296,1088,romance,1404358672 +158296,1092,suspense,1406659494 +158296,1092,thriller,1406659498 +158296,1200,aliens,1403932367 +158296,1200,atmospheric,1403932377 +158296,1200,sci-fi,1403932365 +158296,1200,Sigourney Weaver,1403932370 +158296,1200,space,1403932368 +158296,1200,suspense,1403932375 +158296,1206,cult film,1403928853 +158296,1206,disturbing,1403928844 +158296,1206,drama,1404180501 +158296,1206,dystopia,1403928828 +158296,1206,rape,1403928835 +158296,1206,surreal,1404180478 +158296,1206,violent,1404180505 +158296,1214,aliens,1403932432 +158296,1214,atmospheric,1403932439 +158296,1214,dark,1403932441 +158296,1214,futuristic,1403932449 +158296,1214,horror,1403932436 +158296,1214,sci-fi,1403932430 +158296,1214,Sigourney Weaver,1403932443 +158296,1214,space,1403932433 +158296,1214,suspense,1403932435 +158296,1219,Alfred Hitchcock,1403928481 +158296,1219,black and white,1403928493 +158296,1219,classic,1403928488 +158296,1219,mental illness,1403928499 +158296,1219,motel,1403928524 +158296,1219,psychology,1403928483 +158296,1219,serial killer,1403928490 +158296,1219,suspenseful,1403928486 +158296,1219,thriller,1403928500 +158296,1231,astronaut,1404185037 +158296,1231,drama,1404184984 +158296,1231,history,1404185047 +158296,1258,atmospheric,1403928437 +158296,1258,cult film,1403928439 +158296,1258,Horror,1403928442 +158296,1258,Jack Nicholson,1403928429 +158296,1258,psychological,1403928435 +158296,1258,psychology,1403928448 +158296,1258,Stanley Kubrick,1403928432 +158296,1258,suspense,1403928445 +158296,1342,horror,1407626901 +158296,1346,drama,1404019245 +158296,1346,erotic,1404019187 +158296,1346,fantasy,1404019204 +158296,1346,incest,1404019229 +158296,1346,romance,1404019212 +158296,1346,sex,1404019242 +158296,1346,thriller,1404019247 +158296,1346,transformation,1404019221 +158296,1370,action,1403932540 +158296,1370,airport,1403932549 +158296,1370,Bruce Willis,1403932538 +158296,1370,explosions,1403932557 +158296,1552,airplane,1404016952 +158296,1552,John Cusack,1404016950 +158296,1552,Nicolas Cage,1404016942 +158296,1587,action,1404181186 +158296,1587,adventure,1404181188 +158296,1587,fantasy,1404181190 +158296,1597,conspiracy,1404016920 +158296,1597,Julia Roberts,1404016930 +158296,1597,Mel Gibson,1404016918 +158296,1597,mental hospital,1404016923 +158296,1597,mystery,1404016928 +158296,1597,thought-provoking,1404016927 +158296,1597,thriller,1404016916 +158296,1608,flight,1403926536 +158296,1608,Harrison Ford,1403926529 +158296,1608,president,1403926526 +158296,1608,secret service,1403926534 +158296,1608,US President,1403926513 +158296,1625,atmospheric,1404360952 +158296,1625,mindfuck,1404360956 +158296,1625,Mystery,1404360957 +158296,1625,psychological,1404360939 +158296,1625,surprise ending,1404360981 +158296,1625,suspense,1404360943 +158296,1625,thriller,1404360946 +158296,1625,twist ending,1404360941 +158296,1645,cheating husband,1404361108 +158296,1645,demons,1404361086 +158296,1645,devil,1404361081 +158296,1645,lawyers,1404361095 +158296,1645,Nudity (Full Frontal),1404361092 +158296,1645,psychological,1404361098 +158296,1645,psychology,1404361100 +158296,1645,surreal,1404361084 +158296,1645,twist ending,1404361103 +158296,1686,drama,1407627292 +158296,1711,1980s,1406942660 +158296,1711,antique dealer,1406942623 +158296,1711,bulldog,1406942618 +158296,1711,georgia,1406942594 +158296,1711,graveyard,1406942576 +158296,1711,homosexual,1406942606 +158296,1711,John Cusack,1406942666 +158296,1711,Kevin Spacey,1406942667 +158296,1711,murder,1406942652 +158296,1711,murder trial,1406942655 +158296,1711,mystery,1406942670 +158296,1711,older man younger man relationship,1406942631 +158296,1711,reporter,1406942657 +158296,1711,trial,1406942653 +158296,1711,true crime,1406942612 +158296,1711,voodoo,1406942650 +158296,1754,religion,1404623083 +158296,1754,supernatural,1404623080 +158296,1792,detective,1403927261 +158296,1792,Tommy Lee Jones,1403927252 +158296,1792,Wesley Snipes,1403927248 +158296,1831,future,1404614449 +158296,1831,sci-fi,1404607296 +158296,1954,bittersweet,1403927588 +158296,1954,boxing,1403927578 +158296,1954,drama,1403927591 +158296,1954,inspirational,1403927609 +158296,1954,Sylvester Stallone,1403927579 +158296,1964,Donald Sutherland,1406847794 +158296,1964,thriller,1406847805 +158296,2117,1980s,1404358891 +158296,2117,drama,1404358896 +158296,2117,dystopia,1404358851 +158296,2117,nudism,1404358894 +158296,2117,sci-fi,1404358890 +158296,2117,sex,1404358893 +158296,2160,Antichrist,1403928290 +158296,2160,Atmospheric,1403928264 +158296,2160,religion,1403928298 +158296,2160,Roman Polanski,1403928267 +158296,2160,suspense,1403928300 +158296,2183,Alfred Hitchcock,1403928694 +158296,2183,classic,1403928696 +158296,2183,espionage,1403928701 +158296,2321,1950s,1407006522 +158296,2321,alternate reality,1407006510 +158296,2321,coming of age,1407006512 +158296,2321,time travel,1407006528 +158296,2329,drama,1404360835 +158296,2329,Edward Norton,1404360816 +158296,2329,holocaust,1404360822 +158296,2329,Nazis,1404360818 +158296,2329,Nudity (Topless),1404360844 +158296,2329,prison,1404360841 +158296,2329,racism,1404360825 +158296,2329,skinhead,1404360831 +158296,2329,thought-provoking,1404360827 +158296,2334,Bruce Willis,1403927305 +158296,2334,Denzel Washington,1403927276 +158296,2334,jihad,1403927281 +158296,2334,terrorism,1403927279 +158296,2353,action-packed,1403927346 +158296,2353,conspiracy theory,1403927340 +158296,2353,corruption,1403927326 +158296,2353,espionage,1403927319 +158296,2353,Gene Hackman,1403927322 +158296,2353,hackers,1403927336 +158296,2353,surveillance,1403927324 +158296,2353,thriller,1403927316 +158296,2353,Washington DC,1403927353 +158296,2353,Will Smith,1403927338 +158296,2353,wrongly accused,1403927329 +158296,2511,cynical,1407283559 +158296,2511,private investigator,1407283569 +158296,2528,dystopia,1404359246 +158296,2528,futuristic,1404359249 +158296,2528,sci-fi,1404359247 +158296,2532,1970s,1404359214 +158296,2532,attack,1404359200 +158296,2532,freedom,1404359179 +158296,2532,futuristic,1404359161 +158296,2532,gorilla,1404359195 +158296,2532,racism,1404359232 +158296,2532,rebellion,1404359224 +158296,2532,revolution,1404359189 +158296,2532,riot,1404359221 +158296,2532,sci-fi,1404359215 +158296,2532,science runs amok,1404359229 +158296,2532,sequel,1404359167 +158296,2532,slavery,1404359216 +158296,2532,survivor,1404359230 +158296,2532,tense,1404359206 +158296,2532,time travel,1404359227 +158296,2532,torture,1404359164 +158296,2634,1890s,1404803627 +158296,2634,ancient religion,1404803614 +158296,2634,archaeologist,1404803606 +158296,2634,egyptology,1404803620 +158296,2634,high priest,1404803598 +158296,2634,mummy,1404803573 +158296,2634,princess,1404803589 +158296,2634,revenge,1404803636 +158296,2634,swamp,1404803642 +158296,2634,tomb,1404803592 +158296,2664,1950s,1404180569 +158296,2664,aliens,1404180575 +158296,2664,Don Siegel,1404180571 +158296,2664,sci-fi,1404180573 +158296,2668,1980s,1404357347 +158296,2668,experiment,1404357383 +158296,2668,horror,1404357380 +158296,2668,independent film,1404357381 +158296,2668,monster,1404357384 +158296,2668,sci-fi,1404357349 +158296,2668,scientist,1404357378 +158296,2668,swamp,1404357376 +158296,2699,bugs,1405959464 +158296,2699,spiders,1405959461 +158296,2871,banjo,1403984021 +158296,2871,rape,1403984018 +158296,2871,river,1403984026 +158296,2871,river-rafting,1403984061 +158296,2871,suspense,1403984023 +158296,2871,Thriller,1403984014 +158296,3081,horror,1405959589 +158296,3174,Andy Kaufman,1404017015 +158296,3174,biographical,1404017022 +158296,3174,Jim Carrey,1404017017 +158296,3198,based on a book,1403926743 +158296,3198,based on a true story,1403926761 +158296,3198,Dustin Hoffman,1403926768 +158296,3198,escape,1403926770 +158296,3198,Franklin J. Schaffner,1403926763 +158296,3198,prison,1403926738 +158296,3198,prison escape,1403926740 +158296,3198,Steve McQueen,1403926741 +158296,3198,wrongly accused,1403926758 +158296,3266,mockumentary,1407283497 +158296,3266,murder,1407283504 +158296,3266,violence,1407283507 +158296,3294,1970s,1404804294 +158296,3294,alligator,1404804348 +158296,3294,attempted rape,1404805253 +158296,3294,blood spatter,1404804298 +158296,3294,body torn apart,1404804305 +158296,3294,crocodile,1404804291 +158296,3294,disappearance,1404804301 +158296,3294,female rear nudity,1404804258 +158296,3294,foot chase,1404804300 +158296,3294,hotel,1404804290 +158296,3294,murder,1404804516 +158296,3294,premarital sex,1404805248 +158296,3294,prostitute,1404804527 +158296,3294,psychopath,1404804515 +158296,3294,redneck,1404805246 +158296,3294,serial killer,1404804297 +158296,3294,slasher,1404804296 +158296,3294,swamp,1404804293 +158296,3300,action,1403932269 +158296,3300,anti-hero,1403932249 +158296,3300,futuristic,1403932241 +158296,3300,sci-fi,1403932227 +158296,3300,stranded,1403932246 +158296,3300,suspense,1403932244 +158296,3342,bandaged face,1407005767 +158296,3342,bird,1407005705 +158296,3342,drama,1407005851 +158296,3342,flashback,1407005795 +158296,3342,friend,1407005695 +158296,3342,jail,1407005799 +158296,3342,mental illness,1407005788 +158296,3342,missing in action,1407005709 +158296,3342,nudity,1407005785 +158296,3342,obsession,1407005722 +158296,3342,psychiatric hospital,1407005790 +158296,3342,psychology,1407005815 +158296,3342,sex,1407005782 +158296,3342,slaughterhouse,1407005811 +158296,3342,topless female nudity,1407005735 +158296,3342,train,1407005774 +158296,3342,vietnam,1407005691 +158296,3342,vietnam war,1407005700 +158296,3355,ancient books,1410050790 +158296,3355,Roman Polanski,1410050786 +158296,3409,2000s,1404359057 +158296,3409,airport,1404359066 +158296,3409,death,1404359069 +158296,3409,drama,1404359062 +158296,3409,fantasy,1404359061 +158296,3409,gas explosion,1404359063 +158296,3409,heavy rain,1404359068 +158296,3409,hit by bus,1404359065 +158296,3409,horror,1404359054 +158296,3409,suspense,1404359070 +158296,3409,teen,1404359058 +158296,3409,thriller,1404359055 +158296,3420,1970s,1406138398 +158296,3420,1979,1406138418 +158296,3420,drama,1406138353 +158296,3420,thriller,1406138430 +158296,3471,alien invasion,1404166962 +158296,3471,desert,1404166957 +158296,3471,drama,1404166951 +158296,3471,inspiring story,1404166965 +158296,3471,military,1404166959 +158296,3471,quarantine,1404166975 +158296,3471,sci-fi,1404166952 +158296,3471,self transcendence,1404166960 +158296,3471,ufo,1404166955 +158296,3471,vision,1404166954 +158296,3504,brainwashing,1408134704 +158296,3504,cynical,1408134699 +158296,3504,drama,1408134702 +158296,3504,journalism,1408134686 +158296,3735,70s,1403926813 +158296,3735,Al Pacino,1403926787 +158296,3735,Atmospheric,1403926794 +158296,3735,corruption,1403926795 +158296,3735,New York City,1403926789 +158296,3735,police,1403926792 +158296,3735,police corruption,1403926811 +158296,3735,Sidney Lumet,1403926804 +158296,3735,undercover cop,1403926814 +158296,3986,action,1404849619 +158296,3986,futuristic,1404849634 +158296,3986,genetics,1404849625 +158296,4055,comedy,1403933481 +158296,4055,drama,1403933486 +158296,4055,hitman,1403933510 +158296,4055,thriller,1403933497 +158296,4110,1980s,1404359476 +158296,4110,airbase,1404359486 +158296,4110,atomic bomb,1404359483 +158296,4110,british intelligence,1404359490 +158296,4110,chase,1404359445 +158296,4110,cold war,1404359423 +158296,4110,conspiracy,1404359478 +158296,4110,death,1404359433 +158296,4110,espionage,1404359481 +158296,4110,london,1404359488 +158296,4110,military base,1404359463 +158296,4110,murder,1404359435 +158296,4110,nuclear bomb,1404359484 +158296,4110,russian,1404359437 +158296,4110,shooting,1404359449 +158296,4110,soviet union,1404359456 +158296,4110,spy,1404359480 +158296,4110,thriller,1404359477 +158296,4250,christianity,1404016804 +158296,4250,drama,1404016821 +158296,4250,israel,1404016792 +158296,4250,mystery,1404016815 +158296,4250,religion,1404016797 +158296,4250,romance,1404016817 +158296,4250,thriller,1404016814 +158296,4250,tomb,1404016788 +158296,4439,1970s,1404359365 +158296,4439,1980s,1404359333 +158296,4439,berlin,1404359340 +158296,4439,biography,1404359331 +158296,4439,drama,1404359332 +158296,4439,drug abuse,1404359372 +158296,4439,drugs,1404359279 +158296,4439,german,1404359342 +158296,4439,heroin,1404359329 +158296,4439,junkie,1404359341 +158296,4439,prostitution,1404359329 +158296,4439,rooftop,1404359334 +158296,4439,teenagers,1404359338 +158296,4439,true story,1404359368 +158296,4545,artificial intelligence,1407006454 +158296,4545,robot,1407006457 +158296,4553,aliens,1404180753 +158296,4553,conspiracy,1404180752 +158296,4553,dystopia,1404180804 +158296,4553,humorous,1404180758 +158296,4553,satire,1404180767 +158296,4553,sci-fi,1404180761 +158296,4621,babies,1403933136 +158296,4621,Bruce Willis,1403933140 +158296,4621,comedy,1403933165 +158296,4621,John Travolta,1403933138 +158296,4621,romance,1403933167 +158296,4673,action,1403933218 +158296,4673,comedy,1403933242 +158296,4673,prison,1403933234 +158296,4673,Sylvester Stallone,1403933212 +158296,4677,comedy,1403933193 +158296,4677,dogs,1403933182 +158296,4677,family,1403933199 +158296,4677,Tom Hanks,1403933180 +158296,4744,evil,1403929315 +158296,4744,horror,1403929301 +158296,4744,monster,1403929305 +158296,4855,Clint Eastwood,1403927521 +158296,4855,police,1403927552 +158296,4855,revenge,1403927536 +158296,4855,San Francisco,1403927549 +158296,5308,comedy,1403933095 +158296,5308,family,1403933115 +158296,5308,Steve Guttenberg,1403933098 +158296,5308,Tom Selleck,1403933100 +158296,5489,atmospheric,1404016692 +158296,5489,Klaus Kinski,1404016682 +158296,5489,vampire,1404016696 +158296,5489,vampires,1404016697 +158296,5608,based on a true story,1404360908 +158296,5608,brutal,1404360898 +158296,5608,mass behavior,1404360879 +158296,5608,Nudity (Full Frontal - Notable),1404360893 +158296,5608,psychology,1404360889 +158296,5608,thought-provoking,1404360910 +158296,5608,true story,1404360901 +158296,5630,Anthony Hopkins,1403926699 +158296,5630,Edward Norton,1403926714 +158296,5630,FBI,1403926713 +158296,5630,Harvey Keitel,1403926711 +158296,5630,psychology,1403926701 +158296,5630,remake,1403926695 +158296,5748,drama,1407016539 +158296,5748,false assumption of murder,1407016600 +158296,5748,innocence,1407016614 +158296,5748,interrogation,1407016629 +158296,5748,investigation,1407016588 +158296,5748,murder,1407016558 +158296,5748,police,1407016573 +158296,5748,police inspector,1407016577 +158296,5748,questioning,1407016594 +158296,5748,rape,1407016568 +158296,5748,rape of a child,1407016608 +158296,5748,suspect,1407016636 +158296,5830,adventure,1404695750 +158296,5830,balloon,1404695594 +158296,5830,based on novel,1404695697 +158296,5830,bee,1404695626 +158296,5830,confederate soldier,1404695634 +158296,5830,escape,1404695740 +158296,5830,family,1404695575 +158296,5830,giant animal,1404695642 +158296,5830,giant crab,1404695612 +158296,5830,island,1404695734 +158296,5830,ocean,1404695755 +158296,5830,octopus,1404695742 +158296,5830,pirate,1404695601 +158296,5830,reference to robinson crusoe,1404695663 +158296,5830,ruins,1404695694 +158296,5830,sci-fi,1404695748 +158296,5830,scuba diving,1404695681 +158296,5830,sinking ship,1404695759 +158296,5830,stranded on an island,1404695735 +158296,5830,submarine,1404695745 +158296,5830,underwater,1404695746 +158296,5830,volcanic eruption,1404695757 +158296,5853,canuxploitation,1404180885 +158296,5853,psychic,1404180882 +158296,5853,psychic power,1404180860 +158296,5853,sci-fi,1404180883 +158296,5881,space,1408907887 +158296,5891,disturbing,1404018232 +158296,5891,hard to watch,1404018356 +158296,5891,nudity,1404018241 +158296,5891,rape,1404018231 +158296,5891,revenge,1404018229 +158296,5891,thriller,1404018380 +158296,6101,1980s,1408168931 +158296,6101,american,1408168900 +158296,6101,bureaucracy,1408168987 +158296,6101,chile,1408168906 +158296,6101,conspiracy,1408168982 +158296,6101,intrigue,1408168958 +158296,6101,journalist,1408168989 +158296,6101,military,1408168903 +158296,6101,military coup,1408168916 +158296,6101,military regime,1408168973 +158296,6101,political intrigue,1408168985 +158296,6101,politics,1408655781 +158296,6101,search,1408168940 +158296,6101,thriller,1408168991 +158296,6101,voice over narration,1408168966 +158296,6281,Colin Farrell,1403926656 +158296,6281,dialogue driven,1403926684 +158296,6281,nyc,1404514681 +158296,6281,thrilling,1403926681 +158296,6323,psychology,1403926613 +158296,6323,serial killer,1403926616 +158296,6323,silly,1403926609 +158296,6774,surreal,1404603543 +158296,6774,television,1404603551 +158296,6795,anti hero,1404160327 +158296,6795,car,1404160278 +158296,6795,fbi,1404160304 +158296,6795,heist,1404160305 +158296,6795,opening action scene,1404160368 +158296,6795,sex,1404160354 +158296,6795,strangulation,1404160320 +158296,6795,surveillance,1404160335 +158296,6795,tape,1404160276 +158296,6795,thief,1404160312 +158296,6795,vehicle,1404160288 +158296,6800,action,1403932954 +158296,6800,Sylvester Stallone,1403932940 +158296,6800,thriller,1403932955 +158296,6862,corruption,1404018423 +158296,6862,thriller,1404018431 +158296,6966,horror,1404604693 +158296,6966,violence,1404604850 +158296,7001,aliens,1404180620 +158296,7001,escape,1404180651 +158296,7001,horror,1404180664 +158296,7001,parasite,1404180676 +158296,7001,remake,1404180640 +158296,7001,sci-fi,1404180662 +158296,7001,uncharacteristic behavior,1404180691 +158296,7004,Arnold Schwarzenegger,1403933065 +158296,7004,comedy,1403933081 +158296,7004,undercover cop,1403933072 +158296,7006,mystery,1403933645 +158296,7006,suspense,1403933644 +158296,7006,thriller,1403933642 +158296,7017,action,1403933010 +158296,7017,airplane hijacking,1403933001 +158296,7017,Wesley Snipes,1403932981 +158296,7035,action,1403933381 +158296,7035,biker,1403933392 +158296,7036,comedy,1403933052 +158296,7036,werewolf,1403933035 +158296,7438,buried alive,1406138651 +158296,7438,martial arts,1406138663 +158296,7438,revenge,1406138633 +158296,7438,storytelling,1406138658 +158296,7438,violence,1406138636 +158296,7560,bomber,1404607070 +158296,7560,general,1404607072 +158296,7560,nuclear attack,1404607109 +158296,7560,strategic air command,1404607063 +158296,7636,attempted murder,1408309020 +158296,7636,crime,1408308953 +158296,7636,drama,1408308956 +158296,7636,dream sequence within a dream sequence,1408308992 +158296,7636,psychologist,1408308986 +158296,7636,rain,1408308991 +158296,7636,scalpel,1408308993 +158296,7636,sex,1408309018 +158296,7636,thriller,1408308984 +158296,8622,conspiracy theory,1404018189 +158296,8622,documentary,1404018188 +158296,8622,michael moore,1404018184 +158296,8622,politics,1404018185 +158296,8622,propaganda,1404018194 +158296,8860,action,1407011509 +158296,8860,phone,1407011502 +158296,8860,thriller,1407011513 +158296,8879,1930s,1406587276 +158296,8879,1970s,1406587281 +158296,8879,dagger,1406587389 +158296,8879,drama,1406587258 +158296,8879,murder,1406587324 +158296,8879,orient express,1406587341 +158296,8879,private investigator,1406587372 +158296,8879,thriller,1406587259 +158296,8879,train,1406587202 +158296,26819,dystopia,1403933716 +158296,26819,escape,1404160142 +158296,26819,future,1404160143 +158296,26819,male nudity,1404160137 +158296,26819,overpopulation,1403933721 +158296,26819,population control,1404160140 +158296,26819,prison,1403933718 +158296,26819,prison riot,1404160152 +158296,26819,prisoner,1404160139 +158296,26819,sci-fi,1404160125 +158296,26819,surprise ending,1404160171 +158296,26966,drama,1404018710 +158296,26966,indian community,1404018705 +158296,26966,Johnny Depp,1404018657 +158296,26966,poverty,1404018707 +158296,26966,powerful ending,1404018703 +158296,26966,snuff,1404018708 +158296,30820,boyfriend girlfriend relationship,1404357902 +158296,30820,child molester,1404357834 +158296,30820,diary,1404357919 +158296,30820,drama,1404357843 +158296,30820,female nudity,1404357916 +158296,30820,job,1404357837 +158296,30820,lumberyard,1404357830 +158296,30820,male nudity,1404357953 +158296,30820,masturbation,1404357948 +158296,30820,mother daughter relationship,1404357884 +158296,30820,parole,1404357950 +158296,30820,police,1404357956 +158296,30820,prison,1404357942 +158296,30820,probation,1404357848 +158296,30820,second chance,1404357955 +158296,30820,sex offender,1404357855 +158296,30820,sexual harassment,1404357873 +158296,30820,sexual predator,1404357939 +158296,31696,demons,1408167793 +158296,31696,fantasy,1408167847 +158296,31696,mythology,1408167796 +158296,31696,supernatural,1408167779 +158296,37727,airplan explosion,1404158602 +158296,37727,airplane,1404158597 +158296,37727,airplane hijacking,1404158594 +158296,37727,captain,1404158526 +158296,37727,death,1404158545 +158296,37727,disappearance,1404158540 +158296,37727,fbi,1404158599 +158296,37727,flight attendant,1404158519 +158296,37727,search,1404158533 +158296,37727,worried mother,1404158568 +158296,37853,interracial romance,1406333348 +158296,42418,17th century,1407011399 +158296,42418,native americans,1407011394 +158296,42418,sentimental,1407011396 +158296,43871,shit,1404359744 +158296,43871,suspense,1404359747 +158296,45062,2000s,1404359669 +158296,45062,action,1404359667 +158296,45062,assassination attempt,1404359835 +158296,45062,conspiracy,1404359843 +158296,45062,crime,1404359708 +158296,45062,drama,1404359711 +158296,45062,political,1404359714 +158296,45062,secret service,1404359838 +158296,45062,thriller,1404359707 +158296,47999,brainwashing,1404358011 +158296,47999,fundamentalism,1404358026 +158296,47999,jesus,1404358043 +158296,47999,religion,1404358007 +158296,47999,science,1404358035 +158296,48780,atmospheric,1404098687 +158296,48780,Christian Bale,1404098719 +158296,48780,mystery,1404098686 +158296,48780,psychological,1404098697 +158296,48780,romance,1404098711 +158296,48780,sci-fi,1404098702 +158296,48780,tense,1404098700 +158296,48780,twist ending,1404098723 +158296,48872,black and white,1404016398 +158296,48872,drama,1404016376 +158296,48872,gambling,1404016387 +158296,48872,russian roulette,1404016363 +158296,48872,thriller,1404016369 +158296,51086,conspiracy theory,1404803464 +158296,51086,psychology,1404803467 +158296,51925,flashback,1404018571 +158296,51925,Sandra Bullock,1404018577 +158296,51925,slow moving,1404018542 +158296,52952,1980s,1406416628 +158296,52952,bullying,1406419896 +158296,52952,nationalism,1406419885 +158296,52952,realistic,1406419889 +158296,53349,comedy,1404017948 +158296,53550,Christian Bale,1406846331 +158296,53550,prison escape,1406846317 +158296,53550,rescue,1406846321 +158296,53550,Vietnam War,1406846323 +158296,55282,blood,1407283611 +158296,55282,snow,1407283606 +158296,55282,survival,1407283608 +158296,55282,vampire,1407283604 +158296,55408,crime,1404017100 +158296,56156,assassin,1403932735 +158296,56432,crime,1404158988 +158296,56432,drama,1404158978 +158296,56432,drowning,1404158977 +158296,56432,friends who hate each other,1404158986 +158296,56432,love triangle,1404158981 +158296,56432,nudity,1404158963 +158296,56432,swimming pool,1404158983 +158296,56432,vacation,1404158979 +158296,57528,2000s,1404358778 +158296,57528,action,1404358790 +158296,57528,asia,1404358785 +158296,57528,boat,1404358783 +158296,57528,burma,1404358782 +158296,57528,death,1404358787 +158296,57528,jungle,1404358781 +158296,57528,rape,1404358788 +158296,57528,sniper,1404358786 +158296,57528,violence,1404358779 +158296,57528,war,1404358777 +158296,60040,action,1404166772 +158296,60040,antidote,1404166778 +158296,60040,cure,1404166736 +158296,60040,hero,1404166742 +158296,60040,marvel comics,1404166810 +158296,60040,military,1404166779 +158296,60040,nyc,1404166782 +158296,60040,sci-fi,1404166775 +158296,60040,scientist,1404166776 +158296,60040,thriller,1404166773 +158296,61262,2000s,1404358134 +158296,61262,female nudity,1404358140 +158296,61262,ghost,1404358137 +158296,61262,gore,1404358142 +158296,61262,horror,1404358143 +158296,61262,mystery,1404358132 +158296,61262,new york,1404358139 +158296,61262,thriller,1404358135 +158296,61692,alien abduction,1405895208 +158296,61692,gore,1405895204 +158296,61692,horror,1405895205 +158296,61692,no plot,1405914857 +158296,61692,sci-fi,1405895206 +158296,63072,boring,1406587000 +158296,63072,dystopia,1406585736 +158296,63072,post-apocalyptic,1406587004 +158296,63113,action,1403932809 +158296,63113,assassin,1403932813 +158296,63113,espionage,1403932823 +158296,63113,James Bond,1403932804 +158296,63113,secret service,1403932807 +158296,63113,spy,1403932810 +158296,64010,children,1405242649 +158296,64010,children killing adult,1405242756 +158296,64010,face against glass,1405242677 +158296,64010,gore,1405242619 +158296,64010,parents killing children,1405242755 +158296,64010,strangulation,1405242672 +158296,64010,woods,1405242676 +158296,64716,drama,1404358637 +158296,64716,melancholy,1404358623 +158296,64716,moving,1404358636 +158296,64716,suicide,1404358639 +158296,64839,2000s,1404359541 +158296,64839,blood,1404359583 +158296,64839,death,1404359573 +158296,64839,drama,1404359531 +158296,64839,father daughter relationship,1404359559 +158296,64839,heart attack,1404359567 +158296,64839,loneliness,1404359579 +158296,64839,romance,1404359585 +158296,64839,sports,1404359581 +158296,64839,stripper,1404359582 +158296,64839,wrestling,1404359534 +158296,64983,assassination,1406139288 +158296,64983,based on a true story,1406139272 +158296,64983,conspiracy,1406139282 +158296,65037,autism,1404528396 +158296,65037,bullying,1404528345 +158296,65037,classmate,1404528379 +158296,65037,drama,1404528332 +158296,65037,online,1404528333 +158296,65037,role playing game,1404528351 +158296,65037,surprise ending,1404528412 +158296,65037,video tape,1404528389 +158296,65817,boat,1378164041 +158296,65817,nudity,1404018969 +158296,65817,ocean,1378164044 +158296,65982,action,1406600113 +158296,65982,alien,1406636463 +158296,65982,fantasy,1406600036 +158296,65982,sci-fi,1406600040 +158296,65982,space,1406600039 +158296,65982,vikings,1406600030 +158296,66279,comedy,1404181360 +158296,66279,death,1404181364 +158296,66279,domestic violence,1404181362 +158296,66279,drama,1404181355 +158296,66279,friend,1404181324 +158296,66279,funeral,1404181326 +158296,67923,cars,1403932179 +158296,67923,Racing,1403932181 +158296,69134,Christianity,1404357684 +158296,69134,disturbing,1404018828 +158296,69134,genital mutilation,1404018840 +158296,69134,nudity,1404018857 +158296,69134,religion,1404357688 +158296,69134,violence,1404018842 +158296,69951,deal with the devil,1406333150 +158296,69951,fantasy,1406333161 +158296,69951,hanging,1406333256 +158296,71254,dystopian,1403929177 +158296,71254,gerard butler,1403929166 +158296,71254,poorly directed,1403929180 +158296,71254,predictable,1403929168 +158296,71254,sci-fi,1403929164 +158296,71254,stupid,1403929170 +158296,71254,virtual reality,1403929162 +158296,73089,court room,1404018018 +158296,73089,crime,1404017999 +158296,73089,suspense,1404018019 +158296,73089,thriller,1404018021 +158296,73089,twist ending,1404018006 +158296,74545,assassination,1404803535 +158296,74545,drama,1404803514 +158296,74545,espionage,1404803508 +158296,74545,sex,1404803530 +158296,74545,suspense,1404803512 +158296,74545,thriller,1404803517 +158296,75404,zombies,1404018877 +158296,76272,Ireland,1404016561 +158296,76272,Liam Neeson,1404016563 +158296,76272,Northern Ireland,1404016565 +158296,76272,psychological,1404016567 +158296,76317,buried alive,1406696655 +158296,76317,cemetery,1406696627 +158296,76317,death,1406699011 +158296,76317,funeral,1406696570 +158296,76317,hitting a child,1406699005 +158296,76317,nudity,1406696594 +158296,76743,adventure,1406383638 +158296,76743,comedy,1406383643 +158296,76743,slapstick,1406383662 +158296,78088,buried alive,1404018113 +158296,78088,claustrophobic,1404018044 +158296,78088,coffin,1404018117 +158296,78088,despair,1404018110 +158296,78088,drama,1404018114 +158296,78088,frustration,1404018112 +158296,78088,Ryan Reynolds,1404018042 +158296,78088,survival,1404018118 +158296,78088,thriller,1404018116 +158296,80185,arsenic poisoning,1404358297 +158296,80185,documentary,1404358293 +158296,80185,energy,1404358295 +158296,80185,energy industry,1404358299 +158296,80185,fracking,1404358318 +158296,80185,natural gas,1404358296 +158296,81162,australia,1404017411 +158296,81162,gore,1404017385 +158296,81162,horror,1404017405 +158296,81162,road trip,1404017403 +158296,81162,sex,1404017415 +158296,81162,truck,1404017408 +158296,81162,urine drinking,1404017402 +158296,81162,wolves,1404017407 +158296,82667,murder,1407626815 +158296,82667,revenge,1407626796 +158296,82667,serial killer,1407626800 +158296,82667,suspense,1407626804 +158296,82667,torture,1407626809 +158296,84395,church,1404019420 +158296,84395,exorcism,1404019380 +158296,84395,possession,1404019407 +158296,84395,thriller,1404019399 +158296,84395,vatican,1404019396 +158296,84738,boring,1378083782 +158296,84738,no story line,1378083793 +158296,84942,chase,1406317969 +158296,84942,child sacrifice,1406317975 +158296,84942,cult,1406317965 +158296,84942,fantasy,1406317665 +158296,84942,hell,1406317981 +158296,84942,interrupted sex,1406317868 +158296,84942,machete,1406317971 +158296,84942,male frontal nudity,1406317973 +158296,84942,murder,1406317962 +158296,84942,oklahoma,1406317839 +158296,84942,profanity,1406317924 +158296,84942,public nudity,1406317879 +158296,84942,race against time,1406317901 +158296,84942,satanic cult,1406317967 +158296,84942,sex,1406317870 +158296,84942,southern accent,1406317978 +158296,84942,strangulation,1406317968 +158296,84942,thriller,1406317667 +158296,85686,game,1404017671 +158296,85686,pedophile,1404017681 +158296,85686,rapist,1404017669 +158296,85686,room,1404017669 +158296,85686,surprising ending,1404017675 +158296,85686,suspense,1404017674 +158296,85686,tape recorder,1404017679 +158296,85686,thriller,1404017672 +158296,90524,action,1404018613 +158296,91490,diving,1404017531 +158296,91490,mexico,1404017514 +158296,91490,monster,1404017508 +158296,91490,octopus,1404017513 +158296,91490,reporter,1404017545 +158296,91490,sci-fi,1404017510 +158296,91490,science runs amok,1404017516 +158296,91490,shark,1404017511 +158296,91500,dystopia,1403932887 +158296,91500,predictable,1403932901 +158296,91500,shaky camera,1403932891 +158296,91500,survival,1403932899 +158296,91500,Woody Harrelson,1403932894 +158296,91542,assassin,1428272325 +158296,91542,Jude Law,1428272314 +158296,91542,sherlock holmes,1428272310 +158296,91542,unrealistic,1428272318 +158296,91658,corruption,1445241574 +158296,91658,hacking,1445241564 +158296,91658,mystery,1445241578 +158296,91658,rape,1445241549 +158296,91658,remake,1445241559 +158296,91658,serial killer,1445241554 +158296,91658,strong female lead,1445241572 +158296,91658,thriller,1445241576 +158296,92453,drama,1404017891 +158296,92453,male front nudity,1404017885 +158296,92453,nudity,1404017900 +158296,92938,3D,1403933681 +158296,92938,Action,1403933678 +158296,93432,documentary,1404016628 +158296,93432,food,1404016645 +158296,93432,vegan,1404016653 +158296,96079,action,1403932839 +158296,96079,cinematography,1403932845 +158296,96079,Daniel Craig,1403932841 +158296,96079,James Bond,1403932836 +158296,96079,London,1403932843 +158296,96950,drama,1404016233 +158296,96950,prison,1404016276 +158296,96950,rape accusation,1404016258 +158296,99809,documentary,1403929212 +158296,99809,drama,1403929271 +158296,99809,health care,1403929231 +158296,99809,hospital,1403929277 +158296,99809,usa,1403929242 +158296,100498,Bruce Willis,1403932606 +158296,100498,CIA,1403932607 +158296,100498,dialogue,1403932615 +158296,100498,Jai Courtney,1403932642 +158296,100498,Russia,1403932611 +158296,101360,halle berry,1404016877 +158296,101360,serial killer,1404016879 +158296,101360,suspense,1404016881 +158296,101864,atmospheric,1404019098 +158296,101864,bad script,1403932716 +158296,101864,cliche ending,1403932706 +158296,101864,dystopia,1377724298 +158296,101864,post-apocalyptic,1403932691 +158296,101864,sci-fi,1403932693 +158296,101864,Tom Cruise,1404019091 +158296,103339,2010s,1404358343 +158296,103339,action,1404358347 +158296,103339,crime,1404358397 +158296,103339,police,1404358393 +158296,103339,political,1404358396 +158296,103339,president,1404358394 +158296,103339,thriller,1404358390 +158296,103339,usa,1404358361 +158296,103339,washington d.c.,1404358386 +158296,103339,white house,1404358392 +158296,103474,crime,1404358187 +158296,103474,documentary,1404358183 +158296,103474,drugs,1404358185 +158296,103554,cargo ship,1404443237 +158296,103554,cook,1404443280 +158296,103554,drama,1404443270 +158296,103554,engineer,1404443212 +158296,103554,hijack,1404443243 +158296,103554,hostage,1404443239 +158296,103554,indian ocean,1404443241 +158296,103554,pirate,1404443201 +158296,103554,psychological drama,1404443295 +158296,103554,ransom,1404443308 +158296,103554,seaman,1404443230 +158296,103554,somali pirates,1404443321 +158296,103554,thriller,1404443272 +158296,104590,Asian Chicks,1378003136 +158296,104590,drama,1378003089 +158296,104590,dramatic,1378003089 +158296,104590,humor,1378003093 +158296,104590,slow start,1378003109 +158296,104590,thrilling,1378003089 +158296,104608,bloody,1378083546 +158296,104608,hospital,1404019040 +158296,104608,story,1378083583 +158296,104610,dragons,1378088362 +158296,104610,female lead,1378088344 +158296,104610,story,1378088371 +158296,104841,cinematography,1405895124 +158296,104841,sci-fi,1405895137 +158296,104841,science,1405895130 +158296,104841,space,1403927847 +158296,104841,suspense,1403927855 +158296,104841,visually appealing,1403927845 +158296,106165,bees,1403929129 +158296,106165,documentary,1403929117 +158296,106165,food production,1403929107 +158296,106620,birth control,1404513672 +158296,106620,drama,1404513678 +158296,106620,dystopia,1404513670 +158296,106620,ecological disaster,1404513684 +158296,106620,future,1404513668 +158296,106620,overpopulation,1404513680 +158296,106620,population control,1404513679 +158296,106620,population explosion,1404513673 +158296,106620,post apocalypse,1404513676 +158296,106620,pregnancy,1404513674 +158296,106620,robot,1404513667 +158296,106620,sci-fi,1404513682 +158296,106620,smog,1404513685 +158296,106642,Doctor Who,1403927792 +158296,107982,bare chested male,1404803817 +158296,107982,beach,1404803826 +158296,107982,eaten alive,1404803819 +158296,107982,flamethrower,1404803803 +158296,107982,gore,1404803836 +158296,107982,horror,1404803811 +158296,107982,island,1404803812 +158296,107982,lifeguard,1404803773 +158296,107982,motorbike race,1404803822 +158296,107982,ocean,1404803813 +158296,107982,party,1404803756 +158296,107982,prank,1404803777 +158296,107982,resort community,1404803823 +158296,107982,sand,1404803827 +158296,107982,shark,1404803815 +158296,108253,female nudity,1404017146 +158296,108253,horror,1404017150 +158296,108253,mental asylum,1404017226 +158296,108253,self sacrifice,1404017180 +158296,108253,supernatural power,1404017162 +158296,108253,thriller,1404017204 +158296,108253,urination,1404017191 +158296,108857,backwoods,1404018925 +158296,108857,gore,1404018918 +158296,108857,horror,1404018909 +158296,108857,hunter,1404018916 +158296,108857,traps,1404018929 +158296,108857,woods,1404018922 +158296,111628,action,1404017753 +158296,111628,alligator,1404017778 +158296,111628,cave,1404017785 +158296,111628,crocodile,1404017764 +158296,111628,florida,1404017749 +158296,111628,giant monster,1404017783 +158296,111628,horror,1404017786 +158296,111628,python,1404017742 +158296,111628,sci-fi,1404017780 +158296,111628,snake,1404017774 +158296,112477,thriller,1404360784 +158296,112515,Dog killing,1437314299 +158296,112515,monster,1437314309 +158296,112515,supernatural,1437314308 +158296,112772,1970s,1405837518 +158296,112772,horror,1405837513 +158296,112774,1970s,1405837550 +158296,112774,horror,1405837552 +158296,112778,german,1405837834 +158296,112778,horror,1405837814 +158296,112778,suspense,1405837825 +158296,112780,action,1405837945 +158296,112780,suspense,1405837960 +158296,112780,thriller,1405837955 +158296,112782,drama,1405838025 +158296,112782,horror,1405838023 +158296,112782,suspense,1405838026 +158296,112802,paranoia,1405916929 +158296,112802,psychological thriller,1405916916 +158296,112802,thriller,1405916923 +158296,114640,horror,1412137817 +158296,126579,sci-fi,1422362235 +158296,132163,military,1428812049 +158296,132163,zombies,1428812033 +158296,132165,elevator,1428816146 +158296,132165,psycho,1428816139 +158296,132165,thriller,1428816130 +158296,132340,India,1428959807 +158296,132340,Zombies,1428959802 +158296,132356,action,1428976198 +158296,132356,alone,1428976223 +158296,132356,fantasy,1428976215 +158296,132356,sci-fi,1428976213 +158296,132356,stranded,1428976228 +158299,50,good dialogs,1266232946 +158299,296,Uma Thurman,1266323898 +158299,508,gay,1266317193 +158299,508,maria callas,1266317316 +158299,858,family,1266233605 +158299,858,mafia,1266233534 +158299,858,Marlon Brando,1266233576 +158299,858,Sicily,1266233589 +158299,2470,humorous,1266233113 +158299,2497,pastelosa,1266316545 +158299,2497,too slow,1266316609 +158299,41285,clever,1266321058 +158299,41285,interesting,1266321060 +158299,41285,murder mystery,1266321052 +158299,41285,non-hollywood ending,1266321042 +158299,41285,Scarlett Johansson,1266321054 +158299,41285,Woody Allen,1266321048 +158299,60950,Barcelona,1266321307 +158299,60950,crazy woman,1266321367 +158299,60950,Penélope Cruz,1266321356 +158299,60950,Woody Allen,1266321314 +158299,72998,3d,1266231981 +158299,72998,human ambition,1266231994 +158299,72998,predictable,1266232252 +158299,72998,too long,1266232011 +158299,73023,crazy,1267017632 +158316,2324,bittersweet,1428460806 +158316,2324,family sacrifice,1428460814 +158316,2324,sentimental,1428460820 +158316,2571,philosophical,1428460776 +158316,2571,sci-fi,1428460729 +158316,5995,Oscar Winner,1428460840 +158316,5995,World War II,1428460835 +158342,2931,affectionate,1241390758 +158342,49396,Jack Black,1241390789 +158342,49396,rock and roll,1241390783 +158342,50068,weak plot,1241390842 +158342,64957,touching,1241390551 +158345,5952,morality,1158734267 +158368,1952,Slow moving but a beautie,1161872684 +158368,5952,epico,1161872495 +158404,5329,enigmatic,1311629906 +158404,5329,stylized,1311629900 +158404,53189,misfits,1283016726 +158404,54962,thought-provoking,1318219118 +158404,80463,computers,1311007081 +158404,80463,hacking,1311007086 +158404,80463,internet,1311007088 +158419,296,fate,1421441717 +158419,296,great soundtrack,1421441717 +158419,296,non-linear,1421441717 +158419,2460,silly,1445235872 +158419,4673,retarded,1412887352 +158419,31502,tv movie,1445219416 +158419,57528,over the top violence,1419483931 +158419,60037,retarded,1412887378 +158419,77307,surrealism,1412887514 +158475,260,classic,1439762705 +158475,260,sci-fi,1439762684 +158475,260,space adventure,1439762680 +158475,260,special effects,1439762699 +158490,597,capitalism,1262645223 +158490,597,shopping,1262645251 +158490,1339,erotic,1262645749 +158490,1380,John Travolta,1262645312 +158490,3034,outlaw,1262646109 +158490,5791,artistic,1262646400 +158490,5791,bisexual,1262646378 +158490,37495,surreal,1265561346 +158490,58559,anti-hero,1262645979 +158490,63992,overrated,1262645397 +158490,63992,shining vampire,1262645492 +158492,69844,fantasy,1429700632 +158492,69844,kids,1429700657 +158492,69844,magic,1429700635 +158492,69844,teenagers,1429700652 +158505,3578,Ridley Scott,1304152080 +158505,3578,Russell Crowe,1304152071 +158505,48516,Mafia,1304152046 +158505,61026,John Woo,1304152248 +158548,32,atmospheric,1284299764 +158548,32,Brad Pitt,1284299746 +158548,32,complicated,1284299749 +158548,32,genetics,1284299771 +158548,32,post-apocalyptic,1284299743 +158548,32,psychology,1284299760 +158548,32,sci-fi,1284299753 +158548,32,time travel,1284299755 +158548,32,violence,1284299762 +158548,47,atmospheric,1284296100 +158548,47,Brad Pitt,1284295999 +158548,47,dark,1284296100 +158548,47,detective,1284296038 +158548,47,disturbing,1284296014 +158548,47,investigation,1284296058 +158548,47,Kevin Spacey,1284296011 +158548,47,Morgan Freeman,1284296042 +158548,47,powerful ending,1284296002 +158548,47,psychology,1284296054 +158548,47,serial killer,1284296005 +158548,47,violent,1284296008 +158548,111,cult film,1284300634 +158548,111,disturbing,1284300639 +158548,111,paranoid,1284300650 +158548,111,social commentary,1284300647 +158548,198,cyberpunk,1284297233 +158548,198,dark,1284297236 +158548,198,mindfuck,1284297239 +158548,198,virtual reality,1284297309 +158548,208,ocean,1284314324 +158548,208,post-apocalyptic,1284314254 +158548,208,steampunk,1284314282 +158548,353,bittersweet,1284319536 +158548,353,film noir,1284319541 +158548,353,gritty,1284319549 +158548,353,stylized,1284319545 +158548,541,artificial intelligence,1284292534 +158548,541,atmospheric,1284292574 +158548,541,based on a book,1284292563 +158548,541,cyberpunk,1284292353 +158548,541,dystopia,1284292177 +158548,541,genetics,1284292493 +158548,541,Harrison Ford,1284292555 +158548,541,robots,1284292488 +158548,541,sci-fi,1284292187 +158548,541,stylized,1284292572 +158548,589,time travel,1284292277 +158548,1200,aliens,1284302235 +158548,1200,suspense,1284302239 +158548,1214,aliens,1284302267 +158548,1214,space,1284302271 +158548,1214,suspense,1284302265 +158548,1527,aliens,1284313980 +158548,1527,Luc Besson,1284313972 +158548,1527,Milla Jovovich,1284313969 +158548,1527,stylized,1284313976 +158548,1590,dark,1284314050 +158548,1590,space,1284314053 +158548,1590,tense,1284314045 +158548,1625,mindfuck,1284320965 +158548,1625,Mystery,1284320967 +158548,1625,psychological,1284320971 +158548,1653,dystopia,1284318219 +158548,1653,dystopic future,1284318226 +158548,1653,future,1284318223 +158548,1653,genetic selection,1284318228 +158548,1653,genetics,1284318225 +158548,1653,rebellion,1284318230 +158548,1653,space travel,1284318236 +158548,1748,aliens,1284318267 +158548,1748,atmospheric,1284318255 +158548,1748,creepy,1284318269 +158548,1748,dark,1284318275 +158548,1748,dark fantasy,1284318272 +158548,1748,dystopia,1284318256 +158548,1748,memory,1284318277 +158548,1748,mindfuck,1284318265 +158548,1748,Post apocalyptic,1284318259 +158548,1748,thought-provoking,1284318261 +158548,1921,black and white,1284299938 +158548,1921,existentialism,1284299933 +158548,1921,great soundtrack,1284299935 +158548,1921,hallucinatory,1284299931 +158548,1921,low budget,1284299927 +158548,1921,mental illness,1284299929 +158548,1921,mindfuck,1284299959 +158548,1921,notable soundtrack,1284299940 +158548,1921,paranoid,1284299951 +158548,1921,stylized,1284299945 +158548,2167,vampires,1284319450 +158548,2232,Kammerspiel,1284300007 +158548,2232,low budget,1284300020 +158548,2232,paranoia,1284300009 +158548,2232,psychological,1284300011 +158548,2232,psychology,1284300013 +158548,2288,aliens,1284314112 +158548,2288,paranoia,1284314104 +158548,2288,shape shifter,1284314100 +158548,2291,dark,1284300168 +158548,2291,modern fantasy,1284300175 +158548,2291,surreal,1284300157 +158548,2291,Tim Burton,1284300215 +158548,2571,alternate reality,1284313873 +158548,2571,artificial intelligence,1284313869 +158548,2571,computers,1284313889 +158548,2571,cyberpunk,1284313866 +158548,2571,dystopia,1284313867 +158548,2571,hackers,1284313886 +158548,2571,martial arts,1284313864 +158548,2571,philosophical,1284313862 +158548,2571,stylized,1284313896 +158548,2571,surreal,1284313892 +158548,2571,virtual reality,1284313875 +158548,2600,alternate reality,1284318388 +158548,2600,mindfuck,1284318382 +158548,2600,multiple realities,1284318390 +158548,2600,techno-evolution,1284318392 +158548,2600,virtual reality,1284318385 +158548,2672,alternate reality,1284297123 +158548,2672,identity,1284297118 +158548,2672,simulated reality,1284297112 +158548,2672,virtual reality,1284297109 +158548,2672,virtual-reality,1284297115 +158548,2858,dark comedy,1284300530 +158548,2858,midlife crisis,1284300539 +158548,2858,sexuality,1284300551 +158548,2858,social commentary,1284300533 +158548,2959,atmospheric,1284300421 +158548,2959,Brad Pitt,1284300412 +158548,2959,disturbing,1284300418 +158548,2959,Edward Norton,1284300416 +158548,2959,mental illness,1284300395 +158548,2959,schizophrenia,1284300430 +158548,2959,social commentary,1284300423 +158548,2959,thought-provoking,1284300402 +158548,2959,twist ending,1284300435 +158548,2959,violence,1284300388 +158548,2997,Charlie Kaufman,1284300302 +158548,2997,mindfuck,1284300304 +158548,2997,surreal,1284300296 +158548,2997,surrealism,1284300298 +158548,3081,19th century,1284320911 +158548,3081,atmospheric,1284320898 +158548,3081,Dark,1284320894 +158548,3081,Fantasy,1284320904 +158548,3081,Mystery,1284320890 +158548,3081,stylized,1284320909 +158548,3081,Tim Burton,1284320887 +158548,3081,visually appealing,1284320907 +158548,3300,anti-hero,1284313744 +158548,3300,atmospheric,1284313766 +158548,3863,alternate reality,1284318336 +158548,3863,beautiful cinematography,1284318357 +158548,3863,beautiful scenery,1284318345 +158548,3863,surreal,1284318370 +158548,3863,virtual reality,1284318372 +158548,3949,addiction,1284300466 +158548,3949,atmospheric,1284300469 +158548,3949,dark,1284300465 +158548,3949,depressing,1284300453 +158548,3949,disturbing,1284300455 +158548,3949,drug abuse,1284300460 +158548,3949,drugs,1284300462 +158548,3949,loneliness,1284300458 +158548,3949,psychology,1284300472 +158548,3949,social commentary,1284300474 +158548,4226,FEMMES FATALES,1284296444 +158548,4226,investigation,1284296420 +158548,4226,memory,1284296453 +158548,4226,Mindfuck,1284296400 +158548,4226,nonlinear,1284296402 +158548,4226,psychology,1284296408 +158548,4226,stylized,1284296414 +158548,4720,afterlife,1284294850 +158548,4720,atmospheric,1284294843 +158548,4720,Isolation,1284294856 +158548,4720,Nicole Kidman,1284294762 +158548,4720,surprise ending,1284294867 +158548,4878,alternate timeline,1284299877 +158548,4878,atmospheric,1284299893 +158548,4878,mental illness,1284299875 +158548,4878,mystery,1284299901 +158548,4878,psychology,1284299891 +158548,4878,social commentary,1284299882 +158548,4878,stylized,1284299889 +158548,4878,surreal,1284299880 +158548,4878,thought-provoking,1284299886 +158548,4902,children,1284302483 +158548,4902,dark,1284302460 +158548,4902,Guillermo del Toro,1284302428 +158548,4902,orphanage,1284302426 +158548,4902,Spanish Civil War,1284302424 +158548,4973,beautifully filmed,1284300112 +158548,4973,feel-good,1284300115 +158548,4973,idealism,1284300120 +158548,4973,inspirational,1284300122 +158548,4973,notable soundtrack,1284300102 +158548,4973,romance,1284300099 +158548,4973,stylized,1284300104 +158548,4973,visually appealing,1284300106 +158548,5219,government research,1284314847 +158548,5219,Milla Jovovich,1284314889 +158548,5219,outbreak,1284314868 +158548,5219,secret facility,1284314883 +158548,5219,virus,1284314809 +158548,5219,zombie,1284314768 +158548,5445,artificial intelligence,1284318115 +158548,5445,dystopia,1284318114 +158548,5445,future,1284318119 +158548,5445,mystery,1284318135 +158548,5902,black comedy,1284300338 +158548,5902,Charlie Kaufman,1284300334 +158548,5902,drugs,1284300366 +158548,5902,melancholy,1284300353 +158548,5902,obsession,1284300340 +158548,5902,schizophrenia,1284300342 +158548,5902,surreal,1284300346 +158548,5903,Amazing Cinematography,1284313939 +158548,5903,Christian Bale,1284313918 +158548,5903,drugs,1284313931 +158548,5903,dystopia,1284313937 +158548,5903,fascism,1284313931 +158548,5903,post-apocalyptic,1284313923 +158548,5903,revolution,1284313925 +158548,5903,totalitarianism,1284313922 +158548,6365,alternate reality,1284313679 +158548,6365,cyberpunk,1284313670 +158548,6365,dystopia,1284313677 +158548,6365,philosophy,1284313684 +158548,6365,Post apocalyptic,1284313668 +158548,6502,epidemic,1284301515 +158548,6502,post-apocalyptic,1284301506 +158548,6502,stylized,1284301517 +158548,6502,survival,1284301509 +158548,6502,visually appealing,1284301519 +158548,6502,zombies,1284301503 +158548,6754,Dark,1284318719 +158548,6754,heroine in tight suit,1284318717 +158548,6754,Kate Beckinsale,1284318715 +158548,6754,vampires,1284318708 +158548,6754,werewolves,1284318712 +158548,6934,alternate reality,1284313852 +158548,6934,cyberpunk,1284313834 +158548,6934,post-apocalyptic,1284313836 +158548,6934,virtual reality,1284313847 +158548,6953,Tragedy,1284300770 +158548,7147,bittersweet,1284300206 +158548,7147,imagination,1284300190 +158548,7147,surreal,1284300189 +158548,7147,surrealism,1284300195 +158548,7147,Tim Burton,1284300184 +158548,7254,alternate reality,1284318439 +158548,7254,mathematics,1284318442 +158548,7254,memory,1284318433 +158548,7254,time travel,1284318431 +158548,7360,zombies,1284320707 +158548,7361,amnesia,1284300074 +158548,7361,bittersweet,1284300046 +158548,7361,Charlie Kaufman,1284300031 +158548,7361,emotional,1284300068 +158548,7361,imagination,1284300042 +158548,7361,memory,1284300035 +158548,7361,nonlinear,1284300061 +158548,7361,philosophy,1284300037 +158548,7361,romance,1284300054 +158548,7361,romantic,1284300058 +158548,7361,surreal,1284300052 +158548,7361,thought-provoking,1284300051 +158548,7373,comic book,1284295682 +158548,7373,daemons,1284295696 +158548,7373,graphic novel,1284295699 +158548,7373,Guillermo del Toro,1284295680 +158548,7373,nazis,1284295708 +158548,7373,occult technology,1284295705 +158548,7373,steampunk,1284295677 +158548,7373,superhero,1284295687 +158548,7827,corporate espionage,1284318312 +158548,7827,cyberpunk,1284318307 +158548,8019,atmospheric,1284302380 +158548,8371,space,1284313720 +158548,8861,bio chemical research,1284314993 +158548,8861,government research,1284315002 +158548,8861,Milla Jovovich,1284315022 +158548,8861,Post apocalyptic,1284314973 +158548,8861,virus,1284314968 +158548,8861,virus outbreak,1284315017 +158548,8861,zombies,1284314967 +158548,8950,bleak,1284296172 +158548,8950,Christian Bale,1284296149 +158548,8950,grim,1284296176 +158548,8950,imaginary friend,1284296180 +158548,8950,insomnia,1284296184 +158548,8950,memory,1284296169 +158548,8950,post-traumatic stress disorder,1284296163 +158548,8950,psychology,1284296166 +158548,8950,puzzle,1284296160 +158548,8950,schizophrenia,1284296156 +158548,8950,stylized,1284296190 +158548,27317,disturbing,1284303100 +158548,27773,depressing,1284302618 +158548,27773,disturbing,1284302605 +158548,27773,paranoid,1284302623 +158548,27773,vengeance,1284302627 +158548,27773,violent,1284302629 +158548,31696,adapted from:comic,1284295401 +158548,31696,angels,1284295394 +158548,31696,comic book,1284295398 +158548,31696,good versus evil,1284295441 +158548,31696,heaven and hell,1284295426 +158548,31696,spiritual warfare,1284295445 +158548,33683,Alexandre Aja,1284297085 +158548,33683,lesbian,1284297074 +158548,33683,psycho,1284297067 +158548,34319,cloning,1284314212 +158548,34319,dystopia,1284314215 +158548,34319,genetics,1284314207 +158548,34319,immortality,1284314209 +158548,34319,Scarlett Johansson,1284314202 +158548,34319,slavery,1284314218 +158548,34405,dystopia,1284314007 +158548,34405,space,1284314005 +158548,37386,atmospheric,1284314726 +158548,37386,dystopia,1284314709 +158548,37386,dystopic future,1284314733 +158548,37386,female warriors,1284314711 +158548,37386,genetics,1284314736 +158548,37386,heroine in tight suit,1284314714 +158548,37386,stylized,1284314704 +158548,37386,visually appealing,1284314706 +158548,42723,brutal,1284303156 +158548,42723,controversial,1284303148 +158548,42723,fun with power tools,1284303152 +158548,42723,twisted,1284303160 +158548,42738,dark fantasy,1284319611 +158548,42738,heroine in tight suit,1284319607 +158548,42738,Kate Beckinsale,1284319605 +158548,42738,vampires,1284319599 +158548,42738,werewolves,1284319602 +158548,47610,19th century,1284320943 +158548,47610,love story,1284320947 +158548,47610,magic,1284320939 +158548,48082,artsy,1284300279 +158548,48082,bittersweet,1284300245 +158548,48082,dream-like,1284300248 +158548,48082,dreams,1284300258 +158548,48082,fantasy,1284300250 +158548,48082,quirky,1284300268 +158548,48082,surreal,1284300271 +158548,48394,alternate reality,1284295116 +158548,48394,atmospheric,1284295114 +158548,48394,bittersweet,1284295099 +158548,48394,fairy tale,1284295084 +158548,48394,imagination,1284295104 +158548,48394,psychology,1284295122 +158548,48394,stylized,1284295088 +158548,48394,surreal,1284295106 +158548,48394,twist ending,1284295110 +158548,48394,violence,1284295119 +158548,48774,apocalypse,1284318669 +158548,48774,atmospheric,1284318673 +158548,48774,dystopia,1284318665 +158548,48774,end of the world,1284318667 +158548,48774,environmental,1284318675 +158548,48774,epidemic,1284318677 +158548,48774,gritty,1284318680 +158548,48780,atmospheric,1284296506 +158548,48780,Christian Bale,1284296519 +158548,48780,magic,1297886732 +158548,48780,Scarlett Johansson,1284296516 +158548,48780,steampunk,1284296513 +158548,49278,time travel,1284318172 +158548,51540,based on a true story,1284321132 +158548,51540,detective,1284321142 +158548,51540,investigation,1284321150 +158548,51540,Journalist,1284321144 +158548,51540,obsession,1284321148 +158548,53000,post-apocalyptic,1284301664 +158548,53000,zombies,1284301647 +158548,55232,bio chemical research,1284314937 +158548,55232,Milla Jovovich,1284314927 +158548,55232,post-apocalyptic,1284314923 +158548,55232,virus,1284314955 +158548,55232,zombies,1284314945 +158548,55282,blood,1284314652 +158548,55282,snow,1284314644 +158548,55282,vampire,1284314603 +158548,56145,bugs,1284301406 +158548,56145,giant monster,1284301391 +158548,56145,group psychology,1284301478 +158548,56145,small town,1284301402 +158548,56145,Survival,1284301396 +158548,56339,fairy tale,1284294893 +158548,56339,ghosts/afterlife,1284294908 +158548,56339,Guillermo del Toro,1284294922 +158548,56339,HAUNTED BY THE PAST,1284294897 +158548,56339,imaginary friend,1284294900 +158548,56339,orphanage,1284294904 +158548,56782,Daniel Day-Lewis,1284300578 +158548,56782,father-son relationship,1284300580 +158548,56782,greed,1284300574 +158548,56782,minimalist,1284300583 +158548,57274,"""found footage""",1284320789 +158548,57274,atmospheric,1284320793 +158548,57274,bloody,1284320797 +158548,57274,Handycam,1284320787 +158548,57274,quarantine,1284320802 +158548,57274,virus,1284320780 +158548,57274,zombies,1284320782 +158548,57368,"""found footage""",1284301568 +158548,57368,alien monster,1284301555 +158548,57368,city under attack,1284301553 +158548,57368,giant monster,1284301558 +158548,57368,Handycam,1284301551 +158548,57368,unsteady-cam,1284301565 +158548,57640,based on a comic,1284295177 +158548,57640,beautiful effects,1284295278 +158548,57640,comic book,1284295195 +158548,57640,golem/automaton,1284295285 +158548,57640,Guillermo del Toro,1284295192 +158548,57640,superhero,1284295290 +158548,58297,apocalypse,1284314439 +158548,58297,cannibalism,1284314434 +158548,58297,mad max,1284314444 +158548,58297,post-apocalyptic,1284314455 +158548,58297,virus,1284314452 +158548,58964,extremely violent,1284302730 +158548,58964,gore,1284302670 +158548,58964,psycho,1284302664 +158548,58964,torture,1284302730 +158548,58964,violence,1284302704 +158548,59727,tense,1284302792 +158548,59727,terrifying,1284302795 +158548,60072,Angelina Jolie,1284319560 +158548,60072,assassin-in-training,1284319569 +158548,60072,graphic novel,1284319565 +158548,60072,stylized violence,1284319573 +158548,61240,adolescence,1284302499 +158548,61240,Beautiful,1284302508 +158548,61240,bittersweet,1284302497 +158548,61240,bullying,1284302521 +158548,61240,love story,1284302503 +158548,61240,swedish,1284302516 +158548,61240,touching,1284302514 +158548,61240,vampires,1284302506 +158548,61350,post-apocalyptic,1284314401 +158548,62203,disturbing,1284303083 +158548,62203,extremely violent,1284303071 +158548,62203,martyrdom,1284302758 +158548,62203,shocking,1284302764 +158548,62203,torture,1284302760 +158548,62203,violent,1284303057 +158548,64839,Character study,1284318610 +158548,64839,Mickey Rourke,1284318642 +158548,64839,relationships,1284318614 +158548,64839,sport:professional wrestling,1284318618 +158548,64839,touching,1284318605 +158548,66090,bad ending,1284320848 +158548,66090,dark,1284320863 +158548,66090,depressing,1284320845 +158548,66090,intense,1284320855 +158548,66090,Tense.,1284320853 +158548,70286,aliens,1284301595 +158548,70286,genetics,1284301588 +158548,70286,humor,1284301593 +158548,70286,intelligent sci-fi,1284301586 +158548,70286,social commentary,1284301584 +158548,71135,aliens,1284313803 +158548,71135,amnesia,1284313806 +158548,71135,horror,1284313809 +158548,71135,space,1284313801 +158548,71304,dark comedy,1284302574 +158548,71304,sex,1284302578 +158548,71304,thought-provoking,1284302558 +158548,71304,vampires,1284302562 +158548,72998,aliens,1284302297 +158548,72998,beautiful scenery,1284302296 +158548,72998,graphic design,1284302283 +158548,72998,jungle,1284302302 +158548,72998,special effects,1284302313 +158548,73268,blood,1284314536 +158548,73268,dystopia,1284314527 +158548,73268,dystopic future,1284314530 +158548,73268,human harvesting,1284314524 +158548,73268,immortality,1284314523 +158548,73268,rebels,1284314534 +158548,73268,undead,1284314521 +158548,73268,vampires,1284314519 +158548,74228,atmospheric,1284378037 +158548,74228,autism,1284377060 +158548,74228,autistic son,1284377655 +158548,74228,endless loop,1284378330 +158548,74228,Greek mythology,1284378089 +158548,74228,grim,1284377765 +158548,74228,guilt,1284377655 +158548,74228,Melissa George,1284377718 +158548,74228,mystery,1284377786 +158548,74228,puzzle,1284378008 +158548,74228,ship,1284377060 +158548,74228,single mother,1284377663 +158548,74228,sisyphean,1284378324 +158548,74228,Sisyphus,1284378314 +158548,74228,storm,1284377639 +158548,74228,time loop,1284377639 +158548,74228,visual style,1284378080 +158548,74458,asylum,1284295744 +158548,74458,atmospheric,1284295849 +158548,74458,insanity,1284295747 +158548,74458,Leonardo DiCaprio,1284295753 +158548,74458,psychological,1284295761 +158548,74458,stylized,1284295849 +158548,74685,contamination,1284320772 +158548,74685,virus,1284320725 +158548,74685,zombies,1284320734 +158548,79132,alternate reality,1284292842 +158548,79132,dreams,1284292851 +158548,79132,Leonardo DiCaprio,1284292906 +158548,79132,mindfuck,1284292849 +158548,79132,multiple interpretations,1284321035 +158548,79132,visually appealing,1284292847 +158548,81591,atmospheric,1297871062 +158548,81591,creepy,1297870956 +158548,81591,Natalie Portman,1297871042 +158613,260,awesome,1439815741 +158613,260,best movie ever,1439815749 +158625,3324,Danny DeVito,1176014130 +158626,84834,china,1431256936 +158626,84834,historical epic,1431256936 +158626,84834,middle ages,1431256936 +158635,34153,Sports,1245647451 +158674,318,comedy,1430546425 +158674,318,entertaining,1430546425 +158674,318,masterpiece,1430546425 +158674,121372,stand up,1430546332 +158692,6,Al Pacino,1425206646 +158692,6,bank robbery,1425206680 +158692,6,crime,1425206634 +158692,6,great acting,1425206628 +158692,6,Natalie Portman,1425206643 +158692,6,realistic action,1425206663 +158692,6,Robert De Niro,1425206625 +158692,6,soundtrack,1425206701 +158692,6,suspense,1425206631 +158692,6,tense,1425206672 +158692,6,Val Kilmer,1425206642 +158692,342,Australia,1425207550 +158692,342,Australian,1425207546 +158692,342,bittersweet,1425207555 +158692,342,comedy,1425207557 +158692,342,quirky,1425207553 +158692,345,Australia,1425207264 +158692,345,gay,1425207272 +158692,345,Hugo Weaving,1425207293 +158692,345,musical,1425207278 +158692,553,Val Kilmer,1425207140 +158692,2463,Bette Midler,1425207402 +158692,2463,comedy,1425207423 +158692,2463,Danny DeVito,1425207406 +158692,4419,desire,1429166794 +158692,4419,loneliness,1429166794 +158692,4419,purpose in life,1429166794 +158692,6773,boring,1425206924 +158692,6773,cycling,1425206912 +158692,6773,no dialogue,1425206899 +158692,6773,Tour de France,1425206902 +158692,27801,Bangkok,1425207516 +158692,27801,buddhism,1425207508 +158692,27801,martial arts,1425207519 +158692,27801,muay thai,1425207505 +158692,27801,no plot,1425207512 +158692,27801,stunts,1425207524 +158692,27801,thailand,1425207510 +158692,48516,Crime,1425206773 +158692,48516,gangsters,1425206768 +158692,48516,Jack Nicholson,1425206751 +158692,48516,Leonardo DiCaprio,1425206747 +158692,48516,Mark Wahlberg,1425206793 +158692,48516,Martin Scorsese,1425206756 +158692,48516,Matt Damon,1425206802 +158692,48516,organized crime,1425206753 +158692,48516,psychology,1425206791 +158692,48516,suspense,1425206770 +158692,55765,1960s,1425206826 +158692,55765,Denzel Washington,1425206815 +158692,55765,Ridley Scott,1425206823 +158692,55765,Russell Crowe,1425206817 +158692,65810,rap,1425977288 +158692,65810,streets,1425977288 +158692,65810,wealth,1425977288 +158692,81788,Russell Crowe,1425206855 +158692,81788,thriller,1425206858 +158692,96079,beautiful cinematography,1425207329 +158692,96079,beautifully filmed,1425207332 +158692,96079,China,1425207363 +158692,96079,hacking,1425207355 +158692,96079,Shanghai,1425207341 +158692,106062,american,1430022355 +158692,106062,crass,1429331793 +158692,106062,vulgar,1430022355 +158692,106920,artificial intelligence,1425207017 +158692,106920,beautiful,1425207042 +158692,106920,Human Computer Interaction,1425207038 +158692,106920,philosophical,1425207035 +158692,106920,Scarlett Johansson,1425207013 +158692,106920,Spike Jonze,1425207031 +158692,106920,thought-provoking,1425207015 +158692,108945,remake,1425207450 +158692,114662,gritty,1425207121 +158692,114662,nationalism,1425207121 +158692,114662,war,1425207121 +158696,43560,fairy tale,1273410835 +158722,5500,Val Kilmer,1176739578 +158725,2571,fantasy,1432211861 +158725,2571,long,1432211861 +158725,2571,scifi,1432211861 +158725,2571,trilogy,1432211861 +158725,66934,fantacy,1432211779 +158725,66934,hit,1432211791 +158725,66934,sci-fi,1432211763 +158746,296,classic,1420820412 +158746,296,epic,1420820412 +158746,296,good music,1420820412 +158746,2959,entertaining,1421694877 +158746,2959,pychologically thrilling,1421694877 +158746,2959,twists & turns,1421694877 +158746,4993,epic,1423256584 +158746,4993,family,1423256584 +158746,4993,journey,1423256584 +158755,30749,true story,1333696903 +158755,86973,based on real story,1438554452 +158755,86973,world war ii,1438554452 +158755,86973,wwii,1438554452 +158772,90746,predictable,1335441532 +158776,36276,art house,1139788863 +158776,59018,immigrants,1218717665 +158782,7486,atmospheric,1275957966 +158782,7486,gay,1275957989 +158782,7486,loneliness,1275958104 +158782,7486,melancholy,1275957983 +158782,7486,queer,1275957992 +158782,26113,less than 300 ratings,1275957718 +158782,27329,less than 300 ratings,1275957236 +158782,27373,less than 300 ratings,1276485822 +158782,46664,less than 300 ratings,1275957261 +158782,66665,quirky,1259378350 +158782,76293,Tina Fey,1275957557 +158782,81591,psychological,1298359381 +158801,1305,soundtrack,1445335196 +158816,3470,distracting score,1388646853 +158819,260,fantasy,1439778977 +158819,260,sci-fi,1439778973 +158819,260,space,1439778966 +158823,296,fast paced,1424408047 +158823,296,good dialogue,1424408047 +158823,296,trendy,1424408047 +158823,356,classic,1426995101 +158823,356,funny,1426995101 +158823,356,sad,1426995101 +158823,2542,funny,1309675865 +158823,2542,humor,1309675846 +158823,2542,multiple storylines,1309676026 +158823,2542,violence,1309675842 +158823,128671,real,1426995251 +158823,128671,somber,1426995244 +158823,128671,sweet,1426995246 +158824,3691,horny teenagers=funny :P,1138587130 +158824,7154,good chick flick :-P,1139704492 +158824,7154,great cast,1139704492 +158824,7169,cute,1139809177 +158824,7169,the guy especially :P,1139809177 +158824,33166,good characters,1139796444 +158824,33166,really interesting,1139796443 +158824,42738,gory,1138587167 +158824,42738,too easy for the good guys,1138587167 +158874,589,Emotional and Heroic,1198898273 +158874,589,Memorable Characters,1198898273 +158874,1954,Inspirational,1198898305 +158874,1954,My favourite character,1198898305 +158874,6890,brilliant,1199043260 +158874,6890,powerful,1199043267 +158874,30707,watched 2006,1199765755 +158874,33794,cool costume,1230501395 +158874,54259,Couldn't watch twice though,1199737537 +158874,54259,Not predictive humour,1199737523 +158874,54259,Refreshing,1199737501 +158874,54503,boring unless you are a like the characters in the film,1199036890 +158874,54503,Good acting,1199036833 +158874,54503,No story line,1199036890 +158874,55820,ambiguous ending,1203263102 +158874,55820,arty ending,1203263092 +158874,55820,can't be arsed to watch more than once cos i know it'll still be confusing,1203263144 +158874,55820,coen brothers,1203263074 +158874,55820,confusing ending,1203263089 +158874,55820,fantastic beginning and middle but spoiled by a terrible confuins ending,1203263127 +158874,55820,fascinating characters,1203263164 +158874,55820,great acting,1203263151 +158874,56174,Beautiful film,1198898388 +158874,56174,believable,1198898395 +158874,56174,good acting,1198898388 +158874,56174,great action,1198898388 +158874,58559,Glaring holes in movie logic,1230501428 +158874,59315,no-brainer,1214056861 +158879,916,elegant love,1193469880 +158879,1411,Shakespeare,1193469996 +158879,2691,music,1193470299 +158888,50,storytelling,1443202021 +158888,50,twist ending,1443202004 +158888,2571,artificial intelligence,1443202071 +158888,2571,philosophy,1443202079 +158888,2571,sci-fi,1443202067 +158888,2571,Special Effects,1443202086 +158888,2571,stylized,1443202092 +158898,260,#boring #Lukeiamyourfather,1441000625 +158898,260,#lukeiamyourfather,1441000643 +158912,1587,Crom!,1185241001 +158912,2011,sci-fi,1185241123 +158912,5040,Crom!,1185241036 +158938,109374,funny,1426296579 +158938,109374,stylized,1426296595 +158938,109374,visually appealing,1426296587 +158958,107,treasure,1368275815 +158958,150,stranded,1368275868 +158958,353,dark hero,1368275912 +158958,380,arnold,1368275966 +158958,485,arnold,1368275966 +158958,589,arnold,1368275966 +158958,592,dark hero,1368275912 +158958,668,bollywood,1368275741 +158958,898,screwball comedy,1368276004 +158958,905,screwball comedy,1368276004 +158958,913,noir thriller,1368275846 +158958,950,screwball comedy,1368276004 +158958,1179,neo-noir,1368276078 +158958,1206,short-term memory loss,1368276199 +158958,1240,arnold,1368275966 +158958,1245,neo-noir,1368276078 +158958,1248,noir thriller,1368275846 +158958,1270,spielberg,1368276238 +158958,1291,spielberg,1368276238 +158958,1387,spielberg,1368276238 +158958,1391,mars,1368275898 +158958,1617,neo-noir,1368276078 +158958,1894,stranded,1368275869 +158958,2022,christian,1368276051 +158958,2022,jesus,1368275777 +158958,2028,spielberg,1368276238 +158958,2115,spielberg,1368276238 +158958,2143,dragon,1368276140 +158958,2193,dragon,1368276140 +158958,2353,conspiracy theory,1368276122 +158958,2718,cheerleading,1368275943 +158958,2726,noir thriller,1368275846 +158958,2916,arnold,1368275966 +158958,3264,cheerleading,1368275943 +158958,3300,stranded,1368275869 +158958,3566,entirely dialogue,1368276101 +158958,4095,lesbian,1137956284 +158958,5445,spielberg,1368276238 +158958,6539,treasure,1368275815 +158958,7013,noir thriller,1368275846 +158958,7318,jesus,1368275777 +158958,7361,short-term memory loss,1368276199 +158958,7386,christian,1368276051 +158958,8529,stranded,1368275869 +158958,8622,conspiracy theory,1368276122 +158958,37741,Truman Capote,1152664430 +158960,50,complicated,1447612590 +158960,50,twist ending,1447612581 +158960,953,alternate reality,1447612392 +158960,1203,confrontational,1447612169 +158960,1203,thought-provoking,1447612165 +158960,1584,Carl Sagan,1447612086 +158960,1584,inspirational,1447612089 +158960,1584,science,1447612102 +158960,1653,thought-provoking,1447612126 +158960,2329,powerful ending,1447612335 +158960,2329,thought-provoking,1447612324 +158960,3089,poverty,1447612434 +158960,6016,powerful ending,1447612417 +158960,27803,touching,1447613460 +158960,55908,philosophical,1447612022 +158960,55908,thought-provoking,1447612027 +158960,55908,unique,1447612065 +158960,77658,astronomy,1447612443 +158960,77658,biology,1447612455 +158960,77658,Carl Sagan,1447612449 +158960,77658,enlightening,1447612460 +158960,77658,evolution,1447612463 +158960,77658,irreligion,1447612457 +158960,77658,physics,1447612452 +158960,77658,science,1447612446 +158960,105504,tense,1447613855 +158963,91630,action,1428264635 +158963,114795,action,1428264707 +158963,114795,blood,1428264707 +158963,114795,classic,1428264707 +158989,916,good in it's day,1189035791 +158989,1694,absolutely awsome! Great actor!,1189035970 +158989,2423,funny!,1189035751 +158989,3450,great,1189035769 +158989,46578,funny,1189036035 +159016,2502,I could watch this 1000 times. I'm getting close to that number too.,1138324129 +159023,1721,friends,1437718437 +159023,1721,Titanic,1437718405 +159023,2409,Rocky,1437718570 +159079,47,Theater,1137165451 +159079,47,VHS,1137165451 +159079,101,RENT,1150258894 +159079,101,THEATER,1150258930 +159079,101,TV,1137165422 +159079,216,Theater,1137165420 +159079,216,TV,1150258848 +159079,216,VHS,1137165420 +159079,223,RENT,1150258967 +159079,223,THEATER,1150258967 +159079,231,THEATER,1150259345 +159079,231,TV,1150259345 +159079,231,VHS,1150259345 +159079,260,TV,1137165457 +159079,260,VHS,1137165457 +159079,296,Theater,1137165438 +159079,296,TV,1150259124 +159079,296,VHS,1137165438 +159079,318,Theater,1137165452 +159079,318,TV,1137165452 +159079,318,VHS,1137165452 +159079,454,THEATER,1150259359 +159079,471,VHS,1137165430 +159079,535,RENT,1150259209 +159079,671,RENT,1150259437 +159079,671,TV,1150259437 +159079,750,CLASS,1150258985 +159079,800,RENT,1150259044 +159079,1080,RENT,1150259059 +159079,1080,TV,1137165433 +159079,1089,Theater,1137165448 +159079,1089,VHS,1137165448 +159079,1136,TV,1137165436 +159079,1136,VHS,1137165436 +159079,1196,Theater,1137165456 +159079,1196,TV,1137165456 +159079,1196,VHS,1137165456 +159079,1198,TV,1137165443 +159079,1198,VHS,1137165443 +159079,1228,VHS,1137165442 +159079,1242,Class,1137165429 +159079,1259,Theater,1137165455 +159079,1259,TV,1137165455 +159079,1259,VHS,1137165455 +159079,1270,DVD,1137165418 +159079,1270,THEATER,1150258788 +159079,1270,TV,1150258818 +159079,1449,RENT,1150259327 +159079,1449,THEATER,1150259335 +159079,1476,RENT,1150259103 +159079,1476,THEATER,1150259111 +159079,1476,VHS,1137165436 +159079,1617,RENT,1150259418 +159079,1923,Theater,1137165458 +159079,1923,TV,1137165458 +159079,1923,VHS,1137165458 +159079,1961,Theater,1137165447 +159079,1961,VHS,1137165447 +159079,1997,RENT,1150259352 +159079,2005,TV,1150259371 +159079,2108,TV,1137165430 +159079,2108,VHS,1137165430 +159079,2174,TV,1150258829 +159079,2174,VHS,1137165419 +159079,2289,RENT,1150259084 +159079,2329,RENT,1150258720 +159079,2371,TV,1137165425 +159079,2371,VHS,1137165425 +159079,2406,RENT,1150259156 +159079,2406,TV,1137165449 +159079,2716,DVD,1150259026 +159079,2716,THEATER,1150259026 +159079,2716,TV,1150259026 +159079,2791,DVD,1150258653 +159079,2797,TV,1150258837 +159079,2804,TV,1150258955 +159079,2841,THEATER,1150259277 +159079,2841,VHS,1150259277 +159079,2863,TV,1150259032 +159079,2918,TV,1150258993 +159079,2959,THEATER,1150259007 +159079,2959,VHS,1150259007 +159079,3098,TV,1150259065 +159079,3261,TV,1150259220 +159079,3261,VHS,1150259220 +159079,3552,TV,1150258942 +159079,3556,VHS,1137164968 +159079,3948,THEATER,1150259428 +159079,3948,TV,1150259428 +159079,3994,THEATER,1150259307 +159079,3994,VHS,1150259307 +159079,4027,THEATER,1150259078 +159079,4027,TV,1150259078 +159079,4027,VHS,1150259078 +159079,4034,THEATER,1150259295 +159079,4034,VHS,1150259295 +159079,4148,THEATER,1150259384 +159079,4148,VHS,1150259384 +159079,8368,DVD,1150259399 +159079,8368,THEATER,1150259399 +159079,35836,DVD,1137164993 +159097,260,classic,1439761825 +159097,260,sci-fi,1439761815 +159103,260,"action, scifi",1434363056 +159103,260,space action,1434363065 +159103,1036,Bruce Willis,1434363142 +159103,1036,good action,1434363150 +159103,1036,intense,1434363160 +159118,260,good vs evil,1437226117 +159118,260,space adventure,1437226099 +159134,112741,christian,1423757151 +159134,112741,derivative,1423757151 +159134,112741,unconvincing,1423757151 +159138,59784,action packed,1219715632 +159138,60069,Sci-Fi,1219715529 +159143,1267,assassination,1169974208 +159147,260,cult classic,1431294096 +159147,260,good sfx,1431294115 +159174,296,classic,1437273946 +159174,296,highly quotable,1437273946 +159174,296,tarantino,1437273946 +159196,260,epic,1444326562 +159196,260,space adventure,1444326567 +159201,3033,comedy,1188266123 +159201,3033,funny,1188266123 +159201,3033,mel brooks,1188266123 +159201,3033,sci-fi comedy,1188266123 +159211,2712,atmospheric,1434356484 +159211,2712,disturbing,1434356488 +159211,2712,dreamlike,1434356502 +159211,2712,enigmatic,1434356475 +159211,2712,notable soundtrack,1434356480 +159211,2712,sexual,1434356486 +159211,2712,surreal,1434356505 +159211,2712,Tom Cruise,1434356493 +159211,7024,disturbing,1434356737 +159211,55069,abortion,1415813390 +159211,55069,long takes,1415813377 +159211,58301,dark humor,1434356645 +159211,69134,disturbing,1415813478 +159211,77307,disturbing,1415813422 +159217,88750,disguise,1427878663 +159217,88750,rififi,1427878663 +159217,88750,robbery,1427878663 +159251,151,18th century,1437673169 +159251,151,Liam Neeson,1437673105 +159251,151,Scotland,1437673143 +159251,2340,Romance,1434493079 +159251,2470,New York City,1437086205 +159251,3916,based on a true story,1438186535 +159251,3916,football,1438186530 +159251,3916,race issues,1438186543 +159251,5690,anime,1437574142 +159251,5690,Japan,1437574163 +159251,5690,Studio Ghibli,1437574148 +159251,5690,tragedy,1437574156 +159251,5690,World War II,1437574151 +159251,26938,Rolf Lassgård,1438083869 +159251,33660,1930s,1439746744 +159251,33660,boxing,1439746731 +159251,33660,true story,1439746737 +159251,64620,based on a true story,1437430942 +159251,64620,Nixon,1437430947 +159251,64620,politics,1437430935 +159251,74754,flabby ass,1445427866 +159251,111529,homosexuality,1429820288 +159251,111781,Action,1438372565 +159251,111781,Tom Cruise,1438372576 +159251,114007,Amnesia,1440279044 +159251,114342,relationship drama,1437597781 +159251,117529,dinosaurs,1437335680 +159251,117851,talking animals,1437935394 +159251,119155,Ben Stiller,1436123347 +159251,120799,Arnold Schwarzenegger,1437770352 +159251,120799,Emilia Clarke,1437770350 +159251,128725,christmas,1424186934 +159251,132046,Adventure,1434149490 +159251,132046,Future,1434149510 +159251,132046,George Clooney,1434149481 +159251,135887,Animated,1436814014 +159251,146427,animation,1446992992 +159275,215,bittersweet,1415131183 +159275,215,boring,1415914643 +159275,215,conversation,1415131159 +159275,215,dialogue driven,1415131169 +159275,215,loneliness,1415131180 +159275,215,love story,1415131196 +159275,215,philosophical,1415131228 +159275,215,philosophy,1415131215 +159275,215,quirky,1415914797 +159275,215,reflective,1415131174 +159275,215,romantic,1415131173 +159275,215,thought-provoking,1415131203 +159275,215,Vienna,1415914755 +159275,215,wistful,1415914789 +159275,590,American Civil War,1414248567 +159275,590,based on book,1414248543 +159275,590,bittersweet,1414248546 +159275,590,culture clash,1414248582 +159275,590,drama,1414248538 +159275,590,indians,1414248604 +159275,590,love story,1414248535 +159275,590,war,1414248586 +159275,590,western,1414248596 +159275,1619,Buddhism,1389309614 +159275,1619,China,1389309619 +159275,1619,great cinematography,1389309592 +159275,1619,JOURNEY OF SELF-DISCOVERY,1389309596 +159275,1619,mountains,1389309610 +159275,1619,traveling,1389309607 +159275,1719,atmospheric,1414932665 +159275,1719,based on a book,1414932650 +159275,1719,Canada,1414932654 +159275,1719,death,1414932717 +159275,1719,Incest,1414932657 +159275,1719,meditative,1414932635 +159275,1719,melancholic,1414932660 +159275,1719,Nudity (Full Frontal),1414932679 +159275,1719,small town,1414932683 +159275,1719,wintry,1414932700 +159275,1962,aging,1414703813 +159275,1962,based on a play,1414703896 +159275,1962,boring,1414703922 +159275,1962,Drama,1414703854 +159275,1962,friendship,1414703861 +159275,1962,Morgan Freeman,1414703875 +159275,1962,no action,1414703922 +159275,1962,old age,1414703857 +159275,1962,racism,1414703880 +159275,1962,Southern theme,1414703882 +159275,1962,USA,1414703885 +159275,2324,bittersweet,1404508243 +159275,2324,emotional,1404508252 +159275,2324,heartwarming,1405162775 +159275,2324,Holocaust,1389309722 +159275,2324,Italy,1389309737 +159275,2324,love,1389309735 +159275,2324,Oscar (Best Foreign Language Film),1404508261 +159275,2324,Oscar Winner,1404508239 +159275,2324,sentimental,1389309725 +159275,2324,survival,1404508257 +159275,2628,adventure,1406474907 +159275,2628,fantasy,1406474916 +159275,2628,music,1406474905 +159275,2628,Natalie Portman,1406474902 +159275,2628,robots,1406474862 +159275,2628,sci-fi,1406474865 +159275,2628,space,1406474897 +159275,2628,Star Wars,1406474879 +159275,3148,abortion,1414335320 +159275,3148,based on a book,1414335090 +159275,3148,charlize theron,1414335302 +159275,3148,Drama,1414335121 +159275,3148,Incest,1414335124 +159275,3148,medicine,1414335340 +159275,3148,orphans,1414335312 +159275,3148,Tobey Maguire,1414335104 +159275,3481,based on a book,1399117141 +159275,3481,break-up,1399117159 +159275,3481,Catherine Zeta-Jones,1399117136 +159275,3481,funny,1399117119 +159275,3481,relationships,1399117124 +159275,4022,island,1400957839 +159275,4022,SURVIVAL,1400957850 +159275,4235,boring,1406059373 +159275,4235,dogs,1405874817 +159275,4235,drama,1405874824 +159275,4235,multiple storylines,1405874854 +159275,5378,action,1406474940 +159275,5378,adventure,1406474943 +159275,5378,aliens,1406474945 +159275,5378,fantasy,1406474948 +159275,5378,George Lucas,1406474936 +159275,5378,robots,1406474952 +159275,5378,romance,1406474950 +159275,5378,sci-fi,1406474955 +159275,5378,space,1406474957 +159275,5378,Star Wars,1406474960 +159275,6870,based on a book,1393795254 +159275,6870,Drama,1393795227 +159275,6870,family,1393795249 +159275,6870,mystery,1393795231 +159275,6870,powerful ending,1393795234 +159275,6870,twist ending,1393795240 +159275,7502,based on a book,1389536533 +159275,7502,friendship,1389536506 +159275,7502,though provoking,1389536521 +159275,7502,true story,1389536540 +159275,8207,adapted from:book,1417274532 +159275,8207,assassin,1417274496 +159275,8207,assassination,1417274509 +159275,8207,History,1417274543 +159275,8207,interesting,1417274521 +159275,8207,Southern Europe,1417274511 +159275,8207,tense,1417274493 +159275,8207,thriller,1417274507 +159275,8638,bittersweet,1415914716 +159275,8638,boring,1415914739 +159275,8638,dialogue,1415914698 +159275,8638,emotional,1415914675 +159275,8638,Paris,1415914704 +159275,8638,philosophical,1415914722 +159275,8638,quirky,1415914679 +159275,8638,romance,1415914710 +159275,8638,romantic,1415914672 +159275,8958,adultery,1413670959 +159275,8958,biographical,1413670831 +159275,8958,Biography,1413670823 +159275,8958,blindness,1413670932 +159275,8958,disability,1413670935 +159275,8958,drug addiction,1413670928 +159275,8958,drugs,1413670864 +159275,8958,genius,1413670834 +159275,8958,great acting,1413670838 +159275,8958,history,1413670881 +159275,8958,music,1413670841 +159275,8958,music business,1413670951 +159275,8958,musical,1413670957 +159275,8958,rhythm & blues,1413670942 +159275,8973,boring,1413403374 +159275,8973,Catholicism,1413403254 +159275,8973,child abuse,1413403400 +159275,8973,drugs,1413403405 +159275,8973,enigmatic,1413403268 +159275,8973,Gay sex,1413403374 +159275,8973,mistaken identity,1413403295 +159275,8973,queer,1413403279 +159275,8973,soccer,1413403398 +159275,8973,spanish,1413403410 +159275,27340,bad acting,1390084083 +159275,27340,father daughter relationship,1390084058 +159275,27340,interracial romance,1390084046 +159275,27340,Nudity (Topless - Notable),1390084037 +159275,27340,Nudity (Topless),1390084040 +159275,27340,primitive peoples,1390084062 +159275,27727,alcoholism,1412431592 +159275,27727,complex characters,1412431587 +159275,27727,confusing,1412431571 +159275,27727,Germany,1412431606 +159275,27727,loneliness,1412431612 +159275,27727,love story,1412431578 +159275,27727,Nudity (Full Frontal),1412431604 +159275,27803,biomedical ethics,1405250768 +159275,27803,death,1405250857 +159275,27803,disability,1405250854 +159275,27803,emotional,1405250760 +159275,27803,euthanasia,1405250851 +159275,27803,FIGHTING THE SYSTEM,1405250897 +159275,27803,meditative,1405250785 +159275,27803,Oscar (Best Foreign Language Film),1405250932 +159275,27803,SUICIDE,1405250844 +159275,27803,suicide attempt,1405250836 +159275,27803,terminal illness,1405250834 +159275,27803,touching,1405250774 +159275,27803,true story,1405250777 +159275,30803,boring,1414925369 +159275,30803,deliberate,1414872578 +159275,30803,nonsense,1414925398 +159275,30803,philosophycal,1414872512 +159275,30803,quiet,1414872517 +159275,30803,quirky,1414872522 +159275,30803,silent,1414872494 +159275,30803,very little dialogue,1414872498 +159275,37741,biopic,1403990776 +159275,37741,character study,1403990756 +159275,37741,death penalty,1403990817 +159275,37741,gay,1403990812 +159275,37741,journalism,1403990809 +159275,37741,prison,1403990804 +159275,37741,thought provoking,1403990752 +159275,37741,writers,1403990750 +159275,40819,based on a true story,1414865361 +159275,40819,biography,1414865364 +159275,40819,bittersweet,1414865382 +159275,40819,Joaquin Phoenix,1414865433 +159275,40819,love,1414865372 +159275,40819,music,1414865368 +159275,40819,music business,1414865370 +159275,40819,true story,1414865377 +159275,41285,Disturbing,1398892248 +159275,41285,interesting,1398892221 +159275,41285,murder mystery,1398892288 +159275,41285,non-hollywood ending,1398892278 +159275,41285,twist,1398892238 +159275,41285,twist ending,1398892243 +159275,43376,based on a true story,1412536129 +159275,43376,simple,1412536147 +159275,43376,Straight forward,1412536434 +159275,43376,strong woman,1412536133 +159275,43376,WOMEN DURING WARTIME,1412536157 +159275,43376,World War II,1412536159 +159275,48696,cynical,1390132736 +159275,48696,disturbing,1390132782 +159275,48696,drama,1390132720 +159275,48696,family,1390132794 +159275,48696,Nudity (Topless - Notable),1390132710 +159275,48696,Nudity (Topless),1390132714 +159275,48696,psychology,1390132708 +159275,48696,reflective,1390132705 +159275,48696,small town,1390132749 +159275,49772,emotional,1390176229 +159275,49772,epidemic,1390176247 +159275,49772,husband-wife relationship,1390176200 +159275,49772,romance,1390176218 +159275,49772,science,1390176215 +159275,49772,scientific research,1390176211 +159275,55276,George Clooney,1421185091 +159275,55276,lawyers,1421185095 +159275,55814,based on a true story,1400957487 +159275,55814,depressing,1400957500 +159275,55814,disability,1400957524 +159275,55814,hospital,1400957520 +159275,55814,marriage,1400957511 +159275,55814,thought-provoking,1400957494 +159275,55814,touching,1400957481 +159275,55814,true story,1400957484 +159275,56389,bittersweet,1404658877 +159275,56389,boring,1404658892 +159275,56389,Jude Law,1404658912 +159275,56389,Natalie Portman,1404658914 +159275,56389,road movie,1404658903 +159275,56389,soundtrack,1404658897 +159275,56389,visually appealing,1404658880 +159275,59018,alternate endings,1406145376 +159275,59018,beautiful,1406145338 +159275,59018,humanity,1406145341 +159275,59018,quirky,1406145432 +159275,59018,quirky style,1406145434 +159275,59018,romance,1406145344 +159275,59018,solitude,1406145388 +159275,60950,awkward,1412424986 +159275,60950,Barcelona,1412424925 +159275,60950,love,1412424990 +159275,60950,relationships,1412424978 +159275,60950,romance,1412424952 +159275,60950,threesome,1412424943 +159275,60950,visually appealing,1412424945 +159275,68159,congressman,1419630185 +159275,68159,corruption,1419630169 +159275,68159,journalism,1419630135 +159275,68159,mistress,1419630204 +159275,68159,murder,1419630147 +159275,68159,newspaper,1419630180 +159275,68159,political corruption,1419630146 +159275,68159,politics,1419630175 +159275,68159,secrets,1419630172 +159275,68159,tense,1419630188 +159275,69757,bittersweet,1407877212 +159275,69757,Funny,1407877196 +159275,69757,humorous,1407877184 +159275,69757,love,1407877199 +159275,69757,nonlinear,1407877206 +159275,69757,relationships,1407877215 +159275,69757,romance,1407877180 +159275,71033,drama,1388323435 +159275,71033,excellent script,1388323402 +159275,71033,love,1388323408 +159275,71033,mystery,1388323412 +159275,71033,nostalgic,1388323416 +159275,71033,revenge,1388323428 +159275,72998,effects,1415448510 +159275,72998,environmental,1415448520 +159275,72998,music,1415448517 +159275,72998,sci-fi,1415448500 +159275,72998,thought-provoking,1415448524 +159275,79132,action,1389309556 +159275,79132,alternate reality,1389309535 +159275,79132,drama,1389309539 +159275,79132,psychology,1389309544 +159275,79132,thought-provoking,1389309550 +159275,79132,twist ending,1389309547 +159275,80969,atmospheric,1412424740 +159275,80969,based on a book,1412424754 +159275,80969,cynical,1412424759 +159275,80969,depressing,1412424729 +159275,80969,disturbing,1412424733 +159275,80969,dystopia,1412424736 +159275,80969,emotional,1412424793 +159275,80969,love story,1412424799 +159275,80969,thought-provoking,1412424805 +159275,81845,based on a true story,1389309511 +159275,81845,complex characters,1389309487 +159275,81845,drama,1389309499 +159275,81845,Oscar (Best Picture),1389309517 +159275,85414,mindfuck,1448114818 +159275,85414,sci-fi,1448114824 +159275,88744,action,1405174626 +159275,88744,Alzheimer's disease,1405174662 +159275,88744,Animals,1405174660 +159275,88744,genetics,1405174589 +159275,88744,sci-fi,1405174657 +159275,88744,thought-provoking,1405174592 +159275,88744,touching,1405174596 +159275,88744,virus,1405174603 +159275,90866,adapted from:book,1405251930 +159275,90866,bittersweet,1405251890 +159275,90866,children,1405251910 +159275,90866,cinematography,1405251916 +159275,90866,fantasy,1405251956 +159275,90866,nostalgic,1405251886 +159275,90866,Paris,1405251883 +159275,90866,robots,1405251923 +159275,90866,visually appealing,1405251881 +159275,93498,based on a true story,1400957563 +159275,93498,campaign manager,1400957567 +159275,93498,politics,1400957554 +159275,93498,real life,1400957557 +159275,93721,Fish,1400957661 +159275,93721,food,1400957663 +159275,93721,Ginza,1400957666 +159275,93721,Japan,1400957623 +159275,93721,Michelin,1400957670 +159275,93721,sushi,1400957676 +159275,93721,Tokyo,1400957672 +159275,93721,Tsukiji,1400957675 +159275,97870,disability,1415911826 +159275,97870,drama,1415911726 +159275,97870,humor,1415911622 +159275,97870,nudity (full frontal),1415911617 +159275,97870,relationships,1415911626 +159275,97870,sexuality,1415911629 +159275,97870,static,1415911822 +159275,97870,strange,1415911758 +159275,97870,uncomfortable,1415911799 +159275,98154,biography,1389309446 +159275,98154,history,1389309466 +159275,98154,oscar (best directing),1389309455 +159275,98154,US President,1389309468 +159275,104337,president; butler,1422659186 +159275,104913,Ferrari,1389309656 +159275,104913,Formula 1,1389309638 +159275,104913,great skill,1389309679 +159275,104913,interesting characters,1389309652 +159275,104913,racing,1389309644 +159275,104913,sports,1389309648 +159275,104913,unpredictable,1389309664 +159275,105211,depressing,1428432717 +159275,105211,happy ending,1428432733 +159275,105211,middle-aged protagonist,1428432721 +159275,105211,warm,1428432727 +159275,105504,captain,1389309356 +159275,105504,ocean,1389309366 +159275,105504,suspense,1389309350 +159275,105504,true story,1389309369 +159275,106100,disease,1392415008 +159275,106100,Matthew McConaughey,1392414970 +159275,106100,medical,1392414987 +159275,106438,based on a book,1421184835 +159275,106438,based on a true story,1421184882 +159275,106438,bittersweet,1421184814 +159275,106438,dramatic comedy,1421184846 +159275,106438,sad,1421184861 +159275,106438,story,1421184843 +159275,106438,true story,1421184807 +159275,106441,adapted from:book,1391028867 +159275,106441,narration,1391028873 +159275,106441,touching,1391028858 +159275,106441,World War II,1391028880 +159275,106766,atmospheric,1415448386 +159275,106766,boring,1415448416 +159275,106766,cats,1415448423 +159275,106766,depressing,1415448410 +159275,106766,folk music,1415448434 +159275,106766,New York City,1415448393 +159275,106782,Nudity (Full Frontal),1389309282 +159275,106782,Nudity (Topless),1389309291 +159275,106782,repetitive,1389309240 +159275,106782,Wall Street,1389309247 +159275,106920,artificial intelligence,1392414629 +159275,106920,bittersweet,1392414595 +159275,106920,Human Computer Interaction,1392414625 +159275,106920,Joaquin Phoenix,1414865458 +159275,106920,landscape,1392414802 +159275,106920,letters,1392414623 +159275,106920,loneliness,1392414620 +159275,106920,meaning of life,1392414600 +159275,106920,original plot,1392414708 +159275,106920,philosophical,1392414607 +159275,106920,psychology,1392414613 +159275,106920,sad,1392414717 +159275,106920,thought-provoking,1392414616 +159275,106983,Nudity (Topless),1398892423 +159275,106983,repeating,1398892441 +159275,106983,simple,1398892463 +159275,107069,Afghanistan,1390606482 +159275,107069,friendship,1392415078 +159275,107069,seals,1390606474 +159275,107069,true story,1390606479 +159275,108727,naration,1391379315 +159275,108727,Nudity (Full Frontal - Notable),1391378386 +159275,108727,sexuality,1391378811 +159275,108727,story,1391378677 +159275,108928,based on a true story,1399225524 +159275,108928,George Clooney,1399225544 +159275,108928,german sync,1399225528 +159275,108928,matt damon,1399225538 +159275,108981,Lars von Trier,1392414551 +159275,108981,Nudity (Full Frontal - Notable),1392414541 +159275,108981,pornography,1392414544 +159275,108981,sexuality,1392414547 +159275,108981,Unexpected Ending,1392414569 +159275,109374,quirky,1412424875 +159275,109374,visually appealing,1412424862 +159275,109487,interesting ideea,1415904647 +159275,109487,original,1415904653 +159275,109487,philosophical issues,1415904686 +159275,109487,sentimental,1415904671 +159275,109487,space,1415904616 +159275,109487,spectacle,1415904677 +159275,109487,thought-provoking,1415904620 +159275,109487,time-travel,1415904606 +159275,109487,wormhole,1415904635 +159275,111622,bitterswee,1406474778 +159275,111622,music,1406474813 +159275,111622,new york,1406474804 +159275,111622,romance,1406474709 +159275,111622,soundtrack,1406474688 +159275,111622,story,1406474700 +159275,111759,action,1403432685 +159275,111759,future,1403432670 +159275,111759,original plot,1403432673 +159275,111759,sci-fi,1403432676 +159275,111759,time loop,1403432696 +159275,111759,time travel,1403432679 +159275,111759,Tom Cruise,1403432688 +159275,111759,war,1403432693 +159275,112370,dialogue,1404508717 +159275,112370,plot holes,1404508707 +159275,112370,ridiculous dialogue,1404508711 +159275,112370,robots,1404508714 +159275,112370,transformers,1404508702 +159275,112370,weak story,1404508709 +159275,112552,drama,1448114470 +159275,112552,education,1448114467 +159275,112552,good acting,1448114474 +159275,112552,jazz,1448114461 +159275,112552,motivation,1448114487 +159275,112552,perfectionism,1448114479 +159275,112552,psychological,1448114476 +159275,112556,adultery,1413280833 +159275,112556,Ben Affleck,1413280836 +159275,112556,false accusation,1413280822 +159275,112556,good adaptation,1413280852 +159275,112556,Infidelity,1413280806 +159275,112556,marriage,1413280818 +159275,112556,meticulous,1413280777 +159275,112556,mindfuck,1413280779 +159275,112556,murder,1413280807 +159275,112556,Psychopathy,1413280781 +159275,112556,unpredictable,1413280783 +159275,112623,action,1405162500 +159275,112623,emotional,1405162357 +159275,112623,genetics,1405162806 +159275,112623,Matt Reeves,1405162812 +159275,112623,relationships,1405162500 +159275,112623,virus,1405162801 +159275,112852,Action,1413391093 +159275,112852,comic,1413391116 +159275,112852,fantasy,1413391174 +159275,112852,sci-fi,1413391134 +159275,112852,space,1413391099 +159275,112852,superheroes,1413391222 +159275,112852,talking animals,1413391097 +159275,112852,Vin Diesel,1413391128 +159275,112940,counterespionage,1419704398 +159275,112940,slow,1419704404 +159275,114662,based on a book,1422659131 +159275,115170,Law,1421184762 +159275,115210,acting,1414704223 +159275,115210,action,1414704223 +159275,115210,Brad Pitt,1414704128 +159275,115210,David Ayer,1414704356 +159275,115210,drama,1414704152 +159275,115210,sentimental,1414704152 +159275,115210,to much war,1414704239 +159275,115210,war hero,1414704223 +159275,115210,World War II,1414704106 +159275,115713,artificial intelligence,1448113515 +159275,115713,Drama,1448113537 +159275,115713,Manipulations,1448113548 +159275,115713,philosophical,1448113523 +159275,115713,sci-fi,1448113518 +159275,115713,technology,1448113550 +159275,115713,thought provoking,1448113534 +159275,116397,mental illness,1417274722 +159275,116397,surprising,1417274631 +159275,116397,twisted end,1417274617 +159275,116797,code breaking,1422659241 +159275,116797,Computers,1422659264 +159275,116797,cryptography,1422659229 +159275,116797,genius,1422659252 +159275,116797,history,1422659245 +159275,116797,informatics,1422659255 +159275,116797,mathematics,1422659237 +159275,116797,World War II,1422659224 +159275,117176,love,1448114710 +159275,117176,physics,1448114704 +159275,117176,science,1448114713 +159275,117176,Stephen Hawking,1448114700 +159275,117176,True story,1448114707 +159275,117871,image,1422659356 +159275,117871,Olga Kurylenko,1422659453 +159275,117871,story,1422659365 +159275,134130,based on book,1448113771 +159275,134130,Improvisation,1448113768 +159275,134130,mars,1448113754 +159275,134130,matt damon,1448113761 +159275,134130,NASA,1448113760 +159275,134130,Near Future,1448113756 +159275,134130,predictible,1448113813 +159275,134130,sci-fi,1448113738 +159275,134130,scientific,1448113751 +159275,134130,Space,1448113734 +159275,134130,Survival Instinct,1448113773 +159275,134214,boring,1448113621 +159275,134214,no action,1448113637 +159288,260,classic,1430279446 +159288,260,Science Fiction,1430279458 +159291,118702,Christian,1441662792 +159292,260,jedi,1441952508 +159292,260,lightsabers,1441952518 +159292,260,space adventures,1441952501 +159298,6669,courage,1188936429 +159298,6669,life in general,1188936429 +159298,6669,terminal illness,1188936471 +159323,1208,Francis Ford Coppola,1284132801 +159331,922,Dark,1427047815 +159331,922,film noir,1427047813 +159331,922,noir thriller,1427047819 +159331,922,William Holden,1427047845 +159331,1104,best male performance ever,1427051512 +159331,1104,Marlon Brando,1427049760 +159331,1228,Martin Scorsese,1427047221 +159331,1228,oscar (best cinematography),1427047447 +159331,1228,photography,1427047227 +159331,1228,Robert De Niro,1427047217 +159331,1228,sport:boxing,1427047458 +159331,1228,sports,1427047454 +159331,1228,Thelma Schoonmaker,1427047422 +159331,1234,Paul Newman,1427047185 +159331,1234,twist ending,1427047191 +159331,1234,twists & turns,1427047572 +159331,1729,Robert De Niro,1427049884 +159331,3196,Billy Wilder,1427047875 +159331,3196,William Holden,1427047871 +159331,48516,Leonardo DiCaprio,1427047600 +159331,48516,Martin Scorsese,1427047603 +159331,68157,Christoph Waltz,1427050067 +159331,99114,Christoph Waltz,1427050089 +159331,99114,Leonardo DiCaprio,1427050079 +159331,99114,Samuel L. Jackson,1427050085 +159331,102407,acting,1427047721 +159331,102407,anachronistic music,1427047711 +159331,102407,Modern music,1427047700 +159331,102407,visually appealing,1427047731 +159331,106782,3-hours of sex and drugs,1427051571 +159364,3415,Tarkovsky,1169532303 +159364,4979,brilliant,1169530572 +159364,30810,Owen Wilson,1169530997 +159364,46578,family drama,1169530014 +159383,296,drugs,1423688403 +159383,296,multiple storylines,1423688403 +159383,296,tarantino,1423688403 +159383,63876,Sean Penn,1241224246 +159389,68157,War,1430729478 +159389,72998,futuristic,1430729503 +159389,72998,sci-fi,1430729501 +159394,260,atmospheric,1440785553 +159394,260,classic sci-fi,1440785559 +159394,260,geeky,1440785543 +159395,296,Quentin Tarantino,1358779102 +159395,296,You know what they call a Quarter Pounder with cheese in France?,1358779113 +159395,551,atmospheric,1358779903 +159395,551,dark,1358779895 +159395,551,stylized,1358779907 +159395,551,whimsical,1358779908 +159395,8368,Dark,1358778249 +159395,8368,Gary Oldman,1358778226 +159395,8368,magic,1358778230 +159395,8368,visually stunning,1358778273 +159395,25927,Dark,1358778935 +159395,25927,double life,1358778944 +159395,25927,Edward G. Robinson,1358778909 +159395,25927,Orson Welles,1358778766 +159395,25927,Suspense,1358778897 +159395,46976,Dustin Hoffman,1358777567 +159395,46976,narrated,1358777556 +159395,46976,storytelling,1358777562 +159395,46976,Will Ferrell,1358777572 +159395,50912,Alexander Payne,1358777798 +159395,50912,Isabel Coixet,1358777997 +159395,50912,Margo Martindale,1358777789 +159395,50912,vignettes,1358777947 +159395,50912,Vincenzo Natali,1358777848 +159395,57640,beautiful effects,1358778391 +159395,57640,Fable,1358778405 +159395,69757,great soundtrack,1358777658 +159395,69757,humor,1358777637 +159395,69757,humorous,1358777639 +159395,69757,music,1358777642 +159395,69757,stylized,1358777648 +159395,94959,Bill Murray,1358777488 +159395,94959,boy scouts,1358777492 +159395,94959,quirky,1358777486 +159395,94959,Wes Anderson,1358777479 +159400,32,brilliant,1137213774 +159400,32,classic,1137213774 +159400,32,genius,1137213774 +159400,47,genius horror,1137213786 +159400,110,overrated,1138677359 +159400,111,classic,1137213782 +159400,235,underappreciated,1137213794 +159400,296,classic,1137213997 +159400,296,tarantino is god,1137213978 +159400,318,genius,1137213785 +159400,501,brilliant,1140456611 +159400,541,mindfuck,1139279862 +159400,555,tarantino is god,1137213775 +159400,592,creepy goodness,1138677378 +159400,593,brilliant horror,1137213784 +159400,595,animated classic,1137213791 +159400,608,classic,1137213795 +159400,714,beautiful,1140364645 +159400,714,iggy pop!!!,1140364645 +159400,750,genius,1137213793 +159400,778,twisted genius,1137213777 +159400,832,mediocre,1138511309 +159400,858,classic,1137213797 +159400,904,classic,1137213786 +159400,908,classic,1137213798 +159400,910,funny as hell,1138590223 +159400,912,Classic,1138590085 +159400,923,perfect,1138590097 +159400,926,bettie davis rules,1138247439 +159400,951,perfect,1138590135 +159400,955,funny as hell,1138590060 +159400,1084,viva violence,1138247453 +159400,1089,tarantino is god,1138590212 +159400,1104,amazing performance,1138590296 +159400,1196,best of the originals,1138590242 +159400,1199,perfect,1138247485 +159400,1201,truly great western,1138590124 +159400,1206,mindfuck,1138590112 +159400,1214,scary as hell,1138677473 +159400,1217,beautiful,1139019953 +159400,1219,scary as hell,1138590145 +159400,1221,Classic,1140554617 +159400,1228,beautiful,1138590158 +159400,1230,brilliant,1139181356 +159400,1230,new york city,1139181356 +159400,1241,cult film,1139889575 +159400,1244,beautiful,1139181451 +159400,1244,new york city,1139181451 +159400,1244,perfect,1139181451 +159400,1252,perfect,1139181380 +159400,1256,as funny as humanly possible,1139181402 +159400,1269,hysterical,1139181363 +159400,1283,classic western,1139181416 +159400,1333,terrifying,1139181375 +159400,1387,will keep you away from the water,1139181438 +159400,1449,hysterical,1140554710 +159400,1711,great cast,1138597791 +159400,1729,tarantino is god,1139181425 +159400,1945,classic performance,1138427736 +159400,1952,good not great,1138511237 +159400,1982,scary as hell,1139181409 +159400,2271,drug fun,1138511246 +159400,2302,entertaining,1138677505 +159400,2858,interesting,1138677443 +159400,2918,fun,1138246902 +159400,2959,brilliant,1139279802 +159400,3462,close to perfect,1140562074 +159400,3671,obscenely funny,1138590338 +159400,3897,love letter to rock,1139279852 +159400,4041,idiotic,1138677457 +159400,4848,mindfuck,1138590390 +159400,4979,modern classic,1138590405 +159400,5299,evil,1138590636 +159400,5313,a failure,1138590657 +159400,5415,offensive,1138590604 +159400,5677,katie holmes should retire,1139181306 +159400,6222,awful adaptation,1138590581 +159400,6695,stupid horror,1139181182 +159400,6765,pretty but pointless,1139181252 +159400,6794,too many dogs,1139181113 +159400,6872,the director should be shot,1139181175 +159400,6874,tarantino is god,1138590367 +159400,6880,unnecessary remake,1139181244 +159400,6886,great cast awful movie,1139181124 +159400,6888,end the nightmare,1139181214 +159400,6951,violently stupid,1139181145 +159400,7142,stupid dance movie,1139181166 +159400,7153,oddly moving,1139279838 +159400,7154,idiotic,1138677452 +159400,7174,disturbing in a bad way,1139181231 +159400,7257,great cast awful movie,1139181136 +159400,7326,boring,1139181202 +159400,7361,brilliant,1138677431 +159400,7369,why god why,1139181223 +159400,7438,tarantino is god,1138590375 +159400,7439,dull,1139181189 +159400,7449,pointless,1139181157 +159400,7454,moronic,1139181077 +159400,7701,lame sequel,1139181006 +159400,7937,haunting,1139185483 +159400,8010,icky,1139181020 +159400,8363,disgusting,1139181051 +159400,8578,idiotic,1139181072 +159400,8644,violently stupid,1138590511 +159400,8701,may cause brain tumors,1139180953 +159400,8810,why god why,1138590483 +159400,8815,pointless,1139180964 +159400,8830,the original was bad enough,1139180940 +159400,8831,disappointing,1139181070 +159400,8833,dull,1139181083 +159400,8861,boring,1139181039 +159400,8868,awful,1139180997 +159400,8868,horrible,1139180997 +159400,8868,terrible,1139180997 +159400,8870,awful,1139180974 +159400,8947,not remotely scary,1139180875 +159400,8948,disappointing,1137213478 +159400,8959,weird and gross,1137213481 +159400,8969,evil sequel,1137213484 +159400,27434,stupid,1139180862 +159400,27722,beautiful,1138493051 +159400,27772,not remotely scary,1139180889 +159400,27839,offensive,1137213466 +159400,30894,crap horror,1137213467 +159400,31079,stupid,1139180912 +159400,31162,television,1139889610 +159400,31422,poor kids,1137213480 +159400,31427,idiotic,1138590453 +159400,31431,pointless,1137213483 +159400,31447,stupid,1139180902 +159400,31878,piss your pants funny,1138042665 +159400,32019,tragically bad,1137213390 +159400,32289,pointless,1137213385 +159400,33164,pointless,1137213387 +159400,33644,pointless,1137213389 +159400,33669,offensive,1137213384 +159400,34271,music,1138042651 +159400,34338,entertaining,1140656930 +159400,34523,suburbia,1138246940 +159400,35836,suprisingly romantic,1139019894 +159400,36517,intelligent thriller,1137213894 +159400,36529,political,1137298586 +159400,39183,genius,1138042713 +159400,39183,heartbreaking,1138042713 +159400,39183,modern classic,1137814272 +159400,39183,perfect,1138042713 +159400,41569,great remake,1138677399 +159400,41716,riot,1139721205 +159400,41997,flawed but worthwhile,1138405832 +159400,42723,twisted,1139129252 +159403,541,artificial intelligence,1277304782 +159403,541,atmospheric,1277304777 +159403,589,artificial intelligence,1277877238 +159403,589,time travel,1277877262 +159403,1199,Terry Gilliam,1276731120 +159403,1732,Coen Brothers,1276727983 +159403,1732,cult film,1276727989 +159403,1732,dark comedy,1276727966 +159403,1732,satirical,1276727973 +159403,1884,drugs,1295901272 +159403,1884,social commentary,1295901232 +159403,1884,Terry Gilliam,1295901251 +159403,1884,thought-provoking,1295901232 +159403,2571,artificial intelligence,1277877190 +159403,2571,philosophical,1277877179 +159403,2571,philosophy,1277877181 +159403,2712,dreamlike,1306781297 +159403,2712,psychological,1306781280 +159403,2712,sexuality,1306781289 +159403,2712,Stanley Kubrick,1306781267 +159403,3030,Akira Kurosawa,1276731218 +159403,4422,Breathtaking,1277920035 +159403,4422,great performances,1277920006 +159403,4422,Ingmar Bergman,1277919999 +159403,4422,Liv Ullmann,1277920004 +159403,4422,Oscar (Best Cinematography),1277920026 +159403,6954,Culture,1277919729 +159403,6954,family gatherings,1277919753 +159403,6954,generations,1277919837 +159403,6954,intellectual,1277919729 +159403,6954,literature,1277919837 +159403,6954,Oscar (Best Foreign Language Film),1277919738 +159403,6954,philosophy,1277919837 +159403,7327,Bibi Andersson,1277919933 +159403,7327,cerebral,1277919962 +159403,7327,Ingmar Bergman,1277919928 +159403,7327,Liv Ullmann,1277919931 +159403,7327,psychology,1277919938 +159403,7939,Ingmar Bergman,1277919910 +159403,8195,Michelangelo Antonioni,1277305384 +159403,26326,genius,1332889426 +159403,26326,Jodorowsky,1332889418 +159403,46578,feel-good,1290971377 +159403,55908,dialogue driven,1277304089 +159403,55908,intellectual,1277304064 +159403,55908,one set,1277304077 +159403,55908,philosophical,1277304051 +159403,55908,thought-provoking,1277304054 +159403,61323,Coen Brothers,1276728065 +159403,61323,Comedy,1276728069 +159403,61323,dark comedy,1276728062 +159403,61323,John Malkovich,1276728072 +159403,61323,satire,1276728079 +159403,64839,Darren Aronofsky,1276728152 +159403,68180,poetic,1427473435 +159403,68180,spiritual journey,1427473435 +159403,68180,sufism,1427473435 +159403,69481,addiction,1277876963 +159403,69481,explosions,1277876953 +159403,69481,intense,1277876944 +159403,69481,War,1277876983 +159403,71464,black humour,1276729452 +159403,71464,coen brothers,1276729420 +159403,71464,comedy,1276729457 +159403,71464,Jewish,1276729445 +159403,71464,Philosophical,1276729414 +159403,78836,camerawork,1290952846 +159403,78836,Gaspar Noé,1290952817 +159403,78836,Gaspar Noé,1290952834 +159403,79477,coming of age,1421184113 +159403,79477,counterculture,1421184113 +159403,79477,drugs,1421184113 +159403,79477,generation gap,1421184113 +159403,80219,Robert De Niro,1286276987 +159403,80219,Robert Rodriguez,1286276981 +159403,82463,bittersweet,1326418771 +159403,82463,Mike Leigh,1326418737 +159403,113240,family,1422558629 +159403,113240,psychology,1422558643 +159403,113240,social commentary,1422558653 +159437,6,long,1291748804 +159437,18,witch,1349163875 +159437,527,long,1272817251 +159437,594,witch,1349163934 +159437,674,pop art,1272813780 +159437,724,witch,1349164049 +159437,920,long,1272835238 +159437,1025,witch,1349164367 +159437,1035,long,1352491778 +159437,1201,long,1272812923 +159437,1204,long,1272835079 +159437,1209,long,1272812312 +159437,1217,long,1392830424 +159437,1225,long,1272812900 +159437,1232,long,1273301833 +159437,1251,WRITER'S LIFE,1216381813 +159437,1262,long,1272835192 +159437,1306,long,1393674675 +159437,1947,long,1352491759 +159437,1948,british new wave,1354786844 +159437,2019,long,1272834715 +159437,2028,long,1272835400 +159437,2033,witch,1349164354 +159437,2068,long,1272811881 +159437,2081,witch,1349188674 +159437,2096,witch,1349188607 +159437,2710,witch,1349163193 +159437,2730,long,1272835253 +159437,2863,british new wave,1354786648 +159437,2920,long,1272812272 +159437,2970,long,1272816989 +159437,3081,witch,1349164141 +159437,3091,long,1392830336 +159437,3171,british new wave,1354786773 +159437,3205,witch,1349164151 +159437,3241,soccer,1214556905 +159437,3503,long,1273301822 +159437,3516,witch,1349163754 +159437,3530,long,1272811516 +159437,3587,witch,1349163675 +159437,3788,pop art,1272813386 +159437,3788,protagonist is photographer,1333009412 +159437,4016,witch,1349188943 +159437,4262,long,1354306126 +159437,4271,long,1272811404 +159437,4334,long,1434002251 +159437,4423,british new wave,1354786891 +159437,4437,witch,1349163594 +159437,4687,british new wave,1354786553 +159437,4768,long,1393674596 +159437,4857,long,1352491742 +159437,5004,pop art,1272813797 +159437,5022,british new wave,1354786377 +159437,5119,british new wave,1354786425 +159437,5142,Czechoslovak New Wave,1272640576 +159437,5145,Czechoslovak New Wave,1272640569 +159437,5495,british new wave,1354786955 +159437,5495,pop art,1272814049 +159437,5497,pop art,1272814036 +159437,5498,long,1392830301 +159437,5618,witch,1349164085 +159437,5825,long,1393004433 +159437,5956,long,1291748736 +159437,5975,long,1393171195 +159437,5995,long,1272835507 +159437,6270,Late-career surprise,1223722540 +159437,6415,Late-career surprise,1223722522 +159437,6440,WRITER'S LIFE,1216381782 +159437,6497,long,1273530820 +159437,6609,long,1292186410 +159437,6777,long,1272812428 +159437,7065,long,1393170834 +159437,7071,long,1272812335 +159437,7112,british new wave,1354786381 +159437,7130,british new wave,1354786560 +159437,7243,long,1393170797 +159437,7371,long,1272811987 +159437,7386,long,1393171389 +159437,7396,long,1272812168 +159437,7484,Cinéma vérité,1248196832 +159437,7748,pop art,1272813159 +159437,8154,long,1272811838 +159437,8292,long,1392830368 +159437,8477,cinéma vérité,1248197475 +159437,8724,long,1272817097 +159437,8749,long,1393674544 +159437,25753,long,1393171341 +159437,25898,witch,1349163215 +159437,26083,british new wave,1354786875 +159437,26150,long,1272812494 +159437,26158,Czechoslovak New Wave,1272640310 +159437,26163,Cinéma vérité,1248172788 +159437,26187,pop art,1272813186 +159437,26359,long,1393170870 +159437,26414,wedding,1354467256 +159437,26587,long,1272871088 +159437,26973,witch,1349163712 +159437,31309,long,1272812475 +159437,31410,long,1272871127 +159437,32509,british new wave,1354786823 +159437,32853,long,1272812258 +159437,33072,Late-career surprise,1223722488 +159437,33264,long,1272811384 +159437,33288,british new wave,1354786624 +159437,33861,pop art,1272813732 +159437,34155,Late-career surprise,1349189261 +159437,38320,Czechoslovak New Wave,1272640444 +159437,45578,finnish new wave,1282382890 +159437,45691,long,1393674746 +159437,45942,long,1393674734 +159437,48516,long,1272835521 +159437,48638,long,1272811643 +159437,49359,long,1393674570 +159437,49513,long,1272817011 +159437,50229,pop art,1272813217 +159437,50594,Czechoslovak New Wave,1272640462 +159437,51559,finnish new wave,1282381342 +159437,51559,long,1282381352 +159437,51857,british new wave,1354786790 +159437,53887,long,1393674762 +159437,55369,Cinéma vérité,1248172704 +159437,56253,Cinéma vérité,1248172689 +159437,58559,long,1273530837 +159437,58576,pop art,1398845661 +159437,58895,Czechoslovak New Wave,1282720609 +159437,62153,british new wave,1354786459 +159437,62594,long,1273301776 +159437,68874,long,1393674645 +159437,69241,long,1272811908 +159437,69460,Cinéma vérité,1248196896 +159437,70649,long,1272845001 +159437,71736,long,1393674775 +159437,71750,pop art,1272813232 +159437,73139,long,1392830729 +159437,74780,finnish new wave,1280003051 +159437,75421,finnish new wave,1280003055 +159437,75436,finnish new wave,1280003040 +159437,77344,long,1272811419 +159437,78295,british new wave,1354786655 +159437,78666,late-career surprise,1282720746 +159437,79132,long,1282383096 +159437,79281,finnish new wave,1280002978 +159437,79283,cinéma vérité,1280003116 +159437,79283,finnish new wave,1280002812 +159437,79578,finnish new wave,1281119590 +159437,79651,british new wave,1354786680 +159437,79882,finnish new wave,1282382880 +159437,80451,witch,1349164227 +159437,80478,cinéma vérité,1284671323 +159437,82382,Late-career surprise,1349189145 +159437,85133,witch,1349163486 +159437,88135,british new wave,1354786549 +159437,88267,Disney,1319817236 +159437,88979,Nobuhiko Obayashi,1313558764 +159437,88979,time travel,1331412271 +159437,92687,finnish new wave,1372707980 +159437,94407,Long,1336409837 +159437,94478,witch,1349189013 +159437,94784,finnish new wave,1338203377 +159437,97065,witch,1349163420 +159437,97913,disney,1351867930 +159437,103838,witch,1375082856 +159438,142448,mountaineering,1443783867 +159438,143383,mountaineering,1443783896 +159445,74545,adultery,1300544503 +159445,74545,espionage,1300544496 +159445,74545,mystery,1300544478 +159445,74545,nudity,1300544507 +159445,74545,politics,1300544474 +159445,74545,sex,1300544487 +159450,260,Star Wars,1435222317 +159450,135837,war,1435222454 +159455,64614,gangsters,1238535127 +159455,64614,patriotic,1238535127 +159461,260,Based on Hidden Fortress,1442107325 +159461,260,Classic sci-fi movie,1442107304 +159465,6306,Wilco,1186029297 +159487,3175,star trek,1243460877 +159487,68952,cgi,1243894407 +159487,68952,funny,1243894410 +159494,51662,Ancient Greece,1238896313 +159521,2762,twist ending,1219496256 +159531,260,jedi,1433095184 +159531,260,space,1433095168 +159553,29,deer,1300829646 +159553,29,deer shit,1300829646 +159553,29,Santa Claus,1300829632 +159553,321,anti-homophobia,1289131815 +159553,321,communism,1289131815 +159553,321,facing problems,1289131846 +159553,321,severe criticisation,1289131865 +159553,567,funny,1289241142 +159553,567,warm,1289241151 +159553,2673,your ratings,1289241408 +159553,3174,Jim Carrey,1289611581 +159553,3245,anticommunists,1297607702 +159553,3245,capitalism,1297607665 +159553,3245,Castro,1297607625 +159553,3245,communism,1297607642 +159553,3245,communists,1297607657 +159553,3245,Fidel,1297607697 +159553,3245,imperialism,1297607653 +159553,3245,infrared,1297607677 +159553,3245,Revolution,1297607609 +159553,3245,Socialist Cuba,1297607614 +159553,3245,Soviet Union,1297607633 +159553,3245,US,1297607648 +159553,4869,commitment,1290376717 +159553,4869,love,1290376721 +159553,4869,money,1290376737 +159553,4869,resistance,1290376730 +159553,7820,Christianity,1289310189 +159553,7820,extensive mystism,1289310207 +159553,7820,religion,1289310175 +159553,8638,minimalist,1300918800 +159553,8638,screenplay,1300918823 +159553,8638,shit,1300918789 +159553,8638,writers,1300918819 +159553,48394,anti-fascism,1289317071 +159553,48394,fascism,1326640378 +159553,52413,Lenin,1289241463 +159553,55442,religion,1289245866 +159553,63082,coincidences,1289237240 +159553,69640,ridiculous,1299888262 +159553,69640,true story,1299888398 +159553,69640,unrealistic,1299888375 +159553,79132,classical,1289317005 +159553,90376,family,1330521049 +159569,32,brad pitt,1171203351 +159569,47,brad pitt,1171203392 +159569,47,seen more than once,1171203386 +159569,1924,so bad it's funny,1245616557 +159569,2959,greatest movie of all time,1171202339 +159569,86637,historical,1420919019 +159569,86637,poland,1420919019 +159569,86637,russia,1420919019 +159625,2161,(s)vcd,1146441829 +159625,8981,Jude Law,1146078954 +159625,34532,better than expected,1142800355 +159630,260,good science fiction,1440189232 +159630,260,great story,1440189246 +159646,4776,Bloods,1263944165 +159646,4776,Dr. Dre,1263944165 +159646,4776,Ethan Hawke,1263944165 +159646,49917,Spike Lee,1263943811 +159658,7827,corporate espionage,1234974018 +159658,7827,twist ending,1234974007 +159666,32,complicated,1262275893 +159666,32,dystopia,1262275885 +159666,32,post-apocalyptic,1262275871 +159666,32,psychology,1262275875 +159666,32,sci-fi,1262275868 +159666,32,time travel,1262275869 +159666,47,biblical,1245317000 +159666,47,Brad Pitt,1245316942 +159666,47,detective,1245316948 +159666,47,Morgan Freeman,1245316959 +159666,47,mystery,1245316964 +159666,47,powerful ending,1245316967 +159666,47,serial killer,1245316986 +159666,150,astronauts,1245318037 +159666,150,based on a true story,1245318013 +159666,150,space program,1245318050 +159666,150,Tom Hanks,1245318042 +159666,318,classic,1245316630 +159666,318,friendship,1245316636 +159666,318,inspirational,1245316691 +159666,318,Morgan Freeman,1245316659 +159666,318,prison escape,1245316643 +159666,318,reflective,1245316654 +159666,608,brilliant ending,1245317690 +159666,608,crime gone awry,1245317673 +159666,608,kidnapping,1245317706 +159666,778,black comedy,1245059376 +159666,778,imdb top 250,1245059384 +159666,780,alien invasion,1262275104 +159666,780,aliens,1262275108 +159666,780,apocalypse,1262275114 +159666,780,sci-fi,1262275127 +159666,780,Will Smith,1262275130 +159666,1185,based on a biography,1245317244 +159666,1185,Daniel Day-Lewis,1245317069 +159666,1185,overcoming prejudice,1245317422 +159666,1193,based on a book,1245316348 +159666,1193,classic,1245316328 +159666,1193,emotional,1245316298 +159666,1193,Jack Nicholson,1245316361 +159666,1200,aliens,1262275317 +159666,1200,androids,1262275321 +159666,1200,military,1262275325 +159666,1206,controversial,1262275832 +159666,1206,cult film,1262275835 +159666,1206,disturbing,1262275828 +159666,1206,dystopia,1262275830 +159666,1206,psychology,1262275845 +159666,1206,Stanley Kubrick,1262275838 +159666,1214,aliens,1262275171 +159666,1214,androids,1262275175 +159666,1214,classic,1262275179 +159666,1214,space,1262275204 +159666,1258,cult film,1245316208 +159666,1258,Horror,1245316251 +159666,1258,paranormal,1245316262 +159666,1584,first contact,1262275621 +159666,1584,future,1262275631 +159666,1584,sci-fi,1262275646 +159666,1584,space travel,1262275639 +159666,1682,dark comedy,1262275944 +159666,1682,dreamlike,1262275937 +159666,1682,dystopia,1245316438 +159666,1682,Jim Carrey,1245316477 +159666,1682,paranoia,1245316425 +159666,1682,social commentary,1245316464 +159666,1682,voyeurism,1245316420 +159666,2329,disturbing,1245316745 +159666,2329,Neo-Nazis,1245316715 +159666,2329,powerful ending,1245316725 +159666,2329,thought-provoking,1245316718 +159666,2571,Action,1262275740 +159666,2571,artificial intelligence,1262275737 +159666,2571,dystopia,1262275798 +159666,2571,philosophical,1262275789 +159666,2571,scifi cult,1262275777 +159666,2657,adapted from:play,1244597767 +159666,2657,cult classic,1244597759 +159666,2657,great soundtrack,1244597776 +159666,3081,atmospheric,1248136128 +159666,3081,Dark,1248136137 +159666,3081,Fantasy,1248136135 +159666,3081,gothic,1248136142 +159666,3081,horror,1248136147 +159666,3081,visually appealing,1248136156 +159666,3527,aliens,1262275675 +159666,3527,scifi cult,1262275683 +159666,3527,survival,1262275695 +159666,3969,alcoholism,1246974054 +159666,3969,change the world,1246974132 +159666,3969,domestic violence,1246974060 +159666,4370,androids,1262276265 +159666,4370,artificial intelligence,1262276267 +159666,4370,Bittersweet,1262276271 +159666,4370,dystopia,1262276274 +159666,4370,fairy tale,1262276294 +159666,4370,sci-fi,1262276305 +159666,4754,cult film,1245012938 +159666,4754,eerie,1245012950 +159666,4754,sexual,1312299802 +159666,4878,alternate timeline,1245317924 +159666,4878,sci-fi,1245317847 +159666,4878,surreal,1245317910 +159666,4878,time travel,1245317887 +159666,5445,dystopia,1262275991 +159666,5445,future,1262275993 +159666,5445,Precognition,1262276237 +159666,5445,sci-fi,1262276003 +159666,5502,aliens,1262275257 +159666,5502,eerie,1262275265 +159666,5502,invasion,1262275280 +159666,6377,cgi,1245317633 +159666,6377,children,1245317644 +159666,6377,Disney,1245317579 +159666,6377,father-son relationship,1245317583 +159666,6377,feel good movie,1245317588 +159666,7361,bittersweet,1245317775 +159666,7361,cult film,1245317742 +159666,7361,sci-fi,1245317757 +159666,7361,thought-provoking,1245317755 +159666,8784,directorial debut,1248136053 +159666,8784,mental illness,1248136036 +159666,8784,motorcycle,1248136032 +159666,8784,quirky,1248136023 +159666,8784,Zach Braff,1248136014 +159666,8874,black comedy,1245316831 +159666,8874,British,1245316829 +159666,8874,parody,1245316853 +159666,8874,Simon Pegg,1245316856 +159666,8874,zombies,1245316860 +159666,33004,absurd,1246972455 +159666,33004,bureaucracy,1246972520 +159666,33004,end of the world,1246972522 +159666,33004,space,1246972476 +159666,34048,H.G. Wells,1262275574 +159666,34048,invasion,1262275585 +159666,52952,coming of age,1245316526 +159666,52952,friendship,1245316543 +159666,53129,serial killer,1246973842 +159666,54780,rich and poor,1246973914 +159666,56587,death,1246972574 +159666,56587,Jack Nicholson,1246972586 +159666,56587,life philosophy,1246972569 +159666,56587,meaning of life,1246972557 +159666,56587,Morgan Freeman,1246972555 +159666,60538,Ireland doesnt have hillbillys!!,1246973691 +159666,64034,childish naivity,1245317962 +159666,64034,Friendship,1245317958 +159666,64034,Holocaust,1244597997 +159666,64034,irony,1245317976 +159666,64614,classic car,1245317467 +159666,64614,Clint Eastwood,1245317471 +159666,64614,culture clash,1245317473 +159666,64614,mentor,1245317500 +159666,67197,aliens,1262275463 +159666,67197,bad science,1262275478 +159666,67197,end of the world,1262275467 +159666,67197,religious overtones,1262275510 +159666,67197,thought-provoking,1262275495 +159666,68237,clones,1248135780 +159666,68237,moon,1248135766 +159666,68237,psychology,1272831970 +159666,68237,solitude,1248135771 +159666,68358,future,1245012870 +159666,68358,jj abrams,1245012887 +159666,68358,Star Trek,1245012858 +159666,68358,time travel,1245012862 +159666,68954,dreams,1262278502 +159666,68954,feel good movie,1262278531 +159666,68954,heartbreaking,1262278505 +159666,68954,talking animals,1262278523 +159666,69844,Comedy,1248135926 +159666,69844,Direction,1248135945 +159666,69844,Ending,1248135877 +159666,69844,magic,1248135887 +159666,70286,aliens,1262275034 +159666,70286,humor,1262275043 +159666,70286,intelligent sci-fi,1262275049 +159666,71745,based on a book,1262274973 +159666,72395,over coming adversity,1272831721 +159666,72395,rape,1272831685 +159666,72998,aliens,1262274765 +159666,72998,bad science,1262274778 +159666,72998,sci-fi,1262274729 +159666,72998,stunning,1262274734 +159666,74458,Predictable,1272831626 +159666,76251,funny,1272841887 +159671,54686,female warriors,1395684833 +159671,107725,apple,1388721240 +159671,107725,marijuana,1388721220 +159671,107725,potato,1388721244 +159671,107725,science,1388721166 +159671,107725,tulip,1388721235 +159678,43871,good good goodd,1144615339 +159680,103639,facts of life,1378449830 +159694,103235,twist ending,1451091416 +159722,760,Soviet Union,1447089750 +159722,760,Stalingrad,1447089736 +159732,21,travolta,1138042311 +159732,50,dvd,1138040955 +159732,593,TV,1138040934 +159732,1196,TV,1138040913 +159732,1220,classic,1138042538 +159732,1220,dan akroyd,1138042538 +159732,1262,World War II,1138040962 +159732,1500,John Cusack,1138041344 +159732,2011,time travel,1138041581 +159732,2571,TV,1138040878 +159732,2762,Theater,1138040871 +159732,6874,Tarantino,1138041288 +159733,260,science fiction,1434994918 +159733,260,space opera,1434994932 +159734,1219,Alfred Hitchcock,1437868216 +159764,39,Jane Austen,1277465039 +159764,39,Paul Rudd,1277465045 +159764,94,Matt Dillon,1276158418 +159764,94,Natalie Portman,1276158415 +159764,175,Chloë Sevigny,1287818645 +159764,175,Rosario Dawson,1287818648 +159764,215,ethan hawke,1277881033 +159764,215,Julie Delpy,1277881052 +159764,247,Kate Winslet,1297683387 +159764,247,Peter Jackson,1297683385 +159764,252,Meg Ryan,1279104483 +159764,252,Tim Robbins,1279104478 +159764,253,Brad Pitt,1321495705 +159764,253,Kirsten Dunst,1321495704 +159764,296,Bruce Willis,1284926303 +159764,296,Quentin Tarantino,1284926298 +159764,296,Samuel L. Jackson,1284926300 +159764,296,Steve Buscemi,1284926322 +159764,296,Uma Thurman,1284926308 +159764,318,Morgan Freeman,1278930143 +159764,318,Stephen King,1278930141 +159764,318,Tim Robbins,1278930150 +159764,337,John C. Reilly,1278378124 +159764,337,Johnny Depp,1278378122 +159764,337,Leonardo DiCaprio,1278378121 +159764,357,Hugh Grant,1279104295 +159764,480,Steven Spielberg,1277980745 +159764,508,Denzel Washington,1321495848 +159764,508,Tom Hanks,1321495847 +159764,509,Anna Paquin,1278378285 +159764,509,Holly Hunter,1278378277 +159764,531,Maggie Smith,1287818673 +159764,551,johnny depp,1278377959 +159764,551,Tim Burton,1278377957 +159764,662,Mark Wahlberg,1303204397 +159764,662,Reese Witherspoon,1303204399 +159764,778,addiction,1272270251 +159764,778,black comedy,1272270253 +159764,778,Ewan McGregor,1272270243 +159764,778,great soundtrack,1272270245 +159764,781,Jeremy Irons,1277712292 +159764,781,Liv Tyler,1322629593 +159764,781,Rachel Weisz,1277712296 +159764,1089,Quentin Tarantino,1284926341 +159764,1090,Charlie Sheen,1278378323 +159764,1090,Forest Whitaker,1278378321 +159764,1090,Willem Dafoe,1278378325 +159764,1103,James Dean,1281817277 +159764,1201,Clint Eastwood,1283850486 +159764,1213,Martin Scorsese,1321495953 +159764,1213,Robert De Niro,1321495956 +159764,1213,Samuel L. Jackson,1321495958 +159764,1222,Stanley Kubrick,1321495826 +159764,1247,Dustin Hoffman,1296783310 +159764,1307,meg ryan,1278105462 +159764,1483,Elias Koteas,1297763346 +159764,1483,James Spader,1297763336 +159764,1485,jim carrey,1278378045 +159764,1552,John Cusack,1278378068 +159764,1552,Steve Buscemi,1278378071 +159764,1653,Ethan Hawke,1278239272 +159764,1653,Jude Law,1278239273 +159764,1653,Uma Thurman,1278239275 +159764,1721,Kate Winslet,1297683421 +159764,1721,Leonardo DiCaprio,1297683412 +159764,1732,Coen Brothers,1285656861 +159764,1732,Jeff Bridges,1285656876 +159764,1732,Philip Seymour Hoffman,1285656866 +159764,1732,Steve Buscemi,1285656882 +159764,1801,Gabriel Byrne,1280561942 +159764,1801,Jeremy Irons,1280561931 +159764,1801,John Malkovich,1280561925 +159764,1801,Leonardo DiCaprio,1280561938 +159764,2114,Matt Dillon,1290493731 +159764,2114,Patrick Swayze,1290493734 +159764,2144,John Cusack,1296783489 +159764,2144,John Hughes,1296783487 +159764,2145,James Spader,1296783508 +159764,2146,Emilio Estevez,1296783664 +159764,2146,Rob Lowe,1296783669 +159764,2160,Mia Farrow,1296783622 +159764,2160,Roman Polanski,1296783614 +159764,2172,Kirsten Dunst,1289642877 +159764,2248,John Cusack,1278191600 +159764,2321,Jeff Daniels,1278554276 +159764,2321,Reese Witherspoon,1278554268 +159764,2321,Tobey Maguire,1278554272 +159764,2329,Edward Norton,1291770999 +159764,2336,Cate Blanchett,1294564900 +159764,2336,Geoffrey Rush,1294564907 +159764,2336,Vincent Cassel,1294564918 +159764,2424,Greg Kinnear,1288078464 +159764,2424,Meg Ryan,1288078459 +159764,2424,Tom Hanks,1288078462 +159764,2485,Kieran Culkin,1291275843 +159764,2485,Rachael Leigh Cook,1291275840 +159764,2571,Hugo Weaving,1277980562 +159764,2571,Laurence Fishburne,1277980545 +159764,2724,Joan Cusack,1279104540 +159764,2724,Julia Roberts,1279104537 +159764,2724,Richard Gere,1279104543 +159764,2762,Bruce Willis,1278930128 +159764,2762,M. Night Shyamalan,1278930125 +159764,2858,Kevin Spacey,1272359599 +159764,2908,hilary swank,1283850374 +159764,2908,Peter Sarsgaard,1283850382 +159764,3000,Hayao Miyazaki,1277980319 +159764,3210,Sean Penn,1284024475 +159764,3467,Brandon De Wilde,1283850250 +159764,3467,Melvyn Douglas,1283850257 +159764,3467,Paul Newman,1283850253 +159764,3481,John Cusack,1278191584 +159764,3489,Dustin Hoffman,1293605315 +159764,3489,Steven Spielberg,1293605317 +159764,3556,Kirsten Dunst,1278554198 +159764,3897,Billy Crudup,1290846832 +159764,3897,Frances McDormand,1290846860 +159764,3897,Patrick Fugit,1290846847 +159764,3897,Philip Seymour Hoffman,1290846812 +159764,3897,Zooey Deschanel,1290846816 +159764,3949,Jared Leto,1291751407 +159764,3969,haley joel osment,1295772538 +159764,3969,kevin spacey,1295772540 +159764,3994,M. Night Shyamalan,1275815555 +159764,4027,Coen Brothers,1271924739 +159764,4056,Aaron Eckhart,1293169483 +159764,4056,Harry Dean Stanton,1293169485 +159764,4056,Helen Mirren,1293169469 +159764,4056,Jack Nicholson,1293169471 +159764,4056,Patricia Clarkson,1293169474 +159764,4056,Robin Wright Penn,1293169477 +159764,4056,Sam Shepard,1293169480 +159764,4056,Vanessa Redgrave,1293169476 +159764,4061,Jason London,1301126102 +159764,4061,Reese Witherspoon,1301126099 +159764,4228,Jennifer Love Hewitt,1286152261 +159764,4228,Ray Liotta,1286152259 +159764,4228,Sigourney Weaver,1286152256 +159764,4231,Hugh Jackman,1275292786 +159764,4299,Heath Ledger,1279708325 +159764,4299,Paul Bettany,1279708327 +159764,4372,Kirsten Dunst,1321495731 +159764,4641,Scarlett Johansson,1288078593 +159764,4641,Steve Buscemi,1288078596 +159764,4765,Paul Dano,1279744586 +159764,4803,Clint Eastwood,1280796874 +159764,4823,john cusack,1275292816 +159764,4880,Jena Malone,1300005414 +159764,4880,Kevin Kline,1300005427 +159764,4880,Kristin Scott Thomas,1300005430 +159764,4886,Steve Buscemi,1278377370 +159764,5013,Clive Owen,1278378392 +159764,5013,Helen Mirren,1278378396 +159764,5013,Ryan Phillippe,1278378400 +159764,5064,Guy Pearce,1280561954 +159764,5064,James Caviezel,1280561985 +159764,5064,James Frain,1280562013 +159764,5064,Richard Harris,1280562001 +159764,5066,Adam Shankman,1291276211 +159764,5066,Mandy Moore,1291276208 +159764,5225,Diego Luna,1272616921 +159764,5225,Gael García Bernal,1272616933 +159764,5266,Forest Whitaker,1279609498 +159764,5266,Jodie Foster,1279609492 +159764,5266,Kristen Stewart,1279609502 +159764,5312,Michael Pitt,1292120205 +159764,5312,Ryan Gosling,1292120207 +159764,5377,Hugh Grant,1278929156 +159764,5377,Nicholas Hoult,1278929172 +159764,5377,Rachel Weisz,1278929207 +159764,5379,Ryan Gosling,1289281392 +159764,5380,Colin Firth,1293605257 +159764,5380,Rupert Everett,1293605261 +159764,5388,Al Pacino,1294379526 +159764,5388,Christopher Nolan,1294379528 +159764,5388,Hilary Swank,1294379529 +159764,5461,Michelle Williams,1294379484 +159764,5617,James Spader,1279276447 +159764,5618,Hayao Miyazaki,1277980328 +159764,5620,Josh Lucas,1279104526 +159764,5620,Reese Witherspoon,1279104523 +159764,5679,Naomi Watts,1278377837 +159764,6235,Julie Delpy,1287911392 +159764,6323,Clea DuVall,1303204642 +159764,6323,John Cusack,1303204639 +159764,6323,Ray Liotta,1303204638 +159764,6329,Don Cheadle,1293094673 +159764,6329,Joseph Gordon-Levitt,1293094672 +159764,6329,Zooey Deschanel,1293094675 +159764,6373,Jim Carrey,1278378035 +159764,6373,Steve Carell,1278378037 +159764,6502,Cillian Murphy,1278377316 +159764,6539,Johnny Depp,1279276582 +159764,6539,Keira Knightley,1279276583 +159764,6874,Quentin Tarantino,1279872781 +159764,6874,Uma Thurman,1279872783 +159764,6890,Gus Van Sant,1303204448 +159764,6942,Alan Rickman,1278067097 +159764,6942,Emma Thompson,1278067087 +159764,6942,Hugh Grant,1278067060 +159764,6942,Keira Knightley,1278067057 +159764,6942,Laura Linney,1278067117 +159764,6942,Liam Neeson,1278067074 +159764,7151,cillian murphy,1277465228 +159764,7151,Colin Firth,1277465224 +159764,7151,scarlett johansson,1277465226 +159764,7151,visually appealing,1277803377 +159764,7169,Matthew Goode,1277464851 +159764,7265,michael pitt,1269325805 +159764,7265,Paris,1269325833 +159764,7326,Paul Bettany,1289636069 +159764,7326,Willem Dafoe,1289636077 +159764,7361,Jim Carrey,1278191717 +159764,7438,Quentin Tarantino,1285656779 +159764,7438,Uma Thurman,1285656793 +159764,7442,Emily Mortimer,1283850216 +159764,7442,Ewan McGregor,1283850219 +159764,7442,Tilda Swinton,1283850223 +159764,7451,Amanda Seyfried,1277465063 +159764,7451,Rachel McAdams,1277465066 +159764,7451,Tina Fey,1277465069 +159764,8056,Paul Newman,1283850298 +159764,8366,Jena Malone,1277979219 +159764,8638,Ethan Hawke,1277881020 +159764,8638,Julie Delpy,1277881023 +159764,8674,Cillian Murphy,1279966921 +159764,8674,Elaine Cassidy,1279966924 +159764,8783,Adrien Brody,1270609908 +159764,8783,Joaquin Phoenix,1270609900 +159764,8783,M. Night Shyamalan,1270609902 +159764,8866,Kirsten Dunst,1279707640 +159764,8866,Paul Bettany,1279707633 +159764,8869,Katie Holmes,1277464822 +159764,8908,Joaquin Phoenix,1295772524 +159764,8961,Samuel L. Jackson,1278377354 +159764,8966,Liam Neeson,1271924559 +159764,8966,Peter Sarsgaard,1271924561 +159764,8981,Clive Owen,1279276439 +159764,8981,Jude Law,1279276435 +159764,8981,Natalie Portman,1279276436 +159764,9010,Guillaume Canet,1277881477 +159764,9010,Marion Cotillard,1277881475 +159764,27646,Lee Pace,1303204559 +159764,27706,jim carrey,1278239308 +159764,27706,Jude Law,1278239301 +159764,27706,meryl streep,1278239305 +159764,27721,Audrey Tautou,1280611037 +159764,27721,Gaspard Ulliel,1280611052 +159764,27721,jodie foster,1280611042 +159764,27721,Marion Cotillard,1280611044 +159764,27838,Rory Culkin,1295772489 +159764,30820,Kevin Bacon,1290064043 +159764,30820,Kyra Sedgwick,1290064046 +159764,30820,Mos Def,1290064050 +159764,33166,Sandra Bullock,1278377913 +159764,33171,Joseph Gordon-Levitt,1279744568 +159764,34319,Ewan McGregor,1277465196 +159764,34319,Scarlett Johansson,1277465198 +159764,35957,Cillian Murphy,1278759010 +159764,35957,Rachel McAdams,1278759012 +159764,36401,Heath Ledger,1279708438 +159764,36401,Matt Damon,1279708440 +159764,37731,Charlie Hunnam,1269586177 +159764,37733,David Cronenberg,1290638684 +159764,37733,Viggo Mortensen,1290638686 +159764,38538,Kristen Stewart,1279609548 +159764,39183,Heath Ledger,1293778831 +159764,39183,Jake Gyllenhaal,1293778838 +159764,39231,Kirsten Dunst,1278554239 +159764,39231,Orlando Bloom,1278554234 +159764,39231,Susan Sarandon,1278554237 +159764,39449,Meryl Streep,1294140528 +159764,39449,Uma Thurman,1294140526 +159764,40629,Carey Mulligan,1294379625 +159764,40629,Donald Sutherland,1294379601 +159764,40629,Jena Malone,1294379617 +159764,40629,Keira Knightley,1294379557 +159764,40629,Matthew MacFadyen,1294379593 +159764,40629,Rosamund Pike,1294379609 +159764,40955,Brendan Gleeson,1291751421 +159764,40955,Cillian Murphy,1291751418 +159764,40955,Liam Neeson,1291751415 +159764,41285,Emily Mortimer,1279868932 +159764,41285,Jonathan Rhys Meyers,1279868935 +159764,41285,Matthew Goode,1279868950 +159764,41285,Scarlett Johansson,1279868933 +159764,42728,James Franco,1278502813 +159764,43560,Colin Firth,1293605273 +159764,43560,Emma Thompson,1293605268 +159764,43560,Kelly Macdonald,1293605270 +159764,43744,Matthew Goode,1271234526 +159764,44761,Joseph Gordon-Levitt,1271665749 +159764,45730,Bryce Dallas Howard,1280445485 +159764,45730,M. Night Shyamalan,1280445482 +159764,45730,Paul Giamatti,1280445480 +159764,45880,Jason Schwartzman,1278554150 +159764,45880,Kirsten Dunst,1278554153 +159764,47894,Cillian Murphy,1281087976 +159764,47970,Casey Affleck,1271234649 +159764,48738,Forest Whitaker,1278378135 +159764,48738,James McAvoy,1278378133 +159764,48774,Clive Owen,1272616980 +159764,48774,Michael Caine,1272616982 +159764,48997,alan rickman,1280819817 +159764,48997,Ben Whishaw,1280819822 +159764,48997,dustin hoffman,1280819814 +159764,49286,Jude Law,1278239207 +159764,49286,Kate Winslet,1278239206 +159764,49649,Jeremy Irons,1279708315 +159764,49649,John Malkovich,1279708317 +159764,49957,Dominic Cooper,1279589492 +159764,49957,Stephen Campbell Moore,1279589482 +159764,52241,Jeff Daniels,1280653480 +159764,52241,Joseph Gordon-Levitt,1280653478 +159764,52241,Matthew Goode,1280653496 +159764,52328,Chris Evans,1280734453 +159764,52328,Cillian Murphy,1280734446 +159764,52328,Danny Boyle,1280734457 +159764,52328,Rose Byrne,1280734442 +159764,52668,Adam Brody,1279609459 +159764,52668,Kristen Stewart,1279609462 +159764,52668,Meg Ryan,1279609465 +159764,52973,Jason Segel,1278315662 +159764,52973,Judd Apatow,1278315660 +159764,52973,Paul Rudd,1278315655 +159764,52973,Seth Rogen,1278315656 +159764,52973,Steve Carell,1278315658 +159764,53000,Harold Perrineau,1278554101 +159764,53000,Imogen Poots,1278554112 +159764,53000,Jeremy Renner,1278554107 +159764,53000,Mackintosh Muggleton,1278554110 +159764,53000,Rose Byrne,1278554095 +159764,53318,Sean Biggerstaff,1278240593 +159764,54190,Evan Rachel Wood,1271541598 +159764,54190,Jim Sturgess,1271541600 +159764,54276,Aaron Eckhart,1278492736 +159764,54276,Catherine Zeta-Jones,1278492741 +159764,54276,Patricia Clarkson,1278492746 +159764,54281,Anton Yelchin,1278315505 +159764,54281,Kat Dennings,1278315508 +159764,54281,Robert Downey Jr.,1278315507 +159764,54745,debate,1272096304 +159764,54771,Daniel Craig,1293697055 +159764,54771,Nicole Kidman,1293697054 +159764,54780,Alicia Keys,1277465270 +159764,54780,Laura Linney,1277465266 +159764,54780,Paul Giamatti,1277465263 +159764,54780,Scarlett Johansson,1277465261 +159764,54796,Adam Goldberg,1279276125 +159764,54796,Daniel Brühl,1279276123 +159764,54796,Julie Delpy,1279276119 +159764,55118,David Cronenberg,1290638669 +159764,55118,Naomi Watts,1290638658 +159764,55118,Viggo Mortensen,1290638660 +159764,55247,Thure Lindhardt,1295772434 +159764,55274,Cate Blanchett,1296783787 +159764,55274,Clive Owen,1296783784 +159764,55274,Geoffrey Rush,1296783785 +159764,55290,Ben Affleck,1288677674 +159764,55290,Casey Affleck,1288677658 +159764,55290,Ed Harris,1288677662 +159764,55290,Morgan Freeman,1288677664 +159764,55419,A.J. Cook,1278322134 +159764,55419,Jay Baruchel,1278322138 +159764,55451,Emily Blunt,1281183559 +159764,55451,Hugh Dancy,1281183555 +159764,55451,Maggie Grace,1281183562 +159764,55999,Dustin Hoffman,1293605307 +159764,55999,Jason Bateman,1293605303 +159764,55999,Natalie Portman,1293605305 +159764,56171,Daniel Craig,1293697017 +159764,56171,Eva Green,1293697035 +159764,56171,Freddie Highmore,1293697027 +159764,56171,Nicole Kidman,1293697010 +159764,56949,Katherine Heigl,1279104508 +159764,58025,Jamie Bell,1278403389 +159764,58025,Samuel L. Jackson,1278403387 +159764,58418,Colin Firth,1296783411 +159764,58418,Helen Hunt,1296783408 +159764,58418,Matthew Broderick,1296783409 +159764,58803,Kevin Spacey,1271541627 +159764,58998,Jason Segel,1278315672 +159764,58998,Paul Rudd,1278315675 +159764,59709,Elijah Wood,1294379323 +159764,59709,John Hurt,1294379326 +159764,59995,Andrew Garfield,1278840865 +159764,60037,M. Night Shyamalan,1280445466 +159764,60037,Mark Wahlberg,1280445468 +159764,60037,Zooey Deschanel,1280445470 +159764,60684,Billy Crudup,1279589360 +159764,60737,Cillian Murphy,1289458065 +159764,60737,Lucy Liu,1289458063 +159764,60758,Matthew Goode,1270609721 +159764,60894,Cillian Murphy,1294379383 +159764,60894,Keira Knightley,1294379384 +159764,62155,Jay Baruchel,1278315689 +159764,62155,Kat Dennings,1278315690 +159764,62155,Michael Cera,1278315693 +159764,62293,Dominic Cooper,1279589565 +159764,62293,Keira Knightley,1279589558 +159764,62644,Jürgen Vogel,1271713170 +159764,62644,Max Riemelt,1271713169 +159764,62718,Aaron Johnson,1289636109 +159764,62849,Tom Hardy,1290065266 +159764,63072,Charlize Theron,1288078601 +159764,63072,Guy Pearce,1288078606 +159764,63072,Viggo Mortensen,1288078603 +159764,63876,Gus Van Sant,1269585858 +159764,63876,James Franco,1269585866 +159764,63876,San Francisco,1269585860 +159764,63876,Sean Penn,1269585862 +159764,65126,Anjelica Huston,1278315562 +159764,65126,Sam Rockwell,1278315559 +159764,65685,Helen Mirren,1279708295 +159764,65685,Paul Bettany,1279708299 +159764,66762,Fabrice Luchini,1291751390 +159764,66762,Juliette Binoche,1291751385 +159764,66762,Romain Duris,1291751387 +159764,67255,Michael Nyqvist,1279609672 +159764,67255,Noomi Rapace,1279609665 +159764,67734,Jesse Eisenberg,1271541679 +159764,67734,Kristen Stewart,1271541677 +159764,67784,Kristen Stewart,1279609429 +159764,68073,Philip Seymour Hoffman,1272270208 +159764,68073,Tom Sturridge,1272270210 +159764,68237,Kevin Spacey,1277464770 +159764,68237,Sam Rockwell,1277464766 +159764,68269,Emily Blunt,1278315489 +159764,68269,Paul Bettany,1278315491 +159764,68269,Rupert Friend,1294379689 +159764,68554,Ewan McGregor,1296783847 +159764,68554,Stellan SkarsgÃ¥rd,1296783844 +159764,68554,Thure Lindhardt,1296783856 +159764,68554,Tom Hanks,1296783842 +159764,68650,Eddie Redmayne,1292401456 +159764,68650,Forest Whitaker,1292401443 +159764,68650,Patrick Swayze,1292401448 +159764,68650,Ray Liotta,1292401446 +159764,68690,Grégoire Leprince-Ringuet,1277880618 +159764,68690,Louis Garrel,1277880519 +159764,68793,Ben Stiller,1279009285 +159764,68793,Hank Azaria,1279009288 +159764,68793,Jay Baruchel,1279009306 +159764,68793,Ricky Gervais,1279009291 +159764,69122,Bradley Cooper,1279009161 +159764,69122,Ed Helms,1279009168 +159764,69122,Justin Bartha,1279009147 +159764,69122,Zach Galifianakis,1279009197 +159764,69324,Thure Lindhardt,1295772406 +159764,69481,Guy Pearce,1297683364 +159764,69481,Ralph Fiennes,1297683359 +159764,69757,Joseph Gordon-Levitt,1279744521 +159764,69757,Matthew Gray Gubler,1279744541 +159764,69757,Zooey Deschanel,1279744522 +159764,70102,Joshua Jackson,1303204603 +159764,70293,Meryl Streep,1279009360 +159764,70293,Stanley Tucci,1279009362 +159764,70567,Hugh Dancy,1277465240 +159764,70728,Tom Hardy,1280561795 +159764,71327,Abbie Cornish,1278840923 +159764,71327,Ben Whishaw,1278840925 +159764,72011,Anna Kendrick,1279708523 +159764,72011,George Clooney,1279708513 +159764,72011,Jason Bateman,1279708509 +159764,72228,Paul Bettany,1275815543 +159764,72407,Anna Kendrick,1279609587 +159764,72407,Dakota Fanning,1279609585 +159764,72407,Kristen Stewart,1279609579 +159764,72720,Colin Firth,1272442998 +159764,72720,Matthew Goode,1272442990 +159764,72720,Nicholas Hoult,1272442991 +159764,72731,Mark Wahlberg,1295772683 +159764,72731,Rachel Weisz,1295772675 +159764,72731,Saoirse Ronan,1295772679 +159764,72731,Stanley Tucci,1295772677 +159764,72731,Susan Sarandon,1295772680 +159764,73319,Matthew Goode,1279180905 +159764,74275,Ewan McGregor,1279589398 +159764,74275,Jim Carrey,1279589402 +159764,74275,Leslie Mann,1279589400 +159764,74324,Claire Danes,1322629540 +159764,74458,Leonardo DiCaprio,1276158833 +159764,74458,Martin Scorsese,1276158835 +159764,74510,Michael Nyqvist,1288858897 +159764,74510,Noomi Rapace,1288858899 +159764,74868,Colin Firth,1279343550 +159764,74948,Emily Mortimer,1321429760 +159764,74948,Michael Caine,1321429758 +159764,76079,Amanda Seyfried,1272616960 +159764,76079,Liam Neeson,1272616962 +159764,76093,Craig Ferguson,1321429623 +159764,76093,Jay Baruchel,1321429616 +159764,76251,Aaron Johnson,1321429859 +159764,76251,Chloe Moretz,1321429851 +159764,76293,James Franco,1271541387 +159764,76293,Mark Ruffalo,1271541389 +159764,76293,Tina Fey,1271541393 +159764,76755,Cillian Murphy,1293169509 +159764,76755,Ellen Page,1293169512 +159764,76755,Josh Lucas,1293169508 +159764,76755,Susan Sarandon,1293169511 +159764,76763,Alia Shawkat,1279609535 +159764,76763,Dakota Fanning,1279609538 +159764,76763,Kristen Stewart,1279609540 +159764,77240,Tilda Swinton,1296783747 +159764,77328,Andrew Garfield,1294379461 +159764,77414,Greg Kinnear,1321430415 +159764,77455,Banksy,1284873428 +159764,77837,Al Pacino,1321429530 +159764,77837,John Goodman,1321429531 +159764,77837,Susan Sarandon,1321429528 +159764,78039,Michelle Williams,1296364676 +159764,78039,Ryan Gosling,1296364670 +159764,78316,Amanda Seyfried,1284873449 +159764,78316,Gael García Bernal,1284873451 +159764,78332,Grégoire Leprince-Ringuet,1277880592 +159764,78332,Louis Garrel,1276158769 +159764,78534,Laura Neiva,1301037174 +159764,78534,Vincent Cassel,1301037176 +159764,78574,John Hawkes,1321429714 +159764,79132,Christopher Nolan,1279589281 +159764,79132,Cillian Murphy,1279589289 +159764,79132,Ellen Page,1279589279 +159764,79132,Joseph Gordon-Levitt,1279589301 +159764,79132,Leonardo DiCaprio,1279589276 +159764,79132,Marion Cotillard,1279589309 +159764,79132,Tom Hardy,1279589322 +159764,79187,Aaron Johnson,1289636129 +159764,79187,Carey Mulligan,1279709016 +159764,79187,Susan Sarandon,1279709023 +159764,79228,Eddie Redmayne,1279708854 +159764,79228,Tom Sturridge,1279708838 +159764,79228,Toni Collette,1279708860 +159764,79230,Eddie Redmayne,1279709219 +159764,79230,Kristen Stewart,1279709230 +159764,79230,William Hurt,1279709239 +159764,79242,Josh Hutcherson,1288858867 +159764,79242,Julianne Moore,1288858850 +159764,79242,Mia Wasikowska,1288858857 +159764,79259,Robert Sheehan,1291751208 +159764,79259,Rupert Grint,1291751186 +159764,79357,Diane Kruger,1282295921 +159764,79357,Jared Leto,1282295894 +159764,79357,juno temple,1282295908 +159764,79702,Anna Kendrick,1293094704 +159764,79702,Kieran Culkin,1293094719 +159764,79702,Michael Cera,1293094695 +159764,79720,Guy Pearce,1298712238 +159764,79796,Michael Fassbender,1294379432 +159764,80463,Andrew Garfield,1288248388 +159764,80463,Jesse Eisenberg,1288248372 +159764,80489,Ben Affleck,1284873400 +159764,80489,Chris Cooper,1284873397 +159764,80549,Emma Stone,1290422280 +159764,80549,Patricia Clarkson,1290422309 +159764,80549,Penn Badgley,1290422286 +159764,80549,Stanley Tucci,1290422302 +159764,80693,Keir Gilchrist,1321429900 +159764,80693,Zach Galifianakis,1321429891 +159764,80775,Dominic Cooper,1296783552 +159764,80831,Elias Koteas,1297763277 +159764,80831,Kodi Smit-McPhee,1297763258 +159764,80969,Andrew Garfield,1287386489 +159764,80969,Carey Mulligan,1287386479 +159764,80969,Keira Knightley,1287386505 +159764,81158,Pemble,1293605178 +159764,81383,Romain Duris,1296364703 +159764,81456,Xavier Dolan,1321429639 +159764,81516,Eddie Redmayne,1321430124 +159764,81516,Sean Bean,1321430116 +159764,81562,Clemence Poesy,1321429744 +159764,81562,James Franco,1321429733 +159764,81591,Darren Aronofsky,1293076685 +159764,81591,Mila Kunis,1293076683 +159764,81591,Natalie Portman,1293076673 +159764,81591,Vincent Cassel,1293076691 +159764,81591,Winona Ryder,1301037219 +159764,81731,Eddie Redmayne,1292401538 +159764,81731,Hayley Atwell,1292401567 +159764,81731,Matthew MacFadyen,1292401557 +159764,81731,Rufus Sewell,1292401548 +159764,81784,Diane Keaton,1321430347 +159764,81784,Harrison Ford,1321430341 +159764,81784,Jeff Goldblum,1321430354 +159764,81784,Rachel McAdams,1321430334 +159764,81791,Elle Fanning,1297763178 +159764,81791,Sofia Coppola,1297763153 +159764,81834,Alan Rickman,1290422325 +159764,81834,Daniel Radcliffe,1290422332 +159764,81834,Emma Watson,1290422329 +159764,81834,Rupert Grint,1290422330 +159764,81845,Colin Firth,1293605221 +159764,81845,Geoffrey Rush,1293605211 +159764,81932,Amy Adams,1297763213 +159764,81932,Christian Bale,1297763211 +159764,81932,Mark Wahlberg,1297763205 +159764,81949,Anna Paquin,1301126155 +159764,81949,Elijah Wood,1301126140 +159764,82167,Anne Hathaway,1296783700 +159764,82167,Jake Gyllenhaal,1296783707 +159764,82378,Kirsten Dunst,1293696499 +159764,82378,Ryan Gosling,1293696489 +159764,82459,Barry Pepper,1293076756 +159764,82459,Coen Brothers,1293076743 +159764,82459,Jeff Bridges,1293076745 +159764,82459,Josh Brolin,1293076747 +159764,82459,Matt Damon,1293076749 +159764,82767,Aaron Eckhart,1296364745 +159764,82767,Nicole Kidman,1296364740 +159764,83302,Guillaume Canet,1321430234 +159764,83302,Keira Knightley,1321430237 +159764,83369,Ed Harris,1321429828 +159764,83369,Jim Sturgess,1321429821 +159764,83369,Saoirse Ronan,1321429814 +159764,84152,Abbie Cornish,1303204368 +159764,84152,Bradley Cooper,1303204366 +159764,84152,Robert De Niro,1303204370 +159764,84242,James Gandolfini,1321429970 +159764,84242,Kristen Stewart,1321429976 +159764,84374,Natalie Portman,1321430274 +159764,84601,Diane Kruger,1299479140 +159764,84601,January Jones,1299479149 +159764,84601,Liam Neeson,1299479130 +159764,84954,Emily Blunt,1300005461 +159764,84954,John Slattery,1300005484 +159764,84954,Matt Damon,1300005468 +159764,85397,Amanda Seyfried,1321430433 +159764,85397,Gary Oldman,1321430446 +159764,85397,Lukas Haas,1321430440 +159764,85438,Jamie Bell,1320819017 +159764,85438,Mia Wasikowska,1320819003 +159764,85438,Michael Fassbender,1320819006 +159764,85788,Patrick Wilson,1321430219 +159764,85788,Rose Byrne,1321430224 +159764,85790,Michelle Williams,1321430251 +159764,85790,Paul Dano,1321430264 +159764,86190,Cate Blanchett,1303794313 +159764,86190,Eric Bana,1303794321 +159764,86190,Saoirse Ronan,1303794305 +159764,86320,Charlotte Gainsbourg,1320817516 +159764,86320,Kirsten Dunst,1320817518 +159764,86320,Lars von Trier,1320817520 +159764,86548,Christoph Waltz,1321430006 +159764,86833,Chris O'Dowd,1320819106 +159764,86833,Kristen Wiig,1320819055 +159764,86833,Maya Rudolph,1320819056 +159764,86833,Rose Byrne,1320819058 +159764,86882,Adrien Brody,1321429593 +159764,86882,Marion Cotillard,1321429606 +159764,86882,Michael Sheen,1321429601 +159764,86882,Rachel McAdams,1321429590 +159764,86882,Woody Allen,1321429589 +159764,86898,Brad Pitt,1321430041 +159764,86898,Hunter McCracken,1321430067 +159764,86898,Jessica Chastain,1321430054 +159764,86898,Sean Penn,1321430047 +159764,86898,Terrence Malick,1321430074 +159764,87079,Clive Owen,1321430023 +159764,87232,James McAvoy,1320819026 +159764,87232,Kevin Bacon,1320819024 +159764,87232,Michael Fassbender,1320819039 +159764,87232,Rose Byrne,1320819029 +159764,87270,Lauren Ambrose,1321429691 +159764,87270,Natalie Portman,1321429684 +159764,87304,Ewan McGregor,1320818755 +159764,87304,Melanie Laurent,1320818752 +159764,87306,Elle Fanning,1320818789 +159764,87306,Joel Courtney,1320818781 +159764,87469,Diane Lane,1320818666 +159764,87469,James Gandolfini,1320818680 +159764,87469,Tim Robbins,1320818671 +159764,88125,Daniel Radcliffe,1320818407 +159764,88125,Emma Watson,1320818397 +159764,88125,Ralph Fiennes,1320818415 +159764,88125,Rupert Grint,1320818423 +159764,88129,Carey Mulligan,1320818455 +159764,88129,Christina Hendricks,1320818477 +159764,88129,Ryan Gosling,1320818442 +159764,88163,Emma Stone,1320817644 +159764,88163,Julianne Moore,1320817663 +159764,88163,Kevin Bacon,1320817672 +159764,88163,Ryan Gosling,1320817646 +159764,88405,Mila Kunis,1320818339 +159764,88405,Woody Harrelson,1320818342 +159764,88810,Emma Stone,1325828464 +159764,88810,Jessica Chastain,1325828495 +159764,88810,Viola Davis,1325828457 +159764,89039,Brit Marling,1321429934 +159764,89085,Helen Mirren,1325828532 +159764,89085,Jessica Chastain,1325828520 +159764,89085,Tom Wilkinson,1325828535 +159764,89470,Jude Law,1320817584 +159764,89470,Kate Winslet,1320817592 +159764,89470,Marion Cotillard,1320817612 +159764,89470,Matt Damon,1320817598 +159764,89480,Emily Browning,1320818190 +159764,89774,Joel Edgerton,1325828439 +159764,89774,Nick Nolte,1325828430 +159764,89774,Tom Hardy,1325828428 +159764,90057,Jessica Chastain,1320818072 +159764,90057,Michael Shannon,1320818063 +159764,90353,Alan Tudyk,1320817843 +159764,90353,Kyle Gallner,1320817827 +159764,90353,Maria Bello,1320817818 +159764,90353,Michael Sheen,1320817810 +159764,90374,Elizabeth Olsen,1320817859 +159764,90374,Hugh Dancy,1320817875 +159764,90374,John Hawkes,1320817868 +159764,90376,Ezra Miller,1325828354 +159764,90376,John C. Reilly,1325828372 +159764,90376,Tilda Swinton,1325828338 +159764,90645,Rafe Spall,1320817734 +159764,91079,Anton Yelchin,1322337407 +159764,91079,Felicity Jones,1322337400 +159764,91658,Rooney Mara,1325828398 +159764,100714,Julie Delpy,1373095449 +159781,1201,Clint Eastwood,1439876110 +159781,1201,complex characters,1439876114 +159781,1201,humorous,1439876119 +159781,109487,Christopher Nolan,1439876087 +159781,109487,physics,1439876086 +159781,109487,sci-fi,1439876076 +159781,109487,sounds,1439876095 +159781,109487,space,1439876073 +159790,4306,fairy tale,1178693242 +159790,8360,fairy tale,1178693246 +159790,46322,jet li,1171403717 +159820,260,epic adventure,1439330655 +159820,260,exciting,1439330677 +159820,260,fun,1439330704 +159820,260,heroic journey,1439330712 +159820,260,Inventive,1439330696 +159840,104,sports,1444481067 +159840,924,atmospheric,1438026820 +159840,924,cinematography,1438001043 +159840,924,masterpiece,1438001028 +159840,924,meditative,1438001046 +159840,924,philosophical,1438001026 +159840,924,space,1438001020 +159840,924,surreal,1438001030 +159840,924,visually appealing,1438026816 +159840,1210,sci-fi,1431887256 +159840,1210,space,1431887260 +159840,1210,Star Wars,1431887258 +159840,2628,George Lucas,1431887150 +159840,2628,sci-fi,1431887143 +159840,2628,space,1431887145 +159840,2628,Star Wars,1431887140 +159840,3114,whimsical,1431153357 +159840,3365,western,1432703201 +159840,3793,comic book,1431886812 +159840,3793,super-hero,1431886810 +159840,3793,superhero,1431886805 +159840,3949,atmospheric,1442939092 +159840,3949,dark,1442939101 +159840,3949,disturbing,1442940000 +159840,3949,independent film,1442939989 +159840,3949,Jared Leto,1442940006 +159840,3949,psychological,1442939987 +159840,3949,psychology,1442939997 +159840,3949,visually appealing,1442939095 +159840,4232,silly,1433267576 +159840,4641,bittersweet,1442119269 +159840,4641,quirky,1442119267 +159840,4713,psychedelic,1442172185 +159840,5378,George Lucas,1431887200 +159840,5378,sci-fi,1431887187 +159840,5378,space,1431887198 +159840,5378,Star Wars,1431887190 +159840,5673,bittersweet,1431719062 +159840,5673,hallucinatory,1431719094 +159840,5673,quirky,1431719024 +159840,5673,surreal,1431719096 +159840,5673,weird,1431719037 +159840,5881,cinematography,1441728346 +159840,5881,existentialism,1443309792 +159840,5881,hallucination,1441728361 +159840,5881,memory,1443309800 +159840,5881,philosophy,1441728427 +159840,5881,psychology,1441728430 +159840,5881,slow,1441728374 +159840,5881,surreal,1441728387 +159840,5881,visual appealing,1441728394 +159840,6711,Amazing Cinematography,1431153584 +159840,6711,atmospheric,1431153559 +159840,6711,bittersweet,1431153575 +159840,6711,complex characters,1431153594 +159840,6711,intelligent,1431364899 +159840,6711,isolation,1431364879 +159840,6711,Japan,1431153577 +159840,6711,loneliness,1431364882 +159840,6711,Melancholic,1431153571 +159840,6711,reflective,1431153563 +159840,6711,relationships,1431364876 +159840,6711,tokyo,1431364861 +159840,6711,visually appealing,1431153582 +159840,7361,beautiful,1431153073 +159840,7361,bittersweet,1441732729 +159840,7361,Charlie Kaufman,1441732733 +159840,7361,dreamlike,1431153023 +159840,7361,emotional,1441732741 +159840,7361,fantasy,1431153019 +159840,7361,imagination,1431153229 +159840,7361,melancholy,1431153066 +159840,7361,Michel Gondry,1441732735 +159840,7361,philosophy,1431153014 +159840,7361,psychology,1431153056 +159840,7361,surreal,1431153032 +159840,7361,surrealism,1431153011 +159840,7361,thought-provoking,1431153026 +159840,27773,bizarre,1444406417 +159840,27773,hallucinatory,1444406376 +159840,27773,stylized,1444406371 +159840,27773,surreal,1444406380 +159840,27773,twist ending,1444406367 +159840,33493,sci-fi,1431887093 +159840,33493,space,1431887104 +159840,33493,Star Wars,1431887086 +159840,33493,war,1431887111 +159840,33681,tongue-in-cheek,1433267548 +159840,35386,soldier,1431791676 +159840,35386,war movie,1431791680 +159840,48043,alternate reality,1431152933 +159840,48043,artistic,1431152924 +159840,48043,atmospheric,1431152863 +159840,48043,cerebral,1436502474 +159840,48043,dreamlike,1431152871 +159840,48043,emotional,1431152914 +159840,48043,inspirational,1431152922 +159840,48043,philosophical,1431152883 +159840,48043,religion,1431153179 +159840,48043,surreal,1431152893 +159840,48043,thought-provoking,1431152885 +159840,48043,visually appealing,1431152858 +159840,52885,atmospheric,1431789339 +159840,52885,dreamlike,1431789324 +159840,52885,philosophical,1431789336 +159840,52885,psychedellic,1431789331 +159840,52885,surreal,1431789322 +159840,53226,war,1431791805 +159840,53996,80s nostalgia,1431886881 +159840,53996,giant robots,1431886966 +159840,53996,Megan Fox,1431886877 +159840,53996,Michael Bay,1431886870 +159840,53996,robots,1431886949 +159840,53996,Special Effects,1431886963 +159840,53996,teen,1431886912 +159840,56580,politics,1431791588 +159840,56782,cerebral,1447265397 +159840,56782,morality,1447265394 +159840,56782,visually appealing,1447265385 +159840,57502,psychedelic,1442940187 +159840,57502,surreal,1442940183 +159840,57504,atmospheric,1431483741 +159840,57504,heartwarming,1431483736 +159840,61240,atmospheric,1443632624 +159840,61240,Beautiful,1443632633 +159840,61240,bittersweet,1443632625 +159840,61240,coming of age,1443632627 +159840,61240,dark,1443632637 +159840,61240,love story,1443632630 +159840,61240,slow,1443632639 +159840,61240,strange,1443632643 +159840,61240,touching,1443632641 +159840,62511,meta,1453318708 +159840,62511,Meta Referential,1453318711 +159840,62511,surreal,1453318699 +159840,62511,thought-provoking,1453318703 +159840,66118,history,1431791435 +159840,66118,politics,1431791439 +159840,68237,artificial intelligence,1436290462 +159840,68237,dialogue driven,1436290486 +159840,68237,great soundtrack,1436290429 +159840,68237,interesting,1436290437 +159840,68237,isolation,1436290408 +159840,68237,melancholy,1436290427 +159840,68237,mindfuck,1436290491 +159840,68237,plot twist,1436290417 +159840,68237,psychological,1436290431 +159840,68237,psychology,1436290399 +159840,68237,Sci-fi,1436290460 +159840,68237,solitude,1436290412 +159840,68237,thought-provoking,1436290421 +159840,68237,twist ending,1436290404 +159840,71745,Coming of age,1431487416 +159840,71745,dreamlike,1431487431 +159840,71745,fantasy world,1431487413 +159840,71745,imagination,1431487428 +159840,71745,stylized,1431487423 +159840,71745,surreal,1431487419 +159840,71745,touching,1431487421 +159840,78836,beautiful,1431476805 +159840,78836,colours,1431476800 +159840,78836,Mind Games,1444406942 +159840,78836,philosophic,1444406939 +159840,78836,psychedelic,1431476788 +159840,79357,cinematography,1443225643 +159840,79357,nonlinear,1443225640 +159840,79357,philosophy,1443225650 +159840,79357,surreal,1443225635 +159840,79357,thought provoking,1443225646 +159840,79702,fantasy,1431711273 +159840,79702,quirky,1431711267 +159840,79702,stylized,1431711256 +159840,79702,surreal,1431711279 +159840,79702,visually appealing,1431711259 +159840,79702,whimsical,1431711270 +159840,81791,loneliness,1452148126 +159840,86320,apocalypse,1433528313 +159840,86320,beautiful,1433528307 +159840,86320,cinematography,1433528306 +159840,86320,introspective,1433528315 +159840,86320,Magic realism,1433528317 +159840,86320,photography,1433528321 +159840,86320,slow,1433528324 +159840,89039,cinematography,1432574638 +159840,89039,melancholic,1443544647 +159840,89039,parallel universe,1432574625 +159840,89039,Parallel worlds,1432574627 +159840,89039,Parallels worlds,1432574642 +159840,89039,surreal,1432574631 +159840,89039,visually appealing,1443544640 +159840,90376,disturbing,1438041482 +159840,90376,insanity,1438041485 +159840,90376,psychological,1438041480 +159840,90405,cheesy,1435408776 +159840,94959,Bill Murray,1432883853 +159840,94959,bittersweet,1432883859 +159840,94959,cinematography,1432883861 +159840,94959,coming of age,1432883870 +159840,94959,dreamlike,1432883875 +159840,94959,fantasy,1432883883 +159840,94959,quirky,1432883849 +159840,94959,stylized,1432883851 +159840,94959,surreal,1432883857 +159840,94959,wilderness,1432883877 +159840,95088,feel good,1441509887 +159840,95088,touching,1441509884 +159840,96821,bittersweet,1443291662 +159840,96821,Captivating,1443291658 +159840,96821,touching,1435407109 +159840,99764,moving,1444724847 +159840,99764,philosopical,1444724849 +159840,99764,surreal,1444724851 +159840,99917,artistic,1437591834 +159840,99917,emotionally captivating,1437591831 +159840,99917,sci-fi,1437591835 +159840,100553,nature,1431710791 +159840,100556,documentary,1431478852 +159840,100556,Indonesia,1431478843 +159840,101285,nightlife,1438456604 +159840,101285,stylized,1438456594 +159840,101285,surreal,1438456601 +159840,101285,visually appealing,1438456641 +159840,104636,motorcycle,1431478619 +159840,104841,atmospheric,1443888433 +159840,104841,beautiful,1443888416 +159840,104841,cinematography,1443888394 +159840,104841,intense,1443888397 +159840,104841,isolation,1443888430 +159840,104841,space,1443888391 +159840,104841,visually appealing,1443888393 +159840,104841,visually stunning,1443888410 +159840,104944,feel-good,1443302146 +159840,104944,touching,1443302139 +159840,106918,imagination,1435405679 +159840,106918,inspirational,1431711542 +159840,106918,positive thinking,1435405674 +159840,106918,scenic,1435405691 +159840,106918,surreal,1435405669 +159840,106918,visually appealing,1435405676 +159840,106920,beautiful,1431153435 +159840,106920,bittersweet,1431153418 +159840,106920,loneliness,1443281333 +159840,106920,original,1431153432 +159840,106920,original plot,1431153430 +159840,106920,philosophical,1431153422 +159840,106920,psychology,1431153458 +159840,106920,Spike Jonze,1431153427 +159840,106920,thought-provoking,1431153444 +159840,109848,unnerving,1435991160 +159840,109848,visually appealing,1435991150 +159840,110882,dialogue driven,1435984015 +159840,110882,realtime,1435984034 +159840,110882,strong performance,1435983997 +159840,110882,unique,1435984021 +159840,112183,cinematography,1441501966 +159840,112183,dark,1441501958 +159840,112183,magical realism,1441501959 +159840,112183,psychological,1441501962 +159840,112183,surreal,1441501969 +159840,112290,Ambitious,1432320497 +159840,112290,episodic,1432320505 +159840,113829,alternate reality,1433355569 +159840,113829,magical realism,1433355565 +159840,114074,heartfelt,1443290063 +159840,114074,hopeful,1443290057 +159840,114074,tender,1443290061 +159840,115713,consciousness,1437494421 +159840,115713,Contemplative,1437494424 +159840,115713,philosophical,1437494409 +159840,115713,Surreal,1437494427 +159840,115713,thought provoking,1437494407 +159840,131724,homicide investigation,1431478690 +159840,139855,surreal,1453305828 +159852,2617,Orientalism,1416966944 +159852,91974,cynical money grab,1416966319 +159852,112852,Marvel,1416722946 +159852,112852,Marvel Cinematic Universe,1416722951 +159852,112852,space,1416722936 +159852,117877,cartoon for grown-ups,1417368153 +159861,296,funny,1420243994 +159861,296,smart,1420243994 +159861,296,stylish,1420243994 +159861,356,excellent characters,1421114328 +159861,356,excellent script,1421114328 +159861,356,inspiring,1421114328 +159879,57274,horror,1433876746 +159879,57274,subjective camera,1433876746 +159879,57274,zombies,1433876746 +159879,109487,post apocalyptic,1432338093 +159879,109487,science fiction,1432338093 +159879,109487,time travel,1432338093 +159879,120466,artificial intelligence,1432954678 +159879,120466,robots,1432954678 +159879,120466,science fiction,1432954678 +159880,6540,gay,1435851854 +159880,6540,independent,1435851854 +159880,6540,latin america,1435851854 +159880,30803,Ki-duk Kim,1219585982 +159880,30803,quiet,1219585995 +159880,30803,understated,1219585999 +159880,30803,very little dialogue,1219585991 +159880,33592,Ki-duk Kim,1219585964 +159880,50842,Danish,1201896609 +159880,50842,dark comedy,1201896582 +159880,50842,hiff,1201896685 +159880,50842,rakkautta ja anarkiaa,1201896685 +159886,480,adventure,1302119029 +159886,480,Oscar (Best Effects - Visual Effects),1302119032 +159886,480,scenic,1302119037 +159886,480,sci-fi,1302119027 +159886,1676,Nudity (Topless),1316025457 +159886,1721,atmospheric,1302631504 +159886,1721,bittersweet,1302631508 +159886,1721,drama,1302631498 +159886,1721,true story,1302631501 +159886,4310,drama,1302631452 +159886,4310,emotional,1302631450 +159886,4973,beautifully filmed,1302119199 +159886,4973,cult film,1302119301 +159886,4973,feel-good,1302119195 +159886,4973,notable soundtrack,1302119202 +159886,4973,stylized,1302119189 +159886,4973,surreal,1302119191 +159886,5171,inventor,1313606991 +159886,5171,Tim Burton,1313606979 +159886,6377,animation,1302118912 +159886,6377,Disney,1302118902 +159886,6377,funny,1302118930 +159886,6377,Pixar,1302118909 +159886,6539,adventure,1302631603 +159886,6539,comedy,1302631607 +159886,6539,Johnny Depp,1302631609 +159886,6539,magic,1302631611 +159886,6541,Sean Connery,1312137537 +159886,6754,Dark,1312481457 +159886,6754,fantasy,1312481459 +159886,6934,fantasy,1312481420 +159886,6934,Post apocalyptic,1312481404 +159886,6934,post-apocalyptic,1312481416 +159886,7153,adventure,1302631562 +159886,7153,atmospheric,1302631560 +159886,7153,fantasy,1302631550 +159886,7153,fantasy world,1302631553 +159886,7153,great soundtrack,1302631556 +159886,7153,high fantasy,1302631585 +159886,7153,scenic,1302631568 +159886,7153,stylized,1302631575 +159886,8644,artificial intelligence,1311708969 +159886,8644,future,1310068465 +159886,8644,futuristic,1310068462 +159886,8644,robots,1310068458 +159886,27815,boys' school,1302118474 +159886,27815,feel-good,1302118454 +159886,27815,music,1302118497 +159886,34319,future,1311708877 +159886,34319,sci-fi,1311708865 +159886,39183,bittersweet,1305671922 +159886,39183,homosexuality,1305671913 +159886,39183,Love story,1305671915 +159886,39183,sexuality,1305671917 +159886,43928,comic book,1311708822 +159886,43928,Milla Jovovich,1311708815 +159886,43928,sci-fi,1311708819 +159886,48394,atmospheric,1302632356 +159886,48394,bittersweet,1302632352 +159886,48394,fantasy,1302632350 +159886,48394,imagination,1302632364 +159886,48394,sci-fi,1302632359 +159886,48394,stylized,1302632348 +159886,48394,surreal,1302632344 +159886,48780,magic,1311272361 +159886,48780,Michael Caine,1311272355 +159886,50872,animation,1302118859 +159886,50872,cooking,1302118868 +159886,50872,Disney,1302118890 +159886,50872,funny,1302118883 +159886,50872,imagination,1302118874 +159886,50872,pixar,1302118876 +159886,51255,british comedy,1310068399 +159886,52328,beautiful effects,1309980908 +159886,52328,sci-fi,1309980913 +159886,56171,fantasy world,1312484166 +159886,56171,trilogy,1312484171 +159886,66097,alternate universe,1302127143 +159886,66097,dark,1302127137 +159886,66097,fantasy world,1302127153 +159886,66097,stop motion,1302127131 +159886,66097,Surreal,1302127147 +159886,66097,Tim Burton,1302127129 +159886,68358,sci-fi,1316025426 +159886,68358,Star Trek,1316025422 +159886,71057,creepy,1309980706 +159886,71057,dark fantasy,1309980703 +159886,71057,dystopia,1309980687 +159886,71057,post-apocalyptic,1309980660 +159886,71057,robots,1309980701 +159886,71057,sci-fi,1309980691 +159886,71057,surreal,1309980692 +159886,71057,visually appealing,1309980689 +159886,71057,Visuals,1309980694 +159886,71135,post-apocalyptic,1309981330 +159886,71135,sci-fi,1309981333 +159886,71135,space travel,1309981332 +159886,72226,animation,1302118807 +159886,72226,bittersweet,1302118827 +159886,72226,stop motion,1302118796 +159886,72226,visually appealing,1302118811 +159886,72720,beautiful cinematography,1305671320 +159886,72720,Colin Firth,1305671336 +159886,72720,Julianne Moore,1305671330 +159886,72720,sad,1305671376 +159886,72720,suicide,1305671376 +159886,72720,twist ending,1305671346 +159886,73929,apocalypse,1312483188 +159886,73929,fantasy,1312483173 +159886,73929,religion,1312483176 +159886,74789,alternate reality,1314209977 +159886,74789,Tim Burton,1314209967 +159886,76093,adventure,1302631664 +159886,76093,animation,1302631647 +159886,76093,depth of emotion,1302631650 +159886,76093,fantasy,1302631659 +159886,76093,friendship,1302631653 +159886,76093,funny,1302631655 +159886,78105,adventure,1312137635 +159886,78105,Special Effects,1312137637 +159886,79139,fantasy world,1312483307 +159886,79139,magic,1312483306 +159886,79702,cultural references,1305671171 +159886,79702,fantasy,1305671163 +159886,79702,funny,1305671168 +159886,79702,Gay,1305671116 +159886,79702,innovative,1305671131 +159886,79702,stylized,1305671125 +159886,79702,visually appealing,1305671136 +159886,80463,business,1302630451 +159886,80463,friendship,1302630441 +159886,81845,based on a true story,1302118541 +159886,81845,complex characters,1302118550 +159886,81845,drama,1302118574 +159886,81845,emotional,1302118567 +159886,86898,beautifully filmed,1311272588 +159886,86898,over the top,1311272585 +159886,86898,too much religion,1311272582 +159886,87430,Badly made,1314210032 +159886,88125,magic,1313606418 +159913,6,Al Pacino,1445340771 +159913,6,bank robbery,1445340779 +159913,6,realistic action,1445340776 +159913,32,atmospheric,1422038536 +159913,32,brad pitt,1420357713 +159913,32,bruce willis,1420357710 +159913,32,complicated,1420357728 +159913,32,great ending,1422038546 +159913,32,imdb top 250,1445840242 +159913,32,mental illness,1445840251 +159913,32,mindfuck,1445840238 +159913,32,original,1445840231 +159913,32,Post apocalyptic,1445840235 +159913,32,post-apocalyptic,1445840227 +159913,32,psychology,1420357702 +159913,32,time travel,1445840225 +159913,32,twist ending,1420357706 +159913,47,atmospheric,1445342221 +159913,47,morgan freeman,1422038505 +159913,47,mystery,1445342225 +159913,47,powerful ending,1422038503 +159913,47,psychology,1445342218 +159913,47,serial killer,1422038485 +159913,47,twist ending,1422038488 +159913,47,twists & turns,1422038511 +159913,50,clever,1422038717 +159913,50,complicated,1422038725 +159913,50,great ending,1422038698 +159913,50,heist,1422038708 +159913,50,mindfuck,1445341457 +159913,50,organized crime,1422038718 +159913,50,twist ending,1422038695 +159913,293,assassin,1445341136 +159913,293,friendship,1445341150 +159913,293,great acting,1445341138 +159913,293,hitman,1445341140 +159913,293,imdb top 250,1445341154 +159913,296,blood splatters,1420353997 +159913,296,dark comedy,1420353997 +159913,296,multiple storylines,1445341061 +159913,318,morgan freeman,1427452922 +159913,318,prison escape,1427452922 +159913,318,shocking,1427452922 +159913,648,espionage,1451561860 +159913,750,black comedy,1445340275 +159913,750,dark comedy,1445340271 +159913,858,Al Pacino,1445341025 +159913,858,great acting,1445341028 +159913,858,organized crime,1445341032 +159913,1089,dark comedy,1445340940 +159913,1089,heist,1445340955 +159913,1089,multiple storylines,1445340957 +159913,1089,organized crime,1445340936 +159913,1089,original,1445340932 +159913,1089,Quentin Tarantino,1445340924 +159913,1213,dark comedy,1445340989 +159913,1213,mafia,1445340984 +159913,1213,organized crime,1445340987 +159913,1961,dark comedy,1445478261 +159913,1961,Exceptional Acting,1445478280 +159913,1961,psychology,1445478257 +159913,1961,road trip,1445478265 +159913,1961,true story,1445478259 +159913,2579,Christopher Nolan,1445342176 +159913,2579,Twist Ending,1422038670 +159913,2700,adult humor,1445840837 +159913,2700,crude humor,1445840841 +159913,2700,south park,1445840849 +159913,2700,Trey Parker,1445840853 +159913,2959,atmospheric,1422038358 +159913,2959,Brad Pitt,1445342191 +159913,2959,dark comedy,1422038268 +159913,2959,Edward Norton,1445342192 +159913,2959,mental illness,1422038261 +159913,2959,mindfuck,1445342201 +159913,2959,philosophy,1422038332 +159913,2959,psychological,1445342198 +159913,2959,psychology,1422038346 +159913,2959,surreal,1422038257 +159913,2959,twist ending,1422038254 +159913,3362,Al Pacino,1445485343 +159913,3362,Atmospheric,1445485351 +159913,3362,bank robbery,1445485349 +159913,3362,black comedy,1445485354 +159913,3362,dark comedy,1445485352 +159913,3362,true story,1445485347 +159913,3535,Christian Bale,1445485188 +159913,3535,dark comedy,1445485197 +159913,3535,humorous,1445485198 +159913,3535,insanity,1445485193 +159913,3535,psychology,1445485191 +159913,3535,serial killer,1445485195 +159913,4011,brad pitt,1445841382 +159913,4011,british,1445841390 +159913,4011,comedy,1445841388 +159913,4011,Great dialogue,1445841398 +159913,4011,gypsy accent,1445841403 +159913,4011,Hilarious,1445841408 +159913,4011,imdb top 250,1445841412 +159913,4011,multiple storylines,1445841394 +159913,4011,twist ending,1445841384 +159913,4226,complicated,1422038577 +159913,4226,dark,1422038572 +159913,4226,memory,1422038613 +159913,4226,Mindfuck,1422038621 +159913,4226,mystery,1422038575 +159913,4226,nonlinear,1422038564 +159913,4226,psychology,1422038611 +159913,4226,twist ending,1422038559 +159913,4226,twists & turns,1422038580 +159913,4848,Atmospheric,1445477766 +159913,4848,dark,1445477769 +159913,4848,Erotic,1445477787 +159913,4848,lesbian,1445477766 +159913,4848,Los Angeles,1445477790 +159913,4848,mystery,1445477766 +159913,4848,Nudity (Full Frontal - Notable),1445477778 +159913,4848,surreal,1445477756 +159913,4848,twist ending,1445477788 +159913,4878,dreamlike,1422038190 +159913,4878,high school,1445341610 +159913,4878,jake gyllenhaal,1422038215 +159913,4878,mental illness,1422038212 +159913,4878,mindfuck,1422038223 +159913,4878,mystery,1445341619 +159913,4878,philosophy,1422038195 +159913,4878,psychology,1445341614 +159913,4878,surreal,1445341615 +159913,4878,twist ending,1422038190 +159913,4878,weird,1422038190 +159913,4995,genius,1445478202 +159913,4995,mathematics,1445478199 +159913,4995,mental illness,1445478206 +159913,4995,psychology,1445478199 +159913,4995,Russell Crowe,1445478204 +159913,4995,true story,1445478208 +159913,5690,anime,1445479591 +159913,5785,crazy,1445479257 +159913,5785,stupid,1445479255 +159913,5954,depressing,1445822584 +159913,5954,Edward Norton,1445822576 +159913,5954,philip seymour hoffman,1445822621 +159913,5954,powerful ending,1445822578 +159913,5954,psychology,1445822581 +159913,5971,anime,1445479627 +159913,5971,fantasy,1445479636 +159913,5971,feel good movie,1445479632 +159913,6242,atmospheric,1445841052 +159913,6242,disturbing,1445841053 +159913,6242,japanese horror,1445841055 +159913,7254,alternate reality,1445341643 +159913,7254,Mystery,1445341648 +159913,7254,twist ending,1445341645 +159913,7254,twists & turns,1445341653 +159913,7361,imagination,1445477996 +159913,7361,memory,1445477986 +159913,7361,nonlinear,1445477981 +159913,7361,philosophy,1445477995 +159913,7361,surreal,1445477979 +159913,7373,fantasy,1445822340 +159913,7373,Guillermo del Toro,1445822333 +159913,7502,pro military,1445479887 +159913,7502,realistic,1445479886 +159913,8641,comedy,1445478990 +159913,8641,funny,1445478994 +159913,8641,Steve Carell,1445478998 +159913,8641,Will Ferrell,1445478996 +159913,8947,ghost story,1445840947 +159913,8947,ghosts,1445840942 +159913,8947,remake,1445840944 +159913,8950,atmospheric,1445341316 +159913,8950,Christian Bale,1445341309 +159913,8950,insomnia,1445341319 +159913,8950,powerful ending,1445341317 +159913,8950,psychological,1445341322 +159913,8950,psychology,1445341308 +159913,8950,puzzle,1445341332 +159913,8950,schizophrenia,1445341311 +159913,8950,twist ending,1445341306 +159913,27773,Nudity (Full Frontal),1445341285 +159913,27773,twist ending,1445341253 +159913,38061,black comedy,1445841302 +159913,38061,clever,1445841305 +159913,38061,dark comedy,1445841313 +159913,38061,Film Noir,1445841315 +159913,38061,funny,1445841307 +159913,38061,good dialogue,1445841318 +159913,38061,mystery,1445841327 +159913,38061,Nudity (Topless),1445841320 +159913,38061,plot twist,1445841325 +159913,38061,Robert Downey Jr,1445841322 +159913,38061,Robert Downey Jr.,1445841311 +159913,44665,Bruce Willis,1445841501 +159913,44665,Film Noir,1445841507 +159913,44665,Morgan Freeman,1445841504 +159913,44665,stylized,1445841509 +159913,44665,twist ending,1445841499 +159913,47423,Ryan Gosling,1445822634 +159913,48394,dark fantasy,1445822248 +159913,48394,fairy tale,1445822223 +159913,48394,fantasy,1445822220 +159913,48780,atmospheric,1422038841 +159913,48780,Christian Bale,1445341472 +159913,48780,complicated,1422038853 +159913,48780,dark,1422038833 +159913,48780,great ending,1422038832 +159913,48780,mystery,1445341481 +159913,48780,twist ending,1422038819 +159913,49272,action,1445478623 +159913,49272,poker,1445478619 +159913,54503,friendship,1445279670 +159913,54503,high school,1445279668 +159913,54503,HIGH SCHOOL LIFE,1445279682 +159913,54503,Teen movie,1445279673 +159913,55820,brutal,1445482958 +159913,55820,crime,1445340889 +159913,55820,dark,1445340883 +159913,55820,great acting,1445340880 +159913,55820,hitman,1445340902 +159913,55820,serial killer,1445340892 +159913,55820,thriller,1445340886 +159913,55820,twist ending,1445340895 +159913,57640,Guillermo del Toro,1445822371 +159913,57669,black comedy,1447820617 +159913,57669,british comedy,1447820636 +159913,57669,Colin Farrell,1447820629 +159913,57669,dark comedy,1447820614 +159913,57669,irish accent,1447820632 +159913,57669,stylized,1447820687 +159913,58559,Atmospheric,1420354110 +159913,58559,Christian Bale,1420354087 +159913,58559,Christopher Nolan,1420354075 +159913,58559,dark,1420354083 +159913,58559,great villain,1420354045 +159913,58559,Morgan Freeman,1420354064 +159913,58559,psychology,1420354096 +159913,59369,action,1445478528 +159913,59369,crime,1445478554 +159913,59369,fight scenes,1445478533 +159913,59369,Liam Neeson,1445478526 +159913,59369,Paris,1445478541 +159913,59369,realistic,1445478546 +159913,59369,revenge,1445478535 +159913,59369,thriller,1445478532 +159913,60072,assassin,1445478638 +159913,60072,brutal violence,1445478647 +159913,60072,Morgan Freeman,1445478640 +159913,60072,unrealistic action,1445478649 +159913,60756,comedy,1445479020 +159913,60756,funny,1445479018 +159913,60756,Highly quotable,1445479022 +159913,60756,will ferrell,1445479016 +159913,65261,Animation,1445479659 +159913,65261,anime,1445479662 +159913,65261,gorgeous animation,1445479666 +159913,68237,dialogue driven,1445839994 +159913,68237,moon,1445839978 +159913,68237,plot twist,1445839984 +159913,68237,psychology,1445839963 +159913,68237,twist ending,1445839967 +159913,69122,comedy,1445479282 +159913,69122,Drinking,1445479286 +159913,69122,drugs,1445479287 +159913,69122,flashbacks,1445479298 +159913,69122,funny,1445479291 +159913,69122,great soundtrack,1445479305 +159913,69122,Hilarious,1445479303 +159913,69122,Las Vegas,1445479285 +159913,69122,Nudity (Topless),1445479293 +159913,69122,Zach Galifianakis,1445479289 +159913,69122,Zach Galifinakis,1445479300 +159913,69757,artistic,1445291511 +159913,69757,Funny,1445480208 +159913,69757,great soundtrack,1445291474 +159913,69757,humor,1445480198 +159913,69757,humorous,1445480205 +159913,69757,intelligent,1445291523 +159913,69757,Joseph Gordon-Levitt,1445480184 +159913,69757,meaning of love,1445480218 +159913,69757,music,1445480227 +159913,69757,no happy ending,1445480202 +159913,69757,relationships,1445480198 +159913,69757,stylized,1445480210 +159913,73017,Atmospheric,1447820921 +159913,73017,Mystery,1447820919 +159913,73017,Robert Downey Jr.,1447820911 +159913,73017,Sherlock Holmes,1447820916 +159913,73017,slow motion,1447820936 +159913,74458,atmospheric,1445341357 +159913,74458,ending twist,1445341362 +159913,74458,insanity,1422038809 +159913,74458,Leonardo DiCaprio,1422038799 +159913,74458,mindfuck,1445341360 +159913,74458,mystery,1445341352 +159913,74458,plot twist,1445341355 +159913,74458,psychological,1422038769 +159913,74458,twist ending,1422038771 +159913,80489,bank robbery,1445340740 +159913,80489,Ben Affleck,1445340717 +159913,80489,heist,1445340718 +159913,81156,amazing stunts,1445479208 +159913,81156,funny pranks,1445479207 +159913,81537,comedy,1445479092 +159913,81537,drug use,1445479090 +159913,81537,road trip,1445479089 +159913,81537,Robert Downey Jr.,1445479087 +159913,81537,Zach Galifianakis,1445479085 +159913,85414,Jake Gyllenhaal,1445342134 +159913,85414,mindfuck,1445342136 +159913,85414,parallel universe,1445342130 +159913,85414,twist ending,1445342132 +159913,86911,Zach Galifianakis,1445479044 +159913,87869,actually funny,1445479333 +159913,87869,black comedy,1445479327 +159913,88129,80s music,1445340850 +159913,88129,ambient music,1445340852 +159913,88129,atmospheric,1445340801 +159913,88129,cinematography,1445340806 +159913,88129,Dark,1445340835 +159913,88129,great soundtrack,1445340814 +159913,88129,heist,1445340817 +159913,88129,Los Angeles,1445340854 +159913,88129,minimalistic,1445340828 +159913,88129,neo-noir,1445483102 +159913,88129,Ryan Gosling,1445340808 +159913,88129,soundtrack,1445340840 +159913,88129,violence,1445340810 +159913,89759,Asghar Farhadi,1445720747 +159913,89759,Iran,1445720750 +159913,89759,lies,1445720755 +159913,89759,realism,1445720745 +159913,90522,Rowan Atkinson,1445479397 +159913,90578,psychological,1452987118 +159913,90578,twists,1452987123 +159913,96079,beautiful cinematography,1445478724 +159913,96079,beautifully filmed,1445478715 +159913,96079,psychological,1445478734 +159913,96079,sad ending,1445478733 +159913,96079,Shanghai,1445478737 +159913,96811,camerawork,1445341119 +159913,96811,Jake Gyllenhaal,1445341108 +159913,96811,shaky camera,1445341115 +159913,96821,atmospheric,1445749965 +159913,96821,coming of age,1445749960 +159913,96821,depression,1445749948 +159913,96821,high school,1445749954 +159913,96821,touching,1445749963 +159913,97752,atmospheric,1447820778 +159913,97752,multiple storylines,1447820773 +159913,97752,philosophy,1447820784 +159913,97752,Tom Hanks,1447820780 +159913,102686,Zach Galifianakis,1445479065 +159913,102993,vacation,1445189367 +159913,103228,giant robots,1445822387 +159913,103228,Guillermo del Toro,1445822390 +159913,103228,ridiculous,1445822404 +159913,103228,silly,1445822398 +159913,104211,drugs,1445479117 +159913,104879,acting,1445341422 +159913,104879,atmospheric,1445341424 +159913,104879,great ending,1445341426 +159913,104879,Jake Gyllenhaal,1445341418 +159913,106062,hidden camera,1445479150 +159913,106062,jackass,1445479152 +159913,106062,stupid,1445479154 +159913,106920,loneliness,1445478023 +159913,106920,meaning of life,1445478027 +159913,106920,original,1445478030 +159913,106920,philosophical,1445478024 +159913,106920,psychology,1445478022 +159913,106920,sad,1445478041 +159913,108729,confusing,1445477820 +159913,108729,good acting,1445477830 +159913,108729,Jake Gyllenhaal,1445477817 +159913,108729,mindfuck,1445477819 +159913,108729,Psychological,1445477814 +159913,108729,Symbolic,1445477832 +159913,109374,cinematography,1445485413 +159913,109374,Edward Norton,1445485427 +159913,109374,funny,1445485420 +159913,109374,great dialogue,1445485423 +159913,109374,quirky,1445485415 +159913,109374,stylized,1445485418 +159913,109374,visually appealing,1445485406 +159913,109374,Wes Anderson,1445485416 +159913,109487,atmosphere,1445840147 +159913,109487,black hole,1445840120 +159913,109487,Christopher Nolan,1445840066 +159913,109487,epic,1445840094 +159913,109487,father - child relationship,1445840096 +159913,109487,good science,1445840085 +159913,109487,Hans Zimmer,1445840107 +159913,109487,interesting ideea,1445840100 +159913,109487,long,1445840150 +159913,109487,love,1445840102 +159913,109487,Masterpiece,1445840105 +159913,109487,Matthew McConaughey,1445840080 +159913,109487,Michael Caine,1445840109 +159913,109487,philosophical issues,1445840124 +159913,109487,physics,1445840131 +159913,109487,plot holes,1445840113 +159913,109487,relativity,1445840072 +159913,109487,space,1445840063 +159913,109487,thought-provoking,1445840077 +159913,109487,time travel,1445840082 +159913,109487,time-travel,1445840069 +159913,109487,visually appealing,1445840098 +159913,109487,wormhole,1445840127 +159913,110102,Scarlett Johansson,1445478676 +159913,110102,strong woman,1445478692 +159913,110882,dialogue driven,1445925762 +159913,110882,realtime,1445925770 +159913,110882,strong performance,1445925759 +159913,110882,Tom Hardy,1445839911 +159913,110882,unique,1445925758 +159913,111113,college,1445479134 +159913,111360,dumb science,1445478862 +159913,111360,Scarlett Johansson,1445478856 +159913,111360,strong female lead,1445478871 +159913,111360,woman lead,1445478879 +159913,111661,Hossein Amini,1445822710 +159913,112171,cliché,1445478510 +159913,112171,revenge,1445478496 +159913,112556,Ben Affleck,1445341388 +159913,112556,mindfuck,1422038446 +159913,112556,Psychopathy,1422038448 +159913,112556,unpredictable,1422038434 +159913,114184,iranian actor,1445721143 +159913,115149,assassin,1445478457 +159913,115149,Hitman,1445478436 +159913,115149,Keanu Reeves,1445478457 +159913,115149,lack of story,1445478446 +159913,115149,Revenge,1445478464 +159913,115149,secret society,1445841267 +159913,115149,stylish,1445478467 +159913,115569,dark,1445342239 +159913,115569,Jake Gyllenhaal,1425373405 +159913,115569,los angeles,1445342246 +159913,115569,sociopath,1445342242 +159913,115713,philosophical,1445341567 +159913,116887,religion,1445478408 +159913,117529,dinosaurs,1445478778 +159913,117529,Irrfan Khan,1445478792 +159913,117529,science,1445478788 +159913,117590,comedy,1445478930 +159913,117590,funny,1445478928 +159913,117590,Jennifer Aniston,1445478925 +159913,119145,british comedy,1445478579 +159913,119145,samuel l. jackson,1445478584 +159913,119145,spy thriller,1445478594 +159913,119145,violent,1445478594 +159913,122882,action,1445484265 +159913,122882,adventure,1445484274 +159913,122882,Colourful apocalypse,1445484294 +159913,122882,desert,1445484276 +159913,122882,non-stop,1445484271 +159913,122882,post apocalypse,1445484263 +159913,122882,Tom Hardy,1445484279 +159913,122882,visually appealing,1445484301 +159913,126548,high school,1445479352 +159913,127096,disappointing,1445478823 +159913,127096,High school,1445478821 +159913,127096,shakey,1445840392 +159913,127096,stupid ending,1445840388 +159913,127096,time travel,1445478818 +159913,128360,Quentin Tarantino,1452076112 +159913,128512,road trip,1445189102 +159913,128512,too young,1445189110 +159913,128512,Young Adult,1445189109 +159913,129937,liam neeson,1445478904 +159913,134130,cheesy ending,1452984840 +159913,134130,realistic,1452984832 +159913,134368,feminist,1445478754 +159913,138036,humour,1451561898 +159913,138036,stylish,1451561900 +159913,139644,dialogue,1451561790 +159913,139644,great sountrack,1451561789 +159936,2959,bizarre,1435036388 +159936,2959,great actor,1435036388 +159936,2959,original plot,1435036388 +159936,66934,Neil Patrick Harris,1438664185 +159936,71535,dark humor,1435037290 +159936,71535,Emma Stone,1435037293 +159936,71535,Jesse Eisenberg,1435037281 +159936,71535,post-apocalyptic,1435037278 +159936,71535,witty,1435037285 +159936,71535,zombies,1435037274 +159936,79702,Michael Cera,1435036856 +159936,79702,quirky,1435036866 +159936,79702,surreal,1435036862 +159936,80549,Emma Stone,1435037090 +159936,80549,witty,1435037102 +159936,106920,artificial intelligence,1435095936 +159936,106920,original,1435095987 +159936,106920,quirky,1435095982 +159936,115713,artificial intelligence,1435095811 +159936,115713,philosophical,1435095815 +159936,115713,plot twist,1435095853 +159966,4308,Ewan McGregor,1303962958 +159966,4308,musical,1303962961 +159966,4308,Nicole Kidman,1303962983 +159966,4308,Oscar (Best Costume Design),1303962966 +159966,4308,passionate,1303962974 +159966,7143,Edward Zwick,1303963009 +159966,7143,intense,1303963015 +159966,7143,martial arts,1303963017 +159966,7143,samurai,1303963023 +159966,7143,Tom Cruise,1303963020 +159966,30816,Gerard Butler,1303962812 +159966,30816,Musical,1303962807 +159966,30816,playwright:Andrew Lloyd Webber,1303962815 +159966,30816,Romance,1303962813 +159966,76093,action,1303962869 +159966,76093,adventure,1303962854 +159966,76093,animation,1303962856 +159966,76093,cute,1303962871 +159966,76093,depth of emotion,1303962859 +159966,76093,dragons,1303962852 +159966,76093,fantasy,1303962867 +159966,76093,friendship,1303962865 +159966,76093,funny,1303962861 +159966,76093,predictable,1303962896 +159966,76093,vikings,1303962886 +160003,356,baby boomer,1431985229 +160003,356,heartwarming,1431985229 +160003,356,southern us,1431985229 +160003,8718,but still excellent,1197040654 +160003,8718,Inherently dated,1197040654 +160003,54732,Christopher Walken,1202831758 +160003,54732,Disappointing,1202831771 +160003,96588,funny and interesting characters,1355959032 +160003,96588,music,1355959036 +160003,96588,too predictable,1355959019 +160027,260,action,1442154101 +160027,260,Cool,1442154111 +160029,260,classic sci-fi,1436032598 +160029,260,family,1436032613 +160038,57368,"""found footage""",1440805702 +160038,57368,shaky camera,1440805705 +160038,57368,shallow,1440805696 +160038,57368,unsteady-cam,1440805714 +160038,71535,dark comedy,1442195220 +160038,71535,Emma Stone,1442195230 +160038,71535,funny,1442195223 +160038,71535,post-apocalyptic,1442195216 +160038,71535,Woody Harrelson,1442195226 +160038,92420,shaky camera,1440805660 +160038,92420,supernatural powers,1440805643 +160038,115713,artificial intelligence,1440866085 +160038,115713,sci-fi,1440866087 +160038,115713,thought provoking,1440866092 +160038,115713,turing test,1440866109 +160038,135137,adam sandler,1440809335 +160060,6754,vampires,1240554616 +160060,6754,werewolf,1240554622 +160060,43560,comedy,1240554639 +160060,43560,magic,1240554634 +160060,49647,based on a book,1240554652 +160060,60816,based on a book,1240554729 +160093,50,kevin spacey is soze,1153724305 +160093,920,racist,1415746409 +160093,2161,Can't remember,1156195251 +160093,2502,cult movie,1153680788 +160093,26131,In Netflix queue,1155246187 +160093,27410,#1 prediction,1159057778 +160093,46578,Exceptional Acting,1154122020 +160097,72982,Dave,1438722608 +160097,116823,Dave,1438723826 +160122,527,World War II,1164502937 +160175,5782,action,1246144586 +160175,27073,Heath Ledger,1246145055 +160175,55067,Christianity,1246145151 +160183,1271,awful death,1204492417 +160183,1271,lesbians hiding their identities,1204492390 +160183,1271,old lady telling a heartwarming story,1204492535 +160183,2825,mental hospital,1204491600 +160183,2840,similar to sheitan,1204491655 +160183,3949,drugs,1197665659 +160183,4621,prime time stupid family movie,1204492268 +160183,7361,brilliant plot and characters,1197665897 +160183,45503,karate kid,1197665680 +160183,45503,ridiculously spiritual,1204491902 +160183,45503,stupid,1204491928 +160183,50872,top funniest animation,1197667650 +160183,51174,andy warhol,1204491360 +160183,51174,Biography,1204491342 +160183,51174,pop art,1204491438 +160183,51174,the velvet underground,1204491453 +160183,55555,crossed lifes,1204490723 +160183,55555,death,1204490698 +160183,55555,fatih akin,1204490659 +160183,55555,lesbian character,1204490682 +160183,55555,prison,1204491006 +160183,55555,turkish music,1204490755 +160184,260,birth of great scifi ideas,1433496727 +160195,2117,dystopia,1415913878 +160195,77455,consumerism,1418559014 +160195,77455,social commentary,1418559024 +160195,85414,intelligent,1418559064 +160195,85414,mindfuck,1418559051 +160195,85414,science fiction,1418559066 +160195,93721,Japan,1418574614 +160195,93721,Tokyo,1418574618 +160236,3703,action,1432308664 +160236,3703,desert,1432308674 +160236,3703,Dieselpunk,1432308755 +160236,3703,Mel Gibson,1432308659 +160236,3703,Post apocalyptic,1432308686 +160236,3703,post-apocalyptic,1432308656 +160236,44191,dystopia,1432308622 +160236,44191,thought-provoking,1432308624 +160236,106473,animation,1432309088 +160236,106473,anime,1432309076 +160236,106473,based on a TV show,1432309085 +160236,106473,fantasy world,1432309090 +160238,260,George Lucas,1436257674 +160238,260,good vs evil,1436257690 +160238,260,Harrison Ford,1436257666 +160238,260,Mark Hamill,1436257656 +160238,260,sci-fi,1436257648 +160238,356,biography,1436264482 +160238,356,steven spielberg,1436264482 +160238,356,tom hanks,1436264482 +160238,2109,Bernadette peters,1436267326 +160238,2109,Slapstick,1436267301 +160238,2745,jesuits,1442319168 +160238,6541,comic book,1436267125 +160238,6541,Nazis,1436267161 +160238,6541,superhero,1436267107 +160238,6936,bob newhart,1436264362 +160238,6936,comedy,1436264309 +160238,6936,James Caan,1436264322 +160238,6936,silly,1436264311 +160238,6936,Will Ferrell,1436264303 +160238,55118,dark hero,1436268266 +160238,55118,fight scene,1436268238 +160238,55118,organized crime,1436268245 +160238,55118,Russian mafia,1436268256 +160238,55118,Viggo Mortensen,1436268227 +160238,55118,violence,1436268234 +160238,69481,addiction,1436264222 +160238,69481,anti-hero,1436264226 +160238,69481,best war films,1436264232 +160238,69481,Flashbacks,1436264203 +160238,69481,intense,1436264213 +160238,69481,realism,1436264185 +160238,69481,war,1436264173 +160238,85414,parallel universe,1436267690 +160238,85414,science fiction,1436267692 +160238,85414,time loop,1436267701 +160238,85414,time travel,1436267718 +160276,741,anime,1445727280 +160276,741,Japan,1445727271 +160291,260,EPIC,1431659248 +160291,260,space opera,1431659228 +160297,260,classic,1438843564 +160297,260,good vs evil,1438843583 +160297,260,great soundtrack,1438843593 +160297,260,space adventure,1438843536 +160297,96821,coming of age,1449823699 +160300,2502,tps,1138426638 +160300,4226,memory,1138425978 +160300,4226,nonlinear,1138425978 +160300,4226,tattoo,1138425978 +160300,32587,castration,1138426066 +160300,35836,nerds,1138426679 +160300,40278,iraq,1138425898 +160300,41997,israel,1138425945 +160300,41997,palestine,1138425954 +160304,361,comedy,1189478932 +160304,413,hostage,1189478866 +160304,546,video game,1189479003 +160304,671,commentary,1189478703 +160304,707,Mindfuck,1189478909 +160304,954,political,1189478982 +160304,1245,coen,1189478987 +160304,1438,natural disaster,1189478842 +160304,1590,horror,1189478832 +160304,1717,self-aware,1189478690 +160304,1779,based on book,1189478915 +160304,1883,political,1189478747 +160304,2125,Fairy tale,1189478972 +160304,2423,christmas,1189478954 +160304,2428,remake,1189478963 +160304,2478,comedy,1189478780 +160304,2485,remake,1189479003 +160304,2953,Christmas,1189478820 +160304,3273,self-aware,1189478908 +160304,3608,Burton,1189478995 +160304,3826,B-Movie,1189478422 +160304,3916,Sports,1189478467 +160304,4270,Sequel,1189478455 +160304,4367,video game,1189478820 +160304,4975,Mindfuck,1189478490 +160304,6218,sports,1189478752 +160304,6373,supernatural,1189478886 +160304,6870,based on book,1189478829 +160304,8622,propaganda,1189478395 +160304,8798,revenge,1189478892 +160307,52583,drama,1423623837 +160307,52583,romance,1423623837 +160307,52583,tragedy,1423623837 +160307,108983,childishness,1425007655 +160307,108983,clever,1425007655 +160307,108983,inspiring,1425007655 +160315,2718,mockumentary,1313629996 +160317,158,romance boygirl dancing,1315151760 +160317,1027,adventure,1315150995 +160317,1027,romance,1315150995 +160317,2193,adventure,1315150961 +160317,2193,magic,1315150961 +160317,2193,romance,1315150961 +160317,4219,romance,1315151850 +160317,4370,beautiful,1315151706 +160317,4370,crying,1315151706 +160317,6539,adventure,1315150445 +160317,6539,fantasy,1315150445 +160317,6539,romance,1315150445 +160317,6539,stereotypes,1315150445 +160317,6947,acting,1315151990 +160317,6947,history,1315151990 +160317,6947,scored,1315152006 +160317,7164,fantasy,1315149927 +160317,7164,romance,1315149927 +160317,8808,romance,1315152097 +160317,8808,singing,1315152109 +160317,37830,romance,1315149952 +160317,74508,romance,1315149810 +160326,260,classic,1436409576 +160326,260,must see,1436409596 +160338,6,realistic action,1368472057 +160338,44,fighting,1368472284 +160338,47,surprise ending,1368472355 +160338,50,caper,1245605657 +160338,50,con men,1368472269 +160338,50,heist,1245605652 +160338,50,mindfuck,1245605637 +160338,50,surprise ending,1368472356 +160338,50,suspense,1245605642 +160338,50,twist ending,1245605644 +160338,74,chick flick,1368472307 +160338,95,action packed,1368471992 +160338,107,treasure,1368472035 +160338,204,action,1368472339 +160338,252,chick flick,1368472307 +160338,260,wizards,1368472323 +160338,317,holiday,1368472387 +160338,368,con men,1368472269 +160338,377,action packed,1368471992 +160338,377,suspense,1368472210 +160338,380,arnold,1368472019 +160338,434,action packed,1368471992 +160338,480,big budget,1368472253 +160338,485,arnold,1368472019 +160338,514,holiday,1368472387 +160338,527,afi100,1138675532 +160338,539,happy ending,1368472091 +160338,586,holiday,1368472387 +160338,589,arnold,1368472019 +160338,592,super hero,1368472072 +160338,595,fairy tales,1368472121 +160338,597,happy ending,1368472091 +160338,628,surprise ending,1368472355 +160338,733,action packed,1368471992 +160338,736,big budget,1368472253 +160338,780,big budget,1368472252 +160338,858,afi100,1138675416 +160338,899,afi100,1138675553 +160338,912,afi100,1138675394 +160338,919,afi100,1138675480 +160338,919,wizards,1368472323 +160338,920,afi100,1138675435 +160338,923,afi100,1138675366 +160338,1036,action packed,1368471992 +160338,1179,con men,1368472269 +160338,1197,fairy tale,1245605690 +160338,1197,quirky,1245605698 +160338,1197,romance,1245605724 +160338,1197,swashbuckler,1245605720 +160338,1197,whimsical,1245605702 +160338,1198,adventure,1266778362 +160338,1198,archaeology,1266778359 +160338,1204,afi100,1138675459 +160338,1219,suspense,1368472210 +160338,1240,arnold,1368472019 +160338,1247,afi100,1138675495 +160338,1252,complicated,1368472366 +160338,1291,treasure,1368472035 +160338,1333,suspense,1368472210 +160338,1407,suspense,1368472210 +160338,1552,action,1368472339 +160338,1569,happy ending,1368472091 +160338,1591,super hero,1368472073 +160338,1608,action,1368472339 +160338,1617,complicated,1368472366 +160338,1625,complicated,1368472366 +160338,1625,surprise ending,1368472355 +160338,1682,modern fantasy,1368472237 +160338,1722,action,1368472339 +160338,1917,action packed,1368471992 +160338,1945,afi100,1138675513 +160338,1954,fighting,1368472285 +160338,1994,suspense,1368472209 +160338,2081,happy ending,1368472091 +160338,2115,treasure,1368472034 +160338,2125,girlie movie,1368472296 +160338,2140,wizards,1368472323 +160338,2161,fantasy world,1368472378 +160338,2167,action,1368472339 +160338,2193,fantasy world,1368472378 +160338,2193,wizards,1368472323 +160338,2404,fighting,1368472285 +160338,2405,treasure,1368472034 +160338,2410,fighting,1368472284 +160338,2485,girlie movie,1368472296 +160338,2542,con men,1368472269 +160338,2572,girlie movie,1368472296 +160338,2617,big budget,1368472252 +160338,2617,treasure,1368472034 +160338,2640,super hero,1368472073 +160338,2671,happy ending,1368472091 +160338,2723,super hero,1368472073 +160338,2724,happy ending,1368472091 +160338,2804,Christmas,1260244043 +160338,2804,holiday,1368472387 +160338,2916,arnold,1368472019 +160338,2968,fantasy world,1368472378 +160338,2997,modern fantasy,1368472237 +160338,3087,holiday,1368472387 +160338,3825,girlie movie,1368472296 +160338,3882,girlie movie,1368472296 +160338,3986,action,1368472339 +160338,3988,holiday,1368472387 +160338,3994,surprise ending,1368472356 +160338,4011,complicated,1368472366 +160338,4018,chick flick,1368472307 +160338,4069,chick flick,1368472307 +160338,4823,chick flick,1368472307 +160338,4878,complicated,1368472366 +160338,4896,fantasy world,1368472378 +160338,4963,con men,1368472269 +160338,5010,realistic action,1368472057 +160338,5349,big budget,1368472253 +160338,5618,fantasy world,1368472378 +160338,5952,wizards,1368472323 +160338,5989,con men,1368472269 +160338,6155,girlie movie,1368472296 +160338,6333,big budget,1368472253 +160338,6539,treasure,1368472035 +160338,7153,wizards,1368472323 +160338,7361,complicated,1368472366 +160338,8132,fighting,1368472285 +160338,8360,fairy tales,1368472121 +160338,8368,fantasy world,1368472378 +160338,26662,Miyazaki,1138667537 +160338,31685,chick flick,1368472307 +160338,33794,super hero,1368472073 +160338,34405,action,1138667475 +160338,34405,quirky,1138667475 +160338,34405,scifi,1138667475 +160338,34405,western,1138667485 +160338,45499,super hero,1368472072 +160338,48780,surprise ending,1368472356 +160338,68954,adventure,1245605752 +160338,68954,happy ending,1245605764 +160338,68954,Pixar,1245605758 +160348,4995,reality or imagination?,1137845784 +160348,8983,spectacular action scenes,1137844853 +160371,539,annoying kid,1300622740 +160371,539,chick flick,1300622736 +160371,1036,action,1283783379 +160371,1036,always watch it when it's on tv,1283783372 +160371,1036,breaking glass,1283783392 +160371,1036,Bruce Willis,1283783369 +160371,1036,humorous,1283783386 +160371,2572,chick flick,1279749131 +160371,2572,guilty pleasure,1279749126 +160371,2572,Heath Ledger,1279749120 +160371,2572,Julia Stiles,1279749116 +160371,5418,action,1280084338 +160371,5418,based on a book,1280095723 +160371,5418,car chase,1280095719 +160371,5418,Matt Damon,1280084334 +160371,5418,Robert Ludlum,1280095714 +160371,6155,Good Romantic Comedies,1279749080 +160371,6155,Kate Hudson,1279749072 +160371,6711,complex characters,1311455854 +160371,6711,intelligent,1311455880 +160371,6711,relationships,1311455877 +160371,6711,Scarlett Johansson,1311455869 +160371,7346,Elisha Cuthbert,1311513995 +160371,43904,Jill the Babysitter,1279880863 +160371,68923,Shannyn Sossamon,1280357246 +160371,69757,chick flick,1311456361 +160371,69757,quirky,1311456357 +160371,69757,Zooey Deschanel,1311456403 +160371,80549,Emma Stone,1291482349 +160371,80549,Stanley Tucci,1291482355 +160375,260,classic sci-fi,1436111460 +160375,260,space adventure,1436111469 +160375,116797,computer,1437639574 +160375,116797,drama,1437639574 +160375,116797,romance,1437639574 +160392,260,Science Fiction,1431552926 +160392,260,scifi cult,1431552935 +160402,74795,boring,1337338731 +160402,85414,Jake Gyllenhaal,1390471713 +160402,85414,powerful ending,1390471721 +160402,85414,twist ending,1390471736 +160402,104374,bad plot,1390471630 +160402,104374,Bill Nighy,1390471595 +160402,104374,charming,1390471581 +160402,104374,time travel,1390471588 +160402,104374,touching,1390471585 +160408,2571,sci-fi,1449258892 +160408,2571,virtual reality,1449258876 +160408,6662,Blake Edwards,1449438608 +160421,47,biblical,1243645994 +160421,47,Brad Pitt,1243645976 +160421,47,Morgan Freeman,1243645978 +160421,47,serial killer,1243645989 +160421,47,twist ending,1243645982 +160421,47,twists & turns,1243645983 +160421,50,Benicio Del Toro,1249955474 +160421,50,complicated,1249955484 +160421,50,great ending,1249955489 +160421,50,Kevin Spacey,1249955381 +160421,50,twist ending,1249955386 +160421,296,multiple storylines,1248220905 +160421,296,Quentin Tarantino,1248220886 +160421,296,Samuel L. Jackson,1248220888 +160421,750,black comedy,1288544587 +160421,750,dark comedy,1288544590 +160421,750,Stanley Kubrick,1288544593 +160421,1089,nonlinear,1248220935 +160421,1089,Quentin Tarantino,1243646223 +160421,1206,Stanley Kubrick,1288544633 +160421,1213,Martin Scorsese,1243646285 +160421,1213,Robert De Niro,1243646281 +160421,1221,Al Pacino,1262229512 +160421,1222,Stanley Kubrick,1250277689 +160421,1407,funny,1304282786 +160421,1407,Neve Campbell,1304282788 +160421,1617,conspiracy,1306078692 +160421,1617,film noir,1306078708 +160421,1799,black comedy,1306626437 +160421,1799,Christopher Walken,1306626436 +160421,1799,mafia,1306626439 +160421,2329,Edward Norton,1243646065 +160421,2918,comedy,1293156350 +160421,2918,High School,1293156356 +160421,2959,based on a book,1243646117 +160421,2959,Brad Pitt,1243646101 +160421,2959,Edward Norton,1243646108 +160421,2959,philosophy,1243646124 +160421,2959,social commentary,1243646123 +160421,3897,music,1293552181 +160421,3897,rock and roll,1293552182 +160421,3897,Zooey Deschanel,1293552177 +160421,4226,nonlinear,1282313137 +160421,4226,psychology,1282313140 +160421,4226,twist ending,1282313141 +160421,4776,denzel washington,1293316505 +160421,4776,police corruption,1293316503 +160421,4878,satirical,1247521350 +160421,4878,thought-provoking,1247521328 +160421,5959,gritty,1293475638 +160421,6863,Jack Black,1293156400 +160421,6863,rock and roll,1293156402 +160421,8950,Christian Bale,1282313098 +160421,8950,twist ending,1282313097 +160421,36529,arms dealer,1303867953 +160421,36529,dark comedy,1303867954 +160421,36529,political,1303867952 +160421,40583,complicated,1293238629 +160421,40583,Matt Damon,1293238625 +160421,44199,bank robbery,1293316657 +160421,44199,Clive Owen,1293316655 +160421,44199,Denzel Washington,1293316650 +160421,44199,twist ending,1293316645 +160421,44974,Ellen Page,1293414782 +160421,48516,Jack Nicholson,1243646189 +160421,48516,Leonardo DiCaprio,1243646200 +160421,48516,Martin Scorsese,1243646191 +160421,48516,Matt Damon,1243646198 +160421,48516,organized crime,1243646202 +160421,48516,police corruption,1243646194 +160421,49822,Matt Damon,1293238753 +160421,51540,David Fincher,1292893247 +160421,51540,Robert Downey Jr.,1292893001 +160421,51540,serial killer,1292893021 +160421,54281,high school,1293837772 +160421,54281,Robert Downey Jr.,1293837769 +160421,55276,corporate espionage,1292544929 +160421,55276,George Clooney,1292544920 +160421,55276,Slow pacing,1293238477 +160421,59016,Hugh Laurie,1293316621 +160421,59016,Keanu Reeves,1293316623 +160421,61024,James Franco,1293156461 +160421,61024,Seth Rogen,1293156463 +160421,63859,John Travolta,1242090667 +160421,67197,Bad direction,1250528497 +160421,67197,Nicolas Cage,1250528497 +160421,67197,plot holes,1250528497 +160421,67197,pseduscience,1250528491 +160421,67408,Dreamworks,1241140869 +160421,67408,Hugh Laurie,1241140857 +160421,67408,Kiefer Sutherland,1241140859 +160421,67408,Seth Rogen,1241140846 +160421,67408,Will Arnett,1241140853 +160421,68157,Brad Pitt,1262229476 +160421,68157,Quentin Tarantino,1262229468 +160421,68157,tension,1262229470 +160421,68319,comic book,1241964888 +160421,68319,too many characters,1241964902 +160421,68358,jj abrams,1242090702 +160421,68358,sci fi,1242090705 +160421,68791,Christian Bale,1243639325 +160421,68791,franchise,1243639322 +160421,69122,comedy,1247937031 +160421,69481,Iraq,1247618829 +160421,69481,realistic,1247618831 +160421,70286,intelligent sci-fi,1250824394 +160421,70286,Special Effects,1250824397 +160421,70862,Jack White,1262229442 +160421,70862,Jimmy Page,1262229439 +160421,71464,coen brothers,1293062062 +160421,71464,dark comedy,1293062070 +160421,71464,Jewish,1293062065 +160421,71464,slow,1293062086 +160421,73017,Guy Ritchie,1262229404 +160421,73017,Rachel McAdams,1262229408 +160421,73017,Robert Downey Jr.,1262229406 +160421,74458,Leonardo DiCaprio,1282313059 +160421,74458,Predictable,1282313062 +160421,74795,conspiracy,1282615198 +160421,74795,Matt Damon,1282615204 +160421,77561,audience intelligence underestimated,1279312955 +160421,77561,Bad direction,1279312958 +160421,77561,Robert Downey Jr.,1279312947 +160421,77561,Scarlett Johansson,1279312950 +160421,79132,Nolan,1282250486 +160421,80463,Andrew Garfield,1292193741 +160421,80489,Direction,1293238161 +160421,80549,Emma Stone,1290996296 +160421,80549,funny dialogues,1290996300 +160421,80549,high school,1290996302 +160421,80549,sexuality,1290996295 +160421,81932,Amy Adams,1305511760 +160421,81932,Christian Bale,1305511767 +160423,10,007,1244381912 +160423,10,action,1244381910 +160423,10,James Bond,1244381895 +160423,10,Pierce Brosnan,1244381901 +160423,70,cult film,1244383206 +160423,70,Quentin Tarantino,1244383201 +160423,329,Sci-Fi,1244369146 +160423,329,Star Trek,1244369150 +160423,367,Jim Carrey,1244381834 +160423,373,Dennis Hopper,1260307142 +160423,373,Nicolas Cage,1260307144 +160423,423,Jeff Bridges,1264974902 +160423,423,Tommy Lee Jones,1264974899 +160423,539,Meg Ryan,1244382083 +160423,539,Tom Hanks,1244382085 +160423,548,Charlie Sheen,1246913929 +160423,808,Alaska,1259525432 +160423,1080,British,1244382584 +160423,1080,Monty Python,1244382575 +160423,1080,satire,1244382577 +160423,1092,Erotic,1248164524 +160423,1092,Michael Douglas,1248164493 +160423,1092,San Francisco,1248164515 +160423,1092,Sharon Stone,1248164489 +160423,1220,comedy,1244382556 +160423,1220,music,1244382534 +160423,1220,notable soundtrack,1244382562 +160423,1220,rhythm & blues,1244382540 +160423,1220,road movie,1244382537 +160423,1261,Bruce Campbell,1244384008 +160423,1261,dark humor,1244384020 +160423,1261,splatter,1244384014 +160423,1261,zombies,1244384012 +160423,1356,Borg,1244369304 +160423,1356,sci-fi,1244369288 +160423,1356,Star Trek,1244369280 +160423,1372,Star Trek,1244369252 +160423,1372,William Shatner,1244369241 +160423,1374,Leonard Nimoy,1244369187 +160423,1374,Science Fiction,1244369179 +160423,1374,Star Trek,1244369173 +160423,1374,William Shatner,1244369176 +160423,1375,Leonard Nimoy,1244369498 +160423,1375,Star Trek,1244369492 +160423,1375,William Shatner,1244369494 +160423,1376,Star Trek,1244369211 +160423,1376,William Shatner,1244369220 +160423,1391,Jack Nicholson,1244382708 +160423,1391,stupid,1244382715 +160423,1391,two hours of suck,1244382722 +160423,1396,Ben Kingsley,1255869414 +160423,1396,Dan Aykroyd,1255869399 +160423,1396,hacking,1255869386 +160423,1396,Robert Redford,1255869393 +160423,1396,spying,1255869395 +160423,1682,Jim Carrey,1244382362 +160423,2174,cult film,1244382473 +160423,2617,Brendan Fraser,1244382781 +160423,2617,stupid,1244382794 +160423,2628,Ewan McGregor,1244382055 +160423,2628,George Lucas,1244382019 +160423,2628,Jar Jar Binks,1244382004 +160423,2628,Natalie Portman,1244382022 +160423,2628,Samuel L. Jackson,1244382025 +160423,2628,sci-fi,1244381989 +160423,2628,space,1244381999 +160423,2628,Star Wars,1244381995 +160423,2959,atmospheric,1244381949 +160423,2959,Edward Norton,1244381931 +160423,2959,philosophy,1244381953 +160423,2959,psychology,1244381956 +160423,2959,twist ending,1244381939 +160423,2959,violence,1244381960 +160423,3033,Mel Brooks,1244383363 +160423,3033,parody,1244383365 +160423,3033,space,1244383369 +160423,3101,Michael Douglas,1249927329 +160423,3175,parody,1244369449 +160423,3175,Sigourney Weaver,1244369456 +160423,3175,Star Trek,1244369443 +160423,3175,Tony Shalhoub,1244369477 +160423,3198,prison,1244385600 +160423,3198,prison escape,1244385602 +160423,3702,car chase,1244383767 +160423,3702,Mel Gibson,1244383751 +160423,3702,post apocalyptic,1244383756 +160423,3702,post-apocalyptic,1244383757 +160423,4105,Bruce Campbell,1244384042 +160423,4105,cult film,1244384055 +160423,4105,dark humor,1244384045 +160423,4105,zombies,1244384048 +160423,5502,Mel Gibson,1244383570 +160423,5502,sci-fi,1244383575 +160423,5903,Christian Bale,1244385447 +160423,5944,Star Trek,1244369513 +160423,6219,Tommy Lee Jones,1267828994 +160423,6322,con artists,1285887151 +160423,6322,plot twist,1285887144 +160423,6322,twist ending,1285887138 +160423,6323,John Cusack,1244385476 +160423,6323,twist ending,1244385469 +160423,6863,Jack Black,1244383900 +160423,6863,music,1244383914 +160423,6863,rock and roll,1244383912 +160423,6947,Russell Crowe,1244384810 +160423,8528,Ben Stiller,1244385415 +160423,8528,Vince Vaughn,1244385412 +160423,8640,Clive Owen,1249829332 +160423,8640,Keira Knightley,1249829343 +160423,8666,Beautiful Woman,1244368709 +160423,8666,DC Comics,1244368701 +160423,8666,Halle Berry,1244368679 +160423,8666,super-hero,1244368688 +160423,31892,Jean-Claude Van Damme,1245008794 +160423,33794,batman,1244383268 +160423,33794,Christian Bale,1244383260 +160423,44199,Clive Owen,1255869449 +160423,44199,Denzel Washington,1255869461 +160423,44199,Jodie Foster,1255869466 +160423,44199,twist ending,1255869470 +160423,48780,atmospheric,1244384931 +160423,48780,Christian Bale,1244384926 +160423,48780,Hugh Jackman,1244384913 +160423,48780,Michael Caine,1244384916 +160423,48780,nonlinear,1244384918 +160423,48780,Scarlett Johansson,1244384935 +160423,48780,twist ending,1244384921 +160423,52973,overrated,1265588743 +160423,53993,Christianity,1270369386 +160423,53993,John Goodman,1270369403 +160423,53993,Morgan Freeman,1270369400 +160423,55276,corporate espionage,1244673388 +160423,55276,George Clooney,1244673378 +160423,55276,lawyers,1244673402 +160423,58559,Batman,1244368797 +160423,58559,Christian Bale,1244368777 +160423,58559,Heath Ledger,1244368783 +160423,58559,Morgan Freeman,1244368802 +160423,58559,superhero,1244368811 +160423,60040,Edward Norton,1264197240 +160423,60753,prison,1267708445 +160423,60753,Val Kilmer,1267708442 +160423,63131,Paul Rudd,1267316648 +160423,66808,Til Schweiger,1244581618 +160423,66808,Uwe Boll,1244581615 +160423,68358,alternate reality,1244368989 +160423,68358,big budget,1244369032 +160423,68358,future,1244368983 +160423,68358,plot twist,1244369047 +160423,68358,realistic,1244369022 +160423,68358,space,1244368974 +160423,68358,Star Trek,1244368959 +160449,260,awesome,1438692010 +160449,260,future fantasy,1438692042 +160449,260,science fantasy,1438692004 +160450,260,fantasy,1441061775 +160450,260,Science Fiction,1441061761 +160457,1,Pixar,1387079572 +160457,1,witty,1387079576 +160457,107,muppets,1390273250 +160457,107,Tim Curry,1390273247 +160457,110,gore,1387328505 +160457,110,masturbatory garbage,1387328515 +160457,110,Mel Gibson,1387328278 +160457,111,loneliness,1395878777 +160457,111,Martin Scorsese,1395878799 +160457,111,Robert De Niro,1395878771 +160457,318,classic,1387079590 +160457,318,imdb top 250,1387079588 +160457,318,Morgan Freeman,1387079586 +160457,318,Stephen King,1387079584 +160457,318,thought-provoking,1387079592 +160457,353,gothic,1405752290 +160457,353,great soundtrack,1405752299 +160457,353,rock and roll,1405752325 +160457,353,vengeance,1405752377 +160457,364,animation,1399217882 +160457,364,Childhood,1399217899 +160457,364,Disney,1399217877 +160457,364,lions,1399217887 +160457,364,Oscar (Best Music - Original Song),1399217884 +160457,480,CGI,1418168244 +160457,480,Jeff Goldblum,1418168247 +160457,500,gender disguise,1390263502 +160457,500,Robin Williams,1390263468 +160457,587,Whoopi Goldberg,1425324848 +160457,589,apocalypse,1418496801 +160457,589,arnold,1418496826 +160457,589,Arnold Schwarzenegger,1418496815 +160457,589,artificial intelligence,1418496774 +160457,589,assassin,1418496812 +160457,589,Child Actors,1418496767 +160457,589,Oscar (Best Effects - Visual Effects),1418500800 +160457,589,sci-fi,1418496784 +160457,589,stylized,1418500807 +160457,608,CRIME GONE AWRY,1418680718 +160457,608,funny,1418680700 +160457,608,Minnesota,1418680691 +160457,608,Steve Buscemi,1418680699 +160457,902,Audrey Hepburn,1391284755 +160457,902,classic,1391284757 +160457,902,racist humor,1391284767 +160457,904,Alfred Hitchcock,1391647893 +160457,904,James Stewart,1391647891 +160457,904,suspense,1391647901 +160457,914,over-the-top,1387068212 +160457,922,irreverent,1408419309 +160457,922,predictable,1408419285 +160457,922,stylized,1408419303 +160457,1088,cheesy,1425325591 +160457,1088,Dancing,1425325585 +160457,1089,nonlinear,1400992479 +160457,1089,organized crime,1400992483 +160457,1089,stylized,1400992488 +160457,1097,children,1400289561 +160457,1097,sci-fi,1400289568 +160457,1097,Steven Spielberg,1400289558 +160457,1197,based on a book,1387079650 +160457,1197,Cult classic,1387079620 +160457,1197,imdb top 250,1387079623 +160457,1197,quirky,1387079622 +160457,1197,sword fight,1387079625 +160457,1197,witty,1387079646 +160457,1200,Alien,1417416241 +160457,1200,aliens,1417416219 +160457,1200,atmospheric,1417416238 +160457,1200,horror,1417416230 +160457,1200,monster,1417416228 +160457,1200,sci-fi,1417416234 +160457,1200,tense,1417416244 +160457,1209,atmospheric,1404591250 +160457,1209,stylized,1404591252 +160457,1214,futuristic,1417223230 +160457,1214,Oscar (Best Effects - Visual Effects),1417223226 +160457,1214,sci-fi,1417223215 +160457,1214,space,1417223232 +160457,1214,tense,1417223273 +160457,1217,Akira Kurosawa,1418162042 +160457,1217,samurai,1418162039 +160457,1219,Alfred Hitchcock,1391038355 +160457,1219,creepy,1391038351 +160457,1219,great cinematography,1391038364 +160457,1219,suspenseful,1391038346 +160457,1219,tense,1391038348 +160457,1235,Cat Stevens,1378256283 +160457,1235,dark comedy,1378256263 +160457,1235,humorous,1378256268 +160457,1259,1950s,1399500115 +160457,1259,1960s,1399500113 +160457,1259,childhood,1399500097 +160457,1259,good acting,1399500144 +160457,1259,poignant,1399500099 +160457,1285,dark comedy,1399500299 +160457,1285,Winona Ryder,1399500301 +160457,1304,friendship,1393872708 +160457,1304,great acting,1393872705 +160457,1304,imdb top 250,1393872706 +160457,1304,Paul Newman,1393872698 +160457,1304,western,1393872702 +160457,1441,Johnny Depp,1383785325 +160457,1441,Quirky,1383785321 +160457,1441,whimsical,1383785327 +160457,1566,wrong,1399218032 +160457,1610,Sean Connery,1390284937 +160457,1610,submarine,1390284939 +160457,1639,Kevin Smith,1441074039 +160457,1653,dystopia,1395325209 +160457,1653,powerful ending,1395325195 +160457,1653,sci-fi,1395325213 +160457,1907,China,1399217955 +160457,1907,Disney,1399217940 +160457,1907,great soundtrack,1399217949 +160457,1907,strong female lead,1399217947 +160457,2000,80's,1418167857 +160457,2000,action,1418167815 +160457,2000,Buddy movie,1418167829 +160457,2000,Los Angeles,1418167971 +160457,2000,suffering protagonist,1418167902 +160457,2000,Verbal Byplay,1418167989 +160457,2019,Akira Kurosawa,1387079599 +160457,2019,epic,1387079607 +160457,2019,imdb top 250,1387079612 +160457,2019,toshiro mifune,1387079602 +160457,2028,gritty,1405925927 +160457,2028,Oscar (Best Cinematography),1405925939 +160457,2028,Tom Hanks,1405925913 +160457,2119,hate watch,1425065885 +160457,2174,cult film,1400290519 +160457,2174,Tim Burton,1400290517 +160457,2395,Bill Murray,1402370640 +160457,2395,clever,1402370668 +160457,2395,off-beat comedy,1402370643 +160457,2395,Wes Anderson,1402370641 +160457,2420,classic,1379293826 +160457,2420,Feel Good,1418168195 +160457,2420,martial arts,1379293820 +160457,2420,mentor,1418168152 +160457,2420,Pat Morita,1379293818 +160457,2420,Underdog,1418168175 +160457,2502,cult film,1378256407 +160457,2502,hilarious,1378256409 +160457,2502,off-beat comedy,1378256404 +160457,2502,workplace,1378256401 +160457,2567,boring lead,1392856643 +160457,2567,celebrity,1392856633 +160457,2567,see also:The Truman Show,1392856624 +160457,2599,black comedy,1422137706 +160457,2599,Matthew Broderick,1422137712 +160457,2657,awesome soundtrack,1395797827 +160457,2657,bad script,1395797868 +160457,2657,bisexual,1395797850 +160457,2657,campy,1379642946 +160457,2657,cult film,1379642928 +160457,2657,queer,1395797849 +160457,2657,Quirky,1379642930 +160457,2657,shadow cast,1379642940 +160457,2657,Tim Curry,1395797929 +160457,2657,transgender,1395797847 +160457,2687,Disney,1399217985 +160457,2687,Phil Collins,1399217977 +160457,2712,atmospheric,1393463028 +160457,2712,notable soundtrack,1393463022 +160457,2712,Stanley Kubrick,1393463011 +160457,2712,Tom Cruise,1393463014 +160457,2791,Parody,1437939761 +160457,2905,Akira Kurosawa,1385026459 +160457,2915,1980s,1418266123 +160457,2915,prostitution,1418266116 +160457,2916,arnold,1417204587 +160457,2916,Arnold Schwarzenegger,1417204480 +160457,2916,conspiracy,1417204719 +160457,2916,memory,1417204618 +160457,2916,mutants,1417204520 +160457,2916,Philip K. Dick,1417204484 +160457,2916,science fiction,1417204492 +160457,2921,Clint Eastwood,1380086046 +160457,2987,animation & live action interact,1395088346 +160457,2987,Christopher Lloyd,1395088446 +160457,3030,Akira Kurosawa,1400540388 +160457,3030,black comedy,1400540396 +160457,3030,Over the top,1400540392 +160457,3030,Toshiro Mifune,1400540386 +160457,3114,abandonment,1387079551 +160457,3114,imdb top 250,1387079538 +160457,3114,Pixar,1387079536 +160457,3114,sequel,1387079542 +160457,3147,emotional,1405061347 +160457,3147,great acting,1405061349 +160457,3147,prison,1405061801 +160457,3147,sad ending,1405061460 +160457,3147,Stephen King,1405061343 +160457,3448,AFI 100 (Laughs),1408075341 +160457,3448,Forest Whitaker,1408074880 +160457,3448,music:rock and roll (1960s),1408074886 +160457,3448,Robin Williams,1408074878 +160457,3481,based on a book,1413215838 +160457,3481,breaking the fourth wall,1413215862 +160457,3481,Jack Black,1413215842 +160457,3481,music,1413215832 +160457,3949,cinematography,1390367197 +160457,3949,dark,1390367186 +160457,3949,disturbing,1390367191 +160457,3996,beautifully filmed,1378495874 +160457,3996,Kung Fu,1378495872 +160457,3996,martial arts,1378495876 +160457,3996,Oscar (Best Music - Original Score),1378495885 +160457,4329,western,1379202670 +160457,4638,unnecessary sequel,1417198984 +160457,4886,Comedy,1378255807 +160457,4886,cute,1378255810 +160457,4886,Pixar,1378255799 +160457,4979,Ben Stiller,1395863236 +160457,4979,Bill Murray,1395863229 +160457,4979,black comedy,1395863234 +160457,4979,great soundtrack,1395863232 +160457,4979,Owen Wilson,1395863240 +160457,5445,future,1418681127 +160457,5445,Philip K. Dick,1418890327 +160457,5445,police corruption,1418890347 +160457,5445,sci-fi,1418681130 +160457,5445,time loop,1418890324 +160457,5445,Tom Cruise,1418890338 +160457,6058,bad acting,1400266792 +160457,6058,writing,1400266811 +160457,6618,absurdist,1422762159 +160457,6618,kung fu,1422762166 +160457,6863,elementary school,1400289504 +160457,6863,for kids,1413216038 +160457,6863,Jack Black,1400289499 +160457,6863,Overrated,1413216029 +160457,6970,computers,1389847752 +160457,6970,information retrieval,1389847758 +160457,6970,Katharine Hepburn,1389847742 +160457,6979,artificial intelligence,1400290346 +160457,7022,brutal,1380393550 +160457,7022,martial arts,1380393534 +160457,7022,satire,1380393561 +160457,7022,social commentary,1380393553 +160457,7157,clever,1418160902 +160457,7157,Judaism,1418160888 +160457,7157,parody,1418160892 +160457,7361,bittersweet,1386571299 +160457,7361,dreamlike,1386571307 +160457,7361,Jim Carrey,1386571286 +160457,7361,nonlinear,1386571291 +160457,7361,philosophy,1386571318 +160457,7361,thought-provoking,1386571296 +160457,7419,BDSM,1388205954 +160457,7419,insane,1388205948 +160457,7419,Nudity (Topless),1388205941 +160457,7560,Frightening,1390846179 +160457,7560,rational,1390846219 +160457,7925,Akira Kurosawa,1437929403 +160457,7925,Toshiro Mifune,1437929394 +160457,8042,directionless,1395325173 +160457,8042,horrible people,1395325180 +160457,8370,bad cgi,1387068095 +160457,8370,final dance,1387068072 +160457,8370,nothing happens,1387068068 +160457,26152,camp,1418161100 +160457,26152,exploding shark,1418161106 +160457,30810,Bill Murray,1395863154 +160457,30810,great soundtrack,1395863158 +160457,30810,plot twist,1395863178 +160457,30810,submarine,1395863166 +160457,30810,whimsical,1395863156 +160457,31685,romantic comedy,1418362456 +160457,31685,Will Smith,1418362453 +160457,32587,corruption,1405657269 +160457,32587,multiple storylines,1405657260 +160457,32587,stylized,1405657251 +160457,32587,surrealism,1405657264 +160457,32587,visually appealing,1405657249 +160457,34437,Bill Murray,1401865382 +160457,34437,detective,1401865399 +160457,34437,Nudity (Full Frontal),1401865386 +160457,34437,quirky,1401865405 +160457,34437,understated,1401865412 +160457,39183,cowboy,1418275953 +160457,39183,Heath Ledger,1380393193 +160457,39183,melancholy,1418275897 +160457,39183,Oscar (Best Directing),1418275908 +160457,39183,scenic,1418275956 +160457,39183,Special Effects,1418275930 +160457,42632,flashbacks,1402129026 +160457,42632,Min-sik Choi,1402129083 +160457,42632,revenge,1402129035 +160457,42632,shaky camera,1402129120 +160457,42632,stylized,1402129017 +160457,42632,violent,1402129041 +160457,44191,dystopia,1387079448 +160457,44191,imdb top 250,1387079459 +160457,44191,Natalie Portman,1387079445 +160457,44191,politics,1387079464 +160457,44191,social commentary,1387079454 +160457,44191,thought-provoking,1387079442 +160457,44555,Stasi,1445089893 +160457,48738,based on a true story,1409792872 +160457,48738,Forest Whitaker,1409792870 +160457,48738,James McAvoy,1409792869 +160457,48780,Christian Bale,1387090645 +160457,48780,complicated,1387090673 +160457,48780,magic,1387090662 +160457,48780,Michael Caine,1387090649 +160457,48780,nonlinear,1387090651 +160457,48780,revenge,1387090660 +160457,48780,twist ending,1387090647 +160457,52885,anime,1378256460 +160457,52885,dreams,1378256456 +160457,52885,Satoshi Kon,1378256454 +160457,56782,Daniel Day-Lewis,1421956197 +160457,56782,long shots,1421960838 +160457,56782,paul dano,1421960888 +160457,56782,religion,1421956194 +160457,59369,fight scenes,1427252361 +160457,59369,Liam Neeson,1427252353 +160457,59784,Dreamworks,1387068186 +160457,59784,Jack Black,1387068170 +160457,59784,panda,1387068190 +160457,59784,talking animals,1387068179 +160457,60069,artificial intelligence,1387079436 +160457,60069,beautiful scenery,1378256327 +160457,60069,pixar,1378256323 +160457,60069,Sci-Fi,1378256318 +160457,60069,social commentary,1378256330 +160457,60816,Terry Pratchett,1442534897 +160457,60818,Terry Pratchett,1442534907 +160457,61240,based on a book,1379293856 +160457,61240,bittersweet,1379293852 +160457,61240,coming of age,1379293859 +160457,62912,cheesy,1399217843 +160457,62912,Disney,1399217843 +160457,66509,Adam Sandler,1393390671 +160457,66509,Judd Apatow,1393390667 +160457,66509,long,1393390665 +160457,66509,Seth Rogen,1393390669 +160457,66509,Vulgar,1393390680 +160457,68954,adventure,1387079479 +160457,68954,bittersweet,1378255823 +160457,68954,depressing,1378255847 +160457,68954,Pixar,1378255826 +160457,70286,humor,1417223199 +160457,70286,intelligent,1417223193 +160457,70286,sci-fi,1417223202 +160457,70286,social commentary,1417223179 +160457,71520,Atheism,1398890474 +160457,71520,cliche,1398890463 +160457,71520,good concept,1398890435 +160457,71520,Jonah Hill,1398890428 +160457,71520,Ricky Gervais,1398890423 +160457,71535,Bill Murray,1399692999 +160457,71535,funny,1399693008 +160457,71535,Woody Harrelson,1399693001 +160457,71535,zombies,1399693003 +160457,72011,loneliness,1386472315 +160457,72489,gore,1402788829 +160457,72489,martial arts,1402788792 +160457,72489,Naomie Harris,1402788786 +160457,72489,plot,1402788804 +160457,72489,Rain,1402788782 +160457,78499,adventure,1387079511 +160457,78499,animation,1406781452 +160457,78499,bittersweet,1387079515 +160457,78499,childhood,1406781471 +160457,78499,friendship,1387079507 +160457,78499,Pixar,1387079508 +160457,81591,dance,1393050705 +160457,81591,disturbing,1393050730 +160457,81591,mental illness,1393050726 +160457,81591,Mila Kunis,1393050758 +160457,81591,Natalie Portman,1393050682 +160457,81591,Oscar (Best Actress),1393050713 +160457,81591,psychological,1393050711 +160457,81591,surreal,1393050694 +160457,81591,suspense,1393050739 +160457,84989,funny,1395863321 +160457,84989,personal,1395863313 +160457,85736,not a movie,1378256362 +160457,86345,honest,1417669567 +160457,86345,Louis C.K.,1417669578 +160457,86345,stand-up comedy,1417669543 +160457,87298,dark humor,1398703007 +160457,87298,low key,1398703037 +160457,87298,no happy ending,1398703010 +160457,87298,Will Ferrell,1398703015 +160457,88129,great soundtrack,1399570315 +160457,88129,ryan gosling,1399570310 +160457,88744,Animals,1404619955 +160457,88744,computer animation,1404619958 +160457,88744,James Franco,1417223152 +160457,88744,special effects,1417223154 +160457,88744,thought-provoking,1404619942 +160457,89864,honest,1378256226 +160457,89864,humor,1378256243 +160457,89864,Joseph Gordon-Levitt,1378256221 +160457,89864,Seth Rogen,1378256219 +160457,89864,touching,1383785225 +160457,91094,Jason Segel,1413215942 +160457,91094,muppets,1413215945 +160457,93838,martial arts,1433219917 +160457,93840,clever,1400290090 +160457,93840,joss whedon,1400290086 +160457,93840,satire,1400290097 +160457,93840,Self-referential,1400290086 +160457,94864,Ridley Scott,1404619978 +160457,94864,scifi,1404619980 +160457,94959,Bruce Willis,1400297910 +160457,94959,cinematography,1400297928 +160457,94959,quirky,1400297913 +160457,94959,stylized,1400297916 +160457,94959,Wes Anderson,1400297907 +160457,96588,Anna Kendrick,1387068145 +160457,96588,predictable,1387068148 +160457,97921,cliche,1383785247 +160457,97921,dark humor,1383785254 +160457,97921,predictable,1383785242 +160457,98243,lack of story,1387068120 +160457,98243,whimsical,1387068129 +160457,98809,New Zealand,1385024529 +160457,98809,storytelling,1385024532 +160457,99007,chick flick,1399692974 +160457,99007,Cured by love,1399692948 +160457,99007,cured by love/hope,1399692945 +160457,99007,soundtrack,1399692967 +160457,100163,diabetes,1425065837 +160457,100163,hate watch,1425065846 +160457,102125,Christmas,1385024252 +160457,102125,Gwyneth Paltrow,1385024241 +160457,102125,Marvel,1385024258 +160457,102125,Robert Downey Jr.,1385024245 +160457,102125,robots,1385024255 +160457,102445,predictable,1423708507 +160457,103228,giant robots,1382989762 +160457,103228,Guillermo del Toro,1382989760 +160457,103228,happy ending,1382989756 +160457,103228,visually appealing,1382989753 +160457,103596,Campy,1418168108 +160457,103596,Not Serious,1418168100 +160457,103596,self-aware,1387067983 +160457,103801,Anna Kendrick,1406005491 +160457,103801,drinking,1406005497 +160457,103801,improvised,1406005494 +160457,103801,Olivia Wilde,1406005489 +160457,103801,weak ending,1406005509 +160457,105213,Accents,1414470681 +160457,105213,New Jersey,1414470662 +160457,105213,pornography,1414470645 +160457,105213,Scarlett Johansson,1414470702 +160457,106696,beautiful,1392182943 +160457,106696,Disney,1392182954 +160457,106696,pacing,1392182935 +160457,106696,unnecessary villain,1392182929 +160457,106782,Amoral,1406175916 +160457,106782,Anti-Hero,1406175914 +160457,106782,Leonardo DiCaprio,1406175910 +160457,106782,Nudity (Full Frontal),1406175907 +160457,106782,strippers,1406175920 +160457,106916,Anti-Hero,1432000044 +160457,106916,Bradley Cooper,1432000035 +160457,106916,New Jersey,1432000039 +160457,106920,acting,1390263288 +160457,106920,arcade fire,1390263286 +160457,106920,artificial intelligence,1390263265 +160457,106920,joaquin phoenix,1390263267 +160457,106920,Scarlett Johansson,1389474169 +160457,106920,score,1390263283 +160457,109374,Bill Murray,1402036782 +160457,109374,cinematography,1402036780 +160457,109374,Wes Anderson,1402036769 +160457,109374,witty,1402036810 +160457,110445,Terry Pratchett,1442534878 +160457,110603,Christianity,1438551262 +160457,110899,Nicholas Cage,1424133325 +160457,111362,James McAvoy,1400916436 +160457,111362,Jennifer Lawrence,1400916403 +160457,111362,Marvel,1400916448 +160457,111362,Patrick Stewart,1400916423 +160457,111362,superhero,1400916456 +160457,111362,time travel,1400916459 +160457,111364,Bryan Cranston,1400266706 +160457,111364,Monster,1400266722 +160457,111364,special effects,1400266713 +160457,112138,college,1404364546 +160457,112138,hilarious,1404364555 +160457,112138,Self-referential,1404364534 +160457,112290,Ethan Hawke,1423527273 +160457,112334,Aaron Swartz,1405823314 +160457,112334,Internet,1405823318 +160457,112334,prodigy,1405823393 +160457,112450,parody,1437939737 +160457,112556,Ben Affleck,1418890556 +160457,112556,Psychopathy,1418890554 +160457,112556,Rosamund Pike,1418890566 +160457,112623,CGI,1418890405 +160457,112623,emotional,1418890414 +160457,112623,sci-fi,1418890408 +160457,112852,childish,1408476224 +160457,112852,overrated,1408476264 +160457,112852,underdeveloped characters,1408476351 +160457,114180,plot holes,1418890460 +160457,114180,unexplained,1418890472 +160457,134130,based on book,1448818498 +160459,1262,POWs,1323968133 +160459,1262,prison escape,1323968129 +160473,6765,romance,1139918412 +160476,91500,romance,1393068727 +160510,119430,Casino,1419462971 +160510,119430,Con,1419462988 +160510,119430,Craps,1419462978 +160510,119430,Gamble,1419462999 +160510,119430,Gambling,1419462967 +160510,119430,Hustle,1419462993 +160510,119430,Poker,1419462981 +160522,357,chick flick,1303175228 +160522,357,Comedy,1303175235 +160522,357,gay,1303175238 +160522,357,girlie movie,1303175269 +160522,357,heartfelt,1303175287 +160522,357,Hugh Grant,1303175241 +160522,357,overrated,1303175256 +160522,357,relationships,1303175248 +160522,357,Romance,1303175246 +160522,357,some good acting,1303175391 +160522,1809,art,1296941146 +160522,1809,poetic,1296941159 +160522,1809,Takeshi Kitano,1296941146 +160522,4640,gangsters,1296941535 +160522,4640,mafia,1296941535 +160522,4640,violence,1296941535 +160522,8327,slow paced,1296941342 +160522,8327,surreal,1296941320 +160522,8327,Takeshi Kitano,1296941320 +160522,8370,humour,1275250744 +160522,8370,Takeshi Kitano,1275250708 +160522,32196,incoherent,1296941483 +160522,32196,Takeshi Kitano,1296941475 +160522,32657,Priority,1266973134 +160522,45259,MUBI,1352665879 +160522,48780,cheesy,1303152622 +160522,48780,obvious,1303152595 +160522,48780,pointless,1303152588 +160522,55247,cheesy,1318846391 +160522,55247,coming of age,1318846420 +160522,55247,hopeless,1318846391 +160522,55247,road trip,1318846396 +160522,55247,wilderness,1318846396 +160522,58898,MUBI,1352666245 +160522,71755,MUBI,1352666610 +160522,84989,documentary,1303152262 +160522,98059,MUBI,1352666546 +160522,116899,anime,1421537656 +160522,116899,oppression,1421537656 +160522,116899,very moving,1421537656 +160532,866,crime,1188345581 +160532,866,drama,1188345582 +160532,3752,comedy,1188345607 +160532,4262,action packed,1188345649 +160532,4262,crime,1188345649 +160532,5679,horror,1188345430 +160532,5679,thriller,1188345430 +160541,5380,Oscar Wilde,1230912799 +160550,4388,parody,1448813502 +160568,480,children,1429758656 +160568,593,conspiracy theory,1429758794 +160568,593,fiction,1429758794 +160568,593,thriller,1429758794 +160568,97938,children,1429758716 +160578,260,sci-fi,1442163463 +160640,296,dark comedy,1242133507 +160640,296,Quentin Tarantino,1242133505 +160640,750,black comedy,1242133214 +160640,1212,great cinematography,1242133230 +160640,1212,noir thriller,1242133237 +160640,1212,Orson Welles,1242133226 +160640,1253,aliens,1242133468 +160640,1253,black and white,1242133471 +160640,1253,eerie,1242133477 +160640,1253,first contact,1242133462 +160640,1278,gothic,1242133184 +160640,1278,Quotable,1242133177 +160640,2580,Katie Holmes,1242133591 +160640,4203,Buddy movie,1242133759 +160640,4203,Mickey Rourke,1242133767 +160640,33794,Christian Bale,1242133556 +160640,33794,dark,1242133558 +160640,33794,Morgan Freeman,1242133571 +160640,33794,super-hero,1242133561 +160640,58559,Christian Bale,1242133530 +160640,58559,Comic Book adaption,1242133545 +160640,58559,Heath Ledger,1242133540 +160640,58559,Maggie Gyllenhaal,1242133535 +160640,58559,superhero,1242133537 +160640,63992,fantasy,1242133363 +160640,63992,romance,1242133319 +160640,63992,Vampire Human Love,1242133324 +160640,63992,vampires,1242133355 +160640,64497,first contact,1242133431 +160640,64497,Jennifer Connelly,1242133404 +160640,64497,John Cleese,1242133421 +160640,64497,Keanu Reeves,1242133424 +160640,64497,remake,1242133416 +160650,318,friendship,1445489528 +160650,318,great ending,1445489521 +160650,318,justice,1445489525 +160650,318,Morgan Freeman,1445489534 +160650,440,Kevin Kline,1445489436 +160650,440,light,1445489426 +160650,440,predictible,1445489485 +160650,440,Sigourney Weaver,1445489433 +160694,128512,Young Adult,1454024344 +160716,5181,conspiracy,1451400445 +160716,7063,nature,1451382570 +160716,8581,computers,1451382330 +160716,84156,Siberia,1451382470 +160716,104303,apple,1451382311 +160738,260,classic sci-fi,1437659931 +160738,260,space adventure,1437659939 +160785,509,great soundtrack,1440394642 +160785,48780,unusual,1440394523 +160785,101864,good soundtrack,1440394600 +160802,260,classic,1444517347 +160802,260,cult classic,1444517350 +160802,260,drama,1444517338 +160802,260,good acting,1444517357 +160802,260,thriller,1444517333 +160807,1907,nice movie,1187642174 +160807,2953,for kids,1187642236 +160807,3617,college movie,1187642217 +160807,3967,gives you some creativity,1187642205 +160807,4262,verry violent,1187642181 +160807,4367,rather a disappointment,1187642245 +160808,109487,dystopia,1428863770 +160808,109487,science,1428863770 +160808,109487,scifi,1428863770 +160831,260,fantasy,1433592577 +160831,260,Science Fiction,1433592544 +160831,296,back and forth in time,1434389744 +160831,296,quentin tarantino,1434389744 +160831,296,quickly,1434389744 +160831,318,friendship,1433593229 +160831,356,special needs,1433593207 +160831,356,tom hanks,1433593207 +160831,356,wonderful acting,1433593207 +160831,508,Oscar (Best Actor),1433595628 +160831,508,tom hanks,1433595637 +160831,593,clever,1435663150 +160831,593,mystery,1435663150 +160831,593,psychological,1435663150 +160831,1354,Emily Watson,1450201380 +160831,1354,great acting,1450201397 +160831,1354,lars von trier,1450201373 +160831,1358,oscar (best directing),1433593304 +160831,1704,Robin Williams,1433592911 +160831,2966,David Lynch,1433593779 +160831,3252,Al Pacino,1433595468 +160831,3252,based on book,1433595481 +160831,3252,dance,1433595488 +160831,3252,disability,1433595479 +160831,3252,good acting,1433595501 +160831,3252,great acting,1433595494 +160831,3252,Oscar (Best Actor),1433595476 +160831,3677,nature,1433594751 +160831,3949,cinematography,1433778568 +160831,3949,dark,1433778459 +160831,3949,Darren Aronofsky,1433778553 +160831,3949,depressing,1433778442 +160831,3949,drug abuse,1433778540 +160831,3949,drugs,1433778437 +160831,3949,great acting,1433778589 +160831,3949,imdb top 250,1433778572 +160831,3949,independent film,1433778580 +160831,3949,oscar (best directing),1433778546 +160831,3949,psychology,1433778454 +160831,4973,beautifully filmed,1433595863 +160831,4973,great soundtrack,1433595874 +160831,4973,stylized,1433595866 +160831,5618,adventure,1433779380 +160831,5618,anime,1433779371 +160831,5618,Oscar (Best Animated Feature),1433779394 +160831,6270,Akira Kurosawa,1433594792 +160831,6270,dreamlike,1433594797 +160831,7361,beautiful,1433596045 +160831,7361,cult film,1433596013 +160831,7361,imagination,1433596026 +160831,7361,philosophy,1433596003 +160831,7361,quirky,1433596030 +160831,7361,surreal,1433595995 +160831,27803,disability,1433593931 +160831,27803,emotional,1433593927 +160831,27803,meditative,1433593948 +160831,27803,Oscar (Best Foreign Language Film),1433593940 +160831,27803,touching,1433593908 +160831,27803,true story,1433593904 +160831,46578,family,1434389417 +160831,46578,family drama,1434389472 +160831,46578,off-beat comedy,1434389452 +160831,46578,road trip,1434389488 +160831,48082,Charlotte Gainsbourg,1453831371 +160831,48082,psychology,1453831379 +160831,48082,unusual,1453831391 +160831,55814,beautiful,1433593845 +160831,55814,disability,1433593838 +160831,55814,foreign language,1433593856 +160831,55814,French,1433593842 +160831,55814,great cinematography,1433593861 +160831,55814,touching,1433593851 +160831,55814,true story,1433593848 +160831,72720,beautiful cinematography,1433594409 +160831,81591,atmospheric,1433778716 +160831,81591,Cinematography,1433778725 +160831,81591,dance,1433778708 +160831,81591,dark,1433778711 +160831,81591,Darren Aronofsky,1433778659 +160831,81591,horror,1433778675 +160831,81591,lesbians,1433778684 +160831,81591,madness,1433778663 +160831,81591,mental illness,1433778653 +160831,81591,psychological,1433778678 +160831,81591,sex,1433778671 +160831,81591,surreal,1433778640 +160831,96606,wordless,1433594568 +160831,98491,romance,1433779605 +160831,100714,cinematography,1447094295 +160831,100714,Greece,1447094273 +160831,100714,honest,1447094284 +160831,100714,philosophical,1447094276 +160831,100714,romance,1447094280 +160831,109487,interesting ideea,1434390091 +160831,109487,Masterpiece,1434390079 +160831,109487,sci-fi,1434390065 +160831,109487,time-travel,1434390082 +160831,109487,wormhole,1434390069 +160832,260,fantasy,1444519076 +160832,260,sci-fi,1444519067 +160841,260,Star Wars,1430168237 +160841,260,stylized,1430168225 +160855,1,Disney,1437927776 +160855,1,friendship,1437927794 +160855,1,nostalgic,1437927807 +160855,17,19th century,1437960140 +160855,17,costume drama,1437960137 +160855,17,emotional,1437960154 +160855,17,Jane Austen,1437960130 +160855,17,Kate Winslet,1437960148 +160855,17,Period,1437960144 +160855,17,romantic,1437960135 +160855,19,comedy,1437965925 +160855,19,goofy,1437965933 +160855,19,Jim Carrey,1437965923 +160855,19,silly fun,1437965927 +160855,19,stupid,1437965943 +160855,34,children,1437939515 +160855,34,cute,1437939522 +160855,34,fantasy,1437939518 +160855,34,heartwarming,1437939542 +160855,34,sweet,1437939536 +160855,38,cute,1438123286 +160855,38,fun,1438123296 +160855,38,heartwarming,1438123292 +160855,38,mary kate and ashley,1438123271 +160855,38,nostalgic,1438123281 +160855,39,Alicia Silverstone,1437961585 +160855,39,Brittany Murphy,1437961638 +160855,39,chick flick,1437961587 +160855,39,funny,1437961629 +160855,39,Paul Rudd,1437961593 +160855,39,teen movie,1437961582 +160855,48,90s kid,1440467461 +160855,48,Disney,1437932595 +160855,48,nostalgic,1437932600 +160855,48,strong female lead,1440467470 +160855,104,Adam Sandler,1437966071 +160855,104,comedy,1437966097 +160855,104,funny,1437966094 +160855,104,goofy,1437966090 +160855,158,childhood,1437964833 +160855,158,Christina Ricci,1437964820 +160855,158,cute,1437964824 +160855,158,ghosts,1437964818 +160855,158,sweet,1437964828 +160855,216,Adam Sandler,1437964651 +160855,216,funny,1437964656 +160855,216,goofy,1437964660 +160855,216,silly,1437964665 +160855,239,90s kid,1440467521 +160855,239,childhood,1437964290 +160855,239,cute,1437964294 +160855,239,Disney,1437964285 +160855,239,feel good,1437964319 +160855,239,fun,1437964308 +160855,239,funny,1437964313 +160855,239,sweet,1437964304 +160855,260,"action, scifi",1437929420 +160855,260,awesome,1437929412 +160855,260,classic,1437929359 +160855,260,classic sci-fi,1437929361 +160855,260,cult classic,1437929383 +160855,260,EPIC,1437929381 +160855,260,fantasy,1437929367 +160855,260,future,1437929399 +160855,260,futuristic,1437929414 +160855,260,George Lucas,1437929387 +160855,260,Harrison Ford,1437929374 +160855,260,oldie but goodie,1437929401 +160855,260,sci fi,1437929417 +160855,260,sci-fi,1437929352 +160855,260,Science Fiction,1437929355 +160855,260,scifi,1437929407 +160855,260,scifi cult,1437929392 +160855,260,space,1437929357 +160855,260,space action,1437929376 +160855,260,space adventure,1437929363 +160855,260,space epic,1437929389 +160855,260,Star Wars,1437929371 +160855,261,emotional,1437929568 +160855,261,historical romance,1437929542 +160855,261,period piece,1437929537 +160855,261,strong woman,1437929552 +160855,288,dark comedy,1437965636 +160855,288,psychedelic,1437965634 +160855,288,Woody Harrelson,1437965645 +160855,317,childhood,1437960220 +160855,317,Christmas,1437960187 +160855,317,fantasy,1437960204 +160855,317,feel good,1437960216 +160855,317,funny,1437960201 +160855,317,heartwarming,1437960211 +160855,317,Santa Claus,1437960192 +160855,317,Tim Allen,1437960195 +160855,318,heartwarming,1437961251 +160855,318,inspirational,1437961238 +160855,318,Morgan Freeman,1437961230 +160855,318,thought-provoking,1437961235 +160855,344,comedy,1437965208 +160855,344,goofy,1437965205 +160855,344,Jim Carrey,1437965203 +160855,344,silly fun,1437965216 +160855,364,bittersweet,1437939086 +160855,364,Childhood,1437938960 +160855,364,classic,1437938956 +160855,364,coming of age,1437938945 +160855,364,Disney,1437938942 +160855,364,fun,1437938975 +160855,364,Matthew Broderick,1437938965 +160855,364,musical,1437938953 +160855,364,sentimental,1437939105 +160855,480,Dinosaurs,1437965164 +160855,480,Jeff Goldblum,1437965173 +160855,480,sci-fi,1437965169 +160855,480,science,1437965178 +160855,480,Steven Spielberg,1437965166 +160855,480,Suspense,1437965176 +160855,500,cross dressing,1437965282 +160855,500,cute,1437965293 +160855,500,Robin Williams,1437965279 +160855,500,Sally Field,1437965285 +160855,500,silly,1437965298 +160855,539,chick flick,1437965470 +160855,539,destiny,1437965474 +160855,539,Meg Ryan,1437965465 +160855,539,Romance,1437965468 +160855,539,romantic comedy,1437965479 +160855,539,Tom Hanks,1437965463 +160855,551,classic,1437931472 +160855,551,creepy,1437931466 +160855,551,Danny Elfman score,1437931470 +160855,551,dark,1437931458 +160855,551,Disney,1437931482 +160855,551,gothic,1437931452 +160855,551,Halloween,1437931449 +160855,551,surreal,1437931468 +160855,551,Tim Burton,1437931447 +160855,551,whimsical,1437931455 +160855,586,childhood classics,1437965505 +160855,586,christmas,1437965499 +160855,586,nostalgia,1437965503 +160855,588,Disney,1437931882 +160855,588,fairy tale,1437931893 +160855,588,musical,1437931885 +160855,588,Robin Williams,1437931887 +160855,593,Anthony Hopkins,1437939388 +160855,593,dark,1437939421 +160855,593,disturbing,1437939391 +160855,593,psychological,1437939399 +160855,593,psychology,1437939386 +160855,593,serial killer,1437939384 +160855,593,strong female lead,1437939409 +160855,593,suspense,1437939393 +160855,594,classic,1437966117 +160855,594,Disney,1437966112 +160855,594,fairy tale,1437966115 +160855,594,musical,1437966129 +160855,595,affectionate,1438029963 +160855,595,Animation,1438029946 +160855,595,beautiful,1438029957 +160855,595,childhood classic,1438029971 +160855,595,Disney,1438029942 +160855,595,fairy tale,1438029948 +160855,595,gentle,1438029960 +160855,595,heartwarming,1438029950 +160855,661,Disney,1437939198 +160855,661,fantasy,1437939216 +160855,661,musical,1437939210 +160855,661,Roald Dahl,1437939201 +160855,661,Tim Burton,1437939207 +160855,661,whimsical,1437939224 +160855,673,childhood,1437964626 +160855,673,fun,1437964634 +160855,673,nostalgic,1437964622 +160855,673,silly,1437964630 +160855,736,big budget,1437964577 +160855,736,Disaster,1437964562 +160855,736,natural disaster,1437964567 +160855,736,science,1437964564 +160855,736,tornados,1437964570 +160855,736,weather,1437964583 +160855,780,alien,1437964787 +160855,780,alien invasion,1437964769 +160855,780,aliens,1437964773 +160855,780,apocalypse,1437964777 +160855,780,Area 51,1437964791 +160855,780,big budget,1437964795 +160855,780,cheesy,1437964801 +160855,780,disaster,1437964782 +160855,780,end of the world,1437964780 +160855,780,Jeff Goldblum,1437964785 +160855,780,sci-fi,1437964775 +160855,780,scifi,1437964789 +160855,780,tense,1437964793 +160855,780,will smith,1437964771 +160855,783,deep,1437938909 +160855,783,Disney,1437938879 +160855,783,heartwarming,1437938926 +160855,783,nostalgic,1437938903 +160855,783,sentimental,1437938898 +160855,788,alter ego,1437965995 +160855,788,comedy,1437966003 +160855,788,Eddie Murphy,1437965992 +160855,788,goofy,1437966001 +160855,788,stupid,1437966010 +160855,899,classic,1437939989 +160855,899,Dance,1437939984 +160855,899,fun,1437940025 +160855,899,happy,1437939994 +160855,899,musical,1437940002 +160855,899,sweet,1437940031 +160855,912,bittersweet,1437938815 +160855,912,classic,1437938796 +160855,912,classic romance,1437938827 +160855,912,Humphrey Bogart,1437938803 +160855,912,Oscar (Best Picture),1437938806 +160855,912,romance,1437938810 +160855,912,sentimental,1437938817 +160855,912,World War II,1437938800 +160855,915,Audrey Hepburn,1437940661 +160855,915,classic,1437940663 +160855,915,romance,1437940668 +160855,919,classic,1437939708 +160855,919,colourful,1437939717 +160855,919,dreamlike,1437939714 +160855,919,fantasy,1437939713 +160855,919,Heartwarming,1437939726 +160855,919,Musical,1437939711 +160855,920,Civil War,1437927833 +160855,920,classic,1437927828 +160855,920,historical,1437927847 +160855,920,strong woman,1437927855 +160855,1035,classic,1437940692 +160855,1035,julie andrews,1437940705 +160855,1035,musical,1437940698 +160855,1035,Oscar (Best Picture),1437940695 +160855,1036,action,1437965430 +160855,1036,Bruce Willis,1437965421 +160855,1036,generic,1437965450 +160855,1036,tense,1437965435 +160855,1073,classic,1437939125 +160855,1073,colourful,1437939134 +160855,1073,cult film,1437939149 +160855,1073,Fantasy,1437939127 +160855,1073,Heartwarming,1437939152 +160855,1073,imagination,1437939154 +160855,1073,musical,1437939123 +160855,1073,quirky,1437939165 +160855,1073,roald dahl,1437939132 +160855,1073,surreal,1437939121 +160855,1073,Whimsical,1437939118 +160855,1073,witty,1437939147 +160855,1193,classic,1440638148 +160855,1193,emotional,1440638140 +160855,1193,jack nicholson,1440638129 +160855,1193,powerful ending,1440638143 +160855,1193,psychological,1440638134 +160855,1193,psychology,1440638132 +160855,1193,social satire,1440638150 +160855,1196,classic,1437929001 +160855,1196,fantasy,1437928996 +160855,1196,George Lucas,1437928993 +160855,1196,Harrison Ford,1437928985 +160855,1196,sci-fi,1437928981 +160855,1196,space,1437928983 +160855,1196,Star Wars,1437928989 +160855,1198,adventure,1437961029 +160855,1198,classic,1437961038 +160855,1198,comedy,1437961040 +160855,1198,Harrison Ford,1437961026 +160855,1198,indiana jones,1437961031 +160855,1198,Steven Spielberg,1437961035 +160855,1206,atmospheric,1440206597 +160855,1206,classic,1440206652 +160855,1206,controversial,1440206633 +160855,1206,cult film,1440206573 +160855,1206,disturbing,1440206563 +160855,1206,dystopia,1440206559 +160855,1206,future,1440206663 +160855,1206,great soundtrack,1440206656 +160855,1206,masterpiece,1440206649 +160855,1206,psychological,1440206629 +160855,1206,psychology,1440206566 +160855,1206,quirky,1440206602 +160855,1206,rape,1440206636 +160855,1206,satire,1440206599 +160855,1206,satirical,1440206620 +160855,1206,social commentary,1440206583 +160855,1206,stanley kubrick,1440206554 +160855,1206,stylized,1440206587 +160855,1206,surreal,1440206617 +160855,1206,Surrealism,1440206605 +160855,1210,classic,1437929937 +160855,1210,fantasy,1437929929 +160855,1210,George Lucas,1437929927 +160855,1210,Harrison Ford,1437929926 +160855,1210,sci-fi,1437929919 +160855,1210,space,1437929924 +160855,1210,Star Wars,1437929922 +160855,1214,aliens,1437930741 +160855,1214,classic,1437930761 +160855,1214,creepy,1437930796 +160855,1214,dark,1437930754 +160855,1214,futuristic,1437930759 +160855,1214,Ridley Scott,1437930751 +160855,1214,sci-fi,1437930738 +160855,1214,space,1437930743 +160855,1214,suspense,1437930745 +160855,1214,suspenseful,1437930769 +160855,1214,tense,1437930748 +160855,1214,thriller,1437930756 +160855,1220,classic,1437965960 +160855,1220,Dan Aykroyd,1437965962 +160855,1220,John Belushi,1437965965 +160855,1220,Saturday Night Live,1437965968 +160855,1240,classic,1437930335 +160855,1240,dystopic future,1437930367 +160855,1240,future,1437930332 +160855,1240,Sci-Fi,1437930327 +160855,1240,sci-fi classic,1437930360 +160855,1265,Bill Murray,1437965317 +160855,1265,cheesy,1437965339 +160855,1265,Classic,1437965329 +160855,1265,comedy,1437965321 +160855,1265,existentialism,1437965327 +160855,1265,feel-good,1437965333 +160855,1265,surreal,1437965319 +160855,1307,Billy Crystal,1437965875 +160855,1307,cheesy,1437965892 +160855,1307,chick flick,1437965887 +160855,1307,meg ryan,1437965872 +160855,1380,chick flick,1437960253 +160855,1380,classic,1437960241 +160855,1380,happy,1437960270 +160855,1380,John Travolta,1437960243 +160855,1380,musical,1437960240 +160855,1380,teen movie,1437960249 +160855,1387,classic,1437940396 +160855,1387,creepy,1437940402 +160855,1387,ominous,1437940400 +160855,1387,suspenseful,1437940391 +160855,1387,tense,1437940398 +160855,1393,Cuba Gooding Jr.,1437965852 +160855,1393,Tom Cruise,1437965846 +160855,1517,Elizabeth Hurley,1437965814 +160855,1517,funny,1437965816 +160855,1517,goofy,1437965825 +160855,1517,Mike Myers,1437965809 +160855,1517,parody,1437965808 +160855,1517,silly fun,1437965818 +160855,1517,spoof,1437965811 +160855,1562,Alicia Silverstone,1437964544 +160855,1562,Batman,1437964513 +160855,1562,camp,1437964539 +160855,1562,comic book,1437964536 +160855,1562,DC Comics,1437964542 +160855,1562,funny,1437964533 +160855,1562,superhero,1437964523 +160855,1566,childhood,1437961102 +160855,1566,cute,1437961095 +160855,1566,Danny DeVito,1437961078 +160855,1566,disney,1437961084 +160855,1580,alien,1437965248 +160855,1580,aliens,1437965234 +160855,1580,big budget,1437965255 +160855,1580,buddy movie,1437965250 +160855,1580,comedy,1437965241 +160855,1580,conspiracy theory,1437965243 +160855,1580,sci-fi,1437965245 +160855,1580,Tommy Lee Jones,1437965238 +160855,1580,Will Smith,1437965236 +160855,1704,Ben Affleck,1437961799 +160855,1704,feel-good,1437961808 +160855,1704,inspirational,1437961801 +160855,1704,Matt Damon,1437961793 +160855,1704,Robin Williams,1437961790 +160855,1721,bittersweet,1437934778 +160855,1721,disaster,1437934772 +160855,1721,Kate Winslet,1437934783 +160855,1721,Leonardo DiCaprio,1437934771 +160855,1721,love story,1437934781 +160855,1721,romance,1437934768 +160855,1760,cheesy,1437964374 +160855,1760,chick flick,1437964367 +160855,1760,fun,1437964361 +160855,1760,spice girls,1437964349 +160855,1760,teen movie,1437964355 +160855,1907,childhood,1437939597 +160855,1907,Disney,1437939566 +160855,1907,heartwarming,1437939632 +160855,1907,musical,1437939575 +160855,1907,strong female lead,1437939569 +160855,1907,witty,1437939613 +160855,1917,apocalypse,1437964411 +160855,1917,bad science,1437964417 +160855,1917,Ben Affleck,1437964413 +160855,1917,big budget,1437964435 +160855,1917,Billy Bob Thornton,1437964424 +160855,1917,Bruce Willis,1437964407 +160855,1917,disaster,1440467489 +160855,1917,end of the world,1437964415 +160855,1917,humorous,1440467492 +160855,1917,over the top,1437964430 +160855,1917,sci-fi,1437964421 +160855,1917,space,1437964409 +160855,1917,space program,1440467496 +160855,1968,coming of age,1437938665 +160855,1968,coming-of-age,1437938673 +160855,1968,cult film,1437938669 +160855,1968,sentimental,1437938686 +160855,1968,teen,1437938667 +160855,1968,teen movie,1437938661 +160855,1982,Classic Horror,1437931309 +160855,1982,horror,1437931302 +160855,1982,intense,1437931322 +160855,1982,suspenseful,1437931328 +160855,1997,Classic,1437959613 +160855,1997,creepy,1437959618 +160855,2052,campy,1437965046 +160855,2052,childhood,1437965031 +160855,2052,Disney,1437965019 +160855,2052,halloween,1437965016 +160855,2054,adventure,1437966147 +160855,2054,childhood,1437966152 +160855,2054,Disney,1437966158 +160855,2054,fantasy,1437966146 +160855,2072,dark comedy,1440637941 +160855,2072,quirky,1440637953 +160855,2072,suburbia,1440637944 +160855,2087,childhood,1437940578 +160855,2087,coming of age,1437940588 +160855,2087,cute,1437940599 +160855,2087,Disney,1437940569 +160855,2087,Peter Pan,1437940573 +160855,2115,Harrison Ford,1437939469 +160855,2115,Indiana Jones,1437939472 +160855,2174,black comedy,1437938738 +160855,2174,cult film,1437938722 +160855,2174,death,1437938748 +160855,2174,ghosts,1437938728 +160855,2174,ghosts/afterlife,1437938731 +160855,2174,haunted house,1437938734 +160855,2174,Michael Keaton,1437938742 +160855,2174,off-beat,1437938773 +160855,2174,supernatural,1437938751 +160855,2174,surreal,1437938744 +160855,2174,Tim Burton,1437938717 +160855,2174,weird,1437938740 +160855,2174,whimsical,1437938768 +160855,2174,winona ryder,1437938746 +160855,2291,dark,1437929712 +160855,2291,emotional,1437929736 +160855,2291,fairy tale,1437929709 +160855,2291,fantasy,1437929716 +160855,2291,Johnny Depp,1437929695 +160855,2291,love story,1437929719 +160855,2291,quirky,1437929706 +160855,2291,surreal,1437929701 +160855,2291,Tim Burton,1437929698 +160855,2291,Winona Ryder,1437929722 +160855,2321,affectionate,1440354718 +160855,2321,coming of age,1440354706 +160855,2321,heartwarming,1440354702 +160855,2321,Reese Witherspoon,1440354721 +160855,2321,satire,1440354709 +160855,2321,surreal,1440354700 +160855,2321,whimsical,1440354704 +160855,2321,witty,1440354711 +160855,2329,Deep,1437939324 +160855,2329,disturbing,1437939263 +160855,2329,edward norton,1437939247 +160855,2329,emotional,1437939273 +160855,2329,Neo-Nazis,1437939268 +160855,2329,powerful ending,1437939255 +160855,2329,powerful message about hate,1437939344 +160855,2329,racism,1437939252 +160855,2329,rape,1437939285 +160855,2329,social commentary,1437939280 +160855,2329,tense,1437939276 +160855,2329,thought-provoking,1437939249 +160855,2355,childhood,1437961180 +160855,2355,cute,1437961171 +160855,2355,Disney,1437961148 +160855,2355,funny,1437961152 +160855,2355,Pixar,1437961143 +160855,2355,sweet,1437961175 +160855,2392,bittersweet,1437964919 +160855,2392,Christmas,1437964911 +160855,2392,michael keaton,1437964936 +160855,2392,tearjerker,1437964929 +160855,2392,touching,1437964923 +160855,2396,Gwyneth Paltrow,1437932212 +160855,2396,joseph fiennes,1437932224 +160855,2396,love story,1437932215 +160855,2396,Period,1437932219 +160855,2396,romance,1437932208 +160855,2423,Chevy Chase,1437960922 +160855,2423,christmas,1437960910 +160855,2423,Classic,1437960925 +160855,2423,comedy,1437960924 +160855,2423,funny,1437960930 +160855,2485,cute,1437961447 +160855,2485,Freddie Prinze Jr.,1437961442 +160855,2485,Matthew Lillard,1437961453 +160855,2485,Rachael Leigh Cook,1437961440 +160855,2485,teen movie,1437961437 +160855,2572,cute,1437962071 +160855,2572,fun,1437962065 +160855,2581,chick flick,1437961921 +160855,2581,Drew Barrymore,1437961915 +160855,2581,fun,1437961934 +160855,2581,funny,1437961932 +160855,2581,teen movie,1437961926 +160855,2617,big budget,1437962246 +160855,2617,Brendan Fraser,1437962232 +160855,2617,campy,1437962248 +160855,2617,cheesy,1437962253 +160855,2617,Rachel Weisz,1437962244 +160855,2628,big budget,1437965384 +160855,2628,Ewan McGregor,1437965375 +160855,2628,fantasy,1437965372 +160855,2628,George Lucas,1437965370 +160855,2628,Liam Neeson,1437965379 +160855,2628,Natalie Portman,1437965368 +160855,2628,sci-fi,1437965363 +160855,2628,space,1437965365 +160855,2628,Star Wars,1437965361 +160855,2628,visually appealing,1437965391 +160855,2683,goofy,1437965558 +160855,2683,Mike Myers,1437965545 +160855,2683,parody,1437965542 +160855,2706,comedy,1437939651 +160855,2706,funny,1437939696 +160855,2706,Teen movie,1437939666 +160855,2918,breaking the fourth wall,1437965779 +160855,2918,coming of age,1437965755 +160855,2918,fun,1437965783 +160855,2918,Matthew Broderick,1437965758 +160855,2918,teen movie,1437965768 +160855,3114,Disney,1437965658 +160855,3114,sequel,1437965662 +160855,3114,Tim Allen,1437965669 +160855,3114,Tom Hanks,1437965673 +160855,3147,emotional,1437961475 +160855,3147,Tom Hanks,1437961473 +160855,3147,touching,1437961499 +160855,3363,cars,1438038751 +160855,3363,coming of age,1438038744 +160855,3363,Feel Good,1438038774 +160855,3363,friendship,1438038753 +160855,3363,George Lucas,1438038755 +160855,3363,rock and roll,1438038746 +160855,3363,teen,1438038749 +160855,3408,environmental,1437961660 +160855,3408,Julia Roberts,1437961658 +160855,3408,legal drama,1437961676 +160855,3408,social commentary,1437961655 +160855,3408,Strong Women,1437961662 +160855,3471,aliens,1437961523 +160855,3471,cerebral,1437961541 +160855,3471,Classic,1437961533 +160855,3471,sci-fi,1437961526 +160855,3471,space,1437961528 +160855,3471,Steven Spielberg,1437961530 +160855,3535,Christian Bale,1437961859 +160855,3535,dark comedy,1437961863 +160855,3535,Disturbing,1437961869 +160855,3535,grim,1437961867 +160855,3535,psychological,1437961852 +160855,3535,Reese Witherspoon,1437961873 +160855,3535,serial killer,1437961856 +160855,3752,comedy,1437962205 +160855,3752,funny,1437962217 +160855,3752,Jim Carrey,1437962203 +160855,3752,wild,1437962211 +160855,3793,adapted from:comic,1437933026 +160855,3793,based on a comic,1437933022 +160855,3793,based on comic book,1437933023 +160855,3793,comic book,1437933002 +160855,3793,hugh jackman,1437933017 +160855,3793,marvel,1437933010 +160855,3793,mutants,1437933033 +160855,3793,sci-fi,1437933035 +160855,3793,super-hero,1437933005 +160855,3793,superhero,1437932998 +160855,3793,superheroes,1437933029 +160855,4025,chick flick,1437961196 +160855,4025,Michael Caine,1437961198 +160855,4025,Sandra Bullock,1437961194 +160855,4090,animated classic,1438031052 +160855,4090,childhood,1438031049 +160855,4090,nostalgic,1438031033 +160855,4306,comedy,1437960981 +160855,4306,Eddie Murphy,1437960995 +160855,4306,fairy tale,1437960982 +160855,4306,Funny,1437960987 +160855,4306,parody,1437960990 +160855,4306,satire,1437960992 +160855,4306,witty,1437960984 +160855,4308,Ewan McGregor,1437961408 +160855,4308,musical,1437961401 +160855,4308,Nicole Kidman,1437961406 +160855,4308,passionate,1437961414 +160855,4308,quirky,1437961411 +160855,4308,romance,1437961420 +160855,4308,stylized,1437961403 +160855,4700,Anne Hathaway,1437961305 +160855,4700,chick flick,1437961331 +160855,4700,Julie Andrews,1437961315 +160855,4700,relatable,1437961325 +160855,4700,teen movie,1437961320 +160855,4816,ben stiller,1437960873 +160855,4816,comedy,1437960883 +160855,4816,funny,1437960889 +160855,4816,goofy,1437960880 +160855,4816,Will Ferrell,1437960875 +160855,4886,Billy Crystal,1437960494 +160855,4886,cute,1437960473 +160855,4886,funny,1437960471 +160855,4886,innovative,1437960480 +160855,4886,John Goodman,1437960486 +160855,4886,Steve Buscemi,1437960476 +160855,4896,Fantasy,1437933864 +160855,4896,fantasy world,1437933876 +160855,4896,harry potter,1437933871 +160855,4896,Magic,1437933863 +160855,4896,Wizards,1437933868 +160855,4963,ensemble cast,1437965612 +160855,4963,feel good movie,1437965610 +160855,4963,Matt Damon,1437965605 +160855,4963,witty,1437965608 +160855,5159,environmental,1438030687 +160855,5159,nostalgic,1438030722 +160855,5159,Robin Williams,1438030708 +160855,5159,Tim Curry,1438030701 +160855,5349,Comic book,1437965698 +160855,5349,Kirsten Dunst,1437965706 +160855,5349,predictable,1437965717 +160855,5349,super-hero,1437965704 +160855,5349,superhero,1437965696 +160855,5349,superheroes,1437965708 +160855,5349,Tobey Maguire,1437965702 +160855,5816,fantasy,1437960528 +160855,5816,fantasy world,1437960534 +160855,5816,harry potter,1437960525 +160855,5816,Magic,1437960524 +160855,5816,Wizards,1437960531 +160855,5991,edgy,1437940528 +160855,5991,jazz,1437940501 +160855,5991,musical,1437940505 +160855,5991,stylized,1437940509 +160855,6377,funny,1437965587 +160855,6377,heartwarming,1437965578 +160855,6377,predictable,1437965582 +160855,6502,atmospheric,1437940453 +160855,6502,Cillian Murphy,1437940457 +160855,6502,epidemic,1437940450 +160855,6502,futuristic,1437940447 +160855,6502,infection,1437940459 +160855,6502,Post apocalyptic,1437940442 +160855,6502,post-apocalyptic,1437940425 +160855,6502,sci-fi,1437940440 +160855,6502,survival,1437940431 +160855,6502,suspense,1437940438 +160855,6502,thought-provoking,1437940475 +160855,6502,thriller,1437940436 +160855,6502,virus,1437940462 +160855,6502,visually appealing,1437940433 +160855,6502,Zombie,1437940429 +160855,6502,zombies,1437940427 +160855,6539,adventure,1437931156 +160855,6539,johnny depp,1437931152 +160855,6936,christmas,1437940307 +160855,6936,comedy,1437940311 +160855,6936,cute,1437940330 +160855,6936,fun,1437940325 +160855,6936,funny,1437940320 +160855,6936,heartwarming,1437940343 +160855,6936,Peter Dinklage,1437940353 +160855,6936,silly,1437940313 +160855,6936,sweet,1437940335 +160855,6936,Will Ferrell,1437940304 +160855,6936,Zooey Deschanel,1437940309 +160855,7451,Amy Poehler,1437940233 +160855,7451,clever,1437940214 +160855,7451,funny,1437940225 +160855,7451,Rachel McAdams,1437940228 +160855,7451,Teen movie,1437940255 +160855,7451,Tina Fey,1437940169 +160855,8361,apocalypse,1437940101 +160855,8361,catastrophe,1437940097 +160855,8361,climate change,1437940109 +160855,8361,end of the world,1437940130 +160855,8361,Environmental,1437940116 +160855,8361,global warming,1437940105 +160855,8361,Jake Gyllenhaal,1437940107 +160855,8361,natural disaster,1437940099 +160855,8361,Post apocalyptic,1437940103 +160855,8361,post-apocalyptic,1437940126 +160855,8361,sci-fi,1437940134 +160855,8361,weather,1437940118 +160855,8368,fantasy,1437940059 +160855,8368,fantasy world,1437940063 +160855,8368,harry potter,1437940050 +160855,8368,Magic,1437940048 +160855,8533,Rachel McAdams,1437933984 +160855,8533,romance,1437933976 +160855,8533,Ryan Gosling,1437933979 +160855,8533,sentimental,1437933981 +160855,8641,comedy,1437939835 +160855,8641,funny,1437939845 +160855,8641,hilarious,1437939842 +160855,8641,Paul Rudd,1437939852 +160855,8641,Steve Carell,1437939839 +160855,8641,Will Ferrell,1437939837 +160855,8644,dystopia,1437932814 +160855,8644,future,1437932806 +160855,8644,futuristic,1437932804 +160855,8644,sci-fi,1437932801 +160855,8644,thought provoking,1437932809 +160855,8961,fun,1437939919 +160855,8961,super-hero,1437939898 +160855,8961,superhero,1437939894 +160855,8961,superheroes,1437939908 +160855,8970,bittersweet,1437939956 +160855,8970,fairy tale,1437939959 +160855,8970,fantasy,1437939954 +160855,8970,Heartwarming,1437939948 +160855,8970,Johnny Depp,1437939944 +160855,8970,Kate Winslet,1437939946 +160855,8970,Peter Pan,1437939951 +160855,8972,intellectual,1437960822 +160855,8972,puzzle solving,1437960815 +160855,8972,unrealistic,1437960857 +160855,8978,Christmas,1437959913 +160855,8978,feel good,1437959940 +160855,8978,funny,1437959933 +160855,8978,Jamie Lee Curtis,1437959928 +160855,8978,Tim Allen,1437959918 +160855,30816,bittersweet,1438121707 +160855,30816,dark,1438121747 +160855,30816,Emmy Rossum,1438121732 +160855,30816,Gerard Butler,1438121699 +160855,30816,Musical,1438121693 +160855,30816,Romance,1438121703 +160855,30816,visually appealing,1438121695 +160855,33493,big budget,1437933513 +160855,33493,dark,1437933493 +160855,33493,Ewan McGregor,1437933500 +160855,33493,fantasy,1437933502 +160855,33493,George Lucas,1437933498 +160855,33493,Hayden Christensen,1437933505 +160855,33493,Natalie Portman,1437933495 +160855,33493,sci-fi,1437933492 +160855,33493,space,1437933490 +160855,33493,Star Wars,1437933488 +160855,33794,atmospheric,1437966040 +160855,33794,batman,1437966035 +160855,33794,Christian Bale,1437966033 +160855,33794,comic book,1437966045 +160855,33794,dark,1437966037 +160855,33794,melancholy,1437966055 +160855,33794,Morgan Freeman,1437966047 +160855,33794,stylized,1437966050 +160855,33794,super-hero,1437966042 +160855,33794,superhero,1437966031 +160855,33794,thought-provoking,1437966052 +160855,34150,cheesy,1437962172 +160855,34150,Chris Evans,1437962179 +160855,34150,comic book,1437962176 +160855,34150,Jessica Alba,1437962168 +160855,34150,superhero,1437962166 +160855,34162,buddy movie,1437933636 +160855,34162,Christopher Walken,1437933633 +160855,34162,comedy,1437933623 +160855,34162,funny,1437933628 +160855,34162,Rachel McAdams,1437933638 +160855,34162,silly,1437933641 +160855,34162,vince vaughn,1437933625 +160855,34162,Will Ferrell,1437933632 +160855,35836,comedy,1437933712 +160855,35836,crude humor,1437933731 +160855,35836,funny,1437933716 +160855,35836,hilarious,1437933722 +160855,35836,Judd Apatow,1437933729 +160855,35836,Paul Rudd,1437933724 +160855,35836,Seth Rogen,1437933720 +160855,35836,steve carell,1437933710 +160855,40815,big budget,1437930589 +160855,40815,dark,1437930582 +160855,40815,fantasy,1437930577 +160855,40815,harry potter,1437930571 +160855,40815,Magic,1437930569 +160855,40815,Wizards,1437930575 +160855,44191,Alan Moore,1439431658 +160855,44191,comic book,1439431622 +160855,44191,dark,1439431643 +160855,44191,dystopia,1439431614 +160855,44191,inspirational,1439431632 +160855,44191,Natalie Portman,1439431625 +160855,44191,overacting,1439431736 +160855,44191,philosophical,1439431665 +160855,44191,philosophy,1439431635 +160855,44191,politics,1439431628 +160855,44191,sci-fi,1439431645 +160855,44191,social commentary,1439431620 +160855,44191,thought-provoking,1439431617 +160855,44191,visually appealing,1439431639 +160855,45499,cheesy,1437960707 +160855,45499,comic book,1437940619 +160855,45499,Hugh Jackman,1437940616 +160855,45499,super hero,1437940623 +160855,45499,superhero,1437940614 +160855,45499,superheroes,1437940624 +160855,46970,Amy Adams,1437960673 +160855,46970,hilarious,1437960686 +160855,46970,John C. Reilly,1437960668 +160855,46970,Judd Apatow movie,1437960662 +160855,46970,Molly Shannon,1437960659 +160855,46970,Sacha Baron Cohen,1437960651 +160855,46970,Will Ferrell,1437960647 +160855,47122,brittany snow,1437962107 +160855,47122,fun,1437962116 +160855,47122,funny,1437962112 +160855,47122,Teen movie,1437962099 +160855,47999,documentary,1439906690 +160855,51834,18th century,1440467674 +160855,51834,Anne Hathaway,1440467692 +160855,51834,James McAvoy,1440467698 +160855,51834,Jane Austen,1440467687 +160855,51834,romance,1440467676 +160855,52287,cute,1437965122 +160855,52287,Disney,1437965133 +160855,52287,heartwarming,1437965128 +160855,52287,sweet,1437965118 +160855,52328,Cillian Murphy,1437933109 +160855,52328,dark,1437933100 +160855,52328,psychological,1437933113 +160855,52328,psychology,1437933102 +160855,52328,sci-fi,1437933098 +160855,52328,space,1437933096 +160855,52328,spaceships,1437933104 +160855,52435,Christmas,1437933192 +160855,52435,classic,1437933197 +160855,52435,Dr. Seuss,1437933194 +160855,52435,moral,1437933199 +160855,52973,Hilarious,1437931067 +160855,52973,Jason Segel,1437931047 +160855,52973,Judd Apatow,1437931043 +160855,52973,Paul Rudd,1437931040 +160855,52973,Seth Rogen,1437931037 +160855,53125,anti-hero,1437960623 +160855,53125,big budget,1437960616 +160855,53125,Johnny Depp,1437960572 +160855,53125,Keira Knightley,1437960600 +160855,53125,Orlando Bloom,1437960604 +160855,54001,fantasy,1437940553 +160855,54001,harry potter,1437940547 +160855,54001,magic,1437940546 +160855,54259,charlie cox,1437928869 +160855,54259,fairy tale,1437928746 +160855,54259,fantasy,1437928748 +160855,54259,magic,1437928753 +160855,54259,Robert De Niro,1437928751 +160855,54259,romance,1437928759 +160855,54259,whimsical,1437928765 +160855,54503,Bill Hader,1437928620 +160855,54503,crude humor,1437928610 +160855,54503,Emma Stone,1437928613 +160855,54503,hilarious,1437928606 +160855,54503,Seth Rogen,1437928600 +160855,56174,alone in the world,1437932069 +160855,56174,apocalypse,1437932076 +160855,56174,disease,1437932094 +160855,56174,dystopia,1437932089 +160855,56174,post-apocalyptic,1437932065 +160855,56174,sci-fi,1437932086 +160855,56174,survival,1437932072 +160855,56174,virus,1437932074 +160855,56174,zombies,1437932067 +160855,58559,Batman,1437928414 +160855,58559,Christian Bale,1437928419 +160855,58559,Christopher Nolan,1437928428 +160855,58559,comic book,1437928431 +160855,58559,dark,1437928421 +160855,58559,DC Comics,1437928436 +160855,58559,gritty,1437928438 +160855,58559,Heath Ledger,1437928411 +160855,58559,psychology,1437928424 +160855,58559,superhero,1437928416 +160855,58998,Apatow productions,1437931972 +160855,58998,comedy,1437931962 +160855,58998,Jason Segel,1437931964 +160855,58998,Mila Kunis,1437931975 +160855,58998,Paul Rudd,1437931968 +160855,59306,brittany snow,1437965079 +160855,59306,predictable,1437965095 +160855,60069,beautiful scenery,1437938503 +160855,60069,cute,1437938510 +160855,60069,dystopia,1437938474 +160855,60069,emotional,1437938505 +160855,60069,environmental,1437938497 +160855,60069,Future,1437938500 +160855,60069,Post apocalyptic,1437938486 +160855,60069,post-apocalyptic,1437938490 +160855,60069,quirky,1437938493 +160855,60069,Sci-Fi,1437938482 +160855,60069,social commentary,1437938480 +160855,60069,space,1437938483 +160855,60684,alternate history,1437928257 +160855,60684,alternate reality,1437928243 +160855,60684,comic book,1437928232 +160855,60684,dark hero,1437928260 +160855,60684,dystopia,1437928223 +160855,60684,nuclear war,1437928267 +160855,60684,sci-fi,1437928245 +160855,60684,social commentary,1437928251 +160855,60684,stylized,1437928240 +160855,60684,superhero,1437928225 +160855,60684,visually appealing,1437928248 +160855,60756,bromance,1437940942 +160855,60756,buddy comedy,1437940948 +160855,60756,comedy,1437940931 +160855,60756,funny,1437940922 +160855,60756,John C. Reilly,1437940916 +160855,60756,Seth Rogen,1437940929 +160855,60756,will ferrell,1437940913 +160855,61132,Ben Stiller,1437940868 +160855,61132,funny,1437940883 +160855,61132,Jack Black,1437940878 +160855,61132,Matthew McConaughey,1437940890 +160855,61132,parody,1437940871 +160855,61132,Robert Downey Jr.,1437940863 +160855,61132,satire,1437940866 +160855,61132,Tom Cruise,1437940875 +160855,62733,"""found footage""",1440467756 +160855,62733,zombies,1440467754 +160855,64032,Christmas,1437959853 +160855,64032,cute ending,1437959874 +160855,64032,funny,1437959868 +160855,64032,Reese Witherspoon,1437959849 +160855,64032,Vince Vaughn,1437959851 +160855,67087,Andy Samberg,1437940831 +160855,67087,bromance,1437940824 +160855,67087,bromantic,1437940826 +160855,67087,comedy,1437940822 +160855,67087,friendship,1437940818 +160855,67087,Jason Segel,1437940814 +160855,67087,likeable,1437940828 +160855,67087,Paul Rudd,1437940815 +160855,67087,Rashida Jones,1437940835 +160855,68269,Emily Blunt,1437928103 +160855,68269,emotional,1437928142 +160855,68269,historical romance,1437928129 +160855,68269,period piece,1437928118 +160855,68358,big budget,1437927911 +160855,68358,complex plot,1437927930 +160855,68358,future,1437927898 +160855,68358,jj abrams,1437927933 +160855,68358,space,1437927883 +160855,68358,visually appealing,1437927905 +160855,69122,absurd,1437938446 +160855,69122,comedy,1437938433 +160855,69122,Drinking,1437938437 +160855,69122,drugs,1437938443 +160855,69122,funny,1437938448 +160855,69122,Zach Galifianakis,1437938440 +160855,70286,aliens,1437938350 +160855,70286,atmospheric,1437938381 +160855,70286,bleak,1437938414 +160855,70286,genetics,1437938374 +160855,70286,heartbreaking,1437938389 +160855,70286,intelligent sci-fi,1437938369 +160855,70286,sci-fi,1437938360 +160855,70286,social commentary,1437938358 +160855,70286,thoughtful,1437938394 +160855,71535,Bill Murray,1437960313 +160855,71535,clever,1437960353 +160855,71535,comedy,1437960326 +160855,71535,dark comedy,1437960315 +160855,71535,dark humor,1437960351 +160855,71535,Emma Stone,1437960324 +160855,71535,funny,1437960317 +160855,71535,gore,1437960322 +160855,71535,Jesse Eisenberg,1437960334 +160855,71535,parody,1437960328 +160855,71535,post-apocalyptic,1437960311 +160855,71535,stylized violence,1437960340 +160855,71535,witty,1437960330 +160855,71535,Woody Harrelson,1437960319 +160855,71535,zombies,1437960309 +160855,72641,feel good,1437961752 +160855,72641,inspirational,1437961756 +160855,72641,Sandra Bullock,1437961748 +160855,72641,touching,1437961759 +160855,73017,Atmospheric,1437937116 +160855,73017,intellectual,1437937167 +160855,73017,Jude Law,1437937110 +160855,73017,Mark Strong,1437937128 +160855,73017,Mystery,1437937113 +160855,73017,Rachel McAdams,1437937121 +160855,73017,Robert Downey Jr.,1437937105 +160855,73017,Sherlock Holmes,1437937108 +160855,73017,Victorian era,1437937132 +160855,73017,visually appealing,1437937153 +160855,73017,witty,1437937159 +160855,73321,beautiful scenery,1439656188 +160855,73321,Bible,1439656159 +160855,73321,Christianity,1439656156 +160855,73321,dystopia,1439656164 +160855,73321,dystopic future,1439656166 +160855,73321,faith,1439656195 +160855,73321,future,1439656179 +160855,73321,gary oldman,1439656170 +160855,73321,Mila Kunis,1439656172 +160855,73321,post-apocalyptic,1439656153 +160855,73321,religious propaganda,1439656191 +160855,73321,survival,1439656177 +160855,73321,thought-provoking,1439656168 +160855,73321,twist ending,1439656174 +160855,73321,visually appealing,1439656183 +160855,76251,comic book,1437938542 +160855,76251,dark comedy,1437938551 +160855,76251,gritty,1437938568 +160855,76251,quirky,1437938559 +160855,76251,stylized,1437938561 +160855,76251,superhero,1437938538 +160855,78499,bittersweet,1437937044 +160855,78499,childhood,1437937035 +160855,78499,friendship,1437937037 +160855,78499,nostalgic,1437937054 +160855,78499,tear jerker,1437937048 +160855,78499,Tom Hanks,1437937041 +160855,78499,visually appealing,1437937032 +160855,79132,ambiguous ending,1437928014 +160855,79132,big budget,1437928011 +160855,79132,cerebral,1437927989 +160855,79132,Christopher Nolan,1437927980 +160855,79132,Cillian Murphy,1437928018 +160855,79132,clever,1437927983 +160855,79132,complicated,1437927968 +160855,79132,intellectual,1437927975 +160855,79132,Intense,1437928002 +160855,79132,Joseph Gordon-Levitt,1437927998 +160855,79132,Leonardo DiCaprio,1437927963 +160855,79132,mindfuck,1437927965 +160855,79132,psychological,1437928005 +160855,79132,surreal,1437927958 +160855,79132,suspense,1437927991 +160855,79132,thought-provoking,1437927960 +160855,79132,twist ending,1437927985 +160855,79132,unpredictable,1437928025 +160855,79132,visually appealing,1437927956 +160855,79592,buddy movie,1437964743 +160855,79592,funny,1437964748 +160855,79592,Mark Wahlberg,1437964736 +160855,79592,Michael Keaton,1437964741 +160855,79592,silly,1437964754 +160855,79592,Will Ferrell,1437964739 +160855,80463,complex characters,1437936980 +160855,80463,Jesse Eisenberg,1437936970 +160855,80463,Justin Timberlake,1437937007 +160855,80463,visually appealing,1437936998 +160855,80463,witty,1437936983 +160855,81537,comedy,1437964479 +160855,81537,drug use,1437964477 +160855,81537,funny,1437964483 +160855,81537,ridiculous,1437964489 +160855,81537,Robert Downey Jr.,1437964474 +160855,81537,Zach Galifianakis,1437964471 +160855,81591,atmospheric,1439906582 +160855,81591,ballet,1439906590 +160855,81591,creepy,1439906597 +160855,81591,dance,1439906588 +160855,81591,dark,1439906585 +160855,81591,disturbing,1439906608 +160855,81591,insanity,1439906637 +160855,81591,madness,1439906605 +160855,81591,Mila Kunis,1439906595 +160855,81591,mindfuck,1439906641 +160855,81591,music,1439906626 +160855,81591,Natalie Portman,1439906577 +160855,81591,obsession,1439906620 +160855,81591,psychological,1439906579 +160855,81591,stylized,1439906635 +160855,81591,surreal,1439906593 +160855,81591,thriller,1439906601 +160855,81591,twist ending,1439906611 +160855,81591,visceral,1439906624 +160855,81591,Winona Ryder,1439906616 +160855,81834,dark,1437936937 +160855,81834,dark fantasy,1437936947 +160855,81834,Harry Potter,1437936941 +160855,81834,magic,1437936931 +160855,85438,emotional,1437928087 +160855,85438,historical romance,1437928076 +160855,85438,Jamie Bell,1437928057 +160855,85438,Mia Wasikowska,1437928053 +160855,85438,Michael Fassbender,1437928049 +160855,85438,period piece,1437928066 +160855,87232,James McAvoy,1437936874 +160855,87232,Jennifer Lawrence,1437936883 +160855,87232,Michael Fassbender,1437936871 +160855,87232,sci fi,1437936911 +160855,87232,superhero,1437936869 +160855,87232,visually appealing,1437936894 +160855,87232,X-men,1437936888 +160855,88125,Daniel Radcliffe,1437930917 +160855,88125,epic,1437930921 +160855,88125,fantasy,1437930909 +160855,88125,magic,1437930907 +160855,91529,Anne Hathaway,1437940745 +160855,91529,based on a comic,1437940771 +160855,91529,Batman,1437940734 +160855,91529,Christian Bale,1437940737 +160855,91529,Christopher Nolan,1437940739 +160855,91529,comic book,1437940768 +160855,91529,comic books,1437940779 +160855,91529,dark,1437940756 +160855,91529,dark hero,1437940758 +160855,91529,dystopia,1437940774 +160855,91529,Gary Oldman,1437940753 +160855,91529,intense,1437940767 +160855,91529,Joseph Gordon-Levitt,1437940747 +160855,91529,Michael Caine,1437940749 +160855,91529,Morgan Freeman,1437940764 +160855,91529,plot twist,1437940751 +160855,91529,superhero,1437940741 +160855,91529,Tom Hardy,1437940762 +160855,91542,intellectual,1437960746 +160855,91542,Jude Law,1437960724 +160855,91542,period piece,1437960759 +160855,91542,Robert Downey Jr.,1437960722 +160855,91542,sherlock holmes,1437960733 +160855,91542,visually appealing,1437960754 +160855,91542,witty,1437960740 +160855,93510,Channing Tatum,1438039670 +160855,93510,drugs,1438039659 +160855,93510,funny,1438039667 +160855,93510,Jonah Hill,1438039664 +160855,93510,parody,1438039675 +160855,94864,aliens,1437931706 +160855,94864,Charlize Theron,1437931716 +160855,94864,dark,1437931736 +160855,94864,future,1437931759 +160855,94864,Michael Fassbender,1437931712 +160855,94864,Ridley Scott,1437931710 +160855,94864,sci-fi,1437931719 +160855,94864,scifi,1437931708 +160855,94864,space,1437931753 +160855,94864,suspenseful,1437931742 +160855,97304,Ben Affleck,1437936832 +160855,97304,Political Thriller,1437936846 +160855,97304,suspenseful,1437936827 +160855,97304,thriller,1437936834 +160855,99114,Leonardo DiCaprio,1437936784 +160855,99114,visually appealing,1437936800 +160855,101283,funny,1437964716 +160855,101283,goofy,1437964706 +160855,101283,jim carrey,1437964682 +160855,101283,silly,1437964711 +160855,101283,steve buscemi,1437964699 +160855,101283,Steve Carell,1437964684 +160855,101864,dystopia,1437934618 +160855,101864,post-apocalyptic,1437934610 +160855,101864,sci-fi,1437934612 +160855,101864,Tom Cruise,1437934622 +160855,102445,Anton Yelchin,1437934494 +160855,102445,J.J. Abrams,1437934484 +160855,102445,science fiction,1437934463 +160855,102445,space,1437934433 +160855,102445,Star Trek,1437934435 +160855,103042,Christopher Nolan,1437938606 +160855,103042,comic book,1437938599 +160855,103042,gritty,1437938617 +160855,103042,Henry Cavill,1437938638 +160855,103042,sci fi,1437938624 +160855,103042,superhero,1437938593 +160855,103042,Superman,1437938595 +160855,103042,visually appealing,1437938590 +160855,103042,Zack Snyder,1437938596 +160855,103249,action,1440467814 +160855,103249,pandemic,1440467800 +160855,103249,social commentary,1440467823 +160855,103249,zombies,1440467795 +160855,104211,drugs,1437964984 +160855,104211,Emma Roberts,1437964986 +160855,104211,funny,1437964991 +160855,104211,Jason Sudeikis,1437964981 +160855,104211,Jennifer Aniston,1437964979 +160855,104841,atmospheric,1437939811 +160855,104841,beautiful,1437939794 +160855,104841,intense,1437939777 +160855,104841,isolation,1437939808 +160855,104841,physics,1437939775 +160855,104841,sandra bullock,1437939771 +160855,104841,sci-fi,1437939797 +160855,104841,science,1437939792 +160855,104841,setting:space,1437939801 +160855,104841,space,1437939768 +160855,104841,suspense,1437939773 +160855,104841,visually appealing,1437939765 +160855,104841,visually stunning,1437939786 +160855,107406,chris evans,1437929104 +160855,107406,dark,1437929122 +160855,107406,dystopia,1437929098 +160855,107406,gritty,1437929132 +160855,107406,jamie bell,1437929115 +160855,107406,post-apocalyptic,1437929096 +160855,107406,social commentary,1437929100 +160855,108932,Batman,1437933329 +160855,108932,clever,1437933336 +160855,108932,fun,1437933332 +160855,108932,quirky,1437933340 +160855,109487,Anne Hathaway,1437959049 +160855,109487,Christopher Nolan,1437959026 +160855,109487,good science,1437959046 +160855,109487,Matthew McConaughey,1437959039 +160855,109487,philosophical issues,1437959055 +160855,109487,physics,1437959044 +160855,109487,relativity,1437959037 +160855,109487,sci-fi,1437959033 +160855,109487,science fiction,1437959063 +160855,109487,sentimental,1437959059 +160855,109487,space,1437959028 +160855,109487,thought-provoking,1437959035 +160855,109487,time travel,1437959053 +160855,109487,time-travel,1437959031 +160855,109487,visually appealing,1437959074 +160855,109487,wormhole,1437959042 +160855,110730,artificial intelligence,1440167701 +160855,110730,computers,1440167717 +160855,110730,impossible science,1440167708 +160855,110730,Johnny Depp,1440167705 +160855,110730,Morgan Freeman,1440167721 +160855,111759,Alien Invasion,1439421019 +160855,111759,aliens,1439421022 +160855,111759,Emily Blunt,1439420994 +160855,111759,future,1439421010 +160855,111759,sci-fi,1439420987 +160855,111759,Tom Cruise,1439420990 +160855,112183,alter ego,1440467596 +160855,112183,dark,1440467598 +160855,112183,Edward Norton,1440467579 +160855,112183,emma stone,1440467614 +160855,112183,great performances,1440467576 +160855,112183,magical realism,1440467584 +160855,112183,Michael Keaton,1440467593 +160855,112183,psychological,1440467590 +160855,112183,satire,1440467587 +160855,112183,single shot,1440467582 +160855,112183,surreal,1440467610 +160855,112852,Chris Pratt,1439421081 +160855,112852,fantasy,1439421074 +160855,112852,fun,1439421068 +160855,112852,great soundtrack,1439421058 +160855,112852,Great Visuals,1439421080 +160855,112852,Marvel,1439421063 +160855,112852,sci-fi,1439421065 +160855,112852,science fiction,1439421091 +160855,112852,space,1439421061 +160855,112852,Vin Diesel,1439421078 +160855,117176,biography,1440004925 +160855,117176,emotional,1440004941 +160855,117176,inspiring,1440004957 +160855,117176,love,1440004936 +160855,117176,physics,1440004923 +160855,117176,science,1440004928 +160855,117176,Stephen Hawking,1440004921 +160855,117176,sweet,1440004952 +160855,117176,True story,1440004932 +160879,47,Brad Pitt,1325779897 +160879,47,detective,1325779914 +160879,47,Morgan Freeman,1325779899 +160879,47,serial killer,1325779895 +160879,508,Exceptional Acting,1352038975 +160879,508,Tom Hanks,1352038969 +160879,527,1930s,1324233016 +160879,527,biography,1324233019 +160879,527,history,1324232975 +160879,527,Holocaust,1324232966 +160879,527,Liam Neeson,1324233032 +160879,527,literary adaptation,1324233021 +160879,527,long,1324233047 +160879,527,Steven Spielberg,1324232970 +160879,527,true story,1324232960 +160879,527,violent,1324232984 +160879,527,World War II,1324232999 +160879,593,Anthony Hopkins,1324232847 +160879,593,cannibalism,1324232879 +160879,593,disturbing,1324232884 +160879,593,Hannibal Lecter,1324232881 +160879,593,Jodie Foster,1324232850 +160879,593,psychological,1324232868 +160879,593,psychology,1324232852 +160879,593,serial killer,1324232860 +160879,593,violent,1324232866 +160879,608,black comedy,1411525145 +160879,608,dark comedy,1411525148 +160879,1092,crime,1325950440 +160879,1092,Erotic,1325950396 +160879,1092,Erotic Thriller,1325950398 +160879,1092,Michael Douglas,1325950436 +160879,1092,Paul Verhoeven,1325950419 +160879,1092,Sharon Stone,1325950403 +160879,1092,suspense,1325950405 +160879,1391,alien invasion,1325944539 +160879,1391,aliens,1325944535 +160879,1391,stupid,1325944530 +160879,1580,absurd,1348184318 +160879,1580,Tommy Lee Jones,1348184278 +160879,1580,Will Smith,1348184289 +160879,1784,Helen Hunt,1325944399 +160879,1784,Jack Nicholson,1325944385 +160879,1784,neurosis,1325944421 +160879,1784,obsessive compulsive disorder,1325944405 +160879,1784,psychology,1325944391 +160879,3147,Tom Hanks,1335153859 +160879,5630,Anthony Hopkins,1325944642 +160879,5630,Edward Norton,1325944736 +160879,5630,emily watson,1325944731 +160879,5630,FBI,1325944741 +160879,5630,Hannibal Lecter,1325944641 +160879,5630,Philip Seymour Hoffman,1325944655 +160879,5630,psychology,1325944651 +160879,5630,Ralph Fiennes,1325944733 +160879,5630,remake,1325944675 +160879,5630,serial killer,1325944646 +160879,5630,torture,1325944678 +160879,6155,Kate Hudson,1352039335 +160879,6214,brutal,1325950565 +160879,6214,constantly rotating filming,1325950621 +160879,6214,controversial,1325950626 +160879,6214,disturbing,1325950623 +160879,6214,graphic violence,1325950567 +160879,6214,Monica Bellucci,1325950587 +160879,6214,rape,1325950608 +160879,6214,reverse timeline,1325950634 +160879,6214,Vincent Cassel,1325950630 +160879,6287,Adam Sandler,1325944480 +160879,6287,funny,1325944499 +160879,6287,Jack Nicholson,1325944475 +160879,6287,psychology,1325944491 +160879,6373,Jennifer Aniston,1325944166 +160879,6373,Jim Carrey,1325944163 +160879,6870,Sean Penn,1325780445 +160879,7173,Ben Stiller,1325944252 +160879,7173,funny,1325944270 +160879,7173,jennifer aniston,1325944250 +160879,7173,Philip Seymour Hoffman,1325944264 +160879,7254,Ashton Kutcher,1325943567 +160879,7254,memory,1325943592 +160879,7254,psychology,1325943558 +160879,7254,science fiction,1325943617 +160879,7254,thought-provoking,1325943579 +160879,7361,Jim Carrey,1336702676 +160879,7361,love story,1336702703 +160879,7361,psychology,1336702683 +160879,7361,relationships,1336702701 +160879,7361,thought-provoking,1336702696 +160879,30825,Ben Stiller,1335153078 +160879,30825,Dustin Hoffman,1335153081 +160879,30825,Robert De Niro,1335153083 +160879,51540,based on a true story,1325780565 +160879,51540,crime,1325780630 +160879,51540,obsession,1325780575 +160879,51540,serial killer,1325780569 +160879,57526,Colin Hanks,1325950187 +160879,57526,computer crimes,1325950179 +160879,57526,FBI,1325950228 +160879,57526,hacking,1325950206 +160879,57526,Joseph Cross,1325950185 +160879,57526,police,1325950228 +160879,57526,serial killer,1325950182 +160879,59369,crime,1325943287 +160879,59369,Liam Neeson,1325943323 +160879,59369,thriller,1325943284 +160879,59369,unrealistic,1325943300 +160879,63062,angelina jolie,1324232740 +160879,63062,police corruption,1324232751 +160879,63062,political,1324232754 +160879,74458,psychological,1325780407 +160879,74458,twist ending,1325780413 +160879,78679,based on a book,1324294493 +160879,78679,Casey Affleck,1324294495 +160879,78679,Graphic violence,1324294515 +160879,78679,Jessica Alba,1324294480 +160879,78679,police,1324294581 +160879,78679,psychotic killer,1324294488 +160879,78679,thriller,1324294581 +160879,79132,complicated,1325780513 +160879,79132,music,1325780528 +160879,79132,thought-provoking,1325780522 +160879,83579,Argentina,1335154043 +160879,83579,Leonardo Sbaraglia,1335154045 +160879,83579,suspense,1335154048 +160879,85414,intelligent,1325943522 +160879,85414,Jake Gyllenhaal,1325943507 +160879,85414,parallel universe,1325943504 +160879,85414,suspense,1325943524 +160879,85414,time loop,1325943497 +160879,85414,time travel,1325943496 +160879,85774,Ayrton Senna,1324599571 +160879,85774,Formula 1 racing,1324599573 +160879,85774,long,1324599587 +160879,85774,true story,1324599575 +160879,88125,based on a book,1324233274 +160879,88125,Emma Watson,1324233240 +160879,88125,fantasy,1324233295 +160879,88125,magic,1324233339 +160879,88125,school,1324233353 +160879,88744,bad science,1335152530 +160879,88744,genetics,1335152539 +160879,88744,virus,1335152536 +160879,89470,bad science,1324233424 +160879,89470,disappointing,1324233429 +160879,89470,hollywood ending,1324233432 +160879,89470,unrealistic,1324233445 +160879,90405,weak plot,1350700487 +160879,91500,lack of character development,1348184604 +160879,91500,reality TV,1348184554 +160879,91500,slow paced,1348184581 +160879,91500,thriller,1348184471 +160879,91500,Video Game like,1348184512 +160879,91529,Anne Hathaway,1353960181 +160879,91529,bad science,1353960195 +160879,91529,Christian Bale,1353960126 +160879,91529,ending,1353960136 +160879,91529,Morgan Freeman,1353960176 +160879,92259,acting,1355279804 +160879,92259,based on a true story,1355279790 +160879,92259,emotional,1355279791 +160879,92259,friendship,1355279798 +160879,92259,soundtrack,1355279800 +160879,93982,John Cusack,1354914444 +160879,93982,Poe,1354914439 +160879,93982,serial killer,1354914442 +160879,94677,silly,1351977203 +160879,95441,Mila Kunis,1360805790 +160879,95441,predictable,1360805767 +160879,95441,Unfunny,1360805768 +160879,96861,estambul,1351466084 +160879,96861,kidnapping,1351465991 +160879,96861,Liam Neeson,1351465995 +160879,101360,ending,1368839865 +160879,101360,serial killer,1368839835 +160879,101360,suspense,1368839849 +160879,103017,twisted ending,1410910858 +160879,104879,Hugh Jackman,1386972315 +160879,104879,Jake Gyllenhaal,1386972311 +160879,106487,Jennifer Lawrence,1393903374 +160879,106916,Bradley Cooper,1411093870 +160879,106916,Jennifer Lawrence,1411093867 +160879,106916,soundtrack,1411093876 +160895,356,bildungsroman,1356507921 +160895,356,classic,1356507860 +160895,356,funny,1356507876 +160895,356,long,1356507930 +160895,356,Tom Hanks,1356507876 +160895,431,Al Pacino,1358921148 +160895,1704,classic,1356507823 +160895,1704,feel-good,1356507823 +160895,1704,Good Romantic Comedies,1356507823 +160895,1704,intelligent,1356507823 +160895,1704,Matt Damon,1356507823 +160895,1704,Robin Williams,1356507823 +160895,1704,romanc,1356507823 +160895,1704,smart,1356507823 +160895,1704,uplifting,1356507823 +160895,2028,Oscar (Best Cinematography),1356507212 +160895,2028,Tom Hanks,1356507191 +160895,2028,war,1356507184 +160895,2858,bildungsroman,1356508107 +160895,2858,bittersweet,1356508107 +160895,2858,coming of age,1356508107 +160895,2858,dark comedy,1356508125 +160895,2858,dark humo,1356508107 +160895,2858,Kevin Spacey,1356508107 +160895,2858,Oscar (Best Picture),1356508107 +160895,2858,satirical,1356508106 +160895,2858,thought-provoking,1356508125 +160895,3252,Al Pacino,1358921144 +160895,3489,cheesy,1356507604 +160895,3489,father-son relationship,1356507604 +160895,3489,fun,1356507624 +160895,3489,Hokey,1356507604 +160895,3489,Robin Williams,1356507624 +160895,3489,uplifting,1356507624 +160895,4226,drags,1388565851 +160895,4370,androids,1356507424 +160895,4370,beautiful,1356507424 +160895,4370,bittersweet,1356507424 +160895,4370,dystop,1356507424 +160895,4370,future,1356507424 +160895,4370,Steven Spielberg,1356507424 +160895,4878,atmospheric,1356508217 +160895,4878,beautiful,1356508216 +160895,4878,dark,1356508217 +160895,4878,meaningful,1356508216 +160895,4878,mental illness,1356508217 +160895,4878,philosophy,1356508217 +160895,4878,psychology,1356508217 +160895,4878,satire,1356508217 +160895,4878,social commentary,1356508216 +160895,4878,twist ending,1356508217 +160895,5989,Tom Hanks,1356507512 +160895,7022,confusing,1356643602 +160895,7022,less artistic than it thinks,1388565883 +160895,7022,strange,1388565864 +160895,7022,ultraviolence,1388565899 +160895,8529,drama,1356507531 +160895,8529,funny,1356507531 +160895,8529,Tom Hanks,1356507531 +160895,34048,cliche,1356507455 +160895,34048,father daughter relationship,1356507455 +160895,51662,gore,1356507365 +160895,51662,over the top,1356507365 +160895,51662,rape,1356507365 +160895,51662,Sexualized violence,1356507365 +160895,51662,war,1356507386 +160895,58559,atmospheric,1356507993 +160895,58559,Batman,1356507950 +160895,58559,comic book,1356507993 +160895,58559,corruption,1356507950 +160895,58559,dystopia,1356508004 +160895,58559,epic,1356507950 +160895,58559,morality,1356507993 +160895,58559,Morgan Freeman,1356507993 +160895,58559,psychology,1356507993 +160895,58559,superhero,1356507993 +160895,58559,violence,1356507993 +160895,68157,black comedy,1356507279 +160895,68157,gore,1356507279 +160895,68157,satire,1356507292 +160895,68157,war,1356507292 +160895,87306,unbelievable,1356507568 +160895,90746,animation,1356507497 +160895,90746,fast paced,1356507497 +160895,90746,Steven Spielberg,1356507497 +160895,94959,Bruce Willis,1356507767 +160895,94959,fantasy,1356507756 +160895,94959,fun,1356507757 +160895,94959,meaningful,1356507757 +160895,94959,stylized,1356507757 +160895,94959,Wes Anderson,1356507772 +160895,97921,challenges gender roles,1388565971 +160895,97921,father-son relationship,1388565971 +160895,97921,mental illness,1388565953 +160895,99114,exciting,1388565919 +160895,99114,good acting,1388565925 +160895,99114,slavery,1388565934 +160895,99114,some cliches,1388565910 +160895,103228,doesn't kid itself,1388565830 +160895,103228,giant robots,1388565796 +160895,103228,ridiculous,1388565802 +160895,103228,silly,1388565785 +160898,19,silly fun,1367693825 +160898,29,strange,1367694042 +160898,29,visual,1367693877 +160898,165,lone hero,1367693914 +160898,353,dark hero,1367693856 +160898,592,dark hero,1367693855 +160898,1073,imagination,1367694173 +160898,1079,british comedy,1367694274 +160898,1129,lone hero,1367693914 +160898,1199,imagination,1367694173 +160898,1377,dark hero,1367693856 +160898,1431,silly fun,1367693825 +160898,1527,visual,1367693877 +160898,1588,silly fun,1367693825 +160898,1641,british comedy,1367694274 +160898,1732,off-beat comedy,1367693930 +160898,1967,fantasy world,1367694228 +160898,2076,strange,1367694042 +160898,2096,fairy tales,1367693965 +160898,2116,wizards,1367694079 +160898,2140,fantasy world,1367694228 +160898,2161,fantasy world,1367694228 +160898,2161,imagination,1367694173 +160898,2193,fantasy world,1367694228 +160898,2193,wizards,1367694079 +160898,2335,comedy,1367693946 +160898,2788,british comedy,1367694274 +160898,2968,imagination,1367694173 +160898,2997,modern fantasy,1367693993 +160898,3146,comedy,1367693946 +160898,3262,strange,1367694042 +160898,3676,strange,1367694042 +160898,3703,lone hero,1367693914 +160898,3704,lone hero,1367693914 +160898,4062,chick flick,1367694057 +160898,4069,chick flick,1367694057 +160898,4700,girlie movie,1367694006 +160898,4816,comedy,1367693946 +160898,4823,chick flick,1367694057 +160898,4973,atmospheric,1334799969 +160898,4973,beautifully filmed,1334799943 +160898,4973,comedy,1334799963 +160898,4973,imagination,1367694173 +160898,4973,magic,1334799981 +160898,4973,Paris,1334799958 +160898,4973,quirky,1334799947 +160898,4973,romance,1334799955 +160898,4973,stylized,1334799952 +160898,4973,surreal,1334799948 +160898,4973,whimsical,1334799950 +160898,4979,off-beat comedy,1367693930 +160898,5618,imagination,1367694173 +160898,5943,chick flick,1367694057 +160898,5952,wizards,1367694079 +160898,6155,girlie movie,1367694006 +160898,6188,comedy,1367693946 +160898,7044,strange,1367694042 +160898,7153,wizards,1367694079 +160898,7173,comedy,1367693946 +160898,7444,girlie movie,1367694006 +160898,8360,fairy tales,1367693964 +160898,8641,comedy,1367693946 +160898,8910,off-beat comedy,1367693930 +160898,8969,girlie movie,1367694006 +160898,8983,amazing photography,1367694191 +160898,30810,off-beat comedy,1367693930 +160898,31685,chick flick,1367694057 +160898,32587,visual,1367693877 +160898,34072,amazing photography,1367694191 +160898,48394,modern fantasy,1367693993 +160898,49286,chick flick,1367694057 +160898,51662,visual,1367693877 +160898,69844,wizards,1367694079 +160898,88405,Justin Timberlake,1322889073 +160898,88405,Mila Kunis,1322889073 +160904,858,classic and atmospheric,1353105329 +160904,1136,quirky but good,1353105214 +160904,1214,exciting,1353105189 +160904,1223,entertaining,1353105363 +160904,3429,funny and cute,1353105288 +160950,260,action,1439652217 +160950,260,space opera,1439652199 +160957,527,2nd world war,1429468035 +160957,527,humanism,1429468035 +160957,527,nazi,1429468035 +160957,4975,remake,1432077231 +160957,76158,erotic,1379620870 +160957,115713,artificial intelligence,1431868953 +160957,115713,philosophical,1431868975 +160957,115713,robots,1431868955 +160957,115713,sci-fi,1431868963 +160975,60074,its so awesome!!,1307232733 +160976,260,Star Wars,1275840585 +160976,296,Mafia,1299441984 +160976,296,organized crime,1299441978 +160976,296,Quentin Tarantino,1299441966 +160976,296,Samuel L. Jackson,1299441968 +160976,296,stylized,1299441975 +160976,588,Robin Williams,1275836110 +160976,1080,John Cleese,1275841192 +160976,1136,British,1275921128 +160976,1136,british comedy,1275921155 +160976,1136,comedy,1275921130 +160976,1136,funny,1275921145 +160976,1136,hilarious,1275921126 +160976,1136,humorous,1275921134 +160976,1136,John Cleese,1275841186 +160976,1136,Monty Python,1275921158 +160976,1136,parody,1275921135 +160976,1136,satirical,1275921141 +160976,1136,spoof,1275921143 +160976,1136,Terry Gilliam,1275921139 +160976,1196,Star Wars,1275840588 +160976,1198,Indiana Jones,1275841094 +160976,1210,Star Wars,1275840591 +160976,1230,comedy,1276265283 +160976,1230,Woody Allen,1276265278 +160976,1246,School,1275838957 +160976,1291,Indiana Jones,1275841087 +160976,2005,Childern,1275854423 +160976,2105,Ridiculous,1275831059 +160976,2115,Indiana Jones,1275841090 +160976,2116,Lord Of the Rings,1275840650 +160976,2167,Badass,1299442250 +160976,2167,Sword Fight,1299442265 +160976,2273,Action,1275920725 +160976,2273,Chris Tucker,1275920744 +160976,2273,Comedy,1275920719 +160976,2273,Funny,1275920735 +160976,2273,Jackie Chan,1275920715 +160976,2273,Martial Arts,1275920710 +160976,2273,Rush Hour,1275920764 +160976,2273,Rush Hour Series,1275920770 +160976,2502,comedy,1275920501 +160976,2502,corporate America,1275920504 +160976,2502,cult classic,1275920509 +160976,2502,Gary Cole,1275920553 +160976,2502,Hilarious,1275920540 +160976,2502,Jennifer Aniston,1275920520 +160976,2502,mike judge,1275920512 +160976,2502,Office,1275920561 +160976,2502,quirky,1275920515 +160976,2502,satire,1275920517 +160976,2502,slackers,1275920524 +160976,2502,workplace,1275920522 +160976,2571,Matrix,1275841258 +160976,2628,Star Wars,1275840573 +160976,2788,John Cleese,1275841189 +160976,2791,Aviation,1275840971 +160976,2791,classic,1275840971 +160976,2791,comedy,1275840971 +160976,2791,Parody,1275840971 +160976,2791,Slapstick,1275840971 +160976,2791,slapstick humor,1275840971 +160976,2792,Aviation,1275840922 +160976,2792,Parody,1275840922 +160976,2792,Slapstick,1275840922 +160976,2792,slapstick humor,1275840922 +160976,3052,Ben Affleck,1276263885 +160976,3052,Chris Rock,1276263874 +160976,3052,jay and silent bob,1276263852 +160976,3052,Matt Damon,1276263859 +160976,3785,Scary movie series,1275835644 +160976,4011,Brad Pitt,1299442611 +160976,4350,documentary,1275919610 +160976,4369,cars,1275831151 +160976,4388,Scary movie series,1275835638 +160976,4701,action,1275920815 +160976,4701,Chris Tucker,1275920800 +160976,4701,Comedy,1275920819 +160976,4701,Jackie Chan,1275920802 +160976,4701,kung fu,1275920805 +160976,4701,martial arts,1275920804 +160976,4701,Rush Hour,1275920781 +160976,4701,Rush Hour Series,1275920789 +160976,4896,Harry Potter,1275839072 +160976,4993,Action,1275920485 +160976,4993,adventure,1275920486 +160976,4993,Based on a book,1275840772 +160976,4993,Fantasy,1275840772 +160976,4993,imdb top 250,1275920479 +160976,4993,Lord of the Rings,1275840772 +160976,4993,Oscar (Best Cinematography),1275840772 +160976,4993,Tolkien,1275840706 +160976,5288,documentary,1275919634 +160976,5378,action,1275921079 +160976,5378,adventure,1275921080 +160976,5378,franchise,1275921050 +160976,5378,futuristic,1275921051 +160976,5378,George Lucas,1275921032 +160976,5378,robots,1275921060 +160976,5378,Samuel L. Jackson,1275921029 +160976,5378,sci-fi,1275921065 +160976,5378,sequel,1275921069 +160976,5378,space,1275921072 +160976,5378,Star Wars,1275840578 +160976,5378,war,1275921076 +160976,5418,Matt Damon,1275836419 +160976,5621,Action,1275920664 +160976,5621,Comedy,1275920658 +160976,5621,DVD,1275920671 +160976,5621,Jackie Chan,1275920621 +160976,5621,Martial Arts,1275920682 +160976,5816,Harry Potter,1275839041 +160976,5952,Based on a book,1275840842 +160976,5952,Fantasy,1275840842 +160976,5952,Tolkien,1275840704 +160976,6104,John Cleese,1275841181 +160976,6365,action,1275920408 +160976,6365,big budget,1275920392 +160976,6365,dystopia,1275920389 +160976,6365,future,1275920376 +160976,6365,Keanu Reeves,1275920369 +160976,6365,Laurence Fishburne,1275920428 +160976,6365,Matrix,1275841249 +160976,6365,post-apocalyptic,1275920401 +160976,6365,thought-provoking,1275920402 +160976,6365,Trilogy,1275921008 +160976,6378,con men,1299442490 +160976,6378,heist,1299442478 +160976,6378,Jason Statham,1299442480 +160976,6378,Mark Wahlberg,1299442508 +160976,6378,remake,1299442505 +160976,6378,robbery,1299442485 +160976,6378,twists & turns,1299442487 +160976,6383,cars,1275831137 +160976,6539,Johnny Depp,1275836538 +160976,6807,John Cleese,1275841195 +160976,6888,Scary movie series,1275835619 +160976,6934,Matrix,1275841254 +160976,7153,Based on a book,1275840823 +160976,7153,Fantasy,1275840823 +160976,7153,lord of the rings,1275840823 +160976,7153,Oscar (Best Picture),1275840823 +160976,7153,Tolkien,1275840705 +160976,8368,Harry Potter,1275839064 +160976,8622,anti-Bush,1275921330 +160976,8622,controversial,1275921334 +160976,8622,corruption,1275921355 +160976,8622,documentary,1275921313 +160976,8622,Michael Moore,1275921294 +160976,8622,Middle East,1275921298 +160976,8622,Political,1275921306 +160976,8622,social commentary,1275921345 +160976,8622,Terrorism,1275921311 +160976,8665,Matt Damon,1275836426 +160976,26403,2D animation,1275920975 +160976,26403,adapted from:book,1275920943 +160976,26403,author:J. R. R. Tolkein,1275920948 +160976,26403,based on a book,1275920943 +160976,26403,cheesy,1275920924 +160976,26403,dragon,1275920929 +160976,26403,dragons,1275920930 +160976,26403,hobbit,1275920933 +160976,26403,Tolkein,1275920937 +160976,32825,feminist society,1276264113 +160976,32825,Nudity (Full Frontal),1276264119 +160976,33493,Star Wars,1275840582 +160976,33794,Batman,1275855552 +160976,34405,based on TV series,1275853907 +160976,34405,Firefly,1275853907 +160976,44972,Scary movie series,1275835648 +160976,45672,Christopher Walken,1276263751 +160976,45672,New York City,1276263755 +160976,45672,remote control,1276263718 +160976,45672,slapstick,1276263723 +160976,45722,Johnny Depp,1275836544 +160976,49225,Documentary,1275919656 +160976,53125,Johnny Depp,1275836548 +160976,54286,Matt Damon,1275836437 +160976,54648,big budget,1275920842 +160976,54648,cheesy,1275920847 +160976,54648,Chris Tucker,1275920834 +160976,54648,comedy,1275920835 +160976,54648,Jackie Chan,1275920838 +160976,54648,kung fu,1275920840 +160976,54648,Rush Hour Series,1275920864 +160976,55071,documentary,1275919620 +160976,56367,comedy,1276263576 +160976,56367,cult film,1276263580 +160976,56367,Ellen Page,1276263610 +160976,56367,imdb top 250,1276263623 +160976,56367,pregnancy,1276263564 +160976,56367,teen,1276263617 +160976,56367,teenagers,1276263615 +160976,56757,cannibalism,1275853823 +160976,56757,dark comedy,1275853767 +160976,56757,Musical,1275853749 +160976,56757,Serial killer,1275853823 +160976,56757,weird,1275853823 +160976,59315,Iron Man,1275855538 +160976,59315,superhero,1299442289 +160976,59615,Aliens,1275841117 +160976,59615,Indiana Jones,1275841118 +160976,61160,Star Wars,1275840595 +160976,65135,British,1275920251 +160976,65135,Christmas,1275920258 +160976,65135,Hugh Laurie,1275920268 +160976,65135,Rowan Atkinson,1275920224 +160976,65135,Stephen Fry,1275920264 +160976,65135,Xmas theme,1275920241 +160976,66934,joss whedon,1276264031 +160976,66934,musical,1276264058 +160976,66934,Nathan Fillion,1276264037 +160976,66934,Neil Patrick Harris,1276264033 +160976,66934,not a movie,1276264071 +160976,66934,too short,1276264075 +160976,67923,cars,1275831140 +160976,69945,cars,1275831143 +160976,72226,George Clooney,1275920446 +160976,76093,vikings,1276264018 +160976,77561,based on a comic,1275920304 +160976,77561,comic book,1275920301 +160976,77561,Iron Man,1275855522 +160976,77561,Marvel,1275920325 +160976,77561,Robert Downey Jr.,1275920296 +160976,77561,Samuel L. Jackson,1275920321 +160976,77561,sequel,1275920316 +160976,79132,complicated,1299442423 +160976,79132,Michael Caine,1299442416 +160976,79132,thought-provoking,1299442430 +160976,79695,action packed,1299442376 +160976,79695,Arnold Schwarzenegger,1299442334 +160976,79695,Bruce Willis,1299442336 +160976,79695,Dolph Lundgren,1299442369 +160976,79695,Jason Statham,1299442327 +160976,79695,Jet Li,1299442363 +160976,79695,Mickey Rourke,1299442356 +160976,79695,Sylvester Stallone,1299442342 +160976,79695,violence,1299442372 +160976,79695,violent,1299442374 +160978,111,cult film,1439490065 +160978,111,Martin Scorsese,1439490063 +160978,111,robert de niro,1439490055 +160978,924,aliens,1439490116 +160978,924,artificial intelligence,1439490098 +160978,924,atmospheric,1439490107 +160978,924,sci-fi,1439490103 +160978,924,space,1439490105 +160978,924,Stanley Kubrick,1439490095 +160978,1909,David Duchovny,1439491049 +160978,6711,Scarlett Johansson,1440171380 +160978,39183,Ang Lee,1439490821 +160978,69757,Zooey Deschanel,1439490922 +160978,78039,Michelle Williams,1439490852 +160978,94864,aliens,1439491141 +160978,94864,Ridley Scott,1439491145 +160978,103228,giant robots,1439491106 +160978,103228,Rinko Kikuchi,1439491114 +160978,103228,sci-fi,1439491110 +161025,57530,dance movie,1223216166 +161044,1,family film,1424715324 +161044,1,friendship,1424715324 +161044,1,toys,1424715324 +161044,44,fight scenes,1368481767 +161044,50,con men,1368729501 +161044,58,Pablo Neruda,1449760861 +161044,60,indians,1368481721 +161044,95,action packed,1368481825 +161044,112,fight scenes,1368481767 +161044,339,feel-good,1368482421 +161044,350,lawyer,1368481358 +161044,356,life story,1420983187 +161044,356,tom hanks,1420983187 +161044,356,touching,1420983187 +161044,368,con men,1368729501 +161044,377,action packed,1368481825 +161044,434,action packed,1368481825 +161044,441,geeks,1368482251 +161044,450,homeless,1368482107 +161044,475,irish,1368481871 +161044,588,disney,1434986347 +161044,588,family comedy,1434986347 +161044,588,genie,1434986347 +161044,593,great acting,1368482375 +161044,605,single father,1368482343 +161044,628,lawyer,1368481358 +161044,733,action packed,1368481825 +161044,858,great acting,1368482375 +161044,991,irish,1368481871 +161044,1036,action packed,1368481825 +161044,1179,con men,1368729501 +161044,1291,father son relationship,1368731065 +161044,1291,spielberg,1368730765 +161044,1293,indians,1368481721 +161044,1357,father son relationship,1368731065 +161044,1387,spielberg,1368730765 +161044,1488,irish,1368481871 +161044,1589,new jersey,1368730743 +161044,1777,feel-good,1368482421 +161044,1917,action packed,1368481825 +161044,1956,dysfunctional family,1368730912 +161044,2028,spielberg,1368730765 +161044,2115,spielberg,1368730765 +161044,2268,lawyer,1368481358 +161044,2353,lawyer,1368481358 +161044,2360,dysfunctional family,1368730912 +161044,2529,allegory,1368481298 +161044,2542,con men,1368729501 +161044,2572,geeks,1368482251 +161044,2594,spanish,1368482141 +161044,2664,allegory,1368481298 +161044,2706,geeks,1368482251 +161044,3259,irish,1368481871 +161044,3510,father son relationship,1368731065 +161044,4963,con men,1368729501 +161044,5014,single father,1368482343 +161044,5135,indians,1368481721 +161044,5225,spanish,1368482141 +161044,5349,mutants,1368482544 +161044,5445,spielberg,1368730765 +161044,5464,father son relationship,1368731065 +161044,5878,spanish,1368482141 +161044,5989,con men,1368729501 +161044,6218,interracial romance,1368729606 +161044,6266,Colin Firth,1360361504 +161044,6266,father daughter relationship,1360361504 +161044,6365,fight scenes,1368481768 +161044,6979,video game,1368731006 +161044,7147,father son relationship,1368731065 +161044,8636,mutants,1368482544 +161044,8973,spanish,1368482141 +161044,44694,spanish,1368482141 +161044,47099,homeless,1368482107 +161044,56174,mutants,1368482544 +161044,56339,spanish,1368482141 +161044,70286,allegory,1368481298 +161044,111622,music,1424802013 +161053,1201,music,1360533068 +161053,1228,Biography,1409847575 +161053,1228,boxing,1409847489 +161053,1228,brother-brother relationship,1409847525 +161053,1228,brothers,1409847518 +161053,1228,Character study,1409847672 +161053,1228,confrontational,1409847512 +161053,1228,Oscar (Best Actor),1409847591 +161053,1228,oscar (best cinematography),1409847588 +161053,1228,photography,1409847602 +161053,1228,Robert De Niro,1409847476 +161053,1228,sports,1409847478 +161053,1228,stylized,1409847499 +161053,1228,visceral,1409847606 +161053,1272,foul language,1360110744 +161053,1303,adventure,1358277593 +161053,1303,Michael Caine,1358277590 +161053,1303,slow start,1358277578 +161053,1573,action,1340580836 +161053,1573,Nudity (Nic Cage),1340580890 +161053,1573,switching places,1340580850 +161053,1573,transplants,1340580874 +161053,1573,well choreographed,1340580829 +161053,1639,Ben Affleck,1360023062 +161053,1953,Action,1340660763 +161053,1953,car chase,1340659436 +161053,1953,cops,1340660775 +161053,1953,Gene Hackman,1340659062 +161053,1953,surveillance,1348696585 +161053,2118,adapted from:book,1358289800 +161053,2118,author:Stephen King,1358289705 +161053,2118,bloodthirsty US president,1358289615 +161053,2118,Christopher Walken,1358289606 +161053,2118,Herbert Lom,1358290068 +161053,2118,Nudity (Topless - Brief),1358289389 +161053,2118,predictable,1358289860 +161053,2118,supernatural,1358289839 +161053,2118,thriller,1358289924 +161053,2313,atmospheric,1358120728 +161053,2313,based on a book,1358120735 +161053,2313,compassionate,1358120760 +161053,2313,England,1358120768 +161053,2313,terrifying,1358120809 +161053,2403,action,1358204879 +161053,2403,bad cop,1358204885 +161053,2403,Brian Dennehy,1358204888 +161053,2403,classic,1358204895 +161053,2403,dog killing,1358204904 +161053,2403,drama,1364242091 +161053,2403,Filmed in BC,1358204911 +161053,2403,hiding,1358204956 +161053,2403,memories,1358204970 +161053,2403,Richard Crenna,1358204983 +161053,2403,simple plot,1358204990 +161053,2403,small town,1358204997 +161053,2403,special forces,1358205081 +161053,2403,Sylvester Stallone,1358205084 +161053,2403,tense,1364242091 +161053,2517,classic car,1358288313 +161053,2517,music,1358288313 +161053,2517,revenge,1358288347 +161053,3468,drama,1340499246 +161053,3468,emotional,1340499295 +161053,3468,George C. Scott,1340499052 +161053,3468,intense,1340499370 +161053,3468,Jackie Gleason,1340499095 +161053,3468,Paul Newman,1340499061 +161053,3468,Piper Laurie,1340499075 +161053,3468,Tragedy,1340499295 +161053,3737,rebellion,1360022912 +161053,4881,Billy Bob Thornton,1335904346 +161053,4881,boring,1335904391 +161053,4881,Frances McDormand,1335904206 +161053,4881,slow and predictable plot,1335904198 +161053,4881,small town,1335904454 +161053,4941,great soundtrack,1360023235 +161053,4941,So bad it's good,1360023232 +161053,5986,Character study,1340748068 +161053,5986,dialogue,1340748068 +161053,5986,Stacy Keach,1340748068 +161053,6645,bald nemesis,1359593977 +161053,6645,cars,1359593988 +161053,6645,classic,1359593998 +161053,6645,Donald Pleasence,1359593959 +161053,6645,psychological,1359594015 +161053,6645,robert duvall,1359594038 +161053,6645,robots,1359594023 +161053,32415,Anthony Wong Chau-Sang,1367347276 +161053,32415,dark humor,1367347276 +161053,32415,disturbing,1367347276 +161053,56931,Anthony Wong Chau-Sang,1340498495 +161053,56931,characters,1340497916 +161053,56931,cool,1340498072 +161053,56931,soundtracks,1340498793 +161053,56931,stylish,1340497971 +161053,56931,suspense,1340498011 +161053,79592,Michael Keaton,1359585126 +161053,79592,Will Ferrell,1359585129 +161053,79695,80s nostalgia,1360429310 +161053,79695,brutal,1360429298 +161053,79695,dialogue,1363959073 +161053,79695,Jet Li,1360429277 +161053,79695,Mickey Rourke,1360429301 +161053,79695,one dimensional characters,1363958041 +161053,79695,thin story,1363959043 +161053,79695,too much action,1408833706 +161053,79695,unrealistic,1363959049 +161053,79695,violent,1408833730 +161053,82667,byung-hun Lee,1340623065 +161053,82667,crazy,1340579591 +161053,82667,funny parts,1340579686 +161053,82667,Ji-woon Kim,1340579566 +161053,82667,loss,1358204708 +161053,82667,Min-sik Choi,1340579554 +161053,82667,no thrill,1340578813 +161053,82667,revenge,1340579607 +161053,82667,stupid,1340579459 +161053,82667,torture,1358204759 +161053,82667,visually appealing,1340578653 +161053,87298,dark humor,1360020889 +161053,87298,original story,1360020837 +161053,87298,rebecca hall,1360020854 +161053,87298,Will Ferrell,1360020850 +161053,88744,beautiful,1360695726 +161053,88744,cgi,1360695706 +161053,88744,cheesy,1360695713 +161053,88744,computer animation,1360695736 +161053,88744,genetics,1360695767 +161053,88744,not realistic superapes,1360695709 +161053,88744,police,1360695790 +161053,88744,San Francisco,1360695789 +161053,88744,touching,1360695776 +161053,88744,weak third act,1360695750 +161053,89047,dark comedy,1360027249 +161053,89047,excellent acting,1401260837 +161053,89047,Joseph Gordon-Levitt,1360027251 +161053,89047,metal soundtrack,1401260847 +161053,89047,Natalie Portman,1360027254 +161053,89774,abrupt ending,1360703931 +161053,90376,disturbing,1340704473 +161053,90376,Ezra Miller,1340705057 +161053,90376,insanity,1340704866 +161053,90376,John C. Reilly,1340704486 +161053,90376,psychological,1340704467 +161053,90376,responsibility,1340705224 +161053,90376,surreal,1340705213 +161053,90376,tilda swinton,1340704480 +161053,90430,actors,1358381120 +161053,90430,Roman Polanski,1360534172 +161053,90430,satire,1358380909 +161053,91371,boring,1360026195 +161053,91371,slow,1360026197 +161053,97306,Christopher Walken,1363811832 +161053,97306,Colin Farrell,1363811859 +161053,97306,dark comedy,1363811839 +161053,97306,Extreme Violence,1363811864 +161053,97306,fun,1363811875 +161053,97306,Sam Rockwell,1363811854 +161053,99114,brutal,1359672864 +161053,99114,Christoph Waltz,1358278932 +161053,99114,Don Johnson,1358279050 +161053,99114,Flashbacks,1359672867 +161053,99114,Funny,1358278981 +161053,99114,Humour,1359672893 +161053,99114,Jamie Foxx,1358278959 +161053,99114,Jonah Hill,1359672903 +161053,99114,ku klux klan,1378463161 +161053,99114,Leonardo DiCaprio,1358279014 +161053,99114,long,1359672919 +161053,99114,murder,1359672921 +161053,99114,Over the top,1359672924 +161053,99114,Quentin Tarantino,1358278995 +161053,99114,Revenge,1359672938 +161053,99114,Samuel L. Jackson,1358278937 +161053,99114,Slavery,1359672945 +161053,99114,slow motion,1359672952 +161053,99114,Soundtrack,1359672958 +161053,99114,Spaghetti Western,1359672963 +161053,99114,too long,1358278942 +161053,99114,unoriginal,1358279145 +161053,99114,violence,1359672974 +161053,100306,disturbing,1360011785 +161053,100306,Gerald Kargl,1360011785 +161053,100308,actors,1360013236 +161066,166,Art Film,1453508442 +161066,166,campy,1453508479 +161066,166,cult film,1453508434 +161066,166,dark comedy,1453508482 +161066,166,surreal,1453508476 +161066,1204,atmospheric,1453145382 +161066,1204,cinematography,1453145378 +161066,1204,Middle East,1453145367 +161066,1204,World War I,1453145380 +161066,1244,black and white,1453145288 +161066,1244,classic,1453145302 +161066,1244,intellecutal,1453145291 +161066,1244,literate,1453145294 +161066,1244,new york,1453145300 +161066,1244,new york city,1453145286 +161066,1244,relationships,1453145299 +161066,1244,satire,1453145295 +161066,1244,Woody Allen,1453145284 +161066,1244,writers,1453145304 +161066,1529,Art Film,1453508321 +161066,1529,Campy,1453508861 +161066,1529,Cerebral,1453508358 +161066,1529,Cult Film,1453508424 +161066,1529,Gregg Araki,1453508325 +161066,1529,Stylized,1453508323 +161066,1529,surreal,1453508524 +161066,2657,campy,1453145137 +161066,2657,cult,1453145142 +161066,2657,cult film,1453145130 +161066,2657,parody,1453145148 +161066,2657,Quirky,1453145128 +161066,2657,sexuality,1453145133 +161066,3556,stylized,1453508101 +161066,4848,art house,1453144494 +161066,4848,David Lynch,1453144474 +161066,4848,drama,1453144505 +161066,4848,Erotic,1453144489 +161066,4848,lesbian,1453144484 +161066,4848,nonlinear,1453144480 +161066,4848,pretentious,1453144496 +161066,4848,surreal,1453144472 +161066,4848,surrealism,1453144510 +161066,4848,visually appealing,1453144508 +161066,4878,complicated,1453145105 +161066,4878,cult film,1453145098 +161066,4878,mental illness,1453145102 +161066,4878,psychology,1453145095 +161066,4878,surreal,1453145093 +161066,6093,unicorns,1453208087 +161066,6184,aliens,1453145221 +161066,6184,David Bowie,1453145216 +161066,6184,quirky,1453145218 +161066,6184,surreal,1453145214 +161066,6874,assassin,1453208429 +161066,6874,strong female lead,1453208438 +161066,6874,stylized,1453208418 +161066,6890,adolescence,1453508545 +161066,6890,Golden Palm,1453508576 +161066,6890,Gus Van Sant,1453508582 +161066,7068,elegant,1453208368 +161066,7068,hallucinatory,1453208364 +161066,8910,detective,1453509032 +161066,8910,existentialism,1453508972 +161066,8910,off-beat comedy,1453508978 +161066,8910,stylized,1453509030 +161066,8910,whimsical,1453508974 +161066,31658,anti-war,1453145617 +161066,31658,dreamlike,1453145610 +161066,31658,fantasy,1453145614 +161066,31658,Hayao Miyazaki,1453145612 +161066,31658,steampunk,1453145608 +161066,33171,Gregg Araki,1453508220 +161066,33171,Stylized,1453508218 +161066,33794,stylized,1453392140 +161066,33794,super-hero,1453392152 +161066,49932,David Lynch,1453208388 +161066,49932,surreal,1453208390 +161066,61240,atmospheric,1453145861 +161066,61240,Beautiful,1453145875 +161066,61240,bittersweet,1453145860 +161066,63876,gay,1453391022 +161066,65261,Animation,1453145552 +161066,65261,anime,1453145550 +161066,65261,Ghibli,1453145543 +161066,65261,gorgeous animation,1453145557 +161066,65261,Hayao Miyazaki,1453145532 +161066,65261,Japan,1453145540 +161066,65261,mermaid,1453145547 +161066,65261,strange story,1453145538 +161066,65261,Studio Ghibli,1453145534 +161066,81591,atmospheric,1453551150 +161066,81591,ballet,1453551152 +161066,81591,stylized,1453551156 +161066,81591,surreal,1453551148 +161066,86898,abstract,1453509397 +161066,86898,beautifully filmed,1453509391 +161066,86898,cinematography,1453509401 +161066,86898,Palme d'Or,1453509407 +161066,86898,surreal,1453509456 +161066,87234,Coming Of Age,1453508081 +161066,106100,Jared Leto,1453390955 +161066,106100,Texas,1453390970 +161066,106100,topic:AIDS/HIV,1453390972 +161066,106100,transgender,1453390961 +161066,106100,witty dialogue,1453390964 +161081,260,lasersword,1437495947 +161081,260,oldie but goodie,1437495910 +161081,91529,bane's voice,1437939688 +161081,91529,i am batman,1437939688 +161081,91529,no joker,1437939688 +161107,858,Mafia,1418408119 +161107,858,Nudity (Topless),1418408123 +161107,858,organized crime,1418408127 +161107,858,robert de niro,1418408131 +161107,858,violence,1418408135 +161107,4262,Al Pacino,1418408237 +161107,4262,organized crime,1418408243 +161107,4776,denzel washington,1418408181 +161107,4776,detective thriller,1418408193 +161107,48516,atmospheric,1418408161 +161107,48516,gangsters,1418408159 +161107,48516,Leonardo DiCaprio,1418408147 +161107,55765,corruption,1418408216 +161107,55765,drugs,1418408222 +161107,55765,gangsters,1418408219 +161107,55765,mafia,1418408209 +161107,79132,Leonardo DiCaprio,1418408466 +161107,79132,surreal,1418408389 +161107,79132,visually appealing,1418408387 +161107,109487,Christopher Nolan,1418408862 +161107,109487,time-travel,1418408867 +161109,260,sci-fi,1442878345 +161109,260,"space opera, science fiction, action",1442878324 +161134,858,Mafia,1452484429 +161134,5995,worl,1452484410 +161160,293,French,1441871180 +161160,293,Jean Reno,1441871195 +161160,4973,French,1441871641 +161160,4995,biography,1441871323 +161160,4995,college,1441871313 +161160,4995,Education,1441871296 +161160,4995,mental illness,1441871290 +161160,4995,Russell Crowe,1441871330 +161160,5782,soundtrack,1441871241 +161160,54997,Russell Crowe,1441871259 +161160,117871,>War,1441871530 +161160,117871,Cem Yilmaz,1441871384 +161160,117871,Gallipoli,1441871475 +161160,117871,Istanbul,1441871492 +161160,117871,Russell Crowe,1441871367 +161160,117871,World War I,1441871462 +161160,117871,Yilmaz Erdogan,1441871416 +161167,32,complicated,1242150198 +161167,32,imagination,1246736355 +161167,32,psychology,1246736338 +161167,32,reality or imagination?,1246736378 +161167,32,twist ending,1242150202 +161167,50,complicated,1240939518 +161167,50,funny,1240939523 +161167,50,great ending,1240939526 +161167,50,mindfuck,1240939527 +161167,50,suspense,1240939531 +161167,50,tricky,1240939535 +161167,50,twist ending,1240939537 +161167,296,Black comedy,1240939568 +161167,296,Mafia,1240939572 +161167,296,multiple storylines,1240939586 +161167,296,violence,1240939575 +161167,318,inspirational,1240939550 +161167,318,reflective,1240939552 +161167,318,sentimental,1240939556 +161167,318,thought-provoking,1240939559 +161167,422,thriller,1368032326 +161167,648,memorable sequence,1243444540 +161167,750,black comedy,1249486355 +161167,750,cynical,1249486381 +161167,750,dark comedy,1249486378 +161167,750,satire,1249486358 +161167,750,satirical,1249486375 +161167,912,humorous,1240939038 +161167,912,romance,1240939042 +161167,912,sentimental,1240939044 +161167,1069,mystery,1368032143 +161167,1136,comedy,1247512479 +161167,1136,hilarious,1247512466 +161167,1136,humorous,1247512468 +161167,1136,parody,1247512485 +161167,1136,religion,1247512476 +161167,1136,satire,1247512473 +161167,1136,satirical,1247512470 +161167,1136,witty,1247512497 +161167,1225,classical music,1242323344 +161167,1225,drama,1245754317 +161167,1225,Mozart,1245754309 +161167,1292,political satire,1242322619 +161167,1292,satire,1242322624 +161167,1307,cute,1437155285 +161167,1307,dialogue,1437155302 +161167,1307,fun,1437155280 +161167,1307,Good Romantic Comedies,1437155278 +161167,1307,romantic comedy,1437155291 +161167,1307,the quintessential romantic comedy!,1437155316 +161167,1391,funny,1240938813 +161167,1653,distopia,1240939482 +161167,1653,dystopia,1240939493 +161167,1653,future,1240939500 +161167,1653,powerful ending,1240939503 +161167,1653,realistic sci/fi,1240939506 +161167,1845,off-beat comedy,1244064323 +161167,1957,inspirational,1368032099 +161167,2097,dark,1368031958 +161167,2278,cars,1256418975 +161167,2278,intelligent,1256418979 +161167,2321,affectionate,1240939300 +161167,2321,heartwarming,1240939303 +161167,2321,satire,1240939306 +161167,2321,stylized,1240939318 +161167,2321,surreal,1240939309 +161167,2431,inspirational,1368032099 +161167,2461,franchise,1368032044 +161167,2483,dark,1368031958 +161167,2483,humorous,1242160993 +161167,2483,satirical,1242160996 +161167,2483,stylized,1242161002 +161167,2571,action,1250276027 +161167,2571,alternate reality,1250275987 +161167,2571,atmospheric,1250276039 +161167,2571,dystopia,1250275991 +161167,2571,philosophy,1250276005 +161167,2571,stylized,1250275995 +161167,2571,surreal,1250275997 +161167,2594,Dark,1242162632 +161167,2594,mindfuck,1242162634 +161167,2594,Sci-Fi,1242162637 +161167,2594,Twist ending,1242162640 +161167,2692,nonlinear,1242322739 +161167,2692,whimsical,1242322734 +161167,2791,absurd,1249486279 +161167,2791,Parody,1249486288 +161167,2791,spoof,1249486290 +161167,3015,tense,1368032302 +161167,3230,nazis,1368032177 +161167,3505,thriller,1368032326 +161167,3690,franchise,1368032044 +161167,3793,psychological,1243338297 +161167,3793,psychology,1243338290 +161167,4029,ensemble cast,1368031979 +161167,4068,high school,1368032067 +161167,4212,mystery,1368032143 +161167,4226,cerebral,1240939342 +161167,4226,dreamlike,1240939347 +161167,4226,mystery,1240939353 +161167,4226,nonlinear,1240939352 +161167,4226,psychology,1240939356 +161167,4226,stylized,1240939358 +161167,4226,twist ending,1240939360 +161167,4251,violent,1368032354 +161167,4300,politics,1368032268 +161167,4336,tense,1368032302 +161167,4640,violent,1368032354 +161167,4641,ending,1284920262 +161167,4641,plot,1284920259 +161167,4641,stylized,1284920272 +161167,4655,politics,1368032268 +161167,4661,thriller,1368032326 +161167,4814,thriller,1368032325 +161167,4969,mystery,1368032143 +161167,5434,tense,1368032302 +161167,5570,tense,1368032302 +161167,5878,Breathtaking,1240938916 +161167,5878,psychology,1240938923 +161167,5971,Cute,1398498182 +161167,5971,feel-good,1398498174 +161167,5971,great soundtrack,1398498178 +161167,6286,atmospheric,1240939397 +161167,6286,deadpan,1240939399 +161167,6371,franchise,1368032044 +161167,6639,tense,1368032302 +161167,6639,thriller,1368032326 +161167,6711,atmospheric,1240938706 +161167,6711,bittersweet,1240938709 +161167,6711,lyrical,1240938727 +161167,6711,Melancholic,1240938713 +161167,6711,reflective,1240938737 +161167,7153,stylized,1240939379 +161167,7223,mystery,1368032143 +161167,7235,violent,1368032354 +161167,7373,humor,1326441681 +161167,7373,humorous,1326441681 +161167,7373,style,1326441666 +161167,7767,bittersweet,1261684687 +161167,7767,chaotic start,1261684753 +161167,7767,poignant,1261684713 +161167,7831,mystery,1368032144 +161167,7834,mystery,1368032144 +161167,8207,tense,1368032302 +161167,8207,thriller,1368032325 +161167,8914,clever,1268082897 +161167,8914,complex,1268082899 +161167,8914,Complicated,1268082901 +161167,8914,complicated plot,1268082903 +161167,8914,intellectual,1268082904 +161167,8914,paradox,1268082910 +161167,8917,funny,1240938846 +161167,8917,hilarious,1240938850 +161167,8917,political,1240938853 +161167,8917,politics,1240938856 +161167,8917,satire,1240938860 +161167,8961,bond,1240939447 +161167,8961,classic,1240939452 +161167,8961,comedy,1240939456 +161167,8961,funny,1240939433 +161167,8961,Pixar,1240939427 +161167,8961,stylized,1240939469 +161167,26003,black and white,1368031885 +161167,26078,politics,1368032268 +161167,26122,dark,1368031958 +161167,27009,action,1422815458 +161167,27009,anti-hero,1315764698 +161167,27009,clever,1422815458 +161167,27009,humor,1422815458 +161167,27700,violent,1368032354 +161167,27815,cheesy,1281538631 +161167,27815,feel-good,1281538614 +161167,27815,heartwarming,1281538616 +161167,27815,stereotypical,1281538627 +161167,27904,good animation,1243846054 +161167,27904,rotoscope,1243846067 +161167,27904,rotoscoping,1243846071 +161167,30846,mental illness,1368032127 +161167,31410,controversial,1178357400 +161167,31410,historically inaccurate,1178357474 +161167,31410,too nice,1178357474 +161167,31952,dark,1368031958 +161167,34153,inspirational,1368032099 +161167,44193,high school,1368032067 +161167,44665,violent,1168849714 +161167,45186,action,1243444614 +161167,46578,comedy,1241370145 +161167,46578,deadpan,1241370148 +161167,46578,feel-good,1241370152 +161167,46578,funny,1241370155 +161167,46578,heartwarming,1241370157 +161167,46578,off-beat comedy,1241370163 +161167,46578,quirky,1241370167 +161167,47122,high school,1368032067 +161167,48394,atmospheric,1248291632 +161167,48394,bittersweet,1248291656 +161167,48394,fantasy,1248291653 +161167,48394,imagination,1248291651 +161167,48394,psychology,1248291688 +161167,48394,stylized,1248291645 +161167,48394,violence,1248291637 +161167,48394,visually appealing,1248291641 +161167,48774,atmospheric,1242680940 +161167,48774,dystopia,1242680946 +161167,48774,futuristic,1242680967 +161167,48774,gritty,1242680949 +161167,48774,sci-fi,1242680975 +161167,48780,dark,1242161200 +161167,48780,kiling,1242161213 +161167,48780,stage magic,1242161196 +161167,48997,artistic,1302419455 +161167,56788,cold war,1249486475 +161167,56788,politics,1249486470 +161167,56788,satire,1249486460 +161167,57528,violent,1368032354 +161167,58559,dark,1242895554 +161167,58559,harsh,1242895478 +161167,58559,violence,1242895493 +161167,58559,violent,1242895497 +161167,59118,music,1240991889 +161167,59118,no plot,1240991878 +161167,59118,no story,1240991881 +161167,59615,adventure,1259867865 +161167,59615,ridiculous end,1259867873 +161167,60069,dystopia,1240939173 +161167,60069,human versus computer,1240939176 +161167,60069,pixar,1240939180 +161167,60069,Sci-Fi,1240939182 +161167,60069,social commentary,1240939185 +161167,61323,Coen Bros,1240938550 +161167,61323,Comedy,1240938528 +161167,61323,dark comedy,1240938588 +161167,61323,satire,1240938542 +161167,63082,feel-good,1249673171 +161167,63082,good plot,1249673197 +161167,63082,love,1249673175 +161167,63082,music,1249673184 +161167,63082,nonlinear,1249673205 +161167,63082,poverty,1249673187 +161167,63082,romance,1249673189 +161167,63082,touching,1249673192 +161167,63082,violence,1249673148 +161167,63113,007 (series),1241853582 +161167,63436,franchise,1368032044 +161167,64957,romance,1242028557 +161167,66097,alternate universe,1255861842 +161167,66097,animation,1255861845 +161167,66097,boring,1255861885 +161167,66097,fairy tale,1255861850 +161167,66097,gothic,1255861848 +161167,66097,plot,1255861853 +161167,66097,slow,1255861888 +161167,66097,Surreal,1255861868 +161167,67255,computers,1294213926 +161167,67255,lack of imagination,1294213941 +161167,67255,violence,1294213931 +161167,67923,franchise,1368032044 +161167,68358,bad science,1258880283 +161167,68358,lack of development,1258880348 +161167,68358,lack of story,1258880341 +161167,68358,predictable,1258880361 +161167,68954,feel good movie,1255896757 +161167,68954,sappy,1255896771 +161167,68954,storytelling,1255896763 +161167,68954,talking animals,1255896767 +161167,69805,action,1425143519 +161167,69805,bad acting,1425143519 +161167,69805,cheesy,1425143519 +161167,69844,Alan Rickman,1260563676 +161167,69844,Comedy,1260563680 +161167,69844,romance,1260563693 +161167,70286,action,1345063453 +161167,70286,genetics,1345063455 +161167,70286,humor,1345063458 +161167,70286,intelligent,1345063460 +161167,70286,mockumentary,1345063462 +161167,70286,sci-fi,1345063465 +161167,70286,social commentary,1345063466 +161167,70286,unique,1345063471 +161167,71156,black humor,1303678197 +161167,71156,pointless,1303678178 +161167,72378,bad plot,1268582667 +161167,72378,bad science,1268582669 +161167,72378,So bad it's good,1268582675 +161167,72737,2D animation,1269173971 +161167,72737,music,1269173965 +161167,72737,plot,1269174004 +161167,72737,story,1269173991 +161167,78499,music,1279822514 +161167,78499,score,1279822519 +161167,78637,franchise,1368032044 +161167,79132,acting,1306655992 +161167,79132,inconsistent,1306655964 +161167,79132,pretentious,1306655974 +161167,79132,surreal,1306655950 +161167,79132,too long,1306656029 +161167,79132,visually appealing,1306655948 +161167,81834,dark,1311621948 +161167,81834,isolation,1311621952 +161167,81845,acting,1320601245 +161167,81845,lack of depth,1320601253 +161167,81845,predictable,1320601287 +161167,84637,bad jokes,1300474742 +161167,84637,music,1300474727 +161167,87304,father-son relationship,1368032029 +161167,87876,characters,1312556086 +161167,87876,not funny,1312556076 +161167,87876,plot,1312556078 +161167,87876,story,1312556082 +161167,89753,atmosphere,1428612832 +161167,89753,Cold War,1428612847 +161167,89753,espionage,1428612792 +161167,89753,instagram look,1428612815 +161167,89753,photography,1428612824 +161167,89753,slow paced,1428612854 +161167,89753,Spies,1428612851 +161167,89753,story,1428612841 +161167,89904,1920s,1424550738 +161167,89904,black and white,1424550692 +161167,89904,cinematography,1424550708 +161167,89904,dogs,1424550686 +161167,89904,Hollywood,1424550742 +161167,89904,movie business,1424550750 +161167,89904,original,1424550678 +161167,89904,romance,1424550689 +161167,89904,silent movie,1424550674 +161167,89904,thin plot,1424550794 +161167,89904,visually appealing,1424550735 +161167,98809,crude humor,1398019457 +161167,98809,predictable,1398019463 +161167,98809,storytelling,1398019467 +161167,99114,violent,1368032354 +161167,104841,3D effects,1385239555 +161167,104841,cinematography,1385239560 +161167,104841,overrated,1385239572 +161167,104841,plot,1385239576 +161173,1625,plot twist,1437538246 +161173,5294,predictable,1351336454 +161173,74228,mystery,1440342532 +161173,74228,strong female lead,1440342520 +161173,74228,Surreal,1440342510 +161173,74228,twist ending,1440342522 +161173,74228,twists & turns,1440342524 +161173,74458,insanity,1405015113 +161173,74458,twist ending,1405015130 +161173,74458,twisted ending,1405015123 +161173,81083,great ending,1335623863 +161173,81083,sexuality,1335623907 +161173,81083,weird,1335623868 +161183,260,"fantasy, adventure",1442343042 +161183,260,"sci-fi, space",1442342988 +161186,260,exciting,1432450540 +161186,260,Innovative,1432450513 +161190,260,awesome,1430765037 +161190,260,sci-fi,1430765048 +161197,2959,twist ending,1290992030 +161215,296,cult film,1433461452 +161215,296,nonlinear narrative,1433461452 +161215,296,tarantino,1433461452 +161229,5952,ensemble cast,1400333532 +161229,5952,great soundtrack,1400333511 +161229,5952,high fantasy,1400333523 +161229,5952,imdb top 250,1400333575 +161229,7063,adventureous,1400191305 +161231,59315,action,1359264420 +161231,59315,adventure,1359264422 +161231,59315,arms dealer,1359264333 +161231,59315,based on a comic,1359264412 +161231,59315,comic book,1359264315 +161231,59315,funny,1359264425 +161231,59315,kidnapping,1359264395 +161231,59315,Marvel,1359264326 +161231,59315,Robert Downey Jr.,1359264307 +161231,59315,superhero,1359264406 +161231,59315,visually appealing,1359264403 +161231,77561,comic book,1359264604 +161231,77561,Marvel,1359264607 +161231,77561,Robert Downey Jr.,1359264596 +161231,77561,sci-fi,1359264617 +161231,77561,superhero,1359264599 +161231,86332,Marvel,1359264816 +161231,86332,mythology,1359264814 +161231,86332,predictable,1359264809 +161231,86332,superhero,1359264812 +161231,98809,adventure,1359265374 +161231,98809,big budget,1359265370 +161231,98809,epic,1359265378 +161231,98809,fantasy,1359265392 +161251,260,EPIC,1440383602 +161251,260,epic adventure,1440383662 +161270,505,Bruce Willis,1233600188 +161309,296,Mafia,1171819258 +161309,4816,silly humor,1171819453 +161309,44191,Patriot Act,1171819560 +161318,1030,dragon,1211183353 +161318,26504,video game adaptation,1165385639 +161318,69951,heath ledger,1262396461 +161318,69951,script,1262396453 +161341,260,sci-fi,1440345539 +161344,46,women,1369126743 +161344,111,masterpiece,1369126659 +161344,218,women,1369126743 +161344,296,masterpiece,1369126659 +161344,923,masterpiece,1369126659 +161344,924,masterpiece,1369126659 +161344,1258,masterpiece,1369126659 +161344,1678,women,1369126743 +161344,1704,mentor,1369126638 +161344,1754,supernatural,1369126692 +161344,2420,mentor,1369126639 +161344,2841,supernatural,1369126691 +161344,2858,excellent script,1369126701 +161344,3083,women,1369126743 +161344,3418,women,1369126743 +161344,4018,women,1369126743 +161344,4020,supernatural,1369126692 +161344,4878,original,1369126562 +161344,5065,supernatural,1369126691 +161344,34437,melancholic,1369126594 +161344,48516,original,1369126562 +161344,51086,Jim Carrey,1291477880 +161344,51086,psychology,1291477882 +161344,53123,musicians,1369126766 +161416,260,classic sci-fi,1444490481 +161416,260,future,1444490505 +161434,260,saga,1436893248 +161434,260,sci-fi,1436893244 +161434,2810,distorted reality,1436993061 +161434,2810,disturbing,1436993076 +161434,112515,atmospheric,1436987298 +161434,112515,monster,1436987301 +161434,112515,psychological,1436987296 +161434,112515,supernatural,1436987303 +161434,122886,action,1452378746 +161434,122886,Carrie Fisher,1452378768 +161434,122886,Harrison Ford,1452378771 +161434,122886,J.J. Abrams,1452378761 +161434,122886,Jedi Knight,1452378776 +161434,122886,John Boyega,1452378784 +161434,122886,Plot Recycling,1452378718 +161434,122886,space,1452378756 +161434,122886,Star Wars,1452378729 +161434,122886,Visually appealing,1452378807 +161455,260,sci-fi,1432064613 +161455,260,Space,1432064588 +161482,260,good vs evil,1439308155 +161482,260,sci-fi,1439308109 +161482,260,space adventure,1439308133 +161484,260,Science Fiction,1443246340 +161484,260,space adventure,1443246325 +161490,3539,Sex Pistols,1278276465 +161490,33524,death,1422562056 +161490,33524,grim reaper,1422562056 +161490,33524,immortality,1422562056 +161490,54318,rape,1299611467 +161490,83613,Daniel Craig,1312172705 +161490,83613,Harrison Ford,1312172705 +161490,83613,Olivia Wilde,1312172691 +161491,480,action thriller,1426652010 +161491,480,adventure,1426652010 +161491,480,sci-fi,1426652010 +161508,539,Meg Ryan,1443068301 +161508,539,romantic comedy,1443068306 +161508,902,audrey hepburn,1443067995 +161508,902,classic,1443067998 +161508,904,Alfred Hitchcock,1443068258 +161508,904,amateur detective,1443068273 +161508,904,claustrophobic,1443068278 +161508,904,murder,1443068275 +161508,916,Audrey Hepburn,1443067946 +161508,916,classic,1443067962 +161508,916,romantic comedy,1443067949 +161508,1307,friendship,1443068023 +161508,1307,Good Romantic Comedies,1443068027 +161508,1307,meg ryan,1443068017 +161508,2424,Meg Ryan,1443068324 +161508,2424,romantic comedy,1443068327 +161508,3176,psychology,1443067818 +161508,3176,secrets,1443067844 +161508,4246,based on a book,1443068836 +161508,4246,funny,1443068843 +161508,4246,romantic comedy,1443068834 +161508,4476,humour,1446169601 +161508,4823,Romantic Comedy,1443068360 +161508,4823,wedding,1443068366 +161508,4995,inspirational,1443067894 +161508,4995,intelligent,1443067897 +161508,4995,Oscar Winner,1443067886 +161508,4995,psychology,1443067891 +161508,4995,true story,1443067876 +161508,5618,anime,1443068512 +161508,5618,Hayao Miyazaki,1443068498 +161508,5618,imdb top 250,1443068504 +161508,5618,Japan,1443068495 +161508,5618,Studio Ghibli,1443068499 +161508,5971,country life,1443068458 +161508,5971,feel good movie,1443068462 +161508,5971,great soundtrack,1443068469 +161508,5971,Hayao Miyazaki,1443068449 +161508,5971,Japan,1443068465 +161508,5971,kids and family,1443068460 +161508,5971,nature,1443068456 +161508,5971,spirits,1443068452 +161508,5971,Studio Ghibli,1443068447 +161508,26178,Audrey Hepburn,1443068123 +161508,26178,humour,1443068133 +161508,26662,Hayao Miyazaki,1443068531 +161508,26662,Studio Ghibli,1443068530 +161508,26662,witch,1443068540 +161508,65261,Hayao Miyazaki,1443068575 +161508,65261,Studio Ghibli,1443068574 +161508,80551,inspirational,1443068712 +161513,32,atmospheric,1332342499 +161513,32,Brad Pitt,1332342496 +161513,32,Bruce Willis,1332342493 +161513,32,twist ending,1332342505 +161513,1199,surreal,1332342651 +161513,2959,Brad Pitt,1332342567 +161513,2959,dark comedy,1332342580 +161513,2959,Edward Norton,1332342565 +161513,2959,philosophical,1332342583 +161513,2959,psychology,1332342570 +161513,2959,twist ending,1332342576 +161513,4878,psychology,1332342799 +161513,79132,Paris,1332342610 +161513,79132,surreal,1332342560 +161513,79132,thought-provoking,1332342598 +161513,79132,visually appealing,1332342602 +161536,296,action,1317319047 +161536,296,Bruce Willis,1317319046 +161536,296,interesting,1317319047 +161536,296,John Travolta,1317319046 +161536,296,mafia,1317319046 +161536,296,nonlinear,1317319047 +161536,296,Quentin Tarantino,1317319047 +161536,296,quirky,1317319047 +161536,296,Samuel L. Jackson,1317319046 +161536,296,Uma Thurman,1317319047 +161536,4878,dreams,1317319126 +161536,4878,interesting,1317319126 +161536,4878,Jake Gyllenhaal,1317319126 +161536,4878,psychology,1317319126 +161536,4878,quirky,1317319126 +161536,4878,sci-fi,1317319126 +161536,4878,surreal,1317319126 +161536,6373,Jim Carrey,1317916336 +161536,6539,action,1317916301 +161536,6539,humorous,1317916301 +161536,6539,Johnny Depp,1317916301 +161536,6539,pirates,1317916301 +161536,6874,action,1316028250 +161536,6874,anime,1316028250 +161536,6874,japan,1316028250 +161536,6874,mafia,1316028250 +161536,6874,Quentin Tarantino,1316028250 +161536,6874,revenge,1316028250 +161536,6874,Uma Thurman,1316028250 +161536,6874,violence,1316028250 +161536,7438,action,1317318955 +161536,7438,Japan,1317318955 +161536,7438,Quentin Tarantino,1317318955 +161536,7438,Uma Thurman,1317318955 +161536,8914,complex,1317319166 +161536,8914,complicated,1317319166 +161536,8914,intelligent,1317319166 +161536,8914,interesting,1317319166 +161536,8914,sci-fi,1317319166 +161536,8914,thought-provoking,1317319166 +161536,8914,time travel,1317319166 +161536,68157,action,1317916171 +161536,68157,Nazis,1317916171 +161536,68157,Quentin Tarantino,1317916171 +161536,71379,atmospheric,1317916274 +161536,71379,creepy,1317916274 +161536,76251,action,1317916198 +161536,76251,comic book,1317916198 +161536,76251,different,1317916198 +161536,76251,quirky,1317916198 +161536,79132,complex,1317318912 +161536,79132,dreams,1317318912 +161536,79132,Joseph Gordon-Levitt,1317318912 +161536,79132,thought-provoking,1317318912 +161536,79132,thoughtful,1317318912 +161536,88129,action,1342624879 +161536,88129,heist,1342624893 +161536,88129,violence,1342624890 +161536,92198,action,1325760432 +161536,92198,conspiracy,1325760413 +161536,92198,Guy Pearce,1325760426 +161536,92198,January Jones,1325760404 +161536,92198,Nicolas Cage,1325760392 +161536,92198,secrets,1325760420 +161536,92198,suprisingly clever,1325760469 +161536,104211,crime,1377453942 +161536,104211,Ed Helms,1377453942 +161536,104211,funny moments,1377453942 +161536,104211,Jennifer Aniston,1377453942 +161537,915,drama,1388329005 +161537,915,makeover,1388328991 +161537,915,romance,1388328991 +161542,3555,war movie,1221765713 +161542,5010,war movie,1221765721 +161542,8589,war movie,1221765648 +161559,296,noir,1420168582 +161559,296,non-linear,1420168582 +161559,296,quentin tarantino,1420168582 +161559,318,frank darabont,1425097024 +161559,318,morgan freeman,1425097024 +161559,318,oscar nominee: best picture,1425097024 +161559,356,better than jobs,1420868013 +161559,356,offensive,1420868013 +161559,356,tits,1420868013 +161559,593,oscar (best actress),1423434144 +161559,593,oscar (best picture),1423434144 +161559,593,serial killer,1423434144 +161559,1261,zombie,1451517142 +161559,4105,zombie,1451517122 +161559,4532,zombie,1451517422 +161559,5219,zombie,1451517207 +161559,6502,Zombie,1451516753 +161559,6731,zombie,1451517090 +161559,7360,zombie,1451516826 +161559,7387,zombie,1451517106 +161559,8225,zombie,1451516984 +161559,8861,zombie,1451517192 +161559,33834,zombie,1451517047 +161559,53000,zombie,1451517015 +161559,55232,zombie,1451517230 +161559,56174,zombie,1451517165 +161559,58332,zombie,1451517361 +161559,62733,zombie,1451517324 +161559,71535,zombie,1451517574 +161559,73211,zombie,1451517493 +161559,74685,zombie,1451517000 +161559,74752,Prom,1441497897 +161559,75425,zombie,1451517383 +161559,80363,zombie,1451517286 +161559,89072,zombie,1451517065 +161559,94813,zombie,1451517342 +161559,96691,zombie,1451517252 +161559,142604,Halloween,1447373242 +161566,260,Science Fiction,1440918624 +161566,260,space opera,1440918634 +161569,68319,action,1248607888 +161569,68319,Comic Book adaption,1248607895 +161569,68319,Marvel,1248607899 +161569,68319,superhero,1248607892 +161569,73106,Brandon Hardesty,1262985932 +161569,73106,Eugene Levy,1262986044 +161583,56367,About a girl,1220028218 +161583,56367,comedy,1220028201 +161583,56367,cult film,1220028195 +161583,56367,high school,1220028194 +161583,56367,imdb top 250,1220028204 +161583,56367,must see!,1220028219 +161583,56367,notable soundtrack,1220028199 +161583,56367,teenager,1220028189 +161588,1,computer animation,1243748512 +161588,1,Disney,1243748499 +161588,1,fantasy,1243748536 +161588,1,Pixar,1243748502 +161588,1,toys,1243748532 +161588,1,witty,1243748527 +161588,29,atmospheric,1243749465 +161588,29,beautiful,1243749425 +161588,29,bleak,1243749441 +161588,29,children,1243749445 +161588,29,Santa Claus,1243749436 +161588,29,surreal,1243749428 +161588,29,visually appealing,1243749458 +161588,29,whimsical,1243749431 +161588,32,adventure,1243748952 +161588,32,complicated,1243748948 +161588,32,depressing,1243748929 +161588,32,drama,1243748934 +161588,32,time travel,1243748958 +161588,34,food,1244654321 +161588,34,pigs,1244654286 +161588,34,rats,1244654291 +161588,50,predictable,1244818982 +161588,50,suspense,1244819015 +161588,50,unreliable narrators,1244819380 +161588,110,Nudity (Topless),1243748101 +161588,110,Scotland,1243748088 +161588,141,comedy,1245614483 +161588,141,Gay stereotypes,1245614472 +161588,150,claustrophobic,1243748227 +161588,150,drama,1243748230 +161588,150,space,1243748220 +161588,150,space program,1243748218 +161588,153,rubber nipples,1244464775 +161588,161,submarine,1245597083 +161588,165,action,1244349889 +161588,165,Bruce Willis,1244349914 +161588,165,more explosions,1244349893 +161588,165,predictable,1244349895 +161588,165,Samuel L. Jackson,1244349912 +161588,165,violent,1244349885 +161588,185,computers,1245485572 +161588,185,hackers,1245485575 +161588,185,hacking,1245485583 +161588,185,internet,1245485587 +161588,185,Sandra Bullock,1245485591 +161588,185,thriller,1245485598 +161588,208,apocalypse,1245337195 +161588,208,better than everybody thinks,1245337164 +161588,208,Dennis Hopper,1245337265 +161588,208,gyrocopter,1245337189 +161588,208,Kevin Costner,1245337172 +161588,208,steampunk,1245337205 +161588,253,book was better,1245259421 +161588,253,vampires,1245259450 +161588,260,aliens,1243748029 +161588,260,classic,1243748035 +161588,260,fantasy,1243748000 +161588,260,old FX quality,1243748011 +161588,260,sci-fi,1243748006 +161588,296,Black comedy,1243749405 +161588,296,long monologues,1243749410 +161588,296,multiple storylines,1243749416 +161588,296,quirky,1243749413 +161588,316,ancient egyptians,1244477540 +161588,316,Egypt,1244477543 +161588,318,based on a book,1243749273 +161588,318,drama,1243749294 +161588,318,revenge,1243749287 +161588,344,Action,1244171116 +161588,344,comedy,1244171103 +161588,344,Dumb,1244171071 +161588,344,goofy,1244171110 +161588,344,Gross-out,1244171077 +161588,344,missing dolphin,1244171130 +161588,344,silly fun,1244171096 +161588,344,very dumb,1244171087 +161588,349,boring,1245350551 +161588,357,chick flick,1245242209 +161588,357,Comedy,1245242149 +161588,357,Romance,1245242134 +161588,357,Rowan Atkinson,1245242209 +161588,367,annoying sexist stereotype mars story,1244643544 +161588,367,carrey decline begins...,1244643550 +161588,367,cartoonish,1244643508 +161588,367,comedy,1244643521 +161588,367,green,1244643556 +161588,367,not funny,1244643492 +161588,380,action,1244210149 +161588,380,explodeytime,1244210153 +161588,380,quirky,1244210277 +161588,454,book was better,1245496443 +161588,454,lawyers,1245496435 +161588,457,Action,1244170497 +161588,457,based on a TV show,1244170503 +161588,457,Chicago,1244170520 +161588,457,Oscar (Best Supporting Actor),1244170543 +161588,457,thriller,1244170514 +161588,500,creepy stalker,1244571044 +161588,500,Drama,1244571073 +161588,527,black and white,1243748858 +161588,527,historical,1243748881 +161588,527,Holocaust,1243748866 +161588,527,World War II,1243748879 +161588,539,boring,1245070838 +161588,539,Comedy,1245070847 +161588,539,intolerable chick flick,1245070902 +161588,539,Romance,1245070892 +161588,539,slow and predictable plot,1245070842 +161588,587,passionate,1245040418 +161588,588,animation,1243749014 +161588,588,Disney,1243749034 +161588,588,funny,1243749023 +161588,588,musical,1243749053 +161588,588,Oscar (Best Music - Original Score),1243749043 +161588,588,rags to riches,1243749019 +161588,588,stereotypes,1243749030 +161588,589,action,1243748388 +161588,589,apocalypse,1243748379 +161588,589,computers,1243748371 +161588,589,cyborgs,1243748367 +161588,589,dystopia,1243748402 +161588,589,original plot,1243748351 +161588,589,Suspense,1243748409 +161588,590,culture clash,1243748446 +161588,590,US history,1243748442 +161588,595,heroine,1244349967 +161588,597,unreflective,1244571169 +161588,610,good versus evil,1243749537 +161588,648,by far the best pick out of the three,1244394766 +161588,648,suspense,1244394747 +161588,736,action,1244477421 +161588,736,disaster,1244477395 +161588,736,Popcorn,1244477399 +161588,736,science,1244477436 +161588,736,Tornado,1244477429 +161588,736,twist ending,1244477384 +161588,1036,action,1245398699 +161588,1036,christmas,1245398711 +161588,1036,explosions,1245398706 +161588,1036,humorous,1245398726 +161588,1036,lone hero,1245398701 +161588,1196,adventure,1243763125 +161588,1196,father-son relationship,1243763135 +161588,1196,music,1243763149 +161588,1196,Saturn Award (Best Special Effects),1243763108 +161588,1210,aliens,1243748577 +161588,1210,father-son relationship,1243748583 +161588,1210,Oscar (Best Music - Original Score),1243748636 +161588,1210,Saturn Award (Best Special Effects),1243748627 +161588,1210,Star Wars,1243748620 +161588,1237,black and white,1243749665 +161588,1237,Criterion,1243749657 +161588,1237,Swedish,1243749660 +161588,1240,Saturn Award (Best Writing),1244993795 +161588,1240,time travel,1244993803 +161588,1278,comedy,1243749550 +161588,1278,farce,1243749567 +161588,1278,gothic,1243749569 +161588,1278,parody,1243749555 +161588,1278,spoof,1243749552 +161588,1278,young kids,1243749602 +161588,1376,Comedy,1243749253 +161588,1376,environmental,1243749228 +161588,1376,sequel better than original,1243749220 +161588,1376,Star Trek,1243749217 +161588,1376,time travel,1243749243 +161588,1391,alien invasion,1243748783 +161588,1391,aliens,1243748760 +161588,1391,domination doesn't always require more intelligence just better guns,1243748727 +161588,1391,ensemble cast,1243748778 +161588,1391,funny,1243748688 +161588,1391,Lame ending,1243748772 +161588,1391,Parody,1243748695 +161588,1391,Saturn Award (Best Music),1243748770 +161588,1391,stupid,1243748703 +161588,1391,two hours of suck,1243748700 +161588,1721,catastrophe,1244738359 +161588,1721,romance,1244738363 +161588,1907,Chinese culture,1243749523 +161588,1907,Disney,1243749503 +161588,1907,heroine,1243749500 +161588,2137,sentimental,1243749698 +161588,2137,spider,1243749707 +161588,2139,fantasy,1243749366 +161588,2139,heroine,1243749369 +161588,2396,romance,1247505118 +161588,2396,Shakespeare,1247505130 +161588,2406,Romance,1243749686 +161588,2406,treasure hunt,1243749692 +161588,2571,Action,1244171991 +161588,2571,artificial intelligence,1244171988 +161588,2571,fantasy,1244172000 +161588,2571,martial arts,1244171979 +161588,2571,philosophical,1244171996 +161588,2571,post apocalyptic,1244171985 +161588,2571,sci-fi,1244172007 +161588,2571,virtual reality,1244171982 +161588,2628,franchise,1245040528 +161588,2628,Saturn Award (Best Special Effects),1245040497 +161588,2643,nuclear weapons,1243749802 +161588,2643,super villain,1243749779 +161588,2762,predictable,1244477599 +161588,2858,social commentary,1245086270 +161588,2890,anti-war,1243749092 +161588,2890,biting,1243749091 +161588,2890,black comedy,1243749089 +161588,2890,colonialism,1243749170 +161588,2890,confrontational,1243749097 +161588,2890,gold heist,1243749160 +161588,2890,Gulf War,1243749085 +161588,2890,humorous,1243749164 +161588,2890,iraq,1243749106 +161588,2890,Middle East,1243749103 +161588,2890,US history,1243749110 +161588,2968,don't touch it it's evil,1243749629 +161588,2968,funny,1243749626 +161588,3317,WRITER'S LIFE,1243749487 +161588,4306,unlikely hero,1245350603 +161588,5038,dragon,1243763352 +161588,5038,good versus evil,1243763359 +161588,5038,reluctant hero,1243763357 +161588,5038,time travel,1243763363 +161588,5618,dreamlike,1244645570 +161588,27186,Africa,1243763540 +161588,27186,folk tale,1243763538 +161588,31150,Cartoons for Big Kids,1245602695 +161588,32456,environmental,1243763439 +161588,32456,narrated,1243763458 +161588,32456,unconventional,1243763441 +161596,55118,organized crime,1191980637 +161615,101710,silly,1383898594 +161615,101710,spirits,1383899225 +161615,101710,Takashi Miike,1383898638 +161615,101710,video game adaptation,1383898608 +161615,101710,visually appealing,1383899196 +161620,18,awesome soundtrack,1431018759 +161620,18,Combustible Edison Music,1431018814 +161620,18,dark comedy,1431018739 +161620,18,Quentin Tarantino,1431018777 +161620,260,awesome soundtrack,1430934848 +161620,260,must see,1430934859 +161620,260,sci-fi,1430934833 +161640,20,intense,1188561068 +161640,74,bit too sweet,1188561052 +161640,237,ordinary,1188560495 +161640,276,okay,1188560624 +161640,277,sweet story,1188560370 +161640,372,okay,1188560440 +161640,838,Very well done!,1188560419 +161640,914,legendary,1188560391 +161640,915,audrey hepburn is great,1188561015 +161640,915,classic,1188561015 +161640,1047,okay once,1188560333 +161640,1188,well done,1188560462 +161640,1267,good acting,1188560359 +161640,1438,good special effects,1188560680 +161640,1438,good story,1188560680 +161640,1438,well acted,1188560680 +161640,1894,leading man too old.,1188560962 +161640,1894,mediocre,1188560962 +161640,2125,definitely for girls,1188560877 +161640,2125,lovely,1188560877 +161640,2137,excellent for kids,1188560861 +161640,2384,different,1188560937 +161640,2384,well done,1188560937 +161640,2463,really good,1188561135 +161640,2485,okay,1188560906 +161640,2915,good acting,1188560535 +161640,2953,excellent,1188560705 +161640,2953,funny,1188560705 +161640,2953,good for kids,1188560705 +161640,3450,excellent comedy,1188560893 +161640,3450,great acting,1188560893 +161640,3755,excellent drama,1188560402 +161640,3825,ordinary,1188561186 +161640,3916,good story,1188560639 +161640,3916,well acted,1188560639 +161640,3967,interesting,1188560595 +161640,3967,well acted,1188560595 +161640,4015,stupid,1188561106 +161640,4270,quite good,1188560628 +161640,4367,a bit exagerated,1188560771 +161640,4367,but a good movie,1188560771 +161640,4447,okay once,1188560567 +161640,4621,different,1188561255 +161640,4621,well done,1188561255 +161640,5064,Excellent,1188561095 +161640,5152,realistic,1188561331 +161640,5152,well acted,1188561331 +161640,5152,well done,1188561331 +161640,5308,excellent comedy,1188561315 +161640,5377,mediocre,1188560481 +161640,5528,not that good,1188561147 +161640,6373,excellent,1188560822 +161640,6378,Excellent,1188560549 +161640,6385,good,1188561268 +161640,6787,excellent drama,1188561283 +161640,8361,good,1188561207 +161640,45722,excellent,1188561170 +161640,46578,pointless,1188561229 +161640,46578,poor plot,1188561228 +161648,260,science fiction,1430667894 +161648,260,sequel,1430667894 +161648,260,space,1430667894 +161648,296,cool,1421951352 +161648,296,cult,1421951352 +161648,296,ironic,1421951352 +161648,480,cgi,1428772517 +161648,480,dinosaurs,1428772517 +161648,480,fantasy,1428772517 +161648,593,cannibal,1424456620 +161648,593,classic,1424456620 +161648,593,thriller,1424456620 +161681,1682,alternate reality,1362023461 +161681,1682,dark comedy,1362023459 +161681,1682,dystopia,1362023460 +161681,1682,fantasy,1362023463 +161681,1682,philosophy,1362023466 +161681,1682,social commentary,1362023465 +161681,3910,Golden Palm,1362023331 +161681,3910,Lars von Trier,1362023326 +161681,5618,adventure,1362023043 +161681,5618,alternate reality,1362023046 +161681,5618,animated,1362023038 +161681,5618,anime,1362023034 +161681,5618,atmospheric,1362023036 +161681,5618,Hayao Miyazaki,1362023005 +161681,5618,imdb top 250,1362023031 +161681,5618,Oscar (Best Animated Feature),1362023025 +161681,5618,Studio Ghibli,1362023027 +161681,5618,whimsical,1362023048 +161681,6711,atmospheric,1362023279 +161681,6711,bittersweet,1362023265 +161681,6711,complex characters,1362023274 +161681,6711,Melancholic,1362023282 +161681,6711,reflective,1362023271 +161681,6711,relationships,1362023284 +161681,27773,Chan-wook Park,1371078257 +161681,27773,Cinematography,1371078259 +161681,27773,depressing,1371078277 +161681,27773,hallucinatory,1371078263 +161681,27773,imdb top 250,1371078271 +161681,27773,stylized,1371078267 +161681,27773,twist ending,1371078254 +161681,27773,violent,1371078274 +161681,53161,Chan-wook Park,1362023666 +161681,53161,Cute story,1362023669 +161681,53161,love story,1362023663 +161681,53161,mental hospital,1362023658 +161681,53161,mental illness,1362023661 +161681,57223,bad CGI,1362023569 +161681,57223,bad plot,1362023556 +161681,57223,garbage,1362023557 +161681,57223,stupid ending,1362023559 +161681,58425,beautifully filmed,1362023246 +161681,58425,Dean DeBlois,1362023244 +161681,58425,sigur rós,1362023240 +161681,58425,Sigur Ros,1362023242 +161681,59784,animation,1362023722 +161681,59784,comedy,1362023723 +161681,59784,Jack Black,1362023736 +161681,59784,Seth Rogen,1362023738 +161681,62336,anime,1362023361 +161681,62336,cult film,1362023380 +161681,62336,Not a movie,1362023385 +161681,62336,stylish,1362023372 +161681,62336,surreal,1362023365 +161681,62336,weird,1362023374 +161681,63876,biography,1364332402 +161681,63876,Gus Van Sant,1364332403 +161681,63876,Oscar (Best Actor),1364332413 +161681,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1364332407 +161681,64993,anime,1362023197 +161681,64993,bittersweet,1362023182 +161681,64993,coming of age,1362023208 +161681,64993,intimate,1362023211 +161681,64993,love,1362023187 +161681,64993,made me cry,1362023221 +161681,64993,Makoto Shinkai,1362023189 +161681,64993,melancholic,1443382567 +161681,64993,visually appealing,1362023204 +161681,64993,visually stunning,1362023191 +161681,71464,coen brothers,1364332374 +161681,71464,dark comedy,1364332356 +161681,71464,open ending,1364332369 +161681,71464,Philosophical,1364332352 +161681,71464,slow,1364332387 +161681,72720,based on a book,1363799824 +161681,72720,beautiful cinematography,1363798730 +161681,72720,cinematography,1363798732 +161681,72720,Colin Firth,1363798733 +161681,72720,Julianne Moore,1363798735 +161681,74458,atmospheric,1369576865 +161681,74458,Martin Scorsese,1369576867 +161681,74458,psychological,1369576857 +161681,74458,stylized,1369576859 +161681,74458,twist ending,1369576863 +161681,76093,adventure,1362023700 +161681,76093,animated,1362023708 +161681,76093,animation,1362023697 +161681,76093,fantasy,1362023702 +161681,76093,friendship,1362023710 +161681,76093,heartwarming,1362023705 +161681,78039,emotional,1362023410 +161681,78039,realism,1362023403 +161681,78039,thought provoking,1362023402 +161681,78499,animation,1362023789 +161681,78499,Oscar (Best Animated Feature),1362023799 +161681,78499,Pixar,1362023790 +161681,78499,visually appealing,1362023792 +161681,80693,bittersweet,1362023522 +161681,80693,coming of age,1362023514 +161681,80693,depression,1362023520 +161681,80693,mental illness,1362023512 +161681,80969,atmospheric,1362927598 +161681,80969,based on a book,1362927635 +161681,80969,beautiful,1362927619 +161681,80969,cinematography,1362927600 +161681,80969,dystopia,1362927626 +161681,80969,emotional,1362927628 +161681,80969,great acting,1362927634 +161681,80969,Keira Knightley,1362927607 +161681,80969,love story,1362927613 +161681,80969,thought-provoking,1362927602 +161681,84116,Chang-dong Lee,1362023072 +161681,84116,Poetic,1362023068 +161681,96610,Bruce Willis,1371078319 +161681,96610,complicated,1371078312 +161681,96610,violent,1371078329 +161681,96610,visually appealing,1371078317 +161681,96728,Character study,1362875919 +161681,96728,cinematography,1362875862 +161681,96728,confusing,1362875874 +161681,96728,Paul Thomas Anderson,1362875853 +161681,96728,Philip Seymour Hoffman,1362875855 +161681,96728,unique,1362875896 +161681,96728,visually appealing,1362875859 +161681,98243,Adventure,1362023600 +161681,98243,animation,1362023605 +161681,98243,creative plot,1362023607 +161681,98243,playful,1362023610 +161681,98243,visuals,1362023612 +161681,103048,coming of age,1390256930 +161681,103141,Pixar,1373075689 +161681,106920,psychology,1390021348 +161681,106920,Spike Jonze,1390021340 +161681,106920,thought-provoking,1390021352 +161689,32,psychology,1332288428 +161689,32,time travel,1332288402 +161689,296,nonlinear,1332289698 +161689,457,1304,1368405568 +161689,1089,low budget,1332289548 +161689,1089,nonlinear,1332289543 +161689,1089,violence,1332289539 +161689,1127,ending,1365993095 +161689,1127,submarine dogfight,1365993246 +161689,1284,1305,1368820106 +161689,1306,Trilogy,1368405302 +161689,1732,White Russian,1332288559 +161689,4226,memory,1332288647 +161689,4226,nonlinear,1332288643 +161689,5939,1304,1369359556 +161689,5939,WTF?,1366943857 +161689,7229,1305,1368841930 +161689,7749,1305,1369106847 +161689,38061,1305,1368405432 +161689,46478,1305,1369266298 +161689,47465,Jeff Bridges,1335735519 +161689,56367,1305,1368829702 +161689,65642,time travel,1332288781 +161689,80219,1305,1368475280 +161689,84156,1305,1368494201 +161689,102121,1304,1369359125 +161689,102445,1305,1369088997 +161689,102666,1305,1369265081 +161689,102686,1305,1369870999 +161696,1036,action,1160524051 +161713,260,drama,1438244946 +161713,260,witty,1438244931 +161716,26738,david bowie,1426368693 +161716,26738,heist,1426368693 +161716,26738,rosanna arquette,1426368693 +161716,50821,dracula,1427149773 +161716,50821,vampire,1427149773 +161716,50821,western,1427149773 +161716,110052,Marcello Mastroianni,1395644389 +161716,110052,"marcello mastroianni,",1422925214 +161716,110052,Nastassja Kinski,1395644389 +161716,110052,Nudity (Full Frontal - Notable),1395644389 +161720,32,atmospheric,1291531036 +161720,32,imdb top 250,1291531041 +161720,32,post-apocalyptic,1291531031 +161720,32,sci-fi,1291531016 +161720,32,twist ending,1291531014 +161720,541,artificial intelligence,1291531069 +161720,541,classic,1291531085 +161720,541,cult film,1291531086 +161720,541,cyberpunk,1291531071 +161720,541,dreamlike,1291531090 +161720,541,Philip K. Dick,1291531078 +161720,541,robots,1291531080 +161720,541,sci-fi,1291531082 +161720,72998,aliens,1291531114 +161720,72998,environmental,1291531131 +161720,72998,music,1291531130 +161720,72998,mythology,1291531116 +161720,72998,politics,1291531127 +161720,72998,predictable,1291531120 +161720,72998,romance,1291531124 +161720,72998,sci-fi,1291531119 +161729,31685,did not finish,1137440128 +161743,86882,Romance,1403567669 +161758,1258,disturbing,1445782840 +161758,1258,dreamlike,1445782839 +161758,1258,psychological,1445782829 +161758,1258,psychology,1445782834 +161758,3949,disturbing,1443311246 +161758,3949,emotional,1443311250 +161758,3949,intense,1443311252 +161758,3949,psychology,1443311248 +161758,4226,paranoid,1443311156 +161758,4226,psychological,1443311148 +161758,4226,psychology,1443311145 +161758,4995,genius,1443311403 +161758,4995,intelligent,1443311410 +161758,4995,mathematics,1443311401 +161758,4995,mental illness,1443311406 +161758,4995,psychology,1443311399 +161758,49649,dragons,1443312595 +161758,49649,fantasy,1443312596 +161758,68954,animated,1443353380 +161758,74458,insanity,1443311182 +161758,74458,mystery,1443311179 +161758,74458,psychological,1443311174 +161758,74530,fantasy,1443312568 +161758,79132,clever,1443311119 +161758,79132,intellectual,1443311120 +161758,79132,philosophy,1443311125 +161758,79132,sci-fi,1443311115 +161758,79139,magic,1443312547 +161758,81845,drama,1443311374 +161758,81845,emotional,1443311378 +161758,88125,Emma Watson,1443311871 +161758,88125,fantasy,1443311869 +161758,88125,magic,1443311866 +161758,90376,disturbing,1443311270 +161758,90376,insanity,1443311272 +161758,90376,psychological,1443311268 +161758,91500,dystopia,1443311501 +161758,91500,survival,1443311508 +161758,91500,thriller,1443311509 +161758,96821,amazing soundtrack,1443312862 +161758,96821,atmospheric,1443312859 +161758,96821,depression,1443312865 +161758,96821,Emma Watson,1443312871 +161758,96821,high school,1443312869 +161758,96821,music,1443312863 +161758,96821,plot twist,1443312874 +161758,96821,Suicide,1443312854 +161758,96821,touching,1443312853 +161758,97921,loneliness,1443312961 +161758,97921,mental illness,1443312957 +161758,106100,death,1443312636 +161758,106100,realism,1443312634 +161758,106100,social commentary,1443312632 +161758,106487,dystopia,1443311524 +161758,106487,dystopic future,1443311526 +161758,106782,3-hours of sex and drugs,1443311985 +161758,106782,drugs,1443311996 +161758,106782,Nudity (Topless),1443311993 +161758,106782,prostitution,1443311994 +161758,108190,dystopia,1443311519 +161758,108190,new society,1443311473 +161758,109487,artificial intelligence,1443311089 +161758,109487,sci-fi,1443311083 +161758,112552,motivation,1443311595 +161758,112552,psychological,1443311590 +161758,112552,Tense,1443311589 +161758,112556,false accusation,1444180691 +161758,112556,mindfuck,1444180680 +161758,112556,Psychopathy,1444180683 +161758,112556,twists & turns,1444180707 +161758,112556,unpredictable,1444180678 +161758,114180,post-apocalyptic,1443311454 +161758,114180,survival,1443311456 +161758,116797,Alan Turing,1443311342 +161758,116797,code breaking,1443311347 +161758,116797,Computers,1443311344 +161758,116797,cryptography,1443311340 +161758,116797,genius,1443311353 +161758,116797,history,1443311350 +161758,116797,informatics,1443311358 +161758,116797,intelligent,1443311360 +161758,116797,mathematics,1443311346 +161758,117895,zombies,1443901689 +161758,130490,dystopia,1443311548 +161790,10,007,1206902297 +161790,10,Bond,1206902276 +161790,10,boys with toys,1206902319 +161790,10,gadgets,1206902308 +161790,10,secret service,1206902384 +161790,10,sequel,1206902400 +161790,10,spies,1206902377 +161790,10,violence,1206902328 +161790,29,bleak,1206567851 +161790,29,children,1206567852 +161790,29,kidnapping,1195324480 +161790,29,steampunk,1195324494 +161790,29,surreal,1195324487 +161790,29,weird,1368889840 +161790,32,asylum,1195326092 +161790,32,biological warfare,1195326137 +161790,32,dystopia,1195326112 +161790,32,original,1368889638 +161790,32,post-apocalyptic,1195326106 +161790,32,remake,1195326040 +161790,32,time travel,1195326074 +161790,50,organized crime,1195321712 +161790,50,storytelling,1368889726 +161790,50,twist,1195321666 +161790,50,whodunnit,1195321646 +161790,70,cult classic,1368889881 +161790,111,classic,1195327001 +161790,111,loneliness,1368889761 +161790,169,family,1368889899 +161790,204,action,1368889804 +161790,223,black and white,1195321429 +161790,223,convenience store,1206520100 +161790,223,dialogue driven,1195321472 +161790,223,low budget,1195321503 +161790,223,minimalist,1195321489 +161790,232,relationships,1368889817 +161790,296,Black comedy,1251546155 +161790,296,crime,1206520597 +161790,296,nonlinear,1195322076 +161790,296,storytelling,1368889726 +161790,296,violent,1206520609 +161790,318,based on a book,1214054036 +161790,318,corruption,1438509476 +161790,318,prison,1214054028 +161790,318,prison escape,1438509476 +161790,319,crime,1197851779 +161790,319,dark comedy,1204932198 +161790,319,friendship,1197851782 +161790,319,macabre,1197851776 +161790,319,sudden wealth,1204932198 +161790,356,based on a book,1195331385 +161790,356,historical revisionism,1436099969 +161790,356,love,1436099969 +161790,356,luck,1436099969 +161790,356,melodrama,1195331467 +161790,356,sappy,1195331534 +161790,356,silly,1195331553 +161790,356,us culture,1195331547 +161790,356,Vietnam,1195331538 +161790,356,vietnam war,1195331542 +161790,356,war,1195331544 +161790,455,family,1368889899 +161790,500,cross dressing,1219967193 +161790,500,deceit,1219967211 +161790,500,divorce,1206902178 +161790,500,Impersonation,1206902161 +161790,500,nanny,1206902202 +161790,500,transvestism,1206902109 +161790,541,based on a book,1195331049 +161790,541,morality,1195331108 +161790,541,philip k dick,1195331079 +161790,541,robots,1195331099 +161790,555,violence,1195326467 +161790,593,crime,1437085966 +161790,593,kidnapping,1437085966 +161790,593,tense,1437085966 +161790,714,black and white,1195321274 +161790,745,Aardman,1195325599 +161790,745,claymation,1195325628 +161790,745,stop motion,1195325619 +161790,750,based on book,1195321160 +161790,750,black comedy,1195321223 +161790,750,mutual assured destruction,1195321186 +161790,750,nuclear bomb,1195321199 +161790,750,war,1195321164 +161790,778,addiction,1195326789 +161790,778,based on a book,1195326758 +161790,778,classic,1195326625 +161790,778,drugs,1195326627 +161790,778,scotland,1195326744 +161790,778,violence,1195326733 +161790,780,alien invasion,1278019143 +161790,780,aliens,1278019141 +161790,780,americans save the world,1278019157 +161790,804,relationships,1368889817 +161790,837,bad parents,1230071473 +161790,837,based on a book,1230071423 +161790,837,children,1230071436 +161790,837,inner strength,1230071459 +161790,837,supernatural,1230071453 +161790,858,classic,1195322740 +161790,858,great acting,1368889869 +161790,858,mafia,1195322686 +161790,858,organized crime,1195322692 +161790,924,based on a book,1226932023 +161790,994,1950s,1206568156 +161790,994,brothers,1195324591 +161790,994,failing business,1195324630 +161790,994,food,1195324597 +161790,994,italian,1206568129 +161790,994,kitchen,1206568164 +161790,994,restaurant,1195324587 +161790,1015,family,1368889899 +161790,1016,family,1368889899 +161790,1080,jesus,1195331135 +161790,1080,religion,1195331127 +161790,1080,reluctant hero,1195331207 +161790,1080,satire,1195331167 +161790,1089,cult,1206520573 +161790,1089,diamonds,1206520416 +161790,1089,guns,1206520412 +161790,1089,nonlinear,1206520412 +161790,1089,original,1368889638 +161790,1089,robbery,1206520414 +161790,1089,straight razor,1206520555 +161790,1089,violence,1195321996 +161790,1148,Aardman,1195325715 +161790,1148,claymation,1195325720 +161790,1148,penguin,1206568235 +161790,1148,robots,1206568229 +161790,1148,stop motion,1195325724 +161790,1172,mentor,1368889676 +161790,1175,weird,1368889840 +161790,1193,asylum,1195322156 +161790,1193,based on a book,1195322226 +161790,1193,electroshock therapy,1195322238 +161790,1193,lobotomy,1195322187 +161790,1193,patient,1195322146 +161790,1193,rebel,1195322142 +161790,1193,wrongful imprisonment,1195322173 +161790,1199,cerebral,1368889948 +161790,1199,visually appealing,1368889859 +161790,1199,weird,1368889840 +161790,1206,based on a book,1195324367 +161790,1206,Beethoven,1195324462 +161790,1206,brainwashing,1195324442 +161790,1206,classic,1195324411 +161790,1206,dystopia,1206567803 +161790,1206,prison,1195324403 +161790,1206,shocking,1206567816 +161790,1206,violence,1195324400 +161790,1208,anti-war,1195324750 +161790,1208,based on a book,1195324705 +161790,1208,classic,1195324678 +161790,1208,vietnam,1195324686 +161790,1208,vietnam war,1195324691 +161790,1208,war,1195324682 +161790,1212,black and white,1195321807 +161790,1212,post WWII,1195321791 +161790,1212,WWII,1195321785 +161790,1222,anti-war,1195322962 +161790,1222,boot camp,1195322999 +161790,1222,suicide,1195322948 +161790,1222,Vietnam,1195322991 +161790,1222,Vietnam War,1195322974 +161790,1222,war,1195322954 +161790,1223,aardman,1241133238 +161790,1223,claymation,1241133241 +161790,1223,space travel,1195325701 +161790,1223,stop motion,1241133244 +161790,1233,classic,1193595513 +161790,1233,claustrophobic,1193595507 +161790,1233,submarine,1193595509 +161790,1233,war,1193595536 +161790,1233,WWII,1195321605 +161790,1241,cult classic,1368889881 +161790,1255,cult classic,1368889881 +161790,1258,based on a book,1195328626 +161790,1258,cabin fever,1195328637 +161790,1258,classic,1195328645 +161790,1258,stephen king,1195328632 +161790,1273,bayou,1195323191 +161790,1273,black and white,1195323115 +161790,1273,feel-good,1195323136 +161790,1273,prison escape,1195323155 +161790,1273,slow,1195323111 +161790,1299,dramatic,1368889789 +161790,1307,relationships,1368889816 +161790,1466,mentor,1368889676 +161790,1527,visually appealing,1368889859 +161790,1552,action,1368889804 +161790,1590,bloody,1204931820 +161790,1590,dark,1204932093 +161790,1590,death,1204931886 +161790,1590,distorted reality,1204931786 +161790,1590,future,1204931831 +161790,1590,hallucination,1204931810 +161790,1590,hell,1204931802 +161790,1590,space,1204931829 +161790,1590,straight razor shaving,1204931938 +161790,1590,wormhole,1204931858 +161790,1590,zero gravity,1204931875 +161790,1608,action,1368889804 +161790,1623,horror,1368889889 +161790,1627,based on a book,1195325985 +161790,1627,betrayal,1195325973 +161790,1627,black comedy,1195325968 +161790,1627,infidelity,1195326001 +161790,1639,relationships,1368889816 +161790,1676,aliens,1195331303 +161790,1676,based on a book,1195331290 +161790,1676,deadpan,1197848738 +161790,1676,fascism,1197848715 +161790,1676,Heinlein,1195331298 +161790,1676,over the top,1195331322 +161790,1676,space,1195331305 +161790,1682,dystopia,1195326395 +161790,1682,identity,1195326258 +161790,1682,reality TV,1195326399 +161790,1682,simulated reality,1195326243 +161790,1682,slavery,1195326202 +161790,1682,television,1195326207 +161790,1682,TV,1195326168 +161790,1682,voyeurism,1195326189 +161790,1704,mentor,1368889675 +161790,1722,action,1368889804 +161790,1732,bowling,1193571274 +161790,1732,mistaken identity,1193571282 +161790,1747,based on a book,1195325564 +161790,1747,black comedy,1195325544 +161790,1747,cover up,1195325572 +161790,1747,politics,1195325523 +161790,1747,satire,1195325530 +161790,1748,aliens,1195324191 +161790,1748,big brother,1195324187 +161790,1748,dark,1195324181 +161790,1748,dystopia,1195324236 +161790,1748,identity,1195326323 +161790,1748,noirish,1236030269 +161790,1809,bloody,1195323049 +161790,1809,police,1195323102 +161790,1809,wheelchair,1195323075 +161790,1809,yakuza,1195323067 +161790,1916,kidnapping,1195324557 +161790,1916,stockholm syndrome,1195324551 +161790,1921,black and white,1195320272 +161790,1921,go,1195320416 +161790,1921,Judaism,1195320408 +161790,1921,low budget,1195320424 +161790,1921,math,1206519711 +161790,1921,mathematics,1195320233 +161790,1921,nyc,1195320768 +161790,1921,paranoia,1195320445 +161790,1921,religion,1206519738 +161790,1921,stock market,1195320387 +161790,1921,visually appealing,1368889859 +161790,1947,classic,1195325072 +161790,1991,horror,1368889889 +161790,2019,samurai,1195321929 +161790,2028,us glorification,1195328866 +161790,2028,war,1195328678 +161790,2028,wwII,1195328702 +161790,2076,weird,1368889840 +161790,2138,based on a book,1195325089 +161790,2138,rabbits,1195325105 +161790,2138,violent,1195325132 +161790,2167,action,1368889804 +161790,2262,relationships,1368889817 +161790,2291,original,1368889638 +161790,2315,horror,1368889890 +161790,2329,crime,1206568002 +161790,2329,gang mentality,1206568041 +161790,2329,Nazis,1195324847 +161790,2329,Neo-Nazis,1195324854 +161790,2329,prison,1195324825 +161790,2329,racism,1195324810 +161790,2329,redemption,1195324821 +161790,2329,violence,1195324893 +161790,2335,comedy,1368889709 +161790,2360,birthday,1195321550 +161790,2360,dogma,1195321513 +161790,2360,family,1195321519 +161790,2360,incest,1195321527 +161790,2360,sexual abuse,1206520211 +161790,2360,suicide,1195321543 +161790,2360,traumatic childhood,1195321535 +161790,2371,comedy,1368889709 +161790,2420,mentor,1368889676 +161790,2444,black and white,1241133225 +161790,2444,boxing,1227792528 +161790,2460,horror,1368889890 +161790,2502,code monkey,1206520857 +161790,2502,crime gone awry,1206520784 +161790,2502,cult film,1206520726 +161790,2502,embezzlement,1435530172 +161790,2502,fraud,1206520745 +161790,2502,hypnosis,1206520736 +161790,2502,office,1195322286 +161790,2502,white collar crime,1195322307 +161790,2502,workplace,1195322270 +161790,2542,black comedy,1195322664 +161790,2542,death by dildo,1206521011 +161790,2542,debt,1195322639 +161790,2542,drugs,1195322584 +161790,2542,gunfight,1206520997 +161790,2542,guns,1206521000 +161790,2542,marijuana,1206520959 +161790,2542,organized crime,1195322594 +161790,2542,poker,1195322635 +161790,2542,slapstick violence,1206521031 +161790,2542,useless weapons,1206520973 +161790,2542,violence,1195322581 +161790,2571,simulated reality,1195326283 +161790,2624,afterlife,1195324994 +161790,2624,identity,1195326358 +161790,2624,memories,1195325013 +161790,2624,memory,1195325016 +161790,2624,reflective,1241133261 +161790,2657,aliens,1195329466 +161790,2657,audience participation,1195329459 +161790,2657,camp,1195329424 +161790,2657,cult,1195329429 +161790,2657,sexuality,1195329447 +161790,2672,identity,1195326981 +161790,2672,simulated reality,1195326976 +161790,2858,suburbia,1195331686 +161790,2952,casino,1195327218 +161790,2952,gambling,1195327222 +161790,2952,kidnapping,1195327228 +161790,2952,murder,1195327242 +161790,2952,neo-noir,1195327245 +161790,2959,angry,1206519939 +161790,2959,based on a book,1206519939 +161790,2959,mental illness,1206519983 +161790,2959,social commentary,1195321091 +161790,2959,subversion,1206520002 +161790,2959,twist,1206519972 +161790,2959,violence,1195321085 +161790,3000,adventure,1234036342 +161790,3000,anime,1234036333 +161790,3000,curse,1234036411 +161790,3000,demons,1234036357 +161790,3000,gods,1234036345 +161790,3000,Japan,1234036326 +161790,3000,nature,1234036397 +161790,3000,Studio Ghibli,1234036335 +161790,3018,horror,1368889889 +161790,3081,fairy tales,1195328502 +161790,3150,incest,1195325300 +161790,3150,murder,1195325322 +161790,3157,family,1368889899 +161790,3160,bleak,1195321025 +161790,3160,crumbling lives,1195321051 +161790,3160,death,1206519837 +161790,3160,depression,1206519860 +161790,3160,drugs,1206519853 +161790,3160,multiple storylines,1206519828 +161790,3176,1950s,1195327178 +161790,3176,based on a book,1195327134 +161790,3176,crime,1195327119 +161790,3176,false identity,1195327127 +161790,3176,italy,1195327181 +161790,3176,serial killer,1195327171 +161790,3328,mafia,1195322873 +161790,3328,pidgeons,1206521272 +161790,3328,rapping mafia,1195322879 +161790,3328,samurai,1195322864 +161790,3421,comedy,1368889709 +161790,3476,conspiracy,1209065587 +161790,3476,coverup,1209065562 +161790,3476,flashbacks,1209065527 +161790,3476,hallucination,1209065519 +161790,3476,nonlinear,1209065533 +161790,3476,paranoia,1209065565 +161790,3476,surreal,1209065779 +161790,3476,Vietnam War,1209065514 +161790,3476,war,1209065501 +161790,3535,1980s,1195426980 +161790,3535,based on a book,1195426918 +161790,3535,fantasy world,1195427132 +161790,3535,new york,1195426983 +161790,3535,violence,1195427107 +161790,3535,yuppies,1195427142 +161790,3556,1970s,1206568273 +161790,3556,based on a book,1195325351 +161790,3556,coming of age,1195325418 +161790,3556,high school,1195325472 +161790,3556,narrated,1206568275 +161790,3556,overprotective parents,1195325459 +161790,3556,suicide,1195325361 +161790,3569,dogma,1192648015 +161790,3569,explicit sex,1195320941 +161790,3569,mental disability,1195320894 +161790,3569,mental illness,1206519898 +161790,3569,social commentary,1195320900 +161790,3729,blaxploitation,1195328612 +161790,3740,cult classic,1368889881 +161790,3809,psychology,1250446366 +161790,3809,therapy,1250446363 +161790,3910,blindness,1195324332 +161790,3910,death penalty,1195324319 +161790,3910,factory,1195324305 +161790,3910,injustice,1195324298 +161790,3910,prison,1195324310 +161790,3949,addiction,1196541214 +161790,3949,based on a book,1196540687 +161790,3949,dark,1195320515 +161790,3949,disturbing,1196541236 +161790,3949,drugs,1195320502 +161790,3949,quick cuts,1195320576 +161790,3986,action,1368889804 +161790,4011,betting,1229894433 +161790,4011,boxing,1229894430 +161790,4011,Crime,1229894421 +161790,4011,debt,1229894436 +161790,4011,diamonds,1229894441 +161790,4027,1930s,1195329802 +161790,4027,bluegrass,1195329698 +161790,4027,prison escape,1195329812 +161790,4027,sinner's crossroad,1195329865 +161790,4027,southern us,1195329793 +161790,4036,1920s,1195329299 +161790,4036,based on a true story,1195329347 +161790,4036,film within a film,1195329322 +161790,4036,filming,1195329288 +161790,4036,vampire,1195329286 +161790,4085,comedy,1368889709 +161790,4226,amnesia,1195322381 +161790,4226,black and white,1206520676 +161790,4226,gimmicky,1206520714 +161790,4226,identity,1195326364 +161790,4226,partially black and white,1195322372 +161790,4226,storytelling,1368889726 +161790,4226,whodunnit,1195322408 +161790,4262,american dream,1195321989 +161790,4262,drugs,1195321951 +161790,4262,mafia,1195321967 +161790,4262,violence,1195321956 +161790,4344,over the top,1140870437 +161790,4641,based on a comic,1195322843 +161790,4641,coming of age,1195322834 +161790,4641,suburbia,1195322825 +161790,4649,fragmented,1438510046 +161790,4649,highly referential,1438509656 +161790,4725,horror,1368889890 +161790,4848,visually appealing,1368889860 +161790,4878,cerebral,1368889948 +161790,4878,original,1368889638 +161790,4878,weird,1368889840 +161790,4973,feel good,1241133265 +161790,4973,quirky,1241133265 +161790,4973,romantic,1206567967 +161790,4973,sweet,1206567969 +161790,5150,sexuality,1195325908 +161790,5452,family,1368889899 +161790,5463,americans abroad,1278019041 +161790,5463,americans save the world,1278019176 +161790,5463,dragons,1278018981 +161790,5463,dystopia,1278018983 +161790,5463,extinction of species,1278019100 +161790,5463,post-apocalyptic,1278018986 +161790,5618,child lead,1195321882 +161790,5618,japanese style animation,1195321891 +161790,5618,Studio Ghibli,1443367729 +161790,5619,assassination,1195326580 +161790,5619,based on a book,1195326530 +161790,5619,cia,1195326599 +161790,5619,corruption,1195326596 +161790,5619,south america,1195326578 +161790,5619,vietnam,1195326489 +161790,5619,vietnam war,1195326496 +161790,5619,war,1195326492 +161790,5619,war crimes,1195326514 +161790,5881,based on a book,1200160922 +161790,5881,remake,1200160931 +161790,5903,bullet ballet,1206901881 +161790,5903,choreographic violence,1277760299 +161790,5903,cult film,1206901988 +161790,5903,drugs,1206901822 +161790,5903,dystopia,1206901841 +161790,5903,fascism,1206902085 +161790,5903,gunfight,1206901890 +161790,5903,revolution,1206902022 +161790,5903,totalitarianism,1206901831 +161790,5989,based on a book,1251062532 +161790,5989,biography,1251062614 +161790,5989,con artists,1251062611 +161790,5989,fraud,1251062532 +161790,5989,true story,1251062526 +161790,6188,comedy,1368889709 +161790,6197,delusion,1316366249 +161790,6197,disturbing,1316366224 +161790,6197,mental illness,1316366231 +161790,6197,sad,1316366233 +161790,6222,based on a book,1247355095 +161790,6222,depression,1247355091 +161790,6350,Studio Ghibli,1204923525 +161790,6377,anthropomorphized animals,1272831122 +161790,6377,underwater,1272831093 +161790,6502,zombies,1241133221 +161790,6711,isolation,1195322508 +161790,6711,japan,1195322422 +161790,6711,slow,1195322421 +161790,6711,tokyo,1195322531 +161790,6754,feud,1278693081 +161790,6754,revenge,1278693085 +161790,6754,vampires,1278693043 +161790,6754,vendetta,1278693080 +161790,6754,werewolves,1278693044 +161790,6773,bicycling,1195321727 +161790,6773,kidnapping,1195321744 +161790,6773,mafia,1195321723 +161790,6773,no dialogue,1192648275 +161790,6773,quirky,1195321731 +161790,6773,rescue,1195321749 +161790,6773,silent,1206520263 +161790,6889,2D animation,1276370961 +161790,6889,animals,1276371010 +161790,6889,anthropomorphic,1276370988 +161790,6889,coming of age,1276370965 +161790,6889,mismatched couple,1276371064 +161790,6889,redemption,1276370990 +161790,7034,bullying,1211483273 +161790,7034,homosexuality,1211483264 +161790,7034,lesbian,1211483251 +161790,7034,sexuality,1211483258 +161790,7034,small town,1211483309 +161790,7034,teenagers,1211483341 +161790,7293,amnesia,1270418824 +161790,7293,anthropomorphized animals,1272831155 +161790,7293,memory loss,1270418821 +161790,7451,based on a book,1228064023 +161790,7451,clique,1228063878 +161790,7451,High School,1229547761 +161790,7451,innocence lost,1228064023 +161790,7451,manipulation,1228063919 +161790,7451,popularity,1228064011 +161790,7451,revenge,1228063921 +161790,7502,based on a book,1308502995 +161790,7502,friendship,1308503006 +161790,7502,military,1308503001 +161790,7502,war,1308502990 +161790,7502,World War II,1308502986 +161790,8330,based on a book,1236030198 +161790,8330,Cuba,1236030200 +161790,8368,based on a book,1193589021 +161790,8368,witch,1193589021 +161790,8464,fast food,1195328430 +161790,8464,food,1195328415 +161790,8464,health,1195328424 +161790,8464,mcdonalds,1195328406 +161790,8464,obesity,1195328420 +161790,8464,us culture,1195328405 +161790,8641,comedy,1368889709 +161790,8784,coming of age,1260559538 +161790,8784,death of a parent,1260044466 +161790,8784,emotions,1260044466 +161790,8784,father-son relationship,1260044466 +161790,8784,friendship,1260559532 +161790,8784,manic pixie dream girl,1436134746 +161790,8784,soul searching,1260044466 +161790,8914,complex,1240835129 +161790,8914,low budget,1240835115 +161790,8914,mindfuck,1240835046 +161790,8914,paradox,1240835144 +161790,8914,time travel,1240835040 +161790,8949,based on a book,1260187807 +161790,8949,friendship,1260188151 +161790,8949,infidelity,1260188151 +161790,8949,road trip,1260187877 +161790,8949,vacation,1260188151 +161790,8949,wine,1260187807 +161790,8950,guilt,1233863799 +161790,8950,memory,1233863790 +161790,8950,schizophrenia,1233863785 +161790,8950,stylized,1233863794 +161790,8950,twist ending,1233863787 +161790,8951,1950s,1195325821 +161790,8951,abortion,1195325787 +161790,8951,social commentary,1195325793 +161790,8951,working class,1206568328 +161790,8961,superhero,1229297017 +161790,8981,relationships,1368889817 +161790,26554,based on a book,1250969662 +161790,26554,Isolation,1250969657 +161790,26554,madness,1250969696 +161790,26554,Post Apocalypse,1250969659 +161790,26554,sacrifice,1250969715 +161790,27005,crime,1211320716 +161790,27005,dialogue driven,1211320711 +161790,27005,interrogation,1211322317 +161790,27005,justice,1211320739 +161790,27005,kafkaesque,1211320983 +161790,27005,manipulation,1211320762 +161790,27005,murder,1211320719 +161790,27005,police brutality,1211320754 +161790,27005,police investigation,1211320748 +161790,27604,japan,1252764131 +161790,27604,police,1252764160 +161790,27604,suicide,1252764134 +161790,31658,alter ego,1230570792 +161790,31658,anime,1230570758 +161790,31658,curse,1230570798 +161790,31658,magic,1230570762 +161790,31658,steampunk,1230570754 +161790,31658,war,1230570783 +161790,32587,storytelling,1368889727 +161790,33004,aliens,1260559433 +161790,33004,based on a book,1260559416 +161790,33004,dolphins,1260559421 +161790,33004,end of the world,1260559440 +161790,33004,space,1260559429 +161790,33004,space travel,1260559424 +161790,33615,anthropomorphized animals,1272831199 +161790,34405,assassin,1209736496 +161790,34405,based on a TV show,1209736468 +161790,34405,behavior modification,1209736597 +161790,34405,dystopia,1209736466 +161790,34405,evil empire,1209736499 +161790,34405,macho,1209736490 +161790,34405,plucky crew,1209736557 +161790,34405,space,1209736471 +161790,34532,magic,1277488309 +161790,34532,New Orleans,1277488321 +161790,34532,Twist Ending,1277488364 +161790,34532,Voodoo,1277488298 +161790,35836,geeks,1236030000 +161790,35836,nerds,1236030002 +161790,35836,normality,1236029745 +161790,35836,sex,1236029686 +161790,35836,virginity,1236029903 +161790,36401,fairy tale,1195320164 +161790,37386,assassin,1240047060 +161790,37386,cloning,1240046902 +161790,37386,dystopia,1241133251 +161790,37386,Post apocalyptic,1240046931 +161790,37386,resistance movement,1240047090 +161790,37386,revolution,1240047080 +161790,37386,stylized,1241133253 +161790,37386,utopia,1241133256 +161790,37386,violence,1240047056 +161790,37857,circus,1195327802 +161790,37857,parallel universe,1195327859 +161790,37857,rotoscoping,1195327798 +161790,40339,aliens,1308502679 +161790,40339,bland,1308502771 +161790,40339,bullying,1308502675 +161790,40339,dumb,1308502751 +161790,40339,father-son relationship,1308502683 +161790,40815,adapted from:book,1193589009 +161790,40815,based on a book,1193589009 +161790,40946,look at me I'm being all edgy,1307731800 +161790,40946,stand-up comedy,1307731784 +161790,44191,anarchism,1208868665 +161790,44191,based on a book,1208868584 +161790,44191,based on a comic,1208868587 +161790,44191,dystopia,1208868629 +161790,44191,fascism,1208868594 +161790,44191,London,1208868625 +161790,44191,terrorism,1208868657 +161790,44191,totalitarianism,1208868599 +161790,44665,assassination,1219967019 +161790,44665,debt collection,1219967031 +161790,44665,grudge,1219967008 +161790,44665,hit men,1219966982 +161790,44665,Revenge,1219966967 +161790,44665,vendetta,1219967038 +161790,44665,violent,1219966971 +161790,44788,bigotism,1195326882 +161790,44788,censorship,1195326827 +161790,44788,religious bigotism,1195326924 +161790,44788,social commentary,1195326905 +161790,45431,suburbia,1231073258 +161790,45431,talking animals,1231073260 +161790,46578,drugs,1223382688 +161790,46578,road trip,1223382684 +161790,47465,child lead,1192648333 +161790,47465,drugs,1192648336 +161790,48043,16th century,1196540050 +161790,48043,21st century,1196540062 +161790,48043,animal testing,1196539610 +161790,48043,cancer,1196539638 +161790,48043,death,1196539725 +161790,48043,disease,1196539613 +161790,48043,fountain of youth,1196539806 +161790,48043,history,1196539642 +161790,48043,immortality,1196539583 +161790,48043,inquisition,1196539910 +161790,48043,maya,1196539622 +161790,48043,medicine,1196539705 +161790,48043,mythology,1196539715 +161790,48043,religion,1196539730 +161790,48043,spain,1196539877 +161790,48082,dreams,1306776303 +161790,48082,mental illness,1306776297 +161790,48082,surreal,1306776274 +161790,48142,based on a book,1245246419 +161790,48262,depression,1223811380 +161790,48262,interviews,1223811410 +161790,48262,San Francisco,1223811384 +161790,48262,suicide,1223811382 +161790,48394,1940s,1197147160 +161790,48394,child lead,1195320037 +161790,48394,fairy tale,1195320013 +161790,48394,spain,1195319954 +161790,48394,Spanish Civil War,1195319965 +161790,48394,stepfather,1195319987 +161790,48774,betrayal,1195409051 +161790,48774,dystopia,1195408969 +161790,48774,totalitarian state,1195408987 +161790,48774,xenophobia,1195408997 +161790,48780,1890s,1195329605 +161790,48780,1900s,1195329608 +161790,48780,based on a book,1195329619 +161790,48780,diary,1195329598 +161790,48780,illusionism,1195329595 +161790,48780,magic,1195329556 +161790,48780,nonlinear,1234285786 +161790,48780,rivalry,1195329660 +161790,48780,sacrifice,1195329655 +161790,48780,steampunk,1234285776 +161790,48997,17th century,1208335049 +161790,48997,cannibalism,1208335704 +161790,48997,murder,1208335079 +161790,48997,obsession,1208335089 +161790,48997,perfume,1208335036 +161790,48997,scent,1208335034 +161790,48997,serial killer,1208335034 +161790,51037,amnesia,1241133388 +161790,51037,paranoia,1241133388 +161790,51255,parody,1196373118 +161790,51255,surreal,1196373129 +161790,53000,zombies,1210536509 +161790,53024,cult,1240829250 +161790,53024,history,1240829245 +161790,53024,mass suicide,1240829267 +161790,53024,religion,1240829252 +161790,53024,suicide,1240829269 +161790,53024,Tragedy,1240829279 +161790,53953,based on a book,1197146715 +161790,53953,fantasy world,1197147086 +161790,53953,Hotel,1197146705 +161790,54001,based on a book,1193589015 +161790,54001,magic,1193827662 +161790,54997,remake,1195408681 +161790,54997,violent,1195408713 +161790,55830,amateur film making,1212880451 +161790,55830,copyright,1212880474 +161790,55830,creativity,1212880622 +161790,55830,small business,1260559477 +161790,55830,vhs,1212880424 +161790,55830,video store,1212880433 +161790,55830,videotape,1212880424 +161790,56156,assassin,1205025946 +161790,56156,based on a game,1205025946 +161790,56156,betrayal,1205026070 +161790,56156,bullet ballet,1205025958 +161790,56156,choreographic violence,1277760308 +161790,56156,hooker with a heart of gold,1205026098 +161790,56156,Russia,1205026173 +161790,56367,adoption,1229391292 +161790,56367,female lead,1229548127 +161790,56367,high school,1229391271 +161790,56367,pregnancy,1229391267 +161790,56367,teenage pregnancy,1229391288 +161790,56563,design,1209065874 +161790,56563,interviews,1209065844 +161790,56563,modernism,1209065963 +161790,56563,noncommittal,1209067751 +161790,56563,shallow,1209067754 +161790,56563,typography,1209065839 +161790,56757,based on a play,1207339506 +161790,56757,cannibalism,1207339416 +161790,56757,london,1207339499 +161790,56757,straight razor,1207339411 +161790,57368,city under attack,1208080137 +161790,57368,giant monster,1208080141 +161790,57368,Handycam,1208080003 +161790,57368,mass death,1208080173 +161790,57368,mockumentary,1208080035 +161790,57368,monster,1208080007 +161790,57368,new york,1208080129 +161790,57368,shallow,1208080087 +161790,58025,based on a book,1206900588 +161790,58025,egomaniacs,1206998307 +161790,58025,escape,1206900671 +161790,58025,RELIGIOUS ZEALOTRY,1206998322 +161790,58025,teleportation,1206900596 +161790,58103,assassination,1206998059 +161790,58103,betrayal,1206998082 +161790,58103,bombs,1206998068 +161790,58103,double agents,1206998091 +161790,58103,multiple storylines,1206998167 +161790,58103,murder,1206998104 +161790,58103,secret service,1206998075 +161790,58103,spain,1206998096 +161790,58103,terrorism,1206998062 +161790,58105,based on a book,1277928476 +161790,58105,comedic violence,1277928622 +161790,58105,girl with swords,1277928607 +161790,58105,haunted house,1277928517 +161790,58105,magic,1277928539 +161790,58105,transformation,1277928509 +161790,58105,twins,1277928594 +161790,58295,1970s,1209407462 +161790,58295,corruption,1209407490 +161790,58295,extortion,1209407401 +161790,58295,heist,1209407372 +161790,58295,london,1209407454 +161790,58295,robbery,1209407394 +161790,58295,small time criminals,1209407410 +161790,58295,treachery,1209407426 +161790,58559,serial killer,1233697844 +161790,58559,superhero,1233697831 +161790,58806,desperation,1229280326 +161790,58806,father daughter relationship,1229280316 +161790,58870,aliens,1308694234 +161790,58870,friendship,1308694234 +161790,58870,superhero,1308694144 +161790,59295,biology,1227362375 +161790,59295,christianity,1227362385 +161790,59295,conspiracy theory,1227362399 +161790,59295,creationism,1227362379 +161790,59295,darwinism,1227650399 +161790,59295,evolution,1227362373 +161790,59295,onesided,1227650380 +161790,59295,propaganda,1227362351 +161790,59295,religion,1227362369 +161790,59295,science,1227362371 +161790,59315,abuse of power,1307796179 +161790,59315,based on a comic,1307796186 +161790,59315,Bechdel Test:Fail,1284470137 +161790,59315,dumb,1284470622 +161790,59315,jingoistic,1284470269 +161790,59315,live action cartoon,1284470045 +161790,59315,predictable,1284471124 +161790,59315,ridiculous violence,1284470127 +161790,59315,sheet metal makes you invincible,1284470132 +161790,59315,superhero,1284470629 +161790,59315,vigilante,1284471130 +161790,59784,action packed,1226931511 +161790,59784,animals,1226931691 +161790,59784,chosen one,1226931612 +161790,59784,fate,1226931614 +161790,59784,Kung Fu,1226931487 +161790,59784,martial arts,1226931541 +161790,59784,underdog,1226931626 +161790,59784,unlikely hero,1226931561 +161790,60069,ecology,1226931967 +161790,60069,human versus computer,1226932110 +161790,60069,last man on earth,1226931931 +161790,60069,love story,1226931957 +161790,60069,Post apocalyptic,1226931957 +161790,60069,robots,1226931957 +161790,60069,space,1226931769 +161790,60684,1980s,1307796104 +161790,60684,abuse of power,1307795979 +161790,60684,based on a comic,1307795951 +161790,60684,descent into crime,1307796149 +161790,60684,dystopia,1307795953 +161790,60684,full frontal nudity,1307796020 +161790,60684,jingoistic,1307796090 +161790,60684,superhero,1307795985 +161790,60684,vigilantism,1307795979 +161790,60816,based on a book,1238171805 +161790,60816,discworld,1238171809 +161790,60816,magic,1238171814 +161790,60816,tourism,1238171818 +161790,61132,confused reality,1240689231 +161790,61132,insanity,1240689258 +161790,61132,parody,1240688800 +161790,62113,based on a book,1236973210 +161790,62113,career,1236973187 +161790,62113,celebrity,1236973166 +161790,62113,journalism,1236973171 +161790,62113,success,1236973193 +161790,63113,extortion,1237671630 +161790,63113,James Bond,1237671605 +161790,63113,realpolitik,1237671663 +161790,63113,secret service,1237671690 +161790,63113,vengeance,1237671620 +161790,63859,alternate reality,1272830973 +161790,63859,anthropomorphic,1272830874 +161790,63859,damsel in distress,1272830929 +161790,63859,superhero,1272830855 +161790,63876,based on a true story,1308502861 +161790,63876,biography,1308502831 +161790,63876,civil rights,1308502911 +161790,63876,gay,1308502838 +161790,63876,gay rights,1308502840 +161790,63876,history,1308502842 +161790,63876,homophobia,1308502904 +161790,63876,murder,1308502900 +161790,63876,police brutality,1308502925 +161790,63876,politics,1308502833 +161790,63876,San Francisco,1308502836 +161790,63992,based on a book,1239139422 +161790,63992,emo,1239139458 +161790,63992,high school,1239139438 +161790,63992,teenagers,1260559756 +161790,63992,vampires,1239139429 +161790,64285,Aardman,1236030048 +161790,64285,bakery,1236030055 +161790,64285,baking,1236030041 +161790,64285,love,1236030035 +161790,64285,serial killer,1236030066 +161790,64285,short,1236030058 +161790,65261,2d animation,1303483221 +161790,65261,anime,1303483196 +161790,65261,environmentalism,1303483206 +161790,65642,complicated,1258150996 +161790,65642,murder,1258151024 +161790,65642,time travel,1258150993 +161790,66097,based on a book,1258151110 +161790,66097,dark,1258151123 +161790,66097,Surreal,1258151117 +161790,66240,afterlife,1236256454 +161790,66240,corporate culture,1236256487 +161790,66240,greed,1236256510 +161790,66240,management,1236256472 +161790,66240,morality,1236978335 +161790,66240,mortality,1236256499 +161790,66934,anti-hero,1242248504 +161790,66934,heroes,1242248486 +161790,66934,humiliation,1242248555 +161790,66934,short,1242248474 +161790,67255,rape,1299869830 +161790,67255,sexual violence,1299869835 +161790,67255,swedish,1299869838 +161790,67408,alien invasion,1261086787 +161790,67408,aliens,1261086785 +161790,67408,cloning,1261086829 +161790,67408,monsters,1261086783 +161790,68157,graphic,1266765378 +161790,68157,Nazis,1266765362 +161790,68157,random unnecessary close-ups of cream,1266765381 +161790,68157,vengeance,1266765359 +161790,68157,violence,1266765356 +161790,68237,cloning,1260483770 +161790,68237,corporate greed,1260483770 +161790,68237,death,1260559269 +161790,68237,deceit,1260483770 +161790,68237,hallucination,1260483770 +161790,68237,isolation,1260483770 +161790,68237,moon,1260483769 +161790,68237,solitude,1260559284 +161790,68237,space,1260483770 +161790,68554,based on a book,1304887595 +161790,68554,unrealistic,1304887604 +161790,68954,boy scouts,1260313857 +161790,68954,exploration,1260313857 +161790,68954,flying,1260313856 +161790,68954,friendship,1260313857 +161790,68954,talking animals,1260313857 +161790,69844,based on a book,1258151168 +161790,69844,high school,1258151186 +161790,69844,magic,1258151175 +161790,70293,based on a book,1260268556 +161790,70293,biography,1260268557 +161790,70293,cooking,1260268557 +161790,70293,food,1260268556 +161790,70293,france,1260268556 +161790,71057,dolls,1259500683 +161790,71057,fear,1260268474 +161790,71057,good versus evil,1260268474 +161790,71057,man versus machine,1259500679 +161790,71057,post-apocalyptic,1259500673 +161790,71057,robots,1259500689 +161790,71057,souls,1260268474 +161790,71468,alternate reality,1259440162 +161790,71468,dreams,1259434749 +161790,71468,family bonds,1259434770 +161790,71468,good versus evil,1259434746 +161790,71468,quick cuts,1259434927 +161790,71518,girl power,1270052497 +161790,71518,roller derby,1270052496 +161790,71535,dark comedy,1273469634 +161790,71535,gore,1273397137 +161790,71535,post-apocalyptic,1273397101 +161790,71535,road trip,1273397154 +161790,71535,stylized violence,1273397189 +161790,71535,zombies,1273397092 +161790,72226,based on a book,1263319473 +161790,72226,Roald Dahl,1263319512 +161790,72226,stop motion,1263319485 +161790,72226,talking animals,1263319475 +161790,73017,based on a book,1277760156 +161790,73017,choreographic violence,1277760254 +161790,73017,murder,1277760175 +161790,73017,mystery,1277760177 +161790,73017,occult,1277760217 +161790,73323,Rape,1299869894 +161790,73344,mafia,1269707996 +161790,73344,prison,1269707997 +161790,74510,rape,1299869881 +161790,74510,sexual violence,1299869879 +161790,75985,biomedical ethics,1279221526 +161790,75985,choreographic violence,1279221526 +161790,75985,debt collection,1279221574 +161790,75985,DIY surgery,1279221893 +161790,75985,evil corporation,1279221526 +161790,75985,friendship,1279221543 +161790,75985,gore,1279221526 +161790,75985,treason,1279222398 +161790,75985,twist ending,1279222384 +161790,75985,violent,1279221526 +161790,78266,childhood issues,1286182301 +161790,78266,coming of age,1286182301 +161790,78266,experiments gone awry,1286182301 +161790,78266,genetics,1286182202 +161790,78266,interspecies sex,1286182227 +161790,78266,overdone opening for sequel,1286182341 +161790,78266,rape,1286182301 +161790,78266,secrecy,1286182301 +161790,79091,Bechdel Test:Pass,1291545965 +161790,79091,childhood dreams,1291545911 +161790,79091,competition,1291545911 +161790,79091,financial woes,1291545911 +161790,79091,mad scientist,1291545911 +161790,79091,minions,1291545910 +161790,79091,orphans,1291545911 +161790,79091,parent-children relationship,1291545803 +161790,79091,parenting,1291545807 +161790,79091,redemption,1291545911 +161790,79091,space travel,1291545911 +161790,79091,super villain,1291545911 +161790,79132,alternate reality,1284469603 +161790,79132,ambiguous ending,1284469658 +161790,79132,clever,1284469607 +161790,79132,heist,1284469677 +161790,79132,mindfuck,1284469594 +161790,79132,surreal,1284469599 +161790,79293,assassination,1282770423 +161790,79293,betrayal,1282770423 +161790,79293,cia,1282770442 +161790,79293,double agents,1282770423 +161790,79293,espionage,1282770391 +161790,79293,sleeper agent,1282770397 +161790,79293,Soviet Union,1282770439 +161790,79428,crazy ex is crazy,1307960419 +161790,79428,idiots,1307960491 +161790,79428,remake,1307824124 +161790,80928,road trip,1307731645 +161790,80928,stand-up comedy,1307731645 +161790,81834,based on a book,1291554125 +161790,81834,magic,1291554138 +161790,81847,horsey!,1309639366 +161790,84944,spaghetti western,1312315222 +161790,85736,perseverance,1307731972 +161790,85736,robots,1307731972 +161790,85736,short,1307731972 +161790,91542,abusive relationship,1452373541 +161790,91542,codependency,1452373534 +161790,91542,manipulation,1452373515 +161790,91542,terrorism,1452375685 +161790,109848,unnerving,1443901562 +161790,109848,visceral,1435502630 +161790,109848,visually appealing,1435502638 +161790,115122,dark comedy,1435494415 +161790,115122,mockumentary,1435494404 +161790,115122,vampires,1435494400 +161790,115122,werewolves,1435494016 +161790,117529,dinosaurs,1443367428 +161790,117529,disaster,1443367496 +161790,117529,disaster movie,1443367468 +161790,117529,evil military guy,1443367892 +161790,117529,genetic engineering,1443367425 +161790,117529,hubris,1443367406 +161790,117529,sequel,1443367563 +161790,117895,based on a book,1450895513 +161790,117895,dystopia,1450895488 +161790,117895,post-apocalyptic,1450895485 +161790,117895,rebel forces,1450895657 +161790,117895,scoundrel with a heart of gold,1450895664 +161790,117895,zombies,1450895492 +161790,119145,adapted from:comic,1435528310 +161790,119145,exploding heads,1435527574 +161790,119145,gratuitous violence,1435528689 +161790,119145,megalomaniac villain,1435528161 +161790,119145,spy gadgets,1435528788 +161790,122892,artificial intelligence,1443386299 +161790,122892,superhero,1443386291 +161790,127152,brainwashing,1439728157 +161790,127152,greed,1439728148 +161790,127152,interviews,1439728166 +161790,127152,megalomania,1439728144 +161790,127152,religion,1439728134 +161790,127152,religious cult,1439742868 +161790,127152,scientology,1439728139 +161848,25,atmospheric,1451288456 +161848,25,dark,1451288470 +161848,25,depressing,1451288460 +161848,25,Elisabeth Shue,1451288473 +161848,25,love,1451288467 +161848,25,melancholic,1451288452 +161848,25,Nicolas Cage,1451288454 +161848,32,atmospheric,1436812327 +161848,32,brad pitt,1436812311 +161848,32,bruce willis,1436812313 +161848,32,sci-fi,1436812317 +161848,32,time travel,1436812304 +161848,32,twist ending,1436812308 +161848,39,Classic,1409375303 +161848,39,funny,1409375311 +161848,39,teen movie,1409375296 +161848,111,Classic,1410413621 +161848,111,dark,1410413623 +161848,111,Jodie Foster,1410413627 +161848,111,Martin Scorsese,1410413629 +161848,111,Robert De Niro,1410413632 +161848,111,social commentary,1410413635 +161848,141,Robin Williams,1409377561 +161848,153,Val Kilmer,1412980044 +161848,158,Christina Ricci,1414873427 +161848,158,family,1414873427 +161848,158,funny,1414873429 +161848,158,ghosts,1414873431 +161848,158,romance boygirl dancing,1414873443 +161848,158,sentimental,1414873446 +161848,181,Nostalgic,1412980176 +161848,181,Power Rangers,1412980179 +161848,186,Robin Williams,1411692095 +161848,208,stupid,1410058321 +161848,247,Peter Jackson,1409358939 +161848,247,stylized,1409358954 +161848,247,surrealism,1409358944 +161848,250,nostalgic,1411177665 +161848,253,vampires,1409376682 +161848,265,bittersweet,1440887309 +161848,265,magic,1440887306 +161848,282,disability,1410548239 +161848,282,Jodie Foster,1410548206 +161848,282,Liam Neeson,1410548208 +161848,282,Natasha Richardson,1410548219 +161848,296,dark comedy,1433653270 +161848,296,John Travolta,1433653309 +161848,296,masterpiece,1433653299 +161848,296,organized crime,1433653287 +161848,296,Quentin Tarantino,1433653267 +161848,296,quirky,1433653292 +161848,296,Samuel L. Jackson,1433653274 +161848,296,storytelling,1433653305 +161848,296,stylized,1433653289 +161848,296,Uma Thurman,1433653312 +161848,296,violence,1433653281 +161848,313,swan lake,1409415380 +161848,317,Christmas,1413057558 +161848,317,Tim Allen,1413057554 +161848,318,friendship,1410494122 +161848,318,inspirational,1410494124 +161848,318,Morgan Freeman,1410494111 +161848,318,reflective,1410494127 +161848,318,twist ending,1410494131 +161848,337,coming of age,1409363889 +161848,337,dysfunctional family,1409363894 +161848,337,Leonardo DiCaprio,1409363887 +161848,353,bittersweet,1409357067 +161848,353,dreamlike,1409357070 +161848,353,Fantasy,1409357075 +161848,353,gothic,1409357065 +161848,353,romance,1409357063 +161848,357,Comedy,1435211290 +161848,357,Hugh Grant,1435211286 +161848,357,Romance,1435211293 +161848,357,wedding,1435211288 +161848,377,chase,1433697948 +161848,377,explosions,1433697943 +161848,377,Keanu Reeves,1433697935 +161848,377,Sandra Bullock,1433697937 +161848,377,Thriller,1433697945 +161848,441,ensemble cast,1409416724 +161848,441,high school,1409416717 +161848,441,quirky,1409416720 +161848,480,action,1445657353 +161848,480,dinosaurs,1409355540 +161848,480,Jeff Goldblum,1445657355 +161848,480,sci-fi,1445657350 +161848,480,Steven Spielberg,1409355535 +161848,480,Suspense,1445657360 +161848,502,teen angst,1409596375 +161848,509,beautiful,1419750462 +161848,509,erotic,1419750466 +161848,509,intense,1419750471 +161848,520,Funny when your 10. Less funny when your not.,1413943534 +161848,520,Gross-out,1413943543 +161848,520,Robin Hood,1413943541 +161848,524,inspirational,1430021753 +161848,527,Steven Spielberg,1409355950 +161848,527,thought-provoking,1409355953 +161848,527,true story,1409355967 +161848,527,World War II,1409355966 +161848,542,ending,1409430810 +161848,542,Pauly Shore,1409430789 +161848,542,stupid but funny,1409430799 +161848,551,Christmas,1409533431 +161848,551,gothic,1409533427 +161848,551,halloween,1409533429 +161848,575,charming,1411177684 +161848,590,bittersweet,1410319415 +161848,590,culture clash,1410319418 +161848,590,Kevin Costner,1410319421 +161848,592,Jack Nicholson,1412980090 +161848,592,Tim Burton,1412980092 +161848,594,Disney animated feature,1409966337 +161848,594,good versus evil,1409966339 +161848,595,beautiful,1409357161 +161848,595,classic,1409357182 +161848,595,Disney,1409357140 +161848,595,fairy tale,1409357143 +161848,595,romance,1409357154 +161848,597,cinderella,1409375528 +161848,597,happy ending,1409375542 +161848,597,romantic comedy,1409375536 +161848,608,dark comedy,1420314360 +161848,608,Frances McDormand,1420314375 +161848,608,quirky,1420314363 +161848,608,Steve Buscemi,1420314378 +161848,608,witty,1420314371 +161848,661,Tim Burton,1409966567 +161848,851,biography,1453602025 +161848,851,David Bowie,1453602036 +161848,902,audrey hepburn,1431831556 +161848,902,bittersweet,1431831560 +161848,916,Audrey Hepburn,1436139392 +161848,916,classic,1436139395 +161848,916,Gregory Peck,1436139397 +161848,916,love story,1436139406 +161848,916,princess,1436139408 +161848,916,romantic comedy,1436139401 +161848,916,royalty,1436139403 +161848,922,atmospheric,1451877126 +161848,922,depressing,1451877148 +161848,922,Hollywood,1451877122 +161848,924,atmospheric,1414560035 +161848,924,future,1414560037 +161848,924,philosophical,1414560039 +161848,924,space,1414560043 +161848,924,surreal,1414560043 +161848,951,Cary Grant,1450856593 +161848,951,comedy,1450856600 +161848,951,dialogue driven,1450856596 +161848,951,Rosalind Russell,1450856616 +161848,1022,Disney animated feature,1409966318 +161848,1022,fairy tale,1409966320 +161848,1023,Disney animated feature,1409966499 +161848,1036,action,1448130652 +161848,1036,Alan Rickman,1448130658 +161848,1036,Bruce Willis,1448130650 +161848,1036,christmas,1448130661 +161848,1036,humorous,1448130655 +161848,1036,thriller,1448130676 +161848,1059,Baz Luhrmann,1422513529 +161848,1059,beautiful,1409355418 +161848,1059,Claire Danes,1409355434 +161848,1059,FORBIDDEN LOVE,1409355445 +161848,1059,great soundtrack,1409355406 +161848,1059,Leonardo DiCaprio,1409355386 +161848,1089,dark comedy,1433707134 +161848,1089,ensemble cast,1433707140 +161848,1089,heist,1433707145 +161848,1089,organized crime,1433707130 +161848,1089,Quentin Tarantino,1433707124 +161848,1089,quirky,1433707149 +161848,1096,meaning of life,1409361983 +161848,1096,Meryl Streep,1409361973 +161848,1096,secrets,1409361980 +161848,1127,James Cameron,1409358366 +161848,1127,sci-fi,1409358364 +161848,1127,Underwater,1409358362 +161848,1172,bittersweet,1451856238 +161848,1172,childhood,1451856243 +161848,1172,heartwarming,1451856240 +161848,1172,mentor,1451856233 +161848,1172,nostalgic,1451856236 +161848,1172,reflective,1451856246 +161848,1172,sentimental,1451856249 +161848,1183,beautiful scenery,1410319308 +161848,1183,Ralph Fiennes,1410319326 +161848,1193,emotional,1447572755 +161848,1193,jack nicholson,1447572747 +161848,1193,Louise Fletcher,1447572806 +161848,1193,mental hospital,1447572776 +161848,1193,mental illness,1447572751 +161848,1193,powerful ending,1447572759 +161848,1197,comedy,1412391900 +161848,1197,fairy tale,1412391903 +161848,1197,fantasy,1412391906 +161848,1197,quirky,1412391910 +161848,1197,romance,1412391912 +161848,1200,aliens,1409358330 +161848,1200,Sigourney Weaver,1409358335 +161848,1200,suspense,1409358328 +161848,1204,atmospheric,1451518757 +161848,1204,Biography,1451518770 +161848,1204,epic,1451518767 +161848,1204,Middle East,1451518761 +161848,1204,Peter O'Toole,1451518792 +161848,1204,World War I,1451518764 +161848,1206,atmospheric,1414822741 +161848,1206,disturbing,1414822743 +161848,1206,dystopia,1414822745 +161848,1206,quirky,1414822747 +161848,1206,satire,1414822749 +161848,1206,social commentary,1414822751 +161848,1206,Stanley Kubrick,1414822753 +161848,1206,Surrealism,1414822755 +161848,1207,atmospheric,1451795635 +161848,1207,bittersweet,1451795642 +161848,1207,classic,1451795622 +161848,1207,courtroom drama,1451795627 +161848,1207,Gregory Peck,1451795630 +161848,1207,heartwarming,1451795638 +161848,1207,racism,1451795624 +161848,1207,social commentary,1451795632 +161848,1214,aliens,1409358297 +161848,1214,atmospheric,1444608073 +161848,1214,dark,1409358302 +161848,1214,space,1444608069 +161848,1214,suspense,1409358305 +161848,1214,tense,1444608076 +161848,1219,Alfred Hitchcock,1443401958 +161848,1219,black and white,1443401970 +161848,1219,classic,1443401964 +161848,1219,suspenseful,1443401961 +161848,1219,thriller,1443401978 +161848,1225,18th century,1433046443 +161848,1225,biography,1433046450 +161848,1225,classical music,1433046437 +161848,1225,genius,1433046467 +161848,1225,Mozart,1433046440 +161848,1225,music,1433046434 +161848,1225,tom hulce,1433046469 +161848,1225,true story,1433046446 +161848,1228,atmospheric,1451358530 +161848,1228,black and white,1451358527 +161848,1228,Joe Pesci,1451358534 +161848,1228,Martin Scorsese,1451358524 +161848,1228,Robert De Niro,1451358521 +161848,1230,funny,1409363472 +161848,1230,quirky,1409363464 +161848,1230,relationships,1409363466 +161848,1230,romantic,1409363461 +161848,1230,thought-provoking,1409363468 +161848,1235,dark comedy,1434169114 +161848,1235,dark humor,1434169122 +161848,1235,Eccentric,1434250350 +161848,1235,good dialogue,1434169127 +161848,1235,humorous,1434169137 +161848,1235,quirky,1434169106 +161848,1240,artificial intelligence,1409357262 +161848,1240,robots,1409357254 +161848,1240,romance,1409357256 +161848,1240,time travel,1409357251 +161848,1246,bittersweet,1421440034 +161848,1246,boarding school,1421440040 +161848,1246,Coming of age,1421440055 +161848,1246,Ethan Hawke,1421440063 +161848,1246,friendship,1421440045 +161848,1246,High School,1421440049 +161848,1246,inspirational,1421440023 +161848,1246,philosophy,1421440020 +161848,1246,Robin Williams,1421440027 +161848,1247,comedy,1414281598 +161848,1247,coming of age,1414281600 +161848,1247,Dustin Hoffman,1414281605 +161848,1247,quirky,1414281610 +161848,1247,satirical,1414281607 +161848,1252,atmospheric,1429423645 +161848,1252,Film Noir,1429423640 +161848,1252,Jack Nicholson,1429423637 +161848,1252,Los Angeles,1429423652 +161848,1252,masterpiece,1429423656 +161848,1252,mystery,1429423659 +161848,1252,private detective,1429423649 +161848,1252,Roman Polanski,1429423643 +161848,1258,atmospheric,1426196827 +161848,1258,dreamlike,1426196843 +161848,1258,jack nicholson,1426196816 +161848,1258,psychological,1426196824 +161848,1258,Stanley Kubrick,1426196812 +161848,1258,visually appealing,1426196835 +161848,1263,Christopher Walken,1451332714 +161848,1263,friendship,1451332717 +161848,1263,Robert De Niro,1451332711 +161848,1263,Vietnam War,1451332708 +161848,1265,Bill Murray,1410134104 +161848,1265,surreal,1410134106 +161848,1270,high school,1409377155 +161848,1270,quirky,1409377157 +161848,1270,sci-fi,1409377150 +161848,1270,time travel,1409377147 +161848,1278,comedy,1449555267 +161848,1278,Gene Wilder,1449555260 +161848,1278,Mel Brooks,1449555263 +161848,1285,black comedy,1414890379 +161848,1285,high school,1414890384 +161848,1285,teen movie,1414890386 +161848,1285,Winona Ryder,1414890381 +161848,1286,ending,1409691615 +161848,1286,romance,1409689550 +161848,1286,time travel,1409689545 +161848,1307,Billy Crystal,1409356443 +161848,1307,Good Romantic Comedies,1409356451 +161848,1307,meg ryan,1409356445 +161848,1333,Alfred Hitchcock,1436567975 +161848,1333,eerie,1436567991 +161848,1333,strange,1436567982 +161848,1333,suspense,1436567978 +161848,1333,unusual,1436567993 +161848,1339,Gary Oldman,1409376657 +161848,1339,Keanu Reeves,1409376654 +161848,1339,vampire,1409376661 +161848,1339,Winona Ryder,1409376663 +161848,1345,bullying,1409416138 +161848,1345,Classic,1409416150 +161848,1345,social commentary,1409416140 +161848,1350,apocalypse,1451719321 +161848,1350,Suspense,1451719328 +161848,1358,Billy Bob Thornton,1413133502 +161848,1358,emotion,1413133504 +161848,1371,sci-fi,1410746327 +161848,1371,slow,1410746338 +161848,1377,Gothic,1412980068 +161848,1377,Michelle Pfeiffer,1412980077 +161848,1377,Tim Burton,1412980073 +161848,1399,Diane Keaton,1439061869 +161848,1399,Leonardo DiCaprio,1439061873 +161848,1399,Meryl Streep,1439061875 +161848,1457,matthew perry,1411150985 +161848,1457,salma hayek,1411150988 +161848,1476,true story,1426121839 +161848,1513,friendship,1409596524 +161848,1513,guilty pleasure,1409596521 +161848,1513,high school,1409596535 +161848,1513,Janeane Garofalo,1409596518 +161848,1513,Lisa Kudrow,1409596527 +161848,1515,unintentional comedy,1410412839 +161848,1566,Disney,1409415343 +161848,1566,Greek mythology,1409415345 +161848,1777,80's,1409617290 +161848,1777,Adam Sandler,1409617280 +161848,1777,Drew Barrymore,1409617282 +161848,1784,Helen Hunt,1409606477 +161848,1784,Jack Nicholson,1409606475 +161848,1784,obsessive compulsive disorder,1409606479 +161848,1784,quirky,1409606481 +161848,1895,Ethan Embry,1409596494 +161848,1895,high school,1409596490 +161848,1895,over-the-top,1409596483 +161848,1895,shallow characters,1409596486 +161848,1895,Teen movie,1409596492 +161848,1947,classic,1421685969 +161848,1947,Dance,1421685966 +161848,1947,musical,1421685961 +161848,1947,romeo and juliet,1421685957 +161848,1952,Dustin Hoffman,1425516486 +161848,1952,friendship,1425516497 +161848,1952,loneliness,1425516481 +161848,1954,classic,1440306691 +161848,1954,inspirational,1440306678 +161848,1954,sports,1440306682 +161848,1954,Sylvester Stallone,1440306676 +161848,1954,working class,1440306693 +161848,1961,disability,1409362154 +161848,1961,Dustin Hoffman,1409362148 +161848,1961,heartwarming,1409362157 +161848,1961,mental illness,1409362151 +161848,1967,David Bowie,1412979909 +161848,1967,dreamlike,1412979910 +161848,1967,fantasy,1412979913 +161848,1967,surreal,1412979915 +161848,1968,coming of age,1409355772 +161848,1968,teen,1409355775 +161848,1982,silent killer,1446312186 +161848,1982,suspenseful,1446312195 +161848,2018,cute,1409966376 +161848,2018,Disney animated feature,1409966373 +161848,2078,classic,1409418223 +161848,2078,Disney,1409418216 +161848,2083,Michael Caine,1413074416 +161848,2083,muppets,1413074417 +161848,2087,Disney,1409418196 +161848,2087,Peter Pan,1409418197 +161848,2096,Disney animated feature,1409966290 +161848,2096,dragons,1409966293 +161848,2096,fairy tales,1409966295 +161848,2096,fantasy,1409966302 +161848,2096,visually appealing,1409966298 +161848,2125,Drew Barrymore,1411150919 +161848,2125,historically inaccurate,1411150925 +161848,2125,romance,1411150930 +161848,2125,royalty,1411150934 +161848,2133,mishaps,1411177597 +161848,2133,teen,1411177591 +161848,2133,worth watching,1411177593 +161848,2144,dysfunctional family,1409355832 +161848,2144,John Hughes,1409355827 +161848,2144,teen movie,1409355834 +161848,2161,dragon,1411177411 +161848,2174,black comedy,1414015969 +161848,2174,surreal,1414015965 +161848,2174,Tim Burton,1414015959 +161848,2174,winona ryder,1414015956 +161848,2248,idealistic,1409375366 +161848,2248,John Cusack,1438474103 +161848,2248,romantic,1409375369 +161848,2248,sweet,1409375383 +161848,2291,beautifully filmed,1409355652 +161848,2291,dreamlike,1409355663 +161848,2291,fairy tale,1409355669 +161848,2291,gothic,1409355646 +161848,2291,love story,1409355636 +161848,2291,quirky,1409355629 +161848,2291,surreal,1409355626 +161848,2291,Tim Burton,1409355624 +161848,2312,compelling,1426129025 +161848,2312,disability,1426129038 +161848,2312,love story,1426129028 +161848,2312,Marlee Matlin,1426129041 +161848,2321,alternate reality,1409617165 +161848,2321,satire,1409617155 +161848,2321,surreal,1409617157 +161848,2355,coming of age,1409362996 +161848,2355,funny,1409363000 +161848,2355,Pixar,1409362990 +161848,2409,Sylvester Stallone,1441842197 +161848,2416,college,1410548273 +161848,2416,Rodney Dangerfield,1410548270 +161848,2420,55 movies every kid should see--Entertainment Weekly,1409596808 +161848,2420,bullying,1409596805 +161848,2420,classic,1409596813 +161848,2420,Pat Morita,1409596799 +161848,2420,Ralph Macchio,1409596801 +161848,2420,underdog,1409596816 +161848,2424,Meg Ryan,1409375569 +161848,2424,romantic comedy,1409375575 +161848,2424,Tom Hanks,1409375571 +161848,2455,changing species,1427234875 +161848,2455,Jeff Goldblum,1427234872 +161848,2455,mad scientist,1427234865 +161848,2455,sci-fi,1427234869 +161848,2455,tragic hero,1427234878 +161848,2469,teen,1411675412 +161848,2469,time travel,1411675410 +161848,2501,inspirational,1409416489 +161848,2501,True Story,1409416474 +161848,2529,science fiction,1414268323 +161848,2529,social commentary,1414268321 +161848,2529,twist ending,1414268307 +161848,2541,Betrayal,1409375235 +161848,2541,Mind Games,1409375232 +161848,2541,Sarah Michelle Gellar,1409375229 +161848,2640,superhero,1409533375 +161848,2687,Disney animated feature,1409415318 +161848,2687,Edgar Rice Burroughs,1409415321 +161848,2687,good soundtrack,1409415312 +161848,2712,atmospheric,1424591915 +161848,2712,dreamlike,1424591912 +161848,2712,Nicole Kidman,1424591920 +161848,2712,paranoia,1424591933 +161848,2712,psychological,1424591929 +161848,2712,Stanley Kubrick,1424591908 +161848,2712,Tom Cruise,1424591923 +161848,2717,Bill Murray,1409606616 +161848,2717,comedy,1409606621 +161848,2717,Dan Aykroyd,1409606619 +161848,2717,fantasy,1409606623 +161848,2739,emotion!,1409426734 +161848,2739,Whoopi Goldberg,1409426727 +161848,2795,Chevy Chase,1421177282 +161848,2795,Notable Nudity,1421177296 +161848,2795,road trip,1421177278 +161848,2797,Child as Adult,1409596783 +161848,2797,Tom Hanks,1409596785 +161848,2804,christmas movie,1409972151 +161848,2804,classic,1409972153 +161848,2858,coming of age,1409363589 +161848,2858,Kevin Spacey,1409363586 +161848,2858,mental illness,1409363584 +161848,2858,surrealism,1409363579 +161848,2858,thought-provoking,1409363582 +161848,2866,gary busey,1451681809 +161848,2866,musicians,1451681792 +161848,2915,teen movie,1450927936 +161848,2915,Tom Cruise,1450927944 +161848,2918,comedy,1409355800 +161848,2918,teen movie,1409355803 +161848,2921,Clint Eastwood,1451278592 +161848,2921,dark,1451278595 +161848,2950,deserted island,1409375122 +161848,2950,Golden Raspberry (Worst Actress),1409375142 +161848,2959,atmospheric,1422300778 +161848,2959,Brad Pitt,1422300734 +161848,2959,dark comedy,1422300759 +161848,2959,disturbing,1422300775 +161848,2959,Edward Norton,1422300731 +161848,2959,mental illness,1422300772 +161848,2959,psychology,1422300751 +161848,2959,quirky,1422300786 +161848,2959,social commentary,1422300762 +161848,2959,surreal,1422300766 +161848,2959,thought-provoking,1422300781 +161848,2959,twist ending,1422300728 +161848,2987,animation & live action interact,1409357868 +161848,2987,original,1409357876 +161848,2987,Robert Zemeckis,1409357872 +161848,3005,Angelina Jolie,1409427239 +161848,3005,Denzel Washington,1409427240 +161848,3034,anthropomorphic,1409418256 +161848,3034,Disney,1409418245 +161848,3072,Cher,1409356477 +161848,3072,Nicholas Cage,1409356480 +161848,3072,Self-discovery,1409356485 +161848,3081,dark fantasy,1410319077 +161848,3081,gothic,1410319080 +161848,3081,Tim Burton,1410319083 +161848,3081,visually appealing,1410319087 +161848,3101,Glenn Close,1429335335 +161848,3101,personality disorder,1429335343 +161848,3111,sally field,1451091584 +161848,3114,friendship,1409363063 +161848,3114,funny,1409363059 +161848,3114,Pixar,1409363051 +161848,3155,Jodie Foster,1415490387 +161848,3155,royalty,1415490392 +161848,3175,Alan Rickman,1453592427 +161848,3175,aliens,1453592415 +161848,3175,parody,1453592413 +161848,3175,Sam Rockwell,1453592435 +161848,3175,satire,1453592451 +161848,3175,Sigourney Weaver,1453592419 +161848,3175,Tim Allen,1453592449 +161848,3176,Jude Law,1431839997 +161848,3176,Matt Damon,1431839994 +161848,3176,obsession,1431840001 +161848,3176,psychology,1431839990 +161848,3176,suspense,1431840006 +161848,3247,Maggie Smith,1409596004 +161848,3247,Whoopi Goldberg,1409595998 +161848,3248,musical,1409596022 +161848,3248,Whoopi Goldberg,1409596019 +161848,3253,Dana Carvey,1409533138 +161848,3253,mike myers,1409533127 +161848,3253,Saturday Night Live,1409533119 +161848,3257,Kevin Costner,1409427743 +161848,3257,romance,1409427747 +161848,3363,coming of age,1409355749 +161848,3363,George Lucas,1409355742 +161848,3363,teen,1409355746 +161848,3408,based on a true story,1409375703 +161848,3408,social commentary,1409375705 +161848,3408,strong woman,1409375708 +161848,3438,Nostalgia Critic,1412980115 +161848,3439,goofy,1412980136 +161848,3448,Robin Williams,1409972833 +161848,3471,aliens,1409426520 +161848,3471,Steven Spielberg,1448651211 +161848,3471,visually appealing,1409426522 +161848,3535,Christian Bale,1429676554 +161848,3535,dark comedy,1429676564 +161848,3535,humorous,1429676560 +161848,3535,insanity,1429676557 +161848,3535,psychology,1429676551 +161848,3556,coming of age,1433018755 +161848,3556,dreamlike,1433018744 +161848,3556,high school,1433018740 +161848,3556,psychology,1433018737 +161848,3556,reflective,1433018751 +161848,3556,visually appealing,1433018747 +161848,3608,entertaining,1409416261 +161848,3608,great chase scenes,1409416259 +161848,3608,quirky,1409416276 +161848,3608,Tim Burton,1409416256 +161848,3624,Jackie Chan,1409595705 +161848,3624,Owen Wilson,1409595707 +161848,3624,Western Comedy,1409595710 +161848,3668,Notable Nudity,1409355479 +161848,3668,Romance,1409355505 +161848,3671,comedy,1448833485 +161848,3671,Gene Wilder,1448833482 +161848,3671,Mel Brooks,1448833476 +161848,3671,satire,1448833478 +161848,3671,social commentary,1448833487 +161848,3702,dystopia,1451250492 +161848,3702,lone hero,1451250502 +161848,3702,Mel Gibson,1451250497 +161848,3702,post-apocalyptic,1451250489 +161848,3702,revenge,1451250499 +161848,3713,civil rights,1439164349 +161848,3735,Al Pacino,1450908269 +161848,3735,corruption,1450908274 +161848,3735,true story,1450908277 +161848,3844,WOMEN'S FRIENDSHIP,1412392132 +161848,3882,cheerleading,1409596456 +161848,3882,guilty pleasure,1409596459 +161848,3882,Kirsten Dunst,1409596462 +161848,3897,1970s,1451681874 +161848,3897,bittersweet,1451681871 +161848,3897,Cameron Crowe,1451681879 +161848,3897,coming of age,1451681865 +161848,3897,Kate Hudson,1451681892 +161848,3897,music,1451681863 +161848,3916,based on a true story,1409426636 +161848,3916,high school,1409426625 +161848,3916,inspirational,1409426627 +161848,3916,social commentary,1409426631 +161848,3948,Ben Stiller,1409430869 +161848,3948,funny moments,1409430874 +161848,3948,Robert De Niro,1409430863 +161848,3949,addiction,1451204165 +161848,3949,atmospheric,1451204170 +161848,3949,dark,1451204163 +161848,3949,depressing,1451204155 +161848,3949,disturbing,1451204160 +161848,3949,Ellen Burstyn,1451204212 +161848,3949,emotional,1451204174 +161848,3949,intense,1451204191 +161848,3949,powerful ending,1451204200 +161848,3949,psychology,1451204158 +161848,3949,social commentary,1451204168 +161848,3949,visually appealing,1451204182 +161848,3974,vampires,1410019375 +161848,3979,perverted,1409972626 +161848,3988,Christmas,1409966651 +161848,3988,Jim Carrey,1409966647 +161848,3996,Ang Lee,1431209760 +161848,3996,atmospheric,1431209753 +161848,3996,beautifully filmed,1431209756 +161848,3996,dreamlike,1431209768 +161848,3996,Kung Fu,1431209750 +161848,3996,martial arts,1431209748 +161848,3996,romance,1431209765 +161848,3996,stylized,1431209763 +161848,4002,John Candy,1441047208 +161848,4002,road trip,1441047205 +161848,4002,Steve Martin,1441047202 +161848,4008,innocence lost,1409972856 +161848,4008,Tom Cruise,1409972852 +161848,4022,thought provoking,1409357755 +161848,4022,Tom Hanks,1409357752 +161848,4022,unique,1409357757 +161848,4025,Michael Caine,1409530279 +161848,4025,Sandra Bullock,1409530277 +161848,4214,nerds,1409530080 +161848,4246,romantic comedy,1409426986 +161848,4262,Al Pacino,1409359243 +161848,4262,classic,1409359644 +161848,4357,betty grable,1439097221 +161848,4357,Lauren Bacall,1439097230 +161848,4357,Marilyn Monroe,1439097202 +161848,4361,Dustin Hoffman,1409606430 +161848,4361,Funny as hell,1409606433 +161848,4474,Barbara Hershey,1412392154 +161848,4474,Bette Midler,1412392159 +161848,4474,friendship,1412392161 +161848,4489,Eddie Murphy,1409595374 +161848,4489,fish out of water,1409595380 +161848,4489,multiple roles,1409595376 +161848,4558,Arnold Schwarzenegger,1409441106 +161848,4558,Danny DeVito,1409441104 +161848,4641,bittersweet,1424559986 +161848,4641,coming of age,1424559984 +161848,4641,dark comedy,1424560125 +161848,4641,depressing,1424560009 +161848,4641,quirky,1424559995 +161848,4641,Steve Buscemi,1424559997 +161848,4643,predictable,1409441146 +161848,4643,remake,1409441155 +161848,4679,John Candy,1409595344 +161848,4679,john hughes,1409595348 +161848,4700,Anne Hathaway,1409596687 +161848,4700,protagonist is royal,1409596692 +161848,4700,teen,1409596697 +161848,4718,Seann William Scott,1409868256 +161848,4720,Alejandro Amenábar,1448174840 +161848,4720,alternate reality,1448174821 +161848,4720,atmospheric,1448174806 +161848,4720,beautiful,1448174831 +161848,4720,claustrophobic,1448174828 +161848,4720,gothic,1448174817 +161848,4720,Nicole Kidman,1448174809 +161848,4720,surprise ending,1448174813 +161848,4720,twist ending,1448174802 +161848,4732,Jake Gyllenhaal,1409972566 +161848,4732,quirky,1409972568 +161848,4732,quirky romantic,1409972570 +161848,4816,ben stiller,1420319082 +161848,4816,goofy,1420319098 +161848,4816,Owen Wilson,1420319089 +161848,4816,Will Ferrell,1420319084 +161848,4835,Sissy Spacek,1409427612 +161848,4835,Tommy Lee Jones,1409427615 +161848,4890,offensive,1409972492 +161848,4890,the tail scene,1409972495 +161848,4896,fantasy,1409357445 +161848,4896,good versus evil,1409357428 +161848,4976,judi dench,1439085006 +161848,4976,Kate Winslet,1439085018 +161848,4979,dark comedy,1409416365 +161848,4979,ensemble cast,1409416367 +161848,4979,family dynamics,1409416363 +161848,4979,quirky,1409416360 +161848,5015,bad parents,1431533407 +161848,5015,interracial romance,1431533411 +161848,5066,plot holes,1411692572 +161848,5066,sweet and romantic,1411692580 +161848,5299,comedy,1409415474 +161848,5299,culture clash,1409415471 +161848,5299,Strong Women,1409415468 +161848,5349,marvel,1409358573 +161848,5349,super hero,1409358579 +161848,5377,comedy,1409426936 +161848,5377,heartwarming,1409426928 +161848,5377,Nicholas Hoult,1409426949 +161848,5377,satirical,1409426930 +161848,5445,dystopia,1411845317 +161848,5445,mystery,1411845319 +161848,5445,Steven Spielberg,1411845313 +161848,5445,surreal,1411845324 +161848,5445,Tom Cruise,1411845315 +161848,5481,Michael Caine,1409972327 +161848,5481,mike myers,1409972330 +161848,5505,Jake Gyllenhaal,1410125593 +161848,5505,Jennifer Aniston,1410125592 +161848,5505,tragicomedy,1410125597 +161848,5617,dark comedy,1409373658 +161848,5617,erotic,1409373661 +161848,5617,quirky,1409373665 +161848,5617,relationships,1409373671 +161848,5617,weird,1409373667 +161848,5673,Adam Sandler,1436123604 +161848,5673,Paul Thomas Anderson,1436123606 +161848,5673,Philip Seymour Hoffman,1436123613 +161848,5673,quirky,1436123599 +161848,5673,weird,1436123601 +161848,5804,mediocre sequel,1413057605 +161848,5810,eminem,1425236807 +161848,5812,1950s,1429908298 +161848,5812,interracial romance,1429908305 +161848,5812,secrets,1429908310 +161848,5812,stylized,1429908302 +161848,5816,fantasy,1409357477 +161848,5816,harry potter,1409357467 +161848,5816,magic,1409357481 +161848,5943,Ralph Fiennes,1409427135 +161848,5945,abandonment,1409363543 +161848,5945,dark comedy,1409363546 +161848,5945,Jack Nicholson,1409363548 +161848,5945,satire,1409363555 +161848,5992,depression,1409363789 +161848,5992,mental illness,1409363792 +161848,5992,women,1409363786 +161848,5995,based on a true story,1409361926 +161848,5995,beautiful,1409361915 +161848,5995,reflective,1409361921 +161848,5995,World War II,1409361933 +161848,6156,buddy movie,1409595726 +161848,6156,England,1409595728 +161848,6156,Jackie Chan,1409595722 +161848,6156,Owen Wilson,1409595724 +161848,6188,fraternity,1409533202 +161848,6188,quirky,1409533189 +161848,6188,Vince Vaughn,1409533192 +161848,6188,Will Ferrell,1409533199 +161848,6266,Colin Firth,1409596671 +161848,6297,curse,1409415990 +161848,6297,Shia LeBoeuf,1409415981 +161848,6377,classic,1409363030 +161848,6377,family bonds,1409363028 +161848,6377,father-son relationship,1409363025 +161848,6377,Pixar,1409363023 +161848,6593,being a kid again,1409596719 +161848,6593,body/gender-switch,1409596716 +161848,6593,child as adult,1409596720 +161848,6593,Jamie Lee Curtis,1409596712 +161848,6593,Lindsay Lohan,1409596710 +161848,6711,atmospheric,1415733591 +161848,6711,Bill Murray,1415733578 +161848,6711,complex characters,1415733605 +161848,6711,Japan,1415733583 +161848,6711,Scarlett Johansson,1415733596 +161848,6724,1930s,1421519272 +161848,6724,con artists,1421519275 +161848,6753,coming of age,1412391987 +161848,6753,story-in-a-story,1412391992 +161848,6753,unique,1412391995 +161848,6867,friendship,1429376444 +161848,6867,interesting characters,1429376454 +161848,6867,loneliness,1429376438 +161848,6867,Peter Dinklage,1429376433 +161848,6867,quirky,1429376441 +161848,6867,unlikely friendships,1429376458 +161848,6874,dark hero,1451784358 +161848,6874,Kick-Butt Women,1451784372 +161848,6874,martial arts,1451784345 +161848,6874,Quentin Tarantino,1451784342 +161848,6874,quirky,1451784364 +161848,6874,revenge,1451784353 +161848,6874,stylized,1451784355 +161848,6874,Uma Thurman,1451784348 +161848,6874,visually appealing,1451784360 +161848,6936,Christmas,1409595326 +161848,6936,comedy,1409595329 +161848,6936,Will Ferrell,1409595322 +161848,6936,Zooey Deschanel,1409595323 +161848,6942,funny,1419716314 +161848,6942,Hugh Grant,1419716317 +161848,6942,Liam Neeson,1419716358 +161848,6942,love,1419716361 +161848,6942,Rowan Atkinson,1419716375 +161848,6942,witty,1419716325 +161848,6946,Brendan Fraser,1409595857 +161848,6946,looney tunes,1409595860 +161848,6951,terrible remake,1409966671 +161848,6951,violently stupid,1409966674 +161848,7004,kids fun,1409441087 +161848,7022,brutal,1452451331 +161848,7022,dystopia,1452451328 +161848,7022,Japan,1452451325 +161848,7022,survival,1452451322 +161848,7036,high school,1409596851 +161848,7036,Michael J. Fox,1409596839 +161848,7036,werewolf,1409596846 +161848,7147,coming of age,1433622184 +161848,7147,dreamlike,1433622152 +161848,7147,heartwarming,1433622195 +161848,7147,imagination,1433622171 +161848,7147,quirky,1433622164 +161848,7147,stylized,1433622167 +161848,7147,surreal,1433622155 +161848,7147,thought-provoking,1433622178 +161848,7147,Tim Burton,1433622150 +161848,7150,Greg Kinnear,1409972518 +161848,7150,Matt Damon,1409972517 +161848,7160,based on a true story,1426185966 +161848,7160,Charlize Theron,1426185962 +161848,7160,mental illness,1426185958 +161848,7162,Civil War,1410319376 +161848,7162,Jude Law,1410319371 +161848,7162,love story,1410319378 +161848,7173,Ben Stiller,1411692252 +161848,7173,jennifer aniston,1411692257 +161848,7173,Philip Seymour Hoffman,1411692260 +161848,7293,Adam Sandler,1409617333 +161848,7293,Drew Barrymore,1409617335 +161848,7293,happy ending,1409617339 +161848,7361,dreamlike,1409427420 +161848,7361,Jim Carrey,1409427409 +161848,7361,quirky,1409427413 +161848,7361,surrealism,1409427415 +161848,7361,thought-provoking,1409427422 +161848,7373,gothic,1409533398 +161848,7375,protagonist is royal,1411692486 +161848,7375,royal pretends to be commoner,1411692482 +161848,7438,atmospheric,1451784404 +161848,7438,David Carradine,1451784425 +161848,7438,martial arts,1451784394 +161848,7438,Quentin Tarantino,1451784388 +161848,7438,quirky,1451784413 +161848,7438,revenge,1451784391 +161848,7438,stylized,1451784400 +161848,7438,Uma Thurman,1451784408 +161848,7444,Child as Adult,1409596740 +161848,7444,feel-good,1409596749 +161848,7444,Jennifer Garner,1409596744 +161848,7444,Mark Ruffalo,1409596746 +161848,7451,clever,1409375268 +161848,7451,High School,1409375278 +161848,7451,Teen movie,1409375263 +161848,7451,very quotable,1409375273 +161848,7618,Biography,1421188663 +161848,7618,Robert Downey Jr.,1421188666 +161848,8368,fantasy,1409357512 +161848,8368,Gary Oldman,1409357514 +161848,8368,harry potter,1409357505 +161848,8368,werewolf,1409357528 +161848,8376,high school,1409416571 +161848,8376,nerds,1409416578 +161848,8376,off-beat comedy,1409416573 +161848,8376,quirky,1409416576 +161848,8464,important,1409972275 +161848,8464,must see,1409972277 +161848,8529,airport,1422212089 +161848,8529,funny,1422212085 +161848,8529,heartfelt,1422212096 +161848,8529,Steven Spielberg,1422212093 +161848,8529,stranded,1422212080 +161848,8529,tom hanks,1422212068 +161848,8636,marvel,1409358604 +161848,8636,super-hero,1409358606 +161848,8641,misogyny,1409363431 +161848,8641,Steve Carell,1409363427 +161848,8641,Will Ferrell,1409363424 +161848,8643,Teen movie,1411692527 +161848,8644,artificial intelligence,1409441208 +161848,8644,thought-provoking,1409441210 +161848,8808,Anne Hathaway,1411692444 +161848,8808,Chris Pine,1411692447 +161848,8808,royalty,1411692450 +161848,8808,silly,1411692454 +161848,8949,dark comedy,1409363498 +161848,8949,friendship,1409363500 +161848,8949,midlife crisis,1409363506 +161848,8949,relationships,1409363523 +161848,8961,Pixar,1409363255 +161848,8970,fantasy,1441409965 +161848,8970,Johnny Depp,1441409953 +161848,8970,Kate Winslet,1441409956 +161848,8970,Peter Pan,1441409962 +161848,8972,adventure,1413421544 +161848,8972,Nicolas Cage,1413421551 +161848,8972,treasure hunt,1413421547 +161848,8974,silly,1409416311 +161848,27773,hallucinatory,1440898428 +161848,27773,paranoid,1440898435 +161848,27773,revenge,1440898416 +161848,27773,stylized,1440898422 +161848,27773,surreal,1440898437 +161848,27773,twist ending,1440898413 +161848,27773,vengeance,1440898425 +161848,30707,emotional,1409362311 +161848,30707,Morgan Freeman,1409362292 +161848,30749,based on a true story,1409361864 +161848,30749,history,1409361876 +161848,30749,survival,1409361871 +161848,30810,Bill Murray,1436812395 +161848,30810,comedy,1436812412 +161848,30810,deadpan,1436812415 +161848,30810,great soundtrack,1436812407 +161848,30810,Owen Wilson,1436812410 +161848,30810,quirky,1436812400 +161848,30810,weird,1436812420 +161848,30810,Wes Anderson,1436812397 +161848,30810,whimsical,1436812403 +161848,30812,biopic,1409361800 +161848,30812,Leonardo DiCaprio,1409361796 +161848,30812,Martin Scorsese,1409361794 +161848,30812,mental illness,1409361798 +161848,30816,Andrew Lloyd Webber,1409596181 +161848,30816,bittersweet,1409596179 +161848,30816,boring,1409596176 +161848,30816,Joel Schumacher,1409596169 +161848,30825,Dustin Hoffman,1409972442 +161848,30825,Robert De Niro,1409972444 +161848,32031,Ewan McGregor,1419891759 +161848,32031,robots,1419891758 +161848,33794,batman,1409361597 +161848,33794,dark,1409361620 +161848,33794,thought-provoking,1409361603 +161848,33794,vigilante,1409361600 +161848,34150,cheesy,1409415923 +161848,34150,Jessica Alba,1409415925 +161848,34150,super-hero,1409415931 +161848,34271,hip hop,1424227905 +161848,34271,pursuing a dream,1424227912 +161848,35836,funny,1409415588 +161848,35836,Steve Carell,1409415580 +161848,35836,virginity,1409415585 +161848,37727,bad plot,1413421651 +161848,37727,Jodie Foster,1413421665 +161848,37727,plotholes,1413421656 +161848,37729,black comedy,1409533462 +161848,37729,gothic,1409533456 +161848,37729,Tim Burton,1409533454 +161848,38886,awkward,1421544314 +161848,38886,character driven,1421544322 +161848,38886,dysfunctional family,1421544296 +161848,38886,quirky,1421544293 +161848,38886,relationships,1421544303 +161848,38886,smart comedy,1421544299 +161848,39183,bittersweet,1411063782 +161848,39183,Love story,1411063779 +161848,40629,Keira Knightley,1411842439 +161848,40629,romance,1411842444 +161848,40815,boarding school,1409357564 +161848,40815,dragons,1409357560 +161848,40815,harry potter,1409357554 +161848,40815,magic,1409357566 +161848,40819,biopic,1409427589 +161848,40819,Joaquin phoenix,1451681838 +161848,40819,touching,1409427585 +161848,41566,fantasy,1409415048 +161848,41566,Fantasy World,1409415051 +161848,41566,Liam Neeson,1409415054 +161848,41569,Peter Jackson,1447612512 +161848,42004,coming of age,1409363694 +161848,42004,complex characters,1409363700 +161848,42004,cultural conflict,1409363703 +161848,42004,dysfunctional family,1409363710 +161848,42004,quirky,1409363716 +161848,44004,Zooey Deschanel,1409530317 +161848,45666,better than expected,1409972538 +161848,45666,Jack Black,1409972533 +161848,45666,Mexico,1409972540 +161848,45722,action,1409363317 +161848,45722,Comedy,1409363316 +161848,45722,Johnny Depp,1409363312 +161848,45722,Keira Knightley,1409363325 +161848,45722,Orlando Bloom,1409363324 +161848,45722,romantic,1409363320 +161848,45726,Owen Wilson,1411692165 +161848,46530,DC Comics,1409358680 +161848,46530,stupid,1409358686 +161848,46530,Superman,1409358673 +161848,46530,unlikeable characters,1409358669 +161848,46723,multiple storylines,1436163738 +161848,46723,social commentary,1436163741 +161848,46948,halloween,1414690046 +161848,46948,haunted house,1414690050 +161848,46972,Ben Stiller,1443230218 +161848,46972,Owen Wilson,1443230223 +161848,46972,Robin Williams,1443230220 +161848,47099,bittersweet,1413419779 +161848,47099,depressing,1413419792 +161848,47099,tearjerking,1413419784 +161848,47099,Will Smith,1413419786 +161848,47629,based on a true story,1451856181 +161848,47629,biopic,1451856187 +161848,47629,Helen Mirren,1451856198 +161848,47629,Michael Sheen,1451856208 +161848,47629,royalty,1451856189 +161848,48385,satire,1409363401 +161848,48696,cynical,1410125562 +161848,48696,deadpan,1410125565 +161848,48696,Kate Winslet,1410125568 +161848,48696,reflective,1410125571 +161848,48696,SUBURBAN DYSFUNCTION,1410125574 +161848,49286,Jack Black,1409427031 +161848,49286,Jude Law,1409427036 +161848,49286,Kate Winslet,1409427026 +161848,49286,sweet,1409427039 +161848,51084,Drew Barrymore,1409617305 +161848,51084,Hugh Grant,1409617307 +161848,51834,Anne Hathaway,1411842483 +161848,51834,James McAvoy,1411842481 +161848,52245,figure skating,1409533298 +161848,52245,Will Ferrell,1409533302 +161848,52435,Christmas,1409972190 +161848,52458,Shia LaBeouf,1413421691 +161848,52458,thriller,1413421694 +161848,52722,Comic Book adaption,1409358642 +161848,52722,Kirsten Dunst,1409358633 +161848,52722,Marvel,1409358640 +161848,52975,Broadway,1409596114 +161848,52975,high school,1409596109 +161848,52975,musical,1409596116 +161848,53125,Johnny Depp,1409363341 +161848,53125,Keira Knightley,1409363345 +161848,53125,Orlando Bloom,1409363348 +161848,53125,quirky,1409363351 +161848,53996,aliens,1409415795 +161848,53996,robots,1409415792 +161848,54001,Daniel Radcliffe,1409357593 +161848,54001,harry potter,1409357583 +161848,54001,magic,1409357589 +161848,54001,Ralph Fiennes,1409357586 +161848,54259,adventure,1451109329 +161848,54259,atmospheric,1451109349 +161848,54259,Claire Danes,1451109366 +161848,54259,comedy,1451109357 +161848,54259,fairy tale,1451109318 +161848,54259,fairy tale romance,1451109346 +161848,54259,fantasy,1451109321 +161848,54259,fantasy world,1451109340 +161848,54259,magic,1451109337 +161848,54259,Robert De Niro,1451109323 +161848,54259,romance,1451109326 +161848,54259,whimsical,1451109344 +161848,54272,simpsons,1420315294 +161848,54290,bad message,1409596408 +161848,54290,movies like this shouldn't be made!,1409596411 +161848,54290,stereotypes,1409596415 +161848,54503,Coming-Of-Age,1409415556 +161848,54503,Highly quotable,1409415553 +161848,54503,self discovery,1409415563 +161848,54503,Teen movie,1409415548 +161848,54734,amanda bynes acting,1409596646 +161848,54734,geeks,1409596647 +161848,55052,emotional,1429569580 +161848,55052,heartbreaking,1429569570 +161848,55052,imagination,1429569584 +161848,55052,James McAvoy,1429569565 +161848,55052,Keira Knightley,1429569563 +161848,55052,romance,1429569574 +161848,55052,Saoirse Ronan,1429569589 +161848,55052,Tragedy,1429569578 +161848,56757,dark comedy,1410319112 +161848,56757,Depp & Burton,1410319114 +161848,56757,gothic,1410319122 +161848,56757,Johnny Depp,1410319117 +161848,56757,Musical,1410319124 +161848,56757,Tim Burton,1410319120 +161848,56757,visually appealing,1410319127 +161848,56782,Daniel Day-Lewis,1435443018 +161848,56782,father-son relationship,1435443028 +161848,56782,greed,1435443021 +161848,56782,morality,1435443035 +161848,56782,Paul Thomas Anderson,1435443031 +161848,56782,visually appealing,1435443024 +161848,56949,insulting to women,1409427064 +161848,56949,James Marsden,1409427069 +161848,56949,Malin Akerman,1409427081 +161848,58299,Jim Carrey,1409966593 +161848,58299,Steve Carell,1409966595 +161848,58559,Batman,1409361649 +161848,58559,corruption,1409361656 +161848,58559,dark,1409361653 +161848,58559,psychological,1409361662 +161848,59258,Amy Poehler,1411692113 +161848,59258,pregnancy,1411692124 +161848,59258,Tina Fey,1411692115 +161848,59333,best friends,1409427166 +161848,59333,Patrick Dempsey,1409427164 +161848,59501,fantasy,1409415078 +161848,59784,Angelina Jolie,1410319903 +161848,59784,Dustin Hoffman,1410319905 +161848,59784,Jack Black,1410319900 +161848,60072,Angelina Jolie,1410319873 +161848,60072,James McAvoy,1410319876 +161848,60072,Morgan Freeman,1410319878 +161848,60072,plot twist,1410319880 +161848,60397,Meryl Streep,1409596131 +161848,60397,Musical,1409596136 +161848,60397,ridiculous,1409596138 +161848,60684,alternate reality,1436812358 +161848,60684,dystopia,1436812350 +161848,60684,sci-fi,1436812355 +161848,60684,stylized,1436812360 +161848,60684,superhero,1436812352 +161848,60684,visually appealing,1436812364 +161848,62081,artificial intelligence,1412488901 +161848,62081,Shia LaBeouf,1412488904 +161848,63062,angelina jolie,1432436695 +161848,63062,period piece,1432436719 +161848,63062,police corruption,1432436715 +161848,63992,love story,1409375896 +161848,63992,Teen movie,1409375908 +161848,63992,vampires,1409375900 +161848,64622,coming of age,1409362010 +161848,64622,great acting,1409362013 +161848,64622,heartbreaking,1409362027 +161848,64622,Kate Winslet,1409362015 +161848,64622,philosophical,1409362018 +161848,64957,bittersweet,1409427369 +161848,64957,emotional,1409427371 +161848,64957,philosophical,1409427378 +161848,65230,dogs,1412392065 +161848,65230,sad but good,1412392058 +161848,66097,gothic,1409533488 +161848,66097,Surreal,1409533482 +161848,67734,Jesse Eisenberg,1429656860 +161848,67734,Kristen Stewart,1429656857 +161848,67734,quirky,1429656864 +161848,68135,being a kid again,1409596584 +161848,68135,Matthew Perry,1409596591 +161848,68135,Zac Efron,1409596601 +161848,68157,Quentin Tarantino,1409377202 +161848,68157,satire,1409377208 +161848,68157,twist ending,1409377205 +161848,68269,Emily Blunt,1415490332 +161848,68269,protagonist is young princess & heir,1415490336 +161848,68269,romance,1415490323 +161848,68269,Rupert Friend,1415490325 +161848,68358,action,1409415680 +161848,68358,Star Trek,1409415670 +161848,68358,visually appealing,1409415672 +161848,68791,Christian Bale,1409441187 +161848,68791,effects,1409441184 +161848,68791,futuristic,1409441180 +161848,68793,Amy Adams,1443230247 +161848,68793,Ben Stiller,1443230244 +161848,68793,Hank Azaria,1443230250 +161848,69526,absurd,1409415818 +161848,69526,audience intelligence underestimated,1409415834 +161848,69526,crude humor,1409415820 +161848,69526,robots,1409415815 +161848,69844,fantasy,1409357639 +161848,69844,funny,1409357635 +161848,69844,harry potter,1409357611 +161848,69844,romance,1409357625 +161848,69844,teenagers,1409357629 +161848,70599,romance,1409691653 +161848,70599,sad,1409691658 +161848,70599,time travel,1409691651 +161848,72407,bad acting,1409375925 +161848,72407,SUPERNATURAL ROMANCE,1409375950 +161848,72407,unintentional comedy,1409375938 +161848,72407,vampires,1409375945 +161848,72407,werewolves,1409375942 +161848,72641,based on a true story,1409426656 +161848,72641,feel-good,1409426658 +161848,72720,beautiful cinematography,1435384238 +161848,72720,Colin Firth,1435384235 +161848,72720,Julianne Moore,1435384241 +161848,72720,life & death,1435384248 +161848,72720,Nicholas Hoult,1435384256 +161848,72720,reflective,1435384252 +161848,72737,Disney,1409415237 +161848,72737,fairy tale,1409415247 +161848,72737,funny,1409415251 +161848,72737,talking animals,1409415244 +161848,73017,clever,1410319799 +161848,73017,Comedy,1410319801 +161848,73017,Jude Law,1410319793 +161848,73017,Robert Downey Jr.,1410319791 +161848,73854,Christmas,1409972175 +161848,74789,beautiful,1409414998 +161848,74789,fairy tale,1409414984 +161848,74789,Johnny Depp,1409414981 +161848,74789,Tim Burton,1409414979 +161848,74789,visually appealing,1409414989 +161848,74789,weird,1409414991 +161848,76093,dragons,1409363111 +161848,76093,Dreamworks,1409363113 +161848,76093,father-son relationship,1409363119 +161848,78316,predictable,1411150955 +161848,78316,romantic,1411150967 +161848,78499,bittersweet,1409363087 +161848,78499,emotional,1409363091 +161848,78499,friendship,1409363093 +161848,78499,Pixar,1409363079 +161848,78574,father daughter relationship,1409363653 +161848,78772,music,1409375986 +161848,78772,SUPERNATURAL ROMANCE,1409375981 +161848,78772,vampires,1409375979 +161848,78772,visually appealing,1409375993 +161848,79091,heartwarming,1409363195 +161848,79091,quirky,1409363190 +161848,79091,Steve Carell,1409363188 +161848,79134,have it's funny moments,1411692203 +161848,79242,dysfunctional family,1430005028 +161848,79242,humorous,1430005032 +161848,79242,Julianne Moore,1430005043 +161848,79242,Mark Ruffalo,1430005039 +161848,79242,unfair ending,1430005059 +161848,79293,Angelina Jolie,1412488867 +161848,79293,assassination,1412488871 +161848,79293,espionage,1412488874 +161848,79293,thriller,1412488876 +161848,79357,cinematography,1435466743 +161848,79357,Jared Leto,1435466756 +161848,79357,love affair,1435466763 +161848,79357,nonlinear,1435466735 +161848,79357,romance,1435466749 +161848,79357,sci-fi,1435466740 +161848,79357,surreal,1435466737 +161848,79357,thought provoking,1435466746 +161848,79357,time travel,1435466752 +161848,80463,based on a true story,1409361750 +161848,80463,college,1409361756 +161848,80463,complex characters,1409361758 +161848,80463,friendship,1409361768 +161848,80463,loneliness,1409361772 +161848,80549,dialogue,1409596557 +161848,80549,Emma Stone,1409596552 +161848,80549,satire,1409596555 +161848,80549,witty,1409596559 +161848,81564,anti-hero,1409363239 +161848,81564,Will Ferrell,1409363241 +161848,81819,Alejandro González Iñárritu,1451185043 +161848,81819,Javier Bardem,1451185035 +161848,81834,dark fantasy,1409357396 +161848,81834,Harry Potter,1409357389 +161848,81834,magic,1409357398 +161848,81845,based on a true story,1409362094 +161848,81845,complex characters,1409362096 +161848,81845,disability,1409362100 +161848,81845,feel-good,1409362103 +161848,81932,Christian Bale,1409362339 +161848,81932,family relationships,1409362345 +161848,81932,true story,1409362342 +161848,85367,few funny scenes,1411692314 +161848,85367,Nicole Kidman,1411692297 +161848,85367,predictable,1411692300 +161848,85367,unrealistic characters,1411692305 +161848,85367,unrealistic plot,1411692321 +161848,85438,beautiful scenery,1409363985 +161848,85438,beautifully filmed,1409363987 +161848,85438,Mia Wasikowska,1409363991 +161848,86332,Anthony Hopkins,1409376568 +161848,86332,Chris Hemsworth,1451279228 +161848,86332,Marvel,1409376574 +161848,86332,superhero,1409376577 +161848,86332,Tom Hiddleston,1451279231 +161848,86833,comedy,1448058305 +161848,86833,flawed characters,1448058302 +161848,86833,Kristen Wiig,1448058308 +161848,86833,Maya Rudolph,1448058312 +161848,86833,Melissa McCarthy,1448058335 +161848,86833,Rose Byrne,1448058322 +161848,86833,unlikeable characters,1448058316 +161848,86882,dialogue,1421100299 +161848,86882,magical realism,1421100306 +161848,86882,Owen Wilson,1421100275 +161848,86882,philosophical,1421100302 +161848,86882,quirky,1421100279 +161848,86882,romance,1421100287 +161848,86882,thought-provoking,1421100271 +161848,86882,time travel,1421100283 +161848,86882,whimsical,1421100293 +161848,86882,writers,1421100290 +161848,86911,predictable,1409972406 +161848,87232,Marvel,1409361534 +161848,87232,superhero,1409361537 +161848,87306,aliens,1409426493 +161848,87306,J.J. Abrams,1409426491 +161848,87308,gothic,1411842410 +161848,87308,love story,1411842413 +161848,87520,action,1409415861 +161848,87520,audience intelligence underestimated,1409415871 +161848,87520,CG animation,1409415865 +161848,87520,robots,1409415874 +161848,87869,black comedy,1409606723 +161848,87869,Charlie Day,1409606737 +161848,87869,Colin Farrell,1409606750 +161848,87869,jason bateman,1409606746 +161848,87869,Jennifer Aniston,1409606743 +161848,87869,Kevin Spacey,1409606761 +161848,88125,epic,1409357699 +161848,88125,fantasy,1409357711 +161848,88125,great acting,1409357690 +161848,88125,Harry Potter,1409357687 +161848,88125,magic,1409357695 +161848,88125,plot twist,1409357704 +161848,88129,atmospheric,1413738167 +161848,88129,ryan gosling,1413738162 +161848,88129,stylized,1413738172 +161848,88129,visually appealing,1413738170 +161848,88140,action,1441406585 +161848,88140,Chris Evans,1441406588 +161848,88140,Hayley Atwell,1441406604 +161848,88140,Hugo Weaving,1441406592 +161848,88140,Marvel,1441406571 +161848,88140,superhero,1441406575 +161848,88140,world war ii,1441406582 +161848,88744,thought-provoking,1409426436 +161848,88810,great acting,1409426681 +161848,88810,Octavia Spencer,1409426704 +161848,88810,Viola Davis,1409426694 +161848,89745,action,1409361483 +161848,89745,ensemble cast,1409361472 +161848,89745,Marvel,1409361450 +161848,89745,superhero,1409361453 +161848,90866,visually appealing,1412979964 +161848,91077,family relationships,1409362254 +161848,91094,Jason Segel,1420315399 +161848,91094,muppets,1420315386 +161848,91094,weak plot,1420315391 +161848,91104,almost as good as the book,1409376046 +161848,91104,bad acting,1409376036 +161848,91104,romance,1409376064 +161848,91104,slow start,1409376042 +161848,91104,unintentionally funny,1409376025 +161848,91104,vampires,1409376028 +161848,91134,Eddie Redmayne,1409427652 +161848,91134,Michelle Williams,1409427651 +161848,91500,dystopia,1409359383 +161848,91500,social commentary,1409359393 +161848,91500,strong female lead,1409359389 +161848,91500,visually stunning,1409359386 +161848,91630,action,1412488805 +161848,91630,choreography,1412488807 +161848,91630,cool gadgets,1412488811 +161848,91630,espionage,1412488821 +161848,91630,Tom Cruise,1412488814 +161848,91630,visuals,1412488816 +161848,91653,Animals,1412392022 +161848,91653,Matt Damon,1412392028 +161848,91653,predictable,1412392031 +161848,91886,true story,1410461527 +161848,93272,Taylor Swift,1409966617 +161848,93498,based on a true story,1411692026 +161848,93498,Julianne Moore,1411692020 +161848,93498,Woody Harrelson,1411692022 +161848,93510,Channing Tatum,1409606828 +161848,93510,Jonah Hill,1409606821 +161848,94864,aliens,1409426459 +161848,94864,Ridley Scott,1409426457 +161848,95167,feminism,1409430518 +161848,95167,Pixar,1409430512 +161848,95441,buddy movie,1409606661 +161848,95441,Mark Wahlberg,1409606653 +161848,95449,good fun,1411177240 +161848,95449,needed more dancing,1411177244 +161848,95449,strippers,1411177254 +161848,95510,Marvel,1409358714 +161848,95510,special effects,1409358712 +161848,96281,Clever,1414690017 +161848,96281,fantasy,1414690020 +161848,96281,zombies,1414690022 +161848,96432,Shia LaBeouf,1413419568 +161848,96432,Tom Hardy,1413419570 +161848,96588,college,1409596060 +161848,96588,musical,1409596058 +161848,96588,Rebel Wilson,1409596054 +161848,96610,thriller,1409426394 +161848,96610,time travel,1409426384 +161848,96610,visually appealing,1409426387 +161848,96911,Alicia Vikander,1431233581 +161848,97172,black and white,1414690130 +161848,97172,dogs,1414690172 +161848,97172,heartwarming,1414690177 +161848,97172,Tim Burton,1414690138 +161848,97304,great ending,1409430933 +161848,97304,suspenseful,1409430930 +161848,97304,thriller,1409430928 +161848,97913,disney,1409362956 +161848,97913,redemption,1409362966 +161848,97913,video games,1409362961 +161848,97921,dark humor,1409362219 +161848,97921,loneliness,1409362205 +161848,97921,love,1409362208 +161848,97921,mental illness,1409362201 +161848,97923,Denzel Washington,1409362429 +161848,97923,unpredictable ending,1409362434 +161848,97938,emotional,1409427345 +161848,97938,God's existance,1409427350 +161848,97938,visually appealing,1409427348 +161848,98203,Kristen Stewart,1409376146 +161848,98203,Robert Pattinson,1409376159 +161848,98203,romance,1409376123 +161848,98203,taylor lautner,1409376175 +161848,98203,twist ending,1409376114 +161848,98961,slow,1409430954 +161848,99149,great soundtrack,1409596221 +161848,99149,Hugh Jackman,1409596210 +161848,100487,changed the book TOO much,1409376270 +161848,100487,SUPERNATURAL ROMANCE,1409376242 +161848,101025,audience intelligence underestimated,1409415133 +161848,101025,fantasy,1409415138 +161848,101088,beautiful,1409364044 +161848,101088,erotic,1409364040 +161848,101088,piano music,1409364047 +161848,101088,psychological thriller,1409364031 +161848,101088,stylish,1409364037 +161848,101112,strong women,1409414924 +161848,101112,visually stunning,1409414912 +161848,101112,whimsical,1409414915 +161848,102123,cast,1425156201 +161848,102123,James Franco,1425156182 +161848,102123,Michael Cera,1425156185 +161848,102123,Seth Rogen,1425156188 +161848,102445,fast paced,1409359058 +161848,102445,space,1409359054 +161848,102445,Star Trek,1409359050 +161848,102720,predictable,1409415182 +161848,102720,talking animals,1409415177 +161848,102993,coming of age,1410319557 +161848,102993,heartwarming,1410319559 +161848,102993,Sam Rockwell,1410319564 +161848,103042,Christopher Nolan,1409358791 +161848,103042,gritty,1409358796 +161848,103042,superhero,1409358801 +161848,103141,Pixar,1409363153 +161848,103228,Guillermo del Toro,1409415711 +161848,103228,sci-fi,1409415719 +161848,103228,visually appealing,1409415714 +161848,103335,Steve Carell,1409363218 +161848,103372,funny,1409606870 +161848,103372,Melissa McCarthy,1409606864 +161848,103372,Sandra Bullock,1409606866 +161848,103384,Armie Hammer,1409595645 +161848,103384,cannibalism,1409595655 +161848,103384,crude humor,1409595670 +161848,103384,Johnny Depp,1409595650 +161848,103384,stereotypes,1409595652 +161848,103384,trains,1409595640 +161848,103384,Western,1409595664 +161848,103539,character driven,1409377263 +161848,103539,coming of age,1409377261 +161848,103539,complex,1409377267 +161848,103539,high school,1409377273 +161848,103539,realistic,1409377276 +161848,103539,teenagers,1409377280 +161848,103624,michael b jordan,1428363421 +161848,103772,Hugh Jackman,1423367860 +161848,103772,Japan,1423367863 +161848,103772,superhero,1423367866 +161848,103772,x-men,1423367875 +161848,103980,Cate Blanchett,1423427266 +161848,103980,Woody Allen,1423427264 +161848,104211,Ed Helms,1409606704 +161848,104211,Emma Roberts,1409606695 +161848,104211,Jason Sudeikis,1409606702 +161848,104211,Jennifer Aniston,1409606698 +161848,104211,Will Poulter,1409606688 +161848,104218,audience intelligence underestimated,1409972728 +161848,104312,cliche characters,1409376212 +161848,104312,fantasy,1409376216 +161848,104312,plot holes,1409376209 +161848,104374,Bill Nighy,1432441723 +161848,104374,charming,1432441716 +161848,104374,Domhnall Gleeson,1432441734 +161848,104374,time travel,1432441713 +161848,104374,touching,1432441719 +161848,104841,beautiful,1409358403 +161848,104841,visually stunning,1409358399 +161848,104944,brie larson,1437882082 +161848,104944,Foster Home,1437882062 +161848,104944,good acting,1437882064 +161848,104944,mental health,1437882068 +161848,105197,acting,1442723248 +161848,105197,family,1442723251 +161848,105197,Father-Son Relationship,1442723260 +161848,105197,funny,1442723256 +161848,105197,poignant,1442723244 +161848,105844,based on a true story,1409361825 +161848,105844,important,1409361835 +161848,105844,performances,1409361829 +161848,105844,real,1409361832 +161848,106072,Chris Hemsworth,1451279078 +161848,106072,marvel,1409376545 +161848,106072,superhero,1409376550 +161848,106072,Tom Hiddleston,1451279074 +161848,106100,Jared Leto,1422219012 +161848,106100,Matthew McConaughey,1422219007 +161848,106100,social commentary,1422219022 +161848,106438,based on a true story,1409514713 +161848,106438,corruption,1409514715 +161848,106438,dramatic comedy,1409514721 +161848,106438,Judi Dench,1409514731 +161848,106487,dystopia,1409359418 +161848,106487,excellent script,1409359421 +161848,106487,strong female lead,1409359418 +161848,106487,teen movie,1409359423 +161848,106696,beautiful,1409415279 +161848,106696,Disney,1409415277 +161848,106696,writing,1409415283 +161848,106766,atmospheric,1425849785 +161848,106766,cats,1425849794 +161848,106766,Coen Brothers,1425849783 +161848,106766,depressing,1425849800 +161848,106766,funny,1425849789 +161848,106766,Oscar Isaac,1425849820 +161848,106782,Leonardo DiCaprio,1409359601 +161848,106782,Martin Scorsese,1409359598 +161848,106782,true story,1409359604 +161848,106841,meryl streep,1433707102 +161848,106916,Anti-Hero,1409361698 +161848,106916,based on a true story,1409361701 +161848,106916,con artists,1409361706 +161848,106916,corruption,1409361704 +161848,106920,artificial intelligence,1422419189 +161848,106920,beautiful,1422419234 +161848,106920,bittersweet,1422419201 +161848,106920,joaquin phoenix,1422419207 +161848,106920,loneliness,1422419203 +161848,106920,love,1422419229 +161848,106920,meaning of life,1422419215 +161848,106920,original,1422419218 +161848,106920,quirky,1422419224 +161848,106920,romance,1422419238 +161848,106920,Scarlett Johansson,1422419197 +161848,106920,sci-fi,1422419211 +161848,106920,thought-provoking,1422419194 +161848,107141,character development,1409427676 +161848,107141,Disney,1409427674 +161848,107141,Tom Hanks,1409427678 +161848,107348,Steve Carell,1409972379 +161848,107348,will ferrell,1409972378 +161848,108190,dystopia,1409359452 +161848,108190,female protagonist,1409359454 +161848,109189,alex pettyfer,1425257404 +161848,109189,teen romance,1425257393 +161848,109374,cinematography,1422414553 +161848,109374,great dialogue,1422414564 +161848,109374,quirky,1420774461 +161848,109374,Ralph Fiennes,1420774471 +161848,109374,stylized,1420774465 +161848,109374,visually appealing,1420774456 +161848,109374,Wes Anderson,1422414548 +161848,109374,whimsical,1422414559 +161848,109487,ambitious,1415583268 +161848,109487,Anne Hathaway,1415583259 +161848,109487,Christopher Nolan,1415583248 +161848,109487,Matthew McConaughey,1415583251 +161848,109487,space,1415583263 +161848,109578,Liam Neeson,1427481774 +161848,109578,thrilling,1427481776 +161848,109781,werewolf,1432966338 +161848,110102,comic book,1409361387 +161848,110102,conspiracy,1409361377 +161848,110102,Fight Choreography,1409361374 +161848,110102,Marvel Cinematic Universe,1409361372 +161848,110553,comic book,1409358757 +161848,110553,Marvel,1409358741 +161848,110553,sad,1409358747 +161848,110553,story,1409358738 +161848,110553,wtf ending,1409358749 +161848,110809,bad acting,1409376385 +161848,110809,bad script,1409376369 +161848,111113,college,1425782236 +161848,111113,dave franco,1425782249 +161848,111113,Zac Efron,1425782239 +161848,111362,comic book,1409361337 +161848,111362,Marvel,1409361333 +161848,111362,superhero,1409361324 +161848,111362,time travel,1409361326 +161848,111362,x men,1409361330 +161848,111364,Creature Feature,1409415746 +161848,111364,Godzilla,1409415738 +161848,111364,special effects,1409415743 +161848,111443,entrepreneurs,1426985976 +161848,111443,food,1426985972 +161848,111443,predictable,1426985980 +161848,111659,Angelina Jolie,1409414852 +161848,111659,fairy tale,1409414855 +161848,111659,sleeping beauty,1409414874 +161848,111659,twist ending,1409414858 +161848,111659,visual effects,1409414871 +161848,111659,whimsical,1409414861 +161848,111759,aliens,1423377022 +161848,111759,Emily Blunt,1423377006 +161848,111759,original plot,1423377026 +161848,111759,sci-fi,1423377019 +161848,111759,time loop,1423377004 +161848,111759,time travel,1423377013 +161848,111759,Tom Cruise,1423377010 +161848,111781,Action,1439182187 +161848,111781,rebecca ferguson,1439182209 +161848,111781,Tom Cruise,1439182184 +161848,111921,ansel elgort,1424574512 +161848,111921,good acting,1424574461 +161848,111921,shailene woodley,1424574486 +161848,111921,teenage romance,1424574469 +161848,112138,channing tatum,1428126985 +161848,112138,hilarious,1428126952 +161848,112138,Jonah Hill,1428126955 +161848,112138,Self-referential,1428126943 +161848,112138,undercover cop,1428126946 +161848,112175,dragons,1409363136 +161848,112183,Alejandro González Iñárritu,1445215931 +161848,112183,cinematography,1445215921 +161848,112183,dark,1445215905 +161848,112183,Edward Norton,1445215893 +161848,112183,emma stone,1445215927 +161848,112183,great performances,1445215885 +161848,112183,magical realism,1445215896 +161848,112183,Michael Keaton,1445215909 +161848,112183,psychological,1445215902 +161848,112183,satire,1445215899 +161848,112183,single shot,1445215891 +161848,112183,smart,1445215923 +161848,112183,surreal,1445215916 +161848,112183,Zach Galifianakis,1445216056 +161848,112290,Ambitious,1433742086 +161848,112290,coming of age,1433742093 +161848,112290,growing up,1433742084 +161848,112290,realism,1433742081 +161848,112552,good acting,1451161175 +161848,112552,greatness,1451161200 +161848,112552,intense,1451160960 +161848,112552,J.K. Simmons,1451160967 +161848,112552,Miles Teller,1451160979 +161848,112552,motivation,1451160970 +161848,112552,music,1451160938 +161848,112552,musicians,1451160957 +161848,112552,perfectionism,1451161193 +161848,112552,psychological,1451160964 +161848,112552,Teacher Student,1451161190 +161848,112552,Tense,1451160955 +161848,112556,Ben Affleck,1434853809 +161848,112556,David Fincher,1434853800 +161848,112556,mindfuck,1434853804 +161848,112556,Psychopathy,1434853807 +161848,112556,Rosamund Pike,1434853813 +161848,112556,unpredictable,1434853797 +161848,112623,apocalyptic,1409361282 +161848,112623,emotional,1409361286 +161848,112623,realistic,1409361294 +161848,112623,sci-fi,1409361289 +161848,112623,unbelievable,1409361296 +161848,113705,marion cotillard,1440471274 +161848,114074,Bill Hader,1443386249 +161848,114074,heartfelt,1443386258 +161848,114074,Kristen Wiig,1443386252 +161848,114074,relationships,1443386255 +161848,114074,siblings,1443386246 +161848,114552,fantasy world,1434682662 +161848,114552,trolls,1434682665 +161848,114662,Bradley Cooper,1422165703 +161848,114662,Clint Eastwood,1422165683 +161848,115170,Robert Downey Jr.,1433643403 +161848,115170,Robert Duvall,1433643406 +161848,115210,Brad Pitt,1451527948 +161848,115210,realistic,1451527950 +161848,115210,shia labeouf,1451527963 +161848,115210,World War II,1451527945 +161848,115231,Asshole with a heart of gold,1452916714 +161848,115231,Bill Murray,1452916711 +161848,115231,Melissa McCarthy,1452916717 +161848,115231,Naomi Watts,1452916724 +161848,115569,dark,1434250381 +161848,115569,gripping,1434250386 +161848,115569,Jake Gyllenhaal,1434250383 +161848,115569,sociopath,1434250390 +161848,115664,Day of the dead,1448671945 +161848,116161,Mark Ruffalo,1451501330 +161848,116161,Steve Carell,1451501339 +161848,116797,Benedict Cumberbatch,1453002358 +161848,116797,Computers,1453002351 +161848,116797,genius,1453002363 +161848,116797,historical inaccuracy,1453002372 +161848,116797,history,1453002361 +161848,116797,intelligent,1453002380 +161848,116797,Keira Knightley,1453002367 +161848,116797,World War II,1453002354 +161848,116823,Inspirational Speeches,1416799491 +161848,116823,realistic,1416799497 +161848,117176,Eddie Redmayne,1441842270 +161848,117176,emotional,1441842299 +161848,117176,felicity jones,1441842292 +161848,117176,love,1441842301 +161848,117529,adventure,1445657296 +161848,117529,Bryce Dallas Howard,1445657311 +161848,117529,Chris Pratt,1445657294 +161848,117529,dinosaurs,1445657292 +161848,117529,exciting,1445657304 +161848,117529,sci-fi,1445657300 +161848,117529,tyrannosaurus rex,1445657317 +161848,117881,family,1451080872 +161848,117881,kristen stewart,1451080893 +161848,117881,thought-provoking,1451080874 +161848,118760,heartwarming,1433029445 +161848,118997,fairy tale,1451100189 +161848,119145,action,1448767106 +161848,119145,british comedy,1448767110 +161848,119145,colin firth,1448767116 +161848,119145,funny,1448767131 +161848,119145,gentlemanly,1448767101 +161848,119145,Michael Caine,1448767113 +161848,119145,spy,1448767098 +161848,119145,Taron Egerton,1448767135 +161848,119145,violent,1448767103 +161848,122882,action,1448425691 +161848,122882,car chase,1448425722 +161848,122882,charlize theron,1448425707 +161848,122882,dystopian,1448425701 +161848,122882,feminism,1448425703 +161848,122882,non-stop,1448425710 +161848,122882,post apocalypse,1448425694 +161848,122882,Tom Hardy,1448425717 +161848,122882,visually appealing,1448425698 +161848,122886,Adam Driver,1450682276 +161848,122886,Daisy Ridley,1450682249 +161848,122886,Harrison Ford,1450682244 +161848,122886,J.J. Abrams,1450682252 +161848,122886,John Boyega,1450682266 +161848,122886,Star Wars,1450682242 +161848,122892,Marvel,1431456216 +161848,122892,superhero,1431456219 +161848,122900,paul rudd,1438577852 +161848,134130,matt damon,1444608033 +161848,134130,Space,1444608025 +161848,134130,Survival Instinct,1444608037 +161848,134853,childhood,1434926086 +161848,134853,happiness,1434926088 +161848,134853,Pixar,1434926092 +161848,136016,dinosaurs,1450065628 +161848,139385,leonardo DiCarpio,1453756502 +161848,139385,revenge,1453756521 +161848,139385,survival,1453756531 +161848,139385,tom hardy,1453756513 +161848,139644,benicio del toro,1444017219 +161848,139644,emily blunt,1444017161 +161848,139644,josh brolin,1444017183 +161848,140160,disney,1441842398 +161848,140715,music culture,1453656646 +161848,140715,true story,1453656648 +161858,15,treasure,1367700107 +161858,107,treasure,1367700108 +161858,256,arnold,1367700233 +161858,353,dark hero,1367700195 +161858,373,neo-noir,1367700294 +161858,380,arnold,1367700233 +161858,384,entirely dialogue,1367700312 +161858,485,arnold,1367700233 +161858,589,arnold,1367700233 +161858,592,dark hero,1367700195 +161858,648,mountain climbing,1367700386 +161858,748,conspiracy theory,1367700325 +161858,764,entirely dialogue,1367700312 +161858,836,conspiracy theory,1367700324 +161858,898,screwball comedy,1367700256 +161858,905,screwball comedy,1367700256 +161858,927,entirely dialogue,1367700312 +161858,947,screwball comedy,1367700256 +161858,951,entirely dialogue,1367700312 +161858,1069,noir thriller,1367700123 +161858,1179,neo-noir,1367700294 +161858,1193,Jack Nicholson,1364919134 +161858,1193,mental hospital,1364919177 +161858,1193,mental illness,1364919146 +161858,1193,Oscar Winner,1364919192 +161858,1236,entirely dialogue,1367700312 +161858,1240,arnold,1367700233 +161858,1252,noir thriller,1367700123 +161858,1284,noir thriller,1367700123 +161858,1291,spielberg,1367700429 +161858,1291,treasure,1367700108 +161858,1377,dark hero,1367700195 +161858,1387,spielberg,1367700429 +161858,1391,mars,1367700181 +161858,1615,stranded,1367700154 +161858,1617,neo-noir,1367700294 +161858,1646,mars,1367700180 +161858,1862,mars,1367700180 +161858,1894,stranded,1367700154 +161858,1961,autism,1365024165 +161858,1961,Dustin Hoffman,1365043444 +161858,2022,jesus,1367700094 +161858,2028,spielberg,1367700429 +161858,2115,spielberg,1367700429 +161858,2193,dragon,1367700343 +161858,2205,screwball comedy,1367700256 +161858,2353,conspiracy theory,1367700325 +161858,2377,mars,1367700181 +161858,2447,cheerleading,1367700220 +161858,2630,entirely dialogue,1367700312 +161858,2662,mars,1367700180 +161858,2916,arnold,1367700233 +161858,2935,screwball comedy,1367700256 +161858,2937,screwball comedy,1367700256 +161858,2950,stranded,1367700154 +161858,2989,mountain climbing,1367700386 +161858,3264,cheerleading,1367700220 +161858,3623,mountain climbing,1367700386 +161858,3683,neo-noir,1367700294 +161858,3786,cheerleading,1367700220 +161858,3809,Bill Murray,1365054326 +161858,3809,great acting,1365054301 +161858,3809,madcap,1365054316 +161858,3809,psychiatry,1365054355 +161858,3809,psychology,1365054355 +161858,3809,sailing,1365054330 +161858,3861,cheerleading,1367700220 +161858,4051,B-movie,1363628456 +161858,4051,bad dub,1365018729 +161858,4051,MST3K,1363628375 +161858,4051,mutation,1363628411 +161858,4051,radiation,1365018741 +161858,4051,unintentional comedy,1363628383 +161858,4142,christian,1367700278 +161858,4638,stranded,1367700154 +161858,4848,short-term memory loss,1367700409 +161858,4881,neo-noir,1367700294 +161858,4974,cheerleading,1367700220 +161858,5017,noir thriller,1367700123 +161858,5046,mars,1367700180 +161858,5135,bollywood,1367700075 +161858,5388,short-term memory loss,1367700409 +161858,5445,spielberg,1367700429 +161858,5463,dragon,1367700343 +161858,5989,spielberg,1367700429 +161858,6287,twist ending,1365021180 +161858,6377,short-term memory loss,1367700410 +161858,6539,treasure,1367700108 +161858,6696,bollywood,1367700076 +161858,7060,jesus,1367700094 +161858,7293,short-term memory loss,1367700409 +161858,7318,jesus,1367700093 +161858,7386,christian,1367700279 +161858,7728,noir thriller,1367700123 +161858,8366,christian,1367700278 +161858,8529,stranded,1367700154 +161858,8972,mountain climbing,1367700386 +161858,27773,short-term memory loss,1367700410 +161858,51884,bollywood,1367700075 +161858,53125,treasure,1367700108 +161858,56775,treasure,1367700108 +161858,76093,dragon,1367700343 +161858,91500,based on book,1365021782 +161858,91500,dystopia,1365021782 +161858,91500,science fiction,1365021782 +161858,91500,too long,1365021741 +161858,91500,way too long,1365021801 +161858,97913,nostalgia,1363628599 +161858,97913,nostalgic,1363628589 +161858,97913,plot twist,1363628645 +161858,97913,video games,1363628599 +161858,101355,alternate reality,1363628020 +161858,101355,alternate universe,1363628020 +161858,101355,ambition,1363628107 +161858,101355,annoying characters,1363627909 +161858,101355,bad acting,1363627662 +161858,101355,bad writing,1363627981 +161858,101355,MST3K,1363627762 +161858,101674,anti-climax,1365018670 +161858,101674,bad acting,1365018670 +161858,101674,brutal,1365018697 +161858,101674,gore,1365018697 +161858,101674,satanism,1365018697 +161864,8784,good soundtrack,1357159147 +161874,556,documentary,1213605379 +161874,556,politics,1213605385 +161874,1060,Vince Vaughn,1213605390 +161874,2231,Edward Norton,1213605393 +161874,2231,Matt Damon,1213605416 +161874,2231,poker,1213605396 +161874,2997,Charlie Kaufman,1213605504 +161874,3949,depressing,1213605421 +161874,4007,US history,1213605518 +161874,4979,quirky,1213605539 +161874,5505,Jake Gyllenhaal,1213605454 +161874,6942,Up lifting,1213605440 +161874,7361,Charlie Kaufman,1213605474 +161874,8784,Natalie Portman,1213605466 +161874,8784,Zach Braff,1213605458 +161874,8987,Republicans,1213605565 +161874,30749,true story,1213605443 +161874,56788,Good dialogue,1213605497 +161889,318,Morgan Freeman,1439870119 +161889,326,politics,1439869907 +161889,356,classic,1439870094 +161889,446,China,1439869890 +161889,446,Gong Li,1439869894 +161889,480,Dinosaurs,1439869651 +161889,480,sci-fi,1439870045 +161889,527,historical,1439870302 +161889,527,history,1439870307 +161889,527,Nazi Germany,1439870319 +161889,527,Nazis,1439870316 +161889,527,World War II,1439870299 +161889,527,WWII,1439870310 +161889,780,alien invasion,1439869678 +161889,780,aliens,1439869705 +161889,780,aliens invasion,1439869690 +161889,1960,China,1439869868 +161889,2571,artificial intelligence,1439870353 +161889,2571,computers,1439870361 +161889,2571,philosophy,1439870363 +161889,2571,sci-fi,1439870350 +161889,4995,genius,1439870144 +161889,4995,math,1439870155 +161889,4995,mathematics,1439870141 +161889,4995,nobel prize,1439870154 +161889,53996,giant robots,1439870385 +161889,53996,Megan Fox,1439870387 +161889,53996,robots,1439870375 +161889,53996,Special Effects,1439870378 +161889,53996,transformation,1439870394 +161889,70286,aliens,1439869732 +161889,70286,mockumentary,1439869740 +161889,79132,Ellen Page,1439870189 +161889,79132,Leonardo DiCaprio,1439870190 +161889,79132,memory,1439870199 +161889,79132,philosophy,1439870185 +161889,80463,computers,1439870260 +161889,80463,nerds,1439870266 +161889,80463,software developers,1439870279 +161889,103228,aliens,1439870420 +161889,103228,giant robots,1439870414 +161889,103228,Kaiju,1439870411 +161889,103228,sci-fi,1439870423 +161889,116797,Alan Turing,1439870218 +161889,116797,code breaking,1439870231 +161889,116797,Computers,1439870223 +161889,116797,cryptography,1439870216 +161889,116797,genius,1439870251 +161889,116797,history,1439870238 +161889,116797,Keira Knightley,1439870229 +161889,116797,mathematics,1439870226 +161889,116797,World War II,1439870221 +161889,122882,mad max,1439869991 +161899,2571,atmospheric,1450053136 +161899,2571,fantasy,1450053149 +161899,2571,sci-fi,1450053143 +161935,260,sci-fi,1445002840 +161935,260,space,1445002864 +161935,260,space adventure,1445002850 +161935,260,special effects,1445002873 +161943,356,tom hanks,1431614528 +161943,858,classic,1431614388 +161943,858,oranges,1431614378 +161943,5995,Poland,1431614483 +161943,5995,uprising,1431614476 +161943,114935,inception,1431614299 +161943,114935,time travel,1431614296 +161956,41285,interesting,1138255094 +161956,116907,eye opening,1422736044 +161956,116907,food,1422736044 +161956,116907,science,1422736044 +161964,111320,christian,1439648000 +161981,260,Science Fiction,1430766126 +161981,260,space,1430766135 +161982,260,Classicscifi,1435731450 +161982,260,OG,1435731441 +161985,198,bad ending,1441465691 +161985,198,long,1441465657 +161985,198,sci-fi,1441465638 +161985,198,strange,1441465636 +161985,288,brutal,1440947073 +161985,288,brutality,1440947016 +161985,288,hallucinatory,1440947049 +161985,288,psychedelic,1440947021 +161985,288,serial killer,1440947059 +161985,288,stylized,1440947039 +161985,288,stylized violence,1440947075 +161985,288,violence,1440947043 +161985,337,bittersweet,1440745762 +161985,337,dysfunctional family,1440745772 +161985,593,disturbing,1440745241 +161985,593,psychological,1440745247 +161985,593,psychology,1440745238 +161985,593,serial killer,1440745236 +161985,608,Coen Brothers,1440745199 +161985,608,dark comedy,1440745200 +161985,608,snow,1440745223 +161985,665,crazy,1440740698 +161985,665,Emir Kusturica,1440744964 +161985,665,Goran Bregović,1440744974 +161985,665,great music,1440740672 +161985,665,Yugoslavia,1440740667 +161985,924,artificial intelligence,1440740829 +161985,924,atmospheric,1440771598 +161985,924,cinematography,1440771600 +161985,924,sci-fi,1440740823 +161985,924,Stanley Kubrick,1440740826 +161985,924,surreal,1440740832 +161985,924,visually appealing,1440771602 +161985,1117,businessman,1441040445 +161985,1117,charming,1441040397 +161985,1117,Down syndrome,1441040318 +161985,1117,friendship,1441040429 +161985,1117,optimistic,1441040401 +161985,1213,too long,1440692164 +161985,1232,Andrei Tarkovsky,1440741059 +161985,1232,beautifully filmed,1440741070 +161985,1232,dreamlike,1440741030 +161985,1232,dystopia,1440741027 +161985,1232,existentialism,1440741026 +161985,1232,psychological,1440741036 +161985,1232,visually appealing,1440741092 +161985,1237,atmospheric,1440741204 +161985,1237,black and white,1440741207 +161985,1237,death,1440741201 +161985,1237,existentialism,1440741199 +161985,1237,Ingmar Bergman,1440741202 +161985,1237,Swedish,1440745383 +161985,1251,cinematography,1440741365 +161985,1251,dreams,1440741305 +161985,1251,fantasy,1440741349 +161985,1251,Federico Fellini,1440741304 +161985,1251,reflective,1440741312 +161985,1251,satirical,1440741320 +161985,1251,surreal,1440741302 +161985,1464,atmospheric,1440740756 +161985,1464,disturbing,1440740760 +161985,1464,dreamlike,1440740755 +161985,1464,psychological,1440740775 +161985,1464,surreal,1440740753 +161985,2068,disturbing,1440745412 +161985,2068,emotional,1440745414 +161985,2068,Ingmar Bergman,1440745611 +161985,2068,Ismael Retzinsky,1440745627 +161985,2068,swedish,1440745405 +161985,2076,atmospheric,1440744612 +161985,2076,dark,1440744600 +161985,2076,David Lynch,1440744604 +161985,2076,disturbing,1440744608 +161985,2076,dreamlike,1440744610 +161985,2076,hallucinatory,1440744607 +161985,2076,weird,1440744602 +161985,2105,classic,1440662827 +161985,2105,cyberpunk,1440662830 +161985,2105,sci-fi,1440662829 +161985,2105,stylish,1440662819 +161985,2160,Antichrist,1440744704 +161985,2160,Atmospheric,1440744700 +161985,2160,dreamlike,1440744714 +161985,2160,paranoia,1440744710 +161985,2232,maze,1440744752 +161985,2232,original,1440744740 +161985,2232,paranoia,1440744744 +161985,2232,psychological,1440744726 +161985,2232,scifi,1440744734 +161985,2232,weird,1440744730 +161985,2843,crazy,1440741130 +161985,2843,Emir Kusturica,1440741105 +161985,2843,gypsy,1440741103 +161985,2843,Louis I think this is the beginning of a beautiful friendship,1440741139 +161985,2843,music,1440741113 +161985,2931,bittersweet,1440744941 +161985,2931,Emir Kusturica,1440744935 +161985,2931,hallucinatory,1440744937 +161985,2931,magical realism,1440744944 +161985,2970,jungle,1440741282 +161985,2970,Klaus Kinski,1440741259 +161985,2970,Latin America,1440741290 +161985,2970,obsession,1440741251 +161985,2970,opera,1440741295 +161985,2970,river,1440741287 +161985,2970,tense,1440741264 +161985,2970,Werner Herzog,1440741262 +161985,3003,comedy,1440946380 +161985,3003,gypsy,1440946365 +161985,3003,holocaust,1440946370 +161985,3003,jewish,1440946419 +161985,3003,train,1440946368 +161985,3181,Shakespeare,1440740094 +161985,3181,tense,1440740593 +161985,3181,updated classics,1440740353 +161985,3181,visually appealing,1440740096 +161985,3503,Andrei Tarkovsky,1440780037 +161985,3503,atmospheric,1440674856 +161985,3503,based on a book,1440674872 +161985,3503,dreamlike,1440674868 +161985,3503,enigmatic,1440674860 +161985,3503,little dialogue,1440780043 +161985,3503,psychological,1440674862 +161985,3503,Russian,1440674858 +161985,3503,Stanislaw Lem,1440780049 +161985,3503,surreal,1440674865 +161985,3503,tense,1440740739 +161985,3949,atmospheric,1440675439 +161985,3949,cinematography,1440741187 +161985,3949,depressing,1440675430 +161985,3949,disturbing,1440675434 +161985,3949,psychological,1440741193 +161985,3949,psychology,1440675432 +161985,4422,Breathtaking,1440674880 +161985,4422,cinematography,1440740224 +161985,4422,death,1440674888 +161985,4422,Depressing,1440674915 +161985,4422,Lyrical,1440674919 +161985,4422,stylized,1440674885 +161985,4422,Swedish,1440745652 +161985,4422,tense,1440740582 +161985,4422,visually appealing,1440740199 +161985,4467,fantasy,1440745298 +161985,4467,surreal,1440745302 +161985,4720,atmospheric,1440745809 +161985,4720,cinematography,1440745836 +161985,4720,claustrophobic,1440745820 +161985,4720,dark,1440745822 +161985,4720,ghosts,1440745811 +161985,4720,scary,1440745816 +161985,4848,Atmospheric,1440746010 +161985,4848,David Lynch,1440746001 +161985,4848,disturbing,1440746008 +161985,4848,dreamlike,1440746006 +161985,4848,nonlinear,1440746003 +161985,4848,stylized,1440746023 +161985,4848,surreal,1440746000 +161985,4848,visually appealing,1440746013 +161985,4848,weird,1440746020 +161985,4878,atmospheric,1440745179 +161985,4878,dreamlike,1440745167 +161985,4878,hallucinatory,1440745187 +161985,4878,imaginary friend,1440745189 +161985,4878,mental illness,1440745169 +161985,4878,psychology,1440745164 +161985,4878,sci-fi,1440745171 +161985,4878,surreal,1440745163 +161985,4878,time travel,1440745161 +161985,4878,weird,1440745173 +161985,4979,dark comedy,1440674613 +161985,4979,dark humor,1440674619 +161985,4979,dysfunctional family,1440674608 +161985,4979,outsiders,1440674640 +161985,4979,smoking,1440674633 +161985,4979,stylized,1440674621 +161985,5147,dreamlike,1440745327 +161985,5147,Ingmar Bergman,1440745318 +161985,5147,reflective,1440745321 +161985,5147,Swedish,1440745328 +161985,5489,atmospheric,1440745273 +161985,5489,creepy,1440745279 +161985,5489,Klaus Kinski,1440745283 +161985,5489,Werner Herzog,1440745286 +161985,5881,based on a book,1440779427 +161985,5881,horrible,1440779440 +161985,5881,poor adaptation,1440779423 +161985,5881,remake,1440779430 +161985,6118,butterfly effect,1440779165 +161985,6118,intellectually stimulating,1440779159 +161985,6155,romantic comedy,1441040748 +161985,6162,atmospheric,1441041466 +161985,6162,meditative,1441041459 +161985,6162,slow,1441041468 +161985,7063,dreamlike,1440740955 +161985,7063,insanity,1440740952 +161985,7063,Klaus Kinski,1440740976 +161985,7063,obsession,1440740956 +161985,7063,stylized,1440740951 +161985,7063,tense,1440740972 +161985,7063,violent,1440740982 +161985,7063,Werner Herzog,1440740997 +161985,7151,visually appealing,1440749831 +161985,7327,psychoanalysis,1440740646 +161985,7327,psychology,1440740632 +161985,7327,Swedish,1440740648 +161985,7935,Ingmar Bergman,1440745712 +161985,7935,Swedish,1440745724 +161985,7937,disturbing,1440745671 +161985,7937,Ingmar Bergman,1440745664 +161985,7937,loneliness,1440745668 +161985,7937,Swedish,1440745694 +161985,7939,atmospheric,1440674823 +161985,7939,Ingmar Bergman,1440674830 +161985,7939,insanity,1440674837 +161985,7939,mental illness,1440674844 +161985,7939,Swedish,1440745641 +161985,8254,Arizona,1440744874 +161985,8254,beautiful music,1440744764 +161985,8254,Emir Kusturica,1440744763 +161985,8254,Goran Bregović,1440744854 +161985,8254,great soundtrack,1440744759 +161985,8254,halibut,1440744786 +161985,8254,magic realism,1440744868 +161985,8254,surreal,1440744760 +161985,8405,atmospheric,1440745731 +161985,8405,grim,1440745735 +161985,8405,hallucinatory,1440745732 +161985,8405,Ingmar Bergman,1440745743 +161985,8405,Swedish,1440745750 +161985,8950,atmospheric,1440744632 +161985,8950,imaginary friend,1440744647 +161985,8950,memory,1440744651 +161985,8950,paranoid,1440744638 +161985,8950,psychological,1440744643 +161985,8950,psychology,1440744626 +161985,8950,twist ending,1440744635 +161985,26164,Alejandro Jodorowsky,1440741640 +161985,26164,surreal,1440741643 +161985,26164,surrealism,1440741644 +161985,26164,weird,1440741710 +161985,26326,Alejandro Jodorowsky,1440741671 +161985,26326,dreamlike,1440741673 +161985,26326,hallucinatory,1440741663 +161985,26326,psychedelic,1440741665 +161985,26326,surreal,1440741658 +161985,26326,symbolism,1440741660 +161985,26326,weird,1440741678 +161985,26717,dark,1440774520 +161985,26717,psychedelic,1440947152 +161985,26717,symbolic,1440774528 +161985,27338,death,1440779274 +161985,27338,despair,1440779253 +161985,27338,obsession,1440779245 +161985,27834,cinematography,1440740236 +161985,27834,psychology,1440740232 +161985,27834,tense,1440740575 +161985,27834,visually appealing,1440740257 +161985,33725,badger,1440948397 +161985,33725,dark comedy,1440948191 +161985,33725,deafness,1440948167 +161985,33725,dj,1440948170 +161985,33725,drugs,1440948176 +161985,33725,imaginary friend,1440948199 +161985,34162,predictable,1441040494 +161985,34162,romance,1441040511 +161985,34162,vince vaughn,1441040514 +161985,34162,Will Ferrell,1441040523 +161985,47152,death,1440740880 +161985,47152,dreamlike,1440740963 +161985,47152,pain,1440740893 +161985,48394,atmospheric,1440674812 +161985,48394,bittersweet,1440674777 +161985,48394,dark,1440674808 +161985,48394,dark fantasy,1440674791 +161985,48394,disturbing,1440674802 +161985,48394,fairy tale,1440674774 +161985,48394,imagination,1440674771 +161985,48394,psychology,1440674781 +161985,48394,stylized,1440674806 +161985,48394,surreal,1440674766 +161985,48394,violence,1440674769 +161985,50011,door to the different world,1440666059 +161985,50011,dystopia,1440665994 +161985,50011,metaphorical,1440665995 +161985,50011,music from crack in a wall,1440666068 +161985,50011,surreal,1440666055 +161985,55069,abortion,1440741480 +161985,55069,beyond the iron courtain,1440741513 +161985,55069,desperation,1440741493 +161985,55901,cinematography,1440741778 +161985,55901,dark comedy,1440741768 +161985,55901,surreal,1440741767 +161985,56715,afterlife,1440741564 +161985,56715,alternate reality,1440741535 +161985,56715,dark comedy,1440741528 +161985,56715,Etgar Keret,1440741544 +161985,58381,dreamlike,1440741583 +161985,58381,touching,1440741572 +161985,59026,dreamlike,1440947847 +161985,59026,drugs,1440947830 +161985,59026,French,1440947832 +161985,59026,satire,1440947827 +161985,59026,social commentary,1440947825 +161985,59602,epilepsy,1440661966 +161985,59602,swimming pool,1440661972 +161985,59602,teacher student relationship,1440661962 +161985,61236,animated,1440674744 +161985,61236,psychological,1440674754 +161985,61236,surreal,1440674760 +161985,61236,thought-provoking,1440674745 +161985,61236,war,1440674748 +161985,61646,complicated relations,1440779139 +161985,63082,badly acted,1441039648 +161985,63082,bollywood,1441039630 +161985,63082,cinematography,1441039854 +161985,63082,happy ending,1441039654 +161985,63082,preachy,1441039777 +161985,63082,predictable,1441039657 +161985,63082,predictable ending,1441039818 +161985,63082,pretentious,1441039704 +161985,63082,singing,1441039822 +161985,63082,story,1441039664 +161985,63082,unrealistic,1441039670 +161985,63082,visually appealing,1441039845 +161985,64278,creative,1440946718 +161985,64278,documentary,1440946663 +161985,64278,psychoanalysis,1440946649 +161985,64278,Zizek,1440946657 +161985,65672,Balkan war,1440947304 +161985,65672,Balkans,1440947297 +161985,65672,psychological,1440947627 +161985,65672,Sarajevo,1440947425 +161985,65672,trauma,1440947619 +161985,66371,beautiful scenery,1440946954 +161985,66371,cello,1440946960 +161985,66371,death,1440946973 +161985,66371,Japan,1440946952 +161985,66371,life & death,1440946956 +161985,66371,taboo,1440946994 +161985,68462,cinematography,1440739989 +161985,68462,love,1440739949 +161985,68462,poignant,1440740319 +161985,68462,visually appealing,1440740108 +161985,68472,Butoh,1441050986 +161985,68472,dance,1441050959 +161985,68472,german,1441050996 +161985,68472,hanami,1441051602 +161985,68472,illness,1441051100 +161985,68472,Japan,1441050963 +161985,68472,psychological,1441051108 +161985,69811,dark comedy,1440741423 +161985,69811,despair,1440741408 +161985,69811,funeral,1440740479 +161985,69811,love,1440741401 +161985,69811,violence,1440740535 +161985,76208,cremation,1440844806 +161985,76208,dreamlike,1440845010 +161985,76208,holocaust,1440845462 +161985,76208,psychopath,1440845392 +161985,76208,Tibetan book of the dead,1440921380 +161985,78836,boring,1440779997 +161985,78836,erotic,1440779960 +161985,78836,lack of plot,1440779989 +161985,78836,Nudity (Full Frontal),1440779952 +161985,78836,philosophic,1440779987 +161985,78836,psychedelic,1440779945 +161985,86320,beautiful,1440740032 +161985,86320,cinematography,1440739976 +161985,86320,depression,1440740074 +161985,86320,end of the world,1440740073 +161985,86320,introspective,1440740066 +161985,87164,psychedelic,1440947134 +161985,87164,tense,1440740726 +161985,87164,unfinished,1440740370 +161985,87164,visually appealing,1440740120 +161985,89759,husband-wife relationship,1440745101 +161985,89759,lies,1440745096 +161985,89759,realism,1440745089 +161985,90531,frustration,1440745115 +161985,90531,self-destruction,1440745113 +161985,91615,depression,1440664100 +161985,91615,drugs,1440664102 +161985,91615,great opening,1440745148 +161985,96832,beautiful,1440741828 +161985,96832,disturbing,1440741825 +161985,96832,surreal,1440741822 +161985,100106,creative,1440946621 +161985,100106,documentary,1440946704 +161985,100106,psychoanalysis,1440946619 +161985,100106,Žižek,1440946613 +161985,105769,dystpoia,1440779052 +161985,105769,emotional,1440779053 +161985,105769,philosophical,1440779069 +161985,105769,Stanislaw Lem,1440779061 +161985,105769,visuals,1440779057 +161985,106841,bleak atmosphere,1440745783 +161985,106841,family drama,1440745788 +161985,107771,Art,1440741230 +161985,107771,atmospheric,1440741216 +161985,107771,cinematography,1440741225 +161985,107771,Jim Jarmusch,1440741217 +161985,107771,music,1440741221 +161985,107771,visually stunning,1440741220 +161985,109187,Christoph Waltz,1440745886 +161985,109187,meaning of life,1440745874 +161985,109187,surreal,1440745876 +161985,109187,Terry Gilliam,1440745877 +161985,109187,visually appealing,1440745880 +161985,109487,father - child relationship,1440674701 +161985,109487,love,1440674688 +161985,109487,sci-fi,1440741173 +161985,109487,space,1440674669 +161985,109487,thought-provoking,1440674673 +161985,110730,artificial intelligence,1440745893 +161985,110730,emotional,1440745960 +161985,110730,love,1440745976 +161985,115569,dark,1440921090 +161985,115569,lack of morals,1440921119 +161985,115569,media madness,1440921114 +161985,115569,sociopath,1440921093 +161985,115569,transformative performance,1440921108 +161985,116945,France,1440946037 +161985,116945,gypsy,1440946048 +161985,116945,holocaust,1440946064 +161985,116945,Korkoro,1440946040 +161985,116945,music,1440946203 +161985,116945,porajmos,1440946109 +161985,116945,romani,1440946045 +161985,122882,dystopian,1440746036 +161985,122882,great soundtrack,1440746047 +161985,122882,post apocalypse,1440746032 +161985,122882,visually appealing,1440746033 +161985,127082,cinematography,1440740405 +161985,127082,desperation,1440740454 +161985,127082,love,1440740448 +161985,127082,music,1440740458 +161985,129889,gypsy,1440946249 +161985,129889,poetess,1440946301 +161993,260,classic,1441748930 +161993,260,sci-fi,1441748934 +162026,527,great story,1448907787 +162026,79132,intellectual,1448907730 +162026,79132,sci-fi,1448907706 +162026,79132,thought-provoking,1448907702 +162032,112556,mindfuck,1448763552 +162039,260,classic sci-fi,1433883482 +162039,260,sci-fi,1433883475 +162071,1438,catastrophe,1271641432 +162071,78174,adapted from:book,1285772899 +162083,260,classic sci-fi,1445019584 +162083,260,old,1445019598 +162083,260,Star Wars,1445019590 +162106,260,classic sci-fi,1440321716 +162106,260,cult classic,1440321728 +162106,260,Retro,1440321733 +162112,4022,monologue driven,1308074483 +162112,4022,must see,1308074476 +162112,4022,philosophy,1308074471 +162112,4022,psychological,1308074461 +162112,4022,spiritual journey,1308074468 +162112,4022,stranded,1308074462 +162112,4022,SURVIVAL,1308074414 +162112,4022,Tom Hanks,1308074452 +162112,4022,unique,1308074458 +162112,4022,wilson,1308074456 +162115,29,dreamlike,1376205385 +162115,29,dystopia,1376205379 +162115,29,hallucinatory,1376205381 +162115,29,weird,1376205392 +162115,29,whimsical,1376205389 +162115,714,anticolonial,1285979761 +162115,714,dreamlike,1277437569 +162115,714,hallucinatory,1277437568 +162115,714,Jim Jarmusch,1277437562 +162115,714,Johnny Depp,1277437559 +162115,714,quirky,1277437572 +162115,1173,cannibalism,1303464626 +162115,1173,formulaic symmetry,1303465296 +162115,1251,dreams,1276629662 +162115,1251,Fellini,1276629659 +162115,1251,misogyny,1276629635 +162115,1251,surreal,1276629638 +162115,1580,aliens,1276628400 +162115,1884,CULTURE CLASH,1286053834 +162115,1884,hallucinatory,1286053847 +162115,1884,Hunter S. Thompson,1286053831 +162115,1884,literary adaptation,1286053852 +162115,1884,Terry Gilliam,1286053828 +162115,1967,jim henson,1404583242 +162115,2021,Alan Smithee,1368246855 +162115,2140,jim henson,1404585268 +162115,2140,nihilism,1404585286 +162115,2140,otherness,1404585293 +162115,2340,alan smithee,1368246932 +162115,2959,radical politics,1404584199 +162115,2970,Latin America,1276629132 +162115,2970,OBSESSIVE QUESTS,1276629140 +162115,2970,opera,1276629139 +162115,2970,political,1276629136 +162115,2970,sweeping,1276629134 +162115,2970,Werner Herzog,1276629142 +162115,2997,Literary,1276624256 +162115,2997,Puppets,1285979340 +162115,3223,classical,1303464850 +162115,3223,formulaic,1303464864 +162115,3223,symmetrical,1303464836 +162115,3626,classical symmetry,1303465244 +162115,3626,formulaic,1303465212 +162115,3626,truthy (i'm so honest!),1303465225 +162115,4612,radical theater,1277438292 +162115,4878,philosophy,1285979450 +162115,4878,surreal,1285979444 +162115,5783,lewd larceny,1303465028 +162115,5783,nuanced counterpoint,1303465043 +162115,5783,poststructuralism,1303465015 +162115,5783,the french are more cultured than you,1303465054 +162115,6713,all the films were boring!!!!,1376204380 +162115,6713,Animated Woody Allen Film...If He Made One,1376204409 +162115,6713,great movie - idiots leave stupid tags,1376204368 +162115,6713,In Netflix queue,1376204394 +162115,6713,no wonder this studio was going bankrupt,1376204374 +162115,6773,bicycling,1276699329 +162115,6773,gangsters,1276699344 +162115,6773,interesting animation style,1276699341 +162115,6773,irreverent,1276699339 +162115,6773,no dialogue,1276699335 +162115,6773,stylized,1276699331 +162115,6985,Best Performance: Maria Falconetti as Joan of Arc,1277438243 +162115,6985,French,1277438229 +162115,7063,megalomania,1276629114 +162115,7063,small monkeys,1276629111 +162115,7063,South America,1276629107 +162115,7063,stylized,1276629105 +162115,7063,Werner Herzog,1276629103 +162115,7123,hallucinatory,1303465157 +162115,7123,Madness,1303465159 +162115,7123,nonlinear,1303465166 +162115,7123,William S. Burroughs,1303465169 +162115,7371,literary,1303464605 +162115,7460,episodic,1277437239 +162115,7460,Jim Jarmusch,1277437224 +162115,7460,no plot,1277437234 +162115,8910,existentialism,1285979292 +162115,25771,experimental,1285979419 +162115,25771,mindfuck,1285979429 +162115,25771,surrealism,1285979424 +162115,26150,Andrei Tarkovsky,1277438142 +162115,26150,atmospheric,1277438133 +162115,26150,long,1277438127 +162115,26150,painting,1277438125 +162115,26150,Russia,1277438120 +162115,26150,vow of silence,1277438122 +162115,26195,Marxism,1403861943 +162115,26195,May 1968,1403861960 +162115,26195,Nonnarative,1403861952 +162115,26195,Revolutionary,1403861938 +162115,26304,black power,1404283813 +162115,26304,herbie hancock,1404283824 +162115,26304,Radical Politics,1404283833 +162115,26304,white people,1404283843 +162115,26326,animal cruelty,1387490271 +162115,26326,social criticism,1387490278 +162115,26326,symbolism,1387490284 +162115,26326,weird,1387490281 +162115,27366,bela tarr,1404584051 +162115,27366,black and white,1404584101 +162115,27366,circus,1404584069 +162115,27366,giant stuffed whale,1404584079 +162115,27366,incredible,1404584043 +162115,27366,magnetic powers,1404584107 +162115,27366,pretentious,1404584087 +162115,27366,slow paced,1404584095 +162115,27366,The Melancholy of Resistance,1404584123 +162115,30810,whimsical,1285979492 +162115,33264,Béla Tarr,1363570225 +162115,37545,Werner Herzog,1303464960 +162115,43460,postmodern,1276731178 +162115,44191,dystopia,1276624035 +162115,44191,radical politics,1404584193 +162115,46976,literary,1285979892 +162115,46976,writing,1285979899 +162115,48043,pathetic,1404583870 +162115,48304,maya civilization,1278284026 +162115,48304,Nudity (Topless),1278284041 +162115,48394,fairy tale,1276631635 +162115,48394,imagination,1276631636 +162115,48394,stylized,1276631629 +162115,48394,surreal,1276631628 +162115,50594,art film,1363569180 +162115,50594,collage,1303463829 +162115,50594,structurally defiant,1303463841 +162115,54259,fairy tale,1276630056 +162115,54259,magic realism,1276630059 +162115,60201,art film,1363569145 +162115,60201,collage,1363569151 +162115,60201,poetry,1363569157 +162115,67508,Dramatized Documentary,1285979063 +162115,67508,Radical Politics,1285979037 +162115,69134,Mental Illness,1376205485 +162115,69134,weird,1376205491 +162115,69134,wierd for the sake of it,1376205495 +162115,70286,social commentary,1276628425 +162115,71535,post-apocalyptic,1276628443 +162115,74677,activism,1276740017 +162115,74677,political satire,1276740035 +162115,77455,betrayal,1303464730 +162115,77455,graffiti,1303464736 +162115,79357,jared leto,1404583767 +162115,79357,terrible acting,1404583778 +162115,89039,hippies,1404583894 +162115,91952,anti-film,1351446430 +162115,91952,critical analysis,1351446448 +162115,91952,painterly,1351446404 +162115,91952,perspectival,1351446425 +162115,93574,graffiti,1415886621 +162115,93574,mindblowing,1415886614 +162115,93574,mystery,1415886633 +162115,100244,radical politics,1404584156 +162115,100440,bodily,1363575558 +162115,100440,children,1363575590 +162115,100440,horror,1363575615 +162115,100440,nazis,1363575562 +162115,100440,subtle,1363575607 +162115,100440,ultra-violence,1363575604 +162115,100440,visceral,1363575552 +162115,100440,wwii,1363575581 +162120,260,Science Fiction,1440961083 +162120,260,"Science Fiction, space",1440961050 +162120,260,space,1440961071 +162120,762,corruption,1444156751 +162120,762,Nudity (Topless - Notable),1444156703 +162120,762,Nudity (Topless),1444156705 +162120,762,politics,1444156769 +162120,762,strong female lead,1444156729 +162120,1092,Erotic Thriller,1441822965 +162120,1092,Notable Nudity,1441822974 +162120,1092,sex scenes,1441822969 +162120,1627,accident,1451272260 +162120,1627,bad luck,1451273165 +162120,1627,cheating,1451272298 +162120,1627,desert,1451272295 +162120,1627,Jennifer Lopez,1451272290 +162120,1627,misadventure,1451272271 +162120,1627,murder,1451272312 +162120,1627,overdone,1451273142 +162120,1627,rape,1451272314 +162120,1627,violence,1451272293 +162120,2916,memory,1442076306 +162120,2916,Sharon Stone,1442076297 +162120,3513,attack on embassy,1448226720 +162120,3513,court,1448226812 +162120,3513,lawsuit,1448226814 +162120,3513,military,1448226647 +162120,3513,military losses,1448226786 +162120,3513,Samuel L. Jackson,1448226662 +162120,3513,struggle for survival,1448226762 +162120,3879,china,1450825085 +162120,3879,FBI,1450824917 +162120,3879,Intrigue,1450824856 +162120,3879,lone fighter,1450992057 +162120,3879,New York,1450824858 +162120,3879,Nudity,1450824862 +162120,3879,politics,1450824928 +162120,3879,secret agent,1450824907 +162120,3879,special agent,1450825014 +162120,3879,Special Operations,1450824876 +162120,3879,twist ending,1450824995 +162120,3879,U.N.,1450824870 +162120,3879,United Nations,1450824872 +162120,3879,Wesley Snipes,1450825116 +162120,4034,corruption,1446412530 +162120,4034,drugs,1446412528 +162120,4034,oscar (best cinematography),1446412524 +162120,4034,politics,1446412526 +162120,4034,social commentary,1446412536 +162120,4448,break-in,1448225478 +162120,4448,crime,1448225520 +162120,4448,robbery,1448225476 +162120,4448,Robert De Niro,1448225480 +162120,4448,thief,1448225505 +162120,4874,aliens,1442435510 +162120,4874,intellectual,1442435498 +162120,4874,Kevin Spacey,1442435517 +162120,4874,philosophical,1442435503 +162120,4958,air force,1450714328 +162120,4958,aircraft carrier,1450714348 +162120,4958,europa,1450714294 +162120,4958,kosovo,1450714292 +162120,4958,struggle for survival,1450714296 +162120,4958,war,1450714098 +162120,4958,war hero,1450714299 +162120,4989,drugs,1442627982 +162120,4989,Weed,1442627980 +162120,6280,drug trafficking,1447610682 +162120,6280,mexico,1447610768 +162120,6280,organised crime,1447610752 +162120,6280,police,1447610796 +162120,6280,prison break,1447610715 +162120,6280,private jet,1447610800 +162120,6280,revange,1447610650 +162120,6323,dark,1443391037 +162120,6323,multiple storylines,1443391021 +162120,6323,predictable,1443391043 +162120,6323,twist ending,1443391023 +162120,7142,Jessica Alba,1451183069 +162120,7827,corporate espionage,1450734864 +162120,7827,double agents,1450734933 +162120,7827,espionage,1450734940 +162120,7827,twist ending,1450734921 +162120,7827,white collar crime,1450734996 +162120,8622,conspiracy,1451783767 +162120,8622,conspiracy theory,1451783758 +162120,8622,corruption,1451783769 +162120,8622,documentary,1451783800 +162120,8622,Michael Moore,1451783755 +162120,8622,politics,1451783753 +162120,8622,terrorism,1451783760 +162120,8622,US President,1451783776 +162120,8644,artificial intelligence,1451263523 +162120,8644,futuristic,1451263585 +162120,8644,lone fighter,1451263602 +162120,8644,revolution,1451263576 +162120,8644,robot,1451263537 +162120,8644,technology,1451263528 +162120,8644,thought provoking,1451263562 +162120,8644,Will Smith,1451263530 +162120,8860,kidnapping,1442629233 +162120,27711,assassin,1452549372 +162120,27711,CIA,1452549402 +162120,27711,female assassin,1452549370 +162120,27711,Hong Kong,1452549406 +162120,27711,killer,1452549396 +162120,27711,martial arts,1452549378 +162120,27711,nudity,1452549390 +162120,27711,thrill,1452549417 +162120,27711,violence,1452549447 +162120,33166,los angeles,1446412439 +162120,33166,multiple storylines,1446412410 +162120,33166,Nudity (Topless),1446412429 +162120,33166,Oscar (Best Picture),1446412441 +162120,33166,race issues,1446412424 +162120,33166,racism,1446412417 +162120,33166,Sandra Bullock,1446412426 +162120,33166,twist ending,1446412420 +162120,36529,Africa,1451683744 +162120,36529,arms dealer,1451683733 +162120,36529,based on a true story,1451683735 +162120,36529,corruption,1451683751 +162120,36529,drugs,1451683766 +162120,36529,gun smuggling,1451683772 +162120,36529,guns,1451683746 +162120,36529,Nicolas Cage,1451683723 +162120,36529,Nudity (Topless),1451683760 +162120,36529,organized crime,1451683762 +162120,36529,political,1451683738 +162120,36529,politics,1451683756 +162120,36529,smuggling,1451683741 +162120,36529,violence,1451683774 +162120,36529,war,1451683749 +162120,36529,weapons,1451683777 +162120,36529,World Politics,1451683753 +162120,37382,bounty hunter,1442702416 +162120,37382,crime,1442702423 +162120,37382,Keira Knightley,1442702802 +162120,37382,mafia,1442702403 +162120,37382,robbery,1442702396 +162120,37382,strong female lead,1442702348 +162120,37853,Jessica Alba,1451183058 +162120,44199,bank robbery,1442627734 +162120,44199,Denzel Washington,1442627751 +162120,44199,good story,1442627741 +162120,44199,great ending,1442627738 +162120,44199,intelligent thriller,1442627730 +162120,44199,Jodie Foster,1442627743 +162120,44199,twist ending,1442627726 +162120,48738,Africa,1451774750 +162120,48738,based on a true story,1451774757 +162120,48738,military,1451774788 +162120,48738,politics,1451774772 +162120,48738,violent,1451774752 +162120,48780,based on a book,1444172008 +162120,48780,complicated,1444172035 +162120,48780,great ending,1444172012 +162120,48780,nonlinear,1444172039 +162120,48780,teleportation,1444172020 +162120,48780,twist ending,1444172031 +162120,48780,twists & turns,1444172017 +162120,49278,Denzel Washington,1443043215 +162120,49278,paradox,1443043224 +162120,49278,time travel,1443043220 +162120,49530,Africa,1442076382 +162120,49530,Civil War,1442076385 +162120,49530,corruption,1442076381 +162120,49530,Jennifer Connelly,1442076377 +162120,49530,journalism,1442076366 +162120,49530,Leonardo DiCaprio,1442076359 +162120,49530,slavery,1442076393 +162120,49530,smuggling,1442076369 +162120,54736,fbi,1442628654 +162120,54736,middle east,1442628664 +162120,54736,propaganda,1442628666 +162120,54736,terrorism,1442628657 +162120,55118,Naomi Watts,1442084641 +162120,55118,organized crime,1442084635 +162120,55118,prostitution,1442084655 +162120,55118,Russian mafia,1442084666 +162120,55118,violent,1442084664 +162120,55721,corruption,1451675404 +162120,55721,Drugs,1451675415 +162120,55721,Favelas,1451675413 +162120,55721,police corruption,1451675420 +162120,55721,special police forces,1451675435 +162120,55721,urban violence,1451675411 +162120,55721,violence,1451675432 +162120,58103,double agents,1442629007 +162120,58103,secret service,1442629003 +162120,58103,terrorism,1442629000 +162120,58103,US President,1442628997 +162120,60074,alcoholic,1444243009 +162120,60074,plot twist,1444243016 +162120,60074,public relations,1444243020 +162120,60074,Will Smith,1444243005 +162120,61350,artificial intelligence,1446066477 +162120,61350,based on a book,1446066403 +162120,61350,futuristic,1446066432 +162120,61350,Vin Diesel,1446066407 +162120,62081,artificial intelligence,1451000549 +162120,62081,big brother,1451000451 +162120,62081,computer,1451000582 +162120,62081,cyberterrorism,1451000443 +162120,62081,internet,1451000565 +162120,62081,president,1451000640 +162120,62081,surveillance,1451000448 +162120,62081,terrorism,1451000625 +162120,62081,white house,1451000649 +162120,62081,wrongly accused,1451000544 +162120,66198,arms dealer,1442773412 +162120,66198,banking,1442773429 +162120,66198,corruption,1442773476 +162120,66198,economic war,1442773478 +162120,66198,interpol,1442773572 +162120,66691,burglary,1451182308 +162120,66691,heist,1451182148 +162120,66691,theft,1451182150 +162120,66691,thief,1451182157 +162120,66691,twisted ending,1451182189 +162120,66691,undercover,1451182171 +162120,67197,aliens,1442443787 +162120,67197,apocalypse,1442443811 +162120,67197,end of the world,1442443814 +162120,67197,Nicolas Cage,1442443758 +162120,67620,journalist,1442085773 +162120,68324,escort,1452284185 +162120,68324,escort girl,1452284189 +162120,68324,nudity,1452284187 +162120,68324,prostitute,1452284191 +162120,68324,sex,1452284183 +162120,69481,action,1451784118 +162120,69481,Iraq War,1451784087 +162120,69481,Middle East,1451784096 +162120,69481,military,1451784107 +162120,69481,realistic,1451784100 +162120,69481,war,1451784110 +162120,71838,explosions,1447602604 +162120,71838,Jamie Foxx,1447602600 +162120,71838,technology,1447602590 +162120,71838,violent,1447602607 +162120,75985,evil corporation,1448227745 +162120,75985,futuristic,1448227681 +162120,75985,surgery,1448227771 +162120,75985,twist ending,1448227653 +162120,75985,violent,1448227768 +162120,75985,white collar crime,1448227730 +162120,78218,bomb,1451009687 +162120,78218,interrogation,1451009878 +162120,78218,terrorism,1451009625 +162120,78218,torture,1451009636 +162120,78218,twist ending,1451009673 +162120,79185,action packed,1445557507 +162120,79185,predictable ending,1445557499 +162120,79185,spy,1445557469 +162120,79185,stupid,1445557483 +162120,79185,Tom Cruise,1445557475 +162120,79293,Angelina Jolie,1441449004 +162120,79293,cia,1442687321 +162120,79293,double agents,1441449014 +162120,79293,sleeper agent,1441449009 +162120,79293,spy,1441449028 +162120,79293,strong female lead,1441449040 +162120,79293,US President,1441449022 +162120,83302,Keira Knightley,1442702531 +162120,83302,open end,1442702538 +162120,84601,conspiracy,1442628160 +162120,84601,identity theft,1442628168 +162120,85056,action,1444249397 +162120,85056,alien,1444249404 +162120,85056,childish plot,1444249412 +162120,85056,superhero,1444249379 +162120,85056,supernatural,1444249375 +162120,85342,Brazil,1451683674 +162120,85342,corruption,1451683658 +162120,85342,Latin America,1451683670 +162120,85342,police corruption,1451683661 +162120,85342,politics,1451683663 +162120,85342,realistic,1451683654 +162120,85342,social commentary,1451683677 +162120,85342,South America,1451683672 +162120,86190,Cate Blanchett,1441448902 +162120,86190,secret agent,1441448962 +162120,86190,strong female lead,1441448892 +162120,89085,espionage,1447617833 +162120,89087,organized crime,1442628852 +162120,89087,strong female lead,1442628847 +162120,89470,apocalypse,1443123761 +162120,89470,Jude Law,1443123779 +162120,89470,Kate Winslet,1443123772 +162120,89470,Matt Damon,1443123757 +162120,89470,plausible,1443123750 +162120,89470,Realistic,1443123764 +162120,90439,big corporations,1442085245 +162120,90439,business,1442085191 +162120,90439,corruption,1442085206 +162120,90439,Cynicism,1442085201 +162120,90439,financial crisis,1442085249 +162120,90439,New York City,1442085196 +162120,90439,realistic,1442085256 +162120,90439,Wall Street,1442085203 +162120,90524,chase,1450909142 +162120,90524,CIA,1450909144 +162120,90524,espionage,1450909149 +162120,90524,hiding place,1450909196 +162120,90524,Lily Collins,1450909409 +162120,90524,special agent,1450909146 +162120,90524,teenager,1450909021 +162120,90738,Double agent,1442702907 +162120,90738,espionage,1442702901 +162120,90738,FBI,1442739050 +162120,90738,russian mafia,1442739099 +162120,90738,spy thriller,1442702904 +162120,90738,twist ending,1442739160 +162120,93297,action,1448226313 +162120,93297,authentic action,1448226306 +162120,93297,hostage rescue,1448226290 +162120,93297,jungle,1448226227 +162120,93297,military,1448226204 +162120,93297,special forces,1448226201 +162120,97752,boring,1451527690 +162120,97923,addiction,1443991850 +162120,97923,alcoholism,1443991827 +162120,97923,Denzel Washington,1443991843 +162120,97923,great acting,1443991831 +162120,97923,Nudity (Full Frontal),1443991837 +162120,97923,unpredictable ending,1443991825 +162120,98961,politics,1452120633 +162120,98961,terrorism,1452120628 +162120,98961,torture,1452120646 +162120,98961,war,1452120650 +162120,99112,Action,1443132672 +162120,99112,conspiracy,1443132674 +162120,99112,investigation,1443132668 +162120,99112,sniper,1443132677 +162120,99112,Tom Cruise,1443132657 +162120,99917,artistic,1441455759 +162120,100108,Jason Statham,1453072572 +162120,100108,Jennifer Lopez,1453072582 +162120,100108,lone fighter,1453073069 +162120,100108,miami,1453072634 +162120,100108,revenge,1453072558 +162120,100108,robbery,1453072617 +162120,100498,arms trade,1450813486 +162120,100498,Bruce Willis,1450813435 +162120,100498,car chase,1450813645 +162120,100498,CIA,1450813431 +162120,100498,escape,1450813648 +162120,100498,nuclear weapons,1450813549 +162120,100498,predictable,1450813714 +162120,100498,prison break,1450813618 +162120,100498,Russia,1450813439 +162120,101973,internet crime,1446420683 +162120,101973,multiple storylines,1446420726 +162120,101973,online relationships,1446420755 +162120,101973,social network,1446420660 +162120,102072,arms trade,1448144280 +162120,102072,CIA,1448144287 +162120,102072,corruption,1448144282 +162120,102072,white collar crime,1448144285 +162120,102160,CIA,1448156970 +162120,102160,dropout,1448156958 +162120,102160,espionage,1448156968 +162120,102160,spy,1448156994 +162120,102880,boring,1443920883 +162120,102880,far future,1443920892 +162120,102880,future,1443920914 +162120,102880,space,1443920920 +162120,103539,drinking,1446337980 +162120,103539,realistic,1446337989 +162120,104441,homicide,1448225690 +162120,104441,murder,1448225645 +162120,104441,Nicolas Cage,1448225776 +162120,104441,police,1448225723 +162120,104441,police investigation,1448225733 +162120,104441,psychopath,1448225819 +162120,104441,rape,1448225726 +162120,104441,serial killer,1448225745 +162120,104441,stripper,1448225805 +162120,104736,conspiracy,1448150960 +162120,104736,court,1448151178 +162120,104736,espionage,1448151166 +162120,104736,lawsuit,1448151154 +162120,104736,lawyer,1448151157 +162120,104736,London,1448151174 +162120,104736,MI6,1448151162 +162120,104736,terrorism,1448151159 +162120,106782,Amoral,1442169261 +162120,106782,based on a true story,1442169244 +162120,106782,drugs,1442169236 +162120,106782,Leonardo DiCaprio,1442169238 +162120,106782,Nudity (Topless),1442169257 +162120,106782,prostitution,1442169258 +162120,106782,Stock Market,1442169253 +162120,106782,Wall Street,1442169247 +162120,106785,crime,1450051042 +162120,106785,DEA,1450051124 +162120,106785,drugs,1450051040 +162120,106785,former police officer,1450051114 +162120,106785,former special agent,1450051111 +162120,106785,home defense,1450051138 +162120,106785,organised crime,1450051047 +162120,106785,self defense,1450051050 +162120,106785,special agent,1450051044 +162120,107069,Afghanistan,1450725290 +162120,107069,American propaganda,1450725296 +162120,107069,seals,1450725302 +162120,107069,struggle for survival,1450725340 +162120,107069,true story,1450725287 +162120,107069,war,1450725371 +162120,108188,cia,1442694296 +162120,108188,economic war,1442694364 +162120,108188,economy,1442694366 +162120,108188,russia,1442694368 +162120,108709,realistic,1451735154 +162120,108709,war,1451735151 +162120,109569,CIA,1450131552 +162120,109569,former agent,1450131550 +162120,109569,last job,1450131528 +162120,109569,murder,1450131533 +162120,109569,paris,1450131559 +162120,109569,retired agent,1450131548 +162120,110110,prison,1443035397 +162120,110407,artificial intelligence,1451427079 +162120,110407,combat robots,1451427161 +162120,110407,computer,1451427175 +162120,110407,evolution,1451427124 +162120,110407,robot,1451427101 +162120,110407,war,1451427132 +162120,110730,artificial intelligence,1443112674 +162120,110730,Johnny Depp,1443112683 +162120,110730,Morgan Freeman,1443112687 +162120,110730,nano-technology,1443112680 +162120,110730,network,1443112695 +162120,111360,drugs,1441448742 +162120,111360,Morgan Freeman,1441448727 +162120,111360,Scarlett Johansson,1441448724 +162120,111360,strong female lead,1441448706 +162120,111781,Action,1451131847 +162120,111781,espionage,1451131851 +162120,114439,CIA,1442764911 +162120,114439,kidnapping,1442764955 +162120,114439,revenge,1442764905 +162120,114662,Bradley Cooper,1442618847 +162120,114662,Propaganda,1442618840 +162120,114662,sniper,1442618839 +162120,114662,War,1442618844 +162120,114662,war hero,1442618828 +162120,114847,artificial intelligence,1451433675 +162120,114847,evolution,1451433704 +162120,114847,post-apocalyptic,1451433684 +162120,114847,robots,1451433688 +162120,114935,mindfuck,1442350339 +162120,114935,thriller,1442350337 +162120,114935,time travel,1442350325 +162120,114935,twist ending,1442350331 +162120,115149,Keanu Reeves,1441576228 +162120,115149,mafia,1441576252 +162120,115149,organized crime,1441576265 +162120,115149,russian mafia,1441576234 +162120,115149,secret society,1441576247 +162120,118702,lifeboat,1442786521 +162120,118702,prison,1442786556 +162120,118702,war,1442786440 +162120,118702,war prison,1442786544 +162120,120466,androids,1451441529 +162120,120466,artificial intelligence,1451441486 +162120,120466,bad writing,1451441534 +162120,120466,Funny,1451441502 +162120,120466,gangster,1451441567 +162120,120466,robots,1451441496 +162120,120466,thought provoking,1451441525 +162120,122882,action,1445772973 +162120,122882,desert,1445772983 +162120,122882,feminism,1445772980 +162120,122882,post apocalyptic,1445772992 +162120,122882,post-apocalyptic,1445772995 +162120,125916,based on a book,1444164454 +162120,125916,erotic,1444164434 +162120,129354,swindle,1442168435 +162120,129354,thief,1442168414 +162120,129354,unexpected end,1442168421 +162120,129354,Will Smith,1442168410 +162120,134246,assasin,1450991037 +162120,134246,chase,1450991042 +162120,134246,conspiracy,1450991079 +162120,134246,lone fighter,1450991041 +162120,134246,new york,1450991045 +162120,134246,predictable,1450991290 +162120,134246,strong female lead,1450991231 +162120,134246,terrorism,1450991039 +162120,134246,wrongly accused,1451000536 +162120,139644,cartel,1451782776 +162120,139644,CIA,1451782817 +162120,139644,crime,1451782908 +162120,139644,drugs,1451782810 +162120,139644,FBI,1451782825 +162120,139644,mafia,1451782834 +162120,139644,mexico,1451782797 +162120,139644,organized crime,1451782787 +162120,139644,smuggle,1451782860 +162120,139644,violence,1451782899 +162120,140715,black culture,1442259975 +162120,140715,dr. dre,1442259965 +162120,140715,ice cube,1442259967 +162120,140715,music culture,1442259981 +162120,140715,police brutality,1442259971 +162120,140715,rap music,1442259960 +162120,140715,rappers,1442259973 +162120,140715,true story,1442259978 +162120,140715,west coast rap,1442259982 +162120,142981,alps,1443124207 +162120,142981,family,1443124213 +162120,142981,kids,1443124211 +162120,142981,mountains,1443124215 +162120,142981,switzerland,1443124276 +162127,50,storytelling,1367439187 +162127,111,loneliness,1367439234 +162127,150,dramatic,1367439303 +162127,858,oscar (best directing),1367439265 +162127,1307,relationships,1367439349 +162127,1385,action,1367439322 +162127,1552,action,1367439322 +162127,1608,action,1367439322 +162127,2167,action,1367439322 +162127,2335,comedy,1367439163 +162127,2420,mentor,1367439128 +162127,2421,mentor,1367439128 +162127,2808,action,1367439322 +162127,3006,dramatic,1367439303 +162127,3986,action,1367439322 +162127,4019,mentor,1367439128 +162127,4816,comedy,1367439163 +162127,4878,my favourite,1157735434 +162127,4878,original,1367439092 +162127,5008,dramatic,1367439303 +162127,6188,comedy,1367439163 +162127,7173,comedy,1367439163 +162127,8641,comedy,1367439163 +162127,32587,storytelling,1367439187 +162127,48780,storytelling,1367439187 +162127,88744,original,1367439092 +162127,96610,original,1367439092 +162169,296,innovative,1419995314 +162169,296,quentin tarantino,1419995314 +162169,296,violent,1419995314 +162169,318,morgan freeman,1438487184 +162169,318,prison,1438487184 +162169,318,tim robbins,1438487184 +162169,356,overrated,1423284901 +162169,356,tom hanks,1423284901 +162169,356,worse book,1423284901 +162169,593,academy award,1423978795 +162169,593,anthony hopkins,1423978795 +162169,593,serial killer,1423978795 +162169,3993,kate winslet,1138596107 +162169,5870,psychology,1149648920 +162169,8361,natural disaster,1150168695 +162169,8917,puppetry,1150336474 +162169,27773,brutal,1424583609 +162169,27773,incest,1424583606 +162169,27773,korean,1424583612 +162169,27773,revenge,1424583594 +162169,27773,twist ending,1424583591 +162169,27773,violent,1424583601 +162169,27831,daniel craig,1169764350 +162169,31427,dakota fanning,1169875409 +162169,31427,Robert De Niro,1169875428 +162169,31427,twist ending,1169875428 +162169,33660,boxing,1140494761 +162169,34271,hip hop,1145195890 +162169,34437,open ended endings,1137635309 +162169,34542,documentary,1139373917 +162169,37741,Novelist,1140494796 +162169,38188,simple,1157426585 +162169,39183,Love story,1140584694 +162169,40583,confusing ending,1181532464 +162169,40966,bad movie,1157426629 +162169,41569,overrated,1137822760 +162169,41997,Spielberg,1153026668 +162169,41997,true story,1153026669 +162169,42723,Tough to watch,1153444635 +162169,45447,controversial,1150160265 +162169,45501,Classic Vince Vaughn,1151705716 +162169,45730,M. Night Shyamalan,1154841054 +162169,46530,Bryan Singer,1152933809 +162169,46530,superhero,1152933793 +162169,46578,steve carell,1155951538 +162169,46723,overrated,1165288213 +162169,46970,dissapointing,1156564536 +162169,47044,bad movie,1196631015 +162169,47200,videogame like,1157426604 +162169,47610,Edward Norton,1156720618 +162169,48385,Cohen,1163385393 +162169,48385,extremely funny,1163385384 +162169,48385,R,1163385396 +162169,48394,fantasy,1169312785 +162169,48394,foreign,1169312760 +162169,48394,somewhat overrated,1169312754 +162169,48394,spanish civil war,1169312772 +162169,48780,Christian Bale,1188618034 +162169,48780,Christopher Nolan,1188617950 +162169,48780,magic,1188618034 +162169,49272,007,1164530153 +162169,49272,James Bond,1164530152 +162169,50794,surprisingly good,1170480978 +162169,52281,2 movies in 1,1176683368 +162169,52281,genre spoof,1176683357 +162169,52281,Tarantino,1176683346 +162169,52973,overrated,1182662625 +162169,53894,documentary,1183585588 +162169,53894,health care,1183585609 +162169,53894,Michael Moore,1183585601 +162169,55290,Casey Afflec,1195613826 +162169,55290,multilayered,1195613842 +162169,55820,chilling,1196004211 +162169,55820,Coen Brothers,1196004217 +162169,55820,Javier Bardem,1196004244 +162169,55820,jump out of your seat,1196004208 +162169,60684,author:Alan Moore,1237081401 +162169,68157,Brad Pitt,1264308875 +162169,68157,graphic,1264308888 +162169,68157,Quentin Tarantino,1264308878 +162169,68157,revenge,1264308904 +162169,68157,World War II,1264308895 +162169,72998,incredible 3D,1261584023 +162169,72998,stunning,1261584032 +162169,81564,funny!,1315759967 +162169,81564,Will Ferrell,1315759967 +162169,88129,crime,1347073250 +162169,88129,great soundtrack,1347073248 +162169,88129,predictable,1347073262 +162169,88129,Ron Perlman,1347073265 +162169,88129,ryan gosling,1347073238 +162169,88129,violence,1347073240 +162169,88129,visually appealing,1347073244 +162169,89904,boring,1365127644 +162169,89904,dogs,1365127660 +162169,89904,John Goodman,1365127654 +162169,89904,silent movie,1365127647 +162169,89904,visually appealing,1365127650 +162169,91529,Bane's voice,1343267914 +162169,91529,ending,1343267900 +162169,93855,Bobcat Goldthwait,1419996945 +162169,93855,dark comedy,1419996930 +162169,93855,social comentary,1419996927 +162169,93855,social criticism,1419996846 +162169,93855,violence,1419996890 +162169,94959,Bill Murray,1353724988 +162169,94959,bittersweet,1353725015 +162169,94959,Bruce Willis,1353724994 +162169,94959,Edward Norton,1353724991 +162169,94959,Harvey Keitel,1353725019 +162169,94959,Jason Schwartzman,1353725010 +162169,94959,love story,1353725023 +162169,94959,quirky,1353725003 +162169,94959,Wes Anderson,1353724997 +162169,96728,Amy Adams,1365127568 +162169,96728,Character study,1365127565 +162169,96728,great performances,1365127576 +162169,96728,Joaquin Phoenix,1365127570 +162169,96728,Paul Thomas Anderson,1365127572 +162169,96728,Philip Seymour Hoffman,1365127561 +162169,98961,Jessica Chastain,1365127451 +162169,98961,Kathryn Bigelow,1365127471 +162169,98961,Oscar 2013,1365127456 +162169,98961,war,1365127463 +162169,101285,drugs,1419995769 +162169,101285,guns,1419995772 +162169,101285,harmony korine,1419995795 +162169,101285,James Franco,1419995821 +162169,101285,Nudity (Topless),1419995777 +162169,101285,selena gomez,1419995812 +162169,101285,sexual,1419995780 +162169,104879,Hugh Jackman,1438488199 +162169,104879,Jake Gyllenhaal,1438488203 +162169,104879,thriller,1438488207 +162169,104944,abuse,1419996096 +162169,104944,mental health,1419996086 +162169,104944,redemption,1419996180 +162169,105844,Academy award winning,1423285021 +162169,105844,based on a true story,1423285011 +162169,105844,Graphic Violence,1423285030 +162169,105844,slavery,1423284969 +162169,106696,animation,1419998695 +162169,106696,Disney,1419998686 +162169,106696,music,1419998710 +162169,106696,musical,1419998700 +162169,106696,siblings,1419998714 +162169,106696,sisters,1419998690 +162169,106782,based on a true story,1420006904 +162169,106782,drugs,1420006894 +162169,106782,Funny,1420006901 +162169,106782,greed,1420006908 +162169,106782,Leonardo DiCaprio,1420006887 +162169,106782,Martin Scorsese,1420006890 +162169,106782,Nudity (Full Frontal),1420006897 +162169,106782,Stock Market,1420006915 +162169,111759,aliens,1423978871 +162169,111759,Emily Blunt,1423978860 +162169,111759,powersuit,1423978876 +162169,111759,sci-fi,1423978868 +162169,111759,time loop,1423978881 +162169,111759,Tom Cruise,1423978862 +162169,111759,war,1423978865 +162169,112183,Edward Norton,1438487290 +162169,112183,emma stone,1438487312 +162169,112183,Michael Keaton,1438487295 +162169,112183,theater,1438487301 +162169,114074,adultery,1440305360 +162169,114074,Bill Hader,1440305362 +162169,114074,Kristen Wiig,1440305364 +162169,114074,relationships,1440305366 +162169,114074,siblings,1440305357 +162169,114074,suicide,1440305353 +162169,114552,cartoon,1419998583 +162169,114552,cheese,1419998567 +162169,114552,trolls,1419998577 +162169,115149,Action,1442117842 +162169,115149,Hitman,1442117852 +162169,115149,Keanu Reeves,1442117833 +162169,115149,Revenge,1442117819 +162169,118997,fairy tale,1420172360 +162169,118997,musical,1420172350 +162169,118997,Rob Marshall,1420172347 +162169,122886,Adam Driver,1451188042 +162169,122886,Daisy Ridley,1451188023 +162169,122886,Harrison Ford,1451188015 +162169,122886,J.J. Abrams,1451188020 +162169,122886,Jedi Knight,1451188048 +162169,122886,John Boyega,1451188039 +162169,122886,John Williams,1451188052 +162169,122886,Star Wars,1451188011 +162169,134853,cartoon,1438487356 +162169,134853,Pixar,1438487341 +162169,134853,psychology,1438487345 +162169,135887,Animated,1438657896 +162169,135887,prequel,1438657919 +162175,189,Mia Farrow,1286515497 +162175,1136,hilarious,1287429303 +162175,1136,satirical,1287429312 +162175,1682,alternate reality,1287106830 +162175,1682,dark comedy,1287106833 +162175,7323,great soundtrack,1295219071 +162175,55901,surreal,1286515914 +162175,74458,Predictable,1286514221 +162182,41997,theater,1137282384 +162193,50,complicated,1185486223 +162193,50,must be seen more than once,1185663289 +162193,628,Edward Norton unbelievably good,1172743571 +162193,1367,Dr House with more make-up,1172743670 +162193,30818,great music,1185663327 +162193,34162,Bit overrated,1149994738 +162193,45720,Bit overrated,1172742942 +162193,45726,Kate Hudson looking hot in dream scene,1156890775 +162193,46972,not funny,1185138586 +162193,51084,Definite chick flick,1172742980 +162227,47,atmospheric,1442599758 +162227,47,serial killer,1442599761 +162227,924,atmospheric,1442599817 +162227,924,cinematography,1442599822 +162227,924,confusing ending,1442599831 +162227,924,meditative,1442599826 +162227,924,philosophical,1442599819 +162227,924,sci-fi,1442599815 +162227,924,slow,1442599824 +162227,924,Stanley Kubrick,1442599809 +162227,924,surreal,1442599813 +162227,924,visually appealing,1442599811 +162227,5388,Christopher Nolan,1442598350 +162227,8950,Christian Bale,1442599676 +162227,8950,dark,1442599697 +162227,8950,disturbing,1442599687 +162227,8950,imaginary friend,1442599703 +162227,8950,paranoid,1442599689 +162227,8950,psychodrama,1442599709 +162227,8950,psychology,1442599682 +162227,8950,puzzle,1442599693 +162227,8950,schizophrenia,1442599679 +162227,8950,stylized,1442599700 +162227,8950,surreal,1442599695 +162227,8950,twist ending,1442599684 +162227,109374,cinematography,1442601505 +162227,109374,europe,1442601517 +162227,109374,Hilarious,1442601538 +162227,109374,quirky,1442601504 +162227,109374,ridiculous,1442601512 +162227,109374,stylized,1442601544 +162227,109374,visually appealing,1442601506 +162227,109374,Wes Anderson,1442601501 +162227,109374,whimsical,1442601546 +162258,1196,classic,1225591056 +162258,2976,drugs,1225335466 +162258,3089,Classic,1225590755 +162258,7256,survival,1225590805 +162263,260,sci-fi,1439803844 +162263,260,space,1439803850 +162275,52952,1980s,1424135583 +162275,52952,coming of age,1424135603 +162275,52952,realistic,1424135574 +162275,52952,Shane Meadows,1424135559 +162275,52952,tattoo,1424135617 +162275,86055,comedy,1418940806 +162275,86055,foreign,1418940809 +162275,86055,turkish,1418940807 +162275,86057,comedy,1418940778 +162275,86057,foreign,1418940783 +162275,86057,turkish,1418940781 +162275,86083,comedy,1418940762 +162275,86083,foreign,1418940768 +162275,86083,turkish,1418940765 +162275,86087,comedy,1418940726 +162275,86087,foreign,1418940736 +162275,86087,turkish,1418940732 +162275,104920,comedy,1421263832 +162275,104920,history,1421263832 +162275,104920,local life,1421263832 +162296,1584,beautiful,1410727146 +162296,7454,good concept,1382124219 +162296,63992,fantasy,1420133136 +162296,63992,romance,1420133142 +162296,63992,Teen movie,1420133133 +162296,82152,Beauty and the Beast,1420133627 +162296,95311,funny,1382123704 +162296,95311,pixar,1382123720 +162296,103141,Pixar,1410726242 +162296,104245,aviation,1382123361 +162296,104245,beautiful,1382123441 +162296,104245,graphic,1382123403 +162296,104245,scenario,1382123422 +162296,106011,animation,1420779417 +162296,106011,short,1420779383 +162296,110639,fantasy,1422821807 +162296,110639,french,1422821807 +162296,110639,romance,1422821807 +162296,112175,dragons,1410726230 +162296,112255,debt,1420779322 +162296,112255,documentary,1420779322 +162296,112255,money,1420779322 +162296,125916,book,1423399175 +162296,125916,E L James,1423399197 +162296,125916,erotic,1423399157 +162296,133185,louane emera,1431116327 +162296,133185,sign language,1431116348 +162304,296,funny,1432119580 +162304,296,john travolta,1432119580 +162304,296,violence,1432119580 +162326,260,computer animation,1440160750 +162326,260,Science Fiction,1440160738 +162339,260,space adventure,1439692283 +162339,260,space epic,1439692280 +162341,53121,adventure,1355822474 +162341,53121,animation,1355822474 +162341,53121,comedy,1355822474 +162341,53121,ogres,1355822474 +162359,199,French,1205807992 +162378,7438,action,1430857497 +162378,7438,atmospheric,1430857513 +162378,7438,martial arts,1430857509 +162378,7438,storytelling,1430857506 +162378,7438,tarantino,1430857500 +162378,79132,alternate reality,1430857395 +162378,79132,mindfuck,1430857408 +162378,79132,philosophy,1430857412 +162378,108583,fun,1430857448 +162378,108583,tv series,1430857469 +162386,260,A good one time watch,1439318825 +162386,260,Nice,1439318799 +162405,1265,Bill Murray,1400369328 +162405,1265,surreal,1400369337 +162405,39292,George Clooney,1400369563 +162405,39292,political,1400369569 +162405,39292,propaganda,1400369571 +162405,52973,Judd Apatow,1400369084 +162405,52973,Nudity,1400369078 +162405,52973,Nudity (Topless - Brief),1400369072 +162405,52973,Nudity (Topless),1400369088 +162405,52973,Steve Carell,1400369091 +162429,3006,Al Pacino,1225673228 +162429,3006,Russell Crowe,1225673227 +162429,3006,true story,1225673216 +162429,3916,based on a true story,1225673244 +162429,7263,Olympics,1225673235 +162429,7263,Sports,1225673234 +162446,858,classic,1426891123 +162446,48516,remake,1426891142 +162475,318,hope,1451446470 +162475,318,inspirational,1451446462 +162475,318,justice,1451446468 +162475,318,prison,1451446446 +162475,318,prison escape,1451446460 +162475,1200,action,1450618183 +162475,1200,aliens,1450618162 +162475,1200,sci-fi,1450618161 +162475,1200,space,1450618164 +162475,1200,suspense,1450618194 +162475,1214,aliens,1450618205 +162475,1214,atmospheric,1450618378 +162475,1214,creepy,1450618452 +162475,1214,horror,1450618376 +162475,1214,mystery,1450618449 +162475,1214,sci-fi,1450618380 +162475,1214,space,1450618204 +162475,1214,space travel,1450618383 +162475,1214,suspense,1450618202 +162475,1214,thriller,1450618372 +162475,1625,atmospheric,1436767025 +162475,1625,complicated,1436767027 +162475,1625,mindfuck,1435210722 +162475,1625,paranoia,1435210737 +162475,1625,plot twist,1435210729 +162475,1625,psychological,1435210718 +162475,1625,thriller,1435210724 +162475,1625,twist ending,1435210717 +162475,1721,catastrophe,1450618530 +162475,1721,disaster,1450618530 +162475,1721,historical,1450618516 +162475,1721,love story,1450618524 +162475,1721,romance,1450618514 +162475,1721,true story,1450618533 +162475,2571,action,1450617243 +162475,2571,alternate reality,1450617246 +162475,2571,artificial intelligence,1450617021 +162475,2571,cult film,1450617236 +162475,2571,cyberpunk,1450617224 +162475,2571,dark hero,1450617011 +162475,2571,dystopia,1450617222 +162475,2571,hackers,1450617333 +162475,2571,man versus machine,1450617252 +162475,2571,martial arts,1450617016 +162475,2571,philosophical,1450617229 +162475,2571,post-apocalyptic,1450617075 +162475,2571,sci-fi,1450617014 +162475,2571,slow motion,1450617322 +162475,2571,superpowers,1450617325 +162475,2571,thought-provoking,1450617177 +162475,2571,virtual reality,1450617018 +162475,2959,disturbing,1450619331 +162475,2959,mental illness,1450619328 +162475,2959,mindfuck,1450619336 +162475,2959,psychology,1450619321 +162475,2959,satirical,1450619390 +162475,2959,social commentary,1450619324 +162475,2959,surreal,1450619394 +162475,2959,thought-provoking,1450619329 +162475,2959,twist ending,1450619320 +162475,4226,amnesia,1450619232 +162475,4226,complicated,1435157408 +162475,4226,dark,1450619274 +162475,4226,memory,1435157412 +162475,4226,mindfuck,1450619242 +162475,4226,mystery,1450619255 +162475,4226,nonlinear,1450619217 +162475,4226,psychological,1435157393 +162475,4226,psychology,1450619257 +162475,4226,twist ending,1435157397 +162475,6880,gore,1451540205 +162475,6880,graphic violence,1451540208 +162475,6880,grimy,1451540214 +162475,6880,serial killer,1451540200 +162475,6880,slasher,1451540218 +162475,6880,violence,1451540203 +162475,7360,action,1451666599 +162475,7360,horror,1451666579 +162475,7360,post-apocalyptic,1451666572 +162475,7360,zombie,1451666574 +162475,7360,zombies,1451666571 +162475,8957,badass,1450617856 +162475,8957,clever,1450617733 +162475,8957,Disturbing,1450617607 +162475,8957,mindfuck,1450617596 +162475,8957,psychological,1450617598 +162475,8957,surprise ending,1450617592 +162475,8957,suspense,1450617735 +162475,8957,torture,1450617589 +162475,8957,twist ending,1450617584 +162475,31696,angels,1450618840 +162475,31696,demons,1450618842 +162475,31696,gothic,1450618838 +162475,31696,heaven and hell,1450618837 +162475,31696,spiritual warfare,1450618835 +162475,31696,supernatural,1450618826 +162475,31696,surreal,1450618830 +162475,38867,crime,1452460011 +162475,38867,drama,1452460014 +162475,38867,framing,1452460634 +162475,38867,gritty,1452460030 +162475,48304,brutality,1436642203 +162475,48304,Native Americans,1436642217 +162475,48394,disturbing,1437337529 +162475,48394,imagination,1437337533 +162475,55284,terrorism,1450632813 +162475,55284,torture,1450632810 +162475,65642,Nudity (Topless),1453639932 +162475,65642,time travel,1453639944 +162475,73870,global warming,1453627045 +162475,73870,infection,1453627018 +162475,73870,infestation,1453626916 +162475,73870,insects,1453626941 +162475,73870,unsettling,1453626914 +162475,74228,atmospheric,1450619479 +162475,74228,mystery,1450619471 +162475,74228,Surreal,1450619462 +162475,74228,time loop,1450619463 +162475,74228,time travel,1450619468 +162475,74228,twist ending,1450619465 +162475,74228,twists & turns,1450619467 +162475,79132,action,1450619095 +162475,79132,clever,1450619097 +162475,79132,complicated,1450619084 +162475,79132,dreams,1450619092 +162475,79132,intellectual,1450619099 +162475,79132,mindfuck,1450619080 +162475,79132,sci-fi,1450619082 +162475,79132,surreal,1450619090 +162475,79132,suspense,1450619148 +162475,79132,thought-provoking,1450619088 +162475,79132,visually appealing,1450619086 +162475,87485,comedy,1434448030 +162475,87485,love triangle,1434448050 +162475,92192,aliens,1450616736 +162475,92192,boring,1450616743 +162475,92192,conspiracy,1450616767 +162475,92192,documentary style,1450616916 +162475,92192,found footage,1450616922 +162475,92192,moon,1450616740 +162475,92192,predictable,1450616807 +162475,92192,sci-fi,1450616814 +162475,92192,space,1450616816 +162475,92192,space travel,1450616738 +162475,92192,suspense,1450616917 +162475,92259,disability,1452054377 +162475,92259,emotional,1452054367 +162475,92259,French,1452054394 +162475,92259,friendship,1452054361 +162475,92259,funny,1452054370 +162475,92259,paralysis,1452054382 +162475,92259,predictable,1452054443 +162475,92259,rich and poor,1452054379 +162475,92259,touching,1452054360 +162475,92391,found footage,1434426723 +162475,92391,horror,1434426723 +162475,92391,mental hospital,1434426723 +162475,103341,aliens,1450665633 +162475,103341,drinking,1450665640 +162475,103341,funny,1450665643 +162475,103341,pub crawl,1450665632 +162475,103341,sci-fi,1450665649 +162475,107406,dark,1451246419 +162475,107406,dystopia,1451246300 +162475,107406,dystopian,1451246343 +162475,107406,gritty,1451246377 +162475,107406,post-apocalyptic,1451246297 +162475,107406,revolution,1451246324 +162475,107406,sci-fi,1451246322 +162475,107406,social commentary,1451246305 +162475,107406,surreal,1451246302 +162475,107406,train,1451246313 +162475,107406,trains,1451246313 +162475,110591,horror,1450750501 +162475,110591,mindfuck,1450750493 +162475,110591,possession,1450750508 +162475,110591,psychological,1450750509 +162475,110591,suspenseful,1450750494 +162475,134915,clowns,1435158390 +162475,134915,disturbing,1435158390 +162475,134915,gory,1435158390 +162475,134915,grudge,1435158390 +162475,134915,horror,1435158390 +162475,134915,psychopath,1435158390 +162475,138202,comedy,1437356368 +162475,138202,jealousy,1437356368 +162475,138202,romance,1437356368 +162482,7419,surreal,1139962883 +162485,260,best movie ever,1430866729 +162485,260,sci-fi,1430866712 +162489,89753,spy,1423197149 +162499,1517,screwball,1148339591 +162499,3996,picturesque drama,1148339634 +162512,86880,Johnny Depp,1383249726 +162512,86880,pirates,1383249792 +162517,608,accent,1332263217 +162517,608,based on a true story,1332263206 +162517,608,Coen Brothers,1332263216 +162517,608,Frances McDormand,1332263216 +162517,608,funny,1332263216 +162517,608,snow,1332263213 +162517,608,Steve Buscemi,1332263217 +162517,608,violence,1332263216 +162517,750,black and white,1332262899 +162517,750,George C. Scott,1332262900 +162517,750,Peter Sellers,1332262899 +162517,750,satire,1332262900 +162517,750,silly,1332262894 +162517,750,Sterling Hayden,1332262900 +162517,750,violence,1332262896 +162517,912,music,1332262173 +162517,920,characters,1332263314 +162517,920,epic.,1332263310 +162517,920,long,1332263316 +162517,920,romance,1332263313 +162517,920,war,1332263314 +162517,923,alagory,1332262336 +162517,923,Character study,1332262339 +162517,923,cinematography,1332262339 +162517,923,news reel,1332262319 +162517,923,Orson Welles,1332262339 +162517,1206,70s,1332262462 +162517,1206,atmospheric,1332262398 +162517,1206,Direction,1332262398 +162517,1206,future,1332262451 +162517,1206,Malcolm McDowell,1332262436 +162517,1206,Stanley Kubrick,1332262398 +162517,1225,director's cut,1332261639 +162517,1333,simple,1332262097 +162517,1573,action,1372187736 +162517,1573,ridiculous,1372187716 +162517,1573,stupid,1372187731 +162517,2159,Character study,1332305585 +162517,2159,cliche,1332305576 +162517,2159,John McNaughton,1332305582 +162517,2159,music,1332305576 +162517,2159,serial killer,1332305585 +162517,2858,rape,1332261967 +162517,4500,bizarre,1332263054 +162517,4500,numbers,1332263050 +162517,4500,Peter Greenaway,1332263054 +162517,4500,quirky,1332263054 +162517,4500,supporting characters,1332263045 +162517,6001,comedians,1359433963 +162517,6001,Jerry Lewis,1359433981 +162517,6001,New York City,1359433963 +162517,6001,psychology,1359433963 +162517,6276,adventure,1373861975 +162517,6276,complicated,1373861972 +162517,6276,John Wayne,1373861975 +162517,6276,sailing,1373861972 +162517,8334,child acting,1332262688 +162517,8334,cliche,1332262685 +162517,8334,coming of age,1332262691 +162517,8334,John Wayne,1332262691 +162517,8334,the duke. john williams. western.,1332262691 +162517,8338,asia,1360472991 +162517,8338,nuns,1360472991 +162517,8338,psychology,1360472991 +162517,54999,Clive Owen,1333027614 +162517,54999,Michael Davis,1333027610 +162517,54999,parody,1333027614 +162517,54999,Paul Giamatti,1333027614 +162517,54999,silly,1333027616 +162517,56174,zombie vampire hybrid,1333037158 +162517,72011,cheesy,1339896862 +162517,72011,Deep,1339896846 +162517,72011,George Clooney,1339896850 +162517,89904,short,1332262046 +162517,91483,buddy movie,1360180300 +162517,91483,cops,1360180300 +162517,91483,corruption,1360180300 +162517,91483,hitman,1360180300 +162517,91483,Sylvester Stallone,1360180300 +162517,91485,Arnold Schwarzenegger,1351624248 +162517,91485,blood,1351624250 +162517,91485,Bruce Willis,1351624250 +162517,91485,explosions,1351624250 +162517,91485,Jean-Claude Van Damme,1351624250 +162517,91485,silly,1351624250 +162517,91485,violence,1351624250 +162517,91529,Anne Hathaway,1351629161 +162517,91529,Batman,1351629165 +162517,91529,Christian Bale,1351629161 +162517,91529,superhero,1351629161 +162517,95058,David Cronenberg,1351624155 +162517,95058,funny,1351624155 +162517,95058,hairdresser,1351624151 +162517,95058,Robert Pattinson,1351624151 +162517,95058,sexuality,1351624151 +162517,95058,strange,1351624155 +162517,95201,Alec Baldwin,1351783478 +162517,95201,clever,1351783481 +162517,95201,funny,1351783481 +162517,95201,Rome,1351783478 +162517,95201,Woody Allen,1351783481 +162517,95309,clever,1351691565 +162517,95309,emotional,1351691565 +162517,95309,Steve Carell,1351691562 +162517,95510,Andrew Garfield,1351629428 +162517,95510,remake,1351629428 +162517,95510,superhero,1351629428 +162517,95558,emotional,1351629612 +162517,95558,monsters,1351629609 +162517,95558,original,1351629612 +162517,95558,Oscar 2013,1357924250 +162517,95558,sad,1351629609 +162517,95558,Strange,1351629612 +162517,95567,Drama,1351629511 +162517,95567,Original,1351629514 +162517,95583,Acting,1351629289 +162517,95583,Crime,1351629285 +162517,95583,sex,1351629289 +162517,95583,violence,1351629285 +162517,95875,Colin Firth,1351629022 +162517,95875,science fiction,1351629022 +162517,96079,action,1353557893 +162517,96079,James Bond,1352666775 +162517,96079,Javier Bardem,1353557893 +162517,96079,stupid,1354048793 +162517,96110,funny,1351628957 +162517,96110,politics,1351628957 +162517,96110,Will Ferrell,1351628962 +162517,96110,Zach Galifianakis,1351628962 +162517,96281,Clever,1351628887 +162517,96281,ghosts,1351628890 +162517,96281,Horror,1351628890 +162517,96281,stop motion,1351628886 +162517,96417,bicycling,1351624062 +162517,96417,bikers,1351624061 +162517,96417,Joseph Gordon-Levitt,1351624055 +162517,96417,Michael Shannon,1351624062 +162517,96417,silly,1351624054 +162517,96417,thriller,1351624055 +162517,96432,alcoholism,1351623964 +162517,96432,Guy Pearce,1351623966 +162517,96432,Shia LaBeouf,1351623964 +162517,96432,Tom Hardy,1351623966 +162517,96432,violent,1351623967 +162517,96432,western,1351623966 +162517,96567,books,1351623840 +162517,96567,Bradley Cooper,1351623840 +162517,96567,Dennis Quaid,1351623840 +162517,96567,dramatic,1351623844 +162517,96567,Jeremy Irons,1351623845 +162517,96567,plagiarism,1351623840 +162517,96596,bizarre,1351623753 +162517,96596,Max von Sydow,1351623757 +162517,96596,so bad it's good,1351623757 +162517,96610,Bruce Willis,1351622073 +162517,96610,Character study,1351622073 +162517,96610,clever,1351622073 +162517,96610,Joseph Gordon-Levitt,1351622071 +162517,96610,mind bending,1351622073 +162517,96610,Rian Johnson,1351622073 +162517,96610,sci-fi,1351622071 +162517,96693,Amy Adams,1351623590 +162517,96693,cliche,1351623590 +162517,96693,Clint Eastwood,1351623590 +162517,96693,father daughter relationship,1351623590 +162517,96693,sports,1351623590 +162517,96728,Amy Adams,1351623688 +162517,96728,Character study,1351623691 +162517,96728,Joaquin Phoenix,1351623690 +162517,96728,odd,1351623688 +162517,96728,Paul Thomas Anderson,1351623691 +162517,96728,Philip Seymour Hoffman,1351623690 +162517,96728,strange,1351623690 +162517,96728,unique,1351623690 +162517,96737,action,1351623433 +162517,96737,Karl Urban,1351623430 +162517,96737,Olivia Thirlby,1351623433 +162517,96737,post-apocalyptic,1351623430 +162517,96737,sci-fi,1351623430 +162517,96821,drama,1351623503 +162517,96821,high school,1351623503 +162517,96863,confounding,1351621823 +162517,96863,creepy,1351621822 +162517,96863,John Cusack,1351621822 +162517,96863,Matthew McConaughey,1351621823 +162517,96863,Nicole Kidman,1351621822 +162517,96863,swamp,1351621823 +162517,96863,Zac Efron,1351621823 +162517,97225,Adam Sandler,1351621938 +162517,97225,Andy Samberg,1351621938 +162517,97225,animation,1351621942 +162517,97225,fun,1351621942 +162517,97225,Genndy Tartakovsky,1351621942 +162517,97225,monsters,1351621942 +162517,97225,mother daughter relationship,1351621938 +162517,97225,silly,1351621938 +162517,97304,Ben Affleck,1351621559 +162517,97304,Iran,1351621559 +162517,97304,Oscar 2013,1357924422 +162517,97304,politics,1351621553 +162517,97304,thriller,1351621559 +162517,97306,Abbie Cornish,1351621700 +162517,97306,Christopher Walken,1351621703 +162517,97306,clever,1351621703 +162517,97306,Colin Farrell,1351621703 +162517,97306,dark comedy,1351621702 +162517,97306,fun,1351621703 +162517,97306,Martin McDonagh,1351621703 +162517,97306,violent,1351621703 +162517,97306,Woody Harrelson,1351621703 +162517,97752,interesting,1351621056 +162517,97752,multiple storylines,1351621055 +162517,97752,sci-fi,1351621056 +162517,97752,Tom Hanks,1351621055 +162517,97785,demons,1351621459 +162517,97785,Horror,1351621459 +162517,97785,monsters,1351621460 +162517,97860,Brad Pitt,1354408568 +162517,97860,crime,1354408568 +162517,97860,politics,1354408568 +162517,97860,Ray Liotta,1354408573 +162517,97913,John C. Reilly,1354409250 +162517,97913,video games,1354409248 +162517,97921,Oscar 2013,1357924487 +162517,97923,alcoholism,1352001859 +162517,97923,Denzel Washington,1352001832 +162517,97923,John Goodman,1352001859 +162517,97936,drama,1354408762 +162517,97936,fantasy world,1354408762 +162517,97936,Joe Wright,1354408762 +162517,97936,Jude Law,1354408762 +162517,97936,kiera knightley,1354408756 +162517,97936,romance,1354408756 +162517,97936,Russia,1354408756 +162517,97938,animals,1353557701 +162517,97938,boat,1353557702 +162517,97938,cinematography,1353557707 +162517,97938,flashbacks,1353557701 +162517,97938,Oscar 2013,1357924632 +162517,97950,Action,1351962705 +162517,97950,badass,1351962705 +162517,97950,kung fu,1351962705 +162517,97950,RZA,1351962703 +162517,98056,Oscar 2013,1357924591 +162517,98154,biography,1353557820 +162517,98154,Daniel Day-Lewis,1353557823 +162517,98154,Oscar 2013,1357924391 +162517,98154,patriotic,1353557820 +162517,98154,racism,1353557820 +162517,98243,action,1353798386 +162517,98243,Adventure,1353798387 +162517,98243,holiday,1353798386 +162517,98243,Jude Law,1353798387 +162517,98809,adventure,1355498894 +162517,98809,Goblin,1355498899 +162517,98809,Martin Freeman,1355498894 +162517,98809,middle earth,1355498899 +162517,98809,music,1355498894 +162517,98809,orcs,1355498899 +162517,98838,Bruce Willis,1355617508 +162517,98838,gambling,1355617508 +162517,98838,Las Vegas,1355617508 +162517,98838,Vince Vaughn,1355617510 +162517,98961,Oscar 2013,1357924513 +162517,99007,romance,1359778396 +162517,99007,zombies,1359778396 +162517,99114,funny,1356567948 +162517,99114,Jamie Foxx,1356567941 +162517,99114,Leonardo DiCaprio,1356567946 +162517,99114,Oscar 2013,1357924451 +162517,99114,profanity,1356567942 +162517,99114,Quentin Tarantino,1356567942 +162517,99114,violence,1356567946 +162517,99114,western,1356567948 +162517,99117,funny,1356209597 +162517,99117,Leslie Mann,1356209594 +162517,99117,Paul Rudd,1356209597 +162517,99149,1800s,1356484251 +162517,99149,Hugh Jackman,1356484251 +162517,99149,musical,1356484282 +162517,99149,Oscar 2013,1357924710 +162517,99149,Russell Crowe,1356484251 +162517,99149,Tom Hooper,1356484251 +162517,99149,Victor Hugo,1356484251 +162517,99721,evil hillbillies,1361022195 +162517,99721,family bonds,1361022195 +162517,99721,serial killer,1361022195 +162517,99728,action,1357964130 +162517,99728,cops,1357964127 +162517,99728,gangsters,1357964127 +162517,99728,Ryan Gosling,1357964130 +162517,99728,Sean Penn,1357964130 +162517,99910,action,1358656164 +162517,99910,Arnold Schwarzenegger,1358656167 +162517,99910,cops,1358656176 +162517,99910,Johnny Knoxville,1358656167 +162517,99910,small town,1358656163 +162517,99910,thriller,1358656163 +162517,99910,western,1358656164 +162517,100083,crude humor,1359170440 +162517,100083,multiple storylines,1359170440 +162517,100108,crime,1359241028 +162517,100108,disguise,1359241028 +162517,100108,Jason Statham,1359241028 +162517,100163,action,1366255562 +162517,100163,Gemma Arterton,1366255562 +162517,100163,Jeremy Renner,1366255562 +162517,100163,steampunk,1366255562 +162517,100163,Witches,1366255562 +162517,100383,drugs,1360377111 +162517,100383,insider Trading,1360377111 +162517,100383,Jude Law,1360377111 +162517,100383,psychology,1360377111 +162517,100487,Alden Ehrenreich,1361238244 +162517,100487,Magic,1361238250 +162517,100487,romance,1361238250 +162517,100487,small town,1361238250 +162517,100498,Action,1360948637 +162517,100498,John McClane,1360948634 +162517,100498,John Moore,1360948645 +162517,100498,Russia,1360948637 +162517,100507,bromance,1362413948 +162517,100507,crude humor,1362413945 +162517,100507,Drinking,1362413948 +162517,100507,party,1362413948 +162517,101025,Ewan McGregor,1362176906 +162517,101025,Giants,1362176909 +162517,101025,knights,1362176909 +162517,101076,action,1364603382 +162517,101076,Dwayne Johnson,1364603382 +162517,101076,nuclear war,1364603382 +162517,101088,beautiful,1363563045 +162517,101088,Chan-wook Park,1363563043 +162517,101088,erotic,1363563045 +162517,101088,horror,1363563046 +162517,101088,psychology,1363563043 +162517,101285,James Franco,1364009516 +162517,101285,Look at my shit!,1364009513 +162517,101285,parody,1364009516 +162517,101285,spring break,1364009516 +162517,101360,cops,1363647455 +162517,101360,Halle Berry,1363647455 +162517,101360,revenge,1363647455 +162517,101360,serial killer,1363647455 +162517,101362,Action,1364093276 +162517,101362,Gerard Butler,1364093273 +162517,101362,patriotic,1364093273 +162517,101525,bank robbery,1365802457 +162517,101525,cops,1365802457 +162517,101525,motorcycle,1365802457 +162517,101525,Ryan Gosling,1365802457 +162517,101739,possession,1365805336 +162517,101739,remake,1365805336 +162517,102445,spock,1368822632 +162517,112183,Crazy,1415843886 +162517,115617,Animation,1415805991 +162517,115617,Coming of Age,1415805997 +162517,115617,Disney,1415805975 +162517,115617,Marvel,1415805980 +162517,115617,robots,1415805969 +162517,115617,superhero,1415805963 +162517,130490,Action,1426831761 +162517,130490,Miles Teller,1426831768 +162517,130490,Stupid,1426831757 +162517,130490,Young Adult,1426831765 +162524,318,masterpiece,1440041102 +162524,2571,sci-fi,1440041125 +162524,7153,imagination,1440041040 +162524,68954,animated,1440041086 +162524,109487,sci-fi,1440040904 +162543,63876,gay,1436089103 +162543,88810,racism,1436089132 +162543,88810,social commentary,1436089138 +162543,108041,Gay,1436089660 +162543,108041,Gay Interest,1436089663 +162543,117123,Race relations,1436089949 +162543,117123,Social commentary,1436089966 +162543,134853,Animation,1436089824 +162543,134853,childhood,1436089818 +162543,134853,creative,1436089854 +162543,134853,imaginative,1436057944 +162543,134853,psychology,1436057923 +162543,134853,San Francisco,1436089861 +162543,136906,French,1436088312 +162543,136906,Ghetto,1436088316 +162543,136906,Hope,1436088321 +162543,136908,Gay,1436089296 +162550,1197,classic,1386876256 +162570,260,classic sci-fi,1443980771 +162570,260,space adventure,1443980810 +162649,5292,Notable Nudity,1158631336 +162649,5952,best of the series so far,1156803410 +162671,5984,BDSM,1448469389 +162671,5984,Fetish,1448469382 +162683,356,bittersweet,1337298241 +162683,356,classic,1337298245 +162683,356,Oscar (Best Directing),1337298257 +162683,356,Tom Hanks,1337298252 +162683,94070,bittersweet,1337298418 +162690,260,sci-fi,1431506055 +162690,260,Star Wars,1431506069 +162690,6669,meaning of life,1433016382 +162690,6669,morality,1433016382 +162690,6669,purpose in life,1433016382 +162690,80906,corruption,1433683982 +162690,80906,economics,1433683982 +162690,80906,politics,1433683982 +162690,96829,mystery,1432229016 +162690,96829,open ending,1432229016 +162690,96829,suspense,1432229016 +162695,7791,stereotypes,1397418809 +162695,103253,plot holes,1393266615 +162697,48043,hard to understand,1271202951 +162697,48043,the music,1271202926 +162710,115973,kashmir,1415264860 +162710,115973,Shakespeare,1415264894 +162719,260,adventure,1430577615 +162719,260,Science Fiction,1430577607 +162719,2858,coming of age,1440815305 +162719,2858,Nudity (Topless),1440815313 +162719,2858,violence,1440815310 +162723,260,exciting,1440951444 +162723,260,fun,1440951450 +162739,5445,poop,1154629389 +162754,318,classic,1403415761 +162754,318,crime,1403415793 +162754,318,friendship,1403415756 +162754,318,inspirational,1403415752 +162754,318,Morgan Freeman,1403415740 +162754,318,mystery,1403415790 +162754,318,sexuality,1403415768 +162754,318,Stephen King,1403415803 +162754,318,thought-provoking,1403415747 +162754,318,twist ending,1403415745 +162754,337,bittersweet,1403415445 +162754,337,whimsical,1403415453 +162754,457,Action,1403416116 +162754,457,based on a TV show,1403416162 +162754,457,chase,1403416118 +162754,457,Chicago,1403416166 +162754,457,Harrison Ford,1403416120 +162754,457,murder,1403416170 +162754,457,Oscar Winner,1403416139 +162754,457,paranoid,1403416142 +162754,457,police investigation,1403416137 +162754,457,prison escape,1403416158 +162754,457,suspense,1403416144 +162754,457,tense,1403416134 +162754,457,thriller,1403416132 +162754,457,Tommy Lee Jones,1403416123 +162754,457,tv series,1403416173 +162754,590,adventure,1403416320 +162754,590,American Civil War,1403416278 +162754,590,bittersweet,1403416306 +162754,590,drama,1403416302 +162754,590,epic,1403416337 +162754,590,epic adventure,1403416337 +162754,590,historical,1403416298 +162754,590,Kevin Costner,1403416295 +162754,590,Oscar (Best Cinematography),1403416292 +162754,590,Oscar (Best Directing),1403416290 +162754,590,Oscar (Best Picture),1403416281 +162754,590,war,1403416283 +162754,590,western,1403416285 +162754,1197,comedy,1403415829 +162754,1197,Cult classic,1403415814 +162754,1197,fantasy,1403415824 +162754,1197,fantasy world,1403415841 +162754,1197,funny,1403415818 +162754,1197,quirky,1403415820 +162754,1197,revenge,1403415852 +162754,1197,whimsical,1403415834 +162754,1197,witty,1403415832 +162754,1259,1960s,1403415664 +162754,1259,adolescence,1403415658 +162754,1259,adventure,1403415701 +162754,1259,childhood,1403415680 +162754,1259,coming of age,1403415683 +162754,1259,Drama,1403415690 +162754,1259,friendship,1403415677 +162754,1259,INNOCENCE LOST,1403415668 +162754,1259,nostalgic,1403415670 +162754,1259,poignant,1403415674 +162754,1259,tense,1403415694 +162754,2324,bittersweet,1403415996 +162754,2324,comedy,1403416036 +162754,2324,emotional,1403416001 +162754,2324,family bonds,1403416004 +162754,2324,father-son relationship,1403415999 +162754,2324,heartwarming,1403416007 +162754,2324,Holocaust,1403416009 +162754,2324,imdb top 250,1403416044 +162754,2324,Italy,1403416032 +162754,2324,Oscar Winner,1403416013 +162754,2324,sentimental,1403416015 +162754,2324,war,1403416026 +162754,2324,whimsical,1403416021 +162754,2324,witty,1403416023 +162754,2324,World War II,1403416019 +162754,2502,business,1403415917 +162754,2502,comedy,1403415864 +162754,2502,corporate America,1403415896 +162754,2502,cult classic,1403415867 +162754,2502,funny,1403415892 +162754,2502,great soundtrack,1403415910 +162754,2502,hilarious,1403415877 +162754,2502,Jennifer Aniston,1403415899 +162754,2502,off-beat comedy,1403415882 +162754,2502,office,1403415926 +162754,2502,rebellion,1403415905 +162754,2502,revenge,1403415907 +162754,2502,satire,1403415879 +162754,5418,action,1403415276 +162754,5418,adventure,1403415313 +162754,5418,amnesia,1403415346 +162754,5418,based on a book,1403415341 +162754,5418,car chase,1403415353 +162754,5418,cia,1403415382 +162754,5418,easily confused with other movie(s) (title),1403415387 +162754,5418,Matt Damon,1403415285 +162754,5418,memory,1403415357 +162754,5418,mystery,1403415306 +162754,5418,remake,1403415335 +162754,5418,Robert Ludlum,1403415323 +162754,5418,spies,1403415420 +162754,5418,spying,1403415424 +162754,5418,survival,1403415291 +162754,5418,thriller,1403415295 +162754,5989,based on true story,1403416388 +162754,5989,biography,1403416378 +162754,5989,caper,1403416380 +162754,5989,Christopher Walken,1403416368 +162754,5989,comedy,1403416364 +162754,5989,con men,1403416370 +162754,5989,drama,1403416383 +162754,5989,funny,1403416372 +162754,5989,intelligent,1403416455 +162754,5989,smart,1403416455 +162754,5989,Steven Spielberg,1403416354 +162754,5989,Tom Hanks,1403416361 +162754,5989,true story,1403416356 +162754,5989,twists & turns,1403416358 +162754,7153,adventure,1403415938 +162754,7153,atmospheric,1403415945 +162754,7153,ensemble cast,1403415982 +162754,7153,fantasy,1403415949 +162754,7153,friendship,1403415979 +162754,7153,high fantasy,1403415973 +162754,7153,magic,1403415941 +162754,7153,multiple storylines,1403415951 +162754,7153,nature,1403415975 +162754,7153,oscar (best cinematography),1403415969 +162754,7153,Oscar (Best Directing),1403415954 +162754,7153,Oscar (Best Picture),1403415956 +162754,7153,tense,1403415961 +162754,7153,war,1403415965 +162754,7361,alternate reality,1403416242 +162754,7361,bittersweet,1403416195 +162754,7361,Charlie Kaufman,1403416267 +162754,7361,comedy,1403416237 +162754,7361,cult film,1403416239 +162754,7361,dreamlike,1403416234 +162754,7361,fantasy,1403416229 +162754,7361,imdb top 250,1403416231 +162754,7361,Kate Winslet,1403416219 +162754,7361,nonlinear,1403416227 +162754,7361,philosophy,1403416251 +162754,7361,psychology,1403416252 +162754,7361,quirky,1403416255 +162754,7361,relationships,1403416225 +162754,7361,romance,1403416222 +162754,7361,sci-fi,1403416248 +162754,7361,surrealism,1403416257 +162754,7361,thought-provoking,1403416245 +162754,30749,Africa,1403416096 +162754,30749,based on a true story,1403416054 +162754,30749,Classic,1403416066 +162754,30749,drama,1403416070 +162754,30749,genocide,1403416094 +162754,30749,history,1403416057 +162754,30749,imdb top 250,1403416106 +162754,30749,Jean Reno,1403416101 +162754,30749,survival,1403416062 +162754,30749,thriller,1403416087 +162754,30749,true story,1403416059 +162754,30749,United Nations,1403416074 +162754,30749,violence,1403416083 +162754,30749,war,1403416079 +162754,54286,action,1403416477 +162754,54286,adventure,1403416504 +162754,54286,conspiracy,1403416481 +162754,54286,espionage,1403416484 +162754,54286,imdb top 250,1403416498 +162754,54286,spy,1403416495 +162754,54286,suspense,1403416490 +162754,54286,thriller,1403416493 +162754,54286,twist ending,1403416488 +162754,57669,beautiful scenery,1403509969 +162754,57669,british comedy,1403510002 +162754,57669,drama,1403509985 +162754,57669,drugs,1403510021 +162754,57669,friendship,1403509988 +162754,57669,imdb top 250,1403509995 +162754,57669,twist ending,1403509991 +162754,57669,violence,1403510007 +162754,59369,action,1403415537 +162754,59369,action packed,1403415540 +162754,59369,CIA,1403415628 +162754,59369,crime,1403415614 +162754,59369,cynical,1403415617 +162754,59369,divorce,1403415624 +162754,59369,espionage,1403415587 +162754,59369,father daughter relationship,1403415610 +162754,59369,fight scenes,1403415580 +162754,59369,gritty,1403415570 +162754,59369,happy ending,1403415575 +162754,59369,kidnapping,1403415550 +162754,59369,Liam Neeson,1403415554 +162754,59369,Paris,1403415606 +162754,59369,prostitution,1403415604 +162754,59369,realistic,1403415560 +162754,59369,revenge,1403415556 +162754,59369,thriller,1403415599 +162754,59369,torture,1403415637 +162785,260,must see,1441528617 +162785,260,st,1441528608 +162786,1207,classic,1242755050 +162786,1207,Oscar (Best Actor),1242755061 +162786,1207,politics,1242755054 +162804,26915,sexual,1171628907 +162885,296,assassin,1254547817 +162885,296,Black comedy,1254547814 +162885,296,nonlinear,1254547827 +162885,296,Quentin Tarantino,1254547830 +162885,296,quirky,1254547832 +162885,296,Samuel L. Jackson,1254547837 +162885,2959,twist ending,1254547896 +162885,4975,Cameron Diaz,1254548061 +162885,4975,mindfuck,1254548084 +162885,4975,Tom Cruise,1254548077 +162885,58559,Gary Oldman,1254547927 +162885,71135,aliens,1270831337 +162885,71135,horror,1270831380 +162885,71135,post-apocalyptic,1270831373 +162896,1193,emotional,1413038165 +162896,1193,mental illness,1413038168 +162896,1193,Nudity (Topless),1413038170 +162896,1193,powerful ending,1413038175 +162896,1193,psychological,1413038177 +162896,1193,violence,1413038179 +162896,1298,adolescence,1413038695 +162896,1298,animation,1413038702 +162896,1298,artistic,1413038705 +162896,1298,cult film,1413038709 +162896,1298,dark,1413038711 +162896,1298,dreamlike,1413038714 +162896,1298,drugs,1413038716 +162896,1298,great soundtrack,1413038718 +162896,1298,music,1413038725 +162896,1298,social commentary,1413038732 +162896,1298,surreal,1413038731 +162896,1298,World War II,1413038734 +162896,2959,action,1413038248 +162896,2959,based on a book,1413038253 +162896,2959,dark comedy,1413038257 +162896,2959,disturbing,1413038260 +162896,2959,philosophy,1413038262 +162896,2959,quirky,1413038266 +162896,2959,social commentary,1413038270 +162896,2959,surreal,1413038272 +162896,3949,addiction,1413038352 +162896,3949,atmospheric,1413038354 +162896,3949,depressing,1413038357 +162896,3949,disturbing,1413038360 +162896,3949,drugs,1413038363 +162896,3949,loneliness,1413038367 +162896,3949,Nudity (Full Frontal),1413038373 +162896,3949,powerful ending,1413038376 +162896,3949,revenge,1413038380 +162896,3949,visually appealing,1413038382 +162896,65037,fake suicide,1413038061 +162896,65037,twist ending,1413038069 +162916,260,classic sci-fi,1436298186 +162916,260,space action,1436298287 +162916,116855,coming of age,1436298670 +162916,116855,disability,1436298670 +162916,116855,gay romance,1436298670 +162916,130628,coming of age,1436298715 +162916,130628,short,1436298736 +162940,32,Terry Gilliam,1432452143 +162940,1732,coen brothers,1432451133 +162940,2542,black comedy,1432450993 +162940,2542,dark comedy,1432450985 +162940,2542,Guy Ritchie,1432450988 +162940,2542,multiple storylines,1432450996 +162940,2762,twist ending,1432452087 +162940,94864,aliens,1432450881 +162940,94864,scifi,1432450885 +162993,34405,scifi,1190916120 +162993,71203,goretastic,1258402215 +162993,71203,killer,1258402215 +163032,1580,Will Smith,1203478813 +163032,2762,M. Night Shyamalan,1203477672 +163032,47642,based on a book,1203649526 +163032,50601,based on a book,1203649288 +163032,52604,Anthony Hopkins,1203477163 +163032,58105,based on a book,1203649504 +163044,318,Great Adaptations,1175337950 +163069,6874,action,1441085855 +163069,81847,animation,1441085735 +163069,106696,animation,1441085703 +163071,2081,cloying,1137176583 +163085,1094,Forest Whitaker,1400977069 +163085,1094,male nudity,1400977037 +163085,1094,Miranda Richardson,1400977101 +163085,1094,Stephen Rea,1400977110 +163085,2160,Camp,1388700810 +163085,2160,dreamlike,1388700826 +163085,2160,Oscar (Best Supporting Actress),1388700802 +163085,2160,paranoia,1388700815 +163085,2160,Ruth Gordon,1388700795 +163085,2160,surreal,1388700819 +163085,2413,adapted from:game,1389001465 +163085,2413,alternate endings,1389001467 +163085,2413,Christopher Lloyd,1389001483 +163085,2413,cult classic,1389001472 +163085,2413,cultural references,1389001470 +163085,2413,genre:movie as whodunit,1389001461 +163085,2413,hilarious,1389001449 +163085,2413,Madeline Kahn,1389001578 +163085,2413,murder,1389001599 +163085,2413,Tim Curry,1389001458 +163085,2413,unreliable narrators,1389001586 +163085,2550,character study,1388700583 +163085,2550,eerie,1388700566 +163085,2550,horror,1388700585 +163085,2550,paranormal,1388700588 +163085,2550,psychological,1388700570 +163085,2550,supernatural,1388700578 +163085,2550,suspense,1388700575 +163085,2810,distorted reality,1391423309 +163085,2810,disturbing,1338096983 +163085,3186,acting,1384843038 +163085,3186,book was better,1384843053 +163085,3186,changed the book TOO much,1384843136 +163085,3186,disrespectful to author,1384843102 +163085,3186,dumbed down,1384843071 +163085,3186,melodramatic,1384843021 +163085,3317,Robert Downey Jr,1384843727 +163085,3317,Tobey Maguire,1384843720 +163085,3545,adapted from:play,1386401810 +163085,3545,Berlin,1386401723 +163085,3545,broadway,1386401719 +163085,3545,classic,1386401735 +163085,3545,Dance,1386401731 +163085,3545,Germany,1386401816 +163085,3545,historical,1386401707 +163085,3545,history,1386401798 +163085,3545,musical,1386401795 +163085,3545,politics,1386401710 +163085,3545,queer,1386401713 +163085,3545,World War II,1386401716 +163085,3897,1970s,1390692768 +163085,3897,bittersweet,1390692760 +163085,3897,coming of age,1390692766 +163085,3897,humorous,1390692771 +163085,3897,journalism,1390692763 +163085,3897,rock and roll,1390692779 +163085,3897,understated,1390692783 +163085,4642,based on a play,1386151720 +163085,4642,Berlin,1386151729 +163085,4642,bittersweet,1386151747 +163085,4642,campy,1386151706 +163085,4642,classic,1386151756 +163085,4642,cult film,1386151713 +163085,4642,directorial debut,1386151752 +163085,4642,East Germany,1386151718 +163085,4642,funny,1390692664 +163085,4642,Germany,1386151708 +163085,4642,great soundtrack,1386151731 +163085,4642,musical,1386151711 +163085,4642,musicians,1386151737 +163085,4642,poignant,1386151715 +163085,4642,queer,1386151703 +163085,4642,stylized,1386151744 +163085,4642,transgender,1386151742 +163085,4642,wired 50 greatest soundtracks,1390692674 +163085,6134,bizarre,1385359475 +163085,6134,characters,1387174670 +163085,6134,choreography,1385359506 +163085,6134,eighties,1387174649 +163085,6134,feel good,1385359528 +163085,6134,funny,1385359485 +163085,6134,musical,1385359499 +163085,39183,acting,1384848529 +163085,39183,emotional,1384848538 +163085,39183,great cinematography,1384848549 +163085,39183,Heath Ledger,1384848541 +163085,39183,melancholy,1384848547 +163085,43744,Anthony Head,1383091308 +163085,44788,business,1386333940 +163085,44788,censorship,1386333972 +163085,44788,controversial,1386333938 +163085,44788,documentary,1386333936 +163085,44788,documentary critique,1386333942 +163085,44788,Hollywood,1386333932 +163085,44788,ratings system,1386333969 +163085,44788,social commentary,1386333929 +163085,44788,topic:Hollywood industry,1386333948 +163085,44788,topic:US culture,1386333945 +163085,47465,drugs,1386500228 +163085,47465,Jeff Bridges,1386500223 +163085,47465,Jodelle Ferland,1386500220 +163085,47465,Special Effects,1386500259 +163085,47465,Terry Gilliam,1386500225 +163085,47465,trippy,1386500235 +163085,47465,uncomfortable,1386500259 +163085,48744,beautiful,1386153308 +163085,48744,bisexual,1386153305 +163085,48744,controversial,1386153302 +163085,48744,depression,1386153299 +163085,48744,heartwarming,1386153311 +163085,48744,New York City,1386153281 +163085,48744,Nudity (Full Frontal - Notable),1386153284 +163085,48744,queer,1386153277 +163085,48744,relationships,1386153290 +163085,48744,social commentary,1386153287 +163085,48744,unsimulated sex scenes,1386153275 +163085,52885,bad science,1338096843 +163085,53956,Peter Dinklage,1382267039 +163085,56757,awful singing,1337419046 +163085,56757,Depp & Burton,1337419223 +163085,56757,has no soul,1337419113 +163085,56757,needlessly bleak,1337418979 +163085,56757,Sacha Baron Cohen,1337419148 +163085,56757,terrible adaptation,1337419007 +163085,63992,acting was meh,1337418326 +163085,63992,better than the book,1337418261 +163085,63992,story has no redeamable features,1337418389 +163085,74789,3D,1335486543 +163085,74789,Alan Rickman,1337419186 +163085,74789,dialogue,1387762618 +163085,74789,Helena Bonham Carter,1337419182 +163085,74789,Johnny Depp,1337419180 +163085,74789,not true to the book,1335486496 +163085,74789,soundtrack,1335486577 +163085,74789,storyline,1335486493 +163085,74789,the hatter breakdances?,1268285626 +163085,74789,Tim Burton,1337419174 +163085,74789,visuals,1268285430 +163085,78772,based on book written by a retard,1337418914 +163085,78772,made it less creepily abusive than the book,1337418946 +163085,78893,acting,1335489356 +163085,78893,audience intelligence underestimated,1335489325 +163085,78893,Bad direction,1335489336 +163085,78893,rushed,1335489354 +163085,79702,crude humor,1338096408 +163085,80549,narrative device,1384843242 +163085,80549,Patricia Clarkson,1384843329 +163085,80549,story,1384843229 +163085,82150,beautiful visuals,1337419309 +163085,82150,funny,1337419291 +163085,82150,great cinematography,1337419281 +163085,86320,apocalypse,1384842844 +163085,86320,beautiful,1384842783 +163085,86320,beautiful music,1384842858 +163085,86320,cinematography,1384842834 +163085,86320,claustrophobic,1384842789 +163085,86320,depressing,1384842791 +163085,86320,depression,1384842786 +163085,86320,end of the world,1384842850 +163085,86320,Kirsten Dunst,1384842796 +163085,86320,Magic realism,1384842811 +163085,86320,photography,1384842840 +163085,86320,siblings,1384842823 +163085,86320,surreal,1384842830 +163085,86320,twist ending,1384842808 +163085,91104,nothing happens,1337418800 +163085,91104,seems better than the book,1337418872 +163085,91104,this series is shit,1337418814 +163085,91104,unintentionally funny,1337418839 +163085,96832,mindfuck,1424989063 +163085,96832,surreal,1424989051 +163085,96832,wtf,1424989085 +163085,98193,military,1386161716 +163085,98193,relevant,1386161698 +163085,98193,social commentary,1386161711 +163085,98193,thought-provoking,1386161682 +163085,106696,animation,1388700340 +163085,106696,beautiful,1388700340 +163085,106696,characters,1388781664 +163085,106696,music,1388700381 +163085,106696,pacing,1388700422 +163085,106696,storyline,1388700402 +163085,106696,sweet,1388700346 +163085,106696,themes,1388700286 +163085,106696,unnecessary villain,1388700460 +163085,106696,voice acting,1388700340 +163085,106696,writing,1388700388 +163085,109374,cinematography,1426326774 +163085,109374,great dialogue,1426326777 +163085,109374,Ralph Fiennes,1426326766 +163085,112183,Alejandro González Iñárritu,1426326604 +163085,112183,Broadway,1426326654 +163085,112183,cinematography,1426326646 +163085,112183,compelling,1426326649 +163085,112183,Crazy,1426326586 +163085,112183,dark,1426326580 +163085,112183,emma stone,1426326611 +163085,112183,great performances,1426326546 +163085,112183,insider acting stuff,1426326616 +163085,112183,magical realism,1426326566 +163085,112183,Michael Keaton,1426326530 +163085,112183,music,1426326642 +163085,112183,one shot,1426326634 +163085,112183,psychological,1426326583 +163085,112183,satire,1426326600 +163085,112183,single shot,1426326559 +163085,112183,smart,1426326599 +163085,112183,surreal,1426326640 +163085,112183,theater,1426326664 +163085,122892,silly,1432190591 +163088,260,fun,1438269853 +163088,260,interesting,1438269847 +163101,33166,overated,1233650321 +163101,38538,high school,1237205633 +163101,38538,Kristen Stewart,1237205553 +163101,38538,RAPE & SEXUAL ABUSE,1237205614 +163101,38538,Steve Zahn,1237205574 +163101,38538,teenage angst,1237205599 +163101,38538,teenager,1237205586 +163101,48770,Chiwetel Ejiofor,1237205950 +163101,48770,Edward Furlong,1237205943 +163101,48770,internet,1237205961 +163101,48770,murder,1237205972 +163101,48770,uk,1237205979 +163125,56152,fairy tale,1234146137 +163125,56152,romance,1234146137 +163146,106782,informative,1426028656 +163146,106782,interesting,1426028656 +163146,106782,shocking,1426028656 +163147,50,excellent script,1367645612 +163147,858,masterpiece,1367645544 +163147,1089,stylish,1367645640 +163147,1704,excellent script,1367645612 +163147,2268,excellent script,1367645612 +163147,2542,stylish,1367645640 +163147,2594,original,1367645441 +163147,2762,excellent script,1367645612 +163147,3798,supernatural,1367645579 +163147,4011,stylish,1367645640 +163147,4019,mentor,1367645523 +163147,4235,multiple storylines,1363179294 +163147,4720,supernatural,1367645579 +163147,4878,original,1367645441 +163147,6952,supernatural,1367645579 +163147,7728,noir thriller,1367645497 +163147,44555,excellent script,1367645612 +163147,66156,ingenuity,1437341969 +163147,66156,plot twist,1437341969 +163147,66156,prison escape,1437341969 +163147,91782,psychology,1436378758 +163147,91782,r:violence,1436378758 +163147,91782,tormenting,1436378758 +163150,318,adapted from:book,1431048791 +163150,318,atmospheric,1431048763 +163150,318,great acting,1431048789 +163150,318,justice,1431048782 +163150,318,revenge,1431048774 +163150,318,thought-provoking,1431048770 +163150,593,cannibalism,1431049026 +163150,593,Horror,1431049029 +163150,593,investigation,1431049037 +163150,593,serial killer,1431049033 +163150,593,suspense,1431049044 +163150,593,violent,1431049052 +163150,1203,confrontational,1431054513 +163150,1203,group psychology,1431054516 +163150,1203,thought-provoking,1431054510 +163150,1704,feel-good,1431048817 +163150,1704,intelligent,1431048810 +163150,1704,mathematics,1431048825 +163150,1704,Matt Damon,1431048806 +163150,4728,absurd,1431049272 +163150,4728,hilarious,1431049265 +163150,36276,art house,1431049579 +163150,36276,french suspense,1431049580 +163150,36276,non-hollywood ending,1431049576 +163150,79592,absurd,1431049234 +163150,94959,cinematography,1431048978 +163150,94959,dreamlike,1431048994 +163150,94959,stylized,1431048980 +163150,94959,Wes Anderson,1431048960 +163150,104078,intellectual comedy,1431049362 +163150,104078,satire,1431049338 +163150,104078,smart,1431049371 +163150,115569,satire,1431049138 +163150,116797,Alan Turing,1431049425 +163150,116797,historical inaccuracy,1431049413 +163150,116797,mathematics,1431049437 +163178,260,fantasy,1440910412 +163178,260,sci-fi,1440910382 +163198,86892,foreign,1427181141 +163274,7489,comedy,1243279532 +163274,7489,Germany,1243279516 +163274,7489,holocaust,1243279525 +163274,7489,nazi,1243279528 +163274,7489,nazis,1243279530 +163274,63082,dark side of India,1243279446 +163274,63082,destiny,1243279465 +163274,63082,love,1243279467 +163274,63082,poverty,1243279478 +163274,63082,RAGS TO RICHES,1243279476 +163274,63082,torture,1243279454 +163274,63082,violence,1243279456 +163274,63876,politics,1243279406 +163274,63876,setting:San Francisco,1243279372 +163302,247,stylized,1443832151 +163302,260,practical effects,1442862320 +163302,260,sci-fi,1442862295 +163302,2594,better than the american version,1443832363 +163302,5291,samurai,1443831675 +163302,38038,Aardman,1443824120 +163302,42783,visually stunning,1443832102 +163318,260,Science Fiction,1434740402 +163318,260,Star Wars,1434740406 +163319,1047,bad ass female lead,1431483418 +163319,3550,bad ass female lead,1431483226 +163319,3996,bad ass female lead,1431483027 +163319,26674,bad ass female lead,1431483595 +163319,33679,Angelina Jolie,1431483384 +163319,33679,bad ass female lead,1431483381 +163319,37386,bad ass female lead,1431483267 +163319,37386,female warriors,1431483291 +163319,79293,Angelina Jolie,1431483350 +163319,79293,bad ass female lead,1431483055 +163319,81229,bad ass female lead,1431483452 +163319,81229,Helen Mirren,1431483461 +163319,91500,bad ass female lead,1431483092 +163319,106487,bad ass female lead,1431483118 +163319,116823,bad ass female lead,1431483135 +163373,33154,corporate crime,1388215443 +163373,33154,greed,1388215443 +163373,33154,money,1388215449 +163373,33154,white collar crime,1388215443 +163373,54881,competition,1388215382 +163373,54881,nerds,1388215389 +163373,90439,corporate crime,1388215485 +163373,90439,fun,1388215485 +163373,90439,greed,1388215485 +163373,90439,white collar crime,1388215485 +163430,48,Disney animated feature,1355703962 +163430,262,boarding school,1357058290 +163430,262,Class Differences,1357058312 +163430,262,music,1357058297 +163430,262,riches to rags,1357058334 +163430,457,Harrison Ford,1424736405 +163430,457,suspense,1424736435 +163430,457,Tommy Lee Jones,1424736403 +163430,765,Robin Williams,1383732028 +163430,765,want to see again,1383732035 +163430,903,Alfred Hitchcock,1355703836 +163430,903,Atmospheric,1355703839 +163430,903,classic,1355703841 +163430,903,twist ending,1355703845 +163430,912,atmospheric,1428430114 +163430,912,bittersweet,1428430206 +163430,912,classic,1428430102 +163430,912,Film Noir,1428430126 +163430,912,Humphrey Bogart,1428430117 +163430,912,romance,1428430142 +163430,913,atmospheric,1355704164 +163430,913,Humphrey Bogart,1355704108 +163430,1230,new york,1355703452 +163430,1230,relationships,1355703449 +163430,1230,wistful,1355703469 +163430,1230,Woody Allen,1355703444 +163430,1266,Clint Eastwood,1355703878 +163430,1266,Morgan Freeman,1355703876 +163430,1266,western,1355703872 +163430,1282,Disney,1355704206 +163430,1282,family,1355704213 +163430,1282,magical,1355704222 +163430,1380,classic,1355703358 +163430,1380,good music,1355703368 +163430,1380,John Travolta,1355703361 +163430,1485,hilarious,1426978628 +163430,1485,jim carrey,1426978619 +163430,1562,funny,1355705096 +163430,1562,silly,1355705091 +163430,1625,David Fincher,1355703685 +163430,1625,mindfuck,1355703710 +163430,1625,plot twists,1355703716 +163430,1625,suspense,1355703714 +163430,1625,twist ending,1355703688 +163430,1645,deal with the devil,1359585948 +163430,1645,supernatural,1359585931 +163430,1653,genetic engineering,1355702948 +163430,1653,sci-fi,1355702936 +163430,1704,great acting,1415050747 +163430,1704,heartwarming,1415050754 +163430,1748,noir,1355765752 +163430,2294,anti-war,1358982696 +163430,2294,capitalism,1358982689 +163430,2294,revolutionary,1358982728 +163430,2294,Woody Allen,1358982702 +163430,2403,bad acting,1358333926 +163430,2403,no reason for what is happening,1358334939 +163430,2403,script,1358333891 +163430,2403,social commentary,1358334841 +163430,2424,books,1358981375 +163430,2572,better than expected,1355704357 +163430,2572,Heath Ledger,1355704328 +163430,2572,romantic,1355704334 +163430,2726,noir,1355765707 +163430,3157,bad,1355839133 +163430,3157,hugh laurie,1355839145 +163430,3157,talking animals,1355839122 +163430,3157,talking mouse,1355839129 +163430,3994,Bruce Willis,1355704046 +163430,3994,comics,1355704048 +163430,3994,mindfuck,1355704043 +163430,3994,superhero,1355704053 +163430,3994,twist ending,1355704051 +163430,4155,Charlize Theron,1355839994 +163430,4155,cliche,1355839996 +163430,4155,Keanu Reeves,1355839991 +163430,4155,sad,1355839987 +163430,4370,artificial intelligence,1355704648 +163430,4370,Bittersweet,1355704628 +163430,4370,depressing,1355704635 +163430,4370,Jude Law,1355704651 +163430,4370,sci-fi,1355704637 +163430,4370,Steven Spielberg,1355704640 +163430,4878,sci-fi,1355703221 +163430,4896,based on a book,1355703588 +163430,4896,fantasy,1355703608 +163430,4973,atmospheric,1355698157 +163430,4973,beautifully filmed,1355698177 +163430,4973,great soundtrack,1355698175 +163430,4973,Paris,1355698165 +163430,5004,Classic,1355851673 +163430,5299,chick flick,1443561228 +163430,5299,comedy,1355704759 +163430,5299,culture clash,1443561239 +163430,5299,funny,1443561231 +163430,5299,stereotypes,1443561220 +163430,5816,alan rickman,1355704017 +163430,5816,harry potter,1355704010 +163430,5816,magic,1355704012 +163430,5991,music,1397739471 +163430,5991,musical,1397739481 +163430,6155,battle of the sexes,1355839812 +163430,6155,classic chick flick,1355839821 +163430,6155,funny,1355839828 +163430,6155,Kate Hudson,1355839814 +163430,6155,Matthew McConaughey,1355839824 +163430,6530,anoying neighbours,1356298389 +163430,6530,paranoid,1356298369 +163430,6530,weird,1356298354 +163430,6863,funny,1355943934 +163430,6863,Jack Black,1355943926 +163430,6863,music,1355943931 +163430,6863,Rock,1355943919 +163430,6863,seen more than once,1355943937 +163430,6934,ending,1355944310 +163430,6936,funny,1356796275 +163430,7317,cliche,1355853674 +163430,7317,europe,1355853689 +163430,7317,road trip,1355853684 +163430,7317,stupid americans,1355853678 +163430,7317,very funny,1355853686 +163430,7323,communism,1355698649 +163430,7323,German,1355698645 +163430,7323,romance,1355698660 +163430,7361,bittersweet,1357248483 +163430,7361,memory,1357248478 +163430,7361,nonlinear,1357248475 +163430,7361,relationships,1357248487 +163430,7361,romantic,1357248489 +163430,7438,atmospheric,1355703096 +163430,7438,Quentin Tarantino,1355703087 +163430,7438,visually appealing,1355703100 +163430,8368,harry potter,1355704392 +163430,8491,noir,1355765684 +163430,8533,beautiful scenery,1355841640 +163430,8533,CLASS DIFFERENCES,1355841630 +163430,8533,great ending,1355841637 +163430,8533,memory loss,1355841644 +163430,8533,predictable,1355841617 +163430,8533,sad,1355841650 +163430,8874,british comedy,1422566018 +163430,8874,Edgar Wright,1422566033 +163430,8874,hilarious,1422566008 +163430,8874,Simon Pegg,1444251829 +163430,8914,a good waste of 1 hour,1355838890 +163430,8914,bad science,1355838910 +163430,8914,intellectual,1355838923 +163430,8914,mindfuck,1355838967 +163430,8914,plot holes,1355839066 +163430,8914,pretentious,1355838960 +163430,8914,uncomprehensive screenplay and plot,1355838892 +163430,8949,a bit boring,1359587083 +163430,8965,3D,1358982868 +163430,27619,funny,1356889408 +163430,30707,bad ending,1359586256 +163430,31696,author:Alan Moore,1355841985 +163430,31696,heaven and hell,1355841987 +163430,31696,Keanu Reeves,1355841968 +163430,34375,balkans,1384124340 +163430,34375,food,1355842352 +163430,34375,great soundtrack,1355842348 +163430,34375,refugees,1384124395 +163430,34375,touching,1384124355 +163430,37830,anime,1355843206 +163430,37830,based on video game,1355843204 +163430,37830,confusing plot,1355843183 +163430,37830,final fantasy,1355843210 +163430,41285,clever,1355851281 +163430,41285,murder mystery,1355851288 +163430,41285,Scarlett Johansson,1355851285 +163430,41285,thrilling,1355851295 +163430,41285,twist,1355851293 +163430,42723,Disappointing,1355842083 +163430,42723,stupid,1355842104 +163430,42723,stupid stereotypes,1355842088 +163430,44761,bad noir,1355838337 +163430,44761,high school,1355838204 +163430,44761,on purpose confusing,1355838409 +163430,44761,pretentious,1355838445 +163430,44761,slow,1355838310 +163430,45668,Keanu Reeves,1355841329 +163430,45668,Sandra Bullock,1355841335 +163430,45668,time travel,1355841342 +163430,46974,9/11,1378674854 +163430,47894,civil war,1359585782 +163430,47894,scenery,1359585752 +163430,48043,alternate reality,1355943751 +163430,48043,death,1355943804 +163430,48043,dissapointment,1355943736 +163430,48043,emotional,1355943807 +163430,48043,overrated,1355943788 +163430,48043,sci-fi,1355943812 +163430,48043,time travel,1355943820 +163430,48394,atmospheric,1355704930 +163430,48394,fairy tale,1355704935 +163430,48394,history,1355704954 +163430,48394,Parallel universe,1355704951 +163430,48394,social commentary,1355704968 +163430,48394,world war II,1355704961 +163430,48997,alan rickman,1359585869 +163430,48997,dustin hoffman,1359585872 +163430,49286,better than expected,1355841234 +163430,49286,Jack Black,1355840265 +163430,49286,Jude Law,1355841229 +163430,49286,sweet,1355841239 +163430,51255,british comedy,1355838530 +163430,51255,dark comedy,1355838522 +163430,51255,funny,1355838525 +163430,51255,imdb top 250,1355838548 +163430,51255,parody,1355838533 +163430,51255,twists & turns,1355838536 +163430,52694,funny,1356052043 +163430,52694,Rowan Atkinson,1356052038 +163430,54259,Robert De Niro,1356888104 +163430,56339,depressing,1356633423 +163430,56339,fairy tale,1356633432 +163430,56339,imaginary friend,1356633445 +163430,56339,mother-son relationship,1356633448 +163430,56339,paranormal,1356633457 +163430,56782,the last scene,1359586371 +163430,56941,funny moments,1355841507 +163430,56941,irish accent,1355841497 +163430,56941,sad,1355841510 +163430,56941,self discovery,1355841503 +163430,56949,bad dialogue,1355839728 +163430,56949,insulting to women,1355839719 +163430,56949,romantic comedy,1355839732 +163430,56949,weddings,1355839714 +163430,59725,New York City,1355839558 +163430,59725,predictable,1355839575 +163430,59725,Sarah Jessica Parker,1355839552 +163430,59725,sex and the city series,1355839598 +163430,59725,wedding,1355839570 +163430,61132,couldn't finish it,1358983443 +163430,61132,not funny,1358983430 +163430,61132,Tom Cruise,1358983457 +163430,61132,tom cruise's best role!,1358983474 +163430,61250,funny,1358692238 +163430,62203,disturbing,1433266238 +163430,62203,ending,1433266226 +163430,62203,martyrdom,1433266230 +163430,62203,pretentious,1433266300 +163430,62203,torture,1433266353 +163430,62644,fascism,1359587518 +163430,62644,predictable,1359587532 +163430,63992,vampires shine!!,1356043995 +163430,64622,great acting,1360105582 +163430,64622,Kate Winslet,1360105573 +163430,68237,claustrophobic,1357248695 +163430,68237,death,1357248668 +163430,68237,depressing,1357248727 +163430,68237,melancholy,1357248710 +163430,68237,slow,1357248739 +163430,68554,bad adaptation,1359587216 +163430,68554,not faithful to the book,1359587202 +163430,68952,stupid ending,1363525245 +163430,69134,anti-feminism,1356633261 +163430,69134,atmospheric,1356633231 +163430,69134,beautiful scenery,1356633234 +163430,69134,Biblical,1356633287 +163430,69134,Lars von Trier,1356633375 +163430,69134,sexist,1356633367 +163430,69134,violence,1356633291 +163430,71108,ending,1355842216 +163430,71108,german,1355842233 +163430,71108,Michael Haneke,1355842198 +163430,71108,mystery,1355842199 +163430,71108,small town,1355842221 +163430,71108,thought-provoking,1355842201 +163430,75341,9/11,1355851089 +163430,75341,ending sucked,1355851084 +163430,75341,Robert Pattinson,1355851091 +163430,77307,ending,1356903916 +163430,80219,black comedy,1355853563 +163430,80551,About rich people without real problems,1444606100 +163430,80551,based on a book,1444606110 +163430,80551,Female middle-age angst,1444606092 +163430,80551,Julia Roberts,1444606113 +163430,81845,boring plot,1359586643 +163430,81845,king,1359586656 +163430,81845,slow,1359586618 +163430,83480,bad effects,1359332538 +163430,83480,bad plot,1359332555 +163430,83480,half bad,1359332587 +163430,83480,half movie good,1359332587 +163430,84152,cliche,1355852371 +163430,84152,entertaining,1355852379 +163430,84152,sci-fi,1355852373 +163430,84152,suspense,1355852387 +163430,84152,visually appealing,1355852377 +163430,85397,scenery,1356888221 +163430,86190,beautiful cinematography,1356887846 +163430,86190,ending,1356887834 +163430,86190,plot holes,1356887851 +163430,86190,thought there is a sequel!,1356887892 +163430,86332,funny,1355852221 +163430,86882,20's,1355851433 +163430,86882,France,1355851409 +163430,86882,interesting personalities,1355851474 +163430,86882,marion cotillard,1355851505 +163430,86882,paris,1355851418 +163430,86882,writers,1355851513 +163430,88129,action,1355764615 +163430,88129,car chase,1355764636 +163430,88129,cars,1355764639 +163430,88129,ryan gosling,1355764602 +163430,88129,tense,1355764627 +163430,88129,violence,1355764629 +163430,88129,visually appealing,1355764631 +163430,88405,Chick flick,1355839795 +163430,88405,comedy,1355839787 +163430,88405,Justin Timberlake,1355839777 +163430,88405,Mila Kunis,1355839771 +163430,88405,New York City,1355839781 +163430,88405,romance,1355839785 +163430,88405,sex,1355839782 +163430,89030,comedy horror,1444173717 +163430,89904,not original,1356887968 +163430,89904,same as other silent movies,1356887985 +163430,89904,silent,1356887949 +163430,90405,justin timberlake,1355944048 +163430,90405,plot holes,1355944055 +163430,90405,sci-fi,1355944044 +163430,90405,social commentary,1355944051 +163430,90405,unfinished universe,1355944092 +163430,90746,animation,1355852907 +163430,90746,comic book,1355852888 +163430,90746,Daniel Craig,1355852899 +163430,90746,fast paced,1355852881 +163430,90746,Steven Spielberg,1355852901 +163430,91529,Christian Bale,1355747385 +163430,91529,comic book,1355747378 +163430,91529,dark,1355747398 +163430,91529,Gary Oldman,1355747388 +163430,91529,Morgan Freeman,1355747391 +163430,92422,atmospheric,1356888312 +163430,92422,unsatisfying ending,1356888302 +163430,93840,clever,1355852806 +163430,93840,dark comedy,1355852822 +163430,93840,death/fatality,1355852831 +163430,93840,joss whedon,1355852834 +163430,93840,plot twist,1355852841 +163430,93840,satire,1355852844 +163430,93840,social commentary,1355852847 +163430,93840,witty,1355852851 +163430,94677,funny,1356051578 +163430,94677,offensive,1356051586 +163430,94677,political satire,1356051592 +163430,94864,bad casting,1363353458 +163430,94864,bad dialogue,1363353482 +163430,97225,fun,1358708938 +163430,97225,silly,1358708932 +163430,99962,must see,1358712142 +163430,100083,cast,1377946561 +163430,100083,crude humor,1377946566 +163430,100083,multiple storylines,1377946555 +163430,100083,offensive,1377946569 +163430,101728,bad bad,1365206523 +163430,104137,boring,1386723841 +163430,104137,meaningless,1386723862 +163430,104137,weird,1386724318 +163430,105197,acting,1390780414 +163430,105197,photography,1390780403 +163430,106487,acting,1385732460 +163430,106487,excellent script,1385732550 +163430,106487,revolution,1385732444 +163430,106696,animation,1420412561 +163430,106696,Disney,1420412557 +163430,106696,feminist,1420412577 +163430,106696,music,1420412596 +163430,106696,siblings,1420412574 +163430,106696,sisters,1420412580 +163430,108085,bad acting,1390780492 +163430,108085,bad science,1390780479 +163430,108085,directing,1390780530 +163430,108085,music,1390780503 +163430,108085,script,1390780519 +163430,109487,Christopher Nolan,1416148971 +163430,109487,good science,1416149003 +163430,109487,Matthew McConaughey,1416148969 +163430,109487,time-travel,1416148977 +163430,111764,anti-racism,1401653656 +163430,111764,fun,1401653640 +163430,112556,David Fincher,1413224496 +163430,112556,unpredictable,1413224510 +163430,112623,apocalyptic,1407103882 +163430,112623,genetics,1407103905 +163430,112623,sci-fi,1407103826 +163430,112623,Special Effects,1407103861 +163430,112818,fictional world,1415050678 +163430,115713,artificial intelligence,1444251524 +163430,115713,plot twist,1444251531 +163430,115713,sci-fi,1444251522 +163430,116823,realistic,1416579391 +163430,116823,revolution,1416579415 +163430,119145,british,1444251688 +163430,119145,comedy,1444251681 +163430,119145,Parody,1444251676 +163430,122882,Colourful apocalypse,1432756517 +163430,122882,feminism,1432756506 +163430,122882,photography,1432756574 +163430,122882,picture,1432756538 +163430,122882,post apocalypse,1432756513 +163430,122892,Marvel,1430570358 +163430,122892,superhero,1430570361 +163430,133771,absurdist humor,1449446449 +163430,133771,music,1449446469 +163430,134368,comedy,1446290370 +163430,134368,espionage,1446290377 +163430,134368,feminist,1446290373 +163430,134368,jude law,1446290387 +163430,134368,paris,1446290385 +163430,139913,christian clavier,1438291746 +163430,139913,original,1438291759 +163430,139915,script,1438291913 +163430,145745,mystery,1446290322 +163430,145745,tv-movie,1446290307 +163473,42730,sports,1148376120 +163487,1236,Hal Hartly,1168030351 +163487,3108,2nd worst Gilliam,1168030520 +163491,35836,steve carell,1282033743 +163503,111,New York,1448814290 +163503,111,New York City,1448814295 +163503,111,prostitution,1448814304 +163503,111,psychology,1448814306 +163523,356,different story line,1430472820 +163523,356,feel good movie,1430472820 +163523,356,interesting theme,1430472820 +163523,1240,great start for terminator series~,1430472697 +163528,318,atmospheric,1384962761 +163528,318,inspirational,1384962765 +163528,318,thought-provoking,1384962753 +163528,318,twist ending,1384962781 +163537,47,twist ending,1231638442 +163538,186,Funny,1137896942 +163538,1320,alien series,1137896741 +163538,1552,Great Actions,1137896884 +163538,2006,Funny,1137896914 +163538,2302,Funny,1137896925 +163538,2353,Great Actions,1137896886 +163538,3623,Great Actions,1137896889 +163567,68237,boring,1265528180 +163567,68237,slow paced,1265528202 +163567,98961,war,1361408975 +163577,260,haven't seen it,1438166481 +163577,260,i don't know much about it,1438166491 +163595,778,junkies,1228195797 +163595,3275,organized crime,1227928587 +163596,1704,Robin Williams,1440127069 +163596,6550,espionage,1440124685 +163596,7151,emotional,1440124585 +163596,8666,female power,1440125257 +163596,8666,superhero,1440125248 +163596,31685,chick flick,1440125502 +163596,31685,comedy,1440125507 +163596,31685,Kevin James,1440125498 +163596,31685,romantic comedy,1440125494 +163596,31685,Will Smith,1440125490 +163596,49286,Jack Black,1440124924 +163596,49286,romantic comedy,1440124920 +163596,56949,chick flick,1440124374 +163596,56949,comedy romance,1440124363 +163596,56949,romantic comedy,1440124368 +163596,56949,weddings,1440124378 +163601,741,eternal life,1448224076 +163601,741,futuristic,1448224038 +163601,27773,dark,1448223796 +163601,27773,hammer scene,1448223769 +163601,27773,octopus,1448223700 +163624,150,based on a true story,1449050256 +163624,150,drama,1449050260 +163624,150,space program,1449050266 +163624,2671,British,1449013120 +163624,2671,predictable,1449013123 +163624,2671,romance,1449013117 +163624,6942,british,1449013085 +163624,6942,funny,1449013098 +163624,6942,predictable,1449013090 +163624,92259,based on a true story,1449013019 +163624,92259,feel good movie,1449013014 +163624,92259,inspirational,1449013001 +163626,1732,black comedy,1322430349 +163626,1732,bowling,1322430138 +163626,1732,classic,1322430334 +163626,1732,Coen Brothers,1322430042 +163626,1732,comedy,1322430406 +163626,1732,crime,1322430423 +163626,1732,Cult classic,1322430339 +163626,1732,dark humor,1322430364 +163626,1732,drugs,1322430200 +163626,1732,funny,1322430559 +163626,1732,imdb top 250,1322430210 +163626,1732,Jeff Bridges,1322430579 +163626,1732,John Goodman,1322430006 +163626,1732,Julianne Moore,1322430084 +163626,1732,Marijuana,1322429979 +163626,1732,Nudity (Full Frontal),1322430432 +163626,1732,Philip Seymour Hoffman,1322429995 +163626,1732,quirky,1322430374 +163626,1732,Soundtrack,1322430222 +163626,1732,Steve Buscemi,1322430108 +163626,1732,Tara Reid,1322430289 +163626,1732,violence,1322430569 +163626,5146,dark hero,1368053532 +163626,7373,dark hero,1368053532 +163626,30810,adventure,1322431835 +163626,30810,Anjelica Huston,1322432008 +163626,30810,Bill Murray,1322431828 +163626,30810,Cate Blanchett,1322431831 +163626,30810,Cinemotography,1322431890 +163626,30810,classic,1322432151 +163626,30810,Cult Classic,1322432032 +163626,30810,dark,1322431846 +163626,30810,david bowie,1322432014 +163626,30810,deadpan,1322431850 +163626,30810,dramedy,1322432275 +163626,30810,friendship,1322432076 +163626,30810,funny,1322432255 +163626,30810,Owen Wilson,1322431855 +163626,30810,quirky,1322431874 +163626,30810,screenplay,1322432221 +163626,30810,Sigur Ros,1322432063 +163626,30810,stylized,1322432176 +163626,30810,submarine,1322432049 +163626,30810,visually appealing,1322432084 +163626,30810,Wes Anderson,1322431857 +163626,30810,whimsical,1322431950 +163626,30810,Willem Dafoe,1322432115 +163626,40583,Amanda Peet,1322430835 +163626,40583,arabic,1322431015 +163626,40583,Cast,1322430649 +163626,40583,cerebral,1322430773 +163626,40583,Christopher Plummer,1322430866 +163626,40583,CIA,1322430751 +163626,40583,directing,1322431103 +163626,40583,Edgar Award (Best Motion Picture Screenplay),1322430957 +163626,40583,Editing,1322431232 +163626,40583,foreign language,1322431005 +163626,40583,George Clooney,1322430660 +163626,40583,government,1322431058 +163626,40583,israel,1322430731 +163626,40583,Jeffrey Wright,1322431182 +163626,40583,long,1322430741 +163626,40583,Middle East,1322430704 +163626,40583,oil,1322430691 +163626,40583,Oscar (Best Supporting Actor),1322430718 +163626,40583,Political,1322430656 +163626,40583,politics,1322431199 +163626,40583,subtitles,1322430993 +163626,40583,thought-provoking,1322430708 +163626,40583,tragic,1322430784 +163626,40583,world politics,1322430806 +163626,45208,adventure,1322431279 +163626,45208,Barry Sonnenfeld,1322431334 +163626,45208,Cheryl Hines,1322431476 +163626,45208,colorado,1322431448 +163626,45208,comedy,1322431623 +163626,45208,dysfunctional family,1322431689 +163626,45208,Jeff Daniels,1322431561 +163626,45208,JoJo,1322431373 +163626,45208,Josh Hutcherson,1322431411 +163626,45208,Kristin Chenoweth,1322431544 +163626,45208,Nails On ChalkBoard Bad,1322431595 +163626,45208,nevada,1322431746 +163626,45208,not funny,1322431646 +163626,45208,Robin Williams,1322431268 +163626,45208,RV's,1322431573 +163626,45208,screenplay,1322431366 +163626,45208,utah,1322431748 +163626,45208,vacation,1322431586 +163626,60684,dark hero,1368053532 +163626,91529,dark hero,1368053532 +163626,112450,campy,1436627840 +163626,112450,David Wain,1436627817 +163630,588,animation,1223127499 +163630,60069,robots,1223127443 +163632,260,luke skywalker,1443252597 +163632,260,space opera,1443252607 +163638,84772,aliens,1432321498 +163638,84772,anti-religion,1432321513 +163638,84772,Atheism,1432321490 +163638,84772,chase,1432321526 +163638,84772,comedy,1432321509 +163638,84772,geeky,1432321494 +163638,84772,laidback,1432321508 +163638,84772,Nick Frost,1432321506 +163638,84772,Simon Pegg,1432321504 +163638,84772,supernatural powers,1432321527 +163655,260,Animated film,1438327781 +163655,260,space adventure,1438327789 +163670,3949,cinematography,1449458648 +163670,3949,dark,1449458642 +163670,3949,depressing,1449458640 +163670,3949,drug abuse,1449458657 +163670,3949,drugs,1449458638 +163670,3949,intense,1449458651 +163670,4979,black comedy,1450045899 +163670,4979,dark comedy,1450045853 +163670,4979,dark humor,1450045862 +163670,4979,deadpan,1450045879 +163670,4979,great soundtrack,1450045859 +163670,4979,stylized,1450045898 +163670,4979,suicide attempt,1450045868 +163670,26974,Bizarre,1449458551 +163670,26974,stoner rock,1449458547 +163670,26974,SUBURBAN DYSFUNCTION,1449458549 +163670,26974,surreal,1449458555 +163670,81591,creepy,1450045935 +163670,81591,dark,1450045928 +163670,81591,Darren Aronofsky,1450045932 +163670,81591,lesbians,1450045943 +163670,81591,mental illness,1450045933 +163670,81591,obsession,1450045938 +163670,81591,psychological,1450045925 +163670,81591,surreal,1450045930 +163670,81591,twist ending,1450045940 +163670,90376,disturbing,1450045715 +163670,90376,insanity,1450045717 +163670,90376,nihilism,1450045719 +163670,90376,psychological,1450045712 +163670,90376,unfitting soundtrack,1450045721 +163670,105355,bittersweet,1450045968 +163670,105355,lesbian,1450045956 +163670,105355,loneliness,1450045963 +163670,105355,realism,1450045965 +163670,105355,visually appealing,1450045966 +163670,119145,british comedy,1450045682 +163670,119145,funny,1450045688 +163670,119145,gratuitous violence,1450045686 +163670,119145,Parody,1450045690 +163670,119145,ridiculous,1450045696 +163673,260,great story,1444782091 +163673,260,space epic,1444782108 +163701,1961,Oscar (Best Picture),1229213238 +163738,260,classic sci-fi,1441690882 +163738,260,space adventure,1441690939 +163746,55247,nature wildlife,1195741730 +163746,55247,Nudity (Topless),1195741735 +163746,55247,Sean Penn,1195741739 +163746,55247,self discovery,1195741724 +163746,55247,travel,1195741732 +163757,293,Jean Reno,1319483510 +163757,67255,hackers,1319573786 +163757,67255,Michael Nyqvist,1319573778 +163757,67255,Noomi Rapace,1319573762 +163760,3208,parody,1214075727 +163760,49396,Jack Black,1214075733 +163760,49396,not very funny,1214075736 +163787,260,Creative,1437244278 +163787,260,Game changing,1437244266 +163787,260,good versus evil,1437244288 +163791,3107,Robert De Niro,1262320610 +163791,48516,Alec Baldwin,1262321098 +163791,48516,Jack Nicholson,1262321098 +163791,48516,Leonardo DiCaprio,1262321098 +163791,48516,Mafia,1262321104 +163791,68157,Brad Pitt,1262321027 +163791,68157,Quentin Tarantino,1262321013 +163791,70286,aliens,1262321123 +163791,71670,corny,1262320733 +163791,71670,plot,1262320733 +163791,71670,Sandra Bullock,1262320733 +163798,290,auckland,1156209496 +163798,32025,Mossad,1154315082 +163846,2116,creative,1188642886 +163846,2953,adventure,1188642838 +163846,4447,stupid but funny,1188642787 +163883,32525,literate,1177291528 +164001,296,bad ass,1430416774 +164001,296,classic,1430416774 +164001,296,quentin tarantino,1430416774 +164009,260,action,1444691764 +164009,260,space adventure,1444691759 +164021,260,sci-fi,1438395981 +164021,260,space adventure,1438396022 +164021,1213,crime,1438396249 +164021,1213,gangsters,1438396249 +164021,1213,violence,1438396249 +164030,260,sci-fi,1442486753 +164030,260,Star Wars,1442486768 +164030,2819,new york,1449281657 +164030,4677,bulldog,1442508563 +164030,4677,cop,1442508550 +164030,4677,dogs,1442508539 +164030,5934,samurai,1444424473 +164030,5934,sword,1444424476 +164030,5934,Toshiro Mifune,1444424481 +164030,6808,double twist,1451242213 +164030,44665,horse racing,1444734902 +164030,44665,twist ending,1444734892 +164030,56003,puzzling,1442518728 +164030,56003,surreal,1442518725 +164030,56003,underated,1442518740 +164030,56174,dystopia,1442498718 +164030,56174,New York City,1442498712 +164030,56174,sci-fi,1442498709 +164030,112183,new york,1446361933 +164030,112804,romantic,1451766507 +164030,127128,gambling,1444775122 +164030,141544,post-apocalyptic,1446924850 +164030,141912,aiport,1442517875 +164030,141912,Albuquerque,1442517897 +164030,141912,gay,1442517862 +164030,141912,layover,1442517877 +164030,141912,lesbian,1442517867 +164030,142975,action,1444409445 +164030,142975,navy,1444409434 +164030,142975,zombie,1444409421 +164030,143255,drugs,1444417543 +164030,143255,dystopia,1444417530 +164046,6760,refugee,1163553659 +164046,6760,touching,1163553683 +164060,260,Science Fiction,1434703030 +164060,260,wars,1434703039 +164063,485,campy,1166161568 +164063,1215,campy,1166161443 +164063,1241,campy,1166161413 +164063,2657,campy,1166161472 +164063,3698,campy,1166161489 +164063,5047,campy,1166161574 +164063,6664,campy,1166161453 +164063,6872,campy,1166161397 +164063,26285,campy,1166161530 +164063,42721,I don't know,1168508114 +164063,46965,campy,1166161542 +164081,1136,hilarious,1146429808 +164081,2336,not historically accurate,1146429669 +164081,2791,don't call me shirley,1146429885 +164081,48780,Scarlet Johannson,1169746786 +164156,54999,Paul Giamatti,1191353829 +164156,57274,best movie ever,1257908947 +164205,1240,Arnold Schwarzenegger,1374144643 +164205,1240,artificial intelligence,1374144649 +164205,1240,Atmosphere,1374144662 +164205,1240,darkness,1374144686 +164205,1240,sci-fi,1374144656 +164205,1240,soundtrack,1374144671 +164205,6333,action,1374144525 +164205,6333,adapted from:comic,1374144529 +164205,6333,amnesia,1374144536 +164205,6333,based on a comic,1374144538 +164205,6333,based on comic,1374144540 +164205,6333,comic book,1374144545 +164205,6333,ensemble cast,1374144551 +164205,6333,fantasy,1374144554 +164205,6333,father-son relationship,1374144557 +164205,6333,genetics,1374144561 +164205,6333,genocide,1374144565 +164205,6333,marvel,1374144569 +164205,6333,mutants,1374144580 +164205,6333,sci-fi,1374144582 +164205,6333,super-hero,1374144586 +164205,6333,superhero,1374144588 +164205,6333,superheroes,1374144601 +164205,6333,violent,1374144604 +164209,413,comedy,1186369118 +164209,2137,animation,1186369148 +164209,2137,family,1186369148 +164209,2423,comedy,1186369149 +164209,3608,comedy,1186369160 +164209,6373,comedy,1186369127 +164252,50912,amazing,1228715656 +164252,50912,minus the short story with elijah woods...that was just odd....,1228715657 +164252,56941,best love story after the notebook!!!,1228715549 +164252,60950,penelope cruz is UNBELIEVABLE in this film!,1228716267 +164266,1208,anti-war,1448329091 +164266,1208,Robert Duvall,1448329088 +164266,1960,cinematography,1448329390 +164266,1965,black comedy,1448329043 +164266,2283,cinematography,1448329308 +164266,2396,Ben Affleck,1448329143 +164266,2925,political,1448329347 +164266,4688,cinematography,1448329279 +164266,6863,feel good,1448329195 +164274,260,cult classic,1438471612 +164274,260,sci-fi,1438471546 +164274,342,ABBA,1438472700 +164274,342,Australian,1438472694 +164274,342,bittersweet,1438472713 +164274,342,excellent acting,1438472684 +164274,342,wedding,1438472672 +164274,728,1930s,1438472773 +164274,728,based on a book,1438472823 +164274,728,Classism,1438472837 +164274,728,England,1438472768 +164274,728,Funny,1438472851 +164274,728,Ian McKellen,1438472814 +164274,728,Stephen Fry,1438472826 +164274,1041,excellent acting,1438472565 +164274,1041,Mike Leigh,1438472575 +164274,1041,realism,1438472539 +164274,1041,Web of lies,1438472595 +164274,1288,Christopher Guest,1438473111 +164274,1288,cult classic,1438473105 +164274,1288,deadpan,1438473084 +164274,1288,mockumentary,1438473096 +164274,1288,rock and roll,1438473091 +164274,1288,satire,1438473088 +164274,2795,Chevy Chase,1438473223 +164274,2795,comedy,1438473237 +164274,2795,Harold Ramis,1438473230 +164274,2795,National Lampoon,1438473226 +164274,2795,Randy Quaid,1438473234 +164274,2795,road trip,1438473220 +164274,111781,action,1438471843 +164274,111781,espionage,1438471843 +164274,111781,tom cruise,1438471843 +164274,118985,Amy Adams,1438473446 +164274,118985,Christoph Waltz,1438473448 +164274,118985,Pop art,1438473457 +164274,118985,Tim Burton,1438473443 +164303,260,entertaining,1438244125 +164303,260,exciting,1438244135 +164303,260,inspiring,1438244116 +164368,260,"sf,science fiction",1439836416 +164368,260,spacecraft,1439836424 +164381,54256,less than 300 ratings,1235674751 +164394,2858,thought-provoking,1306092646 +164394,3949,prostitution,1306092610 +164394,3949,social commentary,1306092613 +164394,56782,Oscar (Best Cinematography),1306092710 +164413,296,Oscar (Best Screenplay),1145310227 +164413,5954,spike lee,1153524237 +164413,7451,overrated,1180933540 +164413,33880,unique,1145310106 +164413,39231,boring,1153440060 +164416,260,sci-fi,1439950621 +164416,260,space,1439950615 +164422,593,crime,1431055046 +164422,593,hannibal lecter,1431055046 +164422,593,suspense,1431055046 +164446,260,action,1444428006 +164446,260,Science Fiction,1444427994 +164447,1237,existensialism,1404104670 +164447,4973,feel good film,1404095626 +164447,48043,Best Movie ever,1404095039 +164447,48043,philosophical,1437169317 +164447,89759,persia,1437169459 +164447,92259,masterpiece,1404095321 +164447,109374,fantasy,1404095582 +164454,837,children,1187552903 +164454,837,comedy,1187552903 +164454,837,drama,1187552903 +164454,837,fable,1187552903 +164454,837,family,1187552903 +164454,1025,animated,1187552892 +164454,1025,children,1187552892 +164454,1025,historical,1187552892 +164454,1025,musical,1187552892 +164454,1091,comedy,1187552916 +164454,1091,gags,1187552916 +164454,1091,male,1187552916 +164454,1091,puerile,1187552916 +164454,1350,horror,1187552877 +164454,1350,thriller,1187552877 +164454,1416,Dramatic,1187552801 +164454,1416,history,1187552801 +164454,1416,musical,1187552801 +164454,2125,fairy tale,1187552789 +164454,2125,romance,1187552790 +164454,2485,romance,1187552829 +164454,2485,teenagers,1187552829 +164454,3263,comedy,1187552848 +164454,3263,drama,1187552848 +164454,3263,social message,1187552848 +164472,115991,dark comedy,1434918520 +164472,115991,japanese,1434918520 +164472,115991,psychological,1434918520 +164518,6016,brasil,1176320090 +164523,3481,music culture,1436580428 +164523,3481,romance,1436580400 +164523,4223,sad,1439147643 +164523,4223,World War II,1439147637 +164523,6373,comedy,1441864244 +164523,6373,Deep,1441864264 +164523,6373,funny,1441864234 +164523,6373,Spiritual,1441864260 +164523,6373,Uplifting,1441864262 +164523,96829,heavy,1450841718 +164523,112948,historical,1421650864 +164523,112948,untold stories,1421650864 +164523,112948,wwii,1421650864 +164523,114074,heavy,1439075174 +164523,114074,hopeful,1439075179 +164523,114074,real,1439075183 +164523,114074,suicide,1439075122 +164532,7318,Christianity,1217007068 +164538,50,funny,1450812022 +164538,50,great acting,1450812020 +164538,50,Kevin Spacey,1450812011 +164538,50,Oscar (Best Supporting Actor),1450812018 +164538,50,twist ending,1450812008 +164538,541,artificial intelligence,1450811893 +164538,541,assassin,1450811944 +164538,541,cyberpunk,1450811901 +164538,541,existentialism,1450811937 +164538,541,future,1450811941 +164538,541,robots,1450811918 +164538,541,sci-fi,1450811896 +164538,750,Stanley Kubrick,1450812081 +164552,101243,alcohol,1363256008 +164552,101243,anal sex,1363255917 +164552,101243,balkans,1363256038 +164552,101243,beautiful,1363256069 +164552,101243,boyfriend girlfriend relationship,1363314453 +164552,101243,camera,1363256063 +164552,101243,cocaine,1363256029 +164552,101243,dancing,1363256173 +164552,101243,family bonds,1363255903 +164552,101243,female nudity,1363255889 +164552,101243,girl meets boy,1363255856 +164552,101243,joint,1363256121 +164552,101243,love,1363256052 +164552,101243,marijuana,1363256096 +164552,101243,masturbation,1363255843 +164552,101243,music,1363256186 +164552,101243,party,1363255992 +164552,101243,psoting pics on the net,1363314469 +164552,101243,role playing game,1363256158 +164552,101243,school,1363255945 +164552,101243,Serbia,1363255861 +164552,101243,smoking,1363256114 +164552,101243,smoking weed,1363255835 +164552,101243,speed,1363256019 +164552,101243,teenage girl,1363255967 +164552,101243,Unsimulated Sex,1363255873 +164552,101243,voyeurism,1363255940 +164555,3478,Star is discovered,1292031092 +164571,114180,action,1426820012 +164571,114180,adventure,1426820012 +164571,114180,hunger games,1426820012 +164580,53972,die hard 4.0,1413897814 +164581,260,action,1444592156 +164581,260,Science Fiction,1444592141 +164595,102993,coming of age,1416369054 +164595,118882,coming of age,1418541660 +164595,118884,coming of age,1418541645 +164607,3360,sports,1155238607 +164609,85007,endearing,1313829903 +164609,85007,touching,1313829908 +164647,296,character,1435964861 +164647,296,flashbacks,1435964861 +164647,296,twists,1435964861 +164663,34435,Action,1432910036 +164663,34435,Gabbar,1432910040 +164663,34435,Hindi,1432910019 +164663,34435,Train Fight,1432910037 +164685,57183,Hindi,1439141280 +164685,57183,Inspirational,1439141293 +164698,1282,12,1213674309 +164710,260,action,1434039467 +164710,260,adventure,1434039485 +164743,261,Kirsten Dunst,1188185498 +164743,261,Literary Adaptation,1188185498 +164743,1188,Australian,1188185651 +164743,1188,Dancing movie,1188185651 +164743,1907,animation,1188185783 +164743,1907,Disney,1188185783 +164743,2080,Animation,1188185561 +164743,2080,Classic,1188185561 +164743,2080,Disney,1188185561 +164743,2424,Meg Ryan,1188185470 +164743,2424,Romance,1188185470 +164743,2424,Tom Hanks,1188185470 +164743,2953,childhood classic,1188185871 +164743,2953,christmas,1188185871 +164743,2953,mccaulay culkin,1188185872 +164743,2953,sequel,1188185871 +164743,3916,disney live-action,1188185830 +164743,3916,football,1188185830 +164743,3916,racial issues,1188185830 +164743,4310,romance,1188185794 +164743,4310,war drama,1188185794 +164743,5377,coming of age,1188185713 +164743,5377,Hugh Grant,1188185713 +164743,6373,Buffalo NY,1188185910 +164743,6373,Jennifer Aniston,1188185911 +164743,6373,Jim Carrey,1188185910 +164743,7147,imagination,1188185684 +164745,246,coming of age,1294855858 +164745,1225,classical music,1294855416 +164745,1914,coming of age,1294860198 +164745,1914,family bonds,1294860198 +164745,1957,religion,1294855563 +164745,2070,faith,1294855623 +164745,2070,religion,1294855593 +164745,2070,Robert Duvall,1294863246 +164745,2070,spiritual journey,1294855612 +164745,2706,sexuality,1294857634 +164745,3467,Paul Newman,1294855883 +164745,4002,John Candy,1294855044 +164745,4310,propaganda in disguise,1294857231 +164745,4718,sexuality,1294857633 +164745,6753,Robert Duvall,1294863207 +164745,8622,propaganda,1294857921 +164745,40819,Oscar (Best Actress),1294855292 +164745,65802,Kevin James,1294857569 +164745,72641,family,1294857076 +164745,72998,propaganda,1294856756 +164745,79897,character development,1294863176 +164745,79897,Robert Duvall,1294863176 +164746,296,dialogue,1425844324 +164746,296,non-linear,1425844324 +164746,296,quentin tarantino,1425844324 +164746,318,author:stephen king,1433096413 +164746,318,drama,1433096413 +164746,318,prison escape,1433096413 +164746,356,history,1428418629 +164746,356,tom hanks,1428418629 +164746,356,topic:aids/hiv,1428418629 +164746,480,dinosaurs,1437916159 +164746,480,jeff goldblum,1437916159 +164746,480,steven spielberg,1437916159 +164746,4085,action,1398615339 +164746,4085,comedy,1398615354 +164746,4085,Judge Reinhold,1398615345 +164746,4890,Peter Farrelly,1156523175 +164746,5094,Crappy Remake,1168109250 +164746,8370,R,1173525910 +164746,8370,Takeshi Kitano,1173525914 +164746,48982,Dreamworks,1173525976 +164746,48982,Wallace & Gromit,1173525970 +164746,91978,heist,1425844505 +164768,260,space epic,1444409893 +164768,260,space opera,1444409766 +164774,912,Humphrey Bogart,1225232248 +164774,30745,Takashi Miike,1225232911 +164790,2082,Emilio Estevez,1233517175 +164834,5004,Birdie num nums,1187751201 +164834,8870,bad ending,1192941362 +164842,296,characters,1421274216 +164842,296,funny,1421274216 +164842,296,violent,1421274216 +164842,133365,community,1431204353 +164842,133365,thought provaking,1431204339 +164842,133365,utopia,1431204361 +164842,133365,vincent casel,1431204333 +164850,296,crime,1426197154 +164850,296,cult film,1426197154 +164850,296,sword fight,1426197154 +164872,914,Oscar (Best Cinematography),1175785199 +164890,22,thriller,1368558321 +164890,29,dark,1368557903 +164890,31,inspirational,1368558052 +164890,47,Kevin Spacey,1241530408 +164890,47,powerful ending,1241530413 +164890,97,black and white,1385766174 +164890,97,gritty,1385766182 +164890,111,dark,1368557903 +164890,111,mental illness,1368558078 +164890,157,politics,1368558280 +164890,161,tense,1368558307 +164890,216,stupid,1368558296 +164890,235,Johnny Depp,1329144848 +164890,235,movie business,1329144850 +164890,235,Oscar (Best Supporting Actor),1329144854 +164890,440,politics,1368558281 +164890,474,tense,1368558307 +164890,519,franchise,1368558017 +164890,555,ensemble cast,1368557946 +164890,555,violent,1368558333 +164890,832,tense,1368558307 +164890,832,thriller,1368558321 +164890,861,police,1368558245 +164890,912,atmospheric,1357302041 +164890,912,based on a play,1357302004 +164890,912,Film Noir,1357302026 +164890,913,black and white,1368557829 +164890,1089,violent,1368558333 +164890,1095,ensemble cast,1368557946 +164890,1129,dark,1346512181 +164890,1129,dystopia,1346512166 +164890,1175,dark,1368557903 +164890,1203,cinematography,1427404457 +164890,1203,good dialogue,1427404444 +164890,1203,group psychology,1427404460 +164890,1206,violent,1368558333 +164890,1214,tense,1368558307 +164890,1222,Stanley Kubrick,1337152625 +164890,1222,Vietnam War,1337152618 +164890,1222,want to see again,1337152634 +164890,1228,Biography,1345556243 +164890,1228,oscar (best cinematography),1368558186 +164890,1228,Robert De Niro,1345556275 +164890,1248,black and white,1368557829 +164890,1266,oscar (best cinematography),1368558186 +164890,1287,christianity,1368557876 +164890,1357,mental illness,1368558078 +164890,1390,politics,1368558281 +164890,1396,ensemble cast,1368557947 +164890,1464,mystery,1368558096 +164890,1597,thriller,1368558321 +164890,1610,thriller,1368558321 +164890,1676,Alien Invasion,1241530504 +164890,1676,based on a book,1241530501 +164890,1676,Heinlein,1241530461 +164890,1676,satire,1241530465 +164890,1834,mystery,1368558095 +164890,1950,police,1368558245 +164890,1953,oscar (best cinematography),1368558187 +164890,1954,oscar (best cinematography),1368558186 +164890,2024,christianity,1368557877 +164890,2026,high school,1368558036 +164890,2058,tense,1368558307 +164890,2076,dark,1368557904 +164890,2160,Atmospheric,1342447139 +164890,2160,based on book,1342447120 +164890,2160,long,1342447159 +164890,2335,stupid,1368558296 +164890,2353,thriller,1368558321 +164890,2383,police,1368558245 +164890,2490,violent,1368558333 +164890,2500,high school,1368558036 +164890,2734,mental illness,1368558078 +164890,2882,nazis,1368558134 +164890,2888,high school,1368558036 +164890,2919,politics,1368558281 +164890,2944,ensemble cast,1368557947 +164890,2959,violent,1368558333 +164890,2985,violent,1368558333 +164890,3032,bad acting,1336836072 +164890,3032,last man on earth,1336836077 +164890,3032,old,1336836095 +164890,3032,Post apocalyptic,1336836079 +164890,3044,mystery,1368558095 +164890,3146,stupid,1368558296 +164890,3256,tense,1368558307 +164890,3256,thriller,1368558321 +164890,3273,franchise,1368558017 +164890,3362,Al Pacino,1344641007 +164890,3362,Atmospheric,1344640967 +164890,3362,police,1368558245 +164890,3435,black and white,1368557829 +164890,3440,franchise,1368558017 +164890,3519,nazis,1368558134 +164890,3980,inspirational,1368558052 +164890,4019,inspirational,1368558052 +164890,4034,oscar (best cinematography),1368558186 +164890,4306,pixar,1368558221 +164890,4388,stupid,1368558296 +164890,4633,black comedy,1375047337 +164890,4865,dark,1368557904 +164890,4865,mystery,1368558096 +164890,4974,stupid,1368558296 +164890,5106,high school,1368558036 +164890,5147,reflective,1355470995 +164890,5147,Victor Sjöström,1355471028 +164890,5218,pixar,1368558221 +164890,5363,high school,1368558036 +164890,5785,stupid,1368558296 +164890,5945,dark comedy,1339451773 +164890,5945,Jack Nicholson,1339451764 +164890,5945,road trip,1339451769 +164890,6016,based on a true story,1327045786 +164890,6016,black comedy,1327045790 +164890,6016,crime,1327045791 +164890,6016,dark,1327045793 +164890,6016,disturbing,1327045796 +164890,6016,multiple storylines,1327045800 +164890,6323,mystery,1368558095 +164890,6537,franchise,1368558017 +164890,6583,David Webb Peoples,1347203507 +164890,6583,post-apocalyptic,1347203489 +164890,6808,nazis,1368558134 +164890,7076,car chase,1379937407 +164890,7147,adventure,1340007059 +164890,7147,based on a book,1340007062 +164890,7147,imdb top 250,1340007092 +164890,7147,stylized,1340007041 +164890,7153,oscar (best cinematography),1368558186 +164890,7160,mental illness,1368558078 +164890,7454,Kate Beckinsale,1336502683 +164890,7454,steampunk,1336502704 +164890,7820,Christianity,1336846023 +164890,7820,good plot,1336846003 +164890,7820,Ingmar Bergman,1336846004 +164890,7820,medieval,1336846010 +164890,7820,psychology,1336846016 +164890,7820,religion,1336846021 +164890,8360,pixar,1368558220 +164890,8781,politics,1368558281 +164890,8984,Brad Pitt,1266100718 +164890,8984,Julia Roberts,1266100708 +164890,27780,Peter Dalle,1366730046 +164890,33660,inspirational,1368558052 +164890,39183,Heath Ledger,1339451685 +164890,39183,melancholy,1339451674 +164890,40412,atmospheric,1375877156 +164890,40412,British,1375877158 +164890,40412,Shane Meadows,1375877146 +164890,42004,cultural conflict,1351465138 +164890,42004,drugs,1351465151 +164890,42004,dysfunctional family,1351465141 +164890,42004,male nudity,1351465144 +164890,45635,biographical,1375046816 +164890,45635,stylized,1375046824 +164890,47629,1990s,1326797564 +164890,47629,based on a true story,1326797538 +164890,47629,England,1326797544 +164890,47629,good acting,1326797542 +164890,47629,government,1326797568 +164890,48660,Franka Potente,1371451953 +164890,48660,german,1371451979 +164890,48780,twist ending,1266160899 +164890,51540,police,1368558245 +164890,53121,franchise,1368558017 +164890,55290,police,1368558245 +164890,55908,dialogue driven,1449330209 +164890,55908,philosophical,1449330206 +164890,55908,small cast,1453504158 +164890,58803,based on a true story,1353658983 +164890,58803,mathematics,1353658958 +164890,59429,nudity (topless - notable),1368558161 +164890,59784,pixar,1368558221 +164890,60599,independent film,1351465108 +164890,60599,Zooey Deschanel,1351465089 +164890,62113,based on a book,1351000961 +164890,62113,Simon Pegg,1351000947 +164890,62293,hair,1248792878 +164890,62434,humor,1335478072 +164890,62434,watch the credits,1335478086 +164890,63113,franchise,1368558017 +164890,64034,British speaking germans,1345390343 +164890,64622,based on a book,1326965342 +164890,64622,great acting,1326965355 +164890,64622,nazis,1368558134 +164890,65802,good heart,1342447219 +164890,66097,author:Neil Gaiman,1267571456 +164890,66097,based on a book,1267571462 +164890,66097,Surreal,1267571467 +164890,67695,Unlikable protagonist,1347144423 +164890,68237,plot holes,1309644638 +164890,68237,psychology,1309644662 +164890,68237,Sci-fi,1309644665 +164890,68263,contemplative,1352112628 +164890,68941,revenge,1342446955 +164890,70286,action,1277708277 +164890,70286,cgi,1277708281 +164890,70286,directorial debut,1277708286 +164890,70286,humor,1277708307 +164890,70286,IMDB Top 250,1277708293 +164890,70286,intelligent sci-fi,1277708262 +164890,70286,peter jackson,1277708265 +164890,70286,slow paced,1277708319 +164890,70286,social commentary,1277708269 +164890,70286,thoughtful,1277708299 +164890,70286,unique,1277708272 +164890,71057,dark fantasy,1355906331 +164890,71057,dystopia,1355906291 +164890,71057,good versus evil,1355906413 +164890,71057,post-apocalyptic,1355906292 +164890,71057,visually appealing,1355906301 +164890,71057,weak characters,1355906308 +164890,71135,Ben Foster,1326797630 +164890,71135,Ending in preparation for a non existing sequel,1326797708 +164890,71135,evolution,1326797625 +164890,71135,mental illness,1326797621 +164890,71135,post-apocalyptic,1326797605 +164890,71135,space travel,1326797607 +164890,71135,twist ending,1326797616 +164890,71254,defies logic,1350550633 +164890,71254,dystopian,1350550609 +164890,71462,documentary,1364896445 +164890,71462,eye opening,1364896401 +164890,73344,cinematography,1343557973 +164890,73344,great acting,1343557976 +164890,73344,long,1343557973 +164890,74324,autism,1353658267 +164890,74324,Claire Danes,1353658222 +164890,74324,made for TV,1353658250 +164890,74324,science,1353658258 +164890,74458,mystery,1368558096 +164890,74484,ridiculous characters,1353658390 +164890,74624,atheism,1283118937 +164890,77201,not what it said on the tin,1293404862 +164890,77201,thought-provoking,1293404862 +164890,78349,dialogue driven,1375047296 +164890,78349,experiment,1375047298 +164890,78349,mindfuck,1375047300 +164890,78574,Bechdel Test:Pass,1375046991 +164890,78574,cinematography,1375046997 +164890,78574,realism,1375047000 +164890,78893,acting,1346706622 +164890,78893,childish,1346706632 +164890,79091,funny,1336509358 +164890,79091,heartwarming,1336509360 +164890,79091,visually appealing,1336509373 +164890,79695,80s nostalgia,1346512023 +164890,80831,1980s,1340268114 +164890,80831,atmospheric,1340268118 +164890,80831,dark,1340268122 +164890,80831,remake,1340268135 +164890,81164,Stereoscopic 3-D,1328529884 +164890,81535,Stereoscopic 3-D,1329145084 +164890,81847,3D,1297074846 +164890,83613,better than expected,1357302640 +164890,83613,Olivia Wilde,1357302644 +164890,83613,steampunk,1357302642 +164890,84772,aliens,1309903483 +164890,84772,Atheism,1309903477 +164890,84772,geeky,1309903490 +164890,84772,Kristen Wiig,1309903517 +164890,84772,laidback,1309903496 +164890,84772,Nick Frost,1309903530 +164890,84772,referential,1309903499 +164890,84772,Simon Pegg,1309903525 +164890,88078,post-apocalyptic,1343740019 +164890,88405,chemistry between actors,1343739625 +164890,89039,Brit Marling,1341476837 +164890,89039,characters,1341476835 +164890,89039,music,1341476848 +164890,89039,Parallels worlds,1341476841 +164890,89745,humorous,1349682846 +164890,89745,predictable,1349682878 +164890,89745,visually appealing,1349682843 +164890,89904,dogs,1398030097 +164890,89904,original,1398030075 +164890,89904,Stylised,1398030087 +164890,89904,visually appealing,1398030089 +164890,90057,ambiguous,1357302527 +164890,90057,apocalyptic,1357302529 +164890,90057,mental illness,1357302538 +164890,90057,Michael Shannon,1357302536 +164890,90249,android(s)/cyborg(s),1355471137 +164890,90249,childish,1355471127 +164890,90249,Evangeline Lilly,1355471162 +164890,90249,feel-good,1355471089 +164890,90249,Hugh Jackman,1355471124 +164890,90249,robots,1355471121 +164890,90249,sport:boxing,1355471114 +164890,90528,road trip,1357302135 +164890,91128,Hunter S. Thompson,1366729745 +164890,91128,Johnny Depp,1366729747 +164890,91273,Stylised,1328529800 +164890,91273,visually appealing,1328529803 +164890,91325,Max von Sydow,1355906145 +164890,91325,sentimental,1355906151 +164890,91325,Tom Hanks,1355906147 +164890,91485,80s nostalgia,1375876999 +164890,91622,Charlize Theron,1351465257 +164890,91622,Diablo Cody,1351465260 +164890,91622,Jason Reitman,1351465266 +164890,92259,acting,1395782747 +164890,92259,characters,1395782751 +164890,92259,funny,1395782759 +164890,92259,predictable,1395782773 +164890,92259,soundtrack,1395782781 +164890,92259,touching,1395782762 +164890,94018,aliens,1355470835 +164890,94018,special effects,1355470830 +164890,94466,dark,1448992887 +164890,94466,satire,1448992899 +164890,94466,technology,1448992893 +164890,94466,thought-provoking,1448992890 +164890,94780,Bechdel Test:Pass,1362405621 +164890,94780,charlize theron,1362405578 +164890,94780,fairy tale,1362405570 +164890,94780,fantasy,1362405568 +164890,94780,twist on classic story,1362405593 +164890,94780,visuals,1362405646 +164890,96728,Paul Thomas Anderson,1379937578 +164890,96728,Philip Seymour Hoffman,1379937566 +164890,97752,atmospheric,1386889731 +164890,97752,complicated,1386889739 +164890,97752,dystopia,1386889736 +164890,97752,multiple storylines,1386889741 +164890,97752,visually appealing,1386889747 +164890,97921,dark humor,1398030018 +164890,98239,plot holes,1375877081 +164890,98809,beautiful scenery,1366729790 +164890,98809,fantasy,1366729793 +164890,98809,Peter Jackson,1366729796 +164890,99114,Quentin Tarantino,1365758336 +164890,99114,Spaghetti Western,1365758341 +164890,99114,visually appealing,1365758344 +164890,99750,focus on the wrong parts of the book,1379937690 +164890,100083,cast,1375047240 +164890,100083,crude humor,1375047246 +164890,100083,multiple storylines,1375047237 +164890,101088,Chan-wook Park,1408361180 +164890,103075,interesting concept,1383512095 +164890,103075,wasted potential,1383512098 +164890,103249,bad adaption of the book,1400362551 +164890,104241,brutality,1388875400 +164890,104241,Chloe Moretz,1388875396 +164890,104241,comic book,1388875402 +164890,105731,based on a book,1405973207 +164890,105731,ChloÃ?« Grace Moretz,1405973197 +164890,106487,dystopia,1390824245 +164890,106487,dystopic future,1390824243 +164890,106487,Jennifer Lawrence,1390824231 +164890,106487,visually appealing,1390824228 +164890,108190,based on a book,1423404407 +164890,108190,dystopia,1423404399 +164890,108190,new society,1423404412 +164890,109374,great dialogue,1428844613 +164890,109374,hotel,1428844609 +164890,109374,stylized,1428844620 +164890,109374,visually appealing,1428844600 +164890,112183,cinematography,1453676337 +164890,112183,dark,1453676343 +164890,112183,single shot,1453676320 +164890,114662,gritty,1453072422 +164890,114662,sniper,1453072393 +164890,115713,isolation,1453503805 +164890,115713,robots,1453503787 +164890,115713,small cast,1453504290 +164890,115713,thought provoking,1453503785 +164890,115713,visual effects,1453503799 +164890,117176,science,1453504270 +164890,134130,Improvisation,1445197686 +164890,134170,80's nostalgia,1453676463 +164891,509,atmospheric,1448213547 +164891,509,beautiful,1448213544 +164891,593,based on a book,1448160130 +164891,593,excellent script,1448160109 +164891,593,mental illness,1448160125 +164891,593,Oscar (Best Actor),1448160117 +164891,593,Oscar (Best Actress),1448160123 +164891,593,Oscar (Best Picture),1448160119 +164891,593,psychothriller,1448160105 +164891,593,suspense,1448160127 +164891,1089,cult film,1448160667 +164891,1089,dark comedy,1448160665 +164891,1089,great soundtrack,1448160674 +164891,1089,multiple storylines,1448160669 +164891,1089,stylized,1448160684 +164891,1193,drama,1448159750 +164891,1193,emotional,1448159752 +164891,1193,mental illness,1448159743 +164891,1214,aliens,1448159334 +164891,1214,atmospheric,1448159340 +164891,1214,futuristic,1448159338 +164891,1214,horror,1448159327 +164891,1214,Ridley Scott,1448159325 +164891,1214,science fiction,1448159345 +164891,1214,suspense,1448159336 +164891,1214,suspenseful,1448159322 +164891,1214,thriller,1448159342 +164891,1258,atmospheric,1448160064 +164891,1258,cult film,1448160057 +164891,1258,disturbing,1448160060 +164891,1258,masterpiece,1448160066 +164891,1258,psychology,1448160062 +164891,1258,Stanley Kubrick,1448160055 +164891,1358,Memorable Characters,1448159793 +164891,1682,alternate reality,1448161768 +164891,1682,dark comedy,1448161754 +164891,1682,dystopia,1448161750 +164891,1682,mindfuck,1448161774 +164891,1682,original plot,1448161758 +164891,1682,paranoia,1448161751 +164891,1682,philosophy,1448161748 +164891,1682,social commentary,1448161755 +164891,1682,surreal,1448161764 +164891,2028,Steven Spielberg,1448213512 +164891,2232,claustrophobic,1448159465 +164891,2232,cult film,1448237253 +164891,2232,existentialism,1448159471 +164891,2232,intense,1448159457 +164891,2232,original,1448159462 +164891,2232,psychological,1448237245 +164891,2232,psychology,1448159446 +164891,2232,scifi,1448159472 +164891,2232,survival horror,1448159452 +164891,2232,thriller,1448159455 +164891,2288,claustrophobic,1448159366 +164891,2288,disturbing,1448159364 +164891,2288,horror,1448159378 +164891,2288,lovecraftian,1448159372 +164891,2288,Lovecraftian mythology,1448159387 +164891,2288,paranoia,1448159380 +164891,2571,alternate reality,1448159184 +164891,2571,cyberpunk,1448159126 +164891,2571,philosophy,1448159128 +164891,2571,post apocalyptic,1448159182 +164891,2571,science fiction,1448159186 +164891,2571,surreal,1448160882 +164891,2571,thought-provoking,1448160877 +164891,2762,enigmatic,1448172659 +164891,2762,suspense,1448172650 +164891,2762,touching,1448172655 +164891,2762,twist ending,1448172652 +164891,2762,unique,1448172662 +164891,2762,unpredictable,1448172648 +164891,2916,cyberpunk,1448159253 +164891,2916,dystopia,1448159255 +164891,2916,memory,1448159260 +164891,3355,atmospheric,1448162299 +164891,3355,Mystery,1448162292 +164891,3498,Great soundtrack,1448162460 +164891,3578,action,1448213483 +164891,3578,Epic,1448213478 +164891,3578,historical,1448213475 +164891,3578,Ridley Scott,1448213473 +164891,3578,stylized,1448213487 +164891,3578,visual,1448213481 +164891,3702,dystopia,1448160344 +164891,3702,Steampunk,1448160366 +164891,4370,dystopia,1448160452 +164891,4370,future,1448160460 +164891,4370,Steven Spielberg,1448160449 +164891,4720,alternate reality,1448159953 +164891,4720,clever,1448159956 +164891,4720,Drama,1448159965 +164891,4720,Horror,1448159957 +164891,4720,surprise ending,1448159937 +164891,4720,twist ending,1448159939 +164891,4878,cult classic,1448159696 +164891,4878,hallucinatory,1448159693 +164891,4878,jake gyllenhaal,1448159681 +164891,4878,mystery,1448159665 +164891,4878,philosophy,1448159660 +164891,4878,psychology,1448159673 +164891,4878,surreal,1448159670 +164891,4878,thought-provoking,1448159675 +164891,4878,time travel,1448159666 +164891,4878,twist ending,1448159662 +164891,4995,Drama,1448161837 +164891,4995,Education,1448161833 +164891,4995,inspirational,1448161830 +164891,4995,intelligent,1448161825 +164891,4995,Oscar (Best Picture),1448161821 +164891,4995,psychology,1448161823 +164891,4995,schizophrenia,1448161840 +164891,5618,adventure,1448161333 +164891,5618,alternate reality,1448161320 +164891,5618,dreamlike,1448161322 +164891,5618,imaginative,1448161329 +164891,5618,surreal,1448161327 +164891,5679,paranormal,1448160009 +164891,5679,suspense,1448160013 +164891,6323,multiple storylines,1448159858 +164891,6323,split personality,1448159865 +164891,6323,surreal,1448159860 +164891,6323,suspense,1448159852 +164891,6323,thriller,1448159869 +164891,6323,twist ending,1448159854 +164891,6942,ensemble cast,1448423062 +164891,6942,funny,1448423067 +164891,6942,multiple storylines,1448423046 +164891,7254,alternate reality,1448159606 +164891,7254,Bittersweet,1448159625 +164891,7254,intense,1448159613 +164891,7254,Mystery,1448159614 +164891,7254,psychology,1448159616 +164891,7254,time travel,1448159618 +164891,7254,twist ending,1448159609 +164891,8783,Beautiful,1448172586 +164891,8783,fascinating,1448172571 +164891,8783,great soundtrack,1448172560 +164891,8783,surprise ending,1448172555 +164891,8783,suspense,1448172566 +164891,8783,thought-provoking,1448172568 +164891,8783,twist ending,1448172557 +164891,8914,mindfuck,1448159507 +164891,8914,science fiction,1448159516 +164891,8914,time travel,1448159511 +164891,25771,surreal,1448173843 +164891,25771,surrealism,1448173842 +164891,31658,dreamlike,1448161266 +164891,31658,fantasy,1448161287 +164891,31658,fantasy world,1448161276 +164891,31658,Hayao Miyazaki,1448161280 +164891,31658,steampunk,1448161272 +164891,31658,Studio Ghibli,1448161268 +164891,31658,stylized,1448161283 +164891,40629,cinematography,1448212424 +164891,40629,classic,1448212433 +164891,40629,great soundtrack,1448212421 +164891,40629,Keira Knightley,1448212432 +164891,48043,artistic,1448213663 +164891,48043,emotional,1448213673 +164891,48043,inspirational,1448213671 +164891,48043,multiple storylines,1448213661 +164891,48043,philosophical,1448213665 +164891,48043,thought-provoking,1448213667 +164891,48043,visually appealing,1448213668 +164891,48304,cinematography,1448213446 +164891,48304,history,1448213443 +164891,48304,Mel Gibson,1448213440 +164891,48304,survival,1448213448 +164891,48304,suspense,1448213444 +164891,53953,scary,1448159988 +164891,53953,Stephen King,1448159985 +164891,55247,atmospheric,1448161988 +164891,55247,experience,1448161984 +164891,55247,great soundtrack,1448161992 +164891,55247,self discovery,1448161975 +164891,65642,complicated,1448159537 +164891,65642,time travel,1448159535 +164891,85414,intelligent,1448159570 +164891,85414,interesting,1448159567 +164891,85414,Jake Gyllenhaal,1448159564 +164891,85414,mindfuck,1448159581 +164891,85414,parallel universe,1448159582 +164891,85414,science fiction,1448159575 +164891,85414,suspense,1448159579 +164891,85414,thriller,1448159586 +164891,108979,jazz,1448163567 +164891,108979,Steampunk,1448163584 +164891,109487,Christopher Nolan,1448160532 +164891,109487,interesting ideea,1448160547 +164891,109487,philosophical issues,1448160541 +164891,109487,relativity,1448160538 +164891,109487,science fiction,1448160544 +164891,109487,thought-provoking,1448160531 +164891,109487,time-travel,1448160534 +164891,114935,mindfuck,1448160607 +164891,114935,thriller,1448160614 +164891,114935,time travel,1448160612 +164891,114935,twist ending,1448160608 +164895,39,comedy,1436227725 +164895,39,coming-of-age,1436227725 +164895,39,teen,1436227725 +164901,8950,Christian Bale,1451544445 +164901,8950,creepy,1451544450 +164901,8950,great acting,1451544470 +164901,8950,powerful ending,1451544437 +164901,8950,psychological,1451544461 +164901,8950,psychology,1451544881 +164901,8950,puzzle,1451544894 +164901,8950,twist ending,1451544441 +164901,48516,atmospheric,1451545137 +164901,48516,complicated plot,1451545157 +164901,48516,imdb top 250,1451545166 +164901,48516,Jack Nicholson,1451545128 +164901,48516,Leonardo DiCaprio,1451545122 +164901,48516,Mark Wahlberg,1451545153 +164901,48516,Martin Scorsese,1451545126 +164901,48516,Matt Damon,1451545131 +164901,48516,psychology,1451545145 +164901,48516,suspense,1451545143 +164901,48516,thriller,1451545162 +164901,48516,twist ending,1451545140 +164901,48516,undercover cop,1451545134 +164901,73321,action,1451545269 +164901,73321,Christianity,1451545214 +164901,73321,faith,1451545258 +164901,73321,thought-provoking,1451545223 +164901,73321,twist ending,1451545228 +164901,75985,twist ending,1451545310 +164910,1188,dance,1448200435 +164910,2571,action,1421757432 +164910,2571,computers,1421757432 +164910,2571,scifi,1421757432 +164910,3578,antiquity,1435848263 +164910,3578,roman empire,1435848263 +164910,3578,rome,1435848263 +164910,3578,russell crowe,1435848263 +164910,4973,French,1442935088 +164910,8366,religion,1435834594 +164910,8366,satire,1435834599 +164910,27815,French,1442935316 +164910,50685,domestic abuse,1432551052 +164910,55451,austen,1442934856 +164910,70521,austen,1442934980 +164910,81383,french,1442935326 +164910,81383,Romain Duris,1405958726 +164910,81383,romance,1405958720 +164910,86578,french,1442935292 +164910,89449,French,1442935439 +164910,89678,Jane Austen,1442934909 +164910,93842,french,1442934756 +164910,98056,french,1442935368 +164910,100487,Magic,1431369313 +164910,101770,family,1428245730 +164910,101770,happiness,1428245750 +164910,104906,austen,1442934846 +164910,115667,relationships,1423932532 +164910,122948,french,1442934626 +164910,126929,french,1442934784 +164910,127186,french,1442935521 +164914,260,classic,1432143290 +164914,260,scifi,1432143277 +164914,104712,drama,1432143949 +164914,104712,emotional,1432143949 +164914,104712,life lessons,1432143949 +164923,457,Veja,1223259973 +164923,608,Veja,1223259850 +164923,628,Edward Norton,1280414546 +164923,628,twist ending,1280414549 +164923,908,Veja,1223260239 +164923,910,Veja,1223260411 +164923,924,Veja,1223260054 +164923,926,Veja,1223259887 +164923,1084,Veja,1223260642 +164923,1086,Veja,1223260147 +164923,1092,Veja,1223259616 +164923,1208,Veja,1223259429 +164923,1213,mafia,1240858526 +164923,1221,mafia,1240858525 +164923,1225,Veja,1223259469 +164923,1228,Veja,1223260626 +164923,1234,Veja,1223259746 +164923,1246,Veja,1223260124 +164923,1247,Veja,1223260471 +164923,1304,Veja,1223260319 +164923,1307,Veja,1223260025 +164923,1959,Veja,1223260347 +164923,2020,Veja,1223260182 +164923,2396,Veja,1223259536 +164923,2594,Twist ending,1240858501 +164923,2739,Veja,1223260444 +164923,2921,Veja,1223260094 +164923,3006,Veja,1223260577 +164923,3091,Veja,1223259555 +164923,3362,Veja,1223260383 +164923,3408,Oscar 2000,1301164660 +164923,3702,Veja,1223259944 +164923,3897,Oscar 2000,1301164780 +164923,4017,Oscar 2000,1301164747 +164923,4226,twist ending,1240858498 +164923,4329,Veja,1223260551 +164923,4776,Oscar 2001,1301164284 +164923,4967,Oscar 2001,1301164597 +164923,4976,Oscar 2001,1301164426 +164923,5004,Veja,1223259684 +164923,5013,Oscar 2001,1301164477 +164923,5015,Oscar 2001,1301164160 +164923,5902,Oscar 2002,1301163699 +164923,5992,Oscar 2002,1301163618 +164923,6216,Oscar 2002,1301163821 +164923,6323,twist ending,1280414602 +164923,6711,Oscar 2003,1301163339 +164923,6807,Veja,1223260301 +164923,6870,Oscar 2003,1301163223 +164923,6954,Oscar 2003,1301163495 +164923,7162,Oscar 2003,1301163121 +164923,8033,Veja,1223259830 +164923,8958,Oscar 2004,1301162907 +164923,27592,revenge,1259271718 +164923,27592,violent,1259271722 +164923,39183,Oscar 2005,1301162465 +164923,40819,Oscar 2005,1301162606 +164923,42632,disturbing,1260022345 +164923,42632,revenge,1260022353 +164923,44199,bank robbery,1246380255 +164923,44199,Clive Owen,1246380247 +164923,44199,Denzel Washington,1246380261 +164923,44199,twist ending,1246380238 +164923,44204,Oscar 2005,1301162819 +164923,50445,Veja,1223259517 +164923,52281,Trash,1260104675 +164923,52283,Stephen Hopkins,1246380038 +164923,52283,twist ending,1246380165 +164923,52579,Oscar 2007,1301162097 +164923,54286,based on a book,1242132958 +164923,54286,conspiracy,1242132965 +164923,54286,Matt Damon,1242132943 +164923,54286,twist ending,1242132953 +164923,54286,week history,1242133005 +164923,55276,Oscar 2007,1301162270 +164923,56587,Jack Nicholson,1247167153 +164923,56587,Morgan Freeman,1247167157 +164923,64622,Kate Winslet,1246379961 +164923,64622,Oscar,1246379987 +164923,64622,Ralph Fiennes,1246380006 +164923,64622,Romance,1246379972 +164923,65685,Brendan Fraser,1253484755 +164923,68319,hugh jackman,1242132773 +164923,68319,superhero,1242132799 +164923,69644,3D,1247167134 +164923,69644,Animation,1246975961 +164923,70286,aliens,1256598507 +164923,70286,intelligent sci-fi,1256598506 +164928,260,classic,1439680273 +164928,260,Galaxy,1439680288 +164928,260,sci-fi,1439680278 +164928,113741,galaxy,1439680371 +164933,6776,Bollywood,1194812776 +164940,349,"action, politics",1436740928 +164940,457,"pharma industry, academia, justice",1436740620 +164940,474,"action, aging",1436740959 +164940,474,Clint Eastwood,1436740967 +164940,920,"personality, romance",1436760134 +164940,2728,"action, social struggle, slavery, deception",1436740373 +164940,5418,"action, truth",1436740828 +164940,8665,"action, compassion, conspiracy",1436740871 +164940,26043,"action, history, humanity",1436740440 +164940,54286,"action, politics",1436740798 +164946,2571,Action,1355414698 +164946,2571,cyberpunk,1355414687 +164946,2571,sci-fi,1355414695 +164946,79132,alternate reality,1355414647 +164946,79132,complicated,1355414650 +164946,79132,philosophy,1355414645 +164946,79132,sci-fi,1355414655 +164946,79132,suspense,1355414653 +164946,95510,action,1355414538 +164946,95510,comic book,1355414556 +164946,95510,Emma Stone,1355414527 +164946,95510,family friendly,1355414541 +164946,95510,nerds kicking butt,1355414550 +164946,95510,Spider-Man,1355414529 +164946,95510,superhero,1355414532 +164946,99114,Christoph Waltz,1358630750 +164946,99114,Funny,1358630727 +164946,99114,Quentin Tarantino,1358630741 +164946,99114,Samuel L. Jackson,1358630754 +164946,99114,too long,1358630734 +164946,99114,western,1358630731 +164956,296,bruce willis,1431265918 +164956,296,non-linear,1431265918 +164956,296,quentin tarantino,1431265918 +164956,541,cyberpunk,1385813480 +164956,541,dreamlike,1385813498 +164956,541,Philip K. Dick,1385813482 +164956,1527,surreal,1385813189 +164956,1748,memory,1385813606 +164956,1748,surreal,1385813574 +164956,2008,film noir,1386057151 +164956,2115,Harrison Ford,1386057270 +164956,2115,Lucas,1386057278 +164956,2115,Steven Spielberg,1386057265 +164956,2232,gore,1386059743 +164956,2232,low budget,1386059752 +164956,2232,thriller,1386059748 +164956,2600,surreal,1385813967 +164956,2712,Stanley Kubrick,1385815862 +164956,3361,Kevin Costner,1385816771 +164956,3535,Christian Bale,1386059580 +164956,3535,dark comedy,1386059577 +164956,4587,Geena Davis,1386059979 +164956,5054,Christopher Walken,1386058318 +164956,5054,memory,1386058311 +164956,5054,mysticism,1386058324 +164956,5391,Alan Arkin,1386058242 +164956,5391,nonlinear,1386058235 +164956,5604,inventor,1385813065 +164956,6537,Arnold Schwarzenegger,1386059548 +164956,8337,Fred MacMurray,1386058407 +164956,8337,Humphrey Bogart,1386058412 +164956,8910,Dustin Hoffman,1386058745 +164956,68237,Kevin Spacey,1385813511 +164956,68237,Sam Rockwell,1385813532 +164958,42734,comedy,1434498830 +164958,42734,parody,1434498830 +164958,42734,screwball comedy,1434498830 +164960,44,adapted from:game,1352033869 +164960,380,Arnold Schwarzenegger,1352034626 +164960,380,ridiculous,1352034631 +164960,1136,Monty Python,1352040033 +164960,1274,violent,1352031313 +164960,2150,natives,1352039879 +164960,2167,Marvel,1352033469 +164960,2167,vampire,1352033474 +164960,2167,vampires,1352033466 +164960,2288,alien invasion,1352034389 +164960,2288,disturbing,1352034364 +164960,2288,horror,1352034381 +164960,2455,creepy,1352034442 +164960,2455,David Cronenberg,1352034434 +164960,2959,based on a book,1352031204 +164960,2959,crime,1352031185 +164960,2959,twist ending,1352031213 +164960,2959,violence,1352031225 +164960,3147,compassionate,1352034861 +164960,3147,imdb top 250,1352034853 +164960,3147,Tom Hanks,1352034845 +164960,3258,Bruce Willis,1352039250 +164960,3258,Robert Zemeckis,1352039253 +164960,3476,Psychological horror,1352030766 +164960,3476,Vietnam War,1352030810 +164960,3476,war,1352030813 +164960,3527,Arnold Schwarzenegger,1352034497 +164960,3527,predator,1352034503 +164960,3986,Arnold Schwarzenegger,1352033758 +164960,3986,bad science,1352033772 +164960,3986,Nudity (Topless - Brief),1352033763 +164960,4011,imdb top 250,1352039555 +164960,4270,adventure,1352034091 +164960,4270,Brendan Fraser,1352034089 +164960,4367,Angelina Jolie,1352033907 +164960,4367,Girl Power,1352033924 +164960,4367,strong women,1352033912 +164960,4878,great soundtrack,1352030588 +164960,4878,satirical,1352030547 +164960,4878,superhero,1352030573 +164960,4878,thought-provoking,1352030551 +164960,4887,alternate reality,1352033717 +164960,4887,Jet Li,1352033694 +164960,4973,Jean-Pierre Jeunet,1352034889 +164960,5254,Guillermo del Toro,1352033440 +164960,5254,Marvel,1352033451 +164960,5254,vampire,1352033419 +164960,5254,vampires,1352033422 +164960,5313,Dwayne Johnson,1352034007 +164960,6157,blindness,1352032808 +164960,6157,dark,1352032829 +164960,6333,marvel,1352034277 +164960,6377,animals,1352031767 +164960,6377,children,1352031772 +164960,6377,Oscar (Best Animated Feature),1352031795 +164960,6385,feminism,1352038903 +164960,6385,feminist,1352038906 +164960,6541,steampunk,1352032887 +164960,6564,adapted from:game,1352033981 +164960,6564,Angelina Jolie,1352033969 +164960,6564,Strong Women,1352033972 +164960,6564,video game adaptation,1352033979 +164960,6774,cronenberg,1352031881 +164960,6774,David Cronenberg,1352031871 +164960,6774,surreal,1352031909 +164960,7163,Philip K. Dick,1352033794 +164960,7439,violence,1352033355 +164960,7454,Hugh Jackman,1352033534 +164960,7454,Kate Beckinsale,1352033540 +164960,7454,vampires,1352033532 +164960,7454,werewolves,1352033530 +164960,8636,marvel,1352034239 +164960,8666,female power,1352032989 +164960,8666,Halle Berry,1352032984 +164960,8861,adapted from:game,1352034127 +164960,8861,Milla Jovovich,1352034111 +164960,8861,Nudity (Topless),1352034116 +164960,8861,video game adaptation,1352034129 +164960,8861,zombies,1352034149 +164960,8874,british comedy,1352039963 +164960,8874,parody,1352039966 +164960,8874,zombie,1352039967 +164960,8957,Disturbing,1352038965 +164960,8957,mindfuck,1352038970 +164960,8957,torture,1352038981 +164960,8957,twist ending,1352038975 +164960,8985,Marvel,1352033384 +164960,8985,vampire,1352033374 +164960,31696,Keanu Reeves,1352033321 +164960,34150,Jessica Alba,1352032728 +164960,34150,Marvel,1352032757 +164960,34150,sexy female scientist,1352032733 +164960,39446,gore,1352039021 +164960,39446,mindfuck,1352039015 +164960,39446,torture,1352039018 +164960,43928,feminist,1352033592 +164960,43928,Milla Jovovich,1352033555 +164960,46530,Kevin Spacey,1352032903 +164960,47200,action packed,1352039795 +164960,51540,David Fincher,1352034939 +164960,51540,Jake Gyllenhaal,1352034937 +164960,51540,Robert Downey Jr.,1352034935 +164960,51540,Too long,1352034948 +164960,52281,Quentin Tarantino,1352040086 +164960,52722,Marvel,1352034212 +164960,54995,grindhouse,1352040068 +164960,57640,Guillermo del Toro,1352034298 +164960,57640,quirky,1352034307 +164960,60074,anti-hero,1352032603 +164960,60074,Super Hero Deconstruction,1352032598 +164960,62394,adapted from:game,1352034026 +164960,62394,video game adaptation,1352034024 +164960,64575,Drama,1352039720 +164960,68205,stupid,1352039811 +164960,68319,action,1352032676 +164960,68319,hugh jackman,1352032666 +164960,78105,adventure,1352034068 +164960,78105,Jake Gyllenhaal,1352034050 +164960,81535,franchise,1352039212 +164960,86835,cliche,1352033645 +164960,86835,vampires,1352033661 +164960,87430,colorful,1352032467 +164960,87430,PG-13,1352032388 +164960,88140,campy,1352032562 +164960,88140,retro,1352032549 +164960,92938,anti-hero,1352033193 +164960,92938,Christopher Lambert,1352033220 +164960,92938,creative,1352033206 +164969,6714,assassins,1285017636 +164969,6714,girls with guns,1285017667 +164969,6714,jealousy,1285017651 +164969,6714,Kick-Butt Women,1285018073 +164969,6714,lesbian,1285017628 +164969,6714,martial arts,1285017660 +164969,6714,revenge,1285017644 +164969,63113,Schizo-cam,1242641472 +164969,66130,Kick-Butt Women,1324923266 +164969,66130,revenge,1324923289 +164986,260,Harrison Ford,1438067213 +164986,260,jedi,1438067197 +164986,260,space adventure,1438067185 +164986,356,incredible life story,1438067618 +164986,356,tom hanks,1438067618 +164986,356,vietnam war,1438067618 +165012,527,jews,1211575708 +165012,527,Oskar Schindler,1211575708 +165012,527,saved,1211575708 +165012,527,Spielberg,1211575708 +165012,527,WW2,1211575708 +165024,296,cult classic,1435296276 +165024,296,r:strong language,1435296276 +165024,296,r:violence,1435296276 +165042,21,forgetable,1364252233 +165042,147,Not moving,1312926358 +165042,198,Angela Bassett,1278348740 +165042,198,cyberpunk,1278348737 +165042,198,futuristic,1278348837 +165042,198,gay,1278348743 +165042,198,mindfuck,1278348746 +165042,198,New Year 1999,1278348748 +165042,198,Ralph Fiennes,1278348751 +165042,198,virtual reality,1278348757 +165042,215,conversation,1325697311 +165042,215,generation X,1325697313 +165042,233,Atom Egoyan,1322438515 +165042,233,uncompromising,1322438560 +165042,296,Black comedy,1289417166 +165042,296,cult film,1289417163 +165042,296,drugs,1289417171 +165042,296,nonlinear,1289417174 +165042,296,notable soundtrack,1289417177 +165042,296,Quentin Tarantino,1289417181 +165042,296,Samuel L. Jackson,1289417179 +165042,296,stylized,1289417184 +165042,345,character development,1312152536 +165042,345,eyesore,1312152514 +165042,345,gender identity,1312152490 +165042,345,Guy Pearce,1312152493 +165042,345,road movie,1312152500 +165042,345,unusual,1312152506 +165042,377,exciting,1311633821 +165042,539,Bill Pullman,1288982825 +165042,539,boring,1288982799 +165042,539,journal writing,1288982808 +165042,539,Meg Ryan,1288982821 +165042,539,Tom Hanks,1288982815 +165042,541,beautiful effects,1316406464 +165042,541,Film-noir without any real clues or detective work,1316406554 +165042,562,adolescence,1289417097 +165042,562,poignant,1289417075 +165042,562,quirky,1289417054 +165042,562,Ugly main character,1289417108 +165042,562,unsettling,1289417085 +165042,923,Amazing Cinematography,1289417525 +165042,923,Innovative,1289417578 +165042,923,Story worth telling,1289417555 +165042,1049,adventure,1363673562 +165042,1049,hollywoodization,1363673550 +165042,1049,true story,1363673555 +165042,1062,Michael Cimino,1367257984 +165042,1079,Dated,1317615119 +165042,1079,John Cleese,1317615096 +165042,1079,Kevin Kline,1317615097 +165042,1079,silly,1317615110 +165042,1079,Superior acting,1317615102 +165042,1193,mental illness,1289417259 +165042,1198,action,1287080270 +165042,1198,adventure,1287080235 +165042,1198,archaeology,1287080234 +165042,1198,biblical,1287080286 +165042,1198,Harrison Ford,1287080276 +165042,1213,anti-hero,1289417281 +165042,1213,good dialogue,1289417272 +165042,1213,gritty,1289417283 +165042,1232,art,1289417137 +165042,1232,deliberate,1289417140 +165042,1232,existentialism,1289417132 +165042,1232,masterpiece,1289417144 +165042,1232,Russian,1289417142 +165042,1232,slow,1289417148 +165042,1232,Totalitarianism,1289417152 +165042,1234,depression,1331012940 +165042,1234,heist,1331012943 +165042,1234,holds up well,1331012964 +165042,1245,hard boiled main character,1306703439 +165042,1245,literate,1306703442 +165042,1245,Prohibition,1306703453 +165042,1245,stylized,1306703446 +165042,1245,twists & turns,1306703450 +165042,1265,humorous,1312300429 +165042,1265,time loop,1312300432 +165042,1288,deadpan,1312927024 +165042,1304,great chemistry,1319036654 +165042,1304,repetitive sequences,1319036682 +165042,1304,strong first act,1319036707 +165042,1304,too witty,1319036729 +165042,1304,weak ending,1319036695 +165042,1305,deliberate,1263325754 +165042,1305,Nastassja Kinski,1263325765 +165042,1305,Wim Wenders,1263325773 +165042,1594,90s cynicisim,1294564005 +165042,1594,Amorality,1294563989 +165042,1617,complex,1357142873 +165042,1617,Kevin Spacey,1357142878 +165042,1617,Kim Basinger,1357142867 +165042,1617,suspense,1357142885 +165042,2005,80s,1329372525 +165042,2005,blah,1329372536 +165042,2005,Loud,1329372558 +165042,2005,Stereotypical fat character,1329372576 +165042,2628,child acting,1329161528 +165042,2628,epic final battle,1329161521 +165042,2628,Excessive CGI,1329161543 +165042,2628,great soundtrack,1329161497 +165042,2628,Unfunny,1329161574 +165042,2734,Harrison Ford,1311963242 +165042,2734,rain forest,1311963250 +165042,2734,unusual story,1311963260 +165042,2770,So funny,1312927423 +165042,2861,Sam Raimi,1301685196 +165042,2867,cheesy,1303773120 +165042,2867,Chris Sarandon,1303773117 +165042,2867,outdated,1303773124 +165042,2916,Arnold Schwarzenegger,1287079383 +165042,2916,cyberpunk,1287079368 +165042,2959,cynical,1289417310 +165042,2959,narrated,1289417307 +165042,2959,social commentary,1289417316 +165042,2959,twist ending,1289417320 +165042,3038,Elia Kazan,1303229595 +165042,3038,WORK ETHICS,1303229586 +165042,3317,coming of age,1289417013 +165042,3317,funny,1289417016 +165042,3317,Michael Douglas,1289416993 +165042,3317,Overlooked,1289417037 +165042,3317,Robert Downey Jr,1289417022 +165042,3317,school drama,1289417025 +165042,3317,writing,1289417009 +165042,3421,outdated,1312926976 +165042,3481,cliches,1320645712 +165042,3481,dated,1320645744 +165042,3481,overrated,1320645723 +165042,3481,quirky,1320645733 +165042,3528,beautifully filmed,1375591963 +165042,3528,melodramatic,1375591923 +165042,3528,Mullets everywhere,1375592042 +165042,3528,Nick Nolte,1375591894 +165042,3528,Overlong,1375591912 +165042,3528,Sense of humour,1375592207 +165042,3528,Uneven,1375592530 +165042,3623,altered tone,1337101339 +165042,3623,cheesy,1337101344 +165042,3852,Donal Logue,1307720259 +165042,3852,fashion,1307720263 +165042,3852,New Mexico,1307720261 +165042,3852,off-beat comedy,1307720329 +165042,3852,plain storyline,1307720269 +165042,3858,queer,1312927038 +165042,4016,funny,1310063132 +165042,5026,disappointing,1397327272 +165042,5056,Based on a documented event,1289417405 +165042,5056,Conception of the world,1289417426 +165042,5056,deliberate,1289417373 +165042,5056,Logic,1289417435 +165042,5056,Werner Herzog,1289417371 +165042,5073,classic,1358142411 +165042,5258,David Gordon Green,1302738870 +165042,5258,Ebert: 4 stars,1302738884 +165042,5954,9/11 Fixation,1293397221 +165042,5954,powerful ending,1293397199 +165042,6001,Martin Scorsese,1273427170 +165042,6001,quirky,1273427156 +165042,6001,Robert De Niro,1273427148 +165042,6001,STALKERS,1273427184 +165042,6016,Brazil,1289417483 +165042,6016,drugs,1289417486 +165042,6016,great soundtrack,1289417491 +165042,6016,Pacey,1289417518 +165042,6016,true story,1289417494 +165042,6297,black comedy,1310063660 +165042,6297,curse,1310063662 +165042,6307,John Frankenheimer,1302816841 +165042,6572,Alicia Silverstone,1288983011 +165042,6572,multiple storylines,1288983018 +165042,6572,Rachael Leigh Cook,1288983022 +165042,6572,stupid,1288983020 +165042,6612,wrongful imprisonment,1303229719 +165042,6724,Great Depression,1302300312 +165042,6724,Peter Bogdanovich,1302300314 +165042,6733,Manoel De Oliveira,1220633355 +165042,6867,loneliness,1316407037 +165042,6867,Peter Dinklage,1316407050 +165042,6957,surprisingly funny,1311699155 +165042,6966,not funny,1322781120 +165042,6966,Sam Raimi,1322781126 +165042,7235,extravagant,1303774026 +165042,7235,makeup effects,1303774033 +165042,7301,Robert Bresson,1298677212 +165042,7360,remake,1364252005 +165042,7416,retirees,1302300561 +165042,7872,virginity,1220633513 +165042,8690,Great music,1304292621 +165042,8690,Nerd fantasy,1304292609 +165042,8690,Photo,1304292646 +165042,8690,Uneven,1304292634 +165042,8852,Peter O'Toole,1220241194 +165042,8866,chick-flick,1301685267 +165042,8866,tennis,1301685270 +165042,8879,Agatha Christie,1302560356 +165042,8879,Sidney Lumet,1302560364 +165042,26150,long,1300981959 +165042,26158,sexual discovery,1226946299 +165042,26614,*NOT* Matt Damon,1301096694 +165042,26614,easily confused with other movie(s) (title),1301096699 +165042,26614,made for TV,1301096702 +165042,27831,Phony romance,1338263987 +165042,27866,Journalist,1220241080 +165042,31270,Cronenber debut,1219429265 +165042,33162,bad chemistry,1312219140 +165042,33162,beautiful cinematography,1312219091 +165042,33162,Bland lead actor,1312219179 +165042,33162,Director's cut is a must,1312219114 +165042,33162,underrated,1312219100 +165042,33270,no soundtrack,1288984342 +165042,33270,static camera,1288984346 +165042,33660,boxing,1335654686 +165042,33660,great depression,1335654684 +165042,34063,Michael Caine,1220240973 +165042,34063,robbery,1220240995 +165042,34530,Rob Schneider,1282259825 +165042,34530,sausage fest,1282259829 +165042,35957,Cillian Murphy,1302791623 +165042,35957,non-horror,1302791630 +165042,36517,beautiful,1289417446 +165042,36517,british,1289417448 +165042,36517,conspiracy,1289417451 +165042,36517,corruption,1289417453 +165042,36517,gritty,1289417455 +165042,36517,Oscar (Best Supporting Actress),1289417459 +165042,39421,Erik von Detten,1281742964 +165042,39421,porn,1281742960 +165042,39421,"teen ""gross-out"" comedy",1281742968 +165042,44397,Alexandre Aja,1302883248 +165042,44397,mutation,1302883252 +165042,44840,David Spade,1282259765 +165042,44840,Rob Schneider,1282259768 +165042,44840,underdogs,1282259777 +165042,45003,Creepy,1302883031 +165042,45003,Thai original,1302883018 +165042,47610,Paul Giamatti,1295303082 +165042,48394,Art-design,1289417249 +165042,48394,atmospheric,1289417197 +165042,48394,brilliant photography,1289417230 +165042,48394,stylized,1289417204 +165042,48394,surreal,1289417209 +165042,48414,Some good moments,1310063483 +165042,49856,elegant,1309544037 +165042,49856,Intriguing,1309543907 +165042,49856,lesbian subtext,1309543909 +165042,49856,low stakes for a suspense drama,1309544018 +165042,52241,Heist,1302817086 +165042,52241,Joseph Gordon-Levitt,1302817078 +165042,52495,Dustin Hoffman,1298166313 +165042,52495,implausible romance,1298165707 +165042,52495,lead performance,1298165685 +165042,53460,Shia LaBeouf,1304999462 +165042,54910,dark humor,1323663109 +165042,54910,original,1323663139 +165042,54910,underexposed,1323663124 +165042,54910,underrated,1323663120 +165042,55232,cheaply made,1364948976 +165042,55232,stupid,1364948809 +165042,55288,good but depressing,1294554985 +165042,55288,guilt,1294554990 +165042,55288,hit and run,1294554986 +165042,55288,Joaquin Phoenix,1294554992 +165042,55288,Mark Ruffalo,1294554994 +165042,55872,Unreal dialogue,1225690996 +165042,58047,cute,1300898544 +165042,58047,disappointing child acting,1300898522 +165042,58047,Kevin Kline,1300898531 +165042,58047,overlong,1300898527 +165042,58047,Rachel Weisz,1300898573 +165042,58381,touching,1303230246 +165042,58381,uneven,1303230225 +165042,58559,Poorly casted lead actress,1318371128 +165042,59369,bad writing,1311633854 +165042,59369,Liam Neeson,1311633859 +165042,59369,revenge,1311633857 +165042,60069,classic,1318371382 +165042,60069,romance,1318371379 +165042,60069,touching,1318371396 +165042,60333,Philosophical,1263326263 +165042,60333,scenic,1263326265 +165042,60333,Werner Herzog,1263326267 +165042,60684,Lousy sex scenes,1318371304 +165042,60684,Unfairly panned by fanboys,1318371332 +165042,60983,Jesus dances with Buddha,1289417324 +165042,60983,Rarely addressed topic,1289417350 +165042,61319,black and white,1362445759 +165042,61319,teenagers,1362446149 +165042,61449,multiple storylines,1288982747 +165042,62511,Catherine Keener,1275931813 +165042,62511,Charlie Kaufman,1275931810 +165042,62511,difficult,1275931807 +165042,62511,Philip Seymour Hoffman,1275931826 +165042,62511,Theater,1275931799 +165042,63859,hollywood ending,1310063099 +165042,63859,walt disney,1310063109 +165042,64032,foul,1335129882 +165042,65514,distorted representation of history,1351183835 +165042,65514,Wing Chun,1351183847 +165042,67997,James Gandolfini,1266605519 +165042,67997,satire,1266605523 +165042,68194,based on true story,1267408338 +165042,68194,british,1267408340 +165042,68194,Leeds United,1267408361 +165042,68237,directorial debut,1267470152 +165042,68237,psychology,1267470141 +165042,68237,Sam Rockwell,1267470129 +165042,68237,slow paced,1267470134 +165042,68848,funny,1303277441 +165042,68848,interesting characters,1303277389 +165042,68848,overlong,1303277430 +165042,68848,Rinko Kikuchi,1303277394 +165042,68952,Alison Lohman,1295367466 +165042,68952,Physical conditions subtext,1295367482 +165042,68952,tongue-in-cheek,1295367446 +165042,68954,friendship,1290020195 +165042,68954,Opening sequence,1290020158 +165042,68954,Pointless action,1290020146 +165042,68954,predictable,1290020189 +165042,68954,touching,1290020120 +165042,68954,Weak third act,1290020130 +165042,69438,lead performance,1303230285 +165042,69438,slightly surreal,1303230290 +165042,69757,attachment disorder,1286733363 +165042,69757,humorous,1286733372 +165042,69757,overrated,1286733349 +165042,69757,quirky,1286733351 +165042,69988,great acting,1323883563 +165042,69988,improvisation,1323884223 +165042,69988,not much of an ending,1323883705 +165042,69988,not particularly beliveable,1323883582 +165042,69988,pornography,1323883711 +165042,71033,Argentina,1329973510 +165042,71033,beautiful,1329973505 +165042,71033,excellent script,1329973502 +165042,71033,Outstanding lead performance,1329973737 +165042,71211,photography,1324424356 +165042,71211,price fixing,1324424362 +165042,71264,funny,1373301342 +165042,71264,quirky,1373301347 +165042,71264,Silly,1373301350 +165042,71379,low budget,1288762254 +165042,71379,over-hyped,1288762221 +165042,71379,remade ending,1288762224 +165042,71379,scary,1288762250 +165042,71379,unrealistic,1288762228 +165042,71579,1960s,1283203421 +165042,71579,coming of age,1283203433 +165042,71579,Emma Thompson,1283203437 +165042,71579,London,1283203445 +165042,72731,based on a book,1318369070 +165042,72731,beautiful scenery,1318369010 +165042,72731,Cute afterlife makes dying almost desirable,1318369803 +165042,72731,Omits crucial passages from the book,1318369203 +165042,72731,Stanley Tucci,1318369012 +165042,72731,Wife leaves family for no reason,1318369116 +165042,72998,3d,1262291690 +165042,72998,dances with wolves retelling,1262291699 +165042,72998,incredible 3D,1262291705 +165042,72998,superficial plot,1262291707 +165042,72998,visual,1262291715 +165042,73017,predictable,1335208194 +165042,73266,animation,1308609218 +165042,73266,funny,1308609206 +165042,73266,good pace,1308609229 +165042,73266,Hipsters,1308609272 +165042,73266,Unrealistic plot,1308609263 +165042,73266,unrelatable characters,1308609239 +165042,74458,Ben Kingsley,1282542965 +165042,74458,Leonardo DiCaprio,1282542961 +165042,74458,Mark Ruffalo,1282542939 +165042,74458,plot twist,1282542955 +165042,74458,Predictable,1282542941 +165042,74458,whiney,1282542975 +165042,74545,black humour,1286390227 +165042,74545,Ending,1286390237 +165042,74545,Ewan McGregor,1286390215 +165042,74545,Roman Polanski,1286390221 +165042,74545,slow,1286390250 +165042,74545,weak plot,1286390224 +165042,74754,broken english,1345322302 +165042,74754,so bad it's good,1345322306 +165042,74754,unintentional comedy,1345322311 +165042,74789,based on a book,1278348669 +165042,74789,Helena Bonham Carter,1278348672 +165042,74789,Johnny Depp,1278348676 +165042,74789,Lewis Carroll,1278348705 +165042,74789,Reimagining,1278348686 +165042,74789,Reinventing book world,1278348680 +165042,74789,Stephen Fry,1278348663 +165042,74789,visuals,1278348689 +165042,74789,weird,1278348695 +165042,74946,formulaic,1286047957 +165042,76093,adventure,1313506072 +165042,76251,11 year old explicit violence,1274059233 +165042,76251,comic book,1274059251 +165042,76251,high school,1274059776 +165042,76251,humorous,1274059761 +165042,76251,pop culture references,1274059258 +165042,76317,ambiguous ending,1326124891 +165042,76317,Christina Ricci,1326124703 +165042,76317,death,1326124712 +165042,76317,hit-and-miss,1326124724 +165042,76317,justin long,1326124746 +165042,77364,audience intelligence underestimated,1303828753 +165042,77364,Based on a comic book,1303828794 +165042,77364,fast paced,1303828819 +165042,77364,Idris Elba,1303828756 +165042,77364,Jason Patric,1303828843 +165042,77364,Pathetic main villian performance,1303828854 +165042,77364,Weak dialogue,1303828779 +165042,77561,bad science,1305651897 +165042,77561,lacks tension,1305651930 +165042,77561,Overpowered hero,1305651967 +165042,77561,Sam Rockwell,1305651903 +165042,77561,Wasted villain,1305651984 +165042,77667,exagerated stupidity,1287341466 +165042,77795,German,1312493264 +165042,77795,space travel,1312493271 +165042,78088,Realistic ending,1398628202 +165042,78088,wasted potential,1398628196 +165042,78266,bad acting,1290363747 +165042,78266,Daring,1290363807 +165042,78266,experiments gone awry,1290363758 +165042,78266,genetics,1290363760 +165042,78266,original plot,1290363795 +165042,78266,overdone opening for sequel,1290363771 +165042,78266,Smart,1290363893 +165042,78266,Unjustified twists,1290363873 +165042,78499,Joan Cusack,1290020058 +165042,78499,score,1290020085 +165042,78499,tear jerker,1290020077 +165042,78499,Tom Hanks,1290020080 +165042,78517,sloppy research,1310428072 +165042,78517,worshipful,1310427983 +165042,79057,childish plot,1300898260 +165042,79057,Topher Grace,1300898265 +165042,79057,Topher Grace is the worst actor ever,1300898393 +165042,79091,young target audience,1282762727 +165042,79132,dream within a dream,1281146013 +165042,79132,mindfuck,1281145995 +165042,79132,multiple interpretations,1281146004 +165042,79132,plot holes,1312300523 +165042,79132,visually appealing,1281146001 +165042,79293,Angelina Jolie,1287079289 +165042,79293,sleeper agent,1287079287 +165042,79293,Soviet Union,1287079303 +165042,79428,miniature sets,1293396868 +165042,79428,painfully heteronormative,1293396877 +165042,79428,RemakeOf:The Dinner Game (1989),1293396886 +165042,79702,fast-paced,1294052591 +165042,79702,unlikable characters,1294052638 +165042,79702,visually appealing,1294052596 +165042,80241,Drew Barrymore,1288982532 +165042,80241,Ron Livingston,1288982523 +165042,80463,adapted from:book,1293502771 +165042,80463,facebook,1293502786 +165042,80463,writing,1293502796 +165042,80489,acting,1293397067 +165042,80489,action,1293396988 +165042,80489,Criminal = good Police = bad,1293397041 +165042,80489,one dimensional characters except for Affleck. Ending trite.,1293396958 +165042,80489,Reasonable dialogue,1293397090 +165042,80489,unoriginal,1293396998 +165042,80549,Emma Stone,1291044879 +165042,80549,funny dialogues,1291044869 +165042,80549,lies,1291044875 +165042,80549,Stanley Tucci,1291044886 +165042,80549,Unreal reactions,1291044935 +165042,80551,About rich people without real problems,1289416414 +165042,80551,Abuse of closeups,1289416629 +165042,80551,based on a book,1289416490 +165042,80551,Every foreigner is a wiseman,1289416513 +165042,80551,"Fancy resorts disguised as ""exotic"" locations",1289416450 +165042,80551,Female middle-age angst,1289416720 +165042,80551,India,1289416645 +165042,80551,Italy,1289416494 +165042,80551,Julia Roberts,1289416466 +165042,80551,Leaves rich handsome man meets new rich handsome man,1289416830 +165042,80551,overlong,1289416925 +165042,80551,patronizing american tourists,1289416533 +165042,80551,"Phony ""epifanies""",1289416607 +165042,80551,preachy,1289416361 +165042,80551,scenery,1289416478 +165042,80551,whiney protagonist,1289416375 +165042,80906,investor corruption,1308070419 +165042,80906,overlong,1308070427 +165042,81018,not for kids,1325529260 +165042,81018,silent movie,1325529263 +165042,81229,contrived,1311633923 +165042,81229,heavy on cameos,1311633939 +165042,81229,John Malkovich,1311633952 +165042,81516,intriguing,1335589599 +165042,81516,no one to root for,1335589607 +165042,81537,Robert Downey Jr.,1298571150 +165042,81562,danny boyle,1302300180 +165042,81562,James Franco,1302300183 +165042,81562,Sigur Ros,1302300191 +165042,81562,true story,1302300196 +165042,81591,Clint Mansell,1297900169 +165042,81591,Melodrama over true drama,1297900213 +165042,81591,overrated,1297900180 +165042,81591,Shock and drop,1297900184 +165042,81591,visceral,1297900186 +165042,81591,Winona Ryder,1297900190 +165042,81834,based on a book,1290480405 +165042,81834,Final chapter,1290480363 +165042,81834,Overlong,1290480393 +165042,81834,Pacey,1290480350 +165042,81834,Rupert Grint,1290480325 +165042,81845,complex characters,1300898651 +165042,81845,excess of close-ups,1300898673 +165042,81845,feel-good,1300898799 +165042,81845,great performances,1300898662 +165042,81845,predictable,1300898665 +165042,82167,happy ending,1298570888 +165042,82167,interesting plot about pharmaceutics leads nowhere,1298570922 +165042,82167,Laughs,1298571048 +165042,82167,Likeable main character,1298571060 +165042,82167,Smarter than average rom-com,1298571078 +165042,82167,takes place in 1996 but everything seems,1298570986 +165042,82167,ultimately cliched,1298571036 +165042,82167,wastes every oportunity to be memorable,1298571015 +165042,82459,camerawork,1311183124 +165042,82459,humorless,1311183227 +165042,82459,Jeff Bridges,1311183130 +165042,82459,straight-faced,1311183337 +165042,82459,Western,1311183345 +165042,82461,daft punk,1294052702 +165042,82461,Protagonist excels in everything just because he's rich and handsome,1294089792 +165042,82667,revenge fantasy,1302883209 +165042,83134,fun,1329792058 +165042,83134,misunderstandings,1329792050 +165042,84152,cinematography,1303940742 +165042,84152,doesn't resist to some cliches,1303940812 +165042,84152,entertaining,1303940781 +165042,84152,lifeless supporting characters,1303941071 +165042,84152,Message,1303941098 +165042,84152,unfinished storyline,1303941144 +165042,84392,a couple of well-thought surprises break the formula,1310741439 +165042,84392,acting,1310741358 +165042,84392,interesting,1310741294 +165042,84392,lawyers,1310741339 +165042,84392,stereotypical,1310741310 +165042,84772,Seth Rogen,1312925586 +165042,84944,check out extended version,1310741701 +165042,84944,falls apart in the last third,1310741675 +165042,84944,great voice acting,1310741740 +165042,84944,quirky style,1310741642 +165042,84944,starts out original,1310741682 +165042,85022,predictable,1312926863 +165042,85414,intelligent,1311632283 +165042,85414,plot holes,1311633102 +165042,85414,powerful ending,1311632295 +165042,85414,science fiction,1311632302 +165042,85414,thin mysteries,1311632470 +165042,85414,Weak third act,1311632320 +165042,85788,cliche,1323636724 +165042,85788,gore-free,1323636726 +165042,85788,no CGI,1323636735 +165042,85788,scary,1323636740 +165042,85788,uneven,1323636744 +165042,85788,weird,1323636746 +165042,85881,elder care,1316406641 +165042,85881,Mad coincidence - boy just happens to be a wrestling star,1316406876 +165042,85881,realistic wrestling,1316406645 +165042,86142,feudal japan,1303773519 +165042,86332,funny,1304999405 +165042,86332,Kenneth Branagh,1304999420 +165042,86332,limited in scope,1305652026 +165042,86332,predictable,1304999412 +165042,86332,unmemorable antagonists,1305652040 +165042,86347,not a movie,1324424543 +165042,86852,unreal ending,1332747780 +165042,86852,Unreal reactions,1332747783 +165042,86882,literate,1320385638 +165042,86882,thought-provoking,1320385625 +165042,86882,whimsical,1330991902 +165042,86882,Woody Allen,1320385646 +165042,86882,writers,1330992325 +165042,86911,boring,1320037759 +165042,86911,tries too hard,1320037772 +165042,86911,unlikable characters,1320037740 +165042,87181,bitter ending,1342631426 +165042,87181,mindfuck,1342630836 +165042,87181,Plot twists,1342630809 +165042,87181,well-acted,1342631415 +165042,87192,fun enough,1318370668 +165042,87192,Monster design is good not great,1318370440 +165042,87192,oldschoolish,1318370151 +165042,87192,"Scumbag ""heroes"" too easily redeemed",1318370656 +165042,87306,Long satisfying scenes,1312773384 +165042,87306,Uneven performances,1312773417 +165042,87869,actually funny,1317089386 +165042,87869,Excessively talky,1317089410 +165042,87869,jason bateman,1317089390 +165042,87869,R:language,1317089383 +165042,88125,franchise,1310999816 +165042,88125,series ending,1310999808 +165042,88125,top-notch special effects,1310999797 +165042,88125,unintentionally funny ending,1310999778 +165042,88129,cinematography,1338833071 +165042,88129,predictable,1338833086 +165042,88672,Earnest protagonist,1321287482 +165042,88672,Jesse Peretz,1321287530 +165042,88672,Poor direction,1321287535 +165042,88744,bad dialogue,1316013004 +165042,88744,Coul've been deeper,1316013028 +165042,88744,Exciting,1316013052 +165042,88744,"too much ""of the"" in title",1316013018 +165042,88810,bittersweet,1360362745 +165042,88810,great acting,1360362750 +165042,89260,70's,1328553190 +165042,89260,Scientific project,1328553157 +165042,89260,Touching,1328553142 +165042,89369,Demian Bichir,1330759031 +165042,89470,all-star cast,1323272947 +165042,89470,plausible,1323273327 +165042,89470,procedural,1323272937 +165042,89470,wasted characters,1323273309 +165042,89535,no emotional investment,1354724357 +165042,89745,great humor,1335931745 +165042,89864,Anna Kendrick,1327987115 +165042,89864,Joseph Gordon-Levitt,1327987058 +165042,89864,predictable,1327987047 +165042,89864,Seth Rogen,1327987052 +165042,89864,unrealistic therapist,1327987076 +165042,89904,Jean Dujardin,1329792007 +165042,89904,Nice effort,1329714020 +165042,89904,silent movie,1329791997 +165042,89904,Simplistic,1329714043 +165042,90249,cartoonish antagonists,1320075311 +165042,90249,corny,1320075304 +165042,90249,feel-good,1320075336 +165042,90249,hugh jackman,1320075287 +165042,90647,predictable,1329161404 +165042,91542,Bechdel Test:Fail,1335208149 +165042,91542,unrealistic,1335208154 +165042,91658,Not much of a mystery,1328372402 +165042,91976,cinematography,1338221146 +165042,91976,life & death,1338221137 +165042,91976,overdramatic,1338221129 +165042,91976,unrealistic,1338221133 +165042,92259,funny,1351183759 +165042,92259,predictable,1351183685 +165042,92259,soundtrack,1351183694 +165042,93363,childish plot,1348249026 +165042,93363,very real-looking,1348249039 +165042,93840,clever,1358784487 +165042,93840,overrated,1358784491 +165042,94015,awful ending,1344289539 +165042,94015,beautiful,1344289541 +165042,94864,predictable,1364949694 +165042,94864,self discovery,1355798002 +165042,95088,loose ends,1367464294 +165042,95088,soundtrack,1367464302 +165042,95309,could have been edgier,1358784572 +165042,95309,could have been funnier,1358784574 +165042,95309,dark humor,1358784579 +165042,95309,Keira Knightley,1358784584 +165042,95441,CG animation,1348593547 +165042,95441,crude humor,1348593553 +165042,96079,beautifully filmed,1354724235 +165042,96079,Javier Bardem,1354724237 +165042,96417,Original,1358142346 +165042,96417,silly,1358142336 +165042,96565,annoying characters,1364251884 +165042,96565,boring,1364251866 +165042,96565,dull jokes,1364251872 +165042,96610,complicated,1365440212 +165042,96610,mindfuck,1365440216 +165042,96610,preposterous premise,1365440260 +165042,96612,sickening,1388129592 +165042,96728,Character study,1392753869 +165042,96728,great performances,1392753872 +165042,96728,Joaquin Phoenix,1392753874 +165042,96728,underwhelming ending,1392754013 +165042,96737,bad dialogue,1366052918 +165042,96737,Slow-motion,1366052937 +165042,96737,Tense,1366052928 +165042,96821,Hipster movie,1375591593 +165042,96821,Not very realistic,1375591808 +165042,97304,true story,1362618574 +165042,97921,not particularly beliveable,1364795062 +165042,101864,interesting concept,1377707585 +165042,101864,twists & turns,1377707576 +165042,102125,twists,1367464504 +165042,102445,Benedict Cumberbatch,1368674709 +165042,102993,predictable plot,1393283858 +165042,103253,Ham fisted,1391930251 +165042,103772,contrived romance,1390861800 +165042,103772,low stakes,1390861805 +165042,104712,earnest,1380567626 +165042,104712,hearthwarming,1380567620 +165042,104712,not funny enough,1380567641 +165042,104712,overlong,1380567609 +165042,104712,sappy,1380567655 +165042,105954,Underrated,1394655944 +165042,106072,sit-com style of comedy,1383864101 +165042,106100,weak secondary characterss,1393283759 +165042,106487,Abrupt ending,1386979186 +165042,106782,inaccurate,1391538612 +165042,106782,overacting,1391538676 +165042,106782,Overlong,1391538639 +165042,106916,Christian Bale,1390494079 +165042,106916,Jeremy Renner,1390494073 +165042,106916,Slow,1390494033 +165042,111362,Repetitive plot points,1415143888 +165051,4713,drugs,1203691096 +165051,4713,psychedelic,1203691086 +165051,45950,environment,1203690482 +165051,64839,identity crisis,1243153027 +165055,1719,Incest,1144632496 +165055,2947,Best of Bond,1139119501 +165056,837,author:Roald Dahl,1326770110 +165056,837,Danny DeVito,1326770106 +165056,837,Roald Dahl,1326770102 +165056,1701,hilarious,1326769496 +165056,1701,Woody Allen,1326769489 +165056,2338,Jack Black,1326769977 +165056,2338,Jennifer Love Hewitt,1326769986 +165056,2338,white guy with Jamaican/Caribbean accent,1326769972 +165056,3545,adapted from:play,1326769568 +165056,3545,based on a book,1326769538 +165056,3545,classic,1326769588 +165056,3545,history,1326769583 +165056,3545,musical,1326769553 +165056,3545,Nazis,1326769533 +165056,3545,Oscar (Best Cinematography),1326769541 +165056,3545,Oscar (Best Directing),1326769545 +165056,3545,politics,1326769523 +165056,4148,Anthony Hopkins,1326769744 +165056,4148,psychology,1326769750 +165056,4896,humorous,1326770240 +165056,4896,sequel,1326770243 +165056,4993,ensemble cast,1326770345 +165056,4993,great soundtrack,1326770351 +165056,5816,harry potter,1326770480 +165056,5952,multiple storylines,1326770430 +165056,5952,sequel,1326770438 +165056,7153,atmospheric,1326770404 +165056,7153,great soundtrack,1326770398 +165056,8368,Emma Watson,1326770199 +165056,8368,sequel,1326770203 +165056,8622,comedy,1326769796 +165056,8622,political,1326769793 +165056,8622,politics,1326769791 +165056,30793,Helena Bonham Carter,1326770054 +165056,30793,Johnny Depp,1326770053 +165056,30793,roald dahl,1326770033 +165056,30793,Tim Burton,1326770057 +165056,55768,satire,1326769680 +165056,69122,absurd,1326820108 +165056,69122,awkward,1326820109 +165056,69844,disappointing,1326770628 +165056,72998,aliens,1326770698 +165056,72998,anti-war,1326770695 +165056,72998,environmental,1326770697 +165056,72998,politics,1326770687 +165056,74789,alternate reality,1326769628 +165056,74789,Anne Hathaway,1326769644 +165056,74789,Depp & Burton,1326769624 +165056,74789,fantasy,1326769639 +165056,74789,Helena Bonham Carter,1326769611 +165056,74789,Johnny Depp,1326769615 +165056,74789,talking animals,1326769635 +165056,74789,Tim Burton,1326769613 +165056,74789,visually appealing,1326769651 +165056,80549,dialogue,1326769847 +165056,80549,satire,1326769831 +165056,81834,British,1326770516 +165056,81834,England,1326770523 +165056,81834,Helena Bonham Carter,1326770527 +165056,81834,London,1326770512 +165056,88125,great cinematography,1326770288 +165075,260,action,1432370004 +165075,260,sci-fi,1432369997 +165079,260,sci-fi,1437069481 +165079,260,space adventure,1437069503 +165085,5952,Action,1430623412 +165085,5952,Adventure,1430623459 +165085,5952,fantasy,1430623422 +165085,5952,friendship in fighting,1430623480 +165085,52356,a soul of music,1430623512 +165085,52356,alone,1430623517 +165087,42718,free running,1262767243 +165087,42718,parkour,1262767230 +165087,42718,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1262767234 +165108,293,Natalie Portman,1275863354 +165108,26003,documentary,1275863381 +165118,1241,horror,1425298835 +165140,5504,kids,1144717306 +165140,39381,Australian,1170031914 +165155,32,Brad Pitt,1346375923 +165155,32,British,1346375942 +165155,32,complicated,1346375927 +165155,32,dystopia,1346375939 +165155,32,epidemic,1346375949 +165155,32,practical effects,1346376020 +165155,32,time travel,1346375936 +165155,32,twist ending,1346375918 +165155,32,violence,1346375957 +165155,296,nonlinear,1346457918 +165155,296,Quentin Tarantino,1346457904 +165155,296,violence,1346457901 +165155,318,classic,1346389528 +165155,318,Morgan Freeman,1346389533 +165155,318,Stephen King,1346389530 +165155,318,Tim Robbins,1346389542 +165155,1136,classic,1346389722 +165155,1136,hilarious,1346389717 +165155,1136,Monty Python,1346389713 +165155,1214,atmospheric,1346379852 +165155,1214,claustrophobic,1346379868 +165155,1214,franchise,1346379880 +165155,1214,horror,1346379855 +165155,1214,suspense,1346379875 +165155,1214,thriller,1346379876 +165155,1220,car chase,1346376918 +165155,1220,notable soundtrack,1346376913 +165155,1270,classic,1346376775 +165155,1270,quirky,1346376782 +165155,1270,self-referentail,1346376814 +165155,1270,time travel,1346376830 +165155,1278,Gene Wilder,1346389753 +165155,1278,Mel Brooks,1346389750 +165155,1278,Teri Garr,1346389800 +165155,1923,AFI 100 (Laughs),1346378539 +165155,1923,Ben Stiller,1346378507 +165155,1923,crude humor,1346378510 +165155,1923,Farrelly Brothers,1346378519 +165155,1923,fun,1346378513 +165155,1923,madcap,1346378517 +165155,1923,raunchy,1346378522 +165155,1923,stupid,1346378527 +165155,2716,Bill Murray,1346376850 +165155,2716,ghosts,1346376856 +165155,2716,hilarious,1346376848 +165155,2716,quotable,1346376846 +165155,2716,saturday night live,1346376866 +165155,2716,Sigourney Weaver,1346376858 +165155,2791,absurd,1346378281 +165155,2791,AFI 100 (Laughs),1346378328 +165155,2791,airport,1346378315 +165155,2791,celebrity,1346378475 +165155,2791,classic,1346378323 +165155,2791,farce,1346378277 +165155,2791,Lloyd Bridges,1346378449 +165155,2791,slapstick humor,1346378286 +165155,2791,spoof,1346378265 +165155,2959,Brad Pitt,1346389405 +165155,2959,dark comedy,1346389409 +165155,2959,disturbing,1346389417 +165155,2959,Edward Norton,1346389407 +165155,2959,philosophy,1346389397 +165155,2959,social commentary,1346389403 +165155,4027,1930s,1346377272 +165155,4027,adventure,1346377266 +165155,4027,black comedy,1346377254 +165155,4027,Coen Brothers,1346377256 +165155,4027,George Clooney,1346377252 +165155,4027,great soundtrack,1346377247 +165155,4027,Musical,1346377249 +165155,4027,updated classics,1346377263 +165155,4848,David Lynch,1346389279 +165155,4848,disturbing,1346389291 +165155,4848,dreamlike,1346389295 +165155,4848,movie business,1346389302 +165155,4848,nonlinear,1346389281 +165155,4848,surreal,1346389286 +165155,4878,dreamlike,1346376140 +165155,4878,great soundtrack,1346376147 +165155,4878,high school,1346376149 +165155,4878,thought-provoking,1346376136 +165155,4878,twist ending,1346376129 +165155,4979,ensemble cast,1346377609 +165155,4979,great soundtrack,1346377597 +165155,4979,narrated,1346377594 +165155,4979,quirky,1346377603 +165155,4979,Wes Anderson,1346377598 +165155,4979,witty,1346377606 +165155,5902,based on a book,1346389466 +165155,5902,Charlie Kaufman,1346389457 +165155,5902,Nicolas Cage,1346389461 +165155,8914,clever,1346376257 +165155,8914,complicated plot,1346376227 +165155,8914,dialogue driven,1346376262 +165155,8914,directorial debut,1346376243 +165155,8914,indie,1346376239 +165155,8914,intelligent,1346376242 +165155,8914,nonlinear,1346376282 +165155,8914,plot holes,1346376248 +165155,8961,family,1346452534 +165155,8961,Pixar,1346452523 +165155,30810,adventure,1346377350 +165155,30810,Bill Murray,1346377336 +165155,30810,father-son relationship,1346377339 +165155,30810,great soundtrack,1346377321 +165155,30810,Nudity (Topless),1346377345 +165155,30810,plot twist,1346377317 +165155,30810,stylized,1346377331 +165155,30810,visually appealing,1346377333 +165155,30810,Wes Anderson,1346377319 +165155,30810,whimsical,1346377349 +165155,46578,Alan Arkin,1346377539 +165155,46578,dark comedy,1346377556 +165155,46578,dysfunctional family,1346377545 +165155,46578,off-beat comedy,1346377563 +165155,46578,Paul Dano,1346377522 +165155,46578,quirky,1346377560 +165155,46578,social commentary,1346377582 +165155,48394,fairy tale,1346389913 +165155,48394,violence,1346389926 +165155,48774,dystopia,1346389347 +165155,48774,sci-fi,1346389343 +165155,48774,violence,1346389372 +165155,48774,visually appealing,1346389365 +165155,48780,based on a book,1346376534 +165155,48780,Christian Bale,1346376539 +165155,48780,Christopher Nolan,1346376563 +165155,48780,complicated,1346376570 +165155,48780,twist ending,1346376340 +165155,51709,monster,1346532460 +165155,55269,brother-brother relationship,1346377370 +165155,55269,cinematography,1346377390 +165155,55269,dark comedy,1346377372 +165155,55269,dysfunctional family,1346377388 +165155,55269,family dynamics,1346377383 +165155,55269,India,1346377379 +165155,55269,Owen Wilson,1346377402 +165155,55269,Wes Anderson,1346377374 +165155,57368,found footage,1346381340 +165155,57368,monster,1346381356 +165155,57368,unsteady-cam,1346381372 +165155,58559,atmospheric,1346378644 +165155,58559,comic book,1346378650 +165155,58559,ensemble cast,1346378630 +165155,58559,superhero,1346378626 +165155,68157,black comedy,1346379761 +165155,68157,Brad Pitt,1346379655 +165155,68157,gore,1346379660 +165155,68157,great soundtrack,1346379658 +165155,68157,multiple languages,1346379743 +165155,68157,Quentin Tarantino,1346379653 +165155,68157,tense,1346379712 +165155,68157,twist ending,1346379675 +165155,68157,World War II,1346379662 +165155,68237,alter ego,1346375822 +165155,68237,artificial intelligence,1346375819 +165155,68237,dialogue driven,1346375856 +165155,68237,dystopia,1346375811 +165155,68237,future,1346375814 +165155,68237,great soundtrack,1346375801 +165155,68237,melancholy,1346375808 +165155,68237,plot twist,1346375758 +165155,68237,psychology,1346375841 +165155,68237,Sci-fi,1346375865 +165155,70286,directorial debut,1346379954 +165155,70286,intelligent,1346379942 +165155,70286,mockumentary,1346379932 +165155,70286,social commentary,1346379938 +165155,74458,atmospheric,1346376670 +165155,74458,cinematography,1346376667 +165155,74458,dream,1346376690 +165155,74458,insanity,1346376673 +165155,74458,Martin Scorsese,1346376675 +165155,74458,Period piece,1346376677 +165155,74458,reality or imagination?,1346376699 +165155,74458,twist ending,1346376631 +165155,79132,action,1346376093 +165155,79132,complicated,1346376065 +165155,79132,ensemble cast,1346376058 +165155,79132,great soundtrack,1346376068 +165155,79132,heist,1346376072 +165155,79132,sci-fi,1346376084 +165155,79132,surreal,1346376054 +165155,79132,visually appealing,1346376052 +165155,84392,acting,1348107871 +165155,87232,Cuba,1346379398 +165155,87232,franchise,1346379383 +165155,87232,January Jones,1346379429 +165155,87232,Kevin Bacon,1346379415 +165155,87232,Michael Fassbender,1346379408 +165155,87232,superhero,1346379393 +165155,89745,comic book,1346378675 +165155,89745,franchise,1346378730 +165155,89745,humorous,1346378698 +165155,89745,Mark Ruffalo,1346378717 +165155,89745,Marvel,1346378668 +165155,89745,Robert Downey Jr.,1346378679 +165155,89745,visually stunning,1346378681 +165155,93840,clever,1346378986 +165155,93840,dark comedy,1346379000 +165155,93840,funny,1346378983 +165155,93840,gore,1346378985 +165155,93840,Joss Whedon,1346378943 +165155,93840,monsters,1346379007 +165155,93840,original,1346378959 +165155,93840,plot twist,1346378954 +165155,93840,R,1346389194 +165155,93840,social commentary,1346378978 +165155,93840,weird,1346378975 +165155,93840,witty,1346378972 +165155,94864,Charlize Theron,1346379779 +165155,94864,Michael Fassbender,1346379801 +165155,94864,Noomi Rapace,1346379809 +165155,94864,predictable,1346379773 +165155,94864,prequel,1346379815 +165155,94864,Ridley Scott,1346379784 +165155,95510,action,1346379359 +165155,95510,Andrew Garfield,1346379337 +165155,95510,Emma Stone,1346379335 +165155,95510,family friendly,1346379340 +165155,95510,reboot,1346379333 +165155,95510,special effects,1346379347 +165155,95510,Spider-Man,1346379344 +165172,30707,narrated,1452597668 +165172,30707,thought-provoking,1452597637 +165190,1200,Frightening,1143316076 +165192,296,funny,1422024060 +165192,296,quirky,1422024060 +165192,296,witty dialogue,1422024060 +165192,112421,domhnall gleeson,1422025143 +165192,112421,Michael Fassbender,1422025054 +165192,112421,soundtrack,1422025061 +165230,7458,Greek tragedy,1329584145 +165230,7458,historical epic,1329584145 +165230,7458,innacurate,1329584145 +165239,109487,family,1444024114 +165239,112556,crazylove,1444024308 +165250,64231,missle launher,1354571237 +165252,546,classic,1188233873 +165252,546,nintendo,1188233873 +165252,1298,drugs,1188233671 +165252,1298,good music,1188233671 +165252,1298,must see stoned,1188233671 +165252,1298,smoking,1188233671 +165252,1298,sometimes scary,1188233671 +165252,1350,Good ending,1188233963 +165252,1350,not very scary,1188233963 +165252,1438,volcano,1188233708 +165252,1587,schwarzenegger,1188233699 +165252,1590,scary as hell,1188233719 +165252,2953,family,1188233741 +165252,2953,for kids,1188233741 +165252,2953,Sucks big time!,1188233741 +165252,3113,bad guy,1188233916 +165252,3113,cool,1188233916 +165252,3113,schwarzenegger,1188233916 +165252,4367,cool,1188233765 +165252,4367,sexy,1188233765 +165252,6373,gay,1188233667 +165252,6373,love story,1188233667 +165252,6373,not funny,1188233667 +165252,6373,Sucks big time!,1188233667 +165252,8644,ia,1188233843 +165252,8644,irreverent,1188233843 +165252,8644,robots,1188233843 +165286,1036,nakatomi,1436647631 +165286,1036,yipikaye mother fucker,1436647655 +165286,3753,black powder,1436647547 +165286,3753,muzzleloader,1436647559 +165286,3753,red coat,1436647477 +165286,4223,kommunism,1436647597 +165286,4223,russians,1436647589 +165286,4223,sniper,1436647583 +165286,4855,magnum,1436647674 +165286,4855,revolver,1436647671 +165286,4995,math,1436647530 +165286,4995,scientist,1436647525 +165302,112183,emma stone,1423904339 +165302,112183,michael keaton,1423904339 +165302,112183,superhero,1423904339 +165303,79006,classic,1420107745 +165303,79006,must see,1420107745 +165303,79006,one of the best i've seen,1420107745 +165352,260,Star Wars,1443801666 +165352,260,starwars,1443801673 +165357,3262,surreal,1364186072 +165357,118109,quarantine,1423180218 +165357,118109,survival,1423180210 +165358,260,classic,1441246045 +165358,260,gotta see,1441246038 +165368,260,drama,1431821945 +165368,260,Science Fiction,1431821934 +165373,32,Brad Pitt,1318588486 +165373,32,time travel,1318588490 +165373,32,violence,1318588505 +165373,50,organized crime,1318588540 +165373,50,thriller,1318588538 +165373,50,twist ending,1318588535 +165373,318,prison escape,1318588875 +165373,318,twist ending,1318588872 +165373,2571,sci-fi,1318504668 +165373,2672,alternate reality,1318502515 +165373,4370,artificial intelligence,1318588437 +165373,4370,Steven Spielberg,1318588432 +165373,6934,sci-fi,1318588324 +165375,2641,good dialogue,1164263726 +165386,115617,animation,1430075188 +165386,115617,comedy,1430075188 +165386,115617,team-building,1430075188 +165405,64620,awesome performance,1245107300 +165405,64620,Frank Langella,1245107316 +165405,64620,michael sheen,1245107332 +165408,260,childhood classic,1440446924 +165408,527,based on a true story,1440447535 +165408,527,history,1440447562 +165408,527,holocaust,1440447562 +165408,527,jews,1440447532 +165408,527,Nazis,1440447533 +165408,527,Steven Spielberg,1440447540 +165408,527,true story,1440447540 +165408,527,World War II,1440447532 +165408,3198,freedom,1440447819 +165408,3198,prison escape,1440447796 +165408,3198,Steve McQueen,1440447796 +165412,260,good vs evil,1437344142 +165412,260,sci-fi,1437344147 +165433,356,bittersweet,1431713736 +165433,356,fictional biographical,1431713736 +165433,356,happy ending,1431713736 +165433,2858,suburban dysfunction,1194623382 +165494,4437,two strip technicolor,1163716844 +165526,98607,animation,1424183581 +165526,98607,over-the-top,1424183581 +165526,98607,racing,1424183581 +165535,106696,beautiful,1450337878 +165545,260,sci-fi,1437379608 +165545,260,space,1437379623 +165584,7022,controversial,1152704786 +165584,7347,murder,1138521331 +165584,7347,split personality,1138521331 +165584,7347,writer,1138521331 +165584,26991,japanese,1430493293 +165584,26991,wacky,1430493293 +165584,26991,yakuza,1430493293 +165586,260,good vs evil,1436168673 +165586,260,space western,1436168692 +165586,79132,action,1436168871 +165586,79132,Leonardo DiCaprio,1436168858 +165586,79132,multiple interpretations,1436168866 +165586,79132,philosophy,1436168867 +165586,79132,twist ending,1436168880 +165586,79132,visually appealing,1436168853 +165591,260,Science Fiction,1444603469 +165591,260,space drama,1444603481 +165591,109374,Edward Norton,1444603741 +165591,109374,great dialogue,1444603744 +165591,109374,visually appealing,1444603729 +165591,109374,whimsical,1444603737 +165619,2019,violence,1372182985 +165630,260,classic,1443320698 +165630,260,scifi,1443320690 +165632,260,classic,1441140255 +165632,260,Galaxy,1441140272 +165632,260,sci-fi,1441140244 +165632,260,space,1441140267 +165637,260,classic,1439783715 +165637,260,sci-fi,1439783702 +165649,608,dark comedy,1224542235 +165649,778,addiction,1224542177 +165649,1288,mockumentary,1224542183 +165649,1288,satire,1224542186 +165649,1961,true story,1224542204 +165649,3075,atmospheric,1224541401 +165649,3075,MENTAL ILLNESS,1224541397 +165649,3198,prison,1224542207 +165649,4226,nonlinear,1224542217 +165649,4226,psychology,1224542221 +165649,4873,drugs,1224542174 +165649,4873,surreal,1224542171 +165649,7361,surrealism,1224542238 +165652,5902,nudity,1383419430 +165668,1217,Kurosawa,1138225148 +165668,1217,samurai,1138225148 +165668,1635,Ang Lee,1138225188 +165668,3996,Ang Lee,1138225212 +165668,40583,Political,1138225306 +165679,2571,virtual reality,1446657809 +165679,8533,sentimental,1446657415 +165679,79132,alternate reality,1446657737 +165679,79132,mindfuck,1446657763 +165679,79132,philosophy,1446657742 +165679,79132,surreal,1446657766 +165679,79132,thought-provoking,1446657733 +165679,79132,visually appealing,1446657790 +165679,97752,atmospheric,1446657582 +165679,97752,philosophy,1446657579 +165679,97752,thought-provoking,1446657608 +165679,103141,comedy,1446657314 +165679,109487,Hans Zimmer,1446657650 +165679,109487,science fiction,1446657634 +165679,109487,time-travel,1446657644 +165688,2871,banjo,1245366016 +165688,2871,rednecks,1245366028 +165708,4993,fantasy,1428772203 +165708,5952,fantasy,1428772273 +165715,1307,chick flick,1143011151 +165715,1307,meg ryan,1143011150 +165715,3793,cult film,1143011153 +165715,3793,hugh jackman,1143011153 +165715,3793,sexy guys,1143011153 +165740,2,kid flick,1139199853 +165740,3,sequel fever,1139200232 +165740,5,sequel fever,1139200378 +165740,10,007,1139199448 +165740,10,Bond,1139199448 +165740,21,foqam,1139199552 +165740,25,dark,1139199527 +165740,62,stupid,1139199662 +165740,95,foqam,1139199613 +165740,104,foqam,1139200094 +165740,105,chick flick,1139201215 +165740,158,kid flick,1139200714 +165740,161,war,1139199379 +165740,168,chick flick,1139200838 +165740,173,Stallone,1139200404 +165740,208,stupid,1139199625 +165740,231,stupid,1139199327 +165740,253,spooky,1139199397 +165740,356,classic,1139199192 +165740,367,cartoonish,1139199471 +165740,370,foqam,1139200469 +165740,380,foqam,1139199232 +165740,410,stupid,1139199862 +165740,420,sequel fever,1139200318 +165740,435,stupid,1139200386 +165740,440,chick flick,1139199738 +165740,474,Eastwood,1139199722 +165740,480,foqam,1139199206 +165740,485,kid flick,1139200972 +165740,485,stupid,1139200972 +165740,500,Robin Williams,1139199306 +165740,508,Denzel,1139199929 +165740,551,classic,1139199998 +165740,587,chick flick,1139199462 +165740,597,foqam,1139199283 +165740,653,blood and guts,1139200216 +165740,736,foqam,1139199319 +165740,762,stupid,1139201346 +165740,780,war,1139199245 +165740,784,stupid,1139200494 +165740,852,chick flick,1139201053 +165740,920,classic,1139200253 +165740,953,classic,1139200757 +165740,1101,chick flick,1139200082 +165740,1101,foqam,1139200082 +165740,1183,chick flick,1139200067 +165740,1199,classic,1139201073 +165740,1265,foqam,1139199491 +165740,1302,classic,1139201067 +165740,1307,chick flick,1139199689 +165740,1320,spooky,1139200953 +165740,1374,stupid,1139200163 +165740,1391,stupid,1139200306 +165740,1393,chick flick,1139199747 +165740,1485,foqam,1139200354 +165740,1544,foqam,1139200695 +165740,1573,stupid,1139200179 +165740,1580,foqam,1139199581 +165740,1608,Harrison Ford,1139200619 +165740,1673,classic,1139200897 +165740,1682,fantasy,1139200143 +165740,1722,007,1139201255 +165740,1722,Bond,1139201255 +165740,1722,foqam,1139201255 +165740,1784,classic,1139199823 +165740,1876,foqam,1139201290 +165740,1968,foqam,1139199904 +165740,2000,foqam,1139200287 +165740,2001,foqam,1139200797 +165740,2012,sequel fever,1139200199 +165740,2054,kid flick,1139200368 +165740,2068,classic,1139199108 +165740,2081,kid flick,1139200776 +165740,2100,chick flick,1139201037 +165740,2100,foqam,1139201037 +165740,2174,foqam,1139200054 +165740,2268,chick flick,1139200549 +165740,2268,foqam,1139200549 +165740,2291,Depp,1139200271 +165740,2353,Gene Hackman,1139200668 +165740,2353,Will Smith,1139200668 +165740,2406,chick flick,1139200485 +165740,2406,foqam,1139200485 +165740,2470,chick flick,1139201321 +165740,2657,weird,1139200787 +165740,2683,foqam,1139199838 +165740,3175,foqam,1139200885 +165740,3253,foqam,1139201183 +165740,3408,Julia Roberts,1139200521 +165740,3418,chick flick,1139201084 +165740,3527,action,1139201172 +165740,3527,foqam,1139201172 +165740,3527,Jesse Ventura,1139201172 +165740,3527,Schwartzenegger,1139201172 +165740,3623,Cruise,1139200582 +165740,3753,Mel Gibson,1139201201 +165740,4963,Clooney,1139201009 +165740,5060,classic,1139200592 +165740,5349,chick flick,1139200932 +165740,5602,Hitchcock,1139201610 +165740,8961,classic,1139201431 +165740,25996,Streisand,1139198485 +165740,26084,classic,1139198885 +165740,26116,Noir,1139198306 +165740,26386,Hitchcock parody,1139198123 +165740,26662,Miyazaki,1139197939 +165740,30793,quirky,1139198702 +165740,31923,classic,1139198688 +165740,32781,classic,1139198651 +165740,33794,scifi,1139198779 +165740,33836,bad,1139198751 +165740,34150,foqam,1139198575 +165740,34338,raunch,1139198464 +165740,34520,foqam,1139198508 +165740,35836,foqam,1139198376 +165740,37386,science fiction gone bad,1139197978 +165740,37736,classic,1139198276 +165740,40278,war,1139198087 +165740,40815,magic,1139198025 +165740,41566,Seen 2006,1139197875 +165740,42002,farce,1139197901 +165782,223,good dialogue,1142579156 +165782,1213,mafia,1142579149 +165813,6222,adaptation,1427038170 +165813,6222,psychological,1427038170 +165813,6222,teenage girl,1427038170 +165813,64231,painful,1429792040 +165813,64231,revenge as motive,1429792040 +165813,64231,thought provoking,1429792040 +165813,104303,business,1424859003 +165813,104303,inspirational,1424859003 +165813,104303,real story,1424859003 +165817,1500,dark comedy,1363393334 +165817,1500,funny,1363393319 +165817,1500,unrealistic,1363393313 +165817,2819,conspiracy,1363393125 +165817,4144,100 Essential Female Performances,1246048505 +165817,4144,love affair,1246048487 +165817,4144,moody,1246048512 +165817,4144,music,1246048537 +165817,4144,Wong Kar Wai,1246048494 +165817,6160,apartheid,1424552587 +165817,6160,music,1424552587 +165817,6160,singing,1424552587 +165817,72386,realistic,1263766591 +165817,72386,romance,1263766568 +165817,72386,script,1263766609 +165817,72386,sexy,1263766562 +165817,106918,Iceland,1407532800 +165817,106918,inspirational,1407532803 +165848,68319,action,1431283233 +165848,80463,computers,1431283273 +165848,80463,facebook,1431283283 +165848,116797,cryptography,1431283321 +165848,116797,history,1431283326 +165853,260,sci-fi,1439794380 +165859,260,classic sci-fi,1438055467 +165859,260,good vs evil,1438055476 +165876,260,Science Fiction,1432794159 +165876,260,space,1432794168 +165906,3022,19th century,1225777145 +165943,94466,made for TV,1411825084 +165943,94466,not a movie,1411825070 +165943,94466,TV series,1411825077 +165975,95175,school,1441255077 +165975,95175,teacher as protagonist,1441255062 +165975,95175,Tourette syndrome,1441255064 +165996,260,futuristic,1432859545 +165996,260,good vs evil,1432859512 +165996,260,space action,1432859530 +166008,215,conversation,1407858533 +166008,215,dialogue,1407858536 +166008,215,dialogue driven,1407858576 +166008,215,intelligent,1407858539 +166008,215,love story,1407858578 +166008,215,must see,1407858557 +166008,215,really romantic,1407858561 +166008,215,romantic,1407858553 +166008,215,thought-provoking,1407858570 +166008,7293,amnesia,1407858611 +166008,7293,date movie,1407858647 +166008,7293,funny,1407858640 +166008,7293,happy ending,1407858637 +166008,7293,Hawaii,1408467958 +166008,7293,memory loss,1407858615 +166008,78039,boring,1407858368 +166008,78039,depressing,1407858376 +166008,78039,realism,1407858354 +166008,100714,affair,1372870304 +166008,100714,phylosophycal,1372870279 +166012,113345,good vs evil,1425219739 +166012,113345,love,1425219739 +166012,113345,science fiction,1425219739 +166019,120138,Aamir Khan,1423897968 +166019,120138,Comedy,1423897948 +166019,120138,Rajkumar Hirani,1423897962 +166028,260,cult classic,1440100892 +166028,260,space opera,1440100916 +166031,1245,dark comedy,1238218723 +166052,296,cult,1430437828 +166052,296,gangsters,1430437828 +166052,296,violence,1430437828 +166052,3949,drugs,1430437708 +166052,6365,future,1430437739 +166052,6365,human versus computer,1430437757 +166052,6365,technology,1430437745 +166067,2600,Alternate Reality,1452119578 +166067,2600,David Cronenberg,1452119589 +166067,2600,dreamlike,1452119587 +166067,2600,mindfuck,1452119581 +166067,2600,surreal,1452119580 +166067,2600,virtual reality,1452119583 +166067,4720,alternate reality,1451576343 +166067,4720,atmospheric,1451576307 +166067,4720,claustrophobic,1451576352 +166067,4720,clever,1451576345 +166067,4720,dark,1451576347 +166067,4720,ghosts,1451576303 +166067,4720,gothic,1451576332 +166067,4720,haunted house,1451576314 +166067,4720,Horror,1451576336 +166067,4720,Isolation,1451576349 +166067,4720,Nicole Kidman,1451576310 +166067,4720,religion,1451576436 +166067,4720,scary,1451576340 +166067,4720,supernatural,1451576318 +166067,4720,surprise ending,1451576325 +166067,4720,twist ending,1451576322 +166067,135137,80s,1437996177 +166067,135137,adam sandler,1437996177 +166067,135137,video games,1437996177 +166097,50,#thriling,1434969011 +166097,148,catchy,1434969127 +166097,215,touching,1434969062 +166097,96829,#Danish,1434968900 +166114,171,friendship relations,1160476505 +166114,345,drag queen movie,1160476425 +166114,581,intervius,1160476240 +166114,1046,adolescent gays,1160476332 +166114,2607,adolescence gays,1160476344 +166114,3094,adapted classic novel,1160476393 +166114,8800,Dramatic,1160476697 +166119,260,sci-fi,1439768686 +166119,260,space,1439768688 +166125,260,classic sci-fi,1435702917 +166125,260,Groundbreaking,1435702928 +166151,260,action,1442472838 +166151,260,sci-fi,1442472826 +166166,18,multiple storylines,1419900575 +166166,25,addiction,1419898045 +166166,25,atmospheric,1419898038 +166166,25,favorites,1419898031 +166166,25,melancholic,1419898035 +166166,345,queer,1419899037 +166166,551,creepy,1419898569 +166166,551,dark,1419898560 +166166,551,musical,1419898554 +166166,551,stop motion,1419898551 +166166,551,stylized,1419898563 +166166,562,adolescence,1419897261 +166166,562,disturbing,1419897255 +166166,1032,dreamlike,1419900456 +166166,1080,satire,1419900522 +166166,1209,spaghetti western,1419898294 +166166,1214,claustrophobic,1419898528 +166166,1214,sci-fi,1419898518 +166166,1214,space,1419898520 +166166,1259,favorites,1419897079 +166166,1265,time loop,1419900356 +166166,1270,teen,1419898366 +166166,1270,time travel,1419898361 +166166,1273,favorites,1419897475 +166166,1278,parody,1419900314 +166166,1305,loneliness,1419898888 +166166,1305,soundtrack,1419898882 +166166,1916,melancholy,1419897625 +166166,1994,80s,1419900013 +166166,2455,sci-fi,1419898393 +166166,2557,favorites,1419897445 +166166,2797,1980s,1419898678 +166166,2797,childhood,1419898687 +166166,3342,war,1419898324 +166166,3362,favorites,1419897379 +166166,3504,satire,1419899887 +166166,3897,music,1419898909 +166166,3897,teen,1419898916 +166166,4370,too long,1421000342 +166166,4553,cult film,1419897167 +166166,4553,favorites,1419897129 +166166,4641,adolescence,1419898818 +166166,4641,bittersweet,1419898820 +166166,4641,favorites,1419898839 +166166,4878,atmospheric,1419897999 +166166,4878,dreamlike,1419897990 +166166,4878,favorites,1419898008 +166166,4878,high school,1419898004 +166166,4878,sci-fi,1419897993 +166166,4878,time travel,1419897983 +166166,5617,black comedy,1419898722 +166166,5617,relationships,1419898735 +166166,5617,sex,1419898740 +166166,6403,madness,1419897308 +166166,6502,atmospheric,1420212465 +166166,6502,post-apocalyptic,1420212458 +166166,6502,survival,1420212461 +166166,6975,disturbing,1420212051 +166166,7013,atmospheric,1419897573 +166166,7013,dreamlike,1419897576 +166166,7013,favorites,1419897601 +166166,7013,noir thriller,1419897581 +166166,7156,favorites,1419897537 +166166,7156,History,1419897544 +166166,7156,Philip Glass,1419897549 +166166,7300,car chase,1419897743 +166166,7300,favorites,1419897759 +166166,7300,road movie,1419897729 +166166,8644,artificial intelligence,1420999896 +166166,26680,musical,1419899984 +166166,26680,parody,1419899989 +166166,27716,dark comedy,1419900669 +166166,27773,disturbing,1419898438 +166166,27773,music,1419898445 +166166,27773,vengeance,1419898431 +166166,32632,cops,1419897817 +166166,32632,desert,1419897807 +166166,32632,favorites,1419897828 +166166,32632,road movie,1419897805 +166166,33171,disturbing,1420999797 +166166,33270,atmospheric,1419898082 +166166,33270,dreamlike,1419898087 +166166,33270,favorites,1419898091 +166166,33725,dark comedy,1419897877 +166166,33725,favorites,1419897961 +166166,33725,imaginary friend,1419897866 +166166,34542,documentary,1419898944 +166166,34542,voice-over,1419898992 +166166,44633,madness,1419900184 +166166,44633,music,1419900179 +166166,46572,loneliness,1427065468 +166166,47404,visually stunning,1419901462 +166166,59387,fantasy,1419897694 +166166,59387,favorites,1419897705 +166166,59387,surreal,1419897685 +166166,60530,atmospheric,1419898254 +166166,60530,favorites,1419898262 +166166,60530,teens,1419898259 +166166,63222,Satire,1419898768 +166166,68237,isolation,1421970847 +166166,68237,Sci-fi,1421970843 +166166,68237,space,1421970839 +166166,84950,80s,1419900833 +166166,84950,reunion,1419900889 +166166,87164,making of,1419900109 +166166,90378,eccentric,1419903393 +166166,106782,drugs,1419898798 +166166,106782,greed,1419898802 +166166,108540,2D,1419898495 +166166,108540,animation,1419898491 +166166,117444,2D,1419899593 +166166,120126,eccentric,1419903374 +166166,120126,favorites,1419897100 +166166,120128,2D,1419901389 +166166,120128,2d animation,1421604524 +166166,120128,haunting,1421604524 +166166,120128,short films,1421604524 +166166,129235,documentary,1424822688 +166166,129235,homosexuality,1424822675 +166166,129235,life,1424822694 +166166,129235,sexuality,1424822681 +166169,729,brothers quay,1167889475 +166169,8607,Satoshi Kon,1167889149 +166206,7022,surveillance,1221766568 +166227,260,classic sci-fi,1439448399 +166227,260,space adventure,1439448415 +166227,60827,Bingbing Fan,1439449524 +166286,5971,feel-good,1218901351 +166286,40732,cave,1145142456 +166286,42728,medieval,1246203539 +166286,45501,great finish,1246203522 +166286,46578,feel-good,1218901363 +166286,50601,sad,1175730612 +166286,55280,feel-good,1218901358 +166286,78105,based on a video game,1277488143 +166287,231,Jim Carrey,1159292413 +166287,1653,genetics,1159292386 +166287,2105,classical,1159293362 +166287,40732,goretastic,1159292595 +166287,40732,hot girls!,1159292593 +166287,40732,realistic sci/fi,1159292626 +166309,260,legendary,1443209424 +166325,47,great ending,1449097833 +166325,47,serial killer,1449097821 +166325,47,twists & turns,1449097841 +166325,1274,cyberpunk,1450043754 +166325,2329,edward norton,1448810335 +166325,2329,Neo-Nazis,1448810355 +166325,3176,disturbing,1450051439 +166325,3176,psychology,1450051435 +166325,3476,insanity,1449533856 +166325,3476,Vietnam War,1449533858 +166325,7419,black comedy,1450213518 +166325,27788,makes you think,1451329948 +166325,27788,mental institution,1451329952 +166325,27788,time travel,1451329935 +166325,48231,disturbing,1450213471 +166325,62203,horror,1448573965 +166325,62203,plot twist,1448573977 +166325,62203,psychological,1448573966 +166325,62203,shocking,1448573958 +166325,74228,atmospheric,1449790937 +166325,74228,mystery,1449790938 +166325,74228,sci fi,1449790943 +166325,79357,philosophy,1448810403 +166325,79357,sci-fi,1448810412 +166325,79357,surreal,1448810398 +166325,79357,time travel,1448810405 +166325,103688,Horror,1449336572 +166325,113741,mystery,1450051161 +166325,113741,parallel universe,1450051157 +166325,113741,sci-fi,1450051169 +166325,118880,black and white,1450569327 +166325,118880,vampires,1450569330 +166325,132046,Adventure,1448802866 +166325,132046,alternate reality,1448802870 +166325,132046,Future,1448802872 +166325,132046,sci-fi,1448802865 +166355,22,thriller,1368472883 +166355,29,dark,1368472444 +166355,157,politics,1368472832 +166355,216,stupid,1368472853 +166355,440,politics,1368472833 +166355,519,franchise,1368472553 +166355,541,dystopia,1272780890 +166355,541,slow paced,1272780884 +166355,555,ensemble cast,1368472487 +166355,555,violent,1368472903 +166355,832,thriller,1368472883 +166355,861,police,1368472814 +166355,913,black and white,1368472302 +166355,946,nazis,1368472722 +166355,1089,violent,1368472903 +166355,1175,dark,1368472444 +166355,1206,violent,1368472903 +166355,1228,oscar (best cinematography),1368472775 +166355,1248,black and white,1368472302 +166355,1266,oscar (best cinematography),1368472775 +166355,1287,christianity,1368472328 +166355,1357,father-son relationship,1368472534 +166355,1390,politics,1368472833 +166355,1464,mystery,1368472677 +166355,1544,nature vs. civilization,1215462786 +166355,1597,thriller,1368472883 +166355,1950,police,1368472814 +166355,1954,oscar (best cinematography),1368472775 +166355,2000,wannabe-funny,1196503896 +166355,2024,christianity,1368472328 +166355,2026,high school,1368472583 +166355,2082,inspirational,1368472603 +166355,2335,stupid,1368472853 +166355,2353,thriller,1368472883 +166355,2383,police,1368472814 +166355,2490,violent,1368472903 +166355,2500,high school,1368472583 +166355,2882,nazis,1368472722 +166355,2888,high school,1368472583 +166355,2959,violent,1368472903 +166355,2985,violent,1368472903 +166355,3146,stupid,1368472853 +166355,3256,thriller,1368472883 +166355,3435,black and white,1368472302 +166355,3440,franchise,1368472553 +166355,3519,nazis,1368472722 +166355,4034,oscar (best cinematography),1368472775 +166355,4388,stupid,1368472853 +166355,4774,crime,1204317904 +166355,4774,family,1204317904 +166355,4974,stupid,1368472853 +166355,5106,high school,1368472583 +166355,5107,nazis,1368472722 +166355,5363,high school,1368472583 +166355,5785,stupid,1368472853 +166355,6370,exchange year,1211356787 +166355,6537,franchise,1368472553 +166355,6808,nazis,1368472722 +166355,7153,oscar (best cinematography),1368472774 +166355,7193,explosions,1210190519 +166355,7193,rock n' roll,1210190529 +166355,8781,politics,1368472833 +166355,36529,guns,1280148989 +166355,40614,predictable,1227473859 +166355,40614,unoriginal,1227473859 +166355,41569,dinosaurs,1240894408 +166355,41569,jungle,1240894408 +166355,41569,long action scenes,1240894408 +166355,41569,romance,1240894408 +166355,47423,drugs,1196503871 +166355,53121,franchise,1368472554 +166355,55290,police,1368472814 +166355,64622,nazis,1368472722 +166355,72998,3d,1268478032 +166355,72998,boring plot,1268478027 +166355,72998,predictable,1268478049 +166355,74458,mystery,1368472677 +166357,781,Jeremy Irons,1277365195 +166361,1030,Disney,1289664639 +166361,1030,drinking,1289664661 +166361,1030,fun,1289664754 +166361,1030,Helen Reddy,1289664887 +166361,1030,kids and family,1289664627 +166361,1030,live action/animation,1289664734 +166361,1030,Mickey Rooney,1289664962 +166361,1030,musical,1289664715 +166361,1030,Red Buttons,1289664921 +166361,1030,singing,1289664706 +166361,7075,action,1289665443 +166361,7075,classic,1289665131 +166361,7075,Danny Kaye,1289665143 +166361,7075,fairy tale,1289665358 +166361,7075,funny,1289665175 +166361,7075,Glynis Johns,1289665412 +166361,7075,kids and family,1289665381 +166361,7075,memorable lines,1289665311 +166361,7075,musical,1289665164 +166361,7075,physical comedy,1289665256 +166361,7075,slapstick,1289665235 +166361,7075,whimsical,1289665344 +166364,3030,samurai,1253036246 +166372,115210,Tanks,1424847349 +166383,260,classic sci-fi,1443304683 +166383,260,good vs evil,1443304671 +166383,260,space adventure,1443304706 +166383,260,Star Wars,1443304691 +166392,44761,pretentious garbage about good things,1150207840 +166421,2959,based on a book,1378627667 +166421,2959,Brad Pitt,1378627651 +166421,2959,disturbing,1378627684 +166421,2959,psychology,1378627654 +166421,2959,quirky,1378627675 +166421,2959,surreal,1378627686 +166421,2959,twist ending,1378627679 +166421,2959,violence,1378627659 +166422,63082,Oscar (Best Music - Original Score),1449303320 +166422,73881,IIT Life,1449303240 +166422,89745,Scarlett Johansson,1449302899 +166422,120138,no religion,1449303181 +166428,3033,Quotable Movie!,1197990401 +166443,1580,plot twist,1314761399 +166443,84772,Atheism,1314761372 +166443,84772,geeky,1314761377 +166462,111,cult film,1292758771 +166462,111,Martin Scorsese,1292758776 +166462,541,cyberpunk,1292435413 +166462,541,dystopia,1292435497 +166462,541,genetic engineering,1292435489 +166462,750,Quirky,1292758747 +166462,750,Stanley Kubrick,1292758741 +166462,778,dark comedy,1292758917 +166462,1233,submarine,1292758848 +166462,1258,Stanley Kubrick,1292435635 +166462,1527,sci-fi,1292867146 +166462,1795,Jorfe Fons,1292759207 +166462,1795,Nex Mexican cinema,1292759207 +166462,2011,sci-fi,1292434691 +166462,2011,time travel,1292434686 +166462,2959,psychology,1292758728 +166462,2959,quirky,1292758718 +166462,2959,twist ending,1292758725 +166462,4235,New Mexican cinema,1292759150 +166462,4902,dark,1292874223 +166462,4967,complex characters,1292758907 +166462,4979,dark comedy,1292435736 +166462,5319,Argentina,1292759033 +166462,5319,Fabián Bielinsky,1292759086 +166462,5319,Ricardo Darín,1292759086 +166462,5319,twist ending,1292759038 +166462,5502,Shyamalan,1292875196 +166462,5669,politics,1292434970 +166462,7306,Damian Alcazar,1292759332 +166462,7306,Luis Estrada,1292759332 +166462,7306,New Mexican cinema,1292759332 +166462,8644,sci-fi,1292875397 +166462,48774,dystopia,1292435518 +166462,50872,animation,1292435195 +166462,55820,coen brothers,1292758878 +166462,56174,post-apocalyptic,1292875210 +166462,69122,comedy,1292434606 +166462,71535,post-apocalyptic,1292875447 +166462,74458,twist ending,1292874441 +166462,78499,animation,1292434821 +166462,80864,woo,1293470289 +166486,73,foreign language,1270512883 +166486,73,opera,1270512875 +166486,73,World War II,1270512872 +166486,1080,satire,1263513657 +166486,1172,Oscar (Best Foreign Language Film),1270513391 +166486,1199,black comedy,1263514069 +166486,1199,dark comedy,1263514071 +166486,1199,dystopia,1263514066 +166486,1199,sci-fi,1263514064 +166486,1206,disturbing,1263513711 +166486,1206,dystopia,1263513706 +166486,1206,excessive violence,1263513744 +166486,1246,philosophy,1263513985 +166486,1246,Robin Williams,1263513987 +166486,1611,gay,1263529665 +166486,1680,alternate reality,1263513613 +166486,1680,alternate universe,1263513616 +166486,1680,seen more than once,1263513626 +166486,1682,alternate reality,1263513588 +166486,1682,dark comedy,1263513576 +166486,1682,dystopia,1263513579 +166486,1682,philosophy,1263513582 +166486,1873,classic,1263513882 +166486,1873,Uma Thurman,1263513861 +166486,1997,horror,1263513682 +166486,1997,possession,1263513690 +166486,1997,scary,1263513685 +166486,2144,1980s,1263529617 +166486,2144,80's,1263529619 +166486,2144,80's classic,1263529621 +166486,2144,Brat Pack,1263529629 +166486,2144,teen angst,1263529632 +166486,2324,foreign language,1270512814 +166486,2324,Holocaust,1270512817 +166486,2324,World War II,1270512806 +166486,2541,manipulation,1263514018 +166486,2541,Sarah Michelle Gellar,1263514008 +166486,2706,Alyson Hannigan,1263514166 +166486,2706,Gross-out,1263514159 +166486,2762,horror,1268587340 +166486,2762,mindfuck,1268587279 +166486,2762,psychology,1268587297 +166486,2762,scary,1268587340 +166486,2762,surprise ending,1268587294 +166486,2762,twist ending,1268587288 +166486,3160,multiple storylines,1263513895 +166486,3967,boxing,1270513756 +166486,4226,good plot twists,1263513846 +166486,4226,memory,1263513838 +166486,4226,mystery,1263513831 +166486,4226,nonlinear,1263513834 +166486,4226,psychological,1263513827 +166486,4226,psychology,1263513829 +166486,4226,twist ending,1263513824 +166486,4967,Oscar (Best Foreign Language Film),1270512981 +166486,4967,war,1270512978 +166486,4973,foreign language,1270512755 +166486,4975,existentialism,1263514040 +166486,4975,sci-fi,1263514046 +166486,7981,foreign language,1270513056 +166486,8589,foreign language,1270513116 +166486,8589,war,1270513111 +166486,8589,war movie,1270513120 +166486,8910,blunt existentialism,1263513924 +166486,8910,existentialism,1263513922 +166486,8910,philosophy,1263513914 +166486,26903,foreign language,1270513327 +166486,27700,foreign language,1270513169 +166486,27803,Oscar (Best Foreign Language Film),1270513021 +166486,30749,history,1263514093 +166486,30867,foreign language,1270513273 +166486,34162,Gay Character,1263513813 +166486,34319,genetics,1263513960 +166486,34319,sci-fi,1263513969 +166486,34319,surprise ending,1263513973 +166486,44191,based on a comic,1263513562 +166486,44191,dystopia,1263513536 +166486,44191,politics,1263513544 +166486,44191,sci-fi,1263513548 +166486,44191,super-hero,1263513545 +166486,44191,thought-provoking,1263513556 +166486,47491,black comedy,1270513225 +166486,47491,foreign language,1270513226 +166486,48394,foreign language,1270513431 +166486,55721,foreign language,1270512769 +166486,55814,foreign language,1270513192 +166486,56339,foreign language,1270512933 +166486,63082,foreign language,1270512788 +166486,63082,nonlinear,1270512785 +166486,65514,foreign language,1270513146 +166486,65514,martial arts,1270513140 +166486,67255,biblical references,1270512911 +166486,67255,foreign language,1270512916 +166486,68945,foreign language,1270513568 +166486,69995,foreign language,1270512729 +166501,50,great ending,1241359295 +166501,5418,assassins,1241359463 +166501,5418,espionage,1241359468 +166501,5418,realistic action,1241359450 +166519,593,hannibal,1257096665 +166519,593,you still wake up sometimes don't you? you wake up in the dark and hear the screaming of the lambs,1257096645 +166519,912,as time goes by,1257095995 +166519,926,bette davis eyes,1257096034 +166519,1096,young meryl streep,1257093811 +166519,2313,anthony hopkins,1257093089 +166519,2313,captivating,1257093192 +166519,2313,characters with great depth,1257093310 +166519,2313,david lynch,1257093054 +166519,2313,melancholic,1257093325 +166519,2739,fat oprah,1257095112 +166519,2858,sometimes there's so much beauty in the world I feel like I can't take it. like my heart's going to cave in,1257096743 +166519,7008,bertolucci,1257094267 +166519,7008,controversial,1257094322 +166519,7008,disturbing,1257094298 +166519,7008,marlon brando,1257094260 +166519,7008,paris,1257094289 +166519,7008,self-destructive romance,1257094249 +166519,7008,the butter scene,1257094308 +166519,37729,tim burton,1257096086 +166519,48560,the ceiling was crushing us. so we made a skylight,1257097503 +166519,58559,batman,1257095889 +166519,58559,great villain,1257095881 +166519,58559,heath ledger,1257095872 +166519,64957,cate blanchett dancing,1257094220 +166519,64957,unusual love story,1257094027 +166519,68157,au revoir shoshana!,1257093391 +166519,68157,christoph waltz,1257092644 +166519,68157,dialogues,1257092663 +166519,68157,melanie laurent,1257093391 +166519,68157,tarantino,1257092957 +166519,68157,vengeance,1257092968 +166519,68157,world war II,1257092973 +166519,70286,creative plot,1257093507 +166519,70286,cute aliens,1257093649 +166519,70286,peter jackson,1257093458 +166519,70286,sci-fi,1257093450 +166519,70286,social commentary,1257093625 +166519,70286,wikus,1257093489 +166554,82202,slow paced,1307373854 +166564,260,Popular,1444753394 +166564,260,sci-fi,1444753383 +166574,260,adventure,1439561386 +166574,260,fantasy,1439561399 +166596,1721,love story,1439313943 +166596,1721,romance,1439313921 +166596,8533,beautiful scenery,1439399860 +166596,8533,great ending,1439399872 +166596,8533,romance,1439399840 +166596,8533,romantic,1439399850 +166596,8533,sad,1439399875 +166596,8533,sentimental,1439399863 +166607,2563,Notable Nudity,1154032915 +166635,161,Gene Hackman,1453086071 +166635,161,mutiny,1453086088 +166635,161,submarine,1453086046 +166635,161,tense,1453086043 +166635,1080,Biblical,1453086226 +166635,1080,British,1453086211 +166635,1080,hilarious,1453086203 +166635,1080,Monty Python,1453086199 +166635,1080,religion,1453086226 +166635,1201,American Civil War,1453084740 +166635,1201,BOUNTY HUNTERS,1453084765 +166635,1201,classic,1453084747 +166635,1201,Clint Eastwood,1453084737 +166635,1201,music,1453084754 +166635,1201,western,1453084756 +166635,1203,all-male cast,1453084660 +166635,1203,courtroom,1453084634 +166635,1203,courtroom drama,1453084642 +166635,1203,good dialogue,1453084630 +166635,1203,justice,1453084638 +166635,1203,old,1453084677 +166635,1203,thought-provoking,1453084649 +166635,1208,Long,1453087073 +166635,1208,Quotable,1453087096 +166635,1208,surreal,1453087026 +166635,1208,too long,1453087100 +166635,1208,Vietnam war,1453087031 +166635,1208,violent,1453087044 +166635,1208,war,1453087039 +166635,1246,boarding school,1453085714 +166635,1246,education,1453085695 +166635,1246,English literature,1453085709 +166635,1246,friendship,1453085693 +166635,1246,High School,1453085690 +166635,1246,philosophy,1453085687 +166635,1246,Quotable,1453085712 +166635,1246,Robin Williams,1453085701 +166635,1246,school,1453085706 +166635,1246,teacher,1453085722 +166635,1246,teen,1453085699 +166635,1931,army,1453084493 +166635,1931,british,1453084525 +166635,1931,class differences,1453084550 +166635,1931,history,1453084584 +166635,1931,old,1453084564 +166635,1931,ships,1453084474 +166635,3498,based on true story,1453086775 +166635,3498,disturbing,1453086763 +166635,3498,grim,1453086788 +166635,3498,prison,1453086765 +166635,3498,Turkey,1453086768 +166635,5012,cross dressing,1453084087 +166635,5012,genderbending,1453084032 +166635,5012,history,1453084164 +166635,5012,impostor,1453084095 +166635,5012,Judaism,1453084021 +166635,5012,love story,1453084178 +166635,5012,musical,1453084067 +166635,5012,religious oppression,1453084105 +166635,5012,shtetl,1453084166 +166635,5012,woman disguised as men,1453084099 +166635,5012,yeshiva,1453084247 +166635,5012,yiddish writer,1453084161 +166635,6932,ambition,1453085403 +166635,6932,Fraud,1453085398 +166635,6932,journalism,1453085385 +166635,6932,magazines,1453085401 +166635,6932,news industry,1453085393 +166635,6932,news media,1453085388 +166635,6932,true story,1453085383 +166635,7502,military,1453086386 +166635,7502,steven spielberg,1453086395 +166635,7502,true story,1453086382 +166635,7502,war,1453086380 +166635,7502,World War II,1453086396 +166635,41997,espionage,1453084857 +166635,41997,israel,1453084843 +166635,41997,Olympics,1453084853 +166635,41997,palestine,1453084861 +166635,41997,Steven Spielberg,1453084846 +166635,41997,true story,1453084850 +166635,55402,hebrew,1453087310 +166635,55402,israeli,1453087286 +166635,55402,joseph cedar,1453087278 +166635,55402,lebanon,1453087283 +166635,55402,military,1453087282 +166635,55402,war,1453087280 +166635,80463,college,1453085340 +166635,80463,computers,1453085325 +166635,80463,internet,1453085336 +166635,80463,setting:Harvard University,1453085348 +166635,80463,true story,1453085332 +166635,93933,academic politics,1453087396 +166635,93933,father-son relationship,1453087364 +166635,93933,good acting,1453087367 +166635,93933,hebrew,1453087456 +166635,93933,Israel,1453087370 +166635,93933,jerusalem,1453087489 +166635,93933,jewish studies,1453087486 +166635,93933,Joseph Cedar,1453087373 +166635,93933,open ending,1453087439 +166635,93933,talmud,1453087398 +166635,108289,hostages,1453085065 +166635,108289,true story,1453085074 +166635,130680,airplane,1453084986 +166635,130680,commando,1453084969 +166635,130680,hostages,1453084977 +166635,130680,israeli,1453084960 +166635,130680,real story,1453085000 +166642,2571,alternate reality,1439255991 +166642,2571,artificial intelligence,1439256023 +166642,2571,hackers,1439256050 +166642,2571,martial arts,1439255943 +166642,2571,sci-fi,1439255929 +166642,2571,thought-provoking,1439256059 +166642,2571,virtual reality,1439256034 +166642,55247,great soundtrack,1439256281 +166642,55247,self discovery,1439256239 +166642,68319,comic book,1439256163 +166642,68319,hugh jackman,1439256157 +166642,68319,Marvel,1439256102 +166642,68319,superhero,1439256145 +166654,113348,action,1428781211 +166654,113348,fun,1428781211 +166654,113348,ninja,1428781211 +166671,123,excellent,1189478877 +166671,663,Excellent just excellent,1189478630 +166671,8984,great soundtrack,1189478902 +166671,35836,funny shit,1189478631 +166671,46578,annoying,1189478689 +166693,260,classic,1443199698 +166693,260,space action,1443199710 +166720,52281,Action,1202580946 +166720,52281,Crime,1202580952 +166720,52281,Gore,1202580976 +166720,52281,Sci-fi,1202580958 +166720,52281,Thriller,1202580966 +166733,260,incredible lenses,1435776721 +166733,260,John Williams music,1435776811 +166733,260,luke skywalker,1435776807 +166733,296,music,1435861844 +166733,296,retro dance,1435861844 +166733,296,Tarantino,1435861844 +166733,858,actors,1435861325 +166733,858,al pacino,1435861325 +166733,858,marlon brando,1435861325 +166733,858,music,1435861324 +166733,2931,Emir Kusturica,1435860975 +166733,2931,freedom from society,1435860936 +166733,2931,goran bregovic,1435860975 +166733,2931,independent living,1435860936 +166735,2485,Freddie Prinze Jr.,1295559029 +166735,2581,Raja Gosnell,1295558530 +166735,2581,romance,1295558517 +166735,4141,naive,1294446130 +166735,5957,the end,1294446001 +166735,6155,classic chick flick,1294445960 +166735,6155,funny,1294445973 +166735,6593,lindsay lohan,1295558843 +166735,6593,switch,1295558826 +166735,7450,chemistry,1294446033 +166735,7450,fire between couple,1294446039 +166735,8643,romance,1295558342 +166735,33145,chemistry,1294446501 +166735,33145,romance,1294446494 +166735,37386,cinematography,1294449171 +166735,37386,stylized,1294449187 +166735,37386,visually appealing,1294449195 +166735,47122,switch,1293845266 +166735,50954,high school,1293844629 +166735,54734,Amanda Bynes,1295558696 +166735,54734,amanda bynes acting,1295558744 +166735,54734,over the top,1295558723 +166735,56949,chick flick,1293844555 +166735,56949,Katherine Heigl,1295559217 +166735,56949,love story,1293844553 +166735,59421,ashton kutcher,1294446258 +166735,59421,comedy,1294446234 +166735,59421,entertaining,1294446244 +166735,59421,funny!,1294446274 +166735,59421,romantic,1294446297 +166735,62265,Colin Firth,1294445876 +166735,62439,Jason Biggs,1294446338 +166735,69406,chemistry between actors,1294446420 +166735,69406,romantic,1294446414 +166735,70183,cute,1294446083 +166735,70183,entertaining,1294446094 +166735,70183,good chick flick,1294446108 +166741,1,animated,1140391878 +166741,1,fun,1140391878 +166741,22,thriller,1368172886 +166741,32,Brad Pitt,1140391372 +166741,32,Bruce Willis,1140391372 +166741,32,excellent,1140391372 +166741,32,Gilliam,1140391372 +166741,32,sci-fi. dark,1140391372 +166741,32,thriller,1140391372 +166741,36,death,1140391775 +166741,36,murder,1140391765 +166741,36,strong,1140391765 +166741,47,scary,1140391838 +166741,47,strange,1140391838 +166741,50,funny,1139736674 +166741,50,tricky,1139736674 +166741,50,whodunnit,1139736674 +166741,110,bloodshed,1140391741 +166741,110,hero,1140391741 +166741,110,Mel Gibson,1140391741 +166741,110,Scotland,1140391741 +166741,111,dark,1368172645 +166741,111,mental illness,1368172732 +166741,161,tense,1368172871 +166741,198,mystic,1140391337 +166741,198,sci-fi,1140391335 +166741,216,stupid,1368172855 +166741,260,sci-fi,1140391850 +166741,293,beautiful,1140391812 +166741,293,shooting,1140391812 +166741,293,strong,1140391811 +166741,296,one-liners,1140391826 +166741,296,Tarantino,1140391827 +166741,308,beautiful,1140391872 +166741,308,humane,1140391872 +166741,308,touching,1140391872 +166741,337,excellent,1140391888 +166741,474,tense,1368172871 +166741,541,classic,1140391086 +166741,541,dark,1140391086 +166741,541,sci-fi,1140391086 +166741,551,animated,1140391238 +166741,551,beautiful,1140391238 +166741,551,dark,1140391238 +166741,551,gothic,1140391238 +166741,551,whimsical,1140391238 +166741,555,shooting,1139645827 +166741,555,violent,1368172898 +166741,745,aardman,1140391394 +166741,745,animated,1140391385 +166741,745,clay,1140391385 +166741,745,funny,1140391385 +166741,832,tense,1368172871 +166741,832,thriller,1368172886 +166741,861,police,1368172826 +166741,1059,action,1140391483 +166741,1059,cover,1140391483 +166741,1059,romantic,1140391483 +166741,1089,violent,1368172898 +166741,1148,aardman,1140391423 +166741,1148,animated,1140391423 +166741,1148,clay,1140391423 +166741,1148,funny,1140391423 +166741,1148,penguin,1140391456 +166741,1175,dark,1368172645 +166741,1199,dark,1140391100 +166741,1199,satire,1140391100 +166741,1199,sci-fi,1140391100 +166741,1206,violent,1368172898 +166741,1214,tense,1368172871 +166741,1222,war,1139737328 +166741,1288,classic,1140391345 +166741,1288,comedy,1140391345 +166741,1288,music,1140391345 +166741,1288,satire,1140391345 +166741,1298,Bob Geldof,1140391319 +166741,1298,classic,1140391319 +166741,1298,dark,1140391319 +166741,1298,music,1140391319 +166741,1298,progressive,1140391319 +166741,1357,mental illness,1368172732 +166741,1370,action,1139645563 +166741,1370,explosions,1139645563 +166741,1370,Harlin,1139645528 +166741,1390,politics,1368172841 +166741,1464,Lynch,1140391166 +166741,1464,mystery,1368172743 +166741,1464,strange,1140391145 +166741,1597,thriller,1368172887 +166741,1610,thriller,1368172887 +166741,1639,funny,1140391117 +166741,1639,gay,1140391117 +166741,1639,sexy,1140391117 +166741,1641,disco,1140391191 +166741,1641,funny,1140391178 +166741,1641,humane,1140391191 +166741,1641,striptease,1140391178 +166741,1772,sequels,1155077377 +166741,2026,high school,1368172708 +166741,2058,tense,1368172871 +166741,2076,dark,1368172645 +166741,2115,father-son relationship,1368172678 +166741,2353,thriller,1368172887 +166741,2383,police,1368172826 +166741,2882,nazis,1368172766 +166741,2959,violent,1368172899 +166741,3052,funny,1140391134 +166741,3052,religion,1140391134 +166741,3052,satire,1140391134 +166741,3256,tense,1368172871 +166741,3256,thriller,1368172886 +166741,3980,inspirational,1368172720 +166741,4027,bluegrass,1140391296 +166741,4027,coen brothers,1140391296 +166741,4027,funny,1140391296 +166741,4027,homeros,1140391296 +166741,4027,odysseus,1140391296 +166741,4306,animation,1140391618 +166741,4306,funny,1140391618 +166741,4467,Nudity (Topless - Brief),1162451047 +166741,5400,cia,1200863953 +166741,5400,nuclear bomb,1200863953 +166741,5400,russians,1200863953 +166741,5400,spy thriller,1200863953 +166741,5618,animated,1140391706 +166741,5618,anime,1140391714 +166741,5618,beautiful,1140391706 +166741,5618,strange,1140391706 +166741,5785,stupid,1368172855 +166741,7034,realistic,1140391694 +166741,7034,sad,1140391694 +166741,7034,strong,1140391694 +166741,7034,teen,1140391694 +166741,7160,mental illness,1368172732 +166741,7193,Harlin,1162451437 +166741,7254,excellent,1155076556 +166741,7361,Charlie Kaufman,1140391635 +166741,7361,comedy,1140391507 +166741,7361,Jim Carrey,1140391670 +166741,7361,Kate Winslet,1140391670 +166741,7361,strange,1140391507 +166741,7649,sci-fi,1139737392 +166741,8507,classic,1140391517 +166741,8507,dark,1140391517 +166741,8507,strange,1140391517 +166741,8507,touching,1140391517 +166741,8589,history,1139737253 +166741,8589,independence,1139737253 +166741,8589,war,1139737253 +166741,8781,politics,1368172841 +166741,41997,covert operation,1139736573 +166741,41997,olympics,1139736573 +166741,41997,serious,1139736573 +166741,41997,violence,1139736573 +166741,68358,alternate reality,1242040221 +166741,68358,sci fi,1242040203 +166741,68358,space,1242040194 +166741,68358,Star Trek,1242040190 +166757,2721,Cute,1181701512 +166819,60950,philosophical,1265793002 +166819,60950,Scarlett Johansson,1265793007 +166819,60950,scenic,1265793012 +166819,74458,psychological,1267378217 +166862,6,realistic action,1368285041 +166862,39,teenager,1368284795 +166862,50,con men,1368285824 +166862,58,beautifully filmed,1368284848 +166862,150,stranded,1368285242 +166862,163,realistic action,1368285041 +166862,289,destiny,1368284474 +166862,296,gratuitous violence,1368285689 +166862,353,dark hero,1368284328 +166862,356,destiny,1368284474 +166862,368,con men,1368285825 +166862,377,good action,1368284369 +166862,380,arnold,1368284550 +166862,434,good action,1368284368 +166862,485,arnold,1368284551 +166862,531,beautifully filmed,1368284848 +166862,539,destiny,1368284474 +166862,589,arnold,1368284550 +166862,592,dark hero,1368284328 +166862,648,spies,1368285740 +166862,736,chase,1368285453 +166862,786,realistic action,1368285040 +166862,838,costume drama,1368285076 +166862,996,gangs,1368285917 +166862,1011,racing,1368284885 +166862,1036,good action,1368284369 +166862,1036,realistic action,1368285041 +166862,1172,foreign,1368285476 +166862,1197,modern fantasy,1368285635 +166862,1240,arnold,1368284550 +166862,1276,gangs,1368285917 +166862,1285,teenager,1368284795 +166862,1365,french,1368285962 +166862,1446,foreign,1368285476 +166862,1517,spies,1368285740 +166862,1680,destiny,1368284474 +166862,1682,modern fantasy,1368285635 +166862,1894,stranded,1368285242 +166862,1953,chase,1368285453 +166862,1968,teenager,1368284795 +166862,2278,chase,1368285453 +166862,2329,gangs,1368285917 +166862,2353,chase,1368285453 +166862,2357,foreign,1368285476 +166862,2572,teenager,1368284795 +166862,2686,beautifully filmed,1368284849 +166862,2690,costume drama,1368285077 +166862,2706,teenager,1368284795 +166862,2916,arnold,1368284550 +166862,2918,teenager,1368284795 +166862,2943,french,1368285962 +166862,2948,spies,1368285740 +166862,2951,gangs,1368285917 +166862,3083,foreign,1368285476 +166862,3300,stranded,1368285243 +166862,4085,chase,1368285453 +166862,4383,french,1368285962 +166862,4638,stranded,1368285243 +166862,4703,french,1368285962 +166862,4963,con men,1368285825 +166862,4967,foreign,1368285476 +166862,4993,modern fantasy,1368285635 +166862,5010,realistic action,1368285040 +166862,5418,spies,1368285740 +166862,5782,french,1368285962 +166862,5989,con men,1368285824 +166862,6383,racing,1368284884 +166862,6874,dark hero,1368284328 +166862,6874,gratuitous violence,1368285689 +166862,7090,beautifully filmed,1368284848 +166862,7387,grindhouse,1368285287 +166862,8604,cars,1206581661 +166862,8605,cars,1206581670 +166862,8665,spies,1368285740 +166862,26131,french,1368285962 +166862,27193,cars,1206581673 +166862,27193,France,1206581675 +166862,32587,gratuitous violence,1368285689 +166862,54286,chase,1368285453 +166862,58303,foreign,1368285476 +166898,913,cine negro,1432722498 +166898,913,classic,1432722498 +166898,913,suspense,1432722498 +166933,260,Overrated,1433139658 +166933,260,space opera,1433139643 +166947,527,holocaust,1450037572 +166947,2959,Palahnuik,1450037601 +166953,74458,Martin Scorsese,1310595020 +166953,82459,Coen Brothers,1298289025 +166963,541,dystopia,1353513236 +166963,551,Tim Burton,1353527293 +166963,5618,Studio Ghibli,1353513074 +166963,66934,superhero,1353513212 +166963,79132,surreal,1353513108 +166972,45666,Nudity (Topless),1243470734 +166972,55765,Denzel Washington,1243273629 +166985,260,rebellion against dictatorship,1444741724 +166985,260,revolutionary movement,1444741705 +166985,260,sci-fi,1444741662 +166985,260,space adventure,1444741682 +167000,260,fantasy,1435375512 +167000,260,Science Fiction,1435375498 +167029,337,whimsical,1185500478 +167029,4979,lots of characters,1185500593 +167029,4979,new york,1185500595 +167029,4979,quirky,1185500611 +167029,4979,urbane,1185500621 +167029,4979,witty,1185500600 +167029,49932,surreal,1185500436 +167056,112552,boring,1435776125 +167056,112552,no story,1435776125 +167056,112552,why is this a movie,1435776125 +167059,3863,Jennifer Lopez,1243430867 +167059,3863,surreal,1243430872 +167059,60684,Adaptation,1243428579 +167059,60684,author:Alan Moore,1243428589 +167059,60684,based on a comic,1243428560 +167059,60684,CG animation,1243428575 +167059,60684,Length,1243428608 +167059,60684,storytelling,1243428574 +167059,60684,Zack Snyder,1243428595 +167059,68205,Amy Smart,1243429106 +167059,68205,fast paced,1243429118 +167059,68205,gore,1243429113 +167059,68205,Jason Statham,1243429109 +167059,68205,story,1243429130 +167059,68205,unrealistic,1243429111 +167059,93510,drugs,1357372415 +167059,93510,funny,1357372404 +167087,47,David Fincher,1452626683 +167087,923,classic,1452625943 +167087,1265,cosmic comedy,1452627567 +167087,1265,metaphysics,1452627568 +167087,1304,slice of life,1452626036 +167087,1407,meta,1452626293 +167087,1610,MIND GAMES,1452625535 +167087,2712,Erotic,1452627494 +167087,2959,David Fincher,1452626707 +167087,3796,underrated,1452627350 +167087,4973,vibrant,1452625613 +167087,6787,conspiracy,1452626563 +167087,6787,political,1452626556 +167087,36517,conspiracy,1452628769 +167087,44199,intelligent thriller,1452627636 +167087,46976,cosmic comedy,1452627156 +167087,46976,metaphysics,1452627164 +167087,52328,madness,1452626833 +167087,68157,meta,1452625485 +167087,68237,isolation,1452626809 +167087,68237,solitude,1452626815 +167087,79702,stylized,1452625797 +167087,89753,Cold War,1452625702 +167087,89753,espionage,1452625694 +167087,90746,treasure hunt,1452625567 +167087,93840,meta,1452625432 +167087,99007,offbeat,1452625655 +167087,106920,thought-provoking,1452626775 +167087,115713,thought provoking,1452626787 +167087,128838,Guillermo del Toro,1452626948 +167087,128838,vivid,1452627514 +167164,4901,espionage,1420835719 +167176,115713,AI,1447204512 +167177,83349,Jay Chou,1382958778 +167197,99110,drama,1422185351 +167197,99110,lizzy caplan,1422185351 +167197,99110,romcom,1422185351 +167200,4776,twist ending,1444950538 +167200,63876,civil rights,1446389555 +167200,106920,artificial intelligence,1444950524 +167200,106920,meaning of life,1444950525 +167200,106920,psychology,1444950515 +167210,87232,X-men,1439791917 +167220,1209,Spaghetti Western,1249405375 +167220,1281,imdb top 250,1249405525 +167220,2227,Hitchcock,1249405560 +167220,2951,spaghetti western,1249406177 +167220,3030,imdb top 250,1249405136 +167220,3285,drugs,1249358343 +167220,3285,marijuana,1249358347 +167220,3285,romance,1249358345 +167220,3362,Al Pacino,1249406013 +167220,3362,dark comedy,1249406005 +167220,3362,true story,1249406002 +167220,3462,black and white,1249405830 +167220,3681,spaghetti western,1249406020 +167220,3823,easily confused with other movie(s) (title),1249358106 +167220,3823,Whoopi Goldberg,1249358111 +167220,3882,cheerleading,1249358453 +167220,3882,Kirsten Dunst,1249358454 +167220,4406,black and white,1249407054 +167220,4718,teen,1249358262 +167220,4801,Bette Davis,1249404976 +167220,4816,ben stiller,1249358142 +167220,4816,fashion,1249358139 +167220,4816,Will Ferrell,1249358141 +167220,5283,teen,1249358050 +167220,5574,action,1249357972 +167220,5574,heist,1249357970 +167220,5882,based on a book,1249357992 +167220,5882,pirates,1249357990 +167220,5882,space,1249357995 +167220,6294,bullshit history,1249358504 +167220,6548,drugs,1249358316 +167220,6548,Nudity (Topless),1249358314 +167220,6548,Will Smith,1249358318 +167220,6707,Nudity (Topless),1249358521 +167220,6754,vampire,1249358029 +167220,6754,vampires,1249358027 +167220,6754,werewolf,1249358032 +167220,6887,Cuba Gooding Jr.,1249357754 +167220,6887,disability,1249357747 +167220,6887,true story,1249357750 +167220,7074,AFI 100 (Laughs),1249405094 +167220,7333,Old,1249404356 +167220,7458,Action,1249358004 +167220,7458,Brad Pitt,1249358008 +167220,7458,War,1249358006 +167220,8866,romantic,1249358092 +167220,8866,tennis,1249358094 +167220,8969,chick flick,1249358443 +167220,25773,AFI 100 (Movie Quotes),1249406036 +167220,25773,National Film Registry,1249406042 +167220,33669,chick flick,1249357841 +167220,33669,library,1249357844 +167220,37386,dystopia,1249358236 +167220,37386,post-apocalyptic,1249358234 +167220,37386,sci-fi,1249358238 +167220,44613,based on a true story,1249357907 +167220,44613,Dance,1249357902 +167220,44613,urban,1249357904 +167220,44889,Musical,1249357721 +167220,44889,weed,1249357716 +167220,45499,comic book,1249358123 +167220,45499,sci-fi,1249358125 +167220,45499,superhero,1249358126 +167220,47640,beer,1249358361 +167220,47640,guy movie,1249358365 +167220,47640,Nudity (Topless),1249358363 +167220,48142,black comedy,1249358398 +167220,48142,conspiracy,1249358410 +167220,49396,Jack Black,1249357924 +167220,49396,rock and roll,1249357926 +167220,49396,satire,1249357929 +167220,49856,little dialogues,1249405578 +167220,51063,comedy,1249357950 +167220,51063,humor,1249357954 +167220,51063,rickyism,1249357952 +167220,52245,figure skating,1249358427 +167220,52245,slapstick,1249358429 +167220,53038,less than 300 ratings,1249407140 +167220,53038,National Film Registry,1249407134 +167220,53127,easily confused with other movie(s) (title),1249358482 +167220,53127,Nudity (Full Frontal),1249358479 +167220,53207,Al Pacino,1249358218 +167220,53207,Nudity (Rear),1249358216 +167220,54999,Clive Owen,1249357818 +167220,54999,satire,1249357820 +167220,55282,Josh Hartnett,1249358206 +167220,58105,children,1249357865 +167220,61646,pregnancy,1249404388 +167220,62792,Colin Farrell,1249357736 +167220,62792,Edward Norton,1249357731 +167220,65642,Nudity (Topless),1250560965 +167220,67799,To See,1249358510 +167220,68237,clones,1249404297 +167220,68237,moon,1249404295 +167220,68237,space,1249404299 +167220,69140,based on a play,1249357885 +167220,69140,cannibalism,1249357890 +167220,69140,serial killer,1249357887 +167237,71322,drama,1425152905 +167237,71322,religion,1425152905 +167237,71322,teenage girl,1425152905 +167237,103233,animation,1424535791 +167237,103233,comedy,1424535791 +167237,103233,superhero,1424535791 +167251,480,Oscar Winner,1170036194 +167261,110,GREAT MOVIE,1143631352 +167293,260,hero's journey,1435700893 +167293,260,sci-fi,1435700879 +167312,104841,bad science,1431778613 +167312,104841,George Clooney,1431778584 +167312,104841,sandra bullock,1431778589 +167312,104841,sci-fi,1431778602 +167312,104841,space,1431778576 +167312,108932,fun,1431778510 +167312,108932,original,1431778493 +167312,115617,animation,1431778682 +167312,115617,bravery,1431778682 +167312,115617,friendship,1431778682 +167357,104374,time travel,1444162171 +167381,527,based on a true story,1429654766 +167381,527,thought-provoking,1429654746 +167381,593,cannibalism; uncomfortable; crime; serial killer;,1429654874 +167381,593,disturbing,1429654874 +167381,593,suspenseful,1429654874 +167381,4886,funny,1429654906 +167381,4886,Pixar,1429654900 +167381,8368,based on a book,1429654954 +167381,8368,harry potter,1429654931 +167381,8368,Magic,1429654941 +167392,260,good science fiction,1431954538 +167392,260,old republic,1431954680 +167419,150,Tom Hanks,1148790108 +167419,1240,best low budget ever made,1151417377 +167419,1271,Drama,1148790230 +167419,39183,love story,1151334570 +167419,45722,pirates,1153028121 +167419,45722,sequels,1153028122 +167465,260,space action,1433544653 +167465,260,space adventure,1433544659 +167476,296,crime,1218211494 +167476,296,dark comedy,1218211484 +167476,296,drugs,1218211476 +167476,296,organized crime,1218211487 +167494,318,classic,1138227218 +167494,34405,scifi,1138226963 +167515,329,Star Trek,1432610580 +167515,1610,action,1431560183 +167515,1610,Adventure,1431560134 +167515,1610,cold war,1431560604 +167515,1610,sean connery,1431560076 +167515,1610,submarine,1431560162 +167515,1610,thriller,1431560051 +167515,1610,Tom Clancy,1431645564 +167515,7560,Bechdel Test:Fail,1433450852 +167515,7560,Cold War,1433450839 +167515,7560,nuclear,1433450870 +167515,8207,assassin,1431056243 +167515,8207,frederick forsyth,1431056243 +167515,8207,thriller,1431056243 +167515,86377,not a movie,1431561065 +167515,86377,stand-up comedy,1431561072 +167515,89085,espionage,1434335754 +167515,89085,Helen Mirren,1434335767 +167515,89085,Israel,1434335748 +167515,89085,Mossad,1434335758 +167515,89085,Nazis,1434335764 +167515,89085,spy,1434335761 +167515,89753,author:John le Carré,1434168667 +167515,89753,Beautifully shot,1434329257 +167515,89753,espionage,1434168648 +167515,89753,Spies,1434329260 +167515,108583,comedy,1433856613 +167515,108583,John Cleese,1433856626 +167515,108583,tv series,1433856608 +167515,114494,hackers,1435179903 +167515,114494,hacking,1435179891 +167515,114494,twists & turns,1435179909 +167515,115713,artificial intelligence,1432521113 +167515,115713,futuristic,1432521173 +167515,115713,nudity (full frontal),1432521143 +167515,115713,technology,1432521129 +167515,115713,thought provoking,1432521163 +167515,115713,thriller,1432521160 +167515,116797,Alan Turing,1433889908 +167515,116797,code breaking,1433889933 +167515,116797,Computers,1433889930 +167515,116797,cryptography,1433889904 +167515,116797,mathematics,1433889912 +167515,117444,animation,1437370293 +167515,132112,Airforce,1431357155 +167515,132112,Drone,1431357061 +167515,132112,drones,1431901265 +167515,132112,Military,1431357071 +167515,132112,murder,1431901265 +167515,132112,Terrorism,1431357053 +167515,132112,War,1431357042 +167521,1265,groundhogs,1305253916 +167525,2535,disaster,1140168972 +167530,32,great ending,1368794583 +167530,32,original,1368793998 +167530,50,storytelling,1368794060 +167530,70,cult classic,1368794537 +167530,111,loneliness,1368794276 +167530,150,dramatic,1368794428 +167530,169,family,1368794565 +167530,204,action,1368794446 +167530,232,relationships,1368794464 +167530,296,storytelling,1368794060 +167530,318,great acting,1368794521 +167530,318,great ending,1368794583 +167530,337,Fair,1150841735 +167530,337,Johnny Depp,1150841764 +167530,337,Leonardo DiCaprio,1150841767 +167530,455,family,1368794565 +167530,483,coming of age,1151534965 +167530,483,heart-wrenching,1151534965 +167530,483,Stephen Soderberg,1151534965 +167530,593,great acting,1368794521 +167530,668,criterion,1368794256 +167530,804,relationships,1368794464 +167530,858,great acting,1368794521 +167530,1015,family,1368794565 +167530,1016,family,1368794565 +167530,1172,mentor,1368794022 +167530,1175,weird,1368794484 +167530,1199,cerebral,1368794697 +167530,1199,visually appealing,1368794500 +167530,1199,weird,1368794484 +167530,1241,cult classic,1368794537 +167530,1248,criterion,1368794256 +167530,1255,cult classic,1368794537 +167530,1275,mentor,1368794022 +167530,1281,talky,1368794655 +167530,1299,dramatic,1368794428 +167530,1307,relationships,1368794464 +167530,1527,visually appealing,1368794501 +167530,1552,action,1368794446 +167530,1608,action,1368794446 +167530,1623,horror,1368794551 +167530,1639,relationships,1368794464 +167530,1704,mentor,1368794022 +167530,1722,action,1368794446 +167530,1748,cerebral,1368794698 +167530,1952,loneliness,1368794276 +167530,1991,horror,1368794551 +167530,2076,weird,1368794484 +167530,2167,action,1368794446 +167530,2262,relationships,1368794464 +167530,2291,original,1368793998 +167530,2315,horror,1368794551 +167530,2335,comedy,1368794037 +167530,2371,comedy,1368794038 +167530,2420,mentor,1368794022 +167530,2460,horror,1368794551 +167530,2762,great ending,1368794583 +167530,2858,great acting,1368794521 +167530,3006,dramatic,1368794428 +167530,3018,horror,1368794551 +167530,3070,cult classic,1368794536 +167530,3105,dramatic,1368794428 +167530,3157,family,1368794565 +167530,3421,comedy,1368794037 +167530,3470,criterion,1368794256 +167530,3986,action,1368794446 +167530,4085,comedy,1368794037 +167530,4226,storytelling,1368794060 +167530,4725,horror,1368794551 +167530,4878,original,1368793998 +167530,4878,weird,1368794484 +167530,5945,loneliness,1368794276 +167530,5995,dramatic,1368794428 +167530,6188,comedy,1368794038 +167530,6987,criterion,1368794256 +167530,7147,story,1368794684 +167530,7153,great ending,1368794583 +167530,7327,criterion,1368794256 +167530,7572,adapted from the play,1171920333 +167530,8154,criterion,1368794256 +167530,8641,comedy,1368794037 +167530,8981,relationships,1368794464 +167530,37729,visually appealing,1368794500 +167530,60684,visually appealing,1368794501 +167530,63853,Too Long,1295752817 +167530,64839,loneliness,1368794276 +167530,78759,Blair,1314474305 +167530,78759,Clinton,1314474305 +167530,79132,cerebral,1368794697 +167530,91960,Amazingly Bad,1337484461 +167530,91960,Effeminate Tree,1337484484 +167530,91960,Riff Trax Fodder,1337484523 +167530,104879,snakes,1415489110 +167530,117857,documentary,1417317980 +167543,37386,Post apocalyptic,1306795462 +167543,37386,sci-fi,1306795436 +167543,37386,visually appealing,1306795422 +167543,80489,action,1428262847 +167543,80489,bank robbery,1428262832 +167543,80489,Ben Affleck,1428262836 +167543,80489,Boston,1428262845 +167543,81641,based on a true story,1428263050 +167543,81641,CIA,1428263048 +167543,89492,based on a true story,1331310795 +167543,89492,Brad Pitt,1331310787 +167543,89492,drama,1331310782 +167543,89492,Realistic,1331310793 +167543,96811,cinematography,1428262885 +167543,96811,excellent acting,1428262888 +167543,96811,realistic relationships,1428262881 +167543,98961,Jessica Chastain,1428263069 +167543,98961,military,1428263082 +167543,98961,terrorism,1428263077 +167549,31364,awesome,1437779129 +167549,31364,breathtaking,1437779129 +167549,31364,tragedy,1437779129 +167552,2366,adventure,1162632933 +167552,2640,comic book,1162632946 +167564,260,Science Fiction,1431680453 +167564,260,space travel,1431680475 +167564,296,action packed,1431680899 +167564,296,confusing,1431680899 +167564,296,stylish,1431680899 +167564,120138,comedy,1431680833 +167588,71057,Simple,1255793698 +167605,260,classic sci-fi,1443206626 +167605,260,space,1443206634 +167632,1136,absurd,1453207975 +167632,1136,bizarre ending,1453207982 +167632,1136,Monty Python,1453207969 +167632,115231,neighbour,1453207928 +167633,912,classic,1139107497 +167633,1923,comedy plot classic,1139107495 +167682,4878,dreamlike,1453209680 +167682,4878,hallucinatory,1453209674 +167682,4878,mindfuck,1453209687 +167682,4878,surreal,1453209669 +167682,4878,thought-provoking,1453209691 +167682,4878,time travel,1453209666 +167682,4878,twist ending,1453209690 +167682,7236,post-apocalyptic,1453209732 +167683,356,enjoyab,1434581824 +167683,356,funny,1434581824 +167683,356,good,1434581824 +167703,778,social commentary,1361205698 +167703,2313,David Lynch,1361205144 +167703,4848,David Lynch,1361206057 +167703,4848,dreamlike,1361205890 +167703,4848,mystery,1361205920 +167703,4848,nonlinear,1361205879 +167703,4848,surreal,1361205902 +167703,4848,surrealism,1361205913 +167703,5618,surreal,1361205711 +167703,5673,Adam Sandler,1361722910 +167703,49932,disturbing,1361205785 +167713,1,computer animation,1241947306 +167713,1,funny,1241947317 +167713,1,Pixar,1244499691 +167713,63,Wayans Brothers,1244499740 +167713,66,Crap,1244499992 +167713,66,imdb bottom 100,1244499996 +167713,110,classic,1244500517 +167713,110,historical,1244500506 +167713,110,medieval,1244500521 +167713,110,Nudity (Topless),1244500510 +167713,110,revenge,1244500533 +167713,110,sword fight,1244500530 +167713,110,violent,1244500527 +167713,260,aliens,1244500489 +167713,260,atmospheric,1244500476 +167713,260,classic,1244500491 +167713,260,sci-fi,1244500457 +167713,260,space,1244500460 +167713,260,Star Wars,1244500466 +167713,296,action,1244500301 +167713,296,Bruce Willis,1244500280 +167713,296,classic,1244500282 +167713,296,crime,1244500285 +167713,296,organized crime,1244500275 +167713,296,Quentin Tarantino,1244500266 +167713,296,quirky,1244500288 +167713,296,Samuel L. Jackson,1244500270 +167713,296,stylized,1244500272 +167713,296,violence,1244500290 +167713,318,classic,1244500423 +167713,318,feel good,1244500418 +167713,318,inspirational,1244500425 +167713,318,prison escape,1244500429 +167713,318,revenge,1244500432 +167713,318,thought-provoking,1244500438 +167713,318,twist ending,1244500414 +167713,353,gritty,1244499871 +167713,356,classic,1244500336 +167713,356,historical,1244500352 +167713,356,Oscar (Best Effects - Visual Effects),1244500340 +167713,508,gay,1244500069 +167713,508,homosexual theme,1244500073 +167713,508,overrated,1244500075 +167713,527,black and white,1244500115 +167713,555,Christopher Walken,1244499669 +167713,555,Elvis iconography,1241947159 +167713,555,James Gandolfini,1241947147 +167713,555,shooting,1241947124 +167713,555,violence,1241947132 +167713,593,crime,1244500373 +167713,593,Hannibal Lecter,1244500366 +167713,593,serial killer,1244500376 +167713,593,violent,1244500378 +167713,920,too long,1244500244 +167713,1704,sucked,1244500225 +167713,3147,deliberate,1244499946 +167713,3147,long,1244499940 +167713,3147,male nudity,1244499931 +167713,3421,te kijken,1204218224 +167713,3552,te kijken,1200840442 +167713,3761,te kijken,1244750026 +167713,3825,dumb movie,1244499845 +167713,3825,trash,1244499854 +167713,3825,very girlish,1244499840 +167713,3969,overrated,1244500026 +167713,4310,Kate Beckinsale,1244500045 +167713,4310,Overrated,1244500049 +167713,4310,Too long,1244500047 +167713,4367,boring,1244499969 +167713,4963,atmosphere,1241950303 +167713,4963,casino,1241950289 +167713,4963,crime,1241950295 +167713,4963,ensemble cast,1241950329 +167713,4963,feel good movie,1241950326 +167713,4963,Las Vegas,1241950278 +167713,5452,Kirstie Alley,1244500008 +167713,6218,football,1244499792 +167713,6218,indians,1244499789 +167713,6218,predictable,1244499796 +167713,6218,soccer,1244499781 +167713,6218,sports,1244499794 +167713,7361,Charlie Kaufman,1243448588 +167713,7361,cult film,1243448595 +167713,7361,thought-provoking,1243448601 +167713,7454,monsters,1241946487 +167713,7454,vampires,1241946471 +167713,7454,werewolves,1241946491 +167713,8865,future art deco,1244500148 +167713,8865,giant robots,1244500136 +167713,43919,Not funny,1244499886 +167713,43919,revoltingly bad,1244499900 +167713,43919,stinking heap of shit,1244499894 +167713,43919,stupid,1244499888 +167713,43919,terrible,1244499896 +167713,46965,Snakes,1155918423 +167713,48738,te kijken,1200857069 +167713,50798,unfunny,1244499760 +167713,55805,te kijken,1231848477 +167713,64614,classic car,1248547102 +167713,64614,Clint Eastwood,1248547101 +167713,64614,culture clash,1248547097 +167713,64614,gangsters,1248547109 +167713,64614,Political Correctness,1248547124 +167713,64614,premise,1248547115 +167713,64614,racist humor,1248547095 +167713,66090,bad ending,1242667695 +167713,66090,Tense.,1242667722 +167713,68791,action,1244748819 +167713,68791,artificial intelligence,1244748817 +167713,68791,cheesy morals,1244748813 +167713,68791,effects,1244748830 +167713,68791,no blood,1244748806 +167713,68791,robots,1244748862 +167713,68791,sci-fi,1244748868 +167713,69122,te kijken,1244749930 +167753,53129,netflix,1187485919 +167759,2019,Akira Kurosawa,1223906867 +167759,2019,Japan,1223906849 +167759,2019,samurai,1223906845 +167759,2420,martial arts,1223906775 +167759,7153,fantasy,1223907091 +167813,2571,related:The Matrix (1999),1445782360 +167813,7153,lord of the rings,1445782548 +167823,1648,black comedy,1340639817 +167823,1648,dark comedy,1340639809 +167823,1648,mental illness,1340639813 +167823,2413,cult classic,1340765986 +167823,2413,quirky,1340765980 +167830,88744,action,1317569640 +167830,88744,apes,1317569640 +167830,88744,beautiful,1317569640 +167830,88744,inspiring,1317569640 +167830,88744,planet,1317569640 +167830,88744,powerful,1317569640 +167830,88744,reboot,1317569640 +167830,88744,touching,1317569572 +167840,260,adventure,1431356367 +167840,260,Science Fiction,1431356357 +167840,260,space,1431356376 +167840,260,space opera,1431356370 +167844,260,EPIC,1436913028 +167844,260,must see,1436913051 +167867,170,Angelina Jolie,1279885081 +167867,170,computers,1279885079 +167867,170,cult film,1279885084 +167867,170,inaccurate,1279885068 +167867,2357,Brazil,1279887782 +167867,2357,heartwarming,1279887764 +167867,2357,orphans,1279887767 +167867,2357,road trip,1279887775 +167867,2357,teacher,1279887788 +167867,2431,documentary,1279241889 +167867,6016,documentary,1279241718 +167867,7459,based on a book,1279888179 +167867,7459,based on a true story,1279888175 +167867,7459,prison,1279888139 +167867,25774,Luis Buñuel,1281835619 +167867,25774,Luis Buñuel,1281835631 +167867,25774,Max Ernst,1281835650 +167867,26003,documentary,1279890280 +167867,26003,Holocaust,1279890278 +167867,26003,short films,1279421422 +167867,27797,Brazil,1279890163 +167867,32124,adventure,1279888376 +167867,32124,Brazil,1279888365 +167867,32124,comedy,1279888364 +167867,32124,fantasy,1279888386 +167867,32124,foreign language,1279888428 +167867,32124,god,1279888366 +167867,32898,black and white,1279890217 +167867,32898,moon,1279890215 +167867,32898,space,1279890213 +167867,55721,brazil,1279888243 +167867,55721,corruption,1279888246 +167867,55721,Drugs,1279888249 +167867,55721,Favelas,1279888265 +167867,55721,foreign language,1279888261 +167867,55721,Golden Bear (Best Film),1279888281 +167867,55721,police corruption,1279888252 +167867,55721,rio de janeiro,1279888269 +167867,55721,special police forces,1279888274 +167867,55721,urban violence,1279888276 +167867,57044,based on a true story,1279889992 +167867,57044,Brazil,1279889929 +167867,57044,musician,1279889937 +167867,57776,AIDS,1279887956 +167867,57776,Brazil,1279888084 +167867,57776,drugs,1279887974 +167867,57776,drugs & music,1279888047 +167867,57776,homosexuality,1279888006 +167867,57776,music,1279888072 +167867,57776,musicians,1279888070 +167867,57776,Rio de Janeiro,1279888032 +167867,58376,documentary,1279241967 +167867,58972,Abigail Breslin,1279881272 +167867,58972,children's movie,1279881280 +167867,58972,funny moments,1279881285 +167867,58972,Gerard Butler,1279881289 +167867,58972,island,1279881291 +167867,58972,Jodie Foster,1279881294 +167867,61994,Based on a TV show,1279889254 +167867,61994,Brazil,1279889228 +167867,61994,comedy,1279889247 +167867,61994,marriage,1279889262 +167867,65225,documentary,1279241949 +167867,71160,based on a book,1279890096 +167867,71160,independent film,1279890113 +167867,71160,Tolkien,1279890101 +167867,71450,documentary,1279242112 +167867,72308,Edward James Olmos,1279890253 +167867,72308,Galactica,1279890246 +167867,72308,Grace Park,1279890250 +167867,72308,made for TV,1279890238 +167867,72308,plot,1279890261 +167867,77658,Carl Sagan,1279890013 +167867,77658,science,1279890020 +167867,79254,easily confused with other movie(s) (title),1279886102 +167880,296,dark hero,1430318668 +167880,296,quentin tarantino,1430318668 +167880,296,uma thurman,1430318668 +167880,1233,claustrophobic,1301471904 +167880,1233,imdb top 250,1301471899 +167880,1233,submarine,1301471860 +167880,1233,thought-provoking,1301471872 +167880,1233,U-boat,1301471861 +167880,1233,underwater,1301471897 +167880,1233,World War II,1301471870 +167880,1704,Ben Affleck,1299342286 +167880,1704,mathematics,1299342288 +167880,1704,Matt Damon,1299342281 +167880,1704,Robin Williams,1299342283 +167880,3578,action,1298059537 +167880,3578,imdb top 250,1298059543 +167880,3578,Rome,1298059531 +167880,3578,sword fight,1298059534 +167880,4033,cuban missile crisis,1298070688 +167880,4033,historical,1298070700 +167880,4033,Political,1298070694 +167880,4033,US President,1298070779 +167880,4033,Walked out/didn't finish,1298070715 +167880,4148,italy,1298137674 +167880,4776,denzel washington,1301681266 +167880,4995,based on a book,1297965948 +167880,4995,genius,1297965945 +167880,4995,math,1297965930 +167880,4995,Oscar (Best Picture),1297965934 +167880,4995,Oscar Winner,1297965958 +167880,4995,romance,1297965940 +167880,4995,Russell Crowe,1297965926 +167880,4995,schizophrenia,1297965965 +167880,51662,adapted from:comic,1298059506 +167880,51662,comic book,1298059498 +167880,51662,historical,1298059468 +167880,51662,military,1298059471 +167880,51662,rape,1298059514 +167880,51662,sexualized violence,1298059511 +167880,51662,stylized,1298059485 +167880,51662,sword fight,1298059465 +167881,1517,kohtuu hyvä :D,1137188350 +167881,3704,Kohtuullisen tylsäks meni,1137321443 +167881,3704,kuitenkin maailma ja hahmot mielenkiintoisia.,1137321443 +167888,110,overrated,1138896228 +167888,6214,piece of shit,1138893710 +167902,260,classic sci-fi,1443807766 +167902,260,series,1443807803 +167922,1136,Monty Python,1376495639 +167922,2115,Harrison Ford,1214180389 +167922,31878,piss your pants funny,1249049626 +167922,31878,Stephen Chow,1249049635 +167922,34405,Firefly,1339617678 +167922,59615,adventure,1240947104 +167922,59615,aliens,1214180445 +167922,59615,archaeology,1214180449 +167922,59615,indiana jones,1214180446 +167922,59615,plot point:solving riddles/puzzles,1240947110 +167922,79091,funny,1298155627 +167922,79091,mad scientist,1298156117 +167922,79091,minions,1298155516 +167922,85736,not a movie,1318018347 +167922,87876,spy,1315087425 +167922,88140,action,1314414563 +167922,88140,Bechdel Test:Fail,1314414555 +167922,88140,campy,1314414573 +167922,88140,comic book,1314414585 +167922,88140,superhero,1314414551 +167922,89190,Bechdel Test:Pass (barely),1365729079 +167922,102445,based on a TV show,1373922679 +167922,102445,PG-13,1373922871 +167922,102445,space,1373922663 +167922,102445,Star Trek,1373922713 +167949,56389,Urban,1447797226 +167949,90531,bleak,1448141107 +167954,1794,see,1195088752 +167962,7827,David Hewlett,1245745206 +167962,27773,Nudity (Full Frontal),1245746571 +167962,27773,twist ending,1245746584 +167962,43936,Bruce Willis,1245399510 +167962,62849,Guy Ritchie,1245399527 +167989,32,Brad Pitt,1407271207 +167989,32,Bruce Willis,1407271203 +167989,32,complicated,1407271212 +167989,32,post-apocalyptic,1407271193 +167989,32,sci-fi,1407271195 +167989,32,thriller,1407271197 +167989,47,atmospheric,1407271344 +167989,47,dark,1407271353 +167989,47,disturbing,1407271346 +167989,47,Kevin Spacey,1407271341 +167989,86,coming of age,1408586179 +167989,86,ensemble cast,1408586209 +167989,86,sailing,1408586179 +167989,86,storm,1408586190 +167989,97,angry,1407272327 +167989,97,black and white,1407272304 +167989,97,bleak,1407272330 +167989,97,french,1407272308 +167989,97,gritty,1407272311 +167989,97,paris,1407272316 +167989,97,social commentary,1407272309 +167989,527,atmospheric,1407271368 +167989,527,based on a true story,1407271365 +167989,527,black and white,1407271380 +167989,527,history,1407271376 +167989,527,thought-provoking,1407271374 +167989,527,World War II,1407271371 +167989,541,atmospheric,1407272984 +167989,541,cyberpunk,1407272979 +167989,541,dystopia,1407272986 +167989,541,Harrison Ford,1407273062 +167989,541,Philip K. Dick,1407272977 +167989,541,robots,1407273057 +167989,541,sci-fi,1407273054 +167989,741,artificial intelligence,1407272417 +167989,741,cyberpunk,1407272416 +167989,741,hackers,1407272431 +167989,741,sci-fi,1407272428 +167989,741,visually appealing,1407272430 +167989,908,Cary Grant,1407271861 +167989,908,Clever,1407271870 +167989,908,suspense,1407271867 +167989,908,thriller,1407271863 +167989,908,visually appealing,1407271874 +167989,908,witty,1407271872 +167989,1080,black comedy,1407271959 +167989,1080,british comedy,1407271953 +167989,1080,Monty Python,1407271942 +167989,1080,parody,1407271944 +167989,1080,satire,1407271946 +167989,1089,dark comedy,1407271645 +167989,1089,ensemble cast,1407271625 +167989,1089,great soundtrack,1407271636 +167989,1089,multiple storylines,1407271612 +167989,1089,music,1407271638 +167989,1089,nonlinear,1407271610 +167989,1089,Quentin Tarantino,1407271608 +167989,1089,thriller,1407271632 +167989,1204,atmospheric,1407272246 +167989,1204,Biography,1407272261 +167989,1204,cinematography,1407272248 +167989,1204,culture clash,1407272256 +167989,1204,desert,1407272252 +167989,1204,Middle East,1407272259 +167989,1204,scenic,1407272277 +167989,1204,War,1407272274 +167989,1204,World War I,1407272250 +167989,1220,comedy,1407273042 +167989,1220,great soundtrack,1407273031 +167989,1220,music,1407273048 +167989,1220,surreal,1407273047 +167989,1234,con men,1407273470 +167989,1234,great soundtrack,1407273476 +167989,1234,Paul Newman,1407273492 +167989,1234,Robert Redford,1407273473 +167989,1246,bittersweet,1408586265 +167989,1246,Coming of age,1408586263 +167989,1246,friendship,1408586301 +167989,1246,poetry,1408586294 +167989,1277,clever,1407272750 +167989,1277,French,1407272742 +167989,1277,stage,1407272727 +167989,1277,Theater,1407272733 +167989,1277,witty,1407272740 +167989,1303,Afghanistan,1407274131 +167989,1303,based on a book,1407274141 +167989,1303,colonialism,1407274145 +167989,1303,Michael Caine,1407274137 +167989,1303,Rudyard Kipling,1407274166 +167989,1303,Sean Connery,1407274134 +167989,1396,ensemble cast,1409784209 +167989,1396,heist,1409784195 +167989,1396,weak ending,1409784223 +167989,1584,based on a book,1407275203 +167989,1584,existentialism,1407275205 +167989,1584,inspirational,1407275225 +167989,1584,Jodie Foster,1407275195 +167989,1584,sci-fi,1407275199 +167989,1584,space travel,1407275230 +167989,1704,genius,1408586369 +167989,1732,dark comedy,1407273074 +167989,1732,Jeff Bridges,1407273074 +167989,1732,off-beat comedy,1407273083 +167989,1732,satirical,1407273079 +167989,1747,black comedy,1407273279 +167989,1747,David Mamet,1407273290 +167989,1747,politics,1407273287 +167989,1747,satire,1407273282 +167989,1748,atmospheric,1407275275 +167989,1748,dark,1407275291 +167989,1748,dreamlike,1407275289 +167989,1748,dystopia,1407275283 +167989,1748,existentialism,1407275280 +167989,1748,sci-fi,1407275277 +167989,1748,surreal,1407275292 +167989,1748,visually appealing,1407275287 +167989,2028,gritty,1407271454 +167989,2028,Steven Spielberg,1407271526 +167989,2028,Tom Hanks,1407271451 +167989,2028,war,1407271547 +167989,2028,World War II,1407271536 +167989,2278,car chase,1407273902 +167989,2278,David Mamet,1407273902 +167989,2278,Jean Reno,1407273911 +167989,2278,Robert De Niro,1407273909 +167989,2278,thriller,1407273920 +167989,2467,based on a book,1407271890 +167989,2467,Eco,1407271884 +167989,2467,investigation,1407271898 +167989,2467,medieval,1407271896 +167989,2467,Ron Perlman,1407271901 +167989,2467,Sean Connery,1407271882 +167989,2542,British,1407272097 +167989,2542,con men,1407272084 +167989,2542,dark comedy,1407272053 +167989,2542,directorial debut,1442359307 +167989,2542,Guy Ritchie,1407272059 +167989,2542,Jason Flemyng,1407272074 +167989,2542,Jason Statham,1407272061 +167989,2542,organized crime,1407272056 +167989,2686,beautiful music,1442359199 +167989,2686,beautifully filmed,1442359201 +167989,2686,multinational settings,1442359196 +167989,2745,Cinematography,1407271973 +167989,2745,colonialism,1407271979 +167989,2745,Jeremy Irons,1407271994 +167989,2745,religion,1407271981 +167989,2745,Roland Joffé,1407271984 +167989,2858,bittersweet,1407273199 +167989,2858,cinematography,1407273195 +167989,2858,dark comedy,1407273173 +167989,2858,Kevin Spacey,1407273201 +167989,2858,reflective,1407273178 +167989,2858,social commentary,1407273184 +167989,2858,thought-provoking,1407273176 +167989,2959,atmospheric,1407272687 +167989,2959,based on a book,1407272689 +167989,2959,Brad Pitt,1407272669 +167989,2959,dark comedy,1407272685 +167989,2959,disturbing,1407272681 +167989,2959,Edward Norton,1407272672 +167989,2959,social commentary,1407272674 +167989,2959,surreal,1407272676 +167989,3020,going postal,1419217647 +167989,3020,Michael Douglas,1419217709 +167989,3020,obsession,1419217654 +167989,3020,Violence,1419217715 +167989,3052,irreverent,1407274911 +167989,3052,Matt Damon,1407274915 +167989,3052,satire,1407274899 +167989,3198,Dustin Hoffman,1407274020 +167989,3198,Franklin J. Schaffner,1407274035 +167989,3198,justice,1407274085 +167989,3198,prison escape,1407274023 +167989,3198,Steve McQueen,1407274025 +167989,3328,assassin,1407272549 +167989,3328,deadpan,1407272547 +167989,3328,Forest Whitaker,1407272545 +167989,3328,great soundtrack,1407272551 +167989,3328,hip hop,1407272537 +167989,3328,meditative,1407272539 +167989,3328,melancholy,1407272542 +167989,3535,Brett Easton Ellis,1442359068 +167989,3535,Christian Bale,1442359076 +167989,3535,dark comedy,1442359070 +167989,3535,insanity,1442359073 +167989,3535,satire,1442359095 +167989,3822,black and white,1407274691 +167989,3822,Daniel Auteuil,1407274704 +167989,3822,dark,1407274692 +167989,3822,French,1407274713 +167989,3822,Patrice Leconte,1407274689 +167989,3949,atmospheric,1407271653 +167989,3949,dark,1407271674 +167989,3949,disturbing,1407271657 +167989,3949,emotional,1407271668 +167989,3949,social commentary,1407271659 +167989,3949,visually appealing,1407271661 +167989,4103,China,1407274725 +167989,4103,Christian Bale,1407274719 +167989,4103,cinematography,1407274750 +167989,4103,prison,1407274722 +167989,4103,War,1407274745 +167989,4237,Agnès Varda,1453857545 +167989,4237,French,1407274676 +167989,4237,melancholy,1407274676 +167989,4776,corruption,1407271261 +167989,4776,denzel washington,1407271252 +167989,4776,detective thriller,1407271258 +167989,4776,great acting,1407271304 +167989,4881,black and white,1407274179 +167989,4881,Coen Brothers,1407274174 +167989,4881,great cinematography,1407274177 +167989,4881,neo-noir,1407274181 +167989,5010,based on a book,1407275108 +167989,5010,Eric Bana,1407275114 +167989,5010,Ewan McGregor,1407275093 +167989,5010,Ridley Scott,1407275098 +167989,5010,visually appealing,1407275080 +167989,5010,war,1407275083 +167989,5325,skateboarding,1407274829 +167989,5464,assassin,1407271598 +167989,5464,cinematography,1407271584 +167989,5464,Jude Law,1407271557 +167989,5464,mafia,1407271596 +167989,5464,Paul Newman,1407271589 +167989,5464,revenge,1407271568 +167989,5464,Tom Hanks,1407271555 +167989,5965,history,1407274809 +167989,5965,Napoleonic wars,1407274795 +167989,5965,Period piece,1407274809 +167989,5965,Ridley Scott,1407274797 +167989,6016,atmospheric,1407272848 +167989,6016,Brazil,1407272840 +167989,6016,coming of age,1407272858 +167989,6016,multiple storylines,1407272842 +167989,6016,Seu Jorge,1407272877 +167989,6016,social commentary,1407272854 +167989,6016,stylized,1407272852 +167989,6672,journalism,1407271108 +167989,6672,photography,1407271106 +167989,6672,war,1407271104 +167989,6711,atmospheric,1407274265 +167989,6711,Bill Murray,1407274267 +167989,6711,bittersweet,1407274277 +167989,6711,Japan,1407274273 +167989,6711,loneliness,1407274269 +167989,6711,Melancholic,1407274271 +167989,6711,reflective,1407274275 +167989,6711,visually appealing,1407274285 +167989,6773,bizarre,1407271237 +167989,6773,French,1407271239 +167989,6773,quirky,1407271229 +167989,6773,stylized,1407271227 +167989,7156,History,1407272627 +167989,7156,reflective,1407272650 +167989,7156,thought provoking,1407272661 +167989,7156,Vietnam War,1407272648 +167989,7348,conspiracy,1407273546 +167989,7348,David Mamet,1407273505 +167989,7348,kidnapping,1407273528 +167989,7348,thriller,1407273539 +167989,7502,realistic,1407273109 +167989,7502,war,1407273107 +167989,7502,World War II,1407273104 +167989,7980,Anthony Hopkins,1407272963 +167989,7980,History,1407272941 +167989,7980,Michael Caine,1407272954 +167989,7980,Richard Attenborough,1407272967 +167989,7980,Sean Connery,1407272956 +167989,7980,war,1407272938 +167989,7980,World War II,1407272935 +167989,26109,dialogue,1407275251 +167989,26109,French,1407275259 +167989,26109,Michel Audiard,1407275259 +167989,27002,astronauts,1407272616 +167989,27002,history,1407272614 +167989,27002,made for TV,1407272620 +167989,27002,space,1407272597 +167989,27002,true story,1407272599 +167989,27410,conspiracy,1407275176 +167989,27410,disturbing,1407275178 +167989,27410,historical,1407275173 +167989,27410,Kenneth Branagh,1407275168 +167989,27410,understated,1407275165 +167989,27410,World War II,1407275163 +167989,27904,based on a book,1407271416 +167989,27904,cyberpunk,1407271419 +167989,27904,drug abuse,1407271421 +167989,27904,Philip K. Dick,1407271407 +167989,27904,Robert Downey Jr.,1407271424 +167989,27904,sci-fi,1407271429 +167989,27904,stylized,1407271411 +167989,27904,surreal,1407271409 +167989,30810,absurd,1407272230 +167989,30810,Bill Murray,1407272217 +167989,30810,off-beat comedy,1407272237 +167989,30810,stylized,1407272234 +167989,30810,visually appealing,1407272223 +167989,30810,Wes Anderson,1407272221 +167989,33672,Emile Hirsch,1407274880 +167989,33672,Heath Ledger,1407274884 +167989,33672,Los Angeles,1407274882 +167989,33672,Period piece,1407274891 +167989,36517,Africa,1407272762 +167989,36517,conspiracy,1407272774 +167989,36517,corruption,1407272781 +167989,36517,great cinematography,1407272764 +167989,36517,social commentary,1407272766 +167989,36517,visually appealing,1407272768 +167989,39292,black and white,1407274614 +167989,39292,censorship,1407274622 +167989,39292,David Strathairn,1407274636 +167989,39292,history,1407274624 +167989,39292,journalism,1407274629 +167989,39292,thought-provoking,1407274604 +167989,39292,visually appealing,1407274607 +167989,40278,based on a book,1407274304 +167989,40278,Gulf War,1407274359 +167989,40278,Modern war,1407274354 +167989,40278,pacifist,1407274372 +167989,40278,Sam Mendes,1407274298 +167989,40278,sniper,1407274356 +167989,40278,war,1407274301 +167989,40583,cerebral,1407273424 +167989,40583,complicated,1407273447 +167989,40583,espionage,1407273431 +167989,40583,George Clooney,1407273419 +167989,40583,thought-provoking,1407273434 +167989,44555,complex characters,1407272103 +167989,44555,drama,1407272121 +167989,44555,East Germany,1407272105 +167989,44555,great acting,1407272131 +167989,44555,spying,1407272114 +167989,44555,suspense,1407272110 +167989,45210,9/11,1407273600 +167989,45210,based on a true story,1407273596 +167989,45210,gripping emotive,1407273654 +167989,45210,terrorism,1407273598 +167989,45210,visceral,1407273619 +167989,47634,cinematography,1407273242 +167989,47634,Daniel Auteuil,1407273242 +167989,47634,police,1407273225 +167989,47634,rivalry,1407273230 +167989,48780,Christian Bale,1407271750 +167989,48780,ensemble cast,1407271765 +167989,48780,magic,1407271767 +167989,48780,psychological,1407271742 +167989,48780,rivalry,1407271759 +167989,48780,tense,1407271763 +167989,48780,thriller,1407271747 +167989,49314,Christian Bale,1407274478 +167989,49314,David Ayer,1407274503 +167989,49314,mental illness,1407274498 +167989,49314,psychological,1407274535 +167989,49314,tense,1407274524 +167989,49314,veterans,1407274498 +167989,49314,violence,1407274517 +167989,52042,espionage,1426032479 +167989,52042,resistance movement,1426032481 +167989,52042,World War II,1426032485 +167989,52328,atmospheric,1407273565 +167989,52328,cinematography,1407273565 +167989,52328,madness,1407273570 +167989,52328,psychology,1407273573 +167989,52328,sci-fi,1407273557 +167989,52328,space,1407273559 +167989,53550,Christian Bale,1407273984 +167989,53550,prison escape,1407273986 +167989,53737,Omar Sharif,1407274109 +167989,53737,Peter O'Toole,1407274098 +167989,53737,thriller,1407274123 +167989,53737,war,1407274123 +167989,53737,World War II,1383941557 +167989,53956,British,1407274998 +167989,53956,dark comedy,1407274995 +167989,53956,farce,1407275013 +167989,55276,corporate espionage,1407272002 +167989,55276,disillusionment,1407272008 +167989,55276,ethics,1420557741 +167989,55276,George Clooney,1407272010 +167989,55276,great acting,1407272015 +167989,55276,lawyers,1420557752 +167989,55276,Slow pacing,1420557746 +167989,55276,thriller,1407272042 +167989,55276,Tilda Swinton,1420557750 +167989,55721,brazil,1407274761 +167989,55721,corruption,1407274757 +167989,55721,rio de janeiro,1407274764 +167989,55721,social commentary,1407274768 +167989,55721,urban violence,1407274765 +167989,55814,based on a book,1407274928 +167989,55814,disability,1407274942 +167989,55814,French,1407274934 +167989,55814,great cinematography,1407274930 +167989,55814,touching,1407274932 +167989,58559,Atmospheric,1407272699 +167989,58559,Batman,1407272695 +167989,58559,Heath Ledger,1407272697 +167989,58559,stylized,1407272707 +167989,58559,thriller,1407272710 +167989,58559,vigilante,1407272703 +167989,59053,French,1414016282 +167989,59053,jealousy,1414016293 +167989,59053,prostitution,1453857329 +167989,59053,unfaithfulness,1414016275 +167989,60293,Ben Kingsley,1407273359 +167989,60293,coming of age,1407273363 +167989,60293,depression,1407273366 +167989,60293,drugs,1407273371 +167989,60293,great soundtrack,1407273380 +167989,60293,new york,1407273361 +167989,60293,Olivia Thirlby,1407273389 +167989,60293,Period piece,1407273403 +167989,60684,dystopia,1407273254 +167989,60684,great soundtrack,1407273262 +167989,60684,social commentary,1407273264 +167989,60684,visually appealing,1407273256 +167989,61009,brothers,1407274400 +167989,61009,French film,1407274394 +167989,61009,melancholy,1407274394 +167989,61009,Paris,1407274394 +167989,61236,history,1407271171 +167989,61236,psychological,1407271165 +167989,61236,surreal,1407271162 +167989,61236,thought-provoking,1407271150 +167989,61236,touching,1407271159 +167989,61236,war,1407271178 +167989,67997,Armando Iannucci,1407274437 +167989,67997,british,1407274413 +167989,67997,James Gandolfini,1407274442 +167989,67997,satire,1407274410 +167989,68498,Fabrice Luchini,1414015908 +167989,68498,Louise Bourgoin,1414015907 +167989,68498,lust,1453857408 +167989,68498,monaco,1453857411 +167989,68498,promiscuity,1414015908 +167989,70286,aliens,1407274961 +167989,70286,atmospheric,1407274959 +167989,70286,sci-fi,1407274952 +167989,70286,social commentary,1407274951 +167989,70286,thriller,1407274963 +167989,71668,Jean Reno,1407270160 +167989,71668,Kristen Bell,1407270163 +167989,71668,Vince Vaughn,1407270154 +167989,73344,cinematography,1407271701 +167989,73344,French,1407271724 +167989,73344,graphic violence,1407271703 +167989,73344,gritty,1407271707 +167989,73344,Jacques Audiard,1407271711 +167989,73344,Niels Arestrup,1407271709 +167989,73344,Tahar Rahim,1407271726 +167989,74545,atmospheric,1407272382 +167989,74545,Olivia Williams,1407272526 +167989,74545,political commentary,1407272389 +167989,74545,suspense,1407272386 +167989,74545,thriller,1407272385 +167989,74545,Tom Wilkinson,1407272526 +167989,79830,French,1407272908 +167989,79830,justice,1407272920 +167989,79830,war,1407272909 +167989,79830,World War I,1407272909 +167989,80906,business,1407272283 +167989,80906,corruption,1407272295 +167989,80906,economics,1407272297 +167989,80906,truth,1407272285 +167989,86578,nudity (full frontal),1414015516 +167989,86578,Sara Forestier,1414015497 +167989,86578,sweet,1414015500 +167989,88129,atmospheric,1420557368 +167989,88129,cinematography,1420557369 +167989,88129,heist,1420557372 +167989,88129,neo-noir,1420557381 +167989,88129,soundtrack,1420557377 +167989,88129,visually appealing,1420557365 +167989,88131,bleak,1453857311 +167989,88131,corporate culture,1453857274 +167989,90439,corruption,1408374573 +167989,90439,Cynicism,1408374552 +167989,90439,ethics,1408374583 +167989,90439,financial crisis,1420557778 +167989,90439,realistic,1408374580 +167989,90439,tense,1408374559 +167989,90603,Batman,1453856795 +167989,90649,based on a book,1419218873 +167989,90649,drugs,1419218875 +167989,96943,French,1414016046 +167989,96943,Louise Bourgoin,1414015790 +167989,96945,based on a book,1407274232 +167989,96945,dark comedy,1407274221 +167989,96945,French,1407274238 +167989,96945,Louise Bourgoin,1414015804 +167989,96945,Romance,1407274247 +167989,96945,witty,1407274210 +167989,96950,drama,1407274544 +167989,96950,French,1407274555 +167989,96950,justice,1407274555 +167989,96950,prison,1407274546 +167989,97388,french revolution,1453857254 +167989,97388,history,1453857176 +167989,97388,léa seydoux,1453857185 +167989,97388,marie antoinette,1453857259 +167989,98124,batman,1453856836 +167989,98275,dark comedy,1407271844 +167989,98275,french,1407271825 +167989,100238,based on a book,1407275125 +167989,100238,French,1407275128 +167989,100238,photography,1407275131 +167989,100328,anarchy,1453857359 +167989,100328,burnout,1453857396 +167989,100328,dark humour,1453857398 +167989,100328,punk,1453857400 +167989,100436,Israel,1409538106 +167989,100436,Middle East,1409538108 +167989,100436,spy,1453856869 +167989,102481,Google,1384282837 +167989,103010,bittersweet,1416786458 +167989,103010,friendship,1416786445 +167989,103010,mourning,1416786453 +167989,103010,roadtrip,1416786491 +167989,103235,art,1414725686 +167989,103235,cinematography,1414724927 +167989,103235,Geoffrey Rush,1414724894 +167989,103235,twist ending,1414724961 +167989,103883,corruption,1410139288 +167989,103883,military,1410139290 +167989,104841,cinematography,1420557443 +167989,104841,intense,1420557447 +167989,104841,space,1420557442 +167989,104841,suspense,1420557445 +167989,104841,visually appealing,1420557440 +167989,105355,bittersweet,1413161999 +167989,105355,coming of age,1413162006 +167989,105355,homosexuality,1413162029 +167989,105355,lesbian,1413162052 +167989,105355,too long,1413161993 +167989,105355,unsimulated sex,1413162039 +167989,105835,cinematography,1410139215 +167989,105835,confusing,1410139235 +167989,105835,surreal,1410139218 +167989,108709,realistic,1407272589 +167989,108709,war,1407272589 +167989,109157,based on a book,1407885035 +167989,109157,Nick Hornby,1407885039 +167989,109157,suicide,1407885046 +167989,109487,ambitious,1423178287 +167989,109487,atmosphere,1423178302 +167989,109487,plot holes,1423178186 +167989,109487,sci-fi,1423178227 +167989,109487,science fiction,1423178255 +167989,109487,Self-Indulgent,1423178219 +167989,109487,space,1423178343 +167989,109487,visually appealing,1423178319 +167989,109487,wasted potential,1423178212 +167989,109963,Bertrand Tavernier,1453857639 +167989,109963,diplomacy,1453857650 +167989,109963,Niels Arestrup,1453857641 +167989,109963,politics,1453857636 +167989,109963,satire,1453857633 +167989,111364,bland hero,1418726766 +167989,111364,great photograpy,1418726750 +167989,112399,photography,1442359518 +167989,112623,post-apocalyptic,1417771656 +167989,112623,sci-fi,1417771626 +167989,113225,skepticism,1443564352 +167989,113225,woody allen,1443564351 +167989,113536,corruption,1408673719 +167989,113536,political thriller,1408673719 +167989,113536,spy,1408673719 +167989,113539,algeria,1408674142 +167989,113539,based on a book,1408674142 +167989,113539,colonialism,1408674142 +167989,113539,history,1408674142 +167989,113539,mother-son relationship,1408674140 +167989,113741,multiverse,1415225112 +167989,113741,mystery,1415225122 +167989,113741,parallel universe,1415225107 +167989,114246,based on a book,1420557226 +167989,114246,cinematography,1420557430 +167989,114246,detective,1420557279 +167989,114246,noir thriller,1420557422 +167989,114246,visually appealing,1420557348 +167989,115373,alcoholism,1414016372 +167989,115373,doctors,1414016364 +167989,115373,French,1414015750 +167989,115373,Louise Bourgoin,1414015759 +167989,115373,love triangle,1414016390 +167989,115373,single mother,1414016362 +167989,117877,algeria,1453857467 +167989,117877,cats,1453857474 +167989,117877,Journey,1453857471 +167989,117877,religion,1453857528 +167989,118082,black comedy,1442358975 +167989,118082,disturbing,1442359008 +167989,118082,mental illness,1442358978 +167989,133185,sign language,1453857684 +167989,134130,based on book,1451743932 +167989,134130,Improvisation,1451743938 +167989,134130,mars,1451743929 +167989,134130,Near Future,1451743934 +167989,134130,scientific,1451743952 +167989,134130,Space,1451743925 +167989,134130,space travel,1451743950 +167989,134130,Survival Instinct,1451743956 +167989,136926,Fabrice Lucchini,1453857428 +167989,136926,Fabrice Luchini,1453857456 +167989,142360,french,1442361164 +167989,148248,based on a true story,1453856425 +167989,148248,non linear,1453856460 +167989,148248,police,1453856433 +167989,148248,serial killer,1453856430 +167989,148248,trial,1453856447 +167991,260,adventure,1430956694 +167991,260,Sci-fi,1430956688 +168008,3668,Oscar (Best Cinematography),1404960478 +168023,260,action,1431799768 +168023,260,epic adventure,1431799791 +168023,260,sci-fi,1431799764 +168023,260,war,1431799777 +168082,471,funny,1282398961 +168082,1658,angels,1255283819 +168082,1658,true love,1255283790 +168082,2580,Katie Holmes,1388932241 +168082,2580,Timothy Olyphant,1388932241 +168082,3328,Honor,1255284101 +168082,3328,narrated,1255284085 +168082,3551,plot holes,1441219981 +168082,3988,change,1255283731 +168082,5303,change,1255283711 +168082,5303,Change of heart,1255283670 +168082,6975,breaking the fourth wall,1425242234 +168082,27592,violent,1425241975 +168082,32460,friendship,1255283330 +168082,32460,roadtrip,1255283283 +168082,48780,great ending,1282398580 +168082,68157,great acting,1255283451 +168082,68157,mexican stand off,1255283494 +168082,68157,tension,1255283482 +168082,68157,violence,1255283441 +168082,69122,disappointing,1262132665 +168082,70208,Milla Jovovich,1259873176 +168082,70208,Timothy Olyphant,1259873119 +168082,71668,bad cameo,1262132432 +168082,71668,not funny,1262132462 +168082,71668,waste of time,1262132363 +168082,74458,Michelle Williams,1291139745 +168082,74530,bad acting,1282397673 +168082,74530,childish,1282397735 +168082,74530,Rosario Dawson,1282397674 +168082,74545,boring,1361336552 +168082,74545,Ewan McGregor,1361336534 +168082,74545,great house,1361336498 +168082,74545,location,1361336511 +168082,74545,Pierce Brosnan,1361336534 +168082,74545,slow,1361336571 +168082,77843,clever plot,1286832767 +168082,78467,boring,1286815109 +168082,78467,poor plot,1286815179 +168082,78467,waste of time,1286815128 +168082,79132,dreams,1282398479 +168082,79132,open ending,1282398479 +168082,79702,Michael Cera,1291139642 +168082,80166,dull,1294478662 +168082,80166,gay,1294478601 +168082,82461,motorcycle,1299264200 +168082,82461,visually appealing,1299264222 +168082,82461,weak dialoges,1299264179 +168082,84954,Emily Blunt,1312744250 +168082,85510,soundtrack,1310613864 +168082,86293,Russell Brand,1312024243 +168082,87529,boring,1311974007 +168082,87529,dissapointing,1311974624 +168082,89492,acting,1330283038 +168082,89492,great acting,1330283038 +168082,91323,Sam Rockwell,1333656733 +168082,91978,Elizabeth Banks,1364655459 +168082,91978,naive,1364655491 +168082,92420,socjopat,1361388457 +168082,93805,acting,1349465398 +168082,93805,clever,1349465372 +168082,93805,funny,1349465386 +168082,93805,Julia Dietze,1349465372 +168082,94864,pointless,1355951922 +168082,94864,waste of time,1355951921 +168082,95441,Mark Wahlberg,1355671242 +168082,95441,not funny,1355667771 +168082,95441,pointless,1355667799 +168082,95441,waste of time,1355667757 +168082,95720,Vince Vaughn,1355671602 +168082,96737,violence,1369078910 +168082,96737,violent,1369078910 +168082,97306,Christopher Walken,1359032011 +168082,97306,Sam Rockwell,1359031974 +168082,97306,Woody Harrelson,1359031990 +168082,98296,gets worse as it goes,1386452055 +168082,99112,cleavage,1366527805 +168082,99112,Jai Courtney,1366527833 +168082,100507,pointless,1379270707 +168082,100507,Skylar Astin,1379270376 +168082,101741,Nudity (Full Frontal),1418841649 +168082,101763,Nudity (Full Frontal),1390127316 +168082,102123,not funny,1379790676 +168082,102378,advertising,1420409238 +168082,102378,corporations,1420409238 +168082,102378,love,1420409238 +168082,102993,Sam Rockwell,1389522734 +168082,103384,rushed ending,1387821716 +168082,104211,all the best parts are in the trailer,1383339836 +168082,104925,dissapointing,1386978474 +168082,105037,makes no sense,1387921304 +168082,117334,Anaïs Demoustier,1436822977 +168082,120799,boring,1436822582 +168082,127096,stupid ending,1431892875 +168082,128975,avoid at all cost,1428443090 +168084,60684,Worst movie ever!,1237675127 +168087,1354,Disability,1436289864 +168087,1354,great acting,1436289752 +168087,1354,Heartbreaking,1436289852 +168087,1354,Innocence,1436289859 +168087,1354,Male Nudity,1436289890 +168087,1354,mental illness,1436289867 +168087,3455,Catholicism,1436288436 +168087,3455,Dark,1436288482 +168087,3455,Loneliness,1436288462 +168087,3455,Mental Illness,1436288450 +168087,3455,Outcast,1436288470 +168087,3455,Quirky,1436288479 +168087,3455,Religion,1436288493 +168087,3455,Stuttering,1436288466 +168087,3455,Surrealism,1436288486 +168087,3455,Virgin,1436288503 +168087,3455,Voyeurism,1436288458 +168087,6975,Pretentious,1436289363 +168087,6975,Torture,1436289377 +168087,26494,Bad Acting,1436289316 +168087,26494,Punk Culture,1436289307 +168087,26494,Punks,1436289302 +168087,41712,British,1436288779 +168087,41712,Childhood,1436288757 +168087,41712,Interracial Friendship,1436288749 +168087,41712,Mental Illness,1436288765 +168087,41712,Midlands,1436288775 +168087,41712,Stalker,1436288734 +168087,59306,Bad Character Development,1436289602 +168087,59306,Not Scary,1436289586 +168087,59306,Slasher,1436289576 +168087,59306,Stupid as F**k,1436289583 +168087,59306,Watered-Down PG-13 Horror,1436289621 +168087,61240,Bullying,1436290375 +168087,61240,Castration,1436290368 +168087,61240,love story,1436290357 +168087,61240,Revenge,1436290378 +168087,61240,Vampires,1436290352 +168087,69526,bad plot,1436289511 +168087,69526,ridiculous,1436289502 +168087,88520,Aristocracy,1436288284 +168087,88520,Bankruptcy,1436288309 +168087,88520,British,1436288297 +168087,88520,Cancer,1436288303 +168087,88520,Dysfunctional Families,1436288359 +168087,88520,Hallucinations,1436288321 +168087,88520,Insanity,1436288261 +168087,88520,Mansion,1436288301 +168087,88520,Matricide,1436288257 +168087,88520,Mental Disabilities,1436288253 +168087,88520,Mental Illness,1436288239 +168087,88520,Oedipal Complex,1436288275 +168087,88520,Schizophrenia,1436288245 +168087,88520,Self-Mutilation,1436288340 +168087,88520,Surrealism,1436288326 +168087,88520,Tragedy,1436288294 +168087,92058,Black & White,1436288608 +168087,92058,Brutality,1436288652 +168087,92058,Extreme Violence,1436288600 +168087,92058,rape,1436288644 +168087,92058,Sadism,1436288658 +168087,92058,Sexual Abuse,1436288618 +168087,92058,Torture,1436288589 +168087,92058,Villain Main Character,1436288636 +168087,97593,British,1436289436 +168087,97593,Character Study,1436289430 +168087,97593,Drug Abuse,1436289456 +168087,97593,Horror,1436289440 +168087,97593,Indie,1436289446 +168087,97593,Serial Killer,1436289423 +168087,118082,Black Comedy,1436289079 +168087,118082,Cats,1436289173 +168087,118082,Dogs,1436289169 +168087,118082,Evil Cat,1436289155 +168087,118082,Mental Illness,1436289130 +168087,118082,Mental IllnessChild Abuse,1436289088 +168087,118082,Pets,1436289164 +168087,118082,Schizophrenia,1436289138 +168087,118082,Serial Killer,1436289150 +168087,118082,Shitty Ending,1436289123 +168087,118082,talking animals,1436289160 +168089,1206,Cruel,1137371263 +168089,1235,Wierd,1137371267 +168089,2542,Unique,1137371265 +168089,2699,Dumb,1137950126 +168089,3147,Interesting,1137371465 +168089,6539,Fun,1137371410 +168089,53189,Jermaine Clement,1207098146 +168089,55444,early punk,1207098353 +168092,53322,Heist,1200915467 +168093,78772,Kristen Stewart,1278548295 +168093,78772,Robert Pattinson,1278548290 +168125,58998,Hawaii,1228954707 +168125,60684,comics,1243027031 +168125,61240,coming of age,1243027384 +168125,61240,serial killer,1243027372 +168125,61240,swedish,1243027378 +168125,61240,vampire,1243027375 +168125,63082,dark side of India,1243027061 +168125,63082,Oscar (Best Music - Original Song),1243027070 +168125,69122,casino,1250791332 +168125,69122,comedy,1250791159 +168125,69122,hotel,1250791168 +168125,69122,Las Vegas,1250791351 +168125,69122,Zach Galifinakis,1250791164 +168143,153,super-hero,1138355923 +168143,2001,action,1138355556 +168143,2006,Banderas,1138355886 +168144,47099,inspirational,1451411581 +168144,140269,inspirational,1451411555 +168155,34411,documentary,1261629106 +168155,34411,oil,1261629112 +168155,34411,politics,1261629110 +168174,280,torture (scene),1315621517 +168214,260,epic,1444549143 +168214,260,science fiction,1444549140 +168222,1690,Action,1189546403 +168222,1690,Horror,1189546403 +168222,1690,sci-fi,1189546402 +168222,2005,Adventure,1189546496 +168222,2005,Children,1189546496 +168222,2005,Fantasy,1189546496 +168222,2023,drama,1189546416 +168222,2161,Adventure,1189546504 +168222,2161,Children,1189546504 +168222,2161,Fantasy,1189546504 +168222,2701,action,1189546448 +168222,2701,comedy,1189546448 +168222,2701,sci-fi,1189546448 +168222,2947,action,1189546432 +168222,2947,thriller,1189546432 +168222,3752,comedy,1189546574 +168222,3755,thriller,1189546512 +168222,4246,comedy,1189546404 +168222,4246,romance,1189546404 +168222,4447,comedy,1189546565 +168222,4975,thriller,1189546597 +168222,5679,horror,1189546550 +168222,6934,action,1189546544 +168222,6934,sci-fi,1189546544 +168222,6934,thriller,1189546544 +168222,8622,documentary,1189546585 +168225,356,inspirational,1437986725 +168225,356,romance,1437986725 +168225,356,vietnam war,1437986725 +168225,58425,Iceland,1250798269 +168225,66025,go-go dancing,1233955181 +168228,1961,touching,1432029507 +168228,6118,intellectually stimulating,1432029574 +168235,296,offensive,1451606679 +168235,296,overrated,1385281328 +168235,296,pointless,1385281374 +168235,296,pretentious,1385281324 +168235,296,stupid,1385281318 +168235,296,unrealistic,1385281331 +168235,356,mixed,1426647659 +168235,356,tolerable,1426647659 +168235,356,uneven,1426647659 +168235,1617,boring,1385281575 +168235,1617,confusing,1385281562 +168235,1617,pointless,1385281557 +168235,1924,so bad it's good,1385282013 +168235,65130,annoying characters,1385282371 +168235,65130,boring,1385282396 +168235,68358,nonsensical,1385281931 +168235,104841,blurry,1385281151 +168235,104841,headache-inducing,1385281731 +168235,104841,sexist,1385281617 +168235,115713,pseudo-profound,1430550246 +168250,8798,michael mann,1159625885 +168292,260,scifi cult,1442518269 +168292,260,space adventure,1442518282 +168292,90600,nordic crime,1442531046 +168332,260,sci-fi,1441567293 +168332,260,Star Wars,1441567280 +168366,916,love story,1186710263 +168366,2116,mythology,1186710295 +168366,2642,scientific fiction,1186710322 +168366,8361,sientific fiction,1186710407 +168366,39183,love story,1186710506 +168383,2329,Edward Norton,1361977213 +168383,2329,emotional,1361977217 +168383,2329,powerful ending,1361977222 +168383,2329,thought-provoking,1361977221 +168383,7147,fantasy,1361977253 +168383,7147,surreal,1361977247 +168383,7147,Tim Burton,1361977249 +168392,260,famous,1439733679 +168392,260,Popular,1439733696 +168414,260,alright,1444691596 +168414,260,cool,1444691608 +168421,107338,humor,1393652124 +168421,107338,odd characters,1393652115 +168425,260,futuristic,1439092828 +168425,260,sci-fi,1439092795 +168498,2700,hard to rate,1137778650 +168505,1907,children,1186530369 +168505,3752,comedy,1186530361 +168505,4310,drama,1186530377 +168505,4447,comedy,1186530352 +168505,5618,animation,1186530394 +168505,33493,action,1186530398 +168517,1258,Stanley Kubrick,1444247735 +168517,2557,disturbing,1444857830 +168517,39381,Australia,1445206490 +168517,39381,britain,1445206622 +168517,39381,brutality,1445206624 +168517,39381,Colonial,1445206539 +168517,39381,desert,1445206525 +168517,39381,vengeance,1445206545 +168517,39381,Violent,1445206498 +168517,39381,western,1445206559 +168524,318,passionate,1425671389 +168524,318,prison escape,1425671389 +168524,318,surprise ending,1425671389 +168565,260,adventure,1439524627 +168565,260,science fantasy,1439524620 +168595,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1443156814 +168595,260,the classic sci fi movie. must see.,1443156795 +168595,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1443156774 +168602,1068,noir thriller,1368047360 +168602,2528,dystopia,1278360221 +168602,2528,sci-fi,1278360219 +168602,4189,jesus,1368047314 +168602,6609,jesus,1368047314 +168602,6683,bollywood,1368047287 +168602,7217,noir thriller,1368047360 +168602,7223,noir thriller,1368047360 +168602,7943,noir thriller,1368047360 +168602,25927,noir thriller,1368047360 +168611,6,long,1446592640 +168611,6,overrated,1446658218 +168611,6,too long,1446658225 +168611,296,crime,1429173618 +168611,296,dark comedy,1429173618 +168611,296,great soundtrack,1429173618 +168611,356,alternate history,1430980020 +168611,356,disability,1430980020 +168611,356,vietnam war,1430980020 +168611,407,lovecraft,1394014321 +168611,407,lovecraftian,1394014324 +168611,407,Lovecraftian mythology,1394014326 +168611,593,cannibalism,1437667232 +168611,593,disturbing,1437667239 +168611,593,strong female lead,1432025655 +168611,593,thriller,1432025655 +168611,593,transsexual,1432025655 +168611,1101,so bad it's good,1437649515 +168611,2288,lovecraftian,1436363645 +168611,2288,Lovecraftian mythology,1436363639 +168611,2288,remake,1436363631 +168611,2571,cyberpunk,1435321447 +168611,2571,dystopic future,1435321447 +168611,2571,hacker,1435321447 +168611,3476,Psychological horror,1394014265 +168611,3476,surreal,1394014269 +168611,4278,black and white,1437643081 +168611,4278,cinematography,1437643156 +168611,4546,devastating,1446247058 +168611,4546,inappropriate music,1446247076 +168611,5746,claustrophobia,1439297377 +168611,5746,self-mutilation,1439297386 +168611,5746,tentacle rape,1439297355 +168611,8950,accident,1394014310 +168611,8950,atmospheric,1437643298 +168611,8950,dark,1437643296 +168611,8950,disturbing,1437643286 +168611,8950,eerie,1437643281 +168611,8950,Nudity (Topless),1437643283 +168611,8950,schizophrenia,1437643302 +168611,26550,based on a book,1435667148 +168611,26550,based on a true story,1435667153 +168611,26550,beautiful,1435666658 +168611,26550,biographical,1435666698 +168611,26550,dreamlike,1435667366 +168611,26550,harakiri,1435666544 +168611,26550,Japan,1435667438 +168611,26550,music,1435667401 +168611,26550,Philip Glass,1435667498 +168611,26550,story-in-a-story,1435666644 +168611,26550,suicide,1435666512 +168611,26550,topic:author,1435667209 +168611,26550,visually appealing,1435667118 +168611,26550,visually stunning,1435667122 +168611,26550,Yukio Mishima,1435666705 +168611,26974,Bizarre,1448665790 +168611,26974,disturbing,1448665789 +168611,26974,enigmatic,1451815127 +168611,26974,hallucinatory,1448665799 +168611,26974,surreal,1448665797 +168611,27402,cgi,1444832993 +168611,27402,Cthulhu,1444832995 +168611,27402,gets Lovecraft accurate,1444833005 +168611,27402,Lovecraftian,1444833051 +168611,27402,Lovecraftian mythology,1444832958 +168611,47810,so bad it's good,1437649452 +168611,47810,The bees,1439581292 +168611,47810,unintentional comedy,1437649450 +168611,51182,nazisploitation,1438064281 +168611,52328,atmospheric,1394014217 +168611,52328,cinematography,1394014176 +168611,52328,slow paced,1394014226 +168611,55363,beautiful scenery,1450014542 +168611,55363,Casey Affleck,1450014589 +168611,55363,cinematograpy:Roger Deakins,1450014745 +168611,55363,dreamlike,1450014628 +168611,55363,excellent soundscore,1450014586 +168611,55363,Roger Deakins,1450014453 +168611,55363,slow paced,1450014747 +168611,55363,visually appealing,1450014540 +168611,70728,autobiographical,1438099351 +168611,70728,humorous,1438099267 +168611,70728,soundtrack,1437777464 +168611,70728,Tom Hardy,1437774026 +168611,71135,shaky camera,1394014128 +168611,82459,cinematograpy:roger deakins,1450014820 +168611,89774,brother-brother relationship,1439936674 +168611,89774,Tom Hardy,1439936666 +168611,89774,touching,1439936676 +168611,91529,Anne Hathaway,1437691248 +168611,91529,Bane's voice,1437691254 +168611,91529,Tom Hardy,1437691092 +168611,96079,Javier Bardem,1440933412 +168611,96432,Gary Oldman,1437932526 +168611,96432,Tom Hardy,1437932510 +168611,96644,black and white,1435667083 +168611,96644,gore,1435667175 +168611,96644,harakiri,1435667090 +168611,96644,silent movie,1435666733 +168611,96644,suicide,1435667086 +168611,96644,Yukio Mishima,1435667187 +168611,104879,cinematograpy:roger deakins,1450014770 +168611,109390,cinematography,1440969578 +168611,109390,femme fatale,1441014851 +168611,109390,film noir,1440969460 +168611,109390,mystery,1440969581 +168611,110882,dialogue driven,1440860505 +168611,110882,strong performance,1440860506 +168611,114060,Noomi Rapace,1440541693 +168611,114060,subtlety,1440541707 +168611,114060,Tom Hardy,1440541692 +168611,118338,cinematography,1445091563 +168611,118338,Russian,1437249350 +168611,118338,science fiction,1437249309 +168611,122882,charlize theron,1437735576 +168611,122882,Colourful apocalypse,1437735592 +168611,122882,dystopian,1437735585 +168611,122882,great soundtrack,1437735690 +168611,122882,non-stop,1437735568 +168611,122882,post apocalypse,1437735587 +168611,122882,post apocalyptic,1437735594 +168611,122882,Tom Hardy,1437735581 +168611,122882,visually appealing,1437735566 +168611,122886,Adam Driver,1451318562 +168611,122886,Fan service,1451318573 +168611,122886,Plot Recycling,1451318561 +168611,128620,German,1435667637 +168611,132122,Adam Driver,1451814923 +168611,132122,atmospheric,1451814900 +168611,132122,mental illness,1451815066 +168611,132122,New York City,1451815045 +168611,132122,paranoia,1451814880 +168611,132122,superstition,1451814937 +168611,134843,lovecraftian,1437490357 +168611,139644,cinematograpy:roger deakins,1450014783 +168611,139644,great sountrack,1450014800 +168611,140703,black and white,1439496869 +168611,140703,post apocalyptic,1439496856 +168616,18,Tarantino,1149391871 +168616,47,Kevin Spacey,1156103718 +168616,50,keyser sose,1156103402 +168616,50,tricky,1149390621 +168616,70,Tarantino,1149391309 +168616,223,good dialogue,1156103482 +168616,223,Kevin Smith,1149390830 +168616,296,classic,1421522074 +168616,296,good dialogue,1421522074 +168616,296,gritty,1421522074 +168616,296,hit men,1156103685 +168616,296,Tarantino,1149390928 +168616,318,prison,1156103734 +168616,608,Coen Brothers,1149390913 +168616,720,claymation,1149443061 +168616,745,claymation,1149443050 +168616,750,overrated,1200077997 +168616,924,Kubrick,1149390701 +168616,1080,john cleese,1156103298 +168616,1089,Tarantino,1149390608 +168616,1136,hilarious,1156103244 +168616,1136,john cleese,1156103277 +168616,1136,monty python,1149390067 +168616,1148,claymation,1149391030 +168616,1148,Wallace & Gromit,1149391028 +168616,1193,Jack Nicholson,1156103678 +168616,1193,mental illness,1156103659 +168616,1197,Christopher Guest,1149391127 +168616,1199,Gilliam,1149390091 +168616,1206,Kubrick,1149390676 +168616,1208,the humanity,1156103476 +168616,1222,Kubrick,1149390692 +168616,1223,claymation,1149443054 +168616,1258,Kubrick,1149390939 +168616,1288,Christoper Guest,1149391161 +168616,1288,mockumentary,1149388566 +168616,1333,birds,1156103854 +168616,1333,Hitchcock,1149391182 +168616,1387,classic,1149390625 +168616,1387,shark,1156103609 +168616,1394,Coen Brothers,1149391788 +168616,1395,vendetta,1249085989 +168616,1405,mike judge,1156103853 +168616,1449,Christopher Guest,1149391103 +168616,1449,mockumentary,1149391868 +168616,1676,repetitive,1157299079 +168616,1732,Coen brothers,1156103205 +168616,1732,the dude,1156103205 +168616,1884,Gilliam,1149390750 +168616,1953,gritty,1180704955 +168616,1953,overrated,1180704951 +168616,1997,Classic,1149390908 +168616,2140,puppets,1149389839 +168616,2278,car chase,1156103778 +168616,2329,gripping,1156103450 +168616,2376,james bond,1153071779 +168616,2387,dark comedy,1150779386 +168616,2502,mike judge,1156103318 +168616,2502,printer,1156103391 +168616,2502,white collar gangstas,1156103377 +168616,2542,British,1149391397 +168616,2788,could've made a better selection from the TV series,1170008751 +168616,2858,kevin spacey,1156103432 +168616,3052,Kevin Smith,1149390842 +168616,3683,Coen Brothers,1149391225 +168616,3911,Christopher Guest,1149391091 +168616,3911,mockumentary,1149391148 +168616,4027,Coen brothers,1149391773 +168616,4226,nonlinear,1156103213 +168616,4734,Kevin Smith,1149390862 +168616,4878,time travel,1156103517 +168616,5669,Michael Moore,1149391221 +168616,5956,Martin Scorsese,1149391349 +168616,6296,Christopher Guest,1149391139 +168616,6296,mockumentary,1149391144 +168616,6773,caricatures,1309065965 +168616,7153,Tolkien,1149391465 +168616,8376,Gosh!,1149391487 +168616,8376,Jon Heder,1174396736 +168616,8622,Michael Moore,1149391268 +168616,31696,heaven and hell,1156103506 +168616,36401,Fantasy,1156103865 +168616,38038,claymation,1149443067 +168616,40732,crap dialog,1174151734 +168616,40732,spelunking,1175464816 +168616,44199,spike lee,1160956016 +168616,44761,can't understand a word of it,1175464980 +168616,46965,B-movie,1162163562 +168616,46970,dissapointing,1167771383 +168616,46970,sascha baron cohen,1167771419 +168616,47254,Instead Of Noodity Why Not Say 3-Piece Birthday Suits Much More Graphic,1177649920 +168616,47997,mike judge,1177383463 +168616,48385,sascha baron cohen,1170481146 +168616,48780,magicans,1257050392 +168616,48780,tesla,1257050392 +168616,48780,vendetta,1257050001 +168616,48997,dustin hoffman,1187299936 +168616,49396,not very funny,1180818908 +168616,55118,Nudity (Full - Male),1207687219 +168616,56333,90% drama 10% comedy,1209231526 +168616,56788,Good dialogue,1211740364 +168616,59721,mockumentary,1220804772 +168616,59721,poker,1220804758 +168616,60766,black and white,1219624880 +168616,60766,suspenseful,1219624846 +168616,60766,tightrope,1219624792 +168616,60766,twin towers,1219624815 +168616,61240,slow,1247523096 +168616,61240,swedish,1244313167 +168616,61240,vampire,1247523053 +168616,61323,Coen Brothers,1222312564 +168616,63876,Sean Penn,1244313128 +168616,64499,Benicio Del Toro,1244313547 +168616,64839,bloody,1245002156 +168616,64839,sad,1245002147 +168616,64983,Hitler,1245613408 +168616,67665,Canada,1244313018 +168616,67665,satirical,1244313033 +168616,67665,Spinal Tap influence,1244313036 +168616,67695,Seth Rogen,1244313357 +168616,68237,2001-like,1247244514 +168616,68358,action,1244312962 +168616,68358,alternate reality,1244312958 +168616,68358,leadership,1244312982 +168616,68358,plot twist,1244312990 +168616,68358,time travel,1244312997 +168616,68358,Unsteady-cam,1244312933 +168616,68522,beautiful scenery,1244313261 +168616,68522,camerawork,1244313258 +168616,68954,adventure,1244312832 +168616,68954,computer animation,1244312843 +168616,68954,Pixar,1244312867 +168616,68954,storytelling,1244312862 +168616,71464,slow,1273614636 +168616,74458,asylum,1268975732 +168616,74458,insanity,1268975742 +168616,74458,plot twist,1268975753 +168616,76293,great comedians lousy movie,1281856966 +168627,260,engrossing adventure,1439762730 +168627,260,good story,1439762748 +168630,1172,bittersweet,1430360897 +168630,1172,nostalgic,1430360887 +168630,2324,emotional,1430360871 +168630,2324,Italy,1430360869 +168630,2324,sentimental,1430360857 +168630,4973,beautifully filmed,1430360913 +168630,4973,French,1430360923 +168630,4973,quirky,1430360916 +168630,109374,quirky,1430360948 +168630,109374,visually appealing,1430360938 +168630,109374,whimsical,1430360951 +168644,64614,friendship,1337390004 +168644,78772,friendship,1337389585 +168644,78772,relationships,1337389647 +168644,78772,vampires,1337389579 +168646,3384,easily confused with other movie(s) (Taking of Pelham 123),1271299861 +168647,51412,time,1264799455 +168647,51412,time travel,1264799455 +168647,51412,time-lapse,1264799455 +168647,67197,time,1264799594 +168647,67197,time travel,1264799594 +168647,67197,time-lapse,1264799594 +168763,55247,selfishness,1378067418 +168763,97938,tiger,1378067371 +168766,32,Bruce Willlis,1447025845 +168766,32,clever,1447025863 +168766,32,twist ending,1447025838 +168784,73321,post-apocalyptic,1445883048 +168787,260,action,1433334125 +168787,260,sci-fi,1433334114 +168787,741,anime,1433335466 +168787,741,complex,1433335466 +168787,741,philosophical,1433335466 +168787,741,philosophy,1433335466 +168787,741,sci-fi,1433335461 +168787,741,visually appealing,1433335466 +168787,2502,comedy,1433336556 +168787,2502,cult film,1433336558 +168787,2502,funny,1433336577 +168787,2502,hilarious,1433336564 +168787,2502,mike judge,1433336579 +168787,2502,off-beat comedy,1433336569 +168787,2502,quirky,1433336562 +168787,2502,quotable,1433336581 +168787,2502,rebellion,1433336567 +168787,2502,revenge,1433336571 +168787,2502,satire,1433336550 +168787,2502,slackers,1433336575 +168787,2502,workplace,1433336557 +168787,5225,beautiful,1433336212 +168787,5225,bittersweet,1433336210 +168787,5225,coming of age,1433336199 +168787,5225,Erotic,1433336195 +168787,5225,Mexico,1433336205 +168787,5225,Nudity (Full Frontal - Notable),1433336215 +168787,5225,Nudity (Full Frontal),1433336207 +168787,5225,Nudity (Topless),1433336221 +168787,5225,quirky,1433336223 +168787,5225,road trip,1433336201 +168787,5225,sexual,1433336225 +168787,5225,sexuality,1433336203 +168787,5225,sexy,1433336218 +168787,5225,spanish,1433336213 +168787,5319,Argentina,1433336267 +168787,5319,comedy,1433336280 +168787,5319,con artists,1433336271 +168787,5319,CONS AND SCAMS,1433336272 +168787,5319,Ricardo Darin,1433336269 +168787,5319,twist ending,1433336265 +168787,6857,anime,1433336432 +168787,8947,ghosts,1433337082 +168787,8947,horror,1433337097 +168787,8947,japan,1433337084 +168787,27772,horror,1433337126 +168787,27772,japanese horror,1433337124 +168787,27772,paranormal,1433337111 +168787,52885,alternate reality,1433335525 +168787,52885,animation,1433335500 +168787,52885,anime,1433335498 +168787,52885,confusing,1433335511 +168787,52885,dreamlike,1433335494 +168787,52885,dreams,1433335492 +168787,52885,hallucinatory,1433335515 +168787,52885,philosophical,1433335503 +168787,52885,psychedelic,1433335523 +168787,52885,psychedellic,1433335501 +168787,52885,soundtrack,1433335507 +168787,52885,surreal,1433335493 +168787,54617,Comedy,1433336126 +168787,54617,French,1433336124 +168787,54617,Jean Dujardin,1433336128 +168787,54617,Satire,1433336129 +168787,60756,comedy,1433336660 +168787,60756,dumb-humor,1433336688 +168787,60756,slapstick,1433336669 +168787,60756,will ferrell,1433336657 +168787,65514,action,1433336788 +168787,65514,biography,1433336793 +168787,65514,kung fu,1433336786 +168787,65514,martial arts,1433336784 +168787,65514,Wing Chun,1433336791 +168787,74095,anime,1433335364 +168787,74095,dark,1433335366 +168787,74095,demonic,1433335393 +168787,74095,rape,1433335373 +168787,74095,sex,1433335370 +168787,74095,violence,1433335374 +168787,111235,Documentary,1433336352 +168787,111235,Dune,1433336353 +168787,111235,movie business,1433336321 +168787,111235,sci-fi,1433336355 +168787,111235,visuals,1433336324 +168789,105,Book,1184720131 +168789,147,Book,1184719914 +168789,412,Book,1184719635 +168789,924,Book,1184719574 +168789,1019,Book,1184719561 +168789,1203,Stageplay,1184719543 +168789,1225,Stageplay,1184719703 +168789,1269,Stageplay,1184719815 +168789,1339,Book,1184720099 +168789,2314,Book,1184719955 +168789,3112,Stageplay,1184719526 +168789,3155,book,1184719780 +168789,3251,Stageplay,1184719646 +168789,4039,Stageplay,1184719793 +168789,4349,Book,1184720216 +168789,4464,Book,1184719613 +168789,4474,Book,1184719929 +168789,4478,Stageplay,1184720019 +168789,6303,book,1184719751 +168789,6787,Book,1184719681 +168789,7934,Woody Allen,1184628308 +168789,8337,Book,1184720181 +168789,89745,too much fighting and not enough story,1355938024 +168803,59362,Nudity (Full Frontal),1256366141 +168803,59362,Nudity (Topless),1256366125 +168813,457,Harrison Ford,1206468806 +168834,32029,dsfd,1136384095 +168834,59256,Calculable movie,1241300102 +168834,59256,Kiszámítható,1241300038 +168834,108014,action,1421621706 +168834,108014,adventure,1421621706 +168834,108014,drama,1421621706 +168837,7572,Emma Thompson,1194061297 +168843,296,action,1425137225 +168843,296,drugs,1425137225 +168843,296,gritty,1425137225 +168843,296,r:sustained strong stylized violence,1425137225 +168843,356,docudrama,1431978256 +168843,356,drama,1431978256 +168843,356,history,1431978256 +168843,356,iconic,1431978256 +168843,356,mental disability,1431978256 +168843,356,period piece,1431978256 +168843,1073,England,1286120907 +168843,1073,Gene Wilder,1286120907 +168843,1246,Coming of age,1425138756 +168843,1246,inspirational,1425138752 +168843,1246,Shakespeare,1425138768 +168843,1280,polygamy,1425155774 +168843,1280,social commentary,1425155777 +168843,1711,Clint Eastwood,1297602986 +168843,1711,Southern theme,1297602968 +168843,1711,Voodoo,1297603016 +168843,1805,plot twist,1425138287 +168843,2502,office,1286121038 +168843,2858,dark,1425156907 +168843,2858,dark comedy,1425156903 +168843,2858,satirical,1425156890 +168843,2858,sexuality,1425156909 +168843,2858,social commentary,1425156892 +168843,2858,surrealism,1425156897 +168843,2858,thought-provoking,1425156899 +168843,3897,coming of age,1425138848 +168843,3897,nostalgic,1425138836 +168843,3897,philip seymour hoffman,1425138838 +168843,4027,country,1286121120 +168843,4027,country life,1286121120 +168843,4027,George Clooney,1286121120 +168843,4027,soundtrack,1286121120 +168843,4027,southern comedy,1286121120 +168843,4027,Southern theme,1286121120 +168843,4902,dark,1425156715 +168843,4902,Guillermo del Toro,1425156727 +168843,4902,supernatural,1425156717 +168843,5225,beautiful,1425156258 +168843,5225,bisexual,1425156248 +168843,5225,coming of age,1425156255 +168843,5225,Erotic,1425156266 +168843,5225,sexuality,1425156261 +168843,5617,black comedy,1425155960 +168843,5617,dark comedy,1425155974 +168843,5617,erotic,1425155963 +168843,5617,quirky,1425155966 +168843,5838,high society,1297603350 +168843,26662,anime,1425138860 +168843,26662,coming of age,1425138869 +168843,26662,strong female lead,1425138866 +168843,27020,based on a true story,1425138501 +168843,27020,lesbian,1425138504 +168843,27647,based on book,1425138206 +168843,27773,disturbing,1425157733 +168843,27773,stylized,1425157735 +168843,27773,twist ending,1425157731 +168843,27773,violent,1425157749 +168843,47610,19th century,1425137434 +168843,47610,surprise ending,1425137438 +168843,47610,twist ending,1425137422 +168843,48394,play on emotions,1286121015 +168843,48394,Spanish culture,1286121015 +168843,48696,cynical,1425156364 +168843,48696,dark,1425156358 +168843,48696,SUBURBAN DYSFUNCTION,1425156352 +168843,49957,England,1277684259 +168843,60950,bisexual,1425155878 +168843,60950,love triangles,1425155873 +168843,60950,sexuality,1425155864 +168843,60950,threesome,1425155866 +168843,63131,inappropriate,1286120965 +168843,63131,typical comedy,1286120965 +168843,71579,coming of age,1425138701 +168843,71579,visually appealing,1425138706 +168843,92152,coming of age,1425138933 +168843,102407,adapted from:book,1425137019 +168843,102407,based on a book,1425137012 +168843,102407,Period piece,1425137026 +168843,102407,stylized,1425137015 +168843,105355,coming of age,1425138244 +168843,105355,lesbian,1425138246 +168843,105355,visually appealing,1425138249 +168843,114554,folk tale,1425137333 +168843,114554,folklore,1425137337 +168856,55908,low budget,1453918660 +168862,296,extreme violence,1337672140 +168862,296,extremely gory,1337672151 +168862,296,extremely slow build,1337672162 +168862,318,acting,1337672551 +168862,318,atmospheric,1337672543 +168862,318,friendship,1337672556 +168862,318,smart,1337672572 +168862,318,thought-provoking,1337672568 +168862,318,twist ending,1337672591 +168862,527,Holocaust,1337671588 +168862,527,imdb top 250,1337671577 +168862,527,Jews,1337671595 +168862,527,sex scene,1337671610 +168862,527,thought-provoking,1337671564 +168862,527,touching,1337671570 +168862,527,true story,1337671550 +168862,915,Old,1337677158 +168862,1207,black and white,1337671454 +168862,1207,courtroom,1337671399 +168862,1207,heartwarming,1337671411 +168862,1207,history,1337671441 +168862,1207,racism,1337671425 +168862,1960,acting,1337675519 +168862,1960,based on a true story,1337675560 +168862,1960,biopic,1337675548 +168862,1960,cinematography,1337675532 +168862,1960,lavish,1337675515 +168862,1960,long,1337675571 +168862,2571,acid trip,1337672496 +168862,2571,confusing,1337672513 +168862,2571,cult film,1337672469 +168862,2571,post-apocalyptic,1337672480 +168862,2571,sci-fi,1337672503 +168862,2762,acting,1337671759 +168862,2762,smart,1337671764 +168862,2762,twist ending,1337671740 +168862,3350,black and white,1337671345 +168862,3350,Old,1337671358 +168862,4995,acting,1337671705 +168862,4995,inspirational,1337671670 +168862,4995,inspired by a real-life person,1337671681 +168862,4995,mental illness,1337671690 +168862,8950,creepy,1337671950 +168862,8950,foreign language,1337671960 +168862,55276,court,1337671845 +168862,55276,Edgar Award (Best Motion Picture),1337671859 +168862,55276,great acting,1337671824 +168862,55276,lawyers,1337671843 +168862,64957,acting,1337675435 +168862,64957,boring,1337675419 +168862,64957,long,1337675400 +168862,64957,predictable,1337675413 +168862,71033,foreign language,1337672648 +168862,71033,Spanish,1337672642 +168862,71033,subtitles,1337672660 +168862,72641,based on a true story,1337671250 +168862,72641,feel good movie,1337671231 +168862,72641,football,1337671260 +168862,72641,sports,1337671266 +168862,72641,touching,1337671186 +168869,50,complicated,1318292707 +168869,50,twist ending,1318292676 +168869,2762,Bruce Willis,1318295535 +168869,2762,enigmatic,1318295512 +168869,2762,M. Night Shyamalan,1318295526 +168869,2762,mindfuck,1318295503 +168869,2762,psychological,1318295545 +168869,2762,twist ending,1318295519 +168880,213,Russian,1169731402 +168880,306,Three Colors trilogy,1170184382 +168880,307,Three Colors trilogy,1170184396 +168880,308,Three Colors trilogy,1170184394 +168880,598,Russian,1168603118 +168880,914,Musical,1168602987 +168880,1232,Russian,1168603127 +168880,1298,Musical,1169731227 +168880,1450,Russian,1169730891 +168880,2018,Disney,1169730767 +168880,3000,anime,1169730214 +168880,3000,Studio Ghibli,1143055209 +168880,3357,Russian,1169731115 +168880,3503,Russian,1168603161 +168880,4788,Russian,1169730910 +168880,4857,Musical,1168602980 +168880,5373,Russian,1168603143 +168880,5618,anime,1169730333 +168880,5618,children,1170184505 +168880,5618,Studio Ghibli,1143055195 +168880,5690,anime,1169816488 +168880,5690,Studio Ghibli,1143055239 +168880,5888,Russian,1169730754 +168880,5889,Russian,1170443115 +168880,5971,anime,1169730212 +168880,5971,children,1169730465 +168880,5971,Studio Ghibli,1143055185 +168880,5991,Musical,1168602970 +168880,6350,anime,1170184199 +168880,6350,Studio Ghibli,1143055203 +168880,6492,Russian,1169730802 +168880,6542,Russian,1169731002 +168880,6792,Russian,1169731413 +168880,6818,Russian,1168609639 +168880,7060,Andrew Lloyd Webber,1169636837 +168880,7060,Musical,1168603008 +168880,7099,anime,1169730310 +168880,8025,Russian,1168603155 +168880,8253,anime,1169730226 +168880,8794,Russian,1169731184 +168880,26150,Russian,1168608983 +168880,26662,anime,1169730251 +168880,26662,Studio Ghibli,1143055214 +168880,26776,anime,1169730253 +168880,26776,Studio Ghibli,1143055219 +168880,27731,anime,1169730228 +168880,27731,Studio Ghibli,1143055264 +168880,30816,Andrew Lloyd Webber,1169636821 +168880,30816,Musical,1168602914 +168880,31658,anime,1169730240 +168880,31658,Studio Ghibli,1143055156 +168880,32892,Russian,1169730902 +168884,260,epic adventure,1441490409 +168884,260,han shot first,1441490425 +168886,78893,white washing,1374919161 +168907,80549,emma stone,1318191208 +168907,80549,peer pressure,1318191185 +168929,52973,Apatow productions,1324156987 +168929,59900,Adam Sandler,1326047086 +168929,59900,hilarious,1326047093 +168929,59900,hot chicks,1326047072 +168929,94266,funny!,1338357475 +168929,94266,good acting,1338357475 +168929,94266,sweet and romantic,1338357475 +168960,5292,hillarious,1155568644 +168965,260,"sci-fi, space",1439497052 +168965,260,space action,1439497065 +168980,260,fiction,1436687727 +168980,260,science,1436687736 +169012,356,ambiguous,1427674983 +169012,356,boring,1427674983 +169012,356,strange,1427674983 +169023,4963,Brad Pitt,1240696689 +169032,260,Chosen one,1439797561 +169047,5418,fist fight,1432879518 +169047,5418,https://movielens.org/explore?tag=based%20on%20a%20book&sortBy=tagScore,1432879459 +169047,5418,https://movielens.org/explore?tag=car%20chase&sortBy=tagScore,1432879446 +169047,5418,https://movielens.org/explore?tag=conspiracy&sortBy=tagScore,1432879454 +169047,5418,https://movielens.org/explore?tag=espionage&sortBy=tagScore,1432879450 +169047,5418,https://movielens.org/explore?tag=robert%20ludlum&sortBy=tagScore,1432879472 +169047,8665,goa,1432879564 +169047,8665,https://movielens.org/explore?tag=car%20chase&sortBy=tagScore,1432879544 +169047,8665,https://movielens.org/explore?tag=robert%20ludlum&sortBy=tagScore,1432879555 +169047,54286,https://movielens.org/explore?tag=action&sortBy=tagScore,1432879314 +169047,54286,https://movielens.org/explore?tag=based%20on%20a%20book&sortBy=tagScore,1432879321 +169047,54286,https://movielens.org/explore?tag=conspiracy&sortBy=tagScore,1432879325 +169047,54286,https://movielens.org/explore?tag=espionage&sortBy=tahttps://movielens.org/explore?tag=spies&sortBy=tagScoregScore,1432879296 +169047,54286,https://movielens.org/explore?tag=spies&sortBy=tagScore,1432879307 +169047,91630,https://movielens.org/explore?tag=comedic%20moments&sortBy=tagScore,1432879364 +169047,91630,https://movielens.org/explore?tag=espionage&sortBy=tagScore,1432879388 +169047,91630,https://movielens.org/explore?tag=franchise&sortBy=tagScore,1432879391 +169047,91630,https://movielens.org/explore?tag=simon%20pegg&sortBy=tagScore,1432879382 +169047,91630,https://movielens.org/explore?tag=visuals&sortBy=tagScore,1432879368 +169047,122892,action,1432880685 +169047,122892,artificial intelligence,1432880665 +169047,122892,franchise,1432880643 +169047,122892,https://movielens.org/explore?tag=action&sortBy=tagScore,1432880700 +169047,122892,https://movielens.org/explore?tag=franchise&sortBy=tagScore,1432880694 +169047,122892,https://movielens.org/explore?tag=superhero&sortBy=tagScore,1432880637 +169047,122892,intelligent robots,1432880656 +169047,122892,technology,1432880673 +169053,3753,brave,1439712377 +169053,3753,hero,1439712366 +169053,3753,historical,1439712362 +169053,7143,historical,1439712427 +169053,7143,Honor,1439712420 +169053,7143,samurai,1439712416 +169053,8961,comedy,1439712335 +169053,8961,creative,1439712325 +169053,8961,funny,1439712317 +169062,7413,bad movie,1191891878 +169074,247,lesbian,1437507901 +169074,364,Disney,1437385950 +169074,1485,jim carrey,1437521719 +169074,2340,Anthony Hopkins,1437519904 +169074,3000,Studio Ghibli,1437385848 +169074,3355,Johnny Depp,1437386188 +169074,3355,Mystery,1437386179 +169074,4815,anthony hopkins,1437387132 +169074,5679,horror,1437386083 +169074,5679,mystery,1437386078 +169074,5679,suspense,1437386090 +169074,50183,lesbian,1437385660 +169074,74458,plot twist,1437387483 +169074,74458,psychological,1437387490 +169074,74458,twist ending,1437387474 +169074,74789,3D,1437386290 +169074,74789,Alan Rickman,1437386297 +169074,74789,Helena Bonham Carter,1437386278 +169074,74789,Johnny Depp,1437386282 +169074,83798,Eva Green,1437507854 +169074,83798,lesbian,1437507840 +169074,139499,lesbians,1437507805 +169074,139505,lesbian,1437515063 +169085,10,007,1140788782 +169085,260,!George Lucas,1145606306 +169085,260,fantasy,1145606212 +169085,260,USA film registry,1145606199 +169085,441,bullying,1223635462 +169085,594,USA film registry,1145606120 +169085,678,short,1150013737 +169085,750,USA film registry,1145549208 +169085,899,USA film registry,1145606082 +169085,903,USA film registry,1145606829 +169085,910,USA film registry,1145606149 +169085,912,USA film registry,1145549135 +169085,913,USA film registry,1145606740 +169085,919,USA film registry,1145606801 +169085,920,USA film registry,1145549247 +169085,922,USA film registry,1145606424 +169085,923,USA film registry,1145549162 +169085,954,USA film registry,1145605969 +169085,1283,USA film registry,1145549280 +169085,1423,racism,1236891679 +169085,1722,007,1140790831 +169085,1939,USA film registry,1145606450 +169085,1945,USA film registry,1145606054 +169085,2268,Aaron Sorkin,1226309582 +169085,2376,007,1140789754 +169085,2890,!David O. Russell,1145118201 +169085,2890,!George Clooney,1145118181 +169085,2947,007,1140789238 +169085,2948,007,1140789227 +169085,2949,007,1140789207 +169085,2989,007,1140789731 +169085,2990,007,1140790341 +169085,2991,007,1140789703 +169085,2993,007,1140789279 +169085,2997,Charlie Kaufman,1139843762 +169085,3022,USA film registry,1145606566 +169085,3082,007,1140790807 +169085,3095,USA film registry,1145606597 +169085,3365,USA film registry,1145606775 +169085,3462,USA film registry,1145549499 +169085,3633,007,1140789588 +169085,3635,007,1140789742 +169085,3638,007,1140789612 +169085,3639,007,1140789718 +169085,3984,007,1140789268 +169085,4005,007,1140790326 +169085,4848,bad acting,1141314342 +169085,4848,overrated,1141314438 +169085,5298,Charlie Kaufman,1139843926 +169085,5690,WW2,1171055939 +169085,5796,007,1140791076 +169085,5872,007,1140790818 +169085,5902,Charlie Kaufman,1139843811 +169085,6003,Charlie Kaufman,1139843961 +169085,6777,patriotism,1222524809 +169085,6867,trainspotting,1191043918 +169085,7243,USA film registry,1145549307 +169085,7294,election,1215457700 +169085,7294,president,1215457721 +169085,7294,romcom,1215457721 +169085,7361,Charlie Kaufman,1139843855 +169085,7440,Pledge of Allegiance,1220346229 +169085,7569,007,1140789187 +169085,7570,007,1140789767 +169085,7573,007,1140789322 +169085,8125,USA film registry,1145606369 +169085,8860,bad acting,1143789271 +169085,8977,war,1169756833 +169085,25766,USA film registry,1145606500 +169085,27830,golf,1151961671 +169085,27837,airplane accident,1224511487 +169085,27837,desert,1224511487 +169085,27837,remake,1224511468 +169085,33821,oil,1170010459 +169085,41769,asperger syndrome,1196632369 +169085,41769,asperger's syndrome,1196633558 +169085,44828,hunting,1222523769 +169085,48696,extramarital affair,1218318675 +169085,48696,parenthood,1218318687 +169085,49312,Asperger syndrome,1206529752 +169085,49312,autism,1206529746 +169085,49530,bad Afrikaans accent,1171820400 +169085,49530,cheesy ending,1171820297 +169085,50923,deus ex machina,1201246641 +169085,50923,movie physics,1201246641 +169085,53956,farce,1199894255 +169085,55280,delusion,1198427745 +169085,55280,real doll,1198427745 +169085,55284,torture,1198427117 +169085,55284,voters,1198427093 +169085,57243,egyptian,1232813771 +169085,57243,music,1232813771 +169085,62511,meta,1238615079 +169085,62511,play,1238615068 +169090,110,pompous,1252933211 +169090,110,self-important,1252933202 +169090,170,inaccurate,1247258821 +169090,185,computers,1247260232 +169090,185,hacking,1247260231 +169090,185,inaccurate,1252933172 +169090,282,language,1241125455 +169090,282,speech therapy,1241125450 +169090,778,social commentary,1252932698 +169090,902,stereotypes,1252931575 +169090,1078,Not Woody's best,1247260815 +169090,1203,racism,1252932741 +169090,1203,social commentary,1252932738 +169090,1251,Nino Rota,1252932346 +169090,1255,really bad,1252933062 +169090,1255,ugly,1252933034 +169090,1307,friendship,1252932844 +169090,1307,friendship of love,1252932848 +169090,1747,black comedy,1252932811 +169090,1747,corruption,1252932802 +169090,1747,politics,1252932799 +169090,1757,father-son relationship,1253147697 +169090,1757,love,1253147694 +169090,1757,nocturnal,1253147686 +169090,1757,pigs,1253147703 +169090,1757,urban,1253147682 +169090,1917,bad science,1247260765 +169090,1917,stylized,1247260772 +169090,2710,overrated,1247260249 +169090,2959,social commentary,1252931877 +169090,2971,Dance,1252932713 +169090,3266,mockumentary,1247260279 +169090,3418,women,1427983052 +169090,3481,funny,1271475739 +169090,3481,hilarious,1271475747 +169090,3481,relationships,1364336746 +169090,3819,charming,1247258266 +169090,3819,food,1247258268 +169090,3819,humorous,1247258263 +169090,3819,quirky,1247258259 +169090,3819,ramen,1253155800 +169090,3967,coming of age,1252932509 +169090,3967,dance,1252932513 +169090,3967,poverty,1252932522 +169090,4306,computer animation,1252931471 +169090,4391,love,1253155768 +169090,4391,sensuous,1253155766 +169090,4624,really bad,1252933082 +169090,4873,pseudoscience,1247260297 +169090,4873,self-important,1247260304 +169090,4878,cruel,1252931839 +169090,6954,Death,1252932469 +169090,7234,Giulietta Masina,1252932285 +169090,7234,poignant,1252932278 +169090,7254,stupid,1252931595 +169090,7771,Realities of life,1252932039 +169090,8154,Nino Rota,1252932332 +169090,8784,coming of age,1252932369 +169090,8784,Great Soundtrack,1252932386 +169090,46578,dysfunctional family,1272073700 +169090,47610,predictable,1252933337 +169090,48082,artsy,1252932263 +169090,48082,fanciful,1247258595 +169090,48082,Michel Gondry,1247258597 +169090,48082,quirky,1247258583 +169090,48394,fairy tale,1252932939 +169090,48394,imagination,1252932946 +169090,56339,fairy tale,1252932082 +169090,57669,dark comedy,1248565902 +169090,58559,Heath Ledger,1297564505 +169090,58559,Morgan Freeman,1297564513 +169090,59118,psychology,1252932401 +169090,60950,Barcelona,1247258291 +169090,60950,love,1247258305 +169090,60950,philosophical,1247258297 +169090,60950,relationships,1247258300 +169090,63072,post-apocalyptic,1297920921 +169090,63072,too intense,1297920917 +169090,63229,clubbing,1422330258 +169090,63229,drugs,1422330258 +169090,63229,music,1422330258 +169090,63229,techno,1422330258 +169090,69481,inaccurate,1252984948 +169090,72027,holocaust,1427983042 +169090,72027,psychological,1427983042 +169090,72027,world war ii,1427983042 +169090,72998,colonialism,1268356096 +169090,72998,predictable,1268356070 +169090,72998,race issues,1268356083 +169090,72998,racism,1268356079 +169090,72998,visually stunning,1268356089 +169090,72998,visuals,1268796194 +169090,74795,Iraq War,1275702656 +169090,74795,Middle East,1275702659 +169090,79702,cultural references,1301623339 +169090,79702,video games,1301623329 +169090,79702,visually appealing,1301623333 +169090,88347,aliens,1427982983 +169090,88347,doomsday scenario,1427983000 +169090,88347,forced,1427982960 +169121,47,Brad Pitt,1361478256 +169121,47,disturbing,1361478265 +169121,47,horror,1361478244 +169121,47,Morgan Freeman,1361478217 +169121,47,psychological,1361478241 +169121,47,religion,1361478220 +169121,47,thriller,1361478237 +169121,47,twist ending,1361478211 +169121,47,violent,1361478251 +169121,356,Oscar (Best Picture),1361478342 +169121,8533,chick flick,1361529978 +169121,8533,life choices,1361529971 +169121,8533,sentimental,1361529966 +169121,56949,Katherine Heigl,1361530114 +169121,73290,Richard Gere,1361529947 +169121,74789,Alan Rickman,1361530566 +169121,74789,Helena Bonham Carter,1361530553 +169121,74789,inspiring,1361530562 +169121,74789,Johnny Depp,1361530540 +169121,74789,Tim Burton,1361530556 +169121,74789,visually appealing,1361530559 +169121,74789,weird,1361530569 +169121,78574,family relationships,1361529879 +169121,78574,realism,1361529867 +169121,78574,siblings,1361529870 +169121,78574,Sundance Grand Jury Prize: Dramatic,1361529873 +169121,78574,thriller,1361529876 +169121,99007,zombies,1363780966 +169136,913,san francisco,1440395785 +169136,3740,San Francisco,1440395366 +169136,4855,San Francisco,1440395735 +169136,48780,magic,1440395257 +169136,48780,sci-fi,1440395244 +169136,56782,milkshake,1440395969 +169136,76091,Korean,1440396157 +169137,4011,Brad Pitt,1345357113 +169137,4011,hilarious,1345357104 +169154,94466,not a movie,1440705765 +169154,139721,A Brilliant Young Mind,1440429133 +169157,733,Action,1184732544 +169162,2490,action,1367240510 +169162,2490,Mel Gibson,1367240516 +169162,2490,remake,1367240535 +169216,27773,Korean,1225241299 +169250,3451,classic,1430857587 +169250,4292,epic,1430857571 +169257,1291,Sequel,1138807216 +169257,1799,Dark Comedy,1138807038 +169257,4963,Heist,1138807059 +169257,6333,Sequel,1138807142 +169257,6333,Superhero,1138807142 +169257,8636,Sequel,1138807126 +169257,8636,Superhero,1138807126 +169257,33660,True Story,1138806845 +169257,33794,Superhero,1138807052 +169262,608,based on a true story,1436007935 +169262,608,dark comedy,1436007922 +169262,628,courtroom drama,1438121806 +169262,628,edward norton,1438121802 +169262,628,psychology,1438121808 +169262,628,twist ending,1438121804 +169262,858,Al Pacino,1437253945 +169262,858,classic,1437253947 +169262,858,great acting,1437253954 +169262,858,Mafia,1437253943 +169262,1213,mafia,1439157964 +169262,1213,organized crime,1439157971 +169262,1704,inspirational,1438212580 +169262,1704,psychology,1438212576 +169262,1748,atmospheric,1438289950 +169262,1748,dark fantasy,1438289955 +169262,1748,dystopia,1438289947 +169262,1748,steampunk,1438289959 +169262,1748,surreal,1438289948 +169262,1748,thought-provoking,1438289952 +169262,4027,1930s,1436049449 +169262,4027,black comedy,1436049461 +169262,4027,coen brothers,1436049433 +169262,4027,great soundtrack,1436049434 +169262,4027,prison escape,1436049448 +169262,4027,Quirky,1436049437 +169262,4239,drugs,1437515332 +169262,4239,Johnny Depp,1437515342 +169262,4963,heist,1437688975 +169262,4963,witty,1437688981 +169262,5903,dystopia,1436478841 +169262,5903,totalitarianism,1436478844 +169262,7361,bittersweet,1441577895 +169262,7361,nonlinear,1441577892 +169262,7361,philosophy,1441577902 +169262,7361,psychology,1441577909 +169262,7361,romance,1441577901 +169262,7361,surreal,1441577889 +169262,7361,thought-provoking,1441577890 +169262,8950,atmospheric,1436388503 +169262,8950,Christian Bale,1436388495 +169262,8950,creepy,1436388499 +169262,8950,dark,1436388505 +169262,8950,psychology,1436388487 +169262,8950,schizophrenia,1436388490 +169262,8950,twist ending,1436388485 +169262,31685,chick flick,1437919055 +169262,31685,romantic comedy,1437919051 +169262,44974,controversial,1437427309 +169262,44974,disturbing,1437427307 +169262,44974,Ellen Page,1437427306 +169262,44974,intense,1437427311 +169262,44974,psychology,1437427313 +169262,55052,heartbreaking,1437219092 +169262,55290,Casey Affleck,1437680811 +169262,55290,detective,1437680822 +169262,55290,morality,1437680819 +169262,55290,police,1437680809 +169262,55290,twist,1437680817 +169262,56941,Gerard Butler,1439333359 +169262,56941,romantic,1439333365 +169262,56941,self discovery,1439333361 +169262,59549,gay,1437918931 +169262,59549,lgbt,1437918931 +169262,59549,surfing,1437918931 +169262,68319,superhero,1436658584 +169262,70286,aliens,1438474698 +169262,70286,atmospheric,1438474713 +169262,70286,intelligent sci-fi,1438474702 +169262,70286,social commentary,1438474700 +169262,78574,cultural authenticity,1438894856 +169262,78574,realism,1438894849 +169262,79357,nonlinear,1441500617 +169262,79357,philosophy,1441500629 +169262,79357,surreal,1441500619 +169262,79357,thought provoking,1441500623 +169262,80969,Carey Mulligan,1437219166 +169262,80969,depressing,1437219177 +169262,80969,great acting,1437219173 +169262,80969,thought-provoking,1437219156 +169262,84392,lawyers,1438619604 +169262,87232,superhero,1436736214 +169262,88129,atmospheric,1436008829 +169262,88129,cars,1436008844 +169262,88129,cinematography,1436008830 +169262,88129,great soundtrack,1436901463 +169262,88129,minimalistic,1436008850 +169262,88129,Ryan Gosling,1436008832 +169262,88129,tense,1436008841 +169262,88140,Marvel,1436303942 +169262,88140,superhero,1436303945 +169262,89753,atmosphere,1442869747 +169262,89753,espionage,1442869737 +169262,89753,slow paced,1442869744 +169262,91199,gay,1438430445 +169262,92259,emotional,1436006285 +169262,92259,great acting,1436006285 +169262,92259,great soundtrack,1436006285 +169262,95449,strippers,1437218902 +169262,96610,clever,1436008744 +169262,96610,dystopia,1436008736 +169262,96610,sci-fi,1436008734 +169262,96610,time travel,1436008726 +169262,96829,Mads Mikkelsen,1436007797 +169262,96829,painful to watch,1436007796 +169262,97304,Ben Affleck,1436007756 +169262,97304,espionage,1436007750 +169262,97304,hollywood,1436007768 +169262,97304,Iran,1436007735 +169262,97304,revolution,1436007766 +169262,97304,suspenseful,1436007753 +169262,103042,superhero,1436008880 +169262,103042,visually appealing,1436008874 +169262,103042,Zack Snyder,1436008883 +169262,103772,superhero,1437066242 +169262,105213,Joseph Gordon-Levitt,1437218924 +169262,105213,Julianne Moore,1437218927 +169262,105213,Scarlett Johansson,1437218925 +169262,106443,christmas,1437918992 +169262,106443,holidays,1437919009 +169262,106487,dystopia,1437263540 +169262,106920,artificial intelligence,1436007819 +169262,106920,bittersweet,1436007836 +169262,106920,loneliness,1436007843 +169262,106920,meaning of life,1436007846 +169262,106920,philosophical,1436007838 +169262,106920,psychology,1436007836 +169262,106920,thought-provoking,1436007820 +169262,106920,transhumanism,1436007851 +169262,109487,artificial intelligence,1436007984 +169262,109487,Christopher Nolan,1436007965 +169262,109487,philosophical issues,1436007988 +169262,109487,relativity,1436007971 +169262,109487,space,1436007967 +169262,109487,thought-provoking,1436007969 +169262,109487,time-travel,1436007968 +169262,109487,wormhole,1436007976 +169262,110102,Marvel Cinematic Universe,1436561026 +169262,110102,Scarlett Johansson,1436561035 +169262,110102,superhero,1436561022 +169262,111251,1920s,1438813028 +169262,111251,immigration,1438813009 +169262,111251,marion cotillard,1438813018 +169262,111251,prostitution,1438813025 +169262,111360,Scarlett Johansson,1436008807 +169262,111360,strong female lead,1436008809 +169262,111360,transhumanist,1436008820 +169262,111362,superhero,1437082473 +169262,112552,good acting,1436007908 +169262,112552,jazz,1436007895 +169262,112552,Tense,1436007897 +169262,114060,crime,1442787443 +169262,114060,subtlety,1442787446 +169262,114060,thriller,1442787444 +169262,114060,Tom Hardy,1442787448 +169262,116823,dystopia,1437340947 +169262,119145,gentlemanly,1444333822 +169262,119145,spy,1444333820 +169262,122882,action,1439758550 +169262,122882,adventure,1439758558 +169262,122882,dystopian,1439758554 +169262,122882,post apocalypse,1439758546 +169262,122882,visually appealing,1439758547 +169262,129354,con artist,1437247127 +169262,129354,predictable,1437247127 +169262,129354,will smith,1437247127 +169262,130073,cheesy,1436636219 +169262,130073,Disney,1436008772 +169262,130073,fairy tale,1436008774 +169262,144976,atmospheric,1447194263 +169262,144976,cannibalism,1447194240 +169262,144976,western,1447194242 +169272,106473,action,1423265209 +169272,106473,animation,1423265209 +169272,106473,anime,1423265209 +169278,260,space action,1444719370 +169278,260,Star Wars,1444719361 +169291,112940,contemporary,1431430239 +169291,112940,politics,1431430239 +169291,112940,rivalry,1431430239 +169330,4878,mental illness,1412444541 +169330,4878,psychology,1412444535 +169330,4878,thought-provoking,1412444537 +169330,4878,twist ending,1412444556 +169330,33437,father figure,1412534654 +169330,33437,martial arts,1412534633 +169330,33437,Morgan Freeman,1412534662 +169330,33437,piano,1412534666 +169330,44199,bad ending,1412506184 +169330,44199,intelligent thriller,1412506188 +169330,44199,twist ending,1412506193 +169330,46322,Jet Li,1412528861 +169330,46322,Martial Arts,1412528859 +169345,260,good vs evil,1439081919 +169345,260,space adventure,1439081893 +169362,54372,twist ending,1442212552 +169376,260,Every nerd should have seen more than once,1431705877 +169376,260,Science Fiction,1431705872 +169376,104913,based on a true story,1431706392 +169376,104913,Formula 1,1431706402 +169376,104913,interesting characters,1431706397 +169376,109374,great dialogue,1431706430 +169376,109374,quirky,1431706437 +169376,109374,visually appealing,1431706421 +169376,109374,Wes Anderson,1431706424 +169376,109374,whimsical,1431706434 +169379,260,classic sci-fi,1439737422 +169379,260,good acting,1439737482 +169379,260,good action fantasy,1439737475 +169379,260,good cast,1439737489 +169379,260,good vs evil,1439737466 +169379,260,must see,1439737435 +169393,260,scifi cult,1443461239 +169397,318,not as good as one might think,1189493055 +169417,61236,documentary,1357246137 +169426,69122,comedy,1285102628 +169426,69122,horror,1285102636 +169433,938,coming of age,1293057302 +169433,938,romance,1293057295 +169433,1172,meta,1293057222 +169433,1202,bleak,1293057687 +169433,1202,British,1293057664 +169433,1202,cult film,1293057659 +169433,1202,dark comedy,1293057681 +169433,1202,quotable,1293057651 +169433,5299,comedy,1293057357 +169433,5299,culture clash,1293057363 +169433,5299,family,1293057345 +169433,5299,greek,1293057337 +169433,6218,coming of age,1293057558 +169433,6218,culture clash,1293057550 +169433,6218,football,1293057571 +169433,27648,interwar,1293057188 +169433,27648,Waugh,1293057173 +169433,42018,blitz spirit,1293057254 +169433,42018,London,1293057242 +169433,42018,Will Young,1293057262 +169433,44555,art,1293057286 +169433,44555,kindness,1293057278 +169433,54259,adventure,1293057515 +169433,54259,British,1293057498 +169433,54259,comedy,1293057504 +169433,54259,heart,1293057526 +169433,54259,magic,1293057520 +169433,60758,alcoholism,1293059163 +169433,60758,Ben Wishaw,1293059135 +169433,60758,English,1293059109 +169433,60758,Oxford,1293059119 +169433,60758,religion,1293059147 +169433,60758,Waugh,1293059077 +169433,72720,beautiful cinematography,1293057408 +169433,72720,grief,1293057425 +169433,72720,life & death,1293057439 +169447,45720,silly,1158074743 +169519,50,predictable,1445015488 +169519,50,predictable ending,1445015491 +169519,50,violence against children,1445015556 +169519,260,aesthetic science fiction,1445014271 +169519,260,epic adventure,1445014225 +169519,260,space opera,1445014199 +169519,541,aesthetic science fiction,1445017808 +169519,541,cyberpunk,1445017814 +169519,541,Philip K. Dick,1445017818 +169519,594,animation,1445019704 +169519,594,classic,1445019702 +169519,594,notable soundtrack,1445019715 +169519,741,aesthetic science fiction,1445020976 +169519,1028,musical,1445020000 +169519,1028,notable soundtrack,1445020008 +169519,1188,notable soundtrack,1445020826 +169519,1197,Cult classic,1445019235 +169519,1197,pirates,1445019247 +169519,1197,Quotable,1445019248 +169519,1197,whimsical,1445019240 +169519,1220,great soundtrack,1445019582 +169519,1220,notable soundtrack,1445019584 +169519,1233,claustrophobic,1445020052 +169519,1233,gritty,1445020051 +169519,1233,notable soundtrack,1445020064 +169519,1238,notable soundtrack,1445021866 +169519,1282,classical music,1445020243 +169519,1282,notable soundtrack,1445020252 +169519,1288,cult classic,1445019856 +169519,1288,mockumentary,1445019850 +169519,1357,notable soundtrack,1445016739 +169519,1391,funny,1445017004 +169519,1391,Jack Nicholson,1445017010 +169519,1391,Parody,1445017007 +169519,1416,musical,1445021179 +169519,1416,notable soundtrack,1445021189 +169519,1527,aesthetic science fiction,1445019308 +169519,1527,visual,1445019314 +169519,1527,visually appealing,1445019321 +169519,1653,beautiful,1445017787 +169519,1653,dystopia,1445017782 +169519,1784,excellent script,1445016523 +169519,1784,Jack Nicholson,1445016518 +169519,1784,neurosis,1445016527 +169519,1957,notable soundtrack,1445020899 +169519,1967,80's high fantasy,1445015307 +169519,1967,fantasy,1445015302 +169519,1967,Jim Henson,1445015260 +169519,2140,80's high fantasy,1445015372 +169519,2140,fantasy,1445015379 +169519,2140,Jim Henson,1445015381 +169519,2140,uncanny valley,1445015359 +169519,2193,80's high fantasy,1445015412 +169519,2193,fantasy,1445015418 +169519,2424,90's internet,1445020211 +169519,2424,chick flick,1445020172 +169519,2428,cheer the bad guys,1445021118 +169519,2700,adult humor,1445019765 +169519,2745,notable soundtrack,1445017899 +169519,2762,great ending,1445016085 +169519,2762,suspense,1445016090 +169519,2762,twist ending,1445016087 +169519,3175,parody,1445019964 +169519,3175,Sigourney Weaver,1445019967 +169519,3489,notable soundtrack,1445020697 +169519,3704,Tina Turner,1445018036 +169519,3751,aardman,1445017051 +169519,3751,claymation,1445017053 +169519,3996,atmospheric,1445019423 +169519,3996,beautiful,1445019427 +169519,3996,visual,1445019431 +169519,3996,visually stunning,1445019434 +169519,4973,great soundtrack,1445015205 +169519,4973,notable soundtrack,1445015209 +169519,4995,inspirational,1445016696 +169519,4995,mathematics,1445016682 +169519,4995,schizophrenia,1445016688 +169519,5669,documentary,1445020355 +169519,5690,anti-war,1445015052 +169519,5690,downbeat,1445015050 +169519,5690,Studio Ghibli,1445015060 +169519,6365,cyberpunk,1445019809 +169519,6365,Post apocalyptic,1445019802 +169519,6365,sequel,1445019800 +169519,6942,Alan Rickman,1445020149 +169519,7162,notable soundtrack,1445021743 +169519,8464,documentary,1445017746 +169519,8464,social criticism,1445017750 +169519,8580,fairy tale,1445015739 +169519,8580,musical,1445015741 +169519,8580,Stephen Sondheim,1445015735 +169519,8783,Atmospheric,1445015992 +169519,8783,great soundtrack,1445016004 +169519,8783,suspense,1445016014 +169519,8783,twist ending,1445016033 +169519,8905,notable soundtrack,1445017865 +169519,30793,fantasy,1445015856 +169519,31658,anti-war,1445016154 +169519,31658,based on a book,1445016185 +169519,31658,fantasy world,1445016177 +169519,31658,Hayao Miyazaki,1445016167 +169519,31658,steampunk,1445016165 +169519,31658,Studio Ghibli,1445016169 +169519,31658,wizards,1445016173 +169519,38038,innuendo,1445017096 +169519,41566,C.S. Lewis,1445016305 +169519,41566,Christian,1445016297 +169519,41566,christianity,1445016287 +169519,41566,fantasy world,1445016307 +169519,41566,magic,1445016303 +169519,41566,witch,1445016293 +169519,44555,East Germany,1445016934 +169519,44555,historical,1445016939 +169519,98961,American propaganda,1445016615 +169519,98961,Kathryn Bigelow,1445016618 +169519,98961,propaganda,1445016612 +169519,108932,anti-conformity,1445016437 +169519,108932,childhood,1445016471 +169519,108932,fun,1445016401 +169519,108932,hectic,1445016417 +169519,108932,rebellion,1445016434 +169519,118997,fairy tale,1445015788 +169519,118997,great soundtrack,1445015808 +169519,118997,meryl streep,1445015791 +169519,118997,musical,1445015786 +169519,144250,documentary,1445014586 +169519,144250,Julian Assange,1445014597 +169519,144250,political,1445014616 +169519,144250,wikileaks,1445014590 +169521,193,campy,1437408078 +169521,1206,cult film,1337983127 +169521,1206,imdb top 250,1337983130 +169521,1206,satire,1337983133 +169521,1206,social commentary,1337983136 +169521,1206,Stanley Kubrick,1337983122 +169521,1206,Surrealism,1337983138 +169521,1732,black comedy,1337983188 +169521,1732,comedy,1337983191 +169521,1732,cult film,1337983193 +169521,1732,quirky,1337983197 +169521,1924,after 10 minutes it's unwatchable,1337983685 +169521,1924,Bela Lugosi,1337983699 +169521,1924,campy,1337983712 +169521,1924,cheesy,1337983710 +169521,1924,cult classic,1337983706 +169521,1924,Edward D. Wood Jr.,1337983696 +169521,1924,so bad it's funny,1337983687 +169521,1924,so bad it's good,1337983690 +169521,1924,worst movie ever,1337983693 +169521,2361,amateur film making,1337988999 +169521,2361,controversial,1337988990 +169521,2361,goofy,1337989005 +169521,2361,low budget,1337988996 +169521,2361,male nudity,1337988980 +169521,2361,quirky,1337989015 +169521,2361,raunchy,1337989009 +169521,2361,sexual,1337989013 +169521,2657,campy,1337983738 +169521,2657,cult classic,1337983740 +169521,2657,cult film,1337983744 +169521,2657,great soundtrack,1337983752 +169521,2657,music,1337983749 +169521,2657,Quirky,1337983735 +169521,3949,atmospheric,1337983055 +169521,3949,dark,1337983057 +169521,3949,depressing,1337983059 +169521,3949,disturbing,1337983064 +169521,3949,drugs,1337983068 +169521,3949,emotional,1337983070 +169521,3949,imdb top 250,1337983072 +169521,3949,independent film,1337983074 +169521,3949,loneliness,1337983076 +169521,3949,Nudity (Full Frontal - Notable),1337983079 +169521,3949,Nudity (Full Frontal),1337983081 +169521,3949,prostitution,1337983082 +169521,3949,psychological,1337983093 +169521,3949,psychology,1337983095 +169521,3949,revenge,1337983097 +169521,3949,Romance,1337983100 +169521,3949,social commentary,1337983104 +169521,3949,visually appealing,1337983106 +169521,4863,Baltimore,1337989083 +169521,4863,John Waters,1337989075 +169521,4878,cult film,1337983161 +169521,4878,imdb top 250,1337983163 +169521,4878,quirky,1337983169 +169521,5780,humorous,1337989050 +169521,5780,John Waters,1337989047 +169521,48394,disturbing,1337983014 +169521,48394,social commentary,1337983040 +169521,48394,violence,1337983030 +169521,48394,world war II,1337983028 +169521,70946,campy,1337983640 +169521,70946,cult film,1337983642 +169521,70946,Funny as hell,1337983647 +169521,70946,IMDB bottom 100,1337983657 +169521,70946,Oh My Goood!,1337983662 +169521,70946,Popcorn sex,1337983651 +169521,70946,We do not piss on hospitality,1337983654 +169521,74754,absurd,1337983551 +169521,74754,acting,1337983555 +169521,74754,broken english,1337983559 +169521,74754,comedy,1337983593 +169521,74754,cult film,1337983568 +169521,74754,nonsensical,1337983564 +169521,74754,quotable,1337983584 +169521,74754,so bad it's good,1337983579 +169521,74754,unintentional comedy,1337983576 +169521,74754,unintentionally funny,1337983572 +169521,90866,1930s,1337982916 +169521,90866,cinematography,1337982947 +169521,90866,existentialism,1337982949 +169521,90866,fantasy,1337982953 +169521,90866,France,1337982921 +169521,90866,Jude Law,1337982925 +169521,90866,Martin Scorsese,1337982941 +169521,90866,nostalgic,1337982935 +169521,90866,Paris,1337982928 +169521,90866,robots,1337982960 +169521,90866,Sacha Baron Cohen,1337982939 +169521,90866,visually appealing,1337982932 +169555,356,funny,1435833759 +169555,356,heartwarming,1435833759 +169555,356,sad but good,1435833759 +169555,52722,adapted from:comic,1365726256 +169555,52722,based on a comic,1365726253 +169555,52722,comic book,1365726251 +169555,52722,Comic Book adaption,1365726247 +169555,52722,Kirsten Dunst,1365726271 +169555,52722,Marvel,1365726276 +169555,52722,New York City,1365726268 +169555,52722,Tobey Maguire,1365726264 +169555,54910,dark comedy,1365877145 +169555,54910,dark humor,1365877150 +169555,54910,horror,1365877155 +169555,54910,satire,1365877162 +169555,54910,serial killer,1365877168 +169555,54910,slasher,1365877170 +169555,54910,spoof,1365877173 +169555,54910,surprise ending,1365877176 +169555,54910,twist ending,1365877206 +169555,60684,alternate reality,1365726808 +169555,60684,dystopia,1365726812 +169555,60684,political commentary,1365726815 +169555,60684,social commentary,1366261106 +169555,88468,Wolves,1378734382 +169570,1291,dvd,1137877245 +169573,7502,World War II,1300217519 +169586,1,lots of heart,1229405305 +169586,1345,good scare,1229405291 +169586,7104,Sophomoric,1229405185 +169652,318,based on a book,1434556695 +169652,318,Stephen King,1434556699 +169652,33779,absurd humor,1434556667 +169666,293,Natalie Portman,1246260086 +169666,1265,alternate universe,1246188938 +169666,1265,humorous,1246188933 +169666,1265,surreal,1246188929 +169666,1265,time loop,1246188943 +169666,3081,Johnny Depp,1249746054 +169666,60684,sci-fi,1249745868 +169666,60684,too long,1249745883 +169673,780,Deleted Scenes,1335482362 +169673,780,EVERYTHING,1335482370 +169695,8666,DC,1185635141 +169695,8666,DC Comics,1185635095 +169695,72720,poignant,1299281741 +169695,72720,reflective,1299281695 +169713,32,brad pitt,1419280773 +169713,32,bruce willis,1419280771 +169713,32,complicated,1419280783 +169713,32,great ending,1419280781 +169713,32,Post apocalyptic,1419280786 +169713,32,post-apocalyptic,1419280778 +169713,32,Terry Gilliam,1419280789 +169713,32,time travel,1419280768 +169713,32,twist ending,1419280775 +169713,589,Arnold Schwarzenegger,1419277007 +169713,589,James Cameron,1419277018 +169713,589,time travel,1419277002 +169713,1199,black comedy,1419280851 +169713,1199,bureaucracy,1419280872 +169713,1199,dark comedy,1419280854 +169713,1199,dystopia,1419280847 +169713,1199,satire,1419280862 +169713,1199,stylized,1419280867 +169713,1199,surreal,1419280849 +169713,1199,Terry Gilliam,1419280859 +169713,1199,thought-provoking,1419280857 +169713,1199,visually appealing,1419280864 +169713,1234,caper,1429924624 +169713,1234,classic,1429924608 +169713,1234,con artists,1429924609 +169713,1234,con men,1429924622 +169713,1234,great acting,1429924616 +169713,1234,great soundtrack,1429924613 +169713,1234,heist,1429924626 +169713,1234,Paul Newman,1429924619 +169713,1234,Robert Redford,1429924605 +169713,1234,surprise ending,1429924611 +169713,1234,twist ending,1429924621 +169713,1614,homosexuality,1427270599 +169713,2985,dystopia,1419276965 +169713,2985,Paul Verhoeven,1419276971 +169713,3300,anti-hero,1419281554 +169713,3300,futuristic,1419281563 +169713,3300,good concept,1419281569 +169713,3300,Riddick,1419281567 +169713,3300,sci-fi,1419281556 +169713,3300,stranded,1419281559 +169713,3300,suspense,1419281565 +169713,3300,villain as hero,1419281571 +169713,3300,Vin Diesel,1419281561 +169713,3852,off-beat comedy,1427445926 +169713,3852,Romance,1427445943 +169713,7069,playwright:Shakespeare,1425537474 +169713,7069,Shakespeare,1425537472 +169713,7361,complicated,1419461153 +169713,7361,short-term memory loss,1419461150 +169713,7361,thought-provoking,1419461160 +169713,8874,black comedy,1419278321 +169713,8874,british comedy,1419278319 +169713,8874,dark humor,1419278316 +169713,8874,Edgar Wright,1419278308 +169713,52328,Cillian Murphy,1419281611 +169713,52328,cinematography,1419281599 +169713,52328,Danny Boyle,1419281606 +169713,52328,ending twist,1419281608 +169713,52328,isolation,1419281603 +169713,52328,psychology,1419281601 +169713,96610,Bruce Willis,1419280735 +169713,96610,dystopia,1419280733 +169713,96610,Joseph Gordon-Levitt,1419280738 +169713,96610,sci-fi,1419280729 +169713,96610,time travel,1419280727 +169713,103341,cornetto trilogy,1419278273 +169713,103341,Edgar Wright,1419278268 +169713,103341,Simon Pegg,1419278271 +169713,113843,advertising,1421967423 +169713,113843,bechdel test:pass,1421967423 +169713,113843,feminism,1421967423 +169713,118082,black comedy,1424419619 +169713,118082,mental illness,1424419615 +169713,118880,Ana Lily Amirpour,1425362650 +169713,118880,black and white,1425362654 +169713,118880,Iran,1425362658 +169713,118880,Middle East,1425362656 +169713,118880,pulp,1425362699 +169713,118880,spaghetti western,1425362698 +169713,118880,vampires,1425362660 +169713,119214,hyperbole,1419460657 +169713,119214,liberal,1419460670 +169713,119214,misguided,1419460659 +169713,119214,poorly executed,1425362768 +169713,119214,poverty,1420747192 +169713,119214,social commentary,1425362778 +169713,119214,vanity project,1419460685 +169713,129358,ad&d,1425082600 +169713,129358,d&d,1425082602 +169713,129358,dungeons and dragons,1425082606 +169713,129358,low budget,1425082618 +169713,129358,roleplaying,1425082608 +169713,133199,Prostitution,1430710198 +169713,133199,Woman director,1430710207 +169763,48711,CHRISTIAN,1215923364 +169778,4993,beautifully filmed,1299343263 +169778,4993,long,1299343320 +169778,4993,scenic,1299343279 +169778,4993,stylized,1299343282 +169778,4993,trilogy,1299343298 +169778,8622,conspiracy,1299345027 +169778,8622,corruption,1299345030 +169778,8622,Michael Moore,1299345033 +169778,56286,Cate Blanchett,1299343108 +169778,56286,Mindfuck,1299343129 +169778,56286,surreal,1299343119 +169797,260,must see,1439568482 +169797,260,sci fi,1439568470 +169808,116897,dark comedy,1429610748 +169808,116897,ironic,1429610748 +169808,116897,sarcasm,1429610748 +169810,96079,action,1441067678 +169810,119145,historical,1441067662 +169826,260,exciting,1441644944 +169826,260,special effects,1441644947 +169883,104457,slasher,1451878187 +169883,104457,violent,1451878192 +169892,260,action,1180825576 +169892,260,adventure,1180825626 +169892,260,classic,1180825590 +169892,260,fantasy,1180825573 +169892,260,franchise,1180825601 +169892,260,great soundtrack,1180825644 +169892,260,Oscar (Best Editing),1180825566 +169892,260,sci-fi,1180825617 +169892,260,seen more than once,1180825628 +169892,260,space combat,1180825552 +169892,260,stylized,1180825621 +169892,520,comedy,1180828914 +169892,520,funny,1180828916 +169892,589,better than original,1181961109 +169892,592,action,1180629780 +169892,592,comic book,1180629772 +169892,592,superhero,1180629785 +169892,743,parody,1181961332 +169892,743,slapstick humor,1181961332 +169892,743,spoof,1181961332 +169892,743,spy,1181961332 +169892,1196,action,1180822176 +169892,1196,better than original,1180822176 +169892,1196,fantasy,1180824626 +169892,1196,George Lucas,1180822176 +169892,1196,sci fi,1180824636 +169892,1200,action,1180833628 +169892,1200,classic,1180833642 +169892,1200,Frightening,1180833620 +169892,1200,sci-fi,1180833640 +169892,1200,sequel better than original,1180833633 +169892,1200,space horror,1180833614 +169892,1258,bad acting,1181706786 +169892,1258,bad editing,1181706786 +169892,1258,bad music,1181706852 +169892,1258,based on book,1181706803 +169892,1258,cabin fever,1181706786 +169892,1258,doesn't make sense,1181706786 +169892,1258,ghosts,1181706863 +169892,1258,haunted house,1181706833 +169892,1258,Horror,1181706822 +169892,1258,insane,1181706875 +169892,1258,paranormal,1181706796 +169892,1258,Stanley Kubrick,1181706812 +169892,1258,stephen king,1181706801 +169892,1258,too long,1181706786 +169892,1265,romantic,1180826132 +169892,1265,time loop,1180826137 +169892,1302,Baseball,1180826004 +169892,1302,classic,1180825993 +169892,1302,fantasy,1180825983 +169892,1302,seen more than once,1180826011 +169892,1302,sports,1180826002 +169892,1580,adventure,1180630647 +169892,1680,alternate universe,1181968309 +169892,1680,British,1181968316 +169892,1680,great concept,1181968318 +169892,1748,aliens,1180825725 +169892,1748,amnesia,1180825668 +169892,1748,eerie,1180825737 +169892,1748,fantasy,1180825659 +169892,1748,innovative,1180825723 +169892,1748,Kiefer Sutherland,1180825679 +169892,1748,sci-fi,1180825676 +169892,1748,stylized,1180825674 +169892,1748,surreal,1180825739 +169892,2297,good cinematography,1181961415 +169892,2297,good story,1181961415 +169892,2297,surreal,1181961363 +169892,2571,computers,1180824816 +169892,2571,Favorites,1180630649 +169892,2571,martial arts,1180824810 +169892,2571,Oscar (Best Editing),1180824822 +169892,2571,philosophical,1180824827 +169892,2571,sci fi,1180824820 +169892,2640,comic books,1180629922 +169892,2640,superheros,1180629922 +169892,2641,superhero,1180629929 +169892,2716,action,1180826035 +169892,2716,Comedy,1180826074 +169892,2716,Fantasy,1180826093 +169892,2716,ghosts,1180826086 +169892,2716,monsters,1180826053 +169892,2716,paranormal,1180826046 +169892,2959,based on book,1180822207 +169892,2959,Oscar Nominee,1180822210 +169892,2959,super interesting,1180822214 +169892,3510,seen more than once,1180834320 +169892,3510,Underrated,1180834317 +169892,3734,bad story,1181955695 +169892,3734,boring,1181955695 +169892,3734,long,1181955695 +169892,3734,stationary camera,1181955695 +169892,3734,Treat Williams,1181955695 +169892,3793,action,1180630153 +169892,3793,comic book,1180630169 +169892,3793,super-hero,1180630169 +169892,4226,accident,1181960857 +169892,4226,black and white and color,1181960843 +169892,4226,brilliant in concept & execution,1180629620 +169892,4226,cerebral,1181960858 +169892,4226,death,1181960920 +169892,4226,homocide,1181960917 +169892,4226,interesting,1181960906 +169892,4226,memory,1181960863 +169892,4226,mystery,1181960850 +169892,4226,nonlinear,1181960865 +169892,4226,paranoia,1181960958 +169892,4226,short-term memory loss,1181960843 +169892,4720,atmospheric,1180834514 +169892,4720,eerie,1180834536 +169892,4720,ghosts,1180834519 +169892,4720,Nicole Kidman,1180834541 +169892,4720,scary,1180834511 +169892,4720,twist ending,1180834504 +169892,4848,doesn't make sense,1180828367 +169892,4848,Los Angeles,1180828374 +169892,4848,mystery,1180828378 +169892,4848,nonlinear,1180828417 +169892,4848,overrated,1180828347 +169892,4874,alien,1180824643 +169892,4874,psychiatrist,1180824649 +169892,4874,sci-fi,1180824654 +169892,4993,based on book,1180822224 +169892,4993,overrated,1180822234 +169892,4993,way too long,1180822235 +169892,5064,fantasy,1180825753 +169892,5064,historical,1180825749 +169892,5064,movie to see,1180825757 +169892,5064,revenge,1180825772 +169892,5349,comic book,1180630135 +169892,5349,tobey maguire,1180630133 +169892,5952,action,1180822249 +169892,5952,fantasy,1180822274 +169892,5952,overrated,1180822259 +169892,5952,way too long,1180822683 +169892,6377,not as good as Shrek,1181960756 +169892,6377,overrated,1181960756 +169892,6502,stylized,1181956152 +169892,6502,zombies,1181956152 +169892,6539,action,1180824595 +169892,6539,pirate,1180824576 +169892,6539,WAY too long,1180824579 +169892,8360,computer animation,1180833899 +169892,8360,fairy tale,1180833895 +169892,8360,sequel better than original,1180833890 +169892,8360,the best animation movie,1180833919 +169892,8917,puppetry,1180828429 +169892,8950,twist ending,1180629998 +169892,8984,confusing,1181961013 +169892,8984,heist,1181961013 +169892,8984,large cast,1181961013 +169892,8984,not as good as the first,1181961013 +169892,27660,animation,1181960662 +169892,27660,good concept,1181960711 +169892,27660,stylized,1181960710 +169892,27904,animated,1181955562 +169892,27904,bad story,1181955562 +169892,27904,confusing when not necessary,1181955562 +169892,27904,good animation,1181955562 +169892,27904,interesting concept - bad execution,1181955562 +169892,30793,adaptation,1180825872 +169892,30793,based on book,1180825876 +169892,30793,children,1180825940 +169892,30793,chocolate,1180825966 +169892,30793,fantasy,1180825859 +169892,30793,original is better..,1180825889 +169892,30793,remake,1180825980 +169892,30793,Tim Burton,1180825946 +169892,33493,action,1180630142 +169892,33493,Ewan McGregor,1180630147 +169892,33493,George Lucas,1180630143 +169892,33794,action,1180630291 +169892,33794,bruce wayne,1180629688 +169892,33794,Christian Bale,1180629696 +169892,33794,good acting,1180630291 +169892,33794,superheros,1180629708 +169892,34162,Bit overrated,1180823860 +169892,34162,Owen Wilson,1180823888 +169892,34162,way too long,1180823858 +169892,34162,wedding,1180823916 +169892,37720,better than expected,1181960495 +169892,38798,better than expected,1181960566 +169892,38798,family bonds,1181960566 +169892,38798,romantic,1181960530 +169892,40278,Gulf War,1180829038 +169892,40278,no real rap up at the end,1180829034 +169892,40614,adultery,1184891179 +169892,40614,infidelity,1184891186 +169892,40614,predictable,1184891169 +169892,40614,too predictable,1184891196 +169892,40614,weak ending,1184891169 +169892,41569,overrated,1180981613 +169892,44191,action,1180630268 +169892,44191,good acting,1180630268 +169892,44191,super-hero,1180630268 +169892,44191,Wachowski Brothers,1180630268 +169892,45062,conspiracy,1186008280 +169892,45062,secret service,1186008285 +169892,45186,better than expected,1181960487 +169892,47629,based on a true story,1181666639 +169892,47629,biography,1181666587 +169892,47629,England,1181666639 +169892,47629,good acting,1181666639 +169892,47629,government,1181666639 +169892,47629,poignant,1181666656 +169892,47629,Princess Diana,1181666639 +169892,47629,Queen Elizabeth,1181666639 +169892,48082,artsy,1180834440 +169892,48394,fantasy,1180824705 +169892,48394,foreign,1180824767 +169892,48394,somewhat overrated,1180825509 +169892,48394,Spain,1180824791 +169892,48394,Spanish,1180824781 +169892,48394,spanish civil war,1180824738 +169892,48394,violence,1180825488 +169892,48394,world war II,1180824774 +169892,48516,gritty,1180823946 +169892,48516,murder,1180823944 +169892,48516,way too long,1180823941 +169892,49130,bad direction,1185409031 +169892,49130,disappointing,1185409031 +169892,49130,inappropriate music,1185409032 +169892,49130,wine and romance,1185409040 +169892,49130,worse than expected,1185409031 +169892,49276,strong beginning,1184891049 +169892,49276,weak ending,1184891049 +169892,49286,better than expected,1183759875 +169892,49286,England,1183759852 +169892,49286,trading places,1183759880 +169892,49647,based on book,1180630438 +169892,49961,adultry,1181603341 +169892,49961,affair,1181603341 +169892,49961,England,1181603254 +169892,49961,good acting,1181603341 +169892,49961,good story,1181603341 +169892,49961,journal writing,1181603341 +169892,49961,scandal,1181603341 +169892,51080,conspiracy,1181693803 +169892,51080,government,1181693797 +169892,51080,slow,1181693823 +169892,56757,below expectations,1198959603 +169892,56757,disappointing,1198959603 +169899,58559,Christopher Nolan,1266502712 +169899,58559,dark,1266502712 +169899,58559,Heath Ledger,1266502712 +169899,58559,iconic,1266502712 +169899,58559,joker,1266502712 +169899,58559,realistic,1266502712 +169931,30707,boxing,1431314947 +169931,30707,emotional,1431314974 +169931,30707,sports,1431314949 +169931,49530,Leonardo DiCaprio,1431315045 +169931,49530,slavery,1431315060 +169939,296,crime,1142513340 +169939,296,hit men,1142513344 +169939,296,Quentin Tarantino,1142513334 +169969,6,adultery,1427028798 +169969,6,Al Pacino,1427028494 +169969,6,atmospheric,1427028847 +169969,6,bank robbery,1427028589 +169969,6,career criminal,1427028907 +169969,6,crime,1427028503 +169969,6,great acting,1427028710 +169969,6,gunfight,1427028685 +169969,6,guns,1427028650 +169969,6,Los Angeles,1427028601 +169969,6,Michael Mann,1427028502 +169969,6,Natalie Portman,1427028777 +169969,6,police,1427028851 +169969,6,professionals,1427028923 +169969,6,real life,1427028805 +169969,6,realistic,1427028862 +169969,6,realistic action,1427028506 +169969,6,relationships,1427028763 +169969,6,Robert De Niro,1427028496 +169969,6,suicide,1427028782 +169969,6,suspense,1427028821 +169969,6,Val Kilmer,1427028592 +169969,6,violent,1427028747 +169969,6,visceral,1427028897 +169969,105,affair,1427030485 +169969,105,bittersweet,1427030526 +169969,105,Clint Eastwood,1427030457 +169969,105,Meryl Streep,1427030454 +169969,105,real life,1427030496 +169969,105,romance,1427030555 +169969,293,Action,1427030625 +169969,293,assassin,1427030640 +169969,293,beautiful,1427030678 +169969,293,friendship,1427030707 +169969,293,Gary Oldman,1427030622 +169969,293,guns,1427030939 +169969,293,Luc Besson,1427030629 +169969,293,Natalie Portman,1427030617 +169969,293,police corruption,1427030653 +169969,293,quirky,1427030711 +169969,344,comedy,1427029009 +169969,344,Courteney Cox,1427029035 +169969,344,goofy,1427029053 +169969,344,hilarious,1427029028 +169969,344,Jim Carrey,1427029005 +169969,344,Sean Young,1427029292 +169969,344,silly fun,1427029056 +169969,344,Tone Loc,1427029300 +169969,1073,candy,1427117761 +169969,1073,children,1427117801 +169969,1073,chocolate,1427117817 +169969,1073,classic,1427117771 +169969,1073,England,1427117840 +169969,1073,Gene Wilder,1427117678 +169969,1073,Heartwarming,1427117843 +169969,1073,imagination,1427117836 +169969,1073,musical,1427117857 +169969,1073,Oompa Loompas,1427117694 +169969,1073,quirky,1427117907 +169969,1073,surreal,1427117768 +169969,1275,decapitation,1427029513 +169969,1275,history,1427029561 +169969,1275,immortality,1427029427 +169969,1275,mentor,1427029541 +169969,1275,modern fantasy,1427029532 +169969,1275,original plot,1427029432 +169969,1275,Queen,1427029439 +169969,1275,Sean Connery,1427029435 +169969,1275,showdown,1427029485 +169969,1275,sword fight,1427029429 +169969,1275,swords,1427029460 +169969,1287,chariot race,1427457345 +169969,1287,Charlton Heston,1427457484 +169969,1287,christianity,1427457330 +169969,1287,historical drama,1427457427 +169969,1287,historical epic,1427457434 +169969,1287,jesus,1427457326 +169969,1287,Roman empire,1427457336 +169969,2502,Bill Lumberg,1427027551 +169969,2502,comedy,1427027614 +169969,2502,corporate America,1427027620 +169969,2502,cult film,1427027482 +169969,2502,hilarious,1427027603 +169969,2502,Horrible boss,1427027702 +169969,2502,hypnosis,1427027519 +169969,2502,Jennifer Aniston,1427027488 +169969,2502,mike judge,1427027504 +169969,2502,office,1427027495 +169969,2502,quirky,1427118405 +169969,2502,satire,1427027484 +169969,2502,stapler,1427027468 +169969,2502,That's my stapler,1427027566 +169969,2502,workplace,1427027486 +169969,2571,action,1427033251 +169969,2571,alternate reality,1427033432 +169969,2571,artificial intelligence,1427033174 +169969,2571,computers,1427033150 +169969,2571,dystopia,1427033423 +169969,2571,Guns,1427033331 +169969,2571,hackers,1427033129 +169969,2571,Hugo Weaving,1427033188 +169969,2571,Keanu Reeves,1427033142 +169969,2571,martial arts,1427033100 +169969,2571,philosophical,1427033119 +169969,2571,philosophy,1427033428 +169969,2571,post-apocalyptic,1427033114 +169969,2571,sci-fi,1427033091 +169969,2571,slow motion,1427033326 +169969,2571,thought-provoking,1427033435 +169969,2571,virtual reality,1427033094 +169969,2571,Wachowski Brothers,1427033133 +169969,2641,Action,1427025631 +169969,2641,alter ego,1427025818 +169969,2641,Christopher Reeve,1427025650 +169969,2641,comic book,1427025690 +169969,2641,double life,1427025823 +169969,2641,Gene Hackman,1427025659 +169969,2641,Resurrection,1427025613 +169969,2641,Sacrifice,1427025555 +169969,2641,sci-fi,1427025740 +169969,2641,Showdown,1427025384 +169969,2641,superhero,1427025671 +169969,3168,Dennis Hopper,1427457883 +169969,3168,freedom,1427457860 +169969,3168,Jack Nicholson,1427457869 +169969,5418,action,1427025983 +169969,5418,amnesia,1427025997 +169969,5418,assassin,1427026013 +169969,5418,car chase,1427025999 +169969,5418,espionage,1427025990 +169969,5418,Matt Damon,1427025987 +169969,5418,Memory loss,1427026114 +169969,5418,realistic action,1427026027 +169969,5971,children,1427026437 +169969,5971,Cute,1427026246 +169969,5971,Hayao Miyazaki,1427026244 +169969,5971,Japan,1427026305 +169969,5971,nature,1427026409 +169969,5971,Sisters,1427026448 +169969,5971,Studio Ghibli,1427026238 +169969,6032,adventure,1426326282 +169969,6032,Bridge of Sighs,1427030215 +169969,6032,charming film,1427030174 +169969,6032,Diane Lane,1427030085 +169969,6032,gentleman thief,1427030340 +169969,6032,Laurence Olivier,1427030101 +169969,6032,Paris,1427030008 +169969,6032,road trip,1427030003 +169969,6032,romance,1426326282 +169969,6032,teenage girl,1426326282 +169969,6032,Venice,1427030260 +169969,6032,Young love,1426373146 +169969,7034,adolescence,1427029705 +169969,7034,chocolate milk,1427029902 +169969,7034,coming of age,1427029632 +169969,7034,first kiss,1427029861 +169969,7034,lesbian,1427029626 +169969,7034,Lukas Moodysson,1427029756 +169969,7034,prejudice,1427029650 +169969,7034,realistic,1427029674 +169969,7034,romance,1427029767 +169969,7034,sexuality,1427029640 +169969,7034,small town,1427029634 +169969,8798,action,1427027873 +169969,8798,assassin,1427027817 +169969,8798,atmospheric,1427028084 +169969,8798,dark,1427028222 +169969,8798,great performances,1427028224 +169969,8798,guns,1427028255 +169969,8798,Jamie Foxx,1427027904 +169969,8798,los angeles,1427028181 +169969,8798,michael mann,1427027866 +169969,8798,nightclub,1427028227 +169969,8798,one night,1427028208 +169969,8798,realistic action,1427028554 +169969,8798,Taxi hijacked,1427028059 +169969,8798,thriller,1427028296 +169969,8798,tom cruise,1427027814 +169969,8798,violent,1427027834 +169969,55820,Assassin,1427026756 +169969,55820,brutal,1427026750 +169969,55820,Coen Brothers,1427026576 +169969,55820,great acting,1427026859 +169969,55820,Hunted,1427026817 +169969,55820,Javier Bardem,1427026658 +169969,55820,realistic,1427026740 +169969,55820,sheriff,1427026846 +169969,55820,suspense,1427026863 +169969,55820,thriller,1427026590 +169969,55820,Tommy Lee Jones,1427026588 +169969,55820,violent,1427026594 +169969,55820,Woody Harrelson,1427026678 +169969,60684,plot sucks,1427025161 +169969,60684,simplistic,1427024989 +169969,115149,Alfie Allen,1427033917 +169969,115149,crime fantasy,1427034063 +169969,115149,Ford Mustang Mach 1,1427034457 +169969,115149,gun-fu,1427033943 +169969,115149,guns,1427034627 +169969,115149,head-shot,1427034173 +169969,115149,Hitman,1427033926 +169969,115149,Keanu Reeves,1427033873 +169969,115149,killing spree,1427034235 +169969,115149,Michael Nyqvist,1427034028 +169969,115149,nightclub,1427034097 +169969,115149,puppy,1427034262 +169969,115149,Revenge,1427033871 +169969,115149,russian mafia,1427034135 +169969,115149,sniper,1427034616 +169969,115149,stylish,1427033972 +169969,115149,violent,1427033963 +169969,115149,Willem Dafoe,1427033876 +169969,122886,J.J. Abrams,1451130923 +169969,122886,Plot Recycling,1451130910 +169969,129947,adventure,1426948816 +169969,129947,puppy love,1426948816 +169969,129947,Romance,1426340540 +169969,129947,Young love,1426373168 +169969,139644,brutal,1453975051 +169969,139644,realistic,1453974926 +169969,139644,violent,1453974962 +169971,260,big buget,1444157009 +169971,260,death star,1444156999 +169971,260,EPIC,1444157023 +169971,260,scifi cult,1444157003 +169971,260,space adventure,1444156962 +169971,260,the force,1444156992 +169981,4011,best intelligent comedy ever,1152575170 +170011,1188,hee,1188295803 +170011,1267,crazy,1188295775 +170011,1343,blah,1188295755 +170011,2005,blah,1188295762 +170011,2105,sci-fi,1188295785 +170012,92309,ghosts,1341979013 +170012,92309,horror,1341979013 +170012,92309,paranormal,1341979013 +170012,92309,suspense,1341979013 +170021,1,children,1290750154 +170021,1,family,1290750155 +170021,1,Pixar,1290750159 +170021,1,Tom Hanks,1290750161 +170021,1,toys,1290750166 +170021,1,witty,1290750164 +170021,39,chick flick,1362884991 +170021,147,addiction,1298770219 +170021,147,based on a book,1298770221 +170021,147,based on a true story,1298770225 +170021,147,drugs,1298770227 +170021,147,escape,1298770228 +170021,147,heroin,1298770230 +170021,147,Leonardo DiCaprio,1298770232 +170021,147,PROSTITUTES,1298770236 +170021,147,prostitution,1298770235 +170021,147,teacher student relationship,1298770238 +170021,185,hackers,1272030357 +170021,185,hacking,1272030356 +170021,296,assassin,1298770933 +170021,296,Black comedy,1298770913 +170021,296,cult film,1298770936 +170021,296,drugs,1298770926 +170021,296,multiple storylines,1298770940 +170021,296,nonlinear,1298770928 +170021,296,organized crime,1298770929 +170021,296,Quentin Tarantino,1298770938 +170021,296,Samuel L. Jackson,1298770915 +170021,296,stylized,1298770917 +170021,551,gothic,1358965308 +170021,551,musical,1358965310 +170021,733,Alcatraz,1298783754 +170021,733,prison,1298783758 +170021,1032,dreamlike,1269027838 +170021,1032,Parallel universe,1269027831 +170021,1032,Stoner Movie,1269027840 +170021,1032,surreal,1269027827 +170021,1032,surrealism,1269027829 +170021,1032,whimsical,1269027834 +170021,1036,based on a book,1259175675 +170021,1036,Bruce Willis,1259175678 +170021,1073,Fantasy,1269791213 +170021,1073,surreal,1269791208 +170021,1073,whimsical,1269791211 +170021,1089,heist,1290750393 +170021,1089,low budget,1290750391 +170021,1089,organized crime,1290750397 +170021,1089,Quentin Tarantino,1290750388 +170021,1089,religion,1290750401 +170021,1089,stylized,1290750400 +170021,1089,violence,1290750389 +170021,1193,mental illness,1342128259 +170021,1193,psychological,1342128263 +170021,1193,psychology,1342128261 +170021,1200,aliens,1290750339 +170021,1200,military,1290750334 +170021,1206,dystopia,1288313816 +170021,1206,psychology,1288313809 +170021,1206,quirky,1288313811 +170021,1485,comedy,1290750450 +170021,1485,jim carrey,1290750452 +170021,1485,lawyer,1290750454 +170021,1485,over the top,1290750455 +170021,1529,aliens,1269805917 +170021,1592,basketball,1272030402 +170021,1592,cheesy,1272030408 +170021,1592,talking animals,1272030389 +170021,2657,adapted from:play,1288313666 +170021,2657,awesome soundtrack,1288313729 +170021,2657,bisexual,1288313731 +170021,2657,cross dressing,1288313723 +170021,2657,great soundtrack,1288313670 +170021,2657,homosexuality,1288313676 +170021,2657,insanity,1288313680 +170021,2657,music,1288313682 +170021,2657,musical,1288313708 +170021,2657,sexuality,1288313685 +170021,2657,transgender,1288313715 +170021,2762,mindfuck,1319505014 +170021,2908,brutal,1259175922 +170021,2908,cross dressing,1259175919 +170021,2908,disturbing,1259175910 +170021,2908,gay,1259175907 +170021,2908,homophobia,1259175897 +170021,2908,queer,1342128356 +170021,2908,rape,1259175899 +170021,2908,sad,1259175901 +170021,2908,transgender,1259175904 +170021,2959,based on a book,1259175689 +170021,2959,crime,1259175388 +170021,2959,dark comedy,1259175386 +170021,2959,disturbing,1259175391 +170021,2959,mental illness,1259175393 +170021,2959,psychology,1259175377 +170021,2959,quirky,1259175402 +170021,2959,satirical,1259175395 +170021,2959,surreal,1259175380 +170021,2959,twist ending,1259175693 +170021,2959,violence,1259175383 +170021,3000,Studio Ghibli,1259175730 +170021,3275,dark humor,1269789963 +170021,3275,gay,1269789972 +170021,3275,insanity,1269789977 +170021,3275,twins,1269789985 +170021,3275,vigilante,1269789953 +170021,3275,vigilantism,1269789955 +170021,3786,Clea DuVall,1356486978 +170021,3786,good soundtrack,1356486977 +170021,3786,queer,1356486974 +170021,3786,satire,1356486975 +170021,3786,sexuality,1356486968 +170021,3949,addiction,1271972123 +170021,3949,atmospheric,1271973782 +170021,3949,dark,1271972140 +170021,3949,depressing,1271972142 +170021,3949,disturbing,1271972144 +170021,3949,drugs,1271972146 +170021,3949,jared leto,1291052908 +170021,3949,loneliness,1271972147 +170021,3949,psychology,1271972149 +170021,3949,social commentary,1271972151 +170021,3967,boxing,1293207464 +170021,3967,british,1293207431 +170021,3967,dance,1293207459 +170021,3967,england,1293207432 +170021,3967,funny,1293207444 +170021,3967,independent film,1293207446 +170021,3967,inspirational,1293207456 +170021,3967,musical,1293207451 +170021,3967,working class,1293207449 +170021,4015,comedy,1269790415 +170021,4015,Stoner,1269790401 +170021,4015,Stoner Movie,1269790407 +170021,4015,Teen,1269790405 +170021,4015,Teen movie,1269790403 +170021,4022,stranded,1290750290 +170021,4022,SURVIVAL,1290750289 +170021,4022,Tom Hanks,1290750292 +170021,4725,mental hospital,1272030912 +170021,4725,psychology,1272030916 +170021,4725,suspense,1272030914 +170021,5785,crazy,1319505658 +170021,5785,Funny,1319505650 +170021,5785,johnny knoxville,1319505652 +170021,6281,crime,1303308763 +170021,6281,interesting,1303308765 +170021,6281,original,1303308775 +170021,6281,thrilling,1303308767 +170021,6281,vigilante,1303308769 +170021,6711,tokyo,1269791097 +170021,7022,based on a book,1259175665 +170021,7022,controversial,1259175802 +170021,7022,Japan,1259175667 +170021,7022,punishment,1259175811 +170021,7022,satire,1259175671 +170021,7022,survival,1259175804 +170021,7254,mathematics,1259175655 +170021,7254,psychology,1259175661 +170021,7254,sci-fi,1259175658 +170021,7285,disturbing,1286200317 +170021,7285,drugs,1286200336 +170021,7285,piercings,1286200342 +170021,7285,teen,1286200338 +170021,7976,disturbing,1269790962 +170021,7976,edgy,1269790964 +170021,7976,Nudity (Full Frontal),1272030692 +170021,7976,unsimulated sex scenes,1272030690 +170021,7976,White Trash,1269790972 +170021,8128,cameraderie,1288313565 +170021,8528,hilarious,1319505563 +170021,8784,Zach Braff,1271981543 +170021,8938,homosexuality,1281657166 +170021,8938,insanity,1281657175 +170021,8938,mental illness,1281657171 +170021,8938,psychology,1281657173 +170021,8961,animation,1290750182 +170021,8961,comedy,1290750179 +170021,8961,family,1290750187 +170021,9010,France,1272030031 +170021,9010,Nudity (Topless - Notable),1272030036 +170021,33004,absurd,1345142864 +170021,33004,comedy,1345142881 +170021,33004,england,1345142861 +170021,33004,sci-fi,1345142853 +170021,33004,whimsical,1345142855 +170021,33004,witty,1345142883 +170021,33171,child abuse,1271981445 +170021,33171,disturbing,1271981447 +170021,33171,gay,1286200408 +170021,33171,homosexuality,1271981449 +170021,33171,queer,1271981440 +170021,33826,dreams,1301011013 +170021,33826,marathons,1301011012 +170021,33826,running,1301011015 +170021,36529,dark comedy,1273281813 +170021,36529,drugs,1273281815 +170021,36529,jared leto,1273281821 +170021,36529,smuggling,1273281830 +170021,36630,david tennant,1334885187 +170021,37720,child abuse,1271973844 +170021,37720,courtroom,1271973842 +170021,37720,courtroom drama,1271973840 +170021,37741,gay,1269791072 +170021,37741,History,1269791074 +170021,37741,homosexuality,1269791071 +170021,38538,Kristen Stewart,1269790434 +170021,38538,teenage angst,1269790437 +170021,40826,broadway,1286051523 +170021,40826,colourful,1286051527 +170021,40826,drugs,1286051521 +170021,40826,musical,1286051529 +170021,40826,rock and roll,1286051532 +170021,40870,ECCENTRIC FAMILIES,1286200482 +170021,40870,gay,1286200491 +170021,40870,humorous,1286200492 +170021,40870,MISFITS AND OUTSIDERS,1286200496 +170021,40870,queer,1286200503 +170021,40870,questioning sexuality,1286200501 +170021,44191,dystopia,1269791485 +170021,44191,England,1269791490 +170021,44191,inspirational,1269791494 +170021,44191,justice,1269791496 +170021,44191,prison,1269791493 +170021,44191,thought-provoking,1269791486 +170021,44193,impostor,1289179145 +170021,44974,controversial,1271972261 +170021,44974,Ellen Page,1271972268 +170021,44974,internet,1271972263 +170021,46578,dark comedy,1356841378 +170021,46578,quirky,1356841376 +170021,49278,Denzel Washington,1356841163 +170021,49278,time travel,1356841166 +170021,50858,Jared Leto,1273281862 +170021,52319,Some funny parts,1260576094 +170021,53827,mental illness,1281657011 +170021,55067,Exorcism,1271972771 +170021,55247,Alaska,1269634057 +170021,55247,based on a true story,1269634045 +170021,55247,psychology,1269634053 +170021,55247,road trip,1269634049 +170021,55247,self discovery,1269634051 +170021,55247,travel,1269634065 +170021,55732,adoption,1271972381 +170021,56095,queer,1269790955 +170021,56095,teenagers,1269790953 +170021,56367,high school,1269791447 +170021,56367,quotable,1269791453 +170021,56367,witty,1269791452 +170021,59037,CGI,1281656930 +170021,59037,Emile Hirsch,1281656936 +170021,59258,Tina Fey,1271972405 +170021,60609,Japan,1259175663 +170021,65601,classic horror,1345143161 +170021,65601,Jensen Ackles,1345143152 +170021,68073,British,1288398110 +170021,68073,funny,1288398113 +170021,68073,Music,1288398117 +170021,68073,pirate radio,1288398119 +170021,68073,rock and roll,1288398123 +170021,68157,Brad Pitt,1290750235 +170021,68157,great soundtrack,1290750228 +170021,68157,Quentin Tarantino,1290750222 +170021,68157,satire,1290750223 +170021,68157,tense,1290750226 +170021,68157,visually appealing,1290750225 +170021,68237,dystopia,1342126964 +170021,68237,psychological,1342126970 +170021,68237,psychology,1342126966 +170021,68237,twist ending,1342126968 +170021,69122,comedy,1272030513 +170021,69122,Drinking,1272030519 +170021,69122,drugs,1272030515 +170021,69122,Nudity (Topless),1272030516 +170021,69122,police,1272030522 +170021,69844,big budget,1322421773 +170021,69844,fantasy,1322421769 +170021,69844,teenagers,1322421767 +170021,71379,atmospheric,1320603143 +170021,71379,psychological,1320603150 +170021,71379,psychological thriller,1320603146 +170021,71838,graphic,1259176012 +170021,71838,revenge,1259176018 +170021,71838,violent,1259176020 +170021,72167,Norman Reedus,1356642776 +170021,72167,vigilante,1356642778 +170021,72998,3d,1267141820 +170021,74789,alternate reality,1269027792 +170021,76251,action,1271940353 +170021,76251,funny,1271940341 +170021,76251,humorous,1271940343 +170021,76251,pop culture references,1271940346 +170021,76251,weapons,1271940349 +170021,76763,music business,1286195051 +170021,76763,musicians,1286195047 +170021,76763,rock and roll,1286195054 +170021,76763,true story,1286195055 +170021,79132,alternate reality,1319504983 +170021,79132,heist,1319504986 +170021,79132,thought-provoking,1319504989 +170021,79357,Beauty,1291052872 +170021,79357,chaos,1291052874 +170021,79357,cinematography,1291052870 +170021,79357,Jared Leto,1291052861 +170021,79357,nonlinear,1291052862 +170021,79357,sci-fi,1291052864 +170021,79357,surreal,1291052868 +170021,80549,lies,1287353166 +170021,80549,scheme,1287353166 +170021,80693,based on a book,1298770402 +170021,80693,mental illness,1298770457 +170021,81229,CIA comedy,1288312100 +170021,81229,hunted,1288312110 +170021,81229,retired spy being hunted,1288312103 +170021,81782,courage,1290389844 +170021,81782,suspense,1290389841 +170021,81782,trains,1290389834 +170021,81834,based on a book,1322421736 +170021,81834,British,1322421737 +170021,81834,dark,1322421739 +170021,81834,England,1322421740 +170021,82459,dark,1294877055 +170021,85414,intelligent,1319504898 +170021,85414,interesting,1319504908 +170021,85414,mindfuck,1319504900 +170021,85414,parallel universe,1319504902 +170021,85414,time travel,1319504904 +170021,85513,bad dialogue,1345143121 +170021,85513,horror,1345143117 +170021,85513,jensen ackles,1345143098 +170021,86293,russel brand,1305424094 +170021,87192,aliens,1345348016 +170021,87192,British,1345348002 +170021,87192,drugs,1345348007 +170021,87192,fun,1345348005 +170021,89745,excellent cinematography,1342127040 +170021,89745,fast paced,1342127042 +170021,89745,humorous,1342127039 +170021,89745,Robert Downey Jr.,1342127032 +170021,89745,visually appealing,1342127035 +170021,89745,visually stunning,1342127037 +170021,90405,crime,1342127981 +170021,90405,dystopia,1342127982 +170021,90405,thought-provoking,1342127985 +170021,91529,great ending,1345142830 +170021,91529,Joseph Gordon-Levitt,1345142832 +170021,91542,Funny,1356841201 +170021,91542,great cinematography,1356841189 +170021,91542,Robert Downey Jr.,1356841197 +170021,91658,rape,1325203328 +170021,92420,clever,1362884470 +170021,92420,strange,1362884927 +170021,92420,teenage angst,1362884476 +170021,93563,One-Liners,1342127022 +170021,93563,prison,1342127020 +170021,94777,crazy,1342126984 +170021,94777,time travel,1342126986 +170021,95510,Andrew Garfield,1342127008 +170021,97304,anti-hero,1362622600 +170021,98809,adventure,1356840743 +170021,98809,big budget,1356840758 +170021,99149,musical,1358965226 +170021,99149,revolution,1358965243 +170032,356,American history,1442548501 +170032,1204,an exciting venture,1442548104 +170032,1721,romantic,1442548041 +170032,1960,based on a true story,1442548204 +170032,1960,China,1442548239 +170032,5618,fantasy world,1442548015 +170032,6350,exciting venture,1442547984 +170032,79132,dreamlike,1442548602 +170032,79132,sci-fi,1442548606 +170032,103980,a women film,1442548326 +170032,103980,Cate Blanchett,1442548369 +170032,103980,Woody Allen,1442548382 +170036,2360,dark comedy,1266600925 +170036,2360,Nudity (Topless),1266600888 +170036,3307,Charlie Chaplin,1266600966 +170036,3307,silent movie,1266600975 +170036,59684,Christianity,1266601084 +170036,59684,politics,1266601093 +170036,68194,soccer,1266601194 +170046,260,love,1433839299 +170046,260,Science Fiction,1433839292 +170046,260,Star Wars,1433839274 +170047,1301,a great science fiction movie,1140592526 +170070,260,action,1443662598 +170070,260,classic sci-fi,1443662610 +170070,260,space adventure,1443662588 +170081,2542,dark comedy,1291654609 +170081,2542,Guy Ritchie,1291654614 +170081,4011,Guy Ritchie,1291654570 +170081,4011,twist ending,1291654577 +170081,77455,art,1299018876 +170081,77455,Banksy,1299018935 +170081,77455,funny,1299018935 +170081,77455,smart,1299018935 +170081,82459,boring,1298831168 +170081,82459,predictable,1298831227 +170083,260,classic sci-fi,1441967622 +170083,260,good vs evil,1441967608 +170110,47,atmospheric,1338750370 +170110,47,Brad Pitt,1338750342 +170110,47,dark,1338750374 +170110,47,imdb top 250,1338750377 +170110,47,Kevin Spacey,1338750344 +170110,47,Morgan Freeman,1338750345 +170110,47,powerful ending,1338750347 +170110,47,psychological,1338750364 +170110,47,psychology,1338750364 +170110,47,serial killer,1338750367 +170110,47,twist ending,1338750355 +170110,266,Amazing Cinematography,1338751667 +170110,266,Anthony Hopkins,1338751663 +170110,266,Brad Pitt,1338751665 +170110,266,Dramatic,1338751670 +170110,266,emotional,1338751671 +170110,266,great acting,1338751673 +170110,266,Great Ensemble Cast,1338751675 +170110,266,long,1338751652 +170110,266,prohibition,1338751657 +170110,266,Romance,1338751659 +170110,266,war,1338751678 +170110,266,World War I,1338751681 +170110,318,atmospheric,1338750658 +170110,318,based on a book,1338750674 +170110,318,drama,1338750669 +170110,318,friendship,1338750661 +170110,318,heartwarming,1338750677 +170110,318,inspirational,1338750659 +170110,318,Morgan Freeman,1338750652 +170110,318,reflective,1338750682 +170110,318,sexuality,1338750687 +170110,318,Stephen King,1338750653 +170110,318,thought-provoking,1338750655 +170110,318,twist ending,1338750657 +170110,508,AIDs,1339198620 +170110,508,Denzel Washington,1339198615 +170110,508,great acting,1339198612 +170110,508,homophobia,1339198623 +170110,508,Oscar (Best Actor),1339198608 +170110,508,Tom Hanks,1339198610 +170110,904,Alfred Hitchcock,1338750504 +170110,904,classic,1338750507 +170110,920,American Civil War,1338751784 +170110,920,based on a book,1338751793 +170110,920,black and white,1338751795 +170110,920,classic,1338751812 +170110,920,epic,1338751787 +170110,920,historical,1338751788 +170110,920,love,1338751816 +170110,920,social commentary,1338751805 +170110,920,War,1338751792 +170110,1193,depressing,1338750737 +170110,1193,drama,1338750740 +170110,1193,emotional,1338750730 +170110,1193,Jack Nicholson,1338750726 +170110,1193,mental illness,1338750734 +170110,1193,Oscar (Best Actor),1338750746 +170110,1193,Oscar (Best Actress),1338750748 +170110,1193,Oscar (Best Directing),1338750751 +170110,1193,Oscar (Best Picture),1338750745 +170110,1193,psychological,1338750733 +170110,1252,atmospheric,1338750871 +170110,1252,cynical,1338750871 +170110,1252,Film Noir,1338750872 +170110,1252,Jack Nicholson,1338750871 +170110,1252,Roman Polanski,1338750874 +170110,1258,atmospheric,1338751208 +170110,1258,Jack Nicholson,1338751208 +170110,1258,psychological,1338751208 +170110,1617,1930s,1338750833 +170110,1617,anti-hero,1338750831 +170110,1617,complex,1338750836 +170110,1617,conspiracy,1338750835 +170110,1617,Crime,1338750838 +170110,1617,film noir,1338750840 +170110,1617,Kevin Spacey,1338750842 +170110,1617,Los Angeles,1338750844 +170110,1617,noir thriller,1338750846 +170110,1617,Russell Crowe,1338750849 +170110,1617,suspense,1338750852 +170110,1617,twist ending,1338750851 +170110,1721,atmospheric,1338751764 +170110,1721,based on a true story,1338751769 +170110,1721,bittersweet,1338751767 +170110,1721,Leonardo DiCaprio,1338751762 +170110,1721,romance,1338751771 +170110,1721,true story,1338751772 +170110,2858,Kevin Spacey,1338751436 +170110,3979,Adam Sandler,1338751475 +170110,4995,inspirational,1338750705 +170110,4995,mathematics,1338750704 +170110,4995,mental illness,1338750707 +170110,4995,psychology,1338750709 +170110,4995,Russell Crowe,1338750715 +170110,5528,Dream Sequence,1338761312 +170110,5528,Mark Romanek,1338761283 +170110,5528,oppression,1338761273 +170110,5528,psychological,1338761265 +170110,5528,psychotic tendencies,1338761294 +170110,5528,Robin Williams,1338761262 +170110,5528,sad but good,1338761267 +170110,5528,serial killer,1338761303 +170110,5528,strange story,1338761298 +170110,5528,suspense,1338761264 +170110,7254,Ashton Kutcher,1338751323 +170110,8529,comedy,1338751056 +170110,8529,emotion!,1338751059 +170110,8529,funny,1338751049 +170110,8529,great acting,1338751054 +170110,8529,Steven Spielberg,1338751049 +170110,8529,Tom Hanks,1338751049 +170110,8529,underrated,1338751068 +170110,8533,Romance,1338750903 +170110,8950,atmospheric,1338750439 +170110,8950,Christian Bale,1338750435 +170110,8950,great acting,1338750454 +170110,8950,Mafia,1338750437 +170110,8950,powerful ending,1338750440 +170110,8950,schizophrenia,1338750444 +170110,8950,twist ending,1338750443 +170110,32587,Bruce Willis,1338751246 +170110,32587,classic,1338751247 +170110,32587,Quentin Tarantino,1338751243 +170110,48043,atmospheric,1339676742 +170110,48043,dreamlike,1339676743 +170110,48043,Hugh Jackman,1339676760 +170110,48043,multiple storylines,1339676772 +170110,48043,Music,1339676765 +170110,48043,thought-provoking,1339676745 +170110,48043,twist ending,1339676770 +170110,48043,visually appealing,1339676746 +170110,48516,atmospheric,1338750798 +170110,48516,corruption,1338750813 +170110,48516,ensemble cast,1338750811 +170110,48516,gangsters,1338750801 +170110,48516,imdb top 250,1338750823 +170110,48516,Jack Nicholson,1338750793 +170110,48516,Leonardo DiCaprio,1338750791 +170110,48516,Mafia,1338750803 +170110,48516,Martin Scorsese,1338750799 +170110,55290,based on a book,1338819418 +170110,55290,detective,1338819404 +170110,55290,great performances,1338819411 +170110,55290,Morgan Freeman,1338819406 +170110,55290,police investigation,1338819409 +170110,55290,twist,1338819408 +170110,56941,Gerard Butler,1338750921 +170110,56941,irish accent,1338750920 +170110,56941,romantic,1338750934 +170110,56941,self discovery,1338750931 +170110,56941,twist ending,1338750930 +170110,65230,animal:dog,1338750971 +170110,65230,comedy,1338750978 +170110,65230,drama and commedy,1338750992 +170110,65230,Jennifer Aniston,1338750981 +170110,65230,Owen Wilson,1338750986 +170110,66097,alternate reality,1338761421 +170110,66097,animation,1338761419 +170110,66097,fantasy world,1338761430 +170110,66097,Surreal,1338761423 +170110,66097,Tim Burton,1338761432 +170110,66097,visually stunning,1338761434 +170110,72011,George Clooney,1338761668 +170110,72226,George Clooney,1338761388 +170110,72226,great cast,1338761396 +170110,72226,hilarious,1338761398 +170110,72226,Meryl Streep,1338761400 +170110,72226,talking animals,1338761393 +170110,73290,based on a true story,1338751029 +170110,73290,dogs,1338751020 +170110,73290,Loyalty,1338751023 +170110,74458,atmospheric,1338750579 +170110,74458,intense,1338750583 +170110,74458,Leonardo DiCaprio,1338750560 +170110,74458,Martin Scorsese,1338750561 +170110,74458,psychological,1338750578 +170110,74458,sad,1338750572 +170110,74458,twist ending,1338750563 +170110,79132,action,1338750614 +170110,79132,alternate reality,1338750612 +170110,79132,complicated,1338750610 +170110,79132,Leonardo DiCaprio,1338750606 +170110,79132,thought-provoking,1338750618 +170110,81591,Natalie Portman,1338750420 +170128,6188,Funniest Movies,1150729680 +170175,37733,overrated,1144076681 +170176,29,visually stunning,1368032825 +170176,293,Gary Oldman,1288145730 +170176,293,Jean Reno,1288145771 +170176,293,Natalie Portman,1288145732 +170176,293,soundtrack,1288145778 +170176,1199,visually stunning,1368032825 +170176,1213,Martin Scorsese,1288824840 +170176,1213,Robert De Niro,1288824847 +170176,1219,cinematography,1288824914 +170176,1219,classic,1288824942 +170176,1219,mental illness,1288824933 +170176,1219,psychology,1288824935 +170176,1219,serial killer,1288824931 +170176,1219,tense,1288824904 +170176,1235,Breaking The Fourth Wall,1315969833 +170176,1235,dark humor,1315969840 +170176,1235,good dialogue,1315969817 +170176,1235,original,1315969825 +170176,1500,predictable,1407896303 +170176,1527,visually stunning,1368032825 +170176,1546,Absurd,1422848078 +170176,1748,visually stunning,1368032825 +170176,2571,visually stunning,1368032825 +170176,3863,cinematography,1294011844 +170176,3863,dark,1294011865 +170176,3863,horror,1294011872 +170176,3863,scary,1294011861 +170176,3863,serial killer,1294011850 +170176,3863,surreal,1294011838 +170176,3863,Tarsem,1294011841 +170176,3863,visually stunning,1368032825 +170176,4226,dreamlike,1286334386 +170176,4226,nonlinear,1286334393 +170176,4226,stylized,1286334400 +170176,4226,twist ending,1286334402 +170176,4973,drama,1287672588 +170176,4973,feel-good,1287672541 +170176,4973,great cinematography,1287697808 +170176,4973,great soundtrack,1287697802 +170176,4973,music,1287672551 +170176,4973,notable soundtrack,1287672548 +170176,4973,Paris,1287672579 +170176,4973,romance,1287672544 +170176,5014,Beatles soundtrack,1287672123 +170176,5014,beautiful concept - inept writing,1287672128 +170176,5014,crying,1287672185 +170176,5014,Dakota Fanning,1287672136 +170176,5014,mental illness,1287672146 +170176,5014,Michelle Pfeiffer,1287672143 +170176,5014,sean penn,1287672140 +170176,5377,heartwarming,1397182754 +170176,5464,cinematography,1287618875 +170176,5464,Sam Mendes,1287618886 +170176,5956,acting,1287689070 +170176,5956,Cameron Diaz,1287689080 +170176,5956,Daniel Day-Lewis,1287689006 +170176,5956,Leonardo DiCaprio,1287689001 +170176,5956,writing,1287689060 +170176,6552,moral ambiguity,1407896181 +170176,7090,Beautiful,1286376991 +170176,7090,cinematography,1286377002 +170176,7090,colourful,1286377008 +170176,7361,bittersweet,1287672335 +170176,7361,Charlie Kaufman,1287697836 +170176,7361,romance,1287672341 +170176,7361,surreal,1287697840 +170176,7361,thought-provoking,1287672345 +170176,8638,dialogue,1287882769 +170176,8638,Julie Delpy,1287882738 +170176,8638,minimalist,1287882763 +170176,8638,philosophical,1287882788 +170176,8638,Richard Linklater,1287882740 +170176,8638,Verbose,1287882757 +170176,27611,humanity,1286901871 +170176,27611,religion,1286901889 +170176,27611,remake,1286901877 +170176,27611,robots,1286901878 +170176,27773,based on comic,1286334440 +170176,27773,hallucinatory,1286334434 +170176,27773,stylized,1286334453 +170176,27773,twist ending,1286334462 +170176,27773,violent,1286334467 +170176,27904,animation,1286902142 +170176,27904,average story,1286902179 +170176,27904,Philip K. Dick,1286902152 +170176,27904,rotoscoping,1286902154 +170176,27904,surreal,1286902156 +170176,34405,adventure,1286902032 +170176,34405,full characters,1286902045 +170176,34405,funny,1286902026 +170176,34405,witty,1286902029 +170176,34528,Amy Adams,1337036472 +170176,41285,acting,1287882671 +170176,41285,boring,1287882661 +170176,41285,opera soundtrack,1287882712 +170176,41285,Scarlett Johansson,1287882641 +170176,41285,tennis,1287882646 +170176,48774,cinematography,1286902008 +170176,48774,dystopia,1286901983 +170176,48774,humanity,1286901975 +170176,48780,not interesting,1286334328 +170176,48780,twist ending,1286334303 +170176,52973,pregnancy,1287697890 +170176,53161,Cute story,1339978869 +170176,53161,don't care about characters,1339978891 +170176,53161,love story,1339978874 +170176,55167,beautiful animation,1286898839 +170176,55167,empty characters,1286898902 +170176,55167,yingyang,1286898866 +170176,58299,Dr. Seuss,1289588601 +170176,59387,beautiful,1286375777 +170176,59387,cinematography,1286375783 +170176,59387,fantasy world,1286375776 +170176,59387,imagination,1286375774 +170176,59387,surreal,1286375779 +170176,59387,visually stunning,1286375780 +170176,64614,After school special,1423889282 +170176,64614,heartwarming,1423889243 +170176,64614,racist humor,1423889252 +170176,65130,depressing,1302569551 +170176,65130,Sam Mendes,1302569541 +170176,65418,full characters,1286898930 +170176,65418,non-hollywood,1286898764 +170176,65418,realism,1286898738 +170176,65418,subtext,1286898743 +170176,66665,great soundtrack,1287373085 +170176,66665,humorous,1287373097 +170176,66665,love,1287373110 +170176,66665,philosophical,1287373091 +170176,66665,quirky,1287373101 +170176,66665,realism,1287373106 +170176,68237,dystopia,1286376221 +170176,68237,psychology,1286376190 +170176,68901,realism,1288824799 +170176,74416,cinematogr,1294680261 +170176,74416,full characters,1294680240 +170176,74416,non-hollywood,1294680253 +170176,74416,realism,1294680235 +170176,74416,realistic,1423784869 +170176,74458,Mark Ruffalo,1286902390 +170176,74458,twist ending,1286902382 +170176,74553,stylized,1286898673 +170176,76251,original plot,1288322006 +170176,76251,story,1288322010 +170176,77421,John C. Reilly,1296534878 +170176,77421,Jonah Hill,1296534879 +170176,77455,Banksy,1293140627 +170176,77455,ending,1293140654 +170176,77455,graffiti,1293140714 +170176,77667,Ryan Phillippe,1293140771 +170176,77667,Stupid as Hell,1293140751 +170176,77667,Val Kilmer,1293140768 +170176,77667,writing,1293140756 +170176,77788,full characters,1287355775 +170176,77788,Paul Dano,1287355751 +170176,77788,Realism,1287355757 +170176,78039,depressing,1302569492 +170176,78039,hyperrealism,1417472807 +170176,78039,Michelle Williams,1302569506 +170176,78039,realism,1302569476 +170176,78039,Ryan Gosling,1302569503 +170176,79132,action,1286334268 +170176,79132,alternate reality,1286334232 +170176,79132,big budget,1286334272 +170176,79132,dreamlike,1286334260 +170176,79132,Ellen Page,1286334241 +170176,79132,Leonardo DiCaprio,1286334243 +170176,79132,surreal,1286334253 +170176,79242,real,1291339136 +170176,79357,Beauty,1286334197 +170176,79357,butterfly effect,1286334141 +170176,79357,cinematography,1286334178 +170176,79357,eyes,1286334185 +170176,79357,nonlinear,1286334144 +170176,79357,surreal,1286334135 +170176,79702,based on a comic,1288321946 +170176,79702,geeky,1288321950 +170176,79702,stylized,1288321907 +170176,79702,video games,1288321957 +170176,79720,plot,1300028727 +170176,79723,realism,1297384061 +170176,79723,Zoe Kazan,1297384054 +170176,80463,Jesse Eisenberg,1293140483 +170176,80463,writing,1293140498 +170176,80489,acting,1296534770 +170176,80489,Ben Affleck,1296534767 +170176,80489,Jeremy Renner,1296534825 +170176,80489,Jon Hamm,1296534837 +170176,80489,unoriginal,1296534798 +170176,80549,characters,1295285871 +170176,80549,dialogue,1295285871 +170176,80549,funny,1295285871 +170176,80549,plot,1295285881 +170176,80549,typical,1295285895 +170176,80549,Unreal reactions,1295285876 +170176,80693,generic,1297383981 +170176,80693,obvious,1297383973 +170176,80693,trying to be indie,1297383994 +170176,80693,Zach Galifianakis,1297384024 +170176,80862,makes you think,1292288688 +170176,80906,truth,1299978494 +170176,80969,based on a book,1294172432 +170176,81229,action,1296708730 +170176,81229,contrived,1296708691 +170176,81537,banal moral,1314988827 +170176,81537,unoriginal,1314988845 +170176,81537,Zach Galifianakis,1314988820 +170176,82173,realism,1339978823 +170176,82173,self obsessed,1339978833 +170176,82242,original,1368032813 +170176,82459,acting,1294171845 +170176,82459,cinematography,1294171852 +170176,82459,Jeff Bridges,1294171870 +170176,82459,Josh Brolin,1294171868 +170176,82459,Matt Damon,1294171872 +170176,82459,remake,1294171862 +170176,82461,daft punk,1294171901 +170176,82461,Jeff Bridges,1294171905 +170176,82461,story,1294171922 +170176,84152,cinematography,1315511044 +170176,84152,doesn't resist to some cliches,1315511051 +170176,84152,entertaining,1315511049 +170176,84615,original story,1311989563 +170176,84944,animation,1301851538 +170176,84954,Philip K. Dick,1311989506 +170176,84954,trivial,1311989492 +170176,85007,lust turns into love,1311989701 +170176,85007,predictable,1311989682 +170176,85022,predictable,1311989885 +170176,85367,Adam Sandler,1311989596 +170176,85367,Jennifer Aniston,1311989598 +170176,85367,predictable,1311989607 +170176,86190,acting,1349961631 +170176,86190,cinematography,1349961614 +170176,86190,plot,1349961657 +170176,87298,original story,1314988877 +170176,87304,believable,1320288014 +170176,87304,real,1320287983 +170176,87304,relationships,1320288005 +170176,87304,unique story,1320288019 +170176,87304,well written,1320288024 +170176,88129,ambient music,1317179937 +170176,88129,cinematography,1317179968 +170176,88129,lack of character,1317179958 +170176,88129,minimalistic,1317179912 +170176,88129,no depth,1317179950 +170176,88129,ryan gosling,1317179943 +170176,89039,cinematography,1324256808 +170176,89039,plot,1324256779 +170176,89039,writing,1324256783 +170176,89745,fun,1338511587 +170176,90057,Michael Shannon,1337036492 +170176,96373,editing,1374289555 +170176,96373,intense,1374289546 +170176,99917,artsy,1382559674 +170176,99917,Beautiful,1382559673 +170176,100383,Jude Law,1407202294 +170176,100383,Steven Soderbergh,1407202299 +170176,101864,poor acting,1379818108 +170176,101864,thin plot,1379818098 +170176,102993,predictable plot,1383012332 +170176,103228,bad acting,1382315355 +170176,103228,bad plot,1382315357 +170176,103228,Guillermo del Toro,1382315367 +170176,103228,visually appealing,1382315362 +170176,103980,Sally Hawkins,1403816072 +170176,104374,charming,1448675703 +170176,104374,time travel,1448675700 +170176,104841,feels,1384036763 +170176,104841,intense,1384036767 +170176,104841,score,1384036774 +170176,104841,traumatic,1384036829 +170176,105355,bittersweet,1417983349 +170176,105355,hyperrealism,1417983360 +170176,105355,realism,1417983371 +170176,105355,too long,1417983340 +170176,105755,bad story,1423784818 +170176,106883,amateur,1416023657 +170176,106918,obvious,1396759578 +170176,106920,great performance,1390580644 +170176,106920,joaquin phoenix,1390580627 +170176,106920,Spike Jonze,1390580631 +170176,106920,thought-provoking,1390580629 +170176,107406,illogical,1444255349 +170176,107406,poor plot,1452272541 +170176,107406,tilda swinton,1444255345 +170176,110102,action,1410049208 +170176,110102,Chris Evans,1410049211 +170176,110102,Scarlett Johansson,1410049220 +170176,110127,bad performance,1407896041 +170176,110127,bad writing,1407896034 +170176,110127,timelapse,1407896028 +170176,110127,unlikeable characters,1407896016 +170176,110730,bad acting,1407896082 +170176,110730,contrived,1407896104 +170176,110730,typical,1407896093 +170176,112183,dark,1420562069 +170176,112183,single shot,1420562080 +170176,112290,12 years in the making,1417472687 +170176,112290,Ambitious,1417472713 +170176,112290,realism,1417472680 +170176,112450,David Wain,1407895753 +170176,112450,Original,1407895763 +170176,112552,intense,1432237989 +170176,112552,Tense,1432237980 +170176,112940,slow,1417027586 +170176,112940,super dry,1417027577 +170176,113345,action,1432696688 +170176,113345,awful script,1432696682 +170176,113345,obvious,1432696685 +170176,113345,sci-fi,1432696690 +170176,117444,animation,1428210798 +170176,120466,bad writing,1432237744 +170176,120466,robots,1432237702 +170176,122882,charlize theron,1452272128 +170176,122886,Adam Driver,1451500736 +170176,122886,BB-8,1451500734 +170176,122886,Daisy Ridley,1451500730 +170176,122886,Fan service,1451500747 +170176,122886,Plot Recycling,1451500740 +170176,122886,Star Wars,1451500732 +170176,127186,realism,1433963436 +170176,127216,believable,1446582880 +170176,148238,bad singing,1449510853 +170176,148238,Bill Murray,1449510835 +170176,148238,plotless,1449510844 +170194,1,animation,1442440048 +170194,1,clever,1442440044 +170194,1,Disney,1442440029 +170194,1,pixar,1442440025 +170194,939,quotable,1442439224 +170194,939,Rex Harrison,1442439239 +170194,2125,chick flick,1442440292 +170194,2125,fairy tale,1442440295 +170194,8784,soundtrack,1442439164 +170194,66934,joss whedon,1442442616 +170194,66934,parody,1442442621 +170194,81847,disney,1442440110 +170194,81847,fairy tale,1442440101 +170196,593,cannibalism,1430666766 +170196,593,horror,1430666766 +170196,593,suspense,1430666766 +170198,7090,aesthetically pleasing,1225241901 +170201,68659,fractured story,1248995074 +170201,68659,Kristen Bell,1248995084 +170240,47404,Adventure,1452491282 +170240,47404,comedy,1452491294 +170240,47404,Introspection,1452491316 +170240,47404,Masaaki Yuasa,1452491339 +170240,47404,Offbeat,1452491320 +170240,47404,quirky,1452491285 +170240,47404,Self Discovery,1452491324 +170240,47404,surreal,1452491353 +170240,47404,visually appealing,1452491333 +170240,47404,visually stunning,1452491335 +170240,59418,abuse,1452491584 +170240,59418,abused children,1452491593 +170240,59418,confinement,1452491646 +170240,59418,Ellen Page,1452491604 +170240,59418,injustice,1452491679 +170240,59418,isolation,1452491653 +170240,59418,molestation,1452491633 +170240,59418,neglect,1452491661 +170240,59418,rape,1452491637 +170240,59418,torture,1452491642 +170240,59418,true story,1452491612 +170240,92058,Black & White,1452490497 +170240,92058,body horror,1452491429 +170240,92058,Brutality,1452491392 +170240,92058,depraved,1452491400 +170240,92058,disturbed,1452491402 +170240,92058,disturbing,1452491431 +170240,92058,evil,1452490663 +170240,92058,Extreme Violence,1452491393 +170240,92058,feces,1452491387 +170240,92058,genital mutilation,1452491389 +170240,92058,gore,1452491390 +170240,92058,kidnapping,1452490554 +170240,92058,mentally disturbed,1452491396 +170240,92058,mentally unstable,1452491399 +170240,92058,Nudity (Full Frontal),1452491439 +170240,92058,obsession,1452491410 +170240,92058,rape,1452491390 +170240,92058,Sadism,1452491379 +170240,92058,Sexual Abuse,1452491394 +170240,92058,sick,1452491385 +170240,92058,sick obsession,1452491418 +170240,92058,too disturbing,1452491383 +170240,92058,Torture,1452491408 +170240,92058,Villain Main Character,1452491405 +170240,140795,abuse,1452491806 +170240,140795,child abuse,1452491802 +170240,140795,freak show,1452491822 +170240,140795,rape,1452491790 +170240,140795,torture,1452491798 +170245,29,children,1259141999 +170245,175,indecent,1259141978 +170245,175,Nudity (Full Frontal),1259141974 +170245,208,post-apocalyptic,1259138663 +170245,223,indecent,1259141455 +170245,231,raunchy,1259133972 +170245,247,lesbian,1259141854 +170245,327,post-apocalyptic,1259142528 +170245,1061,revenge,1259136826 +170245,1117,mongoloid,1259142041 +170245,1208,Nudity (Topless),1259141235 +170245,1222,indecent,1259141782 +170245,1227,Nudity (Full Frontal),1259134723 +170245,1232,meditative,1259136972 +170245,1258,Nudity (Full Frontal - Notable),1259137503 +170245,1258,Nudity (Full Frontal),1259137500 +170245,1350,apocalypse,1259852030 +170245,1350,Christianity,1259852014 +170245,1354,indecent,1259141392 +170245,1354,male nudity,1259141378 +170245,1354,Nudity (Full Frontal - Notable),1259141374 +170245,1354,Nudity (Full Frontal),1259141371 +170245,1641,indecent,1259142699 +170245,1645,cheating husband,1259137130 +170245,1645,Nudity (Full Frontal - Notable),1259137149 +170245,1645,Nudity (Full Frontal),1259137147 +170245,1861,romantic,1264977080 +170245,2118,author:Stephen King,1259137088 +170245,2118,Nudity (Topless - Brief),1259137099 +170245,2122,author:Stephen King,1260066346 +170245,2393,nerdy,1259139377 +170245,2560,cannibalism,1259561982 +170245,2706,Nudity (Topless - Notable),1259141071 +170245,2710,boring,1259142617 +170245,2710,mockumentary,1259142608 +170245,3083,Nudity (Topless - Brief),1259137978 +170245,3198,Nudity (Topless),1259134794 +170245,3275,Nudity (Topless),1259137035 +170245,3379,post-apocalyptic,1264608849 +170245,3556,suicide,1259137845 +170245,3593,scientologist,1259133490 +170245,3617,indecent,1259142359 +170245,3626,Nudity (Full Frontal - Notable),1259140917 +170245,3626,Nudity (Full Frontal),1259140921 +170245,3704,post-apocalyptic,1259139158 +170245,3745,father-son relationship,1265325768 +170245,3745,post-apocalyptic,1265325779 +170245,3897,Nudity (Topless - Notable),1259133366 +170245,3897,Nudity (Topless),1259133371 +170245,3897,Philip Seymour Hoffman,1259133359 +170245,3916,American Football,1259142308 +170245,3916,Cheesy,1259142318 +170245,3916,football,1259142311 +170245,3916,sports,1259142301 +170245,3996,poetic,1259143047 +170245,4014,Nudity (Topless - Brief),1259133619 +170245,4308,indecent,1259142184 +170245,4642,indecent,1259141867 +170245,4643,post-apocalyptic,1259136337 +170245,4847,sexual,1259140833 +170245,4848,lesbian,1259134610 +170245,4848,Nudity (Full Frontal - Notable),1259134613 +170245,4848,Nudity (Full Frontal),1259134616 +170245,5171,time travel,1259137707 +170245,5463,post-apocalyptic,1264710308 +170245,5891,Nudity (Full Frontal - Notable),1260938618 +170245,5891,rape,1260938624 +170245,5891,revenge,1260938622 +170245,6162,meditative,1259141812 +170245,6192,adultery,1259133986 +170245,6365,post-apocalyptic,1259142742 +170245,6583,post-apocalyptic,1259142641 +170245,6620,nerdy,1259133395 +170245,6620,romance,1259133403 +170245,6708,twist ending,1259142107 +170245,6874,japanese schoolgirl with flail,1261152771 +170245,6874,nonlinear,1261152742 +170245,6874,rape,1261152734 +170245,6934,post-apocalyptic,1259142751 +170245,7022,basketball,1262575633 +170245,7029,indecent,1259142238 +170245,7029,sexual,1259142240 +170245,7051,indecent,1259142992 +170245,7265,incest,1259142686 +170245,7265,indecent,1259142684 +170245,7360,Nudity (Topless - Brief),1259133780 +170245,7360,post-apocalyptic,1259133786 +170245,8798,assassin,1259133739 +170245,8798,revenge,1259133743 +170245,8800,fascism,1259133667 +170245,27109,revenge,1261322419 +170245,27604,suicide,1259134297 +170245,30707,boxing,1259134555 +170245,30707,sports,1259134595 +170245,31150,Nazis,1259143032 +170245,31998,explicit sex scene,1259141686 +170245,31998,indecent,1259141704 +170245,31998,sex scenes,1259141690 +170245,32211,explicit sex scene,1259137873 +170245,32211,lesbian,1259137879 +170245,32211,male nudity,1259137882 +170245,32211,Nudity (Rear),1259137886 +170245,32211,revenge,1259137898 +170245,32211,unsimulated sex scenes,1259137903 +170245,33004,post-apocalyptic,1259137225 +170245,33171,homosexuality,1259134657 +170245,33171,male nudity,1259134672 +170245,33903,Nudity (Topless),1259133878 +170245,34292,Nudity (Topless - Brief),1259139108 +170245,36527,mathematics,1259136385 +170245,36527,mental illness,1259136408 +170245,45662,Christianity,1259907175 +170245,48385,crude humor,1259141346 +170245,48385,Male nudity,1259141349 +170245,48385,Nudity (Full Frontal - Notable),1259141327 +170245,56333,Philip Seymour Hoffman,1259137418 +170245,59126,Bill Maher,1259136469 +170245,71535,post-apocalyptic,1259456568 +170315,260,drama,1442501564 +170315,260,space,1442501569 +170321,318,morgan freeman,1432353987 +170321,318,prison escape,1432353987 +170321,318,surprise ending,1432353987 +170321,2571,sci-fi,1432353684 +170321,5810,inspiring,1432354080 +170321,5989,based on true story,1432353778 +170321,80463,true story,1432353817 +170321,116797,code breaking,1432353920 +170321,116797,Computers,1432353938 +170321,116797,genius,1432353929 +170321,116797,history,1432353928 +170321,116797,mathematics,1432353940 +170330,4246,romance,1262479274 +170348,778,drugs,1308424115 +170348,778,heroin,1308424124 +170348,778,soundtrack,1308424133 +170348,1222,sound track,1308697094 +170348,1222,Stanley Kubrick,1308697082 +170348,1222,vietnam,1308697103 +170348,2987,animation & live action interact,1308493452 +170348,2987,nostalgic,1308493391 +170348,6016,Brazil,1308487665 +170348,6016,gangs,1308487689 +170348,6016,Portuguese,1308487675 +170348,44197,organized crime,1308345395 +170348,44197,Vin Diesel,1308345426 +170348,45720,Anne Hathaway,1308425874 +170348,79132,sentimental,1308424194 +170348,79132,surreal,1308424201 +170348,86377,stand-up comedy,1308440159 +170348,86781,flashbacks,1308435989 +170348,86781,great soundtrack,1308427649 +170348,86781,slow,1308435961 +170348,86781,Unexpected Ending,1308518302 +170366,48516,classic,1449556202 +170366,48516,corruption,1449556198 +170366,99114,comedy,1449556135 +170366,99114,great acting,1449556145 +170366,99114,slavery,1449556157 +170375,47,psychological,1390276089 +170375,47,psychology,1390276087 +170375,47,twist ending,1390276092 +170375,50,conspiracy,1390275968 +170375,50,Crime,1390275965 +170375,50,Dark,1390275953 +170375,50,thriller,1390275959 +170375,50,twist ending,1390275946 +170375,288,dark comedy,1390276456 +170375,288,stylized,1390276459 +170375,296,Black comedy,1390276978 +170375,1625,psychological,1390276821 +170375,1625,twist ending,1390276825 +170375,2762,Atmospheric,1390276169 +170375,2762,mindfuck,1390276157 +170375,2762,psychological,1390276161 +170375,2762,psychology,1390276160 +170375,2762,stylized,1390276176 +170375,2762,twist ending,1390276163 +170375,2959,dark comedy,1390275764 +170375,2959,mental illness,1390275772 +170375,2959,philosophy,1390275785 +170375,2959,psychology,1390275761 +170375,2959,stylized,1390275782 +170375,2959,surreal,1390275775 +170375,2959,twist ending,1390275777 +170375,3176,psychology,1390276930 +170375,3535,black comedy,1390276398 +170375,3535,humorous,1390276391 +170375,3535,psychological,1390276402 +170375,3535,psychology,1390276393 +170375,4226,black and white,1390275920 +170375,4226,complicated,1390275909 +170375,4226,mystery,1390275911 +170375,4226,narrated,1390275926 +170375,4226,psychological,1390275896 +170375,4226,time loop,1390275905 +170375,4226,twist ending,1390275899 +170375,4878,psychology,1390275814 +170375,4878,thought-provoking,1390275821 +170375,4878,twist ending,1390275818 +170375,6323,psychology,1390276197 +170375,6323,split personality,1390276201 +170375,6323,twist ending,1390276199 +170375,8950,psychology,1390275997 +170375,8950,stylized,1390275998 +170375,8950,surreal,1390276008 +170375,8950,twist ending,1390276001 +170375,27773,revenge,1390275875 +170375,27773,twist ending,1390275848 +170375,27773,vengeance,1390275852 +170375,27773,violence,1390275859 +170375,27773,violent,1390275855 +170375,48780,atmospheric,1390276048 +170375,48780,mystery,1390276038 +170375,48780,psychological,1390276039 +170375,48780,twist ending,1390276041 +170375,58301,dark humor,1390276555 +170375,74458,insanity,1390276253 +170375,74458,psychological,1390276250 +170375,74458,stylized,1390276248 +170375,74458,surreal,1390276256 +170375,74458,twist ending,1390276246 +170375,78349,mindfuck,1390276834 +170375,78349,psychological,1390276840 +170375,79132,alternate reality,1390276122 +170375,79132,surreal,1390276129 +170375,79132,thought-provoking,1390276116 +170375,79132,visually appealing,1390276119 +170378,54997,Christian Bale,1200292160 +170379,68554,based on a book,1450637295 +170379,68554,secrets,1450637308 +170379,68554,Tom Hanks,1450637287 +170379,68554,twisted ending,1450637299 +170417,356,not like the book,1295743791 +170417,81562,moving,1295743511 +170418,595,animation,1408872232 +170418,1721,romance,1408872153 +170418,2601,hilarious,1409656776 +170418,26171,boring,1412536118 +170418,47997,terrible,1435240073 +170426,260,great story,1434961002 +170426,260,the force,1434961015 +170430,6857,anime,1301365976 +170430,6857,martial arts,1301365980 +170430,6857,ninja,1301365975 +170430,6857,samurai,1301365983 +170430,6857,stylized,1301365995 +170430,76738,Finnish,1301023702 +170430,76738,nudity,1301023720 +170430,76738,sauna,1301023703 +170430,77658,astronomy,1307294658 +170430,77658,atheism,1307294697 +170430,77658,biology,1307294660 +170430,77658,Carl Sagan,1307294661 +170430,77658,earth,1307294663 +170430,77658,enlightening,1307294730 +170430,77658,environmental,1307294709 +170430,77658,evolution,1307294665 +170430,77658,history,1307294668 +170430,77658,irreligion,1307294671 +170430,77658,nature,1307294674 +170430,77658,physics,1307294676 +170430,77658,science,1307294678 +170430,77658,space,1307294681 +170430,78499,adventure,1300742138 +170430,78499,animation,1300742141 +170430,78499,childhood,1300742143 +170430,78499,children,1300742145 +170430,78499,franchise,1300742148 +170430,78499,friendship,1300742198 +170430,78499,oppression,1300742157 +170430,78499,Pixar,1300742160 +170430,78499,Pixar animation,1300742162 +170430,78499,sequel,1300742164 +170430,78499,tear jerker,1300742167 +170430,78499,tense,1300742169 +170430,78499,torture,1300742175 +170430,78499,toys,1300742177 +170430,78499,violence,1300742179 +170430,78499,visually appealing,1300742180 +170430,78544,funny,1301023674 +170430,78544,not a movie,1301023659 +170430,78544,Ricky Gervais,1301023658 +170430,78544,stand-up comedy,1301023654 +170431,745,animation,1414357660 +170431,745,comedy,1414357666 +170431,1213,gangsters,1414357707 +170431,1213,organized crime,1414357713 +170431,5971,anime,1414357887 +170431,79132,alternate reality,1414357746 +170431,79132,sci-fi,1414357740 +170431,108979,anime,1433897640 +170431,108979,future,1433897640 +170431,108979,space,1433897640 +170456,4878,puzzle,1203702431 +170480,49200,Marlene Dietrich,1445500099 +170551,1252,Netflix Streaming,1347997432 +170551,1288,Netflix Streaming,1347997306 +170551,1358,Netflix Streaming,1347997522 +170551,2427,Netflix Streaming,1347997702 +170551,2997,Netflix Streaming,1347997145 +170551,3077,Netflix Streaming,1347998391 +170551,4232,Netflix Streaming,1347997329 +170551,5010,Netflix Streaming,1347998006 +170551,5715,gory,1436040595 +170551,5715,summer camp,1436040595 +170551,5715,teen slasher,1436040595 +170551,7373,Netflix Streaming,1347997719 +170551,8580,Netflix Streaming,1347998478 +170551,27571,Netflix Streaming,1347997084 +170551,27592,Netflix Streaming,1347997392 +170551,27700,Netflix Streaming,1347997002 +170551,31410,Netflix Streaming,1347997293 +170551,33896,Netflix Streaming,1347997418 +170551,39183,Netflix Streaming,1347997135 +170551,40583,Netflix Streaming,1347997733 +170551,42632,Netflix Streaming,1347997029 +170551,43983,Netflix Streaming,1347997540 +170551,58376,Netflix Streaming,1347998045 +170551,65188,Netflix Streaming,1347998472 +170551,65514,Netflix Streaming,1347997945 +170551,66813,Netflix Streaming,1347997444 +170551,68347,Netflix Streaming,1347996911 +170551,73323,Netflix Streaming,1347997264 +170551,73885,Netflix Streaming,1347997068 +170551,74510,Netflix Streaming,1347997270 +170551,77233,Netflix Streaming,1347997362 +170551,77561,Netflix Streaming,1347997183 +170551,80094,Netflix Streaming,1347997215 +170551,81158,Netflix Streaming,1347997168 +170551,81417,Netflix Streaming,1347997232 +170551,86142,Netflix Streaming,1347997198 +170551,86332,Netflix Streaming,1347997568 +170551,88129,Netflix Streaming,1347997550 +170551,88140,Netflix Streaming,1347997982 +170551,89090,Netflix Streaming,1347997049 +170551,91077,boring,1325561803 +170551,91077,listless,1325561803 +170551,94466,not a movie,1448213260 +170551,94466,tv series,1448213264 +170559,905,Oscar (Best Picture),1232675941 +170592,296,bruce willis,1421414695 +170592,296,comedy,1421414695 +170592,296,crime,1421414695 +170592,3263,basketball,1410110587 +170592,91630,action,1439243826 +170592,91630,Tom Cruise,1439243831 +170598,115149,Revenge,1421590177 +170605,260,good vs evil,1431777268 +170605,260,sci-fi,1431777257 +170605,1291,action,1431777385 +170612,471,Capra-esque,1186210711 +170612,1242,Civil War,1186210683 +170612,1302,baseball,1186210675 +170612,1377,Comic Book adaption,1186210658 +170612,4896,books,1186210701 +170618,110,british,1417275144 +170618,110,classic,1417275147 +170618,110,mel gibson,1417275134 +170651,260,classic,1442265196 +170651,260,sci-fi,1442265202 +170673,109487,murphy,1447382662 +170685,260,ahead of its time,1431710867 +170694,1240,time travel,1232719371 +170697,231,Funniest Film Ever,1180828143 +170697,2683,Hilarious,1180828012 +170697,2710,Very Effective Horror,1180828101 +170697,4878,Brillant Film,1180827988 +170697,8949,Black Humor At Its Best,1180827883 +170737,260,classic,1442978572 +170754,1233,claustrophobic,1303523599 +170754,1233,grim,1303523605 +170754,1233,Nazis,1303523615 +170754,83480,predictable,1303523495 +170756,590,Native,1138189606 +170762,296,dancing,1425484023 +170762,296,killer,1425484023 +170762,296,quentin tarantino,1425484023 +170762,356,chocolate,1428232671 +170762,356,run,1428232671 +170762,356,war,1428232671 +170786,41997,let god's revenge be His,1144002256 +170800,63433,space,1234034627 +170801,32,post-apocalyptic,1435156142 +170801,32,sci-fi,1435156153 +170801,32,time travel,1435156138 +170801,47,twist ending,1435156812 +170801,110,action,1435320038 +170801,110,historical,1435320045 +170801,110,Medieval,1435320032 +170801,208,apocalypse,1435157497 +170801,208,post-apocalyptic,1435157490 +170801,260,action,1435154298 +170801,260,classic,1435322634 +170801,260,EPIC,1435322626 +170801,260,good versus evil,1435319180 +170801,260,good vs evil,1435154279 +170801,260,sci-fi,1435154267 +170801,260,space,1435322621 +170801,260,space action,1435154284 +170801,316,action,1435157376 +170801,316,aliens,1435157360 +170801,316,mythology,1435157367 +170801,316,sci-fi,1435157358 +170801,316,space,1435157364 +170801,329,space,1435323065 +170801,527,historical,1435319475 +170801,527,true story,1435319478 +170801,541,classic,1435158104 +170801,541,sci-fi,1435158099 +170801,589,action,1435155941 +170801,589,apocalypse,1435155938 +170801,589,Arnold Schwarzenegger,1435155926 +170801,589,sci-fi,1435155929 +170801,589,time travel,1435155924 +170801,780,alien invasion,1435157618 +170801,780,apocalypse,1435157626 +170801,780,end of the world,1435157629 +170801,780,sci-fi,1435157636 +170801,924,aliens,1435325259 +170801,924,classic,1435325256 +170801,924,sci-fi,1435325244 +170801,924,space,1435325248 +170801,1036,action,1435158318 +170801,1036,thriller,1435158329 +170801,1080,comedy,1435323987 +170801,1127,aliens,1435155577 +170801,1127,sci-fi,1435155584 +170801,1127,thought-provoking,1435155592 +170801,1136,classic,1435323953 +170801,1136,comedy,1435323955 +170801,1136,medieval,1435323965 +170801,1196,action,1435322839 +170801,1196,classic,1435322852 +170801,1196,fantasy,1435154604 +170801,1196,sci-fi,1435154583 +170801,1196,space,1435154599 +170801,1198,action,1435319222 +170801,1198,adventure,1435319209 +170801,1198,classic,1435319215 +170801,1198,good versus evil,1435319212 +170801,1200,action,1435155810 +170801,1200,aliens,1435155788 +170801,1200,classic,1435155826 +170801,1200,sci-fi,1435155784 +170801,1200,space,1435155798 +170801,1210,action,1435322742 +170801,1210,classic,1435322749 +170801,1210,sci-fi,1435154635 +170801,1210,space,1435154637 +170801,1214,aliens,1435155733 +170801,1214,classic,1435155765 +170801,1214,sci-fi,1435155730 +170801,1214,space,1435155737 +170801,1214,space travel,1435155749 +170801,1214,suspense,1435155740 +170801,1214,thriller,1435155753 +170801,1219,classic,1435156904 +170801,1219,thriller,1435156914 +170801,1240,Action,1435155898 +170801,1240,Arnold Schwarzenegger,1435155888 +170801,1240,Sci-Fi,1435155891 +170801,1240,time travel,1435155886 +170801,1291,action,1435319247 +170801,1333,suspense,1435156944 +170801,1356,sci-fi,1435322904 +170801,1356,time travel,1435322897 +170801,1371,sci-fi,1435323040 +170801,1373,aliens,1435322989 +170801,1373,space,1435322991 +170801,1374,sci-fi,1435322875 +170801,1374,space,1435322873 +170801,1376,time travel,1435323010 +170801,1584,aliens,1435325164 +170801,1584,sci-fi,1435325158 +170801,1584,space travel,1435325161 +170801,1590,horror,1435325583 +170801,1590,space,1435325585 +170801,1610,thriller,1435319705 +170801,1625,mindfuck,1435156314 +170801,1625,thriller,1435156322 +170801,1625,twist ending,1435156331 +170801,1876,apocalypse,1435157671 +170801,1876,disaster,1435157676 +170801,1876,natural disaster,1435157669 +170801,1917,apocalypse,1435157572 +170801,1917,disaster,1435157595 +170801,1917,end of the world,1435157586 +170801,1917,sci-fi,1435157574 +170801,2115,action,1435319283 +170801,2311,sci-fi,1435325206 +170801,2311,space,1435325204 +170801,2371,comedy,1435158389 +170801,2529,post-apocalyptic,1435158162 +170801,2571,fantasy,1435156063 +170801,2571,post-apocalyptic,1435156032 +170801,2571,sci-fi,1435156020 +170801,2628,sci-fi,1435154836 +170801,2628,space,1435154840 +170801,2628,Star Wars,1435154833 +170801,2795,comedy,1435324383 +170801,2916,alternate reality,1435155984 +170801,2916,Arnold Schwarzenegger,1435155972 +170801,3156,future,1435157981 +170801,3156,sci-fi,1435157974 +170801,3471,aliens,1435155691 +170801,3471,Classic,1435155706 +170801,3471,first contact,1435155698 +170801,3471,sci-fi,1435155695 +170801,3527,action,1435155853 +170801,3527,aliens,1435155850 +170801,3527,Arnold Schwarzenegger,1435155848 +170801,3527,sci-fi,1435155856 +170801,3578,action,1435320158 +170801,3578,historical,1435320165 +170801,3578,history,1435320161 +170801,3793,action,1435322465 +170801,3793,sci-fi,1435322468 +170801,3981,sci-fi,1435157710 +170801,4085,funny,1435158368 +170801,4226,Mindfuck,1435156255 +170801,4370,future,1435158017 +170801,4370,sci-fi,1435158011 +170801,4643,post-apocalyptic,1435323254 +170801,4643,sci fi,1435323250 +170801,4874,aliens,1435325112 +170801,4874,sci-fi,1435325109 +170801,5010,true story,1435319973 +170801,5171,time travel,1435157460 +170801,5250,comedy,1435324458 +170801,5266,Jodie Foster,1435156424 +170801,5266,thriller,1435156428 +170801,5378,sci-fi,1435154799 +170801,5378,space,1435154801 +170801,5418,action,1435319563 +170801,5418,survival,1435319571 +170801,5418,thriller,1435319561 +170801,5502,aliens,1435325014 +170801,5502,sci-fi,1435325020 +170801,5679,horror,1435323661 +170801,6281,interesting,1435156470 +170801,6323,thriller,1435156536 +170801,6323,twist ending,1435156530 +170801,6333,action,1435322586 +170801,6333,sci-fi,1435322583 +170801,6807,comedy,1435324156 +170801,7143,historical,1435320062 +170801,7254,sci-fi,1435323556 +170801,7254,time travel,1435323553 +170801,7254,twist ending,1435323565 +170801,7481,aliens,1435157330 +170801,8361,apocalypse,1435157548 +170801,8361,catastrophe,1435157545 +170801,8361,Post apocalyptic,1435157551 +170801,8371,action,1435323177 +170801,8371,sci-fi,1435323174 +170801,8371,space,1435323172 +170801,8591,time travel,1435157412 +170801,8644,action,1435157921 +170801,8644,future,1435157933 +170801,8644,Isaac Asimov,1435157912 +170801,8644,sci-fi,1435157906 +170801,8665,action,1435319605 +170801,8810,Alien,1435319389 +170801,8810,aliens,1435319384 +170801,8810,sci-fi,1435319397 +170801,8957,mindfuck,1435323728 +170801,8957,twist ending,1435323731 +170801,33493,action,1435322719 +170801,33493,fantasy,1435154687 +170801,33493,sci-fi,1435154701 +170801,33493,space,1435154681 +170801,34048,sci-fi,1435324973 +170801,45210,true story,1435319928 +170801,48385,comedy,1435324072 +170801,51662,action,1435320191 +170801,51662,historical,1435320204 +170801,54286,action,1435319631 +170801,54286,thriller,1435319629 +170801,54286,twist ending,1435319635 +170801,59369,action,1435319534 +170801,59369,thriller,1435319537 +170801,70286,aliens,1435157059 +170801,70286,sci-fi,1435157063 +170801,71135,horror,1435325523 +170801,71135,post-apocalyptic,1435325512 +170801,71135,sci-fi,1435325516 +170801,71135,space,1435325514 +170801,71135,space travel,1435325519 +170801,71135,twist ending,1435325531 +170801,72998,3d,1435324909 +170801,72998,sci-fi,1435324906 +170801,74458,ending twist,1435156735 +170801,74458,mindfuck,1435156765 +170801,74458,twist ending,1435156742 +170801,77561,action,1435322278 +170801,79057,action,1435319337 +170801,79057,aliens,1435319339 +170801,79057,sci fi,1435319361 +170801,79132,action,1435323418 +170801,79132,mindfuck,1435323410 +170801,79132,sci-fi,1435323415 +170801,86332,action,1435322201 +170801,86332,mythology,1435322194 +170801,88744,action,1435155049 +170801,88744,sci-fi,1435155042 +170801,88744,thriller,1435323324 +170801,89745,action,1435322149 +170801,94864,aliens,1435157238 +170801,94864,sci-fi,1435157245 +170801,94864,scifi,1435157236 +170801,96610,sci-fi,1435156089 +170801,96610,thriller,1435156108 +170801,96610,time travel,1435156091 +170801,97304,thriller,1435319779 +170801,97304,True story,1435319767 +170801,101864,post-apocalyptic,1435155276 +170801,101864,sci-fi,1435155278 +170801,101864,twists & turns,1435155535 +170801,103228,sci-fi,1435154935 +170801,103253,sci-fi,1435157842 +170801,103306,aliens,1435325445 +170801,103306,space,1435325442 +170801,104841,sci-fi,1435323370 +170801,104841,space,1435323359 +170801,105504,true story,1435319809 +170801,111362,time travel,1435155160 +170801,111364,not enough monster action,1435155000 +170801,111759,action,1435155235 +170801,111759,sci-fi,1435155220 +170801,111759,time loop,1435155216 +170801,111759,time travel,1435155223 +170801,112623,action,1435155084 +170801,112623,apocalyptic,1435155091 +170801,112623,sci-fi,1435155081 +170802,91241,action,1428401352 +170802,91241,bollywood,1428401352 +170802,91241,good cop,1428401352 +170859,1377,action,1189086212 +170859,1377,batman,1189086212 +170860,47,great ending,1368645949 +170860,50,great acting,1368645839 +170860,150,dramatic,1368645639 +170860,169,family,1368645931 +170860,204,action,1368645719 +170860,232,relationships,1368645760 +170860,296,storytelling,1368645468 +170860,318,great acting,1368645838 +170860,318,great ending,1368645949 +170860,455,family,1368645930 +170860,508,dramatic,1368645639 +170860,593,great acting,1368645838 +170860,858,great acting,1368645839 +170860,858,oscar (best directing),1368645607 +170860,1172,mentor,1368645408 +170860,1185,cerebral,1368646019 +170860,1199,weird,1368645798 +170860,1299,dramatic,1368645639 +170860,1307,relationships,1368645760 +170860,1358,oscar (best directing),1368645606 +170860,1466,mentor,1368645408 +170860,1527,visually appealing,1368645818 +170860,1552,action,1368645719 +170860,1608,action,1368645719 +170860,1617,great acting,1368645839 +170860,1639,relationships,1368645760 +170860,1704,mentor,1368645408 +170860,1722,action,1368645719 +170860,1991,horror,1368645909 +170860,2108,story,1368645995 +170860,2167,action,1368645719 +170860,2194,oscar (best directing),1368645607 +170860,2262,relationships,1368645760 +170860,2315,horror,1368645909 +170860,2335,comedy,1368645431 +170860,2355,story,1368645995 +170860,2371,comedy,1368645431 +170860,2394,story,1368645995 +170860,2420,mentor,1368645408 +170860,2460,horror,1368645909 +170860,2762,great ending,1368645949 +170860,2858,great acting,1368645838 +170860,3157,family,1368645931 +170860,3421,comedy,1368645431 +170860,4085,comedy,1368645431 +170860,4128,cult classic,1368645873 +170860,4226,storytelling,1368645468 +170860,4878,cerebral,1368646019 +170860,4878,weird,1368645798 +170860,5267,nothing special,1140421698 +170860,5673,weird,1368645798 +170860,5995,dramatic,1368645639 +170860,6188,comedy,1368645431 +170860,7018,fantastic plot twister,1140421493 +170860,7147,story,1368645995 +170860,7153,great ending,1368645949 +170860,7160,dark,1140421654 +170860,7160,depressing,1140421654 +170860,7160,true story,1140421654 +170860,7438,storytelling,1368645469 +170860,8641,comedy,1368645431 +170860,8798,thinker,1140421566 +170860,8970,true story,1140420709 +170860,32587,storytelling,1368645469 +170860,35836,guilty pleasure; increadibly funny,1140421516 +170860,40815,classic,1140421016 +170860,40819,Johnny Cash,1140420679 +170860,40819,Oscar Nomination,1140420679 +170860,41566,brilliant,1140420730 +170860,41569,excellent remake,1140421137 +170860,41997,rated-R,1153535285 +170860,60684,visually appealing,1368645818 +170860,64839,loneliness,1368645576 +170860,77233,cannabis,1413381218 +170860,77233,conspiracy,1413381218 +170860,77233,controversial,1413381217 +170860,77233,expose,1413381218 +170860,77233,informative,1413381218 +170860,77233,provocative,1413381218 +170860,79132,cerebral,1368646019 +170860,96283,family,1427516041 +170860,96283,fun,1427516041 +170860,96283,kids like,1427516041 +170860,98445,consciousness,1427516301 +170860,98445,psychopharmacology,1427516322 +170860,105429,economics,1425177958 +170860,105429,social commentary,1425177958 +170860,105429,thought-provoking,1425177958 +170869,296,quirky,1424580256 +170869,296,stylized,1424580256 +170869,296,subculture,1424580256 +170869,593,horror,1428887121 +170869,593,r:brief violent image,1428887121 +170869,593,serial killer,1428887121 +170869,2360,Add...hyperrealistic,1288359326 +170869,2360,gutwrenching,1288359375 +170869,2360,interesting camera work,1288359356 +170869,2360,poignant,1288359412 +170869,7147,long,1288762491 +170869,7147,predictable,1288762498 +170869,7147,trite,1288762481 +170869,40591,artistic,1289197747 +170869,40591,black and white,1289197740 +170869,40591,intelligent,1289197722 +170869,40591,little slow,1289197766 +170869,40591,nice shots,1289197756 +170869,40591,pognant,1289197729 +170869,40591,quirky,1289197713 +170869,40591,transitions a bit abruptly,1289197789 +170869,90574,funny,1424581347 +170869,90574,great acting,1424581358 +170869,90574,nice story,1424581363 +170869,90574,quirky,1424581352 +170869,90574,sweet,1424581365 +170873,260,space adventure,1433218472 +170873,260,special effects,1433218498 +170889,86668,documentary,1446143441 +170904,1281,Charlie Chaplin,1442587098 +170904,1281,creative,1442587112 +170904,1281,satire,1442587089 +170904,1281,smart,1442587109 +170904,2571,dark hero,1442586333 +170904,2571,fantasy,1442586375 +170904,2571,fight scenes,1442586355 +170904,2571,interesting,1442586368 +170904,2571,sci-fi,1442586324 +170904,2571,thought-provoking,1442586350 +170904,3578,heroism,1442586444 +170904,3578,sword fight,1442586415 +170904,3578,violent,1442586436 +170904,4973,romance,1442586782 +170904,5903,thought-provoking,1442586293 +170904,8970,fantasy,1442587779 +170904,34405,fighting,1442587311 +170904,39183,bittersweet,1449848496 +170904,39183,gay,1449848469 +170904,39183,homosexuality,1449848462 +170904,39183,sexuality,1449848467 +170904,49530,dark,1442586967 +170904,49530,war,1442586935 +170904,57504,romance,1442588344 +170904,57504,time travel,1442588336 +170904,60069,creative,1442587185 +170904,60069,Future,1442587198 +170904,60069,Sci-Fi,1442587207 +170904,70286,aliens,1442587381 +170904,70286,intelligent sci-fi,1442587387 +170904,90405,creative,1442588457 +170904,115617,Animation,1442587016 +170904,115617,creative,1442587019 +170904,115617,family,1442587035 +170904,115617,friendship,1442587027 +170904,115617,funny,1442587022 +170904,115617,futuristic,1442587045 +170904,115617,sci-fi,1442587030 +170904,115617,superhero,1442587051 +170904,116797,genius,1449656171 +170904,116797,homosexuality,1449656178 +170904,116797,informatics,1449656267 +170904,116797,intelligent,1449656186 +170904,116797,mathematics,1449656270 +170904,134130,bad ass,1449656070 +170904,134130,Survival Instinct,1449656078 +170914,1269,Everyone has a crazy Aunt. But two?,1145368921 +170953,589,incredible,1147646084 +170953,2054,for kids,1147646082 +170953,2406,fun,1147646081 +170955,260,jedi,1439426840 +170955,260,Science Fiction,1439426770 +170955,260,Star Wars,1439426800 +170955,260,the force,1439426829 +171014,6341,art,1320197958 +171014,6341,philosophy,1320197958 +171014,6341,surprise ending,1320197958 +171022,104,seen more than once,1151796618 +171022,158,nice,1151796557 +171022,168,Sean Connery,1151796598 +171022,2640,super-hero,1151796635 +171022,2710,obnoxious,1151796697 +171022,7153,Oscar (Best Picture),1151796543 +171035,110,classic,1273254306 +171039,778,drug,1139937858 +171039,44694,This is interesting movie with culture and some mental specific colour,1165441394 +171060,55820,Movielens QuickPick,1205580132 +171071,1123,politics,1180756189 +171071,3831,british comedy,1180756694 +171071,3831,comedy,1180756716 +171071,3831,marijuana,1180756716 +171077,54001,fantasy,1448286373 +171088,41617,sex drugs and rnr,1139090411 +171111,194,Father son relationship,1412045316 +171111,194,Forest Whitaker,1412045292 +171111,194,Harvey Keitel,1412045297 +171111,194,multiple storylines,1412045305 +171111,296,achronological,1429754462 +171111,296,black comedy,1429754462 +171111,296,underworld,1429754462 +171111,538,coincidences,1412045358 +171111,538,good dialogue,1412045363 +171111,538,Humorous,1412045366 +171111,538,impostor,1412045349 +171111,538,thought provoking,1412045353 +171111,750,black comedy,1412045001 +171111,750,dialogue,1412045033 +171111,750,satire,1412045013 +171111,1186,great acting,1412044603 +171111,1265,Bill Murray,1412045742 +171111,1265,existentialism,1412045761 +171111,1265,surreal,1412045751 +171111,1265,time loop,1412045754 +171111,1266,great acting,1412044536 +171111,1266,gritty,1412044542 +171111,1283,atmospheric,1412045700 +171111,1283,great acting,1412045690 +171111,1283,suspense,1412045707 +171111,1394,goofy,1412045125 +171111,1546,cerebral,1412044748 +171111,1546,deadpan,1412044751 +171111,1546,experimental,1412044729 +171111,1546,non-linear,1412044733 +171111,1546,silly,1412044739 +171111,1546,witty,1412044736 +171111,2692,alternate endings,1412044802 +171111,2692,alternate reality,1412044829 +171111,2692,great soundtrack,1412044836 +171111,2692,humorous,1412044811 +171111,2692,thought-provoking,1412044807 +171111,2918,rebellion,1412044942 +171111,2997,cult film,1412045172 +171111,2997,surreal,1412045164 +171111,2997,thought-provoking,1412045186 +171111,2997,twist ending,1412045182 +171111,4226,dreamlike,1412045509 +171111,4226,memory,1412045531 +171111,4226,nonlinear,1412045523 +171111,4226,psychology,1412045519 +171111,4226,twist ending,1412045513 +171111,4995,Russell Crowe,1412046618 +171111,6953,DEPRESSING,1349233727 +171111,7139,over the top,1412218242 +171111,7139,slow,1412218245 +171111,7139,tear jerker,1412218250 +171111,8189,surrealism,1412045214 +171111,34437,Bill Murray,1341786695 +171111,34437,surreal,1341786710 +171111,34437,understated,1341786717 +171111,37733,complex characters,1341787034 +171111,37733,unpredictable,1341786992 +171111,44191,philosophy,1412044477 +171111,44191,thought-provoking,1412044470 +171111,44191,visually appealing,1412044487 +171111,48082,fanciful,1342477094 +171111,51255,action spoof,1412045616 +171111,51255,parody,1412045624 +171111,51255,surreal,1412045628 +171111,55820,great acting,1412045460 +171111,55820,twist ending,1412045457 +171111,67997,cynical,1341787156 +171111,67997,dialogue,1412044909 +171111,67997,intelligent,1341787152 +171111,69516,Bill Murray,1342479060 +171111,88405,predictable,1412046562 +171111,102903,entertaining,1416446206 +171111,109374,whimsical,1412046707 +171128,27751,Stephen King,1382991197 +171137,74458,cheap twists,1273081390 +171184,2,fantasy,1323648676 +171184,17,British,1323648639 +171184,160,Michael Crichton,1323649163 +171184,235,true story,1323649000 +171184,750,dark comedy,1323648717 +171184,904,classic,1323649050 +171184,904,imdb top 250,1323649044 +171184,1127,aliens,1323648988 +171184,1183,Oscar (Best Cinematography),1323648973 +171184,1183,Oscar (Best Picture),1323648978 +171184,1206,surreal,1323648623 +171184,1208,based on a book,1323648698 +171184,1208,surreal,1323648695 +171184,1258,psychology,1323648705 +171184,1625,psychological,1323649176 +171184,1625,twist ending,1323649172 +171184,2012,sci-fi,1323648815 +171184,2054,fantasy,1323648931 +171184,2324,comedy,1323649034 +171184,2324,World War II,1323649025 +171184,2571,post-apocalyptic,1323649445 +171184,2710,disturbing,1323648846 +171184,4878,time travel,1323649109 +171184,4963,heist,1323648773 +171184,4973,cult film,1323648799 +171184,5418,action,1323648953 +171184,5418,based on a book,1323648947 +171184,5418,espionage,1323648941 +171184,5445,dystopia,1323648657 +171184,5445,sci-fi,1323648651 +171184,6365,dystopia,1323649119 +171184,6365,post-apocalyptic,1323649116 +171184,6365,virtual reality,1323649112 +171184,7361,nonlinear,1323648894 +171184,7361,psychology,1323648906 +171184,7361,surreal,1323648909 +171198,260,Not my thing,1432549796 +171203,47,brad pitt,1429610634 +171203,47,dark,1429610631 +171203,47,great ending,1429610574 +171203,47,morgan freeman,1429610584 +171203,47,powerful ending,1429610577 +171203,47,psychology,1429610636 +171203,47,serial killer,1429610581 +171203,593,cannibalism,1429610564 +171203,593,crime,1429610607 +171203,593,fbi,1429610601 +171203,593,Hannibal Lecter,1429610591 +171203,593,Horror,1429610599 +171203,593,investigation,1429610554 +171203,593,mental illness,1429610596 +171203,593,psychological,1429610593 +171203,593,thriller,1429610610 +171203,593,violent,1429610613 +171203,8957,clever,1429610460 +171203,8957,genious,1429610428 +171211,260,action,1439778674 +171211,260,Science Fiction,1439778669 +171224,1200,sci-fi,1223058650 +171233,73208,good music,1452982658 +171233,73208,romance,1452982665 +171233,113741,parallel universe,1453668945 +171242,111551,horror,1422734185 +171242,111551,thriller,1422734185 +171242,111551,vampire,1422734185 +171242,111856,flight,1420555896 +171242,111856,horror,1420555896 +171242,111856,mystery,1420555896 +171242,113532,humorous,1425209470 +171242,113532,love,1425209470 +171242,113532,travel,1425209470 +171242,113741,parallel universe,1435942847 +171242,115680,sci-fi,1422105114 +171242,115680,thriller,1422105114 +171242,115680,time travel,1422105114 +171242,121231,suspense,1433352120 +171242,127096,High school,1431855694 +171242,130496,Action,1428165631 +171242,130496,Comedy,1428165637 +171242,130496,Drama,1428165660 +171242,130496,Nature,1428165646 +171242,130496,Suspense,1428165625 +171242,135877,folklore,1435304209 +171242,135877,horror,1435304213 +171242,135877,tourists,1435304225 +171263,924,pretentious,1422818128 +171263,924,pretentious garbage about good things,1422818128 +171263,924,pretentiousness,1422818128 +171263,120222,anti-semitic,1422821083 +171263,120222,eldritch animation,1422820670 +171263,120222,family friendly,1422820683 +171263,120222,horribly animated,1422821079 +171263,120222,nazi imagery,1422821051 +171263,120222,racist,1422821047 +171263,120222,racist stereotypes,1422821071 +171277,260,lightsabers,1439841681 +171277,260,Science Fiction,1439841671 +171279,45880,costume drama,1448495934 +171279,45880,great soundtrack,1448495947 +171279,45880,historical,1448495949 +171279,45880,royalty,1448495941 +171279,45880,stylized,1448495932 +171279,45880,Versailles,1448495943 +171279,55052,emotional,1448496293 +171279,55052,great cinematography,1448496287 +171279,55052,Keira Knightley,1448496282 +171279,55052,Period piece,1448496284 +171279,62293,18th century,1448496010 +171279,62293,BBC Films,1448496014 +171279,62293,Keira Knightley,1448496012 +171279,102407,Period piece,1448496027 +171306,110,action,1448423029 +171306,110,drama,1448423040 +171306,110,epic,1448423018 +171306,110,historical,1448423010 +171306,110,mel gibson,1448423007 +171306,110,Scotland,1448423026 +171306,110,war,1448423024 +171306,318,drama,1448422909 +171306,318,prison,1448422922 +171306,318,Tim Robbins,1448422900 +171306,524,football,1448423178 +171306,524,inspirational,1448423181 +171306,524,sports,1448423179 +171306,1704,feel-good,1448422958 +171306,1704,inspirational,1448422960 +171306,1704,Matt Damon,1448422964 +171306,1704,psychology,1448422971 +171306,3360,basketball,1448423223 +171306,3360,historical,1448423236 +171306,3360,inspirational,1448423234 +171306,3360,sports,1448423225 +171306,3578,drama,1448423074 +171306,3578,Hans Zimmer,1448423059 +171306,3578,history,1448423064 +171306,3578,Ridley Scott,1448423088 +171306,3578,Roman empire,1448423077 +171306,3578,Rome,1448423056 +171306,3578,Russell Crowe,1448423080 +171306,3578,strong score,1448423071 +171306,3916,football,1448423192 +171306,3916,inspirational,1448423199 +171306,3916,sports,1448423205 +171306,5010,heroism,1448423297 +171306,5010,military,1448423290 +171306,5010,Ridley Scott,1448423294 +171306,5010,true story,1448423306 +171306,5152,action packed,1448423648 +171306,5152,heroism,1448423651 +171306,5152,Mel Gibson,1448423644 +171306,5152,patriotic,1448423653 +171306,5152,Vietnam War,1448423643 +171306,6213,Bruce Willis,1448423630 +171306,6213,war,1448423621 +171306,8644,artificial intelligence,1448423562 +171306,8644,future,1448423576 +171306,8644,robots,1448423564 +171306,8644,Will Smith,1448423566 +171306,8961,action,1448423377 +171306,8961,animation,1448423369 +171306,8961,comedy,1448423375 +171306,8961,family,1448423373 +171306,34319,Scarlett Johansson,1448423519 +171306,34319,sci-fi,1448423521 +171306,34319,thriller,1448423518 +171306,51662,action,1448423117 +171306,51662,Gerard Butler,1448423137 +171306,51662,historical,1448423146 +171306,51662,military,1448423133 +171306,51662,stylized,1448423114 +171306,51662,war,1448423126 +171306,84152,Bradley Cooper,1448423439 +171306,84152,human potential,1448423436 +171306,84152,smart,1448423433 +171306,84152,thought provoking,1448423446 +171306,107069,Afghanistan,1448423707 +171306,107069,friendship,1448423711 +171306,107069,true story,1448423709 +171306,107069,war,1448423714 +171306,111360,intense,1448423490 +171306,111360,Scarlett Johansson,1448423475 +171306,111360,scifi,1448423479 +171306,114662,Bradley Cooper,1448423669 +171306,114662,Iraq,1448423675 +171306,114662,military,1448423681 +171306,114662,patriotic,1448423678 +171306,114662,sniper,1448423673 +171306,114662,War,1448423671 +171315,132952,police,1440332367 +171315,132952,terrorism,1440332374 +171315,135875,faminism,1440332345 +171315,135875,independence,1440332333 +171325,93952,horrifying,1426437348 +171325,93952,striking,1426437348 +171325,93952,tense,1426437348 +171325,112334,hacktivism,1453649212 +171326,260,sci-fi,1432698525 +171326,7669,period drama,1434946083 +171343,4878,time travel,1217875593 +171370,12,gothic,1162684503 +171370,13,dogsled,1211484642 +171370,15,pirates,1164498257 +171370,66,cyberpunk,1238697022 +171370,107,pirates,1164498305 +171370,110,Biography,1156963992 +171370,111,anomie,1164219368 +171370,116,Biography,1156963954 +171370,153,DC Comics,1209389652 +171370,168,King Arthur,1188336229 +171370,235,Biography,1156964033 +171370,272,Biography,1156965198 +171370,273,gothic,1162684627 +171370,329,TV,1160071065 +171370,353,gothic,1164122302 +171370,370,ZAZ,1199052944 +171370,382,gothic,1162684819 +171370,404,politics,1208023547 +171370,410,gothic,1202681756 +171370,466,ZAZ,1199052806 +171370,477,Biography,1156965673 +171370,527,Biography,1156964010 +171370,590,culture clash,1176137440 +171370,592,DC Comics,1209389390 +171370,692,plot: Seven Samurai,1222712088 +171370,833,ZAZ,1199053335 +171370,839,gothic,1164122308 +171370,923,Biography,1156964052 +171370,924,first contact,1240851489 +171370,1084,Biography,1156967283 +171370,1119,alcoholism,1157580003 +171370,1119,recovery,1199063844 +171370,1127,first contact,1240851399 +171370,1197,swashbuckler,1199061464 +171370,1198,pulp,1165197900 +171370,1204,Biography,1156965815 +171370,1204,colonialism,1199225534 +171370,1213,Biography,1156967169 +171370,1222,anti-war,1160808001 +171370,1253,first contact,1240852654 +171370,1272,Biography,1156964028 +171370,1277,swashbuckler,1199073125 +171370,1278,gothic,1162684651 +171370,1286,author:Richard Matheson,1206828224 +171370,1287,sword and sandal,1202820160 +171370,1291,pulp,1165197883 +171370,1293,colonialism,1199225028 +171370,1299,colonialism,1199224957 +171370,1299,genocide,1180302907 +171370,1299,Indochina,1199224957 +171370,1329,gothic,1162684549 +171370,1339,gothic,1162684544 +171370,1340,gothic,1162684703 +171370,1356,TV,1160071061 +171370,1371,TV,1160071077 +171370,1372,TV,1160071056 +171370,1373,TV,1160071040 +171370,1374,TV,1160071083 +171370,1375,TV,1160071026 +171370,1376,TV,1160071033 +171370,1377,DC Comics,1209389961 +171370,1442,Biography,1156967236 +171370,1476,Biography,1156967215 +171370,1544,Michael Crichton,1199157998 +171370,1562,Batman,1222555536 +171370,1562,comic book,1161354471 +171370,1562,DC Comics,1209389445 +171370,1584,first contact,1240851458 +171370,1587,pulp,1206830476 +171370,1590,first contact,1240851378 +171370,1599,DC Comics,1209390750 +171370,1606,pulp,1206830542 +171370,1619,colonialism,1199225801 +171370,1694,revival,1196009491 +171370,1730,colonialism,1199225842 +171370,1779,first contact,1240851336 +171370,1801,swashbuckler,1199055171 +171370,1827,politics,1208217781 +171370,1881,King Arthur,1188336441 +171370,1909,TV,1160071283 +171370,1932,Biography,1156965685 +171370,1960,colonialism,1199225397 +171370,1960,culture clash,1176139308 +171370,2006,swashbuckler,1199056944 +171370,2019,plot: Seven Samurai,1222711383 +171370,2027,ZAZ,1199052184 +171370,2064,politics,1208217712 +171370,2115,pulp,1165197887 +171370,2167,gothic,1161718428 +171370,2167,Marvel,1209402086 +171370,2297,author:Richard Matheson,1206828363 +171370,2297,Matheson,1198696480 +171370,2313,Biography,1156964045 +171370,2328,gothic,1161718478 +171370,2336,Biography,1156963875 +171370,2355,plot: Seven Samurai,1222711336 +171370,2373,pulp,1206830523 +171370,2393,TV,1160071069 +171370,2394,Dreamworks,1199159761 +171370,2420,culture clash,1176138815 +171370,2421,culture clash,1176138425 +171370,2442,Biography,1156965774 +171370,2502,anomie,1164219342 +171370,2527,Michael Crichton,1173657528 +171370,2571,cyberpunk,1199155594 +171370,2571,Matrix,1184273463 +171370,2571,super-hero,1155739626 +171370,2572,adaptation,1162923158 +171370,2640,DC Comics,1209390123 +171370,2641,DC Comics,1209390115 +171370,2642,DC Comics,1209390107 +171370,2643,DC Comics,1209390087 +171370,2644,gothic,1162684597 +171370,2646,gothic,1162684530 +171370,2647,gothic,1162684682 +171370,2648,gothic,1162684622 +171370,2649,gothic,1162684659 +171370,2650,gothic,1162684688 +171370,2651,gothic,1162684632 +171370,2652,gothic,1162684692 +171370,2653,gothic,1162684516 +171370,2654,gothic,1162702173 +171370,2657,audience participation,1159203777 +171370,2657,cult film,1159203759 +171370,2668,DC Comics,1209390237 +171370,2710,mockumentary,1213115777 +171370,2728,Biography,1156967317 +171370,2728,sword and sandal,1202820054 +171370,2748,pulp,1206830307 +171370,2780,gothic,1164122277 +171370,2791,ZAZ,1196132044 +171370,2841,author:Richard Matheson,1206828181 +171370,2841,Matheson,1198696350 +171370,2890,colonialism,1208219285 +171370,2959,anomie,1164219355 +171370,2971,Biography,1156967299 +171370,3015,Michael Crichton,1173656096 +171370,3032,author:Richard Matheson,1206828055 +171370,3032,Matheson,1198696195 +171370,3074,culture clash,1176137387 +171370,3169,anomie,1164219564 +171370,3174,Biography,1156967078 +171370,3213,DC Comics,1209389977 +171370,3438,superhero,1209435349 +171370,3439,superhero,1209435302 +171370,3440,superhero,1209435290 +171370,3459,gothic,1162684892 +171370,3471,first contact,1240851442 +171370,3481,recovery,1199064207 +171370,3483,Dreamworks,1199159865 +171370,3534,addiction,1158199075 +171370,3534,alcoholism,1157580052 +171370,3534,recovery,1199063795 +171370,3563,gothic,1164122313 +171370,3703,plot: Seven Samurai,1222712057 +171370,3751,Dreamworks,1198692515 +171370,3760,ZAZ,1196132628 +171370,3868,ZAZ,1196131730 +171370,3869,ZAZ,1199052860 +171370,3877,DC Comics,1209390714 +171370,3905,super-hero,1174148796 +171370,3905,superhero,1174148797 +171370,3928,gothic,1162684697 +171370,3937,Michael Crichton,1173656002 +171370,3996,wuxia,1162684108 +171370,4027,adaptation,1162923182 +171370,4030,gothic,1162684497 +171370,4082,alcoholism,1157579986 +171370,4095,Africa,1162941532 +171370,4095,colonialism,1199224796 +171370,4190,revival,1196009516 +171370,4192,sword and sandal,1202820858 +171370,4198,plot: Seven Samurai,1222711450 +171370,4216,gay,1159203651 +171370,4327,plot: Seven Samurai,1222711407 +171370,4486,alcoholism,1157649708 +171370,4486,recovery,1199063835 +171370,4518,gothic,1202681929 +171370,4555,gay,1159203629 +171370,4636,marvel,1209388142 +171370,4636,super-hero,1209388183 +171370,4636,superhero,1209388184 +171370,4638,Michael Crichton,1199158050 +171370,4652,DC Comics,1209390254 +171370,4653,swashbuckler,1199060612 +171370,4666,addiction,1157580160 +171370,4666,recovery,1199063811 +171370,4688,colonialism,1199225321 +171370,4688,culture clash,1176138556 +171370,4696,swashbuckler,1199057064 +171370,4703,Africa,1199225131 +171370,4703,colonialism,1199225131 +171370,4756,swashbuckler,1199060301 +171370,4786,author:Richard Matheson,1206828287 +171370,4800,pulp,1165199371 +171370,4846,wuxia,1162684203 +171370,4909,author:Richard Matheson,1206828142 +171370,4909,Matheson,1198696022 +171370,4966,author:Richard Matheson,1206828106 +171370,4966,Matheson,1198696000 +171370,4995,Biography,1156967258 +171370,5040,pulp,1206830498 +171370,5047,wuxia,1162684177 +171370,5053,superhero,1174149007 +171370,5064,swashbuckler,1199073296 +171370,5254,gothic,1161718459 +171370,5254,Marvel,1209402103 +171370,5357,dogsled,1211484605 +171370,5389,Dreamworks,1199159810 +171370,5500,ZAZ,1196132220 +171370,5540,sword and sandal,1202820418 +171370,5541,ZAZ,1199052800 +171370,5552,gothic,1162684664 +171370,5555,gothic,1162684824 +171370,5611,Africa,1162941709 +171370,5611,colonialism,1213044143 +171370,5611,mentor,1213044671 +171370,5649,gothic,1162684534 +171370,5764,Michael Crichton,1173656049 +171370,5944,TV,1160071073 +171370,5989,Biography,1156967268 +171370,6104,Monty Python,1164120542 +171370,6116,swashbuckler,1199060959 +171370,6125,sketch comedy,1165846653 +171370,6204,superhero,1174148947 +171370,6255,Biblical,1217903215 +171370,6365,cyberpunk,1199155694 +171370,6365,Matrix,1184273369 +171370,6365,super-hero,1155739607 +171370,6366,gothic,1162684557 +171370,6392,culture clash,1176137549 +171370,6405,pirates,1164498294 +171370,6500,gothic,1162684525 +171370,6536,Dreamworks,1199159845 +171370,6541,gothic,1238695253 +171370,6541,pulp,1206830665 +171370,6541,steampunk,1164123526 +171370,6665,gothic,1162684492 +171370,6721,wuxia,1155739906 +171370,6722,wuxia,1162684213 +171370,6723,wuxia,1162684224 +171370,6754,gothic,1161718472 +171370,6850,revival,1196009673 +171370,6856,Biography,1156965184 +171370,6913,gothic,1162684708 +171370,6934,Matrix,1184273454 +171370,6934,super-hero,1155739619 +171370,6986,sword and sandal,1202821135 +171370,6990,Michael Crichton,1199157313 +171370,7090,wuxia,1155739866 +171370,7143,colonialism,1199225639 +171370,7160,Biography,1156963915 +171370,7308,pulp,1165199378 +171370,7309,swashbuckler,1199061264 +171370,7324,culture clash,1176137946 +171370,7373,gothic,1161718444 +171370,7373,superhero,1209440002 +171370,7388,St. Francis,1184793249 +171370,7439,marvel,1209388280 +171370,7439,super-hero,1209388280 +171370,7439,superhero,1209388280 +171370,7454,gothic,1161718528 +171370,7454,steampunk,1164123967 +171370,7458,sword and sandal,1202820996 +171370,7573,Bond,1238521955 +171370,7618,Biography,1156964057 +171370,7649,TV,1160071349 +171370,7720,swashbuckler,1199060512 +171370,7757,sword and sandal,1202820609 +171370,7770,pirates,1164498299 +171370,7802,adaptation,1155739963 +171370,7810,TV,1160071342 +171370,7811,TV,1160071356 +171370,7812,TV,1160071360 +171370,7886,gothic,1162684539 +171370,7891,Matheson,1198696146 +171370,7900,gothic,1162684638 +171370,8092,gothic,1162684713 +171370,8364,Biography,1156964018 +171370,8403,sword and sandal,1202820868 +171370,8665,spy,1238696837 +171370,8666,Batman,1222698905 +171370,8666,DC Comics,1209390381 +171370,8769,swashbuckler,1199060672 +171370,8907,Dreamworks,1199159666 +171370,8958,Biography,1156964000 +171370,8960,politics,1199241356 +171370,8966,Biography,1156966947 +171370,8970,Biography,1156963862 +171370,8977,sword and sandal,1202821098 +171370,8985,gothic,1161718464 +171370,8985,Marvel,1209402063 +171370,25962,pulp,1206830255 +171370,26152,DC Comics,1209389219 +171370,26249,plot: Seven Samurai,1222712580 +171370,26479,swashbuckler,1199060844 +171370,26492,Matheson,1198696651 +171370,26495,pirates,1164498323 +171370,26865,wuxia,1155739859 +171370,27660,cyberpunk,1199155637 +171370,27660,Matrix,1184273858 +171370,30749,Africa,1162941586 +171370,30749,colonialism,1211915223 +171370,30812,Biography,1156964067 +171370,31101,Africa,1162941572 +171370,31101,anomie,1164219380 +171370,31101,colonialism,1208215941 +171370,31221,Frank Miller,1209437071 +171370,31696,DC Comics,1209401163 +171370,31696,gothic,1161718434 +171370,31878,wuxia,1162684159 +171370,31923,swashbuckler,1199060622 +171370,31934,Africa,1162941704 +171370,32587,superhero,1209436901 +171370,33158,spy,1238696612 +171370,33615,Dreamworks,1199159315 +171370,33660,Biography,1156963841 +171370,33794,DC Comics,1209389582 +171370,34153,sports,1199228943 +171370,34338,obscenity,1199228873 +171370,37382,biographical,1209434425 +171370,37729,gothic,1162702248 +171370,38600,addiction,1157649657 +171370,38600,alcoholism,1157579944 +171370,39435,swashbuckler,1199056981 +171370,40278,anti-war,1160807948 +171370,40278,Biography,1156966957 +171370,40819,Biography,1156964039 +171370,40966,Biography,1156965748 +171370,41716,quirky,1164511654 +171370,41997,cultural conflict,1176138173 +171370,42738,gothic,1238695204 +171370,44191,DC Comics,1209391111 +171370,44788,Hollywood,1199228468 +171370,44788,obscenity,1199228897 +171370,44788,politics,1199228563 +171370,45186,spy,1238696545 +171370,45431,Dreamworks,1199159246 +171370,45722,swashbuckler,1199061171 +171370,46322,wuxia,1162687216 +171370,46530,DC Comics,1209390068 +171370,48738,colonialism,1199224833 +171370,48879,Africa,1162941636 +171370,49220,mockumentary,1164121604 +171370,50804,Hannibal Lecter,1219788383 +171370,51412,Philip K. Dick,1178211185 +171370,51662,comic book,1209436702 +171370,51939,comic book,1209435219 +171370,51939,superhero,1209435247 +171370,53121,Dreamworks,1198692092 +171370,53125,swashbuckler,1199061247 +171370,54286,spy,1238696349 +171370,55768,Dreamworks,1199158742 +171370,56174,Matheson,1198696055 +171370,56607,colonialism,1211915141 +171370,56782,Upton Sinclair,1200800004 +171370,60161,first contact,1240853040 +171370,61818,gothic,1238695354 +171370,62081,spy,1238696285 +171370,62374,spy,1238696227 +171370,63113,spy,1238696115 +171370,64497,first contact,1240852662 +171370,65682,gothic,1238695522 +171370,65682,vampires,1238688809 +171378,16,Martin Scorsese,1152585757 +171378,72,Whit Stillman,1153023538 +171378,101,Wes Anderson,1152587563 +171378,235,Tim Burton,1152587496 +171378,260,George Lucas,1152581852 +171378,293,Luc Besson,1152581998 +171378,296,Quentin Tarantino,1152582018 +171378,527,Steven Spielberg,1152581323 +171378,608,Coen Brothers,1152583202 +171378,750,Stanley Kubrick,1152585624 +171378,858,Francis Ford Copolla,1152581973 +171378,858,Marlon Brando,1152581972 +171378,1089,Quentin Tarantino,1152582331 +171378,1136,Monty Python,1152583197 +171378,1196,George Lucas,1152581949 +171378,1198,classic,1152581303 +171378,1198,steven spielberg,1152581303 +171378,1206,Stanley Kubrick,1152585300 +171378,1208,Francis Ford Copolla,1152584985 +171378,1213,Martin Scorsese,1152583178 +171378,1221,Francis Ford Copolla,1152583480 +171378,1228,Martin Scorsese,1152585080 +171378,1249,Luc Besson,1152585196 +171378,1258,Stanley Kubrick,1152584950 +171378,1259,classic,1152581349 +171378,1291,Steven Spielberg,1152582121 +171378,1377,Tim Burton,1152587318 +171378,1394,Coen Brothers,1152585665 +171378,1527,Luc Besson,1152585727 +171378,1639,Kevin Smith,1152581143 +171378,1704,Gus Van Sant,1152581839 +171378,1732,Coen Brothers,1152585659 +171378,2028,Steven Spielberg,1152583616 +171378,2174,Tim Burton,1152587486 +171378,2291,Tim Burton,1152587490 +171378,2712,Stanley Kubrick,1152585628 +171378,2762,M. Night Shyamalan,1152581924 +171378,2863,Beatles,1152582564 +171378,2997,Charlie Kaufman,1152585584 +171378,2997,spike jones,1152583303 +171378,2997,surrealism,1152583293 +171378,3081,Tim Burton,1152587493 +171378,3556,Sophia Coppola,1152589630 +171378,3683,Coen Brothers,1152585183 +171378,4082,Charles Bukowski,1152588844 +171378,4515,Beatles,1152581641 +171378,4848,David Lynch,1152585847 +171378,4881,Coen Brothers,1152585650 +171378,4973,audrey tautou,1152581615 +171378,5782,Luc Besson,1152583213 +171378,5902,Charlie Kaufman,1152585159 +171378,5902,spike jones,1152585173 +171378,5902,surreal,1152585157 +171378,6552,Audrey Tautou,1152583345 +171378,6711,Sophia Coppola,1152584033 +171378,6863,Richard Linklater,1152990608 +171378,7361,Charlie Kaufman,1152583459 +171378,7361,Michel Gondry,1152583459 +171378,7419,Martin Scorsese,1152585763 +171378,7438,Quentin Tarantino,1152583200 +171378,7836,Francis Ford Coppola,1152583385 +171378,8961,Pixar,1152581982 +171378,26242,Steven Spielberg,1152583681 +171378,30793,Tim Burton,1152587488 +171378,37240,politics,1152581281 +171378,37741,Phillip Seymour Hoffman,1152581879 +171378,41285,Woody Allen,1152582066 +171411,2571,adventure,1439273348 +171411,2571,future,1439273352 +171411,2571,martial arts,1439273341 +171411,2571,philosophy,1439273338 +171411,2571,Special Effects,1439273343 +171411,3000,anime,1439273394 +171411,3000,Hayao Miyazaki,1439273412 +171411,3000,Japan,1439273406 +171411,3000,philosophical,1439273402 +171411,3000,surreal,1439273418 +171414,7959,drugs,1172614672 +171436,6187,thought-provoking,1450412007 +171436,6187,twist-ending,1450412009 +171436,39183,beautiful,1450411761 +171436,39183,bittersweet,1450411773 +171436,39183,controversial,1450411790 +171436,39183,emotional,1450411779 +171436,39183,forbidden love,1450411788 +171436,39183,gay,1450411770 +171436,39183,gay romance,1450411804 +171436,39183,homosexuality,1450411748 +171436,39183,literary adaptation,1450411767 +171436,39183,love,1450411800 +171436,39183,Love story,1450411777 +171436,39183,melancholy,1450411751 +171436,39183,Nudity (Topless - Notable),1450411782 +171436,39183,Oscar (Best Directing),1450411764 +171436,39183,Oscar (Best Picture),1450411802 +171436,39183,poignant,1450411798 +171436,39183,romance,1450411755 +171436,39183,scenic,1450411762 +171436,39183,sexuality,1450411775 +171436,39183,Tragedy,1450411758 +171436,53956,British,1450411638 +171436,53956,british comedy,1450411640 +171436,53956,brother-brother relationship,1450411650 +171436,53956,dark comedy,1450411632 +171436,53956,drugs,1450411655 +171436,53956,family,1450411657 +171436,53956,funeral,1450411652 +171436,53956,male nudity,1450411676 +171436,53956,wheelchair,1450411660 +171436,106920,intelligent,1450411871 +171436,106920,love,1450411867 +171436,106920,meaning of life,1450411863 +171436,106920,quirky,1450411874 +171436,106920,thought-provoking,1450411860 +171451,260,Internal struggle of good vs evil,1443470434 +171451,260,space exploration,1443470401 +171451,27773,pychological,1443470495 +171451,27773,twisted,1443470498 +171451,52885,beautiful animation,1443470643 +171451,52885,colorful,1443470666 +171451,52885,thought provoking,1443470658 +171470,5816,based on a book,1276615054 +171484,1913,Australia,1169765763 +171484,2730,Kubrick,1169835877 +171484,3173,Oliver Stone,1170100499 +171484,3535,Brett Easton Ellis,1169835819 +171484,3811,Australian,1170200684 +171484,4251,Australian,1169765742 +171484,4350,documentary,1184927148 +171484,4350,Peter Jackson,1184927153 +171484,4563,Australia,1173272541 +171484,5666,Brett Easton Ellis,1169835787 +171484,5669,politics,1173272176 +171484,5747,Australian,1170200718 +171484,5747,World War I,1170200724 +171484,6508,Australian,1170874338 +171484,34338,Vulgar,1170102499 +171484,38886,high squirm factor,1171650712 +171484,44761,clever,1169763850 +171510,110,historical,1444315760 +171510,110,Oscar (Best Picture),1444315770 +171510,150,based on a true story,1444315651 +171510,150,space,1444315648 +171510,260,Intense,1444233910 +171510,260,suspensful,1444233920 +171510,296,Quentin Tarantino,1444315617 +171510,954,Heartwarming,1444316446 +171510,1265,alternate reality,1444501296 +171510,1265,feel-good,1444501303 +171510,1265,time loop,1444501293 +171510,1265,time travel,1444501305 +171510,1693,historical,1444500431 +171510,1693,slavery,1444500428 +171510,2541,manipulation,1444500979 +171510,2541,Seduction,1444316356 +171510,2712,Nudity (Full Frontal),1444315431 +171510,2712,sexual,1444315421 +171510,2712,sexuality,1444315427 +171510,2712,voyeurism,1444315434 +171510,3408,based on a true story,1444316404 +171510,4848,David Lynch,1444315697 +171510,4848,Erotic,1444315712 +171510,4848,Mindfuck,1444315705 +171510,4848,Naomi Watts,1444315694 +171510,4848,sexual,1444315714 +171510,4848,twist ending,1444315715 +171510,4973,beautifully filmed,1444315840 +171510,4973,feel-good,1444315854 +171510,4973,whimsical,1444315851 +171510,5995,dramatic,1444336308 +171510,5995,Nazis,1444336298 +171510,5995,Oscar Winner,1444336311 +171510,5995,Roman Polanski,1444336301 +171510,7669,Colin Firth,1444336264 +171510,7669,comedy of manners,1444336267 +171510,60904,Bulgakov,1445776969 +171510,68157,IMDB Top 250,1444315593 +171510,68157,Nazis,1444315580 +171510,68157,Quentin Tarantino,1444315576 +171510,83134,black comedy,1444500615 +171510,83134,parody,1444500610 +171510,83134,satire,1444500613 +171510,91077,Shailene Woodley,1444316717 +171510,99007,comedic horror,1444500560 +171510,119145,gentlemanly,1444336276 +171519,968,horror,1138566853 +171519,968,zombies,1138566853 +171542,260,broing,1432489158 +171542,260,old,1432489155 +171545,866,lesbian character,1224503041 +171545,866,lesbian sex scene,1224503041 +171545,2908,transgender,1224502714 +171556,1,pixar,1445443245 +171556,50,complicated,1442481854 +171556,50,Kevin Spacey,1442481850 +171556,50,twist ending,1445985925 +171556,104,Adam Sandler,1442640427 +171556,150,Tom Hanks,1444964391 +171556,260,sci-fi,1442412830 +171556,260,Star Wars,1442412834 +171556,318,Morgan Freeman,1442782061 +171556,349,Harrison Ford,1442415073 +171556,500,Robin Williams,1444964695 +171556,588,Robin Williams,1444964815 +171556,608,Coen Brothers,1442781975 +171556,608,Steve Buscemi,1442781984 +171556,608,William H. Macy,1442781990 +171556,733,Sean Connery,1442733769 +171556,780,will smith,1442741441 +171556,1073,Gene Wilder,1442497867 +171556,1136,british comedy,1444965801 +171556,1136,John Cleese,1444965795 +171556,1136,Monty Python,1444965688 +171556,1136,Terry Gilliam,1444965804 +171556,1265,Bill Murray,1442413155 +171556,1291,Harrison Ford,1442413670 +171556,1291,Sean Connery,1442413673 +171556,1407,horror,1442640518 +171556,1407,slasher,1442640515 +171556,1704,Matt Damon,1444964767 +171556,1704,Robin Williams,1444964765 +171556,1968,Brat Pack,1442640976 +171556,2253,Robin Williams,1442869552 +171556,2278,Robert De Niro,1442413880 +171556,4448,Edward Norton,1442703195 +171556,4448,Robert De Niro,1442481446 +171556,4816,Owen Wilson,1442781524 +171556,6537,Arnold Schwarzenegger,1442414920 +171556,7502,World War II,1442495207 +171556,8957,Disturbing,1444539737 +171556,8957,Horror,1444539777 +171556,8957,torture,1444539730 +171556,55820,Coen Brothers,1442740392 +171556,55820,Javier Bardem,1442740400 +171556,56174,Will Smith,1442640849 +171556,68954,Pixar,1444369009 +171556,99114,violence,1442869503 +171556,108583,John Cleese,1444965671 +171556,122886,Star Wars,1451097304 +171556,134130,matt damon,1444965541 +171556,134853,Pixar,1444368993 +171556,135137,adam sandler,1447461663 +171556,135137,Peter Dinklage,1447461692 +171575,299,coming out,1425098446 +171575,299,gay,1425098435 +171575,299,homosexuality,1425098437 +171575,1046,adolescent gays,1425013603 +171575,1046,coming out,1425013613 +171575,1046,Gay,1425013598 +171575,1046,gay romance,1425013600 +171575,1721,catastrophe,1425017470 +171575,1721,shipwreck,1425017484 +171575,1721,survival,1425017488 +171575,2333,gay,1425270895 +171575,2333,Ian McKellen,1425135029 +171575,2607,coming of age,1425016753 +171575,2607,coming out,1425016755 +171575,2607,gay,1425016752 +171575,2607,gay romance,1425016763 +171575,2607,high school,1425016757 +171575,3094,coming out,1425016395 +171575,3094,gay,1425016383 +171575,3317,coming of age,1425145251 +171575,3317,Gay,1425145248 +171575,5903,Christian Bale,1425011565 +171575,5903,post-apocalyptic,1425011689 +171575,5903,revolution,1425011693 +171575,5903,stylized violence,1425011698 +171575,7023,Chinese,1425005247 +171575,7023,gay,1425005235 +171575,7023,gay marriage,1425005329 +171575,7023,gay romance,1425005719 +171575,7023,green card,1425005268 +171575,8973,drama,1425005187 +171575,8973,Gael Garcia Bernal,1425005041 +171575,8973,gay,1425005092 +171575,27731,anime,1425009021 +171575,33171,gay,1425006371 +171575,33171,homosexuality,1425006374 +171575,34405,sci-fi,1425353042 +171575,38499,AIDS,1425197275 +171575,38499,coming out,1425197268 +171575,38499,gay,1425197260 +171575,38499,gay romance,1425197291 +171575,38499,Patrick Wilson,1425197352 +171575,39183,coming out,1425006778 +171575,39183,gay,1425006734 +171575,39183,gay romance,1425006756 +171575,39183,homosexuality,1425006730 +171575,40870,coming of age,1425013879 +171575,40870,coming out,1425013901 +171575,40870,gay,1425013876 +171575,40870,Gay Lead Character,1425013884 +171575,40870,homosexuality,1425013878 +171575,43560,magic,1425007319 +171575,43560,Thomas Sangster,1425007368 +171575,44191,gay,1425081997 +171575,44191,philosophical,1425082045 +171575,44191,thought-provoking,1425082058 +171575,47610,Illusionism,1425010905 +171575,47610,magic,1425010872 +171575,47610,stage magic,1425010875 +171575,48780,Christian Bale,1425010063 +171575,48780,complicated,1425010072 +171575,48780,enigmatic,1425010088 +171575,48780,magic,1425010074 +171575,48780,nonlinear,1425010069 +171575,54001,Daniel Radcliffe,1425007114 +171575,54001,harry potter,1425007110 +171575,54001,magic,1425007111 +171575,54001,magic school,1425007132 +171575,54001,not true to the book,1425007121 +171575,54001,parallel universe,1425007133 +171575,59549,coming out,1425006236 +171575,59549,gay,1425006224 +171575,59549,Gay Character,1425006251 +171575,59549,Gay Lead Character,1425006240 +171575,59549,gay relationship,1425006244 +171575,59549,gay romance,1425006242 +171575,59549,homosexuality,1425006228 +171575,60397,Meryl Streep,1425006543 +171575,60397,Musical,1425006549 +171575,60684,sci-fi,1425353575 +171575,60684,superhero,1425353574 +171575,62336,aliens,1425006691 +171575,62336,anime,1425006661 +171575,62336,Not a movie,1425006681 +171575,62336,too weird,1425006652 +171575,62336,weird,1425006701 +171575,63876,gay,1425006445 +171575,63876,gay rights,1425006452 +171575,63876,glbt,1425006448 +171575,68835,coming out,1425008826 +171575,68835,gay,1425006143 +171575,68835,magic,1425006897 +171575,68835,musical,1425006562 +171575,68835,nonsense,1425006169 +171575,69844,Daniel Radcliffe,1425006991 +171575,69844,disappointing,1425006998 +171575,69844,harry potter,1425007053 +171575,69844,magic,1425007002 +171575,69844,magic school,1425007028 +171575,69844,parallel universe,1425007030 +171575,72720,gay,1425014011 +171575,72720,Gay Lead Character,1425014021 +171575,76093,cute,1425009137 +171575,76093,depth of emotion,1425009115 +171575,79132,alternate reality,1425009199 +171575,79132,clever,1425009223 +171575,79132,sci-fi,1425009219 +171575,79132,surreal,1425009207 +171575,79132,thought-provoking,1425009211 +171575,79132,visually appealing,1425009205 +171575,79139,magic,1425007262 +171575,79139,predictable,1425007265 +171575,80463,antisocial,1425005600 +171575,80463,college,1425005505 +171575,80463,computers,1425005484 +171575,80463,nerds,1425005522 +171575,80463,nerds revolution,1425005663 +171575,80463,software developers,1425005501 +171575,81834,boring,1425007081 +171575,81834,Daniel Radcliffe,1425007034 +171575,81834,Harry Potter,1425007041 +171575,81834,magic,1425007038 +171575,81834,magic school,1425007075 +171575,81834,parallel universe,1425007076 +171575,82152,alex pettyfer,1425007892 +171575,82152,vanessa hudgens,1425007929 +171575,85056,Alex Pettyfer,1425007825 +171575,85056,cliche,1425007841 +171575,85056,magic,1425007832 +171575,85056,poor acting,1425007852 +171575,85056,supernatural,1425007837 +171575,85414,parallel universe,1425006477 +171575,85414,science fiction,1425006488 +171575,86833,comedy,1424825494 +171575,86833,nonsense,1424825494 +171575,86833,weird,1424825494 +171575,88125,Daniel Radcliffe,1425006856 +171575,88125,Harry Potter,1425006867 +171575,88125,magic,1425006886 +171575,88125,magic school,1425006922 +171575,88125,parallel universe,1425006964 +171575,91199,gay,1425006285 +171575,91199,Gay Character,1425006293 +171575,91199,Gay Lead Character,1425006292 +171575,91199,gay relationship,1425006290 +171575,91199,gay romance,1425006287 +171575,92954,coming out,1425008196 +171575,92954,drama,1425008268 +171575,92954,gay,1425008203 +171575,92954,Gay Lead Character,1425008059 +171575,92954,homophobia,1425008243 +171575,92954,religion,1425008214 +171575,92954,Ryan Kelley,1425008190 +171575,94780,Kristen Stewart,1425007467 +171575,94780,magic,1425007443 +171575,94780,weak plot,1425007447 +171575,96588,Anna Kendrick,1425009325 +171575,96588,choir,1425009297 +171575,96588,music,1425009294 +171575,96588,predictable,1425009305 +171575,98809,Ian McKellen,1425007649 +171575,98809,magic,1425007512 +171575,103022,blind guy,1425440661 +171575,103022,Coming of Age,1425005880 +171575,103022,coming out,1425008836 +171575,103022,drama,1425005947 +171575,103022,Fabio Audi,1425005898 +171575,103022,Gay,1425005881 +171575,103022,gay romance,1425005920 +171575,103022,Guilherme Lobo,1425005870 +171575,104312,cliche characters,1425007728 +171575,104312,magic,1425007734 +171575,104312,poor acting,1425007742 +171575,108791,coming out,1425008806 +171575,108791,gay,1425005692 +171575,108791,Gay Character,1425005697 +171575,108791,gay romance,1425005699 +171575,108791,gay teenager,1425005725 +171575,109183,coming out,1425015319 +171575,109183,gay,1425015287 +171575,109183,gay-straight friendship,1425015317 +171575,116855,coming out,1425008816 +171575,116855,drama,1425006065 +171575,116855,Fabio Audi,1425006048 +171575,116855,gay,1425006074 +171575,116855,gay romance,1425006076 +171575,116855,Guilherme Lobo,1425006042 +171575,126548,Robbie Amell,1425017839 +171589,113218,comedy,1434075947 +171589,113218,satire,1434075947 +171589,113218,sci-fi,1434075947 +171643,2967,domestic melodrama,1198167781 +171643,31804,girlie movie,1141606315 +171643,51709,Korean horror,1202773049 +171648,48,Disney animated feature,1299600579 +171648,48,interracial romance,1299600584 +171648,48,Oscar (Best Music - Original Score),1299600590 +171648,48,Oscar (Best Music - Original Song),1299600594 +171648,253,fantasy,1297727185 +171648,253,Nudity (Full Frontal),1297727189 +171648,253,Tom Cruise,1297727166 +171648,253,vampire,1297727169 +171648,253,vampires,1297727172 +171648,364,animals,1299600384 +171648,364,animation,1299600386 +171648,364,Disney,1299600390 +171648,364,lions,1299600395 +171648,364,Oscar (Best Music - Original Song),1299600402 +171648,364,seen more than once,1299600412 +171648,364,talking animals,1299600408 +171648,588,adventure,1299600456 +171648,588,animation,1299600447 +171648,588,comedy,1299600450 +171648,588,Disney,1299600439 +171648,589,Arnold Schwarzenegger,1302764607 +171648,589,classic,1302764626 +171648,589,music,1302764614 +171648,595,18th century,1299600507 +171648,595,animation,1299600482 +171648,595,Disney,1299600484 +171648,595,fairy tale,1299600487 +171648,595,France,1299600490 +171648,595,heartwarming,1299600501 +171648,595,seen more than once,1299600493 +171648,783,Disney animated feature,1299600314 +171648,783,lust,1299600321 +171648,783,Paris,1299600324 +171648,783,seduction,1299600326 +171648,1029,animals,1299600803 +171648,1029,Disney,1299600791 +171648,1029,mother-son relationship,1299600818 +171648,1029,sad. again with the dying animated animals,1299600794 +171648,1339,based on a book,1297727268 +171648,1339,erotic,1297727260 +171648,1339,Nudity (Topless),1297727263 +171648,1339,vampire,1297727273 +171648,2018,animals,1299600847 +171648,2018,classic,1299600867 +171648,2018,cute,1299600872 +171648,2018,Disney,1299600845 +171648,2018,sad,1299600874 +171648,2018,sad. again with the dying animated animals,1299600878 +171648,2018,tears,1299600880 +171648,2081,animation,1299600526 +171648,2081,Disney,1299600528 +171648,2081,Excellent soundtrack,1299600531 +171648,2081,guilty pleasure,1299600537 +171648,2081,mermaid,1299600543 +171648,2081,Oscar (Best Music - Original Song),1299600545 +171648,2081,talking animals,1299600547 +171648,2687,2D Disney Animation,1299600360 +171648,6889,animals,1299600680 +171648,6889,disney,1299600683 +171648,6889,moose,1299600696 +171648,41571,cinematography,1312890279 +171648,41571,courtesan,1312890201 +171648,41571,geisha,1312890213 +171648,41571,history,1312890289 +171648,41571,romance,1312890234 +171648,41571,slavery,1312890231 +171648,41571,wwii,1312890223 +171648,42015,funny,1297727379 +171648,42015,Heath Ledger,1297727382 +171648,53519,Kick-Butt Women,1311869272 +171648,53519,slow paced,1311869296 +171648,53519,stylized,1311869281 +171648,58293,bad for history-sense,1318179832 +171648,72737,1920s,1300369798 +171648,72737,2D animation,1300369800 +171648,72737,Disney,1300369807 +171648,72737,New Orleans,1300369794 +171648,73321,beautiful scenery,1311869383 +171648,73321,Bible,1311869355 +171648,73321,cannibalism,1311869380 +171648,73321,Christianity,1311869353 +171648,73321,thought-provoking,1311869367 +171648,79057,audience intelligence underestimated,1301907562 +171648,79057,bad science,1301907569 +171648,79057,Danny Trejo,1301907574 +171648,79879,blood,1296987929 +171648,79879,death/fatality,1296987939 +171648,79879,genital mutilation,1296987936 +171648,79879,tits,1296987947 +171684,260,boring,1438967924 +171684,260,simplific,1438967916 +171709,111921,emotional,1447419053 +171720,3555,WWII,1144858691 +171720,33644,Stay out!,1137586717 +171758,1255,aliens,1378661547 +171758,1255,cult film,1378661545 +171758,1255,Peter Jackson,1378661588 +171758,96488,Music,1381416170 +171758,96488,Sixto Rodriguez,1381416167 +171758,96488,soundtrack,1381416169 +171758,103249,Brad Pitt,1378631352 +171758,103249,camera work,1378631327 +171758,103249,CGI instead of real tricks,1378631417 +171758,103249,chase scenes,1378631307 +171758,103249,child actors,1378631386 +171758,103249,plot holes,1378631447 +171758,103249,zombies,1378631429 +171758,103253,science fiction,1381069253 +171758,103253,shallow characters,1381069231 +171758,103253,visually stunning,1381069237 +171758,104303,computers,1379538485 +171758,104303,history,1379538498 +171776,356,every fans must see,1429131189 +171776,356,great acting,1429131189 +171776,356,touching,1429131189 +171788,7293,drew,1140488897 +171803,229,Roman Polanski,1342316102 +171803,347,Roman Polanski,1342316679 +171803,1252,Roman Polanski,1342316769 +171803,2160,Roman Polanski,1342316641 +171803,3075,Roman Polanski,1342316290 +171803,3355,Roman Polanski,1342317032 +171803,4506,Roman Polanski,1342316895 +171803,5995,Roman Polanski,1342317122 +171803,6530,Roman Polanski,1342317199 +171803,6858,Roman Polanski,1342316260 +171803,7069,Roman Polanski,1342316994 +171803,8923,Roman Polanski,1342317244 +171803,8928,Roman Polanski,1342316180 +171803,37736,Roman Polanski,1342317075 +171803,42900,Roman Polanski,1342316351 +171803,58850,Roman Polanski,1342317144 +171803,70927,Roman Polanski,1342317354 +171803,74545,Roman Polanski,1342316954 +171803,90430,Roman Polanski,1342316022 +171838,121231,eerie,1436920551 +171838,121231,friendship,1436920551 +171838,121231,teenagers,1436920551 +171848,6902,mindfuck,1209445143 +171848,6902,road trip,1209445052 +171908,1197,fantasy,1247161922 +171939,858,Great movie,1444225121 +171939,1193,Great movie,1444225042 +171939,138208,"Stupid, self-indulgent",1444225088 +171953,1100,good dialogue,1187183975 +171953,1589,good soundtrack,1187183987 +171953,2423,Good action,1187183997 +171953,2431,good,1187183961 +171953,2600,Good Romantic Comedies,1187184031 +171957,59900,Adam Sandler,1219062906 +171961,2959,atmospheric,1437245072 +171961,2959,Edward Norton,1437245075 +171961,2959,mindfuck,1437245058 +171961,2959,philosophy,1437245048 +171961,2959,psychology,1437245068 +171961,2959,surreal,1437245053 +171961,5666,drugs,1437244999 +171961,7143,Honor,1437244954 +171961,27773,revenge,1437245127 +171961,27773,surreal,1437245160 +171961,27773,twist ending,1437245114 +171989,58998,Nudity (Full Frontal - Notable),1234121473 +171991,139415,watchlist,1451034582 +171992,63312,boring,1422553064 +171992,109487,family,1422548863 +171992,109487,sci-fi,1422548863 +171992,109487,space,1422548863 +172001,318,drama,1429632371 +172001,318,moral ambiguity,1429632371 +172001,318,prison escape,1429632371 +172001,2571,action,1429632285 +172001,73017,Guy Ritchie,1429632419 +172001,73017,Mystery,1429632408 +172002,497,Shakespeare,1152880276 +172002,45028,minnesota,1152880346 +172009,260,cult classic,1432686620 +172017,260,childish,1452188404 +172017,260,sci-fi,1452188411 +172017,260,too long,1452188422 +172017,1196,childish,1452188508 +172017,1196,sci-fi,1452188500 +172017,1196,too long,1452188514 +172017,1210,childish,1452188472 +172017,1210,sci-fi,1452188464 +172017,1210,too long,1452188484 +172017,4973,fairy tale,1452187991 +172017,4973,French,1452187959 +172017,32587,Action,1452188170 +172017,32587,atmospheric,1452188173 +172017,32587,comic book,1452188175 +172017,32587,crime,1452188182 +172017,32587,multiple storylines,1452188166 +172017,32587,narrated,1452188187 +172017,32587,stylized,1452188168 +172017,55820,atmospheric,1452183697 +172017,55820,great acting,1452183702 +172017,55820,hitman,1452183724 +172017,55820,suspense,1452183704 +172017,55820,tension,1452183710 +172017,68157,Brad Pitt,1452184367 +172017,68157,great acting,1452184390 +172017,68157,Nazis,1452184423 +172017,68157,Quentin Tarantino,1452184365 +172017,68157,visually appealing,1452184412 +172017,68157,World War II,1452184372 +172017,91529,action,1452188298 +172017,91529,Batman,1452188295 +172017,91529,long,1452188312 +172017,91529,Predictable,1452188329 +172017,91529,samurai,1452188289 +172017,91529,trilogy,1452188269 +172017,94864,Charlize Theron,1452102616 +172017,94864,Ridley Scott,1452102658 +172017,94864,scifi,1452102606 +172017,94864,space,1452102646 +172017,94864,technology,1452102666 +172017,95449,bad acting,1452187469 +172017,95449,superficial,1452187497 +172017,98154,history,1452184131 +172017,99114,action,1452184333 +172017,99114,Leonardo DiCaprio,1452184322 +172017,99114,Quentin Tarantino,1452184311 +172017,108190,bad writing,1452184923 +172017,108190,based on a kids book,1452184920 +172017,109487,artificial intelligence,1452186817 +172017,109487,philosophical issues,1452186821 +172017,109487,sci-fi,1452186803 +172017,109487,space,1452186808 +172017,109487,spaceships,1452186869 +172017,109487,spectacle,1452186856 +172017,109487,time travel,1452186807 +172017,109487,visually appealing,1452186859 +172017,111781,Action,1452185112 +172017,111781,Tom Cruise,1452185113 +172017,112852,childish,1452187242 +172017,112852,overrated,1452187239 +172017,112852,underdeveloped characters,1452187236 +172017,113345,awful script,1452187316 +172017,113345,childish,1452187358 +172017,113573,comic book,1452188132 +172017,113573,crime,1452188145 +172017,113573,great photograpy,1452188125 +172017,113573,monologue,1452188129 +172017,113573,narative,1452188116 +172017,113573,stylized,1452188148 +172017,114180,teen,1452184819 +172017,114180,weak plot,1452184822 +172017,114935,mindfuck,1452184979 +172017,114935,sci-fi,1452184951 +172017,114935,time travel,1452184946 +172017,115713,artificial intelligence,1452184642 +172017,115713,Man Versus Machine,1452184670 +172017,115713,philosophical,1452184651 +172017,115713,sci-fi,1452184644 +172017,115713,Surreal,1452184680 +172017,115713,visual effects,1452184661 +172017,117895,teen,1452185024 +172017,117895,zombies,1452185022 +172017,122886,absurd,1452190198 +172017,122886,childish,1452190213 +172017,122886,Exploited,1452190199 +172017,122886,Plot Recycling,1452190204 +172017,122886,too long,1452190197 +172017,126599,comedy,1452519286 +172017,126599,Couple Relations,1452519296 +172017,126599,Multiple Stories,1452519285 +172017,126599,weird,1452519333 +172017,127108,story,1452184561 +172017,136020,spy,1452184740 +172017,139644,atmospheric,1452183427 +172017,139644,tension,1452183438 +172017,143385,Cold War,1452184106 +172017,145839,true story,1452519415 +172017,145839,Will Smith,1452519383 +172017,149354,Funny,1452523169 +172017,149354,Silly,1452523213 +172038,47,police,1170855941 +172038,47,Psychological drama,1170855941 +172038,318,prison escape,1170855840 +172038,527,holocast,1170855699 +172038,2019,Kurosawa,1170855859 +172038,3030,Akira Kurosawa,1198711361 +172038,3030,Toshiro Mifune,1198711394 +172038,3735,police,1170855880 +172038,6817,adventure,1198711423 +172038,6817,Biography,1198711423 +172038,6817,Clint Eastwood,1198711423 +172038,27904,Philip K. Dick,1170855961 +172056,33389,dark,1454029759 +172056,33389,emotional,1454029760 +172056,120574,emotional,1454029801 +172056,130085,emotional,1454029353 +172056,130085,inspiring,1454029351 +172056,135506,faith & spirituality,1454029722 +172056,136658,romantic,1454029534 +172056,144654,family-friendly,1454029652 +172056,144654,inspiring,1454029655 +172056,151357,emotional,1454029622 +172056,151357,inspiring,1454029620 +172056,151701,documentary,1454031135 +172079,108729,mindfuck,1431947185 +172079,108729,psychological,1431947185 +172079,108729,thriller,1431947185 +172082,381,touching,1175773635 +172082,587,Patrick Swayze,1177154996 +172082,587,Unchained Melody,1177155013 +172082,587,Whoopie Goldberg,1177154996 +172082,920,love,1187809935 +172082,920,Vivian Leigh,1187809935 +172082,920,War,1187809935 +172082,1247,Simon & Garfunkel soundtrack,1177155065 +172082,1619,Brad Pitt,1183642870 +172082,1958,Jack Nicholson,1187010405 +172082,1958,Shirley MacLaine,1187010406 +172082,1958,tense,1187010406 +172082,5970,touching,1175774077 +172082,57843,brutal,1328524927 +172082,57843,brutal violence,1328524927 +172082,57843,brutality,1328524927 +172082,57843,violence,1328524927 +172082,57843,Vulgar,1328524927 +172082,72998,too long,1262369770 +172097,260,exciting,1432647434 +172112,2324,emotional,1433035754 +172112,2324,sad but good,1433035767 +172112,2329,social commentary,1433035861 +172112,2329,thought-provoking,1433035853 +172114,260,classic sci-fi,1439772142 +172114,260,quotable,1439772173 +172130,56060,Nudity (Topless),1242058067 +172130,63082,nonlinear,1242057987 +172130,63859,comic sidekick,1242057953 +172130,64622,Nudity (Full Frontal - Notable),1242058017 +172130,65088,Adam Sandler,1242057942 +172130,65088,Guy Pearce,1242057956 +172130,65088,Keri Russell,1242057958 +172171,4744,horror,1206456645 +172171,4744,monster,1206456642 +172186,553,kinda slow,1140335332 +172186,7263,Great olympic story,1140335303 +172232,260,sci-fi,1431756660 +172232,260,Star Wars,1431756679 +172249,260,father-son relationship,1432747980 +172249,260,Good for the family,1432747963 +172253,50,funny,1325938179 +172253,50,Kevin Spacey,1325938157 +172253,50,suspense,1325938196 +172253,50,thriller,1325938200 +172253,50,twist ending,1325938331 +172253,82,feminism,1327420444 +172253,82,intellectual,1327420451 +172253,82,lesbian,1327420461 +172253,82,mathematics,1327420485 +172253,82,Nudity (Full Frontal),1327420478 +172253,82,strong woman,1327420504 +172253,94,humorous,1356628028 +172253,94,Natalie Portman,1356628009 +172253,94,violence,1356628054 +172253,110,action,1326061244 +172253,110,drama,1326061232 +172253,110,medieval,1326061242 +172253,110,war,1326061258 +172253,163,action,1357419876 +172253,163,Mexico,1357419885 +172253,163,Nudity (Topless),1357419905 +172253,163,Salma Hayek,1357419907 +172253,163,thriller,1357419911 +172253,163,violence,1357419914 +172253,266,Brad Pitt,1322938095 +172253,266,Dramatic,1322938097 +172253,266,emotional,1322938100 +172253,266,intense,1322938547 +172253,266,Julia Ormond,1322938106 +172253,266,Romance,1322938126 +172253,266,war,1322938131 +172253,318,drama,1322936913 +172253,318,friendship,1322936923 +172253,318,inspirational,1322936920 +172253,318,intense,1322938741 +172253,318,Morgan Freeman,1322936937 +172253,318,sexuality,1322937041 +172253,318,thought-provoking,1322937014 +172253,318,Tim Robbins,1322936954 +172253,342,Australia,1365973078 +172253,342,comedy,1365973093 +172253,342,overrated,1365973073 +172253,342,quirky,1365973195 +172253,342,sexuality,1365973214 +172253,342,weddings,1365973163 +172253,356,bittersweet,1326061470 +172253,356,comedy,1322831040 +172253,356,humorous,1322831017 +172253,356,sexuality,1322831021 +172253,356,surprising,1322831016 +172253,356,vietnam war,1326061474 +172253,377,Action,1322935370 +172253,377,Don't get dead,1325325764 +172253,377,exciting,1325325768 +172253,377,intense,1322938718 +172253,377,Keanu Reeves,1325325785 +172253,377,romantic,1322935447 +172253,377,Sandra Bullock,1325325783 +172253,497,beautiful,1356279267 +172253,497,comedy,1356279352 +172253,497,Denzel Washington,1356279270 +172253,497,Emma Thompson,1356279273 +172253,497,feel good movie,1356279285 +172253,497,great movie,1356279293 +172253,497,Kate Beckinsale,1356279313 +172253,497,Keanu Reeves,1356279298 +172253,497,romance,1356279365 +172253,497,Shakespeare,1356279331 +172253,497,witty,1356279342 +172253,527,history,1326061566 +172253,527,Holocaust,1326061563 +172253,527,intense,1326061594 +172253,527,Nazis,1326061559 +172253,527,Steven Spielberg,1326061552 +172253,527,thought-provoking,1326061637 +172253,527,true story,1326061572 +172253,527,World War II,1326061549 +172253,539,Comedy,1322936674 +172253,539,Meg Ryan,1322936728 +172253,539,Romance,1322936724 +172253,539,romantic comedy,1322936782 +172253,539,serendipity,1322936718 +172253,539,Tom Hanks,1322936730 +172253,593,cannibalism,1326061696 +172253,593,crime,1326061700 +172253,593,disturbing,1326061822 +172253,593,drama,1326061704 +172253,593,investigation,1326061710 +172253,593,psychology,1326061740 +172253,593,serial killer,1326061743 +172253,593,suspense,1326061745 +172253,802,clarivoyance,1322937347 +172253,802,intense,1322938604 +172253,802,interesting concept,1322937365 +172253,802,thought-provoking,1322937414 +172253,858,drama,1326985210 +172253,858,Mafia,1326985113 +172253,858,organized crime,1326985125 +172253,858,violence,1326985202 +172253,924,annoying,1324407456 +172253,924,artificial intelligence,1323593901 +172253,924,boring,1323594082 +172253,924,future,1323593926 +172253,924,music,1323594056 +172253,924,overrated,1324407465 +172253,928,adultery,1355677009 +172253,928,Alfred Hitchcock,1355677002 +172253,928,atmospheric,1355677015 +172253,928,Beautiful Woman,1355677126 +172253,928,Dark Comedy,1355677030 +172253,928,gloomy,1355677099 +172253,928,suspense,1355677108 +172253,946,comedy,1327094686 +172253,946,World War II,1327094679 +172253,947,comedy,1360448251 +172253,947,ECCENTRIC FAMILIES,1360448289 +172253,947,romance,1360448270 +172253,1061,child abuse,1323198768 +172253,1061,emotional,1323198779 +172253,1061,revenge,1323198787 +172253,1061,thought-provoking,1323198806 +172253,1097,aliens,1325325572 +172253,1097,children,1322934565 +172253,1097,comedy,1325325558 +172253,1097,emotional,1322934570 +172253,1097,family,1325325578 +172253,1097,fantasy,1322934576 +172253,1097,intense,1322938634 +172253,1097,sad,1322938673 +172253,1097,Steven Spielberg,1325325631 +172253,1197,action,1358455497 +172253,1197,comedy,1358455503 +172253,1197,fantasy,1358455492 +172253,1197,quirky,1358455490 +172253,1197,Robin Wright,1358455554 +172253,1197,romance,1358455521 +172253,1197,sword fight,1358455524 +172253,1197,witty,1358455537 +172253,1234,comed,1322935347 +172253,1234,heist,1322935351 +172253,1240,action,1322935258 +172253,1240,artificial intelligence,1322935266 +172253,1240,sci-fi,1322935262 +172253,1240,time travel,1322935260 +172253,1307,Billy Crystal,1354989905 +172253,1307,Chicago,1354989908 +172253,1307,chick flick,1354989909 +172253,1307,friendship,1354989917 +172253,1307,fun,1354989919 +172253,1307,Good Romantic Comedies,1354989921 +172253,1307,meg ryan,1354989939 +172253,1307,romance,1354989974 +172253,1307,romantic comedy,1354989977 +172253,1407,funny,1325325924 +172253,1407,horror,1325325921 +172253,1407,Neve Campbell,1325325915 +172253,1453,comedy,1359495104 +172253,1453,Fran Drescher,1359495139 +172253,1453,romance,1359495156 +172253,1673,drugs,1323079150 +172253,1673,homosexuality,1323079204 +172253,1673,Nudity (Full Frontal),1323079181 +172253,1673,Porno Industry,1323079187 +172253,1673,pornography,1323079190 +172253,1680,alternate reality,1355175747 +172253,1680,alternate universe,1355175753 +172253,1680,British,1355175756 +172253,1680,chick flick,1355175759 +172253,1680,fun,1355175764 +172253,1680,Gwyneth Paltrow,1355175771 +172253,1680,London,1355175784 +172253,1680,Male Female Relationship,1355175795 +172253,1680,male-female relationship,1355175798 +172253,1680,nonlinear,1355175802 +172253,1680,subway,1355175817 +172253,1680,trains,1355175818 +172253,1721,action,1326061887 +172253,1721,based on a true story,1326061891 +172253,1721,disaster,1326061897 +172253,1721,Kate Winslet,1326061934 +172253,1721,Leonardo DiCaprio,1326061903 +172253,1721,love story,1326061905 +172253,1721,romance,1326061908 +172253,1726,Nudity (Topless),1327260816 +172253,1726,Post apocalyptic,1327260850 +172253,1777,comedy,1323078984 +172253,1777,Drew Barrymore,1323078960 +172253,1777,funny,1323078979 +172253,1777,homosexuality,1323079019 +172253,1810,campaign manager,1354659565 +172253,1810,courtroom,1354659570 +172253,1810,disillusionment,1354659577 +172253,1810,Emma Thompson,1354659581 +172253,1810,EXTRAMARITAL AFFAIRS,1354659587 +172253,1810,politics,1354659602 +172253,1810,propaganda,1354659617 +172253,1810,scandal,1354659610 +172253,1810,suicide,1354659607 +172253,1820,Madeleine Stowe,1355869359 +172253,1820,romance,1355869386 +172253,1820,Slow,1355869334 +172253,1900,brother sister relationship,1326442974 +172253,1900,competition,1326442979 +172253,1900,disappointing,1326443039 +172253,1900,overrated,1326443031 +172253,1900,slow,1326443017 +172253,2161,Adventure,1322937807 +172253,2161,Atreyu,1322937811 +172253,2161,childhood classic first seen in adulthood,1322937798 +172253,2161,dragon,1322937827 +172253,2161,Fantasy,1322937832 +172253,2161,intense,1322938586 +172253,2324,bittersweet,1326061975 +172253,2324,comedy,1326061977 +172253,2324,emotional,1326061979 +172253,2324,father-son relationship,1326061984 +172253,2324,Holocaust,1326061990 +172253,2324,optimism,1326061996 +172253,2420,comedy,1325326269 +172253,2420,good,1325326288 +172253,2420,inspirational,1325326293 +172253,2420,martial arts,1325326298 +172253,2420,violence,1325326322 +172253,2424,comedy,1322934640 +172253,2424,Comedy Romance,1322934650 +172253,2424,happy ending,1322934762 +172253,2424,Meg Ryan,1322934692 +172253,2424,sentimental,1322934753 +172253,2424,Tom Hanks,1322934743 +172253,2469,drama,1325589194 +172253,2469,slow,1325589187 +172253,2571,Action,1322934384 +172253,2571,alternate reality,1325325475 +172253,2571,atmospheric,1325325483 +172253,2571,intense,1322938622 +172253,2571,martial arts,1325325514 +172253,2571,sci-fi,1322934443 +172253,2571,surprising,1322934523 +172253,2571,thought-provoking,1322934482 +172253,2724,Good Romantic Comedies,1323512686 +172253,2763,comedy,1322935179 +172253,2805,comedy,1326837873 +172253,2805,gangsters,1326837866 +172253,2843,drugs,1326228191 +172253,2843,gambling,1326228203 +172253,2843,HIDE THE DEAD BODY,1326228215 +172253,2843,humorous,1326228222 +172253,2843,music,1326228248 +172253,2843,NOTHING GOES RIGHT,1326228257 +172253,2843,wedding,1326228270 +172253,2935,Barbara Stanwyck,1326835007 +172253,2935,funny,1326835031 +172253,2935,gambling,1326835019 +172253,2935,romance,1326835041 +172253,2997,comedy,1323075266 +172253,2997,sexuality,1323075276 +172253,3022,American Civil War,1326625018 +172253,3022,black and white,1326625016 +172253,3022,comedy,1326625036 +172253,3022,overrated,1327184122 +172253,3088,comedy,1326536207 +172253,3088,imaginary friend,1326536173 +172253,3088,magic,1326536182 +172253,3088,psychiatry,1326536192 +172253,3088,sweet,1326536194 +172253,3307,bittersweet,1356252152 +172253,3307,blindness,1356252156 +172253,3307,Charlie Chaplin,1356252130 +172253,3307,comedy,1356252165 +172253,3307,must see,1356252172 +172253,3307,romance,1356252175 +172253,3307,silent movie,1356252184 +172253,3307,slapstick,1356252190 +172253,3307,sweet,1356252193 +172253,3360,basketball,1326749240 +172253,3360,inspirational,1326749248 +172253,3360,sports competition,1326749258 +172253,3462,anti-authoritarian,1326649257 +172253,3462,assembly line,1326649262 +172253,3462,black and white,1326649281 +172253,3462,Charlie Chaplin,1326649295 +172253,3462,comedy,1326649378 +172253,3462,factory,1326649300 +172253,3462,hilarious,1326649446 +172253,3462,working class,1326649357 +172253,3462,workplace,1326649360 +172253,3622,childish,1323210680 +172253,3622,comedy,1323210650 +172253,3702,original plot,1323512507 +172253,3702,violent,1323512489 +172253,3705,action,1355262352 +172253,3705,comedy,1355262341 +172253,3705,crime,1355262380 +172253,3705,Goldie Hawn,1355262311 +172253,3705,Mel Gibson,1355262314 +172253,3705,Nudity (Rear),1355262323 +172253,3705,persecution,1355262365 +172253,3769,comedy,1325161811 +172253,3769,slow,1325161874 +172253,3969,alcoholism,1322937449 +172253,3969,change the world,1322937458 +172253,3969,child acting,1325353297 +172253,3969,comedy,1325353324 +172253,3969,domestic violence,1322937470 +172253,3969,drama,1322937475 +172253,3969,haley joel osment,1325353316 +172253,3969,idealistic,1322937496 +172253,3969,inspirational,1322937500 +172253,3969,intense,1322938595 +172253,3969,kevin spacey,1322937614 +172253,3969,sad,1322937662 +172253,3969,socially relevant,1322937670 +172253,3969,thought-provoking,1322937683 +172253,3996,Action,1326062073 +172253,3996,atmospheric,1326062077 +172253,3996,martial arts,1326062095 +172253,3996,romance,1326062121 +172253,3996,sword fight,1326062118 +172253,4002,comedy,1322937146 +172253,4002,language,1322937171 +172253,4002,sexual humor,1322937186 +172253,4002,Steve Martin,1322937200 +172253,4023,alternate reality,1355500765 +172253,4023,alternative life,1355500771 +172253,4023,comedy,1355500825 +172253,4023,new jersey,1355500739 +172253,4023,New York City,1355500738 +172253,4023,Nicolas Cage,1355500803 +172253,4023,plot,1355500809 +172253,4023,romance,1355500814 +172253,4023,Téa Leoni,1355500716 +172253,4167,humorous,1345151201 +172253,4167,Nudity (Topless),1345151177 +172253,4167,suspense,1345151211 +172253,4167,violence,1345151190 +172253,4183,Adrienne Shelly,1354830714 +172253,4183,comedy,1354830721 +172253,4183,off-beat comedy,1354830709 +172253,4262,drama,1323197738 +172253,4262,drug abuse,1323197741 +172253,4262,drugs,1323197743 +172253,4262,language,1323197778 +172253,4262,Nudity (Topless - Brief),1323197758 +172253,4333,comedy,1325161755 +172253,4381,closeted homosexual,1358542067 +172253,4381,comedy,1358542069 +172253,4381,French,1358542070 +172253,4603,comedy,1326314204 +172253,4603,funny,1326314212 +172253,4603,Paulina Porizkova,1326314282 +172253,4823,intense,1322938771 +172253,4823,john cusack,1322937101 +172253,4823,Kate Beckinsale,1322937096 +172253,4823,Romantic Comedy,1322937067 +172253,4823,serendipity,1322937128 +172253,4823,wedding,1322937080 +172253,4867,comedy,1325161924 +172253,4867,drama,1325161928 +172253,4867,drugs,1325161911 +172253,4867,slow,1325161941 +172253,4874,comedy,1322990763 +172253,4874,fantasy,1322990776 +172253,4874,sci-fi,1322990766 +172253,4957,jokes,1326747940 +172253,4957,Nudity (Topless),1326747910 +172253,4957,swearing,1326747960 +172253,4957,violence,1326747898 +172253,4973,comedy,1326062214 +172253,4973,feel-good,1326062218 +172253,4973,inspirational,1326062233 +172253,4976,Alzheimer's disease,1356037743 +172253,4976,depressing,1356036986 +172253,4976,disability,1356036902 +172253,4976,Iris Murdoch,1356036911 +172253,4976,Kate Winslet,1356036973 +172253,4976,Nudity (Full Frontal - Notable),1356036936 +172253,4976,Nudity (Full Frontal),1356036947 +172253,4976,Nudity (Topless - Notable),1356036949 +172253,4976,Slow,1356036977 +172253,4976,strong woman,1356036955 +172253,5500,comedy,1357594935 +172253,5500,funny,1357594938 +172253,5500,Lucy Gutteridge,1357594976 +172253,5500,Nazis,1357594941 +172253,5500,silly fun,1357594948 +172253,5516,Emmanuelle Devos,1356644824 +172253,5516,good thriller,1356644804 +172253,5516,sensual,1356644850 +172253,5516,surprisingly powerful,1356644858 +172253,5618,adventure,1326062301 +172253,5618,alternate reality,1326062309 +172253,5618,animation,1326062303 +172253,5618,children,1326062323 +172253,5618,dragons,1326062326 +172253,5618,fantasy,1326062335 +172253,5799,Jill Haworth,1356805779 +172253,5799,Paul Newman,1356805782 +172253,5799,slow,1356805805 +172253,5799,suspense,1356805801 +172253,5799,too long,1356805816 +172253,5802,comedy,1325194014 +172253,5802,Peter Sellers,1325194055 +172253,5802,teenagers,1325194058 +172253,5802,Tippy Walker,1325194049 +172253,6135,slow,1327608951 +172253,6155,chick flick,1325326668 +172253,6155,comedy,1325326674 +172253,6155,funny,1325326689 +172253,6155,Kate Hudson,1325326660 +172253,6182,comedy,1355072549 +172253,6182,Doris Day,1355072539 +172253,6183,comedy,1325326054 +172253,6183,Doris Day,1325326014 +172253,6183,Rock Hudson,1325326011 +172253,6183,Romance,1325326003 +172253,6183,seduction,1325326041 +172253,6183,sexuality,1325326064 +172253,6187,Nudity (Full Frontal - Brief),1325162851 +172253,6187,suicide,1325162860 +172253,6187,thought-provoking,1325162079 +172253,6301,bullying,1358632092 +172253,6301,disturbing,1358631965 +172253,6301,drinking,1358631970 +172253,6301,Dustin Hoffman,1358631975 +172253,6301,england,1358631978 +172253,6301,rape,1358632017 +172253,6301,revenge,1358632023 +172253,6301,Sexualized violence,1358631952 +172253,6301,small town,1358632028 +172253,6301,tense,1358632029 +172253,6301,violence,1358632059 +172253,6308,comedy,1322990575 +172253,6308,romance,1322990580 +172253,6365,action,1325326137 +172253,6365,alternate reality,1325326140 +172253,6365,car chase,1325326146 +172253,6365,Keanu Reeves,1325326154 +172253,6365,martial arts,1325326162 +172253,6365,Monica Bellucci,1325326170 +172253,6377,animals,1326062398 +172253,6377,animation,1326062395 +172253,6377,children,1326062400 +172253,6377,Comedy,1326062403 +172253,6377,Disney,1326062405 +172253,6377,father-son relationship,1326062413 +172253,6377,funny,1326062421 +172253,6377,ocean,1326062431 +172253,6377,talking animals,1326062454 +172253,6377,underwater,1326062457 +172253,6378,action,1322990839 +172253,6378,remake,1325326400 +172253,6378,robbery,1325326405 +172253,6378,twists & turns,1322990857 +172253,6533,Barbara Striesand,1354990011 +172253,6533,Screwball Comedy,1354990063 +172253,6650,witty,1323363494 +172253,6650,wry,1323363505 +172253,6664,Arnold Schwarzenegger,1326748820 +172253,6664,jokes,1326748817 +172253,6664,military,1326748846 +172253,6664,RACE AGAINST TIME,1326748829 +172253,6765,comedy,1326560174 +172253,6765,Diane Lane,1326560209 +172253,6765,divorce,1326560050 +172253,6765,friendship,1326560061 +172253,6765,house renovations,1326560109 +172253,6765,Italy,1326560120 +172253,6765,lesbian,1326560123 +172253,6765,not just about romance,1326560131 +172253,6765,romance,1326560147 +172253,6765,searching for love,1326560155 +172253,6765,Strong Women,1326560159 +172253,6870,Clint Eastwood,1355437071 +172253,6870,crime,1355437076 +172253,6870,Dark,1355437080 +172253,6870,Drama,1355437082 +172253,6870,family,1355437085 +172253,6870,friendship,1355437088 +172253,6870,mystery,1355437093 +172253,6870,Police,1355437101 +172253,6870,revenge,1355437103 +172253,6870,Sean Penn,1355437105 +172253,6870,thriller,1355437108 +172253,6870,twist ending,1355437110 +172253,6870,violence,1355437127 +172253,6870,working class,1355437114 +172253,7101,Comedy,1326646300 +172253,7101,friendship,1326646357 +172253,7101,Michael J. Fox,1326646268 +172253,7101,Nudity (Full Frontal - Brief),1326646283 +172253,7101,small town,1326646317 +172253,7101,town vs. country,1326646331 +172253,7444,Child as Adult,1326661224 +172253,7444,Comedy,1326661254 +172253,7444,fashion,1326661238 +172253,7444,feel-good,1326661305 +172253,7444,Jennifer Garner,1326661230 +172253,7444,Mark Ruffalo,1326661246 +172253,7444,photographer,1326661248 +172253,7444,romance,1326661249 +172253,7450,comedy,1322990515 +172253,7450,fire between couple,1322990549 +172253,7450,romance,1322990525 +172253,7456,childhood,1360960677 +172253,7456,children acting like adults,1360960691 +172253,7456,comedy,1360960710 +172253,7456,innocence,1360960698 +172253,8477,annoying,1324407230 +172253,8477,boring,1324407212 +172253,8477,overrated,1324407189 +172253,8529,airport,1354989546 +172253,8529,Catherine Zeta-Jones,1354989564 +172253,8529,comedy,1354989566 +172253,8529,dialogue,1354989571 +172253,8529,drama,1354989576 +172253,8529,emotion!,1354989584 +172253,8529,funny,1354989586 +172253,8529,humorous,1354989603 +172253,8529,Stanley Tucci,1354989615 +172253,8529,Steven Spielberg,1354989611 +172253,8529,Tom Hanks,1354989613 +172253,8533,chick flick,1354989194 +172253,8533,CLASS DIFFERENCES,1354989199 +172253,8533,FIRST LOVE,1354989329 +172253,8533,generations,1354989335 +172253,8533,life choices,1354989349 +172253,8533,memories,1354989353 +172253,8533,memory loss,1354989358 +172253,8533,movie to see,1354989363 +172253,8533,Rachel McAdams,1354989385 +172253,8533,Romance,1354989389 +172253,8533,romantic,1354989395 +172253,8533,Ryan Gosling,1354989491 +172253,8533,sentimental,1354989519 +172253,8533,To See,1354989532 +172253,25764,not funny,1356904582 +172253,25850,Cary Grant,1357336537 +172253,25850,Cary Grant&Katherine Hepburn,1357336545 +172253,25850,comedy,1357336568 +172253,26431,comedy,1354830852 +172253,26431,drama,1354830835 +172253,26431,slow,1354830762 +172253,26431,strange,1354830818 +172253,30707,drama,1322937903 +172253,30707,intense,1322938568 +172253,30707,Morgan Freeman,1322937917 +172253,30707,thought-provoking,1322937938 +172253,30707,violence,1322937935 +172253,30954,Eleanor Parker,1357940715 +172253,30954,romance,1357940723 +172253,30954,suspense,1357940740 +172253,31263,Nudity (Full Frontal),1344781210 +172253,31263,porn industry,1344781230 +172253,31685,comedy,1325326774 +172253,31685,funny,1325326766 +172253,31685,mentor/trainer,1325326834 +172253,35836,comedy,1326228606 +172253,35836,homophobia,1326228624 +172253,35836,sexuality,1326228680 +172253,37475,domestic violence,1322935046 +172253,37475,intense,1322938692 +172253,37475,thought-provoking,1322935126 +172253,40581,Amy Smart,1356471012 +172253,40581,funny,1356471015 +172253,42011,bad luck,1355002692 +172253,42011,comedic,1355002697 +172253,42011,crime,1355002699 +172253,42011,despair,1355002773 +172253,42011,desperate,1355002776 +172253,42011,family comedy,1355002780 +172253,42011,funny,1355002782 +172253,42011,hilarious,1355002786 +172253,42011,Jim Carrey,1355002803 +172253,42011,lost job,1355002807 +172253,42011,money,1355002811 +172253,42011,remake,1355002816 +172253,42011,robbery,1355002819 +172253,42011,situation comedy,1355002848 +172253,42011,Téa Leoni,1355002896 +172253,42094,Ana Torrent,1357807408 +172253,42094,existentialism,1357807368 +172253,42094,frankenstein,1357807360 +172253,42094,Isabel Tellería,1357807447 +172253,42094,Spain,1357807329 +172253,42094,Spanish Civil War,1357807325 +172253,42958,Charlie Ray,1322938030 +172253,42958,children,1322938045 +172253,42958,comedy,1322938041 +172253,42958,FIRST LOVE,1322938066 +172253,42958,Romantic,1322938055 +172253,48385,anti-Semitism,1356559647 +172253,48385,comedy,1356559651 +172253,48385,controversial,1356559654 +172253,48385,crude humor,1356559657 +172253,48385,irreverent,1356559664 +172253,48385,Male nudity,1356559671 +172253,48385,Nudity (Full Frontal - Notable),1356559674 +172253,48385,Nudity (Full Frontal),1356559676 +172253,48385,prostitution,1356559686 +172253,48385,road trip,1356559688 +172253,48385,toilet humor,1356559699 +172253,48394,fairy tale,1326061052 +172253,48394,fantasy,1326061041 +172253,48394,violence,1326061075 +172253,49284,comedy,1325279034 +172253,49284,ending,1325279219 +172253,49284,humanity,1325279105 +172253,49284,Morgan Freeman,1325279039 +172253,49284,Paz Vega,1325279066 +172253,49284,thought-provoking,1325279079 +172253,49772,emotional,1357596158 +172253,49772,landscape,1357596189 +172253,49772,Naomi Watts,1357596150 +172253,49772,romance,1357596176 +172253,49961,adultery,1354379808 +172253,49961,affair,1354379894 +172253,49961,cate blanchett,1354379800 +172253,49961,England,1354379821 +172253,49961,high school,1354379909 +172253,49961,lesbian,1354379825 +172253,49961,loneliness,1354379834 +172253,49961,manipulation,1354379836 +172253,49961,obsession,1354379839 +172253,49961,scandal,1354379868 +172253,49961,secrets,1354379847 +172253,49961,sexuality,1354379854 +172253,49961,teacher,1354379863 +172253,51698,buddhism,1325326220 +172253,51698,child actor,1322990743 +172253,51698,fantasy,1322990655 +172253,51698,sci-fi,1322990704 +172253,51698,thought-provoking,1322990682 +172253,51698,time travel,1322990646 +172253,51931,comedy,1323543001 +172253,51931,drama,1323542993 +172253,52042,Beautiful Woman,1358149788 +172253,52042,double life,1358149792 +172253,52042,end of war,1358149796 +172253,52042,espionage,1358149798 +172253,52042,false identity,1358149802 +172253,52042,male nudity,1358149806 +172253,52042,Nazis,1358149809 +172253,52042,Nudity (Full Frontal - Notable),1358149779 +172253,52042,Nudity (Topless - Notable),1358149774 +172253,52042,resistance movement,1358149785 +172253,52042,violence,1358149835 +172253,52042,World War II,1358149819 +172253,52572,action,1358978086 +172253,52572,complicated,1358978062 +172253,52572,humorous,1358978077 +172253,53226,funny,1327008279 +172253,53226,violence,1327008289 +172253,53226,war,1327008292 +172253,53226,WWI,1327008313 +172253,53956,british comedy,1326402438 +172253,53956,comedy,1326402058 +172253,53956,dark comedy,1326402063 +172253,53956,drugs,1326402261 +172253,53956,male nudity,1326402198 +172253,53956,Nudity (Rear),1326402278 +172253,53956,swearing,1326402346 +172253,53956,wheelchair,1326402295 +172253,56719,piano,1326535981 +172253,56719,prodigy,1326535978 +172253,56719,romance,1326536014 +172253,58998,break-up,1327260156 +172253,58998,comedy,1327260142 +172253,58998,Hawaii,1327260176 +172253,58998,hotel,1327260181 +172253,58998,jealousy,1327260186 +172253,58998,male nudity,1327260190 +172253,58998,Nudity (Full Frontal - Notable),1327260193 +172253,58998,Nudity (Topless - Brief),1327260235 +172253,58998,puppets,1327260247 +172253,58998,romance,1327260241 +172253,58998,surfing,1327260243 +172253,58998,television,1327260245 +172253,60069,Comedy,1322934956 +172253,60069,emotional,1322934972 +172253,60069,robots,1322934947 +172253,60408,comedy,1322934874 +172253,60408,hilarious,1322934874 +172253,60408,lies,1354990167 +172253,61323,Brad Pitt,1326646054 +172253,61323,Comedy,1326646057 +172253,61323,cosmetic surgery,1326646075 +172253,61323,espionage,1326646087 +172253,61323,George Clooney,1326646092 +172253,61323,greed,1326646097 +172253,61323,John Malkovich,1326646067 +172253,61323,stupidity,1326646107 +172253,61323,top secret,1326646117 +172253,61323,weird,1326646191 +172253,64614,Clint Eastwood,1323542837 +172253,64614,comedy,1323542912 +172253,64614,drama,1323542846 +172253,64614,friendship,1323542853 +172253,64614,humorous,1323542904 +172253,64614,language,1323542894 +172253,64614,violence,1323542920 +172253,64716,Drama,1323542473 +172253,64716,intense,1323542519 +172253,64716,moving,1323542490 +172253,64716,thought-provoking,1323542502 +172253,64930,comedy,1326040194 +172253,64930,slow,1326040205 +172253,64957,Aging,1327167522 +172253,64957,Brad Pitt,1327167531 +172253,64957,drama,1327167548 +172253,64957,funny,1327167582 +172253,64957,romance,1327167569 +172253,64957,touching,1327167575 +172253,65899,comedy,1323543191 +172253,65899,romance,1323543200 +172253,65899,time travel,1323543209 +172253,68269,biographical view,1355954821 +172253,68269,character based on real person:Queen Victoria of UK,1355954829 +172253,68269,Emily Blunt,1355954832 +172253,68269,England,1355954837 +172253,68269,History,1355954846 +172253,68269,humorous,1355954888 +172253,68269,protagonist is young princess & heir,1355954867 +172253,68269,romance,1355954903 +172253,69406,Alaska,1326645646 +172253,69406,comedy,1326645701 +172253,69406,immigrants,1326645724 +172253,69406,male stripper,1326645848 +172253,69406,Nudity (Rear),1326645891 +172253,69406,romantic,1326645765 +172253,69406,Sandra Bullock,1326645768 +172253,70315,comedy,1357857110 +172253,70315,friendship,1357857103 +172253,70315,NOTHING GOES RIGHT,1357857127 +172253,72380,slow,1360099176 +172253,72998,action,1326060313 +172253,72998,anti-war,1326060322 +172253,72998,drama,1326060317 +172253,72998,environmental,1326060327 +172253,72998,funny,1326060407 +172253,72998,intense,1326060423 +172253,72998,nature,1326060377 +172253,72998,romance,1326060400 +172253,72998,thought-provoking,1326060283 +172253,73587,comedy,1323469691 +172253,73587,sexuality,1323469711 +172253,74789,fantasy,1326788840 +172253,74789,talking animals,1326788852 +172253,74789,visually appealing,1326788858 +172253,76093,adventure,1325326627 +172253,76093,comedy,1325326618 +172253,76093,dragons,1325326591 +172253,76093,fantasy,1325326630 +172253,76093,friendship,1325326636 +172253,77191,comedy,1326401963 +172253,77191,dark comedy,1326402404 +172253,77191,drugs,1326402372 +172253,77191,male nudity,1326402427 +172253,77191,Nudity (Rear),1326401991 +172253,77191,swearing,1326402365 +172253,77191,wheelchair,1326402417 +172253,78321,comedy,1326228879 +172253,78321,sexuality,1326228885 +172253,79132,action,1325326440 +172253,79132,alternate reality,1325326442 +172253,79132,drama,1325326445 +172253,79132,dreamlike,1325326562 +172253,79132,Ellen Page,1325326531 +172253,79132,fantasy,1325326456 +172253,79132,Joseph Gordon-Levitt,1325326515 +172253,79132,Leonardo DiCaprio,1325326461 +172253,79132,memory,1325326466 +172253,79132,sci-fi,1325326474 +172253,79132,suspense,1325326478 +172253,79132,thought-provoking,1325326483 +172253,79132,visually appealing,1325326487 +172253,79590,AGE DISPARITY ROMANCE,1326319089 +172253,79590,Catherine Zeta-Jones,1326319097 +172253,79590,comedy,1326319073 +172253,79590,romance,1326319064 +172253,80860,babies,1326059326 +172253,80860,comedy,1326059416 +172253,80860,emotional,1326059334 +172253,80860,funny,1326059328 +172253,80860,sweet,1326059462 +172253,86345,stand-up comedy,1326661839 +172253,86345,swearing,1326661905 +172253,86345,violence,1326661917 +172253,86408,comedy,1356733642 +172253,86408,Italy,1356733671 +172253,86408,postman,1356733666 +172253,86408,remake,1356733657 +172253,86408,stereotypes,1356733664 +172253,86882,comedy,1355614670 +172253,86882,disappointing,1355615951 +172253,86882,love,1355614896 +172253,86882,Owen Wilson,1355614680 +172253,86882,Paris,1355614707 +172253,86882,pretentious,1355614864 +172253,86882,quirky,1355614749 +172253,86882,Rachel McAdams,1355614927 +172253,86882,relationships,1355614784 +172253,86882,romance,1355614782 +172253,86882,thought-provoking,1355614759 +172253,86882,time travel,1355614697 +172253,86882,Woody Allen,1355614685 +172253,86882,writers,1355614688 +172253,86922,Comedy,1356204919 +172253,87485,breast implants,1358288148 +172253,87485,Cameron Diaz,1358288143 +172253,87485,high school,1358288134 +172253,87485,not funny enough,1358288127 +172253,87485,Nudity (Topless - Notable),1358288120 +172253,87485,protagonist is a teacher,1358288110 +172253,87485,rough humor,1358288107 +172253,87485,scatalogical humor,1358288101 +172253,87485,sex jokes,1358288080 +172253,87485,swearing,1358288092 +172253,91094,comedy,1363126185 +172253,91094,cute,1363126188 +172253,91094,dancing,1363126174 +172253,91094,muppets,1363126199 +172253,91094,musical,1363126201 +172253,91094,weak plot,1363126180 +172253,91500,action,1359318238 +172253,91500,based on a book,1359318089 +172253,91500,captivating,1359318227 +172253,91500,drama,1359318092 +172253,91500,dystopia,1359318096 +172253,91500,Happy ending,1359318103 +172253,91500,intense,1359318107 +172253,91500,Jennifer Lawrence,1359318214 +172253,91500,love,1359318109 +172253,91500,murder,1359318128 +172253,91500,reality TV,1359318131 +172253,91500,rich and poor,1359318137 +172253,91500,science fiction,1359318141 +172253,91500,segregation,1359318147 +172253,91500,social commentary,1359318154 +172253,91500,suspense,1359318249 +172253,91500,television,1359318157 +172253,91500,thriller,1359318159 +172253,91500,visually stunning,1359318169 +172253,92259,acting,1354989738 +172253,92259,based on a true story,1354989748 +172253,92259,classical music,1354989752 +172253,92259,disability,1354989757 +172253,92259,emotional,1354989760 +172253,92259,feel good movie,1354989763 +172253,92259,friendship,1354989766 +172253,92259,funny,1354989767 +172253,92259,hilarious,1354989774 +172253,92259,paralysis,1354989793 +172253,92259,Personality change,1354989797 +172253,92259,rich and poor,1354989824 +172253,92259,soundtrack,1354989839 +172253,92259,touching,1354989841 +172253,92259,upper class,1354989844 +172253,92259,wheelchair,1354989848 +172256,4816,goofy,1202440182 +172273,71033,Argentina,1435716891 +172273,71033,excellent,1435716942 +172273,71033,excellent script,1435716898 +172273,71033,revenge,1435716919 +172288,47503,depression,1371556634 +172288,47503,suicide,1371556634 +172288,47503,suicide attempt,1371556633 +172292,6,action,1399223692 +172292,6,Al Pacino,1399223866 +172292,6,Robert De Niro,1399223862 +172292,6,suspense,1399223975 +172292,32,post-apocalyptic,1399225818 +172292,32,sci-fi,1399225821 +172292,47,psychological,1399223856 +172292,47,psychology,1399223853 +172292,47,serial killer,1399223673 +172292,48,animation,1399225468 +172292,48,Disney,1399225474 +172292,104,Adam Sandler,1399223939 +172292,104,sports,1399223933 +172292,141,based on a play,1399354740 +172292,296,quentin tarantino,1424411514 +172292,296,r:violence,1424411514 +172292,296,thriller,1424411514 +172292,356,drama,1425960665 +172292,356,life story,1425960665 +172292,356,oscar winner,1425960665 +172292,485,Arnold Schwarzenegger,1399225333 +172292,485,parody,1399225337 +172292,485,quirky,1399225351 +172292,539,New York City,1399223925 +172292,539,Romance,1399223920 +172292,539,Tom Hanks,1399223928 +172292,541,based on a book,1399225685 +172292,1183,based on a book,1399225112 +172292,1183,Oscar (Best Cinematography),1399225090 +172292,1183,Oscar (Best Picture),1399225097 +172292,1199,dark comedy,1399225698 +172292,1199,surreal,1399225701 +172292,1214,sci-fi,1399225644 +172292,1250,World War II,1386083167 +172292,1270,sci-fi,1399225652 +172292,1339,Anthony Hopkins,1399225007 +172292,1339,based on a book,1399224985 +172292,1339,gothic,1399225026 +172292,1339,Keanu Reeves,1399225003 +172292,1339,vampires,1399224982 +172292,1343,Martin Scorsese,1399225037 +172292,1343,Robert De Niro,1399225034 +172292,1584,sci-fi,1399223882 +172292,1584,space,1399223886 +172292,1682,social commentary,1399225805 +172292,1722,james bond,1399224846 +172292,2010,classic,1386083145 +172292,2012,sci-fi,1399225666 +172292,2366,classic,1399224791 +172292,2366,horror,1399224814 +172292,2366,monster,1399224819 +172292,2427,based on a book,1399224779 +172292,2427,World War II,1399224773 +172292,2683,James Bond,1399223818 +172292,2683,time travel,1399223824 +172292,2997,dark comedy,1399225676 +172292,2997,sci-fi,1399225670 +172292,2997,surreal,1399225679 +172292,3255,true story,1399224472 +172292,3418,feminism,1399224315 +172292,3418,rape,1399224315 +172292,3418,road trip,1399224268 +172292,3418,women,1399224277 +172292,4019,friendship,1399224601 +172292,4019,inspirational,1399224605 +172292,4308,Ewan McGregor,1399224247 +172292,4308,musical,1399224224 +172292,4308,Nicole Kidman,1399224244 +172292,4308,quirky,1399224220 +172292,4718,funny,1399224156 +172292,4718,teen,1399224161 +172292,4878,sci-fi,1399224132 +172292,4878,superhero,1399224140 +172292,4878,surreal,1399224136 +172292,5266,Jodie Foster,1399224111 +172292,5266,survival,1399224117 +172292,5378,adventure,1399224056 +172292,5378,sci-fi,1399224066 +172292,5378,space,1399224070 +172292,5952,based on a book,1386083156 +172292,5995,based on a true story,1399223995 +172292,5995,Holocaust,1399224036 +172292,5995,musicians,1399224035 +172292,5995,Oscar (Best Actor),1399223985 +172292,5995,World War II,1399224000 +172292,32587,multiple storylines,1399225780 +172292,32587,Sci-Fi,1399225786 +172292,41571,based on a book,1399354166 +172292,41571,Oscar (Best Cinematography),1399354163 +172292,46976,surreal,1399223790 +172292,46976,unexpected,1399223782 +172292,48780,magic,1399225763 +172292,48780,magician,1399225763 +172292,52281,Quentin Tarantino,1399225707 +172292,69122,comedy,1399223711 +172292,69122,Las Vegas,1399223801 +172292,71033,Argentina,1386083505 +172292,71033,based on a book,1386083516 +172292,79091,animation,1399228720 +172292,79091,pixar,1399228723 +172292,81564,animation,1399229198 +172292,81564,Dreamworks,1399229192 +172292,81564,pixar,1399229214 +172292,81564,superhero,1399229195 +172292,85342,corruption,1399229168 +172292,85342,drugs,1399229160 +172292,85342,police,1399229176 +172292,85342,politics,1399229157 +172292,85342,social commentary,1399229154 +172292,86345,not a movie,1399227419 +172292,86345,stand-up comedy,1399227407 +172292,89745,comic book,1399227546 +172292,89745,Marvel,1399227542 +172292,89864,disease,1399229286 +172292,89864,drugs,1399229282 +172292,89864,emotional,1399227374 +172292,89864,friendship,1399227378 +172292,91658,based on a book,1399255290 +172292,91658,quirky,1399255348 +172292,92058,doctors,1399255186 +172292,93840,dark comedy,1399229303 +172292,93840,satire,1399229307 +172292,93840,zombies,1399229316 +172292,97913,animation,1399228624 +172292,97913,disney,1399228628 +172292,97913,video games,1399228649 +172292,98961,military,1399228867 +172292,98961,politics,1399228860 +172292,98961,terrorism,1399228864 +172292,102445,adventure,1399228593 +172292,102445,space,1399228586 +172292,102445,Star Trek,1399228613 +172292,103141,animation,1399229229 +172292,103141,college,1399229236 +172292,103141,Pixar,1399229232 +172292,104841,space program,1399227369 +172292,104913,based on a true story,1399227512 +172292,104913,cars,1399227520 +172292,104913,true story,1399227517 +172292,104925,France,1399254972 +172292,104925,funny,1399254972 +172292,104925,Mafia,1399254897 +172292,104925,Michelle Pfeiffer,1399254945 +172292,104925,Robert De Niro,1399254924 +172292,105504,tom hanks,1399228437 +172292,105504,true story,1399228434 +172292,105844,boring,1399227628 +172292,106100,disease,1399228489 +172292,106100,inspirational,1399228477 +172292,106100,Matthew McConaughey,1399228473 +172292,106100,social commentary,1399228481 +172292,106782,based on a book,1399228453 +172292,106782,Martin Scorsese,1399228447 +172292,106782,true story,1399228450 +172292,107141,Disney,1399228808 +172296,260,interesting,1436241762 +172296,260,thriller,1436241749 +172296,1197,a true love story,1451407914 +172296,2587,BORNG,1451408217 +172296,3865,Terrific,1451408142 +172296,5392,Twists,1451408099 +172296,31923,True comedy,1451407974 +172296,58494,Nice,1451408063 +172296,127168,DOCUMENTARY,1451408269 +172301,58559,dark,1451959044 +172301,58559,violent,1451959063 +172301,60069,artificial intelligence,1451958996 +172301,60069,robots,1451958981 +172308,1148,claymation,1139549337 +172308,33660,Rocky,1140403291 +172308,34072,penguins,1139549338 +172308,41997,Olympics,1139549156 +172336,260,father-son relationship,1434836543 +172336,260,luke skywalker,1434836535 +172363,260,sci-fi,1431802547 +172363,260,space western,1431802565 +172387,260,Star Wars,1431967901 +172387,260,starwars,1431967906 +172400,260,good characters,1436737041 +172400,260,good vs evil,1436737069 +172400,260,spiriritual,1436737059 +172400,589,action-packed,1436738095 +172400,589,extremely tense,1436738106 +172400,589,sci-fi,1436738089 +172400,589,suspenseful,1436738101 +172400,1240,action-packed,1436738033 +172400,1240,extremely tense,1436738017 +172400,1240,Sci-Fi,1436738055 +172400,1240,suspenseful,1436738009 +172400,3578,Epic,1436737740 +172400,3578,moving,1436737672 +172400,3578,noble,1436737695 +172400,3578,swashbuckling,1436737784 +172400,3994,atmospheric,1436738201 +172400,3994,inspiring,1436738192 +172400,3994,supernatural,1436738156 +172400,3994,well-written,1436738150 +172400,5064,noble,1436737838 +172400,5064,period,1436737888 +172400,5064,swashbuckling,1436737832 +172400,7153,action-packed,1436738558 +172400,7153,fantasy,1436738563 +172400,7153,noble,1436738543 +172400,7153,swashbuckling,1436738552 +172400,84954,good actors,1436737964 +172400,84954,likeable love story,1436737945 +172400,84954,supernatural,1436737954 +172400,84954,suspenseful,1436737973 +172405,106100,Matthew McConaughey,1439985001 +172405,106782,drugs,1439984981 +172419,1036,action,1425679905 +172419,1036,Bruce Willis,1425679916 +172419,1036,terrorism,1425679889 +172419,32587,Action,1425680017 +172419,32587,multiple storylines,1425679988 +172419,32587,superhero,1425679979 +172419,80463,Andrew Garfield,1425680140 +172419,80463,harvard,1425680137 +172419,80463,internet,1425680132 +172419,80463,Jesse Eisenberg,1425680129 +172419,80463,software developers,1425680146 +172443,1,Disney,1258392688 +172443,1,Pixar,1258392688 +172443,10,007,1258385357 +172443,10,James Bond,1258385360 +172443,47,horror,1257912175 +172443,47,police,1257912171 +172443,112,Jackie Chan,1258386000 +172443,123,reflective,1258385871 +172443,123,stylized,1258385863 +172443,165,crime,1257911162 +172443,165,predictable,1257911167 +172443,196,Nudity (Topless - Notable),1259087283 +172443,293,assassin,1257912421 +172443,293,Jean Reno,1257912418 +172443,377,bomb,1257956389 +172443,377,chase,1257956392 +172443,377,explosions,1257956386 +172443,377,seen more than once,1257956394 +172443,377,speed,1257956384 +172443,648,military,1258386310 +172443,648,Tom Cruise,1258386298 +172443,757,dreamlike,1258387632 +172443,757,Jin Yong,1258387656 +172443,757,Jin Yong Story,1258387663 +172443,757,Jinyong's Work,1258387647 +172443,786,Arnold Schwarzenegger,1257912746 +172443,914,Audrey Hepburn,1257911363 +172443,914,Oscar (Best Actor),1257911349 +172443,914,Oscar (Best Directing),1257911345 +172443,914,Oscar (Best Director),1257911336 +172443,923,black and white,1257911424 +172443,923,Oscar (Best Writing - Screenplay Written Directly for the Screen),1257911422 +172443,1036,action,1257911036 +172443,1036,Bruce Willis,1257910996 +172443,1036,crime,1257910999 +172443,1036,imdb top 250,1257911009 +172443,1036,terrorism,1257911001 +172443,1370,Anamorphic Blow-Up,1257911114 +172443,1370,Bruce Willis,1257911103 +172443,1370,fighting,1257911107 +172443,1573,Nicholas Cage,1257956244 +172443,1573,Nicolas Cage,1257956248 +172443,1721,disaster,1257911554 +172443,1721,love story,1257911540 +172443,1721,Nudity (Topless - Notable),1257911510 +172443,1721,Nudity (Topless),1257911515 +172443,1721,Oscar (Best Directing),1257911524 +172443,1721,Oscar (Best Picture),1257911528 +172443,1721,sentimental,1257911497 +172443,1862,Nudity (Full Frontal),1259087296 +172443,1862,Nudity (Rear),1259087298 +172443,1997,Christianity,1269623446 +172443,1997,Classic,1269623440 +172443,1997,demons,1269623434 +172443,1997,religion,1269623436 +172443,1997,scary,1269623451 +172443,2691,Tim Roth,1257911794 +172443,2762,Bruce Willis,1260205225 +172443,3409,horrors,1257866633 +172443,3418,rape,1258139095 +172443,3623,John Woo,1258386350 +172443,4310,World War II,1257787691 +172443,4370,ending kinda ruined it,1259085784 +172443,4447,lawyers,1258139032 +172443,4993,Oscar (Best Cinematography),1257787881 +172443,4993,Oscar (Best Effects - Visual Effects),1257787889 +172443,5445,future,1258386590 +172443,5445,Steven Spielberg,1258386579 +172443,5445,Tom Cruise,1258386582 +172443,5630,serial killer,1257912144 +172443,5630,torture,1257912140 +172443,5816,harry potter,1258994695 +172443,5816,magic,1258994698 +172443,6058,violent,1257866681 +172443,6365,car chase,1257787729 +172443,6365,magic,1257787739 +172443,6365,super-hero,1257787739 +172443,6365,temple scene,1257787744 +172443,6534,Action,1257910729 +172443,6534,dogs,1257910722 +172443,6534,marvel,1257910743 +172443,6534,transformation,1257910734 +172443,6754,vampire,1258139655 +172443,6754,vampires,1258139652 +172443,6874,katana,1258387989 +172443,6874,kung fu,1258388022 +172443,6934,robots,1257787796 +172443,6942,Billy Bob Thornton,1257911641 +172443,6942,happy ending,1257911620 +172443,6942,Nudity (Topless - Notable),1257911625 +172443,6942,Nudity (Topless),1257911627 +172443,7090,wuxia,1258385621 +172443,7143,samurai,1258386650 +172443,7143,sword fight,1258386652 +172443,7153,fantasy world,1257866755 +172443,7318,too bloody,1257912526 +172443,7981,Tony Leung,1258384980 +172443,8644,robots,1257912973 +172443,8644,Will Smith,1257912984 +172443,8665,car chase,1260205076 +172443,8665,spy,1260205074 +172443,8984,bad sequel,1260205142 +172443,8984,not as good as the first,1260205146 +172443,27032,Jackie Chan's Best,1258385977 +172443,27032,see more than once,1258385960 +172443,31696,Keanu Reeves,1257959637 +172443,31878,comedy,1258387941 +172443,31878,kung fu,1258387950 +172443,31878,Stephen Chow,1258387939 +172443,33679,guns,1258139508 +172443,34048,Tom Cruise,1258386617 +172443,37830,amazing fight choreography,1259086686 +172443,37830,based on video game,1259086691 +172443,37830,cgi,1259086688 +172443,37830,final fantasy,1259086708 +172443,37830,sword fight,1259086701 +172443,45081,unintentionally funny,1257951435 +172443,45081,video game,1257951416 +172443,45081,video game adaptation,1257951432 +172443,45186,Tom Cruise,1258386375 +172443,45447,religion,1257912463 +172443,45722,big budget,1258386994 +172443,46974,Nicolas Cage,1257866482 +172443,46974,Oliver Stone,1257866469 +172443,50005,Jay Chou,1258386527 +172443,50005,Yimou Zhang,1258386508 +172443,51412,Nicolas Cage,1258139147 +172443,51709,ClearPlay,1259087366 +172443,53322,Al Pacino,1257959871 +172443,53972,kungfu hackers,1257911197 +172443,53972,unrealistic,1257911200 +172443,53972,unrealistic plot,1257911202 +172443,53996,comic book,1257912886 +172443,53996,enormously long battle scene,1257912863 +172443,53996,giant robots,1257912890 +172443,53996,robots,1257912874 +172443,53996,Special Effects,1257912892 +172443,57528,lots of guns,1257911706 +172443,57528,ridiculous,1257911685 +172443,57528,Sylvester Stallone,1257911716 +172443,58559,based on a comic,1257866539 +172443,58559,explosions,1257866536 +172443,58652,Stephen Chow,1258387914 +172443,59315,based on a comic,1257866835 +172443,59315,comic book,1257866836 +172443,59315,kidnapping,1257866818 +172443,59315,military,1257866841 +172443,59315,Special Effects,1257866844 +172443,59315,torture,1257866820 +172443,60020,blood,1258385448 +172443,60020,Jet Li,1258385431 +172443,60020,war,1258385432 +172443,60040,bad cgi,1257910779 +172443,60040,bad sequel,1257910777 +172443,60040,comic book,1257910794 +172443,60040,dull,1257910781 +172443,60069,robots,1258392721 +172443,60072,Angelina Jolie,1257911937 +172443,60072,assassin,1257911940 +172443,60072,based on a comic,1257911950 +172443,60072,brutal violence,1257911923 +172443,60072,rats,1257911925 +172443,60937,should'a stopped at 2,1258385540 +172443,61026,John Woo,1258384888 +172443,61026,Romance of the Three Kingdoms,1258384876 +172443,61026,Tony Leung Chiu Wai,1258384886 +172443,63992,Vampire,1258994472 +172443,63992,vampires,1258994479 +172443,65514,kongfu,1260205018 +172443,66618,good story,1258385318 +172443,66618,Theft,1258385309 +172443,68486,action,1258384844 +172443,68486,drama,1258384849 +172443,68486,mandarin,1258384846 +172443,68486,Romance of the Three Kingdoms,1258384852 +172443,68486,war,1258384847 +172443,68954,cartoon,1260204435 +172443,69844,disappointing,1258994603 +172443,69844,magic,1258994603 +172443,70286,action,1260204497 +172443,70286,cgi,1260204502 +172443,70286,Special Effects,1260204716 +172448,260,"classic, sci-fi",1442331761 +172448,260,easy watching,1442331774 +172453,4023,alternative life,1226170069 +172453,6214,reverse timeline,1225583361 +172453,44665,fxg,1230092109 +172453,52952,England,1231457589 +172453,55118,bloody,1225583782 +172453,55118,violent,1225583836 +172453,55721,brazil,1225942728 +172453,55721,corruption,1225942679 +172453,55721,organized crime,1225942684 +172453,55721,police,1225942692 +172453,55721,police corruption,1225942691 +172453,55721,poverty,1225942727 +172453,55721,rio de janeiro,1225942732 +172453,55721,special police forces,1225942747 +172453,55721,urban violence,1225942717 +172453,56941,irish accent,1218809953 +172453,57669,belgium,1226204258 +172453,57669,drama and commedy,1226204482 +172453,57669,dwarf,1226204513 +172453,57669,friendship,1226204507 +172453,57669,historic building,1226204379 +172453,57669,klling of a friend,1226204352 +172453,58299,elephants,1226204847 +172453,58299,father son relationship,1226204877 +172453,58299,happy ending,1226204966 +172453,58299,jungle,1226204958 +172453,58299,world inside another world,1226204823 +172453,58998,Predictable,1224517366 +172453,59103,jackie chan,1220228801 +172453,59103,jet li,1220228801 +172453,59103,kung fu,1220228784 +172453,59387,fantasy,1227110936 +172453,59387,suicide attempt,1227110931 +172453,59910,cheating husband,1226761579 +172453,59910,DEATH OF A PARENT,1226761562 +172453,59910,father son relationship,1226761553 +172453,60647,drugs,1225680150 +172453,60647,murder/fatality,1225680141 +172453,61248,car chase,1233170535 +172453,61248,car racing,1233170529 +172453,61250,friendship,1229306350 +172453,61250,playboy girl,1229306361 +172453,62293,British,1230091754 +172453,64249,short films,1230092635 +172453,64614,Clint Eastwood,1248484952 +172453,64969,funny,1245210321 +172453,64969,Jim carrey,1245210324 +172453,64969,motorcycle,1245210329 +172453,64969,rebellion,1245210334 +172453,71254,dark,1262043465 +172453,71254,light plot,1262043448 +172453,71254,Michael C. Hall,1262043451 +172453,71429,depressing,1261621522 +172453,71429,Robin Williams,1261621455 +172453,71429,slow,1261621522 +172453,71429,suicide,1261621505 +172453,71429,twist,1261621480 +172453,72378,Amanda Peet,1263769763 +172453,72378,Amount of Destruction,1263769758 +172453,72378,Excellent FXs,1263769737 +172453,72378,sci-fi,1263769740 +172453,72378,science fiction,1263769742 +172453,72378,slow,1263770946 +172453,72378,thriller,1263769767 +172453,74458,ending twist,1270856921 +172453,74458,plot twist,1270856915 +172453,74458,too long,1270856928 +172464,1302,baseball,1307826748 +172464,1302,kevin costner,1307826762 +172481,260,adventure,1431895269 +172481,260,sci-fi,1431895271 +172481,89030,blood,1434490268 +172481,89030,comedy,1434490268 +172481,89030,vampire,1434490268 +172486,541,atmospheric,1453499890 +172486,541,classic,1453499828 +172486,541,dark,1453499908 +172486,541,dystopia,1453499825 +172486,541,film noir,1453499850 +172486,541,Harrison Ford,1453499887 +172486,541,neo-noir,1453499852 +172486,541,philosophical,1453499855 +172486,541,stylized,1453499843 +172486,902,audrey hepburn,1453499069 +172486,902,bittersweet,1453499072 +172486,902,classic,1453499081 +172486,902,elegant,1453499076 +172486,910,classic,1453499003 +172486,910,funny as hell,1453499051 +172486,910,Marilyn Monroe,1453499001 +172486,910,screwball comedy,1453498997 +172486,1198,adventure,1453499666 +172486,1198,classic,1453499635 +172486,1198,fun,1453499662 +172486,1198,Harrison Ford,1453499637 +172486,1198,indiana jones,1453499643 +172486,1203,classic,1453499518 +172486,1203,good dialogue,1453499514 +172486,1203,great acting,1453499541 +172486,1203,gritty,1453499534 +172486,1203,social commentary,1453499516 +172486,1214,claustrophobic,1453499471 +172486,1214,female heroine,1453499460 +172486,1214,horror,1453499448 +172486,1214,suspense,1453499487 +172486,1233,classic,1453498799 +172486,1233,gritty,1453498867 +172486,1233,tense,1453498862 +172486,1246,bittersweet,1453499933 +172486,1246,philosophy,1453499948 +172486,1246,poetry,1453499938 +172486,1246,Robin Williams,1453499941 +172486,1252,dark,1453499269 +172486,1252,Film Noir,1453499262 +172486,1252,neo-noir,1453499308 +172486,1277,historical,1453499603 +172486,1277,romance,1453499601 +172486,1277,witty,1453499584 +172486,1281,anti-war,1453500878 +172486,1281,Charlie Chaplin,1453500884 +172486,1281,classic,1453500914 +172486,1281,political,1453500888 +172486,1281,satire,1453500875 +172486,1357,classical music,1453499715 +172486,1357,music,1453499720 +172486,1357,piano,1453499724 +172486,1617,film noir,1453499161 +172486,1617,neo-noir,1453499144 +172486,1617,suspense,1453499174 +172486,1617,twist ending,1453499156 +172486,3020,gripping,1453500565 +172486,3020,Michael Douglas,1453500551 +172486,4011,funny,1453500163 +172486,4011,quirky,1453500140 +172486,4011,twist ending,1453500131 +172486,4027,George Clooney,1453500187 +172486,4027,odyssey,1453500220 +172486,4027,Quirky,1453500198 +172486,4226,dark,1453498958 +172486,4226,tense,1453498960 +172486,4226,twist ending,1453498950 +172486,4973,French,1453500366 +172486,4973,quirky,1453500350 +172486,4973,surreal,1453500356 +172486,5015,tragedy,1453500467 +172486,5388,atmospheric,1453500405 +172486,5388,dark,1453500418 +172486,5388,Robin Williams,1453500402 +172486,6533,Barbara Striesand,1453499980 +172486,6533,classic,1453499995 +172486,6533,Screwball Comedy,1453499978 +172486,8337,classic,1453499781 +172486,8337,Humphrey Bogart,1453499788 +172486,44191,dark,1453497938 +172486,44191,dystopia,1453497908 +172486,44191,philosophical,1453497934 +172486,44191,political,1453497958 +172486,44191,social commentary,1453497912 +172486,46578,bittersweet funny characters,1453498934 +172486,46578,heartwarming,1453498911 +172486,46578,independent film,1453498913 +172486,46578,quirky,1453498903 +172486,57669,dark comedy,1453500706 +172486,57669,twist ending,1453500697 +172486,60069,beautiful,1453499348 +172486,60069,funny,1453499332 +172486,60069,quirky,1453499336 +172486,60069,romance,1453499378 +172486,60069,social commentary,1453499343 +172486,64620,good acting,1453500041 +172486,64620,gripping,1453500031 +172486,64620,history,1453500024 +172486,64620,politics,1453500053 +172486,81845,historical,1453500625 +172486,89356,comedy,1453501020 +172486,98154,great performances,1453500316 +172486,98154,gripping,1453500326 +172486,98154,history,1453500301 +172486,98154,politics,1453500305 +172486,118202,agriculture,1453498669 +172486,118202,climate change,1453498680 +172486,118202,Documentary,1453498658 +172486,118202,sustainability,1453498677 +172509,778,addiction,1422638730 +172509,778,black comedy,1422638738 +172509,778,dark comedy,1422638716 +172509,778,drugs,1422638722 +172509,778,social commentary,1422638728 +172509,2571,Carrie-Anne Moss,1422641211 +172509,2571,philosophical,1422641226 +172509,2571,philosophy,1422641490 +172561,1347,classic,1327446697 +172561,1974,cheesy,1327446726 +172561,1975,fun horror,1327446768 +172561,1982,classic,1327446654 +172561,3409,hilarious,1327447095 +172561,4020,scary,1327361195 +172561,7158,characters,1372010573 +172561,7158,culture clash,1372010553 +172561,7158,heartbreaking,1372010533 +172561,7158,plot,1372010567 +172561,8870,Julianne Moore,1380848766 +172561,40732,entertaining,1327446587 +172561,53953,predictable ending,1327446310 +172561,59727,dumbest movie ever,1327446563 +172561,68952,stupid ending,1327447356 +172561,71379,BORING!,1327446489 +172561,71379,over-hyped,1327446489 +172561,71379,slow,1327446489 +172561,85788,stupid ending,1327446405 +172561,97188,dumb ending,1365297676 +172561,99114,good ending,1362958007 +172561,99114,too long,1362957340 +172561,102066,drugs,1366607787 +172561,102066,lens flares,1366607819 +172561,102066,light flares,1366607827 +172561,102066,slow,1366607776 +172561,102066,stupid ending,1366607782 +172586,5816,acting,1392314632 +172586,5816,book was better,1392314632 +172586,5816,thrilling,1392314632 +172586,6060,True Story +Fiction,1392315367 +172586,6874,Extreme Action,1392317504 +172586,6874,sword fighting,1392317504 +172586,27326,Sanjay Leela Bhansali,1392316636 +172586,27518,bromance,1392315717 +172586,27518,comedy,1392315717 +172586,27518,friendship,1392315717 +172586,44191,action,1392318132 +172586,44191,based on a book,1392318134 +172586,44191,dark,1392318157 +172586,44191,England,1392318151 +172586,44191,inspirational,1392318140 +172586,44191,sci-fi,1392318149 +172586,44191,social commentary,1392318147 +172586,44191,thought-provoking,1392318144 +172586,56167,acting debut,1392315206 +172586,57183,cinematography,1392315762 +172586,57183,story,1392315761 +172586,57183,superb acting,1392315762 +172586,58111,historical,1392314893 +172586,59220,acting and story,1392314862 +172586,69844,acting and story,1392314669 +172586,69844,thrilling,1392314669 +172586,73513,acting,1392316381 +172586,73513,story,1392316381 +172586,73900,comedy,1392315095 +172586,74426,ShahRukh Khan,1392315114 +172586,74641,comedy romance,1392315307 +172586,76056,crime,1392315161 +172586,76056,thriller,1392315161 +172586,83004,comedy,1392315819 +172586,83004,low budget,1392315819 +172586,91844,cinematography,1392315584 +172586,91844,ShahRukh Khan,1392315579 +172586,91844,team-building,1392315587 +172586,97648,acting and story,1392315656 +172586,98198,based on a play,1392315887 +172586,98198,story,1392315887 +172586,98198,superb acting,1392315887 +172586,115149,Action,1430331058 +172586,115149,cheesy,1430331064 +172586,115149,Keanu Reeves,1430331053 +172586,115149,Revenge,1430331055 +172587,97938,adventure,1422052337 +172587,97938,amimals,1422052337 +172587,97938,beautifully filmed,1422052337 +172606,5177,Orson Welles,1202676114 +172608,260,classic,1442133269 +172608,260,sci-fi,1442133277 +172617,902,Audrey Hepburn,1303720227 +172617,902,bittersweet,1303720231 +172617,902,Blake Edwards,1303720244 +172617,902,chick flick,1303720242 +172617,902,HAUNTED BY THE PAST,1303720237 +172617,902,New York,1303720235 +172617,904,imdb top 250,1303171109 +172617,2348,Criterion,1303176450 +172621,148468,anime,1449610585 +172622,260,sci-fi,1441153065 +172622,260,space,1441153025 +172628,215,thought-provoking,1366825635 +172628,778,dark comedy,1366827374 +172628,933,Oscar (Best Cinematography),1366825566 +172628,1206,Stanley Kubrick,1366825794 +172628,3067,Pedro Almodovar,1366825621 +172628,4226,cult film,1366825758 +172628,4226,nonlinear,1366825761 +172628,4226,twist ending,1366825753 +172628,79132,alternate reality,1366825785 +172628,79132,twist ending,1366825780 +172628,97938,great photograpy,1366825765 +172628,97938,surreal,1366825773 +172628,97938,visually appealing,1366825769 +172683,52281,zombies,1177332609 +172697,356,funy and touching,1437574123 +172697,356,great acting,1437574123 +172697,356,history fantasy,1437574123 +172697,27773,wrong. so wrong,1145532738 +172697,44665,Revenge,1169181685 +172697,47640,beer,1170693153 +172697,47640,Nudity (Topless),1170693158 +172697,51091,lurid,1186369714 +172697,51662,blood,1173488084 +172697,51662,boobs,1173488084 +172697,51662,mystic&violence,1173488084 +172707,8533,the most touching,1166367090 +172713,203,fantastic,1421702694 +172713,203,heartwarming,1421702701 +172713,356,good soundtrack,1421702591 +172713,356,quirky,1421702591 +172713,356,touching,1421702591 +172735,3012,DVD-Video,1184707184 +172735,53894,documentary,1184707056 +172747,2959,dark comedy,1442152195 +172747,2959,David Fincher,1442152198 +172747,2959,fighting,1442152212 +172747,2959,imdb top 250,1442152207 +172747,2959,mindfuck,1442152200 +172747,2959,psychological,1442152190 +172747,2959,psychology,1442152217 +172747,2959,social commentary,1442152182 +172747,2959,surreal,1442152219 +172747,2959,thought-provoking,1442152186 +172747,2959,twist ending,1442152188 +172747,3949,Clint Mansel,1442152307 +172747,3949,dark,1442152240 +172747,3949,Darren Aronofsky,1442152258 +172747,3949,disturbing,1442152245 +172747,3949,great acting,1442152255 +172747,3949,independent film,1442152251 +172747,3949,intense,1442152266 +172747,3949,music,1442152306 +172747,3949,psychology,1442152247 +172747,3949,visually appealing,1442152242 +172747,4226,dreamlike,1442152115 +172747,4226,Mindfuck,1442152124 +172747,4226,nonlinear,1442152101 +172747,4226,twist ending,1442152119 +172747,4878,cult film,1442152165 +172747,4878,dreamlike,1442152141 +172747,4878,mindfuck,1442152145 +172747,4878,original,1442152170 +172747,4878,psychological,1442152162 +172747,4878,time travel,1442152158 +172747,81591,dark,1442152328 +172747,81591,Darren Aronofsky,1442152319 +172747,81591,psychological,1442152323 +172747,81591,surreal,1442152322 +172755,80693,touching,1351216462 +172777,47,amazing!.,1137524906 +172777,97,Amazing!,1137524183 +172777,4025,I laughed.,1137524538 +172777,6874,much better than the sequel.,1137524487 +172777,7090,amazing photography,1137524459 +172777,7090,Epic,1137524459 +172777,7090,extremely interesting. Like an ancient tragedy.,1137524459 +172777,7438,horrible.,1137524472 +172781,47,dark,1312329020 +172781,47,horror,1312329013 +172781,47,Kevin Spacey,1312329010 +172781,47,psychology,1312328995 +172781,47,religion,1312328998 +172781,47,serial killer,1312329001 +172781,47,twist ending,1312328996 +172781,471,Fantasy,1312329437 +172781,471,funny,1312329434 +172781,471,whimsical,1312329429 +172781,471,witty,1312329426 +172781,551,animation,1312330671 +172781,551,atmospheric,1312330653 +172781,551,classic,1312330669 +172781,551,claymation,1312330649 +172781,551,cult film,1312330651 +172781,551,dark,1312330645 +172781,551,ghosts,1312330666 +172781,551,great soundtrack,1312330657 +172781,551,halloween,1312330647 +172781,551,humorous,1312330664 +172781,551,johnny depp,1312330640 +172781,551,musical,1312330643 +172781,551,Tim Burton,1312330636 +172781,551,whimsical,1312330662 +172781,588,Action,1312328566 +172781,588,adventure,1312328568 +172781,588,animation,1312328561 +172781,588,artistic,1312328571 +172781,588,Disney,1312328564 +172781,588,fairy tale,1312328588 +172781,588,Fantasy,1312328598 +172781,588,musical,1312328576 +172781,588,Oscar (Best Music - Original Score),1312328578 +172781,588,Robin Williams,1312328583 +172781,592,action,1312330572 +172781,592,atmospheric,1312330575 +172781,592,based on book,1312330563 +172781,592,Batman,1312330560 +172781,592,comic book,1312330558 +172781,592,crime,1312330577 +172781,592,dark,1312330580 +172781,592,film noir,1312330582 +172781,592,stylized,1312330550 +172781,592,super-hero,1312330552 +172781,592,superhero,1312330555 +172781,592,thriller,1312330548 +172781,592,Tim Burton,1312330546 +172781,912,based on a play,1312327964 +172781,912,classic,1312327960 +172781,912,humorous,1312327972 +172781,912,Oscar (Best Picture),1312327956 +172781,912,romance,1312327981 +172781,912,sentimental,1312327984 +172781,912,war,1312327977 +172781,912,World War II,1312327974 +172781,1416,adapted from B'way,1312328144 +172781,1416,Broadway,1312328122 +172781,1416,Dramatic,1312328120 +172781,1416,history,1312328118 +172781,1416,music,1312328124 +172781,1416,musical,1312328126 +172781,1416,playwright:Andrew Lloyd Weber,1312328129 +172781,1416,politics,1312328132 +172781,1416,true story,1312328134 +172781,1537,ballroom dance,1312328095 +172781,1537,Japan,1312328097 +172781,2028,historical,1312328962 +172781,2028,Oscar (Best Cinematography),1312328956 +172781,2028,Oscar (Best Sound),1312328954 +172781,2028,Steven Spielberg,1312328964 +172781,2028,violent,1312328950 +172781,2028,war,1312328948 +172781,2028,World War II,1312328946 +172781,2300,Broadway,1312328763 +172781,2300,Mel Brooks,1312328766 +172781,2300,Theater,1312328775 +172781,2413,adapted from:game,1312328022 +172781,2413,classical,1312328049 +172781,2413,genre:movie as whodunit,1312328026 +172781,2413,hilariously bad,1312328028 +172781,2413,quirky,1312328043 +172781,2413,Tim Curry,1312328032 +172781,2622,adapted from:play,1312328067 +172781,2622,based on a book,1312328069 +172781,2622,based on a play,1312328071 +172781,2622,Fantasy,1312328076 +172781,2622,Shakespeare,1312328074 +172781,5013,comedy of manners,1312328162 +172781,5013,murder mystery,1312328171 +172781,5618,Japan,1312329718 +172781,5618,Oscar (Best Animated Feature),1312329721 +172781,5618,surreal,1312329776 +172781,5618,whimsical,1312329715 +172781,65188,emotional,1312330381 +172781,65188,family bonds,1312330384 +172781,65188,political reform,1312330379 +172781,65188,touching,1312330377 +172781,65188,true story,1312330416 +172781,76093,action,1312330170 +172781,76093,adventure,1312330172 +172781,76093,animated,1312330175 +172781,76093,CGI,1312330178 +172781,76093,cute,1312330183 +172781,76093,dragons,1312330166 +172781,76093,fantasy,1312330168 +172781,79132,action,1312328664 +172781,79132,alternate reality,1312328675 +172781,79132,drama,1312328739 +172781,79132,dreamlike,1312328666 +172781,79132,great soundtrack,1312328720 +172781,79132,heist,1312328722 +172781,79132,Leonardo DiCaprio,1312328726 +172781,79132,memory,1312328724 +172781,79132,philosophy,1312328731 +172781,79132,sci-fi,1312328733 +172781,79132,suspense,1312328735 +172781,79132,thought-provoking,1312328693 +172781,79132,visually appealing,1312328695 +172781,81591,atmospheric,1312330467 +172781,81834,Alan Rickman,1312330433 +172781,81834,based on a book,1312330435 +172781,81834,British,1312330439 +172781,81834,dark,1312330440 +172781,81834,dark fantasy,1312330442 +172781,81834,England,1312330444 +172781,81834,magic,1312330452 +172781,83827,gender identity,1312330343 +172781,83827,imagination,1312330340 +172781,83827,true story,1312330359 +172846,433,short-term memory loss,1367811562 +172846,558,dragon,1367811346 +172846,1359,arnold,1367811025 +172846,1544,spielberg,1367811604 +172846,1693,spielberg,1367811604 +172846,2579,neo-noir,1367811217 +172846,2739,spielberg,1367811604 +172846,2819,conspiracy theory,1367811319 +172846,3480,cheerleading,1367810983 +172846,3489,spielberg,1367811604 +172846,3698,arnold,1367811025 +172846,3783,neo-noir,1367811217 +172846,3986,arnold,1367811025 +172846,4189,christian,1367811157 +172846,4189,jesus,1367810735 +172846,4370,spielberg,1367811605 +172846,4558,arnold,1367811025 +172846,4612,jesus,1367810736 +172846,4802,screwball comedy,1367811069 +172846,5055,dragon,1367811346 +172846,5832,christian,1367811157 +172846,5882,treasure,1367810767 +172846,5942,cheerleading,1367810983 +172846,6157,dark hero,1367810924 +172846,6260,christian,1367811158 +172846,6609,jesus,1367810736 +172846,6683,bollywood,1367810681 +172846,6986,jesus,1367810736 +172846,7004,arnold,1367811025 +172846,7217,noir thriller,1367810819 +172846,7223,noir thriller,1367810819 +172846,7335,noir thriller,1367810819 +172846,7373,dark hero,1367810924 +172846,7943,noir thriller,1367810819 +172846,8972,conspiracy theory,1367811319 +172846,32596,treasure,1367810767 +172846,34048,spielberg,1367811604 +172846,51086,conspiracy theory,1367811319 +172846,52241,short-term memory loss,1367811562 +172846,55732,mars,1367810875 +172846,56775,conspiracy theory,1367811319 +172846,57951,treasure,1367810767 +172846,68554,conspiracy theory,1367811319 +172846,72998,predictable,1337236318 +172846,72998,Visually amazing,1337236318 +172846,74624,christian,1367811158 +172846,81562,mountain climbing,1367811461 +172846,86880,treasure,1367810767 +172846,91529,dark hero,1367810924 +172846,91976,stranded,1367810851 +172846,95875,mars,1367810874 +172846,97938,stranded,1367810851 +172849,260,classic,1431772240 +172849,260,Cult,1431772243 +172849,260,drama,1431772248 +172849,260,Science Fiction,1431772237 +172903,296,dark comedy,1253921418 +172903,665,Yugoslavia,1253921639 +172903,778,dark comedy,1253927400 +172903,1190,Nudity (Full Frontal - Notable),1253922429 +172903,2324,Holocaust,1253921554 +172903,2324,World War II,1253921560 +172903,3083,homosexuality,1253922364 +172903,3083,Oscar (Best Foreign Language Film),1253922379 +172903,3083,Spanish,1253922373 +172903,4235,imdb top 250,1253927306 +172903,5607,Argentina,1253921599 +172903,5607,millenial foreign comedies to see,1253921605 +172903,5607,R,1253921610 +172903,5878,imdb top 250,1253922396 +172903,5878,psychology,1253922389 +172903,6874,Quentin Tarantino,1253922488 +172903,7438,Quentin Tarantino,1253922492 +172903,44694,Spain,1253922405 +172917,3897,Zooey Deschanel,1403513457 +172917,102905,Amanda Seyfried,1400469680 +172917,103980,Cate Blanchett,1404481827 +172917,108932,Manic,1406625536 +172955,58,boring,1288041505 +172955,58,poets,1288041501 +172955,193,bisexuals,1436392180 +172955,193,boobs,1436392083 +172955,193,campy,1436392078 +172955,193,dancing,1436392168 +172955,193,fading star,1436392188 +172955,193,Nudity (Full Frontal),1436392101 +172955,193,overacting,1436392106 +172955,296,diner,1436890675 +172955,296,heroin,1436890675 +172955,296,violent,1436890675 +172955,307,grief,1437100496 +172955,318,freedom,1438748105 +172955,318,inspiring,1438748105 +172955,318,prison,1438748105 +172955,356,chocolates,1436230970 +172955,356,shrimp,1436230970 +172955,356,vietnam,1436230970 +172955,588,Action,1288041612 +172955,588,adventure,1288041615 +172955,588,Disney,1288041604 +172955,593,cannibalism,1437838333 +172955,593,crime,1437838333 +172955,593,police,1437838333 +172955,595,affectionate,1288041547 +172955,595,beautiful,1288041567 +172955,595,Disney,1288041545 +172955,595,heartwarming,1288041555 +172955,924,masterpiece,1436378725 +172955,1617,complicated,1438747989 +172955,1617,neo-noir,1438748019 +172955,1721,Kate Winslet,1445995299 +172955,1721,Leonardo DiCaprio,1445995261 +172955,1721,Oscar (Best Picture),1445995259 +172955,1801,Leonardo DiCaprio,1445995352 +172955,2084,Christian Bale,1449950191 +172955,2084,musical,1449950185 +172955,2084,New York City,1449950199 +172955,2084,newspaper,1449950204 +172955,2858,artsy,1288041132 +172955,2858,comedy,1288041171 +172955,2858,coming of age,1288041142 +172955,2858,dark comedy,1288041138 +172955,2858,Oscar (Best Picture),1288041145 +172955,2858,satirical,1288041156 +172955,3022,Civil War,1444619254 +172955,3022,silent movie,1444619251 +172955,3022,trains,1444619249 +172955,3160,multiple storylines,1444526821 +172955,4361,cross dressing,1436895460 +172955,4361,struggling actor,1436895479 +172955,4705,camp,1441828461 +172955,4705,cross dressing,1441828458 +172955,4705,gay couple,1441828485 +172955,4705,night club,1441828476 +172955,5105,psychic,1437444980 +172955,5105,Venice,1437444966 +172955,5464,cinematography,1288041367 +172955,5992,Julianne Moore,1444526872 +172955,5992,mental illness,1444526884 +172955,5992,Meryl Streep,1444526866 +172955,5992,multiple storylines,1444526841 +172955,5992,Nicole Kidman,1444526891 +172955,6791,fine dining,1444526970 +172955,6791,Food,1444526958 +172955,8638,romantic,1438645238 +172955,30812,aviation,1436490243 +172955,40033,silent movie,1444233275 +172955,40033,silhouettes,1444233268 +172955,70946,campy,1436392331 +172955,70946,child actor,1436392394 +172955,70946,cult film,1436392348 +172955,70946,goblins,1436392370 +172955,70946,Green Goo,1436392343 +172955,70946,nilbog,1436392376 +172955,70946,Popcorn sex,1436392335 +172955,70946,so bad it's good,1436392352 +172955,71205,camp,1436439544 +172955,74754,absurd,1436392011 +172955,74754,cult film,1436392003 +172955,74754,extended sex scene,1436391997 +172955,74754,flabby ass,1436392064 +172955,74754,green screen,1436392040 +172955,74754,quotable,1436392052 +172955,74754,so bad it's good,1436391987 +172955,74754,terrible acting,1436392049 +172955,74754,unintentional comedy,1436391989 +172955,74754,unintentionally funny,1436392059 +172955,76093,adventure,1288041236 +172955,76093,animation,1288041217 +172955,76093,depth of emotion,1288041221 +172955,76093,Excellent Animation,1288041231 +172955,76093,fantasy,1288041245 +172955,78893,bad acting,1436391962 +172955,78893,racist casting,1436391855 +172955,78893,rushed,1436391842 +172955,81568,Anti-Hitler,1450155127 +172955,81568,Anti-Nazi,1450155148 +172955,81568,Donald Duck,1450155111 +172955,81568,World War II,1450155161 +172955,96411,south park,1446002151 +172955,103596,syfy,1438167667 +172955,108190,bad writing,1436267063 +172955,108190,Hunger Games Clone,1436267075 +172955,114662,plastic baby,1445994938 +172955,115617,Disney,1436266848 +172955,115617,japanese influence,1436266862 +172955,115617,robotics,1436266865 +172955,115617,superhero,1436266855 +172955,120222,bad animation,1436391774 +172955,120222,product placement,1436391759 +172955,120222,racist stereotypes,1436391797 +172955,132549,Abortion,1445995193 +172955,132549,Lesbians,1445995188 +172955,132549,LGBT,1445995179 +172955,132549,Lily Tomlin,1445995209 +172979,260,action,1441746361 +172979,260,classic sci-fi,1441746355 +172979,260,space adventure,1441746364 +172979,260,universe,1441746377 +172979,54503,high school,1442175159 +172979,54503,hilarious,1442175152 +172979,115713,AI,1442175247 +172979,115713,alicia vikander,1442175270 +172979,115713,science,1442175281 +172979,117176,physics,1442175214 +172979,117176,science,1442175182 +172979,117176,Stephen Hawking,1442175197 +173025,356,alabama,1438005236 +173025,356,meaning of life,1438005236 +173025,356,real story,1438005236 +173056,69784,Cohen has balls,1249998598 +173056,69784,Goes after the typical people (southern good ol' boys,1249998618 +173076,2022,jesus,1368396941 +173076,2413,entertaining for the wrong reasons,1269213779 +173076,2840,jesus,1368396941 +173076,5135,bollywood,1368396921 +173076,7318,jesus,1368396941 +173076,60037,entertaining for the wrong reasons,1214370554 +173076,89745,corny humor,1337272008 +173076,89745,overrated,1337272002 +173086,344,humor for the narrow-minded,1414791553 +173086,344,Jim Carrey,1414791553 +173086,904,mystery,1422863492 +173086,904,suspense,1422863507 +173086,904,thriller,1422863477 +173086,904,visually appealing,1422863487 +173086,1240,robots,1414791191 +173086,1240,sci fi,1414791191 +173086,1240,time travel,1414791191 +173086,1653,dystopia,1426077796 +173086,1653,sci-fi,1426077794 +173086,2803,humorous,1414791649 +173086,2803,Julia Roberts,1414791649 +173086,2803,thriller,1414791649 +173086,4343,aliens,1450725654 +173086,4343,funny,1450725658 +173086,4370,artificial intelligence,1426077764 +173086,4370,dystopia,1426077752 +173086,4370,sci-fi,1426077773 +173086,4878,alternate timeline,1432650002 +173086,4878,psychology,1432649998 +173086,4878,quirky,1432649994 +173086,4993,boring,1450081794 +173086,4993,way too long,1450081788 +173086,7099,environmental,1423206613 +173086,7099,fantasy world,1423206611 +173086,7099,sci-fi,1423206621 +173086,7153,boring,1450081765 +173086,7153,long,1450081762 +173086,8644,dystopia,1426062791 +173086,8644,Isaac Asimov,1426062742 +173086,8644,sci-fi,1426062740 +173086,32587,comic book,1414791254 +173086,32587,Jessica Alba,1414791254 +173086,32587,visually appealing,1414791254 +173086,34319,dystopia,1426062651 +173086,34319,Scarlett Johansson,1426064105 +173086,34319,sci-fi,1426062664 +173086,34319,thriller,1426064113 +173086,44665,Bruce Willis,1414949444 +173086,44665,humorous,1414948884 +173086,44665,mistery,1414948883 +173086,44665,twist ending,1414948883 +173086,48516,Jack Nicholson,1415000487 +173086,48516,Leonardo DiCaprio,1415000489 +173086,48516,psychology,1415000500 +173086,48516,romance,1415000504 +173086,48516,sexuality,1415000520 +173086,48516,twist ending,1415000493 +173086,49278,implausible plot elements,1426063451 +173086,49278,sci-fi,1426063459 +173086,75985,ending,1414791605 +173086,75985,script,1414791605 +173086,84772,aliens,1450725483 +173086,84772,Atheism,1450725480 +173086,84772,comedy,1450725489 +173086,84772,geeky,1450725486 +173086,89745,action,1422863570 +173086,89745,bad dialogue,1422863632 +173086,89745,bad script,1422863616 +173086,89745,predictable,1422863577 +173086,89745,Scarlett Johansson,1422863557 +173086,89745,superhero,1422863549 +173086,89745,visually stunning,1422863546 +173086,90405,great idea,1426061252 +173086,90405,great idea wasted,1426061266 +173086,90405,Olivia Wilde,1426061231 +173086,90405,sci-fi,1426061256 +173086,90405,survival,1426062632 +173086,92259,acting,1423161936 +173086,92259,funny,1423161928 +173086,94466,dystopia,1450081828 +173086,94466,Science fiction,1450081834 +173086,99114,humorous,1415000588 +173086,99114,Quentin Tarantino,1415000567 +173086,99114,Samuel L. Jackson,1415000571 +173086,99114,visually appealing,1415000574 +173086,101362,action,1414791377 +173086,101362,Gerard Butler,1414791376 +173086,101362,suspense,1414791377 +173086,101362,visually appealing,1414791376 +173086,109321,exciting,1423399637 +173086,109321,human nature and social structure,1423399993 +173086,109321,human nature depicted,1423399637 +173086,109321,learning,1423399991 +173086,109321,warm,1423399637 +173086,109487,bad dialogue,1429802863 +173086,109487,corny,1429802864 +173086,109487,good science,1429802892 +173086,109487,plot holes,1429802866 +173086,109487,relativity,1429802882 +173086,109487,space,1429802878 +173086,115713,artificial intelligence,1436962351 +173086,115713,inconsistencies in plot,1436962443 +173090,858,Overrated,1440150336 +173090,923,classic,1440150303 +173090,1197,overrated,1440150324 +173090,2762,plot twist,1440150314 +173122,480,dinosaurs,1378570988 +173134,4914,Jean-Luc Godard,1245254338 +173215,2003,Steven Spielberg,1168463085 +173215,2004,Steven Spielberg,1168463088 +173230,41566,christianity,1451707879 +173230,41566,witch,1451707872 +173288,5618,Hayao Miyazaki,1424269995 +173288,5618,Studio Ghibli,1424269990 +173296,2076,disturbing,1229041415 +173298,260,Amazing cast for one of the most successful sci-fi of the history of cinema. An epic story,1433941996 +173314,47,psychological,1334173257 +173314,47,psychology,1334173255 +173314,356,Oscar (Best Picture),1334173199 +173314,356,Tom Hanks,1334173195 +173314,6874,nonlinear,1334173175 +173314,6874,Quentin Tarantino,1334173167 +173314,7438,Quentin Tarantino,1334173171 +173314,68157,Quentin Tarantino,1334173416 +173314,89864,disease,1334173561 +173314,89864,friendship,1334173559 +173346,260,#awesome,1440681356 +173346,260,#fictionatitsbest,1440681377 +173346,260,#mustwatch,1440681366 +173353,260,epic,1438547811 +173353,260,nostalgia,1438547818 +173372,260,action,1437790690 +173372,260,adventure,1437790680 +173372,260,fantasy,1437790687 +173372,260,space adventure,1437790694 +173372,68099,overcoming obstacles,1437791138 +173372,68099,space adventure,1437791138 +173372,68099,teamwork,1437791138 +173377,260,magic,1434969744 +173377,260,space,1434969724 +173384,260,adventure,1437820220 +173384,260,saga,1437820209 +173384,260,science-fiction,1437820215 +173414,128626,road movie,1452445504 +173430,88,SNL,1187542066 +173430,413,Buscemi,1187541934 +173430,546,video game adaptation,1187541987 +173430,2600,techno-evolution,1187542032 +173430,2841,Ghost Story,1187542082 +173430,6016,Classic,1187541931 +173431,260,blockbuster,1441434447 +173431,260,space opera,1441434441 +173431,1080,Biblical,1441434899 +173431,1080,satire,1441434882 +173431,1219,classic,1441434945 +173431,1219,horror,1441434941 +173431,2324,comedy,1441434988 +173431,2324,holocaust,1441434975 +173445,260,classic sci-fi,1443754117 +173445,260,nostalgia,1443754102 +173452,1,adventure,1445458888 +173452,1,animation,1445458806 +173452,1,buddy movie,1445458826 +173452,1,clever,1445458820 +173452,1,comedy,1445458822 +173452,1,cowboy,1445458861 +173452,1,dinosaur,1445458853 +173452,1,dolls,1445458859 +173452,1,friendship,1445458828 +173452,1,funny,1445458808 +173452,1,pixar,1445458804 +173452,1,Tim Allen,1445458849 +173452,1,Tom Hanks,1445458810 +173452,1,toys,1445458815 +173452,1,UNLIKELY FRIENDSHIPS,1445458843 +173452,1,witty,1445458818 +173452,27,1970s,1446080168 +173452,27,Bechdel Test:Pass,1446080125 +173452,27,Christina Ricci,1446080139 +173452,27,coming of age,1446080159 +173452,27,Demi Moore,1446080127 +173452,27,friendship,1446080128 +173452,27,Gaby Hoffman,1446080130 +173452,27,great soundtrack,1446080150 +173452,27,Janeane Garofalo,1446080131 +173452,27,retro,1446080162 +173452,27,Rita Wilson,1446080134 +173452,27,Rosie O'Donnell,1446080135 +173452,27,Thora Birch,1446080137 +173452,27,women,1446080141 +173452,39,1990s,1445972544 +173452,39,Alicia Silverstone,1445972531 +173452,39,Brittany Murphy,1445972542 +173452,39,Donald Faison,1445972585 +173452,39,fashion,1445973934 +173452,39,funny,1445972536 +173452,39,high school,1445972529 +173452,39,Jane Austen,1445972534 +173452,39,Paul Rudd,1445973927 +173452,39,Stacey Dash,1445972572 +173452,39,teen movie,1445972527 +173452,141,comedy,1446079741 +173452,141,cross dressing,1446079749 +173452,141,drag queens,1446079764 +173452,141,Gay stereotypes,1446079744 +173452,141,Gene Hackman,1446079756 +173452,141,Hank Azaria,1446079753 +173452,141,Nathan Lane,1446079771 +173452,141,Robin Williams,1446079747 +173452,158,Christina Ricci,1446166520 +173452,158,cute,1446166528 +173452,158,family,1446166522 +173452,158,funny,1446166525 +173452,158,ghosts,1446166518 +173452,158,sweet,1446166532 +173452,165,action,1445471086 +173452,165,action packed,1445471128 +173452,165,bruce willis,1445471078 +173452,165,heist,1445471091 +173452,165,Jeremy Irons,1445471130 +173452,165,John McClane,1445471121 +173452,165,plot point:solving riddles/puzzles,1445471127 +173452,165,Samuel L. Jackson,1445471080 +173452,165,terrorism,1445471090 +173452,165,vengeance,1445471152 +173452,165,violent,1445471084 +173452,173,future,1446079299 +173452,173,police,1446079302 +173452,173,police corruption,1446079305 +173452,173,Rob Schneider,1446079300 +173452,173,sci-fi,1446079307 +173452,173,so bad it's good,1446079296 +173452,173,Sylvester Stallone,1446079313 +173452,203,cross dressing,1446078696 +173452,203,drag queens,1446078710 +173452,203,homophobia,1446078697 +173452,203,John Leguizamo,1446078699 +173452,203,road trip,1446078718 +173452,203,Stockard Channing,1446078703 +173452,203,Wesley Snipes,1446078701 +173452,314,family,1445402788 +173452,314,Irish,1445402802 +173452,314,legends,1445402795 +173452,314,mythology,1445402790 +173452,314,seals,1445402787 +173452,314,selkies,1445402792 +173452,318,friendship,1445573250 +173452,318,Morgan Freeman,1445573244 +173452,318,prison,1445573246 +173452,318,prison escape,1445573247 +173452,318,Tim Robbins,1445573259 +173452,480,action,1445402073 +173452,480,adventure,1445402092 +173452,480,based on a book,1445402082 +173452,480,Dinosaurs,1445402064 +173452,480,Jeff Goldblum,1445402079 +173452,480,John Williams,1445402119 +173452,480,Laura Dern,1445402096 +173452,480,Michael Crichton,1445402067 +173452,480,samuel l. jackson,1445402112 +173452,480,sci-fi,1445402070 +173452,480,Steven Spielberg,1445402089 +173452,480,tyrannosaurus rex,1445402126 +173452,500,Comedy,1446076359 +173452,500,cross dressing,1446076361 +173452,500,divorce,1446076362 +173452,500,double life,1446076376 +173452,500,funny,1446076373 +173452,500,Pierce Brosnan,1446076375 +173452,500,Robin Williams,1446076357 +173452,500,Sally Field,1446076364 +173452,500,transmisogyny,1446076378 +173452,539,Bill Pullman,1445485285 +173452,539,Empire State Building,1445485300 +173452,539,father-son relationship,1445485289 +173452,539,Meg Ryan,1445485278 +173452,539,New York City,1445485292 +173452,539,Nora Ephron,1445485307 +173452,539,Romance,1445485280 +173452,539,romantic comedy,1445485282 +173452,539,Rosie O'Donnell,1445485316 +173452,539,Seattle,1445485315 +173452,539,single father,1445485288 +173452,539,Tom Hanks,1445485277 +173452,586,Catherine O'Hara,1445571304 +173452,586,christmas,1445571276 +173452,586,Daniel Stern,1445571301 +173452,586,family,1445571280 +173452,586,humor,1445571292 +173452,586,Joe Pesci,1445571298 +173452,586,kid on his own,1445571288 +173452,586,Macaulay Culkin,1445571282 +173452,586,traps,1445571295 +173452,589,apocalypse,1445402283 +173452,589,Arnold Schwarzenegger,1445402268 +173452,589,artificial intelligence,1445402346 +173452,589,assassin,1445402280 +173452,589,computers,1445402276 +173452,589,cyborgs,1445402285 +173452,589,James Cameron,1445402265 +173452,589,Linda Hamilton,1445402263 +173452,589,mother-son relationship,1445402306 +173452,589,nuclear war,1445402320 +173452,589,Quotable,1445402311 +173452,589,Robert Patrick,1445402344 +173452,589,robots,1445402273 +173452,589,sci-fi,1445402291 +173452,589,strong female character,1445402296 +173452,589,time travel,1445402259 +173452,673,aliens,1446078547 +173452,673,basketball,1446078548 +173452,673,big game,1446078570 +173452,673,Bugs Bunny,1446078561 +173452,673,competition,1446078568 +173452,673,michael jordan,1446078559 +173452,673,talking animals,1446078563 +173452,733,Action,1445473108 +173452,733,action packed,1445471196 +173452,733,Alcatraz,1445471175 +173452,733,biological warfare,1445471179 +173452,733,Ed Harris,1445471189 +173452,733,Michael Bay,1445471184 +173452,733,Nicolas Cage,1445471194 +173452,733,prison,1445471187 +173452,733,Sean Connery,1445471192 +173452,733,Terrorism,1445471177 +173452,778,addiction,1446167852 +173452,778,based on a book,1446167857 +173452,778,black comedy,1446167844 +173452,778,Danny Boyle,1446167870 +173452,778,dark comedy,1446167839 +173452,778,drug abuse,1446167861 +173452,778,drugs,1446167841 +173452,778,edinburgh,1446167877 +173452,778,Ewan McGregor,1446167848 +173452,778,great soundtrack,1446167855 +173452,778,Irvine Welsh,1446167881 +173452,778,junkies,1446167894 +173452,778,narrated,1446167867 +173452,778,social commentary,1446167846 +173452,778,United Kingdom,1446167874 +173452,778,vomit,1446167902 +173452,780,action,1445474879 +173452,780,alien invasion,1445474871 +173452,780,aliens,1445474875 +173452,780,americans save the world,1445474918 +173452,780,Fourth of July,1445474945 +173452,780,humorous,1445474891 +173452,780,Jeff Goldblum,1445474886 +173452,780,Mary McDonnell,1445474907 +173452,780,sci-fi,1445474877 +173452,780,The dog lives,1445474922 +173452,780,US President,1445474884 +173452,780,war,1445474882 +173452,780,will smith,1445474873 +173452,784,black comedy,1446080030 +173452,784,Jim Carrey,1446080028 +173452,784,not funny,1446080042 +173452,784,scary not funny,1446080038 +173452,784,stalker,1446080032 +173452,830,Bette Midler,1446079451 +173452,830,Diane Keaton,1446079458 +173452,830,divorce,1446079439 +173452,830,Goldie Hawn,1446079453 +173452,830,Maggie Smith,1446079463 +173452,830,revenge,1446079442 +173452,830,sexism,1446079467 +173452,830,women,1446079441 +173452,837,bad parents,1445403155 +173452,837,based on book,1445403163 +173452,837,children,1445403154 +173452,837,genius,1445403159 +173452,837,Mara Wilson,1445403171 +173452,837,Rhea Perlman,1445403181 +173452,837,Roald Dahl,1445403150 +173452,837,strong female lead,1445403187 +173452,902,1960s,1446167589 +173452,902,audrey hepburn,1446167577 +173452,902,bittersweet,1446167581 +173452,902,New York,1446167579 +173452,902,romance,1446167583 +173452,902,SOCIAL CLIMBING,1446167593 +173452,1013,family,1446079949 +173452,1013,Hayley Mills,1446079938 +173452,1013,summer camp,1446079933 +173452,1013,twins,1446079940 +173452,1013,twins separated at birth,1446079936 +173452,1020,bobsled,1446078901 +173452,1020,comedy,1446078905 +173452,1020,Jamaica,1446078896 +173452,1020,John Candy,1446078903 +173452,1020,Leon Robinson,1446078923 +173452,1020,Malik Yoba,1446078922 +173452,1020,Olympics,1446078894 +173452,1020,quotable,1446078908 +173452,1020,sports,1446078897 +173452,1020,underdogs,1446078898 +173452,1028,Based on a Book,1446079598 +173452,1028,Disney,1446079581 +173452,1028,family,1446079594 +173452,1028,Julie Andrews,1446079577 +173452,1028,London,1446079601 +173452,1028,magic,1446079583 +173452,1028,magical nanny,1446079603 +173452,1028,musical,1446079579 +173452,1028,nanny,1446079591 +173452,1028,touching,1446079608 +173452,1035,Austria,1446078654 +173452,1035,Bechdel Test:Pass,1446078668 +173452,1035,family,1446078649 +173452,1035,julie andrews,1446078647 +173452,1035,musical,1446078645 +173452,1035,Nazis,1446078652 +173452,1035,nuns,1446078663 +173452,1035,World War II,1446078651 +173452,1036,action,1445473426 +173452,1036,action packed,1445473442 +173452,1036,Alan Rickman,1445473432 +173452,1036,average hero,1445473495 +173452,1036,breaking glass,1445473457 +173452,1036,Bruce Willis,1445473424 +173452,1036,California,1445473468 +173452,1036,christmas,1445473434 +173452,1036,explosions,1445473440 +173452,1036,Heist,1445473475 +173452,1036,humorous,1445473427 +173452,1036,John McClane,1445473486 +173452,1036,police,1445473445 +173452,1036,realistic action,1445473482 +173452,1036,tense,1445473436 +173452,1036,terrorism,1445473437 +173452,1036,violence,1445473448 +173452,1188,Australian,1446080298 +173452,1188,ballroom dancing,1446080300 +173452,1188,Baz Luhrman,1446166247 +173452,1188,Bechdel Test:Fail,1446166244 +173452,1188,campy,1446166254 +173452,1188,competition,1446080301 +173452,1188,dance,1446080296 +173452,1188,dancing,1446080295 +173452,1188,notable soundtrack,1446080308 +173452,1188,romance,1446166240 +173452,1188,self discovery,1446166256 +173452,1188,stylized,1446166252 +173452,1188,visually stunning,1446080306 +173452,1197,Andre the Giant,1445474634 +173452,1197,author:William Goldman,1445474605 +173452,1197,based on a book,1445474562 +173452,1197,Bechdel Test:Fail,1445474551 +173452,1197,Billy Crystal,1445474616 +173452,1197,Cary Elwes,1445474555 +173452,1197,Chris Sarandon,1445474631 +173452,1197,Christopher Guest,1445474584 +173452,1197,fairy tale,1445474535 +173452,1197,fantasy,1445474533 +173452,1197,fencing,1445474602 +173452,1197,funny,1445474541 +173452,1197,Mandy Patinkin,1445474598 +173452,1197,pirates,1445474560 +173452,1197,Quotable,1445474549 +173452,1197,revenge,1445474568 +173452,1197,Rob Reiner,1445474574 +173452,1197,Robin Wright Penn,1445474553 +173452,1197,romance,1445474537 +173452,1197,sword fight,1445474543 +173452,1197,Wallace Shawn,1445474558 +173452,1197,witty,1445474539 +173452,1200,action,1445401847 +173452,1200,aliens,1445401819 +173452,1200,atmospheric,1445401826 +173452,1200,Bechdel Test:Pass,1445401877 +173452,1200,female hero,1445401858 +173452,1200,game over,1445401891 +173452,1200,mother-daughter themes,1445401868 +173452,1200,Quotable,1445401884 +173452,1200,sci-fi,1445401829 +173452,1200,Sigourney Weaver,1445401816 +173452,1200,space,1445401821 +173452,1200,space craft,1445401845 +173452,1200,strong femal lead,1445401834 +173452,1214,aliens,1445401547 +173452,1214,Bechdel Test:Pass,1445401614 +173452,1214,female heroine,1445401595 +173452,1214,franchise,1445401619 +173452,1214,futuristic,1445401624 +173452,1214,Mako Mori Test:Pass,1445401605 +173452,1214,sci-fi,1445401545 +173452,1214,Sigourney Weaver,1445401557 +173452,1214,space,1445401550 +173452,1214,space travel,1445401560 +173452,1214,spaceship,1445401586 +173452,1220,car chase,1445401172 +173452,1220,comedy,1445401159 +173452,1220,great soundtrack,1445401169 +173452,1230,Diane Keaton,1446166447 +173452,1230,funny,1446166431 +173452,1230,New York,1446166440 +173452,1230,new york city,1446166433 +173452,1230,quirky,1446166427 +173452,1230,relationships,1446166429 +173452,1230,romantic,1446166435 +173452,1230,screwball,1446166449 +173452,1230,witty,1446166437 +173452,1230,Woody Allen,1446166425 +173452,1230,Woody Allen is a terrible person,1446166472 +173452,1246,bittersweet,1445572875 +173452,1246,boarding school,1445572858 +173452,1246,Coming of age,1445572870 +173452,1246,education,1445572878 +173452,1246,English literature,1445572872 +173452,1246,friendship,1445572862 +173452,1246,High School,1445572854 +173452,1246,poetry,1445572864 +173452,1246,Quotable,1445572868 +173452,1246,Robin Williams,1445572856 +173452,1246,school drama,1445572866 +173452,1246,suicide,1445572860 +173452,1246,teacher,1445572904 +173452,1258,atmospheric,1446075380 +173452,1258,based on a book,1446075392 +173452,1258,family,1446075423 +173452,1258,Horror,1446075386 +173452,1258,jack nicholson,1446075378 +173452,1258,mental illness,1446075393 +173452,1258,psychological,1446075379 +173452,1258,scary,1446075407 +173452,1258,Shelley Duvall,1446075417 +173452,1258,Stanley Kubrick,1446075375 +173452,1258,Stephen King,1446075382 +173452,1258,tricycle,1446075411 +173452,1259,based on a book,1445573071 +173452,1259,childhood,1445573064 +173452,1259,coming of age,1445573059 +173452,1259,friendship,1445573060 +173452,1259,Rob Reiner,1445573074 +173452,1259,Stephen King,1445573062 +173452,1259,Wil Wheaton,1445573085 +173452,1271,based on a book,1446072016 +173452,1271,Bechdel Test:Pass,1446072040 +173452,1271,friendship,1446072023 +173452,1271,Jessica Tandy,1446072043 +173452,1271,Kathy Bates,1446072092 +173452,1271,ku klux klan,1446072018 +173452,1271,Mary-Louise Parker,1446072086 +173452,1271,racism,1446072020 +173452,1271,self discovery,1446072081 +173452,1271,southern US,1446072094 +173452,1271,Strong Women,1446072070 +173452,1271,strong women characters,1446072074 +173452,1271,train,1446072097 +173452,1271,unlikely friendships,1446072015 +173452,1291,action,1445473339 +173452,1291,Adventure,1445473317 +173452,1291,archaeology,1445473401 +173452,1291,Biblical,1445473393 +173452,1291,father-son relationship,1445473349 +173452,1291,Harrison Ford,1445473313 +173452,1291,Holy Grail,1445473330 +173452,1291,Nazis,1445473320 +173452,1291,Sean Connery,1445473315 +173452,1291,Steven Spielberg,1445473324 +173452,1291,treasure,1445473310 +173452,1370,action,1445459150 +173452,1370,airport,1445459152 +173452,1370,Bruce Willis,1445459149 +173452,1370,explosions,1445459177 +173452,1370,sequel,1445459164 +173452,1370,terrorism,1445459173 +173452,1387,animal attacks,1446077064 +173452,1387,man vs nature,1446077073 +173452,1387,ocean,1446077071 +173452,1387,ominous,1446077066 +173452,1387,quotable,1446077096 +173452,1387,Roy Scheider,1446077083 +173452,1387,scary,1446077068 +173452,1387,shark,1446077060 +173452,1387,Steven Spielberg,1446077062 +173452,1387,suspenseful,1446077059 +173452,1387,visceral,1446077078 +173452,1527,action,1445403034 +173452,1527,aliens,1445402966 +173452,1527,Bruce Willis,1445402962 +173452,1527,campy,1445402982 +173452,1527,Chris Tucker,1445402976 +173452,1527,colorful,1445403003 +173452,1527,excellent costumes,1445403047 +173452,1527,futuristic,1445402963 +173452,1527,Gary Oldman,1445402973 +173452,1527,great cinematography,1445402981 +173452,1527,great visuals,1445403006 +173452,1527,humorous,1445402987 +173452,1527,Luc Besson,1445402971 +173452,1527,Milla Jovovich,1445402960 +173452,1527,plain fun,1445403023 +173452,1527,sci-fi,1445402958 +173452,1527,stylized,1445402986 +173452,1527,visually appealing,1445402968 +173452,1544,based on a book,1446079259 +173452,1544,dinosaurs,1446079249 +173452,1544,Jeff Goldblum,1446079267 +173452,1544,Julianne Moore,1446079268 +173452,1544,Michael Crichton,1446079275 +173452,1544,Pete Postlethwaite,1446079272 +173452,1544,so bad it's good,1446079255 +173452,1544,Vince Vaughn,1446079270 +173452,1552,action,1445459094 +173452,1552,airplane,1445459100 +173452,1552,Danny Trejo,1445459124 +173452,1552,explosions,1445459135 +173452,1552,John Cusack,1445459104 +173452,1552,John Malkovich,1445459106 +173452,1552,Nicolas Cage,1445459096 +173452,1552,prison,1445459099 +173452,1552,Steve Buscemi,1445459102 +173452,1566,Danny DeVito,1445571351 +173452,1566,disney,1445571340 +173452,1566,excellent villain,1445571392 +173452,1566,Greek mythology,1445571341 +173452,1566,Michael Bolton,1445571362 +173452,1566,Myth,1445571349 +173452,1566,strong female character,1445571381 +173452,1566,stylized,1445571364 +173452,1569,gay friend,1446080212 +173452,1569,jealousy,1446080207 +173452,1569,karaoke,1446080215 +173452,1569,LOVE TRIANGLES,1446080209 +173452,1569,romantic comedy,1446080203 +173452,1569,sexist stereotypes,1446080229 +173452,1569,wedding,1446080201 +173452,1580,action,1445473642 +173452,1580,aliens,1445473609 +173452,1580,buddy movie,1445473646 +173452,1580,cockroaches,1445473688 +173452,1580,comedy,1445473617 +173452,1580,quotable,1445473684 +173452,1580,Rip Torn,1445473693 +173452,1580,sci-fi,1445473615 +173452,1580,Tommy Lee Jones,1445473613 +173452,1580,Vincent D'Onofrio,1445473699 +173452,1580,Will Smith,1445473611 +173452,1620,Ashley Judd,1446075337 +173452,1620,based on a book,1446075332 +173452,1620,detective,1446075329 +173452,1620,Morgan Freeman,1446075335 +173452,1620,police investigation,1446075340 +173452,1620,thriller,1446075334 +173452,1625,michael douglas,1446080184 +173452,1625,psychological,1446080182 +173452,1676,adapted from:book,1445459053 +173452,1676,aliens,1445459021 +173452,1676,based on a book,1445459033 +173452,1676,campy,1445459042 +173452,1676,futuristic,1445459075 +173452,1676,giant space bugs,1445459047 +173452,1676,military,1445459040 +173452,1676,Neil Patrick Harris,1445459037 +173452,1676,Nudity (Topless),1445459030 +173452,1676,sci-fi,1445459024 +173452,1676,social commentary,1445459026 +173452,1676,space,1445459019 +173452,1704,academia,1446168103 +173452,1704,Ben Affleck,1446168074 +173452,1704,boston,1446168076 +173452,1704,genius,1446168069 +173452,1704,mathematics,1446168067 +173452,1704,Matt Damon,1446168065 +173452,1704,mentor,1446168064 +173452,1704,Minnie Driver,1446168098 +173452,1704,Robin Williams,1446168062 +173452,1704,university,1446168078 +173452,1721,based on a true story,1445473563 +173452,1721,catastrophe,1445473558 +173452,1721,disaster,1445473540 +173452,1721,drama,1445473581 +173452,1721,James Cameron,1445473568 +173452,1721,Kate Winslet,1445473565 +173452,1721,Leonardo DiCaprio,1445473538 +173452,1721,love story,1445473543 +173452,1721,romance,1445473536 +173452,1907,animation,1445571512 +173452,1907,China,1445571518 +173452,1907,cross dressing,1445571523 +173452,1907,Disney,1445571510 +173452,1907,Eddie Murphy,1445571519 +173452,1907,family,1445571528 +173452,1907,female lead,1445571570 +173452,1907,feminist,1445571543 +173452,1907,gender disguise,1445571566 +173452,1907,great soundtrack,1445571516 +173452,1907,heroine,1445571529 +173452,1907,Ming-Na Wen,1445571615 +173452,1907,strong female lead,1445571513 +173452,1907,strong women,1445571558 +173452,1909,aliens,1445401772 +173452,1909,Based on a TV show,1445401774 +173452,1909,conspiracy,1445401803 +173452,1909,FBI,1445401770 +173452,1909,Gillian Anderson,1445401781 +173452,1909,sci-fi,1445401792 +173452,1909,science fiction,1445401801 +173452,1909,X-Files,1445401784 +173452,1967,Adventure,1446075213 +173452,1967,Coming-of-Age,1446075225 +173452,1967,David Bowie,1446075207 +173452,1967,fantasy,1446075206 +173452,1967,Jennifer Connelly,1446075215 +173452,1967,Jim Henson,1446075212 +173452,1967,maze,1446075210 +173452,1967,muppets,1446075209 +173452,1967,music,1446075219 +173452,1967,quest,1446075231 +173452,1967,siblings,1446075246 +173452,1967,strong female lead,1446075238 +173452,2005,1980s,1445401441 +173452,2005,adventure,1445401436 +173452,2005,friendship,1445401439 +173452,2005,treasure,1445401445 +173452,2018,animals,1446078516 +173452,2018,animation,1446078520 +173452,2018,deer,1446078522 +173452,2018,Disney,1446078515 +173452,2018,Family,1446078528 +173452,2018,Friends,1446078530 +173452,2018,talking animals,1446078518 +173452,2052,Bette Midler,1445402209 +173452,2052,campy,1445402238 +173452,2052,curse,1445402204 +173452,2052,Disney,1445402241 +173452,2052,halloween,1445402207 +173452,2052,Kathy Najimy,1445402227 +173452,2052,Sarah Jessica Parker,1445402230 +173452,2052,talking cat,1445402239 +173452,2052,Thora Birch,1445402233 +173452,2052,witches,1445402202 +173452,2085,adventure,1446076116 +173452,2085,animation,1446076084 +173452,2085,Disney,1446076082 +173452,2085,dogs,1446076085 +173452,2085,family,1446076110 +173452,2085,love,1446076106 +173452,2085,talking animals,1446076089 +173452,2085,villainess,1446076145 +173452,2124,Anjelica Huston,1446079121 +173452,2124,Bermuda Triangle,1446079097 +173452,2124,black comedy,1446079072 +173452,2124,Christina Ricci,1446079076 +173452,2124,Christopher Lloyd,1446079089 +173452,2124,Family,1446079093 +173452,2124,impostor,1446079085 +173452,2124,lawyers,1446079080 +173452,2124,mother-son relationship,1446079082 +173452,2124,quirky,1446079070 +173452,2124,Raul Julia,1446079108 +173452,2124,school play,1446079100 +173452,2124,sword fight,1446079075 +173452,2140,fantasy,1446075294 +173452,2140,good vs evil,1446075303 +173452,2140,Jim Henson,1446075296 +173452,2140,Puppets,1446075298 +173452,2140,quest,1446075311 +173452,2160,Antichrist,1446167927 +173452,2160,Atmospheric,1446167924 +173452,2160,based on a book,1446167934 +173452,2160,evil,1446167953 +173452,2160,Mia Farrow,1446167936 +173452,2160,paranoia,1446167931 +173452,2160,religion,1446167940 +173452,2160,Roman Polanski,1446167926 +173452,2160,scary,1446167946 +173452,2160,suspense,1446167943 +173452,2193,adventure,1445458296 +173452,2193,fantasy,1445458281 +173452,2193,fantasy world,1445458299 +173452,2193,magic,1445458301 +173452,2193,sword and sorcery,1445458285 +173452,2193,talking animals,1445458328 +173452,2193,Val Kilmer,1445458317 +173452,2193,Warwick Davis,1445458314 +173452,2193,witches,1445458326 +173452,2193,wizards,1445458283 +173452,2248,1980s,1446080256 +173452,2248,funny,1446080272 +173452,2248,high school,1446080253 +173452,2248,Ione Skye,1446080262 +173452,2248,John Cusack,1446080254 +173452,2248,Lili Taylor,1446080263 +173452,2248,romantic,1446080259 +173452,2248,teenagers,1446080279 +173452,2273,Action,1446075981 +173452,2273,buddy movie,1446075986 +173452,2273,Chris Tucker,1446075850 +173452,2273,Comedy,1446075984 +173452,2273,Jackie Chan,1446075852 +173452,2273,Ken Leung,1446076005 +173452,2273,kidnapping,1446075993 +173452,2273,martial arts,1446075860 +173452,2273,police,1446075988 +173452,2273,unlikely friendships,1446075990 +173452,2278,car chase,1446167282 +173452,2300,Broadway,1446079029 +173452,2300,funny,1446079050 +173452,2300,Gene Wilder,1446079041 +173452,2300,Mel Brooks,1446079033 +173452,2300,nazis,1446079040 +173452,2300,Theater,1446079034 +173452,2359,funny,1446076503 +173452,2359,Ireland,1446076497 +173452,2359,Irish,1446076495 +173452,2359,lottery tickets,1446076507 +173452,2359,phone booth,1446076505 +173452,2395,Bill Murray,1446076021 +173452,2395,coming of age,1446076022 +173452,2395,high school,1446076025 +173452,2395,Jason Schwartzman,1446076028 +173452,2395,private school,1446076034 +173452,2395,unlikeable characters,1446076051 +173452,2395,Wes Anderson,1446076019 +173452,2413,adapted from:game,1446077540 +173452,2413,alternate endings,1446077535 +173452,2413,blackmail,1446077550 +173452,2413,Christopher Lloyd,1446077559 +173452,2413,hilarious,1446077537 +173452,2413,Madeline Kahn,1446077551 +173452,2413,murder,1446077541 +173452,2413,Tim Curry,1446077534 +173452,2413,unreliable narrators,1446077557 +173452,2413,whodunit,1446077543 +173452,2413,wordplay,1446077555 +173452,2423,Chevy Chase,1445571629 +173452,2423,christmas,1445571623 +173452,2423,comedy,1445571628 +173452,2423,family,1445571658 +173452,2423,Juliette Lewis,1445571645 +173452,2423,National Lampoon,1445571626 +173452,2423,suburbia,1445571634 +173452,2424,bookshop,1445484512 +173452,2424,e-mail,1445484522 +173452,2424,internet,1445484524 +173452,2424,Meg Ryan,1445484505 +173452,2424,New York City,1445484515 +173452,2424,Nora Ephron,1445484530 +173452,2424,Romance,1445484508 +173452,2424,romantic comedy,1445484510 +173452,2424,Tom Hanks,1445484506 +173452,2432,divorce,1446076547 +173452,2432,terminal illness,1446076550 +173452,2502,comedy,1446076657 +173452,2502,corporate America,1446076666 +173452,2502,funny,1446076674 +173452,2502,Horrible boss,1446076688 +173452,2502,Jennifer Aniston,1446076663 +173452,2502,off-beat comedy,1446076669 +173452,2502,office,1446076662 +173452,2502,quotable,1446076677 +173452,2502,revenge,1446076672 +173452,2502,stapler,1446076682 +173452,2502,workplace,1446076658 +173452,2571,action,1445402516 +173452,2571,alternate reality,1445402679 +173452,2571,artificial intelligence,1445402683 +173452,2571,Carrie-Anne Moss,1445402618 +173452,2571,cyberpunk,1445402610 +173452,2571,dystopia,1445402588 +173452,2571,fight scenes,1445402667 +173452,2571,Hugo Weaving,1445402605 +173452,2571,Keanu Reeves,1445402596 +173452,2571,Laurence Fishburne,1445402607 +173452,2571,man versus machine,1445402621 +173452,2571,post-apocalyptic,1445402677 +173452,2571,sci-fi,1445402514 +173452,2571,Special Effects,1445402594 +173452,2571,stylized,1445402603 +173452,2571,virtual reality,1445402586 +173452,2571,Wachowski SciFi,1445402641 +173452,2572,adaptation,1445973987 +173452,2572,Bechdel Test: Pass,1445974068 +173452,2572,clever writing,1445973972 +173452,2572,comedy,1445973959 +173452,2572,coming of age,1445973976 +173452,2572,feminism,1445973997 +173452,2572,girl power,1445973979 +173452,2572,Heath Ledger,1445973970 +173452,2572,high school,1445973961 +173452,2572,inspired by shakespeare,1445973991 +173452,2572,Joseph Gordon-Levitt,1445973963 +173452,2572,Julia Stiles,1445973954 +173452,2572,romantic,1445973957 +173452,2572,shakespeare,1445973965 +173452,2572,teen,1445973956 +173452,2692,alternate endings,1446073542 +173452,2692,bright red hair,1446073646 +173452,2692,butterfly effect,1446073677 +173452,2692,Franka Potente,1446073555 +173452,2692,German,1446073549 +173452,2692,heist,1446073564 +173452,2692,humorous,1446073559 +173452,2692,intense,1446073546 +173452,2692,madcap,1446073667 +173452,2692,nonlinear,1446073544 +173452,2692,notable soundtrack,1446073552 +173452,2692,running,1446073701 +173452,2692,strong female lead,1446073688 +173452,2692,time,1446073657 +173452,2692,time loop,1446073558 +173452,2761,animation,1445401638 +173452,2761,emotional,1445401641 +173452,2761,friendship,1445401651 +173452,2761,robots,1445401636 +173452,2761,Vin Diesel,1445401645 +173452,2804,brothers,1446076215 +173452,2804,Christmas,1446076199 +173452,2804,coming of age,1446076187 +173452,2804,family,1446076195 +173452,2804,narrated,1446076181 +173452,2804,retro,1446076211 +173452,2926,1960s,1446078142 +173452,2926,60s,1446078155 +173452,2926,baltimore,1446078143 +173452,2926,civil rights,1446078149 +173452,2926,dancing,1446078178 +173452,2926,John Waters,1446078163 +173452,2926,racism,1446078160 +173452,2926,retro,1446078165 +173452,2926,Ricki Lake,1446078161 +173452,2926,rock and roll,1446078145 +173452,2926,segregation,1446078150 +173452,2926,teen,1446078146 +173452,3000,adventure,1445457992 +173452,3000,ambiguous character alignments,1445458032 +173452,3000,atmospheric,1445457994 +173452,3000,dreamlike,1445458111 +173452,3000,environmental,1445457987 +173452,3000,fantasy world,1445457984 +173452,3000,gods,1445458007 +173452,3000,great soundtrack,1445458037 +173452,3000,Hayao Miyazaki,1445457978 +173452,3000,Japan,1445457989 +173452,3000,nature,1445458000 +173452,3000,Studio Ghibli,1445457980 +173452,3000,talking animals,1445458004 +173452,3052,Alan Rickman,1446076995 +173452,3052,Alanis Morissette,1446077001 +173452,3052,angels,1446077004 +173452,3052,Ben Affleck,1446076996 +173452,3052,Catholicism,1446076990 +173452,3052,Chris Rock,1446077009 +173452,3052,Christianity,1446076988 +173452,3052,Comedy,1446076984 +173452,3052,funny,1446076986 +173452,3052,irreverent,1446076993 +173452,3052,Kevin Smith,1446076980 +173452,3052,Matt Damon,1446076982 +173452,3052,religion,1446076978 +173452,3052,Salma Hayek,1446077007 +173452,3052,slackers,1446077011 +173452,3247,Bechdel Test:Pass,1446077685 +173452,3247,Catholicism,1446077687 +173452,3247,choir,1446077679 +173452,3247,disguised as a nun,1446077696 +173452,3247,friendship,1446077713 +173452,3247,Kathy Najimy,1446077692 +173452,3247,Maggie Smith,1446077682 +173452,3247,mobsters,1446077694 +173452,3247,music,1446077689 +173452,3247,nuns,1446077677 +173452,3247,religion,1446077703 +173452,3247,singing,1446077720 +173452,3247,Whoopi Goldberg,1446077680 +173452,3248,choir,1446077738 +173452,3248,Christianity,1446077748 +173452,3248,competition,1446077863 +173452,3248,high school,1446077750 +173452,3248,inspiring teacher,1446077739 +173452,3248,Kathy Najimy,1446077870 +173452,3248,Lauryn Hill,1446077881 +173452,3248,mother-daughter relationship,1446077754 +173452,3248,music,1446077743 +173452,3248,nuns,1446077741 +173452,3248,religion,1446077759 +173452,3248,single parent,1446077756 +173452,3248,Whoopi Goldberg,1446077744 +173452,3255,baseball,1446078253 +173452,3255,Bechdel Test:Pass,1446078265 +173452,3255,family,1446078295 +173452,3255,feminism,1446078256 +173452,3255,Geena Davis,1446078274 +173452,3255,Lori Petty,1446078283 +173452,3255,madonna,1446078257 +173452,3255,Penny Marshall,1446078288 +173452,3255,period piece,1446078268 +173452,3255,Rosie O'Donnell,1446078298 +173452,3255,sexism,1446078312 +173452,3255,siblings,1446078270 +173452,3255,sisters,1446078271 +173452,3255,sports,1446078254 +173452,3255,tom hanks,1446078303 +173452,3255,true story,1446078286 +173452,3255,World War II,1446078262 +173452,3275,Billy Connolly,1445403395 +173452,3275,Boston,1445403348 +173452,3275,brothers,1445403403 +173452,3275,dark humor,1445403337 +173452,3275,Irish,1445403340 +173452,3275,Irish accent,1445403397 +173452,3275,Mafia,1445403344 +173452,3275,Norman Reedus,1445403376 +173452,3275,organized crime,1445403343 +173452,3275,religion,1445403362 +173452,3275,siblings,1445403357 +173452,3275,stylized,1445403346 +173452,3275,vigilantism,1445403338 +173452,3275,Willem Dafoe,1445403351 +173452,3300,aliens,1445401679 +173452,3300,anti-hero,1445401668 +173452,3300,Claudia Black,1445401688 +173452,3300,futuristic,1445401674 +173452,3300,Riddick,1445401682 +173452,3300,sci-fi,1445401672 +173452,3300,space,1445401693 +173452,3300,stranded,1445401670 +173452,3300,Vin Diesel,1445401676 +173452,3408,based on a true story,1445644179 +173452,3408,cover up,1445644213 +173452,3408,environmental,1445644181 +173452,3408,investigation,1445644209 +173452,3408,Julia Roberts,1445644178 +173452,3408,single mother,1445644235 +173452,3408,strong female lead,1445644185 +173452,3408,Strong Women,1445644183 +173452,3408,true story,1445644208 +173452,3448,censorship,1446078954 +173452,3448,great soundtrack,1446078974 +173452,3448,military,1446078964 +173452,3448,radio,1446078950 +173452,3448,Robin Williams,1446078945 +173452,3448,rock and roll,1446078957 +173452,3448,Vietnam War,1446078947 +173452,3450,Ann-Margret,1446079880 +173452,3450,comedy,1446079883 +173452,3450,elderly,1446079884 +173452,3450,funny,1446079904 +173452,3450,grumpy,1446079909 +173452,3450,Jack Lemmon,1446079896 +173452,3450,Minnesota,1446079898 +173452,3450,Walter Matthau,1446079887 +173452,3489,Bob Hoskins,1446077604 +173452,3489,fairy tale,1446077588 +173452,3489,fantasy,1446077607 +173452,3489,father-son relationship,1446077594 +173452,3489,Julia Roberts,1446077597 +173452,3489,Maggie Smith,1446077610 +173452,3489,Peter Pan,1446077586 +173452,3489,pirates,1446077593 +173452,3489,Robin Williams,1446077584 +173452,3489,ruffio,1446077601 +173452,3489,Steven Spielberg,1446077590 +173452,3489,whimsical,1446077598 +173452,3512,Bonnie Hunt,1445483682 +173452,3512,David Duchovny,1445483708 +173452,3512,James Belushi,1445483716 +173452,3512,Minnie Driver,1445483703 +173452,3512,romance,1445483694 +173452,3512,transplants,1445483691 +173452,3527,action,1445402010 +173452,3527,Arnold Schwarzenegger,1445402029 +173452,3527,Jesse Ventura,1445402025 +173452,3527,sci-fi,1445402013 +173452,3527,survival,1445402018 +173452,3527,violent,1445402015 +173452,3698,Arnold Schwarzenegger,1446077154 +173452,3698,based on a book,1446077163 +173452,3698,campy,1446077161 +173452,3698,Dystopia,1446077153 +173452,3698,Jim Brown,1446077490 +173452,3698,so bad it's good,1446077458 +173452,3698,survival,1446077159 +173452,3698,television,1446077157 +173452,3698,wrongful imprisonment,1446077461 +173452,3744,blaxploitation,1445475127 +173452,3744,corruption,1445475179 +173452,3744,Jeffrey Wright,1445475154 +173452,3744,John Singleton,1445475138 +173452,3744,racism,1445475160 +173452,3744,remake,1445475129 +173452,3744,Samuel L. Jackson,1445475136 +173452,3745,animation,1445571920 +173452,3745,Drew Barrymore,1445571949 +173452,3745,Matt Damon,1445571951 +173452,3745,sci-fi,1445571929 +173452,3745,space,1445571922 +173452,3745,space opera,1445571934 +173452,3745,space travel,1445571924 +173452,3755,disaster,1446077994 +173452,3755,George Clooney,1446077995 +173452,3755,John C. Reilly,1446078011 +173452,3755,Mark Wahlberg,1446078000 +173452,3755,natural disaster,1446078002 +173452,3755,ocean,1446077998 +173452,3755,search and rescue,1446078004 +173452,3755,weather,1446077997 +173452,3786,Bechdel Test:Pass,1446077957 +173452,3786,campy,1446077953 +173452,3786,cheerleading,1446077955 +173452,3786,cissexism,1446077962 +173452,3786,Clea DuVall,1446077951 +173452,3786,coming of age,1446077949 +173452,3786,funny,1446077971 +173452,3786,lesbian,1446077946 +173452,3786,Natasha Lyonne,1446077967 +173452,3786,satire,1446077947 +173452,3882,cheerleading,1445400860 +173452,3882,Gabrielle Union,1445400891 +173452,3882,high school,1445400865 +173452,3882,inspiring sports movie,1445400901 +173452,3967,ballet,1445572505 +173452,3967,British,1445572507 +173452,3967,coming of age,1445572508 +173452,3967,dance,1445572504 +173452,3967,dancing,1445572519 +173452,3967,England,1445572510 +173452,3967,father-son relationship,1445572515 +173452,3967,good soundtrack,1445572530 +173452,3967,Jamie Bell,1445572570 +173452,3967,Julie Walters,1445572568 +173452,3967,realistic,1445572527 +173452,3967,self discovery,1445572513 +173452,3967,working class,1445572512 +173452,4011,All male cast,1445485637 +173452,4011,Bechdel Test:Fail,1445485633 +173452,4011,boxing,1445485618 +173452,4011,brad pitt,1445485610 +173452,4011,british,1445485510 +173452,4011,dark comedy,1445485512 +173452,4011,England,1445485624 +173452,4011,ensemble cast,1445485608 +173452,4011,guy ritchie,1445485612 +173452,4011,Jason Statham,1445485507 +173452,4011,multiple storylines,1445485514 +173452,4011,quirky,1445485517 +173452,4016,cynical protangonist,1445571227 +173452,4016,Disney,1445571193 +173452,4016,Eartha Kitt,1445571220 +173452,4016,friendship,1445571212 +173452,4016,funny,1445571195 +173452,4016,John Goodman,1445571266 +173452,4016,Latin America,1445571198 +173452,4016,Llama,1445571214 +173452,4016,Patrick Warburton,1445571250 +173452,4016,South America,1445571210 +173452,4016,Transformation,1445571218 +173452,4016,witty,1445571230 +173452,4018,Helen Hunt,1445475635 +173452,4018,Mel Gibson,1445475632 +173452,4018,sexist,1445475655 +173452,4018,stereotypes,1445475634 +173452,4018,telepathy,1445475640 +173452,4018,women,1445475630 +173452,4022,airplane crash,1445644056 +173452,4022,helen hunt,1445644082 +173452,4022,island,1445644049 +173452,4022,man vs. nature,1445644052 +173452,4022,stranded,1445644046 +173452,4022,SURVIVAL,1445644044 +173452,4022,Tom Hanks,1445644042 +173452,4022,wilson,1445644101 +173452,4025,Beauty Contest,1445401055 +173452,4025,beauty pageant,1445401063 +173452,4025,comedy,1445401065 +173452,4025,Sandra Bullock,1445401049 +173452,4025,strong female lead,1445401052 +173452,4124,Mario Van Peebles gets eaten,1446077109 +173452,4124,shark,1446077103 +173452,4124,shark vs plane,1446077111 +173452,4124,so bad it's good,1446077117 +173452,4135,80s,1445401386 +173452,4135,funny,1445401388 +173452,4135,Monsters,1445401373 +173452,4135,vampires,1445401377 +173452,4219,80s,1446080065 +173452,4219,dancing,1446080062 +173452,4219,teenagers,1446080079 +173452,4225,1960s,1445483110 +173452,4225,australian,1445483099 +173452,4225,moon landing,1445483151 +173452,4225,NASA,1445483101 +173452,4225,observatory,1445483153 +173452,4225,Sam Neill,1445483113 +173452,4225,space program,1445483106 +173452,4291,1980s,1446079428 +173452,4291,Bechdel Test:Pass,1446079420 +173452,4291,Dolly Parton,1446079414 +173452,4291,feminism,1446079417 +173452,4291,Jane Fonda,1446079422 +173452,4291,Lily Tomlin,1446079416 +173452,4291,power fantasy,1446079419 +173452,4291,Sexism,1446079425 +173452,4291,women,1446079412 +173452,4299,Alan Tudyk,1445571977 +173452,4299,anachronism,1445571989 +173452,4299,enjoyable soundtrack,1445572022 +173452,4299,Heath Ledger,1445572010 +173452,4299,historically inaccurate,1445571995 +173452,4299,medieval,1445571972 +173452,4299,Paul Bettany,1445571975 +173452,4299,Shannyn Sossamon,1445571987 +173452,4306,animation,1445445107 +173452,4306,Cameron Diaz,1445445103 +173452,4306,Dreamworks,1445445097 +173452,4306,Eddie Murphy,1445445099 +173452,4306,fairy tale,1445445089 +173452,4306,Funny,1445445091 +173452,4306,satire,1445445095 +173452,4306,talking animals,1445445104 +173452,4306,witty,1445445093 +173452,4367,Action,1445401203 +173452,4367,adventure,1445401200 +173452,4367,Angelina Jolie,1445401212 +173452,4367,Kick-Butt Women,1445401211 +173452,4367,strong women,1445401198 +173452,4367,video game adaptation,1445401206 +173452,4446,computer animation,1445572129 +173452,4446,Ming-Na Wen,1445572181 +173452,4446,sci-fi,1445572127 +173452,4446,uncanny valley,1445572152 +173452,4446,video game adaptation,1445572166 +173452,4446,Ving Rhames,1445572191 +173452,4447,Bechdel Test:Pass,1445400819 +173452,4447,Comedy,1445400780 +173452,4447,courtroom setting,1445400804 +173452,4447,cute,1445400830 +173452,4447,femininity,1445400817 +173452,4447,feminism,1445400769 +173452,4447,Harvard Law school,1445400822 +173452,4447,law,1445400835 +173452,4447,lawyers,1445400774 +173452,4447,Luke Wilson,1445400832 +173452,4447,pink,1445400800 +173452,4447,Reese Witherspoon,1445400777 +173452,4476,Bette Midler,1446077631 +173452,4476,fish out of water,1446077626 +173452,4476,funny,1446077648 +173452,4476,Lily Tomlin,1446077639 +173452,4476,mistaken identity,1446077628 +173452,4476,New York City,1446077643 +173452,4476,siblings,1446077630 +173452,4476,twins,1446077624 +173452,4519,animated,1446078424 +173452,4519,dinosaurs,1446078418 +173452,4519,friendship,1446078422 +173452,4700,Anne Hathaway,1445485440 +173452,4700,coming of age,1445485449 +173452,4700,Disney,1445485446 +173452,4700,family,1445485463 +173452,4700,friendship,1445485465 +173452,4700,Hector Elizondo,1445485457 +173452,4700,Julie Andrews,1445485442 +173452,4700,Make over,1445485459 +173452,4700,princess,1445485476 +173452,4700,San Francisco,1445485469 +173452,4700,sweet,1445485487 +173452,4700,teen movie,1445485454 +173452,4816,Bechdel Test:Fail,1445573427 +173452,4816,ben stiller,1445573393 +173452,4816,comedy,1445573404 +173452,4816,fashion,1445573406 +173452,4816,goofy,1445573401 +173452,4816,Highly quotable,1445573417 +173452,4816,male models,1445573413 +173452,4816,Milla Jovovich,1445573454 +173452,4816,models,1445573411 +173452,4816,Owen Wilson,1445573408 +173452,4816,Will Ferrell,1445573399 +173452,4886,Animation,1445403061 +173452,4886,Billy Crystal,1445403078 +173452,4886,cute,1445403074 +173452,4886,funny,1445403064 +173452,4886,John Goodman,1445403067 +173452,4886,monsters,1445403079 +173452,4886,Pixar,1445403062 +173452,4941,great soundtrack,1445401714 +173452,4941,sci-fi,1445401726 +173452,4941,So bad it's good,1445401711 +173452,4941,space opera,1445401713 +173452,4963,Andy Garcia,1445573948 +173452,4963,Bechdel Test:Fail,1445573929 +173452,4963,Bernie Mac,1445573944 +173452,4963,Brad Pitt,1445573901 +173452,4963,caper,1445573914 +173452,4963,Casey Affleck,1445573934 +173452,4963,casino,1445573905 +173452,4963,comedy,1445573921 +173452,4963,con men,1445573910 +173452,4963,crime,1445573903 +173452,4963,Don Cheadle,1445573946 +173452,4963,ensemble cast,1445573908 +173452,4963,fun,1445573924 +173452,4963,George Clooney,1445573897 +173452,4963,heist,1445573896 +173452,4963,Julia Roberts,1445573912 +173452,4963,las vegas,1445573906 +173452,4963,Matt Damon,1445573918 +173452,4979,adoption,1446166624 +173452,4979,anjelica huston,1446166611 +173452,4979,Ben Stiller,1446166605 +173452,4979,Bill Murray,1446166591 +173452,4979,child prodigy,1446166630 +173452,4979,dark comedy,1446166587 +173452,4979,dysfunctional family,1446166589 +173452,4979,ensemble cast,1446166597 +173452,4979,faded glory,1446166633 +173452,4979,family,1446166620 +173452,4979,family dynamics,1446166599 +173452,4979,Gwyneth Paltrow,1446166614 +173452,4979,love,1446166622 +173452,4979,Luke Wilson,1446166608 +173452,4979,narrated,1446166595 +173452,4979,Owen Wilson,1446166601 +173452,4979,Quirky,1446166586 +173452,4979,suicide attempt,1446166617 +173452,4979,Wes Anderson,1446166584 +173452,4979,witty,1446166593 +173452,5135,bollywood,1445484366 +173452,5135,colorful,1445484373 +173452,5135,family,1445484415 +173452,5135,India,1445484368 +173452,5135,indians,1445484394 +173452,5135,wedding,1445484387 +173452,5419,Based on a cartoon,1445483471 +173452,5419,Based on a TV show,1445483473 +173452,5419,Freddie Prinze Jr.,1445483477 +173452,5419,friendship,1445483504 +173452,5419,Lina Cardellini,1445483465 +173452,5419,Matthew Lillard,1445483468 +173452,5419,mystery,1445483488 +173452,5419,Sarah Michelle Gellar,1445483479 +173452,5444,aliens,1445571077 +173452,5444,animation,1445571099 +173452,5444,Disney,1445571080 +173452,5444,family,1445571079 +173452,5444,friendship,1445571096 +173452,5444,Hawaii,1445571090 +173452,5444,sisters,1445571113 +173452,5507,action,1445571049 +173452,5507,adventure,1445571043 +173452,5507,espionage,1445571059 +173452,5507,Samuel L. Jackson,1445571039 +173452,5507,snowboard,1445571046 +173452,5507,terrorism,1445571053 +173452,5507,Vin Diesel,1445571037 +173452,5618,adventure,1445445638 +173452,5618,animation,1445457904 +173452,5618,atmospheric,1445445633 +173452,5618,beautiful,1445445635 +173452,5618,Bechdel Test:Pass,1445457911 +173452,5618,coming of age,1445457915 +173452,5618,door to the different world,1445457927 +173452,5618,dragons,1445457930 +173452,5618,dreamlike,1445403415 +173452,5618,fantasy,1445403413 +173452,5618,Hayao Miyazaki,1445402828 +173452,5618,heroine,1445457940 +173452,5618,imaginative,1445445641 +173452,5618,Japan,1445403418 +173452,5618,Mako Mori Test:Pass,1445457950 +173452,5618,Studio Ghibli,1445402826 +173452,5618,surreal,1445403420 +173452,5618,whimsical,1445403422 +173452,5816,alan rickman,1446078334 +173452,5816,based on a book,1446078332 +173452,5816,boarding school,1446078338 +173452,5816,coming of age,1446078342 +173452,5816,Emma Watson,1446078353 +173452,5816,England,1446078349 +173452,5816,fantasy,1446078330 +173452,5816,Maggie Smith,1446078351 +173452,5903,Christian Bale,1445572447 +173452,5903,dystopia,1445572446 +173452,5903,fascism,1445572458 +173452,5903,gunfight,1445572454 +173452,5903,puppy,1445572474 +173452,5903,revolution,1445572450 +173452,5903,sci-fi,1445572456 +173452,5903,Sean Bean,1445572469 +173452,5903,Taye Diggs,1445572487 +173452,5970,Anna Chlumsky,1446166350 +173452,5970,Coming of age,1446166354 +173452,5970,Dan Aykroyd,1446166355 +173452,5970,Jamie Lee Curtis,1446166351 +173452,5970,Macaulay Culkin,1446166359 +173452,5970,tear jerker,1446166402 +173452,5971,adventure,1445402553 +173452,5971,children,1445402544 +173452,5971,country life,1445402536 +173452,5971,fantasy,1445402534 +173452,5971,feel good movie,1445402505 +173452,5971,feel-good,1445402503 +173452,5971,great soundtrack,1445402539 +173452,5971,Hayao Miyazaki,1445402496 +173452,5971,Japan,1445402533 +173452,5971,love for family,1445402548 +173452,5971,love for nature,1445402566 +173452,5971,nature,1445402526 +173452,5971,nature spirits,1445402551 +173452,5971,Sisters,1445402556 +173452,5971,spirits,1445402540 +173452,5971,Studio Ghibli,1445402495 +173452,5971,visually appealing,1445402569 +173452,6093,animation,1445402163 +173452,6093,love,1445402188 +173452,6093,lyrical,1445402175 +173452,6093,soundtrack,1445402166 +173452,6093,unicorns,1445402160 +173452,6218,Bechdel Test:Pass,1445573554 +173452,6218,coming of age,1445573533 +173452,6218,culture clash,1445573544 +173452,6218,family,1445573602 +173452,6218,father daughter relationship,1445573557 +173452,6218,football,1445573530 +173452,6218,friendship,1445573540 +173452,6218,gender in sports,1445573564 +173452,6218,immigrants,1445573537 +173452,6218,Keira Knightley,1445573584 +173452,6218,mother daughter relationship,1445573550 +173452,6218,multicultural,1445573542 +173452,6218,Parminder Nagra,1445573581 +173452,6218,soccer,1445573526 +173452,6218,sports,1445573528 +173452,6218,women in sport,1445573561 +173452,6331,children,1445644277 +173452,6331,competition,1445644265 +173452,6331,Documentary,1445644272 +173452,6331,spelling bee,1445644264 +173452,6333,action,1445643989 +173452,6333,anna paquin,1445644013 +173452,6333,ensemble cast,1445644007 +173452,6333,genetics,1445643991 +173452,6333,Hugh Jackman,1445643993 +173452,6333,Ian Mckellen,1445644026 +173452,6333,marvel,1445643984 +173452,6333,mutants,1445644003 +173452,6333,Patrick Stewart,1445644021 +173452,6333,sci-fi,1445643985 +173452,6333,superhero,1445643978 +173452,6333,supernatural powers,1445644001 +173452,6377,animation,1445402903 +173452,6377,anxiety,1445402936 +173452,6377,Coming of Age,1445402940 +173452,6377,Disney,1445402907 +173452,6377,Ellen Degeneres,1445402932 +173452,6377,family,1445402923 +173452,6377,father-son relationship,1445402912 +173452,6377,fish,1445402920 +173452,6377,funny,1445402908 +173452,6377,heartwarming,1445402922 +173452,6377,ocean,1445402916 +173452,6377,Pixar,1445402901 +173452,6377,short-term memory loss,1445402905 +173452,6377,talking animals,1445402914 +173452,6377,underwater,1445402910 +173452,6378,action,1445573660 +173452,6378,car chase,1445573667 +173452,6378,cars,1445573664 +173452,6378,Charlize Theron,1445573651 +173452,6378,con men,1445573659 +173452,6378,Edward Norton,1445573671 +173452,6378,ensemble cast,1445573703 +173452,6378,fun,1445573677 +173452,6378,heist,1445573646 +173452,6378,Jason Statham,1445573656 +173452,6378,Mark Wahlberg,1445573665 +173452,6378,remake,1445573648 +173452,6378,Seth Green,1445573673 +173452,6535,Congress,1445483355 +173452,6535,lawyers,1445483354 +173452,6535,pink,1445483360 +173452,6535,politics,1445483396 +173452,6535,Reese Witherspoon,1445483326 +173452,6535,Regina King,1445483340 +173452,6539,action,1445474232 +173452,6539,adventure,1445474214 +173452,6539,Bechdel Test:Fail,1445474286 +173452,6539,Disney,1445474249 +173452,6539,Geoffrey Rush,1445474291 +173452,6539,johnny depp,1445474253 +173452,6539,keira knightley,1445474229 +173452,6539,Orlando Bloom,1445474227 +173452,6539,pirates,1445474213 +173452,6539,romance,1445474267 +173452,6539,swashbuckler,1445474273 +173452,6539,sword fight,1445474246 +173452,6539,treasure,1445474269 +173452,6539,treasure hunt,1445474276 +173452,6539,Zombies,1445474296 +173452,6564,action,1445401133 +173452,6564,adventure,1445401094 +173452,6564,Angelina Jolie,1445401092 +173452,6564,fighting,1445401105 +173452,6564,video game adaptation,1445401097 +173452,6662,1960s,1446079823 +173452,6662,farce,1446079826 +173452,6662,Peter Sellers,1446079829 +173452,6863,funny,1445573631 +173452,6863,great soundtrack,1445573621 +173452,6863,Jack Black,1445573613 +173452,6863,music,1445573615 +173452,6863,passionate,1445573628 +173452,6863,rock and roll,1445573617 +173452,6863,school,1445573623 +173452,6863,teacher,1445573625 +173452,6874,Bechdel Test: Pass,1446075621 +173452,6874,bloody,1446075556 +173452,6874,Daryl Hannah,1446075584 +173452,6874,gore,1446075563 +173452,6874,Japan,1446075552 +173452,6874,Kick-Butt Women,1446075548 +173452,6874,Lucy Liu,1446075570 +173452,6874,martial arts,1446075538 +173452,6874,Quentin Tarantino,1446075536 +173452,6874,revenge,1446075543 +173452,6874,strong female lead,1446075559 +173452,6874,stylized,1446075546 +173452,6874,Uma Thurman,1446075539 +173452,6874,violent,1446075541 +173452,6874,Vivica A. Fox,1446075577 +173452,6874,Zoe Bell,1446076590 +173452,6936,christmas,1445571149 +173452,6936,comedy,1445571152 +173452,6936,elves,1445571164 +173452,6936,holiday,1445571167 +173452,6936,New York,1445571169 +173452,6936,Peter Dinklage,1445571160 +173452,6936,silly,1445571154 +173452,6936,Will Ferrell,1445571147 +173452,6936,Zooey Deschanel,1445571151 +173452,6944,comedy,1446078826 +173452,6944,Diane Keaton,1446078837 +173452,6944,Family,1446078825 +173452,6944,silly,1446078842 +173452,6944,Steve Martin,1446078828 +173452,6944,wedding,1446078822 +173452,7045,Anjelica Huston,1445403309 +173452,7045,author:Roald Dahl,1445403288 +173452,7045,based on book,1445458474 +173452,7045,Roald Dahl,1445403290 +173452,7045,witches,1445403293 +173452,7147,adventure,1446167139 +173452,7147,circus,1446167165 +173452,7147,colourful,1446167154 +173452,7147,coming of age,1446167136 +173452,7147,conjoined twins,1446167170 +173452,7147,dreamlike,1446167130 +173452,7147,Ewan McGregor,1446167144 +173452,7147,father-son relationship,1446167142 +173452,7147,flowers,1446167172 +173452,7147,Jessica Lange,1446167175 +173452,7147,Marion Cotillard,1446167196 +173452,7147,romance,1446167148 +173452,7147,stylized,1446167133 +173452,7147,tall tales,1446167156 +173452,7147,Tim Burton,1446167128 +173452,7173,awkward comedy,1446078214 +173452,7173,Ben Stiller,1446078200 +173452,7173,comedy,1446078198 +173452,7173,not funny,1446078208 +173452,7173,romance,1446078220 +173452,7361,amnesia,1446073957 +173452,7361,colourful,1446073952 +173452,7361,dreamlike,1446073936 +173452,7361,Elijah Wood,1446073963 +173452,7361,jim carrey,1446073923 +173452,7361,Kate Winslet,1446073933 +173452,7361,melancholy,1446073943 +173452,7361,memory,1446073926 +173452,7361,nonlinear,1446073920 +173452,7361,quirky,1446073927 +173452,7361,relationships,1446073946 +173452,7361,romance,1446073929 +173452,7361,short-term memory loss,1446073949 +173452,7361,surreal,1446073917 +173452,7362,Angelina Jolie,1445645497 +173452,7362,FBI,1445645528 +173452,7362,mystery,1445645547 +173452,7362,profiler,1445645533 +173452,7362,serial killer,1445645505 +173452,7362,strong female lead,1445645516 +173452,7362,thriller,1445645499 +173452,7438,action,1446076607 +173452,7438,Bechdel Test:Pass,1446076622 +173452,7438,buried alive,1446076617 +173452,7438,Japan,1446076612 +173452,7438,Kick-Butt Women,1446076638 +173452,7438,martial arts,1446076602 +173452,7438,Quentin Tarantino,1446076599 +173452,7438,revenge,1446076601 +173452,7438,strong female lead,1446076615 +173452,7438,stylized,1446076604 +173452,7438,Uma Thurman,1446076609 +173452,7438,violence,1446076606 +173452,7444,Aging,1445485685 +173452,7444,Bechdel Test: Pass,1445485987 +173452,7444,Child as Adult,1445485673 +173452,7444,Jennifer Garner,1445485676 +173452,7444,Mark Ruffalo,1445485675 +173452,7444,romance,1445485678 +173452,7444,woman lead,1445485692 +173452,7451,Amanda Seyfried,1445972254 +173452,7451,Amy Poehler,1445972264 +173452,7451,Bechdel Test:Pass,1445972281 +173452,7451,clique,1445972243 +173452,7451,comedy,1445972272 +173452,7451,coming of age,1445972293 +173452,7451,friendship,1445972313 +173452,7451,High School,1445972236 +173452,7451,Lacey Chabert,1445972302 +173452,7451,lesbian subtext,1445972256 +173452,7451,Lindsay Lohan,1445972238 +173452,7451,popularity,1445972248 +173452,7451,quotable,1445972261 +173452,7451,Rachel McAdams,1445972251 +173452,7451,revenge,1445972246 +173452,7451,Tim Meadows,1445972296 +173452,7451,Tina Fey,1445972241 +173452,7451,very quotable,1445972260 +173452,8366,christian,1445646185 +173452,8366,high school,1445646232 +173452,8366,Jena Malone,1445646195 +173452,8366,Macaulay Culkin,1445646203 +173452,8366,Mandy Moore,1445646214 +173452,8366,Mary-Louise Parker,1445646193 +173452,8366,religion,1445646189 +173452,8366,teen pregnancy,1445646191 +173452,8985,Jessica Biel,1445646265 +173452,8985,Marvel,1445646257 +173452,8985,Ryan Reynolds,1445646301 +173452,8985,RZA (composer),1445646269 +173452,8985,vampires,1445646256 +173452,8985,Wesley Snipes,1445646263 +173452,27831,Bechdel Test:Fail,1445485404 +173452,27831,British gangster,1445485377 +173452,27831,Colm Meaney,1445485426 +173452,27831,daniel craig,1445485384 +173452,27831,drugs,1445485379 +173452,27831,organized crime,1445485390 +173452,27831,stylish,1445485386 +173452,31685,comedy,1445475576 +173452,31685,dating advice,1445475584 +173452,31685,Eva Mendes,1445475572 +173452,31685,Kevin James,1445475573 +173452,31685,New York City,1445475578 +173452,31685,pick up,1445475592 +173452,31685,romantic comedy,1445475570 +173452,31685,Will Smith,1445475568 +173452,32296,Regina King,1445483420 +173452,32296,Sandra Bullock,1445483418 +173452,32296,strong female lead,1445483424 +173452,33779,Eddie Izzard,1446078791 +173452,33779,stand-up comedy,1446078787 +173452,33838,dance,1445401335 +173452,33838,documentary,1445401333 +173452,34072,animals,1445646131 +173452,34072,antarctica,1445646122 +173452,34072,birds,1445646135 +173452,34072,documentary,1445646125 +173452,34072,morgan freeman,1445646167 +173452,34072,nature,1445646130 +173452,34072,penguins,1445646121 +173452,34072,survival,1445646128 +173452,34153,car accident,1445644673 +173452,34153,disability,1445644653 +173452,34153,LIVING WITH DISABILITY,1445644660 +173452,34153,sport:wheelchair rugby,1445644690 +173452,34153,sports,1445644654 +173452,34153,wheelchair,1445644663 +173452,34319,cloning,1446071918 +173452,34319,Djimon Hounsou,1446071950 +173452,34319,dystopia,1446071915 +173452,34319,Ewan McGregor,1446071966 +173452,34319,explosions,1446072008 +173452,34319,Michael Clarke Duncan,1446071960 +173452,34319,Micheal Bay,1446071985 +173452,34319,Scarlett Johansson,1446071973 +173452,34319,sci-fi,1446071920 +173452,34405,action,1445473989 +173452,34405,Adam Baldwin,1445474030 +173452,34405,adventure,1445473991 +173452,34405,Alan Tudyk,1445474022 +173452,34405,based on a TV show,1445473982 +173452,34405,Bechdel Test:Fail,1446073511 +173452,34405,dystopia,1445473970 +173452,34405,ensemble cast,1445474016 +173452,34405,evil empire,1446073497 +173452,34405,far future,1446073524 +173452,34405,Firefly,1445473974 +173452,34405,friendship,1445474113 +173452,34405,funny,1445474110 +173452,34405,gina torres,1445474123 +173452,34405,great costumes,1446073499 +173452,34405,husband-wife relationship,1446073518 +173452,34405,Joss Whedon,1445473984 +173452,34405,Nathan Fillion,1445474071 +173452,34405,sci-fi,1445473953 +173452,34405,space,1445473972 +173452,34405,space opera,1445474061 +173452,34405,space western,1445473987 +173452,34405,Summer Glau,1445474081 +173452,34405,unlikely hero,1445474063 +173452,34405,western,1446073521 +173452,34534,adoption,1445475430 +173452,34534,Andre Benjamin,1445475417 +173452,34534,brothers,1445475371 +173452,34534,crime,1445475384 +173452,34534,family,1445475373 +173452,34534,friendship,1445475387 +173452,34534,Mark Wahlberg,1445475392 +173452,34534,revenge,1445475367 +173452,34534,Terrence Howard,1445475413 +173452,34534,Tyrese Gibson,1445475416 +173452,37386,assassin,1445646059 +173452,37386,bad ass female lead,1445646074 +173452,37386,Based on a TV show,1445646076 +173452,37386,Charlize Theron,1445646067 +173452,37386,cloning,1445646063 +173452,37386,dystopia,1445646045 +173452,37386,female warriors,1445646053 +173452,37386,post-apocalyptic,1445646056 +173452,37386,revolution,1445646061 +173452,37386,sci-fi,1445646050 +173452,37386,stylized,1445646047 +173452,38798,romance,1445645699 +173452,38798,Toni Collete,1445645716 +173452,40583,complicated,1446075642 +173452,40583,confusing,1446075657 +173452,40583,George Clooney,1446075644 +173452,40583,Jeffrey Wright,1446075672 +173452,40583,long,1446075661 +173452,40583,middle east,1446075648 +173452,40583,oil,1446075650 +173452,40583,Political,1446075646 +173452,40583,what is going on,1446075679 +173452,40583,world politics,1446075652 +173452,40826,AIDS,1446079675 +173452,40826,Anthony Rapp,1446079679 +173452,40826,based on a play,1446079682 +173452,40826,broadway,1446079670 +173452,40826,drugs,1446079672 +173452,40826,ensemble cast,1446079680 +173452,40826,friendship,1446079710 +173452,40826,great soundtrack,1446079683 +173452,40826,Jesse L. Martin,1446079695 +173452,40826,musical,1446079669 +173452,40826,relationships,1446079704 +173452,40826,Rosario Dawson,1446079701 +173452,40826,Taye Diggs,1446079677 +173452,42732,Austria,1445475026 +173452,42732,chef,1445475063 +173452,42732,cooking,1445475069 +173452,42732,food,1445475035 +173452,42732,Gérard Depardieu,1445475099 +173452,42732,LL Cool J,1445475022 +173452,42732,mortality,1445475057 +173452,42732,Queen Latifah,1445474994 +173452,42732,romance,1445475038 +173452,42732,sweet,1445475110 +173452,45880,based on a true story,1445645643 +173452,45880,cinematography,1445645625 +173452,45880,costume drama,1445645623 +173452,45880,France,1445645626 +173452,45880,great soundtrack,1445645630 +173452,45880,historical,1445645632 +173452,45880,Jason Schwartzman,1445645649 +173452,45880,kirsten dunst,1445645628 +173452,45880,royalty,1445645638 +173452,45880,Sofia Coppola,1445645641 +173452,45880,stylized,1445645621 +173452,45880,Versailles,1445645647 +173452,46578,Abigail Breslin,1446072329 +173452,46578,Alan Arkin,1446072328 +173452,46578,beauty pageant,1446072316 +173452,46578,coming of age,1446072478 +173452,46578,dark comedy,1446072299 +173452,46578,dysfunctional family,1446072302 +173452,46578,family,1446072318 +173452,46578,funny,1446072310 +173452,46578,quirky,1446072306 +173452,46578,road trip,1446072301 +173452,46578,steve carell,1446072314 +173452,46578,toni collette,1446072325 +173452,46578,underdog,1446072472 +173452,49272,007,1445572041 +173452,49272,action,1445572048 +173452,49272,Bechdel Test:Fail,1445572069 +173452,49272,Daniel Craig,1445572043 +173452,49272,espionage,1445572040 +173452,49272,Eva Green,1445572088 +173452,49272,gambling,1445572052 +173452,49272,James Bond,1445572038 +173452,49272,Jeffrey Wright,1445572100 +173452,49272,Judi Dench,1445572093 +173452,49272,Mads Mikkelsen,1445572057 +173452,49272,poker,1445572046 +173452,49272,spies,1445572050 +173452,49272,thriller,1445572107 +173452,49272,torture,1445572055 +173452,49910,based on a book,1446078110 +173452,49910,based on a true story,1446078101 +173452,49910,high school,1446078103 +173452,49910,hilary swank,1446078116 +173452,49910,Holocaust,1446078112 +173452,49910,teacher,1446078099 +173452,49910,teacher changing lives,1446078107 +173452,50685,baking,1445645585 +173452,50685,domestic abuse,1445645590 +173452,50685,food,1445645583 +173452,50685,friendship,1445645587 +173452,50685,infidelity,1445645592 +173452,50685,Keri Russell,1445645579 +173452,50685,marriage,1445645608 +173452,50685,pie,1445645602 +173452,50685,pregnancy,1445645578 +173452,51084,1980s,1445645887 +173452,51084,cheesy,1445645881 +173452,51084,comedy,1445645885 +173452,51084,Drew Barrymore,1445645870 +173452,51084,Hugh Grant,1445645875 +173452,51084,Kristen Johnston,1445645919 +173452,51084,music,1445645889 +173452,51084,romance,1445645878 +173452,51084,songs,1445645880 +173452,51255,action,1445645319 +173452,51255,action spoof,1445645316 +173452,51255,British,1445645339 +173452,51255,buddy movie,1445645395 +173452,51255,Nick Frost,1445645321 +173452,51255,police,1445645318 +173452,51255,Simon Pegg,1445645326 +173452,51255,violence,1445645333 +173452,51884,based on a book,1445645207 +173452,51884,bollywood,1445645153 +173452,51884,coming of age,1445645159 +173452,51884,family,1445645294 +173452,51884,immigrant story,1445645198 +173452,51884,immigrants,1445645157 +173452,51884,Kal Penn,1445645160 +173452,51884,love,1445645290 +173452,51884,Mira Nair,1445645185 +173452,51884,Sahira Nair,1445645277 +173452,52885,animation,1445645947 +173452,52885,anime,1445645944 +173452,52885,colorful,1445645961 +173452,52885,dreamlike,1445645942 +173452,52885,dreams,1445646000 +173452,52885,female heroine,1445645963 +173452,52885,surreal,1445645940 +173452,52885,Tokyo,1445645956 +173452,53453,amazing costumes,1446074968 +173452,53453,sci-fi,1446074952 +173452,53453,so bad it's good,1446074953 +173452,53453,space,1446074949 +173452,53460,Jeff Bridges,1445645132 +173452,53460,ocean,1445645133 +173452,53460,penguin,1445645094 +173452,53460,surfing,1445645102 +173452,53460,talking animals,1445645129 +173452,53808,cheerleading,1446074997 +173452,53808,competition,1446075036 +173452,53808,Hayden Panettiere,1446075010 +173452,53808,high school,1446074999 +173452,53808,Rihanna,1446075001 +173452,53808,Solange Knowles,1446075046 +173452,53956,Alan Tudyk,1446076317 +173452,53956,British,1446076308 +173452,53956,british comedy,1446076306 +173452,53956,brother-brother relationship,1446076313 +173452,53956,dark comedy,1446076303 +173452,53956,family,1446076321 +173452,53956,farce,1446076310 +173452,53956,funeral,1446076315 +173452,53956,Peter Dinklage,1446076326 +173452,53972,action,1445646379 +173452,53972,action packed,1445646377 +173452,53972,bruce willis,1445646374 +173452,53972,computers,1445646384 +173452,53972,explosions,1445646418 +173452,53972,hackers,1445646376 +173452,53972,Justin Long,1445646391 +173452,53972,Maggie Q,1445646427 +173452,53972,terrorism,1445646381 +173452,53972,Timothy Olyphant,1445646397 +173452,53972,United States,1445646383 +173452,53996,80s nostalgia,1445646497 +173452,53996,action,1445972173 +173452,53996,aliens,1445972171 +173452,53996,Bechdel Test:Fail,1445646505 +173452,53996,giant robots,1445646479 +173452,53996,Jon Voigt,1445972195 +173452,53996,man versus machine,1445972159 +173452,53996,Megan Fox,1445646485 +173452,53996,Michael Bay,1445646481 +173452,53996,robots,1445646477 +173452,53996,sci-fi,1445646488 +173452,53996,sexist,1445972206 +173452,53996,Shia LaBeouf,1445972166 +173452,53996,Special Effects,1445972151 +173452,54259,adventure,1445458526 +173452,54259,Clare Danes,1445458596 +173452,54259,coming of age,1445458641 +173452,54259,fairy tale,1445458496 +173452,54259,fantasy,1445458498 +173452,54259,fantasy world,1445458529 +173452,54259,magic,1445458509 +173452,54259,magic realism,1445458593 +173452,54259,Neil Gaiman,1445458505 +173452,54259,pirates,1445458534 +173452,54259,Robert De Niro,1445458503 +173452,54259,romance,1445458523 +173452,54259,whimsical,1445458532 +173452,54259,witches,1445458585 +173452,54775,action,1446077922 +173452,54775,Jason Statham,1446077931 +173452,54775,Jet Li,1446077925 +173452,54775,revenge,1446077919 +173452,54881,arcade,1445644620 +173452,54881,competition,1445644616 +173452,54881,documentary,1445644609 +173452,54881,donkey kong,1445644618 +173452,54881,games,1445644633 +173452,54881,geek,1445644613 +173452,54881,nerds,1445644625 +173452,54881,quirky subculture,1445644611 +173452,54881,rivalry,1445644622 +173452,54881,video games,1445644607 +173452,56367,adoption,1445644812 +173452,56367,Allison Janney,1445644791 +173452,56367,comedy,1445644773 +173452,56367,Ellen Page,1445644748 +173452,56367,high school,1445644757 +173452,56367,J.K. Simmons,1445644795 +173452,56367,Jason Bateman,1445644793 +173452,56367,Michael Cera,1445644765 +173452,56367,notable soundtrack,1445644761 +173452,56367,pregnancy,1445644751 +173452,56367,teen pregnancy,1445644775 +173452,56367,teenager,1445644777 +173452,56775,conspiracy theory,1446166678 +173452,56775,Diane Kruger,1446166689 +173452,56775,funny,1446166687 +173452,56775,Helen Mirren,1446166696 +173452,56775,history,1446166682 +173452,56775,Jon Voight,1446166693 +173452,56775,Nicolas Cage,1446166680 +173452,56775,puzzle solving,1446166685 +173452,56775,treasure hunt,1446166676 +173452,57669,belgium,1445565945 +173452,57669,Brendan Gleeson,1445565940 +173452,57669,Colin Farrell,1445565923 +173452,57669,dark comedy,1445565919 +173452,57669,friendship,1445535054 +173452,57669,hitman,1445565931 +173452,57669,irish accent,1445565925 +173452,57669,violent,1445565928 +173452,58998,Apatow,1445486118 +173452,58998,Apatow productions,1445486096 +173452,58998,beach,1445486115 +173452,58998,Bechdel Test:Fail,1445486133 +173452,58998,Bill Hader,1445486111 +173452,58998,comedy,1445486082 +173452,58998,ensemble cast,1445486116 +173452,58998,Hawaii,1445486101 +173452,58998,Jason Segel,1445486083 +173452,58998,Jonah Hill,1445486093 +173452,58998,Kristen Bell,1445486089 +173452,58998,male nudity,1445486104 +173452,58998,Mila Kunis,1445486085 +173452,58998,Paul Rudd,1445486088 +173452,58998,puppets,1445486109 +173452,58998,romance,1445486098 +173452,58998,Russell Brand,1445486091 +173452,59037,Christina Ricci,1446078446 +173452,59037,colourful,1446078474 +173452,59037,fun,1446078476 +173452,59037,monkey,1446078486 +173452,59037,Racing,1446078448 +173452,59037,vibrant colors,1446078450 +173452,59037,visually stunning,1446078472 +173452,59037,Wachowskis,1446078463 +173452,59369,action,1446072120 +173452,59369,divorce,1446072146 +173452,59369,father daughter relationship,1446072125 +173452,59369,gritty,1446072137 +173452,59369,human trafficking,1446072156 +173452,59369,kidnapping,1446072129 +173452,59369,Liam Neeson,1446072117 +173452,59369,Paris,1446072127 +173452,59369,predictable,1446072141 +173452,59369,prostitution,1446072144 +173452,59369,protective father,1446072161 +173452,59369,revenge,1446072122 +173452,59369,sex trafficking,1446072169 +173452,59369,torture,1446072131 +173452,59387,beautiful,1446071145 +173452,59387,beautiful cinematography,1446071165 +173452,59387,hospital,1446071170 +173452,59387,imagination,1446071149 +173452,59387,story-in-a-story,1446071152 +173452,59387,stylized,1446071162 +173452,59387,suicide attempt,1446071160 +173452,59387,surreal,1446071148 +173452,59387,visually stunning,1446071146 +173452,60072,action,1445484353 +173452,60072,Angelina Jolie,1445484288 +173452,60072,audience intelligence underestimated,1445484306 +173452,60072,James McAvoy,1445484293 +173452,60072,Morgan Freeman,1445484291 +173452,60074,alcoholic,1445486050 +173452,60074,anti-hero,1445486043 +173452,60074,Charlize Theron,1445486054 +173452,60074,Jason Bateman,1445486042 +173452,60074,public relations,1445486058 +173452,60074,superhero,1445486039 +173452,60074,Will Smith,1445486038 +173452,61248,action,1446080008 +173452,61248,car racing,1446079987 +173452,61248,cars,1446080003 +173452,61248,cars with weapons,1446079982 +173452,61248,explosions,1446080012 +173452,61248,Jason Statham,1446079979 +173452,61248,Natalie Martinez,1446079986 +173452,61248,Tyrese Gibson,1446079991 +173452,62155,Kat Dennings,1446079224 +173452,62155,Michael Cera,1446079223 +173452,62155,New York City,1446079221 +173452,62970,adaptation,1446079183 +173452,62970,adventure,1446079205 +173452,62970,Alan Cumming,1446079199 +173452,62970,made for TV,1446079164 +173452,62970,magic,1446079203 +173452,62970,Neal McDonough,1446079194 +173452,62970,tornado,1446079169 +173452,62970,Wizard of Oz,1446079174 +173452,62970,Zooey Deschanel,1446079158 +173452,63072,based on a book,1446071757 +173452,63072,bleak,1446071766 +173452,63072,cannibalism,1446071753 +173452,63072,Charlize Theron,1446071752 +173452,63072,Cormac McCarthy,1446071761 +173452,63072,dark,1446071759 +173452,63072,depressing,1446071750 +173452,63072,post-apocalyptic,1446071745 +173452,63072,survival,1446071749 +173452,63072,Viggo Mortensen,1446071748 +173452,64032,Christmas,1446076920 +173452,64032,embarrassing,1446076956 +173452,64032,family,1446076925 +173452,64032,Reese Witherspoon,1446076917 +173452,64032,stereotyped men and women,1446076946 +173452,64032,Vince Vaughn,1446076919 +173452,64497,aliens,1446076874 +173452,64497,Annoying Child,1446076890 +173452,64497,Jennifer Connelly,1446076877 +173452,64497,Kathy Bates,1446076898 +173452,64497,Keanu Reeves,1446076876 +173452,64497,remake,1446076872 +173452,64497,uninteresting,1446076902 +173452,64622,based on a book,1445483050 +173452,64622,Holocaust,1445483042 +173452,64622,Kate Winslet,1445483038 +173452,64622,nazis,1445483036 +173452,64622,World War II,1445483040 +173452,66097,animation,1445644892 +173452,66097,author:Neil Gaiman,1445644909 +173452,66097,based on a book,1445644901 +173452,66097,Bechdel Test:Pass,1445645012 +173452,66097,claymation,1445644899 +173452,66097,gothic,1445644905 +173452,66097,stop motion,1445644895 +173452,66097,Tim Burton,1445644928 +173452,66171,action,1446078748 +173452,66171,Chris Evans,1446078760 +173452,66171,Dakota Fanning,1446078755 +173452,66171,psychic powers,1446078746 +173452,66171,sci-fi,1446078752 +173452,66665,canada,1446166303 +173452,66665,cute,1446166314 +173452,66665,family,1446166309 +173452,66665,humorous,1446166319 +173452,66665,John Krasinski,1446166293 +173452,66665,Maggie Gyllenhaal,1446166295 +173452,66665,Maya Rudolph,1446166290 +173452,66665,pregnancy,1446166286 +173452,66665,quirky,1446166277 +173452,66665,road trip,1446166280 +173452,66665,smart dialogues,1446166316 +173452,66665,sweet,1446166298 +173452,66665,witty,1446166282 +173452,66801,documentary,1445401268 +173452,66801,gangs,1445401258 +173452,66801,Los Angeles,1446166919 +173452,68073,1960s,1446079524 +173452,68073,60s music,1446079540 +173452,68073,funny,1446079533 +173452,68073,Music,1446079522 +173452,68073,Nick Frost,1446079535 +173452,68073,Philip Seymour Hoffman,1446079523 +173452,68073,pirate radio,1446079527 +173452,68073,retro,1446079537 +173452,68073,rock and roll,1446079530 +173452,68157,Adolf Hitler,1445644579 +173452,68157,alternate history,1445644568 +173452,68157,Brad Pitt,1445644554 +173452,68157,Christoph Waltz,1445644561 +173452,68157,Diane Kruger,1445644573 +173452,68157,Nazis,1445644563 +173452,68157,Quentin Tarantino,1445644551 +173452,68157,violence,1445644557 +173452,68157,World War II,1445644555 +173452,68319,action,1445972348 +173452,68319,anti-death penalty,1445972420 +173452,68319,body alteration,1445972500 +173452,68319,comic book,1445972350 +173452,68319,hugh jackman,1445972345 +173452,68319,Liev Schreiber,1445972454 +173452,68319,Marvel,1445972351 +173452,68319,Muscles,1445972492 +173452,68319,Patrick Stewart,1445972404 +173452,68319,revenge,1445972412 +173452,68319,Ryan Reynolds,1445972406 +173452,68319,sci-fi,1445972354 +173452,68319,superhero,1445972346 +173452,68319,Taylor Kitsch,1445972485 +173452,68358,action,1445473759 +173452,68358,adventure,1445473774 +173452,68358,Anton Yelchin,1445473896 +173452,68358,Chris Hemsworth,1445473853 +173452,68358,Chris Pine,1445473791 +173452,68358,franchise,1445473917 +173452,68358,future,1445473776 +173452,68358,J.J. Abrams,1445473930 +173452,68358,James T. Kirk,1445473899 +173452,68358,John Cho,1445473800 +173452,68358,Karl Urban,1445473803 +173452,68358,Lens flares,1445473836 +173452,68358,Leonard Nimoy,1445473787 +173452,68358,reboot,1445473915 +173452,68358,revenge,1445473810 +173452,68358,sci-fi,1445473757 +173452,68358,Simon Pegg,1445473784 +173452,68358,space,1445473756 +173452,68358,space travel,1445473778 +173452,68358,spock,1445473819 +173452,68358,Star Trek,1445473752 +173452,68358,teleportation,1445473921 +173452,68358,time travel,1445473754 +173452,68358,Winona Ryder,1445473856 +173452,68358,Zachary Quinto,1445473782 +173452,68358,Zoe Saldana,1445473798 +173452,68954,adventure,1445401925 +173452,68954,aging,1445401990 +173452,68954,animation,1445401984 +173452,68954,ballooning,1446073736 +173452,68954,dogs,1445401928 +173452,68954,exploration,1446073742 +173452,68954,friendship,1445401914 +173452,68954,Pixar,1445401906 +173452,68954,Senior Citizens,1446073733 +173452,68954,talking dog,1446073724 +173452,68954,touching,1445401911 +173452,68954,unlikely friendships,1445401991 +173452,69481,adrenaline junkie,1445569215 +173452,69481,Anthony Mackie,1445569211 +173452,69481,Bechdel Test:Fail,1445569243 +173452,69481,bombs,1445569219 +173452,69481,intense,1445569188 +173452,69481,Iraq,1445569184 +173452,69481,Iraq War,1445569175 +173452,69481,Jeremy Renner,1445569191 +173452,69481,Kathryn Bigelow,1445569200 +173452,69481,Middle East,1445569182 +173452,69481,realistic,1445569174 +173452,69481,thriller,1445569193 +173452,69481,war,1445569171 +173452,70286,aliens,1445978626 +173452,70286,mockumentary,1445978637 +173452,70286,sci-fi,1445978629 +173452,70293,Amy Adams,1446071848 +173452,70293,based on a book,1446071853 +173452,70293,biography,1446071863 +173452,70293,blog,1446071861 +173452,70293,cooking,1446071858 +173452,70293,food,1446071845 +173452,70293,france,1446071857 +173452,70293,Julia Child,1446071855 +173452,70293,lighthearted,1446071866 +173452,70293,Meryl Streep,1446071846 +173452,70293,Nora Ephron,1446071873 +173452,70293,Stanley Tucci,1446071851 +173452,70336,80s nostalgia,1446074783 +173452,70336,action,1446074784 +173452,70336,Byung-hun Lee,1446074793 +173452,70336,cheesy,1446074788 +173452,70336,Christopher Eccleston,1446074807 +173452,70336,explosions,1446074812 +173452,70336,Joseph Gordon-Levitt,1446074806 +173452,70336,military,1446074810 +173452,70336,ninja,1446074803 +173452,70336,Sienna Miller,1446074815 +173452,71057,dolls,1446072249 +173452,71057,Elijah Wood,1446072251 +173452,71057,giant robots,1446072270 +173452,71057,post-apocalyptic,1446072230 +173452,71057,sci-fi,1446072235 +173452,71057,survival,1446072238 +173452,71057,visually appealing,1446072232 +173452,71518,based on a book,1445573743 +173452,71518,Bechdel Test:Pass,1445573733 +173452,71518,coming of age,1445573724 +173452,71518,Drew Barrymore,1445573720 +173452,71518,Ellen Page,1445573718 +173452,71518,friendship,1445573746 +173452,71518,girl power,1445573729 +173452,71518,Humour,1445573735 +173452,71518,Juliette Lewis,1445573722 +173452,71518,Kristen Wiig,1445573726 +173452,71518,Marcia Gay Harden,1445573751 +173452,71518,roller derby,1445573721 +173452,71518,sport:roller derby,1445573732 +173452,71518,Texas,1445573763 +173452,71518,Zoe Bell,1445573738 +173452,71535,Abigail Breslin,1445572247 +173452,71535,Bechdel Test: Pass,1445572373 +173452,71535,Bill Murray,1445572228 +173452,71535,dark comedy,1445572230 +173452,71535,Emma Stone,1445572233 +173452,71535,friends,1445572384 +173452,71535,gore,1445572235 +173452,71535,guns,1445572254 +173452,71535,Jesse Eisenberg,1445572237 +173452,71535,post-apocalyptic,1445572226 +173452,71535,violence,1445572256 +173452,71535,witty,1445572241 +173452,71535,Woody Harrelson,1445572243 +173452,71535,zombies,1445572222 +173452,71838,explosions,1446071563 +173452,71838,fridging women,1446071612 +173452,71838,Jamie Foxx,1446071550 +173452,71838,revenge,1446071533 +173452,71838,vigilante,1446071552 +173452,71838,violent,1446071535 +173452,72131,documentary,1445401479 +173452,72131,Michael Jackson,1445401463 +173452,72131,music,1445401471 +173452,72131,singing,1445401481 +173452,72226,animation,1445486007 +173452,72226,based on a book,1445486001 +173452,72226,Bill Murray,1445486009 +173452,72226,father-son relationship,1445486018 +173452,72226,George Clooney,1445485997 +173452,72226,Meryl Streep,1445486011 +173452,72226,quirky,1445486021 +173452,72226,Roald Dahl,1445486002 +173452,72226,stop motion,1445485993 +173452,72226,talking animals,1445486005 +173452,72226,visually appealing,1445485999 +173452,72226,Wes Anderson,1445485995 +173452,72226,Willem Dafoe,1445486014 +173452,73017,Action,1445572417 +173452,73017,Based on a book,1445572408 +173452,73017,England,1445572415 +173452,73017,Guy Ritchie,1445572401 +173452,73017,Jude Law,1445572420 +173452,73017,Rachel McAdams,1445572397 +173452,73017,Robert Downey Jr.,1445572403 +173452,73017,Sherlock Holmes,1445572399 +173452,73017,Victorian era,1445572413 +173452,73017,violent,1445572406 +173452,74510,Bechdel Test:Pass,1446075171 +173452,74510,crime,1446075105 +173452,74510,hackers,1446075096 +173452,74510,heroine,1446075118 +173452,74510,journalism,1446075100 +173452,74510,motorcycle,1446075108 +173452,74510,Noomi Rapace,1446075097 +173452,74510,revenge,1446075111 +173452,74510,strong female lead,1446075180 +173452,74789,Anne Hathaway,1445458919 +173452,74789,based on a book,1445458926 +173452,74789,beautiful,1445458911 +173452,74789,Bechdel Test:Pass,1445458944 +173452,74789,fantasy,1445458908 +173452,74789,Helena Bonham Carter,1445458917 +173452,74789,Johnny Depp,1445458930 +173452,74789,Lewis Carroll,1445458936 +173452,74789,Mia Wasikowska,1445458921 +173452,74789,Reimagining,1445458952 +173452,74789,strong female character,1445458984 +173452,74789,Tim Burton,1445458938 +173452,74789,visually appealing,1445458906 +173452,74948,blood,1446070766 +173452,74948,citizen justice,1446070764 +173452,74948,Michael Caine,1446070758 +173452,74948,murder,1446070768 +173452,74948,revenge,1446070754 +173452,74948,shooting,1446070772 +173452,74948,slow paced,1446070775 +173452,74948,vigilante justice,1446070756 +173452,74948,violence,1446070760 +173452,76093,action,1445402375 +173452,76093,adventure,1445402370 +173452,76093,animation,1445402365 +173452,76093,based on a book,1445402396 +173452,76093,Christopher Mintz-Plasse,1445402412 +173452,76093,dragons,1445402361 +173452,76093,Dreamworks,1445402401 +173452,76093,Dreamworks animation,1445402398 +173452,76093,fantasy,1445402363 +173452,76093,father-son relationship,1445402381 +173452,76093,flying,1445402406 +173452,76093,friendship,1445402368 +173452,76093,funny,1445402372 +173452,76093,Jonah Hill,1445402418 +173452,76093,vikings,1445402367 +173452,76251,action,1445571420 +173452,76251,Chloe Moretz,1445571440 +173452,76251,comic book,1445571416 +173452,76251,coming of age,1445571477 +173452,76251,dark comedy,1445571427 +173452,76251,father daughter relationship,1445571481 +173452,76251,Hit Girl,1445571437 +173452,76251,humorous,1445571418 +173452,76251,Nicolas Cage,1445571422 +173452,76251,pop culture references,1445571432 +173452,76251,revenge,1445571434 +173452,76251,superhero,1445571415 +173452,76251,vigilante,1445571424 +173452,76251,violence,1445571429 +173452,77364,action,1445484460 +173452,77364,Based on a comic book,1445484463 +173452,77364,Chris Evans,1445484449 +173452,77364,comedy,1445484451 +173452,77364,Idris Elba,1445484444 +173452,77364,Jeffrey Dean Morgan,1445484446 +173452,77364,special forces,1445484489 +173452,77364,Zoe Saldana,1445484441 +173452,78088,buried alive,1446070790 +173452,78088,cellphone scene,1446070817 +173452,78088,claustrophobic,1446070792 +173452,78088,coffin,1446070801 +173452,78088,false hope,1446070799 +173452,78088,gripping,1446070812 +173452,78088,Middle East,1446070795 +173452,78088,race against time,1446070837 +173452,78088,Realistic ending,1446070805 +173452,78088,Ryan Reynolds,1446070788 +173452,78088,Survival Story,1446070807 +173452,78105,action,1446071479 +173452,78105,based on a video game,1446071478 +173452,78105,Ben Kingsley,1446071487 +173452,78105,Gemma Arterton,1446071483 +173452,78105,Jake Gyllenhaal,1446071482 +173452,78105,whitewashing,1446071520 +173452,78469,action,1445484730 +173452,78469,Based on a TV show,1445484733 +173452,78469,Bradley Cooper,1445484715 +173452,78469,cheesy,1445484728 +173452,78469,ensemble cast,1445484652 +173452,78469,Jessica Biel,1445484719 +173452,78469,Liam Neeson,1445484713 +173452,78469,Quinton Jackson,1445484710 +173452,79091,adoption,1446076418 +173452,79091,animation,1446076406 +173452,79091,Bechdel Test:Pass,1446076467 +173452,79091,comedy,1446076425 +173452,79091,family,1446076427 +173452,79091,funny,1446076404 +173452,79091,mad scientist,1446076403 +173452,79091,orphans,1446076411 +173452,79091,parenting,1446076421 +173452,79091,Steve Carell,1446076408 +173452,79091,super villain,1446076423 +173452,79091,warm,1446076436 +173452,79132,Christopher Nolan,1445573300 +173452,79132,dreamlike,1445573293 +173452,79132,Ellen Page,1445573295 +173452,79132,ensemble cast,1445573306 +173452,79132,Joseph Gordon-Levitt,1445573298 +173452,79132,Ken Watanabe,1445573314 +173452,79132,Leonardo DiCaprio,1445573286 +173452,79132,Marion Cotillard,1445573318 +173452,79132,sci-fi,1445573289 +173452,79132,Tom Hardy,1445573352 +173452,79132,visually appealing,1445573284 +173452,79293,action,1445483250 +173452,79293,Angelina Jolie,1445483183 +173452,79293,assassination,1445483187 +173452,79293,Chiwetel Ejiofor,1445483220 +173452,79293,double agents,1445483253 +173452,79293,espionage,1445483185 +173452,79293,female lead,1445483205 +173452,79293,Liev Schreiber,1445483241 +173452,79293,sleeper agent,1445483188 +173452,79293,strong female lead,1445483192 +173452,79293,thriller,1445483200 +173452,79592,buddy movie,1446078044 +173452,79592,Eva Mendes,1446078046 +173452,79592,police,1446078047 +173452,79592,spiteful humour,1446078077 +173452,79592,Weak screenplay,1446078062 +173452,79702,based on a comic,1445570951 +173452,79702,fight scenes,1445570946 +173452,79702,funny,1445570948 +173452,79702,geeks,1445570959 +173452,79702,geeky,1445570953 +173452,79702,manic pixie dream girl,1445570980 +173452,79702,Michael Cera,1445570942 +173452,79702,quirky,1445570971 +173452,79702,stylized,1445570940 +173452,79702,video games,1445570937 +173452,80126,assassin,1446078862 +173452,80126,Bechdel Test:Fail,1446078881 +173452,80126,boring,1446078875 +173452,80126,complicated relationships,1446078873 +173452,80126,George Clooney,1446078860 +173452,80126,Italy,1446078864 +173452,80126,landscape,1446078867 +173452,80126,slow,1446078859 +173452,80549,Bechdel Test:Pass,1445573803 +173452,80549,comedy,1445573783 +173452,80549,Emma Stone,1445573776 +173452,80549,family relationships,1445573788 +173452,80549,funny,1445573785 +173452,80549,high school,1445573781 +173452,80549,Stanley Tucci,1445573794 +173452,80549,strong female lead,1445573813 +173452,80549,teenage girl,1445573802 +173452,80549,virginity,1445573790 +173452,80549,witty,1445573778 +173452,80615,adventure,1446075511 +173452,80615,animation,1446075514 +173452,80615,Based on a book,1446075502 +173452,80615,birds,1446075499 +173452,80615,cute,1446075517 +173452,80615,flying,1446075497 +173452,80615,good versus evil,1446075495 +173452,80615,Owls,1446075494 +173452,80615,talking animals,1446075492 +173452,81158,afghanistan,1446074330 +173452,81158,documentary,1446074332 +173452,81158,military,1446074330 +173452,81158,soldiers,1446074345 +173452,81191,depressing,1446079388 +173452,81191,documentary,1446079385 +173452,81191,education,1446079363 +173452,81191,heartbreaking,1446079365 +173452,81191,literacy,1446079370 +173452,81191,schools,1446079371 +173452,81191,social commentary,1446079368 +173452,81191,teachers,1446079373 +173452,81229,action,1445483606 +173452,81229,aging,1445483604 +173452,81229,Bechdel Test:Fail,1445483624 +173452,81229,Bruce Willis,1445483589 +173452,81229,cia,1445483613 +173452,81229,conspiracy,1445483608 +173452,81229,Helen Mirren,1445483592 +173452,81229,John Malkovich,1445483594 +173452,81229,Karl Urban,1445483628 +173452,81229,Mary-Louise Parker,1445483601 +173452,81229,Morgan Freeman,1445483591 +173452,81229,Richard Dreyfuss,1445483597 +173452,81564,animation,1445458219 +173452,81564,anti-hero,1445458216 +173452,81564,David Cross,1445458253 +173452,81564,funny,1445458218 +173452,81564,minions,1445458261 +173452,81564,sensitive villians,1445458258 +173452,81564,superheroes,1445458222 +173452,81564,supervillain,1445458244 +173452,81564,witty,1445458237 +173452,81834,adventure,1446076733 +173452,81834,Alan Rickman,1446076719 +173452,81834,based on a book,1446076718 +173452,81834,Bechdel Test:Pass,1446076771 +173452,81834,Emma Watson,1446076723 +173452,81834,Evanna Lynch,1446076779 +173452,81834,good versus evil,1446076737 +173452,81834,Helena Bonham Carter,1446076725 +173452,81834,Julie Walters,1446076808 +173452,81834,magic,1446076722 +173452,85131,Aaron Eckhart,1445473200 +173452,85131,action,1445473143 +173452,85131,alien invasion,1445473138 +173452,85131,Michelle Rodriguez,1445473188 +173452,85131,sci-fi,1445473136 +173452,85131,warfare,1445473175 +173452,86190,abandoned amusement park,1446071641 +173452,86190,assassin,1446071623 +173452,86190,Bechdel Test:Pass,1446071626 +173452,86190,Cate Blanchett,1446071620 +173452,86190,female lead,1446071649 +173452,86190,Saoirse Ronan,1446071624 +173452,86190,strong female lead,1446071618 +173452,86332,action,1445484127 +173452,86332,Anthony Hopkins,1445484129 +173452,86332,Bechdel Test:Fail,1445484150 +173452,86332,Chris Hemsworth,1445484098 +173452,86332,father-son relationship,1445484146 +173452,86332,Idris Elba,1445484121 +173452,86332,Kat Dennings,1445484144 +173452,86332,Marvel,1445484096 +173452,86332,mythology,1445484094 +173452,86332,Natalie Portman,1445484100 +173452,86332,strong woman,1445484153 +173452,86332,superhero,1445484092 +173452,86332,Tom Hiddleston,1445484103 +173452,86644,action,1445400971 +173452,86644,car chase,1445400952 +173452,86644,cars,1445400754 +173452,86644,Dwayne Johnson,1445400755 +173452,86644,great cast,1445400957 +173452,86644,Michelle Rodriguez,1445400943 +173452,86644,The Rock,1445400962 +173452,86644,Vin Diesel,1445400947 +173452,87192,aliens,1445978433 +173452,87192,awesome soundtrack,1445978451 +173452,87192,black comedy,1445978434 +173452,87192,British,1445978438 +173452,87192,drug dealing,1445978446 +173452,87192,England,1445978436 +173452,87192,heart,1445978513 +173452,87192,John Boyega,1445978494 +173452,87192,London,1445978443 +173452,87192,sweet,1445978544 +173452,87192,teenagers,1445978508 +173452,87232,1960s,1445474683 +173452,87232,action,1445474687 +173452,87232,adapted from:comic,1445474662 +173452,87232,Bechdel Test:Fail,1445474715 +173452,87232,black guy dies,1445474723 +173452,87232,cameo: Hugh Jackman,1445474696 +173452,87232,Cuban missile crisis,1445474670 +173452,87232,James McAvoy,1445474650 +173452,87232,Jennifer Lawrence,1445474655 +173452,87232,Michael Fassbender,1445474648 +173452,87232,mutants,1445474681 +173452,87232,sci fi,1445474667 +173452,87232,superhero,1445474646 +173452,87232,X-men,1445474657 +173452,89087,action,1445484599 +173452,89087,assassin,1445484583 +173452,89087,female action star,1445484592 +173452,89087,organized crime,1445484585 +173452,89087,revenge,1445484616 +173452,89087,strong female lead,1445484595 +173452,89087,Zoe Saldana,1445484591 +173452,89745,action,1445484921 +173452,89745,Agent Maria Hill,1445484983 +173452,89745,Bechdel Test:Fail,1445485011 +173452,89745,Black Widow,1445484997 +173452,89745,Captain America,1445484934 +173452,89745,Chris Evans,1445484962 +173452,89745,Chris Hemsworth,1445485023 +173452,89745,comic book,1445484958 +173452,89745,ensemble cast,1445484949 +173452,89745,explosion,1445485040 +173452,89745,fast paced,1445484969 +173452,89745,Gwyneth Paltrow,1445484942 +173452,89745,Hulk,1445484930 +173452,89745,humorous,1445484936 +173452,89745,Iron Man,1445484923 +173452,89745,Jeremy Renner,1445485006 +173452,89745,Joss Whedon,1445484925 +173452,89745,Loki,1445484944 +173452,89745,Mark Ruffalo,1445484938 +173452,89745,Marvel,1445484916 +173452,89745,New York City,1445484988 +173452,89745,Robert Downey Jr.,1445484953 +173452,89745,robots,1445484990 +173452,89745,Samuel L. Jackson,1445484932 +173452,89745,Scarlett Johansson,1445484918 +173452,89745,sci-fi,1445484993 +173452,89745,superhero,1445484914 +173452,89745,superhero team,1445484928 +173452,89745,The Avengers,1445484967 +173452,89745,Thor,1445484952 +173452,89745,Tom Hiddleston,1445484947 +173452,90249,android(s)/cyborg(s),1446071324 +173452,90249,boxing,1446071321 +173452,90249,Evangeline Lilly,1446071344 +173452,90249,fighting,1446071341 +173452,90249,Fighting Robots,1446071331 +173452,90249,Hugh Jackman,1446071326 +173452,90249,obnoxious kid,1446071335 +173452,90249,robots,1446071319 +173452,90249,sci-fi,1446071348 +173452,90249,Science Fiction,1446071327 +173452,90405,Amanda Seyfried,1446071725 +173452,90405,corruption,1446071709 +173452,90405,dystopia,1446071702 +173452,90405,eternal youth,1446071720 +173452,90405,future,1446071704 +173452,90405,justin timberlake,1446071713 +173452,90405,sci-fi,1446071698 +173452,90405,social commentary,1446071707 +173452,91500,Amandla Stenberg,1445644475 +173452,91500,based on a book,1445644446 +173452,91500,bow & arrow,1445644513 +173452,91500,dystopia,1445644444 +173452,91500,Jennifer Lawrence,1445644449 +173452,91500,Lenny Kravitz,1445644481 +173452,91500,Mako Mori Test:Pass,1445644536 +173452,91500,science fiction,1445644447 +173452,91500,social commentary,1445644452 +173452,91500,Stanley Tucci,1445644492 +173452,91500,strong female lead,1445644458 +173452,91500,Woody Harrelson,1445644455 +173452,93840,ancient gods,1445572606 +173452,93840,bloody,1445572608 +173452,93840,Bradley Whitford,1445572656 +173452,93840,cabin,1445572626 +173452,93840,clever,1445572590 +173452,93840,conspiracy,1445572602 +173452,93840,dark comedy,1445572592 +173452,93840,gore,1445572599 +173452,93840,Jesse Williams,1445572684 +173452,93840,joss whedon,1445572596 +173452,93840,monsters,1445572614 +173452,93840,unicorn,1445572624 +173452,93840,zombies,1445572616 +173452,94018,alien invasion,1445473228 +173452,94018,Liam Neeson,1445473241 +173452,94018,military,1445473247 +173452,94018,Navy,1445473235 +173452,94018,Rihanna,1445473238 +173452,94018,sci-fi,1445473232 +173452,95167,animation,1445402715 +173452,95167,Archery,1445402739 +173452,95167,bears,1445402720 +173452,95167,Bechdel Test:Pass,1445402713 +173452,95167,Billy Connolly,1446072224 +173452,95167,celtic music,1445402718 +173452,95167,charming,1445402724 +173452,95167,coming of age,1445402721 +173452,95167,Emma Thompson,1445402736 +173452,95167,family,1445402750 +173452,95167,father-daughter relationship,1445402734 +173452,95167,mother-daughter relationships,1445402707 +173452,95167,Pixar,1445402701 +173452,95167,princess,1445402716 +173452,95167,Scotland,1445402703 +173452,95218,ballet,1445400381 +173452,95218,dance,1445400383 +173452,95218,documentary,1445400388 +173452,95218,Michaela DePrince,1445400464 +173452,96150,documentary,1446168165 +173452,96150,excess,1446168262 +173452,96150,mansion,1446168245 +173452,96150,rich,1446168169 +173452,96737,drugs,1446071401 +173452,96737,Dystopia,1446071370 +173452,96737,gore,1446071396 +173452,96737,Karl Urban,1446071393 +173452,96737,Lena Headey,1446071403 +173452,96737,police,1446071450 +173452,96737,police corruption,1446071387 +173452,96737,post-apocalyptic,1446071368 +173452,96737,sci-fi,1446071374 +173452,96737,strong female,1446071407 +173452,96737,violence,1446071424 +173452,97304,Ben Affleck,1446070989 +173452,97304,cia,1446070999 +173452,97304,Clea DuVall,1446071135 +173452,97304,hostage,1446070995 +173452,97304,Iran,1446070984 +173452,97304,politics,1446070993 +173452,97304,suspenseful,1446070986 +173452,97304,True story,1446070983 +173452,97752,Andy Wachowski,1445572978 +173452,97752,atmospheric,1445572930 +173452,97752,complex,1445573047 +173452,97752,Doona Bae,1445573023 +173452,97752,dystopia,1445572928 +173452,97752,Halle Berry,1445572941 +173452,97752,human nature,1445572992 +173452,97752,Lana Wachowski,1445572973 +173452,97752,multiple storylines,1445572925 +173452,97752,sacrifice,1445573008 +173452,97752,sci-fi,1445572934 +173452,97752,slavery,1445572994 +173452,97752,social commentary,1445572937 +173452,97752,The Wachowskis,1445572953 +173452,97752,Tom Hanks,1445572932 +173452,97752,visually appealing,1445572926 +173452,97752,yellowface,1445573033 +173452,97913,animation,1445458665 +173452,97913,arcade,1445458683 +173452,97913,Bechdel Test:Pass,1445458687 +173452,97913,disney,1445458662 +173452,97913,geeky,1445458670 +173452,97913,John C. Reilly,1445458673 +173452,97913,racing,1445458675 +173452,97913,Sarah Silverman,1445458667 +173452,97913,soundtrack,1445458685 +173452,97913,strong female characters,1445458694 +173452,97913,video games,1445458660 +173452,98065,board game,1446074588 +173452,98065,chess,1446074586 +173452,98065,competition,1446074598 +173452,98065,documentary,1446074621 +173452,98065,inner city school,1446074622 +173452,98065,school,1446074600 +173452,98122,documentary,1445401350 +173452,98122,video games,1445401352 +173452,99007,based on a book,1446070602 +173452,99007,funny,1446070596 +173452,99007,post-apocalyptic,1446070598 +173452,99007,quirky romantic,1446070611 +173452,99007,romance,1446070592 +173452,99007,zombies,1446070590 +173452,99910,action,1446074847 +173452,99910,Arnold Schwarzenegger,1446074849 +173452,99910,bloody,1446074857 +173452,99910,cops,1446074853 +173452,99910,humor,1446074855 +173452,99910,small town,1446074851 +173452,100169,abuse,1446167732 +173452,100169,documentary,1446167705 +173452,100169,interesting jobs,1446167728 +173452,100169,pornography,1446167707 +173452,101076,action,1446074729 +173452,101076,Bruce Willis,1446074745 +173452,101076,Dwayne Johnson,1446074743 +173452,101076,poor writing,1446074741 +173452,101076,weak story,1446074759 +173452,101112,Fantasy,1445459193 +173452,101112,James Franco,1445459214 +173452,101112,L. Frank Baum,1445459218 +173452,101112,magic,1445459195 +173452,101112,Michelle Williams,1445459220 +173452,101112,Mila Kunis,1445459210 +173452,101112,strong women,1445459196 +173452,101112,visually stunning,1445459198 +173452,101112,whimsical,1445459200 +173452,102125,action,1445483781 +173452,102125,Bechdel Test:Fail,1445483808 +173452,102125,Ben Kingsley,1445483783 +173452,102125,Don Cheadle,1445483829 +173452,102125,Gwyneth Paltrow,1445483774 +173452,102125,humour,1445483792 +173452,102125,Iron Man,1445483776 +173452,102125,Mark Ruffalo,1445483812 +173452,102125,Marvel,1445483779 +173452,102125,Paul Bettany,1445483825 +173452,102125,Robert Downey Jr.,1445483800 +173452,102125,robots,1445483785 +173452,102125,snappy banter,1445483852 +173452,102125,superhero,1445483777 +173452,102716,action,1445400983 +173452,102716,cars,1445400985 +173452,102716,diverse cast,1445484797 +173452,102716,Dominic Toretto,1445401002 +173452,102716,Dwayne Johnson,1445400989 +173452,102716,ensemble cast,1445484780 +173452,102716,family,1445484787 +173452,102716,Gal Gadot,1445401011 +173452,102716,Gina Carano,1445401009 +173452,102716,Jason Statham,1445401000 +173452,102716,Michelle Rodriguez,1445400996 +173452,102716,Sung Kang,1445484772 +173452,102716,Vin Diesel,1445401013 +173452,103042,aliens,1445974163 +173452,103042,Amy Adams,1445974151 +173452,103042,comic book,1445974128 +173452,103042,gritty,1445974140 +173452,103042,Henry Cavill,1445974135 +173452,103042,Lawrence Fishburne,1445974184 +173452,103042,long fight scenes,1445974133 +173452,103042,military,1445974143 +173452,103042,strong women,1445974157 +173452,103042,superhero,1445974122 +173452,103042,Superman,1445974124 +173452,103042,Zack Snyder,1445974126 +173452,103107,Darlene Love,1445474821 +173452,103107,documentary,1445474785 +173452,103107,Merry Clayton,1445474831 +173452,103107,music industry,1445474773 +173452,103107,musicians,1445474768 +173452,103107,singing,1445474825 +173452,103107,vocalists,1445474771 +173452,103228,action,1445403277 +173452,103228,brothers,1445403233 +173452,103228,cinematography,1445400196 +173452,103228,family,1445403228 +173452,103228,fun,1445400193 +173452,103228,giant monster,1445400202 +173452,103228,giant robots,1445400183 +173452,103228,Guillermo del Toro,1445403242 +173452,103228,Idris Elba,1445400153 +173452,103228,mecha,1445403261 +173452,103228,Rinko Kikuchi,1445400198 +173452,103228,robots,1445403264 +173452,103228,Ron Perlman,1445403239 +173452,103228,sci-fi,1445400188 +173452,103228,strong female lead,1445403223 +173452,103228,visually appealing,1445400204 +173452,103596,B-movie,1446074658 +173452,103596,Campy,1446074660 +173452,103596,natural disaster,1446074663 +173452,103596,sharks,1446074656 +173452,103596,so bad that it's good,1446074650 +173452,103596,syfy,1446074647 +173452,103596,Tara Reid,1446074675 +173452,103596,tornadoes,1446074688 +173452,103596,torrential downpour,1446074668 +173452,103772,Hugh Jackman,1445974088 +173452,103772,Japan,1445974099 +173452,103772,martial arts,1445974094 +173452,103772,Marvel,1445974102 +173452,103772,superhero,1445974090 +173452,103772,x-men,1445974092 +173452,103772,yakuza,1445974097 +173452,105952,documentary,1446074388 +173452,105952,family,1446074399 +173452,105952,restaurant,1446074385 +173452,105952,restaurant world,1446074390 +173452,106002,action,1445459323 +173452,106002,adapted from:book series,1445459337 +173452,106002,alien invasion,1445459300 +173452,106002,aliens,1445459274 +173452,106002,Asa Butterfield,1445459306 +173452,106002,based on a book,1445459276 +173452,106002,bullying,1445459290 +173452,106002,games,1445459313 +173452,106002,Harrison Ford,1445459296 +173452,106002,military,1445459286 +173452,106002,Orson Scott Card,1445459279 +173452,106002,sci-fi,1445459303 +173452,106002,space,1445459272 +173452,106002,True to the book,1445459294 +173452,106002,war,1445459288 +173452,106487,based on a book,1445644320 +173452,106487,Bechdel Test:Pass,1445644331 +173452,106487,dystopia,1445644374 +173452,106487,Jeffrey Wright,1445644411 +173452,106487,Jena Malone,1445644428 +173452,106487,Jennifer Lawrence,1445644364 +173452,106487,Lenny Kravitz,1445644392 +173452,106487,Stanley Tucci,1445644361 +173452,106487,strong female lead,1445644318 +173452,106487,Woody Harrelson,1445644367 +173452,106918,Ben Stiller,1446070631 +173452,106918,daydream,1446070654 +173452,106918,Iceland,1446070626 +173452,106918,inspirational,1446070624 +173452,106918,Life magazine,1446070649 +173452,106918,mother-son relationship,1446070638 +173452,106918,photography,1446070683 +173452,106918,positive thinking,1446070635 +173452,106918,Sean Penn,1446070666 +173452,107096,business,1446074915 +173452,107096,chefs,1446074908 +173452,107096,documentary,1446074900 +173452,107096,restaurant,1446074894 +173452,107406,Allegory,1445572828 +173452,107406,chris evans,1445572705 +173452,107406,dark,1445572833 +173452,107406,jamie bell,1445572722 +173452,107406,Ko Ah-Sung,1445572789 +173452,107406,Microcosmic view of power structures,1445572739 +173452,107406,New World Order agenda,1445572741 +173452,107406,Octavia Spencer,1445572802 +173452,107406,post-apocalyptic,1445572700 +173452,107406,revolution,1445572729 +173452,107406,sci-fi,1445572746 +173452,107406,snow,1445572730 +173452,107406,social commentary,1445572704 +173452,107406,Song Kang-ho,1445572756 +173452,107406,tilda swinton,1445572710 +173452,107406,trains,1445572707 +173452,107406,violence,1445572726 +173452,108932,Chris Pratt,1445645772 +173452,108932,colorful,1445645783 +173452,108932,Elizabeth Banks,1445645819 +173452,108932,Lego,1445645825 +173452,108932,Morgan Freeman,1445645735 +173452,108932,SPACESHIP!,1445645767 +173452,109487,Anne Hathaway,1445573121 +173452,109487,Christopher Nolan,1445573110 +173452,109487,father - child relationship,1445573167 +173452,109487,Jessica Chastain,1445573161 +173452,109487,Matthew McConaughey,1445573116 +173452,109487,Murphy's Law,1445573145 +173452,109487,sci-fi,1445573108 +173452,109487,space,1445573106 +173452,109487,space travel,1445573126 +173452,109487,wormhole,1445573135 +173452,109864,Based on a TV show,1445978561 +173452,109864,Chris Lowell,1445978585 +173452,109864,high school reunion,1445978606 +173452,109864,Kristen Bell,1445978578 +173452,109864,Percy Daggs III,1445978592 +173452,109864,police corruption,1445978568 +173452,109864,Rob Thomas,1445978570 +173452,109864,witty dialogue,1445978563 +173452,110102,action,1445475461 +173452,110102,Anthony Mackie,1445475479 +173452,110102,Black Widow,1445475466 +173452,110102,Captain America,1445475451 +173452,110102,Chris Evans,1445475449 +173452,110102,Cobie Smulders,1445475469 +173452,110102,Marvel,1445475453 +173452,110102,Nazis,1445475455 +173452,110102,Nick Fury,1445475472 +173452,110102,Robert Redford,1445475493 +173452,110102,Samuel L. Jackson,1445475485 +173452,110102,Scarlett Johansson,1445475448 +173452,110102,strong woman,1445475457 +173452,110102,superhero,1445475445 +173452,110669,documentary,1445400579 +173452,110669,magic,1445400572 +173452,110669,Magicians,1445400577 +173452,111362,based on a comic,1445475268 +173452,111362,Ellen Page,1445475339 +173452,111362,Fan Bingbing,1445475347 +173452,111362,Hugh Jackman,1445475232 +173452,111362,Ian McKellen,1445475263 +173452,111362,James McAvoy,1445475256 +173452,111362,Jennifer Lawrence,1445475258 +173452,111362,Michael Fassbender,1445475228 +173452,111362,mutants,1445475271 +173452,111362,Patrick Stewart,1445475254 +173452,111362,Peter Dinklage,1445475331 +173452,111362,superhero,1445475264 +173452,111362,superpowers,1445475266 +173452,111362,time travel,1445475209 +173452,111362,X-men,1445475260 +173452,111443,cooking,1446066649 +173452,111443,divorce,1446066794 +173452,111443,family,1446066714 +173452,111443,father-son relationship,1446066664 +173452,111443,food,1446066647 +173452,111443,Food Truck,1446066731 +173452,111443,friendship,1446066666 +173452,111443,hipster,1446066734 +173452,111443,Miami,1446066726 +173452,111443,predictable,1446066651 +173452,111443,re-kindled romance,1446066698 +173452,111443,road trip,1446066653 +173452,111443,single parents,1446066687 +173452,111443,Twitter,1446066717 +173452,111659,Angelina Jolie,1445458740 +173452,111659,Disney,1445458750 +173452,111659,dragon,1445458772 +173452,111659,fairy tale,1445458738 +173452,111659,non-romantic love,1445458791 +173452,111659,princess,1445458763 +173452,111659,sleeping beauty,1445458741 +173452,111659,strong female lead,1445458756 +173452,111659,whimsical,1445458747 +173452,111759,action,1445402847 +173452,111759,Alien Invasion,1445402851 +173452,111759,aliens,1445402844 +173452,111759,based on a novel,1445402856 +173452,111759,Emily Blunt,1445402842 +173452,111759,future,1445402849 +173452,111759,sci-fi,1445402836 +173452,111759,science fiction,1445402863 +173452,111759,time loop,1445402838 +173452,111759,Tom Cruise,1445402840 +173452,111921,Amsterdam,1446070576 +173452,111921,based on a book,1446070549 +173452,111921,cancer,1446070534 +173452,111921,disease,1446070547 +173452,111921,romance,1446070541 +173452,111921,shailene woodley,1446070538 +173452,111921,teenage romance,1446070540 +173452,111921,young adult,1446070553 +173452,112582,documentary,1445401427 +173452,112582,movie business,1445401409 +173452,112582,Roger Ebert,1445401421 +173452,112852,Action,1445474448 +173452,112852,adventure,1445474385 +173452,112852,aliens,1445474397 +173452,112852,chauvinism,1445474422 +173452,112852,Chris Pratt,1445474390 +173452,112852,great soundtrack,1445474340 +173452,112852,groot,1445474515 +173452,112852,humorous,1445474434 +173452,112852,Marvel,1445474444 +173452,112852,raccoon,1445474464 +173452,112852,sci-fi,1445474342 +173452,112852,sexism,1445474418 +173452,112852,space,1445474344 +173452,112852,space opera,1445474432 +173452,112852,talking animals,1445474388 +173452,112852,Teamwork,1445474395 +173452,112852,Vin Diesel,1445474400 +173452,112852,Zoe Saldana,1445474512 +173452,113345,action,1445400231 +173452,113345,sci-fi,1445400225 +173452,113345,space,1445400252 +173452,113345,Space Opera,1445400234 +173452,113345,wachowskis,1445400230 +173452,113632,documentary,1445400739 +173452,113632,fathers,1445400719 +173452,113632,parenting,1445400733 +173452,113632,punk,1445400727 +173452,113868,documentary,1446074516 +173452,113868,George Takei,1446074515 +173452,113868,husbands,1446074528 +173452,113868,Star Trek,1446074512 +173452,114552,adventure,1445645427 +173452,114552,based on a book,1445645431 +173452,114552,cheese,1445645409 +173452,114552,claymation,1445645414 +173452,114552,father-daughter relationship,1445645417 +173452,114552,transphobic,1445645453 +173452,115149,Action,1446066821 +173452,115149,Adrianne Palicki,1446066839 +173452,115149,car chase,1446066853 +173452,115149,Dean Winters,1446070514 +173452,115149,dog killing,1446066868 +173452,115149,gunfight,1446066851 +173452,115149,Hitman,1446066823 +173452,115149,Keanu Reeves,1446066819 +173452,115149,nightclub,1446066856 +173452,115149,organized crime,1446066844 +173452,115149,puppy,1446066862 +173452,115149,russian mafia,1446066827 +173452,115149,stylish,1446066835 +173452,115149,violent,1446066829 +173452,115149,Willem Dafoe,1446066833 +173452,115617,action,1446073906 +173452,115617,adventure,1445458369 +173452,115617,Animation,1445458351 +173452,115617,artificial intelligence,1445458404 +173452,115617,bravery,1445458408 +173452,115617,brother-brother relationship,1445458413 +173452,115617,brothers,1445458427 +173452,115617,Coming of Age,1445458374 +173452,115617,Disney,1445458355 +173452,115617,family,1445458364 +173452,115617,friends,1445458391 +173452,115617,friendship,1445458361 +173452,115617,funny,1445458357 +173452,115617,robotics,1445458359 +173452,115617,robots,1445458378 +173452,115617,sci-fi,1445458363 +173452,115617,technology,1445458375 +173452,116664,Aging,1445400656 +173452,116664,Documentary,1445400648 +173452,116664,Fashion,1445400651 +173452,116664,New York,1445400655 +173452,116823,action,1446073432 +173452,116823,adapted from book,1446073391 +173452,116823,author:Suzanne Collins,1446073387 +173452,116823,bad ass female lead,1446073319 +173452,116823,based on a book,1446073423 +173452,116823,Bechdel Test:Pass,1446073376 +173452,116823,dystopia,1446073313 +173452,116823,fashion,1446073318 +173452,116823,Jennifer Lawrence,1446073315 +173452,116823,military,1446073378 +173452,116823,revolution,1446073316 +173452,116823,sacrifice,1446073438 +173452,116823,sisters,1446073422 +173452,116823,strong female lead,1446073380 +173452,117529,action,1445402457 +173452,117529,adventure,1445402439 +173452,117529,Bryce Dallas Howard,1445402446 +173452,117529,Chris Pratt,1445402448 +173452,117529,dinosaurs,1445402437 +173452,117529,island,1445402442 +173452,117529,sci-fi,1445402440 +173452,117529,tyrannosaurus rex,1445402452 +173452,117529,velociraptor,1445402467 +173452,118466,documentary,1445400703 +173452,118466,Studio Ghibli,1445400706 +173452,118766,Christmas,1446074453 +173452,118766,documentary,1446074423 +173452,118766,gay relationship,1446074451 +173452,118766,interesting jobs,1446074477 +173452,118766,Mick Foley,1446074440 +173452,118766,Santa Claus,1446074419 +173452,119145,action,1445571683 +173452,119145,british,1445571680 +173452,119145,colin firth,1445571687 +173452,119145,Michael Caine,1445571686 +173452,119145,samuel l. jackson,1445571695 +173452,119145,saving the world,1445571799 +173452,119145,Secret Agency,1445571801 +173452,119145,sexist jokes,1445571823 +173452,119145,Sofia Boutella,1445571779 +173452,119145,spy,1445571675 +173452,119145,tongue-in-cheek,1445571787 +173452,119145,violent,1445571677 +173452,122900,ants,1445485081 +173452,122900,Bechdel Test:Fail,1445485084 +173452,122900,comic book,1445485062 +173452,122900,Evangeline Lilly,1445485262 +173452,122900,heist,1445485065 +173452,122900,Marvel,1445485059 +173452,122900,Michael Douglas,1445485069 +173452,122900,paul rudd,1445485251 +173452,122900,sci-fi,1445485067 +173452,122900,superhero,1445485060 +173452,122900,women in refrigerators,1445485242 +173452,130351,documentaries,1446074173 +173452,130351,documentary,1446074204 +173452,130351,music,1446074176 +173452,130351,The Beach Boys,1446074192 +173452,130634,action,1445484852 +173452,130634,amnesia,1445484843 +173452,130634,car chase,1445484850 +173452,130634,car racing,1445484853 +173452,130634,cars,1445484868 +173452,130634,diverse cast,1445484891 +173452,130634,"Dwayne ""The Rock"" Johnson",1445484836 +173452,130634,ensemble cast,1445484889 +173452,130634,explosions,1445484861 +173452,130634,family,1445484895 +173452,130634,great soundtrack,1445484864 +173452,130634,Michelle Rodriguez,1445484824 +173452,130634,Paul Walker,1445484847 +173452,130634,revenge,1445484856 +173452,130634,Vin Diesel,1445484829 +173452,132796,action,1445974313 +173452,132796,Dwayne Johnson,1445974247 +173452,132796,earthquake,1445974300 +173452,132796,natural disaster,1445974251 +173452,133509,Documentary,1446168494 +173452,133509,hotels,1446168500 +173452,133509,interesting jobs,1446168511 +173452,133509,Japan,1446168495 +173452,133509,Japanese culture,1446168522 +173452,133509,Sex,1446168497 +173452,133887,ballet,1445400512 +173452,134130,based on book,1446073768 +173452,134130,Chiwetel Ejiofor,1446073813 +173452,134130,Donald Glover,1446073821 +173452,134130,funny,1446073784 +173452,134130,Jessica Chastain,1446073804 +173452,134130,mars,1446073770 +173452,134130,matt damon,1446073766 +173452,134130,NASA,1446073780 +173452,134130,Near Future,1446073772 +173452,134130,potatoes,1446073890 +173452,134130,rescue,1446073786 +173452,134130,sci-fi,1446073764 +173452,134130,science,1446073798 +173452,134130,Space,1446073762 +173452,134130,space pirate,1446073897 +173452,134130,space travel,1446073790 +173452,134130,stranded hero,1446073788 +173452,134130,Survival Instinct,1446073864 +173452,137761,China,1446074269 +173452,137761,Chinese American,1446074278 +173452,137761,Chinese food,1446074284 +173452,137761,cooking,1446074291 +173452,137761,documentary,1446074264 +173452,137761,food,1446074261 +173452,137761,history,1446074263 +173452,137761,racism,1446074289 +173452,138036,Armie Hammer,1445571875 +173452,138036,humour,1445571854 +173452,138036,spy,1445571855 +173452,138036,stylish,1445571857 +173507,260,space action,1432484786 +173507,260,starwars,1432484780 +173516,44199,Best of 2005,1155557479 +173518,1590,sci-fi. dark,1188883426 +173518,3105,Drama,1188883383 +173542,48082,child-like,1446836370 +173542,48082,childish,1446836363 +173542,48082,dreamy,1446836356 +173542,48082,emotional,1446836350 +173542,48082,psychedelic,1446836345 +173542,96832,avantgarde,1446836552 +173542,96832,clever,1446836534 +173542,96832,complicated,1446836540 +173542,96832,satirical,1446836566 +173542,96832,unique,1446836577 +173548,260,classic sci-fi,1443332666 +173548,260,Princess Leya,1443332691 +173548,260,Star Wars,1443332680 +173548,314,Enchanting Family movie,1443332788 +173548,314,Great Storytelling,1443332802 +173557,33893,black comedy,1439385487 +173557,39381,Australian,1223994333 +173557,116897,black comedy,1439466763 +173623,293,Action,1225246708 +173623,500,Comedy,1225243780 +173623,500,Robin Williams,1225243793 +173623,1089,organized crime,1225246622 +173623,1089,Quentin Tarantino,1225246610 +173623,1097,Steven Spielberg,1225243963 +173623,1193,Oscar (Best Picture),1225246594 +173623,1196,sci-fi,1225244785 +173623,1213,mafia,1225246571 +173623,1213,Martin Scorsese,1225246568 +173623,2028,action,1225243721 +173623,3006,Al Pacino,1225246194 +173623,3006,true story,1225246189 +173623,4011,Brad Pitt,1225244900 +173623,4011,comedy,1225244907 +173623,4973,comedy,1225246689 +173623,54286,action,1225242824 +173623,55820,Oscar (Best Picture),1225246637 +173629,4993,based on a book,1453174620 +173629,4993,fantasy,1453174596 +173641,55908,Excellent use of dialogue,1439571131 +173641,55908,philosophical,1439571114 +173641,55908,psychological,1439571142 +173641,55908,science fiction,1439571123 +173641,91974,horror,1429857149 +173641,91974,vampires,1429857149 +173641,91974,werewolves,1429857149 +173641,99007,comedy,1433154792 +173641,99007,romance,1433154792 +173641,99007,zombies,1433154792 +173650,2722,Stellan SkarsgÃ¥rd,1287933335 +173650,3826,Kevin Bacon,1287933366 +173650,3826,Paul Verhoeven,1287933377 +173663,45499,bad plot,1318841858 +173663,45499,heavy-handed,1318841844 +173663,45499,Hugh Jackman,1318841823 +173663,45499,obvious subtext,1318841853 +173663,59315,Robert Downey Jr.,1318788178 +173663,59315,superhero,1318788181 +173663,86332,Anthony Hopkins,1318788369 +173663,86332,Chris Hemsworth,1318788413 +173663,86332,funny,1318788383 +173663,86332,Kenneth Branagh,1318788377 +173663,86332,Marvel,1318788399 +173663,86332,mythology,1318788373 +173663,87232,cameos,1318841597 +173663,87232,dialogue,1318841594 +173663,87232,James McAvoy,1318841558 +173663,87232,Michael Fassbender,1318841589 +173663,87232,soundtrack,1318841560 +173663,87232,visually appealing,1318841606 +173663,88140,dieselpunk,1318788087 +173663,88140,Marvel,1318787898 +173663,89305,cringe,1318842119 +173704,69,funny,1288114069 +173704,1457,funny,1288114973 +173704,1457,matthew perry,1288114973 +173704,1457,real challenges,1288114973 +173704,1457,salma hayek,1288114973 +173704,2959,challenging,1288114135 +173704,2959,psychological,1288114128 +173704,2959,smart,1288114131 +173704,4069,chemistry,1288115007 +173704,4069,tolerable,1288115001 +173704,5957,annoying,1288114991 +173704,5957,chick flick,1288114991 +173704,5957,no chemistry,1288114991 +173704,5957,pointless,1288114991 +173704,6155,anti-feminism,1288114886 +173704,6155,insulting,1288114886 +173704,6155,not funny,1288114886 +173704,6155,pandering,1288114886 +173704,6765,diane lane,1288115143 +173704,6765,didn't need to be based on a book,1288115113 +173704,6765,gay friend,1288115143 +173704,6765,not just about romance,1288115143 +173704,6765,realistic,1288115143 +173704,6765,sandra oh,1288115143 +173704,6765,scenic,1288115143 +173704,6765,strong women,1288115143 +173704,6765,tuscany,1288115143 +173704,6942,all-star cast,1288115034 +173704,6942,british,1288115034 +173704,6942,cameos,1288115034 +173704,6942,england,1288115044 +173704,6942,ensemble,1288115044 +173704,6942,funny,1288115034 +173704,44004,annoying,1288114905 +173704,44004,cheesy,1288114925 +173704,44004,chick flick,1288114925 +173704,44004,pointless,1288114925 +173704,44004,unfunny,1288114925 +173704,45186,better than expected,1288115341 +173704,56949,chick movie,1288114837 +173704,56949,cliche,1288114854 +173704,56949,insulting to women,1288114854 +173704,56949,weddings,1288114861 +173704,58559,aaron eckhart,1288115672 +173704,58559,atmospheric,1288115708 +173704,58559,heath ledger,1288115708 +173704,58559,long,1288115672 +173704,58559,michael caine,1288115708 +173704,58559,morgan freeman,1288115708 +173704,58559,smart,1288115708 +173704,62081,action packed,1288115320 +173704,62081,believable motivation,1288115295 +173704,62081,clean ending,1288115320 +173704,62081,confusing,1288115320 +173704,62081,emotional resonance,1288115295 +173704,62081,family,1288115295 +173704,62081,michelle monaghan,1288115265 +173704,62081,rosario dawson,1288115266 +173704,62081,shake-cam,1288115320 +173704,62081,shia labeouf,1288115265 +173704,62081,sibling relationships,1288115295 +173704,66203,idiotic,1288115212 +173704,66203,insulting,1288115212 +173704,66203,justin long,1288115219 +173704,66203,pandering,1288115212 +173704,66203,stunt casting,1288115212 +173704,66203,superficial,1288115212 +173704,69406,betty white,1288114765 +173704,69406,chemistry,1288114769 +173704,69406,dialogue,1288114797 +173704,69406,ryan reynolds,1288114790 +173704,69406,sandra bullock,1288114773 +173710,18,Bruce Willis,1432634143 +173710,18,Comedy,1432634151 +173710,18,multiple storylines,1432634134 +173710,18,tarantino,1432634153 +173710,912,black and white,1432634265 +173710,912,classic,1432634258 +173710,912,Humphrey Bogart,1432634261 +173710,912,sentimental,1432634270 +173710,1527,action,1432628970 +173710,1527,Bruce Willis,1432628939 +173710,1527,futuristic,1432628955 +173710,1527,humorous,1432628958 +173710,1527,Luc Besson,1432628948 +173710,1527,Milla Jovovich,1432628941 +173710,1527,sci-fi,1432628935 +173710,1527,seen more than once,1432631419 +173710,1527,stylized,1432628968 +173710,2571,artificial intelligence,1432631458 +173710,2571,computers,1432631447 +173710,2571,cyberpunk,1432631443 +173710,2571,hackers,1432631441 +173710,2571,Keanu Reeves,1432631444 +173710,2571,sci-fi,1432631435 +173710,2594,better than the american version,1432631690 +173710,2594,dreams,1432631686 +173710,2672,alternate reality,1432633897 +173710,2672,identity,1432633899 +173710,2672,nested virtualization,1432633904 +173710,2672,virtual reality,1432633895 +173710,2700,adult humor,1432633992 +173710,2700,crude humor,1432633994 +173710,2700,free speech,1432633998 +173710,2700,parody,1432634001 +173710,2700,satire,1432633991 +173710,2959,mental illness,1432634663 +173710,2959,philosophy,1432634673 +173710,2959,surreal,1432634670 +173710,2959,thought-provoking,1432634668 +173710,2959,twist ending,1432634656 +173710,3307,silent movie,1432641661 +173710,3717,cars,1450557277 +173710,3793,adapted from:comic,1432633767 +173710,3793,genetics,1432633775 +173710,3793,marvel,1432633769 +173710,3793,sci-fi,1432633770 +173710,3793,superhero,1432633761 +173710,3793,superheroes,1432633773 +173710,3863,dreamlike,1432641554 +173710,3863,dreams,1432641552 +173710,3863,stylized,1432641549 +173710,3863,surreal,1432641548 +173710,3863,virtual reality,1432641551 +173710,3949,drugs,1450557553 +173710,4306,comedy,1432639644 +173710,4306,pixar,1432639647 +173710,4308,colourful,1432639736 +173710,4308,great soundtrack,1432639738 +173710,4308,Sexualized violence,1432639734 +173710,4308,stylized,1432639728 +173710,4370,artificial intelligence,1432639790 +173710,4370,future,1432639797 +173710,4370,Steven Spielberg,1432639788 +173710,4874,intellectual,1432633946 +173710,4874,Kevin Spacey,1432633947 +173710,4874,psychiatrist,1432633952 +173710,4975,fantasy,1432631674 +173710,4975,psychology,1432631666 +173710,4975,surreal,1432631664 +173710,4995,Education,1432634563 +173710,4995,genius,1432634559 +173710,4995,inspirational,1432634575 +173710,4995,intelligent,1432634570 +173710,4995,mathematics,1432634558 +173710,4995,psychology,1432634555 +173710,4995,schizophrenia,1432634557 +173710,5418,assassin,1447419123 +173710,5418,spy,1447419119 +173710,5445,artificial intelligence,1432631558 +173710,5445,future,1432631568 +173710,5445,sci-fi,1432631554 +173710,5445,spielberg,1432631564 +173710,5445,time travel,1432631556 +173710,5679,horror,1450557823 +173710,5989,based on a book,1432634365 +173710,5989,intelligent,1432634371 +173710,5989,Leonardo DiCaprio,1432634361 +173710,5989,Steven Spielberg,1432634368 +173710,5989,Tom Hanks,1432634363 +173710,6377,animation,1432639659 +173710,6377,Disney,1432639674 +173710,6377,Pixar,1432639657 +173710,6874,assassin,1432634618 +173710,6874,masterpiece,1432634614 +173710,6874,stylized,1432634598 +173710,6874,Uma Thurman,1432634601 +173710,6874,visually appealing,1432634596 +173710,7361,beautiful,1432631728 +173710,7361,cult film,1432631716 +173710,7361,dreamlike,1432631725 +173710,7361,nonlinear,1432631718 +173710,7361,sci-fi,1432631722 +173710,7361,surreal,1432631711 +173710,7361,thought-provoking,1432631713 +173710,7438,stylized,1450557382 +173710,32587,adapted from:comic,1432634635 +173710,32587,atmospheric,1432634638 +173710,32587,comic book,1432634636 +173710,32587,storytelling,1432634647 +173710,32587,stylized,1432634632 +173710,32587,superhero,1432634644 +173710,32587,surrealism,1432634631 +173710,33679,Angelina Jolie,1450557243 +173710,44191,Natalie Portman,1450557430 +173710,44191,super-hero,1450557436 +173710,48043,dreamlike,1450557655 +173710,48043,hallucinatory,1450557661 +173710,51662,amazing photography,1432634435 +173710,51662,artistic,1432634431 +173710,51662,Epic,1432634488 +173710,51662,epic adventure,1432634473 +173710,51662,Nudity (Topless),1432634430 +173710,51662,responsibility,1432634451 +173710,51662,stylized,1432634423 +173710,54286,assassin,1450557614 +173710,54286,spy thriller,1450557611 +173710,55908,evolution,1432639851 +173710,55908,intellectual,1432639842 +173710,55908,intelligent,1432639854 +173710,55908,thought-provoking,1432639841 +173710,60069,animated,1432634729 +173710,60069,Animation,1432634731 +173710,60069,artificial intelligence,1432634733 +173710,60069,emotional,1432634724 +173710,60069,Future,1432634727 +173710,60069,pixar,1432634715 +173710,60069,Post apocalyptic,1432634721 +173710,60069,robots,1432634735 +173710,60069,space,1432634720 +173710,72356,Pixar,1432635750 +173710,72356,short film,1432635760 +173710,77658,astronomy,1432634206 +173710,77658,biology,1432634208 +173710,77658,evolution,1432634207 +173710,77658,science,1432634204 +173710,79132,alternate reality,1432631479 +173710,79132,dreams,1432631488 +173710,79132,intellectual,1432631490 +173710,79132,Leonardo DiCaprio,1432631495 +173710,79132,multiple interpretations,1432631492 +173710,79132,sci-fi,1432631481 +173710,79132,thought-provoking,1432631506 +173710,84152,concept,1432631587 +173710,84152,drugs,1432631584 +173710,84152,thought provoking,1432631593 +173710,85414,parallel universe,1432631529 +173710,85414,time loop,1432631533 +173710,91500,Happy ending,1432635838 +173710,91500,Jennifer Lawrence,1432635849 +173710,91500,social commentary,1432635835 +173710,92259,emotional,1432633835 +173710,92259,hilarious,1432633831 +173710,97752,atmospheric,1432639812 +173710,97752,complicated,1432639815 +173710,97752,multiple roles,1432639820 +173710,97752,multiple storylines,1432639807 +173710,97752,social commentary,1432639817 +173710,97752,thought-provoking,1432639814 +173710,97752,visually appealing,1432639809 +173710,106642,Doctor Who,1432640010 +173710,115713,artificial intelligence,1435055678 +173710,115713,thought provoking,1435055682 +173711,1129,high concept,1422336084 +173711,6774,special effects,1422517955 +173711,6774,weird,1422517917 +173711,103816,buddy movie,1420508999 +173711,103816,psychological,1420508999 +173711,103816,zombies,1420508999 +173711,105519,apocalypse,1423040803 +173711,105519,bad acting,1423040803 +173711,105519,pretentious,1423040803 +173711,105519,weak ending,1423040857 +173711,109487,ambitious,1416825670 +173711,109487,artificial intelligence,1416825735 +173711,109487,bad dialogue,1416825697 +173711,109487,thought-provoking,1416825754 +173711,111384,feud,1422343018 +173711,111384,virginia,1422342991 +173711,127066,con artist,1423729006 +173711,127066,misfits and outsiders,1423729006 +173711,127066,obsession,1423729006 +173711,132430,Japanese,1429254281 +173711,132430,moody,1429254369 +173711,132430,neo-noir,1429254267 +173711,132430,San Francisco,1429254299 +173711,139855,animated,1449305229 +173711,139855,psychological,1449305316 +173711,139855,surreal,1449305319 +173714,260,explosions,1439351479 +173714,260,"Family, Action-packed",1439351450 +173719,1,CGI,1294130924 +173719,1,classic,1294130924 +173719,1,disney,1294130924 +173719,1,pixar,1294130924 +173719,260,epic,1294130889 +173719,260,soundtrack,1294130889 +173719,260,space,1294130889 +173719,364,classic,1294130775 +173719,364,disney,1294130781 +173719,364,hans zimmer,1294130775 +173719,364,lions,1294130775 +173719,364,soundtrack,1294130775 +173719,595,disney,1294130969 +173719,616,animals,1294130425 +173719,616,cats,1294130425 +173719,616,classic,1294130507 +173719,616,disney,1294130425 +173719,709,cats,1294131049 +173719,709,disney,1294131049 +173719,709,dogs,1294131049 +173719,1015,cats,1294130577 +173719,1015,dogs,1294130577 +173719,1015,soundtrack,1294130577 +173719,1015,tears,1294130577 +173719,1033,animals,1294130534 +173719,1033,classic,1294130534 +173719,1033,disney,1294130534 +173719,1033,dogs,1294130534 +173719,1033,foxes,1294130534 +173719,1907,china,1294130806 +173719,1907,disney,1294130806 +173719,1907,soundtrack,1294130806 +173719,2018,animals,1294130439 +173719,2018,classic,1294130511 +173719,2018,deer,1294130439 +173719,2018,disney,1294130439 +173719,2018,tears,1294130583 +173719,2080,cats,1294130696 +173719,2080,classic,1294130696 +173719,2080,disney,1294130696 +173719,2080,dogs,1294130696 +173719,2085,disney,1294130954 +173719,2085,dogs,1294130954 +173719,2096,classic,1294130869 +173719,2096,disney,1294130869 +173719,2394,dreamworks,1294130846 +173719,2394,egypt,1294130846 +173719,2394,soundtrack,1294130846 +173719,2571,epic,1294131038 +173719,2687,disney,1294130912 +173719,2687,gorillas,1294130912 +173719,2687,phil collins,1294130912 +173719,2846,animals,1294130398 +173719,2846,cats,1294130398 +173719,2846,dogs,1294130398 +173719,2846,relaxing,1294130398 +173719,2846,soundtrack,1294130398 +173719,5444,aliens,1294130760 +173719,5444,chris sanders,1294130712 +173719,5444,disney,1294130712 +173719,6377,animals,1294130498 +173719,6377,CGI,1294130498 +173719,6377,disney,1294130498 +173719,6377,fish,1294130498 +173719,6377,pixar,1294130498 +173719,6377,soundtrack,1294130744 +173719,6377,tears,1294130590 +173719,6889,animals,1294130459 +173719,6889,bears,1294130459 +173719,6889,disney,1294130459 +173719,6889,phil collins,1294130459 +173719,8534,soundtrack,1294132072 +173719,8534,tigers,1294132072 +173719,59315,robert downey jr,1294130997 +173719,68954,CGI,1294130936 +173719,68954,disney,1294130936 +173719,68954,pixar,1294130936 +173719,68954,tears,1294130936 +173719,73017,hans zimmer,1294131674 +173719,73017,hot men,1294131674 +173719,73017,jude law,1294131674 +173719,73017,sherlock holmes,1294131674 +173719,73017,soundtrack,1294131674 +173719,76093,CGI,1294130615 +173719,76093,chris sanders,1294130719 +173719,76093,dragons,1294130615 +173719,76093,soundtrack,1294130615 +173719,77561,hot ladies,1294131022 +173719,77561,robert downey jr,1294131022 +173719,79132,epic,1294130673 +173719,79132,hans zimmer,1294130731 +173719,79132,leonardo di caprio,1294130673 +173719,79132,soundtrack,1294130673 +173719,79242,lesbians,1294131100 +173719,79242,tears,1294131100 +173719,82461,epic,1294131075 +173719,82461,hot ladies,1294131075 +173719,82461,soundtrack,1294131075 +173723,60816,adventure,1436047194 +173723,60816,comedy,1436047194 +173723,60816,fantasy,1436047194 +173744,260,classic,1439785719 +173744,260,ScyFy,1439785707 +173748,356,beautiful,1453099450 +173748,1721,romantic & good,1453099480 +173748,146926,science,1453099523 +173762,76772,dark,1438384437 +173762,76772,existential,1438384437 +173762,76772,french,1438384437 +173763,8799,sad ending,1359028817 +173763,97913,animation,1359526745 +173763,97913,John C. Reilly,1359526745 +173763,97913,video games,1359526745 +173764,260,classic sci-fi,1436801810 +173764,260,space,1436801796 +173767,70286,political commentary,1252674329 +173775,51935,conspiracy,1435514499 +173775,51935,Mark Wahlberg,1435514503 +173775,51935,revenge,1435514505 +173775,59369,Liam Neeson,1435514516 +173775,59369,revenge,1435514537 +173775,59369,thriller,1435514540 +173775,99112,conspiracy,1435514479 +173775,112450,comedy,1436717722 +173775,112450,romance,1436717722 +173775,112450,spoof,1436717722 +173775,117533,documentary,1433702880 +173775,117533,edward snowden,1433702880 +173775,117533,nsa,1433702880 +173783,163,Rame euy,1143615830 +173808,2334,prescient,1145483120 +173808,7202,Worth it just for the AMAZING music video,1145482608 +173809,106696,animation,1396097490 +173809,106696,beautiful,1396097497 +173809,106696,characters,1396097500 +173809,106696,Disney,1396097492 +173809,106696,feminist,1396097502 +173809,106696,Ice,1396097505 +173809,106696,music,1396097508 +173809,106696,musical,1396097509 +173809,106696,pacing,1396097517 +173809,106696,royalty,1396097530 +173809,106696,siblings,1396097533 +173809,106696,storyline,1396097537 +173809,106696,themes,1396097545 +173809,106696,unnecessary villain,1396097480 +173809,106696,voice acting,1396097553 +173809,106696,writing,1396097558 +173821,260,comedy,1444447923 +173821,260,funny,1444447926 +173821,260,sci-fi,1444447929 +173832,42632,#1 prediction,1159753337 +173836,786,Arnold,1169309440 +173836,786,Arnold Schwarzenegger,1169309444 +173836,2571,sci-fi,1169308498 +173855,260,SF,1442468563 +173855,260,starwars,1442468552 +173857,6155,Good Romantic Comedies,1451049142 +173857,31685,good romantic comedy,1451049179 +173857,31685,Will Smith,1451049164 +173864,29,strange,1368051027 +173864,163,stylish,1368049907 +173864,165,lone hero,1368050657 +173864,177,dark fantasy,1368050288 +173864,353,dark fantasy,1368050288 +173864,748,first contact,1368050556 +173864,1089,stylish,1368049907 +173864,1197,modern fantasy,1368050903 +173864,1208,animal cruelty,1247917103 +173864,1385,lone hero,1368050657 +173864,1587,wizards,1368051047 +173864,1608,lone hero,1368050656 +173864,1682,alone in the world,1368050829 +173864,1711,book,1368050970 +173864,2093,dark fantasy,1368050288 +173864,2114,book,1368050971 +173864,2116,wizards,1368051048 +173864,2140,dark fantasy,1368050288 +173864,2193,wizards,1368051047 +173864,2393,first contact,1368050556 +173864,2467,book,1368050970 +173864,2718,Amy Adams,1239779978 +173864,3271,book,1368050970 +173864,3452,fight scenes,1368050098 +173864,3676,strange,1368051027 +173864,3830,Amy Adams,1243983983 +173864,3830,Cult classic,1243983985 +173864,4887,fight scenes,1368050098 +173864,4896,book,1368050970 +173864,5451,Amy Adams,1239780279 +173864,5952,wizards,1368051047 +173864,5989,Amy Adams,1241262457 +173864,5989,based on a book,1241262842 +173864,6207,Amy Adams,1239780247 +173864,6365,fight scenes,1368050098 +173864,7153,wizards,1368051047 +173864,45447,book,1368050970 +173864,48043,dreamlike,1280666370 +173864,48043,immortality,1280666377 +173864,48043,visually appealing,1280666368 +173864,48394,dark fantasy,1368050288 +173864,48394,modern fantasy,1368050903 +173864,52867,Amy Adams,1239780926 +173864,54259,modern fantasy,1368050903 +173864,66097,dark fantasy,1368050288 +173864,68793,Amy Adams,1243940280 +173864,68793,Ben Stiller,1243983881 +173864,69844,wizards,1368051048 +173864,70293,Amy Adams,1252647423 +173864,86898,meditative,1368050627 +173890,25,alcoholism,1441828606 +173890,25,love,1441828615 +173890,32,post-apocalyptic,1410173086 +173890,32,sci-fi,1410173099 +173890,32,time travel,1410173090 +173890,32,twist ending,1410518882 +173890,47,atmospheric,1410520940 +173890,47,psychological,1410520936 +173890,47,serial killer,1410520928 +173890,47,twist ending,1410520917 +173890,50,funny,1410520611 +173890,50,Kevin Spacey,1410520606 +173890,50,suspense,1410520604 +173890,50,twist ending,1410520596 +173890,97,angry,1429906780 +173890,97,cynical,1429906777 +173890,110,action,1422210454 +173890,110,epic,1422210494 +173890,110,war,1422210479 +173890,260,sci-fi,1426681786 +173890,260,space,1426681769 +173890,293,Action,1410173437 +173890,293,hitman,1410173411 +173890,293,Jean Reno,1410173415 +173890,296,Black comedy,1410261667 +173890,296,cult film,1410261669 +173890,296,organized crime,1420112152 +173890,296,quirky,1420112148 +173890,306,enigmatic,1432969914 +173890,307,atmospheric,1431874861 +173890,307,Beauty,1431874875 +173890,308,beautiful,1432674182 +173890,308,touching,1432674205 +173890,318,prison,1410261866 +173890,318,thought-provoking,1410261853 +173890,318,twist ending,1410261848 +173890,337,bittersweet,1449683039 +173890,337,small town,1449683036 +173890,356,bittersweet,1410261733 +173890,356,comedy,1410261747 +173890,356,Tom Hanks,1410261707 +173890,428,father-son relationship,1419801452 +173890,457,chase,1415732988 +173890,457,suspense,1415732915 +173890,480,dinosaurs,1410261921 +173890,480,genetics,1410261929 +173890,480,Steven Spielberg,1410261914 +173890,509,erotic,1411767414 +173890,509,romantic,1411767405 +173890,515,Anthony Hopkins,1410537670 +173890,515,romance,1410537675 +173890,527,Holocaust,1410262147 +173890,527,Oscar (Best Picture),1410262100 +173890,527,Steven Spielberg,1410262105 +173890,527,true story,1410262132 +173890,529,characters,1415431068 +173890,529,father-son relationship,1415431030 +173890,555,dark comedy,1417641629 +173890,555,violence,1417641642 +173890,586,funny,1450973918 +173890,589,apocalypse,1410261994 +173890,589,Arnold Schwarzenegger,1410261983 +173890,589,sci-fi,1410262044 +173890,589,time travel,1410261981 +173890,593,Anthony Hopkins,1410261766 +173890,593,psychology,1410261781 +173890,593,serial killer,1410261784 +173890,628,suspense,1418501647 +173890,628,twist ending,1418501626 +173890,648,Action,1448306400 +173890,648,spies,1448306409 +173890,665,crazy,1442501232 +173890,665,surreal,1442501235 +173890,1061,revenge,1447800361 +173890,1084,gangsters,1429992041 +173890,1084,violent,1429992026 +173890,1095,realistic,1418541919 +173890,1096,friendship,1410519141 +173890,1096,guilt,1410519122 +173890,1096,meaning of life,1410519149 +173890,1096,Meryl Streep,1410519126 +173890,1096,secrets,1410519120 +173890,1127,aliens,1410115903 +173890,1127,first contact,1410115876 +173890,1127,sci-fi,1410115891 +173890,1183,beautiful scenery,1412667543 +173890,1183,love story,1412667538 +173890,1185,biography,1429381806 +173890,1185,Daniel Day-Lewis,1429381809 +173890,1196,sci-fi,1427316497 +173890,1196,space opera,1427316504 +173890,1198,action,1436090423 +173890,1198,adventure,1436090418 +173890,1199,black comedy,1415995045 +173890,1199,quirky,1415995058 +173890,1200,aliens,1410175578 +173890,1200,horror,1410175614 +173890,1200,Oscar (Best Effects - Visual Effects),1410175618 +173890,1200,sci-fi,1410175605 +173890,1200,suspense,1410175587 +173890,1204,atmospheric,1431636573 +173890,1204,desert,1431636562 +173890,1210,sci-fi,1427834844 +173890,1210,space-opera,1427834894 +173890,1214,aliens,1410175646 +173890,1214,monster,1410175656 +173890,1214,sci-fi,1410175673 +173890,1214,suspense,1410175671 +173890,1214,thriller,1410175667 +173890,1230,romantic,1411530695 +173890,1230,Woody Allen,1411530711 +173890,1234,revenge,1410520879 +173890,1234,Robert Redford,1410520869 +173890,1234,twist ending,1410520832 +173890,1245,atmospheric,1419975739 +173890,1245,gangsters,1419975742 +173890,1245,twists & turns,1419975747 +173890,1275,fantasy,1411188948 +173890,1275,immortality,1411188849 +173890,1291,action,1436545585 +173890,1291,Adventure,1436545581 +173890,1293,anti-war,1422392823 +173890,1293,humanity,1422392802 +173890,1293,peace,1422392812 +173890,1299,Cambodia,1416131278 +173890,1299,civil war,1416131184 +173890,1299,true story,1416131231 +173890,1305,bittersweet,1432586197 +173890,1305,relationships,1432586208 +173890,1307,Billy Crystal,1409943072 +173890,1307,friendship,1409943086 +173890,1307,meg ryan,1409943068 +173890,1307,romance,1409943125 +173890,1358,disability,1416681583 +173890,1358,small town,1416681550 +173890,1573,action,1443818631 +173890,1573,revenge,1443818639 +173890,1580,aliens,1426801094 +173890,1580,comedy,1426801090 +173890,1584,science,1444241700 +173890,1584,space travel,1444241692 +173890,1639,relationships,1424015990 +173890,1639,sexuality,1424016010 +173890,1653,https://movielens.org/explore?tag=future&sortBy=tagScore,1415224117 +173890,1653,https://movielens.org/explore?tag=genetics&sortBy=tagScore,1415224066 +173890,1721,drama,1410949435 +173890,1721,Leonardo DiCaprio,1410949437 +173890,1721,romance,1410949403 +173890,1729,crime,1451685115 +173890,1729,dark comedy,1451685108 +173890,1748,dystopia,1450734611 +173890,1748,thought-provoking,1450734628 +173890,1784,Comedy,1410897495 +173890,1784,Jack Nicholson,1410897486 +173890,1784,Romance,1410897481 +173890,1952,friendship,1414824667 +173890,1953,Crime,1414703486 +173890,1953,cynical,1414703495 +173890,1956,Donald Sutherland,1411074616 +173890,1956,dysfunctional family,1411074613 +173890,1957,Olympics,1414533709 +173890,1958,marriage,1414007165 +173890,1958,sentimental,1414007204 +173890,1959,love story,1413431039 +173890,1959,romance,1413431018 +173890,1960,Oscar (Best Picture),1414181529 +173890,1960,photography,1414181535 +173890,1961,autism,1411333125 +173890,1961,Dustin Hoffman,1411333064 +173890,1961,Oscar (Best Actor),1411333101 +173890,1962,Morgan Freeman,1413309503 +173890,1962,social commentary,1413309515 +173890,2028,gritty,1421152730 +173890,2028,stylized,1421152767 +173890,2028,war,1421152668 +173890,2058,police,1424717760 +173890,2058,Psychological,1424717742 +173890,2076,disturbing,1423379306 +173890,2076,mystery,1423379296 +173890,2115,action,1436300282 +173890,2115,adventure,1436300292 +173890,2160,Antichrist,1412053163 +173890,2160,Atmospheric,1412053160 +173890,2194,gangsters,1416064687 +173890,2194,mafia,1416064695 +173890,2278,crime,1425074997 +173890,2278,spy thriller,1425075008 +173890,2289,cynical,1441083503 +173890,2289,satire,1441083482 +173890,2291,fantasy,1420802971 +173890,2291,quirky,1420802964 +173890,2396,love story,1413575103 +173890,2396,romance,1413575116 +173890,2427,atmospheric,1432411593 +173890,2427,philosophical,1432411580 +173890,2474,competition:pool billiards,1414514518 +173890,2474,Martin Scorsese,1414514597 +173890,2474,Paul Newman,1414514742 +173890,2502,quirky,1428939353 +173890,2502,satire,1428939347 +173890,2571,cyberpunk,1410262211 +173890,2571,sci-fi,1410262218 +173890,2571,virtual reality,1410262236 +173890,2594,dreams,1422820051 +173890,2594,Twist ending,1422820073 +173890,2594,virtual reality,1422820063 +173890,2628,space opera,1425420101 +173890,2628,special effects,1425420122 +173890,2692,time travel,1411678044 +173890,2797,Child as Adult,1423050065 +173890,2797,Romance,1423050049 +173890,2997,cult film,1418363451 +173890,3006,journalism,1415650708 +173890,3011,desperation,1410520554 +173890,3011,Jane Fonda,1410520536 +173890,3011,Oscar (Best Supporting Actor),1410520564 +173890,3020,Violence,1451201735 +173890,3068,courtroom drama,1418799078 +173890,3105,dramatic,1410691113 +173890,3105,Robert De Niro,1410691103 +173890,3105,Robin Williams,1410691119 +173890,3105,sad,1410691126 +173890,3160,cynical,1419243824 +173890,3160,melancholy,1419243818 +173890,3176,creepy,1416681330 +173890,3176,psychology,1416681265 +173890,3176,suspense,1416681280 +173890,3275,cult classic,1421704842 +173890,3275,stylized,1421704740 +173890,3275,vigilante,1421704812 +173890,3386,historical,1416899103 +173890,3386,politics,1416899106 +173890,3418,great editing,1425061584 +173890,3418,road trip,1425061565 +173890,3499,thriller,1440435213 +173890,3535,Disturbing,1443582281 +173890,3535,psychological,1443582289 +173890,3545,politics,1413285399 +173890,3545,World War II,1413285423 +173890,3623,action,1448538244 +173890,3623,suspense,1448538249 +173890,3683,dark,1437411150 +173890,3683,quirky,1437411139 +173890,3706,devil,1426453768 +173890,3706,mystery,1426453764 +173890,3730,character study,1416032044 +173890,3730,psychological,1416032052 +173890,3735,bravery,1430425879 +173890,3735,police corruption,1430425863 +173890,3897,bittersweet,1441659997 +173890,3897,rock and roll,1441660006 +173890,3910,sad,1439214549 +173890,4014,food/cooking,1452425218 +173890,4014,small town,1452425213 +173890,4034,drugs,1419623177 +173890,4144,atmospheric,1426102654 +173890,4144,melancholic,1426102657 +173890,4144,music,1426102648 +173890,4223,heroic,1421152609 +173890,4223,suspense,1421152619 +173890,4308,dramatic,1427407396 +173890,4308,passionate,1427407384 +173890,4326,civil rights,1415559148 +173890,4720,afterlife,1420231855 +173890,4720,atmospheric,1420231848 +173890,4720,twist ending,1420231826 +173890,4776,bad cop,1423862553 +173890,4776,police corruption,1423862522 +173890,4848,Atmospheric,1419716029 +173890,4848,mystery,1419716024 +173890,4901,cia,1424333632 +173890,4901,espionage,1424333618 +173890,4963,heist,1419486876 +173890,4963,witty,1419486838 +173890,5010,heroism,1423630410 +173890,5010,realistic action,1423630405 +173890,5010,War,1423630431 +173890,5014,father daughter relationship,1424813177 +173890,5014,touching,1424813207 +173890,5015,dramatic irony,1445191045 +173890,5015,interracial romance,1445191037 +173890,5060,satire,1434575059 +173890,5060,wry,1434575132 +173890,5377,coming of age,1422568414 +173890,5377,heartwarming,1422568405 +173890,5377,romance,1422568385 +173890,5378,robots,1425590691 +173890,5378,space opera,1425590680 +173890,5445,future,1410450191 +173890,5445,Philip K. Dick,1410450199 +173890,5445,time travel,1410450173 +173890,5464,father-son relationship,1411497235 +173890,5464,revenge,1411497244 +173890,5464,Tom Hanks,1411497248 +173890,5630,psychology,1425215369 +173890,5630,serial killer,1425215354 +173890,5878,friendship,1420271639 +173890,5878,loneliness,1420271623 +173890,5878,Tragedy,1420271613 +173890,5902,quirky,1422881680 +173890,5902,twins,1422881700 +173890,5902,writers,1422881704 +173890,5954,depressing,1445191479 +173890,5954,psychology,1445191463 +173890,5956,action,1422049442 +173890,5956,New York City,1422049432 +173890,5956,violent,1422049428 +173890,5991,musical,1414445005 +173890,6711,atmospheric,1411309185 +173890,6711,Melancholic,1411308925 +173890,6711,romance,1411308956 +173890,6942,british,1442780055 +173890,6942,Romance,1442780039 +173890,6975,serial killer,1453410507 +173890,6979,computer cracker,1423389267 +173890,6979,computers,1423389256 +173890,6979,nuclear war,1423389264 +173890,7087,Anglo-Indian relations,1414361008 +173890,7087,racism,1414361017 +173890,7147,Fantasy,1443455975 +173890,7147,quirky,1443455971 +173890,7158,American dream,1410363518 +173890,7158,heartbreaking,1410363482 +173890,7158,sad but good,1410363516 +173890,7162,Civil War,1411930022 +173890,7162,Romance,1411930000 +173890,7445,action,1417853622 +173890,7445,revenge,1417853565 +173890,8533,memories,1429130678 +173890,8533,romance,1429130645 +173890,8950,dark,1420113236 +173890,8950,guilt,1420113245 +173890,8981,characters,1423690183 +173890,8981,good acting,1423690181 +173890,8981,love,1423690195 +173890,8984,confusing plot,1420536773 +173890,8984,Robbery,1420536756 +173890,26131,colonialism,1426284292 +173890,26131,revolutionary,1426284304 +173890,26947,drugs,1442167767 +173890,26947,open ending,1442167759 +173890,27803,euthanasia,1410521087 +173890,27803,FIGHTING THE SYSTEM,1410521046 +173890,30707,boxing,1410173313 +173890,30707,drama,1410173286 +173890,30707,gritty,1410173299 +173890,30707,social commentary,1410173320 +173890,31364,police investigation,1421481539 +173890,31364,serial killer,1421481531 +173890,33166,Sandra Bullock,1410985265 +173890,33166,social commentary,1410985214 +173890,33493,robots,1425802441 +173890,33493,space opera,1425802419 +173890,34405,adventure,1416166703 +173890,34405,sci-fi,1416166687 +173890,36529,organized crime,1446931615 +173890,36529,World Politics,1446931606 +173890,37733,violence,1450033149 +173890,38061,crude humor,1423049373 +173890,38061,parody,1423049305 +173890,39183,Heath Ledger,1411443848 +173890,41569,adventure,1453325812 +173890,41997,revenge,1425936979 +173890,41997,terrorism,1425936971 +173890,44199,good story,1417770181 +173890,44199,twist ending,1417770129 +173890,45186,action,1448915030 +173890,45447,adventure,1453325744 +173890,45447,Mystery,1453325748 +173890,46578,dark comedy,1417945523 +173890,47099,bittersweet,1428648459 +173890,47099,courage,1428648468 +173890,47610,romance,1444599989 +173890,47610,surprise ending,1444599974 +173890,47610,twist ending,1444599958 +173890,48304,adventure,1424588418 +173890,48304,survival,1424588406 +173890,48304,suspense,1424588402 +173890,48516,Jack Nicholson,1410950958 +173890,48516,Leonardo DiCaprio,1410950956 +173890,49278,sci-fi,1440435132 +173890,49278,time travel,1440435126 +173890,50068,emotional,1415515307 +173890,50068,honest,1415515213 +173890,51255,silly,1453055771 +173890,51255,stupid,1453055759 +173890,51540,investigation,1441140911 +173890,51540,serial killer,1441140902 +173890,51931,sad,1447970597 +173890,52328,beautiful effects,1446669663 +173890,52328,space,1446669653 +173890,55052,romance,1428817032 +173890,55052,sad,1428817044 +173890,55052,Tragedy,1428817040 +173890,55118,organized crime,1428611780 +173890,55118,Russian mafia,1428611786 +173890,55765,organized crime,1412953039 +173890,56174,dystopia,1443376029 +173890,56174,sci-fi,1443376042 +173890,56174,survival,1443376013 +173890,56367,bittersweet,1443126505 +173890,56367,teenager,1443126490 +173890,57669,british comedy,1411233408 +173890,57669,friendship,1411233426 +173890,59369,action,1420802624 +173890,59369,realistic,1420802622 +173890,59615,adventure,1436819285 +173890,60397,Greece,1439214765 +173890,60397,Island,1439214772 +173890,61240,bittersweet,1416382102 +173890,61240,vampire,1416382115 +173890,63062,mother-son relationship,1411610401 +173890,63062,police corruption,1411610359 +173890,63082,love story,1410519044 +173890,63082,social commentary,1410519041 +173890,63082,violence,1410519056 +173890,64622,coming of age,1409943381 +173890,64622,great acting,1409943386 +173890,64622,heartbreaking,1409943332 +173890,64622,Kate Winslet,1409943372 +173890,64622,Romance,1409943348 +173890,64622,World War II,1409943406 +173890,64716,Drama,1453668868 +173890,64716,melancholy,1453668865 +173890,64839,relationships,1444067678 +173890,64839,touching,1444067662 +173890,65130,relationships,1452111273 +173890,67255,journalism,1442729565 +173890,67255,suspense,1442729556 +173890,68237,cloning,1415860360 +173890,68237,twist ending,1415860344 +173890,68791,action,1414671564 +173890,68791,post-apocalyptic,1414671581 +173890,69122,comedy,1427014913 +173890,69122,funny,1427014924 +173890,69481,Iraq War,1412786034 +173890,69757,bittersweet,1420960700 +173890,69757,quirky,1420960690 +173890,69757,romance,1420960668 +173890,71033,Justice,1410520986 +173890,71033,revenge,1410520979 +173890,71033,romance,1410521001 +173890,73344,cinematography,1409942698 +173890,73344,mafia,1409942650 +173890,73344,prison,1409942672 +173890,73344,Tahar Rahim,1409942680 +173890,76251,action,1453055958 +173890,76251,superhero,1453055961 +173890,80463,computers,1448218812 +173890,80463,internet,1448218821 +173890,80489,action,1447107084 +173890,80489,bank robbery,1447107081 +173890,81257,friendship,1414965518 +173890,81257,justice,1414965540 +173890,81562,survival,1452723502 +173890,81845,based on a true story,1413057477 +173890,81845,complex characters,1413057492 +173890,81932,boxing,1438404054 +173890,81932,family relationships,1438404066 +173890,84152,smart,1441311269 +173890,84152,thought provoking,1441311253 +173890,85342,realistic,1416065749 +173890,85342,social commentary,1416065735 +173890,86644,cars,1450474546 +173890,86644,silly,1450474539 +173890,86781,twist ending,1410521452 +173890,86781,Unexpected Ending,1410521463 +173890,86882,romance,1453055857 +173890,86882,time travel,1453055839 +173890,88129,atmospheric,1438441876 +173890,88129,violence,1438441879 +173890,88163,funny,1444473391 +173890,88163,romantic comedy,1444473403 +173890,89759,courtroom drama,1410202498 +173890,89759,divorce,1410202479 +173890,89759,realism,1410202465 +173890,89774,Boxing story,1415966439 +173890,89774,great acting,1415966420 +173890,89864,humor,1450638868 +173890,89864,touching,1450638856 +173890,89904,romance,1411656640 +173890,89904,silent movie,1411656657 +173890,91630,action,1448915126 +173890,94959,coming of age,1416257937 +173890,96821,coming of age,1416729377 +173890,96821,touching,1416729392 +173890,97752,dystopia,1442980457 +173890,97752,sci-fi,1442980459 +173890,97923,alcoholism,1452806611 +173890,100714,Greece,1410116013 +173890,100714,honest,1410116044 +173890,100714,marriage,1410116039 +173890,101525,ambitious,1452327820 +173890,102903,plot,1448218749 +173890,102903,surprise ending,1448218745 +173890,103984,ironic,1430554184 +173890,104374,charming,1417470584 +173890,104374,family relationships,1417470598 +173890,104374,time travel,1417470601 +173890,104944,realistic,1451822107 +173890,104944,touching,1451822103 +173890,105197,Road trip,1453399433 +173890,105355,bittersweet,1428471441 +173890,105355,realism,1428471457 +173890,105504,hijacking,1416688403 +173890,105504,suspense,1416688385 +173890,106438,bittersweet,1452462504 +173890,106487,acting,1440436643 +173890,106487,dystopic future,1440436646 +173890,106487,social commentary,1447367684 +173890,106487,survival,1447367670 +173890,106841,mother daughter relationship,1432453806 +173890,106841,secrets,1432453801 +173890,107069,friendship,1449515345 +173890,109487,sci-fi,1430167980 +173890,109487,time-travel,1430167972 +173890,111781,Action,1450033325 +173890,111781,adventure,1450033337 +173890,111921,romance,1449515051 +173890,111921,sad,1449515061 +173890,112183,magical realism,1430600195 +173890,112183,theater,1430600201 +173890,112290,growing up,1429648698 +173890,112290,realism,1429648705 +173890,112552,intense,1430554107 +173890,112552,jazz,1430554117 +173890,112556,Psychopathy,1430063062 +173890,112556,unpredictable,1430063012 +173890,112623,action,1412352280 +173890,112623,relationships,1412352285 +173890,112852,adventure,1443648299 +173890,112852,sci-fi,1443648270 +173890,114662,patriotic,1431009778 +173890,114662,war hero,1431009769 +173890,115210,action,1445190913 +173890,115210,realistic,1445190895 +173890,115569,gripping,1434799097 +173890,115569,thriller,1434799119 +173890,115713,cybernetics,1437502592 +173890,115713,sci-fi,1437502569 +173890,116797,code breaking,1430554000 +173890,116797,cryptography,1430553986 +173890,116897,dark humor,1435179732 +173890,117176,love,1431029007 +173890,117176,science,1431028987 +173890,117881,alzheimer's,1443375950 +173890,117881,family,1443375946 +173890,118700,civil rights,1435783144 +173890,118700,history,1435783147 +173890,118900,grief,1450824001 +173890,118900,hiking,1450823948 +173890,119145,british comedy,1436613014 +173890,119145,spy thriller,1436613003 +173890,134130,sci-fi,1450033433 +173890,134130,Space,1450033419 +173909,102922,revenge,1425383882 +173909,116722,comedy,1421594961 +173909,116722,office life,1421594961 +173909,116722,very funny,1421594961 +173920,1,comedy,1442435462 +173920,1,digital,1442435432 +173920,5418,Coldwar,1442435375 +173920,5418,Spying,1442435385 +173920,142386,foreign,1442435333 +173920,142386,Moral,1442435325 +173928,260,fantasy,1439777027 +173928,260,Science Fiction,1439777044 +173929,93750,adventure,1420021487 +173929,93750,anime,1420021487 +173929,93750,romance,1420021487 +173933,318,twist ending,1440595687 +173933,1537,Japan,1440595623 +173941,115149,Hitman,1445108643 +173941,115149,organized crime,1445108661 +173941,115149,Revenge,1445108647 +173973,1754,boring,1361056498 +173973,1754,too long,1361056501 +173973,1754,unreliable narrators,1361056515 +173973,1994,ghosts/afterlife,1360986995 +173973,1994,not too scary,1360986996 +173973,5980,creepy,1366252127 +173973,5980,tense,1366252121 +173973,55814,beautiful,1360987042 +173973,67197,everything,1360987288 +173973,67197,it's over and I'll never see it again,1360987285 +173973,67197,lame ending,1360987293 +173973,78836,beautiful,1296786707 +173973,78836,colourful,1296786713 +173973,78836,lack of plot,1296786701 +173973,78836,technically astounding,1296786721 +173973,91529,long,1360986943 +173973,94558,amazing,1360986882 +173973,94558,beautiful,1360986848 +173973,94558,boring,1360986861 +173973,94558,christopher hated it,1360986861 +173973,94558,long,1360986850 +173973,94558,new idea,1360986874 +173973,94558,plotless,1360986887 +173973,96610,genre-bending,1360987253 +173973,96610,unexpected,1360987253 +173973,96610,violent,1360987230 +173973,97866,surreal,1360986955 +173973,97921,cliche,1360986688 +173973,97921,cured by love/hope,1360986818 +173973,97921,lame ending,1360986715 +173973,97921,mental illness,1360986706 +173973,98961,america,1360986761 +173973,98961,predictable,1360986757 +173973,99007,cured by love/hope,1360986799 +173973,99007,unconventional,1360986919 +173973,99007,zombies,1360986905 +173973,99114,black people,1360986620 +173973,99114,brutal,1360986632 +173973,99114,lengthy,1360986615 +173973,99114,violence,1360986604 +173985,750,black comedy,1295469743 +174009,780,alien invasion,1186401782 +174015,260,classic,1432583437 +174015,260,sci-fi,1432583433 +174029,260,classic sci-fi,1441071648 +174029,260,Science Fiction,1441071638 +174046,37830,final fantasy,1192453122 +174114,260,sci-fi,1442876005 +174114,260,space adventure,1442876014 +174123,145,action,1356825371 +174123,145,comedy,1356825371 +174123,145,funny,1356825372 +174123,145,martin lawrence,1356825371 +174123,145,will smith,1356825372 +174123,216,Adam Sandler,1356841999 +174123,216,comedy,1356842013 +174123,216,funny,1356842013 +174123,216,school,1356841996 +174123,317,christams,1356824951 +174123,317,santa claus,1356824951 +174123,317,tim allen,1356824951 +174123,356,action,1356844771 +174123,356,comedy,1356844769 +174123,367,comedy,1356823307 +174123,367,Jim Carrey,1356823300 +174123,589,action,1356844946 +174123,589,Arnold Schwarzenegger,1356844946 +174123,589,robot,1356844946 +174123,733,Action,1356823698 +174123,733,Nicolas Cage,1356823688 +174123,736,action,1356896416 +174123,736,adventure,1356896424 +174123,736,disaster,1356896419 +174123,1222,Vietnam War,1356844870 +174123,1240,action,1356845187 +174123,1240,Arnold Schwarzenegger,1356845187 +174123,1240,fighting,1356845187 +174123,1307,Billy Crystal,1356897052 +174123,1307,funny,1356896986 +174123,1307,romance,1356897052 +174123,1380,cars,1356824804 +174123,1380,john travolta,1356824821 +174123,1552,Nicolas Cage,1356823647 +174123,1573,action,1356823488 +174123,1573,John Travolta,1356823484 +174123,1573,Nicolas Cage,1356823482 +174123,1911,Eddie Murphy,1356844347 +174123,1918,action,1356825463 +174123,1918,comedy,1356819691 +174123,1918,funny,1356825463 +174123,1918,Mel Gibson,1356819697 +174123,1954,Sylvester Stallone,1356825161 +174123,1968,Comedy,1356843224 +174123,1968,detention,1356843242 +174123,1968,school,1356843242 +174123,2000,action,1356819624 +174123,2000,comedy,1356819634 +174123,2000,Mel Gibson,1356819630 +174123,2001,action,1356819645 +174123,2001,comedy,1356819643 +174123,2001,Mel Gibson,1356819640 +174123,2001,violence,1356825432 +174123,2002,action,1356825453 +174123,2002,comedy,1356825453 +174123,2002,funny,1356825453 +174123,2002,Mel Gibson,1356819656 +174123,2268,conspriacy,1356844623 +174123,2268,courtroom,1356844623 +174123,2268,law,1356844623 +174123,2268,tom cruise,1356844623 +174123,2273,Action,1356825520 +174123,2273,chris t,1356825578 +174123,2273,Chris Tucker,1356825578 +174123,2273,Jackie Chan,1356825562 +174123,2273,martial arts,1356825535 +174123,2329,Edward Norton,1356820541 +174123,2335,Adam Sandler,1356842326 +174123,2335,football,1356842323 +174123,2335,hilarious,1356842331 +174123,2402,action,1356819757 +174123,2402,Sylvester Stallone,1356819739 +174123,2403,action,1356819753 +174123,2403,Sylvester Stallone,1356819737 +174123,2404,action,1356819761 +174123,2404,Sylvester Stallone,1356819741 +174123,2409,Sylvester Stallone,1356825178 +174123,2410,Sylvester Stallone,1356825183 +174123,2411,Sylvester Stallone,1356825188 +174123,2412,Sylvester Stallone,1356825192 +174123,2694,Adam Sandler,1356842208 +174123,2694,hilarious,1356842210 +174123,2694,parenthood,1356842205 +174123,3717,Action,1356823507 +174123,3717,cars,1356823512 +174123,3717,Nicolas Cage,1356823503 +174123,3793,action,1356840185 +174123,3793,halle berry,1356840222 +174123,3793,hugh jackman,1356840222 +174123,3793,storm,1356840252 +174123,3793,superhero,1356840188 +174123,3793,wolverine,1356840252 +174123,3882,cheerleading,1356843273 +174123,3882,high school,1356843275 +174123,4368,Eddie Murphy,1356844350 +174123,4369,action,1356824050 +174123,4369,cars,1356824047 +174123,4369,Vin Diesel,1356824043 +174123,4701,action,1356825522 +174123,4701,chris tucker,1356825589 +174123,4701,Comedy,1356825530 +174123,4701,Jackie Chan,1356825555 +174123,4701,martial arts,1356825538 +174123,5313,Dwayne johnson,1356823948 +174123,5313,The Rock,1356823921 +174123,5418,action,1356843052 +174123,5418,adventure,1356843052 +174123,5418,government research,1356843052 +174123,5418,matt damon,1356843052 +174123,5507,action,1356824011 +174123,5574,action,1356820811 +174123,5574,Jason Statham,1356820808 +174123,5810,Eminem,1356841222 +174123,6057,action,1356842897 +174123,6057,motorcycle,1356842878 +174123,6057,racing,1356842897 +174123,6157,Action,1356843915 +174123,6157,superhero,1356843910 +174123,6287,adam sandler,1356842310 +174123,6287,comedy,1356842310 +174123,6287,funny,1356842310 +174123,6333,action,1356840286 +174123,6333,halle berry,1356840329 +174123,6333,hugh jackman,1356840329 +174123,6333,storm,1356840329 +174123,6333,superhero,1356840291 +174123,6333,wolverine,1356840329 +174123,6383,Cars,1356896497 +174123,6383,street race,1356896500 +174123,6537,action,1356845201 +174123,6537,Arnold Schwarzenegger,1356845201 +174123,6537,fighting,1356845201 +174123,6548,action,1356825281 +174123,6548,comdey,1356825281 +174123,6548,funny,1356825281 +174123,6548,martin lawrence,1356825281 +174123,6548,Will Smith,1356825255 +174123,6595,action,1356824585 +174123,6595,jeremy renner,1356824685 +174123,6595,michelle rodriguez,1356824685 +174123,6595,Samuel L. Jackson,1356824581 +174123,6754,action,1356821130 +174123,6754,kate beckinsale,1356821186 +174123,6754,vampires,1356821130 +174123,6874,action,1356820197 +174123,7293,Adam Sandler,1356841899 +174123,7293,Comedy,1356841897 +174123,7293,funny,1356841903 +174123,7293,Romance,1356841894 +174123,7376,action,1356824537 +174123,7376,dwayne johnson,1356824537 +174123,7376,johnny knoxville,1356824537 +174123,7376,the rock,1356824537 +174123,7376,violence,1356824537 +174123,7438,action,1356820200 +174123,7502,action,1356842711 +174123,7502,World War II,1356842716 +174123,8361,action,1356844015 +174123,8361,jake gyllenhaal,1356844031 +174123,8361,post-apocalyptic,1356844011 +174123,8665,action,1356843092 +174123,8665,adventure,1356843092 +174123,8665,government research,1356843091 +174123,8665,matt damon,1356843092 +174123,8665,secrets,1356843092 +174123,8666,halle berry,1356843547 +174123,8666,superhero,1356843536 +174123,8912,Queen Latifah,1356825687 +174123,8972,Nicolas Cage,1356823718 +174123,8978,christmas,1356825017 +174123,8978,tim allen,1356825017 +174123,27685,cheerleading,1356843280 +174123,31221,superhero,1356844428 +174123,31420,action,1356842665 +174123,31420,corruption,1356842614 +174123,31420,police,1356842610 +174123,31422,children,1356842547 +174123,31422,comedy,1356842544 +174123,31685,Will Smith,1356825292 +174123,32017,Vin Diesel,1356824074 +174123,33646,adam sandler,1356842185 +174123,33646,chris rock,1356842185 +174123,33646,comedy,1356842185 +174123,33646,football,1356842185 +174123,33646,funny,1356842185 +174123,33646,prison,1356842185 +174123,34520,car chase,1356824467 +174123,34534,family,1356844797 +174123,34534,revenge,1356844788 +174123,36519,action,1356820842 +174123,36519,Jason Statham,1356820836 +174123,37727,Jodie Foster,1356844699 +174123,42011,Jim Carrey,1356823361 +174123,42738,action,1356821108 +174123,42738,vampires,1356821108 +174123,44004,funny,1356844561 +174123,44004,matthew mcconaughey,1356844561 +174123,44840,baseball,1356842809 +174123,44840,nerds,1356842807 +174123,44840,Rob Schneider,1356842803 +174123,44840,underdogs,1356842813 +174123,45499,Action,1356840366 +174123,45499,halle berry,1356840362 +174123,45499,hugh jackman,1356840362 +174123,45499,storm,1356840362 +174123,45499,superhero,1356840363 +174123,45499,wolverine,1356840362 +174123,45501,comedy,1356843192 +174123,45501,funny,1356843192 +174123,45501,Jennifer Aniston,1356843199 +174123,45501,romance,1356843192 +174123,45501,vince vaughn,1356843192 +174123,45672,adam sandler,1356842099 +174123,45672,comedy,1356842099 +174123,45672,funny,1356842099 +174123,45672,future,1356842099 +174123,45672,invention,1356842099 +174123,45720,comedy,1356844217 +174123,45720,fashion,1356844217 +174123,45720,funny,1356844217 +174123,45720,meryl streep,1356844217 +174123,46335,cars,1356824064 +174123,46335,Vin Diesel,1356824060 +174123,47200,Jason Statham,1356820776 +174123,48520,comedy,1356844476 +174123,48520,dane cook,1356844476 +174123,48520,funny,1356844476 +174123,48596,action,1356840107 +174123,48596,fighting,1356840107 +174123,48596,John cena,1356840107 +174123,48596,marine,1356840107 +174123,49013,christmas,1356824990 +174123,49013,santa claus,1356824990 +174123,49013,tim allen,1356824990 +174123,49272,action,1356819932 +174123,49272,Daniel Craig,1356820033 +174123,49272,James Bond,1356819929 +174123,49651,Sylvester Stallone,1356825206 +174123,51077,Nicolas Cage,1356823448 +174123,51575,John Travolta,1356824869 +174123,51575,martin lawrence,1356824908 +174123,51575,tim allen,1356824908 +174123,54004,adam sandler,1356841845 +174123,54004,comedy,1356841845 +174123,54004,kevin james,1356841845 +174123,54004,marriage,1356841845 +174123,54286,action,1356843112 +174123,54286,adventure,1356843112 +174123,54286,government research,1356843112 +174123,54286,matt damon,1356843112 +174123,54286,secrets,1356843112 +174123,54648,chris tucker,1356825603 +174123,54648,comedy,1356825532 +174123,54648,Jackie Chan,1356825546 +174123,54648,martial arts,1356825540 +174123,55080,Jodie Foster,1356843142 +174123,55080,revenge,1356843146 +174123,56176,chipmunks,1356841622 +174123,56176,cute,1356841622 +174123,56176,funny,1356841622 +174123,56176,musical,1356841622 +174123,56176,singing,1356841622 +174123,56176,singing animals,1356841622 +174123,56587,death,1356843471 +174123,56587,friendship,1356843466 +174123,56587,Jack Nicholson,1356843461 +174123,56587,Morgan Freeman,1356843455 +174123,56775,Nicolas Cage,1356823730 +174123,57370,queen latifah,1356825701 +174123,57528,Sylvester Stallone,1356819744 +174123,58559,action,1356843981 +174123,58559,Heath ledger,1356843981 +174123,58559,joker,1356843981 +174123,58559,superhero,1356843981 +174123,59900,Adam Sandler,1356842447 +174123,59900,comedy,1356842443 +174123,59900,exaggerated,1356842440 +174123,59900,hilarious,1356842450 +174123,60040,Edward Norton,1356824441 +174123,60040,superhero,1356824445 +174123,60072,action,1356819180 +174123,60074,superhero,1356820579 +174123,60074,Will Smith,1356820573 +174123,61248,Jason Statham,1356820829 +174123,63113,action,1356820132 +174123,63113,James Bond,1356820129 +174123,64030,action,1356820871 +174123,64030,Jason Statham,1356820864 +174123,64032,Christmas,1356844821 +174123,64032,family,1356844823 +174123,64032,Reese Witherspoon,1356844828 +174123,64032,Vince Vaughn,1356844818 +174123,65088,adam sandler,1356842058 +174123,65088,cute,1356842058 +174123,65088,funny,1356842058 +174123,65088,imagination,1356842058 +174123,65682,action,1356821016 +174123,65682,vampires,1356821012 +174123,65802,comedy,1356844286 +174123,65802,Kevin James,1356844292 +174123,67923,cars,1356824027 +174123,67923,Racing,1356824030 +174123,67923,Vin Diesel,1356824024 +174123,68205,Jason Statham,1356820850 +174123,68319,action,1356840257 +174123,68319,hugh jackman,1356840278 +174123,68319,superhero,1356840261 +174123,69306,Denzel Washington,1356824836 +174123,69306,John Travolta,1356824834 +174123,69306,terrorism,1356824842 +174123,69481,action,1356824715 +174123,69481,jeremy renner,1356824731 +174123,70361,action,1356840037 +174123,70361,john cena,1356840037 +174123,70361,police,1356840044 +174123,72605,jake gyllenhaal,1356843423 +174123,72605,presumed dead,1356843422 +174123,72605,war,1356843423 +174123,73042,chipmunks,1356841646 +174123,73042,cute,1356841646 +174123,73042,funny,1356841646 +174123,73042,musical,1356841646 +174123,73042,singing,1356841646 +174123,73042,singing animals,1356841646 +174123,74698,dwayne johnson,1356823965 +174123,74698,funny,1356823926 +174123,74698,the rock,1356823965 +174123,75805,action,1356842978 +174123,75805,comedy,1356842978 +174123,75805,Gerard Butler,1356842981 +174123,75805,Jennifer Aniston,1356842983 +174123,75805,romance,1356842978 +174123,76175,action,1356843600 +174123,76175,adventure,1356843665 +174123,76175,mythology,1356843665 +174123,77191,chris rock,1356844083 +174123,77191,comedy,1356844083 +174123,77191,death,1356844083 +174123,77191,funny,1356844083 +174123,77191,martin lawrence,1356844083 +174123,78469,action,1356841435 +174123,78469,bradley cooper,1356841466 +174123,78469,liam nesson,1356841466 +174123,79134,adam sandler,1356842413 +174123,79134,chris rock,1356842413 +174123,79134,comedy,1356842413 +174123,79134,david spade,1356842413 +174123,79134,fun,1356842414 +174123,79134,funny,1356842413 +174123,79134,kevin james,1356842413 +174123,79134,rob schneider,1356842413 +174123,79695,action,1356820734 +174123,79695,jason statham,1356820734 +174123,79695,sylvester stallone,1356820734 +174123,80939,corrupt,1356843730 +174123,80939,hilary swank,1356843767 +174123,80939,law,1356843730 +174123,80939,wrongly accused,1356843730 +174123,83910,Kevin James,1356844260 +174123,83910,queen latifah,1356844278 +174123,83910,Vince Vaughn,1356844258 +174123,85020,action,1356820799 +174123,85020,Jason Statham,1356820795 +174123,85367,Adam Sandler,1356842250 +174123,85367,funny,1356842253 +174123,85367,Jennifer Aniston,1356842246 +174123,85397,amanda seyfried,1356824383 +174123,85397,romance,1356824221 +174123,85397,shiloh fernandez,1356824383 +174123,85397,werewolves,1356824383 +174123,86332,action,1356819869 +174123,86332,chris hemsworth,1356824174 +174123,86332,funny,1356824174 +174123,86332,superhero,1356819872 +174123,86644,cars,1356823798 +174123,86644,dwayne johnson,1356823899 +174123,86644,The Rock,1356823878 +174123,86644,Vin Diesel,1356823878 +174123,90249,boxing,1356840400 +174123,90249,fighting,1356840388 +174123,90249,hugh jackman,1356840388 +174123,90249,robot,1356840388 +174123,90249,robots,1356840397 +174123,90890,Adam Sandler,1356842475 +174123,90890,comedy,1356842494 +174123,90890,funny,1356842494 +174123,90890,twins,1356842480 +174123,91658,action,1356820159 +174123,91658,daniel craig,1356820159 +174123,91890,government,1356845288 +174123,91890,low paced,1356845287 +174123,91890,meryl streep,1356845288 +174123,94405,Jason Statham,1356820785 +174123,94478,johnny depp,1356820966 +174123,96079,action,1356820093 +174123,96079,daniel craig,1356820093 +174123,96861,Liam Neeson,1356819395 +174123,97225,Adam Sandler,1356841758 +174123,97225,animation,1356841763 +174123,97225,silly,1356841772 +174123,97836,Kevin James,1356819554 +174123,98203,adventure,1356845119 +174123,98203,funny,1356845119 +174123,98203,hilarious,1356845119 +174123,98203,taylor lautner,1356845119 +174123,98203,vampires,1356819587 +174123,98203,wolfs,1356845119 +174123,98239,Chris Hemsworth,1356819538 +174123,98961,military,1356819434 +174123,99112,Action,1356819508 +174123,99112,Tom Cruise,1356819511 +174123,99117,funny,1356819567 +174152,27773,crazy awsome,1138058368 +174154,52604,Anthony Hopkins,1330173163 +174154,52604,no happy ending,1330173186 +174154,52604,twist,1330173139 +174154,52604,twist ending,1330173157 +174154,69951,cgi,1329615849 +174154,69951,Colin Farrell,1329615852 +174154,69951,deal with the devil,1329615857 +174154,69951,imagination,1329615843 +174154,69951,surreal,1329615868 +174166,593,this movie scares the stuffing out of me!,1137547105 +174174,16,cult film,1255886352 +174174,16,imdb top 250,1255886346 +174174,16,mafia,1255886337 +174174,16,mob,1255886341 +174174,16,narrated,1255886342 +174174,16,Robert De Niro,1255886339 +174174,608,black comedy,1255096504 +174174,608,Coen Brothers,1255096500 +174174,858,Al Pacino,1255096475 +174174,858,atmospheric,1255096481 +174174,858,catchy theme,1255096473 +174174,858,crime,1255096461 +174174,858,melancholy,1255096464 +174174,858,organized crime,1255096468 +174174,858,robert de niro,1255096458 +174174,1136,british comedy,1307222770 +174174,1203,confrontational,1307223793 +174174,1203,ensemble cast,1307223789 +174174,1203,good dialogue,1307223795 +174174,1203,gritty,1307223798 +174174,1203,social commentary,1307223801 +174174,1208,Dark,1307223763 +174174,1208,disturbing,1307223750 +174174,1208,surreal,1307223753 +174174,1245,Film Noir,1323551167 +174174,1245,twists & turns,1323551163 +174174,1245,witty,1323551160 +174174,1921,existentialism,1292109348 +174174,1921,hallucinatory,1292109349 +174174,1921,mathematics,1292109351 +174174,2232,existentialism,1292109310 +174174,2232,mathematics,1292109289 +174174,2232,mindfuck,1292109293 +174174,2232,psychological,1292109297 +174174,2232,scifi,1292109305 +174174,2232,scifi cult,1292109314 +174174,2232,thriller,1292109325 +174174,2330,documentary,1306015992 +174174,2330,humorous,1306015986 +174174,47937,dark comedy,1366983085 +174174,47937,horror,1366983088 +174174,47937,satirical,1366983092 +174174,55820,brutal,1255096553 +174174,55820,coen brothers,1255096550 +174174,55820,great acting,1255096548 +174174,55820,senseless,1255096526 +174174,55820,slow paced,1255096533 +174174,55820,tension,1255096536 +174174,55820,twist ending,1255096557 +174174,55820,violent,1255096560 +174174,64037,bad acting,1321176614 +174174,64037,dialogue,1321176611 +174174,64037,really bad script,1321176607 +174174,64037,stupid,1321176619 +174174,68952,funny,1255886400 +174174,68952,old school horror,1255886389 +174174,68952,Sam Raimi,1255886386 +174174,68952,tongue-in-cheek,1255886395 +174174,78160,british comedy,1307223049 +174174,78160,funny,1307223065 +174174,78160,Ricky Gervais,1307223054 +174174,78160,Stand Up,1307223058 +174174,90746,Good adaptation,1321133046 +174199,365,70mm,1268175821 +174199,365,Anamorphic Blow-Up,1268175824 +174199,365,ARRI System 765,1268175827 +174199,365,Bridget Fonda,1268175835 +174199,541,action,1278282764 +174199,541,adapted from:book,1278282761 +174199,541,atmospheric,1278282728 +174199,541,cyberpunk,1278282725 +174199,541,dystopia,1278282721 +174199,541,existentialism,1278282739 +174199,541,fantasy,1278282747 +174199,541,futuristic,1278282750 +174199,541,imdb top 250,1278282757 +174199,611,horror,1435269541 +174199,611,Nudity (Topless),1435269533 +174199,735,living dead,1350486015 +174199,735,zombie,1350486026 +174199,735,zombies,1350486023 +174199,2117,based on a book,1395614571 +174199,2117,dystopia,1395614581 +174199,2924,Jackie Chan,1286054777 +174199,2924,martial arts,1286054773 +174199,3018,campy,1295471716 +174199,3510,alternate reality,1321050497 +174199,3510,contact with dead,1321050507 +174199,3510,supernatural,1321050514 +174199,6058,fate,1256402086 +174199,6058,gore,1256402068 +174199,6058,gory,1256402071 +174199,6058,Nudity (Topless),1256402102 +174199,6058,premonition,1256402106 +174199,6058,supernatural,1256402124 +174199,6058,violent,1256402128 +174199,6264,bad science,1315614488 +174199,6264,so bad it's funny,1315614510 +174199,6264,stupid plot,1315614505 +174199,6323,confusing,1287722524 +174199,6323,unbelievable,1287722536 +174199,6502,British,1260620537 +174199,6502,England,1260620540 +174199,6502,infection,1260620551 +174199,6502,Post apocalyptic,1260620545 +174199,6502,post-apocalyptic,1260620547 +174199,6502,Sexualized violence,1260620557 +174199,6872,adapted from:game,1269647360 +174199,6872,brainless,1269647367 +174199,6872,campy,1269647374 +174199,6872,computer game,1269647378 +174199,6872,Nudity (Topless - Notable),1269647384 +174199,6872,Nudity (Topless),1269647388 +174199,6872,Uwe Boll,1269647409 +174199,6872,video game adaptation,1269647418 +174199,6872,videogame,1269647414 +174199,6872,zombies,1269647424 +174199,6952,asylum,1280845205 +174199,6952,Psychological horror,1280845224 +174199,6952,spirits,1280845230 +174199,7143,Honor,1272057629 +174199,7143,intense,1272057632 +174199,7143,Japan,1272057627 +174199,7143,Japanese culture,1272057636 +174199,7143,martial arts,1272057641 +174199,7143,New Zealand,1272057652 +174199,7143,samurai,1272057657 +174199,7202,zombies,1272728617 +174199,7254,alternate reality,1247947442 +174199,7254,scary,1247947579 +174199,7254,time travel,1247947572 +174199,7951,adapted from:book,1341095892 +174199,7951,confusing,1341095963 +174199,7951,David Cronenberg,1341095598 +174199,7951,mutants,1341095792 +174199,7951,Nudity (Topless - Notable),1341095802 +174199,7951,one-liners,1341096053 +174199,7951,serial killer,1341095815 +174199,7951,undead,1341095839 +174199,8199,atmospheric,1252855703 +174199,8199,eerie,1252855707 +174199,8199,Japan,1252855754 +174199,8225,zombie,1151391921 +174199,8376,awkward,1385755705 +174199,8376,boring,1385755676 +174199,8376,independent film,1385755714 +174199,8376,overrated,1385755680 +174199,8376,unfunny,1385755701 +174199,8447,mutants,1279058555 +174199,8447,slow,1279058572 +174199,8783,Atmospheric,1286046122 +174199,8783,surprise ending,1286046155 +174199,8783,twist ending,1286046158 +174199,26662,Hayao Miyazaki,1267143411 +174199,26662,Studio Ghibli,1267143423 +174199,27788,Keira Knightley,1445378775 +174199,27788,mental institution,1445378839 +174199,27788,time travel,1445378773 +174199,27834,cinematography,1318718603 +174199,27837,Dennis Quaid,1246832066 +174199,27837,remake,1246832088 +174199,30867,cool animated sequence,1268347082 +174199,30867,japanese,1268347094 +174199,31878,kill bill meets looney tunes,1257135911 +174199,31878,kung fu,1257135916 +174199,31878,soccer,1257135926 +174199,32029,Bruce Willis,1246832017 +174199,34319,dystopia,1379802561 +174199,34319,future,1379802563 +174199,40732,claustrophobic,1267143035 +174199,40732,easily confused with other movie(s) (title),1267142980 +174199,42013,Johnny Knoxville,1305926219 +174199,42738,Nudity (Topless),1280941002 +174199,47200,fast paced,1389124847 +174199,47810,predictable,1246832218 +174199,47810,remake,1246832221 +174199,47810,so bad it's good,1246832239 +174199,48394,disturbing,1432335661 +174199,48394,visually appealing,1432335633 +174199,48543,extremely slow build,1290657054 +174199,48774,adapted from:book,1253915818 +174199,48774,apocalypse,1253915822 +174199,48774,atmospheric,1253915826 +174199,48774,based on a book,1253915833 +174199,48774,christianity,1253915842 +174199,48774,dystopia,1253915851 +174199,48774,environmental,1253915855 +174199,48774,imdb top 250,1253915864 +174199,48997,artistic,1246831770 +174199,48997,ClearPlay,1246831853 +174199,48997,Nudity (Topless),1246831792 +174199,48997,orgy,1246831845 +174199,48997,senses,1246831868 +174199,48997,sensuality,1246831831 +174199,48997,Tom Tykwer,1246831860 +174199,49649,cliche,1317484799 +174199,49649,Jeremy Irons,1317484848 +174199,49649,John Malkovich,1317484854 +174199,50798,awful,1253907335 +174199,50798,Crispin Glover,1253907354 +174199,50798,faun,1253907359 +174199,50798,parody,1253907331 +174199,50798,to much of everything,1253907320 +174199,50798,unfunny,1253907342 +174199,53993,Biblical,1270464695 +174199,53993,Christianity,1270464698 +174199,53993,environmental,1270464680 +174199,53993,god,1270464716 +174199,53993,John Goodman,1270464711 +174199,53993,Morgan Freeman,1270464726 +174199,54503,Emma Stone,1426021382 +174199,54503,police,1426021411 +174199,54503,Seth Rogen,1426021394 +174199,55290,conspiracy,1436324900 +174199,55290,morality,1436324891 +174199,55290,police,1436324881 +174199,55290,twist,1436324889 +174199,57502,dark,1325285770 +174199,57502,surreal,1325285778 +174199,57637,Post apocalyptic,1345330987 +174199,57637,post-apocalyptic,1345330991 +174199,58297,apocalypse,1253398370 +174199,58297,mad max,1253398384 +174199,58297,post-apocalyptic,1253398375 +174199,59129,predictable,1280775891 +174199,59129,zombies,1280775910 +174199,59784,martial arts,1283113827 +174199,60072,stylized violence,1317589616 +174199,60579,atmospheric,1385502710 +174199,60579,creepy,1385502716 +174199,60579,dark,1385502722 +174199,60579,surreal,1385502732 +174199,61240,1980s,1284214490 +174199,61240,Beautiful,1284214552 +174199,61240,bittersweet,1284214542 +174199,61240,horror,1284214522 +174199,61240,touching,1284214538 +174199,62113,Simon Pegg,1374389272 +174199,63033,epidemic,1280836017 +174199,63072,bleak,1386542316 +174199,63072,dark,1386542321 +174199,63072,dystopia,1386542324 +174199,63072,post-apocalyptic,1386542330 +174199,63072,product placement,1386542333 +174199,63082,India,1315000196 +174199,63082,social commentary,1315000206 +174199,65813,Gary Oldman,1280827306 +174199,66371,beautiful scenery,1348937393 +174199,66371,japan,1348937395 +174199,66371,nonsensical wife character,1348937321 +174199,67197,bad science,1432510162 +174199,67197,cheesy ending,1432510260 +174199,67197,plot holes,1432510183 +174199,67197,religious overtones,1432510209 +174199,68157,alternate history,1256635993 +174199,68157,Brad Pitt,1256635998 +174199,68157,gratuitous violence,1256636037 +174199,68157,Quentin Tarantino,1256636084 +174199,68157,soundtrack,1256636086 +174199,68157,violence,1256636102 +174199,68205,amy smart,1431564331 +174199,68205,fast paced,1431564322 +174199,68205,jason statham,1431564327 +174199,68358,alternate reality,1315604592 +174199,68358,sci-fi,1315604600 +174199,68358,Simon Pegg,1315604605 +174199,68791,post-apocalyptic,1361139084 +174199,68952,old school horror,1386628206 +174199,68952,predictable ending,1386628250 +174199,69275,Norwegian,1341439681 +174199,69275,Not in English,1341439697 +174199,69275,Zombies,1341439707 +174199,70159,surprise ending,1284247044 +174199,71135,too slow,1362783357 +174199,71135,unlikeable characters,1362783355 +174199,71254,dark,1445462579 +174199,71254,dystopia,1445462582 +174199,71254,dystopian,1445462532 +174199,71254,gratuitous violence,1445462473 +174199,71254,hackers,1445462542 +174199,71254,light plot,1445462556 +174199,71254,Nudity (Topless - Notable),1445462572 +174199,71254,nudity (topless),1445462570 +174199,71254,predictable,1445462529 +174199,71254,sci-fi,1445462486 +174199,71254,stupid,1445462521 +174199,71254,stupid view of the future,1445462512 +174199,71254,video game,1445462481 +174199,71254,video games,1445462591 +174199,71254,virtual reality,1445462492 +174199,71379,Boring,1260654175 +174199,71379,over-hyped,1260654179 +174199,71379,slow,1260654194 +174199,71535,post-apocalyptic,1294443268 +174199,71535,soundtrack,1294443245 +174199,71535,zombies,1294443250 +174199,71700,asylum,1266622188 +174199,71700,zombies,1266622194 +174199,72380,messy,1320534411 +174199,73168,post-apocalyptic,1295653796 +174199,73168,virus,1295653845 +174199,73211,disease,1280784811 +174199,73211,Georgina Reilly,1280784804 +174199,73211,Stephen McHattie,1280784739 +174199,73211,zombies,1280784736 +174199,74750,demon possession,1323133406 +174199,74750,DEMONIC POSSESSION,1323133410 +174199,74750,zombies,1323133394 +174199,74789,alternate reality,1268911852 +174199,74789,Depp & Burton,1268911869 +174199,74789,great visuals,1268911988 +174199,74789,Stephen Fry,1268911958 +174199,74789,talking animals,1268911982 +174199,75425,zombies,1279649543 +174199,78319,caves,1295741893 +174199,78319,monsters,1295741932 +174199,79132,alternate reality,1292840032 +174199,79695,bad direction,1290077908 +174199,79695,boring,1290077937 +174199,79695,too unrealistic,1290077912 +174199,80363,audience intelligence underestimated,1341015930 +174199,80363,bad plot,1341015938 +174199,80363,physics,1341015978 +174199,80363,post-apocalyptic,1341015989 +174199,80363,unrealistic,1341016001 +174199,80363,zombies,1341015993 +174199,83798,taboo relationship,1386198183 +174199,84189,genital mutilation,1322956902 +174199,84189,rape,1322956907 +174199,84189,torture,1322956894 +174199,84696,Simon Pegg,1391634418 +174199,84772,geeky,1313741769 +174199,84772,Nick Frost,1313741763 +174199,84772,Simon Pegg,1313741757 +174199,85131,alien invasion,1316605478 +174199,85131,sci-fi,1316605510 +174199,87921,jumpscares,1386198105 +174199,87921,predictable,1386198110 +174199,87921,shower scene,1386198113 +174199,89343,social commentary,1385502845 +174199,90662,Afghanistan,1385401932 +174199,90662,anticlimax,1385401991 +174199,90662,Veteran,1385401922 +174199,93475,atmospheric,1390344961 +174199,93790,prostitution,1432763204 +174199,93790,Sami Gayle,1432763221 +174199,93790,social commentary,1432763245 +174199,94018,alien invasion,1419723302 +174199,94018,bad science,1419723325 +174199,94896,mockumentary,1431546360 +174199,95309,apocalyptic,1442698889 +174199,95309,dark humor,1442698897 +174199,95309,end of the world,1442698901 +174199,95309,Keira Knightley,1442698936 +174199,95309,surprisingly touching,1442698934 +174199,96737,cinematography,1447795944 +174199,96737,Dystopia,1447795930 +174199,96737,police,1447795953 +174199,96737,post-apocalyptic,1447795932 +174199,96737,sci-fi,1447795935 +174199,96737,strong female,1447795964 +174199,96737,strong female protagonist,1447795966 +174199,97785,bad acting,1389912638 +174199,97785,bad cgi,1389912641 +174199,97785,bad plot,1389912645 +174199,98087,zombies,1397165758 +174199,98369,aliens,1448647999 +174199,98369,school,1448648029 +174199,98369,sci-fi,1448648006 +174199,98369,war,1448648001 +174199,101864,atmospheric,1448399054 +174199,101864,cliche ending,1448399065 +174199,101864,dystopia,1448399050 +174199,101864,dystopian,1448399111 +174199,101864,electronic music,1448399115 +174199,101864,good soundtrack,1448399119 +174199,101864,post-apocalyptic,1448399045 +174199,103249,apocalyptic,1448488823 +174199,103249,chase scenes,1448488792 +174199,103249,epidemic,1448488850 +174199,103249,fast zombies,1448488853 +174199,103249,horror,1448488784 +174199,103249,pandemic,1448488779 +174199,103249,undead,1448488806 +174199,103249,virus,1448488803 +174199,103249,zombies,1448488775 +174199,103253,class conflict,1427320375 +174199,103253,dystopia,1427320345 +174199,103253,Jodie Foster,1427320364 +174199,103253,science fiction,1427320350 +174199,103253,social commentary,1427320356 +174199,103315,satanism,1448310579 +174199,103341,Nick Frost,1427314339 +174199,103341,Simon Pegg,1427314334 +174199,105731,based on a book,1436306393 +174199,105731,Stephen King,1436306412 +174199,106002,alien invasion,1445641393 +174199,106002,aliens,1445641369 +174199,106002,based on a book,1445641371 +174199,106002,sci-fi,1445641395 +174199,106195,coming of age,1397165656 +174199,106195,World War III,1397165656 +174199,107406,dystopia,1419195168 +174199,107406,post-apocalyptic,1419195160 +174199,109487,dystopia,1445641587 +174199,109487,far too long,1445641607 +174199,109487,pretentious,1445641620 +174199,109487,sci-fi,1445641513 +174199,109487,science fiction,1445641539 +174199,109487,thought-provoking,1445641523 +174199,109487,time travel,1445641531 +174199,109487,time-travel,1445641517 +174199,109487,wormhole,1445641536 +174199,111759,Alien Invasion,1431291890 +174199,111759,based on a novel,1431291899 +174199,111759,Disappointing ending,1431291973 +174199,111759,ending,1431291939 +174199,111759,future,1431291928 +174199,111759,original plot,1431291893 +174199,111759,Reluctant Hero,1431291945 +174199,111759,repeating day,1431292004 +174199,111759,sci-fi,1431291882 +174199,111759,stupid title,1431292009 +174199,112497,alcoholism,1433706275 +174199,112497,road trip,1433706329 +174199,114713,cult,1445620734 +174199,114713,demon,1445620730 +174199,114713,doll,1445620724 +174199,114713,occult,1445620751 +174199,114713,possession,1445620814 +174199,114847,dystopia,1445378717 +174199,114847,post-apocalyptic,1445378713 +174199,116493,betrayal,1448232162 +174199,116493,cure,1448232136 +174199,116493,zombies,1448232223 +174199,121231,chase,1448317411 +174199,121231,score,1448317375 +174199,121231,Urban Decay,1448317398 +174199,129707,dog,1447924238 +174199,129707,laboratory,1447924235 +174199,129707,resurrection,1447924197 +174199,136636,dark,1436269878 +174199,136636,dark soundtrack,1436269875 +174199,136636,serial killer,1436269860 +174199,142598,cult,1447972216 +174199,142598,night shift,1447972098 +174199,142598,police,1447972298 +174199,142598,rookie,1447972302 +174199,142598,supernatural,1447972304 +174199,146337,cargo ship,1447784669 +174199,146337,insanity,1447785085 +174199,146337,murder,1447784688 +174199,146337,rape,1447784684 +174199,146337,toxic waste,1447784702 +174205,48738,enjoy is not the word I would use; thoughtful or interesting,1169972380 +174205,48738,possibly scarring,1169972381 +174208,5010,War,1428777579 +174208,115569,dark,1428777551 +174208,115569,gripping,1428777557 +174219,6383,Cars,1433282467 +174219,6383,street race,1433282473 +174222,260,EPIC,1436381356 +174222,260,series,1436381348 +174234,17,Alan Rickman,1262517212 +174234,163,Antonio Banderas,1262517541 +174234,337,Johnny Depp,1262517250 +174234,353,Brandon Lee,1262517345 +174273,121231,atmospheric,1429658696 +174273,121231,great soundtrack,1429658696 +174273,121231,nostalgia,1429658696 +174282,15,treasure,1367432072 +174282,107,treasure,1367432073 +174282,256,arnold,1367432714 +174282,353,dark hero,1367432616 +174282,353,noire,1211449885 +174282,380,arnold,1367432713 +174282,485,arnold,1367432713 +174282,589,arnold,1367432713 +174282,592,dark hero,1367432616 +174282,748,conspiracy theory,1367433130 +174282,836,conspiracy theory,1367433130 +174282,1069,noir thriller,1367432127 +174282,1184,stranded,1367432559 +174282,1240,arnold,1367432713 +174282,1284,noir thriller,1367432127 +174282,1291,spielberg,1367433276 +174282,1291,treasure,1367432072 +174282,1377,dark hero,1367432616 +174282,1387,spielberg,1367433277 +174282,1391,mars,1367432590 +174282,1396,conspiracy theory,1367433131 +174282,1617,neo-noir,1367432912 +174282,1894,stranded,1367432559 +174282,2022,jesus,1367432033 +174282,2028,spielberg,1367433277 +174282,2115,spielberg,1367433277 +174282,2193,dragon,1367433179 +174282,2447,cheerleading,1367432675 +174282,2662,mars,1367432590 +174282,2707,conspiracy theory,1367433130 +174282,2803,conspiracy theory,1367433131 +174282,2916,arnold,1367432713 +174282,2950,stranded,1367432559 +174282,3250,mountain climbing,1367433220 +174282,3786,cheerleading,1367432675 +174282,3861,cheerleading,1367432675 +174282,4638,stranded,1367432559 +174282,4881,neo-noir,1367432912 +174282,4974,cheerleading,1367432675 +174282,5017,noir thriller,1367432127 +174282,5135,bollywood,1367432003 +174282,5388,short-term memory loss,1367433252 +174282,5445,spielberg,1367433276 +174282,5463,dragon,1367433179 +174282,5989,spielberg,1367433276 +174282,6218,bollywood,1367432003 +174282,6377,short-term memory loss,1367433252 +174282,6539,treasure,1367432073 +174282,6696,bollywood,1367432003 +174282,7060,jesus,1367432033 +174282,7293,short-term memory loss,1367433251 +174282,7318,jesus,1367432033 +174282,7386,christian,1367432833 +174282,8366,christian,1367432833 +174282,8529,stranded,1367432559 +174282,36535,hutz,1220194698 +174282,51884,bollywood,1367432003 +174282,53125,treasure,1367432072 +174282,56775,treasure,1367432072 +174282,59220,bollywood,1367432003 +174282,59784,dragon,1367433179 +174282,63082,bollywood,1367432003 +174282,76093,dragon,1367433179 +174302,223,surreal,1246260511 +174302,441,drugs,1246260604 +174302,531,fairy tale,1246260562 +174302,924,cult film,1246260317 +174302,924,surreal,1246260322 +174302,1032,fairy tale,1246260305 +174302,1032,surreal,1246260299 +174302,1032,surrealism,1246260295 +174302,1235,cult film,1246260491 +174302,1235,dark comedy,1246260489 +174302,1298,cult film,1246260155 +174302,1298,drugs,1246260144 +174302,1298,surreal,1246260150 +174302,1682,dark comedy,1246260099 +174302,1682,fantasy,1246260110 +174302,1682,philosophy,1246260116 +174302,1994,ghosts,1246260706 +174302,2329,thought-provoking,1246260524 +174302,2394,religion,1246260699 +174302,2571,philosophy,1246260176 +174302,2571,post-apocalyptic,1246260173 +174302,2571,surreal,1246260179 +174302,2858,dark comedy,1246260288 +174302,2858,surrealism,1246260290 +174302,2997,dark comedy,1246260515 +174302,2997,surreal,1246260520 +174302,2997,surrealism,1246260518 +174302,3159,fairy tale,1246260501 +174302,3676,cult film,1246260591 +174302,3949,drugs,1246260442 +174302,3949,psychology,1246260438 +174302,4447,friendship,1246260735 +174302,4447,Gay stereotypes,1246260728 +174302,4848,Atmospheric,1246260465 +174302,4848,surreal,1246260461 +174302,4848,surrealism,1246260457 +174302,4873,drugs,1246260091 +174302,4873,philosophy,1246260104 +174302,4873,surreal,1246260094 +174302,4878,surreal,1246259993 +174302,4878,time travel,1246260267 +174302,4975,surreal,1246260536 +174302,4979,dark comedy,1246260404 +174302,5620,chick flick,1246260756 +174302,5902,dark comedy,1246260309 +174302,5902,surreal,1246260312 +174302,6711,atmospheric,1246260195 +174302,6936,jazz,1246260598 +174302,7285,drugs,1246260539 +174302,7285,Nudity (Topless - Notable),1246260552 +174302,7285,teen,1246260544 +174302,7361,philosophy,1246260229 +174302,7361,surreal,1246260231 +174302,7361,surrealism,1246260226 +174302,7939,atmospheric,1246260132 +174302,8405,hallucinatory,1246260481 +174302,8811,Yu-Gi-Oh!,1246260820 +174302,8910,existentialism,1246260209 +174302,8910,philosophy,1246260207 +174302,26258,atmospheric,1246260126 +174302,26258,cult film,1246260124 +174302,26258,disturbing,1246260121 +174302,26326,Jodorowsky,1246260485 +174302,27904,surrealism,1246260398 +174302,37384,workplace,1246260362 +174302,40148,less than 300 ratings,1246260431 +174302,41285,Woody Allen,1246260778 +174302,45728,marijuana,1246260284 +174302,46578,dark comedy,1246260201 +174302,48394,atmospheric,1246260167 +174302,48394,fairy tale,1246260161 +174302,48394,surreal,1246260164 +174302,49396,Jack Black,1246260378 +174302,53125,Johnny Depp,1246260770 +174302,53127,Nudity (Full Frontal),1246260872 +174302,53127,nudity (topless),1246260875 +174302,54190,Beatles,1246260532 +174302,56715,Nudity (Topless),1246260329 +174302,56715,quirky,1246260327 +174302,57370,Diane Keaton,1246260849 +174302,57370,unlikeable characters,1246260862 +174302,59126,thought-provoking,1246260447 +174302,60037,far fetched,1246260668 +174302,60069,dystopia,1246260085 +174302,60069,post-apocalyptic,1246260079 +174302,60766,actual footage,1246260183 +174302,60766,black and white,1246260189 +174302,61236,animated,1246260351 +174302,64614,revenge,1246260638 +174302,64839,Nudity (Topless),1246260342 +174302,66097,animation,1246260279 +174302,66097,Surreal,1246260275 +174325,1789,movie to see,1224954415 +174340,2571,simulated reality,1427158740 +174340,86882,thought-provoking,1445141411 +174342,356,deep but not heavy,1429553240 +174342,356,funny and sweet,1429553240 +174342,356,insightful,1429553240 +174381,260,classic,1439802328 +174381,260,sci-fi,1439802318 +174383,4963,con men,1447405520 +174383,4963,crime,1447405517 +174383,4963,heist,1447405511 +174383,4963,plot twist,1447405525 +174383,105653,Escape,1448779629 +174383,105653,Prison,1448779631 +174383,105653,prison escape,1448779623 +174436,318,great cast,1139027056 +174436,33794,Dark,1139027021 +174436,33794,Great Story,1139027021 +174444,260,sci-fi,1436406285 +174444,260,space action,1436406298 +174475,17,adapted from:book,1370960976 +174475,17,based on a book,1370960978 +174475,17,romance,1370961003 +174475,17,romantic,1370961005 +174475,17,Shakespeare,1370961011 +174475,111,Martin Scorsese,1448104745 +174475,111,mental illness,1448104753 +174475,111,robert de niro,1448104741 +174475,111,social commentary,1448104755 +174475,215,conversation,1424633462 +174475,215,dialogue,1424633472 +174475,215,dialogue driven,1424633500 +174475,215,intelligent,1424633471 +174475,215,minimalist,1424633503 +174475,215,reflective,1424633466 +174475,215,thought-provoking,1424633485 +174475,215,Vienna,1424633469 +174475,296,Quentin Tarantino,1447463187 +174475,318,adapted from:book,1356827695 +174475,318,atmospheric,1356827724 +174475,318,based on a book,1416774537 +174475,318,classic,1356827729 +174475,318,crime,1416774550 +174475,318,drama,1356827731 +174475,318,friendship,1356827733 +174475,318,great acting,1416774545 +174475,318,great ending,1416774508 +174475,318,heartwarming,1416774574 +174475,318,hope,1416774566 +174475,318,inspirational,1416774503 +174475,318,justice,1416774546 +174475,318,Morgan Freeman,1356827738 +174475,318,powerful ending,1416774570 +174475,318,prison,1416774496 +174475,318,prison escape,1416774506 +174475,318,psychology,1356827744 +174475,318,revenge,1416774562 +174475,318,Stephen King,1356827749 +174475,318,thought-provoking,1416774499 +174475,318,twist ending,1356827754 +174475,318,violence,1416774576 +174475,364,classic,1356827814 +174475,364,Disney,1356827820 +174475,364,father-son relationship,1356827823 +174475,364,musical,1356827827 +174475,364,Oscar (Best Music - Original Score),1356827829 +174475,364,Oscar (Best Music - Original Song),1356827832 +174475,480,action,1415744091 +174475,480,adventure,1415744062 +174475,480,based on a book,1415744085 +174475,480,children,1415744105 +174475,480,cloning,1415744088 +174475,480,Dinosaurs,1415744054 +174475,480,genetics,1415744064 +174475,480,Jeff Goldblum,1415744094 +174475,480,Michael Crichton,1415744081 +174475,480,Oscar (Best Effects - Visual Effects),1415744069 +174475,480,Sam Neill,1415744107 +174475,480,scenic,1415744100 +174475,480,sci-fi,1415744072 +174475,480,science,1415744102 +174475,480,Steven Spielberg,1415744060 +174475,480,Suspense,1415744097 +174475,480,violence,1415744110 +174475,527,amazing photography,1416774769 +174475,527,atmospheric,1356827988 +174475,527,based on a book,1356827990 +174475,527,based on a true story,1416774777 +174475,527,based on book,1416774754 +174475,527,biography,1416774727 +174475,527,black and white,1356827999 +174475,527,classic,1356828001 +174475,527,historical,1416774725 +174475,527,history,1416774736 +174475,527,imdb top 250,1417001176 +174475,527,jews,1416774760 +174475,527,Liam Neeson,1416774739 +174475,527,Nazis,1416774722 +174475,527,Oscar (Best Cinematography),1416774742 +174475,527,Oscar (Best Directing),1416774758 +174475,527,Oscar (Best Picture),1416774735 +174475,527,Steven Spielberg,1416774774 +174475,527,thought-provoking,1416774756 +174475,527,true story,1416774775 +174475,527,war,1416774762 +174475,527,World War II,1416774769 +174475,527,WWII,1416774752 +174475,588,Action,1356889675 +174475,588,adventure,1356889677 +174475,588,aliens,1356889680 +174475,588,animated,1356889684 +174475,588,animation,1356889689 +174475,588,artistic,1356889691 +174475,588,children,1356889693 +174475,588,comedy,1356889698 +174475,588,Disney,1356889702 +174475,588,fairy tale,1356889704 +174475,588,Fantasy,1356889707 +174475,588,funny,1356889713 +174475,588,good versus evil,1356889717 +174475,588,kids and family,1356889720 +174475,588,middle east,1356889725 +174475,588,musical,1356889730 +174475,588,Oscar (Best Music - Original Score),1356889733 +174475,588,Oscar (Best Music - Original Song),1356889736 +174475,590,based on a book,1356827460 +174475,590,based on book,1356827466 +174475,590,civil war,1356827480 +174475,590,drama,1356827486 +174475,590,Oscar (Best Cinematography),1356827499 +174475,590,Oscar (Best Directing),1356827509 +174475,590,Oscar (Best Music - Original Score),1356827513 +174475,590,Oscar (Best Picture),1356827516 +174475,590,Oscar (Best Sound),1356827520 +174475,590,war,1356827523 +174475,590,western,1356827529 +174475,593,Anthony Hopkins,1356828168 +174475,593,based on a book,1356828170 +174475,593,cannibalism,1356828175 +174475,593,classic,1356828177 +174475,593,crime,1356828182 +174475,593,drama,1356828185 +174475,593,excellent script,1416775748 +174475,593,fbi,1416775768 +174475,593,great acting,1416775751 +174475,593,Hannibal Lecter,1356828187 +174475,593,Hannibal Lector,1416775782 +174475,593,Horror,1416775774 +174475,593,imdb top 250,1356828189 +174475,593,Jodie Foster,1356828192 +174475,593,mental illness,1356828196 +174475,593,Oscar (Best Actor),1416775774 +174475,593,Oscar (Best Actress),1416775777 +174475,593,Oscar (Best Directing),1416775780 +174475,593,Oscar (Best Picture),1416775765 +174475,593,psychological,1416775756 +174475,593,psychology,1356828224 +174475,593,serial killer,1356828226 +174475,593,strong female lead,1416775788 +174475,593,suspense,1356828229 +174475,593,violent,1416775758 +174475,750,adapted from:book,1382596468 +174475,750,based on a book,1382596472 +174475,750,based on book,1382596475 +174475,750,classic,1382596478 +174475,750,cold war,1382596483 +174475,750,politics,1382596493 +174475,750,Stanley Kubrick,1382596498 +174475,858,Al Pacino,1417001136 +174475,858,based on a book,1417001131 +174475,858,classic,1417001138 +174475,858,great acting,1417001140 +174475,858,oscar (best directing),1417001142 +174475,858,Oscar (Best Picture),1417001151 +174475,858,robert de niro,1417001155 +174475,912,atmospheric,1417001281 +174475,912,black and white,1417001294 +174475,912,classic,1417001275 +174475,912,Film Noir,1417001289 +174475,912,Nazis,1417001288 +174475,912,Oscar (Best Directing),1417001310 +174475,912,Oscar (Best Picture),1417001284 +174475,912,romance,1417001286 +174475,912,war,1417001307 +174475,912,World War II,1417001278 +174475,920,American Civil War,1356827584 +174475,920,based on a book,1356827586 +174475,920,black and white,1356827591 +174475,920,classic,1356827594 +174475,920,Oscar (Best Actress),1356827606 +174475,920,Oscar (Best Cinematography),1356827608 +174475,920,Oscar (Best Directing),1356827610 +174475,920,Oscar (Best Picture),1356827612 +174475,920,Oscar (Best Supporting Actress),1356827615 +174475,920,Romance,1356827619 +174475,920,social commentary,1356827621 +174475,922,atmospheric,1370273638 +174475,922,black and white,1416775067 +174475,922,black comedy,1370273641 +174475,922,classic,1370273648 +174475,922,film noir,1416775079 +174475,922,Hollywood,1416775068 +174475,922,Los Angeles,1416775129 +174475,922,mental illness,1370273657 +174475,922,movie business,1416775127 +174475,922,Oscar (Best Art Direction),1370273668 +174475,922,satirical,1416775076 +174475,926,classic,1416775354 +174475,926,great dialogue,1416775352 +174475,926,Oscar (Best Picture),1416775349 +174475,928,adapted from:book,1356890370 +174475,928,adultery,1356890386 +174475,928,Alfred Hitchcock,1356890390 +174475,928,Amazing Cinematography,1356890392 +174475,928,atmospheric,1356890396 +174475,928,cinematography,1356890399 +174475,928,classic,1356890402 +174475,928,Dark Comedy,1356890411 +174475,928,enigmatic,1356890413 +174475,928,ghosts/afterlife,1356890421 +174475,928,Hitchcock,1356890425 +174475,928,IMDB Top 250,1356890429 +174475,928,Oscar (Best Cinematography),1356890434 +174475,928,Oscar (Best Picture),1356890438 +174475,928,suspense,1356890442 +174475,953,alternate universe,1387986526 +174475,953,black and white,1387986529 +174475,953,Christmas,1387986543 +174475,953,classic,1387986546 +174475,953,drama,1387986552 +174475,953,family,1387986557 +174475,953,fantasy,1387986559 +174475,953,heartwarming,1387986562 +174475,953,Hitchcock,1387986565 +174475,953,imdb top 250,1387986569 +174475,953,romance,1387986585 +174475,953,World War II,1387986592 +174475,973,acting,1382819022 +174475,973,anti-fascism,1382819026 +174475,973,Christianity,1382819029 +174475,973,patriotic,1382819045 +174475,973,thought provoking,1382819058 +174475,1022,2D animation,1356900384 +174475,1022,animation,1356900387 +174475,1022,Disney,1356900423 +174475,1022,prince,1356900431 +174475,1022,romantic,1356900433 +174475,1080,satire,1438506931 +174475,1080,satirical,1438506939 +174475,1089,crime,1356890645 +174475,1089,cult film,1356890647 +174475,1089,great soundtrack,1356890653 +174475,1089,imdb top 250,1356890656 +174475,1089,multiple storylines,1356890661 +174475,1089,music,1356890663 +174475,1089,organized crime,1356890671 +174475,1089,Quentin Tarantino,1356890673 +174475,1089,violence,1356890677 +174475,1172,bittersweet,1425472814 +174475,1172,childhood,1425472816 +174475,1172,classical,1425472831 +174475,1172,heartwarming,1425472806 +174475,1172,Italian,1425472824 +174475,1172,nostalgia,1425472833 +174475,1172,nostalgic,1425472801 +174475,1172,reflective,1425472819 +174475,1172,sentimental,1425472797 +174475,1172,warm,1425472836 +174475,1193,adapted from:book,1356827923 +174475,1193,based on a book,1356827927 +174475,1193,classic,1356827930 +174475,1193,drama,1356827932 +174475,1193,emotional,1356827934 +174475,1193,imdb top 250,1356827937 +174475,1193,Jack Nicholson,1356827940 +174475,1193,mental hospital,1356827946 +174475,1193,mental illness,1356827950 +174475,1193,Oscar (Best Actor),1356827953 +174475,1193,Oscar (Best Actress),1356827954 +174475,1193,Oscar (Best Directing),1356827956 +174475,1193,Oscar (Best Picture),1356827958 +174475,1193,powerful ending,1416774846 +174475,1193,psychological,1356827959 +174475,1193,psychology,1356827960 +174475,1193,violence,1356827962 +174475,1196,father-son relationship,1451082352 +174475,1196,great soundtrack,1451082362 +174475,1196,music,1451082369 +174475,1198,action,1356828621 +174475,1198,adventure,1356828623 +174475,1198,archaeology,1356828626 +174475,1198,atmospheric,1356828627 +174475,1198,classic,1356828629 +174475,1198,comedy,1356828631 +174475,1198,great soundtrack,1356828638 +174475,1198,humorous,1356828641 +174475,1198,Nazis,1356828647 +174475,1198,Oscar (Best Effects - Visual Effects),1356828648 +174475,1198,Oscar (Best Sound),1356828650 +174475,1198,racism,1356828651 +174475,1198,romance,1356828653 +174475,1198,Steven Spielberg,1417002006 +174475,1198,World War II,1356828659 +174475,1201,American Civil War,1356829332 +174475,1201,atmospheric,1356829334 +174475,1201,Civil War,1356829336 +174475,1201,classic,1356829339 +174475,1201,Clint Eastwood,1356829339 +174475,1201,complex characters,1356829343 +174475,1201,historical,1356829351 +174475,1201,imdb top 250,1356829348 +174475,1201,music,1356829353 +174475,1201,Sergio Leone,1356829357 +174475,1201,spaghetti western,1356829365 +174475,1201,western,1356829363 +174475,1203,adapted from:play,1356828815 +174475,1203,based on a play,1356828819 +174475,1203,cinematography,1356828821 +174475,1203,classic,1356828823 +174475,1203,courtroom,1356828827 +174475,1203,courtroom drama,1356828830 +174475,1203,crime,1356828833 +174475,1203,drama,1356828835 +174475,1203,ensemble cast,1356828840 +174475,1203,good dialogue,1356828846 +174475,1203,group psychology,1416774340 +174475,1203,Henry Fonda,1416774341 +174475,1203,justice,1416774335 +174475,1203,low budget,1416774326 +174475,1203,politics,1356828852 +174475,1203,racism,1356828854 +174475,1203,social commentary,1356828856 +174475,1203,thought-provoking,1416774324 +174475,1206,atmospheric,1356829201 +174475,1206,based on a book,1356829210 +174475,1206,classic,1356829214 +174475,1206,cult film,1356829216 +174475,1206,imdb top 250,1356829220 +174475,1206,prison,1356829222 +174475,1206,psychological,1356829223 +174475,1206,psychology,1356829225 +174475,1206,social commentary,1356829229 +174475,1206,stanley kubrick,1447462495 +174475,1206,violence,1356829232 +174475,1207,adapted from:book,1420590939 +174475,1207,atmospheric,1420590898 +174475,1207,based on a book,1420590952 +174475,1207,classic,1420590884 +174475,1207,courtroom drama,1420590895 +174475,1207,Gregory Peck,1420590903 +174475,1207,Harper Lee,1420590942 +174475,1207,heartwarming,1420590924 +174475,1207,History,1420590930 +174475,1207,imdb top 250,1420590934 +174475,1207,lawyer,1420590918 +174475,1207,Oscar (Best Actor),1420590921 +174475,1207,racism,1420590886 +174475,1207,small town,1420590927 +174475,1207,social commentary,1420590901 +174475,1209,atmospheric,1382997664 +174475,1209,classic,1382997677 +174475,1209,great soundtrack,1382997682 +174475,1209,Sergio Leone,1382997691 +174475,1209,Spaghetti Western,1382997695 +174475,1209,stylized,1382997704 +174475,1209,visually appealing,1382997710 +174475,1209,western,1382997707 +174475,1213,adapted from:book,1356829265 +174475,1213,based on a book,1356829266 +174475,1213,biography,1356829270 +174475,1213,crime,1356829271 +174475,1213,dark comedy,1356829273 +174475,1213,drama,1356829275 +174475,1213,gangs,1356829278 +174475,1213,gangsters,1356829279 +174475,1213,imdb top 250,1356829281 +174475,1213,mafia,1356829283 +174475,1213,Oscar (Best Supporting Actor),1356829288 +174475,1213,violence,1356829292 +174475,1258,adapted from:book,1356828954 +174475,1258,atmospheric,1356828956 +174475,1258,based on a book,1356828957 +174475,1258,classic,1356828959 +174475,1258,cult film,1356828961 +174475,1258,ghosts,1356828966 +174475,1258,Horror,1356828968 +174475,1258,imdb top 250,1356828970 +174475,1258,Jack Nicholson,1356828972 +174475,1258,mental illness,1356828973 +174475,1258,psychological,1356828977 +174475,1258,psychology,1356828979 +174475,1258,Stanley Kubrick,1356828987 +174475,1258,Stephen King,1356828990 +174475,1258,suspense,1356828993 +174475,1293,anti-war,1356828331 +174475,1293,based on a true story,1356828333 +174475,1293,biographical,1356828337 +174475,1293,biography,1356828339 +174475,1293,imdb top 250,1356828346 +174475,1293,India,1356828349 +174475,1293,Oscar (Best Actor),1356828351 +174475,1293,Oscar (Best Cinematography),1356828352 +174475,1293,Oscar (Best Directing),1356828356 +174475,1293,Oscar (Best Picture),1356828361 +174475,1293,political,1356828363 +174475,1293,politics,1356828377 +174475,1293,religion,1356828373 +174475,1293,trains,1356828383 +174475,1293,true story,1356828387 +174475,1293,world politics,1356828390 +174475,1544,dinosaurs,1415744161 +174475,1544,spielberg,1415744163 +174475,1544,Steven Spielberg,1415744167 +174475,1645,Al Pacino,1374057705 +174475,1645,Keanu Reeves,1374057716 +174475,1645,psychological,1374057726 +174475,1645,psychology,1374057730 +174475,1645,supernatural,1374057734 +174475,1704,Ben Affleck,1447462601 +174475,1704,boston,1447462633 +174475,1704,college,1447462635 +174475,1704,excellent script,1447462615 +174475,1704,feel-good,1447462594 +174475,1704,genius,1447462610 +174475,1704,great acting,1447462647 +174475,1704,Great Screenplays,1447462625 +174475,1704,heartwarming,1447462645 +174475,1704,imdb top 250,1447462655 +174475,1704,inspirational,1447462593 +174475,1704,intellectual,1447462622 +174475,1704,intelligent,1447462621 +174475,1704,math,1447462636 +174475,1704,mathematics,1447462608 +174475,1704,Matt Damon,1447462605 +174475,1704,mentor,1447462627 +174475,1704,psychology,1447462612 +174475,1704,Robin Williams,1447462583 +174475,1704,thoughtful,1447462628 +174475,1704,university,1447462630 +174475,1784,classic,1368106245 +174475,1784,Comedy,1368106248 +174475,1784,Drama,1368106250 +174475,1784,Jack Nicholson,1368106258 +174475,1784,neurosis,1368106261 +174475,1784,obsessive compulsive disorder,1368106265 +174475,1784,Oscar (Best Actor),1368106271 +174475,1784,Oscar (Best Actress),1368106273 +174475,1784,Oscar Winner,1368106275 +174475,1784,psychological,1368106277 +174475,1784,psychology,1368106282 +174475,1784,relationships,1368106286 +174475,1873,adapted from:book,1367084276 +174475,1873,author:Victor Hugo,1367084282 +174475,1873,based on a book,1367084287 +174475,1873,classic,1367084301 +174475,1873,Liam Neeson,1367084304 +174475,1873,Uma Thurman,1367084312 +174475,1873,Victor Hugo,1367084343 +174475,2028,drama,1374319258 +174475,2028,historical,1374319260 +174475,2028,history,1374319264 +174475,2028,Oscar (Best Cinematography),1374319271 +174475,2028,Oscar (Best Directing),1374319273 +174475,2028,Steven Spielberg,1374319275 +174475,2028,Tom Hanks,1374319277 +174475,2028,World War II,1374319280 +174475,2115,archaeology,1417001984 +174475,2115,father-son relationship,1417001992 +174475,2115,spielberg,1417001982 +174475,2115,Steven Spielberg,1417001978 +174475,2183,Academy award:Best Song,1372402353 +174475,2183,Alfred Hitchcock,1372402356 +174475,2183,classic,1372402362 +174475,2183,Hitchcock,1372402367 +174475,2183,music is key to story (not Musical genre),1372402379 +174475,2324,bittersweet,1373983385 +174475,2324,comedy,1373983388 +174475,2324,emotional,1373983390 +174475,2324,family bonds,1373983392 +174475,2324,father-son relationship,1373983394 +174475,2324,funny,1373983398 +174475,2324,heartwarming,1373983401 +174475,2324,Italy,1373983406 +174475,2324,optimism,1416775389 +174475,2324,Oscar (Best Actor),1373983409 +174475,2324,Oscar (Best Foreign Language Film),1373983412 +174475,2324,Oscar Winner,1373983414 +174475,2324,Roberto Benigni,1416775385 +174475,2324,survival,1416775387 +174475,2324,war,1373983417 +174475,2324,World War II,1373983419 +174475,2329,amazing photography,1416775971 +174475,2329,disturbing,1381339952 +174475,2329,drama,1416775979 +174475,2329,emotional,1381339954 +174475,2329,friendship,1381339957 +174475,2329,great acting,1416775984 +174475,2329,Nazis,1381340624 +174475,2329,neo Nazi,1416775967 +174475,2329,Neo-Nazis,1381340626 +174475,2329,politics,1381340628 +174475,2329,powerful ending,1416775952 +174475,2329,prison,1381340630 +174475,2329,racism,1381340631 +174475,2329,social commentary,1416775965 +174475,2329,thought-provoking,1381340660 +174475,2329,violence,1416775955 +174475,2628,Natalie Portman,1447454639 +174475,2687,Disney,1416700726 +174475,2762,afterlife,1356828078 +174475,2762,Atmospheric,1356828080 +174475,2762,death,1356828084 +174475,2762,Drama,1356828086 +174475,2762,ghosts,1356828092 +174475,2762,ghosts/afterlife,1356828098 +174475,2762,horror,1356828101 +174475,2762,psychological,1356828107 +174475,2762,psychology,1356828108 +174475,2762,thriller,1356828112 +174475,2762,twist ending,1356828115 +174475,2858,great acting,1424626730 +174475,2858,midlife crisis,1424626746 +174475,2858,Nudity (Topless),1424626756 +174475,2858,social commentary,1424626741 +174475,2858,thought-provoking,1424626723 +174475,2959,adapted from:book,1381352051 +174475,2959,based on a book,1381352055 +174475,2959,disturbing,1447463361 +174475,2959,mental illness,1447463358 +174475,2959,psychological,1381352065 +174475,2959,psychology,1381352067 +174475,2959,social commentary,1447463353 +174475,2959,thought-provoking,1447463368 +174475,2959,twist ending,1447463337 +174475,3095,100 Greatest Movies,1371489391 +174475,3095,adapted from:book,1371489396 +174475,3095,imdb top 250,1371489416 +174475,3095,National Film Registry,1371489418 +174475,3147,death penalty,1447463473 +174475,3147,emotional,1447463458 +174475,3147,great acting,1447463460 +174475,3147,heartwarming,1447463461 +174475,3147,nostalgic,1447463492 +174475,3147,oscar (best directing),1447463478 +174475,3147,prison,1447463463 +174475,3147,racism,1447463498 +174475,3147,social commentary,1447463485 +174475,3147,Stephen King,1447463456 +174475,3147,Tom Hanks,1447463454 +174475,3147,touching,1447463509 +174475,3252,Al Pacino,1356890005 +174475,3252,atmospheric,1356890007 +174475,3252,based on book,1356890009 +174475,3252,blindness,1356890015 +174475,3252,dance,1356890017 +174475,3252,disability,1356890021 +174475,3252,drama,1356890023 +174475,3252,good acting,1356890029 +174475,3252,great acting,1356890035 +174475,3252,New York City,1356890043 +174475,3252,Oscar (Best Actor),1356890046 +174475,3252,sad,1356890055 +174475,3252,school,1356890056 +174475,3307,beautiful,1438507037 +174475,3307,blindness,1438507040 +174475,3307,Charlie Chaplin,1438507034 +174475,3307,funny,1438507048 +174475,3307,sweet,1438507042 +174475,3462,anti-authoritarian,1416776806 +174475,3462,Charles Chaplin,1416776816 +174475,3462,Charlie Chaplin,1416776808 +174475,3462,factory,1416776810 +174475,3462,social commentary,1416776802 +174475,3462,working class,1416776814 +174475,3949,addiction,1356829075 +174475,3949,atmospheric,1356829077 +174475,3949,based on a book,1356829079 +174475,3949,cinematography,1356829081 +174475,3949,dark,1356829085 +174475,3949,Darren Aronofsky,1447463541 +174475,3949,depressing,1356829087 +174475,3949,disturbing,1447463521 +174475,3949,drugs,1356829091 +174475,3949,emotional,1356829093 +174475,3949,great acting,1447463538 +174475,3949,loneliness,1356829097 +174475,3949,music,1447463548 +174475,3949,oscar (best directing),1447463536 +174475,3949,powerful ending,1447463545 +174475,3949,psychological,1356829102 +174475,3949,psychology,1356829103 +174475,3949,Romance,1356829105 +174475,3949,social commentary,1356829112 +174475,4226,plot twist,1382034329 +174475,4226,psychological,1382034330 +174475,4226,psychology,1382034335 +174475,4226,twist ending,1382034338 +174475,4262,Al Pacino,1447463563 +174475,4720,afterlife,1356890507 +174475,4720,alternate reality,1356890513 +174475,4720,atmospheric,1356890516 +174475,4720,beautiful,1356890518 +174475,4720,clever,1356890525 +174475,4720,death,1356890529 +174475,4720,Drama,1356890543 +174475,4720,ghosts,1356890546 +174475,4720,gothic,1356890548 +174475,4720,haunted house,1356890550 +174475,4720,Horror,1356890552 +174475,4720,mother-daughter relationships,1356890555 +174475,4720,Nicole Kidman,1356890557 +174475,4720,seen more than once,1356890564 +174475,4720,twist ending,1356890568 +174475,4973,atmospheric,1416775221 +174475,4973,Audrey Tautou,1416775285 +174475,4973,beautifully filmed,1356828695 +174475,4973,comedy,1356828697 +174475,4973,cult film,1356828703 +174475,4973,drama,1356828707 +174475,4973,fairy tale,1356828710 +174475,4973,feel good movie,1416775315 +174475,4973,feel-good,1416775224 +174475,4973,France,1416775298 +174475,4973,French,1416775209 +174475,4973,french movie,1416775317 +174475,4973,great soundtrack,1356828712 +174475,4973,imagination,1416775306 +174475,4973,inspirational,1416775235 +174475,4973,love,1416775310 +174475,4973,love story,1416775319 +174475,4973,music,1416775294 +174475,4973,notable soundtrack,1416775232 +174475,4973,Paris,1356828727 +174475,4973,romance,1356828730 +174475,4973,romantic,1416775300 +174475,4973,romantic but not cheesy,1416775326 +174475,4973,stylized,1416775228 +174475,4973,sweet,1416775313 +174475,5378,complex script,1447454705 +174475,5378,Natalie Portman,1447454717 +174475,5475,based on a true story,1367426268 +174475,5475,Oscar (Best Foreign Language Film),1367426288 +174475,5475,politics,1367426296 +174475,5995,beautiful,1356828899 +174475,5995,classical music,1356828901 +174475,5995,drama,1356828904 +174475,5995,historical,1356828907 +174475,5995,imdb top 250,1356828911 +174475,5995,music,1356828913 +174475,5995,Nazis,1356828914 +174475,5995,Oscar (Best Actor),1356828916 +174475,5995,Oscar (Best Directing),1356828917 +174475,5995,Oscar Winner,1356828923 +174475,5995,true story,1356828928 +174475,5995,war,1356828932 +174475,5995,World War II,1356828930 +174475,6016,amazing photography,1416774915 +174475,6016,atmospheric,1416774895 +174475,6016,based on a true story,1416774887 +174475,6016,brazil,1416774879 +174475,6016,crime,1416774888 +174475,6016,disturbing,1416774919 +174475,6016,drugs,1416774881 +174475,6016,gangs,1416774928 +174475,6016,gangsters,1416774893 +174475,6016,multiple storylines,1416774885 +174475,6016,Portuguese,1416774903 +174475,6016,powerful ending,1416774923 +174475,6016,Rio de Janeiro,1416774911 +174475,6016,social commentary,1416774899 +174475,6016,South America,1416774926 +174475,6016,true story,1416774935 +174475,6016,violence,1416774906 +174475,6216,Africa,1447462281 +174475,6216,Kenya,1447462284 +174475,6216,nazis,1447462274 +174475,6216,World War II,1447462276 +174475,6818,disturbing,1369931918 +174475,6818,Russian,1369931960 +174475,6818,World War II,1369931967 +174475,6874,action,1356829415 +174475,6874,classic,1356829418 +174475,6874,Crime,1356829422 +174475,6874,imdb top 250,1356829424 +174475,6874,Japan,1356829428 +174475,6874,kung fu,1356829432 +174475,6874,mafia,1356829435 +174475,6874,Quentin Tarantino,1356829438 +174475,6874,Uma Thurman,1356829442 +174475,6874,violence,1356829448 +174475,6874,violent,1356829450 +174475,7079,adapted from:book,1368810241 +174475,7079,author:Victor Hugo,1368810244 +174475,7079,based on a book,1368810246 +174475,7079,Based on a novel,1368810251 +174475,7079,black and white,1368810281 +174475,7079,Paris,1368810291 +174475,7079,Victor Hugo,1368810305 +174475,7153,Action,1356828467 +174475,7153,adapted from:book,1356828469 +174475,7153,adventure,1416776142 +174475,7153,atmospheric,1356828474 +174475,7153,based on a book,1356828475 +174475,7153,ensemble cast,1356828500 +174475,7153,fantasy,1356828503 +174475,7153,fantasy world,1356828505 +174475,7153,great ending,1416776145 +174475,7153,great soundtrack,1356828507 +174475,7153,high fantasy,1356828509 +174475,7153,magic,1356828514 +174475,7153,Myth,1356828519 +174475,7153,mythology,1356828522 +174475,7153,oscar (best cinematography),1416776144 +174475,7153,Oscar (Best Directing),1356828524 +174475,7153,Oscar (Best Picture),1356828538 +174475,7153,war,1356828541 +174475,7323,1970s,1356889784 +174475,7323,1980s,1356889791 +174475,7323,Berlin,1356889795 +174475,7323,Cold War,1356889798 +174475,7323,comedy,1356889802 +174475,7323,communism,1356889804 +174475,7323,drama,1356889810 +174475,7323,East Germany,1356889814 +174475,7323,family bonds,1356889820 +174475,7323,family relationships,1356889823 +174475,7323,German,1356889848 +174475,7323,Germany,1356889855 +174475,7323,great soundtrack,1356889862 +174475,7323,historical,1356889866 +174475,7323,romance,1356889872 +174475,7323,secrets,1356889937 +174475,7323,seen more than once,1356889941 +174475,7323,socialism,1356889945 +174475,7323,The fall of the Berlin wall,1356889958 +174475,7361,amnesia,1416700571 +174475,7361,beautiful,1416700267 +174475,7361,bittersweet,1416700117 +174475,7361,colourful,1416700325 +174475,7361,emotional,1416700265 +174475,7361,imagination,1416700232 +174475,7361,jim carrey,1416700154 +174475,7361,Kate Winslet,1416700636 +174475,7361,love,1416700243 +174475,7361,memory,1416700334 +174475,7361,philosophy,1416700162 +174475,7361,psychology,1416700221 +174475,7361,relationships,1416700248 +174475,7361,romance,1416700567 +174475,7361,romantic,1416700272 +174475,7361,short-term memory loss,1416700171 +174475,7361,thought-provoking,1416700149 +174475,7748,Anna Karina,1382596405 +174475,7748,lyrical,1382596420 +174475,8638,dialogue,1425131431 +174475,8638,emotional,1425131434 +174475,8638,Ethan Hawke,1425131457 +174475,8638,great dialogue,1425131445 +174475,8638,Julie Delpy,1425131450 +174475,8638,minimalist,1425131432 +174475,8638,Paris,1425131427 +174475,8638,philosophical,1425131447 +174475,8638,Richard Linklater,1425131451 +174475,8638,romance,1425131436 +174475,8638,romantic,1425131429 +174475,8638,sequel,1425131443 +174475,8873,adventure,1356889224 +174475,8873,Argentina,1356889226 +174475,8873,based on a book,1356889230 +174475,8873,based on a true story,1356889233 +174475,8873,Che Guevara,1356889237 +174475,8873,cinematography,1356889240 +174475,8873,drama,1356889246 +174475,8873,genocide,1356889263 +174475,8873,good dialogue,1356889268 +174475,8873,Oscar (Best Music - Original Song),1356889270 +174475,8873,political,1356889278 +174475,8873,politics,1356889279 +174475,8873,revolution,1356889290 +174475,8873,road trip,1356889294 +174475,8873,social commentary,1356889298 +174475,8873,South America,1356889300 +174475,8873,Spanish,1356889305 +174475,8873,true story,1356889307 +174475,30707,boxing,1356827190 +174475,30707,Clint Eastwood,1356827299 +174475,30707,imdb top 250,1356827325 +174475,30707,Morgan Freeman,1356827313 +174475,30707,Oscar (Best Actress),1356827333 +174475,30707,Oscar (Best Directing),1356827335 +174475,30707,Oscar (Best Picture),1356827337 +174475,30707,Oscar (Best Supporting Actor),1356827339 +174475,30707,social commentary,1356827344 +174475,30707,violence,1356827352 +174475,31410,history,1447455033 +174475,31410,World War II,1447455035 +174475,33493,great soundtrack,1450622674 +174475,33493,Natalie Portman,1450622692 +174475,35347,2D animation,1357086454 +174475,35347,adapted from:book,1357086433 +174475,35347,allegory,1357086437 +174475,35347,author:George Orwell (Eric Blair),1357086440 +174475,35347,based on a book,1357086482 +174475,35347,farm,1357086476 +174475,35347,George Orwell,1357086471 +174475,35347,satire,1357086463 +174475,37736,adapted from:book,1374597345 +174475,37736,author:Charles Dickens,1374597349 +174475,37736,based on a book,1374597354 +174475,37736,Charles Dickens,1374597359 +174475,37736,classic,1374597362 +174475,37736,poverty,1374597371 +174475,37736,Roman Polanski,1374597373 +174475,37736,story,1374597376 +174475,41285,slow,1370617676 +174475,43376,anti-war,1371888432 +174475,43376,based on a true story,1371888440 +174475,43376,FIGHTING THE SYSTEM,1371888454 +174475,43376,Nazis,1371888462 +174475,43376,strong woman,1371888477 +174475,43376,true story,1371888478 +174475,43376,WOMEN DURING WARTIME,1371888484 +174475,43376,World War II,1371888486 +174475,44191,action,1447463306 +174475,44191,historical,1447463313 +174475,44191,inspirational,1447463281 +174475,44191,Natalie Portman,1447463277 +174475,44191,philosophical,1447463299 +174475,44191,philosophy,1447463283 +174475,44191,political,1447463310 +174475,44191,politics,1447463276 +174475,44191,revolution,1447463315 +174475,44191,social commentary,1447463272 +174475,44191,thought-provoking,1447463270 +174475,58559,Morgan Freeman,1447462688 +174475,60950,Barcelona,1370861044 +174475,60950,Oscar (Best Supporting Actress),1370861056 +174475,60950,sexuality,1370861067 +174475,60950,Spain,1370861069 +174475,64957,adapted from:book,1372957809 +174475,64957,based on a book,1372957812 +174475,64957,Brad Pitt,1372957816 +174475,64957,Oscar (Best Effects - Visual Effects),1372957828 +174475,68954,adventure,1373232557 +174475,68954,animated,1373232559 +174475,68954,animation,1373232561 +174475,68954,comedy,1373232563 +174475,68954,disney,1373232568 +174475,68954,drama,1373232571 +174475,68954,emotional,1373232573 +174475,68954,funny,1373232577 +174475,68954,Pixar,1373232581 +174475,69644,Animation,1373379926 +174475,72737,animation,1374165031 +174475,72737,Disney,1374165033 +174475,81562,adventure,1447462758 +174475,81562,loneliness,1447462739 +174475,81562,mountain climbing,1447462744 +174475,81562,nature,1447462741 +174475,81562,psychology,1447462764 +174475,81562,survival,1447462736 +174475,81562,true story,1447462734 +174475,81562,wilderness,1447462750 +174475,81591,atmospheric,1356891629 +174475,81591,ballet,1447462957 +174475,81591,classical music,1447463050 +174475,81591,dance,1356891633 +174475,81591,dance movie,1356891635 +174475,81591,dark,1356891637 +174475,81591,Darren Aronofsky,1447462969 +174475,81591,disturbing,1447462972 +174475,81591,drama,1356891639 +174475,81591,emotional,1447463055 +174475,81591,erotic,1447463041 +174475,81591,horror,1356891641 +174475,81591,lesbian,1447463000 +174475,81591,lesbians,1447462986 +174475,81591,madness,1447462975 +174475,81591,mental illness,1356891644 +174475,81591,Mila Kunis,1447462966 +174475,81591,music,1356891648 +174475,81591,Natalie Portman,1356891655 +174475,81591,New York City,1356891659 +174475,81591,obsession,1356891660 +174475,81591,Oscar (Best Actress),1356891663 +174475,81591,protagonist is a dancer,1447463079 +174475,81591,psychological,1356891665 +174475,81591,psychology,1447463048 +174475,81591,repressed sexuality,1447462989 +174475,81591,sex,1447462961 +174475,81591,Soundtrack,1447463032 +174475,81591,stylized,1447462982 +174475,81591,suspense,1447463058 +174475,81591,thriller,1356891672 +174475,81591,twist ending,1356891673 +174475,81845,1930s,1356889544 +174475,81845,Australian,1356889547 +174475,81845,based on a true story,1356889554 +174475,81845,cinematography,1356889558 +174475,81845,complex characters,1356889563 +174475,81845,disability,1356889568 +174475,81845,drama,1356889573 +174475,81845,emotional,1356889580 +174475,81845,England,1356889583 +174475,81845,father daughter relationship,1356889585 +174475,81845,father-son relationship,1356889590 +174475,81845,friendship,1356889593 +174475,81845,great performances,1356889596 +174475,81845,historical,1356889607 +174475,81845,IMDB Top 250,1356889613 +174475,81845,Oscar (Best Picture),1356889619 +174475,81845,Shakespeare,1356889626 +174475,81845,true story,1356889636 +174475,81845,war,1356889642 +174475,84240,fighting the system,1374073458 +174475,84240,human rights,1374073460 +174475,84240,rebellion,1374073471 +174475,84240,Spanish,1374073468 +174475,84395,Anthony Hopkins,1372005146 +174475,86332,Anthony Hopkins,1381339876 +174475,86332,cliche characters,1381339882 +174475,86332,Natalie Portman,1381339894 +174475,86332,predictable,1381339898 +174475,91035,adapted from:book,1371887872 +174475,91035,based on a book,1371887876 +174475,92259,acting,1356890128 +174475,92259,classical music,1356890135 +174475,92259,disability,1356890141 +174475,92259,emotional,1356890147 +174475,92259,feel good movie,1356890147 +174475,92259,friendship,1416775894 +174475,93982,artistic,1373361999 +174475,93982,Poe,1373361994 +174475,95167,animation,1373804849 +174475,95167,celtic music,1373804856 +174475,95167,charming,1373804859 +174475,95167,No Marriage at the End,1373804872 +174475,95543,Animated,1373731361 +174475,95543,Corny ending,1373731403 +174475,95543,ocean,1373731408 +174475,97752,adapted from:book,1356911520 +174475,97752,atmospheric,1356911524 +174475,97752,based on a book,1356911528 +174475,97752,cannibalism,1356911534 +174475,97752,great acting,1356911540 +174475,97752,help others,1356911544 +174475,97752,multiple roles,1356911550 +174475,97752,multiple storylines,1356911554 +174475,97752,philosophy,1356911558 +174475,97752,rebellion,1356911571 +174475,97752,sci-fi,1356911574 +174475,97752,social commentary,1356911578 +174475,97752,social criticism,1356911583 +174475,97752,Tom Hanks,1356911586 +174475,97936,adapted from:book,1357179214 +174475,97936,author:Leo Tolstoy,1357179218 +174475,97936,drama,1357179227 +174475,97936,kiera knightley,1357179234 +174475,97936,romance,1357179237 +174475,97936,Russia,1357179241 +174475,97936,too long,1357179299 +174475,97938,adapted from:book,1357088049 +174475,97938,animal:tiger (CGI),1357088059 +174475,97938,animals,1357088064 +174475,97938,based on a book,1357088069 +174475,97938,boat,1357088073 +174475,97938,Direction,1357088077 +174475,97938,ocean,1357088081 +174475,97938,religion,1357088088 +174475,97938,tigers,1357088096 +174475,98809,adapted from:book,1356891517 +174475,98809,adventure,1356891522 +174475,98809,author:J. R. R. Tolkein,1356891526 +174475,98809,based on a book,1356891530 +174475,98809,beautiful scenery,1356891533 +174475,98809,dwarf,1356891542 +174475,98809,fantasy,1356891545 +174475,98809,fantasy world,1356891549 +174475,98809,magic,1356891553 +174475,98809,music,1356891557 +174475,98809,soundtrack,1356891560 +174475,98809,Tolkien,1356891563 +174475,99114,epic,1426361013 +174475,99114,Flashbacks,1426360983 +174475,99114,funny,1426360946 +174475,99114,good soundtrack,1426360980 +174475,99114,Great performances,1426360963 +174475,99114,Humour,1426360988 +174475,99114,Leonardo DiCaprio,1426360946 +174475,99114,music,1426360995 +174475,99114,Revenge,1426360953 +174475,99114,Soundtrack,1426360975 +174475,99114,visually appealing,1426360965 +174475,99149,adapted from:book,1367084398 +174475,99149,based on a book,1367084400 +174475,99149,Helena Bonham Carter,1367084408 +174475,99149,musical,1367084414 +174475,99149,revolution,1367084418 +174475,99149,Victor Hugo,1367084424 +174475,100714,beautiful,1425131531 +174475,100714,conversation,1425131540 +174475,100714,Ethan Hawke,1425131526 +174475,100714,Greece,1425131520 +174475,100714,honest,1425131517 +174475,100714,Julie Delpy,1425131519 +174475,100714,marriage,1425131528 +174475,100714,philosophical,1425131542 +174475,100714,phylosophycal,1425131522 +174475,100714,Richard Linklater,1425131535 +174475,100714,romance,1425131537 +174475,100714,talky,1425131523 +174475,100714,unique,1425131538 +174475,105863,acting,1382819100 +174475,105863,mother-son relationship,1382819103 +174475,106489,adapted from:book,1387401765 +174475,106489,author:J. R. R. Tolkein,1387401771 +174475,109487,ambitious,1415744211 +174475,109487,Anne Hathaway,1415744200 +174475,109487,bad dialogue,1415744214 +174475,109487,Christopher Nolan,1415744197 +174475,109487,good science bad science,1415744227 +174475,109487,Matthew McConaughey,1415744203 +174475,109487,Michael Caine,1415744230 +174475,109487,relativity,1415744236 +174475,109487,sounds,1415744238 +174475,109487,space,1415744205 +174475,109487,thought-provoking,1415744240 +174475,109487,time-travel,1415744243 +174475,109487,wormhole,1415744208 +174475,112183,Crazy,1425131650 +174475,112183,Edward Norton,1425131609 +174475,112183,great performances,1425131607 +174475,112183,movie business,1425131639 +174475,112183,psychological,1425131625 +174475,112183,satire,1425131620 +174475,112183,single shot,1425131614 +174475,112183,smart,1425131653 +174475,112183,theater,1425131652 +174475,112290,12 years in the making,1426533779 +174475,112290,Ambitious,1426533773 +174475,112290,coming of age,1426533787 +174475,112290,growing up,1426533769 +174475,112290,realism,1426533767 +174475,112552,education,1438797623 +174475,112552,good acting,1438797616 +174475,112552,greatness,1438797633 +174475,112552,intense,1438797614 +174475,112552,jazz,1438797602 +174475,112552,jazz music,1438797621 +174475,112552,motivation,1438797625 +174475,112552,music,1438797606 +174475,112552,musicians,1438797608 +174475,112552,psychological,1438797617 +174475,112552,Tense,1438797604 +174475,122886,BB-8,1451258959 +174475,122886,feminism,1451258998 +174475,122886,feminist,1451259002 +174475,122886,Harrison Ford,1451258964 +174475,128360,Quentin Tarantino,1452242782 +174477,79132,complicated,1442098781 +174477,79132,thought-provoking,1442098791 +174477,115713,thought provoking,1442098821 +174489,8040,buddy movie,1436748422 +174489,8040,horrible acting,1436748422 +174489,8040,screwball comedy,1436748422 +174500,4023,Nicolas Cage,1225381710 +174515,72171,Doesn't take itself seriously,1304481946 +174515,72171,Hysterical,1304481907 +174518,318,Morgan Freeman,1441002909 +174518,356,bittersweet,1441003509 +174518,356,classic,1441003499 +174518,527,thought-provoking,1441003119 +174518,1961,heartwarming,1441003559 +174518,2959,Brad Pitt,1441002991 +174518,2959,dark comedy,1441003013 +174518,2959,Edward Norton,1441002988 +174518,69757,quirky,1441003291 +174518,74458,Leonardo DiCaprio,1441003167 +174518,74458,psychological,1441003169 +174518,74458,twist ending,1441003172 +174518,81591,dark,1441003391 +174518,81591,Natalie Portman,1441003388 +174518,109487,sci-fi,1441003215 +174518,109487,space,1441003235 +174518,109487,thought-provoking,1441003226 +174518,112552,jazz,1441003355 +174518,112552,music,1441003359 +174518,112552,Tense,1441003369 +174524,6714,assassins,1387080826 +174524,6714,cute girls,1387080828 +174524,6714,Kick-Butt Women,1387080834 +174524,6714,martial arts,1387080843 +174524,6714,sword fight,1387080840 +174524,27865,assassin,1308176105 +174524,27865,Dark hero,1308176120 +174524,27865,female warriors,1308176107 +174524,27865,lead woman,1308231242 +174524,27865,teenage girl,1308176111 +174524,33437,Jet Li,1308176453 +174524,33437,psychology,1308176456 +174524,53161,asylum,1308178176 +174524,53161,mental hospital,1308178185 +174524,53161,mental illness,1308178164 +174524,53827,Dissociative identity disorder,1309124934 +174524,53827,mental illness,1309124968 +174524,54999,Clive Owen,1308249898 +174524,59418,abuse,1308232281 +174524,59418,abused children,1308232295 +174524,59418,Ellen Page,1308232299 +174524,66130,autism,1308176165 +174524,66130,fighting,1308176175 +174524,66130,JeeJa Yanin,1308176192 +174524,66130,Kick-Butt Women,1308176177 +174524,66130,lead woman,1308176180 +174524,69574,mental illness,1308595629 +174524,69574,obsessive compulsive disorder,1308595606 +174524,80693,mental illness,1308517474 +174524,86190,assassin,1308261723 +174524,86190,strong female lead,1308261790 +174524,86190,surrealism,1308261727 +174531,112556,mystery,1425172324 +174531,112556,suspence,1425172324 +174531,112556,thriller,1425172324 +174556,36519,cars,1447212249 +174556,36519,Jason Statham,1447212247 +174556,64030,action,1447212267 +174556,64030,cars,1447212268 +174556,64030,Jason Statham,1447212265 +174556,67923,cars,1447212146 +174556,67923,franchise,1447212150 +174556,86644,car chase,1447212217 +174556,86644,cars,1447212209 +174556,86644,Dwayne Johnson,1447212212 +174556,86644,Paul Walker,1447212219 +174556,86644,The Rock,1447212221 +174556,86644,Vin Diesel,1447212214 +174556,87232,Marvel,1447211870 +174556,87232,X-men,1447211859 +174556,89745,The Avengers,1447211888 +174556,102716,action,1447212230 +174556,102716,cars,1447212232 +174556,112852,Action,1447211972 +174556,112852,Great Visuals,1447211975 +174556,112852,Marvel,1447211966 +174556,112852,sci-fi,1447211986 +174556,112852,space,1447211969 +174556,119145,action,1447212109 +174556,119145,spy,1447212105 +174556,122900,Marvel,1447211937 +174556,122900,sci-fi,1447211942 +174556,130634,action,1447212175 +174556,130634,car racing,1447212184 +174556,130634,cars,1447212174 +174556,130634,"Dwayne ""The Rock"" Johnson",1447212191 +174556,130634,Fast Cars,1447212181 +174556,130634,Paul Walker,1447212193 +174556,130634,Vin Diesel,1447212195 +174577,4102,not as good as Delirious...still pretty funny,1138986212 +174577,35836,About 2 hours too long,1139094670 +174607,89745,product placement,1343394975 +174615,318,classic,1421775323 +174615,318,morgan freeman,1421775323 +174615,318,prison,1421775323 +174616,19,Jim Carrey,1259972317 +174616,32,original,1368803611 +174616,39,Netflix Finland,1358805995 +174616,50,Netflix Finland,1418328065 +174616,97,disturbing,1259965806 +174616,97,social commentary,1259965808 +174616,101,Luke Wilson,1331995621 +174616,101,owen wilson,1331995643 +174616,161,Netflix Finland,1358806014 +174616,204,action,1368803916 +174616,231,Jim Carrey,1259972355 +174616,247,surreal,1259965798 +174616,247,surrealism,1259965801 +174616,256,Arnold Schwarzenegger,1259972434 +174616,256,pregnant man,1259972437 +174616,288,road trip,1259965735 +174616,288,satire,1259965737 +174616,292,Netflix Finland,1358805956 +174616,296,storytelling,1368803751 +174616,344,Jim Carrey,1259972321 +174616,356,Tom Hanks,1259972519 +174616,485,Arnold Schwarzenegger,1259972673 +174616,495,jus+san,1356814769 +174616,527,jus+san,1312740200 +174616,541,androids,1246822907 +174616,541,cyberpunk,1246822890 +174616,541,dystopia,1246822888 +174616,541,existentialism,1246822893 +174616,541,Harrison Ford,1246822903 +174616,541,jus+san,1312739219 +174616,541,Philip K. Dick,1246822876 +174616,551,jus+san,1312740327 +174616,733,Netflix Finland,1358805820 +174616,737,Nudity (Topless),1261350549 +174616,762,Nudity (Topless - Notable),1259972573 +174616,778,Ewan McGregor,1253550484 +174616,778,jus+san,1312740216 +174616,778,Nudity (Full Frontal - Notable),1253550510 +174616,778,social commentary,1253550526 +174616,784,Jim Carrey,1259972373 +174616,788,Eddie Murphy,1259972393 +174616,804,relationships,1368803972 +174616,858,Al Pacino,1255796653 +174616,858,atmospheric,1255796656 +174616,858,based on a book,1255796663 +174616,858,great acting,1368804090 +174616,858,jus+san,1312739413 +174616,858,melancholy,1255796672 +174616,858,Nudity (Topless),1255796676 +174616,902,Netflix Finland,1358714735 +174616,1027,Christian Slater,1267479651 +174616,1027,Kevin Costner,1267479661 +174616,1044,anthony hopkins,1286105102 +174616,1073,Netflix Finland,1358805900 +174616,1080,satire,1259966086 +174616,1089,original,1368803611 +174616,1090,Charlie Sheen,1301335387 +174616,1090,Netflix Finland,1428266527 +174616,1172,mentor,1368803678 +174616,1173,Nudity (Topless - Notable),1259966263 +174616,1175,dark comedy,1259966227 +174616,1175,dystopia,1259966230 +174616,1175,weird,1368804012 +174616,1176,melancholy,1259965623 +174616,1193,jus+san,1312740153 +174616,1197,Netflix Finland,1358805855 +174616,1201,American Civil War,1246823264 +174616,1201,Clint Eastwood,1259965606 +174616,1201,complex characters,1246823271 +174616,1201,humorous,1246823276 +174616,1201,jus+san,1312739239 +174616,1201,spaghetti western,1246823291 +174616,1206,jus+san,1312739358 +174616,1208,Dark,1253456655 +174616,1208,Nudity (Topless),1253456649 +174616,1208,surreal,1253456638 +174616,1211,Netflix Finland,1358714954 +174616,1220,jus+san,1312740252 +174616,1221,jus+san,1312740274 +174616,1222,jus+san,1312740081 +174616,1232,existentialism,1259965669 +174616,1255,cult classic,1368804111 +174616,1265,Netflix Finland,1358805879 +174616,1296,Netflix Finland,1358714010 +174616,1298,surreal,1259965707 +174616,1307,relationships,1368803972 +174616,1370,bad sequel,1350332597 +174616,1370,Renny Harlin,1350332601 +174616,1464,atmospheric,1246823153 +174616,1464,disturbing,1246823158 +174616,1464,jus+san,1312739282 +174616,1464,nonlinear,1246823195 +174616,1464,Nudity (Topless - Notable),1246823176 +174616,1464,Nudity (Topless),1246823179 +174616,1464,strange,1246823187 +174616,1464,Surreal,1246823191 +174616,1483,disturbing,1259966255 +174616,1517,parody,1259972452 +174616,1552,action,1368803916 +174616,1554,jus+san,1312740169 +174616,1639,relationships,1368803972 +174616,1653,dystopia,1259966167 +174616,1704,mentor,1368803678 +174616,1704,Netflix Finland,1358805970 +174616,1722,action,1368803916 +174616,1884,Johnny Depp,1259966186 +174616,1918,Chris Rock,1269822140 +174616,1918,comedy,1269822137 +174616,1921,black and white,1246823090 +174616,1921,existentialism,1246823098 +174616,1921,hallucinatory,1246823104 +174616,1921,mathematics,1246823113 +174616,1921,mental illness,1246823118 +174616,1921,paranoid,1246823124 +174616,1923,Ben Stiller,1259972485 +174616,1952,loneliness,1368803820 +174616,1991,horror,1368804163 +174616,2001,Nudity (Topless),1269537648 +174616,2004,Joe Dante,1259972346 +174616,2023,jus+san,1312741425 +174616,2193,George Lucas,1253469401 +174616,2193,good versus evil,1253469381 +174616,2193,Joanne Whalley,1253469427 +174616,2231,Netflix Finland,1358715382 +174616,2313,jus+san,1312740544 +174616,2315,horror,1368804163 +174616,2371,comedy,1368803717 +174616,2391,Netflix Finland,1358806345 +174616,2401,Netflix Finland,1358797662 +174616,2420,mentor,1368803678 +174616,2460,horror,1368804163 +174616,2683,parody,1259972448 +174616,2701,Will Smith,1259972556 +174616,2762,great ending,1368804217 +174616,2797,Tom Hanks,1259972376 +174616,2858,great acting,1368804090 +174616,2862,jus+san,1312740955 +174616,2916,Arnold Schwarzenegger,1364079702 +174616,2916,cyberpunk,1364079699 +174616,2916,Philip K. Dick,1364079732 +174616,2931,hallucinatory,1280254931 +174616,2959,dark comedy,1259965828 +174616,2959,jus+san,1312739405 +174616,2966,road trip,1259965955 +174616,2985,dystopia,1325929616 +174616,2985,social commentary,1325929616 +174616,2997,surreal,1259965874 +174616,2997,surrealism,1259965872 +174616,3018,horror,1368804163 +174616,3020,Netflix Finland,1358806207 +174616,3062,Netflix Finland,1358798286 +174616,3160,jus+san,1312739448 +174616,3168,road trip,1259966209 +174616,3221,jus+san,1312741328 +174616,3262,Nudity (Topless - Notable),1259965918 +174616,3262,surreal,1259965925 +174616,3271,Beautiful Woman,1359667030 +174616,3271,Netflix Finland,1359666950 +174616,3272,Harvey Keitel,1356814151 +174616,3272,Netflix Finland,1358797687 +174616,3285,Leonardo DiCaprio,1263767249 +174616,3285,Nudity (Topless),1263767222 +174616,3285,utopia,1263767231 +174616,3294,jus+san,1312741343 +174616,3415,jus+san,1330544794 +174616,3421,comedy,1368803717 +174616,3498,Nudity (Topless),1259966106 +174616,3560,jus+san,1356814859 +174616,3698,Arnold Schwarzenegger,1254059648 +174616,3698,bad jokes,1254059682 +174616,3698,Dystopia,1254059657 +174616,3704,crappy sequel,1268090632 +174616,3704,Tina Turner,1268090646 +174616,3726,jus+san,1312740512 +174616,3752,Jim Carrey,1259972417 +174616,3831,jus+san,1312741663 +174616,3949,addiction,1246823018 +174616,3949,based on a book,1246823015 +174616,3949,dark,1246823023 +174616,3949,depressing,1246823020 +174616,3949,drug abuse,1246823031 +174616,3949,drugs,1246823035 +174616,3949,jus+san,1312739293 +174616,3949,Nudity (Full Frontal - Notable),1246823044 +174616,3949,Nudity (Full Frontal),1246823052 +174616,3949,prostitution,1246823058 +174616,3949,psychology,1246823061 +174616,3949,sex,1246823069 +174616,3996,jus+san,1312740641 +174616,4011,Brad Pitt,1259965965 +174616,4015,Ashton Kutcher,1259972188 +174616,4015,comedy,1259972200 +174616,4015,crazy guy from american pie,1259972210 +174616,4015,Seann William Scott,1259972180 +174616,4015,silly,1259972228 +174616,4015,stupid,1259972223 +174616,4085,comedy,1368803717 +174616,4226,storytelling,1368803751 +174616,4246,Renée Zellweger,1266949116 +174616,4251,jus+san,1312740934 +174616,4369,cars,1285970354 +174616,4369,Vin Diesel,1285970353 +174616,4558,Arnold Schwarzenegger,1259972479 +174616,4776,Netflix Finland,1358714159 +174616,4848,jus+san,1312740126 +174616,4848,nonlinear,1259966070 +174616,4848,surreal,1259966067 +174616,4848,surrealism,1259966065 +174616,4878,jus+san,1312740413 +174616,4957,Netflix Finland,1358797592 +174616,4963,jus+san,1312740341 +174616,4973,surreal,1259965902 +174616,4995,jus+san,1312739342 +174616,5031,jus+san,1312741520 +174616,5147,dreamlike,1259965648 +174616,5152,family bonds,1358115341 +174616,5152,Mel Gibson,1358115346 +174616,5152,Netflix Finland,1358797552 +174616,5152,patriotic,1358115352 +174616,5152,patriotism,1358115350 +174616,5152,pro america,1358115356 +174616,5152,pro military,1358115358 +174616,5219,Milla Jovovich,1269646186 +174616,5219,Nudity (Full Frontal - Brief),1269646197 +174616,5377,jus+san,1312740230 +174616,5388,Robin Williams,1319293537 +174616,5452,family,1368804196 +174616,5459,Will Smith,1259972409 +174616,5515,jus+san,1312739498 +174616,5526,jus+san,1312739610 +174616,5608,jus+san,1312740060 +174616,5618,jus+san,1312739521 +174616,5669,documentary,1259972693 +174616,5690,jus+san,1312739548 +174616,5816,jus+san,1312740435 +174616,5840,jus+san,1312740528 +174616,5853,jus+san,1312740447 +174616,5954,Edward Norton,1298824554 +174616,5954,Philip Seymour Hoffman,1298824450 +174616,5956,Cameron Diaz,1259964834 +174616,5956,Leonardo DiCaprio,1259964836 +174616,5956,Nudity (Topless - Brief),1259964775 +174616,5956,Nudity (Topless),1259964780 +174616,5956,violent,1259964785 +174616,6016,based on a true story,1259966276 +174616,6021,Netflix Finland,1358806525 +174616,6214,Nudity (Full Frontal - Notable),1259965778 +174616,6214,Nudity (Full Frontal),1259965775 +174616,6242,jus+san,1312740499 +174616,6250,Morgan Freeman,1362935877 +174616,6250,pointless,1362935880 +174616,6250,Stephen King,1362935887 +174616,6297,Henry Winkler,1322317038 +174616,6297,Hollywood,1322316867 +174616,6433,jus+san,1357167550 +174616,6539,Johnny Depp,1264407302 +174616,6539,sword fight,1264407309 +174616,6784,Led Zeppelin,1297881776 +174616,6787,story,1368804264 +174616,6803,jus+san,1312740595 +174616,6858,jus+san,1312741556 +174616,6867,loneliness,1259965662 +174616,6874,jus+san,1312740293 +174616,6909,jus+san,1312740655 +174616,6942,jus+san,1312740575 +174616,6947,Russell Crowe,1323457157 +174616,6957,Netflix Finland,1387747835 +174616,6975,disturbing,1300562102 +174616,7004,Arnold Schwarzenegger,1259972430 +174616,7008,Nudity (Full Frontal - Notable),1259966125 +174616,7022,satire,1259965886 +174616,7024,jus+san,1312740368 +174616,7044,Laura Dern,1281805995 +174616,7044,Nicolas Cage,1281805997 +174616,7044,Nudity (Topless - Notable),1281806002 +174616,7044,Nudity (Topless),1281806008 +174616,7044,Willem Dafoe,1281805982 +174616,7076,car chase,1254764308 +174616,7151,scarlett johansson,1263311949 +174616,7151,visually appealing,1263311952 +174616,7156,Netflix Finland,1358715439 +174616,7234,circus,1246822954 +174616,7234,melancholy,1246822946 +174616,7234,old classic,1246822989 +174616,7234,Oscar (Best Foreign Language Film),1246822983 +174616,7234,sentimental,1246822949 +174616,7285,drama,1312646610 +174616,7307,Jennifer Jason Leigh,1259972957 +174616,7307,Nudity (Full Frontal - Notable),1259972950 +174616,7307,Nudity (Full Frontal),1259972947 +174616,7317,not funny,1263065352 +174616,7317,not funny at all,1263065352 +174616,7317,stupidity,1263065352 +174616,7325,Ben Stiller,1284300406 +174616,7360,Nudity (Topless - Brief),1268155842 +174616,7361,Netflix Finland,1358715644 +174616,7371,disturbing,1259965631 +174616,7371,jus+san,1312739257 +174616,7438,jus+san,1312739434 +174616,7502,jus+san,1312739665 +174616,7802,jus+san,1312740385 +174616,7951,David Cronenberg,1254671888 +174616,7959,jus+san,1312740622 +174616,7981,Netflix Finland,1363606684 +174616,8012,childhood,1246823213 +174616,8012,dreams,1246823218 +174616,8012,friendship,1246823223 +174616,8012,Japan,1246823227 +174616,8012,road movie,1246823231 +174616,8012,road trip,1246823234 +174616,8012,surreal,1246823245 +174616,8012,Takeshi Kitano,1259965592 +174616,8035,jus+san,1312740467 +174616,8154,Netflix Finland,1358715329 +174616,8270,jus+san,1312740109 +174616,8361,catastrophe,1246822863 +174616,8361,unrealistic,1246822861 +174616,8368,jus+san,1312740561 +174616,8604,Marion Cotillard,1267486700 +174616,8604,Nudity (Topless - Notable),1267486684 +174616,8622,Netflix Finland,1369593696 +174616,8622,social commentary,1369593719 +174616,8623,Steve Martin,1259972500 +174616,8641,comedy,1368803717 +174616,8645,Netflix Finland,1358713927 +174616,8798,atmospheric,1332268799 +174616,8798,Jamie Foxx,1332268792 +174616,8861,Milla Jovovich,1269646157 +174616,8861,Nudity (Topless),1269646160 +174616,8950,jus+san,1312739442 +174616,26003,Poland,1259965721 +174616,26228,jus+san,1312740096 +174616,26693,jus+san,1312741475 +174616,26947,Netflix Finland,1358806931 +174616,27397,friendship,1259965766 +174616,27397,jus+san,1312739426 +174616,27416,jus+san,1312741490 +174616,27563,jus+san,1312741750 +174616,27731,jus+san,1312740481 +174616,27773,disturbing,1259965712 +174616,27773,twist ending,1259965715 +174616,27802,Netflix Finland,1363606693 +174616,27834,brother-brother relationship,1259965699 +174616,27834,road trip,1259965702 +174616,27838,drama,1315063581 +174616,27838,sadness,1315063606 +174616,27873,mental illness,1259966114 +174616,27904,jus+san,1312740187 +174616,27904,surreal,1259966008 +174616,27904,surrealism,1259966005 +174616,30749,Netflix Finland,1358715464 +174616,30793,jus+san,1312740943 +174616,30812,Netflix Finland,1358714199 +174616,30848,interesting characters,1263424954 +174616,30848,John Travolta,1263424957 +174616,30848,Scarlett Johansson,1263424962 +174616,31364,jus+san,1312740692 +174616,31658,jus+san,1312739539 +174616,31689,Netflix Finland,1358797730 +174616,32196,Netflix Finland,1365975000 +174616,32587,jus+san,1312739506 +174616,32587,storytelling,1368803751 +174616,32735,jus+san,1312741404 +174616,32892,jus+san,1330544817 +174616,33166,Netflix Finland,1358715977 +174616,33834,Asia Argento,1311169689 +174616,33834,idiotic,1311169702 +174616,34072,beautifully filmed,1283709156 +174616,34072,documentary,1283709161 +174616,34811,Netflix Finland,1358806938 +174616,36517,Netflix Finland,1358713797 +174616,36519,Netflix Finland,1358797504 +174616,36529,Netflix Finland,1358715354 +174616,37380,Rosamund Pike,1297549079 +174616,37729,jus+san,1312739681 +174616,38159,loneliness,1259965983 +174616,38886,Netflix Finland,1358713965 +174616,39446,jus+san,1312740607 +174616,40148,Netflix Finland,1365950313 +174616,40732,stupid monsters,1281708211 +174616,40732,stylized,1281708218 +174616,40732,tense,1281708237 +174616,40732,twist ending,1281708215 +174616,40815,jus+san,1312740428 +174616,41285,Netflix Finland,1358713875 +174616,44204,jus+san,1312741733 +174616,44665,Netflix Finland,1358797530 +174616,44694,Netflix Finland,1358715313 +174616,45081,boring,1358712849 +174616,45081,Netflix Finland,1358797480 +174616,45722,Johnny Depp,1264407325 +174616,45950,Netflix Finland,1369594127 +174616,45991,jus+san,1312741581 +174616,46322,jus+san,1312741783 +174616,46578,dark comedy,1331572629 +174616,46578,road trip,1331572642 +174616,46578,social commentary,1331572638 +174616,46723,Nudity (Full Frontal - Notable),1259966298 +174616,46974,Nicolas Cage,1259966326 +174616,47446,Nudity (Full Frontal),1259966077 +174616,48043,atmospheric,1246823307 +174616,48043,death,1246823309 +174616,48043,dreamlike,1246823313 +174616,48043,hallucinatory,1246823319 +174616,48043,immortality,1246823331 +174616,48043,jus+san,1312739268 +174616,48043,mythology,1246823335 +174616,48043,visually appealing,1246823340 +174616,48142,Scarlett Johansson,1263500023 +174616,48394,jus+san,1312740310 +174616,48516,corruption,1263681535 +174616,48516,Jack Nicholson,1263681527 +174616,48516,Leonardo DiCaprio,1263681530 +174616,48516,Matt Damon,1263681538 +174616,48516,undercover cop,1263681542 +174616,48774,Netflix Finland,1358797572 +174616,48997,jus+san,1312740355 +174616,49902,jus+san,1312740920 +174616,49932,jus+san,1312741442 +174616,49961,cate blanchett,1323017638 +174616,49961,manipulation,1323017654 +174616,50068,weak plot,1300554707 +174616,50442,Netflix Finland,1365865547 +174616,50477,surreal,1284213023 +174616,51380,jus+san,1312741460 +174616,51545,Netflix Finland,1358806954 +174616,52042,Netflix Finland,1358714214 +174616,52458,jus+san,1312741313 +174616,52806,jus+san,1312741765 +174616,53519,car chase,1259966234 +174616,53519,jus+san,1312739697 +174616,53972,hackers,1337378402 +174616,53972,unrealistic action,1337378385 +174616,53972,weak plot,1337378388 +174616,54001,jus+san,1332093693 +174616,55247,Netflix Finland,1358714645 +174616,55442,Netflix Finland,1358714504 +174616,55820,dark,1301208868 +174616,55820,Javier Bardem,1301208846 +174616,56145,jus+san,1312740669 +174616,57669,Netflix Finland,1358715265 +174616,57843,Netflix Finland,1365792107 +174616,58295,Jason Statham,1312634797 +174616,58295,Notable Nudity,1312634801 +174616,58295,Nudity (Topless),1312634805 +174616,58295,small time criminals,1312634810 +174616,58297,Netflix Finland,1359666872 +174616,58303,Netflix Finland,1358714249 +174616,58376,Netflix Finland,1369593485 +174616,59105,Netflix Finland,1358797710 +174616,59105,unnecessary,1356788574 +174616,59126,Bill Mahel,1369568304 +174616,59126,Documentary,1369568314 +174616,59126,Netflix Finland,1369568307 +174616,59126,not funny,1369568335 +174616,59126,stupidity,1369568327 +174616,59126,unfunny,1369568331 +174616,59129,net,1414066404 +174616,59129,Netflix Finland,1414066490 +174616,60069,Netflix Finland,1358797610 +174616,61240,Netflix Finland,1358715046 +174616,61248,cars with weapons,1400357249 +174616,61248,Jason Statham,1400357258 +174616,61248,video game like,1400357265 +174616,63072,Netflix Finland,1358797750 +174616,63082,Netflix Finland,1398972758 +174616,64575,Netflix Finland,1358714076 +174616,64614,Clint Eastwood,1389042464 +174616,64839,jus+san,1312739135 +174616,64839,loneliness,1368803820 +174616,67073,Netflix Finland,1359666717 +174616,68157,black comedy,1312830099 +174616,68157,great soundtrack,1312830104 +174616,68157,satire,1312830112 +174616,68237,dystopia,1311538537 +174616,68237,jus+san,1312739456 +174616,68237,plot twist,1311538543 +174616,68237,soundtrack,1311538593 +174616,68347,Netflix Finland,1359159605 +174616,68554,jus+san,1312740975 +174616,68843,boring,1365797264 +174616,68843,Netflix Finland,1365797255 +174616,68843,no nudity,1365797275 +174616,69134,jus+san,1312739642 +174616,69275,Jenny Skavlan,1304275102 +174616,69275,ridiculous,1304275112 +174616,70728,Netflix Finland,1365769563 +174616,71033,Netflix Finland,1358714436 +174616,71462,Netflix Finland,1371316852 +174616,72405,Netflix Finland,1414189569 +174616,73017,mystery,1322413502 +174616,73813,Netflix Finland,1369568417 +174616,74484,Netflix Finland,1365858566 +174616,74484,ridiculous characters,1365858582 +174616,74789,Anne Hathaway,1361740522 +174616,74789,Johnny Depp,1361740529 +174616,76251,Netflix Finland,1416082217 +174616,76738,jus+san,1312741537 +174616,77427,Netflix Finland,1358797816 +174616,77455,Netflix Finland,1358715093 +174616,78349,Netflix Finland,1365964693 +174616,78836,jus+san,1312741361 +174616,78836,too long,1322316647 +174616,79132,jus+san,1319228893 +174616,79695,Arnold Schwarzenegger,1360440166 +174616,79695,boring,1360440211 +174616,79695,dialogue,1360440195 +174616,79695,Jet Li,1360440172 +174616,79695,Netflix Finland,1360440202 +174616,79695,plot,1360440181 +174616,79695,Story,1360440184 +174616,79695,Sylvester Stallone,1360440176 +174616,81591,jus+san,1323445306 +174616,83134,Netflix Finland,1416073028 +174616,83613,Boring,1330359780 +174616,83613,very boring,1330359790 +174616,86320,jus+san,1338638202 +174616,88125,Netflix Finland,1384537448 +174616,89074,Netflix Finland,1358797777 +174616,91485,Arnold Schwarzenegger,1371316952 +174616,91485,boring,1371316959 +174616,91485,Chuck Norris,1371316955 +174616,91485,Dolph Lundgren,1371316963 +174616,91485,Netflix Finland,1371316940 +174616,91485,not funny,1371316969 +174616,91529,Netflix Finland,1371326765 +174616,91542,Netflix Finland,1358797644 +174616,91927,Netflix Finland,1371316909 +174616,91976,characters,1387141960 +174616,91976,man vs. nature,1387141953 +174616,91976,silly,1387141948 +174616,91976,unrealistic,1387141941 +174616,91976,wolves are evil,1387141945 +174616,92259,Netflix Finland,1416081141 +174616,93805,Netflix Finland,1358797797 +174616,98087,Netflix Finland,1414008772 +174616,98973,Netflix Finland,1371316868 +174616,101891,Netflix Finland,1365874194 +174616,101891,Rodney Mullen,1365874206 +174616,104841,Netflix Finland,1413056943 +174616,104841,sandra bullock,1413056610 +174621,85179,anime,1432053827 +174621,98491,short,1432053835 +174637,380,seen more than once,1154195322 +174637,2762,ghosts,1147578364 +174637,36517,moving inspiring spiritual,1147578258 +174640,2005,adventure,1282919358 +174640,2005,funny classic,1282919351 +174640,2005,treasure hunt,1282919360 +174640,2193,fantasy,1282919256 +174640,2193,George Lucas,1282919254 +174640,2193,Saturn Award (Best Costumes),1282919266 +174640,2193,sword and sorcery,1282919269 +174640,2414,Sherlock Holmes,1282919329 +174640,2414,Steven Spielberg,1282919321 +174653,260,sci-fi,1436247111 +174653,260,space adventure,1436247119 +174653,112556,mindfuck,1439928759 +174653,112556,unpredictable,1439928761 +174661,247,love,1343962019 +174661,247,murder,1343961999 +174663,1732,Coen Brothers,1353196784 +174663,1732,comedy,1353196805 +174663,1732,dark comedy,1353196786 +174663,1732,marijuana,1353196788 +174663,1732,violence,1353196793 +174663,48774,apocalypse,1353196381 +174663,48774,atmospheric,1353196366 +174663,48774,dystopia,1353196363 +174663,48774,Nudity (Topless),1353196386 +174663,48774,sci-fi,1353196370 +174663,48774,survival,1353196368 +174663,48774,violence,1353196372 +174663,48774,visually appealing,1353196384 +174663,56782,Daniel Day-Lewis,1353196405 +174663,56782,western,1353196412 +174663,56788,based on a true story,1353196294 +174663,56788,Good dialogue,1353196289 +174663,56788,Philip Seymour Hoffman,1353196282 +174681,296,Dialogue,1337184364 +174688,50,Kevin Spacey,1158002974 +174688,7076,Steve McQueen,1158062738 +174701,51935,see more than once,1176036317 +174711,2501,inspirational,1428848070 +174711,2501,true story,1428848073 +174711,69529,earth,1428848175 +174711,69529,nature,1428848175 +174711,69529,nature wildlife,1428848175 +174711,80463,based on a true story,1428848272 +174711,80463,college,1428848246 +174711,80463,facebook,1428848250 +174711,80463,hacking,1428848252 +174711,80463,social network,1428848269 +174711,80463,software developers,1428848258 +174711,80463,true story,1428848280 +174711,109487,Christopher Nolan,1428848016 +174785,6,realistic action,1453060874 +174785,296,dark comedy,1453060573 +174785,296,multiple storylines,1453060576 +174785,296,nonlinear,1453060574 +174785,1089,dark comedy,1453060085 +174785,1089,nonlinear,1453060082 +174785,1279,multiple storylines,1453060225 +174785,2959,psychology,1453060668 +174785,2959,twist ending,1453060666 +174785,3504,journalism,1453063183 +174785,4011,british,1453060368 +174785,4011,comedy,1453060366 +174785,4011,cynical,1453060372 +174785,4011,dark comedy,1453060371 +174785,4011,Great dialogue,1453060374 +174785,4011,guy ritchie,1453060365 +174785,4011,multiple storylines,1453060370 +174785,4011,twist ending,1453060363 +174785,4262,organized crime,1453060298 +174785,4874,intellectual,1453059968 +174785,4963,heist,1453060208 +174785,7265,erotic,1453062623 +174785,53123,good music,1453059058 +174785,53123,musicians,1453059053 +174785,55814,based on a true story,1453059672 +174785,57669,black comedy,1453058996 +174785,57669,british comedy,1453059000 +174785,57669,dark comedy,1453058994 +174785,64993,melancholic,1453059107 +174785,88129,atmospheric,1453058953 +174785,88129,car chase,1453058959 +174785,88129,cars,1453058967 +174785,88129,great soundtrack,1453058965 +174785,88129,soundtrack,1453058960 +174785,106920,psychology,1453063662 +174785,110586,black comedy,1453064100 +174785,110586,Ireland,1453064099 +174785,131724,investigative journalism,1453187186 +174785,138036,humour,1453065673 +174785,138036,stylish,1453065675 +174785,150868,polish,1453059495 +174788,79132,dreams,1452344332 +174788,79132,fantasy,1452344319 +174788,79132,time relationships,1452344356 +174788,109487,sci-fi,1452344342 +174788,109487,space,1452344337 +174788,109487,time paradox,1452344348 +174790,296,Interesting new way of film,1137215118 +174790,356,Great drama,1137214750 +174790,358,Wakeup call,1137214783 +174790,508,Wonderfull story about what happened in the mid 80's,1137215116 +174790,590,Beautifull places. wonderfull story,1137214738 +174790,671,Hillarious comedy,1137214901 +174790,802,interesting concept,1137215119 +174790,912,and characters,1137214684 +174790,912,excellent story,1137214684 +174790,1033,Touching story of friendship,1137214771 +174848,1293,insipiring,1450676322 +174848,51884,memorable,1450676305 +174893,6709,Antonio Banderas,1241381445 +174893,6709,Danny Trejo,1241381448 +174893,6709,Eva Mendes,1241381441 +174893,6709,Johnny Depp,1241381450 +174893,6709,Mickey Rourke,1241381456 +174893,6709,one of the best i've seen,1241381454 +174893,6709,Salma Hayek,1241381432 +174893,6709,violence,1241381460 +174893,54736,explosions,1223325946 +174893,54736,middle east,1223325948 +174893,54736,terrorism,1223325938 +174894,253,Brad Pitt,1153335406 +174894,253,Kirsten Dunst,1153335421 +174894,500,Funny as hell,1140989364 +174894,1438,catastrophe,1162601014 +174894,2006,boring,1163515844 +174894,2268,court,1156463031 +174894,3408,inspired by a real-life person,1174940568 +174894,3408,Strong Women,1174940564 +174894,3535,hilarity,1155595517 +174894,3535,insanity,1155595510 +174894,3535,violence,1155595514 +174894,4011,gypsy accent,1140483855 +174894,4239,drugs,1154955545 +174894,4310,World War II,1163515923 +174894,4973,Paris,1154734448 +174894,4973,romance,1154734432 +174894,5010,war,1160687147 +174894,5016,Julianne Moore,1162601174 +174894,5574,Good action,1141481744 +174894,5785,never want to see,1161442100 +174894,5785,simply: why???,1161442090 +174894,5992,Julianne Moore,1155596613 +174894,5992,Nicole Kidman,1155596616 +174894,5995,Adrien Brody,1166127788 +174894,5995,Holocaust,1166127795 +174894,5995,World War II,1166127796 +174894,7154,Julia Roberts,1182037222 +174894,7154,made me cry,1182037218 +174894,7154,Strong Women,1182037225 +174894,7451,seen more than once,1167849247 +174894,7451,suprisingly clever,1167849244 +174894,8527,Clive Owen,1150671718 +174894,8527,Jonathan Rhys Meyers,1150671716 +174894,8533,great ending,1140380444 +174894,8533,The most romantic,1154955594 +174894,8645,drogas,1154640401 +174894,8870,awful,1140380418 +174894,8973,Almodóvar,1175563627 +174894,8981,disturbing,1172362162 +174894,30848,interesting characters,1165951160 +174894,30848,must see,1165951171 +174894,31435,Very cool.,1140380484 +174894,32019,tragically bad,1141481505 +174894,33794,Christian Bale,1161596838 +174894,33794,dark,1153756323 +174894,33903,good soundtrack,1163515748 +174894,33903,revolution,1163515752 +174894,34150,nothing special,1140380425 +174894,34162,decent,1145650064 +174894,35836,dumb,1140380410 +174894,36525,Good Romantic Comedies,1149381253 +174894,36527,mathematics,1174940106 +174894,36529,people kill people,1155596750 +174894,37382,Great. A lot of action.,1153756176 +174894,39449,suprisingly funny,1148389765 +174894,40583,complicated,1153011614 +174894,40614,disturbing,1177212510 +174894,40614,infidelity,1177212506 +174894,40614,predictable,1177212513 +174894,40815,best of the series so far,1140362712 +174894,40819,drug abuse,1196376281 +174894,40819,Reece Witherspoon,1196376289 +174894,41285,non-hollywood ending,1157208599 +174894,41285,Woody Allen,1157208589 +174894,41573,mulroney and wilson are great as bros,1145650509 +174894,42018,England,1162601147 +174894,42018,Theater,1157315616 +174894,42018,World War II,1162601149 +174894,42418,Pocahontas,1158443425 +174894,42728,medieval,1157974149 +174894,43556,Naval story interests me,1154297385 +174894,44204,unforgetable,1196376017 +174894,45447,Paul Bettany,1148231681 +174894,45499,watch the credits,1150581060 +174894,45720,fashion,1160687191 +174894,45722,Comedy,1153659918 +174894,45722,Johnny Depp,1153659910 +174894,45950,environment,1175957507 +174894,45950,global warming,1175957517 +174894,45950,politics,1175957510 +174894,46530,superhero,1154479981 +174894,46530,well done with new cast,1154479976 +174894,48394,disturbing,1184068942 +174894,48394,violence,1184068954 +174894,48780,Amazing!,1163497801 +174894,48780,Christian Bale,1163497771 +174894,48780,Hugh Jackman,1163497820 +174894,48780,magic,1163497823 +174894,48780,Michael Caine,1163497775 +174894,49272,cars,1166388293 +174894,49272,James Bond,1166388288 +174894,49272,poker,1166388304 +174894,49278,sci-fi,1182611013 +174894,49314,What Happens To Batman When He Loses The Wayne Fortune,1182718572 +174894,49530,Don't forget to see,1168693697 +174894,49530,Leonardo DiCaprio,1168693740 +174894,49530,Potential Oscar Nom,1168693712 +174894,51084,nice laughs,1193574664 +174894,51540,Mark Ruffalo,1181408996 +174894,51540,Too long,1181408985 +174894,51662,blood,1175563335 +174894,51662,blood and guts,1175563342 +174894,52604,ryan gosling!!!,1179527789 +174894,53972,action packed,1186361508 +174894,53972,bruce willis,1186361504 +174894,55052,Keira Knightley,1202937723 +174894,56367,Ellen Page,1203459900 +174894,56367,Jennifer Garner,1203459904 +174894,56757,Depp & Burton,1202774309 +174894,56757,Johnny Depp,1202774303 +174894,56782,greed,1204469111 +174894,58803,strong start weak finish,1213648703 +174896,47,Brad Pitt,1299775535 +174896,47,Christianity,1299775538 +174896,47,horror,1299775529 +174896,47,Morgan Freeman,1299775521 +174896,198,cyberpunk,1403369091 +174896,198,Science Fiction,1403369105 +174896,1215,black comedy,1299781992 +174896,1215,campy,1299781971 +174896,1215,Cult classic,1299781966 +174896,1215,humorous,1299781965 +174896,1215,satirical,1299781977 +174896,1215,zombie,1299781984 +174896,1278,Gene Wilder,1300025511 +174896,1748,dystopia,1319912359 +174896,1748,memory,1319912370 +174896,1748,sci-fi,1319912363 +174896,1748,steampunk,1319912375 +174896,2021,different from book,1299942061 +174896,2021,poor adaption,1299942086 +174896,2021,Sting,1299942069 +174896,2496,Brendan Fraser,1300020930 +174896,2496,nuclear bunker,1300020963 +174896,2501,engineering,1299782195 +174896,2501,hope,1299782218 +174896,2788,British,1299782087 +174896,2788,British Humor,1299782092 +174896,2788,MontyPython,1299782099 +174896,3125,Graham Greene,1307831320 +174896,3441,invasion,1318187457 +174896,3752,Jim Carrey,1318113996 +174896,3752,sex related humorism,1318113992 +174896,4720,Nicole Kidman,1299775618 +174896,4720,religion,1299775622 +174896,4720,surprise ending,1299775609 +174896,4720,twist ending,1299775614 +174896,5072,androids,1300026238 +174896,5072,tezuka,1300026227 +174896,5072,visually appealing,1300026227 +174896,5294,insanity,1299775575 +174896,5294,mission from God,1299775567 +174896,5463,dragons,1322332553 +174896,7118,alternate world,1310062961 +174896,7371,Long,1403369321 +174896,7802,cult film,1299788307 +174896,7802,hope,1299788356 +174896,7919,realistic japanese,1304283537 +174896,7919,Takashi Shimura,1304283507 +174896,7919,Toshirô Mifune,1304283495 +174896,8040,the dying swan,1315001587 +174896,8040,trivial,1315001603 +174896,8644,android(s)/cyborg(s),1322332349 +174896,8644,Isaac Asimov,1322332353 +174896,8644,Will Smith,1322332344 +174896,33004,based on book,1299788613 +174896,33004,comedy,1299788593 +174896,33004,english,1299788606 +174896,33004,post-apocalyptic,1299788589 +174896,33004,sci-fi,1299788597 +174896,33004,witty,1299788602 +174896,33004,Zooey Deschanel,1299788579 +174896,45499,Ellen Page,1300020192 +174896,45499,Hugh Jackman,1300020166 +174896,47997,dystopia,1318113349 +174896,48516,Leonardo DiCaprio,1313538280 +174896,48516,Matt Damon,1313538313 +174896,48780,Christian Bale,1299775487 +174896,48780,Hugh Jackman,1299775485 +174896,48780,steampunk,1299775492 +174896,49530,Jennifer Connelly,1321302818 +174896,49530,Leonardo DiCaprio,1321302816 +174896,49910,based on a true story,1317315922 +174896,53996,childish,1299789085 +174896,53996,silly,1299789105 +174896,56174,Will Smith,1322332610 +174896,56775,errors,1315610816 +174896,56775,Nicolas Cage,1315610782 +174896,56775,trivial,1315610802 +174896,57910,castration,1299786483 +174896,57910,chopped penis,1299786487 +174896,62644,social experiment,1403369235 +174896,68237,dystopia,1299942161 +174896,68237,Good A.I.,1299942151 +174896,68319,superpower,1300021114 +174896,72641,based on a true story,1317315749 +174896,72641,No drama,1317315759 +174896,73321,Bible,1322332749 +174896,73321,Christianity,1322332780 +174896,73321,Denzel Washington,1322332748 +174896,73321,Gary Oldman,1322332762 +174896,78105,clueless,1321397013 +174896,78105,Jake Gyllenhaal,1321397000 +174896,78105,parkour,1321396991 +174896,78105,trivial,1321397018 +174896,79091,minions,1299878873 +174896,79139,Jay Baruchel,1321104827 +174896,79139,Nicolas Cage,1321104815 +174896,79139,Other movies quotes,1321104891 +174896,79139,predictable,1321104845 +174896,83132,Anime,1319390264 +174896,83132,detail,1319390299 +174896,83132,simple plot,1319390287 +174896,83132,soundtrack,1319390311 +174896,83132,Studio Ghibli,1319390266 +174896,84944,boring,1317224689 +174896,84944,trivial,1317224674 +174896,84954,Philip K. Dick,1309040374 +174896,84954,superficial,1309040464 +174896,84954,trivial,1309040638 +174896,87529,dissapointing,1315430892 +174896,90866,boring,1403369502 +174896,97938,God's existance,1403369425 +174896,97938,religion,1403369372 +174896,103253,dystopia,1403368227 +174896,103253,internal coherence,1403368202 +174896,103253,Jodie Foster,1403368233 +174896,103253,plot holes,1403368215 +174914,413,f,1189107759 +174914,1441,f,1189107759 +174914,2125,f,1189107773 +174914,2423,f,1189107772 +174914,2428,f,1189107773 +174914,2951,f,1189107762 +174914,3450,f,1189107774 +174914,6373,f,1189107760 +174914,8798,f,1189107761 +174919,347,BDSM,1279132787 +174919,390,hallucinatory,1279132289 +174919,390,lesbian character,1279132286 +174919,390,quotable,1279132276 +174919,390,raunchy,1279132280 +174919,390,Russ Meyer,1279132269 +174919,390,sexual,1279132282 +174919,390,trashy,1279132284 +174919,481,bleak,1279133954 +174919,481,creepy,1279133962 +174919,481,disturbing,1279133956 +174919,481,Juliette Lewis,1279133958 +174919,481,serial killer,1279133949 +174919,481,ultra-violence,1279133951 +174919,1261,black comedy,1279132621 +174919,1261,cult classic,1279132641 +174919,1261,cult film,1279132638 +174919,1261,dark humor,1279132636 +174919,1261,horror,1279132633 +174919,1261,humorous,1279132630 +174919,1261,zombie,1279132626 +174919,1261,zombies,1279132624 +174919,2159,serial killer,1279132746 +174919,2337,david bowie,1279133267 +174919,2337,dreamlike,1279133286 +174919,2337,Ewan McGregor,1279133284 +174919,2337,glam rock,1279133280 +174919,2337,hallucinatory,1279133273 +174919,2337,Jonathan Rhys Meyers,1279133277 +174919,2337,music,1279133270 +174919,2337,Toni Collette,1279133275 +174919,3221,Peter Greenaway,1279132225 +174919,4979,Bill Murray,1279132951 +174919,4979,black comedy,1279132949 +174919,4979,dark comedy,1279132946 +174919,4979,great soundtrack,1279132959 +174919,4979,quirky,1279132934 +174919,4979,Wes Anderson,1279132929 +174919,4979,witty,1279132937 +174919,5980,creepy,1279134891 +174919,5980,disturbing,1279134894 +174919,5980,forceful,1279134896 +174919,5980,gruesome,1279134898 +174919,5980,menacing,1279134887 +174919,5980,Olivia Hussey,1279134884 +174919,5980,tense,1279134890 +174919,6940,self mutilation,1279132138 +174919,35347,based on a book,1279131977 +174919,41712,Paddy Considine,1279133386 +174919,41712,Shane Meadows,1279133385 +174919,42213,uplifting,1279134595 +174919,52666,Michael Haneke,1279134116 +174919,55652,Phil Daniels,1279132991 +174919,55652,Ray Winstone,1279132993 +174919,78160,funny,1279092649 +174923,71745,confused pacing,1259473393 +174923,71745,depressing without being uplifting,1259473478 +174928,260,action adventure,1440432644 +174928,260,sci-fi,1440432621 +174928,954,classic B&W,1440433019 +174928,1258,suspense,1440432971 +174947,296,drugs,1432673512 +174947,296,quentin tarantino,1432673512 +174947,296,violence,1432673512 +174947,1276,failure to communicate,1290034374 +174947,1625,want to punch them in the face,1304789755 +174947,2311,slow,1305104678 +174947,2843,pitbull terrier,1290040160 +174947,4226,story,1290031131 +174947,6016,feeling,1290031035 +174947,8874,fun,1290032702 +174947,48744,open mided,1295917905 +174947,55247,eddie vedder,1296233963 +174947,68347,characters,1290030972 +174947,68347,shots,1290030986 +174947,73276,documentary,1290030772 +174947,77191,cheap jokes,1296856224 +174947,79592,bad acting,1290261095 +174947,80126,landscape,1290030715 +174947,80862,facebook,1306798638 +174947,81562,music,1294368536 +174947,81847,singing,1299446734 +174954,2329,clever,1342657002 +174954,2329,Edward Furlong,1342656955 +174954,2329,Edward Norton,1342656863 +174954,2329,emotional,1342656875 +174954,2329,Nazis,1342656905 +174954,2329,Neo-Nazis,1342656900 +174954,2329,prison,1342656923 +174954,2329,racism,1342656884 +174954,2329,skinhead,1342656891 +174954,2959,Brad Pitt,1342994206 +174954,2959,Edward Norton,1342994197 +174954,2959,mental illness,1342994251 +174954,3896,Benicio Del Toro,1342657365 +174954,3896,cult film,1342657411 +174954,3896,Hit Girl,1342657420 +174954,3896,weapon choreography,1342657452 +174954,5617,BDSM,1342994409 +174954,5617,black comedy,1342994418 +174954,5617,controversial,1342994451 +174954,5617,James Spader,1342994460 +174954,5617,Maggie Gyllenhaal,1342994400 +174954,8370,boring,1342995136 +174954,8370,mediocre acting,1342995088 +174954,8370,nothing happens,1342995085 +174954,8370,samurai,1342995100 +174954,27152,Finnish,1342995286 +174988,27156,apocalypse,1364021543 +174988,27156,epic,1364021565 +174988,27156,Hideaki Anno,1364021569 +174988,27156,mental illness,1364021558 +174988,27156,psychology,1364021555 +174988,96737,gore,1389361533 +174988,96737,violence,1389361542 +174988,98961,American propaganda,1363037638 +174988,98961,cinematography,1363037708 +174988,98961,complex morality,1363037650 +174994,260,action,1438463311 +174994,260,thrilling,1438463551 +175003,608,quirky,1175844135 +175036,260,scifi cult,1440647388 +175036,260,space adventure,1440647399 +175043,778,dark comedy,1236964684 +175043,1213,dark comedy,1236964909 +175089,410,Silly,1154925677 +175089,1923,hilarious,1154925664 +175102,27773,twist ending,1448220031 +175105,4963,heist,1317636339 +175105,6378,heist,1317636334 +175135,296,funny,1424229427 +175135,296,random,1424229427 +175135,296,stylish,1424229427 +175135,99114,bad ass,1424230195 +175154,41617,Even seeing Pricess Diary Breasts can't save this movie,1188142781 +175154,42730,not historically accurate,1137470976 +175154,52644,Nudity (Topless - Brief),1207527600 +175164,27891,german,1432734169 +175164,27891,independent film,1432734169 +175164,27891,tragic hero,1432734169 +175164,106438,religion,1432734099 +175165,60069,animated,1439563281 +175165,60069,pixar,1439563291 +175165,60069,robots,1439563289 +175165,60069,Sci-Fi,1439563295 +175179,527,WWII,1138132390 +175179,1250,WWII,1138132441 +175179,1262,WWII,1138132395 +175179,1272,WWII,1138132444 +175179,2028,WWII,1138132383 +175179,2194,Gangster,1138132342 +175179,2324,WWII,1138132366 +175179,3062,WWII,1138132402 +175179,3555,WWII,1138132451 +175179,5420,WWII,1138132254 +175179,27816,WWII,1138130763 +175182,3831,dt: Grasgeflüster,1151840724 +175182,7150,dt: unzertrennlich,1142172178 +175182,30898,dt: An deiner Schulter,1146851710 +175182,33646,dt: Spiel ohne Regeln,1138310507 +175182,33660,dt: Das Comeback,1142173104 +175182,34336,dt: Frau mit Hund sucht Mann mit Herz,1142172574 +175182,34520,dt: Ein Duke kommt selten allein,1142172944 +175182,36525,dt: Solange du da bist,1146851286 +175182,37477,dt: Cool & Fool,1142172668 +175182,37729,dt: Hochzeit mit einer Leiche,1142172787 +175182,39449,dt: Couchgeflüster,1157558232 +175182,42007,dt: wo die Liebe hinfällt,1143747934 +175189,122882,car chase,1432348510 +175189,122882,practical fx,1432348510 +175189,122882,tom hardy,1432348510 +175201,96606,beautiful,1422293711 +175201,96606,documentary,1422293711 +175201,96606,natural,1422293711 +175209,260,i have bad feeling about this,1433867477 +175209,260,let the force be with you,1433867495 +175210,260,adventure,1430666745 +175210,260,fantasy,1430666745 +175210,260,space,1430666745 +175210,296,colourful,1423683336 +175210,296,non-linear,1423683336 +175210,296,violent,1423683336 +175210,318,gritty,1428080626 +175210,318,hope,1428080626 +175210,318,masterpiece,1428080626 +175210,480,classic,1429478381 +175210,480,popcorn,1429478381 +175210,480,thrilling,1429478381 +175238,5816,alan rickman,1274446586 +175238,5816,harry potter,1274446583 +175238,5957,Hugh Grant,1274446213 +175238,33004,Alan Rickman,1274446569 +175238,74789,3D,1274446384 +175238,74789,Alan Rickman,1274446359 +175238,74789,alternate reality,1274446393 +175238,74789,brutal violence,1274446398 +175238,74789,Depp & Burton,1274446356 +175238,74789,Helena Bonham Carter,1274446352 +175238,74789,Jabberwocky,1274446362 +175238,74789,Lewis Carroll,1274446410 +175238,74789,soundtrack,1274446402 +175238,74789,Tim Burton,1274446389 +175238,74789,visuals,1274446405 +175251,51540,cinematography,1445999458 +175251,51540,crime,1445999456 +175251,51540,detective,1445999429 +175251,51540,investigative journalism,1445999437 +175251,51540,Mystery,1445999461 +175251,51540,serial killer,1445999434 +175251,51540,stylized,1445999453 +175268,36,Abe,1153824883 +175268,36,Ari,1153824883 +175268,36,Knoll,1153824883 +175268,307,Brian,1153825158 +175268,307,Darrin,1153825158 +175268,508,alone,1154000866 +175268,663,Brian,1154000818 +175268,663,Seth,1154000818 +175268,904,alone,1153825073 +175268,908,Kate,1153825044 +175268,913,Kate,1153825005 +175268,923,Abe,1153824770 +175268,923,Ari,1153824770 +175268,923,Knoll,1153824770 +175268,1095,Ari,1153824916 +175268,1147,Darrin,1153824821 +175268,1203,Kate,1153824827 +175268,1217,Brian,1154000883 +175268,1217,Zim,1154000883 +175268,1228,Brian,1153825065 +175268,1228,Zim,1153825065 +175268,1245,alone,1159058991 +175268,1283,alone,1160227656 +175268,1288,alone,1154001033 +175268,1358,Abe,1154000955 +175268,1358,Ari,1154000955 +175268,1358,Knoll,1154000955 +175268,1393,Ari,1154000809 +175268,1411,Brian,1154000778 +175268,1411,Darrin,1154000778 +175268,1584,Alan,1154075329 +175268,1584,Dad,1154075329 +175268,1584,Judy,1154075329 +175268,1584,Mom,1154075329 +175268,1584,Seth,1154075328 +175268,1610,Dad,1154075395 +175268,1635,Abe,1154075408 +175268,1635,Ari,1154075408 +175268,1635,Knoll,1154075408 +175268,1719,Kate,1154001025 +175268,2022,Brian,1154075607 +175268,2022,Zim,1154075607 +175268,2028,alone,1154000907 +175268,2064,alone,1153825080 +175268,2278,alone,1154822930 +175268,2290,Brian,1154001002 +175268,2290,Seth,1154001002 +175268,2329,Pete,1154075211 +175268,2352,Charles,1154075266 +175268,2352,Parzen,1154075266 +175268,2352,Zim,1154075266 +175268,2599,Zim,1154075338 +175268,2693,Kate,1154001056 +175268,3067,Kate,1154001069 +175268,3129,Gmack,1153825125 +175268,3160,Charles,1153824995 +175268,3160,Kobernick,1153824995 +175268,3160,Parzen,1153824995 +175268,3160,Rochkind,1153824995 +175268,3160,Zim,1153824995 +175268,3481,Gigi,1153824961 +175268,3481,Phil,1153824961 +175268,3683,Zim,1154075272 +175268,3812,Brian,1154075348 +175268,3882,Kate,1154075292 +175268,3897,alone,1154001088 +175268,3967,Kate,1153824842 +175268,3996,alone,1153824860 +175268,4014,Kate,1154075306 +175268,4022,Dad,1154075301 +175268,4022,Jen,1154075301 +175268,4022,Mom,1154075301 +175268,4034,Kate,1154001045 +175268,4034,Katie,1154001045 +175268,4034,Tracy,1154001045 +175268,4334,Kate,1153916224 +175268,4334,ScottLemieux,1153916224 +175268,4816,Kate,1154001077 +175268,4816,Stephanie,1154001077 +175268,4979,Eric,1154000898 +175268,4979,Kate,1154000898 +175268,4995,Alan,1154075236 +175268,4995,Dad,1154075236 +175268,4995,Judy,1154075236 +175268,4995,Moira,1154075236 +175268,4995,Mom,1154075236 +175268,4995,Seth,1154075236 +175268,5051,Kate,1154000800 +175268,5418,Kate,1154075278 +175268,5577,alone,1154075417 +175268,5618,Kate,1153824796 +175268,5810,Brookenthal,1153916242 +175268,5820,Dad,1154000986 +175268,5820,Jenny,1154000986 +175268,5820,Mom,1154000986 +175268,5878,Abe,1153825139 +175268,5878,Jennie,1153825139 +175268,5989,alone,1153916005 +175268,5991,Kate,1153916317 +175268,5991,Prudie,1153916317 +175268,5991,Tom,1153916317 +175268,6270,Brian,1153824900 +175268,6270,Seth,1153824900 +175268,6331,Kate,1153825098 +175268,6643,Gmack,1153824806 +175268,6711,Kate,1154000842 +175268,6867,Kate,1153916162 +175268,6936,Dad,1154075379 +175268,6936,Jen,1154075379 +175268,6936,Kate,1154075379 +175268,6936,Mom,1154075379 +175268,7090,Kate,1153824939 +175268,7099,Horst,1153825030 +175268,7323,Kate,1154000758 +175268,7325,Lisa,1154001015 +175268,8228,Kate,1153825018 +175268,8636,Erin,1154000972 +175268,8636,Horst,1154000972 +175268,8636,Kate,1154000972 +175268,8641,alone,1159417416 +175268,8665,Kate,1154075284 +175268,8784,Kate,1154000747 +175268,8785,djwrecommended seewithoutkate,1165518321 +175268,8949,Kate,1154000941 +175268,8949,Pat,1154000941 +175268,8961,Kate,1154000793 +175268,30810,Abe,1154000824 +175268,45720,alone,1163175475 +175290,3685,Mafia,1443912671 +175318,62203,bloody,1242837382 +175318,62203,gorno,1242837382 +175318,62203,lesbian subtext,1242837382 +175318,62203,martyrdom,1242837382 +175331,5269,Haneke,1359280271 +175331,5269,teacher student relationship,1359280267 +175331,97923,alcoholism,1360445458 +175331,97923,pilot,1360445449 +175354,1380,dancing,1300361710 +175406,668,Bengal,1186503065 +175434,39,good looking girls,1426906899 +175434,39,standard romantic comedy,1426906899 +175434,39,very funny,1426906899 +175443,235,Biopic,1142120510 +175443,235,Tim Burton,1142120510 +175443,475,based on true story,1142120534 +175443,475,quite moving,1142120275 +175443,531,fairy tale,1142120345 +175443,778,drugs,1142120619 +175443,778,great soundtrack,1142120619 +175443,2291,beautiful,1142120241 +175443,2291,fairy tale,1142120241 +175443,2291,Gothic,1142120473 +175443,2291,Tim Burton,1142120473 +175443,3081,gothic,1142120591 +175443,3081,Tim Burton,1142120413 +175443,3753,Boring,1142120886 +175443,3753,Not very believable,1142120886 +175443,4027,homerus,1142120297 +175443,5956,Bill The Butcher,1142120694 +175449,356,20th century,1430938423 +175449,356,historical epic,1430938423 +175449,356,tom hanks,1430938423 +175449,81845,Colin Firth,1430938516 +175449,81845,England,1430938495 +175449,81845,royalty,1430938572 +175466,260,space adventure,1443311440 +175493,50,organized crime,1410058174 +175493,318,based on a book,1410058181 +175493,527,based on a true story,1410058195 +175493,608,based on a true story,1410120412 +175493,608,black comedy,1410120408 +175493,608,Coen Brothers,1410120417 +175493,608,dark comedy,1410120411 +175493,608,quirky,1410120420 +175493,724,magic,1410058235 +175493,741,alternate reality,1410120159 +175493,741,based on manga,1410120165 +175493,741,complex,1410120148 +175493,741,cyberpunk,1410120149 +175493,741,philosophical,1410120153 +175493,741,techno-evolution,1410120152 +175493,741,visually appealing,1410120169 +175493,785,comedy,1410058205 +175493,858,organized crime,1410058212 +175493,922,atmospheric,1410058176 +175493,1394,Coen Brothers,1410058201 +175493,1921,surreal,1410118500 +175493,2997,dark comedy,1410058188 +175493,3499,Stephen King,1410118444 +175493,3617,comedy,1410118446 +175493,3949,addiction,1410119828 +175493,3949,atmospheric,1410119830 +175493,3949,based on a book,1410119831 +175493,3949,dark,1410119842 +175493,3949,disturbing,1410119845 +175493,3949,drugs,1410119826 +175493,3949,emotional,1410119852 +175493,3949,social commentary,1410119821 +175493,3949,visually appealing,1410119823 +175493,4011,dark comedy,1410118419 +175493,4878,atmospheric,1410120002 +175493,4878,cult film,1410120026 +175493,4878,philosophy,1410120004 +175493,4878,psychological,1410120005 +175493,4878,quirky,1410120011 +175493,4878,sci-fi,1410120013 +175493,4878,stylized,1410120018 +175493,4878,surreal,1410120009 +175493,4878,thought-provoking,1410120010 +175493,4878,time travel,1410120017 +175493,6016,multiple storylines,1410058185 +175493,7361,psychology,1410117545 +175493,27773,disturbing,1410123769 +175493,27773,hallucinatory,1410123764 +175493,27773,serial killer,1410123769 +175493,27773,stylized,1410123765 +175493,27773,surreal,1410123773 +175493,27773,twist ending,1410123758 +175493,27773,vengeance,1410123772 +175493,49530,journalism,1410118310 +175493,62511,Charlie Kaufman,1410642533 +175493,62511,existential,1410642568 +175493,62511,meta,1410642550 +175493,62511,Meta Referential,1410642544 +175493,62511,Mise en abyme,1410642575 +175493,62511,Philip Seymour Hoffman,1410642540 +175493,62511,philosophy,1410642542 +175493,62511,Schizophrenic,1410642537 +175493,62511,surreal,1410642531 +175493,62511,Theater,1410642572 +175493,62511,thought-provoking,1410642545 +175493,68848,Adrien Brody,1410120120 +175493,68848,funny,1410120128 +175493,68848,interesting characters,1410120122 +175493,79132,alternate reality,1410119964 +175493,79132,dreamlike,1410119978 +175493,79132,philosophy,1410119976 +175493,79132,surreal,1410119965 +175493,79132,thought-provoking,1410119967 +175493,79132,twist ending,1410119983 +175493,79132,visually appealing,1410119973 +175493,79357,coming of age,1410120062 +175493,79357,memory,1410120046 +175493,79357,nonlinear,1410120041 +175493,79357,philosophy,1410120049 +175493,79357,sci-fi,1410120044 +175493,79357,storytelling,1410120043 +175493,79357,surreal,1410120042 +175493,79357,thought provoking,1410120051 +175493,79357,time travel,1410120053 +175493,88129,atmospheric,1410120356 +175493,88129,cars,1410120363 +175493,88129,cinematography,1410120354 +175493,88129,crime,1410120364 +175493,88129,Dark,1410120366 +175493,88129,ryan gosling,1410120358 +175493,88129,violence,1410120372 +175493,88129,visually appealing,1410120370 +175493,99917,artistic,1410058228 +175494,72720,Colin Firth,1303930960 +175506,150596,adventure,1452532557 +175506,150596,science-fiction,1452532547 +175537,2019,toshiro mifune,1186347896 +175537,54503,McLovin,1191369683 +175537,61132,Ben Stiller,1243864781 +175537,61132,parody,1243864767 +175537,61132,satire,1243864787 +175537,61132,tom cruise,1243864774 +175537,68358,alternate reality,1243863388 +175537,68358,big budget,1243863454 +175537,68358,future,1243863405 +175537,68358,quick cuts,1243863430 +175537,68358,simon pegg,1243863412 +175537,68358,Star Trek,1243863375 +175538,82088,inspirational,1439486944 +175540,68237,Sam Rockwell,1253253239 +175572,318,honesty,1426265554 +175572,318,penitentiary,1426265554 +175572,318,singleness,1426265554 +175573,260,coming of age,1442709171 +175573,260,good vs evil,1442709166 +175573,260,hero's journey,1442709179 +175573,260,"space epic, science fiction, hero's journey",1442709158 +175585,5941,Comedy,1173121003 +175585,5941,Music,1173120994 +175587,260,Science Fiction,1438469886 +175587,260,Star Wars,1438469896 +175587,5995,drama,1438470272 +175587,5995,historical,1438470272 +175587,5995,oscar winner,1438470272 +175587,5995,world war ii,1438470272 +175592,260,sci-fi,1441172478 +175592,260,space action,1441172486 +175629,750,black and white,1443244479 +175629,750,dark comedy,1443244489 +175629,1206,controversial,1440521663 +175629,1206,violent,1440521653 +175629,1241,cult classic,1440521550 +175629,1241,gore,1440521515 +175629,1241,lawn mower,1440521542 +175629,1884,psychedelic,1440521715 +175629,5618,anime,1443243085 +175629,5618,Japan,1443243098 +175643,85397,love triangle,1319422069 +175643,85397,romance,1319421802 +175669,2291,original,1368503859 +175669,3114,original,1368503859 +175669,33679,Action,1300869271 +175669,33679,Brad Pitt,1300869249 +175669,33679,spies,1300869253 +175669,72998,aliens,1300869498 +175669,72998,beautiful scenery,1300869504 +175669,72998,environmental,1300869507 +175669,81229,Bruce Willis,1300869191 +175669,81229,John Malkovich,1300869197 +175669,81229,Morgan Freeman,1300869211 +175681,1243,absurd,1295244902 +175681,1243,based on a play,1295244906 +175681,1243,dialogue driven,1295244910 +175681,1243,existentialism,1295244909 +175681,1243,Gary Oldman,1295244892 +175681,1243,Shakespeare,1295244907 +175681,1243,smart comedy,1295244899 +175681,1243,witty,1295244897 +175681,3300,anti-hero,1297547790 +175681,3300,futuristic,1297547786 +175681,3300,sci-fi,1297547773 +175681,3300,suspense,1297547777 +175681,3300,vin diesel,1297547798 +175681,8371,shallow plot,1297547850 +175681,52328,beautiful effects,1295244811 +175681,52328,Cillian Murphy,1295244827 +175681,52328,cinematography,1295244812 +175681,52328,psychology,1295244818 +175681,52328,sci-fi,1295244499 +175681,52328,space,1295244823 +175681,79553,choreographic violence,1301266685 +175681,79553,Donnie Yen,1301266678 +175681,79553,martial arts,1301266681 +175681,81158,afghanistan,1298438144 +175681,81158,documentary,1298438139 +175681,81158,military,1298438167 +175681,81158,personal,1298438153 +175681,101878,cheesy,1365748713 +175681,101878,physics,1365748716 +175693,474,Rene Russo,1155940560 +175693,593,Chianti,1155940578 +175693,46530,revival,1155940677 +175695,2594,Alejandro Amenábar,1355284705 +175695,2594,better than the american version,1355284703 +175695,2594,Dark,1355284708 +175695,2594,dreams,1355284710 +175695,2594,mindfuck,1355284714 +175695,2594,Nudity (Topless - Notable),1355284716 +175695,2594,Nudity (Topless),1355284718 +175695,2594,Philip K. Dick (uncredited),1355284724 +175695,2594,psychedelic,1355284728 +175695,2594,psychological,1355284729 +175695,2594,psychology,1355284736 +175695,2594,remade,1355284739 +175695,2594,Sci-Fi,1355284742 +175695,2594,Spain,1355284745 +175695,2594,surreal,1355284746 +175695,2594,Twist ending,1355284733 +175695,2594,unrealistic ending,1355284751 +175695,2594,virtual reality,1355284753 +175695,4738,Brad Anderson,1355287774 +175695,4738,insanity,1355287777 +175695,4738,New York,1355287780 +175695,4738,not a comedy,1355287793 +175695,4738,on disc,1355287795 +175695,4738,relationship,1355287797 +175695,4738,romance,1355287799 +175695,4738,time travel,1355287772 +175695,7361,bittersweet,1355287146 +175695,7361,Charlie Kaufman,1355287147 +175695,7361,comedy,1355287149 +175695,7361,cult film,1355287152 +175695,7361,dreamlike,1355287154 +175695,7361,fantasy,1355287155 +175695,7361,imdb top 250,1355287157 +175695,7361,Jim Carrey,1355287160 +175695,7361,memory,1355287163 +175695,7361,New York City,1355287166 +175695,7361,nonlinear,1355287168 +175695,7361,philosophy,1355287169 +175695,7361,quirky,1355287178 +175695,7361,romance,1355287182 +175695,7361,sci-fi,1355287186 +175695,7361,surreal,1355287188 +175695,7361,surrealism,1355287189 +175695,7361,thought-provoking,1355287191 +175695,68954,adventure,1405897284 +175695,68954,animation,1405897286 +175695,68954,bittersweet,1405897290 +175695,68954,comedy,1405897292 +175695,68954,computer animation,1405897294 +175695,68954,depressing,1405897278 +175695,68954,disney,1405897296 +175695,68954,dogs,1405897298 +175695,68954,drama,1405897306 +175695,68954,dreams,1405897308 +175695,68954,emotional,1405897309 +175695,68954,father-son relationship,1405897311 +175695,68954,friendship,1405897315 +175695,68954,funny,1405897317 +175695,68954,love,1405897318 +175695,68954,Pixar,1405897282 +175695,68954,romance,1405897323 +175695,68954,romantic,1405897325 +175695,68954,South America,1405897330 +175695,68954,talking animals,1405897332 +175695,71535,Bill Murray,1347724382 +175695,71535,clever,1347724388 +175695,71535,dark comedy,1347724392 +175695,71535,dark humor,1347724394 +175695,71535,funny,1347724396 +175695,71535,gore,1347724398 +175695,71535,guns,1347724399 +175695,71535,hollywood,1347724402 +175695,71535,horror,1347724403 +175695,71535,IMDB Top 250,1347724410 +175695,71535,parody,1347724412 +175695,71535,post-apocalyptic,1347724414 +175695,71535,quotable,1347724429 +175695,71535,road trip,1347724415 +175695,71535,teen,1347724416 +175695,71535,violence,1347724419 +175695,71535,witty,1347724420 +175695,71535,zombies,1347724422 +175695,79357,beautiful photography,1355284612 +175695,79357,cinematography,1355284614 +175695,79357,coming of age,1355284619 +175695,79357,confusing,1355284622 +175695,79357,divorce,1355284624 +175695,79357,flashbacks,1355284626 +175695,79357,immortality,1355284628 +175695,79357,love affair,1355284629 +175695,79357,nonlinear,1355284631 +175695,79357,nostalgia,1355284633 +175695,79357,Nudity (Topless),1355284635 +175695,79357,philosophy,1355284637 +175695,79357,plot,1355284638 +175695,79357,romance,1355284641 +175695,79357,sci-fi,1355284642 +175695,79357,soundtrack,1355284643 +175695,79357,surreal,1355284645 +175695,79357,thought provoking,1355284648 +175695,79357,time travel,1355284649 +175695,79357,too long,1355284651 +175695,96496,better than expected,1351808737 +175695,96496,Joe Flanigan,1351808739 +175695,96496,predictable,1351808735 +175706,56174,apocalypse,1242584415 +175706,56174,based on a book,1242584427 +175706,56174,horror,1242584524 +175706,56174,post-apocalyptic,1242584386 +175706,56174,Will Smith,1242584398 +175706,57368,alien monster,1242584163 +175706,57368,city under attack,1242584113 +175706,57368,mass death,1242584134 +175706,57368,sci-fi,1242584182 +175706,60684,Adaptation,1242544256 +175706,60684,CG animation,1242544288 +175706,60684,comic book,1242544262 +175706,60684,sci-fi,1242544278 +175706,64497,apocolyptic,1242584666 +175706,64497,Below R,1242584674 +175706,64497,first contact,1242584657 +175706,64497,Keanu Reeves,1242584649 +175706,64969,funny,1242586738 +175706,64969,Jim carrey,1242585094 +175706,65802,stupid,1242584467 +175706,65802,unfunny,1242584472 +175706,67197,Nicolas Cage,1242544128 +175706,67197,sci-fi,1242544125 +175706,67197,thought-provoking,1242544164 +175706,68319,action,1242543934 +175706,68319,cgi,1242543926 +175706,68319,exciting,1242543948 +175706,68319,funny,1242544021 +175706,68319,hugh jackman,1242544035 +175706,68319,Ryan Reynolds,1242544101 +175706,68319,sci-fi,1242544083 +175706,77667,Stupid as Hell,1284850542 +175727,260,space adventure,1443280978 +175750,260,magic,1435933401 +175750,260,space,1435933416 +175750,115617,animation,1435933578 +175750,115617,disney,1435933578 +175750,115617,technology,1435933578 +175752,260,Cult,1432226797 +175752,260,sci-fi,1432226807 +175773,296,Mafia,1184560788 +175773,4641,thora birch,1211962724 +175773,59118,British,1231950203 +175773,61742,football,1223406019 +175774,260,epic,1442436568 +175774,260,geeky,1442436579 +175774,260,George Lucas,1442436573 +175774,260,sci-fi,1442436551 +175823,910,men in drag,1142740881 +175823,1302,baseball,1142740718 +175823,1302,if you build it they will come,1142740722 +175823,2966,brothers,1142740878 +175823,2966,lawn mower,1142740880 +175823,2966,road trip,1142740877 +175823,8874,spoof,1142740701 +175838,260,interstellar war,1437932850 +175838,260,space adventure,1437932835 +175852,1884,gonzo,1150320469 +175875,318,classic,1442173958 +175875,318,friendship,1442173928 +175875,318,prison escape,1442173935 +175876,260,fantasy,1437761686 +175881,231,stupid,1143198150 +175934,66618,andy lau,1425788831 +175934,66618,hong kong,1425788831 +175934,66618,rene liu,1425788831 +175934,102481,owen wilson,1416989086 +175934,102481,vince vaughn,1416989078 +175956,79132,Intelligent scifi,1442246880 +175956,116797,stretegic,1442246892 +175988,64614,cast,1331054229 +175988,64614,character development,1331054229 +175988,64614,morality,1331054229 +176061,4979,black comeedy,1270606466 +176061,4979,owen wilson,1270606466 +176061,4979,wes anderson,1270606466 +176061,55269,spirtitual journey,1270606429 +176061,55269,wes anderson,1270606429 +176062,260,Action,1439507498 +176062,260,Sci-fi,1439507483 +176062,85438,adapted from:book,1440030703 +176062,85438,historical romance,1440030758 +176062,85438,Jane Austen,1440030735 +176113,44,videogame,1367968786 +176113,172,future,1367968803 +176113,172,futuristic,1367968623 +176113,172,technology,1367968499 +176113,296,drugs,1420580833 +176113,296,mobster,1420580833 +176113,296,quentin tarantino,1420580833 +176113,318,powerful ending,1367968550 +176113,356,comedy,1431289797 +176113,356,drama,1431289797 +176113,356,history,1431289797 +176113,480,effects,1367968745 +176113,628,Edward Norton,1357445021 +176113,780,alien,1367968362 +176113,1193,powerful ending,1367968550 +176113,1240,man versus machine,1367968762 +176113,1253,science fiction,1367968314 +176113,1608,lone hero,1367968475 +176113,1653,futuristic,1367968623 +176113,1653,science fiction,1367968314 +176113,1653,technology,1367968499 +176113,1693,based on a true story,1367968841 +176113,2297,metaphysics,1367968882 +176113,2366,effects,1367968745 +176113,2571,artificial intelligence,1323974002 +176113,2571,effects,1367968745 +176113,2571,philosophical,1323974056 +176113,2571,philosophy,1323974008 +176113,2571,sci-fi,1323974022 +176113,2571,thought-provoking,1323974052 +176113,2943,french,1367968677 +176113,2985,future,1367968803 +176113,2997,metaphysics,1367968882 +176113,3156,robot,1367968518 +176113,3354,first contact,1367968428 +176113,3354,science fiction,1367968314 +176113,3703,lone hero,1367968475 +176113,3704,lone hero,1367968476 +176113,3949,powerful ending,1367968550 +176113,4367,videogame,1367968786 +176113,4383,french,1367968677 +176113,4446,videogame,1367968786 +176113,4703,french,1367968677 +176113,4973,French,1354506919 +176113,5219,apocalypse,1367968822 +176113,5219,videogame,1367968786 +176113,5445,technology,1367968499 +176113,5502,alien,1367968362 +176113,5690,based on a true story,1353212241 +176113,5782,french,1367968677 +176113,6016,powerful ending,1367968550 +176113,6187,thought-provoking,1357445182 +176113,6365,man versus machine,1367968762 +176113,6365,technology,1367968499 +176113,6502,apocalypse,1367968822 +176113,6537,cyborgs,1367968717 +176113,6537,future,1367968803 +176113,6537,man versus machine,1367968761 +176113,6934,man versus machine,1367968762 +176113,8644,technology,1367968499 +176113,8861,apocalypse,1367968822 +176113,8861,videogame,1367968786 +176113,27660,man versus machine,1367968761 +176113,46855,french,1367968677 +176113,53996,robot,1367968518 +176113,54372,French,1323803003 +176113,60069,robot,1367968518 +176113,65642,paradox,1410075701 +176113,65642,time travel,1410075707 +176113,65642,too predictable,1410075745 +176113,68791,cyborgs,1367968717 +176113,70286,alien,1367968362 +176113,72998,technology,1367968499 +176113,88129,lack of character,1451108656 +176113,88129,little dialogue,1451108632 +176113,88129,slow,1451108624 +176113,94466,social commentary,1451267408 +176113,94466,thought-provoking,1451267399 +176113,97923,alcoholism,1353211436 +176113,97923,Denzel Washington,1353211421 +176113,97923,John Goodman,1353211428 +176113,98056,French,1353212676 +176113,110730,artificial intelligence,1419746117 +176113,110730,poorly thought out ending,1419746085 +176113,110730,predictable,1419746212 +176113,112556,David Fincher,1419314199 +176113,112556,mindfuck,1419314195 +176113,112556,unpredictable,1419314188 +176113,112852,Action,1451266271 +176113,112852,characters with individual goals,1451266334 +176113,112852,humorous,1451266268 +176113,112852,sci-fi,1451266254 +176113,112852,science fiction,1451266279 +176113,115713,artificial intelligence,1432535035 +176113,115713,sci-fi,1432535039 +176113,115713,thought provoking,1432535032 +176113,115713,thriller,1432535050 +176113,119145,comic violence,1451266894 +176113,119145,gratuitous violence,1451266881 +176113,119145,humour,1451266911 +176113,119145,Parody,1451266867 +176113,119145,spy,1451266857 +176113,119145,spy thriller,1451266908 +176113,122882,action,1451266519 +176113,122882,car chase,1451266507 +176113,122882,cars,1451266642 +176113,122882,dystopian,1451266524 +176113,122882,franchise,1451266632 +176113,122882,post apocalyptic,1451266534 +176113,122882,sci-fi,1451266539 +176113,122882,weak dialogue,1451266697 +176113,122900,heist,1451266372 +176113,122900,sci-fi,1451266372 +176113,132480,predictable,1442164656 +176113,149354,Crude,1451786160 +176113,149354,Funny,1451786182 +176113,149354,Party,1451786095 +176113,149354,Relationship,1451786116 +176113,149354,Silly,1451786243 +176151,2763,intelligent thriller,1206533169 +176153,112,india,1143029585 +176170,260,cult classic,1444815487 +176170,260,sci fi,1444815471 +176180,130492,big love,1433252398 +176180,130492,elegant love,1433252398 +176180,130492,good and calm,1433252398 +176205,1088,coming of age,1308078113 +176205,1088,dance,1308078106 +176205,1136,British,1308865743 +176205,1136,Monty Python,1308865746 +176205,1136,satire,1308865736 +176205,1641,british comedy,1428609206 +176205,1641,strippers,1428609186 +176205,1641,working class,1428609187 +176205,1641,yorkshire,1428609191 +176205,1704,Ben Affleck,1314126308 +176205,1704,mathematics,1314126296 +176205,1704,Matt Damon,1314126267 +176205,1704,Robin Williams,1314126272 +176205,1732,dark comedy,1308493292 +176205,2671,British,1342722161 +176205,2671,unrealistic,1342722173 +176205,3791,dance,1308078174 +176205,3791,Kevin Bacon,1308078172 +176205,4027,George Clooney,1308866440 +176205,4823,john cusack,1342722256 +176205,4823,New York City,1342722261 +176205,4823,serendipity,1342722264 +176205,4912,Barbra Streisand,1313690913 +176205,4912,Omar Sharif,1313690766 +176205,5812,1950s,1425242848 +176205,5812,Julianne Moore,1425242841 +176205,6367,60s,1402336864 +176205,6367,Ewan McGregor,1402336847 +176205,6367,feminist,1402336859 +176205,6367,RenÃ?Â?Ã?©e Zellweger,1402336853 +176205,6807,controversial,1308865801 +176205,6807,silly,1308865789 +176205,7320,Dance,1308077826 +176205,7320,latin music,1308078002 +176205,8874,British,1308865864 +176205,8874,parody,1308865855 +176205,8874,Simon Pegg,1308865853 +176205,39183,bittersweet,1308077565 +176205,39183,gay,1425242790 +176205,39183,Heath Ledger,1308077531 +176205,39183,literary adaptation,1308077579 +176205,39183,scenic,1425242797 +176205,39183,sexuality,1308077575 +176205,49286,Jack Black,1307731577 +176205,49286,Jude Law,1307731567 +176205,49286,Kate Winslet,1307731569 +176205,49286,Romance,1307731616 +176205,52202,jane russel,1425235337 +176205,52202,love,1425235337 +176205,52202,mob,1425235337 +176205,52975,1960s,1308077375 +176205,52975,Christopher Walken,1308077385 +176205,52975,dancing,1308077402 +176205,52975,high school,1308077397 +176205,60293,coming of age,1307732672 +176205,60293,hip-hop,1307732687 +176205,60293,new york,1307732701 +176205,60397,Colin Firth,1324409839 +176205,60397,Meryl Streep,1324409640 +176205,60397,Musical,1324409644 +176205,60397,Pierce Brosnan,1324409842 +176205,63876,gay rights,1308077688 +176205,63876,James Franco,1308077684 +176205,63876,politics,1308077669 +176205,63876,Sean Penn,1308077694 +176205,63876,setting:San Francisco,1308077723 +176205,66203,happy ending,1342722399 +176205,66203,Justin Long,1342722342 +176205,69757,Joseph Gordon-Levitt,1425235454 +176205,86882,dialogue,1308598111 +176205,86882,Owen Wilson. Paris. Soundtrack. Marion Cotillard.,1308598111 +176205,86882,Rachel McAdams,1308598111 +176205,87304,Ewan McGregor,1308598274 +176205,88163,Emma Stone,1326917110 +176205,88163,plot twist,1326917113 +176205,88163,Ryan Gosling,1326917108 +176205,88810,based on a book,1313520090 +176205,91658,based on a book,1326917017 +176205,91658,Sweden,1326917035 +176205,92259,emotional,1342722927 +176205,92259,friendship,1342722930 +176205,92259,funny,1342722917 +176205,92259,hilarious,1342722911 +176205,92259,Omar Sy,1342722920 +176205,106918,Ben Stiller,1428524922 +176205,106918,imagination,1428524924 +176205,106918,inspirational,1428524909 +176205,106918,positive thinking,1428524917 +176205,106918,scenic,1428524913 +176205,106918,surreal,1428524919 +176205,106918,travel,1428524905 +176205,112070,fame,1427981569 +176205,112070,julianne moore,1427981569 +176205,112070,revenge,1427981569 +176205,114762,Analeigh Tipton,1425242674 +176205,114762,Miles Teller,1425242657 +176205,114762,romance,1425242687 +176205,114762,sex,1425242734 +176205,114762,unique romantic comedy,1425242731 +176205,116155,British,1433020675 +176205,116155,Eddie Marsan,1433020696 +176205,116155,Loneliness,1433020691 +176205,116155,Philosophical,1433020686 +176205,117881,Alzheimer's disease,1427981625 +176205,117881,great acting,1427981655 +176205,117881,Julianne Moore,1427981632 +176220,26090,comedy,1321336720 +176232,260,fantastic,1444447669 +176232,260,science fiction,1444447650 +176236,65514,action,1428945290 +176236,65514,biographical view,1428945290 +176236,65514,kung fu,1428945290 +176237,5418,consipracy,1407441082 +176237,5418,fast,1407441078 +176237,5418,intelligent,1407441074 +176245,260,classic,1434476425 +176245,260,classic sci-fi,1434476407 +176260,2324,sentimental,1286741168 +176260,78574,characters,1286741100 +176260,78574,cultural authenticity,1286741106 +176260,78893,acting,1286741332 +176260,78893,editing,1286741341 +176260,78893,effects,1286741353 +176260,78893,rushed,1286741357 +176261,3252,Al Pacino,1437342103 +176261,3252,great acting,1437342106 +176261,4720,afterlife,1435845311 +176261,4720,atmospheric,1435845319 +176261,4720,twist ending,1435845303 +176261,5995,historical,1434294197 +176261,5995,World War II,1434294181 +176261,47099,inspirational,1443368970 +176261,47099,Motivation,1443368976 +176261,47099,Will Smith,1443368965 +176261,56339,horror,1435928213 +176261,56339,paranormal,1435928215 +176261,56339,supernatural,1435928221 +176261,56339,twist ending,1435928235 +176261,65261,environmental,1435736124 +176261,65261,mermaid,1435736127 +176261,65261,Studio Ghibli,1435736118 +176261,115617,funny,1434294299 +176261,115617,genius,1434294299 +176261,115617,superhero,1434294299 +176261,134853,funny,1435736024 +176261,134853,Pixar,1435736009 +176261,136536,horror,1435786235 +176275,260,far future,1433249619 +176275,260,good science fictional technology,1433249628 +176305,260,adventure,1437084156 +176305,260,classic,1437084167 +176305,260,Cult,1437084176 +176305,260,EPIC,1437084149 +176305,260,fantasy,1437084144 +176305,260,sci-fi,1437084160 +176305,260,space,1437084153 +176307,26649,less than 300 ratings,1236345702 +176308,61,vigilante,1368049366 +176308,81,gangsters,1368049306 +176308,100,corruption,1368049321 +176308,353,vengeance,1368049089 +176308,362,animals,1368049216 +176308,428,gangster,1368049132 +176308,428,gangsters,1368049305 +176308,1015,animal movie,1368049208 +176308,1015,animals,1368049216 +176308,1089,gangster,1305672570 +176308,1194,weed,1368049160 +176308,1213,gangster,1368049132 +176308,1367,animal movie,1368049207 +176308,1367,animals,1368049216 +176308,1422,conspiracy,1368049292 +176308,1459,conspiracy,1368049292 +176308,1459,political corruption,1368049348 +176308,1466,gangster,1368049132 +176308,1589,political corruption,1368049348 +176308,1617,corruption,1368049320 +176308,1769,realistic action,1368049192 +176308,1785,gangster,1368049132 +176308,1785,gangsters,1368049305 +176308,1884,drug abuse,1368049256 +176308,1884,marijuana,1368049381 +176308,1911,animal movie,1368049207 +176308,1911,animals,1368049216 +176308,2137,animals,1368049216 +176308,2278,realistic action,1368049192 +176308,2353,conspiracy,1368049292 +176308,2384,animal movie,1368049207 +176308,2403,realistic action,1368049192 +176308,2492,fake documentary,1368049334 +176308,3020,vigilantism,1368049395 +176308,3168,marijuana,1368049381 +176308,3334,gangsters,1368049305 +176308,3386,conspiracy,1368049292 +176308,3429,animal movie,1368049207 +176308,3682,vigilante,1368049366 +176308,3682,vigilantism,1368049395 +176308,4011,brad pitt,1305672718 +176308,4011,british humor,1305672718 +176308,4011,guy ritchie,1305672718 +176308,4017,art,1368049241 +176308,4034,drug abuse,1368049256 +176308,4226,complicated plot,1368049275 +176308,4855,vigilante,1368049366 +176308,4855,vigilantism,1368049395 +176308,4957,vigilante,1368049366 +176308,4958,realistic action,1368049192 +176308,5010,realistic action,1368049192 +176308,5464,gangsters,1368049305 +176308,6874,fight,1305673266 +176308,6874,sword,1305673266 +176308,6874,vengeance,1368049089 +176308,7438,fight,1305673331 +176308,7438,revenge,1305673331 +176308,7439,vigilantism,1368049395 +176308,7445,vengeance,1368049089 +176308,8807,weed,1368049160 +176308,25788,gangster,1368049132 +176308,27831,gangster,1368049132 +176308,33615,animals,1368049216 +176308,36529,corruption,1305673393 +176308,36529,weapons,1305673393 +176308,40583,political corruption,1368049348 +176308,42632,vengeance,1368049089 +176308,44191,freedom,1305673461 +176308,44191,revenge,1305673461 +176308,45440,art,1368049241 +176308,60684,dark hero,1368049063 +176308,63062,corruption,1368049320 +176308,68157,Brad Pitt,1305673194 +176308,77455,artist,1305672312 +176308,77455,graffiti,1305672312 +176308,81819,chinese,1305666893 +176308,81819,corruption,1305666893 +176308,81819,daughter,1305666893 +176308,81819,drugs,1305666893 +176308,81819,father,1305666893 +176308,81819,illness,1305666893 +176308,81819,mafia,1305666893 +176308,81845,excellent script,1368049035 +176308,84944,Animals,1305673140 +176308,85020,killer,1305672123 +176322,260,oldie but goodie,1439479359 +176322,260,sci-fi,1439479340 +176354,79863,animal attack,1422230985 +176354,79863,thriller,1422230970 +176369,953,totalmente excelente,1137984271 +176369,2176,já vi james stewart bem melhor,1137984318 +176369,5959,quase conseguiu mas se embolou muito no final,1137984408 +176369,5959,tentou sair do clichê,1137984408 +176369,33660,not as good as Beautiful Mind,1137984455 +176369,41566,phony characters and limited actors,1137618466 +176369,44191,1984,1146710018 +176391,1035,musical,1441905843 +176391,2671,london,1441905908 +176391,2948,james bond,1441905755 +176391,3635,james bond,1441905791 +176391,4246,london,1441905926 +176391,5991,musical,1441905858 +176391,96079,james bond,1441905948 +176391,96079,london,1441905939 +176428,260,space,1438638632 +176428,260,Star Wars,1438638624 +176474,50802,Don't waste your time,1181274570 +176482,260,sci-fi,1441733819 +176482,260,space,1441733833 +176482,1921,mathematics,1441734762 +176482,1921,mindfuck,1441734780 +176485,260,sci-fi,1430609865 +176575,8914,cerebral,1391346341 +176575,8914,complicated plot,1391346330 +176575,8914,disturbing,1391346334 +176575,8914,intellectual,1391346333 +176575,8914,low budget,1391346350 +176575,8914,mindfuck,1391346325 +176575,8914,science,1391346336 +176575,8914,thought-provoking,1391346338 +176575,8914,time travel,1391346327 +176575,71033,Argentina,1411335259 +176575,71033,cinematography,1411335254 +176575,71033,murder,1411335265 +176608,778,drugs,1171607083 +176608,6534,Action,1176643676 +176608,33621,australian,1140139202 +176608,33621,coming of age,1229303038 +176608,34405,firefly,1219300558 +176608,34405,space,1219300535 +176608,58490,1930's,1210578378 +176655,1221,Action,1412286105 +176655,1221,Al Pacino,1412286097 +176725,431,gangsters,1347569133 +176725,648,espionage,1344882691 +176725,850,Saigon,1392332800 +176725,850,violence,1392332801 +176725,910,classic,1309445872 +176725,949,psychology,1343384504 +176725,1213,gangs,1310051248 +176725,1227,gangster,1451855796 +176725,1247,illicit love,1354482911 +176725,1247,Unauthorized love,1354482872 +176725,1305,road movie,1310051959 +176725,1305,stylized,1292835576 +176725,1466,Al Pacino,1310397683 +176725,1466,gangsters,1310397683 +176725,1673,decline,1358719757 +176725,1859,avante garde,1310396993 +176725,1859,intellectual,1310397206 +176725,1859,nihilistic,1311256065 +176725,1900,kids,1328904421 +176725,1945,Marlon Brando,1322340618 +176725,2067,romantic,1327525575 +176725,2067,war,1327525575 +176725,2959,ending,1310051277 +176725,2959,social commentary,1328733609 +176725,2959,twist ending,1328733582 +176725,3089,realism,1310220222 +176725,3089,searching,1310220222 +176725,3160,family crisis,1376162680 +176725,3224,Existentialism,1448053354 +176725,3328,samurai,1392143004 +176725,4034,drugs,1348786260 +176725,4144,music,1310221363 +176725,4334,midlife crisis,1344802843 +176725,4391,Hanoi,1395613353 +176725,4422,death,1322855860 +176725,5120,mystery,1374697065 +176725,5269,Masochism,1366842948 +176725,5269,psychology,1366842948 +176725,5304,Golden Palm,1344803025 +176725,5304,tense,1344803069 +176725,5464,gangs,1333136150 +176725,5526,Existentialism,1444425666 +176725,6008,photography,1311256928 +176725,6016,gangsters,1310221773 +176725,6890,cool,1311859970 +176725,26094,Criterion,1347221394 +176725,26094,meditative,1347221398 +176725,26094,reflective,1347221400 +176725,26350,identity,1447194082 +176725,26350,Identity Crisis,1447194122 +176725,27803,death,1357677867 +176725,27803,hope,1357677867 +176725,27803,romance,1357677867 +176725,27803,Suicide,1357680182 +176725,33166,apartheid,1312213616 +176725,33166,racism,1312213616 +176725,44694,Spain,1311350465 +176725,48165,routines,1373058517 +176725,48972,mental hospital,1352495257 +176725,48972,mental illness,1352495257 +176725,48972,Mental Institution,1352495257 +176725,48972,psychology,1352495178 +176725,50589,sorrow,1410731997 +176725,55069,photography,1311256687 +176725,55442,iran,1311956275 +176725,55442,politics,1311956288 +176725,58554,abuse,1384466709 +176725,58554,bitter ending,1384465653 +176725,58554,violence,1384466709 +176725,63808,high school,1311859853 +176725,63808,realistic,1311859852 +176725,76111,mystery,1289899400 +176725,78836,drugs,1358195292 +176725,78836,nonlinear,1358195283 +176725,81512,death,1310139063 +176725,81819,death,1312097115 +176725,82667,slasher,1343599321 +176725,82667,visually appealing,1343599271 +176725,84116,Poetic,1329945058 +176725,84944,western,1327432271 +176725,85342,narrated,1311782506 +176725,85342,realistic,1311782170 +176725,85342,violence,1311782170 +176725,85574,bitter,1330204596 +176725,85574,dreamlike,1330204596 +176725,85574,teen,1330204596 +176725,85790,roadtrip,1349823442 +176725,86142,sword fight,1328204038 +176725,86320,apocalypse,1328732858 +176725,86320,photography,1328732869 +176725,86320,Resurrection,1328732778 +176725,86320,twist ending,1328733568 +176725,86882,artificial intelligence,1328899426 +176725,86882,Literature,1358968853 +176725,86882,Paris,1328899409 +176725,86884,family dynamics,1328816657 +176725,86884,unfunny,1328816839 +176725,86898,life & death,1328892010 +176725,87004,dance,1327598875 +176725,87234,psychology,1328215152 +176725,87304,love story,1328475107 +176725,88810,feel good movie,1328039178 +176725,89118,identity,1328304076 +176725,89535,hope,1345499045 +176725,89759,courtroom drama,1328305111 +176725,89759,foreign language,1328305150 +176725,89759,lies,1318833850 +176725,89759,modern,1327003864 +176725,89759,photography,1318833850 +176725,89759,realism,1318833850 +176725,89759,realistic,1318833850 +176725,89759,religion,1328305305 +176725,89759,social commentary,1328293332 +176725,89759,veil,1328305222 +176725,89774,brother-brother relationship,1354405246 +176725,89774,Tragedy,1354405246 +176725,89896,Bela Tarr,1345059394 +176725,89896,Jesus Christ,1345059394 +176725,89900,mystery,1342551442 +176725,90057,psychology,1349648416 +176725,90357,Marital problems,1348179311 +176725,90430,Theater,1352195954 +176725,90474,bittersweet,1343250890 +176725,90528,Holocaust,1345326558 +176725,90528,road trip,1345326559 +176725,90528,self discovery,1345326559 +176725,91126,horses,1352289095 +176725,91199,gay romance,1384219702 +176725,91529,fantasy,1357765750 +176725,92243,Sacrifice,1348432203 +176725,92262,cancer,1348868527 +176725,92262,dark comedy,1348868527 +176725,92262,romance,1348868527 +176725,93212,Thief and Cop,1352665557 +176725,93265,family,1359751590 +176725,94126,bitter ending,1350165887 +176725,94126,ending twist,1350165887 +176725,94126,violence,1350078500 +176725,94959,fantasy,1373209037 +176725,95000,AIDS,1347033483 +176725,95000,life & death,1347033510 +176725,96432,gangsters,1357427855 +176725,96432,violence,1357427855 +176725,96610,sci-fi,1370732963 +176725,96664,peace,1393535163 +176725,96664,women,1393535163 +176725,97172,death,1374182676 +176725,97304,thriller,1369508708 +176725,97860,american idiocy,1374790191 +176725,97860,murderer,1374790261 +176725,97913,self-analysis,1371066168 +176725,97938,odyssey,1369608135 +176725,99917,complicated,1392503262 +176725,100017,gay romance,1391724496 +176725,102005,modern living,1393237403 +176725,102792,atheism,1393278686 +176725,102792,nonlinear,1393278686 +176725,102792,religion,1393278686 +176725,102903,surprise ending,1379674350 +176725,103624,twist ending,1394059504 +176725,104841,religion,1391724360 +176725,104841,space,1391724360 +176725,105197,family,1393095584 +176725,105355,bitter ending,1392761346 +176725,105355,bittersweet,1392761346 +176725,105355,bourgeoisie,1392761346 +176725,105355,fine art,1392761346 +176725,105504,Navy,1393414205 +176725,105844,slavery,1393179363 +176725,106204,dark hero,1391556812 +176725,106204,dark side,1391556813 +176725,106204,revenge,1391556812 +176725,106782,drugs,1408744546 +176725,136018,gangster,1451940457 +176725,142386,Cinematography,1448404099 +176725,142386,screenplay,1448404091 +176725,142386,story,1448404069 +176731,260,fantasy,1432710337 +176731,260,space,1432710326 +176767,4902,Guillermo del Toro,1177890656 +176767,48394,imdb top 250,1177890622 +176768,7090,amazing photography,1138639308 +176768,41569,resorts to unnecessary graphical violence,1138639965 +176769,69134,enigmatic,1333211410 +176769,69134,Mental Illness,1333211414 +176769,69134,psychological,1333211407 +176769,69134,religion,1333211420 +176769,69134,weird,1333211422 +176770,260,futuristic,1453320676 +176770,260,sci-fi,1453320671 +176770,541,dystopia,1416708356 +176770,553,cowboys,1453320638 +176770,553,gunfight,1453320636 +176770,553,Western,1453320633 +176770,1771,stephen king,1453232289 +176770,2916,conspiracy,1416708308 +176770,2916,cyberpunk,1416708305 +176770,2916,dystopia,1416708300 +176770,2916,Philip K. Dick,1416708297 +176770,2916,sci-fi,1416708303 +176770,3703,dystopia,1440975133 +176770,3703,post-apocalyptic,1440975129 +176770,5110,cult classic,1430940519 +176770,58485,love,1432836306 +176770,60007,time travel,1416298644 +176770,83664,drugs,1422939318 +176770,83664,marijuana,1422939360 +176770,83664,propaganda,1422939418 +176770,103481,chernobyl,1423856524 +176770,103481,evil corporation,1423856524 +176770,103481,toxic waste,1423856524 +176770,103481,zombies,1423856524 +176770,103487,campy,1428605115 +176770,103487,rave,1428605115 +176770,103487,zombie,1428605115 +176770,106030,zombie,1416352886 +176770,106642,time travel,1416298608 +176770,111759,time loop,1420179257 +176770,115713,artificial intelligence,1448844090 +176770,115713,philosophical,1448844097 +176770,115713,sci-fi,1448844093 +176770,115713,thought provoking,1448844095 +176770,115713,turing test,1448844088 +176770,117192,Doctor Who,1416298602 +176770,117192,time travel,1416298616 +176770,118109,quarantine,1420044839 +176770,118109,survival,1420044843 +176770,118109,zombie,1420044826 +176770,118109,zombies,1420044829 +176770,118256,booze,1430940486 +176770,118256,cheesy,1430940432 +176770,118256,Nudity (Topless),1430940539 +176770,118256,police,1430940429 +176770,118256,werewolf,1430940427 +176770,128975,nudity (topless),1429304896 +176770,128975,sequel,1429304892 +176770,128975,time paradox,1429304890 +176770,128975,time travel,1429304886 +176770,138166,alien,1453093729 +176770,138166,aliens,1453093730 +176770,138166,low budget,1453093736 +176770,151365,low budget,1453320515 +176770,151365,monsters,1453320572 +176770,151365,mutant,1453320546 +176770,151365,space,1453320511 +176770,151365,weasel,1453320588 +176770,151365,worst movie ever,1453320522 +176778,77820,Brendan Fraser,1281237472 +176778,77820,everything,1281237458 +176778,77820,kid,1281237479 +176778,77820,not funny,1281237487 +176778,77820,nothing,1281237497 +176781,370,Comedy,1162911148 +176781,370,Slapstick crap,1162911074 +176781,480,good for a rainy day if there is nothing on the box,1162911129 +176791,1209,Spaghetti Western,1182810649 +176791,4873,dreams,1184299561 +176791,7013,lyrical,1182823439 +176791,26258,atmospheric,1182735653 +176791,33794,good acting,1182206106 +176796,6222,Nudity (Full Frontal - Notable),1282515128 +176797,4262,Al Pacino,1228988179 +176803,551,animation,1378499157 +176803,551,atmospheric,1378499161 +176803,551,great soundtrack,1378499173 +176803,551,stylized,1378499176 +176803,551,surreal,1378499179 +176803,750,apocalypse,1378499315 +176803,750,based on a book,1378499320 +176803,750,black and white,1378499324 +176803,750,British,1378499330 +176803,750,cold war,1378499333 +176803,750,imdb top 250,1378499308 +176803,750,Quirky,1378499384 +176803,750,satire,1378499298 +176803,750,satirical,1378499339 +176803,4973,beautifully filmed,1378499604 +176803,4973,imdb top 250,1378499613 +176803,4973,notable soundtrack,1378499607 +176803,4973,Paris,1378499609 +176803,4973,romance,1378499611 +176803,4973,stylized,1378499600 +176803,5380,based on a play,1378499438 +176803,5380,british,1378499442 +176803,5380,Oscar Wilde,1378499446 +176806,296,classic,1449134326 +176806,2959,violence,1449134314 +176806,48516,Boston,1449134368 +176806,48516,Leonardo DiCaprio,1449134370 +176806,48516,violence,1449134365 +176806,109487,Christopher Nolan,1449134347 +176806,109487,physics,1449134340 +176806,109487,sci-fi,1449134342 +176806,109487,space,1449134343 +176839,260,amazaballs,1435795395 +176855,2858,owned,1201026598 +176875,318,heartwarming,1428337365 +176875,318,hope,1428337360 +176875,318,Morgan Freeman,1428337344 +176875,3198,based on a book,1428337419 +176875,3198,Dustin Hoffman,1428337416 +176875,8340,Clint Eastwood,1428337392 +176896,109487,artificial intelligence,1431423407 +176896,109487,good science,1431423411 +176896,109487,physics,1431423404 +176896,109487,space,1431423399 +176910,110,hero,1420667829 +176910,110,historical,1420667829 +176910,110,romance,1420667829 +176910,380,double life,1422814456 +176910,380,marriage,1422814456 +176910,380,secret agent,1422814456 +176910,780,action,1421361453 +176910,780,aliens invasion,1421361453 +176910,780,sci-fi,1421361453 +176910,2571,action,1422045697 +176910,2571,sci-fi,1422045697 +176910,2571,virtual reality,1422045697 +176912,8969,based on book,1435807370 +176912,34072,narration,1435807283 +176912,34072,poignant,1435807262 +176958,29,steampunk,1211974546 +176958,32,time travel,1211974803 +176958,1556,crappy sequel,1263799793 +176958,1556,Keanu Reeves,1263799795 +176958,1556,plot,1263799804 +176958,1556,Sandra Bullock,1263799819 +176958,1556,sequel,1263799787 +176958,1556,sequel:worse,1263799783 +176958,1556,Stupid as Hell,1263799790 +176958,1921,great soundtrack,1263798969 +176958,1921,mathematics,1263798970 +176958,1921,music,1263798972 +176958,1921,paranoid,1263798976 +176958,1921,stock market,1263798982 +176958,1921,underrated,1263798989 +176958,2167,Badass,1263799171 +176958,2167,Marvel,1263799144 +176958,2167,Sword Fight,1263799236 +176958,2167,vampires,1263799148 +176958,3476,flashbacks,1263799753 +176958,3476,insanity,1263799736 +176958,4878,time travel,1211974814 +176958,5903,bullet ballet,1263799022 +176958,5903,Christian Bale,1263799020 +176958,5903,drugs,1263799085 +176958,5903,dystopia,1263799027 +176958,5903,gun fu,1263799066 +176958,5903,plot,1263799074 +176958,5903,totalitarianism,1263799095 +176958,7254,time travel,1211974834 +176958,26007,based on a book,1263799609 +176958,26007,black and white,1263799584 +176958,26007,old,1263799602 +176958,26007,World War II,1263799618 +176958,26662,Studio Ghibli,1215454245 +176958,37386,A bit stupid,1263799912 +176958,37386,Charlize Theron,1263799870 +176958,37386,heroine in tight suit,1263799884 +176958,37386,Hot Outfit,1263799879 +176958,37386,stylized,1263799931 +176958,56156,game movie,1211974716 +176958,56171,steampunk,1211974519 +176958,56171,talking animals,1211974525 +176958,60684,1980s,1263799370 +176958,60684,alternate history,1263799308 +176958,60684,based on a comic,1263799312 +176958,60684,cold war,1263799315 +176958,60684,Doctor Manhattan,1263799356 +176958,60684,nuclear war,1263799316 +176958,60684,Nudity (Topless),1263799321 +176958,60684,sci-fi,1263799337 +176958,63189,acting,1263799679 +176958,63189,better than expected,1263799666 +176958,63189,Finnish,1263799660 +176958,63189,horror,1263799691 +176958,70286,alternate history,1263799288 +176958,70286,intelligent sci-fi,1263799281 +176958,70286,violence,1263799396 +176958,71156,boring,1268813301 +176958,71156,crazy people,1268813287 +176958,71156,superpowers,1268813287 +176958,71535,Bill Murray,1263798695 +176958,71535,clowns,1263798725 +176958,71535,hot chick,1263798707 +176958,71535,Not enough zombies,1263798666 +176958,71535,post-apocalyptic,1263798690 +176958,72489,blood,1269704569 +176958,72489,dark,1269704597 +176958,72489,extremely gory,1269704604 +176958,72489,martial arts,1269704589 +176958,72489,ninjas,1269704564 +176958,72489,Rain,1269704593 +176958,72489,Shô Kosugi,1269704615 +176958,72998,aliens,1263799545 +176958,72998,cgi,1263799552 +176958,72998,ecology,1263799470 +176958,72998,graphic design,1263799548 +176958,72998,military,1263799511 +176958,72998,Natives,1263799547 +176958,72998,nature vs. civilization,1263799464 +176958,74275,Gay sex,1283713848 +176958,74789,3D,1268813476 +176958,74789,Burton's worst movie,1268813508 +176958,74789,Different from book,1268813369 +176958,74789,Helena Bonham Carter,1268813457 +176958,74789,Johnny Depp,1268813464 +176958,74789,red queen,1268813384 +176968,12,Mel Brooks,1165525176 +176968,32,Terry Gilliam,1165412617 +176968,65,Polly Shore,1165433584 +176968,163,Robert Rodriguez,1165517965 +176968,235,Biopic,1165444475 +176968,235,Oscar (Best Supporting Actor),1165444498 +176968,239,Disney,1165697811 +176968,260,Harrison Ford,1165417467 +176968,260,Highly quotable,1165417572 +176968,282,Jodie Foster,1165523621 +176968,282,Liam Neeson,1165523621 +176968,296,Highly quotable,1165417519 +176968,318,based on a book,1175439881 +176968,318,Morgan Freeman,1175439881 +176968,318,Prison Movie,1175439881 +176968,318,Steven King,1175439881 +176968,318,Tim Robbins,1175439881 +176968,419,Based on a TV show,1165433351 +176968,523,Ashley Judd,1172695734 +176968,546,Bob Hoskins,1165429896 +176968,546,John Leguizamo,1165429896 +176968,551,Tim Burton,1165502115 +176968,552,swashbuckler,1165601284 +176968,552,Tim Curry,1165601284 +176968,581,based on a book,1165444709 +176968,585,based on a TV show,1165433735 +176968,593,Quotable,1165417549 +176968,685,homosexuality,1165503316 +176968,691,Brendan Fraiser,1177931030 +176968,691,Chick Flick,1177931030 +176968,691,Ricki Lake,1177931030 +176968,691,Shirley McClaine,1177931030 +176968,783,Disney,1165520807 +176968,849,Bruce Campbell,1165704154 +176968,898,Cary Grant,1165419280 +176968,898,James Stewart,1165419280 +176968,898,Katherine Hepburn,1165419280 +176968,901,Audrey Hepburn,1165504740 +176968,901,Fred Astaire,1165504740 +176968,905,Clark Gable,1165418898 +176968,906,Angela Lansbury,1165445042 +176968,906,Ingrid Bergman,1165445042 +176968,908,Cary Grant,1173186981 +176968,910,Quotable,1165417557 +176968,913,classic,1165418838 +176968,913,Humphrey Bogart,1165418810 +176968,913,Peter Lorre,1165418810 +176968,915,Audrey Hepburn,1165417497 +176968,915,William Holden,1165417497 +176968,916,Audrey Hepburn,1165443844 +176968,916,classic,1165443844 +176968,916,Gregory Peck,1165443844 +176968,917,Shirley Temple,1165534532 +176968,919,Highly quotable,1165417598 +176968,919,Musical,1165417375 +176968,922,Highly quotable,1165417581 +176968,922,William Holden,1165417455 +176968,923,Highly quotable,1165418921 +176968,931,Gregory Peck,1165444637 +176968,931,Ingrid Bergman,1165444637 +176968,940,Errol Flynn,1165419014 +176968,946,Black comedy,1165417431 +176968,946,Holocaust film,1165417431 +176968,951,Cary Grant,1165412319 +176968,954,James Stewart,1165443324 +176968,955,Cary Grant,1165418940 +176968,955,classic,1165418940 +176968,955,Howard Hawkes,1165418940 +176968,955,Katherine Hepburn,1165418940 +176968,956,Cary Grant,1165504600 +176968,1007,Disney,1165533899 +176968,1017,Disney,1165519953 +176968,1018,Disney,1165601249 +176968,1021,Christopher Lloyd,1165533926 +176968,1023,Disney,1165444949 +176968,1026,Disney,1165524969 +176968,1028,Julie Andrews,1165446301 +176968,1073,Muscial,1165419040 +176968,1073,Quotable,1165419040 +176968,1080,Terry Gilliam,1165447642 +176968,1084,Faye Dunaway,1165444321 +176968,1084,Gene Wilder,1165444320 +176968,1084,Warren Beatty,1165444320 +176968,1089,Highly quotable,1165419132 +176968,1104,Vivian Leigh,1165443574 +176968,1124,Henry Fonda,1165505191 +176968,1124,Jane Fonda,1165505191 +176968,1124,Katherine Hepburn,1165505191 +176968,1136,Highly quotable,1165418733 +176968,1148,Oscar winner,1165419053 +176968,1196,Harrison Ford,1165419097 +176968,1196,Highly quotable,1165419097 +176968,1197,Cult classic,1165419175 +176968,1197,Highly quotable,1165419175 +176968,1198,Harrison Ford,1165417505 +176968,1198,Quotable,1165417540 +176968,1215,Cult classic,1165429289 +176968,1215,Highly quotable,1165429289 +176968,1220,John Landis,1165441594 +176968,1235,Cult Classic,1165412403 +176968,1254,classic,1165419078 +176968,1254,Quotable,1165419078 +176968,1261,Bruce Campbell,1165447151 +176968,1261,Sam Raimi,1165447156 +176968,1267,Frank Sinatra,1165418788 +176968,1270,Highly quotable,1165418985 +176968,1270,Robert Zemeckis,1165418985 +176968,1278,Mel Brooks,1165417351 +176968,1278,Quotable,1165417607 +176968,1281,Chaplin,1165443938 +176968,1283,Gary Cooper,1165443631 +176968,1283,Grace Kelly,1165443631 +176968,1307,Quotable,1165417592 +176968,1321,John Landis,1165446006 +176968,1387,Steven Speilberg,1165447169 +176968,1391,Tim Burton,1165487496 +176968,1394,Cult classic,1165419159 +176968,1456,John Leguizamo,1165430180 +176968,1487,Edward James Olmos,1165618371 +176968,1562,George Clooney,1165431624 +176968,1562,Uma Thurman,1165431624 +176968,1688,Christopher Lloyd,1165519570 +176968,1688,Meg Ryan,1165519570 +176968,1731,Leslie Neilsen,1165431017 +176968,1732,Cult classic,1165429245 +176968,1732,Highly quotable,1165429245 +176968,1772,John Landis,1165433675 +176968,1784,Helen Hunt,1177931096 +176968,1784,Jack Nicholson,1177931096 +176968,1784,James L. Brooks,1177931096 +176968,1882,Matthew Broderick,1165431193 +176968,1884,Johnny Depp,1165520379 +176968,1894,Harrison Ford,1165432606 +176968,1895,Ethan Embry,1165518720 +176968,1895,party,1165518720 +176968,1895,Seth Green,1165518720 +176968,1895,Teen movie,1165518720 +176968,2010,German expressionism,1165418754 +176968,2011,Robert Zemeckis,1165429152 +176968,2012,Robert Zemeckis,1165429172 +176968,2014,Disney,1165697382 +176968,2014,Jodie Foster,1165697382 +176968,2014,John Astin,1165697382 +176968,2015,Disney,1165519771 +176968,2016,Disney,1165703067 +176968,2043,Disney,1165518039 +176968,2052,Disney,1165698281 +176968,2057,Disney,1165520933 +176968,2084,Disney,1165619641 +176968,2087,Disney,1165503212 +176968,2090,Disney,1165534269 +176968,2092,Disney,1165430108 +176968,2093,Based on a book,1165618694 +176968,2099,Disney,1165441354 +176968,2108,Steve Martin,1165505552 +176968,2109,Steve Martin,1165504564 +176968,2134,John Hughes,1165441411 +176968,2144,John Hughes,1165505929 +176968,2153,Based on a TV show,1165431710 +176968,2153,Sean Connery,1165431723 +176968,2153,Uma Thurman,1165431710 +176968,2180,Hitchcock,1165534380 +176968,2180,Julie Andrews,1165534380 +176968,2185,Hitchcock,1165501833 +176968,2202,Hitchcock,1171324052 +176968,2206,Cary Grant,1165445087 +176968,2206,Hitchcock,1165445074 +176968,2227,Hitchcock,1169657455 +176968,2243,Albert Brooks,1173186926 +176968,2243,Holly Hunter,1173186927 +176968,2243,James L. Brooks,1173186927 +176968,2243,William Hurt,1173186927 +176968,2243,working women,1173186927 +176968,2300,Gene Wilder,1165417622 +176968,2300,Mel Brooks,1165417622 +176968,2328,Based on a novel,1165431974 +176968,2338,Slasher,1165431098 +176968,2354,Based on a cartoon,1165432922 +176968,2362,Ed Wood,1165704385 +176968,2366,Fay Wray,1165418829 +176968,2366,Stop-motion special effects,1165418829 +176968,2413,Christopher Lloyd,1165518299 +176968,2428,Robert Rodriguez,1165575522 +176968,2478,Chevy Chase,1165702765 +176968,2478,John Landis,1165702764 +176968,2478,Martin Short,1165702765 +176968,2478,Steve Martin,1165702764 +176968,2502,Cult classic,1165446754 +176968,2566,Disney,1165431441 +176968,2572,Heath Ledger,1165429217 +176968,2572,Julia Stiles,1165429217 +176968,2606,Devin Sawa,1165704622 +176968,2606,Seth Green,1165704622 +176968,2724,Chick Flick,1165432821 +176968,2724,Julia Roberts,1165432821 +176968,2724,Richard Gere,1165432821 +176968,2750,Seth Green,1165446157 +176968,2750,Woody Allen,1165446157 +176968,2828,Based on a cartoon,1165431398 +176968,2828,Brendan Fraiser,1165431398 +176968,2847,Cary Grant,1165444902 +176968,2879,Jackie Chan,1165440570 +176968,2880,Jackie Chan,1165440563 +176968,2895,Jodie Foster,1165701224 +176968,2918,John Hughes,1165434592 +176968,2936,Preston Sturges,1165442910 +176968,2937,Preston Sturges,1165442715 +176968,2939,Marilyn Monroe,1165534436 +176968,2939,William Holden,1165534436 +176968,2987,Robert Zemeckis,1165417399 +176968,3031,Spoof,1165433017 +176968,3072,Cher,1165503969 +176968,3078,Adrian Brody,1165444430 +176968,3078,Ben Foster,1165444430 +176968,3097,James Stewart,1165445208 +176968,3121,Ida Lupino,1165504772 +176968,3159,Disney,1165504705 +176968,3199,Frank Sinatra,1165524224 +176968,3199,Rita Hayworth,1165524224 +176968,3217,Remade,1165501416 +176968,3287,Disney,1165432186 +176968,3306,Chaplin,1165442541 +176968,3333,Lesbian,1165521128 +176968,3363,George Lucas,1165446934 +176968,3365,John Wayne,1165443988 +176968,3392,Rosanne,1165430074 +176968,3421,John Landis,1165441577 +176968,3435,Barbara Stanwyck,1165418873 +176968,3435,Billy Wilder,1165418873 +176968,3438,Based on a cartoon,1165432222 +176968,3439,Based on a cartoon,1165432231 +176968,3451,Katherine Hepburn,1165429332 +176968,3451,Sidney Poitier,1165429332 +176968,3451,Spenser Tracy,1165429332 +176968,3477,Cult classic,1165520209 +176968,3478,Biopic,1165519252 +176968,3529,Jack Nicholson,1165524351 +176968,3529,Jessica Lange,1165524351 +176968,3529,Remake,1165524351 +176968,3559,Buster Keaton,1165501875 +176968,3559,Chaplin,1165501875 +176968,3606,Frank Sinatra,1165501409 +176968,3606,Gene Kelly,1165501409 +176968,3608,Tim Burton,1165504288 +176968,3622,Mel Brooks,1165504879 +176968,3632,Chaplin,1165445009 +176968,3671,Gene Wilder,1165418953 +176968,3671,Highly quotable,1165418953 +176968,3678,drugs,1165448035 +176968,3678,Frank Sinatra,1165448035 +176968,3683,Coen Brothers,1174226679 +176968,3754,Based on a cartoon,1165431753 +176968,3789,Holocaust,1165445065 +176968,3798,Harrison Ford,1165534746 +176968,3872,Elizabeth Taylor,1165502030 +176968,3872,Katherine Hepburn,1165502030 +176968,3929,W.C. Fields,1165444979 +176968,3966,Ida Lupino,1165444988 +176968,4016,Disney,1165505987 +176968,4027,Coen Brothers,1165412590 +176968,4105,Bruce Campbell,1165502417 +176968,4105,Cult classic,1165502417 +176968,4154,based on a cartoon,1165618757 +176968,4154,Disney,1165618757 +176968,4232,Robert Rodriguez,1165608252 +176968,4246,Colin Firth,1170774648 +176968,4246,Hugh Grant,1170774648 +176968,4246,Renee Zellweger,1170774648 +176968,4335,Michael J. Fox,1165522871 +176968,4356,Marilyn Monroe,1165447539 +176968,4357,Marilyn Monroe,1165446025 +176968,4366,Disney,1165533825 +176968,4419,Rock Hudson,1165443245 +176968,4447,Chick Flick,1170695318 +176968,4447,Luke Wilson,1170695318 +176968,4447,Reese Whitherspoon,1170695318 +176968,4467,Terry Gilliam,1165504083 +176968,4489,John Landis,1165518279 +176968,4564,Audrey Hepburn,1165519497 +176968,4564,Holly Hunter,1165519497 +176968,4564,remake,1165519497 +176968,4564,Steven Spielberg,1165519497 +176968,4621,Bruce Willis,1165704878 +176968,4621,John Travolta,1165704878 +176968,4639,Billy Crystal,1165534030 +176968,4639,Julia Roberts,1165534030 +176968,4639,Seth Green,1165534030 +176968,4683,Video games,1165702597 +176968,4705,Crossdressing,1165446268 +176968,4705,Homosexuality,1165446268 +176968,4705,Remade,1165446267 +176968,4732,Filmed in Palmdale,1165433775 +176968,4801,Bette Davis,1165443110 +176968,4802,Cary Grant,1165503186 +176968,4845,Chris Kattan,1165431489 +176968,4920,Bette Davis,1165443774 +176968,4920,Claude Rains,1171324079 +176968,4921,based on a book,1165444418 +176968,4921,Katherine Hepburn,1165444411 +176968,4929,Richard Pryor,1165432155 +176968,4994,Bruce Campbell,1165521654 +176968,4994,Jim Carrey,1165521654 +176968,4994,Martin Landau,1165521654 +176968,5008,Marlene Dietrich,1165412465 +176968,5099,Shirley Temple,1165520706 +176968,5109,Disney,1165432955 +176968,5149,Ronald Reagan,1165532154 +176968,5168,Fred Astaire,1165503573 +176968,5255,Crossdressing,1165432414 +176968,5299,Chick flick,1165434575 +176968,5345,Holocaust,1165503630 +176968,5345,Will Smith,1165503630 +176968,5345,Willem Defoe,1165503630 +176968,5349,Sam Raimi,1165412605 +176968,5419,Based on a cartoon,1165432786 +176968,5434,Barbara Stanwyck,1165444919 +176968,5445,Tom Cruise,1165445555 +176968,5489,Remake,1165444291 +176968,5529,Bruce Campbell,1165432741 +176968,5573,Jason Lee,1165432383 +176968,5611,Heath Ledger,1165697329 +176968,5621,Jackie Chan,1165432091 +176968,5630,Edward Norton,1165506015 +176968,5651,Disney,1165520937 +176968,5685,Coming of Age,1169657569 +176968,5685,Latino/Latina,1169657569 +176968,5787,Remake,1165432081 +176968,5796,Woody Allen,1165532182 +176968,5812,Dennis Quaid,1172056823 +176968,5812,Julianne Moore,1172056823 +176968,5812,Queer Cinema,1172056823 +176968,5836,Cary Grant,1165520796 +176968,5836,Sophia Loren,1165520796 +176968,5873,Kevin Klein,1165520217 +176968,5917,Edward James Olmos,1165525504 +176968,5958,Based on a cartoon,1165431864 +176968,6022,Edward James Olmos,1165445697 +176968,6039,Gene Wilder,1165431886 +176968,6039,Gilda Radner,1165431886 +176968,6117,Crossdressing,1165618811 +176968,6157,Ben Affleck,1165703621 +176968,6157,Kevin Smith,1165703621 +176968,6237,James Stewart,1165503002 +176968,6251,Disney,1165705456 +176968,6405,Disney,1165501425 +176968,6412,James Stewart,1165443270 +176968,6412,Marlene Dietrich,1165443270 +176968,6509,Remake,1165443875 +176968,6533,Barbara Striesand,1165504074 +176968,6533,Madeline Kahn,1165504074 +176968,6533,Screwball Comedy,1165504074 +176968,6539,Quotable,1165419265 +176968,6539,Swashbuckler,1165419265 +176968,6558,John Hughes,1165703585 +176968,6566,Robert Rodriguiz,1165429981 +176968,6625,Christopher Lloyd,1165532226 +176968,6639,Audrey Hepburn,1165444000 +176968,6645,George Lucas,1165503772 +176968,6725,Aerosmith,1165430055 +176968,6725,Alice Cooper,1165430055 +176968,6725,Bee Gees,1165430055 +176968,6725,Peter Frampton,1165430055 +176968,6725,Steve Martin,1165430055 +176968,6755,Bruce Campbell,1165446478 +176968,6798,1930s,1165518765 +176968,6798,Jodie Foster,1165518765 +176968,6798,Scott Baio,1165518765 +176968,6837,Remake,1165444819 +176968,6850,Steve Martin,1165521394 +176968,6896,Holocaust,1165443551 +176968,7052,Katherine Hepburn,1165446326 +176968,7061,Bette Davis,1165444565 +176968,7074,Buster Keaton,1165442562 +176968,7078,Bette Davis,1165444394 +176968,7079,Based on a novel,1165445324 +176968,7081,Mae West,1165520899 +176968,7082,Cary Grant,1165446918 +176968,7212,Cary Grant,1165447827 +176968,7217,Humphrey Bogart,1165445404 +176968,7222,Cult classic,1165432998 +176968,7253,Clara Bow,1165447004 +176968,7290,Harold Lloyd,1165412396 +176968,7361,Elijah Wood,1165443499 +176968,7361,Jim Carrey,1165443499 +176968,7361,Kate Winslet,1165443499 +176968,7361,Kristen Dunst,1165443499 +176968,7366,Kevin Smith,1165412307 +176968,7372,Heath Ledger,1165619818 +176968,7474,Homosexuality,1165447084 +176968,7615,Homosexuality,1165447040 +176968,7706,Highly quotable,1165419002 +176968,7706,Marx Brothers,1165419002 +176968,8235,Harold Lloyd,1165419117 +176968,8256,Greta Garbo,1165443417 +176968,8275,Buster Keaton,1165442966 +176968,8373,Christopher Walken,1165432319 +176968,8373,Matthew Broderick,1165432319 +176968,8373,Nicole Kidman,1165432319 +176968,8525,Disney,1165534900 +176968,8526,Jackie Chan,1165533910 +176968,8610,Lily Tomlin,1165447092 +176968,8610,Steve Martin,1165447092 +176968,8623,Steve Martin,1165446176 +176968,8650,Katherine Hepburn,1165444074 +176968,8695,Cary Grant,1165501453 +176968,8695,Shirley Temple,1165501453 +176968,8711,Cary Grant,1165447935 +176968,8712,Cary Grant,1165442819 +176968,8712,Randolph Scott,1165442819 +176968,8714,Cary Grant,1165619654 +176968,8734,Marx Brothers,1165521543 +176968,8796,Buster Keaton,1165446137 +176968,8796,Zero Mostel,1165446137 +176968,8814,Seth Green,1165702601 +176968,8880,Cher,1165503902 +176968,9011,Ethel Barrymoore,1165447793 +176968,9011,William Holden,1165447793 +176968,25750,Buster Keaton,1165412445 +176968,25750,silent,1165412479 +176968,25752,Harold Lloyd,1177064329 +176968,25755,Based on a book,1174226525 +176968,25755,Lon Chaney,1174226525 +176968,25755,Universal Horror,1174226525 +176968,25763,German Expressionism,1170694740 +176968,25763,Louise Brooks,1170694740 +176968,25764,Buster Keaton,1174226496 +176968,25769,Buster Keaton,1165417446 +176968,25777,Marx Brothers,1165442767 +176968,25826,Screwball Comedy,1172695773 +176968,25833,Greta Garbo,1174226599 +176968,25850,Cary Grant,1165444211 +176968,25850,Katherine Hepburn,1165444212 +176968,25865,Bette Davis,1165445279 +176968,25866,Errol Flynn,1165447314 +176968,25868,Barbara Stanywick,1170694948 +176968,25868,Howard Hawkes,1170694948 +176968,25868,Screwball Comedy,1170694948 +176968,25899,Gene Kelly,1177064207 +176968,25940,Marlene Dietrich,1165442879 +176968,25951,Buster Keaton,1174226580 +176968,25951,Judy Garland,1174226580 +176968,26116,Agnes Moorehead,1165444383 +176968,26116,Bette Davis,1165444383 +176968,26116,Oliva de Havilland,1165444383 +176968,26491,Mel Brooks,1175439658 +176968,26680,Johnny Depp,1165503848 +176968,31193,Disney,1170695002 +176968,31687,Disney,1165618926 +176968,32160,Carol Lombard,1165441618 +176968,32160,John Barrymore,1174226699 +176968,32587,Robert Rodriguiz,1165412666 +176968,32882,Marx Brothers,1171489618 +176968,33237,Clark Gable,1170694912 +176968,33237,Spenser Tracy,1170694912 +176968,33681,Robert Rodriguiz,1165412333 +176968,33836,Based on a TV show,1165433387 +176968,33836,Nicole Kidman,1165433387 +176968,33836,Nora Ephron,1165433387 +176968,33836,Will Ferrell,1165433387 +176968,34332,Bruce Campbell,1165505938 +176968,36401,Heath Ledger,1165532385 +176968,36401,Matt Damon,1165532385 +176968,36401,Terry Gilliam,1165532385 +176968,37729,Tim Burton,1165446499 +176968,40962,Remake,1165431800 +176968,45728,Highly quotable,1165418912 +176968,47099,Will Smith,1170695045 +176968,48142,Based on a novel,1165433193 +176968,48142,Neo-noir,1165433193 +176968,49013,Christmas,1167752392 +176968,49013,Martin Short,1167752392 +176968,49013,Tim Allen,1167752392 +176968,51077,Marvel,1174226644 +176968,51084,Drew Barrymore,1171489697 +176968,51084,Hugh Grant,1171489697 +176968,51255,Edgar Wright,1177930884 +176968,51255,Simon Pegg,1177930884 +176968,51540,David Fincher,1180211638 +176968,51540,Jake Gyllenhaal,1180211638 +176968,51540,Mark Ruffalo,1180211638 +176968,51540,Robert Downey Jr,1180211638 +176968,51662,Based on a comic book,1175439794 +176968,51662,Epic,1175439794 +176968,51662,Gladiator,1175439794 +176968,52281,Quinten Tarantino,1177064302 +176968,52281,Robert Rodriguez,1177064302 +176968,52722,Comic Book adaption,1177930870 +176968,52722,Kirsten Dunst,1177930870 +176968,52722,Marvel,1177930870 +176968,52722,Sam Raimi,1177930870 +176968,52722,Toby Maquire,1177930870 +176972,65514,kung fu,1436621295 +176972,65514,martial arts,1436621295 +176972,65514,well done,1436621295 +176972,68954,feel good,1436621325 +176972,68954,light,1436621329 +176972,88125,dark,1436621257 +176981,2959,action,1308635003 +176981,2959,Brad Pitt,1308634991 +176981,2959,crime,1308634996 +176981,2959,dark comedy,1308634992 +176981,2959,mental illness,1308634998 +176981,2959,psychological,1308635000 +176981,2959,psychology,1308634988 +176981,2959,social commentary,1308634989 +176981,2959,twist ending,1308634986 +176981,4011,Brad Pitt,1305699990 +176981,4011,Crime,1305699967 +176981,4011,England,1305699996 +176981,4011,Guy Ritchie,1305699950 +176981,4011,heist,1305699979 +176981,4011,multiple storylines,1305699999 +176981,4011,organized crime,1305700001 +176981,4011,stylized,1305699974 +176981,4011,twist ending,1305699948 +176981,8784,Natalie Portman,1308635183 +176981,47518,college,1316314556 +176981,47518,Justin Long,1316314550 +176981,47518,male self-degredation,1316314559 +176981,58998,BREAKUPS AND DIVORCES,1316312651 +176981,58998,comedy,1316312649 +176981,58998,good dialogue,1316312647 +176981,58998,hilarious,1316312645 +176981,58998,Nudity (Full Frontal - Notable),1316312654 +176981,58998,Nudity (Topless),1316312642 +176981,58998,Paul Rudd,1316312637 +176981,62439,crude humor,1316312509 +176981,62439,harsh,1316336844 +176981,69757,humor,1317636324 +176981,69757,nonlinear,1317636327 +176981,69757,relationships,1317636342 +176981,69757,stylized,1317636339 +176981,69757,Zooey Deschanel,1317636335 +176981,79428,Paul Rudd,1316314261 +176981,84152,concept,1306735670 +176981,86332,Anthony Hopkins,1308634686 +176981,86332,comic book,1308634681 +176981,86332,funny,1308634698 +176981,86332,muscle,1308634701 +176981,86332,mythology,1308634689 +176981,86332,Natalie Portman,1308634687 +176981,86332,superhero,1308634692 +177023,260,action,1437862265 +177023,260,sci-fi,1437862249 +177032,260,coming of age,1435378165 +177032,260,romance,1435378152 +177032,260,Sci-Fi,1435378132 +177048,6773,music is key to story (not Musical genre),1344221073 +177048,7160,fucked up,1344307528 +177048,55069,abortion,1342495687 +177048,96907,intercultural relationship,1421589246 +177048,96907,self discovery,1421589246 +177048,96907,thailand,1421589246 +177048,115569,dark,1425782583 +177057,56367,excellent script,1205200336 +177063,260,classic,1439779221 +177063,260,cult,1439779215 +177063,260,scifi,1439779211 +177081,593,confronting,1424253782 +177081,593,must see,1424253782 +177081,593,twist,1424253782 +177108,19,Jim Carrey,1150906344 +177108,19,Not my kind of comedy,1150906334 +177109,2336,costume drama,1264481475 +177111,1291,Adventure,1432765413 +177111,1291,han solo,1432765419 +177111,6539,adventure,1432765475 +177111,6539,funny,1432765452 +177111,6539,pirate,1432765463 +177117,112421,Maggie Gyllenhaal,1441676628 +177117,112421,mental illness,1441676630 +177117,112421,Michael Fassbender,1441676624 +177117,112421,musicians,1441676619 +177117,112421,soundtrack,1441676616 +177124,50,storytelling,1367693685 +177124,2335,comedy,1367693556 +177124,2420,mentor,1367693531 +177124,2421,mentor,1367693531 +177124,3146,comedy,1367693556 +177124,4816,comedy,1367693556 +177124,4878,original,1367693017 +177124,7173,comedy,1367693556 +177124,8641,comedy,1367693556 +177124,31221,comic book,1221344119 +177124,31221,marvel,1221344115 +177124,31221,superhero,1221344123 +177124,32587,storytelling,1367693685 +177124,57640,based on a comic,1231091253 +177124,59126,religion,1234395778 +177124,64957,Brad Pitt,1241364794 +177124,64957,Cate Blanchett,1241364807 +177124,64957,Tilda Swinton,1241364804 +177124,99114,Christoph Waltz,1358525879 +177124,99114,unoriginal,1358525867 +177130,260,futuristic,1439489630 +177130,260,sci-fi,1439489594 +177173,63062,angelina jolie,1263047558 +177177,260,"Cheesy space opera, classic",1441330425 +177177,260,fun action,1441330436 +177192,4973,_jur,1193343336 +177209,2011,Sequels in Trilogies that are the strongest movie in the trilogy and stuff,1148428916 +177209,2012,Stupid Movies in Trilogies,1148428887 +177209,43904,Jill the Babysitter,1169534420 +177219,260,action,1444037024 +177219,260,great story,1444037038 +177221,61009,melancholy,1407368408 +177221,61009,music,1407368393 +177221,81456,music,1407368522 +177221,81456,realistic,1407368560 +177221,81456,visually stunning,1407368503 +177244,47,atmospheric,1425569061 +177244,47,dark,1425569059 +177244,47,disturbing,1425569047 +177244,47,Kevin Spacey,1425569054 +177244,47,powerful ending,1425569041 +177244,47,psychology,1425569043 +177244,551,animation,1425570059 +177244,551,atmospheric,1425570050 +177244,551,beautiful,1425570057 +177244,551,dark,1425570065 +177244,551,gothic,1425570048 +177244,551,great soundtrack,1425570054 +177244,551,musical,1425570052 +177244,551,stop motion,1425570056 +177244,592,atmospheric,1425568848 +177244,592,dark,1425568858 +177244,592,stylized,1425568852 +177244,597,unreflective,1425579102 +177244,924,artificial intelligence,1426179878 +177244,924,atmospheric,1426179882 +177244,924,cinematography,1426179892 +177244,924,future,1426179886 +177244,924,futuristic,1426179891 +177244,924,music,1426179897 +177244,924,sci-fi,1426179880 +177244,924,visually appealing,1426179894 +177244,1196,adventure,1425569236 +177244,1196,great soundtrack,1425569244 +177244,1196,music,1425569245 +177244,1196,sci-fi,1425569232 +177244,1196,Star Wars,1425569235 +177244,1199,bureaucracy,1425578998 +177244,1199,weird,1425578987 +177244,1200,atmospheric,1425569219 +177244,1200,James Cameron,1425569217 +177244,1200,sci-fi,1425569210 +177244,1200,suspense,1425569214 +177244,1200,tense,1425569213 +177244,1209,atmospheric,1425570489 +177244,1209,ennio morricone,1425570485 +177244,1209,great soundtrack,1425570493 +177244,1209,stylized,1425570487 +177244,1209,visually appealing,1425570492 +177244,1220,car chase,1426180130 +177244,1220,Dan Aykroyd,1426180138 +177244,1220,musicians,1426180134 +177244,1220,road movie,1426180136 +177244,1259,childhood,1425569357 +177244,1259,coming of age,1425569349 +177244,1259,friendship,1425569362 +177244,1259,nostalgic,1425569353 +177244,1265,alternate reality,1425569256 +177244,1265,Bill Murray,1425569265 +177244,1265,funny,1425569259 +177244,1265,time loop,1425569252 +177244,1270,alternate reality,1425569279 +177244,1270,Steven Spielberg,1425569274 +177244,1270,time travel,1425569282 +177244,1377,dark hero,1425570503 +177244,1721,atmospheric,1425569469 +177244,1721,catastrophe,1425569479 +177244,1721,disaster,1425569471 +177244,1721,James Cameron,1425569484 +177244,1748,alternate reality,1425659143 +177244,1748,atmospheric,1425659135 +177244,1748,cerebral,1425659172 +177244,1748,dark fantasy,1425659131 +177244,1748,dystopia,1425659129 +177244,1748,mindfuck,1425659141 +177244,1748,Post apocalyptic,1425659138 +177244,1748,post-apocalyptic,1425659150 +177244,1748,sci-fi,1425659169 +177244,1748,stylized,1425659133 +177244,1748,surreal,1425659153 +177244,1748,thought-provoking,1425659136 +177244,1748,visually appealing,1425659145 +177244,1748,visually stunning,1425659164 +177244,1968,coming of age,1425671805 +177244,1968,coming-of-age,1425671808 +177244,1968,ensemble cast,1425671811 +177244,1968,John Hughes,1425671817 +177244,1994,paranormal,1425672273 +177244,1994,supernatural,1425672275 +177244,1994,suspense,1425672279 +177244,1997,creepy,1425668141 +177244,1997,scary,1425668135 +177244,2005,1980s,1425659354 +177244,2005,adventure,1425659352 +177244,2005,friendship,1425659355 +177244,2005,sense of wonder,1425659374 +177244,2012,alternate reality,1425659497 +177244,2012,Christopher Lloyd,1425659502 +177244,2012,fantasy,1425659506 +177244,2012,sci-fi,1425659500 +177244,2012,science fiction,1425659499 +177244,2012,time travel,1425659495 +177244,2019,atmospheric,1425671843 +177244,2019,epic,1425671845 +177244,2019,stylized,1425671853 +177244,2028,Steven Spielberg,1425659382 +177244,2054,adventure,1425672331 +177244,2054,children,1425672340 +177244,2054,family,1425672335 +177244,2054,fantasy,1425672329 +177244,2054,Rick Moranis,1425672328 +177244,2072,1980's,1425659479 +177244,2072,black comedy,1425659455 +177244,2072,dark comedy,1425659460 +177244,2072,Joe Dante,1425659483 +177244,2072,quirky,1425659471 +177244,2105,alternate reality,1425671833 +177244,2105,computers,1425671825 +177244,2105,cyberpunk,1425671827 +177244,2105,sci-fi,1425671829 +177244,2105,virtual reality,1425671823 +177244,2115,action,1425659324 +177244,2115,adventure,1425659325 +177244,2115,Harrison Ford,1425659320 +177244,2115,Indiana Jones,1425659322 +177244,2115,Steven Spielberg,1425659312 +177244,2161,effects,1425671916 +177244,2174,alternate reality,1425659409 +177244,2174,black comedy,1425659417 +177244,2174,comedy,1425659430 +177244,2174,cult film,1425659428 +177244,2174,ghosts/afterlife,1425659412 +177244,2174,Michael Keaton,1425659407 +177244,2174,supernatural,1425659426 +177244,2174,surreal,1425659414 +177244,2174,Tim Burton,1425659421 +177244,2288,claustrophobic,1425569449 +177244,2288,disturbing,1425569445 +177244,2288,paranoia,1425569453 +177244,2288,Special Effects,1425569447 +177244,2455,sci-fi,1425569370 +177244,2455,tragic hero,1425569373 +177244,2571,alternate reality,1425569394 +177244,2571,artificial intelligence,1425569392 +177244,2571,atmospheric,1425569414 +177244,2571,cyberpunk,1425569385 +177244,2571,dystopia,1425569384 +177244,2571,hackers,1425569413 +177244,2571,post apocalyptic,1425569398 +177244,2571,post-apocalyptic,1425569389 +177244,2571,sci-fi,1425569381 +177244,2571,Special Effects,1425569420 +177244,2571,stylized,1425569416 +177244,2571,thought-provoking,1425569396 +177244,2571,virtual reality,1425569383 +177244,2571,visually stunning,1425569408 +177244,2599,black comedy,1425568810 +177244,2599,dark comedy,1425568808 +177244,2710,atmospheric,1425672361 +177244,2710,creepy,1425672349 +177244,2710,found footage,1425672359 +177244,2710,low budget,1425672347 +177244,2710,original,1425672353 +177244,2710,scary,1425672351 +177244,2710,suspense,1425672356 +177244,2716,Bill Murray,1425569429 +177244,2716,comedy,1425569433 +177244,2746,dark comedy,1425671894 +177244,2746,music,1425671907 +177244,2761,animation,1425672311 +177244,2761,emotional,1425672313 +177244,2761,friendship,1425672319 +177244,2761,giant robots,1425672314 +177244,2761,robots,1425672309 +177244,2761,self-sacrifice,1425672318 +177244,2770,comedy,1425672039 +177244,2770,Eddie Murphy,1425672042 +177244,2770,funny,1425672051 +177244,2770,Steve Martin,1425672043 +177244,2959,atmospheric,1425568977 +177244,2959,David Fincher,1425568991 +177244,2959,psychological,1425568983 +177244,2959,psychology,1425568974 +177244,2959,thought-provoking,1425568979 +177244,2987,animation & live action interact,1425570423 +177244,2987,cartoon-reality crossover,1425570427 +177244,2987,live action/animation,1425570432 +177244,2987,Robert Zemeckis,1425570430 +177244,2997,black comedy,1425569298 +177244,2997,dark comedy,1425569296 +177244,2997,John Cusack,1425569304 +177244,2997,mindfuck,1425569300 +177244,2997,psychology,1425569302 +177244,2997,surrealism,1425569315 +177244,2997,thought-provoking,1425569307 +177244,3160,cynical,1425579033 +177244,3462,stunts,1425570526 +177244,3471,music,1425569344 +177244,3471,Steven Spielberg,1425569338 +177244,3471,visually appealing,1425569335 +177244,3481,John Cusack,1425569321 +177244,3481,relationships,1425569328 +177244,3686,alternate reality,1425572243 +177244,3949,atmospheric,1425569018 +177244,3949,cinematography,1425569014 +177244,3949,dark,1425569023 +177244,3949,Darren Aronofsky,1425569012 +177244,3949,psychological,1425569033 +177244,3949,psychology,1425569020 +177244,3949,visually appealing,1425569016 +177244,4226,storytelling,1425579297 +177244,4720,atmospheric,1425672070 +177244,4914,deadpan,1425579017 +177244,5902,writers,1425579060 +177244,5902,writing process,1425579062 +177244,6711,atmospheric,1426179966 +177244,6711,Bill Murray,1426179968 +177244,6711,complex characters,1426179976 +177244,6711,intelligent,1426179989 +177244,6711,isolation,1426179979 +177244,6711,Melancholic,1426179972 +177244,6711,poignant,1426179981 +177244,6711,reflective,1426179983 +177244,6711,relationships,1426179977 +177244,6711,Scarlett Johansson,1426179970 +177244,6711,visually appealing,1426179988 +177244,6979,artificial intelligence,1425590808 +177244,6979,computer cracker,1425590813 +177244,6979,computers,1425590806 +177244,6979,hackers,1425590811 +177244,7743,adventure,1425591203 +177244,7743,Joe Dante,1425591192 +177244,7743,sci-fi,1425591171 +177244,7743,spaceflight,1425591216 +177244,27773,Cinematography,1425568956 +177244,27773,stylized,1425568948 +177244,27773,vengeance,1425568951 +177244,34048,alien invasion,1425591135 +177244,34048,sci-fi,1425591134 +177244,34048,Steven Spielberg,1425591132 +177244,34048,Tom Cruise,1425591130 +177244,48774,apocalypse,1426179935 +177244,48774,atmospheric,1426179936 +177244,48774,dystopia,1426179934 +177244,48774,end of the world,1426179944 +177244,48774,future,1426179940 +177244,48774,futuristic,1426179942 +177244,48774,sci-fi,1426179939 +177244,48774,survival,1426179938 +177244,48774,thought-provoking,1426179945 +177244,48774,visually appealing,1426179947 +177244,52328,atmospheric,1425659212 +177244,52328,cinematography,1425659202 +177244,52328,Danny Boyle,1425659217 +177244,52328,dark,1425659209 +177244,52328,ending twist,1425659199 +177244,52328,isolation,1425659210 +177244,52328,psychology,1425659207 +177244,52328,sci-fi,1425659205 +177244,52328,space,1425659204 +177244,56174,alone in the world,1425659058 +177244,56174,apocalypse,1425659060 +177244,56174,dystopia,1425659065 +177244,56174,Post apocalyptic,1425659067 +177244,56174,post-apocalyptic,1425659055 +177244,56174,sci-fi,1425659063 +177244,56174,survival,1425659062 +177244,57368,"""found footage""",1425591353 +177244,57368,alien monster,1425591336 +177244,57368,city under attack,1425591333 +177244,57368,feeling of helplessness,1425591329 +177244,57368,giant monster,1425591322 +177244,57368,monster,1425591326 +177244,57368,sci-fi,1425591331 +177244,58559,Heath Ledger,1425579269 +177244,61240,adapted from:book,1426180793 +177244,61240,adolescence,1426180785 +177244,61240,atmospheric,1426180776 +177244,61240,based on a book,1426180802 +177244,61240,coming of age,1426180777 +177244,61240,dark,1426180814 +177244,61240,imdb top 250,1426180823 +177244,61240,love story,1426180782 +177244,61240,swedish,1426180817 +177244,61240,vampire,1426180779 +177244,61240,vampires,1426180770 +177244,64957,cinematography,1425568830 +177244,64957,David Fincher,1425568840 +177244,64957,Oscar (Best Effects - Visual Effects),1425568836 +177244,66097,alternate reality,1425570085 +177244,66097,alternate universe,1425570086 +177244,66097,animation,1425570080 +177244,66097,creepy,1425570097 +177244,66097,dark fairy tale,1425570096 +177244,66097,dark fantasy,1425570093 +177244,66097,dystopia,1425570099 +177244,66097,fantasy world,1425570089 +177244,66097,stop motion,1425570081 +177244,66097,Surreal,1425570083 +177244,66097,visually stunning,1425570090 +177244,74228,atmospheric,1425567488 +177244,74228,time loop,1425567485 +177244,74228,time travel,1425567490 +177244,74228,twists & turns,1425567493 +177244,74228,visual style,1425567495 +177244,79702,cultural references,1425672374 +177244,79702,Edgar Wright,1425672384 +177244,79702,fantasy,1425672386 +177244,79702,geeky,1425672378 +177244,79702,Mary Elizabeth Winstead,1425672382 +177244,79702,quirky,1425672376 +177244,79702,stylized,1425672369 +177244,79702,surreal,1425672377 +177244,79702,video games,1425672367 +177244,79702,visually appealing,1425672370 +177244,79702,whimsical,1425672388 +177244,80617,kid's movie,1429942705 +177244,80617,spy,1429942705 +177244,80617,talking animals,1429942705 +177244,81591,atmospheric,1425568910 +177244,81591,Darren Aronofsky,1425568909 +177244,81591,psychological,1425568913 +177244,87306,cinematography,1425591051 +177244,87306,J.J. Abrams,1425591038 +177244,87306,sci-fi,1425591044 +177244,88129,atmospheric,1426179905 +177244,88129,cinematography,1426179904 +177244,88129,stylized,1426179914 +177244,88129,tense,1426179909 +177244,88129,visually appealing,1426179907 +177244,93840,clever,1425569069 +177244,93840,dark comedy,1425569071 +177244,93840,meta,1425569079 +177244,103228,cinematography,1425591107 +177244,103228,fun,1425591120 +177244,103228,giant monster,1425591109 +177244,103228,giant robots,1425591101 +177244,103228,Guillermo del Toro,1425591103 +177244,103228,robots,1425591121 +177244,103228,sci-fi,1425591097 +177244,103228,visually appealing,1425591099 +177244,103249,pandemic,1425659097 +177244,103688,cliche,1425579255 +177244,103688,predictable,1425579246 +177244,104841,cinematography,1425566955 +177244,104841,intense,1425566971 +177244,104841,visually appealing,1425566950 +177244,104841,visually stunning,1425566957 +177244,104879,absorbing,1425571667 +177244,104879,atmospheric,1425571670 +177244,104879,great ending,1425571676 +177244,104879,nuanced,1425571674 +177244,104879,thriller,1425571669 +177244,106920,artificial intelligence,1425570770 +177244,106920,Human Computer Interaction,1425570777 +177244,106920,psychology,1425570773 +177244,106920,Scarlett Johansson,1425570767 +177244,106920,sci-fi,1425570775 +177244,106920,thought-provoking,1425570769 +177244,106920,transhumanism,1425570784 +177244,108932,breaking the fourth wall,1425591271 +177244,108932,clever,1425591277 +177244,108932,fun,1425591274 +177244,112183,alter ego,1425570692 +177244,112183,dark,1425570690 +177244,112183,Edward Norton,1425570687 +177244,112183,great performances,1425570675 +177244,112183,magical realism,1425570672 +177244,112183,Michael Keaton,1425570699 +177244,112183,pretentious,1425570683 +177244,112183,psychological,1425570679 +177244,112183,single shot,1425570674 +177244,112552,J.K. Simmons,1425570608 +177244,112552,jazz,1425570606 +177244,112552,musicians,1425570605 +177244,112552,Tense,1425570610 +177244,112852,adventure,1425591302 +177244,112852,fantasy,1425591308 +177244,112852,Great Visuals,1425591294 +177244,112852,sci-fi,1425591296 +177244,112852,science fiction,1425591304 +177244,112852,space,1425591316 +177273,260,sci-fi,1439145180 +177333,97648,action,1420850486 +177333,97648,entertaining,1420850486 +177333,97648,thriller,1420850486 +177338,16,corruption,1442989334 +177338,16,organized crime,1442989329 +177338,260,good science fictional technology,1442989110 +177338,260,good vs evil,1442989077 +177338,858,family relationships,1442989172 +177338,858,organized crime,1442989180 +177338,1089,crime,1442989355 +177338,1089,ensemble cast,1442989350 +177338,1213,Joe Pesci,1442989269 +177338,1213,social path,1442989243 +177338,1466,organized crime,1442989298 +177338,1466,undercover cop,1442989304 +177338,2025,1950,1442991511 +177338,2025,obsession,1442991527 +177338,2025,seduction,1442991559 +177338,2542,black comedy,1442989381 +177338,2542,british,1442989372 +177338,2542,hilarious,1442989376 +177338,2598,cast,1442989676 +177338,2598,"infidelity,",1442989669 +177338,3176,1950s,1442989442 +177338,3176,Jude Law,1442989438 +177338,3176,Matt Damon,1442989431 +177338,3176,psychology,1442989434 +177338,3176,suspense,1442989452 +177338,4211,courtroom,1442991350 +177338,4211,Jeremy Irons,1442991391 +177338,4211,murder,1442991335 +177338,4211,the wealthy,1442991321 +177338,4218,drama,1442990438 +177338,4218,murder,1442990375 +177338,4218,narcissism,1442990368 +177338,4448,cast,1442990510 +177338,4448,french,1442990492 +177338,4448,heist,1442990562 +177338,4448,setting:Montreal,1442990481 +177338,4448,suspense,1442990553 +177338,6852,crime,1442991249 +177338,6852,two of a kind,1442991231 +177338,40583,betrayal,1442990725 +177338,40583,espionage,1442990628 +177338,40583,George Clooney,1442990621 +177338,40583,Matt Damon,1442990618 +177338,49822,Central Intelligence Agency,1442989730 +177338,49822,CIA,1442989735 +177338,49822,espionage,1442989741 +177338,49822,Matt Damon,1442989738 +177338,79293,action,1442990828 +177338,79293,espionage,1442990811 +177338,79293,sleeper agent,1442990814 +177338,80126,assassin,1442989585 +177338,80126,George Clooney,1442989588 +177338,80126,stylized,1442989606 +177378,41566,alternate reality,1410963305 +177389,1136,seen more than once,1226895467 +177389,3241,buddhist monks,1226297502 +177389,3241,ironic,1226297523 +177404,2329,racism,1449413577 +177404,3949,drugs,1449413535 +177404,3949,psychology,1449413543 +177404,7361,imagination,1449413658 +177428,367,jim carrey,1444342714 +177428,527,drama,1444342604 +177428,527,Nazis,1444342608 +177428,527,World War II,1444342596 +177428,593,Anthony Hopkins,1444342635 +177428,593,investigation,1444342660 +177428,593,Jodie Foster,1444342643 +177428,593,psychology,1444342638 +177428,593,serial killer,1444342631 +177428,593,suspense,1444342645 +177428,593,thriller,1444342653 +177428,858,Al Pacino,1444342735 +177428,858,robert de niro,1444342744 +177428,1240,androids,1444342827 +177428,1240,artificial intelligence,1444342833 +177428,1240,great soundtrack,1444342831 +177428,1240,robots,1444342825 +177428,5995,World War II,1444342682 +177458,16,based on a book,1221227051 +177458,19,comedy,1221227367 +177458,19,Jim Carrey,1221226585 +177458,22,serial killer,1221484743 +177458,32,twist ending,1221226619 +177458,47,serial killer,1221227005 +177458,112,Jackie Chan,1221226004 +177458,112,kung fu,1221226948 +177458,112,martial arts,1221226001 +177458,141,comedy,1221227613 +177458,153,comic book,1221227649 +177458,153,Jim Carrey,1221227652 +177458,153,superhero,1221227646 +177458,231,comedy,1221227845 +177458,231,Jim Carrey,1221227842 +177458,253,based on a book,1221228030 +177458,288,serial killer,1221227772 +177458,296,nonlinear,1221226684 +177458,318,based on a book,1221226994 +177458,318,Stephen King,1221226996 +177458,344,comedy,1221227345 +177458,344,Jim Carrey,1221226592 +177458,356,based on a book,1221226835 +177458,364,animation,1221226415 +177458,364,Disney,1221227163 +177458,367,comic book,1221228133 +177458,367,jim carrey,1221228127 +177458,367,superhero,1221228135 +177458,370,Comedy,1221226709 +177458,370,parody,1221227486 +177458,370,ZAZ,1221484952 +177458,413,comedy,1221227339 +177458,466,comedy,1221227272 +177458,466,parody,1221227274 +177458,466,ZAZ,1221484909 +177458,480,based on a book,1221227028 +177458,480,Steven Spielberg,1221227036 +177458,500,Comedy,1221227777 +177458,551,animation,1221226146 +177458,551,Tim Burton,1221227025 +177458,588,animation,1221227388 +177458,588,Disney,1221227334 +177458,592,comic book,1221227881 +177458,592,superhero,1221227883 +177458,592,Tim Burton,1221227886 +177458,593,based on a book,1221227754 +177458,593,serial killer,1221227756 +177458,595,animation,1221226568 +177458,595,Disney,1221227325 +177458,778,based on a book,1221226903 +177458,778,Ewan McGregor,1221485822 +177458,784,Comedy,1221227313 +177458,784,Jim Carrey,1221226554 +177458,861,Jackie Chan,1221226323 +177458,1089,nonlinear,1221226364 +177458,1120,Edward Norton,1221227476 +177458,1206,based on a book,1221227593 +177458,1213,based on a book,1221226815 +177458,1258,based on a book,1221226990 +177458,1258,Stephen King,1221226992 +177458,1259,based on a book,1221227412 +177458,1259,Stephen King,1221227414 +177458,1265,comedy,1221227827 +177458,1282,animation,1221226484 +177458,1282,Disney,1221227298 +177458,1288,comedy,1221227918 +177458,1345,based on a book,1221227601 +177458,1345,Stephen King,1221227599 +177458,1377,comic book,1221227639 +177458,1377,superhero,1221227636 +177458,1377,Tim Burton,1221227641 +177458,1405,Based on a TV show,1221226183 +177458,1429,Jackie Chan,1221226433 +177458,1429,Martial Arts,1221226430 +177458,1485,comedy,1221227168 +177458,1485,jim carrey,1221227166 +177458,1513,comedy,1221228221 +177458,1517,parody,1221227193 +177458,1554,Ewan McGregor,1221486084 +177458,1625,twist ending,1221228047 +177458,1665,Based on a TV show,1221226191 +177458,1678,based on a book,1221226757 +177458,1680,nonlinear,1221227748 +177458,1682,Jim Carrey,1221226624 +177458,1732,comedy,1221227619 +177458,1747,based on a book,1221226980 +177458,1858,Jackie Chan,1221226385 +177458,1909,Based on a TV show,1221226303 +177458,2027,ZAZ,1221484852 +177458,2060,comedy,1221486277 +177458,2060,Matt Stone,1221486288 +177458,2060,Trey Parker,1221486280 +177458,2081,animation,1221226409 +177458,2081,Disney,1221227160 +177458,2120,based on a book,1221486477 +177458,2120,Stephen King,1221486475 +177458,2174,comedy,1221227319 +177458,2174,Tim Burton,1221226560 +177458,2273,Jackie Chan,1221226661 +177458,2291,Johnny Depp,1221226973 +177458,2291,Tim Burton,1221226971 +177458,2325,comedy,1221486326 +177458,2325,Matt Stone,1221486330 +177458,2325,Trey Parker,1221486316 +177458,2329,Edward Norton,1221227676 +177458,2502,comedy,1221227143 +177458,2513,Stephen King,1221486439 +177458,2582,Jackie Chan,1221226315 +177458,2582,kung fu,1221227114 +177458,2582,martial arts,1221226313 +177458,2683,parody,1221227195 +177458,2700,Animation,1221225872 +177458,2700,Based on a TV show,1221227231 +177458,2700,Matt Stone,1221486309 +177458,2700,parody,1221227221 +177458,2700,Trey Parker,1221486303 +177458,2706,comedy,1221227899 +177458,2723,comedy,1221227500 +177458,2723,parody,1221227500 +177458,2723,superhero,1221226715 +177458,2791,comedy,1221227102 +177458,2791,Parody,1221227199 +177458,2791,ZAZ,1221484872 +177458,2879,Jackie Chan,1221226696 +177458,2880,Jackie Chan,1221226369 +177458,2924,Jackie Chan,1221226489 +177458,2924,martial arts,1221226516 +177458,2959,based on a book,1221226929 +177458,3081,Johnny Depp,1221227937 +177458,3081,Tim Burton,1221227935 +177458,3176,based on a book,1221228094 +177458,3438,comic book,1221227735 +177458,3438,superhero,1221227734 +177458,3440,comic book,1221228194 +177458,3440,superhero,1221228197 +177458,3499,based on a book,1221226726 +177458,3499,Stephen King,1221226719 +177458,3617,comedy,1221227454 +177458,3624,Jackie Chan,1221226644 +177458,3752,comedy,1221228118 +177458,3752,Jim Carrey,1221228116 +177458,3760,comedy,1221484926 +177458,3760,ZAZ,1221484921 +177458,3785,comedy,1221227961 +177458,3785,parody,1221227969 +177458,3793,comic book,1221227106 +177458,3793,Hugh Jackman,1221485587 +177458,3793,superhero,1221227104 +177458,3868,comedy,1221227147 +177458,3868,ZAZ,1221484964 +177458,3869,comedy,1221484936 +177458,3869,ZAZ,1221484941 +177458,3948,comedy,1221227789 +177458,3949,based on a book,1221227975 +177458,3972,Jackie Chan,1221151854 +177458,3972,kung fu,1221226915 +177458,3972,martial arts,1221225928 +177458,3996,Kung Fu,1221226871 +177458,3996,martial arts,1221226868 +177458,4226,nonlinear,1221226044 +177458,4226,twist ending,1221226046 +177458,4308,Ewan McGregor,1221485791 +177458,4396,Jackie Chan,1221228246 +177458,4701,Jackie Chan,1221226654 +177458,4701,martial arts,1221226658 +177458,4717,Jackie Chan,1221228251 +177458,4720,twist ending,1221226131 +177458,4887,Jet Li,1221226699 +177458,4896,based on a book,1221228041 +177458,4993,based on a book,1221228138 +177458,4995,based on a book,1221228087 +177458,5047,comedy,1221225942 +177458,5047,martial arts,1221225934 +177458,5218,animation,1221226453 +177458,5218,Disney,1221227265 +177458,5243,Jackie Chan,1221227904 +177458,5349,comic book,1221227417 +177458,5349,superhero,1221227418 +177458,5459,comedy,1221228229 +177458,5500,comedy,1221484981 +177458,5500,ZAZ,1221484977 +177458,5541,comedy,1221484893 +177458,5541,ZAZ,1221484888 +177458,5621,Jackie Chan,1221227912 +177458,5630,Edward Norton,1221227980 +177458,5630,serial killer,1221227983 +177458,5785,Based on a TV show,1221228145 +177458,6016,based on a book,1221227043 +177458,6156,Jackie Chan,1221226649 +177458,6333,comic book,1221226896 +177458,6333,Hugh Jackman,1221485558 +177458,6333,superhero,1221226894 +177458,6367,Ewan McGregor,1221485835 +177458,6373,comedy,1221227316 +177458,6373,Jim Carrey,1221226552 +177458,6378,Edward Norton,1221227182 +177458,6618,kung fu,1221228109 +177458,6618,martial arts,1221228107 +177458,6686,Jackie Chan,1221228112 +177458,7090,Jet Li,1221227541 +177458,7090,martial arts,1221226799 +177458,7108,Jackie Chan,1221228076 +177458,7147,based on a book,1221227625 +177458,7147,Ewan McGregor,1221485812 +177458,7147,Tim Burton,1221227628 +177458,7361,Jim Carrey,1221227837 +177458,7373,comic book,1221227819 +177458,7373,superhero,1221227822 +177458,7454,Hugh Jackman,1221485609 +177458,8376,comedy,1221228226 +177458,8526,Jackie Chan,1221227890 +177458,8636,comic book,1221227120 +177458,8636,superhero,1221227119 +177458,8917,Matt Stone,1221486364 +177458,8917,Trey Parker,1221486350 +177458,8957,serial killer,1221226946 +177458,8961,animation,1221226776 +177458,8961,comic book,1221226782 +177458,8961,superhero,1221226779 +177458,26547,Jackie Chan,1221226128 +177458,27706,based on a book,1221228023 +177458,27706,jim carrey,1221228026 +177458,27801,martial arts,1221226056 +177458,27801,Tony Jaa,1221486393 +177458,30793,based on a book,1221227865 +177458,30793,Tim Burton,1221227867 +177458,31878,comedy,1221226748 +177458,31878,martial arts,1221226740 +177458,33004,based on a book,1221226789 +177458,33437,Jet Li,1221226096 +177458,35836,comedy,1221228172 +177458,37729,animation,1221226876 +177458,37729,Tim Burton,1221226883 +177458,42011,Jim Carrey,1221485915 +177458,45447,based on a book,1221226861 +177458,45499,comic book,1221226977 +177458,45499,Hugh Jackman,1221485599 +177458,45499,superhero,1221226975 +177458,46322,Jet Li,1221227290 +177458,46322,Martial Arts,1221226475 +177458,48780,based on a book,1221226953 +177458,48780,Hugh Jackman,1221485570 +177458,48780,nonlinear,1221226051 +177458,48780,twist ending,1221226956 +177458,51540,serial killer,1221228178 +177458,51939,comic book,1221484697 +177458,54272,animation,1221225974 +177458,54272,Based on a TV show,1221226935 +177458,54272,comedy,1221226939 +177458,56251,Based on a TV show,1221486262 +177458,56757,Johnny Depp,1221228204 +177458,56757,Tim Burton,1221228202 +177458,59103,jackie chan,1221226065 +177458,59103,jet li,1221225772 +177458,59103,kung fu,1221226965 +177458,63853,Hugh Jackman,1242664743 +177498,55052,James McAvoy,1247648000 +177498,56145,stephen king,1210594042 +177515,260,Harrison Ford,1432292735 +177515,260,luke,1432292728 +177515,63082,easy quesions,1432293994 +177515,63082,mala vida,1432294006 +177524,318,great acting,1426988885 +177524,318,great ending,1426988884 +177524,318,Morgan Freeman,1426988862 +177524,318,psychology,1426988893 +177524,318,sentimental,1426988896 +177524,318,Stephen King,1426988868 +177524,318,twist ending,1426988864 +177524,356,bittersweet,1426988771 +177524,356,emotional,1426988780 +177524,356,heartwarming,1426988789 +177524,356,sentimental,1426988786 +177524,356,tom hanks,1426988768 +177524,356,touching,1426988783 +177524,2762,ghosts,1426988943 +177524,2762,ghosts/afterlife,1426988964 +177524,2762,great ending,1426988940 +177524,2762,horror,1426988961 +177524,2762,psychological,1426988948 +177524,2762,psychology,1426988945 +177524,2762,suspense,1426988959 +177524,2762,touching,1426988976 +177524,2762,twist ending,1426988938 +177524,3147,emotional,1426988821 +177524,3147,great acting,1426988824 +177524,3147,heartwarming,1426988826 +177524,3147,nostalgic,1426988829 +177524,3147,Stephen King,1426988819 +177524,3147,Tom Hanks,1426988817 +177524,4720,clever,1426989026 +177524,4720,ghosts,1426989003 +177524,4720,haunted house,1426989006 +177524,4720,Horror,1426989014 +177524,4720,scary,1426989022 +177524,4720,supernatural,1426989010 +177524,4720,surprise ending,1426989008 +177524,4720,twist ending,1426989001 +177524,56587,friendship,1426988709 +177524,56587,jack nicholson,1426988712 +177524,56587,Morgan Freeman,1426988710 +177524,74458,ending twist,1426989063 +177524,74458,intense,1426989078 +177524,74458,Leonardo DiCaprio,1426989054 +177524,74458,mystery,1426989057 +177524,74458,plot twist,1426989060 +177524,74458,psychological,1426989044 +177524,74458,story,1426989091 +177524,74458,thought-provoking,1426989092 +177524,74458,twist ending,1426989046 +177524,74458,twisted ending,1426989082 +177524,97938,cinematography,1426989254 +177524,97938,visually appealing,1426989245 +177540,260,bravery,1436534127 +177540,260,secrets,1436534110 +177540,260,space action,1436534101 +177541,260,Science Fiction,1432578929 +177541,260,space,1432578973 +177543,94,beautiful,1188810782 +177543,1245,funny,1188810736 +177543,2125,funny,1188810730 +177543,2137,fun,1188810719 +177543,2423,fun,1188810724 +177543,3608,funny as hell,1188810746 +177568,1244,Gershwin,1188316032 +177568,1297,cal tech,1188315809 +177568,1297,engineering,1188315809 +177568,1297,genius,1188315809 +177568,1297,science,1188315809 +177568,1297,smart comedy,1188315809 +177568,1297,Val Kilmer,1188315809 +177568,3814,Napolean,1188315930 +177568,3814,philosophy,1188315931 +177568,3814,russian composers,1188315931 +177568,3814,wheat,1188315931 +177568,3814,Woody Allen,1188315930 +177568,4848,Jennifer Connelly,1188315519 +177568,4848,noir thriller,1188315519 +177568,5618,environmental,1188315545 +177568,6346,David Bowie,1188316637 +177568,6346,excellent soundtrack,1188316637 +177568,6346,mods,1188316637 +177568,6346,MTV,1188316637 +177568,6346,Ray Davies,1188316637 +177568,6346,Sade,1188316637 +177568,6378,heist,1188315480 +177568,6378,mini coopers,1188315480 +177571,260,classic sci-fi,1441361756 +177571,260,fantasy,1441361787 +177598,6942,Alan Rickman,1258491077 +177598,6942,Billy Bob Thornton,1258491080 +177598,6942,christmas,1258491163 +177598,6942,Colin Firth,1258491148 +177598,6942,directorial debut,1258491167 +177598,6942,Emma Thompson,1258491085 +177598,6942,England,1258491082 +177598,6942,Hugh Grant,1258491087 +177598,6942,Keira Knightley,1258491101 +177598,6942,Liam Neeson,1258491157 +177598,6942,Romance,1258491106 +177598,7155,England,1258491061 +177598,7155,Helen Mirren,1258491057 +177598,7155,Women's Institute,1258491068 +177631,50,twist ending,1378227267 +177636,3916,based on a true story,1406907582 +177636,3916,good story,1406907591 +177636,3916,inspirational,1406907605 +177636,3916,race issues,1406907600 +177636,3916,racism,1406907597 +177636,110553,action,1405472656 +177636,110553,comedy,1405472664 +177636,110553,superhero,1405472670 +177665,122882,action,1432272939 +177665,122882,charlize theron,1432272945 +177665,122882,dystopian,1432272912 +177665,122882,valhalla,1432272923 +177681,260,cult classic,1437789958 +177681,260,fantasy action,1437789929 +177682,899,classic,1404285063 +177682,899,Gene Kelly,1404285074 +177682,899,movie business,1404285057 +177682,1028,magic,1404285147 +177682,1028,martial arts,1404285123 +177682,1028,surreal,1404285131 +177682,1201,Italian,1404284396 +177682,1201,satirical,1404284426 +177682,1201,spaghetti western,1404284417 +177682,1201,western,1404284407 +177682,1266,gene hackman,1404284506 +177682,1266,lyrical,1404284518 +177682,1266,PROSTITUTES,1404284482 +177682,1617,anti-hero,1404285252 +177682,1617,complicated plot,1404285236 +177682,1617,conspiracy,1404285212 +177682,1617,detective thriller,1404285242 +177682,1617,film noir,1404285228 +177682,1617,neo-noir,1404285231 +177682,1617,suspense,1404285222 +177682,1617,twist ending,1404285209 +177719,2571,action,1420839888 +177719,2571,fantasy,1420839888 +177719,2571,sci-fi,1420839888 +177719,4993,adventure,1423783766 +177719,4993,fantasy,1423783766 +177719,4993,super-hero,1423783766 +177719,5952,adventure,1426026431 +177719,5952,fantasy,1426026431 +177719,5952,super-hero,1426026431 +177719,114713,horror,1415245635 +177722,93840,clever,1453352308 +177722,109487,space,1453352229 +177722,109487,thought-provoking,1453352249 +177732,27611,sci-fi,1425468525 +177732,59315,sci-fi,1425468573 +177740,50,complicated,1388330619 +177740,50,twist ending,1388330578 +177740,50,violence,1388330589 +177740,953,heartwarming,1388330723 +177740,953,long,1388330771 +177742,4211,Jeremy Irons,1365738858 +177759,260,adventure,1439798204 +177759,260,black and white,1439798185 +177759,260,clear morality,1439798195 +177759,260,space,1439798201 +177764,480,dinosaurs,1431776770 +177764,480,richard attenborough,1431776770 +177764,480,tx,1431776770 +177764,1608,action,1431776822 +177764,1608,aviation,1431776832 +177764,1608,president,1431776812 +177781,22,thriller,1368499998 +177781,29,dark,1368499625 +177781,31,inspirational,1368499782 +177781,111,dark,1368499625 +177781,111,mental illness,1368499803 +177781,157,politics,1368499954 +177781,161,tense,1368499984 +177781,216,stupid,1368499971 +177781,319,black comedy,1306210590 +177781,319,dark comedy,1306210609 +177781,319,Ewan McGregor,1306210612 +177781,319,Nudity (Topless - Brief),1306210595 +177781,440,politics,1368499954 +177781,474,tense,1368499984 +177781,519,franchise,1368499710 +177781,555,ensemble cast,1368499657 +177781,555,violent,1368500013 +177781,832,tense,1368499984 +177781,832,thriller,1368499998 +177781,861,police,1368499936 +177781,913,black and white,1368499567 +177781,922,black and white,1368499567 +177781,946,nazis,1368499849 +177781,1089,violent,1368500014 +177781,1095,ensemble cast,1368499657 +177781,1175,dark,1368499625 +177781,1206,violent,1368500014 +177781,1214,tense,1368499984 +177781,1228,oscar (best cinematography),1368499907 +177781,1248,black and white,1368499567 +177781,1262,ensemble cast,1368499657 +177781,1266,oscar (best cinematography),1368499907 +177781,1302,father-son relationship,1368499697 +177781,1357,father-son relationship,1368499697 +177781,1357,mental illness,1368499803 +177781,1390,politics,1368499954 +177781,1396,ensemble cast,1368499657 +177781,1464,mystery,1368499826 +177781,1597,thriller,1368499998 +177781,1610,thriller,1368499999 +177781,1945,black and white,1368499567 +177781,1950,police,1368499936 +177781,1953,oscar (best cinematography),1368499907 +177781,1954,oscar (best cinematography),1368499907 +177781,2024,christianity,1368499602 +177781,2026,high school,1368499752 +177781,2058,tense,1368499984 +177781,2076,dark,1368499625 +177781,2076,SUBURBAN DYSFUNCTION,1306210692 +177781,2082,inspirational,1368499782 +177781,2115,father-son relationship,1368499697 +177781,2335,stupid,1368499971 +177781,2353,thriller,1368499999 +177781,2383,police,1368499936 +177781,2442,mental illness,1368499803 +177781,2490,violent,1368500014 +177781,2500,high school,1368499752 +177781,2882,nazis,1368499849 +177781,2888,high school,1368499752 +177781,2919,politics,1368499954 +177781,2944,ensemble cast,1368499657 +177781,2959,violent,1368500014 +177781,2985,violent,1368500014 +177781,2991,assassin,1306210492 +177781,2991,James Bond,1306210483 +177781,2997,black comedy,1306211071 +177781,2997,Charlie Kaufman,1306211079 +177781,2997,psychology,1306211095 +177781,2997,quirky,1306211077 +177781,2997,twist ending,1306211085 +177781,3044,mystery,1368499826 +177781,3146,stupid,1368499971 +177781,3178,inspirational,1368499782 +177781,3256,tense,1368499984 +177781,3256,thriller,1368499998 +177781,3273,franchise,1368499710 +177781,3362,police,1368499936 +177781,3435,black and white,1368499567 +177781,3440,franchise,1368499710 +177781,3468,black and white,1368499567 +177781,3519,nazis,1368499849 +177781,3683,dark,1368499625 +177781,3683,deadpan,1306210658 +177781,3683,surprise ending,1306210643 +177781,3980,inspirational,1368499782 +177781,4019,inspirational,1368499782 +177781,4306,pixar,1368499920 +177781,4865,dark,1368499625 +177781,4865,mystery,1368499826 +177781,5106,high school,1368499752 +177781,5107,nazis,1368499849 +177781,5218,pixar,1368499920 +177781,5363,high school,1368499752 +177781,5444,pixar,1368499920 +177781,5785,stupid,1368499971 +177781,5989,father-son relationship,1368499697 +177781,6323,mystery,1368499826 +177781,6537,franchise,1368499710 +177781,6808,nazis,1368499849 +177781,7153,oscar (best cinematography),1368499907 +177781,8158,undercover cop,1306210945 +177781,8360,pixar,1368499920 +177781,8781,politics,1368499954 +177781,33660,inspirational,1368499782 +177781,33893,comedy,1306210775 +177781,51540,police,1368499936 +177781,53121,franchise,1368499710 +177781,55290,police,1368499936 +177781,59429,nudity (topless - notable),1368499886 +177781,59784,pixar,1368499920 +177781,63113,franchise,1368499710 +177781,64622,nazis,1368499849 +177781,74458,mystery,1368499826 +177784,1,pixar,1140403371 +177784,10,bond,1140403870 +177784,16,mafia,1140402961 +177784,26,shakespeare,1140403159 +177784,47,serial killer,1140403763 +177784,110,biopic,1140403468 +177784,111,neo-noir,1140402936 +177784,153,comic book,1140403745 +177784,153,sequel,1140403745 +177784,260,spielberg/lucas,1140403527 +177784,296,neo-noir,1140403254 +177784,356,biopic,1140403298 +177784,364,disney,1140403774 +177784,377,chase,1140403635 +177784,380,schwarzenegger,1140403565 +177784,390,camp,1140401671 +177784,412,costume drama,1140402973 +177784,457,chase,1140403645 +177784,457,tv series,1140403451 +177784,480,spielberg/lucas,1140403508 +177784,527,biopic,1140403586 +177784,527,holocaust,1140403599 +177784,527,spielberg/lucas,1140403586 +177784,588,disney,1140403483 +177784,589,schwarzenegger,1140403555 +177784,590,biopic,1140403687 +177784,592,comic book,1140403419 +177784,593,serial killer,1140403284 +177784,595,disney,1140403752 +177784,608,black comedy,1140403609 +177784,750,black comedy,1140401329 +177784,858,mafia,1140401771 +177784,898,screwball,1140402124 +177784,901,astaire/kelly musical,1140401705 +177784,904,hitchcock,1140402185 +177784,908,hitchcock,1140402057 +177784,909,black comedy,1140401253 +177784,920,epic,1140401784 +177784,923,biopic,1140401662 +177784,924,head movie,1140401060 +177784,935,astaire/kelly musical,1140401426 +177784,948,epic,1140402433 +177784,951,screwball,1140401794 +177784,953,x-mas movie,1140401898 +177784,955,screwball,1140401312 +177784,968,man vs. beast,1140402051 +177784,969,road picture,1140401147 +177784,1034,camp,1140401685 +177784,1034,neo-noir,1140401685 +177784,1076,ghost story,1140401858 +177784,1097,spielberg/lucas,1140403862 +177784,1136,spoof,1140402035 +177784,1193,message picture,1140402113 +177784,1198,spielberg/lucas,1140403770 +177784,1210,spielberg/lucas,1140403575 +177784,1213,mafia,1140402905 +177784,1217,shakespeare,1140402178 +177784,1219,hitchcock,1140402131 +177784,1221,mafia,1140401776 +177784,1228,boxing drama,1140402171 +177784,1230,screwball,1140401186 +177784,1251,meta-movie,1140401106 +177784,1252,neo-noir,1140401321 +177784,1260,german expressionism,1140402008 +177784,1270,spielberg/lucas,1140403802 +177784,1272,biopic,1140401953 +177784,1284,head movie,1140401486 +177784,1333,hitchcock,1140401617 +177784,1345,camp,1140401627 +177784,1345,hitchcockian,1140401627 +177784,1348,german expressionism,1140401991 +177784,1387,man vs. beast,1140402022 +177784,2028,spielberg/lucas,1140403853 +177784,2067,epic,1140402412 +177784,2200,costume drama,1140403069 +177784,2848,shakespeare,1140403160 +177784,2997,head movie,1140403906 +177784,3801,courtroom drama,1140400836 +177784,4024,costume drama,1140403040 +177784,4298,caper,1140401008 +177784,5289,boxing drama,1140402835 +177784,5902,head movie,1140403921 +177784,6064,boxing drama,1140402858 +177784,6254,screwball,1140404065 +177784,7069,shakespeare,1140403137 +177784,7243,epic,1140402376 +177784,7361,head movie,1140403934 +177784,7766,shakespeare,1140403108 +177784,8033,caper,1140400800 +177784,8849,camp,1140403076 +177784,8910,head movie,1140403946 +177784,30812,biopic,1140402945 +177784,30850,shakespeare,1140403123 +177784,87085,air cargo,1422632313 +177784,87085,airplane crash,1422632313 +177784,87085,all-star cast,1422632313 +177785,260,Boring,1441372367 +177785,111921,Interesting,1441372485 +177789,6957,black comedy,1219316287 +177796,1219,creepy,1240969516 +177796,1219,serial killer,1240969520 +177796,1219,tense,1240969519 +177796,2287,ants,1453257641 +177796,2287,Classic monster,1453257643 +177796,2781,breaking the fourth wall,1448164264 +177796,2781,Vincent Price,1448164259 +177796,3639,Britt Ekland,1448164227 +177796,3639,Christopher Lee,1448164211 +177796,3639,Herve Villechaize,1448164216 +177796,3639,Roger Moore,1448164223 +177796,5163,dreamlike,1448164418 +177796,6460,Anthony Perkins,1230050832 +177796,8125,atmospheric,1448164991 +177796,8125,dreamlike,1448164997 +177796,8125,F.W. Murnau,1448165006 +177796,8125,stylized,1448164993 +177796,32792,Michelangelo Antonioni,1283107408 +177796,32792,Monica Vitti,1283107405 +177796,40467,christopher lee,1448164305 +177796,40467,peter cushing,1448164316 +177796,40887,Casey Affleck,1240969609 +177796,40887,depressing,1240969612 +177796,54978,Martin Freeman,1230051698 +177796,54978,Penelope Cruz,1230051698 +177796,63072,Charlize Theron,1264916999 +177796,63072,Guy Pearce,1264917031 +177796,63072,Molly Parker,1264916988 +177796,63072,post-apocalyptic,1264916995 +177796,63072,The End,1264917010 +177796,63072,Viggo Mortensen,1264916985 +177796,72176,Kevin Corrigan,1263952723 +177796,72176,Patton Oswalt,1263952721 +177796,73211,innovative,1448164455 +177796,77421,Catherine Keener,1279419552 +177796,77421,John C. Reilly,1279419542 +177796,77421,Jonah Hill,1279419555 +177796,77421,Marisa Tomei,1279419545 +177796,77421,Matt Walsh,1279419549 +177796,77455,Banksy,1276926784 +177796,77455,Shepard Fairey,1276926787 +177796,77455,Thierry Guetta,1276926790 +177796,77561,audience intelligence underestimated,1277600046 +177796,77561,bad science,1277600034 +177796,77561,Robert Downey Jr.,1277600039 +177796,77561,Sam Rockwell,1277600026 +177796,77561,Scarlett Johansson,1277600028 +177796,78574,Jennifer Lawrence,1280385343 +177796,78574,John Hawkes,1280385345 +177796,78679,Casey Affleck,1284331701 +177796,78679,Jessica Alba,1284331712 +177796,78679,Kate Hudson,1284331705 +177796,78679,Michael Winterbottom,1284331709 +177796,79132,Ellen Page,1280385315 +177796,79132,Joseph Gordon-Levitt,1280385317 +177796,79132,Leonardo DiCaprio,1280385313 +177796,79132,Tom Hardy,1280385311 +177796,79132,visually appealing,1280385319 +177796,80463,Bechdel Test:Fail,1286645377 +177796,81932,Christian Bale,1299463832 +177796,82459,Coen Brothers,1299463818 +177796,82459,Jeff Bridges,1299463795 +177796,82459,Josh Brolin,1299463814 +177796,82459,Matt Damon,1299463800 +177796,82459,not very Coen-y,1299463802 +177796,82459,revenge,1299463808 +177796,82461,daft punk,1293040923 +177796,82461,Jeff Bridges,1293040915 +177796,86190,assassin,1305344080 +177796,86190,beautiful cinematography,1305344078 +177796,86190,Cate Blanchett,1305344074 +177796,86190,Eric Bana,1305344088 +177796,86190,Joe Wright,1305344086 +177796,86190,Saoirse Ronan,1305344076 +177796,86320,beautiful,1320855130 +177796,86320,Charlotte Gainsbourg,1320855123 +177796,86320,Kirsten Dunst,1320855125 +177796,88744,James Franco,1318176796 +177796,89470,Steven Soderbergh,1319249970 +177796,89492,baseball,1333470685 +177796,89492,Brad Pitt,1333470682 +177796,89492,Philip Seymour Hoffman,1333470684 +177796,90057,Jessica Chastain,1320855149 +177796,90057,Michael Shannon,1320855142 +177796,90596,roger corman,1448164366 +177796,90866,Ben Kingsley,1333470710 +177796,90866,creepy robot,1333470708 +177796,90866,Sacha Baron Cohen,1333470706 +177796,92793,fairy tale,1448165101 +177796,94864,Idris Elba,1340850481 +177796,94864,Michael Fassbender,1340850474 +177796,94864,Noomi Rapace,1340850477 +177796,109448,Iván Zulueta,1448165024 +177796,128838,cinematography,1448164478 +177796,139644,benicio del toro,1448164159 +177796,139644,emily blunt,1448164163 +177796,139644,josh brolin,1448164167 +177797,260,Star Wars,1435611408 +177798,110,epic,1176420301 +177798,110,stirring,1176420304 +177800,293,beautiful,1242571099 +177800,293,love story,1242571135 +177800,293,touching,1242571105 +177800,2959,imaginary friend,1242570962 +177800,2959,mental illness,1242571018 +177800,2959,philosophy,1242571028 +177800,3030,Akira Kurosawa,1242571266 +177800,3030,Over the top,1242571253 +177800,3030,sword fighting,1242571263 +177800,3030,Toshiro Mifune,1242571216 +177800,4878,alternate timeline,1242570890 +177800,4878,dreamlike,1242570842 +177800,4878,imaginary friend,1242570862 +177800,4878,mental illness,1242570881 +177800,5971,feel good movie,1242571164 +177800,5971,great soundtrack,1242571178 +177800,5971,kids and family,1242571181 +177800,30820,Disturbing and moving,1242571332 +177800,30820,honest,1242571336 +177800,48394,fairy tale,1242571382 +177800,48394,fantasy,1242571384 +177800,48394,imagination,1242571393 +177800,48394,violence,1242571388 +177800,48394,world war II,1242571390 +177800,61240,based on a book,1242571441 +177800,61240,swedish,1242571447 +177800,61240,vampire,1242571438 +177811,62,music,1163221006 +177811,101,quirky,1163220873 +177811,260,nerdy,1163221832 +177811,337,coming of age,1163222028 +177811,410,quirky,1163220888 +177811,497,cute,1163221729 +177811,509,attachment,1163220313 +177811,509,music,1163221365 +177811,509,sexuality,1163221375 +177811,524,inspiring sports movie,1163221451 +177811,551,Christmas,1165346651 +177811,802,clarivoyance,1163220974 +177811,830,women,1163220592 +177811,953,utopia,1163220349 +177811,1059,colourful,1163220920 +177811,1088,coming of age,1163222072 +177811,1088,cute,1163221778 +177811,1196,nerdy,1163221832 +177811,1197,nerdy,1163221836 +177811,1197,quirky,1163220529 +177811,1203,social psychology,1163220891 +177811,1210,nerdy,1163221829 +177811,1243,quirky,1163220700 +177811,1265,clarivoyance,1163221331 +177811,1265,cute,1163221742 +177811,1265,utopia,1163221741 +177811,1271,women,1163220364 +177811,1288,quirky,1163220934 +177811,1307,cute,1163221707 +177811,1449,quirky,1163220656 +177811,1639,sexuality,1163220153 +177811,1682,alternate reality,1271375501 +177811,1682,cerebral,1271375508 +177811,1682,drama,1271375510 +177811,1682,dystopia,1271375512 +177811,1682,Jim Carrey,1271375530 +177811,1682,philosophy,1271375526 +177811,1682,social commentary,1271375524 +177811,1682,voyeurism,1271375522 +177811,1747,politics,1163221538 +177811,1956,depression,1163220982 +177811,2124,quirky,1163220885 +177811,2266,clarivoyance,1163220842 +177811,2294,capitalism,1163221926 +177811,2294,coming of age,1163221964 +177811,2316,women,1163220973 +177811,2321,attachment,1163221715 +177811,2321,coming of age,1163222141 +177811,2321,utopia,1163220294 +177811,2357,faith,1163220835 +177811,2395,coming of age,1163222129 +177811,2395,notable soundtrack,1206549357 +177811,2395,quirky,1163220215 +177811,2413,quirky,1163221908 +177811,2502,quirky,1163220719 +177811,2691,attachment,1163221864 +177811,2691,music,1163220559 +177811,2693,quirky,1163220932 +177811,2723,quirky,1163220749 +177811,2739,race,1163220384 +177811,2739,women,1163220391 +177811,2774,sexuality,1163220876 +177811,2858,attachment,1271375827 +177811,2858,coming of age,1271375828 +177811,2858,midlife crisis,1271375837 +177811,2858,narrated,1271375841 +177811,2858,Nudity (Topless - Notable),1271375856 +177811,2858,sexuality,1271375829 +177811,2858,social commentary,1271375846 +177811,2858,surrealism,1271375848 +177811,2858,thought-provoking,1271375849 +177811,2858,violence,1271375851 +177811,2959,capitalism,1163220816 +177811,3175,parody,1163220809 +177811,3178,race,1163221029 +177811,3255,sisters,1215795742 +177811,3317,coming of age,1163221954 +177811,3317,sexuality,1163220650 +177811,3786,coming of age,1163221976 +177811,3786,cute,1163221911 +177811,3786,sexuality,1163220618 +177811,3844,women,1163220516 +177811,3882,inspiring sports movie,1163221459 +177811,3911,quirky,1163220414 +177811,3914,sexuality,1163221179 +177811,3967,coming of age,1163221975 +177811,3967,gender,1163220627 +177811,3996,colourful,1163220380 +177811,4014,colourful,1163222081 +177811,4014,cute,1163221782 +177811,4226,attachment,1163221849 +177811,4248,capitalism,1163221511 +177811,4248,cute,1163221875 +177811,4308,Australian,1271375599 +177811,4308,colourful,1271375597 +177811,4308,jealousy,1271375601 +177811,4308,lyrical,1271375603 +177811,4308,musical,1271375605 +177811,4308,passionate,1271375630 +177811,4308,quirky,1271375632 +177811,4308,sensual,1271375636 +177811,4308,sentimental,1271375639 +177811,4308,Sexualized violence,1271375642 +177811,4308,stylized,1271375645 +177811,4308,wired 50 greatest soundtracks,1271375647 +177811,4474,women,1163220631 +177811,4641,attachment,1163221753 +177811,4641,coming of age,1163222059 +177811,4641,quirky,1163220354 +177811,4642,music,1163220781 +177811,4642,sexuality,1163220781 +177811,4678,quirky,1163220928 +177811,4816,quirky,1163220902 +177811,4886,cute,1163221852 +177811,4973,beautifully filmed,1271375962 +177811,4973,coming of age,1271375958 +177811,4973,cult film,1271375968 +177811,4973,fairy tale,1271375970 +177811,4973,feel-good,1271375972 +177811,4973,idealism,1271375975 +177811,4973,inspirational,1271375978 +177811,4973,music,1271375983 +177811,4973,notable soundtrack,1271375981 +177811,4973,Paris,1271375985 +177811,4973,quirky,1271375960 +177811,4973,romance,1271375987 +177811,4973,surreal,1271375989 +177811,4973,visually appealing,1271375991 +177811,4973,whimsical,1271375959 +177811,4979,Ben Stiller,1271375546 +177811,4979,Bill Murray,1271375550 +177811,4979,black comedy,1271375553 +177811,4979,dark comedy,1271375556 +177811,4979,dark humor,1271375559 +177811,4979,dysfunctional family,1271375560 +177811,4979,ensemble cast,1271375563 +177811,4979,family dynamics,1271375566 +177811,4979,Gene Hackman,1271375570 +177811,4979,great soundtrack,1271375572 +177811,4979,narrated,1271375575 +177811,4979,Owen Wilson,1271375584 +177811,4979,quirky,1271375548 +177811,4979,stylized,1271375580 +177811,4979,Wes Anderson,1271375583 +177811,4979,witty,1271375581 +177811,5135,colourful,1163220337 +177811,5135,music,1163221294 +177811,5135,sexuality,1163220337 +177811,5222,cute,1163221865 +177811,5222,sexuality,1163220568 +177811,5298,quirky,1163221032 +177811,5902,quirky,1163220498 +177811,5992,1950s housewives,1271375772 +177811,5992,AIDS,1271375773 +177811,5992,attachment,1271375745 +177811,5992,based on a book,1271375776 +177811,5992,depression,1271375749 +177811,5992,intellectual,1271375780 +177811,5992,lesbian,1271375753 +177811,5992,lgbt,1271375755 +177811,5992,mental illness,1271375783 +177811,5992,Meryl Streep,1271375759 +177811,5992,Nicole Kidman,1271375761 +177811,5992,nonlinear,1271375762 +177811,5992,queer,1271375764 +177811,5992,suicide,1271375766 +177811,5992,Virginia Woolf,1271375767 +177811,5992,women,1271375746 +177811,6188,quirky,1163220986 +177811,6296,Christopher Guest,1271375659 +177811,6296,eugene levy,1271375696 +177811,6296,folk music,1271375686 +177811,6296,Fred Willard,1271375697 +177811,6296,Harry Shearer,1271375699 +177811,6296,Michael McKean,1271375700 +177811,6296,mockumentary,1271375669 +177811,6296,music business,1271375672 +177811,6296,quirky,1271375660 +177811,6296,satire,1271375675 +177811,6367,1960s,1271375799 +177811,6367,Chick Flick,1271375796 +177811,6367,colourful,1271375793 +177811,6367,David Hyde Pierce,1271375818 +177811,6367,New York City,1271375806 +177811,6367,Renée Zellweger,1271375810 +177811,6367,retro,1271375815 +177811,6385,coming of age,1271375419 +177811,6385,destiny,1271375429 +177811,6385,drama,1271375475 +177811,6385,Great score,1271375478 +177811,6385,maori,1271375445 +177811,6385,New Zealand,1271375447 +177811,6385,women,1271375421 +177811,6881,quirky,1163220712 +177811,6942,cute,1163220767 +177811,6974,quirky,1163221045 +177811,7090,colourful,1163220581 +177811,7090,violence,1163221517 +177811,7147,colourful,1163222088 +177811,7147,cute,1163221782 +177811,7147,quirky,1163220402 +177811,7361,attachment,1163221892 +177811,7361,colourful,1163220603 +177811,7361,quirky,1163220603 +177811,8010,race,1163220709 +177811,8580,Bernadette Peters,1271375712 +177811,8580,campy,1271375714 +177811,8580,fairy tale,1271375716 +177811,8580,fairy tales,1271375722 +177811,8580,filmed play,1271375725 +177811,8580,musical,1271375731 +177811,8580,Stephen Sondheim,1271375733 +177811,8784,coming of age,1163222066 +177811,8784,quirky,1163220358 +177811,8910,corporate culture,1280428414 +177811,8910,detective,1280428417 +177811,8910,Dustin Hoffman,1280428419 +177811,8910,existentialism,1280428409 +177811,8910,funny,1280428422 +177811,8910,intelligent,1280428424 +177811,8910,Jude Law,1280428429 +177811,8910,philosophy,1280428435 +177811,8910,satire,1280428438 +177811,8910,whimsical,1280428408 +177811,27850,capitalism,1163220647 +177811,27899,attachment,1163221803 +177811,27899,existentialism,1165346620 +177811,30707,inspiring sports movie,1163221503 +177811,30810,quirky,1163220551 +177811,33166,racism,1167174152 +177811,36535,colourful,1163221070 +177811,37729,music,1163221072 +177811,38061,no,1219030577 +177811,39183,sexuality,1163220622 +177811,40819,biography,1205560017 +177811,40826,bohemia,1163222137 +177811,40826,colourful,1163220225 +177811,42004,coming of age,1163221570 +177811,42004,gender,1163221570 +177811,42004,sexuality,1163221570 +177811,44191,colourful,1163394015 +177811,44191,revolution,1163394018 +177811,44195,satire,1167548835 +177811,46578,beauty pageant,1290885819 +177811,46578,comedy,1290885824 +177811,46578,dark comedy,1290885817 +177811,46578,drugs,1290885824 +177811,46578,dysfunctional family,1290885816 +177811,46578,family,1290885825 +177811,46578,feel-good,1290885827 +177811,46578,funny,1290885829 +177811,46578,heartwarming,1290885832 +177811,46578,hilarious,1290885833 +177811,46578,imdb top 250,1290885834 +177811,46578,inspirational,1290885836 +177811,46578,off-beat comedy,1290885839 +177811,46578,quirky,1290885812 +177811,46578,road movie,1290885842 +177811,46578,road trip,1290885843 +177811,46578,satire,1290885845 +177811,46578,social commentary,1290885848 +177811,46578,twist ending,1290885851 +177811,46976,Dustin Hoffman,1271375391 +177811,46976,Emma Thompson,1271375389 +177811,46976,heartbreaking,1271375386 +177811,46976,Maggie Gyllenhaal,1271375365 +177811,46976,metaphysics,1271375384 +177811,46976,quirky romantic,1271375406 +177811,46976,Will Ferrell,1271375368 +177811,46976,writers,1271375409 +177811,46976,writing,1271375370 +177811,49220,subtle humor,1178842182 +177811,56367,comedy,1271375300 +177811,56367,cult film,1271375336 +177811,56367,Ellen Page,1271375304 +177811,56367,excellent script,1271375306 +177811,56367,hilarious,1271375312 +177811,56367,imdb top 250,1271375331 +177811,56367,notable soundtrack,1271375296 +177811,56367,pregnancy,1271375320 +177811,56367,quotable,1271375329 +177811,56367,teenager,1271375324 +177811,56367,teenagers,1271375325 +177811,56367,witty,1271375297 +177811,58191,no,1219030749 +177811,58559,no,1219030782 +177811,61024,no,1219030810 +177811,79132,action,1280428204 +177811,79132,alternate reality,1280428170 +177811,79132,clever,1280428168 +177811,79132,dreamlike,1280428178 +177811,79132,Ellen Page,1280428173 +177811,79132,intellectual,1280428182 +177811,79132,Leonardo DiCaprio,1280428186 +177811,79132,mindfuck,1280428190 +177811,79132,weightlessness,1280428198 +177814,260,classic sci-fi,1440355756 +177814,260,space adventure,1440355744 +177815,2727,Stanley Kubrick,1395331801 +177815,68157,dark comedy,1395329126 +177815,69122,Hangover,1395329148 +177815,80191,Stanley Kubrick,1395331378 +177815,109487,relativity,1433774731 +177815,109487,thought-provoking,1433774726 +177815,109487,twist ending,1433774737 +177823,110,historical,1437317467 +177823,356,courage,1437317550 +177823,356,love,1437317550 +177823,356,social drama,1437317550 +177884,70,Juliette Lewis,1333635092 +177884,70,Quentin Tarantino,1333635074 +177884,70,Salma Hayek,1333635085 +177884,288,controversial,1333633296 +177884,288,dark comedy,1333633293 +177884,288,Juliette Lewis,1333633389 +177884,288,mindfuck,1333633301 +177884,288,Nothing,1333633323 +177884,288,prison,1333633303 +177884,288,psychedelic,1333633305 +177884,288,road trip,1333633307 +177884,288,Woody Harrelson,1333633311 +177884,296,Bruce Willis,1333634782 +177884,296,cult film,1333634787 +177884,296,dark comedy,1333634781 +177884,296,Quentin Tarantino,1333634777 +177884,296,Samuel L. Jackson,1333634775 +177884,1089,Quentin Tarantino,1333634422 +177884,1527,Bruce Willis,1333634187 +177884,1527,Milla Jovovich,1333634183 +177884,2329,disturbing,1333634246 +177884,2329,Edward Norton,1333634250 +177884,2329,powerful ending,1333634675 +177884,2329,racism,1333634684 +177884,2329,thought-provoking,1333634675 +177884,2959,Brad Pitt,1333633411 +177884,2959,dark comedy,1333633440 +177884,2959,Edward Norton,1333633429 +177884,2959,twist ending,1333633435 +177884,3263,basketball,1333635614 +177884,3263,Wesley Snipes,1333635619 +177884,3263,Woody Harrelson,1333635617 +177884,3969,abuse,1333635477 +177884,3969,domestic violence,1333635475 +177884,3969,inspirational,1333635471 +177884,5833,survival,1333635113 +177884,5833,werewolves,1333635116 +177884,6502,post-apocalyptic,1333634280 +177884,6502,zombies,1333634283 +177884,6754,gothic,1333634073 +177884,6754,Kate Beckinsale,1333634070 +177884,6754,vampires,1333634066 +177884,6754,werewolves,1333634064 +177884,7022,controversial,1333633748 +177884,7022,survival,1333633743 +177884,8950,Christian Bale,1333633471 +177884,8950,powerful ending,1333633497 +177884,8950,twist ending,1333633489 +177884,33679,Angelina Jolie,1333635047 +177884,33679,Brad Pitt,1333635057 +177884,33679,erotic tension,1333635061 +177884,42738,heroine in tight suit,1333634110 +177884,52952,coming of age,1333634714 +177884,61350,Vin Diesel,1333635968 +177884,68157,Brad Pitt,1333635162 +177884,68157,Quentin Tarantino,1333635165 +177884,74458,intense,1333633519 +177884,80219,black comedy,1333635125 +177884,90345,remake,1333635223 +177884,90647,Antonio Banderas,1333633649 +177884,90647,talking animals,1333633654 +177884,91323,Jonah Hill,1333635376 +177884,91500,battle royale,1333633706 +177884,91500,intense,1333633698 +177884,91500,Woody Harrelson,1333633702 +177884,91974,ended too soon,1333634096 +177896,37857,Neil Gaiman,1229916247 +177915,103606,characters,1442435764 +177915,103606,feel good movie,1442435779 +177915,103606,heartwarming,1442424502 +177915,108548,not a movie,1451941966 +177952,260,humorous action,1441564684 +177952,260,space fantasy,1441564656 +177968,68358,Unsteady-cam,1243371517 +178003,2571,fight scenes,1448905215 +178003,2571,martial arts,1448905220 +178003,2571,philosophy,1448905223 +178003,2571,thought-provoking,1448905210 +178006,59315,Marvel,1211906688 +178013,296,very good,1417757036 +178019,2571,action,1441398359 +178019,2571,atmospheric,1441398321 +178019,2571,cult film,1441398336 +178019,2571,dystopia,1441398299 +178019,2571,fight scenes,1441398324 +178019,2571,hackers,1441398316 +178019,2571,martial arts,1441398289 +178019,2571,philosophy,1441398292 +178019,2571,sci-fi,1441398306 +178019,2571,science fiction,1441398374 +178019,2571,Special Effects,1441398327 +178019,2571,stylized,1441398333 +178019,2571,surreal,1441398366 +178019,2571,thought-provoking,1441398310 +178019,2571,virtual reality,1441398302 +178019,27773,brutal,1441399583 +178019,27773,disturbing,1441399483 +178078,136972,german,1436119352 +178094,4306,Dessin Anime,1429202544 +178094,4306,very good for kids,1429202553 +178096,3362,Al Pacino,1335113813 +178096,3362,dark comedy,1335113819 +178096,67255,violence,1335059841 +178107,36537,Indie,1173625255 +178113,1917,end of the world,1212038381 +178130,260,Science Fiction,1442084712 +178130,79132,dreams,1443213262 +178130,79132,philosophy,1443213261 +178130,79132,sci-fi,1443213259 +178130,109487,sci-fi,1443213237 +178136,356,main character is simpleminded and has big impact on world,1432672771 +178136,356,meaning of life,1432672771 +178136,356,touching,1432672771 +178138,247,friendship,1436146736 +178138,247,lesbian,1436146750 +178138,247,LGBT,1436146754 +178138,247,murder,1436146760 +178138,247,obsession,1436146788 +178138,247,passionate,1436146762 +178138,247,revenge,1436146739 +178138,3249,femme fatale,1436147974 +178138,3249,nanny,1436147886 +178138,3249,Rebecca De Mornay,1436147881 +178138,3249,revenge,1436147875 +178138,4447,chick flick,1436146828 +178138,4447,Comedy,1436146835 +178138,4447,Reese Witherspoon,1436146824 +178138,6535,reese witherspoon,1436146880 +178138,6535,sequal,1436146893 +178138,7285,Coming of Age,1436148852 +178138,7285,drugs,1436148846 +178138,7285,Evan Rachel Wood,1436148874 +178138,7285,teen,1436148854 +178138,61250,comedy,1436147078 +178138,61250,dumb blonde,1436147064 +178138,61250,female friendship,1436147080 +178138,61250,playboy non bunny,1436147068 +178138,76079,Amanda Seyfried,1436147918 +178138,76079,LGBT,1436147929 +178138,87028,lesbian subtext,1436149088 +178138,87028,thriller,1436149093 +178138,88706,bullying,1436148937 +178138,88706,emily osment,1436148951 +178138,88706,kay panabaker,1436148971 +178138,95650,"""not so perfect""",1436147513 +178138,97550,drugs,1436149151 +178138,112412,"""not so perfect""",1436147482 +178138,112412,siblings,1436148024 +178138,112412,sisters,1436148038 +178138,112412,spoiled brats,1436147492 +178138,113039,based on true story,1436149208 +178138,120759,bullying,1436148980 +178138,136990,"""not so perfect""",1436147381 +178138,136990,femme fatale,1436147397 +178138,136992,abusive girlfriend,1436148193 +178138,136992,abusive wife,1436148177 +178138,136992,based on true story,1436149077 +178138,136992,femme fatale,1436148166 +178138,136992,kelly rowin,1436148215 +178138,136992,patty duke,1436148201 +178138,136996,abusive girlfriend,1436148273 +178138,136996,femme fatale,1436148257 +178138,136996,zoe mclellan,1436148297 +178138,136998,fatal friendship,1436148354 +178138,136998,jealousy,1436148318 +178138,137000,"""not so perfect""",1436147298 +178138,137000,obsession,1436147331 +178138,137000,spoiled brat,1436147373 +178138,137002,babysitter,1436148399 +178138,137002,femme fatale,1436148387 +178138,137002,nanny,1436148383 +178138,137002,sitter,1436148375 +178138,137006,femme fatale,1436148429 +178138,137006,spoiled brat,1436148420 +178138,137008,abusive girlfriend,1436148450 +178138,137008,femme fatale,1436148438 +178138,137010,femme fatale,1436148459 +178138,137010,nanny,1436148469 +178138,137012,christy carlson romano,1436148519 +178138,137012,daycare,1436148531 +178138,137012,femme fatale,1436148488 +178138,137024,femme fatale,1436148760 +178138,137024,nanny,1436148768 +178138,137024,obsession,1436148775 +178138,137026,fatal friendship,1436148797 +178138,137026,obsession,1436148816 +178138,137026,suicide,1436148804 +178138,137028,drugs,1436148905 +178138,137032,"""not so perfect""",1436147251 +178138,137032,femme fatale,1436147271 +178138,137032,nightmare neighbor,1436147285 +178138,137034,drugs,1436149125 +178138,137038,"""not so perfect""",1436147228 +178138,137038,revenge,1436147238 +178138,137042,eating disorder,1436149012 +178138,137044,based on true story,1436149050 +178138,137044,fatal friendship,1436149040 +178138,137046,"""not so perfect""",1436147177 +178138,137046,lust,1436147205 +178138,137046,obsession,1436147216 +178138,137048,"""not so perfect""",1436147126 +178138,137048,jealousy,1436147142 +178138,137048,spoiled brat,1436147161 +178138,137062,NaruSaku,1436146415 +178138,137062,naruto,1436148681 +178138,137062,nruto uzumaki,1436148710 +178138,137062,sakura haruno,1436148695 +178138,137064,based on true story,1436149229 +178147,903,dated,1145533343 +178147,43560,fun,1145533425 +178149,260,action,1440135000 +178149,260,classic sci-fi,1440134985 +178149,296,dark humor,1440135257 +178149,296,Quentin Tarantino,1440135269 +178149,296,Samuel L. Jackson,1440135276 +178149,7502,historical,1440135191 +178149,7502,WWII,1440135167 +178180,1527,Luc Besson,1232020793 +178183,3843,monster,1225763650 +178183,3843,penis,1225763636 +178183,3843,tranny,1225763651 +178184,1276,confrontational,1171771423 +178206,260,action,1442019076 +178206,260,adventure,1442019078 +178206,260,sci-fi,1442019072 +178206,260,space,1442019055 +178206,141688,biopic,1442019181 +178206,141688,gangster,1442019185 +178214,5266,suspenseful,1404549261 +178214,5266,thriller,1404549256 +178232,296,cult film,1207398288 +178232,924,cult film,1207398294 +178232,1206,cult film,1207398301 +178232,6711,"See ""In the Mood for Love""",1207399610 +178232,8949,wine,1163286487 +178232,54259,crude humor,1205409542 +178248,3753,American Revolution,1443648732 +178248,3753,revolution,1443648728 +178248,3753,The United States of America,1443648737 +178248,85025,history,1438363094 +178248,85025,slavery,1438363107 +178248,129229,history,1438362681 +178248,129229,vikings,1438362678 +178353,260,awesome,1442824698 +178353,260,good story,1442824684 +178375,47525,bittersweet,1427055297 +178375,47525,sexuality,1427055297 +178375,47525,thought-provoking,1427055297 +178375,80430,philosophical,1420538843 +178375,80430,thought-provoking,1420538843 +178375,80430,travel,1420538843 +178375,80430,visual appealing,1420538843 +178375,80969,atmospheric,1451327435 +178375,80969,beautiful,1451327480 +178375,80969,dystopia,1451327432 +178375,80969,thought-provoking,1451327424 +178377,260,Star Wars,1434820797 +178377,260,war,1434820807 +178381,8858,Lenght,1308692969 +178381,8858,Music,1308692961 +178403,260,the classic sci fi movie. must see.,1443549986 +178408,3675,Bing Crosby,1244579931 +178408,63082,Final credits,1244333035 +178414,260,cult classic,1439771230 +178414,260,Star Wars,1439771220 +178423,5912,bank robbery,1202758759 +178423,5912,crime,1202758752 +178423,54736,propaganda,1201390686 +178446,318,based on a book,1224639382 +178446,318,Sueños de libertad,1224639307 +178446,527,Holocaust,1224636971 +178461,260,"action, scifi",1443590151 +178461,260,space opera,1443590129 +178474,19,detective,1368643165 +178474,22,detective,1368643165 +178474,22,suspenseful,1368643014 +178474,32,original,1368394625 +178474,39,teen movie,1368642994 +178474,47,great ending,1368643131 +178474,50,excellent script,1368642803 +178474,111,masterpiece,1368642634 +178474,218,women,1368642911 +178474,288,brutality,1368643041 +178474,296,masterpiece,1368642634 +178474,318,great ending,1368643131 +178474,549,musicians,1368642958 +178474,587,supernatural,1368642787 +178474,593,excellent script,1368642802 +178474,724,teen movie,1368642994 +178474,866,neo-noir,1368643060 +178474,904,suspenseful,1368643014 +178474,923,masterpiece,1368642635 +178474,924,masterpiece,1368642635 +178474,1033,unlikely friendships,1368643149 +178474,1088,dancing,1368643090 +178474,1089,original,1368394625 +178474,1172,mentor,1368642617 +178474,1188,dancing,1368643090 +178474,1213,masterpiece,1368642634 +178474,1213,stylish,1368642843 +178474,1219,suspenseful,1368643014 +178474,1241,splatter,1368642884 +178474,1249,stylish,1368642843 +178474,1258,masterpiece,1368642635 +178474,1259,unlikely friendships,1368643149 +178474,1285,teen movie,1368642994 +178474,1307,unlikely friendships,1368643149 +178474,1387,suspenseful,1368643014 +178474,1537,dancing,1368643090 +178474,1617,detective,1368643165 +178474,1617,neo-noir,1368643060 +178474,1704,excellent script,1368642802 +178474,1704,mentor,1368642617 +178474,1784,excellent script,1368642802 +178474,1968,teen movie,1368642994 +178474,2076,neo-noir,1368643060 +178474,2144,teen movie,1368642994 +178474,2194,excellent script,1368642803 +178474,2291,original,1368394625 +178474,2420,mentor,1368642617 +178474,2762,great ending,1368643131 +178474,2858,excellent script,1368642802 +178474,2863,musicians,1368642958 +178474,2866,musicians,1368642958 +178474,3005,detective,1368643165 +178474,3083,women,1368642911 +178474,3418,women,1368642911 +178474,3499,suspenseful,1368643014 +178474,3791,dancing,1368643090 +178474,4085,detective,1368643165 +178474,4144,melancholic,1368642529 +178474,4878,original,1368394625 +178474,5065,supernatural,1368642787 +178474,5693,dancing,1368643090 +178474,6731,splatter,1368642884 +178474,6873,screwball comedy,1368643185 +178474,7153,great ending,1368643131 +178474,32587,brutality,1368643041 +178474,33834,splatter,1368642884 +178474,34437,melancholic,1368642529 +178474,53123,musicians,1368642958 +178474,70451,Norway,1264177057 +178498,318,prison escape,1241027390 +178498,318,reflective,1241027400 +178498,858,crime,1241027370 +178498,858,Mafia,1241027363 +178498,858,organized crime,1241027375 +178498,2028,war,1241027310 +178498,2028,World War II,1241027319 +178498,6936,best christmas movie,1241027483 +178498,6936,Christmas,1241027473 +178498,6936,Will Ferrell,1241027476 +178498,30749,ethnic conflict,1241027346 +178498,30749,factual,1241027336 +178498,30749,true story,1241027341 +178498,54503,comedy,1241027252 +178498,54503,crude,1241027265 +178498,54503,funny,1241027269 +178498,54503,hilarious,1241027256 +178498,64614,ageism,1241027440 +178498,64614,racism,1241027436 +178498,64614,revenge,1241027447 +178502,6751,filmed in Ayr,1186883414 +178502,54286,Robert Ludlum,1186883339 +178528,81788,Russell Crowe,1296463684 +178528,100507,alcohol,1437389297 +178528,100507,father-son relationship,1437389297 +178528,100507,naked men,1437389297 +178576,253,cult classic,1448419700 +178576,253,fantasy,1448419719 +178576,253,gothic,1448419698 +178576,253,Nudity (Full Frontal),1448419703 +178576,293,love story,1448419956 +178576,1258,disturbing,1448419586 +178576,1258,dreamlike,1448419609 +178576,1258,mental illness,1448419598 +178576,1258,psychological,1448419600 +178576,1258,visually appealing,1448419588 +178576,2858,coming of age,1448419865 +178576,2858,dark comedy,1448419831 +178576,2858,drugs,1448419842 +178576,2858,loneliness,1448419839 +178576,2858,mental illness,1448419889 +178576,2858,sexuality,1448419847 +178576,2858,thought-provoking,1448419877 +178576,3535,comical violence,1448419441 +178576,3535,dark comedy,1448419405 +178576,3535,Disturbing,1448419436 +178576,3535,humorous,1448419430 +178576,3535,insanity,1448419444 +178576,3535,psychological,1448419433 +178576,3535,psychology,1448419423 +178576,3535,violence,1448419409 +178576,3949,addiction,1448421123 +178576,3949,Nudity (Full Frontal),1448421116 +178576,3949,visually appealing,1448421119 +178576,32587,Action,1448419790 +178576,32587,artistic,1448419772 +178576,32587,atmospheric,1448419774 +178576,32587,Bruce Willis,1448419761 +178576,32587,dark,1448419757 +178576,32587,Nudity (Topless),1448419781 +178576,32587,Quentin Tarantino,1448419751 +178576,32587,surrealism,1448419786 +178576,32587,violence,1448419767 +178576,32587,visually appealing,1448419754 +178576,101088,dark,1448419532 +178576,101088,erotic,1448419537 +178576,101088,psychological thriller,1448419526 +178576,101088,visually stylish,1448419529 +178576,147781,action,1448420754 +178576,147781,artistic,1448420725 +178576,147781,dark,1448420545 +178576,147781,disturbing,1448420713 +178576,147781,erotic,1448420591 +178576,147781,forbidden love,1448420533 +178576,147781,love story,1448420613 +178576,147781,lust,1448420503 +178576,147781,psycho,1448420521 +178576,147781,psychological thriller,1448420642 +178576,147781,thriller,1448420484 +178576,147781,violence,1448420659 +178576,147781,visually appealing,1448420682 +178584,260,futuristic,1441014748 +178584,260,space action,1441014740 +178596,260,birth of great scifi ideas,1433208347 +178596,260,oldie but goodie,1433208291 +178596,260,Saturn Award (Best Science Fiction Film),1433208267 +178596,1291,archaeology,1433208482 +178596,1291,Harrison Ford,1433208470 +178596,1291,witty,1433208463 +178596,2959,atmospheric,1433208672 +178596,2959,disturbing,1433208670 +178596,2959,philosophical,1433208676 +178596,2959,twist ending,1433208667 +178596,58559,Batman,1433208538 +178596,58559,gritty,1433208522 +178596,58559,Heath Ledger,1433208518 +178596,58559,music,1433208525 +178596,58559,thriller,1433208528 +178596,58559,violence,1433208519 +178603,111362,fighting,1430020178 +178603,111362,superhero,1430020178 +178603,111362,teamwork,1430020178 +178641,3477,Cult classic,1176969782 +178695,356,interesting,1424760513 +178695,356,positive,1424760513 +178695,356,touching story,1424760513 +178695,4973,beautifully filmed,1424760161 +178695,4973,Paris,1424760163 +178700,7132,cabin,1440002139 +178700,7132,Marx brothers,1440002109 +178700,7132,opera,1440002112 +178700,30749,Africa,1440002009 +178700,30749,ethnic conflict,1440001992 +178700,30749,genocide,1440001983 +178756,114060,crime,1421089114 +178756,114060,thriller,1421089131 +178761,56949,chick flick,1314479605 +178761,56949,love story,1314479609 +178761,56949,romance,1314479630 +178772,260,fantasy,1439771371 +178772,260,Science Fiction,1439771366 +178780,260,epic adventure,1439787961 +178780,260,Saga,1439787967 +178786,3996,overrated,1145674284 +178786,4848,great movie,1150651502 +178786,42004,gender identity,1145617204 +178795,89386,grunge,1424368728 +178795,89386,music,1424368728 +178795,89386,seattle,1424368728 +178838,1199,dystopia,1154020994 +178838,1199,Gilliam,1154020991 +178838,1199,surreal,1154020990 +178838,1289,no dialogue,1154021216 +178838,1676,satire,1154083888 +178838,1917,Bruce Willis,1154020498 +178838,4572,Tokyo,1154086840 +178838,5445,Philip K. Dick,1154020494 +178838,5445,Steven Spielberg,1154020490 +178838,5643,no dialogue,1154021224 +178838,6078,Clint Eastwood,1154110655 +178838,26285,surreal,1154022341 +178902,72165,Cast,1299556913 +178902,72165,Characters,1299556955 +178902,72165,Costumes,1299556948 +178902,72165,execution,1299556969 +178902,72165,Music,1299556951 +178902,72165,Script,1299556920 +178902,72165,Special Effects,1299556944 +178939,1,pixar,1437324533 +178939,6,police,1428804582 +178939,21,based on a book,1428259099 +178939,34,based on a book,1428260046 +178939,39,teen movie,1435680701 +178939,153,Batman,1435772967 +178939,153,DC Comics,1435772969 +178939,153,superhero,1435772965 +178939,158,ghosts,1437328753 +178939,253,based on a book,1438634177 +178939,253,vampires,1438462627 +178939,260,aliens,1428261428 +178939,260,robots,1428261431 +178939,260,space,1428347409 +178939,261,based on a book,1428260323 +178939,353,revenge,1428887037 +178939,356,vietnam war,1437516551 +178939,441,teen movie,1436471085 +178939,541,based on a book,1428249785 +178939,541,robots,1428263115 +178939,589,robots,1428263085 +178939,589,time travel,1428263092 +178939,592,Batman,1435772979 +178939,592,DC Comics,1435772981 +178939,592,superhero,1435772977 +178939,648,espionage,1435604294 +178939,743,parody,1435604286 +178939,778,based on a book,1428249754 +178939,908,espionage,1437931724 +178939,911,public domain,1434653576 +178939,932,remake,1433970368 +178939,953,public domain,1430839630 +178939,968,public domain,1430839724 +178939,968,zombies,1428262524 +178939,972,public domain,1430839673 +178939,1036,best villains,1428425480 +178939,1073,based on a book,1428260812 +178939,1183,based on a book,1434918452 +178939,1193,based on a book,1428249919 +178939,1193,best villains,1428425447 +178939,1196,aliens,1428261451 +178939,1196,robots,1428261454 +178939,1196,space,1428347535 +178939,1206,based on a book,1428249484 +178939,1208,Vietnam war,1430965983 +178939,1210,aliens,1428261460 +178939,1210,robots,1428261462 +178939,1210,space,1428347551 +178939,1215,campy,1436384381 +178939,1215,TIME TRAVEL,1436384388 +178939,1219,based on a book,1428250095 +178939,1219,best villains,1428425491 +178939,1220,car chase,1428271859 +178939,1220,road trip,1429125323 +178939,1222,based on a book,1428249845 +178939,1222,Vietnam war,1430965997 +178939,1228,based on a book,1432843532 +178939,1240,robots,1428263151 +178939,1240,time travel,1428263154 +178939,1241,campy,1436384410 +178939,1241,zombies,1428262354 +178939,1249,espionage,1435604270 +178939,1263,Vietnam War,1430965784 +178939,1265,time travel,1428272809 +178939,1270,time travel,1428272748 +178939,1321,werewolves,1438651874 +178939,1342,slasher,1436834143 +178939,1377,Batman,1435773011 +178939,1377,DC Comics,1435773013 +178939,1377,superhero,1435773009 +178939,1407,parody,1436835720 +178939,1407,slasher,1436835648 +178939,1483,based on a book,1428260651 +178939,1517,parody,1437269450 +178939,1562,superhero,1436217596 +178939,1884,based on a book,1428260908 +178939,1924,aliens,1434768799 +178939,1924,zombies,1434768802 +178939,1953,car chase,1428272076 +178939,1953,police,1428272071 +178939,1968,teen movie,1435680733 +178939,1974,slasher,1436833422 +178939,1997,based on a book,1428260090 +178939,2000,police,1428804619 +178939,2011,time travel,1429149107 +178939,2012,time travel,1429411573 +178939,2028,World War II,1437931889 +178939,2134,teen movie,1436471088 +178939,2167,vampires,1428261947 +178939,2174,ghosts,1437328714 +178939,2355,Pixar,1437324576 +178939,2501,based on a book,1428259174 +178939,2550,based on a book,1428260243 +178939,2550,ghosts,1437328566 +178939,2550,paranormal,1437328552 +178939,2572,Teen movie,1435680828 +178939,2628,aliens,1428261391 +178939,2628,robots,1428261393 +178939,2628,space,1428347603 +178939,2664,aliens,1435372862 +178939,2683,parody,1437269456 +178939,2692,time travel,1428272860 +178939,2706,teen movie,1436470946 +178939,2716,ghosts,1437328624 +178939,2716,paranormal,1437327941 +178939,2747,campy,1436384342 +178939,2747,public domain,1430839701 +178939,2762,ghosts,1437328703 +178939,2762,paranormal,1437328701 +178939,2795,road trip,1429125304 +178939,2899,public domain,1430839209 +178939,2916,campy,1436384423 +178939,2944,based on a book,1428804811 +178939,2944,World War II,1428804375 +178939,2959,based on a book,1428284141 +178939,2985,robots,1428263329 +178939,3022,public domain,1430839160 +178939,3022,silent,1433120884 +178939,3033,space,1428347562 +178939,3066,World War II,1438721094 +178939,3095,based on a book,1428259151 +178939,3114,Pixar,1437324558 +178939,3175,aliens,1428261212 +178939,3175,space,1428347629 +178939,3307,silent,1433120892 +178939,3344,slasher,1436835319 +178939,3462,silent,1433120899 +178939,3468,based on a book,1437158382 +178939,3476,Vietnam War,1430966007 +178939,3494,based on a book,1436736736 +178939,3623,espionage,1435608581 +178939,3629,public domain,1430839184 +178939,3629,silent,1433120822 +178939,3671,parody,1436730999 +178939,3740,campy,1430536916 +178939,3740,martial arts,1430536920 +178939,3793,superhero,1435772748 +178939,3836,World War II,1437931458 +178939,3868,parody,1436731102 +178939,3868,police,1436731123 +178939,3871,based on a book,1434998449 +178939,3994,superhero,1435772614 +178939,4002,road trip,1429125310 +178939,4085,police,1431226618 +178939,4128,vampires,1428261914 +178939,4223,World War II,1437425343 +178939,4440,martial arts,1437943572 +178939,4440,revenge,1437943901 +178939,4533,zombies,1435715979 +178939,4571,time travel,1437947421 +178939,4642,campy,1436384400 +178939,4718,teen movie,1436470977 +178939,4855,police,1428804609 +178939,4857,based on a book,1428259072 +178939,4878,time travel,1428272734 +178939,4886,Pixar,1437324607 +178939,4896,based on a book,1428260178 +178939,4980,time travel,1437947552 +178939,5110,police,1428804551 +178939,5219,zombies,1428262642 +178939,5377,based on a book,1428259838 +178939,5378,aliens,1428261416 +178939,5378,robots,1428261418 +178939,5378,space,1428347599 +178939,5418,car chase,1428271886 +178939,5418,espionage,1435604121 +178939,5445,time travel,1428272841 +178939,5481,parody,1437269552 +178939,5502,aliens,1428261632 +178939,5663,ghosts,1438720354 +178939,5663,paranormal,1438720352 +178939,5663,World War II,1438720370 +178939,5679,paranormal,1437328580 +178939,5679,remake,1428259793 +178939,5771,slasher,1436835553 +178939,5816,based on a book,1428260158 +178939,6157,marvel,1435773038 +178939,6157,superhero,1435773031 +178939,6208,public domain,1430839798 +178939,6333,marvel,1435772948 +178939,6333,superhero,1435772947 +178939,6377,Pixar,1437324635 +178939,6541,vampires,1428262130 +178939,6586,teen movie,1436470973 +178939,6731,zombies,1428262482 +178939,6754,vampires,1428261926 +178939,6754,werewolves,1428261928 +178939,6874,martial arts,1437329166 +178939,6874,revenge,1428886862 +178939,7001,remake,1428259802 +178939,7076,car chase,1428272018 +178939,7076,police,1428272030 +178939,7254,time travel,1428272802 +178939,7373,superhero,1438462551 +178939,7387,zombies,1428262601 +178939,7438,martial arts,1437329150 +178939,7438,revenge,1428886873 +178939,7454,vampires,1428262001 +178939,7454,werewolves,1428262028 +178939,7891,public domain,1430839657 +178939,7892,martial arts,1436908862 +178939,7892,public domain,1436908596 +178939,7893,martial arts,1436980288 +178939,8235,silent,1433120877 +178939,8368,based on a book,1428260166 +178939,8368,time travel,1436729914 +178939,8368,werewolves,1436729865 +178939,8511,silent,1437269639 +178939,8609,silent,1437329936 +178939,8644,robots,1428263069 +178939,8665,car chase,1428271977 +178939,8665,espionage,1435604150 +178939,8807,road trip,1429125275 +178939,8810,aliens,1436107000 +178939,8874,zombies,1428262423 +178939,8961,Pixar,1435772809 +178939,8961,superhero,1435772803 +178939,8965,Based on a book,1428260765 +178939,25750,silent,1433120586 +178939,25755,public domain,1430839744 +178939,25769,public domain,1432562840 +178939,25769,silent,1433120659 +178939,26307,martial arts,1436120955 +178939,26325,Vietnam War,1431017098 +178939,26631,based on a book,1428259874 +178939,27592,revenge,1434853269 +178939,27773,best villains,1428425459 +178939,27773,revenge,1428886839 +178939,30793,based on a book,1428260922 +178939,30793,remake,1428260925 +178939,31878,martial arts,1438462713 +178939,32657,based on a book,1431718871 +178939,33493,aliens,1428261358 +178939,33493,robots,1428261377 +178939,33493,space,1428347608 +178939,33679,espionage,1435604383 +178939,33683,slasher,1436834157 +178939,33794,batman,1435772733 +178939,33794,DC Comics,1435772736 +178939,33794,superhero,1435772729 +178939,34048,aliens,1428261623 +178939,34048,based on a book,1428260782 +178939,34048,remake,1428260786 +178939,37729,ghosts,1437328766 +178939,39715,teen movie,1436470994 +178939,40629,based on a book,1428259395 +178939,40815,based on a book,1428260146 +178939,41566,based on a book,1428250284 +178939,41569,remake,1428259769 +178939,42738,vampires,1428262071 +178939,42738,werewolves,1428262073 +178939,45186,espionage,1435978466 +178939,45499,marvel,1435773024 +178939,45499,superhero,1435773018 +178939,46578,road trip,1429125251 +178939,48043,time travel,1428272835 +178939,48780,based on a book,1428259367 +178939,49772,based on a book,1428260747 +178939,50189,teen movie,1436470981 +178939,50872,pixar,1437324690 +178939,51255,police,1428804508 +178939,53519,car chase,1428272107 +178939,53953,paranormal,1437342897 +178939,53996,robots,1428263141 +178939,54001,based on a book,1428260153 +178939,54286,espionage,1435604106 +178939,54503,Teen movie,1435680750 +178939,54995,zombies,1428262398 +178939,55282,vampires,1437342964 +178939,55820,based on a book,1428249715 +178939,55820,best villains,1428374943 +178939,56339,ghosts,1437328601 +178939,56339,paranormal,1437327967 +178939,56367,teen movie,1436471079 +178939,56782,based on a book,1428260569 +178939,57274,zombies,1428262462 +178939,58559,Batman,1435772676 +178939,58559,best villains,1428425419 +178939,58559,DC Comics,1435772721 +178939,58559,superhero,1435772674 +178939,59429,teen movie,1436470985 +178939,59501,based on a book,1428250301 +178939,61240,based on a book,1428249882 +178939,61240,vampires,1428259012 +178939,61705,police,1428943452 +178939,65126,based on a book,1428260881 +178939,66371,based on a book,1434230608 +178939,68237,space,1436658915 +178939,68954,Pixar,1437324715 +178939,69275,Zombies,1437533380 +178939,69844,based on a book,1428260184 +178939,71304,vampires,1428261891 +178939,71500,werewolves,1436729872 +178939,71700,zombies,1428262491 +178939,71838,revenge,1428886988 +178939,72998,aliens,1428261136 +178939,73106,teen movie,1436470989 +178939,73211,based on a book,1428259266 +178939,73211,zombies,1428259270 +178939,74789,based on a book,1428259940 +178939,74789,remake,1428259954 +178939,76251,superhero,1435772772 +178939,77561,Marvel,1435772795 +178939,77561,Marvel Cinematic Universe,1435772797 +178939,77561,superhero,1435772792 +178939,78499,Pixar,1437324564 +178939,79293,espionage,1435603949 +178939,80281,stand-up comedy,1428248569 +178939,80831,based on a book,1428259783 +178939,80831,remake,1428259778 +178939,81537,road trip,1429125264 +178939,81834,based on a book,1428260189 +178939,82169,based on a book,1428250316 +178939,86332,Marvel,1435772839 +178939,86332,Marvel Cinematic Universe,1435772841 +178939,86332,superhero,1435772835 +178939,86345,stand-up comedy,1428248679 +178939,86377,stand-up comedy,1428248692 +178939,87430,DC Comics,1435773065 +178939,87430,superhero,1435773053 +178939,87876,Pixar,1437324668 +178939,88125,based on a book,1428260199 +178939,88129,car chase,1428272044 +178939,88140,Marvel,1436470029 +178939,88140,Marvel Cinematic Universe,1436710948 +178939,89745,Marvel,1435772783 +178939,89745,Marvel Cinematic Universe,1435772787 +178939,89745,superhero,1435772781 +178939,90376,based on a book,1431049260 +178939,91529,Batman,1435772906 +178939,91529,DC Comics,1435772938 +178939,91529,superhero,1435772903 +178939,94777,aliens,1436106938 +178939,95167,Pixar,1437324725 +178939,97304,espionage,1435604368 +178939,103141,Pixar,1437324624 +178939,104841,space,1428347524 +178939,106072,marvel,1437766276 +178939,106072,Marvel Cinematic Universe,1437766273 +178939,106072,superhero,1437766270 +178939,106782,based on a book,1428881741 +178939,110102,Marvel,1437766034 +178939,110102,Marvel Cinematic Universe,1437766037 +178939,110102,superhero,1437766031 +178939,112852,Marvel,1437766099 +178939,122892,Marvel,1437765938 +178939,122892,superhero,1437765941 +178939,128852,stand-up comedy,1428248718 +178939,131836,stand-up comedy,1428248518 +178939,134853,Pixar,1437324736 +178953,54190,extremely creative,1303800651 +178967,6502,suspense,1383333899 +178967,6502,zombies,1383333914 +178967,54881,1980s,1383334671 +178967,54881,documentary,1383334648 +178967,54881,donkey kong,1383334651 +178967,54881,geek,1383334661 +178967,54881,quirky subculture,1383334657 +178967,54881,stereotypes,1383334689 +178967,54881,underdog,1383334675 +178967,54881,video games,1383334664 +178967,103249,action,1383333791 +178967,103249,novel adaptation,1383333794 +178967,103249,zombies,1383333794 +178974,5971,anime,1440361053 +178974,7153,good movie,1440361022 +178976,6539,adventure,1216558578 +178976,6539,Johnny Depp,1216558576 +178976,60074,superhero,1216558466 +178976,60074,Will Smith,1216558471 +179027,593,hannibal,1424011537 +179027,858,Classic,1424011504 +179032,260,action,1436138165 +179032,260,sci-fi,1436138152 +179073,260,Meet the gang that started it all.,1433992665 +179073,260,Where it all began.,1433992638 +179076,356,historical,1423520862 +179076,356,romantic comedy,1423520862 +179076,356,tom hanks,1423520862 +179076,593,psychological horror,1424262120 +179076,593,psychothriller,1424262120 +179076,593,thriller,1424262120 +179094,260,sci-fi,1431972752 +179094,260,space travel,1431972767 +179098,63082,social commentary,1404846594 +179106,77154,"This movie should have been called ""How Cocaine Ruined Disney""",1357384633 +179154,142959,short story,1443036078 +179174,296,cruel,1143048062 +179174,296,sick,1143048062 +179174,1639,kevin smith,1143045511 +179174,3747,awful,1143047863 +179179,59784,Angelina Jolie,1440934072 +179179,59784,funny,1440934065 +179179,68954,Being old,1440934036 +179179,68954,romance,1440934014 +179179,68954,touching,1440934022 +179179,86347,witty,1440933986 +179179,92535,hilarious,1440933968 +179179,134853,beautiful,1440933951 +179179,134853,joy,1440933939 +179191,19,detective,1367617224 +179191,22,detective,1367617224 +179191,32,great ending,1367617180 +179191,39,teen movie,1367617010 +179191,50,excellent script,1367616846 +179191,112,Hong Kong,1138309161 +179191,218,women,1367616948 +179191,318,great ending,1367617179 +179191,346,musicians,1367616982 +179191,373,neo-noir,1367617133 +179191,491,mentor,1367616768 +179191,522,brutality,1367617099 +179191,549,musicians,1367616982 +179191,741,anime,1174083871 +179191,799,supernatural,1367616820 +179191,858,classic,1451345598 +179191,858,masterpiece,1367616792 +179191,950,detective,1367617224 +179191,1033,unlikely friendships,1367617205 +179191,1069,noir thriller,1367616719 +179191,1088,dancing,1367617154 +179191,1089,stylish,1367616880 +179191,1179,neo-noir,1367617132 +179191,1188,dancing,1367617154 +179191,1206,masterpiece,1367616792 +179191,1212,classic,1139627885 +179191,1241,splatter,1367616917 +179191,1252,noir thriller,1367616719 +179191,1278,Mel Brooks,1182371235 +179191,1284,noir thriller,1367616719 +179191,1344,suspenseful,1367617047 +179191,1537,Japan,1138309222 +179191,1617,neo-noir,1367617133 +179191,1620,detective,1367617224 +179191,1678,women,1367616948 +179191,1704,excellent script,1367616847 +179191,1722,james bond,1174083781 +179191,1809,melancholic,1367616669 +179191,1950,detective,1367617225 +179191,1953,overrated,1175455932 +179191,1968,teen movie,1367617010 +179191,2019,Japan,1138309063 +179191,2019,masterpiece,1367616793 +179191,2144,teen movie,1367617011 +179191,2145,teen movie,1367617011 +179191,2183,Alfred Hitchcock,1438378970 +179191,2183,classic,1438378979 +179191,2376,james bond,1174083775 +179191,2420,mentor,1367616768 +179191,2421,mentor,1367616768 +179191,2485,teen movie,1367617011 +179191,2542,stylish,1367616880 +179191,2670,submarine,1192964240 +179191,2670,World War II,1192964245 +179191,2716,supernatural,1367616819 +179191,2762,great ending,1367617181 +179191,2803,conspiracy theory,1418942095 +179191,2841,supernatural,1367616820 +179191,2866,musicians,1367616982 +179191,2948,james bond,1174083755 +179191,2949,James Bond,1174083751 +179191,2989,james bond,1174083735 +179191,2990,james bond,1174083785 +179191,2991,james bond,1174083725 +179191,3000,anime,1167183315 +179191,3000,Studio Ghibli,1167183329 +179191,3005,detective,1367617224 +179191,3013,splatter,1367616916 +179191,3018,splatter,1367616916 +179191,3159,original,1367616617 +179191,3210,teen movie,1367617012 +179191,3418,women,1367616948 +179191,3435,noir thriller,1367616719 +179191,3499,suspenseful,1367617047 +179191,3594,dancing,1367617154 +179191,3639,james bond,1174083733 +179191,3683,neo-noir,1367617132 +179191,3693,splatter,1367616917 +179191,3791,dancing,1367617154 +179191,3798,supernatural,1367616819 +179191,3918,splatter,1367616917 +179191,3984,james bond,1174083542 +179191,4011,stylish,1367616880 +179191,4019,mentor,1367616768 +179191,4291,women,1367616948 +179191,4443,space,1420340334 +179191,4720,supernatural,1367616820 +179191,4878,original,1367616616 +179191,4881,neo-noir,1367617132 +179191,5017,noir thriller,1367616719 +179191,5251,Lasse Åberg,1325003834 +179191,5385,musicians,1367616982 +179191,5618,Studio Ghibli,1167183295 +179191,5621,Jackie Chan,1169331123 +179191,5693,dancing,1367617154 +179191,5796,james bond,1278852558 +179191,5820,musicians,1367616982 +179191,5872,james bond,1174083791 +179191,6214,brutality,1367617099 +179191,6952,supernatural,1367616820 +179191,7022,Japan,1174083865 +179191,7156,History,1435616551 +179191,7156,reflective,1435616555 +179191,7235,brutality,1367617100 +179191,7569,james bond,1174083760 +179191,7570,james bond,1174083774 +179191,7573,james bond,1174083778 +179191,7728,noir thriller,1367616719 +179191,8253,Studio Ghibli,1187335070 +179191,8961,Animation,1186997446 +179191,8961,family,1186997438 +179191,8961,superhero,1186997444 +179191,26107,american abroad,1436571409 +179191,26107,nobel prize,1436571409 +179191,26107,Stockholm,1342732293 +179191,26107,Sweden,1342732302 +179191,27592,brutality,1367617099 +179191,31658,anime,1167183260 +179191,31658,Studio Ghibli,1167183241 +179191,31878,Hong Kong,1138309135 +179191,45081,video game,1167696423 +179191,48304,Mel Gibson,1172970803 +179191,50872,pixar,1192963774 +179191,53464,Marvel,1208513641 +179191,56174,Remake,1198362815 +179191,59369,unrealistic,1438809051 +179191,63082,excellent script,1367616846 +179191,67087,unlikely friendships,1367617205 +179191,70495,parody,1431870181 +179191,70495,sami,1431870181 +179191,70495,silly,1431870181 +179191,71573,Kate Beckinsale,1426894795 +179191,74795,conspiracy,1429998966 +179191,74795,Iraq War,1429998970 +179191,78517,comedians,1438031985 +179191,78517,growing old,1438031987 +179191,78517,show business,1438031992 +179191,78517,WORK ETHICS,1438031942 +179191,81782,based on a true story,1407492504 +179191,95945,steven seagal,1435616671 +179191,95945,stupid story,1435616671 +179191,95945,violent,1435616671 +179191,103465,1970s,1430537668 +179191,103465,prostitution,1430537668 +179191,103465,swedish,1430537668 +179191,122892,comic book,1442099488 +179191,122892,Marvel,1442099492 +179191,122892,marvel cinematic universe,1442099498 +179191,122892,superhero,1442099477 +179194,103221,australia,1421028525 +179194,103221,comedy,1421028525 +179194,103221,nudity (topless - notable),1421028525 +179207,1193,brilliant,1439213774 +179207,1237,boring,1439213858 +179225,4306,comedy,1453844255 +179225,4306,Funny,1453844202 +179250,260,Outer Space,1441036130 +179250,260,Science Fiction,1441036122 +179268,260,Science Fiction,1437860607 +179268,260,space adventure,1437860598 +179269,632,war movie,1203449696 +179269,4694,Holocaust,1192471854 +179269,4884,Gay,1192471871 +179269,5993,Holocaust,1192471779 +179269,27391,Gay,1192471820 +179269,32025,Holocaust,1192471835 +179269,49910,Holocaust,1192471756 +179307,293,Classic Crime,1197054053 +179307,296,Classic Crime,1197053717 +179307,296,Good dialogues,1197053880 +179307,296,Good soundtrack,1197053835 +179307,296,Quentin Tarantino,1197053924 +179307,356,Classic Comedy,1197054342 +179307,356,Good dialogues,1197054164 +179307,356,Good story,1197054119 +179307,367,Classic Comedy,1197054986 +179307,367,Jim Carey,1197055024 +179307,551,Classic Animation,1197055758 +179307,551,Tim Burton,1197055778 +179307,592,Tim Burton,1197055846 +179307,593,Anthony Hopkins,1197054468 +179307,593,Classic Thriller,1197054428 +179307,593,Hannibal Lecter,1197054447 +179307,648,Classic Thriller,1197055441 +179307,648,Tom Cruise,1197055441 +179307,661,Tim Burton,1197055852 +179307,1089,Quentin Tarantino,1197055626 +179307,1111,France,1197054673 +179307,1111,Good Documentary,1197054673 +179307,1136,Classic Comedy,1197053776 +179307,1136,Good dialogues,1197053793 +179307,1136,MontyPython,1197054005 +179307,1214,Classic Thriller,1197055290 +179307,1240,Arnold Schwarzenegger,1197054521 +179307,1240,Classic Thriller,1197054413 +179307,1391,Tim Burton,1197055854 +179307,1580,Classic Comedy,1197054807 +179307,1580,Good dialogues,1197054807 +179307,1580,Will Smith,1197054824 +179307,2174,Good Comedy,1197055827 +179307,2174,Tim Burton,1197055807 +179307,2324,Good Comedy,1197055088 +179307,2571,Classic Thriller,1197054936 +179307,2762,Bruce Willis,1197055326 +179307,2762,Good Thriller,1197055326 +179307,2959,Classic Crime,1197054233 +179307,3000,Classic Manga,1197054615 +179307,3000,Japan,1197054596 +179307,3000,Studio Ghibli,1197054601 +179307,4226,Good story,1197054086 +179307,4226,Good Thriller,1197054369 +179307,4973,France,1197054261 +179307,4973,Good Comedy,1197054278 +179307,5445,Good Thriller,1197056005 +179307,5445,Tom Cruise,1197055991 +179307,6299,France,1197054737 +179307,6299,Good Documentary,1197054737 +179307,6350,Good Manga,1197055207 +179307,6350,Japan,1197055207 +179307,6350,Studio Ghibli,1197055207 +179307,6874,Quentin Tarantino,1197055595 +179307,7438,Quentin Tarantino,1197055683 +179307,27815,France,1197055178 +179307,27815,Good Drama,1197055177 +179307,30793,Tim Burton,1197055840 +179307,50872,Good Animation,1197055366 +179307,50872,Pixar,1197055376 +179307,55276,George Clooney,1197055473 +179307,55276,Good Thriller,1197055455 +179309,2302,courtroom,1449432881 +179309,3504,satire,1449436575 +179309,3660,Full Moon Entertainment,1449428183 +179309,3661,Full Moon Entertainment,1449428205 +179309,3919,body horror,1449428229 +179309,7223,noir thriller,1449429958 +179309,26265,dark humor,1449498529 +179309,26265,Vincent Price,1449498524 +179309,26724,Full Moon Entertainment,1449428333 +179309,66365,Full Moon Entertainment,1449428274 +179309,66365,time travel,1449428271 +179309,78655,dark,1449428994 +179309,93649,food,1449432652 +179309,93721,food,1449432672 +179309,94939,music,1449428942 +179309,148428,horror,1449530645 +179309,148428,Slasher Movie,1449530658 +179347,6,Al Pacino,1438465142 +179347,6,atmospheric,1438465184 +179347,6,bank robbery,1438465178 +179347,6,career criminal,1438465198 +179347,6,crime,1438465182 +179347,6,dialogue,1438465205 +179347,6,great acting,1438465150 +179347,6,gunfight,1438465188 +179347,6,Natalie Portman,1438465185 +179347,6,realistic,1438465191 +179347,6,realistic action,1438465149 +179347,6,Robert De Niro,1438465143 +179347,6,suspense,1438465146 +179347,6,tense,1438465144 +179347,6,visceral,1438465203 +179347,593,Anthony Hopkins,1448062487 +179347,593,disturbing,1448062480 +179347,593,Jodie Foster,1448062486 +179347,593,psychology,1448062482 +179347,1084,crime,1439753338 +179347,1084,gangsters,1439753332 +179347,1199,black comedy,1442699933 +179347,1199,dark comedy,1442700004 +179347,1199,Robert De Niro,1442700010 +179347,1199,satire,1442700021 +179347,1199,sci-fi,1442700022 +179347,1199,stylized,1442700015 +179347,1199,surreal,1442700005 +179347,1199,thought-provoking,1442699934 +179347,1231,true story,1448577319 +179347,1466,Al Pacino,1445456781 +179347,1466,based on a true story,1445456778 +179347,1466,Johnny Depp,1445456780 +179347,1466,Mafia,1445456776 +179347,1466,organized crime,1445456783 +179347,1466,true story,1445456785 +179347,1653,Ethan Hawke,1436033863 +179347,1653,intelligent,1436033820 +179347,1653,Jude Law,1436033835 +179347,1653,powerful ending,1436033819 +179347,2194,Gangster,1436033963 +179347,2194,gangsters,1436033093 +179347,2194,mafia,1436033534 +179347,2194,organized crime,1436033519 +179347,2194,Robert De Niro,1436033520 +179347,2194,Sean Connery,1436033524 +179347,2278,car chase,1444683733 +179347,2278,crime,1444683734 +179347,2278,Jean Reno,1444683730 +179347,2427,atmospheric,1449445963 +179347,2427,cinematography,1449445967 +179347,2427,war,1449445971 +179347,2427,World War II,1449445964 +179347,2985,dystopia,1437401518 +179347,3362,Al Pacino,1438866163 +179347,3362,Atmospheric,1438866175 +179347,3362,bank robbery,1438866205 +179347,3362,heist,1438866177 +179347,3362,true story,1438866192 +179347,3471,Classic,1439327358 +179347,3471,first contact,1439327361 +179347,3471,sci-fi,1439327353 +179347,3994,atmospheric,1448402397 +179347,3994,Bruce Willis,1448402394 +179347,3994,Samuel L. Jackson,1448402393 +179347,3994,twist ending,1448402398 +179347,3994,unique,1448402399 +179347,4351,bank robbery,1440356384 +179347,4448,Edward Norton,1441736862 +179347,4448,heist,1441736865 +179347,4448,Robert De Niro,1441736864 +179347,4546,disturbing,1445897472 +179347,4963,Brad Pitt,1440761511 +179347,4963,crime,1440761515 +179347,4963,heist,1440761509 +179347,4963,Matt Damon,1440761513 +179347,4973,beautifully filmed,1442782571 +179347,4973,quirky,1442782569 +179347,4973,stylized,1442782578 +179347,4973,surreal,1442782577 +179347,5464,1930s,1441035341 +179347,5464,cinematography,1441035335 +179347,5464,Jude Law,1441035338 +179347,5464,organized crime,1441035332 +179347,5464,Tom Hanks,1441035333 +179347,6502,atmospheric,1437401557 +179347,6502,Cillian Murphy,1437401561 +179347,6502,Post apocalyptic,1437401549 +179347,6502,post-apocalyptic,1437401543 +179347,6502,Zombie,1437401545 +179347,6502,zombies,1437401541 +179347,26840,Japan,1444595189 +179347,26840,yakuza,1444595191 +179347,44199,Denzel Washington,1438724391 +179347,44199,heist,1438724394 +179347,52241,Heist,1440518360 +179347,52241,Joseph Gordon-Levitt,1440518372 +179347,52328,beautiful effects,1436033773 +179347,52328,Cillian Murphy,1436033770 +179347,52328,cinematography,1436033784 +179347,52328,dark,1436033780 +179347,53550,rescue,1442088469 +179347,53550,true story,1442088467 +179347,55363,based on a true story,1446417570 +179347,55363,beautiful scenery,1446417569 +179347,55363,Brad Pitt,1446417572 +179347,55363,tense,1446417573 +179347,55363,visually appealing,1446417567 +179347,55721,Favelas,1437247221 +179347,55721,rio de janeiro,1437247217 +179347,55721,special police forces,1437247219 +179347,55721,urban violence,1437247231 +179347,56367,cult film,1443307895 +179347,56367,Ellen Page,1443307887 +179347,56367,excellent script,1443307893 +179347,56367,feel-good,1443307890 +179347,56367,quirky,1443307897 +179347,56367,witty,1443307888 +179347,58295,heist,1439146443 +179347,58295,robbery,1439146451 +179347,58351,Favela,1437592852 +179347,70286,intelligent sci-fi,1436033725 +179347,70286,unique,1436033732 +179347,70451,World War II,1448150655 +179347,70728,Tom Hardy,1442422313 +179347,73344,cinematography,1447362121 +179347,73344,mafia,1447362119 +179347,77709,anime,1434824839 +179347,77709,interesting,1434824839 +179347,77709,slow-paced,1434824839 +179347,80489,bank robbery,1436033561 +179347,80489,Ben Affleck,1436033555 +179347,80489,heist,1436033553 +179347,88129,cinematography,1441139487 +179347,88129,great soundtrack,1441139494 +179347,88129,Ryan Gosling,1441139489 +179347,88129,stylized,1441139550 +179347,88129,visually appealing,1441139492 +179347,89904,John Goodman,1445028981 +179347,89904,Oscar (Best Picture),1445028983 +179347,90439,ethics,1448838568 +179347,90439,Kevin Spacey,1448838561 +179347,90439,realistic,1448838557 +179347,90439,suspense,1448838562 +179347,92920,Willem Dafoe,1441816450 +179347,93721,craftmanship,1449957323 +179347,93721,documentary,1449957318 +179347,93721,Japan,1449957317 +179347,93721,minimalist,1449957320 +179347,96432,Great Depression,1450047122 +179347,96432,Prohibition,1450047121 +179347,96432,Shia LaBeouf,1450047119 +179347,96432,Tom Hardy,1450047120 +179347,96737,Action,1447710591 +179347,96737,cinematography,1447710583 +179347,96737,Dystopia,1447710579 +179347,96737,gore,1447710585 +179347,96737,post-apocalyptic,1447710578 +179347,96737,sci-fi,1447710577 +179347,96737,strong female protagonist,1447710595 +179347,96737,stylized,1447710587 +179347,96821,amazing soundtrack,1436033884 +179347,96821,atmospheric,1436033885 +179347,96821,bittersweet,1436033875 +179347,96821,Captivating,1436033877 +179347,96821,character development,1436033872 +179347,96821,coming of age,1436033870 +179347,96821,Emma Watson,1436033871 +179347,97057,adventure,1449874642 +179347,97057,based on a true story,1449874646 +179347,97057,exploration,1449874647 +179347,97057,ocean,1449874649 +179347,97057,sea,1449874644 +179347,101525,Ryan Gosling,1436201730 +179347,102993,coming of age,1436716341 +179347,102993,Sam Rockwell,1436716344 +179347,103048,coming of age,1443364742 +179347,104841,beautiful,1436033755 +179347,104841,visually appealing,1436033749 +179347,104841,visually stunning,1436033758 +179347,104881,Christian Bale,1448666769 +179347,104881,revenge,1448666768 +179347,104881,Willem Dafoe,1448666875 +179347,104944,feel-good,1446067336 +179347,104944,good acting,1446067327 +179347,104944,mental health,1446067333 +179347,104944,realistic,1446067330 +179347,104944,touching,1446067329 +179347,106782,drugs,1436033896 +179347,106782,Funny,1436033911 +179347,106782,Leonardo DiCaprio,1436033893 +179347,106782,Martin Scorsese,1436033892 +179347,106782,visually appealing,1436033903 +179347,107978,Slice of life,1436297636 +179347,108729,confusing,1437938575 +179347,108729,Jake Gyllenhaal,1437938579 +179347,110273,World War II,1444508416 +179347,110461,feel-good,1438724450 +179347,110461,musicians,1438724450 +179347,110461,youth,1438724450 +179347,110503,Crime,1449782962 +179347,112868,cinematography,1439927785 +179347,112868,Lawrence Fishburne,1439927791 +179347,113188,post-apocalyptic,1444054005 +179347,113364,Gangsters,1436204189 +179347,113364,Michael Pitt,1436204187 +179347,115149,Keanu Reeves,1441139118 +179347,115149,stylish,1441139126 +179347,115149,Willem Dafoe,1441139122 +179347,115991,Loner,1437938716 +179347,127198,soundtrack,1446500584 +179347,135444,dirty cops,1435923233 +179347,135444,vigilantism,1435923233 +179347,135444,violence,1435923233 +179347,140715,music culture,1442080594 +179347,140715,rap music,1442080595 +179347,140715,true story,1442080601 +179347,141890,Child Soldiers,1445200521 +179381,260,epic adventure,1441991467 +179381,260,science fantasy,1441991477 +179384,126591,adventure,1424113084 +179384,126591,lasers,1424113084 +179384,126591,scifi,1424113084 +179402,1242,denzel washington,1170304229 +179402,46530,Kevin Spacey,1170304108 +179411,34338,Trey Parker,1294280149 +179411,34338,Vulgar,1294280140 +179411,34338,Whoopi Goldberg,1294280145 +179416,260,Fun,1440969435 +179416,260,Good,1440969440 +179446,98154,drama,1424164341 +179446,98154,lincoln,1424164341 +179446,98154,politics,1424164341 +179481,4878,time travel,1184532521 +179481,6669,cathartic,1182761328 +179484,344,silly fun,1148330840 +179484,1485,over the top,1148330815 +179484,2406,silly fun,1148330798 +179492,55069,Nudity (Full Frontal),1233980001 +179503,2288,alien,1342045333 +179503,2288,alien invasion,1342045300 +179503,2288,aliens,1342045297 +179503,2288,Kurt Russell,1342045313 +179503,5673,Adam Sandler,1348527732 +179503,6773,no dialogue,1344376398 +179503,6858,claustrophobic,1324748111 +179503,6858,confrontational,1324748114 +179503,6858,hitchhiker,1324748121 +179503,6858,understated,1324748133 +179503,8961,family,1333753932 +179503,8961,fashion,1333753935 +179503,8961,super-hero,1333753923 +179503,8961,superhero,1333753928 +179503,27033,Lars von Trier,1326626725 +179503,41285,boring,1342045430 +179503,41285,Woody Allen,1342045435 +179503,41712,England,1322695946 +179503,41712,local life,1322695949 +179503,41712,Shane Meadows,1322695954 +179503,48682,cross dressing women,1321912466 +179503,48682,feminism,1321912445 +179503,48682,Iran,1321912472 +179503,48682,Islam,1321912474 +179503,48682,sport:soccer football,1321912456 +179503,71131,Christianity,1321957840 +179503,71131,current events,1321957877 +179503,71131,Iraq War,1321957862 +179503,71131,Phelps family,1321957848 +179503,71131,religion,1321957853 +179503,74458,Leonardo DiCaprio,1350937140 +179503,78499,torture,1333754015 +179503,78499,violence,1333754017 +179503,86882,bittersweet,1324748024 +179503,86882,comedy,1324748017 +179503,86882,Woody Allen,1324748011 +179503,94864,aliens,1347919815 +179503,94864,boring,1347919818 +179503,94864,predictable,1347919825 +179503,94864,religious overtones,1347919845 +179503,94864,scifi,1347919829 +179503,106696,cliche characters,1400953370 +179503,106696,Disney,1400953358 +179503,106696,musical,1400953378 +179511,260,space action,1441051623 +179511,260,sword fight,1441051638 +179552,60074,Will Smith,1224616050 +179561,4007,stock market,1139334910 +179563,260,classic sci-fi,1436206959 +179563,260,space epic,1436206974 +179563,480,exciting,1436208055 +179563,480,sci-fi,1436208055 +179563,480,sequel,1436208055 +179597,32,sci-fi,1251187100 +179597,32,Terry Gilliam,1251187100 +179597,3000,anime,1251187361 +179597,3000,Hayao Miyazaki,1251187361 +179597,3328,Jim Jarmusch,1251187576 +179597,5673,PT Anderson,1251187664 +179597,8607,anime,1251187431 +179597,26547,Jackie Chan,1251187399 +179597,50872,Pixar,1251187495 +179597,68237,Sam Rockwell,1251187318 +179597,68237,Sci-fi,1251187318 +179627,1035,all time favoriet,1449033878 +179627,4896,be yourself,1449033694 +179627,4896,morals,1449033673 +179654,6711,Amazing Cinematography,1299493143 +179654,6711,Bill Murray,1299493167 +179654,6711,Japan,1299493158 +179654,34323,Rob Zombie,1301974185 +179654,82366,Decent sequel,1297821501 +179654,82366,Different cast,1297821518 +179654,86295,Self-referential,1303603420 +179664,2,Filmed in BC,1148752833 +179664,104,Filmed in BC,1148752795 +179664,785,Jonathan Richman,1241220921 +179664,1245,Coen Brothers,1241220928 +179664,1286,Time Travel,1241220943 +179664,1310,Young Fresh Fellows,1241220897 +179664,1819,Robyn Hitchcock,1241220945 +179664,1923,Jonathan Richman,1241220947 +179664,2403,Filmed in BC,1148752761 +179664,2469,time travel,1241220934 +179664,2926,Better than the remake,1241222187 +179664,2997,Charlie Kaufman,1241220881 +179664,3201,Filmed in BC,1148752740 +179664,3521,Joe Strummer,1241220929 +179664,4823,New York City,1241222684 +179664,5239,Joe Strummer,1241220938 +179664,5239,The Clash,1241220938 +179664,5698,New York City,1241222431 +179664,5902,Charlie Kaufman,1241220785 +179664,6001,Joe Strummer,1241220911 +179664,6003,Charlie Kaufman,1241220884 +179664,6306,Wilco,1148751619 +179664,6638,The Plimsouls,1241220950 +179664,6893,Filmed in Turin Italy,1241221635 +179664,7990,The Ramones,1241220936 +179664,8736,Pointed Sticks cameo,1241220930 +179664,8781,Robyn Hitchcock,1241220924 +179664,8874,Simon Pegg,1241221106 +179664,8924,Beatles,1241220904 +179664,30793,the original is better,1241222271 +179664,34150,Marvel,1148752420 +179664,49220,Christopher Guest,1241220892 +179664,51255,Simon Pegg,1241221674 +179664,53468,Filmed in Kelowna BC,1241221738 +179664,58162,Simon Pegg,1241220694 +179696,1831,campy,1429876727 +179696,1831,reboot,1429876727 +179696,1831,scifi,1429876727 +179725,59315,action,1430224982 +179725,59315,gadgets,1430224994 +179725,59315,superhero,1430224972 +179738,380,espionage,1201474638 +179738,380,family,1201474375 +179738,466,humor,1201474497 +179738,466,parody,1201474485 +179738,502,martial arts,1201474424 +179738,541,slow,1203636494 +179738,648,espionage,1201474462 +179738,1010,cars,1155487482 +179738,1100,cars,1201473615 +179738,1100,nascar,1201473615 +179738,1100,race,1201473615 +179738,1101,airplane,1302719351 +179738,1101,military,1302719352 +179738,1101,navy,1302718979 +179738,1220,car chase,1201474316 +179738,1220,cars,1201474316 +179738,1220,musical,1201474316 +179738,1220,police,1201474316 +179738,1429,Jackie Chan,1201473985 +179738,1429,Martial Arts,1201473985 +179738,1608,flight,1201474362 +179738,1608,terrorism,1201474361 +179738,2050,cars,1201474028 +179738,2050,disney,1201474028 +179738,2051,cars,1201473763 +179738,2051,disney,1201473763 +179738,2051,race,1201473763 +179738,2278,car chase,1155487511 +179738,2278,cars,1155487511 +179738,2420,martial arts,1201473997 +179738,2422,martial arts,1201474227 +179738,2815,airplane,1302719233 +179738,2815,military,1302719068 +179738,2816,airplane,1302719090 +179738,2816,military,1302719090 +179738,2817,airplane,1302719271 +179738,2817,military,1302719271 +179738,2818,airplane,1302719102 +179738,2818,military,1302719102 +179738,3623,espionage,1201474443 +179738,3717,car chase,1155487338 +179738,3717,cars,1155487334 +179738,3717,theft,1201473772 +179738,4369,cars,1155487381 +179738,4369,street race,1155487396 +179738,4565,martial arts,1201474324 +179738,4597,skateboarding,1201474073 +179738,5418,espionage,1201474625 +179738,5541,humor,1201474509 +179738,5541,parody,1201474509 +179738,5574,cars,1155487471 +179738,6378,cars,1155487344 +179738,6378,theft,1201473719 +179738,6383,Cars,1155487458 +179738,6383,street race,1155487463 +179738,6550,espionage,1201474551 +179738,6550,parody,1201474544 +179738,6593,family,1201474263 +179738,6624,espionage,1201474616 +179738,6893,cars,1155487331 +179738,6893,theft,1201473726 +179738,7300,car chase,1201473856 +179738,7300,cars,1197847505 +179738,7345,espionage,1201474620 +179738,8361,catastrophe,1201474271 +179738,8604,car chase,1155487359 +179738,8604,cars,1155487348 +179738,8604,humor,1201473691 +179738,8605,car chase,1155487376 +179738,8605,cars,1155487369 +179738,8605,humor,1201473676 +179738,8665,espionage,1201474519 +179738,27193,cars,1155487411 +179738,31367,car chase,1201473648 +179738,31367,cars,1201473648 +179738,31367,police,1201473648 +179738,33830,cars,1201473743 +179738,33830,Disney,1201473743 +179738,33830,nascar,1201473743 +179738,33830,race,1201473743 +179738,36519,cars,1155487404 +179738,36519,violence,1201473879 +179738,43917,dogs,1201474258 +179738,45517,cars,1201474127 +179738,45517,disney,1201474127 +179738,45517,race,1201474127 +179738,46335,cars,1201474096 +179738,46335,drifting,1201474096 +179738,46335,street race,1201474096 +179738,48319,airplane,1302720139 +179738,49272,007,1201474288 +179738,49272,espionage,1201474632 +179738,54286,espionage,1201474628 +179746,318,drama,1428525163 +179746,318,prison,1428525163 +179746,318,prison escape,1428525163 +179748,134130,Improvisation,1432822466 +179748,134130,Near Future,1432822391 +179748,134130,Space,1432822811 +179748,134130,Survival Instinct,1432822417 +179774,260,Science Fiction,1443289589 +179785,1,Tim Allen,1257475340 +179785,1,Tom Hanks,1257475340 +179785,111,Robert De Niro,1257814994 +179785,356,tom hanks,1257475022 +179785,356,Vietnam War,1257475041 +179785,364,lions,1257475561 +179785,592,Jack Nicholson,1257475248 +179785,592,Michael Keaton,1257475248 +179785,1213,Robert De Niro,1257474773 +179785,1228,Joe Pesci,1257815084 +179785,1228,Robert De Niro,1257815084 +179785,1270,Steven Spielberg,1257475116 +179785,1359,christmas movie,1257474450 +179785,1580,will smith,1257475589 +179785,2028,Tom Hanks,1257475193 +179785,30749,Don Cheadle,1257814917 +179785,32587,action,1257475420 +179785,32587,Mickey Rourke,1257475420 +179785,48516,Leonardo DiCaprio,1257475606 +179785,49272,Daniel Craig,1257475549 +179785,58559,christian bale,1257474476 +179785,59315,Robert Downey Jr,1257475302 +179785,60069,love story,1257815109 +179785,71535,funny,1257815032 +179785,71535,gore,1257815031 +179788,920,a good romantic film,1162110221 +179788,1219,Alfred Hitchcock,1162126283 +179788,3996,a old story of fight,1162110266 +179797,59387,imagination,1249925741 +179806,5377,contemplative,1188162526 +179806,5377,modern,1188162526 +179806,5377,whimsical,1188162526 +179806,6934,busy,1188162551 +179806,6934,huge war,1188162552 +179806,6934,overly philosophical,1188162551 +179806,6934,teeming,1188162551 +179814,131164,Vietnam War,1427667401 +179822,260,darth vader,1435361608 +179822,260,epic adventure,1435361602 +179822,260,oldschool,1435361583 +179822,260,space,1435361594 +179822,260,space opera,1435361563 +179822,260,the force,1435361621 +179823,1927,war movie,1386325209 +179825,161,submarine,1440841389 +179825,924,artificial intelligence,1440841733 +179825,1089,Quentin Tarantino,1440841323 +179825,1089,violent,1440841336 +179825,1206,cult film,1440841380 +179825,1206,stanley kubrick,1440841377 +179846,4873,animated,1379955953 +179846,4873,dreams,1379955936 +179846,4873,memory,1379955959 +179851,46772,R,1169665022 +179859,260,science fantasy,1442909497 +179859,1090,horrors of war,1443191450 +179859,1090,Vietnam War,1443191409 +179859,4995,genius,1443191546 +179859,4995,intelligent,1443191554 +179859,4995,Russell Crowe,1443191541 +179859,114180,plot holes,1443191506 +179859,114180,teen,1443191513 +179873,1627,Notable Nudity,1151006619 +179879,260,action,1438290291 +179879,260,coming of age,1438290263 +179879,260,space adventure,1438290277 +179940,95543,Animated,1448532125 +179940,112175,Adventure,1448532162 +179949,29,atmospheric,1282437426 +179949,29,dreamlike,1282437439 +179949,29,dystopia,1282437442 +179949,29,steampunk,1282437432 +179949,29,surreal,1282437430 +179949,34,overrated,1270757631 +179949,69,Chris Tucker,1269563392 +179949,69,Ice Cube,1269563393 +179949,69,stupid last comment,1269563453 +179949,81,assassin,1420263121 +179949,81,friendship,1420263139 +179949,81,hit,1420263116 +179949,81,hitman,1420263119 +179949,81,mobsters,1420263114 +179949,81,organized crime,1420263110 +179949,81,revenge,1420263124 +179949,81,sacrifice,1420263145 +179949,101,crime,1362234193 +179949,101,crime gone awry,1362234198 +179949,101,friendship,1362234130 +179949,101,heist,1362234184 +179949,101,love,1362234141 +179949,101,mental illness,1362234136 +179949,101,motel,1362234148 +179949,101,off-beat comedy,1362234151 +179949,101,quirky,1362234114 +179949,101,slow,1362234170 +179949,101,sweet,1362234159 +179949,101,thieves,1362234181 +179949,160,nostalgia,1266762225 +179949,170,cheesy,1340419423 +179949,170,cyberpunk,1340419390 +179949,170,hacker,1340419398 +179949,170,hackers,1340419413 +179949,170,hacking,1340419384 +179949,170,high school,1340419410 +179949,170,inaccurate,1340419376 +179949,170,internet,1340419386 +179949,170,video games,1340419387 +179949,180,1990s,1340469990 +179949,180,crude humor,1340469986 +179949,180,good dialogue,1340470001 +179949,180,Jay and Silent Bob,1340469971 +179949,180,Kevin Smith,1340469973 +179949,185,computers,1325146698 +179949,185,conspiracy,1325146790 +179949,185,crime,1325146719 +179949,185,hacking,1325146699 +179949,185,inaccurate,1325146704 +179949,185,internet,1325146716 +179949,185,malware,1325146826 +179949,185,plot holes,1325146732 +179949,185,simplistic,1325146841 +179949,185,stupid,1325146848 +179949,185,trojan,1325146818 +179949,185,unrealistic,1325146707 +179949,198,characters,1281768927 +179949,198,future,1281768879 +179949,198,futuristic,1281768889 +179949,198,sci-fi,1281768815 +179949,198,stupid,1281768919 +179949,198,virtual reality,1281768816 +179949,223,crude humor,1273455939 +179949,223,cynical,1267961145 +179949,223,jay and silent bob,1273455900 +179949,223,slackers,1267961147 +179949,223,surreal,1267961125 +179949,223,view askew,1273455915 +179949,235,Biography,1325091307 +179949,235,black and white,1325091257 +179949,235,cross dressing,1325091317 +179949,235,movie business,1325091276 +179949,235,quirky,1325091275 +179949,235,true story,1325091266 +179949,318,friendship,1324784866 +179949,318,justice,1324784879 +179949,318,prison,1437111037 +179949,318,prison escape,1324784868 +179949,318,Stephen King,1324784858 +179949,318,wrongful imprisonment,1437111037 +179949,319,crime,1333951961 +179949,319,cynical,1333951977 +179949,319,disturbing,1333951992 +179949,349,black ops,1288907150 +179949,349,cia,1288907136 +179949,349,conspiracy,1288907141 +179949,349,drug cartels,1288907164 +179949,349,Harrison Ford,1288907116 +179949,349,jack ryan,1288907125 +179949,349,organized crime,1288907172 +179949,349,revenge,1288907180 +179949,349,thiller,1288907120 +179949,380,action,1287795052 +179949,380,Arnold Schwarzenegger,1287795055 +179949,380,Eliza Dushku,1287795057 +179949,380,espionage,1287795137 +179949,380,Jamie Lee Curtis,1287795047 +179949,380,mundane characters,1287795061 +179949,380,not ridiculous enough,1287795039 +179949,380,ridiculous,1287795115 +179949,380,shallow plot,1287795157 +179949,380,terrorism,1287795066 +179949,441,high school,1269730664 +179949,441,small town,1269730693 +179949,441,wired 50 greatest soundtracks,1269730657 +179949,481,atmospheric,1309288130 +179949,481,disturbing,1309288135 +179949,481,photography,1309288176 +179949,481,road trip,1309288118 +179949,481,serial killer,1309288107 +179949,481,tense,1309288110 +179949,481,writer,1309288166 +179949,481,writing,1309288171 +179949,555,brutal,1364751160 +179949,555,brutality,1364751159 +179949,555,cast,1364751143 +179949,555,characters,1364751233 +179949,555,Christian Slater,1364751147 +179949,555,drugs,1364751165 +179949,555,love,1364751193 +179949,555,organized crime,1364751184 +179949,565,atmospheric,1288570023 +179949,565,clockwork devices,1288569994 +179949,565,moody,1288570031 +179949,565,slow,1288570000 +179949,565,vampire,1288570010 +179949,588,adventure,1271217683 +179949,750,based on a book,1272237742 +179949,750,classic,1272237761 +179949,750,cold war,1272237736 +179949,750,comedy,1272237738 +179949,1079,adultery,1282512853 +179949,1079,quirky,1282512829 +179949,1079,robbery,1282512858 +179949,1079,silly,1282512831 +179949,1080,classic,1271216874 +179949,1080,controversial,1271216805 +179949,1080,hilarious,1271216802 +179949,1080,Monty Python,1271216800 +179949,1080,ridiculous,1271217144 +179949,1080,satire,1271216809 +179949,1080,silly,1271217142 +179949,1086,classic,1273807662 +179949,1086,detective,1273807760 +179949,1086,investigation,1273807784 +179949,1086,perfect crime,1273807805 +179949,1091,80's,1389505323 +179949,1091,corpse,1389505288 +179949,1091,goofy,1389505275 +179949,1091,hitman,1389505301 +179949,1091,setup,1389505317 +179949,1091,silly,1389505270 +179949,1091,stupid,1389505262 +179949,1097,alien,1271217567 +179949,1097,aliens,1271217518 +179949,1097,classic,1271217547 +179949,1097,emotional,1271217558 +179949,1127,aliens,1269754946 +179949,1127,Interesting,1269754959 +179949,1127,Underwater,1269754951 +179949,1136,classic,1271216577 +179949,1136,hilarious,1271216560 +179949,1136,imdb top 250,1271216572 +179949,1136,medieval,1271216564 +179949,1136,Monty Python,1271216553 +179949,1136,ridiculous,1271217137 +179949,1136,silly,1271217135 +179949,1175,cannibalism,1311881940 +179949,1175,dark humor,1311881927 +179949,1175,dystopia,1311881929 +179949,1175,quirky,1311881920 +179949,1175,side story,1311881906 +179949,1175,story-in-a-story,1311881912 +179949,1175,stylized,1311881924 +179949,1199,absurd,1281803095 +179949,1199,atmospheric,1281802998 +179949,1199,bureaucracy,1281803048 +179949,1199,dreams,1281802991 +179949,1199,dystopia,1281803021 +179949,1199,futuristic,1281803010 +179949,1199,quirky,1281803053 +179949,1199,Robert De Niro,1281802987 +179949,1199,sci-fi,1281803055 +179949,1199,surreal,1281803090 +179949,1200,aliens,1271217483 +179949,1200,atmospheric,1271217487 +179949,1200,imdb top 250,1271217479 +179949,1200,sequel,1271217505 +179949,1200,suspense,1271217494 +179949,1203,classic,1311880497 +179949,1203,confrontational,1311880361 +179949,1203,courtroom,1311880362 +179949,1203,ethnic conflict,1311880480 +179949,1203,individualism,1311880349 +179949,1203,low budget,1311880358 +179949,1203,miscarriage of justice,1311880433 +179949,1203,prejudice,1311880320 +179949,1203,rationality,1311880336 +179949,1203,social commentary,1311880355 +179949,1204,atmospheric,1274916993 +179949,1204,biographical,1274916996 +179949,1204,desert,1274917007 +179949,1204,Middle East,1274917017 +179949,1204,scenic,1274917005 +179949,1204,War,1274917008 +179949,1204,World War I,1274917013 +179949,1214,aliens,1271217448 +179949,1214,atmospheric,1271217471 +179949,1214,imdb top 250,1271217461 +179949,1214,suspense,1271217451 +179949,1219,black and white,1309467733 +179949,1219,classic,1309467725 +179949,1219,mental illness,1309467739 +179949,1219,murder,1309467742 +179949,1234,1930s,1345589762 +179949,1234,Chicago,1345589750 +179949,1234,con,1345589608 +179949,1234,con artists,1345589766 +179949,1234,crime,1345589799 +179949,1234,depression-era,1345589757 +179949,1234,FBI,1345589638 +179949,1234,gambling,1345589682 +179949,1234,murder,1345589706 +179949,1234,organized crime,1345589688 +179949,1234,poker,1345589779 +179949,1234,revenge,1345589626 +179949,1234,soundtrack,1345589669 +179949,1237,afterlife,1311961318 +179949,1237,chess,1311961333 +179949,1237,death,1311961324 +179949,1237,existentialism,1311961309 +179949,1237,grim reaper,1311961337 +179949,1237,medieval,1311961291 +179949,1237,theatrical acting,1311961300 +179949,1243,absurd,1281578811 +179949,1243,based on a play,1281578755 +179949,1243,Gary Oldman,1281578728 +179949,1243,humorous,1281578774 +179949,1243,quirky,1281578760 +179949,1243,surreal,1281578805 +179949,1243,Tim Roth,1281578734 +179949,1246,bittersweet,1311880684 +179949,1246,boarding school,1311880700 +179949,1246,friendship,1311880676 +179949,1246,heartbreaking,1311880689 +179949,1246,suicide,1311880680 +179949,1259,1950s,1364568460 +179949,1259,1960s,1364568439 +179949,1259,cheesy,1364568417 +179949,1259,childhood,1364568410 +179949,1259,classic,1364568412 +179949,1259,cliche,1364568423 +179949,1259,coming of age,1364568405 +179949,1259,friendship,1364568431 +179949,1259,hiking,1364568530 +179949,1259,nostalgic,1364568429 +179949,1259,poignant,1364568501 +179949,1259,Stephen King,1364568397 +179949,1270,1950s,1292190087 +179949,1270,1980s,1292190080 +179949,1270,alternate reality,1292190074 +179949,1270,Christopher Lloyd,1292190240 +179949,1270,clever,1292190076 +179949,1270,comedy,1292190158 +179949,1270,quirky,1292190049 +179949,1270,sci-fi,1292190051 +179949,1270,time travel,1292190154 +179949,1270,whimsical,1292190047 +179949,1303,adventure,1396211493 +179949,1303,Afghanistan,1396211504 +179949,1303,colonialism,1396211455 +179949,1303,culture clash,1396211468 +179949,1303,exploration,1396211618 +179949,1303,freemason,1396211481 +179949,1303,India,1396211460 +179949,1303,journalist,1396211557 +179949,1303,natives,1396211608 +179949,1303,slow start,1396211451 +179949,1303,soldiers,1396211567 +179949,1303,war,1396211598 +179949,1303,warlord,1396211589 +179949,1320,aliens,1271219353 +179949,1320,prequel,1271219353 +179949,1320,sequel,1271219353 +179949,1396,blindness,1326165592 +179949,1396,cryptography,1326165569 +179949,1396,espionage,1326165537 +179949,1396,hacking,1326165517 +179949,1396,heist,1326165509 +179949,1396,spying,1326165523 +179949,1396,weak ending,1326165525 +179949,1527,aliens,1271217591 +179949,1527,futuristic,1271217579 +179949,1527,Gary Oldman,1271217582 +179949,1527,humorous,1271217605 +179949,1527,satirical,1271217594 +179949,1584,first contact,1420162055 +179949,1584,outer space,1420162044 +179949,1584,religion,1420162072 +179949,1584,space,1420162046 +179949,1584,space travel,1420162066 +179949,1590,dark,1447959281 +179949,1590,hell,1447959261 +179949,1590,horror,1447959273 +179949,1590,space,1447959266 +179949,1590,tense,1447959283 +179949,1597,amnesia,1324783599 +179949,1597,assassin,1324783477 +179949,1597,brainwashing,1324783469 +179949,1597,conspiracy,1324783403 +179949,1597,conspiracy theory,1324783538 +179949,1597,mental hospital,1324783458 +179949,1597,murder,1324783573 +179949,1597,murder mystery,1324783579 +179949,1597,secret agency,1324783495 +179949,1631,Ben Kingsley,1281326052 +179949,1631,cia,1281325637 +179949,1631,Donald Sutherland,1281326051 +179949,1631,Personality change,1281325679 +179949,1631,terrorism,1281325644 +179949,1631,undercover,1281325618 +179949,1653,dystopia,1325226060 +179949,1653,future,1325226079 +179949,1653,genetic engineering,1325226072 +179949,1653,genetic selection,1325226062 +179949,1653,genetics,1325226089 +179949,1653,rebellion,1325226105 +179949,1653,space travel,1325226092 +179949,1653,suicide,1325226067 +179949,1653,thought-provoking,1325226100 +179949,1653,visually appealing,1325226095 +179949,1675,hurried ending,1269675197 +179949,1675,Plot,1269675161 +179949,1675,Ridiculous trial,1269675228 +179949,1675,Trial,1269675175 +179949,1690,aliens,1271217718 +179949,1690,sequel,1271219353 +179949,1704,feel-good,1312074539 +179949,1704,genius,1312074544 +179949,1704,intelligent,1312074536 +179949,1704,mathematics,1312074531 +179949,1704,university,1312074551 +179949,1732,blackmail,1419996863 +179949,1732,bowling,1419996844 +179949,1732,crime,1419996873 +179949,1732,dark comedy,1419996842 +179949,1732,drugs,1419996847 +179949,1732,kidnapping,1419996858 +179949,1732,off-beat comedy,1419996837 +179949,1732,quirky,1419996839 +179949,1732,ransom,1419996866 +179949,1748,Kiefer Sutherland,1288568333 +179949,1748,Post apocalyptic,1288568337 +179949,1748,steampunk,1288568343 +179949,1748,surreal,1288568339 +179949,1754,Denzel Washington,1269467430 +179949,1754,John Goodman,1269467433 +179949,1754,unreliable narrators,1269467450 +179949,1799,crime lord,1325282819 +179949,1799,deceit,1325282797 +179949,1799,kidnapping,1325282784 +179949,1799,mafia,1325282802 +179949,1799,organized crime,1325282780 +179949,1845,Bill Pullman,1267909451 +179949,1845,characters,1281717906 +179949,1845,eccentricity,1267909480 +179949,1892,assassin,1295165843 +179949,1892,murder,1295165827 +179949,1892,remake,1295165944 +179949,1909,aliens,1266791894 +179949,1909,Based on a TV show,1266791914 +179949,1909,bugs,1266791930 +179949,1909,conspiracy,1266762338 +179949,1909,FBI,1266762338 +179949,1909,locusts,1266791925 +179949,1912,bank robbers,1389401585 +179949,1912,bank robbery,1389401578 +179949,1912,FBI,1389401682 +179949,1912,heist,1389401573 +179949,1912,kidnapping,1389401591 +179949,1912,love,1389401647 +179949,1912,love at first sight,1389401654 +179949,1912,music,1389401609 +179949,1912,police,1389401676 +179949,1912,prison,1389401711 +179949,1912,prison escape,1389401594 +179949,1955,1970s,1340588513 +179949,1955,bittersweet,1340588546 +179949,1955,custody,1340588459 +179949,1955,custody battle,1340588462 +179949,1955,divorce,1340588424 +179949,1955,father-son relationship,1340588487 +179949,1955,legal system,1340588436 +179949,1955,single father,1340588479 +179949,1955,single parent,1340588474 +179949,1968,cliche,1335577618 +179949,1968,coming of age,1335577589 +179949,1968,cult film,1335577595 +179949,1968,high school,1335577590 +179949,1968,overdramatic,1335577613 +179949,2003,christmas,1337550581 +179949,2003,monsters,1337550601 +179949,2003,small town,1337550594 +179949,2011,1950s,1292197466 +179949,2011,1980s,1292197462 +179949,2011,2010s,1292197473 +179949,2011,Christopher Lloyd,1292197514 +179949,2011,classic,1292197524 +179949,2011,comedy,1292197413 +179949,2011,dystopia,1292197536 +179949,2011,future,1292197507 +179949,2011,past,1292197503 +179949,2011,sci-fi,1292197403 +179949,2011,sequel,1292197402 +179949,2011,time travel,1292197532 +179949,2012,Christopher Lloyd,1292223787 +179949,2012,sci-fi,1292223824 +179949,2012,science fiction,1292223818 +179949,2012,sequel,1292223801 +179949,2012,steampunk,1292223840 +179949,2012,time travel,1292223811 +179949,2012,trains,1292223841 +179949,2012,western,1292223781 +179949,2072,neighbors,1356926003 +179949,2072,suburbia,1356925999 +179949,2072,suspicion,1356926018 +179949,2078,classic,1288229063 +179949,2105,computer animation,1308823746 +179949,2105,computers,1308823742 +179949,2105,cyberpunk,1308823727 +179949,2105,original plot,1308823758 +179949,2105,sci-fi,1308823740 +179949,2105,so bad it's good,1308823737 +179949,2105,videogame,1308823731 +179949,2105,virtual reality,1308823729 +179949,2268,courtroom,1394935952 +179949,2268,courtroom drama,1394935954 +179949,2268,cover up,1394935945 +179949,2268,lawyers,1394935949 +179949,2268,military,1394935959 +179949,2280,Joaquin Phoenix,1267893136 +179949,2280,Vince Vaughn,1267893140 +179949,2391,brother-brother relationship,1389309116 +179949,2391,cover-up,1389308987 +179949,2391,greed,1389309111 +179949,2391,hillbillies,1389309256 +179949,2391,loneliness,1389309057 +179949,2391,money,1389309109 +179949,2391,murder,1389308967 +179949,2391,parenthood,1389309034 +179949,2391,plane crash,1389309074 +179949,2391,small town,1389309065 +179949,2391,suicide,1389309046 +179949,2391,trust,1389309273 +179949,2391,unlikeable characters,1389309130 +179949,2395,Bill Murray,1356765393 +179949,2395,bittersweet,1356765268 +179949,2395,coming of age,1356765277 +179949,2395,high school,1356765297 +179949,2395,love triangle,1356765324 +179949,2395,private school,1356765342 +179949,2395,quirky,1356765265 +179949,2395,unlikeable characters,1356765355 +179949,2541,manipulation,1340109092 +179949,2580,black comedy,1388899716 +179949,2580,cashier,1388899868 +179949,2580,drug dealing,1388899830 +179949,2580,drugs,1388899727 +179949,2580,gambling,1388899733 +179949,2580,grocery store,1388899859 +179949,2580,hit and run,1388899892 +179949,2580,multiple storylines,1388899707 +179949,2580,rave,1388899711 +179949,2580,revenge,1388899746 +179949,2672,simulated reality,1281778267 +179949,2672,virtual reality,1281778264 +179949,2692,alternate endings,1388652692 +179949,2692,animation,1388652696 +179949,2692,butterfly effect,1388652782 +179949,2692,casino,1388652818 +179949,2692,gambling,1388652832 +179949,2692,German,1388652724 +179949,2692,heist,1388652722 +179949,2692,original,1388652708 +179949,2692,repetitive,1388652765 +179949,2692,short,1388652705 +179949,2788,Based on a TV show,1271216639 +179949,2788,clip show,1271216979 +179949,2788,could've made a better selection from the TV series,1271216649 +179949,2788,Flying Circus clip show,1271216766 +179949,2788,Monty Python,1271216623 +179949,2788,remake,1271216701 +179949,2788,ridiculous,1271217129 +179949,2788,silly,1271217126 +179949,2788,sketch comedy,1271216652 +179949,2803,assassination,1364783456 +179949,2803,conspiracy,1364783359 +179949,2803,corruption,1364783366 +179949,2803,John Grisham,1364783384 +179949,2803,journalism,1364783416 +179949,2803,journalist,1364783411 +179949,2803,lawyer,1364783426 +179949,2803,lawyers,1364783433 +179949,2803,political corruption,1364783392 +179949,2858,bittersweet,1312064914 +179949,2858,coming of age,1312064920 +179949,2858,dark,1312064907 +179949,2858,Kevin Spacey,1312064959 +179949,2858,midlife crisis,1312064971 +179949,2858,reflective,1312064927 +179949,2858,sexuality,1312064929 +179949,2858,social commentary,1312064935 +179949,2858,surrealism,1312064932 +179949,2918,1980s,1335676334 +179949,2918,classic,1335676329 +179949,2918,coming of age,1335676312 +179949,2918,High School,1335676325 +179949,2918,rebellion,1335676318 +179949,2918,slackers,1335676323 +179949,2997,quirky,1285180695 +179949,2997,surreal,1285180698 +179949,3052,controversial,1273455850 +179949,3052,jay and silent bob,1273455838 +179949,3052,satire,1273455843 +179949,3052,view askew,1273455844 +179949,3176,1950s,1364791971 +179949,3176,disturbing,1364791974 +179949,3176,Italy,1364792027 +179949,3176,murder,1364791983 +179949,3176,obsession,1364791977 +179949,3176,serial killer,1364791979 +179949,3176,sociopath,1364792010 +179949,3176,suspense,1364791991 +179949,3210,Sean Penn,1270081120 +179949,3253,1990s,1356857790 +179949,3253,music,1356857836 +179949,3253,music industry,1356857832 +179949,3253,rock and roll,1356857774 +179949,3253,Saturday Night Live,1356858097 +179949,3253,show business,1356857852 +179949,3253,SNL,1356857905 +179949,3253,talk show,1356857804 +179949,3253,TV,1356857814 +179949,3254,1990s,1356857973 +179949,3254,concert,1356858059 +179949,3254,music,1356857938 +179949,3254,music industry,1356857943 +179949,3254,rock and roll,1356857999 +179949,3254,Saturday Night Live,1356858085 +179949,3254,show business,1356857953 +179949,3254,SNL,1356857931 +179949,3254,talk show,1356858023 +179949,3254,TV,1356857958 +179949,3310,black and white,1388915855 +179949,3310,child protection,1388916284 +179949,3310,criminal,1388916270 +179949,3310,dream sequence,1388915903 +179949,3310,illegitimate child,1388915879 +179949,3310,orphans,1388915885 +179949,3310,silent movie,1388915921 +179949,3310,slapstick,1388915941 +179949,3355,ancient books,1266791621 +179949,3355,Emmanuelle Seigner,1266791675 +179949,3355,Johnny Depp,1266791594 +179949,3355,Mystery,1266791591 +179949,3355,satanism,1266791688 +179949,3481,break-up,1324872161 +179949,3481,Chicago,1324872141 +179949,3481,overrated,1325649159 +179949,3481,record store,1324872134 +179949,3481,relationships,1324872148 +179949,3525,80s,1388562217 +179949,3525,bachelor party,1388561828 +179949,3525,bad acting,1388562264 +179949,3525,bad plot,1388562243 +179949,3525,bestiality,1388561880 +179949,3525,cliche,1388562322 +179949,3525,drugs,1388561823 +179949,3525,marriage,1388561838 +179949,3525,nudity,1388561821 +179949,3525,prostitutes,1388561854 +179949,3525,raunchy,1388562209 +179949,3525,silly,1388562233 +179949,3525,stereotypes,1388562286 +179949,3525,vulgar,1388562204 +179949,3525,wedding,1388561843 +179949,3702,car chase,1419177400 +179949,3702,cult classic,1419177386 +179949,3702,post-apocalyptic,1419177374 +179949,3703,desert,1419177422 +179949,3703,dystopia,1419177430 +179949,3703,lone hero,1419177422 +179949,3703,post-apocalyptic,1419177427 +179949,3897,1970s,1364657838 +179949,3897,band,1364664730 +179949,3897,bittersweet,1364657891 +179949,3897,breakthrough,1364664720 +179949,3897,coming of age,1364657599 +179949,3897,fame,1364664697 +179949,3897,groupie,1364664834 +179949,3897,journalism,1364657607 +179949,3897,journalist,1364664786 +179949,3897,Lester Bangs,1364658106 +179949,3897,love,1364663065 +179949,3897,music,1364664764 +179949,3897,nostalgic,1364657646 +179949,3897,rock and roll,1364657837 +179949,3897,teen,1364657922 +179949,3897,tour,1364664744 +179949,4034,addiction,1389052426 +179949,4034,assassin,1389052543 +179949,4034,assassination,1389052540 +179949,4034,betrayal,1389052644 +179949,4034,corruption,1389052415 +179949,4034,court,1389052690 +179949,4034,courtroom,1389052681 +179949,4034,drug abuse,1389052418 +179949,4034,drug trade,1389052433 +179949,4034,drug trafficking,1389052437 +179949,4034,father-daughter relationship,1389052587 +179949,4034,government,1389052576 +179949,4034,gritty,1389052465 +179949,4034,kids,1389052739 +179949,4034,Mexico,1389052444 +179949,4034,politics,1389052569 +179949,4034,stylized,1389052619 +179949,4034,trial,1389052672 +179949,4034,USA,1389052450 +179949,4052,corporate espionage,1325147061 +179949,4052,murder,1325147070 +179949,4052,theft,1325147021 +179949,4128,1980s,1356936898 +179949,4128,adolescence,1356936896 +179949,4128,brothers,1356936903 +179949,4128,comics,1356936894 +179949,4128,cult film,1356936891 +179949,4128,motorcycle,1356936882 +179949,4128,siblings,1356936916 +179949,4128,small town,1356936888 +179949,4128,vampire,1356936885 +179949,4128,vampires,1356936886 +179949,4270,Brendan Fraser,1269624064 +179949,4270,cheesy,1269624070 +179949,4270,comedy,1269624068 +179949,4270,"Dwayne ""The Rock"" Johnson",1269624103 +179949,4343,aliens,1270167743 +179949,4343,Funny when your 10. Less funny when your not.,1270167762 +179949,4343,silly,1270167735 +179949,4344,computers,1325147288 +179949,4344,hackers,1325147290 +179949,4344,hacking,1325147293 +179949,4443,assassin,1358123764 +179949,4443,bad dialogue,1358123805 +179949,4443,corrupt cops,1358123869 +179949,4443,corruption,1358123864 +179949,4443,drugs,1358123857 +179949,4443,hitman,1358123758 +179949,4443,isolation,1358123772 +179949,4443,mining,1358123746 +179949,4443,sheriff,1358123752 +179949,4443,space,1358123731 +179949,4443,space mining,1358123740 +179949,4443,suicide,1358123930 +179949,4443,survival,1358123791 +179949,4467,heroes,1356813653 +179949,4467,story-in-a-story,1356813662 +179949,4467,superpowers,1356813645 +179949,4467,surreal,1356813624 +179949,4467,unlikeable characters,1356813633 +179949,4467,war,1356813628 +179949,4553,aliens,1356951119 +179949,4553,androids,1356951124 +179949,4553,conspiracy,1356951117 +179949,4553,cult film,1356951115 +179949,4553,invasion,1356951136 +179949,4553,robots,1356951129 +179949,4553,sci-fi,1356951110 +179949,4553,slavery,1356951144 +179949,4553,treason,1356951151 +179949,4641,bittersweet,1288533857 +179949,4641,coming of age,1288533855 +179949,4701,Jackie Chan,1269563587 +179949,4725,brian sexton iii,1274057951 +179949,4725,creepy,1274057875 +179949,4725,david caruso,1274057901 +179949,4725,mental hospital,1274057857 +179949,4734,cameo-fest,1273455761 +179949,4734,cult film,1273455807 +179949,4734,jay and silent bob,1273455788 +179949,4734,parody,1273455769 +179949,4734,view askew,1273455746 +179949,4865,19th century,1266833732 +179949,4865,Atmospheric,1266833727 +179949,4876,acting,1272285330 +179949,4876,characters,1272293445 +179949,4876,ghosts,1272293469 +179949,4876,haunted house,1272285316 +179949,4876,Matthew Lillard,1272285383 +179949,4876,pseudoscience,1272293500 +179949,4881,barbershop,1267502010 +179949,4881,Coen Brothers,1267501996 +179949,4881,James Gandolfini,1267502002 +179949,4954,casino,1389401854 +179949,4954,heist,1389401859 +179949,4954,Las Vegas,1389401849 +179949,4954,slow,1389401840 +179949,4973,feel-good,1269991910 +179949,4973,quirky,1269991905 +179949,4973,whimsical,1269991908 +179949,4979,adoption,1356961956 +179949,4979,anxiety,1356962078 +179949,4979,dark comedy,1356961942 +179949,4979,dysfunctional family,1356961950 +179949,4979,faded glory,1356962056 +179949,4979,narrated,1356961946 +179949,4979,quirky,1356961944 +179949,4979,upper class,1356961991 +179949,5047,digital editing,1283036109 +179949,5047,Kung-Fu,1283036122 +179949,5047,parody,1283036113 +179949,5047,ridiculous,1283036111 +179949,5047,spoof,1283036119 +179949,5120,intelligent,1287838283 +179949,5120,maze,1287838267 +179949,5120,murder,1287838286 +179949,5120,small cast,1287838264 +179949,5120,twists and turns,1287838263 +179949,5618,alternate reality,1332187122 +179949,5618,animated,1332187126 +179949,5618,atmospheric,1332187131 +179949,5618,children,1332187133 +179949,5618,dragons,1332187135 +179949,5618,fairy tale,1332187145 +179949,5618,gods,1332187178 +179949,5618,hallucinatory,1332187139 +179949,5618,Japan,1332187148 +179949,5618,spirits,1332187170 +179949,5618,surreal,1332187150 +179949,5949,gambling,1287187339 +179949,5949,luck,1287187333 +179949,5949,Russian roulette,1287187354 +179949,6263,more twists than a chubby checker,1324775779 +179949,6294,bad plot,1281716836 +179949,6294,characters,1281716826 +179949,6294,kung fu,1281716881 +179949,6294,stereotypes,1281716817 +179949,6294,supernatural powers,1281716872 +179949,6323,Amanda Peet,1289255355 +179949,6323,characters,1289255393 +179949,6323,multiple personalities,1289255375 +179949,6323,multiple storylines,1289255314 +179949,6323,psychology,1289255296 +179949,6323,serial killer,1289255291 +179949,6323,split personality,1289255374 +179949,6323,suspense,1289255381 +179949,6323,twist ending,1289255289 +179949,6323,unconvincing,1289255367 +179949,6572,bank robbery,1281808428 +179949,6572,feel-good,1281808647 +179949,6572,John Cleese,1281808413 +179949,6572,multiple storylines,1281808459 +179949,6572,stupid,1281808656 +179949,6755,B-movie,1267516021 +179949,6755,Bruce Campbell,1267516102 +179949,6755,hilarious,1267516031 +179949,6755,quirky,1267516028 +179949,6764,jungle,1269675374 +179949,6764,Seann William Scott,1269675376 +179949,6807,classic,1271216870 +179949,6807,hilarious,1271216849 +179949,6807,Monty Python,1271216834 +179949,6807,ridiculous,1271217160 +179949,6807,silly,1271217158 +179949,6936,Christmas,1293155843 +179949,6936,elves,1293155833 +179949,6936,family friendly,1293155901 +179949,6936,holiday,1293155836 +179949,6936,Santa Claus,1293155840 +179949,6936,silly,1293155817 +179949,6951,based on a book,1292798798 +179949,6951,Mike Myers,1292798793 +179949,6966,not funny,1272598808 +179949,6966,superhero,1272598751 +179949,6966,villain,1272598760 +179949,6979,artificial intelligence,1338765741 +179949,6979,Cold War,1338765820 +179949,6979,computer game,1338765901 +179949,6979,hackers,1338765750 +179949,6979,NORAD,1338765730 +179949,6979,nuclear war,1338765736 +179949,6979,simulation,1338765889 +179949,6979,world war III,1338765844 +179949,7000,absurd,1313715689 +179949,7000,Some good moments,1313715699 +179949,7193,classic,1289510839 +179949,7193,corny,1289510854 +179949,7193,parody,1289510724 +179949,7193,private detective,1289510876 +179949,7193,private eye,1289510886 +179949,7193,rock n' roll,1289510698 +179949,7193,satire,1289510834 +179949,7193,stupid,1289510818 +179949,7297,atmospheric,1271905445 +179949,7297,quirky,1271905468 +179949,7348,improbable,1270860885 +179949,7361,alternate reality,1336093566 +179949,7361,amnesia,1336093559 +179949,7361,bittersweet,1336093556 +179949,7361,imagination,1336093553 +179949,7361,memory,1336093543 +179949,7361,nonlinear,1336093544 +179949,7361,surreal,1336093550 +179949,7749,pretentious,1419639994 +179949,7749,slow,1419640009 +179949,8037,Japan,1420314108 +179949,8037,pursuit,1420314020 +179949,8037,quirky,1420314127 +179949,8037,running,1420314293 +179949,8037,yakuza,1420314047 +179949,8369,corny,1269395992 +179949,8369,corny to the max,1269395994 +179949,8369,mediocre plot,1269395956 +179949,8369,one-liners,1269395987 +179949,8369,who done it,1269395951 +179949,8578,acting,1270270500 +179949,8578,cgi,1270271501 +179949,8578,characters,1270271529 +179949,8578,dialogue,1270271468 +179949,8578,epidemic,1270270514 +179949,8578,idiotic,1270270483 +179949,8578,not funny,1270273593 +179949,8578,slow paced,1270270509 +179949,8578,uninspired,1270270493 +179949,8578,zombie,1270270479 +179949,8578,zombies,1270270516 +179949,8807,Neil Patrick Harris,1287193742 +179949,8914,clever,1266781669 +179949,8914,complicated plot,1266781661 +179949,8914,mindfuck,1266781677 +179949,8914,paradox,1266791773 +179949,8914,physics,1266781665 +179949,8914,time travel,1266781680 +179949,26704,friendship,1276516338 +179949,26704,gangs,1276516266 +179949,26704,gangsters,1276516259 +179949,26704,Gary Oldman,1276516217 +179949,26704,Irish Americans,1276516280 +179949,26704,organized crime,1276516236 +179949,26704,undercover cop,1276516318 +179949,27032,bad acting,1281839234 +179949,27032,corny,1281840189 +179949,27032,Jackie Chan,1281840441 +179949,27032,kung fu,1281840290 +179949,27032,ridiculous,1281840125 +179949,27032,simple,1281839278 +179949,27032,Special Effects,1281839257 +179949,27032,stunts,1281840397 +179949,27032,stupid,1281839226 +179949,27397,bittersweet,1447976905 +179949,27397,friendship,1447976895 +179949,27397,investigation,1447976891 +179949,27397,korea,1447976885 +179949,27397,nonlinear,1447976888 +179949,27491,atmospheric,1281244830 +179949,27491,hard to follow,1281244814 +179949,27491,moody,1281244824 +179949,27491,slow paced,1281244808 +179949,27584,stupid,1270237695 +179949,27611,humanity,1266781518 +179949,27611,sci-fi,1266781541 +179949,27611,space,1266781543 +179949,27611,Special Effects,1266781493 +179949,27700,1950s,1271906480 +179949,27700,autobiographical,1271906493 +179949,27700,based on a book,1271906482 +179949,27700,boarding school,1271906466 +179949,27700,bullying,1271906506 +179949,27700,domestic violence,1271906508 +179949,27700,friendship,1271906472 +179949,27700,hierarchy,1271906469 +179949,27700,oppression,1271906476 +179949,27904,animation,1282523901 +179949,27904,autobiographical,1282524026 +179949,27904,based on a book,1282524004 +179949,27904,drugs,1282524037 +179949,27904,Keanu Reeves,1282523888 +179949,27904,paranoia,1282524040 +179949,27904,Robert Downey Jr.,1282523872 +179949,27904,rotoscoping,1282523976 +179949,27904,surreal,1282523878 +179949,30810,absurd,1332523758 +179949,30810,father-son relationship,1332523732 +179949,30810,friendship,1332523667 +179949,30810,quirky,1332523669 +179949,30810,silly,1332523673 +179949,30810,submarine,1332523688 +179949,30810,visually appealing,1332523680 +179949,30810,whimsical,1332523685 +179949,31364,melancholy,1272279806 +179949,31364,police brutality,1272279756 +179949,31364,police investigation,1272279797 +179949,31364,serial killer,1272279763 +179949,31420,corruption,1272281676 +179949,31420,detroit,1272281722 +179949,31420,jailbreak,1272281754 +179949,31420,remake,1272281670 +179949,31420,trapped,1272281699 +179949,34048,alien invasion,1271217647 +179949,34048,aliens,1271217650 +179949,34048,based on a book,1271217634 +179949,34048,H.G. Wells,1271217623 +179949,34048,slow,1271217627 +179949,34405,aliens,1271217401 +179949,34405,based on a TV show,1271217416 +179949,34405,cult film,1271217409 +179949,34405,funny,1271217435 +179949,34405,quirky,1271217425 +179949,37384,Dane Cook,1287295020 +179949,37384,identity crisis,1287295056 +179949,37384,rebellion,1287295036 +179949,37384,restaurant,1287295074 +179949,37384,Ryan Reynolds,1287295017 +179949,37384,shenanigans,1287295030 +179949,37384,workplace,1287295117 +179949,40412,abuse,1389129321 +179949,40412,atmospheric,1389128479 +179949,40412,British,1389130058 +179949,40412,brutal,1389129656 +179949,40412,bullying,1389129226 +179949,40412,disturbing,1389129637 +179949,40412,drug dealing,1389128502 +179949,40412,drugs,1389128488 +179949,40412,England,1389130038 +179949,40412,haunting,1389129452 +179949,40412,mental illness,1389128526 +179949,40412,murder,1389128575 +179949,40412,raw,1389130075 +179949,40412,revenge,1389128464 +179949,40412,sadism,1389129353 +179949,40412,slow,1389128547 +179949,40412,slow paced,1389128552 +179949,40412,soundtrack,1389128560 +179949,40412,suicide,1389129089 +179949,40412,Super 8,1389130138 +179949,40412,Super 8 footage,1389130145 +179949,40412,violent,1389129659 +179949,42197,british comedy,1270174482 +179949,42197,dark comedy,1270174467 +179949,42197,natural,1270174497 +179949,42197,slow paced,1270174508 +179949,42718,acting,1272316475 +179949,42718,anarchy,1272316492 +179949,42718,cgi,1272316473 +179949,42718,dystopia,1272316484 +179949,42718,free running,1272316450 +179949,42718,martial arts,1272316459 +179949,42718,parkour,1272316436 +179949,42718,simple,1277954931 +179949,42718,simple plot,1277954931 +179949,42718,slum,1277954970 +179949,43908,Drugs,1277920179 +179949,43908,Jason Statham,1277920182 +179949,44828,aliens,1272343487 +179949,44828,cgi,1272343518 +179949,44828,Elizabeth Banks,1272343484 +179949,44828,nathan fillion,1272343448 +179949,44828,pseudo-zombies,1272343490 +179949,44828,silly,1272343529 +179949,44828,small town,1272343549 +179949,44861,black comedy,1287529848 +179949,44861,dark comedy,1287529838 +179949,44861,Gary Oldman,1287529773 +179949,44861,hitman,1287529785 +179949,44861,mistaken identity,1287529826 +179949,44861,mixup,1287529805 +179949,45728,bad acting,1267982453 +179949,45728,crude humor,1273455986 +179949,45728,jay and silent bob,1273455970 +179949,45728,profanity,1267982483 +179949,45728,slackers,1267982468 +179949,45728,Unnecessary sequel,1267982461 +179949,45728,view askew,1273455972 +179949,45928,business,1388012933 +179949,45928,business is the antagonist,1388012863 +179949,45928,cars,1388012963 +179949,45928,corruption,1388012867 +179949,45928,environmental,1388012891 +179949,45928,lobbyism,1388012879 +179949,45928,oil,1388012954 +179949,45928,politics,1388012940 +179949,45928,propaganda,1388012936 +179949,46965,absurd,1313716627 +179949,46965,Cult film,1313716583 +179949,46965,silly,1313716610 +179949,46965,snakes on crack,1313716625 +179949,47394,clash of cultures,1270004818 +179949,47394,québécois,1270004832 +179949,47394,sport:ice hockey,1270004824 +179949,47610,Illusionism,1295159125 +179949,47610,Magic,1295159095 +179949,47610,romance,1295159149 +179949,47610,twist ending,1295159169 +179949,47952,magic,1270529366 +179949,47952,Teen movie,1269819562 +179949,47952,witches,1270529360 +179949,48231,absurd,1289573767 +179949,48231,brutal,1289573694 +179949,48231,eating contest,1289573707 +179949,48231,gross,1289573685 +179949,48231,grotesque,1289573751 +179949,48231,nudity,1289573723 +179949,48416,course,1286580789 +179949,48416,losers,1286580772 +179949,48416,nerds,1286580761 +179949,48416,transformation,1286580807 +179949,48520,competition,1270266233 +179949,48520,Dane Cook,1270266151 +179949,48738,Africa,1343239643 +179949,48738,based on a true story,1343239639 +179949,48738,historical,1343239645 +179949,48738,Uganda,1343239636 +179949,48738,violent,1343239637 +179949,50442,drug dealers,1448046011 +179949,50442,drugs,1448046007 +179949,50442,teens,1448046034 +179949,50442,true story,1448045985 +179949,50442,wannabe gangsters,1448046025 +179949,50804,boring,1280765753 +179949,50804,serial killer,1280765774 +179949,52328,cinematography,1332488757 +179949,52328,dark,1332488710 +179949,52328,isolation,1332488732 +179949,52328,madness,1332488729 +179949,52328,sci-fi,1332488687 +179949,52328,space,1332488721 +179949,52328,suicide,1332488691 +179949,52328,unoriginal,1332488762 +179949,52606,dark comedy,1269980814 +179949,52606,David Schwimmer,1269980825 +179949,52606,Simon Pegg,1269980823 +179949,53129,Dane Cook,1280795185 +179949,53318,british,1333939867 +179949,53318,imagination,1333939849 +179949,53318,insomnia,1333939887 +179949,53318,quirky,1333939862 +179949,53318,slackers,1333939843 +179949,53318,stopping time,1333939902 +179949,53318,supermarket,1333939857 +179949,53318,surreal,1333939837 +179949,53318,time,1333939835 +179949,53468,1950s,1275271871 +179949,53906,1960s,1271906328 +179949,53906,abuse,1271906152 +179949,53906,based on a book,1271906029 +179949,53906,coming of age,1271906037 +179949,53906,friendship,1271906142 +179949,53906,laestadianism,1271906226 +179949,53906,lappland,1271906113 +179949,53906,pop music,1271906129 +179949,53906,small town,1271906062 +179949,53906,sweden,1271906342 +179949,54075,church,1271906544 +179949,54075,crusaders,1271906542 +179949,54075,medieval,1271906546 +179949,54075,templar,1271906538 +179949,54075,templars,1271906540 +179949,54648,cheesy,1269563568 +179949,54648,Jackie Chan,1269563557 +179949,55116,improbable,1274391794 +179949,55267,cliche,1303258000 +179949,55267,infidelity,1303258008 +179949,55267,large family,1303258025 +179949,55267,not a comedy,1303257919 +179949,55267,not funny,1303257921 +179949,55267,predictable,1303257906 +179949,55267,sappy,1303257929 +179949,55267,tedious,1303258018 +179949,55276,corporate espionage,1332653166 +179949,55276,ethics,1332653194 +179949,55276,good ending,1332653229 +179949,55276,great acting,1332653182 +179949,55276,great cast,1332653188 +179949,55276,lawyers,1332653176 +179949,55276,loan shark,1332653180 +179949,55276,slow,1332653242 +179949,55282,blood,1287366492 +179949,55282,polar night,1287366699 +179949,55282,remote location,1287366701 +179949,55282,small town,1287366702 +179949,55282,snow,1287366490 +179949,55282,survival,1287366482 +179949,55282,vampire,1287366480 +179949,55290,Casey Affleck,1269651742 +179949,55290,Ed Harris,1269651761 +179949,55290,multilayered,1269651730 +179949,55290,twist,1269651729 +179949,55408,murder,1333234618 +179949,55408,stalker,1333234614 +179949,55462,characters,1311895092 +179949,55462,no story,1311895082 +179949,55721,brazil,1277945175 +179949,55721,corruption,1277945156 +179949,55721,Drugs,1277945158 +179949,55721,foreign language,1277945139 +179949,55721,organized crime,1277945151 +179949,55721,police corruption,1277945153 +179949,55721,poverty,1277945172 +179949,55721,violence,1277945147 +179949,55805,disjointed timeline,1272281585 +179949,55908,bad acting,1332658360 +179949,55908,cheesy,1332658353 +179949,55908,dialogue driven,1332658378 +179949,55908,history,1332658413 +179949,55908,immortality,1332658364 +179949,55908,intelligent,1332658402 +179949,55908,philosophical,1332658367 +179949,55908,religion,1332658384 +179949,55908,thought-provoking,1332658393 +179949,55908,unique,1332658370 +179949,56003,apocalypse,1281717371 +179949,56003,Dwayne Johnson,1269842553 +179949,56003,dystopia,1281717374 +179949,56003,puzzling,1269842545 +179949,56003,Sarah Michelle Gellar,1269842548 +179949,56003,stupid,1269842576 +179949,56003,surreal,1269842557 +179949,56003,trying to hard,1269842638 +179949,56003,weird,1281717384 +179949,56367,adoption,1324842344 +179949,56367,bittersweet,1324842286 +179949,56367,dramedy,1324842313 +179949,56367,excellent script,1324842332 +179949,56367,feel-good,1324842283 +179949,56367,high school,1324842300 +179949,56367,pregnancy,1324842292 +179949,56367,teenager,1324842334 +179949,56367,witty,1324842294 +179949,56563,Gary Hustwit,1268162503 +179949,56563,many interviews,1268162557 +179949,56563,modernism,1268162531 +179949,56563,noncommittal,1268162540 +179949,56563,shallow,1268162547 +179949,56563,typography,1268162507 +179949,56805,drugs,1286732324 +179949,56805,Jack Black,1286732318 +179949,56805,Jenna Fischer,1286732312 +179949,56805,parody,1286732304 +179949,56805,satire,1286732306 +179949,56805,silly,1286732332 +179949,57274,atmospheric,1346249609 +179949,57274,claustrophobic,1346249625 +179949,57274,found footage,1346249605 +179949,57274,infection,1346249596 +179949,57274,isolation,1346249613 +179949,57274,Spanish,1346249640 +179949,57274,virus,1346249592 +179949,57274,zombies,1346249590 +179949,57368,cgi,1311911937 +179949,57368,city under attack,1311911923 +179949,57368,found footage,1311911875 +179949,57368,giant monster,1311911944 +179949,57368,Handycam,1311911974 +179949,57368,mockumentary,1311911971 +179949,57368,monster,1311911946 +179949,57368,New York City,1311911926 +179949,57526,hacking,1269664960 +179949,57669,black comedy,1269569775 +179949,57669,Colin Farrell,1269569772 +179949,57669,dark comedy,1269569777 +179949,57669,directorial debut,1269569814 +179949,58103,assassination,1332343345 +179949,58103,double agents,1332343353 +179949,58103,fast paced,1332343349 +179949,58103,multiple storylines,1332343371 +179949,58103,murder,1332343343 +179949,58103,secret service,1332343342 +179949,58295,heist,1269821881 +179949,58295,Jason Statham,1269821875 +179949,58998,break-up,1289169865 +179949,58998,good dialogue,1289169894 +179949,58998,hilarious,1289169856 +179949,58998,hotel,1289169874 +179949,58998,Predictable,1289169851 +179949,58998,puppets,1289169859 +179949,59040,acting,1270100137 +179949,59040,cliche,1270100063 +179949,59040,inconsistent,1270100052 +179949,59040,low budget,1270100117 +179949,59040,overuse of coloring,1270100095 +179949,59040,poor script,1270099522 +179949,59105,Afghanistan,1364651020 +179949,59105,Egypt,1364651037 +179949,59105,islam,1364650998 +179949,59105,Israel,1364651028 +179949,59105,Jordan,1364651111 +179949,59105,Morocco,1364651101 +179949,59105,muslim,1364650984 +179949,59105,Pakistan,1364651007 +179949,59105,pregnancy,1364651282 +179949,59105,premise,1364651400 +179949,59105,Saudi Arabia,1364651042 +179949,59105,tasteless,1364651122 +179949,59105,terrorism,1364651306 +179949,59621,bank robbery,1270841507 +179949,60072,bullets,1269627055 +179949,60072,gun fu,1269627065 +179949,60072,plot twist,1269627073 +179949,60072,stylized violence,1269627075 +179949,61240,1980s,1312040642 +179949,61240,atmospheric,1312040382 +179949,61240,bittersweet,1312040442 +179949,61240,bullying,1270581360 +179949,61240,coming of age,1270581362 +179949,61240,dark,1312040442 +179949,61240,vampire,1270581349 +179949,61692,aliens,1311881057 +179949,61692,meh,1311881069 +179949,61692,no plot,1311881086 +179949,61692,not original,1311881075 +179949,61950,correctional treatment,1280851060 +179949,61950,rehabilitation,1280851485 +179949,61950,tough love,1280850935 +179949,62376,adventure,1271898591 +179949,62376,steampunk,1271898587 +179949,62378,awkward,1337550349 +179949,62378,awkward romance,1337550353 +179949,62378,cheating,1337550426 +179949,62378,friendship,1337550417 +179949,62378,funny,1337550342 +179949,62378,magician,1337550403 +179949,62378,magicians,1337550409 +179949,62378,widower,1337550392 +179949,62733,claustrophobic,1346249693 +179949,62733,found footage,1346249669 +179949,62733,infection,1346249680 +179949,62733,isolation,1346249686 +179949,62733,remake,1346249672 +179949,62733,zombies,1346249677 +179949,63072,cannibalism,1332664839 +179949,63072,children,1332664845 +179949,63072,dark,1332664896 +179949,63072,depressing,1332664842 +179949,63072,dystopia,1332664856 +179949,63072,great acting,1332664849 +179949,63072,lame ending,1332666350 +179949,63072,post-apocalyptic,1332664859 +179949,63072,slow paced,1332666323 +179949,63072,survival,1332664853 +179949,63072,tense,1332664831 +179949,63826,nothing original,1270249655 +179949,63826,seen it before,1270249618 +179949,63826,zombies,1270249684 +179949,63992,high school,1267516461 +179949,63992,overrated,1267516449 +179949,63992,Teen movie,1267516452 +179949,64010,acting,1311880274 +179949,64010,characters,1311880277 +179949,64010,gore,1311880285 +179949,64010,plot,1311880279 +179949,64037,bad acting,1332396003 +179949,64037,dialogue,1332396008 +179949,64037,disturbing,1332396018 +179949,64037,FBI,1332395996 +179949,64037,serial killer,1332395993 +179949,65126,based on book,1309447107 +179949,65126,Chuck Palahniuk,1309447040 +179949,65126,dark comedy,1309447034 +179949,65982,acting,1269625480 +179949,65982,norse,1269625494 +179949,65982,plot holes,1269625485 +179949,65982,sci-fi,1269625501 +179949,65982,vikings,1269625477 +179949,66511,brother-brother relationship,1311882101 +179949,66511,clubs,1311882049 +179949,66511,dj,1311882035 +179949,66511,drugs,1311882082 +179949,66511,father-son relationship,1311882094 +179949,66511,great soundtrack,1311881999 +179949,66511,mental health,1311882078 +179949,66511,mental hospital,1311882080 +179949,66511,mental illness,1311882076 +179949,66511,music business,1311882073 +179949,66511,rave,1311882054 +179949,66511,techno,1311881997 +179949,66785,Funny,1269570357 +179949,66785,one of a kind,1269570340 +179949,66785,Weird,1269570358 +179949,67734,quirky,1281136904 +179949,67801,atmosphere,1272209687 +179949,67801,bank robbery,1272209599 +179949,67801,prostitution,1272209616 +179949,67801,revenge,1272209628 +179949,68028,Amanda Peet,1269569506 +179949,68028,Ethan Hawke,1269569499 +179949,68028,Mark Ruffalo,1269569498 +179949,68073,1960s,1311880144 +179949,68073,bad script,1311880199 +179949,68073,characters,1311880152 +179949,68073,cliche,1311880188 +179949,68073,ending,1311880194 +179949,68073,music,1311880137 +179949,68073,radio,1311880234 +179949,68073,retro,1311880132 +179949,68073,rock and roll,1311880213 +179949,68073,soundtrack,1311880219 +179949,68157,alternate history,1274058560 +179949,68157,black comedy,1274058502 +179949,68157,Brad Pitt,1274058495 +179949,68157,Quentin Tarantino,1274058530 +179949,68157,tense,1274058523 +179949,68157,vengeance,1274058570 +179949,68237,dystopia,1267566646 +179949,68237,Sam Rockwell,1267566640 +179949,68237,slow paced,1267566637 +179949,68237,solitude,1267566643 +179949,68659,fractured story,1273192642 +179949,68659,geek,1273192639 +179949,68659,Kristen Bell,1273192624 +179949,68659,nerd,1273192626 +179949,68659,pop culture references,1273192632 +179949,68659,road trip,1273192622 +179949,68659,star wars,1273192629 +179949,69122,absurd,1325289303 +179949,69122,bachelor party,1325289324 +179949,69122,casino,1325289298 +179949,69122,Drinking,1325289308 +179949,69122,drugs,1325289297 +179949,69122,Las Vegas,1325289286 +179949,69122,strippers,1325289314 +179949,69122,Vulgar,1325289289 +179949,69275,Nazis,1270237777 +179949,69275,ridiculous,1270237761 +179949,69275,splatter,1270237767 +179949,69284,controversial,1271905560 +179949,69284,dream sequence,1271905926 +179949,69284,friendship,1271905834 +179949,69284,masturbation,1271905574 +179949,69284,pornography,1271905716 +179949,69284,relationships,1271905847 +179949,69284,self-esteem,1271905748 +179949,69284,self-mutilation,1271905913 +179949,69324,assassination,1281823994 +179949,69324,based on a true story,1281824102 +179949,69324,betrayal,1281823977 +179949,69324,brutality,1281824152 +179949,69324,Nazis,1281824228 +179949,69324,resistance movement,1281824244 +179949,69324,violence,1281824125 +179949,69324,war,1281824026 +179949,69324,World War II,1281824240 +179949,69803,animals,1270690513 +179949,69803,classic,1324785105 +179949,69803,invention,1270690502 +179949,69803,inventor,1270690496 +179949,69803,Ivo Caprino,1270690389 +179949,69803,stop motion,1324785117 +179949,69803,talking animals,1270690518 +179949,69951,cgi,1277396743 +179949,69951,deal with the devil,1277396759 +179949,69951,surreal,1277396789 +179949,70286,aliens,1271217300 +179949,70286,alternate history,1271217336 +179949,70286,IMDB Top 250,1271217314 +179949,70286,one of a kind,1271217379 +179949,70286,ridiculous,1271217364 +179949,70336,bad plot,1277685505 +179949,70336,childish,1277685507 +179949,70336,plot holes,1277685540 +179949,70336,Special Effects,1277685511 +179949,70451,Aksel Hennie,1269482577 +179949,70451,cheesy,1269482479 +179949,70451,Norway,1269482485 +179949,71106,great premise,1332214699 +179949,71106,off-beat,1332214687 +179949,71106,sci-fi,1332214676 +179949,71106,shit ending,1332214673 +179949,71106,surreal,1332214694 +179949,71106,time travel,1332214678 +179949,71106,weird pacing,1332214670 +179949,71205,one of a kind,1269563711 +179949,71205,ridiculous,1269563640 +179949,71205,weird,1269563658 +179949,71211,awkward,1267900367 +179949,71211,Matt Damon,1267900362 +179949,71500,cliche,1340759356 +179949,71500,Halloween,1287295217 +179949,71500,linked storylines,1340759332 +179949,71500,multiple storylines,1287295201 +179949,71500,stereotypes,1340759354 +179949,71500,surprisingly good,1287295248 +179949,71500,vampires,1287295226 +179949,71500,werewolves,1287295231 +179949,71530,androids,1269640596 +179949,71530,bad plot,1269640605 +179949,71573,few action scenes,1265910779 +179949,71573,Kate Beckinsale,1265910759 +179949,71573,mystery,1265910759 +179949,71573,thriller,1265910759 +179949,71732,black comedy,1269813200 +179949,71732,Dominic Monaghan,1269813176 +179949,71732,Larry Fessenden,1269813175 +179949,72167,Billy Connolly,1269309097 +179949,72167,Clifton Collins Jr.,1269309131 +179949,72167,disappointing,1269309090 +179949,72167,just plain wrong,1269309244 +179949,72167,Norman Reedus,1269309146 +179949,72167,Peter Fonda,1269309197 +179949,72167,Sean Patrick Flanery,1269309151 +179949,72171,blaxploitation,1270529421 +179949,72171,Comedy is way too obvious,1270529463 +179949,72171,exploration,1270529430 +179949,72171,parody,1270529436 +179949,72171,theme music,1270529417 +179949,72171,too much,1270524230 +179949,72226,George Clooney,1269620640 +179949,72226,stop motion,1269620644 +179949,72308,bsg rough summary,1267504540 +179949,72308,clip show,1267504477 +179949,72308,Grace Park,1267504501 +179949,72308,lack of story,1267504556 +179949,72308,made for TV,1267504480 +179949,72308,plot,1267504546 +179949,72489,extremely gory,1269742765 +179949,72489,Naomie Harris,1269742760 +179949,72489,ninja,1269742710 +179949,72489,ninjas,1269742713 +179949,72489,plot,1269742724 +179949,72489,stylized violence,1269742787 +179949,72557,accidents,1419662332 +179949,72557,bad luck,1419662351 +179949,72557,cover-up,1419662357 +179949,72557,dark,1419662328 +179949,72557,death,1419662372 +179949,72701,50's & 60's,1270698444 +179949,72701,alien invasion,1270698436 +179949,72701,aliens,1270698442 +179949,72701,cast,1270698468 +179949,72701,cgi,1270698446 +179949,72701,Eisenhower-era,1270698494 +179949,72701,Gary Oldman,1270698691 +179949,72701,soundtrack,1270698191 +179949,72701,soundtrack features bad cover songs,1270698219 +179949,72712,Gary Hustwit,1268162566 +179949,72712,industrial design,1268162573 +179949,72712,jonathan ive,1263634622 +179949,72982,based on a book,1273669305 +179949,72982,Caterina Scorsone,1273669315 +179949,72982,creative adaptation,1273669296 +179949,72982,made for TV,1273669300 +179949,72982,surreal,1273669292 +179949,72998,3d,1271895192 +179949,72998,aliens,1271895216 +179949,72998,cgi,1271895256 +179949,72998,colonialism,1271895220 +179949,72998,futuristic,1271895267 +179949,72998,jungle,1271895281 +179949,72998,predictable,1271895198 +179949,72998,revolution,1271895211 +179949,72998,sci-fi,1271895249 +179949,72998,war,1271895223 +179949,72998,Zoe Saldana,1271895244 +179949,73017,Action,1269734959 +179949,73017,Atmospheric,1269734931 +179949,73017,CGI,1269734915 +179949,73017,dialogue,1269734982 +179949,73017,mystery,1269734923 +179949,73017,plot,1269734919 +179949,73017,Robert Downey Jr.,1269734900 +179949,73017,slow motion,1269734976 +179949,73266,funny,1285180743 +179949,73266,love,1285180758 +179949,73266,Ray Liotta,1285180745 +179949,73266,Steve Buscemi,1285180747 +179949,73266,Zach Galifianakis,1285180749 +179949,73321,Bible,1277428187 +179949,73321,Christianity,1277428334 +179949,73321,dystopic future,1277428093 +179949,73321,faith,1277428366 +179949,73321,future,1277428100 +179949,73321,pace,1277428113 +179949,73321,plot holes,1277428088 +179949,73321,post-apocalyptic,1277428078 +179949,73321,slow paced,1277428123 +179949,73321,Stylistic,1277428101 +179949,73321,twist ending,1277428174 +179949,73323,corruption,1271906674 +179949,73323,hackers,1271906598 +179949,73323,hacking,1271906607 +179949,73323,journalism,1271906613 +179949,73323,Michael Nyqvist,1271906421 +179949,73323,miscarriage of justice,1271906837 +179949,73323,psychiatry,1271906721 +179949,73323,trial,1271906651 +179949,73808,ex-cop,1293331532 +179949,73808,pimp,1293331535 +179949,73808,serial killer,1293331540 +179949,74156,conspiracy,1280979642 +179949,74156,cover up,1280979645 +179949,74156,father-daughter relationship,1280979737 +179949,74156,Loss of child,1280979762 +179949,74156,murder,1280979703 +179949,74156,nuclear weapons,1280979627 +179949,74156,radiation,1280979670 +179949,74228,atmospheric,1286833627 +179949,74228,endless loop,1286833654 +179949,74228,grim,1286833652 +179949,74228,ship,1286833621 +179949,74228,time loop,1286833624 +179949,74452,boring,1277414582 +179949,74452,moody atmosphere,1277414589 +179949,74452,predictable,1277414584 +179949,74510,hackers,1271906746 +179949,74510,hacking,1271906755 +179949,74510,journalism,1271906741 +179949,74510,miscarriage of justice,1271906847 +179949,74668,anarchy,1277954992 +179949,74668,free running,1277954956 +179949,74668,parkour,1277954980 +179949,74668,simple,1277954943 +179949,74668,simple plot,1277954943 +179949,74668,slum,1277954963 +179949,74685,contamination,1280898356 +179949,74685,small town,1280898370 +179949,74685,virus,1280898344 +179949,74685,zombies,1280898336 +179949,74795,CIA Agent,1299361274 +179949,74795,conspiracy,1299361244 +179949,74795,Corrupt Government,1299361247 +179949,74795,Deception,1299361248 +179949,74795,Espionage,1299361252 +179949,74795,Iraq War,1299361262 +179949,74795,Middle East,1299361264 +179949,74795,U.S. Army,1299361259 +179949,74795,Weapon of Mass Destruction,1299361257 +179949,74851,characters,1311880996 +179949,74851,drugs,1311880920 +179949,74851,embassy,1311880967 +179949,74851,espionage,1311880964 +179949,74851,intelligence,1311880931 +179949,74851,John Travolta,1311880956 +179949,74851,terrorism,1311880960 +179949,74851,unorthodox,1311880977 +179949,74851,violence,1311880979 +179949,74944,death wish,1311881809 +179949,74944,multiple storylines,1311881820 +179949,74944,no story,1311881813 +179949,74944,revenge,1311881807 +179949,74944,seen it before,1311881856 +179949,74944,storytelling,1311881835 +179949,74948,drugs,1280773351 +179949,74948,Emily Mortimer,1280773336 +179949,74948,Michael Caine,1280773333 +179949,74948,murder,1280773367 +179949,74948,organized crime,1280773343 +179949,74948,revenge,1280773372 +179949,74948,violence,1280773364 +179949,75425,characters,1287093624 +179949,75425,weak characters,1287093614 +179949,75805,predictable,1285816035 +179949,76077,alternate reality,1281047751 +179949,76077,back to the future,1281047765 +179949,76077,drinking,1281047838 +179949,76077,drugs,1281047841 +179949,76077,seen it before,1281047848 +179949,76077,time travel,1281047737 +179949,76173,funny,1283033297 +179949,76173,justice,1283033330 +179949,76173,odd,1283033306 +179949,76173,plot,1283033314 +179949,76173,quirky,1283033301 +179949,76173,revenge,1283033325 +179949,76210,corruption,1270841647 +179949,76210,Elias Koteas,1270841665 +179949,76210,mental illness,1270841554 +179949,76210,superhero,1270841559 +179949,76210,vigilante,1270841629 +179949,76251,comic book,1281069275 +179949,76251,graphic violence,1281069480 +179949,76251,humorous,1281069279 +179949,76251,original plot,1281069449 +179949,76251,revenge,1281069271 +179949,76251,superhero,1281069252 +179949,76251,vigilante,1281069272 +179949,76317,death,1281056160 +179949,76317,depression,1281056425 +179949,76317,mystery,1281056439 +179949,76317,slow paced,1281056135 +179949,77561,bad science,1285887047 +179949,77561,Robert Downey Jr.,1285887052 +179949,77795,conspiracy,1325342791 +179949,77795,deception,1325342829 +179949,77795,lengthy,1325342765 +179949,77795,murder,1325342781 +179949,77795,open ending,1325342772 +179949,77795,post-apocalyptic,1325342775 +179949,77795,space travel,1325342778 +179949,77795,terrorism,1325342878 +179949,77795,virtual reality,1325342845 +179949,77798,plot,1288464695 +179949,77798,plot holes,1288464702 +179949,77798,remake,1288464705 +179949,77798,unimaginative,1288464685 +179949,77800,controversial,1293154254 +179949,77800,dark comedy,1293154244 +179949,77800,silly,1293154237 +179949,77800,suicide bomber,1293154226 +179949,77800,terrorism,1293154233 +179949,78088,buried alive,1308707253 +179949,78088,claustrophobic,1308707271 +179949,78088,false hope,1308707348 +179949,78088,frustrating to watch,1308707305 +179949,78088,lies,1308707339 +179949,78088,Middle East,1308707256 +179949,78088,No Flashbacks,1308707258 +179949,78105,action,1285541625 +179949,78105,adventure,1285541622 +179949,78105,Gemma Arterton,1285541610 +179949,78105,over the top,1285541667 +179949,78105,parkour,1285541635 +179949,78105,Special Effects,1285541647 +179949,78105,stylized,1285541686 +179949,78160,british comedy,1276866872 +179949,78160,stand-up comedy,1276866862 +179949,78209,music,1311938992 +179949,78209,music business,1311938987 +179949,78209,silly,1311939012 +179949,78209,soundtrack,1311938999 +179949,78266,bad acting,1288044808 +179949,78266,biology,1288045543 +179949,78266,childhood issues,1288045559 +179949,78266,genetics,1288044816 +179949,78266,monster,1288045529 +179949,78266,rape,1288044829 +179949,78266,secrecy,1288044827 +179949,78266,sex scene,1288044809 +179949,78349,group psychology,1285797305 +179949,78349,isolation,1285797307 +179949,78469,cheesy,1294455856 +179949,78469,plot,1294455839 +179949,78469,ridiculous,1294455834 +179949,79091,animation,1291919035 +179949,79091,father-son relationship,1291919023 +179949,79091,mad scientist,1291919014 +179949,79091,minions,1291919105 +179949,79091,Steve Carell,1291918985 +179949,79091,super villain,1291918998 +179949,79132,alternate reality,1292975852 +179949,79132,great soundtrack,1292975777 +179949,79132,multiple realities,1292975849 +179949,79132,predictable,1292975763 +179949,79132,soundtrack,1292975785 +179949,79132,surreal,1292975758 +179949,79132,visually appealing,1292975759 +179949,79132,visually stunning,1292975760 +179949,79185,action,1293250134 +179949,79185,adventure,1293250132 +179949,79185,car chase,1293250150 +179949,79185,good versus evil,1293250136 +179949,79185,predictable ending,1293250113 +179949,79293,assassination,1292984143 +179949,79293,cliche,1292984132 +179949,79293,double agents,1292984144 +179949,79293,espionage,1292984147 +179949,79293,murder,1292984141 +179949,79293,sleeper agent,1292984101 +179949,79293,Soviet Union,1292984105 +179949,79293,too much,1292984163 +179949,79533,cartoon,1285180613 +179949,79533,classic,1285180604 +179949,79533,shorts,1285180616 +179949,79663,journalism,1281716625 +179949,79663,loss,1281716658 +179949,79663,photography,1281716619 +179949,79663,psychology,1281716643 +179949,79663,supressed memories,1281716693 +179949,79695,80s nostalgia,1293079041 +179949,79695,action,1293079149 +179949,79695,brutal,1293079127 +179949,79695,cast,1293079025 +179949,79695,plot,1293078986 +179949,79695,thin story,1293079004 +179949,79695,unrealistic,1293078983 +179949,79695,violence,1293079081 +179949,79695,violent,1293079137 +179949,79702,cultural references,1325300558 +179949,79702,innovative,1325300595 +179949,79702,soundtrack,1325300577 +179949,79702,stylized,1325300562 +179949,79702,surreal,1325300587 +179949,79702,video games,1325300564 +179949,79702,visually appealing,1325300566 +179949,80126,assassin,1294517613 +179949,80126,italian music,1294517579 +179949,80126,Italy,1294517605 +179949,80126,long takes,1294517541 +179949,80126,retro,1294517585 +179949,80126,stylized,1294517594 +179949,80126,suspense,1294517558 +179949,80463,based on true story,1291317731 +179949,80463,facebook,1291317771 +179949,80463,social network,1291317759 +179949,80463,university,1291317768 +179949,80489,bank robbery,1309477977 +179949,80489,FBI,1309477990 +179949,80489,heist,1309477988 +179949,80489,unlikeable characters,1309477983 +179949,80489,unoriginal,1309478020 +179949,80572,cameo,1312046062 +179949,80572,hoax,1312054796 +179949,80572,mockumentary,1312054793 +179949,80572,prank,1312054794 +179949,80615,battles,1311901473 +179949,80615,cgi,1311901420 +179949,80615,childish,1311901427 +179949,80615,cliche,1311901509 +179949,80615,david vs goliath,1311901495 +179949,80615,fantasy,1311901524 +179949,80615,good versus evil,1311901467 +179949,80615,journey,1311901595 +179949,80615,owls,1311901603 +179949,80615,pompous,1311901651 +179949,80615,predictable,1311901439 +179949,80615,stunning,1311901414 +179949,80615,visually appealing,1311901407 +179949,80615,weak plot,1311901431 +179949,80693,bittersweet,1324793792 +179949,80693,cliche,1324793790 +179949,80693,coming of age,1324793812 +179949,80693,depression,1324793784 +179949,80693,dramedy,1324793842 +179949,80693,mental illness,1324793805 +179949,80693,obvious,1324793797 +179949,80693,suicide,1324793803 +179949,80693,touching,1324793807 +179949,80831,1980s,1312040639 +179949,80831,atmospheric,1312040450 +179949,80831,bittersweet,1312040500 +179949,80831,bullying,1312040352 +179949,80831,coming of age,1312040365 +179949,80831,dark,1312040454 +179949,80831,identical remake,1312040540 +179949,80831,remake,1312040555 +179949,80831,shot by shot remake,1312040534 +179949,80831,vampire,1312040415 +179949,80846,elevator,1420359357 +179949,80846,guilt,1420359375 +179949,80846,homicide,1420359352 +179949,80846,plot twist,1420359329 +179949,80846,regret,1420359372 +179949,80846,religion,1420359342 +179949,80846,supernatural,1420359332 +179949,80917,aliens,1325348931 +179949,80917,bad dialogue,1325348958 +179949,80917,mexico,1325348977 +179949,80917,nothing happens,1325348991 +179949,80917,realism,1325348987 +179949,80917,romance,1325348944 +179949,81140,multiple personalities,1311881455 +179949,81140,religion,1311881494 +179949,81140,souls,1311881481 +179949,81140,supernatural,1311881436 +179949,81229,assassin,1295420655 +179949,81229,cia,1295420675 +179949,81229,conspiracy,1295420667 +179949,81229,hilarious,1295420686 +179949,81229,John Malkovich,1295420635 +179949,81229,murder,1295420649 +179949,81229,retirees,1295420652 +179949,81229,unbelievable,1295420643 +179949,81417,cliched plot,1311911845 +179949,81417,found footage,1311911499 +179949,81417,not scary,1308869972 +179949,81417,predictable,1308869961 +179949,81417,prequel,1308870012 +179949,81417,sequel,1308870001 +179949,81417,tedious,1308869986 +179949,82093,gangsters,1364741040 +179949,82093,London,1364741033 +179949,82093,organized crime,1364741045 +179949,82093,unpredictable,1364741017 +179949,82093,vindictive,1364741217 +179949,82459,characters,1335669448 +179949,82459,dark,1335669428 +179949,82459,justice,1335669430 +179949,82459,revenge,1335669431 +179949,82461,futuristic,1308835253 +179949,82461,music,1308835275 +179949,82461,scenic,1308835232 +179949,82461,sci-fi,1308835256 +179949,82461,soundtrack,1308835281 +179949,82461,stylized,1308835230 +179949,82461,technology,1308835268 +179949,82461,virtual reality,1308835250 +179949,82461,visually appealing,1308835228 +179949,82667,hunting,1303269738 +179949,82667,loss,1303269760 +179949,82667,murder,1303269690 +179949,82667,revenge,1303269696 +179949,82667,serial killer,1303269684 +179949,82667,torture,1303269719 +179949,83349,anti-hero,1308886331 +179949,83349,gadgets,1308886359 +179949,83349,martial arts,1308886319 +179949,83349,parody,1308886339 +179949,83349,predictable,1308886305 +179949,83349,Unlikable protagonist,1308886312 +179949,83349,visually appealing,1308886314 +179949,83374,bittersweet,1311882158 +179949,83374,cgi heavy,1311882426 +179949,83374,culture clash,1311882450 +179949,83374,ninja,1311882435 +179949,83374,over the top,1311882166 +179949,83374,poor acting,1311882149 +179949,83374,slow,1311882155 +179949,83374,spaghetti western,1311882396 +179949,83374,stylized,1311882404 +179949,83374,western,1311882175 +179949,83613,aliens,1324517124 +179949,83613,cast,1324517136 +179949,83613,cowboys,1324517125 +179949,83976,aging,1333959286 +179949,83976,career,1333959204 +179949,83976,comedy,1333959155 +179949,83976,dark,1333959175 +179949,83976,fame,1333959212 +179949,83976,family,1333959262 +179949,83976,funny,1333959180 +179949,83976,impressions,1333959310 +179949,83976,loneliness,1333959251 +179949,83976,quirky,1333959188 +179949,83976,realism,1333959169 +179949,84152,childish,1324693477 +179949,84152,concept,1324693474 +179949,84152,doesn't resist to some cliches,1324693471 +179949,84152,drug,1324693500 +179949,84152,drugs,1324693490 +179949,84601,amnesia,1311880884 +179949,84601,assassin,1311880806 +179949,84601,car accident,1311880833 +179949,84601,conspiracy,1311880889 +179949,84601,identity theft,1311880887 +179949,84601,not original,1311880771 +179949,84772,Atheism,1309320222 +179949,84772,dumb cops,1309320230 +179949,84772,geeky,1309320212 +179949,84772,laidback,1309320271 +179949,84772,roadtrip,1309320292 +179949,84772,silly,1309320280 +179949,84944,cowboys,1337474085 +179949,84944,hero,1337474081 +179949,84944,small town,1337474079 +179949,84944,spaghetti western,1337474071 +179949,84944,talking animals,1337474090 +179949,84944,water,1337474075 +179949,84944,western,1337474073 +179949,84954,fate,1313821145 +179949,84954,free will,1313821110 +179949,84954,long build-up,1313821217 +179949,84954,original plot,1313821274 +179949,84954,simple ending,1313821251 +179949,84954,story,1313821281 +179949,85020,assassin,1308877238 +179949,85020,cliche,1308877212 +179949,85020,hit men,1308877234 +179949,85020,hitman,1308877237 +179949,85020,mentor,1308877201 +179949,85020,no depth,1308877160 +179949,85020,shallow,1308877150 +179949,85020,violence,1308877149 +179949,85056,alien,1311880565 +179949,85056,characters,1311880588 +179949,85056,cheesy,1311880582 +179949,85056,childish plot,1311880552 +179949,85056,cliche,1311880576 +179949,85056,Disney,1311880614 +179949,85056,sci-fi,1311880622 +179949,85056,superhero,1311880559 +179949,85056,supernatural,1311880561 +179949,85131,alien invasion,1311989294 +179949,85131,aliens,1311989286 +179949,85131,CGI,1311989307 +179949,85131,Cheesy Soundtrack,1311989291 +179949,85131,cliche,1311989259 +179949,85131,repetitive,1311989275 +179949,85131,sci-fi,1311989280 +179949,85131,search and rescue,1311989323 +179949,85131,war,1311989282 +179949,85131,warfare,1311989311 +179949,85213,atheism,1311881119 +179949,85213,contrast,1311881259 +179949,85213,dialogue driven,1311881123 +179949,85213,existentialism,1311881226 +179949,85213,intense,1311881162 +179949,85213,meaning of life,1311881187 +179949,85213,pain,1311881272 +179949,85213,psychological,1311881158 +179949,85213,religion,1311881126 +179949,85213,suffering,1311881278 +179949,85213,suicide,1311881166 +179949,85213,theatrical acting,1311881151 +179949,85401,bitter,1324960235 +179949,85401,black comedy,1324960267 +179949,85401,disturbing,1324960231 +179949,85401,superhero,1324960244 +179949,85401,vigilante,1324960215 +179949,85401,violent,1324960216 +179949,85412,bad acting,1311911668 +179949,85412,conspiracy,1311911529 +179949,85412,cover up,1311911723 +179949,85412,found footage,1311911517 +179949,85412,government agencies,1311911736 +179949,85412,hunting,1311911750 +179949,85412,monsters,1311911306 +179949,85412,mythology,1311911524 +179949,85412,scenic,1311911536 +179949,85412,secret agency,1311911742 +179949,85412,trolls,1311911522 +179949,85414,adventure,1315625589 +179949,85414,deja vu,1315625536 +179949,85414,frustrating to watch,1315625486 +179949,85414,parallel universe,1315625564 +179949,85414,plot,1315625493 +179949,85414,plot holes,1315625509 +179949,85414,science fiction,1315625546 +179949,85414,suspense,1315625549 +179949,85510,bad accents,1309145054 +179949,85510,characters,1309145064 +179949,85510,lobotomy,1309145094 +179949,85510,Misandry,1309145009 +179949,85510,Misogyny,1309145010 +179949,85510,Rape Culture,1309145013 +179949,85510,soundtrack,1309144982 +179949,85510,story,1309145067 +179949,85510,stylized,1309145082 +179949,85510,Surreal,1309145015 +179949,86233,characters,1316834723 +179949,86233,plot,1316834681 +179949,86233,stupid,1316834688 +179949,86233,weird,1316834665 +179949,86233,wrong,1316834671 +179949,86233,wtf,1316834701 +179949,86320,anxiety,1333234022 +179949,86320,apocalypse,1333233950 +179949,86320,bi-polar personality,1333233985 +179949,86320,cinematography,1333233928 +179949,86320,claustrophobic,1333940079 +179949,86320,depression,1333234002 +179949,86320,end of the world,1333940113 +179949,86320,pretentious,1333940124 +179949,86320,siblings,1333233933 +179949,86320,sisters,1333233936 +179949,86320,slow,1333233940 +179949,86332,comic book,1325125997 +179949,86332,gods,1325125986 +179949,86332,Marvel,1325126024 +179949,86332,mindless fun,1325126029 +179949,86332,mythology,1325125976 +179949,86332,norse,1325126052 +179949,86332,predictable,1325125966 +179949,86332,sibling rivalry,1325126000 +179949,86332,superhero,1325125978 +179949,86574,bands,1343260245 +179949,86574,conflict,1343260177 +179949,86574,documentary,1343260184 +179949,86574,fame,1343260260 +179949,86574,history,1343260231 +179949,86574,intrigue,1343260171 +179949,86574,music,1343260145 +179949,86628,gangsters,1315491515 +179949,86628,irish americans,1315491541 +179949,86628,rise and fall,1315491500 +179949,86628,rise to power,1315491491 +179949,86628,union,1315491522 +179949,86628,unions,1315491525 +179949,86833,bittersweet,1328308609 +179949,86833,crude humor,1328308614 +179949,86833,poop humor,1328308588 +179949,86835,alternate reality,1312116020 +179949,86835,church,1312116025 +179949,86835,cliche,1312116063 +179949,86835,dystopia,1312115995 +179949,86835,sci-fi,1312115986 +179949,86835,vampires,1312116030 +179949,86835,war,1312116033 +179949,86880,childish,1325312486 +179949,86880,childish plot,1325312484 +179949,86880,franchise,1325312358 +179949,86880,magic,1325312377 +179949,86880,mermaid,1325312379 +179949,86880,revenge,1325312454 +179949,86880,sequel,1325312474 +179949,86911,bachelor party,1325289329 +179949,86911,Bangkok,1325289364 +179949,86911,drinking,1325289351 +179949,86911,drugs,1325289335 +179949,86911,monkey,1325289388 +179949,86911,monks,1325289396 +179949,86911,Thailand,1325289405 +179949,86911,unlikable characters,1325289403 +179949,87192,alien invasion,1345956277 +179949,87192,aliens,1345956257 +179949,87192,drug dealing,1345956375 +179949,87192,drugs,1345956355 +179949,87192,ending,1345956345 +179949,87192,gangsters,1345956363 +179949,87192,ghetto,1345956312 +179949,87192,invasion,1345956271 +179949,87192,projects,1345956293 +179949,87197,weird,1342745515 +179949,87306,80s,1325394378 +179949,87306,aliens,1325394332 +179949,87306,bad physics,1325394293 +179949,87306,child actor,1325394320 +179949,87306,homage,1325394478 +179949,87306,sci-fi,1325394330 +179949,87306,silly errors,1325394299 +179949,87869,actually funny,1319506538 +179949,87869,black comedy,1319506516 +179949,87869,cast,1319506545 +179949,87869,characters,1319506551 +179949,87869,ending,1319506534 +179949,87869,weak ending,1319506519 +179949,88129,ambient music,1323058429 +179949,88129,atmospheric,1323058420 +179949,88235,black comedy,1338952328 +179949,88235,drug trade,1338952348 +179949,88235,Ireland,1338952335 +179949,88235,murder,1338952366 +179949,88235,police,1338952375 +179949,88235,police corruption,1338952386 +179949,88235,police investigation,1338952393 +179949,88235,smuggling,1338952361 +179949,88593,assassin,1326077699 +179949,88593,assassination,1326077705 +179949,88593,brutal,1326077723 +179949,88593,China,1326077846 +179949,88593,ghetto,1326077710 +179949,88593,human trafficking,1326077716 +179949,88593,Korea,1326077840 +179949,88593,organized crime,1326077818 +179949,88785,switching places,1356820788 +179949,88785,unoriginal,1356820795 +179949,88812,bank robbery,1331356853 +179949,88812,bomb,1331356839 +179949,88812,bomb vest,1331356846 +179949,88812,hostage,1331356860 +179949,88954,bad sequel,1389210223 +179949,88954,cameo,1389210478 +179949,88954,Christmas,1389210266 +179949,88954,crude,1389210247 +179949,88954,crude humor,1389210242 +179949,88954,drugs,1389210291 +179949,88954,friendship,1389210304 +179949,88954,marijuana,1389210295 +179949,88954,sequel,1389210233 +179949,88954,slapstick,1389210256 +179949,88954,stoner comedy,1389210286 +179949,88954,stoner movie,1389210279 +179949,88954,weed,1389210299 +179949,89030,friendship,1340759254 +179949,89030,high school,1340759245 +179949,89030,neighbors,1340759235 +179949,89030,predictable,1340759194 +179949,89030,trivial,1340759184 +179949,89030,vampire,1340759172 +179949,89030,vampires,1340759179 +179949,89087,assassin,1324883821 +179949,89087,lacks logic,1324883971 +179949,89087,organized crime,1324883944 +179949,89087,plot,1324883962 +179949,89102,abortion,1325862479 +179949,89102,bad acting,1325862551 +179949,89102,cheating,1325862403 +179949,89102,crime,1325862484 +179949,89102,incentive,1325862409 +179949,89102,no plot,1325861977 +179949,89102,speculative,1325862519 +179949,89470,disease,1324623466 +179949,89470,doctors,1324623494 +179949,89470,plausible,1324623469 +179949,89470,procedural,1324623482 +179949,89470,Realistic,1324623524 +179949,89470,virus,1324623519 +179949,89470,wasted characters,1324623472 +179949,89629,corruption,1332291805 +179949,89629,dirty cops,1332291797 +179949,89629,extortion,1332291841 +179949,89629,good plot,1332291724 +179949,89629,hitman,1332291800 +179949,89629,kidnapping,1332291835 +179949,89629,pregnancy,1332291827 +179949,89629,remake,1332291910 +179949,89629,revenge,1332291816 +179949,89629,thriller,1332291740 +179949,89745,gods,1388000701 +179949,89745,humorous,1388000661 +179949,89745,mythology,1388000693 +179949,89745,superhero,1388000668 +179949,89753,acting,1332361341 +179949,89753,Beautifully shot,1332361302 +179949,89753,cold war,1332361680 +179949,89753,espionage,1332361297 +179949,89753,great direction,1332361327 +179949,89753,incoherent,1332361329 +179949,89753,intelligence,1332361667 +179949,89753,opaque,1332361332 +179949,89753,seventies,1332361323 +179949,89837,cult,1351299367 +179949,89837,disturbing,1351299326 +179949,89837,dysfunctional family,1351299324 +179949,89837,hitman,1351299382 +179949,89837,incoherent,1351299310 +179949,89837,murder,1351299391 +179949,89837,mystery,1351299316 +179949,89837,no explanations,1351299330 +179949,89837,sanity,1351299348 +179949,89864,cancer,1356293513 +179949,89864,friendship,1356293520 +179949,90345,alien invasion,1325549414 +179949,90345,aliens,1325549413 +179949,90345,Antarctica,1325549409 +179949,90345,claustrophobic,1325549445 +179949,90345,Norwegian,1325549468 +179949,90345,paranoia,1325549455 +179949,90345,remake,1325549358 +179949,90345,research,1325549499 +179949,90345,space ship,1325549411 +179949,90405,dystopia,1419921311 +179949,90439,business,1325003067 +179949,90439,cast,1325003180 +179949,90439,corruption,1325003188 +179949,90439,finance,1325003142 +179949,90439,financial crisis,1325003144 +179949,90439,fire sale,1325003109 +179949,90439,identity crisis,1325003220 +179949,90439,New York City,1325003077 +179949,90439,realistic,1325003148 +179949,90439,strange ending,1325003194 +179949,90439,suspense,1325003087 +179949,90439,tense,1325003091 +179949,90522,assassin,1339015117 +179949,90522,predictable,1339015107 +179949,90522,secret service,1339015140 +179949,90522,sequel,1339015114 +179949,90522,spy thriller,1339015127 +179949,90600,art,1336102569 +179949,90600,based on a book,1336102552 +179949,90600,conspiracy,1336102704 +179949,90600,headhunter,1336102617 +179949,90600,man on the run,1336102711 +179949,90600,perfect crime,1336102708 +179949,90600,special forces,1336102688 +179949,90600,theft,1336102560 +179949,90746,animation,1333931964 +179949,90746,kidnapping,1333931959 +179949,90746,pirates,1333931970 +179949,90746,sword fight,1333931947 +179949,90746,treasure hunt,1333931944 +179949,90947,city life,1345373791 +179949,90947,depression,1345373759 +179949,90947,drug abuse,1345373759 +179949,91128,1950s,1364732829 +179949,91128,alcoholism,1364732839 +179949,91128,based on a book,1364732824 +179949,91128,Caribbean,1364732889 +179949,91128,drug abuse,1364732837 +179949,91128,Hunter S. Thompson,1364732823 +179949,91128,journalism,1364732846 +179949,91128,journalist,1364732867 +179949,91128,Puerto Rico,1364732875 +179949,91273,cooperation,1389457037 +179949,91273,fight scenes,1389455688 +179949,91273,fighting,1389455652 +179949,91273,film noir,1389455711 +179949,91273,martial arts,1389456274 +179949,91273,noir,1389455698 +179949,91273,oppression,1389455801 +179949,91273,organized crime,1389455810 +179949,91273,post-apocalyptic,1389456321 +179949,91273,revenge,1389455659 +179949,91273,revolution,1389455795 +179949,91273,slow,1389457064 +179949,91273,stylized,1389455819 +179949,91273,theatre,1389455750 +179949,91273,unique look,1389455816 +179949,91355,vikings,1332342317 +179949,91416,Baja California,1388647610 +179949,91416,beauty pageant,1388647666 +179949,91416,drug trafficking,1388647561 +179949,91416,gang war,1388647637 +179949,91416,Mexico,1388647576 +179949,91416,organized crime,1388647554 +179949,91500,based on a book,1348359494 +179949,91500,cheesy,1348359476 +179949,91500,dystopia,1348359497 +179949,91500,reality TV,1348359512 +179949,91500,rich and poor,1348359510 +179949,91500,social commentary,1348359514 +179949,91542,assassin,1343973876 +179949,91542,dialogue,1343973864 +179949,91542,private detective,1343973867 +179949,91542,sherlock holmes,1343973947 +179949,91542,sleuth,1343973962 +179949,91542,warmonger,1343973925 +179949,91658,americanized movie,1326066375 +179949,91658,based on a book,1326066338 +179949,91658,cast,1326066511 +179949,91658,characters,1326066521 +179949,91658,corruption,1326066585 +179949,91658,dark,1326066456 +179949,91658,foreign culture in english,1326066405 +179949,91658,hacking,1326066540 +179949,91658,journalism,1326066567 +179949,91658,long,1326066342 +179949,91658,murder,1326066439 +179949,91658,organized crime,1326066574 +179949,91658,rape,1326066355 +179949,91658,remake,1326066333 +179949,91658,revenge,1326066654 +179949,91658,serial killer,1326066431 +179949,91658,soundtrack,1326066426 +179949,91658,subtle humor,1326066501 +179949,91658,suspense,1326066347 +179949,91658,Sweden,1326066623 +179949,91947,black comedy,1332342355 +179949,91947,bloody,1332342401 +179949,91947,brutal,1332342417 +179949,91947,grotesque,1332342397 +179949,91947,living dead,1332342376 +179949,91947,vampires,1332342363 +179949,91947,zombies,1332342369 +179949,91974,brutal,1338772645 +179949,91974,visually appealing,1338772642 +179949,91976,life & death,1343687328 +179949,91976,man vs. nature,1343687326 +179949,91976,overdramatic,1343687322 +179949,91976,plane crash,1343687338 +179949,91976,survival,1343687341 +179949,91976,unrealistic,1343687324 +179949,92420,clever,1338929497 +179949,92420,coming of age,1338929503 +179949,92420,found footage,1338929488 +179949,92420,supernatural powers,1338929501 +179949,92420,telekenisis,1338929499 +179949,92422,atmospheric,1364596763 +179949,92422,ghosts,1364596842 +179949,92422,haunted house,1364596909 +179949,92422,old house,1364596868 +179949,92422,revenge,1364596942 +179949,92422,suicide,1364596933 +179949,92507,CIA,1342667407 +179949,92507,corruption,1342667388 +179949,92507,deceit,1342667458 +179949,92507,espionage,1342667383 +179949,92507,on the run,1342667524 +179949,92507,rouge agent,1342667401 +179949,93287,birding,1344148547 +179949,93287,birds,1344148544 +179949,93287,divorce,1344148538 +179949,93287,father-son relationship,1344148522 +179949,93287,marriage,1344148532 +179949,93287,nature,1344148542 +179949,93287,record attempt,1344148567 +179949,93297,acting,1343986745 +179949,93297,authentic action,1343986755 +179949,93297,bad acting,1343986780 +179949,93297,covert operation,1343986923 +179949,93297,dialogue,1343986759 +179949,93297,patriotic,1343986749 +179949,93297,pro military,1343986751 +179949,93297,propaganda,1343986740 +179949,93297,special forces,1343986899 +179949,93297,terrorism,1343986861 +179949,93510,bad cop,1340774682 +179949,93510,cameo,1340774662 +179949,93510,drugs,1340774671 +179949,93510,high school,1340774655 +179949,93510,meta,1340774644 +179949,93510,parody,1340774750 +179949,93510,police,1340774688 +179949,93510,police investigation,1340774695 +179949,93510,undercover cops,1340774639 +179949,93552,blindness,1333234354 +179949,93552,family,1333234479 +179949,93552,family bonds,1333234488 +179949,93552,guilt,1333234501 +179949,93552,investigation,1333234370 +179949,93552,loss,1333234461 +179949,93552,murder,1333234364 +179949,93552,orphanage,1333234447 +179949,93552,police,1333234375 +179949,93552,serial killer,1333234359 +179949,93570,abuse,1349250795 +179949,93570,childhood,1349250855 +179949,93570,family,1349250801 +179949,93570,friendship,1349250868 +179949,93570,island,1349250741 +179949,93570,isolation,1349250838 +179949,93570,mental illness,1349250811 +179949,93570,prisoner,1349250784 +179949,93570,remote location,1349250759 +179949,93570,solitude,1349250766 +179949,93570,violence,1349250773 +179949,93805,bad execution,1340767978 +179949,93805,German,1340767952 +179949,93805,international politics,1340768122 +179949,93805,invasion,1340768009 +179949,93805,mediocre acting,1340767922 +179949,93805,moon,1340767955 +179949,93805,Nazis,1340767938 +179949,93805,simple plot,1340768085 +179949,93805,simplistic,1340768106 +179949,93805,space battle,1340768031 +179949,93805,space station,1340768039 +179949,93805,space travel,1340767960 +179949,93805,spaceships,1340767935 +179949,93805,steampunk,1340767932 +179949,93805,unpredictable,1340768070 +179949,93840,conspiracy,1356944382 +179949,93840,ghosts,1356944349 +179949,93840,gods,1356944357 +179949,93840,gore,1356944316 +179949,93840,guardian,1356944392 +179949,93840,human sacrifice,1356944426 +179949,93840,monsters,1356944372 +179949,93840,original,1356944313 +179949,93840,plot twist,1356944325 +179949,93840,sacrifice,1356944417 +179949,93840,werewolf,1356944342 +179949,93840,zombies,1356944336 +179949,93855,cancer,1346031424 +179949,93855,dark comedy,1346031397 +179949,93855,hypocrisy,1346031401 +179949,93855,social comentary,1346031392 +179949,93855,social criticism,1346031394 +179949,93855,terminal illness,1346031417 +179949,93855,violence,1346031395 +179949,93982,1800s,1420351303 +179949,93982,1840s,1420351352 +179949,93982,newspaper,1420351296 +179949,93982,serial killer,1420351271 +179949,93982,writer,1420351375 +179949,94018,alien invasion,1356229740 +179949,94478,absurd,1356320581 +179949,94478,curse,1356320573 +179949,94478,naive,1356320587 +179949,94478,vampire,1356320555 +179949,94478,werewolf,1356320563 +179949,94478,witch,1356320550 +179949,94677,funny,1347120176 +179949,94677,political satire,1347120184 +179949,94677,puns,1347120169 +179949,94677,sacha baron cohen,1347120151 +179949,94677,silly,1347120179 +179949,94777,alien invasion,1356679302 +179949,94777,aliens,1356679288 +179949,94777,government agencies,1356679349 +179949,94777,invasion,1356679295 +179949,94777,time travel,1356679247 +179949,94864,aliens,1351259463 +179949,94864,dialogue,1351259452 +179949,94864,space travel,1351259448 +179949,94959,bittersweet,1356356719 +179949,94959,cast,1356356730 +179949,94959,dialogue,1356356722 +179949,94959,original,1356356788 +179949,94959,quirky,1356356717 +179949,94959,retro,1356356739 +179949,94959,runaway,1356356758 +179949,94959,scout,1356356747 +179949,94959,storm,1356356815 +179949,95088,characters,1387958157 +179949,95088,charming,1387957764 +179949,95088,journalism,1387957853 +179949,95088,misfits,1387958126 +179949,95088,old flame,1387957878 +179949,95088,romance,1387957825 +179949,95088,social angst,1387957781 +179949,95088,surprise ending,1387958104 +179949,95088,time travel,1387957770 +179949,95088,touching,1387958129 +179949,95207,America,1357402449 +179949,95207,American Civil War,1357402433 +179949,95207,battles,1357402526 +179949,95207,Predictable,1357402413 +179949,95207,US history,1357402466 +179949,95207,US President,1357402455 +179949,95207,vampires,1357402421 +179949,95207,violence,1357402509 +179949,95207,visually appealing,1357402514 +179949,95875,brainwashing,1364341246 +179949,95875,double agents,1364341251 +179949,95875,dystopia,1364341233 +179949,95875,espionage,1364341213 +179949,95875,future,1364341305 +179949,95875,futuristic,1364341312 +179949,95875,memory,1364341237 +179949,95875,open ending,1364341348 +179949,95875,post-apocalyptic,1364341222 +179949,95875,robots,1364341296 +179949,95875,war,1364341260 +179949,96079,China,1364762940 +179949,96079,classic,1364762978 +179949,96079,franchise,1364762951 +179949,96079,London,1364762938 +179949,96079,Scotland,1364762929 +179949,96079,secret agent,1364762987 +179949,96079,secret service,1364762965 +179949,96079,spies,1364763005 +179949,96110,coaching,1356720843 +179949,96110,election,1356720743 +179949,96110,exaggerated,1356720738 +179949,96110,politics,1356720741 +179949,96610,assassin,1364618634 +179949,96610,dystopia,1364618615 +179949,96610,hitman,1364618629 +179949,96610,memory,1364618619 +179949,96610,organized crime,1364618607 +179949,96610,paranormal,1364618664 +179949,96610,time travel,1364618653 +179949,97057,adventure,1349133799 +179949,97057,archaeology,1349133770 +179949,97057,based on a true story,1349133776 +179949,97057,character development,1349133740 +179949,97057,historical,1349133784 +179949,97057,raft,1349133807 +179949,97057,sailing,1349133816 +179949,97057,sea,1349133764 +179949,97188,found footage,1364431224 +179949,97188,investigative journalism,1364431337 +179949,97188,journalism,1364431282 +179949,97188,murder,1364431263 +179949,97188,occult,1364431269 +179949,97188,serial killer,1364431362 +179949,97188,soundtrack,1364431244 +179949,97188,writers,1364431329 +179949,97230,analog,1419288106 +179949,97230,cinema,1419288124 +179949,97230,digital,1419288110 +179949,97230,editing,1419288154 +179949,97230,film,1419288183 +179949,97230,hollywood,1419288094 +179949,97230,interviews,1419288173 +179949,97230,medium,1419288134 +179949,97230,movie business,1419288081 +179949,97230,process,1419288218 +179949,97230,technology,1419288088 +179949,97230,video,1419288127 +179949,97304,1970s,1370738245 +179949,97304,1980s,1370738244 +179949,97304,cia,1370738227 +179949,97304,espionage,1370738239 +179949,97304,Iran,1370738228 +179949,97304,revolution,1370738231 +179949,97304,tense,1370738237 +179949,97306,cast,1364606022 +179949,97306,clever,1364605997 +179949,97306,gangsters,1364606067 +179949,97306,meta,1364606095 +179949,97306,metafiction,1364606092 +179949,97306,movie business,1364606059 +179949,97306,psychopaths,1364606042 +179949,97306,quirky,1364606085 +179949,97306,screenplay,1364606156 +179949,97306,screenwriter,1364606143 +179949,97306,script,1364606116 +179949,97306,serial killer,1364606049 +179949,97306,surprising,1364605994 +179949,97306,violent,1364606103 +179949,97306,writers,1364606125 +179949,97752,cast,1364774038 +179949,97752,dystopia,1364773934 +179949,97752,history,1364773998 +179949,97752,interesting,1364774028 +179949,97752,multiple roles,1364773936 +179949,97752,multiple storylines,1364773925 +179949,97752,rebellion,1364773943 +179949,97752,slavery,1364773948 +179949,97785,bad acting,1388912877 +179949,97785,bad cgi,1388912865 +179949,97785,bad plot,1388912881 +179949,97785,based on a video game,1388912814 +179949,97785,cgi,1388912870 +179949,97785,demons,1388912823 +179949,97785,monsters,1388912889 +179949,97785,occult,1388912829 +179949,97785,the plot makes no sense,1388912906 +179949,97860,crime,1388042672 +179949,97860,gambling,1388042664 +179949,97860,gritty,1388042678 +179949,97860,hitman,1388042653 +179949,97860,organized crime,1388042659 +179949,97860,slow paced,1388042645 +179949,97913,alien invasion,1366542402 +179949,97913,alienation,1366542339 +179949,97913,arcade,1366542313 +179949,97913,conspiracy,1366542397 +179949,97913,fresh start,1366542372 +179949,97913,heroism,1366542319 +179949,97913,identity theft,1366542383 +179949,97913,infection,1366542413 +179949,97913,nostalgic,1366542308 +179949,97913,redemption,1366542321 +179949,97913,retro,1366542306 +179949,97913,stolen identity,1366542356 +179949,97913,video games,1366542304 +179949,98809,adventure,1366542127 +179949,98809,exaggerated,1366542239 +179949,98809,fantasy,1366542151 +179949,98809,fantasy world,1366542132 +179949,98809,magic,1366542153 +179949,98961,Afghanistan,1388553427 +179949,98961,assassination,1388553400 +179949,98961,assault,1388553458 +179949,98961,CIA,1388553468 +179949,98961,interrogation,1388553519 +179949,98961,military,1388553413 +179949,98961,Pakistan,1388553433 +179949,98961,politics,1388553402 +179949,98961,terrorism,1388553405 +179949,98961,torture,1388553513 +179949,98961,war,1388553416 +179949,99007,cure,1420017050 +179949,99007,zombies,1420017035 +179949,99112,cat-and-mouse,1387952272 +179949,99112,conspiracy,1387952107 +179949,99112,corruption,1387952171 +179949,99112,crime,1387952101 +179949,99112,framed,1387952126 +179949,99112,investigation,1387952182 +179949,99112,lawyer,1387952202 +179949,99112,old school,1387952111 +179949,99112,sniper,1387952135 +179949,99112,violent,1387952296 +179949,99114,19th century,1370467554 +179949,99114,bounty hunters,1370467597 +179949,99114,brutal,1370467580 +179949,99114,cast,1370467561 +179949,99114,desert,1370467531 +179949,99114,funny,1370467683 +179949,99114,ku klux klan,1370467675 +179949,99114,love,1370467569 +179949,99114,slavery,1370467512 +179949,99114,soundtrack,1370467497 +179949,99114,spaghetti western,1370467523 +179949,99114,tense,1370467499 +179949,99114,violence,1370467486 +179949,99114,violent,1370467701 +179949,99114,visually appealing,1370467635 +179949,99437,silly,1387685232 +179949,99437,surreal,1387685220 +179949,100108,double-cross,1420051660 +179949,100108,Florida,1420051678 +179949,100108,heist,1420051668 +179949,100108,murder,1420051653 +179949,100108,Palm Beach,1420051705 +179949,100108,real estate,1420051674 +179949,100108,revenge,1420051721 +179949,100108,robbery,1420051652 +179949,100326,death,1420010809 +179949,100326,drugs,1420011040 +179949,100326,melancholy,1420010806 +179949,100326,old age,1420010812 +179949,100326,reminiscence,1420010967 +179949,100326,revenge,1420010835 +179949,101864,alien invasion,1420251522 +179949,101864,alien technology,1420251635 +179949,101864,atmospheric,1420251568 +179949,101864,clones,1420251505 +179949,101864,cloning,1420251486 +179949,101864,drones,1420251607 +179949,101864,dystopia,1420251482 +179949,101864,future,1420251492 +179949,101864,memory loss,1420251599 +179949,101864,post-apocalyptic,1420251479 +179949,101864,sci-fi,1420251575 +179949,101864,space,1420251494 +179949,101864,technology,1420251508 +179949,102278,bad plot,1388025790 +179949,102278,corruption,1388026002 +179949,102278,diner,1388025809 +179949,102278,evidence,1388025826 +179949,102278,hostage,1388025803 +179949,102278,robbery,1388025815 +179949,102445,aliens,1420183048 +179949,102445,franchise,1420183059 +179949,102445,future,1420183125 +179949,102445,predictable,1420183077 +179949,102445,revenge,1420183061 +179949,102445,space,1420183040 +179949,102445,space ship,1420183139 +179949,102445,Star Trek,1420183044 +179949,102993,coming of age,1388020067 +179949,102993,infidelity,1388020070 +179949,102993,parent-children relationship,1388020120 +179949,102993,parenting,1388020126 +179949,102993,summer,1388020072 +179949,102993,summer job,1388020284 +179949,102993,summer vacation,1388020111 +179949,102993,theme park,1388020173 +179949,102993,vacation,1388020086 +179949,103249,infection,1388033581 +179949,103249,pandemic,1388033637 +179949,103249,United Nations,1388033617 +179949,103249,WHO,1388033602 +179949,103249,zombies,1388033565 +179949,103253,bad acting,1388482274 +179949,103253,cyborgs,1388482278 +179949,103253,exo-skeleton,1388482296 +179949,103253,favela,1388482255 +179949,103253,future,1388482262 +179949,103253,poverty,1388482381 +179949,103253,robots,1388482283 +179949,103253,satellite,1388482407 +179949,103253,shallow characters,1388482265 +179949,103253,slum,1388482248 +179949,103253,space station,1388482396 +179949,103341,aliens,1387938333 +179949,103341,cloning,1387938335 +179949,103341,conformity,1387938373 +179949,103341,indoctrination,1387938370 +179949,103341,metaphorical,1387938612 +179949,103341,pub crawl,1387938323 +179949,103341,reunion,1387938363 +179949,103341,slow start,1387938592 +179949,103341,unpredictable,1387938588 +179949,103801,beer,1388304654 +179949,103801,brewery,1388304647 +179949,103801,cabin,1388305074 +179949,103801,Chicago,1388305034 +179949,103801,drinking,1388304667 +179949,103801,flirting,1388304743 +179949,103801,friendship,1388304561 +179949,103801,relationships,1388304575 +179949,103801,woman - man friendship,1388304690 +179949,104243,aliens,1420344327 +179949,104243,escape,1420344390 +179949,104243,mercenary,1420344374 +179949,104243,space,1420344358 +179949,104243,survival,1420344352 +179949,104323,capitalism,1389310150 +179949,104323,class differences,1389310250 +179949,104323,corruption,1389310291 +179949,104323,economic crisis,1389310268 +179949,104323,economic depression,1389310275 +179949,104323,economics,1389310103 +179949,104323,gloomy,1389310197 +179949,104323,history,1389310107 +179949,104323,lobbyism,1389310303 +179949,104323,market economy,1389310130 +179949,104323,neo-capitalism,1389310172 +179949,104323,poverty,1389310096 +179949,104323,uncomfortable,1389310235 +179949,104841,intense,1419645432 +179949,104841,physics,1419645427 +179949,104841,science,1419645430 +179949,104841,space,1419645415 +179949,104841,suspense,1419645424 +179949,104841,zero gravity,1419645419 +179949,104879,despair,1419374719 +179949,104879,investigation,1419374735 +179949,104879,kidnapping,1419374674 +179949,104879,morality,1419374694 +179949,104879,realistic,1419374742 +179949,104879,realistic action,1419374753 +179949,104879,torture,1419374677 +179949,106696,animation,1420168476 +179949,106696,Disney,1420168485 +179949,106696,ice,1420168512 +179949,106696,magic,1420168518 +179949,106696,musical,1420168478 +179949,106696,princess,1420168499 +179949,106696,royalty,1420168493 +179949,106696,sisters,1420168473 +179949,106696,snow,1420168503 +179949,106696,trolls,1420168522 +179949,106696,winter,1420168505 +179949,107348,cnn,1417390383 +179949,107348,news,1417390422 +179949,107348,silly,1417390369 +179949,107348,tv channel,1417390398 +179949,107406,dystopia,1419657253 +179949,107406,illogical,1419657247 +179949,107406,poor plot,1419657236 +179949,107406,post-apocalyptic,1419657255 +179949,107406,train,1419657243 +179949,107406,trains,1419657241 +179949,108190,dystopia,1419707446 +179949,108190,new society,1419707465 +179949,108190,post-apocalypse,1419707461 +179949,108945,conglomerate,1417390551 +179949,108945,corporation,1417390549 +179949,108945,police,1417390472 +179949,108945,remake,1417390469 +179949,108945,robots,1417390481 +179949,108945,science fiction,1417390478 +179949,109374,concierge,1419558553 +179949,109374,eastern europe,1419558562 +179949,109374,europe,1419558567 +179949,109374,hotel,1419558534 +179949,109374,inheritance,1419558685 +179949,109374,last will,1419558691 +179949,109374,murder,1419558587 +179949,109374,on the run,1419558597 +179949,109374,prison,1419558605 +179949,109374,quirky,1419558524 +179949,109374,stylized,1419558528 +179949,109374,war,1419558582 +179949,109487,end of the world,1427745884 +179949,109487,expedition,1427745873 +179949,109487,sci-fi,1427745836 +179949,109487,space,1427745838 +179949,109487,space exploration,1427745861 +179949,109487,space travel,1427745864 +179949,109487,time travel,1427745822 +179949,109487,time-travel,1427745831 +179949,110407,artificial intelligence,1419866506 +179949,110407,dark,1419866537 +179949,110407,experiment,1419866525 +179949,110407,research,1419866529 +179949,110407,robot,1419866509 +179949,110730,artificial intelligence,1419755501 +179949,110730,computers,1419755533 +179949,110730,death,1419755535 +179949,110730,internet,1419755526 +179949,110730,invasion,1419755627 +179949,110730,loss,1419755549 +179949,110730,love,1419755552 +179949,110730,nano-technology,1419755515 +179949,110730,nanobots,1419755520 +179949,110730,network,1419755530 +179949,110730,research,1419755581 +179949,110730,ridiculous,1419755674 +179949,110730,scientists,1419755688 +179949,110730,terrorism,1419755594 +179949,110730,uprising,1419755654 +179949,110809,bad acting,1419874223 +179949,110809,high school,1419874239 +179949,110809,vampires,1419874215 +179949,111113,college,1448185037 +179949,111113,crude,1448185011 +179949,111113,fraternity,1448185044 +179949,111113,simple,1448185014 +179949,111113,well cast,1448185072 +179949,111759,action,1419928020 +179949,111759,alien invasion,1419928100 +179949,111759,aliens,1419928003 +179949,111759,exoskeleton,1419928117 +179949,111759,exosuit,1419928120 +179949,111759,future,1419928009 +179949,111759,invasion,1419928035 +179949,111759,reluctant hero,1419928083 +179949,111759,time loop,1419928005 +179949,111759,time travel,1419928011 +179949,111759,war,1419928018 +179949,113345,dynasty,1437133946 +179949,113345,industry,1437133760 +179949,113345,Jupiter,1437133927 +179949,113345,oligarchy,1437134004 +179949,113345,royalty,1437133961 +179949,113345,sci-fi,1437133738 +179949,113741,mystery,1419788518 +179949,113741,parallel universe,1419788517 +179949,114180,amnesia,1419738242 +179949,114180,escape,1419738345 +179949,114180,experiment,1419738217 +179949,114180,kids,1419738231 +179949,114180,maze,1419738201 +179949,114180,mystery,1419738315 +179949,114180,new society,1419738268 +179949,114180,robots,1419738204 +179949,114180,virus,1419738288 +179949,114601,bittersweet,1420150647 +179949,114601,cheating,1420150665 +179949,114601,family,1420150656 +179949,114601,funeral,1420150892 +179949,114601,love,1420150659 +179949,114601,siblings,1420150642 +179949,114935,mindfuck,1419197316 +179949,114935,science fiction,1419197315 +179949,114935,time travel,1419197301 +179949,114935,twist ending,1419197303 +179949,115149,assassin,1427746008 +179949,115149,cheesy,1427746074 +179949,115149,hitman,1427746005 +179949,115149,lack of story,1427746053 +179949,115149,organized crime,1427746020 +179949,115149,over the top,1427746060 +179949,115149,revenge,1427745998 +179949,115149,secret society,1427746016 +179949,115149,syndicate,1427746027 +179949,115149,violent,1427746031 +179949,115569,crime reporter,1437123002 +179949,115569,dark,1437122638 +179949,115569,journalism,1437122646 +179949,115569,local news,1437123017 +179949,115569,Los Angeles,1437122660 +179949,115569,news,1437122652 +179949,115569,sociopath,1437122641 +179949,115569,stringer,1437123368 +179949,115713,AI,1437111132 +179949,115713,artificial intelligence,1437111056 +179949,115713,claustrophobic,1437111216 +179949,115713,futuristic,1437111069 +179949,115713,plot twist,1437111140 +179949,115713,robots,1437111060 +179949,115713,sci-fi,1437111054 +179949,115713,tense,1437111214 +179949,115713,thriller,1437111255 +179949,115713,turing test,1437111097 +179949,115923,africa,1419958444 +179949,115923,drone,1419958526 +179949,115923,navy seals,1419996800 +179949,116797,Alan Turing,1418342494 +179949,116797,cryptography,1418342522 +179949,116797,history,1418342477 +179949,116797,informatics,1418342502 +179949,116797,mathematics,1418342505 +179949,116797,World War II,1418342483 +179949,116977,cringe,1427745955 +179949,116977,hard to watch,1427745945 +179949,116977,infantile,1427745928 +179949,116977,same story,1427745937 +179949,117511,awkward,1420103633 +179949,117511,Hollywood,1420103663 +179949,117511,Los Angeles,1420103666 +179949,118880,black and white,1447886905 +179949,118880,Iran,1447886911 +179949,118880,Romance,1447886918 +179949,118880,vampires,1447886909 +179949,119145,british,1437143622 +179949,119145,megalomaniac villain,1437143691 +179949,119145,parody,1437143659 +179949,119145,recruit,1437143780 +179949,119145,ridiculous,1437143653 +179949,119145,saving the world,1437143713 +179949,119145,spy,1437143629 +179949,119145,spy agency,1437143790 +179949,119145,spy gadgets,1437143632 +179949,119145,training,1437143720 +179949,119145,tryouts,1437143732 +179949,119145,villain,1437143688 +179949,120466,AI,1427745619 +179949,120466,artificial intelligence,1427745625 +179949,120466,police,1427745583 +179949,120466,robots,1427745578 +179949,120466,South Africa,1427745591 +179949,120466,subculture,1427745610 +179949,120466,zef,1427745596 +179949,120637,hackers,1437111728 +179949,127096,camera,1437110133 +179949,127096,High school,1437110091 +179949,127096,science fiction,1437110099 +179949,127096,time travel,1437110103 +179949,127152,brainwash,1428866285 +179949,127152,interviews,1428866276 +179949,127152,manipulation,1428866296 +179949,127152,scientology,1428866250 +179949,130490,dystopia,1437155150 +179949,130490,new society,1437155142 +179949,130840,slow build,1448068748 +179949,131258,bandits,1427745421 +179949,131258,Korea,1427745512 +179949,131258,mutiny,1427745542 +179949,131258,pirates,1427745419 +179949,131258,whale,1427745432 +179949,134170,80's nostalgia,1437202570 +179949,134170,8o's,1437202572 +179949,134170,kung fu,1437212202 +179949,134170,parody,1437202575 +179949,134170,retro-futuristic,1437202636 +179949,134170,ridiculous,1437202583 +179976,97938,cinematography,1432397998 +179976,117533,important,1430952600 +179976,117533,privacy,1430952605 +179998,260,Abenteuer,1441740672 +179998,260,Classic,1441740686 +180000,260,good vs evil,1441265032 +180000,260,sci-fi,1441265007 +180000,260,space epic,1441265014 +180027,902,classic,1378356154 +180027,916,black and white,1378356119 +180027,916,classic,1378356091 +180027,916,Oscar (Best Actress),1378356106 +180027,916,romantic comedy,1378356104 +180027,916,Rome,1378356111 +180027,4187,Oscar (Best Actor),1378356237 +180027,4187,Religious,1378356245 +180027,4187,Singing,1378356249 +180027,6947,based on book,1378355576 +180027,6947,drama,1378355557 +180027,6947,historical,1378355548 +180027,6947,war,1378355544 +180027,81845,complex characters,1378356290 +180027,81845,historical,1378356295 +180027,81845,Oscar (Best Picture),1378356284 +180027,86815,faith,1378878045 +180027,89492,based on a true story,1378356342 +180027,89492,math,1378356347 +180027,89492,sports,1378356351 +180042,858,based on a book,1445875232 +180042,858,classic,1445875224 +180042,858,crime,1445875237 +180042,858,Mafia,1445875217 +180042,858,Oscar (Best Picture),1445875246 +180042,2959,classic,1445875422 +180042,2959,complicated,1445875429 +180042,2959,Edward Norton,1445875409 +180042,2959,mental illness,1445875415 +180042,2959,philosophical,1445875434 +180042,2959,psychology,1445875411 +180042,2959,twist ending,1445875404 +180042,7153,Adventure,1445875279 +180042,7153,fantasy,1445875275 +180042,116797,Benedict Cumberbatch,1445875349 +180042,116797,code breaking,1445875361 +180042,116797,Computers,1445875353 +180042,116797,historical,1445875364 +180042,116797,World War II,1445875355 +180046,46322,Martial Arts,1173398492 +180056,260,fantasy action,1439527033 +180056,260,Science Fiction,1439527025 +180057,32,Brad Pitt,1305169952 +180057,551,cult film,1305169706 +180057,1884,hallucinatory,1305170141 +180057,2571,cyberpunk,1305169788 +180057,2692,notable soundtrack,1305169852 +180057,4878,psychology,1305169878 +180057,7254,alternate reality,1305169744 +180057,7254,Ashton Kutcher,1305169739 +180057,44195,drugs,1305170110 +180057,44195,social commentary,1305170082 +180057,56286,1960s,1305169911 +180057,56286,allen ginsberg,1305169909 +180057,56286,androgyny,1305169907 +180057,56286,Bob Dylan,1305169889 +180057,56286,Mindfuck,1305169895 +180057,60684,cold war,1305169763 +180057,60684,comic book,1305169768 +180057,60684,dystopia,1305169761 +180057,60684,social commentary,1305169771 +180057,60684,stylized,1305169773 +180057,60684,superhero,1305169776 +180057,69951,imagination,1305169679 +180057,69951,imaginative,1305169667 +180057,69951,Johnny Depp,1305169660 +180057,69951,script,1305169664 +180057,69951,terry gilliam,1305169663 +180057,69951,tom waits,1305169675 +180064,260,"space epic,good for kids,cult classic",1441638289 +180064,260,"space epic,good for kids,cult classic,sci-fi",1441638288 +180083,52287,Something for everyone in this one... saw it without and plan on seeing it with kids!,1176498861 +180102,110,historical,1426412786 +180102,110,mel gibson,1426412775 +180102,110,war,1426412781 +180103,260,mythology,1441775181 +180103,260,sci-fi,1441775168 +180115,260,classic sci-fi,1441479807 +180115,260,genre defining,1441479828 +180148,260,adventure,1438033437 +180148,260,fun,1438033444 +180148,260,Science Fiction,1438033432 +180153,260,sci-fi,1438210076 +180153,260,special effects,1438210068 +180169,83540,Criterion,1437926395 +180169,83540,Jean-Pierre Melville,1437926397 +180169,90531,New York City,1437926643 +180169,90531,self-destruction,1437926628 +180172,2819,Central Intelligence Agency,1262382297 +180172,2819,computers,1262382297 +180172,3338,NASA,1262821869 +180172,3379,suicide,1268426327 +180172,4470,gangster,1262382229 +180172,4470,prison escape,1262382229 +180172,4470,unemployment,1262382229 +180172,4809,whistleblower,1263488626 +180172,6277,assassin,1261968646 +180172,6277,conspiracy,1261968646 +180172,9004,Artificial Intelligence,1248111462 +180172,9004,cyborgs,1248111462 +180172,9004,SR-71,1248111462 +180172,27584,FAMILY VACATIONS,1262811065 +180172,27584,holiday,1262811065 +180172,45928,electric vehicles(EV),1262793503 +180172,45928,green,1262793503 +180172,45928,Lobbyism,1262793503 +180172,52328,Space Madness,1268319597 +180172,59387,visually appealing,1262906622 +180172,64716,unrealistic,1261957377 +180172,71282,FDA,1261958493 +180172,71282,food safety,1261958448 +180172,71282,Monsanto,1261958469 +180172,71282,regionalism,1261958448 +180172,71282,USDA,1261958494 +180177,480,action,1400761518 +180177,480,adventure,1400761520 +180177,480,based on a book,1400761543 +180177,480,dinosaurs,1400761516 +180177,480,scifi,1400761532 +180177,500,Robin Williams,1407904437 +180177,500,transmisogyny,1407836567 +180177,541,artificial intelligence,1400767346 +180177,541,based on a book,1400767333 +180177,541,cyberpunk,1400767326 +180177,541,Philip K. Dick,1400767320 +180177,541,robots,1400767328 +180177,541,sci-fi,1400767322 +180177,588,animation,1407903795 +180177,588,Disney,1400760802 +180177,588,Fantasy,1407903843 +180177,588,heterosexuality,1400760802 +180177,588,magic,1400760802 +180177,588,musical,1400760802 +180177,588,Robin Williams,1407903810 +180177,595,Animation,1407903864 +180177,595,Bechdel Test:Fail,1407903875 +180177,595,Disney,1400760831 +180177,595,heterosexuality,1400760831 +180177,595,musical,1400760831 +180177,741,anime,1439287713 +180177,741,artificial intelligence,1439287715 +180177,741,Bechdel Test:Fail,1439287754 +180177,741,cyberpunk,1439287711 +180177,741,cyborgs,1439287728 +180177,741,hackers,1439287730 +180177,741,philosophical,1439287717 +180177,741,sci-fi,1439287721 +180177,924,adapted from:book,1439782987 +180177,924,Arthur C. Clarke,1439782961 +180177,924,artificial intelligence,1400767051 +180177,924,classic,1439783042 +180177,924,robots,1439782954 +180177,924,sci-fi,1439782946 +180177,924,scifi,1400767060 +180177,924,setting:space/space ship,1439782979 +180177,924,space travel,1439782970 +180177,1129,dystopia,1440322747 +180177,1129,evil government,1440322755 +180177,1214,aliens,1408853029 +180177,1214,Bechdel Test:Pass,1408853094 +180177,1214,horror,1408853149 +180177,1214,science fiction,1408853025 +180177,1214,space,1408853035 +180177,1214,space travel,1408853044 +180177,1214,suspense,1408853039 +180177,1240,Action,1400767152 +180177,1240,Arnold Schwarzenegger,1400767160 +180177,1240,artificial intelligence,1400767113 +180177,1240,heterosexuality,1400767143 +180177,1240,robots,1400767118 +180177,1240,sci-fi,1400767130 +180177,1240,terrorism,1400767134 +180177,1240,time travel,1400767132 +180177,1591,ableist language,1444905098 +180177,1591,rape threats,1444905037 +180177,1591,super hero,1444905064 +180177,1676,adapted from:book,1439740569 +180177,1676,Alien Invasion,1439740548 +180177,1676,aliens,1439740546 +180177,1676,based on a book,1439740541 +180177,1676,campy,1439740560 +180177,1676,gore,1439740572 +180177,1676,Neil Patrick Harris,1439740770 +180177,1676,Nudity (Rear),1439740586 +180177,1676,Nudity (Topless),1439740551 +180177,1676,Robert A. Heinlein,1439740588 +180177,1676,Robert Heinlein,1439740554 +180177,1676,sci-fi,1439740533 +180177,1676,war,1439740557 +180177,1907,musical,1400669263 +180177,1907,strong woman,1400669263 +180177,2005,friendship,1400761064 +180177,2005,pirates,1400761064 +180177,2096,dragons,1400760664 +180177,2096,fantasy,1400760664 +180177,2096,heterosexuality,1400760664 +180177,2096,magic,1400760664 +180177,2355,comedy,1400760734 +180177,2355,heterosexuality,1400760734 +180177,2428,aliens,1407901978 +180177,2428,Clea DuVall,1407901983 +180177,2428,cliche,1407902155 +180177,2428,heterosexuality,1407902043 +180177,2428,horror,1407902198 +180177,2428,saneism,1407902030 +180177,2428,sci-fi,1407901996 +180177,2428,teen nudity,1407902173 +180177,2571,Action,1400767218 +180177,2571,artificial intelligence,1400767214 +180177,2571,cyberpunk,1400767203 +180177,2571,dystopia,1400767226 +180177,2571,scifi,1400767191 +180177,2761,giant robots,1400667871 +180177,2797,heterosexuality,1400761256 +180177,2985,attempted rape,1439777543 +180177,2985,Bechdel Test:Fail,1439783281 +180177,2985,body horror,1439781520 +180177,2985,cyberpunk,1439780748 +180177,2985,cyborgs,1439780786 +180177,2985,drug use,1439779036 +180177,2985,dystopia,1439777552 +180177,2985,gore,1439777481 +180177,2985,heterosexuality,1439780741 +180177,2985,homophobic slurs,1439781107 +180177,2985,misogynist slurs,1439780744 +180177,2985,murder,1439777479 +180177,2985,neoliberalism,1439777515 +180177,2985,nudity,1439777463 +180177,2985,nudity (breasts),1439777470 +180177,2985,police,1439780800 +180177,2985,police corruption,1439777503 +180177,2985,robots,1439780789 +180177,2985,sci-fi,1439777490 +180177,2985,stop motion,1439780805 +180177,2987,Bechdel Test:Fail,1439783204 +180177,2987,comedy,1439783167 +180177,2987,heterosexuality,1439783163 +180177,2987,misogyny,1439783125 +180177,2987,private detective,1439783160 +180177,2987,sexual assault,1439783127 +180177,2987,sexual harassment,1439783128 +180177,2987,transmisogyny,1439783123 +180177,3034,anthropomorphized animals,1400669653 +180177,3034,Disney,1400669642 +180177,3786,Bechdel Test:Pass,1407902963 +180177,3786,campy,1407902924 +180177,3786,cissexism,1407650934 +180177,3786,Clea DuVall,1407902915 +180177,3786,coming of age,1407902976 +180177,3786,coming-of-age,1439784836 +180177,3786,cute,1407902920 +180177,3786,gay,1407650925 +180177,3786,happy ending,1407650925 +180177,3786,lesbian,1407650925 +180177,3786,Natasha Lyonne,1407902951 +180177,3786,queer,1407902927 +180177,4370,artificial intelligence,1400767369 +180177,4370,robots,1400767390 +180177,4370,sci-fi,1400767381 +180177,4370,Steven Spielberg,1400767375 +180177,4886,fantasy,1400761369 +180177,4963,Bechdel Test:Fail,1439739736 +180177,4963,Brad Pitt,1439739639 +180177,4963,con men,1439739645 +180177,4963,George Clooney,1439739614 +180177,4963,heist,1439739637 +180177,4963,heterosexuality,1439739609 +180177,4963,Julia Roberts,1439739619 +180177,4963,Matt Damon,1439739616 +180177,4963,trophy wife,1439739752 +180177,5222,awkward,1407902477 +180177,5222,heterosexuality,1407902488 +180177,5222,lesbian,1407902454 +180177,5222,painfully awkward,1409302279 +180177,5222,queer,1407902456 +180177,5418,amsnesia,1439792099 +180177,5418,anti romani slurs,1439793840 +180177,5418,conspiracy,1439792107 +180177,5418,damsel in distress,1439792139 +180177,5418,matt damon,1439792110 +180177,5418,misogyny,1439792180 +180177,5444,aliens,1400669419 +180177,5444,friendship,1400669419 +180177,5445,cops,1400827926 +180177,5445,precognition,1400827926 +180177,5445,Tom Cruise,1400827926 +180177,5618,animation,1407904220 +180177,5618,Bechdel Test:Pass,1407904249 +180177,5618,dragons,1407904268 +180177,5618,fantasy,1407904275 +180177,5618,Hayao Miyazaki,1407904226 +180177,5618,Studio Ghibli,1407904223 +180177,5882,anthropomorphized animals,1400669768 +180177,5882,Disney,1400669781 +180177,5882,pirates,1400669776 +180177,5882,space,1400669774 +180177,5971,fantasy,1408854040 +180177,5971,feel good movie,1408854036 +180177,5971,Hayao Miyazaki,1408854030 +180177,5971,Studio Ghibli,1408854027 +180177,5971,visually appealing,1408854033 +180177,6378,action,1400669840 +180177,6378,Crime,1400669843 +180177,6502,horror,1400840465 +180177,6502,Post apocalyptic,1400840458 +180177,6502,sci-fi,1400840455 +180177,6502,zombies,1400840449 +180177,6979,artificial intelligence,1400761452 +180177,6979,hackers,1400761459 +180177,8644,action,1400767262 +180177,8644,artificial intelligence,1400767255 +180177,8644,based on a book,1400767266 +180177,8644,dystopia,1400767273 +180177,8644,Isaac Asimov,1400767282 +180177,8644,product placement,1400767299 +180177,8644,Will Smith,1400767285 +180177,27728,anime,1439287795 +180177,27728,artificial intelligence,1439287822 +180177,27728,cyberpunk,1439287797 +180177,27728,philosophical,1439287801 +180177,27728,robots,1439287808 +180177,27728,sci-fi,1439287811 +180177,27731,fantasy,1444226416 +180177,27731,fat jokes,1444226422 +180177,30867,friendship,1400669045 +180177,30867,friendship between girls,1400669047 +180177,31696,adapted from:comic,1439731792 +180177,31696,angels,1439731781 +180177,31696,author:Alan Moore,1439731761 +180177,31696,Christianity,1439731811 +180177,31696,DC Comics,1439731794 +180177,31696,demons,1439731783 +180177,31696,forced institutionalization,1439731644 +180177,31696,good versus evil,1439731778 +180177,31696,gothic,1439731786 +180177,31696,heaven and hell,1439731584 +180177,31696,heterosexuality,1439731822 +180177,31696,Keanu Reeves,1439731587 +180177,31696,mythology,1439731807 +180177,31696,queer coded villains,1439731381 +180177,31696,religion,1439731805 +180177,31696,saneism,1439731628 +180177,31696,setting:psychiatric hospital,1439731665 +180177,31696,Shia LaBeouf,1439731604 +180177,31696,spiritual warfare,1439731580 +180177,31696,suicide,1439731647 +180177,31696,supernatural,1439731784 +180177,31696,Tilda Swinton,1439731595 +180177,31696,watch the credits,1439731742 +180177,31696,why the hell is this tagged as lesbian,1439731566 +180177,43744,cute,1439641553 +180177,43744,feel-good,1439641538 +180177,43744,Gay,1439641529 +180177,43744,Lesbian,1409302188 +180177,48394,anti-fascism,1408853926 +180177,48394,communist,1408853941 +180177,48394,dark,1408853842 +180177,48394,fantasy,1408853813 +180177,48394,fascism,1408853827 +180177,48394,Guillermo del Toro,1408853838 +180177,48394,horror,1408853888 +180177,48394,Spanish,1408853904 +180177,48394,Spanish Civil War,1408853832 +180177,48394,twist ending,1408853857 +180177,48394,visually appealing,1408853835 +180177,55442,autobiography,1400834817 +180177,55442,communism,1400834817 +180177,59315,capitalist protag,1400668611 +180177,59315,marvel,1400668611 +180177,59315,robotic exoskeleton,1400668611 +180177,59315,terrorism,1400668611 +180177,60684,adapted from:comic,1439783588 +180177,60684,Alan Moore,1439783565 +180177,60684,alternate history,1439783613 +180177,60684,alternate reality,1439783516 +180177,60684,Bechdel Test:Pass,1439783739 +180177,60684,child sexual abuse,1439783895 +180177,60684,cold war,1439783558 +180177,60684,dc comics,1439783792 +180177,60684,dystopia,1439783511 +180177,60684,gore,1439783804 +180177,60684,homophobia,1439783508 +180177,60684,jingoism,1439783762 +180177,60684,misogyny,1439783830 +180177,60684,nudity (full frontal),1439783536 +180177,60684,nudity (male),1439783541 +180177,60684,Nudity (Topless),1439783521 +180177,60684,pedophilia,1439783894 +180177,60684,rape,1439783820 +180177,60684,sci-fi,1439783513 +180177,60684,sexual assault,1439783818 +180177,60684,superhero,1439783568 +180177,60684,vigilantism,1439783598 +180177,60684,whorephobia,1439784022 +180177,62081,american exceptionalism,1439651000 +180177,62081,artificial intelligence,1400767644 +180177,62081,Bechdel test:Fail,1439650920 +180177,62081,constitutionalism,1439651002 +180177,62081,cyberterrorism,1439650936 +180177,62081,jingoism,1439650997 +180177,62081,malevolent ai,1439651024 +180177,62081,nationalism,1439650999 +180177,62081,operation guillotine is a great name for an operation,1439651046 +180177,66934,damsel in distress,1438947958 +180177,66934,heterosexuality,1438947822 +180177,66934,joss whedon,1438947418 +180177,66934,love triangle,1438947813 +180177,66934,misogyny,1438947464 +180177,66934,musical,1438947446 +180177,66934,Neil Patrick Harris,1438947433 +180177,66934,Nice Guy syndrome,1438947611 +180177,66934,stalking,1438947472 +180177,66934,superhero,1438947423 +180177,66934,women in refrigerators,1438947932 +180177,72630,dystopian,1407902837 +180177,72630,Español,1407902820 +180177,72630,science fiction,1407902828 +180177,72630,social commentary,1407902858 +180177,77561,capitalist protag,1400668652 +180177,77561,marvel,1400668652 +180177,77561,Robert Downey Jr.,1400668652 +180177,77561,robotic exoskeleton,1400668652 +180177,77780,artificial intelligence,1408599183 +180177,77780,cliffhanger ending,1408599182 +180177,77780,loose ends,1408599244 +180177,77780,rape scene,1408599180 +180177,77780,space,1408599214 +180177,77780,virtual reality,1408599210 +180177,81132,mindfuck,1400669931 +180177,81564,comedy,1400761353 +180177,81564,heterosexuality,1400761353 +180177,81564,superheroes,1400761353 +180177,86332,action,1400667210 +180177,86332,comic book,1400667182 +180177,86332,Marvel,1400667224 +180177,86332,predictable,1400667217 +180177,86332,romance,1400667191 +180177,86332,strong woman,1400667176 +180177,86332,superhero,1400667147 +180177,86345,Louis C.K.,1439359424 +180177,87232,action,1400667492 +180177,87232,black guy dies,1400667525 +180177,87232,comic book,1400667456 +180177,87232,Marvel,1400667457 +180177,87232,Nazis,1400667477 +180177,87232,superhero,1400667459 +180177,87306,aliens,1407903220 +180177,87306,science fiction,1407903186 +180177,88140,action,1400667574 +180177,88140,comic book,1400667562 +180177,88140,Marvel,1400667563 +180177,88140,Nazis,1400667585 +180177,88140,predictable,1400667583 +180177,88140,strong woman,1400667605 +180177,88140,superhero,1400667565 +180177,88140,World War II,1400667569 +180177,88744,scifi,1400761286 +180177,89745,comic book,1400668888 +180177,89745,marvel,1400668888 +180177,89745,Robert Downey Jr.,1400668888 +180177,89745,robotic exoskeleton,1400668888 +180177,89745,superhero,1400668888 +180177,92535,Louis C.K.,1439359406 +180177,93363,racist,1444226516 +180177,95875,Bechdel Test:Fail,1408852793 +180177,95875,Cyberpunk,1408852738 +180177,95875,Philip K. Dick,1408852733 +180177,95875,remake,1408852753 +180177,95875,science fiction,1408852727 +180177,95875,visually appealing,1408852763 +180177,96655,crime,1407984740 +180177,96655,robots,1407984710 +180177,96655,science fiction,1407984720 +180177,96737,Dystopia,1426485909 +180177,96737,police,1426485949 +180177,96737,police corruption,1426485920 +180177,96737,post-apocalyptic,1426485907 +180177,96737,sci-fi,1426485911 +180177,98491,black and white,1439785116 +180177,98491,Disney,1439785112 +180177,98491,heterosexuality,1439785107 +180177,101864,Alien Invasion,1439426761 +180177,101864,dystopia,1439379756 +180177,101864,heterosexual,1439379819 +180177,101864,heterosexuality,1439379821 +180177,101864,male protagonist,1439379817 +180177,101864,misogyny,1439424566 +180177,101864,Morgan Freeman,1439379760 +180177,101864,post-apocalyptic,1439379751 +180177,101864,sci-fi,1439379746 +180177,101864,Tom Cruise,1439379748 +180177,101864,women in refrigerators,1439424560 +180177,101962,animation,1444479741 +180177,101962,anime,1444479699 +180177,101962,coming of age,1444479717 +180177,101962,fantasy,1444479732 +180177,101962,Mamoru Hosoda,1444479701 +180177,101962,raising children,1444479709 +180177,101962,single mother,1444479707 +180177,101962,tearjerker,1444479697 +180177,101962,werewolves,1444479736 +180177,102051,capitalist protag,1400668717 +180177,102051,marvel,1400668717 +180177,102051,robotic exoskeleton,1400668717 +180177,102125,ableism,1439784504 +180177,102125,action,1400667356 +180177,102125,Bechdel Test:Fail,1439784633 +180177,102125,capitalist protag,1400668681 +180177,102125,comic book,1400667380 +180177,102125,explosions,1400667392 +180177,102125,Marvel,1439784524 +180177,102125,Marvel Cinematic Universe,1439784551 +180177,102125,Robert Downey Jr.,1400667383 +180177,102125,robotic exoskeleton,1400668681 +180177,102125,robots,1400667367 +180177,102125,romance,1400667429 +180177,102125,superhero,1400667364 +180177,102125,terrorism,1400667374 +180177,103042,Christopher Nolan,1400667080 +180177,103042,comic book,1400667084 +180177,103042,fantasy,1400667103 +180177,103042,gritty,1400667121 +180177,103042,military,1400667089 +180177,103042,product placement,1400667066 +180177,103042,strong women,1400667095 +180177,103042,superhero,1400667070 +180177,103228,aliens,1407903265 +180177,103228,ellen mclain,1400666969 +180177,103228,giant robots,1400666963 +180177,103228,Guillermo del Toro,1400666986 +180177,103228,heterosexuality,1407903280 +180177,103228,Idris Elba,1407903300 +180177,103228,robots,1407903308 +180177,103228,romance,1400667022 +180177,103228,slurs,1400667008 +180177,103253,class conflict,1408852859 +180177,103253,science fiction,1408852852 +180177,103253,social commentary,1408852884 +180177,103372,ableism,1408841136 +180177,103372,buddy cops,1408841079 +180177,103372,police,1408841075 +180177,103372,racism,1408841134 +180177,103372,whorephobia,1408841132 +180177,103772,comic book,1400761208 +180177,103772,superheroes,1400761208 +180177,103772,x men,1400761207 +180177,106002,action,1400750524 +180177,106002,aliens,1400750524 +180177,106002,based on a book,1400750523 +180177,106002,cissexism,1400750523 +180177,106002,militarism,1400750523 +180177,106002,orson scott card,1400750523 +180177,106072,comic book,1400667311 +180177,106072,marvel,1400667318 +180177,106072,superhero,1400667327 +180177,106072,transdimensional fighting,1400667282 +180177,106489,adventure,1400760955 +180177,106489,Benedict Cumberbatch,1400760954 +180177,106489,dragons,1400760955 +180177,106489,fantasy,1400760955 +180177,106489,Lord of the Rings,1400760954 +180177,106489,Martin Freeman,1400760954 +180177,106920,artificial intelligence,1400847876 +180177,106920,heterosexuality,1400847915 +180177,106920,philosophical,1400847883 +180177,106920,polyamory,1400847901 +180177,106920,sci-fi,1400847889 +180177,108190,based on a book,1400766924 +180177,108190,dystopia,1400766929 +180177,108190,female protagonist,1400766931 +180177,108190,heterosexuality,1400766947 +180177,108190,scifi,1400766957 +180177,108945,american exceptionalism,1408852605 +180177,108945,imperialism,1408852599 +180177,108945,police,1408852565 +180177,108945,science fiction,1408852590 +180177,109374,anti romani slurs,1439786734 +180177,109374,comedy,1439786968 +180177,109374,homophobia,1439787278 +180177,109374,homophobic slurs,1439787276 +180177,109374,racism,1439786735 +180177,109487,artificial intelligence,1426481599 +180177,109487,cisnormative,1426481724 +180177,109487,heteronormative,1426481726 +180177,109487,heterosexuality,1439360652 +180177,109487,sci-fi,1426481593 +180177,109487,science fiction,1426481638 +180177,109487,space,1426481581 +180177,109487,time travel,1426481650 +180177,109487,time-travel,1426481584 +180177,110102,cyborgs,1400667999 +180177,110102,nazis,1400667999 +180177,110102,strong woman,1400667999 +180177,110132,comic book,1400668941 +180177,110132,marvel,1400668941 +180177,110132,superheroes,1400668941 +180177,110730,artificial intelligence,1439287402 +180177,110730,contrived,1439287618 +180177,110730,cyborgs,1439287453 +180177,110730,heterosexual,1439287552 +180177,110730,heterosexuality,1439360638 +180177,110730,Johnny Depp,1439287412 +180177,110730,luddism,1439287504 +180177,110730,Morgan Freeman,1439287419 +180177,110730,nanobots,1439287616 +180177,110730,neoluddism,1439287506 +180177,110730,poorly thought out ending,1439287601 +180177,110730,predictable,1439287443 +180177,110730,science is magic,1439287608 +180177,110730,technophobia,1439287533 +180177,110730,technophobic,1439287537 +180177,110730,women in refridgerators,1439287573 +180177,111362,Fox,1407903071 +180177,111362,Hugh Jackman,1407903143 +180177,111362,Ian McKellen,1407903154 +180177,111362,Jennifer Lawrence,1407902995 +180177,111362,Marvel,1407903077 +180177,111362,Patrick Stewart,1407903137 +180177,111362,science fiction,1407903106 +180177,111362,time travel,1407903102 +180177,111362,x men,1407903082 +180177,112852,aliens,1407902755 +180177,112852,chauvinism,1407902608 +180177,112852,heterosexuality,1407902622 +180177,112852,James Gunn,1407902673 +180177,112852,Joss Whedon,1407902685 +180177,112852,Marvel,1407902533 +180177,112852,science fiction,1407902540 +180177,112852,sexism,1407902592 +180177,112852,whorephobia,1407902584 +180177,112852,women in refrigerators,1407902732 +180177,114847,artificial intelligence,1439639738 +180177,114847,bechdel test:fail,1439639769 +180177,114847,dystopia,1439639749 +180177,114847,heterosexual,1439639789 +180177,114847,heterosexuality,1439639788 +180177,114847,misogyny,1439639767 +180177,114847,post-apocalyptic,1439639739 +180177,114847,robots,1439639744 +180177,115713,artificial intelligence,1438946032 +180177,115713,bechdel test: fail,1439360700 +180177,115713,Man Versus Machine,1438946057 +180177,115713,misogyny,1438946118 +180177,115713,philosophical,1438946035 +180177,115713,robots,1438946038 +180177,115713,sci-fi,1438946041 +180177,115713,thought provoking,1438946045 +180177,120466,artificial intelligence,1439019418 +180177,120466,bad writing,1439019505 +180177,120466,cliche,1439019477 +180177,120466,cyberpunk,1439019427 +180177,120466,die antwoord,1439019432 +180177,120466,Neill Blomkamp,1439019430 +180177,120466,product placement,1439019438 +180177,120466,robots,1439019420 +180177,120637,Bechdel Test:Fail,1439603868 +180177,120637,Chris Hemsworth should have been gay,1439602994 +180177,120637,hackers,1439602950 +180177,120637,heterosexuality,1439602975 +180177,122892,antisemitism,1438947347 +180177,122892,artificial intelligence,1438947302 +180177,122892,Joss Whedon,1438947325 +180177,122892,Marvel,1438947261 +180177,122892,misogyny,1438947307 +180177,122892,superhero,1438947264 +180177,122892,The Avengers,1438947274 +180177,122902,medical abuse,1439354179 +180177,122902,sci-fi,1439354188 +180177,131170,alternate dimensions,1439038731 +180177,131170,alternate reality,1439038708 +180177,131170,cliff hanger,1439038734 +180177,131170,loose ends,1439038757 +180177,131170,science fiction,1439038740 +180177,134115,absurdism,1444905191 +180177,134115,nihilism,1444905247 +180177,134115,play,1444905203 +180177,134115,Samuel Beckett,1444905236 +180177,138702,heterosexuality,1439785283 +180217,58,italian bittersweet romance,1329073444 +180217,902,Audrey Hepburn,1329073384 +180217,902,Blake Edwards,1329073391 +180217,902,classic,1329073395 +180217,902,Romance,1329073401 +180217,1172,Italian,1329073498 +180217,1172,nostalgic,1329073501 +180217,1172,Oscar (Best Foreign Language Film),1329073506 +180217,1172,Poetic,1329073523 +180217,1172,screenplay,1329073528 +180217,1172,sentimental,1329073512 +180221,17,19th century,1446273189 +180221,17,Alan Rickman,1446273246 +180221,17,British,1446273162 +180221,17,costume drama,1446273190 +180221,17,Emma Thompson,1446273173 +180221,17,Hugh Grant,1446273177 +180221,555,brutality,1446103609 +180221,555,Christian Slater,1446103535 +180221,555,Christopher Walken,1446103533 +180221,555,dark comedy,1446103557 +180221,555,dialogue,1446103542 +180221,555,ensemble cast,1446103555 +180221,555,Patricia Arquette,1446103538 +180221,555,Quentin Tarantino,1446103524 +180221,555,Samuel L. Jackson,1446103597 +180221,555,shooting,1446103547 +180221,555,Val Kilmer,1446103530 +180221,555,violence,1446103544 +180221,555,violent,1446103654 +180221,590,Based on book,1446105172 +180221,590,bittersweet,1446105182 +180221,590,culture clash,1446105165 +180221,590,historical,1446105167 +180221,590,Kevin Costner,1446105160 +180221,590,Native Americans,1446105175 +180221,590,Oscar (Best Picture),1446105162 +180221,590,too long,1446105211 +180221,590,war,1446105179 +180221,590,western,1446105192 +180221,1246,bad influence students,1446223116 +180221,1246,bittersweet,1446222787 +180221,1246,boarding school,1446222796 +180221,1246,Carpe Diem,1446223202 +180221,1246,cheesy,1446222853 +180221,1246,cliche,1446222904 +180221,1246,Coming of age,1446222813 +180221,1246,friendship,1446222843 +180221,1246,High School,1446222790 +180221,1246,juvenile delinquencies,1446223094 +180221,1246,melodrama,1446222934 +180221,1246,out of context quotes,1446223194 +180221,1246,overly sentimental,1446222926 +180221,1246,philosophy,1446222785 +180221,1246,Robin Williams,1446222786 +180221,1246,schmaltzy,1446223213 +180221,1246,suicide,1446222792 +180221,1246,unrealistic arts teacher portrayal,1446222976 +180221,1270,1950s,1446217230 +180221,1270,1980s,1446217208 +180221,1270,adventure,1446217200 +180221,1270,alternate reality,1446217839 +180221,1270,Christopher Lloyd,1446217257 +180221,1270,classic,1446217201 +180221,1270,comedy,1446217198 +180221,1270,Funny,1446217223 +180221,1270,future,1446217208 +180221,1270,futuristic,1446217858 +180221,1270,quirky,1446217203 +180221,1270,rock and roll,1446217235 +180221,1270,sci-fi,1446217204 +180221,1270,time loop,1446217227 +180221,1270,time travel,1446217196 +180221,1270,whimsical,1446217225 +180221,1464,atmospheric,1446103269 +180221,1464,Bill Pullman,1446103475 +180221,1464,confusing,1446103234 +180221,1464,David Lynch,1446103266 +180221,1464,disturbing,1446103241 +180221,1464,dreamlike,1446103220 +180221,1464,jealousy,1446103246 +180221,1464,mindfuck,1446103239 +180221,1464,mystery,1446103280 +180221,1464,nonlinear,1446103220 +180221,1464,Nudity (Topless),1446103215 +180221,1464,Patricia Arquette,1446103484 +180221,1464,pornography,1446103260 +180221,1464,psychological,1446103287 +180221,1464,Robert Blake,1446103464 +180221,1464,strange,1446103283 +180221,1464,surreal,1446103222 +180221,1485,BREAKUPS AND DIVORCES,1446104670 +180221,1485,charming,1446104661 +180221,1485,classic comedy,1446104644 +180221,1485,comedy,1446104638 +180221,1485,father-son relationship,1446104651 +180221,1485,hilarious,1446104649 +180221,1485,jim carrey,1446104637 +180221,1485,lawyer,1446104641 +180221,1485,over the top,1446104646 +180221,1625,atmospheric,1446104859 +180221,1625,David Fincher,1446104841 +180221,1625,michael douglas,1446104845 +180221,1625,mindfuck,1446104854 +180221,1625,Mystery,1446104849 +180221,1625,neo-noir,1446104878 +180221,1625,paranoia,1446104875 +180221,1625,plot twist,1446104862 +180221,1625,psychological,1446104851 +180221,1625,Sean Penn,1446104838 +180221,1625,surprise ending,1446104870 +180221,1625,suspense,1446104873 +180221,1625,thriller,1446104856 +180221,1625,twist ending,1446104834 +180221,1625,unrealistic,1446104867 +180221,1704,Ben Affleck,1446101855 +180221,1704,boston,1446101900 +180221,1704,college,1446101890 +180221,1704,excellent script,1446101866 +180221,1704,feel-good,1446101880 +180221,1704,genius,1446101860 +180221,1704,great acting,1446101883 +180221,1704,Great Screenplays,1446101852 +180221,1704,inspirational,1446101869 +180221,1704,intellectual,1446101878 +180221,1704,intelligent,1446101858 +180221,1704,mathematics,1446101848 +180221,1704,Matt Damon,1446101847 +180221,1704,psychology,1446101864 +180221,1704,Robin Williams,1446101836 +180221,1704,thoughtful,1446101878 +180221,1704,university,1446101902 +180221,1721,bittersweet,1446105021 +180221,1721,catastrophe,1446105040 +180221,1721,drama,1446105024 +180221,1721,historical,1446105037 +180221,1721,Kate Winslet,1446105014 +180221,1721,Leonardo DiCaprio,1446105011 +180221,1721,love story,1446105026 +180221,1721,music,1446105013 +180221,1721,Nudity (Topless - Notable),1446105013 +180221,1721,Nudity (Topless),1446105013 +180221,1721,romance,1446105018 +180221,1721,sentimental,1446105036 +180221,1721,shipwreck,1446105044 +180221,1784,classic,1446102013 +180221,1784,comedy,1446102004 +180221,1784,feel-good,1446101986 +180221,1784,funny,1446102010 +180221,1784,Helen Hunt,1446101996 +180221,1784,Jack Nicholson,1446101983 +180221,1784,neurosis,1446102008 +180221,1784,obsessive compulsive disorder,1446101999 +180221,1784,Oscar (Best Actor),1446101989 +180221,1784,predictable,1446102057 +180221,1784,psychological,1446101993 +180221,1784,psychology,1446102002 +180221,1784,quirky,1446102017 +180221,1784,relationships,1446102007 +180221,2011,1980s,1446217369 +180221,2011,2015,1446217914 +180221,2011,adventure,1446217401 +180221,2011,alternate reality,1446217373 +180221,2011,Christopher Lloyd,1446217362 +180221,2011,classic,1446217388 +180221,2011,cliffhanger,1446217384 +180221,2011,comedy,1446217371 +180221,2011,dystopia,1446217911 +180221,2011,future,1446217389 +180221,2011,humorous,1446217403 +180221,2011,multiple roles,1446217905 +180221,2011,Robert Zemeckis,1446217907 +180221,2011,sci-fi,1446217364 +180221,2011,science fiction,1446217404 +180221,2011,sequel,1446217364 +180221,2011,time travel,1446217365 +180221,2012,adventure,1446217492 +180221,2012,alternate reality,1446217499 +180221,2012,Christopher Lloyd,1446217458 +180221,2012,ending,1446217978 +180221,2012,fantasy,1446217957 +180221,2012,Funny,1446217492 +180221,2012,humorous,1446217493 +180221,2012,multiple roles,1446217493 +180221,2012,sci-fi,1446217461 +180221,2012,science fiction,1446217943 +180221,2012,sequel,1446217947 +180221,2012,time travel,1446217459 +180221,2012,trains,1446217485 +180221,2012,western,1446217941 +180221,2291,cult film,1446104267 +180221,2291,dark comedy,1446104244 +180221,2291,fantasy,1446104264 +180221,2291,Gothic,1446104236 +180221,2291,Johnny Depp,1446104238 +180221,2291,loneliness,1446104257 +180221,2291,love story,1446104312 +180221,2291,modern fantasy,1446104296 +180221,2291,predictable,1446104275 +180221,2291,suburbia,1446104282 +180221,2291,surreal,1446104242 +180221,2291,Tim Burton,1446104240 +180221,2291,Winona Ryder,1446104254 +180221,2501,aeronautics,1446283490 +180221,2501,father-son relationship,1446283476 +180221,2501,inspirational,1446283478 +180221,2501,rocket,1446283495 +180221,2501,science,1446283475 +180221,2501,space,1446283476 +180221,2501,space program,1446283480 +180221,2501,true story,1446283461 +180221,2571,action,1445760331 +180221,2571,alternate reality,1445760335 +180221,2571,artificial intelligence,1445760333 +180221,2571,atmospheric,1445760395 +180221,2571,computers,1445760386 +180221,2571,cult film,1445760390 +180221,2571,cyberpunk,1445760323 +180221,2571,dystopia,1445760320 +180221,2571,fantasy,1445760442 +180221,2571,fight scenes,1445760414 +180221,2571,hackers,1445760398 +180221,2571,Keanu Reeves,1445760348 +180221,2571,Laurence Fishburne,1445760450 +180221,2571,martial arts,1445760327 +180221,2571,Mind Bending,1445760426 +180221,2571,overrated,1445760428 +180221,2571,philosophical,1445760355 +180221,2571,philosophy,1445760325 +180221,2571,post-apocalyptic,1445760341 +180221,2571,sci-fi,1445760318 +180221,2571,science fiction,1445760411 +180221,2571,slow motion,1445760419 +180221,2571,Special Effects,1445760406 +180221,2571,stylized,1445760384 +180221,2571,surreal,1445760345 +180221,2571,thought-provoking,1445760337 +180221,2571,virtual reality,1445760318 +180221,2571,visual,1445760440 +180221,2571,Wachowski Brothers,1445760404 +180221,2594,better than the american version,1446222150 +180221,2594,Dark,1446221469 +180221,2594,dreams,1446221490 +180221,2594,mindfuck,1446221454 +180221,2594,Nudity (Topless),1446221473 +180221,2594,Philip K. Dick (uncredited),1446222421 +180221,2594,psychology,1446221491 +180221,2594,Spain,1446221493 +180221,2594,surreal,1446221495 +180221,2594,Twist ending,1446221455 +180221,2594,virtual reality,1446221498 +180221,3510,father-son relationship,1446276001 +180221,3510,supernatural,1446276003 +180221,3510,time travel,1446276000 +180221,3730,character study,1446102224 +180221,3730,claustrophobic,1446102257 +180221,3730,espionage,1446102256 +180221,3730,Gene Hackman,1446102233 +180221,3730,ominous,1446102242 +180221,3730,paranoia,1446102239 +180221,3730,psychological,1446102236 +180221,3752,absurd,1446104537 +180221,3752,comedy,1446104532 +180221,3752,Jim Carrey,1446104531 +180221,3752,Renee Zellweger,1446104569 +180221,3752,split personality,1446104535 +180221,3994,atmospheric,1446110553 +180221,3994,Bruce Willis,1446110538 +180221,3994,comics,1446110560 +180221,3994,father-son relationship,1446110544 +180221,3994,Samuel L. Jackson,1446110547 +180221,3994,somber,1446110600 +180221,3994,storytelling,1446110542 +180221,3994,superhero,1446110539 +180221,3994,twist ending,1446110550 +180221,3994,unique,1446110562 +180221,3996,Action,1446114494 +180221,3996,Ang Lee,1446114476 +180221,3996,atmospheric,1446114469 +180221,3996,beautiful,1446114489 +180221,3996,beautifully filmed,1446114472 +180221,3996,cheesy,1446114515 +180221,3996,china,1446114471 +180221,3996,fight scenes,1446114491 +180221,3996,Kung Fu,1446114451 +180221,3996,martial arts,1446114447 +180221,3996,romance,1446114479 +180221,3996,stylized,1446114478 +180221,3996,sword fight,1446114482 +180221,3996,sword fighting,1446114496 +180221,3996,visually stunning,1446114487 +180221,4014,atheism,1446112709 +180221,4014,chocolate,1446112682 +180221,4014,colourful,1446112713 +180221,4014,family,1446112710 +180221,4014,feel-good,1446112717 +180221,4014,food,1446112698 +180221,4014,food/cooking,1446112696 +180221,4014,france,1446112680 +180221,4014,French,1446112715 +180221,4014,Johnny Depp,1446112662 +180221,4014,juliette binoche,1446112670 +180221,4014,magic realism,1446112675 +180221,4014,Quirky,1446112672 +180221,4014,small town,1446112678 +180221,4776,bad cop,1446220606 +180221,4776,corruption,1446220516 +180221,4776,denzel washington,1446220451 +180221,4776,detective thriller,1446220538 +180221,4776,Ethan Hawke,1446220457 +180221,4776,great acting,1446220543 +180221,4776,Nudity (Topless),1446220553 +180221,4776,Oscar (Best Actor),1446220508 +180221,4776,plot,1446220563 +180221,4776,police corruption,1446220454 +180221,4776,twist ending,1446220511 +180221,4878,alternate timeline,1446111927 +180221,4878,atmospheric,1446111923 +180221,4878,complicated,1446111946 +180221,4878,confusing,1446111949 +180221,4878,cult classic,1446111984 +180221,4878,cult film,1446111918 +180221,4878,DARK,1446111958 +180221,4878,dreamlike,1446111910 +180221,4878,enigmatic,1446111939 +180221,4878,hallucinatory,1446111972 +180221,4878,high school,1446111959 +180221,4878,imaginary friend,1446111965 +180221,4878,jake gyllenhaal,1446111962 +180221,4878,mental illness,1446111912 +180221,4878,mindfuck,1446111981 +180221,4878,music,1446111951 +180221,4878,mystery,1446111976 +180221,4878,original,1446111901 +180221,4878,Parallel universe,1446111937 +180221,4878,philosophy,1446111929 +180221,4878,psychological,1446111958 +180221,4878,psychology,1446111904 +180221,4878,quirky,1446111931 +180221,4878,satirical,1446111979 +180221,4878,sci-fi,1446111914 +180221,4878,social commentary,1446111934 +180221,4878,stylized,1446111973 +180221,4878,surreal,1446111905 +180221,4878,thought-provoking,1446111900 +180221,4878,time travel,1446111908 +180221,4878,twist ending,1446111921 +180221,4878,weird,1446111917 +180221,4995,based on a true story,1445762097 +180221,4995,biography,1445762083 +180221,4995,Drama,1445762107 +180221,4995,Education,1445762126 +180221,4995,genius,1445762066 +180221,4995,insanity,1445762095 +180221,4995,inspirational,1445762078 +180221,4995,intelligent,1445762080 +180221,4995,Jennifer Connelly,1445762104 +180221,4995,math,1445762072 +180221,4995,mathematics,1445762064 +180221,4995,mental illness,1445762074 +180221,4995,nobel prize,1445762124 +180221,4995,Oscar (Best Directing),1445762122 +180221,4995,Oscar (Best Picture),1445762091 +180221,4995,Oscar (Best Supporting Actress),1445762111 +180221,4995,psychology,1445762065 +180221,4995,romance,1445762101 +180221,4995,Russell Crowe,1445762068 +180221,4995,schizophrenia,1445762065 +180221,4995,true story,1445762076 +180221,5171,divided mankind,1446282209 +180221,5171,dystopia,1446281999 +180221,5171,future,1446282215 +180221,5171,inventor,1446281960 +180221,5171,science fiction,1446281968 +180221,5171,time loop,1446282049 +180221,5171,time paradox,1446282210 +180221,5171,time travel,1446281958 +180221,5364,adultery,1446220678 +180221,5364,Diane Lane,1446220714 +180221,5364,erotic,1446220680 +180221,5364,great acting,1446220742 +180221,5364,lust,1446220686 +180221,5364,Nudity (Topless - Notable),1446220680 +180221,5364,Nudity (Topless),1446220682 +180221,5364,sexy,1446220687 +180221,5608,based on a true story,1446272858 +180221,5608,German,1446272866 +180221,5608,human nature,1446272869 +180221,5608,mass behavior,1446272887 +180221,5608,prison,1446272860 +180221,5608,psychological,1446272880 +180221,5608,psychology,1446272857 +180221,5608,rape,1446272883 +180221,5608,thought-provoking,1446272863 +180221,5608,true story,1446272871 +180221,5608,unlikable lead,1446272925 +180221,5903,Amazing Cinematography,1445760487 +180221,5903,Christian Bale,1445760476 +180221,5903,drugs,1445760498 +180221,5903,dystopia,1445760474 +180221,5903,gunfight,1445760495 +180221,5903,martial arts,1445760502 +180221,5903,post-apocalyptic,1445760480 +180221,5903,predictable,1445760518 +180221,5903,revolution,1445760482 +180221,5903,sci-fi,1445760509 +180221,5903,thought-provoking,1445760485 +180221,5903,totalitarianism,1445760478 +180221,5989,based on a book,1445761832 +180221,5989,based on a true story,1445761860 +180221,5989,biography,1445761847 +180221,5989,Christopher Walken,1445761839 +180221,5989,comedy,1445761863 +180221,5989,con artists,1445761829 +180221,5989,con men,1445761852 +180221,5989,crime,1445761835 +180221,5989,drama,1445761866 +180221,5989,father-son relationship,1445761837 +180221,5989,feel good movie,1445761849 +180221,5989,intelligent,1445761846 +180221,5989,Leonardo DiCaprio,1445761821 +180221,5989,smart,1445761854 +180221,5989,Steven Spielberg,1445761827 +180221,5989,Tom Hanks,1445761821 +180221,5989,true story,1445761822 +180221,5989,twists & turns,1445761824 +180221,6538,books,1446272576 +180221,6538,Erotic Thriller,1446272610 +180221,6538,masturbation,1446272577 +180221,6538,Nudity (Full Frontal - Notable),1446272574 +180221,6538,Nudity (Full Frontal),1446272579 +180221,6538,sex scenes,1446272582 +180221,6870,based on a book,1446113867 +180221,6870,child abuse,1446113874 +180221,6870,Clint Eastwood,1446113831 +180221,6870,crime,1446113844 +180221,6870,Dark,1446113846 +180221,6870,Dark hero,1446113857 +180221,6870,drama,1446113895 +180221,6870,family,1446113852 +180221,6870,great acting,1446113850 +180221,6870,Kevin Bacon,1446113860 +180221,6870,kidnapping,1446113876 +180221,6870,murder,1446113879 +180221,6870,mystery,1446113835 +180221,6870,Oscar (Best Actor),1446113871 +180221,6870,powerful ending,1446113864 +180221,6870,revenge,1446114363 +180221,6870,Sean Penn,1446113892 +180221,6870,thriller,1446113880 +180221,6870,Tim Robbins,1446114388 +180221,6870,twist ending,1446113842 +180221,6870,working class,1446113855 +180221,7367,Coen Brothers,1446279281 +180221,7367,dialogue,1446279275 +180221,7367,disappointing ending,1446279319 +180221,7367,diverse cast,1446279298 +180221,7367,poetry,1446279304 +180221,7367,Tom Hanks,1446279279 +180221,7982,atmospheric,1446186750 +180221,7982,creepy,1446186749 +180221,7982,eerie,1446186807 +180221,7982,psychology,1446186750 +180221,7982,teenagers,1446186753 +180221,8813,dysfunctional marriage,1446219829 +180221,8813,John Curran,1446219851 +180221,8813,Laura Dern,1446219724 +180221,8813,Mark Ruffalo,1446219694 +180221,8813,Naomi Watts,1446219689 +180221,8813,Peter Krause,1446219735 +180221,8813,Strong cast,1446219751 +180221,33162,action,1446216854 +180221,33162,christian,1446216843 +180221,33162,cinematography,1446216856 +180221,33162,Eva Green,1446216986 +180221,33162,history,1446216845 +180221,33162,Jerusalem,1446216994 +180221,33162,Liam Neeson,1446216853 +180221,33162,medieval,1446216996 +180221,33162,Orlando Bloom,1446216858 +180221,33162,religion,1446216901 +180221,33162,Ridley Scott,1446216860 +180221,33660,1930s,1446110769 +180221,33660,Biography,1446110771 +180221,33660,boxing,1446110780 +180221,33660,boxing drama,1446110789 +180221,33660,inspirational,1446110778 +180221,33660,RAGS TO RICHES,1446110765 +180221,33660,Renée Zellweger,1446110836 +180221,33660,Russell Crowe,1446110773 +180221,33660,Sports,1446110789 +180221,33660,true story,1446110763 +180221,34048,action,1446114127 +180221,34048,adapted from:book,1446114135 +180221,34048,alien invasion,1446114101 +180221,34048,aliens,1446114091 +180221,34048,based on a book,1446114124 +180221,34048,Dakota Fanning,1446114124 +180221,34048,father daughter relationship,1446114111 +180221,34048,H.G. Wells,1446114099 +180221,34048,invasion,1446114133 +180221,34048,remake,1446114108 +180221,34048,sci-fi,1446114094 +180221,34048,Steven Spielberg,1446114096 +180221,34048,Tom Cruise,1446114088 +180221,34048,weak ending,1446114130 +180221,40819,addiction,1446282633 +180221,40819,based on a true story,1446282640 +180221,40819,biopic,1446282654 +180221,40819,bittersweet,1446282638 +180221,40819,drug abuse,1446282626 +180221,40819,DRUG ADDICTION,1446282645 +180221,40819,drugs,1446282652 +180221,40819,music,1446282630 +180221,40819,Robert Patrick,1446282695 +180221,40819,true story,1446282614 +180221,44555,breathtaking,1446221219 +180221,44555,Cold War,1446221064 +180221,44555,complex characters,1446221019 +180221,44555,drama,1446221048 +180221,44555,East Germany,1446221005 +180221,44555,excellent script,1446221022 +180221,44555,freedom of expression,1446221014 +180221,44555,Germany,1446221236 +180221,44555,great acting,1446221067 +180221,44555,historical,1446221050 +180221,44555,interrogation,1446221337 +180221,44555,Nudity (Topless - Brief),1446221146 +180221,44555,Nudity (Topless),1446221108 +180221,44555,Oscar (Best Foreign Language Film),1446221129 +180221,44555,psychology,1446221261 +180221,44555,spying,1446221009 +180221,44555,Stasi,1446221006 +180221,44555,subtle performances,1446221261 +180221,44555,surveillance,1446221016 +180221,44555,suspense,1446221046 +180221,44929,Abbie Cornish,1446220339 +180221,44929,addiction,1446220302 +180221,44929,Australia,1446220298 +180221,44929,depressing,1446220391 +180221,44929,downbeat,1446220308 +180221,44929,drug addiction,1446220305 +180221,44929,Geoffrey Rush,1446220312 +180221,44929,Heath Ledger,1446220311 +180221,44929,Nudity (Topless),1446220299 +180221,44929,poetry,1446220318 +180221,44929,prostitution,1446220306 +180221,44929,understated,1446220381 +180221,46578,Alan Arkin,1446279710 +180221,46578,comedy,1446279684 +180221,46578,dark comedy,1446279669 +180221,46578,drugs,1446279727 +180221,46578,dysfunctional family,1446279671 +180221,46578,family,1446279731 +180221,46578,feel-good,1446279686 +180221,46578,funny,1446279688 +180221,46578,heartwarming,1446279700 +180221,46578,independent film,1446279702 +180221,46578,off-beat comedy,1446279678 +180221,46578,quirky,1446279673 +180221,46578,road trip,1446279673 +180221,46578,satire,1446279680 +180221,46578,social commentary,1446279676 +180221,46578,steve carell,1446279699 +180221,46976,dustin hoffman,1446115116 +180221,46976,emma thompson,1446115137 +180221,46976,ending,1446115171 +180221,46976,fantasy,1446115157 +180221,46976,heartbreaking,1446115132 +180221,46976,heartwarming,1446115129 +180221,46976,humorous,1446115143 +180221,46976,love,1446115141 +180221,46976,Maggie Gyllenhaal,1446115107 +180221,46976,metaphysics,1446115128 +180221,46976,modern fantasy,1446115112 +180221,46976,narrated,1446115108 +180221,46976,quirky,1446115114 +180221,46976,quirky romantic,1446115121 +180221,46976,romance,1446115139 +180221,46976,storytelling,1446115124 +180221,46976,surreal,1446115104 +180221,46976,touching,1446115110 +180221,46976,Will Ferrell,1446115104 +180221,46976,writers,1446115125 +180221,46976,writing,1446115120 +180221,47830,abuse,1446220034 +180221,47830,Camilla Belle,1446220067 +180221,47830,deafmute,1446220157 +180221,47830,depressing,1446220166 +180221,47830,Elisha Cuthbert,1446220078 +180221,47830,strong cast,1446220140 +180221,47830,teenagers,1446220093 +180221,48043,alternate reality,1446102506 +180221,48043,artistic,1446102482 +180221,48043,atmospheric,1446102475 +180221,48043,Clint Mansell,1446102471 +180221,48043,Darren Aronofsky,1446102442 +180221,48043,death,1446102479 +180221,48043,dreamlike,1446102435 +180221,48043,emotional,1446102515 +180221,48043,hallucinatory,1446102507 +180221,48043,Hugh Jackman,1446102439 +180221,48043,inspirational,1446102526 +180221,48043,multiple storylines,1446102485 +180221,48043,Music,1446102462 +180221,48043,nonlinear,1446102504 +180221,48043,philosophical,1446102488 +180221,48043,Rachel Weisz,1446102453 +180221,48043,surreal,1446102459 +180221,48043,thought-provoking,1446102456 +180221,48043,visually appealing,1446102433 +180221,49772,adultery,1446215151 +180221,49772,affair,1446215138 +180221,49772,Edward Norton,1445759198 +180221,49772,emotional,1445759184 +180221,49772,heartbreaking,1445759188 +180221,49772,intellectual,1445759195 +180221,49772,landscape,1446215078 +180221,49772,naomi watts,1445759184 +180221,49772,nuns,1446215190 +180221,51086,conspiracy theory,1446278051 +180221,51086,Jim Carrey,1446278065 +180221,51086,mystery,1446278096 +180221,51086,psychology,1446278050 +180221,51086,stylized,1446278053 +180221,51086,twist ending,1446278051 +180221,51662,action,1446114899 +180221,51662,adapted from:comic,1446114960 +180221,51662,artistic,1446114924 +180221,51662,atmospheric,1446114900 +180221,51662,blood,1446114943 +180221,51662,comic book,1446114903 +180221,51662,computer animation,1446114959 +180221,51662,Frank Miller,1446114933 +180221,51662,Gerard Butler,1446114966 +180221,51662,historical,1446114945 +180221,51662,historically inaccurate,1446114984 +180221,51662,male nudity,1446114952 +180221,51662,military,1446114941 +180221,51662,narrated,1446114950 +180221,51662,Nudity (Topless),1446114907 +180221,51662,overrated,1446114977 +180221,51662,rape,1446114909 +180221,51662,style over substance,1446115008 +180221,51662,stylized,1446114897 +180221,51662,sword fight,1446114920 +180221,51662,war,1446114920 +180221,51662,Zack Snyder,1446114975 +180221,55247,adventure,1446106659 +180221,55247,Alaska,1446106703 +180221,55247,amazing photography,1446107707 +180221,55247,atmospheric,1446106651 +180221,55247,based on a book,1446106698 +180221,55247,based on a true story,1446106653 +180221,55247,bittersweet,1446107653 +180221,55247,cheesy,1446107694 +180221,55247,drama,1446107730 +180221,55247,Emile Hirsch,1446106644 +180221,55247,experience,1446107629 +180221,55247,freedom,1446106661 +180221,55247,great soundtrack,1446106626 +180221,55247,imdb top 250,1446106641 +180221,55247,Kristen Stewart,1446106719 +180221,55247,male nudity,1446106632 +180221,55247,materialism,1446107755 +180221,55247,Music,1446106685 +180221,55247,Nudity (Topless - Notable),1446106639 +180221,55247,Nudity (Topless),1446107711 +180221,55247,preachy,1446106675 +180221,55247,psychology,1446106700 +180221,55247,road trip,1446106628 +180221,55247,sad ending,1446106767 +180221,55247,Sean Penn,1446107716 +180221,55247,self discovery,1446106613 +180221,55247,soundtrack,1446107722 +180221,55247,stupidity,1446106784 +180221,55247,travel,1446107671 +180221,55247,true story,1446106656 +180221,55247,Unlikable character,1446106747 +180221,55247,wilderness,1446107656 +180221,56782,Daniel Day-Lewis,1446108161 +180221,56782,father-son relationship,1446108165 +180221,56782,greed,1446108182 +180221,56782,oil,1446108194 +180221,56782,Oscar (Best Actor),1446108203 +180221,56782,Oscar (Best Cinematography),1446108204 +180221,56782,paul dano,1446108171 +180221,56782,Paul Thomas Anderson,1446108167 +180221,56782,religion,1446108180 +180221,56782,visually appealing,1446108185 +180221,56782,western,1446108195 +180221,57669,ambiguous ending,1446275456 +180221,57669,atmospheric,1446275463 +180221,57669,beautiful scenery,1446275436 +180221,57669,belgium,1446275460 +180221,57669,black comedy,1446275416 +180221,57669,Brendan Gleeson,1446275458 +180221,57669,british comedy,1446275446 +180221,57669,Colin Farrell,1446275426 +180221,57669,comedy,1446275472 +180221,57669,dark comedy,1446275414 +180221,57669,depression,1446275441 +180221,57669,dialogue,1446275472 +180221,57669,drugs,1446275438 +180221,57669,foul language,1446275443 +180221,57669,friendship,1446275417 +180221,57669,hitman,1446275448 +180221,57669,irish accent,1446275423 +180221,57669,Ralph Fiennes,1446275435 +180221,57669,soundtrack,1446275526 +180221,57669,stylized,1446275418 +180221,57669,suicide,1446275451 +180221,57669,twist ending,1446275454 +180221,59018,beautiful,1446275729 +180221,59018,diverse cast,1446275734 +180221,59018,great acting,1446275726 +180221,59018,humanity,1446275735 +180221,59018,immigrants,1446275722 +180221,59018,realistic,1446275741 +180221,59018,Richard Jenkins,1446275724 +180221,61991,nudity (topless),1446270189 +180221,61991,racial conflict,1446270202 +180221,61991,war,1446270192 +180221,62293,adultery,1446280037 +180221,62293,British,1446279997 +180221,62293,melodramatic,1446280021 +180221,62293,Ralph Fiennes,1446280010 +180221,62293,rich people,1446280026 +180221,62293,romance,1446279987 +180221,63082,based on a book,1446277388 +180221,63082,cinematography,1446277373 +180221,63082,coincidences,1446277432 +180221,63082,compassionate,1446277433 +180221,63082,danny boyle,1446277407 +180221,63082,dark side of India,1446277394 +180221,63082,disjointed timeline,1446277420 +180221,63082,feel-good,1446277372 +180221,63082,great child actors,1446277477 +180221,63082,great soundtrack,1446277400 +180221,63082,gritty,1446277396 +180221,63082,heartwarming,1446277434 +180221,63082,India,1446277340 +180221,63082,love story,1446277447 +180221,63082,music,1446277341 +180221,63082,nonlinear,1446277344 +180221,63082,Oscar (Best Music - Original Score),1446277416 +180221,63082,Oscar (Best Music - Original Song),1446277412 +180221,63082,Oscar (Best Picture),1446277366 +180221,63082,Poverty,1446277389 +180221,63082,RAGS TO RICHES,1446277409 +180221,63082,social commentary,1446277337 +180221,63082,violence,1446277369 +180221,63082,visually appealing,1446277403 +180221,64957,Aging,1446277252 +180221,64957,bittersweet,1446277253 +180221,64957,Brad Pitt,1446277237 +180221,64957,Cate Blanchett,1446277241 +180221,64957,cinematography,1446277239 +180221,64957,David Fincher,1446277258 +180221,64957,implausible,1446277289 +180221,64957,life & death,1446277261 +180221,64957,long,1446277254 +180221,64957,original plot,1446277243 +180221,64957,Oscar (Best Effects - Visual Effects),1446277256 +180221,64957,philosophical,1446277250 +180221,64957,romance,1446277268 +180221,64957,touching,1446277249 +180221,68237,alter ego,1446115826 +180221,68237,artificial intelligence,1446115748 +180221,68237,clones,1446115802 +180221,68237,cloning,1446115765 +180221,68237,dark,1446115846 +180221,68237,depressing,1446115811 +180221,68237,dialogue driven,1446115801 +180221,68237,directorial debut,1446115814 +180221,68237,drama,1446115818 +180221,68237,dystopia,1446115743 +180221,68237,future,1446115770 +180221,68237,hallucination,1446115809 +180221,68237,interesting,1446115822 +180221,68237,isolation,1446115761 +180221,68237,Kevin Spacey,1446115756 +180221,68237,melancholy,1446115774 +180221,68237,mindfuck,1446115816 +180221,68237,moon,1446115763 +180221,68237,plot twist,1446115768 +180221,68237,psychological,1446115800 +180221,68237,psychology,1446115746 +180221,68237,Sam Rockwell,1446115754 +180221,68237,Sci-fi,1446115739 +180221,68237,science,1446115803 +180221,68237,science fiction,1446115843 +180221,68237,slow paced,1446115807 +180221,68237,solitude,1446115753 +180221,68237,space,1446115741 +180221,68237,thought-provoking,1446115771 +180221,68237,twist ending,1446115751 +180221,71033,Argentina,1446269992 +180221,71033,cheesy,1446270104 +180221,71033,foreign language,1446270044 +180221,71033,love,1446270086 +180221,71033,melodramatic,1446270119 +180221,71033,rape,1446270083 +180221,71033,revenge,1446269995 +180221,71033,Ricardo Darin,1446270008 +180221,71033,romance,1446270009 +180221,71033,Spanish,1446270006 +180221,71899,animation,1446115451 +180221,71899,asperger syndrome,1446115446 +180221,71899,australia,1446115464 +180221,71899,bittersweet,1446115489 +180221,71899,black comedy,1446115486 +180221,71899,character study,1446115448 +180221,71899,claymation,1446115462 +180221,71899,dark comedy,1446115442 +180221,71899,Deep,1446115471 +180221,71899,friendship,1446115433 +180221,71899,letters,1446115476 +180221,71899,loneliness,1446115484 +180221,71899,mental illness,1446115437 +180221,71899,Philip Seymour Hoffman,1446115444 +180221,71899,philosophical,1446115453 +180221,71899,poignant,1446115474 +180221,71899,quirky,1446115532 +180221,71899,sad,1446115478 +180221,71899,slow paced,1446115482 +180221,71899,stop motion,1446115467 +180221,71899,Toni Collette,1446115468 +180221,71899,touching,1446115440 +180221,72380,dialogue,1446284289 +180221,72380,faux deep dialogue,1446284297 +180221,72380,messy,1446284210 +180221,72380,no atmosphere,1446284211 +180221,72380,no tension,1446284210 +180221,72380,pointless,1446284293 +180221,72380,psychology,1446284306 +180221,72380,surreal,1446284308 +180221,73023,great acting,1446273076 +180221,73023,Jeff Bridges,1446273050 +180221,73023,Maggie Gyllenhaal,1446273057 +180221,73023,unlikely romance,1446273054 +180221,76091,investigation,1446113956 +180221,76091,mental illness,1446113958 +180221,76091,mother-son relationship,1446113957 +180221,76091,stylized,1446113961 +180221,79132,alternate reality,1445760990 +180221,79132,ambiguous ending,1445761168 +180221,79132,big budget,1445761117 +180221,79132,cerebral,1445761074 +180221,79132,Christopher Nolan,1445760996 +180221,79132,cinematography,1445761165 +180221,79132,clever,1445761067 +180221,79132,complicated,1445761047 +180221,79132,drama,1445761097 +180221,79132,dream,1445761119 +180221,79132,dream within a dream,1445761182 +180221,79132,dreamlike,1445761055 +180221,79132,dreams,1445761057 +180221,79132,Ellen Page,1445761035 +180221,79132,fantasy,1445761112 +180221,79132,great cast,1445761142 +180221,79132,great soundtrack,1445761077 +180221,79132,Hans Zimmer,1445761106 +180221,79132,heist,1445761067 +180221,79132,imaginative,1445761139 +180221,79132,intellectual,1445761065 +180221,79132,Intelligent scifi,1445761158 +180221,79132,Intense,1445761084 +180221,79132,interesting,1445761137 +180221,79132,Joseph Gordon-Levitt,1445761032 +180221,79132,Leonardo DiCaprio,1445761038 +180221,79132,makes you think,1445761175 +180221,79132,memory,1445761081 +180221,79132,Michael Caine,1445761030 +180221,79132,mind games,1445761123 +180221,79132,mindfuck,1445761045 +180221,79132,multiple interpretations,1445761072 +180221,79132,open ending,1445761125 +180221,79132,original plot,1445761129 +180221,79132,philosophy,1445761065 +180221,79132,plot twist,1445761132 +180221,79132,psychological,1445761079 +180221,79132,psychology,1445761086 +180221,79132,questions reality,1445761151 +180221,79132,sci-fi,1445761050 +180221,79132,science fiction,1445761171 +180221,79132,soundtrack,1445761185 +180221,79132,special effects,1445761134 +180221,79132,subconscious,1445761147 +180221,79132,surreal,1445761043 +180221,79132,suspense,1445761070 +180221,79132,thought-provoking,1445761040 +180221,79132,thriller,1445761089 +180221,79132,Tom Hardy,1445761099 +180221,79132,twist ending,1445761065 +180221,79132,unpredictable,1445761110 +180221,79132,visually appealing,1445760992 +180221,79132,visually stunning,1445761188 +180221,79132,weightlessness,1445761145 +180221,79357,butterfly effect,1446102684 +180221,79357,chaos,1446102727 +180221,79357,cinematography,1446102664 +180221,79357,coming of age,1446102692 +180221,79357,confusing,1446102938 +180221,79357,Diane Kruger,1446102911 +180221,79357,divorce,1446102739 +180221,79357,flashbacks,1446102700 +180221,79357,immortality,1446102688 +180221,79357,Jared Leto,1446102661 +180221,79357,memory,1446102740 +180221,79357,nonlinear,1446102644 +180221,79357,philosophy,1446102668 +180221,79357,plot,1446102730 +180221,79357,romance,1446102680 +180221,79357,sci-fi,1446102655 +180221,79357,soundtrack,1446102725 +180221,79357,storytelling,1446102697 +180221,79357,surreal,1446102656 +180221,79357,thought provoking,1446102659 +180221,79357,time travel,1446102670 +180221,79357,Toby Regbo,1446102907 +180221,79357,too long,1446102920 +180221,80489,action,1445760016 +180221,80489,bank robbery,1445760040 +180221,80489,Ben Affleck,1445760061 +180221,80489,crime,1445760027 +180221,80489,heist,1445760018 +180221,80489,police,1445760068 +180221,80489,Rebecca Hall,1445760112 +180221,80489,smart thinking,1445760037 +180221,80489,too much love interest,1445760070 +180221,80489,violence,1445760058 +180221,80586,charming,1446273405 +180221,80586,coming of age,1446273419 +180221,80586,great acting,1446273426 +180221,85414,intelligent,1445760932 +180221,85414,interesting,1445760944 +180221,85414,Jake Gyllenhaal,1445760912 +180221,85414,military,1445760938 +180221,85414,mindfuck,1445760927 +180221,85414,parallel universe,1445760916 +180221,85414,romance,1445760941 +180221,85414,sci-fi,1445760951 +180221,85414,science fiction,1445760923 +180221,85414,suspense,1445760930 +180221,85414,thriller,1445760956 +180221,85414,time loop,1445760921 +180221,85414,time travel,1445760919 +180221,85414,twist ending,1445760926 +180221,85414,twists & turns,1445760963 +180221,85414,Weak third act,1445760970 +180221,86882,1920s,1446277653 +180221,86882,art,1446277665 +180221,86882,bittersweet,1446277632 +180221,86882,cinematography,1446277650 +180221,86882,comedy,1446277653 +180221,86882,dialogue,1446277640 +180221,86882,fantasy,1446277664 +180221,86882,France,1446277657 +180221,86882,magical realism,1446277638 +180221,86882,nostalgic,1446277659 +180221,86882,Owen Wilson,1446277622 +180221,86882,Paris,1446277618 +180221,86882,philosophical,1446277634 +180221,86882,quirky,1446277620 +180221,86882,Rachel McAdams,1446277643 +180221,86882,romance,1446277625 +180221,86882,thought-provoking,1446277614 +180221,86882,time travel,1446277621 +180221,86882,whimsical,1446277627 +180221,86882,witty,1446277636 +180221,86882,Woody Allen,1446277612 +180221,86882,writers,1446277631 +180221,88179,Anne Hathaway,1446280224 +180221,88179,friendship,1446280311 +180221,88179,Jim Sturgess,1446280412 +180221,88179,romance,1446280375 +180221,88179,sensual,1446280333 +180221,88179,slice of life,1446280430 +180221,90154,mystery,1446283725 +180221,90154,romance,1446283754 +180221,92259,acting,1446215985 +180221,92259,based on a true story,1446215972 +180221,92259,disability,1446215975 +180221,92259,emotional,1446215970 +180221,92259,feel good movie,1446215968 +180221,92259,friendship,1446215937 +180221,92259,funny,1446215941 +180221,92259,Personality change,1446215992 +180221,92259,touching,1446215939 +180221,92259,upper class,1446215996 +180221,96610,Bruce Willis,1445760551 +180221,96610,clever,1445760563 +180221,96610,complicated,1445760587 +180221,96610,dystopia,1445760549 +180221,96610,emily blunt,1445760609 +180221,96610,film noir,1445760589 +180221,96610,future,1445760569 +180221,96610,Joseph Gordon-Levitt,1445760554 +180221,96610,mother-son relationship,1445760637 +180221,96610,Nudity (Topless),1445760597 +180221,96610,organized crime,1445760560 +180221,96610,original,1445760579 +180221,96610,sci-fi,1445760547 +180221,96610,sci-fi thriller,1445760600 +180221,96610,science fiction,1445760571 +180221,96610,thriller,1445760578 +180221,96610,time travel,1445760546 +180221,96610,visually appealing,1445760558 +180221,96821,atmospheric,1446283172 +180221,96821,based on a book,1446283180 +180221,96821,bittersweet,1446283123 +180221,96821,character development,1446283100 +180221,96821,cheesy,1446283155 +180221,96821,coming of age,1446283094 +180221,96821,depression,1446283126 +180221,96821,drugs,1446283269 +180221,96821,Emma Watson,1446283092 +180221,96821,high school,1446283175 +180221,96821,Not very realistic,1446283144 +180221,96821,Paul Rudd,1446283211 +180221,96821,Suicide,1446283130 +180221,96821,teen,1446283062 +180221,96821,touching,1446283122 +180221,97752,adapted from:book,1446117537 +180221,97752,Andy Wachowski,1446117563 +180221,97752,atmospheric,1446117493 +180221,97752,based on a book,1446117526 +180221,97752,Ben Whishaw,1446117541 +180221,97752,complicated,1446117499 +180221,97752,connection,1446117559 +180221,97752,Doona Bae,1446117535 +180221,97752,dystopia,1446117491 +180221,97752,dystopian future,1446117560 +180221,97752,future,1446117514 +180221,97752,great acting,1446117516 +180221,97752,Halle Berry,1446117529 +180221,97752,Hugo Weaving,1446117544 +180221,97752,Lana Wachowski,1446117565 +180221,97752,multiple roles,1446117506 +180221,97752,multiple storylines,1446117488 +180221,97752,Nudity (Topless),1446117532 +180221,97752,philosophy,1446117503 +180221,97752,rebellion,1446117510 +180221,97752,sci-fi,1446117497 +180221,97752,slow paced,1446117544 +180221,97752,social commentary,1446117501 +180221,97752,social criticism,1446117528 +180221,97752,thought-provoking,1446117508 +180221,97752,Tom Hanks,1446117495 +180221,97752,visually appealing,1446117491 +180221,97752,Wachowski Brothers,1446117548 +180221,102903,deception,1446280580 +180221,102903,illusions,1446280570 +180221,102903,Isla FIsher,1446280788 +180221,102903,Jesse Eisenberg,1446280776 +180221,102903,magic,1446280570 +180221,102903,Mark Ruffalo,1446280596 +180221,102903,Morgan Freeman,1446280760 +180221,102903,overcomplicated,1446280592 +180221,102903,plot,1446280769 +180221,102903,pseudo-intelligent,1446280588 +180221,102903,stage magic,1446280582 +180221,102903,surprise ending,1446280763 +180221,103017,twisted ending,1446270275 +180221,103449,abrupt ending,1446188255 +180221,103449,lesbian,1446188225 +180221,103449,Noomi Rapace,1446188222 +180221,103449,Unlikable characters,1446188209 +180221,108729,adultery,1446103093 +180221,108729,doppelganger,1446103078 +180221,108729,good acting,1446103075 +180221,108729,Jake Gyllenhaal,1446103067 +180221,108729,mental illness,1446103090 +180221,108729,mindfuck,1446103069 +180221,108729,nudity (topless),1446103063 +180221,108729,Psychological,1446103062 +180221,108729,Sarah Gadon,1446103105 +180221,108729,Symbolic,1446103087 +180221,108729,tense,1446103072 +180221,110127,animal cruelty,1446216673 +180221,110127,Biblical,1446216587 +180221,110127,Christianity,1446216644 +180221,110127,Dark,1446216589 +180221,110127,dysfunctional family,1446216592 +180221,110127,fantasy,1446216600 +180221,110127,Logan Lerman,1446216618 +180221,110127,Russell Crowe,1446216597 +180221,110127,unlikeable characters,1446216585 +180221,112171,action,1446274060 +180221,112171,disappointing third act,1446274095 +180221,112171,revenge,1446274058 +180221,112171,violent,1446274091 +180221,112515,atmospheric,1446186448 +180221,112515,dark,1446186438 +180221,112515,Dog killing,1446186437 +180221,112515,Metaphorical,1446186445 +180221,112515,mother-son relationship,1446186440 +180221,112515,psychological,1446186435 +180221,112515,supernatural,1446186443 +180221,114935,Ethan Hawke,1445760776 +180221,114935,mindfuck,1445760716 +180221,114935,Sarah Snook,1445760843 +180221,114935,sci-fi,1445760848 +180221,114935,science fiction,1445760725 +180221,114935,thriller,1445760723 +180221,114935,time travel,1445760714 +180221,114935,twist ending,1445760728 +180221,115149,Action,1446274144 +180221,115149,cheesy,1446274188 +180221,115149,head-shot,1446274187 +180221,115149,Hitman,1446274149 +180221,115149,Keanu Reeves,1446274145 +180221,115149,lack of story,1446274168 +180221,115149,Michael Nyqvist,1446274166 +180221,115149,predictable,1446274192 +180221,115149,puppy,1446274185 +180221,115149,Revenge,1446274136 +180221,115149,russian mafia,1446274148 +180221,115149,secret society,1446274163 +180221,115149,stylish,1446274161 +180221,115149,violent,1446274149 +180221,115569,Character Development,1446111227 +180221,115569,Crime,1446111215 +180221,115569,crime reporter,1446111217 +180221,115569,dark,1446111186 +180221,115569,gripping,1446111191 +180221,115569,Jake Gyllenhaal,1446111184 +180221,115569,journalism,1446111194 +180221,115569,los angeles,1446111199 +180221,115569,media madness,1446111229 +180221,115569,news,1446111210 +180221,115569,psychothriller,1446111212 +180221,115569,satire,1446111196 +180221,115569,sociopath,1446111189 +180221,115569,television,1446111226 +180221,115569,thriller,1446111203 +180221,115569,transformative performance,1446111207 +180221,116397,Ben Kingsley,1446270374 +180221,116397,Edgar Allan Poe,1446270450 +180221,116397,Jim Sturgess,1446270406 +180221,116397,Kate Beckinsale,1446270377 +180221,116887,ancient civilization,1446216764 +180221,116887,biblical,1446216751 +180221,116887,Christian Bale,1446216754 +180221,116887,Christianity,1446216798 +180221,116887,Joel Edgerton,1446216785 +180221,116887,Ridley Scott,1446216752 +180221,121231,Creepy,1446186245 +180221,121231,despair,1446186262 +180221,121231,horror,1446186241 +180221,121231,minimalist,1446186257 +180221,121231,Pacing,1446186251 +180221,121231,Psychological,1446186253 +180221,121231,Supernatural,1446186248 +180221,121231,teen,1446186267 +180221,121231,teenagers,1446186261 +180221,129354,action,1446283995 +180221,129354,con artist,1446283988 +180221,129354,deception,1446284018 +180221,129354,Margot Robbie,1446284009 +180221,129354,swindle,1446283993 +180221,129354,thief,1446283989 +180221,129354,unexpected end,1446283990 +180221,130636,Apple,1446186887 +180221,130636,Internet,1446186879 +180221,130636,Macbook,1446186896 +180221,130636,skype,1446186883 +180221,130636,Unlikable characters,1446186908 +180221,132480,Blake Lively,1446220876 +180221,132480,drama,1446220856 +180221,132480,Harrison Ford,1446220903 +180221,132480,romance,1446220855 +180228,1080,Monty Python,1451001408 +180228,1080,religion,1451001403 +180228,1080,satire,1451001413 +180228,8972,conspiracy theory,1451001431 +180228,8972,dialogue,1451001453 +180228,8972,Nicholas Cage,1451001472 +180228,8972,treasure hunt,1451001435 +180228,127112,flight of the condords,1451001554 +180228,127112,Jemaine Clement,1451001547 +180277,947,National Film Registry,1283840838 +180277,1284,classic,1242797578 +180277,1284,Humphrey Bogart,1242797547 +180277,1284,National Film Registry,1242797570 +180277,1284,private detective,1242797621 +180277,2205,Alfred Hitchcock,1283840611 +180277,2205,Carole Lombard,1283840617 +180277,2205,screwball,1283840615 +180277,3097,James Stewart,1283840657 +180277,3097,National Film Registry,1283840665 +180277,7121,National Film Registry,1283840738 +180277,33905,Paul Newman,1283841572 +180277,68954,Pixar,1244004705 +180295,123,Criterion,1450668297 +180295,123,stylized,1450668295 +180295,1235,Cult Classic,1450668144 +180295,1235,cult film,1450668136 +180295,1235,dark comedy,1450668141 +180295,1235,dark humor,1450668147 +180295,1235,quirky,1450668142 +180310,260,entertaining,1443740533 +180310,260,good story,1443740547 +180311,5675,awful end,1195080765 +180311,7260,Gay Lead Character,1195079213 +180311,27826,gay,1195078647 +180311,47976,David Duchovny,1195078353 +180320,1225,retro,1137181612 +180320,1682,jim carry on a sailing boat,1137181714 +180320,2291,fantasy,1137181611 +180331,6214,Monica Bellucci,1442004012 +180331,26082,Criterion,1442008637 +180331,26082,Samurai,1442008634 +180331,32587,dark,1442003905 +180331,32587,stylized,1442003920 +180331,72386,Penélope Cruz,1446103085 +180331,88129,neo-noir,1442003940 +180360,296,dance,1430421075 +180360,296,multiple storylines,1430421075 +180360,296,original plot,1430421075 +180362,117545,asterix,1441917116 +180389,106916,long,1391460442 +180392,1485,comedy,1431368777 +180392,1485,hilarious,1431368792 +180392,1485,jim carrey,1431368772 +180392,7361,Charlie Kaufman,1431368686 +180392,7361,surreal,1431368694 +180402,296,crime,1430516957 +180402,296,drugs,1430516957 +180402,296,thriller,1430516957 +180402,318,deep,1433107416 +180402,318,emotional,1433107416 +180402,318,surprise ending,1433107416 +180422,32,future,1438997219 +180422,32,original,1438997213 +180422,32,psychology,1438997234 +180422,31952,dark comedy,1440553221 +180422,31952,subway,1440553207 +180422,31952,surreal,1440553213 +180422,44191,dystopia,1438995225 +180422,44191,Natalie Portman,1438995246 +180422,44191,philosophy,1438995232 +180422,44191,sci-fi,1438995253 +180422,44191,thought-provoking,1438995229 +180422,44191,visually appealing,1438995236 +180422,48774,atmospheric,1438995308 +180422,48774,depressing,1438997189 +180422,48774,dystopia,1438995305 +180422,48774,futuristic,1438995331 +180422,48774,long shots,1438995369 +180422,48774,sci-fi,1438995346 +180422,48774,social commentary,1438995329 +180422,48774,thought-provoking,1438995342 +180422,48774,touching,1438995384 +180422,48774,visually appealing,1438995322 +180422,70286,humor,1438995507 +180422,70286,intelligent sci-fi,1438995481 +180422,70286,mockumentary,1438995496 +180422,116797,cryptography,1438989587 +180432,3300,aliens,1390487441 +180432,3300,anti-hero,1390487439 +180432,3300,sci-fi,1390487447 +180432,3300,suspense,1390487450 +180432,3481,great soundtrack,1390487793 +180432,3481,John Cusack,1390487786 +180432,4369,car chase,1390487601 +180432,4369,racing,1390487603 +180432,4979,not funny,1390487721 +180432,6711,atmospheric,1390487676 +180432,6711,Bill Murray,1390487808 +180432,6711,complex characters,1390487679 +180432,6711,loneliness,1390487681 +180432,6711,tokyo,1390487688 +180432,8371,Alpha male,1390487328 +180432,8371,Riddick,1390487335 +180432,8371,sci-fi,1390487325 +180432,8371,shallow plot,1390487340 +180432,8371,Vin Diesel,1390487337 +180432,34405,dystopia,1390487891 +180432,34405,quirky,1390487893 +180432,34405,sci-fi,1390487895 +180432,96588,acapella,1390474951 +180432,96588,choir,1390474941 +180432,96588,cleavage,1390474962 +180432,96588,college,1390474965 +180432,96588,music,1390474947 +180432,96588,vocalists,1390474958 +180432,106918,Ben Stiller,1390486712 +180432,106918,Greenland,1390486681 +180432,106918,Iceland,1390486686 +180432,106918,imagination,1390486689 +180432,106918,visually appealing,1390486693 +180433,8665,Matt Damon,1157542618 +180433,8665,want to see again,1157542622 +180488,110,freedom,1192756156 +180488,56167,Bollywood,1196686478 +180488,56167,Indian,1196686485 +180488,56167,ShahRukh Khan,1196686515 +180524,60137,cultural history,1306470856 +180524,60137,documentary,1306470836 +180524,60137,value of art objects,1306470937 +180524,71928,Alexander Siddig,1283658893 +180524,71928,Arabic music,1283658639 +180524,71928,chess,1283658917 +180524,71928,color,1283658639 +180524,71928,culture,1283658639 +180524,71928,light,1283658639 +180524,71928,Patricia Clarkson,1283658639 +180524,71928,scenery,1283658858 +180524,71928,smoking,1283658966 +180524,72479,Samantha Morton,1280877969 +180524,72479,Woody Harrelson,1280877973 +180524,78574,characters,1280878423 +180524,78574,cinematography,1280878423 +180524,78574,cultural authenticity,1280878423 +180524,78574,resilience,1280878423 +180524,79132,complicated,1280877468 +180524,79132,multiple interpretations,1280877465 +180524,79132,time relationships,1280877652 +180524,79242,Annette Bening,1280878278 +180524,79242,good acting,1280877861 +180524,79242,interpersonal relationships,1280878278 +180524,79242,Julianne Moore,1280878278 +180524,79242,resilience,1280877861 +180524,79897,characters,1283571103 +180524,79897,fine acting,1283571103 +180524,79897,humor,1283571103 +180524,79897,scenery,1283571103 +180524,79897,soundtrack,1283571103 +180524,79897,subtlety,1283571103 +180524,86190,abandoned amusement park,1306200791 +180524,86190,Marissa character underdeveloped,1306200924 +180524,86190,plot & suspense,1306201123 +180524,86190,surrealism,1306200830 +180524,86833,Maya Rudolph,1306201247 +180538,60069,pixar,1438106967 +180538,60069,robots,1438106969 +180538,60069,Sci-Fi,1438106971 +180538,69278,dinosaurs,1438106903 +180538,69278,time travel,1438106904 +180538,69278,Will Ferrell,1438106898 +180539,260,good vs evil,1433576955 +180539,260,sci-fi,1433576944 +180539,71156,cast,1433577510 +180539,71156,drugs,1433577345 +180539,71156,military industrial complex,1433577510 +180539,84954,weird ending,1433577216 +180562,318,friendship,1430126934 +180562,318,justice,1430126934 +180562,318,sad,1430126934 +180563,3156,sci-fi,1356367830 +180563,48043,multiple storylines,1356367801 +180563,48043,sci-fi,1356367795 +180577,34405,terrible character development and weak plot? You'll LOVE this movie!!!,1139619626 +180577,34405,Want bad acting,1139619626 +180583,7843,Soccer,1167788226 +180584,260,jedi,1433959105 +180584,260,sci-fi,1433959074 +180584,356,army,1433959318 +180584,356,comedy,1433959318 +180584,356,sentimental,1433959318 +180607,550,comedy,1447246899 +180607,550,friendship,1447246894 +180607,550,group sex,1447246893 +180607,550,love triangle not threesome,1447246907 +180607,4246,British,1447247056 +180607,4246,chick flick,1447247050 +180607,4246,comedy,1447247058 +180607,4246,funny,1447247053 +180607,4246,guilty pleasure,1447247065 +180607,4246,love story,1447247067 +180607,5617,bdsm,1447214610 +180607,5617,love,1447214613 +180607,5617,relationships,1447214628 +180607,5617,romance,1447214615 +180607,5617,weird,1447214624 +180607,5791,art,1447246797 +180607,5791,Biography,1447246791 +180607,5791,drama,1447246814 +180607,5791,Frida Kahlo,1447246806 +180607,5791,historical,1447246795 +180607,5791,love,1447246813 +180607,5970,Drama,1447246951 +180607,5970,heartbreaking,1447246958 +180607,6711,bittersweet,1447215007 +180607,6711,friendship,1447214995 +180607,6711,Japan,1447214964 +180607,6711,loneliness,1447214970 +180607,6711,Melancholic,1447214966 +180607,6711,music,1447214983 +180607,6711,relationships,1447214988 +180607,6711,Sofia Coppola,1447214977 +180607,6711,tokyo,1447214967 +180607,6711,visually appealing,1447214974 +180607,6770,loneliness,1447213806 +180607,6770,Mark Ruffalo,1447213800 +180607,6770,terminal illness,1447213772 +180607,6770,thought-provoking,1447213796 +180607,7010,Nudity (Full Frontal - Notable),1447214945 +180607,7139,immigrants,1447213876 +180607,7139,new beginning,1447213878 +180607,7139,touching,1447213880 +180607,7265,controversial,1447214831 +180607,7265,erotic,1447214814 +180607,7265,male nudity,1447214829 +180607,7265,Paris,1447214818 +180607,8638,great dialogue,1447212317 +180607,8638,Paris,1447212296 +180607,8638,romantic,1447212300 +180607,8638,sequel,1447212308 +180607,8784,cliché ending,1447213977 +180607,8784,coming of age,1447213956 +180607,8784,friendship,1447214007 +180607,8784,Great Soundtrack,1447213947 +180607,8784,romance,1447213944 +180607,8784,soundtrack,1447214003 +180607,27727,alcoholism,1447212726 +180607,27727,complex characters,1447212720 +180607,27727,drama,1447212782 +180607,27727,intense,1447212729 +180607,27727,love,1447212779 +180607,27727,love story,1447212724 +180607,27727,romance,1447212780 +180607,27727,Turkey,1447212749 +180607,41571,cinematography,1447214178 +180607,41571,drama,1447214189 +180607,41571,geisha,1447214173 +180607,41571,history,1447214176 +180607,41571,Japan,1447214171 +180607,41571,Japanese culture,1447214228 +180607,41571,Ken Watanabe,1447214210 +180607,41571,love,1447214240 +180607,41571,romance,1447214223 +180607,41571,women,1447214181 +180607,44717,comedy,1447246577 +180607,44717,Guel Arraes,1447246581 +180607,44717,love,1447246579 +180607,44717,selton melo,1447246589 +180607,46976,love,1447214103 +180607,46976,narrated,1447214093 +180607,46976,quirky romantic,1447214100 +180607,46976,surreal,1447214090 +180607,47202,drama,1447213742 +180607,47202,emotional,1447213698 +180607,47202,female director,1447213729 +180607,47202,Melancholic,1447213692 +180607,47202,pain,1447213701 +180607,47202,Sarah Polley,1447213696 +180607,47202,scarry and strong,1447213710 +180607,47202,survivor's guilt,1447213735 +180607,47202,thoughtful,1447213682 +180607,47202,war,1447213703 +180607,47970,being trapped,1447215993 +180607,47970,cheating,1447216000 +180607,47970,real relationships,1447216003 +180607,47970,relationships,1447215989 +180607,47970,Zach Braff,1447215992 +180607,52579,Edith Piaf,1447215264 +180607,52579,French,1447215262 +180607,52579,great acting,1447215268 +180607,52579,Marion Cotillard,1447215266 +180607,53189,awkward,1447215523 +180607,53189,misfits,1447215521 +180607,54193,bittersweet,1447215368 +180607,54193,distance,1447215337 +180607,54193,doubt,1447215364 +180607,54193,french,1447215351 +180607,54193,love,1447215393 +180607,54193,one night stand,1447215375 +180607,54193,relationship,1447215398 +180607,54193,single,1447215387 +180607,54193,woman,1447215383 +180607,55280,comedy-drama,1447213833 +180607,55280,emotional,1447213821 +180607,55280,mental illness,1447213816 +180607,55280,Ryan Gosling,1447213827 +180607,55280,weird,1447213819 +180607,56367,adoption,1447214060 +180607,56367,bittersweet,1447214055 +180607,56367,feel good movie,1447214045 +180607,56367,notable soundtrack,1447214047 +180607,56367,teenager,1447214038 +180607,56941,death,1447215698 +180607,56941,funny moments,1447215702 +180607,56941,romantic,1447215693 +180607,56941,romantic comedy,1447215708 +180607,56941,sad,1447215700 +180607,56941,self discovery,1447215692 +180607,65130,abortion,1447214548 +180607,65130,Bechdel Test:Pass,1447214574 +180607,65130,depressing,1447214579 +180607,65130,dreams,1447214558 +180607,65130,emptiness,1447214572 +180607,65130,freedom,1447214568 +180607,65130,infidelity,1447214553 +180607,65130,Kate Winslet,1447214550 +180607,65130,marriage,1447214555 +180607,65130,relationships,1447214582 +180607,65130,the american dream,1447214584 +180607,72011,cheating,1447214143 +180607,72011,infidelity,1447214134 +180607,72011,loneliness,1447214125 +180607,72011,love story,1447214139 +180607,72011,thoughtful,1447214131 +180607,72011,witty,1447214128 +180607,74324,autism,1447212679 +180607,74324,mental illness,1447212687 +180607,74324,true story,1447212684 +180607,78039,depressing,1447212845 +180607,78039,drama,1447212842 +180607,78039,emotional,1447212848 +180607,78039,painful,1447212850 +180607,78039,realism,1447212828 +180607,78039,Ryan Gosling,1447212826 +180607,78039,thought provoking,1447212831 +180607,78039,true to life,1447212835 +180607,88129,crime,1447215863 +180607,88129,great soundtrack,1447215884 +180607,88129,Los Angeles,1447215879 +180607,88129,minimalistic,1447215868 +180607,88129,Ryan Gosling,1447215882 +180607,88129,violence,1447215870 +180607,88129,visually appealing,1447215873 +180607,88179,Anne Hathaway,1447215462 +180607,88179,falling in love,1447215471 +180607,88179,friendship,1447215465 +180607,88179,romance,1447215463 +180607,88179,slice of life,1447215482 +180607,88179,Unexpected Ending,1447215480 +180607,91199,bittersweet,1447215291 +180607,91199,gay,1447215295 +180607,91199,romance,1447215302 +180607,94931,bittersweet,1447214421 +180607,94931,canada,1447214451 +180607,94931,love,1447214419 +180607,94931,real,1447214475 +180607,94931,Sarah Polley,1447214398 +180607,94931,seth rogan,1447214445 +180607,97921,cliche,1447214281 +180607,97921,dark humor,1447214273 +180607,97921,drama,1447214298 +180607,97921,loneliness,1447214277 +180607,97921,love,1447214296 +180607,97921,mental illness,1447214300 +180607,97921,predictable ending,1447214285 +180607,97921,romance,1447214275 +180607,98056,beautiful,1447213911 +180607,98056,death,1447213905 +180607,98056,French,1447213900 +180607,98056,Sad,1447213903 +180607,98056,weak ending,1447213921 +180607,102588,documentary,1447213543 +180607,102588,drama,1447213573 +180607,102588,family,1447213572 +180607,102588,love,1447213571 +180607,102588,real,1447213595 +180607,102588,real life,1447213545 +180607,102588,Sarah Polley,1447213542 +180607,104272,documentary,1453607591 +180607,105355,boring,1447214783 +180607,105355,lesbian,1447214707 +180607,105355,long,1447214736 +180607,105355,nudity (full frontal),1447214733 +180607,105355,slow,1447214716 +180607,105355,too long,1447214714 +180607,105355,unsimulated sex,1447214731 +180607,105355,useless sex scenes,1447214784 +180607,106920,beautiful,1447212408 +180607,106920,bittersweet,1447212403 +180607,106920,loneliness,1447212399 +180607,106920,sad,1447212415 +180607,111921,cancer,1447215796 +180607,111921,cheesy,1447215804 +180607,111921,chick flick,1447215809 +180607,111921,death,1447215821 +180607,111921,drama,1447215816 +180607,111921,romance,1447215797 +180607,111921,sad,1447215814 +180607,112290,childhood,1447246498 +180607,112290,Ethan Hawke,1447246491 +180607,112290,growing up,1447246489 +180607,112290,realism,1447246503 +180607,112290,Richard Linklater,1447246494 +180607,113244,documentary,1447246394 +180607,117176,biography,1447212915 +180607,117176,emotional,1447212917 +180607,117176,love,1447212881 +180607,117176,physics,1447212913 +180607,117176,romance,1447212887 +180607,117176,science,1447212919 +180607,117176,Stephen Hawking,1447212910 +180607,117176,True story,1447212882 +180607,117881,alzheimer's,1447213204 +180607,117881,Alzheimer's disease,1447213191 +180607,117881,beautiful,1447213207 +180607,117881,drama,1447213194 +180607,117881,family,1447213196 +180607,117881,Julianne Moore,1447213198 +180607,117881,moving,1447213210 +180607,117881,thought-provoking,1447213214 +180607,134248,Documentary,1447217225 +180607,134248,pornography,1447217228 +180607,134248,real life,1447217248 +180607,134248,Sex Workers,1447217223 +180607,137595,dancing,1447246310 +180607,137595,funny,1447246309 +180607,137595,sexy,1447246307 +180607,150856,crime,1453606272 +180607,150856,drama,1453606280 +180607,150856,investigation,1453606275 +180618,260,"action, scifi",1443327406 +180618,260,classic sci-fi,1443327367 +180618,1961,cinematography,1444572998 +180643,260,alien,1440602404 +180643,260,sci-fi,1440602397 +180658,527,Holocaust,1144487117 +180658,2501,aeronautics,1144486889 +180658,2955,boxing,1141014015 +180658,3307,movielens top pick,1150784564 +180658,4641,watch the credits,1148684717 +180658,4963,heist,1144487300 +180658,5398,boxing,1139272010 +180658,8341,Dickens,1141013499 +180658,8984,heist,1144487267 +180658,25825,lynching,1142982086 +180658,31467,boxing,1141013933 +180658,36527,mathematics,1144486830 +180658,37736,Dickens,1141013490 +180658,45499,watch the credits,1148684655 +180658,46530,comic book,1151551606 +180658,46530,superhero,1151551606 +180726,2028,World War II,1240538919 +180732,95309,romantic,1354763026 +180744,260,"sci-fi, future , fantasy",1441378758 +180758,17,hulu,1225601351 +180758,151,hulu,1225601287 +180758,246,hulu,1225600425 +180758,272,hulu,1225600790 +180758,281,hulu,1225601086 +180758,451,hulu,1225600147 +180758,527,mvlc,1269186771 +180758,600,hulu,1225600757 +180758,858,mvlc,1269181532 +180758,904,mvlc,1269186767 +180758,908,mvlc,1269181606 +180758,912,mvlc,1269181388 +180758,922,mvlc,1269181835 +180758,926,mvlc,1269181352 +180758,1203,littleton library,1269181206 +180758,1207,own,1269181784 +180758,1212,mvlc,1269181828 +180758,1221,mvlc,1269181546 +180758,1289,hulu,1225600666 +180758,1464,hulu,1225600730 +180758,1694,hulu,1273173147 +180758,1950,hulu,1225600450 +180758,1966,hulu,1225600846 +180758,2019,mvlc,1269181688 +180758,2517,hulu,1225599813 +180758,2594,hulu,1225601164 +180758,2677,hulu,1273173711 +180758,3022,mvlc,1269181477 +180758,3030,mvlc,1269181875 +180758,3062,hulu,1225600706 +180758,3091,hulu,1225600542 +180758,3271,hulu,1225601115 +180758,3271,mvlc,1269187174 +180758,3435,mvlc,1269181425 +180758,3727,hulu,1225601001 +180758,3949,hulu,1225601262 +180758,3993,hulu,1225601239 +180758,4339,hulu,1225601467 +180758,4339,mvlc,1269187708 +180758,4429,hulu,1225600891 +180758,4923,hulu,1225600358 +180758,4973,mvlc,1269181303 +180758,5008,mvlc,1269181825 +180758,5288,hulu,1273173221 +180758,5406,hulu,1225600003 +180758,5451,hulu,1225601214 +180758,5709,hulu,1225599458 +180758,5971,mvlc,1269181586 +180758,6458,hulu,1225599612 +180758,6978,hulu,1225601378 +180758,6990,hulu,1225600299 +180758,7013,hulu,1225601028 +180758,7123,hulu,1225600966 +180758,7171,hulu,1273173017 +180758,7346,hulu,1225603302 +180758,7460,hulu,1225599864 +180758,7618,hulu,1273173865 +180758,25835,hulu,1225599975 +180758,25856,hulu,1225601516 +180758,26155,hulu,1225600587 +180758,26324,mvlc,1269181973 +180758,26395,mvlc,1269186787 +180758,27002,mvlc,1269181911 +180758,27816,hulu,1225601311 +180758,30812,littleton library,1269181119 +180758,32074,hulu,1225600616 +180758,35347,hulu,1273173132 +180758,37855,mvlc,1269187071 +180758,39886,hulu,1225601053 +180758,39886,mvlc,1269182281 +180758,41724,mvlc,1269182312 +180758,42013,Passable,1150432435 +180758,42900,hulu,1273174101 +180758,44788,mvlc,1269187678 +180758,44974,mvlc,1269187448 +180758,51662,FIOS on demand,1207953326 +180758,52328,FIOS on demand,1207954012 +180758,53123,FIOS on demand,1207953875 +180758,53550,FIOS on demand,1207953937 +180758,53550,mvlc,1269187315 +180758,53996,FIOS on demand,1207954082 +180758,54259,FIOS on demand,1207954010 +180758,54745,FIOS on demand,1207953940 +180758,54745,mvlc,1269186871 +180758,54881,FIOS on demand,1207953758 +180758,54997,FIOS on demand,1207953335 +180758,55116,FIOS on demand,1207953636 +180758,55116,mvlc,1269187279 +180758,55176,FIOS on demand,1207953755 +180758,55176,mvlc,1269182127 +180758,55247,FIOS on demand,1207953756 +180758,55286,FIOS on demand,1207954072 +180758,55286,mvlc,1269187272 +180758,55363,FIOS on demand,1207953420 +180758,55765,FIOS on demand,1207953342 +180758,55820,FIOS on demand,1207953873 +180758,56152,FIOS on demand,1207953526 +180758,56174,FIOS on demand,1207953670 +180758,56885,mvlc,1269182180 +180758,57845,mvlc,1269182278 +180758,59141,mvlc,1269187208 +180758,59590,music,1243728508 +180758,60161,mvlc,1269187047 +180758,64034,mvlc,1269186901 +180758,71282,mvlc,1269182159 +180758,71462,mvlc,1269182011 +180758,72011,mvlc,1269182273 +180797,260,Intergalactic,1436057456 +180797,260,Star Wars,1436057461 +180797,79798,Gay,1436126800 +180797,79798,Teenage Years,1436126815 +180797,79798,Xavier Dolan,1436126806 +180797,117123,Race relations,1436057731 +180807,260,hero's journey,1431211809 +180807,260,Joseph Campbell,1431211851 +180829,500,Comedy,1237391877 +180831,4306,Cameron Diaz,1451197538 +180831,4306,witty,1451197529 +180864,2028,action,1422515779 +180864,2028,historical,1422515772 +180864,2028,history,1422515775 +180864,2028,war,1422515769 +180864,2028,World War II,1422515765 +180864,2028,wwii,1422515786 +180864,114060,crime,1422515749 +180864,114060,gambling,1422515740 +180864,114060,gangsters,1422515744 +180876,1206,rape,1399196672 +180876,93510,weed,1399216733 +180888,104374,british,1429316255 +180888,104374,romantic comedy,1429316255 +180888,104374,time travel,1429316255 +180900,59315,Marvel,1210217743 +180962,296,drugs,1426975036 +180962,296,exciting,1426975036 +180962,296,violent,1426975036 +180985,50,twist ending,1162676282 +180985,508,AIDs,1162676215 +180985,508,gay,1162676213 +180985,930,Alfred Hitchcock,1162676415 +180985,1225,music,1162676221 +180985,1225,true story,1162676226 +180985,4979,family,1162676377 +180985,38886,family,1162676346 +180985,44761,film noir,1162676324 +180985,46578,family drama,1162676266 +180985,46578,road trip,1162676268 +180987,48774,realistic action,1416606882 +180987,115622,low budget,1416606340 +180998,1214,dark,1450025990 +180998,1214,futuristic,1450025977 +180998,1214,space,1450025961 +180998,1214,space travel,1450025974 +180998,1214,suspense,1450025980 +180998,40815,dark,1450025906 +180998,40815,Magic,1450025901 +180998,71535,dark comedy,1450026339 +180998,71535,parody,1450026336 +180998,71535,zombies,1450026332 +180998,72378,apocalypse,1450025816 +180998,72378,disaster,1450025805 +180998,72378,sci-fi,1450025810 +180998,72998,beautiful scenery,1450025870 +180998,72998,futuristic,1450025852 +180998,72998,Sigourney Weaver,1450025860 +181007,260,adventure,1435914302 +181007,260,fantastic,1435914284 +181007,122882,apocalips,1435914801 +181007,122882,power,1435914801 +181007,122882,sense of life,1435914801 +181007,135861,"""bad cia""-- too simplistic",1436607848 +181007,135861,fantasy,1436607848 +181007,135861,jokes,1436607848 +181008,1207,courtroom drama,1272524391 +181008,1207,murder,1272524409 +181008,1207,Oscar (Best Actor),1272524384 +181008,1207,race issues,1272524378 +181008,1207,racism,1272524401 +181008,6333,adapted from:comic,1272524545 +181008,6333,based on comic,1272524541 +181008,6333,comic book,1272524506 +181008,6333,genetics,1272524498 +181008,6333,genocide,1272524495 +181008,6333,marvel,1272524491 +181008,6333,super-hero,1272524488 +181008,6333,superhero,1272524485 +181008,6333,violent,1272524533 +181008,59315,military,1272524571 +181012,318,hope,1446514408 +181012,51834,love,1446514428 +181063,186,funny,1143958747 +181082,260,EPIC,1439748301 +181082,260,philosophy,1439748309 +181082,2054,adventure,1440352661 +181082,41569,adventure,1440352676 +181082,72998,3d,1440352701 +181082,72998,sci-fi,1440352698 +181082,72998,visually stunning,1440352705 +181083,1784,classic,1142082878 +181083,42723,Disgusting,1142011245 +181089,1754,Denzel Washington,1309681909 +181089,7254,alternate reality,1309681956 +181089,7254,intense,1309681953 +181089,7254,psychology,1309681939 +181089,7254,time travel,1309681949 +181089,7254,twist ending,1309681943 +181089,7445,Denzel Washington,1309681862 +181089,7445,kidnapping,1309681867 +181089,7445,redemption,1309681874 +181089,7445,revenge,1309681870 +181089,8529,Steven Spielberg,1309686025 +181089,8529,Tom Hanks,1309686023 +181089,27801,martial arts,1309682749 +181089,27801,Tony Jaa,1309682740 +181089,33437,Jet Li,1309682727 +181089,33660,boxing,1309686001 +181089,33660,boxing drama,1309686008 +181089,33660,Russell Crowe,1309686014 +181089,48304,Mel Gibson,1309682838 +181089,49530,Leonardo DiCaprio,1309682830 +181089,57368,"""found footage""",1309682166 +181089,57368,city under attack,1309682171 +181089,57368,giant monster,1309682168 +181089,57368,mockumentary,1309682174 +181089,57368,New York City,1309682164 +181089,57368,Schizo-cam,1309682185 +181089,57368,unsteady-cam,1309682178 +181089,64614,Clint Eastwood,1309682864 +181089,64614,redemption,1309682872 +181089,64614,revenge,1309682867 +181089,79132,alternate reality,1309675794 +181089,79132,drama,1309675814 +181089,79132,ensemble cast,1309675818 +181089,79132,surreal,1309675801 +181089,79132,suspense,1309675827 +181089,79132,visually appealing,1309675809 +181089,81788,crime drama,1309682245 +181089,81788,Russell Crowe,1309682247 +181089,81788,suspense,1309682251 +181089,81845,Oscar (Best Picture),1309686051 +181089,84152,Bradley Cooper,1309681975 +181089,84601,conspiracy,1309681798 +181089,84601,Liam Neeson,1309681763 +181089,85401,Rainn Wilson,1311458553 +181089,85401,superhero,1311458558 +181100,93840,Clever,1340388832 +181100,93840,funny,1340388832 +181100,93840,great twists.,1340388832 +181110,19,awesome,1432405488 +181110,19,comedy,1432405477 +181110,19,detective,1432405476 +181110,19,over the top,1432405480 +181110,19,silly fun,1432405483 +181110,31,awesome,1431716049 +181110,31,dead,1431716191 +181110,31,death,1431716188 +181110,31,douchebags,1431716146 +181110,31,drama,1431716075 +181110,31,education,1431716163 +181110,31,Emilio!,1431716111 +181110,31,gangsters,1431716155 +181110,31,high school,1431716054 +181110,31,kinda scary,1431716204 +181110,31,nigga,1431716057 +181110,31,poetry,1431716159 +181110,31,professor,1431716094 +181110,31,stupid,1431716064 +181110,31,teacher,1431716097 +181110,31,touching,1431716046 +181110,231,awesome,1431714399 +181110,231,comedy,1431714421 +181110,231,jim carrey,1431714409 +181110,231,very funny,1431714425 +181110,260,action,1431713478 +181110,260,space,1431713470 +181110,318,atmospheric,1432493605 +181110,318,awesome,1432493668 +181110,318,crime,1432493644 +181110,318,drama,1432493634 +181110,318,friendship,1432493589 +181110,318,great acting,1432493638 +181110,318,great ending,1432493584 +181110,318,great performances,1432493650 +181110,318,inspirational,1432493593 +181110,318,Morgan Freeman,1432493575 +181110,318,powerful ending,1432493662 +181110,318,prison,1432493580 +181110,318,prison escape,1432493602 +181110,318,psychology,1432493660 +181110,318,revenge,1432493641 +181110,318,terrible life conditions,1432493711 +181110,318,Tim Robbins,1432493625 +181110,318,touching,1432493683 +181110,318,twist ending,1432493578 +181110,318,violence,1432493678 +181110,344,awesome,1432405397 +181110,344,comedy,1432405390 +181110,344,goofy,1432405385 +181110,344,hilarious,1432405400 +181110,344,Jim Carrey,1432405381 +181110,344,sex jokes,1432405393 +181110,344,silly fun,1432405388 +181110,344,very funny,1432405404 +181110,367,awesome,1431716441 +181110,367,cartoonish,1431716492 +181110,367,comedy,1431716430 +181110,367,dark comedy,1431716435 +181110,367,funny,1431716445 +181110,367,goofy,1431716488 +181110,367,hilarious,1431716459 +181110,367,jim carrey,1431716425 +181110,367,laugh till tears,1431716455 +181110,367,mask,1431716466 +181110,367,norway,1432405124 +181110,367,sex jokes,1431716507 +181110,367,wtf,1432405124 +181110,2706,comedy,1432727343 +181110,2706,γαμήσια πίτας,1432720290 +181110,3147,drama,1432405298 +181110,3147,nigga,1432405278 +181110,3147,racism,1432405282 +181110,3147,social commentary,1432405274 +181110,3147,touching,1432405296 +181110,4018,awesome,1432753951 +181110,4018,Mel Gibson,1432753928 +181110,4018,naughty daughter,1432753958 +181110,4018,telepathy,1432753943 +181110,4018,thoughts,1432753941 +181110,4018,women,1432753927 +181110,4226,die bitch,1432719915 +181110,4226,motherfucker,1432720003 +181110,4226,shit,1432719970 +181110,4226,shitty,1432719980 +181110,4226,stupid beginning,1432719952 +181110,4226,the lead role looks like turd,1432720092 +181110,4226,weirdo beginning,1432719959 +181110,4226,whore,1432719936 +181110,4226,wtf,1432719907 +181110,4226,μου την έσπασε η αρχή,1432720025 +181110,4226,ο πρωταγωνιστής μοιάζει με κουράδα,1432720078 +181110,4226,πούστης,1432720009 +181110,4226,πουτάνα,1432719939 +181110,4226,σκατά,1432719977 +181110,4226,τους γαμάω τη μάνα στα 12,1432720033 +181110,4226,ψωφόκωλος,1432719922 +181110,4896,awesome,1431714752 +181110,4896,hogwarts,1431714774 +181110,4896,Magic,1431714758 +181110,4896,Wizards,1431714765 +181110,5299,comedy,1432754161 +181110,5299,culture clash,1432754157 +181110,5299,family,1432754164 +181110,5299,funny,1432754156 +181110,5299,greek,1432754178 +181110,5299,racism,1432754176 +181110,5299,wedding,1432754153 +181110,5980,awesome,1431715795 +181110,5980,Christmas,1431715813 +181110,5980,creepy,1431715787 +181110,5980,frightening,1431715805 +181110,5980,psychopath,1431715821 +181110,5980,scary,1431715799 +181110,7360,awesome,1434572683 +181110,7360,complicated,1434572689 +181110,7360,frightening,1434572668 +181110,7360,fun,1434572678 +181110,7360,horror,1434572643 +181110,7360,scary,1434572662 +181110,7360,zombie,1434572655 +181110,7360,zombies,1434572648 +181110,8643,awesome,1432405810 +181110,8643,cinderella,1432405820 +181110,8643,Drama,1432405797 +181110,8643,romance,1432405803 +181110,8643,stepmom,1432405817 +181110,8643,untalented sisters,1432405831 +181110,27368,adventurus,1431716664 +181110,27368,awesome,1431716623 +181110,27368,beating,1431716639 +181110,27368,brilliant,1431716657 +181110,27368,caesar,1431716709 +181110,27368,comedy,1431716660 +181110,27368,construction,1431716677 +181110,27368,cruel,1431716724 +181110,27368,druid,1431716728 +181110,27368,Egypt,1431716646 +181110,27368,fun,1431716636 +181110,27368,funny,1431716634 +181110,27368,Gaul,1431716655 +181110,27368,hilarious,1431716628 +181110,27368,roman soldiers,1431716738 +181110,27368,rome,1431716740 +181110,64969,Jim carrey,1432405603 +181110,69406,Alaska,1431717200 +181110,69406,bad boss,1431717213 +181110,69406,bitch,1431717207 +181110,69406,happy ending,1431717197 +181110,69406,Sandra Bullock,1431717190 +181110,72641,action,1431717023 +181110,72641,awesome,1431717060 +181110,72641,drama,1431717033 +181110,72641,family,1431717056 +181110,72641,feel good,1431717068 +181110,72641,inspiring,1431717082 +181110,72641,nigga,1431717043 +181110,72641,poor,1431717113 +181110,72641,rough life,1431717111 +181110,72641,Sandra Bullock,1431717003 +181110,72641,touching,1431717017 +181110,73804,mediocre,1431716798 +181110,73804,not funny,1431716815 +181110,82169,adventurus,1431715670 +181110,82169,alternate reality,1431715732 +181110,82169,awesome,1431715662 +181110,82169,dragons,1431715676 +181110,82169,magic,1431715681 +181110,82169,Narnia,1431715724 +181110,82169,ships,1431715697 +181110,82169,talking animals,1431715738 +181110,82169,voyage,1431715702 +181110,94677,adventure,1431717482 +181110,94677,adventurus,1431717487 +181110,94677,aladeen madafaka,1431717401 +181110,94677,awesome,1431717491 +181110,94677,dead,1431717475 +181110,94677,death,1431717477 +181110,94677,ethics,1431717428 +181110,94677,funny,1431717406 +181110,94677,hairy potter,1431717433 +181110,94677,harry potter,1431717418 +181110,94677,hilarious,1431717412 +181110,94677,political satire,1431717382 +181110,94677,satire,1431717378 +181110,94677,Sex Comedy,1431717425 +181110,94677,usa,1431717460 +181110,94677,wadiya,1431717450 +181110,103228,awsome,1432931631 +181110,103228,disaster,1432931644 +181110,103228,suck Earth's dick good,1432931684 +181110,122884,demon,1434616974 +181110,122884,devil,1434616975 +181110,122884,frightening,1434616957 +181110,122884,scary,1434616951 +181110,122884,sidekick,1434616962 +181110,122884,spooky,1434616949 +181135,5992,very good!,1144913525 +181135,45447,Paul Bettany,1148031319 +181138,912,classic,1139692868 +181138,2019,Japan,1139692925 +181138,2019,Kurosawa,1139692928 +181138,2019,samurai,1139692923 +181148,260,"action, scifi",1439304984 +181148,260,classic sci-fi,1439304977 +181148,260,space epic,1439304947 +181177,527,classic,1200637699 +181177,5799,classic,1200637674 +181177,51931,adam sandler,1195008856 +181177,56367,excellent script,1202859574 +181204,110,action,1446071019 +181204,81591,drama,1446070923 +181204,134130,Space,1446070979 +181253,2232,psychology,1360879794 +181253,2232,twist,1360879808 +181253,6291,Depressing,1440760704 +181253,6291,social commentary,1440760690 +181253,100306,murder,1438482664 +181253,100306,realism,1438482664 +181253,100306,violent,1438482664 +181295,94864,life in space,1361290532 +181295,94864,science,1361290543 +181302,48394,magical realism,1386971699 +181302,48394,violent disturbing,1386971699 +181338,260,fantasy,1442464476 +181338,260,sci-fi,1442464471 +181395,260,fantasy,1433182518 +181395,260,space,1433182526 +181401,1,3D,1385395898 +181401,1,children,1385395866 +181401,7,Harrison Ford,1452645752 +181401,11,Romance,1290451589 +181401,15,pirates,1385400805 +181401,15,sexuality,1385400892 +181401,15,treasure,1385400806 +181401,17,19th century,1385396964 +181401,17,Alan Rickman,1290450304 +181401,17,based on a book,1385396968 +181401,17,British,1385396971 +181401,17,costume drama,1385396975 +181401,17,Jane Austen,1290450203 +181401,17,Period,1290450295 +181401,17,Regency England,1385396998 +181401,17,romantic,1385396993 +181401,32,post-apocalyptic,1385395056 +181401,70,gore,1385398858 +181401,70,mexico,1385398876 +181401,70,Nudity (Topless - Brief),1385398861 +181401,70,Quentin Tarantino,1385398863 +181401,70,splatter,1385398866 +181401,70,Tarantino,1385398868 +181401,70,violence,1385398873 +181401,110,england,1385395943 +181401,110,historical,1385395960 +181401,110,medieval,1385395956 +181401,110,Nudity (Topless),1385395952 +181401,110,Oscar (Best Cinematography),1385395949 +181401,150,based on a true story,1385395680 +181401,150,catastrophe,1385395686 +181401,150,disaster,1385395690 +181401,150,space,1385395696 +181401,150,suspense,1385395700 +181401,150,Tom Hanks,1385395716 +181401,160,jungle,1385419832 +181401,161,submarine,1290455101 +181401,161,Viggo Mortensen,1290455106 +181401,175,controversial,1385423999 +181401,175,indecent,1385424027 +181401,175,Nudity (Full Frontal),1385423991 +181401,175,youth gone wild,1385424073 +181401,230,child abuse,1385400176 +181401,230,incest,1385400177 +181401,231,cult film,1385401017 +181401,231,not funny,1385401029 +181401,249,classical music,1290450836 +181401,249,Gary Oldman,1290450849 +181401,260,adventure,1385396004 +181401,260,fantasy,1385395999 +181401,260,sci-fi,1385395995 +181401,260,space,1385395990 +181401,296,assassin,1385396478 +181401,296,Black comedy,1385396483 +181401,296,dark comedy,1385396490 +181401,296,Mafia,1385396494 +181401,296,organized crime,1385396496 +181401,296,Quentin Tarantino,1385396502 +181401,296,violence,1385396374 +181401,302,costume drama,1453032801 +181401,302,Nudity (Full Frontal),1453032795 +181401,308,Three Colors trilogy,1385571092 +181401,308,Three Colours trilogy,1385571098 +181401,318,prison escape,1385396146 +181401,318,sexuality,1385396132 +181401,318,twist ending,1385396158 +181401,318,violence,1385396130 +181401,337,based on a book,1385396785 +181401,337,bittersweet,1385396780 +181401,337,disability,1385396798 +181401,337,mental illness,1385396803 +181401,337,small town,1385396813 +181401,347,BDSM,1385147215 +181401,347,disturbing,1385147213 +181401,347,Nudity (Topless - Notable),1385147206 +181401,347,Nudity (Topless),1385147209 +181401,353,gothic,1252537996 +181401,356,bittersweet,1385396227 +181401,356,inspirational,1385396248 +181401,356,nudity,1385396347 +181401,356,Tom Hanks,1385396233 +181401,364,2D animation,1385394325 +181401,364,Children,1385394386 +181401,376,scenic,1255972647 +181401,377,claustrophobic,1385394654 +181401,377,Keanu Reeves,1385394641 +181401,377,Sandra Bullock,1385394632 +181401,377,suspense,1385394627 +181401,457,chase,1438455963 +181401,457,crime,1385395602 +181401,457,Harrison Ford,1290447506 +181401,457,suspense,1385395622 +181401,457,violence,1385395638 +181401,480,adventure,1290454740 +181401,480,dinosaurs,1290454743 +181401,480,Suspense,1385396038 +181401,497,beautiful,1385397200 +181401,497,English,1385397204 +181401,497,feel good movie,1385397212 +181401,497,Shakespeare,1385397191 +181401,497,witty,1385397217 +181401,506,author:Virginia Woolf,1315752394 +181401,506,feminism,1315751579 +181401,506,gender identity,1385146911 +181401,506,Nudity (Full Frontal),1385146887 +181401,506,Tilda Swinton,1315751528 +181401,506,transgender,1315750979 +181401,508,gay,1411162353 +181401,508,Gay Lead Character,1411162356 +181401,508,homosexuality,1411162370 +181401,508,lgbt,1411162361 +181401,508,queer,1411162364 +181401,509,19th century,1385399423 +181401,509,adultery,1385399414 +181401,509,atmospheric,1385399427 +181401,509,erotic,1385399432 +181401,509,Nudity (Full Frontal - Notable),1385399440 +181401,509,Nudity (Topless),1385399442 +181401,509,sexuality,1385399448 +181401,527,based on a true story,1385395254 +181401,527,black and white,1385395267 +181401,527,history,1385395283 +181401,527,Holocaust,1385395277 +181401,527,Nazis,1385395294 +181401,527,nudity,1385395406 +181401,527,true story,1385395257 +181401,531,beautifully filmed,1385140229 +181401,531,England,1255972825 +181401,531,lyrical,1385140219 +181401,531,Maggie Smith,1385140205 +181401,531,mansion,1385140199 +181401,534,beautifully written and acted,1385396941 +181401,534,biography,1385396935 +181401,534,C.S. Lewis,1385396927 +181401,535,Nudity (Full Frontal - Notable),1385570990 +181401,535,Nudity (Full Frontal),1385570993 +181401,539,Romance,1290452025 +181401,587,Demi Moore,1385404930 +181401,587,Patrick Swayze,1385404938 +181401,588,2D animation,1385394886 +181401,588,children,1385394897 +181401,588,fairy tale,1385394902 +181401,588,good versus evil,1385394915 +181401,588,middle east,1385394962 +181401,589,apocalypse,1385395749 +181401,589,Arnold Schwarzenegger,1385395819 +181401,589,computers,1385395797 +181401,589,dystopia,1385395780 +181401,589,sci-fi,1385395737 +181401,589,Suspense,1385395739 +181401,589,violence,1385395743 +181401,590,bittersweet,1385395157 +181401,590,historical,1385395230 +181401,590,Oscar (Best Cinematography),1385395204 +181401,590,western,1385395181 +181401,593,disturbing,1385396184 +181401,593,suspense,1385396204 +181401,594,2D animation,1290453889 +181401,594,fairy tale,1290453915 +181401,595,2D animation,1290453790 +181401,595,animation,1242855398 +181401,595,beautiful,1290453654 +181401,595,fairy tale,1290453804 +181401,597,romance,1290451922 +181401,736,disaster,1385399217 +181401,736,tornados,1385399229 +181401,745,british,1385398121 +181401,745,claymation,1385398124 +181401,745,short,1385398133 +181401,745,stop motion,1385398136 +181401,745,Wallace & Gromit,1385398138 +181401,745,witty,1385398140 +181401,780,adventure,1385395458 +181401,780,alien invasion,1385395490 +181401,780,apocalypse,1385395464 +181401,780,conspiracy theory,1385395529 +181401,780,sci-fi,1385395454 +181401,788,Nudity (Full Frontal - Brief),1385406178 +181401,858,crime,1385394484 +181401,858,Mafia,1385394514 +181401,858,Nudity (Topless),1385394419 +181401,858,organized crime,1385394535 +181401,858,violence,1385394429 +181401,904,James Stewart,1385397047 +181401,904,mystery,1385397058 +181401,904,suspense,1385397050 +181401,904,tense,1385397052 +181401,912,black and white,1385141203 +181401,919,colourful,1290454633 +181401,919,fantasy,1290454616 +181401,919,musical,1290454620 +181401,990,nudity,1385401242 +181401,1022,2D animation,1402558091 +181401,1022,fairy tale,1402558120 +181401,1032,2D animation,1385399755 +181401,1032,fairy tale,1385399764 +181401,1059,Amazing Cinematography,1385397940 +181401,1059,beautiful,1385397944 +181401,1059,cinematography,1385397938 +181401,1059,romance,1290452774 +181401,1059,shakespeare,1290452776 +181401,1148,british,1385398103 +181401,1148,Clay Animation,1385398100 +181401,1148,claymation,1385398093 +181401,1148,stop motion,1385398086 +181401,1148,Wallace & Gromit,1385398079 +181401,1148,witty,1385398082 +181401,1196,adventure,1385395007 +181401,1196,fantasy,1385395012 +181401,1196,sci-fi,1385395015 +181401,1196,space,1385395023 +181401,1198,adventure,1385394760 +181401,1198,archaeology,1385394757 +181401,1198,treasure,1385394785 +181401,1198,treasure hunt,1385394790 +181401,1210,adventure,1385395555 +181401,1210,fantasy,1385395560 +181401,1210,sci-fi,1385395565 +181401,1210,space,1385395570 +181401,1225,18th century,1385397774 +181401,1225,beautiful,1385397781 +181401,1225,biography,1385397788 +181401,1225,classical music,1385397790 +181401,1225,drama,1385397797 +181401,1225,history,1385397859 +181401,1225,Nudity (Topless),1385397852 +181401,1225,Oscar (Best Costume Design),1385397865 +181401,1246,bittersweet,1290452557 +181401,1246,boarding school,1385397696 +181401,1246,drama,1385397701 +181401,1246,education,1385397724 +181401,1246,English literature,1385397703 +181401,1246,friendship,1385397731 +181401,1246,inspirational,1385397709 +181401,1246,poetry,1385397716 +181401,1246,school drama,1385397736 +181401,1246,Shakespeare,1385397713 +181401,1266,PROSTITUTES,1385571447 +181401,1266,prostitution,1385571457 +181401,1266,sexuality,1385571461 +181401,1268,Nudity (Topless - Notable),1385569977 +181401,1268,Nudity (Topless),1385569979 +181401,1270,adventure,1385394677 +181401,1270,teen,1385394724 +181401,1320,rape,1385410460 +181401,1320,sci-fi,1385410528 +181401,1320,survival,1385410455 +181401,1320,suspense,1385410441 +181401,1333,suspense,1385419206 +181401,1357,classical music,1290451986 +181401,1357,insanity,1385396873 +181401,1357,mental illness,1385396878 +181401,1357,musicians,1385396884 +181401,1357,Nudity (Topless - Brief),1385396886 +181401,1357,piano,1290451995 +181401,1357,touching,1385396899 +181401,1357,true story,1385396894 +181401,1485,adultery,1385424250 +181401,1485,BREAKUPS AND DIVORCES,1385424265 +181401,1485,divorce,1385424258 +181401,1485,sexual humor,1385424372 +181401,1517,Mike Myers,1385140670 +181401,1556,bad sequel,1385400397 +181401,1556,Sandra Bullock,1385400387 +181401,1562,George Clooney,1385402628 +181401,1569,Cameron Diaz,1385569528 +181401,1587,Nudity (Topless),1385147676 +181401,1597,conspiracy,1404062744 +181401,1608,patriotic,1385401990 +181401,1608,terrorism,1385401998 +181401,1665,English,1385411693 +181401,1665,Rowan Atkinson,1385411700 +181401,1673,homosexuality,1385147917 +181401,1673,Nudity (Full Frontal - Notable),1385147920 +181401,1673,Nudity (Full Frontal),1385147924 +181401,1673,Nudity (Topless - Notable),1385147959 +181401,1673,Porno Industry,1385147938 +181401,1673,pornography,1385147935 +181401,1704,genius,1290455194 +181401,1721,atmospheric,1385398272 +181401,1721,based on a true story,1385398278 +181401,1721,bittersweet,1290452827 +181401,1721,disaster,1290452834 +181401,1721,drama,1385398283 +181401,1721,historical,1385398287 +181401,1721,History,1385398297 +181401,1721,Nudity (Topless - Notable),1385398290 +181401,1721,Nudity (Topless),1385398269 +181401,1721,Oscar (Best Cinematography),1385398302 +181401,1721,romance,1290452837 +181401,1721,survival,1385398312 +181401,1876,apocalypse,1385420135 +181401,1876,astronomy,1385420138 +181401,1876,catastrophe,1385420197 +181401,1876,natural disaster,1385420153 +181401,1876,sci-fi,1385420151 +181401,1881,2D animation,1385569888 +181401,1894,adventure,1385570812 +181401,1894,island,1385570798 +181401,1894,stranded,1385570806 +181401,1947,musical,1290471837 +181401,1965,Nudity (Topless),1385149001 +181401,1967,Adventure,1290450574 +181401,1967,fantasy,1290450582 +181401,1973,Nudity (Topless - Brief),1385401093 +181401,1974,Nudity (Topless - Brief),1385422600 +181401,1975,Nudity (Full Frontal),1399903618 +181401,1976,nudity,1399903504 +181401,1977,nudity,1399903602 +181401,1978,nudity,1399990802 +181401,1992,chuckie,1385400517 +181401,1992,violence,1385400633 +181401,1997,controversial,1385140529 +181401,1997,demons,1385140482 +181401,1997,satanism,1385140488 +181401,2000,nudity,1385424153 +181401,2000,Nudity (Topless),1385424145 +181401,2000,torture,1385424150 +181401,2001,Nudity (Topless),1385424191 +181401,2001,violence,1385424183 +181401,2011,1980s,1385402244 +181401,2011,adventure,1385402248 +181401,2054,adventure,1290454494 +181401,2054,fantasy,1290454499 +181401,2054,miniaturization,1385140286 +181401,2080,2D animation,1290453988 +181401,2080,romance,1290453985 +181401,2081,2D animation,1290453839 +181401,2081,mermaid,1290453854 +181401,2081,ocean,1290452355 +181401,2093,adventure,1290454708 +181401,2093,dark fantasy,1385140330 +181401,2093,fantasy,1290454682 +181401,2096,2D animation,1290454074 +181401,2096,fairy tale,1290454080 +181401,2122,small town,1385419296 +181401,2126,sexuality,1385570785 +181401,2139,2D animation,1290452498 +181401,2139,atmospheric,1290452517 +181401,2139,fantasy,1290452522 +181401,2140,dark fantasy,1385420038 +181401,2140,fantasy,1385420048 +181401,2140,fantasy world,1385420050 +181401,2140,good vs evil,1385420054 +181401,2143,adventure,1290451359 +181401,2143,fantasy,1290451384 +181401,2144,Nudity (Topless),1388253543 +181401,2174,Michael Keaton,1385411597 +181401,2328,mysoginistic,1385398769 +181401,2328,Nudity (Rear),1385398662 +181401,2328,prostitution,1385398716 +181401,2334,jihad,1385399850 +181401,2334,R,1385399839 +181401,2335,Adam Sandler,1385401626 +181401,2335,American football,1385401627 +181401,2335,sport:American football,1385401616 +181401,2336,costume drama,1290454325 +181401,2353,conspiracy theory,1402602589 +181401,2353,thriller,1402602578 +181401,2366,Nudity (Topless - Brief),1385405720 +181401,2370,Jungle,1286720938 +181401,2396,England,1290454439 +181401,2396,romance,1290454377 +181401,2396,Shakespeare,1290454378 +181401,2437,biography,1385408201 +181401,2437,gay,1385408130 +181401,2437,Gay Lead Character,1385408133 +181401,2437,glbt,1385408183 +181401,2437,queer,1385408188 +181401,2437,sexuality,1385408295 +181401,2448,gore,1385401646 +181401,2455,gruesome,1385422654 +181401,2455,Jeff Goldblum,1385422630 +181401,2455,mad scientist,1385422647 +181401,2455,Nudity (Topless - Brief),1385422633 +181401,2455,sci-fi,1385422638 +181401,2455,tense,1385422640 +181401,2571,post-apocalyptic,1385395109 +181401,2571,sci-fi,1385395114 +181401,2724,small town,1385570222 +181401,2762,suspense,1385394261 +181401,2762,twist ending,1385394255 +181401,2827,sexuality,1385411473 +181401,2858,black comedy,1385410868 +181401,2858,dark comedy,1385410871 +181401,2858,sexuality,1385410884 +181401,2858,violence,1385410827 +181401,2876,2D animation,1385571043 +181401,2949,007,1385420795 +181401,2949,007 (series),1385420805 +181401,2949,Bond,1385420803 +181401,2949,james bond,1385421518 +181401,2976,Didn't finish,1385402998 +181401,2976,Martin Scorsese,1385403013 +181401,2976,prostitution,1385403079 +181401,2993,James Bond,1385571318 +181401,2993,nudity,1385571315 +181401,3079,English,1290449713 +181401,3079,Jane Austen,1290449615 +181401,3114,3D,1385398236 +181401,3114,computer animation,1385398232 +181401,3148,Incest,1385148150 +181401,3148,Nudity (Rear),1385148148 +181401,3148,Nudity (Topless - Brief),1385148145 +181401,3175,sci-fi,1405270343 +181401,3249,Nudity (Topless - Brief),1385405005 +181401,3249,Nudity (Topless),1385405004 +181401,3258,Nudity (Rear),1385404304 +181401,3258,plastic surgery,1385404313 +181401,3306,Charles Chaplin,1385563361 +181401,3328,hip hop,1385399156 +181401,3328,mafia,1385399167 +181401,3347,Alaska,1379764990 +181401,3347,visually appealing,1379765013 +181401,3355,bad ending,1385399358 +181401,3355,Mystery,1385399348 +181401,3355,Nudity (Rear),1385399325 +181401,3355,Nudity (Topless),1385399337 +181401,3355,satanism,1385399335 +181401,3418,car chase,1385398349 +181401,3418,nudity,1385398397 +181401,3418,rape,1385398333 +181401,3418,violence,1385398340 +181401,3489,fairy tale,1290454996 +181401,3535,Nudity (Topless),1385140631 +181401,3535,serial killer,1385140639 +181401,3535,violence,1385140646 +181401,3555,submarine,1290449895 +181401,3565,small town,1385408024 +181401,3565,teen pregnancy,1385408020 +181401,3565,teenage pregnancy,1385408013 +181401,3755,disaster,1385406834 +181401,3755,ocean,1385406880 +181401,3755,profanity,1385406869 +181401,3798,infidelity,1385571583 +181401,3826,Nudity (Topless - Notable),1385148208 +181401,3826,Nudity (Topless),1385148205 +181401,3826,rape,1385148201 +181401,3826,Sexualized violence,1385148194 +181401,3897,Nudity (Topless),1437997365 +181401,3973,Nudity (Topless),1385400416 +181401,4005,007,1385424517 +181401,4005,007 (series),1385424529 +181401,4005,bond,1385424527 +181401,4005,England,1385424538 +181401,4005,James Bond,1385424525 +181401,4005,nudity,1385424568 +181401,4005,Timothy Dalton,1385424532 +181401,4014,based on book,1385397670 +181401,4014,feel-good,1385397659 +181401,4014,Johnny Depp,1290449510 +181401,4014,Nudity (Topless - Brief),1385397606 +181401,4014,small town,1385397604 +181401,4054,ballet,1452537586 +181401,4054,dancing,1452537610 +181401,4054,hip hop,1452537595 +181401,4054,Julia Stiles,1452538232 +181401,4105,Nudity (Topless - Brief),1385148629 +181401,4105,rape,1385148624 +181401,4105,splatter,1385148793 +181401,4142,apocalypse,1385424112 +181401,4142,bible,1385424115 +181401,4142,Biblical,1385424117 +181401,4142,christian,1385424120 +181401,4142,christianity,1379960607 +181401,4142,Jesus,1385424124 +181401,4142,Salvation,1385424131 +181401,4159,R,1385410345 +181401,4159,sexuality,1385410323 +181401,4246,British,1385140377 +181401,4246,Colin Firth,1290450457 +181401,4246,Jane Austen,1385140392 +181401,4285,sexuality,1385404598 +181401,4308,musical,1290454863 +181401,4313,Johnny Depp,1333832576 +181401,4355,Nudity (Rear),1385410004 +181401,4355,Nudity (Topless),1385410007 +181401,4638,adventure,1385423879 +181401,4638,dinosaurs,1385423876 +181401,4661,erotic thriller,1385407326 +181401,4661,nudity,1385407374 +181401,4718,Notable Nudity,1385147825 +181401,4718,Nudity (Topless),1385147832 +181401,4718,sexuality,1385147827 +181401,4720,atmospheric,1412606607 +181401,4720,gothic,1412606611 +181401,4745,sexuality,1385400072 +181401,4745,tacky,1385399992 +181401,4786,sexuality,1385406038 +181401,4896,Adventure,1290452878 +181401,4896,fantasy,1290452885 +181401,4976,disability,1385423401 +181401,4976,Nudity (Full Frontal - Notable),1385423385 +181401,4976,Nudity (Full Frontal),1385423388 +181401,4976,Nudity (Topless - Notable),1385423391 +181401,4993,adventure,1385396723 +181401,4993,atmospheric,1385396725 +181401,4993,based on a book,1385396727 +181401,4993,beautifully filmed,1385396730 +181401,4993,fantasy,1242856222 +181401,4993,high fantasy,1385396738 +181401,4993,Oscar (Best Cinematography),1385396743 +181401,4993,Viggo Mortensen,1242856222 +181401,5025,Jack Black,1385406970 +181401,5025,profanity,1385406950 +181401,5025,sexuality,1385407028 +181401,5106,britney spears,1385400719 +181401,5106,sexuality,1385400786 +181401,5151,Notable Nudity,1385401724 +181401,5151,Nudity (Topless),1385401726 +181401,5151,R,1385401719 +181401,5269,erotic,1385140553 +181401,5269,incest,1385140602 +181401,5269,Nudity (Topless),1385140559 +181401,5269,sex scenes,1385140565 +181401,5269,sexual,1385140580 +181401,5269,sexuality,1385140569 +181401,5279,19th century,1385393193 +181401,5279,feminism,1385393250 +181401,5297,adultery,1385403773 +181401,5297,sexuality,1385403785 +181401,5313,sexuality,1385570695 +181401,5323,sex,1401994820 +181401,5364,adultery,1385407958 +181401,5364,erotic,1385407961 +181401,5364,infidelity,1385407967 +181401,5364,lust,1385407972 +181401,5364,Nudity (Topless - Notable),1385407975 +181401,5364,Nudity (Topless),1385407978 +181401,5364,Richard Gere,1385407993 +181401,5364,sensual,1385407989 +181401,5364,sex scenes,1385407980 +181401,5364,sexy,1385407982 +181401,5459,crude humor,1402358576 +181401,5528,Nudity (Topless),1385147532 +181401,5528,serial killer,1385147542 +181401,5646,Colin Firth,1290047988 +181401,5809,Antonio Banderas,1385399582 +181401,5809,Nudity (Full Frontal - Notable),1385399588 +181401,5809,Nudity (Full Frontal),1385399591 +181401,5816,adventure,1290453566 +181401,5816,Alan Rickman,1290453552 +181401,5816,fantasy,1290453529 +181401,5832,apocalypse,1385405904 +181401,5832,Biblical,1385405906 +181401,5832,christian,1385405910 +181401,5832,Christianity,1379960557 +181401,5832,Jesus,1385405917 +181401,5832,religion,1385405921 +181401,5832,salvation,1385405924 +181401,5841,island,1385407167 +181401,5841,Nudity (Topless),1385407164 +181401,5903,Christian Bale,1312331654 +181401,5903,post-apocalyptic,1312331662 +181401,5952,adventure,1385397277 +181401,5952,atmospheric,1385397279 +181401,5952,based on a book,1385397285 +181401,5952,fantasy,1385397287 +181401,5952,fantasy world,1385397290 +181401,5952,high fantasy,1385397292 +181401,5952,scenic,1385397297 +181401,5956,Cameron Diaz,1385404614 +181401,5956,gangsters,1385404892 +181401,5956,gay,1385404693 +181401,5956,Martin Scorsese,1385404623 +181401,5956,Nudity (Topless - Brief),1385404627 +181401,5956,Nudity (Topless),1385404631 +181401,5956,PROSTITUTES,1385404882 +181401,5956,violent,1385404635 +181401,5957,Hugh Grant,1290447938 +181401,5995,Adrien Brody,1290450875 +181401,5995,beautiful,1385147346 +181401,5995,classical music,1290450881 +181401,5995,historical,1385147327 +181401,5995,true story,1385147301 +181401,6006,Ashton Kutcher,1385405742 +181401,6006,sexuality,1385405827 +181401,6058,gore,1385401066 +181401,6058,gory,1385401068 +181401,6058,Nudity (Topless),1385401052 +181401,6058,sadistic,1385401071 +181401,6157,heroine in tight suit,1385404095 +181401,6270,visually appealing,1385410690 +181401,6281,prostitution,1385569781 +181401,6367,feminist,1385420561 +181401,6367,lies,1385420573 +181401,6377,ocean,1290452702 +181401,6535,homosexuality,1385406140 +181401,6535,Reese Witherspoon,1385406058 +181401,6539,adventure,1290451128 +181401,6539,Johnny Depp,1385397143 +181401,6539,pirates,1290451135 +181401,6539,Suspense,1385397160 +181401,6539,treasure hunt,1385397174 +181401,6545,England,1291815436 +181401,6545,romance,1291815453 +181401,6550,crude humor,1385405612 +181401,6550,Natalie Imbruglia,1385405615 +181401,6550,Rowan Atkinson,1385405622 +181401,6751,nudity,1385400677 +181401,6809,nudity,1385399090 +181401,6809,prostitution,1385399109 +181401,6809,sexuality,1385399101 +181401,6874,Quentin Tarantino,1385140704 +181401,6874,revenge,1385140722 +181401,6874,vengeance,1385140727 +181401,6874,violence,1385140725 +181401,6898,british,1385571243 +181401,6898,swearing,1385571209 +181401,6952,nudity,1385422828 +181401,6952,psychology,1385422836 +181401,7153,adventure,1385396698 +181401,7153,atmospheric,1385396695 +181401,7153,fantasy,1385396688 +181401,7153,high fantasy,1385396683 +181401,7153,oscar (best cinematography),1385396676 +181401,7153,tense,1385396660 +181401,7165,Nudity (Topless),1385419565 +181401,7173,jennifer aniston,1385410387 +181401,7247,Didn't finish,1385403823 +181401,7247,musical,1385403831 +181401,7340,cross dressing,1385401165 +181401,7340,cross dressing women,1385401168 +181401,7340,gender-queer,1385401170 +181401,7340,Nudity (Topless - Notable),1385401173 +181401,7340,Nudity (Topless),1385401176 +181401,7360,Nudity (Topless - Brief),1385419981 +181401,7360,post-apocalyptic,1385420014 +181401,7360,R,1385420018 +181401,7438,Quentin Tarantino,1385140764 +181401,7438,revenge,1385140768 +181401,7438,spaghetti western,1385141076 +181401,7438,vengeance,1385140772 +181401,7438,violence,1385140770 +181401,7454,bad special effects,1385401486 +181401,7669,19th century,1385396571 +181401,7669,Colin Firth,1290449290 +181401,7669,comedy of manners,1385396584 +181401,7669,England,1385396588 +181401,7669,Jane Austen,1290449303 +181401,7669,period drama,1290449286 +181401,7669,romantic,1385396618 +181401,7669,TV series,1385396601 +181401,7669,witty,1385396607 +181401,8368,fantasy,1290452932 +181401,8368,Gary Oldman,1290452927 +181401,8529,stranded,1385398423 +181401,8530,Gerard Butler,1277749610 +181401,8533,sad,1276980292 +181401,8640,medieval,1290453618 +181401,8833,19th century,1249501636 +181401,8861,Nudity (Topless),1385407126 +181401,8861,Post apocalyptic,1385407139 +181401,8861,post-apocalyptic,1385407134 +181401,8907,3D,1385407611 +181401,8947,japan,1385422775 +181401,8957,clever,1385407302 +181401,8957,suspense,1385407276 +181401,8957,twist ending,1385407306 +181401,8965,Christmas,1261688812 +181401,8966,adultery,1385399896 +181401,8966,gay,1385399900 +181401,8966,homosexuality,1251577708 +181401,8966,male nudity,1385399933 +181401,8966,Nudity (Full Frontal),1385399907 +181401,8966,polyamory,1385399910 +181401,8966,queer,1385399913 +181401,8966,sex,1385399917 +181401,8966,sexuality,1385399915 +181401,8969,Colin Firth,1290450508 +181401,8981,disturbing,1385399634 +181401,8981,divorce,1385399640 +181401,8981,Nudity (Rear),1385399627 +181401,8981,sex,1385399622 +181401,8983,amazing photography,1385397557 +181401,8983,Beautiful,1385397551 +181401,8983,beautifully filmed,1385397553 +181401,8983,China,1385397555 +181401,8983,fantasy,1385397564 +181401,26007,based on a book,1385398156 +181401,26007,black and white,1385398158 +181401,26007,finland,1385398172 +181401,26007,finnish,1385398170 +181401,26007,survival,1385398183 +181401,26133,2D animation,1385140157 +181401,26133,Christmas,1291610722 +181401,26133,short,1385140144 +181401,26422,hippies,1385405026 +181401,26422,musical,1385405067 +181401,26422,nudity,1385405082 +181401,26680,musical,1385404046 +181401,26758,17th century,1303663091 +181401,26758,music,1303663084 +181401,26973,fairy tale,1410640098 +181401,27266,erotic,1385399523 +181401,27309,indecent,1385424101 +181401,27309,Nudity (Full Frontal),1385400250 +181401,27309,nudity (topless - notable),1385400254 +181401,27309,sexuality,1385400307 +181401,27340,jungle,1385407802 +181401,27340,Nudity (Topless - Notable),1385407752 +181401,27340,Nudity (Topless),1385407754 +181401,27482,claustrophobic,1385419792 +181401,27482,psychological,1385419797 +181401,27482,sci-fi,1385419795 +181401,30816,Gerard Butler,1290454177 +181401,30816,Musical,1290454240 +181401,31184,sexist,1385402158 +181401,31696,demons,1385148969 +181401,31696,lesbian,1385148965 +181401,32213,escape,1385419697 +181401,32213,psychological,1385419707 +181401,32213,sci-fi,1385419701 +181401,32289,figure skating,1281272206 +181401,32596,Penélope Cruz,1385570118 +181401,32596,Penélope Cruz,1385570131 +181401,32596,Penélope Cruz,1385570144 +181401,32596,Penelope Cruz,1385570127 +181401,33004,end of the world,1385147460 +181401,33004,post-apocalyptic,1385147465 +181401,33294,gore,1385399666 +181401,33294,Nudity (Animated),1385399661 +181401,33558,survival,1282830096 +181401,33834,gruesome,1385398937 +181401,33834,idiotic,1385398986 +181401,33834,splatter,1385398929 +181401,33898,sexuality,1385405413 +181401,33898,swearing,1385405456 +181401,34048,no nudity,1385571735 +181401,34048,sci-fi,1242680133 +181401,38798,Cameron Diaz,1385423263 +181401,38798,sexual references,1385423332 +181401,39408,apocalypse,1385405856 +181401,39408,Biblical,1385405869 +181401,39408,Christianity,1385405860 +181401,39449,sexy,1453583827 +181401,40815,fantasy,1290453490 +181401,40815,Gary Oldman,1290453506 +181401,40966,johnny depp,1290446508 +181401,41285,love affair,1385424414 +181401,41285,Woody Allen,1385424423 +181401,41566,adventure,1290452069 +181401,41566,Biblical,1290452199 +181401,41566,C.S. Lewis,1290452070 +181401,41566,christianity,1316267973 +181401,41566,fantasy,1290452079 +181401,42728,medieval,1290546545 +181401,43930,Teen movie,1385423580 +181401,45081,atmospheric,1385407498 +181401,45081,blood,1385407572 +181401,45081,disturbing,1385407510 +181401,45081,gore,1385407576 +181401,45081,post-apocalyptic,1385407504 +181401,45722,Adventure,1290451180 +181401,45722,Johnny Depp,1290451177 +181401,45722,pirates,1290451186 +181401,46578,beauty pageant,1452378538 +181401,46578,Gay Character,1452378568 +181401,46578,homosexuality,1452378510 +181401,46578,pornography,1452378691 +181401,47629,based on a true story,1385569915 +181401,47629,biographical,1385569918 +181401,47629,biography,1385569927 +181401,47629,biopic,1385569929 +181401,47629,England,1385569932 +181401,47629,royalty,1385569944 +181401,47629,true story,1385569951 +181401,48877,gore,1394908500 +181401,48877,Nudity (Full Frontal),1394908444 +181401,48877,violence pornography,1394908455 +181401,48997,18th century,1315168746 +181401,48997,artistic,1315173763 +181401,48997,Nudity (Topless - Notable),1385399383 +181401,48997,Nudity (Topless),1315173087 +181401,48997,serial killer,1315169145 +181401,48997,sexuality,1385399373 +181401,49272,Daniel Craig,1294082925 +181401,51905,Christianity,1390858488 +181401,52328,sci-fi,1365963929 +181401,53000,nudity,1385401831 +181401,53000,post-apocalyptic,1385401775 +181401,53000,Weak sequel,1385401874 +181401,53125,adventure,1290451202 +181401,53125,Johnny Depp,1290451204 +181401,53125,pirates,1290451208 +181401,54001,fantasy,1290453034 +181401,54001,Gary Oldman,1290452996 +181401,54001,not true to the book,1290453255 +181401,54259,fantasy,1251558707 +181401,55451,hippies,1385405593 +181401,55451,lesbian,1304280276 +181401,55451,sexuality,1385405582 +181401,55872,Jonathan Rhys Meyers,1409519882 +181401,56176,musical,1385402098 +181401,56908,Billy Crudup,1289600600 +181401,56941,Gerard Butler,1287356175 +181401,56949,full of stupid things,1385410176 +181401,56949,insulting to women,1385410141 +181401,58975,jungle,1385407230 +181401,58975,Nudity (Topless - Brief),1385407221 +181401,58975,Nudity (Topless),1385407207 +181401,59143,stand-up comedy,1385398543 +181401,59418,true story,1403463671 +181401,59501,adventure,1290452161 +181401,59501,Ben Barnes,1290452179 +181401,59501,C.S. Lewis,1290452153 +181401,59501,fantasy,1290452154 +181401,59615,adventure,1255904066 +181401,59615,aliens,1255904032 +181401,59615,archaeology,1255903965 +181401,59615,Harrison Ford,1255904027 +181401,59615,indiana jones,1255903972 +181401,60514,adventure,1373064499 +181401,61160,3D,1385407682 +181401,62265,Colin Firth,1282345468 +181401,62265,Uma Thurman,1385401960 +181401,62293,18th century,1290466290 +181401,62376,adventure,1393184777 +181401,62376,steampunk,1393184780 +181401,63113,Daniel Craig,1294082817 +181401,63329,Christmas,1419839819 +181401,63329,Lapland,1419839825 +181401,66371,beautiful scenery,1423775757 +181401,66371,calm,1423775763 +181401,66371,cello,1423775737 +181401,66371,emotional,1423775732 +181401,66371,Japan,1423775726 +181401,66783,Nudity (Topless),1402396999 +181401,67186,no sex scenes,1385405324 +181401,67197,apocalypse,1276527729 +181401,67197,Nicolas Cage,1276527691 +181401,68963,Colin Firth,1281474371 +181401,69604,antichristian,1385141231 +181401,69604,eccentricity,1385141293 +181401,69604,gay,1385141240 +181401,69604,intellectual,1385141286 +181401,69604,polyamory,1385141253 +181401,69844,Alan Rickman,1290453408 +181401,69844,fantasy,1290453419 +181401,70183,Gerard Butler,1286749266 +181401,70293,shallow,1278195479 +181401,70970,euthanasia,1437855727 +181401,71205,cult film,1385401131 +181401,71205,dark comedy,1385401134 +181401,71205,demons,1385401125 +181401,71205,lesbian subtext,1385401118 +181401,71205,Megan Fox,1385401150 +181401,71205,sexy,1385401112 +181401,71379,Boring,1385399495 +181401,72294,Christmas,1419109559 +181401,72356,short,1306620335 +181401,73321,Bible,1307052142 +181401,73321,Christianity,1307052136 +181401,73321,post-apocalyptic,1307052167 +181401,74508,Jane Austen,1329408759 +181401,74508,romance,1329408763 +181401,74789,Johnny Depp,1315847874 +181401,74789,Tim Burton,1315848676 +181401,74868,nudity,1410380065 +181401,75395,no nudity,1385519714 +181401,75395,no sex scenes,1385519725 +181401,75395,tense,1385519745 +181401,75805,Gerard Butler,1282081461 +181401,75805,strippers,1385419132 +181401,78105,adventure,1298488429 +181401,78105,fantasy,1298488428 +181401,78349,claustrophobic,1385404471 +181401,78703,original,1307224724 +181401,79132,dreams,1293447191 +181401,79132,Leonardo DiCaprio,1293447203 +181401,80549,Gay Lead Character,1385148834 +181401,80549,sexuality,1385148822 +181401,80860,Josh Duhamel,1323022529 +181401,80860,Josh Lucas,1323023257 +181401,80860,Katherine Heigl,1323022531 +181401,80860,predictable,1323022258 +181401,80860,sexual references,1385424729 +181401,81562,adventure,1385409841 +181401,81562,James Franco,1296519527 +181401,81562,survival,1385409813 +181401,81562,true story,1385409990 +181401,81562,wilderness,1385409854 +181401,81845,England,1323034110 +181401,81845,historical,1323034102 +181401,81847,animation,1315259611 +181401,81847,fairy tale,1315258959 +181401,81847,visually appealing,1416016441 +181401,82169,author:C.S. Lewis,1316267874 +181401,82169,Christian allegory,1316267898 +181401,85397,dark fantasy,1385570347 +181401,85397,fairy tale,1385570343 +181401,85397,mystery,1385570352 +181401,85397,sexuality,1385570682 +181401,85438,beautiful scenery,1319847176 +181401,85438,gothic,1319847194 +181401,85788,demons,1385423498 +181401,85788,no nudity,1385423536 +181401,85788,tense,1385423505 +181401,86880,Johnny Depp,1317325774 +181401,87306,sci-fi,1321739740 +181401,87308,19th century,1385397478 +181401,87308,based on a book,1385397317 +181401,87308,England,1321203804 +181401,87308,gothic,1321203794 +181401,87308,romance,1321203833 +181401,87405,Josh Lucas,1322946411 +181401,87485,breast implants,1385148577 +181401,87485,Nudity (Topless - Notable),1385148319 +181401,87485,scatalogical humor,1385148603 +181401,87485,sex jokes,1385148229 +181401,87485,swearing,1385148328 +181401,89678,Jane Austen,1359639371 +181401,90746,3D effects,1321732178 +181401,91104,Kristen Stewart,1385407935 +181401,91500,survival,1393420324 +181401,91612,sexuality,1385402382 +181401,91673,19th century,1408788845 +181401,91673,gay agenda,1408788681 +181401,91673,gender ambiguity,1408788716 +181401,91673,nudity (topless),1408788725 +181401,91673,transgendered,1408788704 +181401,92192,sci-fi,1385835616 +181401,92192,space travel,1385835589 +181401,92192,suspense,1385835591 +181401,92422,atmospheric,1376574954 +181401,93840,conspiracy,1385399020 +181401,93840,dark comedy,1385399016 +181401,93840,gore,1385399012 +181401,93840,Nudity (Topless),1385398999 +181401,93840,suspense,1385399005 +181401,94780,beautiful cinematography,1410461461 +181401,94780,fairy tale,1410461468 +181401,94780,visually stunning,1410461488 +181401,94864,archaeology,1385569662 +181401,94864,religion,1385569657 +181401,94864,sci-fi,1366293760 +181401,94864,space travel,1385569680 +181401,98203,Kristen Stewart,1385407874 +181401,99367,Christmas,1385423192 +181401,99367,Gay Character,1385423242 +181401,101112,Fantasy,1376325374 +181401,104312,based on a book,1385424832 +181401,104312,fantasy,1385424751 +181401,104841,cinematography,1393169399 +181401,104841,space,1393169411 +181401,104841,visually appealing,1393169396 +181401,106487,visually appealing,1393437039 +181401,106489,adventure,1418684757 +181401,106489,author:J. R. R. Tolkein,1418684785 +181401,106489,dragon,1418684763 +181401,106489,epic,1418684779 +181401,106489,fantasy,1418684788 +181401,106489,Tolkien,1418684774 +181401,106696,beautiful,1416015943 +181401,106696,feminist,1416016304 +181401,106696,musical,1416015920 +181401,107563,Christmas,1388256820 +181401,111249,England,1416960634 +181401,111659,fairy tale,1409082471 +181401,111659,visual effects,1409082468 +181401,112852,adventure,1416865500 +181401,112852,fantasy,1416865520 +181401,112852,fun,1416865554 +181401,112852,Marvel Cinematic Universe,1417041938 +181401,112852,sci-fi,1416865486 +181401,112852,space,1416865534 +181401,112852,talking animals,1416865559 +181401,114180,dystopia,1417571067 +181401,115414,apocalypse,1418253885 +181401,115414,Christianity,1418304461 +181401,115414,religion,1418304465 +181401,118696,dragons,1418684841 +181401,118696,Tolkien,1418684837 +181401,125435,Christian,1433702836 +181401,125916,abuse,1425120336 +181401,125916,erotic,1425120329 +181401,125916,nudity (topless),1425120347 +181401,132796,Disaster,1443593192 +181411,77795,Iran,1447202485 +181417,7844,lesbian,1206058773 +181452,129295,feminism,1428347682 +181452,129295,rape,1428347634 +181452,129295,revenge,1428347638 +181465,260,fantasy,1433126071 +181465,260,sci-fi,1433126083 +181465,112556,psychological torment,1433127127 +181465,112556,thought-provoking,1433127127 +181465,112556,twists & turns,1433127127 +181481,253,atmospheric,1423422221 +181481,253,homoerotic subtext,1423422221 +181481,253,vampires,1423422221 +181487,1732,Coen Brothers,1300996785 +181506,296,action,1329545173 +181506,296,assassin,1329545175 +181506,296,cult film,1329545165 +181506,296,dark comedy,1329545154 +181506,296,nonlinear,1329545181 +181506,296,Quentin Tarantino,1329545155 +181506,296,Samuel L. Jackson,1329545157 +181506,296,stylized,1329545159 +181506,296,violence,1329545160 +181506,555,Quentin Tarantino,1338671052 +181506,32567,historical,1351449831 +181506,32567,Neve Campbell,1351449831 +181506,32567,sexy,1351449831 +181506,48780,psychological,1329545199 +181506,48780,twist ending,1329545207 +181506,53578,comedy,1351450031 +181506,53578,french,1351450022 +181506,54999,Clive Owen,1329545074 +181506,54999,fast paced,1329545087 +181506,54999,gun fu,1329545070 +181506,54999,Meta movie,1329545084 +181506,54999,ridiculous,1329545060 +181506,54999,ultra-violence,1329545077 +181506,55118,atmospheric,1280990629 +181506,55118,David Cronenberg,1280991094 +181506,55118,mafia,1280990603 +181506,55118,organized crime,1329544949 +181506,55118,russian,1280990604 +181506,55118,undercover,1280990603 +181506,55118,Viggo Mortensen,1329544941 +181506,55118,violent,1280990681 +181506,56286,Bob Dylan,1280988753 +181506,56286,Cate Blanchett,1280988774 +181506,56286,confusing,1280988702 +181506,56286,Mindfuck,1280988745 +181506,56286,Music,1280988704 +181506,56286,surreal,1280988702 +181506,56715,dark comedy,1353183306 +181506,56715,magic realism,1353185628 +181506,56715,music,1353185602 +181506,56715,quirky,1353183321 +181506,56715,suicide,1353185607 +181506,56715,Tom Waits,1353183290 +181506,62434,Kevin Smith,1329545011 +181506,62434,Seth Rogen,1329545024 +181506,62434,Sex Comedy,1329545013 +181506,62434,Sexual Humor,1329545015 +181506,67618,bad casting,1294210191 +181506,67618,realistic plot,1294210150 +181506,67618,romantic comedy,1294210139 +181506,67618,sexy,1294210130 +181506,68600,Seann William Scott,1351449912 +181506,68600,Underrated,1351449930 +181506,71535,Bill Murray,1329544981 +181506,71535,campy,1329544992 +181506,71535,comedy,1329544990 +181506,71535,dark comedy,1329544982 +181506,71535,happy ending,1331420033 +181506,71535,parody,1329544997 +181506,71535,zombies,1329545003 +181506,79702,artistic,1329545117 +181506,79702,Gay,1329545129 +181506,79702,quirky,1329545136 +181506,79702,stylized,1329545122 +181506,79702,surreal,1329545127 +181506,79702,visually appealing,1329545119 +181506,79702,whimsical,1329545121 +181506,88163,cute,1329545364 +181506,88163,dysfunctional family,1329545366 +181506,88163,not cliche,1329545382 +181506,88163,plot twist,1329545352 +181506,89118,Antonio Banderas,1332735444 +181506,89118,cinematography,1332735459 +181506,89118,Elena Anaya,1332735492 +181506,95873,flat characters,1351449760 +181506,95873,human nature,1351449732 +181506,95873,Magic Realism,1351449718 +181506,95873,quirky,1351449778 +181527,69,wired 50 greatest soundtracks,1198870555 +181527,230,adapted from:book,1207805188 +181527,249,deafness,1193613280 +181527,296,Samuel L. Jackson,1198888149 +181527,296,wired 50 greatest soundtracks,1198865622 +181527,300,Ethan Hawke (cameo),1201643053 +181527,352,wired 50 greatest soundtracks,1198866987 +181527,441,ben affleck,1207805294 +181527,441,marijuana,1207805261 +181527,441,notable cast,1207805294 +181527,441,rory cochrane,1207805294 +181527,441,wired 50 greatest soundtracks,1198866044 +181527,509,adultery,1193618510 +181527,509,Nudity (Rear),1193616561 +181527,778,wired 50 greatest soundtracks,1198865777 +181527,912,quotable,1198888409 +181527,924,adapted from:book,1208743801 +181527,924,sparse,1208743788 +181527,1089,wired 50 greatest soundtracks,1198866884 +181527,1101,wired 50 greatest soundtracks,1198869795 +181527,1213,notable cast,1198886629 +181527,1213,wired 50 greatest soundtracks,1198866818 +181527,1220,buddies,1198886185 +181527,1220,car chase,1198540957 +181527,1220,wired 50 greatest soundtracks,1198865925 +181527,1247,wired 50 greatest soundtracks,1198865739 +181527,1288,rockumentary,1193613415 +181527,1288,wired 50 greatest soundtracks,1198871636 +181527,1380,wired 50 greatest soundtracks,1198871582 +181527,1590,bloody,1199407549 +181527,1615,bears,1205266832 +181527,1615,nature,1205266832 +181527,1615,wilderness,1205266832 +181527,1673,wired 50 greatest soundtracks,1198866030 +181527,1952,wired 50 greatest soundtracks,1198865995 +181527,1965,wired 50 greatest soundtracks,1198867962 +181527,2145,wired 50 greatest soundtracks,1198867823 +181527,2150,silly,1199909459 +181527,2150,slapstick,1199906992 +181527,2303,wired 50 greatest soundtracks,1198867886 +181527,2352,wired 50 greatest soundtracks,1198865852 +181527,2395,wired 50 greatest soundtracks,1198865872 +181527,2542,wired 50 greatest soundtracks,1198866903 +181527,2863,wired 50 greatest soundtracks,1198865653 +181527,2877,cameos,1198886897 +181527,2877,melodramatic,1198886963 +181527,2877,notable cast,1198886901 +181527,2877,notable soundtrack,1198886949 +181527,2877,overrated,1198886883 +181527,2877,wired 50 greatest soundtracks,1198867751 +181527,2946,wired 50 greatest soundtracks,1198867777 +181527,3060,wired 50 greatest soundtracks,1198866921 +181527,3168,wired 50 greatest soundtracks,1198865959 +181527,3261,wired 50 greatest soundtracks,1198871667 +181527,3363,wired 50 greatest soundtracks,1198865831 +181527,3421,wired 50 greatest soundtracks,1198865978 +181527,3481,wired 50 greatest soundtracks,1198871619 +181527,3649,wired 50 greatest soundtracks,1198869529 +181527,3729,wired 50 greatest soundtracks,1198866844 +181527,3897,wired 50 greatest soundtracks,1198866064 +181527,3969,overrated,1207689983 +181527,4027,bluegrass,1198886277 +181527,4027,old-timey,1198886284 +181527,4027,wired 50 greatest soundtracks,1198866956 +181527,4226,neo-noir,1203378944 +181527,4242,comedy,1207805378 +181527,4242,female power,1207805378 +181527,4242,light-hearted,1207805378 +181527,4308,colorful,1198886565 +181527,4308,wired 50 greatest soundtracks,1198866865 +181527,4642,wired 50 greatest soundtracks,1198871705 +181527,4973,beautiful music,1198887537 +181527,4973,colorful,1198887510 +181527,4973,crafted,1198887514 +181527,5508,wired 50 greatest soundtracks,1198865906 +181527,5693,wired 50 greatest soundtracks,1198865805 +181527,5810,wired 50 greatest soundtracks,1198867842 +181527,6039,Kelly LeBrock,1204319359 +181527,6051,wired 50 greatest soundtracks,1198865672 +181527,7076,car chase,1198540796 +181527,7272,wired 50 greatest soundtracks,1198865762 +181527,7420,wired 50 greatest soundtracks,1199585333 +181527,7889,wired 50 greatest soundtracks,1198869816 +181527,7990,wired 50 greatest soundtracks,1198871501 +181527,8266,wired 50 greatest soundtracks,1198865639 +181527,8644,asimov,1193613216 +181527,8644,Isaac Asimov,1193613216 +181527,8784,overrated,1207689583 +181527,8784,overwrought,1207689575 +181527,8784,pretentious,1207689595 +181527,8784,wired 50 greatest soundtracks,1198871604 +181527,26231,wired 50 greatest soundtracks,1198867799 +181527,30810,sigur rós,1193613851 +181527,30810,submarine,1193630604 +181527,34405,adapted from:TV series,1207454074 +181527,34437,wired 50 greatest soundtracks,1198871731 +181527,43914,healing,1208017241 +181527,44555,Nudity (Rear - Brief),1193625348 +181527,44555,Piano,1193625740 +181527,44555,Sony Pictures Classics,1193625357 +181527,45880,wired 50 greatest soundtracks,1198866971 +181527,48326,corruption,1193612264 +181527,48326,power,1193612264 +181527,48326,subtext,1193612248 +181527,48738,wired 50 greatest soundtracks,1198871653 +181527,48774,hopeful,1193612671 +181527,52356,biopic,1199900792 +181527,52724,poker,1193611841 +181527,53123,guitar,1200722593 +181527,53123,lyrics,1200722583 +181527,53123,Oscar (Best Music - Original Song),1204935316 +181527,53123,songwriting,1200722564 +181527,53123,wired 50 greatest soundtracks,1198871545 +181527,54190,Beatles,1208742596 +181527,54190,Beatles soundtrack,1208742596 +181527,54190,notable soundtrack,1208742572 +181527,54771,remake,1214328663 +181527,55052,hard to follow,1208017135 +181527,55052,non-linear,1208192471 +181527,55247,adapted from:book,1206110511 +181527,55247,based on a true story,1208187837 +181527,55247,non-linear,1208192492 +181527,55253,Chinese culture,1216835027 +181527,55253,sexual,1216835043 +181527,55255,compelling,1210885189 +181527,55255,intertwined,1210885189 +181527,55255,Nudity (Rear),1210885165 +181527,55269,brotherhood,1209351826 +181527,55269,brothers,1209351826 +181527,55269,deceit,1209351780 +181527,55269,India,1193630560 +181527,55269,lying,1209351780 +181527,55269,Train,1193630560 +181527,55272,1980s,1213792652 +181527,55272,brothers,1213792652 +181527,55272,drugs,1213792652 +181527,55272,New York City,1213792652 +181527,55872,love of music,1206762728 +181527,55872,power of music,1206762728 +181527,56367,notable soundtrack,1201314369 +181527,56367,pregnancy,1201314369 +181527,57669,irreverent,1201834316 +181527,57669,notable cast,1201834324 +181531,6023,atmospheric,1263241925 +181531,6023,bad script,1263241925 +181531,6023,overall stupidity,1263241925 +181531,6023,stupid characters,1263241925 +181531,6365,a sequel better without,1260022395 +181531,6934,a sequel better without,1260022388 +181531,36519,a sequel better without,1260022587 +181531,64030,a sequel better without,1260022586 +181531,68205,a sequel better without,1260022704 +181531,68952,bad editing,1260021783 +181531,68952,full of cliches,1260021783 +181531,68952,no sense on timing and rhythm,1260021783 +181531,68952,poor acting,1260021783 +181531,68952,poor dialogue,1260021783 +181531,68952,poorly written script,1260021783 +181531,68952,Predictable movie,1260021783 +181531,68952,repetitive,1260021783 +181547,1947,bernstein,1179951080 +181547,2132,great performances,1179951072 +181547,5225,hottie,1179951130 +181547,6333,Owned,1179951050 +181547,6385,coming of age,1179951077 +181547,44694,female power,1179951094 +181560,260,classic sci-fi,1433475156 +181580,10,Bond,1162592605 +181581,260,action,1435932859 +181581,260,Science Fiction,1435932833 +181581,109487,drama,1435933268 +181581,109487,science fiction,1435933268 +181581,109487,space,1435933268 +181605,1343,horror,1188265347 +181605,1343,killer,1188265347 +181605,1343,stalker,1188265347 +181605,2080,children,1188265367 +181605,2080,dogs,1188265367 +181605,2080,romantic,1188265367 +181605,2953,alone,1188265544 +181605,2953,robbers,1188265544 +181605,4270,egypt,1188265509 +181605,4270,mummy,1188265509 +181605,4447,blonde,1188265463 +181605,4447,dog,1188265463 +181605,4447,funny,1188265463 +181605,5679,horror,1188265447 +181605,5679,scary,1188265447 +181605,6934,hacker,1188265437 +181605,6934,matrix,1188265437 +181605,6934,neo,1188265437 +181605,7147,death,1188265408 +181605,7147,dream,1188265408 +181605,7147,fantasy,1188265408 +181605,7147,life,1188265408 +181605,7147,stories,1188265408 +181605,8622,bush,1188265497 +181605,8622,comedy,1188265497 +181605,8622,government,1188265497 +181612,1,animation,1140064168 +181612,32,Drama,1140064467 +181612,32,Sci-Fi,1140064467 +181612,47,Crime,1140064548 +181612,50,Crime,1140375664 +181612,110,drama,1139768403 +181612,153,Action,1139770135 +181612,153,sequel,1139770135 +181612,153,super-hero,1139770135 +181612,266,Romance,1140064839 +181612,296,Crime,1139770286 +181612,296,Tarantino,1139770286 +181612,318,Drama,1140064402 +181612,357,Comedy,1140064647 +181612,357,Romance,1140064647 +181612,380,action,1139969861 +181612,457,Action,1140374858 +181612,527,Drama,1140374787 +181612,527,War,1140374787 +181612,532,Comedy,1140150872 +181612,587,drama,1139768705 +181612,589,Action,1139969885 +181612,589,Sci-Fi,1139969885 +181612,592,action,1139770003 +181612,592,super-hero,1139770003 +181612,593,classic,1139969823 +181612,597,Comedy,1140064598 +181612,597,Romance,1140064598 +181612,780,Action,1140064428 +181612,1036,action,1140149247 +181612,1090,Drama,1140147151 +181612,1090,War,1140147151 +181612,1196,Action,1140064968 +181612,1240,Action,1140375287 +181612,1240,Sci-Fi,1140375287 +181612,1240,Thriller,1140375287 +181612,1246,Drama,1140375000 +181612,1259,Drama,1140065474 +181612,1270,Adventure,1140374943 +181612,1270,Comedy,1140374943 +181612,1271,Drama,1140146869 +181612,1377,action,1139770096 +181612,1377,super-hero,1139770096 +181612,1562,Action,1139770148 +181612,1562,super-hero,1139770148 +181612,1617,Crime,1140064681 +181612,1617,Drama,1140064681 +181612,1721,drama,1139768697 +181612,1784,Comedy,1140375165 +181612,1784,Drama,1140375165 +181612,1784,Romance,1140375165 +181612,1962,Drama,1140063730 +181612,1968,Comedy,1140375147 +181612,1968,Drama,1140375147 +181612,2000,action,1139768214 +181612,2028,World War II,1139768421 +181612,2571,fiction,1140064521 +181612,2640,super-hero,1139770018 +181612,2641,Action,1139770075 +181612,2641,super-hero,1139770075 +181612,2762,Drama,1140064196 +181612,2908,Drama,1139970434 +181612,3052,Adventure,1140150751 +181612,3052,Comedy,1140150751 +181612,3114,animation,1139770699 +181612,3147,drama,1139768375 +181612,3148,Drama,1140375299 +181612,3408,Drama,1141148681 +181612,3418,Action,1139770774 +181612,3418,Drama,1139770774 +181612,3457,Drama,1140150111 +181612,3479,Drama,1140148623 +181612,3479,Romance,1140148623 +181612,3578,drama,1139770720 +181612,3785,Comedy,1140150480 +181612,3785,Horror,1140150480 +181612,3793,action,1139769979 +181612,3793,super-hero,1139769979 +181612,4022,drama,1139768185 +181612,4205,Comedy,1140148530 +181612,4205,Drama,1140148530 +181612,4205,Romance,1140148530 +181612,4306,animation,1140063859 +181612,4306,fairy tale,1140063859 +181612,4310,Action,1139970156 +181612,4310,Drama,1139970156 +181612,4310,Romance,1139970156 +181612,4310,War,1139970156 +181612,4326,Drama,1140375018 +181612,4388,Comedy,1140150511 +181612,4388,Horror,1140150511 +181612,4720,Drama,1140375211 +181612,4903,Drama,1140149627 +181612,4963,action,1140374905 +181612,4993,Action,1140374799 +181612,4993,Adventure,1140374799 +181612,4993,Fantasy,1140374799 +181612,5010,Drama,1140147430 +181612,5010,War,1140147430 +181612,5066,Drama,1139970347 +181612,5066,Romance,1139970347 +181612,5299,romance,1139770345 +181612,5349,super-hero,1139769896 +181612,5945,Comedy,1140150354 +181612,5945,Drama,1140150354 +181612,5952,Action,1140374741 +181612,5952,Adventure,1140374741 +181612,5952,Fantasy,1140374741 +181612,6333,action,1139769847 +181612,6333,super-hero,1139769847 +181612,6377,Animation,1140063539 +181612,6534,Action,1139770119 +181612,6534,super-hero,1139770119 +181612,6539,action,1140065567 +181612,6565,Drama,1140375063 +181612,6870,Drama,1140150414 +181612,6870,Mystery,1140150414 +181612,6874,Crime,1139970012 +181612,6874,Tarantino,1139970012 +181612,6888,Comedy,1140150541 +181612,6888,Horror,1140150541 +181612,6953,Tragedy,1139769031 +181612,7147,action,1139969974 +181612,7147,Fantasy,1139969974 +181612,7149,Comedy,1140150274 +181612,7149,Romance,1140150274 +181612,7153,Action,1140374729 +181612,7153,Adventure,1140374729 +181612,7153,Fantasy,1140374729 +181612,7160,Crime,1139970502 +181612,7160,Drama,1139970502 +181612,7162,Drama,1140149835 +181612,7162,Romance,1140149835 +181612,7162,War,1140149835 +181612,7254,drama,1140063792 +181612,7255,Comedy,1140147177 +181612,7255,Romance,1140147177 +181612,7293,Comedy,1140150164 +181612,7293,Romance,1140150164 +181612,7361,drama,1140065067 +181612,7438,crime,1139970024 +181612,7438,Tarantino,1139970024 +181612,7458,Action,1140064900 +181612,7618,Drama,1140375359 +181612,8360,animation,1140063873 +181612,8360,fairy tale,1140063873 +181612,8368,magic,1139770647 +181612,8636,Action,1140063563 +181612,8636,super-hero,1139769819 +181612,8961,action,1139769878 +181612,8961,Adventure,1139769878 +181612,8961,Animation,1139769878 +181612,8961,super-hero,1139769878 +181612,8970,Drama,1140065635 +181612,26152,Action,1139770042 +181612,26152,super-hero,1139770042 +181612,30659,Drama,1141147797 +181612,30707,Dramatic,1139768601 +181612,33794,action,1139769796 +181612,33794,super-hero,1139769796 +181612,33836,Comedy,1141146315 +181612,34150,Action,1141149286 +181612,34150,Adventure,1141149286 +181612,36401,Adventure,1139769605 +181612,36401,Fantasy,1139769605 +181612,39183,Tragedy,1139769016 +181612,41569,adventure,1139769294 +181612,41571,Drama,1141096437 +181639,134853,emotions,1436948837 +181639,134853,girl,1436948837 +181639,134853,moving,1436948837 +181681,260,fun,1442022156 +181681,260,space action,1442022152 +181688,260,"classic, sci-fi",1440914448 +181688,5995,Adrien Brody,1440949564 +181688,5995,beautiful,1440949572 +181688,5995,Roman Polanski,1440949567 +181688,5995,World War II,1440949562 +181688,86504,red coat,1440949538 +181688,86504,Spielberg,1440949521 +181688,86504,wwII,1440949494 +181719,364,animation,1440798611 +181719,364,Disney,1440798742 +181719,364,Disney animated feature,1440798699 +181719,364,fun,1440798678 +181719,364,musical,1440798633 +181719,364,soundtrack,1440798656 +181719,92259,emotional,1440798971 +181719,92259,feel good movie,1440798905 +181719,92259,friendship,1440798923 +181719,92259,funny,1440798890 +181719,92259,inspirational,1440798930 +181719,92259,soundtrack,1440798916 +181727,912,slow starter,1155568370 +181727,1221,slow but very interesting,1155568349 +181738,260,fantasy,1439138240 +181738,260,Science Fiction,1439138252 +181741,1136,British,1339427147 +181741,1136,british comedy,1339427140 +181741,1136,comedy,1339427155 +181741,1136,cult film,1339427146 +181741,1136,England,1339427148 +181741,1136,funny,1339427150 +181741,1136,hilarious,1339427151 +181741,4011,boxing,1339427108 +181741,4011,british,1339427091 +181741,4011,comedy,1339427094 +181741,4011,funny,1339427110 +181741,4011,Guy Ritchie,1339427100 +181755,32,excellent,1207678867 +181755,665,Emir Kusturica,1267285686 +181755,778,black comedy,1245914614 +181755,778,Ewan McGregor,1245914571 +181755,1209,Spaghetti Western,1216584890 +181755,1291,Lucas,1209921801 +181755,1291,Steven Spielberg,1209921786 +181755,1912,George Clooney,1264893549 +181755,1912,Jennifer Lopez,1264893548 +181755,2843,humorous,1267285665 +181755,2843,kusturica,1267285667 +181755,2858,Kevin Spacey,1245914887 +181755,2858,powerful ending,1245914906 +181755,5619,cia,1207678805 +181755,6125,Gilliam,1150039372 +181755,6252,Gwyneth Paltrow,1247591060 +181755,6957,Lauren Graham,1259533002 +181755,8970,Kate Winslet,1216584667 +181755,31410,Adolf Hitler,1259534063 +181755,39231,Kirsten Dunst,1259532612 +181755,40959,black comedy,1266009148 +181755,40959,hilarity,1266009144 +181755,49822,Central Intelligence Agency,1173716243 +181755,51255,Simon Pegg,1259532936 +181755,53125,BORING!,1303651833 +181755,53125,Johnny Depp,1303651846 +181755,53125,Keira Knightley,1303651851 +181755,53125,stupid ending,1303651843 +181755,54259,Clare Danes,1303651918 +181755,54259,fairy tale,1218998926 +181755,60069,pixar,1216065362 +181755,60514,3D,1218831893 +181755,62113,Kirsten Dunst,1259532538 +181755,62113,Megan Fox,1259532580 +181755,62113,Simon Pegg,1259532544 +181755,62374,cia,1227990686 +181755,65682,crappy prequel,1270204856 +181755,66509,long,1336218311 +181755,67193,Clive Owen,1243763438 +181755,67193,Julia Roberts,1243763427 +181755,67193,Paul Giamatti,1243763443 +181755,67534,bad story,1247591172 +181755,67997,BBC Films,1248550472 +181755,67997,James Gandolfini,1248550487 +181755,67997,politics,1248550469 +181755,68554,agnosticism,1242740517 +181755,68749,Woody Harrelson,1270156923 +181755,69757,Zooey Deschanel,1253468906 +181755,71535,Bill Murray,1262768696 +181755,71535,zombies,1262768703 +181755,72998,3d,1261307984 +181755,72998,blue indians in space,1261307953 +181755,72998,effects,1261307991 +181755,72998,too long,1261307956 +181755,80219,boobies guns and blood!,1287946882 +181755,80219,Danny Trejo,1287946885 +181755,80219,Michelle Rodriguez,1287946890 +181780,539,Good Romantic Comedies,1143034749 +181780,1288,heavy metal,1306695310 +181780,2424,Good Romantic Comedies,1143034474 +181780,3097,Good Romantic Comedies,1143034489 +181780,3210,1980s,1375647279 +181780,3210,classic,1375647282 +181780,3210,high school,1375647284 +181780,3210,Nudity (Full Frontal - Notable),1375647288 +181780,3210,Sean Penn,1375647290 +181780,3262,David Lynch,1347134298 +181780,3262,Interesting,1347134303 +181780,3262,Nudity (Topless - Notable),1347134306 +181780,3262,surreal,1347134309 +181780,3270,Good Romantic Comedies,1143034771 +181780,3270,My Favourite,1143034771 +181780,4823,Good Romantic Comedies,1143034453 +181780,4878,my favourite,1143034595 +181780,5377,my favourite,1143034581 +181780,5669,anti-Bush,1251820814 +181780,5669,Charlton Heston,1251820821 +181780,5669,Documentary,1251820799 +181780,5669,Gun Control,1251820791 +181780,5669,Michael Moore,1251820804 +181780,6155,Good Romantic Comedies,1143034797 +181780,6620,Acting,1307069757 +181780,7101,Michael J. Fox,1324882525 +181780,7101,Nudity (Topless),1324882542 +181780,7361,my favourite,1143034611 +181780,8622,anti-Bush,1251820708 +181780,8622,reality check,1251820700 +181780,27217,Documentary,1374864191 +181780,27217,OK Computer,1374864181 +181780,27217,Radiohead,1374864172 +181780,27217,Thom Yorke,1374864176 +181780,34405,Firefly,1143034703 +181780,34405,Great Sci-Fi,1143034703 +181780,34405,Incredible!,1143034703 +181780,34405,Must Watch/Own!,1143034703 +181780,34405,My Favourite,1143034703 +181780,34405,What Star Wars Should Be,1143034703 +181780,36525,Good Romantic Comedies,1143034445 +181780,39231,disappointing,1143463433 +181780,41527,God,1305412438 +181780,41527,Religion,1305412435 +181780,45950,global warming,1251820744 +181780,45950,reality check,1251820734 +181780,46578,comedy,1391731455 +181780,46578,dysfunctional family,1391731452 +181780,46578,quirky,1391731449 +181780,46578,social commentary,1391731463 +181780,46578,Steve Carell,1391731447 +181780,47937,dark comedy,1305495782 +181780,47999,Accuracte Portrayal,1305412596 +181780,48043,artistic,1345944499 +181780,48043,atmospheric,1345944497 +181780,48043,dreamlike,1345944495 +181780,48043,emotional,1345944528 +181780,48043,immortality,1345944502 +181780,48043,multiple storylines,1345944524 +181780,48043,Music,1345944521 +181780,48043,nonlinear,1345944522 +181780,48043,surreal,1345944516 +181780,48043,thought-provoking,1345944516 +181780,48043,visually appealing,1345944519 +181780,51540,based on a true story,1306256780 +181780,51540,David Fincher,1306256789 +181780,51540,Ending,1306256815 +181780,51540,Investigation,1306256803 +181780,51540,Too Long,1306256828 +181780,52245,figure skating,1359990524 +181780,52245,humorous,1359990555 +181780,52245,Jon Heder,1359990521 +181780,52245,Will Arnett,1359990529 +181780,52245,Will Ferrell,1359990519 +181780,53894,reality check,1251820676 +181780,56757,Johnny Depp,1266849387 +181780,56757,Musical,1266849411 +181780,56757,visually appealing,1266849403 +181780,60074,Jason Bateman,1251337575 +181780,60074,Messy,1251337572 +181780,60074,Will Smith,1251337578 +181780,63072,post-apocalyptic,1324176973 +181780,64497,Annoying Child,1251820571 +181780,64497,Environmental,1251820564 +181780,65230,Dogs,1264265699 +181780,65230,Family Drama,1264265740 +181780,65230,Forced Ending,1264265732 +181780,65230,Labrador,1264265696 +181780,66097,Animation,1264868226 +181780,66097,Claymation,1264868239 +181780,66097,Fairy Tale,1264868231 +181780,66097,Gothic,1264868222 +181780,69574,Alice In Wonderland,1306121228 +181780,69574,Lifetime Movie,1306121194 +181780,69574,Self Obsessed Mom,1306121240 +181780,74789,3D,1268102300 +181780,74789,Johnny Depp,1268102289 +181780,77561,cgi,1325540381 +181780,77561,Gwyneth Paltrow,1325540364 +181780,77561,Robert Downey Jr.,1325540360 +181780,77561,Scarlett Johansson,1325540365 +181780,77561,sequel,1325540377 +181780,82095,Alien Invasion,1326056120 +181780,82095,CGI,1326056124 +181780,82095,hot girls!,1326056142 +181780,82095,just not good,1326056129 +181780,82842,Biased,1374285708 +181780,82842,Factually Inaccurate,1374285762 +181780,82842,One sided,1374285747 +181780,82842,propaganda in disguise,1374285720 +181780,85881,acting,1399837799 +181780,85881,adolescence,1399837797 +181780,85881,adolescent psychology,1399837760 +181780,85881,legal system,1399837753 +181780,85881,Paul Giamatti,1399837811 +181780,85881,unusual- friendships,1399837762 +181780,85881,wrestling,1399837764 +181780,91371,Acting,1338948749 +181780,91371,Story,1338948754 +181780,91653,Adventure,1338231624 +181780,91653,Animals,1338231611 +181780,91653,Cameron Crowe,1338231615 +181780,91653,Family,1338231627 +181780,91653,Music,1338231619 +181780,91653,Whimsy,1338231637 +181780,92309,Comedy,1423487890 +181780,93272,Commercialization,1346076480 +181780,93272,Environmental Preservation,1346076464 +181780,93475,atheism,1383315373 +181780,93475,atmospheric,1383315376 +181780,93475,ghost story,1383315380 +181780,94864,aliens,1359990379 +181780,94864,Charlize Theron,1359990449 +181780,94864,corporations,1359990377 +181780,94864,philosophical,1359990433 +181780,94864,religion,1359990349 +181780,94864,Ridley Scott,1359990396 +181780,94864,sci fi,1359990374 +181780,94864,scifi,1359990372 +181780,94864,space travel,1359990394 +181780,94864,technology,1359990369 +181780,94864,unanswered questions,1359990367 +181780,94864,Unpredictable,1359990405 +181780,95088,feel good,1364696894 +181780,95441,buddy movie,1370468667 +181780,95441,crude humor,1370468662 +181780,95441,Mark Wahlberg,1370468676 +181780,95441,Mila Kunis,1370468679 +181780,95441,not funny,1370468658 +181780,95441,Nudity (Topless),1370468642 +181780,95441,Patrick Stewart,1370468674 +181780,95441,predictable,1370468683 +181780,97913,animation,1361153857 +181780,97913,cameos,1361153858 +181780,97913,disney,1361153855 +181780,97913,heart ripped out,1361153842 +181780,97913,Sarah Silverman,1361153835 +181780,97913,video games,1361153860 +181780,97938,Ang Lee,1437014225 +181780,97938,animals,1437014221 +181780,97938,cinematography,1437014220 +181780,97938,emotional,1437014203 +181780,97938,God's existance,1437014238 +181780,97938,great photograpy,1437014205 +181780,97938,India,1437014217 +181780,97938,ocean,1437014214 +181780,97938,religion,1437014201 +181780,97938,religious overtones,1437014224 +181780,97938,spiritual journey,1437014210 +181780,97938,stranded,1437014209 +181780,97938,surreal,1437014207 +181780,97938,Survival,1437014242 +181780,97938,visual effects,1437014212 +181780,97938,visually appealing,1437014218 +181780,97938,wisdom,1437014232 +181780,98961,Inaccurate,1406986252 +181780,98961,military,1406986262 +181780,98961,propaganda,1406986255 +181780,98961,torture,1406986259 +181780,101918,Documentary,1365975232 +181780,101918,Interesting,1365975211 +181780,101918,Politics,1365975215 +181780,101918,Religion,1365975224 +181780,101918,Violence,1365975220 +181780,102070,alcohol,1435856494 +181780,102070,alien,1435856514 +181780,102070,black comedy,1435856498 +181780,102070,camp,1435856518 +181780,102070,drinking,1435856520 +181780,102070,horror,1435856521 +181780,102070,humor,1435856523 +181780,102070,strong female lead,1435856530 +181780,102070,wierd,1435856516 +181780,102123,dialogue,1399249632 +181780,102123,hilarious,1399249572 +181780,102123,Hollywood,1399249629 +181780,102123,James Franco,1399249583 +181780,102123,Jonah Hill,1399249608 +181780,102123,Michael Cera,1399249578 +181780,102123,religion,1399249624 +181780,102123,Seth Rogen,1399249581 +181780,102123,story,1399249614 +181780,103141,animation,1398647145 +181780,103141,comedy,1398647147 +181780,103141,Pixar,1398647125 +181780,103141,sequel,1398647151 +181780,103141,setting:College,1398647158 +181780,103228,anime,1374686282 +181780,103228,ending,1374686256 +181780,103228,fun,1374686261 +181780,103228,giant robots,1374686243 +181780,103228,Guillermo del Toro,1374686251 +181780,103228,Ron Perlman,1374686248 +181780,103228,subgenre:Kaiju,1374686269 +181780,103228,visually appealing,1374686264 +181780,103688,Christianity,1415499006 +181780,103688,cliche,1415498987 +181780,103688,exorcism,1415498983 +181780,103688,Horror,1415498993 +181780,103688,paranormal investigators,1415498989 +181780,103688,possession,1415498996 +181780,104123,Jason Mewes,1400674929 +181780,104374,charming,1426343746 +181780,104374,family relationships,1426343754 +181780,104374,time travel,1426343744 +181780,104374,touching,1426343750 +181780,104841,cinematography,1417400355 +181780,104841,plot,1417400358 +181780,104841,visually appealing,1417400351 +181780,106696,animation,1398565838 +181780,106696,beautiful,1398565836 +181780,106696,Disney,1398565834 +181780,106696,good message,1398565971 +181780,106696,musical,1398565844 +181780,106696,siblings,1398565851 +181780,106696,voice acting,1398565858 +181780,108932,Batman,1404320926 +181780,108932,clever,1404320933 +181780,108932,fun,1404320943 +181780,108932,imagination,1404320945 +181780,108932,Jonah Hill,1404320919 +181780,108932,Morgan Freeman,1404320924 +181780,108932,stop motion,1404320931 +181780,110553,action,1413324394 +181780,110553,childish,1413324433 +181780,110553,comic book,1413324392 +181780,110553,dialogue,1413324399 +181780,110553,Emma Stone,1413324418 +181780,110553,Jamie Foxx,1413324402 +181780,110553,Paul Giamatti,1413324381 +181780,110553,sad,1413324411 +181780,110553,silly plot,1413324408 +181780,110553,superhero,1413324424 +181780,111364,bland hero,1401063502 +181780,111364,franchise,1401063507 +181780,111364,Gareth Edwards,1401063558 +181780,111364,Godzilla,1401063510 +181780,111364,special effects,1401063553 +181780,111659,Angelina Jolie,1436582178 +181780,111659,fairy tale,1436582184 +181780,111659,happy ending,1436582180 +181780,111659,sleeping beauty,1436582182 +181780,111659,visual effects,1436582176 +181780,112515,atmospheric,1446390252 +181780,112515,Metaphorical,1446390259 +181780,112515,psychological,1446390250 +181780,112788,cameron diaz,1419210166 +181780,112788,comedy,1419210170 +181780,112788,Jason Segel,1419210160 +181780,112788,sex,1419210172 +181780,114552,cheese,1425349434 +181780,114552,fantasy world,1425349437 +181780,114552,trolls,1425349433 +181780,114552,watch the credits,1425349508 +181780,114670,dark humor,1419173505 +181780,114670,imaginative,1419173533 +181780,114670,justin long,1419173510 +181780,115617,Animation,1435948409 +181780,115617,Disney,1435948391 +181780,115617,friendship,1435948407 +181780,115617,inspiring,1435948401 +181780,115617,japanese influence,1435948404 +181780,115617,robotics,1435948398 +181780,115617,superhero,1435948413 +181780,117529,Colin Trevorrow,1434401550 +181780,117529,dinosaurs,1434401544 +181780,117529,franchise,1434401553 +181780,117529,island,1434401546 +181780,122892,Action,1445822158 +181780,122892,artificial intelligence,1445822161 +181780,122892,Joss Whedon,1445822173 +181780,122892,marvel cinematic universe,1445822164 +181780,122892,superhero,1445822168 +181780,134853,Amy Poehler,1435345625 +181780,134853,Pixar,1435345601 +181811,260,classic,1433162801 +181811,260,sci-fi,1433162788 +181811,109487,mindfuck,1433163739 +181811,109487,sci-fi,1433163739 +181811,109487,space,1433163739 +181827,356,american dream,1439817274 +181827,356,tom hanks,1439817262 +181827,1569,Julia Roberts,1439817367 +181827,1569,Love,1439817361 +181827,1610,Tom Clancy,1439817406 +181827,1610,War,1439817397 +181827,2028,Tom Hanks,1439817613 +181827,2028,World War II,1439817608 +181827,2671,Hugh Grant,1439817332 +181827,2671,Julia Roberts,1439817327 +181827,2671,Love,1439817322 +181827,5010,Rangers,1439817191 +181827,5010,special forces,1439817176 +181827,81845,Colin Firth,1439817447 +181827,89753,author:John le Carré,1439817479 +181827,89753,Colin Firth,1439817486 +181827,89753,Spies,1439817493 +181827,107069,special forces,1439817583 +181830,293,friendship,1428895319 +181830,293,Jean Reno,1428895305 +181830,293,love story,1428895325 +181830,293,Natalie Portman,1428895312 +181830,293,organized crime,1428895332 +181830,1721,Leonardo DiCaprio,1428895194 +181830,1721,Oscar (Best Picture),1428895169 +181830,1721,romance,1428895152 +181830,1721,true story,1428895158 +181830,1961,genius,1428895078 +181830,1961,heartwarming,1428895054 +181830,1961,Oscar (Best Picture),1428895067 +181830,1961,true story,1428895058 +181830,2691,genius,1428894211 +181830,4886,Comedy,1428894987 +181830,4886,Pixar,1428894984 +181830,4995,Drama,1428894679 +181830,4995,genius,1428894691 +181830,4995,intelligent,1428894686 +181830,4995,mathematics,1428894668 +181830,4995,true story,1428894672 +181830,5989,crime,1428894535 +181830,5989,intelligent,1428894593 +181830,5989,Tom Hanks,1428894526 +181830,5989,true story,1428894550 +181830,76093,adventure,1428894367 +181830,76093,friendship,1428894360 +181840,260,Fun,1443148013 +181853,101577,girls,1443732495 +181853,106002,book,1443732508 +181853,106002,space,1443732510 +181853,122882,apocalyptic,1443732557 +181853,122882,dystopian,1443732552 +181853,122882,gore,1443732538 +181853,122882,hot,1443732530 +181853,122882,photography,1443732533 +181853,122882,visually appealing,1443732561 +181853,130490,girls,1443732486 +181903,1,bright,1173304070 +181903,1,DARING RESCUES,1173304095 +181903,1,fanciful,1173304058 +181903,1,HEROIC MISSION,1173304102 +181903,1,humorous,1173304049 +181903,1,light,1173304062 +181903,1,rousing,1173304074 +181903,1,TOYS COME TO LIFE,1173304091 +181903,1,UNLIKELY FRIENDSHIPS,1173304106 +181903,1,warm,1173304052 +181903,1,witty,1173304077 +181903,6,atmospheric,1172056104 +181903,6,bleak,1172056114 +181903,6,slick,1172056117 +181903,6,somber,1172056133 +181903,6,tense,1172056097 +181903,6,visceral,1172056100 +181903,6,witty,1172056120 +181903,24,earnest,1171172897 +181903,24,elegiac,1171172922 +181903,24,poignant,1171172931 +181903,24,reflective,1171172904 +181903,24,tearjerking,1171172911 +181903,25,ALCOHOLISM,1172498948 +181903,25,atmospheric,1172498934 +181903,25,elegiac,1172498903 +181903,25,intimate,1172498922 +181903,25,melancholy,1172498869 +181903,25,poignant,1172498915 +181903,25,PROSTITUTES,1172498977 +181903,25,STAR-CROSSED LOVERS,1172498962 +181903,25,SUICIDE,1172498970 +181903,25,understated,1172498926 +181903,29,atmospheric,1171675098 +181903,29,bleak,1171675113 +181903,29,dreamlike,1171675116 +181903,29,fanciful,1171675110 +181903,29,hallucinatory,1171675125 +181903,29,stylized,1171675090 +181903,29,whimsical,1171675094 +181903,47,creepy,1171761700 +181903,47,disturbing,1171761724 +181903,47,gloomy,1171761704 +181903,47,grim,1171761707 +181903,47,gruesome,1171761720 +181903,47,menacing,1171761733 +181903,47,MURDER INVESTIGATIONS,1173284492 +181903,47,ominous,1171761716 +181903,47,SERIAL KILLERS,1173284487 +181903,72,literate,1172143073 +181903,72,talky,1172143075 +181903,72,understated,1172143093 +181903,72,wistful,1172143081 +181903,72,witty,1172143078 +181903,72,wry,1172143090 +181903,97,angry,1171438869 +181903,97,biting,1171438886 +181903,97,bleak,1171438873 +181903,97,confrontational,1171438878 +181903,97,cynical,1171438891 +181903,97,disturbing,1171438900 +181903,97,ominous,1171438904 +181903,101,deadpan,1172882968 +181903,101,humorous,1172882953 +181903,101,NOTHING GOES RIGHT,1172882983 +181903,101,quirky,1172882946 +181903,101,SIBLING RELATIONSHIPS,1172882992 +181903,101,sweet,1172882961 +181903,101,talky,1172882950 +181903,101,UNLIKELY CRIMINALS,1172882978 +181903,101,wistful,1172882964 +181903,105,deliberate,1171339694 +181903,105,heartwarming,1171339680 +181903,105,lyrical,1171339657 +181903,105,sentimental,1171339661 +181903,105,tearjerking,1171339667 +181903,105,warm,1171339673 +181903,105,wistful,1171339688 +181903,110,earnest,1171182202 +181903,110,forceful,1171182192 +181903,110,lavish,1171182187 +181903,110,passionate,1171182207 +181903,110,poignant,1171182214 +181903,110,sweeping,1171182180 +181903,110,visceral,1171182197 +181903,111,ASSASSINATION PLOTS,1172498128 +181903,111,disturbing,1171709246 +181903,111,forceful,1171709255 +181903,111,grim,1171709233 +181903,111,lurid,1171709264 +181903,111,menacing,1171709259 +181903,111,OBSESSIVE QUESTS,1172498140 +181903,111,paranoid,1171709230 +181903,111,PROSTITUTES,1172498149 +181903,111,UNREQUITED LOVE,1172498162 +181903,111,visceral,1171709242 +181903,123,BRIEF ENCOUNTERS,1172588586 +181903,123,dreamlike,1172282199 +181903,123,fanciful,1172282203 +181903,123,lyrical,1172282207 +181903,123,melancholy,1172282219 +181903,123,MISTAKEN IDENTITIES,1172588599 +181903,123,nocturnal,1172282290 +181903,123,OPPOSITES ATTRACT,1172588589 +181903,123,reflective,1172282222 +181903,123,stylized,1172282228 +181903,123,urbane,1172282286 +181903,149,AMNESIA,1173189020 +181903,149,cerebral,1173188981 +181903,149,deliberate,1173188985 +181903,149,HAUNTED BY THE PAST,1173189016 +181903,149,humorous,1173188994 +181903,149,literate,1173188997 +181903,149,quirky,1173188974 +181903,149,REDEMPTION,1173189025 +181903,149,stylized,1173188978 +181903,149,UNLIKELY FRIENDSHIPS,1173189040 +181903,149,whimsical,1173189001 +181903,150,claustrophobic,1171182334 +181903,150,earnest,1171182310 +181903,150,matter-of-fact,1171182320 +181903,150,nostalgic,1171182341 +181903,150,tense,1171182326 +181903,151,atmospheric,1171743534 +181903,151,earthy,1171743551 +181903,151,literate,1171743547 +181903,151,passionate,1171743519 +181903,151,rousing,1171743526 +181903,151,sweeping,1171743522 +181903,151,tense,1171743537 +181903,154,DOUBLE LIFE,1173292103 +181903,154,enigmatic,1171147711 +181903,154,EXTRAMARITAL AFFAIRS,1173292108 +181903,154,PROSTITUTES,1173292114 +181903,154,satirical,1171147732 +181903,154,sexy,1171147722 +181903,154,stylized,1171147718 +181903,154,witty,1171147740 +181903,154,wry,1171147727 +181903,162,cynical,1171622202 +181903,162,deliberate,1171622169 +181903,162,disturbing,1171622182 +181903,162,irreverent,1171622194 +181903,162,quirky,1171622177 +181903,162,raunchy,1171622197 +181903,162,sexual,1171622186 +181903,162,wry,1171622160 +181903,164,atmospheric,1173191379 +181903,164,FEMMES FATALES,1173191405 +181903,164,moody,1173191373 +181903,164,nostalgic,1173191386 +181903,164,PRIVATE EYES,1173191431 +181903,164,RACE RELATIONS,1173191424 +181903,164,stylized,1173191383 +181903,164,understated,1173191400 +181903,193,campy,1263627506 +181903,193,cynical,1172498446 +181903,193,DANCER'S LIFE,1172498484 +181903,193,FALTERING FRIENDSHIPS,1172498520 +181903,193,lurid,1172498442 +181903,193,Nudity (Full Frontal - Notable),1263627520 +181903,193,raunchy,1172498457 +181903,193,RISE AND FALL STORIES,1172498469 +181903,193,SELF-DESTRUCTIVE ROMANCE,1172498505 +181903,193,sexual,1172498453 +181903,199,bittersweet,1171264847 +181903,199,lavish,1171264854 +181903,199,lyrical,1171264860 +181903,199,passionate,1171264836 +181903,199,stylized,1171264886 +181903,199,sweet,1171264865 +181903,199,wistful,1171264842 +181903,215,AMERICANS ABROAD,1173284734 +181903,215,BRIEF ENCOUNTERS,1173284716 +181903,215,literate,1171743638 +181903,215,poignant,1171743629 +181903,215,reflective,1171743642 +181903,215,talky,1171743605 +181903,215,TWENTYSOMETHING LIFE,1173284743 +181903,215,understated,1171743616 +181903,215,urbane,1171743622 +181903,215,VACATION ROMANCES,1173284723 +181903,215,wistful,1171743626 +181903,215,witty,1171743609 +181903,223,cynical,1172587257 +181903,223,irreverent,1172587270 +181903,223,literate,1172587287 +181903,223,matter-of-fact,1172587274 +181903,223,MEN'S FRIENDSHIPS,1172587312 +181903,223,quirky,1172587279 +181903,223,talky,1172587253 +181903,223,TWENTYSOMETHING LIFE,1172587332 +181903,223,witty,1172587263 +181903,223,WORK ETHICS,1172587319 +181903,223,wry,1172587259 +181903,231,goofy,1171324492 +181903,231,irreverent,1171324526 +181903,231,madcap,1171324500 +181903,231,quirky,1171324512 +181903,231,raunchy,1171324508 +181903,231,silly,1171324496 +181903,235,affectionate,1171525736 +181903,235,elegiac,1171525741 +181903,235,gentle,1171525777 +181903,235,poignant,1171525749 +181903,235,quirky,1171525764 +181903,235,witty,1171525753 +181903,247,FANTASY LIFE,1172880565 +181903,247,OPPOSITES ATTRACT,1172880590 +181903,247,passionate,1171171717 +181903,247,poignant,1171171705 +181903,247,REDEMPTION,1172880597 +181903,247,SEXUAL AWAKENING,1172880577 +181903,247,stylized,1171171722 +181903,247,visceral,1171171712 +181903,247,wistful,1171171728 +181903,256,bright,1171767020 +181903,256,earnest,1171767034 +181903,256,easygoing,1171767017 +181903,256,light,1171767029 +181903,256,silly,1171767013 +181903,260,atmospheric,1172036751 +181903,260,HEROIC MISSION,1172500754 +181903,260,humorous,1172036742 +181903,260,ROBOTS AND ANDROIDS,1172500778 +181903,260,rousing,1172036738 +181903,260,SPACE TRAVEL,1172500763 +181903,260,SPACE WARS,1172500748 +181903,260,stylized,1172036746 +181903,263,angry,1171696155 +181903,263,biting,1171696220 +181903,263,cathartic,1171696163 +181903,263,drab,1171696177 +181903,263,forceful,1171696212 +181903,263,harsh,1171696216 +181903,265,bittersweet,1172503655 +181903,265,compassionate,1172503675 +181903,265,downbeat,1172503665 +181903,265,intimate,1172503661 +181903,265,MOTHERS AND DAUGHTERS,1172503697 +181903,265,passionate,1172503651 +181903,265,STAR-CROSSED LOVERS,1172503682 +181903,265,SUPERNATURAL ROMANCE,1172503715 +181903,265,warm,1172503671 +181903,288,frantic,1172357085 +181903,288,hallucinatory,1172357099 +181903,288,lurid,1172357091 +181903,288,menacing,1172357117 +181903,288,paranoid,1172357088 +181903,288,satirical,1172357130 +181903,288,stylized,1172357103 +181903,288,visceral,1172357121 +181903,293,disturbing,1171438686 +181903,293,harsh,1171438678 +181903,293,humorous,1171438682 +181903,293,quirky,1171438696 +181903,293,slick,1171438664 +181903,293,tense,1171438667 +181903,293,visceral,1171438672 +181903,296,CONS AND SCAMS,1172498692 +181903,296,HIRED KILLERS,1172498686 +181903,296,HOSTAGE SITUATIONS,1172498715 +181903,296,humorous,1171180572 +181903,296,irreverent,1171180578 +181903,296,literate,1171180583 +181903,296,quirky,1171180562 +181903,296,rousing,1171180589 +181903,296,talky,1171180567 +181903,296,THRILL CRIME,1172498703 +181903,296,visceral,1171180556 +181903,306,atmospheric,1171431420 +181903,306,enigmatic,1171431404 +181903,306,gentle,1171431430 +181903,306,lyrical,1171431400 +181903,306,meditative,1171431387 +181903,306,melancholy,1171431411 +181903,306,reflective,1171431391 +181903,307,atmospheric,1171431295 +181903,307,CRISIS OF FAITH,1173291574 +181903,307,DEATH OF A CHILD,1173291585 +181903,307,DEATH OF A SPOUSE,1173291551 +181903,307,enigmatic,1171431269 +181903,307,HAUNTED BY THE PAST,1173291560 +181903,307,lyrical,1171431276 +181903,307,meditative,1171431262 +181903,307,melancholy,1171431283 +181903,307,somber,1171431304 +181903,307,STARTING OVER,1173291539 +181903,308,biting,1171431338 +181903,308,cynical,1171431335 +181903,308,ironic,1171431357 +181903,308,satirical,1171431349 +181903,308,wry,1171431330 +181903,316,atmospheric,1171264046 +181903,316,lavish,1171264024 +181903,316,rousing,1171264015 +181903,316,slick,1171264040 +181903,316,sweeping,1171264028 +181903,316,tense,1171264035 +181903,318,compassionate,1171181433 +181903,318,earnest,1171181426 +181903,318,reflective,1171181454 +181903,318,sentimental,1171181446 +181903,318,talky,1171181438 +181903,318,warm,1171181460 +181903,319,atmospheric,1173103861 +181903,319,biting,1173103865 +181903,319,CRIMINAL'S REVENGE,1173103907 +181903,319,cynical,1173103847 +181903,319,FALTERING FRIENDSHIPS,1173103888 +181903,319,HIDE THE DEAD BODY,1173103916 +181903,319,macabre,1173103854 +181903,319,menacing,1173103871 +181903,319,quirky,1173103850 +181903,319,stylized,1173103880 +181903,319,UNLIKELY CRIMINALS,1173103896 +181903,326,gritty,1172281932 +181903,326,poignant,1172281942 +181903,326,tense,1172281935 +181903,334,austere,1173101633 +181903,334,autumnal,1173101624 +181903,334,elegiac,1173101637 +181903,334,FAMILIES IN CRISIS,1173101688 +181903,334,FAMILY GATHERINGS,1173101704 +181903,334,intimate,1173101643 +181903,334,literate,1173101617 +181903,334,lyrical,1173101620 +181903,334,meditative,1173101649 +181903,334,SIBLING RELATIONSHIPS,1173101714 +181903,334,talky,1173101657 +181903,334,UNREQUITED LOVE,1173101673 +181903,334,wistful,1173101661 +181903,342,bittersweet,1172136771 +181903,342,bright,1172136748 +181903,342,gentle,1172136752 +181903,342,humorous,1172136745 +181903,342,light,1172136759 +181903,342,quirky,1172136739 +181903,342,rousing,1172136763 +181903,342,upbeat,1172136766 +181903,349,confrontational,1171439363 +181903,349,rousing,1171439367 +181903,349,tense,1171439371 +181903,353,bittersweet,1171621163 +181903,353,dreamlike,1171621184 +181903,353,elegiac,1171621171 +181903,353,goth,1171621142 +181903,353,gritty,1171621151 +181903,353,menacing,1171621159 +181903,353,stylized,1171621147 +181903,356,bittersweet,1171180646 +181903,356,earnest,1171180665 +181903,356,heartwarming,1171180652 +181903,356,MOTHERS AND SONS,1172505700 +181903,356,nostalgic,1171180660 +181903,356,RAGS TO RICHES,1172505693 +181903,356,SAINTLY FOOLS,1172505688 +181903,356,sentimental,1171180641 +181903,356,sweeping,1171180670 +181903,356,UNREQUITED LOVE,1172505708 +181903,356,whimsical,1171180676 +181903,377,forceful,1171324165 +181903,377,rousing,1171324175 +181903,377,tense,1171324169 +181903,377,visceral,1171324183 +181903,390,campy,1258738823 +181903,390,hallucinatory,1171151749 +181903,390,irreverent,1171151729 +181903,390,lurid,1171151740 +181903,390,raunchy,1171151734 +181903,390,sexual,1171151723 +181903,441,affectionate,1171339433 +181903,441,deadpan,1171339444 +181903,441,easygoing,1171339406 +181903,441,HIGH SCHOOL LIFE,1172587878 +181903,441,irreverent,1171339415 +181903,441,nostalgic,1171339439 +181903,441,PARTY FILM,1172587893 +181903,441,PEER PRESSURE,1172587884 +181903,441,quirky,1171339423 +181903,446,compassionate,1172281583 +181903,446,earnest,1172281578 +181903,446,lavish,1172281557 +181903,446,passionate,1172281564 +181903,446,sweeping,1172281560 +181903,457,frantic,1171180999 +181903,457,menacing,1171181006 +181903,457,ominous,1171180984 +181903,457,paranoid,1171180994 +181903,457,rousing,1171180989 +181903,457,tense,1171180980 +181903,471,BOARDROOM JUNGLE,1173102600 +181903,471,easygoing,1173102518 +181903,471,FIGHTING THE SYSTEM,1173102580 +181903,471,madcap,1173102522 +181903,471,quirky,1173102525 +181903,471,RAGS TO RICHES,1173102585 +181903,471,satirical,1173102533 +181903,471,SUCCESS IS THE BEST REVENGE,1173102561 +181903,471,UNDERDOGS,1173102570 +181903,471,urbane,1173102541 +181903,471,whimsical,1173102549 +181903,471,witty,1173102537 +181903,480,creepy,1171180862 +181903,480,humorous,1171180897 +181903,480,menacing,1171180873 +181903,480,ominous,1171180867 +181903,480,slick,1171180879 +181903,480,stylized,1171180884 +181903,480,tense,1171180890 +181903,481,atmospheric,1172390546 +181903,481,bleak,1172390553 +181903,481,creepy,1172390531 +181903,481,disturbing,1172390534 +181903,481,menacing,1172390550 +181903,481,tense,1172390537 +181903,493,angry,1171685076 +181903,493,bleak,1171685083 +181903,493,forceful,1171685087 +181903,493,grim,1171685071 +181903,493,tense,1171685090 +181903,493,visceral,1171685068 +181903,495,claustrophobic,1171708895 +181903,495,disturbing,1171708884 +181903,495,passionate,1171708902 +181903,495,poignant,1171708906 +181903,495,sexual,1171708891 +181903,501,angry,1172143470 +181903,501,biting,1172143473 +181903,501,bleak,1172143490 +181903,501,drab,1172143476 +181903,501,gritty,1172143494 +181903,501,harsh,1172143478 +181903,501,intimate,1172143488 +181903,509,atmospheric,1171767467 +181903,509,lyrical,1171767471 +181903,509,melancholy,1171767476 +181903,509,passionate,1171767493 +181903,509,sexy,1171767497 +181903,509,stylized,1171767486 +181903,514,angry,1172355865 +181903,514,biting,1172355836 +181903,514,confrontational,1172355869 +181903,514,humorous,1172355853 +181903,514,irreverent,1172355839 +181903,514,literate,1172355859 +181903,514,talky,1172355841 +181903,514,wintry,1172355845 +181903,514,wry,1172355855 +181903,523,bittersweet,1172209621 +181903,523,compassionate,1172209615 +181903,523,intimate,1172209597 +181903,523,reflective,1172209600 +181903,523,understated,1172209604 +181903,523,wry,1172209624 +181903,527,austere,1171182665 +181903,527,bleak,1171182695 +181903,527,cathartic,1171182671 +181903,527,compassionate,1171182653 +181903,527,deliberate,1171182702 +181903,527,disturbing,1171182659 +181903,527,earnest,1171182641 +181903,527,elegiac,1171182688 +181903,527,somber,1171182646 +181903,535,biting,1171428980 +181903,535,CRUMBLING MARRIAGES,1172966011 +181903,535,FALTERING FRIENDSHIPS,1172966023 +181903,535,FATHERS AND SONS,1172966032 +181903,535,humorous,1171429007 +181903,535,INTERSECTING LIVES,1172966006 +181903,535,literate,1171428987 +181903,535,melancholy,1171429012 +181903,535,MOTHERS AND DAUGHTERS,1172966040 +181903,535,racy,1171428999 +181903,535,REDEMPTION,1172966018 +181903,535,sweeping,1171428996 +181903,541,atmospheric,1172211254 +181903,541,dreamlike,1172211265 +181903,541,eerie,1172211269 +181903,541,EXPERIMENTS GONE AWRY,1172587192 +181903,541,FUTURE DYSTOPIAS,1172587120 +181903,541,melancholy,1172211276 +181903,541,OBSESSIVE QUESTS,1172587137 +181903,541,ominous,1172211328 +181903,541,ROBOTS AND ANDROIDS,1172587127 +181903,541,somber,1172211288 +181903,541,stylized,1172211321 +181903,541,TECHNOLOGY RUN AMOK,1172587174 +181903,551,atmospheric,1172353919 +181903,551,eerie,1172353933 +181903,551,humorous,1172353914 +181903,551,lavish,1172353949 +181903,551,merry,1172353923 +181903,551,poignant,1172353937 +181903,551,warm,1172353941 +181903,553,gritty,1171620437 +181903,553,SHERIFFS AND OUTLAWS,1172498077 +181903,553,stirring,1171620441 +181903,553,TAMING THE WEST,1172498089 +181903,553,visceral,1171620432 +181903,565,atmospheric,1172375284 +181903,565,dreamlike,1172375289 +181903,565,eerie,1172375293 +181903,565,fanciful,1172375297 +181903,565,goth,1172375320 +181903,565,moody,1172375312 +181903,565,stylized,1172375317 +181903,587,bittersweet,1171346039 +181903,587,humorous,1171346051 +181903,587,passionate,1171346047 +181903,587,sensual,1171346059 +181903,587,sentimental,1171346031 +181903,587,sweet,1171346063 +181903,587,tearjerking,1171346070 +181903,589,END OF THE WORLD,1172644088 +181903,589,HEROIC MISSION,1172644077 +181903,589,menacing,1172644049 +181903,589,paranoid,1172644038 +181903,589,ROBOTS AND ANDROIDS,1172644066 +181903,589,slick,1172644052 +181903,589,stylized,1172644035 +181903,589,tense,1172644054 +181903,589,TIME TRAVEL,1172644096 +181903,589,visceral,1172644041 +181903,590,bittersweet,1171182497 +181903,590,compassionate,1171182483 +181903,590,earnest,1171182476 +181903,590,poignant,1171182491 +181903,590,sweeping,1171182468 +181903,592,atmospheric,1171182066 +181903,592,bleak,1171182085 +181903,592,dreamlike,1171182073 +181903,592,goth,1171182059 +181903,592,lavish,1171182080 +181903,592,moody,1171182050 +181903,592,stylized,1171182045 +181903,592,tense,1171182054 +181903,593,creepy,1171180753 +181903,593,disturbing,1171180777 +181903,593,downbeat,1171180790 +181903,593,gruesome,1171180795 +181903,593,HAUNTED BY THE PAST,1172505780 +181903,593,menacing,1171180771 +181903,593,MIND GAMES,1172505762 +181903,593,MURDER INVESTIGATIONS,1173213872 +181903,593,ROOKIE COPS,1172505746 +181903,593,SERIAL KILLERS,1172505753 +181903,593,tense,1171180783 +181903,593,TRAPPED OR CONFINED,1172505768 +181903,595,affectionate,1173304517 +181903,595,FATHERS AND DAUGHTERS,1173304582 +181903,595,gentle,1173304521 +181903,595,heartwarming,1173304525 +181903,595,humorous,1173304535 +181903,595,lavish,1173304529 +181903,595,OPPOSITES ATTRACT,1173304554 +181903,595,SERVANTS AND EMPLOYERS,1173304573 +181903,595,sweet,1173304541 +181903,595,whimsical,1173304545 +181903,599,atmospheric,1171743300 +181903,599,bleak,1171743268 +181903,599,cynical,1171743276 +181903,599,earthy,1171743291 +181903,599,gritty,1171743264 +181903,599,melancholy,1171743288 +181903,599,ONE LAST HEIST,1172587613 +181903,599,SHERIFFS AND OUTLAWS,1172587620 +181903,599,stylized,1171743261 +181903,599,tense,1171743280 +181903,608,affectionate,1171182833 +181903,608,CRIME GONE AWRY,1172961763 +181903,608,deadpan,1171182808 +181903,608,goofy,1171182827 +181903,608,KIDNAPPING,1172961768 +181903,608,quirky,1171182816 +181903,608,wintry,1171182801 +181903,608,witty,1171182821 +181903,628,atmospheric,1173213793 +181903,628,lurid,1173213779 +181903,628,MURDER INVESTIGATIONS,1173213820 +181903,628,slick,1173213797 +181903,628,STAR LAWYERS,1173213810 +181903,628,talky,1173213786 +181903,645,AGE DISPARITY ROMANCE,1173188610 +181903,645,deliberate,1173188589 +181903,645,LOVE TRIANGLES,1173188606 +181903,645,lyrical,1173188593 +181903,645,moody,1173188574 +181903,645,reflective,1173188577 +181903,645,understated,1173188581 +181903,653,bittersweet,1171947675 +181903,653,dreamlike,1171947664 +181903,653,fanciful,1171947616 +181903,653,humorous,1171947646 +181903,653,poignant,1171947656 +181903,653,sweet,1171947633 +181903,653,whimsical,1171947622 +181903,665,biting,1172218130 +181903,665,cerebral,1172218148 +181903,665,cynical,1172218138 +181903,665,harsh,1172218151 +181903,665,irreverent,1172218134 +181903,665,madcap,1172218154 +181903,665,sweeping,1172218165 +181903,670,ARRANGED MARRIAGES,1172881076 +181903,670,DEATH OF A SPOUSE,1172881063 +181903,670,FATHERS AND SONS,1172881073 +181903,670,intimate,1171664531 +181903,670,lyrical,1171664554 +181903,670,passionate,1171664536 +181903,670,poignant,1171664559 +181903,670,stylized,1171664539 +181903,670,understated,1171664550 +181903,670,WRITER'S LIFE,1172881092 +181903,680,deliberate,1172965425 +181903,680,eerie,1172965428 +181903,680,FUTURE DYSTOPIAS,1172965468 +181903,680,literate,1172965437 +181903,680,meditative,1172965451 +181903,680,moody,1172965455 +181903,680,PRIVATE EYES,1172965472 +181903,680,stylized,1172965458 +181903,681,COLONIALISM,1172959266 +181903,681,CRIME SPREES,1172959278 +181903,681,CULTURE CLASH,1172959305 +181903,681,cynical,1172959208 +181903,681,EXTRAMARITAL AFFAIRS,1172959296 +181903,681,humorous,1172959212 +181903,681,POLICE CORRUPTION,1172959251 +181903,681,quirky,1172959215 +181903,681,satirical,1172959221 +181903,681,UNLIKELY CRIMINALS,1172959239 +181903,681,witty,1172959225 +181903,702,austere,1172130501 +181903,702,biting,1172130497 +181903,702,bleak,1172130478 +181903,702,disturbing,1172130484 +181903,702,intimate,1172130505 +181903,702,matter-of-fact,1172130488 +181903,702,stylized,1172130509 +181903,702,talky,1172130481 +181903,705,affectionate,1173215698 +181903,705,biting,1173215688 +181903,705,bright,1173215708 +181903,705,goofy,1173215702 +181903,705,humorous,1173215712 +181903,705,ironic,1173215684 +181903,705,madcap,1173215694 +181903,705,rousing,1173215677 +181903,705,UNDERDOGS,1173215724 +181903,714,bleak,1171432633 +181903,714,dreamlike,1171432637 +181903,714,enigmatic,1171432661 +181903,714,hallucinatory,1171432653 +181903,714,melancholy,1171432643 +181903,714,quirky,1171432666 +181903,716,angry,1171322542 +181903,716,cynical,1171322547 +181903,716,gritty,1171322530 +181903,716,KIDS IN TROUBLE,1172500611 +181903,716,lurid,1171322534 +181903,716,STREET GANGS,1172500604 +181903,716,visceral,1171322553 +181903,735,campy,1171672451 +181903,735,dreamlike,1171672473 +181903,735,goth,1171672466 +181903,735,humorous,1171672480 +181903,735,macabre,1171672460 +181903,735,satirical,1171672470 +181903,735,stylized,1171672455 +181903,750,biting,1172051687 +181903,750,cynical,1172051673 +181903,750,deadpan,1172051704 +181903,750,irreverent,1172051670 +181903,750,literate,1172051692 +181903,750,satirical,1172051667 +181903,750,witty,1172051683 +181903,757,dreamlike,1172282058 +181903,757,lavish,1172282080 +181903,757,poignant,1172282083 +181903,757,stylized,1172282062 +181903,757,sweeping,1172282065 +181903,762,Nudity (Topless - Notable),1263627585 +181903,780,flashy,1171324305 +181903,780,frantic,1171324296 +181903,780,humorous,1171324322 +181903,780,ominous,1171324289 +181903,780,rousing,1171324284 +181903,780,tense,1171324302 +181903,785,deadpan,1171150662 +181903,785,goofy,1171150299 +181903,785,madcap,1171150303 +181903,785,raunchy,1171150310 +181903,785,silly,1171150293 +181903,785,witty,1171150656 +181903,823,light,1171708982 +181903,823,literate,1171708976 +181903,823,sexy,1171708991 +181903,823,summery,1171708980 +181903,823,talky,1171708994 +181903,841,atmospheric,1171324834 +181903,841,claustrophobic,1171324884 +181903,841,disturbing,1171324851 +181903,841,goth,1171324838 +181903,841,gruesome,1171324856 +181903,841,moody,1171324861 +181903,841,ominous,1171324872 +181903,841,somber,1171324876 +181903,858,FALL FROM POWER,1173284980 +181903,858,FATHERS AND SONS,1173284960 +181903,858,lavish,1171264105 +181903,858,MAFIA LIFE,1173284972 +181903,858,melancholy,1171264113 +181903,858,menacing,1171264118 +181903,858,RISE TO POWER,1173284956 +181903,858,somber,1171264100 +181903,858,stylized,1171264123 +181903,858,sweeping,1171264097 +181903,858,visceral,1171264131 +181903,866,atmospheric,1171950005 +181903,866,downbeat,1171949983 +181903,866,ominous,1171949989 +181903,866,sexy,1171949985 +181903,866,stylized,1171950001 +181903,866,tense,1171949996 +181903,902,bittersweet,1172896054 +181903,902,elegant,1172896044 +181903,902,HAUNTED BY THE PAST,1172896075 +181903,902,humorous,1172896015 +181903,902,lyrical,1172896019 +181903,902,satirical,1172896022 +181903,902,sentimental,1172896033 +181903,902,SOCIAL CLIMBING,1172896069 +181903,902,urbane,1172896030 +181903,902,wistful,1172896036 +181903,903,atmospheric,1171754512 +181903,903,deliberate,1171754517 +181903,903,disturbing,1171754521 +181903,903,eerie,1171754529 +181903,903,HAUNTED BY THE PAST,1172966637 +181903,903,melancholy,1171754533 +181903,903,paranoid,1171754536 +181903,903,PRIVATE EYES,1172966644 +181903,903,SELF-DESTRUCTIVE ROMANCE,1172966656 +181903,904,AMATEUR SLEUTHS,1172587007 +181903,904,claustrophobic,1172206335 +181903,904,menacing,1172206343 +181903,904,tense,1172206338 +181903,904,urbane,1172206374 +181903,904,VOYEURS,1172586992 +181903,904,WITNESSING A CRIME,1172587002 +181903,904,wry,1172206346 +181903,906,atmospheric,1172354083 +181903,906,eerie,1172354079 +181903,906,gloomy,1172354093 +181903,906,paranoid,1172354101 +181903,906,tense,1172354086 +181903,906,understated,1172354097 +181903,908,FLIGHT OF THE INNOCENT,1172874157 +181903,908,menacing,1172874123 +181903,908,MISTAKEN IDENTITIES,1172874170 +181903,908,paranoid,1172874119 +181903,908,rousing,1172874115 +181903,908,tense,1172874109 +181903,908,urbane,1172874133 +181903,908,witty,1172874141 +181903,908,wry,1172874137 +181903,911,elegant,1172364556 +181903,911,humorous,1172364543 +181903,911,light,1172364546 +181903,911,slick,1172364548 +181903,911,urbane,1172364562 +181903,912,atmospheric,1171171896 +181903,912,bittersweet,1171171889 +181903,912,earnest,1171171902 +181903,912,elegant,1171171909 +181903,912,sentimental,1171171883 +181903,913,atmospheric,1171754330 +181903,913,cynical,1171754334 +181903,913,gritty,1171754340 +181903,913,literate,1171754352 +181903,913,stylized,1171754348 +181903,919,bright,1171345827 +181903,919,dreamlike,1171345835 +181903,919,earnest,1171345859 +181903,919,heartwarming,1171345845 +181903,919,lavish,1171345831 +181903,919,sweet,1171345866 +181903,919,wistful,1171345854 +181903,922,atmospheric,1171663042 +181903,922,biting,1171663025 +181903,922,elegiac,1171663030 +181903,922,irreverent,1171663038 +181903,922,satirical,1171663045 +181903,923,atmospheric,1171693677 +181903,923,enigmatic,1171693681 +181903,923,ironic,1171693688 +181903,923,literate,1171693664 +181903,923,melancholy,1171693698 +181903,923,poignant,1171693691 +181903,923,sweeping,1171693668 +181903,924,atmospheric,1171699120 +181903,924,BENIGN ALIENS,1172587430 +181903,924,cerebral,1171699099 +181903,924,chilly,1171699117 +181903,924,COMPUTER PARANOIA,1172587422 +181903,924,deliberate,1171699104 +181903,924,enigmatic,1171699124 +181903,924,FUTURE DYSTOPIAS,1172587441 +181903,924,meditative,1171699108 +181903,924,somber,1171699133 +181903,924,SPACE TRAVEL,1172587410 +181903,928,atmospheric,1171950159 +181903,928,enigmatic,1171950180 +181903,928,gloomy,1171950184 +181903,928,lavish,1171950177 +181903,928,moody,1171950163 +181903,928,ominous,1171950166 +181903,948,earthy,1171602861 +181903,948,elegiac,1171602824 +181903,948,lavish,1171602832 +181903,948,melancholy,1171602837 +181903,948,poignant,1171602854 +181903,948,stirring,1171602847 +181903,948,sweeping,1171602820 +181903,951,BATTLE OF THE SEXES,1173212830 +181903,951,biting,1173212791 +181903,951,humorous,1173212781 +181903,951,madcap,1173212767 +181903,951,MEMBERS OF THE PRESS,1173212844 +181903,951,quirky,1173212800 +181903,951,satirical,1173212773 +181903,951,talky,1173212784 +181903,951,WORK ETHICS,1173212817 +181903,954,angry,1173284071 +181903,954,FIGHTING THE SYSTEM,1173284103 +181903,954,humorous,1173284083 +181903,954,passionate,1173284068 +181903,954,POLITICAL CORRUPTION,1173284113 +181903,954,satirical,1173284077 +181903,954,SOCIAL INJUSTICE,1173284098 +181903,954,UNDERDOGS,1173284120 +181903,955,easygoing,1172897476 +181903,955,humorous,1172897492 +181903,955,irreverent,1172897496 +181903,955,madc,1172897466 +181903,955,OPPOSITES ATTRACT,1172897508 +181903,955,OTHERWISE ENGAGED,1172897513 +181903,955,quirky,1172897480 +181903,955,urbane,1172897484 +181903,955,witty,1172897498 +181903,968,creepy,1172391562 +181903,968,disturbing,1172391516 +181903,968,gruesome,1172391539 +181903,968,menacing,1172391548 +181903,968,ominous,1172391553 +181903,968,paranoid,1172391527 +181903,968,visceral,1172391511 +181903,969,affectionate,1171754197 +181903,969,heartwarming,1171754218 +181903,969,humorous,1171754201 +181903,969,rousing,1171754225 +181903,969,talky,1171754214 +181903,969,tense,1171754206 +181903,1027,atmospheric,1171751623 +181903,1027,passionate,1171751626 +181903,1027,rousing,1171751603 +181903,1027,slick,1171751608 +181903,1027,upbeat,1171751612 +181903,1036,claustrophobic,1171668982 +181903,1036,humorous,1171668987 +181903,1036,rousing,1171668960 +181903,1036,tense,1171668963 +181903,1036,visceral,1171668973 +181903,1042,bright,1171149429 +181903,1042,light,1171149434 +181903,1042,nostalgic,1171149440 +181903,1042,sweet,1171149448 +181903,1042,upbeat,1171149461 +181903,1068,bleak,1171347001 +181903,1068,grim,1171347004 +181903,1068,ominous,1171347011 +181903,1068,tense,1171347014 +181903,1068,visceral,1171347023 +181903,1069,atmospheric,1171346785 +181903,1069,cynical,1171346796 +181903,1069,DANGEROUS ATTRACTION,1173245254 +181903,1069,FEMMES FATALES,1173245264 +181903,1069,ominous,1171346801 +181903,1069,PRIVATE EYES,1173245246 +181903,1069,wry,1171346788 +181903,1076,atmospheric,1173292922 +181903,1076,austere,1173292941 +181903,1076,creepy,1173292945 +181903,1076,deliberate,1173292961 +181903,1076,eerie,1173292930 +181903,1076,GHOST STORIES,1173292972 +181903,1076,ominous,1173292949 +181903,1076,understated,1173292926 +181903,1079,AMERICANS ABROAD,1172645604 +181903,1079,ASSUMED IDENTITIES,1172645583 +181903,1079,bright,1172645545 +181903,1079,CONS AND SCAMS,1172645616 +181903,1079,irreverent,1172645514 +181903,1079,light,1172645551 +181903,1079,literate,1172645540 +181903,1079,NOTHING GOES RIGHT,1172645587 +181903,1079,quirky,1172645518 +181903,1079,silly,1172645522 +181903,1079,witty,1172645526 +181903,1080,goofy,1172358023 +181903,1080,humorous,1172358027 +181903,1080,madcap,1172358010 +181903,1080,satirical,1172358030 +181903,1080,silly,1172358012 +181903,1080,whimsical,1172358017 +181903,1086,claustrophobic,1172966959 +181903,1086,deliberate,1172966963 +181903,1086,MIND GAMES,1172967008 +181903,1086,PERFECT CRIME,1172966979 +181903,1086,talky,1172966966 +181903,1086,tense,1172966949 +181903,1086,TREACHEROUS SPOUSES,1172966993 +181903,1086,WOMEN IN JEOPARDY,1172967001 +181903,1089,claustrophobic,1172390152 +181903,1089,forceful,1172390193 +181903,1089,humorous,1172390189 +181903,1089,literate,1172390178 +181903,1089,stylized,1172390196 +181903,1089,talky,1172390156 +181903,1089,tense,1172390160 +181903,1089,visceral,1172390171 +181903,1104,atmospheric,1171623266 +181903,1104,downbeat,1171623251 +181903,1104,forceful,1171623271 +181903,1104,moody,1171623247 +181903,1104,poignant,1171623255 +181903,1104,sexual,1171623263 +181903,1136,frantic,1172219152 +181903,1136,goofy,1172219133 +181903,1136,humorous,1172219139 +181903,1136,irreverent,1172219143 +181903,1136,satirical,1172219159 +181903,1136,silly,1172219155 +181903,1136,witty,1172219170 +181903,1156,bleak,1172130123 +181903,1156,downbeat,1172130129 +181903,1156,grim,1172130132 +181903,1156,matter-of-fact,1172130143 +181903,1161,disturbing,1171150030 +181903,1161,fanciful,1171150036 +181903,1161,quirky,1171150046 +181903,1161,satirical,1171150052 +181903,1162,biting,1172051575 +181903,1162,confrontational,1172051579 +181903,1162,irreverent,1172051583 +181903,1162,quirky,1172051593 +181903,1162,satirical,1172051603 +181903,1162,stylized,1172051596 +181903,1162,witty,1172051599 +181903,1172,bittersweet,1172301024 +181903,1172,heartwarming,1172301035 +181903,1172,nostalgic,1172301013 +181903,1172,reflective,1172301038 +181903,1172,sentimental,1172301020 +181903,1172,warm,1172301041 +181903,1173,decadent,1171324673 +181903,1173,irreverent,1171324678 +181903,1173,lavish,1171324660 +181903,1173,satirical,1171324665 +181903,1173,sexual,1171324694 +181903,1173,stylized,1171324653 +181903,1173,talky,1171324688 +181903,1175,atmospheric,1171438111 +181903,1175,campy,1171438105 +181903,1175,CANNIBALS,1172883289 +181903,1175,claustrophobic,1171438096 +181903,1175,DANGEROUS ATTRACTION,1172883298 +181903,1175,FUTURE DYSTOPIAS,1172883281 +181903,1175,hallucinatory,1171438120 +181903,1175,quirky,1171438080 +181903,1175,stylized,1171438086 +181903,1175,witty,1171438099 +181903,1175,wry,1171438088 +181903,1176,enigmatic,1171150113 +181903,1176,fanciful,1171150134 +181903,1176,lyrical,1171150106 +181903,1176,meditative,1171150167 +181903,1176,melancholy,1171150128 +181903,1176,quirky,1171150158 +181903,1176,TWINS AND LOOKALIKES,1172883170 +181903,1176,wistful,1171150139 +181903,1177,gentle,1171428560 +181903,1177,humorous,1171428580 +181903,1177,lyrical,1171428593 +181903,1177,reflective,1171428564 +181903,1177,springlike,1171428570 +181903,1177,talky,1171428584 +181903,1178,angry,1172044285 +181903,1178,biting,1172044282 +181903,1178,bleak,1172044298 +181903,1178,cynical,1172044288 +181903,1178,disturbing,1172044302 +181903,1178,grim,1172044304 +181903,1178,ominous,1172044307 +181903,1193,angry,1171666819 +181903,1193,biting,1171666816 +181903,1193,cathartic,1171666832 +181903,1193,claustrophobic,1171666851 +181903,1193,compassionate,1171666827 +181903,1193,DOCTORS AND PATIENTS,1172500062 +181903,1193,FIGHTING THE SYSTEM,1172500071 +181903,1193,irreverent,1171666812 +181903,1193,MENTAL ILLNESS,1172500098 +181903,1193,poignant,1171666843 +181903,1193,WRONGLY COMMITED,1172500083 +181903,1197,ASSUMED IDENTITIES,1172500880 +181903,1197,DARING RESCUES,1172500889 +181903,1197,fanciful,1171264317 +181903,1197,HEROIC MISSION,1172500870 +181903,1197,humorous,1171264340 +181903,1197,LOVERS REUNITED,1172500901 +181903,1197,merry,1171264350 +181903,1197,quirky,1171264346 +181903,1197,rousing,1171264312 +181903,1197,whimsical,1171264360 +181903,1197,witty,1171264320 +181903,1198,atmospheric,1171147171 +181903,1198,HEROIC MISSION,1172498654 +181903,1198,humorous,1171147177 +181903,1198,lavish,1171147151 +181903,1198,light,1171147157 +181903,1198,rousing,1171147163 +181903,1198,TREASURE HUNTS,1172498634 +181903,1199,atmospheric,1171765824 +181903,1199,dreamlike,1171765802 +181903,1199,hallucinatory,1171765828 +181903,1199,humorous,1171765811 +181903,1199,paranoid,1171765807 +181903,1199,quirky,1171765815 +181903,1199,satirical,1171765838 +181903,1199,stylized,1171765842 +181903,1200,EVIL ALIENS,1172587714 +181903,1200,forceful,1172587703 +181903,1200,gruesome,1172587696 +181903,1200,HEROIC MISSION,1172587731 +181903,1200,menacing,1172587699 +181903,1200,ROBOTS AND ANDROIDS,1172587737 +181903,1200,SPACE TRAVEL,1172587723 +181903,1200,tense,1172587685 +181903,1200,TIME SLEEPERS,1172587748 +181903,1200,visceral,1172587689 +181903,1201,BOUNTY HUNTERS,1172499215 +181903,1201,humorous,1172210869 +181903,1201,irreverent,1172210873 +181903,1201,LONE WOLVES,1172499223 +181903,1201,POLITICAL UNREST,1172499244 +181903,1201,quirky,1172210877 +181903,1201,satirical,1172210881 +181903,1201,TREASURE HUNTS,1172499234 +181903,1202,bleak,1172216460 +181903,1202,irreverent,1172216480 +181903,1202,quirky,1172216441 +181903,1202,talky,1172216471 +181903,1202,wistful,1172216484 +181903,1202,witty,1172216455 +181903,1202,wry,1172216467 +181903,1203,angry,1172056434 +181903,1203,CLASS DIFFERENCES,1173284304 +181903,1203,claustrophobic,1172056439 +181903,1203,confrontational,1172056466 +181903,1203,earnest,1172056455 +181903,1203,forceful,1172056443 +181903,1203,gritty,1172056451 +181903,1203,REDEMPTION,1173284318 +181903,1203,SOCIAL INJUSTICE,1173284310 +181903,1203,talky,1172056459 +181903,1204,atmospheric,1172211767 +181903,1204,lavish,1172211747 +181903,1204,passionate,1172211774 +181903,1204,rousing,1172211751 +181903,1204,sweeping,1172211762 +181903,1206,atmospheric,1171438780 +181903,1206,chilly,1171438788 +181903,1206,disturbing,1171438794 +181903,1206,eerie,1171438755 +181903,1206,EXPERIMENTS GONE AWRY,1172874377 +181903,1206,FUTURE DYSTOPIAS,1172874369 +181903,1206,great soundtrack,1258738631 +181903,1206,irreverent,1171438759 +181903,1206,Nudity (Full Frontal),1258738624 +181903,1206,quirky,1171438775 +181903,1206,satirical,1171438752 +181903,1206,stylized,1171438767 +181903,1207,atmospheric,1172055070 +181903,1207,bittersweet,1172055074 +181903,1207,earnest,1172055048 +181903,1207,heartwarming,1172055051 +181903,1207,literate,1172055083 +181903,1207,nostalgic,1172055055 +181903,1207,poignant,1172055066 +181903,1207,RACE RELATIONS,1173303952 +181903,1207,SIBLING RELATIONSHIPS,1173303960 +181903,1207,SINGLE PARENTS,1173303968 +181903,1207,SOCIAL INJUSTICE,1173303943 +181903,1208,disturbing,1171748610 +181903,1208,hallucinatory,1171748619 +181903,1208,ominous,1171748603 +181903,1208,sweeping,1171748626 +181903,1208,tense,1171748606 +181903,1208,visceral,1171748623 +181903,1209,atmospheric,1171709060 +181903,1209,elegiac,1171709049 +181903,1209,stylized,1171709064 +181903,1209,sweeping,1171709045 +181903,1209,tense,1171709052 +181903,1211,atmospheric,1172216326 +181903,1211,dreamlike,1172216311 +181903,1211,enigmatic,1172216339 +181903,1211,lyrical,1172216315 +181903,1211,meditative,1172216306 +181903,1211,somber,1172216329 +181903,1211,wistful,1172216343 +181903,1212,atmospheric,1172044134 +181903,1212,CONS AND SCAMS,1172881264 +181903,1212,DANGEROUS FRIENDS,1172881278 +181903,1212,disturbing,1172044157 +181903,1212,FALTERING FRIENDSHIPS,1172881293 +181903,1212,INNOCENCE LOST,1172881283 +181903,1212,MIND GAMES,1172881258 +181903,1212,ominous,1172044139 +181903,1212,poignant,1172044151 +181903,1212,stylized,1172044141 +181903,1212,wry,1172044153 +181903,1213,claustrophobic,1171149262 +181903,1213,confrontational,1171149272 +181903,1213,disturbing,1171149278 +181903,1213,FALTERING FRIENDSHIPS,1172499167 +181903,1213,gritty,1171149250 +181903,1213,MAFIA LIFE,1172499162 +181903,1213,RISE AND FALL STORIES,1172499151 +181903,1213,visceral,1171149245 +181903,1213,WITNESS PROTECTION,1172499178 +181903,1213,wry,1171149282 +181903,1214,chilly,1172055325 +181903,1214,claustrophobic,1172055303 +181903,1214,gruesome,1172055334 +181903,1214,menacing,1172055311 +181903,1214,ominous,1172055322 +181903,1214,paranoid,1172055319 +181903,1214,visceral,1172055307 +181903,1215,campy,1171696998 +181903,1215,FISH OUT OF WATER,1172588103 +181903,1215,frantic,1171697006 +181903,1215,humorous,1171697002 +181903,1215,light,1171697012 +181903,1215,RACE AGAINST TIME,1172588107 +181903,1215,SHRUNKEN PEOPLE,1172588121 +181903,1215,silly,1171696988 +181903,1215,stylized,1171696992 +181903,1215,TIME TRAVEL,1172588126 +181903,1217,atmospheric,1172210987 +181903,1217,CROWNED HEADS,1172873797 +181903,1217,FATHERS AND SONS,1172873769 +181903,1217,forceful,1172210990 +181903,1217,lyrical,1172211002 +181903,1217,melancholy,1172210978 +181903,1217,poignant,1172210999 +181903,1217,POLITICAL UNREST,1172873786 +181903,1217,SIBLING RELATIONSHIPS,1172873774 +181903,1217,stylized,1172210974 +181903,1217,sweeping,1172210961 +181903,1217,visceral,1172210965 +181903,1218,forceful,1171697667 +181903,1218,frantic,1171697656 +181903,1218,moody,1171697671 +181903,1218,stylized,1171697652 +181903,1218,tense,1171697659 +181903,1219,chilly,1172212301 +181903,1219,creepy,1172212260 +181903,1219,deliberate,1172212271 +181903,1219,macabre,1172212291 +181903,1219,menacing,1172212280 +181903,1219,tense,1172212306 +181903,1227,atmospheric,1172211610 +181903,1227,elegiac,1172211621 +181903,1227,lyrical,1172211634 +181903,1227,meditative,1172211646 +181903,1227,sweeping,1172211630 +181903,1228,atmospheric,1171709369 +181903,1228,cathartic,1171709340 +181903,1228,confrontational,1171709360 +181903,1228,forceful,1171709344 +181903,1228,stylized,1171709374 +181903,1228,visceral,1171709347 +181903,1232,austere,1171604179 +181903,1232,deliberate,1171604196 +181903,1232,downbeat,1171604184 +181903,1232,gloomy,1171604187 +181903,1232,meditative,1171604202 +181903,1232,reflective,1171604212 +181903,1233,claustrophobic,1171677199 +181903,1233,gloomy,1171677215 +181903,1233,grim,1171677205 +181903,1233,gritty,1171677219 +181903,1233,tense,1171677202 +181903,1235,humorous,1171345963 +181903,1235,irreverent,1171345958 +181903,1235,quirky,1171345971 +181903,1235,reflective,1171345976 +181903,1235,sweet,1171345988 +181903,1236,bittersweet,1173189739 +181903,1236,deadpan,1173189727 +181903,1236,ECCENTRIC FAMILIES,1173189776 +181903,1236,FATHERS AND SONS,1173189791 +181903,1236,literate,1173189742 +181903,1236,matter-of-fact,1173189755 +181903,1236,melancholy,1173189762 +181903,1236,MOTHERS AND DAUGHTERS,1173189797 +181903,1236,OPPOSITES ATTRACT,1173189806 +181903,1236,quirky,1173189721 +181903,1236,SUBURBAN DYSFUNCTION,1173189780 +181903,1236,talky,1173189724 +181903,1236,understated,1173189745 +181903,1236,wry,1173189717 +181903,1237,atmospheric,1171186022 +181903,1237,cerebral,1171186030 +181903,1237,dreamlike,1171186034 +181903,1237,gloomy,1171186040 +181903,1237,meditative,1171186046 +181903,1237,somber,1171186050 +181903,1237,tense,1171186055 +181903,1238,affectionate,1172501969 +181903,1238,AMERICANS ABROAD,1172502008 +181903,1238,CULTURE CLASH,1172502016 +181903,1238,deadpan,1172501999 +181903,1238,gentle,1172501994 +181903,1238,heartwarming,1172501985 +181903,1238,quirky,1172501977 +181903,1238,warm,1172501973 +181903,1238,witty,1172501982 +181903,1240,bleak,1171264484 +181903,1240,grim,1171264467 +181903,1240,ominous,1171264472 +181903,1240,tense,1171264488 +181903,1240,visceral,1171264476 +181903,1244,bittersweet,1171668804 +181903,1244,humorous,1171668813 +181903,1244,literate,1171668833 +181903,1244,lyrical,1171668841 +181903,1244,talky,1171668800 +181903,1244,urbane,1171668816 +181903,1244,wistful,1171668820 +181903,1245,atmospheric,1171604580 +181903,1245,CRIMINAL'S REVENGE,1172885380 +181903,1245,DISHONOR AMONG THIEVES,1172885387 +181903,1245,elegant,1171604585 +181903,1245,literate,1171604573 +181903,1245,quirky,1171604600 +181903,1245,stylized,1171604568 +181903,1245,tense,1171604596 +181903,1245,witty,1171604593 +181903,1247,AGE DISPARITY ROMANCE,1172873184 +181903,1247,cynical,1171183033 +181903,1247,deadpan,1171183006 +181903,1247,EXTRAMARITAL AFFAIRS,1172873242 +181903,1247,FORBIDDEN LOVE,1172873224 +181903,1247,GENERATION GAP,1172873213 +181903,1247,humorous,1171183027 +181903,1247,LOVE TRIANGLES,1172873158 +181903,1247,quirky,1171183011 +181903,1247,racy,1171183022 +181903,1247,satirical,1171183000 +181903,1247,SEXUAL AWAKENING,1172873167 +181903,1247,SUBURBAN DYSFUNCTION,1172873202 +181903,1247,urbane,1171183017 +181903,1248,atmospheric,1171747572 +181903,1248,bleak,1171747594 +181903,1248,disturbing,1171747599 +181903,1248,ominous,1171747587 +181903,1248,stylized,1171747575 +181903,1248,tense,1171747583 +181903,1249,atmospheric,1172040911 +181903,1249,cynical,1172040897 +181903,1249,harsh,1172040914 +181903,1249,stylized,1172040890 +181903,1249,tense,1172040893 +181903,1249,visceral,1172040907 +181903,1251,CREATIVE BLOCK,1173211613 +181903,1251,fanciful,1172119667 +181903,1251,FILMMAKING,1173211619 +181903,1251,humorous,1172119658 +181903,1251,quirky,1172119670 +181903,1251,satirical,1172119682 +181903,1251,sexy,1172119686 +181903,1251,talky,1172119678 +181903,1251,whimsical,1172119694 +181903,1252,atmospheric,1171667666 +181903,1252,austere,1171667696 +181903,1252,bleak,1171667670 +181903,1252,cynical,1171667682 +181903,1252,FEMMES FATALES,1172501729 +181903,1252,HAUNTED BY THE PAST,1172501718 +181903,1252,menacing,1171667690 +181903,1252,PRIVATE EYES,1172501702 +181903,1252,somber,1171667676 +181903,1252,wry,1171667679 +181903,1253,eerie,1172874527 +181903,1253,menacing,1172874523 +181903,1253,paranoid,1172874515 +181903,1253,poignant,1172874518 +181903,1254,biting,1173194040 +181903,1254,CONS AND SCAMS,1173194103 +181903,1254,disturbing,1173194043 +181903,1254,DOWN ON THEIR LUCK,1173194079 +181903,1254,FALTERING FRIENDSHIPS,1173194098 +181903,1254,grim,1173194047 +181903,1254,paranoid,1173194050 +181903,1254,tense,1173194064 +181903,1254,TREASURE HUNTS,1173194087 +181903,1254,wry,1173194067 +181903,1257,easygoing,1173305065 +181903,1257,goofy,1173305077 +181903,1257,HIGH SCHOOL LIFE,1173305103 +181903,1257,light,1173305081 +181903,1257,quirky,1173305094 +181903,1257,silly,1173305061 +181903,1257,sweet,1173305073 +181903,1257,UNREQUITED LOVE,1173305111 +181903,1257,upbeat,1173305089 +181903,1258,chilly,1173105371 +181903,1258,hallucinatory,1173105375 +181903,1258,menacing,1173105378 +181903,1258,PSYCHIC ABILITIES,1173105418 +181903,1258,TRAPPED OR CONFINED,1173105428 +181903,1258,visceral,1173105386 +181903,1258,wintry,1173105389 +181903,1258,WRITER'S LIFE,1173105439 +181903,1259,autumnal,1173304305 +181903,1259,INNOCENCE LOST,1173304319 +181903,1259,KIDS IN TROUBLE,1173304325 +181903,1259,nostalgic,1173304313 +181903,1259,poignant,1173304289 +181903,1259,tense,1173304284 +181903,1259,wistful,1173304301 +181903,1260,atmospheric,1171452089 +181903,1260,bleak,1171452093 +181903,1260,chilly,1171452107 +181903,1260,creepy,1171452125 +181903,1260,disturbing,1171452117 +181903,1260,grim,1171452120 +181903,1260,menacing,1171452097 +181903,1260,oninous,1171452104 +181903,1261,atmospheric,1171697095 +181903,1261,campy,1171697077 +181903,1261,DEMONIC POSSESSION,1172501198 +181903,1261,frantic,1171697059 +181903,1261,humorous,1171697068 +181903,1261,madcap,1171697083 +181903,1261,RENEGADE BODY PARTS,1172501210 +181903,1261,stylized,1171697064 +181903,1261,tense,1171697087 +181903,1262,forceful,1171709872 +181903,1262,gritty,1171709850 +181903,1262,rousing,1171709854 +181903,1262,sweeping,1171709866 +181903,1262,tense,1171709858 +181903,1262,visceral,1171709876 +181903,1265,deadpan,1171264780 +181903,1265,easygoing,1171264761 +181903,1265,fanciful,1171264748 +181903,1265,humorous,1171264753 +181903,1265,irreverent,1171264775 +181903,1265,madcap,1171264767 +181903,1265,sweet,1171264784 +181903,1266,bleak,1171339803 +181903,1266,BOUNTY HUNTERS,1173104300 +181903,1266,gritty,1171339809 +181903,1266,harsh,1171339819 +181903,1266,lyrical,1171339827 +181903,1266,OUT FOR REVENGE,1173104292 +181903,1266,REDEMPTION,1173104310 +181903,1266,SHERIFFS AND OUTLAWS,1173104305 +181903,1266,somber,1171339805 +181903,1266,tense,1171339822 +181903,1270,BUILDING SELF-ESTEEM,1172588410 +181903,1270,easygoing,1172588296 +181903,1270,fanciful,1172588279 +181903,1270,FINDING A WAY BACK HOME,1172588380 +181903,1270,FISH OUT OF WATER,1172588392 +181903,1270,HIGH SCHOOL LIFE,1172588422 +181903,1270,humorous,1172588270 +181903,1270,LOVE TRIANGLES,1172588341 +181903,1270,madcap,1172588299 +181903,1270,nostalgic,1172588273 +181903,1270,quirky,1172588307 +181903,1270,RACE AGAINST TIME,1172588327 +181903,1270,TIME TRAVEL,1172588321 +181903,1270,whimsical,1172588289 +181903,1271,gentle,1171526646 +181903,1271,heartwarming,1171526632 +181903,1271,humorous,1171526654 +181903,1271,nostalgic,1171526641 +181903,1271,poignant,1171526671 +181903,1271,sentimental,1171526667 +181903,1271,sweeping,1171526659 +181903,1273,atmospheric,1171183304 +181903,1273,deadpan,1171183314 +181903,1273,DOWN ON THEIR LUCK,1173292262 +181903,1273,easygoing,1171183320 +181903,1273,ESCAPE FROM PRISON,1173292239 +181903,1273,FLIGHT OF THE INNOCENT,1173292257 +181903,1273,goofy,1171183325 +181903,1273,lyrical,1171183330 +181903,1273,MISCARRIAGE OF JUSTICE,1173292244 +181903,1273,moody,1171183335 +181903,1273,stylized,1171183341 +181903,1274,AFTER THE APOCALYPSE,1172961049 +181903,1274,atmospheric,1172300132 +181903,1274,EXPERIMENTS GONE AWRY,1172961064 +181903,1274,FUTURE DYSTOPIAS,1172961035 +181903,1274,hallucinatory,1172300135 +181903,1274,PSYCHIC ABILITIES,1172961070 +181903,1274,stylized,1172300138 +181903,1276,atmospheric,1171603033 +181903,1276,confrontational,1171603022 +181903,1276,deliberate,1171603040 +181903,1276,ESCAPE FROM PRISON,1172499349 +181903,1276,forceful,1171603048 +181903,1276,gritty,1171603029 +181903,1276,humorous,1171603052 +181903,1279,BRIEF ENCOUNTERS,1173188152 +181903,1279,humorous,1173188138 +181903,1279,nocturnal,1173188147 +181903,1279,quirky,1173188126 +181903,1279,talky,1173188130 +181903,1279,whim,1173188133 +181903,1280,austere,1171428757 +181903,1280,claustrophobic,1171428797 +181903,1280,deliberate,1171428779 +181903,1280,lyrical,1171428762 +181903,1280,somber,1171428767 +181903,1285,biting,1172353213 +181903,1285,cynical,1172353486 +181903,1285,deadpan,1172353217 +181903,1285,irreverent,1172353482 +181903,1285,satirical,1172353221 +181903,1287,earnest,1171709970 +181903,1287,lavish,1171709955 +181903,1287,rousing,1171709959 +181903,1287,sweeping,1171709963 +181903,1287,tense,1171709973 +181903,1288,deadpan,1171437937 +181903,1288,easygoing,1171437910 +181903,1288,goofy,1171437914 +181903,1288,irreverent,1171437918 +181903,1288,satirical,1171437926 +181903,1288,witty,1171437929 +181903,1296,elegant,1171439211 +181903,1296,gentle,1171439216 +181903,1296,literate,1171439195 +181903,1296,LOOKING FOR LOVE,1173303613 +181903,1296,OPPOSITES ATTRACT,1173303594 +181903,1296,OTHERWISE ENGAGED,1173303587 +181903,1296,passionate,1171439199 +181903,1296,summery,1171439174 +181903,1296,VACATION ROMANCES,1173303606 +181903,1296,wistful,1171439228 +181903,1296,witty,1171439206 +181903,1300,affectionate,1172220844 +181903,1300,gentle,1172220863 +181903,1300,poignant,1172220846 +181903,1300,reflective,1172220851 +181903,1300,wistful,1172220867 +181903,1300,witty,1172220874 +181903,1300,wry,1172220859 +181903,1301,deliberate,1171699320 +181903,1301,fanciful,1171699338 +181903,1301,literate,1171699343 +181903,1301,menacing,1171699324 +181903,1301,stylized,1171699316 +181903,1304,AMERICANS ABROAD,1172960756 +181903,1304,bittersweet,1172299939 +181903,1304,easygoing,1172299924 +181903,1304,FIGHTING THE SYSTEM,1172960746 +181903,1304,humorous,1172299932 +181903,1304,irreverent,1172299936 +181903,1304,LOVE TRIANGLES,1172960751 +181903,1304,nostalgic,1172299918 +181903,1304,rousing,1172299921 +181903,1305,bittersweet,1172217083 +181903,1305,deliberate,1172217048 +181903,1305,FATHERS AND SONS,1172881852 +181903,1305,HAUNTED BY THE PAST,1172881826 +181903,1305,JOURNEY OF SELF-DISCOVERY,1172881860 +181903,1305,lyrical,1172217069 +181903,1305,meditative,1172217052 +181903,1305,melancholy,1172217060 +181903,1305,poignant,1172217086 +181903,1305,REDEMPTION,1172881846 +181903,1305,reflective,1172217073 +181903,1305,WANDERLUST,1172881831 +181903,1321,atmospheric,1172356182 +181903,1321,humorous,1172356186 +181903,1321,menacing,1172356198 +181903,1321,paranoid,1172356207 +181903,1321,satirical,1172356210 +181903,1321,tense,1172356189 +181903,1345,atmospheric,1172959956 +181903,1345,eerie,1172959960 +181903,1345,goth,1172959987 +181903,1345,gruesome,1172959964 +181903,1345,lurid,1172959974 +181903,1345,MOTHERS AND DAUGHTERS,1172959996 +181903,1345,PSYCHIC ABILITIES,1172960010 +181903,1345,tense,1172959971 +181903,1345,visceral,1172959979 +181903,1354,bleak,1171674997 +181903,1354,cathartic,1171675014 +181903,1354,disturbing,1171674989 +181903,1354,drab,1171675017 +181903,1354,harsh,1171674993 +181903,1354,passionate,1171675010 +181903,1354,wintry,1171675000 +181903,1387,creepy,1172300585 +181903,1387,menacing,1172300579 +181903,1387,ominous,1172300597 +181903,1387,tense,1172300581 +181903,1387,TERROR IN THE WATER,1172961640 +181903,1387,visceral,1172300589 +181903,1387,WHEN ANIMALS ATTACK,1172961655 +181903,1394,deadpan,1171146899 +181903,1394,ESCAPE FROM PRISON,1172498595 +181903,1394,frantic,1171146892 +181903,1394,goofy,1171146904 +181903,1394,KIDNAPPING,1172498574 +181903,1394,madcap,1171146824 +181903,1394,PARENTHOOD,1172498581 +181903,1394,quirky,1171146935 +181903,1394,satirical,1171146911 +181903,1394,UNLIKELY CRIMINALS,1172498562 +181903,1394,witty,1171146884 +181903,1406,biting,1173415957 +181903,1406,CLASS DIFFERENCES,1173415991 +181903,1406,cynical,1173415930 +181903,1406,deliberate,1173415969 +181903,1406,LIVING WITH DISABILITY,1173416006 +181903,1406,satirical,1173415975 +181903,1406,SERVANTS AND EMPLOYERS,1173415983 +181903,1406,tense,1173415961 +181903,1406,witty,1173415952 +181903,1406,WOMEN'S FRIENDSHIP,1173415998 +181903,1419,affectionate,1171433707 +181903,1419,enigmatic,1171433736 +181903,1419,FISH OUT OF WATER,1172966362 +181903,1419,intimate,1171433719 +181903,1419,KIDS IN TROUBLE,1172966369 +181903,1419,lyrical,1171433723 +181903,1419,passionate,1171433728 +181903,1419,reflective,1171433711 +181903,1419,SURVIVAL IN THE WILDERNESS,1172966385 +181903,1419,visceral,1171433743 +181903,1449,affectionate,1171675665 +181903,1449,deadpan,1171675652 +181903,1449,humorous,1171675623 +181903,1449,quirky,1171675643 +181903,1449,satirical,1171675631 +181903,1449,silly,1171675627 +181903,1449,witty,1171675648 +181903,1483,creepy,1171676712 +181903,1483,disturbing,1171676715 +181903,1483,enigmatic,1171676723 +181903,1483,ominous,1171676727 +181903,1483,reflective,1171676731 +181903,1483,stylized,1171676708 +181903,1513,affectionate,1172355671 +181903,1513,bright,1172355661 +181903,1513,irreverent,1172355668 +181903,1513,light,1172355664 +181903,1527,bright,1171761476 +181903,1527,campy,1171761468 +181903,1527,frantic,1171761457 +181903,1527,humorous,1171761483 +181903,1527,satirical,1171761479 +181903,1527,slick,1171761461 +181903,1527,stylized,1171761465 +181903,1545,cathartic,1171665707 +181903,1545,dreamlike,1171665715 +181903,1545,elegiac,1171665694 +181903,1545,humorous,1171665711 +181903,1545,intimate,1171665673 +181903,1545,quirky,1171665698 +181903,1545,understated,1171665684 +181903,1546,cerebral,1171764683 +181903,1546,deadpan,1171764680 +181903,1546,enigmatic,1171764692 +181903,1546,goofy,1171764667 +181903,1546,quirky,1171764661 +181903,1546,silly,1171764670 +181903,1546,witty,1171764664 +181903,1572,biting,1171148376 +181903,1572,CREATIVE BLOCK,1172501644 +181903,1572,CRUMBLING MARRIAGES,1172501652 +181903,1572,cynical,1171148421 +181903,1572,deliberate,1171148444 +181903,1572,FILMMAKING,1172501596 +181903,1572,literate,1171148455 +181903,1572,reflective,1171148371 +181903,1572,satirical,1171148364 +181903,1572,talky,1171148438 +181903,1572,WORK ETHICS,1172501610 +181903,1604,easygoing,1173215406 +181903,1604,light,1173215408 +181903,1604,MEMBERS OF THE PRESS,1173215434 +181903,1604,tense,1173215415 +181903,1604,UNLIKELY FRIENDSHIPS,1173215426 +181903,1604,upbeat,1173215412 +181903,1610,claustrophobic,1173276777 +181903,1610,forceful,1173276785 +181903,1610,MIND GAMES,1173276802 +181903,1610,ominous,1173276767 +181903,1610,rousing,1173276790 +181903,1610,tense,1173276772 +181903,1635,austere,1173189954 +181903,1635,bleak,1173189957 +181903,1635,elegiac,1173189976 +181903,1635,EXTRAMARITAL AFFAIRS,1173190003 +181903,1635,FATHERS AND DAUGHTERS,1173190034 +181903,1635,FATHERS AND SONS,1173190038 +181903,1635,FORCES OF NATURE,1173190050 +181903,1635,GENERATION GAP,1173190023 +181903,1635,gloomy,1173189960 +181903,1635,INNOCENCE LOST,1173190017 +181903,1635,literate,1173189973 +181903,1635,SUBURBAN DYSFUNCTION,1173189995 +181903,1635,understated,1173189983 +181903,1635,wintry,1173189963 +181903,1676,biting,1171712697 +181903,1676,campy,1171712702 +181903,1676,deadpan,1171712711 +181903,1676,irreverent,1171712716 +181903,1676,menacing,1171712721 +181903,1676,sweeping,1171712693 +181903,1676,witty,1171712728 +181903,1682,cerebral,1172876587 +181903,1682,dreamlike,1172876602 +181903,1682,fanciful,1172876599 +181903,1682,INNOCENCE LOST,1172876621 +181903,1682,melancholy,1172876607 +181903,1682,poignant,1172876575 +181903,1682,stylized,1172876579 +181903,1682,VOYEURS,1172876617 +181903,1682,witty,1172876583 +181903,1699,chilly,1172505549 +181903,1699,creepy,1172505540 +181903,1699,disturbing,1172505557 +181903,1699,FATHERS AND SONS,1172505603 +181903,1699,KIDS IN TROUBLE,1172505577 +181903,1699,MENTAL ILLNESS,1172505572 +181903,1699,MOTHERS AND SONS,1172505591 +181903,1699,quirky,1172505536 +181903,1699,tense,1172505560 +181903,1719,bleak,1171173017 +181903,1719,elegiac,1171173006 +181903,1719,enigmatic,1171172998 +181903,1719,lyrical,1171173012 +181903,1719,meditative,1171173030 +181903,1719,wintry,1171173023 +181903,1721,atmospheric,1171148733 +181903,1721,bittersweet,1171148704 +181903,1721,elegiac,1171148726 +181903,1721,lavish,1171148691 +181903,1721,nostalgic,1171148697 +181903,1721,sentimental,1171148680 +181903,1721,sweeping,1171148671 +181903,1721,tearjerking,1171148685 +181903,1729,drab,1172356991 +181903,1729,forceful,1172357007 +181903,1729,gritty,1172356994 +181903,1729,quirky,1172357010 +181903,1729,talky,1172356999 +181903,1729,tense,1172356988 +181903,1732,AMATEUR SLEUTHS,1172961912 +181903,1732,deadpan,1171182883 +181903,1732,easygoing,1171182888 +181903,1732,madcap,1171182892 +181903,1732,MISTAKEN IDENTITIES,1172961916 +181903,1732,quirky,1171182898 +181903,1732,racy,1171182902 +181903,1732,satirical,1171182911 +181903,1732,talky,1171182916 +181903,1748,atmospheric,1171693577 +181903,1748,claustrophobic,1171693585 +181903,1748,dreamlike,1171693592 +181903,1748,eerie,1171693596 +181903,1748,hallucinatory,1171693604 +181903,1748,somber,1171693581 +181903,1748,stylized,1171693608 +181903,1757,eerie,1172217196 +181903,1757,elegiac,1172217182 +181903,1757,moody,1172217198 +181903,1757,nocturnal,1172217176 +181903,1757,stylized,1172217179 +181903,1757,urbane,1172217202 +181903,1804,earnest,1171764824 +181903,1804,humorous,1171764841 +181903,1804,nostalgic,1171764833 +181903,1804,sentimental,1171764845 +181903,1804,understated,1171764829 +181903,1859,austere,1172389713 +181903,1859,deliberate,1172389717 +181903,1859,enigmatic,1172389731 +181903,1859,HAUNTED BY THE PAST,1173188516 +181903,1859,lyrical,1172389735 +181903,1859,meditative,1172389728 +181903,1859,OBSESSIVE QUESTS,1173188507 +181903,1859,SUICIDE,1173188499 +181903,1859,understated,1172389720 +181903,1875,angry,1171673363 +181903,1875,biting,1171673342 +181903,1875,deliberate,1171673334 +181903,1875,humorous,1171673354 +181903,1875,quirky,1171673359 +181903,1875,understated,1171673338 +181903,1884,biting,1172357203 +181903,1884,CONS AND SCAMS,1172873429 +181903,1884,CULTURE CLASH,1172873434 +181903,1884,cynical,1172357212 +181903,1884,disturbing,1172357216 +181903,1884,DRUG ADDICTION,1172873460 +181903,1884,frantic,1172357220 +181903,1884,hallucinatory,1172357193 +181903,1884,irreverent,1172357197 +181903,1884,NIGHTMARE VACATIONS,1172873444 +181903,1884,NOTHING GOES RIGHT,1172873449 +181903,1884,satirical,1172357724 +181903,1889,bleak,1171265647 +181903,1889,cynical,1171265643 +181903,1889,disturbing,1171265654 +181903,1889,grim,1171265663 +181903,1889,moody,1171265667 +181903,1889,MURDER INVESTIGATIONS,1172959476 +181903,1889,POLICE CORRUPTION,1172959466 +181903,1889,wintry,1171265671 +181903,1904,bittersweet,1173189402 +181903,1904,deadpan,1173189356 +181903,1904,deliberate,1173189363 +181903,1904,earnest,1173189365 +181903,1904,ECCENTRIC FAMILIES,1173189435 +181903,1904,humorous,1173189383 +181903,1904,literate,1173189406 +181903,1904,matter-of-fact,1173189387 +181903,1904,moody,1173189408 +181903,1904,quirky,1173189360 +181903,1904,RISE AND FALL STORIES,1173189448 +181903,1904,stylized,1173189411 +181903,1904,SUBURBAN DYSFUNCTION,1173189424 +181903,1904,understated,1173189391 +181903,1904,UNLIKELY FRIENDSHIPS,1173189429 +181903,1904,WRITER'S LIFE,1173189454 +181903,1913,austere,1171339142 +181903,1913,deliberate,1171339139 +181903,1913,dreamlike,1171339118 +181903,1913,eerie,1171339126 +181903,1913,enigmatic,1171339113 +181903,1913,ominous,1171339130 +181903,1913,understated,1171339151 +181903,1916,austere,1171765048 +181903,1916,drab,1171765026 +181903,1916,elegiac,1171765034 +181903,1916,humorous,1171765278 +181903,1916,melancholy,1171765043 +181903,1916,quirky,1171765023 +181903,1916,talky,1171765285 +181903,1916,wry,1171765289 +181903,1917,flashy,1171605563 +181903,1917,humorous,1171605572 +181903,1917,ominous,1171605568 +181903,1917,rousing,1171605551 +181903,1917,slick,1171605548 +181903,1917,stylized,1171605555 +181903,1917,tense,1171605578 +181903,1921,cerebral,1172045001 +181903,1921,enigmatic,1172045026 +181903,1921,hallucinatory,1172045021 +181903,1921,ominous,1172045004 +181903,1921,paranoid,1172045041 +181903,1921,stylized,1172045007 +181903,1921,tense,1172045014 +181903,1923,easygoing,1171150259 +181903,1923,goofy,1171150246 +181903,1923,madcap,1171150242 +181903,1923,raunchy,1171150233 +181903,1923,sexual,1171150252 +181903,1938,bleak,1171429450 +181903,1938,cathartic,1171429488 +181903,1938,downbeat,1171429466 +181903,1938,forceful,1171429479 +181903,1938,grim,1171429453 +181903,1938,harsh,1171429469 +181903,1938,matter-of-fact,1171429457 +181903,1952,bittersweet,1172873868 +181903,1952,compassionate,1172873877 +181903,1952,CULTURE CLASH,1172873970 +181903,1952,DOWN ON THEIR LUCK,1172873933 +181903,1952,downbeat,1172873889 +181903,1952,elegiac,1172873899 +181903,1952,GOING STRAIGHT,1172873951 +181903,1952,gritty,1172873873 +181903,1952,humorous,1172873910 +181903,1952,poignant,1172873917 +181903,1952,PROSTITUTES,1172873938 +181903,1952,sexual,1172873894 +181903,1952,UNLIKELY FRIENDSHIPS,1172873959 +181903,1953,angry,1172211975 +181903,1953,atmospheric,1172211986 +181903,1953,cynical,1172212007 +181903,1953,forceful,1172211979 +181903,1953,gritty,1172211990 +181903,1953,harsh,1172211994 +181903,1953,ominous,1172212016 +181903,1966,deadpan,1172130239 +181903,1966,literate,1172130224 +181903,1966,talky,1172130217 +181903,1966,urbane,1172130221 +181903,1966,witty,1172130232 +181903,1966,wry,1172130236 +181903,2009,atmospheric,1171151302 +181903,2009,bleak,1171151307 +181903,2009,FIGHTING THE SYSTEM,1172498391 +181903,2009,FUTURE DYSTOPIAS,1172498378 +181903,2009,grim,1171151312 +181903,2009,TOTALITARIAN STATES,1172498402 +181903,2019,atmospheric,1172055999 +181903,2019,cathartic,1172056003 +181903,2019,CULTURE CLASH,1172586885 +181903,2019,forceful,1172056009 +181903,2019,HEROIC MISSION,1172586878 +181903,2019,RIGHTING THE WRONGED,1172586891 +181903,2019,stylized,1172056018 +181903,2019,sweeping,1172056025 +181903,2019,tense,1172056022 +181903,2028,cathartic,1171602931 +181903,2028,disturbing,1171602943 +181903,2028,gritty,1171602952 +181903,2028,poignant,1171602938 +181903,2028,stirring,1171602960 +181903,2028,sweeping,1171602956 +181903,2028,visceral,1171602926 +181903,2065,bittersweet,1171676527 +181903,2065,fanciful,1171676531 +181903,2065,humorous,1171676535 +181903,2065,nostalgic,1171676545 +181903,2065,quirky,1171676549 +181903,2065,warm,1171676552 +181903,2065,whimsical,1171676561 +181903,2066,atmospheric,1171697751 +181903,2066,downbeat,1171697760 +181903,2066,gloomy,1171697767 +181903,2066,moody,1171697754 +181903,2066,reflective,1171697772 +181903,2067,atmospheric,1172215793 +181903,2067,deliberate,1172215802 +181903,2067,lavish,1172215789 +181903,2067,reflective,1172215807 +181903,2067,rousing,1172215811 +181903,2067,sweeping,1172215786 +181903,2067,wintry,1172215817 +181903,2068,affectionate,1171621843 +181903,2068,autumnal,1171621848 +181903,2068,bittersweet,1171621854 +181903,2068,deliberate,1171621861 +181903,2068,intimate,1171621865 +181903,2068,moody,1171621873 +181903,2068,poignant,1171621877 +181903,2074,bleak,1171265958 +181903,2074,downbeat,1171265963 +181903,2074,matter-of-fact,1171265973 +181903,2074,moody,1171265982 +181903,2074,reflective,1171265954 +181903,2075,ACTOR'S LIFE,1173216490 +181903,2075,biting,1173216441 +181903,2075,bleak,1173216445 +181903,2075,confrontational,1173216459 +181903,2075,disturbing,1173216436 +181903,2075,RISE AND FALL STORIES,1173216481 +181903,2075,tense,1173216454 +181903,2075,TOTALITARIAN STATES,1173216473 +181903,2076,AMATEUR SLEUTHS,1172499732 +181903,2076,atmospheric,1171148025 +181903,2076,disturbing,1171148018 +181903,2076,dreamlike,1171148053 +181903,2076,hallucinatory,1171148033 +181903,2076,INNOCENCE LOST,1172499706 +181903,2076,menacing,1171148039 +181903,2076,ominous,1171148059 +181903,2076,quirky,1171148075 +181903,2076,sexual,1171148043 +181903,2076,SUBURBAN DYSFUNCTION,1172499715 +181903,2076,WOMEN IN JEOPARDY,1172499743 +181903,2131,autumnal,1172364024 +181903,2131,bleak,1172364014 +181903,2131,claustrophobic,1172364008 +181903,2131,deliberate,1172364021 +181903,2131,reflective,1172364011 +181903,2203,creepy,1171957961 +181903,2203,cynical,1171957964 +181903,2203,disturbing,1171957968 +181903,2203,DOUBLE LIFE,1173291930 +181903,2203,FATHERS AND DAUGHTERS,1173291977 +181903,2203,INNOCENCE LOST,1173291943 +181903,2203,moody,1171957978 +181903,2203,SERIAL KILLERS,1173291935 +181903,2203,SUBURBAN DYSFUNCTION,1173291985 +181903,2203,tense,1171957981 +181903,2203,WOLF IN SHEEP'S CLOTHING,1173291964 +181903,2238,biting,1171746630 +181903,2238,cynical,1171746646 +181903,2238,disturbing,1171746633 +181903,2238,irreverent,1171746626 +181903,2238,madcap,1171746658 +181903,2238,quirky,1171746655 +181903,2238,satirical,1171746642 +181903,2238,wry,1171746639 +181903,2268,COURT MARTIAL,1173304433 +181903,2268,earnest,1173304418 +181903,2268,forceful,1173304396 +181903,2268,MILITARY LIFE,1173304438 +181903,2268,POLITICAL CORRUPTION,1173304447 +181903,2268,slick,1173304391 +181903,2268,talky,1173304410 +181903,2268,tense,1173304401 +181903,2289,biting,1172041535 +181903,2289,cynical,1172041539 +181903,2289,deadpan,1172041556 +181903,2289,paranoid,1172041563 +181903,2289,satirical,1172041542 +181903,2289,talky,1172041546 +181903,2289,urbane,1172041560 +181903,2291,compassionate,1172498225 +181903,2291,dreamlike,1172498207 +181903,2291,FISH OUT OF WATER,1172498251 +181903,2291,goth,1172498240 +181903,2291,lyrical,1172498215 +181903,2291,poignant,1172498211 +181903,2291,quirky,1172498232 +181903,2291,SAINTLY FOOLS,1172498279 +181903,2291,SUBURBAN DYSFUNCTION,1172498292 +181903,2291,wistful,1172498221 +181903,2301,goofy,1171684033 +181903,2301,irreverent,1171684042 +181903,2301,light,1171684045 +181903,2301,madcap,1171684015 +181903,2301,merry,1171684048 +181903,2301,satirical,1171684020 +181903,2301,silly,1171684029 +181903,2303,cathartic,1171346430 +181903,2303,compassionate,1171346407 +181903,2303,humorous,1171346400 +181903,2303,irreverent,1171346394 +181903,2303,matter-of-fact,1171346417 +181903,2303,satirical,1171346424 +181903,2303,wry,1171346410 +181903,2313,atmospheric,1172119011 +181903,2313,DOCTORS AND PATIENTS,1172961455 +181903,2313,downbeat,1172119042 +181903,2313,DYING YOUNG,1172961459 +181903,2313,gentle,1172119025 +181903,2313,LIVING WITH DISABILITY,1172961474 +181903,2313,melancholy,1172119048 +181903,2313,poignant,1172119002 +181903,2313,somber,1172119029 +181903,2313,stylized,1172119007 +181903,2321,affectionate,1171693966 +181903,2321,biting,1171694008 +181903,2321,fanciful,1171693971 +181903,2321,heartwarming,1171693975 +181903,2321,poignant,1171693983 +181903,2321,satirical,1171693986 +181903,2321,stylized,1171693989 +181903,2321,whimsical,1171693998 +181903,2321,witty,1171694004 +181903,2324,bittersweet,1172217902 +181903,2324,heartwarming,1172217910 +181903,2324,menacing,1172217927 +181903,2324,poignant,1172217913 +181903,2324,sentimental,1172217895 +181903,2324,tearjerking,1172217898 +181903,2324,whimsical,1172217916 +181903,2329,angry,1171744881 +181903,2329,confrontational,1171744866 +181903,2329,disturbing,1171744876 +181903,2329,forceful,1171744859 +181903,2329,tense,1171744869 +181903,2330,deadpan,1173216549 +181903,2330,DOWN ON THEIR LUCK,1173216571 +181903,2330,humorous,1173216533 +181903,2330,matter-of-fact,1173216554 +181903,2330,SMALL-TOWN LIFE,1173216578 +181903,2330,wry,1173216537 +181903,2337,decadent,1171623083 +181903,2337,dreamlike,1171623074 +181903,2337,enigmatic,1171623091 +181903,2337,flashy,1171623087 +181903,2337,hallucinatory,1171623067 +181903,2337,lavish,1171623071 +181903,2337,sexual,1171623099 +181903,2351,affectionate,1171173680 +181903,2351,bittersweet,1171173669 +181903,2351,compassionate,1171173852 +181903,2351,DOWN ON THEIR LUCK,1172498819 +181903,2351,earnest,1171173879 +181903,2351,Giulietta Masina,1272024702 +181903,2351,matter-of-fact,1171173863 +181903,2351,poignant,1171173872 +181903,2351,PROSTITUTES,1172498798 +181903,2351,ROMANTIC BETRAYAL,1172498832 +181903,2351,sentimental,1171173662 +181903,2357,bleak,1171767578 +181903,2357,compassionate,1171767575 +181903,2357,drab,1171767596 +181903,2357,gritty,1171767582 +181903,2357,heartwarming,1171767592 +181903,2361,campy,1171606084 +181903,2361,ECCENTRIC FAMILIES,1172498752 +181903,2361,GENDER-BENDING,1172498763 +181903,2361,goofy,1171606138 +181903,2361,quirky,1171606107 +181903,2361,raunchy,1171606088 +181903,2361,satirical,1171606092 +181903,2361,sexual,1171606126 +181903,2361,silly,1171606117 +181903,2395,affectionate,1172886481 +181903,2395,bittersweet,1172886504 +181903,2395,HIGH SCHOOL LIFE,1172886525 +181903,2395,irreverent,1172886489 +181903,2395,literate,1172886476 +181903,2395,LOVE TRIANGLES,1172886529 +181903,2395,MISFITS AND OUTSIDERS,1172886562 +181903,2395,quirky,1172886485 +181903,2395,stylized,1172886496 +181903,2395,UNLIKELY FRIENDSHIPS,1172886550 +181903,2395,UNREQUITED LOVE,1172886537 +181903,2395,witty,1172886500 +181903,2427,atmospheric,1171665490 +181903,2427,deliberate,1171665495 +181903,2427,elegiac,1171665503 +181903,2427,lyrical,1171665507 +181903,2427,meditative,1171665514 +181903,2427,melancholy,1171665518 +181903,2427,reflective,1171665525 +181903,2459,atmospheric,1172500231 +181903,2459,CANNIBALS,1172500260 +181903,2459,disturbing,1172500220 +181903,2459,grim,1172500235 +181903,2459,gruesome,1172500227 +181903,2459,menacing,1172500241 +181903,2459,NIGHTMARE VACATIONS,1172500255 +181903,2459,tense,1172500216 +181903,2460,creepy,1171462337 +181903,2460,gruesome,1171462275 +181903,2460,humorous,1171462279 +181903,2460,menacing,1171462292 +181903,2460,quirky,1171462287 +181903,2460,slick,1171462346 +181903,2460,tense,1171462303 +181903,2478,easygoing,1171746336 +181903,2478,goofy,1171746338 +181903,2478,humorous,1171746324 +181903,2478,light,1171746345 +181903,2478,madcap,1171746313 +181903,2478,MISTAKEN IDENTITIES,1172502307 +181903,2478,quirky,1171746316 +181903,2478,RIGHTING THE WRONGED,1172502320 +181903,2478,silly,1171746348 +181903,2478,UNLIKELY HEROES,1172502293 +181903,2478,upbeat,1171746328 +181903,2483,campy,1172507673 +181903,2483,DEVIL WORSHIP,1172507732 +181903,2483,eerie,1172507689 +181903,2483,END OF THE WORLD,1172507707 +181903,2483,gruesome,1172507682 +181903,2483,HEROIC MISSION,1172507714 +181903,2483,humorous,1172507666 +181903,2483,OBSESSIVE QUESTS,1172507720 +181903,2483,satirical,1172507669 +181903,2483,silly,1172507686 +181903,2483,stylized,1172507663 +181903,2483,UNLIKELY CRIMINALS,1172507697 +181903,2488,atmospheric,1171151623 +181903,2488,creepy,1171151627 +181903,2488,disturbing,1171151607 +181903,2488,FATHERS AND SONS,1172500967 +181903,2488,HAUNTED BY THE PAST,1172500954 +181903,2488,reflective,1171151617 +181903,2488,SERIAL KILLERS,1172500946 +181903,2488,tense,1171151612 +181903,2488,understated,1171151633 +181903,2488,VOYEURS,1172500938 +181903,2511,CONS AND SCAMS,1172961341 +181903,2511,cynical,1171346207 +181903,2511,deadpan,1171346211 +181903,2511,FALTERING FRIENDSHIPS,1172961320 +181903,2511,FEMMES FATALES,1172961330 +181903,2511,humorous,1171346218 +181903,2511,irreverent,1171346222 +181903,2511,PRIVATE EYES,1172961315 +181903,2511,satirical,1171346229 +181903,2511,STAR DETECTIVES,1172961350 +181903,2511,wry,1171346202 +181903,2529,forceful,1171699223 +181903,2529,paranoid,1171699227 +181903,2529,rousing,1171699207 +181903,2529,satirical,1171699215 +181903,2529,tense,1171699211 +181903,2571,atmospheric,1171171001 +181903,2571,ominous,1171171006 +181903,2571,stylized,1171170994 +181903,2571,visceral,1171171012 +181903,2575,compassionate,1172895811 +181903,2575,DOWN ON THEIR LUCK,1172895937 +181903,2575,downbeat,1172895815 +181903,2575,drab,1172895833 +181903,2575,gritty,1172895820 +181903,2575,SELF-DESTRUCTIVE ROMANCE,1172895946 +181903,2575,talky,1172895829 +181903,2575,understated,1172895837 +181903,2575,WOMEN'S FRIENDSHIP,1172895923 +181903,2599,biting,1172054761 +181903,2599,cynical,1172054778 +181903,2599,deadpan,1172054796 +181903,2599,EXTRAMARITAL AFFAIRS,1173304865 +181903,2599,HIGH SCHOOL LIFE,1173304848 +181903,2599,humorous,1172054782 +181903,2599,irreverent,1172054768 +181903,2599,OBSESSIVE QUESTS,1173304857 +181903,2599,ON THE CAMPAIGN TRAIL,1173304839 +181903,2599,satirical,1172054765 +181903,2599,SIBLING RELATIONSHIPS,1173304873 +181903,2599,TEACHERS AND STUDENTS,1173304828 +181903,2599,witty,1172054785 +181903,2602,campy,1172496740 +181903,2602,easygoing,1172496744 +181903,2624,austere,1172220983 +181903,2624,gentle,1172220967 +181903,2624,HAUNTED BY THE PAST,1172566120 +181903,2624,lyrical,1172220975 +181903,2624,meditative,1172220979 +181903,2624,reflective,1172220959 +181903,2624,SUPERNATURAL ROMANCE,1172566134 +181903,2624,understated,1172220963 +181903,2624,wistful,1172220990 +181903,2632,atmospheric,1172216062 +181903,2632,dreamlike,1172216059 +181903,2632,enigmatic,1172216055 +181903,2632,meditative,1172216075 +181903,2632,reflective,1172216071 +181903,2640,humorous,1171151056 +181903,2640,light,1171151060 +181903,2640,rousing,1171151068 +181903,2640,slick,1171151073 +181903,2640,tense,1171151079 +181903,2640,upbeat,1171151085 +181903,2664,disturbing,1173283936 +181903,2664,END OF THE WORLD,1173283968 +181903,2664,EVIL ALIENS,1173283960 +181903,2664,grim,1173283928 +181903,2664,menacing,1173283950 +181903,2664,ominous,1173283932 +181903,2664,paranoid,1173283924 +181903,2664,tense,1173283946 +181903,2692,easygoing,1171675274 +181903,2692,humorous,1171675278 +181903,2692,madcap,1171675282 +181903,2692,slick,1171675290 +181903,2692,whimsical,1171675294 +181903,2700,biting,1171606014 +181903,2700,frantic,1171606026 +181903,2700,goofy,1171606022 +181903,2700,irreverent,1171605996 +181903,2700,quirky,1171606032 +181903,2700,raunchy,1171605999 +181903,2700,satirical,1171606003 +181903,2712,atmospheric,1171698655 +181903,2712,deliberate,1171698640 +181903,2712,dreamlike,1171698666 +181903,2712,enigmatic,1171698644 +181903,2712,lavish,1171698659 +181903,2712,moody,1171698647 +181903,2712,Nicole Kidman,1328984236 +181903,2712,Nudity (Full Frontal - Notable),1328984245 +181903,2712,sexual,1171698672 +181903,2728,deliberate,1171710026 +181903,2728,earnest,1171710035 +181903,2728,forceful,1171710055 +181903,2728,lavish,1171710041 +181903,2728,poignant,1171710050 +181903,2728,rousing,1171710018 +181903,2728,sweeping,1171710022 +181903,2729,biting,1171604480 +181903,2729,cynical,1171604488 +181903,2729,satirical,1171604484 +181903,2729,sexy,1171604504 +181903,2729,talky,1171604498 +181903,2730,atmospheric,1171744224 +181903,2730,cynical,1171744238 +181903,2730,deliberate,1171744229 +181903,2730,downbeat,1171744252 +181903,2730,FATHERS AND SONS,1172502190 +181903,2730,lavish,1171744242 +181903,2730,RAGS TO RICHES,1172502178 +181903,2730,SOCIAL CLIMBING,1172502172 +181903,2730,somber,1171744255 +181903,2730,wry,1171744244 +181903,2731,gentle,1171744317 +181903,2731,heartwarming,1171744320 +181903,2731,lyrical,1171744327 +181903,2731,MISCHIEVOUS CHILDREN,1172502245 +181903,2731,reflective,1171744330 +181903,2732,atmospheric,1171428343 +181903,2732,bittersweet,1171428310 +181903,2732,lyrical,1171428316 +181903,2732,moody,1171428323 +181903,2732,reflective,1171428330 +181903,2732,talky,1171428339 +181903,2762,eerie,1171947766 +181903,2762,enigmatic,1171947775 +181903,2762,moody,1171947783 +181903,2762,ominous,1171947788 +181903,2762,somber,1171947792 +181903,2762,stylized,1171947800 +181903,2762,understated,1171947771 +181903,2839,earnest,1171603590 +181903,2839,poignant,1171603598 +181903,2843,HIDE THE DEAD BODY,1173103793 +181903,2843,humorous,1173103753 +181903,2843,light,1173103756 +181903,2843,madcap,1173103759 +181903,2843,NOTHING GOES RIGHT,1173103783 +181903,2843,quirky,1173103768 +181903,2843,upbeat,1173103771 +181903,2843,witty,1173103775 +181903,2858,biting,1171184183 +181903,2858,CRUMBLING MARRIAGES,1172960529 +181903,2858,cynical,1171184145 +181903,2858,irreverent,1171184175 +181903,2858,lyrical,1171184164 +181903,2858,MIDLIFE CRISES,1172960552 +181903,2858,PARENTHOOD,1172960537 +181903,2858,reflective,1171184156 +181903,2858,satirical,1171184139 +181903,2858,SUBURBAN DYSFUNCTION,1172960524 +181903,2858,wry,1171184149 +181903,2862,decadent,1171324607 +181903,2862,disturbing,1171324614 +181903,2862,forceful,1171324572 +181903,2862,lurid,1171324575 +181903,2862,sexual,1171324592 +181903,2862,visceral,1171324601 +181903,2877,campy,1171430810 +181903,2877,fanciful,1171430803 +181903,2877,humorous,1171430814 +181903,2877,irreverent,1171430818 +181903,2877,satirical,1171430799 +181903,2890,biting,1171150945 +181903,2890,confrontational,1171150956 +181903,2890,forceful,1171150966 +181903,2890,humorous,1171150974 +181903,2890,satirical,1171150980 +181903,2890,stylized,1171150985 +181903,2890,tense,1171150989 +181903,2897,fanciful,1171265797 +181903,2897,nostalgic,1171265780 +181903,2897,quirky,1171265791 +181903,2897,stylized,1171265770 +181903,2897,whimsical,1171265775 +181903,2905,atmospheric,1171604325 +181903,2905,humorous,1171604333 +181903,2905,rousing,1171604339 +181903,2917,atmospheric,1172501777 +181903,2917,cynical,1172501803 +181903,2917,DANGEROUS ATTRACTION,1172501837 +181903,2917,disturbing,1172501780 +181903,2917,FEMMES FATALES,1172501811 +181903,2917,ominous,1172501787 +181903,2917,PERFECT CRIME,1172501825 +181903,2917,sexy,1172501791 +181903,2917,tense,1172501799 +181903,2917,TREACHEROUS SPOUSES,1172501851 +181903,2920,atmospheric,1171611565 +181903,2920,bittersweet,1171611561 +181903,2920,elegant,1171611582 +181903,2920,literate,1171611574 +181903,2920,lyrical,1171611577 +181903,2920,wry,1171611567 +181903,2921,bleak,1171685506 +181903,2921,cynical,1171685524 +181903,2921,enigmatic,1171685502 +181903,2921,gloomy,1171685517 +181903,2921,stylized,1171685509 +181903,2922,cynical,1171685459 +181903,2922,rousing,1171685463 +181903,2922,stylized,1171685467 +181903,2925,atmospheric,1171345164 +181903,2925,disturbing,1171345152 +181903,2925,downbeat,1171345178 +181903,2925,HAUNTED BY THE PAST,1173293369 +181903,2925,menacing,1171345186 +181903,2925,reflective,1171345157 +181903,2925,SOCIAL CLIMBING,1173293364 +181903,2925,somber,1171345170 +181903,2927,affectionate,1172286121 +181903,2927,bittersweet,1172286125 +181903,2927,poignant,1172286129 +181903,2927,understated,1172286142 +181903,2931,affectionate,1172218213 +181903,2931,bittersweet,1172218219 +181903,2931,compassionate,1172218223 +181903,2931,hallucinatory,1172218235 +181903,2931,heartwarming,1172218232 +181903,2931,quirky,1172218239 +181903,2932,atmospheric,1171667170 +181903,2932,austere,1171667173 +181903,2932,dreamlike,1171667197 +181903,2932,lyrical,1171667166 +181903,2932,meditative,1171667194 +181903,2932,somber,1171667181 +181903,2932,understated,1171667185 +181903,2943,atmospheric,1172959038 +181903,2943,COLONIALISM,1172959090 +181903,2943,CULTURE CLASH,1172959082 +181903,2943,elegant,1172958997 +181903,2943,INTERRACIAL/CROSS-CULTURAL ROMANCE,1172959136 +181903,2943,lavish,1172959009 +181903,2943,LOVE TRIANGLES,1172959114 +181903,2943,lyrical,1172959025 +181903,2943,MOTHERS AND DAUGHTERS,1172959099 +181903,2943,POLITICAL UNREST,1172959104 +181903,2943,sentimental,1172959030 +181903,2943,sweeping,1172959016 +181903,2947,humorous,1171172693 +181903,2947,rousing,1171172699 +181903,2947,slick,1171172670 +181903,2947,tense,1171172703 +181903,2959,angry,1171438399 +181903,2959,atmospheric,1171438431 +181903,2959,confrontational,1171438405 +181903,2959,DANGEROUS FRIENDS,1172961207 +181903,2959,disturbing,1171438426 +181903,2959,FIGHTING THE SYSTEM,1172961213 +181903,2959,grim,1171438413 +181903,2959,satirical,1171438396 +181903,2959,SPLIT PERSONALITIES,1172961222 +181903,2959,TERRORISM,1172961230 +181903,2959,visceral,1171438417 +181903,2964,cerebral,1172876949 +181903,2964,confrontational,1172876931 +181903,2964,ECCENTRIC FAMILIES,1172876980 +181903,2964,enigmatic,1172876953 +181903,2964,FATHERS AND SONS,1172877010 +181903,2964,intimate,1172876960 +181903,2964,MIND GAMES,1172876996 +181903,2964,quirky,1172876935 +181903,2964,SIBLING RELATIONSHIPS,1172876983 +181903,2964,somber,1172876944 +181903,2964,talky,1172876928 +181903,2970,fanciful,1172139229 +181903,2970,lavish,1172139233 +181903,2970,OBSESSIVE QUESTS,1172883101 +181903,2970,quirky,1172139236 +181903,2970,sweeping,1172139219 +181903,2970,tense,1172139240 +181903,2972,ARRANGED MARRIAGES,1172880465 +181903,2972,atmospheric,1172281693 +181903,2972,intimate,1172281709 +181903,2972,poignant,1172281712 +181903,2972,stylized,1172281715 +181903,2972,sweeping,1172281700 +181903,2972,tense,1172281697 +181903,2972,WOMEN DURING WARTIME,1172880474 +181903,2993,deadpan,1171783878 +181903,2993,humorous,1171783895 +181903,2993,lavish,1171783883 +181903,2993,slick,1171783892 +181903,2993,tense,1171783889 +181903,2997,GENDER-BENDING,1173244884 +181903,2997,hallucinatory,1172389831 +181903,2997,LOVE TRIANGLES,1173244877 +181903,2997,madcap,1172389842 +181903,2997,quirky,1172389824 +181903,2997,satirical,1172389849 +181903,2997,SUCCESS IS THE BEST REVENGE,1173244894 +181903,2997,talky,1172389864 +181903,2997,TRADING BODIES,1173244868 +181903,2997,urbane,1172389846 +181903,2997,whimsical,1172389828 +181903,3000,atmospheric,1172218035 +181903,3000,cathartic,1172218014 +181903,3000,earnest,1172218032 +181903,3000,fanciful,1172218010 +181903,3000,HEROIC MISSION,1172586791 +181903,3000,MYTHICAL CREATURES,1172586799 +181903,3000,RIGHTING THE WRONGED,1172586812 +181903,3000,rousing,1172218039 +181903,3000,sweeping,1172218017 +181903,3018,campy,1172358268 +181903,3018,creepy,1172358253 +181903,3018,gruesome,1172358616 +181903,3018,humorous,1172358623 +181903,3018,silly,1172358257 +181903,3018,tense,1172358259 +181903,3030,atmospheric,1171603638 +181903,3030,bleak,1171603646 +181903,3030,passionate,1171603655 +181903,3030,tense,1171603643 +181903,3038,biting,1171430137 +181903,3038,cynical,1171430149 +181903,3038,LADDER TO THE TOP,1173101915 +181903,3038,RAGS TO RICHES,1173101927 +181903,3038,RISE AND FALL STORIES,1173101911 +181903,3038,satirical,1171430130 +181903,3038,WORK ETHICS,1173101922 +181903,3038,wry,1171430140 +181903,3074,atmospheric,1172376870 +181903,3074,bleak,1172376877 +181903,3074,deliberate,1172376855 +181903,3074,earthy,1172376880 +181903,3074,gritty,1172376867 +181903,3074,harsh,1172376863 +181903,3074,wintry,1172376851 +181903,3075,atmospheric,1171186679 +181903,3075,claustrophobic,1171186670 +181903,3075,eerie,1171186683 +181903,3075,gruesome,1171186690 +181903,3075,menacing,1171186696 +181903,3075,MENTAL ILLNESS,1172500823 +181903,3075,ominous,1171186704 +181903,3075,paranoid,1171186710 +181903,3089,bleak,1171603479 +181903,3089,downbeat,1171603461 +181903,3089,lyrical,1171603493 +181903,3089,melancholy,1171603474 +181903,3089,poignant,1171603483 +181903,3089,reflective,1171603466 +181903,3090,angry,1173215918 +181903,3090,atmospheric,1173215908 +181903,3090,drab,1173215931 +181903,3090,FIGHTING THE SYSTEM,1173215968 +181903,3090,LABOR UNIONS,1173215958 +181903,3090,matter-of-fact,1173215936 +181903,3090,SOCIAL INJUSTICE,1173215984 +181903,3090,sweeping,1173215904 +181903,3090,talky,1173215923 +181903,3091,autumnal,1171674917 +181903,3091,bleak,1171674921 +181903,3091,lyrical,1171674927 +181903,3091,sweeping,1171674931 +181903,3093,atmospheric,1171147923 +181903,3093,DRUG ADDICTION,1172499050 +181903,3093,FIGHTING THE SYSTEM,1172499017 +181903,3093,lyrical,1171147955 +181903,3093,meditative,1171147931 +181903,3093,poignant,1171147943 +181903,3093,PROSTITUTES,1258738299 +181903,3093,STAR-CROSSED LOVERS,1172499040 +181903,3093,understated,1171147915 +181903,3093,UNREQUITED LOVE,1172499025 +181903,3093,wry,1171147950 +181903,3099,biting,1171183105 +181903,3099,irreverent,1171183110 +181903,3099,literate,1171183116 +181903,3099,racy,1171183100 +181903,3099,satirical,1171183131 +181903,3099,sexual,1171183120 +181903,3099,wry,1171183125 +181903,3114,bright,1173284813 +181903,3114,DARING RESCUES,1173284834 +181903,3114,fanciful,1173284799 +181903,3114,humorous,1173284791 +181903,3114,light,1173284807 +181903,3114,RACE AGAINST TIME,1173284845 +181903,3114,TOYS COME TO LIFE,1173284828 +181903,3114,whimsical,1173284794 +181903,3134,atmospheric,1171185896 +181903,3134,deliberate,1171185903 +181903,3134,downbeat,1171185909 +181903,3134,lyrical,1171185920 +181903,3134,poignant,1171185914 +181903,3147,compassionate,1171439457 +181903,3147,deliberate,1171439449 +181903,3147,eerie,1171439462 +181903,3147,heartwarming,1171439442 +181903,3147,nostalgic,1171439429 +181903,3147,sentimental,1171439424 +181903,3147,whimsical,1171439470 +181903,3152,bittersweet,1173284383 +181903,3152,elegiac,1173284404 +181903,3152,nostalgic,1173284387 +181903,3152,poignant,1173284400 +181903,3152,reflective,1173284391 +181903,3152,SEXUAL AWAKENING,1173284419 +181903,3152,SMALL-TOWN LIFE,1173284414 +181903,3160,bleak,1171694136 +181903,3160,cathartic,1171694115 +181903,3160,downbeat,1171694129 +181903,3160,DRUG ADDICTION,1173285209 +181903,3160,elegiac,1171694125 +181903,3160,FATHERS AND DAUGHTERS,1173285197 +181903,3160,FATHERS AND SONS,1173285179 +181903,3160,HAUNTED BY THE PAST,1173285188 +181903,3160,INTERSECTING LIVES,1173285175 +181903,3160,melancholy,1171694107 +181903,3160,poignant,1171694111 +181903,3160,REDEMPTION,1173285204 +181903,3160,talky,1171694122 +181903,3168,deliberate,1171603139 +181903,3168,gritty,1171603153 +181903,3168,humorous,1171603120 +181903,3168,quirky,1171603125 +181903,3168,reflective,1171603143 +181903,3168,WANDERLUST,1173214671 +181903,3216,atmospheric,1171606581 +181903,3216,hallucinatory,1171606589 +181903,3216,sexual,1171606599 +181903,3218,confrontational,1173188377 +181903,3218,disturbing,1173188382 +181903,3218,enigmatic,1173188387 +181903,3218,harsh,1173188395 +181903,3218,LIVING WITH AIDS,1173188417 +181903,3218,visceral,1173188399 +181903,3223,cerebral,1171765369 +181903,3223,disturbing,1171765373 +181903,3223,literate,1171765365 +181903,3223,quirky,1171765383 +181903,3223,talky,1171765387 +181903,3223,whimsical,1171765390 +181903,3223,witty,1171765398 +181903,3272,confrontational,1171696771 +181903,3272,cynical,1171696803 +181903,3272,disturbing,1171696789 +181903,3272,downbeat,1171696776 +181903,3272,grim,1171696795 +181903,3272,lurid,1171696779 +181903,3272,visceral,1171696792 +181903,3328,deadpan,1172392326 +181903,3328,deliberate,1172392330 +181903,3328,meditative,1172392532 +181903,3328,melancholy,1172392390 +181903,3328,quirky,1172392363 +181903,3328,stylized,1172392376 +181903,3328,understated,1172392384 +181903,3344,campy,1171527295 +181903,3344,disturbing,1171527278 +181903,3344,gritty,1171527282 +181903,3344,gruesome,1171527285 +181903,3364,atmospheric,1172351972 +181903,3364,downbeat,1172351976 +181903,3364,menacing,1172351981 +181903,3364,ominous,1172351994 +181903,3364,tense,1172351990 +181903,3365,angry,1171665117 +181903,3365,atmospheric,1171665122 +181903,3365,earthy,1171665133 +181903,3365,gritty,1171665137 +181903,3365,reflective,1171665149 +181903,3365,rousing,1171665126 +181903,3365,stirring,1171665141 +181903,3377,ASSASSINATION PLOTS,1173194706 +181903,3377,downbeat,1173194649 +181903,3377,gritty,1173194638 +181903,3377,LIFE UNDER OCCUPATION,1173194669 +181903,3377,MEMBERS OF THE PRESS,1173194684 +181903,3377,MISCARRIAGE OF JUSTICE,1173194689 +181903,3377,ominous,1173194644 +181903,3377,tense,1173194641 +181903,3377,visceral,1173194652 +181903,3384,claustrophobic,1171696081 +181903,3384,gritty,1171696072 +181903,3384,humorous,1171696096 +181903,3384,menacing,1171696102 +181903,3384,tense,1171696068 +181903,3384,visceral,1171696091 +181903,3415,deliberate,1172293603 +181903,3415,downbeat,1172293631 +181903,3415,dreamlike,1172293585 +181903,3415,enigmatic,1172293608 +181903,3415,lyrical,1172293594 +181903,3415,meditative,1172293577 +181903,3415,reflective,1172293581 +181903,3429,easygoing,1172358147 +181903,3429,humorous,1172358150 +181903,3429,quirky,1172358144 +181903,3429,upbeat,1172358157 +181903,3429,whimsical,1172358161 +181903,3429,witty,1172358164 +181903,3435,atmospheric,1171663159 +181903,3435,bleak,1171663174 +181903,3435,cynical,1171663162 +181903,3435,downbeat,1171663171 +181903,3435,ominous,1171663136 +181903,3435,sexy,1171663132 +181903,3435,stylized,1171663149 +181903,3469,austere,1173102821 +181903,3469,cerebral,1173102832 +181903,3469,deliberate,1173102824 +181903,3469,earnest,1173102848 +181903,3469,FIGHTING THE SYSTEM,1173102877 +181903,3469,literate,1173102845 +181903,3469,RELIGIOUS ZEALOTRY,1173102953 +181903,3469,STAR LAWYERS,1173102869 +181903,3469,stirring,1173102852 +181903,3469,talky,1173102836 +181903,3473,cerebral,1173189532 +181903,3473,humorous,1173189561 +181903,3473,INTERSECTING LIVES,1173189590 +181903,3473,intimate,1173189556 +181903,3473,literate,1173189537 +181903,3473,reflective,1173189575 +181903,3473,stylized,1173189540 +181903,3473,talky,1173189572 +181903,3473,urbane,1173189552 +181903,3498,bleak,1171701553 +181903,3498,claustrophobic,1171701563 +181903,3498,disturbing,1171701571 +181903,3498,forceful,1171701580 +181903,3498,grim,1171701550 +181903,3498,lurid,1171701556 +181903,3499,claustrophobic,1173304178 +181903,3499,HOSTAGE SITUATIONS,1173304192 +181903,3499,menacing,1173304169 +181903,3499,OUT FOR REVENGE,1173304204 +181903,3499,tense,1173304172 +181903,3499,TRAPPED OR CONFINED,1173304185 +181903,3499,WRITER'S LIFE,1173304197 +181903,3503,atmospheric,1171667264 +181903,3503,cerebral,1171667257 +181903,3503,deliberate,1171667273 +181903,3503,enigmatic,1171667277 +181903,3503,meditative,1171667287 +181903,3503,stylized,1171667291 +181903,3503,talky,1171667261 +181903,3521,deadpan,1172132655 +181903,3521,goofy,1172132649 +181903,3521,humorous,1172132658 +181903,3521,nostalgic,1172132672 +181903,3521,quirky,1172132680 +181903,3521,talky,1172132683 +181903,3521,wry,1172132651 +181903,3550,atmospheric,1172375395 +181903,3550,creepy,1172375395 +181903,3550,goth,1172375395 +181903,3550,ominous,1172375401 +181903,3550,sexy,1172375414 +181903,3550,stylized,1172375412 +181903,3556,dreamlike,1171766111 +181903,3556,elegiac,1171766087 +181903,3556,enigmatic,1171766078 +181903,3556,lyrical,1171766074 +181903,3556,melancholy,1171766099 +181903,3556,reflective,1171766103 +181903,3556,stylized,1171766090 +181903,3578,elegiac,1173104387 +181903,3578,FALL FROM POWER,1173104428 +181903,3578,forceful,1173104372 +181903,3578,HEROIC MISSION,1173104416 +181903,3578,menacing,1173104398 +181903,3578,RIGHTING THE WRONGED,1173104409 +181903,3578,slick,1173104384 +181903,3578,stylized,1173104368 +181903,3578,sweeping,1173104375 +181903,3578,visceral,1173104394 +181903,3587,AMATEUR SLEUTHS,1172507806 +181903,3587,atmospheric,1171682903 +181903,3587,creepy,1171682886 +181903,3587,dreamlike,1171682907 +181903,3587,eerie,1171682889 +181903,3587,gruesome,1171682899 +181903,3587,ominous,1171682883 +181903,3587,stylized,1171682911 +181903,3587,tense,1171682878 +181903,3587,WITCHCRAFT,1172507792 +181903,3587,WOMEN IN JEOPARDY,1172507799 +181903,3588,bleak,1173732484 +181903,3588,downbeat,1173732467 +181903,3588,literate,1173732481 +181903,3588,reflective,1173732478 +181903,3588,SIBLING RELATIONSHIPS,1173732495 +181903,3588,tense,1173732469 +181903,3620,autumnal,1172364112 +181903,3620,chilly,1172364103 +181903,3620,downbeat,1172364116 +181903,3620,gloomy,1172364121 +181903,3620,intimate,1172364132 +181903,3620,melancholy,1172364093 +181903,3620,reflective,1172364138 +181903,3620,somber,1172364096 +181903,3620,understated,1172364129 +181903,3620,wintry,1172364142 +181903,3638,flashy,1171784004 +181903,3638,rousing,1171783990 +181903,3638,slick,1171784000 +181903,3638,stylized,1171783982 +181903,3638,tense,1171783993 +181903,3645,atmospheric,1171428461 +181903,3645,intimate,1171428509 +181903,3645,lyrical,1171428469 +181903,3645,reflective,1171428453 +181903,3645,springlike,1171428479 +181903,3645,stylized,1171428504 +181903,3652,atmospheric,1171696579 +181903,3652,creepy,1171696574 +181903,3652,disturbing,1171696591 +181903,3652,gruesome,1171696595 +181903,3652,menacing,1171696599 +181903,3652,visceral,1171696583 +181903,3671,easygoing,1171434174 +181903,3671,frantic,1171434195 +181903,3671,goofy,1171434181 +181903,3671,madcap,1171434192 +181903,3671,satirical,1171434178 +181903,3671,silly,1171434198 +181903,3676,atmospheric,1171186146 +181903,3676,creepy,1171186125 +181903,3676,disturbing,1171186117 +181903,3676,dreamlike,1171186158 +181903,3676,enigmatic,1171186106 +181903,3676,gruesome,1171186152 +181903,3676,hallucinatory,1171186164 +181903,3676,ominous,1171186132 +181903,3676,paranoid,1171186138 +181903,3683,CRIME GONE AWRY,1172501393 +181903,3683,cynical,1172501363 +181903,3683,deadpan,1172501375 +181903,3683,quirky,1172501339 +181903,3683,satirical,1172501372 +181903,3683,TREACHEROUS SPOUSES,1172501405 +181903,3683,witty,1172501381 +181903,3727,atmospheric,1171950061 +181903,3727,claustrophobic,1171950058 +181903,3727,eerie,1171950064 +181903,3727,gloomy,1171950078 +181903,3727,menacing,1171950071 +181903,3727,stylized,1171950074 +181903,3727,tense,1171950084 +181903,3728,atmospheric,1173191498 +181903,3728,CRIME GONE AWRY,1173191544 +181903,3728,downbeat,1173191485 +181903,3728,DRUG TRADE,1173191540 +181903,3728,gloomy,1173191473 +181903,3728,gritty,1173191507 +181903,3728,INTERRACIAL/CROSS-CULTURAL ROMANCE,1173191558 +181903,3728,LOVERS ON THE LAM,1173191563 +181903,3728,LOVERS REUNITED,1173191576 +181903,3728,melancholy,1173191479 +181903,3728,poignant,1173191482 +181903,3728,REDEMPTION,1173191572 +181903,3728,tense,1173191502 +181903,3729,atmospheric,1171184703 +181903,3729,forceful,1171184722 +181903,3729,moody,1171184730 +181903,3729,rousing,1171184710 +181903,3729,tense,1171184727 +181903,3729,upbeat,1171184736 +181903,3729,visceral,1171184716 +181903,3730,claustrophobic,1173214423 +181903,3730,deliberate,1173214431 +181903,3730,downbeat,1173214446 +181903,3730,enigmatic,1173214454 +181903,3730,LONE WOLVES,1173214491 +181903,3730,ominous,1173214435 +181903,3730,paranoid,1173214418 +181903,3730,POLITICAL CONSPIRACIES,1173214480 +181903,3730,reflective,1173214442 +181903,3730,WITNESSING A CRIME,1173214462 +181903,3736,biting,1173101810 +181903,3736,cynical,1173101814 +181903,3736,downbeat,1173101825 +181903,3736,FISH OUT OF WATER,1173101848 +181903,3736,MEMBERS OF THE PRESS,1173212886 +181903,3736,satirical,1173101817 +181903,3736,WORK ETHICS,1173101840 +181903,3736,wry,1173101828 +181903,3740,campy,1171696922 +181903,3740,goofy,1171696908 +181903,3740,humorous,1171696904 +181903,3740,menacing,1171696925 +181903,3740,quirky,1171696912 +181903,3740,slick,1171696928 +181903,3740,tense,1171696918 +181903,3741,atmospheric,1171674638 +181903,3741,austere,1171674659 +181903,3741,CRIME SPREES,1173285279 +181903,3741,deliberate,1171674656 +181903,3741,LOVERS ON THE LAM,1173285273 +181903,3741,lyrical,1171674632 +181903,3741,stylized,1171674649 +181903,3741,THRILL CRIME,1173285290 +181903,3788,atmospheric,1172044396 +181903,3788,cerebral,1172044434 +181903,3788,deliberate,1172044413 +181903,3788,eerie,1172044402 +181903,3788,enigmatic,1172044438 +181903,3788,meditative,1172044417 +181903,3788,paranoid,1172044422 +181903,3788,stylized,1172044400 +181903,3788,wry,1172044430 +181903,3804,Nudity (Topless - Notable),1284331387 +181903,3809,DOCTORS AND PATIENTS,1173304689 +181903,3809,FALTERING FRIENDSHIPS,1173304700 +181903,3809,FAMILY VACATIONS,1173304714 +181903,3809,humorous,1173304666 +181903,3809,madcap,1173304663 +181903,3809,quirky,1173304679 +181903,3809,talky,1173304671 +181903,3814,goofy,1171147355 +181903,3814,humorous,1171147348 +181903,3814,irreverent,1171147362 +181903,3814,NOTHING GOES RIGHT,1172499106 +181903,3814,quirky,1171147369 +181903,3814,satirical,1171147380 +181903,3814,UNLIKELY HEROES,1172499100 +181903,3814,UNREQUITED LOVE,1172499116 +181903,3819,humorous,1171675519 +181903,3819,quirky,1171675546 +181903,3819,satirical,1171675523 +181903,3819,sexy,1171675527 +181903,3819,urbane,1171675541 +181903,3832,atmospheric,1171432357 +181903,3832,creepy,1171432360 +181903,3832,eerie,1171432369 +181903,3832,menacing,1171432374 +181903,3844,BATTLING ILLNESS,1173304984 +181903,3844,DYING YOUNG,1173304994 +181903,3844,heartwarming,1173304939 +181903,3844,humorous,1173304932 +181903,3844,MOTHERS AND DAUGHTERS,1173304974 +181903,3844,sentimental,1173304926 +181903,3844,tearjerking,1173304943 +181903,3844,warm,1173304949 +181903,3844,WEDDING BELLS,1173305001 +181903,3844,WOMEN'S FRIENDSHIP,1173304964 +181903,3845,humorous,1171266132 +181903,3845,racy,1171266110 +181903,3845,sentimental,1171266117 +181903,3845,sexual,1171266126 +181903,3845,sexy,1171266107 +181903,3849,creepy,1171663705 +181903,3849,menacing,1171663711 +181903,3849,moody,1171663714 +181903,3849,ominous,1171663722 +181903,3849,tense,1171663726 +181903,3855,austere,1173216684 +181903,3855,BRIEF ENCOUNTERS,1173216704 +181903,3855,deliberate,1173216656 +181903,3855,intimate,1173216664 +181903,3855,melancholy,1173216680 +181903,3855,reflective,1173216671 +181903,3855,sexual,1173216695 +181903,3855,talky,1173216651 +181903,3855,understated,1173216667 +181903,3875,atmospheric,1172507866 +181903,3875,creepy,1172507881 +181903,3875,DEAL WITH THE DEVIL,1172507920 +181903,3875,DEVIL WORSHIP,1172507910 +181903,3875,eerie,1172507870 +181903,3875,goth,1172507885 +181903,3875,ominous,1172507895 +181903,3875,RACE AGAINST TIME,1172507936 +181903,3875,stylized,1172507873 +181903,3875,tense,1172507888 +181903,3875,WITCHCRAFT,1172507903 +181903,3875,WOMEN IN JEOPARDY,1172507928 +181903,3897,affectionate,1171149626 +181903,3897,bittersweet,1171149633 +181903,3897,easygoing,1171149662 +181903,3897,humorous,1171149645 +181903,3897,INNOCENCE LOST,1173285092 +181903,3897,MOTHERS AND SONS,1173285075 +181903,3897,MUSICIAN'S LIFE,1173285070 +181903,3897,nostalgic,1171149657 +181903,3897,understated,1171149651 +181903,3897,UNREQUITED LOVE,1173285088 +181903,3897,warm,1171149639 +181903,3897,WRITER'S LIFE,1173285080 +181903,3910,austere,1171339542 +181903,3910,cathartic,1171339555 +181903,3910,DOWN ON THEIR LUCK,1172877134 +181903,3910,downbeat,1171339537 +181903,3910,drab,1171339532 +181903,3910,grim,1171339549 +181903,3910,MOTHERS AND SONS,1172877114 +181903,3910,SAINTLY FOOLS,1172877120 +181903,3910,stylized,1171339568 +181903,3910,tearjerking,1171339562 +181903,3925,bleak,1173187501 +181903,3925,BOHEMIAN LIFE,1173187544 +181903,3925,deadpan,1173187478 +181903,3925,deliberate,1173187505 +181903,3925,enigmatic,1173187511 +181903,3925,FISH OUT OF WATER,1173187538 +181903,3925,IMMIGRANT LIFE,1173187555 +181903,3925,quirky,1173187483 +181903,3925,understated,1173187491 +181903,3970,atmospheric,1171696690 +181903,3970,bleak,1171696682 +181903,3970,creepy,1171696699 +181903,3970,disturbing,1171696704 +181903,3970,eerie,1171696685 +181903,3970,gruesome,1171696679 +181903,3970,lurid,1171696707 +181903,3970,menacing,1171696719 +181903,3970,ominous,1171696715 +181903,3977,campy,1171323541 +181903,3977,sexy,1171323568 +181903,3977,silly,1171323548 +181903,3977,slick,1171323545 +181903,3977,upbeat,1171323560 +181903,3977,whimsical,1171323556 +181903,3994,atmospheric,1171947881 +181903,3994,austere,1171947893 +181903,3994,deliberate,1171947898 +181903,3994,eerie,1171947874 +181903,3994,melancholy,1171947871 +181903,3994,somber,1171947867 +181903,3994,understated,1171947886 +181903,3996,autumnal,1171437712 +181903,3996,dreamlike,1171437656 +181903,3996,elegant,1171437662 +181903,3996,lavish,1171437690 +181903,3996,lyrical,1171437669 +181903,3996,poignant,1171437672 +181903,3996,rousing,1171437681 +181903,4011,bright,1171438614 +181903,4011,cynical,1171438609 +181903,4011,frantic,1171438597 +181903,4011,goofy,1171438617 +181903,4011,madcap,1171438593 +181903,4011,quirky,1171438601 +181903,4011,slick,1171438626 +181903,4034,confrontational,1172389353 +181903,4034,DRUG ADDICTION,1172962090 +181903,4034,DRUG TRADE,1172962086 +181903,4034,FATHERS AND DAUGHTERS,1172962128 +181903,4034,forceful,1172389330 +181903,4034,gritty,1172389322 +181903,4034,matter-of-fact,1172389361 +181903,4034,POLICE CORRUPTION,1172962094 +181903,4034,POLITICAL CORRUPTION,1172962114 +181903,4034,stylized,1172389336 +181903,4034,sweeping,1172389357 +181903,4034,tense,1172389325 +181903,4065,cathartic,1171171269 +181903,4065,DRUG TRADE,1172501107 +181903,4065,flashy,1171171253 +181903,4065,forceful,1171171290 +181903,4065,gritty,1171171274 +181903,4065,INNER CITY BLUES,1172501099 +181903,4065,ironic,1171171263 +181903,4065,OUT FOR REVENGE,1172501076 +181903,4065,sexy,1171171258 +181903,4065,tense,1171171285 +181903,4065,visceral,1171171279 +181903,4104,goofy,1171338953 +181903,4104,light,1171338942 +181903,4104,madcap,1171338949 +181903,4144,atmospheric,1171750245 +181903,4144,elegant,1171750236 +181903,4144,melancholy,1171750248 +181903,4144,moody,1171750255 +181903,4144,nocturnal,1171750259 +181903,4144,stylized,1171750226 +181903,4144,understated,1171750231 +181903,4148,atmospheric,1172505839 +181903,4148,CANNIBALS,1172505901 +181903,4148,disturbing,1172505858 +181903,4148,goth,1172505890 +181903,4148,HAUNTED BY THE PAST,1172505906 +181903,4148,menacing,1172505862 +181903,4148,SERIAL KILLERS,1172505926 +181903,4148,slick,1172505843 +181903,4148,somber,1172505853 +181903,4148,stylized,1172505846 +181903,4148,WOMEN IN JEOPARDY,1172505914 +181903,4194,atmospheric,1171325074 +181903,4194,gentle,1171325047 +181903,4194,JOURNEY OF SELF-DISCOVERY,1172502111 +181903,4194,lyrical,1171325067 +181903,4194,OPPOSITES ATTRACT,1172502120 +181903,4194,OTHERWISE ENGAGED,1172502080 +181903,4194,reflective,1171325056 +181903,4194,witty,1171325062 +181903,4194,wry,1171325050 +181903,4210,creepy,1173215533 +181903,4210,CRIMINAL'S REVENGE,1173215598 +181903,4210,DISFIGURED CRIMINALS,1173215613 +181903,4210,disturbing,1173215538 +181903,4210,menacing,1173215543 +181903,4210,MURDER INVESTIGATIONS,1173215622 +181903,4210,ominous,1173215551 +181903,4210,SERIAL KILLERS,1173215590 +181903,4210,stylized,1173215555 +181903,4210,tense,1173215559 +181903,4210,visceral,1173215566 +181903,4226,AMNESIA,1173244988 +181903,4226,bleak,1172056215 +181903,4226,cerebral,1172056227 +181903,4226,deliberate,1172056212 +181903,4226,dreamlike,1172056219 +181903,4226,FEMMES FATALES,1173244998 +181903,4226,HAUNTED BY THE PAST,1173244965 +181903,4226,MISTAKEN IDENTITIES,1173245005 +181903,4226,OBSESSIVE QUESTS,1173244981 +181903,4226,paranoid,1172056196 +181903,4226,stylized,1172056200 +181903,4226,tense,1172056203 +181903,4271,grim,1172309414 +181903,4271,intimate,1172309420 +181903,4271,lyrical,1172309407 +181903,4271,poignant,1172309396 +181903,4271,somber,1172309371 +181903,4271,stylized,1172309387 +181903,4271,sweeping,1172309361 +181903,4282,decadent,1172492123 +181903,4282,disturbing,1172492126 +181903,4282,hallucinatory,1172492130 +181903,4282,irreverent,1172492138 +181903,4282,satirical,1172492142 +181903,4282,sexual,1172492152 +181903,4282,sweeping,1172492156 +181903,4294,fanciful,1171605100 +181903,4294,humorous,1171605112 +181903,4294,lavish,1171605125 +181903,4294,quirky,1171605104 +181903,4294,whimsical,1171605116 +181903,4296,bittersweet,1171752032 +181903,4296,earnest,1171752037 +181903,4296,poignant,1171752041 +181903,4296,sentimental,1171752018 +181903,4296,tearjerking,1171752024 +181903,4298,atmospheric,1171747658 +181903,4298,bleak,1171747655 +181903,4298,tense,1171747647 +181903,4298,visceral,1171747651 +181903,4308,lavish,1171346136 +181903,4308,lyrical,1171346159 +181903,4308,passionate,1171346125 +181903,4308,quirky,1171346129 +181903,4308,sensual,1171346142 +181903,4308,sentimental,1171346151 +181903,4308,stylized,1171346121 +181903,4320,cerebral,1172966136 +181903,4320,CULTURE CLASH,1172966170 +181903,4320,cynical,1172966142 +181903,4320,deadpan,1172966154 +181903,4320,ironic,1172966161 +181903,4320,quirky,1172966147 +181903,4320,satirical,1172966157 +181903,4325,deliberate,1172037215 +181903,4325,intimate,1172037210 +181903,4325,meditative,1172037229 +181903,4325,reflective,1172037205 +181903,4325,stylized,1172037224 +181903,4329,forceful,1171665231 +181903,4329,humorous,1171665224 +181903,4329,quirky,1171665236 +181903,4329,tense,1171665227 +181903,4330,atmospheric,1171746740 +181903,4330,lavish,1171746713 +181903,4330,racy,1171746717 +181903,4330,sexual,1171746721 +181903,4330,sexy,1171746733 +181903,4330,stylized,1171746736 +181903,4334,FAMILY GATHERINGS,1173288148 +181903,4334,FIRST LOVE,1173288166 +181903,4334,gentle,1171431723 +181903,4334,humorous,1171431749 +181903,4334,intimate,1171431728 +181903,4334,LOVERS REUNITED,1173288161 +181903,4334,MIDLIFE CRISES,1173288127 +181903,4334,reflective,1171431711 +181903,4334,understated,1171431739 +181903,4334,warm,1171431741 +181903,4334,wistful,1171431715 +181903,4334,WORK ETHICS,1173288142 +181903,4359,easygoing,1171748109 +181903,4359,humorous,1171748113 +181903,4359,light,1171748117 +181903,4359,satirical,1171748135 +181903,4359,sexy,1171748126 +181903,4359,upbeat,1171748132 +181903,4361,ACTOR'S LIFE,1172502702 +181903,4361,affectionate,1172502666 +181903,4361,ASSUMED IDENTITIES,1172502680 +181903,4361,GENDER-BENDING,1172502692 +181903,4361,literate,1172502673 +181903,4361,madcap,1172502655 +181903,4361,urbane,1172502670 +181903,4361,warm,1172502658 +181903,4361,witty,1172502652 +181903,4395,goofy,1171462515 +181903,4395,humorous,1171462502 +181903,4395,silly,1171462519 +181903,4395,witty,1171462505 +181903,4395,wry,1171462511 +181903,4399,biting,1171429340 +181903,4399,grim,1171429364 +181903,4399,matter-of-fact,1171429348 +181903,4399,racy,1171429356 +181903,4399,satirical,1171429336 +181903,4422,downbeat,1171183412 +181903,4422,intimate,1171183417 +181903,4422,lyrical,1171183424 +181903,4422,poignant,1171183431 +181903,4422,stylized,1171183404 +181903,4428,atmospheric,1171437770 +181903,4428,autumnal,1171437782 +181903,4428,bittersweet,1171437787 +181903,4428,elegiac,1171437798 +181903,4428,intimate,1171437795 +181903,4428,lyrical,1171437805 +181903,4428,reflective,1171437774 +181903,4433,forceful,1172496557 +181903,4433,lurid,1172496592 +181903,4433,passionate,1172496563 +181903,4433,quirky,1172496572 +181903,4433,sexual,1172496588 +181903,4433,sweeping,1172496582 +181903,4437,atmospheric,1171147032 +181903,4437,creepy,1171147066 +181903,4437,dreamlike,1171147041 +181903,4437,eerie,1171147050 +181903,4437,hallucinatory,1171147076 +181903,4437,ominous,1171147087 +181903,4437,slick,1171147057 +181903,4437,stylized,1171147023 +181903,4437,WITCHCRAFT,1172498332 +181903,4437,WOMEN IN JEOPARDY,1172498343 +181903,4497,deadpan,1171674084 +181903,4497,easygoing,1171674087 +181903,4497,humorous,1171674080 +181903,4497,quirky,1171674094 +181903,4497,silly,1171674098 +181903,4500,cerebral,1171765452 +181903,4500,CRUMBLING MARRIAGES,1173416177 +181903,4500,cynical,1171765459 +181903,4500,fanciful,1171765473 +181903,4500,humorous,1171765476 +181903,4500,literate,1171765448 +181903,4500,MOTHERS AND DAUGHTERS,1173416141 +181903,4500,OUT FOR REVENGE,1173416155 +181903,4500,quirky,1171765480 +181903,4500,sexy,1171765502 +181903,4500,talky,1171765456 +181903,4500,TREACHEROUS SPOUSES,1173416132 +181903,4500,UNLIKELY CRIMINALS,1173416150 +181903,4500,witty,1171765506 +181903,4500,WOMEN'S FRIENDSHIP,1173416169 +181903,4533,creepy,1171748207 +181903,4533,harsh,1171748197 +181903,4533,humorous,1171748217 +181903,4533,satirical,1171748213 +181903,4533,visceral,1171748201 +181903,4546,cerebral,1171432934 +181903,4546,chilly,1171432916 +181903,4546,deliberate,1171432927 +181903,4546,disturbing,1171432939 +181903,4546,eerie,1171432954 +181903,4546,enigmatic,1171432913 +181903,4546,macabre,1171432950 +181903,4546,menacing,1171432923 +181903,4553,biting,1171748018 +181903,4553,campy,1171748022 +181903,4553,humorous,1171748029 +181903,4553,quirky,1171748052 +181903,4553,satirical,1171748036 +181903,4553,silly,1171748039 +181903,4553,tense,1171748045 +181903,4605,biting,1172216929 +181903,4605,disturbing,1172216944 +181903,4605,hallucinatory,1172216940 +181903,4605,quirky,1172216922 +181903,4605,satirical,1172216926 +181903,4641,bittersweet,1171344071 +181903,4641,deadpan,1171344075 +181903,4641,enigmatic,1171344089 +181903,4641,intimate,1171344103 +181903,4641,ironic,1171344081 +181903,4641,reflective,1171344110 +181903,4641,stylized,1171344094 +181903,4642,ALL WASHED UP,1172880887 +181903,4642,bittersweet,1171431029 +181903,4642,campy,1171431012 +181903,4642,DOWN ON THEIR LUCK,1172880861 +181903,4642,GENDER-BENDING,1172880853 +181903,4642,MUSICIAN'S LIFE,1172880874 +181903,4642,poignant,1171431056 +181903,4642,quirky,1171431036 +181903,4642,stylized,1171431015 +181903,4642,UNREQUITED LOVE,1172880895 +181903,4642,wry,1171431046 +181903,4649,goofy,1171439116 +181903,4649,irreverent,1171439104 +181903,4649,madcap,1171439091 +181903,4649,racy,1171439081 +181903,4649,satirical,1171439112 +181903,4649,silly,1171439099 +181903,4649,summery,1171439087 +181903,4654,forceful,1171622085 +181903,4654,humorous,1171622078 +181903,4654,sexy,1171622097 +181903,4654,slick,1171622089 +181903,4654,tense,1171622080 +181903,4658,atmospheric,1171672800 +181903,4658,cerebral,1171672785 +181903,4658,creepy,1171672789 +181903,4658,disturbing,1171672764 +181903,4658,eerie,1171672767 +181903,4658,enigmatic,1171672805 +181903,4658,stylized,1171672770 +181903,4658,tense,1171672773 +181903,4658,visceral,1171672780 +181903,4671,compassionate,1172294468 +181903,4671,confrontational,1172294459 +181903,4671,disturbing,1172294464 +181903,4671,ironic,1172294485 +181903,4671,quirky,1172294477 +181903,4671,wry,1172294480 +181903,4687,drab,1172036504 +181903,4687,quirky,1172036508 +181903,4687,whimsical,1172036500 +181903,4697,campy,1172874784 +181903,4697,creepy,1172874974 +181903,4697,gruesome,1172874776 +181903,4697,lurid,1172874978 +181903,4697,MUTANTS,1172875001 +181903,4697,quirky,1172874982 +181903,4697,SERIAL KILLERS,1172875027 +181903,4697,silly,1172874990 +181903,4697,TWINS AND LOOKALIKES,1172875014 +181903,4708,angry,1172507561 +181903,4708,ASSASSINATION PLOTS,1172507611 +181903,4708,atmospheric,1172507556 +181903,4708,claustrophobic,1172507550 +181903,4708,FIGHTING THE SYSTEM,1172507592 +181903,4708,hallucinatory,1172507572 +181903,4708,literate,1172507540 +181903,4708,passionate,1172507567 +181903,4708,POLITICAL UNREST,1172507599 +181903,4708,talky,1172507544 +181903,4713,chilly,1172502475 +181903,4713,creepy,1172502482 +181903,4713,EXPERIMENTS GONE AWRY,1172502516 +181903,4713,hallucinatory,1172502485 +181903,4713,menacing,1172502493 +181903,4713,ominous,1172502496 +181903,4713,paranoid,1172502500 +181903,4713,tense,1172502508 +181903,4716,atmospheric,1171171967 +181903,4716,cerebral,1171171976 +181903,4716,downbeat,1171171981 +181903,4716,dreamlike,1171171987 +181903,4716,meditative,1171171992 +181903,4716,somber,1171171997 +181903,4716,visceral,1171172003 +181903,4720,atmospheric,1172039963 +181903,4720,austere,1172040009 +181903,4720,claustrophobic,1172039985 +181903,4720,deliberate,1172039958 +181903,4720,eerie,1172039979 +181903,4720,gloomy,1172040004 +181903,4720,ominous,1172039970 +181903,4754,atmospheric,1171606231 +181903,4754,disturbing,1171606235 +181903,4754,eerie,1171606242 +181903,4754,enigmatic,1171606249 +181903,4754,MISSING PERSONS,1172498023 +181903,4754,OBSESSIVE QUESTS,1172498035 +181903,4754,ominous,1171606253 +181903,4754,RELIGIOUS ZEALOTRY,1173102934 +181903,4754,sexual,1171606261 +181903,4754,TRAPPED OR CONFINED,1172498003 +181903,4775,bittersweet,1171443054 +181903,4775,campy,1171443072 +181903,4775,flashy,1171443050 +181903,4775,lavish,1171443047 +181903,4775,sentimental,1171443069 +181903,4775,slick,1171443082 +181903,4775,sweeping,1171443064 +181903,4785,atmospheric,1171339911 +181903,4785,austere,1171339887 +181903,4785,bleak,1171339877 +181903,4785,cynical,1171339891 +181903,4785,gritty,1171339899 +181903,4785,harsh,1171339903 +181903,4785,wintry,1171339880 +181903,4794,atmospheric,1172507991 +181903,4794,cerebral,1172507995 +181903,4794,creepy,1172508002 +181903,4794,disturbing,1172508006 +181903,4794,gruesome,1172508013 +181903,4794,HAUNTED BY THE PAST,1172508036 +181903,4794,lavish,1172507981 +181903,4794,menacing,1172508017 +181903,4794,MIND GAMES,1172508047 +181903,4794,stylized,1172507978 +181903,4794,tense,1172507988 +181903,4794,visceral,1172508023 +181903,4794,WITNESSING A CRIME,1172508058 +181903,4794,WOMEN IN JEOPARDY,1172508032 +181903,4798,bright,1172364627 +181903,4798,light,1172364635 +181903,4798,talky,1172364623 +181903,4798,urbane,1172364639 +181903,4798,witty,1172364647 +181903,4798,wry,1172364629 +181903,4826,bleak,1171432762 +181903,4826,disturbing,1171432768 +181903,4826,forceful,1171432752 +181903,4826,gritty,1171432741 +181903,4826,rousing,1171432747 +181903,4826,tense,1171432744 +181903,4833,atmospheric,1171684653 +181903,4833,deliberate,1171684642 +181903,4833,eerie,1171684635 +181903,4833,melancholy,1171684649 +181903,4833,somber,1171684638 +181903,4847,biting,1172493289 +181903,4847,bleak,1172493292 +181903,4847,cynical,1172493295 +181903,4847,downbeat,1172493299 +181903,4847,forceful,1172493306 +181903,4847,intimate,1172493309 +181903,4847,matter-of-fact,1172493313 +181903,4847,moody,1172493320 +181903,4847,sexual,1172493325 +181903,4847,tense,1172493329 +181903,4848,deliberate,1171698504 +181903,4848,dreamlike,1171698477 +181903,4848,eerie,1171698508 +181903,4848,enigmatic,1171698481 +181903,4848,hallucinatory,1171698487 +181903,4848,menacing,1171698496 +181903,4848,stylized,1171698518 +181903,4855,disturbing,1172390259 +181903,4855,forceful,1172390262 +181903,4855,gritty,1172390269 +181903,4855,harsh,1172390256 +181903,4855,moody,1172390275 +181903,4855,tense,1172390272 +181903,4855,visceral,1172390253 +181903,4873,BOHEMIAN LIFE,1172884237 +181903,4873,BRIEF ENCOUNTERS,1172884258 +181903,4873,cerebral,1172300687 +181903,4873,dreamlike,1172300704 +181903,4873,FANTASY LIFE,1172884232 +181903,4873,literate,1172300683 +181903,4873,quirky,1172300700 +181903,4873,stylized,1172300696 +181903,4873,talky,1172300678 +181903,4873,TWENTYSOMETHING LIFE,1172884250 +181903,4873,WANDERLUST,1172884241 +181903,4878,biting,1173190139 +181903,4878,dreamlike,1173190128 +181903,4878,enigmatic,1173190134 +181903,4878,FANTASY LIFE,1173190153 +181903,4878,FIRST LOVE,1173190176 +181903,4878,hallucinatory,1173190110 +181903,4878,HIGH SCHOOL LIFE,1173190171 +181903,4878,ominous,1173190118 +181903,4878,quirky,1173190106 +181903,4878,stylized,1173190114 +181903,4878,TIME TRAVEL,1173190158 +181903,4888,biting,1171684878 +181903,4888,claustrophobic,1171684853 +181903,4888,intimate,1171684845 +181903,4888,matter-of-fact,1171684883 +181903,4888,talky,1171684856 +181903,4888,tense,1171684874 +181903,4903,austere,1172051377 +181903,4903,bleak,1172051380 +181903,4903,deliberate,1172051369 +181903,4903,intimate,1172051390 +181903,4903,ominous,1172051394 +181903,4903,somber,1172051361 +181903,4903,understated,1172051365 +181903,4914,cynical,1172500461 +181903,4914,deadpan,1172500382 +181903,4914,humorous,1172500386 +181903,4914,LOVERS ON THE LAM,1172500484 +181903,4914,quirky,1172500451 +181903,4914,satirical,1172500466 +181903,4914,urbane,1172500455 +181903,4914,witty,1172500441 +181903,4927,creepy,1172287272 +181903,4927,deliberate,1172287287 +181903,4927,disturbing,1172287253 +181903,4927,dreamlike,1172287257 +181903,4927,enigmatic,1172287268 +181903,4927,hallucinatory,1172287260 +181903,4927,understated,1172287282 +181903,4928,AGE DISPARITY ROMANCE,1172887145 +181903,4928,cynical,1171147562 +181903,4928,deadpan,1171147539 +181903,4928,dreamlike,1171147532 +181903,4928,fanciful,1171147526 +181903,4928,satirical,1171147520 +181903,4928,SELF-DESTRUCTIVE ROMANCE,1172887150 +181903,4928,stylized,1171147544 +181903,4928,whimsical,1171147552 +181903,4970,cynical,1171608002 +181903,4970,satirical,1171607998 +181903,4970,sexy,1171608008 +181903,4970,wry,1171608011 +181903,4973,affectionate,1171698865 +181903,4973,fanciful,1171698857 +181903,4973,FANTASY LIFE,1173375513 +181903,4973,FATHERS AND DAUGHTERS,1173375546 +181903,4973,FIRST LOVE,1173375540 +181903,4973,light,1171698871 +181903,4973,MATCHMAKERS,1173375522 +181903,4973,quirky,1171698875 +181903,4973,RIGHTING THE WRONGED,1173375526 +181903,4973,stylized,1171698861 +181903,4973,sweet,1171698886 +181903,4973,whimsical,1171698894 +181903,4979,deadpan,1171693310 +181903,4979,literate,1171693298 +181903,4979,quirky,1171693307 +181903,4979,stylized,1171693294 +181903,4979,urbane,1171693326 +181903,4979,wistful,1171693318 +181903,4979,witty,1171693289 +181903,4993,atmospheric,1172036837 +181903,4993,fanciful,1172036810 +181903,4993,FANTASY LANDS,1172587545 +181903,4993,HEROIC MISSION,1172587515 +181903,4993,lavish,1172036815 +181903,4993,rousing,1172036828 +181903,4993,stylized,1172036833 +181903,4993,sweeping,1172036818 +181903,4993,WIZARDS AND MAGICIANS,1172587531 +181903,4998,biting,1172363920 +181903,4998,confrontational,1172363940 +181903,4998,forceful,1172363924 +181903,4998,gritty,1172363929 +181903,4998,tense,1172363926 +181903,5013,atmospheric,1172041424 +181903,5013,biting,1172041401 +181903,5013,elegant,1172041408 +181903,5013,literate,1172041431 +181903,5013,talky,1172041412 +181903,5013,urbane,1172041427 +181903,5013,witty,1172041395 +181903,5026,atmospheric,1171949733 +181903,5026,creepy,1171949740 +181903,5026,goth,1171949832 +181903,5026,lavish,1171949829 +181903,5026,menacing,1171949737 +181903,5026,stylized,1171949747 +181903,5026,visceral,1171949813 +181903,5056,atmospheric,1171324969 +181903,5056,cerebral,1171324956 +181903,5056,deliberate,1171324961 +181903,5056,disturbing,1171324948 +181903,5056,enigmatic,1171324982 +181903,5056,INNOCENCE LOST,1172886914 +181903,5056,reflective,1171324977 +181903,5056,stylized,1171324943 +181903,5056,TEACHERS AND STUDENTS,1172886827 +181903,5060,AMERICANS ABROAD,1173214759 +181903,5060,biting,1172035296 +181903,5060,CULTURE CLASH,1173214737 +181903,5060,DOCTORS AND PATIENTS,1173214744 +181903,5060,FIGHTING THE SYSTEM,1173214754 +181903,5060,madcap,1172035303 +181903,5060,matter-of-fact,1172035337 +181903,5060,quirky,1172035327 +181903,5060,satirical,1172035306 +181903,5060,talky,1172035317 +181903,5060,WOMEN DURING WARTIME,1173214770 +181903,5060,wry,1172035320 +181903,5068,bleak,1172390973 +181903,5068,compassionate,1172390991 +181903,5068,earnest,1172391010 +181903,5068,gritty,1172390981 +181903,5068,poignant,1172391019 +181903,5068,reflective,1172391034 +181903,5088,frantic,1174429025 +181903,5088,humorous,1174429031 +181903,5088,irreverent,1174429013 +181903,5088,madcap,1174429016 +181903,5088,NOTHING GOES RIGHT,1174429046 +181903,5088,PLAYING THE FIELD,1174429052 +181903,5088,raunchy,1174429009 +181903,5088,talky,1174429028 +181903,5088,wry,1174429037 +181903,5105,atmospheric,1171697853 +181903,5105,creepy,1171697857 +181903,5105,DEATH OF A CHILD,1173105557 +181903,5105,deliberate,1171697860 +181903,5105,dreamlike,1171697868 +181903,5105,HAUNTED BY THE PAST,1173105566 +181903,5105,macabre,1171697877 +181903,5105,NIGHTMARE VACATIONS,1173105657 +181903,5105,PSYCHIC ABILITIES,1173105665 +181903,5105,somber,1171697873 +181903,5119,atmospheric,1171684309 +181903,5119,austere,1171684312 +181903,5119,biting,1171684315 +181903,5119,CLASS DIFFERENCES,1172881701 +181903,5119,downbeat,1171684324 +181903,5119,EXTRAMARITAL AFFAIRS,1172881717 +181903,5119,matter-of-fact,1171684331 +181903,5119,poignant,1171684338 +181903,5119,SELF-DESTRUCTIVE ROMANCE,1172881721 +181903,5119,tense,1171684341 +181903,5119,TWENTYSOMETHING LIFE,1172881693 +181903,5121,affectionate,1171666471 +181903,5121,bittersweet,1171666453 +181903,5121,deadpan,1171666457 +181903,5121,elegiac,1171666444 +181903,5121,satirical,1171666478 +181903,5121,understated,1171666438 +181903,5121,wry,1171666464 +181903,5142,biting,1172143339 +181903,5142,goofy,1172143332 +181903,5142,satirical,1172143349 +181903,5142,wry,1172143342 +181903,5145,cynical,1172143410 +181903,5145,deadpan,1172143416 +181903,5145,irreverent,1172143413 +181903,5145,satirical,1172143428 +181903,5145,wry,1172143424 +181903,5147,compassionate,1171621774 +181903,5147,dreamlike,1171621765 +181903,5147,elegiac,1171621740 +181903,5147,lyrical,1171621744 +181903,5147,meditative,1171621751 +181903,5147,reflective,1171621760 +181903,5147,wistful,1171621778 +181903,5165,atmospheric,1171744432 +181903,5165,creepy,1171744424 +181903,5165,disturbing,1171744436 +181903,5165,EXPERIMENTS GONE AWRY,1172502418 +181903,5165,gruesome,1171744449 +181903,5165,harsh,1171744445 +181903,5165,tense,1171744420 +181903,5165,VOODOO,1172502396 +181903,5165,ZOMBIES,1172502402 +181903,5198,angry,1171265293 +181903,5198,forceful,1171265300 +181903,5198,grim,1171265234 +181903,5198,gritty,1171265241 +181903,5198,harsh,1171265284 +181903,5198,lurid,1171265311 +181903,5198,menacing,1171265322 +181903,5225,bittersweet,1171743428 +181903,5225,compassionate,1171743398 +181903,5225,earthy,1171743390 +181903,5225,humorous,1171743407 +181903,5225,irreverent,1171743418 +181903,5225,sexy,1171743385 +181903,5225,witty,1171743413 +181903,5258,gentle,1172143260 +181903,5258,humorous,1172143264 +181903,5258,lyrical,1172143223 +181903,5258,meditative,1172143227 +181903,5258,melancholy,1172143242 +181903,5258,summery,1172143250 +181903,5258,understated,1172143230 +181903,5291,bleak,1172044741 +181903,5291,cerebral,1172044767 +181903,5291,enigmatic,1172044764 +181903,5291,literate,1172044746 +181903,5291,moody,1172044778 +181903,5291,stylized,1172044750 +181903,5291,tense,1172044759 +181903,5297,CRIMES OF PASSION,1173416282 +181903,5297,cynical,1173416266 +181903,5297,MEMBERS OF THE PRESS,1173416306 +181903,5297,ROMANTIC BETRAYAL,1173416298 +181903,5297,satirical,1173416243 +181903,5297,stylized,1173416270 +181903,5297,talky,1173416258 +181903,5297,witty,1173416250 +181903,5297,wry,1173416246 +181903,5304,austere,1171663631 +181903,5304,bleak,1171663609 +181903,5304,drab,1171663627 +181903,5304,gritty,1171663612 +181903,5304,matter-of-fact,1171663620 +181903,5304,tense,1171663635 +181903,5329,bleak,1173374285 +181903,5329,DOUBLE LIFE,1173374340 +181903,5329,DRUG TRADE,1173374334 +181903,5329,enigmatic,1173374298 +181903,5329,ironic,1173374314 +181903,5329,moody,1173374290 +181903,5329,OUT FOR REVENGE,1173374329 +181903,5329,stylized,1173374309 +181903,5329,tense,1173374293 +181903,5333,atmospheric,1172036576 +181903,5333,cynical,1172036555 +181903,5333,DISHONOR AMONG THIEVES,1172647186 +181903,5333,easygoing,1172036559 +181903,5333,humorous,1172036563 +181903,5333,ONE LAST HEIST,1172647174 +181903,5333,stylized,1172036571 +181903,5351,fanciful,1171687000 +181903,5351,humorous,1171687014 +181903,5351,lyrical,1171686994 +181903,5351,quirky,1171686970 +181903,5351,sensual,1171687011 +181903,5351,sexy,1171687020 +181903,5351,whimsical,1171686980 +181903,5373,DEATH OF A SPOUSE,1172874287 +181903,5373,heartwarming,1172874256 +181903,5373,intimate,1172874249 +181903,5373,lyrical,1172874269 +181903,5373,sentimental,1172874260 +181903,5373,STARTING OVER,1172874295 +181903,5390,BOHEMIAN LIFE,1172499314 +181903,5390,bright,1171620533 +181903,5390,CREATIVE BLOCK,1172499302 +181903,5390,FIGHTING THE SYSTEM,1172499284 +181903,5390,FILMMAKING,1172499279 +181903,5390,nostalgic,1171620528 +181903,5390,silly,1171620555 +181903,5390,slick,1171620553 +181903,5390,stylized,1171620539 +181903,5390,wry,1171620548 +181903,5410,atmospheric,1171442292 +181903,5410,compassionate,1171442297 +181903,5410,earnest,1171442300 +181903,5410,passionate,1171442310 +181903,5410,reflective,1171442317 +181903,5410,understated,1171442330 +181903,5451,biting,1171694230 +181903,5451,deadpan,1171694227 +181903,5451,irreverent,1171694216 +181903,5451,quirky,1171694213 +181903,5451,satirical,1171694220 +181903,5475,confrontational,1171606369 +181903,5475,disturbing,1171606376 +181903,5475,forceful,1171606388 +181903,5475,matter-of-fact,1171606380 +181903,5475,tense,1171606366 +181903,5488,ALCOHOLISM,1173244623 +181903,5488,downbeat,1173244586 +181903,5488,gloomy,1173244604 +181903,5488,moody,1173244600 +181903,5489,atmospheric,1171606673 +181903,5489,creepy,1171606686 +181903,5489,eerie,1171606670 +181903,5489,goth,1171606693 +181903,5489,lavish,1171606697 +181903,5489,melancholy,1171606680 +181903,5492,Hot Bikini Action,1284330969 +181903,5492,Raquel Welch,1265859082 +181903,5494,austere,1172493525 +181903,5494,deliberate,1172493534 +181903,5494,drab,1172493521 +181903,5494,gritty,1172493519 +181903,5494,somber,1172493528 +181903,5498,compassionate,1171604694 +181903,5498,intimate,1171604679 +181903,5498,poignant,1171604683 +181903,5502,eerie,1171666286 +181903,5502,humorous,1171666327 +181903,5502,meditative,1171666319 +181903,5502,ominous,1171666305 +181903,5502,reflective,1171666316 +181903,5502,tense,1171666312 +181903,5502,understated,1171666297 +181903,5604,biting,1173102406 +181903,5604,deadpan,1173102421 +181903,5604,FIGHTING THE SYSTEM,1173102440 +181903,5604,humorous,1173102414 +181903,5604,irreverent,1173102410 +181903,5604,quirky,1173102430 +181903,5604,witty,1173102425 +181903,5613,campy,1171958097 +181903,5613,fanciful,1171958120 +181903,5613,irreverent,1171958105 +181903,5613,madcap,1171958127 +181903,5613,quirky,1171958109 +181903,5613,upbeat,1171958124 +181903,5618,dreamlike,1172036914 +181903,5618,fanciful,1172036893 +181903,5618,FANTASY LANDS,1172873335 +181903,5618,hallucinatory,1172036919 +181903,5618,HEROIC MISSION,1172873339 +181903,5618,JOURNEY OF SELF-DISCOVERY,1172873317 +181903,5618,lavish,1172036897 +181903,5618,MYTHICAL CREATURES,1172873322 +181903,5618,rousing,1172036901 +181903,5640,campy,1171672393 +181903,5640,ominous,1171672389 +181903,5640,tense,1171672386 +181903,5649,creepy,1171672841 +181903,5649,eerie,1171672844 +181903,5649,menacing,1171672864 +181903,5649,nocturnal,1171672859 +181903,5649,stylized,1171672848 +181903,5649,tense,1171672855 +181903,5653,atmospheric,1171750131 +181903,5653,cathartic,1171750143 +181903,5653,gritty,1171750127 +181903,5653,menacing,1171750147 +181903,5653,quirky,1171750122 +181903,5653,tense,1171750156 +181903,5653,visceral,1171750140 +181903,5673,bittersweet,1171186524 +181903,5673,quirky,1171186503 +181903,5673,tense,1171186529 +181903,5673,whimsical,1171186511 +181903,5673,wistful,1171186518 +181903,5690,bleak,1171694295 +181903,5690,DEATH OF A PARENT,1172960848 +181903,5690,downbeat,1171694300 +181903,5690,elegiac,1171694317 +181903,5690,grim,1171694312 +181903,5690,LIFE ON THE HOMEFRONT,1172960880 +181903,5690,ORPHANS,1172960871 +181903,5690,SIBLING RELATIONSHIPS,1172960856 +181903,5690,somber,1171694304 +181903,5693,flashy,1171171358 +181903,5693,gritty,1171171353 +181903,5693,humorous,1171171364 +181903,5693,sentimental,1171171370 +181903,5693,sexy,1171171375 +181903,5715,Female Nudity,1284330254 +181903,5716,Nudity (Topless),1263622314 +181903,5747,atmospheric,1173192614 +181903,5747,compassionate,1173192602 +181903,5747,forceful,1173192599 +181903,5747,GREAT BATTLES,1173192645 +181903,5747,INNOCENCE LOST,1173192620 +181903,5747,MILITARY LIFE,1173192640 +181903,5747,poignant,1173192596 +181903,5747,somber,1173192593 +181903,5770,angry,1171171623 +181903,5770,CRIME SPREES,1172508129 +181903,5770,disturbing,1171171646 +181903,5770,harsh,1171171636 +181903,5770,lurid,1171171628 +181903,5770,OUT FOR REVENGE,1172508117 +181903,5770,RAPE & SEXUAL ABUSE,1172508153 +181903,5770,tense,1171171640 +181903,5770,visceral,1171171632 +181903,5780,biting,1171429769 +181903,5780,campy,1171429754 +181903,5780,humorous,1171429741 +181903,5780,irreverent,1171429760 +181903,5780,satirical,1171429746 +181903,5792,BATTLE OF THE SEXES,1173285496 +181903,5792,biting,1173285449 +181903,5792,cynical,1173285436 +181903,5792,FISH OUT OF WATER,1173285487 +181903,5792,irreverent,1173285456 +181903,5792,PLAYING THE FIELD,1173285482 +181903,5792,quirky,1173285460 +181903,5792,talky,1173285439 +181903,5792,urbane,1173285444 +181903,5797,atmospheric,1171674018 +181903,5797,creepy,1171674005 +181903,5797,dreamlike,1171674001 +181903,5797,ominous,1171673986 +181903,5797,stylized,1171673990 +181903,5797,tense,1171673980 +181903,5797,visceral,1171673997 +181903,5825,bittersweet,1171149943 +181903,5825,humorous,1171149949 +181903,5825,nostalgic,1171149958 +181903,5825,whimsical,1171149967 +181903,5825,witty,1171149953 +181903,5890,affectionate,1173216173 +181903,5890,compassionate,1173216167 +181903,5890,FIRST LOVE,1173216200 +181903,5890,irreverent,1173216186 +181903,5890,quirky,1173216178 +181903,5890,UNLIKELY FRIENDSHIPS,1173216195 +181903,5891,disturbing,1171172266 +181903,5891,downbeat,1171172279 +181903,5891,grim,1171172294 +181903,5891,gritty,1171172270 +181903,5891,harsh,1171172274 +181903,5891,menacing,1171172286 +181903,5891,tense,1171172290 +181903,5902,cerebral,1172885113 +181903,5902,CREATIVE BLOCK,1172885149 +181903,5902,FILMMAKING,1172885168 +181903,5902,irreverent,1172885117 +181903,5902,literate,1172885139 +181903,5902,melancholy,1172885127 +181903,5902,quirky,1172885124 +181903,5902,TWINS AND LOOKALIKES,1172885163 +181903,5902,WRITER'S LIFE,1172885154 +181903,5932,cerebral,1171663529 +181903,5932,deliberate,1171663525 +181903,5932,matter-of-fact,1171663512 +181903,5932,reflective,1171663520 +181903,5932,talky,1171663508 +181903,5937,compassionate,1172485627 +181903,5937,confrontational,1172485615 +181903,5937,forceful,1172485619 +181903,5937,lavish,1172485632 +181903,5937,literate,1172485635 +181903,5937,passionate,1172485644 +181903,5937,talky,1172485649 +181903,5951,drab,1171686739 +181903,5951,dreamlike,1171686712 +181903,5951,enigmatic,1171686717 +181903,5951,intimate,1171686721 +181903,5951,meditative,1171686759 +181903,5951,sensual,1171686735 +181903,5951,stylized,1171686745 +181903,5959,bleak,1171684782 +181903,5959,cynical,1171684771 +181903,5959,forceful,1171684760 +181903,5959,gritty,1171684749 +181903,5959,harsh,1171684752 +181903,5959,tense,1171684767 +181903,5959,visceral,1171684774 +181903,5980,creepy,1171672303 +181903,5980,disturbing,1171672307 +181903,5980,forceful,1171672319 +181903,5980,gruesome,1171672338 +181903,5980,menacing,1171672325 +181903,5980,tense,1171672311 +181903,5980,visceral,1171672334 +181903,5995,austere,1171527430 +181903,5995,cathartic,1171527447 +181903,5995,gloomy,1171527442 +181903,5995,poignant,1171527422 +181903,5995,reflective,1171527438 +181903,5995,somber,1171527426 +181903,6001,biting,1171429233 +181903,6001,cynical,1171429216 +181903,6001,deadpan,1171429244 +181903,6001,disturbing,1171429237 +181903,6001,KIDNAPPING,1172885255 +181903,6001,NOTHING GOES RIGHT,1172885264 +181903,6001,quirky,1171429253 +181903,6001,satirical,1171429224 +181903,6001,STALKERS,1172885259 +181903,6001,stylized,1171429259 +181903,6016,disturbing,1171431951 +181903,6016,forceful,1171431933 +181903,6016,harsh,1171431917 +181903,6016,irreverent,1171431941 +181903,6016,stylized,1171431922 +181903,6016,sweeping,1171431928 +181903,6021,bleak,1172035523 +181903,6021,deliberate,1172035527 +181903,6021,disturbing,1172035531 +181903,6021,meditative,1172035543 +181903,6021,paranoid,1172035547 +181903,6023,atmospheric,1171527573 +181903,6023,CRIME GONE AWRY,1172874437 +181903,6023,elegiac,1171527577 +181903,6023,melancholy,1171527595 +181903,6023,quirky,1171527562 +181903,6023,stylized,1171527566 +181903,6023,UNLIKELY CRIMINALS,1172874443 +181903,6031,compassionate,1171747004 +181903,6031,intimate,1171747011 +181903,6031,lavish,1171747015 +181903,6031,moody,1171747402 +181903,6031,passionate,1171747395 +181903,6031,stylized,1171747399 +181903,6031,talky,1171747000 +181903,6035,atmospheric,1172565892 +181903,6035,downbeat,1172565896 +181903,6035,elegiac,1172565908 +181903,6035,moody,1172565888 +181903,6035,SELF-DESTRUCTIVE ROMANCE,1172565923 +181903,6035,STAR-CROSSED LOVERS,1172565938 +181903,6035,tense,1172565911 +181903,6051,atmospheric,1172286288 +181903,6051,bleak,1172286291 +181903,6051,deliberate,1172286440 +181903,6051,forceful,1172286306 +181903,6051,gritty,1172286615 +181903,6051,matter-of-fact,1172286606 +181903,6051,moody,1172286609 +181903,6051,tense,1172286436 +181903,6093,affectionate,1171428263 +181903,6093,bittersweet,1171428259 +181903,6093,fanciful,1171428237 +181903,6093,heartwarming,1171428244 +181903,6093,lyrical,1171428250 +181903,6126,ACTOR'S LIFE,1172878948 +181903,6126,ALL WASHED UP,1172878957 +181903,6126,downbeat,1171674395 +181903,6126,DRUG ADDICTION,1172878978 +181903,6126,HAUNTED BY THE PAST,1172878967 +181903,6126,melancholy,1171674405 +181903,6126,poignant,1171674400 +181903,6126,stylized,1171674409 +181903,6132,disturbing,1172495890 +181903,6132,lurid,1172495887 +181903,6132,menacing,1172495899 +181903,6132,tense,1172495901 +181903,6134,bright,1172136680 +181903,6134,ironic,1172136683 +181903,6134,light,1172136672 +181903,6134,upbeat,1172136676 +181903,6162,atmospheric,1171622626 +181903,6162,cerebral,1171622622 +181903,6162,deliberate,1171622608 +181903,6162,enigmatic,1171622594 +181903,6162,meditative,1171622604 +181903,6162,visceral,1171622617 +181903,6184,atmospheric,1171152062 +181903,6184,BENIGN ALIENS,1172886362 +181903,6184,deadpan,1171152073 +181903,6184,deliberate,1171152090 +181903,6184,FISH OUT OF WATER,1172886372 +181903,6184,hallucinatory,1171152097 +181903,6184,quirky,1171152078 +181903,6184,RISE TO POWER,1172886380 +181903,6184,satirical,1171152084 +181903,6184,stylized,1171152068 +181903,6197,deliberate,1172143575 +181903,6197,disturbing,1172143543 +181903,6197,enigmatic,1172143556 +181903,6197,gloomy,1172143546 +181903,6197,hallucinatory,1172143580 +181903,6197,meditative,1172143560 +181903,6197,somber,1172143548 +181903,6197,understated,1172143565 +181903,6226,bleak,1172495086 +181903,6226,earnest,1172495089 +181903,6226,matter-of-fact,1172495094 +181903,6247,earthy,1171686851 +181903,6247,lyrical,1171686869 +181903,6247,moody,1171686859 +181903,6247,reflective,1171686856 +181903,6247,sensual,1171686873 +181903,6247,sexual,1171686878 +181903,6258,literate,1173293483 +181903,6258,moody,1173293491 +181903,6258,OUT FOR REVENGE,1173293502 +181903,6258,poignant,1173293488 +181903,6268,affectionate,1173189865 +181903,6268,bittersweet,1173189887 +181903,6268,FIRST LOVE,1173189907 +181903,6268,gentle,1173189883 +181903,6268,gritty,1173189890 +181903,6268,humorous,1173189869 +181903,6268,SIBLING RELATIONSHIPS,1173189912 +181903,6268,warm,1173189872 +181903,6270,dreamlike,1172390866 +181903,6270,lyrical,1172390863 +181903,6270,meditative,1172390870 +181903,6270,somber,1172390874 +181903,6271,ACTOR'S LIFE,1173415776 +181903,6271,affectionate,1173415725 +181903,6271,bittersweet,1173415746 +181903,6271,CREATIVE BLOCK,1173415788 +181903,6271,easygoing,1173415735 +181903,6271,FILMMAKING,1173415772 +181903,6271,humorous,1173415754 +181903,6271,light,1173415758 +181903,6271,warm,1173415763 +181903,6271,witty,1173415739 +181903,6271,WORK ETHICS,1173415797 +181903,6283,BOUNTY HUNTERS,1172960311 +181903,6283,cynical,1172960262 +181903,6283,gritty,1172960266 +181903,6283,HAUNTED BY THE PAST,1172960291 +181903,6283,HEROIC MISSION,1172960286 +181903,6283,humorous,1172960269 +181903,6283,RACE AGAINST TIME,1172960303 +181903,6283,slick,1172960258 +181903,6283,UNLIKELY HEROES,1172960299 +181903,6283,visceral,1172960278 +181903,6288,paranoid,1171685204 +181903,6288,quirky,1171685199 +181903,6288,tense,1171685195 +181903,6288,wry,1171685207 +181903,6291,drab,1171676347 +181903,6291,forceful,1171676341 +181903,6291,intimate,1171676344 +181903,6291,melancholy,1171676356 +181903,6291,sexual,1171676385 +181903,6291,understated,1171676379 +181903,6301,AMERICANS ABROAD,1172875207 +181903,6301,confrontational,1172356274 +181903,6301,DANGEROUS FRIENDS,1172875200 +181903,6301,disturbing,1172356271 +181903,6301,harsh,1172356278 +181903,6301,menacing,1172356262 +181903,6301,ominous,1172356254 +181903,6301,OUT FOR REVENGE,1172875217 +181903,6301,RAPE & SEXUAL ABUSE,1172875183 +181903,6301,SMALL-TOWN LIFE,1172875649 +181903,6301,tense,1172356286 +181903,6301,visceral,1172356258 +181903,6395,chilly,1171696436 +181903,6395,confrontational,1171696454 +181903,6395,disturbing,1171696449 +181903,6395,menacing,1171696428 +181903,6395,paranoid,1171696424 +181903,6395,tense,1171696438 +181903,6404,bittersweet,1171766368 +181903,6404,humorous,1171766364 +181903,6404,satirical,1171766359 +181903,6416,BEHIND ENEMY LINES,1173245200 +181903,6416,claustrophobic,1173245181 +181903,6416,gritty,1173245169 +181903,6416,harsh,1173245164 +181903,6416,somber,1173245176 +181903,6440,disturbing,1171693386 +181903,6440,enigmatic,1171693404 +181903,6440,hallucinatory,1171693417 +181903,6440,menacing,1171693394 +181903,6440,quirky,1171693378 +181903,6440,stylized,1171693383 +181903,6440,wry,1171693399 +181903,6506,forceful,1173285366 +181903,6506,HIRED KILLERS,1173285394 +181903,6506,rousing,1173285385 +181903,6506,tense,1173285375 +181903,6509,austere,1172130614 +181903,6509,chilly,1172130625 +181903,6509,confrontational,1172130651 +181903,6509,deliberate,1172130662 +181903,6509,meditative,1172130630 +181903,6509,somber,1172130640 +181903,6509,visceral,1172130672 +181903,6530,atmospheric,1171438991 +181903,6530,claustrophobic,1171438962 +181903,6530,hallucinatory,1171439003 +181903,6530,menacing,1171439007 +181903,6530,ominous,1171439016 +181903,6530,paranoid,1171438978 +181903,6530,quirky,1171438986 +181903,6530,wry,1171439018 +181903,6538,Hot Bikini Action,1284331240 +181903,6538,Nudity (Full Frontal - Notable),1284331291 +181903,6539,Keira Knightley,1265860114 +181903,6581,atmospheric,1172355211 +181903,6581,humorous,1172355199 +181903,6581,lavish,1172355219 +181903,6581,quirky,1172355224 +181903,6581,witty,1172355203 +181903,6599,austere,1172220670 +181903,6599,downbeat,1172220666 +181903,6599,drab,1172220656 +181903,6599,matter-of-fact,1172220660 +181903,6609,austere,1172206939 +181903,6609,cathartic,1172206944 +181903,6609,compassionate,1172206961 +181903,6609,earnest,1172206965 +181903,6609,elegiac,1172206948 +181903,6609,understated,1172206969 +181903,6611,bleak,1171603391 +181903,6611,downbeat,1171603410 +181903,6611,drab,1171603394 +181903,6611,lyrical,1171603400 +181903,6611,meditative,1171603418 +181903,6611,poignant,1171603434 +181903,6611,tearjerking,1171603424 +181903,6617,atmospheric,1171664999 +181903,6617,autumnal,1171665008 +181903,6617,deliberate,1171665016 +181903,6617,earthy,1171664980 +181903,6617,elegiac,1171664991 +181903,6643,bittersweet,1171621597 +181903,6643,elegiac,1171621575 +181903,6643,gentle,1171621588 +181903,6643,matter-of-fact,1171621610 +181903,6643,stylized,1171621602 +181903,6643,understated,1171621584 +181903,6646,ACTOR'S LIFE,1173293587 +181903,6646,angry,1173293557 +181903,6646,biting,1173293553 +181903,6646,cynical,1173293550 +181903,6646,DRUG ADDICTION,1173293575 +181903,6646,harsh,1173293561 +181903,6646,LADDER TO THE TOP,1173293579 +181903,6649,austere,1172298471 +181903,6649,deliberate,1172298463 +181903,6649,forceful,1172298475 +181903,6649,wintry,1172298467 +181903,6650,cynical,1171170628 +181903,6650,humorous,1171170654 +181903,6650,irreverent,1171170647 +181903,6650,satirical,1171170640 +181903,6650,witty,1171170658 +181903,6650,wry,1171170662 +181903,6658,Bo Derek,1263815037 +181903,6658,Nudity (Topless - Notable),1263815047 +181903,6660,lyrical,1171603727 +181903,6660,melancholy,1171603716 +181903,6660,passionate,1171603705 +181903,6660,poignant,1171603720 +181903,6660,stylized,1171603709 +181903,6664,DARING RESCUES,1172499386 +181903,6664,earnest,1171172782 +181903,6664,forceful,1171172800 +181903,6664,gritty,1171172787 +181903,6664,menacing,1171172794 +181903,6664,RACE AGAINST TIME,1172499399 +181903,6664,rousing,1171172770 +181903,6664,tense,1171172765 +181903,6664,visceral,1171172776 +181903,6666,deadpan,1171147832 +181903,6666,hallucinatory,1171147820 +181903,6666,satirical,1171147827 +181903,6666,wry,1171147836 +181903,6669,cathartic,1171663356 +181903,6669,compassionate,1171663361 +181903,6669,deliberate,1171663370 +181903,6669,lyrical,1171663375 +181903,6669,poignant,1171663379 +181903,6671,compassionate,1172492902 +181903,6671,earnest,1172492906 +181903,6671,heartwarming,1172492913 +181903,6671,reflective,1172492916 +181903,6711,atmospheric,1171186350 +181903,6711,bittersweet,1171186401 +181903,6711,lyrical,1171186343 +181903,6711,nocturnal,1171186357 +181903,6711,poignant,1171186394 +181903,6711,reflective,1171186368 +181903,6711,urbane,1171186376 +181903,6711,wistful,1171186386 +181903,6727,disturbing,1171188779 +181903,6727,macabre,1171186787 +181903,6727,menacing,1171187098 +181903,6727,ominous,1171186793 +181903,6727,tense,1171186781 +181903,6731,claustrophobic,1172121800 +181903,6731,creepy,1172121826 +181903,6731,downbeat,1172121806 +181903,6731,menacing,1172121819 +181903,6731,paranoid,1172121831 +181903,6731,tense,1172121809 +181903,6773,bright,1172883365 +181903,6773,DARING RESCUES,1172883410 +181903,6773,FINDING A WAY BACK HOME,1172883405 +181903,6773,irreverent,1172883373 +181903,6773,KIDNAPPING,1172883419 +181903,6773,madcap,1172883361 +181903,6773,quirky,1172883357 +181903,6773,stylized,1172883391 +181903,6773,UNLIKELY HEROES,1172883429 +181903,6773,whimsical,1172883377 +181903,6774,creepy,1171171545 +181903,6774,cynical,1171171567 +181903,6774,lurid,1171171573 +181903,6774,ominous,1171171551 +181903,6774,satirical,1171171556 +181903,6774,visceral,1171171561 +181903,6782,CULTURE CLASH,1173187660 +181903,6782,deadpan,1173187643 +181903,6782,DOWN ON THEIR LUCK,1173187671 +181903,6782,drab,1173187626 +181903,6782,ECCENTRIC FAMILIES,1173187680 +181903,6782,humorous,1173187630 +181903,6782,IMMIGRANT LIFE,1173187692 +181903,6782,MUSICIAN'S LIFE,1173187666 +181903,6782,understated,1173187647 +181903,6782,wry,1173187632 +181903,6783,biting,1171344528 +181903,6783,bittersweet,1171344566 +181903,6783,humorous,1171344558 +181903,6783,literate,1171344548 +181903,6783,melancholy,1171344540 +181903,6783,reflective,1171344521 +181903,6783,witty,1171344524 +181903,6791,deliberate,1172503442 +181903,6791,earnest,1172503419 +181903,6791,ECCENTRIC FAMILIES,1172503487 +181903,6791,elegant,1172503434 +181903,6791,heartwarming,1172503423 +181903,6791,nostalgic,1172503430 +181903,6791,reflective,1172503446 +181903,6791,SIBLING RELATIONSHIPS,1172503505 +181903,6791,warm,1172503477 +181903,6815,humorous,1171672213 +181903,6815,madcap,1171672217 +181903,6815,ominous,1171672224 +181903,6815,quirky,1171672230 +181903,6815,racy,1171672205 +181903,6818,bleak,1171430313 +181903,6818,disturbing,1171430288 +181903,6818,forceful,1171430334 +181903,6818,gritty,1171430321 +181903,6818,harsh,1171430325 +181903,6818,poignant,1171430310 +181903,6818,visceral,1171430345 +181903,6842,atmospheric,1172499923 +181903,6842,bleak,1172499906 +181903,6842,claustrophobic,1172499897 +181903,6842,CRUMBLING MARRIAGES,1172499964 +181903,6842,deliberate,1172499926 +181903,6842,elegant,1172499934 +181903,6842,hallucinatory,1172499900 +181903,6842,intimate,1172499910 +181903,6842,menacing,1172499937 +181903,6842,MENTAL ILLNESS,1172500005 +181903,6842,reflective,1172499946 +181903,6842,ROMANTIC BETRAYAL,1172499984 +181903,6842,stylized,1172499915 +181903,6842,tense,1172499952 +181903,6858,atmospheric,1171322946 +181903,6858,claustrophobic,1171322929 +181903,6858,confrontational,1171322940 +181903,6858,tense,1171322921 +181903,6858,understated,1171322963 +181903,6874,deliberate,1171322293 +181903,6874,flashy,1171322288 +181903,6874,slick,1171322301 +181903,6874,stylized,1171322284 +181903,6874,visceral,1171322306 +181903,6890,austere,1172217388 +181903,6890,bleak,1172217401 +181903,6890,disturbing,1172217385 +181903,6890,enigmatic,1172217392 +181903,6890,forceful,1172217410 +181903,6898,bittersweet,1171339997 +181903,6898,compassionate,1171339983 +181903,6898,drab,1171339974 +181903,6898,forceful,1171339988 +181903,6898,gritty,1171339966 +181903,6898,matter-of-fact,1171340006 +181903,6898,poignant,1171339971 +181903,6920,atmospheric,1171323970 +181903,6920,tense,1171323962 +181903,6920,visceral,1171323959 +181903,6921,deliberate,1171684983 +181903,6921,downbeat,1171684963 +181903,6921,earnest,1171684967 +181903,6921,poignant,1171684971 +181903,6921,understated,1171684987 +181903,6971,atmospheric,1172118650 +181903,6971,bleak,1172118674 +181903,6971,chilly,1172118677 +181903,6971,claustrophobic,1172118670 +181903,6971,dreamlike,1172118700 +181903,6971,gloomy,1172118659 +181903,6971,hallucinatory,1172118695 +181903,6971,meditative,1172118636 +181903,6971,moody,1172118708 +181903,6971,nocturnal,1172118653 +181903,6971,paranoid,1172118641 +181903,6971,stylized,1172118633 +181903,6978,deadpan,1171764922 +181903,6978,easygoing,1171764918 +181903,6978,humorous,1171764934 +181903,6978,irreverent,1171764937 +181903,6978,talky,1171764929 +181903,6982,affectionate,1172882485 +181903,6982,bitt,1172882462 +181903,6982,earnest,1172882458 +181903,6982,elegiac,1172882467 +181903,6982,INNOCENCE LOST,1172882494 +181903,6982,ORPHANS,1172882498 +181903,6982,poignant,1172882474 +181903,6982,somber,1172882478 +181903,6985,austere,1172045750 +181903,6985,forceful,1172045745 +181903,6985,passionate,1172045738 +181903,6985,poignant,1172045742 +181903,7000,campy,1172356819 +181903,7000,goofy,1172356877 +181903,7000,humorous,1172356825 +181903,7000,quirky,1172356867 +181903,7000,rousing,1172356822 +181903,7000,silly,1172356889 +181903,7000,upbeat,1172356862 +181903,7008,cathartic,1173212448 +181903,7008,deliberate,1173212424 +181903,7008,disturbing,1173212430 +181903,7008,HAUNTED BY THE PAST,1173212468 +181903,7008,SELF-DESTRUCTIVE ROMANCE,1173212460 +181903,7008,somber,1173212437 +181903,7008,urbane,1173212440 +181903,7013,atmospheric,1171462397 +181903,7013,creepy,1171462441 +181903,7013,dreamlike,1171462423 +181903,7013,eerie,1171462405 +181903,7013,lyrical,1172132240 +181903,7013,menacing,1171462409 +181903,7013,ominous,1171462437 +181903,7013,stylized,1171462427 +181903,7024,bleak,1171340095 +181903,7024,confrontational,1171340104 +181903,7024,disturbing,1171340091 +181903,7024,harsh,1171340108 +181903,7024,lurid,1171340117 +181903,7029,chilly,1171696519 +181903,7029,creepy,1171696512 +181903,7029,gruesome,1171696501 +181903,7029,lurid,1171696515 +181903,7029,macabre,1171696493 +181903,7029,sexual,1171696497 +181903,7034,bittersweet,1171766175 +181903,7034,compassionate,1171766184 +181903,7034,drab,1171766191 +181903,7034,quirky,1171766187 +181903,7034,wry,1171766171 +181903,7043,bleak,1171183745 +181903,7043,compassionate,1171183752 +181903,7043,melancholy,1171183740 +181903,7043,reflective,1171183733 +181903,7043,urbane,1171183759 +181903,7063,harsh,1171605212 +181903,7063,stylized,1171605216 +181903,7063,tense,1171605208 +181903,7064,atmospheric,1171440441 +181903,7064,eerie,1171440448 +181903,7064,fanciful,1171440432 +181903,7064,lyrical,1171440452 +181903,7064,stylized,1171440437 +181903,7064,sweet,1171440455 +181903,7067,dreamlike,1171766274 +181903,7067,fanciful,1171766278 +181903,7067,FANTASY LIFE,1173102359 +181903,7067,hallucinatory,1171766288 +181903,7067,stylized,1171766291 +181903,7067,whimsical,1171766270 +181903,7068,cerebral,1172036414 +181903,7068,deliberate,1172036446 +181903,7068,eerie,1172036424 +181903,7068,elegant,1172036442 +181903,7068,enigmatic,1172036406 +181903,7068,hallucinatory,1172036429 +181903,7068,moody,1172036432 +181903,7068,stylized,1172036410 +181903,7071,bleak,1171344160 +181903,7071,cathartic,1171344166 +181903,7071,claustrophobic,1171344203 +181903,7071,forceful,1171344195 +181903,7071,intimate,1171344172 +181903,7071,poignant,1171344209 +181903,7071,somber,1171344179 +181903,7071,tense,1171344184 +181903,7076,cynical,1171784096 +181903,7076,forceful,1171784087 +181903,7076,gritty,1171784106 +181903,7076,matter-of-fact,1171784110 +181903,7076,somber,1171784114 +181903,7076,tense,1171784090 +181903,7088,atmospheric,1171263818 +181903,7088,bittersweet,1171263836 +181903,7088,compassionate,1171263853 +181903,7088,lyrical,1171263840 +181903,7088,passionate,1171263825 +181903,7089,dreamlike,1171180368 +181903,7089,ECCENTRIC FAMILIES,1172882749 +181903,7089,humorous,1171180355 +181903,7089,MISCHIEVOUS CHILDREN,1172882761 +181903,7089,nostalgic,1171180349 +181903,7089,quirky,1171180361 +181903,7089,satirical,1171180382 +181903,7089,SMALL-TOWN LIFE,1172882754 +181903,7089,TOTALITARIAN STATES,1172882770 +181903,7089,warm,1171180376 +181903,7090,atmospheric,1171437590 +181903,7090,lavish,1171437574 +181903,7090,lyrical,1171437579 +181903,7090,passionate,1171437586 +181903,7099,earnest,1171622869 +181903,7099,earthy,1171622866 +181903,7099,stylized,1171622877 +181903,7099,tense,1171622872 +181903,7111,atmospheric,1171622975 +181903,7111,downbeat,1171622971 +181903,7111,lavish,1171622954 +181903,7111,sweeping,1171622946 +181903,7111,tearjerking,1171622958 +181903,7115,atmospheric,1171432430 +181903,7115,creepy,1171432438 +181903,7115,lurid,1171432441 +181903,7115,menacing,1171432446 +181903,7115,stylized,1171432419 +181903,7123,deliberate,1171432277 +181903,7123,disturbing,1171432289 +181903,7123,dreamlike,1171432251 +181903,7123,hallucinatory,1171432268 +181903,7123,humorous,1171432245 +181903,7123,paranoid,1171432256 +181903,7123,sexual,1171432283 +181903,7126,bleak,1172130402 +181903,7126,cynical,1172130405 +181903,7126,downbeat,1172130410 +181903,7126,drab,1172130413 +181903,7130,biting,1171280068 +181903,7130,cynical,1171280055 +181903,7130,ironic,1171280073 +181903,7130,irreverent,1171280081 +181903,7130,urbane,1171280060 +181903,7130,witty,1171280085 +181903,7130,wry,1171280050 +181903,7135,affectionate,1171606916 +181903,7135,bittersweet,1171606923 +181903,7135,melancholy,1171606926 +181903,7135,moody,1171606912 +181903,7135,quirky,1171606934 +181903,7135,witty,1171606944 +181903,7136,AGE DISPARITY ROMANCE,1173102310 +181903,7136,bright,1173102289 +181903,7136,easygoing,1173102254 +181903,7136,light,1173102273 +181903,7136,lyrical,1173102261 +181903,7136,summery,1173102264 +181903,7136,sweet,1173102270 +181903,7136,TWENTYSOMETHING LIFE,1173102305 +181903,7136,warm,1173102277 +181903,7147,bittersweet,1172876709 +181903,7147,CIRCUSES AND CARNIVALS,1172876835 +181903,7147,fanciful,1172876778 +181903,7147,FATHERS AND SONS,1172876813 +181903,7147,heartwarming,1172876790 +181903,7147,JOURNEY OF SELF-DISCOVERY,1172876808 +181903,7147,reflective,1172876701 +181903,7147,sentimental,1172876783 +181903,7147,SMALL-TOWN LIFE,1172876826 +181903,7147,stylized,1172876769 +181903,7147,whimsical,1172876704 +181903,7153,atmospheric,1172055644 +181903,7153,earnest,1172055635 +181903,7153,lavish,1172055606 +181903,7153,ominous,1172055628 +181903,7153,rousing,1172055617 +181903,7153,stirring,1172055631 +181903,7153,stylized,1172055602 +181903,7153,sweeping,1172055599 +181903,7153,tense,1172055649 +181903,7176,gloomy,1171685278 +181903,7176,intimate,1171685270 +181903,7176,melancholy,1171685283 +181903,7176,poignant,1171685275 +181903,7181,disturbing,1172364701 +181903,7181,downbeat,1172364698 +181903,7181,literate,1172364710 +181903,7181,talky,1172364694 +181903,7181,tense,1172364712 +181903,7206,deadpan,1171443223 +181903,7206,humorous,1171443235 +181903,7206,light,1171443241 +181903,7206,satirical,1171443229 +181903,7206,witty,1171443243 +181903,7209,affectionate,1172647690 +181903,7209,FISH OUT OF WATER,1172647721 +181903,7209,light,1172647693 +181903,7209,stylized,1172647710 +181903,7209,VACATION ROMANCES,1172647742 +181903,7209,whimsical,1172647697 +181903,7209,witty,1172647707 +181903,7212,humorous,1172355439 +181903,7212,irreverent,1172355443 +181903,7212,light,1172355462 +181903,7212,talky,1172355456 +181903,7212,witty,1172355453 +181903,7217,AMATEUR SLEUTHS,1173245103 +181903,7217,atmospheric,1173245067 +181903,7217,gloomy,1173245072 +181903,7217,HAUNTED BY THE PAST,1173245114 +181903,7217,moody,1173245080 +181903,7217,nocturnal,1173245085 +181903,7217,OUT FOR REVENGE,1173245094 +181903,7234,bleak,1171603306 +181903,7234,melancholy,1171603315 +181903,7234,poignant,1171603323 +181903,7234,sentimental,1171603302 +181903,7234,stylized,1171603327 +181903,7235,confrontational,1171606502 +181903,7235,disturbing,1171606506 +181903,7235,forceful,1171606516 +181903,7235,quirky,1171606520 +181903,7235,stylized,1171606498 +181903,7235,tense,1171606512 +181903,7238,bleak,1171621318 +181903,7238,confrontational,1171621335 +181903,7238,disturbing,1171621322 +181903,7238,downbeat,1171621326 +181903,7238,lyrical,1171621347 +181903,7238,somber,1171621351 +181903,7238,wry,1171621338 +181903,7263,earnest,1173102670 +181903,7263,forceful,1173102668 +181903,7263,HOCKEY PLAYERS,1173102690 +181903,7263,matter-of-fact,1173102657 +181903,7263,OBSESSIVE QUESTS,1173102709 +181903,7263,rousing,1173102677 +181903,7263,stirring,1173102660 +181903,7263,SUCCESS IS THE BEST REVENGE,1173102715 +181903,7263,UNDERDOGS,1173102696 +181903,7272,confrontational,1171184845 +181903,7272,forceful,1171184851 +181903,7272,grim,1171184828 +181903,7272,gritty,1171184833 +181903,7272,tense,1171184837 +181903,7297,atmospheric,1173217044 +181903,7297,deadpan,1173217055 +181903,7297,humorous,1173217060 +181903,7297,quirky,1173217065 +181903,7297,SMALL-TOWN LIFE,1173217078 +181903,7297,understated,1173217040 +181903,7297,UNLIKELY FRIENDSHIPS,1173217088 +181903,7297,wry,1173217048 +181903,7299,atmospheric,1173216900 +181903,7299,CULTURAL DIVERSITY,1173216953 +181903,7299,DISCOVERING ONE'S HERITAGE,1173216980 +181903,7299,FATHERS AND SONS,1173216937 +181903,7299,GENERATION GAP,1173216962 +181903,7299,heartwarming,1173216869 +181903,7299,sentimental,1173216885 +181903,7299,SPIRITUAL AWAKENING,1173216928 +181903,7299,sweet,1173216875 +181903,7299,UNLIKELY FRIENDSHIPS,1173216915 +181903,7299,warm,1173216890 +181903,7301,austere,1171439896 +181903,7301,bleak,1171439900 +181903,7301,earnest,1171439917 +181903,7301,gloomy,1171439913 +181903,7301,intimate,1171439933 +181903,7301,meditative,1171439925 +181903,7301,reflective,1171439904 +181903,7327,austere,1172138925 +181903,7327,cerebral,1172138930 +181903,7327,chilly,1172138933 +181903,7327,dreamlike,1172138940 +181903,7327,enigmatic,1172138947 +181903,7327,intimate,1172138950 +181903,7327,sexual,1172138958 +181903,7327,talky,1172138963 +181903,7328,austere,1173212342 +181903,7328,bleak,1173212356 +181903,7328,BRIEF ENCOUNTERS,1173212370 +181903,7328,cerebral,1173212351 +181903,7328,meditative,1173212335 +181903,7328,OPPOSITES ATTRACT,1173212380 +181903,7328,stylized,1173212359 +181903,7335,biting,1171433503 +181903,7335,forceful,1171433513 +181903,7335,gritty,1171433518 +181903,7335,lurid,1171433500 +181903,7335,paranoid,1171433522 +181903,7335,tense,1171433506 +181903,7352,bittersweet,1173216760 +181903,7352,compassionate,1173216764 +181903,7352,LOVE TRIANGLES,1173216778 +181903,7352,SIBLING RELATIONSHIPS,1173216798 +181903,7352,SUICIDE,1173216787 +181903,7352,wry,1173216770 +181903,7361,bittersweet,1172216758 +181903,7361,BREAKUPS AND DIVORCES,1173244765 +181903,7361,cerebral,1172216780 +181903,7361,drab,1172216799 +181903,7361,EXPERIMENTS GONE AWRY,1173244790 +181903,7361,frantic,1172216790 +181903,7361,LOVE TRIANGLES,1173244778 +181903,7361,melancholy,1172216784 +181903,7361,quirky,1172216766 +181903,7361,wintry,1172216762 +181903,7371,austere,1171666564 +181903,7371,disturbing,1171666579 +181903,7371,harsh,1171666583 +181903,7371,ominous,1171666568 +181903,7377,bleak,1172217552 +181903,7377,downbeat,1172217556 +181903,7377,grim,1172217545 +181903,7377,talky,1172217548 +181903,7387,CANNIBALS,1172588008 +181903,7387,cynical,1171669127 +181903,7387,disturbing,1171669093 +181903,7387,END OF THE WORLD,1172587994 +181903,7387,gruesome,1171669114 +181903,7387,menacing,1171669097 +181903,7387,ominous,1171669122 +181903,7387,satirical,1171669101 +181903,7387,visceral,1171669110 +181903,7387,ZOMBIES,1172587967 +181903,7396,austere,1171674314 +181903,7396,deliberate,1171674319 +181903,7396,intimate,1171674296 +181903,7396,matter-of-fact,1171674306 +181903,7396,reflective,1171674323 +181903,7396,talky,1171674327 +181903,7396,understated,1171674301 +181903,7420,Ann-Margret,1284330841 +181903,7438,atmospheric,1171322413 +181903,7438,quirky,1171322403 +181903,7438,rousing,1171322418 +181903,7438,stylized,1171322399 +181903,7438,sweeping,1171322426 +181903,7438,visceral,1171322432 +181903,7454,atmospheric,1171784361 +181903,7454,eerie,1171784357 +181903,7454,flashy,1171784339 +181903,7454,frantic,1171784336 +181903,7454,goth,1171784350 +181903,7454,tense,1171784347 +181903,7460,deadpan,1171443163 +181903,7460,talky,1171443167 +181903,7460,wry,1171443169 +181903,7482,forceful,1171605402 +181903,7482,HEROIC MISSION,1172960629 +181903,7482,rousing,1171605387 +181903,7482,tense,1171605391 +181903,7482,visceral,1171605395 +181903,7485,affectionate,1171266202 +181903,7485,gentle,1171266216 +181903,7485,humorous,1171266207 +181903,7561,creepy,1172293960 +181903,7561,disturbing,1172293952 +181903,7561,dreamlike,1172293956 +181903,7561,eerie,1172293987 +181903,7561,FANTASY LANDS,1173105797 +181903,7561,FANTASY LIFE,1173105788 +181903,7561,hallucinatory,1172293970 +181903,7561,stylized,1172293975 +181903,7561,tense,1172293982 +181903,7564,atmospheric,1171437491 +181903,7564,eerie,1171437480 +181903,7564,meditative,1171437484 +181903,7564,melancholy,1171437498 +181903,7564,stylized,1171437508 +181903,7577,fanciful,1172643887 +181903,7577,HEROIC MISSION,1172643913 +181903,7577,light,1172643894 +181903,7577,stylized,1172643897 +181903,7577,whimsical,1172643901 +181903,7586,forceful,1172485513 +181903,7586,ominous,1172485530 +181903,7586,stylized,1172485516 +181903,7586,sweeping,1172485526 +181903,7586,tense,1172485519 +181903,7587,atmospheric,1171183816 +181903,7587,claustrophobic,1171183865 +181903,7587,meditative,1171183834 +181903,7587,reflective,1171183840 +181903,7587,stylized,1171183824 +181903,7587,tense,1171183829 +181903,7616,atmospheric,1171605900 +181903,7616,disturbing,1171605904 +181903,7616,menacing,1171605881 +181903,7616,paranoid,1171605889 +181903,7616,raunchy,1171605913 +181903,7616,sexual,1171605893 +181903,7637,CREATIVE BLOCK,1172886238 +181903,7637,CULTURE CLASH,1172886208 +181903,7637,FILMMAKING,1172886203 +181903,7637,irreverent,1172488473 +181903,7637,light,1172488442 +181903,7637,quirky,1172488449 +181903,7637,reflective,1172488458 +181903,7637,satirical,1172488470 +181903,7637,stylized,1172488462 +181903,7637,WORK ETHICS,1172886247 +181903,7637,wry,1172488445 +181903,7650,atmospheric,1171673892 +181903,7650,bleak,1171673883 +181903,7650,claustrophobic,1171673896 +181903,7650,disturbing,1171673903 +181903,7650,menacing,1171673907 +181903,7650,visceral,1171673911 +181903,7700,forceful,1171265532 +181903,7700,gritty,1171265527 +181903,7700,moody,1171265523 +181903,7700,tense,1171265520 +181903,7720,easygoing,1171746535 +181903,7720,humorous,1171746544 +181903,7720,lavish,1171746549 +181903,7720,light,1171746536 +181903,7720,rousing,1171746531 +181903,7720,witty,1171746557 +181903,7748,cerebral,1172300370 +181903,7748,enigmatic,1172300385 +181903,7748,LOVERS ON THE LAM,1172882848 +181903,7748,lyrical,1172300400 +181903,7748,quirky,1172300374 +181903,7748,reflective,1172300388 +181903,7748,STAR-CROSSED LOVERS,1172882856 +181903,7748,stylized,1172300367 +181903,7748,witty,1172300391 +181903,7749,biting,1171148575 +181903,7749,CLASS DIFFERENCES,1172500302 +181903,7749,CRIME SPREES,1172500318 +181903,7749,CRUMBLING MARRIAGES,1172500327 +181903,7749,FIGHTING THE SYSTEM,1172500335 +181903,7749,frantic,1171148587 +181903,7749,irreverent,1171148563 +181903,7749,literate,1171148580 +181903,7749,NIGHTMARE VACATIONS,1172500346 +181903,7749,POLITICAL UNREST,1172500309 +181903,7749,satirical,1171148571 +181903,7749,stylized,1171148593 +181903,7749,wry,1171148597 +181903,7759,cathartic,1173212648 +181903,7759,CULTURE CLASH,1173212685 +181903,7759,deliberate,1173212665 +181903,7759,earnest,1173212640 +181903,7759,FISH OUT OF WATER,1173212693 +181903,7759,intimate,1173212652 +181903,7759,meditative,1173212661 +181903,7759,stylized,1173212671 +181903,7759,UNREQUITED LOVE,1173212710 +181903,7759,WRITER'S LIFE,1173212702 +181903,7766,bleak,1171604989 +181903,7766,forceful,1171604982 +181903,7766,grim,1171604997 +181903,7766,literate,1171605002 +181903,7766,stylized,1171604986 +181903,7767,bittersweet,1173214256 +181903,7767,DOCTORS AND PATIENTS,1173214274 +181903,7767,earnest,1173214252 +181903,7767,nostalgic,1173214244 +181903,7767,poignant,1173214240 +181903,7767,POLITICAL CORRUPTION,1173214290 +181903,7767,POLITICAL UNREST,1173214300 +181903,7767,SIBLING RELATIONSHIPS,1173214314 +181903,7767,sweeping,1173214259 +181903,7767,UNREQUITED LOVE,1173214268 +181903,7802,forceful,1172363765 +181903,7802,gritty,1172363770 +181903,7802,ominous,1172363774 +181903,7802,tense,1172363869 +181903,7802,visceral,1172363873 +181903,7817,cerebral,1171752129 +181903,7817,fanciful,1171752103 +181903,7817,forceful,1171752107 +181903,7817,hallucinatory,1171752111 +181903,7817,tense,1171752119 +181903,7817,whimsical,1171752126 +181903,7820,austere,1171181951 +181903,7820,chilly,1171181956 +181903,7820,DEATH OF A CHILD,1172500158 +181903,7820,disturbing,1171181978 +181903,7820,OBSESSIVE QUESTS,1172500168 +181903,7820,OUT FOR REVENGE,1172500147 +181903,7820,somber,1171181966 +181903,7820,stylized,1171181962 +181903,7820,tense,1171181972 +181903,7889,earnest,1171761813 +181903,7889,earthy,1171761819 +181903,7889,elegiac,1171761804 +181903,7889,reflective,1171761800 +181903,7895,biting,1171151881 +181903,7895,cynical,1171151865 +181903,7895,forceful,1171151886 +181903,7895,gritty,1171151870 +181903,7895,irreverent,1171151876 +181903,7895,NOTHING GOES RIGHT,1172499660 +181903,7895,OBSESSIVE QUESTS,1172499671 +181903,7895,visceral,1171151892 +181903,7896,affectionate,1171743200 +181903,7896,atmospheric,1171743209 +181903,7896,autumnal,1171743189 +181903,7896,elegiac,1171743185 +181903,7896,nostalgic,1171743196 +181903,7897,atmospheric,1172649688 +181903,7897,easygoing,1172649696 +181903,7897,humorous,1172649700 +181903,7897,irreverent,1172649723 +181903,7897,PROSPECTORS AND LAND RIGHTS,1172649794 +181903,7897,quirky,1172649717 +181903,7897,RAGS TO RICHES,1172649771 +181903,7897,RISE AND FALL STORIES,1172649775 +181903,7897,satirical,1172649720 +181903,7897,SUCCESS IS THE BEST REVENGE,1172649757 +181903,7899,quirky,1171605497 +181903,7899,tense,1171605492 +181903,7913,eerie,1171682790 +181903,7913,goth,1171682793 +181903,7913,menacing,1171682798 +181903,7913,stylized,1171682802 +181903,7924,atmospheric,1172566184 +181903,7924,bleak,1172566178 +181903,7924,moody,1172566180 +181903,7924,OBSESSIVE QUESTS,1172566195 +181903,7924,ROOKIE COPS,1172566199 +181903,7924,tense,1172566186 +181903,7925,light,1171766437 +181903,7925,rousing,1171766430 +181903,7925,visceral,1171766433 +181903,7926,bleak,1171429941 +181903,7926,deliberate,1171429937 +181903,7926,disturbing,1171429932 +181903,7936,austere,1172643738 +181903,7936,biting,1172643753 +181903,7936,bleak,1172643742 +181903,7936,CRISIS OF CONSCIENCE,1172643808 +181903,7936,CRUMBLING MARRIAGES,1172643778 +181903,7936,disturbing,1172643750 +181903,7936,POLITICAL UNREST,1172643788 +181903,7937,bleak,1172350399 +181903,7937,disturbing,1172350389 +181903,7937,downbeat,1172350407 +181903,7937,gloomy,1172350394 +181903,7938,atmospheric,1172130743 +181903,7938,austere,1172130748 +181903,7938,bleak,1172130753 +181903,7938,cerebral,1172130764 +181903,7938,deliberate,1172130773 +181903,7938,gloomy,1172130778 +181903,7938,meditative,1172130785 +181903,7939,atmospheric,1171606747 +181903,7939,bleak,1171606758 +181903,7939,deliberate,1171606750 +181903,7939,reflective,1171606761 +181903,7940,bleak,1173211742 +181903,7940,deliberate,1173211746 +181903,7940,disturbing,1173211739 +181903,7940,goth,1173211753 +181903,7940,menacing,1173211958 +181903,7940,ominous,1173211770 +181903,7940,OUT FOR REVENGE,1173211969 +181903,7940,SMALL-TOWN LIFE,1173211976 +181903,7940,tense,1173211950 +181903,7941,affectionate,1172495985 +181903,7941,light,1172495974 +181903,7941,literate,1172495978 +181903,7941,LOVERS REUNITED,1173292846 +181903,7941,lyrical,1172495997 +181903,7941,summery,1172495993 +181903,7941,VACATION ROMANCES,1173292851 +181903,7941,wistful,1172496003 +181903,7941,witty,1172495980 +181903,7943,atmospheric,1172566008 +181903,7943,bleak,1172566012 +181903,7943,CRIME GONE AWRY,1172566049 +181903,7943,DISHONOR AMONG THIEVES,1172566070 +181903,7943,FEMMES FATALES,1172566036 +181903,7943,gloomy,1172566025 +181903,7943,gritty,1172566029 +181903,7943,HAUNTED BY THE PAST,1172566055 +181903,7943,moody,1172566015 +181903,7948,atmospheric,1173194413 +181903,7948,cathartic,1173194436 +181903,7948,CONS AND SCAMS,1173194496 +181903,7948,downbeat,1173194419 +181903,7948,poignant,1173194439 +181903,7948,quirky,1173194423 +181903,7948,RELIGIOUS ZEALOTRY,1173194501 +181903,7948,satirical,1173194443 +181903,7948,SOUTHERN GOTHIC,1173194492 +181903,7948,visceral,1173194426 +181903,7981,confrontational,1172299510 +181903,7981,gritty,1172299533 +181903,7981,menacing,1172299501 +181903,7981,slick,1172299529 +181903,7981,stylized,1172299505 +181903,7981,tense,1172299539 +181903,7982,atmospheric,1171685568 +181903,7982,claustrophobic,1171685609 +181903,7982,creepy,1171685573 +181903,7982,deliberate,1171685603 +181903,7982,eerie,1171685594 +181903,7982,goth,1171685589 +181903,7982,lyrical,1171685578 +181903,7982,tense,1171685586 +181903,7991,campy,1171172172 +181903,7991,cynical,1171172161 +181903,7991,grim,1171172150 +181903,7991,humorous,1171172178 +181903,7991,quirky,1171172167 +181903,7991,satirical,1171172155 +181903,7991,upbeat,1171172146 +181903,8014,bittersweet,1172132401 +181903,8014,compassionate,1172132396 +181903,8014,deliberate,1172132373 +181903,8014,reflective,1172132350 +181903,8014,visceral,1172132339 +181903,8014,wry,1172132353 +181903,8039,affectionate,1172500677 +181903,8039,easygoing,1172500656 +181903,8039,goofy,1172500673 +181903,8039,humorous,1172500660 +181903,8039,light,1172500665 +181903,8039,PROSPECTORS AND LAND RIGHTS,1172500711 +181903,8039,satirical,1172500682 +181903,8039,SHERIFFS AND OUTLAWS,1172500695 +181903,8125,atmospheric,1171183644 +181903,8125,dreamlike,1171183667 +181903,8125,passionate,1171183649 +181903,8125,poignant,1171183661 +181903,8125,sentimental,1171183656 +181903,8125,stylized,1171183638 +181903,8126,atmospheric,1171432840 +181903,8126,cynical,1171432845 +181903,8126,paranoid,1171432849 +181903,8126,quirky,1171432858 +181903,8126,stylized,1171432862 +181903,8126,visceral,1171432872 +181903,8143,elegiac,1172036661 +181903,8143,lavish,1172036666 +181903,8143,literate,1172036670 +181903,8143,melancholy,1172036685 +181903,8143,sweeping,1172036680 +181903,8154,CRISIS OF CONSCIENCE,1173211669 +181903,8154,cynical,1171180473 +181903,8154,lavish,1171180478 +181903,8154,MEMBERS OF THE PRESS,1173211659 +181903,8154,PLAYING THE FIELD,1173211690 +181903,8154,satirical,1171180457 +181903,8154,sexy,1171180481 +181903,8154,urbane,1171180468 +181903,8154,wry,1171180462 +181903,8188,bittersweet,1172492486 +181903,8188,elegant,1172492483 +181903,8188,literate,1172492495 +181903,8188,poignant,1172492497 +181903,8188,stylized,1172492479 +181903,8188,sweeping,1172492504 +181903,8195,deliberate,1171339251 +181903,8195,enigmatic,1171339281 +181903,8195,meditative,1171339258 +181903,8195,reflective,1171339267 +181903,8195,stylized,1171339272 +181903,8196,biting,1171151155 +181903,8196,campy,1171151159 +181903,8196,humorous,1171151165 +181903,8196,irreverent,1171151174 +181903,8196,sexual,1171151183 +181903,8196,sexy,1171151190 +181903,8196,silly,1171151196 +181903,8197,CULTURE CLASH,1173291855 +181903,8197,downbeat,1172037298 +181903,8197,elegiac,1172037279 +181903,8197,HAUNTED BY THE PAST,1173291849 +181903,8197,literate,1172037284 +181903,8197,melancholy,1172037302 +181903,8197,poignant,1172037306 +181903,8197,reflective,1172037315 +181903,8197,somber,1172037289 +181903,8199,atmospheric,1171323875 +181903,8199,deliberate,1171323904 +181903,8199,eerie,1171323890 +181903,8199,elegiac,1171323867 +181903,8199,lyrical,1171323880 +181903,8199,moody,1171323886 +181903,8199,reflective,1171323899 +181903,8202,atmospheric,1171709169 +181903,8202,lavish,1171709161 +181903,8202,light,1171709164 +181903,8202,lyrical,1171709174 +181903,8239,atmospheric,1171147609 +181903,8239,cynical,1171147618 +181903,8239,deadpan,1171147623 +181903,8239,irreverent,1171147630 +181903,8239,satirical,1171147639 +181903,8239,understated,1171147645 +181903,8239,wry,1171147649 +181903,8253,bright,1172037011 +181903,8253,stylized,1172037002 +181903,8253,sweeping,1172037006 +181903,8261,atmospheric,1171346515 +181903,8261,deliberate,1171346546 +181903,8261,disturbing,1171346527 +181903,8261,FALTERING FRIENDSHIPS,1172499786 +181903,8261,hallucinatory,1171346533 +181903,8261,meditative,1171346523 +181903,8261,OPPOSITES ATTRACT,1172499832 +181903,8261,reflective,1171346553 +181903,8261,SPLIT PERSONALITIES,1172499845 +181903,8261,stylized,1171346539 +181903,8261,WOMEN FRIENDSHIP'S,1172499810 +181903,8264,compassionate,1171437851 +181903,8264,earnest,1171437866 +181903,8264,quirky,1171437859 +181903,8264,wry,1171437862 +181903,8327,deliberate,1173213020 +181903,8327,downbeat,1173212992 +181903,8327,intimate,1173213009 +181903,8327,LOVERS REUNITED,1173213039 +181903,8327,melancholy,1173212999 +181903,8327,MENTAL ILLNESS,1173213029 +181903,8327,poignant,1173213015 +181903,8327,STAR-CROSSED LOVERS,1173213047 +181903,8327,wistful,1173213005 +181903,8338,atmospheric,1171149842 +181903,8338,claustrophobic,1171149880 +181903,8338,compassionate,1171149848 +181903,8338,disturbing,1171149858 +181903,8338,lavish,1171149885 +181903,8338,passionate,1171149863 +181903,8338,reflective,1171149869 +181903,8338,stylized,1171149890 +181903,8405,atmospheric,1173212100 +181903,8405,CRUMBLING MARRIAGES,1173212149 +181903,8405,EXTRAMARITAL AFFAIRS,1173212156 +181903,8405,gloomy,1173212123 +181903,8405,grim,1173212131 +181903,8405,hallucinatory,1173212138 +181903,8405,LIFE IN THE ARTS,1173212166 +181903,8405,somber,1173212119 +181903,8405,stylized,1173212109 +181903,8459,atmospheric,1171527084 +181903,8459,biting,1171527060 +181903,8459,literate,1171527066 +181903,8459,talky,1171527077 +181903,8459,urbane,1171527074 +181903,8480,earnest,1172493232 +181903,8480,poignant,1172493235 +181903,8480,stylized,1172493230 +181903,8480,sweeping,1172493226 +181903,8507,atmospheric,1172502803 +181903,8507,CIRCUSES AND CARNIVALS,1172502858 +181903,8507,CONS AND SCAMS,1172502879 +181903,8507,creepy,1172502823 +181903,8507,disturbing,1172502798 +181903,8507,eerie,1172502827 +181903,8507,gruesome,1172502813 +181903,8507,LOOKING FOR LOVE,1172502870 +181903,8507,menacing,1172502820 +181903,8507,tense,1172502810 +181903,8507,TREACHEROUS SPOUSES,1172502842 +181903,8573,atmospheric,1173213653 +181903,8573,BRIEF ENCOUNTERS,1173213708 +181903,8573,DANGEROUS ATTRACTION,1173213690 +181903,8573,dreamlike,1173213667 +181903,8573,moody,1173213656 +181903,8573,SELF-DESTRUCTIVE ROMANCE,1173213699 +181903,8573,stylized,1173213663 +181903,8573,WRITER'S LIFE,1173213681 +181903,8601,angry,1172037585 +181903,8601,biting,1172037589 +181903,8601,confrontational,1172037574 +181903,8601,disturbing,1172037613 +181903,8601,dreamlike,1172037610 +181903,8601,fanciful,1172037597 +181903,8601,irreverent,1172037600 +181903,8601,rousing,1172037603 +181903,8608,disturbing,1172035879 +181903,8608,enigmatic,1172035887 +181903,8608,moody,1172035874 +181903,8608,ominous,1172035883 +181903,8618,quirky,1171344641 +181903,8618,stylized,1171344649 +181903,8618,tense,1171344636 +181903,8620,biting,1172297884 +181903,8620,cerebral,1172297888 +181903,8620,cynical,1172297877 +181903,8620,dreamlike,1172297898 +181903,8620,irreverent,1172297881 +181903,8620,menacing,1172297903 +181903,8620,satirical,1172297929 +181903,8620,wity,1172297918 +181903,8645,compassionate,1173104552 +181903,8645,DRUG TRADE,1173104570 +181903,8645,earnest,1173104537 +181903,8645,gritty,1173104541 +181903,8645,INNOCENCE LOST,1173104564 +181903,8645,poignant,1173104545 +181903,8645,tense,1173104555 +181903,8656,bleak,1172050087 +181903,8656,confrontational,1172050105 +181903,8656,deliberate,1172050101 +181903,8656,disturbing,1172050080 +181903,8656,matter-of-fact,1172050084 +181903,8656,reflective,1172050097 +181903,8670,creepy,1171766521 +181903,8670,eerie,1171766534 +181903,8670,ominous,1171766540 +181903,8670,stylized,1171766525 +181903,8670,tense,1171766518 +181903,8684,austere,1171604251 +181903,8684,deliberate,1171604254 +181903,8684,meditative,1171604259 +181903,8684,reflective,1171604267 +181903,8684,understated,1171604272 +181903,8710,atmospheric,1173215831 +181903,8710,bittersweet,1173215827 +181903,8710,bleak,1173215801 +181903,8710,dreamlike,1173215842 +181903,8710,elegiac,1173215788 +181903,8710,INTERRACIAL/CROSS-CULTURAL ROMANCE,1173215853 +181903,8710,lavish,1173215818 +181903,8710,LOVERS REUNITED,1173215863 +181903,8710,lyrical,1173215834 +181903,8710,meditative,1173215806 +181903,8710,sweeping,1173215812 +181903,8710,wintry,1173215795 +181903,8724,elegiac,1171603832 +181903,8724,lavish,1171603783 +181903,8724,melancholy,1171603825 +181903,8724,poignant,1171603813 +181903,8724,reflective,1171603795 +181903,8724,sweeping,1171603788 +181903,8738,affectionate,1171148212 +181903,8738,bright,1171148186 +181903,8738,easygoing,1171148207 +181903,8738,humorous,1171148172 +181903,8738,light,1171148191 +181903,8738,LOVE TRIANGLES,1173101527 +181903,8738,stylized,1171148179 +181903,8738,whimsical,1171148196 +181903,8738,witty,1171148201 +181903,8739,compassionate,1172220724 +181903,8739,downbeat,1172220727 +181903,8739,drab,1172220731 +181903,8739,gritty,1172220735 +181903,8748,humorous,1172130992 +181903,8748,light,1172130973 +181903,8748,madcap,1172130978 +181903,8748,racy,1172130970 +181903,8748,sexy,1172130988 +181903,8749,deliberate,1172209732 +181903,8749,intimate,1172209757 +181903,8749,meditative,1172209735 +181903,8749,reflective,1172209739 +181903,8749,stylized,1172209749 +181903,8749,understated,1172209753 +181903,8751,atmospheric,1171792875 +181903,8751,disturbing,1171792862 +181903,8751,gritty,1171792867 +181903,8751,tense,1171792879 +181903,8751,visceral,1171792883 +181903,8754,BOARDING SCHOOL LIFE,1173216318 +181903,8754,DANGEROUS ATTRACTION,1173216330 +181903,8754,humorous,1173216257 +181903,8754,INNOCENCE LOST,1173216339 +181903,8754,poignant,1173216269 +181903,8754,quirky,1173216264 +181903,8754,talky,1173216281 +181903,8754,TEACHERS AND STUDENTS,1173216298 +181903,8754,tense,1173216272 +181903,8786,atmospheric,1171147250 +181903,8786,bleak,1171147255 +181903,8786,downbeat,1171147263 +181903,8786,moody,1171147274 +181903,8786,somber,1171147268 +181903,8860,claustrophobic,1172959360 +181903,8860,forceful,1172959353 +181903,8860,KIDNAPPING,1172959380 +181903,8860,menacing,1172959349 +181903,8860,paranoid,1172959345 +181903,8860,RACE AGAINST TIME,1172959372 +181903,8860,tense,1172959363 +181903,8906,disturbing,1171762262 +181903,8906,gruesome,1171762312 +181903,8906,harsh,1171762265 +181903,8906,lurid,1171762278 +181903,8906,menacing,1171762297 +181903,8906,tense,1171762293 +181903,8906,visceral,1171762283 +181903,8928,campy,1171151502 +181903,8928,goofy,1171151513 +181903,8928,humorous,1171151532 +181903,8928,irreverent,1171151538 +181903,8928,madcap,1171151507 +181903,8928,quirky,1171151518 +181903,8928,silly,1171151526 +181903,8950,bleak,1171171476 +181903,8950,eerie,1171171465 +181903,8950,grim,1171171497 +181903,8950,ominous,1171171481 +181903,8950,paranoid,1171171472 +181903,8950,stylized,1171171486 +181903,8973,cathartic,1173414206 +181903,8973,DANGEROUS ATTRACTION,1173414232 +181903,8973,enigmatic,1173414187 +181903,8973,FILMMAKING,1173414219 +181903,8973,FIRST LOVE,1173414255 +181903,8973,GENDER-BENDING,1173414262 +181903,8973,HAUNTED BY THE PAST,1173414228 +181903,8973,irreverent,1173414182 +181903,8973,MEMBERS OF THE CLERGY,1173414246 +181903,8973,reflective,1173414199 +181903,8973,sexy,1173414195 +181903,8973,stylized,1173414177 +181903,25750,easygoing,1171183507 +181903,25750,goofy,1171183492 +181903,25750,humorous,1171183519 +181903,25750,madcap,1171183497 +181903,25750,stylized,1171183513 +181903,25750,witty,1171183501 +181903,25763,grim,1171170773 +181903,25763,sensual,1171170763 +181903,25763,sexual,1171170756 +181903,25763,sexy,1171170768 +181903,25763,stylized,1171170751 +181903,25805,fanciful,1172035633 +181903,25805,lyrical,1172035629 +181903,25805,stylized,1172035624 +181903,25805,whimsical,1172035643 +181903,25866,atmospheric,1171684454 +181903,25866,rousing,1171684464 +181903,25866,sweeping,1171684457 +181903,25898,bleak,1171957879 +181903,25898,confrontational,1171957876 +181903,25898,disturbing,1171957888 +181903,25898,downbeat,1171957883 +181903,25916,forceful,1173194271 +181903,25916,gritty,1173194242 +181903,25916,menacing,1173194266 +181903,25916,MILITARY LIFE,1173194370 +181903,25916,passionate,1173194262 +181903,25916,rousing,1173194252 +181903,25916,somber,1173194249 +181903,25916,tense,1173194246 +181903,25916,WAR AT SEA,1173194365 +181903,25940,atmospheric,1173191823 +181903,25940,bleak,1173191834 +181903,25940,chilly,1173191836 +181903,25940,CONS AND SCAMS,1173191862 +181903,25940,cynical,1173191827 +181903,25940,DANGEROUS ATTRACTION,1173191885 +181903,25940,FEMMES FATALES,1173191857 +181903,25940,menacing,1173191845 +181903,25940,MISCARRIAGE OF JUSTICE,1173191880 +181903,25940,TREACHEROUS SPOUSES,1173191896 +181903,25954,atmospheric,1171606814 +181903,25954,eerie,1171606824 +181903,25954,lyrical,1171606839 +181903,25954,meditative,1171606817 +181903,25954,reflective,1171606828 +181903,25954,stylized,1171606843 +181903,25995,atmospheric,1172119418 +181903,25995,lyrical,1172119423 +181903,25995,rousing,1172119432 +181903,25995,sweeping,1172119452 +181903,25995,tense,1172119426 +181903,26052,deliberate,1171181809 +181903,26052,enigmatic,1171181779 +181903,26052,meditative,1171181802 +181903,26052,reflective,1171181770 +181903,26052,stylized,1171181789 +181903,26055,affectionate,1171183941 +181903,26055,elegiac,1171183947 +181903,26055,heartwarming,1171183957 +181903,26055,intimate,1171183970 +181903,26055,warm,1171183963 +181903,26082,austere,1171663427 +181903,26082,bleak,1171663436 +181903,26082,CRISIS OF CONSCIENCE,1172501028 +181903,26082,DOWN ON THEIR LUCK,1172501017 +181903,26082,downbeat,1171663432 +181903,26082,tense,1171663438 +181903,26094,deliberate,1171344426 +181903,26094,meditative,1171344434 +181903,26094,reflective,1171344439 +181903,26094,somber,1171344448 +181903,26119,angry,1171265125 +181903,26119,bleak,1171265120 +181903,26119,disturbing,1171265116 +181903,26119,gloomy,1171265142 +181903,26119,ominous,1171265134 +181903,26119,tense,1171265138 +181903,26122,atmospheric,1171748504 +181903,26122,disturbing,1171748285 +181903,26122,eerie,1171748288 +181903,26122,enigmatic,1171748493 +181903,26122,ominous,1171748507 +181903,26122,stylized,1171748500 +181903,26131,forceful,1171323815 +181903,26131,gritty,1171323794 +181903,26131,harsh,1171323789 +181903,26131,matter-of-fact,1171323803 +181903,26131,visceral,1171323822 +181903,26150,atmospheric,1171265411 +181903,26150,deliberate,1171265416 +181903,26150,disturbing,1171265426 +181903,26150,downbeat,1171265434 +181903,26150,meditative,1171265441 +181903,26150,somber,1171265405 +181903,26151,austere,1171181700 +181903,26151,deliberate,1171181706 +181903,26151,reflective,1171181720 +181903,26151,understated,1171181712 +181903,26171,deadpan,1171604429 +181903,26171,humorous,1171604423 +181903,26171,satirical,1171604410 +181903,26171,stylized,1171604413 +181903,26171,wry,1171604426 +181903,26172,hallucinatory,1171622382 +181903,26172,menacing,1171622378 +181903,26172,tense,1171622394 +181903,26172,visceral,1171622391 +181903,26231,atmospheric,1171525686 +181903,26231,disturbing,1171525666 +181903,26231,enigmatic,1171525630 +181903,26231,hallucinatory,1171525639 +181903,26231,sensual,1171525650 +181903,26231,sexual,1171525677 +181903,26231,stylized,1171525646 +181903,26258,atmospheric,1171780737 +181903,26258,disturbing,1171780754 +181903,26258,hallucinatory,1171780767 +181903,26258,harsh,1171780741 +181903,26258,passionate,1171780750 +181903,26258,poignant,1171780732 +181903,26258,sweeping,1171780758 +181903,26283,BANK ROBBERY,1173102028 +181903,26283,CRIME GONE AWRY,1173102032 +181903,26283,cynical,1173101994 +181903,26283,gritty,1173102003 +181903,26283,ONE LAST HEIST,1173102041 +181903,26283,tense,1173101988 +181903,26283,visceral,1173102011 +181903,26283,wry,1173101981 +181903,26303,biting,1171605689 +181903,26303,chilly,1171605692 +181903,26303,claustrophobic,1171605697 +181903,26303,disturbing,1171605707 +181903,26303,downbeat,1171605713 +181903,26303,gloomy,1171605716 +181903,26303,hallucinatory,1171605723 +181903,26303,lurid,1171605735 +181903,26303,menacing,1171605727 +181903,26303,satirical,1171605738 +181903,26303,visceral,1171605747 +181903,26599,humorous,1172497907 +181903,26599,LOVE TRIANGLES,1172497931 +181903,26599,quirky,1172497919 +181903,26599,racy,1172497911 +181903,26713,affectionate,1172281189 +181903,26713,lyrical,1172281193 +181903,26713,reflective,1172281176 +181903,26713,sentimental,1172281179 +181903,26770,BOXERS,1174429418 +181903,26770,CONS AND SCAMS,1174429424 +181903,26770,deadpan,1174429402 +181903,26770,humorous,1174429406 +181903,26770,wry,1174429408 +181903,26810,lurid,1171767399 +181903,26810,MISFITS AND OUTSIDERS,1173104794 +181903,26810,quirky,1171767406 +181903,26810,satirical,1171767395 +181903,26810,tense,1171767402 +181903,26915,campy,1171430713 +181903,26915,frantic,1171430725 +181903,26915,goofy,1171430742 +181903,26915,humorous,1171430718 +181903,26915,irreverent,1171430747 +181903,26915,satirical,1171430739 +181903,26915,sexual,1171430729 +181903,26965,bleak,1173105243 +181903,26965,BOXERS,1173105302 +181903,26965,compassionate,1173105250 +181903,26965,DANGEROUS FRIENDS,1173105280 +181903,26965,GOING STRAIGHT,1173105291 +181903,26965,grim,1173105258 +181903,26965,gritty,1173105262 +181903,26965,REDEMPTION,1173105275 +181903,26974,disturbing,1173104881 +181903,26974,drab,1173104873 +181903,26974,enigmatic,1173104871 +181903,26974,hallucinatory,1173104886 +181903,26974,irreverent,1173104896 +181903,26974,KIDS IN TROUBLE,1173104924 +181903,26974,MOTHERS AND SONS,1173104940 +181903,26974,sexual,1173104904 +181903,26974,stylized,1173104907 +181903,26974,SUBURBAN DYSFUNCTION,1173104944 +181903,27266,atmospheric,1171766650 +181903,27266,elegant,1171766646 +181903,27266,enigmatic,1171766611 +181903,27266,stylized,1171766666 +181903,27317,disturbing,1171429816 +181903,27317,ominous,1171429820 +181903,27317,stylized,1171429827 +181903,27317,tense,1171429830 +181903,27410,cerebral,1172050274 +181903,27410,deliberate,1172050270 +181903,27410,disturbing,1172050287 +181903,27410,matter-of-fact,1172050278 +181903,27410,understated,1172050291 +181903,27592,menacing,1172389957 +181903,27592,stylized,1172389953 +181903,27706,bleak,1172217769 +181903,27706,chilly,1172217742 +181903,27706,eerie,1172217739 +181903,27706,irreverent,1172217757 +181903,27706,macabre,1172217766 +181903,27706,quirky,1172217732 +181903,27706,stylized,1172217753 +181903,27741,forceful,1172217276 +181903,27741,intimate,1172217269 +181903,27741,tense,1172217272 +181903,27773,flashy,1171429676 +181903,27773,hallucinatory,1171429684 +181903,27773,macabre,1171429672 +181903,27773,paranoid,1171429664 +181903,27773,stylized,1171429688 +181903,27773,tense,1171429660 +181903,27803,earnest,1173213455 +181903,27803,FIGHTING THE SYSTEM,1173213483 +181903,27803,LIVING WITH DISABILITY,1173213508 +181903,27803,meditative,1173213465 +181903,27803,poignant,1173213469 +181903,27803,stirring,1173213452 +181903,27803,SUICIDE,1173213499 +181903,27834,austere,1173213959 +181903,27834,bleak,1173213977 +181903,27834,downbeat,1173213970 +181903,27834,drab,1173213985 +181903,27834,FATHERS AND SONS,1173214018 +181903,27834,gloomy,1173213993 +181903,27834,harsh,1173213966 +181903,27834,INNOCENCE LOST,1173214025 +181903,27834,JOURNEY OF SELF-DISCOVERY,1173214009 +181903,27834,poignant,1173213997 +181903,27834,tense,1173213981 +181903,30803,cerebral,1172492324 +181903,30803,deliberate,1172492334 +181903,30803,quirky,1172492337 +181903,30803,STAR-CROSSED LOVERS,1172588498 +181903,30803,stylized,1172492321 +181903,30803,understated,1172492327 +181903,30803,UNLIKELY FRIENDSHIPS,1172588508 +181903,30803,WOMEN IN JEOPARDY,1172588494 +181903,30810,deadpan,1171438185 +181903,30810,quirky,1171438180 +181903,30810,stylized,1171438202 +181903,30810,whimsical,1171438176 +181903,30810,wry,1171438194 +181903,30812,compassionate,1171149348 +181903,30812,elegant,1171149368 +181903,30812,lavish,1171149373 +181903,30812,nostalgic,1171149359 +181903,30812,sweeping,1171149353 +181903,31364,disturbing,1172049985 +181903,31364,gritty,1172049981 +181903,31364,matter-of-fact,1172049964 +181903,31364,melancholy,1172049968 +181903,31364,understated,1172049960 +181903,31364,wry,1172049977 +181903,31410,austere,1172045376 +181903,31410,bleak,1172045380 +181903,31410,disturbing,1172045362 +181903,31410,downbeat,1172045357 +181903,31410,wintry,1172045366 +181903,31437,deliberate,1173214140 +181903,31437,INNOCENCE LOST,1173214162 +181903,31437,KIDS IN TROUBLE,1173214177 +181903,31437,lyrical,1173214152 +181903,31437,meditative,1173214148 +181903,31437,MOTHERS AND SONS,1173214168 +181903,31437,understated,1173214136 +181903,31522,bittersweet,1171674513 +181903,31522,deliberate,1171674506 +181903,31522,intimate,1171674492 +181903,31522,LADDER TO THE TOP,1172880395 +181903,31522,LOVE TRIANGLES,1172880403 +181903,31522,LOVERS REUNITED,1172880382 +181903,31522,melancholy,1171674522 +181903,31522,poignant,1171674495 +181903,31522,ROMANTIC BETRAYAL,1172880375 +181903,31522,stylized,1171674499 +181903,31522,wistful,1171674526 +181903,31584,compassionate,1172503761 +181903,31584,CRIMES AGAINST HUMANITY,1172503791 +181903,31584,elegiac,1172503776 +181903,31584,poignant,1172503765 +181903,31584,reflective,1172503768 +181903,31584,UNLIKELY FRIENDSHIPS,1172503828 +181903,31584,WOMEN DURING WARTIME,1172503803 +181903,31588,bleak,1171170923 +181903,31588,disturbing,1171170929 +181903,31588,downbeat,1171170934 +181903,31590,bleak,1171171167 +181903,31590,cynical,1171171176 +181903,31590,downbeat,1171171152 +181903,31590,moody,1171171156 +181903,31590,tense,1171171146 +181903,31590,visceral,1171171162 +181903,31658,dreamlike,1172389211 +181903,31658,fanciful,1172389215 +181903,31658,humorous,1172389229 +181903,31658,JOURNEY OF SELF-DISCOVERY,1172962014 +181903,31658,stylized,1172389233 +181903,31658,whimsical,1172389219 +181903,31658,WITCHCRAFT,1172962022 +181903,31658,WIZARDS AND MAGICIANS,1172962009 +181903,31660,atmospheric,1172358703 +181903,31660,fanciful,1172358700 +181903,31660,lyrical,1172358693 +181903,31660,passionate,1172358689 +181903,31660,sweeping,1172358684 +181903,31923,bright,1171746485 +181903,31923,easygoing,1171746455 +181903,31923,humorous,1171746462 +181903,31923,light,1171746458 +181903,31923,madcap,1171746477 +181903,31923,slick,1171746473 +181903,31923,witty,1171746470 +181903,32179,atmospheric,1171323685 +181903,32179,claustrophobic,1171323711 +181903,32179,FEMMES FATALES,1172501281 +181903,32179,Jeanne Moreau,1258738358 +181903,32179,meditative,1171323678 +181903,32179,menacing,1171323695 +181903,32179,nocturnal,1171323724 +181903,32179,ominous,1171323718 +181903,32179,PERFECT CRIME,1172501258 +181903,32179,TRAPPED OR CONFINED,1172501267 +181903,32179,TREACHEROUS SPOUSES,1172501294 +181903,32179,urbane,1171323700 +181903,32387,rousing,1172493100 +181903,32387,sweeping,1172493103 +181903,32387,tense,1172493107 +181903,32525,lavish,1172036124 +181903,32525,literate,1172036129 +181903,32525,melancholy,1172036134 +181903,32525,reflective,1172036147 +181903,32525,stylized,1172036151 +181903,32587,atmospheric,1171439557 +181903,32587,bleak,1171439563 +181903,32587,gruesome,1171439594 +181903,32587,harsh,1171439576 +181903,32587,moody,1171439560 +181903,32587,nocturnal,1171439573 +181903,32587,stylized,1171439554 +181903,32587,tense,1171439589 +181903,32587,visceral,1171439581 +181903,33166,downbeat,1171677057 +181903,33564,BREAKUPS AND DIVORCES,1173373870 +181903,33564,CRUMBLING MARRIAGES,1173373876 +181903,33564,easygoing,1173373845 +181903,33564,humorous,1173373841 +181903,33564,light,1173373850 +181903,33564,merry,1173373860 +181903,33794,atmospheric,1172055204 +181903,33794,gritty,1172055218 +181903,33794,melancholy,1172055208 +181903,33794,moody,1172055200 +181903,33794,nocturnal,1172055221 +181903,33794,stylized,1172055225 +181903,33880,bittersweet,1172884938 +181903,33880,deadpan,1172884934 +181903,33880,DOWN ON THEIR LUCK,1172885013 +181903,33880,FATHERS AND SONS,1172884990 +181903,33880,humorous,1172884969 +181903,33880,irreverent,1172884922 +181903,33880,LIFE IN ARTS,1172884986 +181903,33880,lyrical,1172884918 +181903,33880,quirky,1172884926 +181903,33880,SEXUAL AWAKENING,1172885004 +181903,33880,SUBURBAN DYSFUNCTION,1172884999 +181903,33896,creepy,1171696361 +181903,33896,disturbing,1171696357 +181903,33896,gruesome,1171696345 +181903,33896,macabre,1171696349 +181903,34155,angry,1173732969 +181903,34155,bleak,1173732978 +181903,34155,BREAKUPS AND DIVORCES,1173733017 +181903,34155,DEATH OF A SPOUSE,1173733055 +181903,34155,deliberate,1173733002 +181903,34155,FAMILIES IN CRISIS,1173733039 +181903,34155,FATHERS AND SONS,1173733047 +181903,34155,GOLDEN YEARS,1173733063 +181903,34155,reflective,1173732988 +181903,34155,understated,1173732974 +181903,34405,CANNIBALS,1172883732 +181903,34405,FUTURE DYSTOPIAS,1172883711 +181903,34405,irreverent,1172883692 +181903,34405,MISFITS AND OUTSIDERS,1172883727 +181903,34405,ominous,1172883672 +181903,34405,quirky,1172883666 +181903,34405,rousing,1172883687 +181903,34405,SPACE TRAVEL,1172883705 +181903,34405,SPACE WARS,1172883741 +181903,34405,tense,1172883682 +181903,34405,UNLIKELY HEROES,1172883745 +181903,34405,WANDERLUST,1172883754 +181903,34405,witty,1172883669 +181903,34437,bittersweet,1171623388 +181903,34437,downbeat,1171623409 +181903,34437,humorous,1171623424 +181903,34437,intimate,1171623413 +181903,34437,meditative,1171623397 +181903,34437,quirky,1171623421 +181903,34437,understated,1171623392 +181903,34528,austere,1172883872 +181903,34528,bittersweet,1172883859 +181903,34528,CLASS DIFFERENCES,1172883896 +181903,34528,CULTURE CLASH,1172883885 +181903,34528,ECCENTRIC FAMILIES,1172883881 +181903,34528,EXPECTING A BABY,1172883908 +181903,34528,humorous,1172883869 +181903,34528,quirky,1172883852 +181903,34528,reflective,1172883855 +181903,34528,SIBLING RELATIONSHIPS,1172884132 +181903,34528,understated,1172883848 +181903,36517,angry,1171263725 +181903,36517,cerebral,1171263627 +181903,36517,confrontational,1171263716 +181903,36517,gritty,1171263675 +181903,36517,sweeping,1171263733 +181903,36517,tense,1171263728 +181903,37386,atmospheric,1171764754 +181903,37386,ominous,1171764758 +181903,37386,stylized,1171764743 +181903,37386,visceral,1171764747 +181903,39183,bittersweet,1171345611 +181903,39183,earthy,1171345630 +181903,39183,elegiac,1171345627 +181903,39183,intimate,1171345601 +181903,39183,melancholy,1171345619 +181903,39183,poignant,1171345604 +181903,39292,cerebral,1171664113 +181903,39292,confrontational,1171664161 +181903,39292,earnest,1171664174 +181903,39292,matter-of-fact,1171664137 +181903,39292,talky,1171664147 +181903,39292,understated,1171664126 +181903,40583,cerebral,1171712575 +181903,40583,confrontational,1171712590 +181903,40583,forceful,1171712603 +181903,40583,literate,1171712583 +181903,40583,paranoid,1171712599 +181903,40583,tense,1171712608 +181903,40819,bittersweet,1172045588 +181903,40819,earthy,1172045584 +181903,40819,nostalgic,1172045581 +181903,40819,warm,1172045591 +181903,40870,ECCENTRIC FAMILIES,1172906355 +181903,40870,humorous,1172897845 +181903,40870,MISFITS AND OUTSIDERS,1172897872 +181903,40870,QUESTIONING SEXUALITY,1172897883 +181903,40870,quirky,1172897850 +181903,41014,atmospheric,1171432570 +181903,41014,creepy,1171432558 +181903,41014,eerie,1171432555 +181903,41014,lurid,1171432561 +181903,41014,stylized,1171432577 +181903,41014,tense,1171432580 +181903,41863,earthy,1173189294 +181903,41863,gritty,1173189291 +181903,42418,atmospheric,1171761901 +181903,42418,dreamlike,1171761890 +181903,42418,gentle,1171761885 +181903,42418,lyrical,1171761873 +181903,42418,meditative,1171761877 +181903,42632,quirky,1171526968 +181903,42632,stylized,1171526963 +181903,42723,disturbing,1171767141 +181903,42723,gruesome,1171767136 +181903,42900,CRUMBLING MARRIAGES,1173191757 +181903,42900,cynical,1173191747 +181903,42900,deadpan,1173191744 +181903,42900,HOSTAGE SITUATIONS,1173191764 +181903,42900,humorous,1173191730 +181903,42900,irreverent,1173191727 +181903,42900,macabre,1173191723 +181903,42900,NOTHING GOES RIGHT,1173191772 +181903,42900,wry,1173191740 +181903,43419,Beautiful Woman,1328984750 +181903,43419,Kick-Butt Women,1328984761 +181903,43928,atmospheric,1171761581 +181903,43928,flashy,1171761577 +181903,43928,stylized,1171761574 +181903,43928,talky,1171761584 +181903,44191,confrontational,1171695872 +181903,44191,forceful,1171695890 +181903,44191,grim,1171695894 +181903,44191,rousing,1171695866 +181903,44191,slick,1171695886 +181903,44191,tense,1171695875 +181903,44657,bleak,1171181623 +181903,44657,DEATH OF A PARENT,1173293124 +181903,44657,deliberate,1171181640 +181903,44657,downbeat,1171181628 +181903,44657,KIDS IN TROUBLE,1173293111 +181903,44657,SMALL-TOWN LIFE,1173293116 +181903,44657,understated,1171181634 +181903,44709,gentle,1173216060 +181903,44709,heartwarming,1173216072 +181903,44709,INNER CITY BLUES,1173216100 +181903,44709,MOTHERS AND DAUGHTERS,1173216091 +181903,44709,sentimental,1173216053 +181903,44709,SINGLE PARENTS,1173216113 +181903,44709,stirring,1173216064 +181903,44709,TEACHERS AND STUDENTS,1173216083 +181903,44761,deadpan,1171438288 +181903,44761,slick,1171438284 +181903,44761,stylized,1171438280 +181903,44929,downbeat,1171695824 +181903,44929,gritty,1171695813 +181903,44929,understated,1171695818 +181903,44974,claustrophobic,1171696274 +181903,44974,disturbing,1171696295 +181903,44974,lurid,1171696287 +181903,44974,menacing,1171696291 +181903,44974,tense,1171696278 +181903,45635,austere,1172350210 +181903,45635,chilly,1172350223 +181903,45635,irreverent,1172350213 +181903,45635,nostalgic,1172350233 +181903,45635,Nudity (Full Frontal - Notable),1328984455 +181903,45635,sexual,1172350229 +181903,45635,stylized,1172350206 +181903,45666,bright,1172217634 +181903,45666,ironic,1172217627 +181903,45666,madcap,1172217637 +181903,45666,silly,1172217630 +181903,45730,fanciful,1171963515 +181903,45730,lyrical,1171963519 +181903,45730,menacing,1171963511 +181903,45730,ominous,1171963506 +181903,45880,atmospheric,1171451995 +181903,45880,decadent,1171452004 +181903,45880,lavish,1171452000 +181903,45880,lyrical,1171452017 +181903,45880,stylized,1171452012 +181903,46578,affectionate,1171172600 +181903,46578,deadpan,1171172587 +181903,46578,ECCENTRIC FAMILIES,1172503295 +181903,46578,heartwarming,1171172595 +181903,46578,irreverent,1171172608 +181903,46578,PARENTHOOD,1172503302 +181903,46578,quirky,1171172578 +181903,46578,SUBURBAN DYSFUNCTION,1172503309 +181903,47099,bittersweet,1171697996 +181903,47099,earnest,1171697992 +181903,47099,poignant,1171698016 +181903,47099,tearjerking,1171698011 +181903,47099,understated,1171698002 +181903,47306,AMERICANS ABROAD,1172501913 +181903,47306,atmospheric,1171149760 +181903,47306,earnest,1171149766 +181903,47306,heartwarming,1171149790 +181903,47306,LIFE ON THE HOMEFRONT,1172501898 +181903,47306,lyrical,1171149776 +181903,47306,nostalgic,1171149783 +181903,47306,stylized,1171149795 +181903,47306,whimsical,1171149771 +181903,47629,earnest,1172050199 +181903,47629,elegiac,1172050182 +181903,47629,matter-of-fact,1172050203 +181903,47629,poignant,1172050190 +181903,47629,understated,1172050186 +181903,48043,atmospheric,1171622744 +181903,48043,DEATH OF A SPOUSE,1172960943 +181903,48043,dreamlike,1171622750 +181903,48043,DYING YOUNG,1172960952 +181903,48043,eerie,1171622775 +181903,48043,hallucinatory,1171622768 +181903,48043,lyrical,1171622757 +181903,48043,OBSESSIVE QUESTS,1172960960 +181903,48043,REINCARNATION,1172960970 +181903,48043,sweeping,1171622772 +181903,48082,bittersweet,1171526872 +181903,48082,fanciful,1171526853 +181903,48082,quirky,1171526860 +181903,48082,stylized,1171526838 +181903,48304,atmospheric,1171345699 +181903,48304,gruesome,1171345690 +181903,48304,menacing,1171345686 +181903,48304,tense,1171345704 +181903,48394,atmospheric,1171345760 +181903,48394,forceful,1171345772 +181903,48394,goth,1171345775 +181903,48394,stylized,1171345765 +181903,48516,atmospheric,1171149200 +181903,48516,forceful,1171149193 +181903,48516,gritty,1171149173 +181903,48516,harsh,1171149178 +181903,48516,tense,1171149168 +181903,48516,visceral,1171149183 +181903,48696,austere,1172049889 +181903,48696,deliberate,1172049872 +181903,48696,EXTRAMARITAL AFFAIRS,1173103006 +181903,48696,irreverent,1172049893 +181903,48696,PARENTHOOD,1173102997 +181903,48696,reflective,1172049876 +181903,48696,satirical,1172049879 +181903,48696,SUBURBAN DYSFUNCTION,1173103018 +181903,48696,talky,1172049897 +181903,48744,biting,1174429271 +181903,48744,INTERSECTING LIVES,1174429298 +181903,48744,irreverent,1174429275 +181903,48744,LOOKING FOR LOVE,1174429307 +181903,48744,raunchy,1174429278 +181903,48744,sexual,1174429282 +181903,48744,SEXUAL AWAKENING,1174429313 +181903,48774,atmospheric,1172503033 +181903,48774,austere,1172503037 +181903,48774,bleak,1172503056 +181903,48774,FUTURE DYSTOPIAS,1172503082 +181903,48774,gloomy,1172503049 +181903,48774,grim,1172503059 +181903,48774,gritty,1172503046 +181903,48774,HEROIC MISSION,1172503111 +181903,48774,MIRACULOUS EVENTS,1172503103 +181903,48774,somber,1172503067 +181903,48774,TOTALITARIAN STATES,1172503091 +181903,48780,atmospheric,1171695994 +181903,48780,eerie,1171695980 +181903,48780,elegant,1171696000 +181903,48780,enigmatic,1171695976 +181903,48780,lavish,1171696004 +181903,48780,tense,1171695983 +181903,49528,Hot Bikini Action,1284331183 +181903,49528,Nudity (Rear),1284331008 +181903,49530,confrontational,1171743024 +181903,49530,earnest,1171743006 +181903,49530,forceful,1171743011 +181903,49530,sweeping,1171743019 +181903,49651,earnest,1171701328 +181903,49651,reflective,1171701340 +181903,49651,rousing,1171701365 +181903,49651,sentimental,1171701318 +181903,50068,claustrophobic,1171684237 +181903,50068,earnest,1171684241 +181903,50068,intimate,1171684228 +181903,50068,meditative,1171684221 +181903,50068,understated,1171684225 +181903,50794,flashy,1171150788 +181903,50794,forceful,1171150793 +181903,50794,frantic,1171150774 +181903,50794,gruesome,1171150798 +181903,50794,humorous,1171150810 +181903,50794,menacing,1171150784 +181903,50794,paranoid,1171150816 +181903,50794,slick,1171150778 +181903,50794,tense,1171150803 +181903,50970,Raquel Welch,1265454030 +181903,51080,matter-of-fact,1173277011 +181903,51080,ominous,1173277016 +181903,51080,paranoid,1173277025 +181903,51080,POLITICAL CORRUPTION,1173277071 +181903,51080,tense,1173277032 +181903,51080,TRAITOROUS SPIES/DOUBLE AGENTS,1173277052 +181903,51091,atmospheric,1173065403 +181903,51091,HAUNTED BY THE PAST,1173065427 +181903,51091,lurid,1173065389 +181903,51091,moody,1173065398 +181903,51091,REDEMPTION,1173065412 +181903,51091,sexual,1173065386 +181903,51091,SOUTHERN GOTHIC,1173065420 +181903,51662,atmospheric,1173187807 +181903,51662,HEROIC MISSION,1173187837 +181903,51662,lavish,1173187803 +181903,51662,rousing,1173187811 +181903,51662,stylized,1173187825 +181903,51662,sweeping,1173187821 +181903,64620,Ron Howard,1241203744 +181903,67267,Amy Adams,1265859848 +181903,67812,Nudity (Full Frontal - Notable),1284331335 +181903,67812,Nudity (Rear),1284331335 +181903,67812,Yuliya Mayarchuk,1284330355 +181903,69134,beautiful scenery,1267184161 +181903,70994,Malcolm McDowell,1263648057 +181903,72386,Penélope Cruz,1265860050 +181903,74538,Jeanne Moreau,1268689495 +181903,77201,Boring,1328990506 +181903,79207,Melanie Griffith,1279917111 +181903,79207,Nudity (Topless - Notable),1279917115 +181903,81932,Amy Adams,1293618448 +181903,99054,Nudity (Full Frontal - Notable),1355947500 +181939,105769,Ari Folman,1437433231 +181939,105769,philosophical,1437433244 +181965,2067,based on a book,1231936279 +181965,2067,classic,1231936283 +181965,2067,history,1231936286 +181965,2067,love story,1231936289 +181965,2067,Oscar (Best Cinematography),1231936281 +181965,7458,Epic,1229792310 +181965,7458,War,1229792299 +181979,593,seen more than once,1150199024 +181979,1214,seen more than once,1150199127 +181979,1333,seen more than once,1150199161 +181979,1380,bought the DVD,1150199245 +181979,1968,seen more than once,1150199166 +181979,2599,seen more than once,1150199215 +181979,2797,seen more than once,1150199153 +181979,2858,seen more than once,1150199032 +181979,2959,seen more than once,1150198990 +181979,2997,seen more than once,1150199046 +181979,3911,seen more than once,1150198953 +181979,4308,bought the DVD,1150199016 +181979,4993,seen more than once,1150199059 +181979,5952,seen more than once,1150199074 +181979,5991,bought the DVD,1150198969 +181979,6874,seen more than once,1150199291 +181979,7153,seen more than once,1150199080 +181979,7438,seen more than once,1150198998 +181979,8961,seen more than once,1150199051 +181979,39183,bought the DVD.,1167667660 +181992,6986,sword and sandal,1208551906 +182004,48043,emotional,1332415977 +182004,63072,Book Faithful,1334888032 +182004,92719,John C. Reilly,1328392871 +182004,92719,Will Ferrell,1328392871 +182004,92719,Will Forte,1328392871 +182004,92719,Zach Galifianakis,1328392871 +182007,589,artificial intelligence,1379493932 +182007,589,sci-fi,1379493938 +182007,589,time travel,1379493930 +182007,1240,Action,1379493978 +182007,1240,artificial intelligence,1379493981 +182007,1240,Nudity (Topless),1379493988 +182007,1240,time travel,1379493985 +182007,2571,martial arts,1379493768 +182007,2571,sci-fi,1379493776 +182007,2571,virtual reality,1379493761 +182007,2692,alternate endings,1379493706 +182007,6365,alternate reality,1379493792 +182007,6365,virtual reality,1379493809 +182007,6537,artificial intelligence,1379493909 +182007,6537,time travel,1379493902 +182007,8533,great ending,1379539335 +182007,8533,Romance,1379539329 +182007,8533,sentimental,1379539326 +182007,55908,religion,1379666756 +182007,68791,artificial intelligence,1379493869 +182007,68791,post-apocalyptic,1379493872 +182007,68791,sci-fi,1379493875 +182007,79132,alternate reality,1379357272 +182007,82461,artificial intelligence,1379493842 +182007,82461,futuristic,1379493834 +182007,84152,smart,1383442278 +182007,96610,sci-fi,1379493555 +182007,96610,time travel,1379493553 +182010,260,action,1440501916 +182010,260,adventure,1440501904 +182010,260,epic adventure,1440501907 +182010,260,sci-fi,1440501897 +182010,260,Science Fiction,1440501911 +182010,260,space action,1440501919 +182010,260,space adventure,1440501900 +182040,7767,great ratings from new yorker critic- Denby,1137292523 +182040,31694,good for sema,1137292526 +182040,35957,wes craven thriller,1137292589 +182074,260,oldie but goodie,1442729807 +182074,260,Star Wars,1442729817 +182074,260,starship riders,1442729856 +182074,260,up,1442729829 +182074,106508,creature,1442732480 +182074,106508,horror,1442732460 +182077,1246,inspirational,1416328255 +182077,1246,philosophy,1416328252 +182077,84152,smart,1414497255 +182077,117176,physics,1424043048 +182084,126548,funny,1447532592 +182084,126548,high school,1447532575 +182091,318,prison break,1446557220 +182091,318,prison escape,1446557268 +182091,134853,brain,1446557638 +182097,260,Comicon,1438571090 +182097,260,Fandom,1438571078 +182097,296,bruce willis,1438573288 +182100,230,book,1188088977 +182100,230,stephen king,1188088977 +182100,247,crazy,1188088992 +182100,671,send-up,1188089173 +182100,719,lame,1188089003 +182100,719,stupid,1188089003 +182100,724,girl power,1188088959 +182100,724,supernatural,1188088959 +182100,1047,popcorn,1188087818 +182100,1339,book,1188087789 +182100,1339,vampire,1188087789 +182100,1438,natural disaster,1188089204 +182100,1587,blood,1188089236 +182100,1587,fighting,1188089236 +182100,1587,swords,1188089236 +182100,2080,animals,1188087801 +182100,3826,monsters,1188089146 +182100,3826,technology,1188089146 +182100,3916,sports,1188089180 +182100,4262,guns,1188089102 +182100,4262,mobster,1188089102 +182100,4848,vague,1188089084 +182100,5377,book,1188089028 +182100,5377,british,1188089028 +182100,6934,philosophy,1188089050 +182100,6934,robots,1188089050 +182100,8622,politics,1188089129 +182120,45517,Pixar,1151693023 +182124,3744,Shaft,1347977174 +182134,208,post-apocalyptic,1424233252 +182134,724,wicca,1424233584 +182134,724,witch,1424233581 +182134,724,witchcraft,1424233585 +182134,1017,deserted island,1424235904 +182134,1017,favorite,1424235878 +182134,1017,tree house,1424235895 +182134,2174,alternate reality,1424234206 +182134,2174,black comedy,1424234210 +182134,2174,comedy,1424234202 +182134,2174,fantasy,1424234195 +182134,2174,magic,1424234197 +182134,2174,supernatural,1424234185 +182134,2174,surreal,1424234219 +182134,2297,afterlife,1424234130 +182134,2297,alternate reality,1424234127 +182134,2297,favorite,1424234109 +182134,2297,imaginative,1424234116 +182134,2297,philosophy,1424234123 +182134,2297,Robin Williams,1424234111 +182134,2297,surreal,1424234125 +182134,2297,visually appealing,1424234136 +182134,3489,fairy tale,1424233481 +182134,3489,favorite,1424233493 +182134,3489,magic,1424233486 +182134,3489,Robin Williams,1424233472 +182134,3489,uplifting,1424233477 +182134,3594,dance,1424233988 +182134,3594,favorite,1424233984 +182134,3594,love triangle,1424234002 +182134,3594,Romance,1424233993 +182134,5618,favorite,1424232808 +182134,5618,magic,1424232849 +182134,26662,anime,1424232985 +182134,26662,coming of age,1424232993 +182134,26662,fantasy,1424233097 +182134,26662,favorite,1424232962 +182134,26662,feel-good,1424232997 +182134,26662,friendship,1424233069 +182134,26662,love story,1424233070 +182134,26662,magic,1424232953 +182134,26662,romance,1424233619 +182134,26662,strong female lead,1424232988 +182134,26662,talking animals,1424233082 +182134,26662,wicca,1424232960 +182134,26662,witch,1424232969 +182134,26662,witchcraft,1424233601 +182134,27251,fantasy,1424233527 +182134,27251,magic,1424233543 +182134,27251,romance,1424233536 +182134,31658,anime,1424233421 +182134,31658,fantasy,1424233386 +182134,31658,fantasy world,1424233644 +182134,31658,favorite,1424233400 +182134,31658,Hayao Miyazaki,1424233418 +182134,31658,love story,1424233640 +182134,31658,magic,1424233398 +182134,31658,romance,1424233412 +182134,31658,wizards,1424233403 +182134,52435,nostalgia,1424233705 +182134,54259,adventure,1424233162 +182134,54259,fairy tale romance,1424233175 +182134,54259,fantasy,1424233159 +182134,54259,favorite,1424233154 +182134,54259,magic,1424233171 +182134,54259,Neil Gaiman,1424233169 +182134,54259,romance,1424233185 +182134,54259,whimsical,1424233166 +182134,112087,fantasy,1424233859 +182134,112087,favorites,1424232507 +182134,112087,love story,1424233859 +182134,112087,science fiction,1424233859 +182135,5938,twists,1278635875 +182135,58376,controversial,1278728030 +182135,58376,eye-opening,1278728040 +182135,71379,garbage,1278646387 +182146,296,dark comedy,1452794890 +182146,296,Quentin Tarantino,1452794888 +182146,296,violence,1452794893 +182146,3578,action,1452794867 +182146,3578,Epic,1452473883 +182146,3578,history,1452794857 +182146,3578,Ridley Scott,1452794855 +182146,3578,Russell Crowe,1452794868 +182146,3578,stylized,1452794849 +182146,49272,Daniel Craig,1452794902 +182146,49272,espionage,1452794900 +182146,58559,Batman,1452430675 +182146,106782,Anti-Hero,1452794876 +182146,106782,Funny,1452430652 +182146,106782,Leonardo DiCaprio,1452430648 +182146,106782,Martin Scorsese,1452430655 +182146,106782,visually appealing,1452794881 +182146,106782,Wall Street,1452794878 +182153,1198,collectible,1151553426 +182153,1201,collectible,1151553755 +182153,1272,collectible,1151553584 +182153,1835,Meg Ryan,1151552846 +182153,2944,collectible,1151553408 +182153,3681,eastwood,1151551682 +182153,3996,Zang,1151551774 +182153,3996,Zi yi,1151551775 +182153,6219,torro,1151552981 +182153,6808,eastwood,1151562882 +182158,69436,Paul Rudd,1312415903 +182161,260,science fantasy,1437848755 +182161,260,space epic,1437848748 +182161,40583,complicated,1438200951 +182161,40583,Political,1438200945 +182161,49772,china,1438200635 +182161,50872,animation,1437935690 +182161,50872,disney,1437935690 +182161,50872,talking animals,1437935690 +182171,47099,reality,1443943544 +182171,79091,funny minions,1443942673 +182171,81834,Magic land,1443942627 +182171,116219,fantasy,1443943705 +182171,134374,fairies,1443943579 +182181,136020,bond rome craig,1446477316 +182193,6773,animation,1298628360 +182193,33880,quirky,1298628444 +182193,33880,unique,1298628435 +182194,44195,satire,1434096299 +182219,60069,inspirational,1431464458 +182219,60069,pixar,1431464482 +182219,60069,space,1431464476 +182228,1270,time travel,1317783576 +182228,2119,sentient machine,1317782971 +182228,2517,sentient machine,1317782918 +182228,4090,road movie,1317783623 +182228,4090,sentient machine,1317783632 +182228,4262,eighties,1317783180 +182228,4262,gangster,1317783194 +182228,4262,Miami,1317783207 +182228,6659,dark comedy,1317783391 +182228,6659,monster,1317783477 +182228,8874,dark comedy,1317783055 +182228,8874,zombies,1317783045 +182228,71535,zombies,1317783095 +182229,733,Michael Bay,1435060579 +182229,733,Sean Connery,1435060585 +182229,1291,indiana jones,1435060611 +182229,1291,Sean Connery,1435060613 +182229,2105,Jeff Bridges,1435061119 +182229,37729,Depp & Burton,1435060721 +182229,37729,Johnny Depp,1435060714 +182229,37729,Tim Burton,1435060711 +182229,56757,Depp & Burton,1435060931 +182229,56757,Johnny Depp,1435060935 +182229,56757,Tim Burton,1435060933 +182229,59315,Jeff Bridges,1435061106 +182229,59315,Marvel,1435061103 +182229,59315,Robert Downey Jr.,1435061102 +182229,74789,Depp & Burton,1435060911 +182229,74789,Johnny Depp,1435060904 +182229,74789,Tim Burton,1435060902 +182229,79091,minions,1435060760 +182229,82461,daft punk,1435061066 +182229,82461,Jeff Bridges,1435061069 +182229,95510,Andrew Garfield,1435060960 +182229,95510,Marvel,1435060495 +182229,95510,Spider-Man,1435060962 +182229,102125,funny,1435060985 +182229,102125,Marvel,1435060978 +182229,102125,Robert Downey Jr.,1435060975 +182233,106920,amazon echo,1436627107 +182233,106920,siri,1436627107 +182233,106920,voice command,1436627107 +182241,1203,great acting,1367794891 +182241,1234,great acting,1367794891 +182241,1442,mentor,1367794498 +182241,4387,action,1367794804 +182241,4776,great acting,1367794891 +182241,5313,action,1367794804 +182241,5682,dramatic,1367794784 +182241,5942,comedy,1367794523 +182241,7117,horror,1367795004 +182241,7297,loneliness,1367794654 +182241,7938,loneliness,1367794654 +182241,8531,comedy,1367794523 +182241,30707,great acting,1367794891 +182241,33158,action,1367794805 +182241,37736,story,1367795103 +182241,40962,family,1367795019 +182241,44199,great ending,1367795055 +182241,44665,great ending,1367795055 +182241,45003,horror,1367795004 +182241,45730,storytelling,1367794550 +182241,47610,great ending,1367795055 +182241,48082,cerebral,1367795120 +182241,55276,oscar (best directing),1367794672 +182241,64116,original,1367794442 +182241,64993,loneliness,1367794655 +182241,66371,mentor,1367794498 +182241,79897,story,1367795103 +182241,90647,story,1367795103 +182241,90746,storytelling,1367794550 +182241,94266,relationships,1367794831 +182241,95875,action,1367794804 +182241,98154,oscar (best directing),1367794672 +182241,98809,storytelling,1367794551 +182241,98961,dramatic,1367794784 +182279,260,has not aged well,1437732934 +182279,260,quite silly,1437732939 +182279,89753,homoerotic,1437733429 +182279,101650,sublime,1437733327 +182279,134368,feminist,1437733387 +182280,66171,fantasy,1350525196 +182280,66171,heroes,1350525149 +182280,66171,psychic powers,1350525143 +182280,66171,to be continued,1350525134 +182280,66171,twist ending,1350525172 +182280,97973,twist ending,1352037018 +182312,260,darth vader,1440825454 +182312,260,Science Fiction,1440825412 +182312,260,space adventure,1440825425 +182312,62999,animation,1440828683 +182312,62999,talking animals,1440828687 +182312,69644,Animation,1440828656 +182312,69644,emotion,1440828640 +182335,296,action,1426867761 +182335,296,dark humor,1426867761 +182335,296,strange,1426867761 +182336,27904,Keanu Reeves,1171818202 +182336,27904,surrealism,1171818055 +182336,46972,good children movie,1171818733 +182336,48394,Great Fantasy,1171818490 +182336,48560,weird,1171818166 +182336,48774,message of hope,1171818519 +182336,48783,Another Saving Private Ryan,1171818123 +182336,49286,Not so cheesy,1171818694 +182336,49530,More mature Leo Decaprio,1171818448 +182336,49649,Nice adaptation of the book,1171818768 +182336,49822,old school spy thriller,1171818562 +182336,50068,War in the eye of enemy,1171818386 +182336,50794,Violently silly,1171818633 +182336,52321,two men war,1200875344 +182336,52356,Last Symphony,1200875158 +182336,55442,animation,1200874946 +182336,55442,revolution,1200874946 +182336,55820,Need to be seen more than once,1200875500 +182336,55908,Excellent use of dialogue,1200875601 +182336,55908,Underrated,1200875601 +182336,55908,what if...,1200875601 +182336,56174,Will Smith,1200875656 +182336,56587,friendship,1200875006 +182336,56587,meaning of life,1200875006 +182336,56788,entertaining,1200875227 +182336,57368,Handycam,1200874833 +182342,260,science fantasy,1439844338 +182342,260,space action,1439844350 +182353,26662,Miyazaki,1365627474 +182362,31658,dreamlike,1452411745 +182362,97923,great acting,1452411854 +182362,97923,Nudity (Full Frontal),1452411848 +182393,1307,Good Romantic Comedies,1435775752 +182393,74480,comedy,1428149753 +182393,74480,long distance,1428149753 +182393,74480,romance,1428149753 +182393,126548,john hughes,1430571354 +182393,126548,romantic comedy,1430571354 +182393,126548,teen movie,1430571354 +182395,260,science fantasy,1438732018 +182492,27773,twist ending,1315517136 +182492,63072,post-apocalyptic,1314604873 +182493,59315,sci-fi,1442149459 +182493,59315,superhero,1442149466 +182493,68157,action,1442149514 +182493,68157,Brad Pitt,1442149488 +182493,69122,comedy,1442149408 +182493,79132,Leonardo DiCaprio,1442149602 +182493,79132,multiple interpretations,1442149610 +182493,79132,virtual reality,1442149579 +182493,102903,illusions,1442149094 +182493,102903,suspense,1442149110 +182502,1176,beautiful colours,1432475842 +182502,1176,doppelganger,1432475912 +182502,1176,Irene Jacob,1432475876 +182502,1176,magical,1432475906 +182502,1176,music,1432475852 +182502,3147,cinematography,1432477003 +182502,3147,compassionate,1432477008 +182502,3147,death penalty,1432477020 +182502,3147,drama,1432477041 +182502,3147,emotional,1432477006 +182502,3147,great acting,1432477010 +182502,3147,heartwarming,1432477034 +182502,3147,imdb top 250,1432477038 +182502,3147,Sam Rockwell,1432477027 +182502,4973,atmospheric,1432475630 +182502,4973,Audrey Tautou,1432475648 +182502,4973,beautifully filmed,1432475675 +182502,4973,comedy,1432475655 +182502,4973,fairy tale,1432475640 +182502,4973,imagination,1432476421 +182502,4973,inspirational,1432476410 +182502,4973,Jean-Pierre Jeunet,1432475659 +182502,4973,music,1432475653 +182502,4973,notable soundtrack,1432475663 +182502,4973,Paris,1432476407 +182502,4973,surreal,1432475673 +182502,4973,visually appealing,1432475672 +182502,4973,whimsical,1432476403 +182502,70088,artistic,1432476845 +182502,70088,birds,1432476849 +182502,70088,philosophical,1432476856 +182502,70088,spiritual awakening,1432476910 +182502,70088,way of life,1432476846 +182502,94815,mesmerizing,1432475001 +182502,94815,simply charming,1432475001 +182502,94815,surrealism,1432476199 +182502,94815,unforgetable,1432475001 +182502,96430,fantasy,1432476450 +182502,96430,heartwarming,1432476447 +182506,1682,original plot,1296682422 +182506,1907,animation,1296872254 +182506,5219,action,1295750753 +182506,5219,adapted from:game,1295750758 +182506,5219,Business is the antagonist,1295750749 +182506,5219,Milla Jovovich,1295750803 +182506,5219,mmm... brains...,1295750787 +182506,5219,resident evil,1295750777 +182506,5219,virus,1295750780 +182506,5219,zombie,1295750779 +182506,66171,psychic powers,1312758945 +182506,68650,Jessica Biel,1301097149 +182506,79695,action,1295750666 +182506,79695,Bruce Willis,1295750678 +182506,79695,Jet Li,1295750673 +182506,79695,Mickey Rourke,1295750680 +182506,79695,Sylvester Stallone,1295750695 +182506,79695,violence,1295750651 +182506,79695,violent,1295750656 +182506,80363,action packed,1295750879 +182506,80363,bad plot,1295750844 +182506,80363,Milla Jovovich,1295750863 +182506,80363,virus,1295750867 +182506,80363,zombies,1295750864 +182506,82461,epic,1301269568 +182506,83374,Action,1302379773 +182506,84954,original plot,1314726759 +182506,85020,action,1302815635 +182506,85020,violence,1302815638 +182516,32,brad pitt,1428720991 +182516,32,end of the world,1428720980 +182516,32,future,1428720977 +182516,32,mindfuck,1428721011 +182516,32,Post apocalyptic,1428720998 +182516,32,post-apocalyptic,1428720975 +182516,32,R,1428721018 +182516,32,sci-fi,1428720989 +182516,32,time loop,1428721024 +182516,32,time travel,1428720982 +182516,367,Cameron Diaz,1428721679 +182516,367,cartoonish,1428721741 +182516,367,comedy,1428721671 +182516,367,jim carrey,1428721666 +182516,367,sex jokes,1428721680 +182516,913,noir thriller,1428720061 +182516,1625,complicated,1428720271 +182516,1625,David Fincher,1428720274 +182516,1625,Mystery,1428720248 +182516,1625,neo-noir,1428720260 +182516,1625,paranoia,1428720258 +182516,1625,psychological,1428720251 +182516,1625,twist ending,1428720264 +182516,1732,black comedy,1428720437 +182516,1732,comedy,1428720429 +182516,1732,dark comedy,1428720431 +182516,1732,marijuana,1428720439 +182516,1732,Nudity (Full Frontal),1428720444 +182516,2360,family reunion,1428718835 +182516,2360,pedophilia,1428718835 +182516,2360,shame,1428718835 +182516,2502,comedy,1428720336 +182516,2502,cult film,1428720371 +182516,2502,dark comedy,1428720342 +182516,2502,funny,1428720353 +182516,2502,hilarious,1428720350 +182516,2502,Jennifer Aniston,1428720345 +182516,2502,office,1428720369 +182516,2502,quotable,1428720362 +182516,2502,revenge,1428720348 +182516,2502,satire,1428720338 +182516,2502,technology,1428720365 +182516,2594,better than the american version,1428721061 +182516,2594,mindfuck,1428721067 +182516,2594,Nudity (Topless),1428721055 +182516,2594,psychology,1428721064 +182516,2594,surreal,1428721052 +182516,3275,action,1437189375 +182516,3275,Boston,1437189328 +182516,3275,crime,1437189336 +182516,3275,cult classic,1437189309 +182516,3275,dark humor,1437189313 +182516,3275,hitmen,1437189357 +182516,3275,Irish,1437189324 +182516,3275,Irish dark comedy,1437189346 +182516,3275,Mafia,1437189326 +182516,3275,Nudity (Topless),1437189322 +182516,3275,serial killer,1437189332 +182516,3275,stylized,1437189317 +182516,4011,Benicio Del Toro,1437189420 +182516,4011,brad pitt,1437189414 +182516,4011,british,1437189407 +182516,4011,comedy,1437189409 +182516,4011,Crime,1437189445 +182516,4011,dark comedy,1437189406 +182516,4011,dialogue,1437189439 +182516,4011,Great dialogue,1437189425 +182516,4011,Hilarious,1437189423 +182516,4011,narrated,1437189431 +182516,4011,organized crime,1437189398 +182516,4011,quirky,1437189400 +182516,4011,stylized,1437189443 +182516,4720,Alejandro Amenábar,1428721893 +182516,4720,ghosts,1428721883 +182516,4720,Horror,1428721898 +182516,4720,Nicole Kidman,1428721885 +182516,4720,supernatural,1428721879 +182516,5445,artificial intelligence,1437190592 +182516,5445,future,1437190594 +182516,5445,futuristic,1437190590 +182516,5445,sci-fi,1437190607 +182516,5445,surreal,1437190602 +182516,5445,time loop,1437190600 +182516,5445,Tom Cruise,1437190587 +182516,5445,violence,1437190606 +182516,5679,horror,1428721964 +182516,5679,paranormal,1428721967 +182516,5903,dystopia,1437188551 +182516,5903,totalitarianism,1437188543 +182516,8529,comedy,1437189760 +182516,8529,drama,1437189754 +182516,8529,humorous,1437189758 +182516,8529,tom hanks,1437189747 +182516,47610,Edward Norton,1428720205 +182516,47610,great ending,1428720232 +182516,47610,magic,1428720219 +182516,47610,sex scene,1428720201 +182516,50347,drugs,1437190156 +182516,50347,Flora Martínez,1437190141 +182516,50347,guns,1437190147 +182516,50347,Nudity (Full Frontal),1437190109 +182516,50347,paid killers,1437190135 +182516,50347,violence,1437190143 +182516,74458,Leonardo DiCaprio,1437188609 +182516,74458,Martin Scorsese,1437188627 +182516,74458,mindfuck,1437188614 +182516,74458,plot twist,1437188624 +182516,74458,Psychological Thriller,1437188620 +182516,74458,twist ending,1437188611 +182516,86882,dialogue,1437189557 +182516,86882,literate,1437189571 +182516,86882,magical realism,1437189551 +182516,86882,philosophical,1437189553 +182516,86882,time travel,1437189565 +182516,86882,Woody Allen,1437189543 +182516,93457,mystery,1437190018 +182516,93457,nudity (full frontal),1437190019 +182516,93457,revenge,1437190026 +182516,93457,thriller,1437190023 +182516,115713,Future,1440084770 +182516,115713,futuristic,1440084746 +182516,115713,nudity (full frontal),1440084765 +182516,115713,sci-fi,1440084752 +182516,115713,thought provoking,1440084756 +182516,115713,thriller,1440084759 +182516,116797,Alan Turing,1428722644 +182516,116797,Computers,1428722654 +182516,116797,informatics,1428722651 +182516,116797,mathematics,1428722646 +182516,116897,Damián Szifrón,1428720569 +182516,116897,dark humor,1428720567 +182516,116897,jealous bride,1437188780 +182516,116897,murder,1437188780 +182516,116897,short stories,1437188780 +182516,116897,violence,1428720589 +182557,34538,2016,1451839805 +182557,34538,adaptation,1451839093 +182557,122886,2016,1451839785 +182559,7081,less than 300 ratings,1206430322 +182559,7081,Mae West,1206430303 +182559,58191,torture,1206411320 +182578,117726,moving inspiring spiritual,1426070132 +182578,117726,thought provoking,1426070132 +182578,117726,very funny,1426070132 +182587,260,interesting,1438886827 +182587,260,sci-fi,1438886852 +182589,261,chick flick,1186627439 +182589,1088,80's classic,1186627436 +182589,1088,cheesy,1186627436 +182589,1088,Patrick Swayze,1186627436 +182589,3033,hilarious,1186627440 +182589,3033,John Candy,1186627440 +182589,3033,Mel Brooks,1186627441 +182589,3033,Rick Moranis,1186627440 +182589,4246,British,1186627434 +182589,4246,chick flick,1186627434 +182589,4246,Renee Zellweger,1186627434 +182589,7438,bloody,1186627438 +182589,7438,kung fu,1186627438 +182589,7438,Quentin Tarantino,1186627438 +182589,7438,Uma Thurman,1186627438 +182589,7438,violent,1186627438 +182589,8169,cute,1186627613 +182589,8169,Spielberg,1186627613 +182589,33585,Explicit,1186627902 +182589,33585,full frontal nudity,1186627922 +182589,35836,Hilarious,1186627847 +182597,3448,classic,1143425434 +182599,198,Nudity (Topless),1184276465 +182601,55908,dialogue driven,1433076327 +182601,55908,intellectual,1433076325 +182601,55908,intelligent,1433076342 +182601,55908,philosophical,1433076317 +182601,55908,religion,1433076340 +182601,55908,sci-fi,1433076344 +182601,55908,thought-provoking,1433076322 +182626,260,cosmos,1442218002 +182626,260,deep universe,1442217957 +182626,260,jedi,1442217974 +182626,260,let the force be with you,1442217968 +182626,260,Science Fiction,1442217905 +182626,260,Star Wars,1442218013 +182626,260,war,1442218005 +182637,480,John Williams,1452903594 +182637,480,Steven Spielberg,1452903590 +182637,527,auschwitz,1452876575 +182637,527,concentration camps,1452876580 +182637,527,drama,1452876527 +182637,527,mustard gas,1452876584 +182657,6890,adolescence,1450994900 +182657,6890,enigmatic,1450994893 +182657,6890,violence in america,1450994897 +182673,260,sci-fi,1444835670 +182673,260,starwars,1444835680 +182673,27530,korean,1444842840 +182673,104544,korean,1444843446 +182673,144208,bicycle,1444844403 +182673,144208,raam,1444844405 +182673,144208,race,1444844421 +182673,144210,food,1444845315 +182673,144210,wast,1444845316 +182673,144212,korean,1444844845 +182688,1200,alins,1289235457 +182688,1200,classic,1289236724 +182688,1200,long,1289236716 +182688,1200,Sigourney Weaver,1289235483 +182688,1200,tense,1289235495 +182688,61132,Jack Black,1289360126 +182688,70286,aliens,1289224572 +182688,70286,evil corporations,1289224604 +182688,70286,sci-fi,1289224565 +182688,70286,social commentary,1289224585 +182688,70286,unique,1289224595 +182688,76251,action,1289235817 +182688,76251,Chloe Moretz,1289235822 +182688,76251,high school,1289235831 +182688,76251,humorous,1289235838 +182688,76251,Nicholas Cage,1289235804 +182688,78893,Aasif Mandvi,1289236989 +182688,78893,acting,1289236939 +182688,78893,Dev Patel,1289236977 +182688,78893,editing,1289236967 +182688,78893,M. Night Shyamalan,1289236954 +182688,78893,recreation,1289236972 +182688,78893,rushed,1289236963 +182688,79132,action,1289224493 +182688,79132,ambiguous ending,1289224454 +182688,79132,Leonardo DiCaprio,1289224505 +182688,79132,special effects,1289224446 +182688,79702,based on a comic,1289235765 +182688,79702,cultural references,1289235738 +182688,79702,Edgar Wright,1289235725 +182688,79702,fight scenes,1289235775 +182688,79702,funny,1289235780 +182688,79702,garage band,1289235744 +182688,79702,geekey,1289235702 +182688,79702,hipsters,1289235752 +182688,79702,Michael Cera,1289235713 +182688,79702,video games,1289235719 +182698,3246,malcom x,1142137719 +182701,260,robots,1254491664 +182701,1196,robots,1254491709 +182701,1210,robots,1254491655 +182701,1240,robots,1254491590 +182701,1934,Frank Capra,1254491532 +182701,2628,robots,1254491681 +182701,5378,robots,1254491727 +182701,33493,robots,1254491676 +182726,296,action,1431257330 +182726,296,cult film,1431257330 +182726,296,drama,1431257330 +182726,356,comedy,1432571247 +182726,356,disability,1432571247 +182726,356,drama,1432571247 +182726,527,drama,1434300802 +182726,527,nazis,1434300802 +182726,527,world war ii,1434300802 +182726,112556,awful adaptation,1449440390 +182726,112556,based on a book,1449440379 +182738,858,violence,1445872232 +182738,33004,Artistic,1445872395 +182738,33004,Mesmerising,1445872405 +182739,260,Science Fiction,1438769822 +182740,260,epic adventure,1432732276 +182740,260,Science Fiction,1432732305 +182763,318,classic,1167419551 +182763,318,prison,1167419549 +182763,318,Stephen King,1167419552 +182763,356,Tom Hanks,1167419556 +182763,356,Vietnam,1167419557 +182763,1136,Fun,1167419584 +182763,1136,hilarious,1167419585 +182763,1136,Monty Python,1167419582 +182763,1246,Robin Williams,1167419597 +182763,1246,school,1167419598 +182763,1270,adventure,1169179208 +182763,1270,sci-fi,1169179206 +182763,1270,time travel,1169179209 +182763,2117,based on book,1192380907 +182763,2117,George Orwell,1175028390 +182763,2117,Nudity (Full Frontal - Notable),1192380909 +182763,2329,Edward Norton,1253667360 +182763,2329,emotional,1253667362 +182763,2329,racism,1253667363 +182763,2329,violence,1253667376 +182763,3793,comic book,1167419560 +182763,3793,Hugh Jackman,1167419569 +182763,3793,super-hero,1167419561 +182763,3793,superhero,1167419559 +182763,4973,French,1167419539 +182763,4973,Paris,1167419532 +182763,4973,romance,1167419531 +182763,4973,whimsical,1167419533 +182763,4993,dvd,1167419522 +182763,4993,fantasy,1167419369 +182763,4993,Peter Jackson,1167419365 +182763,4993,seen more than once,1167419521 +182763,4993,Tolkien,1167419524 +182763,5224,barrington area library,1246823889 +182763,5349,comic book,1167419572 +182763,5349,super-hero,1167419571 +182763,5349,Tobey Maguire,1167419574 +182763,5952,based on a book,1167419354 +182763,5952,fantasy,1167419327 +182763,5952,high fantasy,1167419331 +182763,5952,Peter Jackson,1167419330 +182763,6333,comic book,1167419541 +182763,6333,sci-fi,1167419543 +182763,6333,super-hero,1167419542 +182763,6341,art,1171773201 +182763,6341,manipulation,1171773218 +182763,6341,paul rudd,1171773218 +182763,6341,rachel weisz,1171773218 +182763,6377,animation,1167419601 +182763,6377,Disney,1167419602 +182763,6377,Pixar,1167419600 +182763,6539,adventure,1167419581 +182763,6539,Johnny Depp,1167419578 +182763,6539,pirates,1167419580 +182763,6963,Amish,1217969490 +182763,7153,fantasy,1167419361 +182763,7153,Oscar (Best Picture),1167419527 +182763,7153,Peter Jackson,1167419526 +182763,7153,Tolkien,1167419528 +182763,7361,Charlie Kaufman,1167419517 +182763,7361,imagination,1205567618 +182763,7361,love,1205567620 +182763,7361,memory,1167419518 +182763,7361,Oscar (Best Writing - Screenplay Written Directly for the Screen),1205567615 +182763,7361,surreal,1167419516 +182763,8062,gay,1250461996 +182763,8062,Jeremy Renner,1250461991 +182763,8062,serial killer,1250461996 +182763,8636,comic book,1167419545 +182763,8636,super-hero,1167419546 +182763,8636,superhero,1167419548 +182763,8966,biopic,1190173861 +182763,8966,john lithgow,1190173867 +182763,8966,sex,1190173866 +182763,30749,Africa,1167419555 +182763,30749,genocide,1167419553 +182763,34542,bears,1230530335 +182763,34542,biopic,1230530328 +182763,34542,documentary,1230530323 +182763,34542,eccentricity,1230530330 +182763,34542,Nature,1230530326 +182763,34542,Werner Herzog,1230530333 +182763,36517,Africa,1183149821 +182763,36517,AIDs,1183149857 +182763,36517,based on a book,1183149857 +182763,36517,beautiful,1183150953 +182763,36517,favorite,1183149857 +182763,36517,must see,1183150943 +182763,36517,rachel weisz,1183149857 +182763,36517,Ralph Fiennes,1183149857 +182763,36517,thriller,1183150946 +182763,40414,based on a true story,1167419460 +182763,40414,foreign,1167419460 +182763,40414,french,1167419460 +182763,40414,german,1167419460 +182763,40414,war,1167419460 +182763,40414,World War I,1167419460 +182763,40629,18th century,1178572420 +182763,40629,adaptation,1178572429 +182763,40629,based on a novel,1178572418 +182763,40629,cheesy but good,1178572414 +182763,40629,cute,1178572431 +182763,40629,England,1178572422 +182763,40629,Jane Austen,1178572426 +182763,40629,Keira Knightley,1178572447 +182763,44195,cigarettes,1167419491 +182763,44195,satire,1167419490 +182763,44195,smoking,1167419492 +182763,44195,Sundance award winner,1167419501 +182763,45722,Johnny Depp,1167419470 +182763,45722,Keira Knightley,1167419485 +182763,45722,Orlando Bloom,1167419485 +182763,45722,pirates,1167419471 +182763,45722,sequels,1167419472 +182763,45950,al gore,1167419588 +182763,45950,global warming,1167419585 +182763,45950,interesting,1167419587 +182763,46578,ALL THE ACTORS WERE JUST WONDERFUL!! A movie for anybody,1173562218 +182763,46578,beauty pageant,1167419508 +182763,46578,California,1192380187 +182763,46578,children's drama,1192380185 +182763,46578,dysfunctional family,1173562216 +182763,46578,ECCENTRIC FAMILIES,1192380181 +182763,46578,family drama,1167419507 +182763,46578,Favorite,1192380176 +182763,46578,Greg Kinnear,1192380189 +182763,46578,hilarious!,1173562204 +182763,46578,kitsch,1173562220 +182763,46578,Nietzche,1173562195 +182763,46578,PARENTHOOD,1192380180 +182763,46578,quirky good,1173562208 +182763,46578,road trip,1167419506 +182763,46578,Seen 2006,1192380178 +182763,46578,Steve Carell,1173562200 +182763,46578,suicide attempt,1173562213 +182763,46578,toni collette,1192380173 +182763,46578,want to see,1169201947 +182763,46578,watched 2007,1173562197 +182763,47423,basketball,1331187810 +182763,47423,Bechdel Test:Pass,1331187812 +182763,47423,drugs,1331187808 +182763,47423,friendship,1331187814 +182763,47423,happiness,1331187804 +182763,47423,R,1217088415 +182763,47423,Ryan Gosling,1331187800 +182763,47423,toplist06,1217088589 +182763,47610,Edward Norton,1175376114 +182763,47610,Jessica Biel,1175376114 +182763,47610,magic,1175376094 +182763,47610,Paul Giamatti,1175376096 +182763,47610,romance,1175376114 +182763,47610,surprise ending,1175376114 +182763,47999,horrifying (but not Horror genre),1192193117 +182763,47999,sad,1192193114 +182763,47999,topic:US culture,1192193116 +182763,48385,bears,1175028298 +182763,48394,1940s,1206339641 +182763,48394,allegory,1206339642 +182763,48394,bloody,1206339681 +182763,48394,fairy tale,1206339653 +182763,48394,gore,1206339670 +182763,48394,mother-daughter relationship,1206339650 +182763,48394,sad,1206339684 +182763,48394,toplist06,1206339645 +182763,48394,violent,1206339675 +182763,48394,world war II,1206339648 +182763,48774,based on a book,1169682458 +182763,48774,Charlie Hunnam,1169682424 +182763,48774,dystopia,1169682436 +182763,48774,end of the world,1169682453 +182763,48774,infertility,1169682446 +182763,48774,Potential Oscar Nom,1169682426 +182763,49530,London,1194160979 +182763,49530,South Africa,1194160981 +182763,50798,awful,1246823605 +182763,50798,imdb bottom 100,1246823608 +182763,50798,unfunny,1246823602 +182763,53123,bittersweet,1267109378 +182763,53123,realistic,1267109384 +182763,53123,romance,1318123421 +182763,53123,simple,1267109382 +182763,55052,toplist07,1199248162 +182763,55069,abortion,1204519176 +182763,55069,toplist07,1204519172 +182763,55247,based on a book,1230530221 +182763,55247,based on a true story,1230530219 +182763,55267,Steve Carell,1199248183 +182763,55280,toplist07,1199248165 +182763,55290,toplist07,1199248172 +182763,55765,toplist07,1199248190 +182763,55814,based on a true story,1203220797 +182763,55814,disability,1203220799 +182763,55814,Nudity (Topless - Brief),1203220800 +182763,55814,paralysis,1203220807 +182763,55814,therapist,1203220803 +182763,55814,toplist07,1203220805 +182763,55820,toplist07,1199248164 +182763,56367,toplist07,1199248168 +182763,56757,toplist07,1199248186 +182763,61646,barrington area library,1246824097 +182763,64418,gardening,1229113333 +182763,64418,inspirational,1229113341 +182763,64418,racism,1229113338 +182763,64418,topiary,1229113329 +182763,68954,computer animation,1244829213 +182763,68954,dreams,1244829203 +182763,68954,feel good movie,1244829225 +182763,68954,friendship,1244829218 +182763,68954,heartbreaking,1244829197 +182763,68954,Pixar,1244829207 +182763,68954,so well done,1244829209 +182763,68954,storytelling,1244829210 +182763,71518,Ellen Page,1259023922 +182774,32587,More Than Once,1163862896 +182788,296,Tarantino,1440147219 +182788,1093,Jim Morrison,1440147721 +182788,1193,jack nicholson,1440147940 +182788,2959,Brad Pitt,1440148335 +182788,3176,Jude Law,1440148792 +182788,4011,guy ritchie film english humor,1440147180 +182788,5989,true story,1440148397 +182788,8119,real blues,1440147691 +182827,1517,screwball,1211764701 +182827,2706,stupid,1211764707 +182832,318,hope,1448914850 +182832,318,psychology,1448914848 +182832,318,reflective,1448914842 +182832,356,emotional,1448914820 +182832,356,psychology,1448914827 +182832,356,tom hanks,1448914812 +182853,34405,Firefly,1213912324 +182857,7980,World War II,1240072582 +182867,2804,i like watching this movie when im so high i dont know left from right,1150651261 +182867,56367,Not as good as Little Miss Sunshine,1202638101 +182867,56782,amazing acting!,1205014934 +182871,126552,pow,1425322828 +182871,126552,wisconsin,1425322828 +182871,126552,world war ii,1422286634 +182871,126552,ww2,1425322828 +182877,6603,wurstsalat,1166002283 +182877,48516,undercover cop,1172248124 +182907,260,sci-fi,1444417113 +182907,260,space,1444417123 +182944,40629,unnecessary,1153148670 +182944,42197,Nudity (Topless),1182777915 +182948,296,influential,1423437040 +182948,296,neo-noir,1423437040 +182948,296,quentin tarantino,1423437040 +182948,480,from novel,1428446228 +182948,480,richard attenborough,1428446228 +182948,480,steven speilberg,1428446228 +182948,593,anthony hopkins,1424905151 +182948,593,crime,1424905151 +182948,593,realism,1424905151 +182948,1217,Shakespeare,1408149789 +182973,94015,Comedy,1448490401 +182973,94015,Cute,1448490403 +182973,94015,light,1448491096 +182973,94015,Satire,1448490396 +182973,94015,whimsical,1448491107 +182996,356,method acting,1441077259 +182996,106100,method acting,1441077049 +183015,70,Tarantino,1163906299 +183044,117194,animals,1427143703 +183044,117194,family,1427143703 +183044,117194,feel-good,1427143703 +183076,924,classic,1264217411 +183076,1095,based on a play,1308721849 +183076,1095,playwright:David Mamet,1308721865 +183076,1258,classic,1264217449 +183076,1258,cult film,1264217460 +183076,1258,Stanley Kubrick,1264217455 +183076,5819,Fake,1308716813 +183076,6502,post-apocalyptic,1266476567 +183076,6502,sci-fi,1266476577 +183076,6502,thriller,1266476579 +183076,27773,English dubs,1307428357 +183076,45672,classic,1264217522 +183076,45672,Kate Beckinsale,1264217527 +183076,45672,slapstick,1264217577 +183076,61678,Eastbound and down,1237959615 +183076,65216,based on a true story,1308465291 +183076,88129,cars,1322978930 +183076,112552,musicians,1417317390 +183082,26776,Japan,1137576656 +183093,593,fear,1429956659 +183093,593,self-esteem,1429956659 +183093,593,serial killer,1429956659 +183093,909,Billy Wilder,1429956767 +183093,909,Jack Lemmon,1429956761 +183093,909,romance,1429956683 +183093,2571,artificial intelligence,1429956523 +183093,2571,Computer Science,1429956476 +183093,2571,hackers,1429956505 +183108,8622,comedy,1306135093 +183108,8622,documentary,1306135073 +183108,8622,family,1306135096 +183108,8622,Guns,1306135090 +183108,8622,Michael Moore,1306135091 +183108,8622,politics,1306135090 +183108,48082,can't identify with hero,1306135048 +183108,48082,dreams,1306135022 +183108,48082,fantasy,1306135054 +183108,48082,Michel Gondry,1306135031 +183108,48082,psychological,1306135033 +183108,48082,stylized,1306135044 +183108,48082,surreal,1306135037 +183113,260,desert planet,1433990944 +183113,260,space,1433990944 +183113,260,unlikely hero,1433990944 +183113,593,anthony hopkins,1436236994 +183113,593,starling,1436236994 +183113,593,suspense,1436236994 +183113,1251,1963,1436237161 +183113,1251,Anita Ekberg,1436237169 +183113,8154,1960,1436237069 +183113,8154,Federico Fellini,1436237072 +183113,8154,marcello mastroianni,1436237049 +183113,8154,neo-realism,1436237080 +183128,260,sci-fi,1431854815 +183128,260,Star Wars,1431854810 +183129,260,action,1435647142 +183129,260,sci-fi,1435647145 +183137,260,fantasy action,1439331726 +183137,260,future fantasy,1439331756 +183137,260,good vs evil,1439331735 +183139,14,Wooohoo,1187576877 +183139,237,nice,1187576846 +183139,720,retarded,1187576891 +183139,866,no,1187576900 +183139,1179,loved it,1187576849 +183139,1244,never seen it,1187576854 +183139,1907,no,1187576909 +183139,2080,wonderful,1187576711 +183139,2391,no,1187576920 +183139,3033,Great movie,1187576661 +183139,3752,no,1187576907 +183139,3785,stupid,1187576778 +183139,3967,no,1187576932 +183139,4246,want to see,1187576673 +183139,4262,no,1187576917 +183139,4310,no,1187576914 +183139,4447,funny as hell,1187576797 +183139,4848,no,1187576912 +183139,5377,cool,1187576844 +183139,5618,no,1187576923 +183139,5679,yuck,1187576880 +183139,6378,no,1187576904 +183139,6934,not interested,1187576859 +183139,7147,need to see this,1187576763 +183139,8622,no,1187576935 +183144,6373,jim carrey as god=scary,1145002037 +183153,442,dystopia,1439788058 +183153,6218,Keira Knightley,1439787556 +183153,82461,music,1439786896 +183153,82461,visually appealing,1439786882 +183178,1258,Jack Nicholson,1325272160 +183178,7151,scarlett johansson,1299932063 +183178,30822,Scarlett Johansson,1309185956 +183178,41025,Scarlett Johansson,1309185900 +183178,44191,thought-provoking,1325025147 +183178,48780,Christian Bale,1309600275 +183178,48780,Scarlett Johansson,1309600273 +183178,48780,twist ending,1309600278 +183178,86833,Kristen Wiig,1316278126 +183178,86833,poop humor,1316278120 +183178,86833,unlikeable characters,1316278119 +183178,87876,not funny,1319984491 +183178,87876,plot,1319984500 +183178,89470,Jude Law,1319982863 +183178,91658,subtle humor,1326120865 +183178,91658,suspense,1326120860 +183186,1258,cult film,1244859510 +183186,53000,zombies,1244858813 +183190,260,cgi,1436273186 +183190,260,space adventure,1436273208 +183204,6982,Janus 50,1190641055 +183204,6982,ORPHANS,1190641028 +183204,7587,reflective,1190641094 +183219,8393,music,1426462448 +183219,8393,paul macartney,1426462448 +183219,8393,the beatles,1426462448 +183220,260,Action,1434160588 +183220,260,Science Fiction,1434160594 +183234,260,darth vader,1422807894 +183234,260,lightsabers,1422807894 +183234,260,sci-fi,1422807894 +183234,296,crime,1420303784 +183234,296,drugs,1420303784 +183234,296,violence,1420303784 +183234,356,ignorance,1421463167 +183234,356,meaning of life,1421463167 +183234,356,vietnam war,1421463167 +183234,480,dinosaurs,1422144677 +183234,480,experiments gone awry,1422144677 +183234,480,jeff goldblum,1422144677 +183234,106452,Polish movie,1419296824 +183272,1527,dystopic future,1225286341 +183272,1527,futuristic,1225286343 +183272,1527,Gary Oldman,1225286329 +183272,1527,sci-fi,1225286325 +183272,1527,stylized,1225286345 +183272,1527,underrated,1225286336 +183307,2995,asylum,1294888147 +183307,2995,william castle remake,1294888136 +183307,78469,action,1294107761 +183307,78469,bradley cooper,1294107773 +183307,78469,cheesy lines,1294107786 +183332,260,sci-fi,1438401721 +183332,260,space action,1438401773 +183358,72395,abused children,1303003527 +183358,72395,Dramatic,1303003527 +183358,72395,Harlem,1303003527 +183358,72395,intense,1303003527 +183358,72395,RAPE & SEXUAL ABUSE,1303003527 +183358,72395,realistic,1303003527 +183358,72395,sad but good,1303003527 +183358,72395,teen pregnancy,1303003527 +183358,72395,teens,1303003527 +183379,4993,epic,1424206086 +183379,4993,fantasy,1424206086 +183379,4993,tolkien,1424206086 +183380,260,Harrison Ford,1430878239 +183380,260,obi wan,1430878250 +183380,260,robots,1430878253 +183380,260,sci-fi,1430878226 +183382,260,good versus evil,1430805321 +183382,260,space,1430805313 +183391,63062,movie to see,1243017463 +183391,66297,futurama,1314725114 +183392,24,poignant,1236375003 +183398,32,Brad Pitt,1381209664 +183398,32,Bruce Willis,1381209663 +183398,32,sci-fi,1381209656 +183398,32,time travel,1381209654 +183398,527,black and white,1379199165 +183398,527,Nazis,1379199181 +183398,527,World War II,1379199183 +183398,5995,beautiful,1379226405 +183413,260,action,1444934015 +183413,260,science fantasy,1444933995 +183413,260,space adventure,1444934005 +183413,260,space epic,1444934021 +183441,858,mafia,1205144110 +183441,2291,Depp & Burton,1205144303 +183441,3081,Depp & Burton,1205144368 +183441,37729,Depp & Burton,1205144345 +183441,56757,Depp & Burton,1205144323 +183441,56757,Johnny Depp,1205144262 +183441,56757,Tim Burton,1205144254 +183441,56757,violent,1205144382 +183441,57528,ridiculous,1205144431 +183441,57528,ridiculously spiritual,1205144431 +183441,94314,nazis,1434984678 +183441,94314,r:gore,1434984678 +183441,94314,zombies,1434984678 +183502,427,80s,1231709863 +183502,427,erotic thriller,1231709839 +183502,1259,Drama,1235844869 +183502,1259,nostalgic,1235844856 +183502,60943,smuggling,1230668688 +183502,60943,trailer home,1230668649 +183502,61167,accepting death,1230668509 +183502,61167,apathy,1230668545 +183502,61167,Christianity,1230668256 +183502,61167,love,1230668522 +183502,61167,miracle,1230668280 +183502,61167,religion,1230668221 +183558,260,Science Fiction,1434454629 +183558,260,space adventure,1434454644 +183572,296,crime,1420160536 +183572,296,stylized,1420160536 +183572,296,violent,1420160536 +183572,924,artificial intelligence,1445809194 +183572,924,atmospheric,1445809201 +183572,924,philosophical,1445809204 +183572,924,sci-fi,1445809191 +183572,924,space,1445809199 +183572,924,Stanley Kubrick,1445809196 +183572,1173,film school,1244141348 +183572,2972,biggoted,1357309853 +183572,2972,chinese cliche,1357309862 +183572,4815,stephen king,1445811148 +183572,8485,easily confused with other movies,1357460402 +183572,26649,more than 300 ratings,1357312028 +183572,54286,action,1445806573 +183572,54286,espionage,1445806566 +183572,54286,Matt Damon,1445806569 +183572,54286,shaky camera,1445806595 +183572,70533,anime,1450677945 +183572,94466,not a movie,1442284795 +183572,94466,tv series,1442284798 +183572,96610,Bruce Willis,1445806633 +183572,96610,Joseph Gordon-Levitt,1445806636 +183572,96610,sci-fi,1445806627 +183572,96610,time travel,1445806624 +183572,96610,visually appealing,1445806638 +183572,109487,Christopher Nolan,1445757560 +183572,109487,sci-fi,1445757557 +183572,109487,space,1445757551 +183581,260,action,1443375331 +183581,260,space adventure,1443375318 +183585,260,George Lucas,1434099465 +183585,260,Harrison Ford,1434099458 +183585,260,Space,1434099476 +183585,593,cannibalism,1434958821 +183585,593,prison,1434958821 +183585,593,psychopath,1434958821 +183586,6,Can't remember,1153650935 +183586,10,seen more than once,1153651587 +183586,76,Philip K. Dick,1153649806 +183586,141,can't remember,1153650856 +183586,150,seen more than once,1153651782 +183586,186,can't remember,1153650884 +183586,260,seen more than once,1153651049 +183586,356,seen more than once,1153651555 +183586,440,president,1152973501 +183586,440,seen more than once,1153651506 +183586,508,aids,1138575764 +183586,520,can't remember,1153650876 +183586,541,android,1138575786 +183586,541,p k dick,1138575778 +183586,541,Philip K. Dick,1153649713 +183586,589,dvd,1152617229 +183586,589,seen more than once,1153651152 +183586,589,time travel,1152963496 +183586,778,can't remember,1153650829 +183586,780,dvd,1152617343 +183586,780,seen at the cinema,1153652033 +183586,780,seen more than once,1153651608 +183586,912,can't remember,1153650835 +183586,1028,Can't remember,1153650964 +183586,1031,seen more than once,1153651802 +183586,1036,can't remember,1153650808 +183586,1089,Quentin Tarantino,1153650035 +183586,1196,seen more than once,1153651713 +183586,1198,seen more than once,1153651655 +183586,1199,bureaucracy,1153650978 +183586,1210,seen more than once,1153651720 +183586,1220,seen more than once,1153651064 +183586,1237,Ingmar Bergman,1152973505 +183586,1240,dvd,1152963487 +183586,1246,seen more than once,1153651515 +183586,1265,seen more than once,1152975650 +183586,1270,sci-fi,1153602253 +183586,1270,seen more than once,1153651467 +183586,1270,time travel,1138575643 +183586,1371,Can't remember,1154690030 +183586,1391,seen more than once,1153651930 +183586,1517,seen more than once,1153651788 +183586,1527,dvd,1152963202 +183586,1527,Luc Besson,1153649593 +183586,1527,seen more than once,1153651881 +183586,1573,switching places,1152975731 +183586,1580,seen at the cinema,1153652044 +183586,1580,seen more than once,1153651628 +183586,1680,seen more than once,1153651685 +183586,1682,seen more than once,1153651729 +183586,1747,fun,1153651731 +183586,1747,satire,1153651738 +183586,1747,seen more than once,1153651738 +183586,1772,seen more than once,1153651807 +183586,1777,Can't remember,1153651313 +183586,1827,dvd,1152963662 +183586,1876,Saab,1153651843 +183586,1876,seen more than once,1153651843 +183586,1957,Vangelis,1152976031 +183586,2003,can't remember,1153650869 +183586,2011,time travel,1153602260 +183586,2012,time travel,1153602274 +183586,2105,Ken Perlin,1152972730 +183586,2161,Can't remember,1154689997 +183586,2161,limahl soundtrack,1154690011 +183586,2278,can't remember,1153650851 +183586,2321,seen more than once,1153651647 +183586,2353,seen more than once,1153651867 +183586,2371,dvd,1152617306 +183586,2371,seen more than once,1153651548 +183586,2424,AOL,1152975154 +183586,2455,Can't remember,1153652152 +183586,2455,Saab,1153652140 +183586,2571,dvd,1152617179 +183586,2571,seen more than once,1153651025 +183586,2580,Can't remember,1153651581 +183586,2628,dvd,1152963455 +183586,2628,seen at the cinema,1153652088 +183586,2671,seen more than once,1153651637 +183586,2683,seen more than once,1153651461 +183586,2692,seen more than once,1153651670 +183586,2762,seen more than once,1153651680 +183586,2788,dvd-r,1152617236 +183586,2795,Can't remember,1153650919 +183586,2797,Child as Adult,1152975799 +183586,2797,piano,1152975721 +183586,2797,seen more than once,1152975791 +183586,2797,switching places,1152975721 +183586,2797,toys,1152975773 +183586,2862,pornography,1367431788 +183586,2881,disappointment,1138574453 +183586,2916,Philip K. Dick,1153649716 +183586,2947,seen more than once,1153651592 +183586,2959,dvd,1152617172 +183586,2959,seen more than once,1153651018 +183586,2997,dvd,1152617190 +183586,3003,holocaust,1138575700 +183586,3003,train,1138575700 +183586,3003,world war II,1138575700 +183586,3039,seen more than once,1153651166 +183586,3053,Milla Jovovich,1153649584 +183586,3175,seen more than once,1153651565 +183586,3253,seen more than once,1153651745 +183586,3254,seen more than once,1153651750 +183586,3256,can't remember,1153650846 +183586,3578,dvd,1152617314 +183586,3717,can't remember,1153650862 +183586,3763,Can't remember,1153650786 +183586,3793,dvd,1152617460 +183586,3793,seen at the cinema,1153652066 +183586,3793,seen more than once,1153651760 +183586,3868,Can't remember,1153650783 +183586,3977,dvd,1152617260 +183586,3977,seen more than once,1153651486 +183586,3984,seen more than once,1153651852 +183586,3994,comics,1138575597 +183586,3994,train,1138575597 +183586,3996,dvd,1152617265 +183586,4011,dvd,1152617184 +183586,4027,seen more than once,1153651029 +183586,4034,dvd,1152617445 +183586,4226,dvd,1152617369 +183586,4306,seen more than once,1152975640 +183586,4370,android,1153649924 +183586,4741,seen more than once,1153651155 +183586,4816,fashion,1152975768 +183586,4816,Frankie Goes To Hollywood,1152975475 +183586,4816,piano,1152975746 +183586,4816,Piano tie,1152975475 +183586,4816,seen more than once,1152975484 +183586,4816,Will Ferrell,1152975475 +183586,4874,dvd,1152617350 +183586,4878,dvd,1152617297 +183586,4878,time travel,1153602285 +183586,4886,dvd,1152617373 +183586,4886,pixar,1206537717 +183586,4886,seen more than once,1152975660 +183586,4951,desert island,1138575622 +183586,4973,dvd,1152617145 +183586,4973,seen more than once,1153651010 +183586,4993,dvd,1152617208 +183586,4993,seen more than once,1152975654 +183586,5046,Philip K. Dick,1153649789 +183586,5251,Lasse Ã…berg,1152972939 +183586,5298,Charlie Kaufman,1152973037 +183586,5298,Michel Gondry,1152973043 +183586,5349,dvd,1152617419 +183586,5349,seen more than once,1153651695 +183586,5378,dvd,1152963460 +183586,5378,seen at the cinema,1153652109 +183586,5445,Philip K. Dick,1153649776 +183586,5483,movie business,1153650155 +183586,5541,seen more than once,1153651898 +183586,5753,boat,1138575673 +183586,5753,göta kanal,1138575673 +183586,5753,sweden,1138575673 +183586,5816,Harry Potter,1152975962 +183586,5952,dvd,1152617216 +183586,5952,seen more than once,1153651116 +183586,5992,dvd,1152963515 +183586,5995,holocaust,1152975761 +183586,5995,World War II,1152975762 +183586,6333,dvd,1152617464 +183586,6333,seen more than once,1153651766 +183586,6365,dvd,1152963322 +183586,6373,seen more than once,1153651818 +183586,6503,dvd,1152963157 +183586,6503,seen more than once,1153651828 +183586,6537,dvd,1152963482 +183586,6537,nuclear,1138574533 +183586,6593,switching places,1152973554 +183586,6620,dvd-r,1152617484 +183586,6624,Linkoping,1152973262 +183586,6711,dvd,1152617222 +183586,6711,Scarlett Johansson,1153651134 +183586,6711,seen more than once,1153651134 +183586,6734,invisible,1153649962 +183586,6807,dvd,1152963368 +183586,6863,dvd,1152617398 +183586,6863,seen more than once,1153651673 +183586,6934,dvd,1152963324 +183586,6936,dvd-r,1152617289 +183586,6936,seen more than once,1153651523 +183586,6936,Will Ferrell,1152975585 +183586,7153,dvd,1152617363 +183586,7153,seen more than once,1153651621 +183586,7163,Philip K. Dick,1153649808 +183586,7169,berlin,1152616607 +183586,7169,prague,1152616611 +183586,7169,president,1152972982 +183586,7297,caravan,1138575724 +183586,7297,kitchen,1138575724 +183586,7297,norway,1138575724 +183586,7323,eastwood,1153651094 +183586,7323,seen more than once,1153651073 +183586,7361,dvd-r,1152617198 +183586,7361,seen at the cinema,1153652010 +183586,7361,seen more than once,1152975646 +183586,7375,Denmark,1152973010 +183586,7444,Child as Adult,1152975865 +183586,7444,photographer,1152975876 +183586,7569,Can't remember,1153651235 +183586,8340,seen more than once,1153651539 +183586,8361,climate,1138575763 +183586,8361,fox,1138575763 +183586,8361,MT,1152974715 +183586,8361,weather,1138575763 +183586,8376,dvd,1154682381 +183586,8376,high school,1154902337 +183586,8376,teen,1154902340 +183586,8528,obscure sports,1152975560 +183586,8528,seen more than once,1153651856 +183586,8576,police,1152972997 +183586,8576,rural,1152972997 +183586,8636,dvd,1152617424 +183586,8636,seen more than once,1153651703 +183586,8640,MT,1152974700 +183586,8644,seen more than once,1153651905 +183586,8869,president,1152972987 +183586,8905,dvd,1152963089 +183586,8950,dvd,1152963310 +183586,27700,Jan Guillou,1152973651 +183586,27721,dvd,1154682402 +183586,27904,Philip K. Dick,1153649704 +183586,31221,marvel,1154681873 +183586,32587,dvd,1152617407 +183586,33004,MT,1152975070 +183586,33004,seen more than once,1153651893 +183586,33794,dvd,1154682274 +183586,34319,Scarlett Johansson,1153652100 +183586,34334,MT,1152975220 +183586,40815,MT,1152975130 +183586,41997,Israel,1152976000 +183586,41997,Olympics,1152975996 +183586,41997,palestine,1152976003 +183586,41997,terrorism,1152975992 +183586,44191,MT,1152975103 +183629,86815,inspiring,1420069335 +183629,86815,must see!,1420069335 +183629,86815,true story,1420069335 +183629,93363,average plot,1404086130 +183629,93363,surprise ending,1404086134 +183629,112370,weak story,1404085864 +183658,260,classic sci-fi,1442247806 +183658,260,space adventure,1442247817 +183668,1101,dogfights,1442211136 +183668,33679,CIA,1442211061 +183678,2388,gay,1204560463 +183678,48394,fascism,1204561339 +183699,260,adventure,1442510308 +183699,260,adventure fun,1442510300 +183724,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1439688541 +183724,260,classic sci-fi,1439688532 +183759,104944,childhood,1438559771 +183759,104944,emotional,1438559771 +183759,104944,indie,1438559771 +183769,318,drama,1424685020 +183769,318,human story,1424685020 +183769,318,prison escape,1424685020 +183769,1203,good dialogue,1432641550 +183769,1203,thought-provoking,1432641555 +183769,109374,funny,1432054838 +183769,109374,stylized,1432054835 +183769,109374,visually appealing,1432054830 +183790,260,#boring,1435952416 +183790,260,too long,1435952428 +183793,1097,horas,1144339514 +183793,2011,guk,1144339472 +183809,56367,feel good movie,1248639152 +183852,74458,mystery,1441923252 +183883,1690,Action,1189095030 +183883,1690,Horror,1189095030 +183883,1690,Sci-Fi,1189095030 +183904,260,a boy grows into a Jedi,1444471467 +183904,260,happy ending,1444471510 +183904,260,SiFi,1444471427 +183904,260,space epic,1444471483 +183904,260,war,1444471449 +183913,421,classic,1216798994 +183913,916,classic,1216798892 +183913,1010,kids special,1216798943 +183913,1125,Funny as hell,1216798912 +183913,1797,mountain climbing,1216798965 +183913,2067,classic,1216798870 +183913,2137,classic,1216798974 +183913,3296,high school,1216798861 +183913,4039,*Good* Musicals,1216798877 +183915,1466,Al Pacino,1382802157 +183915,1466,based on a true story,1382802133 +183915,1466,FBI,1382802137 +183915,1466,gangster,1382802140 +183915,1466,Mafia,1382802141 +183925,260,action,1442807858 +183925,260,sci-fi,1442807851 +183931,260,classic sci-fi,1436443089 +183931,260,Every nerd should have seen more than once,1436443078 +183931,260,sci-fi,1436443072 +183944,1358,Billy Bob Thornton,1155350329 +183967,62,inspirational,1294424168 +183967,1291,indiana jones,1294424205 +183967,1393,Oscar (Best Supporting Actor),1294424189 +183967,2115,Indiana Jones,1294424202 +183967,3948,comedy,1294424177 +183967,49130,based on a book,1294424218 +183967,72011,based on a book,1294424234 +183972,260,action,1430368928 +183972,260,sci-fi,1430368922 +183972,260,space opera,1430368939 +183979,52,Woody Allen,1165152829 +183979,110,drama,1164711802 +183979,1125,goofy comedy,1164711103 +183979,1125,seen more than once,1164711095 +183979,1580,Will Smith,1164711644 +183979,2076,David Lynch,1165152568 +183979,2080,Disney,1165152172 +183979,2186,Hitchcock,1165153611 +183979,2692,surreal,1164712375 +183979,2762,twist ending,1164711625 +183979,2948,007,1165152651 +183979,2949,007,1165152665 +183979,2997,surreal,1164711738 +183979,3113,stupid,1165153029 +183979,4034,drugs,1164711662 +183979,4973,romance,1164711676 +183979,4995,intelligent,1164711612 +183979,5060,great soundtrack,1165153722 +183979,5617,BDSM,1165152607 +183979,5952,high fantasy,1164711602 +183979,5989,crime,1164711703 +183979,6662,Peter Sellers,1165153000 +183979,6666,Luis Bunuel,1165153548 +183979,7090,amazing photography,1164712429 +183979,8239,Luis Bunuel,1165153537 +183979,44195,cigarettes,1165152186 +183988,380,Funny as hell,1142600574 +183988,1094,puzzling,1142600505 +183988,1252,Exceptional Acting,1142600515 +183995,4973,beautifully filmed,1364442283 +183995,4973,comedy,1364442281 +183995,4973,coming of age,1364442285 +183995,4973,magic,1364442287 +183995,4973,notable soundtrack,1364442294 +183995,4973,Paris,1364442291 +183995,4973,quirky,1364442279 +183995,4973,romance,1364442278 +183995,4973,whimsical,1364442276 +183995,96079,action,1364352530 +183995,96079,beautifully filmed,1364352524 +183995,96079,cinematography,1364352526 +183995,96079,psychological,1364352538 +183995,96079,Scotland,1364352517 +183995,96079,spies,1364352535 +184016,260,classic sci-fi,1434382640 +184016,260,cult classic,1434382644 +184016,260,fantasy,1434382633 +184016,260,Science Fiction,1434382622 +184016,296,conversation,1434383426 +184016,296,insane,1434383426 +184016,296,tarantino,1434383426 +184016,356,drama,1435006817 +184016,356,emotional,1435006817 +184016,356,quirky,1435006817 +184016,593,hannibal lecter,1437390683 +184016,593,psychothriller,1437390683 +184016,593,thomas harris,1437390683 +184023,468,She looks like a mouse,1303249862 +184023,1012,Surprise Octopus,1303249056 +184023,1020,Surprise Octopus,1303249602 +184023,1542,She looks like a mouse,1303249797 +184023,1762,surprise octopus,1303247630 +184023,3844,Surprise Octopus,1303249135 +184023,5509,Surprise Octopus,1303249349 +184023,7318,Surprise Octopus,1303248956 +184023,7669,Surprise Octopus,1303249329 +184023,8636,Surprise Octopus,1303249487 +184023,46972,Surprise Octopus,1303247719 +184023,63992,Man glitter,1303249953 +184023,68793,Surprise Octopus,1303247733 +184023,69134,Surprise Octopus,1303249078 +184023,72407,Man glitter,1303249936 +184023,78772,Man glitter,1303249946 +184023,81845,Surprise Octopus,1303249111 +184028,6820,Emily Perkins,1416973169 +184028,6820,Katherine Isabelle,1416973166 +184028,6820,werewolves,1416973161 +184028,112727,horror,1416972583 +184028,112727,paranormal,1416972589 +184028,112727,possession,1416972581 +184028,112727,priest,1416972585 +184037,3535,business,1241801517 +184037,3535,not as disturbing as the novel,1241801531 +184037,3535,violence,1241801500 +184037,49932,surreal,1241801634 +184051,1193,good acting,1370751294 +184051,1193,Jack Nicholson,1370751294 +184051,1193,sad but good,1370751294 +184055,32,sci-fi,1360762738 +184055,150,space program,1360913885 +184055,172,cyberpunk,1360763126 +184055,172,Sci-Fi,1360763130 +184055,208,dystopia,1360762592 +184055,208,sci-fi,1360762594 +184055,316,sci-fi,1360762036 +184055,316,space,1360762029 +184055,316,time travel,1360762033 +184055,329,Sci-Fi,1360762777 +184055,329,space,1360762779 +184055,442,action,1360763066 +184055,442,sci-fi,1360763063 +184055,442,time travel,1360763060 +184055,1200,sci-fi,1360762078 +184055,1200,space,1360762076 +184055,1240,sci-fi,1360762989 +184055,1240,time travel,1360762986 +184055,1270,sci-fi,1360761685 +184055,1270,time travel,1360761689 +184055,1356,post-apocalyptic,1360761801 +184055,1356,sci-fi,1360761808 +184055,1356,space,1360761805 +184055,1372,sci-fi,1360762767 +184055,1372,space,1360762764 +184055,1527,action,1360761836 +184055,1527,sci-fi,1360761833 +184055,1584,aliens,1360761881 +184055,1584,sci-fi,1360761886 +184055,1584,space,1360761883 +184055,1653,dystopia,1360761786 +184055,1653,sci-fi,1360761782 +184055,1748,atmospheric,1360761867 +184055,1748,sci-fi,1360761870 +184055,1917,sci-fi,1360762231 +184055,1917,space,1360762228 +184055,2012,sci-fi,1360762964 +184055,2012,time travel,1360762959 +184055,2628,sci-fi,1360761753 +184055,2628,space,1360761749 +184055,2916,dystopia,1360761822 +184055,2916,sci-fi,1360761824 +184055,4643,space,1360762245 +184055,5378,space,1360761528 +184055,5459,aliens,1360762648 +184055,5459,comedy,1360762639 +184055,5459,sci-fi,1360762644 +184055,5502,aliens,1360765575 +184055,5502,sci-fi,1360765578 +184055,5944,sci-fi,1360763322 +184055,5944,space,1360763319 +184055,6365,sci-fi,1360762522 +184055,6365,virtual reality,1360762524 +184055,6537,action,1360762574 +184055,6537,sci-fi,1360762579 +184055,6537,time travel,1360762571 +184055,6902,road trip,1360773607 +184055,6934,sci-fi,1360762531 +184055,6934,virtual reality,1360762529 +184055,7254,alternate reality,1360762826 +184055,7254,sci-fi,1360762860 +184055,7254,time travel,1360762829 +184055,7361,sci-fi,1360761949 +184055,7827,cyberpunk,1360763094 +184055,7827,sci-fi,1360763091 +184055,8361,sci-fi,1360762510 +184055,8371,space,1360761581 +184055,8644,robots,1360762622 +184055,8644,sci-fi,1360762617 +184055,27611,sci-fi,1360761941 +184055,27611,space,1360761944 +184055,31696,mythology,1360788666 +184055,31696,supernatural,1360788664 +184055,33004,space,1360761485 +184055,34048,sci-fi,1360763102 +184055,34405,sci-fi,1360761971 +184055,34405,space,1360761979 +184055,49278,sci-fi,1360763115 +184055,52281,Sci-fi,1360762797 +184055,52328,psychological,1360762332 +184055,52328,sci-fi,1360762338 +184055,52328,space,1360762336 +184055,52722,superhero,1360762720 +184055,53996,action,1360762812 +184055,53996,aliens,1360762809 +184055,53996,sci-fi,1360762806 +184055,56174,post-apocalyptic,1360763252 +184055,56174,sci-fi,1360763248 +184055,57368,Handycam,1360763336 +184055,57368,sci-fi,1360763331 +184055,59315,sci-fi,1360761952 +184055,59392,sci-fi,1360761428 +184055,59392,space,1360761425 +184055,60674,sci-fi,1360761431 +184055,60674,space,1360761412 +184055,60674,time travel,1360762041 +184055,68237,Sci-fi,1360761961 +184055,68237,space,1360761967 +184055,68791,sci-fi,1360763234 +184055,77795,conspiracy,1360762148 +184055,77795,post-apocalyptic,1360762151 +184055,79132,alternate reality,1360777916 +184055,79132,sci-fi,1360777908 +184055,85414,action,1360762633 +184055,85414,time travel,1360762628 +184055,88744,sci-fi,1360763273 +184055,88744,space,1360763271 +184055,94777,aliens,1360763296 +184055,94777,time travel,1360763293 +184055,94864,aliens,1360762115 +184055,96610,organized crime,1360762884 +184055,96610,sci-fi,1360762881 +184055,96610,time travel,1360762879 +184055,97752,sci-fi,1360762705 +184057,104879,dark,1422348976 +184057,104879,missing children,1422348976 +184057,104879,torture,1422348976 +184060,260,sci-fi,1440095969 +184060,260,space action,1440095979 +184083,10,007,1446557509 +184083,10,james bond,1446557507 +184083,111,dark,1446559444 +184083,111,Martin Scorsese,1446559446 +184083,111,robert de niro,1446559443 +184083,231,jim carrey,1446558680 +184083,288,brutality,1446557708 +184083,288,dark comedy,1446557710 +184083,288,hallucinatory,1446557714 +184083,288,mindfuck,1446557715 +184083,288,psychedelic,1446557712 +184083,303,Russell Crowe,1446555283 +184083,303,western,1446555285 +184083,471,Coen Brothers,1446555614 +184083,480,adventure,1446556821 +184083,480,sci-fi,1446556823 +184083,480,Steven Spielberg,1446556820 +184083,555,Christopher Walken,1446559250 +184083,555,dark comedy,1446559253 +184083,555,Dennis Hopper,1446559255 +184083,555,violent,1446559245 +184083,608,black comedy,1446555562 +184083,608,Coen Brothers,1446555559 +184083,608,dark comedy,1446555560 +184083,750,black comedy,1446559012 +184083,750,dark comedy,1446559011 +184083,750,Stanley Kubrick,1446559009 +184083,778,based on a book,1446555003 +184083,778,black comedy,1446554995 +184083,778,British,1446554999 +184083,778,dark comedy,1446554991 +184083,778,drug abuse,1446555007 +184083,778,drugs,1446554993 +184083,778,Ewan McGregor,1446554997 +184083,778,great soundtrack,1446555001 +184083,778,heroin,1446555005 +184083,780,alien invasion,1446559029 +184083,780,sci-fi,1446559030 +184083,924,artificial intelligence,1446553920 +184083,924,atmospheric,1446553925 +184083,924,cinematography,1446553932 +184083,924,masterpiece,1446553928 +184083,924,music,1446553935 +184083,924,philosophical,1446553926 +184083,924,sci-fi,1446553918 +184083,924,space,1446553923 +184083,924,Stanley Kubrick,1446553922 +184083,924,visually appealing,1446553930 +184083,1059,Leonardo DiCaprio,1446555239 +184083,1090,Oliver Stone,1446557672 +184083,1090,Vietnam War,1446557670 +184083,1092,Erotic,1446558384 +184083,1092,Sex,1446558389 +184083,1092,Sharon Stone,1446558386 +184083,1093,drugs,1446557731 +184083,1093,Jim Morrison,1446557735 +184083,1093,rock and roll,1446557733 +184083,1097,Steven Spielberg,1446556791 +184083,1101,aviation,1446559315 +184083,1101,Tom Cruise,1446559318 +184083,1194,marijuana,1446554074 +184083,1194,stoner,1446554083 +184083,1194,weed,1446554076 +184083,1198,adventure,1446556708 +184083,1198,archaeology,1446556713 +184083,1198,Harrison Ford,1446556710 +184083,1198,indiana jones,1446556712 +184083,1198,Nazis,1446556715 +184083,1198,Steven Spielberg,1446556717 +184083,1200,aliens,1446557079 +184083,1200,sci-fi,1446557075 +184083,1200,space,1446557077 +184083,1208,anti-war,1446557608 +184083,1208,classic,1446557604 +184083,1208,Dark,1446557600 +184083,1208,surreal,1446557596 +184083,1208,Vietnam war,1446557598 +184083,1208,war,1446557602 +184083,1211,Berlin,1446556357 +184083,1211,dreamlike,1446556361 +184083,1211,meditative,1446556363 +184083,1211,poetic,1446556358 +184083,1213,mafia,1446559452 +184083,1213,Martin Scorsese,1446559454 +184083,1213,robert de niro,1446559455 +184083,1214,aliens,1446557830 +184083,1214,atmospheric,1446557836 +184083,1214,dark,1446557843 +184083,1214,horror,1446557835 +184083,1214,Ridley Scott,1446557841 +184083,1214,sci-fi,1446557829 +184083,1214,space,1446557832 +184083,1214,space travel,1446557840 +184083,1214,suspense,1446557833 +184083,1214,tense,1446557838 +184083,1219,Alfred Hitchcock,1446558886 +184083,1219,classic,1446558889 +184083,1219,tense,1446558891 +184083,1222,anti-war,1446557556 +184083,1222,Stanley Kubrick,1446557552 +184083,1222,Vietnam,1446557559 +184083,1222,Vietnam war,1446557554 +184083,1225,classical music,1446556489 +184083,1225,Mozart,1446556491 +184083,1232,Andrei Tarkovsky,1446556023 +184083,1232,beautifully filmed,1446556026 +184083,1232,dreamlike,1446556021 +184083,1232,existentialism,1446556014 +184083,1232,masterpiece,1446556027 +184083,1232,meditative,1446556020 +184083,1232,philosophical,1446556018 +184083,1233,claustrophobic,1446556468 +184083,1233,submarine,1446556465 +184083,1233,thought-provoking,1446556476 +184083,1233,World War II,1446556466 +184083,1233,WWII,1446556474 +184083,1258,cult film,1446558867 +184083,1258,jack nicholson,1446558861 +184083,1258,psychological,1446558863 +184083,1258,Stanley Kubrick,1446558859 +184083,1258,Stephen King,1446558864 +184083,1263,Vietnam,1446557589 +184083,1263,Vietnam War,1446557587 +184083,1291,Adventure,1446556738 +184083,1291,Harrison Ford,1446556733 +184083,1291,indiana jones,1446556736 +184083,1291,Nazis,1446556740 +184083,1291,Sean Connery,1446556735 +184083,1291,Steven Spielberg,1446556742 +184083,1298,cult film,1446553950 +184083,1298,drugs,1446553952 +184083,1298,great soundtrack,1446553956 +184083,1298,music,1446553954 +184083,1387,scary,1446556768 +184083,1387,Steven Spielberg,1446556765 +184083,1394,Coen Brothers,1446555570 +184083,1394,Cult classic,1446555574 +184083,1394,cult film,1446555577 +184083,1485,classic comedy,1446558672 +184083,1485,comedy,1446558671 +184083,1485,jim carrey,1446558669 +184083,1527,aliens,1446552849 +184083,1527,Bruce Willis,1446552841 +184083,1527,dystopic future,1446552853 +184083,1527,futuristic,1446552844 +184083,1527,humorous,1446552848 +184083,1527,Milla Jovovich,1446552843 +184083,1527,sci-fi,1446552839 +184083,1573,John Travolta,1446557912 +184083,1573,Nicolas Cage,1446557914 +184083,1580,aliens,1446559059 +184083,1580,comedy,1446559064 +184083,1580,sci-fi,1446559063 +184083,1580,Tommy Lee Jones,1446559061 +184083,1625,mindfuck,1446558078 +184083,1625,Mystery,1446558075 +184083,1625,psychological,1446558074 +184083,1625,twist ending,1446558072 +184083,1653,dystopia,1446551842 +184083,1653,genetics,1446551845 +184083,1653,sci-fi,1446551843 +184083,1676,aliens,1446558341 +184083,1676,satire,1446558337 +184083,1676,sci-fi,1446558343 +184083,1676,space,1446558339 +184083,1682,alternate reality,1446558508 +184083,1682,dark comedy,1446558506 +184083,1682,dreamlike,1446558511 +184083,1682,Jim Carrey,1446558500 +184083,1690,alien series,1446557024 +184083,1690,aliens,1446557022 +184083,1721,atmospheric,1446555267 +184083,1721,disaster,1446555269 +184083,1721,love story,1446555270 +184083,1721,romance,1446555265 +184083,1732,black comedy,1446555548 +184083,1732,bowling,1446555546 +184083,1732,coen brothers,1446555540 +184083,1732,cult film,1446555544 +184083,1732,dark comedy,1446555542 +184083,1732,Jeff Bridges,1446555551 +184083,1748,dystopia,1446558200 +184083,1748,sci-fi,1446558202 +184083,1753,drugs,1446553857 +184083,1753,marijuana,1446553859 +184083,1753,stoner comedy,1446553860 +184083,1876,apocalypse,1446559052 +184083,1917,apocalypse,1446559038 +184083,1917,Bruce Willis,1446559036 +184083,1917,end of the world,1446559042 +184083,1917,space,1446559040 +184083,1917,space program,1446559044 +184083,2019,atmospheric,1446556341 +184083,2019,epic,1446556344 +184083,2019,Japan,1446556343 +184083,2019,samurai,1446556335 +184083,2028,drama,1446556585 +184083,2028,historical,1446556576 +184083,2028,history,1446556577 +184083,2028,realistic,1446556582 +184083,2028,Steven Spielberg,1446556574 +184083,2028,Tom Hanks,1446556572 +184083,2028,World War II,1446556570 +184083,2028,wwii,1446556581 +184083,2115,archaeology,1446556810 +184083,2115,Harrison Ford,1446556808 +184083,2115,Indiana Jones,1446556812 +184083,2194,gangsters,1446556538 +184083,2194,police corruption,1446556550 +184083,2194,Robert De Niro,1446556545 +184083,2232,cult film,1446558184 +184083,2232,mindfuck,1446558182 +184083,2232,psychological,1446558179 +184083,2232,psychology,1446558181 +184083,2455,David Cronenberg,1446558169 +184083,2455,Jeff Goldblum,1446558168 +184083,2455,mad scientist,1446558165 +184083,2571,action,1446551671 +184083,2571,alternate reality,1446551673 +184083,2571,artificial intelligence,1446551675 +184083,2571,cyberpunk,1446551665 +184083,2571,dystopia,1446551663 +184083,2571,Keanu Reeves,1446551680 +184083,2571,martial arts,1446551668 +184083,2571,philosophy,1446551667 +184083,2571,post apocalyptic,1446551686 +184083,2571,post-apocalyptic,1446551677 +184083,2571,sci-fi,1446551660 +184083,2571,virtual reality,1446551662 +184083,2600,Alternate Reality,1446558120 +184083,2600,mindfuck,1446558123 +184083,2600,Sci-Fi,1446558125 +184083,2617,archaeology,1446556897 +184083,2617,Brendan Fraser,1446556899 +184083,2617,treasure,1446556896 +184083,2692,alternate endings,1446551441 +184083,2692,alternate reality,1446551454 +184083,2692,artistic,1446551446 +184083,2692,humorous,1446551456 +184083,2692,nonlinear,1446551444 +184083,2692,thought-provoking,1446551447 +184083,2692,time loop,1446551452 +184083,2762,Atmospheric,1446558090 +184083,2762,twist ending,1446558084 +184083,2858,black comedy,1446557412 +184083,2858,coming of age,1446557411 +184083,2858,dark comedy,1446557401 +184083,2858,excellent script,1446557418 +184083,2858,midlife crisis,1446557409 +184083,2858,sexuality,1446557414 +184083,2858,thought-provoking,1446557404 +184083,2890,anti-war,1446558030 +184083,2890,black comedy,1446558034 +184083,2890,George Clooney,1446558032 +184083,2890,Gulf War,1446558029 +184083,2959,Brad Pitt,1446551550 +184083,2959,dark,1446551581 +184083,2959,dark comedy,1446551556 +184083,2959,David Fincher,1446551573 +184083,2959,Edward Norton,1446551553 +184083,2959,mental illness,1446551561 +184083,2959,mindfuck,1446551570 +184083,2959,philosophical,1446551566 +184083,2959,philosophy,1446551558 +184083,2959,powerful ending,1446551578 +184083,2959,psychological,1446551565 +184083,2959,psychology,1446551555 +184083,2959,twist ending,1446551549 +184083,2970,Werner Herzog,1446555903 +184083,2976,atmospheric,1446559486 +184083,2976,Martin Scorsese,1446559485 +184083,2985,cyborgs,1446558398 +184083,2985,dystopia,1446558397 +184083,2985,robots,1446558400 +184083,2985,violent,1446558395 +184083,3105,based on a true story,1446553577 +184083,3105,dramatic,1446553575 +184083,3105,Psychiatry,1446553579 +184083,3160,melancholy,1446557326 +184083,3160,Paul Thomas Anderson,1446557334 +184083,3160,Philip Seymour Hoffman,1446557321 +184083,3160,Tom Cruise,1446557323 +184083,3168,Atmospheric,1446553836 +184083,3168,Dennis Hopper,1446553831 +184083,3168,drugs,1446553829 +184083,3168,Jack Nicholson,1446553847 +184083,3168,notable soundtrack,1446553833 +184083,3168,road movie,1446553840 +184083,3168,stoner movie,1446553848 +184083,3174,Andy Kaufman,1446558571 +184083,3174,biography,1446558572 +184083,3174,Jim Carrey,1446558569 +184083,3285,Danny Boyle,1446555110 +184083,3285,drugs,1446555112 +184083,3285,great soundtrack,1446555109 +184083,3285,Leonardo DiCaprio,1446555107 +184083,3285,travel,1446555105 +184083,3285,utopia,1446555103 +184083,3300,Riddick,1446557067 +184083,3300,sci-fi,1446557060 +184083,3300,suspense,1446557065 +184083,3300,Vin Diesel,1446557062 +184083,3418,women,1446557862 +184083,3471,aliens,1446556689 +184083,3471,first contact,1446556691 +184083,3471,sci-fi,1446556693 +184083,3471,Steven Spielberg,1446556695 +184083,3503,atmospheric,1446556058 +184083,3503,dreamlike,1446556060 +184083,3503,meditative,1446556062 +184083,3677,70mm,1446556266 +184083,3677,nature,1446556268 +184083,3677,no dialogue,1446556260 +184083,3677,non-verbal,1446556264 +184083,3677,photography,1446556262 +184083,3752,Jim Carrey,1446558690 +184083,3897,1970s,1446554385 +184083,3897,Cameron Crowe,1446554396 +184083,3897,great soundtrack,1446554389 +184083,3897,journalism,1446554383 +184083,3897,music,1446554381 +184083,3897,rock and roll,1446554379 +184083,4015,Stoner Movie,1446553808 +184083,4148,Hannibal Lecter,1446557872 +184083,4148,serial killer,1446557870 +184083,4226,black and white,1446551730 +184083,4226,cult film,1446551724 +184083,4226,dark,1446551727 +184083,4226,dreamlike,1446551720 +184083,4226,memory loss,1446551734 +184083,4226,Mindfuck,1446551718 +184083,4226,plot twist,1446551736 +184083,4226,psychology,1446551713 +184083,4226,twist ending,1446551712 +184083,4270,adventure,1446556907 +184083,4270,comedy,1446556908 +184083,4370,artificial intelligence,1446556832 +184083,4370,dystopia,1446556834 +184083,4713,drugs,1446553898 +184083,4713,psychedelic,1446553896 +184083,4713,science fiction,1446553901 +184083,4713,trippy,1446553899 +184083,4848,David Lynch,1446558098 +184083,4878,alternate timeline,1446551624 +184083,4878,dreamlike,1446551616 +184083,4878,hallucinatory,1446551632 +184083,4878,mental illness,1446551618 +184083,4878,mindfuck,1446551629 +184083,4878,mystery,1446551634 +184083,4878,philosophy,1446551626 +184083,4878,psychological,1446551637 +184083,4878,psychology,1446551613 +184083,4878,sci-fi,1446551620 +184083,4878,thought-provoking,1446551614 +184083,4878,time travel,1446551610 +184083,4878,twist ending,1446551622 +184083,4975,lucid dreaming,1446554434 +184083,4975,mindfuck,1446554422 +184083,4975,sci-fi,1446554428 +184083,4975,Tom Cruise,1446554426 +184083,5010,heroism,1446557854 +184083,5010,Ridley Scott,1446557853 +184083,5010,true story,1446557855 +184083,5010,War,1446557851 +184083,5498,meaning of life,1446556329 +184083,5903,Christian Bale,1446551335 +184083,5903,drugs,1446551349 +184083,5903,dystopia,1446551332 +184083,5903,gunfight,1446551346 +184083,5903,martial arts,1446551347 +184083,5903,post-apocalyptic,1446551338 +184083,5903,predictable,1446551365 +184083,5903,revolution,1446551339 +184083,5903,thought-provoking,1446551342 +184083,5903,totalitarianism,1446551336 +184083,5956,Daniel Day-Lewis,1446555249 +184083,5956,Martin Scorsese,1446555246 +184083,5956,violent,1446555251 +184083,6270,Akira Kurosawa,1446556285 +184083,6270,dreamlike,1446556292 +184083,6270,meditative,1446556293 +184083,6270,visually appealing,1446556290 +184083,6287,Adam SAndler,1446558662 +184083,6287,comedy,1446558663 +184083,6287,Jack Nicholson,1446558660 +184083,6373,comedy,1446558625 +184083,6373,Jim Carrey,1446558624 +184083,6440,Coen Brothers,1446555598 +184083,6440,Enigmatic,1446555600 +184083,6440,John Turturro,1446555603 +184083,6502,epidemic,1446555030 +184083,6502,post-apocalyptic,1446555020 +184083,6502,sci-fi,1446555032 +184083,6502,survival,1446555025 +184083,6502,suspense,1446555036 +184083,6502,thought-provoking,1446555039 +184083,6502,thriller,1446555034 +184083,6502,visually appealing,1446555028 +184083,6502,zombies,1446555022 +184083,6711,atmospheric,1446557386 +184083,6711,Bill Murray,1446557384 +184083,6711,Melancholic,1446557390 +184083,6711,relationships,1446557392 +184083,6711,Scarlett Johansson,1446557388 +184083,6870,Clint Eastwood,1446558007 +184083,6870,mystery,1446558011 +184083,6870,Sean Penn,1446558009 +184083,6870,twist ending,1446558015 +184083,7254,alternate reality,1446554470 +184083,7254,sci-fi,1446554476 +184083,7254,science fiction,1446554485 +184083,7254,thought-provoking,1446554481 +184083,7254,time travel,1446554469 +184083,7254,twist ending,1446554472 +184083,7254,twists & turns,1446554479 +184083,7367,Coen Brothers,1446555520 +184083,7367,Tom Hanks,1446555522 +184083,7445,Denzel Washington,1446559288 +184083,7458,Brad Pitt,1446557774 +184083,7458,historical epic,1446557776 +184083,7481,aliens,1446552186 +184083,8014,Atmospheric,1446556185 +184083,8014,buddhism,1446556189 +184083,8014,buddhist,1446556192 +184083,8361,apocalypse,1446559073 +184083,8361,catastrophe,1446559071 +184083,8361,natural disaster,1446559084 +184083,8371,Riddick,1446556990 +184083,8371,sci-fi,1446556986 +184083,8371,space,1446556988 +184083,8371,Vin Diesel,1446556991 +184083,8529,airport,1446556778 +184083,8529,funny,1446556777 +184083,8529,Steven Spielberg,1446556780 +184083,8529,tom hanks,1446556775 +184083,8641,comedy,1446553630 +184083,8641,funny,1446553636 +184083,8641,hilarious,1446553634 +184083,8807,Buddy movie,1446553790 +184083,8807,drugs,1446553798 +184083,8807,marijuana,1446553792 +184083,8807,stoner comedy,1446553785 +184083,8807,Stoner Movie,1446553787 +184083,8957,surprise ending,1446558109 +184083,8957,twist ending,1446558106 +184083,8977,Ancient Greece,1446557743 +184083,8977,Biography,1446557750 +184083,8977,bisexual,1446557747 +184083,8977,History,1446557742 +184083,8977,homosexuality,1446557745 +184083,27482,sci-fi,1446558235 +184083,27788,Adrien Brody,1446554497 +184083,27788,amnesia,1446554498 +184083,27788,mental hospital,1446554505 +184083,27788,mental illness,1446554506 +184083,27788,mental institution,1446554503 +184083,27788,mindfuck,1446554500 +184083,27788,time travel,1446554492 +184083,27788,twist ending,1446554502 +184083,30707,boxing,1446557994 +184083,30707,Clint Eastwood,1446557998 +184083,30707,Morgan Freeman,1446557996 +184083,30812,Leonardo DiCaprio,1446559474 +184083,30812,Martin Scorsese,1446559476 +184083,33162,christian,1446557900 +184083,33162,history,1446557903 +184083,33162,medieval,1446557904 +184083,34048,sci-fi,1446556857 +184083,34048,Steven Spielberg,1446556861 +184083,34048,Tom Cruise,1446556854 +184083,34319,cloning,1446556095 +184083,34319,dystopia,1446556091 +184083,34319,Scarlett Johansson,1446556093 +184083,34319,sci-fi,1446556096 +184083,34437,Atmospheric,1446557364 +184083,34437,Bill Murray,1446557357 +184083,34437,Jim Jarmusch,1446557361 +184083,34437,melancholic,1446557359 +184083,34542,bears,1446555910 +184083,34542,documentary,1446555909 +184083,34542,Werner Herzog,1446555912 +184083,34542,wilderness,1446555916 +184083,35836,funny,1446553592 +184083,35836,Judd Apatow,1446553599 +184083,35836,Paul Rudd,1446553596 +184083,35836,romantic comedy,1446553594 +184083,35836,Seth Rogen,1446553590 +184083,36363,cult film,1446554202 +184083,36363,sci-fi,1446554200 +184083,36363,Soviet,1446554208 +184083,36363,Time travel,1446554219 +184083,40278,Gulf War,1446557531 +184083,40278,Jake Gyllenhaal,1446557532 +184083,41997,politics,1446556847 +184083,41997,Steven Spielberg,1446556845 +184083,42725,Jonah Hill,1446553822 +184083,42725,marijuana,1446553816 +184083,42725,stoner,1446553818 +184083,42725,Stoner Movie,1446553820 +184083,43897,Werner Herzog,1446555922 +184083,44199,intelligent thriller,1446558792 +184083,44199,twist ending,1446558790 +184083,44665,Bruce Willis,1446558804 +184083,44665,Film Noir,1446558811 +184083,44665,Morgan Freeman,1446558807 +184083,44665,Revenge,1446558806 +184083,44665,twist ending,1446558802 +184083,44671,Werner Herzog,1446555961 +184083,45672,Adam Sandler,1446558633 +184083,45672,comedy,1446558634 +184083,48043,atmospheric,1446558828 +184083,48043,dreamlike,1446558826 +184083,48043,visually appealing,1446558824 +184083,48385,anti-Semitism,1446554770 +184083,48385,controversial,1446554756 +184083,48385,crude humor,1446554758 +184083,48385,funny,1446554779 +184083,48385,mockumentary,1446554761 +184083,48385,prostitution,1446554771 +184083,48385,Sacha Baron Cohen,1446554763 +184083,48385,satire,1446554755 +184083,48516,Leonardo DiCaprio,1446555174 +184083,48516,Martin Scorsese,1446555176 +184083,49272,007,1446557479 +184083,49272,James Bond,1446557477 +184083,49278,Denzel Washington,1446559308 +184083,49278,sci-fi,1446559307 +184083,49278,time travel,1446559305 +184083,51662,stylized,1446558738 +184083,52042,resistance movement,1446558374 +184083,52042,World War II,1446558371 +184083,52328,Danny Boyle,1446551891 +184083,52328,dark,1446551874 +184083,52328,isolation,1446551880 +184083,52328,madness,1446551888 +184083,52328,sci-fi,1446551873 +184083,52328,space,1446551871 +184083,52328,spaceships,1446551878 +184083,52328,visually stunning,1446551906 +184083,52973,Apatow productions,1446553312 +184083,52973,drugs,1446553305 +184083,52973,Hilarious,1446553314 +184083,52973,Judd Apatow,1446553300 +184083,52973,Katherine Heigl,1446553303 +184083,52973,marijuana,1446553308 +184083,52973,Paul Rudd,1446553301 +184083,52973,Seth Rogen,1446553298 +184083,53550,Vietnam War,1446555932 +184083,53550,Werner Herzog,1446555940 +184083,53873,comedy,1446554061 +184083,53873,drugs,1446554063 +184083,53873,marijuana,1446554064 +184083,53873,stoner movie,1446554065 +184083,53873,weed,1446554062 +184083,53993,Steve Carell,1446558645 +184083,54272,comedy,1446552692 +184083,54272,hilarious,1446552695 +184083,54272,simpsons,1446552693 +184083,54503,comedy,1446553216 +184083,54503,drinking,1446553235 +184083,54503,friendship,1446553221 +184083,54503,Highly quotable,1446553231 +184083,54503,hilarious,1446553224 +184083,54503,Michael Cera,1446553218 +184083,54503,Seth Rogen,1446553223 +184083,55820,brutal,1446555454 +184083,55820,Coen Brothers,1446555439 +184083,55820,dark,1446555444 +184083,55820,great acting,1446555441 +184083,55820,serial killer,1446555452 +184083,55820,suspense,1446555448 +184083,55820,thriller,1446555446 +184083,56145,apocalypse,1446558771 +184083,56145,atmospheric,1446558769 +184083,56145,stephen king,1446558762 +184083,56145,surprise ending,1446558767 +184083,56145,twist ending,1446558764 +184083,56251,Based on a TV show,1446552656 +184083,56251,futurama,1446552653 +184083,56251,intelligent humor,1446552657 +184083,56367,comedy,1446553168 +184083,56367,cult film,1446553174 +184083,56367,independent film,1446553185 +184083,56367,Michael Cera,1446553178 +184083,56367,notable soundtrack,1446553171 +184083,56782,Daniel Day-Lewis,1446557281 +184083,56782,western,1446557289 +184083,58998,Apatow productions,1446554900 +184083,58998,comedy,1446554889 +184083,58998,Jonah Hill,1446554902 +184083,58998,Paul Rudd,1446554892 +184083,59022,stoner comedy,1446553967 +184083,59615,adventure,1446556874 +184083,59615,archaeology,1446556871 +184083,59615,Harrison Ford,1446556873 +184083,59615,indiana jones,1446556870 +184083,59784,comedy,1446553505 +184083,59784,Jack Black,1446553507 +184083,59784,pixar,1446553514 +184083,60161,intelligent humor,1446552598 +184083,60333,antarctica,1446555880 +184083,60333,Philosophical,1446555882 +184083,60333,Werner Herzog,1446555878 +184083,61024,buddy movie,1446553467 +184083,61024,comedy,1446553464 +184083,61024,drugs,1446553465 +184083,61024,James Franco,1446553452 +184083,61024,Seth Rogen,1446553462 +184083,61024,Stoner Movie,1446553461 +184083,61024,weed,1446553471 +184083,61132,Ben Stiller,1446554738 +184083,61132,funny,1446554742 +184083,61323,Brad Pitt,1446555467 +184083,61323,Coen Brothers,1446555465 +184083,61323,dark comedy,1446555463 +184083,61323,John Malkovich,1446555470 +184083,61323,satire,1446555469 +184083,62434,Kevin Smith,1446553481 +184083,62434,Nudity (Topless),1446553486 +184083,62434,Seth Rogen,1446553485 +184083,62434,Sex Comedy,1446553483 +184083,62434,Sexual Humor,1446553482 +184083,62956,futurama,1446552667 +184083,62956,intelligent humor,1446552669 +184083,62956,nerd humor,1446552673 +184083,63082,cinematography,1446555059 +184083,63082,danny boyle,1446555065 +184083,63082,India,1446555053 +184083,63113,James Bond,1446557487 +184083,63515,Christianity,1446556158 +184083,63515,monastery,1446556148 +184083,63515,Religious,1446556161 +184083,63515,Spiritual,1446556160 +184083,64957,Brad Pitt,1446556227 +184083,64957,original plot,1446556229 +184083,64969,funny,1446558588 +184083,64969,Jim carrey,1446558585 +184083,64969,positive thinking,1446558589 +184083,65130,abortion,1446557517 +184083,65130,Kate Winslet,1446557515 +184083,65130,Sam Mendes,1446557519 +184083,66297,futurama,1446552643 +184083,66297,intelligent humor,1446552642 +184083,66297,sci fi,1446552645 +184083,67087,Paul Rudd,1446553366 +184083,68659,geek,1446553677 +184083,68659,Seth Rogen,1446553679 +184083,68659,star wars,1446553676 +184083,69122,casino,1446553444 +184083,69122,Drinking,1446553433 +184083,69122,drugs,1446553437 +184083,69122,funny,1446553440 +184083,69122,Las Vegas,1446553431 +184083,69122,Zach Galifianakis,1446553435 +184083,69481,anti-war,1446557627 +184083,69481,realistic,1446557623 +184083,69481,war,1446557621 +184083,69757,artistic,1446554675 +184083,69757,humor,1446554684 +184083,69757,intelligent,1446554678 +184083,69757,relationships,1446554679 +184083,69757,romance,1446554681 +184083,69784,gay,1446554801 +184083,69784,homosexuality,1446554798 +184083,69784,mockumentary,1446554796 +184083,69784,Nudity (Full Frontal),1446554799 +184083,69784,Sacha Baron Cohen,1446554794 +184083,71464,black humour,1446555499 +184083,71464,Bleak,1446555504 +184083,71464,coen brothers,1446555494 +184083,71464,dark comedy,1446555501 +184083,71464,Jewish,1446555496 +184083,71535,Bill Murray,1446552503 +184083,71535,comedy,1446554727 +184083,71535,dark comedy,1446552504 +184083,71535,Emma Stone,1446552509 +184083,71535,funny,1446552506 +184083,71535,parody,1446552516 +184083,71535,post-apocalyptic,1446552501 +184083,71535,Woody Harrelson,1446552508 +184083,71535,zombies,1446552500 +184083,72378,apocalypse,1446559096 +184083,72378,bad science,1446559092 +184083,72378,sci-fi,1446559097 +184083,72378,science fiction,1446559099 +184083,72378,Special Effects,1446559094 +184083,72998,3d,1446551127 +184083,72998,aliens,1446551124 +184083,72998,bad science,1446551173 +184083,72998,beautiful scenery,1446551131 +184083,72998,cgi,1446551151 +184083,72998,environmental,1446551143 +184083,72998,fantasy,1446551163 +184083,72998,futuristic,1446551122 +184083,72998,graphic design,1446551129 +184083,72998,James Cameron,1446551141 +184083,72998,military,1446551139 +184083,72998,mythology,1446551179 +184083,72998,politics,1446551165 +184083,72998,predictable,1446551133 +184083,72998,sci-fi,1446551121 +184083,72998,science fiction,1446551163 +184083,72998,Sigourney Weaver,1446551149 +184083,72998,visually stunning,1446551137 +184083,72998,war,1446551145 +184083,73266,funny,1446553725 +184083,73266,Michael Cera,1446553721 +184083,73266,Steve Buscemi,1446553723 +184083,74275,black comedy,1446558603 +184083,74275,gay,1446558601 +184083,74458,asylum,1446555202 +184083,74458,insanity,1446555192 +184083,74458,Leonardo DiCaprio,1446555194 +184083,74458,Martin Scorsese,1446555198 +184083,74458,Mental Institution,1446555215 +184083,74458,mentali illness,1446555229 +184083,74458,mindfuck,1446555200 +184083,74458,plot twist,1446555196 +184083,74458,psychological,1446555190 +184083,74458,thought-provoking,1446555209 +184083,74458,twist ending,1446555189 +184083,74458,twisted ending,1446555205 +184083,74727,Soviet Union,1446554153 +184083,77795,plot holes,1446569146 +184083,77795,post-apocalyptic,1446569128 +184083,77795,space travel,1446569127 +184083,77795,virtual reality,1446569136 +184083,77866,adventure,1446557789 +184083,79057,action,1446556925 +184083,79132,alternate reality,1446551375 +184083,79132,complicated,1446551384 +184083,79132,dreamlike,1446551387 +184083,79132,dreams,1446551389 +184083,79132,intellectual,1446551391 +184083,79132,philosophy,1446551396 +184083,79132,psychological,1446551409 +184083,79132,psychology,1446551412 +184083,79132,sci-fi,1446551382 +184083,79132,science fiction,1446551415 +184083,79132,suspense,1446551400 +184083,79132,thought-provoking,1446551379 +184083,79132,twist ending,1446551393 +184083,79132,unpredictable,1446551418 +184083,79357,sci-fi,1446554459 +184083,79357,thought provoking,1446554457 +184083,79357,time travel,1446554462 +184083,79702,awesome soundtrack,1446553146 +184083,79702,based on a comic,1446553128 +184083,79702,Edgar Wright,1446553143 +184083,79702,funny,1446553125 +184083,79702,Michael Cera,1446553121 +184083,79702,music,1446553133 +184083,79702,video games,1446553117 +184083,79702,visually appealing,1446553119 +184083,81562,intense,1446555086 +184083,81562,James Franco,1446555084 +184083,81562,loneliness,1446555077 +184083,81562,nature,1446555081 +184083,81562,survival,1446555075 +184083,81562,true story,1446555073 +184083,81562,wilderness,1446555083 +184083,82459,Coen Brothers,1446555480 +184083,82459,Jeff Bridges,1446555478 +184083,82459,remake,1446555487 +184083,82459,Western,1446555481 +184083,83349,comic book,1446553650 +184083,83349,gadgets,1446553656 +184083,83349,predictable,1446553653 +184083,83349,Seth Rogen,1446553652 +184083,84772,Nick Frost,1446552589 +184083,84772,Simon Pegg,1446552590 +184083,85510,insanity,1446558710 +184083,85510,soundtrack,1446558705 +184083,85510,Surreal,1446558703 +184083,85510,visually stunning,1446558718 +184083,86833,comedy,1446553344 +184083,86833,crude humor,1446553349 +184083,86833,Judd Apatow,1446553346 +184083,87222,Weak plot,1446553623 +184083,88954,Buddy Movie,1446553869 +184083,88954,Stoner Comedy,1446553873 +184083,89864,Anna Kendrick,1446553534 +184083,89864,cancer,1446553530 +184083,89864,comedy,1446553542 +184083,89864,drugs,1446553553 +184083,89864,emotional,1446553532 +184083,89864,friendship,1446553541 +184083,89864,funny scenes,1446553551 +184083,89864,humor,1446553554 +184083,89864,Joseph Gordon-Levitt,1446553526 +184083,89864,predictable,1446553538 +184083,89864,Seth Rogen,1446553527 +184083,89864,touching,1446553536 +184083,90746,comic book,1446556753 +184083,90746,Steven Spielberg,1446556751 +184083,90866,Martin Scorsese,1446559466 +184083,90866,Sacha Baron Cohen,1446559467 +184083,90866,visually appealing,1446559463 +184083,92420,sci-fi,1446559344 +184083,92420,supernatural powers,1446559341 +184083,93510,drugs,1446554710 +184083,93510,funny,1446554714 +184083,93510,Jonah Hill,1446554712 +184083,94677,funny,1446554816 +184083,94677,sacha baron cohen,1446554814 +184083,94864,aliens,1446552149 +184083,94864,bad science,1446552173 +184083,94864,predictable,1446552163 +184083,94864,Ridley Scott,1446552154 +184083,94864,sci-fi,1446552157 +184083,94864,scifi,1446552151 +184083,94864,space travel,1446552155 +184083,95441,crude humor,1446553416 +184083,95441,Funny,1446553422 +184083,95441,predictable,1446553418 +184083,95441,Seth MacFarlane,1446553420 +184083,96079,Daniel Craig,1446557457 +184083,96079,James Bond,1446557450 +184083,96588,Funny,1446559329 +184083,96588,music,1446559327 +184083,96610,bad science,1446551771 +184083,96610,Bruce Willis,1446551750 +184083,96610,clever,1446551761 +184083,96610,dystopia,1446551748 +184083,96610,film noir,1446551777 +184083,96610,Joseph Gordon-Levitt,1446551753 +184083,96610,organized crime,1446551759 +184083,96610,plot holes,1446551765 +184083,96610,sci-fi,1446551747 +184083,96610,science fiction,1446551768 +184083,96610,tense,1446551773 +184083,96610,time travel,1446551745 +184083,96610,visually appealing,1446551756 +184083,97938,cinematography,1446556201 +184083,97938,religion,1446556202 +184083,97938,visually appealing,1446556199 +184083,98961,American propaganda,1446557659 +184083,98961,military,1446557651 +184083,98961,politics,1446557655 +184083,98961,terrorism,1446557653 +184083,101741,Danny Boyle,1446555096 +184083,101741,Mindfuck,1446555095 +184083,101864,dystopia,1446552101 +184083,101864,post-apocalyptic,1446552097 +184083,101864,sci-fi,1446552099 +184083,101864,Tom Cruise,1446552103 +184083,102123,apocalypse,1446553696 +184083,102123,hilarious,1446553701 +184083,102123,James Franco,1446553694 +184083,102123,Jonah Hill,1446553711 +184083,102123,Michael Cera,1446553699 +184083,102123,Seth Rogen,1446553698 +184083,102666,Soviet,1446554167 +184083,102666,time travel,1446554160 +184083,103042,comic book,1446558755 +184083,103042,superhero,1446558750 +184083,103042,Superman,1446558752 +184083,103042,visually appealing,1446558748 +184083,103042,Zack Snyder,1446558756 +184083,103253,dystopia,1446551242 +184083,103253,Jodie Foster,1446551249 +184083,103253,Matt Damon,1446551253 +184083,103253,medicine,1446551263 +184083,103253,military,1446551258 +184083,103253,sci-fi,1446551247 +184083,103253,science fiction,1446551243 +184083,103341,aliens,1446552551 +184083,103341,drinking,1446552557 +184083,103341,Edgar Wright,1446552542 +184083,103341,funny,1446552560 +184083,103341,Simon Pegg,1446552539 +184083,104243,aliens,1446556973 +184083,104243,sci-fi,1446556978 +184083,104243,space western,1446556980 +184083,104243,Vin Diesel,1446556975 +184083,104841,cinematography,1446551799 +184083,104841,intense,1446551802 +184083,104841,sci-fi,1446551811 +184083,104841,space,1446551795 +184083,104841,suspense,1446551808 +184083,104841,visually appealing,1446551797 +184083,105844,slavery,1446556557 +184083,107406,cannibalism,1446551306 +184083,107406,dark,1446551311 +184083,107406,dystopian,1446551315 +184083,107406,Korean,1446551309 +184083,107406,Plot twist,1446551301 +184083,107406,post-apocalyptic,1446551290 +184083,107406,sci-fi,1446551313 +184083,107406,violence,1446551304 +184083,109487,black hole,1446551510 +184083,109487,father - child relationship,1446551958 +184083,109487,Matthew McConaughey,1446551497 +184083,109487,philosophical issues,1446551507 +184083,109487,physics,1446551500 +184083,109487,relativity,1446551490 +184083,109487,sci-fi,1446551485 +184083,109487,science fiction,1446551504 +184083,109487,sentimental,1446551509 +184083,109487,space,1446551484 +184083,109487,space travel,1446551512 +184083,109487,thought-provoking,1446551492 +184083,109487,time travel,1446551494 +184083,109487,time-travel,1446551489 +184083,110127,Dark,1446558848 +184083,110127,Darren Aronofsky,1446558850 +184083,110127,unlikeable characters,1446558846 +184083,111364,bland hero,1446551195 +184083,111364,Godzilla,1446551193 +184083,111781,Tom Cruise,1446557500 +184083,112138,hilarious,1446553611 +184083,112138,Jonah Hill,1446553612 +184083,112623,action,1446551080 +184083,112623,apocalyptic,1446551067 +184083,112623,CGI,1446551087 +184083,112623,emotional,1446551076 +184083,112623,genetics,1446551081 +184083,112623,Matt Reeves,1446551094 +184083,112623,post-apocalyptic,1446551083 +184083,112623,sci-fi,1446551077 +184083,112623,sequel,1446551095 +184083,112623,talking animals,1446551089 +184083,112623,virus,1446551092 +184083,113741,parallel universe,1446558264 +184083,116225,History,1446556403 +184083,116225,Mamonov,1446556400 +184083,116227,Mamonov,1446556389 +184083,116227,Pavel Lungin,1446556379 +184083,117867,History,1446557267 +184083,119141,funny,1446554840 +184083,119141,James Franco,1446554827 +184083,119141,North Korea,1446554835 +184083,119141,satire,1446554830 +184083,119141,Seth Rogen,1446554826 +184122,260,nice movie,1439870839 +184122,260,wanna watch,1439870847 +184136,41566,forest fair,1143035098 +184136,42011,forest fair,1141397196 +184136,43558,forest fair,1142001588 +184136,43679,forest fair,1143464788 +184146,4878,my favourite,1153920781 +184167,899,Musical & Dance,1437264802 +184167,1035,Musical & Dance,1437264844 +184173,260,starwars,1430246864 +184180,41,great acting,1390226381 +184180,41,Ian McKellen,1390226199 +184180,500,Robin Williams,1390227389 +184180,593,disturbing,1390226104 +184180,593,great acting,1390226104 +184180,593,psychological,1390226262 +184180,593,psychology,1390226346 +184180,1073,cynical protangonist,1390226520 +184180,1136,cult film,1390227257 +184180,1136,satire,1390227257 +184180,1136,witty,1390227257 +184180,1193,psychology,1390226300 +184180,1193,stanley kubrick,1390226286 +184180,1199,dark comedy,1390227292 +184180,1199,dystopia,1390227296 +184180,1199,surreal,1390227298 +184180,1206,disturbing,1390226504 +184180,1206,powerful,1390226504 +184180,1206,Stanley Kubrick,1390226504 +184180,1258,disturbing,1390226370 +184180,1258,great acting,1390226370 +184180,1258,psychological,1390225997 +184180,1258,psychology,1390226336 +184180,1258,stanley kubrick,1390225976 +184180,1265,Bill Murray,1390226791 +184180,1265,inane,1390226791 +184180,1265,twee,1390226791 +184180,1285,dark comedy,1390227424 +184180,1411,based on a play,1390250761 +184180,1411,Kenneth Branagh,1390250754 +184180,1411,Shakespeare,1390250758 +184180,1967,David Bowie,1390226544 +184180,1967,musical,1390226544 +184180,2555,inane,1390226619 +184180,2657,musical,1390226024 +184180,2657,queer,1390226024 +184180,2730,slow moving plot,1390227352 +184180,2959,disturbing,1390226557 +184180,2959,psychological,1390226557 +184180,3081,Johnny Depp,1390226600 +184180,3578,epic,1390226764 +184180,3578,Russell Crowe,1390226764 +184180,3598,Ethan Hawke,1390226668 +184180,3723,Mel Gibson,1390250715 +184180,3979,Adam Sandler,1390227081 +184180,4016,cynical protangonist,1390226446 +184180,4016,witty,1390226446 +184180,4642,musical,1390226405 +184180,4642,queer,1390226405 +184180,4754,cult film,1390301110 +184180,4754,great soundtrack,1390301110 +184180,4754,pagan,1390301110 +184180,5128,no plot,1390226704 +184180,6373,Jim Carey,1390226723 +184180,6539,Johnny Depp,1390226043 +184180,6539,Kiera Knightly,1390226182 +184180,6539,Orlando Bloom,1390226182 +184180,8784,Zach Braff,1390226654 +184180,32296,Sandra Bullock,1390227400 +184180,44191,social commentary,1390227365 +184180,44195,cynical protagonist,1390226582 +184180,45666,inane,1390226679 +184180,45666,Jack Black,1390226679 +184180,47491,disturbing,1390250630 +184180,47491,psychological,1390250630 +184180,47491,twisted,1390250630 +184180,47810,stupid and unnecessary,1390301227 +184180,47810,unnecessary remake,1390301205 +184180,57669,dark comedy,1390227420 +184180,99149,musical,1390226418 +184180,99149,powerful,1390226418 +184183,110,epic,1443148538 +184183,110,Medieval,1443148532 +184183,260,sci-fi,1442169410 +184183,260,space action,1442169421 +184183,318,imdb top 250,1442615195 +184183,318,justice,1442615192 +184183,480,Dinosaurs,1443148563 +184183,593,psychothriller,1444014286 +184183,1682,philosophy,1442615158 +184183,1682,surveillance,1442615167 +184183,7458,Epic,1443148675 +184183,95311,Pixar,1443148494 +184183,117529,dinosaurs,1443148646 +184189,3175,sci-fi,1429752864 +184189,3175,screwball comedy,1429752864 +184189,3175,standard tim allen,1429752864 +184192,48738,Nudity (Topless),1194009485 +184217,260,classic sci-fi,1437717259 +184217,260,old special effects,1437717301 +184217,260,science fantasy,1437717315 +184217,260,space epic,1437717274 +184217,318,friendship,1437802433 +184217,318,great soundtrack,1437802483 +184217,318,inspirational,1437802450 +184217,318,narrated,1437802448 +184217,318,prison,1437802435 +184217,318,sentimental,1437802440 +184217,541,artificial intelligence,1437723532 +184217,541,atmospheric,1437723536 +184217,541,classic,1438827529 +184217,541,cult film,1438827526 +184217,541,dreamlike,1438827535 +184217,541,great soundtrack,1437723515 +184217,541,robots,1438827530 +184217,541,stylized,1437723529 +184217,555,dialogue,1437772481 +184217,555,violent,1437772467 +184217,648,Action,1440296661 +184217,648,espionage,1440296644 +184217,648,plot twists,1440296659 +184217,714,allegorical,1438039347 +184217,714,black and white,1438039308 +184217,714,boring,1438039339 +184217,714,dreamlike,1438039312 +184217,714,great soundtrack,1438039319 +184217,714,life & death,1438039334 +184217,714,melancholy,1438039316 +184217,714,visually appealing,1438039306 +184217,798,disaster film,1438749480 +184217,798,flooded sets,1438749482 +184217,920,Oscar (Best Picture),1437786520 +184217,924,artificial intelligence,1437723236 +184217,924,cinematography,1437723224 +184217,924,classic,1437723228 +184217,924,sci-fi,1437723232 +184217,924,space,1437723225 +184217,924,superb soundtrack,1437723219 +184217,1094,Transgendered,1438039501 +184217,1094,twist ending,1438039495 +184217,1172,classical,1437722308 +184217,1172,Italian,1437722313 +184217,1172,nostalgic,1437722304 +184217,1172,sentimental,1437722302 +184217,1172,superb soundtrack,1437722662 +184217,1199,bureaucracy,1437722705 +184217,1199,dreamlike,1437722710 +184217,1199,dystopia,1437722678 +184217,1199,futuristic,1437722688 +184217,1199,imagination,1437722707 +184217,1199,sci-fi,1437722712 +184217,1199,surreal,1437722682 +184217,1219,Alfred Hitchcock,1453688952 +184217,1219,black and white,1453688961 +184217,1219,cinematography,1453688972 +184217,1219,classic,1453688959 +184217,1219,mental illness,1453688965 +184217,1219,motel,1453688991 +184217,1219,mother-son relationship,1453689002 +184217,1219,multiple personality,1453689050 +184217,1219,psychology,1453689062 +184217,1219,serial killer,1453689059 +184217,1219,suspense,1453688980 +184217,1227,Ennio Morricone,1437722855 +184217,1227,organized crime,1437722851 +184217,1227,superb soundtrack,1437722867 +184217,1232,art,1437888209 +184217,1232,dialogue driven,1437888222 +184217,1232,dreamlike,1437888206 +184217,1232,dystopia,1437888202 +184217,1232,long,1437888215 +184217,1232,philosophical,1437888204 +184217,1238,superb soundtrack,1437722991 +184217,1253,first contact,1438827926 +184217,2021,aliens,1437723919 +184217,2021,fantasy,1437723922 +184217,2021,sci-fi,1437723923 +184217,2021,slow paced,1437723910 +184217,2119,stephen king,1437771964 +184217,2161,Fantasy,1438828323 +184217,2161,soundtrack,1438828331 +184217,2313,Atmospheric,1437723873 +184217,2313,stylized,1437723877 +184217,2672,alternate reality,1437889006 +184217,2672,belivable science,1437889016 +184217,2672,dystopia,1437889017 +184217,2672,great plot,1437889009 +184217,2672,virtual reality,1437889004 +184217,2762,acting,1438673320 +184217,2762,Atmospheric,1438673312 +184217,2762,great ending,1438673305 +184217,2762,mindfuck,1438673316 +184217,2762,psychological,1438673314 +184217,2762,psychology,1438673309 +184217,2762,twist ending,1438673298 +184217,2762,unique,1438673322 +184217,2787,anthology,1437802592 +184217,2819,conspiracy,1446680406 +184217,2819,espionage,1446680413 +184217,2819,Robert Redford,1446680420 +184217,2819,spy,1446680411 +184217,3052,controversial,1438039743 +184217,3052,not funny,1438039759 +184217,3052,offensive,1438039767 +184217,3052,religion,1438039740 +184217,3052,satire,1438039738 +184217,3328,great soundtrack,1438039414 +184217,3328,hip hop,1438039398 +184217,3328,hit men,1438039422 +184217,3328,mafia,1438039428 +184217,3503,alien contact,1437888254 +184217,3503,atmospheric,1437888245 +184217,3503,better than remake,1437888267 +184217,3503,cerebral,1437888277 +184217,3503,dreamlike,1437888247 +184217,3503,enigmatic,1437888255 +184217,3503,little dialogue,1437888270 +184217,3503,meditative,1437888287 +184217,3503,open ending,1437888281 +184217,3503,psychological,1437888258 +184217,3503,space,1437888249 +184217,3503,surreal,1437888251 +184217,3623,action,1438825188 +184217,3623,espionage,1438825191 +184217,3623,Lame ending,1438825240 +184217,3623,suspense,1438825193 +184217,3706,devil,1438828906 +184217,3706,mystery,1438828903 +184217,3706,twist ending,1438829014 +184217,3706,Voodoo,1438828905 +184217,3740,anti-hero,1438828148 +184217,3932,invisibility,1438827176 +184217,3932,Special Effects,1438827183 +184217,4043,father-son relationship,1438749206 +184217,4043,great soundtrack,1438749219 +184217,4546,devastating,1440621665 +184217,4546,disturbing,1440621655 +184217,4546,kidnapping,1440621657 +184217,4546,Obsession,1440621663 +184217,4626,End of the world,1437788102 +184217,5062,changed identity,1450148469 +184217,5062,conspiracy,1450148462 +184217,5062,identity,1450148466 +184217,5062,mysterious organization,1450148474 +184217,5062,plastic surgery,1450148478 +184217,5062,secret societies,1450148463 +184217,5062,surgery,1450148470 +184217,5893,femme fatale,1449842379 +184217,5893,Linda Fiorentino,1449842388 +184217,5893,neo-noir,1449842376 +184217,5893,small town,1449842395 +184217,5893,well written,1449842385 +184217,6301,bullying,1439006405 +184217,6301,cinematography,1439006415 +184217,6301,controversial,1439006391 +184217,6301,disturbing,1439006383 +184217,6301,moral ambiguity,1439006402 +184217,6301,revenge,1439006388 +184217,6301,tense,1439006386 +184217,6301,village,1439006393 +184217,6301,violence,1439006434 +184217,6818,disturbing,1437722919 +184217,6818,visceral,1437722924 +184217,6967,twist ending,1438826594 +184217,7300,car chase,1450198794 +184217,7300,freedom,1450198786 +184217,7300,road movie,1450198791 +184217,7616,murder,1440296705 +184217,7883,cinematography,1438826694 +184217,7883,voodoo,1438826691 +184217,8235,real stunts,1437802762 +184217,8235,silent movie,1437802753 +184217,26285,cult film,1438828072 +184217,26285,Directorial Debut,1438828074 +184217,26285,parody,1438828087 +184217,26285,unique,1438828091 +184217,26294,feel-good,1437802378 +184217,26294,great soundtrack,1437802370 +184217,26294,Sergio Leone,1437802368 +184217,27461,reality TV,1437771621 +184217,27584,alternate reality,1438664119 +184217,27584,annoying characters,1438664202 +184217,27584,horror,1438664038 +184217,27584,supernatural,1438664165 +184217,27584,weird,1438664035 +184217,31948,claustrophobic,1439616043 +184217,31948,curiosity,1439616072 +184217,31948,kidnapping,1439616082 +184217,39625,Ennio Morricone,1450569105 +184217,42556,multiple roles,1438827815 +184217,45442,natural disaster,1438828263 +184217,45442,ocean,1438828269 +184217,45442,predictable,1438828254 +184217,45442,unrealistic,1438828252 +184217,51540,cinematography,1438828755 +184217,51540,detective,1438828761 +184217,51540,long,1438828777 +184217,51540,obsession,1438828758 +184217,51540,serial killer,1438828753 +184217,51540,slow,1438828765 +184217,51540,stylized,1438828771 +184217,52885,alternate reality,1437888029 +184217,52885,atmospheric,1437888020 +184217,52885,dreamlike,1437888036 +184217,52885,dreams,1437888013 +184217,52885,hallucinatory,1437888027 +184217,52885,soundtrack,1437888065 +184217,52885,surreal,1437888015 +184217,53125,Overlong,1452666531 +184217,54503,comedy,1453788907 +184217,54503,crude humor,1453788918 +184217,54503,hilarious,1453788914 +184217,55067,Exorcism,1438827050 +184217,55118,dark hero,1438749285 +184217,55118,disturbing,1438749290 +184217,55118,Russian mafia,1438749281 +184217,55118,tense,1438749292 +184217,62203,bloody,1439006293 +184217,62203,disturbing,1439006274 +184217,62203,extremely violent,1439006277 +184217,62203,shocking,1439006275 +184217,62203,torture,1439006272 +184217,62203,unusual,1439006291 +184217,63181,bad acting,1439875024 +184217,63181,creative,1439875033 +184217,63181,dream like,1439875005 +184217,63181,gore,1439874984 +184217,63181,stylized,1439874987 +184217,63181,unpredictable,1439875069 +184217,64037,disturbing,1439006215 +184217,64037,suspenseful,1439006223 +184217,64037,thriller,1439006208 +184217,64037,twisted ending,1439006218 +184217,66090,dark,1439006324 +184217,66090,intense,1439006320 +184217,71304,dark comedy,1438826846 +184217,71304,horror,1438826849 +184217,71304,thought-provoking,1438826851 +184217,71304,vampires,1438826853 +184217,73211,based on a book,1438586075 +184217,73211,character driven,1438586062 +184217,73211,disease,1438586054 +184217,73211,innovative,1438586064 +184217,73211,intense,1438586059 +184217,73211,isolation,1438586121 +184217,73211,mystery,1438586066 +184217,73211,original,1438586122 +184217,73211,radio station,1438586078 +184217,73211,zombies,1438586052 +184217,77795,open ending,1437888364 +184217,77795,space travel,1437888360 +184217,78679,Graphic violence,1439006353 +184217,78774,aging,1438980775 +184217,78774,open ended,1438980753 +184217,78774,spiral down,1438980825 +184217,79720,cinematography,1438674478 +184217,79720,Corruption,1438674461 +184217,79720,Crime Family,1438674464 +184217,79720,disturbing,1438674466 +184217,79720,engaging,1438674469 +184217,79720,great performances,1438674471 +184217,80862,documentary,1438674538 +184217,80862,mockumentary,1438674542 +184217,80862,thought-provoking,1438674532 +184217,89343,FBI,1438039699 +184217,89343,gory,1438039705 +184217,89343,Religion,1438039695 +184217,89343,social commentary,1438039708 +184217,90057,apocalyptic,1437888489 +184217,90057,depressing,1437888495 +184217,90057,mental illness,1437888488 +184217,90057,psychology,1437888502 +184217,93954,single shot,1438675231 +184217,96655,crime,1452736002 +184217,96655,family,1452736017 +184217,96655,human condition,1452736011 +184217,96655,near future,1452736028 +184217,96655,robots,1452735999 +184217,96655,soft crime,1452736019 +184217,96815,anthology,1437724621 +184217,96815,shorts,1437724619 +184217,98361,cinematography,1438039545 +184217,98361,vampires,1438039549 +184217,99750,hitman,1437888650 +184217,99750,twisted morale,1437888654 +184217,99750,violence,1437888647 +184217,104457,funny,1438830135 +184217,104457,horror,1438830133 +184217,104457,slasher,1438830132 +184217,104457,twist,1438830138 +184217,104457,violent,1438830136 +184217,105835,cinematography,1440016372 +184217,105835,confusing,1440016375 +184217,105835,slow paced,1440016381 +184217,105835,surreal,1440016370 +184217,107069,American propaganda,1438674506 +184217,110286,money,1438746880 +184217,111384,crime,1439045022 +184217,111384,indie,1439045026 +184217,111384,revenge,1439045021 +184217,111384,tense,1439045058 +184217,111384,thriller,1439045032 +184217,111781,Action,1438840488 +184217,112171,cliché,1437889334 +184217,112171,invincible,1437889320 +184217,112171,revenge,1437889302 +184217,112183,alter ego,1438675207 +184217,112183,great performances,1438675190 +184217,112183,single shot,1438675199 +184217,113573,black and white,1437889389 +184217,113573,Eva Green,1437889385 +184217,113573,Jessica Alba,1437889390 +184217,113573,stylized,1437889380 +184217,113573,violence,1437889387 +184217,113780,archeology,1438840351 +184217,113780,cave,1438840353 +184217,113780,Claustrophobic,1438840348 +184217,113780,devil,1438840355 +184217,113780,hell,1438840345 +184217,113780,sins,1438840356 +184217,113780,underground,1438840359 +184217,114060,crime,1437889281 +184217,114060,plot twist,1437889288 +184217,114060,thriller,1437889284 +184217,114246,detective,1437889354 +184217,114246,kidnapping,1437889358 +184217,114246,serial killer,1437889361 +184217,114342,beautiful scenery,1437889198 +184217,114342,european film,1437889203 +184217,114342,relationship drama,1437889195 +184217,114670,crazy,1438039637 +184217,114670,dark humor,1438039632 +184217,114670,imaginative,1438039644 +184217,114670,torture,1438039638 +184217,116138,corruption,1437889216 +184217,116138,politics,1437889220 +184217,116138,social commentary,1437889226 +184217,116897,anthology,1446790716 +184217,116897,black comedy,1446790720 +184217,116897,dark humor,1446790711 +184217,116897,Excellent acting,1446790714 +184217,117121,acting,1438672696 +184217,117121,Atmospheric,1438672699 +184217,117121,psychology,1438672695 +184217,117121,twist ending,1438672698 +184217,117529,dinosaurs,1437724807 +184217,117529,island,1437724809 +184217,118256,cheesy,1438997775 +184217,118256,police,1438997780 +184217,118256,werewolf,1438997783 +184217,120799,boring,1439187708 +184217,120799,inferior sequel,1439187715 +184217,120799,robots,1439187711 +184217,120799,time-travel,1439187723 +184217,121231,Creepy,1437721824 +184217,121231,horror,1437721827 +184217,121231,Pacing,1437721833 +184217,122886,action,1453859305 +184217,122886,Industrial Light & Magic,1453859337 +184217,122886,Plot Recycling,1453859298 +184217,122886,space,1453859313 +184217,122886,too long,1453859351 +184217,122886,unoriginal,1453859353 +184217,122886,Visually appealing,1453859326 +184217,122886,Weak villain,1453859356 +184217,122900,ants,1450498988 +184217,122900,comic book,1450498982 +184217,122900,entertaining,1450498986 +184217,122900,heist,1450498984 +184217,122900,Marvel,1450498977 +184217,122900,sci-fi,1450498980 +184217,122900,superhero,1450498978 +184217,127116,psychology,1453524777 +184217,127116,science,1453524776 +184217,128360,Dialogue,1452488643 +184217,128360,one-room,1452488654 +184217,128360,Quentin Tarantino,1452488633 +184217,128360,tension building,1452488639 +184217,128360,Western,1452488648 +184217,134130,cheesy ending,1451540954 +184217,134130,disappointing,1451541015 +184217,134130,mars,1451540981 +184217,134130,NASA,1451540986 +184217,134130,Near Future,1451540984 +184217,134130,overrated,1451540965 +184217,134130,predictible,1451540974 +184217,134130,propaganda,1451540971 +184217,134130,pseudo intellectual,1451540962 +184217,134130,space travel,1451540988 +184217,134170,8o's,1437889238 +184217,134170,martial arts,1437889248 +184217,134170,parody,1437889234 +184217,134170,ridiculous,1437889244 +184217,134170,time travel,1437889246 +184217,139052,murder,1441780555 +184217,139385,bear Mouling,1452666099 +184217,139385,golden globe,1452666127 +184217,139385,Overlong,1452666258 +184217,139644,atmospheric,1451719347 +184217,139644,cartel,1451719336 +184217,139644,dialogue,1451719327 +184217,139644,great sountrack,1451719331 +184217,139644,organized crime,1451719350 +184217,139644,revenge,1451719352 +184217,139644,tension,1451719345 +184217,141890,Child Soldiers,1445839689 +184217,142999,twist ending,1445735068 +184217,145080,horror,1453518054 +184217,145080,mystery,1453518055 +184217,148626,finance,1453391856 +184217,148626,interesting,1453391843 +184217,148626,makes good points,1453391847 +184217,148626,political,1453391849 +184225,84944,netflix streaming,1356830977 +184234,266,Dramatic,1157724737 +184234,1407,scary funny,1157724774 +184239,593,creepy,1451298665 +184239,593,scary,1451298653 +184239,96079,griping,1451298625 +184260,1095,Business,1227166626 +184260,8961,fall of superheros,1227168299 +184260,8961,self discovery,1227168337 +184260,8961,superheros,1227168299 +184262,260,future,1438447211 +184262,260,space,1438447127 +184262,1237,chess,1438745054 +184262,6863,school,1438528567 +184262,27338,student,1438743935 +184262,34332,superpower,1438461163 +184262,36533,deception,1438743376 +184262,36533,game,1438742711 +184262,36533,student,1438743917 +184262,60832,game,1438742998 +184262,60832,student,1438743887 +184262,105519,school,1438459437 +184262,105519,student,1438528661 +184262,136680,children,1438521569 +184265,673,aliens,1447417024 +184265,673,basketball,1447417013 +184265,673,talking animals,1447417023 +184265,115130,Chess,1447416941 +184265,116797,Alan Turing,1420800296 +184265,116797,World War II,1420800284 +184265,122882,charlize theron,1447417135 +184265,122882,dystopian,1447417123 +184265,122882,post apocalypse,1447417096 +184265,122882,post apocalyptic,1447417117 +184265,122882,visually appealing,1447417103 +184266,39,saw it ten times,1138772938 +184266,47,amazing!.,1142141333 +184266,47,brad pitt,1142141331 +184266,253,brad pitt and tom cruise,1138774112 +184266,804,jennifer aniston,1138773186 +184266,1089,tarantino is god,1138773257 +184266,1593,jennifer aniston,1138773158 +184266,1729,tarantino is god,1138773221 +184266,1821,jennifer aniston,1138773115 +184266,2840,patricia arquette is amazing,1138773025 +184266,3556,great ending,1138774043 +184266,4308,special,1142141198 +184266,4733,allen is brilliant,1138773682 +184266,5348,allen is brilliant,1138773703 +184266,5505,jennifer aniston,1138773072 +184266,5669,great doc,1139985069 +184266,5669,need to buy,1139985066 +184266,6373,jennifer aniston,1138773536 +184266,6874,blood,1138773571 +184266,7254,great script,1138774030 +184266,7285,great script,1138773490 +184266,7438,tarantino is god,1138773592 +184266,8366,too much religion,1142141696 +184266,8533,great ending,1138773767 +184266,32291,allen is brilliant,1138773729 +184266,33164,pointless,1142141362 +184266,33679,brad and angelina,1138773910 +184266,40278,jake gylenhaal,1138773853 +184266,42007,jennifer aniston,1138773825 +184271,3717,Nicholas Cage,1158858375 +184324,34,way overrated,1142619924 +184324,46,a chick flick,1142627580 +184324,215,fascinating how a conversation and two people keep you interested,1142619764 +184324,356,Overrated,1142619422 +184324,507,susrprisingly moving,1142621363 +184324,553,owes everything to Kilmer,1142621959 +184324,923,overrated,1142615613 +184324,968,scared the hell outta me,1142620823 +184324,1012,way way too sad,1142620694 +184324,1029,sad. again with the dying animated animals,1142620901 +184324,1082,one of the very best about politics,1142619812 +184324,1096,very sad,1142619130 +184324,1226,good to watch on St. Paddy's Day,1142620003 +184324,1230,my all-time favorite,1142619305 +184324,1307,ripped off Annie Hall,1142617727 +184324,1680,great concept,1142619476 +184324,1694,Duvall is superb,1142620169 +184324,1732,the dude abides,1142618838 +184324,1923,fun,1142620920 +184324,1938,moving,1142618769 +184324,1958,wrings the emotions too much,1142620292 +184324,1959,just beautiful,1142620343 +184324,2018,too sad,1142618009 +184324,2132,superb acting,1142618526 +184324,2398,sappy,1142618325 +184324,2583,quirky good,1142621099 +184324,2612,holds up well,1142618890 +184324,2762,great concept,1142615287 +184324,2919,Gibson was hot!,1142619563 +184324,2929,a bit overwhelming,1142620771 +184324,3011,depressing,1142619049 +184324,3072,Cher's good!,1142619034 +184324,3420,You're Out of Order! Pacino is great.,1142620326 +184324,3668,beautiful,1142618790 +184324,3871,so sad,1142619618 +184324,4022,a little overrated,1142620797 +184324,4308,overrated or for certain tastes,1142620385 +184324,4422,Depressing,1142621593 +184324,4661,haunting,1142619711 +184324,4664,every woman should see,1142619968 +184324,4710,Wayne's best,1142619519 +184324,4776,riveting,1142620091 +184324,4848,a bit confusing,1142619186 +184324,4880,touching,1142618981 +184324,4963,eye candy,1142618624 +184324,5073,classic,1142619785 +184324,5122,beautifully done,1142621977 +184324,5415,book is so much better,1142627634 +184324,5505,Anniston is very good,1142619601 +184324,5602,disappointing,1142619392 +184324,5679,very scary imagery,1142620675 +184324,6296,they're always spot on!,1142618932 +184324,6323,creepy,1142622042 +184324,6422,sob worthy,1142619634 +184324,6639,classic thriller,1142615388 +184324,6942,idealistically romantic,1142619072 +184324,7158,heartbreaking,1142615245 +184324,8718,excellent for its time,1142619087 +184324,8784,quirky romantic,1142615361 +184324,8875,sad,1142618177 +184324,8958,great acting,1142615593 +184324,8981,disturbing,1142618453 +184324,30707,so sad,1142615573 +184324,31435,inspirational,1142615499 +184324,38798,Better than expected,1142620549 +184324,38798,not as much a chick flick as I expected,1142620641 +184345,47610,19th century,1447432601 +184345,47610,twist ending,1447432586 +184384,6539,beautiful,1288338885 +184384,6539,boring plot,1288338883 +184396,356,fictional history,1425168156 +184396,356,the south,1425168156 +184396,356,tom hanks,1425168156 +184396,593,chilling,1435503046 +184396,593,jodie foster,1435503046 +184396,593,psychothriller,1435503046 +184396,5903,Christian Bale,1435519621 +184396,5903,dystopia,1435519616 +184396,5903,intellectual insult,1435519737 +184396,73321,Gary Oldman,1426368960 +184396,73321,gun fights,1426368989 +184396,73321,Kira Solis,1426368945 +184396,73321,post-apocalyptic,1426368896 +184396,73321,St James Bible,1426368907 +184396,73321,sword play,1426368985 +184439,555,tarantino is god,1147947274 +184446,2804,red ryder,1173987903 +184446,45950,overrated,1209305071 +184463,260,darth vader,1430904948 +184463,260,Industrial Light and Magic,1430904939 +184463,260,luke skywalker,1430904944 +184463,260,Science Fiction,1430904926 +184465,31435,heartwrenching,1195845463 +184477,117364,gut-wrenching story,1421253670 +184477,117364,strong message,1421253670 +184477,117364,very emotional true story. very eye opening.,1421253670 +184487,356,academy award winning,1437268731 +184487,356,historical,1437268731 +184487,356,inspiring,1437268731 +184490,260,aliens,1421651449 +184490,260,oldie but goodie,1421651449 +184490,260,sci fi,1421651449 +184509,26131,terrorism,1171931420 +184538,260,best movie ever,1442866680 +184538,260,classic sci-fi,1442866658 +184538,260,EPIC,1442866648 +184538,260,geeky,1442866676 +184538,260,must see,1442866672 +184538,79702,BEST.MOVIE.EVER,1442866837 +184538,79702,My life in a nutshell,1442866848 +184547,3114,cartoon,1439292159 +184547,3114,comedy,1439292168 +184553,7762,intelligent,1199965516 +184555,2,animals,1325585308 +184555,2,fantasy,1325585318 +184555,2,Robin Williams,1325585315 +184555,2,scary,1325585311 +184555,25,atmospheric,1308635713 +184555,25,drama,1308635718 +184555,25,great soundtrack,1308635720 +184555,25,Nicolas Cage,1308635730 +184555,25,Oscar (Best Actor),1308635724 +184555,25,understated,1308635733 +184555,110,british,1294903491 +184555,110,classic,1294903493 +184555,110,History,1294903489 +184555,110,imdb top 250,1294903465 +184555,110,inspirational,1294903487 +184555,110,Oscar (Best Cinematography),1294903475 +184555,110,Oscar (Best Directing),1294903483 +184555,110,Oscar (Best Picture),1294903461 +184555,231,hilarious,1293353424 +184555,231,Jim Carrey,1293353403 +184555,231,stupid,1293353439 +184555,231,very funny,1293353418 +184555,318,atmospheric,1294891057 +184555,318,classic,1294891041 +184555,318,imdb top 250,1294891048 +184555,318,inspirational,1294891039 +184555,318,justice,1294891061 +184555,318,Morgan Freeman,1294891036 +184555,318,reflective,1294891051 +184555,318,Stephen King,1294891038 +184555,318,thought-provoking,1294891053 +184555,318,twist ending,1294891045 +184555,356,based on a book,1268638366 +184555,356,Tom Hanks,1268638361 +184555,364,coming of age,1325585028 +184555,364,inspirational,1325585030 +184555,364,Oscar (Best Music - Original Score),1325585032 +184555,364,Oscar (Best Music - Original Song),1325585034 +184555,367,Cameron Diaz,1293353479 +184555,367,funny,1293353481 +184555,367,hilarious,1293353493 +184555,367,Jim Carrey,1293353488 +184555,367,Jim Carrey being Jim Carrey,1293353484 +184555,539,seen more than once,1325585182 +184555,539,Tom Hanks,1325585181 +184555,765,Robin Williams,1293353153 +184555,1036,Bruce Willis,1325585155 +184555,1036,tense,1325585162 +184555,1090,Best War Films,1294619886 +184555,1090,imdb top 250,1294619874 +184555,1090,Oliver Stone,1294619919 +184555,1090,Oscar (Best Directing),1294619890 +184555,1090,Oscar (Best Editing),1294619898 +184555,1090,Oscar (Best Picture),1294619892 +184555,1090,Oscar (Best Sound),1294619894 +184555,1259,adventure,1307942283 +184555,1259,childhood,1307942300 +184555,1259,coming of age,1307942298 +184555,1259,friendship,1307942284 +184555,1259,imdb top 250,1307942293 +184555,1259,nostalgic,1307942286 +184555,1259,Stephen King,1307942289 +184555,1259,tense,1307942291 +184555,1270,alternate reality,1293353283 +184555,1270,future,1293353287 +184555,1270,futuristic,1293353285 +184555,1270,Steven Spielberg,1293353292 +184555,1270,time travel,1293353295 +184555,1672,company,1293352837 +184555,1672,Exceptional Acting,1293352818 +184555,1672,Francis Ford Coppola,1293352805 +184555,1672,Interesting,1293352825 +184555,1672,justice,1293352810 +184555,1672,Matt Damon,1293352808 +184555,1721,atmospheric,1325585087 +184555,1784,Drama,1259825981 +184555,1784,Jack Nicholson,1259825942 +184555,1784,psychology,1259825956 +184555,1917,Bruce Willis,1294020442 +184555,1917,space program,1294020449 +184555,1917,world end,1294020452 +184555,1961,autism,1294021076 +184555,1961,classical,1294021073 +184555,1961,Dustin Hoffman,1294021033 +184555,1961,Exceptional Acting,1294021071 +184555,1961,Oscar (Best Actor),1294021039 +184555,1961,Oscar (Best Directing),1294021043 +184555,1961,Oscar (Best Picture),1294021052 +184555,1961,Oscar (Best Writing - Screenplay Written Directly for the Screen),1294021061 +184555,1961,Oscar Winner,1294021063 +184555,1961,true story,1294021067 +184555,2431,based on a true story,1268637750 +184555,2431,drama,1268637761 +184555,2431,komediodramat,1268637767 +184555,2431,Robin Williams,1268637774 +184555,2431,true story,1268637777 +184555,2501,aeronautics,1307942716 +184555,2501,Engineers in training,1307942713 +184555,2501,hope,1307942729 +184555,2501,research,1307942732 +184555,2501,rocket,1307942718 +184555,2501,space program,1307942719 +184555,2501,True Story,1307942721 +184555,2671,British,1308539286 +184555,2671,Good Romantic Comedies,1308539296 +184555,2671,Hugh Grant,1308539294 +184555,2671,Julia Roberts,1308539282 +184555,2706,funny,1325585299 +184555,2959,Brad Pitt,1303682420 +184555,2959,Edward Norton,1303682416 +184555,2959,imdb top 250,1303682423 +184555,2959,philosophical,1303682426 +184555,2959,psychological,1303682427 +184555,2959,twist ending,1303682432 +184555,3147,Tom Hanks,1268638350 +184555,3250,survival,1259826156 +184555,3717,seen more than once,1303683852 +184555,3827,Clint Eastwood,1268636910 +184555,3827,space,1268636913 +184555,3897,bittersweet,1335132887 +184555,3897,great soundtrack,1335132888 +184555,3897,rock and roll,1335132893 +184555,3916,American Football,1294890233 +184555,3916,awesome,1294890240 +184555,3916,Denzel Washington,1294890242 +184555,3916,good story,1294890251 +184555,3916,high school,1294890245 +184555,3916,inspiring,1294890247 +184555,3916,Leadership,1294890249 +184555,3916,race issues,1294890255 +184555,3916,social commentary,1294890260 +184555,3916,sports,1294890276 +184555,3969,change the world,1302388369 +184555,3969,idealistic,1302388373 +184555,3969,inspirational,1302388382 +184555,3969,socially relevant,1302388392 +184555,3969,twist ending,1302388394 +184555,4027,based on a book,1308540631 +184555,4027,black comedy,1308540633 +184555,4027,funny,1308540636 +184555,4027,great soundtrack,1308540616 +184555,4027,notable soundtrack,1308540618 +184555,4155,Charlize Theron,1303682629 +184555,4155,Keanu Reeves,1303682626 +184555,4155,San Francisco,1303682626 +184555,4239,based on a true story,1307942431 +184555,4239,Interesting,1307942436 +184555,4239,Johnny Depp,1307942429 +184555,4239,seventies,1307942439 +184555,4310,World War II,1268638524 +184555,4815,anthony hopkins,1303682384 +184555,4815,Stephen King,1303682383 +184555,4951,based on a book,1294020821 +184555,4951,feelings about society,1294020810 +184555,4995,based on a book,1288577994 +184555,4995,genius,1288577991 +184555,4995,inspirational,1288578002 +184555,4995,mathematics,1288577998 +184555,4995,Russell Crowe,1288577983 +184555,4995,true story,1288578007 +184555,5010,Ewan McGregor,1281324750 +184555,5014,crying,1288578799 +184555,5014,Dakota Fanning,1288578772 +184555,5014,sean penn,1288578784 +184555,5267,dreams,1268638489 +184555,5377,feel-good,1288578967 +184555,5377,Hugh Grant,1288578952 +184555,5989,better than expected,1294890171 +184555,5989,feel good movie,1294890178 +184555,5989,funny,1294890180 +184555,5989,Leonardo DiCaprio,1294890165 +184555,5989,Steven Spielberg,1294890183 +184555,5989,Tom Hanks,1294890187 +184555,5989,true story,1294890189 +184555,5989,twists & turns,1294890191 +184555,5995,true story,1268638520 +184555,6157,Ben Affleck,1294019214 +184555,6157,Colin Farrell,1294019233 +184555,6188,college,1308539570 +184555,6188,Funniest Movies,1308539576 +184555,6188,Funny as hell,1308539579 +184555,6188,hilarious,1308539585 +184555,6188,very funny,1308539595 +184555,6188,Will Ferrell,1308539591 +184555,6250,Morgan Freeman,1294891358 +184555,6250,Stephen King,1294891357 +184555,7147,bittersweet,1281326116 +184555,7147,dreamlike,1281326111 +184555,7147,fantasy,1281326108 +184555,7147,Tim Burton,1281326100 +184555,7147,twist ending,1281326106 +184555,7149,Jack Nicholson,1288579268 +184555,7149,Keanu Reaves,1288579260 +184555,7254,mathematics,1268638434 +184555,7361,alternate reality,1325585409 +184555,7361,bittersweet,1325585383 +184555,7361,cult film,1325585385 +184555,7361,dreamlike,1325585405 +184555,7361,imdb top 250,1325585387 +184555,7361,Jim Carrey,1325585389 +184555,7361,nonlinear,1325585391 +184555,7361,psychology,1325585399 +184555,7361,sci-fi,1325585393 +184555,7361,surreal,1325585396 +184555,7361,surrealism,1325585397 +184555,7361,thought-provoking,1325585401 +184555,7373,graphic novel,1294019083 +184555,7373,Guillermo del Toro,1294019090 +184555,7445,Denzel Washington,1294018799 +184555,7445,makes you cry,1294018803 +184555,7454,Hugh Jackman,1294020016 +184555,7454,Kate Beckinsale,1294020017 +184555,7454,vampires,1294020011 +184555,7454,werewolves,1294020029 +184555,8666,Halle Berry,1294019548 +184555,8949,dark comedy,1325584804 +184555,8949,friendship,1325584822 +184555,8949,funny,1325584808 +184555,8949,road trip,1325584813 +184555,8958,Biography,1268636997 +184555,8958,Exceptional Acting,1268637001 +184555,8958,genius,1268637003 +184555,8958,good music,1268637010 +184555,8958,great acting,1268637007 +184555,8958,music,1268638508 +184555,8958,musical,1268637013 +184555,8958,Oscar (Best Actor),1268637041 +184555,8958,Oscar Winner,1268637045 +184555,8958,overrated,1268637060 +184555,8958,race issues,1268637055 +184555,8958,Ray Charles,1268637047 +184555,8958,rhythm & blues,1268637050 +184555,32029,Best of 2005,1294018662 +184555,32029,Bruce Willis,1294018656 +184555,33166,Brendan Fraser,1259827027 +184555,33166,cultural conflict,1259826998 +184555,33166,multiple storylines,1259827002 +184555,33166,political,1259827032 +184555,33166,social commentary,1259827013 +184555,33166,twist ending,1268638423 +184555,33660,Biography,1259826068 +184555,33660,true story,1259826060 +184555,34150,Jessica Alba,1294019355 +184555,34150,sexy female scientist,1294019368 +184555,34150,Special Effects,1294019372 +184555,34162,buddy movie,1308539512 +184555,34162,classic,1308539541 +184555,34162,funny,1308539515 +184555,34162,Owen Wilson,1308539521 +184555,34162,Vince Vaughn,1308539518 +184555,34162,Will Ferrell,1308539523 +184555,35836,funny,1308539490 +184555,35836,hilarious,1308539479 +184555,43917,dogs,1302388442 +184555,43917,movie to see,1302388445 +184555,43928,Milla Jovovich,1294020063 +184555,43928,sci-fi,1294020083 +184555,43928,stupid,1294020079 +184555,43936,Bruce Willis,1294018759 +184555,43936,David Morse,1294018760 +184555,43936,police corruption,1294018768 +184555,47099,based on a true story,1268636111 +184555,47099,happy ending,1268636122 +184555,47099,true story,1268636145 +184555,47099,Will Smith,1268636128 +184555,48774,atmospheric,1294889556 +184555,48774,end of the world,1294889572 +184555,48774,futuristic,1294889562 +184555,48774,imdb top 250,1294889560 +184555,48774,Oscar Nom 2007,1294889564 +184555,48774,sci-fi,1294889565 +184555,48774,survival,1294889568 +184555,48997,creativity,1294891152 +184555,48997,great soundtrack,1294891171 +184555,48997,murder,1294891156 +184555,48997,obsession,1294891163 +184555,48997,thriller,1294891161 +184555,49530,Civil War,1294018855 +184555,49530,corruption,1294018857 +184555,49530,Leonardo DiCaprio,1294018846 +184555,49530,mining,1294018851 +184555,49530,Oscar Nom 2007,1294018865 +184555,51077,motorcycle,1294019187 +184555,51077,Nicolas Cage,1294019181 +184555,51662,amazing photography,1294019992 +184555,51662,artistic,1294019991 +184555,51662,atmospheric,1294019978 +184555,51662,Gerard Butler,1294019980 +184555,51662,sword fight,1294019971 +184555,51662,war,1294019983 +184555,51931,acting,1302388706 +184555,51931,inspirational,1302388707 +184555,51931,life & death,1302388709 +184555,51931,unique,1302388713 +184555,52838,animal rights,1294889763 +184555,52838,rescue dogs,1294889765 +184555,53464,Jessica Alba,1294019410 +184555,53464,sexy female scientist,1294019412 +184555,54736,Jamie Foxx,1281324673 +184555,55814,based on a true story,1268638399 +184555,55814,Golden Globe winner,1288579548 +184555,55814,touching,1288579552 +184555,55814,true story,1268638403 +184555,55830,creativity,1307941673 +184555,55830,heartwarming,1307941675 +184555,55830,Jack Black,1307941677 +184555,55830,jazz,1307941679 +184555,55830,well intentioned,1307941690 +184555,55872,inspirational,1268636214 +184555,55872,love of music,1268636218 +184555,55872,power of music,1268636220 +184555,55872,Robin Williams,1268636225 +184555,56156,assassin,1294020520 +184555,56156,murder,1294020502 +184555,56156,Russia,1294020511 +184555,56885,Denzel Washington,1288578484 +184555,56885,Forest Whitaker,1288578477 +184555,57640,beautiful effects,1294019041 +184555,57640,Guillermo del Toro,1294019034 +184555,57669,assassin,1303683432 +184555,57669,dark comedy,1303683411 +184555,57669,friendship,1303683430 +184555,58365,history,1294018713 +184555,58365,politics,1294018715 +184555,58803,based on a true story,1325584349 +184555,58803,blackjack,1325584369 +184555,58803,ending,1325584366 +184555,58803,gambling,1325584351 +184555,58803,Massachusetts Institute of Technology,1325584352 +184555,58803,mathematics,1325584356 +184555,58998,hilarious,1308539424 +184555,60756,comedy,1308539638 +184555,60756,ending,1308539664 +184555,60756,funny,1308539670 +184555,60756,Highly quotable,1308539650 +184555,60756,will ferrell,1308539655 +184555,60937,Brendan Fraser,1294019640 +184555,60937,Jet Li,1294019631 +184555,64034,based on a book,1259826378 +184555,64034,Holocaust,1259826383 +184555,64034,irony,1259826386 +184555,64034,sad,1259826402 +184555,64034,World War II,1259826397 +184555,64614,Clint Eastwood,1294019123 +184555,64614,friendship,1294019126 +184555,64614,life & death,1294019127 +184555,68319,funny,1294019470 +184555,68319,good story,1294019474 +184555,68319,hugh jackman,1294019454 +184555,68319,sci-fi,1294019455 +184555,69122,funny,1307941765 +184555,69122,great soundtrack,1307941756 +184555,69122,imdb top 250,1307941758 +184555,69122,Las Vegas,1307941762 +184555,69757,Funny,1325584131 +184555,69757,humorous,1325584117 +184555,69757,IMDB Top 250,1325584112 +184555,69757,intelligent,1325584128 +184555,69757,meaning of love,1325584126 +184555,69757,music,1325584124 +184555,69757,nonlinear,1325584122 +184555,72378,future,1294020407 +184555,72378,sci-fi,1294020385 +184555,72378,science fiction,1294020419 +184555,72378,Special Effects,1294020375 +184555,72378,stupid,1294020378 +184555,72998,futuristic,1268637886 +184555,72998,graphic design,1268637889 +184555,72998,James Cameron,1268637902 +184555,72998,music,1268637897 +184555,72998,revolution,1268637913 +184555,72998,sci-fi,1268637895 +184555,73017,Atmospheric,1294019332 +184555,73017,mystery,1294019323 +184555,73017,Soundtrack,1294019326 +184555,77561,Robert Downey Jr.,1294019262 +184555,77561,Samuel L. Jackson,1294019287 +184555,77561,sci-fi,1294019283 +184555,80463,computers,1302388493 +184555,80463,friendship,1302388484 +184555,80463,funny,1302388486 +184555,80463,internet,1302388482 +184555,80463,university,1302388481 +184555,81512,Clint Eastwood,1325584472 +184555,81845,based on a true story,1302389231 +184555,81845,emotional,1302389234 +184555,81845,feel-good,1302389237 +184555,81845,historical,1302389239 +184555,81845,Oscar (Best Picture),1302389245 +184555,81845,true story,1302389243 +184555,82461,cyber,1294018627 +184555,82461,daft punk,1294018620 +184555,82461,setting:in computer,1294018622 +184555,84152,human potential,1303682462 +184555,84152,Robert De Niro,1303682472 +184555,84152,visual effects,1303682465 +184555,86332,mythology,1308539161 +184555,86332,Natalie Portman,1308539155 +184555,86332,Special Effects,1308539164 +184555,86852,unreal ending,1308539250 +184555,86852,Unreal reactions,1308539252 +184555,86898,abstract,1325584515 +184555,86898,beautifully filmed,1325584517 +184555,86898,meaning of life,1325584522 +184555,86898,music,1325584524 +184555,86898,Sean Penn,1325584529 +184555,86898,thought-provoking,1325584533 +184555,89470,bad science,1325584289 +184555,89470,Matt Damon,1325584280 +184555,89470,wasted characters,1325584296 +184565,260,practical effects,1441014108 +184565,260,space opera,1441013836 +184567,32,atmospheric,1253730332 +184567,32,complicated,1253730335 +184567,69,Chris Tucker,1253750669 +184567,69,Ice Cube,1253750666 +184567,97,bleak,1253727867 +184567,97,cynical,1253727890 +184567,97,racism,1253727872 +184567,121,child abuse,1253729587 +184567,121,sexual abuse,1253729590 +184567,162,documentary,1253728694 +184567,180,crude humor,1253750029 +184567,180,good dialogue,1253750033 +184567,180,Jay and Silent Bob,1253750023 +184567,180,Kevin Smith,1253750026 +184567,180,Shannen Doherty,1253750039 +184567,199,musical,1253733925 +184567,223,black and white,1253752501 +184567,223,crude humor,1253752503 +184567,223,cynical,1253752535 +184567,223,good dialogue,1253752508 +184567,223,hilarious,1253752525 +184567,223,irreverent,1253752529 +184567,223,Kevin Smith,1253752519 +184567,223,slackers,1253752511 +184567,223,surreal,1253752515 +184567,223,view askew,1253752517 +184567,247,Kate Winslet,1253732332 +184567,260,adventure,1253753065 +184567,260,atmospheric,1253753068 +184567,260,fantasy,1253753062 +184567,260,Harrison Ford,1253753051 +184567,260,sci-fi,1253753079 +184567,260,space,1253753082 +184567,260,Star Wars,1253753054 +184567,260,stylized,1253753059 +184567,272,biopic,1253750384 +184567,296,assassin,1253752840 +184567,296,atmospheric,1253752809 +184567,296,Bruce Willis,1253752814 +184567,296,dark comedy,1253752819 +184567,296,Mafia,1253752833 +184567,296,multiple storylines,1253752822 +184567,296,nonlinear,1253752825 +184567,296,Quentin Tarantino,1253752828 +184567,296,quirky,1253752829 +184567,296,Samuel L. Jackson,1253752831 +184567,443,documentary,1253733700 +184567,443,surfing,1253733705 +184567,446,gay,1253733049 +184567,446,homosexuality,1253733051 +184567,535,multiple storylines,1253752857 +184567,535,Tim Robbins,1253752863 +184567,555,Patricia Arquette,1253735705 +184567,555,Samuel L. Jackson,1253735708 +184567,555,Val Kilmer,1253735703 +184567,556,clinton,1254017534 +184567,556,documentary,1254017530 +184567,599,bleak,1253728583 +184567,665,too long,1253730305 +184567,702,bleak,1253728178 +184567,714,black and white,1253730865 +184567,714,bleak,1253730846 +184567,714,boring,1253730852 +184567,714,Jim Jarmusch,1253730858 +184567,714,Johnny Depp,1253730859 +184567,714,quirky,1253730873 +184567,741,2D/3D hybrid Animation,1253730907 +184567,741,adult swim,1253730901 +184567,741,artificial intelligence,1253730913 +184567,741,cyberpunk,1253730915 +184567,741,overrated,1253730929 +184567,741,philosophical,1253730925 +184567,922,gloria swanson,1253752037 +184567,922,Highly quotable,1253752028 +184567,922,noir thriller,1253752050 +184567,923,black and white,1253724443 +184567,923,influential,1253724467 +184567,1046,adolescent gays,1253732624 +184567,1046,gay,1253732631 +184567,1046,Gay Brits,1253732636 +184567,1046,gay romance,1253732638 +184567,1060,funny,1253748703 +184567,1077,cryogenics,1253748638 +184567,1077,dystopia,1253748641 +184567,1111,documentary,1253727399 +184567,1125,Inspector Clouseau (series),1253750681 +184567,1125,retarded,1253750683 +184567,1136,bizarre ending,1253728358 +184567,1136,British,1253728365 +184567,1136,influential,1253728355 +184567,1147,boxing,1253724288 +184567,1147,documentary,1253724270 +184567,1147,Muhammad Ali,1253724278 +184567,1147,spike lee,1253724284 +184567,1196,adventure,1253753115 +184567,1196,fantasy,1253753117 +184567,1196,father-son relationship,1253753111 +184567,1196,Harrison Ford,1253753113 +184567,1196,sci-fi,1253753123 +184567,1196,space,1253753124 +184567,1196,star wars,1253753125 +184567,1199,dystopia,1253730405 +184567,1209,Ennio Morricone,1253723667 +184567,1214,slow,1253729480 +184567,1227,James Woods,1253729267 +184567,1233,long,1253726540 +184567,1233,too long,1253726535 +184567,1235,older woman younger man,1253733750 +184567,1235,suicide,1253733753 +184567,1235,suicide attempt,1253733756 +184567,1240,Arnold Schwarzenegger,1253733890 +184567,1240,James Cameron,1253733897 +184567,1240,time travel,1253733892 +184567,1244,Woody Allen,1253727972 +184567,1245,boring,1253728332 +184567,1251,overrated,1253727849 +184567,1263,Christopher Walken,1253729622 +184567,1263,surreal,1253729628 +184567,1268,censorship,1253750756 +184567,1268,Christian Slater,1253750743 +184567,1268,pirate radio,1253750748 +184567,1268,rebel,1253750766 +184567,1274,cyberpunk,1253732847 +184567,1274,dystopia,1253732848 +184567,1274,visually stunning,1253732855 +184567,1280,deliberate,1253727238 +184567,1285,Winona Ryder,1253749343 +184567,1288,Christopher Guest,1253753309 +184567,1288,comedy,1253753356 +184567,1288,deadpan,1253753319 +184567,1288,farce,1253753351 +184567,1288,goofy,1253753346 +184567,1288,harry shearer,1253753315 +184567,1288,heavy metal,1253753340 +184567,1288,irreverent,1253753353 +184567,1288,music,1253753326 +184567,1288,music business,1253753329 +184567,1288,quirky,1253753358 +184567,1288,satire,1253753329 +184567,1288,witty,1253753334 +184567,1297,Val Kilmer,1253750243 +184567,1298,Musical,1253672783 +184567,1305,Indie,1253733353 +184567,1344,filmed in savannah,1253733612 +184567,1437,Charlotte Gainsbourg,1253733650 +184567,1449,Christopher Guest,1253733950 +184567,1449,community theater,1253733995 +184567,1449,Eugene Levy,1253733952 +184567,1449,mockumentary,1253733989 +184567,1449,musical,1253733960 +184567,1464,overrated,1253733828 +184567,1572,deliberate,1253730122 +184567,1635,bleak,1253732738 +184567,1635,Christina Ricci,1253732721 +184567,1635,Elijah Wood,1253732733 +184567,1635,Sigourney Weaver,1253732726 +184567,1635,Tobey Maguire,1253732728 +184567,1676,deadpan,1253753168 +184567,1676,Denise Richards,1253753183 +184567,1676,future,1253753165 +184567,1676,giant space bugs,1253753160 +184567,1676,hilarious,1253753159 +184567,1676,Neil Patrick Harris,1253753156 +184567,1676,Paul Verhoeven,1253753206 +184567,1676,satire,1253753150 +184567,1676,sci-fi,1253753153 +184567,1676,space,1253753155 +184567,1676,witty,1253753151 +184567,1681,adapted from:game,1257083120 +184567,1681,bad acting,1257083132 +184567,1681,computer game,1257083117 +184567,1681,pointless,1257083144 +184567,1681,unnecessary,1257083152 +184567,1681,Unnecessary sequel,1257083167 +184567,1681,video game adaptation,1257083123 +184567,1681,Video game connection,1257083127 +184567,1689,Bill Murray,1267414895 +184567,1719,bleak,1253728472 +184567,1719,Sarah Polley,1253728503 +184567,1732,bowling,1253752479 +184567,1732,dark comedy,1253752457 +184567,1732,Highly quotable,1253752452 +184567,1732,jeff bridges,1253752437 +184567,1732,john goodman,1253752423 +184567,1732,marijuana,1253752444 +184567,1732,quirky,1253752476 +184567,1827,documentary,1253734060 +184567,1827,Michael Moore,1253734053 +184567,1880,Sam Rockwell,1253732356 +184567,1884,hallucinatory,1253748836 +184567,1884,intelligent,1253748891 +184567,1913,deliberate,1253733858 +184567,1948,British,1253749738 +184567,2020,John Malkovich,1253748760 +184567,2020,Keanu Reeves,1253748762 +184567,2020,Paris,1253748756 +184567,2020,Uma Thurman,1253748749 +184567,2131,bleak,1253729521 +184567,2131,deliberate,1253729522 +184567,2186,AFI 100 (Thrills),1253678250 +184567,2186,Alfred Hitchcock,1253678241 +184567,2186,homosexual undertones,1253678214 +184567,2186,murder,1253678226 +184567,2186,over-the-top ending,1253678190 +184567,2186,tennis,1253678231 +184567,2232,existentialism,1262978671 +184567,2232,flat characters,1262978687 +184567,2232,gory,1262978665 +184567,2232,intense,1262978637 +184567,2232,mathematics,1262978639 +184567,2232,maze,1262978642 +184567,2232,mindfuck,1262978644 +184567,2232,original,1262978645 +184567,2232,plot point:solving riddles/puzzles,1262978648 +184567,2232,psychological,1262978650 +184567,2232,psychology,1262978652 +184567,2232,scifi,1262978655 +184567,2232,weird,1262978657 +184567,2248,cameron crowe,1253748502 +184567,2248,Ione Skye,1253748499 +184567,2248,John Cusack,1253748496 +184567,2248,Overrated,1253748488 +184567,2284,racism,1253734045 +184567,2301,goofy,1253751373 +184567,2301,Mel Brooks,1253751376 +184567,2301,satire,1253751379 +184567,2333,character development,1253733727 +184567,2333,Ian McKellen,1253733722 +184567,2357,bleak,1253729611 +184567,2467,whodunit,1253751507 +184567,2488,voyeurism,1253729305 +184567,2502,Business is the antagonist,1253752712 +184567,2502,comedy,1253752715 +184567,2502,corporate America,1253752717 +184567,2502,Diedrich Bader,1253752796 +184567,2502,going postal,1253752723 +184567,2502,hilarious,1253752727 +184567,2502,Jennifer Aniston,1253752729 +184567,2502,mike judge,1253752771 +184567,2502,off-beat comedy,1253752732 +184567,2502,office,1253752737 +184567,2502,quirky,1253752740 +184567,2502,rebellion,1253752745 +184567,2502,revenge,1253752746 +184567,2502,Ron Livingston,1253752788 +184567,2502,satire,1253752748 +184567,2502,shenanigans,1253752750 +184567,2502,slackers,1253752752 +184567,2502,technology,1253752755 +184567,2551,David Cronenberg,1253735633 +184567,2580,Katie Holmes,1253749984 +184567,2580,Sarah Polley,1253749988 +184567,2594,mindfuck,1270961287 +184567,2594,Nudity (Topless - Notable),1270961284 +184567,2594,Philip K. Dick (uncredited),1270961300 +184567,2700,adult humor,1253753023 +184567,2700,censorship,1253753000 +184567,2700,controversial,1253753011 +184567,2700,free speech,1253752994 +184567,2700,funny,1253753009 +184567,2700,irreverent,1253753002 +184567,2700,quirky,1253753037 +184567,2700,satire,1253753004 +184567,2700,south park,1253753017 +184567,2729,erotic,1253729692 +184567,2730,slow,1253731680 +184567,2731,cult,1253674606 +184567,2731,France,1253674631 +184567,2731,Paris,1253674615 +184567,2788,Monty Python,1253730218 +184567,2795,Harold Ramis,1253749440 +184567,2795,Randy Quaid,1253749436 +184567,2810,stalker,1253747648 +184567,2824,boxing,1253726989 +184567,2871,Burt Reynolds,1253732297 +184567,2883,Jason Lee,1253750578 +184567,2883,Martin Short,1253750584 +184567,2883,Ted Danson,1253750582 +184567,2883,Zooey Deschanel,1253750577 +184567,2952,Paul Thomas Anderson,1253730279 +184567,2952,Philip Seymour Hoffman,1253730282 +184567,2952,Samuel L. Jackson,1253730286 +184567,2959,dark comedy,1253752636 +184567,2959,Edward Norton,1253752637 +184567,2959,philosophy,1253752639 +184567,2959,psychology,1253752640 +184567,2959,quirky,1253752642 +184567,2959,satirical,1253752644 +184567,2959,social commentary,1253752645 +184567,2959,surreal,1253752648 +184567,2959,TERRORISM,1253752654 +184567,2959,thought-provoking,1253752657 +184567,2972,poignant,1253727994 +184567,2973,Woody Allen,1253728156 +184567,2985,80s,1261592899 +184567,2985,android(s)/cyborg(s),1261592872 +184567,2985,cheesy,1261592894 +184567,2985,cyborgs,1261592878 +184567,2985,dystopia,1261592880 +184567,2985,over the top,1261592911 +184567,2985,Paul Verhoeven,1261592882 +184567,2985,robots,1261592884 +184567,2985,sci-fi,1261592886 +184567,2985,social commentary,1261592888 +184567,3000,adventure,1253727425 +184567,3000,dystopia,1253727430 +184567,3000,fantasy world,1253727440 +184567,3000,Hayao Miyazaki,1253727444 +184567,3000,surreal,1253727446 +184567,3039,Dan Aykroyd,1253749643 +184567,3039,Jamie Lee Curtis,1253749645 +184567,3171,Old,1253727001 +184567,3176,Anthony Minghella,1253753282 +184567,3176,Cate Blanchett,1253753228 +184567,3176,creepy,1253753225 +184567,3176,disturbing,1253753226 +184567,3176,Gwyneth Paltrow,1253753231 +184567,3176,Jude Law,1253753232 +184567,3176,Matt Damon,1253753234 +184567,3176,murder,1253753236 +184567,3176,obsession,1253753239 +184567,3176,Philip Seymour Hoffman,1253753246 +184567,3176,psychology,1253753248 +184567,3176,secrets,1253753250 +184567,3176,stolen identity,1253753261 +184567,3210,Jennifer Jason Leigh,1253749941 +184567,3210,Nicolas Cage,1253749946 +184567,3210,Nudity (Full Frontal - Notable),1253749954 +184567,3210,Phoebe Cates,1253749933 +184567,3210,Sean Penn,1253749938 +184567,3210,slackers,1253749964 +184567,3281,cross dressing,1253749300 +184567,3281,homosexuality,1253749305 +184567,3317,Gay,1253749271 +184567,3317,Michael Douglas,1253749264 +184567,3317,Tobey Maguire,1253749265 +184567,3424,great cinematography,1253730462 +184567,3424,pointless,1253730499 +184567,3424,spike lee,1253730474 +184567,3429,Aardman studios,1253724666 +184567,3456,Middle East,1253732267 +184567,3476,multiple realities,1253749530 +184567,3503,deliberate,1253733438 +184567,3535,Christian Bale,1253750334 +184567,3535,comical violence,1253750316 +184567,3535,humorous,1253750321 +184567,3535,new york,1253750309 +184567,3535,Nudity (Topless),1253750299 +184567,3535,psychology,1253750305 +184567,3535,Reese Witherspoon,1279524749 +184567,3545,queer,1253735613 +184567,3547,biopic,1253731841 +184567,3547,gay,1253731836 +184567,3556,dreamlike,1254014257 +184567,3556,enigmatic,1254014263 +184567,3556,great ending,1254014266 +184567,3556,great soundtrack,1254014269 +184567,3556,lyrical,1254014276 +184567,3556,psychology,1254014254 +184567,3556,reflective,1254014279 +184567,3556,stylized,1254014282 +184567,3556,visually appealing,1254014283 +184567,3578,Oscar (Best Sound),1254013484 +184567,3578,Ridley Scott,1254013478 +184567,3578,Russell Crowe,1254013470 +184567,3581,British,1253750106 +184567,3629,Charlie Chaplin,1253675803 +184567,3629,Funny as hell,1253675794 +184567,3730,Harrison Ford,1253723906 +184567,3736,Billy Wilder,1253674024 +184567,3737,black and white,1255998691 +184567,3737,dying breed,1255998744 +184567,3737,kirk douglas,1255998753 +184567,3737,mountains,1255998722 +184567,3737,no plot,1255998706 +184567,3737,scenery,1255998722 +184567,3910,bjork,1254013418 +184567,3910,great music,1254013431 +184567,3910,surreal,1254013439 +184567,3992,Monica Bellucci,1254015503 +184567,3992,Nudity (Full Frontal),1254015507 +184567,3992,sexuaity,1254015514 +184567,4011,british,1253729407 +184567,4105,kinda overrated,1253749616 +184567,4144,moody,1253725707 +184567,4144,too slow,1253725692 +184567,4144,understated,1253726231 +184567,4144,Wong Kar Wai,1253725694 +184567,4235,Alejandro Gonzalez Inarritu,1253724333 +184567,4235,dogs,1253724338 +184567,4235,episodic,1253724331 +184567,4235,father daughter relationship,1253724347 +184567,4235,multiple storylines,1253724321 +184567,4378,Ben Kingsley,1254014603 +184567,4378,good dialogue,1254014616 +184567,4378,ruthless,1254014620 +184567,4380,male nudity,1253733374 +184567,4404,german expressionism,1253752000 +184567,4454,altruism,1256013853 +184567,4454,artist,1256013857 +184567,4454,claymation,1256013860 +184567,4454,consumerism,1256013863 +184567,4454,creativity,1256013865 +184567,4454,dystopia,1256013868 +184567,4454,great music,1256013873 +184567,4454,imagination,1256013876 +184567,4454,no dialogue,1256013885 +184567,4454,rebellion,1256013881 +184567,4454,social commentary,1256013889 +184567,4641,bad ending,1254012942 +184567,4641,quirky,1254012971 +184567,4641,Scarlett Johansson,1254012946 +184567,4641,Thora Birch,1254012956 +184567,4779,football,1253729667 +184567,4848,Atmospheric,1253754335 +184567,4848,dark,1253754337 +184567,4848,disturbing,1253754328 +184567,4848,dreamlike,1253754327 +184567,4848,hallucinatory,1253754344 +184567,4848,lesbian,1253754330 +184567,4848,mindfuck,1253754331 +184567,4848,movie business,1253754333 +184567,4848,Nudity (Full Frontal - Notable),1253754317 +184567,4848,stylized,1253754323 +184567,4848,surreal,1253754322 +184567,4848,thriller,1253754325 +184567,4878,dreamlike,1253752557 +184567,4878,funny,1253752586 +184567,4878,hallucinatory,1253752561 +184567,4878,Jake Gyllenhaal,1253752615 +184567,4878,Maggie Gyllenhaal,1253752612 +184567,4878,mindfuck,1253752565 +184567,4878,psychology,1253752577 +184567,4878,satirical,1253752589 +184567,4878,sci-fi,1253752569 +184567,4878,social commentary,1253752572 +184567,4878,stylized,1253752574 +184567,4878,surreal,1253752567 +184567,4878,thought-provoking,1253752570 +184567,4878,time travel,1253752592 +184567,4881,boring,1254012990 +184567,4888,claustrophobic,1254013799 +184567,4888,Ethan Hawke,1254013801 +184567,4888,intimate,1254013816 +184567,4888,minimalist,1254013819 +184567,4888,Richard Linklater,1254013803 +184567,4888,talky,1254013827 +184567,4888,tense,1254013807 +184567,4888,Uma Thurman,1254013809 +184567,4914,French New Wave,1278397592 +184567,4914,Jean Seberg,1278397560 +184567,4914,Neo-Noir,1278397576 +184567,4914,nouvelle vague,1278397587 +184567,4914,quirky,1278397573 +184567,4914,satirical,1278397566 +184567,4914,witty,1278397563 +184567,4967,ethnic conflict,1253728416 +184567,4973,beautifully filmed,1253752328 +184567,4973,fairy tale,1253752362 +184567,4973,feel-good,1253752360 +184567,4973,idealism,1253752356 +184567,4973,notable soundtrack,1253752354 +184567,4973,Paris,1253752333 +184567,4973,quirky,1253752364 +184567,4973,romantic but not cheesy,1253752338 +184567,4973,stylized,1253752367 +184567,4973,surreal,1253752335 +184567,4973,whimsical,1253752332 +184567,5008,Agatha Christie,1254068803 +184567,5008,billy wilder,1254068790 +184567,5015,boring as shit,1253888815 +184567,5064,Amazing Cinematography,1254015224 +184567,5064,fantasy,1254015227 +184567,5064,remake,1254015245 +184567,5064,revenge,1254015232 +184567,5064,romantic comedy,1254015237 +184567,5072,androids,1254015560 +184567,5072,cookie-cutter,1254015542 +184567,5072,robots,1254015555 +184567,5072,visually appealing,1254015553 +184567,5074,disturbing,1254015731 +184567,5074,erotic tension,1254015757 +184567,5074,Passive-Agressive,1254015727 +184567,5074,Selma Blair,1254015726 +184567,5095,boring,1254015139 +184567,5095,Christopher Walken,1254015152 +184567,5095,macbeth,1254015158 +184567,5095,overwrought,1254015149 +184567,5105,Nudity (Topless - Notable),1253677842 +184567,5110,overrated,1254016139 +184567,5147,Swedish,1253723551 +184567,5177,musical score:Bernard Herrmann,1253728303 +184567,5177,Orson Welles,1253728309 +184567,5225,erotic,1254012394 +184567,5225,Gael García Bernal,1254012424 +184567,5225,Maribel Verdú,1254012411 +184567,5225,Nudity (Full Frontal),1254012375 +184567,5225,quirky,1254012385 +184567,5225,road trip,1254012390 +184567,5294,dumbest twist ever,1254014801 +184567,5298,Charlie Kaufman,1253754192 +184567,5298,Michel Gondry,1253754194 +184567,5298,Patricia Arquette,1253754206 +184567,5298,Peter Dinklage,1253754196 +184567,5298,quirky,1253754200 +184567,5298,Tim Robbins,1253754198 +184567,5329,DOUBLE LIFE,1254014821 +184567,5329,luis guzman,1254014852 +184567,5329,stylized,1254014828 +184567,5329,tense,1254014829 +184567,5329,Val Kilmer,1254014832 +184567,5329,Vincent D'Onofrio,1254014852 +184567,5341,biography,1253729150 +184567,5384,courtroom drama,1253748382 +184567,5385,music documentary,1253725536 +184567,5385,The Band,1253725541 +184567,5416,claustrophobic,1254014378 +184567,5416,house arrest,1254014369 +184567,5416,liz phair,1254014356 +184567,5416,Robin Tunney,1254014352 +184567,5416,shallow,1254014395 +184567,5421,Jena Malone,1253749495 +184567,5421,Kieran Culkin,1253749497 +184567,5505,Jennifer Aniston,1254016408 +184567,5505,Zooey Deschanel,1254016413 +184567,5508,boring,1254013650 +184567,5508,breaking the fourth wall,1254013653 +184567,5577,Claire Danes,1253750156 +184567,5577,Jeff Goldblum,1253750160 +184567,5577,Kieran Culkin,1253750163 +184567,5617,BDSM,1254013599 +184567,5617,black comedy,1254013598 +184567,5617,erotic,1254013575 +184567,5617,great humor,1254013616 +184567,5617,James Spader,1254013594 +184567,5617,Maggie Gyllenhaal,1254013581 +184567,5617,sex,1254013625 +184567,5617,sexuality,1254013623 +184567,5668,Noah Wyle,1253750262 +184567,5668,Patrick Fugit,1253750264 +184567,5668,Renée Zellweger,1253750275 +184567,5690,bleak,1253725372 +184567,5690,DEATH OF A PARENT,1253725408 +184567,5690,grim,1253725381 +184567,5690,horrors of war,1253725425 +184567,5690,maintaining illusion,1253725418 +184567,5690,Studio Ghibli,1253725387 +184567,5782,boring start,1253725587 +184567,5782,easily confused with other movie(s) (title),1253725628 +184567,5792,biting,1254014124 +184567,5792,cynical,1254014128 +184567,5792,irreverent,1254014149 +184567,5792,Nudity (Topless),1254014174 +184567,5792,philosophy,1254014146 +184567,5792,PLAYING THE FIELD,1254014136 +184567,5792,quirky,1254014145 +184567,5792,urbane,1254014141 +184567,5876,Anthony Minghella,1254014059 +184567,5876,Brendan Fraser,1254014063 +184567,5878,coma,1255132546 +184567,5878,psychology,1255132552 +184567,5903,Christian Bale,1254014703 +184567,5903,dystopia,1254014707 +184567,5903,fascism,1254014712 +184567,5903,post-apocalyptic,1254014715 +184567,5903,totalitarianism,1254014718 +184567,5914,florida,1253730681 +184567,5945,death,1254015813 +184567,5945,Depressing,1254015830 +184567,5945,Jack Nicholson,1254015818 +184567,5945,Kathy Bates,1254015825 +184567,5945,road trip,1254015823 +184567,5954,Edward Norton,1253752290 +184567,5954,New York,1253752292 +184567,5954,nightclub,1253752306 +184567,5954,Philip Seymour Hoffman,1253752284 +184567,5954,powerful ending,1253752277 +184567,5954,Rosario Dawson,1253752281 +184567,5954,spike lee,1253752282 +184567,5955,Denzel Washington,1254015644 +184567,5955,derek luke,1254015629 +184567,5955,finding yourself,1254015647 +184567,5955,tried too hard,1254015611 +184567,5959,cynical,1254014574 +184567,5959,gritty,1254014572 +184567,5959,harsh,1254014577 +184567,5959,Lame ending,1254014588 +184567,5959,Ray Liotta,1254014565 +184567,5959,tense,1254014568 +184567,5959,visceral,1254014559 +184567,5971,boring,1253724056 +184567,5992,mental illness,1254015480 +184567,5992,Meryl Streep,1254015484 +184567,5992,Nicole Kidman,1254015482 +184567,5994,nathan lane,1253748438 +184567,6001,Sandra Bernhard,1253728243 +184567,6002,disturbing,1254015683 +184567,6002,Philip Seymour Hoffman,1254015694 +184567,6003,Charlie Kaufman,1253749766 +184567,6003,Drew Barrymore,1253749770 +184567,6003,Sam Rockwell,1253749771 +184567,6021,bleak,1253728098 +184567,6021,deliberate,1253728100 +184567,6051,bleak,1253733248 +184567,6051,deliberate,1253733253 +184567,6063,dismemberment,1254016446 +184567,6063,disturbing,1254016430 +184567,6063,odd,1254016434 +184567,6118,butterfly effect,1273986769 +184567,6118,slow start,1273986832 +184567,6118,what an ending,1273986731 +184567,6160,documentary,1253751078 +184567,6160,musical,1253751078 +184567,6163,Audrey Tautou,1254013519 +184567,6163,French,1254013515 +184567,6163,obsession,1254013503 +184567,6163,SELF-DESTRUCTIVE ROMANCE,1254013510 +184567,6163,stalker,1254013507 +184567,6163,twisted,1254013522 +184567,6187,Kate Winslet,1254017031 +184567,6188,not funny,1254016287 +184567,6215,lou barlow,1253756510 +184567,6269,child abuse,1253724150 +184567,6269,child molestor,1253724150 +184567,6269,pedophile,1253724146 +184567,6291,understated,1253730604 +184567,6296,Christopher Guest,1254015053 +184567,6296,eugene levy,1254015062 +184567,6296,folk music,1254015075 +184567,6296,Fred Willard,1254015060 +184567,6296,Harry Shearer,1254015056 +184567,6296,Michael McKean,1254015058 +184567,6296,mockumentary,1254015065 +184567,6296,music business,1254015068 +184567,6296,quirky,1254015073 +184567,6296,satire,1254015071 +184567,6306,Wilco,1253731735 +184567,6323,Amanda Peet,1254016212 +184567,6323,creepy,1254016206 +184567,6323,John Cusack,1254016163 +184567,6323,psychology,1254016160 +184567,6323,psychology and the nature of reality,1254016194 +184567,6323,Ray Liotta,1254016199 +184567,6323,twist after twist,1254016188 +184567,6327,documentary,1253728723 +184567,6337,gambling,1254015988 +184567,6337,John Hurt,1254015939 +184567,6337,Minnie Driver,1254015936 +184567,6337,Philip Seymour Hoffman,1254015934 +184567,6350,animated masterpiece,1253725289 +184567,6350,steampunk,1253725292 +184567,6380,child abuse,1253726555 +184567,6380,courtroom,1253726556 +184567,6382,PG,1253728521 +184567,6400,documentary,1254068372 +184567,6433,black and white,1253725551 +184567,6460,Orson Welles,1253728556 +184567,6552,Audrey Tautou,1254012494 +184567,6552,immigration,1254012499 +184567,6552,sexual exploitation,1254012508 +184567,6552,Stephen Frears,1254012503 +184567,6579,Billy Wilder,1253725575 +184567,6620,nerdy,1254012348 +184567,6669,cathartic,1253673442 +184567,6669,deliberate,1253673450 +184567,6669,lyrical,1253673423 +184567,6669,meaning of life,1253673428 +184567,6669,philosophical,1253673430 +184567,6669,terminal illness,1253673399 +184567,6692,jason lee,1253732597 +184567,6692,skateboarding,1253732589 +184567,6692,skating,1253732593 +184567,6692,tony hawk,1253732593 +184567,6708,Quirky,1254015717 +184567,6755,B-movie,1254014646 +184567,6755,Bruce Campbell,1254014644 +184567,6755,hilarious,1254014639 +184567,6755,mental illness,1254014662 +184567,6755,Ossie Davis,1254014640 +184567,6755,quirky,1254014651 +184567,6773,awesome music,1254013033 +184567,6773,irreverent,1254013038 +184567,6773,musicians,1254013048 +184567,6773,quirky,1254013041 +184567,6773,stylized,1254013050 +184567,6773,whimsical,1254013055 +184567,6774,David Cronenberg,1253735741 +184567,6774,James Woods,1253735738 +184567,6774,lurid,1253735745 +184567,6775,condescending,1264124104 +184567,6789,Monica Bellucci,1253730356 +184567,6857,Nicolas Cage,1253748400 +184567,6858,understated,1253728257 +184567,6872,brainless,1257083253 +184567,6872,campy,1257083253 +184567,6872,computer game,1257083252 +184567,6872,Nudity (Topless - Notable),1257083253 +184567,6872,Nudity (Topless),1257083253 +184567,6872,Uwe Boll,1257083253 +184567,6890,austere,1254015665 +184567,6909,atmospheric,1254016522 +184567,6909,ghosts,1254016526 +184567,6909,kind of dumb,1254016541 +184567,6921,deliberate,1253751093 +184567,6947,navy,1254015920 +184567,6947,Oscar (Best Sound Editing),1254015905 +184567,6947,Russell Crowe,1254015910 +184567,6953,Alejandro Gonzalez Inarritu,1253754362 +184567,6953,Naomi Watts,1253754364 +184567,6953,Sean Penn,1253754366 +184567,6957,surprisingly funny,1254016350 +184567,6971,bleak,1253730691 +184567,6971,werewolves,1253730704 +184567,6975,breaking the fourth wall,1253756587 +184567,6975,crazy,1253756562 +184567,6975,disturbing,1253756562 +184567,6975,scary music,1253756562 +184567,6975,susanne lothar,1253756618 +184567,6975,torture,1253756597 +184567,6985,new score,1253673013 +184567,6985,silent,1253673010 +184567,6993,Carrie Fisher,1253728216 +184567,7022,controversial,1253752395 +184567,7022,satire,1253752387 +184567,7068,deliberate,1253732768 +184567,7099,dystopic future,1253724752 +184567,7099,fantasy,1253724755 +184567,7099,Hayao Miyazaki,1253724758 +184567,7099,strong female lead,1253724762 +184567,7099,stylized,1253724778 +184567,7099,tense,1253724766 +184567,7124,documentary,1253751228 +184567,7125,gay,1253730264 +184567,7137,Alec Baldwin,1254016375 +184567,7137,casino,1254016377 +184567,7137,gambling,1254016378 +184567,7137,Maria Bello,1254016383 +184567,7137,William H. Macy,1254016371 +184567,7141,documentary,1254066951 +184567,7147,dreamlike,1254013859 +184567,7147,fantasy,1254013861 +184567,7147,imagination,1254013870 +184567,7147,Tim Burton,1254013865 +184567,7160,amazing acting,1254014533 +184567,7160,Charlize Theron,1254014530 +184567,7160,Christina Ricci,1254014520 +184567,7199,want to see again,1253729189 +184567,7265,erotic,1253750487 +184567,7265,incest,1253750475 +184567,7265,NC-17,1253750478 +184567,7327,austere,1253723764 +184567,7327,Bibi Andersson,1253723758 +184567,7327,cerebral,1253723780 +184567,7327,dreamlike,1253723787 +184567,7327,intimate,1253723716 +184567,7327,sexual,1253723720 +184567,7327,Swedish,1253723796 +184567,7327,talky,1253723770 +184567,7351,artist,1253751257 +184567,7352,british comedy,1253734037 +184567,7361,bittersweet,1253754173 +184567,7361,Charlie Kaufman,1253754150 +184567,7361,nonlinear,1253754168 +184567,7361,surreal,1253754163 +184567,7361,thought-provoking,1253754165 +184567,7387,influential,1254017590 +184567,7387,laughable,1254017596 +184567,7387,originator,1254017577 +184567,7438,action,1253752670 +184567,7438,adventure,1253752672 +184567,7438,atmospheric,1253752674 +184567,7438,kung fu,1253752693 +184567,7438,Quentin Tarantino,1253752677 +184567,7438,quirky,1253752679 +184567,7438,revenge,1253752684 +184567,7438,spaghetti western,1253752697 +184567,7438,Uma Thurman,1253752686 +184567,7445,action,1254015038 +184567,7445,Christopher Walken,1254015021 +184567,7445,Dakota Fanning,1254015024 +184567,7445,Denzel Washington,1254015036 +184567,7445,great cinematography,1254015034 +184567,7445,Stupid editing effects,1254015027 +184567,7445,Tony Scott,1254015030 +184567,7460,Bill Murray,1254015364 +184567,7460,deadpan,1254015362 +184567,7460,Jim Jarmusch,1254015376 +184567,7460,no plot,1254015370 +184567,7460,talky,1254015359 +184567,7474,Homosexuality,1253732673 +184567,7488,documentary,1253732664 +184567,7569,Bond,1253749869 +184567,7586,Paul Verhoeven,1253729426 +184567,7742,sentient dog,1253725234 +184567,7742,wierd,1253725226 +184567,7762,Alec Guinness,1253725675 +184567,7820,disturbing,1253724179 +184567,7820,dramatic irony,1253724199 +184567,7820,religion,1253724203 +184567,7896,Sam Peckinpah,1253727256 +184567,7932,addiction,1253727157 +184567,7932,Amtrak,1253727153 +184567,7932,documentary,1253727150 +184567,7932,Homeless,1253727144 +184567,7939,deliberate,1253725099 +184567,7981,stylized,1253723972 +184567,8014,Atmospheric,1253727485 +184567,8014,character driven,1253727491 +184567,8014,culture clash,1253727503 +184567,8014,deliberate,1253727497 +184567,8014,desires,1253727689 +184567,8014,great photograpy,1253727476 +184567,8014,reflective,1253727483 +184567,8014,visceral,1253727508 +184567,8195,deliberate,1253729973 +184567,8195,existential,1253729963 +184567,8239,understated,1253727300 +184567,8338,technicolor,1253725246 +184567,8366,Jena Malone,1253750416 +184567,8366,Macaulay Culkin,1253750418 +184567,8366,overrated,1253750432 +184567,8366,teen pregnancy,1253750438 +184567,8376,geek,1254016835 +184567,8376,nerds,1254016837 +184567,8376,overrated,1254016828 +184567,8376,quirky,1254016831 +184567,8376,quotable,1254016834 +184567,8477,overrated,1253724911 +184567,8575,Audrey Tautou,1254012605 +184567,8575,cute,1254012877 +184567,8575,French,1254012611 +184567,8600,basketball,1253728130 +184567,8807,dumb parts,1253750867 +184567,8807,high brow stupidity,1253750795 +184567,8807,John Cho,1253750829 +184567,8807,Kal Penn,1253750831 +184567,8807,Neil Patrick Harris,1253750793 +184567,8807,road trip,1253750809 +184567,8807,stoner comedy,1253750817 +184567,8910,detective,1253754641 +184567,8910,existentialism,1253754610 +184567,8910,funny,1253754614 +184567,8910,ironic,1253754637 +184567,8910,Jude Law,1253754616 +184567,8910,Mark Wahlberg,1253754618 +184567,8910,Naomi Watts,1253754620 +184567,8910,philosophy,1253754622 +184567,8910,satire,1253754624 +184567,8910,stylized,1253754629 +184567,8910,whimsical,1253754626 +184567,8950,Christian Bale,1253731756 +184567,8966,genius,1254014985 +184567,8966,psychology,1254014995 +184567,8966,science,1254014998 +184567,8966,sex,1254014989 +184567,8981,based on a play,1254015205 +184567,8981,Jude Law,1254015178 +184567,8981,Julia Roberts,1254015172 +184567,8981,Natalie Portman,1254015174 +184567,8981,stupid,1254015199 +184567,8981,unrealistic,1254015191 +184567,9013,Nixon,1253727289 +184567,25750,silent,1253672877 +184567,25771,Dali,1253724383 +184567,25771,dreams,1253724385 +184567,25771,experimental,1253724391 +184567,25771,short,1253724389 +184567,25771,surreal,1253724387 +184567,25855,1920s,1253674520 +184567,25855,nightclub,1253674499 +184567,25855,Prohibition,1253674504 +184567,25996,musical,1253747389 +184567,26051,nuns,1253748923 +184567,26052,deliberate,1253727407 +184567,26094,deliberate,1253729919 +184567,26150,boring as shit,1253729893 +184567,26150,deliberate,1253729875 +184567,26151,deliberate,1253729507 +184567,26158,sexual discovery,1253724487 +184567,26163,Bob Dylan,1253724692 +184567,26366,documentary,1254066530 +184567,26395,Eric Idle,1278402509 +184567,26479,musical,1253751915 +184567,26587,dark,1266382263 +184567,26587,profound,1266381370 +184567,26587,slow,1266381360 +184567,26587,understated,1266382260 +184567,26631,miniaturization,1255131500 +184567,26631,stop motion,1255131498 +184567,26662,adventure,1253729043 +184567,26662,aviation,1253729066 +184567,26662,comedy,1253729055 +184567,26662,feel-good,1253729053 +184567,26662,Hayao Miyazaki,1253729047 +184567,26662,radio,1253729081 +184567,26662,strong female lead,1253729057 +184567,26662,Studio Ghibli,1253729049 +184567,26736,outrageous gore,1253751188 +184567,26736,ridiculous,1253751196 +184567,26934,insane,1278005864 +184567,26939,Aki Kaurismäki,1266385576 +184567,26939,cool design,1266385594 +184567,26939,dark comedy,1266385598 +184567,26939,Finland Trilogy,1266385602 +184567,26939,real life,1266385629 +184567,26947,ambiguous ending,1268532101 +184567,26947,Laura Drasbæk,1268532078 +184567,27266,boring,1253733542 +184567,27266,slow,1253733525 +184567,27370,funny,1274850506 +184567,27370,Kate Ashfield,1274995642 +184567,27660,animation,1253750080 +184567,27660,cyberpunk,1253750082 +184567,27660,Keanu Reeves,1253750087 +184567,27660,related:The Matrix (1999),1253750090 +184567,27721,Audrey Tautou,1254012274 +184567,27727,ambiguous,1256317532 +184567,27727,dark,1256317477 +184567,27727,Nudity (Full Frontal),1256317413 +184567,27727,realistic ending,1256317485 +184567,27727,rebellion,1256317463 +184567,27727,seedy,1256317471 +184567,27727,sibel kekilli,1256317430 +184567,27773,incest,1253724821 +184567,27773,meandering,1253724845 +184567,27788,Keira Knightley,1254017008 +184567,27873,mental illness,1254013784 +184567,27873,metallica,1254013775 +184567,30803,deliberate,1253726505 +184567,30810,Bill Murray,1254013732 +184567,30810,deadpan,1254013736 +184567,30810,funny,1254013738 +184567,30810,Owen Wilson,1254013742 +184567,30810,quirky,1254013740 +184567,30810,weird,1254013747 +184567,30810,Wes Anderson,1254013744 +184567,30810,whimsical,1254013749 +184567,31184,bloated,1254015864 +184567,31184,lame anime,1254015858 +184567,31184,soundtrack,1254015876 +184567,31225,basketball,1254016857 +184567,31225,Samuel L. Jackson,1254016849 +184567,31437,child abuse,1253729941 +184567,31437,deliberate,1253729943 +184567,31437,neglected childen,1253729947 +184567,31437,video games,1253729949 +184567,31547,Amazing Cinematography,1266419297 +184567,31547,poignant,1266425639 +184567,31547,Werner Herzog,1266419286 +184567,31658,adventure,1253727926 +184567,31658,fantasy,1253727923 +184567,31658,Hayao Miyazaki,1253727915 +184567,31658,steampunk,1253727910 +184567,31658,Studio Ghibli,1253727916 +184567,31660,Anna Paquin,1254015582 +184567,31660,poor dialogue,1254015596 +184567,31660,steampunk,1254015577 +184567,32456,FIGHTING THE SYSTEM,1254017318 +184567,32456,Studio Ghibli,1254017320 +184567,32582,parrots,1254013075 +184567,32587,atmospheric,1253752914 +184567,32587,black comedy,1253752918 +184567,32587,multiple storylines,1253752924 +184567,32587,Robert Rodriguez,1253752964 +184567,32587,Rosario Dawson,1253752964 +184567,32587,stylized,1253752921 +184567,32792,boring,1276371247 +184567,32792,Monica Vitti,1276371301 +184567,32892,black and white,1253726963 +184567,32892,bleak,1253726972 +184567,32892,Old,1253726976 +184567,33072,Orson Welles,1253725334 +184567,33171,child abuse,1253730234 +184567,33171,homosexuality,1253730232 +184567,33171,male nudity,1253730237 +184567,33603,gay marriage,1253725054 +184567,33603,homosexuality,1253725055 +184567,33603,weed,1253725060 +184567,33834,amazing make-up effects,1254016703 +184567,33834,another zombie movie,1254016691 +184567,33834,post-apocalyptic,1254016696 +184567,33834,Romero,1254016696 +184567,33880,avante garde,1254013941 +184567,33880,deadpan,1254013945 +184567,33880,irreverent,1254013947 +184567,33880,Miranda July,1254013923 +184567,33880,SEXUAL AWAKENING,1254013927 +184567,33880,SUBURBAN DYSFUNCTION,1254013930 +184567,33880,unique,1254013935 +184567,33880,weird,1254013933 +184567,34155,reflective,1254012524 +184567,34271,stereotypes,1254014497 +184567,34528,Amy Adams,1254013673 +184567,34528,artist,1254013677 +184567,34528,austere,1254013681 +184567,34528,ECCENTRIC FAMILIES,1254013685 +184567,34528,quirky,1254013690 +184567,34528,understated,1254013696 +184567,35836,crude humor,1254015798 +184567,35836,great dialogue,1254015780 +184567,35836,Los Angeles,1254015795 +184567,35836,romantic comedy,1254015788 +184567,35836,Seth Rogen,1254015776 +184567,35836,sex,1254015784 +184567,35836,Steve Carell,1254015774 +184567,36363,culture clash,1260204635 +184567,36363,drab,1260204666 +184567,36363,racism,1260204650 +184567,36363,sci-fi,1260204645 +184567,36363,unique lexicon,1260204717 +184567,36535,artsy,1253754693 +184567,36535,beautiful scenery,1253754697 +184567,36535,culture clash,1253754701 +184567,36535,elijah wood,1253754698 +184567,36535,Eugene Hutz,1253754752 +184567,36535,Great Soundtrack,1253754706 +184567,36535,judaica,1253754690 +184567,37626,antiquated thinking,1278005795 +184567,37733,David Cronenberg,1254013971 +184567,37733,disappointing,1254013964 +184567,37733,overrated,1254013967 +184567,37733,Viggo Mortensen,1254013974 +184567,37857,alternate reality,1253751295 +184567,37857,artistic,1253751325 +184567,37857,claymation,1253751293 +184567,37857,Jim Henson,1253751279 +184567,37857,melodramatic,1253751351 +184567,37857,neil gaiman,1253751282 +184567,37857,parallel universe,1253751302 +184567,37857,rotoscoping,1253751285 +184567,37857,visually appealing,1253751288 +184567,38097,rating very dependent on version,1253681304 +184567,38097,To See,1253681307 +184567,38304,Bob Dylan,1253724090 +184567,38886,overrated,1253732821 +184567,39414,Claire Danes,1254016816 +184567,39444,emo,1254016672 +184567,39444,Nicholas Cage,1254016668 +184567,39869,stylish,1254013013 +184567,40010,nothing happens,1254016889 +184567,40010,pointless,1254016882 +184567,40583,cerebral,1254014878 +184567,40583,complicated,1254014876 +184567,40583,George Clooney,1254014870 +184567,40583,literate,1254014881 +184567,40583,Matt Damon,1254014873 +184567,40946,inconsistent quality,1254016082 +184567,40946,irreverent,1254016020 +184567,40946,race issues,1254016023 +184567,40946,sarah silverman,1254016016 +184567,41226,sad,1254066481 +184567,41285,CLASS DIFFERENCES,1254014019 +184567,41285,clever,1254013995 +184567,41285,Disturbing,1254014013 +184567,41285,Emily Mortimer,1254013997 +184567,41285,interesting,1254014011 +184567,41285,murder mystery,1254014007 +184567,41285,non-hollywood ending,1254014032 +184567,41285,Scarlett Johansson,1254013998 +184567,41285,Woody Allen,1254014001 +184567,41527,Middle East,1253731813 +184567,41527,terrorism,1253731815 +184567,41569,1920s,1253754567 +184567,41569,big budget,1253754585 +184567,41569,dinosaurs,1253754550 +184567,41569,Jack Black,1253754540 +184567,41569,monster,1253754562 +184567,41569,Naomi Watts,1253754537 +184567,41569,Peter Jackson,1253754543 +184567,41569,remake,1253754547 +184567,41569,stupid,1253754545 +184567,41571,geisha,1254017077 +184567,41571,Oscar (Best Sound Editing),1254017072 +184567,41571,women,1254017080 +184567,41724,good idea,1254066995 +184567,41724,poor execution,1254067003 +184567,42163,race jokes,1271641885 +184567,42163,respect is due,1271642479 +184567,42422,evangelion like,1253725123 +184567,42718,Disney,1253749894 +184567,42718,dystopia,1253749896 +184567,42725,stoner,1254016984 +184567,42725,video game testers,1254016960 +184567,42730,basketball,1254016900 +184567,42730,Disney,1254016902 +184567,42730,Jerry Bruckheimer,1254016903 +184567,42730,not historically accurate,1254016911 +184567,42730,sports,1254016915 +184567,42730,true story,1254016908 +184567,43708,Documentary,1253754274 +184567,43708,hip hop,1253754301 +184567,43708,Michel Gondry,1253754284 +184567,43708,Mos Def,1253754280 +184567,43910,neil young,1253730645 +184567,44555,Berlin,1277099063 +184567,44555,East Germany,1277099073 +184567,44555,freedom of expression,1277099078 +184567,44555,Martina Gedeck,1277099139 +184567,44657,bleak,1253727212 +184567,44657,deliberate,1253727215 +184567,44657,understated,1253727217 +184567,44974,claustrophobic,1254015427 +184567,44974,controversial,1254015429 +184567,44974,disturbing,1254015431 +184567,44974,Ellen Page,1254015424 +184567,44974,internet,1254015444 +184567,44974,lurid,1254015439 +184567,44974,Sandra Oh,1254015453 +184567,44974,sexual abuse,1254015434 +184567,44974,vindictive,1254015463 +184567,45210,visceral,1254012554 +184567,45506,Annabella Sciorra,1267174071 +184567,45728,bad acting,1254014913 +184567,45728,brian o'halloran,1254014973 +184567,45728,dialogue driven,1254014895 +184567,45728,Highly quotable,1254014893 +184567,45728,jeff anderson,1254014964 +184567,45728,jennifer schwalbach smith,1254014947 +184567,45728,Kevin Smith,1254014891 +184567,45728,marijuana,1254014898 +184567,45728,pop culture references,1254069489 +184567,45728,profanity,1254014900 +184567,45728,Rosario Dawson,1254014902 +184567,45728,sequel,1254014918 +184567,45728,sexual deviance,1254014904 +184567,45728,slackers,1254014906 +184567,45728,smashing pumpkins,1254069427 +184567,45728,smashing pumpkins montage,1254069505 +184567,45728,view askew,1254014922 +184567,45950,set design,1254013907 +184567,46723,Alejandro Gonzalez Inarritu,1253756472 +184567,46723,multiple storylines,1253756476 +184567,47152,boring,1278005841 +184567,47670,middle east,1253748712 +184567,48043,artistic,1254014732 +184567,48043,atmospheric,1254014735 +184567,48043,cerebral,1254014742 +184567,48043,dreamlike,1254014745 +184567,48043,hallucinatory,1254014747 +184567,48043,Hugh Jackman,1254014749 +184567,48043,immortality,1254014752 +184567,48043,inspirational,1254014754 +184567,48043,mindfuck,1254014784 +184567,48043,Music,1254014759 +184567,48043,mythology,1254014766 +184567,48043,Rachel Weisz,1254014762 +184567,48043,time travel,1254014762 +184567,48043,visually appealing,1254014768 +184567,48082,artsy,1253754025 +184567,48082,bittersweet,1253754075 +184567,48082,Charlotte Gainsbourg,1253754020 +184567,48082,dream-like,1253754025 +184567,48082,dreams,1253754069 +184567,48082,Gael García Bernal,1253754047 +184567,48082,Michel Gondry,1253754016 +184567,48082,psychology,1253754053 +184567,48082,quirky,1253754058 +184567,48082,romance,1253754062 +184567,48082,stylized,1253754056 +184567,48082,surreal,1253754060 +184567,48165,crazy,1258353305 +184567,48165,leni tanzer,1258353346 +184567,48165,slow,1258353332 +184567,48342,Aaron Eckhart,1254017512 +184567,48342,Helena Bonham Carter,1254017509 +184567,48682,women disguised as men,1253724807 +184567,49917,long,1254016553 +184567,49917,spike lee,1254016559 +184567,50011,door to the different world,1253728654 +184567,50011,dystopia,1253728653 +184567,50594,hedonist,1253749474 +184567,50594,surreal,1253749477 +184567,50851,documentary,1254068902 +184567,51127,family bonds,1261686233 +184567,51127,for fans,1261686264 +184567,51127,frank black,1261686200 +184567,51127,honest,1261686089 +184567,51127,intimate,1261686079 +184567,51127,kim deal,1261686205 +184567,51127,music documentary,1261686111 +184567,51127,pixies,1261686121 +184567,51127,rockumentary,1261686138 +184567,51127,soundtrack,1261686168 +184567,51705,Audrey Tautou,1259896067 +184567,52319,easily confused with other movie(s) (title),1253676363 +184567,52579,too long,1253943639 +184567,52694,cute,1257083048 +184567,52694,funny,1257083054 +184567,53024,documentary,1254066615 +184567,53550,Christian Bale,1254013550 +184567,53550,Steve Zahn,1254013548 +184567,53550,Werner Herzog,1254013549 +184567,53883,terrorism,1253728435 +184567,53956,dark comedy,1254014675 +184567,53956,farce,1254014678 +184567,53956,Peter Dinklage,1254014680 +184567,54372,murder mystery,1254019269 +184567,54372,overrated,1254019265 +184567,54503,Christopher Mintz-Plasse,1254069326 +184567,54503,crude humor,1254069229 +184567,54503,hilarious,1254069268 +184567,54503,mclovin,1254069338 +184567,54503,nerds,1254069272 +184567,54796,Americans are jerks,1253681467 +184567,54796,Julie Delpy,1253681430 +184567,54796,less than 300 ratings,1253681481 +184567,54796,Nudity (Topless),1253681456 +184567,54796,setting:Paris,1253681444 +184567,54881,arcade,1254012232 +184567,54881,geek,1254012228 +184567,54881,quirky subculture,1254012226 +184567,54881,video games,1254012224 +184567,55031,funny,1270076075 +184567,55031,Jason Mewes,1270076067 +184567,55031,Kevin Smith,1270076065 +184567,55031,movie business,1270253123 +184567,55031,Q&A,1270076082 +184567,55031,Scott Mosier,1270076069 +184567,55118,David Cronenberg,1253754433 +184567,55118,Naomi Watts,1253754408 +184567,55156,activism,1254021535 +184567,55156,documentary,1254021533 +184567,55156,Ralph Nader,1254021531 +184567,55167,music by plaid,1253751978 +184567,55247,existential,1254017638 +184567,55247,great soundtrack,1254017614 +184567,55247,Jena Malone,1254017675 +184567,55247,Kristen Stewart,1254017675 +184567,55247,road trip,1254017631 +184567,55247,Sean Penn,1254017623 +184567,55247,self discovery,1254017628 +184567,55247,stupid main character,1254017651 +184567,55269,boring,1253756650 +184567,55269,Wes Anderson,1253756655 +184567,55269,whiny,1253756650 +184567,55442,animation,1253724863 +184567,55442,French,1253724860 +184567,55442,Middle East,1253724875 +184567,55442,punk,1253724872 +184567,55814,appreciating life,1253727824 +184567,55830,creativity,1253754232 +184567,55830,Jack Black,1253754221 +184567,55830,Michel Gondry,1253754225 +184567,55830,Mos Def,1253754227 +184567,55830,quirky,1253754229 +184567,55999,fantasy,1257083001 +184567,55999,grieving,1257082991 +184567,55999,haphazard,1257083020 +184567,55999,magic,1257082996 +184567,55999,Natalie Portman,1257082984 +184567,56145,apocalypse,1254016615 +184567,56145,derivative,1254016596 +184567,56145,Good ending,1254016612 +184567,56145,great scares,1254016602 +184567,56145,monster,1254016606 +184567,56145,predictable,1254016584 +184567,56671,Jena Malone,1253731533 +184567,56671,Zooey Deschanel,1253731532 +184567,56715,alternate reality,1254012254 +184567,56715,Shannyn Sossamon,1254012250 +184567,56757,great cinematography,1254016484 +184567,56757,Johnny Depp,1254016480 +184567,56757,poorly written songs,1254016471 +184567,56757,serial killer,1254016485 +184567,56757,silly plot,1254016494 +184567,56757,unengaging,1254016500 +184567,56757,visually appealing,1254016476 +184567,56788,Aaron Sorkin,1254014301 +184567,56788,Amy Adams,1254014329 +184567,56788,Good dialogue,1254014312 +184567,56788,Julia Roberts,1254014332 +184567,56788,Nudity (Topless),1254014314 +184567,56788,Philip Seymour Hoffman,1254014316 +184567,56788,satire,1254014318 +184567,56788,strippers,1254014321 +184567,56788,Tom Hanks,1254014323 +184567,56788,true story,1254014339 +184567,56949,chick movie,1254019519 +184567,56949,judy greer,1254019512 +184567,56949,Katherine Heigl,1254019516 +184567,57147,Colin Farrell,1254019539 +184567,57147,dramatic,1254019543 +184567,57147,meandering,1254019547 +184567,57147,pointless,1254019552 +184567,57243,Middle East,1253730727 +184567,57326,Matthew Lillard,1254020071 +184567,57326,plot,1254020048 +184567,57326,Uwe Boll,1254020058 +184567,57326,video game adaptation,1254020058 +184567,57528,unnecessary,1278006982 +184567,58047,Abigail Breslin,1254015389 +184567,58047,Elizabeth Banks,1254015387 +184567,58047,Kevin Kline,1254015391 +184567,58047,new york city,1254015399 +184567,58047,Rachel Weisz,1254015396 +184567,58047,Ryan Reynolds,1254015395 +184567,58154,atmospheric,1254019747 +184567,58154,Natalie Portman,1254019716 +184567,58154,royalty,1254019726 +184567,58154,Scarlett Johansson,1254019717 +184567,58156,André Benjamin,1254019996 +184567,58156,awful,1254019976 +184567,58156,Basketball,1254019982 +184567,58156,disappointing,1254019989 +184567,58156,Will Ferrell,1254019992 +184567,58191,documentary,1254019080 +184567,58301,Michael Haneke,1253754483 +184567,58301,Naomi Watts,1253754485 +184567,58301,remake,1253754479 +184567,58301,Tim Roth,1253754493 +184567,58303,altruism,1254019119 +184567,58347,Christina Ricci,1254017104 +184567,58347,really stupid,1254017100 +184567,58998,good dialogue,1254014457 +184567,58998,hilarious,1254014457 +184567,58998,Jason Segel,1254014411 +184567,58998,Kristen Bell,1254014414 +184567,58998,Paul Rudd,1254014471 +184567,58998,surfing,1254014475 +184567,59022,bad pacing,1254019678 +184567,59022,bad sequel,1254019632 +184567,59022,george bush smoking pot,1254019658 +184567,59022,John Cho,1254019634 +184567,59022,kal penn,1254019641 +184567,59022,Neil Patrick Harris,1254019637 +184567,59022,not funny,1254019671 +184567,59107,Evan Rachel Wood,1254019694 +184567,59107,Uma Thurman,1254019696 +184567,59126,atheism,1254015300 +184567,59126,Bill Maher,1254015301 +184567,59126,Christianity,1254015325 +184567,59126,Documentary,1254015304 +184567,59126,intellectual,1254015311 +184567,59126,intelligent,1254015309 +184567,59126,irreverent,1254015316 +184567,59126,thought-provoking,1254015307 +184567,59126,topic:religion,1254015322 +184567,59784,animation,1254019375 +184567,60072,Angelina Jolie,1254019820 +184567,60072,assassin,1254019815 +184567,60072,assassin-in-training,1254019817 +184567,60072,graphic novel,1254019812 +184567,60072,Morgan Freeman,1254019821 +184567,60072,stylish,1254019809 +184567,60074,bad ending,1254019596 +184567,60074,bad script,1254019597 +184567,60074,messy,1254019607 +184567,60128,strap-on,1254019860 +184567,60135,documentary,1254017715 +184567,60161,david cross,1254013226 +184567,60161,intelligent humor,1254013279 +184567,60161,sci fi,1254013269 +184567,60161,stephen hawking,1254013240 +184567,60333,antarctica,1254019088 +184567,60333,human condition,1254019090 +184567,60333,Philosophical,1254019097 +184567,60333,scenic,1254019100 +184567,60333,Werner Herzog,1254019102 +184567,60530,young girls,1254019243 +184567,60684,alternate reality,1255836840 +184567,60684,based on a comic,1255836843 +184567,60684,dystopia,1255836836 +184567,60684,graphic novel,1255836832 +184567,60684,Malin Akerman,1255836890 +184567,60684,nuclear war,1255836858 +184567,60684,Nudity (Topless),1255836814 +184567,60684,social commentary,1255836850 +184567,60684,stylized,1255836828 +184567,60684,stylized violence,1255836819 +184567,60684,superheroes,1255836845 +184567,60766,too long,1254019137 +184567,60766,twin towers,1254019139 +184567,60816,nerdy,1253730108 +184567,60950,Barcelona,1254019417 +184567,60950,bisexual,1254019415 +184567,60950,chick flick,1254019430 +184567,60950,love triangles,1254019411 +184567,60950,narrated,1254019428 +184567,60950,no nudity,1254019497 +184567,60950,painter,1254019408 +184567,60950,Penelope Cruz,1254019486 +184567,60950,Scarlett Johansson,1254019391 +184567,60950,scenic,1254019403 +184567,60950,threesome,1254019405 +184567,60950,Woody Allen,1254019401 +184567,60979,Batman,1254017334 +184567,61262,Amy Smart,1254019932 +184567,61262,bad ending,1254019932 +184567,61262,flat Story,1254019927 +184567,61262,Kiefer Sutherland,1254019935 +184567,61357,Cinema Verité,1256013705 +184567,61401,Samuel L. Jackson,1254020020 +184567,61401,Scarlett Johansson,1254020019 +184567,61401,stylish,1254020037 +184567,61646,Gay,1253674091 +184567,62049,George Orwell,1253728057 +184567,62155,bishop allen,1254017145 +184567,62155,great soundtrack,1254017149 +184567,62155,Kat Dennings,1254017135 +184567,62155,Manhattan,1254017162 +184567,62155,Michael Cera,1254017140 +184567,62155,New York City,1254017141 +184567,62203,gorno,1253731804 +184567,62344,Anne Hathaway,1254014100 +184567,62344,neuroticism,1254014106 +184567,62376,adventure,1254019584 +184567,62376,Bill Murray,1254019576 +184567,62376,steampunk,1254019580 +184567,62376,stylistic,1254019580 +184567,62394,based on a computer game,1254019896 +184567,62394,based on a video game,1254019899 +184567,62394,Ludacris,1254019904 +184567,62394,Mark Wahlberg,1254019903 +184567,62394,video game adaptation,1254019907 +184567,62434,Elizabeth Banks,1254016298 +184567,62434,foul language,1254016324 +184567,62434,Kevin Smith,1254016301 +184567,62434,sex,1254016318 +184567,62434,Star Wars,1254016309 +184567,62511,Charlie Kaufman,1254014197 +184567,62511,hard to follow,1254014234 +184567,62511,meta,1254014216 +184567,62511,New York City,1254014222 +184567,62511,Nudity (Topless),1254014201 +184567,62511,Philip Seymour Hoffman,1254014205 +184567,62511,play,1254014207 +184567,62511,surreal,1254014195 +184567,62511,Theater,1254014210 +184567,62956,fantasy spoof,1254015272 +184567,62956,intelligent humor,1254015265 +184567,62956,nerd humor,1254015269 +184567,63131,derivative,1254015109 +184567,63131,Elizabeth Banks,1254015115 +184567,63131,geeks,1254015125 +184567,63131,obvious plot,1254015099 +184567,63131,role playing game,1254015119 +184567,63676,adultery,1277286695 +184567,63676,engaging,1277286616 +184567,63676,existensial,1277286609 +184567,63676,existentialism,1277286674 +184567,63676,philosophical,1277286594 +184567,63876,biography,1254019178 +184567,63876,gay,1254019175 +184567,63876,Sean Penn,1254019187 +184567,63992,emo,1254019792 +184567,63992,vampires,1254019788 +184567,64231,revenge,1254019950 +184567,64231,ruthless,1254019957 +184567,64285,Aardman,1253751874 +184567,64285,claymation,1253751879 +184567,64285,Wallace & Gromit,1253751877 +184567,64497,John Cleese,1276125913 +184567,64497,Keanu Reeves,1276125916 +184567,64839,Darren Aronofsky,1256448033 +184567,65126,BDSM,1254019343 +184567,65126,Chuck Palahniuk,1254019349 +184567,65126,dark comedy,1254019352 +184567,65126,Sam Rockwell,1254019345 +184567,65126,Sex Addict,1254019347 +184567,65130,abortion,1253749719 +184567,65188,emotional,1262164202 +184567,65188,family bonds,1262164213 +184567,65188,political reform,1262164243 +184567,65188,touching,1262164257 +184567,65709,documentary,1253749226 +184567,65709,john waters,1253749213 +184567,65802,family friendly,1259952805 +184567,65802,good heart,1259952842 +184567,65802,Kevin James,1259952809 +184567,65802,piecemeal ending,1259952786 +184567,65802,stupid,1259952754 +184567,65802,unfunny,1259952756 +184567,66371,beautiful music,1265178010 +184567,66371,beautiful scenery,1265177935 +184567,66371,confronting death,1265177907 +184567,66371,earnest,1265178025 +184567,66371,emotional,1265177916 +184567,66371,father son relationship,1265178120 +184567,66371,nonsensical wife character,1265178072 +184567,66509,Adam Sandler,1254018104 +184567,66509,Judd Apatow,1254018109 +184567,66665,canada,1260644422 +184567,66665,Catherine O'Hara,1260644586 +184567,66665,florida,1260644415 +184567,66665,Jeff Daniels,1260644168 +184567,66665,John Krasinski,1260644262 +184567,66665,Maggie Gyllenhaal,1260644180 +184567,66665,Maya Rudolph,1260644273 +184567,66665,offensive,1260644305 +184567,66665,philosophical,1260644197 +184567,66665,pregnancy,1260644309 +184567,66665,quirky,1260644172 +184567,66665,road trip,1260644198 +184567,66665,Sam Mendes,1260644185 +184567,66665,self-important,1260644301 +184567,66665,smart dialogues,1260644200 +184567,66665,witty,1260644512 +184567,66934,anti-hero,1271028911 +184567,66934,Felicia Day,1253674342 +184567,66934,good dialogue,1271028915 +184567,66934,joss whedon,1253674339 +184567,66934,musical,1271028920 +184567,66934,Nathan Fillion,1271028895 +184567,66934,Neil Patrick Harris,1253674336 +184567,67087,comedy,1254358712 +184567,67087,friendship,1254358716 +184567,67087,Jaime Pressly,1254358719 +184567,67087,Jason Segel,1254358723 +184567,67087,Paul Rudd,1254358726 +184567,67267,Amy Adams,1253672422 +184567,67267,funny,1253672427 +184567,67267,sad,1253672446 +184567,67267,Steve Zahn,1253672436 +184567,67267,witty,1253672432 +184567,67734,nihilism,1254054824 +184567,67997,Anna Chlumsky,1268934671 +184567,67997,british,1268934693 +184567,67997,cynical,1268934701 +184567,67997,Gina McKee,1268934682 +184567,67997,intelligent,1268934714 +184567,67997,James Gandolfini,1268934680 +184567,68073,funny,1279476097 +184567,68073,Philip Seymour Hoffman,1279476113 +184567,68073,rock and roll,1279476116 +184567,68073,Talulah Riley,1279476650 +184567,68135,basketball,1254069012 +184567,68135,spoon,1254069377 +184567,68135,spoon montage,1254069386 +184567,68135,Star Wars,1254069022 +184567,68135,Zac Efron,1254018159 +184567,68157,Brad Pitt,1262880070 +184567,68157,gore,1262880078 +184567,68157,great acting,1262880082 +184567,68157,Quentin Tarantino,1262880086 +184567,68157,too long,1262880090 +184567,68159,Business is the antagonist,1257929970 +184567,68159,Helen Mirren,1257929984 +184567,68159,journalism,1257929989 +184567,68159,political corruption,1257929994 +184567,68159,Rachel McAdams,1257929998 +184567,68159,Russell Crowe,1257929973 +184567,68194,british,1256317591 +184567,68205,Amy Smart,1253512305 +184567,68205,fast paced,1253681362 +184567,68205,fun,1253681365 +184567,68205,gore,1253681351 +184567,68205,stupid,1253681342 +184567,68237,Bechdel Test:Fail,1258960468 +184567,68237,boring,1258959499 +184567,68358,big budget,1258351947 +184567,68358,far future,1258351944 +184567,68358,long,1258351988 +184567,68358,revenge,1258351939 +184567,68358,space,1258351936 +184567,68358,space travel,1258351934 +184567,68358,time travel,1258351932 +184567,68486,fire,1274995441 +184567,68600,brainless,1254017117 +184567,68791,artificial intelligence,1254018502 +184567,68791,bad plot,1254018505 +184567,68791,bad script,1254018507 +184567,68791,Christian Bale,1254018489 +184567,68791,fallout taste,1254018500 +184567,68791,fighting,1254018521 +184567,68791,futuristic,1254018518 +184567,68791,incongruous,1254018515 +184567,68791,no blood,1254018511 +184567,68791,No humor,1254018513 +184567,68791,post-apocalyptic,1254018490 +184567,68791,robots,1254018493 +184567,68791,sci-fi,1254018491 +184567,68791,sequel,1254018523 +184567,68952,Edge of your seat,1254018077 +184567,68952,old school horror,1254018074 +184567,68952,Sam Raimi,1254018068 +184567,69122,casino,1256257754 +184567,69122,comedy,1256257684 +184567,69122,Heather Graham,1256257688 +184567,69122,Las Vegas,1256257760 +184567,69122,Nudity (Topless),1256257743 +184567,69122,stupid stereotypes,1256257718 +184567,69122,Zach Galifianakis,1256257714 +184567,69134,Charlotte Gainsbourg,1253600971 +184567,69406,Malin Akerman,1278006779 +184567,69406,pandering,1278006772 +184567,69406,Ryan Reynolds,1257082927 +184567,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1253726637 +184567,69604,larry david,1254012186 +184567,69604,Woody Allen,1254012201 +184567,69685,MTV,1253726585 +184567,69757,artistic,1265862106 +184567,69757,chick flick,1265862137 +184567,69757,Funny,1265862141 +184567,69757,intelligent,1265862126 +184567,69757,mean,1265862113 +184567,69757,romance,1265862145 +184567,69757,Zooey Deschanel,1253674194 +184567,69784,homosexuality,1254018448 +184567,69784,Larry Charles,1254018440 +184567,69784,mockumentary,1254018425 +184567,69784,Sacha Baron Cohen,1254018440 +184567,69784,tasteless,1254018451 +184567,69844,big budget,1262569014 +184567,69844,fantasy,1262568898 +184567,69844,harry potter,1262568902 +184567,69849,racism,1255133736 +184567,69849,slavery,1255133729 +184567,70286,alternate history,1254364186 +184567,70286,genetics,1254364126 +184567,70286,humor,1254364153 +184567,70286,justice,1254364157 +184567,70286,mech,1254364162 +184567,70286,political commentary,1254364166 +184567,70286,redemption,1254364136 +184567,70286,sci-fi,1254364138 +184567,70286,social commentary,1254364133 +184567,70286,Special Effects,1254364129 +184567,70286,thriller,1254364178 +184567,70451,Agnes Kittelsen,1278179400 +184567,70451,Norway,1278179349 +184567,70533,remake,1264099423 +184567,71057,Jennifer Connelly,1271100452 +184567,71254,terrible,1278006539 +184567,71304,horror,1258956783 +184567,71390,crazy,1278005807 +184567,71429,Robin Williams,1267151573 +184567,71535,Bill Murray,1268763674 +184567,71535,comedy,1268763686 +184567,71535,Emma Stone,1268764113 +184567,71535,ending,1268763702 +184567,71535,gore,1268763695 +184567,71535,Woody Harrelson,1268763692 +184567,71899,character study,1278004165 +184567,71899,claymation,1278004175 +184567,71899,personal,1278004158 +184567,71899,philosophical,1278004214 +184567,71899,poignant,1278004147 +184567,71899,sweet,1278004147 +184567,72176,denial,1264058039 +184567,72176,football,1264043124 +184567,72176,honest,1264043129 +184567,72176,Kevin Corrigan,1264043137 +184567,72176,quirky,1264043159 +184567,72176,sports,1264043143 +184567,72226,Bill Murray,1259735606 +184567,72226,George Clooney,1259735616 +184567,72226,hipster-oriented,1272952463 +184567,72226,Jason Schwartzman,1259735620 +184567,72226,Meryl Streep,1259735626 +184567,72226,Owen Wilson,1259735672 +184567,72226,Roald Dahl,1259735611 +184567,72226,talking animals,1259735645 +184567,72226,Wes Anderson,1259735641 +184567,72226,Willem Dafoe,1259735658 +184567,72386,artistic,1270316016 +184567,72386,erotic,1270316001 +184567,72386,great dialogue,1270315956 +184567,72386,melodramatic,1270315975 +184567,72386,Nudity (Topless),1270315907 +184567,72386,Penélope Cruz,1270315932 +184567,72386,sensual,1270315966 +184567,72386,slightly cliche,1270315987 +184567,72489,extremely gory,1268936280 +184567,74416,beautifully filmed,1271228604 +184567,74416,great soundtrack,1271228372 +184567,74416,too long,1271228346 +184567,74458,asylum,1277431577 +184567,74458,Ben Kingsley,1277431584 +184567,74458,Emily Mortimer,1277431593 +184567,74458,insanity,1277431721 +184567,74458,Michelle Williams,1277431714 +184567,74532,Kevin Smith,1279501082 +184567,74532,unoriginal,1279508862 +184567,74582,mean-spirited,1276728437 +184567,74677,Critical thinking,1276329677 +184567,74677,Message,1276329680 +184567,74677,unbiased,1276329688 +184567,74946,cute,1278866914 +184567,74946,formulaic,1278866932 +184567,74946,funny,1278866924 +184567,76077,Lyndsy Fonseca,1275362275 +184567,76251,inane,1275361880 +184567,76251,long,1275361837 +184567,76251,Lyndsy Fonseca,1275362179 +184567,76251,Nicolas Cage,1275361997 +184567,76251,not funny,1275361864 +184567,76251,tasteless,1275361831 +184567,78218,Samuel L. Jackson,1278397469 +184567,78218,terrorism,1278397451 +184567,78218,torture,1278397462 +184581,608,crime,1442170357 +184581,114713,Horror,1442170286 +184603,596,Disney,1215366476 +184603,1257,geeks,1278052519 +184603,1257,high school,1278052522 +184603,1257,imagination,1278052519 +184603,1257,John Cusack,1278052528 +184603,1257,love,1278052519 +184603,1288,mockumentary,1215364731 +184603,1289,no dialogue,1203534565 +184603,1748,memory,1251171796 +184603,1748,metaphorical,1251172050 +184603,1748,stylized,1251171805 +184603,1748,thought-provoking,1251171807 +184603,1748,wake up,1251171826 +184603,2421,martial arts,1215367195 +184603,2916,corporate control,1283234910 +184603,2916,dream within a dream,1283234875 +184603,2916,espionage,1283234875 +184603,2916,heroism,1283234875 +184603,2916,Mars,1283234875 +184603,2916,memories,1283234875 +184603,2916,Philip K. Dick,1283234895 +184603,2916,terrorism,1283234931 +184603,3638,James Bond,1213074661 +184603,3910,musical,1203534356 +184603,4873,rotoscoping,1206546285 +184603,5618,cultural classic,1251171862 +184603,5618,heroine,1251171886 +184603,5618,metaphorical,1251172024 +184603,6331,spelling bee,1211998530 +184603,6373,religion,1215229986 +184603,7482,martial arts,1215367144 +184603,7915,quirky,1261261148 +184603,26547,Jackie Chan,1201822284 +184603,26547,martial arts,1242673817 +184603,26547,stunts,1242673810 +184603,45950,environment,1206545835 +184603,45950,global warming,1206545779 +184603,45950,sustainability,1206545857 +184603,50944,dark,1313300228 +184603,50944,Hong Kong,1313300279 +184603,51255,justice,1277916581 +184603,51255,metaphorical,1277916581 +184603,51255,police,1277916549 +184603,53000,post-apocalyptic,1215365773 +184603,53000,zombies,1215365765 +184603,53894,health care,1206545908 +184603,54372,abuse of power,1289448687 +184603,55071,Iraq War,1203534236 +184603,55442,animation,1203533735 +184603,57243,Israel,1209858524 +184603,60684,1980s,1242673123 +184603,60684,alternate history,1242673111 +184603,60684,author:Alan Moore,1242672998 +184603,60766,actual footage,1242673610 +184603,60766,artist,1242673693 +184603,60766,law breaking,1242673696 +184603,60766,suspenseful,1242673612 +184603,60766,twin towers,1242673618 +184603,61160,animation,1259511639 +184603,61160,shallow,1259511654 +184603,61240,1980s,1242673338 +184603,61240,adolescence,1242673406 +184603,61240,coming of age,1242673406 +184603,61240,love story,1242673367 +184603,61240,swedish,1242673349 +184603,61240,vampire,1242673346 +184603,62437,character based on real person:George W. Bush,1242673523 +184603,62437,family drama,1242673575 +184603,62437,family dynamics,1242673575 +184603,62437,political family,1242673554 +184603,63072,cannibalism,1260598040 +184603,63072,post-apocalyptic,1260598052 +184603,63072,tense,1260598043 +184603,63222,Jean-Claude Van Damme,1260853021 +184603,63222,robbery,1260853043 +184603,64839,Character study,1250917869 +184603,64839,sport:professional wrestling,1250917847 +184603,66130,autism,1242673443 +184603,66130,Kick-Butt Women,1242673449 +184603,66130,stunt woman,1242673474 +184603,66130,thailand,1242673453 +184603,67197,religious propaganda,1250917392 +184603,68157,Nazis,1263436948 +184603,68157,tense,1263436933 +184603,68157,violence,1263436929 +184603,68157,World War II,1263436961 +184603,68954,dreams,1250917272 +184603,69481,addiction,1265859412 +184603,69481,adrenaline junkie,1265859428 +184603,69481,cliche,1265859363 +184603,69481,Iraq,1265859332 +184603,69526,Excellent FXs,1250917643 +184603,69526,robots,1250917668 +184603,71211,corn industry,1270616277 +184603,71211,genius,1270616307 +184603,71211,mental illness,1270616290 +184603,71211,paranoia,1270616322 +184603,71211,price fixing,1270616266 +184603,72998,bad science,1263436856 +184603,72998,Fern Gully,1263436884 +184603,72998,plot,1263436859 +184603,79132,dream within a dream,1280209185 +184603,79132,weightlessness,1280209161 +184603,79592,metaphor,1306042397 +184603,79592,political,1306042404 +184603,80219,boobies guns and blood!,1288366753 +184603,80219,Michelle Rodriguez,1288366748 +184603,80219,over the top violence,1288366848 +184603,80219,Steven Seagal,1288366763 +184603,81845,based on a true story,1294989304 +184603,81845,Colin Firth,1294989294 +184603,82459,mumbly,1356856712 +184603,84154,AI,1310961023 +184603,84154,biotech,1310961020 +184603,84154,death,1310961063 +184603,84154,Ray Kurzweil,1310961043 +184603,84154,singularity,1310961011 +184603,86347,stand-up comedy,1312177091 +184603,88744,stereotyped characters,1314412448 +184603,89753,espionage,1398033744 +184603,93838,brutal,1398033126 +184603,93838,martial arts,1398033133 +184603,94466,dark,1398033337 +184603,94466,dystopia,1398033335 +184603,94466,satire,1398033342 +184603,96606,contemplative,1356856801 +184603,96606,music,1356856801 +184603,96606,similar to Baraka,1356856861 +184603,96606,time-lapse,1356856830 +184603,96655,rob from the insurance companies,1388473165 +184603,97752,cannibalism,1356855179 +184603,97752,connection,1356855122 +184603,97752,help others,1356855106 +184603,99387,consciousness,1356855634 +184603,99387,DEATH OF A SPOUSE,1356855652 +184603,99387,independent film,1356855594 +184603,99387,meaning of love,1356855634 +184603,99387,race issues,1356855594 +184603,106920,artificial intelligence,1391233558 +184603,106920,joaquin phoenix,1391233549 +184603,106920,loneliness,1391233545 +184603,106920,meaning of life,1391233591 +184603,106920,Scarlett Johansson,1391233552 +184603,109848,anti-violence,1413175215 +184603,109848,predator,1413175215 +184603,110501,brutal,1398033112 +184603,110501,car chase,1398033026 +184603,110501,Indonesia,1398033047 +184603,110501,mafia,1398033037 +184603,110501,martial arts,1398033026 +184603,110501,silat,1398033026 +184603,112852,Marvel,1413136001 +184603,112852,Teamwork,1413136024 +184620,110,bullshit history,1166289565 +184620,7318,overrated,1166290206 +184654,34405,comedy,1428467034 +184654,34405,low budget,1428467034 +184654,34405,sci fi,1428467034 +184677,260,classic sci-fi,1436489988 +184677,260,Star Wars,1436489994 +184693,260,Epic,1436041257 +184693,260,ThisIsAMust,1436041270 +184701,509,girlie movie,1198710095 +184703,29,visually stunning,1367660418 +184703,215,dialogue driven,1367660667 +184703,260,aliens,1260904574 +184703,260,Harrison Ford,1260904524 +184703,260,robots,1260904528 +184703,260,sci-fi,1260904537 +184703,260,space,1260904521 +184703,260,sword fight,1260904513 +184703,260,war,1260904612 +184703,296,action,1260904740 +184703,296,Black comedy,1260904735 +184703,296,Bruce Willis,1260904733 +184703,296,drugs,1260904716 +184703,296,multiple storylines,1260904723 +184703,296,nonlinear,1260904744 +184703,296,organized crime,1260904753 +184703,296,quirky,1260904755 +184703,296,Samuel L. Jackson,1260904706 +184703,296,stylized,1260904758 +184703,296,violence,1260904712 +184703,327,Post apocalyptic,1184412409 +184703,515,Anthony Hopkins,1283051633 +184703,515,Butler,1283051664 +184703,515,Emma Thompson,1283051640 +184703,515,romance,1283051657 +184703,780,alien,1367660608 +184703,1089,dialogue driven,1367660667 +184703,1199,visually stunning,1367660417 +184703,1203,dialogue driven,1367660667 +184703,1209,atmospheric,1175540079 +184703,1209,Clint Eastwood,1175540072 +184703,1209,italo western,1175540067 +184703,1222,Vietnam War,1175540247 +184703,1227,Underrated,1139702774 +184703,1385,action,1367660855 +184703,1485,I would rather suck exhaust than watch this POS again.,1139590365 +184703,1527,visually stunning,1367660418 +184703,1552,action,1367660854 +184703,1608,action,1367660854 +184703,1617,corruption,1367660800 +184703,1831,Lacey Chabert,1259580856 +184703,1831,space program,1367660916 +184703,1916,Christina Ricci,1261158482 +184703,1921,great soundtrack,1138317442 +184703,2023,underrated,1138315473 +184703,2167,action,1367660855 +184703,2701,comedy,1262641462 +184703,2701,mad scientist,1262641487 +184703,2701,Nudity (Rear),1262641416 +184703,2701,Salma Hayek,1262641427 +184703,2701,Will Smith,1262641430 +184703,2857,psychedelic,1264858067 +184703,2857,surreal,1264858062 +184703,2864,polygamy,1294631829 +184703,2985,violence,1367660945 +184703,3181,Anthony Hopkins,1294710489 +184703,3246,biographical,1367660641 +184703,3266,violence,1367660946 +184703,3298,underrated,1139702640 +184703,3994,M. Night Shyamalan,1315628086 +184703,3994,Samuel L. Jackson,1315628075 +184703,3997,absolute crap,1138319350 +184703,3997,must see,1138319350 +184703,4713,psychedelic,1328439993 +184703,4848,disturbing,1175540164 +184703,4873,visually appealing,1367660704 +184703,5410,brother sun sister moon in space,1282444836 +184703,5502,alien,1367660609 +184703,5673,not funny,1297597060 +184703,6003,biographical,1259686594 +184703,6003,Drew Barrymore,1259686563 +184703,6003,Julia Roberts,1259686573 +184703,6483,would kill not to watch,1266536328 +184703,6707,94 long minutes,1199812186 +184703,6818,disturbing,1447613808 +184703,6935,media politics,1300109503 +184703,7022,violence,1367660946 +184703,7063,small monkeys,1261148952 +184703,7124,repetitive,1384019469 +184703,7235,splatter,1138529542 +184703,8142,that ending...,1386849651 +184703,8370,sword fighting,1367660770 +184703,8937,good soundtrack that doesn't fit in the movie,1142975700 +184703,8958,biographical,1367660641 +184703,26444,douglas adams,1295993087 +184703,26444,miniseries,1295993068 +184703,27365,regressive industrial town,1299421245 +184703,27420,isolation,1347969913 +184703,27420,quirky,1347969635 +184703,27420,sperm injection,1347969863 +184703,27420,Tilda Swinton,1347969679 +184703,30793,not children,1138312247 +184703,30810,david bowie,1317487900 +184703,30810,great soundtrack,1317487888 +184703,30810,stylized,1317487886 +184703,30894,crap horror,1138529506 +184703,31878,overrated,1286039573 +184703,32587,artistic,1138312210 +184703,34143,remake,1138312363 +184703,36517,corruption,1185836651 +184703,37729,visually appealing,1367660704 +184703,39052,free download available with subs,1139585803 +184703,40494,alcoholism,1297405632 +184703,40583,political corruption,1367660973 +184703,40966,John Malkovich,1283621563 +184703,42163,race jokes,1300109700 +184703,43897,airships,1264663202 +184703,44974,Ellen Page,1263856814 +184703,45722,Johnny Depp,1154088686 +184703,45730,what the hell was that?,1283120849 +184703,46478,Ellen Page,1263856737 +184703,47465,drugs,1260904660 +184703,47465,Jeff Bridges,1282402395 +184703,47465,Terry Gilliam,1260904671 +184703,48774,FUTURE DYSTOPIAS,1177103089 +184703,48774,TOTALITARIAN STATES,1177103093 +184703,55286,Benicio Del Toro,1243473682 +184703,55286,disjointed timeline,1243473660 +184703,55286,non-linear,1243473667 +184703,55830,Michel Gondry,1307805053 +184703,55830,quirky,1307805063 +184703,56367,Ellen Page,1276218055 +184703,57528,violence,1367660945 +184703,58806,Ellen Page,1264093859 +184703,59418,Catherine Keener,1264114958 +184703,59418,Ellen Page,1264114950 +184703,61073,score,1282502721 +184703,63181,stylized,1315527202 +184703,67255,du -ac --time /var/lib/dpkg,1260295154 +184703,67999,enlightening,1264621247 +184703,68157,Adolf Hitler,1266793629 +184703,68157,boring,1266793677 +184703,68157,overrated,1266793683 +184703,68237,science fiction,1367660499 +184703,69134,Charlotte Gainsbourg,1278969929 +184703,69134,Lars von Trier,1278970009 +184703,69134,religion,1278969918 +184703,69134,tension,1278969951 +184703,69134,Willem Dafoe,1278969940 +184703,72913,disko ja tuumasõda,1425491185 +184703,72998,3d,1262490834 +184703,72998,aliens,1262490846 +184703,72998,bad science,1262490822 +184703,72998,cgi,1262490829 +184703,72998,graphic design,1262490861 +184703,72998,white guilt,1262490898 +184703,74458,Predictable,1304157354 +184703,78039,Graphic sex,1309219927 +184703,78039,slow moving plot,1309219945 +184703,78266,interspecies sex,1294817168 +184703,78893,acting,1315628323 +184703,78893,audience intelligence underestimated,1315628343 +184703,78893,characters,1315628313 +184703,78893,editing,1315628317 +184703,79132,action,1297504650 +184703,79132,great soundtrack,1297504660 +184703,81456,gay,1337881904 +184703,81456,visually stunning,1337881958 +184703,81591,Natalie Portman,1332663717 +184703,85881,dementia,1315925298 +184703,86657,crime,1328443745 +184703,86657,dancehall,1328443628 +184703,86657,London,1328443561 +184703,86657,soundtrack,1328443637 +184703,88272,dysfunctional family,1437237907 +184703,88272,misogyny,1437237921 +184703,89039,cinematography,1344768339 +184703,89219,androids,1315898100 +184703,89219,artificial human,1315897992 +184703,89219,colourful sets,1315897920 +184703,89219,dialogue driven,1315897842 +184703,89219,robots,1315897976 +184703,89222,effects,1315898366 +184703,89222,hilarious,1315898312 +184703,89222,street fighter,1315898587 +184703,91273,visually appealing,1328442781 +184703,91490,ugly cg,1328442593 +184703,91983,risto,1325463645 +184703,92186,dialogue driven,1328441997 +184703,92186,improvisation,1328441959 +184703,99397,atmospheric,1386850064 +184703,99397,cock,1386850080 +184703,99397,set & costume design,1386850156 +184703,103282,so bad it's funny,1386849751 +184703,106549,symbolism well done,1386850000 +184703,106920,original,1434280837 +184703,106920,polyamory,1434280907 +184703,106920,singularity,1434280878 +184703,106920,transhumanism,1434280806 +184703,109487,bad science,1433610128 +184703,109487,good science bad science,1433610138 +184703,109487,plot holes,1433610184 +184703,109487,wasted potential,1433610168 +184703,110255,epic,1422659426 +184703,110255,powerful acting,1422659426 +184703,110255,reincarnation,1422659426 +184705,500,Robin Williams,1145571578 +184728,260,cult classic,1432062630 +184728,260,sci-fi,1432062625 +184728,356,cool coincidences,1432062934 +184728,356,funny,1432062934 +184728,356,sweet,1432062934 +184782,2700,south park,1216012856 +184826,70286,aliens,1250465589 +184826,70286,intelligent sci-fi,1250465591 +184826,86068,1980's,1421608220 +184826,86068,christmas,1421608220 +184826,86068,friendship,1421608220 +184826,120474,animated,1423195595 +184826,120474,dinosaurs,1423195595 +184826,120474,pixar,1423195595 +184828,2706,Tara Reid,1383134151 +184862,1,animation,1266534289 +184862,1,cgi,1157113249 +184862,1,Disney,1157113242 +184862,1,family,1157113254 +184862,1,toys,1266534293 +184862,2,animals,1147481006 +184862,4,characters,1360563411 +184862,4,chick flick,1362769982 +184862,6,adultery,1280558675 +184862,6,Al Pacino,1280557881 +184862,6,atmospheric,1280557889 +184862,6,bank robbery,1280558714 +184862,6,Bechdel Test:Fail,1280558999 +184862,6,bleak,1280557898 +184862,6,career criminal,1280558595 +184862,6,dialogue,1280557908 +184862,6,gunfight,1280557909 +184862,6,guns,1280557911 +184862,6,loner,1280558807 +184862,6,long,1280557914 +184862,6,Los Angeles,1280559089 +184862,6,male-female relationship,1280558631 +184862,6,Michael Mann,1280557917 +184862,6,ONE LAST HEIST,1280558865 +184862,6,overrated,1364710284 +184862,6,philosophy,1280557920 +184862,6,police,1280558506 +184862,6,R,1280559207 +184862,6,R:language,1280559207 +184862,6,R:violence,1280559206 +184862,6,realistic action,1452761893 +184862,6,Recommendz Top Pick,1165087105 +184862,6,Robert De Niro,1280557928 +184862,6,Seen 2010,1280558988 +184862,6,slick,1280557935 +184862,6,somber,1280557943 +184862,6,teenage girl,1280558757 +184862,6,tense,1280557946 +184862,6,thieves,1280558470 +184862,6,tough guy,1280558828 +184862,6,Val Kilmer,1280557954 +184862,6,visceral,1280557960 +184862,11,screenwriter:Aaron Sorkin,1302545741 +184862,17,adapted from:book,1270592022 +184862,17,Alan Rickman,1270592032 +184862,17,Ang Lee,1248915152 +184862,17,author:Jane Austen,1248915189 +184862,17,British,1141943763 +184862,17,Emma Thompson,1248915316 +184862,17,Hugh Grant,1278261335 +184862,17,Kate Winslet,1280812696 +184862,21,author:Elmore Leonard,1363460952 +184862,21,Hollywood,1153449564 +184862,28,19th century,1270592126 +184862,28,adapted from:book,1248915501 +184862,28,Amanda Root,1278261380 +184862,28,author:Jane Austen,1248916401 +184862,28,Ciarán Hinds,1252613446 +184862,28,England,1307849504 +184862,28,Fiona Shaw,1280812891 +184862,28,Roger Michell,1307848605 +184862,28,screenwriter:Nick Dear,1302306303 +184862,29,atmospheric,1302334092 +184862,32,atmospheric,1388722887 +184862,32,end of the world,1146782568 +184862,32,remake of a french film,1146782579 +184862,32,time travel,1146782566 +184862,34,pigs,1146839051 +184862,34,talking animals,1143779034 +184862,36,Couldn't finish,1138346920 +184862,36,nun,1138347282 +184862,36,pompadour,1138347282 +184862,36,prison,1138346859 +184862,36,true story,1138346863 +184862,39,adaptation,1137175632 +184862,39,Alicia Silverstone,1302389771 +184862,39,classic,1137175632 +184862,39,Jane Austen,1302389772 +184862,39,teen,1137175597 +184862,45,100 Essential Female Performances,1280603483 +184862,45,dark comedy,1310088468 +184862,47,atmospheric,1302303956 +184862,47,biblical,1248925637 +184862,47,brad pitt,1443073734 +184862,47,dark,1320070031 +184862,47,disturbing,1267466939 +184862,47,evil,1205789438 +184862,47,gloomy,1306613168 +184862,47,grim,1352139859 +184862,47,investigation,1164632262 +184862,47,Kevin Spacey,1270445310 +184862,47,menacing,1360399502 +184862,47,morgan freeman,1443073718 +184862,47,philosophical,1307907815 +184862,47,police,1280586965 +184862,47,psychological,1388722178 +184862,47,psychology,1432597893 +184862,47,serial killer,1280586939 +184862,47,twist ending,1280586940 +184862,50,caper,1248925482 +184862,50,classic,1310048016 +184862,50,complicated,1365363825 +184862,50,conspiracy,1254516676 +184862,50,Dark,1320116558 +184862,50,Edgar Award (Best Motion Picture),1281245597 +184862,50,ensemble cast,1266534868 +184862,50,flashbacks,1193624923 +184862,50,funny,1267466661 +184862,50,heist,1262121818 +184862,50,Kevin Spacey,1259946284 +184862,50,mindfuck,1248925487 +184862,50,New York City,1270445010 +184862,50,organized crime,1232824429 +184862,50,Oscar (Best Supporting Actor),1267466629 +184862,50,Oscar (Best Writing - Screenplay Written Directly for the Screen),1269696512 +184862,50,Oscar Winner,1280586430 +184862,50,overrated,1352141088 +184862,50,R,1280586723 +184862,50,R:strong language,1280586722 +184862,50,R:violence,1280586723 +184862,50,storytelling,1443073615 +184862,50,suspense,1248925498 +184862,50,thriller,1432597862 +184862,50,tricky,1248925502 +184862,50,twist ending,1248925504 +184862,50,whodunnit,1170389267 +184862,55,musicians,1155369242 +184862,73,adapted from:book,1366727433 +184862,73,author:Victor Hugo,1366727433 +184862,81,Recommendz Top Pick,1140841282 +184862,85,Nudity (Full Frontal - Notable),1162049576 +184862,94,Matt Dillon,1258389850 +184862,95,action,1265212860 +184862,95,Air Force,1185509496 +184862,95,Christian Slater,1272055151 +184862,95,John Travolta,1273794991 +184862,95,John Woo,1276619434 +184862,95,Mark Gordon Productions,1185509496 +184862,95,military,1366734015 +184862,95,nuclear bomb,1265212861 +184862,95,park ranger,1185509496 +184862,95,R,1185509496 +184862,95,scope,1185509496 +184862,95,Utah,1185509496 +184862,97,angry,1360394591 +184862,97,biting,1209642871 +184862,97,black and white,1209642810 +184862,97,bleak,1209642738 +184862,97,Cannes: Best Director,1209643242 +184862,97,co-production,1209643243 +184862,97,confrontational,1209642820 +184862,97,cynical,1209642877 +184862,97,disturbing,1209642874 +184862,97,drugs,1209643242 +184862,97,ghetto,1209643243 +184862,97,paris,1209642843 +184862,97,R,1209643242 +184862,97,racism,1209642834 +184862,97,riot,1209642802 +184862,97,social commentary,1209642864 +184862,104,recommendz top pick,1169281989 +184862,111,anomie,1248925965 +184862,111,assassination,1211910487 +184862,111,atmospheric,1248925968 +184862,111,Classic,1168151657 +184862,111,cult film,1210348392 +184862,111,dark,1384895750 +184862,111,disturbing,1275003118 +184862,111,Film Theory & Criticism,1352139564 +184862,111,forceful,1232824929 +184862,111,Golden Palm,1302304602 +184862,111,Martin Scorsese,1451886201 +184862,111,New York City,1202678273 +184862,111,Oscar Nominee: Best Picture,1248925971 +184862,111,robert de niro,1443073441 +184862,111,visceral,1203050777 +184862,116,anti-Semitism,1150976836 +184862,116,archive footage,1210346503 +184862,116,BBC produced,1149858137 +184862,116,Biography,1205789612 +184862,116,germany,1256508866 +184862,116,Glenn Close,1262025674 +184862,116,Holocaust,1145636950 +184862,116,jews,1269697366 +184862,116,nazis,1262025693 +184862,116,Oscar (Best Documentary Feature),1205789583 +184862,116,PG,1170389990 +184862,132,flop,1208971977 +184862,132,Nudity (Rear),1202058182 +184862,132,San Francisco,1163767342 +184862,132,screenwriter:Joe Eszterhas,1196003878 +184862,149,amnesia,1256487670 +184862,149,cerebral,1263411660 +184862,150,suspense,1171663874 +184862,153,Batman,1152685704 +184862,153,comic book,1168638706 +184862,153,sequel,1161322454 +184862,153,super-hero,1140838073 +184862,161,submarine,1158278493 +184862,162,artist mind,1254013291 +184862,170,video games,1155318645 +184862,176,behind-the-scenes,1140203077 +184862,176,Catherine Keener,1310089473 +184862,176,dwarf,1140203077 +184862,176,film-making,1140203077 +184862,176,indie,1140203077 +184862,176,meta-indie,1140203077 +184862,180,crude humor,1267470976 +184862,180,view askew,1154154636 +184862,183,Moscow,1302396307 +184862,183,mute,1302396310 +184862,183,Nudity (Topless),1302396312 +184862,183,Russia,1302396309 +184862,185,computers,1278266910 +184862,190,environment,1161480985 +184862,190,environmental,1360399658 +184862,194,ensemble cast,1145635447 +184862,194,Father son relationship,1173403736 +184862,194,Forest Whitaker,1302546131 +184862,194,multiple storylines,1145635410 +184862,194,New York City,1145635447 +184862,194,Paul Auster,1307850480 +184862,194,small business,1156432894 +184862,201,1950s,1160695493 +184862,201,Can't remember,1160695493 +184862,201,Korean War,1160695493 +184862,201,Little League,1160695493 +184862,201,widows/widowers,1160695605 +184862,215,Castle Rock,1163915968 +184862,215,dialogue,1145679219 +184862,215,generation X,1148575856 +184862,215,minimalist,1163089912 +184862,215,reflective,1208973983 +184862,215,trains,1145678896 +184862,215,Vienna,1160885900 +184862,223,bad acting,1267470933 +184862,223,black and white,1154154553 +184862,223,Directorial Debut,1154154446 +184862,223,generation X,1154154427 +184862,223,good dialogue,1267470938 +184862,223,low budget,1267470953 +184862,223,new jersey,1154154552 +184862,223,quirky,1208973930 +184862,223,seen 2006,1154154410 +184862,223,seen more than once,1154154434 +184862,223,view askew,1154154443 +184862,223,workplace,1267470943 +184862,232,aging,1248982032 +184862,232,Ang Lee,1254013436 +184862,232,BREAKUPS AND DIVORCES,1311817940 +184862,232,remade,1192647838 +184862,233,Canada,1163287536 +184862,233,gay,1163287536 +184862,233,obsession,1163287535 +184862,233,smuggling,1163287536 +184862,233,strippers,1163287536 +184862,233,Toronto,1163287536 +184862,233,widower,1163287536 +184862,235,affectionate,1190600922 +184862,237,basketball,1360563691 +184862,247,New Zealand,1150986730 +184862,253,Antonio Banderas,1362322076 +184862,260,atmospheric,1259946030 +184862,260,classic,1259946031 +184862,260,darth vader,1259946033 +184862,260,director-screenwriter,1179014547 +184862,260,luke skywalker,1259946038 +184862,260,Myth,1166855828 +184862,260,noise in space,1259946042 +184862,260,robots,1262121539 +184862,260,space,1152685247 +184862,260,space opera,1259946043 +184862,260,USA film registry,1164479338 +184862,265,Alfonso Arau,1360424277 +184862,292,disease,1150395903 +184862,296,assassin,1362321480 +184862,296,dark comedy,1280592000 +184862,296,Edgar Award (Best Motion Picture),1281245469 +184862,296,hit men,1151606094 +184862,296,nonlinear,1432596495 +184862,302,16th century,1311818701 +184862,307,atmospheric,1248917902 +184862,307,BFI modern classic,1280592904 +184862,307,classical music,1370216438 +184862,308,beautiful,1248917497 +184862,309,business,1149857883 +184862,309,fireworks,1256508785 +184862,316,aliens,1272055030 +184862,316,archaeology,1366735988 +184862,316,PG-13:sci-fi action violence,1366654943 +184862,318,1940s,1267431725 +184862,318,1950s,1267431725 +184862,318,1960s,1267431725 +184862,318,adapted from:short story,1185658989 +184862,318,atmospheric,1307907490 +184862,318,author:Stephen King,1204057331 +184862,318,classic,1259946273 +184862,318,drama,1451886496 +184862,318,friendship,1219951748 +184862,318,genius,1362769146 +184862,318,great actor,1352140078 +184862,318,Great Adaptations,1248925431 +184862,318,heartwarming,1270444768 +184862,318,inspirational,1452767208 +184862,318,justice,1266534800 +184862,318,Morgan Freeman,1254516638 +184862,318,narrated,1170389311 +184862,318,Oscar Nominee: Supporting Actor,1269696712 +184862,318,prison,1152685297 +184862,318,prison escape,1248925434 +184862,318,revenge,1266534817 +184862,318,Rita Hayworth,1157686993 +184862,318,show business,1193624955 +184862,318,thought-provoking,1416524278 +184862,318,twist ending,1262121763 +184862,318,wrongful imprisonment,1154127994 +184862,326,China,1416520403 +184862,326,class issues,1416520414 +184862,326,communism,1416520422 +184862,326,counter-revolutionary,1416522545 +184862,326,family home,1416522588 +184862,326,gambling,1416522378 +184862,326,Gong Li,1452749121 +184862,326,gritty,1416520419 +184862,326,iron,1416522521 +184862,326,movielens top pick,1372817044 +184862,326,poignant,1416520396 +184862,326,politics,1416520399 +184862,326,practical joke,1416523630 +184862,326,purpose in life,1416520426 +184862,326,rice,1416522480 +184862,326,Seen 2014,1416522305 +184862,326,tense,1416520429 +184862,326,Zhang Yimou,1416520432 +184862,328,Nudity (Topless),1177192190 +184862,329,Based on a TV show,1190603610 +184862,329,Enterprise,1148574248 +184862,329,Gene Roddenberry,1148574245 +184862,329,space,1444060959 +184862,329,Star Trek,1148574251 +184862,334,actors,1280812043 +184862,334,adapted from:play,1334546465 +184862,334,austere,1280812035 +184862,334,autumnal,1304928176 +184862,334,Criterion,1362768905 +184862,334,New York City,1158879776 +184862,334,play within a movie,1307847946 +184862,334,playwright:Anton Chekhov,1334546465 +184862,334,Theatre,1138381947 +184862,337,adapted from:book,1309973656 +184862,337,author:Peter Hedges,1309973752 +184862,337,delivery boy,1366681728 +184862,337,screenwriter:Peter Hedges,1309973752 +184862,338,Peter Gabriel music,1179720976 +184862,339,Bechdel Test:Fail,1360563803 +184862,339,Bill Pullman,1362770222 +184862,339,coma,1204637929 +184862,344,Dumb,1253293784 +184862,344,goofy,1162441219 +184862,348,1930s,1192559823 +184862,348,Broadway,1192559823 +184862,348,Miramax,1192559823 +184862,348,mobster,1192559822 +184862,348,New York City,1192559823 +184862,348,Oscar (Best Supporting Actress),1192559823 +184862,348,Oscar Nominee: Art Direction,1192559823 +184862,348,Oscar Nominee: Costume Design,1192559823 +184862,348,Oscar Nominee: Director,1192559822 +184862,348,Oscar Nominee: Original Screenplay,1192559823 +184862,348,Oscar Nominee: Supporting Actor,1192559822 +184862,348,Oscar Nominee: Supporting Actress,1192559822 +184862,348,play,1192559823 +184862,348,playwright,1192559823 +184862,348,R,1192559822 +184862,348,theater,1192559823 +184862,350,John Grisham,1150395944 +184862,350,Southern theme,1138384943 +184862,353,cult film,1151073235 +184862,353,gothic,1169274074 +184862,356,1950s,1267419304 +184862,356,1960s,1267419304 +184862,356,1970s,1267419304 +184862,356,1980s,1267419304 +184862,356,adapted from:book,1267419039 +184862,356,Alabama,1267427357 +184862,356,author:Winston Groom,1267419039 +184862,356,bittersweet,1267419045 +184862,356,classic,1267419048 +184862,356,heartwarming,1267419067 +184862,356,history,1267419078 +184862,356,Los Angeles,1267427358 +184862,356,Memphis,1267427358 +184862,356,New York City,1267427357 +184862,356,Oscar (Best Actor),1267419082 +184862,356,Oscar (Best Directing),1267419084 +184862,356,Oscar (Best Editing),1267427460 +184862,356,Oscar (Best Effects - Visual Effects),1267427460 +184862,356,Oscar (Best Picture),1267419086 +184862,356,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1267427650 +184862,356,Oscar Nominee: Art Direction,1267427649 +184862,356,Oscar Nominee: Cinematography,1267431059 +184862,356,Oscar Nominee: Makeup,1267431059 +184862,356,Oscar Nominee: Music - Original Score,1267431101 +184862,356,Oscar Nominee: Sound,1267431101 +184862,356,Oscar Nominee: Sound Effects Editing,1267431059 +184862,356,Oscar Nominee: Supporting Actor,1267427650 +184862,356,overrated,1267419089 +184862,356,PG-13,1267431401 +184862,356,PG-13:drug content,1267431401 +184862,356,PG-13:some sexuality,1267431401 +184862,356,PG-13:war violence,1267431401 +184862,356,psychology,1267419091 +184862,356,Savannah GA,1267427357 +184862,356,Sexuality,1267419096 +184862,356,UNREQUITED LOVE,1267419304 +184862,356,vietnam war,1267419098 +184862,356,Washington DC,1267427357 +184862,356,whimsical,1270444698 +184862,363,Biography,1197339484 +184862,363,documentary,1259946844 +184862,363,FILMMAKING,1193625599 +184862,363,German,1140204212 +184862,363,Holocaust,1172894343 +184862,363,movie business,1261997033 +184862,363,Nazis,1252614993 +184862,364,Disney,1165544969 +184862,367,Cameron Diaz,1253293827 +184862,367,comic book,1162441235 +184862,373,assassin,1384816534 +184862,373,hitman,1156534668 +184862,373,Wyoming,1156534777 +184862,377,Action,1352822902 +184862,377,bomb,1153496835 +184862,377,speed,1164558583 +184862,380,gadget car,1212083309 +184862,381,like-i-like top pick,1171668058 +184862,405,crappy sequel,1154069297 +184862,405,sequel,1154069304 +184862,410,quirky,1208973403 +184862,412,Rhode Island,1439099851 +184862,427,80s,1366681491 +184862,431,Jinni Top Pick,1362339893 +184862,434,mountain climbing,1145166588 +184862,440,Be satisfied with your life little man,1302545833 +184862,442,action,1273791391 +184862,442,Benjamin Bratt,1273791393 +184862,442,Business is the antagonist,1273791400 +184862,442,Denis Leary,1273791405 +184862,442,dystopia,1273791409 +184862,442,Los Angeles,1273791414 +184862,442,Sandra Bullock,1273791420 +184862,442,Sylvester Stallone,1273791427 +184862,442,taco bell,1273791431 +184862,442,time travel,1273791435 +184862,442,Wesley Snipes,1273791437 +184862,446,adapted from:book,1364708409 +184862,446,apology,1364708846 +184862,446,author:Lillian Lee,1364708408 +184862,446,backstage,1364707240 +184862,446,Bechdel Test:Fail,1364707322 +184862,446,Child abuse,1364707247 +184862,446,China,1364707249 +184862,446,China Culture,1364707252 +184862,446,communism,1364707254 +184862,446,compassionate,1364707257 +184862,446,courtesan,1364707268 +184862,446,Culture,1364707272 +184862,446,earnest,1364707277 +184862,446,finger cut off,1364708610 +184862,446,flashbacks,1364708678 +184862,446,friendship,1364708559 +184862,446,gay,1364707279 +184862,446,Golden Palm,1364707281 +184862,446,Gong Li,1364707283 +184862,446,homosexuality,1364707285 +184862,446,lavish,1364707287 +184862,446,love,1364708637 +184862,446,male nudity,1364708722 +184862,446,Movielens top pick,1360104864 +184862,446,opera,1364707293 +184862,446,Oscar Nominee: Cinematography,1364708505 +184862,446,Oscar Nominee: Foreign Language (Hong Kong),1364708505 +184862,446,passionate,1364707294 +184862,446,Peking Opera,1364708584 +184862,446,R,1364708883 +184862,446,R:language,1364708884 +184862,446,R:strong depiction of thematic material,1364708883 +184862,446,rape,1364708654 +184862,446,Seen 2013,1364707311 +184862,446,singing,1364708758 +184862,446,sweeping,1364707301 +184862,446,tea,1364708790 +184862,446,vocalists,1364707302 +184862,457,adapted from:TV series,1346036783 +184862,457,business,1352822828 +184862,471,1950s,1371320368 +184862,471,Coen Brothers,1280561070 +184862,472,Albert Brooks,1252615553 +184862,472,child actor,1141411682 +184862,472,director-screenwriter,1372793520 +184862,472,father daughter relationship,1276618485 +184862,472,Hollywood,1252615560 +184862,472,James L. Brooks,1252615562 +184862,472,Nick Nolte,1252615564 +184862,472,satire,1252615566 +184862,480,children,1352822937 +184862,496,loneliness,1177828000 +184862,496,New York City,1165545889 +184862,496,Sundance award winner,1362768702 +184862,496,Sundance Grand Jury Prize,1365365497 +184862,496,Sundance Grand Jury Prize 1994,1365365488 +184862,496,Sundance Grand Jury Prize: Dramatic,1366692850 +184862,496,Tom Noonan,1258389556 +184862,497,Denzel Washington,1280812194 +184862,502,Air Force Academy dreams,1158274748 +184862,502,babysitting,1248928602 +184862,502,Boston,1157047829 +184862,502,bowling,1157047829 +184862,502,hawk,1248928615 +184862,502,high school,1158274748 +184862,502,Hilary Swank,1266534058 +184862,502,martial arts,1157047829 +184862,502,Michael Ironside,1265212939 +184862,502,monks,1248928617 +184862,502,Pat Morita,1272055291 +184862,502,politician cameo,1248928619 +184862,502,prom,1157047829 +184862,502,Recommendz Top Pick,1149272856 +184862,502,seen 2006,1158274748 +184862,502,veterans,1157047829 +184862,506,adapted from:book,1384895140 +184862,509,19th century,1155831377 +184862,509,adultery,1155831636 +184862,509,atmospheric,1280593013 +184862,509,beautiful,1307848953 +184862,509,gripping,1155831371 +184862,509,intense,1155831374 +184862,509,New Zealand,1155831410 +184862,509,Notable Nudity,1155831367 +184862,509,Oscar (Best Actress),1155831361 +184862,509,Oscar (Best Supporting Actress),1155831380 +184862,509,piano,1155831571 +184862,515,70mm blowup,1334546194 +184862,515,adapted from:book,1352843360 +184862,521,Annabella Sciorra,1278266492 +184862,521,anti-hero,1278266560 +184862,521,assassin,1278266665 +184862,521,corruption,1278266621 +184862,521,crooked cop,1278266597 +184862,521,cynicism,1278266588 +184862,521,Gary Oldman,1278266489 +184862,521,Juliette Lewis,1278266494 +184862,521,Lena Olin,1278266496 +184862,521,murder,1278266625 +184862,521,New York City,1278266781 +184862,521,Nudity (Topless),1278266499 +184862,521,police,1278266539 +184862,521,R,1278266828 +184862,527,AFI 100,1202663485 +184862,527,atmospheric,1352140674 +184862,527,based on book,1154128008 +184862,527,bathtub,1366693095 +184862,527,biography,1170389454 +184862,527,bleak,1366693176 +184862,527,classic,1375806149 +184862,527,disturbing,1199752516 +184862,527,factory,1269697020 +184862,527,history,1170389417 +184862,527,Holocaust,1146782731 +184862,527,Nazis,1157687038 +184862,527,nightclub,1207247488 +184862,527,Oscar (Best Cinematography),1213813319 +184862,527,Oscar (Best Picture),1213813316 +184862,527,Oscar Nominee: Supporting Actor,1158278630 +184862,527,realism,1269696749 +184862,527,savior,1169129923 +184862,527,true story,1146782742 +184862,527,World War II,1141336919 +184862,531,England,1302333879 +184862,532,rock concert footage,1203483466 +184862,535,like-i-like top pick,1160794599 +184862,538,adapted from:play,1307850255 +184862,538,Donald Sutherland,1280812016 +184862,538,playwright:John Guare,1307850255 +184862,538,screenwriter:John Guare,1307850255 +184862,539,Bill Pullman,1362769920 +184862,539,Empire State Building,1204637917 +184862,541,android(s)/cyborg(s),1364709459 +184862,541,assassin,1388642488 +184862,551,based on a poem,1191788531 +184862,551,Christmas,1256440733 +184862,551,gothic,1256440738 +184862,551,halloween,1145165337 +184862,555,action,1366223979 +184862,555,Christian Slater,1280592096 +184862,556,Bill Clinton,1259946619 +184862,556,campaign manager,1270445698 +184862,556,Chris Hegedus,1346028809 +184862,556,Criterion,1416597259 +184862,556,documentary,1262124220 +184862,556,election,1262124214 +184862,556,Nick Doob,1170390732 +184862,556,Oscar Nominee: Documentary Feature,1272054842 +184862,556,PG,1266535415 +184862,556,political campaign,1268250009 +184862,556,politics,1262124221 +184862,556,television,1275004450 +184862,565,atmospheric,1220012786 +184862,565,automata,1137175158 +184862,565,Claudio Brook,1362322027 +184862,565,clockwork devices,1357928601 +184862,565,Criterion,1362322972 +184862,565,Guillermo del Toro,1276531487 +184862,565,slow,1137175158 +184862,567,Pedro Almodóvar,1269665959 +184862,567,television,1181020093 +184862,567,writer,1215536582 +184862,581,interviews,1210345905 +184862,585,like-i-like top pick,1175921761 +184862,587,chick flick,1259961142 +184862,587,ghosts,1259961134 +184862,587,girlie movie,1141425151 +184862,587,Oscar (Best Supporting Actress),1150397245 +184862,587,subway,1259961130 +184862,589,android(s)/cyborg(s),1320148794 +184862,589,apocalypse,1352841516 +184862,589,time travel,1444060281 +184862,591,drugs,1254516520 +184862,593,Anthony Hopkins,1280587002 +184862,593,cannibalism,1346029167 +184862,593,classic,1352223688 +184862,593,disturbing,1352822625 +184862,593,Edgar Award (Best Motion Picture),1281245130 +184862,593,Horror,1137704459 +184862,593,Poster,1137704459 +184862,593,psychology,1443073758 +184862,593,serial killer,1169130771 +184862,594,animation,1257176349 +184862,594,classic,1269697720 +184862,594,Disney,1152967734 +184862,594,fairy tale,1416588778 +184862,594,good versus evil,1255201044 +184862,594,USA film registry,1165543596 +184862,595,Animation,1416588824 +184862,595,cellos,1165545192 +184862,595,classic,1137175751 +184862,595,Disney,1137175749 +184862,596,Children,1269697738 +184862,596,Disney,1152967760 +184862,596,fantasy,1257176399 +184862,596,Hamilton Luske,1416588756 +184862,596,marionettes,1157687556 +184862,596,Oscar (Best Music - Original Song),1255201074 +184862,596,whales,1165543755 +184862,597,chick flick,1141425138 +184862,597,Hollywood,1161907897 +184862,597,Julia Roberts,1259961079 +184862,597,prostitution,1259961070 +184862,597,pygmalion,1259961072 +184862,597,shopping,1259961074 +184862,608,affectionate,1362323139 +184862,608,black comedy,1280591930 +184862,608,classic,1248964744 +184862,608,Minnesota,1248964747 +184862,613,Anna Paquin,1280812962 +184862,648,Action,1368411649 +184862,655,Sentana Filmproduktion,1184272533 +184862,659,Edgar Award (Best Foreign Film),1281118351 +184862,661,adapted from:book,1372791280 +184862,661,author:Roald Dahl,1372791291 +184862,661,fruits and veggies,1139033773 +184862,661,screenwriter:Jonathan Roberts,1372791362 +184862,661,screenwriter:Karey Kirkpatrick,1372791362 +184862,661,screenwriter:Steve Bloom,1372791362 +184862,661,stop-motion,1139033773 +184862,665,World War II,1162502087 +184862,665,Yugoslavia,1164475531 +184862,668,adapted from:book,1213804167 +184862,668,author:Bibhutibhushan Bandyopadhyay,1213804205 +184862,668,Bengal,1254013803 +184862,668,BFI classic,1278261941 +184862,668,Brahmin,1207245988 +184862,668,criterion,1416524423 +184862,668,directorial debut,1254026262 +184862,668,family,1254013919 +184862,668,India,1254013963 +184862,668,monsoon,1213804077 +184862,668,poverty,1254013923 +184862,668,realism,1254445055 +184862,668,rice,1269665427 +184862,668,rural,1270592637 +184862,668,satyajit ray,1252616281 +184862,668,train,1254013963 +184862,668,trilogy,1254013938 +184862,668,trilogy:Apu,1254013948 +184862,685,AIDS,1161966764 +184862,685,assisted suicide,1180960500 +184862,685,friends,1416609537 +184862,685,friendship,1210347842 +184862,685,gay,1204638189 +184862,685,homosexuality,1174083908 +184862,685,party,1178375701 +184862,707,Jennifer Connelly,1267640961 +184862,745,Aardman,1266534380 +184862,745,animals as companions,1266534381 +184862,745,car chase,1266534382 +184862,745,claymation,1266534383 +184862,745,funny,1266534384 +184862,745,invention,1266534391 +184862,745,sheep,1266534393 +184862,745,short films,1266534394 +184862,745,small business,1156432557 +184862,745,stop motion,1266534395 +184862,750,classic,1144367249 +184862,750,nuclear war,1144367252 +184862,750,Quirky,1209646155 +184862,751,Guy Maddin,1306605843 +184862,751,mountain climbing,1145169421 +184862,751,surreal,1145169421 +184862,762,adapted from:book,1369435805 +184862,762,author:Carl Hiaasen,1369435792 +184862,762,Burt Reynolds,1248916788 +184862,762,voyeurism,1164945977 +184862,766,modern art,1416785828 +184862,778,adapted from:book,1416625156 +184862,778,addiction,1197312379 +184862,778,AIDS,1197316780 +184862,778,author:Irvine Welsh,1272054300 +184862,778,BFI modern classic,1197313845 +184862,778,black comedy,1272054231 +184862,778,British,1309970329 +184862,778,Channel 4,1197319755 +184862,778,child abuse,1197316780 +184862,778,classic,1384813218 +184862,778,crime,1197312777 +184862,778,dark comedy,1302304980 +184862,778,drug abuse,1197312715 +184862,778,drugs,1197313848 +184862,778,edinburgh,1197316780 +184862,778,Ewan McGregor,1416625160 +184862,778,glasgow,1197316780 +184862,778,heroin,1197312779 +184862,778,imdb top 250,1197312712 +184862,778,literature,1197312752 +184862,778,London,1197319755 +184862,778,notable soundtrack,1272054240 +184862,778,Nudity (Full Frontal - Notable),1197312756 +184862,778,Oscar Nominee: Adapted Screenplay,1272054242 +184862,778,R,1197312097 +184862,778,real estate,1197316780 +184862,778,robbery,1197316780 +184862,778,scotland,1197312768 +184862,778,sex,1197316780 +184862,778,soccer,1197316780 +184862,778,social commentary,1302546582 +184862,778,United Kingdom,1197312737 +184862,778,violence,1197312759 +184862,778,vomit,1197312397 +184862,780,70mm blowup,1191012962 +184862,780,action,1140201980 +184862,780,alien invasion,1153496853 +184862,780,aliens,1140201985 +184862,780,apocalypse,1272055091 +184862,780,bad movie,1272055045 +184862,780,disaster,1272055050 +184862,780,end of the world,1272055052 +184862,780,ominous,1201650911 +184862,780,scifi,1140201992 +184862,780,So stupid it's bad,1272055056 +184862,780,stupid,1273794920 +184862,780,tense,1276619305 +184862,780,the dog lives,1272055058 +184862,780,US President,1140201989 +184862,780,war,1140201976 +184862,780,will smith,1444061244 +184862,800,Chris Cooper,1352140210 +184862,800,mystery,1151071172 +184862,800,texas,1150467815 +184862,804,Irish Americans,1181020234 +184862,853,Australia,1171063421 +184862,853,jazz,1171063421 +184862,853,music,1171063421 +184862,853,obsession,1171063421 +184862,853,outback,1171063421 +184862,853,Paris,1171063475 +184862,858,adapted from:book,1248925761 +184862,858,AFI 100,1165547071 +184862,858,AFI 100 (Movie Quotes),1202678129 +184862,858,Al Pacino,1452761786 +184862,858,atmospheric,1280560306 +184862,858,author:Mario Puzo,1248925761 +184862,858,bathtub,1366693057 +184862,858,breakthroughs,1179014985 +184862,858,classic,1452761778 +184862,858,Exceptional Acting,1352140375 +184862,858,FALL FROM POWER,1248925769 +184862,858,family,1154068248 +184862,858,father son relationship,1160885443 +184862,858,great cast excellent,1388641130 +184862,858,guns,1207246211 +184862,858,immigrants,1248925778 +184862,858,Mafia,1452761763 +184862,858,Memorable Characters,1275003247 +184862,858,mob,1143222897 +184862,858,New York City,1165683605 +184862,858,Nudity (Topless),1262121996 +184862,858,organized crime,1168151530 +184862,858,Oscar (Best Actor),1154128048 +184862,858,Oscar (Best Picture),1151607006 +184862,858,patriarch,1166856078 +184862,858,sequel better than original,1211910327 +184862,858,stylized,1219951850 +184862,858,visceral,1248925814 +184862,866,atmospheric,1302396376 +184862,904,AFI 100,1165547195 +184862,904,Alfred Hitchcock,1432586926 +184862,904,alone,1156796418 +184862,904,apartment,1161907737 +184862,904,assassination,1365364082 +184862,904,Classic,1165547195 +184862,904,Edgar Award (Best Motion Picture),1281021537 +184862,904,James Stewart,1280587125 +184862,904,noir thriller,1168151074 +184862,904,tense,1219959465 +184862,904,voyeurism,1156438168 +184862,905,AFI 100 (Laughs),1280843659 +184862,905,Oscar (Best Actress),1179720427 +184862,905,Oscar (Best Picture),1179720427 +184862,907,divorce,1175201515 +184862,908,AFI 100,1368383383 +184862,908,Alfred Hitchcock,1280587144 +184862,908,Cary Grant,1432586949 +184862,908,classic,1151071442 +184862,908,Edgar Award (Best Motion Picture),1281115311 +184862,908,Mount Rushmore,1156438187 +184862,908,planes,1156796452 +184862,908,tense,1219959479 +184862,908,trains,1157691094 +184862,909,Jinni Top Pick,1256058555 +184862,911,Edgar Award (Best Motion Picture),1281119167 +184862,912,atmospheric,1302304862 +184862,912,classic,1161907668 +184862,912,Oscar (Best Picture),1192589503 +184862,912,USA film registry,1179012069 +184862,912,World War II,1209648233 +184862,913,adapted from:book,1432584356 +184862,913,AFI 100 (Thrills),1432584128 +184862,913,animal in title,1432586586 +184862,913,atmospheric,1432584115 +184862,913,author:Dashiell Hammett,1432584406 +184862,913,Bechdel Test:Fail,1432584290 +184862,913,Best of Rotten Tomatoes: All Time,1432584151 +184862,913,betrayal,1432586737 +184862,913,black and white,1432584077 +184862,913,director-screenwriter,1432584419 +184862,913,Directorial Debut,1432585764 +184862,913,drugged drink,1432586758 +184862,913,espionage,1432586712 +184862,913,fire,1432586770 +184862,913,gritty,1432584106 +184862,913,highly quotable,1432584139 +184862,913,Humphrey Bogart,1432584080 +184862,913,liar,1432586601 +184862,913,murder,1432586501 +184862,913,noir thriller,1432584069 +184862,913,Oscar Nominee: Best Picture,1432585048 +184862,913,Oscar Nominee: Screenwriting,1432585307 +184862,913,Oscar Nominee: Supporting Actor,1432585093 +184862,913,partnership,1432586693 +184862,913,Peter Lorre,1432584084 +184862,913,private detective,1432586635 +184862,913,scam,1432586657 +184862,913,Seen 2015,1432584172 +184862,913,talky,1432584097 +184862,914,adapted from B'way,1181942206 +184862,914,AFI 100,1165553330 +184862,914,family,1157690863 +184862,914,George Bernard Shaw,1157690867 +184862,914,Oscar (Best Actor),1157690898 +184862,914,Oscar (Best Cinematography),1157690902 +184862,914,Oscar (Best Director),1157690982 +184862,914,Oscar (Best Picture),1157690893 +184862,919,adapted from:book,1262027853 +184862,919,AFI 100,1181942684 +184862,919,author:L. Frank Baum,1262027853 +184862,919,Classic,1181942684 +184862,919,witch,1157691038 +184862,920,Jinni Top Pick,1365384063 +184862,921,television,1142041495 +184862,922,AFI 100,1248964796 +184862,922,AFI 100 (Movie Quotes),1192596842 +184862,922,AGE DISPARITY ROMANCE,1187217305 +184862,922,atmospheric,1265185371 +184862,922,biting,1248964801 +184862,922,black comedy,1248964802 +184862,922,classic,1165547522 +184862,922,dark,1248964804 +184862,922,eerie,1352139477 +184862,922,elegiac,1248964805 +184862,922,Emerson must see,1302304765 +184862,922,film noir,1352822500 +184862,922,Highly quotable,1248964808 +184862,922,Hollywood,1248964809 +184862,922,irreverent,1248964813 +184862,922,Los Angeles,1248964811 +184862,922,movie business,1262027987 +184862,922,movies,1163768267 +184862,922,Oscar (Best Art Direction),1248964814 +184862,922,Oscar (Best Music - Original Score),1248964815 +184862,922,Oscar (Best Music),1248964817 +184862,922,Oscar (Best Screenplay),1248964819 +184862,922,Oscar Nominee: Lead Actress,1248964820 +184862,922,satire,1248964821 +184862,922,swimming pool,1161480856 +184862,922,USA film registry,1248964823 +184862,923,AFI 100,1302304799 +184862,923,atmospheric,1388642661 +184862,923,masterpiece,1451886243 +184862,924,atmospheric,1388722701 +184862,926,wikilens top pick,1164609551 +184862,928,FilmAffinity top pick,1157118303 +184862,928,Hitchcock,1165546620 +184862,930,AFI 100 (Thrills),1365364114 +184862,930,Alfred Hitchcock,1280587169 +184862,930,Oscar Nominee: Supporting Actor,1157691157 +184862,930,put me to sleep,1156438224 +184862,933,cat burglar,1145681126 +184862,940,12th century,1156432206 +184862,940,archery,1156432206 +184862,940,castle,1156432206 +184862,940,Classic,1156432061 +184862,940,forest,1156432206 +184862,940,medieval,1156432206 +184862,940,Myth,1156432067 +184862,940,outlaw,1156432206 +184862,940,swashbuckler,1156432064 +184862,947,homeless,1184271640 +184862,950,Nick and Nora Charles,1174609561 +184862,953,alternate reality,1307907582 +184862,965,Janus 50,1182598764 +184862,982,melodrama,1137175245 +184862,994,1950s,1263410714 +184862,994,Allison Janney,1263410718 +184862,994,brothers,1263410721 +184862,994,Campbell Scott,1263410724 +184862,994,cooking,1311817820 +184862,994,failing business,1263410726 +184862,994,food,1263410728 +184862,994,Ian Holm,1263410731 +184862,994,immigrants,1263410734 +184862,994,Isabella Rossellini,1263410736 +184862,994,italian,1263410738 +184862,994,kitchen,1263410741 +184862,994,Liev Schreiber,1263410743 +184862,994,Minnie Driver,1263410746 +184862,994,new jersey,1263410750 +184862,994,R,1263410963 +184862,994,R:language,1263410963 +184862,994,restaurant,1263410752 +184862,994,Stanley Tucci,1263410754 +184862,994,Tony Shalhoub,1263410757 +184862,1009,aliens,1371321668 +184862,1013,acting,1360564947 +184862,1022,2D animation,1269697682 +184862,1022,Animated,1371321589 +184862,1022,animation,1269697689 +184862,1022,children cartoon,1255200992 +184862,1022,Disney,1152967548 +184862,1022,fairy-tale,1255200997 +184862,1022,prince,1165543423 +184862,1022,Wilfred Jackson,1416588801 +184862,1025,Disney,1152968012 +184862,1025,King Arthur,1157687655 +184862,1027,Robin Hood,1172895350 +184862,1028,Disney,1157691024 +184862,1028,Oscar (Best Actress),1203052791 +184862,1029,animals,1372793021 +184862,1029,circus,1269697767 +184862,1029,Disney,1152967784 +184862,1029,disturbing clown content,1165543791 +184862,1029,elephants,1416588734 +184862,1029,mother-son relationship,1255201125 +184862,1029,sad. again with the dying animated animals,1257176442 +184862,1029,talking animals,1255201116 +184862,1030,Disney,1142825728 +184862,1030,dragon,1142825728 +184862,1030,live action/animation,1153428359 +184862,1030,musical,1302306593 +184862,1032,adapted from:book,1257176733 +184862,1032,alternate reality,1302306483 +184862,1032,author:Lewis Carroll,1257176733 +184862,1032,cat,1169128473 +184862,1032,Disney,1169128380 +184862,1032,dream,1169128473 +184862,1032,queen,1169128473 +184862,1032,rabbit,1169128473 +184862,1032,surreal,1169128493 +184862,1035,AFI 100,1203052732 +184862,1035,classic,1157691010 +184862,1036,70mm,1310054111 +184862,1036,action packed,1388641062 +184862,1036,adapted from:book,1346036952 +184862,1036,AFI 100 (Thrills),1302545437 +184862,1036,Alan Rickman,1308023554 +184862,1036,Anamorphic Blow-Up,1310054134 +184862,1036,author:Roderick Thorp,1346036952 +184862,1036,Bruce Willis,1352841585 +184862,1036,christmas,1368383730 +184862,1036,explosions,1165683040 +184862,1036,John McClane,1166486614 +184862,1036,screenwriter:Jeb Stuart,1346036952 +184862,1036,screenwriter:Steven E. de Souza,1346036952 +184862,1037,cyberpunk,1443064546 +184862,1037,Nudity (Topless),1210346993 +184862,1041,Golden Palm,1309972879 +184862,1041,Mike Leigh,1309972889 +184862,1041,race relations,1311817060 +184862,1041,realism,1334518733 +184862,1041,secrets,1360399952 +184862,1041,single parents,1370216404 +184862,1057,Edward Norton,1372793592 +184862,1060,coming of age,1366224097 +184862,1060,Heather Graham,1280561114 +184862,1068,Edgar Award (Best Motion Picture),1280979121 +184862,1069,Edgar Award (Best Motion Picture),1280979534 +184862,1073,author:Roald Dahl,1212082940 +184862,1073,screenwriter:Roald Dahl,1212082940 +184862,1076,Edgar Award (Best Motion Picture),1281118288 +184862,1080,Monty Python,1452762406 +184862,1080,religion,1248970704 +184862,1084,delivery boy,1366681775 +184862,1089,cult film,1306613458 +184862,1089,dark comedy,1320116814 +184862,1089,ensemble cast,1309970499 +184862,1089,forceful,1345995699 +184862,1089,gangster,1352222248 +184862,1089,mob,1141943977 +184862,1089,nonlinear,1280591983 +184862,1089,quirky,1141943967 +184862,1089,violence,1151606106 +184862,1089,violent,1432597264 +184862,1090,1960s,1150976724 +184862,1090,70mm,1311835248 +184862,1090,Anamorphic Blow-Up,1311835256 +184862,1090,Oliver Stone,1416597619 +184862,1090,Oscar (Best Picture),1150976622 +184862,1090,Vietnam,1150976618 +184862,1090,Vietnam War,1150976615 +184862,1092,Erotic,1161907856 +184862,1092,Notable Nudity,1150397128 +184862,1092,San Francisco,1151607288 +184862,1092,sex scenes,1432598364 +184862,1092,suspense,1169128884 +184862,1093,1960s,1273789285 +184862,1093,70mm,1146318505 +184862,1093,drugs,1146318647 +184862,1093,Jim Morrison,1273789289 +184862,1093,music,1146318653 +184862,1093,nudity (topless),1210347815 +184862,1093,Oliver Stone,1273789309 +184862,1095,adapted from:play,1309970553 +184862,1095,Al Pacino,1346019499 +184862,1095,Business,1165082746 +184862,1095,playwright:David Mamet,1309970558 +184862,1100,70mm blowup,1255151980 +184862,1101,pro-military,1201650865 +184862,1103,AFI 100,1365365720 +184862,1104,adapted from:play,1309970636 +184862,1104,mental illness,1432587107 +184862,1104,playwright:Tennessee Williams,1309970660 +184862,1111,animals,1164479025 +184862,1111,insects,1169276164 +184862,1123,cinematographer:Nick Doob,1213803722 +184862,1123,consultants,1157695342 +184862,1123,David Van Taylor,1416597304 +184862,1123,election,1253293391 +184862,1123,independent film,1208972749 +184862,1123,PBS,1158980077 +184862,1123,politics,1272142878 +184862,1123,R.J. Cutler,1416597307 +184862,1123,Republicans,1254012426 +184862,1123,senators,1152968595 +184862,1123,Virginia,1145679329 +184862,1126,imaginary friend,1167340000 +184862,1126,Minnesota,1167340000 +184862,1127,ocean,1152296706 +184862,1127,sci-fi,1444061455 +184862,1131,agriculture,1248964644 +184862,1131,Claude Berri,1257176152 +184862,1131,emotional,1248964646 +184862,1131,tragedy,1452767088 +184862,1133,book editor,1171664378 +184862,1133,independent film,1275027204 +184862,1136,Biblical,1302309421 +184862,1136,British,1320122638 +184862,1136,british comedy,1452762370 +184862,1136,classic,1324925535 +184862,1136,Monty Python,1452762367 +184862,1147,boxing,1174608889 +184862,1148,Aardman,1266534423 +184862,1148,animals as companions,1266534424 +184862,1148,animals as nemesis,1266534425 +184862,1148,claymation,1266534426 +184862,1148,disguise,1266534427 +184862,1148,invention,1266534429 +184862,1148,penguins,1266534430 +184862,1148,robots,1266534432 +184862,1171,campaign manager,1270591665 +184862,1171,politicians,1202016943 +184862,1172,censorship,1157662693 +184862,1172,childhood,1157662693 +184862,1172,heartwarming,1280560919 +184862,1172,Italy,1157662693 +184862,1172,Palermo,1157662693 +184862,1172,projectionist,1157662693 +184862,1172,sentimental,1182599080 +184862,1172,Sicily,1157662693 +184862,1172,small town,1157662693 +184862,1173,art house,1306612811 +184862,1173,black comedy,1366222783 +184862,1173,cannibalism,1384812319 +184862,1178,FilmAffinity top pick,1206128782 +184862,1179,100 Essential Female Performances,1302401226 +184862,1179,Edgar Award (Best Motion Picture),1281244964 +184862,1183,Oscar (Best Supporting Actress),1185547173 +184862,1185,biography,1280813574 +184862,1186,sexuality,1416625259 +184862,1188,Australia,1154446666 +184862,1188,ballroom dancing,1154446632 +184862,1188,Dance,1165546117 +184862,1188,Red Curtain trilogy,1154446651 +184862,1189,Edgar Award (Best Motion Picture),1281244699 +184862,1190,movie business,1416625396 +184862,1191,Barcelona,1172236123 +184862,1191,Catholicism,1172236124 +184862,1191,celebrity,1172235321 +184862,1191,concert,1172234538 +184862,1191,Detroit,1172236124 +184862,1191,Houston,1172236124 +184862,1191,Los Angeles,1172236124 +184862,1191,Madrid,1172236123 +184862,1191,musicians,1172236124 +184862,1191,New York City,1172236124 +184862,1191,Nice (France),1172236124 +184862,1191,Paris,1172236124 +184862,1191,rock concert footage,1203483436 +184862,1191,Rome,1172236124 +184862,1191,Tokyo,1172236124 +184862,1191,Toronto,1172236124 +184862,1191,Venice,1172236124 +184862,1193,adapted from:book,1280591685 +184862,1193,author:Ken Kesey,1280591685 +184862,1193,biting,1302547057 +184862,1193,classic,1219959424 +184862,1193,emotional,1173796360 +184862,1193,irreverent,1181942501 +184862,1193,jack nicholson,1416524315 +184862,1193,mental illness,1151606985 +184862,1193,Oscar (Best Picture),1163915681 +184862,1193,psychological,1452768516 +184862,1193,psychology,1451886453 +184862,1196,androids,1352842132 +184862,1196,best of the originals,1259945989 +184862,1196,classic,1259945991 +184862,1196,father son relationship,1259945993 +184862,1196,franchise,1179014595 +184862,1196,Harrison Ford,1444060471 +184862,1196,Highly quotable,1259946001 +184862,1196,jedi,1164479316 +184862,1196,Myth,1166855803 +184862,1196,space,1152685221 +184862,1196,space opera,1259946020 +184862,1197,classic,1310054256 +184862,1197,Cult classic,1345994737 +184862,1197,fanciful,1352841721 +184862,1198,70mm,1310054019 +184862,1198,Anamorphic Blow-Up,1310054050 +184862,1198,archaeology,1259945947 +184862,1198,ark of the covenant,1308023265 +184862,1198,atmospheric,1259945943 +184862,1198,biblical,1308023266 +184862,1198,Biblical fantasy,1308023263 +184862,1198,classic,1346037041 +184862,1198,indiana jones,1259945935 +184862,1198,Nazis,1259945938 +184862,1198,professor,1259945927 +184862,1198,rousing,1259945941 +184862,1198,Saturn Award (Best Actor),1259945923 +184862,1198,Saturn Award (Best Fantasy Film),1259945925 +184862,1198,World War II,1262121733 +184862,1200,aliens,1444060321 +184862,1200,disobeying orders,1368938824 +184862,1200,sci-fi,1432595581 +184862,1203,classic,1168151033 +184862,1203,claustrophobic,1346019580 +184862,1203,confrontational,1364710036 +184862,1203,courtroom,1346019563 +184862,1203,crime,1168151044 +184862,1203,Edgar Award (Best Motion Picture),1346019564 +184862,1203,ethnic conflict,1346019566 +184862,1203,forceful,1219959443 +184862,1203,heat wave,1346019567 +184862,1203,Recommendz Top Pick,1157117876 +184862,1203,Seen 2007,1168151028 +184862,1204,atmospheric,1452749208 +184862,1204,Oscar (Best Picture),1164946210 +184862,1206,author:Anthony Burgess,1384721170 +184862,1206,Beatles,1384723843 +184862,1206,Bechdel Test:Fail,1384726482 +184862,1206,classic,1384721065 +184862,1206,Criticker top pick,1267599954 +184862,1206,director-screenwriter,1384721170 +184862,1206,disturbing,1384721067 +184862,1206,dystopia,1384721079 +184862,1206,EXPERIMENTS GONE AWRY,1384723486 +184862,1206,eye,1384723867 +184862,1206,Futuristmovies.com,1384721083 +184862,1206,growing up,1384723597 +184862,1206,irreverent,1384721085 +184862,1206,Nudity (Full Frontal),1384721087 +184862,1206,Nudity (Topless - Brief),1384721090 +184862,1206,Oscar Nominee: Adapted Screenplay,1384721307 +184862,1206,Oscar Nominee: Best Picture,1384721322 +184862,1206,Oscar Nominee: Director,1384721306 +184862,1206,Oscar Nominee: Editing,1384721307 +184862,1206,prison,1384721092 +184862,1206,psychological,1384721096 +184862,1206,psychological torment,1384723668 +184862,1206,psychology,1384721097 +184862,1206,quirky,1384721099 +184862,1206,rape victim,1384723648 +184862,1206,RateYourMusic Top Pick,1312649049 +184862,1206,satire,1384721101 +184862,1206,satirical,1384721103 +184862,1206,scantily clad female,1384723829 +184862,1206,Seen 2013,1385074753 +184862,1206,social commentary,1384721110 +184862,1206,Social Engineering,1384723529 +184862,1206,Stanley Kubrick,1384721113 +184862,1206,stylized,1384721115 +184862,1206,surreal,1384721117 +184862,1206,violence,1384721119 +184862,1206,Voice Over Narration,1384723586 +184862,1206,widower,1384723539 +184862,1206,X,1384723895 +184862,1208,FilmAffinity Top Pick,1439263538 +184862,1210,classic,1219951705 +184862,1210,darth vader,1259946062 +184862,1210,George Lucas,1262121597 +184862,1210,Han Solo,1259946061 +184862,1210,luke skywalker,1259946064 +184862,1210,Myth,1166855866 +184862,1210,redemption,1259946066 +184862,1210,sequel,1164479354 +184862,1210,space,1152685260 +184862,1210,Space battle,1179014622 +184862,1210,space opera,1259946070 +184862,1212,AFI 100,1248979543 +184862,1212,atmospheric,1248979544 +184862,1212,black and white,1384817317 +184862,1212,cinematography,1334546726 +184862,1212,Classic,1248979545 +184862,1212,Criterion,1388642700 +184862,1212,Janus 50,1248979548 +184862,1213,adapted from:book,1219951987 +184862,1213,AFI 100,1248925895 +184862,1213,author:Nicholas Pileggi,1219951987 +184862,1213,biography,1275003811 +184862,1213,claustrophobic,1275004015 +184862,1213,confrontational,1248925898 +184862,1213,dark comedy,1262121975 +184862,1213,disturbing,1232824810 +184862,1213,FALTERING FRIENDSHIPS,1197333763 +184862,1213,gangsters,1310089815 +184862,1213,good dialogue,1248925916 +184862,1213,gritty,1182599177 +184862,1213,Joe Pesci,1432597300 +184862,1213,mafia,1310089817 +184862,1213,MAFIA LIFE,1207246259 +184862,1213,Martin Scorsese,1452761723 +184862,1213,narrated,1165683646 +184862,1213,organized crime,1168151567 +184862,1213,Oscar (Best Supporting Actor),1208974129 +184862,1213,RISE AND FALL STORIES,1185660143 +184862,1213,Robert De Niro,1280560268 +184862,1213,violence,1203050729 +184862,1213,visceral,1248925913 +184862,1213,WITNESS PROTECTION,1211910449 +184862,1214,Criticker top pick,1375963460 +184862,1218,assassin,1360102176 +184862,1218,Best of Rotten Tomatoes: All Time,1360397604 +184862,1218,Chow Yun Fat,1267469832 +184862,1218,Criterion,1366734381 +184862,1218,gun fu,1280592805 +184862,1218,guns,1151606344 +184862,1219,AFI 100,1365363895 +184862,1219,Alfred Hitchcock,1280587073 +184862,1219,amazing photography,1384816369 +184862,1219,Edgar Award (Best Motion Picture),1281117407 +184862,1219,serial killer,1172180671 +184862,1219,suspenseful,1443073791 +184862,1220,Saturday Night Live,1165682867 +184862,1221,adapted from:book,1432597582 +184862,1221,AFI 100,1170389863 +184862,1221,AFI 100 (Movie Quotes),1248925830 +184862,1221,Al Pacino,1280560328 +184862,1221,author:Mario Puzo,1432597603 +184862,1221,bathtub,1366693137 +184862,1221,bold,1275003332 +184862,1221,classic,1141336955 +184862,1221,Cuba,1262122153 +184862,1221,director-screenwriter,1432597635 +184862,1221,dysfunctional family,1248925832 +184862,1221,Epic,1248925833 +184862,1221,family,1166856099 +184862,1221,gambling,1219951916 +184862,1221,guns,1207246237 +184862,1221,imdb top 250,1248925836 +184862,1221,Lake Tahoe,1156437874 +184862,1221,mafia,1152685458 +184862,1221,mob,1143222925 +184862,1221,National Film Registry,1232824736 +184862,1221,New York City,1248925840 +184862,1221,organized crime,1179717379 +184862,1221,Oscar (Best Directing),1248925843 +184862,1221,Oscar (Best Picture),1248925844 +184862,1221,Oscar (Best Supporting Actor),1248925845 +184862,1221,sequel,1146782813 +184862,1221,sequel:better,1248925851 +184862,1223,Aardman,1266534468 +184862,1223,Aardman studios,1372791843 +184862,1223,cheese,1266534469 +184862,1223,claymation,1266534470 +184862,1223,discovery,1266534473 +184862,1223,invention,1266534473 +184862,1223,moon,1148973388 +184862,1223,quest,1152291173 +184862,1223,rocket,1150467329 +184862,1223,short,1157113917 +184862,1226,FilmAffinity top pick,1165089391 +184862,1227,rape victim,1384812134 +184862,1227,Yahoo Top Pick,1249088999 +184862,1228,AFI 100,1248925933 +184862,1228,atmospheric,1248925937 +184862,1228,beautiful,1370215689 +184862,1228,Biography,1232824863 +184862,1228,black and white,1275002636 +184862,1228,classic,1210348377 +184862,1228,forceful,1211910472 +184862,1228,nightclub,1207246281 +184862,1228,Oscar (Best Actor),1248925944 +184862,1228,Robert De Niro,1451886223 +184862,1228,sport:boxing,1248925946 +184862,1228,stylized,1203050750 +184862,1230,AFI 100,1165546784 +184862,1230,AFI 100 (Laughs),1307850412 +184862,1230,new york city,1165089934 +184862,1230,Oscar (Best Picture),1164475944 +184862,1230,Woody Allen,1416608427 +184862,1231,70mm blowup,1320123388 +184862,1232,adapted from:book,1262717371 +184862,1232,art,1262717480 +184862,1232,austere,1262717311 +184862,1232,author:Arkadi Strugatsky,1262717371 +184862,1232,Author:Boris Strugatsky,1262717370 +184862,1232,despair,1262717313 +184862,1232,downbeat,1262717378 +184862,1232,dystopia,1278262997 +184862,1232,ex-imdb top 250,1262717410 +184862,1232,hope,1173793580 +184862,1232,mosfilm,1173792986 +184862,1232,nature,1262717420 +184862,1232,reflective,1173793355 +184862,1232,Seen 2007,1173796673 +184862,1232,Totalitarianism,1173793580 +184862,1232,wikilens top pick,1166781189 +184862,1234,artistic,1345997227 +184862,1235,May-December romance,1169130649 +184862,1236,Adrienne Shelly,1263411684 +184862,1236,bittersweet,1256487553 +184862,1236,deadpan,1256487560 +184862,1236,ECCENTRIC FAMILIES,1280603568 +184862,1236,FATHERS AND SONS,1304928114 +184862,1236,Hal Hartley,1310089416 +184862,1236,Long Island,1164475738 +184862,1236,Martin Donovan,1311817734 +184862,1236,New York,1164475738 +184862,1237,afterlife,1365363400 +184862,1237,atmospheric,1307847820 +184862,1237,death,1182598659 +184862,1237,Janus 50,1182598659 +184862,1240,time travel,1444060445 +184862,1241,1950s,1177825148 +184862,1241,cult film,1177824971 +184862,1241,gross out,1177825148 +184862,1241,lawn mower,1177825148 +184862,1241,New Zealand,1177825163 +184862,1241,Peter Jackson,1432595946 +184862,1241,zombies,1177824957 +184862,1242,African American history,1157057688 +184862,1242,based on book,1157057796 +184862,1242,Civil War,1157057686 +184862,1242,Class,1157057696 +184862,1242,historical,1157057780 +184862,1242,Oscar (Best Cinematography),1157057721 +184862,1242,Oscar (Best Sound),1157057756 +184862,1242,Oscar (Best Supporting Actor),1157057727 +184862,1242,Race,1157057694 +184862,1242,true story,1157057799 +184862,1244,black and white,1165089517 +184862,1244,New York City,1164475973 +184862,1245,alone,1310089862 +184862,1245,atmospheric,1320116873 +184862,1245,Coen Brothers,1280591955 +184862,1245,dark comedy,1346019425 +184862,1245,gangsters,1280591960 +184862,1245,Mafia,1145160113 +184862,1245,twists & turns,1145160107 +184862,1246,bittersweet,1302546992 +184862,1246,boarding school,1309974053 +184862,1246,melodrama,1302546994 +184862,1246,school,1137173893 +184862,1246,teen,1137173893 +184862,1247,Rate Your Music top pick,1349550452 +184862,1247,undressing,1355294428 +184862,1249,assassin,1280592823 +184862,1249,assassins,1360102231 +184862,1249,atmospheric,1365364161 +184862,1249,cynical,1384816686 +184862,1251,Criterion,1365363518 +184862,1251,dreams,1371320309 +184862,1252,atmospheric,1307907756 +184862,1252,bleak,1320069936 +184862,1252,classic,1265185317 +184862,1252,complicated,1384816432 +184862,1252,cynical,1280843873 +184862,1252,Edgar Award (Best Motion Picture),1281119942 +184862,1252,Jack Nicholson,1432586898 +184862,1252,rape victim,1384812167 +184862,1257,goofy,1280561234 +184862,1258,atmospheric,1302304693 +184862,1258,author:Stephen King,1207246111 +184862,1258,based on a book,1302304691 +184862,1258,Stanley Kubrick,1443073832 +184862,1258,WRITER'S LIFE,1207246116 +184862,1259,1960s,1302307388 +184862,1259,adventure,1302546420 +184862,1259,autumnal,1309974365 +184862,1260,FilmAffinity top pick,1169303202 +184862,1260,Janus 50,1182598273 +184862,1265,time travel,1161966650 +184862,1266,AFI 100,1307907699 +184862,1266,bleak,1280842627 +184862,1266,BOUNTY HUNTERS,1310054393 +184862,1267,adapted from:book,1334546934 +184862,1267,AFI 100,1167340190 +184862,1267,assassin,1320069875 +184862,1267,assassination,1161480688 +184862,1267,author:Richard Condon,1334546934 +184862,1267,brainwashing,1352843066 +184862,1267,classic,1320069879 +184862,1267,screenwriter:George Axelrod,1334546934 +184862,1270,classic,1259945912 +184862,1270,future,1259945904 +184862,1270,time travel,1259945910 +184862,1271,racism,1203050227 +184862,1273,atmospheric,1384813067 +184862,1273,black and white,1416624310 +184862,1274,action,1139069742 +184862,1274,Japan,1139069737 +184862,1275,70mm blowup,1388642153 +184862,1277,remake,1149268307 +184862,1278,black and white,1166477501 +184862,1278,farce,1166477491 +184862,1278,gothic,1166477496 +184862,1278,Quotable,1166477507 +184862,1278,Seen 2006,1166477590 +184862,1278,spoof,1166477492 +184862,1278,Transylvania,1166477590 +184862,1280,1920s,1155831753 +184862,1280,adultery,1306446883 +184862,1280,austere,1307848227 +184862,1280,China,1155831753 +184862,1280,claustrophobic,1306446889 +184862,1280,courtesan,1204050778 +184862,1280,deliberate,1202083074 +184862,1280,food,1155831753 +184862,1280,Gong Li,1280592877 +184862,1280,opera,1155831753 +184862,1280,polygamy,1155831753 +184862,1280,social commentary,1416523777 +184862,1282,2D animation,1371321456 +184862,1282,Disney,1152968415 +184862,1283,AFI 100,1165547776 +184862,1283,Classic,1165547776 +184862,1283,gunfight,1154705746 +184862,1283,imdb top 250,1280842691 +184862,1283,Oscar (Best Actor),1155317159 +184862,1283,Quakers,1158418426 +184862,1283,USA film registry,1157117049 +184862,1283,western,1452765763 +184862,1285,black comedy,1280603514 +184862,1285,Edgar Award (Best Motion Picture),1281244819 +184862,1288,AFI 100 (Laughs),1302309361 +184862,1289,civilization,1271015756 +184862,1289,no dialogue,1168150714 +184862,1289,score:Philip Glass,1211941384 +184862,1289,technology,1268251112 +184862,1291,70mm,1310053922 +184862,1291,Anamorphic Blow-Up,1310053962 +184862,1291,archaeology,1259945960 +184862,1291,FATHERS AND SONS,1259945962 +184862,1291,Harrison Ford,1262121617 +184862,1291,Holy Grail,1259945965 +184862,1291,indiana jones,1259945967 +184862,1291,Nazis,1259945969 +184862,1291,Oscar (Best Effects - Sound Effects Editing),1179014313 +184862,1291,professor,1259945971 +184862,1291,seen more than once,1219951727 +184862,1292,AFI 100 (Laughs),1280839871 +184862,1292,breakthroughs,1280839958 +184862,1292,funny,1384895282 +184862,1292,loner,1280839978 +184862,1292,main character is simpleminded and has big impact on world,1280839995 +184862,1292,Oscar (Best Supporting Actor),1280840000 +184862,1292,Oscar Nominee: Lead Actor,1280839941 +184862,1292,Peter Sellers,1280840010 +184862,1292,political satire,1280840018 +184862,1292,politics,1280840022 +184862,1292,satire,1280840024 +184862,1292,subtle,1280840028 +184862,1292,television,1451886300 +184862,1295,adapted from:book,1275005102 +184862,1295,author:Milan Kundera,1275005105 +184862,1295,classic,1262719758 +184862,1295,Criterion,1360424215 +184862,1296,Daniel Day-Lewis,1280812650 +184862,1302,AFI 100 (Cheers),1309974302 +184862,1302,baseball,1141943740 +184862,1302,drama,1270444076 +184862,1302,sports,1141943736 +184862,1306,Futuristmovies.com,1388725908 +184862,1307,1980s,1345995091 +184862,1307,AFI 100 (Laughs),1360562836 +184862,1310,business,1352848202 +184862,1310,community,1162141452 +184862,1310,grunge,1272142714 +184862,1310,music,1272142715 +184862,1310,music business,1184866011 +184862,1310,music producer,1324955847 +184862,1310,punk rock,1272142848 +184862,1310,Seattle,1272142716 +184862,1310,Young Fresh Fellows,1272142717 +184862,1339,Anthony Hopkins,1362322113 +184862,1343,1980s,1352223606 +184862,1343,Martin Scorsese,1443073909 +184862,1356,aliens,1302545244 +184862,1356,Saturn Award (Best Supporting Actress),1190603527 +184862,1356,Star Trek,1444060831 +184862,1357,adapted from:true story,1372788919 +184862,1357,allowance,1372790645 +184862,1357,apology,1372790344 +184862,1357,astrology,1372790392 +184862,1357,Australia,1372788664 +184862,1357,Bechdel Test:Fail,1372789156 +184862,1357,biography,1372788667 +184862,1357,biopic,1372788686 +184862,1357,cat,1372790314 +184862,1357,classical music,1372788693 +184862,1357,Geoffrey Rush,1372788700 +184862,1357,glasses,1372790633 +184862,1357,insanity,1372788703 +184862,1357,Jews,1372790429 +184862,1357,mental hospital,1372790498 +184862,1357,movielens top pick,1364710811 +184862,1357,music,1372788716 +184862,1357,music is key to story (not Musical genre),1372788719 +184862,1357,musicians,1372788722 +184862,1357,Nudity (Topless - Brief),1372788725 +184862,1357,Oscar (Best Actor),1372788735 +184862,1357,Oscar Nominee: Best Picture,1372789015 +184862,1357,Oscar Nominee: Director,1372788968 +184862,1357,Oscar Nominee: Editing,1372789015 +184862,1357,Oscar Nominee: Music - Original Score,1372789015 +184862,1357,Oscar Nominee: Original Screenplay,1372789042 +184862,1357,Oscar Nominee: Supporting Actor,1372788969 +184862,1357,PG-13,1372790704 +184862,1357,PG-13:intense thematic elements,1372790704 +184862,1357,PG-13:nudity/sensuality,1372790704 +184862,1357,piano,1372788742 +184862,1357,Psychiatry,1372788750 +184862,1357,rachmaninoff,1372788748 +184862,1357,schizophrenia,1372790280 +184862,1357,Scott Hicks,1372788753 +184862,1357,screenwriter:Jan Sardi,1372788919 +184862,1357,Seen 2013,1372790732 +184862,1357,swimming pool,1372790558 +184862,1357,true story,1372788762 +184862,1357,underwater,1372790458 +184862,1357,younger version of character,1372790539 +184862,1358,Billy Bob Thornton,1280591599 +184862,1358,directorial debut,1302546451 +184862,1358,disability,1307907654 +184862,1358,Edgar Award (Best Motion Picture),1281245912 +184862,1358,ex-con,1163915636 +184862,1358,goodness of people,1452767718 +184862,1358,John Ritter,1310089691 +184862,1358,Memorable Characters,1311816931 +184862,1358,mental illness,1416524347 +184862,1358,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1452767624 +184862,1358,Oscar Nominee: Lead Actor,1452767708 +184862,1358,small town,1451886418 +184862,1372,70mm blowup,1320128302 +184862,1372,aliens,1320128327 +184862,1372,Klingons,1148574185 +184862,1372,noise in space,1190603555 +184862,1372,sci-fi,1444060911 +184862,1372,Star Trek,1320128329 +184862,1374,adapted from:TV series,1302545348 +184862,1374,battles,1190602361 +184862,1374,brainwashing,1190602644 +184862,1374,Captain Kirk,1190602302 +184862,1374,franchise,1190602364 +184862,1374,Gene Roddenberry,1190602379 +184862,1374,midlife crisis,1190602644 +184862,1374,murder,1190602312 +184862,1374,noise in space,1190602419 +184862,1374,Paramount,1190603472 +184862,1374,PG:language,1190603472 +184862,1374,PG:violence,1190603472 +184862,1374,revenge as motive,1190602643 +184862,1374,sacrifice,1190602644 +184862,1374,Saturn Award (Best Actor),1190602272 +184862,1374,Saturn Award (Best Director),1190602318 +184862,1374,sci-fi,1444060602 +184862,1374,scope,1190602306 +184862,1374,sequel,1190602644 +184862,1374,space,1190602278 +184862,1374,space station,1190602644 +184862,1374,Star Trek,1190602382 +184862,1374,violence,1190602429 +184862,1375,70mm,1310053765 +184862,1375,aliens,1444061001 +184862,1375,Anamorphic Blow-Up,1310053767 +184862,1375,franchise,1190603574 +184862,1375,Gene Roddenberry,1148574222 +184862,1375,Star Trek,1148574227 +184862,1376,environmental,1190603503 +184862,1376,Gene Roddenberry,1148574138 +184862,1376,Star Trek,1148574153 +184862,1376,time travel,1444060664 +184862,1376,whales,1148574144 +184862,1377,Batman,1152685710 +184862,1380,high school,1259961057 +184862,1380,teen,1141425113 +184862,1385,Jinni Top Pick,1370234075 +184862,1387,AFI 100,1308023647 +184862,1394,AFI 100 (Laughs),1320122561 +184862,1394,babies,1371320408 +184862,1394,Coen Brothers,1280561051 +184862,1395,forgettable,1143342137 +184862,1395,relationships,1143342137 +184862,1395,salespeople,1143342137 +184862,1396,Ben Kingsley,1311895774 +184862,1405,adapted from:TV series,1255200758 +184862,1405,Buddy movie,1164945838 +184862,1405,directorial debut,1213766385 +184862,1405,great soundtrack,1255200730 +184862,1405,idiotic,1164945638 +184862,1405,mike judge,1255200770 +184862,1405,stupid,1164945635 +184862,1405,very funny,1164945642 +184862,1437,Andrew Birkin,1384895052 +184862,1446,abandonment,1161321494 +184862,1446,cellos,1163288012 +184862,1446,Prague,1176527132 +184862,1449,affectionate,1371320456 +184862,1449,farce,1159568973 +184862,1449,Missouri,1159569099 +184862,1449,mockumentary,1159568954 +184862,1449,musical,1159569099 +184862,1449,small town,1159569099 +184862,1449,theatre,1159569011 +184862,1466,1970s,1452761073 +184862,1466,airport,1452761419 +184862,1466,Al Pacino,1452761062 +184862,1466,based on a true story,1452761057 +184862,1466,Bechdel Test:Fail,1452760980 +184862,1466,Colombian,1452761464 +184862,1466,FBI,1452761341 +184862,1466,Florida,1452761555 +184862,1466,gangster,1452761077 +184862,1466,hospital,1452761458 +184862,1466,Jinni Top Pick,1364751975 +184862,1466,Johnny Depp,1452761059 +184862,1466,Mafia,1452760988 +184862,1466,mentor,1452760991 +184862,1466,money,1452761358 +184862,1466,New York City,1452761496 +184862,1466,organized crime,1452761070 +184862,1466,Oscar Nominee: Adapted Screenplay,1452761167 +184862,1466,pier,1452761455 +184862,1466,police arrest,1452761476 +184862,1466,R,1452761661 +184862,1466,R:brief nudity,1452761696 +184862,1466,R:pervasive strong language,1452761685 +184862,1466,R:sexuality,1452761700 +184862,1466,R:some strong graphic violence,1452761674 +184862,1466,racial slur,1452761386 +184862,1466,Seen 2016,1452760974 +184862,1466,singer,1452761397 +184862,1466,undercover cop,1452761066 +184862,1466,weightlifting,1452761442 +184862,1500,80s soundtrack,1302546634 +184862,1517,Mike Myers,1264275350 +184862,1517,screwball,1273814157 +184862,1517,spoof,1166028090 +184862,1517,spoof: James Bond,1264275344 +184862,1527,campy,1307907355 +184862,1527,multipass,1159034733 +184862,1527,sci-fi,1444061296 +184862,1556,bad sequel,1352224167 +184862,1556,boat,1161946081 +184862,1556,Jason Patric,1248916816 +184862,1556,Sandra Bullock,1278266958 +184862,1556,sequel,1147481034 +184862,1556,sequel:worse,1185655134 +184862,1569,Chicago,1204637123 +184862,1569,Comiskey Park,1204637123 +184862,1569,gay friend,1204637123 +184862,1569,jealousy,1204637123 +184862,1569,karaoke,1204637123 +184862,1569,LOVE TRIANGLES,1204637123 +184862,1569,Oscar Nominee: Music - Original Score,1204637437 +184862,1569,PG-13,1204637437 +184862,1569,PG-13:sex-related humor,1204637437 +184862,1569,PG-13:strong language,1204637437 +184862,1569,Rupert Everett,1432599133 +184862,1569,scope,1204637437 +184862,1569,UNREQUITED LOVE,1204637123 +184862,1569,wedding,1204637123 +184862,1569,Zucker Brothers,1204637437 +184862,1573,action,1388641010 +184862,1573,action packed,1388641004 +184862,1580,adapted from:comic,1320128214 +184862,1580,alien,1345593496 +184862,1580,aliens,1444061267 +184862,1581,Martha Coolidge,1370210764 +184862,1590,Jinni Top Pick,1380088694 +184862,1593,wedding,1432598875 +184862,1605,Alicia Silverstone,1255151845 +184862,1605,Benicio Del Toro,1255151851 +184862,1605,Can't remember,1255151858 +184862,1605,Christopher Walken,1255151856 +184862,1608,aviation,1161914741 +184862,1608,flight,1201650932 +184862,1608,president,1150397330 +184862,1608,US President,1179720189 +184862,1610,submarine,1158278481 +184862,1617,1930s,1311879663 +184862,1617,conspiracy,1269666240 +184862,1617,Kim Basinger,1432597827 +184862,1617,rape victim,1384812196 +184862,1631,spies,1145590145 +184862,1635,100 Essential Female Performances,1304928267 +184862,1635,1970s,1280560526 +184862,1635,Ang Lee,1307847510 +184862,1635,suburbia,1162049489 +184862,1639,Ben Affleck,1354660368 +184862,1639,Gay,1154154487 +184862,1639,lesbian,1154154490 +184862,1639,love story,1267470909 +184862,1639,seen more than once,1154154484 +184862,1639,view askew,1154154494 +184862,1641,British,1310089603 +184862,1645,Al Pacino,1388722222 +184862,1645,devil,1432597963 +184862,1653,directorial debut,1307907425 +184862,1663,East Germany,1166477774 +184862,1663,military,1160695815 +184862,1672,John Grisham,1150395994 +184862,1673,drugs,1416625191 +184862,1674,Edgar Award (Best Motion Picture),1281244250 +184862,1676,Alien Invasion,1368383826 +184862,1676,bugs!,1146772583 +184862,1676,future,1146772580 +184862,1676,space,1146772575 +184862,1677,adapted from:book,1302400562 +184862,1677,author:Richard Dooling,1302400562 +184862,1677,black comedy,1302400480 +184862,1677,euthanasia,1163089707 +184862,1677,hospital,1302400484 +184862,1677,insurance,1163089707 +184862,1677,screenwriter:Steven Schwartz,1302400562 +184862,1680,alternate universe,1206555178 +184862,1680,British,1269665860 +184862,1680,chick flick,1206555215 +184862,1680,co-production,1206555806 +184862,1680,hypertextual,1206555211 +184862,1680,London,1206555806 +184862,1680,Male Female Relationship,1269665834 +184862,1680,nonlinear,1206555058 +184862,1680,R,1206555806 +184862,1680,R:language,1206555805 +184862,1680,R:sexuality,1206555806 +184862,1680,subway,1206555806 +184862,1682,alternate reality,1268248761 +184862,1682,atmospheric,1384895336 +184862,1682,bridge,1268249621 +184862,1682,dark comedy,1268248763 +184862,1682,dreamlike,1268248765 +184862,1682,dystopia,1268248767 +184862,1682,fanciful,1268248768 +184862,1682,flashbacks,1268249621 +184862,1682,Florida,1268248937 +184862,1682,god complex,1268249621 +184862,1682,island,1268249621 +184862,1682,Jim Carrey,1268249627 +184862,1682,melancholy,1268248771 +184862,1682,original plot,1268248772 +184862,1682,Oscar Nominee: Director,1268249351 +184862,1682,Oscar Nominee: Original Screenplay,1268249366 +184862,1682,Oscar Nominee: Supporting Actor,1268249336 +184862,1682,PG,1268249489 +184862,1682,PG:mild language,1268249489 +184862,1682,PG:thematic elements,1268249489 +184862,1682,philosophy,1268248774 +184862,1682,poignant,1268248776 +184862,1682,product placement,1268248778 +184862,1682,Saturn Award (Best Fantasy Film),1280841168 +184862,1682,Saturn Award (Best Writing),1268248779 +184862,1682,small town,1268248792 +184862,1682,social commentary,1268248794 +184862,1682,stylized,1268248796 +184862,1682,surveillance,1268248798 +184862,1682,television,1280841066 +184862,1682,voyeurism,1268249637 +184862,1682,witty,1268248805 +184862,1704,Ben Affleck,1309974217 +184862,1704,mathematics,1280841919 +184862,1704,Robin Williams,1452767311 +184862,1704,seen more than once,1213813126 +184862,1719,bleak,1280560508 +184862,1719,Canada,1163287790 +184862,1719,incest,1166857883 +184862,1719,melancholic,1416523896 +184862,1721,disaster,1150397269 +184862,1721,shipwreck,1161914685 +184862,1732,Criticker top pick,1358032493 +184862,1732,like-i-like top pick,1159633740 +184862,1732,movielens top pick,1432596383 +184862,1748,Jinni Top Pick,1324977009 +184862,1757,assassin,1276527303 +184862,1757,assassination,1149834809 +184862,1757,debt collection,1302309231 +184862,1757,ice cream,1151769810 +184862,1757,Jet Tone,1154446509 +184862,1757,love,1208972973 +184862,1757,masturbation,1209642656 +184862,1757,moody,1203053121 +184862,1757,mute,1150468076 +184862,1757,nocturnal,1204049840 +184862,1757,selective mutism,1248918005 +184862,1757,setting:Hong Kong,1213803408 +184862,1757,stylized,1276527293 +184862,1757,subway,1150981667 +184862,1757,urban,1416624296 +184862,1757,urbane,1202662588 +184862,1772,like-i-like top pick,1169834041 +184862,1772,sequels,1169834055 +184862,1784,Comedy,1302545933 +184862,1784,gay friend,1204637983 +184862,1784,Helen Hunt,1254516600 +184862,1801,France,1184900505 +184862,1810,adapted from:book,1270591784 +184862,1810,author:Anonymous,1270591825 +184862,1810,author:Joe Klein,1270591852 +184862,1810,Bechdel Test:Pass,1270591859 +184862,1810,Billy Bob Thornton,1270591920 +184862,1810,campaign manager,1270591861 +184862,1810,disillusionment,1270591863 +184862,1810,Emma Thompson,1270591918 +184862,1810,EXTRAMARITAL AFFAIRS,1208206891 +184862,1810,hairdresser,1270591865 +184862,1810,John Travolta,1270591911 +184862,1810,media,1208206891 +184862,1810,New Orleans,1270591871 +184862,1810,New York City,1270591872 +184862,1810,Oscar Nominee: Adapted Screenplay,1270591873 +184862,1810,Oscar Nominee: Supporting Actress,1270591875 +184862,1810,politicians,1270591877 +184862,1810,politics,1270591879 +184862,1810,propaganda,1270591880 +184862,1810,R,1208207276 +184862,1810,R:sexual references,1208207276 +184862,1810,R:strong language,1208207276 +184862,1810,RISE TO POWER,1270591882 +184862,1810,scandal,1270591884 +184862,1810,scope,1208207276 +184862,1810,Seen 2008,1208299327 +184862,1810,suicide,1270591886 +184862,1834,con artists,1280586356 +184862,1845,Ben Stiller,1280586322 +184862,1845,Bill Pullman,1310048261 +184862,1845,blackmail,1154656541 +184862,1845,eccentricity,1154656542 +184862,1845,health club,1154656541 +184862,1845,Los Angeles,1154656541 +184862,1845,noir,1154656542 +184862,1845,Portland,1280586320 +184862,1856,conspiracy,1155832551 +184862,1856,drugs,1155832551 +184862,1856,heroin,1155832579 +184862,1856,musicians,1155832503 +184862,1856,Nirvana,1155832503 +184862,1856,punk rock,1155832579 +184862,1856,suicide,1155832551 +184862,1865,concert,1177827004 +184862,1865,jazz,1273788057 +184862,1865,musicians,1156388319 +184862,1865,Paris,1346028287 +184862,1865,Woody Allen,1273788065 +184862,1900,brother sister relationship,1249005344 +184862,1900,competition,1269698562 +184862,1900,Iran,1249005347 +184862,1900,Middle East,1324887550 +184862,1900,Oscar Nominee: Foreign Language (Iran),1267471982 +184862,1900,race,1179711134 +184862,1900,shoes,1257136015 +184862,1900,socks,1280815420 +184862,1900,Tehran,1179710948 +184862,1912,Edgar Award (Best Motion Picture),1281274076 +184862,1912,heist,1153449713 +184862,1912,Oscar Nominee: Adapted Screenplay,1208226570 +184862,1913,Aborigines,1249004981 +184862,1913,adapted from:book,1249005122 +184862,1913,austere,1249004983 +184862,1913,Australia,1249004975 +184862,1913,author:Joan Lindsay,1249005122 +184862,1913,Criterion,1249004987 +184862,1913,deliberate,1249004989 +184862,1913,dreamlike,1249004994 +184862,1913,eerie,1249004997 +184862,1913,Enigmatic,1249004999 +184862,1913,ominous,1249005008 +184862,1913,opaque,1249005010 +184862,1913,Peter Weir,1249005014 +184862,1913,understated,1249005016 +184862,1914,Native Americans,1148226647 +184862,1916,Anjelica Huston,1280603589 +184862,1917,apocalypse,1164558679 +184862,1917,Ben Affleck,1272055118 +184862,1917,Billy Bob Thornton,1273794957 +184862,1917,Bruce Willis,1444061226 +184862,1917,catastrophe,1191013005 +184862,1917,disaster,1150397299 +184862,1917,end of the world,1272055107 +184862,1917,humorous,1201650894 +184862,1917,Oscar Nominee: Sound Effects Editing,1179719237 +184862,1917,Outer space,1153496866 +184862,1917,space,1156442533 +184862,1917,space program,1276619330 +184862,1918,sequel,1158358200 +184862,1923,Rhode Island,1439099799 +184862,1945,Oscar (Best Picture),1154128482 +184862,1950,Edgar Award (Best Motion Picture),1281119514 +184862,1952,bittersweet,1302546281 +184862,1952,controversial,1307847602 +184862,1952,downbeat,1324888074 +184862,1952,Oscar (Best Picture),1158512500 +184862,1953,Edgar Award (Best Motion Picture),1281119739 +184862,1956,depression,1311817099 +184862,1956,Donald Sutherland,1280841672 +184862,1957,1920s,1352822374 +184862,1958,1940's,1203049574 +184862,1958,1950s,1203049574 +184862,1958,1960s,1203049574 +184862,1958,1970s,1203049574 +184862,1958,adapted from:book,1280841730 +184862,1958,astronauts,1280841752 +184862,1958,author:Larry McMurtry,1203049574 +184862,1958,Danny DeVito,1280841749 +184862,1958,DYING YOUNG,1203049574 +184862,1958,EXTRAMARITAL AFFAIRS,1203049574 +184862,1958,Houston,1280841774 +184862,1958,marriage,1203049574 +184862,1958,MOTHERS AND DAUGHTERS,1203049574 +184862,1958,nebraska,1280841759 +184862,1958,Oscar (Best Actress),1203049175 +184862,1958,Oscar (Best Directing),1203049220 +184862,1958,Oscar (Best Picture),1203049217 +184862,1958,Oscar (Best Supporting Actor),1203049166 +184862,1958,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1203049651 +184862,1958,Oscar Nominee: Art Direction,1203049783 +184862,1958,Oscar Nominee: Editing,1203049783 +184862,1958,Oscar Nominee: Lead Actress,1203049783 +184862,1958,Oscar Nominee: Music - Original Score,1203049783 +184862,1958,Oscar Nominee: Sound Effects Editing,1203049783 +184862,1958,Oscar Nominee: Supporting Actor,1203049783 +184862,1958,Paramount,1203050099 +184862,1958,PG,1203050099 +184862,1958,sentimental,1203049574 +184862,1958,tear jerker,1203049172 +184862,1958,terminal illness,1203049574 +184862,1958,Texas,1280841770 +184862,1959,Oscar (Best Directing),1185547245 +184862,1960,China,1452749177 +184862,1960,Oscar (Best Picture),1151607452 +184862,1961,autism,1352140580 +184862,1961,Dustin Hoffman,1280841898 +184862,1961,Oscar (Best Picture),1158278524 +184862,1961,psychology,1452768202 +184862,1962,Dan Aykroyd,1280841823 +184862,1962,Southern theme,1203050273 +184862,1965,aliens,1164474922 +184862,1965,black comedy,1164475023 +184862,1965,breakthroughs,1164474933 +184862,1965,Los Angeles,1164475023 +184862,1965,notable soundtrack,1164474937 +184862,1965,punk,1164474926 +184862,1966,Criterion,1366692920 +184862,1966,deadpan,1307849868 +184862,1966,literate,1310089347 +184862,1966,Manhattan,1311874360 +184862,1966,New York City,1311874360 +184862,1968,1980s,1372794308 +184862,1968,coming of age,1280561196 +184862,1968,Emilio Estevez,1302546682 +184862,1968,school drama,1193624495 +184862,1981,as bad as the title,1202676758 +184862,1994,ghosts,1207245269 +184862,2000,70mm blowup,1352224014 +184862,2000,buddy,1160091918 +184862,2000,death wish,1166477959 +184862,2000,kidnapping,1160092052 +184862,2000,Los Angeles,1160092052 +184862,2000,police,1160091934 +184862,2000,suicide attempt,1160092052 +184862,2000,torture,1160092052 +184862,2003,70mm blowup,1207245219 +184862,2003,Amblin,1207245219 +184862,2003,Executive Producer: Steven Spielberg,1207244521 +184862,2003,PG,1207245219 +184862,2003,rampage,1207245219 +184862,2003,Saturn Award (Best Director),1207245219 +184862,2003,Saturn Award (Best Horror Film),1207245219 +184862,2003,Saturn Award (Best Music),1207245219 +184862,2003,Saturn Award (Best Special Effects),1207245219 +184862,2003,Saturn Award (Best Supporting Actress),1207245219 +184862,2003,small town,1207245219 +184862,2006,Oscar Nominee: Sound Effects Editing,1179719311 +184862,2011,Michael J. Fox,1266533833 +184862,2012,Christopher Lloyd,1266533853 +184862,2014,being a kid again,1257178749 +184862,2018,adapted from:book,1272000489 +184862,2018,animals,1165543820 +184862,2018,Animals die :(,1255201182 +184862,2018,animation,1257176474 +184862,2018,author:Felix Salten,1269698364 +184862,2018,Disney,1152967815 +184862,2018,sad,1157687520 +184862,2018,sad. again with the dying animated animals,1269697789 +184862,2018,talking animals,1157687517 +184862,2019,16th century,1444763768 +184862,2019,Akira Kurosawa,1444763347 +184862,2019,atmospheric,1444763349 +184862,2019,barricade,1444764436 +184862,2019,battle,1444764228 +184862,2019,Bechdel Test:Fail,1444763336 +184862,2019,black and white,1444763383 +184862,2019,classic,1444763375 +184862,2019,Criterion,1444763390 +184862,2019,Criticker top pick,1220508172 +184862,2019,FilmAffinity top pick,1155887325 +184862,2019,historical,1444763377 +184862,2019,imdb top 250,1444763545 +184862,2019,Janus 50,1182598641 +184862,2019,Japan,1444763352 +184862,2019,kneeling,1444764419 +184862,2019,masterpiece,1444763372 +184862,2019,old man,1444764407 +184862,2019,old woman,1444764405 +184862,2019,Oscar Nominee: Costume Design,1444763756 +184862,2019,Oscar Nominee: Set Decoration,1444763736 +184862,2019,panic,1444764449 +184862,2019,practice,1444764278 +184862,2019,river,1444764288 +184862,2019,samurai,1444763345 +184862,2019,Seen 2015,1444763198 +184862,2019,stylized,1444763385 +184862,2019,toshiro mifune,1444763380 +184862,2019,waterfall,1444764439 +184862,2020,18th century,1302401299 +184862,2020,adapted from:book,1307848378 +184862,2020,adapted from:play,1311818546 +184862,2020,adultery,1334547060 +184862,2020,author:Choderlos de Laclos,1307848408 +184862,2020,playwright:Christopher Hampton,1307848428 +184862,2020,screenwriter:Christopher Hampton,1307848453 +184862,2021,action,1388725949 +184862,2021,addiction,1144367359 +184862,2022,good soundtrack,1179719546 +184862,2022,Peter Gabriel music,1179719567 +184862,2028,Mark Gordon Productions,1185509766 +184862,2033,based on a book,1169741286 +184862,2033,Disney,1169741181 +184862,2033,pigs,1169741286 +184862,2033,quest,1169741286 +184862,2038,Disney,1146787524 +184862,2038,talking animals,1146787524 +184862,2059,adapted from:book,1254013181 +184862,2059,author:Erich Kästner,1254013181 +184862,2059,butler,1184271524 +184862,2059,camping trip,1184271523 +184862,2059,Disney,1184271524 +184862,2059,divorce,1184271524 +184862,2059,dream house,1184271038 +184862,2059,family,1184271014 +184862,2059,gold digger,1184271523 +184862,2059,Lindsay Lohan,1254013120 +184862,2059,lizard,1184271524 +184862,2059,London,1184271524 +184862,2059,Maine,1184271523 +184862,2059,MISTAKEN IDENTITIES,1184271523 +184862,2059,nanny,1184271524 +184862,2059,Napa Valley,1184271523 +184862,2059,prank,1184271523 +184862,2059,remake,1254013204 +184862,2059,reunion,1184271523 +184862,2059,San Francisco,1184271524 +184862,2059,summer camp,1184271031 +184862,2059,twins,1184271028 +184862,2059,vinyeard,1184271040 +184862,2059,wine,1184271522 +184862,2059,winery,1184271025 +184862,2064,capitalism,1254011529 +184862,2064,corporate America,1263450430 +184862,2064,michael moore,1416519724 +184862,2064,Michigan,1167340467 +184862,2065,bittersweet,1192573531 +184862,2076,AFI 100 (Thrills),1302304492 +184862,2076,atmospheric,1306612578 +184862,2076,David Lynch,1276527177 +184862,2076,disturbing,1320117132 +184862,2076,sexuality,1154677006 +184862,2078,adapted from:book,1255201277 +184862,2078,author:Rudyard Kipling,1255201284 +184862,2078,bears,1165544024 +184862,2078,classic,1416588687 +184862,2078,Disney,1152967897 +184862,2078,talking animals,1157687622 +184862,2080,animals,1257176529 +184862,2080,animation,1255201226 +184862,2080,cartoon,1269697623 +184862,2080,Disney,1152967853 +184862,2080,dogs,1269697600 +184862,2080,puppies,1269697602 +184862,2080,spaghetti,1165543899 +184862,2080,stereotypes,1416588857 +184862,2080,talking animals,1157687599 +184862,2081,Disney,1165545230 +184862,2081,talking animals,1416588810 +184862,2085,animals,1257176562 +184862,2085,animation,1269697567 +184862,2085,Disney,1255201254 +184862,2085,dogs,1416588871 +184862,2087,adapted from:book,1257176648 +184862,2087,adapted from:play,1255200858 +184862,2087,author:J.M. Barrie,1257176674 +184862,2087,Captain Hook,1255200916 +184862,2087,crocodile,1255200919 +184862,2087,Disney,1165535508 +184862,2087,island,1165535716 +184862,2087,London,1165535716 +184862,2087,Peter Pan,1255200923 +184862,2087,pirates,1165535636 +184862,2087,playwright:J.M. Barrie,1255200907 +184862,2087,racial stereotype,1255200963 +184862,2087,sword fight,1255200926 +184862,2090,Disney,1416588702 +184862,2094,based on comic,1158418114 +184862,2099,controversial,1153428322 +184862,2099,Disney,1153428322 +184862,2099,live action/animation,1153428322 +184862,2099,talking animals,1153428322 +184862,2100,Nudity (Rear),1260513012 +184862,2104,author:S.E. Hinton,1258388633 +184862,2104,based on a book,1258388631 +184862,2104,Emilio Estevez,1258388659 +184862,2104,Matt Dillon,1258388638 +184862,2105,computers,1170385892 +184862,2105,Disney,1170387897 +184862,2105,dystopia,1170387546 +184862,2105,gladiators,1170387897 +184862,2105,hackers,1170387897 +184862,2105,videogame,1170387897 +184862,2105,virtual reality,1170387550 +184862,2112,like-i-like top pick,1165714619 +184862,2112,Social Drama,1165715117 +184862,2115,action,1139590831 +184862,2115,George Lucas story,1179014212 +184862,2115,orientalist,1139590850 +184862,2115,sequel,1139590825 +184862,2124,halloween,1208973390 +184862,2125,Brothers Grimm,1213818538 +184862,2125,fairy tale,1213818233 +184862,2125,New take on a classic story.,1213818370 +184862,2125,PG,1213818757 +184862,2125,PG:brief language,1213818757 +184862,2125,PG:mild thematic elements,1213818757 +184862,2125,prince,1213818538 +184862,2125,scope,1213818757 +184862,2125,servant,1213818539 +184862,2125,setting:Spain,1213818539 +184862,2125,snob,1213818538 +184862,2125,stepsisters,1213818538 +184862,2125,theme:CLASS DIFFERENCES,1213818538 +184862,2125,women's lib,1213818366 +184862,2138,2D animation,1357928068 +184862,2140,70mm blowup,1370211411 +184862,2140,classic,1180244678 +184862,2144,80's classic,1193624399 +184862,2144,dysfunctional family,1302546739 +184862,2145,changed ending,1193624209 +184862,2145,CLASS DIFFERENCES,1193624209 +184862,2145,FATHERS AND DAUGHTERS,1193624209 +184862,2145,high school,1193623426 +184862,2145,illinois,1193624210 +184862,2145,John Hughes,1193623439 +184862,2145,Paramount,1193624210 +184862,2145,PG-13,1193624209 +184862,2145,preppie,1193624210 +184862,2145,prom,1193624209 +184862,2145,record store,1193624210 +184862,2145,teen angst,1193624210 +184862,2145,UNREQUITED LOVE,1193624209 +184862,2155,1970s,1168148246 +184862,2155,class issues,1168148246 +184862,2155,coming of age,1168148246 +184862,2155,drugs,1168148246 +184862,2155,Hollywood,1168148246 +184862,2155,jewish family,1168148246 +184862,2159,Character study,1357928298 +184862,2165,Neil LaBute,1416625227 +184862,2165,screenwriter:Neil LaBute,1307847385 +184862,2173,Auckland,1257130756 +184862,2173,medieval,1257130543 +184862,2173,New Zealand,1257130543 +184862,2173,PG,1257130828 +184862,2173,plague,1257130603 +184862,2173,time travel,1257130543 +184862,2173,trains,1257130646 +184862,2174,AFI 100 (Laughs),1256440558 +184862,2174,alternate reality,1324925374 +184862,2174,Bechdel Test:Pass,1256440561 +184862,2174,claymation,1256440502 +184862,2174,comedy,1256440507 +184862,2174,cult film,1256440509 +184862,2174,Death,1256440516 +184862,2174,ghosts,1256440546 +184862,2174,ghosts/afterlife,1256440521 +184862,2174,haunted house,1256440547 +184862,2174,horror,1256440527 +184862,2174,Michael Keaton,1256440529 +184862,2174,modern art,1416785591 +184862,2174,Tim Burton,1256440499 +184862,2174,weird,1256440551 +184862,2174,winona ryder,1256440552 +184862,2177,Edgar Award (Best Motion Picture),1281159508 +184862,2188,like-i-like top pick,1161990296 +184862,2193,70mm blowup,1352842060 +184862,2193,dragon,1426543409 +184862,2194,gangsters,1200586613 +184862,2194,Kevin Costner,1280560201 +184862,2194,Sean Connery,1432597716 +184862,2208,Janus 50,1182598203 +184862,2243,AFI 100 (Laughs),1307850329 +184862,2248,cameron crowe,1302546779 +184862,2249,Mafia,1148854239 +184862,2252,redemption,1166262851 +184862,2253,Joan Cusack,1276531927 +184862,2261,Demi Moore,1280561255 +184862,2264,ESCAPE FROM PRISON,1183673700 +184862,2265,black comedy,1176526903 +184862,2265,Pennsylvania,1158980294 +184862,2265,punishment,1148405821 +184862,2268,adapted from:play,1302399747 +184862,2268,court,1158278507 +184862,2268,playwright:Aaron Sorkin,1302399747 +184862,2268,screenwriter:Aaron Sorkin,1302399747 +184862,2268,Theater,1141336854 +184862,2285,colour/B&W combo,1365363599 +184862,2285,Criterion,1384894953 +184862,2285,surrealism,1161361403 +184862,2288,disturbing,1432595657 +184862,2289,deadpan,1259963924 +184862,2289,Edgar Award (Best Motion Picture),1281245196 +184862,2291,beautiful,1302334018 +184862,2291,dark comedy,1280560813 +184862,2291,Depp & Burton,1256440713 +184862,2297,Jinni Top Pick,1418687049 +184862,2313,19th century,1151769175 +184862,2313,based on a true story,1151769175 +184862,2313,based on book,1197354430 +184862,2313,biopic,1151769190 +184862,2313,black and white,1151771134 +184862,2313,freaks,1151769139 +184862,2313,historical,1151769144 +184862,2313,London,1151769243 +184862,2313,Seen 2006,1151769932 +184862,2313,Yahoo Top Pick,1140207459 +184862,2318,child abuse,1307847454 +184862,2321,heartwarming,1280841291 +184862,2324,movielens top pick,1437173659 +184862,2329,confrontational,1306613080 +184862,2329,disturbing,1248925589 +184862,2329,Edward Norton,1259946251 +184862,2329,emotional,1360394700 +184862,2329,forceful,1248925593 +184862,2329,friendship,1375805572 +184862,2329,gangs,1384895804 +184862,2329,heartbreaking,1360394714 +184862,2329,Neo-Nazis,1254516757 +184862,2329,Nudity (Topless),1270445280 +184862,2329,powerful ending,1262121906 +184862,2329,prison,1169130179 +184862,2329,racism,1164632338 +184862,2329,skinhead,1267466919 +184862,2329,thuggery,1248925584 +184862,2329,violence,1266535053 +184862,2330,competition,1269652188 +184862,2330,contest,1255897943 +184862,2330,deadpan,1267471352 +184862,2330,documentary,1269652215 +184862,2330,DOWN ON THEIR LUCK,1270444456 +184862,2330,endurance,1255897945 +184862,2330,humorous,1255897946 +184862,2330,matter-of-fact,1346028885 +184862,2330,PG,1213819163 +184862,2330,PG:some brief language,1416518819 +184862,2330,S.R. Bindler,1388641458 +184862,2330,SMALL-TOWN LIFE,1181364070 +184862,2330,Texas,1255897957 +184862,2330,trucks,1166856325 +184862,2330,wry,1255897953 +184862,2336,Biography,1311818623 +184862,2336,British,1354660159 +184862,2336,British History,1366727582 +184862,2348,bio,1142594851 +184862,2348,NYC,1142594851 +184862,2348,punk rock,1142594851 +184862,2349,Criterion,1360102317 +184862,2349,prostitution,1209643435 +184862,2353,Baltimore,1273794834 +184862,2353,corruption,1190953674 +184862,2353,espionage,1273794851 +184862,2353,Jerry Bruckheimer,1273794839 +184862,2353,R,1190951862 +184862,2353,R:language,1191012633 +184862,2353,R:violence,1191012634 +184862,2353,scope,1191012666 +184862,2353,surveillance,1190952637 +184862,2353,Touchstone,1191012634 +184862,2353,Washington DC,1190953752 +184862,2391,Oscar Nominee: Adapted Screenplay,1208226599 +184862,2393,adapted from:TV series,1352841432 +184862,2393,aliens,1352823018 +184862,2393,franchise,1193949498 +184862,2393,noise in space,1190603635 +184862,2393,space,1444060717 +184862,2393,Star Trek,1148574279 +184862,2395,Bill Murray,1280603551 +184862,2407,aliens,1260512791 +184862,2407,Brian Dennehy,1260512805 +184862,2407,Hume Cronyn,1260512809 +184862,2407,Jessica Tandy,1260512812 +184862,2407,Nudity (Rear),1260512821 +184862,2407,old age,1260512825 +184862,2407,Oscar (Best Supporting Actor),1260512882 +184862,2407,Ron Howard,1260512843 +184862,2407,soft,1260512853 +184862,2407,Spherical Blow-Up,1260512849 +184862,2407,Steve Guttenberg,1260512883 +184862,2408,sequel,1253292232 +184862,2410,boxing,1174607670 +184862,2410,franchise,1174607701 +184862,2410,Los Angeles,1174608228 +184862,2410,New York City,1174608229 +184862,2410,Philadelphia,1174608229 +184862,2410,rematch,1174608229 +184862,2410,sports,1174607683 +184862,2410,underdog,1174608229 +184862,2420,80's classic,1352223910 +184862,2422,coercion,1248926491 +184862,2422,competition,1248926493 +184862,2422,horticulture,1156795613 +184862,2422,John G. Avildsen,1265212901 +184862,2422,karate,1156795613 +184862,2422,Los Angeles,1248926497 +184862,2422,martial arts,1248926523 +184862,2422,mentor,1248926518 +184862,2422,nostalgia,1266533943 +184862,2422,Pat Morita,1272055202 +184862,2422,Razzie nominee: worst actor,1248926502 +184862,2422,Seen 2006,1158274648 +184862,2422,sequel,1248926513 +184862,2422,small business,1161322563 +184862,2422,veterans,1156795613 +184862,2424,bookshop,1204637833 +184862,2424,Romance,1432599048 +184862,2427,Oscar Nominee: Adapted Screenplay,1208226635 +184862,2455,body horror,1432595695 +184862,2457,Jinni Top Pick,1418687301 +184862,2463,Bette Midler,1320122480 +184862,2471,Aborigines,1266533915 +184862,2471,Australia,1248926465 +184862,2471,New York City,1145167038 +184862,2473,C. Thomas Howell,1280561323 +184862,2502,satire,1452762492 +184862,2502,workplace,1204056665 +184862,2511,Los Angeles,1152213186 +184862,2511,Philip Marlowe,1152213135 +184862,2511,Raymond Chandler,1152213231 +184862,2512,19th century,1257135927 +184862,2512,Hokaido,1171663767 +184862,2512,Japan,1150986689 +184862,2512,Ken Ogata,1269698608 +184862,2512,remake,1179710888 +184862,2512,village,1257131664 +184862,2541,high school,1154069270 +184862,2542,British,1280817218 +184862,2542,Edgar Award (Best Motion Picture),1281279113 +184862,2542,stylish,1432596620 +184862,2549,PG-13:sci-fi action violence,1366655022 +184862,2571,alternate reality,1388726015 +184862,2571,alternate universe,1259946214 +184862,2571,computers,1259946215 +184862,2571,dystopia,1259946217 +184862,2571,martial arts,1259946218 +184862,2571,savior,1259946220 +184862,2571,sci-fi,1432595458 +184862,2571,virtual reality,1259946222 +184862,2596,drugs,1166028143 +184862,2596,Matthew Lillard,1257137262 +184862,2596,punk,1273814296 +184862,2596,salt lake city,1264275468 +184862,2599,dark comedy,1145580800 +184862,2599,Matthew Broderick,1280603498 +184862,2599,teen,1165680614 +184862,2616,70mm blowup,1199890669 +184862,2622,adapted from:play,1280812259 +184862,2622,Fantasy,1360102508 +184862,2622,playwright:Shakespeare,1280812263 +184862,2628,desert,1366218215 +184862,2628,George Lucas,1252615385 +184862,2628,Jar Jar Binks,1252615395 +184862,2628,Oscar Nominee: Sound Effects Editing,1179719440 +184862,2628,prequel,1150465396 +184862,2628,Samuel L. Jackson,1276618168 +184862,2628,Star Wars,1252615398 +184862,2640,adapted from:comic,1280601170 +184862,2641,adapted from:comic,1280601151 +184862,2642,70mm blowup,1366662810 +184862,2642,Christopher Reeve,1280601129 +184862,2642,superhero,1280601117 +184862,2671,romance,1432599070 +184862,2687,2D Disney Animation,1371321510 +184862,2690,adapted from:play,1280812600 +184862,2690,British,1307772106 +184862,2690,playwright:Oscar Wilde,1280812604 +184862,2692,alternate endings,1280600935 +184862,2693,celebrities,1162501845 +184862,2693,costumes,1162501845 +184862,2693,dentist,1162501845 +184862,2693,geeks,1162501845 +184862,2693,quirky,1202104094 +184862,2693,Star Trek,1162501713 +184862,2693,television,1162501845 +184862,2694,delivery boy,1366681748 +184862,2712,adapted from:book,1272001646 +184862,2712,atmospheric,1272000913 +184862,2712,author:Arthur Schnitzler,1272001671 +184862,2712,Christmas,1306612910 +184862,2712,deliberate,1272000962 +184862,2712,disturbing,1366222840 +184862,2712,doctors,1272001277 +184862,2712,dreamlike,1278262962 +184862,2712,drug use,1272001441 +184862,2712,enigmatic,1272000940 +184862,2712,laughter,1272001552 +184862,2712,mansion,1272001441 +184862,2712,marriage,1272001476 +184862,2712,mask,1272001277 +184862,2712,New York City,1272000943 +184862,2712,Nicole Kidman,1272000897 +184862,2712,Nudity (Full Frontal - Notable),1272000968 +184862,2712,Nudity (Full Frontal),1272000949 +184862,2712,orgy,1272001277 +184862,2712,paranoia,1272001508 +184862,2712,R,1272001833 +184862,2712,R:language,1272001833 +184862,2712,R:nudity,1272001833 +184862,2712,R:some drug-related material,1272001833 +184862,2712,R:strong sexual content,1272001833 +184862,2712,secret societies,1272001569 +184862,2712,sexual,1272000927 +184862,2712,sexual tension,1272001441 +184862,2712,sexuality,1272000977 +184862,2712,Stanley Kubrick,1272000902 +184862,2712,Tom Cruise,1272000900 +184862,2712,toy store,1272001441 +184862,2712,voyeurism,1272000906 +184862,2712,wealth,1272001284 +184862,2716,70mm blowup,1320128514 +184862,2716,Bill Murray,1259945865 +184862,2724,Maryland,1180068899 +184862,2724,New Jersey,1180068650 +184862,2724,New York,1180068650 +184862,2724,scope,1180068899 +184862,2724,small town,1180068650 +184862,2724,softball,1204637653 +184862,2724,wedding,1180068650 +184862,2724,wedding gown,1432599021 +184862,2724,writer,1180068650 +184862,2726,black and white,1280844121 +184862,2726,put me to sleep,1157077744 +184862,2728,Stanley Kubrick,1452749280 +184862,2731,Best of Rotten Tomatoes: All Time,1370216338 +184862,2731,children,1203050832 +184862,2731,Criterion,1232825858 +184862,2731,cult,1416524493 +184862,2731,delinquent,1204057041 +184862,2731,France,1165090138 +184862,2731,imdb top 250,1202678298 +184862,2731,Janus 50,1182577941 +184862,2731,Paris,1211910505 +184862,2731,reflective,1208974184 +184862,2731,teacher student relationship,1207246412 +184862,2731,youth,1192573608 +184862,2732,Janus 50,1182598127 +184862,2734,adapted from:book,1307849696 +184862,2734,author:Paul Theroux,1307849711 +184862,2734,Central America,1179011911 +184862,2734,dysfunctional family,1179011566 +184862,2734,Maurice Jarre score,1179011567 +184862,2734,missionary,1179011566 +184862,2734,natives,1179011566 +184862,2734,obsession,1179011566 +184862,2734,rain forest,1179011566 +184862,2734,screenwriter:Paul Schrader,1307849727 +184862,2739,100 Essential Female Performances,1280841842 +184862,2752,acting,1153450461 +184862,2761,1950s,1302309947 +184862,2761,2D animation,1302309949 +184862,2761,adapted from:book,1302309990 +184862,2761,alien contact,1302311325 +184862,2761,author:Ted Hughes,1302309990 +184862,2761,beatnik,1302310189 +184862,2761,Bechdel Test:Fail,1302309936 +184862,2761,cold war,1302310031 +184862,2761,directorial debut,1302310034 +184862,2761,emotional,1302310037 +184862,2761,friendship,1302310314 +184862,2761,giant robots,1302310040 +184862,2761,Jennifer Aniston,1302310044 +184862,2761,junk,1302310166 +184862,2761,kids,1302310046 +184862,2761,Maine,1302310138 +184862,2761,mother-son relationship,1302311350 +184862,2761,paranoia,1302310311 +184862,2761,PG,1302317903 +184862,2761,PG:fantasy action,1302317903 +184862,2761,PG:mild language,1302317903 +184862,2761,screenwriter:Tim McCanlies,1302310014 +184862,2761,sculptor,1302310251 +184862,2761,Seen 2010,1302309920 +184862,2761,self-sacrifice,1302310064 +184862,2761,single mother,1302310217 +184862,2761,small town,1302310121 +184862,2761,Superman,1302310281 +184862,2761,Vin Diesel,1302310067 +184862,2762,Atmospheric,1248925401 +184862,2795,National Lampoon,1160695763 +184862,2797,AFI 100 (Laughs),1219950657 +184862,2797,being a kid again,1219950687 +184862,2797,carnival,1219950828 +184862,2797,Child as Adult,1219950650 +184862,2797,childhood flashback,1219950691 +184862,2797,children,1219950642 +184862,2797,grown up,1219950689 +184862,2797,New York,1219950644 +184862,2797,New York City,1219951439 +184862,2797,Oscar Nominee: Lead Actor,1219950907 +184862,2797,Oscar Nominee: Original Screenplay,1219950907 +184862,2797,PG,1219951439 +184862,2797,piano,1219950685 +184862,2797,switching places,1219950681 +184862,2797,toys,1219950653 +184862,2797,TV,1219950655 +184862,2797,wishes,1219950828 +184862,2803,John Grisham,1150395970 +184862,2804,1940s,1311835733 +184862,2804,adapted from:book,1302306960 +184862,2804,author:Jean Shephard,1302306972 +184862,2804,Christmas,1141943720 +184862,2804,christmas movie,1346041780 +184862,2804,classic,1141943718 +184862,2804,consumerism,1302307240 +184862,2804,screenwriter:Bob Clark,1302307012 +184862,2804,screenwriter:Jean Shephard,1302306987 +184862,2804,screenwriter:Leigh Brown,1302306999 +184862,2819,1970s,1139688369 +184862,2819,assassins,1139688418 +184862,2819,cia,1139688418 +184862,2819,conspiracy,1278261145 +184862,2819,Edgar Award (Best Motion Picture),1281120394 +184862,2819,nyc,1139688418 +184862,2819,Seen 2006,1139688371 +184862,2819,skullduggery,1139688418 +184862,2826,fantasy,1426543306 +184862,2826,Michael Crichton,1152213942 +184862,2826,Myth,1149268025 +184862,2843,Emir Kusturica,1268251813 +184862,2843,gypsy,1268251792 +184862,2843,wedding,1164475658 +184862,2852,Edgar Award (Best Motion Picture),1281244080 +184862,2858,bathtub,1366693077 +184862,2858,bittersweet,1324888024 +184862,2858,coming of age,1302546207 +184862,2858,dark comedy,1280591737 +184862,2858,drugs,1309972328 +184862,2858,irreverent,1311816998 +184862,2858,kevin spacey,1451886366 +184862,2858,loneliness,1384895694 +184862,2858,suburbia,1158879563 +184862,2858,thought-provoking,1416608093 +184862,2859,big suits,1137172507 +184862,2859,concert,1137172507 +184862,2859,Hollywood,1177827516 +184862,2859,MTV,1179013018 +184862,2872,adapted from:book,1388642305 +184862,2872,author:Thomas Malory,1388642305 +184862,2872,England,1171050900 +184862,2872,King Arthur,1171050898 +184862,2872,medieval,1426543342 +184862,2872,Myth,1171050919 +184862,2872,screenwriter:John Boorman,1388642305 +184862,2872,screenwriter:Rospo Pallenberg,1388642305 +184862,2872,sword fight,1171050999 +184862,2872,wizards,1171050999 +184862,2890,anti-war,1320069751 +184862,2890,Gulf War,1416597668 +184862,2905,RatingZone top pick,1138393318 +184862,2906,infidelity,1161321708 +184862,2916,70mm blowup,1320127264 +184862,2916,Arnold Schwarzenegger,1432595483 +184862,2916,Philip K. Dick,1444060425 +184862,2918,comedy,1280561217 +184862,2918,PG-13,1193624530 +184862,2920,19th century,1334546079 +184862,2920,atmospheric,1334546090 +184862,2920,backstage,1334546077 +184862,2920,duel,1150987608 +184862,2920,love triangle,1139034604 +184862,2920,mimes,1139034604 +184862,2920,Oscar Nominee: Original Screenplay,1171560795 +184862,2920,Paris,1139034604 +184862,2920,Pathe,1175431652 +184862,2920,Shakespeare,1149835109 +184862,2920,theatres,1139034604 +184862,2925,menacing,1202676617 +184862,2926,1960s,1148230276 +184862,2926,Baltimore,1257178617 +184862,2927,FilmAffinity top pick,1276701603 +184862,2927,Janus 50,1182577813 +184862,2935,AFI 100 (Laughs),1202676802 +184862,2935,classic,1148582433 +184862,2935,Criterion,1280843635 +184862,2935,farce,1153536305 +184862,2935,ocean liner,1154446037 +184862,2935,screwball,1150987164 +184862,2947,gadget car,1212083282 +184862,2947,series:James Bond,1213813839 +184862,2948,series:James Bond,1213813861 +184862,2949,series:James Bond,1213813879 +184862,2959,adapted from:book,1232824372 +184862,2959,atmospheric,1219951802 +184862,2959,author:Chuck Palahniuk,1248925561 +184862,2959,Brad Pitt,1254516732 +184862,2959,classic,1320116760 +184862,2959,confrontational,1365363725 +184862,2959,consumerism,1248925564 +184862,2959,dark comedy,1267466852 +184862,2959,disturbing,1270445229 +184862,2959,Edward Norton,1259946239 +184862,2959,imdb top 250,1302334203 +184862,2959,mental illness,1164632279 +184862,2959,Nudity (Topless - Brief),1306606238 +184862,2959,Nudity (Topless),1362321557 +184862,2959,Oscar Nominee: Sound Effects Editing,1179719370 +184862,2959,philosophy,1248925568 +184862,2959,psychological,1364709349 +184862,2959,psychology,1262121888 +184862,2959,quirky,1384811775 +184862,2959,sabotage,1248925569 +184862,2959,schizophrenia,1388722981 +184862,2959,screenwriter:Jim Uhls,1352139966 +184862,2959,surreal,1248925571 +184862,2959,twist ending,1266534961 +184862,2959,violence,1145160127 +184862,2973,adultery,1307847739 +184862,2973,Woody Allen,1416608321 +184862,2976,Paul Schrader screenplay,1179011712 +184862,2983,Edgar Award (Best Foreign Film),1281119419 +184862,2985,android(s)/cyborg(s),1368383781 +184862,2985,cyborgs,1158271810 +184862,2985,Detroit,1158271947 +184862,2985,dystopia,1158271824 +184862,2985,police,1158271947 +184862,2985,super-hero,1158271837 +184862,2987,animation,1259945711 +184862,2987,Cheesy,1259945729 +184862,2987,Kathleen Turner,1259945732 +184862,2987,live action/animation,1259945740 +184862,2987,Oscar (Best Editing),1259945805 +184862,2987,Oscar (Best Effects - Sound Effects Editing),1259945799 +184862,2987,Oscar (Best Effects - Visual Effects),1259945803 +184862,2987,private detective,1259945810 +184862,2987,rabbits,1259945812 +184862,2987,Robert Zemeckis,1259945814 +184862,2987,Saturn Award (Best Director),1259945831 +184862,2987,Saturn Award (Best Fantasy Film),1259945833 +184862,2987,Saturn Award (Best Special Effects),1259945836 +184862,2987,scary,1259945839 +184862,2991,author:Ian Fleming,1212081537 +184862,2997,black comedy,1310047898 +184862,2997,Criterion,1365363768 +184862,2997,cult film,1310048185 +184862,2997,dark comedy,1311817531 +184862,2997,head movie,1372794486 +184862,2997,mindfuck,1384812898 +184862,2997,screenwriter:Charlie Kaufman,1372794508 +184862,2997,seen more than once,1170081371 +184862,2997,surreal,1416608213 +184862,2997,surrealism,1249005806 +184862,3000,anime,1148224995 +184862,3000,anti-war,1249004135 +184862,3000,atmospheric,1219972192 +184862,3000,fantasy world,1452759733 +184862,3000,Hayao Miyazaki,1249004140 +184862,3000,Japan,1139069767 +184862,3000,Studio Ghibli,1256453778 +184862,3000,wilderness,1155318367 +184862,3007,Chris Smith,1388641381 +184862,3008,apocalypse,1254013589 +184862,3008,atmospheric,1307849809 +184862,3008,Canada,1152932581 +184862,3008,Don McKellar,1311874598 +184862,3008,end of the world,1254013598 +184862,3008,ensemble cast,1152932584 +184862,3008,multiple storylines,1152932578 +184862,3008,romance,1169764982 +184862,3018,adapted from:short story,1357928794 +184862,3018,author:H. P. Lovecraft,1357928684 +184862,3018,tense,1432595879 +184862,3019,addiction,1368411907 +184862,3019,drug abuse,1388641318 +184862,3019,drugs,1416625124 +184862,3020,Edgar Award (Best Motion Picture),1281245321 +184862,3030,Akira Kurosawa,1444764499 +184862,3030,atmospheric,1248926014 +184862,3030,Japan,1232824961 +184862,3030,Oscar Nominee: Costume Design,1157687410 +184862,3030,samurai,1151072134 +184862,3034,anthropomorphized animals,1152967967 +184862,3034,archery,1152967984 +184862,3034,classic,1255201330 +184862,3034,Disney,1143148908 +184862,3034,foxes,1255201340 +184862,3034,medieval,1416588671 +184862,3034,talking animals,1143148908 +184862,3039,class,1165682947 +184862,3039,Nudity (Topless - Notable),1169129295 +184862,3039,poverty,1160695867 +184862,3039,Wall Street,1166477827 +184862,3044,amnesia,1302396226 +184862,3045,AIDS,1178375744 +184862,3045,England,1180960633 +184862,3045,reunion,1161966788 +184862,3046,coming of age,1363460741 +184862,3052,controversial,1154154706 +184862,3052,jay and silent bob,1154154715 +184862,3052,Kevin Smith,1267470998 +184862,3052,Matt Damon,1452762446 +184862,3052,religion,1154154695 +184862,3052,satire,1154154711 +184862,3052,view askew,1154154697 +184862,3053,15th century,1200426118 +184862,3053,biographical,1200425580 +184862,3053,Europa Corp.,1200426118 +184862,3053,France,1200426117 +184862,3053,heresy,1200426118 +184862,3053,History,1200426118 +184862,3053,interrogation,1200426118 +184862,3053,murder,1200426118 +184862,3053,politics,1200426118 +184862,3053,R,1200426117 +184862,3053,R:language,1200426116 +184862,3053,R:rape,1200426118 +184862,3053,R:strong graphic battles,1200426118 +184862,3053,rape,1200426217 +184862,3053,Razzie nominee: worst actress,1200426118 +184862,3053,religion,1200426117 +184862,3053,scope,1200426118 +184862,3053,siege,1200426118 +184862,3053,violence,1200426118 +184862,3067,actors,1158877901 +184862,3067,Madrid,1158877901 +184862,3067,Spain,1158877901 +184862,3067,suicide attempt,1158877901 +184862,3071,inspirational,1416516898 +184862,3079,adapted from:book,1280812989 +184862,3079,author:Jane Austen,1280812992 +184862,3081,19th century,1362322201 +184862,3081,Depp and Burton,1202103971 +184862,3081,quirky,1215648510 +184862,3082,007,1146283755 +184862,3082,Bond,1161362936 +184862,3093,1900s,1158512036 +184862,3093,corporate greed,1158511961 +184862,3093,drugs,1158512036 +184862,3093,prostitution,1158511957 +184862,3093,revisionist western,1167340616 +184862,3093,saloon,1158511954 +184862,3093,Seen 2006,1158512462 +184862,3093,snow,1158511966 +184862,3093,Washington state,1158511953 +184862,3098,1930s,1270443599 +184862,3098,adapted from:book,1270445747 +184862,3098,author:Bernard Malamud,1270443693 +184862,3098,Barbara Hershey,1270443227 +184862,3098,Barry Levinson,1270443238 +184862,3098,baseball,1270443241 +184862,3098,FEMMES FATALES,1270443641 +184862,3098,Glenn Close,1270443246 +184862,3098,Kim Basinger,1270443229 +184862,3098,lightning,1270443599 +184862,3098,Oscar Nominee: Art Direction,1270443889 +184862,3098,Oscar Nominee: Cinematography,1270443919 +184862,3098,Oscar Nominee: Music - Original Score,1270443919 +184862,3098,Oscar Nominee: Supporting Actress,1270443889 +184862,3098,PG,1270444038 +184862,3098,Robert Duvall,1270443253 +184862,3098,Robert Redford,1270443256 +184862,3098,sappy,1270443259 +184862,3098,shooting,1270443654 +184862,3098,sports,1270443265 +184862,3098,Wilford Brimley,1270443269 +184862,3100,Brad Pitt,1280560962 +184862,3100,Robert Redford,1452767126 +184862,3101,adultery,1150397112 +184862,3101,cheating,1169128869 +184862,3101,Glenn Close,1432598161 +184862,3101,personality disorder,1151607247 +184862,3104,Arizona,1363461025 +184862,3105,adapted from:book,1372790928 +184862,3105,adapted from:true story,1372790928 +184862,3105,author:Oliver Sacks,1372790928 +184862,3105,dramatic,1452768319 +184862,3105,screenwriter:Steven Zaillian,1372790928 +184862,3107,70mm blowup,1366734132 +184862,3111,AFI 100 (Cheers),1280841800 +184862,3111,Oscar (Best Actress),1309974129 +184862,3114,animation,1266534312 +184862,3114,computer animation,1443063100 +184862,3114,Disney,1416588574 +184862,3114,Pixar,1157113862 +184862,3134,Janus 50,1182577960 +184862,3142,black and white,1372794147 +184862,3142,concert,1215545231 +184862,3158,historical,1149857794 +184862,3175,Alan Rickman,1320128437 +184862,3175,aliens,1357939270 +184862,3176,1950s,1276529682 +184862,3176,adapted from:book,1368383454 +184862,3176,AMERICANS ABROAD,1276529694 +184862,3176,author:Patricia Highsmith,1210345716 +184862,3176,boring,1276529696 +184862,3176,Cate Blanchett,1368383468 +184862,3176,co-production,1210345716 +184862,3176,creepy,1384889626 +184862,3176,director-screenwriter,1210345716 +184862,3176,disturbing,1276529751 +184862,3176,Europe,1276529699 +184862,3176,fraud,1276529701 +184862,3176,impostor,1276529702 +184862,3176,italy,1276529704 +184862,3176,murder,1210344234 +184862,3176,Naples,1210345716 +184862,3176,New York City,1210345716 +184862,3176,obsession,1210345162 +184862,3176,Oscar Nominee: Adapted Screenplay,1210345716 +184862,3176,Oscar Nominee: Art Direction,1210345716 +184862,3176,Oscar Nominee: Costume Design,1210345716 +184862,3176,Oscar Nominee: Music - Original Score,1210345716 +184862,3176,Oscar Nominee: Supporting Actor,1210345716 +184862,3176,playboy,1276529716 +184862,3176,psychology,1276529717 +184862,3176,R,1210345716 +184862,3176,R:brief nudity,1210345716 +184862,3176,R:language,1210345716 +184862,3176,R:violence,1210345716 +184862,3176,Rome,1276529720 +184862,3176,secrets,1210344270 +184862,3176,self-hatred,1276529723 +184862,3176,serial killer,1276529726 +184862,3176,snob,1276529728 +184862,3176,Tom Ripley,1210345162 +184862,3176,upper class,1210345162 +184862,3176,Venice,1210345716 +184862,3176,yacht,1210345162 +184862,3183,Religion,1205789290 +184862,3210,Jinni Top Pick,1369027342 +184862,3211,Australia,1181367461 +184862,3219,Melanie Griffith,1432598092 +184862,3232,FilmAffinity top pick,1273992418 +184862,3243,California,1154705306 +184862,3243,caveman,1154705306 +184862,3243,high school,1154705306 +184862,3243,Pauly Shore,1280561298 +184862,3249,Rebecca De Mornay,1432598123 +184862,3252,Al Pacino,1280841936 +184862,3252,Oscar (Best Actor),1452767979 +184862,3252,Oscar Nominee: Adapted Screenplay,1452768101 +184862,3252,Oscar Nominee: Best Picture,1452768056 +184862,3252,Oscar Nominee: Director,1452768047 +184862,3253,adapted from:TV series,1264275390 +184862,3253,comedy,1273814184 +184862,3253,teen,1166028107 +184862,3256,70mm blowup,1384718135 +184862,3258,Bruce Willis,1262725416 +184862,3260,70mm blowup,1334546310 +184862,3260,adapted from:book,1307848806 +184862,3260,author:E. M. Forster,1307848824 +184862,3260,screenwriter:Ruth Prawer Jhabvala,1307848861 +184862,3262,David Lynch,1273789366 +184862,3262,drugs,1146318593 +184862,3262,Notable Nudity,1156635401 +184862,3262,Washington state,1146318566 +184862,3266,belgian,1384812830 +184862,3266,belgium,1179700895 +184862,3266,black and white,1179710832 +184862,3266,black comedy,1179700895 +184862,3266,brussels,1179700895 +184862,3266,dark comedy,1275022357 +184862,3266,fake documentary,1179700895 +184862,3266,murder,1179700895 +184862,3266,NC-17,1179710832 +184862,3266,rape,1179700895 +184862,3267,crime,1363460901 +184862,3270,chick flick,1360424789 +184862,3270,sport:figure skating,1213818823 +184862,3274,housing,1143149312 +184862,3274,rent control,1143149312 +184862,3274,room-mate from hell,1143149312 +184862,3274,software developers,1143149312 +184862,3274,suspense,1432598335 +184862,3296,teacher changing lives,1416516833 +184862,3296,teachers,1143149054 +184862,3307,100 Greatest Movies,1388721289 +184862,3307,AFI 100,1388721291 +184862,3307,AFI 100 (Cheers),1388721292 +184862,3307,AFI 100 (Laughs),1388721294 +184862,3307,beautiful,1388721297 +184862,3307,Bechdel Test:Pass,1388721396 +184862,3307,bittersweet,1388721299 +184862,3307,blind woman,1388721711 +184862,3307,blindness,1388721301 +184862,3307,boxing,1388721882 +184862,3307,Charlie Chaplin,1388721302 +184862,3307,classic,1388721304 +184862,3307,comedy,1388721307 +184862,3307,director-screenwriter,1388721554 +184862,3307,FilmAffinity top pick,1162614510 +184862,3307,friendship,1388721787 +184862,3307,funny,1388721309 +184862,3307,G,1388721966 +184862,3307,imdb top 250,1388721332 +184862,3307,love,1388721649 +184862,3307,marly horse,1388721780 +184862,3307,mistaken identity,1388721815 +184862,3307,National Film Registry,1388721337 +184862,3307,platonic love,1388721825 +184862,3307,sad,1388721341 +184862,3307,Seen 2014,1388721411 +184862,3307,silent movie,1388721347 +184862,3307,slapstick,1388721357 +184862,3307,stylized,1388721369 +184862,3307,suicide attempt,1388721882 +184862,3307,sweet,1388721374 +184862,3307,whistle,1388721664 +184862,3317,adapted from:book,1310088547 +184862,3317,adultery,1310088550 +184862,3317,author:Michael Chabon,1310088553 +184862,3317,cars,1307850133 +184862,3317,college,1310088557 +184862,3317,coming of age,1280560659 +184862,3317,Gay,1451886341 +184862,3317,Michael Douglas,1416608146 +184862,3317,screenwriter:Steve Kloves,1310088552 +184862,3342,Peter Gabriel music,1179720956 +184862,3347,Alaska,1264274410 +184862,3347,biologists,1264274413 +184862,3347,Brian Dennehy,1264274421 +184862,3347,Oscar Nominee: Sound,1311835632 +184862,3347,sad but good,1264274415 +184862,3347,visually appealing,1264274460 +184862,3347,wilderness,1264274416 +184862,3347,wolves,1264274417 +184862,3359,college,1159568511 +184862,3359,cycling,1159568518 +184862,3359,Indiana,1159568503 +184862,3359,sports,1159568528 +184862,3360,Yahoo Top Pick,1252633398 +184862,3361,AFI 100 (Laughs),1302546813 +184862,3361,Kevin Costner,1270444117 +184862,3362,delivery boy,1366681685 +184862,3362,Rate Your Music top pick,1385229837 +184862,3364,Edgar Award (Best Motion Picture),1280984773 +184862,3365,netflix top pick,1167446547 +184862,3369,Edgar Award (Best Foreign Film),1281119227 +184862,3374,1900s,1146283698 +184862,3374,african american,1146283698 +184862,3374,family,1146283877 +184862,3374,Gullah,1146283698 +184862,3374,independent film,1146283877 +184862,3374,island,1146283698 +184862,3379,anti-war,1171662972 +184862,3379,Australia,1171662972 +184862,3379,based on a book,1171662972 +184862,3379,death,1171662858 +184862,3379,Melbourne,1171663144 +184862,3379,nuclear,1171662853 +184862,3379,San Francisco,1171662972 +184862,3379,submarine,1171662972 +184862,3379,war,1171662856 +184862,3386,conspiracy theory,1352848059 +184862,3394,alcohol abuse,1384894654 +184862,3396,muppets,1161907146 +184862,3396,road trip,1161907151 +184862,3397,muppets,1161907291 +184862,3408,AFI 100 (Cheers),1372791023 +184862,3421,1960s,1169129222 +184862,3421,AFI 100 (Laughs),1320122763 +184862,3421,AFI 100 (Movie Quotes),1370211014 +184862,3421,college,1160695795 +184862,3421,farce,1165682892 +184862,3421,National Lampoon,1166477639 +184862,3422,african american,1210962493 +184862,3424,AFI 100,1324888161 +184862,3424,Atmospheric,1352140437 +184862,3424,Brooklyn,1366681871 +184862,3424,heat wave,1205721244 +184862,3424,racism,1163140068 +184862,3425,music,1171555240 +184862,3435,adapted from:book,1219959526 +184862,3435,adultery,1363459095 +184862,3435,AFI 100,1248964758 +184862,3435,atmospheric,1265185355 +184862,3435,author:James M. Cain,1219959526 +184862,3435,black and white,1384813566 +184862,3435,classic,1165546978 +184862,3435,cynical,1248964765 +184862,3435,Emerson must see,1210961429 +184862,3435,film noir,1262027931 +184862,3435,insurance,1165546978 +184862,3435,Los Angeles,1165546978 +184862,3435,murder,1280843843 +184862,3435,National Film Registry,1248964769 +184862,3435,noir thriller,1432586864 +184862,3435,Oscar Nominee: Cinematography,1248964770 +184862,3435,Oscar Nominee: Director,1248964772 +184862,3435,Oscar Nominee: Lead Actress,1248964773 +184862,3435,stylized,1203052820 +184862,3435,thriller,1192596818 +184862,3438,Golden Harvest,1183054837 +184862,3440,18th century,1199571182 +184862,3440,adapted from:comic,1199570807 +184862,3440,comic book,1199570811 +184862,3440,Golden Harvest,1199571182 +184862,3440,magic,1199571182 +184862,3440,martial arts,1199571182 +184862,3440,ninja,1199571182 +184862,3440,PG,1199571182 +184862,3440,sequel,1199571182 +184862,3440,sequel:worse,1199571182 +184862,3440,talking animals,1199618543 +184862,3440,time travel,1199571182 +184862,3440,turtle,1199571182 +184862,3470,FilmAffinity top pick,1160792979 +184862,3481,Jack Black,1280561096 +184862,3499,adapted from:book,1280587027 +184862,3499,author:Stephen King,1280587035 +184862,3499,claustrophobic,1352223515 +184862,3499,drama,1384816332 +184862,3499,suspenseful,1443073867 +184862,3503,adapted from:book,1388723185 +184862,3503,author:Stanislaw Lem,1388723185 +184862,3503,director-screenwriter,1388723185 +184862,3503,screenwriter:Fridrikh Gorenshteyn,1388723185 +184862,3526,comedy,1379973494 +184862,3527,aliens,1444060352 +184862,3527,Arnold Schwarzenegger,1432595530 +184862,3536,Ben Stiller,1302390288 +184862,3536,Edward Norton,1360563627 +184862,3536,Interesting,1360564786 +184862,3538,1970s,1187217074 +184862,3538,adapted from:play,1187217074 +184862,3538,British,1187216690 +184862,3538,cultural clash,1187216682 +184862,3538,FilmFour,1187217074 +184862,3538,homosexuality,1187217074 +184862,3538,immigrants,1187217074 +184862,3538,R,1187217074 +184862,3547,biopic,1166854954 +184862,3547,gay,1165890884 +184862,3547,playwright,1232745648 +184862,3552,AFI 100 (Laughs),1320122418 +184862,3552,golf,1160695784 +184862,3552,sports,1166477732 +184862,3552,stoner movie,1165682916 +184862,3552,teen,1169129259 +184862,3578,easily confused with other movie(s) (title),1366734210 +184862,3578,elegiac,1370211125 +184862,3578,Rome,1452749345 +184862,3578,tigers,1170388821 +184862,3579,Maurice Jarre score,1179011770 +184862,3594,ballet,1258389737 +184862,3594,chick flick,1258389744 +184862,3594,dance,1258389748 +184862,3594,Nicholas Hytner,1258389756 +184862,3594,Romance,1174609267 +184862,3594,teen,1258389750 +184862,3598,adapted from:play,1280812068 +184862,3598,playwright:Shakespeare,1280812094 +184862,3608,adapted from:TV series,1256487510 +184862,3622,Russia,1155369274 +184862,3623,undressing,1355294410 +184862,3635,series:James Bond,1213813898 +184862,3654,70mm blowup,1320123236 +184862,3654,acting,1365367982 +184862,3671,busby berkeley,1169129180 +184862,3671,infantile,1166477617 +184862,3676,atmospheric,1306605773 +184862,3677,70mm,1170390774 +184862,3677,Arizona,1272053917 +184862,3677,Auschwitz,1272053919 +184862,3677,Cambodia,1184866176 +184862,3677,cinematographer-director,1174226821 +184862,3677,destruction,1179013229 +184862,3677,divine vs. profane,1169130413 +184862,3677,divine vs. worldly,1272053964 +184862,3677,environment,1157695540 +184862,3677,Kuwait,1272053927 +184862,3677,landscape,1145679878 +184862,3677,monkey,1184272998 +184862,3677,mysticism,1182459401 +184862,3677,no dialogue,1158980115 +184862,3677,poverty,1158980171 +184862,3677,religion,1168149488 +184862,3677,scenic,1201646841 +184862,3677,time-lapse,1183059096 +184862,3677,Utah,1187218005 +184862,3686,70mm blowup,1183665462 +184862,3686,afterlife,1360399415 +184862,3686,Chicago,1183664665 +184862,3686,medical school,1183664665 +184862,3686,Oscar Nominee: Sound Effects Editing,1183664742 +184862,3686,promiscuity,1183664665 +184862,3686,R,1183665461 +184862,3686,scope,1183665462 +184862,3686,video camera,1183664665 +184862,3697,70mm blowup,1205720344 +184862,3697,aliens,1205720356 +184862,3697,gangs,1205721076 +184862,3697,heat wave,1205721076 +184862,3697,hunting,1205720352 +184862,3697,invisibility,1205721076 +184862,3697,Los Angeles,1205721075 +184862,3697,monster,1205721076 +184862,3697,Nudity (Full Frontal - Brief),1205720363 +184862,3697,police,1205721076 +184862,3697,R,1205721075 +184862,3697,sequel,1205721076 +184862,3697,sequel:better,1205721075 +184862,3697,subway,1205721075 +184862,3697,Twentieth Century-Fox,1205721076 +184862,3697,voodoo,1205721076 +184862,3703,post-apocalyptic,1444060257 +184862,3704,crappy sequel,1152552987 +184862,3712,television,1207246831 +184862,3715,adapted from:book series,1360564656 +184862,3715,author:Lawrence Block,1360564656 +184862,3715,screenwriter:Hugh Wilson,1360564671 +184862,3715,screenwriter:Jeph Loeb,1360564669 +184862,3715,screenwriter:Matthew Weisman,1360564668 +184862,3716,drugs,1167340079 +184862,3719,adapted from:play,1252615602 +184862,3719,Alicia Silverstone,1252615620 +184862,3719,Kenneth Branagh,1252615624 +184862,3719,Natascha McElhon,1252615628 +184862,3719,playwright:Shakespeare,1252615610 +184862,3719,Shakespeare,1158418182 +184862,3723,Glenn Close,1280812163 +184862,3728,atmospheric,1302401135 +184862,3728,Bill Paxton,1309970415 +184862,3728,Carl Franklin,1345995844 +184862,3731,Edgar Award (Best Motion Picture),1281243620 +184862,3735,AFI 100 (Cheers),1177191791 +184862,3742,Classic,1213803752 +184862,3742,mutiny,1202676441 +184862,3742,political,1232810781 +184862,3742,Propaganda,1253293101 +184862,3751,Aardman,1372791898 +184862,3751,Aardman studios,1372791903 +184862,3751,stop motion,1152968752 +184862,3773,african american,1275026159 +184862,3773,competition,1275026256 +184862,3773,disc jockey (scene),1275026224 +184862,3773,dogs,1275026303 +184862,3773,high school,1275026132 +184862,3773,hip hop,1275025130 +184862,3773,Martin Lawrence,1275025135 +184862,3773,police,1275026193 +184862,3773,R,1275026504 +184862,3773,Reginald Hudlin,1275025137 +184862,3777,controversial,1169763468 +184862,3777,necrophilia,1169763468 +184862,3791,coming-of-age,1255200250 +184862,3793,adapted from:comic,1253900114 +184862,3793,comic book,1280601276 +184862,3793,ensemble cast,1366656565 +184862,3793,genetics,1253900155 +184862,3793,marvel,1164479203 +184862,3793,PG-13,1366654660 +184862,3793,PG-13:sci-fi action violence,1366654661 +184862,3793,super-hero,1137175755 +184862,3819,charming,1254443741 +184862,3819,food,1311817887 +184862,3844,Southern theme,1203050143 +184862,3847,nazis,1169763517 +184862,3852,Donal Logue,1280561127 +184862,3873,AFI 100 (Laughs),1370210976 +184862,3873,Jane Fonda,1269666024 +184862,3873,Oscar (Best Actor),1215543315 +184862,3893,Chris Rock,1280603457 +184862,3897,1970s,1302546368 +184862,3911,absurd,1310089526 +184862,3914,Jinni Top Pick,1269727925 +184862,3925,Yahoo Top Pick,1139599213 +184862,3948,Ben Stiller,1302395967 +184862,3949,adapted from:book,1416603249 +184862,3949,addiction,1416603150 +184862,3949,atmospheric,1416603175 +184862,3949,author:Hubert Selby Jr.,1416603287 +184862,3949,Bechdel Test:Pass,1416597835 +184862,3949,boyfriend girlfriend relationship,1416603742 +184862,3949,Brooklyn,1416603482 +184862,3949,consensual sex,1416603583 +184862,3949,Criticker top pick,1268586321 +184862,3949,dark,1416603148 +184862,3949,depressing,1416603132 +184862,3949,disturbing,1416603138 +184862,3949,dream,1416603534 +184862,3949,drugs,1416603129 +184862,3949,emotional,1416603181 +184862,3949,loneliness,1416603167 +184862,3949,New York City,1416603489 +184862,3949,Nudity (Full Frontal - Notable),1416603688 +184862,3949,Oscar Nominee: Lead Actress,1416603390 +184862,3949,psychology,1416603136 +184862,3949,R,1416607951 +184862,3949,R:graphic sexuality,1416607977 +184862,3949,R:intense depiction of drug addiction,1416607968 +184862,3949,R:some violence,1416607992 +184862,3949,R:strong language,1416607986 +184862,3949,Seen 2014,1416597766 +184862,3949,sex,1416603626 +184862,3949,snorting heroin,1416603702 +184862,3949,social commentary,1416603163 +184862,3949,television,1416603578 +184862,3949,visually appealing,1443073481 +184862,3952,politics,1147480691 +184862,3952,Vice President,1147480691 +184862,3952,Washington DC,1147480691 +184862,3964,Basil Rathbone,1372791681 +184862,3964,Clyde Geronimi,1372791678 +184862,3964,Disney,1169128514 +184862,3968,DEAL WITH THE DEVIL,1175841154 +184862,3968,Los Angeles,1175841154 +184862,3968,PG-13,1175841189 +184862,3968,remake,1175841154 +184862,3968,scope,1202661719 +184862,3972,1920s,1183048189 +184862,3972,drunkenness,1183048189 +184862,3972,Golden Harvest,1183048189 +184862,3972,kung fu,1183047915 +184862,3972,martial arts,1183047903 +184862,3972,R,1183048189 +184862,3972,scope,1183048189 +184862,3972,sequel,1183048189 +184862,3972,slapstick,1183048189 +184862,3972,steel mill,1183048189 +184862,3972,train,1183048189 +184862,3972,Wong Fei-Hong,1183048189 +184862,3983,MoviePig Top Pick,1172292129 +184862,3989,1970s,1168148541 +184862,3989,anti-Semitism,1157695306 +184862,3989,archive footage,1215550884 +184862,3989,Germany,1173405727 +184862,3989,hostage,1177827579 +184862,3989,Islam,1263450520 +184862,3989,Judaism,1276534091 +184862,3989,massacre,1264274605 +184862,3989,Michael Douglas,1253293446 +184862,3989,Munich,1173405727 +184862,3989,Olympics,1263450485 +184862,3989,Oscar (Best Documentary Feature),1205773688 +184862,3989,palestine,1184272917 +184862,3989,police,1179013107 +184862,3989,R,1187217829 +184862,3989,R:some graphic violent images,1213803518 +184862,3989,religion,1254012077 +184862,3989,terrorism,1156388336 +184862,3989,true story,1147480769 +184862,3993,anti-authoritarian,1384895216 +184862,3993,asylum,1384895552 +184862,3996,atmospheric,1345994340 +184862,3997,like-i-like top pick,1163259523 +184862,4005,007,1181018183 +184862,4005,007 (series),1368411716 +184862,4005,Austria,1181018837 +184862,4005,author:Ian Fleming,1212081577 +184862,4005,cellos,1181018327 +184862,4005,England,1181019748 +184862,4005,franchise,1181018173 +184862,4005,James Bond,1181018175 +184862,4005,Morocco,1181018837 +184862,4005,murder,1181018179 +184862,4005,pipeline,1181018327 +184862,4005,scope,1181020550 +184862,4005,spies,1181018327 +184862,4011,Bechdel Test:Fail,1280815512 +184862,4011,Benicio Del Toro,1280815632 +184862,4011,boxing,1280815633 +184862,4011,Brad Pitt,1280815635 +184862,4011,british,1280815639 +184862,4011,butcher knife,1280816951 +184862,4011,comedy,1280815645 +184862,4011,cynical,1280815669 +184862,4011,dark comedy,1324926007 +184862,4011,Desert Eagle .50,1280816928 +184862,4011,dialogue,1280815683 +184862,4011,dogs,1280816889 +184862,4011,England,1346019382 +184862,4011,ensemble cast,1362323099 +184862,4011,fighting,1280815672 +184862,4011,frantic,1280815693 +184862,4011,goofy,1280815687 +184862,4011,Guy Ritchie,1280815649 +184862,4011,gypsy accent,1280815652 +184862,4011,heist,1280816904 +184862,4011,Hilarious,1432597156 +184862,4011,narrated,1280817112 +184862,4011,pigs,1280816979 +184862,4011,R,1280815835 +184862,4011,R:language,1280815835 +184862,4011,R:some nudity,1280815835 +184862,4011,R:strong violence,1280815835 +184862,4011,Seen 2010,1280815511 +184862,4011,shot in the chest,1280817055 +184862,4011,shot in the face,1280817032 +184862,4011,suicide,1280817004 +184862,4011,tattoo,1280817087 +184862,4011,twist ending,1280815656 +184862,4016,Disney,1416588646 +184862,4020,psychic character,1432598002 +184862,4023,new jersey,1163089781 +184862,4023,New York City,1163089781 +184862,4024,adapted from:book,1307849584 +184862,4024,author:Edith Wharton,1307849584 +184862,4024,screenwriter:Terence Davies,1307849617 +184862,4027,1930s,1346041982 +184862,4027,bluegrass,1169130574 +184862,4027,Coen Brothers,1280561084 +184862,4034,confrontational,1352221778 +184862,4034,corruption,1368411375 +184862,4034,Criterion,1370215805 +184862,4034,drugs,1384813365 +184862,4034,Edgar Award (Best Motion Picture),1281279181 +184862,4037,con men,1280586382 +184862,4039,70mm blowup,1254514089 +184862,4039,adapted from:comic,1254514157 +184862,4039,adapted from:play,1254514157 +184862,4039,Albert Finney,1254514169 +184862,4039,Broadway,1254514174 +184862,4039,John Huston,1254514186 +184862,4039,unbearable,1254514192 +184862,4039,washing dishes,1452765926 +184862,4078,US President,1140202174 +184862,4085,Axel Foley,1160695848 +184862,4085,Hollywood,1166477858 +184862,4086,corruption,1168637439 +184862,4086,New Orleans,1168637349 +184862,4086,sexy,1168637441 +184862,4116,Los Angeles,1262717286 +184862,4117,World War II,1161361524 +184862,4128,vampires,1248968451 +184862,4144,100 Essential Female Performances,1248917955 +184862,4144,1960s,1160230139 +184862,4144,adultery,1360102818 +184862,4144,Angkor Wat,1160230139 +184862,4144,atmospheric,1276527248 +184862,4144,Criterion,1280592932 +184862,4144,Hong Kong,1160230139 +184862,4144,love affair,1160230139 +184862,4144,MoviePig Top Pick,1139077953 +184862,4144,neighbors,1160230139 +184862,4144,Seen 2006,1160230195 +184862,4144,TIFF Top 30 of the 2000s,1259084529 +184862,4152,chefs,1253280430 +184862,4152,costume drama,1254011330 +184862,4152,France,1254446304 +184862,4152,Gérard Depardieu,1263411892 +184862,4152,Uma Thurman,1253280435 +184862,4174,Armin Mueller-Stahl,1280841617 +184862,4174,Barry Levinson,1360424317 +184862,4181,movie business,1208972184 +184862,4183,Adrienne Shelly,1256487627 +184862,4183,Hal Hartley,1263411771 +184862,4183,Long Island,1164475786 +184862,4183,New York,1164475786 +184862,4194,OPPOSITES ATTRACT,1200618395 +184862,4205,Bob Hoskins,1360563480 +184862,4205,Rhode Island,1439099909 +184862,4211,aristocracy,1368383324 +184862,4211,Rhode Island,1439099952 +184862,4214,Arizona,1155315118 +184862,4214,college,1155315017 +184862,4214,fraternity,1155315118 +184862,4214,Notable Nudity,1155315021 +184862,4214,teen,1155315024 +184862,4216,actors,1158881303 +184862,4216,AIDS,1158881303 +184862,4216,Campbell Scott,1280841436 +184862,4216,Fear,1416609483 +184862,4216,gay,1163089860 +184862,4216,homosexuality,1158881303 +184862,4216,hospital,1159033796 +184862,4216,New York City,1158881303 +184862,4216,Nudity (Rear),1159033796 +184862,4216,Seen 2006,1159034827 +184862,4216,soap opera,1159033796 +184862,4225,Jinni Top Pick,1385228727 +184862,4226,bleak,1267466794 +184862,4226,circular,1302360457 +184862,4226,confusing,1266534935 +184862,4226,cult film,1324887236 +184862,4226,deliberate,1384889741 +184862,4226,dreamlike,1388642607 +184862,4226,Edgar Award (Best Motion Picture),1281279221 +184862,4226,flashbacks,1270445159 +184862,4226,homocide,1179711818 +184862,4226,investigation,1169764388 +184862,4226,Los Angeles,1280586914 +184862,4226,memory,1270445159 +184862,4226,memory loss,1270445159 +184862,4226,Mindfuck,1254516715 +184862,4226,nonlinear,1248925523 +184862,4226,psychological,1443073588 +184862,4226,psychology,1259946302 +184862,4226,psychothriller,1165683229 +184862,4226,revenge,1270445185 +184862,4226,scope,1170389145 +184862,4226,short-term memory loss,1185658742 +184862,4226,stylized,1219951776 +184862,4226,tattoo,1270445185 +184862,4226,tense,1262121853 +184862,4226,twist ending,1232824512 +184862,4234,based on book,1155833368 +184862,4234,Panama,1155833341 +184862,4235,affair,1370216723 +184862,4235,Alejandro Gonzalez Inarritu,1254516867 +184862,4235,amputee,1211909687 +184862,4235,animal abuse,1211909687 +184862,4235,Animals die :(,1211909688 +184862,4235,baby,1211909688 +184862,4235,Bechdel Test:Fail,1211910226 +184862,4235,brother-brother relationship,1211909687 +184862,4235,car chase,1211909687 +184862,4235,car crash,1211909687 +184862,4235,dog fighting,1211909303 +184862,4235,dogs,1259946375 +184862,4235,drama,1443073358 +184862,4235,episodic,1259946402 +184862,4235,estrangement,1211909687 +184862,4235,EXTRAMARITAL AFFAIRS,1211909687 +184862,4235,father daughter relationship,1211909688 +184862,4235,Gael García Bernal,1266535286 +184862,4235,gambling,1211909688 +184862,4235,hitman,1211909687 +184862,4235,imdb top 250,1211909293 +184862,4235,independent film,1211910227 +184862,4235,kidnapping,1272054711 +184862,4235,Mexico,1272054577 +184862,4235,Mexico City,1211910226 +184862,4235,models,1211909688 +184862,4235,money,1259946465 +184862,4235,multiple storylines,1259946389 +184862,4235,New Mexican cinema,1352221665 +184862,4235,Nudity (Topless - Brief),1259946413 +184862,4235,Oscar Nominee: Foreign Language (Mexico),1262124104 +184862,4235,R,1211910226 +184862,4235,R:gore,1211910226 +184862,4235,R:language,1211910226 +184862,4235,R:sexuality,1211910226 +184862,4235,R:violence,1211910226 +184862,4235,rats,1211909688 +184862,4235,rottweiler,1211909688 +184862,4235,Television Industry,1270445614 +184862,4235,threats,1211909687 +184862,4235,violence,1211909687 +184862,4235,wheelchair,1211909688 +184862,4237,TIFF Top 30 of the 2000s,1259359029 +184862,4239,based on a true story,1384813285 +184862,4239,black and white,1388641231 +184862,4239,drug trade,1148225849 +184862,4239,drugs,1148225846 +184862,4246,adapted from:book,1252612927 +184862,4246,author:Helen Fielding,1252612927 +184862,4246,British,1252612933 +184862,4246,chick flick,1252612938 +184862,4246,english,1360563552 +184862,4246,funny,1252612961 +184862,4246,girlie movie,1432599104 +184862,4246,Hugh Grant,1252612967 +184862,4246,Jane Austen,1252612969 +184862,4246,love story,1252612998 +184862,4246,narrated,1252613002 +184862,4246,Renee Zellweger,1360563564 +184862,4274,Jinni Top Pick,1432756822 +184862,4285,acting,1360424737 +184862,4306,animation,1416588593 +184862,4306,comedy,1443062933 +184862,4306,fairy tale,1152290909 +184862,4308,musical,1416624121 +184862,4308,Nicole Kidman,1254521978 +184862,4318,based on book,1157055513 +184862,4318,Hollywood,1157055513 +184862,4318,mother daughter relationship,1157055513 +184862,4321,AFI 100 (Laughs),1370210853 +184862,4322,baseball,1320126224 +184862,4322,courtroom,1320126223 +184862,4322,sports,1157687672 +184862,4325,deliberate,1202676990 +184862,4325,estrangement,1202677364 +184862,4325,infidelity,1202677364 +184862,4325,intimate,1202676987 +184862,4325,Italy,1202677364 +184862,4325,Milan,1202677364 +184862,4325,nightclub,1202677364 +184862,4325,party,1202677364 +184862,4325,stylized,1202676992 +184862,4325,terminal illness,1202677363 +184862,4325,wikilens top pick,1169835544 +184862,4325,writer,1202677364 +184862,4327,AFI 100 (Thrills),1365367847 +184862,4329,FilmAffinity top pick,1302410955 +184862,4332,Jinni Top Pick,1358032550 +184862,4334,MoviePig Top Pick,1148747765 +184862,4351,70mm blowup,1360102099 +184862,4354,bad cop,1155369293 +184862,4354,home invasion,1155369303 +184862,4354,police,1432598298 +184862,4380,accident,1280593299 +184862,4380,male nudity,1416609348 +184862,4392,New York City,1162502143 +184862,4404,FilmAffinity top pick,1208438417 +184862,4406,19th century,1452765481 +184862,4406,adapted from:short story,1452762836 +184862,4406,author:Dorothy M. Johnson,1452762860 +184862,4406,Bechdel Test:Fail,1452762728 +184862,4406,black and white,1452764050 +184862,4406,complex morality,1452762694 +184862,4406,cowboy,1452765413 +184862,4406,Edmond O'Brien,1452762712 +184862,4406,friendship,1452765340 +184862,4406,good vs. evil,1452762739 +184862,4406,gunfight,1452762753 +184862,4406,John Carradine,1452762750 +184862,4406,John Wayne,1452762697 +184862,4406,National Film Registry,1452762779 +184862,4406,nihilist,1452762735 +184862,4406,Oscar Nominee: Costume Design,1452764871 +184862,4406,outlaw,1452765358 +184862,4406,pistol,1452765427 +184862,4406,pointless,1452762700 +184862,4406,rancher,1452765374 +184862,4406,Seen 2016,1452762719 +184862,4406,showdown,1452765443 +184862,4406,stagecoach,1452765396 +184862,4406,ubermensch,1452762687 +184862,4406,washing dishes,1452765585 +184862,4406,western,1452762684 +184862,4406,writer,1452765562 +184862,4407,El Salvador,1352847798 +184862,4407,Latin America,1416597587 +184862,4410,Edgar Award (Best Motion Picture),1281244403 +184862,4427,70mm,1311816842 +184862,4427,Amazing Cinematography,1352822423 +184862,4427,Anamorphic Blow-Up,1311816842 +184862,4427,Anthony Hopkins,1307772173 +184862,4427,Oscar (Best Actress),1219883026 +184862,4444,kung fu,1169274414 +184862,4444,martial arts,1162049416 +184862,4447,better than expected,1302390406 +184862,4464,adapted from:book,1360424397 +184862,4464,author:Anne Tyler,1360424467 +184862,4464,screenwriter:Frank Galati,1360424467 +184862,4464,screenwriter:Lawrence Kasdan,1360424467 +184862,4467,insane,1143922772 +184862,4468,Argentina,1155832242 +184862,4468,Buenos Aires,1148747097 +184862,4468,Martin Donovan,1364709080 +184862,4478,based on a play,1152213013 +184862,4478,Biloxi,1152213013 +184862,4478,boot camp,1152213013 +184862,4478,gay soldiers,1152213013 +184862,4478,military,1152213013 +184862,4478,Mississippi,1152213013 +184862,4478,neil simon,1152213013 +184862,4478,prostitution,1152213013 +184862,4478,World War II,1152213013 +184862,4484,artist,1155316484 +184862,4487,Tom Cruise,1255154094 +184862,4499,casino,1195970946 +184862,4499,con artists,1195970574 +184862,4499,farce,1195970563 +184862,4499,France,1195970945 +184862,4499,Orion Pictures,1195970946 +184862,4499,PG,1195970945 +184862,4500,bizarre,1366222727 +184862,4506,Atmosphere,1444764595 +184862,4506,kidnapping,1148575487 +184862,4506,Paris,1139036040 +184862,4518,author:Bram Stoker,1357928530 +184862,4518,director-screenwriter,1357928518 +184862,4518,gothic,1208259147 +184862,4529,American Southwest,1276617819 +184862,4529,desert,1276617822 +184862,4529,Jack Palance,1276617828 +184862,4529,Marianne Sägebrecht,1276617831 +184862,4529,nude modeling,1276617967 +184862,4529,Oscar Nominee: Music - Original Song,1276618043 +184862,4529,painting,1276617928 +184862,4529,Percy Adlon,1276617835 +184862,4529,PG,1276618092 +184862,4529,restaurant,1276617956 +184862,4535,1890s,1191788361 +184862,4535,Australian,1191788361 +184862,4535,based on a poem,1191788460 +184862,4535,cowboy,1191788361 +184862,4535,horse,1191788361 +184862,4535,outback,1191788361 +184862,4535,scope,1191788361 +184862,4537,drama,1280841632 +184862,4553,aliens,1178244547 +184862,4553,allegory,1178244611 +184862,4553,based on a short story,1178245094 +184862,4553,campy,1178244554 +184862,4553,conspiracy,1178244996 +184862,4553,fistfighting,1178244996 +184862,4553,Los Angeles,1178244996 +184862,4553,reaganomics,1178244625 +184862,4553,satirical,1178244544 +184862,4553,scope,1178244996 +184862,4553,silly,1178244540 +184862,4553,sunglasses,1178244996 +184862,4555,breakthroughs,1280841460 +184862,4555,gay,1416609449 +184862,4557,70mm,1311873031 +184862,4557,Anamorphic Blow-Up,1311873033 +184862,4558,Arnold Schwarzenegger,1253293880 +184862,4558,brother-brother relationship,1370210797 +184862,4558,twins,1150397474 +184862,4563,Australia,1172894247 +184862,4564,Can't remember,1175195992 +184862,4564,Steven Spielberg,1262026250 +184862,4571,comedy,1273814243 +184862,4571,Keanu Reeves,1264275420 +184862,4571,time travel,1166028126 +184862,4573,director-screenwriter,1346028707 +184862,4573,Louisiana,1143347266 +184862,4573,Nudity (Topless),1191030077 +184862,4573,politics,1143347266 +184862,4573,screenwriter:Ron Shelton,1346028726 +184862,4573,strippers,1143347266 +184862,4587,California,1149267949 +184862,4587,Robby the Robot,1149267949 +184862,4589,adapted from:book,1262720997 +184862,4589,author:P. F. Kluge,1262720997 +184862,4589,musicians,1372794252 +184862,4591,it has Eartha Kitt - so that cancels any cheesiness,1201318179 +184862,4599,biopic,1163768789 +184862,4599,Dennis Quaid,1372794217 +184862,4612,breakthroughs,1164475853 +184862,4612,Cannes:jury prize,1178247196 +184862,4612,character portrays Jesus,1254514729 +184862,4612,Oscar Nominee: Foreign Language (Canada),1178247196 +184862,4624,16mm,1176526424 +184862,4624,addiction,1176526424 +184862,4624,animals,1176526424 +184862,4624,Anthropomorphic,1176526424 +184862,4624,black comedy,1176526424 +184862,4624,dark comedy,1213819986 +184862,4624,drugs,1176526424 +184862,4624,gross,1176526424 +184862,4624,insects,1176526424 +184862,4624,perverted,1176526115 +184862,4624,puppets,1176526096 +184862,4624,R,1176526424 +184862,4624,Splatter,1176526104 +184862,4624,surreal,1176526424 +184862,4624,variety show,1176526424 +184862,4633,black comedy,1360436475 +184862,4641,adolescence,1372794352 +184862,4641,bittersweet,1280603536 +184862,4642,based on a play,1161321878 +184862,4642,Berlin,1161321878 +184862,4642,bittersweet,1372793683 +184862,4642,musicians,1161321878 +184862,4642,transgender,1161321878 +184862,4642,wig,1161321878 +184862,4659,1950s,1204049201 +184862,4659,1960s,1204049201 +184862,4659,based on a true story,1204049201 +184862,4659,History,1204049201 +184862,4659,independent film,1204049201 +184862,4659,London,1204049201 +184862,4659,Nudity (Rear),1204048719 +184862,4659,Nudity (Topless),1204048717 +184862,4659,orgy,1204049216 +184862,4659,parliament,1204049201 +184862,4659,political scandal,1204049201 +184862,4659,politics,1204049201 +184862,4659,R,1204049201 +184862,4659,R:language,1204049201 +184862,4659,R:strong sexuality,1204049201 +184862,4659,sex scandal,1204049201 +184862,4673,Anamorphic Blow-Up,1273791973 +184862,4673,Jack Palance,1273791981 +184862,4673,Kurt Russell,1273791985 +184862,4673,Nudity (Topless - Brief),1273791987 +184862,4673,police,1273791989 +184862,4673,Sylvester Stallone,1273791991 +184862,4681,Danny DeVito,1280603408 +184862,4688,17th century,1253280465 +184862,4688,adapted from:book,1253280616 +184862,4688,author:Brian Moore,1253280616 +184862,4688,Bruce Beresford,1254446331 +184862,4688,Canada,1145579048 +184862,4688,Catholicism,1263411940 +184862,4688,colonialism,1254011363 +184862,4688,History,1253280461 +184862,4688,Native Americans,1145579048 +184862,4718,American Sign Language,1206569900 +184862,4718,college,1154067949 +184862,4718,Notable Nudity,1154067710 +184862,4718,sequel,1154067949 +184862,4718,summer vacation,1154067949 +184862,4718,teen,1154067707 +184862,4718,walked out during screening,1154068003 +184862,4733,adultery,1191789598 +184862,4733,alter ego,1384894483 +184862,4734,bluntman and chronic,1154154665 +184862,4734,cameos,1267471040 +184862,4734,jay and silent bob,1267471031 +184862,4734,marijuana,1154154660 +184862,4734,parody,1267471033 +184862,4734,scooby doo,1154154674 +184862,4734,star wars,1154154668 +184862,4734,Stoner Movie,1267471063 +184862,4734,view askew,1154154680 +184862,4748,karate,1255928439 +184862,4782,forgettable,1173402925 +184862,4782,New York City,1173402909 +184862,4782,video store,1173402909 +184862,4794,atmospheric,1275027488 +184862,4794,cerebral,1357928424 +184862,4816,ben stiller,1275026590 +184862,4823,Christmas,1432598807 +184862,4848,amnesia,1388642542 +184862,4848,Atmospheric,1276527218 +184862,4848,surreal,1276527219 +184862,4863,16mm,1204049446 +184862,4863,Baltimore,1148679903 +184862,4863,dysfunctional family,1161361332 +184862,4863,hitchhiker,1177825605 +184862,4863,kidnapping,1157695218 +184862,4863,trampolines,1148679850 +184862,4865,Comics,1141331765 +184862,4881,like-i-like top pick,1166779768 +184862,4886,Animation,1416588547 +184862,4886,Comedy,1443063022 +184862,4886,Disney,1150467164 +184862,4886,hilarious,1190604290 +184862,4886,Oscar (Best Music - Original Song),1152291044 +184862,4886,Pixar,1148973167 +184862,4887,alternate reality,1253898982 +184862,4887,Carla Gugino,1253898976 +184862,4887,Jet Li,1253898962 +184862,4896,magic,1171049402 +184862,4901,Brad Pitt,1311895823 +184862,4901,espionage,1137314840 +184862,4901,multinational settings,1137315052 +184862,4901,Seen 2006,1137314840 +184862,4903,austere,1280560484 +184862,4903,bleak,1324887947 +184862,4903,deliberate,1370216490 +184862,4903,somber,1443073052 +184862,4903,understated,1451886593 +184862,4920,adapted from:book,1302305237 +184862,4920,adultery,1311818481 +184862,4920,AFI 100 (Movie Quotes),1302305253 +184862,4920,author:Olive Higgins Prouty,1302305357 +184862,4920,bad mothers,1302305258 +184862,4920,Bechdel Test:Pass,1302305200 +184862,4920,Bette Davis,1302306059 +184862,4920,boat,1302305977 +184862,4920,Boston,1302305935 +184862,4920,Claude Rains,1302305264 +184862,4920,DEATH OF A PARENT,1302306169 +184862,4920,independent woman,1302305267 +184862,4920,lots of smoking,1302305272 +184862,4920,mental hospital,1302306121 +184862,4920,National Film Registry,1302305274 +184862,4920,Oscar (Best Music - Original Score),1302305523 +184862,4920,Oscar nominee: Lead Actress,1302398916 +184862,4920,Oscar Nominee: Supporting Actress,1302305579 +184862,4920,psychiatrist as protagonist,1302305280 +184862,4920,psychology,1302305283 +184862,4920,role reversal,1302306051 +184862,4920,romantic longing,1302305935 +184862,4920,screenwriter:Casey Robinson,1302305357 +184862,4920,Seen 2010,1302305192 +184862,4920,self discovery,1302306022 +184862,4920,self-esteem,1302305970 +184862,4920,spinster,1302305935 +184862,4920,the comfort food of movies,1302305289 +184862,4920,therapist,1302306098 +184862,4920,wikilens top pick,1203273394 +184862,4963,Las Vegas,1180960351 +184862,4971,defection,1149834106 +184862,4973,atmospheric,1302333960 +184862,4973,coming of age,1360102615 +184862,4973,feel-good,1257176051 +184862,4973,France,1210346337 +184862,4973,Paris,1163116708 +184862,4973,quirky,1280560798 +184862,4973,R,1202678021 +184862,4973,R:sexual content,1202678021 +184862,4973,stylized,1249004083 +184862,4973,whimsical,1249004085 +184862,4975,annoying,1163745441 +184862,4975,car accident,1163745868 +184862,4975,coma,1163745868 +184862,4975,Death,1388725832 +184862,4975,disfigurement,1163745868 +184862,4975,hallucination,1163745868 +184862,4975,mask,1163745868 +184862,4975,New York City,1163745868 +184862,4975,party,1163745868 +184862,4975,remake,1163745868 +184862,4975,suicide,1163745868 +184862,4978,Anthony LaPaglia,1307772382 +184862,4978,Australia,1365363170 +184862,4979,Ben Stiller,1310054724 +184862,4979,Bill Murray,1280806602 +184862,4979,black comedy,1311873872 +184862,4979,Criterion,1324926081 +184862,4992,girlie movie,1145153548 +184862,4992,New York City,1145153601 +184862,4992,time travel,1145153573 +184862,4993,adapted from:book,1259946187 +184862,4993,atmospheric,1262108328 +184862,4993,author:J. R. R. Tolkein,1259946188 +184862,4993,elves,1259946193 +184862,4993,ensemble cast,1311835974 +184862,4993,fanciful,1370211259 +184862,4993,Good versus evil,1179014847 +184862,4993,hobbits,1259946197 +184862,4993,Oscar (Best Music - Original Score),1259946198 +184862,4993,wizards,1259946203 +184862,4998,Edgar Award (Best Motion Picture),1281112913 +184862,5010,author:Mark Bowden,1302401445 +184862,5013,adultery,1384894422 +184862,5013,atmospheric,1219900051 +184862,5013,Bechdel test:Pass,1252616143 +184862,5013,Dark,1252616118 +184862,5013,England,1252616121 +184862,5013,Robert Altman,1252616126 +184862,5015,bad parents,1248967374 +184862,5015,Nudity (Full Frontal - Notable),1416524101 +184862,5017,Edgar Award (Best Motion Picture),1281021486 +184862,5034,directorial debut,1213818023 +184862,5034,protagonist is recently widowed,1201650707 +184862,5049,buddy,1160695836 +184862,5049,prison,1165682986 +184862,5049,San Francisco,1166477913 +184862,5065,like-i-like top pick,1162615648 +184862,5114,FilmAffinity top pick,1172294243 +184862,5120,Edgar Award (Best Motion Picture),1281119817 +184862,5135,India,1162507567 +184862,5145,Janus 50,1182598253 +184862,5147,Janus 50,1182598895 +184862,5198,Edgar Award (Best Motion Picture),1281243703 +184862,5214,based on a book,1181940054 +184862,5214,God,1181939807 +184862,5214,Los Angeles,1181940054 +184862,5214,Oscar Nominee: Adapted Screenplay,1181940055 +184862,5214,PG,1181940100 +184862,5214,supermarket,1181940054 +184862,5218,Jinni Top Pick,1306701750 +184862,5218,Yahoo Top Pick,1220120295 +184862,5224,movielens top pick,1161369923 +184862,5225,like-i-like top pick,1181104224 +184862,5225,Yahoo Top Pick,1152970625 +184862,5266,crime,1432598025 +184862,5267,ESPY award,1178054691 +184862,5279,19th century,1162049592 +184862,5279,biopic,1171560984 +184862,5279,classical music,1265213289 +184862,5279,duel,1171561025 +184862,5279,feminism,1254011303 +184862,5279,Hugh Grant,1253280394 +184862,5279,Judy Davis,1263411837 +184862,5279,music,1160684421 +184862,5279,screenwriter:Sarah Kernochan,1307772022 +184862,5279,writers,1254446176 +184862,5291,Janus 50,1182598489 +184862,5294,Bill Paxton,1352139794 +184862,5294,insanity,1432597924 +184862,5294,religion,1209606636 +184862,5299,chick flick,1360564892 +184862,5308,abandonment,1151607373 +184862,5308,actor,1432598658 +184862,5308,comedy,1259961164 +184862,5308,remake of a french film,1140803980 +184862,5308,Steve Guttenberg,1260513031 +184862,5327,TIFF Top 30 of the 2000s,1259181328 +184862,5329,like-i-like top pick,1202796945 +184862,5339,Liam Neeson,1280560617 +184862,5346,Brazil,1148405713 +184862,5346,Jacqueline Bisset,1276531956 +184862,5346,Notable Nudity,1154069324 +184862,5346,Nudity (Full Frontal - Notable),1158980276 +184862,5346,Rio de Janeiro,1176526956 +184862,5349,adapted from:comic,1280601199 +184862,5349,alter ego,1302545601 +184862,5349,comic book,1164479166 +184862,5349,Kirsten Dunst,1280601205 +184862,5349,superhero,1280601185 +184862,5358,19th century,1183675051 +184862,5358,70mm blowup,1175841362 +184862,5358,Africa,1183674820 +184862,5358,History,1162141652 +184862,5358,Kenya,1183674820 +184862,5358,London,1183674820 +184862,5358,Victorian era,1183675051 +184862,5367,author:Hanif Kureishi,1201597879 +184862,5367,Channel 4,1201609839 +184862,5367,gay,1201597849 +184862,5367,immigrants,1201609839 +184862,5367,laundromat,1201609839 +184862,5367,london,1201597859 +184862,5367,Oscar Nominee: Original Screenplay,1201609839 +184862,5367,R,1201609839 +184862,5367,racism,1201609839 +184862,5367,Working Title Films,1201609839 +184862,5368,Janus 50,1182577719 +184862,5377,adapted from:book,1302546913 +184862,5377,author:Nick Hornby,1302546913 +184862,5377,screenwriter:Chris Weitz,1302546934 +184862,5377,screenwriter:Paul Weitz,1302546934 +184862,5377,screenwroter:Peter Hedges,1302546913 +184862,5378,alien,1276618193 +184862,5378,Dynamic CGI Action,1352822974 +184862,5378,franchise,1252615450 +184862,5378,George Lucas,1252615452 +184862,5378,sequel,1252615458 +184862,5378,space,1252615465 +184862,5378,Star Wars,1150465455 +184862,5380,adapted from:play,1280812306 +184862,5380,playwright:Oscar Wilde,1280812297 +184862,5380,screenwriter:Oliver Parker,1307848699 +184862,5388,Al Pacino,1352822726 +184862,5418,adapted from:book,1253253635 +184862,5418,amnesia,1384718227 +184862,5418,author:Robert Ludlum,1253253635 +184862,5418,espionage,1213813083 +184862,5418,spy,1254445367 +184862,5438,Garbage,1145240224 +184862,5445,adapted from:short story,1432595408 +184862,5445,author:Philip K. Dick,1432595412 +184862,5446,Peter Gabriel music,1179721004 +184862,5459,PG-13:sci-fi action violence,1366655044 +184862,5460,2D animation,1302306783 +184862,5460,adapted from:TV series,1270600410 +184862,5464,1930s,1360398442 +184862,5464,Jude Law,1280560368 +184862,5464,organized crime,1432597682 +184862,5470,Janus 50,1182578018 +184862,5475,Edgar Award (Best Motion Picture),1281119597 +184862,5475,screenwriter:Jorge Semprún,1346029093 +184862,5504,mad scientist,1158274500 +184862,5504,sequel,1158274500 +184862,5508,1970s,1219931735 +184862,5508,1980s,1219931734 +184862,5508,archive footage,1219931735 +184862,5508,breaking the fourth wall,1219931735 +184862,5508,dancing,1219931734 +184862,5508,DRUG ADDICTION,1219931735 +184862,5508,drugs & music,1219931734 +184862,5508,England,1219931734 +184862,5508,epilepsy,1219936653 +184862,5508,joy division,1219931432 +184862,5508,Manchester,1219931419 +184862,5508,music,1219931734 +184862,5508,music business,1219931735 +184862,5508,new wave,1219931424 +184862,5508,nightclub,1219936542 +184862,5508,PROSTITUTES,1219931735 +184862,5508,punk rock,1219931735 +184862,5508,R,1219936653 +184862,5508,R:drug use,1219936653 +184862,5508,R:sexuality,1219936653 +184862,5508,R:strong language,1219936653 +184862,5508,reporter,1219931735 +184862,5508,rock and roll,1219931417 +184862,5508,Seen 2008,1220029846 +184862,5508,suicide,1219931735 +184862,5508,wired 50 greatest soundtracks,1219931428 +184862,5515,TIFF Top 30 of the 2000s,1259359089 +184862,5527,19th century,1215524370 +184862,5527,Aaron Eckhart,1269665915 +184862,5527,academia,1215524367 +184862,5527,adapted from:book,1215524504 +184862,5527,author:A. S. Byatt,1215524504 +184862,5527,books,1215524375 +184862,5527,England,1215529337 +184862,5527,Gwyneth Paltrow,1280813056 +184862,5527,PG-13,1215531966 +184862,5527,PG-13:sexuality,1215531966 +184862,5527,PG-13:some thematic elements,1215531966 +184862,5527,scope,1215531325 +184862,5540,Ancient Greeks,1170388688 +184862,5540,Classical Studies,1201416985 +184862,5540,Claymation,1426543449 +184862,5540,Myth,1170388688 +184862,5540,mythology,1170388688 +184862,5553,Edgar Award (Best Motion Picture),1281244551 +184862,5596,Can't remember,1191789668 +184862,5603,Alec Guinness,1264275193 +184862,5603,greed,1143223100 +184862,5603,heist,1264275192 +184862,5603,setting:London,1215547231 +184862,5604,Alec Guinness,1248916425 +184862,5604,deadpan,1252613820 +184862,5604,Ealing Studios,1270592149 +184862,5604,FIGHTING THE SYSTEM,1270592158 +184862,5604,inventor,1278261438 +184862,5617,black comedy,1334547171 +184862,5617,erotic,1416625373 +184862,5617,sexuality,1334547177 +184862,5618,animation,1256453753 +184862,5618,anime,1148224980 +184862,5618,fantasy,1452759668 +184862,5618,Hayao Miyazaki,1249004115 +184862,5618,HEROIC MISSION,1191025560 +184862,5618,Japan,1139069687 +184862,5618,Studio Ghibli,1219972174 +184862,5618,witch,1249004104 +184862,5630,Hannibal Lecter,1148679383 +184862,5643,Criterion,1362768994 +184862,5643,environment,1268251080 +184862,5643,G,1271015717 +184862,5643,no dialogue,1168150741 +184862,5643,trilogy,1211941262 +184862,5643,trilogy:Qatsi,1211941262 +184862,5660,Edgar Award (Best Foreign Film),1281119335 +184862,5669,9/11,1320069820 +184862,5669,american idiocy,1352847908 +184862,5669,documentary,1263450413 +184862,5669,guns,1167340490 +184862,5669,Michael Moore,1254011508 +184862,5669,politics,1416597428 +184862,5686,TIFF Top 30 of the 2000s,1259257198 +184862,5690,FilmAffinity top pick,1182602880 +184862,5747,1910s,1182459167 +184862,5747,anti-war,1182459166 +184862,5747,Australian,1182458705 +184862,5747,based on a true story,1182459166 +184862,5747,compassionate,1182458665 +184862,5747,friendship,1182459166 +184862,5747,GREAT BATTLES,1182458670 +184862,5747,INNOCENCE LOST,1182458689 +184862,5747,MILITARY LIFE,1182458698 +184862,5747,PG,1182458742 +184862,5747,running,1182459166 +184862,5747,scope,1182459280 +184862,5747,somber,1182458673 +184862,5747,Turkey,1182459166 +184862,5747,World War I,1182458676 +184862,5791,biography,1280813472 +184862,5791,Oscar (Best Music - Original Score),1152291970 +184862,5794,TIFF Top 30 of the 2000s,1259084483 +184862,5796,author:Ian Fleming,1212081017 +184862,5810,Oscar (Best Music - Original Song),1152291756 +184862,5812,1950s,1360103433 +184862,5812,1950s housewives,1280841311 +184862,5812,cinematic tribute,1137172480 +184862,5812,costumes,1137172480 +184862,5812,modern art,1416785631 +184862,5816,Jinni Top Pick,1260170454 +184862,5817,denial,1162049554 +184862,5817,Toronto,1163288186 +184862,5825,Janus 50,1182598226 +184862,5878,Pedro Almodóvar,1280593200 +184862,5878,psychology,1416609365 +184862,5881,adapted from:book,1388722807 +184862,5881,author:Stanislaw Lem,1388722807 +184862,5881,director-screenwriter,1388722807 +184862,5881,Twentieth Century-Fox,1205781684 +184862,5890,based on a book,1171663231 +184862,5891,bathtub,1366681176 +184862,5891,Bechdel Test:Fail,1366680590 +184862,5891,Camille Keaton,1366680504 +184862,5891,campy,1366680507 +184862,5891,contemporary,1366681231 +184862,5891,delivery boy,1366681158 +184862,5891,director-screenwriter,1366680650 +184862,5891,directorial debut,1366680650 +184862,5891,disturbing,1366680511 +184862,5891,downbeat,1366680514 +184862,5891,genital mutilation,1366680515 +184862,5891,glorifies violence against women,1366680521 +184862,5891,grim,1366680522 +184862,5891,gritty,1366680524 +184862,5891,hard to watch,1366680525 +184862,5891,harsh,1366680527 +184862,5891,horrifying,1366680529 +184862,5891,humiliation,1366681085 +184862,5891,kidnapping,1366681104 +184862,5891,menacing,1366680531 +184862,5891,murder,1366681066 +184862,5891,Nudity (Full Frontal - Notable),1366680533 +184862,5891,panties,1366681135 +184862,5891,R,1366681379 +184862,5891,rage,1366681249 +184862,5891,rape,1366680536 +184862,5891,RAPE & SEXUAL ABUSE,1366680537 +184862,5891,revenge,1366680541 +184862,5891,sadist,1366681049 +184862,5891,seen 2013,1366680590 +184862,5891,tense,1366680547 +184862,5891,woman hater,1366681025 +184862,5891,writer,1366680549 +184862,5891,WRITER'S LIFE,1366680550 +184862,5891,writers,1366680552 +184862,5893,Bill Pullman,1384816491 +184862,5893,small town,1156534844 +184862,5902,avante garde,1310062952 +184862,5902,black comedy,1280560674 +184862,5902,car crash,1170073517 +184862,5902,Charlie Kaufman,1249005753 +184862,5902,dark comedy,1346042079 +184862,5902,drugs,1384895394 +184862,5902,Florida,1249005757 +184862,5902,flowers,1170073517 +184862,5902,Native Americans,1170073517 +184862,5902,New York City,1170073517 +184862,5902,Nicolas Cage,1416608180 +184862,5902,obsession,1249005759 +184862,5902,Oscar (Best Supporting Actor),1249005760 +184862,5902,passionate,1170073517 +184862,5902,quirky,1451886321 +184862,5902,Seen 2007,1170073164 +184862,5902,surreal,1170073301 +184862,5902,twins,1170073517 +184862,5902,writers,1249005765 +184862,5902,writing process,1249005768 +184862,5902,Yahoo Top Pick,1152303913 +184862,5944,aliens,1366736032 +184862,5944,bald nemesis,1210347075 +184862,5944,Based on a TV show,1190603672 +184862,5944,sci-fi,1444060786 +184862,5944,space,1193949512 +184862,5944,Star Trek,1148574305 +184862,5945,Yahoo Top Pick,1191300446 +184862,5952,atmospheric,1262108410 +184862,5952,based on a book,1169129595 +184862,5952,elves,1259946123 +184862,5952,high fantasy,1259946125 +184862,5952,royalty,1259946127 +184862,5952,sequel,1169764178 +184862,5952,Tolkien,1259946131 +184862,5956,action,1366734255 +184862,5961,female heroine,1155832642 +184862,5961,New York City,1155832642 +184862,5961,police,1155832642 +184862,5991,adapted from B'way,1183070534 +184862,5991,adapted from:play,1254522240 +184862,5991,based on a play,1183070526 +184862,5991,courtroom,1254522038 +184862,5991,Edgar Award (Best Motion Picture),1281279278 +184862,5991,jazz,1254522209 +184862,5991,murder,1183070626 +184862,6001,biting,1352139376 +184862,6001,cynical,1256508824 +184862,6001,Sandra Bernhard,1416608297 +184862,6001,television,1149857947 +184862,6008,murder,1219884353 +184862,6008,TIFF Top 30 of the 2000s,1259257234 +184862,6016,adapted from:book,1219952099 +184862,6016,amazing,1310089748 +184862,6016,atmospheric,1352221716 +184862,6016,author:Paulo Lins,1219952099 +184862,6016,based on a true story,1203050458 +184862,6016,black comedy,1248925680 +184862,6016,Brazil,1248925681 +184862,6016,chicken,1156437851 +184862,6016,choppy style,1266535153 +184862,6016,Classic,1232824580 +184862,6016,disturbing,1254516818 +184862,6016,drugs,1146782843 +184862,6016,enthralling,1360398197 +184862,6016,forceful,1267467001 +184862,6016,gangs,1211910262 +184862,6016,historical epic,1200586786 +184862,6016,intense,1248925687 +184862,6016,Interesting,1371322004 +184862,6016,mob,1143222936 +184862,6016,multiple storylines,1259946327 +184862,6016,nightclub,1207247222 +184862,6016,Nudity (Topless - Brief),1270445372 +184862,6016,Oscar Nominee: Adapted Screenplay,1248925689 +184862,6016,Oscar Nominee: Cinematography,1157663888 +184862,6016,Oscar Nominee: Director,1154068461 +184862,6016,Oscar Nominee: Editing,1160885539 +184862,6016,photographer,1150976756 +184862,6016,photography,1275004100 +184862,6016,Poverty,1170389901 +184862,6016,Rio de Janeiro,1248925698 +184862,6016,robbery,1154706036 +184862,6016,soccer,1155317363 +184862,6016,South America,1248925701 +184862,6016,stylized,1262122189 +184862,6016,sweeping,1272054461 +184862,6016,teenager,1193625126 +184862,6016,Tragedy,1141336983 +184862,6016,violence,1151606140 +184862,6031,ambition,1210963004 +184862,6031,compassionate,1189644500 +184862,6031,motherhood,1161481004 +184862,6031,passionate,1207245363 +184862,6031,race,1164558444 +184862,6035,Janus 50,1182598421 +184862,6082,1900s,1276537920 +184862,6082,based on a true story,1276538984 +184862,6082,British Columbia,1276537921 +184862,6082,Canada,1156534975 +184862,6082,ex-con,1158979885 +184862,6082,PG,1177827311 +184862,6082,robbery,1156534975 +184862,6082,trains,1156534975 +184862,6147,Sentana Filmproduktion,1184272566 +184862,6155,Good Romantic Comedies,1432598765 +184862,6170,1940s,1311835444 +184862,6170,70mm,1311835466 +184862,6170,AFI 100 (Cheers),1177191305 +184862,6170,Anamorphic Blow-Up,1311835466 +184862,6170,based on a book,1171560675 +184862,6170,G,1187217570 +184862,6170,horse racing,1172180965 +184862,6170,horses,1168151245 +184862,6170,Mickey Rooney,1311835484 +184862,6170,Oregon,1184271830 +184862,6170,Oscar Nominee: Editing,1175431441 +184862,6170,Oscar Nominee: Supporting Actor,1175431424 +184862,6170,shipwreck,1173405245 +184862,6170,USA film registry,1179012341 +184862,6170,Zoetrope,1195971386 +184862,6186,like-i-like top pick,1160191098 +184862,6188,undressing,1355294451 +184862,6197,David Cronenberg,1360399587 +184862,6201,Biography,1232903823 +184862,6201,England,1159574709 +184862,6203,homeless,1176526748 +184862,6203,Los Angeles,1173403321 +184862,6203,MGM,1199925431 +184862,6204,Robert Townsend,1280601075 +184862,6204,superhero,1280601043 +184862,6218,ESPY award,1178054664 +184862,6235,Agnieszka Holland,1366223524 +184862,6235,based on a true story,1161361262 +184862,6235,Holocaust,1145681309 +184862,6235,Jews,1157695276 +184862,6235,nazi,1148679462 +184862,6235,R,1258389967 +184862,6235,World War II,1157695243 +184862,6266,father daughter relationship,1149269858 +184862,6266,London,1149269858 +184862,6266,Morocco,1149270081 +184862,6266,musicians,1149269988 +184862,6266,paparazzi,1149269858 +184862,6266,politics,1149269988 +184862,6266,Recommendz Top Pick,1137177765 +184862,6266,Seen 2006,1149273566 +184862,6279,gambling,1208972194 +184862,6286,loser trilogy,1371320541 +184862,6291,16-year-old,1416624830 +184862,6291,bath,1416624860 +184862,6291,bechdel test:pass,1416624523 +184862,6291,breasts,1416624943 +184862,6291,candle,1416624883 +184862,6291,Depressing,1416624415 +184862,6291,disturbing,1416624417 +184862,6291,Estonia,1416624649 +184862,6291,FilmAffinity top pick,1357968000 +184862,6291,forceful,1416624452 +184862,6291,friendship transcending death,1416624441 +184862,6291,jeans,1416624885 +184862,6291,Lukas Moodysson,1416624456 +184862,6291,Malmö,1416624719 +184862,6291,melancholy,1416624459 +184862,6291,poverty,1416624462 +184862,6291,prostitute,1416624837 +184862,6291,prostitution,1416624421 +184862,6291,R,1416624985 +184862,6291,R:a rape scene,1416625001 +184862,6291,R:drug use,1416625013 +184862,6291,R:language,1416625017 +184862,6291,R:strong sexual content,1416624994 +184862,6291,Seen 2014,1416624489 +184862,6291,sex in bed,1416624913 +184862,6291,sexual orgasm,1416624917 +184862,6291,social commentary,1416624413 +184862,6291,Swedish,1416624446 +184862,6291,woman in bathtub,1416624952 +184862,6291,writer-director,1416624534 +184862,6297,19th century,1201320203 +184862,6297,athlete,1201320203 +184862,6297,author:Louis Sachar,1201320203 +184862,6297,based on a book,1201318140 +184862,6297,black comedy,1201320203 +184862,6297,curse,1201320203 +184862,6297,falsely accused,1201320203 +184862,6297,inventor,1201320203 +184862,6297,juvenile deliquent,1201320203 +184862,6297,murder,1201320203 +184862,6297,PG,1201320203 +184862,6297,PG:mild language,1201320203 +184862,6297,PG:thematic elements,1201320203 +184862,6297,PG:violence,1201320203 +184862,6297,poison,1201320203 +184862,6297,racism,1201320203 +184862,6297,Snakes,1201320203 +184862,6297,Texas,1201320203 +184862,6297,Walden Media,1201320203 +184862,6299,birds,1152968440 +184862,6308,Brian Dennehy,1249005549 +184862,6308,lawyers,1163116898 +184862,6309,ensemble cast,1202661343 +184862,6309,independent film,1202661343 +184862,6309,marriage,1202661343 +184862,6309,relationships,1202661343 +184862,6309,yuppies,1202661343 +184862,6320,Bette Midler,1384894524 +184862,6320,mall,1173403215 +184862,6320,movie theatre,1176526836 +184862,6331,children,1269643826 +184862,6331,competition,1269643731 +184862,6331,Connecticut,1269644058 +184862,6331,Documentary,1269643733 +184862,6331,G,1269644185 +184862,6331,immigrants,1269643809 +184862,6331,Missouri,1269644058 +184862,6331,New Jersey,1269652855 +184862,6331,Oscar Nominee: Documentary Feature,1269644267 +184862,6331,Pennsylvania,1269643887 +184862,6331,quirky,1416516503 +184862,6331,Recommendz Top Pick,1161370736 +184862,6331,Seen 2010,1269701122 +184862,6331,spelling bee,1269643744 +184862,6331,St. Louis,1269644058 +184862,6331,Tampa FL,1269643859 +184862,6331,Texas,1269643887 +184862,6331,Washington DC,1269643840 +184862,6331,WORK ETHICS,1269644058 +184862,6333,adapted from:comic,1253900205 +184862,6333,amnesia,1302545547 +184862,6333,aviation,1310053497 +184862,6333,comic book,1280601249 +184862,6333,ensemble cast,1253900216 +184862,6333,father-son relationship,1320148582 +184862,6333,funny,1345593590 +184862,6333,marvel,1164479186 +184862,6333,sequel,1144430553 +184862,6333,super-hero,1144430550 +184862,6333,Twentieth Century-Fox,1205781602 +184862,6365,alternate reality,1345593795 +184862,6365,virtual reality,1150465492 +184862,6368,Angela Christlieb,1352848395 +184862,6368,Can you dislike these people after all,1388641521 +184862,6368,quirky subculture,1416519648 +184862,6377,animation,1416588534 +184862,6377,fish,1150467046 +184862,6377,ocean,1152290922 +184862,6377,Pixar,1148973285 +184862,6377,short-term memory loss,1443062048 +184862,6380,Andrew Jarecki,1265213379 +184862,6380,child abuse,1151070762 +184862,6380,courtroom,1311879776 +184862,6380,guilt,1416785486 +184862,6385,coming of age,1280560940 +184862,6385,destiny,1302307325 +184862,6385,drama,1324887753 +184862,6385,New Zealand,1150986622 +184862,6404,Janus 50,1182598876 +184862,6419,1930s,1265186237 +184862,6419,1940s,1265186237 +184862,6419,adapted from:book,1265186237 +184862,6419,author:Evan S. Connell,1265186275 +184862,6419,bravery,1265186237 +184862,6419,father daughter relationship,1265186243 +184862,6419,GENERATION GAP,1265186245 +184862,6419,James Ivory,1265185980 +184862,6419,Joanne Woodward,1265185977 +184862,6419,Kansas,1265186237 +184862,6419,Lawyer,1265186237 +184862,6419,Oscar Nominee: Lead Actress,1265186360 +184862,6419,Paul Newman,1265185972 +184862,6419,PG-13,1265186655 +184862,6419,tornado,1265186237 +184862,6424,John Landis,1384894592 +184862,6436,Washington state,1153509755 +184862,6440,baffling,1320117051 +184862,6440,Coen Brothers,1280560709 +184862,6440,disturbing,1372794429 +184862,6440,Enigmatic,1416608239 +184862,6440,Hollywood,1142037758 +184862,6440,twist,1142037758 +184862,6440,writers,1142037758 +184862,6467,Edgar Award (Best Foreign Film),1280979245 +184862,6473,adapted from:book,1262026210 +184862,6473,author:Paul Theroux,1262026210 +184862,6473,exercise bike,1262026160 +184862,6473,intrigue,1175195417 +184862,6473,London,1175195953 +184862,6473,Nudity (Full Frontal - Notable),1262026166 +184862,6473,Nudity (Topless),1276531891 +184862,6473,prostitution,1175195417 +184862,6476,adapted from:book,1262026429 +184862,6476,author:Richard Neely,1262026429 +184862,6476,Greta Scacchi,1276531802 +184862,6476,Wolfgang Petersen,1262026135 +184862,6502,atmospheric,1362322980 +184862,6502,British,1255897833 +184862,6502,death,1255897837 +184862,6502,epidemic,1255897848 +184862,6502,great soundtrack,1432596032 +184862,6502,horror,1255897855 +184862,6502,london,1255897857 +184862,6502,post-apocalyptic,1255897865 +184862,6502,pseudo-zombies,1255897879 +184862,6502,Sexualized violence,1255897869 +184862,6502,stylized,1255897882 +184862,6502,survival,1255897887 +184862,6502,zombies,1255897890 +184862,6531,Legal,1145579819 +184862,6537,Jinni Top Pick,1265311543 +184862,6539,adapted from:theme park ride,1352841675 +184862,6539,curse,1164479234 +184862,6539,Disney,1143222784 +184862,6539,father daughter relationship,1310054201 +184862,6539,Fun,1320148498 +184862,6539,magic,1310054217 +184862,6539,pirates,1310054214 +184862,6539,real-life cartoon,1310054219 +184862,6552,blackmail,1177191413 +184862,6552,chess,1187217649 +184862,6552,doctors,1179012596 +184862,6552,Edgar Award (Best Motion Picture Screenplay),1281279353 +184862,6552,hotel,1184271961 +184862,6552,illegal immigration,1175199248 +184862,6552,immigration,1168151337 +184862,6552,London,1152936292 +184862,6552,Nudity (Topless - Brief),1171560915 +184862,6552,R,1172181421 +184862,6552,sexual exploitation,1175431753 +184862,6561,anti-war,1255897989 +184862,6561,nuclear weapons,1210962019 +184862,6561,Peter Sellers,1278305594 +184862,6561,satirical,1255897991 +184862,6566,Austin,1169300236 +184862,6566,sequel,1158274555 +184862,6566,video games,1158274555 +184862,6591,religion,1145637675 +184862,6591,repression,1146782886 +184862,6595,action,1352224101 +184862,6595,police,1155369336 +184862,6611,Janus 50,1182598798 +184862,6614,Keanu Reeves,1360564082 +184862,6636,road trip,1148408224 +184862,6650,Janus 50,1182598155 +184862,6659,black comedy,1308023739 +184862,6669,Akira Kurosawa,1254444046 +184862,6669,altruism,1179012179 +184862,6669,buddhist,1248964843 +184862,6669,bureaucracy,1141944203 +184862,6669,cancer,1248964854 +184862,6669,cathartic,1171664886 +184862,6669,city hall,1270592504 +184862,6669,compassionate,1248964861 +184862,6669,courage,1210346046 +184862,6669,Criterion,1202083097 +184862,6669,deliberate,1248964863 +184862,6669,disease,1141944203 +184862,6669,dying,1141944203 +184862,6669,funereal,1187217334 +184862,6669,gifts,1141944203 +184862,6669,Janus 50,1248964870 +184862,6669,Japan,1140206178 +184862,6669,legacy,1248964873 +184862,6669,lyrical,1254013777 +184862,6669,meaning of life,1255926873 +184862,6669,meditative,1416524681 +184862,6669,philosophical,1256454132 +184862,6669,playground,1147480875 +184862,6669,poignant,1248964876 +184862,6669,posthumous fame,1259964008 +184862,6669,purposefulness,1262028058 +184862,6669,screenwriter:Akira Kurosawa,1306447042 +184862,6669,screenwriter:Hideo Oguni,1306447078 +184862,6669,screenwriter:Shinobu Hashimoto,1306447064 +184862,6669,terminal illness,1146839289 +184862,6669,Toho,1149834875 +184862,6669,Tokyo,1150979766 +184862,6669,virtuous,1210961464 +184862,6671,biopic,1171561746 +184862,6671,compassionate,1183687093 +184862,6671,New Zealand,1169276088 +184862,6671,poet,1166856472 +184862,6672,movielens top pick,1150467763 +184862,6684,1910s,1262026447 +184862,6684,adapted from:book,1262026517 +184862,6684,author:Thomas Mann,1262026517 +184862,6684,cholera,1262026448 +184862,6684,Dirk Bogarde,1262026467 +184862,6684,epidemic,1262026450 +184862,6684,homosexuality,1166253406 +184862,6684,hotel,1262026452 +184862,6684,Italy,1166253406 +184862,6684,Oscar Nominee: Costume Design,1166260879 +184862,6684,Venice,1166253406 +184862,6708,based on book,1162141374 +184862,6708,Characters with great depth,1184865933 +184862,6708,con men,1162141374 +184862,6708,father daughter relationship,1162141374 +184862,6708,Los Angeles,1162141429 +184862,6708,obsessive compulsive disorder,1162141429 +184862,6708,psychiatrist,1162141374 +184862,6708,Seen 2006,1162141374 +184862,6711,atmospheric,1177468763 +184862,6711,Bill Murray,1280596744 +184862,6711,bittersweet,1364709187 +184862,6711,Japan,1416608501 +184862,6711,Oscar Nominee: Director,1184937081 +184862,6763,Ben Stiller,1252615655 +184862,6763,Danny DeVito,1252615658 +184862,6763,Drew Barrymore,1252615660 +184862,6763,real estate,1158418226 +184862,6772,16mm,1174609020 +184862,6772,documentary,1269652917 +184862,6772,education,1154445932 +184862,6772,elementary school,1269652896 +184862,6772,field trip,1148574650 +184862,6772,France,1153536349 +184862,6772,minds,1142835341 +184862,6772,rural,1142835338 +184862,6772,small town,1269652908 +184862,6772,teacher,1204050696 +184862,6773,biking,1169740695 +184862,6773,kidnapping,1169740816 +184862,6773,mob,1169740816 +184862,6773,musicians,1169740816 +184862,6773,no dialogue,1169740674 +184862,6773,quirky,1169740602 +184862,6773,Tour de France,1169740816 +184862,6783,Janus 50,1182598621 +184862,6787,1970s,1302399497 +184862,6787,adapted from:book,1302399567 +184862,6787,AFI 100 (Cheers),1352848005 +184862,6787,appealed MPAA rating,1170390113 +184862,6787,author:Bob Woodward,1302399567 +184862,6787,author:Carl Bernstein,1302399567 +184862,6787,Classic,1148575896 +184862,6787,conspiracy,1311879622 +184862,6787,corruption,1363459038 +184862,6787,Deep Throat,1161966662 +184862,6787,Dustin Hoffman,1384813485 +184862,6787,History,1302399589 +184862,6787,investigation,1302399591 +184862,6787,journalism,1302399592 +184862,6787,Nixon,1168637619 +184862,6787,Oscar (Best Supporting Actor),1165604755 +184862,6787,PG,1170390123 +184862,6787,politics,1148575896 +184862,6787,Republicans,1137778209 +184862,6787,screenwriter:William Goldman,1302399567 +184862,6787,Seen 2006,1137778224 +184862,6787,true story,1302399615 +184862,6787,Washington DC,1137778209 +184862,6787,Watergate,1170081810 +184862,6787,well-acted,1201650534 +184862,6788,Brooklyn,1253284910 +184862,6788,childbirth,1253284910 +184862,6788,Geena Davis,1253284311 +184862,6788,James Gandolfini,1253284315 +184862,6788,pregnancy,1253284321 +184862,6788,Stephen Rea,1253284318 +184862,6791,adapted from:book,1452766519 +184862,6791,Art,1452766478 +184862,6791,author:Karen Blixen,1452766542 +184862,6791,beautiful,1452766446 +184862,6791,Bechdel Test:Pass,1452766305 +184862,6791,cavalry officer,1452766905 +184862,6791,cooking,1452766488 +184862,6791,Criterion,1452766450 +184862,6791,Denmark,1452766821 +184862,6791,Eucharist,1452766474 +184862,6791,feast,1452766843 +184862,6791,fine dining,1452766454 +184862,6791,Food,1452766438 +184862,6791,G,1452766960 +184862,6791,Gabriel Axel,1452766472 +184862,6791,heartwarming,1452766441 +184862,6791,music lesson,1452766883 +184862,6791,Oscar (Best Foreign Language Film),1452766572 +184862,6791,piano,1452766917 +184862,6791,reflective,1452766493 +184862,6791,religion,1452766927 +184862,6791,Seen 2016,1452766292 +184862,6791,SIBLING RELATIONSHIPS,1452766935 +184862,6791,Yahoo Top Pick,1154710566 +184862,6796,black,1388641174 +184862,6797,Ennio Morricone,1206615857 +184862,6797,Las Vegas,1168150832 +184862,6797,organised crime,1199747203 +184862,6807,black comedy,1365363656 +184862,6807,British,1324925478 +184862,6807,Monty Python,1248970712 +184862,6818,bleak,1254443824 +184862,6818,Byelorussia,1278263250 +184862,6818,disturbing,1209643595 +184862,6818,ex-imdb top 250,1209643669 +184862,6818,forceful,1256454449 +184862,6818,gritty,1259968751 +184862,6818,harsh,1262028467 +184862,6818,Russian,1255921257 +184862,6818,visceral,1263411526 +184862,6818,World War II,1278263214 +184862,6858,Janus 50,1182598179 +184862,6859,netflix top pick,1163260420 +184862,6863,Jack Black,1272143176 +184862,6867,Yahoo Top Pick,1156562984 +184862,6870,adapted from:book,1280560427 +184862,6870,author:Dennis Lehane,1310048350 +184862,6870,child abuse,1310048339 +184862,6870,Clint Eastwood,1311879706 +184862,6870,Dark,1352140981 +184862,6870,Dramatic,1384816183 +184862,6870,Oscar Nominee: Director,1310048346 +184862,6874,anime,1345994131 +184862,6874,assassin,1306612711 +184862,6874,blood,1151605721 +184862,6874,El Paso,1151605811 +184862,6874,martial arts,1280592498 +184862,6874,Okinawa,1151605811 +184862,6874,Quentin Tarantino,1280592497 +184862,6874,revenge,1151605723 +184862,6874,snakes,1151606317 +184862,6874,Tokyo,1151605811 +184862,6879,abuse of power,1273787155 +184862,6879,adapted from:book,1273786440 +184862,6879,author:John Grisham,1273786443 +184862,6879,Bechdel Test:Fail,1273787584 +184862,6879,courtroom,1273786453 +184862,6879,cynicism,1273787133 +184862,6879,Dustin Hoffman,1273786466 +184862,6879,Gene Hackman,1273786464 +184862,6879,Gun Control,1273787063 +184862,6879,John Cusack,1273786470 +184862,6879,jury tampering,1273787087 +184862,6879,lawyers,1273786990 +184862,6879,New Orleans,1273787108 +184862,6879,overly happy ending,1273786480 +184862,6879,paranoia,1273787047 +184862,6879,PG-13,1273787503 +184862,6879,PG-13:language,1273787503 +184862,6879,PG-13:thematic elements,1273787503 +184862,6879,PG-13:violence,1273787503 +184862,6879,Rachel Weisz,1273786483 +184862,6879,Recommendz Top Pick,1160170797 +184862,6879,seen 2010,1273786509 +184862,6879,trial,1273786994 +184862,6881,family,1280841578 +184862,6918,adapted from:book,1334545970 +184862,6918,Apu trilogy,1416524467 +184862,6918,BFI classic,1278262019 +184862,6918,college student,1249004200 +184862,6918,director-screenwriter,1334545970 +184862,6918,India,1254026405 +184862,6918,loss,1270592690 +184862,6918,mother-son relationship,1254026405 +184862,6918,poverty,1252616376 +184862,6918,printer,1254026603 +184862,6918,realism,1254445071 +184862,6918,screenwriter:Satyajit Ray,1334545970 +184862,6918,sequel,1202057928 +184862,6918,setting:Calcutta,1213803806 +184862,6918,trilogy,1254026385 +184862,6918,trilogy:Apu,1209646382 +184862,6932,ambition,1208972462 +184862,6932,Bollocks,1363458959 +184862,6932,Hayden Christensen,1276537068 +184862,6932,journalism,1158979964 +184862,6932,magazines,1215557808 +184862,6932,workaholic,1190601953 +184862,6942,british,1360564837 +184862,6944,Family,1432598691 +184862,6944,remake,1145171375 +184862,6944,wedding,1145171371 +184862,6947,Oscar Nominee: Director,1184937121 +184862,6957,Jinni Top Pick,1362781266 +184862,6961,adapted from:book,1360400108 +184862,6961,adultery,1262026115 +184862,6961,author:Josephine Hart,1360400108 +184862,6961,autumnal,1276531715 +184862,6961,screenwriter:David Hare,1360400108 +184862,6970,computers,1161361204 +184862,6970,Hepburn and Tracy,1271015153 +184862,6970,information retrieval,1271015148 +184862,6970,Katharine Hepburn,1271015168 +184862,6970,librarians,1271015152 +184862,6970,New York City,1203483331 +184862,6971,dreamlike,1215546098 +184862,6978,deadpan,1262026052 +184862,6978,easygoing,1262026055 +184862,6978,FilmAffinity Top Pick,1418686973 +184862,6978,humorous,1262026060 +184862,6978,irreverent,1262026063 +184862,6978,Richard Linklater,1262026067 +184862,6978,talky,1262026069 +184862,6979,70mm blowup,1232810625 +184862,6979,artificial intelligence,1232810449 +184862,6979,Cold War,1232810437 +184862,6979,command line inteface,1232810473 +184862,6979,computers,1232810441 +184862,6979,hackers,1232810458 +184862,6979,military,1232810463 +184862,6979,modem,1232810538 +184862,6979,NORAD,1232810479 +184862,6979,nuclear war,1232810679 +184862,6982,Janus 50,1182577922 +184862,6983,19th century,1158877647 +184862,6983,based on book,1158877647 +184862,6983,fire,1158877647 +184862,6983,gothic,1158878018 +184862,6983,insanity,1158877647 +184862,6983,nanny,1158877647 +184862,6983,Orphans,1158878018 +184862,6987,FilmAffinity top pick,1272157098 +184862,6989,Edgar Award (Best Motion Picture),1281243773 +184862,6990,Edgar Award (Best Motion Picture),1281243379 +184862,6993,adultery,1280560599 +184862,6993,Carrie Fisher,1334518811 +184862,6993,family,1165089487 +184862,6993,Oscar (Best Supporting Actor),1164476014 +184862,6993,Oscar (Best Supporting Actress),1165553409 +184862,6993,Woody Allen,1416608415 +184862,6998,mother daughter relationship,1172894177 +184862,6998,psychology,1172894177 +184862,7003,conspiracy,1181020178 +184862,7004,Cute!,1253293862 +184862,7004,elementary school,1204637948 +184862,7004,undercover cop,1150397383 +184862,7005,england,1143347440 +184862,7005,royalty,1143347440 +184862,7005,Universal,1143347440 +184862,7013,100 Essential Female Performances,1302304420 +184862,7013,adventure,1384889928 +184862,7013,AFI 100 (Thrills),1306612499 +184862,7013,atmospheric,1262028535 +184862,7013,BFI classic,1202663662 +184862,7013,creepy,1265185807 +184862,7013,good and evil,1155832271 +184862,7013,love/hate,1197354454 +184862,7013,menacing,1262028528 +184862,7013,ominous,1262028529 +184862,7013,preacher,1158418058 +184862,7013,River,1262028531 +184862,7013,stylized,1262028532 +184862,7016,70mm blowup,1172236264 +184862,7016,arm wrestling,1172236237 +184862,7016,father son relationship,1147480298 +184862,7016,Menahem Golan,1253292459 +184862,7016,obscure sports,1155832731 +184862,7016,sport:arm wrestling,1203483547 +184862,7016,sports competition,1199925488 +184862,7016,Sylvester Stallone,1253292444 +184862,7018,adultery,1352822766 +184862,7020,Australian,1145677877 +184862,7020,blindness,1215574609 +184862,7020,Notable Nudity,1276617388 +184862,7022,Sourcelight Top Pick,1137176494 +184862,7023,Ang Lee,1248982001 +184862,7023,ARRANGED MARRIAGES,1280841482 +184862,7023,breakthroughs,1254013468 +184862,7023,gay,1165546358 +184862,7023,wedding reception,1416609405 +184862,7026,Kirstie Alley,1280561280 +184862,7027,70mm blowup,1360101994 +184862,7032,Claudio Brook,1362322869 +184862,7032,forgettable,1147480047 +184862,7032,Mexico,1147480204 +184862,7032,produced by star,1147480247 +184862,7032,revenge,1147480204 +184862,7042,mental illness,1248916453 +184862,7042,Nudity (Full Frontal),1252613846 +184862,7042,sexuality,1280593111 +184862,7044,atmospheric,1306612628 +184862,7045,adapted from:book,1372791513 +184862,7045,author:Roald Dahl,1372791520 +184862,7045,screenwriter:Allan Scott,1372791551 +184862,7064,Janus 50,1182577756 +184862,7066,movielens top pick,1178247435 +184862,7069,adapted from:play,1201320344 +184862,7069,marriage,1201320422 +184862,7069,playwright:Shakespeare,1201320344 +184862,7076,Edgar Award (Best Motion Picture),1281119554 +184862,7086,Janus 50,1182598471 +184862,7088,Janus 50,1182577785 +184862,7089,dreamlike,1184905004 +184862,7089,ECCENTRIC FAMILIES,1184276141 +184862,7116,Edgar Award (Best Foreign Film),1281021646 +184862,7119,New York City,1176526587 +184862,7119,walked out during screening,1154068045 +184862,7121,AFI 100 (Laughs),1280843606 +184862,7121,courtroom,1169130874 +184862,7121,Hepburn and Tracy,1168637579 +184862,7139,like-i-like top pick,1189915144 +184862,7143,R:strong graphic battles,1200426489 +184862,7147,adapted from:book,1280560870 +184862,7147,Alabama,1346041857 +184862,7147,author:Daniel Wallace,1280560870 +184862,7147,bittersweet,1177189797 +184862,7147,circus,1177190049 +184862,7147,CIRCUSES AND CARNIVALS,1346041920 +184862,7147,college,1177190800 +184862,7147,colourful,1366735707 +184862,7147,Danny Elfman score,1177190800 +184862,7147,estrangement,1177190800 +184862,7147,FATHERS AND SONS,1346041862 +184862,7147,generations,1177190800 +184862,7147,giant,1177190800 +184862,7147,imdb top 250,1177190128 +184862,7147,JOURNEY OF SELF-DISCOVERY,1177190160 +184862,7147,Korean War,1177190800 +184862,7147,magic,1177189780 +184862,7147,modern fantasy,1177189794 +184862,7147,Nudity (Rear),1177189789 +184862,7147,Oscar Nominee: Music - Original Score,1177190800 +184862,7147,salesmen,1177190800 +184862,7147,sentimental,1177190165 +184862,7147,SMALL-TOWN LIFE,1177189777 +184862,7147,storytelling,1202677897 +184862,7147,surrealism,1177190099 +184862,7147,twins,1177190800 +184862,7147,witch,1177190800 +184862,7149,aging,1360563854 +184862,7149,heart attack,1148854604 +184862,7149,Notable Nudity,1152296643 +184862,7151,like-i-like top pick,1161371308 +184862,7153,adapted from:book,1262108387 +184862,7153,atmospheric,1370211217 +184862,7153,author:J. R. R. Tolkein,1262108387 +184862,7153,elves,1259946090 +184862,7153,great war scene,1259946092 +184862,7153,king,1259946110 +184862,7153,magic,1259946690 +184862,7153,oddly moving,1259946095 +184862,7153,Oscar (Best Music - Original Score),1259946096 +184862,7153,Oscar (Best Music - Original Song),1259946098 +184862,7153,Oscar (Best Picture),1259946100 +184862,7153,Saturn Award (Best Fantasy Film),1259946102 +184862,7156,Errol Morris,1254011893 +184862,7156,History,1145581559 +184862,7156,honesty,1352847855 +184862,7156,Oscar (Best Documentary Feature),1263450461 +184862,7156,thought provoking,1416597553 +184862,7156,Vietnam War,1254011883 +184862,7158,adapted from:book,1370216653 +184862,7158,American dream,1280560465 +184862,7158,author:Andre Dubus III,1370216627 +184862,7158,culture clash,1416524163 +184862,7158,director-screenwriter,1370216627 +184862,7158,heartbreaking,1443073088 +184862,7158,immigrants,1451886579 +184862,7158,real estate,1302303894 +184862,7158,screenwriter:Shawn Lawrence Otto,1370216627 +184862,7164,Jinni Top Pick,1363541047 +184862,7209,Janus 50,1182598305 +184862,7215,adapted from:book,1365367912 +184862,7215,author:Ernest Hemingway,1365367914 +184862,7229,adapted from:true story,1302400774 +184862,7229,author:Mark Bowden,1302400774 +184862,7229,dockworker,1360564424 +184862,7229,screenwriter:Carol Sobieski,1302400774 +184862,7229,screenwriter:Ramon Menendez,1360564134 +184862,7229,screenwriter:Tom Musca,1302400774 +184862,7234,Janus 50,1182598698 +184862,7238,Janus 50,1182577689 +184862,7247,70mm,1212080022 +184862,7247,author:Ian Fleming,1212080717 +184862,7247,based on a book,1212080717 +184862,7247,family,1212080717 +184862,7247,fictional European country,1212080717 +184862,7247,flying car,1212080717 +184862,7247,G,1212080793 +184862,7247,gadget car,1212080717 +184862,7247,independent film,1212080813 +184862,7247,inventor,1212080717 +184862,7247,Oscar Nominee: Music - Original Song,1212080717 +184862,7247,screenwriter:Roald Dahl,1212080929 +184862,7247,single father,1212080717 +184862,7247,toy maker,1212080717 +184862,7247,vehicle:car,1212080717 +184862,7263,1970s,1158268020 +184862,7263,1980s,1158268020 +184862,7263,ESPY award,1178054639 +184862,7263,hockey,1158267986 +184862,7263,Olympics,1158267981 +184862,7263,Seen 2006,1158274794 +184862,7263,Sports,1158267988 +184862,7263,SUCCESS IS THE BEST REVENGE,1193679184 +184862,7263,underdogs,1158268039 +184862,7263,Yahoo Top Pick,1143943682 +184862,7285,drama,1137132818 +184862,7285,drugs,1137132818 +184862,7285,piercings,1137132818 +184862,7285,scary,1137132818 +184862,7285,teen,1137132818 +184862,7304,classical music,1161361471 +184862,7313,Arizona,1203483699 +184862,7313,helicopters,1199925773 +184862,7313,Sean Young,1253292357 +184862,7317,cliche,1302396050 +184862,7317,mimes,1199752929 +184862,7317,road trip,1148405624 +184862,7317,Seen 2006,1148405618 +184862,7338,Janus 50,1182598600 +184862,7348,Classical Studies,1345995785 +184862,7361,alternate reality,1360102885 +184862,7361,attachment,1249005824 +184862,7361,beautiful,1364709242 +184862,7361,bittersweet,1280560768 +184862,7361,colourful,1384895445 +184862,7361,memory,1249005826 +184862,7361,nonlinear,1268249655 +184862,7361,Nudity (Topless - Brief),1302303566 +184862,7361,Oscar (Best Writing - Screenplay Written Directly for the Screen),1249005827 +184862,7361,quirky,1249005830 +184862,7361,screenwriter:Charlie Kaufman,1302303486 +184862,7361,surreal,1280560757 +184862,7387,apocalypse,1352139291 +184862,7387,cynical,1352139282 +184862,7387,helicopters,1158272041 +184862,7387,horror,1432595992 +184862,7387,mall,1352139283 +184862,7387,sequel,1158272079 +184862,7387,zombies,1352139286 +184862,7415,Edgar Award (Best Motion Picture),1281159676 +184862,7419,anxiety,1362321707 +184862,7419,black comedy,1146785195 +184862,7419,Martin Scorsese,1416608282 +184862,7419,NYC,1139592045 +184862,7419,surreal,1139592045 +184862,7438,atmospheric,1280592771 +184862,7438,buried alive,1151605996 +184862,7458,Homer,1150465542 +184862,7478,Cambodia,1158979805 +184862,7478,concert,1156536632 +184862,7478,History,1177827375 +184862,7478,Jonathan Demme,1276617728 +184862,7478,monologue,1276617223 +184862,7478,movie about a movie,1276617230 +184862,7478,movie business,1208972269 +184862,7478,one man show,1451886276 +184862,7478,R,1215567970 +184862,7478,spoken word,1156536632 +184862,7481,aliens,1444061349 +184862,7482,kung fu,1169274547 +184862,7482,martial arts,1162049382 +184862,7484,Albert Maysles,1352848123 +184862,7484,concert,1154675952 +184862,7484,Hell's Angels,1154675983 +184862,7484,murder,1161321471 +184862,7484,rolling stones,1248967422 +184862,7484,San Francisco,1248967426 +184862,7484,violence,1154675983 +184862,7487,1930s,1276531666 +184862,7489,archives,1254011224 +184862,7489,Bavaria,1253280328 +184862,7489,comedy,1254445888 +184862,7489,director-screenwriter,1179012780 +184862,7489,Germany,1145721687 +184862,7489,holocaust,1171560958 +184862,7489,institutions,1168151365 +184862,7489,nazis,1143223404 +184862,7489,Oscar Nominee: Foreign Language (Germany),1254011257 +184862,7489,PG-13,1175431799 +184862,7489,revisionism,1254011252 +184862,7489,Sentana Filmproduktion,1184272338 +184862,7491,RatingZone top pick,1137176323 +184862,7502,not a movie,1441720140 +184862,7523,home invasion,1155369316 +184862,7569,screenwriter:Roald Dahl,1212082900 +184862,7578,aristocracy,1307771319 +184862,7578,black and white,1307771418 +184862,7578,Claudette Colbert,1307770793 +184862,7578,CONS AND SCAMS,1307771280 +184862,7578,Don Ameche,1307770795 +184862,7578,farce,1307771359 +184862,7578,FilmAffinity top pick,1198437946 +184862,7578,impersonation,1307771205 +184862,7578,Mitchell Leisen,1307770803 +184862,7578,Paris,1307771229 +184862,7578,screenwriter:Billy Wilder,1307772606 +184862,7578,screenwriter:Charles Brackett,1307772606 +184862,7578,Screwball Comedy,1307771359 +184862,7578,Seen 2011,1307771041 +184862,7578,taxi driver,1307771188 +184862,7585,Janus 50,1182598720 +184862,7618,based on a true story,1182533278 +184862,7618,Biography,1273788165 +184862,7618,Robert Downey Jr.,1273788188 +184862,7669,19th century,1248914464 +184862,7669,acting,1366727538 +184862,7669,adapted from:book,1248914467 +184862,7669,author:Jane Austen,1248914469 +184862,7669,Colin Firth,1254013390 +184862,7669,comedy of manners,1278261294 +184862,7669,England,1248914478 +184862,7669,Father-Daughter Relationship,1248915026 +184862,7669,Jennifer Ehle,1270591994 +184862,7669,made for TV,1248914486 +184862,7669,matchmaking,1248915067 +184862,7669,period drama,1280812810 +184862,7669,rural,1248915018 +184862,7669,sisters,1248914489 +184862,7669,TV miniseries,1248914525 +184862,7700,Janus 50,1182598850 +184862,7730,nostalgia,1152213048 +184862,7756,13th Century,1150982114 +184862,7756,baby killing,1156432427 +184862,7756,battle,1156432427 +184862,7756,history,1182577633 +184862,7756,ice,1156432427 +184862,7756,Janus 50,1182577633 +184862,7756,propaganda,1175841591 +184862,7756,Russia,1150982114 +184862,7766,16th century,1248926030 +184862,7766,adapted from:play,1187228175 +184862,7766,Akira Kurosawa,1259961293 +184862,7766,ambition,1151302386 +184862,7766,archery,1248926033 +184862,7766,atmospheric,1175432209 +184862,7766,betrayal,1201320933 +184862,7766,bleak,1334546616 +184862,7766,Criterion,1232825123 +184862,7766,ex-imdb top 250,1255928637 +184862,7766,foggy,1209643556 +184862,7766,forest,1156432295 +184862,7766,ghosts,1151606398 +184862,7766,grim,1248926041 +184862,7766,japanese,1187228201 +184862,7766,MacBeth,1149269718 +184862,7766,playwright:Shakespeare,1201320684 +184862,7766,prophecy,1171561609 +184862,7766,setting:Japan,1215485442 +184862,7766,studio:Toho,1215485472 +184862,7767,MoviePig Top Pick,1213839498 +184862,7786,movielens top pick,1158979593 +184862,7820,Janus 50,1182598814 +184862,7896,1890s,1150987423 +184862,7896,affectionate,1254443938 +184862,7896,autumnal,1254013626 +184862,7896,brothel,1248965440 +184862,7896,brothers,1152933248 +184862,7896,California,1153449839 +184862,7896,elegiac,1262720067 +184862,7896,gold,1270592334 +184862,7896,gunfight,1259968535 +184862,7896,Joel McCrea,1262028341 +184862,7896,MGM,1269665208 +184862,7896,mining,1155831908 +184862,7896,murder,1278261613 +184862,7896,nostalgic,1255926723 +184862,7896,Randolph Scott,1262028341 +184862,7896,redemption,1248965443 +184862,7896,runaway,1156388396 +184862,7896,Sam Peckinpah,1256454359 +184862,7896,scope,1171560585 +184862,7896,shooting,1210346231 +184862,7896,USA film registry,1248965446 +184862,7896,wedding,1155831908 +184862,7924,Akira Kurosawa,1261996848 +184862,7924,atmospheric,1278263359 +184862,7924,ballistics,1151606759 +184862,7924,baseball,1261996856 +184862,7924,black market,1148973817 +184862,7924,bleak,1204638765 +184862,7924,Criterion,1261996854 +184862,7924,firing range,1148226201 +184862,7924,guns,1137778133 +184862,7924,heat wave,1149269468 +184862,7924,Japan,1137778133 +184862,7924,mass transport,1148226201 +184862,7924,police,1148973783 +184862,7924,ROOKIE COPS,1197339615 +184862,7924,Seen 2006,1137778241 +184862,7924,small-time crooks,1137778133 +184862,7924,tense,1263411082 +184862,7924,Toho,1148973856 +184862,7924,Tokyo,1148226269 +184862,7926,adapted from:book,1248964918 +184862,7926,Akira Kurosawa,1254013659 +184862,7926,author:Ed McBain,1248965316 +184862,7926,bleak,1248965321 +184862,7926,business,1248965323 +184862,7926,businessman,1210961517 +184862,7926,chauffeur,1152933225 +184862,7926,Criterion,1254013642 +184862,7926,deliberate,1254013732 +184862,7926,disturbing,1248965326 +184862,7926,ethics,1248965416 +184862,7926,ex-imdb top 250,1255926778 +184862,7926,film noir,1270592401 +184862,7926,Japan,1140206200 +184862,7926,kidnapping,1143779142 +184862,7926,moral dilemma,1254444014 +184862,7926,police,1149835015 +184862,7926,ransom,1259964294 +184862,7926,sacrifice,1278261666 +184862,7926,Tatsuya Nakadai,1365364021 +184862,7926,Toho,1154446333 +184862,7926,Toshirô Mifune,1256454221 +184862,7926,Yokohama,1148574979 +184862,7934,1920s,1174081700 +184862,7934,1930s,1174081700 +184862,7934,fake documentary,1174081412 +184862,7934,New Jersey,1174081718 +184862,7934,psychiatry,1177464381 +184862,7934,satire,1174081409 +184862,7943,adapted from:short story,1262719793 +184862,7943,atmospheric,1262719796 +184862,7943,author:Ernest Hemingway,1215483370 +184862,7943,Bechdel Test:Fail,1215550573 +184862,7943,black and white,1262719802 +184862,7943,bleak,1262719804 +184862,7943,boxing,1280843959 +184862,7943,Burt Lancaster,1275005375 +184862,7943,CRIME GONE AWRY,1262719874 +184862,7943,Criterion,1384889818 +184862,7943,detective,1215483370 +184862,7943,diner,1262719870 +184862,7943,DISHONOR AMONG THIEVES,1262719876 +184862,7943,Edgar Award (Best Motion Picture),1280844089 +184862,7943,FEMMES FATALES,1262719877 +184862,7943,FilmAffinity top pick,1181104200 +184862,7943,gloomy,1215483138 +184862,7943,gritty,1262719811 +184862,7943,HAUNTED BY THE PAST,1262719879 +184862,7943,hit men,1262719813 +184862,7943,insurance,1262719814 +184862,7943,moody,1215483144 +184862,7943,murder,1215483370 +184862,7943,National Film Registry,1262719951 +184862,7943,New Jersey,1262719870 +184862,7943,noir thriller,1432586817 +184862,7943,Oscar Nominee: Director,1215483616 +184862,7943,Oscar Nominee: Editing,1215483616 +184862,7943,Oscar Nominee: Music - Score - Drama,1215483616 +184862,7943,Oscar Nominee: Screenwriting,1215483616 +184862,7943,Philadelphia,1262719870 +184862,7943,robbery,1215483370 +184862,7943,Seen 2008,1215483370 +184862,7984,adapted from:short story,1432595774 +184862,7984,author:H. P. Lovecraft,1432595835 +184862,7988,PG-13:sci-fi action violence,1366654844 +184862,8039,affectionate,1255201372 +184862,8039,Colorado,1165544547 +184862,8039,Spoof,1171049490 +184862,8056,Edgar Award (Best Motion Picture),1281119469 +184862,8125,FilmAffinity top pick,1254527831 +184862,8128,boarding school,1219900121 +184862,8153,Van Gogh,1155316428 +184862,8195,Cannes:jury prize,1182577497 +184862,8195,Criterion,1202677406 +184862,8195,deliberate,1182577107 +184862,8195,Enigmatic,1182577093 +184862,8195,existential,1182577497 +184862,8195,island,1182577497 +184862,8195,Janus 50,1182577497 +184862,8195,MISSING PERSONS,1182577497 +184862,8195,Rome,1182577497 +184862,8195,Sicily,1182577497 +184862,8199,Janus 50,1182598783 +184862,8239,Claudio Brook,1362322828 +184862,8239,Janus 50,1182598831 +184862,8270,1940's,1181020760 +184862,8270,director-screenwriter,1371320204 +184862,8270,hairdresser,1209644626 +184862,8270,marriage,1152933127 +184862,8270,obsession,1153428420 +184862,8270,Patrice Leconte,1264275169 +184862,8270,screenwriter:Claude Klotz,1371320192 +184862,8360,animation,1416588615 +184862,8360,fairy tale,1152290895 +184862,8361,global warming,1150718262 +184862,8361,Mark Gordon Productions,1185509795 +184862,8362,basic values,1264273751 +184862,8362,cute,1264273753 +184862,8362,cute and nice,1264273830 +184862,8362,fashion,1264274024 +184862,8362,Felicity Huffman,1264273757 +184862,8362,formulaic,1264273761 +184862,8362,Garry Marshall,1264273763 +184862,8362,grieving,1264273775 +184862,8362,guardian,1264273778 +184862,8362,Hayden Panettiere,1264273780 +184862,8362,Joan Cusack,1264273797 +184862,8362,John Corbett,1264273735 +184862,8362,Kate Hudson,1264273801 +184862,8362,life lessons,1264273915 +184862,8362,Lutheran,1264273804 +184862,8362,models,1264274034 +184862,8362,mourning,1264273806 +184862,8362,New York City,1264273933 +184862,8362,oldschoolish,1264273810 +184862,8362,OPPOSITES ATTRACT,1264273899 +184862,8362,orphans,1264274087 +184862,8362,pastor,1264273882 +184862,8362,PG-13,1264274245 +184862,8362,PG-13:thematic issues involving teens,1264274245 +184862,8362,prom,1264273813 +184862,8362,upbringing,1264273817 +184862,8364,biopic,1150987087 +184862,8364,black,1142041638 +184862,8368,harry potter,1171049351 +184862,8368,magic,1171049333 +184862,8368,sequel,1171049380 +184862,8376,Recommendz Top Pick,1171667123 +184862,8395,Edgar Award (Best Motion Picture),1281119892 +184862,8456,Edgar Award (Best Motion Picture),1281119670 +184862,8456,Jinni Top Pick,1312607001 +184862,8464,documentary,1416519681 +184862,8477,airport,1200618363 +184862,8477,Argos Films,1200618363 +184862,8477,Bechdel Test:Fail,1208369080 +184862,8477,experiment,1232845497 +184862,8477,memory,1232848542 +184862,8477,narrated,1200617697 +184862,8477,Paris,1200618363 +184862,8477,post-apocalyptic,1200618363 +184862,8477,Seen 2008,1200617727 +184862,8477,short,1200618363 +184862,8477,time travel,1200618363 +184862,8477,wikilens top pick,1174091687 +184862,8507,adapted from:short story,1352137679 +184862,8507,atmospheric,1352137322 +184862,8507,attempted murder,1352138339 +184862,8507,author:Clarence Aaron Robbins,1352137679 +184862,8507,Bechdel Test:Fail,1352138824 +184862,8507,black and white,1352137324 +184862,8507,circus,1352137326 +184862,8507,CIRCUSES AND CARNIVALS,1352137328 +184862,8507,classic,1352137330 +184862,8507,controversial,1352137332 +184862,8507,creepy,1352137333 +184862,8507,cult classic,1352137335 +184862,8507,cult film,1352137337 +184862,8507,dark,1352137339 +184862,8507,disturbing,1352137343 +184862,8507,eerie,1352137346 +184862,8507,emaciation,1352138317 +184862,8507,FilmAffinity top pick,1161990064 +184862,8507,freaks,1352137348 +184862,8507,gruesome,1352137349 +184862,8507,handicapped,1352138252 +184862,8507,horses,1352138361 +184862,8507,knives,1362321966 +184862,8507,legless person,1352138195 +184862,8507,menacing,1352137352 +184862,8507,National Film Registry,1352137354 +184862,8507,pistol,1352138167 +184862,8507,poison,1352138146 +184862,8507,revenge,1352138229 +184862,8507,Seen 2012,1352138824 +184862,8507,short,1352137358 +184862,8507,strange,1352137359 +184862,8507,surrealism,1352138276 +184862,8507,tense,1352137361 +184862,8507,touching,1352137362 +184862,8507,unconventional romance,1352138396 +184862,8528,cheerleading,1155369201 +184862,8528,Las Vegas,1155369201 +184862,8528,obscure sports,1155369076 +184862,8528,Seen 2006,1155369201 +184862,8528,Twentieth Century-Fox,1205781545 +184862,8533,undressing,1355294382 +184862,8581,like-i-like top pick,1170540407 +184862,8620,Claudio Brook,1362322802 +184862,8622,conspiracy,1254011488 +184862,8622,liberal,1181049028 +184862,8622,political,1263450393 +184862,8622,politics,1416597476 +184862,8622,terrorism,1167340507 +184862,8623,astronomy,1345994802 +184862,8636,action,1139076751 +184862,8636,adapted from:comic,1352842581 +184862,8636,comic book,1144430654 +184862,8636,Marvel,1139076751 +184862,8636,New York City,1164479137 +184862,8636,newspaper theme,1139077603 +184862,8636,nuclear fusion,1139076751 +184862,8636,Oscar (Best Effects - Visual Effects),1280601229 +184862,8636,revenge,1139076751 +184862,8636,Seen 2006,1139076751 +184862,8636,sequel,1139076751 +184862,8636,super-hero,1139076751 +184862,8636,superhero,1164479085 +184862,8638,activist,1306446813 +184862,8638,dialogue,1137830370 +184862,8638,emotional,1306446796 +184862,8638,generation X,1163915834 +184862,8638,minimalist,1148575819 +184862,8638,Oscar Nominee: Adapted Screenplay,1160885835 +184862,8638,Paris,1137830370 +184862,8638,romantic,1416608447 +184862,8638,Seen 2006,1137830370 +184862,8638,sequel,1145679060 +184862,8638,writers,1148575784 +184862,8640,5th century,1184900068 +184862,8640,Arthurian legend,1184900068 +184862,8640,battle,1184900069 +184862,8640,britain,1184900069 +184862,8640,Christianity,1184900069 +184862,8640,ice,1184900068 +184862,8640,invasion,1184900069 +184862,8640,Jerry Bruckheimer,1184900068 +184862,8640,knights,1184900068 +184862,8640,medieval,1184899326 +184862,8640,Myth,1184899216 +184862,8640,pagan,1184900068 +184862,8640,pg-13,1184900069 +184862,8640,Roman empire,1184900069 +184862,8640,scope,1184900069 +184862,8640,undressing,1355294478 +184862,8644,Jinni Top Pick,1267603726 +184862,8665,adapted from:book,1253253607 +184862,8665,author:Robert Ludlum,1253253585 +184862,8665,car chase,1213813039 +184862,8665,espionage,1254445507 +184862,8666,like-i-like top pick,1171124109 +184862,8684,adapted from:book,1370206579 +184862,8684,austere,1370206225 +184862,8684,based on a true story,1370206579 +184862,8684,Bechdel Test:Fail,1370206365 +184862,8684,Criterion,1370206235 +184862,8684,deliberate,1370206252 +184862,8684,director-screenwriter,1370206579 +184862,8684,FilmAffinity top pick,1361745652 +184862,8684,France,1370206745 +184862,8684,French,1370206745 +184862,8684,Lyon,1370206745 +184862,8684,meditative,1370206250 +184862,8684,Old,1370206259 +184862,8684,prison,1370206753 +184862,8684,prison escape,1370206745 +184862,8684,reflective,1370206263 +184862,8684,religion,1370208176 +184862,8684,repetitive,1370206270 +184862,8684,Robert Bresson,1370206274 +184862,8684,Seen 2013,1370206331 +184862,8684,trains,1370206745 +184862,8684,understated,1370206277 +184862,8710,elegiac,1177827060 +184862,8740,alcoholism,1177194100 +184862,8740,based on a play,1177194100 +184862,8740,movielens top pick,1154705624 +184862,8740,poverty,1177194100 +184862,8740,Seen 2007,1177194100 +184862,8752,movielens top pick,1147532305 +184862,8755,movielens top pick,1213820514 +184862,8772,Edgar Award (Best Motion Picture),1281119381 +184862,8784,coming of age,1280806643 +184862,8798,Criticker top pick,1366765402 +184862,8836,not thrilling at all,1163089804 +184862,8836,remake of a french film,1163089801 +184862,8841,cameo-fest,1201993801 +184862,8841,director-screenwriter,1213766944 +184862,8841,Los Angeles,1201993801 +184862,8841,Pariah Entertainment,1201993801 +184862,8841,R,1201993801 +184862,8841,R:drug material,1201993801 +184862,8841,R:language,1201993801 +184862,8841,R:strong sexual content,1201993801 +184862,8841,relationships,1201993801 +184862,8841,scope,1201993801 +184862,8873,Oscar (Best Music - Original Song),1152291700 +184862,8874,anti-hero,1276528130 +184862,8874,black comedy,1276527418 +184862,8874,break-up,1276528324 +184862,8874,British,1276527422 +184862,8874,british comedy,1276527426 +184862,8874,comedy,1452762280 +184862,8874,Criticker top pick,1209299593 +184862,8874,dark comedy,1320122159 +184862,8874,dark humor,1276527429 +184862,8874,decapitation,1276528107 +184862,8874,dysfunctional society,1276528068 +184862,8874,england,1276527432 +184862,8874,gore,1276527436 +184862,8874,hit and run,1276528307 +184862,8874,horror,1276527440 +184862,8874,London,1276527443 +184862,8874,murder,1276527447 +184862,8874,parody,1276527449 +184862,8874,R,1276528572 +184862,8874,R:gore,1276528572 +184862,8874,R:language,1276528572 +184862,8874,R:zombie violence,1276528572 +184862,8874,room-mate from hell,1276528258 +184862,8874,Seen 2010,1276527496 +184862,8874,Simon Pegg,1276527456 +184862,8874,slackers,1276528026 +184862,8874,spoof,1276527459 +184862,8874,stepfather,1276528167 +184862,8874,television,1276528197 +184862,8874,violent,1276527461 +184862,8874,zombies,1276527464 +184862,8937,ESPY award,1178054610 +184862,8948,Nudity (Topless),1184361883 +184862,8949,adapted from:book,1307850010 +184862,8949,author:Rex Pickett,1307850010 +184862,8949,dark comedy,1280560637 +184862,8949,screenwriter:Alexander Payne,1307850041 +184862,8949,screenwriter:Jim Taylor,1307850041 +184862,8949,wine,1416608126 +184862,8961,alter ego,1302545507 +184862,8961,animated,1352842633 +184862,8961,comic book,1152291075 +184862,8961,family,1150467176 +184862,8961,Pixar,1144430668 +184862,8961,super-hero,1148973300 +184862,8966,adultery,1306613005 +184862,8966,biographical,1384895619 +184862,8970,Oscar (Best Music - Original Score),1152291931 +184862,8977,bloated,1142829931 +184862,8977,couldn't finish,1142829931 +184862,8981,bleak,1365365598 +184862,8981,chat rooms,1162441175 +184862,8981,relationships,1416625289 +184862,8984,Brad Pitt,1266535541 +184862,8984,cameo:Bruce Willis,1311895718 +184862,8984,heist,1153449949 +184862,9018,al-jazeera,1181020798 +184862,9018,documentary critique,1184276109 +184862,9018,Iraq,1143779243 +184862,9018,Iraq war,1153428449 +184862,9018,journalism,1152932606 +184862,9018,media,1152968943 +184862,9018,media politics,1143223145 +184862,9018,news media,1183686849 +184862,9018,NR,1167340541 +184862,9018,Qatar,1143779243 +184862,25750,AFI 100 (Laughs),1177191187 +184862,25750,Buster Keaton,1253295039 +184862,25750,easygoing,1171561331 +184862,25750,madcap,1248965588 +184862,25750,National Film Registry,1248965588 +184862,25750,silent,1169130268 +184862,25763,Janus 50,1182598401 +184862,25769,Buster Keaton,1253295019 +184862,25769,Charles Reisner,1366735595 +184862,25769,CLASS DIFFERENCES,1248965532 +184862,25769,hurricane,1248965536 +184862,25769,mass transport,1248965537 +184862,25769,silent,1232904184 +184862,25769,stunts,1248965542 +184862,25769,underdog,1248965545 +184862,25855,1920s,1262720366 +184862,25855,alcohol,1153536243 +184862,25855,drinking,1270592757 +184862,25855,end of war,1262720606 +184862,25855,FALL FROM POWER,1269665765 +184862,25855,gangsters,1153537861 +184862,25855,Humphrey Bogart,1262721071 +184862,25855,James Cagney,1275023221 +184862,25855,movielens top pick,1147532282 +184862,25855,narrated,1153536281 +184862,25855,New York City,1153537841 +184862,25855,nightclub,1153536243 +184862,25855,Prohibition,1153537841 +184862,25855,Seen 2006,1153536243 +184862,25855,taxi cabs,1262720376 +184862,25855,unemployment,1153536281 +184862,25855,veterans,1153537736 +184862,25855,Warner Bros,1172181398 +184862,25855,World War I,1153536243 +184862,25914,biopic,1253293077 +184862,25914,Sergei M. Eisenstein,1311951198 +184862,25941,1900s,1278262223 +184862,25941,Bechdel Test:Pass (barely),1278301809 +184862,25941,FilmAffinity top pick,1276701698 +184862,25941,innocence,1278262767 +184862,25941,Joan Fontaine,1278262137 +184862,25941,Louis Jourdan,1278262672 +184862,25941,Milan,1278262743 +184862,25941,music teacher,1278262893 +184862,25941,National Film Registry,1280843456 +184862,25941,platonic love,1278262695 +184862,25941,railway station,1278262856 +184862,25941,runaway,1278262824 +184862,25941,seduction,1278262713 +184862,25941,Seen 2010,1278301782 +184862,25941,typhus,1278262824 +184862,25941,vienna,1278262863 +184862,26055,Janus 50,1182577889 +184862,26116,Edgar Award (Best Motion Picture),1281119298 +184862,26133,2D animation,1311835830 +184862,26133,Christmas,1258389878 +184862,26133,short,1269698415 +184862,26150,15th century,1149269676 +184862,26150,Andrei Tarkovsky,1255928678 +184862,26150,atmospheric,1175432230 +184862,26150,biography,1262717536 +184862,26150,Criterion,1232825736 +184862,26150,deliberate,1248926061 +184862,26150,downbeat,1278263047 +184862,26150,iconography,1201321292 +184862,26150,Mosfilm,1151302336 +184862,26150,painter,1259961319 +184862,26150,painting,1149269639 +184862,26150,religion,1248926064 +184862,26150,Russia,1248926066 +184862,26152,alter ego,1191023023 +184862,26152,Batman,1152685693 +184862,26152,camp,1137783932 +184862,26152,super-hero,1137783921 +184862,26178,movielens top pick,1147532312 +184862,26270,movielens top pick,1252616529 +184862,26302,movielens top pick,1149859051 +184862,26317,adapted from:book,1248916480 +184862,26395,movielens top pick,1272615971 +184862,26403,2D animation,1366223037 +184862,26403,adapted from:book,1248968391 +184862,26403,animation,1248968401 +184862,26403,author:J. R. R. Tolkein,1248968406 +184862,26403,dragon,1248968414 +184862,26403,scary,1248968417 +184862,26425,movielens top pick,1147532265 +184862,26472,culture clash,1324887674 +184862,26472,rats,1181942185 +184862,26501,loneliness,1249022771 +184862,26501,Los Angeles,1249022786 +184862,26501,telephone,1249022771 +184862,26581,civil war,1320148313 +184862,26631,adapted from:book,1248970676 +184862,26631,author:Lewis Carroll,1248970676 +184862,26631,miniaturization,1248970676 +184862,26631,stop motion,1248970681 +184862,26663,murder,1150468282 +184862,26663,Patrice Leconte,1267469808 +184862,26680,dysfunctional family,1204049265 +184862,26686,Bill Cosby,1249005597 +184862,26694,Yimou Zhang,1280592855 +184862,26710,high school,1249022414 +184862,26710,Ohio,1249022403 +184862,26710,outsider,1249022403 +184862,26710,PG-13,1249022403 +184862,26710,small town,1249022403 +184862,26710,teacher student relationship,1249022424 +184862,26710,teenage girl,1249022403 +184862,26712,wikilens top pick,1233124842 +184862,26732,director-screenwriter,1304927937 +184862,26732,Roberto Benigni,1259961032 +184862,26788,adapted from:book,1280596894 +184862,26788,author:Yuan Bin Chen,1280596893 +184862,26819,dystopia,1199747285 +184862,26819,jailbreak,1140201332 +184862,26819,overpopulation,1203483497 +184862,26819,prison,1172236161 +184862,26838,based on a book,1171561184 +184862,26838,Catholicism,1171561184 +184862,26838,Dublin,1171561184 +184862,26838,father daughter relationship,1171561184 +184862,26838,gossip,1171561184 +184862,26838,Irish,1171561184 +184862,26838,pregnancy,1171561184 +184862,26939,loser trilogy,1371320590 +184862,27311,movielens top pick,1265611838 +184862,27366,TIFF Top 30 of the 2000s,1259181298 +184862,27592,movielens top pick,1147532258 +184862,27611,androids,1320126376 +184862,27611,complex,1366735910 +184862,27611,military,1261994186 +184862,27611,MILITARY LIFE,1263410987 +184862,27611,reboot,1364709974 +184862,27611,sci-fi,1444060557 +184862,27706,adapted from:book series,1204049649 +184862,27706,Adventure,1372791452 +184862,27706,based on a book,1161361378 +184862,27706,irreverent,1372791454 +184862,27706,Orphans,1148679635 +184862,27721,Edgar Award (Best Motion Picture Screenplay),1281279429 +184862,27773,adapted from:comic,1362320575 +184862,27773,Bechdel Test:Fail,1362320540 +184862,27773,Chan-wook Park,1362319951 +184862,27773,cigarette smoking,1362321056 +184862,27773,Cinematography,1384816775 +184862,27773,classic,1362319954 +184862,27773,claustrophobic,1362320807 +184862,27773,Criticker top pick,1276875155 +184862,27773,delivery boy,1366681704 +184862,27773,depressing,1443073562 +184862,27773,disturbing,1362320809 +184862,27773,FilmAffinity top pick,1158439679 +184862,27773,flashy,1362320813 +184862,27773,great concept,1362320821 +184862,27773,great soundtrack,1362320823 +184862,27773,guilt,1362321114 +184862,27773,hallucinatory,1362320828 +184862,27773,hand to hand combat,1362321248 +184862,27773,Korea,1362320831 +184862,27773,macabre,1362320835 +184862,27773,man inside suitcase,1362321224 +184862,27773,Nudity (Full Frontal),1362320837 +184862,27773,overrated,1362320840 +184862,27773,penthouse,1362321203 +184862,27773,photo album,1362321161 +184862,27773,photograph,1362321138 +184862,27773,R,1362321348 +184862,27773,R:pervasive language,1362321348 +184862,27773,R:scenes of torture,1362321348 +184862,27773,R:sexuality,1362321348 +184862,27773,R:strong violence,1362321348 +184862,27773,revenge,1362320844 +184862,27773,Seen 2013,1362319982 +184862,27773,sense of taste,1362321093 +184862,27773,Seoul,1362321280 +184862,27773,shower cap,1362321271 +184862,27773,stylized,1362320847 +184862,27773,tense,1362320849 +184862,27773,twist ending,1362320851 +184862,27773,vengeance,1362320853 +184862,27773,violent,1362320855 +184862,27773,watching TV,1362321034 +184862,27773,Yahoo Top Pick,1138412803 +184862,27790,British,1232903942 +184862,27790,currency conversion,1156388155 +184862,27790,dead mother,1156388196 +184862,27790,England,1156388274 +184862,27790,money,1156388076 +184862,27790,religion,1156388073 +184862,27790,robbery,1156388155 +184862,27790,saints,1156388079 +184862,27790,Seen 2006,1156388747 +184862,27790,trains,1156388155 +184862,27790,whimsical,1156388087 +184862,27831,adapted from:book,1384815494 +184862,27831,Amsterdam,1384896016 +184862,27831,author:J. J. Connolly,1384815494 +184862,27831,Bechdel Test:Fail,1384814743 +184862,27831,boring,1384814747 +184862,27831,british,1384814750 +184862,27831,British gangster,1384814754 +184862,27831,confusing,1384814757 +184862,27831,daniel craig,1384814759 +184862,27831,different perspectives,1384815638 +184862,27831,directorial debut,1384814762 +184862,27831,drug dealing,1384815541 +184862,27831,DRUG TRADE,1384814764 +184862,27831,drugs,1384814765 +184862,27831,ending,1384814767 +184862,27831,Exquisite plotting.,1384814768 +184862,27831,food in title,1384815611 +184862,27831,gangster,1384814770 +184862,27831,gangsters,1384814772 +184862,27831,guy ritchie,1384814775 +184862,27831,informer,1384815850 +184862,27831,London,1384896016 +184862,27831,MISSING PERSONS,1384815924 +184862,27831,murder,1384815924 +184862,27831,Nudity (Topless),1384814778 +184862,27831,organized crime,1384814779 +184862,27831,overrated,1384814781 +184862,27831,R,1384816028 +184862,27831,R:drug use,1384816027 +184862,27831,R:nudity,1384816028 +184862,27831,R:pervasive language,1384816028 +184862,27831,R:sexuality,1384816028 +184862,27831,R:strong brutal violence,1384816028 +184862,27831,screenwriter:J. J. Connolly,1384815501 +184862,27831,Seen 2013,1384814743 +184862,27831,shot between the eyes,1384815563 +184862,27831,Sienna Miller,1384814783 +184862,27831,sniper,1384815850 +184862,27831,stylish,1384814788 +184862,27831,surprise ending,1384814791 +184862,27831,Zurich,1384896016 +184862,27856,Jinni Top Pick,1310250915 +184862,27876,Yahoo Top Pick,1137808910 +184862,27879,movielens top pick,1155318263 +184862,27904,adapted from:book,1306603960 +184862,27904,animation,1306603964 +184862,27904,author:Philip K. Dick,1306603966 +184862,27904,Bechdel Test:Fail,1306604100 +184862,27904,brain damage,1306605377 +184862,27904,conspiracy,1306603970 +184862,27904,corn industry,1306605306 +184862,27904,drug abuse,1306605219 +184862,27904,DRUG ADDICTION,1306605335 +184862,27904,drug rehabilitation,1306605256 +184862,27904,drugs,1306603973 +184862,27904,Keanu Reeves,1306603975 +184862,27904,paranoia,1306603978 +184862,27904,psychiatry,1306605175 +184862,27904,R,1306605606 +184862,27904,R:brief violent image,1306605606 +184862,27904,R:drug content,1306605606 +184862,27904,R:language,1306605606 +184862,27904,R:sexual content,1306605606 +184862,27904,Robert Downey Jr.,1306604028 +184862,27904,rotoscope,1306603983 +184862,27904,sci-fi,1306603988 +184862,27904,screenwriter:Richard Linklater,1306604248 +184862,27904,Seen 2011,1306604164 +184862,27904,sin,1306605199 +184862,27904,surreal,1306603995 +184862,27904,surveillance,1306603998 +184862,27904,undercover cop,1306605138 +184862,27904,visually appealing,1306603999 +184862,27904,weird,1306604002 +184862,27904,Winona Ryder,1306604028 +184862,27904,Woody Harrelson,1306604008 +184862,27912,journalism,1149268374 +184862,27912,liberal,1168148502 +184862,27912,politics,1147480741 +184862,27912,television,1416597381 +184862,30707,Bittersweet,1451886548 +184862,30707,boxing,1154933186 +184862,30707,Clint Eastwood,1280841955 +184862,30707,drama,1416524229 +184862,30707,female athletes,1280841957 +184862,30707,Hilary Swank,1452767276 +184862,30707,Los Angeles,1154935336 +184862,30707,Morgan Freeman,1280841972 +184862,30707,MoviePig Top Pick,1137176802 +184862,30707,Oscar (Best Actress),1154933202 +184862,30707,Oscar (Best Directing),1154933209 +184862,30707,Oscar (Best Picture),1154933191 +184862,30707,Oscar (Best Supporting Actor),1154933206 +184862,30707,Seen 2006,1155322035 +184862,30707,White Trash,1154933198 +184862,30707,Yahoo Top Pick,1137177984 +184862,30712,movielens top pick,1180246840 +184862,30723,Art,1248969385 +184862,30723,artist,1248969385 +184862,30723,Biography,1248969385 +184862,30723,brothers,1248969385 +184862,30723,Robert Altman,1248969401 +184862,30723,Tim Roth,1248969107 +184862,30749,1990s,1154705823 +184862,30749,Africa,1154705813 +184862,30749,based on a true story,1269697113 +184862,30749,dehumanization,1205789531 +184862,30749,depressing,1164632373 +184862,30749,ethnic conflict,1268250851 +184862,30749,factual,1352221329 +184862,30749,family,1166857297 +184862,30749,genocide,1268250854 +184862,30749,history,1268250856 +184862,30749,hotel,1268250858 +184862,30749,journalism,1268250860 +184862,30749,manager,1268250862 +184862,30749,PG-13,1213813457 +184862,30749,PG-13:brief strong language,1213813457 +184862,30749,PG-13:disturbing images,1213813457 +184862,30749,PG-13:violence,1213813457 +184862,30749,propaganda,1202663550 +184862,30749,racism,1269697157 +184862,30749,refugee,1193625047 +184862,30749,Rwanda,1154705804 +184862,30749,Seen 2006,1145722411 +184862,30749,survival,1154705862 +184862,30749,tear jerker,1268250871 +184862,30749,United Nations,1268250876 +184862,30822,advertising,1249004664 +184862,30822,basketball,1184862295 +184862,30822,birthday,1184862295 +184862,30822,business,1249004667 +184862,30822,college,1184862294 +184862,30822,college student,1249004649 +184862,30822,father daughter relationship,1249004669 +184862,30822,layoffs,1184862294 +184862,30822,magazines,1249004673 +184862,30822,new boss,1184862295 +184862,30822,New York City,1184862295 +184862,30822,PG-13,1184862294 +184862,30822,Seen 2007,1184865879 +184862,30822,Universal,1184862294 +184862,31114,Jinni Top Pick,1272238942 +184862,31116,netflix top pick,1179724425 +184862,31364,adapted from:play,1368383133 +184862,31364,atmospheric,1368311568 +184862,31364,based on a true story,1368383134 +184862,31364,Bechdel Test:Fail,1368312717 +184862,31364,disturbing,1368311968 +184862,31364,forensic evidence,1368383115 +184862,31364,gritty,1368311974 +184862,31364,imdb top 250,1368312067 +184862,31364,Joon-ho Bong,1368311977 +184862,31364,Kang-ho Song,1368311989 +184862,31364,korean,1368311991 +184862,31364,matter-of-fact,1368311993 +184862,31364,melancholy,1368311995 +184862,31364,millenial foreign comedies to see,1368312003 +184862,31364,movielens top pick,1161966542 +184862,31364,mysterious death,1368383044 +184862,31364,police,1384817254 +184862,31364,police brutality,1368312006 +184862,31364,police chief,1368383089 +184862,31364,police investigation,1368312008 +184862,31364,police surveillance,1368383005 +184862,31364,rumor,1368383024 +184862,31364,Seen 2013,1368383221 +184862,31364,serial killer,1368312011 +184862,31364,South Korea,1368382966 +184862,31364,torture,1368383069 +184862,31364,understated,1368312017 +184862,31364,wry,1368312019 +184862,31437,abandonment,1151302050 +184862,31437,based on a true story,1151302101 +184862,31437,child abuse,1256454392 +184862,31437,children,1256454394 +184862,31437,deliberate,1307848129 +184862,31437,disturbing,1259968711 +184862,31437,INNOCENCE LOST,1263411479 +184862,31437,Japan,1262028418 +184862,31437,malnutrition,1278261529 +184862,31437,meditative,1254443903 +184862,31437,PG-13,1265185683 +184862,31437,PG-13:mature themes,1265185683 +184862,31437,PG-13:some sexual references,1265185683 +184862,31437,Seen 2006,1151606841 +184862,31437,siblings,1154705714 +184862,31437,Tokyo,1151302127 +184862,31437,understated,1266534681 +184862,31437,video games,1155317123 +184862,31658,anime,1148224951 +184862,31658,fanciful,1191025578 +184862,31658,Hayao Miyazaki,1249004170 +184862,31658,magic,1256453821 +184862,31658,premature aging,1202057818 +184862,31658,Seen 2006,1148224947 +184862,31658,steampunk,1452759777 +184862,31658,Studio Ghibli,1249004172 +184862,31658,stylized,1249004173 +184862,31658,wizards,1155318326 +184862,31685,New York City,1158275082 +184862,31685,romantic comedy,1432598783 +184862,31705,Yahoo Top Pick,1139080164 +184862,31921,1890s,1366217758 +184862,31921,19th century,1366217800 +184862,31921,abuse,1366217822 +184862,31921,adapted from:book,1366207016 +184862,31921,anti-Semitism,1366217628 +184862,31921,author:Nicholas Meyer,1366207016 +184862,31921,Bechdel Test:Fail,1366218062 +184862,31921,deduction,1366217750 +184862,31921,detective,1366217426 +184862,31921,DRUG ADDICTION,1366217789 +184862,31921,Herbert Ross,1366206719 +184862,31921,investigation,1366217712 +184862,31921,London,1366207109 +184862,31921,movielens top pick,1271026147 +184862,31921,murder,1366217681 +184862,31921,Oscar Nominee: Adapted Screenplay,1366207060 +184862,31921,Oscar Nominee: Costume Design,1366207060 +184862,31921,PG,1366217979 +184862,31921,private detective,1366217658 +184862,31921,Robert Duvall,1366206712 +184862,31921,screenwriter:Nicholas Meyer,1366207016 +184862,31921,Seen 2013,1366218051 +184862,31921,Sherlock Holmes,1366206716 +184862,31921,subconscious,1366217606 +184862,31921,Vienna,1366207109 +184862,31956,Canal+,1189644863 +184862,31956,divorce,1189644864 +184862,31956,nonlinear,1189644863 +184862,31956,Paris,1189644863 +184862,31956,R,1189644863 +184862,31956,rape,1189644863 +184862,31956,Seen 2007,1189644863 +184862,31956,wedding,1189644863 +184862,32031,business,1171555204 +184862,32031,cgi,1171555204 +184862,32031,Dance,1171555204 +184862,32031,Father son relationship,1171555204 +184862,32031,robots,1171554586 +184862,32031,Seen 2007,1171561949 +184862,32031,Yahoo Top Pick,1161370924 +184862,32371,Edgar Award (Best Motion Picture),1280979178 +184862,32419,adapted from:book,1248925373 +184862,32419,author:Paul Auster,1248925373 +184862,32419,eccentricity,1248925385 +184862,32419,gambling,1248925373 +184862,32587,adapted from:comic,1310020317 +184862,32587,amputee,1310021181 +184862,32587,atmospheric,1310020260 +184862,32587,author:Frank Miller,1310020317 +184862,32587,Bechdel Test:Pass,1310020068 +184862,32587,black comedy,1310020262 +184862,32587,bleak,1310020265 +184862,32587,cannibalism,1310021346 +184862,32587,cars,1360399130 +184862,32587,castration,1310020980 +184862,32587,corrupt clergy,1310020948 +184862,32587,corruption,1310020664 +184862,32587,Criticker top pick,1210602198 +184862,32587,cruelty,1310021231 +184862,32587,disturbing,1362323040 +184862,32587,dominatrix,1310021271 +184862,32587,funny,1310020340 +184862,32587,gritty,1310020343 +184862,32587,harsh,1384817530 +184862,32587,multiple storylines,1310020345 +184862,32587,murder,1310021066 +184862,32587,mutilation,1310020719 +184862,32587,narrated,1310020348 +184862,32587,Nudity (Topless),1310020353 +184862,32587,overrated,1310020357 +184862,32587,police,1310020361 +184862,32587,Quentin Tarantino,1310020365 +184862,32587,R,1310046846 +184862,32587,R:nudity,1310046846 +184862,32587,R:sexual content including dialogue,1310046846 +184862,32587,R:sustained strong stylized violence,1310046846 +184862,32587,revenge,1310020368 +184862,32587,Seen 2011,1310020068 +184862,32587,strippers,1310020690 +184862,32587,stylized,1310020375 +184862,32587,surreal,1310020382 +184862,32587,tense,1310020388 +184862,32587,torture,1310020770 +184862,32587,violence,1310020390 +184862,32587,violent,1310020393 +184862,32587,visceral,1310020395 +184862,32851,Oscar (Best Documentary Feature),1361677175 +184862,32898,FilmAffinity top pick,1306616903 +184862,32943,movielens top pick,1260513682 +184862,33154,1990s,1158602834 +184862,33154,2000s,1158602834 +184862,33154,accountants,1272143098 +184862,33154,business,1158602788 +184862,33154,California,1158602834 +184862,33154,capitalism,1158602795 +184862,33154,corporate America,1158602792 +184862,33154,corruption,1158602799 +184862,33154,documentary,1254012555 +184862,33154,economics,1158602790 +184862,33154,energy,1158602797 +184862,33154,History,1264274890 +184862,33154,Houston,1158602811 +184862,33154,important,1416519794 +184862,33154,investing,1158602803 +184862,33154,liars,1162441948 +184862,33154,money,1158602785 +184862,33154,politics,1158602845 +184862,33154,scam,1158602801 +184862,33154,scandal,1158602805 +184862,33154,Seen 2006,1158602773 +184862,33154,Texas,1158602814 +184862,33166,2000s,1138213277 +184862,33166,ensemble cast,1138213277 +184862,33166,los angeles,1138213277 +184862,33166,Oscar (Best Picture),1152968519 +184862,33166,race issues,1138213277 +184862,33166,Seen 2006,1138213277 +184862,33639,ballroom dancing,1154445837 +184862,33639,children,1154656597 +184862,33639,competition,1154445837 +184862,33639,Dance,1162507582 +184862,33639,education,1154445837 +184862,33639,New York City,1154445837 +184862,33639,Seen 2006,1154445837 +184862,33639,teachers,1154445907 +184862,33679,guns,1164554793 +184862,33679,Shooting and shooting,1164554724 +184862,33794,adapted from:comic,1213813634 +184862,33794,alter ego,1280601342 +184862,33794,atmospheric,1320148374 +184862,33794,Batman,1212083220 +184862,33794,comic,1152685195 +184862,33794,comic book,1152685184 +184862,33794,dark,1152685178 +184862,33794,DC,1152685180 +184862,33794,gadget car,1212083220 +184862,33794,superhero,1280601326 +184862,34162,buddies,1137286322 +184862,34162,comedy,1137704765 +184862,34162,ribald,1137286322 +184862,34162,Seen 2006,1137286322 +184862,34162,Washington DC,1137300878 +184862,34164,like-i-like top pick,1191432829 +184862,34271,Oscar (Best Music - Original Song),1152291669 +184862,34292,Dylan McDermott,1275023284 +184862,34292,post-apocalyptic,1269662246 +184862,34292,R,1269662406 +184862,34292,R:language,1269662406 +184862,34292,R:sexuality,1269662406 +184862,34292,R:strong violence,1269662406 +184862,34292,radiation,1269662246 +184862,34292,robots,1269662246 +184862,34292,ROBOTS AND ANDROIDS,1269662246 +184862,34336,love story,1432598906 +184862,34405,adapted from:TV series,1208969704 +184862,34405,amusing,1208969765 +184862,34405,anti-hero,1208970426 +184862,34405,based on a TV show,1208969368 +184862,34405,Bechdel Test:Fail,1208971768 +184862,34405,behavior modification,1210961672 +184862,34405,black comedy,1208970426 +184862,34405,brother sister relationship,1208970426 +184862,34405,CANNIBALS,1208969919 +184862,34405,conflict with society,1208969891 +184862,34405,contrived,1357938792 +184862,34405,cult film,1208970427 +184862,34405,director-screenwriter,1208969326 +184862,34405,directorial debut,1208969672 +184862,34405,doctors,1208970427 +184862,34405,ensemble cast,1208970426 +184862,34405,evil empire,1213818976 +184862,34405,female warriors,1208970426 +184862,34405,friendship,1208970427 +184862,34405,fugitive,1208970426 +184862,34405,FUTURE DYSTOPIAS,1208969840 +184862,34405,husband-wife relationship,1208970427 +184862,34405,irreverent,1208969731 +184862,34405,MISFITS AND OUTSIDERS,1208969907 +184862,34405,murder,1208970018 +184862,34405,Mutant Enemy,1208971750 +184862,34405,ominous,1208969952 +184862,34405,PG-13,1208969974 +184862,34405,PG-13:intense violence and action,1208971750 +184862,34405,PG-13:some sexual references,1208971750 +184862,34405,preacher,1208970426 +184862,34405,PSYCHIC ABILITIES,1208970427 +184862,34405,quirky,1208969362 +184862,34405,robbery,1208970427 +184862,34405,rousing,1208969755 +184862,34405,Saturn Award (Best Supporting Actress),1208969944 +184862,34405,scope,1208971750 +184862,34405,Seen 2008,1213818963 +184862,34405,shiny,1208970037 +184862,34405,space,1208969497 +184862,34405,SPACE TRAVEL,1208969894 +184862,34405,SPACE WARS,1208970015 +184862,34405,space western,1208969716 +184862,34405,tense,1208969759 +184862,34405,UNLIKELY HEROES,1208969860 +184862,34405,WANDERLUST,1208969904 +184862,34405,witty,1208969914 +184862,34540,ambition,1199916779 +184862,34540,black comedy,1199916779 +184862,34540,blackmail,1199916779 +184862,34540,bulimia,1199916779 +184862,34540,high school,1199916779 +184862,34540,independent film,1199923734 +184862,34540,lesbian,1199923734 +184862,34540,Los Angeles,1199923733 +184862,34540,R,1199924950 +184862,34540,R:graphic dialogue involving teens,1199924950 +184862,34540,R:language,1199924950 +184862,34540,R:strong sexual content,1199924973 +184862,34540,scope,1199923734 +184862,34540,suicide,1199916779 +184862,34540,trial,1199923734 +184862,34542,Alaska,1254013304 +184862,34542,Animal movie,1154128537 +184862,34542,Bears,1254013306 +184862,34542,biopic,1166856387 +184862,34542,boundaries,1151606692 +184862,34542,Crazy Guy,1137178045 +184862,34542,death,1151606682 +184862,34542,delusional self obsession,1254013314 +184862,34542,documentary,1254013337 +184862,34542,eccentricity,1150467411 +184862,34542,Nature,1149269528 +184862,34542,seen 2006,1152968207 +184862,34542,wild animal,1152968207 +184862,34542,wilderness,1152968208 +184862,35836,eccentricity,1262717192 +184862,35836,electronics,1262717194 +184862,35836,improvisation,1262717195 +184862,35836,Los Angeles,1157695105 +184862,35836,marijuana,1157695105 +184862,35836,nerd,1157694958 +184862,35836,Nudity (Topless),1262717212 +184862,35836,salespeople,1262717199 +184862,35836,Seen 2006,1157694974 +184862,35836,sex,1157694949 +184862,36276,Cannes: Best Director,1275002560 +184862,36276,Daniel Auteuil,1275001727 +184862,36276,Deconstructive,1275001728 +184862,36276,dysfunctional family,1275001730 +184862,36276,french suspense,1275001732 +184862,36276,guilt,1275001864 +184862,36276,husband-wife relationship,1275002165 +184862,36276,Juliette Binoche,1275001766 +184862,36276,liars,1275002142 +184862,36276,massacre,1275002090 +184862,36276,memory,1275001939 +184862,36276,Michael Haneke,1275001769 +184862,36276,non-hollywood ending,1275001774 +184862,36276,Paris,1275002038 +184862,36276,R,1275001779 +184862,36276,R:brief strong violence,1275002560 +184862,36276,revenge,1275001962 +184862,36276,Seen 2010,1275023325 +184862,36276,subjective camera,1275002005 +184862,36276,surveillance,1275001873 +184862,36276,talky,1275001781 +184862,36276,television show,1275001784 +184862,36276,TIFF Top 30 of the 2000s,1259359116 +184862,36363,cult film,1388722634 +184862,36363,culture clash,1248964711 +184862,36363,drab,1357937996 +184862,36363,sci-fi,1272053889 +184862,36477,accountants,1142063043 +184862,36477,Brooklyn,1142063043 +184862,36477,easily confused with other movie(s) (title),1360563758 +184862,36477,geologists,1142063125 +184862,36477,left at the altar,1142063066 +184862,36477,quirky,1142063128 +184862,36477,Seen 2006,1142063043 +184862,36477,whimsical,1142063017 +184862,36529,Africa,1161318450 +184862,36529,arms dealer,1161318444 +184862,36529,brothers,1161318609 +184862,36529,business,1368411312 +184862,36529,cat-and-mouse,1161318609 +184862,36529,dark comedy,1161318609 +184862,36529,drugs,1166854863 +184862,36529,guns,1161318447 +184862,36529,political,1161318441 +184862,36529,Seen 2006,1161318490 +184862,36529,violence,1165890861 +184862,36529,voiceover,1161318609 +184862,36529,weapons,1168637967 +184862,37240,9/11,1271015354 +184862,37240,archive footage,1211940817 +184862,37240,co-production,1211941055 +184862,37240,controversial,1271015666 +184862,37240,corruption,1211940817 +184862,37240,death,1211926735 +184862,37240,History,1268250904 +184862,37240,imperialism,1268250907 +184862,37240,iraq,1211926732 +184862,37240,Iraq War,1416597511 +184862,37240,Military,1211926714 +184862,37240,military industrial complex,1268250909 +184862,37240,nuclear,1211926818 +184862,37240,PG-13,1211941055 +184862,37240,PG-13:brief language,1211941055 +184862,37240,PG-13:disturbing war images,1211941055 +184862,37240,politics,1268250915 +184862,37240,war,1211926769 +184862,37240,warmongering,1268250913 +184862,38038,Aardman,1266534559 +184862,38038,buddies,1266534570 +184862,38038,claymation,1266534562 +184862,38038,competition,1139523970 +184862,38038,dogs,1148973542 +184862,38038,entrepreneurs,1139523979 +184862,38038,fruits and veggies,1139033838 +184862,38038,guns,1139523919 +184862,38038,invention,1266534574 +184862,38038,monster,1152508938 +184862,38038,Oscar (Best Animated Feature),1266534576 +184862,38038,rabbits,1266534578 +184862,38038,silly,1266534580 +184862,38038,stop-motion,1139033838 +184862,38038,talking animals,1266534581 +184862,38701,actors,1275004896 +184862,38701,Butte Montana,1275004690 +184862,38701,detective,1275004752 +184862,38701,father daughter relationship,1275004803 +184862,38701,father-son estrangement,1275004843 +184862,38701,father-son relationship,1275004654 +184862,38701,Jessica Lange,1275004556 +184862,38701,Montana,1275004956 +184862,38701,R,1275005011 +184862,38701,R:brief nudity,1275005011 +184862,38701,R:language,1275005011 +184862,38701,Sam Shepard,1275004558 +184862,38701,Sarah Polley,1275004565 +184862,38701,Seen 2010,1275023360 +184862,38701,singer,1275004869 +184862,38701,Tim Roth,1275004553 +184862,38701,washed up,1275004779 +184862,38701,Wim Wenders,1275004560 +184862,38798,adapted from:book,1360424657 +184862,38798,author:Jennifer Weiner,1360424664 +184862,38798,chick flick,1145558968 +184862,38798,Philadelphia,1145559030 +184862,38798,screenwriter:Susannah Grant,1360424657 +184862,38798,seen 2006,1145558993 +184862,38798,sisters,1145558971 +184862,38886,1980s,1160684262 +184862,38886,Brooklyn,1160684262 +184862,38886,character driven,1360399898 +184862,38886,childhood,1372794626 +184862,38886,depressing,1280560556 +184862,38886,divorce,1160684267 +184862,38886,family,1162049616 +184862,38886,high squirm factor,1171561044 +184862,38886,museum,1160684262 +184862,38886,New York City,1160684262 +184862,38886,professor,1160684262 +184862,38886,Seen 2006,1160684262 +184862,38886,writers,1160684262 +184862,39183,1960s,1267471222 +184862,39183,1970s,1267471224 +184862,39183,1980s,1267471229 +184862,39183,adapted from:short story,1267471284 +184862,39183,author:E. Annie Proulx,1267471284 +184862,39183,cowboy,1280841386 +184862,39183,forbidden love,1172180011 +184862,39183,gay bashing,1172179977 +184862,39183,glbt,1172179616 +184862,39183,loss,1172179977 +184862,39183,MoviePig Top Pick,1166778468 +184862,39183,Oscar (Best Directing),1172179648 +184862,39183,Oscar (Best Music - Original Score),1152291890 +184862,39183,rodeo,1172179977 +184862,39183,Seen 2007,1172179977 +184862,39183,sexuality,1172175526 +184862,39183,Thanksgiving,1172179977 +184862,39183,Tragedy,1172174098 +184862,39183,whiskey,1173404979 +184862,39183,Wyoming,1172173583 +184862,39369,Edgar Award (Best Motion Picture),1280984885 +184862,39419,1950s,1162048705 +184862,39419,1970s,1162048705 +184862,39419,Alison Lohman,1275022304 +184862,39419,based on book,1162049321 +184862,39419,bisexual,1162048705 +184862,39419,drugs,1162048705 +184862,39419,journalism,1162048858 +184862,39419,melodrama,1162048870 +184862,39419,movielens top pick,1147532317 +184862,39419,murder,1162048705 +184862,39419,Seen 2006,1162049738 +184862,39419,show business,1162048705 +184862,39419,television,1162048959 +184862,39449,Jews,1169299985 +184862,39449,May-December romance,1169299985 +184862,39449,New York City,1169299588 +184862,39449,painter,1169299985 +184862,39449,Seen 2007,1169299588 +184862,39449,therapist,1169299985 +184862,40278,1980s,1169275361 +184862,40278,anti-war,1375806327 +184862,40278,based on book,1169275361 +184862,40278,biopic,1169275088 +184862,40278,Desert Storm,1169274943 +184862,40278,Gulf War,1169274988 +184862,40278,iraq,1169274889 +184862,40278,male bonding,1169275361 +184862,40278,Seen 2007,1169275413 +184862,40278,sniper,1169275361 +184862,40278,war,1416597639 +184862,40583,Edgar Award (Best Motion Picture Screenplay),1281279485 +184862,40629,1790s,1161322115 +184862,40629,18th century,1154676919 +184862,40629,chick flick,1280812855 +184862,40629,classic,1165618232 +184862,40629,England,1154676857 +184862,40629,family,1161322105 +184862,40629,father daughter relationship,1161322119 +184862,40732,Jinni Top Pick,1278403530 +184862,40815,adapted from:book,1366223166 +184862,40815,author:J. K. Rowling,1366223166 +184862,40815,boarding school,1171049274 +184862,40815,contest,1171049274 +184862,40815,dance,1171049274 +184862,40815,dragons,1171049274 +184862,40815,England,1171049274 +184862,40815,ghosts,1171049274 +184862,40815,gossip,1171049274 +184862,40815,hard to rate,1171048963 +184862,40815,impostor,1171049274 +184862,40815,kids,1142028025 +184862,40815,magic,1142028010 +184862,40815,mermaid,1171049274 +184862,40815,screenwriter:Steve Kloves,1366223166 +184862,40815,sequel,1142028013 +184862,40815,teacher student relationship,1171049274 +184862,40815,witch,1142028015 +184862,40815,Wizards,1171048948 +184862,40966,17th century,1152508466 +184862,40966,alcohol,1152508503 +184862,40966,based on a play,1152508404 +184862,40966,Biography,1190595464 +184862,40966,biopic,1154069210 +184862,40966,debased,1166855083 +184862,40966,disease,1152508466 +184862,40966,Seen 2006,1152508404 +184862,40966,theater,1152508466 +184862,41285,CLASS DIFFERENCES,1384889684 +184862,41285,clever,1384894356 +184862,41285,Dostoyevsky,1159684746 +184862,41285,London,1159684746 +184862,41285,love affair,1159684746 +184862,41285,luck,1159684746 +184862,41285,Seen 2006,1159684746 +184862,41285,tennis,1159684746 +184862,41285,wealth,1159684746 +184862,41425,1990s,1162440968 +184862,41425,adultery,1162441127 +184862,41425,based on a play,1162440968 +184862,41425,bisexual,1162440968 +184862,41425,chat rooms,1162441127 +184862,41425,Hollywood,1162440968 +184862,41425,Seen 2006,1162440968 +184862,41425,writers,1162441127 +184862,41527,collaborators,1177445234 +184862,41527,despair,1177445234 +184862,41527,fundamentalism,1177445234 +184862,41527,israel,1177445161 +184862,41527,martyrdom,1177445234 +184862,41527,Oscar Nominee: Foreign Language (Palestine),1177445332 +184862,41527,palestine,1177445162 +184862,41527,PG-13,1177445405 +184862,41527,scope,1177445234 +184862,41527,Seen 2007,1177468965 +184862,41527,suicide,1177445168 +184862,41527,terrorism,1177445234 +184862,41566,animals,1137178143 +184862,41566,Christian,1143149015 +184862,41566,military combat,1137178143 +184862,41566,Parallel universe,1171049446 +184862,41566,Seen 2006,1137178143 +184862,41566,witch,1137704758 +184862,41627,filmaffinity top pick,1438039296 +184862,41627,movielens top pick,1249005696 +184862,41699,biopic,1253293054 +184862,41699,Sergei M. Eisenstein,1311951648 +184862,41753,adapted from:book,1360565165 +184862,41753,author:Lawrence Block,1360565165 +184862,41753,screenwriter:David Lee Henry,1360565165 +184862,41753,screenwriter:Oliver Stone,1360565165 +184862,41863,Bechdel Test:Fail,1275022430 +184862,41863,crime,1352140152 +184862,41863,culture clash,1275022435 +184862,41863,death,1275022438 +184862,41863,desert,1275022453 +184862,41863,earthy,1275022457 +184862,41863,forgiveness,1275022899 +184862,41863,gritty,1275022459 +184862,41863,husband-wife relationship,1275022846 +184862,41863,immigrants,1275022462 +184862,41863,immigration,1275022466 +184862,41863,journey home,1275022764 +184862,41863,kidnapping,1275022684 +184862,41863,Mexico,1275022471 +184862,41863,murder,1275022476 +184862,41863,promise,1275022605 +184862,41863,R,1275023168 +184862,41863,R:language,1275023168 +184862,41863,R:sexuality,1275023168 +184862,41863,R:violence,1275023167 +184862,41863,ruins,1275022642 +184862,41863,Seen 2010,1275023383 +184862,41863,small town,1275022810 +184862,41863,Snakes,1275022943 +184862,41863,Texas,1275022445 +184862,41863,Tommy Lee Jones,1275022447 +184862,41997,1970s,1174225920 +184862,41997,assassination,1174230254 +184862,41997,Athens,1174225921 +184862,41997,based on a book,1174225321 +184862,41997,based on a true story,1174225321 +184862,41997,Beirut,1174230228 +184862,41997,bombs,1174225920 +184862,41997,covert operation,1174225570 +184862,41997,Cyprus,1174230228 +184862,41997,Dramatic,1352140911 +184862,41997,espionage,1375805660 +184862,41997,history,1375805658 +184862,41997,Islam,1354660050 +184862,41997,Israel,1174225242 +184862,41997,Israeli/Palestinian conflict,1174225261 +184862,41997,Jews,1174225724 +184862,41997,modern,1375805684 +184862,41997,mossad,1375805675 +184862,41997,MOTHERS AND SONS,1174225920 +184862,41997,Munich,1174225920 +184862,41997,Olympics,1174225363 +184862,41997,Oscar Nominee: Best Picture,1174225520 +184862,41997,overkill,1174225355 +184862,41997,Paris,1174225920 +184862,41997,politics,1174225388 +184862,41997,R,1174225534 +184862,41997,revenge,1174225712 +184862,41997,Rome,1174225920 +184862,41997,Seen 2007,1174225374 +184862,41997,terrorism,1174225347 +184862,41997,too long,1174225282 +184862,41997,violence,1174225248 +184862,42018,1930s,1190601446 +184862,42018,1940s,1190601446 +184862,42018,archive footage,1190601446 +184862,42018,audition,1190601445 +184862,42018,based upon a true story,1190601022 +184862,42018,BBC produced,1190601662 +184862,42018,burlesque,1190601051 +184862,42018,cemetary,1190601446 +184862,42018,champagne,1190601446 +184862,42018,depression,1190601446 +184862,42018,England,1190601041 +184862,42018,English Vaudeville,1190601005 +184862,42018,France,1190601446 +184862,42018,London,1190601038 +184862,42018,male nudity,1190601445 +184862,42018,nude show,1190601008 +184862,42018,nudity,1190601045 +184862,42018,Nudity (Full Frontal),1190601446 +184862,42018,Nudity (Topless - Notable),1190601048 +184862,42018,Oscar Nominee: Costume Design,1190601496 +184862,42018,Oscar Nominee: Lead Actress,1190601496 +184862,42018,Pathe,1190601662 +184862,42018,R,1190601662 +184862,42018,R:brief language,1190601662 +184862,42018,R:nudity,1190601662 +184862,42018,score:George Fenton,1213818169 +184862,42018,Seen 2007,1190601772 +184862,42018,Strippers,1190601014 +184862,42018,Theater,1190601016 +184862,42018,Widow,1190601011 +184862,42018,World War II,1190601034 +184862,42094,existentialism,1259961360 +184862,42094,frankenstein,1248926152 +184862,42094,railroad track,1278263138 +184862,42094,Spain,1262717659 +184862,42094,Spanish Civil War,1248926150 +184862,42418,TIFF Top 30 of the 2000s,1259257175 +184862,42730,1960s,1178053791 +184862,42730,based on a true story,1178053791 +184862,42730,basketball,1178053526 +184862,42730,coach,1178053791 +184862,42730,college,1178053791 +184862,42730,Disney,1178053916 +184862,42730,El Paso,1178053791 +184862,42730,emotional,1178053580 +184862,42730,ESPY award,1178053916 +184862,42730,feel-good,1178053489 +184862,42730,Jerry Bruckheimer,1178053916 +184862,42730,racism,1178053791 +184862,42730,scope,1178053791 +184862,42730,Seen 2007,1178054722 +184862,42730,sports,1178053520 +184862,42730,Texas,1178053791 +184862,43333,1930s,1266530465 +184862,43333,Bechdel Test:Pass,1266534129 +184862,43333,Brahmin,1266530473 +184862,43333,caste system,1266530349 +184862,43333,child rape,1266530308 +184862,43333,controversial,1266530591 +184862,43333,engaging,1266530006 +184862,43333,Gandhi,1266530256 +184862,43333,India,1266530256 +184862,43333,massage,1266530263 +184862,43333,Oscar Nominee: Foreign Language (Canada),1266530537 +184862,43333,PG-13,1266532355 +184862,43333,PG-13:brief drug use,1266532355 +184862,43333,PG-13:mature thematic material involving sexual situations,1266532355 +184862,43333,politics,1266530154 +184862,43333,prostitution,1266530378 +184862,43333,provocative,1266530158 +184862,43333,puppies,1266530440 +184862,43333,railway station,1266530440 +184862,43333,religion,1266530203 +184862,43333,reverse timeline,1266534129 +184862,43333,river,1266530489 +184862,43333,Romeo and Juliet,1266530308 +184862,43333,seen 2010,1266681862 +184862,43333,TRIUMPH OF THE HUMAN SPIRIT,1266530393 +184862,43333,turmeric,1266530349 +184862,43333,widows/widowers,1266530205 +184862,43396,1960s,1267472438 +184862,43396,aging,1203482568 +184862,43396,Anthony Hopkins,1267472499 +184862,43396,based on a true story,1203483214 +184862,43396,Bechdel Test:Fail,1208369142 +184862,43396,Bonneville Salt Flats,1267472316 +184862,43396,desert,1267472448 +184862,43396,dreams,1203482610 +184862,43396,emotional,1267472339 +184862,43396,heart problems,1203483214 +184862,43396,indian motorcycle,1452768357 +184862,43396,Los Angeles,1203483214 +184862,43396,motorcycle,1267472319 +184862,43396,new zealand,1267472322 +184862,43396,PG-13,1203482582 +184862,43396,PG-13:brief language,1203483214 +184862,43396,PG-13:drug use,1203483214 +184862,43396,PG-13:sexual reference,1203483214 +184862,43396,road trip,1267472481 +184862,43396,scope,1203483214 +184862,43396,Seen 2008,1206718053 +184862,43396,speed,1203482574 +184862,43396,transexual,1203483214 +184862,43396,utah,1203482605 +184862,43396,world record,1267472329 +184862,43460,18th century,1219936171 +184862,43460,actors,1219936263 +184862,43460,Adaptation,1262717813 +184862,43460,adapted from:book,1219936263 +184862,43460,author:Laurence Stern,1219936263 +184862,43460,battles,1219936263 +184862,43460,Bechdel Test:Fail,1219936263 +184862,43460,breaking the fourth wall,1262717751 +184862,43460,childbirth,1262717753 +184862,43460,England,1219936263 +184862,43460,FILMMAKING,1219936263 +184862,43460,postmodern,1262717756 +184862,43460,R,1219936452 +184862,43460,R:language,1219936452 +184862,43460,R:sexual content,1219936452 +184862,43460,rivalry,1262717759 +184862,43460,scope,1219936452 +184862,43460,Seen 2008,1220029674 +184862,43460,updated classics,1219936173 +184862,43652,movielens top pick,1262369468 +184862,44100,movielens top pick,1264275923 +184862,44191,Alan Moore,1176639643 +184862,44191,ambiguous,1176639711 +184862,44191,anarchy,1176639648 +184862,44191,bombs,1176641945 +184862,44191,comic book,1176639783 +184862,44191,Dark hero,1176639734 +184862,44191,DC Comics,1176641945 +184862,44191,disacknowledged,1176639917 +184862,44191,dystopia,1176641513 +184862,44191,fascism,1176639801 +184862,44191,graphic novel,1176639658 +184862,44191,guy fawkes,1176639651 +184862,44191,homosexuality,1176641945 +184862,44191,idealism,1176639715 +184862,44191,imdb top 250,1176641495 +184862,44191,knives,1176641945 +184862,44191,like-i-like top pick,1159035423 +184862,44191,London,1176641945 +184862,44191,movielens top pick,1149271451 +184862,44191,politics,1176639753 +184862,44191,prison,1176641945 +184862,44191,propaganda,1176641945 +184862,44191,R,1176641611 +184862,44191,revenge,1176639945 +184862,44191,revolution,1176641502 +184862,44191,revolutionary,1176639707 +184862,44191,Seen 2007,1176641945 +184862,44191,Sexualized violence,1176639758 +184862,44191,social control,1176639662 +184862,44191,Sourcelight Top Pick,1146841795 +184862,44191,terrorism,1176639836 +184862,44191,virus,1176641945 +184862,44193,PG-13:some sexual material,1361681655 +184862,44195,adapted from:book,1276532188 +184862,44195,author:Christopher Buckley,1276532187 +184862,44195,Bechdel Test:Fail,1276532188 +184862,44195,business,1276532230 +184862,44195,business trip,1276532429 +184862,44195,cigarettes,1276532232 +184862,44195,corruption,1311873620 +184862,44195,dark comedy,1276532236 +184862,44195,dark humor,1276532234 +184862,44195,directorial debut,1276532242 +184862,44195,father-son relationship,1276532630 +184862,44195,health,1276532408 +184862,44195,Hollywood,1276532602 +184862,44195,humiliation,1276532457 +184862,44195,independent film,1276532248 +184862,44195,journalism,1276532524 +184862,44195,Lobbyism,1276532402 +184862,44195,movielens top pick,1147532250 +184862,44195,narrated,1276532252 +184862,44195,North Carolina,1276532602 +184862,44195,politics,1276532255 +184862,44195,product placement,1276532479 +184862,44195,propaganda,1276532257 +184862,44195,R,1276533551 +184862,44195,R:language,1276533551 +184862,44195,R:some sexual content,1276533551 +184862,44195,satire,1276532259 +184862,44195,Seen 2010,1276532188 +184862,44195,smoking,1276532262 +184862,44195,social commentary,1276532264 +184862,44195,Yahoo Top Pick,1171121971 +184862,44301,abuse,1371319303 +184862,44301,bar,1371319308 +184862,44301,Bechdel Test:Fail,1371319869 +184862,44301,director-screenwriter,1371319408 +184862,44301,drab,1371319310 +184862,44301,drinking,1371319312 +184862,44301,FEMMES FATALES,1371319315 +184862,44301,Finland,1371320686 +184862,44301,guard,1371319326 +184862,44301,gullibility,1371319330 +184862,44301,Helsinki,1371320686 +184862,44301,loneliness,1371319332 +184862,44301,loser trilogy,1371319881 +184862,44301,melancholy,1371319335 +184862,44301,neo-noir,1371319902 +184862,44301,organized crime,1371319902 +184862,44301,sardonic,1371319338 +184862,44301,security guard,1371319340 +184862,44301,Seen 2013,1371319858 +184862,44301,smoking,1371319343 +184862,44301,surveillance,1371319345 +184862,44555,1980s,1248964580 +184862,44555,arts,1248964582 +184862,44555,bald nemesis,1248964583 +184862,44555,Berlin,1198090774 +184862,44555,Cold War,1360103675 +184862,44555,communism,1198090142 +184862,44555,corruption,1198090101 +184862,44555,director-screenwriter,1219952386 +184862,44555,East Germany,1198090538 +184862,44555,Germany,1257176119 +184862,44555,imdb top 250,1198090128 +184862,44555,interrogation,1198090538 +184862,44555,movielens top pick,1248964590 +184862,44555,Nudity (Topless - Brief),1269697262 +184862,44555,Oscar (Best Foreign Language Film),1248964594 +184862,44555,Piano,1198090148 +184862,44555,R,1248964596 +184862,44555,scope,1248964598 +184862,44555,Seen 2007,1198090785 +184862,44555,Sony Pictures Classics,1198090051 +184862,44555,spies,1248964604 +184862,44555,Stasi,1198090115 +184862,44555,suicide,1198090096 +184862,44555,surveillance,1198090538 +184862,44555,theater,1248964610 +184862,44555,voyeurism,1248964607 +184862,44665,Jinni Top Pick,1258745771 +184862,44694,gay,1166857850 +184862,44694,generations,1269698676 +184862,44694,ghosts,1171561303 +184862,44694,incest,1166857850 +184862,44694,La Mancha,1269698652 +184862,44694,Madrid,1166857850 +184862,44694,mother daughter relationship,1269698656 +184862,44694,Nudity (Topless - Brief),1169130857 +184862,44694,Pedro Almodovar,1416609378 +184862,44694,R,1168637499 +184862,44694,restaurant,1166857850 +184862,44694,Seen 2006,1166857644 +184862,44694,Spain,1269698660 +184862,44709,Angela Bassett,1261994009 +184862,44709,Bechdel Test:Pass,1261994098 +184862,44709,black,1261994013 +184862,44709,Emotional and Heroic,1261994018 +184862,44709,feel-good,1261994023 +184862,44709,gentle,1261994025 +184862,44709,heartwarming,1261994028 +184862,44709,INNER CITY BLUES,1261994032 +184862,44709,Laurence Fishburne,1261994037 +184862,44709,Los Angeles,1261994104 +184862,44709,MOTHERS AND DAUGHTERS,1261994041 +184862,44709,PG,1261994045 +184862,44709,Seen 2009,1262024702 +184862,44709,sentimental,1261994051 +184862,44709,single parents,1261994055 +184862,44709,spelling bee,1261994057 +184862,44709,stirring,1261994061 +184862,44709,TEACHERS AND STUDENTS,1261994063 +184862,44709,underdog,1261994071 +184862,44761,Bechdel Test:Fail,1254516981 +184862,44761,children acting like adults,1254511951 +184862,44761,clever,1254511956 +184862,44761,deadpan,1254511958 +184862,44761,detective movie,1254511960 +184862,44761,dialogue,1306612429 +184862,44761,directorial debut,1254511965 +184862,44761,drug rings,1254511968 +184862,44761,drugs,1254511971 +184862,44761,film noir,1254511973 +184862,44761,high school,1254511987 +184862,44761,Joseph Gordon-Levitt,1254511990 +184862,44761,Lukas Haas,1254511993 +184862,44761,movielens top pick,1254512010 +184862,44761,murder,1254512159 +184862,44761,neo noir,1254512015 +184862,44761,R,1257179596 +184862,44761,R:drug content,1257179596 +184862,44761,R:violence,1257179596 +184862,44761,San Clemente,1254512025 +184862,44761,Seen 2009,1254512060 +184862,44761,self-mocking,1254512030 +184862,44761,slang,1254512033 +184862,44761,slick,1254512037 +184862,44761,stylized,1254512040 +184862,44864,Bechdel Test:Pass,1278304915 +184862,44864,Catherine Keener,1278301850 +184862,44864,cosmetics,1278304427 +184862,44864,fashion,1278304495 +184862,44864,Frances McDormand,1278301851 +184862,44864,friendship,1278304548 +184862,44864,husband-wife relationship,1278304585 +184862,44864,Jennifer Aniston,1278301853 +184862,44864,Joan Cusack,1278301856 +184862,44864,Los Angeles,1278301858 +184862,44864,Maid,1278303357 +184862,44864,marital love,1278304527 +184862,44864,marriage,1278304361 +184862,44864,neighbors,1278304606 +184862,44864,nervous breakdown,1278304395 +184862,44864,R,1278304787 +184862,44864,R:brief drug use,1278304787 +184862,44864,R:language,1278304787 +184862,44864,R:some sexual content,1278304787 +184862,44864,Seen 2010,1278304887 +184862,44864,writers,1278304466 +184862,44911,Edgar Award (Best Motion Picture),1281159772 +184862,44929,artist,1178375604 +184862,44929,Australia,1178375604 +184862,44929,based on a book,1178375604 +184862,44929,downbeat,1178375050 +184862,44929,drug addiction,1178375604 +184862,44929,drugs,1178375604 +184862,44929,Nudity (Topless),1178375048 +184862,44929,poet,1178375604 +184862,44929,pregnancy,1178375604 +184862,44929,prostitution,1178375604 +184862,44929,rehabilitation,1178375604 +184862,44929,Seen 2007,1178375604 +184862,44974,movielens top pick,1149271513 +184862,45431,adapted from:comic,1302306670 +184862,45431,Bruce Willis,1302306690 +184862,45431,dreamworks animation,1148972997 +184862,45431,Seen 2006,1148976416 +184862,45431,suburbia,1148973089 +184862,45431,talking animals,1148972997 +184862,45440,adapted from:comic,1276526495 +184862,45440,Anjelica Huston,1276526352 +184862,45440,art school,1276526355 +184862,45440,author:Daniel Clowes,1276526495 +184862,45440,black comedy,1276526359 +184862,45440,competition,1276526864 +184862,45440,disillusionment,1276526361 +184862,45440,FILMMAKING,1276526770 +184862,45440,indie,1276526364 +184862,45440,Jim Broadbent,1276526368 +184862,45440,John Malkovich,1276526370 +184862,45440,martyrdom,1276526619 +184862,45440,Max Minghella,1276526377 +184862,45440,New York City,1276526495 +184862,45440,Nudity (Full - Male),1276526960 +184862,45440,Nudity (Full Frontal - Notable),1276526382 +184862,45440,Nudity (Rear),1276526960 +184862,45440,Nudity (Topless),1276526388 +184862,45440,Pablo Picasso,1276526686 +184862,45440,painting,1276526539 +184862,45440,R,1276526391 +184862,45440,R:nudity,1276527020 +184862,45440,R:scene of violence,1276527020 +184862,45440,R:sexual references,1276526994 +184862,45440,Seen 2010,1276526408 +184862,45440,serial killer,1276526707 +184862,45440,Sophia Myles,1276526393 +184862,45440,Steve Buscemi,1276526395 +184862,45440,teacher student relationship,1276526586 +184862,45442,show me the money,1154127046 +184862,45517,Yahoo Top Pick,1171667436 +184862,45720,fashion,1166070340 +184862,45720,magazines,1166070350 +184862,45720,new york city,1166476324 +184862,45720,Paris,1166070377 +184862,45720,Seen 2006,1166476324 +184862,45720,Twentieth Century-Fox,1205781251 +184862,45880,based on a book,1161480356 +184862,45880,based on a true story,1161480356 +184862,45880,biopic,1161480471 +184862,45880,costume drama,1161480356 +184862,45880,food,1161480357 +184862,45880,France,1161480356 +184862,45880,Seen 2006,1162142067 +184862,45880,Versailles,1161480357 +184862,45928,american idiocy,1311871569 +184862,45928,Arnold Schwarzenegger,1311872074 +184862,45928,business,1311871576 +184862,45928,business is the antagonist,1311871579 +184862,45928,California,1311871582 +184862,45928,cars,1311871585 +184862,45928,corruption,1311871588 +184862,45928,documentary,1311871590 +184862,45928,electric vehicles(EV),1416519822 +184862,45928,engineering,1311871592 +184862,45928,environmental,1311871595 +184862,45928,General Motors,1311871598 +184862,45928,George W. Bush,1311872042 +184862,45928,green,1311871603 +184862,45928,innovation,1311871606 +184862,45928,inventor,1311872095 +184862,45928,Lobbyism,1311871614 +184862,45928,Martin Sheen,1311871618 +184862,45928,Mel Gibson,1311871620 +184862,45928,Oil Rig,1311871991 +184862,45928,PG,1311872192 +184862,45928,PG:brief language,1311872192 +184862,45928,politics,1311871625 +184862,45928,propaganda,1311871627 +184862,45928,Seen 2011,1311871857 +184862,45928,sustainability,1311871821 +184862,45928,Tom Hanks,1311871636 +184862,46322,1900s,1345994216 +184862,46322,19th century,1176186295 +184862,46322,action,1345994220 +184862,46322,duel,1176186295 +184862,46322,friendship,1176186295 +184862,46322,Martial Arts,1176185893 +184862,46322,PG-13,1176185932 +184862,46322,redemption,1176186295 +184862,46322,responsibility,1176186295 +184862,46322,revenge,1176186295 +184862,46322,Seen 2007,1176185839 +184862,46322,Shanghai,1176186295 +184862,46322,Tianjin,1176186295 +184862,46322,vanity,1176186295 +184862,46322,wuxia,1176185903 +184862,46530,Jinni Top Pick,1263659137 +184862,46578,Air Force Academy dreams,1158274947 +184862,46578,Arizona,1156634603 +184862,46578,beauty pageant,1156634575 +184862,46578,California,1156634603 +184862,46578,car trouble,1280841513 +184862,46578,dark comedy,1280841559 +184862,46578,drugs,1280841534 +184862,46578,failure,1280841538 +184862,46578,family bonds,1156634583 +184862,46578,family drama,1156634576 +184862,46578,ice cream,1181960927 +184862,46578,kitsch,1179013789 +184862,46578,Nietzche,1280841543 +184862,46578,pornography's influence,1156634684 +184862,46578,Proust,1156634684 +184862,46578,road trip,1156634580 +184862,46578,Seen 2006,1181960927 +184862,46578,success,1156634684 +184862,46578,suicide attempt,1156634684 +184862,46578,volkswagen,1280841551 +184862,46965,Planes,1156426265 +184862,46965,Snakes,1156426263 +184862,46976,baker,1302302452 +184862,46976,Bechdel Test:Pass,1302303100 +184862,46976,Chicago,1302302599 +184862,46976,Dustin Hoffman,1302301985 +184862,46976,Emma Thompson,1302301986 +184862,46976,heartwarming,1302301994 +184862,46976,insanity,1302302751 +184862,46976,IRS agent,1302302307 +184862,46976,Maggie Gyllenhaal,1302301995 +184862,46976,meta,1302302383 +184862,46976,metaphysics,1302301997 +184862,46976,modern fantasy,1302301999 +184862,46976,narrated,1302302001 +184862,46976,passiveness,1302302519 +184862,46976,PG-13,1163768020 +184862,46976,PG-13:brief language,1302303087 +184862,46976,PG-13:disturbing images,1302303086 +184862,46976,PG-13:nudity,1302303087 +184862,46976,PG-13:sexuality,1302303087 +184862,46976,professor,1302302352 +184862,46976,screenwriter:Zach Helm,1302302261 +184862,46976,Seen 2010,1302307110 +184862,46976,suicide attempt,1302302733 +184862,46976,surreal,1302302005 +184862,46976,washing dishes,1452765985 +184862,46976,Will Ferrell,1302302010 +184862,46976,writer's block,1302302502 +184862,46976,writers,1302302012 +184862,47047,Jinni Top Pick,1305659663 +184862,47150,TIFF Top 30 of the 2000s,1259181271 +184862,47200,Jinni Top Pick,1361858795 +184862,47306,movielens top pick,1215648638 +184862,47394,Action thriller,1311951422 +184862,47394,clash of cultures,1311951419 +184862,47394,Erik Canuel,1311951426 +184862,47394,Ice Hockey,1311951463 +184862,47394,murder,1311951431 +184862,47394,québécois,1311951438 +184862,47394,serial killer,1311951441 +184862,47394,too serious,1311951474 +184862,47423,Addiction,1360399738 +184862,47423,answering machine,1306440790 +184862,47423,basketball,1306440895 +184862,47423,Bechdel Test:Pass,1306441107 +184862,47423,Brooklyn,1306440933 +184862,47423,crack,1416625100 +184862,47423,documentary footage,1306440866 +184862,47423,drug trip,1306440658 +184862,47423,drugs,1306438559 +184862,47423,friendship,1306440472 +184862,47423,happiness,1306440820 +184862,47423,history teacher,1306440553 +184862,47423,independent film,1306440963 +184862,47423,junior high school,1306440583 +184862,47423,movielens top pick,1165590538 +184862,47423,New York City,1306440933 +184862,47423,old flame,1306440737 +184862,47423,Oscar Nom 2007,1370215900 +184862,47423,Oscar Nominee: Lead Actor,1306438559 +184862,47423,R,1306438562 +184862,47423,R:drug content,1306441074 +184862,47423,R:language,1306441075 +184862,47423,R:some sexuality,1306441075 +184862,47423,Ryan Fleck,1306438566 +184862,47423,Ryan Gosling,1306438568 +184862,47423,screenwriter:Anna Boden,1306438817 +184862,47423,screenwriter:Ryan Fleck,1306438800 +184862,47423,Seen 2011,1306441098 +184862,47423,teacher,1306440505 +184862,47423,unresolved,1306438574 +184862,47423,unresolved feeling,1416625512 +184862,47423,urban,1306438582 +184862,47423,washing dishes,1452766056 +184862,47610,Yahoo Top Pick,1200687203 +184862,47629,1990s,1193851443 +184862,47629,based on a true story,1193851235 +184862,47629,biographical,1193851231 +184862,47629,Canal+,1193851893 +184862,47629,England,1193851217 +184862,47629,etiquette,1193851443 +184862,47629,good acting,1193852322 +184862,47629,government,1193851225 +184862,47629,grief,1193851442 +184862,47629,hunting,1193851443 +184862,47629,London,1193851894 +184862,47629,monarchy,1193851443 +184862,47629,Oscar (Best Actress),1193851893 +184862,47629,Oscar Nominee: Best Picture,1193851894 +184862,47629,Oscar Nominee: Costume Design,1193851894 +184862,47629,Oscar Nominee: Director,1193851893 +184862,47629,Oscar Nominee: Music - Original Score,1193851893 +184862,47629,Oscar Nominee: Original Screenplay,1193851893 +184862,47629,paparazzi,1193851443 +184862,47629,Paris,1193851443 +184862,47629,Pathe,1193851893 +184862,47629,PG-13,1193851250 +184862,47629,Prime Minister,1193851443 +184862,47629,princess,1193851246 +184862,47629,Princess Diana,1193851253 +184862,47629,public relations,1193851443 +184862,47629,Queen Elizabeth,1193851256 +184862,47629,Scotland,1193851893 +184862,47629,Seen 2007,1193851443 +184862,47629,true story,1193851222 +184862,47774,Bechdel Test:Fail,1248916859 +184862,47774,black and white characters interact with colour world,1307907181 +184862,47774,colour/B&W combo,1363460516 +184862,47774,dark comedy,1364709830 +184862,47774,director-screenwriter,1372792780 +184862,47774,screenwriter:Mauro Monti,1372792780 +184862,47774,television,1266533797 +184862,47937,badass girl,1324922075 +184862,47937,bears,1324922902 +184862,47937,Bechdel Test:Pass,1324922388 +184862,47937,black comedy,1452762143 +184862,47937,blood splatters,1324924379 +184862,47937,bus,1324922935 +184862,47937,company,1324922077 +184862,47937,dark comedy,1324922079 +184862,47937,dark humor,1324922080 +184862,47937,Eastern Europe,1352219166 +184862,47937,excellent acting,1324922083 +184862,47937,excellent characters,1324922086 +184862,47937,guns,1324922088 +184862,47937,horror,1324922090 +184862,47937,Hungary,1324922420 +184862,47937,immolation,1324923014 +184862,47937,knives,1324922961 +184862,47937,land mine,1324922865 +184862,47937,Nudity (Topless - Brief),1324922093 +184862,47937,Nudity (Topless),1324922100 +184862,47937,R,1324925244 +184862,47937,R:drug content,1324925243 +184862,47937,R:language,1324925244 +184862,47937,R:some sexuality/nudity,1324926233 +184862,47937,R:strong bloody violence,1324925243 +184862,47937,Rocket launcher,1324924412 +184862,47937,satirical,1324922103 +184862,47937,screenwriter:Christopher Smith,1324922375 +184862,47937,screenwriter:James Moran,1324922375 +184862,47937,Seen 2011,1324922375 +184862,47937,stabbing,1324924564 +184862,47937,stoner,1324922105 +184862,47937,strong female lead,1324922106 +184862,47937,team-building,1324922109 +184862,47937,weapons industry,1324922113 +184862,48061,2D animation,1302306860 +184862,48082,animated segments,1324886979 +184862,48082,artsy,1324886485 +184862,48082,Bechdel Test:Pass,1324886482 +184862,48082,bittersweet,1324886486 +184862,48082,blood,1324886845 +184862,48082,can't identify with hero,1324886489 +184862,48082,director-screenwriter,1324886654 +184862,48082,dreamlike,1324886498 +184862,48082,dreams,1324886500 +184862,48082,fanciful,1324886502 +184862,48082,fantasy,1324886508 +184862,48082,Gael García Bernal,1416785691 +184862,48082,inner thoughts voiced,1324886819 +184862,48082,inventive,1324886534 +184862,48082,love,1324886744 +184862,48082,mental illness,1324886536 +184862,48082,Michel Gondry,1324886538 +184862,48082,modern art,1416785700 +184862,48082,Paris,1324887036 +184862,48082,psychological,1324886545 +184862,48082,psychology,1324886547 +184862,48082,quirky,1324886548 +184862,48082,R,1324886550 +184862,48082,R:language,1324887102 +184862,48082,R:nudity,1324887102 +184862,48082,R:some sexual content,1324887102 +184862,48082,romance,1324886552 +184862,48082,Seen 2011,1324926167 +184862,48082,shoes,1324886886 +184862,48082,skiing,1324886866 +184862,48082,stylized,1324886554 +184862,48082,surreal,1324886555 +184862,48082,teasing,1324886940 +184862,48082,television,1324886769 +184862,48082,unusual,1324886560 +184862,48082,unwanted kiss,1324887020 +184862,48385,Alabama,1163915374 +184862,48385,anti-Semitism,1324957042 +184862,48385,bears,1324957046 +184862,48385,controversial,1324957066 +184862,48385,cringe,1324957048 +184862,48385,gross out,1324957050 +184862,48385,Los Angeles,1163915374 +184862,48385,mockumentary,1324957052 +184862,48385,New York City,1163915374 +184862,48385,R,1324957054 +184862,48385,racism,1324957056 +184862,48385,satire,1324957057 +184862,48385,Seen 2006,1163916145 +184862,48385,Texas,1163915374 +184862,48385,Virginia,1163915374 +184862,48394,1940's,1175430227 +184862,48394,adolescence,1175429741 +184862,48394,alternate reality,1248992602 +184862,48394,atmospheric,1302360753 +184862,48394,baby,1175430227 +184862,48394,faerie tale,1248969419 +184862,48394,fascism,1175429836 +184862,48394,forest,1175430227 +184862,48394,guerrillas,1175430227 +184862,48394,housekeeper,1175430227 +184862,48394,imdb top 250,1248969425 +184862,48394,macabre,1248969428 +184862,48394,Oscar (Best Art Direction),1248969429 +184862,48394,Oscar (Best Cinematography),1248969430 +184862,48394,Oscar (Best Makeup),1248969431 +184862,48394,Oscar Nominee: Foreign Language (Mexico),1248969432 +184862,48394,Oscar Nominee: Music - Original Score,1248969433 +184862,48394,Oscar Nominee: Original Screenplay,1248969434 +184862,48394,R,1175429932 +184862,48394,sacrifice,1175430227 +184862,48394,Seen 2007,1175430247 +184862,48394,Segovia,1175430499 +184862,48394,Spain,1175429907 +184862,48394,Spanish Civil War,1175429802 +184862,48394,stepfather,1175430227 +184862,48394,storm,1175430227 +184862,48394,stylized,1248969438 +184862,48394,violence,1175405923 +184862,48516,atmospheric,1262121959 +184862,48516,Boston,1262121941 +184862,48516,Edgar Award (Best Motion Picture Screenplay),1281279561 +184862,48516,ensemble cast,1345997155 +184862,48516,father figure,1161907381 +184862,48516,forceful,1219951837 +184862,48516,gangsters,1161480675 +184862,48516,great acting,1352822678 +184862,48516,gritty,1364710332 +184862,48516,harsh,1370215754 +184862,48516,Leonardo DiCaprio,1452761826 +184862,48516,Mafia,1280558965 +184862,48516,Matt Damon,1432597779 +184862,48516,moles,1166856291 +184862,48516,murder,1185660185 +184862,48516,police,1160885099 +184862,48516,police corruption,1262121948 +184862,48516,R,1160886359 +184862,48516,remake,1160885099 +184862,48516,Seen 2006,1160885099 +184862,48516,tense,1262121954 +184862,48516,undercover cop,1160885099 +184862,48516,violence,1160885099 +184862,48560,1970s,1307841265 +184862,48560,adapted from:book,1307841158 +184862,48560,Annette Bening,1307840989 +184862,48560,anxiety,1307841623 +184862,48560,author:Augusten Burroughs,1307841158 +184862,48560,bad poetry,1307841449 +184862,48560,based on a true story,1307841039 +184862,48560,Bechdel Test:Pass,1307840953 +184862,48560,black comedy,1307840997 +184862,48560,christmas tree,1307841669 +184862,48560,coming of age,1307841001 +184862,48560,dark comedy,1307841005 +184862,48560,dysfunctional family,1307841008 +184862,48560,evan rachel wood,1307841010 +184862,48560,female female relationship,1307841317 +184862,48560,food,1307841409 +184862,48560,gay,1372793353 +184862,48560,gwyneth paltrow,1307841015 +184862,48560,homosexuality,1307841022 +184862,48560,narcissism,1307841376 +184862,48560,Older Man Younger Woman Relationship,1307841558 +184862,48560,poetry,1307841449 +184862,48560,quirky,1307841031 +184862,48560,R,1307841033 +184862,48560,R:elements of sexuality,1307845894 +184862,48560,R:strong language,1307845878 +184862,48560,R:substance abuse,1307845918 +184862,48560,R:violence,1307845918 +184862,48560,screenwriter:Ryan Murphy,1307841158 +184862,48560,Seen 2011,1307840975 +184862,48560,sister sister relationship,1307841517 +184862,48560,therapist,1307841245 +184862,48560,washing dishes,1452766149 +184862,48560,weird,1307841047 +184862,48560,writer,1307841342 +184862,48682,Bechdel Test:Fail,1360385348 +184862,48682,cross dressing,1360385358 +184862,48682,cross dressing women,1360385360 +184862,48682,feminism,1360385362 +184862,48682,Iran,1360385364 +184862,48682,Islam,1360385366 +184862,48682,Middle East,1360385370 +184862,48682,PG,1360394482 +184862,48682,PG:language throughout,1360394482 +184862,48682,PG:some thematic elements,1360394482 +184862,48682,Seen 2013,1360385347 +184862,48682,sexism,1360385385 +184862,48682,soccer,1360385388 +184862,48682,soldiers,1360394399 +184862,48682,sports,1360385399 +184862,48682,Stadium,1360385402 +184862,48682,teenage girl,1360394428 +184862,48682,women,1360385404 +184862,48682,women disguised as men,1360385406 +184862,48744,Brooklyn,1177195026 +184862,48744,depression,1177195026 +184862,48744,frustration,1177195026 +184862,48744,gay relationship,1177195027 +184862,48744,INTERSECTING LIVES,1177194310 +184862,48744,irreverent,1177194301 +184862,48744,LOOKING FOR LOVE,1177194303 +184862,48744,New York City,1177195027 +184862,48744,Nudity (Full Frontal - Notable),1177194334 +184862,48744,orgy,1204638853 +184862,48744,SEXUAL AWAKENING,1177194327 +184862,48774,2020s,1267542441 +184862,48774,adapted from:book,1267541735 +184862,48774,apocalypse,1364709426 +184862,48774,atmospheric,1267541700 +184862,48774,author:P. D. James,1267541735 +184862,48774,Bechdel Test:Pass,1267541839 +184862,48774,bleak,1267541759 +184862,48774,Clive Owen,1267541761 +184862,48774,Criticker top pick,1254545710 +184862,48774,disturbing,1388642414 +184862,48774,dystopia,1267541764 +184862,48774,England,1267542433 +184862,48774,ex-wife,1267542433 +184862,48774,fertility,1267542433 +184862,48774,future,1267541767 +184862,48774,gloomy,1267541774 +184862,48774,grim,1267541780 +184862,48774,gritty,1267541783 +184862,48774,motorcycle,1267541785 +184862,48774,Nudity (Topless),1267541796 +184862,48774,Oscar Nominee: Adapted Screenplay,1267543161 +184862,48774,Oscar Nominee: Cinematography,1267543161 +184862,48774,Oscar Nominee: Editing,1267543161 +184862,48774,pregnancy,1267541805 +184862,48774,R,1267543242 +184862,48774,R:brief nudity,1267543242 +184862,48774,R:language,1267543242 +184862,48774,R:some drug use,1267543242 +184862,48774,R:strong violence,1267543242 +184862,48774,refugee,1267542476 +184862,48774,Seen 2010,1267541830 +184862,48774,somber,1267541809 +184862,48774,survival,1267541807 +184862,48774,uprising,1267542486 +184862,48780,1890s,1320116003 +184862,48780,atmospheric,1320115339 +184862,48780,baby,1320115903 +184862,48780,Bechdel Test:Fail,1320115329 +184862,48780,Colorado,1320115979 +184862,48780,complicated,1320115346 +184862,48780,criticker top pick,1302547153 +184862,48780,dark,1320115348 +184862,48780,drinking,1320115615 +184862,48780,eerie,1320115351 +184862,48780,elegant,1320115353 +184862,48780,enigmatic,1320115355 +184862,48780,foggy,1320115880 +184862,48780,funeral,1320115808 +184862,48780,illusionist,1320115743 +184862,48780,imdb top 250,1172182029 +184862,48780,lavish,1320115396 +184862,48780,London,1320115837 +184862,48780,magic,1320115400 +184862,48780,nonlinear,1320115403 +184862,48780,obsession,1320115421 +184862,48780,Oscar Nominee: Art Direction,1320116451 +184862,48780,Oscar Nominee: Cinematography,1320116451 +184862,48780,partners,1320115648 +184862,48780,PG-13,1320115431 +184862,48780,PG-13:disturbing images,1320116217 +184862,48780,PG-13:violence,1320116217 +184862,48780,prison,1320115951 +184862,48780,psychological,1320115444 +184862,48780,revenge,1320115446 +184862,48780,rivalry,1320115568 +184862,48780,Scarlett Johansson,1320115448 +184862,48780,Seen 2011,1320115329 +184862,48780,steampunk,1320115450 +184862,48780,storm,1320115708 +184862,48780,teleportation,1320115455 +184862,48780,tense,1320115458 +184862,48780,twist ending,1320115466 +184862,48909,Edgar Award (Best Motion Picture),1281021438 +184862,48970,TIFF Top 30 of the 2000s,1260170917 +184862,49225,ameliorist,1416592094 +184862,49225,anti-intellectualism,1416590886 +184862,49225,black,1416590877 +184862,49225,corruption,1416590880 +184862,49225,Cory Booker,1416590874 +184862,49225,Documentary,1416590937 +184862,49225,inner city,1416590907 +184862,49225,Marshall Curry,1416590928 +184862,49225,movielens top pick,1281280070 +184862,49225,New Jersey,1416590904 +184862,49225,Oscar Nominee: Documentary Feature,1416591993 +184862,49225,police,1416590945 +184862,49225,police corruption,1416590901 +184862,49225,police state,1416590898 +184862,49225,political campaign,1416592066 +184862,49225,politics,1416590871 +184862,49225,Sharpe James,1416590941 +184862,49225,stupidity,1416590894 +184862,49225,voters,1416590891 +184862,49272,007,1165082344 +184862,49272,adapted from:book,1352842748 +184862,49272,author:Ian Fleming,1212080989 +184862,49272,Bahamas,1167286817 +184862,49272,banks,1167287118 +184862,49272,cars,1167286799 +184862,49272,casinos,1167286825 +184862,49272,England,1167286805 +184862,49272,espionage,1213813931 +184862,49272,franchise,1167286837 +184862,49272,gadget car,1212083255 +184862,49272,gambling,1167286831 +184862,49272,Hungary,1167286821 +184862,49272,James Bond,1165082342 +184862,49272,Lake Como,1167286808 +184862,49272,London,1167286842 +184862,49272,Montenegro,1167286810 +184862,49272,poison,1167287118 +184862,49272,poker,1167286796 +184862,49272,product placement,1167286793 +184862,49272,Seen 2006,1167287118 +184862,49272,series:James Bond,1213813718 +184862,49272,spies,1167286802 +184862,49272,torture,1167287118 +184862,49272,Venice,1167286834 +184862,49824,1960s,1324935404 +184862,49824,1970s,1324935404 +184862,49824,adapted from B'way,1324929105 +184862,49824,adapted from:play,1324929105 +184862,49824,audition,1324955100 +184862,49824,Bechdel Test:Pass,1324932509 +184862,49824,Beyoncé Knowles,1324955427 +184862,49824,cemetary,1324955181 +184862,49824,dancing,1324955130 +184862,49824,Detroit,1324935404 +184862,49824,director-screenwriter,1324929270 +184862,49824,disco,1324955271 +184862,49824,Eddie Murphy,1324928996 +184862,49824,gay fave,1324928999 +184862,49824,great for 60's crowd,1324929003 +184862,49824,Jamie Foxx,1324929015 +184862,49824,jealousy,1324955245 +184862,49824,Los Angeles,1324955181 +184862,49824,music business,1324929018 +184862,49824,music producer,1324955299 +184862,49824,musical,1324929021 +184862,49824,musicians,1324955390 +184862,49824,naivety,1324955079 +184862,49824,PG-13,1324955492 +184862,49824,PG-13:drug content,1324955562 +184862,49824,PG-13:language,1324955562 +184862,49824,PG-13:some sexuality,1324955562 +184862,49824,playwright:Tom Eyen,1324933097 +184862,49824,rhythm & blues,1324929036 +184862,49824,screenwriter:Bill Condon,1324929284 +184862,49824,seen 2011,1324928947 +184862,49824,Sharon Leal,1324929041 +184862,49824,show business,1324949508 +184862,49824,unfaithfulness,1324955427 +184862,49824,vocalists,1324929054 +184862,49961,adultery,1307772262 +184862,49961,affair,1185547427 +184862,49961,BBC Films,1311816654 +184862,49961,cate blanchett,1360399996 +184862,49961,Oscar Nominee: Music - Original Score,1185553360 +184862,49961,Seen 2007,1173796719 +184862,49961,United Kingdom,1193890098 +184862,50005,9th century,1190595099 +184862,50005,adapted from:play,1190588716 +184862,50005,banquet,1190588715 +184862,50005,China,1190594907 +184862,50005,emperor,1190588715 +184862,50005,martial arts,1190588716 +184862,50005,massacre,1190588716 +184862,50005,Oscar Nominee: Costume Design,1190594717 +184862,50005,poison,1190588715 +184862,50005,queen,1190588715 +184862,50005,R,1190594907 +184862,50005,R:violence,1190594928 +184862,50005,rebellion,1190588715 +184862,50005,scope,1190594907 +184862,50005,Seen 2007,1190595099 +184862,50005,stepmother,1190588715 +184862,50005,sword fight,1215544270 +184862,50068,1940s,1311834873 +184862,50068,AFI Movie of the Year,1357940254 +184862,50068,baker,1311834433 +184862,50068,Bechdel Test:Fail,1311832821 +184862,50068,bloody,1311834692 +184862,50068,brutality,1311832651 +184862,50068,cannon,1311834524 +184862,50068,Character study,1311832654 +184862,50068,claustrophobic,1311832656 +184862,50068,Clint Eastwood,1311832659 +184862,50068,Deep,1311832662 +184862,50068,earnest,1311832664 +184862,50068,ex-imdb top 250,1357939864 +184862,50068,general,1311834408 +184862,50068,honest,1352140784 +184862,50068,immolation,1311834767 +184862,50068,intimate,1311832688 +184862,50068,japan,1311832691 +184862,50068,japanese,1311832694 +184862,50068,katana,1311834830 +184862,50068,meditative,1311832696 +184862,50068,MoviePig Top Pick,1191898051 +184862,50068,Navy,1311834609 +184862,50068,Oscar (Best Sound Editing),1311834134 +184862,50068,Oscar Nominee: Best Picture,1311834227 +184862,50068,Oscar Nominee: Director,1311834227 +184862,50068,Oscar Nominee: Original Screenplay,1311834227 +184862,50068,R,1311832712 +184862,50068,R:graphic war violence,1311834992 +184862,50068,screenwriter:Iris Yamashita,1311836248 +184862,50068,Seen 2011,1311834089 +184862,50068,shooting,1311834643 +184862,50068,Tokyo,1311834479 +184862,50068,truth,1311832718 +184862,50068,understated,1311832720 +184862,50068,war,1311832731 +184862,50068,War in the eye of enemy,1311832735 +184862,50068,whiskey,1311834567 +184862,50068,World War II,1311832775 +184862,50158,PG-13:some sexual material,1361681330 +184862,50533,ascetic,1375804432 +184862,50533,biblical references,1375804381 +184862,50533,Catholicism,1375804211 +184862,50533,Christianity,1375804213 +184862,50533,electric clippers,1375804555 +184862,50533,France,1375804215 +184862,50533,haircut,1375804551 +184862,50533,monks,1375804408 +184862,50533,prayer,1375804340 +184862,50533,religion,1375804218 +184862,50533,seasons,1375804320 +184862,50533,Seen 2013,1375804668 +184862,50533,snow,1375804525 +184862,50583,movielens top pick,1306615725 +184862,50685,Adrienne Shelly,1360424537 +184862,50685,bad poetry,1180894604 +184862,50685,baking,1180894604 +184862,50685,bittersweet,1180894604 +184862,50685,doctors,1180894604 +184862,50685,food,1180894604 +184862,50685,infidelity,1180894604 +184862,50685,marriage,1180894604 +184862,50685,PG-13,1180959979 +184862,50685,pie,1180894604 +184862,50685,pregnancy,1180894604 +184862,50685,Seen 2007,1181020900 +184862,50685,setting:diner,1190601797 +184862,50685,small town,1180894604 +184862,50685,waitress,1180894604 +184862,50872,MoviePig Top Pick,1204128717 +184862,50872,Yahoo Top Pick,1195067383 +184862,51080,Bechdel Test:Fail,1311877868 +184862,51080,Catholicism,1311877461 +184862,51080,cellphone scene,1311878043 +184862,51080,Chris Cooper,1352842990 +184862,51080,Christianity,1311877463 +184862,51080,conspiracy,1311877465 +184862,51080,corruption,1311877468 +184862,51080,covert,1311878120 +184862,51080,espionage,1311878205 +184862,51080,family relationships,1311878436 +184862,51080,FBI,1311877470 +184862,51080,government,1311877472 +184862,51080,guns,1311878012 +184862,51080,Laura Linney,1311877474 +184862,51080,lying,1311878290 +184862,51080,matter-of-fact,1311877477 +184862,51080,ominous,1311877480 +184862,51080,paranoid,1311877482 +184862,51080,PG-13,1311877502 +184862,51080,PG-13:language,1311878664 +184862,51080,PG-13:sexual content,1311878664 +184862,51080,PG-13:violence,1311878664 +184862,51080,prayer,1311878184 +184862,51080,religion,1311877516 +184862,51080,Ryan Phillippe,1311877518 +184862,51080,screenwriter:Adam Mazer,1311877868 +184862,51080,screenwriter:Billy Ray,1311877868 +184862,51080,screenwriter:William Rotko,1311877868 +184862,51080,Seen 2011,1311877868 +184862,51080,spying,1311877528 +184862,51080,target shooting,1311878096 +184862,51080,tense,1311877531 +184862,51080,traitor,1311878352 +184862,51080,true story,1311877534 +184862,51080,trust,1311878258 +184862,51080,Washington DC,1311877536 +184862,51255,action,1452762317 +184862,51255,action spoof,1324925618 +184862,51255,actors,1311894866 +184862,51255,automatic weapon,1311894914 +184862,51255,Bechdel Test:Neutral,1311894715 +184862,51255,beer,1311895270 +184862,51255,black comedy,1311894319 +184862,51255,british comedy,1311894319 +184862,51255,buddy movie,1311894450 +184862,51255,cameo-fest,1311895098 +184862,51255,chase,1311895243 +184862,51255,contrived,1311894319 +184862,51255,dark comedy,1311894322 +184862,51255,dystopia,1311894323 +184862,51255,fish out of water,1311894973 +184862,51255,funny,1311894325 +184862,51255,grocery store,1311895317 +184862,51255,justice,1311894327 +184862,51255,macabre,1311894331 +184862,51255,mass murder/terrorism,1311895130 +184862,51255,murder,1311894334 +184862,51255,parody,1311894336 +184862,51255,police,1311894337 +184862,51255,R,1311895332 +184862,51255,R:language,1311895373 +184862,51255,R:violence,1311895373 +184862,51255,school,1311895203 +184862,51255,screenwriter:Edgar Wright,1311894751 +184862,51255,screenwriter:Simon Pegg,1311894750 +184862,51255,Seen 2011,1311894715 +184862,51255,Simon Pegg,1311894344 +184862,51255,slow start,1311894345 +184862,51255,small town,1311894348 +184862,51255,stabbing,1311895019 +184862,51255,stupid,1311894354 +184862,51255,surreal,1311894457 +184862,51255,twists & turns,1311894461 +184862,51255,violence,1311894463 +184862,51471,18th century,1271014604 +184862,51471,abolition,1271014550 +184862,51471,Albert Finney,1271014355 +184862,51471,based on a true story,1271014709 +184862,51471,Benedict Cumberbatch,1271014360 +184862,51471,biography,1271014486 +184862,51471,blindness,1271014709 +184862,51471,drinking,1271014709 +184862,51471,England,1271014362 +184862,51471,gambling,1271014709 +184862,51471,history,1271014495 +184862,51471,Ioan Gruffudd,1271014364 +184862,51471,like-i-like top pick,1208448026 +184862,51471,London,1271014372 +184862,51471,mentor,1271015286 +184862,51471,Michael Apted,1271014828 +184862,51471,Michael Gambon,1271014375 +184862,51471,parliament,1271014386 +184862,51471,PG,1271014389 +184862,51471,PG:mild language,1271014956 +184862,51471,PG:thematic material including slavery,1271014941 +184862,51471,political drama,1271014391 +184862,51471,pregnancy,1271014659 +184862,51471,Prime Minister,1271014560 +184862,51471,Ramola Garai,1271014394 +184862,51471,Rufus Sewell,1271014817 +184862,51471,Seen 2010,1271014459 +184862,51471,singing,1271014585 +184862,51471,slavery,1271014406 +184862,51857,movielens top pick,1304928643 +184862,51884,interracial romance,1210345995 +184862,51884,PG-13,1193679236 +184862,51884,Seen 2007,1195972006 +184862,51884,seen at the cinema,1195972023 +184862,52435,2D animation,1302306387 +184862,52435,adapted from:book,1248965473 +184862,52435,author:Dr. Seuss,1248965480 +184862,52435,Ben Washam,1311835899 +184862,52435,Christmas,1253294974 +184862,52435,classic,1254514762 +184862,52722,adapted from:comic,1189641100 +184862,52722,alter ego,1189641079 +184862,52722,big budget,1366662605 +184862,52722,carjacking,1189644468 +184862,52722,Cheesy,1255200079 +184862,52722,Columbia Pictures,1189644468 +184862,52722,Columbia University,1189644467 +184862,52722,infidelity,1255200090 +184862,52722,jazz club,1255200094 +184862,52722,jealousy,1255200096 +184862,52722,Kirsten Dunst,1255200149 +184862,52722,Marvel,1255200098 +184862,52722,meteor,1255200102 +184862,52722,murder,1189641060 +184862,52722,narcissism,1189644468 +184862,52722,New York City,1189644468 +184862,52722,PG-13,1189644468 +184862,52722,revenge,1189644468 +184862,52722,scope,1189644468 +184862,52722,Seen 2007,1189645840 +184862,52722,sequel,1189641048 +184862,52722,superhero,1189641055 +184862,52885,adapted from:book,1384888806 +184862,52885,alternate reality,1384888526 +184862,52885,animated masterpiece,1384888529 +184862,52885,animation,1384888531 +184862,52885,anime,1384888533 +184862,52885,atmospheric,1384888535 +184862,52885,author:Yasutaka Tsutsui,1384888806 +184862,52885,bad science,1384888538 +184862,52885,bed,1384889247 +184862,52885,camera as portal,1384889293 +184862,52885,coming of age,1384888549 +184862,52885,confusing,1384888553 +184862,52885,director-screenwriter,1384888806 +184862,52885,dreamlike,1384888556 +184862,52885,dreams,1384888558 +184862,52885,hallucinatory,1384888560 +184862,52885,hotel hallway,1384889186 +184862,52885,male nudity,1384889424 +184862,52885,metafiction,1384888563 +184862,52885,paper lantern,1384889293 +184862,52885,philosophical,1384888566 +184862,52885,pistol,1384889360 +184862,52885,Production I.G,1384888572 +184862,52885,psychedelic,1384888574 +184862,52885,R,1384889448 +184862,52885,R:violent and sexual images,1384889448 +184862,52885,refrigerator,1384889424 +184862,52885,research psychotherapist,1384889247 +184862,52885,Satoshi Kon,1384888576 +184862,52885,screenwriter:Satoshi Kon,1384888806 +184862,52885,screenwriter:Seishi Minakami,1384888806 +184862,52885,Seen 2013,1384888379 +184862,52885,soundtrack,1384888579 +184862,52885,story,1384888583 +184862,52885,surreal,1384888585 +184862,52885,surveillance,1384889203 +184862,52885,telepathy,1384889360 +184862,52885,Tokyo,1384889310 +184862,52885,trippy,1384888587 +184862,52927,TIFF Top 30 of the 2000s,1259084341 +184862,52967,adapted from:short story,1365361382 +184862,52967,Author:Alice Munro,1365361418 +184862,52967,book,1365362476 +184862,52967,Canada,1365363452 +184862,52967,card games,1365362588 +184862,52967,cross country skiing,1365362369 +184862,52967,crying,1365362517 +184862,52967,directorial debut,1365361366 +184862,52967,flowers,1365362539 +184862,52967,Gordon Pinsent,1365361295 +184862,52967,jealousy,1365362429 +184862,52967,jigsaw puzzle,1365362339 +184862,52967,Julie Christie,1365361295 +184862,52967,lost,1365362316 +184862,52967,memory,1365361299 +184862,52967,memory loss,1365361302 +184862,52967,nurse,1365361309 +184862,52967,nursing home,1365361311 +184862,52967,old age,1365362413 +184862,52967,Ontario,1365363452 +184862,52967,Oscar Nominee: Adapted Screenplay,1365361527 +184862,52967,Oscar Nominee: Lead Actress,1365361515 +184862,52967,PG-13,1365362696 +184862,52967,Sarah Polley,1365361314 +184862,52967,Seen 2013,1365361366 +184862,52967,skiing,1365362644 +184862,52967,unfaithfulness,1365361320 +184862,52967,Well acted,1365361324 +184862,52973,drugs,1181363879 +184862,52973,Judd Apatow,1265213090 +184862,52973,Las Vegas,1181363880 +184862,52973,Los Angeles,1181363880 +184862,52973,marijuana,1181363880 +184862,52973,Nudity (Topless - Brief),1181362970 +184862,52973,pregnancy,1181363880 +184862,52973,R,1181363880 +184862,52973,Seen 2007,1181392567 +184862,52973,television,1181363880 +184862,52973,unwed mother,1181363880 +184862,53154,horses,1362756305 +184862,53154,human animal relationship,1362756342 +184862,53154,narrated,1362756308 +184862,53154,Nudity (Full - Male),1362756374 +184862,53154,Seattle,1362768101 +184862,53154,Seen 2013,1362770349 +184862,53154,surrealism,1362756314 +184862,53154,underworld,1362756398 +184862,53154,Washington state,1362768101 +184862,53996,adapted from:comic,1302544738 +184862,53996,adapted from:TV series,1302544737 +184862,53996,aliens,1302544890 +184862,53996,Bechdel Test:Fail,1302542662 +184862,53996,car chase,1302545000 +184862,53996,desert,1302544858 +184862,53996,giant robots,1302544749 +184862,53996,high school,1302544833 +184862,53996,incoherent,1302535690 +184862,53996,John Turturro,1302544752 +184862,53996,man versus machine,1302544755 +184862,53996,mechanic,1302544929 +184862,53996,military,1302544805 +184862,53996,Oscar Nominee: Sound,1302535734 +184862,53996,Oscar Nominee: Sound Editing,1302535734 +184862,53996,Oscar Nominee: Visual Effects,1302535751 +184862,53996,scientist,1302545100 +184862,53996,screenwriter:Alex Kurtzman,1302547257 +184862,53996,screenwriter:Roberto Orci,1302547257 +184862,53996,secret agent,1302544969 +184862,53996,Special Effects,1302544764 +184862,53996,Steven Spielberg,1302544766 +184862,53996,teen,1302544788 +184862,53996,US Air Force,1302545136 +184862,53996,US President,1302545056 +184862,54286,adapted from:book,1213812091 +184862,54286,amnesia,1384718033 +184862,54286,assassin,1213812121 +184862,54286,author:Robert Ludlum,1213812091 +184862,54286,Bechdel Test:Fail,1254445392 +184862,54286,car chase,1213812470 +184862,54286,conspiracy,1213812470 +184862,54286,espionage,1213812071 +184862,54286,foot chase,1213812470 +184862,54286,imdb top 250,1213812199 +184862,54286,London,1254445415 +184862,54286,Madrid,1254445416 +184862,54286,manhunt,1254445409 +184862,54286,Morocco,1254445417 +184862,54286,Moscow,1254445419 +184862,54286,murder,1213812132 +184862,54286,NYC,1254445421 +184862,54286,Oscar (Best Editing),1213812789 +184862,54286,Oscar (Best Sound Editing),1213812789 +184862,54286,Oscar (Best Sound),1213812789 +184862,54286,PG-13,1213812907 +184862,54286,PG-13:intense sequences of action,1213812907 +184862,54286,PG-13:violence,1213812907 +184862,54286,scope,1213812907 +184862,54286,Seen 2008,1213806199 +184862,54286,spies,1213812152 +184862,54286,spy thriller,1254445459 +184862,54286,third part,1213812470 +184862,54286,torture,1213812471 +184862,54286,training,1308023485 +184862,54286,trilogy,1213812470 +184862,54286,trilogy:Jason Bourne,1213812470 +184862,54286,twist ending,1253253396 +184862,54881,1980s,1416515736 +184862,54881,2000s,1416515761 +184862,54881,arcade,1416515721 +184862,54881,competition,1416515701 +184862,54881,controversial,1416515764 +184862,54881,documentary,1416515685 +184862,54881,donkey kong,1416515710 +184862,54881,engineer,1416516422 +184862,54881,entrepreneur,1416515897 +184862,54881,fact-twisting,1416516444 +184862,54881,father daughter relationship,1416515793 +184862,54881,father-son relationship,1416515803 +184862,54881,Florida,1416515891 +184862,54881,games,1416515759 +184862,54881,geek,1416515692 +184862,54881,husband-wife relationship,1416515798 +184862,54881,Iowa,1416515885 +184862,54881,nerds,1416515732 +184862,54881,New Hampshire,1416516247 +184862,54881,obsession,1416516417 +184862,54881,PG13,1416515801 +184862,54881,PG13: brief sexual reference,1416517008 +184862,54881,quirky,1416515739 +184862,54881,quirky subculture,1416515689 +184862,54881,referee,1416516343 +184862,54881,rivalry,1416515725 +184862,54881,Seattle,1416515880 +184862,54881,Seen 2014,1416515831 +184862,54881,Seth Gordon,1416515779 +184862,54881,talent,1416515775 +184862,54881,teacher,1416515769 +184862,54881,underdog,1416515704 +184862,54881,unemployment,1416516308 +184862,54881,video games,1416515674 +184862,54881,world record,1416515755 +184862,55069,1980s,1311813936 +184862,55069,abortion,1311813939 +184862,55069,Anamaria Marinca,1311813944 +184862,55069,Bechdel Test:Pass,1311832617 +184862,55069,beyond the iron curtain,1311817289 +184862,55069,birthday,1311815675 +184862,55069,bleak,1311815395 +184862,55069,Bucharest,1311813953 +184862,55069,Ceausescu regime,1311813955 +184862,55069,Cristian Mungiu,1416625054 +184862,55069,desperation,1311815759 +184862,55069,dictatorship,1311813957 +184862,55069,europe,1311813960 +184862,55069,fetus,1311815725 +184862,55069,friendship,1311815667 +184862,55069,Golden Palm,1311813972 +184862,55069,goldfish,1311815472 +184862,55069,hotel,1311815946 +184862,55069,long takes,1311813974 +184862,55069,MoviePig Top Pick,1272155124 +184862,55069,Nudity (Full Frontal),1311813976 +184862,55069,one day,1311816053 +184862,55069,personal,1365363313 +184862,55069,Romania,1311814019 +184862,55069,roommates,1311815871 +184862,55069,screenwriter:Cristian Mungiu,1311836100 +184862,55069,Seen 2011,1311814364 +184862,55069,streetcar,1311815811 +184862,55069,TIFF Top 30 of the 2000s,1259181370 +184862,55069,university,1311815921 +184862,55269,Bechdel Test:Fail,1268250440 +184862,55269,brother-brother relationship,1268250448 +184862,55269,brotherhood,1268250535 +184862,55269,brothers,1213802808 +184862,55269,cameo:Bill Murray,1213802861 +184862,55269,cameo:Natalie Portman,1213802925 +184862,55269,cinematography,1280806617 +184862,55269,dark comedy,1268250450 +184862,55269,death,1213803106 +184862,55269,deceit,1213802837 +184862,55269,family dynamics,1213802819 +184862,55269,funeral,1213803106 +184862,55269,India,1213802802 +184862,55269,Jodhpur,1213803241 +184862,55269,lying,1213802851 +184862,55269,mother-son relationship,1268250455 +184862,55269,nuns,1213802840 +184862,55269,protagonist is egoist,1213802919 +184862,55269,R,1213802932 +184862,55269,R:language,1213803337 +184862,55269,scope,1213803291 +184862,55269,Seen 2008,1213812018 +184862,55269,SIBLING RELATIONSHIPS,1268250543 +184862,55269,snake,1268250535 +184862,55269,spiritual journey,1268250546 +184862,55269,tale of three brothers,1213802911 +184862,55269,train,1268250535 +184862,55276,Edgar Award (Best Motion Picture Screenplay),1281279609 +184862,55282,airport,1416588345 +184862,55282,Alaska,1416554206 +184862,55282,Bechdel Test:Fail,1416554159 +184862,55282,blood,1416554192 +184862,55282,corpse,1416588290 +184862,55282,David Slade,1416554218 +184862,55282,explosion,1416588327 +184862,55282,fire,1416588308 +184862,55282,Josh Hartnett,1416554228 +184862,55282,marijuana,1416588373 +184862,55282,R,1416588386 +184862,55282,R:language,1416588406 +184862,55282,R:strong horror violence,1416588401 +184862,55282,remote location,1416554190 +184862,55282,Seen 2014,1416524784 +184862,55282,silly,1416554237 +184862,55282,small town,1416554221 +184862,55282,snow,1416554187 +184862,55282,stranger,1416588210 +184862,55282,survival,1416554182 +184862,55282,terror,1416588270 +184862,55282,vampire,1416554180 +184862,55282,vandalism,1416588376 +184862,55363,movielens top pick,1201455750 +184862,55451,adapted from:book,1219882123 +184862,55451,author:Karen Joy Fowler,1219882122 +184862,55451,beach,1219882122 +184862,55451,Bechdel Test:Pass,1219882122 +184862,55451,book club,1219882122 +184862,55451,divorce,1219882122 +184862,55451,dog breeder,1219882123 +184862,55451,hippies,1219882752 +184862,55451,lesbian,1219882752 +184862,55451,Los Angeles,1219882752 +184862,55451,MOTHERS AND DAUGHTERS,1219882123 +184862,55451,PG-13,1219882752 +184862,55451,PG-13:brief strong language,1219882752 +184862,55451,PG-13:mature themes,1219882752 +184862,55451,PG-13:sexual content,1219882752 +184862,55451,PG-13:some drug use,1219882752 +184862,55451,Seen 2008,1219882752 +184862,55451,teacher,1219882122 +184862,55687,Amir Bar-Lev,1416784890 +184862,55687,art,1416784895 +184862,55687,art gallery,1416785258 +184862,55687,child prodigy,1416784898 +184862,55687,childhood,1416784934 +184862,55687,family relationships,1416785267 +184862,55687,fraud,1416784900 +184862,55687,media,1416784904 +184862,55687,modern art,1416785264 +184862,55687,opportunism,1416784911 +184862,55687,painter,1416784916 +184862,55687,painting,1416784893 +184862,55687,PG-13,1416785357 +184862,55687,PG-13:language,1416785367 +184862,55687,Seen 2014,1416784939 +184862,55687,stage parents,1416784887 +184862,55805,acting,1443072071 +184862,55805,Albert Finney,1443072062 +184862,55805,baseball field,1443072616 +184862,55805,Bechdel Test:Fail,1443072224 +184862,55805,betrayal,1443072645 +184862,55805,brother-in-law sister-in-law relationship,1443072580 +184862,55805,death,1443072398 +184862,55805,disjointed timeline,1443072088 +184862,55805,Ethan Hawke,1443072094 +184862,55805,guns,1443072351 +184862,55805,human fallibility,1443072104 +184862,55805,Marisa Tomei,1443072056 +184862,55805,New York City,1443072193 +184862,55805,non-linear,1443072068 +184862,55805,Nudity (Topless),1443072059 +184862,55805,Philip Seymour Hoffman,1443072051 +184862,55805,R,1443072768 +184862,55805,R:drug use,1443072804 +184862,55805,R:language,1443072812 +184862,55805,R:nudity,1443072792 +184862,55805,R:scene of strong graphic sexuality,1443072785 +184862,55805,R:violence,1443072800 +184862,55805,Rio de Janeiro,1443072510 +184862,55805,screenwriter:Kelly Masterson,1443072179 +184862,55805,Seen 2015,1443072198 +184862,55805,sex scene,1443072413 +184862,55805,sibling rivalry,1443072461 +184862,55805,Sidney Lumet,1443072048 +184862,55805,social commentary,1451886614 +184862,55805,softball game,1443072643 +184862,55805,violence,1443072373 +184862,55820,1980s,1265184741 +184862,55820,Adaptation,1280591886 +184862,55820,adapted from:book,1280591900 +184862,55820,author:Cormac McCarthy,1265183996 +184862,55820,Bechdel Test:Fail,1265214014 +184862,55820,BOUNTY HUNTERS,1320116960 +184862,55820,brutal,1265182800 +184862,55820,coen brothers,1362321425 +184862,55820,dark,1265182804 +184862,55820,detached,1345997087 +184862,55820,drug dealing,1265184715 +184862,55820,great acting,1265182806 +184862,55820,hitman,1265184779 +184862,55820,husband-wife relationship,1265184845 +184862,55820,insanity,1352222176 +184862,55820,Javier Bardem,1265182808 +184862,55820,mariachi band,1265184812 +184862,55820,money,1265184715 +184862,55820,MoviePig Top Pick,1249074689 +184862,55820,Oscar (Best Directing),1265184927 +184862,55820,Oscar (Best Picture),1265184876 +184862,55820,Oscar (Best Supporting Actor),1265184928 +184862,55820,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1265184928 +184862,55820,Oscar Nominee: Cinematography,1265184960 +184862,55820,Oscar Nominee: Editing,1265184975 +184862,55820,Oscar Nominee: Sound Effects Editing,1265185014 +184862,55820,R,1265185232 +184862,55820,R:some language,1265185232 +184862,55820,R:strong graphic violence,1265185232 +184862,55820,Seen 2010,1265185765 +184862,55820,senseless,1265182821 +184862,55820,sheriff,1265184720 +184862,55820,shootout,1265184718 +184862,55820,tension,1265182823 +184862,55820,Texas,1265182828 +184862,55820,twist ending,1265182833 +184862,55820,veterans,1265184715 +184862,55820,violent,1265182835 +184862,55820,Woody Harrelson,1265182837 +184862,55851,adultery,1379963653 +184862,55851,Dan Klores,1379963554 +184862,55851,Fisher Stevens,1379963556 +184862,55851,PG-13,1379963772 +184862,55851,PG-13:language including sexual references,1379963772 +184862,55851,PG-13:mature thematic elements,1379963772 +184862,55851,secretary,1379963653 +184862,55851,seen 2013,1379963618 +184862,55895,Edgar Award (Best Motion Picture),1281021595 +184862,56367,Bechdel Test:Pass,1262024816 +184862,56367,bittersweet,1366224178 +184862,56367,cult film,1262024826 +184862,56367,Ellen Page,1262024828 +184862,56367,ex-imdb top 250,1262024964 +184862,56367,excellent script,1262024838 +184862,56367,feel-good,1262024864 +184862,56367,high school,1262024890 +184862,56367,humor,1262024897 +184862,56367,Jennifer Garner,1262024910 +184862,56367,notable soundtrack,1262024921 +184862,56367,PG13,1262024973 +184862,56367,pregnancy,1262024977 +184862,56367,quotable,1262024980 +184862,56367,Seen 2009,1262024806 +184862,56367,teen,1262024985 +184862,56367,witty,1262024987 +184862,56757,accomplices,1416624251 +184862,56757,adapted from:play,1416622582 +184862,56757,adopted daughter,1416623439 +184862,56757,Bechdel Test:Fail,1416622402 +184862,56757,cannibalism,1416622431 +184862,56757,child with liquor,1416623513 +184862,56757,cult film,1416623466 +184862,56757,dark comedy,1416622433 +184862,56757,Depp & Burton,1416622460 +184862,56757,estranged daughter,1416623471 +184862,56757,gothic,1416622452 +184862,56757,great cinematography,1416622474 +184862,56757,Johnny Depp,1416622423 +184862,56757,london,1416622575 +184862,56757,loss of loved one,1416623544 +184862,56757,Musical,1416622428 +184862,56757,off screen rape,1416623413 +184862,56757,oscar (best art direction),1416623065 +184862,56757,oscar nominee: costume design,1416623143 +184862,56757,oscar nominee: lead actor,1416623115 +184862,56757,R,1416624041 +184862,56757,R: graphic bloody violence,1416624051 +184862,56757,righteous rage,1416623516 +184862,56757,Seen 2014,1416622398 +184862,56757,serial killer,1416622437 +184862,56757,stabbed in the neck,1416623541 +184862,56757,Tim Burton,1416622425 +184862,56757,violent,1416622442 +184862,56757,visually appealing,1416622440 +184862,56782,1890s,1272141732 +184862,56782,1900s,1272141732 +184862,56782,1910s,1272141732 +184862,56782,1920s,1272141732 +184862,56782,adapted from:book,1272141488 +184862,56782,adoption,1272141703 +184862,56782,author:Upton Sinclair,1272141488 +184862,56782,Bechdel Test:Fail,1304927459 +184862,56782,California,1272141654 +184862,56782,capitalism,1272141548 +184862,56782,cerebral,1443073384 +184862,56782,Daniel Day-Lewis,1272141514 +184862,56782,father-son relationship,1272141517 +184862,56782,greed,1272141520 +184862,56782,imdb top 250,1272141629 +184862,56782,minimalist,1280591807 +184862,56782,mining,1272141539 +184862,56782,morality,1272141541 +184862,56782,MoviePig Top Pick,1252626667 +184862,56782,murder,1272141567 +184862,56782,oil,1272141555 +184862,56782,Oscar (Best Actor),1272141795 +184862,56782,Oscar (Best Cinematography),1272141784 +184862,56782,Oscar Nominee: Adapted Screenplay,1272141925 +184862,56782,Oscar Nominee: Art Direction,1272141857 +184862,56782,Oscar Nominee: Best Picture,1272141925 +184862,56782,Oscar Nominee: Director,1272141857 +184862,56782,Oscar Nominee: Editing,1272141861 +184862,56782,Oscar Nominee: Sound Effects Editing,1272141880 +184862,56782,Paul Thomas Anderson,1272141558 +184862,56782,power,1272141681 +184862,56782,preacher,1272141746 +184862,56782,R,1272142044 +184862,56782,R:violence,1272142044 +184862,56782,religion,1272141523 +184862,56782,Seen 2010,1272141585 +184862,56782,visually appealing,1304927600 +184862,56782,western,1451886178 +184862,56788,1980s,1213817129 +184862,56788,adapted from:book,1213817130 +184862,56788,afghanistan,1272001981 +184862,56788,arms dealer,1213817129 +184862,56788,author:George Crile,1213817130 +184862,56788,based on a true story,1272002080 +184862,56788,Bechdel Test:Fail,1272001889 +184862,56788,belly dancing,1232903607 +184862,56788,CIA,1272001892 +184862,56788,cold war,1213816570 +184862,56788,committees,1213817129 +184862,56788,Congress,1272001895 +184862,56788,corruption,1213817130 +184862,56788,covert operation,1213817129 +184862,56788,drugs,1213817129 +184862,56788,Good dialogue,1272001899 +184862,56788,helicopters,1213817130 +184862,56788,Houston,1272001981 +184862,56788,Islamabad,1272001981 +184862,56788,Jerusalem,1272001981 +184862,56788,Las Vegas,1272001981 +184862,56788,Nudity (Topless),1272001919 +184862,56788,Oscar Nominee: Supporting Actor,1272001908 +184862,56788,playboy,1272001906 +184862,56788,politics,1213816518 +184862,56788,R,1213816595 +184862,56788,R:nudity,1272001914 +184862,56788,R:sexual content,1213817284 +184862,56788,R:some drug use,1213817284 +184862,56788,R:strong language,1213817284 +184862,56788,refugee,1213817129 +184862,56788,satire,1272001922 +184862,56788,screenwriter:Aaron Sorkin,1272001923 +184862,56788,Seen 2008,1213816504 +184862,56788,strippers,1213817130 +184862,56788,Washington DC,1272001981 +184862,56848,1980s,1248926437 +184862,56848,Los Angeles,1248926437 +184862,56848,R,1248926436 +184862,56848,revenge,1248926436 +184862,56848,scope,1248926436 +184862,56921,Edward James Olmos,1261994162 +184862,57669,Criticker top pick,1364751297 +184862,57669,Edgar Award (Best Motion Picture Screenplay),1281279661 +184862,57669,movielens top pick,1206117797 +184862,58494,1940s,1280603172 +184862,58494,adapted from:book,1280602526 +184862,58494,author:John Bingham,1280602525 +184862,58494,Bechdel Test:Fail,1280602360 +184862,58494,BREAKUPS AND DIVORCES,1280603014 +184862,58494,cabin,1280602622 +184862,58494,Chris Cooper,1280601423 +184862,58494,cigarettes,1280603083 +184862,58494,love letters,1280602642 +184862,58494,lover verses friend issues,1280602562 +184862,58494,murder,1280602577 +184862,58494,Patricia Clarkson,1280601421 +184862,58494,PG-13,1280603356 +184862,58494,PG-13:a scene of sexuality,1280603355 +184862,58494,PG-13:thematic elements,1280603356 +184862,58494,Pierce Brosnan,1280601419 +184862,58494,Rachel McAdams,1280601416 +184862,58494,restaurant,1280602601 +184862,58494,seen 2010,1280602350 +184862,58494,true love,1280603102 +184862,58494,widows/widowers,1280603044 +184862,58559,Criticker top pick,1366682711 +184862,58559,I Love Movies Top Pick,1256072524 +184862,58559,MoviePig Top Pick,1302410318 +184862,58709,TIFF Top 30 of the 2000s,1259181244 +184862,58998,Apatow productions,1209602418 +184862,58998,beach,1209602176 +184862,58998,Bechdel Test:Fail,1265213134 +184862,58998,BREAKUPS AND DIVORCES,1209602176 +184862,58998,composer,1209602176 +184862,58998,dracula,1209602176 +184862,58998,drugs,1320122091 +184862,58998,ensemble cast,1360564018 +184862,58998,Hawaii,1209602176 +184862,58998,hotel,1209602176 +184862,58998,Jason Segel,1265213149 +184862,58998,jealousy,1209602176 +184862,58998,Los Angeles,1209602176 +184862,58998,Nudity (Full Frontal - Notable),1209602176 +184862,58998,Nudity (Topless - Brief),1209601784 +184862,58998,puppets,1209602176 +184862,58998,R,1209602418 +184862,58998,R:language,1209602418 +184862,58998,R:sexual content,1209602418 +184862,58998,R:some graphic nudity,1209602418 +184862,58998,stepbrother,1210961401 +184862,58998,surfing,1209602418 +184862,58998,television,1209602176 +184862,58998,VACATION ROMANCES,1209602176 +184862,59258,adoption,1302395436 +184862,59258,Amy Poehler,1302395438 +184862,59258,baby,1302395542 +184862,59258,Bechdel Test:Pass,1302395279 +184862,59258,boss,1302395767 +184862,59258,business,1302395748 +184862,59258,Dax Shepard,1302395447 +184862,59258,doorman,1302395723 +184862,59258,friendship,1302395623 +184862,59258,Greg Kinnear,1302395450 +184862,59258,health food,1302395687 +184862,59258,junk food,1302395576 +184862,59258,PG-13,1302395346 +184862,59258,PG-13:a drug reference,1302395346 +184862,59258,PG-13:crude and sexual humor,1302395346 +184862,59258,PG-13:language,1302395346 +184862,59258,Philadelphia,1302395455 +184862,59258,pregnancy,1302395475 +184862,59258,Romany Malco,1302395479 +184862,59258,Saturday Night Live,1302395484 +184862,59258,scam,1302395602 +184862,59258,screenwriter:Michael Cullers,1302395832 +184862,59258,Seen 2011,1302395279 +184862,59258,Sigourney Weaver,1302395487 +184862,59258,Steve Martin,1302395879 +184862,59258,surrogate,1302395494 +184862,59258,Tina Fey,1302395496 +184862,59258,video games,1302395663 +184862,59258,Will Forte,1302395498 +184862,59306,PG-13:some sexual material,1361681684 +184862,59315,adapted from:comic,1213813532 +184862,59315,afghanistan,1254445558 +184862,59315,air force,1210954530 +184862,59315,android(s)/cyborg(s),1320148435 +184862,59315,arms dealer,1210954529 +184862,59315,bald nemesis,1210954530 +184862,59315,Bechdel Test:Fail,1248960572 +184862,59315,betrayal,1210954530 +184862,59315,business,1364709887 +184862,59315,California,1248960572 +184862,59315,comic book,1280601294 +184862,59315,face mask,1210954530 +184862,59315,industrialist,1210954530 +184862,59315,inventor,1210960839 +184862,59315,jets,1210954529 +184862,59315,kidnapping,1210954530 +184862,59315,Malibu,1210954530 +184862,59315,Marvel,1210953937 +184862,59315,military,1210953948 +184862,59315,mortality,1248960572 +184862,59315,personal assistant,1210954531 +184862,59315,PG-13,1210961306 +184862,59315,PG-13:brief suggestive content,1248960572 +184862,59315,PG-13:intense sci-fi action and violence,1248960572 +184862,59315,playboy,1210954529 +184862,59315,product placement,1210954529 +184862,59315,reporter,1210954529 +184862,59315,robotics,1210954530 +184862,59315,scope,1248960574 +184862,59315,Seen 2008,1213813504 +184862,59315,setting:Afghanistan,1212082043 +184862,59315,superhero,1210953938 +184862,59315,technology,1253253756 +184862,59315,terrorists,1210954530 +184862,59315,topic:cybernetics,1213813534 +184862,59315,torture,1248960585 +184862,59315,vigilante,1253987507 +184862,59315,watch the credits,1210953943 +184862,59315,weapons,1210954530 +184862,59527,Edgar Award (Best Motion Picture),1280979471 +184862,59615,1950s,1211950358 +184862,59615,aliens,1252615499 +184862,59615,Amazon,1211949603 +184862,59615,Amazon jungle,1276618332 +184862,59615,archaeology,1211949517 +184862,59615,Area 51,1276618332 +184862,59615,Cate Blanchett,1276618248 +184862,59615,El Dorado,1211949542 +184862,59615,father-son relationship,1211950358 +184862,59615,giant ants,1276618371 +184862,59615,indiana jones,1211949502 +184862,59615,library setting,1276619256 +184862,59615,massacre,1211950358 +184862,59615,McCarthyism,1211950358 +184862,59615,monkey,1276618373 +184862,59615,motorcycle,1276618332 +184862,59615,murder,1211949535 +184862,59615,nuclear bomb,1211951173 +184862,59615,nuns,1211949778 +184862,59615,Peru,1276618332 +184862,59615,PG-13,1211951226 +184862,59615,PG-13:adventure violence,1211951226 +184862,59615,PG-13:scary images,1211951226 +184862,59615,scope,1211951172 +184862,59615,scorpion,1276618332 +184862,59615,sequel,1211949528 +184862,59615,silly,1252615520 +184862,59615,snake,1276618332 +184862,59615,solving riddles/puzzles,1276618332 +184862,59615,South America,1211949506 +184862,59615,traitor,1211950358 +184862,59615,United States,1211949539 +184862,59615,whip,1211950358 +184862,59725,adapted from:book,1213819551 +184862,59725,adapted from:TV series,1213819551 +184862,59725,author:Candace Bushnell,1213819551 +184862,59725,Based on a TV show,1213766039 +184862,59725,Bechdel Test:Pass,1213812971 +184862,59725,Brooklyn,1213766039 +184862,59725,childbirth,1213766039 +184862,59725,depression,1213766039 +184862,59725,email,1213766039 +184862,59725,fashion,1213766039 +184862,59725,infidelity,1213766039 +184862,59725,left at the altar,1213766039 +184862,59725,library setting,1276619229 +184862,59725,Los Angeles,1213766039 +184862,59725,New Year's Eve,1213766039 +184862,59725,New York City,1213766039 +184862,59725,Nudity (Topless),1213765702 +184862,59725,personal assistant,1213766039 +184862,59725,R,1213766199 +184862,59725,R:graphic nudity,1213766199 +184862,59725,R:language,1213766199 +184862,59725,R:strong sexual content,1213766199 +184862,59725,Seen 2008,1213811998 +184862,59725,wedding,1213766039 +184862,59731,movielens top pick,1232904289 +184862,60069,Criticker top pick,1385187082 +184862,60487,2D animation,1269698442 +184862,60487,Animated,1372791776 +184862,60487,animation,1269698458 +184862,60487,halloween,1258389895 +184862,60950,artists,1219899253 +184862,60950,awkward,1354660278 +184862,60950,Barcelona,1219899254 +184862,60950,Bechdel Test:Pass (barely),1219899254 +184862,60950,graduate student,1219899253 +184862,60950,Madness,1219899254 +184862,60950,modern art,1416785606 +184862,60950,narrated,1219899900 +184862,60950,PG-13,1219899900 +184862,60950,PG-13:mature themes,1219899900 +184862,60950,PG-13:smoking,1219899900 +184862,60950,Scarlett Johansson,1416625328 +184862,60950,Seen 2008,1219899254 +184862,60950,Spain,1219899253 +184862,60950,threesome,1219899253 +184862,60950,ulcer,1219899254 +184862,60950,weddings,1219899253 +184862,61037,TIFF Top 30 of the 2000s,1259257153 +184862,61100,TIFF Top 30 of the 2000s,1259084406 +184862,61323,Bechdel Test:Fail,1310063027 +184862,61323,Brad Pitt,1310063083 +184862,61323,cheating husband,1232728667 +184862,61323,cheating wife,1232728677 +184862,61323,cia,1232728647 +184862,61323,Comedy,1362321665 +184862,61323,cosmetic surgery,1232728662 +184862,61323,dark comedy,1310063031 +184862,61323,dildo,1232728699 +184862,61323,disk,1232728761 +184862,61323,divorce,1232728636 +184862,61323,espionage,1232735961 +184862,61323,memoir,1232728681 +184862,61323,R,1232728696 +184862,61323,R:pervasive language,1232736324 +184862,61323,R:some sexual content,1232736323 +184862,61323,R:violence,1232736324 +184862,61323,satire,1310063065 +184862,61323,Seen 2008,1310063020 +184862,61323,Washington DC,1232736323 +184862,63082,adapted from:book,1384712490 +184862,63082,author:Vikas Swarup,1384712466 +184862,63082,Bechdel Test:Fail,1384713688 +184862,63082,cellphone scene,1384713633 +184862,63082,cheating,1384713318 +184862,63082,cinematography,1384652507 +184862,63082,dreamlike,1384652508 +184862,63082,emotional,1384652510 +184862,63082,excellent script,1384652513 +184862,63082,feel-good,1451886521 +184862,63082,flashbacks,1384713558 +184862,63082,foot chase,1384713359 +184862,63082,great soundtrack,1384652515 +184862,63082,gritty,1384652517 +184862,63082,India,1384652520 +184862,63082,love,1384713318 +184862,63082,love story,1384652524 +184862,63082,memory,1384713419 +184862,63082,movie stars,1384713582 +184862,63082,Mumbai,1384723429 +184862,63082,music,1384652526 +184862,63082,musical numbers,1384713647 +184862,63082,muslim,1384713662 +184862,63082,nonlinear,1384652529 +184862,63082,obsession,1384652532 +184862,63082,orphans,1384652537 +184862,63082,oscar (best cinematography),1384652543 +184862,63082,Oscar (Best Directing),1384652547 +184862,63082,Oscar (Best Editing),1384712589 +184862,63082,Oscar (Best Music - Original Score),1384712589 +184862,63082,Oscar (Best Music - Original Song),1384712589 +184862,63082,Oscar (Best Picture),1384652548 +184862,63082,Oscar (Best Sound),1384712726 +184862,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1384712534 +184862,63082,Oscar Nominee: Sound Editing,1384712702 +184862,63082,R,1384718487 +184862,63082,R:disturbing images,1384718487 +184862,63082,R:language,1384718487 +184862,63082,R:some violence,1384718487 +184862,63082,romance,1452767169 +184862,63082,screenwriter:Simon Beaufoy,1384712466 +184862,63082,Seen 2013,1384652879 +184862,63082,shallow plot,1384713718 +184862,63082,snorricam,1384713419 +184862,63082,social commentary,1384652562 +184862,63082,violence,1384652564 +184862,63082,visually appealing,1384652566 +184862,63992,adapted from:book,1259881741 +184862,63992,author:Stephanie Meyer,1259881741 +184862,63992,Bechdel Test:Pass,1259881882 +184862,63992,fantasy,1259881922 +184862,63992,high school,1259881924 +184862,63992,Kristen Stewart,1259881932 +184862,63992,Robert Pattinson,1259881936 +184862,63992,romance,1259881940 +184862,63992,Seen 2009,1259881882 +184862,63992,super strength,1439099042 +184862,63992,Teen movie,1259881956 +184862,63992,Vampire,1259881961 +184862,63992,Vampire Human Love,1259881964 +184862,64614,rape victim,1384812249 +184862,65135,movielens top pick,1255928808 +184862,66934,anti-hero,1248981454 +184862,66934,Felicia Day,1248981463 +184862,66934,heroes,1248981470 +184862,66934,horses,1248981548 +184862,66934,humiliation,1248981480 +184862,66934,joss whedon,1248981485 +184862,66934,mad scientist,1248981489 +184862,66934,musical,1254013534 +184862,66934,Nathan Fillion,1248981498 +184862,66934,Neil Patrick Harris,1248981500 +184862,66934,parody,1248981507 +184862,66934,short,1248981512 +184862,66934,UNREQUITED LOVE,1276528708 +184862,67255,adapted from:book,1278260202 +184862,67255,anti-hero,1278260493 +184862,67255,author:Stieg Larsson,1278260202 +184862,67255,Bechdel Test:Pass (barely),1278301740 +184862,67255,bisexual,1311879869 +184862,67255,Bondage,1278260808 +184862,67255,characters,1278260216 +184862,67255,cinematography,1278260213 +184862,67255,computers,1278260219 +184862,67255,crime,1278260223 +184862,67255,dark,1278260225 +184862,67255,disturbed childhood,1278260859 +184862,67255,exploding car,1278260620 +184862,67255,foreign language,1278260229 +184862,67255,Gothic Girl,1278260231 +184862,67255,hacker,1278260237 +184862,67255,jail,1278260425 +184862,67255,journalist,1278260402 +184862,67255,Michael Nyqvist,1278260240 +184862,67255,murder,1278260245 +184862,67255,Noomi Rapace,1278260248 +184862,67255,R,1278261052 +184862,67255,R:disturbing violent content including rape,1278261052 +184862,67255,R:grisly images,1278261089 +184862,67255,R:language,1278261089 +184862,67255,R:nudity,1278261089 +184862,67255,R:sexual material,1278261089 +184862,67255,racism,1278260648 +184862,67255,rape,1278260251 +184862,67255,Seen 2010,1278260294 +184862,67255,Sven-Bertil Taube,1280806406 +184862,67255,Sweden,1278260255 +184862,67255,trial,1278260469 +184862,67255,violence,1278260545 +184862,67957,anorexia,1248965669 +184862,67957,cult film,1306612365 +184862,67957,director-screenwriter,1384894270 +184862,67957,illegal art,1384894270 +184862,67957,screenwriter:Cynthia Schneider,1384894270 +184862,67957,screenwriter:Todd Haynes,1384894270 +184862,68135,PG-13:some sexual material,1361681078 +184862,68157,1940s,1302357595 +184862,68157,actress,1302335352 +184862,68157,Adolf Hitler,1302335478 +184862,68157,assassination,1302335236 +184862,68157,baseball bat,1302335607 +184862,68157,Bechdel Test:Fail,1302334737 +184862,68157,black comedy,1302335238 +184862,68157,Brad Pitt,1302335241 +184862,68157,dark comedy,1366223465 +184862,68157,death,1302335243 +184862,68157,easily confused with other movie(s) (title),1302335247 +184862,68157,fire,1302357188 +184862,68157,France,1302335308 +184862,68157,gore,1302335249 +184862,68157,great soundtrack,1302335252 +184862,68157,imdb top 250,1302334799 +184862,68157,interrogation,1302335415 +184862,68157,Jews,1302335255 +184862,68157,movie theatre,1302335452 +184862,68157,Nazis,1302335257 +184862,68157,Oscar (Best Supporting Actor),1302334822 +184862,68157,Oscar Nominee: Best Picture,1302334951 +184862,68157,Oscar Nominee: Cinematography,1302334841 +184862,68157,Oscar Nominee: Director,1302334863 +184862,68157,Oscar Nominee: Editing,1302334889 +184862,68157,Oscar Nominee: Original Screenplay,1302334965 +184862,68157,Oscar Nominee: Sound,1302334906 +184862,68157,Oscar Nominee: Sound Effects Editing,1302334922 +184862,68157,Paris,1302335371 +184862,68157,projectionist,1302335532 +184862,68157,Quentin Tarantino,1302335266 +184862,68157,R,1302335206 +184862,68157,R:brief sexuality,1302335206 +184862,68157,R:language,1302335206 +184862,68157,R:strong graphic violence,1302335206 +184862,68157,revenge,1302335269 +184862,68157,satire,1302335271 +184862,68157,seen 2010,1302334725 +184862,68157,sniper,1302335512 +184862,68157,tense,1302335273 +184862,68157,torture,1302357595 +184862,68157,violence,1302335276 +184862,68157,visually appealing,1302335278 +184862,68157,World War II,1302335280 +184862,68237,Criticker top pick,1445144750 +184862,68347,movielens top pick,1260513729 +184862,68358,adapted from:TV series,1248930630 +184862,68358,alternate reality,1253253803 +184862,68358,bar brawl,1248931008 +184862,68358,Bechdel Test:Pass (technically but not really),1249004408 +184862,68358,big budget,1248931052 +184862,68358,childbirth,1248931031 +184862,68358,DEATH OF A PARENT,1248931007 +184862,68358,exploding planet,1248931008 +184862,68358,franchise,1248931059 +184862,68358,fun,1310053561 +184862,68358,funny,1254445629 +184862,68358,future,1259946802 +184862,68358,great soundtrack,1320148686 +184862,68358,Iowa,1248931023 +184862,68358,joyride,1248931027 +184862,68358,murder,1248931064 +184862,68358,parachute,1248931008 +184862,68358,revenge,1248931007 +184862,68358,Seen 2009,1249004461 +184862,68358,series reset,1261996982 +184862,68358,shootout,1248931008 +184862,68358,space,1444060521 +184862,68358,space battle,1248931021 +184862,68358,Star Trek,1248931070 +184862,68358,teleportation,1248931007 +184862,68358,time travel,1248931018 +184862,68358,UNLIKELY FRIENDSHIPS,1248931007 +184862,68954,adventure,1254443596 +184862,68954,animated,1375812066 +184862,68954,Bechdel Test:Fail,1254443598 +184862,68954,bittersweet,1443061965 +184862,68954,computer animation,1254443601 +184862,68954,divorce,1254443609 +184862,68954,dogs,1254443611 +184862,68954,dreams,1254443613 +184862,68954,feel good movie,1254443620 +184862,68954,friendship,1254443622 +184862,68954,happy ending,1254443629 +184862,68954,heartbreaking,1254443631 +184862,68954,Mourning,1254443636 +184862,68954,Pixar,1254443640 +184862,68954,pretty,1254443650 +184862,68954,Seen 2009,1254443708 +184862,68954,Senior Citizens,1254443655 +184862,68954,storytelling,1254443659 +184862,68954,talking animals,1254443660 +184862,68954,touching,1416588511 +184862,69122,ex-imdb top 250,1255920947 +184862,69466,adultery,1280586050 +184862,69466,assassin,1280586050 +184862,69466,bed and breakfast,1280586050 +184862,69466,con artists,1280586050 +184862,69466,detective,1280586050 +184862,69466,hotel,1280586149 +184862,69466,Los Angeles,1280586051 +184862,69466,murder,1280586050 +184862,69466,polygamy,1280586050 +184862,69466,R,1280586133 +184862,69466,R:language,1280586133 +184862,69466,R:sexual content,1280586133 +184862,69466,Seen 2010,1280587226 +184862,69466,Steve Coogan,1280586067 +184862,69483,apartment,1253221243 +184862,69483,baby,1253221173 +184862,69483,Bechdel Test:Fail,1253280788 +184862,69483,black comedy,1253221321 +184862,69483,dark comedy,1253221321 +184862,69483,death penalty,1252817301 +184862,69483,Executioner,1253221125 +184862,69483,father daughter relationship,1362769865 +184862,69483,FilmAffinity top pick,1254527896 +184862,69483,garrote,1253221291 +184862,69483,in-laws,1253221204 +184862,69483,Madrid,1253221223 +184862,69483,not on DVD,1362769676 +184862,69483,Real Estate,1253221303 +184862,69483,Retirement,1253221142 +184862,69483,Seen 2009,1253253527 +184862,69483,Undertaker,1253221135 +184862,69483,unprotected sex,1253221173 +184862,69604,bar,1280811399 +184862,69604,Bechdel Test:Pass (barely),1280844382 +184862,69604,board game,1280810176 +184862,69604,chess,1280810181 +184862,69604,dog walker,1280811520 +184862,69604,eccentricity,1280811555 +184862,69604,Ed Begley Jr.,1280810551 +184862,69604,Evan Rachel Wood,1280810555 +184862,69604,family relationships,1280811581 +184862,69604,gay,1307850680 +184862,69604,kiss,1280811432 +184862,69604,Larry David,1280810557 +184862,69604,May-December romance,1280810561 +184862,69604,Michael McKean,1280810563 +184862,69604,naivety,1280811457 +184862,69604,New York City,1280810567 +184862,69604,Patricia Clarkson,1280810570 +184862,69604,PG-13,1280811800 +184862,69604,PG-13:brief nude images,1280811800 +184862,69604,PG-13:sexual situations including dialogue,1280811799 +184862,69604,PG-13:thematic material,1280811800 +184862,69604,photography,1280811483 +184862,69604,physics,1280810572 +184862,69604,polyamory,1280811611 +184862,69604,runaway,1280810574 +184862,69604,Seen 2010,1280811834 +184862,69604,Woody Allen,1280810577 +184862,70599,adapted from:book,1252615356 +184862,71131,movielens top pick,1310138897 +184862,71156,absurdism,1276530327 +184862,71156,acid trip,1276530227 +184862,71156,adapted from:book,1276530055 +184862,71156,author:Jon Ronson,1276530055 +184862,71156,Bechdel Test:Fail,1276530430 +184862,71156,black humor,1276530165 +184862,71156,delusional,1276530280 +184862,71156,drugs,1276530098 +184862,71156,Ewan McGregor,1276530100 +184862,71156,George Clooney,1276530105 +184862,71156,hippies,1276530165 +184862,71156,Iraq,1276530308 +184862,71156,Jeff Bridges,1276530107 +184862,71156,Kevin Spacey,1276530109 +184862,71156,Kuwait,1276530304 +184862,71156,military,1276530112 +184862,71156,PSYCHIC ABILITIES,1276530192 +184862,71156,R,1276531384 +184862,71156,R:brief nudity,1276531384 +184862,71156,R:language,1276531384 +184862,71156,R:some drug content,1276531384 +184862,71156,scandal,1276530255 +184862,71156,superpowers,1276530114 +184862,71579,adapted from:book,1280590423 +184862,71579,adultery,1280590448 +184862,71579,Alfred Molina,1280590454 +184862,71579,art,1280590841 +184862,71579,author:Lynn Barber,1280590520 +184862,71579,Bechdel Test:Pass,1280587612 +184862,71579,biographical,1280590462 +184862,71579,birthday,1280590807 +184862,71579,coming of age,1280590465 +184862,71579,con man,1280590683 +184862,71579,Dominic Cooper,1280590471 +184862,71579,Emma Thompson,1280590527 +184862,71579,engagement ring,1280590960 +184862,71579,England,1280590529 +184862,71579,kitchen,1280591012 +184862,71579,London,1280590532 +184862,71579,Lone Scherfig,1280590541 +184862,71579,May-December romance,1280590546 +184862,71579,Oscar Nominee: Adapted Screenplay,1280591147 +184862,71579,Oscar Nominee: Best Picture,1280591112 +184862,71579,Oscar Nominee: Lead Actress,1280591129 +184862,71579,Oxford,1280590880 +184862,71579,Paris,1280590660 +184862,71579,Peter Sarsgaard,1280590549 +184862,71579,PG-13,1280591356 +184862,71579,PG-13:mature thematic material involving sexual content,1280591355 +184862,71579,PG-13:smoking,1280591371 +184862,71579,pub,1280590733 +184862,71579,Rosamund Pike,1280590551 +184862,71579,school,1280590554 +184862,71579,Seen 2010,1280587612 +184862,71579,supper,1280590993 +184862,71579,virginity,1280590772 +184862,71902,Anne Heche,1262674775 +184862,71902,Ashton Kutcher,1262674775 +184862,71902,Bechdel Test:Fail,1262717882 +184862,71902,frog,1262717167 +184862,71902,Los Angeles,1262674933 +184862,71902,New York City,1262716516 +184862,71902,Nudity (Rear),1262674994 +184862,71902,Nudity (Topless - Notable),1262674994 +184862,71902,older woman younger man,1262717161 +184862,71902,R,1262716660 +184862,71902,R:language,1262716660 +184862,71902,R:nudity,1262716660 +184862,71902,R:strong sexual content,1262717153 +184862,71902,Seen 2009,1262670703 +184862,71902,sex scene,1262717150 +184862,71902,womanizing,1262674829 +184862,71928,Alexander Siddig,1280813664 +184862,71928,Bechdel Test:Pass,1280813730 +184862,71928,Cairo,1280814069 +184862,71928,chess,1280814485 +184862,71928,child labor,1280814527 +184862,71928,Egypt,1280813672 +184862,71928,fidelity,1280813675 +184862,71928,Giza,1280814466 +184862,71928,hotel,1280814550 +184862,71928,intercultural relationship,1280814437 +184862,71928,Patricia Clarkson,1280813677 +184862,71928,PG,1280813923 +184862,71928,PG:mild thematic elements,1280813923 +184862,71928,PG:smoking,1280813922 +184862,71928,Seen 2010,1280813730 +184862,71928,travel,1280813680 +184862,72011,adapted from:book,1262719579 +184862,72011,airplane,1262719269 +184862,72011,airport,1262719269 +184862,72011,Anna Kendrick,1262719127 +184862,72011,author:Walter Kirn,1262719579 +184862,72011,Bechdel Test:Pass,1272156228 +184862,72011,business,1262719361 +184862,72011,capitalism,1262719361 +184862,72011,cheating,1270444214 +184862,72011,commitment,1263450553 +184862,72011,corporate america,1324887860 +184862,72011,cynicism,1262719387 +184862,72011,Deep,1360103555 +184862,72011,Detroit,1262719210 +184862,72011,employer employee relationship,1262719363 +184862,72011,George Clooney,1262719128 +184862,72011,honest,1363461130 +184862,72011,humanist,1262719398 +184862,72011,Jason Bateman,1264274560 +184862,72011,Jason Reitman,1262719128 +184862,72011,Las Vegas,1262719210 +184862,72011,layoffs,1262719361 +184862,72011,loneliness,1262719372 +184862,72011,Miami,1262719210 +184862,72011,Nudity (Rear),1262719593 +184862,72011,Omaha,1262719210 +184862,72011,Oscar Nominee: Director,1269652752 +184862,72011,R,1262719579 +184862,72011,R:language,1262719579 +184862,72011,R:some sexual content,1262719579 +184862,72011,screenwriter:Jason Reitman,1302546031 +184862,72011,screenwriter:Sheldon Turner,1302546049 +184862,72011,Seen 2010,1262719069 +184862,72011,St. Louis,1262719210 +184862,72011,thoughtful,1278305036 +184862,72011,Vera Farmiga,1262719127 +184862,72011,wedding,1262719372 +184862,72011,Wisconsin,1262719210 +184862,72011,witty,1280842035 +184862,72737,1920s,1262107946 +184862,72737,Anika Noni Rose,1262107847 +184862,72737,animation,1262107958 +184862,72737,bayou,1262108006 +184862,72737,Bechdel Test:Pass,1262108222 +184862,72737,Bruno Campos,1262107852 +184862,72737,Disney almost making fun of itself,1262108121 +184862,72737,Disney animated feature,1262108134 +184862,72737,Firefly,1262108076 +184862,72737,frog,1262108046 +184862,72737,G,1262108306 +184862,72737,Jenifer Lewis,1262107861 +184862,72737,John Goodman,1262107855 +184862,72737,John Musker,1262107902 +184862,72737,Keith David,1262107859 +184862,72737,Louisiana,1262108000 +184862,72737,New Orleans,1262107868 +184862,72737,Oprah Winfrey,1262107870 +184862,72737,princess,1262108100 +184862,72737,Ron Clements,1262107905 +184862,72737,Seen 2009,1262108209 +184862,72737,Terrence Howard,1262107934 +184862,72737,Voodoo,1262108029 +184862,72899,TIFF Top 30 of the 2000s,1260343697 +184862,72904,TIFF Top 30 of the 2000s,1260343688 +184862,73290,movielens top pick,1416625957 +184862,74510,adapted from:book,1280799504 +184862,74510,attempted murder,1280805691 +184862,74510,author:Stieg Larsson,1280799504 +184862,74510,axe,1280805722 +184862,74510,Bechdel Test:Pass,1280799657 +184862,74510,big man,1280805482 +184862,74510,Daniel Alfredson,1280799512 +184862,74510,exciting,1311951291 +184862,74510,female hacker,1280805655 +184862,74510,Gothic Girl,1280799517 +184862,74510,hackers,1280799522 +184862,74510,hacking,1280799524 +184862,74510,hospitalization,1280805629 +184862,74510,journalism,1280799526 +184862,74510,kidnapping,1280805745 +184862,74510,lawyers,1280805595 +184862,74510,lesbian sex scene,1280805551 +184862,74510,Michael Nyqvist,1280799528 +184862,74510,miscarriage of justice,1280799532 +184862,74510,Noomi Rapace,1280799534 +184862,74510,R,1280806094 +184862,74510,R:brutal violence including rape,1280806094 +184862,74510,R:language,1280806094 +184862,74510,R:nudity,1280806094 +184862,74510,R:some strong sexual content,1280806094 +184862,74510,Seen 2010,1280799657 +184862,74510,sex,1280799909 +184862,74510,sex trafficking,1280799888 +184862,74510,Stockholm,1280805853 +184862,74510,swedish,1280799537 +184862,74510,wanted poster,1280805520 +184862,77731,Jinni Top Pick,1302581963 +184862,77846,Jinni Top Pick,1375963515 +184862,78499,animation,1416588480 +184862,78499,anthropomorphism,1360019042 +184862,78499,Bechdel Test:Pass,1360024761 +184862,78499,betrayal,1360018909 +184862,78499,bittersweet,1360008601 +184862,78499,childhood,1360008619 +184862,78499,children,1360008622 +184862,78499,day care center,1360018813 +184862,78499,escape,1360008624 +184862,78499,eye,1360018860 +184862,78499,franchise,1360008627 +184862,78499,friendship,1360008630 +184862,78499,funny,1360008633 +184862,78499,G,1360019322 +184862,78499,going home,1360019027 +184862,78499,good versus evil,1360008637 +184862,78499,losing a hat,1360018999 +184862,78499,loss of eye,1360018962 +184862,78499,manipulation,1360018892 +184862,78499,MoviePig Top Pick,1308362484 +184862,78499,music,1360008643 +184862,78499,Oscar (Best Animated Feature),1360008682 +184862,78499,Oscar (Best Music - Original Song),1360018591 +184862,78499,Oscar Nominee: Adapted Screenplay,1360019374 +184862,78499,Oscar Nominee: Best Picture,1360018673 +184862,78499,Oscar Nominee: Sound Editing,1360018639 +184862,78499,Pixar,1360008690 +184862,78499,screenwriter:Michael Arndt,1360018483 +184862,78499,Seen 2013,1360021321 +184862,78499,sequel,1360008692 +184862,78499,tense,1360008695 +184862,78499,terror,1360018841 +184862,78499,Timothy Dalton,1360008699 +184862,78499,torture,1360008703 +184862,78499,toys,1360008709 +184862,78499,violence,1360008711 +184862,78499,visually appealing,1360008714 +184862,78499,witty,1360008717 +184862,78499,women disguised as men,1360033099 +184862,78574,acting,1309966636 +184862,78574,adapted from:book,1309966830 +184862,78574,authenticity,1309966638 +184862,78574,author:Daniel Woodrell,1309966830 +184862,78574,Bechdel Test:Pass,1309966236 +184862,78574,characters,1309966643 +184862,78574,cinematography,1309966645 +184862,78574,cultural authenticity,1309966648 +184862,78574,death,1309966656 +184862,78574,drama,1309966657 +184862,78574,drugs,1309966659 +184862,78574,family relationships,1309966662 +184862,78574,father daughter relationship,1309966665 +184862,78574,female director,1309967101 +184862,78574,friendship,1309967381 +184862,78574,Jennifer Lawrence,1309966667 +184862,78574,methamphetamines,1309966981 +184862,78574,Missouri,1309967708 +184862,78574,neighbors,1309967068 +184862,78574,neo noir,1309967328 +184862,78574,Noir,1360399825 +184862,78574,Oscar Nominee: Adapted Screenplay,1309967547 +184862,78574,oscar nominee: Best Picture,1309967481 +184862,78574,Oscar Nominee: Lead Actress,1309967527 +184862,78574,Oscar Nominee: Supporting Actor,1309967508 +184862,78574,ozarks,1309966676 +184862,78574,police,1309967413 +184862,78574,quest,1309966680 +184862,78574,R,1309967761 +184862,78574,R:drug material,1309967761 +184862,78574,R:language,1309967761 +184862,78574,R:violence,1309967761 +184862,78574,realism,1309966682 +184862,78574,resilience,1309966686 +184862,78574,rural,1309967223 +184862,78574,screenwriter:Anne Rosellini,1309966830 +184862,78574,screenwriter:Debra Granik,1309966830 +184862,78574,Seen 2011,1309966226 +184862,78574,siblings,1361642523 +184862,78574,slow,1309966690 +184862,78574,sound effects,1309966698 +184862,78574,stool pigeon,1309967306 +184862,78574,subjective camera,1309967351 +184862,78574,teenage girl,1309967020 +184862,78574,thriller,1309966701 +184862,79132,alternate reality,1280599128 +184862,79132,bathtub,1366693036 +184862,79132,Bechdel Test:Fail,1280599598 +184862,79132,cinematography,1302360381 +184862,79132,classical,1345994284 +184862,79132,clever,1280599127 +184862,79132,complicated,1280599127 +184862,79132,complicated plot,1360399343 +184862,79132,coughing blood,1280599562 +184862,79132,director-screenwriter,1280599374 +184862,79132,dream within a dream,1280599126 +184862,79132,dreamlike,1280599126 +184862,79132,dreams,1280599125 +184862,79132,Ellen Page,1280599125 +184862,79132,flare gun,1280599768 +184862,79132,godfather-godson relationship,1280599536 +184862,79132,Hans Zimmer,1280599124 +184862,79132,heist,1280599129 +184862,79132,intellectual,1280599130 +184862,79132,Intense,1280599135 +184862,79132,Joseph Gordon-Levitt,1280599142 +184862,79132,Kenya,1280599457 +184862,79132,Leonardo DiCaprio,1280599145 +184862,79132,Los Angeles,1280599409 +184862,79132,mindfuck,1280599147 +184862,79132,mirrors,1280599746 +184862,79132,multiple interpretations,1280599151 +184862,79132,open ending,1280599489 +184862,79132,Paris,1280599885 +184862,79132,PG-13,1280599958 +184862,79132,PG-13:action,1280599959 +184862,79132,PG-13:violence,1280599959 +184862,79132,sedation,1280599592 +184862,79132,Seen 2010,1280597024 +184862,79132,spinning top,1280599692 +184862,79132,surreal,1280599158 +184862,79132,Sydney,1280599806 +184862,79132,thought-provoking,1432595281 +184862,79132,Tokyo,1280599885 +184862,79132,unpredictable,1280599165 +184862,79132,visually appealing,1280599174 +184862,79132,weightlessness,1280599180 +184862,80076,Jinni Top Pick,1349592258 +184862,80126,adapted from:book,1302308176 +184862,80126,assassin,1302307597 +184862,80126,author:Martin Booth,1302308176 +184862,80126,Bechdel Test:Fail,1302308379 +184862,80126,butterflies,1302307995 +184862,80126,George Clooney,1302307599 +184862,80126,hiding place,1302307917 +184862,80126,Italy,1302307601 +184862,80126,landscape,1302307604 +184862,80126,loneliness,1302307850 +184862,80126,long takes,1302307607 +184862,80126,Nudity (Full Frontal),1302307810 +184862,80126,one last heist,1302307775 +184862,80126,Priest,1302308109 +184862,80126,R,1302308509 +184862,80126,R:nudity,1302308509 +184862,80126,R:sexual content,1302308509 +184862,80126,R:violence,1302308509 +184862,80126,retro,1302307611 +184862,80126,river,1302308067 +184862,80126,scooter,1302308023 +184862,80126,screenwriter:Rowan Joffe,1302308176 +184862,80126,Seen 2010,1302307625 +184862,80126,sex,1302307743 +184862,80126,slow,1302307613 +184862,80126,sniper,1302307890 +184862,80126,stylized,1302307615 +184862,80126,suspense,1302307619 +184862,80126,Sweden,1302307726 +184862,80126,tattoo,1302307951 +184862,80463,adapted from:book,1302398093 +184862,80463,ambition,1302399168 +184862,80463,arrogance,1302399040 +184862,80463,author:Ben Mezrich,1302398093 +184862,80463,Bechdel Test:Fail,1302396739 +184862,80463,betrayal,1302399217 +184862,80463,brother-brother relationship,1302399193 +184862,80463,business partner,1302399148 +184862,80463,California,1302399290 +184862,80463,Cambridge,1302399259 +184862,80463,entrepreneur,1302398972 +184862,80463,Harvard,1302399344 +184862,80463,imdb top 250,1302399438 +184862,80463,internet,1302399237 +184862,80463,Massachusetts,1302399258 +184862,80463,New York City,1302399333 +184862,80463,Oscar (Best Editing),1302397601 +184862,80463,Oscar (Best Music - Original Score),1302397601 +184862,80463,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1302397757 +184862,80463,Oscar Nominee: Best Picture,1302397829 +184862,80463,Oscar Nominee: Cinematography,1302397774 +184862,80463,Oscar Nominee: Director,1302397799 +184862,80463,Oscar Nominee: Lead Actor,1302397856 +184862,80463,Oscar Nominee: Sound Mixing,1302397809 +184862,80463,Palo Alto,1302399290 +184862,80463,PG-13,1302398033 +184862,80463,PG-13:alcohol use,1302398033 +184862,80463,PG-13:drug use,1302398033 +184862,80463,PG-13:language,1302398033 +184862,80463,PG-13:sexual content,1302398033 +184862,80463,popularity,1302399074 +184862,80463,Private Club,1302399119 +184862,80463,San Francisco,1302399290 +184862,80463,screenwriter:Aaron Sorkin,1302398092 +184862,80463,Seen 2011,1302397601 +184862,80463,website,1302398954 +184862,80549,bad reputation,1302389291 +184862,80549,Bechdel Test:Pass,1302389080 +184862,80549,California,1302389254 +184862,80549,Christianity,1302389532 +184862,80549,clique,1302389622 +184862,80549,closeted homosexual,1302389348 +184862,80549,dialogue,1302389182 +184862,80549,Emma Stone,1302389183 +184862,80549,family relationships,1302389325 +184862,80549,funny,1302389186 +184862,80549,high school,1302389190 +184862,80549,lies,1302389193 +184862,80549,Ojai,1302389466 +184862,80549,PEER PRESSURE,1302389420 +184862,80549,PG-13,1302388953 +184862,80549,PG-13:language,1302388963 +184862,80549,PG-13:mature thematic elements involving teen sexuality,1302388953 +184862,80549,PG-13:some drug material,1302388983 +184862,80549,religious intolerance,1302389602 +184862,80549,satire,1302389552 +184862,80549,scheme,1302389205 +184862,80549,Seen 2010,1302389080 +184862,80549,sexuality,1302389206 +184862,80549,Stanley Tucci,1302389198 +184862,80549,teenage girl,1302389233 +184862,80549,virginity,1302389499 +184862,80549,witty,1302389209 +184862,81591,alter ego,1304925386 +184862,81591,atmospheric,1304925388 +184862,81591,ballet,1304925390 +184862,81591,Bechdel Test:Pass,1304925547 +184862,81591,body horror,1304925396 +184862,81591,campy,1304926992 +184862,81591,creepy,1304925399 +184862,81591,dance,1304925401 +184862,81591,dark,1304925404 +184862,81591,disturbing,1364708999 +184862,81591,drug use,1304926982 +184862,81591,female protagonist,1304926951 +184862,81591,gruesome,1352822576 +184862,81591,horror,1304925413 +184862,81591,jealousy,1304926923 +184862,81591,lesbian,1364709590 +184862,81591,mental illness,1368383564 +184862,81591,mirrors,1304926812 +184862,81591,Natalie Portman,1304925415 +184862,81591,New York City,1304925417 +184862,81591,obsession,1304926771 +184862,81591,Oscar (Best Actress),1304927082 +184862,81591,Oscar Nominee: Best Picture,1304927173 +184862,81591,Oscar Nominee: Cinematography,1304927121 +184862,81591,Oscar Nominee: Director,1304927121 +184862,81591,Oscar Nominee: Editing,1304927173 +184862,81591,overbearing mother,1304926690 +184862,81591,overrated,1304925421 +184862,81591,perfectionist,1304926848 +184862,81591,psychological,1304925429 +184862,81591,R,1304926501 +184862,81591,R:disturbing violent images,1304926501 +184862,81591,R:language,1304926501 +184862,81591,R:some drug use,1304926501 +184862,81591,R:strong sexual content,1304926501 +184862,81591,repressed sexuality,1304925434 +184862,81591,screenwriter:Andres Heinz,1304925624 +184862,81591,screenwriter:John J. McLaughlin,1304925638 +184862,81591,screenwriter:Mark Heyman,1304925601 +184862,81591,Seen 2011,1304925531 +184862,81591,self mutilation,1304926902 +184862,81591,sex,1304925437 +184862,81591,sexual repression,1304926744 +184862,81591,surreal,1443073522 +184862,81591,visceral,1304925440 +184862,81591,Winona Ryder,1304925442 +184862,81834,adapted from:book,1302323800 +184862,81834,Alan Rickman,1302323556 +184862,81834,ambush,1302323956 +184862,81834,author:J. K. Rowling,1302323799 +184862,81834,Bechdel Test:Pass,1302323545 +184862,81834,boyfriend girlfriend relationship,1302323931 +184862,81834,British,1302323813 +184862,81834,confusing,1302323815 +184862,81834,dark,1302323818 +184862,81834,dark fantasy,1302332473 +184862,81834,England,1302323821 +184862,81834,franchise,1302323824 +184862,81834,friendship conflict,1302332673 +184862,81834,genocide,1302323825 +184862,81834,good versus evil,1302332505 +184862,81834,grave robbing,1302332859 +184862,81834,Harry Potter,1302323890 +184862,81834,Helena Bonham Carter,1302323827 +184862,81834,infiltrators,1302332644 +184862,81834,innocents killed,1302332790 +184862,81834,isolation,1302332583 +184862,81834,London,1302332560 +184862,81834,loyalty,1302332766 +184862,81834,magic,1302323831 +184862,81834,mourning,1302332707 +184862,81834,on the run,1302332536 +184862,81834,Oscar Nominee: Art Direction,1302323799 +184862,81834,Oscar Nominee: Visual Effects,1302323800 +184862,81834,PG-13,1302323799 +184862,81834,PG-13:brief sensuality,1302323800 +184862,81834,PG-13:frightening images,1302323799 +184862,81834,PG-13:some sequences of intense action violence,1302323799 +184862,81834,prejudice,1302332385 +184862,81834,quest,1302323847 +184862,81834,racism,1302323849 +184862,81834,rescue,1302332629 +184862,81834,screenwriter:Steve Kloves,1302323799 +184862,81834,Seen 2010,1302323546 +184862,81834,Snakes,1302332729 +184862,81834,teleportation,1302332818 +184862,81834,wedding,1302332435 +184862,82744,Jinni Top Pick,1371336845 +184862,86190,PG-13:some sexual material,1361681447 +184862,86347,not a movie,1352848337 +184862,86347,Seen 2012,1352848334 +184862,86347,stand-up comedy,1452762532 +184862,87232,1940s,1308000588 +184862,87232,1960s,1308000715 +184862,87232,adapted from:comic,1308000370 +184862,87232,Argentina,1320127533 +184862,87232,Bechdel Test:Fail,1307948314 +184862,87232,comic book,1308000370 +184862,87232,covert operation,1308000570 +184862,87232,Cuba,1308000664 +184862,87232,franchise,1308000370 +184862,87232,Las Vegas,1308000621 +184862,87232,Matthew Vaughn,1308000679 +184862,87232,New York,1308000532 +184862,87232,PG-13,1308001036 +184862,87232,PG-13:intense sequences of action and violence,1308001272 +184862,87232,PG-13:language,1308001272 +184862,87232,PG-13:some sexual content including brief partial nudity,1308001272 +184862,87232,Poland,1308000502 +184862,87232,prequel,1308000740 +184862,87232,Seen 2011,1308000370 +184862,87232,superhero,1308000370 +184862,87232,switzerland,1308000641 +184862,87232,X-men,1308000452 +184862,87430,adapted from:comic,1310052468 +184862,87430,alien contact,1310053221 +184862,87430,audience intelligence underestimated,1345593683 +184862,87430,Bechdel Test:Fail,1310052451 +184862,87430,crash landing,1310052920 +184862,87430,father-son relationship,1310052984 +184862,87430,government agencies,1310053100 +184862,87430,Martin Campbell,1310052472 +184862,87430,party,1310053179 +184862,87430,PG-13,1310053413 +184862,87430,PG-13:intense sequences of sci-fi violence and action,1310053413 +184862,87430,psionic power,1310052891 +184862,87430,replacement,1310053025 +184862,87430,Seen 2011,1310052451 +184862,87430,superpowers,1310053132 +184862,87430,test pilot,1310053029 +184862,87430,willpower,1310052945 +184862,88140,Jinni Top Pick,1366755521 +184862,88163,"""testosterone poisoning""",1320121541 +184862,88163,adultery,1320121544 +184862,88163,Bechdel Test:Pass,1320121484 +184862,88163,cast,1320121548 +184862,88163,cute,1360563955 +184862,88163,Emma Stone,1320121550 +184862,88163,high school,1320121673 +184862,88163,homophobic,1320121557 +184862,88163,love,1320121673 +184862,88163,masculinity through dress,1320121563 +184862,88163,men being taught how to woo,1320121567 +184862,88163,mentor/trainer,1320121570 +184862,88163,PG-13,1320121773 +184862,88163,PG-13:coarse humor,1320121773 +184862,88163,PG-13:language,1320121773 +184862,88163,PG-13:sexual content,1320121773 +184862,88163,plot twist,1320121574 +184862,88163,Ryan Gosling,1320121576 +184862,88163,See:Dirty Dancing (1987),1320121579 +184862,88163,Seen 2011,1320121484 +184862,88163,separation,1320121667 +184862,88704,competition,1320069441 +184862,88704,competition:air guitar,1320069431 +184862,88704,documentary,1320069443 +184862,88704,Finland,1320069445 +184862,88704,imagination,1320069449 +184862,88704,individualism,1320069431 +184862,88704,Los Angeles,1320069432 +184862,88704,New York City,1320069431 +184862,88704,nudity (Full - Male),1320069553 +184862,88704,R,1320069592 +184862,88704,R:brief nudity,1320069592 +184862,88704,R:some language,1320069592 +184862,88704,rock and roll,1320069431 +184862,88704,Seen 2011,1320069252 +184862,88744,action,1320123689 +184862,88744,animal shelters,1320125909 +184862,88744,apes,1320123691 +184862,88744,bad dialogue,1320123730 +184862,88744,bad script,1320123694 +184862,88744,beautiful,1320123698 +184862,88744,Bechdel Test:Fail,1320123734 +184862,88744,biology,1320123700 +184862,88744,blockade,1320124609 +184862,88744,computer animation,1320123703 +184862,88744,genetics,1320123741 +184862,88744,horse,1320125533 +184862,88744,inspiring,1320123745 +184862,88744,James Franco,1320123746 +184862,88744,PG-13,1320126120 +184862,88744,PG-13:intense sequences of action and violence,1320126120 +184862,88744,police,1320125876 +184862,88744,reboot,1320123774 +184862,88744,scientist,1320125957 +184862,88744,Seen 2011,1320123592 +184862,88744,shooting,1320125608 +184862,88744,special effects,1320123777 +184862,88744,stereotyped characters,1320123780 +184862,88744,story,1320123783 +184862,88744,subtitles,1320125432 +184862,88744,SWAT team,1320125570 +184862,88744,touching,1320123786 +184862,88744,tranquilizers,1320125468 +184862,88744,tree climbing,1320125401 +184862,88744,virus,1320123789 +184862,88744,virus outbreak,1320123793 +184862,89492,1970s,1352822102 +184862,89492,1980s,1352822102 +184862,89492,1990s,1352822102 +184862,89492,2000s,1352822102 +184862,89492,adapted from:book,1352688770 +184862,89492,anger,1352822064 +184862,89492,author:Michael Lewis,1352688770 +184862,89492,baseball,1352688649 +184862,89492,baseball player,1352822159 +184862,89492,based on a true story,1352688821 +184862,89492,Bechdel Test:Fail,1352843463 +184862,89492,Boston,1352822195 +184862,89492,Brad Pitt,1352688824 +184862,89492,comedy,1352688827 +184862,89492,entertaining,1352688830 +184862,89492,father daughter relationship,1352688832 +184862,89492,funny,1352688836 +184862,89492,great acting,1352688929 +184862,89492,intelligent,1352688930 +184862,89492,manager,1352822015 +184862,89492,math,1352688939 +184862,89492,money,1352688941 +184862,89492,Oakland,1352822195 +184862,89492,Oscar Nominee: Adapted Screenplay,1352689197 +184862,89492,Oscar Nominee: Best Picture,1352689197 +184862,89492,Oscar Nominee: Editing,1352689197 +184862,89492,Oscar Nominee: Lead Actor,1352689197 +184862,89492,Oscar Nominee: Sound Mixing,1352689197 +184862,89492,Oscar Nominee: Supporting Actor,1352689197 +184862,89492,PG-13,1352822231 +184862,89492,PG-13:strong language,1352822231 +184862,89492,Philip Seymour Hoffman,1352688946 +184862,89492,screenwriter:Aaron Sorkin,1352688770 +184862,89492,screenwriter:Steven Zaillian,1352688770 +184862,89492,Seen 2012,1352844837 +184862,89492,sports,1352688949 +184862,89492,statistician,1352822130 +184862,89492,telephone call,1352822040 +184862,89492,underdog,1352688953 +184862,89745,action,1341810330 +184862,89745,Bechdel Test:Fail,1345070422 +184862,89745,Blockbuster swill,1360399252 +184862,89745,cgi,1341810336 +184862,89745,comic book,1341810338 +184862,89745,director-screenwriter,1346019930 +184862,89745,ensemble cast,1366663552 +184862,89745,fiction,1341810341 +184862,89745,fun,1341810343 +184862,89745,Germany,1345071280 +184862,89745,government agent,1345593176 +184862,89745,head butt,1345593207 +184862,89745,helmet,1345593037 +184862,89745,humanoid alien,1345593078 +184862,89745,humorous,1341810351 +184862,89745,macguffin,1345593127 +184862,89745,Marvel,1341810358 +184862,89745,mothership,1345593242 +184862,89745,New York City,1345071202 +184862,89745,PG-13,1345593361 +184862,89745,PG-13:intense sequences of sci-fi violence and action,1345593361 +184862,89745,PG-13:mild drug reference,1345593361 +184862,89745,predictable,1341810365 +184862,89745,Robert Downey Jr.,1341810370 +184862,89745,robots,1345593152 +184862,89745,Samuel L. Jackson,1341810373 +184862,89745,Scarlett Johansson,1341810375 +184862,89745,screenwriter:Joss Whedon,1346019930 +184862,89745,seen 2012,1345070422 +184862,89745,SHIELD,1345592919 +184862,89745,shirtless men,1345593006 +184862,89745,silly,1341810377 +184862,89745,stylized violence,1341810381 +184862,89745,super strength,1439098876 +184862,89745,superhero,1341810383 +184862,89745,superhero team,1341810385 +184862,89745,sure thing,1341810388 +184862,89745,U.S. Army,1345592942 +184862,89745,visually appealing,1341810390 +184862,89745,visually stunning,1341810395 +184862,89804,abortion,1324928587 +184862,89804,adapted from:play,1324927623 +184862,89804,Bechdel Test:Fail,1324926580 +184862,89804,cincinnati,1324928381 +184862,89804,dialogue,1324926440 +184862,89804,director-screenwriter,1324927623 +184862,89804,Evan Rachel Wood,1324926435 +184862,89804,friendship,1324926438 +184862,89804,George Clooney,1324926447 +184862,89804,intrigue,1324926457 +184862,89804,playwright:Beau Willimon,1324927623 +184862,89804,plot holes,1324926465 +184862,89804,politics,1324926467 +184862,89804,presidential elections,1324928509 +184862,89804,R,1324928723 +184862,89804,R:pervasive language,1324928723 +184862,89804,Ryan Gosling,1324926469 +184862,89804,scandal,1324926475 +184862,89804,screenwriter:George Clooney,1324927622 +184862,89804,screenwriter:Grant Heslov,1324927623 +184862,89804,seen 2011,1324926520 +184862,89804,smart,1324926478 +184862,89804,thriller,1324926498 +184862,89804,tight editing,1324926500 +184862,90939,PG-13:some disturbing images and thematic material,1426544208 +184862,91077,adapted from:book,1334463520 +184862,91077,Alexander Payne,1334325898 +184862,91077,author:Kaui Hart Hemmings,1334463543 +184862,91077,Bechdel Test:Pass,1334464000 +184862,91077,cheating wife,1334465882 +184862,91077,coma,1334462196 +184862,91077,director-screenwriter,1334463499 +184862,91077,doctors,1334465758 +184862,91077,drama,1334462199 +184862,91077,emotional,1334462202 +184862,91077,family bonds,1334462205 +184862,91077,father in law,1334465856 +184862,91077,George Clooney,1334462207 +184862,91077,grief,1334465796 +184862,91077,Hawaii,1334462208 +184862,91077,intelligent,1416524198 +184862,91077,land development,1334465905 +184862,91077,lawyers,1334465766 +184862,91077,neglected family,1334465686 +184862,91077,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1334463824 +184862,91077,Oscar Nominee: Best Picture,1334463891 +184862,91077,Oscar Nominee: Director,1334463855 +184862,91077,Oscar Nominee: Editing,1334463871 +184862,91077,Oscar Nominee: Lead Actor,1334463915 +184862,91077,R,1334518554 +184862,91077,R:language,1334518554 +184862,91077,screenwriter:Alexander Payne,1334463655 +184862,91077,screenwriter:Jim Rash,1334463655 +184862,91077,screenwriter:Nat Faxon,1334463655 +184862,91077,Shailene Woodley,1334462213 +184862,91077,social commentary,1443073151 +184862,91077,wild child,1334465719 +184862,91500,action,1388636203 +184862,91500,adapted from:book,1388636286 +184862,91500,author:Suzanne Collins,1388636286 +184862,91500,Bechdel Test:Pass,1388636443 +184862,91500,binoculars,1388640572 +184862,91500,boycotting school,1388640637 +184862,91500,CLASS DIFFERENCES,1388640720 +184862,91500,dystopia,1388636318 +184862,91500,fighting,1388640520 +184862,91500,guard,1388640762 +184862,91500,Happy ending,1388636325 +184862,91500,killer child,1388640603 +184862,91500,killing an animal,1388640672 +184862,91500,love,1388636334 +184862,91500,murder,1388636336 +184862,91500,PG-13,1388640888 +184862,91500,PG-13:disturbing images - all involving teens,1388640888 +184862,91500,PG-13:intense violent thematic material,1388640888 +184862,91500,predictable,1388636340 +184862,91500,rich and poor,1388636343 +184862,91500,river,1388640762 +184862,91500,science fiction,1388636349 +184862,91500,screenwriter:Billy Ray,1388636286 +184862,91500,screenwriter:Gary Ross,1388636286 +184862,91500,screenwriter:Suzanne Collins,1388636286 +184862,91500,Seen 2013,1388636414 +184862,91500,segregation,1388636355 +184862,91500,social commentary,1388636357 +184862,91500,strong female lead,1388636359 +184862,91500,survival,1388636363 +184862,91500,suspense,1388636365 +184862,91500,television,1388636370 +184862,91500,training,1388640549 +184862,91500,warriors,1388640696 +184862,91500,Woody Harrelson,1388636392 +184862,91660,PG-13:sci-fi action violence,1366654728 +184862,91660,screenwriter:Jon Spaihts,1346028451 +184862,92920,R:brief violence,1388701090 +184862,93498,acting,1363456218 +184862,93498,adapted from:book,1363457079 +184862,93498,Alaska,1363457479 +184862,93498,Arizona,1363457811 +184862,93498,author:John Heilemann,1363457079 +184862,93498,author:Mark Halperin,1363457079 +184862,93498,based on a true story,1363457079 +184862,93498,breaking telephone,1363457741 +184862,93498,campaign manager,1363456220 +184862,93498,Ed Harris,1363456223 +184862,93498,election,1363456228 +184862,93498,election day,1363457517 +184862,93498,good performance,1363456232 +184862,93498,history,1363456234 +184862,93498,Jay Roach,1363456236 +184862,93498,Julianne Moore,1363456238 +184862,93498,male underwear,1363457573 +184862,93498,Peter MacNicol,1363457580 +184862,93498,political propaganda,1363457802 +184862,93498,political strategist,1363457552 +184862,93498,politics,1363456243 +184862,93498,preparation,1363457692 +184862,93498,real life,1363456246 +184862,93498,Republicans,1363457772 +184862,93498,Ronald Reagan,1363457622 +184862,93498,screenwriter:Danny Strong,1363457079 +184862,93498,Seen 2013,1363458658 +184862,93498,soldier,1363457666 +184862,93498,Woody Harrelson,1363456247 +184862,94271,adapted from:book,1388725244 +184862,94271,author:Stanislaw Lem,1388725244 +184862,94271,director-screenwriter,1388725244 +184862,94271,screenwriter:Pavel Jurácek,1388725244 +184862,94503,actress,1355110833 +184862,94503,author,1355110823 +184862,94503,bagpipes,1355110789 +184862,94503,Bechdel Test:Pass,1355108099 +184862,94503,bridegroom,1355110723 +184862,94503,deafness,1355110743 +184862,94503,decoy,1355110658 +184862,94503,fog,1355110673 +184862,94503,fur clothing,1355110692 +184862,94503,money,1355110812 +184862,94503,PG,1355111114 +184862,94503,PG:some rude content,1355111114 +184862,94503,Scotland,1355110868 +184862,94503,screenwriter:Neil Jaworski,1355109958 +184862,94503,screenwriter:Sally Phillips,1355109958 +184862,94503,Seen 2012,1355108099 +184862,94503,undressing,1355110762 +184862,94777,PG-13:sci-fi action violence,1366654875 +184862,94864,3D version,1345992749 +184862,94864,acting,1345992753 +184862,94864,aliens,1345992756 +184862,94864,allegory,1345992759 +184862,94864,archaeology,1366218280 +184862,94864,Bechdel Test:Pass,1345992710 +184862,94864,Charlize Theron,1345992767 +184862,94864,corporations,1345993940 +184862,94864,dialogue,1345992770 +184862,94864,exploration,1345993650 +184862,94864,ideas,1345992784 +184862,94864,Meta,1345992787 +184862,94864,Michael Fassbender,1345992816 +184862,94864,neck breaking,1345993745 +184862,94864,Political Correctness,1345992791 +184862,94864,prequel,1345992801 +184862,94864,R,1345995333 +184862,94864,R:brief language,1345995333 +184862,94864,R:sci-fi violence including some intense images,1345995333 +184862,94864,religious overtones,1345992806 +184862,94864,Ridley Scott,1345992809 +184862,94864,scenography,1345992824 +184862,94864,sci-fi,1444061424 +184862,94864,scifi,1345992827 +184862,94864,screenwriter:Damon Lindelof,1346019846 +184862,94864,screenwriter:Jon Spaihts,1346019846 +184862,94864,script,1345992829 +184862,94864,Seen 2012,1345992699 +184862,94864,self-sacrifice,1345992831 +184862,94864,showdown,1345993867 +184862,94864,skulls,1345993913 +184862,94864,space travel,1345993797 +184862,94864,stomach ripped open,1345993773 +184862,94864,super strength,1439098969 +184862,94864,technology,1345992834 +184862,94864,Themes,1345992837 +184862,94864,tomb,1345993844 +184862,95309,R:brief violence,1388701205 +184862,96079,007 (series),1354585364 +184862,96079,action,1354585366 +184862,96079,adapted from:book series,1354659524 +184862,96079,author:Ian Fleming,1354659524 +184862,96079,beautiful cinematography,1354585368 +184862,96079,beautifully filmed,1354585370 +184862,96079,Bechdel Test:Pass,1354659008 +184862,96079,booby trap,1354659370 +184862,96079,China,1354585373 +184862,96079,dark,1354585376 +184862,96079,entertaining,1354585378 +184862,96079,exploding helicopter,1354659307 +184862,96079,franchise,1354585380 +184862,96079,intelligence service,1354659179 +184862,96079,Istanbul,1354657862 +184862,96079,James Bond,1354585382 +184862,96079,Javier Bardem,1354585391 +184862,96079,Judi Dench,1354585387 +184862,96079,London,1354585395 +184862,96079,mental illness,1354585398 +184862,96079,motorcycle,1354585400 +184862,96079,murder,1354585402 +184862,96079,PG-13,1354659796 +184862,96079,PG-13:intense violent sequences throughout,1354659796 +184862,96079,PG-13:language,1354659796 +184862,96079,PG-13:smoking,1354659795 +184862,96079,PG-13:some sexuality,1354659796 +184862,96079,plot,1354585404 +184862,96079,remorse,1354659345 +184862,96079,sad ending,1354585408 +184862,96079,Scotland,1354585410 +184862,96079,screenwriter:John Logan,1354659524 +184862,96079,screenwriter:Neal Purvis,1354659524 +184862,96079,screenwriter:Robert Wade,1354659524 +184862,96079,secret passage,1354659215 +184862,96079,Seen 2012,1354658819 +184862,96079,Shanghai,1354657833 +184862,96079,sociopath,1354659418 +184862,96079,terrorist group,1354659244 +184862,96079,thriller,1354585418 +184862,96079,tombstone,1354659273 +184862,96079,trains,1354659151 +184862,96079,waterfall,1354659438 +184862,96610,bad science,1352087845 +184862,96610,Bechdel Test:Fail,1352089444 +184862,96610,Bruce Willis,1352087848 +184862,96610,Character study,1352087854 +184862,96610,clever,1352087859 +184862,96610,crime boss,1352088955 +184862,96610,director-screenwriter,1352088012 +184862,96610,dystopia,1352087861 +184862,96610,film noir,1352087863 +184862,96610,future,1352088175 +184862,96610,good writing,1352087868 +184862,96610,gore,1352088620 +184862,96610,Joseph Gordon-Levitt,1352087870 +184862,96610,Kansas,1352088984 +184862,96610,lawlessness,1352088833 +184862,96610,mind bending,1352087872 +184862,96610,mother-son relationship,1352088691 +184862,96610,organized crime,1352088653 +184862,96610,pistol,1352088924 +184862,96610,plot holes,1352087881 +184862,96610,pointless plot,1352087885 +184862,96610,R,1352089163 +184862,96610,R:drug content,1352089163 +184862,96610,R:language,1352089163 +184862,96610,R:some sexuality/nudity,1352089163 +184862,96610,R:strong violence,1352089163 +184862,96610,Rian Johnson,1352087888 +184862,96610,sci-fi,1432595335 +184862,96610,sci-fi thriller,1352087893 +184862,96610,science fiction,1352087897 +184862,96610,Seen 2012,1352089455 +184862,96610,severed hand,1352088899 +184862,96610,Shanghai,1352088995 +184862,96610,single mother,1352088862 +184862,96610,telekinesis,1352087907 +184862,96610,tense,1352087913 +184862,96610,thriller,1352087916 +184862,96610,time travel,1352087918 +184862,96610,visually appealing,1352087921 +184862,96610,Voice Over Narration,1352088726 +184862,97304,1970s,1354659955 +184862,97304,1980's,1352843538 +184862,97304,adapted from:magazine article,1352845212 +184862,97304,adapted from:true story,1352845212 +184862,97304,Alan Arkin,1352843541 +184862,97304,AMERICAN ABROAD,1352845578 +184862,97304,anti-hero,1354659963 +184862,97304,anti-war,1384718298 +184862,97304,author:Joshuah Bearman,1352845287 +184862,97304,Bechdel Test:Pass,1352844903 +184862,97304,Ben Affleck,1352843548 +184862,97304,catch phrase,1352843555 +184862,97304,CIA Agent,1352843558 +184862,97304,deception,1352845704 +184862,97304,detail,1352843562 +184862,97304,diplomat,1352845544 +184862,97304,extraction,1352845430 +184862,97304,fake movies,1352845704 +184862,97304,funny,1352843571 +184862,97304,hollywood,1352843568 +184862,97304,hostage,1352845406 +184862,97304,Iran,1352843576 +184862,97304,John Goodman,1352843579 +184862,97304,Los Angeles,1352845648 +184862,97304,Middle East,1352843586 +184862,97304,movie poster,1352845608 +184862,97304,One-Liners,1352843590 +184862,97304,Political Thriller,1352843593 +184862,97304,politics,1352843595 +184862,97304,R,1352847590 +184862,97304,R:language,1352847590 +184862,97304,R:some violent images,1352847590 +184862,97304,revolution,1352845498 +184862,97304,screenwriter:Chris Terrio,1352845287 +184862,97304,secret mission,1352845474 +184862,97304,Seen 2012,1352844903 +184862,97304,thriller,1352843602 +184862,97304,thrilling,1352843611 +184862,98013,R:brief violence,1388701169 +184862,98809,adapted from:book,1357925286 +184862,98809,adventure,1357925288 +184862,98809,animal attacks,1357927357 +184862,98809,author:J. R. R. Tolkein,1357925291 +184862,98809,beautiful scenery,1357925299 +184862,98809,Bechdel Test:Fail,1357966524 +184862,98809,big budget,1357925301 +184862,98809,bow & arrow,1357927470 +184862,98809,cave,1357927509 +184862,98809,CGI,1357925304 +184862,98809,crude humor,1357925307 +184862,98809,eagles,1357927531 +184862,98809,epic,1357925309 +184862,98809,fantasy,1357925311 +184862,98809,fantasy world,1357925314 +184862,98809,franchise,1357925316 +184862,98809,Goblin,1357925318 +184862,98809,magic,1357925322 +184862,98809,middle earth,1357927278 +184862,98809,multiple endings,1357925325 +184862,98809,music,1357925327 +184862,98809,New Zealand,1357925330 +184862,98809,orcs,1357927253 +184862,98809,Oscar Nominee: Makeup,1357926098 +184862,98809,Oscar Nominee: Production Design,1357926115 +184862,98809,Oscar Nominee: Visual Effects,1357926131 +184862,98809,Peter Jackson,1357925333 +184862,98809,PG-13,1357927741 +184862,98809,PG-13:extended sequences of intense fantasy action violence,1357927741 +184862,98809,PG-13:frightening images,1357927741 +184862,98809,ring,1357927233 +184862,98809,screenwriter:Fran Walsh,1357925985 +184862,98809,screenwriter:Guillermo del Toro,1357926060 +184862,98809,screenwriter:Peter Jackson,1357926037 +184862,98809,screenwriter:Philippa Boyens,1357926002 +184862,98809,Seen 2012,1357925268 +184862,98809,severed arm,1357927421 +184862,98809,soundtrack,1357925337 +184862,98809,storytelling,1426542657 +184862,98809,too long,1357925345 +184862,98809,tree climbing,1357927315 +184862,98809,unexpected guests,1357927450 +184862,99114,movielens top pick,1451918279 +184862,100052,R:brief violence,1388701345 +184862,100487,accidental killing,1361642257 +184862,100487,adapted from:book,1361642137 +184862,100487,Alden Ehrenreich,1361642044 +184862,100487,author:Kami Garcia,1361642137 +184862,100487,author:Margaret Stohl,1361642137 +184862,100487,Bechdel Test:Pass,1361642412 +184862,100487,director-screenwriter,1361642137 +184862,100487,library,1361642412 +184862,100487,Magic,1361642046 +184862,100487,PG-13,1361642334 +184862,100487,PG-13:scary images,1361642335 +184862,100487,PG-13:some sexual material,1361642334 +184862,100487,PG-13:violence,1361642335 +184862,100487,romance,1361642049 +184862,100487,screenwriter:Richard LaGravenese,1361642137 +184862,100487,Seen 2013,1361642353 +184862,100487,small town,1361642055 +184862,100487,supernatural,1363459365 +184862,100487,SUPERNATURAL ROMANCE,1363459384 +184862,100487,teenage boy,1361642227 +184862,101864,action,1366651379 +184862,101864,adapted from:comic,1366653611 +184862,101864,adventure,1366651381 +184862,101864,aliens,1366651384 +184862,101864,aliens invasion,1366651387 +184862,101864,atmospheric,1366651390 +184862,101864,author:Joseph Kosinski,1366653611 +184862,101864,bad script,1366651393 +184862,101864,Bechdel Test:Fail,1366652068 +184862,101864,Brooklyn Bridge,1366653769 +184862,101864,cliche,1366651395 +184862,101864,clones,1366653806 +184862,101864,director-screenwriter,1366653611 +184862,101864,dystopia,1366651397 +184862,101864,electronic music,1366653992 +184862,101864,future,1366651400 +184862,101864,Morgan Freeman,1366651403 +184862,101864,motorcycle,1366653854 +184862,101864,nuclear bomb,1366653955 +184862,101864,nuclear explosion,1366654044 +184862,101864,Pentagon,1366653831 +184862,101864,PG-13,1366654278 +184862,101864,PG-13:brief strong language,1366654278 +184862,101864,PG-13:sci-fi action violence,1366654278 +184862,101864,PG-13:some sensuality/nudity,1366654278 +184862,101864,post-apocalyptic,1444061398 +184862,101864,resistance,1366653911 +184862,101864,resistance fighter,1366653922 +184862,101864,sci-fi,1366651406 +184862,101864,Seen 2013,1366652068 +184862,101864,sentimental,1366651572 +184862,101864,shootout,1366653689 +184862,101864,space,1366651574 +184862,101864,Tom Cruise,1366651576 +184862,102125,action,1384820755 +184862,102125,action packed,1384820753 +184862,102125,Bechdel Test:Pass,1384821272 +184862,102125,Ben Kingsley,1384820759 +184862,102125,Berne,1384896154 +184862,102125,blockbuster,1384887849 +184862,102125,brawl,1384887758 +184862,102125,cgi,1384820761 +184862,102125,Christmas,1384820764 +184862,102125,comic book,1384820766 +184862,102125,director-screenwriter,1384886718 +184862,102125,Don Cheadle,1384820768 +184862,102125,explosions,1384887712 +184862,102125,funny,1384820772 +184862,102125,Guy Pearce,1384820773 +184862,102125,helicopters,1384887712 +184862,102125,hologram,1384887748 +184862,102125,hotel,1384887798 +184862,102125,interrogation,1384887849 +184862,102125,laptop computer,1384887905 +184862,102125,Los Angeles,1384896154 +184862,102125,Mark Ruffalo,1384820776 +184862,102125,Marvel,1384820779 +184862,102125,murder,1384887798 +184862,102125,PG-13,1384888008 +184862,102125,PG-13:brief suggestive content,1384888030 +184862,102125,PG-13:sequences of intense sci-fi action and violence throughout,1384888007 +184862,102125,predictable,1384820781 +184862,102125,Robert Downey Jr.,1384820783 +184862,102125,robots,1384820785 +184862,102125,romantic,1384820787 +184862,102125,screenwriter:Drew Pearce,1384886719 +184862,102125,screenwriter:Shane Black,1384886719 +184862,102125,Seen 2013,1384821272 +184862,102125,shallow plot,1384820790 +184862,102125,silly,1384820794 +184862,102125,super strength,1439098928 +184862,102125,superhero,1384820795 +184862,102125,Tennessee,1384896154 +184862,102125,terrorism,1384820798 +184862,102125,visually appealing,1384820805 +184862,102125,Washington DC,1384896154 +184862,102125,wisecrack humor,1384887895 +184862,102445,adapted from:TV series,1368933851 +184862,102445,aliens,1368933826 +184862,102445,Bechdel Test:Fail,1368934780 +184862,102445,Benedict Cumberbatch,1368933856 +184862,102445,blues music,1368934954 +184862,102445,disobeying orders,1368935021 +184862,102445,dive bar,1368934970 +184862,102445,exploding building,1368935070 +184862,102445,first officer,1368934868 +184862,102445,franchise,1368933862 +184862,102445,interracial love,1368934905 +184862,102445,J.J. Abrams,1368933866 +184862,102445,nightclub,1368935038 +184862,102445,PG-13,1368935511 +184862,102445,PG-13:intense sequences of sci-fi violence and action,1368935511 +184862,102445,scottish accent,1368934924 +184862,102445,screenwriter:Alex Kurtzman,1368933954 +184862,102445,screenwriter:Damon Lindelof,1368933954 +184862,102445,screenwriter:Roberto Orci,1368933954 +184862,102445,Seen 2013,1368934682 +184862,102445,space,1368933868 +184862,102445,spock,1368933874 +184862,102445,Star Trek,1368933877 +184862,102445,super strength,1439099015 +184862,102445,threesome,1368934994 +184862,102445,traitor,1368935092 +184862,104736,R: brief violence,1388700981 +184862,105769,adapted from:book,1388723270 +184862,105769,author:Stanislaw Lem,1388723269 +184862,105769,director-screenwriter,1388723302 +184862,106487,Abrupt ending,1388701438 +184862,106487,acting,1388701447 +184862,106487,adapted from:book,1388701650 +184862,106487,animal attacks,1388720556 +184862,106487,author:Suzanne Collins,1388701650 +184862,106487,Bechdel Test:Pass,1388701422 +184862,106487,CLASS DIFFERENCES,1388720399 +184862,106487,costumes,1388701964 +184862,106487,dystopia,1388701966 +184862,106487,dystopic future,1388701971 +184862,106487,excellent script,1388701975 +184862,106487,faked pregnancy,1388720321 +184862,106487,future,1388720238 +184862,106487,hypodermic needle,1388720275 +184862,106487,Jennifer Lawrence,1388701977 +184862,106487,lightning,1388720487 +184862,106487,PG-13,1388720687 +184862,106487,PG-13:a suggestive situation,1388720686 +184862,106487,PG-13:intense sequences of violence and action,1388720687 +184862,106487,PG-13:language,1388720687 +184862,106487,PG-13:some frightening images,1388720687 +184862,106487,PG-13:thematic elements,1388720687 +184862,106487,pistol,1388720212 +184862,106487,Remember who the enemy is,1388701982 +184862,106487,returning character killed off,1388720412 +184862,106487,revolution,1388701985 +184862,106487,romance,1388701989 +184862,106487,screenwriter:Michael Arndt,1388701650 +184862,106487,screenwriter:Simon Beaufoy,1388701650 +184862,106487,seen 2013,1388701409 +184862,106487,social commentary,1388701997 +184862,106487,strong female lead,1388701999 +184862,106487,teen movie,1426542595 +184862,106487,threat,1388720488 +184862,106487,title at the end,1388720535 +184862,106487,visually appealing,1388702002 +184862,106487,Woody Harrelson,1388702004 +184862,106916,based on a true story,1388700629 +184862,106916,Bechdel Test:Pass,1388643375 +184862,106916,bittersweet,1388643338 +184862,106916,Bradley Cooper,1388643339 +184862,106916,Christian Bale,1388643341 +184862,106916,con artists,1388643342 +184862,106916,corruption,1388643344 +184862,106916,David O. Russell,1388643346 +184862,106916,director-screenwriter,1388700628 +184862,106916,Jennifer Lawrence,1388643348 +184862,106916,Jeremy Renner,1388643350 +184862,106916,Louis C.K.,1388643352 +184862,106916,mobster,1388700724 +184862,106916,New Jersey,1388700724 +184862,106916,politics,1388643355 +184862,106916,R,1388700775 +184862,106916,R:brief violence,1388700775 +184862,106916,R:pervasive language,1388700775 +184862,106916,R:some sexual content,1388700775 +184862,106916,screenwriter:Eric Singer,1388700629 +184862,106916,Seen 2013,1388643366 +184862,106920,movielens top pick,1438034312 +184862,109487,ambiguous ending,1432595005 +184862,109487,Anne Hathaway,1432594698 +184862,109487,Bechdel Test:Pass,1432594157 +184862,109487,Christopher Nolan,1432594672 +184862,109487,cornfield,1432594875 +184862,109487,dust storm,1432594925 +184862,109487,giant wave,1432594999 +184862,109487,good science,1432594695 +184862,109487,Matthew McConaughey,1432594680 +184862,109487,NASA,1432594840 +184862,109487,Oscar (Best Effects - Visual Effects),1432594337 +184862,109487,Oscar Nominee: Music - Original Score,1432594416 +184862,109487,Oscar Nominee: Production Design,1432594493 +184862,109487,Oscar Nominee: Sound Editing,1432594463 +184862,109487,Oscar Nominee: Sound Mixing,1432594443 +184862,109487,PG-13,1432595200 +184862,109487,PG-13:brief strong language,1432595230 +184862,109487,PG-13:some intense perilous action,1432595218 +184862,109487,physicist,1432595103 +184862,109487,relativity,1432594805 +184862,109487,robot,1432594954 +184862,109487,sci-fi,1432594693 +184862,109487,Seen 2015,1432594087 +184862,109487,self sacrifice,1432595098 +184862,109487,space,1432594675 +184862,109487,thought-provoking,1432594687 +184862,109487,time paradox,1432594715 +184862,109487,time-travel,1432594678 +184862,109487,wormhole,1432594691 +184862,112556,adapted from:book,1437169528 +184862,112556,author-screenwriter,1437169541 +184862,112556,author:Gillian Flynn,1437169503 +184862,112556,Bechdel Test:Pass,1437163950 +184862,112556,Ben Affleck,1437163973 +184862,112556,brother sister relationship,1437170023 +184862,112556,David Fincher,1437163971 +184862,112556,diary,1437169941 +184862,112556,extramarital affair,1437170153 +184862,112556,false accusation,1437163984 +184862,112556,imdb top 250,1437164023 +184862,112556,lake house,1437170192 +184862,112556,male infidelity,1437170189 +184862,112556,manipulative personality,1437170172 +184862,112556,marriage,1437163979 +184862,112556,meticulous,1437163993 +184862,112556,mindfuck,1437163966 +184862,112556,missing wife,1437169947 +184862,112556,Missouri,1437170202 +184862,112556,murder,1437163987 +184862,112556,Neal Patrick Harris,1443073665 +184862,112556,New York City,1437170255 +184862,112556,Oscar Nominee: Lead Actress,1452767832 +184862,112556,Psychopathy,1437163968 +184862,112556,R,1437170467 +184862,112556,R:a scene of bloody violence,1437170489 +184862,112556,R:language,1437170522 +184862,112556,R:some strong sexual content/nudity,1437170511 +184862,112556,Rosamund Pike,1437163976 +184862,112556,Seen 2015,1436927928 +184862,112556,sex scene,1437170106 +184862,112556,twins,1437169998 +184862,112556,unpredictable,1437163963 +184862,112556,wedding anniversary,1437169976 +184862,112852,movielens top pick,1444069325 +184862,116823,adapted from book,1426540275 +184862,116823,ambush,1426542139 +184862,116823,author:Suzanne Collins,1426540315 +184862,116823,Bechdel Test:Pass,1426540425 +184862,116823,blockbuster,1426542078 +184862,116823,dystopia,1426540012 +184862,116823,execution,1426542037 +184862,116823,fashion,1426540351 +184862,116823,Francis Lawrence,1426540356 +184862,116823,genius,1426542257 +184862,116823,Inspirational Speeches,1426540016 +184862,116823,Jennifer Lawrence,1426540360 +184862,116823,manipulation,1426541995 +184862,116823,media,1426540385 +184862,116823,military,1426540404 +184862,116823,oppression,1426542099 +184862,116823,PG-13,1426542276 +184862,116823,PG-13:intense sequences of violence and action,1426542304 +184862,116823,PG-13:some disturbing images and thematic material,1426542356 +184862,116823,plane crash,1426542184 +184862,116823,revolution,1426540029 +184862,116823,Seen 2014,1426539978 +184862,116823,sister sister relationship,1426542239 +184862,116823,strong female lead,1426540367 +184862,116823,symbols,1426541955 +184862,116823,women,1426540363 +184862,117444,2D,1452758464 +184862,117444,animation,1452758263 +184862,117444,Artistic,1452758427 +184862,117444,Atmosphere,1452758436 +184862,117444,Bechdel Test:Pass,1452758256 +184862,117444,brother sister relationship,1452758459 +184862,117444,family,1452758431 +184862,117444,Folklore,1452758267 +184862,117444,ireland,1452758476 +184862,117444,ocean,1452759487 +184862,117444,Oscar Nominee: Animated Feature,1452758408 +184862,117444,PG,1452759529 +184862,117444,PG:language,1452759544 +184862,117444,PG:mild peril,1452759534 +184862,117444,PG:pipe smoking images,1452759551 +184862,117444,Seen 2016,1452749434 +184862,117444,shell,1452759502 +184862,117444,Tomm Moore,1452758276 +184862,118198,PG-13: some disturbing images and thematic material,1426544020 +184862,122882,action,1443825299 +184862,122882,adventure,1443825321 +184862,122882,Australia,1444057710 +184862,122882,Bechdel Test:Pass,1443825290 +184862,122882,bound and gagged,1444057930 +184862,122882,charlize theron,1443825314 +184862,122882,dead fetus,1444057903 +184862,122882,desert,1443825316 +184862,122882,destruction,1444057920 +184862,122882,drifter,1444057896 +184862,122882,dystopian,1443825309 +184862,122882,feminism,1443825311 +184862,122882,feminist,1443825325 +184862,122882,non-stop,1443825319 +184862,122882,on the run,1444057735 +184862,122882,post apocalypse,1443825302 +184862,122882,prosthetic arm,1444057766 +184862,122882,R,1444060090 +184862,122882,R:disturbing images,1444060148 +184862,122882,R:intense sequences of violence,1444060140 +184862,122882,Seen 2015,1443825161 +184862,122882,shaving,1444057915 +184862,122882,visually appealing,1443825304 +184862,122882,woman kills a man,1444057806 +184862,122886,Adam Driver,1451880887 +184862,122886,androids,1451884984 +184862,122886,BB-8,1451880907 +184862,122886,Bechdel Test:Pass,1451880841 +184862,122886,Carrie Fisher,1451880909 +184862,122886,Daisy Ridley,1451880895 +184862,122886,Fan service,1451880881 +184862,122886,father-son relationship,1451884941 +184862,122886,female protagonist,1451884898 +184862,122886,forest,1451885044 +184862,122886,Harrison Ford,1451880884 +184862,122886,helmet,1451884993 +184862,122886,J.J. Abrams,1451880896 +184862,122886,John Boyega,1451880898 +184862,122886,patricide,1451885112 +184862,122886,PG-13,1451885313 +184862,122886,PG-13:sci-fi action violence,1451885335 +184862,122886,Plot Recycling,1451880876 +184862,122886,rage,1451885056 +184862,122886,scrap merchant,1451885083 +184862,122886,Seen 2013,1451880824 +184862,122886,Star Wars,1451880873 +184862,122886,telekinesis,1451885060 +184862,122900,adapted from:comic,1439098027 +184862,122900,bald nemesis,1439098506 +184862,122900,Bechdel Test:Fail,1439098087 +184862,122900,bug zapper,1439098578 +184862,122900,burglary,1439098626 +184862,122900,comic book,1439097912 +184862,122900,detective,1439098475 +184862,122900,entertaining,1439097918 +184862,122900,heist,1439097914 +184862,122900,improvised weapon,1439098493 +184862,122900,Marvel,1439097904 +184862,122900,Michael Douglas,1439097920 +184862,122900,paul rudd,1439097923 +184862,122900,PG-13,1439098703 +184862,122900,PG-13:sci-fi action violence,1439098720 +184862,122900,regret,1439098604 +184862,122900,sabotage,1439098608 +184862,122900,San Francisco,1439098483 +184862,122900,sci-fi,1439097946 +184862,122900,super strength,1439098591 +184862,122900,superhero,1439097910 +184862,122900,vault,1439098470 +184862,134130,adapted from:book,1452727493 +184862,134130,author:Andy Weir,1452727553 +184862,134130,Bechdel Test:Pass,1452741116 +184862,134130,China,1452733563 +184862,134130,disco,1452733147 +184862,134130,Houston,1452733568 +184862,134130,international cooperation,1452733127 +184862,134130,left for dead,1452733077 +184862,134130,mars,1452727203 +184862,134130,matt damon,1452727201 +184862,134130,Near Future,1452727255 +184862,134130,PG-13,1452736134 +184862,134130,PG-13:brief nudity,1452736185 +184862,134130,PG-13:injury images,1452736164 +184862,134130,PG-13:some strong language,1452736143 +184862,134130,planting,1452733176 +184862,134130,realistic,1452727249 +184862,134130,sci-fi,1452727195 +184862,134130,scientific,1452727207 +184862,134130,scientist,1452733575 +184862,134130,Seen 2016,1452740889 +184862,134130,Space,1452727192 +184862,134130,space habitat,1452733038 +184862,134130,space travel,1452727244 +184862,134130,surgical staple,1452733194 +184862,134130,Survival Instinct,1452727198 +184862,134368,action,1438030027 +184862,134368,Bechdel Test:Pass,1438029560 +184862,134368,bomb,1438032272 +184862,134368,cia,1438030036 +184862,134368,comedy,1438030025 +184862,134368,director-screenwriter,1438029556 +184862,134368,espionage,1438030014 +184862,134368,false identity,1438032129 +184862,134368,feminist,1438030001 +184862,134368,jude law,1438030006 +184862,134368,knife fight,1438032159 +184862,134368,melissa mccarthy,1438030003 +184862,134368,miranda hart,1438030023 +184862,134368,misogynist character,1438032280 +184862,134368,mission,1438032164 +184862,134368,paris,1438030045 +184862,134368,penis,1438032109 +184862,134368,political,1438030049 +184862,134368,R,1438032564 +184862,134368,R:language,1438032586 +184862,134368,R:some sexual content including brief graphic nudity,1438032632 +184862,134368,R:violence,1438032598 +184862,134368,redemption,1438032326 +184862,134368,Seen 2015,1438026270 +184862,134368,subtitled scene,1438032175 +184862,134368,vulgarity,1438032330 +184862,134853,Animation,1442921303 +184862,134853,bears,1442927586 +184862,134853,Bechdel Test:Pass,1442927241 +184862,134853,box office hit,1442927473 +184862,134853,bus,1442927344 +184862,134853,childhood,1442921307 +184862,134853,coming of age,1442921323 +184862,134853,creative,1442921311 +184862,134853,emotions,1442921328 +184862,134853,happiness,1442921331 +184862,134853,hockey,1442927442 +184862,134853,honesty,1442927624 +184862,134853,imaginative,1442921335 +184862,134853,memory,1442927306 +184862,134853,PG,1442927873 +184862,134853,PG:mild thematic elements,1442927895 +184862,134853,PG:some action,1442927900 +184862,134853,Pixar,1442921293 +184862,134853,pre-teen,1442927689 +184862,134853,psychology,1442921299 +184862,134853,runaway,1442927488 +184862,134853,San Francisco,1442921314 +184862,134853,stealing,1442927364 +184862,134853,tryouts,1442927701 +184862,138968,R,1437172960 +184862,138968,R:a scene of bloody violence,1437173018 +184862,138968,R:brief drug use,1437173028 +184862,138968,R:language,1437173005 +184862,138968,R:nudity,1437172995 +184862,138968,R:strong graphic sexual content,1437172991 +184862,139415,Bechdel Test:Fail,1439099196 +184862,139415,boyfriend,1439099267 +184862,139415,director-screenwriter,1439099162 +184862,139415,flashlight,1439099276 +184862,139415,philosophy,1439099272 +184862,139415,professor,1439099263 +184862,139415,R,1439099486 +184862,139415,R:sexual content,1439099502 +184862,139415,R:some language,1439099492 +184862,139415,Rhode Island,1439099310 +184871,260,good clean fun movie,1432059803 +184871,260,good for kids,1432059769 +184871,260,good vs evil,1432059789 +184881,7153,fantasy,1430886216 +184881,52722,superhero,1430886301 +184881,68319,action,1430886278 +184887,541,slow,1286279578 +184887,3262,David Lynch,1286444784 +184887,3262,surreal,1286444794 +184887,5528,serial killer,1320095227 +184887,5878,Lonelyness,1285945942 +184887,39183,homosexuality,1293985261 +184887,39183,impossible love,1293985395 +184887,67255,Getting even,1285949714 +184887,70425,adoption,1297069279 +184887,70425,falling in love,1297069262 +184887,71728,bad plot,1296045694 +184887,71728,Gay stereotypes,1296045659 +184887,71728,Short Movie,1296045582 +184887,80864,falling in love,1296042330 +184887,80864,vaudville,1296042087 +184887,80864,Woody Allen,1296042091 +184887,83529,Max von Sydow,1296025267 +184887,83529,World War II,1296025188 +184889,1377,batman,1189750140 +184889,1690,alien series,1189750179 +184889,2424,tom hanks,1189750231 +184889,3033,idiotic,1189750212 +184889,4896,harry potter,1189750151 +184922,2762,dead,1293675783 +184930,119145,action,1451196760 +184930,119145,gentlemanly,1451196753 +184930,119145,Michael Caine,1451196769 +184930,119145,Secret Agency,1451196790 +184930,119145,spy,1451196745 +184941,50685,macabre,1184101063 +184962,260,adventure,1424829913 +184962,260,joseph campbell's study of mythology influenced,1424829913 +184962,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1424829913 +184970,260,classic,1441743216 +184970,260,Science Fiction,1441743179 +184970,260,space action,1441743186 +184970,71535,Emma Stone,1442094084 +184970,71535,zombies,1442094086 +184970,115713,AI,1441744225 +184970,115713,artificial intelligence,1441744218 +184970,115713,Future,1441744244 +184970,115713,nudity (full frontal),1441744231 +184970,115713,robots,1441744241 +184970,115713,technology,1441744251 +184997,1198,adventure,1440820493 +184997,1198,humorous,1440820504 +184997,1265,funny,1440821094 +184997,1265,hilarious,1440821114 +184997,1265,philosophical,1440821123 +184997,1270,comedy,1440731055 +184997,1270,Funny,1440731038 +184997,1270,sci-fi,1440731032 +184997,1270,time travel,1440731023 +184997,2020,Paris,1440821365 +184997,2020,witty,1440821376 +184997,2028,action,1440820674 +184997,6539,comedy,1440820556 +184997,7323,historical,1440823096 +184997,7323,idealism,1440823111 +184997,7323,The fall of the Berlin wall,1440823104 +185041,72356,not available from Netflix,1290655390 +185084,1964,Jane Fonda,1191799056 +185085,858,New York City,1365525804 +185085,858,organized crime,1365525773 +185085,858,violence,1365525795 +185155,143549,imotional,1444193244 +185196,198,provocative,1283886615 +185196,919,seen this one enough,1283889414 +185196,1035,awful...just awful,1283886020 +185196,1035,cloying,1283886020 +185196,2728,stood up over time,1283886129 +185196,3503,better than remake,1283885796 +185196,3503,too long,1283885796 +185196,7480,stop-motion,1283888452 +185196,7836,not so good as back then,1283889500 +185196,37240,must see!,1283889249 +185196,40583,fell asleep,1283887057 +185233,6724,Buddy Movie,1428421130 +185233,81819,atmospheric,1436343392 +185233,81819,drama,1436343392 +185233,81819,foriegn language,1436343392 +185233,89745,Canned fun,1428421189 +185233,103384,harmless,1428420894 +185233,103384,knockabout,1428420894 +185233,103384,messy,1428420894 +185235,292,epidemic,1451346264 +185235,592,dark hero,1451302033 +185235,2707,conspiracy,1451302401 +185235,6502,post-apocalyptic,1451302851 +185235,6502,zombies,1451302854 +185235,7502,war,1451302585 +185235,7502,World War II,1451302583 +185235,51935,sniper,1451301547 +185235,66090,intense,1451347053 +185235,71571,serial killer,1451346897 +185235,90405,dystopia,1451303217 +185235,108583,not a movie,1451304245 +185235,108583,tv series,1451304243 +185235,108709,realistic,1451302614 +185261,88205,author:anne rice,1422556115 +185261,88205,new orleans,1422556115 +185261,88205,voodoo,1422556115 +185261,119141,Katy Perry,1424901131 +185261,119141,puppy,1424901104 +185261,123439,mtv feature,1423780279 +185261,123439,rock and roll,1423780279 +185261,123439,teen remake,1423780279 +185261,131361,balcony,1429291431 +185261,140974,corny,1444594868 +185261,143595,assault,1444590423 +185261,143595,fire,1444590416 +185275,260,Fantastic Sci fi,1438932266 +185275,260,Solid Sci fi,1438932244 +185277,260,classic sci-fi,1443926242 +185292,111,atmospheric,1432159536 +185292,260,future,1431945090 +185292,260,sci fi,1431945137 +185292,1206,atmospheric,1432159513 +185292,1206,dystopia,1432159502 +185292,1206,narrated,1432159457 +185292,1206,psychological,1432159491 +185292,1206,stanley kubrick,1432159516 +185292,1230,Woody Allen,1432217122 +185292,1748,atmospheric,1437430487 +185292,1748,dystopia,1437430471 +185292,1748,Post apocalyptic,1437430479 +185292,2959,dark comedy,1432159413 +185292,2959,mindfuck,1432159434 +185292,2959,philosophy,1432159420 +185292,2959,psychology,1432159411 +185292,2959,satirical,1432159429 +185292,2959,surreal,1432159416 +185292,2959,twist ending,1432159408 +185292,7361,bittersweet,1432203707 +185292,7361,Charlie Kaufman,1432203726 +185292,7361,nonlinear,1432203712 +185292,7361,philosophy,1432203719 +185292,7361,psychology,1432203722 +185292,7361,surreal,1432203699 +185292,7371,experimental,1432159278 +185292,7371,narrated,1432159267 +185292,7371,philosophical,1432159253 +185292,8807,stoner comedy,1432146260 +185292,27773,great soundtrack,1432159392 +185292,27773,surreal,1432159383 +185292,27773,twist ending,1432159365 +185292,66808,explosions,1437423490 +185292,66808,flat story,1437423490 +185292,66808,til schweiger,1437423490 +185292,86898,cinematography,1448144867 +185292,109374,cinematography,1432203654 +185292,111362,time travel,1441912768 +185292,114935,mindfuck,1442078042 +185292,114935,time travel,1442078044 +185307,3578,Russell Crowe,1426000472 +185307,4226,mystery,1426000505 +185307,112183,pretentious,1426000396 +185310,22,thriller,1368667021 +185310,29,dark,1368666437 +185310,31,inspirational,1368666697 +185310,157,politics,1368666972 +185310,161,tense,1368667001 +185310,216,stupid,1368666986 +185310,247,New Zealand,1220574342 +185310,247,Peter Jackson,1220573857 +185310,290,New Zealand,1220574364 +185310,342,Australian,1220576609 +185310,440,politics,1368666972 +185310,474,tense,1368667001 +185310,509,New Zealand,1220574331 +185310,519,franchise,1368666622 +185310,541,Philip K. Dick,1220261570 +185310,551,Christmas,1220576269 +185310,551,Tim Burton,1220576279 +185310,555,violent,1368667036 +185310,745,Aardman,1220576224 +185310,832,tense,1368667001 +185310,832,thriller,1368667021 +185310,861,police,1368666934 +185310,1089,violent,1368667037 +185310,1095,ensemble cast,1368666501 +185310,1148,Aardman,1220576235 +185310,1175,dark,1368666437 +185310,1206,violent,1368667037 +185310,1214,tense,1368667001 +185310,1223,Aardman,1220576232 +185310,1241,New Zealand,1220574382 +185310,1241,Peter Jackson,1220574382 +185310,1255,New Zealand,1220574542 +185310,1262,ensemble cast,1368666501 +185310,1357,father-son relationship,1368666601 +185310,1357,mental illness,1368666738 +185310,1390,politics,1368666972 +185310,1569,Julia Roberts,1220577236 +185310,1597,thriller,1368667021 +185310,1610,thriller,1368667021 +185310,1641,England,1220576045 +185310,1777,Drew Barrymore,1221445981 +185310,1834,mystery,1368666788 +185310,1950,police,1368666934 +185310,2024,christianity,1368662703 +185310,2026,high school,1368666656 +185310,2058,tense,1368667001 +185310,2076,dark,1368666437 +185310,2082,inspirational,1368666697 +185310,2273,surprisingly funny,1220580907 +185310,2335,stupid,1368666986 +185310,2353,thriller,1368667021 +185310,2383,police,1368666934 +185310,2391,Billy Bob Thornton,1220260520 +185310,2490,violent,1368667036 +185310,2500,high school,1368666656 +185310,2618,Australian,1220576716 +185310,2882,nazis,1368666838 +185310,2888,high school,1368666656 +185310,2959,violent,1368667037 +185310,2985,violent,1368667037 +185310,3044,mystery,1368666788 +185310,3146,stupid,1368666986 +185310,3178,inspirational,1368666697 +185310,3255,baseball,1220577253 +185310,3256,tense,1368667001 +185310,3256,thriller,1368667021 +185310,3273,franchise,1368666622 +185310,3362,police,1368666934 +185310,3429,aardman,1220576227 +185310,3440,franchise,1368666622 +185310,3481,Nick Hornby,1220576474 +185310,3519,nazis,1368666838 +185310,3566,christianity,1368662703 +185310,3683,dark,1368666437 +185310,3751,aardman,1220576230 +185310,3980,inspirational,1368666697 +185310,4019,inspirational,1368666697 +185310,4225,australian,1220576729 +185310,4254,Australian,1220576646 +185310,4306,pixar,1368666914 +185310,4350,New Zealand,1220574515 +185310,4388,stupid,1368666986 +185310,4624,New Zealand,1220574457 +185310,4624,Peter Jackson,1220573887 +185310,4865,dark,1368666437 +185310,4974,stupid,1368666986 +185310,4993,New Zealand,1220574283 +185310,4993,Peter Jackson,1220574410 +185310,4995,mathematics,1220575902 +185310,5107,nazis,1368666838 +185310,5218,pixar,1368666915 +185310,5363,high school,1368666656 +185310,5445,Philip K. Dick,1220260182 +185310,5785,stupid,1368666986 +185310,5952,New Zealand,1220574357 +185310,5952,Peter Jackson,1220574357 +185310,6323,mystery,1368666788 +185310,6385,New Zealand,1220574299 +185310,6537,franchise,1368666622 +185310,6808,nazis,1368666838 +185310,6957,surprisingly funny,1220260452 +185310,7143,New Zealand,1220581164 +185310,7153,New Zealand,1220574395 +185310,7153,Peter Jackson,1220574395 +185310,8360,pixar,1368666914 +185310,8781,politics,1368666972 +185310,33660,inspirational,1368666697 +185310,38038,Aardman,1220576220 +185310,43396,New Zealand,1220574314 +185310,53121,franchise,1368666622 +185310,56171,Phillip Pullman,1220261769 +185310,59784,pixar,1368666915 +185310,63113,franchise,1368666622 +185344,110102,Marvel,1451431895 +185356,8492,Christmas,1181530360 +185356,8492,Scrooge,1181530352 +185356,51884,Potential Oscar Nom 2008,1181778256 +185356,56757,musical,1207248274 +185357,2944,first two-thirds best,1187381527 +185360,68157,boring,1259008790 +185360,68157,slow paced,1259008790 +185360,68157,too long,1259008790 +185366,39,girlie movie,1137590037 +185366,919,classic,1137589819 +185366,1084,classic,1137589884 +185366,1307,1980s,1137589927 +185366,1333,Hitchcock,1137589869 +185387,55908,empirical,1318723817 +185397,94,atmospheric,1313431679 +185397,94,beautiful,1313431669 +185397,94,believable,1313431646 +185397,94,love,1313431631 +185397,94,Uma Thurman,1313431616 +185397,233,dark,1313430790 +185397,1225,18th century,1313431421 +185397,1225,based on a play,1313431447 +185397,1225,beautiful,1313431489 +185397,1225,mozart,1313431465 +185397,1719,Atom Egoyan,1313430654 +185397,2600,Jude Law,1305835409 +185397,2730,18th century,1313430503 +185397,2730,narrated,1313430558 +185397,2730,photography,1313430572 +185397,2730,slow,1313430561 +185397,2730,Stanley Kubrick,1313430566 +185397,2919,dictatorship,1313431573 +185397,2919,POLITICAL UNREST,1313431556 +185397,5646,18th century,1313430522 +185397,5646,beautiful,1313431255 +185397,5646,believable,1313431216 +185397,5646,Milos Forman,1313430534 +185397,5646,romance,1313431228 +185397,7158,culture clash,1311901080 +185397,7158,dark,1311901155 +185397,7158,immigrants,1311901183 +185397,7158,Vadim Perelman,1311901168 +185397,8981,love,1313431407 +185397,112183,single shot,1431124822 +185402,260,boring,1440356518 +185402,260,old-fashioned,1440356534 +185441,527,historical,1438661438 +185441,527,holocaust,1438661423 +185441,527,true story,1438661435 +185441,527,World War II,1438661426 +185441,1221,Al Pacino,1438661503 +185441,1221,classic,1438661494 +185441,1221,complex characters,1438661533 +185441,1221,dysfunctional family,1438661528 +185441,1221,Francis Ford Coppola,1438661530 +185441,1221,great acting,1438661511 +185441,1221,highly quotable,1438661536 +185441,1221,Mafia,1438661520 +185441,1221,organized crime,1438661514 +185441,1221,Oscar (Best Picture),1438661517 +185441,1221,Robert De Niro,1438661496 +185441,1221,sequel,1438661525 +185441,1221,violence,1438661538 +185441,1232,mistery,1438661412 +185441,1232,post apocalyptic,1438661412 +185441,1232,science fiction,1438661412 +185441,81845,based on a true story,1438661300 +185441,81845,Colin Firth,1438661308 +185449,6684,drama,1425688552 +185449,6684,historical,1425688552 +185449,6684,tormenting,1425688552 +185449,99917,dark,1421957937 +185449,99917,mind bending,1421957937 +185449,99917,sci-fi,1421957937 +185455,47,characters,1264449819 +185455,47,disturbing,1264449725 +185455,47,Morgan Freeman,1264449696 +185455,47,painful to watch,1264449720 +185455,1682,hope,1248086791 +185455,1682,Jim Carrey,1248086582 +185455,1682,original plot,1248086762 +185455,1682,social commentary,1248086586 +185455,1682,touching,1248086755 +185455,2571,artificial intelligence,1248086377 +185455,2571,cyberpunk,1248086347 +185455,2571,hacker,1248086350 +185455,2571,martial arts,1248086358 +185455,2571,philosophy,1248086333 +185455,2571,virtual reality,1248086338 +185455,4226,dark,1248086876 +185455,4226,nonlinear,1248086837 +185455,4226,tense,1248086834 +185455,4993,adventure,1248086429 +185455,4993,atmospheric,1248086427 +185455,4993,based on a book,1248086401 +185455,4993,fantasy,1248086418 +185455,4993,music,1248086421 +185455,4993,tolkien,1248086436 +185455,7153,adventure,1248086726 +185455,7153,fantasy,1248086702 +185455,7153,middle earth,1248086697 +185455,7153,nature,1248086718 +185455,7153,tolkien,1248086693 +185455,7361,imagination,1248086311 +185455,7361,Jim Carrey,1248086304 +185455,7361,memory,1248086297 +185455,7361,nonlinear,1248086282 +185455,7361,romance,1248086291 +185455,7361,surreal,1248086288 +185455,36527,father daughter relationship,1248085938 +185455,36527,geeks,1248085927 +185455,36527,Gwyneth Paltrow,1248085914 +185455,36527,mathematics,1248085930 +185455,44555,standup for beleifs,1248086919 +185455,46578,dysfunctional family,1248086622 +185455,46578,feel-good,1248086651 +185455,46578,satire,1248086631 +185455,46578,twist ending,1248086635 +185455,46976,Dustin Hoffman,1248086227 +185455,46976,metaphysics,1248086235 +185455,46976,touching,1248086250 +185455,46976,writing,1248086254 +185455,60069,Animation,1248086046 +185455,60069,love,1248086028 +185455,60069,pixar,1248086023 +185455,60069,romance,1248086033 +185455,64993,love,1248086114 +185455,64993,nature,1248086140 +185455,72998,graphic design,1264448533 +185455,72998,new age,1264448586 +185455,72998,simplistic,1264448625 +185455,72998,visually stunning,1264448544 +185464,593,horror,1437176377 +185464,593,psychopaths,1437176377 +185464,593,s,1437176377 +185464,4993,Adventure,1437177764 +185464,4993,atmospheric,1437177735 +185464,4993,beautifully filmed,1437177752 +185464,4993,fantasy,1437177741 +185464,4993,great soundtrack,1437177755 +185464,4993,Magic,1437177744 +185464,4993,stylized,1437177758 +185469,8972,cult film,1305635413 +185469,8972,myth based,1305635312 +185477,5,Comedy,1425151195 +185477,5,Touching,1425151186 +185477,95858,Funny,1425151117 +185477,95858,Short,1425151138 +185499,223,black and white,1379870451 +185499,223,depressing,1379870416 +185499,223,dialogue,1379870417 +185499,223,low budget,1379870441 +185499,223,philosophical,1379870436 +185499,223,witty,1379870425 +185499,924,monkey,1352448359 +185499,924,music,1352448362 +185499,924,pointless,1352448362 +185499,924,scenic,1352448364 +185499,924,slow,1352448362 +185499,2502,dialogue,1379870559 +185499,2502,satire,1379870528 +185499,2762,ghosts/afterlife,1292575636 +185499,2762,Oscar Nominee,1292575634 +185499,2762,psychology,1292575528 +185499,2762,touching,1292575622 +185499,3981,bad acting,1340649621 +185499,3981,bad science,1340649591 +185499,3981,bad script,1340649634 +185499,4027,dialogue,1367455579 +185499,4027,George Clooney,1367455575 +185499,4027,music,1379842653 +185499,4973,idealism,1367379439 +185499,5222,literary,1407638314 +185499,5222,sexuality,1407638310 +185499,30749,Africa,1287733019 +185499,30749,depressing,1287733054 +185499,30749,history,1287733045 +185499,30749,journalism,1287733077 +185499,30749,sociolagy,1287733205 +185499,30749,true story,1287733022 +185499,30749,United Nations,1287733016 +185499,38061,dialogue,1379843205 +185499,38061,funny,1379843256 +185499,38061,mystery,1379843246 +185499,38061,plot twist,1379843237 +185499,38061,witty,1379843184 +185499,44191,body language,1352448465 +185499,44191,dialogue,1352448465 +185499,44665,corrupt clergy,1290164970 +185499,44665,likeable main caracter,1290164873 +185499,44665,Morgan Freeman,1290165008 +185499,49272,poker,1289898702 +185499,49272,unrealistic action,1289898802 +185499,67997,dialogue,1379842316 +185499,67997,intelligent,1379842338 +185499,67997,politics,1379842316 +185499,67997,sad,1379842321 +185499,67997,satire,1379842316 +185499,100383,Jude Law,1399850360 +185499,100383,psychology,1399850354 +185499,100383,twist ending,1399850352 +185502,260,epic adventure,1436298194 +185502,260,suspensful,1436298213 +185545,111,dark,1446516068 +185545,111,forceful,1446516078 +185545,111,grim,1446516083 +185548,260,adrenaline rush,1437158835 +185548,260,other dimensions,1437158844 +185592,2431,documentary,1186516670 +185592,2478,slapstick,1186516605 +185592,2917,sexy,1186516755 +185592,2953,comedy,1186516639 +185592,4621,fantasy,1186516877 +185600,48385,R,1165936487 +185602,5387,against body abuse,1331728873 +185602,5387,jennifer lopez,1331728852 +185602,5387,woman beats up her husband,1331728889 +185604,1879,Suicide,1137304570 +185604,6519,tres bien faite,1138772931 +185604,42011,catastrofe,1138772918 +185643,97752,epic,1450101814 +185643,97752,Hugo Weaving,1450101740 +185643,97752,multiple storylines,1450101737 +185643,97752,philosophy,1450101757 +185643,97752,sci-fi,1450101753 +185643,97752,thought-provoking,1450101759 +185647,260,1970's,1430624205 +185647,260,sci fi,1430624202 +185656,1136,british comedy,1379182885 +185656,1136,hilarious,1379182894 +185656,1136,parody,1379182889 +185656,1136,satire,1379182921 +185656,1136,witty,1379182905 +185712,260,family movie,1430677162 +185712,260,Science Fiction,1430677138 +185724,899,top 250 IMDB,1248400685 +185724,903,top 250 IMDB,1248400378 +185724,905,top 250 IMDB,1248400768 +185724,909,top 250 IMDB,1248400608 +185724,910,top 250 IMDB,1248400626 +185724,926,top 250 IMDB,1248400665 +185724,928,top 250 IMDB,1248400617 +185724,930,top 250 IMDB,1248400348 +185724,953,top 250 IMDB,1248400682 +185724,1172,top 250 IMDB,1248400639 +185724,1207,top 250 IMDB,1248400373 +185724,1212,top 250 IMDB,1248400647 +185724,1222,top 250 IMDB,1248400043 +185724,1227,top 250 IMDB,1248400631 +185724,1228,top 250 IMDB,1248400367 +185724,1234,top 250 IMDB,1248400040 +185724,1248,top 250 IMDB,1248400644 +185724,1250,top 250 IMDB,1248400383 +185724,1254,top 250 IMDB,1248400360 +185724,1258,top 250 IMDB,1248400050 +185724,1260,top 250 IMDB,1248400657 +185724,1263,top 250 IMDB,1248400319 +185724,1266,top 250 IMDB,1248400054 +185724,1267,top 250 IMDB,1248400387 +185724,1281,top 250 IMDB,1248400046 +185724,1283,top 250 IMDB,1248400612 +185724,1284,top 250 IMDB,1248400291 +185724,1287,top 250 IMDB,1249012904 +185724,1387,top 250 IMDB,1248400668 +185724,1945,top 250 IMDB,1248400353 +185724,2010,top 250 IMDB,1248400637 +185724,2186,top 250 IMDB,1248400341 +185724,2313,top 250 IMDB,1248400621 +185724,2324,top 250 IMDB,1248400673 +185724,3000,top 250 IMDB,1248400540 +185724,3022,top 250 IMDB,1248400564 +185724,3030,top 250 IMDB,1248400876 +185724,3147,top 250 IMDB,1248400670 +185724,3307,top 250 IMDB,1248400661 +185724,3435,top 250 IMDB,1248400063 +185724,3462,top 250 IMDB,1248400653 +185724,5008,top 250 IMDB,1248400550 +185724,5147,top 250 IMDB,1248400527 +185724,5291,top 250 IMDB,1248400650 +185724,6650,top 250 IMDB,1248400857 +185724,6874,top 250 IMDB,1248400329 +185724,7438,top 250 IMDB,1248400334 +185724,27773,top 250 IMDB,1248400634 +185724,31410,top 250 IMDB,1248400027 +185724,32587,top 250 IMDB,1248400057 +185724,55247,top 250 IMDB,1248400323 +185728,8961,fun,1435941115 +185728,8961,Pixar,1435941096 +185728,8961,shahrukh,1435941104 +185728,60069,Cute!,1435940234 +185728,69644,snow,1435940135 +185728,69644,talking animals,1435940129 +185728,134783,chill,1435940264 +185728,134783,comedy,1435940264 +185728,134783,reality,1435940264 +185740,4873,philosophy,1349029326 +185740,4878,philosophy,1349029385 +185758,5618,thoughtful,1453087667 +185758,134853,good for parents,1453087641 +185767,49130,travel,1451708425 +185773,111,classic,1432756039 +185773,750,dark comedy,1432756142 +185773,2700,controversial,1432756661 +185773,2700,musical,1432756639 +185773,5618,dreamlike,1432756803 +185773,5618,fantasy,1432756737 +185773,5618,hallucinatory,1432756782 +185773,5618,Studio Ghibli,1432756746 +185773,55269,Wes Anderson,1237331760 +185773,111759,future,1432755914 +185773,111759,original plot,1432755909 +185773,111759,sci-fi,1432755904 +185773,111759,time travel,1432755901 +185773,112852,modern,1432756897 +185780,364,educational,1137643337 +185780,364,fun,1137643337 +185780,364,meaningful,1137643337 +185780,1367,fun,1137642893 +185780,1367,meaningful,1137642893 +185780,3753,history,1137642891 +185780,3753,touching,1137642891 +185782,43919,revoltingly bad,1174292600 +185806,788,Huhcülees! Huhcülees!... And I don't remember much of the rest.,1141822306 +185806,2112,Nudity (Topless),1206640632 +185806,8499,Nudity (Topless - Notable),1231595961 +185806,72228,script,1373283916 +185820,260,classic,1436434168 +185820,260,good vs evil,1436434127 +185854,8368,based on a book,1200139511 +185854,8368,Daniel Radcliffe,1200139507 +185854,8368,emma thompson,1200139521 +185854,8368,harry potter,1200139500 +185854,8368,Wizards,1200139514 +185854,54001,based on a book,1200139440 +185874,260,futuristic,1444597233 +185874,260,good vs. evil,1444597180 +185879,527,human emotion,1435423454 +185879,527,nazis,1435423454 +185879,527,world war ii,1435423454 +185906,608,black comedy,1441550109 +185906,608,Coen Brothers,1441550093 +185906,608,dark comedy,1441550104 +185906,112552,drums,1441550062 +185906,112552,jazz music,1441550069 +185906,112552,music,1441550037 +185906,112552,Teacher Student,1441550054 +185932,541,sci-fi,1430716912 +185932,58559,action,1430716940 +185933,1198,archaeology,1426400220 +185933,1198,Harrison Ford,1426400229 +185933,1198,imdb top 250,1426400227 +185933,1198,indiana jones,1426400218 +185933,1201,Clint Eastwood,1426400196 +185933,1201,treasure hunt,1426400205 +185944,293,could have been better,1183790339 +185944,293,doesn't cross the line with their relationship,1183791376 +185944,293,great acting,1183790112 +185944,293,love story,1183790112 +185944,293,really cool idea,1183790112 +185944,293,somewhat awkward,1183791425 +185944,293,unique,1183790419 +185944,538,talky,1150683531 +185944,538,thought provoking,1150683531 +185944,745,3.5,1137623569 +185944,745,seen,1137623313 +185944,778,addiction,1200888167 +185944,778,drugs,1200888167 +185944,778,not funny,1200888167 +185944,778,overrated,1200888167 +185944,778,violent,1200888167 +185944,908,Cary Grant,1151464410 +185944,908,funny auction scene,1151464410 +185944,908,Hitchcock,1151464410 +185944,908,mistaken identity,1151464410 +185944,908,Mount Rushmore,1151464410 +185944,922,eerie,1155007266 +185944,922,interesting,1155007266 +185944,922,old hollywood actress goes nuts,1155007265 +185944,1148,3.5,1137623583 +185944,1148,seen,1137623340 +185944,1183,burn victim,1185516627 +185944,1183,good,1185516681 +185944,1183,long,1185516627 +185944,1183,love story,1185516627 +185944,1183,WWII,1185516627 +185944,1204,based on true story,1185161597 +185944,1204,good acting,1185161572 +185944,1204,good music,1185161572 +185944,1204,really long,1185161572 +185944,1204,spectacular cinematography,1185161572 +185944,1204,very slow,1185161572 +185944,1212,black and white,1154102708 +185944,1212,cool sewer chase scene,1154102708 +185944,1212,orson welles,1154102708 +185944,1212,post WWII,1154102708 +185944,1212,vienna,1154102708 +185944,1223,3.5,1137623575 +185944,1223,seen,1137623326 +185944,1252,but good,1180896012 +185944,1252,overrated,1141711554 +185944,1260,black and white,1186196694 +185944,1260,great acting,1186196694 +185944,1260,In the Hall of the Mountain King,1186204444 +185944,1260,open ending,1186196694 +185944,1260,pedofile,1186196694 +185944,1260,whistling,1186204444 +185944,1276,great movie,1183877126 +185944,1276,paul newman,1150937716 +185944,1276,prison,1150937716 +185944,1287,good music,1186631562 +185944,1287,great acting,1186631562 +185944,1287,incredible chariot race,1186631562 +185944,1287,jesus,1186631591 +185944,1287,long,1186631591 +185944,1287,rome,1186631604 +185944,1298,anti-war commentary,1184557812 +185944,1298,disturbed kid,1184557812 +185944,1298,not very good,1184557812 +185944,1298,strange,1184557812 +185944,1954,inspirational,1183877028 +185944,2067,bolshevik revolution,1186543561 +185944,2067,good music,1186543561 +185944,2067,long,1186543561 +185944,2067,love story,1186543561 +185944,2067,well done,1186543561 +185944,2067,WWI,1186543561 +185944,2291,cool style,1200457089 +185944,2291,dark,1200457089 +185944,2291,funny,1200457089 +185944,2291,good acting,1200457089 +185944,2291,great music,1200457089 +185944,2291,love story,1200457089 +185944,2291,sad,1200457089 +185944,2291,visuals,1200457089 +185944,2329,powerful message about hate,1183876910 +185944,2329,very well done,1183876910 +185944,2692,alternate endings,1185327221 +185944,2692,cool concept,1185327221 +185944,2692,could have been better,1185327221 +185944,2692,good music,1185327221 +185944,2692,sylish,1185327221 +185944,3252,blind guy,1200888284 +185944,3252,great acting,1200888284 +185944,3252,military hero,1200888284 +185944,3252,prep school,1200888284 +185944,3505,not good,1169356993 +185944,3505,stupid twist,1169356994 +185944,3703,blah ending,1150852372 +185944,3703,great action,1150852372 +185944,3809,crazy guy becomes care free,1185765414 +185944,3809,great acting,1185765414 +185944,3809,laid back guy,1185765414 +185944,3809,really funny,1185765414 +185944,5291,black and white,1186123675 +185944,5291,good cinematography,1186123675 +185944,5291,good music,1186123675 +185944,5291,multiple points of view,1186123675 +185944,5291,weird,1186123675 +185944,5444,alien,1185327498 +185944,5444,funny,1185327498 +185944,5444,weird,1185327498 +185944,5618,fairy tale,1185210730 +185944,5618,fantasy,1185210730 +185944,5618,good but not great,1185210731 +185944,5618,strange,1185210731 +185944,5995,good but not great,1155231531 +185944,5995,poland,1155231531 +185944,5995,World War II,1155231531 +185944,6016,based on a true story,1186887518 +185944,6016,choppy style,1186887518 +185944,6016,dark,1186887518 +185944,6016,kids with guns,1186887518 +185944,6016,multiple storylines,1186887518 +185944,6016,rio de Janeiro,1186887518 +185944,6016,slow developing,1186887518 +185944,6378,con men,1185765613 +185944,6378,good car chase,1185765613 +185944,6378,heist,1185765613 +185944,6378,mini coopers,1185765613 +185944,6378,pretty good,1185765613 +185944,6870,not great,1150765759 +185944,6870,twist ending,1150765759 +185944,6870,very good,1150765759 +185944,6879,good plot,1155007311 +185944,6879,overly happy ending,1155007311 +185944,7143,1877,1152935636 +185944,7143,saigo takamori,1152935636 +185944,7143,very well done,1152935636 +185944,7162,funny zellweger,1198453630 +185944,7162,great acting,1198453630 +185944,7162,love story,1198453630 +185944,7162,well done,1198453630 +185944,7318,bloody,1155007182 +185944,7318,gross,1155007182 +185944,7318,overrated,1155007182 +185944,7318,violent,1155007182 +185944,8529,airport,1153020182 +185944,8529,dull ending,1153020182 +185944,8529,funny,1153020182 +185944,8529,Kurosawa,1153020182 +185944,8529,tom hanks is great,1153020182 +185944,8783,stupid,1167186551 +185944,8958,good music,1155075733 +185944,8958,great acting,1155075733 +185944,26152,adam west,1153077001 +185944,26152,hilarious,1153077001 +185944,26152,sound effects,1153077001 +185944,27776,foreign,1153076874 +185944,27776,french,1153076874 +185944,27776,strange,1153076874 +185944,27790,cool movie,1137623549 +185944,34150,good action,1137623138 +185944,34150,too short,1137623138 +185944,34162,decent,1137623474 +185944,34338,extremely vulgar,1155091006 +185944,34338,not funny,1155091006 +185944,34338,not well done,1155091006 +185944,34405,good action,1137623504 +185944,34405,too short,1137623504 +185944,34437,boring,1137623453 +185944,34437,pointless,1137623453 +185944,34542,creepy dude,1137623487 +185944,36708,funny,1198453709 +185944,36708,meets future self,1198453709 +185944,36708,stewie goes into the future,1198453709 +185944,37733,short,1142043550 +185944,37733,violent,1142043160 +185944,38038,3.5,1137623590 +185944,38038,seen,1137623334 +185944,38886,interesting,1141590730 +185944,38886,weird,1141590730 +185944,39183,better than expected,1158369978 +185944,39183,gay plot almost not necessary,1158369978 +185944,39231,terrible,1141590704 +185944,41569,horrible,1141590752 +185944,43871,not great,1150683883 +185944,43871,suspense,1150683883 +185944,43871,thrilling,1150683883 +185944,44191,good but not great,1169278716 +185944,44195,cigarettes,1161351389 +185944,44195,pretty good but not great,1161351292 +185944,44195,satire about smoking,1161351292 +185944,45501,good start,1150683623 +185944,45501,horrible finish,1150683623 +185944,45666,jack black,1163396694 +185944,45666,mexian wrestler,1163396694 +185944,45666,not funny,1163396694 +185944,45730,bad,1167186535 +185944,45730,fairy tale,1167186535 +185944,45730,far fetched,1167186535 +185944,45730,stupid,1167186535 +185944,45950,al gore,1150683773 +185944,45950,global warming,1150683773 +185944,45950,interesting,1150683749 +185944,45950,slow,1150683749 +185944,46578,anti conformity - be who you want to be,1181452413 +185944,46578,inspirational,1181452383 +185944,46578,really funny,1181452383 +185944,46723,but not nearly as good,1174094844 +185944,46723,overrated,1174094844 +185944,46723,similar to crash,1174094843 +185944,46972,not funny,1180918272 +185944,47644,based on true story,1185415162 +185944,47644,eagles,1185415162 +185944,47644,inspirational,1185415162 +185944,47644,over the top,1185415161 +185944,47644,vince papale,1185415162 +185944,48385,crude humor,1175808698 +185944,48385,male nudity,1175808698 +185944,48385,not as good as the show,1175808698 +185944,48385,not funny,1175808698 +185944,48394,good but not great,1180896407 +185944,48516,best picture,1172978715 +185944,48516,"ending ""twist"" could be better",1172978715 +185944,48516,gangster,1172978715 +185944,48516,great acting,1172978715 +185944,48516,very well made,1172978715 +185944,49651,cliched,1185933894 +185944,49651,over the top,1185933894 +185944,49651,ridiculous,1185933894 +185944,49651,slow,1185933894 +185944,51255,action spoof,1180849424 +185944,51255,really funny,1180849424 +185944,51255,tough guy,1180849424 +185944,51540,bad ending,1189529816 +185944,51540,long,1189529816 +185944,51540,slow,1189529816 +185944,51662,badass,1186800348 +185944,51662,bravery,1186799179 +185944,51662,cool concept,1186799179 +185944,51662,could have been better,1186799426 +185944,51662,glory,1186799179 +185944,51662,honor,1186799179 +185944,51662,not very good,1186799179 +185944,51927,creepy,1200457048 +185944,51927,dummies,1200457048 +185944,51927,ventriloquist,1200457048 +185944,53123,good music,1198633688 +185944,53123,romance,1198633688 +185944,53123,weird story,1198633688 +185944,53125,confusing,1198462658 +185944,53125,pretty bad,1198462658 +185944,53125,stupid ending,1198462658 +185944,54503,crude,1200456994 +185944,54503,funny,1200456994 +185944,54785,bloody,1189529763 +185944,54785,long and repetitive,1189529763 +185944,54785,over the top,1189529763 +185944,54785,violent,1189529763 +185944,56174,great acting,1198453526 +185944,56174,makes you jump,1198453526 +185944,56174,suspenseful,1198453538 +185944,56174,very creepy,1198453526 +185944,56174,zombies,1198453526 +185994,456,crime,1453912401 +185994,2329,edward norton,1453912312 +185994,2329,Nudity (Topless),1453912328 +185994,2329,powerful ending,1453912337 +185994,2329,prison,1453912325 +185994,2329,racism,1453912335 +185994,2329,tense,1453912331 +185994,2329,violence,1453912340 +185994,6870,based on a book,1453912461 +185994,6870,Clint Eastwood,1453912429 +185994,6870,crime,1453912480 +185994,6870,Dark,1453912437 +185994,6870,Dark hero,1453912475 +185994,6870,great acting,1453912440 +185994,6870,kidnapping,1453912468 +185994,6870,murder,1453912466 +185994,6870,mystery,1453912428 +185994,6870,Oscar (Best Actor),1453912471 +185994,6870,powerful ending,1453912456 +185994,6870,revenge,1453912443 +185994,6870,Sean Penn,1453912435 +185994,6870,thriller,1453912482 +185994,6870,Tim Robbins,1453912464 +185994,6870,twist ending,1453912433 +186009,953,classic,1137714047 +186009,1266,eastwood,1137714099 +186009,2028,World War II,1137713894 +186009,8913,caine,1140403460 +186009,8913,family conflict,1140403460 +186009,8913,indy,1140403460 +186009,8913,walken,1140403460 +186009,33136,coming of age,1140484615 +186009,33136,Decovny,1140484615 +186009,33136,NYC,1140484615 +186009,33136,puns,1140484615 +186009,33136,Robin W,1140484615 +186012,260,future fantasy,1444987947 +186012,260,space adventure,1444987961 +186017,2405,adventure,1186182988 +186017,2405,sweet and romantic,1186182988 +186017,3608,creepy,1186183080 +186017,3608,entertaining,1186183080 +186017,6016,Amazing!,1186183046 +186017,6016,enthralling,1186183046 +186017,6016,epic,1186183046 +186054,260,classic sci-fi,1437216272 +186054,60684,Underrated,1437220843 +186054,72171,Doesn't take itself seriously,1437221514 +186054,72171,parody,1437221521 +186057,260,classic sci-fi,1434933109 +186057,260,fantasy action,1434933117 +186084,29,atmospheric,1355623835 +186084,29,dark fantasy,1355623860 +186084,29,dystopia,1355623837 +186084,29,steampunk,1355623840 +186084,29,surreal,1355623847 +186084,29,visually appealing,1355623849 +186084,29,whimsical,1355623864 +186084,70,action,1355468419 +186084,70,funny,1355468416 +186084,70,Tarantino,1355468454 +186084,76,artificial intelligence,1321421180 +186084,76,horror,1321421219 +186084,555,action,1355468365 +186084,555,dark comedy,1355468372 +186084,555,romance,1355468361 +186084,555,violence,1355468363 +186084,589,action,1277951241 +186084,589,artificial intelligence,1317830307 +186084,589,future,1277951233 +186084,589,robots,1277951236 +186084,589,time travel,1277951245 +186084,780,aliens,1321365170 +186084,780,sci-fi,1321365173 +186084,780,Special Effects,1321365185 +186084,893,adapted from:book,1277952814 +186084,893,romance,1277952767 +186084,893,World War II,1277952798 +186084,1080,british comedy,1355467283 +186084,1080,comedy,1355467288 +186084,1136,british comedy,1355467251 +186084,1136,comedy,1355467252 +186084,1136,hilarious,1355467255 +186084,1148,claymation,1355466999 +186084,1148,comedy,1355466994 +186084,1148,funny,1355466992 +186084,1240,action,1277951095 +186084,1240,future,1277951103 +186084,1240,great soundtrack,1277951008 +186084,1240,robots,1277951045 +186084,1240,romance,1277951071 +186084,1240,time travel,1277951058 +186084,1278,comedy,1355467133 +186084,1278,farce,1355467136 +186084,1278,Gene Wilder,1355467129 +186084,1278,Mel Brooks,1355467138 +186084,1278,parody,1355467140 +186084,1278,Quotable,1355467145 +186084,1282,artistic,1366714822 +186084,1282,classical music,1366714820 +186084,1282,surreal,1366714818 +186084,1394,comedy,1355467376 +186084,1394,deadpan,1355467392 +186084,1394,quirky,1355467379 +186084,1597,conspiracy,1321364900 +186084,1732,hippy,1322572479 +186084,1748,dystopia,1321366120 +186084,1748,sci-fi,1321366125 +186084,1748,steampunk,1321366129 +186084,1748,stylized,1321366132 +186084,1748,thought-provoking,1321366141 +186084,2502,comedy,1355467202 +186084,2502,hilarious,1355467224 +186084,2502,quirky,1355467207 +186084,2502,satire,1355467209 +186084,2701,lame,1321366106 +186084,2701,steampunk,1321365897 +186084,2710,boring,1350712409 +186084,2710,dull,1355466127 +186084,2987,comedy,1366714618 +186084,2987,funny,1366714596 +186084,2987,private detective,1366714583 +186084,3039,comedy,1355468103 +186084,3039,predictable,1355468100 +186084,4016,funny,1366714444 +186084,4344,Special Effects,1321365321 +186084,4344,unrealistic,1321365347 +186084,4467,fantasy,1355624501 +186084,4467,imagination,1355624500 +186084,4467,surreal,1355624503 +186084,4886,animation,1355468011 +186084,4886,Comedy,1355468008 +186084,4886,cute,1355468026 +186084,5065,boring,1355466043 +186084,5065,dull,1355466043 +186084,5065,pointless,1355466043 +186084,5065,written epilogue,1355466592 +186084,5219,action,1354275161 +186084,5219,Milla Jovovich,1354275132 +186084,5219,zombies,1354275151 +186084,5618,adventure,1355627944 +186084,5618,atmospheric,1355627947 +186084,5618,fairy tale,1355627936 +186084,5618,fantasy,1355627922 +186084,5618,surreal,1355627932 +186084,5618,whimsical,1355627931 +186084,5903,dystopia,1321364768 +186084,5903,martial arts,1321364785 +186084,5903,thought-provoking,1321364782 +186084,6807,british comedy,1355467274 +186084,6807,comedy,1355467277 +186084,7254,alternate reality,1321364830 +186084,7254,time travel,1321364832 +186084,8464,boring,1355466139 +186084,8874,black comedy,1355468034 +186084,8874,comedy,1355468036 +186084,8910,comedy,1355467754 +186084,8910,existentialism,1355467744 +186084,8910,funny,1355467746 +186084,8910,intelligent,1355467748 +186084,8910,philosophy,1355467771 +186084,8910,whimsical,1355467751 +186084,30810,boring,1355467111 +186084,30810,comedy,1355467119 +186084,30810,quirky,1355467094 +186084,30810,visually appealing,1355467100 +186084,31658,adventure,1321365836 +186084,31658,dreamlike,1321365844 +186084,31658,magic,1321365832 +186084,31658,steampunk,1321365830 +186084,31658,whimsical,1321365849 +186084,34048,aliens,1321365004 +186084,34048,Dakota Fanning,1321365040 +186084,34048,sci-fi,1321364970 +186084,34048,Special Effects,1321364998 +186084,34048,Tom Cruise,1321365055 +186084,37380,adapted from:game,1321365447 +186084,37380,bad dialogue,1321365510 +186084,37380,Dwayne Johnson,1321365407 +186084,37380,horror,1321365440 +186084,37380,lame,1321365510 +186084,37380,sci-fi,1321365475 +186084,37380,The Rock,1321365411 +186084,38038,claymation,1355467002 +186084,38038,comedy,1355466983 +186084,38038,funny,1355466981 +186084,44694,charming,1354349430 +186084,44694,Penelope Cruz,1354349419 +186084,46578,comedy,1355467443 +186084,46578,funny,1355467447 +186084,46578,inspirational,1355467460 +186084,46578,quirky,1355467449 +186084,46976,heartwarming,1355466927 +186084,46976,narrated,1355466902 +186084,46976,quirky,1355466906 +186084,46976,storytelling,1355466899 +186084,46976,surreal,1355466897 +186084,48780,magic,1321365858 +186084,48780,steampunk,1321365869 +186084,49396,not funny,1277950878 +186084,51662,action,1355468144 +186084,51662,atmospheric,1355468140 +186084,51662,epic,1355468138 +186084,58998,comedy,1355467342 +186084,58998,Predictable,1355467348 +186084,61246,bad parody,1350228809 +186084,61246,lame,1350228694 +186084,61246,lame humour,1350228686 +186084,61729,funny,1355468699 +186084,62336,quirky,1355468241 +186084,62336,surreal,1355468240 +186084,62336,too weird,1355468267 +186084,62336,weird,1355468261 +186084,69122,comedy,1355467559 +186084,69122,funny,1355467649 +186084,69122,gross-out humour,1355467624 +186084,69122,low-brow,1355467998 +186084,69122,shock humour,1355467637 +186084,69757,romance,1277951753 +186084,71379,boring,1355466165 +186084,71379,dull,1355466132 +186084,71379,handcam-real style,1350712360 +186084,71530,cliche,1321366204 +186084,71530,predictable,1321366198 +186084,71530,sci-fi,1321366194 +186084,78160,funny,1277952113 +186084,79091,animation,1355468077 +186084,79091,cute,1355468067 +186084,79091,funny,1355468061 +186084,79091,heartwarming,1355468066 +186084,79132,boring,1317830521 +186084,79132,dull,1355466120 +186084,79132,Leonardo DiCaprio,1317830449 +186084,79702,funny,1355467406 +186084,83976,funny,1350220152 +186084,83976,Rob Brydon,1350220146 +186084,83976,Steve Coogan,1350220145 +186084,85414,predictable,1321364726 +186084,85414,science fiction,1321364732 +186084,86911,low-brow,1355467973 +186084,88129,action,1321376624 +186084,88129,Good for what it is,1321376472 +186084,88129,lack of character,1321376464 +186084,88129,no depth,1321376425 +186084,88672,Earnest protagonist,1322572396 +186084,88672,hippy,1322572492 +186084,96281,fantasy,1355466241 +186084,96281,ghosts,1355466245 +186084,96281,stop motion,1355466239 +186084,96610,bad science,1350217007 +186084,96610,overdone themes,1350217113 +186084,96610,plot holes,1350220073 +186084,96610,pointless plot,1350217138 +186084,96610,sci-fi,1350217157 +186084,96610,visually appealing,1350217151 +186084,96691,bad acting,1354275592 +186084,96691,bad cgi,1354275054 +186084,96691,bad dialogue,1354275593 +186084,96691,bad fights,1354275316 +186084,96691,no suspense,1354275108 +186084,96691,pointless,1354275054 +186112,260,good vs evil,1440186531 +186112,260,Science Fiction,1440186514 +186120,115617,adapted from:comic,1431511490 +186120,115617,children,1431511490 +186120,115617,futuristic,1431511490 +186120,122892,sequel,1431511397 +186135,84954,plot,1306659164 +186144,260,classic,1441999108 +186144,260,sci-fi,1441999068 +186151,260,sci-fi,1444800871 +186151,260,space adventure,1444800889 +186151,3825,romantic comedy,1444866678 +186151,49910,feel good,1444866179 +186151,49910,high school,1444866185 +186151,49910,prejudice,1444866192 +186151,80693,bittersweet,1444867026 +186151,80693,quirky,1444867032 +186151,83086,musical,1444866652 +186151,83086,predictable,1444866656 +186162,42721,Uwe Boll,1227602733 +186163,260,Classic,1451253874 +186163,260,Must see,1451253883 +186163,260,sci-fi,1451253854 +186163,1196,classic,1451253955 +186163,1196,Must see,1451253967 +186163,1196,sci-fi,1451253931 +186165,2117,classic,1189666289 +186165,2662,classic,1189666190 +186165,2919,thriller,1189666260 +186165,3113,horror,1189666174 +186165,4975,sci-fi,1189666102 +186189,260,Action comedy,1438860231 +186189,260,comedy,1438860221 +186189,117529,Colin Trevorrow,1438860930 +186189,117529,dinosaurs,1438860935 +186189,117529,exciting,1438860931 +186192,260,A western set in an alien world,1438055132 +186192,260,Classic that started the whole Star Wars universe,1438055288 +186214,260,practical effects,1440051255 +186214,260,science fantasy,1440051226 +186214,71728,blaxsploitation,1440220196 +186214,71728,parody,1440220207 +186214,71728,satire,1440220394 +186232,3550,bauhaus!,1230351456 +186232,3550,David Bowie!,1230351451 +186232,3550,goth,1230351449 +186232,3550,Nudity (Topless - Notable),1230351444 +186232,3550,sexy,1230351454 +186232,5747,poignant,1196387625 +186232,57368,Giant Monster eat city,1200969959 +186232,57368,Handycam,1200969933 +186232,64839,Aronofski,1232068196 +186232,65667,documentary,1430823728 +186232,65667,music,1430823728 +186232,65667,punk rock,1430823728 +186232,70862,documentary,1252867350 +186253,4993,adventure,1438224019 +186253,4993,long,1438224019 +186253,4993,magic,1438224019 +186253,95720,deadpan,1438228124 +186253,95720,dumb humour,1438228083 +186253,95720,funny,1438228072 +186253,122882,creative,1438228235 +186253,122882,feminist,1438228168 +186285,260,sci-fi,1430646682 +186285,260,scifi cult,1430646690 +186285,6550,few funny scenes,1430646970 +186285,6550,time pass,1430647018 +186356,165,action,1441488758 +186356,165,bruce willis,1441488746 +186356,377,intense,1441488806 +186356,377,tense,1441488802 +186356,377,Thriller,1441488808 +186356,1385,action,1441488781 +186356,1625,Mystery,1441488950 +186356,1625,psychological,1441488961 +186356,1625,suspense,1441488957 +186356,1625,the twists in the plot,1441488954 +186356,1625,twist ending,1441488948 +186356,2762,enigmatic,1441488839 +186356,2762,great ending,1441488860 +186356,2762,suspense,1441488853 +186356,2762,unpredictable,1441488851 +186356,4226,dreamlike,1441488541 +186356,4226,mystery,1441488559 +186356,4226,psychological,1441488552 +186356,4720,alternate reality,1441489090 +186356,4720,supernatural,1441489078 +186356,4720,twist ending,1441489071 +186356,5388,psychological,1441488679 +186356,6870,mystery,1441488602 +186356,6870,thriller,1441488611 +186356,6870,twist ending,1441488605 +186362,3466,Classic,1319266354 +186362,3466,Kyra Sedgwick,1319266386 +186362,56367,Original,1319275081 +186362,86882,French music,1319262952 +186362,86882,implausible,1319262934 +186362,86882,Paris,1319262892 +186362,86882,Rachel McAdams,1319262903 +186401,134393,Brainless,1442513107 +186401,134393,Stupid,1442513114 +186405,1361,disturbing,1285480517 +186419,1682,alone in the world,1439531840 +186419,1682,philosophy,1439531848 +186419,1682,stylized,1439531828 +186419,71106,nerds,1439531751 +186419,71106,sci-fi,1439531757 +186430,16,Martin Scorsese,1241447421 +186430,50,great ending,1242288292 +186430,50,Kevin Spacey,1241447368 +186430,50,suspense,1242289311 +186430,50,twist ending,1241447364 +186430,296,Black comedy,1263457930 +186430,296,Bruce Willis,1263457933 +186430,296,cult film,1263457935 +186430,296,nonlinear,1263457946 +186430,296,notable soundtrack,1263457948 +186430,296,organized crime,1263457950 +186430,296,Quentin Tarantino,1263457953 +186430,318,justice,1242288261 +186430,318,Stephen King,1242288257 +186430,318,twist ending,1242288270 +186430,1213,Martin Scorsese,1262077493 +186430,1213,Robert De Niro,1262077497 +186430,2291,Johnny Depp,1241447412 +186430,2329,disturbing,1242288248 +186430,2329,Edward Norton,1242288217 +186430,2329,powerful ending,1242288222 +186430,2329,tense,1242288242 +186430,2329,thought-provoking,1242288220 +186430,2329,violence,1242288239 +186430,2843,Louis I think this is the beginning of a beautiful friendship,1262075800 +186430,2959,Brad Pitt,1242288178 +186430,2959,Edward Norton,1241447403 +186430,2959,powerful ending,1242288185 +186430,2959,satirical,1242288205 +186430,2959,twist ending,1242288207 +186430,2959,violence,1242288192 +186430,3174,Jim Carrey,1228252939 +186430,3498,disturbing,1262077151 +186430,3498,forceful,1262077142 +186430,3556,great ending,1242288073 +186430,3556,great soundtrack,1242288095 +186430,3556,high school,1242288093 +186430,3556,Kirsten Dunst,1242288062 +186430,3556,melancholy,1242288087 +186430,3556,reflective,1242288089 +186430,3556,Sophia Coppola,1242288113 +186430,3556,suicide,1242288079 +186430,3556,visually appealing,1242288077 +186430,4011,Brad Pitt,1242287895 +186430,4011,Great dialogue,1242287901 +186430,4878,good dialogue,1242288156 +186430,4878,imaginary friend,1242288154 +186430,4878,mindfuck,1242288139 +186430,4878,thought-provoking,1242288148 +186430,4878,time travel,1242288141 +186430,6301,disturbing,1262077194 +186430,6301,harsh,1262077196 +186430,6301,moral ambiguity,1262077200 +186430,6301,Nudity (Topless - Notable),1262077177 +186430,6301,Nudity (Topless),1262077175 +186430,6301,rape,1262077186 +186430,6301,Sexualized violence,1262077182 +186430,8499,prostitution,1366105118 +186430,8814,Matthew Lillard,1246956378 +186430,8814,Seth Green,1246956392 +186430,33166,ensemble cast,1262077314 +186430,33166,imdb top 250,1262077310 +186430,33166,multiple storylines,1262077299 +186430,33166,race issues,1262077304 +186430,33166,Sexualized violence,1262077324 +186430,33166,social commentary,1262077301 +186430,33166,twist ending,1262077326 +186430,45210,9/11,1262078487 +186430,45210,based on a true story,1262078512 +186430,45210,emotional,1262078506 +186430,45210,heroism,1262078504 +186430,50798,unfunny,1232962953 +186430,62235,aging,1260867639 +186430,62235,animal cruelty,1260867639 +186430,62235,animal sympathy,1260867639 +186430,62235,animal:dog,1260867639 +186430,62235,justice,1260867639 +186430,62434,Kevin Smith,1225462497 +186430,63992,awful,1262076814 +186430,63992,Vampire Human Love,1262076845 +186430,68157,Brad Pitt,1251720360 +186430,68157,Christoph Waltz,1251720423 +186430,68157,Diane Kruger,1251720431 +186430,68157,Mélanie Laurent,1251720397 +186430,68157,Quentin Tarantino,1251720373 +186430,68358,big budget,1242287872 +186430,68358,good performance,1242287866 +186430,68358,good plot,1242287864 +186430,68358,jj abrams,1242287797 +186430,68358,reboot,1242287807 +186430,68358,remake better than original version,1242287809 +186430,68358,Star Trek,1242287813 +186430,68791,Christian Bale,1262076133 +186430,68791,robot noises,1262076192 +186430,68954,computer animation,1262074815 +186430,68954,heartbreaking,1262074783 +186430,68954,Pixar,1262074794 +186430,68954,storytelling,1262074800 +186430,68954,talking animals,1262074803 +186430,69757,boring,1262075978 +186430,69757,chick flick,1262076032 +186430,69757,romance,1262075999 +186430,69757,Zooey Deschanel,1262075985 +186430,69784,Sacha Baron Cohen,1262076730 +186430,70208,predictable,1344946189 +186430,70208,unoriginal,1344946189 +186430,71205,Megan Fox,1262076777 +186430,71379,not scary,1262075219 +186430,71379,over-hyped,1262075185 +186430,71520,Jennifer Garner,1263458066 +186430,71520,religion,1263458107 +186430,71520,Ricky Gervais,1263458068 +186430,71520,witty,1263458107 +186430,72998,beatutiful,1262703083 +186430,72998,cgi,1262703079 +186430,72998,futuristic,1262703065 +186430,72998,James Cameron,1262703063 +186430,72998,Sigourney Weaver,1262703070 +186430,73017,BORING!,1267459174 +186430,73106,Jennifer Holland,1263313605 +186430,73106,Nudity (Topless - Notable),1263313643 +186430,73106,Nudity (Topless),1263313643 +186430,95488,Nudity (Topless),1366103689 +186430,101296,good casting,1366101258 +186430,101296,unfunny,1366101225 +186430,101296,Vulgarity,1366101225 +186450,1265,great actors,1430564206 +186450,1265,great meaning,1430564206 +186450,1265,great movie!,1430564206 +186455,296,comedy,1446713670 +186455,296,cult film,1446713659 +186455,296,masterpiece,1446713673 +186455,628,courtroom drama,1446718884 +186455,32587,black comedy,1446713620 +186455,32587,comic book,1446713617 +186455,32587,multiple storylines,1446713606 +186455,32587,stylized,1446713610 +186455,32587,surreal,1446713629 +186455,51540,based on a true story,1446719049 +186455,52604,courtroom,1446713712 +186455,55765,based on a true story,1446713535 +186455,55765,corruption,1446713531 +186455,55765,justice,1446713528 +186455,55765,mafia,1446713519 +186455,71838,revenge,1446718928 +186464,47,psychology,1337492741 +186464,296,dark comedy,1337492378 +186464,2028,action,1337492374 +186464,2596,coming of age,1352104905 +186464,4878,high school,1345320765 +186464,4878,mental illness,1345320753 +186464,4878,philosophy,1345320744 +186464,4878,psychological,1345320742 +186464,4878,sci-fi,1345320755 +186464,4878,social commentary,1345320759 +186464,4878,thought-provoking,1345320757 +186464,4878,twist ending,1345320769 +186464,5669,social commentary,1337492583 +186464,5685,Girl Power,1337492807 +186464,7285,adolescence,1305053101 +186464,7285,disturbing,1305053116 +186464,7285,Evan Rachel Wood,1305053107 +186464,7285,great script,1305053126 +186464,7285,nostalgic,1305053118 +186464,7285,teen,1305053122 +186464,7346,coming of age,1337492534 +186464,7346,high school,1337492531 +186464,32587,atmospheric,1345173324 +186464,32587,classic,1345173315 +186464,32587,comic book,1345173307 +186464,32587,Crime,1345173327 +186464,32587,disturbing,1345173310 +186464,32587,multiple storylines,1337492233 +186464,32587,Quentin Tarantino,1337492239 +186464,32587,stylized,1345173321 +186464,32587,superhero,1345173319 +186464,33166,multiple storylines,1337493306 +186464,33166,social commentary,1337493302 +186464,41617,drugs,1337492798 +186464,44665,twist ending,1345768859 +186464,44788,social commentary,1337492241 +186464,44974,psychology,1337492528 +186464,48394,fantasy,1337492468 +186464,48394,psychology,1337492442 +186464,48394,twist ending,1337492455 +186464,51255,dark comedy,1337492521 +186464,53318,alternate reality,1345320531 +186464,53318,british,1345320528 +186464,53318,imagination,1345320526 +186464,53318,Nudity (Full Frontal),1345320553 +186464,53318,quirky,1345320564 +186464,53318,Sean Ellis,1345320540 +186464,53318,slackers,1345320546 +186464,53318,strippers,1345320538 +186464,53318,surrealism,1345320534 +186464,56367,comedy,1337492503 +186464,56367,cult film,1337492506 +186464,56671,road trip,1337492700 +186464,56715,afterlife,1337537742 +186464,56715,based on a short story,1337537759 +186464,56715,black comedy,1337537746 +186464,56715,dark comedy,1337537748 +186464,56715,instant view,1337537765 +186464,56715,quirky,1337537752 +186464,56715,Though provoking,1337537769 +186464,57669,ambiguous ending,1345173240 +186464,57669,assassin,1345173194 +186464,57669,black comedy,1345173189 +186464,57669,british comedy,1345173192 +186464,57669,dark comedy,1345173187 +186464,57669,depression,1345173255 +186464,57669,drugs,1345173252 +186464,57669,holiday,1345173217 +186464,57669,irish accent,1345173196 +186464,57669,stylized,1345173202 +186464,57669,violence,1345173258 +186464,58998,comedy,1337492276 +186464,58998,drugs,1337492284 +186464,58998,romance,1337492280 +186464,59369,espionage,1337493264 +186464,59369,fight scenes,1337493270 +186464,59369,revenge,1337493273 +186464,61091,graffiti,1337492721 +186464,65188,emotional,1337492289 +186464,66097,animation,1337493126 +186464,66097,dystopia,1337493118 +186464,69069,cheerleading,1345163919 +186464,69069,football,1345163930 +186464,69069,Nudity (Topless),1345163924 +186464,69757,nonlinear,1337492731 +186464,69757,quirky,1337492727 +186464,70286,intelligent,1345421991 +186464,70286,justice,1345421976 +186464,70286,sci-fi,1345421974 +186464,70286,unpredictable,1345421969 +186464,71535,dark comedy,1337492294 +186464,71535,post-apocalyptic,1337492301 +186464,71535,zombies,1337492298 +186464,74946,feel-good,1352573980 +186464,77455,Graffiti,1337492544 +186464,79702,artistic,1345163783 +186464,79702,based on a comic,1345163780 +186464,79702,comedy,1345163742 +186464,79702,crude humor,1345163744 +186464,79702,music,1345163747 +186464,79702,stylized,1345163749 +186464,79702,video games,1345163751 +186464,79702,whimsical,1345163798 +186464,80549,parody,1337492557 +186464,81564,animated,1345422538 +186464,82143,not available from Netflix,1338511594 +186464,87485,black comedy,1345163603 +186464,87485,Cameron Diaz,1345163574 +186464,87485,Cameron Diaz getting older,1345163577 +186464,87485,drugs,1345163571 +186464,87485,Jason Segel,1345163593 +186464,87485,Nudity (Topless - Notable),1345163560 +186464,87485,protagonist is a teacher,1345163632 +186464,87485,rough humor,1345163568 +186464,87485,sex jokes,1345163562 +186464,87485,swearing,1345163564 +186464,89864,emotional,1352104502 +186464,89864,humor,1352573622 +186464,89864,Joseph Gordon-Levitt,1351910128 +186464,89864,Seth Rogen,1351910135 +186464,89864,top ten,1352573606 +186464,91529,Anne Hathaway,1345173358 +186464,91529,Christian Bale,1345173405 +186464,91529,comic book,1345173368 +186464,91529,franchise,1345173371 +186464,91529,great ending,1345173379 +186464,91529,Joseph Gordon-Levitt,1345173362 +186464,91529,Predictable,1345173364 +186464,92420,clever,1345163672 +186464,92420,coming of age,1337492579 +186464,92420,found footage,1345422014 +186464,92420,magic,1345163706 +186464,92420,predictable ending,1345163685 +186464,92420,sci-fi,1345163713 +186464,92420,Seattle,1345163675 +186464,92420,supernatural powers,1345163681 +186464,93270,found footage,1345163875 +186464,93270,unlikeable characters,1345163870 +186464,93855,child killing,1345163439 +186464,93855,dark comedy,1345163426 +186464,93855,ending,1345163446 +186464,93855,social criticism,1345163433 +186464,93855,violence,1345163451 +186464,96281,stop motion,1345534623 +186464,99996,ending,1385508242 +186466,2232,This movie will induce vomitting,1145760229 +186466,6250,DreamDONTcatch!,1145761017 +186476,60684,gore,1359153860 +186476,60684,violence,1359153868 +186486,34405,acting,1328647139 +186486,34405,plot,1328647143 +186488,823,bikini magic,1411760440 +186488,1572,Bootytastic,1411760462 +186488,5390,Insanely Hot Actress,1411761069 +186488,6880,Insanely Hot Actress,1411760702 +186488,26496,Insanely Hot Actress,1411760905 +186488,49528,bikini magic,1411760626 +186488,51182,bootytastic,1411760252 +186488,51182,Nudity (Rear),1411760138 +186488,56156,Insanely Hot Actress,1411760970 +186488,67812,Bootytastic,1411760221 +186488,67812,Insanely Hot Actress,1411760729 +186488,67812,Nudity (Rear),1411760226 +186488,99054,Insanely Hot Actress,1411760942 +186488,101827,bikini magic,1411760366 +186504,4226,good plot twists,1255153052 +186504,4226,original idea,1255153052 +186537,44633,Genius,1239810731 +186574,6502,church,1236968638 +186574,6502,death,1236968638 +186574,6502,empty city,1236968638 +186574,6502,hospital,1236968638 +186574,6502,infection,1236968638 +186574,6502,soldiers,1236968638 +186574,6502,zombies,1236968638 +186574,6953,death,1236968529 +186574,6953,death of child,1236968529 +186574,6953,jail,1236968529 +186574,6953,murder,1236968529 +186574,6953,regret,1236968529 +186574,6953,religion,1236968529 +186574,6953,revenge,1236968529 +186574,40819,DRUG ADDICTION,1236968301 +186574,40819,guitar,1236968301 +186574,40819,love,1236968301 +186574,40819,music,1236968301 +186574,40819,singing,1236968301 +186574,40819,true story,1236968301 +186574,51540,detective,1236968689 +186574,51540,Journalist,1236968688 +186574,51540,serial killer,1236968689 +186574,51540,true story,1236968689 +186574,64839,old,1236968447 +186574,64839,sport,1236968447 +186574,64839,steroids,1236968447 +186574,64839,wrestling,1236968447 +186597,29,dystopia,1289022477 +186597,29,surreal,1289022463 +186604,260,"Action, Scifi",1435456799 +186620,3992,Monica Belucci,1161626664 +186620,3992,Nudity (Full Frontal - Notable),1161626672 +186620,33585,sex,1161628795 +186656,260,sci-fi,1437921735 +186656,260,space,1437921723 +186656,356,comedy,1437922280 +186656,356,historical,1437922280 +186656,356,vietnam,1437922280 +186683,318,inspirational,1294799435 +186683,318,Morgan Freeman,1294799415 +186683,318,twist ending,1294799419 +186683,1704,Matt Damon,1294799464 +186683,1704,Robin Williams,1294799466 +186683,6377,Disney,1294798340 +186683,6377,funny,1294798363 +186683,78499,Pixar,1294798257 +186692,260,classic sci-fi,1440530736 +186692,260,Creative,1440530745 +186722,4011,comedy,1432257028 +186722,4306,comedy,1432256996 +186733,50,crime,1423040797 +186733,50,mystery,1423040797 +186733,50,twist ending,1423040797 +186733,110,drama,1421471150 +186733,110,medieval,1421471150 +186733,110,war,1421471150 +186733,296,action,1420687375 +186733,296,black comedy,1420687375 +186733,296,crime,1420687375 +186733,2571,action,1422260558 +186733,2571,philosopical,1422260558 +186733,2571,science fiction,1422260558 +186740,733,classic,1441930236 +186740,733,discribe details,1441930278 +186740,733,good action,1441930258 +186740,2706,comedy,1441930922 +186740,2706,teen,1441930915 +186785,1339,fdsffsd,1268308802 +186785,1339,vampires,1268308847 +186807,26,Shakespeare,1165112079 +186807,1059,shakespeare,1165112062 +186807,1411,Shakespeare,1165112095 +186807,2848,shakespeare,1165112080 +186807,3409,gore,1164942916 +186807,3598,Shakespeare,1165112047 +186807,3723,Shakespeare,1165112091 +186807,4745,based on a book,1165112115 +186807,4745,Shakespeare,1165112109 +186807,6058,gore,1164942923 +186807,43679,awesome ending,1164942929 +186807,43679,gore,1164942933 +186868,4014,great acting,1433395291 +186868,4973,comedy,1433395426 +186868,42705,charming,1433395416 +186868,42705,retro,1433395416 +186868,42705,screwball comedy,1433395416 +186868,74545,mystery,1433395629 +186868,116797,Benedict Cumberbatch,1433395497 +186871,171,gay,1139896592 +186871,508,gay,1139896580 +186871,7023,gay,1139896569 +186878,260,action,1444691890 +186878,260,hero,1444691895 +186885,68073,bad script,1258343313 +186885,68073,historically inaccurate,1258343417 +186885,68073,meandering,1258343296 +186885,87869,black comedy,1310926789 +186885,110102,Fight Choreography,1398827072 +186885,110102,implausible conspiracy,1398827046 +186885,110102,muddled message,1398827110 +186904,6754,Dark,1444763353 +186904,6754,gothic,1444763343 +186904,6754,heroine in tight suit,1444763350 +186904,6754,Kate Beckinsale,1444763359 +186904,6754,nocturnal,1444763362 +186904,6754,vampire,1444763338 +186904,6754,vampires,1444763346 +186904,6754,werewolves,1444763340 +186904,7454,gothic,1444763379 +186904,7454,Kate Beckinsale,1444763382 +186904,7454,vampires,1444763372 +186904,7454,werewolves,1444763376 +186904,103228,aliens,1444763252 +186904,103228,giant monster,1444763291 +186904,103228,giant robots,1444763261 +186904,103228,subgenre:Kaiju,1444763289 +186904,103228,visually appealing,1444763273 +186904,109487,black hole,1445359580 +186904,109487,Christopher Nolan,1445359569 +186904,109487,epic,1445359619 +186904,109487,good science,1445359566 +186904,109487,philosophical issues,1445359614 +186904,109487,physics,1445359597 +186904,109487,relativity,1445359573 +186904,109487,science fiction,1445359607 +186904,109487,space,1445359566 +186904,109487,thought-provoking,1445359592 +186904,109487,time travel,1445359599 +186904,109487,time-travel,1445359595 +186911,6016,Brazil,1141976360 +186911,6016,gangs,1141976338 +186911,6016,South America,1141976326 +186929,260,Act 1,1435139788 +186929,260,good vs evil,1435139854 +186930,69529,depressing,1444081984 +186930,112852,overrated,1416355616 +186941,262,imagination,1356248971 +186941,356,history,1356249697 +186941,356,inspirational,1356249699 +186941,593,cannibalism,1356248636 +186941,593,disturbing,1356248640 +186941,593,Horror,1356248642 +186941,919,based on a book,1356248855 +186941,919,black and white,1356248859 +186941,919,dreamlike,1356248862 +186941,919,fantasy,1356248860 +186941,919,Highly quotable,1356248864 +186941,919,musical,1356248866 +186941,919,original,1356248869 +186941,1073,classic,1356248828 +186941,1073,cult film,1356248826 +186941,1073,surreal,1356248836 +186941,1073,whimsical,1356248831 +186941,1136,British,1356248667 +186941,1136,british comedy,1356248670 +186941,1136,hilarious,1356248677 +186941,1136,parody,1356248679 +186941,1136,satire,1356248681 +186941,1136,witty,1356248685 +186941,1197,fairy tale,1356248365 +186941,1197,quirky,1356248367 +186941,1197,romance,1356248369 +186941,1197,whimsical,1356248374 +186941,1197,witty,1356248371 +186941,1258,Horror,1356249394 +186941,2161,childhood classic first seen in adulthood,1356248907 +186941,2161,Classic,1356248913 +186941,2161,dragons,1356248903 +186941,2161,effects,1356248896 +186941,2161,Fantasy,1356248893 +186941,2161,story,1356248916 +186941,2161,sweet,1356248918 +186941,2959,quirky,1356248465 +186941,2959,social commentary,1356248462 +186941,2959,surreal,1356248473 +186941,2959,thought-provoking,1356248464 +186941,2959,twist ending,1356248460 +186941,3000,atmospheric,1356248774 +186941,3000,environmental,1356248780 +186941,3000,fantasy world,1356248755 +186941,3000,history,1356248769 +186941,3000,surreal,1356248758 +186941,3000,talking animals,1356248760 +186941,4878,cult film,1356248615 +186941,4878,dreams,1356248613 +186941,4878,psychology,1356248618 +186941,4878,quirky,1356248601 +186941,4878,satirical,1356248609 +186941,4878,stylized,1356248605 +186941,4878,thought-provoking,1356248602 +186941,4878,time travel,1356248620 +186941,4878,twist ending,1356248622 +186941,4890,moralistic,1356248738 +186941,5618,alternate reality,1356248276 +186941,5618,animation,1356248302 +186941,5618,anime,1356248298 +186941,5618,dreamlike,1356248273 +186941,5618,environmental,1356248294 +186941,5618,fairy tale,1356248268 +186941,5618,fantasy,1356248258 +186941,5618,sports,1356248285 +186941,5618,Studio Ghibli,1356248265 +186941,5618,surreal,1356248282 +186941,5618,whimsical,1356248261 +186941,31658,animation,1356248711 +186941,31658,Holocaust,1356248704 +186941,31658,romance,1356248700 +186941,31658,war,1356248696 +186941,31658,whimsical,1356248694 +186941,48394,atmospheric,1356248796 +186941,48394,bittersweet,1356248798 +186941,48394,disturbing,1356248814 +186941,48394,fairy tale,1356248800 +186941,48394,military,1356248803 +186941,48394,Oscar (Best Cinematography),1356248812 +186941,48394,twist ending,1356248804 +186941,48394,world war II,1356248806 +186941,50601,bullying,1356248940 +186941,50601,death of a child,1356248937 +186941,50601,hurried ending,1356248931 +186941,50601,sad,1356248934 +186941,50601,weak directing,1356248949 +186941,66934,anti-hero,1356248494 +186941,66934,free to download,1356248498 +186941,66934,good dialogue,1356248496 +186941,66934,great concept,1356248501 +186941,66934,great soundtrack,1356248540 +186941,66934,low budget,1356248531 +186941,66934,musical,1356248526 +186941,66934,parody,1356248552 +186941,66934,sci-fi,1356248518 +186941,66934,short,1356248548 +186941,66934,sweet,1356248524 +186941,66934,twist ending,1356248514 +186941,72226,based on a book,1356249785 +186941,76093,animation,1356249602 +186941,76093,father-son relationship,1356249591 +186941,76093,not like the book,1356249583 +186941,76093,witty,1356249588 +186941,84944,Animals,1356249773 +186941,84944,hallucinatory,1356249751 +186941,84944,spaghetti western,1356249768 +186941,84944,talking animals,1356249744 +186941,84944,western,1356249769 +186941,89745,comic book,1356248121 +186941,89745,Marvel,1356248142 +186941,89745,Robert Downey Jr.,1356248128 +186941,89745,robots,1356248169 +186941,89745,superhero,1356248130 +186941,89745,visually appealing,1356248133 +186941,89745,visually stunning,1356248135 +186941,90746,3D effects,1356249543 +186941,90746,alcoholism,1356249544 +186941,90746,animation,1356249560 +186941,90746,fast paced,1356249553 +186941,90866,1930s,1356249661 +186941,90866,android(s)/cyborg(s),1356249664 +186941,90866,cinematography,1356249667 +186941,90866,fantasy,1356249669 +186941,90866,nostalgic,1356249674 +186941,90866,robots,1356249676 +186941,90866,visually appealing,1356249678 +186941,95167,charming,1356249625 +186941,95167,mother-daughter relationships,1356249630 +186941,95167,predictable,1356249632 +186941,95167,symbolism,1356249640 +186941,95167,visuals,1356249636 +186941,95510,comic book,1356249517 +186941,95510,nerds kicking butt,1356249501 +186941,95510,special effects,1356249510 +186941,95510,Spider-Man,1356249506 +186941,95510,superhero,1356249508 +186941,98243,action,1356249081 +186941,98243,Adventure,1356249080 +186941,98243,cute,1356249091 +186941,98243,holiday,1356249076 +186941,98243,playful,1356249100 +186941,98809,beautiful scenery,1356248405 +186941,98809,CGI,1356248410 +186941,98809,epic,1356248417 +186941,98809,fantasy world,1356248423 +186941,98809,magic,1356248429 +186949,236,girlie movie,1142607043 +186949,908,classic,1142607031 +186953,4019,friendship,1392230400 +186953,4019,Sean Connery,1392230403 +186957,68237,artificial intelligence,1440538447 +186957,68237,great soundtrack,1440538456 +186957,68237,melancholy,1440538462 +186957,68237,science,1440538465 +186957,68237,space,1440538445 +186972,2791,aviation,1147469701 +186972,4914,Goddard,1147469813 +186981,608,black comedy,1448731472 +186981,608,Coen Brothers,1448731465 +186981,608,dark comedy,1448731469 +186981,608,dark humor,1448731489 +186981,1732,black comedy,1448731590 +186981,1732,coen brothers,1448730690 +186981,1732,cult film,1448730723 +186981,1732,dark comedy,1448730719 +186981,1732,funny,1448730736 +186981,1732,great dialogue,1448731598 +186981,1732,Jeff Bridges,1448731593 +186981,1732,quirky,1448731612 +186981,1732,sarcasm,1448730743 +186981,1732,satirical,1448730698 +186981,6957,black comedy,1448730757 +186981,6957,drunkenness,1448730753 +186981,55820,atmospheric,1448731378 +186981,55820,Coen Brothers,1448731354 +186981,55820,dark,1448731358 +186981,55820,great acting,1448731392 +186981,55820,senseless,1448731381 +186981,55820,serial killer,1448731384 +186981,55820,thriller,1448731390 +186981,55820,violent,1448731387 +186986,735,interpretable,1230958713 +186986,2160,interpretable,1230958844 +186986,3535,interpretable,1230958811 +186986,6820,Katherine Isabelle,1231272509 +186986,27746,Katherine Isabelle,1231306439 +186986,27746,twist ending,1231306439 +186986,27746,werewolf,1231306439 +186986,27746,werewolves,1231306439 +186986,27773,twist ending,1230960023 +186986,27778,Katherine Isabelle,1231432150 +186986,27778,werewolf,1231432150 +186986,27778,werewolves,1231432150 +186986,48394,twist ending,1230958908 +186986,56169,jessica alba's beautiful ass,1231306536 +186986,56169,twist ending,1231306547 +186986,56339,Guillermo del Toro,1230958642 +186986,56339,interpretable,1230958692 +186986,56339,twist ending,1230960028 +186986,57274,best movie ever,1231220181 +186986,57274,Manuela Velasco,1231432190 +187010,260,Classic,1439422346 +187010,260,Epic,1439422343 +187024,4306,Funny,1425059971 +187024,92259,funny,1425059934 +187024,111362,action,1425060189 +187024,111362,comics,1425060189 +187024,111362,nerd,1425060189 +187028,5782,interesting,1175640174 +187028,54995,Bruce Willis,1256747910 +187028,54995,horror,1256747849 +187028,54995,machine gun leg,1256747881 +187028,54995,Nudity (Topless),1256747870 +187028,54995,Robert Rodriguez,1256747855 +187028,54995,zombies,1256747821 +187028,61240,serial killer,1240945994 +187028,61240,vampire,1240945973 +187028,61240,vampires,1240945981 +187028,62250,italy,1254770623 +187028,63876,gay,1242244989 +187028,65642,murder,1314453115 +187028,65642,Nudity (Topless),1314453069 +187028,65642,paradox,1314453073 +187028,72011,utterly predictable,1268586413 +187028,90439,realistic,1324837106 +187028,90439,smart people,1324837114 +187028,90439,suspense,1324837092 +187028,98961,Kathryn Bigelow,1361122337 +187030,2571,action,1428413947 +187030,2571,alternate reality,1428413991 +187030,2571,computers,1428414008 +187030,2571,fantasy,1428413997 +187030,2571,fight scenes,1428413962 +187030,2571,martial arts,1428413930 +187030,2571,philosophical,1428413976 +187030,2571,philosophy,1428414061 +187030,2571,sci-fi,1428413921 +187030,2571,Special Effects,1428414032 +187030,2571,thought-provoking,1428413953 +187030,2571,virtual reality,1428413940 +187030,6365,action,1428414130 +187030,6365,alternate reality,1428414167 +187030,6365,artificial intelligence,1428414165 +187030,6365,fight scenes,1428414179 +187030,6365,human versus computer,1428414148 +187030,6365,martial arts,1428414153 +187030,6365,thought-provoking,1428414142 +187030,6934,alternate reality,1428414219 +187030,6934,artificial intelligence,1428414231 +187030,6934,future,1428414235 +187030,6934,martial arts,1428414229 +187030,6934,Philosophical,1428414216 +187030,6934,sci-fi,1428414212 +187030,6934,virtual reality,1428414248 +187030,7153,Adventure,1428414320 +187030,7153,based on a book,1428414330 +187030,7153,epic,1428414339 +187030,7153,fantasy,1428414317 +187030,7153,fantasy world,1428414370 +187030,7153,high fantasy,1428414343 +187030,7153,magic,1428414353 +187030,7153,mythology,1428414357 +187030,7153,war,1428414367 +187030,7153,wizards,1428414334 +187043,70183,Gerard Butler,1378231528 +187043,70183,Katherine Heigl,1378231529 +187043,70183,relationship advice,1378231534 +187043,79091,3D,1378231337 +187043,79091,animation,1378231340 +187043,79091,cute,1378231356 +187043,79091,hilarious,1378231354 +187043,79091,mad scientist,1378231319 +187043,79091,pixar,1378231326 +187043,79091,quirky,1378231351 +187043,79091,space travel,1378231348 +187043,79091,Steve Carell,1378231332 +187043,81845,complex characters,1378230709 +187043,81845,disability,1378230741 +187043,81845,emotional,1378230764 +187043,81845,England,1378230746 +187043,81845,historical,1378230751 +187043,81845,Oscar (Best Picture),1378230717 +187043,81845,politics,1378230771 +187081,2997,bizarre,1441911713 +187081,2997,mindfuck,1441911696 +187081,2997,psychological,1441911702 +187081,2997,surreal,1441911692 +187081,2997,surrealism,1441911690 +187081,2997,thought-provoking,1441911708 +187081,2997,weird,1441911711 +187081,8957,psychological,1441910525 +187081,8957,serial killer,1441910512 +187081,8957,twist ending,1441910518 +187081,27584,funny,1441910483 +187081,78836,crazy,1441845767 +187081,78836,mindfuck,1441845753 +187081,101458,game show,1445138118 +187081,101458,trapped,1445138113 +187081,104298,clever,1441917598 +187081,104298,suspenseful,1441917602 +187081,104298,twist ending,1441917595 +187081,115569,creepy,1451827060 +187081,115569,dark,1451827055 +187081,115569,sociopath,1451827068 +187081,125497,cult,1453857978 +187081,125497,different,1453857958 +187081,125497,sacrifice,1453858882 +187081,125497,slavery,1453857960 +187081,134915,clowns,1453160082 +187081,134915,creepy,1453160079 +187081,134915,horror,1453160087 +187081,134915,urban legend,1453160095 +187081,144482,death,1450031831 +187081,144482,experiment,1450031813 +187081,144482,game,1450031822 +187081,144482,puzzle,1450031799 +187089,2321,heartwarming,1247886359 +187089,2321,moral ambiguity,1247886379 +187089,2321,Reese Witherspoon,1247886362 +187089,2321,satire,1247886368 +187089,2321,utopia,1247886364 +187089,2321,whimsical,1247886375 +187089,2321,witty,1247886373 +187089,3717,Action,1247886290 +187089,4002,comedy,1252348366 +187089,4002,language,1252348358 +187089,4002,Sexual Humor,1252348418 +187089,4002,steve martin,1252348372 +187089,4022,adventure,1247886201 +187089,4022,boring,1247886205 +187089,4022,busom buddy with a volleyball,1247886207 +187089,4022,didn't get the girl,1247886244 +187089,4022,drama,1247886213 +187089,4022,helen hunt,1247886219 +187089,4022,life-changing,1247886225 +187089,4022,unhappy ending,1247886257 +187089,4027,George Clooney,1247886138 +187089,4027,Musical,1247886168 +187089,4027,notable soundtrack,1247886141 +187089,4027,prison escape,1247886144 +187089,4027,Quirky,1247886155 +187089,5218,fun,1247886026 +187089,5218,Ray Romano,1247886029 +187089,6183,Doris Day,1247880936 +187089,6537,action,1247885927 +187089,6537,alternate universe,1247885957 +187089,6537,android(s)/cyborg(s),1247885960 +187089,6537,apocalypse,1247885963 +187089,6537,Arnold Schwarzenegger,1247885952 +187089,6537,artificial intelligence,1247885949 +187089,6537,Nudity (Rear),1247885935 +187089,6537,Nudity (Topless - Brief),1247885931 +187089,6537,Nudity (Topless),1247885942 +187089,8665,car chase,1247885853 +187089,8665,cia,1247885882 +187089,8665,Julia Stiles,1247885868 +187089,8665,realistic action,1247885858 +187089,8665,spy,1247885861 +187089,8961,action,1247885777 +187089,8961,Adventure,1247885779 +187089,8961,alter ego,1247885782 +187089,8961,classic,1247885784 +187089,8961,comedy,1247885786 +187089,8961,family,1247885773 +187089,8961,Pixar,1247885768 +187089,8961,super hero,1247885799 +187089,8961,super-hero,1247885799 +187089,8961,superhero,1247885803 +187089,8961,superheroes,1247885805 +187089,52435,Cindy Lou Who,1247880542 +187089,52435,Dr. Seuss,1247880503 +187089,52435,Max The Dog,1247880503 +187089,52435,moral,1247880542 +187089,53996,80s nostalgia,1247885605 +187089,53996,based on a TV show,1247885611 +187089,53996,Nostalgia Critic,1247885622 +187089,53996,Special Effects,1247885637 +187089,65585,Anne Hathaway,1252348165 +187089,65585,could have been funnier,1252348134 +187089,65585,kate hudson,1252348179 +187089,65585,sex before marriage,1252348195 +187089,65585,too serious,1252348147 +187089,67788,cute,1252348044 +187089,67788,good clean comedy,1252347998 +187089,67788,Isla Fisher,1252347998 +187089,67788,romance,1252347998 +187089,67788,shopping,1252348010 +187089,67788,simple plot,1252348040 +187099,1296,adapted from:book,1448719922 +187099,1296,E. M. Forster,1448719915 +187099,1296,England,1448719931 +187099,1296,Italy,1448719929 +187099,26497,1930s,1448719444 +187099,26497,England,1448719441 +187099,26497,gay,1448719462 +187099,26497,public school,1448676066 +187099,26497,teenage,1448719460 +187099,60758,Evelyn Waugh,1448720026 +187099,95837,Christmas,1448720502 +187099,132961,Thomas Hardy,1448720186 +187105,111,atmospheric,1437469010 +187105,111,New York City,1437469012 +187105,111,psychology,1437469023 +187105,111,robert de niro,1437469001 +187105,586,childhood classics,1437487084 +187105,586,christmas,1437487079 +187105,1088,coming of age,1437486236 +187105,1088,Dancing,1437486226 +187105,1088,music,1437486240 +187105,1244,black and white,1437469119 +187105,1244,new york city,1437469110 +187105,1244,photography,1437469123 +187105,1244,urbane,1437469139 +187105,4720,atmospheric,1437486077 +187105,4720,ghosts,1437486084 +187105,4720,gothic,1437486087 +187105,4720,haunted house,1437486081 +187105,4873,philosophy,1437486892 +187105,4936,dance,1437486268 +187105,69604,New York City,1437469343 +187105,69604,philosophical,1437469369 +187123,413,Adam Sandler,1186183182 +187123,413,silly and stupid,1186183182 +187123,546,video game adaptation,1186183288 +187123,1100,racing,1186183264 +187123,1298,animation,1186183249 +187123,1298,propaganda,1186183249 +187123,1556,Stupid as Hell,1186183333 +187123,2116,animated,1186183324 +187123,2116,fairy tale,1186183324 +187123,2953,humorous,1186183149 +187123,2953,sequel,1186183149 +187123,2953,silly fun,1186183149 +187123,3113,boring action movie,1186183349 +187123,3608,Tim Burton,1186183281 +187123,6373,Jim Carrey,1186183215 +187162,45720,chickflick,1160764237 +187188,532,spoof,1179869161 +187193,260,futuristic view,1432714067 +187193,260,good science fictional technology,1432714037 +187193,296,bloody,1432714553 +187193,296,crazy histories,1432714553 +187193,296,redemption,1432714553 +187193,318,intelligent,1435589166 +187193,318,justice,1435589166 +187193,318,message of hope,1435589166 +187219,50,imdb top 250,1325459433 +187219,318,imdb top 250,1325459578 +187219,1729,Elmore Leonard,1325204975 +187219,3272,Harvey Keitel,1325205357 +187219,5349,marvel,1325204527 +187219,8636,marvel,1325204510 +187219,30707,boxing,1325204458 +187219,30707,clint,1325204458 +187219,55247,wilderness,1325203835 +187219,73392,economic-collapse,1325188767 +187219,73392,economic-crisis,1325188767 +187219,73392,peak-oil,1325188683 +187219,73392,post-apocalypse,1325188767 +187219,73392,recession,1325188767 +187245,63113,James Bond,1442121738 +187245,96079,James Bond,1442121724 +187245,109487,sci-fi,1442121908 +187274,1,funny,1139521415 +187274,47,very good,1139521469 +187274,339,good,1139521547 +187274,344,very funny,1139521436 +187274,356,must see,1139521402 +187274,480,not that good,1139525156 +187274,593,good,1139525167 +187274,1527,great,1139520915 +187274,2028,classic war movie,1139521478 +187274,2334,very good,1139775796 +187274,2572,romantic,1139522263 +187274,2706,the best one,1139520893 +187274,4452,very funny,1143929381 +187274,4733,just allen,1139521823 +187274,5283,funny,1139527019 +187274,5348,just allen,1139521899 +187274,5449,funny,1139522033 +187274,5572,funny,1139525904 +187274,5669,must see,1139521337 +187274,5878,just almodovar,1139521089 +187274,6016,one of the best movies ever,1139527098 +187274,6188,very funny,1139520746 +187274,6265,funny,1139525803 +187274,6287,funny,1139522057 +187274,6377,funny,1139524848 +187274,6378,very good,1140038948 +187274,6493,just normal,1139521192 +187274,6711,very good,1139524788 +187274,6750,just allen,1139521790 +187274,6947,very good,1139526845 +187274,7143,good,1139526825 +187274,7258,funny,1139775742 +187274,7261,very funny,1139525902 +187274,7265,very good,1139776581 +187274,7293,funny,1139522011 +187274,7376,pure fight,1139521064 +187274,7378,funny,1139525973 +187274,7445,action,1139526922 +187274,7459,very good,1139528188 +187274,8387,classic,1139522327 +187274,8464,must see,1139521372 +187274,8528,funny,1139525505 +187274,8529,one of the best movies ever,1139520974 +187274,8622,must see,1139521327 +187274,8870,not that good,1139526989 +187274,8873,good,1139521352 +187274,8907,funny,1139524818 +187274,30822,very funny,1146495248 +187274,30822,very good,1146495239 +187274,31685,funny,1139522273 +187274,33499,it aint funny,1139521214 +187274,33615,funny,1139525845 +187274,33646,very funny,1139521173 +187274,33679,very good,1139521278 +187274,34162,funny,1139525553 +187274,34319,it's just normal,1139521130 +187274,36533,regular,1143308238 +187274,39427,crazy,1139522249 +187274,42002,funny,1139520745 +187277,11,cute,1144601714 +187277,47,gory,1144602208 +187283,45668,architecture,1336700409 +187283,45668,music,1336700266 +187300,1213,crime,1451868367 +187300,1213,gangsters,1451868375 +187300,1213,good dialogue,1451868401 +187300,1213,imdb top 250,1451868390 +187300,1213,Joe Pesci,1451868358 +187300,1213,mafia,1451868343 +187300,1213,Martin Scorsese,1451868380 +187300,1213,organized crime,1451868354 +187300,1213,Ray Liotta,1451868371 +187300,1213,robert de niro,1451868351 +187314,17,Great Adaptations,1138049884 +187314,17,Great Screenplays,1138046921 +187314,50,Dark,1138049892 +187314,110,Best War Films,1138068574 +187314,261,Great Adaptations,1138047118 +187314,292,Overrated,1138050037 +187314,318,Great Adaptations,1138046658 +187314,326,Fantastic Foreign Films,1187828228 +187314,356,Overrated,1138050024 +187314,364,Bearable Disney,1168296515 +187314,471,Underrated,1138048801 +187314,480,Cool but freaky,1138048822 +187314,500,Funny as hell,1138048848 +187314,500,Moving,1138048848 +187314,508,Catchy Score,1138048874 +187314,508,Exceptional Acting,1138048874 +187314,508,Moving,1138048857 +187314,551,*Good* Musicals,1138050045 +187314,587,Catchy Score,1138048732 +187314,587,Quite Romantic,1138135270 +187314,588,Bearable Disney,1168297256 +187314,595,Bearable Disney,1168297118 +187314,750,Funny as hell,1142196263 +187314,750,Quirky,1142196263 +187314,783,Bearable Disney,1168296726 +187314,858,Exceptional Acting,1138049867 +187314,858,Memorable Characters,1168707347 +187314,898,Quite Romantic,1168294965 +187314,904,Frightening,1138049826 +187314,906,Friends Should See,1185554835 +187314,906,Frightening,1138047177 +187314,908,Classic Chase Scenes,1168295354 +187314,910,Friends Should See,1185554454 +187314,912,Great Screenplays,1138049808 +187314,914,*Good* Musicals,1138046797 +187314,914,Memorable Characters,1168707204 +187314,919,Heartwarming,1168707458 +187314,919,Memorable Characters,1168707458 +187314,922,Dark,1138914928 +187314,922,Friends Should See,1185554407 +187314,923,Amazing Cinematography,1168130855 +187314,924,Amazing Cinematography,1138048697 +187314,924,Cool but freaky,1138048687 +187314,926,Friends Should See,1185555094 +187314,926,Great Screenplays,1138047144 +187314,928,Amazing Cinematography,1138047217 +187314,928,Dark,1142196435 +187314,928,Great Adaptations,1138047217 +187314,938,*Good* Musicals,1138050159 +187314,947,Friends Should See,1185554645 +187314,949,Exceptional Acting,1138047265 +187314,949,Friends Should See,1185554874 +187314,951,Great Screenplays,1138048792 +187314,953,Heartwarming,1138047285 +187314,954,Heartwarming,1168296336 +187314,954,Inspiring,1168296328 +187314,1012,Animals die :(,1142196414 +187314,1022,Bearable Disney,1168296945 +187314,1028,Bearable Disney,1168296424 +187314,1035,*Good* Musicals,1138047660 +187314,1059,Amazing Cinematography,1138048902 +187314,1059,Quirky,1138048902 +187314,1059,Quite Romantic,1138048902 +187314,1073,Heartwarming,1138047736 +187314,1073,Memorable Characters,1168707469 +187314,1079,Overrated,1138050133 +187314,1080,Funny as hell,1138048830 +187314,1086,Exceptional Acting,1154649662 +187314,1086,Friends Should See,1185554907 +187314,1086,Well Plotted,1154649646 +187314,1090,Best War Films,1138046914 +187314,1136,Funny as hell,1138047534 +187314,1147,Inspiring,1142196618 +187314,1176,Quite Romantic,1138135294 +187314,1178,Best War Films,1138048989 +187314,1193,Catchy Score,1138047702 +187314,1193,Exceptional Acting,1138047637 +187314,1193,Great Adaptations,1138047637 +187314,1197,Funny as hell,1138049817 +187314,1197,Quirky,1138049817 +187314,1200,Frightening,1142196501 +187314,1203,Exceptional Acting,1168707220 +187314,1203,Great Screenplays,1138046765 +187314,1207,Great Adaptations,1138047726 +187314,1207,Memorable Characters,1168707542 +187314,1208,Dark,1138050069 +187314,1212,Amazing Cinematography,1142196568 +187314,1212,Catchy Score,1142196599 +187314,1219,Frightening,1168294930 +187314,1221,Exceptional Acting,1138049873 +187314,1221,Memorable Characters,1168707341 +187314,1242,Best War Films,1138046888 +187314,1242,Friends Should See,1185554196 +187314,1250,Best War Films,1138049835 +187314,1250,Catchy Score,1154647487 +187314,1252,Exceptional Acting,1138049853 +187314,1252,Great Screenplays,1138046863 +187314,1267,Dark,1168296468 +187314,1269,Friends Should See,1185555041 +187314,1269,Funny as hell,1138047558 +187314,1269,Well Plotted,1138047479 +187314,1271,Quirky,1138050230 +187314,1272,Best War Films,1168294986 +187314,1284,Friends Should See,1185554310 +187314,1284,Great Screenplays,1138046853 +187314,1293,Exceptional Acting,1168707360 +187314,1333,Great Adaptations,1138048919 +187314,1358,Memorable Characters,1168707802 +187314,1380,Overrated,1138050236 +187314,1394,Quirky,1138050283 +187314,1396,Funny as hell,1138049041 +187314,1396,Quirky,1138049041 +187314,1396,Terrific cast,1138049041 +187314,1441,Quirky,1138050218 +187314,1485,Funny as hell,1138048965 +187314,1580,Cool but freaky,1138048979 +187314,1653,Well Plotted,1138048952 +187314,1672,Exceptional Acting,1138049016 +187314,1682,Well Plotted,1138049077 +187314,1688,Bearable Disney,1168297184 +187314,1704,Great Screenplays,1138047000 +187314,1732,Funny As Hell,1191430472 +187314,1760,Awful Awards,1138136151 +187314,1806,Animals die :(,1138050267 +187314,1860,Fantastic Foreign Films,1187828577 +187314,1923,Overrated,1138069729 +187314,1951,Great Adaptations,1138047781 +187314,1952,Catchy Score,1170640447 +187314,1952,Memorable Characters,1170640447 +187314,1952,Moving,1170640447 +187314,1961,Exceptional Acting,1138068518 +187314,2018,Animals die :(,1138047765 +187314,2019,Amazing Cinematography,1138047036 +187314,2019,Fantastic Foreign Films,1187828065 +187314,2067,Amazing Cinematography,1138046968 +187314,2067,Friends Should See,1185554222 +187314,2081,Bearable Disney,1168296507 +187314,2125,Quite Romantic,1142196679 +187314,2137,Animals die :(,1138047757 +187314,2178,Frightening,1138049089 +187314,2202,Overrated,1138049104 +187314,2248,Overrated,1138050370 +187314,2300,Friends Should See,1185554591 +187314,2300,Funny as hell,1138047798 +187314,2324,Moving,1138049117 +187314,2511,Quirky,1138049127 +187314,2554,Frightening,1138047841 +187314,2565,*Good* Musicals,1138047875 +187314,2657,Catchy Score,1138050356 +187314,2657,Quirky,1138050356 +187314,2671,Overrated,1138069714 +187314,2682,Dark,1168296549 +187314,2682,Exceptional Acting,1168296549 +187314,2682,Great Screenplays,1168296549 +187314,2682,Moving,1168296594 +187314,2682,Underrated,1168296594 +187314,2718,Friends Should See,1185554894 +187314,2718,Funny as hell,1138047849 +187314,2762,Frightening,1138047886 +187314,2791,Funny as hell,1138069851 +187314,2846,Heartwarming,1138047835 +187314,2929,Inspiring,1138049298 +187314,2929,Quite Romantic,1138049298 +187314,2947,Best of Bond,1138049249 +187314,2948,Best of Bond,1138047863 +187314,2949,Best of Bond,1138049240 +187314,2953,Quirky,1168296741 +187314,2953,Underrated,1168296741 +187314,3022,Funny as Hell,1191430778 +187314,3066,Best War Films,1138048160 +187314,3066,Friends Should See,1185554382 +187314,3071,Inspiring,1138048142 +187314,3081,Dark,1138050389 +187314,3088,Funny as hell,1138048059 +187314,3088,Heartwarming,1138048066 +187314,3098,Semi-Good Sports Movies,1138049284 +187314,3114,Funny as hell,1138048167 +187314,3145,Exceptional Acting,1138048002 +187314,3145,Inspiring,1138048002 +187314,3147,Great Adaptations,1138048050 +187314,3147,Moving,1138048050 +187314,3155,Quite Romantic,1138135236 +187314,3189,Animals die :(,1168295434 +187314,3225,Awful Awards,1138069896 +187314,3246,Exceptional Acting,1138048078 +187314,3296,Catchy Score,1138050426 +187314,3296,Overrated,1138050405 +187314,3299,Awful Awards,1138136143 +187314,3350,Exceptional Acting,1138048092 +187314,3350,Moving,1138048103 +187314,3359,Inspiring,1138048009 +187314,3359,Semi-Good Sports Movies,1154643490 +187314,3384,Friends Should See,1185554061 +187314,3384,Memorable Characters,1168707237 +187314,3384,Well Plotted,1138068527 +187314,3386,Overrated,1168296706 +187314,3408,Great Screenplays,1138048021 +187314,3408,Inspiring,1168296829 +187314,3435,Great Screenplays,1138049232 +187314,3471,Cool but freaky,1138047971 +187314,3510,Underrated,1138046781 +187314,3524,Funny as hell,1138049190 +187314,3551,Frightening,1138048243 +187314,3629,Funny as hell,1138049255 +187314,3671,Funny as hell,1138049197 +187314,3730,Catchy Score,1191430457 +187314,3753,Best War Films,1138048254 +187314,3801,Catchy Score,1191440520 +187314,3882,Overrated,1138136277 +187314,3897,Catchy Score,1138049179 +187314,3897,Overrated,1138049171 +187314,3911,Funny as hell,1138050447 +187314,3916,Semi-Good Sports Movies,1168294901 +187314,3994,Frightening,1168707506 +187314,4014,Quirky,1138049315 +187314,4014,Quite Romantic,1138049315 +187314,4018,Awful Awards,1138136319 +187314,4019,Moving,1138068498 +187314,4027,Catchy Score,1138049450 +187314,4027,Funny as hell,1138049450 +187314,4027,Quirky,1138049450 +187314,4039,*Good* Musicals,1168297173 +187314,4187,Overrated,1138049400 +187314,4210,Dark,1138049416 +187314,4223,Best War Films,1168296845 +187314,4306,Quirky,1138050507 +187314,4310,Overrated,1138049462 +187314,4340,Awful Awards,1138136448 +187314,4361,Funny as hell,1138049478 +187314,4407,Frightening,1168132322 +187314,4427,Amazing Cinematography,1138048232 +187314,4427,Exceptional Acting,1138048232 +187314,4427,Great Screenplays,1138048232 +187314,4427,Terrific Cast,1168296527 +187314,4447,Overrated,1138050485 +187314,4537,Moving,1138048271 +187314,4646,Quirky,1168296784 +187314,4646,Underrated,1168296784 +187314,4728,Funny as hell,1138048261 +187314,4816,Funny as hell,1138069226 +187314,4878,Cool but freaky,1138048349 +187314,4899,Awful Awards,1138136268 +187314,4969,Catchy Score,1142195969 +187314,4993,Overrated,1138069185 +187314,5013,Dark,1138049351 +187314,5064,Amazing Cinematography,1138048339 +187314,5171,Awful Awards,1138136310 +187314,5171,Crappy Remake,1138136310 +187314,5190,Inspiring,1138049380 +187314,5377,Quirky,1138048321 +187314,5410,Catchy Score,1138049560 +187314,5410,Inspiring,1138049560 +187314,5410,Moving,1138049560 +187314,5410,Quirky,1138049560 +187314,5434,Frightening,1138049569 +187314,5444,Bearable Disney,1168296606 +187314,5525,Quite Romantic,1138048388 +187314,5772,Great Screenplays,1168296263 +187314,5772,Underrated,1168296263 +187314,5791,Amazing Cinematography,1138048369 +187314,5791,Exceptional Acting,1138048369 +187314,5938,Frightening,1138049504 +187314,5938,Quirky,1138049504 +187314,5952,Overrated,1138069572 +187314,5995,Catchy Score,1138049527 +187314,6041,Fantastic Foreign Films,1187828661 +187314,6218,Semi-Good Sports Movies,1154643406 +187314,6303,Cool but freaky,1138048432 +187314,6345,*Good* Musicals,1138049603 +187314,6378,Classic Chase Scenes,1138069565 +187314,6433,Catchy Score,1190681530 +187314,6454,Frightening,1168296292 +187314,6539,Memorable Characters,1168707261 +187314,6568,Awful Awards,1138069868 +187314,6639,Frightening,1138048518 +187314,6663,Funny as hell,1138048494 +187314,6669,Fantastic Foreign Films,1187828146 +187314,6708,Exceptional Acting,1138049637 +187314,6708,Quirky,1138049637 +187314,6756,Moving,1138049583 +187314,6777,Exceptional Acting,1168130587 +187314,6777,Friends Should See,1185554172 +187314,6783,Funny as hell,1193116073 +187314,6787,Inspiring,1168297227 +187314,6787,Terrific Cast,1168297227 +187314,6807,Funny as hell,1138069582 +187314,6863,Overrated,1138069599 +187314,6869,Fantastic Foreign Films,1187828587 +187314,6869,Moving,1168297063 +187314,6870,Dark,1168295411 +187314,6870,Exceptional Acting,1138048488 +187314,6879,Overrated,1138049657 +187314,6935,Inspiring,1168294774 +187314,6947,Overrated,1138069676 +187314,6984,Great Adaptations,1138048514 +187314,7009,Inspiring,1138049622 +187314,7009,Moving,1138049622 +187314,7153,Overrated,1138049615 +187314,7488,Inspiring,1168297111 +187314,7560,Friends Should See,1185554210 +187314,7560,Frightening,1142196011 +187314,7619,Exceptional Acting,1188846225 +187314,7836,Catchy Score,1138048629 +187314,7836,Inspiring,1138048618 +187314,7980,Best War Films,1138048557 +187314,8636,Amazing Cinematography,1138048586 +187314,8644,Amazing Cinematography,1138049978 +187314,8644,Cool but freaky,1138049978 +187314,8873,Amazing Cinematography,1168296382 +187314,8873,Fantastic Foreign Films,1187828421 +187314,8873,Inspiring,1168296382 +187314,8949,Funny as hell,1138048570 +187314,8958,Catchy Score,1138049998 +187314,8958,Exceptional Acting,1138049998 +187314,8970,Heartwarming,1138069662 +187314,8981,Dark,1138069642 +187314,25886,Friends Should See,1185554562 +187314,25886,Moving,1161539841 +187314,25886,Quite Romantic,1161539841 +187314,32584,Moving,1138048539 +187314,32584,Underrated,1138048548 +187314,33794,Amazing Cinematography,1168297148 +187314,34072,Heartwarming,1138049987 +187314,34482,Exceptional Acting,1161368939 +187314,34482,Friends Should See,1185554989 +187314,34482,Moving,1161368939 +187314,36517,Great Adaptations,1140561958 +187314,38304,Catchy Score,1168295393 +187314,39183,Moving,1154643540 +187314,39183,Quite Romantic,1154643540 +187314,39292,Amazing Cinematography,1142196110 +187314,39292,Inspiring,1142196110 +187314,39886,Exceptional Acting,1193116210 +187314,39886,Moving,1193116113 +187314,39886,Terrific Cast,1193116164 +187314,41566,Amazing Cinematography,1138049941 +187314,43376,Fantastic Foreign Films,1187828267 +187314,44555,Fantastic Foreign Films,1187828130 +187314,44555,Moving,1187828803 +187314,44555,Terrific Cast,1187828803 +187314,53123,Catchy Score,1192405783 +187314,53123,Quite Romantic,1192405783 +187316,88,chris farley,1163802379 +187316,1887,chris farley,1163802348 +187316,1887,history,1163802354 +187346,2012,time travel,1296523474 +187371,48774,apocalypse,1250506332 +187371,48774,sci-fi,1250506347 +187371,48774,survival,1250506358 +187371,70286,intelligent sci-fi,1250506447 +187383,55245,rubbish,1228002511 +187414,2160,Camp,1297988290 +187414,43932,this is just shit..haha,1297986511 +187414,77427,body horror,1297986616 +187414,77427,Dieter Laser,1297986618 +187414,79879,Gore,1297985743 +187414,79879,Tits,1297985796 +187427,260,cult classic,1439774922 +187427,260,old FX quality,1439774939 +187427,260,sci-fi,1439774918 +187427,260,story driven,1439774909 +187429,81845,dedication,1437324464 +187429,81845,motivation,1437324464 +187429,81845,protagonist is egoist,1437324464 +187456,260,action,1442271317 +187456,260,adventure,1442271319 +187456,260,EPIC,1442271320 +187456,260,funny,1442271322 +187456,260,good vs evil,1442271343 +187456,260,sci-fi,1442271315 +187456,1210,Harrison Ford,1442271537 +187456,1210,sci-fi,1442271526 +187456,1210,Star Wars,1442271529 +187458,260,space action,1435119875 +187458,260,special effects,1435119895 +187458,356,comedy,1435120179 +187458,356,goofy,1435120179 +187458,356,historical,1435120179 +187502,110,historical,1307075818 +187502,110,History,1307075813 +187502,110,inspirational,1307075794 +187502,110,Nudity (Topless),1307075788 +187502,110,revenge,1307075802 +187502,520,Gross-out,1307076021 +187502,520,parody,1307076024 +187502,520,spoof,1307076026 +187502,595,affectionate,1307075842 +187502,595,fairy tale,1307075828 +187502,595,gentle,1307075834 +187502,595,heartwarming,1307075832 +187502,595,redemption,1307075846 +187502,904,Alfred Hitchcock,1307075567 +187502,904,suspense,1307075570 +187502,904,tense,1307075591 +187502,923,Amazing Cinematography,1307075764 +187502,923,atmospheric,1307075767 +187502,923,Innovative,1307075774 +187502,965,Alfred Hitchcock,1307676661 +187502,1197,fairy tale,1307075612 +187502,1197,funny,1307075605 +187502,1197,quirky,1307075602 +187502,2019,Akira Kurosawa,1307075492 +187502,2019,atmospheric,1307075501 +187502,2019,epic,1307075511 +187502,2019,historical,1307075517 +187502,2019,Japan,1307075495 +187502,2028,historical,1307075993 +187502,2028,history,1307075995 +187502,2028,stylized,1307076005 +187502,2745,message,1307551791 +187502,3000,atmospheric,1307076055 +187502,3000,environmental,1307076059 +187502,3000,fantasy world,1307076056 +187502,3000,Hayao Miyazaki,1307076051 +187502,3000,Japan,1307076071 +187502,3000,prostitution,1307076064 +187502,3000,Studio Ghibli,1307076052 +187502,3030,Akira Kurosawa,1307076489 +187502,3030,atmospheric,1307076490 +187502,3030,bleak,1307076506 +187502,3030,samurai,1307076494 +187502,3030,tense,1307076496 +187502,5299,chick flick,1307076186 +187502,5299,crude humor,1307076180 +187502,5299,culture clash,1307076176 +187502,5299,culture shock,1307076179 +187502,5618,anime,1307075451 +187502,5618,Hayao Miyazaki,1307075445 +187502,5618,sports,1307075461 +187502,5618,Studio Ghibli,1307075443 +187502,5618,whimsical,1307075467 +187502,5690,based on a true story,1307075743 +187502,5690,poignant,1307075735 +187502,5690,Studio Ghibli,1307075732 +187502,5971,Cute,1307076141 +187502,5971,Hayao Miyazaki,1307076144 +187502,5971,kids and family,1307076160 +187502,5971,slow,1307076134 +187502,7318,beautifully filmed,1307076082 +187502,7318,Biblical,1307076081 +187502,7318,Christian,1307076083 +187502,7318,religion,1307076106 +187502,7745,inappropriate music,1307583123 +187502,7745,joy of small things,1307583134 +187502,7745,mindfulness,1307583144 +187502,7745,slow,1307583178 +187502,27801,martial arts,1307583459 +187502,27801,stunts,1307583467 +187502,27801,Tony Jaa,1307583392 +187502,31878,kung fu,1307076241 +187502,40414,humane,1307075638 +187502,40414,multinational settings,1307075646 +187502,40414,true story,1307075663 +187502,41571,geisha,1307551661 +187502,41571,inaccurate,1307551703 +187502,46322,friendship,1307583264 +187502,46322,Martial Arts,1307583260 +187502,51471,based on a true story,1307076457 +187502,51471,history,1307076449 +187502,51471,political drama,1307076446 +187502,56631,bravery,1323911808 +187502,56631,japanese,1323911808 +187502,56631,nerds,1323911809 +187502,56631,otaku,1323911809 +187502,56631,sweet,1323911808 +187502,59315,based on a comic,1307076270 +187502,59315,comic book,1307076274 +187502,59315,Marvel,1307076272 +187502,59315,torture,1307076255 +187502,59315,vigilante,1307076257 +187502,59784,good versus evil,1307076216 +187502,59784,Jack Black,1307076226 +187502,59784,Jackie Chan,1307076209 +187502,59784,martial arts,1307076211 +187502,63082,feel-good,1307075957 +187502,63082,social commentary,1307075951 +187502,63082,torture,1307075972 +187502,65514,chinese propaganda,1307076322 +187502,65514,distorted representation of history,1307076304 +187502,65514,foreign language,1307076286 +187502,65514,japanese occupation of china,1307076298 +187502,66934,anti-hero,1307076359 +187502,66934,bittersweet,1307076361 +187502,66934,not a movie,1307076354 +187502,66934,parody,1307076357 +187502,66934,sad ending,1307076346 +187502,66934,short,1307076428 +187502,68954,dreams,1307075924 +187502,68954,friendship,1307075925 +187502,68954,visually stunning,1307075929 +187502,72369,Japan,1307676259 +187502,72369,stylized,1307676259 +187502,76093,dragons,1307075710 +187502,76093,fantasy,1307075708 +187502,85179,anime,1324096783 +187502,85179,anime cliches,1324096785 +187502,85179,Japanese,1324096782 +187505,2,For children,1137260722 +187505,19,Not my kind of comedy,1137260743 +187505,32,after you watch it you spend hours thinkig about it,1137259499 +187505,32,Weird good film,1137259499 +187505,151,One of my favorites,1137260663 +187505,165,but no way as good as the other two,1137259212 +187505,165,Good,1137259212 +187505,260,Too old. showing its age,1137260551 +187505,339,A nicy romantic comedy,1137259303 +187505,339,it's alright.,1137259303 +187505,344,Dumb,1137259334 +187505,344,very dumb,1137259334 +187505,364,Very beautifull only problem is that the story is too short,1137260400 +187505,420,let the other two Beverly Hills Cops down,1137260495 +187505,457,Excellent just excellent,1137261883 +187505,589,Excellent action movie,1137258677 +187505,589,one of the best,1137258677 +187505,1080,One of the best comedies i've ever seen extemelly and historically rich,1137260196 +187505,1097,Very sweet but too childish,1137258668 +187505,1183,Very beautifull story wich shows human nature,1137260334 +187505,1198,Getting old but still excellent,1137258682 +187505,1923,not a very inteligent comedy film,1137259969 +187505,2011,Good in the 80s,1137258903 +187505,2762,don't watch it if you know the ending,1137259559 +187505,2762,inteligent and original,1137259597 +187505,2918,The film about the highschool guy who gets everything his own way,1137259901 +187505,2985,Good but a bit too bloody for me,1137259640 +187505,2987,Very good but made for kids,1137259735 +187505,3869,I laughed continuosly throughout this film,1137261344 +187505,4370,The never ending weird movie,1137261277 +187505,4499,A bit stupid,1137259152 +187505,5218,Maybe children like it,1137261131 +187505,5218,Showing off C.G. limitations,1137261131 +187505,6333,You won't like it too much if you've read the comics or seen the cartoons,1137259039 +187505,6365,Everybody who watched matrix 1 wanted this one to be good but it just wasn't,1137260883 +187517,260,classic sci-fi,1442519555 +187517,260,space adventure,1442519567 +187522,2628,Dynamic CGI Action,1149359169 +187522,4993,Dynamic CGI Action,1149359225 +187522,5254,Dynamic CGI Action,1149359417 +187522,5349,Dynamic CGI Action,1149359085 +187522,5378,Dynamic CGI Action,1149359172 +187522,5952,Dynamic CGI Action,1149359236 +187522,6365,Dynamic CGI Action,1149359134 +187522,6534,Dynamic CGI Action,1149359305 +187522,6618,Dynamic CGI Action,1149359461 +187522,6934,Dynamic CGI Action,1149359322 +187522,7153,Dynamic CGI Action,1149359232 +187522,8636,Dynamic CGI Action,1149359090 +187522,8644,Dynamic CGI Action,1149359252 +187522,8865,Dynamic CGI Action,1149359274 +187522,8961,Dynamic CGI Action,1149359110 +187522,31184,Dynamic CGI Action,1149359624 +187522,31878,Dynamic CGI Action,1149359476 +187522,33493,Dynamic CGI Action,1149359181 +187522,37830,Dynamic CGI Action,1149359054 +187522,41569,Dynamic CGI Action,1149359203 +187524,2706,tits,1147559175 +187524,4718,tits,1147559181 +187524,7034,lesbian,1148510087 +187524,36529,political,1148693637 +187524,37386,yeah but damn is she hot,1168291507 +187524,40583,Political,1148693567 +187525,85736,not a movie,1315076990 +187554,318,believe,1423773596 +187554,318,motivation,1423773596 +187554,318,patience,1423773596 +187567,50872,food,1286776820 +187567,50872,mouse,1286776834 +187586,1572,Jean-Luc Godard,1452316189 +187586,8154,Federico Fellini,1452316202 +187586,25739,Golden twenties,1452314472 +187586,25763,Golden twenties,1452315211 +187586,25855,Golden Twenties,1452315328 +187586,32551,Golden Twenties,1452315150 +187586,48299,Golden Twenties,1452315273 +187586,55247,coming of age,1453654583 +187586,102407,disappointing,1452324082 +187586,102407,Golden twenties,1452314416 +187586,108871,Golden twenties,1452315307 +187678,296,Samuel L. Jackson,1188322709 +187685,100843,black and white,1371928032 +187685,100843,funny,1371928037 +187687,1199,dark comedy,1300711684 +187687,1206,dystopia,1300712299 +187687,1274,anime,1300711636 +187687,1653,dystopia,1300711369 +187687,1653,dystopic future,1300711398 +187687,1653,genetic engineering,1300711385 +187687,1653,genetic selection,1300711454 +187687,1653,Jude Law,1300711374 +187687,1653,powerful ending,1300711402 +187687,1653,sci-fi,1300711405 +187687,1653,seen more than once,1300711409 +187687,2571,artificial intelligence,1300711331 +187687,2571,cyberpunk,1300711321 +187687,2571,dystopia,1300711301 +187687,2571,Keanu Reeves,1300711313 +187687,2571,post-apocalyptic,1300711335 +187687,2571,virtual reality,1300711328 +187687,4643,post-apocalyptic,1300712426 +187687,4643,Tim Burton,1300712419 +187687,4878,mental illness,1300711881 +187687,7372,Bibliothek,1300711019 +187687,7502,true story,1300711938 +187687,7502,World War II,1300711935 +187687,7811,sci-fi,1300711042 +187687,27611,androids,1300711865 +187687,27611,based on a TV show,1300711862 +187687,27611,visually appealing,1300711869 +187687,34319,action,1300712565 +187687,34319,surreal,1300712561 +187687,44191,dystopia,1300711232 +187687,44191,England,1300711263 +187687,44191,historical,1300711237 +187687,44191,inspirational,1300711243 +187687,44191,politics,1300711258 +187687,44191,sci-fi,1300711252 +187687,44191,visually appealing,1300711245 +187687,60069,dystopia,1300711490 +187687,60069,pixar,1300712342 +187687,60069,post-apocalyptic,1300711495 +187687,60069,Sci-Fi,1300711519 +187687,60069,space,1300711480 +187687,60684,adapted from:comic,1300711580 +187687,60684,dystopia,1300711591 +187687,60684,Nudity (Topless),1300711587 +187687,62836,space,1300710994 +187687,66097,animation,1300712735 +187687,68237,alter ego,1300711530 +187687,68237,artificial intelligence,1300711526 +187687,68237,cloning,1300711533 +187687,68237,dystopia,1300711535 +187687,68237,Good A.I.,1300711539 +187687,68237,plot holes,1300711559 +187687,68237,psychology,1300711551 +187687,68237,twist ending,1300711567 +187687,68358,animation,1300712055 +187687,68358,franchise,1300712040 +187687,68358,murder,1300712064 +187687,68358,Winona Ryder,1300712049 +187687,71530,Bruce Willis,1300712073 +187687,71530,cliche,1300712075 +187687,71530,predictable,1300712089 +187687,71530,robots,1300712092 +187687,71530,sci-fi,1300712113 +187687,71530,special effects,1300712118 +187687,71530,surreal,1300712121 +187687,73268,dystopia,1300711167 +187687,73268,genetics,1300711095 +187687,73268,vampires,1300711170 +187687,79132,action,1300711895 +187687,79132,alternate reality,1300711820 +187687,79132,complicated,1300711824 +187687,79132,fantasy,1300711832 +187687,79132,thought-provoking,1300711839 +187713,367,Jim Carrey,1163116378 +187713,912,classic,1163116500 +187713,922,Hollywood,1163116515 +187713,1260,serial killer,1163116526 +187713,3114,Disney,1163116386 +187732,608,Coen Brothers,1137192008 +187732,40278,war,1137191928 +187736,260,loyality,1444287271 +187736,2694,Adam Sandler,1446624539 +187736,2694,so funny,1446624530 +187784,260,fantasy,1432586572 +187784,260,sci-fi,1432586621 +187784,296,dark comedy,1433792796 +187784,296,drugs,1433792796 +187784,296,violent,1433792796 +187784,318,hope,1436031318 +187784,318,prison,1436031318 +187784,318,prison escape,1436031318 +187784,593,dark,1435033997 +187784,593,psychological,1435033997 +187784,593,thriller,1435033997 +187784,87520,audience intelligence underestimated,1435034453 +187784,87520,Michael Bay,1435034442 +187784,115569,dark,1435991719 +187818,260,classic,1441442819 +187818,260,science fantasy,1441442836 +187835,5008,Agatha Christie,1365306744 +187835,5008,author:Agatha Christie,1365306749 +187835,5008,Billy Wilder,1365306739 +187835,5008,mystery,1365306728 +187835,5903,simplistic,1368254487 +187835,6867,Michelle Williams,1368773805 +187835,80928,stand-up comedy,1365280377 +187835,97913,crude humor,1369376787 +187835,97913,video games,1369376769 +187835,99058,Hates itself,1365289726 +187835,99058,mean-spirited,1365292117 +187835,99058,nihilism,1365292078 +187835,101106,music business,1365277765 +187835,101864,generic sci-fi,1367461513 +187835,103042,loud as shit,1372237126 +187843,356,based on book,1181128987 +187843,665,Yugoslavia,1181151842 +187843,4306,animation,1181197985 +187843,4306,computer animation,1181198001 +187843,4306,very funny,1181197997 +187843,7367,boring,1181151310 +187843,8254,magic realism,1181151548 +187843,27904,Philip K. Dick,1184323811 +187843,45730,disappointing,1181151168 +187843,48394,fantasy,1181126854 +187843,48774,dystopia,1181133253 +187843,48774,sci-fi,1181133248 +187848,260,classic sci-fi,1443471686 +187848,260,space opera,1443471692 +187857,1,toy,1190926375 +187857,1,toys,1190667425 +187857,153,adapted from:comic,1190926625 +187857,153,sequel,1190926630 +187857,153,super-hero,1190926632 +187857,172,cyberpunk,1190926794 +187857,172,hackers,1190926796 +187857,172,Keanu Reeves,1190926799 +187857,172,memory,1190926795 +187857,172,Sci-Fi,1190926791 +187857,213,Russian,1190926407 +187857,231,Jim Carrey,1190926611 +187857,356,life in general,1190926301 +187857,364,Children,1190926241 +187857,364,father-son relationship,1190926259 +187857,364,lions,1190926239 +187857,367,animal:dog,1190926209 +187857,367,green,1190926207 +187857,380,seen more than once,1190926432 +187857,480,cloning,1190926596 +187857,480,dinosaurs,1190926600 +187857,589,nuclear war,1190926438 +187857,598,Russian,1190926369 +187857,736,disaster,1190926176 +187857,741,complex,1191358782 +187857,741,japan,1190926296 +187857,741,techno-evolution,1190926298 +187857,780,pretty sucky,1190926636 +187857,858,coppola,1190926276 +187857,858,guns,1190926274 +187857,1148,funny,1190926164 +187857,1148,Wallace & Gromit,1190926162 +187857,1196,scifi,1190926446 +187857,1221,classical,1190926267 +187857,1221,guns,1190926265 +187857,1232,based on a book,1190149693 +187857,1232,masterpiece,1190926188 +187857,1270,easygoing,1190926353 +187857,1385,nudity (topless - notable),1190926172 +187857,1681,adapted from:game,1190926538 +187857,1681,computer game,1190926536 +187857,1681,video game connection,1190926534 +187857,1884,bats,1191358986 +187857,1884,frantic,1191358968 +187857,1884,NIGHTMARE VACATIONS,1191358977 +187857,2011,sports almanac,1190926346 +187857,2012,si-fi,1190926336 +187857,2469,time travel,1195157551 +187857,2571,guns,1190926394 +187857,2571,Mr Anderson,1190926392 +187857,2916,very interesting,1190926384 +187857,2916,virtual reality,1190926381 +187857,3000,fantasy,1190926566 +187857,3176,matt damon,1190926181 +187857,3176,murder,1190926179 +187857,3357,Russian,1190926512 +187857,4973,beautifully filmed,1190926363 +187857,4973,romance,1190926361 +187857,4993,fantasy lands,1190926541 +187857,4993,seen at the cinema,1190926543 +187857,4993,way too long,1190926551 +187857,5418,france,1190926616 +187857,5418,matt damon,1190926618 +187857,5952,author:J. R. R. Tolkein,1190926653 +187857,5952,magic,1190926655 +187857,6542,Russian,1190926332 +187857,6792,Russian,1190926663 +187857,7090,martial arts,1190926476 +187857,7153,author:J. R. R. Tolkein,1190926591 +187857,7153,read book first,1190926584 +187857,7361,romance,1190926306 +187857,7460,Bill Murray,1191359037 +187857,7789,9/11,1191359114 +187857,7789,terrorism,1191359113 +187857,8014,great photograpy,1190926190 +187857,8025,Russian,1190926418 +187857,8154,MEMBERS OF THE PRESS,1190926323 +187857,26362,russian,1420958182 +187857,26362,soviet union,1420958182 +187857,26362,world war ii,1420958182 +187857,27660,anime,1190926412 +187857,27660,matrix,1190926410 +187857,27728,not as good as the first,1191358760 +187857,33004,dolphins,1190926468 +187857,33004,literature,1190926466 +187857,33004,sci-fi,1190926464 +187857,42734,big bad wolf,1191265673 +187857,42734,clever,1191265675 +187857,42734,computer animation,1191265669 +187857,42734,fairy tale,1191265670 +187857,42734,nonlinear,1191265665 +187857,42734,spoof,1191265667 +187857,42734,Tales,1191265663 +187857,45517,actually funny,1190926508 +187857,45517,instills good moral values,1190926500 +187857,45517,small town,1190926479 +187857,50872,paris,1190926202 +187857,50872,Pixar,1190667085 +187857,50872,Pixar animation,1190667085 +187857,50872,rats,1190926195 +187857,54259,fairy tale,1190926185 +187857,61646,Gay,1230381984 +187892,68157,World War II,1433612535 +187892,112552,motivation,1433614655 +187892,112552,music,1433614655 +187892,112552,peer pressure,1433614655 +187898,442,action groovy,1139415631 +187898,2273,action turbo,1139415607 +187899,115617,cute,1451755618 +187899,115617,Disney,1451755610 +187899,115617,friendship,1451755613 +187899,115617,inspiring,1451755624 +187918,215,holes90s,1342849999 +187918,293,holes90s,1342849862 +187918,306,holes90s,1342849839 +187918,319,holes90s,1342849790 +187918,364,holes90s,1342849955 +187918,541,afi,1182393913 +187918,588,holes90s,1342849969 +187918,599,dvd,1388422564 +187918,599,holes60s,1388820371 +187918,757,getdvd,1423201850 +187918,914,holes60s,1342850735 +187918,946,holes40s,1412348245 +187918,954,afi,1182393876 +187918,1153,tcm,1189187818 +187918,1172,holes80s,1342849456 +187918,1197,holes80s,1342849599 +187918,1209,holes60s,1351319934 +187918,1211,holes80s,1342849466 +187918,1232,sightsound,1343973832 +187918,1245,holes90s,1342849804 +187918,1260,tcm,1189187750 +187918,1272,holes70s,1342849087 +187918,1273,holes80s,1342849477 +187918,1281,holes40s,1412348178 +187918,1283,afi,1182394030 +187918,1283,hdtv,1199396362 +187918,1572,sightsound,1343973703 +187918,1935,getdvd,1402110052 +187918,1935,holes40s,1412348396 +187918,1942,holes40s,1412348211 +187918,1957,holes80s,1342849494 +187918,2028,afi,1182394053 +187918,2028,hdtv,1200784012 +187918,2028,holes90s,1342849945 +187918,2109,holes70s,1342849272 +187918,2178,holes70s,1342849166 +187918,2182,tcm,1412347392 +187918,2202,holes40s,1412348261 +187918,2330,holes90s,1342849749 +187918,2677,holes90s,1342849900 +187918,2730,getdvd,1350531508 +187918,2730,holes70s,1342849220 +187918,2857,holes60s,1342850705 +187918,2920,getdvd,1412348038 +187918,2920,holes40s,1412348038 +187918,2927,holes40s,1412348319 +187918,2936,afi,1182393939 +187918,2936,holes40s,1412348275 +187918,3022,afi,1182393819 +187918,3089,holes40s,1412348191 +187918,3111,holes80s,1342849685 +187918,3198,dvd,1353068038 +187918,3198,holes70s,1342849178 +187918,3246,holes90s,1342849768 +187918,3384,holes70s,1342849030 +187918,3415,sightsound,1343973557 +187918,3498,holes70s,1342849114 +187918,3629,afi,1182433856 +187918,3629,hdtv,1200784036 +187918,3632,holes40s,1412348295 +187918,3634,getdvd,1418986019 +187918,3634,holes60s,1418986015 +187918,3671,holes70s,1342849229 +187918,3679,holes80s,1342849435 +187918,3742,sightsound,1343973400 +187918,3789,holes60s,1342850721 +187918,3811,holes80s,1342849524 +187918,3947,holes70s,1431088744 +187918,4103,holes80s,1342849627 +187918,4262,holes80s,1342849544 +187918,4326,holes80s,1342849552 +187918,4327,holes60s,1342850801 +187918,4437,holes70s,1342849298 +187918,4712,holes70s,1342849242 +187918,4763,dvd,1425823551 +187918,4928,holes70s,1342849195 +187918,5169,tcm,1189187923 +187918,5198,holes80s,1342849514 +187918,5289,tcm,1189187738 +187918,5464,getdvd,1388209457 +187918,5464,holes00s,1342850481 +187918,5747,holes80s,1342849443 +187918,5791,holes00s,1342850231 +187918,5956,dvd,1259388129 +187918,6016,dvd,1353067981 +187918,6016,holes00s,1342850309 +187918,6229,holes70s,1342849313 +187918,6433,sightsound,1343973308 +187918,6515,tcm,1190475823 +187918,6643,sightsound,1343973230 +187918,6783,sightsound,1343973251 +187918,6830,tcm,1190475890 +187918,6874,holes00s,1342850598 +187918,6981,sightsound,1343973754 +187918,6983,holes40s,1412348440 +187918,6985,sightsound,1343973328 +187918,7195,tcm,1189187983 +187918,7243,afi,1182394001 +187918,7243,hdtv,1200784002 +187918,7335,tcm,1189187908 +187918,7438,holes00s,1342850493 +187918,7792,holes70s,1342849103 +187918,7926,getdvd,1412347952 +187918,8125,afi,1182393855 +187918,8128,holes80s,1342849418 +187918,8154,holes60s,1342850820 +187918,8195,sightsound,1343973620 +187918,8207,holes70s,1342849135 +187918,8236,tcm,1190475838 +187918,8494,dvd,1254390631 +187918,8645,holes00s,1342850358 +187918,8751,tcm,1189187687 +187918,8765,tcm,1189187626 +187918,8766,tcm,1189187878 +187918,8767,tcm,1189187947 +187918,25805,sightsound,1343973445 +187918,25927,holes40s,1412348360 +187918,25927,tcm,1189187934 +187918,26150,sightsound,1343973817 +187918,26151,sightsound,1343973505 +187918,26366,holes70s,1342849254 +187918,31770,tcm,1189187673 +187918,37741,toplist05,1378985294 +187918,38304,toplist05,1378985376 +187918,39183,toplist05,1334343486 +187918,40629,toplist05,1378985440 +187918,40819,toplist05,1378985328 +187918,41585,tcm,1189187574 +187918,41863,toplist06,1197165976 +187918,41997,hdtv,1200107294 +187918,41997,holes00s,1342850302 +187918,42217,sightsound,1343973482 +187918,44199,toplist06,1197165844 +187918,44555,toplist06,1235048573 +187918,45028,toplist06,1197165941 +187918,45210,toplist06,1198810519 +187918,46578,toplist06,1197165894 +187918,46664,holes40s,1412348651 +187918,46664,tcm,1412348651 +187918,46723,toplist06,1197165832 +187918,47099,toplist06,1197164385 +187918,47274,holes70s,1342849207 +187918,47423,toplist06,1197164296 +187918,47629,toplist06,1197165707 +187918,48394,hdtv,1200549984 +187918,48394,holes00s,1342850387 +187918,48516,toplist06,1197165676 +187918,48696,toplist06,1197165862 +187918,48738,toplist06,1197164312 +187918,48774,toplist06,1197165663 +187918,49824,toplist06,1197165695 +187918,49917,toplist06,1268555186 +187918,50068,holes00s,1342850218 +187918,51540,toplist07,1192323038 +187918,52241,toplist07,1197122754 +187918,52281,hdtv,1200875555 +187918,52281,holes00s,1342850259 +187918,52579,dvd,1282374314 +187918,52967,toplist07,1197313756 +187918,53000,toplist07,1198811122 +187918,53123,toplist07,1187738100 +187918,53894,toplist07,1197122145 +187918,54272,toplist07,1187738146 +187918,54286,toplist07,1197122822 +187918,54513,toplist07,1187737659 +187918,54881,toplist07,1268555304 +187918,55052,toplist07,1197122048 +187918,55063,toplist08,1228486494 +187918,55069,toplist07,1301765688 +187918,55118,toplist07,1197121987 +187918,55247,toplist07,1197121953 +187918,55253,dvd,1434385058 +187918,55253,toplist07,1268555286 +187918,55269,toplist07,1197122030 +187918,55276,toplist07,1195959915 +187918,55280,holes00s,1342850401 +187918,55363,getdvd,1412346850 +187918,55363,holes00s,1342850280 +187918,55442,holes00s,1342850172 +187918,55442,toplist07,1268555437 +187918,55820,toplist07,1197121965 +187918,56015,tcm,1412347417 +187918,56152,toplist07,1198811180 +187918,56286,toplist07,1268555500 +187918,56367,toplist07,1198968553 +187918,56607,toplist07,1200334592 +187918,56782,toplist07,1200334609 +187918,56788,toplist07,1201665448 +187918,56805,toplist07,1198968631 +187918,57669,toplist08,1250738298 +187918,58191,toplist08,1223243755 +187918,58879,toplist08,1207957343 +187918,60069,toplist08,1230814631 +187918,60766,toplist08,1223243682 +187918,61024,toplist08,1223243801 +187918,61236,holes00s,1342850181 +187918,61236,toplist08,1230870494 +187918,61240,holes00s,1342850379 +187918,61240,toplist08,1230814624 +187918,61323,toplist08,1223244145 +187918,61357,toplist08,1222269690 +187918,63082,toplist08,1228486518 +187918,63876,toplist08,1230814303 +187918,64614,toplist08,1250440712 +187918,64620,toplist08,1230814286 +187918,64622,toplist08,1230942216 +187918,64701,toplist08,1230869509 +187918,64839,toplist08,1236951337 +187918,66665,toplist09,1253860576 +187918,67087,toplist09,1259384470 +187918,67255,toplist10,1270485757 +187918,67429,toplist08,1238823068 +187918,67665,getdvd,1321564884 +187918,67665,toplist09,1250742907 +187918,67997,toplist09,1250742829 +187918,68157,toplist09,1253860562 +187918,68954,holes00s,1342850438 +187918,69481,toplist09,1250742859 +187918,70286,toplist09,1250742877 +187918,70293,toplist09,1253860588 +187918,71108,toplist09,1292047039 +187918,71464,toplist09,1259383811 +187918,71535,dvd,1388422608 +187918,71535,toplist09,1259383798 +187918,71745,toplist09,1259383809 +187918,72011,toplist09,1262145753 +187918,72131,toplist09,1257694906 +187918,72226,toplist09,1259383836 +187918,72395,toplist09,1262146022 +187918,72720,toplist09,1271429973 +187918,73023,toplist09,1267280510 +187918,74324,toplist10,1312868042 +187918,74458,toplist10,1276350948 +187918,74545,toplist10,1276350928 +187918,77455,getdvd,1446815214 +187918,77455,toplist10,1292077803 +187918,78039,toplist10,1296798992 +187918,78499,toplist10,1293381435 +187918,78574,toplist10,1281363877 +187918,78653,toplist09,1277386636 +187918,79132,toplist10,1279986154 +187918,79242,toplist10,1281363890 +187918,79592,getdvd,1340616854 +187918,80463,toplist10,1287199615 +187918,80489,toplist10,1294976085 +187918,81562,toplist10,1292077909 +187918,81591,toplist10,1296799009 +187918,81786,dvd,1388422494 +187918,81786,toplist11,1312868144 +187918,81845,toplist10,1296798962 +187918,81932,toplist10,1296799034 +187918,82459,toplist10,1296798978 +187918,82463,toplist10,1299563653 +187918,83976,toplist11,1328012694 +187918,85394,toplist11,1312868243 +187918,86320,toplist11,1317998755 +187918,86833,toplist11,1312868088 +187918,87304,toplist11,1312868078 +187918,88129,toplist11,1322848734 +187918,88235,toplist11,1322849030 +187918,88810,toplist11,1322894457 +187918,89260,toplist11,1329513993 +187918,89470,toplist11,1317998768 +187918,89492,toplist11,1317998745 +187918,89759,toplist11,1327491628 +187918,89804,toplist11,1322848784 +187918,90057,toplist11,1322848999 +187918,90376,toplist11,1327491698 +187918,90439,toplist11,1332487973 +187918,90531,toplist11,1327491714 +187918,90866,toplist11,1327491687 +187918,91077,toplist11,1322848957 +187918,94931,toplist12,1355599327 +187918,94959,toplist12,1342275142 +187918,94969,getdvd,1409381147 +187918,95135,toplist12,1354966882 +187918,95449,toplist12,1356967567 +187918,95558,toplist12,1348198533 +187918,95761,dvd,1387360646 +187918,96417,dvd,1367718836 +187918,96567,dvd,1367718875 +187918,96588,toplist12,1355599298 +187918,96610,dvd,1361888026 +187918,96610,toplist12,1354966811 +187918,96728,toplist12,1355599008 +187918,96811,toplist12,1356623017 +187918,96832,dvd,1369217683 +187918,96832,toplist12,1356409181 +187918,97304,toplist12,1353063038 +187918,97673,toplist13,1383626018 +187918,97752,toplist12,1354966835 +187918,97921,toplist12,1354966859 +187918,97923,toplist12,1356623118 +187918,97938,toplist12,1354966894 +187918,98154,toplist12,1354966827 +187918,98961,toplist12,1355938883 +187918,99114,toplist12,1357543606 +187918,99145,dvd,1370674493 +187918,99149,toplist12,1356273884 +187918,101285,getdvd,1386729453 +187918,101525,toplist12,1386245688 +187918,101895,toplist13,1383626036 +187918,102194,toplist13,1386658060 +187918,102469,getdvd,1387083948 +187918,103107,toplist13,1396017727 +187918,103372,toplist13,1383625950 +187918,103449,dvd,1378132522 +187918,103624,toplist13,1388209512 +187918,105197,toplist13,1386657913 +187918,105355,toplist13,1397129838 +187918,105504,toplist13,1386245656 +187918,106100,toplist13,1389766232 +187918,106487,getdvd,1412346324 +187918,106766,toplist13,1386658220 +187918,106916,toplist13,1386657846 +187918,106920,toplist13,1386657798 +187918,107141,toplist13,1386946018 +187918,107406,getdvd,1412347012 +187918,107771,getdvd,1423194182 +187918,107771,toplist14,1446284249 +187918,109374,toplist14,1402760218 +187918,110387,getdvd,1397129699 +187918,110871,getdvd,1399051398 +187918,111249,getdvd,1423194272 +187918,111251,dvd,1410947141 +187918,111251,toplist14,1446283752 +187918,111505,getdvd,1400501925 +187918,111622,toplist14,1420131617 +187918,112070,getdvd,1450365122 +187918,112183,toplist14,1416281804 +187918,112290,toplist14,1411137921 +187918,112515,getdvd,1423194952 +187918,112515,toplist14,1418485385 +187918,112550,getdvd,1450365140 +187918,112552,toplist14,1417010184 +187918,112556,toplist14,1412347244 +187918,112653,getdvd,1423194497 +187918,112850,dvd,1410946974 +187918,112852,toplist14,1407510485 +187918,113064,getdvd,1423194143 +187918,114254,getdvd,1450365156 +187918,114342,toplist14,1417010271 +187918,114459,getdvd,1412474417 +187918,114662,toplist14,1423131235 +187918,115139,tcm,1413426713 +187918,115569,toplist14,1431187332 +187918,115713,toplist15,1446211131 +187918,116161,toplist14,1417010500 +187918,116797,toplist14,1425780053 +187918,117176,toplist14,1417010208 +187918,117533,getdvd,1446815098 +187918,117533,toplist14,1417010466 +187918,118700,getdvd,1446815138 +187918,118700,toplist14,1423224182 +187918,118880,getdvd,1449757705 +187918,118880,toplist14,1449757002 +187918,118896,getdvd,1423195759 +187918,118896,toplist14,1446283421 +187918,118997,dvd,1425780284 +187918,122882,toplist15,1449755519 +187918,127108,toplist15,1449756138 +187918,127114,dvd,1453385417 +187918,127114,toplist15,1449756046 +187918,127208,toplist15,1449755952 +187918,128360,bkk,1450364599 +187918,128360,toplist15,1449755822 +187918,132800,toplist15,1449755992 +187918,133645,bkk,1452756852 +187918,133645,toplist15,1449754606 +187918,134130,toplist15,1446210938 +187918,134853,toplist15,1446211185 +187918,134859,toplist15,1449755731 +187918,134881,toplist15,1446283359 +187918,136562,bkk,1450364868 +187918,137337,toplist15,1446211164 +187918,139385,bkk,1450364902 +187918,139385,toplist15,1449755171 +187918,139644,toplist15,1446211258 +187918,140174,bkk,1452756737 +187918,140174,toplist15,1446211303 +187918,140291,bkk,1450364754 +187918,140928,bkk,1450364834 +187918,140928,toplist15,1449755683 +187918,141749,bkk,1450365023 +187918,142488,toplist15,1449754627 +187918,143385,toplist15,1446211337 +187918,143462,bkk,1452178168 +187918,145150,bkk,1452178015 +187918,145418,toplist15,1449756404 +187918,146656,toplist15,1449755899 +187918,148626,bkk,1450364660 +187918,148626,toplist15,1449755637 +187923,52281,grindhouse,1431799976 +187923,117851,humorous,1420269510 +187923,117851,series:madagascar,1420269510 +187923,117851,the north wind,1420269510 +187923,120625,crime,1420316528 +187923,120625,russia,1420316524 +187923,122882,chase,1431800292 +187923,122882,desert,1431800279 +187923,122882,feminism,1431800303 +187923,122882,mad max,1431800180 +187923,122882,post apocalypse,1431800177 +187923,122882,warlord,1431800351 +187923,122882,wasteland,1431800223 +187933,1354,Top 100,1139892930 +187933,5008,Agatha Christie,1181014839 +187933,7840,AFI 100 (Cheers),1205295160 +187933,33660,ripe with cliches,1139937485 +187933,50068,Oscar Nom 2007,1169790958 +187933,51077,Comic Book,1173030301 +187972,471,Coen Brothers,1392796514 +187972,471,Fantasy,1392796520 +187972,608,witty,1392796555 +187972,1653,sci-fi,1392795810 +187972,1653,visually appealing,1392795799 +187972,2997,Charlie Kaufman,1392796455 +187972,2997,surrealism,1392796459 +187972,3006,intelligent,1392797281 +187972,3006,Michael Mann,1392797276 +187972,4848,Atmospheric,1392796003 +187972,4878,thought-provoking,1392795905 +187972,4975,dumb ending,1392795962 +187972,4975,surreal,1392795933 +187972,5388,moral ambiguity,1392797928 +187972,5388,thought-provoking,1392797921 +187972,5673,bittersweet,1392796444 +187972,34319,predictable,1392796280 +187972,52328,dumb ending,1392795773 +187972,52328,physics,1392795790 +187972,52328,plot holes,1392795760 +187972,52328,psychology,1392795763 +187972,55805,acting,1392797233 +187972,55805,Philip Seymour Hoffman,1392797236 +187972,56782,visually appealing,1392796624 +187972,71211,awkward,1392797611 +187972,71211,character study,1392797616 +187972,71211,offbeat,1392797621 +187972,94864,inane,1392795750 +187972,94864,predictable,1392795725 +187972,96728,Amy Adams,1392796426 +187972,96728,beautiful,1392796415 +187972,96728,Character study,1392796417 +187972,96728,confusing,1392796413 +187972,96728,Paul Thomas Anderson,1392796421 +187972,96728,Philip Seymour Hoffman,1392796428 +187972,96728,underwhelming ending,1392796410 +187972,104879,acting,1392797947 +187972,104879,bad ending,1392797960 +187983,260,Fantasy,1439787031 +187983,260,magic,1439787074 +187983,260,sci-fi,1439787052 +187983,260,space,1439787061 +187983,260,sword fight,1439787037 +187989,260,father-son relationship,1437973906 +187989,260,Science Fiction,1437973848 +187989,318,crime,1437974315 +187989,858,classic,1437974263 +187989,858,violence,1437974238 +187989,2858,drugs,1437974061 +187989,2858,violence,1437974079 +187989,109487,interesting ideea,1437974181 +187989,109487,relativity,1437974170 +187989,109487,space,1437974164 +187990,260,adventure,1440584537 +187990,260,sci-fi,1440584476 +187991,260,sci-fi,1440978683 +187991,260,space adventure,1440978698 +187995,480,velocoraptors,1147279862 +187995,1101,military,1147279814 +188011,356,charming,1436899503 +188011,356,shrimp,1436899503 +188011,356,vietnam war,1436899503 +188025,125,Screwball Comedy,1182388778 +188025,233,see twice,1200537952 +188025,4641,Do zassania,1167823124 +188025,39183,gay,1138753351 +188025,44665,twist,1169332846 +188025,47950,Potential Oscar Nom,1185649138 +188025,48394,foreign,1172927072 +188025,49278,Denzel Washington,1177879333 +188025,49278,time travel,1177879361 +188025,51080,FBI,1182388587 +188025,51080,ominous,1182388552 +188025,51080,spying,1182388538 +188025,51080,Washington DC,1182388588 +188025,51255,british comedy,1210435963 +188025,51255,surreal violence,1210435986 +188025,53318,surrealism,1204425443 +188025,54259,fairy tale,1190253741 +188025,55118,russian mafia,1204422865 +188025,55555,death,1250734546 +188025,55555,ensemble cast,1250734519 +188025,55555,interwoven lives,1250734467 +188025,55555,lesbian character,1250734534 +188025,55555,local flavor,1250734495 +188025,55555,turkish music,1250734537 +188025,57640,not as good as the first,1215902952 +188025,64620,boring beginning,1243035511 +188025,64620,Frank Langella,1243035507 +188025,66097,unsympathetic hero,1251663972 +188025,68358,adventure,1243035415 +188025,68358,big budget,1243035419 +188025,68358,childish,1243035451 +188025,70286,afrikaner mercenaries getting killed,1250734313 +188025,70286,aliens,1250734326 +188025,70286,humor,1250734334 +188025,70286,intelligent sci-fi,1250734320 +188025,70286,redemption,1250734225 +188025,70286,Special Effects,1250734350 +188025,70286,transformation,1250734267 +188025,70286,weapons,1250734383 +188025,70293,affected,1262262863 +188025,70293,Meryl Streep,1262262846 +188025,70293,music score,1262262909 +188025,72998,incredible 3D,1262263030 +188025,72998,informatics,1262263023 +188025,73321,plot holes,1263818432 +188046,260,good vs evil,1444483171 +188046,260,Science Fiction,1444483151 +188046,260,supernatural powers,1444483190 +188046,111913,Queer,1444491018 +188057,2905,Akira Kurosawa,1318344034 +188057,2905,humorous,1318344034 +188057,2905,sword fighting,1318344034 +188060,1266,Clint Eastwood,1144998907 +188063,111360,Scarlett Johansson,1435648997 +188063,111360,sci-fi,1435648977 +188063,132046,sci-fi,1435649104 +188063,136359,comedy,1435649161 +188063,136359,comic book,1435649161 +188063,136359,kids,1435649161 +188083,198,not seen,1186124734 +188083,246,basketball,1186124589 +188083,261,ok,1186124729 +188083,471,no idea,1186124598 +188083,628,scary,1186124606 +188083,852,didn't see,1186124633 +188083,1088,not very good,1186124708 +188083,1242,civil war,1186124575 +188083,1302,baseball,1186124567 +188083,1377,batman,1186124558 +188083,1597,mystery,1186124678 +188083,1690,cool,1186124643 +188083,1729,boring,1186124714 +188083,1747,not seen,1186124739 +188083,1748,not seen,1186124694 +188083,3081,scary movie,1186124614 +188083,4246,diary,1186124664 +188083,4896,harry potter,1186124582 +188083,5378,not as good as the originals,1186124622 +188083,7438,too violent,1186124720 +188089,296,amazing dialogues,1440893942 +188089,1227,Ennio Morricone,1440893842 +188089,1227,epic,1440893880 +188089,1227,Sergio Leone,1440893838 +188089,1227,superb soundtrack,1440893862 +188089,1230,witty,1440893895 +188089,2691,ennio morricone,1440893815 +188089,2691,great soundtrack,1440893811 +188089,117533,thought provoking,1440894029 +188095,1244,new york city,1452465197 +188095,1244,Woody Allen,1452465187 +188095,2011,sci-fi,1452466774 +188102,260,"action, adventure",1434150502 +188105,5418,action,1429964405 +188105,5418,Robert Ludlum,1429964412 +188105,5418,spy,1429964409 +188114,1097,family,1141710000 +188138,589,Arnold Schwarzenegger,1417428491 +188138,589,time travel,1417428512 +188138,589,violence,1417428503 +188138,1035,classic,1417428536 +188138,1035,musical,1417428559 +188138,1035,Nazis,1417428550 +188138,1035,Oscar (Best Directing),1417428563 +188138,1035,World War II,1417428554 +188138,1270,alternate reality,1417428825 +188138,1270,comedy,1417428822 +188138,1270,Steven Spielberg,1417428829 +188138,1270,time travel,1417428816 +188138,1947,racism,1417428603 +188138,4306,Funny,1417428981 +188138,4993,tolkien,1417428932 +188138,5952,ensemble cast,1417429017 +188138,5952,mythology,1417429021 +188138,5952,tolkien,1417429002 +188138,94864,intense,1417428707 +188138,94864,predictable,1417428715 +188138,104841,acting,1417428768 +188138,104841,beautiful,1417428762 +188138,104841,intense,1417428758 +188138,104841,physics,1417428748 +188138,104841,suspense,1417428755 +188154,260,fantasy,1432113611 +188154,260,sci-fi,1432113602 +188188,908,PUA,1153186265 +188188,1265,PUA,1153186019 +188188,2502,hypnosis,1172145246 +188188,2502,PUA,1172145247 +188188,2502,slacking,1172145247 +188188,2502,working sucks,1172145247 +188188,2959,PUA,1153186177 +188188,3761,gangs,1153186118 +188188,3761,prison,1153186137 +188188,4306,overrated,1185026907 +188188,5690,slice of life,1153186006 +188188,8360,overrated,1185026922 +188188,8914,time travel,1170533037 +188188,31658,animation,1170531813 +188188,31658,anime,1170531813 +188188,31658,fantasy,1170531813 +188188,31658,magic,1170531813 +188188,31685,PUA,1153186477 +188188,34048,overrated,1185026940 +188188,35836,PUA,1153186287 +188188,37741,annoying,1170532634 +188188,37741,boring,1170532634 +188188,37741,crap,1170532634 +188188,37741,overrated,1170532634 +188188,37741,slow,1170532634 +188188,37741,worst movie ever,1170532634 +188188,41566,based on book,1185026846 +188188,41566,overrated,1185026814 +188188,45672,PUA,1166310477 +188188,46976,PUA,1171710327 +188188,47423,boring,1170532736 +188188,47423,crap,1170532736 +188188,47423,overrated,1170532736 +188188,48385,overrated,1185051984 +188188,48394,fantasy,1169331175 +188188,48394,surreal,1169331175 +188188,48394,violence,1169331175 +188188,48416,PUA,1170449068 +188188,53999,Bad copy of saw,1184447508 +188188,53999,Stupid people,1184447527 +188209,10,james bond,1137302543 +188209,349,jack ryan,1137302340 +188209,370,parody,1199334348 +188209,466,parody,1199334341 +188209,520,parody,1199334355 +188209,742,stephen king,1137303160 +188209,743,parody,1199334022 +188209,968,zombie,1137302374 +188209,1136,imdb top 250,1199334208 +188209,1136,Monty Python,1199334270 +188209,1136,parody,1199334289 +188209,1215,zombie,1137301954 +188209,1241,zombie,1137301966 +188209,1258,stephen king,1137302385 +188209,1261,zombie,1137301973 +188209,1339,vampire,1137302890 +188209,1345,stephen king,1137302702 +188209,1517,parody,1199333800 +188209,1580,alien,1208475880 +188209,1610,jack ryan,1137302590 +188209,1722,james bond,1137302912 +188209,1924,cheesy,1137302459 +188209,1924,zombie,1137302044 +188209,2118,stephen king,1137302809 +188209,2119,stephen king,1137302450 +188209,2148,cheesy,1137302445 +188209,2149,cheesy,1137303186 +188209,2167,vampire,1137302634 +188209,2376,james bond,1137302320 +188209,2513,stephen king,1137302464 +188209,2517,stephen king,1137302646 +188209,2617,mummy,1137304424 +188209,2633,mummy,1137304415 +188209,2634,mummy,1137304418 +188209,2635,mummy,1137304403 +188209,2636,mummy,1137304406 +188209,2637,mummy,1137304410 +188209,2638,mummy,1137304412 +188209,2683,parody,1199334068 +188209,2770,parody,1199333984 +188209,2787,stephen king,1137302275 +188209,2867,cheesy,1137302440 +188209,2867,vampire,1137302759 +188209,2868,cheesy,1137304058 +188209,2868,vampire,1137304058 +188209,2947,james bond,1137303766 +188209,2948,james bond,1199333588 +188209,2949,james bond,1137303763 +188209,2989,james bond,1137302659 +188209,2990,james bond,1137303681 +188209,2991,james bond,1137303630 +188209,2993,James Bond,1199333663 +188209,3082,james bond,1137302324 +188209,3256,jack ryan,1137303011 +188209,3264,vampire,1137302973 +188209,3499,stephen king,1137302995 +188209,3633,James Bond,1199333915 +188209,3635,james bond,1137303641 +188209,3638,james bond,1137303614 +188209,3639,james bond,1137303634 +188209,3698,stephen king,1137303030 +188209,3785,parody,1199334327 +188209,3984,james bond,1137303791 +188209,4005,james bond,1137303118 +188209,4105,zombie,1137302081 +188209,4270,mummy,1137304396 +188209,4388,parody,1199334359 +188209,4532,zombie,1137305032 +188209,4533,zombie,1137304620 +188209,4734,parody,1199333845 +188209,4767,mummy,1137304429 +188209,4815,stephen king,1137303354 +188209,5160,zombie,1137304971 +188209,5165,zombie,1137304775 +188209,5195,zombie,1137304794 +188209,5210,zombie,1137304599 +188209,5219,zombie,1137302131 +188209,5254,vampire,1137304001 +188209,5313,mummy,1137304443 +188209,5400,jack ryan,1137303532 +188209,5413,zombie,1137304780 +188209,5481,parody,1199334380 +188209,5541,parody,1199334387 +188209,5542,zombie,1137304997 +188209,5774,zombie,1137304980 +188209,5796,james bond,1199333755 +188209,5872,james bond,1137303051 +188209,6550,parody,1199333991 +188209,6731,zombie,1137302077 +188209,6754,vampire,1137302800 +188209,6754,werewolf,1140403941 +188209,6755,mummy,1137304461 +188209,6888,parody,1199334363 +188209,7360,zombie,1137302074 +188209,7569,james bond,1137303757 +188209,7570,james bond,1137303127 +188209,7573,james bond,1137303742 +188209,8225,zombie,1137302097 +188209,8578,zombie,1137304858 +188209,8859,imdb bottom 100,1199333777 +188209,8874,parody,1199334333 +188209,8874,zombie,1137302105 +188209,8985,vampire,1137303047 +188209,33834,zombie,1137302092 +188209,42738,vampire,1140403923 +188209,42738,werewolf,1140403934 +188209,44972,parody,1199334403 +188209,49272,james bond,1199333533 +188210,1396,hacking,1160449570 +188210,1396,phreaking,1160449560 +188210,3819,ramen,1160449747 +188212,116797,Alan Turing,1446150592 +188212,116797,cryptography,1446150594 +188212,116797,history,1446150603 +188212,116797,mathematics,1446150600 +188224,31522,Original,1447189870 +188227,148238,Bill Murray,1450184756 +188228,185,internet,1147014946 +188228,2116,Tolkien,1147014889 +188250,260,"Cheesy space opera, classic",1437880551 +188250,260,sci-fi,1437880538 +188250,260,space adventure,1437880593 +188254,39,Comedy,1282079982 +188254,2572,actually funny,1282079933 +188254,2572,comedy,1282079956 +188254,2572,Heath Ledger,1282079926 +188254,2572,high school,1282079944 +188254,2572,Joseph Gordon-Levitt,1282079923 +188254,2572,Julia Stiles,1282079928 +188254,2572,romance,1282079941 +188254,2572,shakespeare,1282079949 +188254,2572,Teen movie,1282079947 +188254,7451,Lindsay Lohan,1282080012 +188254,7451,suprisingly clever,1282080016 +188254,7451,Tina Fey,1282080014 +188254,39183,Heath Ledger,1282080762 +188254,39183,Love story,1282080767 +188254,39183,melancholy,1282080771 +188254,78469,bad science,1282079813 +188254,78469,Funny,1282079799 +188254,78469,good casting,1282079832 +188254,78469,not only for fans of the original,1282079822 +188268,919,brilliant,1316995752 +188268,919,Classic,1316995734 +188268,919,fantasy,1316995746 +188268,2942,Music,1316995788 +188268,2942,Pittsburgh,1316995798 +188268,6042,Candid,1316995513 +188268,6042,Educational,1316995508 +188268,6042,Historical,1316995521 +188268,6042,Interview technique,1316995532 +188268,6042,Revealing,1316995501 +188268,56563,Educational,1316995149 +188268,56563,eye opening,1316995163 +188268,74789,beautiful,1316995670 +188268,74789,cinematography,1316995695 +188268,74789,Creative,1316995644 +188268,74789,Fantasy,1316995679 +188268,74789,inspiring,1316995658 +188268,74946,Pittsburgh,1316995814 +188268,86882,Brilliant,1316995932 +188268,86882,cinematography,1316995940 +188268,86882,dialogue,1316995975 +188268,86882,Paris,1316995943 +188268,86882,Soundtrack,1316995957 +188268,86882,Woody Allen,1316995983 +188268,89492,Educational,1316996139 +188268,89492,Entertaining,1316996148 +188268,89492,must see,1316996207 +188268,89492,Realistic,1316996160 +188312,260,Science Fiction,1441986853 +188328,125914,mystery,1451765726 +188328,125914,tension,1451765745 +188331,109487,future dystopias,1437131068 +188331,109487,global warming,1437131068 +188331,109487,science fiction,1437131068 +188347,111375,elizabeth banks,1426383552 +188347,111375,fresh,1426383552 +188347,111375,funny,1426383552 +188347,111375,james marsden,1426383552 +188392,54780,nanny,1210351323 +188397,7360,gory fun,1245697964 +188397,7360,remake,1245697982 +188397,7360,zombies,1245697973 +188403,1228,De Niro,1253622248 +188403,1228,Scorsese,1253622248 +188403,5446,depressing,1253622327 +188404,608,Coen Brothers,1147269849 +188425,8874,Get this,1139296271 +188433,1193,jack nicholson,1453994792 +188433,44195,dark comedy,1453994906 +188433,44195,politics,1453994903 +188433,44195,satire,1453994894 +188433,48738,based on a true story,1453994991 +188433,48738,Forest Whitaker,1453994982 +188440,662,Mark Walberg,1210800293 +188442,260,classic,1439775109 +188442,260,sci-fi,1439775046 +188442,2764,alpha,1439775232 +188442,2764,classy,1439775234 +188442,2764,rich,1439775238 +188442,61240,dark,1439775206 +188442,61240,romantic,1439775204 +188442,61240,somber,1439775193 +188442,88129,alpha,1439775267 +188442,88129,fit,1439775265 +188442,88129,stolid,1439775261 +188442,88129,violent,1439775270 +188455,260,jedi,1420898669 +188455,260,sith,1420898669 +188455,260,space,1420898669 +188506,3176,Gwyneth Paltrow,1293320719 +188506,3176,Jude Law,1293320721 +188506,3176,Matt Damon,1293320724 +188506,3176,Philip Seymour Hoffman,1293320731 +188506,3176,psychology,1293320729 +188506,3176,serial killer,1293320726 +188506,3915,boxing,1293320876 +188506,3915,girls,1293320879 +188506,3915,Michelle Rodriguez,1293320882 +188506,8638,Ethan Hawke,1293320537 +188506,8638,Julie Delpy,1293320540 +188506,8638,Paris,1293320542 +188506,8638,romantic,1293320546 +188506,8638,sequel,1293320550 +188506,8638,Verbose,1293320553 +188506,30812,biography,1293320123 +188506,30812,Leonardo DiCaprio,1293320126 +188506,30812,Martin Scorsese,1293320128 +188506,30812,true story,1293320131 +188506,50912,French,1293320322 +188506,50912,Natalie Portman,1293320370 +188506,50912,Paris,1293320375 +188506,54796,Adam Goldberg,1294584116 +188506,54796,Julie Delpy,1294584112 +188506,54796,setting:Paris,1294584120 +188506,63062,angelina jolie,1293321640 +188506,63062,Angelina Jolie's lips,1293321649 +188506,63062,based on a true story,1293321643 +188506,63062,John Malkovich,1293321652 +188506,72731,Mark Wahlberg,1293322338 +188506,72731,Rachel Weisz,1293322340 +188506,72731,Stanley Tucci,1293322343 +188506,72731,Susan Sarandon,1293322346 +188506,79132,dreamlike,1293319637 +188506,79132,Leonardo DiCaprio,1293319641 +188506,79702,based on a comic,1293319755 +188506,79702,editor,1293319750 +188506,80463,David Fincher,1293320657 +188506,80463,Jesse Eisenberg,1293320646 +188506,80463,protagonist is a computer programmer,1293320666 +188506,80463,social network,1293320648 +188506,80463,true story,1293320653 +188506,81456,french,1293322077 +188506,81456,love triangles,1293322087 +188506,81456,Xavier Dolan,1293322091 +188506,81562,James Franco,1294582867 +188506,81562,true story,1294582895 +188511,356,feel-good,1427901939 +188511,356,honest,1427901939 +188511,356,touching,1427901939 +188525,1339,ending,1309279047 +188525,1339,plot twist,1309279047 +188525,1339,violence in america,1309279047 +188544,904,noir thriller,1154917734 +188544,5349,if you are in the mood to vomit,1154917688 +188549,1028,comedy of manners,1243454358 +188549,1028,Disney,1243454364 +188549,1028,Disney studios,1243454367 +188549,1028,Julie Andrews,1243454386 +188549,1028,multiple roles,1243454371 +188549,1028,musical,1243454374 +188549,1028,villain nonexistent or not needed for good story,1243454382 +188549,1088,80's classic,1243454483 +188549,1088,dance,1243454500 +188549,1088,girlie movie,1243454518 +188549,1088,music,1243454488 +188549,1088,musical parodies,1243454503 +188549,1088,rich families,1243454508 +188549,1258,disturbing,1243454832 +188549,1258,Nudity (Full Frontal - Notable),1243454840 +188549,1258,Nudity (Full Frontal),1243454842 +188549,1258,psychological,1243454846 +188549,1258,violent,1243454848 +188549,1997,demons,1243454875 +188549,1997,horror,1243454878 +188549,1997,possession,1243454880 +188549,1997,scary,1243454882 +188549,2942,dance,1243454447 +188549,2942,girlie movie,1243454450 +188549,2942,Nudity (Topless),1243454452 +188549,2942,strippers,1243454454 +188549,4973,comedy,1243510202 +188549,4973,drama,1243510204 +188549,4973,notable soundtrack,1243510209 +188549,4973,quirky,1243510212 +188549,6218,football,1243509668 +188549,6218,Funny,1243509674 +188549,6218,Keira Knightley,1243509670 +188549,6218,love,1243509684 +188549,6863,funny,1243454300 +188549,6863,Jack Black,1243454312 +188549,6863,music,1243454317 +188549,6863,not only for kids,1243454321 +188549,6863,Rock,1243454333 +188549,6863,rock and roll,1243454326 +188549,6942,british,1243454933 +188549,6942,christmas,1243454936 +188549,6942,ensemble cast,1243454939 +188549,6942,Keira Knightley,1243454943 +188549,6942,love,1243454946 +188549,6942,multiple storylines,1243454948 +188549,6942,Nudity (Topless - Notable),1243454950 +188549,6942,Nudity (Topless),1243454952 +188549,6942,Romance,1243454954 +188549,8533,covers a lifespan,1243455160 +188549,8533,memories,1243455166 +188549,35836,comedy,1243454586 +188549,35836,crude,1243454590 +188549,35836,funny,1243454588 +188549,35836,nerds,1243454598 +188549,35836,Nudity (Topless - Notable),1243454603 +188549,35836,Nudity (Topless),1243454610 +188549,35836,sex,1243454608 +188549,45720,fashion,1243454978 +188549,45720,New York,1243454980 +188549,45720,Paris,1243454982 +188549,45720,Streep strong & funny,1243454985 +188549,59725,fashion,1243455007 +188549,59725,New York City,1243455012 +188549,59725,Nudity (Topless),1243455014 +188549,59725,R:strong sexual content,1243455020 +188549,59725,romance,1243455018 +188549,63131,funny,1243509641 +188549,63131,obvious plot,1243509645 +188549,63992,romance,1243455092 +188549,63992,Teen movie,1243455095 +188549,63992,vampires,1243455099 +188549,64957,Brad Pitt,1243455053 +188549,64957,cinematography,1243455057 +188549,64957,drama,1243455060 +188549,64969,easily confused with other movie(s) (title),1243454548 +188549,64969,funny,1243454556 +188549,64969,Jim carrey,1243454553 +188549,64969,Zooey Deschanel,1243454561 +188558,260,action,1438019303 +188558,260,battle,1438019319 +188558,260,sci-fi,1438019298 +188558,260,space adventure,1438019306 +188584,260,robots,1437894293 +188584,260,Science Fiction,1437894348 +188584,527,classic,1437895010 +188584,527,World War II,1437895015 +188584,2324,Heartwarming,1437894930 +188584,2324,tearjerking,1437894982 +188584,2324,war,1437894994 +188612,368,Mel Gibson,1151388179 +188612,368,western,1151388174 +188612,442,action,1151388289 +188612,442,action groovy,1151388324 +188612,442,Can't remember,1151388332 +188612,442,dystopia,1151388270 +188612,442,Futuristmovies.com,1151388344 +188612,442,hilarious,1151388347 +188612,442,Marco Brambilla,1151388339 +188612,442,On TV all the time,1151388319 +188612,442,Owned,1151388279 +188612,442,Sylvester Stallone,1151388272 +188612,442,Wesley Snipes,1151388258 +188621,50,conspiracy,1440103149 +188621,50,suspense,1440103136 +188621,50,thriller,1440103134 +188621,50,twist ending,1440103131 +188621,296,Quentin Tarantino,1440102145 +188621,296,Samuel L. Jackson,1440102138 +188621,4973,beautifully filmed,1440102984 +188621,4973,feel-good,1440102991 +188621,4973,inspirational,1440102943 +188621,4973,quirky,1440102924 +188621,4973,whimsical,1440102969 +188621,92259,based on a true story,1440103041 +188621,92259,feel good movie,1440103038 +188621,92259,friendship,1440103027 +188621,92259,funny,1440103032 +188621,92259,touching,1440103049 +188655,260,entertaining,1434456103 +188655,260,great soundtrack,1434456120 +188678,44665,Bruce Willis,1165864797 +188689,44,fatality,1260392797 +188689,47,Morgan Freeman,1272007777 +188689,47,powerful ending,1272007789 +188689,47,Saturn Award (Best Writing),1272007791 +188689,47,serial killer,1272007780 +188689,47,twist ending,1272007783 +188689,70,Danny Trejo,1260392704 +188689,70,twist ending,1260392668 +188689,70,vampire,1260392665 +188689,70,vampires,1260392664 +188689,70,violence,1260392667 +188689,110,british,1282022752 +188689,110,classic,1282022755 +188689,170,computers,1276450777 +188689,170,hacker,1276450778 +188689,170,hackers,1276450788 +188689,170,hacking,1276450791 +188689,170,inaccurate,1276450795 +188689,296,assassin,1260392857 +188689,296,Black comedy,1260392848 +188689,296,dark comedy,1260392854 +188689,296,drugs,1260392859 +188689,296,multiple storylines,1260392863 +188689,296,violence,1260392865 +188689,318,based on a book,1273243351 +188689,318,Morgan Freeman,1273243353 +188689,318,Stephen King,1273243358 +188689,318,thought-provoking,1273243360 +188689,318,twist ending,1273243362 +188689,393,fighting,1274128003 +188689,393,Jean-Claude Van Damme,1274128001 +188689,393,nostalgic,1274128006 +188689,393,video game,1274128008 +188689,393,video game adaptation,1274128010 +188689,589,apocalypse,1278862732 +188689,589,artificial intelligence,1278862734 +188689,589,assassin,1278862738 +188689,589,child hero,1278862729 +188689,589,computers,1278862743 +188689,589,dystopia,1278862736 +188689,589,nuclear war,1278862745 +188689,589,paradox,1278862729 +188689,593,based on a book,1272007744 +188689,593,based on book,1272007741 +188689,593,disturbing,1272007732 +188689,593,gothic,1272007737 +188689,593,psychology,1272007723 +188689,593,serial killer,1272007720 +188689,742,Curse,1273243501 +188689,742,Gipsy,1273243490 +188689,1198,adventure,1251629313 +188689,1213,good dialogue,1289291773 +188689,1213,mafia,1289291770 +188689,1213,organized crime,1289291762 +188689,1213,Robert De Niro,1289291764 +188689,1213,violence,1289291767 +188689,1215,black comedy,1260380147 +188689,1215,chainsaw,1260380166 +188689,1215,dark humor,1260380162 +188689,1215,shotgun,1260380170 +188689,1215,time travel,1260380142 +188689,1215,zombie,1260380117 +188689,1223,british comedy,1283110878 +188689,1223,rats,1283110884 +188689,1240,artificial intelligence,1278854392 +188689,1240,assassin,1278854390 +188689,1240,cyborgs,1278854387 +188689,1240,Paradox,1278854384 +188689,1240,terrorism,1278854396 +188689,1348,imdb top 250,1277997349 +188689,1348,vampires,1251629462 +188689,1645,Al Pacino,1282332320 +188689,1645,antichrist,1282332324 +188689,1645,demons,1282332327 +188689,1645,devil,1282332337 +188689,1645,lucifer,1282332340 +188689,1645,occult,1282332343 +188689,1645,satan,1282332342 +188689,1754,Demon,1285099739 +188689,1754,Epic Ending,1285099763 +188689,1754,Fallen Angel,1285099745 +188689,1754,John Goodman,1285099733 +188689,1754,smoking,1285099752 +188689,1799,black comedy,1282858263 +188689,1799,Christopher Walken,1282858262 +188689,1799,twist ending,1282858267 +188689,2413,adapted from:game,1273332263 +188689,2413,Based on Boardgame,1273332296 +188689,2413,Christopher Lloyd,1273332261 +188689,2502,Jennifer Aniston,1260392876 +188689,2912,OUT FOR REVENGE,1273512936 +188689,2912,unusual editing,1273512944 +188689,3761,Danny Trejo,1284187372 +188689,3761,gangs,1284187262 +188689,3761,mexians,1284187279 +188689,3761,Murder,1284187343 +188689,3761,prison,1284187264 +188689,3761,violence,1284187268 +188689,3857,child,1276969456 +188689,3857,child murder,1276969443 +188689,3857,demons,1276969443 +188689,3857,gang,1276969453 +188689,3857,heroine,1276969452 +188689,3857,Jimmy Smits,1276969371 +188689,3857,lucifer,1276969443 +188689,3857,religion,1276969447 +188689,3857,satanism,1276969443 +188689,3857,serial killer,1276969443 +188689,4102,Eddie Murphy,1273173574 +188689,4102,hilarious,1273173577 +188689,4102,homophobic,1273173579 +188689,4102,Stand Up,1273173584 +188689,4102,stand-up comedy,1273173588 +188689,4148,Anthony Hopkins,1272096071 +188689,4148,based on a book,1272096075 +188689,4148,serial killer,1272096056 +188689,4148,torture,1272096082 +188689,4239,based on a true story,1272900712 +188689,4239,true story,1272900727 +188689,4448,Edward Norton,1263655522 +188689,4448,hacker,1263655531 +188689,4448,heist,1263655534 +188689,4448,Robert De Niro,1263655526 +188689,4725,creepy,1282029236 +188689,4725,mental hospital,1282029239 +188689,4725,Psychological Horror,1282029298 +188689,4725,psychology,1282029241 +188689,4865,adapted from:comic,1271956947 +188689,4865,Horror,1272204912 +188689,4865,insanity,1272204914 +188689,4865,Johnny Depp,1272204910 +188689,4865,serial killer,1271956944 +188689,4889,Danny DeVito,1286017826 +188689,4889,predictable,1286017849 +188689,5049,comedy,1273241992 +188689,5049,crime,1273241995 +188689,5049,prison,1273241986 +188689,5049,prison escape,1273241998 +188689,5900,Mafia,1278625750 +188689,5900,mobster,1278625762 +188689,5900,Robert De Niro,1278625747 +188689,5900,strippers,1278625762 +188689,6378,action,1278878887 +188689,6378,Crime,1278878889 +188689,6378,Edward Norton,1278878890 +188689,6378,heist,1278878892 +188689,6378,Jason Statham,1278878885 +188689,6378,robbery,1278878894 +188689,6378,Seth Green,1278878912 +188689,6537,apocalypse,1279262803 +188689,6537,assassin,1279262806 +188689,6537,end of the world,1279262809 +188689,6537,Kristanna Loken,1279262835 +188689,6537,murder,1279262812 +188689,6537,nuclear war,1279262816 +188689,6701,gut-wrenching story,1316420030 +188689,6701,massacre,1316420033 +188689,6952,Psychological horror,1278450102 +188689,6953,Complex,1284298865 +188689,7235,child murder,1279828945 +188689,7235,disturbing,1279828928 +188689,7235,extremely violent,1279828948 +188689,7235,gore,1279828983 +188689,7235,splatter,1279829009 +188689,7254,asylum,1285657585 +188689,7254,child abuse,1285657587 +188689,7254,mathematics,1285657589 +188689,7254,psychology,1285657583 +188689,7445,Christopher Walken,1278369731 +188689,7445,kidnapping,1278369708 +188689,7445,Murder,1278369678 +188689,7445,Shotgun,1278369687 +188689,7445,Suicide,1278369734 +188689,7445,Torture,1278369682 +188689,8917,satire,1282040360 +188689,26701,anime,1277997467 +188689,27114,hacker,1260393437 +188689,27114,hackers,1260393437 +188689,27114,hacking,1260393437 +188689,27192,Angels,1277494469 +188689,27192,Demons,1277494466 +188689,31696,good versus evil,1251628823 +188689,31696,gothic,1251628823 +188689,31696,heaven and hell,1251628842 +188689,33164,SEE PARIS DIE!,1278450129 +188689,33410,Lawn Bowls,1274648752 +188689,33410,Parking Space,1274648752 +188689,33410,Scam,1274648757 +188689,37380,based on a video game,1274647939 +188689,37380,chainsaw,1274647937 +188689,37380,Dwayne Johnson,1274648004 +188689,37380,First Person Movie,1274647973 +188689,37380,Half-Assed Productions,1274647945 +188689,37380,loosely based on a computer game,1274647949 +188689,37380,military,1274648030 +188689,37380,The Rock,1274648000 +188689,37380,video game adaptation,1274647953 +188689,37380,videogame,1274647955 +188689,42710,Serial KIller,1281557333 +188689,42710,True Story,1281557338 +188689,42721,Kristanna Loken,1274556691 +188689,42721,vampire,1274556687 +188689,42721,vampires,1274556684 +188689,42721,video game adaptation,1274556683 +188689,42721,videogame,1274556697 +188689,43932,Computer,1278449213 +188689,43932,Goth,1278449213 +188689,43932,Hacker,1278449183 +188689,43932,Kristen Bell,1278449151 +188689,43932,Panic,1278449226 +188689,43932,Phantom,1278449222 +188689,43932,Psychological horror,1278449644 +188689,43932,Red Tape,1278449292 +188689,43932,Suicide,1278449182 +188689,43932,Technical Retarded,1278449228 +188689,43932,Virus,1278449183 +188689,46347,Black Metal,1274648201 +188689,46347,Sam Dunn,1274648204 +188689,48943,bad sequel,1286455821 +188689,50003,video game adaptation,1260392765 +188689,51540,based on a true story,1271956225 +188689,51540,Robert Downey Jr,1271956222 +188689,51540,serial killer,1271956233 +188689,51540,Too long,1271956242 +188689,51540,true story,1271956240 +188689,52591,Assassin,1284245627 +188689,52591,kidnap,1284245714 +188689,52591,Morgan Freeman,1284244654 +188689,52591,politics,1284245654 +188689,52591,violence,1284245654 +188689,52591,woods,1284245682 +188689,52604,Anthony Hopkins,1282196648 +188689,52604,Great reveal,1282196652 +188689,52604,lawyers,1282196654 +188689,52604,murder,1282196658 +188689,52604,murder mystery,1282196657 +188689,52604,Ryan Gosling,1282196672 +188689,52606,dark comedy,1273340184 +188689,52606,David Schwimmer,1273340182 +188689,52606,less than 300 ratings,1273349121 +188689,53207,serial killer,1286748069 +188689,54787,John Goodman,1273078504 +188689,54787,revenge,1273078506 +188689,55577,Psychological horror,1278450073 +188689,56757,adapted from:play,1278606231 +188689,56757,based on a play,1278606228 +188689,56757,cannibalism,1278606201 +188689,56757,dark,1278606226 +188689,56757,dark comedy,1278606224 +188689,56757,England,1278606218 +188689,56757,gothic,1278606215 +188689,56757,Johnny Depp,1278606203 +188689,56757,murder,1278606213 +188689,56757,serial killer,1278606209 +188689,56757,Tim Burton,1278606205 +188689,56757,violent,1278606208 +188689,57274,bloody,1292833658 +188689,57274,horror,1292833652 +188689,57274,virus,1292833653 +188689,59429,fraternity,1282022715 +188689,59727,disturbing,1282210659 +188689,59727,little dialogue,1282210669 +188689,59727,Psychological horror,1278450047 +188689,59727,serial killers,1282210673 +188689,59727,tense,1282210675 +188689,59727,terrifying,1282210679 +188689,60753,politics,1283031215 +188689,60753,Prison,1283031204 +188689,60753,realistic,1283031198 +188689,60753,wrongful imprisonment,1283031201 +188689,61132,Ben Stiller,1272660072 +188689,61132,death/fatality,1272660092 +188689,61132,insanity,1272660084 +188689,61132,Jack Black,1272660068 +188689,61132,parody,1272660082 +188689,61132,Robert Downey Jr.,1272660070 +188689,61262,Demon,1277589531 +188689,61262,Epic Ending,1277589527 +188689,61262,Gore,1277589569 +188689,61262,Gun,1277589558 +188689,61262,Murder,1277589566 +188689,61262,Nuns,1277589535 +188689,61262,Schizophrenia,1277589551 +188689,61262,Weak Plot,1277589514 +188689,63436,Psychological horror,1278450070 +188689,64034,based on a book,1282332380 +188689,64034,Child Murder,1282332398 +188689,64034,good acting,1282332387 +188689,64034,Holocaust,1282332382 +188689,64034,Nazi,1282332391 +188689,64285,british comedy,1283110859 +188689,64285,serial killer,1283110863 +188689,67087,comedy,1273006608 +188689,67255,computers,1274215989 +188689,67255,crime,1274215986 +188689,67255,dark,1274215990 +188689,67255,du -ac --time /var/lib/dpkg,1274215978 +188689,67255,Gothic Girl,1274470534 +188689,67255,hacker,1274215922 +188689,67255,hackers,1274215992 +188689,67255,Noomi Rapace,1274215981 +188689,68135,geeks,1273441882 +188689,68135,Matthew Perry,1273441884 +188689,69140,adapted from:play,1278606176 +188689,69140,cannibalism,1278606180 +188689,69140,serial killer,1278606183 +188689,69275,Chainsaw,1289322524 +188689,69275,gore,1289322504 +188689,69275,Nazis,1289322499 +188689,69275,Norwegian,1289322518 +188689,69275,ridiculous,1289322495 +188689,69275,Zombies,1289322501 +188689,71156,based on a book,1271748937 +188689,71156,Jeff Bridges,1271748981 +188689,71500,made for TV,1264144360 +188689,71500,multiple storylines,1264144365 +188689,71535,post-apocalyptic,1260391402 +188689,71535,zombies,1260391405 +188689,71556,low budget,1284321329 +188689,72129,Psychological horror,1278450065 +188689,73323,hackers,1274907868 +188689,73323,hacking,1274907878 +188689,73323,Noomi Rapace,1274907880 +188689,73323,Punker,1274907893 +188689,73323,Rape,1274907901 +188689,73808,Korean,1276028798 +188689,73808,police,1276028809 +188689,73808,serial killer,1276028817 +188689,73808,Whores,1276028790 +188689,74115,based on a poem,1276544655 +188689,74115,based on a video game,1276544666 +188689,74115,Demons,1276544733 +188689,74115,Hell,1276544727 +188689,74115,Lucifer,1276544739 +188689,74115,Satan,1276544745 +188689,74115,Scythe,1276544752 +188689,74115,Several animation studios were involved with the film.,1276544719 +188689,74510,based on a book,1274469005 +188689,74510,Gothic Girl,1274470510 +188689,74510,hackers,1274469007 +188689,74510,hacking,1274469010 +188689,74510,Noomi Rapace,1274469012 +188689,74510,swedish,1274469014 +188689,74698,Dwayne Johnson,1274648149 +188689,74698,Family Movie,1273869440 +188689,74698,Ice Hockey,1273869412 +188689,74698,Seth MacFarlane,1274648152 +188689,80026,Adapted from: video game,1285444562 +188689,80219,action right from the start to the very end,1286747897 +188689,80219,Danny Trejo,1286747915 +188689,80219,Robert De Niro,1286747927 +188689,80219,Steven Seagal,1286747933 +188689,85796,vigilante,1329598002 +188716,1255,cult film,1205646824 +188716,4533,zombie,1205646954 +188744,94959,orphans,1422986821 +188744,94959,scouting,1422986825 +188744,94959,Wes Anderson,1422986815 +188766,2232,low budget,1447262531 +188766,2232,maze,1447262525 +188766,2232,original,1447262535 +188766,2232,scifi,1447262527 +188766,2232,survival horror,1447262541 +188766,2232,thriller,1447262549 +188766,2232,weird,1447262554 +188766,3300,aliens,1447262208 +188766,3300,poor character development,1447262238 +188766,3300,sci-fi,1447262225 +188766,3300,Vin Diesel,1447262216 +188766,41569,emotional,1447345422 +188766,53996,80s nostalgia,1447345586 +188766,53996,aliens,1447345582 +188766,53996,enormously long battle scene,1447345602 +188766,53996,giant robots,1447345569 +188766,53996,robots,1447345609 +188766,53996,sci-fi,1447345606 +188766,53996,Shia LaBeouf,1447345590 +188766,53996,Special Effects,1447345571 +188766,53996,transformation,1447345577 +188766,68237,great soundtrack,1447262366 +188766,68237,moon,1447262371 +188766,68237,Sci-fi,1447262347 +188766,68237,space,1447262362 +188766,76175,fantasy,1447345450 +188766,76175,gods,1447345462 +188766,76175,Greek,1447345474 +188766,76175,Greek mythology,1447345455 +188766,76175,monsters,1447345458 +188766,76175,Special Effects,1447345464 +188766,86332,action,1447345635 +188766,86332,comic book,1447345633 +188766,86332,gods,1447345627 +188766,86332,mythology,1447345618 +188766,86332,predictable,1447345624 +188766,86332,Special Effects,1447345645 +188766,93838,awesome martial arts,1447345821 +188766,93838,brutal,1447345819 +188766,93838,intense,1447345823 +188766,93838,martial arts,1447345817 +188766,94864,aliens,1447262252 +188766,94864,Charlize Theron,1447262276 +188766,94864,exploration,1447262269 +188766,94864,intense,1447262283 +188766,94864,sci fi,1447262264 +188766,94864,sci-fi,1447262256 +188766,94864,scifi,1447345233 +188766,94864,space,1447345228 +188766,94864,space travel,1447345226 +188766,94864,technology,1447262273 +188766,103042,alien invasion,1447345666 +188766,103042,visually appealing,1447345663 +188766,103228,aliens,1447345528 +188766,103228,fun,1447345551 +188766,103228,giant monster,1447345531 +188766,103228,giant robots,1447345519 +188766,103228,Kaiju,1447345541 +188766,103228,music,1447345547 +188766,103228,robots,1447345525 +188766,103228,sci-fi,1447345523 +188766,103228,visually appealing,1447345521 +188766,104841,3D effects,1447262312 +188766,104841,atmospheric,1447262324 +188766,104841,George Clooney,1447262328 +188766,104841,intense,1447262337 +188766,104841,sci-fi,1447262305 +188766,104841,science,1447262303 +188766,104841,score,1447262319 +188766,104841,space,1447262297 +188766,104841,visually appealing,1447262309 +188766,104841,visually stunning,1447262307 +188766,104841,zero gravity,1447262317 +188766,106072,visually appealing,1447345681 +188766,106072,visually stunning,1447345688 +188766,109487,astronomy,1447262439 +188766,109487,black hole,1447262413 +188766,109487,epic,1447262448 +188766,109487,father - child relationship,1447262403 +188766,109487,Hans Zimmer,1447262396 +188766,109487,interesting ideea,1447262399 +188766,109487,long,1447262433 +188766,109487,Masterpiece,1447262454 +188766,109487,Matthew McConaughey,1447262392 +188766,109487,philosophical issues,1447262410 +188766,109487,relativity,1447262388 +188766,109487,sci-fi,1447262445 +188766,109487,science fiction,1447262385 +188766,109487,sounds,1447262408 +188766,109487,space,1447262377 +188766,109487,space exploration,1447262425 +188766,109487,space travel,1447262420 +188766,109487,thought-provoking,1447262386 +188766,109487,time travel,1447262382 +188766,109487,time-travel,1447262421 +188766,109487,visually appealing,1447262406 +188766,109487,wormhole,1447262415 +188766,110501,brutal,1447345801 +188766,110501,martial arts,1447345799 +188766,111364,Creature Feature,1447345495 +188766,111364,Godzilla,1447345498 +188766,111364,Kaiju,1447345503 +188766,111364,Monster,1447345490 +188766,111364,not enough monster action,1447345501 +188766,111364,special effects,1447345492 +188766,113741,intelligent,1447262506 +188766,113741,mind bending,1447262505 +188766,113741,mystery,1447262508 +188766,113741,parallel universe,1447262503 +188766,115617,cute,1447345746 +188766,115617,funny,1447345730 +188766,115617,futuristic,1447345742 +188766,115617,pixar,1447345721 +188766,115617,robot,1447345750 +188766,115617,robotics,1447345732 +188766,115617,sci-fi,1447345736 +188766,115713,AI,1447262489 +188766,115713,Man Versus Machine,1447262481 +188766,115713,robots,1447262477 +188766,115713,sci-fi,1447262469 +188766,117529,adventure,1447345411 +188766,117529,danger,1447345396 +188766,117529,Experiment Gone Awry,1447345391 +188766,117529,sci-fi,1447345387 +188766,117529,thriller,1447345398 +188766,122882,action,1447345148 +188766,122882,apocalyptic,1447345172 +188766,122882,post apocalyptic,1447345161 +188766,122882,practical effects,1447345167 +188766,122882,sci-fi,1447345153 +188766,122882,special effects,1447345157 +188766,122882,visually appealing,1447345150 +188766,122892,Action,1447345337 +188766,122892,Hulk,1447345352 +188766,122892,silly,1447345348 +188771,2571,artificial intelligence,1443395072 +188771,2571,cult film,1443395087 +188771,2571,cyberpunk,1443395081 +188771,2571,dystopia,1443395065 +188771,2571,hackers,1443395094 +188771,2571,philosophy,1443395068 +188771,2571,post-apocalyptic,1443395076 +188771,2571,sci-fi,1443395061 +188771,32587,black comedy,1443395247 +188771,32587,multiple storylines,1443395223 +188771,32587,storytelling,1443395239 +188771,58559,Heath Ledger,1443395286 +188772,260,space epic,1440805399 +188772,260,special effects,1440805457 +188772,260,the classic sci fi movie. must see.,1440805437 +188789,63082,India,1233726024 +188816,40819,musical,1353183639 +188816,87234,Dsyfunction,1353183571 +188816,87234,interesting characters,1353183558 +188816,87234,psychology,1353183564 +188816,87234,stylistic,1353183579 +188824,778,based on a book,1266408710 +188824,778,dark comedy,1266408707 +188824,778,narrated,1266408703 +188824,4612,reciprocal spectator,1416086512 +188824,4708,reciprocal spectator,1416086490 +188824,6400,documentary,1315333136 +188824,30892,Animation,1240158590 +188824,30892,Documentary,1240158551 +188824,30892,Henry Darger,1240158560 +188824,48698,the catholic church is the most corrupt organization in history,1276006189 +188824,64034,childish naivity,1242160404 +188824,64034,friendship,1242160427 +188824,68954,adventure,1266408634 +188824,68954,Bechdel Test:Fail,1266408641 +188824,68954,cartoon,1266408638 +188824,68954,children,1266408643 +188824,68954,computer animation,1266408645 +188824,68954,divorce,1266408656 +188824,68954,dogs,1266408658 +188824,68954,dreams,1266408662 +188824,68954,Pixar,1266408675 +188824,71494,Narrative pisstake,1426783741 +188824,81158,american idolatry,1299452954 +188824,82459,atmospheric,1300485463 +188824,82459,Coen Brothers,1300485477 +188824,82459,Jeff Bridges,1300485479 +188824,82459,Matt Damon,1300485480 +188824,82459,predictable,1300485405 +188824,90769,celebrity fetishism,1422524320 +188824,90769,mediacentralism,1422524320 +188824,90769,system holism,1422524320 +188824,96084,city politics,1421145735 +188824,96084,italy,1421145735 +188824,96084,political right versus left,1421145735 +188824,111364,Creature Feature,1414693918 +188824,118784,documentary,1420400992 +188824,118784,music industry,1420400992 +188824,118784,remix culture,1420400992 +188824,127172,film history,1423222565 +188824,127172,poetic,1423222565 +188824,127172,representation of children,1423222565 +188831,247,bizarre,1173442988 +188838,29,dreamlike,1339478319 +188838,29,Ron Perlman,1339478342 +188838,29,steampunk,1339478326 +188838,29,surreal,1339478324 +188838,29,visually appealing,1339478335 +188838,29,whimsical,1339478354 +188838,1230,comedy,1339392231 +188838,1230,diane keaton,1339392226 +188838,1230,quirky,1339392247 +188838,1230,relationships,1339392242 +188838,1230,woody allen,1339392215 +188838,4973,atmospheric,1320713069 +188838,4973,beautifully filmed,1320713067 +188838,4973,great soundtrack,1320713064 +188838,4973,imdb top 250,1320713073 +188838,4973,Paris,1320713072 +188838,4973,quirky,1320713055 +188838,4973,surreal,1320713058 +188838,4973,visually appealing,1320713061 +188838,4973,whimsical,1320713059 +188838,5377,cheesy,1339477994 +188838,5377,comedy,1339477993 +188838,5377,depression,1339477990 +188838,5377,nick hornby,1339478028 +188838,5377,predictable,1339477994 +188838,5377,tired,1339477994 +188838,5618,adventure,1320714868 +188838,5618,alternate reality,1320714870 +188838,5618,animation,1320714886 +188838,5618,anime,1320714884 +188838,5618,atmospheric,1320714872 +188838,5618,children,1320714902 +188838,5618,dragons,1320714896 +188838,5618,dreamlike,1320714873 +188838,5618,fairy tale,1320714877 +188838,5618,fantasy,1320714875 +188838,5618,Japan,1320714891 +188838,5618,surreal,1320714882 +188838,5618,whimsical,1320714880 +188838,5954,crime,1323210642 +188838,5954,depressing,1323210625 +188838,5954,Edward Norton,1323210615 +188838,5954,freedom,1323210636 +188838,5954,powerful ending,1323210630 +188838,5954,psychology,1323210651 +188838,5954,Rosario Dawson,1323210618 +188838,7361,dreamlike,1320712726 +188838,7361,Jim Carrey,1320712716 +188838,7361,philosophy,1320712714 +188838,7361,quirky,1320712712 +188838,7361,relationships,1320712709 +188838,7361,romance,1320712707 +188838,7361,surreal,1320712711 +188838,7361,thought-provoking,1320712722 +188838,40629,based,1320712564 +188838,40629,cinematography,1320712590 +188838,40629,comedy,1339965037 +188838,40629,Drama,1320712850 +188838,40629,great soundtrack,1339965062 +188838,40629,Jane Austen,1339965071 +188838,40629,Keira Knightley,1339965067 +188838,40629,love,1320712572 +188838,40629,relationships,1320712845 +188838,40629,romance,1320712838 +188838,40629,Wedding,1339965094 +188838,48394,adventure,1320712746 +188838,48394,alternate reality,1320712749 +188838,48394,atmospheric,1320714147 +188838,48394,Cinematography,1320712763 +188838,48394,disturbing,1320714150 +188838,48394,fairy tale,1320712769 +188838,48394,fantasy,1320714156 +188838,48394,history,1320712773 +188838,48394,military,1320714140 +188838,48394,Oscar (Best Cinematography),1320712758 +188838,48394,psychology,1320714132 +188838,48394,sci-fi,1320712790 +188838,48394,social commentary,1320714130 +188838,48394,surreal,1320712741 +188838,48394,violence,1320714126 +188838,48394,world war II,1320714123 +188838,53123,complex characters,1323210408 +188838,53123,realistic,1323210419 +188838,53123,wired 50 greatest soundtracks,1323210423 +188838,57669,comedy,1339964540 +188838,57669,dark comedy,1339964626 +188838,57669,drama,1339964674 +188838,57669,hitman,1339964671 +188838,57669,Jordan Prentice,1339964879 +188838,57669,violence,1339964888 +188838,57669,violent,1339964667 +188838,59315,based on a comic,1320712678 +188838,59315,humor,1320712690 +188838,59315,sci-fi,1320712687 +188838,59315,superhero,1320712681 +188838,59315,vigilante,1320712696 +188838,60950,awkward,1339650480 +188838,60950,friendship,1339650456 +188838,60950,Javier Bardem,1339650446 +188838,60950,narrated,1339650467 +188838,60950,philosophical,1339650451 +188838,60950,Scarlett Johansson,1339650438 +188838,60950,sexy,1339650433 +188838,63082,drama,1323210574 +188838,63082,great soundtrack,1323210600 +188838,63082,gritty,1323210571 +188838,63082,social commentary,1323210590 +188838,68358,action,1320714025 +188838,68358,adventure,1320713998 +188838,68358,comedy,1339965009 +188838,68358,great soundtrack,1320714020 +188838,68358,humor,1320714003 +188838,68358,plot twist,1320714006 +188838,68358,revenge,1320714066 +188838,68358,space,1320714008 +188838,68358,time travel,1320714070 +188838,68358,visually appealing,1320714013 +188838,68358,Winona Ryder,1320714011 +188838,68954,comedy,1339964981 +188838,68954,dogs,1339965112 +188838,68954,love,1339965106 +188838,68954,romantic,1339964973 +188838,68954,sweet,1339964977 +188838,69757,artistic,1320713170 +188838,69757,humor,1320713173 +188838,69757,IMDB Top 250,1320713185 +188838,69757,intelligent,1320713175 +188838,69757,love,1339965173 +188838,69757,quirky,1320713176 +188838,69757,relationships,1320713180 +188838,69757,romance,1320713178 +188838,70567,cliche,1320713926 +188838,70567,mental illness,1320713913 +188838,77561,action,1320712632 +188838,77561,comic book,1320712648 +188838,77561,humor,1320712645 +188838,77561,robert downey jr.,1320712656 +188838,79132,action,1333776510 +188838,79132,surreal,1333776510 +188838,79702,comedy,1339964944 +188838,79702,comic book,1333776491 +188838,79702,quirky,1339964953 +188838,79702,surreal,1333776491 +188838,79702,whimsical,1339964951 +188838,84952,revenge,1320714971 +188838,86882,cinematography,1320713121 +188838,86882,comedy,1339965155 +188838,86882,love,1339965149 +188838,86882,philosophical,1339650524 +188838,86882,quirky,1320713125 +188838,86882,relationships,1320713127 +188838,86882,romance,1320713129 +188838,86882,smart,1339650510 +188838,86882,thought-provoking,1320713131 +188838,86882,time travel,1339965145 +188838,86882,whimsical,1320713137 +188873,3992,coming of age,1446925277 +188873,3992,Italian,1446925260 +188873,3992,social commentary,1446925212 +188873,5147,old age,1446925428 +188873,5147,reflective,1446925404 +188873,5269,Isabelle Huppert,1446925355 +188873,5269,Michael Haneke,1446925351 +188873,5269,psychology,1446925365 +188873,5269,sexuality,1446925381 +188873,5838,based on a book,1446925302 +188885,47,crime,1142140742 +188885,47,serial killer,1142140740 +188885,50,crime,1142140436 +188885,50,tricky,1142140429 +188885,172,Memory,1142140727 +188885,172,Sci-Fi,1142140727 +188885,293,crime,1142142617 +188885,293,Gary Oldman,1142142627 +188885,293,hitman,1142142617 +188885,293,Natalie Portman,1142142619 +188885,296,crime,1142139516 +188885,296,Quentin Tarantino,1142139519 +188885,344,Jim Carrey,1142140456 +188885,356,Robert Zemeckis,1142140344 +188885,356,Vietnam,1142140342 +188885,480,sci-fi,1142140353 +188885,480,Steven Spielberg,1142140351 +188885,522,racism,1142139463 +188885,522,violence,1142139465 +188885,778,crime,1142142510 +188885,778,drugs,1142142501 +188885,778,Ewan McGregor,1142142503 +188885,780,aliens,1142140402 +188885,780,end of the world,1142140407 +188885,780,Roland Emmerich,1142140405 +188885,780,sci-fi,1142140823 +188885,784,Jim Carrey,1142140796 +188885,832,kidnapping,1142140786 +188885,832,Mel Gibson,1142140788 +188885,1089,crime,1142139563 +188885,1089,Quentin Tarantino,1142139559 +188885,1089,violence,1142139561 +188885,1213,Mafia,1142187371 +188885,1213,Martin Scorsese,1142187373 +188885,1213,violence,1142187376 +188885,1222,Stanley Kubrick,1142139542 +188885,1222,Vietnam,1142139544 +188885,1222,War,1142139554 +188885,1485,jim carrey,1142140804 +188885,1552,airplane,1142140771 +188885,2329,racism,1142139436 +188885,2502,office,1142139402 +188885,2502,rebellion,1142140601 +188885,2502,workplace,1142139400 +188885,2542,crime,1142142516 +188885,2542,Guy Ritchie,1142142513 +188885,2571,sci-fi,1142142456 +188885,2683,Mike Myers,1142220818 +188885,2858,midlife crisis,1142142480 +188885,2858,suburbia,1142142464 +188885,2858,surrealism,1142142467 +188885,2959,Edward Norton,1142140713 +188885,2959,violence,1142140715 +188885,2997,surrealism,1142220784 +188885,3020,Crazy,1142140708 +188885,3020,Postal,1142140708 +188885,3020,Violence,1142140718 +188885,3147,Stephen King,1142140784 +188885,3147,Tom Hanks,1142140781 +188885,3949,drugs,1142220388 +188885,3949,Jared Leto,1142220390 +188885,4011,Crime,1142142674 +188885,4011,Guy Ritchie,1142142674 +188885,4226,backwards,1142139528 +188885,4226,memory,1142139522 +188885,4963,George Clooney,1142140287 +188885,4963,heist,1142140284 +188885,5418,Matt Damon,1142140275 +188885,5418,memory,1142140265 +188885,5418,spy,1142140267 +188885,5445,future,1142140734 +188885,5445,Steven Spielberg,1142140731 +188885,5445,Tom Cruise,1142140735 +188885,6016,crime,1142127831 +188885,6016,drugs,1142127827 +188885,6016,Fernando Meirelles,1142127823 +188885,6016,intense,1142127834 +188885,6016,Rio de Janeiro,1142127829 +188885,6016,violence,1142127836 +188885,6567,Crime,1142140632 +188885,6567,Germany,1142140632 +188885,6567,Military,1142140632 +188885,6567,War,1142140632 +188885,6874,Quentin Tarantino,1142152352 +188885,6874,revenge,1142152377 +188885,6874,Uma Thruman,1142152374 +188885,6874,violence,1142152382 +188885,7361,Jim Carrey,1142127869 +188885,7361,Kate Winslet,1142127871 +188885,7361,sci-fi,1142127879 +188885,7438,Quentin Tarantino,1142152365 +188885,7438,Samuel L. Jackson,1142152367 +188885,7438,Uma Thruman,1142152368 +188885,8665,Matt Damon,1142140310 +188885,8784,Zach Braff,1142142531 +188885,8914,Complicated,1142141217 +188885,8914,Sci-Fi,1142141217 +188885,8914,time travel,1142139394 +188885,27773,Chan-Wook Park,1142187306 +188885,27773,Korea,1142187307 +188885,35836,nerd,1142140699 +188885,35836,sex,1142140694 +188885,36517,Africa,1142184604 +188885,36517,kenya,1142184605 +188885,36517,world politics,1142184612 +188885,36529,Crime,1142140655 +188885,36529,World Politics,1142140679 +188885,37240,Documentary,1142142431 +188885,37240,Military,1142142424 +188885,37384,rebellion,1142140687 +188885,37384,workplace,1142140587 +188885,40278,war,1142140751 +188885,40583,complicated,1142140667 +188885,40583,world politics,1142140665 +188885,41716,assassination,1142139284 +188885,41716,hitman,1142139288 +188885,41716,midlife crisis,1142139286 +188885,41863,crime,1142152116 +188885,41863,mexico,1142152116 +188885,41997,Islam,1142140765 +188885,41997,Israel,1142139360 +188885,41997,Palestine,1142139363 +188885,41997,Terrorism,1142140765 +188885,41997,War,1142140756 +188885,43908,Drugs,1142140866 +188885,43908,Love,1142140866 +188900,1227,Nudity (Full Frontal),1374940922 +188900,1227,Nudity (Rear),1374940934 +188900,1227,rape,1374940930 +188900,1227,violence,1374940931 +188900,1676,Argentina,1347312740 +188900,1834,Nueve Reinas,1336931456 +188900,1860,Underrated,1337442452 +188900,2700,musical,1338630879 +188900,2938,Ripped-off (K-PAX),1357921164 +188900,3104,annoying soundtrack,1358693574 +188900,3479,awkward soundtrack,1376887838 +188900,4042,untruthful,1369012412 +188900,4312,lukewarm,1296922242 +188900,4312,pretentious,1296922213 +188900,4874,Man Facing Southeast Rip-off,1281984824 +188900,4874,outcast teaches us all a cheesy lesson,1281984910 +188900,6192,twisted,1285404340 +188900,6197,The Tenant,1351829129 +188900,6350,La-puta,1336856502 +188900,6804,really cheesy.,1384685418 +188900,7044,sailor and lula,1286662991 +188900,25994,human rights,1295995882 +188900,25994,social justice,1295995870 +188900,26948,bad adaptation,1376158288 +188900,26948,cast away,1376158313 +188900,26948,kitsch,1376158301 +188900,27366,beautiful photography,1326836691 +188900,27366,pretentious,1326836715 +188900,27366,slow paced,1326836702 +188900,35347,CIA funded,1387132415 +188900,35347,propaganda,1387132420 +188900,37727,plotholes,1358608114 +188900,40414,Mi Mejor Enemigo (2005),1324589372 +188900,43269,Animals,1314982909 +188900,43269,Argentina,1314982901 +188900,43269,Exceptional Acting,1314982979 +188900,43269,low blow,1314982955 +188900,49822,too long too boring,1360436754 +188900,49910,cliche,1412426030 +188900,49910,long,1412426025 +188900,49910,predictable,1412426022 +188900,49910,pretentious,1412426027 +188900,50601,bullying,1388613189 +188900,52806,boring,1358842268 +188900,52806,Goro Miyazaki,1358842245 +188900,52806,Studio Ghibli,1358842247 +188900,52806,Ursula K. Le Guin,1358842240 +188900,54881,controversial,1351912673 +188900,54881,fact-twisting,1351912724 +188900,64197,current,1287933739 +188900,64197,dark,1287933731 +188900,64197,netflix,1287933723 +188900,64197,scored,1287933748 +188900,64197,Un certain regard,1287933696 +188900,73572,Ambiguous,1304857085 +188900,73572,Grotesque,1304857056 +188900,73572,Pretentious,1304857117 +188900,76111,lies,1384605410 +188900,76772,Blood,1341440519 +188900,76772,Red,1341440534 +188900,78266,bad acting,1286578654 +188900,78266,gore,1286578654 +188900,78266,predictable,1286578654 +188900,79895,annoying characters,1376987860 +188900,79895,decent CGI,1376987885 +188900,79895,Luc Besson,1376987871 +188900,80374,absurd,1374938981 +188900,80917,bad dialogue,1354402523 +188900,80917,bad Spanish,1354401663 +188900,80917,geographic goofs,1354402695 +188900,81731,not a movie,1376772409 +188900,84954,based on a short story,1315263843 +188900,84954,Bechdel Test:Fail,1315263837 +188900,84954,Emily Blunt,1315263852 +188900,84954,original plot,1315263864 +188900,84954,Philip K. Dick,1315263819 +188900,84954,protagonist is a dancer,1315263860 +188900,84954,protagonist is a performer,1315263867 +188900,84954,Romance,1315263869 +188900,84954,superficial,1315263872 +188900,87192,action packed,1315615950 +188900,87192,critters-like aliens,1315615986 +188900,87192,loud music,1315615965 +188900,88652,Spanish civil war,1336857571 +188900,89000,Cannes: Un certain regard,1370046970 +188900,89000,insurance,1370046913 +188900,89000,traffic accident,1370046924 +188900,91302,Australia,1336857608 +188900,91500,Battle Royale ripoff,1346493430 +188900,91880,Joyeaux Noel (2005),1324589315 +188900,91880,Touching,1324589325 +188900,92715,Elderly,1328371288 +188900,93721,Michelin,1354805435 +188900,93721,seafood,1354805423 +188900,93721,Tsukiji,1354805413 +188900,93982,cheesy clues,1342344167 +188900,93982,Poe,1342344151 +188900,93982,serial killer,1342344177 +188900,94466,not a movie,1425153473 +188900,94466,tv series,1425153476 +188900,95058,pretentious,1350271079 +188900,96612,Americans lack common sense,1349571738 +188900,97938,visual effects,1358721148 +188900,99007,decent acting,1378248504 +188900,99007,nice soundtrack,1378248520 +188900,99047,good acting,1388605977 +188900,99047,predictable,1388605990 +188900,99437,misleading title,1377157980 +188900,99917,artsy,1376693300 +188900,99917,pretentious,1376693132 +188900,99917,Thoreau,1376693224 +188900,99917,void,1376693244 +188900,99917,Walden,1376693142 +188900,100397,short films,1360451105 +188900,100527,boring,1389398360 +188900,101068,depressing,1362216700 +188900,101864,scientology,1374694102 +188900,103228,audience intelligence underestimated,1381589365 +188900,103228,bad acting,1381589372 +188900,103228,cliche characters,1381589352 +188900,103228,disappointing,1381589356 +188900,103228,plot holes,1381589341 +188900,103228,silly,1381589345 +188900,103249,plot holes,1378562738 +188900,104312,bad plot,1399223344 +188900,104312,cliche,1399223352 +188900,104312,cliche characters,1399223348 +188900,104312,plot holes,1399223342 +188900,105211,happy ending,1407571750 +188900,107069,Afghanistan,1398152620 +188900,107069,American propaganda,1398152587 +188900,107069,Celebrates militarism,1398152594 +188900,107069,war,1398152606 +188900,110968,disaster,1399619049 +188900,111551,director-starred,1407249034 +188900,111551,good FX,1407248997 +188900,111551,low budget,1407248980 +188900,111551,POV,1407248986 +188900,112731,Mormon propaganda,1409606243 +188900,116797,historical inaccuracy,1422821047 +188915,260,Blast from the past,1438471248 +188915,260,Fun,1438471205 +188926,50,conspiracy,1437503296 +188926,50,thriller,1437503285 +188926,50,twist ending,1437503264 +188926,110,beautiful scenery,1437503852 +188926,110,epic,1437503867 +188926,110,historical,1437503841 +188926,318,friendship,1437503091 +188926,318,hope,1437503070 +188926,318,inspirational,1437503110 +188926,2571,philosophical,1437503550 +188926,2571,sci-fi,1437503539 +188926,2571,Special Effects,1437503557 +188926,2571,virtual reality,1437503573 +188926,5952,fantasy,1437503972 +188926,5952,mythology,1437504001 +188926,5952,scenary,1437503992 +188926,27036,sci-fi,1437503736 +188926,27368,comedy,1437503674 +188926,79132,intellectual,1437503446 +188926,79132,mindfuck,1437503462 +188926,79132,science fiction,1437503394 +188944,260,cult,1442751275 +188944,260,scifi,1442751281 +188973,1060,90s,1232056379 +188973,1060,Los Angeles,1232056364 +188973,5430,netherlands,1232055974 +188973,5430,pederasty,1232055959 +188973,5430,WWII,1232055966 +188973,59684,abortion,1232055859 +188973,59684,documentary,1232055896 +188995,260,Poetic,1437614532 +188995,260,Romance,1437614513 +188995,260,smart,1437614549 +188995,260,thought-provoking,1437614546 +189016,260,classic,1430850067 +189016,260,Science Fiction,1430850072 +189019,62155,great soundtrack,1245291137 +189038,113071,adventure,1436552514 +189038,113071,alien contact,1436552514 +189038,113071,family,1436552514 +189038,116797,historical drama,1424126597 +189038,116797,mystery,1424126597 +189038,116797,war drama,1424126597 +189038,128738,family,1424235746 +189038,128738,Music,1424235759 +189049,29,atmospheric,1287001425 +189049,29,beautiful,1287001427 +189049,29,bleak,1287001430 +189049,29,children,1287001472 +189049,29,dark fairytale,1287001433 +189049,29,dark fantasy,1287001436 +189049,29,dreamlike,1287001466 +189049,29,dystopia,1287001438 +189049,29,kidnapping,1287001449 +189049,29,Ron Perlman,1287001464 +189049,29,Santa Claus,1287001445 +189049,29,sci-fi,1287001442 +189049,29,steampunk,1287001451 +189049,29,surreal,1287001455 +189049,29,visually appealing,1287001456 +189049,296,Black comedy,1242253660 +189049,296,cult film,1242253677 +189049,296,multiple storylines,1242253673 +189049,296,nonlinear,1242253669 +189049,296,Quentin Tarantino,1242253664 +189049,541,androids,1451007956 +189049,541,artificial intelligence,1451007936 +189049,541,atmospheric,1451007929 +189049,541,cyberpunk,1451007922 +189049,541,dreamlike,1451007958 +189049,541,dystopia,1242251781 +189049,541,existentialism,1451007943 +189049,541,film noir,1451007970 +189049,541,future,1451007946 +189049,541,futuristic,1242251785 +189049,541,Harrison Ford,1451007931 +189049,541,robots,1451007949 +189049,541,sci-fi,1451007925 +189049,541,smart,1242251795 +189049,541,stylized,1451007939 +189049,592,atmospheric,1242381361 +189049,592,stylized,1242381355 +189049,592,Tim Burton,1242381351 +189049,924,artificial intelligence,1451008010 +189049,924,atmospheric,1451008024 +189049,924,confusing ending,1451008075 +189049,924,future,1451008052 +189049,924,futuristic,1451008064 +189049,924,masterpiece,1451008028 +189049,924,meditative,1451008059 +189049,924,music,1451008048 +189049,924,robots,1451008055 +189049,924,sci-fi,1451008007 +189049,924,slow,1451008039 +189049,924,space,1451008018 +189049,924,Stanley Kubrick,1451008013 +189049,924,surreal,1451008031 +189049,924,visually appealing,1451008035 +189049,1080,Monty Python,1242254961 +189049,1080,satire,1242254963 +189049,1089,humorous,1242253713 +189049,1089,low budget,1242253720 +189049,1089,Quentin Tarantino,1242253707 +189049,1089,Tarantino,1242253717 +189049,1089,violence,1242253703 +189049,1089,visceral,1242253726 +189049,1206,dystopia,1242254828 +189049,1206,psychology,1242254831 +189049,1222,anti-war,1242251069 +189049,1222,military,1242251078 +189049,1222,political,1242251097 +189049,1222,Stanley Kubrick,1242250978 +189049,1222,suicide,1285880458 +189049,1222,Vietnam,1242251082 +189049,1222,Vietnam War,1242251106 +189049,1222,vietnam war based movie,1242251104 +189049,1222,war,1242251118 +189049,1222,wartime,1242251121 +189049,1240,Arnold Schwarzenegger,1283207475 +189049,1246,philosophy,1242254998 +189049,1274,animation,1242253287 +189049,1274,anime,1242253284 +189049,1274,comic book,1242253271 +189049,1274,disapointing,1242253262 +189049,1274,dystopia,1242253289 +189049,1274,dystopic future,1242253292 +189049,1274,future,1242253295 +189049,1274,verry disapointing,1242253262 +189049,1527,action,1283207192 +189049,1527,aliens,1283207170 +189049,1527,always watch it when it's on tv,1283207173 +189049,1527,cinematography,1283207199 +189049,1527,dystopic future,1283207178 +189049,1527,futuristic,1283207183 +189049,1527,humorous,1283207205 +189049,1527,Luc Besson,1283207187 +189049,1527,Milla Jovovich,1283207167 +189049,1527,race against time,1283207219 +189049,1527,satirical,1283207214 +189049,1527,sci-fi,1283207210 +189049,1527,seen more than once,1283207225 +189049,1527,stylized,1283207236 +189049,1653,atmospheric,1451007870 +189049,1653,beautiful,1451007880 +189049,1653,dystopia,1242255097 +189049,1653,dystopic future,1451007851 +189049,1653,eugenics,1451007886 +189049,1653,future,1451007846 +189049,1653,genetic selection,1451007861 +189049,1653,genetics,1451007812 +189049,1653,intelligent,1451007864 +189049,1653,powerful ending,1451007828 +189049,1653,realistic sci/fi,1451007873 +189049,1653,rebellion,1451007876 +189049,1653,sci-fi,1242255099 +189049,1653,science fiction,1451007867 +189049,1653,social commentary,1451007895 +189049,1653,space travel,1451007848 +189049,1653,thought-provoking,1451007821 +189049,1653,Uma Thurman,1451007824 +189049,1653,visually appealing,1451007843 +189049,1732,Coen Brothers,1242255069 +189049,1732,dark comedy,1242255074 +189049,2167,Booring,1242250537 +189049,2167,effects,1242250507 +189049,2167,Hollywood,1242250609 +189049,2167,predictable,1242250537 +189049,2167,stupid,1242250513 +189049,2167,Wesley Snipes,1242250580 +189049,2174,Tim Burton,1242254909 +189049,2467,Sean Connery,1242251239 +189049,2692,alternate endings,1242253155 +189049,2692,artistic,1242253157 +189049,2692,existentialism,1242253160 +189049,2692,humorous,1242253163 +189049,2692,surreal,1242253173 +189049,2692,thought-provoking,1242253170 +189049,2692,time travel,1242253152 +189049,2762,twist ending,1242254428 +189049,2843,humorous,1242252485 +189049,2843,kusturica,1242252492 +189049,2843,Louis I think this is the beginning of a beautiful friendship,1242252500 +189049,2843,vivacious,1242252508 +189049,2843,witty,1242252511 +189049,2858,dark comedy,1242254035 +189049,3354,Hollywood,1242252125 +189049,3354,sens of sacrifice,1242252125 +189049,3462,anti-authoritarian,1242252592 +189049,3462,Charlie Chaplin,1242252585 +189049,3462,social commentary,1242252604 +189049,3462,working class,1242252608 +189049,3629,Charlie Chaplin,1242252558 +189049,3629,Funny as hell,1242252563 +189049,4886,animation,1242254953 +189049,4886,Pixar,1242254948 +189049,4967,No Happy End,1256563450 +189049,4993,magic,1242252185 +189049,4993,music,1242252188 +189049,5618,animated,1242253779 +189049,5618,animation,1242253777 +189049,5618,dreamlike,1242253781 +189049,5618,fairy tale,1242253783 +189049,5618,fantasy,1242253785 +189049,5618,hallucinatory,1242253787 +189049,5618,Hayao Miyazaki,1242253789 +189049,5618,Oscar (Best Animated Feature),1242253792 +189049,5618,Studio Ghibli,1242253795 +189049,5690,anime,1283525155 +189049,5690,anti-war,1283525158 +189049,5690,based on a true story,1283525230 +189049,5690,bleak,1283525225 +189049,5690,childhood,1283525222 +189049,5690,death,1283525216 +189049,5690,downbeat,1283525213 +189049,5690,grim,1283525163 +189049,5690,history,1283525210 +189049,5690,imdb top 250,1283525207 +189049,5690,Japan,1283525153 +189049,5690,orphans,1283525201 +189049,5690,poignant,1283525197 +189049,5690,somber,1283525171 +189049,5690,Studio Ghibli,1283525151 +189049,5690,tragedy,1283525188 +189049,5690,true story,1283525184 +189049,5690,war,1283525179 +189049,5690,World War II,1283525174 +189049,5690,WWII,1283525176 +189049,5902,Nicolas Cage,1451044387 +189049,6041,disturbing,1242252820 +189049,6041,intelligent,1242252800 +189049,6041,trash,1242252805 +189049,6377,mine,1242250686 +189049,6539,Johnny Depp,1242254982 +189049,6552,Audrey Tautou,1397384881 +189049,6874,martial arts,1242255158 +189049,6874,Quentin Tarantino,1242255154 +189049,6975,Haneke,1242249469 +189049,6975,Michael Haneke,1242249464 +189049,7099,anime,1242251265 +189049,7099,conservation,1242251270 +189049,7099,dystopic future,1242251331 +189049,7099,earnest,1242251336 +189049,7099,Studio Ghibli,1242251256 +189049,7099,war,1242251262 +189049,8784,cliché ending,1450920975 +189049,8784,funny,1450920951 +189049,8784,Natalie Portman,1450920921 +189049,8784,quirky,1450920935 +189049,8784,Zach Braff,1450920919 +189049,8873,biographical,1242253044 +189049,8873,Che Guevara,1242253030 +189049,8873,good dialogue,1242253067 +189049,8873,Inspiring,1242253064 +189049,8873,Interesting,1242253061 +189049,8873,political,1242253057 +189049,8873,politics,1242253059 +189049,8873,social message,1242253076 +189049,8873,South America,1242253051 +189049,8873,Spanish,1242253053 +189049,8873,true story,1242253049 +189049,27773,based on comic,1450905454 +189049,27773,bizarre,1450905229 +189049,27773,brutal,1450905319 +189049,27773,Chan-Wook Park,1450905481 +189049,27773,Cinematography,1450905242 +189049,27773,classic,1450905462 +189049,27773,claustrophobic,1450905477 +189049,27773,depressing,1450905207 +189049,27773,disturbing,1450905186 +189049,27773,great soundtrack,1450905446 +189049,27773,hallucinatory,1450905299 +189049,27773,imdb top 250,1450905459 +189049,27773,incest,1450905448 +189049,27773,Korea,1450905305 +189049,27773,korean,1450905302 +189049,27773,music,1450905456 +189049,27773,Nudity (Full Frontal),1450905307 +189049,27773,paranoid,1450905321 +189049,27773,pychological,1450905479 +189049,27773,revenge,1450905190 +189049,27773,serial killer,1450905239 +189049,27773,stylized,1450905193 +189049,27773,surreal,1450905310 +189049,27773,tense,1450905451 +189049,27773,twist ending,1450905182 +189049,27773,twisted,1450905233 +189049,27773,vengeance,1450905200 +189049,27773,violent,1450905197 +189049,30816,Andrew Lloyd Webber,1242251708 +189049,30816,Lovely,1242251714 +189049,30816,Musical,1242251723 +189049,30816,playwright:Andrew Lloyd Webber,1242251726 +189049,34405,Firefly,1427894469 +189049,34405,sci-fi,1427894427 +189049,34405,space,1427894453 +189049,36276,art house,1242251434 +189049,36276,Daniel Auteuil,1242251431 +189049,36276,Haneke,1242251411 +189049,36276,Michael Haneke,1242251413 +189049,36276,Michael Moore Favorite,1242251465 +189049,36276,non-hollywood ending,1242251457 +189049,36529,Nicolas Cage,1451081120 +189049,37733,disappointing,1242251535 +189049,37733,gratuitous violence,1242251528 +189049,37733,overrated,1242251517 +189049,37733,Viggo Mortensen,1242251552 +189049,37733,Violence,1242251520 +189049,37733,violent,1242251524 +189049,41566,christianity,1244839720 +189049,41566,good versus evil,1244839725 +189049,41566,propaganda,1244839732 +189049,44555,Berlin,1450914036 +189049,44555,breathtaking,1450914064 +189049,44555,communism,1450914084 +189049,44555,complex characters,1450914021 +189049,44555,director-screenwriter,1450914109 +189049,44555,drama,1450914044 +189049,44555,East Germany,1450914005 +189049,44555,excellent script,1450914024 +189049,44555,freedom of expression,1450914016 +189049,44555,german,1450914067 +189049,44555,Germany,1450914019 +189049,44555,great acting,1450914072 +189049,44555,historical,1450914053 +189049,44555,Nudity (Topless),1450914075 +189049,44555,realisitc acting,1450914111 +189049,44555,spying,1450914007 +189049,44555,Stasi,1450914010 +189049,44555,subtle performances,1450914113 +189049,44555,surveillance,1450914013 +189049,44555,suspense,1450914032 +189049,44555,Ulrich Mühe,1450914099 +189049,53123,Catchy Score,1242251920 +189049,53123,dublin,1242251933 +189049,53123,good music,1242251902 +189049,53123,lyrics,1242251940 +189049,53123,simple,1242251970 +189049,53322,smart,1242251166 +189049,58301,intelligent,1242250449 +189049,59501,Christian apologism,1244839766 +189049,59501,Jesus freaks,1244839759 +189049,68358,anti-peace,1256560297 +189049,72378,bad plot,1283206998 +189049,72378,bad science,1283207006 +189049,72378,slow,1283207015 +189049,72378,So bad it's good,1283207021 +189049,72378,Special Effects,1283207027 +189049,72378,stupid,1283207053 +189049,72393,abduction,1451007469 +189049,72393,fake documentary,1451007421 +189049,73321,Bible,1451008672 +189049,73321,Christianity,1451008669 +189049,73321,dystopia,1451008676 +189049,73321,dystopic future,1451008679 +189049,73321,faith,1451008694 +189049,73321,post-apocalyptic,1451008666 +189049,73321,religious propaganda,1451008691 +189049,79541,Goscinny,1392606977 +189049,79541,Sempe,1392607011 +189049,81020,artistic,1450886328 +189049,81020,life & death,1450886317 +189049,97938,God's existance,1450914247 +189049,97938,religion,1450914229 +189049,97938,religious overtones,1450914235 +189049,97938,spiritual journey,1450914244 +189049,108979,animation,1451007033 +189049,108979,anime,1451007005 +189049,108979,cinematography,1451007036 +189049,108979,cool style,1451007041 +189049,108979,future,1451007023 +189049,108979,good music,1451007026 +189049,108979,jazz,1451007013 +189049,108979,sci-fi,1451007029 +189049,108979,space western,1451007016 +189049,114554,beautiful,1430843681 +189049,114554,spacy,1430843681 +189049,114554,strange,1430843681 +189049,115713,AI,1451007610 +189049,115713,artificial intelligence,1451007591 +189049,115713,claustrophobic,1451007741 +189049,115713,consciousness,1451007655 +189049,115713,cybernetics,1451007696 +189049,115713,Drama,1451007722 +189049,115713,Future,1451007649 +189049,115713,futuristic,1451007614 +189049,115713,isolation,1451007660 +189049,115713,Mind Bending,1451007747 +189049,115713,nudity (full frontal),1451007633 +189049,115713,pessimistic,1451007749 +189049,115713,plot twist,1451007621 +189049,115713,robots,1451007608 +189049,115713,sci-fi,1451007594 +189049,115713,technology,1451007616 +189049,115713,Tense,1451007730 +189049,115713,thought provoking,1451007598 +189049,115713,thriller,1451007630 +189049,115713,turing test,1451007640 +189049,121231,chase,1451008296 +189049,121231,Creepy,1451008239 +189049,121231,horror,1451008236 +189049,121231,Pacing,1451008250 +189049,121231,score,1451008244 +189049,121231,Shapeshifter,1451008305 +189049,121231,Suburban,1451008301 +189049,121231,Supernatural,1451008247 +189049,121231,teenagers,1451008268 +189049,121231,Urban Decay,1451008286 +189049,122886,Adam Driver,1450886044 +189049,122886,Anthony Daniels,1450886070 +189049,122886,BB-8,1450885878 +189049,122886,Carrie Fisher,1450885916 +189049,122886,Daisy Ridley,1450885958 +189049,122886,Fan service,1450885884 +189049,122886,franchise,1450885951 +189049,122886,Gwendoline Christie,1450886152 +189049,122886,Harrison Ford,1450885868 +189049,122886,J.J. Abrams,1450885875 +189049,122886,Jedi Knight,1450885932 +189049,122886,John Boyega,1450885885 +189049,122886,John Williams,1450886174 +189049,122886,Mark Hamill,1450885955 +189049,122886,Plot Recycling,1450885892 +189049,122886,Star Wars,1450885864 +189049,135506,Christianity,1451007543 +189049,135506,Religious,1451007539 +189049,135887,Animated,1451008370 +189049,135887,animation,1451008378 +189049,135887,banana,1451008385 +189049,135887,Funny,1451008372 +189049,135887,minions,1451008376 +189061,802,clarivoyance,1303798499 +189061,802,genius,1303798498 +189061,802,interesting concept,1303798486 +189061,802,John Travolta,1303798501 +189061,802,pretentious,1303798507 +189061,802,telekinesis,1303798484 +189061,74582,nerd wins,1303797587 +189061,74582,snark,1303797599 +189071,158,Christina Ricci,1218451667 +189071,1367,glen close,1218466235 +189071,3826,elizabeth shue,1218452092 +189071,3826,Kevin Bacon,1218452067 +189071,7451,Lindsay Lohan,1218452569 +189102,296,drugs,1428351567 +189102,296,Quentin Tarantino,1428351538 +189102,296,Samuel L. Jackson,1428351557 +189102,296,violence,1428351548 +189102,356,great soundtrack,1428351615 +189102,356,quirky,1428351642 +189102,356,Sexuality,1428351658 +189102,4973,cult film,1428351586 +189102,4973,feel-good,1428351487 +189102,6016,brazil,1428351670 +189130,1770,Nudity (Topless - Notable),1204391360 +189132,318,Morgan Freeman,1449121123 +189132,318,prison escape,1449121119 +189132,318,twist ending,1449121126 +189132,337,brother-brother relationship,1449033564 +189132,337,dysfunctional family,1449033575 +189132,337,Leonardo DiCaprio,1449033532 +189132,337,mental illness,1449033512 +189132,337,siblings,1449033520 +189132,337,small town,1449033523 +189132,527,based on a true story,1449121363 +189132,527,Steven Spielberg,1449121360 +189132,527,thought-provoking,1449121369 +189132,527,World War II,1449121358 +189132,593,Anthony Hopkins,1449121219 +189132,593,cannibalism,1449121210 +189132,593,psychology,1449121215 +189132,593,suspense,1449121213 +189132,1246,boarding school,1449136229 +189132,1246,Coming of age,1449136227 +189132,1246,High School,1449136220 +189132,2028,cinematography,1449121397 +189132,2028,historical,1449121401 +189132,2028,history,1449121394 +189132,2028,Steven Spielberg,1449121387 +189132,2028,Tom Hanks,1449121389 +189132,2028,World War II,1449121392 +189132,2762,ghosts,1449136274 +189132,2762,m. night shyamalan,1449136277 +189132,2762,twist ending,1449136271 +189132,3179,author:Frank McCourt,1449138590 +189132,3179,pulitzer prize winning,1449138584 +189132,3578,dialogue,1449034442 +189132,3578,drama,1449034349 +189132,3578,Epic,1449034417 +189132,3578,Hans Zimmer,1449034356 +189132,3578,heroism,1449034432 +189132,3578,Ridley Scott,1449034361 +189132,3578,Russell Crowe,1449034351 +189132,4306,comedy,1449046334 +189132,4306,Eddie Murphy,1449046351 +189132,4306,Funny,1449046343 +189132,4306,satire,1449046336 +189132,4306,witty,1449046353 +189132,4720,atmospheric,1449136307 +189132,4720,ghosts,1449136302 +189132,4720,twist ending,1449136299 +189132,4973,French,1449136186 +189132,4973,Paris,1449136162 +189132,4973,quirky,1449136156 +189132,4995,inspirational,1449033808 +189132,4995,mathematics,1449033833 +189132,4995,psychology,1449033830 +189132,4995,Russell Crowe,1449033816 +189132,4995,schizophrenia,1449033787 +189132,5989,con artists,1449476225 +189132,5989,Leonardo DiCaprio,1449476218 +189132,5989,Steven Spielberg,1449476242 +189132,5989,twists & turns,1449476222 +189132,5995,historical,1449121423 +189132,5995,holocaust,1449121419 +189132,5995,true story,1449121418 +189132,7361,Kate Winslet,1449121322 +189132,7361,nonlinear,1449121306 +189132,7361,romance,1449121318 +189132,7361,surreal,1449121308 +189132,7361,thought-provoking,1449121303 +189132,8360,Dreamworks,1449046378 +189132,8360,Eddie Murphy,1449046370 +189132,8360,Funny,1449046374 +189132,8360,hilarious,1449046372 +189132,8961,animation,1449120316 +189132,49530,Africa,1449121636 +189132,49530,Civil War,1449121640 +189132,49530,Leonardo DiCaprio,1449121633 +189132,55247,based on a true story,1449136133 +189132,55247,self discovery,1449136131 +189132,55247,travel,1449136135 +189132,55908,Excellent use of dialogue,1450082188 +189132,55908,immortality,1450082193 +189132,55908,intellectual,1450082185 +189132,55908,philosophical,1450082180 +189132,55908,thought-provoking,1450082182 +189132,60069,Animation,1449121483 +189132,60069,artificial intelligence,1449121503 +189132,60069,dystopia,1449121478 +189132,60069,emotional,1449121488 +189132,60069,inspirational,1449121496 +189132,60069,love story,1449121495 +189132,60069,pixar,1449121475 +189132,60069,post-apocalyptic,1449121501 +189132,60069,robots,1449121506 +189132,60069,Sci-Fi,1449121480 +189132,60069,space,1449121498 +189132,68954,computer animation,1449046163 +189132,68954,dreams,1449046168 +189132,68954,feel good movie,1449046172 +189132,68954,touching,1449046161 +189132,69481,anti-war,1449121666 +189132,69481,intense,1449121670 +189132,69481,realistic,1449121667 +189132,74458,insanity,1449121826 +189132,74458,Leonardo DiCaprio,1449121828 +189132,74458,Martin Scorsese,1449121838 +189132,74458,psychological,1449121833 +189132,74458,Psychological Thriller,1449121866 +189132,74458,twist ending,1449121831 +189132,76093,friendship,1449476275 +189132,81591,atmospheric,1449121712 +189132,81591,dark,1449121714 +189132,81591,mental illness,1449121717 +189132,81591,psychological,1449121710 +189132,81845,based on a true story,1449046230 +189132,81845,complex characters,1449046233 +189132,81845,drama,1449046235 +189132,81845,England,1449046248 +189132,81845,historical,1449046237 +189132,81845,Oscar (Best Picture),1449046262 +189132,81845,United Kingdom,1449046256 +189132,104841,3D effects,1449036952 +189132,104841,cinematography,1449036935 +189132,104841,intense,1449036949 +189132,104841,sandra bullock,1449036959 +189132,104841,space,1449036942 +189132,104841,visually stunning,1449036931 +189132,104841,zero gravity,1449036941 +189132,109487,father - child relationship,1449037008 +189132,109487,Hans Zimmer,1449036998 +189132,109487,physics,1449036989 +189132,109487,relativity,1449037004 +189132,109487,sci-fi,1449037002 +189132,109487,space travel,1449037022 +189132,109487,time-travel,1449036983 +189132,109487,wormhole,1449036992 +189132,122882,dystopian,1449046120 +189132,122882,post apocalypse,1449046122 +189132,122882,strong violent content,1449046101 +189132,122882,violence,1449046099 +189132,134130,mars,1449036882 +189132,134130,matt damon,1449036894 +189132,134130,realistic,1449036901 +189132,134130,space travel,1449036870 +189132,134130,Survival Instinct,1449036888 +189132,134853,coming of age,1449136004 +189132,134853,emotions,1449135999 +189132,134853,imaginative,1449136007 +189132,134853,Pixar,1449136000 +189132,134853,psychology,1449135992 +189137,260,classic sci-fi,1439143685 +189137,260,Science Fiction,1439143682 +189153,260,classic sci-fi,1441846693 +189153,260,Star Wars,1441846707 +189167,25944,acrobat,1306525332 +189167,25944,circus,1306525316 +189167,25944,clown,1306525343 +189167,88129,dont spend your time watching it,1316812817 +189167,88129,its just bad,1316812786 +189167,88129,nothing much,1316812797 +189182,51705,Audrey Tautou,1365183420 +189182,51705,French,1365183436 +189182,51705,PG13,1365183454 +189182,51705,romance,1365183429 +189182,51705,twist ending,1365183425 +189182,100440,nazis,1365182885 +189182,100440,ultra-violence,1365182877 +189186,1208,war movie,1145964593 +189186,1917,apocolypse,1145964538 +189205,1198,leather whip,1427991947 +189212,1293,based on a true story,1438941283 +189212,1293,India,1438941266 +189246,480,dinosaurs,1431204362 +189246,480,island,1431204362 +189246,480,sci-fi,1431204362 +189250,370,Funny as hell,1145837613 +189250,4886,well done,1145837611 +189256,296,cult,1420298012 +189256,296,good music,1420298012 +189256,296,quentin tarantino,1420298012 +189256,356,emotional and heroic,1422800488 +189256,356,great actor,1422800488 +189256,356,oscar winner,1422800488 +189256,593,exceptional acting,1425916408 +189256,593,great performances,1425916408 +189256,593,thriller,1425916408 +189256,1068,noir thriller,1368122900 +189256,1359,arnold,1368122972 +189256,1544,spielberg,1368123092 +189256,1693,spielberg,1368123092 +189256,2661,mars,1368122929 +189256,2762,twist ending,1172182560 +189256,3375,mars,1368122929 +189256,3489,spielberg,1368123092 +189256,3698,arnold,1368122972 +189256,3986,arnold,1368122972 +189256,3997,dragon,1368123048 +189256,4189,christian,1368122997 +189256,4189,jesus,1368122848 +189256,4220,cheerleading,1368122959 +189256,4370,spielberg,1368123092 +189256,4372,cheerleading,1368122959 +189256,4387,dragon,1368123048 +189256,4558,arnold,1368122972 +189256,4612,jesus,1368122849 +189256,5055,dragon,1368123048 +189256,5363,cheerleading,1368122959 +189256,5810,eminem,1137353615 +189256,5882,treasure,1368122878 +189256,6157,dark hero,1368122943 +189256,6683,bollywood,1368122828 +189256,6768,christian,1368122997 +189256,7004,arnold,1368122973 +189256,7217,noir thriller,1368122900 +189256,7318,boring,1137353758 +189256,7335,noir thriller,1368122900 +189256,7373,dark hero,1368122943 +189256,8965,dr. seuss,1368123059 +189256,26398,mars,1368122930 +189256,27788,Keira Knightley,1171130909 +189256,27788,twist ending,1172182740 +189256,34048,spielberg,1368123092 +189256,38038,cute,1139003200 +189256,41566,overrated,1137353726 +189256,43744,Cheating,1159811064 +189256,43744,Romance,1159811051 +189256,44399,family fun,1191568310 +189256,46974,9/11,1175614935 +189256,46974,courage,1175614938 +189256,46974,New York City,1175614942 +189256,46974,Nicolas Cage,1175614932 +189256,46974,true story,1175614927 +189256,47099,earnest,1175959260 +189256,47099,tearjerking,1175959284 +189256,47830,Bizzare,1169926574 +189256,48043,atmospheric,1178976052 +189256,48043,death,1178976091 +189256,48043,Disappointing,1178975776 +189256,48043,dreamlike,1178976096 +189256,48043,fountain of youth,1178975778 +189256,48043,Hugh Jackman,1178976065 +189256,48385,low humour,1169534928 +189256,48520,Jessica Simpson,1170742391 +189256,48560,Real story,1174797132 +189256,48738,History,1179226174 +189256,48738,Idi Amin,1179226186 +189256,48738,Uganda,1179226172 +189256,48780,imdb top 250,1172181717 +189256,48780,obvious,1172181736 +189256,48780,twists & turns,1172182388 +189256,48997,artistic,1174854844 +189256,48997,weird,1174854821 +189256,49278,paradox,1175883846 +189256,49278,sci-fi,1175883857 +189256,49278,val kilmer,1175883870 +189256,49772,Edward Norton,1183195183 +189256,50068,War in the eye of enemy,1179225808 +189256,50068,World War II,1179225820 +189256,50794,forceful,1176191997 +189256,50794,humorous,1176192001 +189256,50794,surprisingly good,1176191995 +189256,50798,funny,1178956457 +189256,51086,Jim Carrey,1184272897 +189256,51086,Sexualized violence,1184272899 +189256,51418,King's Crossing,1179003271 +189256,51418,London,1179003273 +189256,51418,Nudity (Topless - Brief),1179003274 +189256,51471,political drama,1191568777 +189256,51662,Based on a comic book,1183821504 +189256,51662,Based on comic,1183821457 +189256,51662,betrayal,1183821392 +189256,51662,blood,1183821454 +189256,51662,fighting,1183821466 +189256,51662,HEROIC MISSION,1183821451 +189256,51662,sexualized violence,1183821460 +189256,51662,stylized,1183821442 +189256,51662,sword fight,1183821520 +189256,51662,thermopylae,1183821420 +189256,51925,betrayal,1182192300 +189256,51925,out of order,1182192316 +189256,51925,Sandra Bullock,1182192284 +189256,51925,time travel,1182192288 +189256,51931,adam sandler,1191568099 +189256,51931,New York,1191568074 +189256,51931,post-traumatic stress disorder,1191568089 +189256,52281,2 movies in 1,1191260033 +189256,52281,Quentin Tarantino,1191260085 +189256,52281,Quinten Tarantino,1191260126 +189256,52281,violence,1191260075 +189256,52717,good idea,1189698317 +189256,52722,alter ego,1181240131 +189256,52722,Cheesy,1181240195 +189256,52722,comic book,1181240113 +189256,52722,Comic Book adaption,1181240101 +189256,52722,Kirsten Dunst,1181240192 +189256,52722,super-hero,1181240128 +189256,52722,superhero,1181240175 +189256,52722,Toby Maquire,1181240135 +189256,53972,action,1184397056 +189256,53972,action packed,1184397068 +189256,53972,bruce willis,1184397049 +189256,53972,hackers,1184397027 +189256,55118,Nudity (Topless - Brief),1200300066 +189256,55118,organized crime,1200300061 +189256,55118,Russian mafia,1200300064 +189256,57951,treasure,1368122878 +189256,58303,Holocaust,1204307157 +189256,59220,call center,1244133283 +189256,59220,comedy,1244133283 +189256,59220,india,1244133283 +189256,59220,outsource,1244133283 +189256,59220,romance,1244133283 +189256,60684,dark hero,1368122943 +189256,65230,dogs,1244133014 +189256,65230,drama and commedy,1244133013 +189256,65230,marriage,1244132948 +189256,65230,Owen Wilson,1244132951 +189256,65230,pregnancy,1244132943 +189256,65230,sad but good,1244133013 +189256,68554,conspiracy theory,1368123035 +189256,74624,christian,1368122997 +189256,79134,actors,1286745753 +189256,79134,have it's funny moments,1286745734 +189256,79134,No plot at al,1286745746 +189256,81562,mountain climbing,1368123069 +189256,84601,short-term memory loss,1368123081 +189256,86781,slow,1437845731 +189256,86880,treasure,1368122878 +189256,90746,treasure,1368122878 +189256,91529,dark hero,1368122943 +189256,91886,family,1420298090 +189256,91886,true story,1420298085 +189256,95875,mars,1368122929 +189256,96417,Adrenaline,1354913589 +189256,96417,Boring after 2/3,1354913588 +189256,96417,humorous,1354913589 +189256,96417,pace,1354913589 +189256,97752,philosophy,1437845827 +189256,97752,slow paced,1437845841 +189256,97752,Tom Hanks,1437845809 +189256,97752,too long,1437845819 +189256,104944,abuse,1423295341 +189256,104944,disturbing,1423295317 +189256,104944,foster care,1423295355 +189256,104944,Foster Home,1423295363 +189256,104944,good acting,1423295324 +189256,104944,sexual abuse,1423295352 +189256,106920,boring,1437845786 +189256,106920,Scarlett Johansson,1437845772 +189256,107406,poor plot,1437902103 +189256,107406,stupid plot,1437902125 +189256,108548,TV series,1420298139 +189256,111921,good acting,1410593801 +189256,112183,annoying soundtrack,1423295228 +189256,112183,Edward Norton,1423295208 +189256,112183,great performances,1423295205 +189256,112183,non-closed ending,1423295250 +189256,112552,intense,1426913721 +189256,112552,J.K. Simmons,1426913695 +189256,113275,cooking,1437845524 +189256,113275,indi food,1437845532 +189256,113275,Lasse Hallström,1437845518 +189256,113275,restraunt wars,1437845535 +189256,114935,based on a book,1420358388 +189256,114935,bisexual,1420358355 +189256,114935,confusing,1420358343 +189256,114935,good acting,1420358348 +189256,115680,average acting,1434210702 +189256,115680,future,1434210753 +189256,115680,keep you a wake,1434210729 +189256,115680,surprising,1434210706 +189256,115680,thriller,1434210739 +189256,115680,time travel,1434210669 +189256,115680,to watch,1434210743 +189256,115680,twist ending,1434210741 +189256,115680,twists,1434210705 +189256,117194,family,1420298054 +189256,117194,sea world,1420298059 +189256,118082,disturbing,1437845415 +189256,118082,sick,1437845417 +189256,129354,thief,1434210816 +189256,129354,unexpected end,1434210812 +189256,130490,Action,1426999258 +189256,131013,hilarious,1434211046 +189256,131013,prison,1434211029 +189256,131013,will ferrel,1434211036 +189258,2810,distorted reality,1418764245 +189258,2810,Satoshi Kon,1418764239 +189258,3274,room-mate from hell,1418763801 +189258,99126,drama,1423549099 +189258,99126,romance,1423549099 +189258,99126,strong female lead,1423549099 +189258,119065,animation,1421798964 +189258,119065,mystery,1421798964 +189258,119065,scooby-doo,1421798964 +189258,119065,supernatural,1421798964 +189265,260,good for kids,1433842116 +189265,260,nice future thinking,1433842109 +189269,4223,World War II,1146520365 +189269,6902,ummarti2006,1181258352 +189269,52042,Nudity (Topless),1199399910 +189298,260,sci-fi,1433823449 +189298,260,space opera,1433823442 +189302,260,cult classic,1436402960 +189302,260,hero's journey,1436402977 +189302,260,sci-fi,1436402966 +189302,6711,Amazing Cinematography,1436404000 +189302,6711,complex characters,1436404020 +189302,6711,intelligent,1436403995 +189302,6711,Melancholic,1436404003 +189302,6711,philosophical,1436404015 +189302,6711,poignant,1436403991 +189302,6711,wistful,1436403987 +189302,7361,artistic,1436403842 +189302,7361,beautiful,1436403872 +189302,7361,creative,1436403854 +189302,7361,dreamlike,1436403893 +189302,7361,imagination,1436403864 +189302,7361,love,1436403890 +189302,7361,melancholy,1436403876 +189302,7361,philosophy,1436403831 +189302,7361,quirky,1436403880 +189302,7361,surreal,1436403883 +189302,54001,based on a book,1436403697 +189302,54001,beautiful,1436403652 +189302,54001,imagination,1436403678 +189302,54001,journey,1436403688 +189302,54001,magic,1436403633 +189302,54001,magic school,1436403639 +189302,54001,saga,1436403683 +189302,93721,craftmanship,1436404502 +189302,93721,culinary,1436404479 +189302,93721,documentary,1436404499 +189302,93721,dreams,1436404489 +189302,93721,expert,1436404492 +189302,93721,food,1436404481 +189302,93721,minimalist,1436404504 +189302,109487,beautiful,1436403555 +189302,109487,dystopian world,1436403548 +189302,109487,fate,1436403535 +189302,109487,physics,1436403526 +189302,109487,sci-fi,1436403505 +189302,109487,space exploration,1436403518 +189302,109487,time-travel,1436403498 +189312,32,original,1369012048 +189312,296,storytelling,1369012125 +189312,541,Harrison Ford,1358129009 +189312,541,philosophical,1358129000 +189312,541,sci-fi,1358128984 +189312,1089,original,1369012048 +189312,1196,adventure,1356990434 +189312,1196,Harrison Ford,1356990430 +189312,1196,robots,1356990437 +189312,1214,aliens,1357091222 +189312,1214,horror,1357091218 +189312,1214,sci-fi,1357091224 +189312,1214,space,1357091226 +189312,2291,original,1369012048 +189312,2571,alternate reality,1356989029 +189312,2571,artificial intelligence,1356989032 +189312,2571,sci-fi,1356989041 +189312,2571,thought-provoking,1356989055 +189312,2672,alternate reality,1356989277 +189312,2672,crap ending,1356989290 +189312,2672,ontoleptic,1356989354 +189312,2672,simulated reality,1356989279 +189312,2762,mindfuck,1357091308 +189312,2762,twist ending,1357091304 +189312,2916,alternate reality,1356989535 +189312,2916,alternate universe,1356989537 +189312,2916,Arnold Schwarzenegger,1356989540 +189312,2916,memory,1356989547 +189312,2916,virtual reality,1356989552 +189312,3994,storytelling,1369012125 +189312,4226,black and white,1356989151 +189312,4226,psychology,1356989142 +189312,4226,storytelling,1369012125 +189312,4226,twists & turns,1356989139 +189312,5418,amnesia,1356989690 +189312,5418,assassin,1356989685 +189312,5418,espionage,1356989687 +189312,5418,memory,1356989695 +189312,7438,storytelling,1369012125 +189312,8665,amnesia,1356989621 +189312,8665,assassin,1356989624 +189312,8665,espionage,1356989629 +189312,32587,storytelling,1369012125 +189312,34319,cloning,1356989434 +189312,34319,genetics,1356989417 +189312,34319,immortality,1356989438 +189312,34319,sci-fi,1356989424 +189312,34319,scifi,1356989427 +189312,34319,surprise ending,1356989420 +189312,34405,adventure,1356990377 +189312,34405,assassin,1356990372 +189312,34405,sci-fi,1356990369 +189312,96079,James Bond,1358129119 +189312,98809,beautiful scenery,1358129077 +189312,98809,big budget,1358129096 +189312,98809,fantasy world,1358129079 +189312,98809,Tolkien,1358129071 +189312,98809,too long,1358129087 +189317,2,Robin Williams,1145691722 +189317,32,Brad Pitt,1145690623 +189317,32,Bruce Willis,1145690620 +189317,110,Mel Gibson,1145526421 +189317,141,Robin Williams,1145691635 +189317,165,Bruce Willis,1145690835 +189317,165,Samuel L. Jackson,1145690835 +189317,172,Keanu Reeves,1145693188 +189317,185,Sandra Bullock,1145694528 +189317,252,Meg Ryan,1145692349 +189317,252,Tim Robbins,1145692386 +189317,253,Brad Pitt,1145526800 +189317,253,Tom Cruise,1145526809 +189317,296,Bruce Willis,1145690924 +189317,296,Samuel L. Jackson,1145690940 +189317,350,John Grisham,1145526895 +189317,356,Tom Hanks,1145692001 +189317,368,Mel Gibson,1145689866 +189317,377,Keanu Reeves,1145694371 +189317,377,Sandra Bullock,1145694375 +189317,380,Arnold Schwarzenegger,1145692979 +189317,382,Jack Nicholson,1145693752 +189317,454,John Grisham,1145526821 +189317,454,Tom Cruise,1145526833 +189317,485,Arnold Schwarzenegger,1145693153 +189317,500,Robin Williams,1145691594 +189317,520,Mel Brooks,1145694700 +189317,539,Meg Ryan,1145692145 +189317,539,Tom Hanks,1145692142 +189317,544,Bruce Willis,1145691048 +189317,648,Tom Cruise,1145526817 +189317,733,Nicolas Cage,1145692451 +189317,733,Sean Connery,1145692479 +189317,765,Robin Williams,1145691756 +189317,788,Eddie Murphy,1145608762 +189317,805,John Grisham,1145526885 +189317,832,Mel Gibson,1145689796 +189317,996,Bruce Willis,1145690980 +189317,1006,John Grisham,1145526893 +189317,1036,Bruce Willis,1145690639 +189317,1246,Robin Williams,1145691589 +189317,1258,Jack Nicholson,1145693651 +189317,1258,Stephen King,1145693653 +189317,1265,Bill Murray,1145526367 +189317,1370,Bruce Willis,1145690633 +189317,1527,Bruce Willis,1145527048 +189317,1527,Luc Besson,1145527103 +189317,1527,sci-fi,1145527048 +189317,1556,Sandra Bullock,1145694563 +189317,1573,John Travolta,1145692636 +189317,1573,Nicolas Cage,1145692634 +189317,1597,Mel Gibson,1145689829 +189317,1625,michael douglas,1145693105 +189317,1672,Danny DeVito,1145691422 +189317,1672,John Grisham,1145691315 +189317,1672,Matt Damon,1145691323 +189317,1702,Robin Williams,1145691794 +189317,1704,Ben Affleck,1145691564 +189317,1704,Matt Damon,1145691356 +189317,1704,Robin Williams,1145691336 +189317,1784,Jack Nicholson,1145693687 +189317,1833,Bruce Willis,1145691028 +189317,1835,Meg Ryan,1145692374 +189317,1835,Nicolas Cage,1145692374 +189317,1917,Bruce Willis,1145691059 +189317,1961,Tom Cruise,1145526795 +189317,2000,Mel Gibson,1145689886 +189317,2001,Mel Gibson,1145689907 +189317,2028,Tom Hanks,1145691346 +189317,2058,Kevin Spacey,1145690376 +189317,2058,Samuel L. Jackson,1145690376 +189317,2231,Edward Norton,1145691300 +189317,2231,Matt Damon,1145691234 +189317,2253,Robin Williams,1145691772 +189317,2268,Jack Nicholson,1145693642 +189317,2268,Tom Cruise,1145526785 +189317,2340,Brad Pitt,1145693565 +189317,2353,Will Smith,1145527215 +189317,2375,Tom Hanks,1145692215 +189317,2405,Kathleen Turner,1145692840 +189317,2424,Meg Ryan,1145692197 +189317,2424,Tom Hanks,1145692196 +189317,2431,Robin Williams,1145691727 +189317,2490,Mel Gibson,1145689900 +189317,2762,Bruce Willis,1145690608 +189317,2797,Tom Hanks,1145692138 +189317,2882,Robin Williams,1145691719 +189317,2959,Brad Pitt,1145526653 +189317,2997,John Cusack,1145693063 +189317,2997,John Malkovich,1145693019 +189317,3108,Robin Williams,1145691656 +189317,3147,Stephen King,1145692205 +189317,3147,Tom Hanks,1145692202 +189317,3160,Tom Cruise,1145526842 +189317,3258,Bruce Willis,1145691040 +189317,3301,Bruce Willis,1145690704 +189317,3301,Matthew Perry,1145690718 +189317,3448,Robin Williams,1145691598 +189317,3489,Robin Williams,1145691702 +189317,3623,Tom Cruise,1145526846 +189317,3744,Samuel L.Jackson,1145690509 +189317,3753,Mel Gibson,1145689794 +189317,3978,Charlize Theron,1145691507 +189317,3978,Matt Damon,1145691476 +189317,3978,Will Smith,1145691476 +189317,3994,Bruce Willis,1145690466 +189317,3994,Samuel L. Jackson,1145690466 +189317,4018,Mel Gibson,1145689837 +189317,4022,Tom Hanks,1145692085 +189317,4023,Nicolas Cage,1145692531 +189317,4164,Samuel L.Jackson,1145690554 +189317,4677,Tom Hanks,1145692262 +189317,4844,Bruce Willis,1145690899 +189317,4901,Brad Pitt,1145693598 +189317,4963,George Clooney,1145691340 +189317,4963,Matt Damon,1145691366 +189317,4992,Meg Ryan,1145692356 +189317,5107,Bruce Willis,1145690914 +189317,5418,Matt Damon,1145526416 +189317,5464,Tom Hanks,1145692050 +189317,5528,Robin Williams,1145691620 +189317,5989,Leonardo DiCaprio,1145692129 +189317,5989,Steven Spielberg,1145692060 +189317,5989,Tom Hanks,1145692058 +189317,6287,Jack Nicholson,1145693735 +189317,6595,Colin Farrell,1145690502 +189317,6595,Samuel L. Jackson,1145690502 +189317,6708,Nicolas Cage,1145692773 +189317,6879,John Cusack,1145526997 +189317,6879,John Grisham,1145526997 +189317,7000,Bruce Willis,1145690994 +189317,7007,Bruce Willis,1145690861 +189317,7048,Martin Lawrence,1145609027 +189317,7048,Tim Robbins,1145609015 +189317,7102,Tom Hanks,1145692230 +189317,7143,Tom Cruise,1145526763 +189317,7381,Bruce Willis,1145691101 +189317,7381,Matthew Perry,1145691111 +189317,7458,Brad Pitt,1145526681 +189317,8529,Tom Hanks,1145692045 +189317,8665,Matt Damon,1145691332 +189317,8972,Nicolas Cage,1145692468 +189317,8984,George Clooney,1145691343 +189317,8984,Matt Damon,1145691373 +189317,26745,Danny DeVito,1145692936 +189317,32029,Bruce Willis,1145690656 +189317,34437,Bill Murray,1145694171 +189328,134,illegal art,1184949668 +189328,1073,esoteric plotlines,1184949528 +189328,1303,based on true story,1197931329 +189328,1303,esoteric plotlines,1184949416 +189328,1500,80s soundtrack,1184362120 +189328,4873,A MUST SEE,1184949577 +189328,6148,unintentional kitsch,1184949562 +189328,7817,esoteric plotlines,1184949492 +189328,26231,esoteric plotlines,1197931302 +189330,3030,akira kurosawa,1338084833 +189330,3030,black comedy,1338084822 +189350,3969,sad,1426001983 +189364,260,action,1438195222 +189364,260,sci-fi,1438195226 +189390,260,classic sci-fi,1442248493 +189390,260,influential,1442248509 +189398,162,documentary,1169331632 +189398,162,netflixq,1169331632 +189398,363,documentary,1169331767 +189398,471,netflixq,1170436332 +189398,608,dark comedy,1168637784 +189398,668,satyajit ray,1169330823 +189398,670,satyajit ray,1169330613 +189398,916,netflixq,1169329880 +189398,926,classic,1169331102 +189398,1111,documentary,1169331318 +189398,1172,netflixq,1168795042 +189398,1193,Jack Nicholson,1170437655 +189398,1225,Period piece,1168637850 +189398,1247,classic,1169331661 +189398,2291,owned,1168793832 +189398,2346,original is better,1169063088 +189398,3174,seen in theater,1168794474 +189398,3521,japanese tourists,1168793935 +189398,3521,owned,1168793935 +189398,3742,classic,1169330968 +189398,3819,owned,1168793863 +189398,3925,black and white,1168793901 +189398,3925,jim jarmusch,1168793901 +189398,3925,owned,1168793872 +189398,4325,antonioni,1169330802 +189398,5288,documentary,1169331245 +189398,5909,disturbing,1169331086 +189398,5909,netflix,1169331086 +189398,6327,documentary,1169331400 +189398,6440,netflixq,1168794986 +189398,6709,seen in theater,1168795096 +189398,7089,fellini,1169331595 +189398,7096,documentary,1169331461 +189398,7123,william s. burroughs,1168638536 +189398,7206,modern,1168638337 +189398,7206,owned,1168793822 +189398,7209,jacques tati,1169331716 +189398,7209,netflixq,1169331730 +189398,8195,antonioni,1169330634 +189398,8373,remake,1169063036 +189398,26052,netflix,1169330725 +189398,26094,antonioni,1169330313 +189398,26350,antonioni,1170436719 +189398,27879,netflixq,1169331000 +189398,33154,documentary,1169331534 +189398,33154,netflix,1169331534 +189398,33838,documentary,1169331471 +189398,34153,owned,1168793943 +189398,37729,stop-motion,1168794108 +189398,40819,owned,1168793787 +189398,44195,owned,1168793798 +189398,44195,spin,1168643746 +189409,914,old classic,1186958735 +189409,916,romantic comedy,1186959231 +189409,1244,Woody Allen,1186958829 +189409,1377,super-hero,1186958469 +189409,1587,action,1186959104 +189409,1590,space,1186959115 +189409,1779,sci-fi,1186959170 +189409,2023,gangsters,1186958534 +189409,2405,action,1186959133 +189409,2424,romantic comedy,1186958706 +189409,2431,DOCTORS AND PATIENTS,1186956767 +189409,2478,funny,1186959066 +189409,3617,funny,1186958955 +189409,3752,funny,1186958890 +189409,3916,sports,1186958948 +189409,4262,gangsters,1186958903 +189409,4270,cool plot,1186958935 +189409,4896,Fiction,1186958445 +189409,4975,strange story,1186959050 +189409,6218,indians,1186959084 +189409,6373,funny,1186956809 +189409,6378,cool plot,1186958869 +189409,6870,serious,1186959142 +189409,7438,cool fighting,1186958568 +189409,8622,serious,1186958979 +189411,260,action,1440072208 +189411,260,space adventure,1440072203 +189451,48516,Martin Scorsese,1172606429 +189451,48516,remake,1172606439 +189451,48516,violence,1172606436 +189460,260,action,1444768343 +189460,260,space adventure,1444768330 +189474,175,controversial,1415893629 +189474,175,Misogynistic,1415893745 +189474,175,New York City,1415893750 +189474,175,non judgemental,1415893697 +189474,194,multiple storylines,1333643035 +189474,232,cooking,1415554602 +189474,232,food,1415554594 +189474,318,Morgan Freeman,1291498323 +189474,318,reflective,1291498343 +189474,318,Stephen King,1291498320 +189474,318,thought-provoking,1291498319 +189474,410,quirky,1333790421 +189474,555,dark comedy,1342031063 +189474,714,beautiful,1344301451 +189474,714,bleak,1344301493 +189474,714,Johnny Depp,1344301471 +189474,714,melancholy,1344301475 +189474,714,road trip,1344301484 +189474,714,visually appealing,1344301488 +189474,750,dark comedy,1341066189 +189474,902,quirky,1333663060 +189474,1211,angel,1344301908 +189474,1211,Berlin,1344301911 +189474,1211,enigmatic,1344301915 +189474,1211,poetry,1344301919 +189474,1211,Wim Wenders,1344301921 +189474,1266,Clint Eastwood,1292179345 +189474,1273,feel-good,1292179400 +189474,1273,Jim Jarmusch,1292179396 +189474,1273,Roberto Benigni,1292179388 +189474,1273,stylized,1292179391 +189474,1305,bittersweet,1344301286 +189474,1305,deliberate,1344301363 +189474,1305,poignant,1344301351 +189474,1394,Coen Brothers,1333808453 +189474,1394,Nicolas Cage,1343429200 +189474,1394,off-beat comedy,1343429203 +189474,1394,witty,1343429211 +189474,1405,great soundtrack,1379798591 +189474,1500,anti-hero,1344899275 +189474,1500,classic,1344899269 +189474,1500,Dan Aykroyd,1344899272 +189474,1500,dark comedy,1344899261 +189474,1500,good acting,1344899258 +189474,1500,Great Ensemble Cast,1344899264 +189474,1500,predictable,1344899247 +189474,1639,great dialogue,1344635574 +189474,1639,Jason Lee,1344635552 +189474,1639,Jason Mewes,1344635557 +189474,1639,Kevin Smith,1334332140 +189474,1639,seen more than once,1344635548 +189474,1748,dystopia,1334277777 +189474,1748,Post apocalyptic,1343423136 +189474,2021,David Lynch,1416243482 +189474,2021,Frank Herbert,1416243480 +189474,2021,sci-fi,1416243477 +189474,2021,terrible adaptation,1416243496 +189474,2248,John Cusack,1344898432 +189474,2248,Overrated,1344898423 +189474,2318,social commentary,1341876890 +189474,2395,Bill Murray,1341066196 +189474,2427,Adrien Brody,1416534146 +189474,2427,atmospheric,1416533577 +189474,2427,cinematography,1416533580 +189474,2427,lyrical,1416534123 +189474,2427,reflective,1416533585 +189474,2427,Sean Penn,1416534119 +189474,2427,World War II,1416533575 +189474,2657,cult film,1333662564 +189474,2657,Quirky,1333662567 +189474,2692,alternate endings,1344301562 +189474,2692,alternate reality,1344301568 +189474,2692,notable soundtrack,1344301580 +189474,2692,thought-provoking,1344301583 +189474,2692,time loop,1344301586 +189474,2692,whimsical,1344301588 +189474,2712,Stanley Kubrick,1333660948 +189474,2810,has some plot problems,1344033187 +189474,2916,Philip K. Dick,1292272835 +189474,3000,fantasy,1344359091 +189474,3000,fantasy world,1344359098 +189474,3000,Hayao Miyazaki,1344359122 +189474,3000,imdb top 250,1344359137 +189474,3000,Studio Ghibli,1344359124 +189474,3147,great acting,1415824164 +189474,3147,Sam Rockwell,1415824172 +189474,3147,Stephen King,1415824160 +189474,3176,psychology,1333662235 +189474,3176,serial killer,1333662231 +189474,3261,1990s,1413932989 +189474,3261,wired 50 greatest soundtracks,1413932995 +189474,3328,Forest Whitaker,1406841214 +189474,3328,great soundtrack,1406841217 +189474,3328,Jim Jarmusch,1406841220 +189474,3328,melancholy,1406841224 +189474,3328,witty,1406841229 +189474,3424,John Turturro,1291498482 +189474,3424,spike lee,1291498498 +189474,3481,hilarious,1344635410 +189474,3481,Jack Black,1344635400 +189474,3481,John Cusack,1344635394 +189474,3481,music,1344635389 +189474,3543,setting:Baltimore,1415630173 +189474,3556,Kirsten Dunst,1343422831 +189474,4011,boxing,1343422927 +189474,4011,Brad Pitt,1343422925 +189474,4011,ensemble cast,1343422908 +189474,4011,Guy Ritchie,1343422901 +189474,4011,imdb top 250,1343422912 +189474,4011,quirky,1343422919 +189474,4649,satirical,1424628169 +189474,4873,dreamlike,1417108144 +189474,4873,dreams,1417108159 +189474,4873,existentialism,1417108137 +189474,4873,philosophy,1417108230 +189474,4873,quirky,1417108140 +189474,4873,Richard Linklater,1417108246 +189474,4873,thought-provoking,1417108155 +189474,4995,mathematics,1345069328 +189474,4995,Oscar (Best Picture),1345069323 +189474,4995,Russell Crowe,1345069314 +189474,4995,schizophrenia,1345069317 +189474,5010,Ewan McGregor,1425134249 +189474,5010,Ridley Scott,1425134234 +189474,5014,Sean Penn,1415737438 +189474,5014,thought-provoking,1415737447 +189474,5445,dystopia,1345385546 +189474,5445,futuristic,1345385536 +189474,5445,Philip K. Dick,1345385532 +189474,5445,sci-fi,1345385540 +189474,5464,boring,1352676907 +189474,5464,cinematography,1352676920 +189474,5464,Daniel Craig,1352676897 +189474,5464,Tom Hanks,1352676927 +189474,5508,rock and roll,1341078448 +189474,5574,bad acting,1415737286 +189474,5574,cars,1415737278 +189474,5574,Jason Statham,1415737276 +189474,5673,Philip Seymour Hoffman,1384090133 +189474,5673,quirky,1384090137 +189474,5878,Almodovar,1415737701 +189474,5878,Lonelyness,1415737740 +189474,5878,sexuality,1415737671 +189474,5903,bullet ballet,1415738074 +189474,5903,Christian Bale,1415738063 +189474,5903,cult fi,1415738135 +189474,5903,dystopia,1415738058 +189474,5903,post-apocalyptic,1415738066 +189474,5903,predictable,1415738080 +189474,5903,sci-fi,1415738122 +189474,5903,simplistic,1415738203 +189474,5903,thought-provoking,1415738112 +189474,5903,totalitarianism,1415738061 +189474,5954,drugs,1291498566 +189474,5954,Edward Norton,1291498567 +189474,5954,Philip Seymour Hoffman,1291498572 +189474,5954,powerful ending,1291498587 +189474,5992,1950s housewives,1415620547 +189474,5992,based on a book,1415620560 +189474,5992,intellectual,1415620570 +189474,5992,Julianne Moore,1415737922 +189474,5992,queer,1415620565 +189474,5992,suburbia,1415737931 +189474,5992,Virginia Woolf,1415620561 +189474,5992,writers,1415737973 +189474,6184,David Bowie,1417899294 +189474,6270,Akira Kurosawa,1344301415 +189474,6270,dreams,1344301421 +189474,6281,Colin Farrell,1402192087 +189474,6281,Philip K. Dick,1402192091 +189474,6283,comic book,1342822162 +189474,6283,sci-fi,1333643281 +189474,6283,space,1341066158 +189474,6867,character driven,1417176160 +189474,6867,loneliness,1417176090 +189474,6867,Patricia Clarkson,1417176157 +189474,6867,Peter Dinklage,1417176126 +189474,6867,Thomas McCarthy,1417176246 +189474,6867,understated,1417176096 +189474,6934,post-apocalyptic,1333662202 +189474,6953,Benicio Del Toro,1291499007 +189474,6953,Sean Penn,1291499018 +189474,7046,Jack Nicholson,1379687225 +189474,7046,seen more than once,1379687179 +189474,7377,grim,1343415616 +189474,7377,Kevin Spacey,1343415621 +189474,7377,Ryan Gosling,1343415628 +189474,8254,beautiful music,1344301509 +189474,8254,Faye Dunaway,1344301519 +189474,8254,magic realism,1344301531 +189474,8340,Clint Eastwood,1333643145 +189474,8644,sci-fi,1333662218 +189474,8914,clever,1408665774 +189474,8914,complicated plot,1408665769 +189474,8914,mindfuck,1408665763 +189474,8914,sci-fi,1341066170 +189474,8914,thought-provoking,1408665758 +189474,27831,British gangster,1415737130 +189474,27831,daniel craig,1415737145 +189474,27831,different perspectives,1415737192 +189474,27831,Exquisite plotting.,1415737158 +189474,27831,stylish,1415737143 +189474,30812,Martin Scorsese,1333643225 +189474,34405,dystopia,1415738233 +189474,34405,Firefly,1415738235 +189474,34405,Joss Whedon,1415738246 +189474,34405,quirky,1415738239 +189474,34405,sci-fi,1415738228 +189474,34405,space,1415738231 +189474,34405,space opera,1415738388 +189474,34405,witty,1415738427 +189474,36535,Great Soundtrack,1352682864 +189474,36535,Holocaust,1352682868 +189474,37384,Dane Cook,1415659028 +189474,37384,homophobic,1415659073 +189474,37384,restaurant,1415659057 +189474,37384,workplace,1415658997 +189474,38061,crude humor,1408535691 +189474,38061,Robert Downey Jr.,1408535693 +189474,39381,nick cave,1292180933 +189474,39427,Ewan McGregor,1344898561 +189474,39427,incomprehensible,1344898563 +189474,39427,ryan gosling,1344898580 +189474,39427,thought provoking,1344898581 +189474,44665,twist ending,1343422858 +189474,45728,Kevin Smith,1334653994 +189474,47610,Christian Bale,1343423321 +189474,47610,Edward Norton,1343423311 +189474,47997,dark comedy,1379798421 +189474,47997,dystopia,1379798417 +189474,47997,Luke Wilson,1379798429 +189474,47997,social commentary,1379798438 +189474,47997,thought provoking,1379798445 +189474,48783,Clint Eastwood,1415734941 +189474,48783,iwo jima,1415734956 +189474,48783,patriotic,1415734938 +189474,53123,musical,1345344981 +189474,55442,comic book,1343908409 +189474,55442,fascism,1343908411 +189474,55442,History,1343908394 +189474,55442,humorous,1343908406 +189474,55442,social commentary,1343908397 +189474,56286,Bob Dylan,1418416828 +189474,56286,cate blanchett,1418416834 +189474,56715,Tom Waits,1292178303 +189474,56782,Daniel Day-Lewis,1416606436 +189474,56782,paul dano,1416606473 +189474,56782,visually appealing,1416606455 +189474,58303,ethical dilemma,1343423057 +189474,58303,Holocaust,1333643134 +189474,58303,thought-provoking,1343423063 +189474,58998,good dialogue,1376689762 +189474,58998,hilarious,1376689766 +189474,60684,social commentary,1333917162 +189474,61024,bromantic,1345071115 +189474,61024,James Franco,1345071122 +189474,61024,terrible ending,1345071131 +189474,61024,unfunny,1345071128 +189474,61132,Robert Downey Jr.,1379799026 +189474,61132,Tom Cruise,1379799029 +189474,61132,Vietnam War,1379799032 +189474,62849,Gerard Butler,1402321496 +189474,62849,good soundtrack,1402321492 +189474,62849,Guy Ritchie,1402321484 +189474,63113,007,1415737333 +189474,63113,all action,1415737410 +189474,63113,Daniel Craig,1415737363 +189474,63113,killer as protagonist,1415737354 +189474,64614,Clint Eastwood,1341065885 +189474,66097,alternate reality,1415737521 +189474,66097,dark,1415737515 +189474,66097,dark fairy tale,1415737568 +189474,66097,dystopia,1415737529 +189474,66097,Neil Gaiman,1415737523 +189474,66097,Parallels worlds,1415737539 +189474,66097,visually stunning,1415737533 +189474,67087,Jason Segel,1344635219 +189474,69481,anti-hero,1415737771 +189474,69481,anti-war,1415737804 +189474,69481,Guy Pearce,1415737785 +189474,69481,realistic,1415737808 +189474,69481,thoughtful,1415737764 +189474,71156,Ewan McGregor,1379799091 +189474,71156,Jeff Bridges,1379799089 +189474,71156,weak ending,1379799094 +189474,71579,bittersweet,1416507617 +189474,71579,predictable,1416507605 +189474,71899,character study,1418416922 +189474,71899,Toni Collette,1418416914 +189474,73023,Jeff Bridges,1344898945 +189474,73023,Maggie Gyllenhaal,1344898941 +189474,73023,seen on airplane,1344898957 +189474,73023,unlikely romance,1344898948 +189474,77561,lack of character depth,1379686108 +189474,77561,Marvel,1343416110 +189474,77561,Robert Downey Jr.,1379686100 +189474,77561,superhero,1343416113 +189474,79132,alternate reality,1343423245 +189474,83132,detail,1345345054 +189474,83132,Hiromasa Yonebayashi,1345345057 +189474,83132,Studio Ghibli,1345345060 +189474,84152,Bradley Cooper,1420290591 +189474,84152,thought provoking,1420290577 +189474,84152,transhumanism,1420290584 +189474,85414,time travel,1342753959 +189474,86332,comic book,1334653874 +189474,89470,apocalypse,1341869776 +189474,89470,bad science,1343422993 +189474,89470,great soundtrack,1343423017 +189474,89470,Jude Law,1343423009 +189474,90624,Gerard Butler,1345345468 +189474,90624,pious,1345345340 +189474,90624,superficial,1345345453 +189474,92694,Ewan McGregor,1426789798 +189474,94864,predictable,1379685922 +189474,94864,Ridley Scott,1379685925 +189474,94864,space travel,1379685929 +189474,95441,bromantic comedy,1376689656 +189474,95441,crude humor,1376689649 +189474,95441,Mark Wahlberg,1376689642 +189474,95441,predictable,1376689635 +189474,95558,16mm,1356899145 +189474,95558,Louisiana,1356899109 +189474,95558,original,1356899114 +189474,95875,author:Philip K. Dick,1343489863 +189474,96610,dystopia,1379685857 +189474,96610,sci-fi,1379685847 +189474,97306,Christopher Walken,1406744049 +189474,97306,clever,1406744051 +189474,97306,Colin Farrell,1406744095 +189474,97306,edgy,1406744081 +189474,97306,metafilm,1406744077 +189474,97306,Sam Rockwell,1406744060 +189474,97306,Woody Harrelson,1406744072 +189474,99917,artistic,1417701384 +189474,99917,sci-fi,1417701389 +189474,102123,apocalypse,1379776729 +189474,102123,hilarious,1379776738 +189474,102123,James Franco,1379776734 +189474,102123,movie business,1379776748 +189474,105952,documentary,1420290353 +189474,105952,multiple storylines,1420290353 +189474,105952,restaurant,1416760847 +189474,105952,restaurant world,1420290353 +189474,106766,atmospheric,1401977045 +189474,106766,cinematography,1401977053 +189474,106766,Coen Brothers,1401977040 +189474,106916,Anti-Hero,1401976438 +189474,106916,bittersweet,1401976471 +189474,106916,Christian Bale,1401976451 +189474,106916,lack of development,1401976464 +189474,106916,Louis C.K.,1401976445 +189474,106916,soundtrack,1401976441 +189474,107771,atmospheric,1425124604 +189474,107771,Jim Jarmusch,1425124606 +189474,108928,Bill Murray,1415734673 +189474,108928,Great Topic,1415736707 +189474,108928,John Goodman,1415734679 +189474,108928,no character development,1415734686 +189474,108928,Superficial,1415736744 +189474,108928,WWII,1415734676 +189474,109374,Edward Norton,1424296281 +189474,109374,Jeff Goldblum,1424296292 +189474,109374,Ralph Fiennes,1424296286 +189474,109374,Wes Anderson,1424296282 +189474,109487,bad dialogue,1423840337 +189474,109487,Christopher Nolan,1423840312 +189474,109487,Matthew McConaughey,1423840354 +189474,109487,sentimental,1423840326 +189474,111235,movie business,1416333247 +189474,111443,cooking,1413925713 +189474,111443,food,1413925717 +189474,111443,predictable,1413925722 +189474,111759,Alien Invasion,1415832593 +189474,111759,Disappointing ending,1415832732 +189474,111759,original plot,1415832568 +189474,111759,powersuit,1415832623 +189474,111759,Reluctant Hero,1415832631 +189474,111759,sci-fi,1415832571 +189474,112183,Alejandro González Iñárritu,1423948472 +189474,112183,Edward Norton,1423948449 +189474,112183,great performances,1423948447 +189474,112183,magical realism,1423948452 +189474,112183,single shot,1423948465 +189474,112290,Ambitious,1415711293 +189474,112290,realism,1415711197 +189474,112552,J.K. Simmons,1425159497 +189474,112946,Pretentious,1415723598 +189474,112946,superficial,1415659942 +189474,116797,Alan Turing,1423959157 +189474,116797,Benedict Cumberbatch,1423959174 +189474,116797,cryptography,1423959184 +189474,116797,Keira Knightley,1423959178 +189474,116797,World War II,1423959163 +189474,117176,Stephen Hawking,1426284773 +189474,122900,ants,1448972259 +189474,122900,paul rudd,1448972246 +189474,122900,superhero,1448972250 +189487,720,claymation,1177557290 +189487,720,funny,1177557290 +189487,745,claymation,1177557311 +189487,745,funny,1177557311 +189487,1136,funny,1177557543 +189487,1136,high school,1177557543 +189487,1148,claymation,1177557280 +189487,1148,funny,1177557280 +189487,1223,claymation,1177557296 +189487,1223,funny,1177557296 +189487,1554,ewan mcgregor has a giant penis,1184105028 +189487,1921,math,1177557380 +189487,1921,spot the patterns,1177557379 +189487,1921,well-made,1177557380 +189487,2337,amazing soundtrack,1177557336 +189487,2337,boy-on-boy action,1177557336 +189487,2337,rococo,1177557336 +189487,2596,good message,1177557359 +189487,2596,high school,1177557359 +189487,2959,intense,1177557679 +189487,3176,boy-on-boy action,1177557347 +189487,4226,semiotic,1177557554 +189487,4308,amazing sountrack,1177557505 +189487,4308,rococo,1177557505 +189487,4641,funny,1177557655 +189487,4641,high school,1177557655 +189487,4641,quirky,1177557655 +189487,4641,Scarlett Johansson,1177557655 +189487,4642,amazing sountrack,1177557612 +189487,4848,favorite,1177557489 +189487,4848,mysterious,1177557489 +189487,4848,semiotic,1177557489 +189487,6711,amazing soundtrack,1177557587 +189487,6711,Scarlett Johansson,1177557587 +189487,6711,well-made,1177557587 +189487,8376,high school,1177557429 +189487,8910,quirky good,1177557597 +189487,27727,amazing soundtrack,1177557636 +189487,27727,favorite,1177557636 +189542,47,serial killer,1262451290 +189542,47,twist ending,1262451285 +189542,1682,Jim Carrey,1262451174 +189542,2858,surrealism,1262451137 +189542,2997,surreal,1262451087 +189542,3160,multiple storylines,1262451155 +189542,3949,psychology,1262451113 +189542,4226,nonlinear,1262451169 +189542,4226,twist ending,1262451197 +189542,4975,psychology,1262451124 +189542,4975,surreal,1262451129 +189560,1216,apnoe diving,1190636584 +189560,1216,Jean Reno,1190636529 +189560,1216,water,1190636607 +189560,1277,Gerard Depardieu,1188382499 +189560,3967,dancing,1188382307 +189560,5693,John Travolta,1188385490 +189560,8638,Paris,1188385566 +189560,45722,Johnny Depp,1188382577 +189561,1265,funny,1440177602 +189561,1265,philosophical,1440177585 +189561,1265,self discovery,1440177595 +189561,1682,funny,1440177823 +189561,1682,philosophy,1440177800 +189561,1682,witty,1440177846 +189567,296,Black comedy,1449795825 +189567,296,dark comedy,1449795812 +189567,296,drugs,1449795828 +189567,296,good dialogue,1449795839 +189567,296,great soundtrack,1449795844 +189567,296,imdb top 250,1449795865 +189567,296,multiple storylines,1449795834 +189567,296,nonlinear,1449795822 +189567,296,Quentin Tarantino,1449795809 +189567,296,Samuel L. Jackson,1449795815 +189567,296,Tarantino,1449795853 +189567,296,violence,1449795872 +189567,2959,Brad Pitt,1449795934 +189567,2959,psychology,1449795943 +189567,2959,social commentary,1449795938 +189567,2959,twist ending,1449795927 +189567,112552,music,1449796083 +189567,112552,Tense,1449796080 +189581,34437,waste of time,1170028284 +189581,43560,discipline,1170028379 +189581,43560,kids,1170028368 +189581,43560,magic,1170028376 +189585,260,action,1439074797 +189585,260,Space,1439074782 +189587,32,mindfuck,1161875265 +189587,39,very funny!,1166175688 +189587,65,stupid,1162905508 +189587,81,23-5-2007,1179994006 +189587,86,educational,1162904450 +189587,88,not bad.,1162905321 +189587,89,suspense,1162906674 +189587,89,synchronic,1162906674 +189587,110,evangelical,1161875209 +189587,110,inspiration,1161875209 +189587,150,Historical,1166174897 +189587,224,Can't remember,1163598243 +189587,318,drama,1161875090 +189587,318,justice,1161875090 +189587,318,prison,1161875090 +189587,349,political,1166175163 +189587,379,Jean Claude van Damme,1166457553 +189587,379,muscles from Brussels,1166457553 +189587,393,really bad,1162909507 +189587,464,bad!,1162916699 +189587,464,Van Damme,1162916699 +189587,466,flauw,1161875015 +189587,466,Onderbroekenlol,1161875015 +189587,466,parody,1161875015 +189587,480,nostalgia,1162910963 +189587,527,WW2,1161875323 +189587,558,original,1162909899 +189587,592,dark,1161875552 +189587,592,film noir,1161875552 +189587,616,don't remember,1162904181 +189587,628,scary,1171887680 +189587,628,stunning,1171887680 +189587,688,Very Disney,1162916879 +189587,694,payback time,1162906847 +189587,798,ok,1162906043 +189587,798,suspense,1162906043 +189587,836,but not very good,1162916940 +189587,836,political,1162916940 +189587,882,boring,1162913254 +189587,882,BORING!,1162913254 +189587,912,7-10-2007,1191789396 +189587,912,Humphrey Bogart,1191789398 +189587,923,1-4-2007,1175774621 +189587,1003,ethical,1162909350 +189587,1020,inspirational,1166175759 +189587,1100,but boring,1166457048 +189587,1100,Can't remember,1166457048 +189587,1100,Tom Cruise = asshole,1166457048 +189587,1120,partly seen,1163598076 +189587,1193,Beautiful,1162911077 +189587,1213,violent,1162911153 +189587,1240,Hahaha!,1162911058 +189587,1272,boring,1162910118 +189587,1291,nostalia,1171887750 +189587,1404,must see again,1163081489 +189587,1466,must see again,1163081154 +189587,1479,can't remember,1166455765 +189587,1517,Danger is my middle name,1166174935 +189587,1604,Chris Tucker,1162912588 +189587,1616,don't remember,1162903939 +189587,1665,weak remake of series,1162905964 +189587,1672,typical John Grisham,1163087667 +189587,1721,overrated,1161875522 +189587,1726,boring,1162908805 +189587,1833,don't remember,1162906518 +189587,1833,not impressive,1162906518 +189587,1960,need to see again,1171887736 +189587,2123,sad,1162906955 +189587,2136,0 stars,1162906111 +189587,2163,funny,1162907446 +189587,2176,classic,1162906621 +189587,2176,Jesus,1162906621 +189587,2232,bizar,1166175902 +189587,2232,sick,1166175902 +189587,2236,sentimental,1162907532 +189587,2297,seen partly,1166457221 +189587,2297,tear jerker,1166457221 +189587,2357,7-2007,1191223993 +189587,2358,too violent,1162910671 +189587,2379,nostalgia,1162905846 +189587,2380,nostalgia,1162906376 +189587,2381,funny,1162906430 +189587,2381,nostalgia,1162906430 +189587,2382,nostalgia,1162907030 +189587,2422,nostalgia,1162904427 +189587,2422,sentiment,1162904427 +189587,2428,parody,1161879348 +189587,2505,disgusting,1162915814 +189587,2571,philosophical,1161875423 +189587,2641,don't remember,1163597974 +189587,2643,nostalgia,1166457424 +189587,2735,don't remember,1162916732 +189587,2745,message,1162906417 +189587,2764,weak,1162905932 +189587,2815,nostalgia,1162907306 +189587,2816,nostalgia,1162909496 +189587,2822,don't remember,1162916749 +189587,2822,Sean Connery,1162916749 +189587,2858,black comedy,1161875384 +189587,2858,Social Drama,1161875383 +189587,3062,action,1162910282 +189587,3062,heroism,1162910282 +189587,3062,nostalgia,1162910282 +189587,3186,Partly seen,1164818275 +189587,3204,frightening idea,1162907708 +189587,3208,very funny!,1162906902 +189587,3268,too stupid to remember,1162906997 +189587,3384,made an impression,1162907240 +189587,3384,violent,1162907240 +189587,3388,nostalgia,1162906297 +189587,3439,nostalgia,1162905905 +189587,3440,nostalgia,1162906793 +189587,3441,nostalgia,1162905154 +189587,3461,scary,1162905348 +189587,3519,don't remember,1163082287 +189587,3578,historical epic,1171887779 +189587,3618,bad ending,1162906215 +189587,3618,funny,1162906215 +189587,3633,don't remember,1162905279 +189587,3654,don't remember,1162903863 +189587,3835,but bad,1162909538 +189587,3835,don't really remember,1162909538 +189587,3897,12-1-2007,1168873256 +189587,3897,feelgood,1168850683 +189587,3897,music,1168850683 +189587,3897,want to see again!,1168850683 +189587,4061,BEAUTIFUL,1162907404 +189587,4207,great action,1162907769 +189587,4207,nostalgia,1162907769 +189587,4246,fairly bad,1175774240 +189587,4262,don't remember,1163080997 +189587,4367,don't watch,1162916955 +189587,4475,creepy,1162910206 +189587,4489,classical,1166175725 +189587,4544,number johnny 5,1162906314 +189587,4546,horrible ending,1162908214 +189587,4565,nostalgia,1162911718 +189587,4566,nostalgia,1162916975 +189587,4567,michael dudikof,1162916992 +189587,4567,nostalgia,1162916992 +189587,4614,fight!,1162911617 +189587,4639,not worth a star,1163088285 +189587,4703,beautiful,1162906133 +189587,4844,Funny,1166175004 +189587,4886,hilarious,1161875439 +189587,4886,seen more than once,1161875439 +189587,4939,nostalgia,1162910362 +189587,4951,creepy,1162906729 +189587,4977,12-5-2007,1179129200 +189587,5220,hilarious!,1162906982 +189587,5221,impressive,1163086445 +189587,5246,don't remember,1162909590 +189587,5293,message!,1166174747 +189587,5377,Hugh Grant is cool,1166174827 +189587,5377,Really funny,1166174827 +189587,5445,Mindfuck Movie,1161874993 +189587,5445,mystery,1161874993 +189587,5445,sci-fi,1161874993 +189587,5445,Tom Cruise,1161874993 +189587,5462,stopped watching,1163088322 +189587,5541,parody,1161879429 +189587,5970,sad but much good,1162905107 +189587,6003,29-11-2006,1164836316 +189587,6003,bizar,1164836333 +189587,6078,really bad,1162909406 +189587,6213,war,1163087468 +189587,6264,stopped watching,1162905214 +189587,6287,not worth a star,1163088293 +189587,6511,most famous jesus movie ever,1162906815 +189587,6734,suspense,1162909475 +189587,6734,what if...,1162909475 +189587,6953,25-02-2007,1172441032 +189587,6953,life & death,1172441032 +189587,7005,really bad,1162908897 +189587,7102,don't remember exactly,1163081911 +189587,7102,not very good,1163081911 +189587,7162,raw,1166175677 +189587,7725,Really bad,1162916660 +189587,7767,great dialogues,1171532894 +189587,7767,historical epic,1171532894 +189587,7767,jan/feb 2007,1171532894 +189587,7767,simply beautiful,1171532894 +189587,7980,classic,1162906345 +189587,7980,nostalgia,1162906345 +189587,8362,cute,1162909569 +189587,8376,23-12-2007,1198485989 +189587,8376,camp,1198485989 +189587,8376,comedy,1198485989 +189587,8376,geek,1198485989 +189587,9004,nostalgia,1162909337 +189587,32596,amature,1162904319 +189587,32596,awful movie,1162904319 +189587,33166,political,1166175863 +189587,33166,social commentary,1166175863 +189587,33493,dark,1161875504 +189587,33493,parable,1161875504 +189587,36517,beautiful,1166175750 +189587,37727,27-01-2007,1170058034 +189587,40339,badly made,1162905787 +189587,41527,arabic,1162907731 +189587,41527,beautiful,1162907731 +189587,41527,Great,1162907731 +189587,41769,11-5-2007,1179994075 +189587,41769,asperger syndrome,1179994075 +189587,42418,boring,1162904236 +189587,42418,sentimental,1162904236 +189587,42418,zweverig,1162904236 +189587,43376,beautiful,1162910158 +189587,43376,ideals,1162910158 +189587,43376,martyrdom,1162910158 +189587,44191,expected more,1163086246 +189587,45210,7-4-2007,1176975027 +189587,45210,creepy,1176975008 +189587,45210,uncanny,1176975008 +189587,45442,3 stars for special effects,1162904488 +189587,45668,14-2-2007,1171532715 +189587,45668,sweet,1171532743 +189587,45722,3-12-2006,1168873180 +189587,46578,6-4-2007,1176975148 +189587,46723,18-11-2006,1164822730 +189587,46972,6-10-2007,1191789443 +189587,46972,Ben Stiller,1191789443 +189587,47629,11-2-2008,1203452560 +189587,48304,12-1-2007,1168873270 +189587,48516,29--9-2007,1191224019 +189587,48774,14-10-2007,1192431784 +189587,48774,dystopia,1192431784 +189587,48783,5-8-2007,1186390748 +189587,48783,clint eastwood,1186390748 +189587,48982,31-3-2007,1175774653 +189587,49272,14-12-2006,1166174634 +189587,49272,great action,1166174634 +189587,49272,james bond,1166174717 +189587,49274,11-5-2007,1179126675 +189587,49280,9-2007,1191223945 +189587,49280,politics,1191223950 +189587,49530,9-2-2007,1171109777 +189587,49822,22-7-2007,1185174488 +189587,49822,Angelina Jolie,1185174488 +189587,49822,CIA,1185174488 +189587,49822,Matt Damon,1185174488 +189587,50068,5-8-2007,1191225181 +189587,50872,27-12-2007,1201615776 +189587,51705,Audrey Tautou,1213608355 +189587,52604,2-2-208,1202229792 +189587,52722,2-2-2008,1202229808 +189587,53921,10-2-2008,1203452537 +189587,53996,27-12-2007,1201615805 +189587,53996,boring,1201615805 +189587,54286,19-8-2007,1191224079 +189587,54648,27-12-2007,1201615895 +189587,54686,17-1-2008,1201615933 +189587,55276,5-7-2008,1207594550 +189592,50,complicated,1425269438 +189592,50,excellent script,1425269442 +189592,50,mystery,1425269466 +189592,50,suspense,1425269456 +189592,50,thriller,1425269454 +189592,50,twist ending,1425269433 +189592,356,bittersweet,1425269509 +189592,356,classic,1425269495 +189592,356,inspirational,1425269521 +189592,356,Oscar (Best Picture),1425269498 +189592,356,tom hanks,1425269489 +189592,593,drama,1425269358 +189592,593,excellent script,1425269397 +189592,593,psychological,1425269368 +189592,593,psychology,1425269352 +189592,593,psychothriller,1425269385 +189592,593,suspense,1425269354 +189592,593,thriller,1425269370 +189592,2571,action,1425269237 +189592,2571,artificial intelligence,1425269233 +189592,2571,cult film,1425269243 +189592,2571,sci-fi,1425269224 +189592,2762,excellent script,1425269620 +189592,2762,great ending,1425269609 +189592,2762,m. night shyamalan,1425269630 +189592,2762,mindfuck,1425269607 +189592,2762,psychology,1425269622 +189592,2762,suspense,1425269626 +189592,2762,thriller,1425269616 +189592,2762,twist ending,1425269604 +189592,58559,Christian Bale,1425269306 +189592,58559,Christopher Nolan,1425269299 +189592,58559,comic book,1425269296 +189592,58559,psychology,1425269303 +189592,58559,thriller,1425269313 +189592,79132,action,1425269578 +189592,79132,alternate reality,1425269538 +189592,79132,Christopher Nolan,1425269542 +189592,79132,clever,1425269564 +189592,79132,complicated,1425269569 +189592,79132,intellectual,1425269554 +189592,79132,mindfuck,1425269572 +189592,79132,psychological,1425269584 +189592,79132,sci-fi,1425269550 +189592,79132,suspense,1425269548 +189602,260,"action, scifi",1440327238 +189609,1,pixar,1139045764 +189609,153,superhero,1139045840 +189609,552,knights,1139045825 +189609,1246,highschool,1139046768 +189609,32587,cult,1139046748 +189609,33660,boksdrama,1139046203 +189609,34162,stiller,1139046811 +189609,36529,wapendrama,1139046289 +189609,37729,animation,1139047294 +189609,38798,sisters,1139047262 +189613,145,action,1139901185 +189613,154,Bunuel,1138819727 +189613,224,fantasy,1139976646 +189613,224,passion,1139976646 +189613,224,romance,1139976646 +189613,928,Dark Comedy,1140151467 +189613,928,Gothic,1140151467 +189613,928,Hitchcock,1140151467 +189613,955,screwball,1137714733 +189613,965,Hitchcock,1138958972 +189613,1237,Death,1140587363 +189613,1281,satire,1138395331 +189613,1333,Hitchcock,1138039389 +189613,1419,70s,1139812968 +189613,2203,Hitchcock,1140762337 +189613,2209,comedy,1139545733 +189613,2209,Hitchcock,1139545733 +189613,2209,thriller,1139545733 +189613,2221,First Britain talkie,1138395393 +189613,2221,Hitchcock,1138395393 +189613,3012,Keaton,1139290961 +189613,3232,Keaton,1137714716 +189613,3364,character development,1138395363 +189613,3364,film noir,1138395363 +189613,5304,Nazis,1140065912 +189613,5304,Neo-realism,1140065912 +189613,5304,WWII,1140065912 +189613,6035,French,1139458650 +189613,6035,Jean Gabin,1139458650 +189613,6263,more twists than a chubby checker,1141612596 +189613,6548,boring,1140327491 +189613,6548,plot holes,1140327490 +189613,6548,tiring,1140327491 +189613,7897,modernism,1141007575 +189613,7897,sam peckinpah,1141007575 +189613,8199,greed,1141272606 +189613,8199,surreal,1141272606 +189613,8518,feminist,1138214315 +189613,8533,Love&War,1139566027 +189613,8533,romance,1139566027 +189613,8740,Kurosawa,1137180616 +189613,8868,Love&War,1137180902 +189613,25753,epic,1139294324 +189613,25753,powerful,1139294324 +189613,25753,stroheim,1139294324 +189613,26231,Nicolas Roeg,1171416856 +189613,30846,acting,1139212599 +189613,32584,performance piece,1141184449 +189613,32584,unfortunate lack of theme,1141184450 +189613,33085,excessive,1138039320 +189613,33669,chick flick,1138819751 +189613,34321,rude,1140932640 +189613,34538,insanity,1139734756 +189613,34538,obsession,1139734756 +189613,37741,egotism,1140494755 +189613,37741,minds,1140494755 +189613,37857,fantasy,1139976669 +189613,38038,inventive,1139901240 +189613,38038,silly,1139901240 +189613,39183,camp,1141104202 +189613,39183,well-done,1141104202 +189613,39421,"teen ""gross-out"" comedy",1141686555 +189613,40819,Joaquin phoenix,1139636112 +189613,40819,Johnny Cash,1139636111 +189613,40819,Oscar Nomination,1139636112 +189613,40851,dysfunctional family,1140224269 +189613,40851,suspensful,1140224269 +189613,41285,Dostoyevsky,1141546749 +189613,41285,Woody Allen,1141546749 +189613,41997,espionage,1141345735 +189613,41997,terrorism,1141345735 +189613,80646,Lone Wolf and Cub series,1347427671 +189613,80648,Lone Wolf and Cub series,1347427655 +189650,5445,sci-fi,1303240268 +189650,79132,sci-fi,1303240123 +189674,2313,historical,1232216311 +189681,1,animation,1320784713 +189681,1,comedy,1320784716 +189681,1,funny,1320784730 +189681,1,imdb top 250,1320784725 +189681,1,Pixar,1320784719 +189681,2,kid flick,1320797872 +189681,16,complex,1320784245 +189681,16,gangsters,1320784249 +189681,16,great performances,1320784251 +189681,16,imdb top 250,1320784254 +189681,16,las vegas,1320784256 +189681,16,mafia,1320784258 +189681,16,Martin Scorsese,1320784259 +189681,16,narrated,1320784262 +189681,16,non-fiction,1320784264 +189681,16,organized crime,1320784267 +189681,16,Robert De Niro,1320784269 +189681,50,complicated,1320785201 +189681,50,Dark,1320785223 +189681,50,ensemble cast,1320785226 +189681,50,imdb top 250,1320785207 +189681,50,Kevin Spacey,1320785204 +189681,50,organized crime,1320785219 +189681,50,Oscar (Best Supporting Actor),1320785213 +189681,50,suspense,1320785210 +189681,50,twist ending,1320785209 +189681,110,Biography,1320784491 +189681,110,classic,1320784495 +189681,110,historical,1320784488 +189681,110,imdb top 250,1320784499 +189681,110,Mel Gibson,1320784502 +189681,110,Oscar (Best Cinematography),1320784511 +189681,110,Oscar (Best Directing),1320784508 +189681,110,Oscar (Best Picture),1320784505 +189681,111,assassination,1320797349 +189681,111,atmospheric,1320797351 +189681,111,Classic,1320797357 +189681,111,cult film,1320797355 +189681,111,paranoid,1320797365 +189681,111,prostitution,1320797367 +189681,111,Robert De Niro,1320797358 +189681,111,social commentary,1320797360 +189681,111,vigilante,1320797362 +189681,111,visceral,1320797364 +189681,150,astronauts,1320791607 +189681,150,based on a true story,1320791588 +189681,150,historical,1320791610 +189681,150,History,1320791612 +189681,150,moon,1320791596 +189681,150,NASA,1320791594 +189681,150,space,1320791604 +189681,150,space program,1320791599 +189681,150,suspense,1320791601 +189681,150,tense,1320791597 +189681,150,Tom Hanks,1320791592 +189681,150,true story,1320791590 +189681,153,design,1320784905 +189681,153,Jim Carrey,1320784920 +189681,153,Tommy Lee Jones,1320784914 +189681,208,dystopia,1320794394 +189681,231,comedy,1320785486 +189681,231,dumb,1320785504 +189681,231,hilarious,1320785487 +189681,231,Jim Carrey,1320785489 +189681,231,silly,1320785494 +189681,231,stupid,1320785500 +189681,231,very funny,1320785498 +189681,296,Black comedy,1320782892 +189681,296,Bruce Willis,1320782931 +189681,296,cult film,1320782935 +189681,296,drugs,1320782952 +189681,296,imdb top 250,1320782912 +189681,296,Mafia,1320782923 +189681,296,multiple storylines,1320782908 +189681,296,nonlinear,1320782905 +189681,296,Quentin Tarantino,1320782900 +189681,318,friendship,1320790793 +189681,318,inspirational,1320790790 +189681,318,justice,1320790792 +189681,318,Morgan Freeman,1320790785 +189681,318,narrated,1320790798 +189681,318,prison,1320790789 +189681,318,Stephen King,1320790787 +189681,318,twist ending,1320790800 +189681,344,comedy,1320785456 +189681,344,hilarious,1320785452 +189681,344,Jim Carrey,1320785444 +189681,344,Jim Carrey being Jim Carrey,1320785449 +189681,344,silly fun,1320785465 +189681,344,very dumb,1320785467 +189681,356,classic,1320782988 +189681,356,imdb top 250,1320782993 +189681,356,inspirational,1320782994 +189681,356,Oscar (Best Actor),1320782997 +189681,356,Oscar (Best Directing),1320782999 +189681,356,Tom Hanks,1320782972 +189681,356,vietnam war,1320782977 +189681,367,cartoonish,1320793696 +189681,367,comedy,1320793692 +189681,367,hilarious,1320793681 +189681,367,Jim Carrey,1320793686 +189681,367,Jim Carrey being Jim Carrey,1320793689 +189681,370,boring,1320785558 +189681,370,Comedy,1320785550 +189681,370,Leslie Neilsen,1320785548 +189681,370,Leslie Nielsen,1320785561 +189681,370,parody,1320785553 +189681,380,family,1320785151 +189681,380,funny,1320785143 +189681,380,ridiculous,1320785112 +189681,380,shallow plot,1320785126 +189681,380,spies,1320785138 +189681,380,terrorism,1320785134 +189681,457,crime,1320792782 +189681,457,Harrison Ford,1320792786 +189681,457,Oscar (Best Supporting Actor),1320792789 +189681,457,paranoid,1320792792 +189681,457,prison escape,1320792795 +189681,480,genetics,1320782008 +189681,480,Oscar (Best Effects - Visual Effects),1320782014 +189681,541,artificial intelligence,1320781769 +189681,541,atmospheric,1320781771 +189681,541,cyberpunk,1320781766 +189681,541,Philip K. Dick,1320781777 +189681,587,humorous,1320794157 +189681,587,Oscar (Best Supporting Actress),1320794154 +189681,587,Whoopi Goldberg,1320794164 +189681,589,artificial intelligence,1320781955 +189681,589,assassin,1320781960 +189681,589,dystopia,1320781967 +189681,589,imdb top 250,1320781959 +189681,592,atmospheric,1320784807 +189681,592,Batman,1320784810 +189681,592,Jack Nicholson,1320784814 +189681,592,tense,1320784817 +189681,592,Tim Burton,1320784804 +189681,593,Anthony Hopkins,1320783022 +189681,593,crime,1320783025 +189681,593,disturbing,1320783029 +189681,593,mental illness,1320783034 +189681,593,Oscar (Best Actor),1320783035 +189681,593,Oscar (Best Actress),1320783037 +189681,593,Oscar (Best Directing),1320783039 +189681,593,Oscar (Best Picture),1320783045 +189681,593,psychology,1320783053 +189681,593,serial killer,1320783047 +189681,648,Action,1320793181 +189681,648,espionage,1320793172 +189681,648,good performance,1320793176 +189681,648,plot twists,1320793166 +189681,736,predictable,1320792920 +189681,736,unintentionally funny,1320792917 +189681,741,artificial intelligence,1320781727 +189681,741,cyberpunk,1320781738 +189681,780,aliens,1320785042 +189681,780,apocalypse,1320785036 +189681,780,aviation,1320785064 +189681,780,end of the world,1320785061 +189681,780,humorous,1320785034 +189681,780,US President,1320785026 +189681,780,Will Smith,1320785045 +189681,858,Al Pacino,1320783545 +189681,858,atmospheric,1320783547 +189681,858,classic,1320783549 +189681,858,crime,1320783559 +189681,858,imdb top 250,1320783551 +189681,858,Mafia,1320783553 +189681,858,melancholy,1320783557 +189681,858,Nudity (Topless),1320783562 +189681,858,organized crime,1320783564 +189681,858,Oscar (Best Actor),1320783566 +189681,858,Oscar (Best Picture),1320783568 +189681,858,robert de niro,1320783570 +189681,924,artificial intelligence,1320781807 +189681,924,cult film,1320781812 +189681,924,imdb top 250,1320781819 +189681,924,Stanley Kubrick,1320781821 +189681,1089,crime,1320786421 +189681,1089,cult film,1320786407 +189681,1089,dark comedy,1320786423 +189681,1089,gangster,1320786450 +189681,1089,nonlinear,1320786430 +189681,1089,organized crime,1320786400 +189681,1089,Quentin Tarantino,1320786402 +189681,1206,atmospheric,1320795551 +189681,1206,controversial,1320795550 +189681,1206,cult film,1320795547 +189681,1206,disturbing,1320795528 +189681,1206,dystopia,1320795530 +189681,1206,psychology,1320795531 +189681,1206,satire,1320795533 +189681,1206,satirical,1320795541 +189681,1206,social commentary,1320795543 +189681,1206,Stanley Kubrick,1320795535 +189681,1206,Surrealism,1320795537 +189681,1213,crime,1320799130 +189681,1213,dark comedy,1320799134 +189681,1213,Joe Pesci,1320799165 +189681,1213,organized crime,1320799128 +189681,1213,Oscar (Best Supporting Actor),1320799140 +189681,1213,Robert De Niro,1320799126 +189681,1213,Samuel L. Jackson,1320799138 +189681,1219,Alfred Hitchcock,1320797658 +189681,1219,classic,1320797660 +189681,1219,mental illness,1320797670 +189681,1219,psychology,1320797666 +189681,1219,tense,1320797668 +189681,1222,1960s,1320797109 +189681,1222,boot camp,1320797113 +189681,1222,military,1320797122 +189681,1222,political,1320797125 +189681,1222,Stanley Kubrick,1320797118 +189681,1222,suicide,1320797128 +189681,1222,Vietnam War,1320797133 +189681,1222,war,1320797131 +189681,1258,atmospheric,1320796571 +189681,1258,cult film,1320796569 +189681,1258,Jack Nicholson,1320796553 +189681,1258,mental illness,1320796566 +189681,1258,Nudity (Full Frontal - Notable),1320796562 +189681,1258,psychology,1320796576 +189681,1258,Stanley Kubrick,1320796555 +189681,1258,Stephen King,1320796557 +189681,1258,visually appealing,1320796559 +189681,1270,adventure,1320785583 +189681,1270,alternate reality,1320785586 +189681,1270,classic,1320785589 +189681,1270,fantasy,1320785595 +189681,1270,Funny,1320785592 +189681,1270,high school,1320785597 +189681,1270,imdb top 250,1320785600 +189681,1270,rock and roll,1320785613 +189681,1270,time travel,1320785615 +189681,1274,cyberpunk,1320781470 +189681,1274,dystopic future,1320781489 +189681,1274,science fiction,1320781495 +189681,1274,visually stunning,1320781478 +189681,1517,Elizabeth Hurley,1320793371 +189681,1517,hilarious,1320793369 +189681,1517,Mike Myers,1320793373 +189681,1517,parody,1320793376 +189681,1517,satire,1320793379 +189681,1580,aliens,1320791637 +189681,1580,comedy,1320791639 +189681,1608,america porn,1320807464 +189681,1682,alternate reality,1320783279 +189681,1682,cerebral,1320783281 +189681,1682,dreamlike,1320783285 +189681,1682,dystopia,1320783283 +189681,1682,Jim Carrey,1320783292 +189681,1682,melancholy,1320783349 +189681,1682,paranoia,1320783342 +189681,1682,social commentary,1320783356 +189681,1721,atmospheric,1320791497 +189681,1721,disaster,1320791499 +189681,1721,historical,1320791508 +189681,1721,Leonardo DiCaprio,1320791515 +189681,1721,Oscar (Best Picture),1320791517 +189681,1721,true story,1320791521 +189681,1917,apocalypse,1320794110 +189681,1917,disaster,1320794112 +189681,1917,humorous,1320794117 +189681,1917,space,1320794121 +189681,1917,visually appealing,1320794133 +189681,1923,Ben Stiller,1320796957 +189681,1923,fun,1320796966 +189681,1923,hilarious,1320796961 +189681,1997,Classic,1320798800 +189681,1997,controversial,1320798802 +189681,1997,cult,1320798796 +189681,1997,exorcism,1320798806 +189681,2011,1980s,1320796452 +189681,2011,Christopher Lloyd,1320796449 +189681,2011,comedy,1320796456 +189681,2011,dystopia,1320796454 +189681,2011,humorous,1320796459 +189681,2011,sequel,1320796461 +189681,2012,Christopher Lloyd,1320796407 +189681,2012,Funny,1320796412 +189681,2012,humorous,1320796413 +189681,2012,western,1320796422 +189681,2028,action,1320793332 +189681,2028,disturbing,1320793329 +189681,2028,historical,1320793324 +189681,2028,Matt Damon,1320793321 +189681,2028,Oscar (Best Cinematography),1320793318 +189681,2028,Oscar (Best Directing),1320793314 +189681,2028,Oscar (Best Sound),1320793316 +189681,2028,realistic,1320793345 +189681,2028,Steven Spielberg,1320793311 +189681,2028,Tom Hanks,1320793303 +189681,2028,war,1320793308 +189681,2028,World War II,1320793306 +189681,2174,alternate reality,1320794298 +189681,2174,cult film,1320794293 +189681,2174,funny,1320794319 +189681,2174,ghosts/afterlife,1320794295 +189681,2174,Good Comedy,1320794296 +189681,2174,Michael Keaton,1320794302 +189681,2174,Tim Burton,1320794301 +189681,2542,black comedy,1320786494 +189681,2542,British,1320786497 +189681,2542,British gangster,1320786499 +189681,2542,dark comedy,1320786492 +189681,2542,Guy Ritchie,1320786490 +189681,2542,hilarious,1320786504 +189681,2542,imdb top 250,1320786507 +189681,2542,multiple storylines,1320786509 +189681,2542,organized crime,1320786512 +189681,2571,artificial intelligence,1320781881 +189681,2571,atmospheric,1320781897 +189681,2571,cult film,1320781902 +189681,2571,cyberpunk,1320781900 +189681,2571,philosophical,1320781905 +189681,2571,virtual reality,1320781910 +189681,2617,archaeology,1320796802 +189681,2617,Brendan Fraser,1320796806 +189681,2617,egypt,1320796793 +189681,2617,mummy,1320796795 +189681,2617,treasure hunt,1320796804 +189681,2628,fantasy,1320792991 +189681,2628,space,1320792987 +189681,2700,adult humor,1320796654 +189681,2700,Animation,1320796661 +189681,2700,censorship,1320796657 +189681,2700,controversial,1320796660 +189681,2700,crude humor,1320796663 +189681,2700,free speech,1320796665 +189681,2700,funny,1320796667 +189681,2700,irreverent,1320796668 +189681,2700,parody,1320796670 +189681,2700,satire,1320796673 +189681,2700,satirical,1320796675 +189681,2706,comedy,1320793819 +189681,2706,funny,1320793837 +189681,2706,high school,1320793853 +189681,2706,Nudity (Topless - Notable),1320793828 +189681,2706,sexuality,1320793841 +189681,2706,silly,1320793843 +189681,2706,Teen movie,1320793850 +189681,2706,teens,1320793845 +189681,2712,atmospheric,1320797534 +189681,2712,dreamlike,1320797536 +189681,2712,enigmatic,1320797538 +189681,2712,notable soundtrack,1320797541 +189681,2712,Nudity (Full Frontal - Notable),1320797543 +189681,2712,sexuality,1320797545 +189681,2712,Stanley Kubrick,1320797547 +189681,2712,Tom Cruise,1320797549 +189681,2762,Atmospheric,1320791178 +189681,2762,Bruce Willis,1320791183 +189681,2762,enigmatic,1320791181 +189681,2762,mindfuck,1320791185 +189681,2762,psychological,1320791188 +189681,2762,psychology,1320791190 +189681,2762,storyline,1320791197 +189681,2762,twist ending,1320791193 +189681,2858,black comedy,1320783230 +189681,2858,dark comedy,1320783237 +189681,2858,imdb top 250,1320783239 +189681,2858,Kevin Spacey,1320783241 +189681,2858,Oscar (Best Actor),1320783242 +189681,2858,Oscar (Best Directing),1320783244 +189681,2858,Oscar (Best Picture),1320783249 +189681,2858,reflective,1320783252 +189681,2858,sexuality,1320783254 +189681,2858,social commentary,1320783257 +189681,2858,thought-provoking,1320783266 +189681,2916,alternate reality,1320794518 +189681,2916,alternate universe,1320794516 +189681,2916,Arnold Schwarzenegger,1320794515 +189681,2916,conspiracy,1320794510 +189681,2916,cyberpunk,1320794505 +189681,2916,dystopia,1320794503 +189681,2916,memory,1320794465 +189681,2916,mutants,1320794501 +189681,2916,Philip K. Dick,1320794498 +189681,2916,virtual reality,1320794496 +189681,2918,1980s,1320794253 +189681,2918,80s,1320794254 +189681,2918,Charlie Sheen,1320794256 +189681,2918,classic,1320794261 +189681,2918,comedy,1320794259 +189681,2918,High School,1320794264 +189681,2918,one day,1320794269 +189681,2918,rebellion,1320794268 +189681,2959,atmospheric,1320783198 +189681,2959,Brad Pitt,1320783140 +189681,2959,dark comedy,1320783145 +189681,2959,Edward Norton,1320783142 +189681,2959,imdb top 250,1320783200 +189681,2959,mental illness,1320783202 +189681,2959,philosophy,1320783186 +189681,2959,psychology,1320783188 +189681,2959,social commentary,1320783190 +189681,2959,twist ending,1320783193 +189681,2985,80s,1320797927 +189681,2985,corruption,1320797921 +189681,2985,dystopia,1320797917 +189681,2985,police,1320797923 +189681,3147,emotional,1320790876 +189681,3147,heartwarming,1320790869 +189681,3147,imdb top 250,1320790885 +189681,3147,nostalgic,1320790887 +189681,3147,racism,1320790896 +189681,3147,Stephen King,1320790892 +189681,3147,Tom Hanks,1320790894 +189681,3160,melancholy,1320798971 +189681,3160,multiple storylines,1320798966 +189681,3160,Tom Cruise,1320798970 +189681,3198,Dustin Hoffman,1320790964 +189681,3198,escape,1320790973 +189681,3198,prison,1320790970 +189681,3198,prison escape,1320790968 +189681,3578,imdb top 250,1320784594 +189681,3578,Oscar (Best Actor),1320784606 +189681,3578,Oscar (Best Costume Design),1320784638 +189681,3578,Oscar (Best Effects - Visual Effects),1320784641 +189681,3578,Oscar (Best Picture),1320784644 +189681,3578,Ridley Scott,1320784586 +189681,3578,Russell Crowe,1320784590 +189681,3623,action,1320793221 +189681,3623,espionage,1320793219 +189681,3623,John Woo,1320793228 +189681,3623,tense start,1320793230 +189681,3752,comedy,1320785529 +189681,3752,Hilarious,1320785524 +189681,3752,Jim Carrey,1320785522 +189681,3752,split personality,1320785519 +189681,3977,Bill Murray,1320794550 +189681,3977,predictable,1320794542 +189681,3977,silly,1320794539 +189681,4011,boxing,1320786523 +189681,4011,Brad Pitt,1320786521 +189681,4011,comedy,1320786525 +189681,4011,Crime,1320786527 +189681,4011,Guy Ritchie,1320786529 +189681,4011,imdb top 250,1320786531 +189681,4011,Jason Statham,1320786534 +189681,4011,multiple storylines,1320786538 +189681,4011,narrated,1320786536 +189681,4011,twist ending,1320786541 +189681,4226,amnesia,1320785297 +189681,4226,complicated,1320785294 +189681,4226,dark,1320785291 +189681,4226,dreamlike,1320785281 +189681,4226,genius,1320785283 +189681,4226,imdb top 250,1320785286 +189681,4226,investigation,1320785288 +189681,4226,memory,1320785279 +189681,4226,narrated,1320785277 +189681,4226,nonlinear,1320785275 +189681,4226,psychological,1320785272 +189681,4226,psychology,1320785265 +189681,4226,stylized,1320785268 +189681,4226,tense,1320785270 +189681,4226,twist ending,1320785263 +189681,4262,Al Pacino,1320783676 +189681,4262,atmospheric,1320783678 +189681,4262,classic,1320783680 +189681,4262,corruption,1320783683 +189681,4262,crime,1320783691 +189681,4262,drugs,1320783689 +189681,4262,gangster,1320783687 +189681,4262,gangsters,1320783685 +189681,4262,imdb top 250,1320783699 +189681,4262,organized crime,1320783695 +189681,4306,animation,1320791678 +189681,4306,comedy,1320791681 +189681,4306,Dreamworks,1320791684 +189681,4306,Eddie Murphy,1320791686 +189681,4306,Funny,1320791688 +189681,4306,parody,1320791691 +189681,4306,Quirky,1320791693 +189681,4306,satire,1320791696 +189681,4370,androids,1320798393 +189681,4370,artificial intelligence,1320798391 +189681,4370,dystopia,1320798389 +189681,4370,sci-fi,1320798399 +189681,4886,animation,1320791654 +189681,4886,Comedy,1320791651 +189681,4886,funny,1320791664 +189681,4886,original,1320791662 +189681,4963,Brad Pitt,1320793068 +189681,4963,casino,1320793073 +189681,4963,crime,1320793071 +189681,4963,feel good movie,1320793088 +189681,4963,George Clooney,1320793075 +189681,4963,Julia Roberts,1320793078 +189681,4963,Las Vegas,1320793081 +189681,4963,Matt Damon,1320793083 +189681,4993,beautifully filmed,1320791400 +189681,4995,biography,1320793127 +189681,4995,genius,1320793124 +189681,4995,insanity,1320793129 +189681,4995,inspirational,1320793132 +189681,4995,math,1320793121 +189681,4995,mathematics,1320793119 +189681,4995,mental illness,1320793117 +189681,4995,Oscar (Best Directing),1320793115 +189681,4995,Oscar (Best Picture),1320793113 +189681,4995,psychology,1320793110 +189681,4995,schizophrenia,1320793108 +189681,4995,true story,1320793106 +189681,5010,factual,1320798276 +189681,5010,military,1320798327 +189681,5010,realistic,1320798303 +189681,5010,Ridley Scott,1320798272 +189681,5010,true story,1320798293 +189681,5010,war,1320798330 +189681,5349,franchise,1320791283 +189681,5418,amnesia,1320794180 +189681,5418,assassin,1320794183 +189681,5418,Matt Damon,1320794185 +189681,5418,realistic action,1320794187 +189681,5445,artificial intelligence,1320792848 +189681,5445,corruption,1320792851 +189681,5445,dystopia,1320792832 +189681,5445,future,1320792835 +189681,5445,mystery,1320792839 +189681,5445,Philip K. Dick,1320792830 +189681,5445,police corruption,1320792843 +189681,5445,surreal,1320792845 +189681,5445,Tom Cruise,1320792828 +189681,5459,comedy,1320798181 +189681,5459,conspiracy,1320798179 +189681,5459,crappy sequel,1320798171 +189681,5459,first was much better,1320798168 +189681,5459,Tommy Lee Jones,1320798175 +189681,5481,hilarious,1320798906 +189681,5481,mike myers,1320798908 +189681,5481,satire,1320798910 +189681,5502,Alien Invasion,1320797515 +189681,5502,Joaquin Phoenix,1320797518 +189681,5502,Mel Gibson,1320797522 +189681,5502,silly,1320797516 +189681,5952,adventure,1320791465 +189681,5952,atmospheric,1320791481 +189681,5952,fantasy,1320791478 +189681,5952,multiple storylines,1320791467 +189681,5952,scenic,1320791470 +189681,5952,war,1320791473 +189681,5989,better than expected,1320793558 +189681,5989,biography,1320793556 +189681,5989,Christopher Walken,1320793554 +189681,5989,comedy,1320793550 +189681,5989,crime,1320793563 +189681,5989,feel good movie,1320793548 +189681,5989,Leonardo DiCaprio,1320793537 +189681,5989,Tom Hanks,1320793539 +189681,5989,true story,1320793541 +189681,5989,twists & turns,1320793545 +189681,6016,atmospheric,1320786621 +189681,6016,based on a true story,1320786619 +189681,6016,black comedy,1320786624 +189681,6016,Brazil,1320786617 +189681,6016,crime,1320786626 +189681,6016,disturbing,1320786628 +189681,6016,drugs,1320786641 +189681,6016,gangsters,1320786638 +189681,6016,imdb top 250,1320786631 +189681,6016,multiple storylines,1320786633 +189681,6016,true story,1320786645 +189681,6365,alternate reality,1320794007 +189681,6365,cyberpunk,1320793993 +189681,6365,Keanu Reeves,1320793996 +189681,6365,sequel,1320794000 +189681,6365,virtual reality,1320793998 +189681,6377,animals,1320791234 +189681,6377,Comedy,1320791245 +189681,6377,friendship,1320791232 +189681,6377,Oscar (Best Animated Feature),1320791240 +189681,6377,singing,1320791222 +189681,6539,adventure,1320791546 +189681,6539,comedy,1320791552 +189681,6539,funny,1320791556 +189681,6539,hilarious,1320791561 +189681,6539,Johnny Depp,1320791554 +189681,6539,pirates,1320791558 +189681,6539,Zombies,1320791565 +189681,6863,elementary school,1320798475 +189681,6863,funny,1320798473 +189681,6863,great soundtrack,1320798470 +189681,6863,Jack Black,1320798468 +189681,6863,music,1320798463 +189681,6863,Rock,1320798466 +189681,6863,rock and roll,1320798464 +189681,6874,assassin,1320791342 +189681,6874,funny,1320791340 +189681,6874,nonlinear,1320791344 +189681,6874,Quentin Tarantino,1320791338 +189681,6874,Uma Thurman,1320791346 +189681,6874,visually appealing,1320791349 +189681,7153,adventure,1320791422 +189681,7153,atmospheric,1320791420 +189681,7153,fantasy world,1320791437 +189681,7153,imdb top 250,1320791424 +189681,7153,Oscar (Best Directing),1320791425 +189681,7153,Oscar (Best Picture),1320791427 +189681,7153,tense,1320791431 +189681,7153,war,1320791432 +189681,7502,military,1320785757 +189681,7502,not a movie,1320785776 +189681,7502,realistic,1320785792 +189681,7502,true story,1320785773 +189681,7502,war,1320785783 +189681,7502,World War II,1320785786 +189681,8360,animation,1320793441 +189681,8360,Dreamworks,1320793450 +189681,8360,Eddie Murphy,1320793439 +189681,8360,hilarious,1320793446 +189681,8360,satire,1320793448 +189681,8622,Michael Moore,1320798015 +189681,8622,military,1320798018 +189681,8622,politics,1320798013 +189681,8622,satire,1320798024 +189681,8622,social commentary,1320798022 +189681,8622,terrorism,1320798020 +189681,8644,Amazing Cinematography,1320782096 +189681,8644,artificial intelligence,1320782091 +189681,8644,Isaac Asimov,1320782101 +189681,8961,Adventure,1320792811 +189681,8961,Pixar,1320792809 +189681,33679,Angelina Jolie,1320793245 +189681,33679,erotic tension,1320793246 +189681,33679,funny,1320793250 +189681,33679,spies,1320793252 +189681,33794,batman,1320793909 +189681,33794,Christian Bale,1320793906 +189681,33794,dark,1320793911 +189681,33794,Morgan Freeman,1320793914 +189681,33794,thought-provoking,1320793916 +189681,33794,vigilante,1320793918 +189681,35836,comedy,1320796748 +189681,35836,crude humor,1320796751 +189681,35836,funny,1320796753 +189681,35836,hilarious,1320796754 +189681,35836,Nudity (Topless - Notable),1320796771 +189681,35836,Seth Rogen,1320796758 +189681,35836,sex,1320796766 +189681,35836,Steve Carell,1320796763 +189681,36529,arms dealer,1320798090 +189681,36529,based on a true story,1320798110 +189681,36529,dark comedy,1320798088 +189681,36529,drugs,1320798106 +189681,36529,narrated,1320798095 +189681,36529,Nicolas Cage,1320798103 +189681,36529,Nudity (Topless),1320798101 +189681,36529,organized crime,1320798099 +189681,36529,political,1320798097 +189681,36529,politics,1320798093 +189681,40819,biography,1320799021 +189681,40819,drug abuse,1320799027 +189681,40819,Joaquin Phoenix,1320799014 +189681,40819,Johnny Cash,1320799055 +189681,40819,music,1320799041 +189681,40819,music business,1320799043 +189681,40819,Oscar (Best Actress),1320799016 +189681,40819,true story,1320799018 +189681,44191,dark,1320798606 +189681,44191,historical,1320798600 +189681,44191,imdb top 250,1320798602 +189681,44191,inspirational,1320798604 +189681,44191,Natalie Portman,1320798596 +189681,44191,politics,1320798590 +189681,44191,social commentary,1320798609 +189681,44191,terrorism,1320798598 +189681,44191,thought-provoking,1320798592 +189681,44191,visually appealing,1320798594 +189681,44195,corruption,1320783412 +189681,44195,dark comedy,1320783392 +189681,44195,dark humor,1320783387 +189681,44195,independent film,1320783396 +189681,44195,satire,1320783400 +189681,44195,social commentary,1320783403 +189681,48385,controversial,1320796622 +189681,48385,crude humor,1320796634 +189681,48385,irreverent,1320796631 +189681,48385,Sacha Baron Cohen,1320796637 +189681,48385,satire,1320796626 +189681,48385,social commentary,1320796628 +189681,48516,atmospheric,1320783609 +189681,48516,corruption,1320783611 +189681,48516,Crime,1320783620 +189681,48516,gangsters,1320783623 +189681,48516,imdb top 250,1320783626 +189681,48516,Jack Nicholson,1320783629 +189681,48516,Leonardo DiCaprio,1320783631 +189681,48516,Mafia,1320783633 +189681,48516,Martin Scorsese,1320783636 +189681,48516,organized crime,1320783638 +189681,48516,police corruption,1320783641 +189681,48516,twist ending,1320783644 +189681,49272,007,1320794034 +189681,49272,action,1320794036 +189681,49272,assassin,1320794038 +189681,49272,espionage,1320794016 +189681,49272,realistic action,1320794026 +189681,49272,spies,1320794020 +189681,49272,spy,1320794022 +189681,49272,torture,1320794023 +189681,50872,animation,1320797022 +189681,50872,France,1320797030 +189681,50872,funny,1320797028 +189681,50872,imagination,1320797033 +189681,50872,inspirational,1320797052 +189681,50872,paris,1320797038 +189681,50872,pixar,1320797040 +189681,50872,rats,1320797043 +189681,51662,blood,1320798365 +189681,51662,rape,1320798352 +189681,51662,sword fight,1320798359 +189681,54272,animation,1320798727 +189681,54272,funny,1320798729 +189681,54272,simpsons,1320798731 +189681,54503,comedy,1320796892 +189681,54503,hilarious,1320796888 +189681,54503,Michael Cera,1320796890 +189681,54503,nerds,1320796906 +189681,54503,police,1320796908 +189681,54503,self discovery,1320796903 +189681,54503,Seth Rogen,1320796896 +189681,54503,Teen movie,1320796900 +189681,54995,Bruce Willis,1320796856 +189681,54995,crude humor,1320796865 +189681,54995,grindhouse,1320796868 +189681,54995,hospital,1320796871 +189681,54995,lesbian,1320796862 +189681,54995,Nudity (Topless),1320796860 +189681,54995,Robert Rodriguez,1320796858 +189681,54995,sex scene,1320796872 +189681,54995,splatter,1320796876 +189681,54995,zombies,1320796874 +189681,55721,BOPE,1320786041 +189681,55721,brazil,1320786043 +189681,55721,corruption,1320786039 +189681,55721,Drugs,1320786050 +189681,55721,Golden Bear (Best Film),1320786046 +189681,55721,organized crime,1320786056 +189681,55721,police,1320786064 +189681,55721,police corruption,1320786066 +189681,55721,realism,1320786068 +189681,55721,realistic,1320786070 +189681,55721,rio de janeiro,1320786074 +189681,55721,social commentary,1320786078 +189681,55721,urban violence,1320786089 +189681,55721,War,1320786092 +189681,55820,1980s,1320794360 +189681,55820,crime,1320794362 +189681,55820,dark,1320794357 +189681,55820,great acting,1320794353 +189681,55820,hitman,1320794351 +189681,55820,Oscar (Best Directing),1320794348 +189681,55820,Oscar (Best Picture),1320794346 +189681,55820,Oscar (Best Supporting Actor),1320794365 +189681,55820,plot twist,1320794367 +189681,55820,serial killer,1320794370 +189681,55820,Tommy Lee Jones,1320794373 +189681,55820,twist ending,1320794375 +189681,56174,alone in the world,1320797823 +189681,56174,post-apocalyptic,1320797825 +189681,56174,survival,1320797835 +189681,56174,virus,1320797834 +189681,56174,Will Smith,1320797830 +189681,56174,zombies,1320797850 +189681,58559,action,1320784943 +189681,58559,Atmospheric,1320784945 +189681,58559,Batman,1320784948 +189681,58559,Christian Bale,1320784950 +189681,58559,dark,1320784953 +189681,58559,Heath Ledger,1320784956 +189681,58559,imdb top 250,1320784959 +189681,58559,Michael Caine,1320784961 +189681,58559,Morgan Freeman,1320784964 +189681,58559,music,1320784967 +189681,58559,Oscar (Best Supporting Actor),1320784969 +189681,58559,psychology,1320784972 +189681,58559,serial killer,1320784974 +189681,58559,stylized,1320784981 +189681,58559,vigilante,1320784985 +189681,59315,murder,1320796286 +189681,59315,vigilante,1320796284 +189681,60069,artificial intelligence,1320793709 +189681,60069,beautiful scenery,1320793715 +189681,60069,dystopia,1320793711 +189681,60069,imdb top 250,1320793720 +189681,60069,inspirational,1320793718 +189681,60069,pixar,1320793723 +189681,60069,quirky,1320793725 +189681,60069,social commentary,1320793728 +189681,60069,space,1320793731 +189681,60684,1980s,1320798512 +189681,60684,alan moore,1320798530 +189681,60684,alternate reality,1320798528 +189681,60684,cinematography,1320798525 +189681,60684,cold war,1320798523 +189681,60684,dystopia,1320798514 +189681,60684,Nudity (Topless),1320798521 +189681,60684,social commentary,1320798519 +189681,60684,vigilantism,1320798536 +189681,63082,feel-good,1320790931 +189681,63082,nonlinear,1320790928 +189681,63082,Oscar (Best Directing),1320790934 +189681,63082,Oscar (Best Picture),1320790925 +189681,63082,social commentary,1320790939 +189681,68157,Brad Pitt,1320793868 +189681,68157,great soundtrack,1320793874 +189681,68157,Oscar (Best Supporting Actor),1320793878 +189681,68157,Quentin Tarantino,1320793881 +189681,68157,satire,1320793884 +189681,68157,tense,1320793886 +189681,68157,visually appealing,1320793893 +189681,68157,World War II,1320793890 +189681,68954,adventure,1320793749 +189681,68954,comedy,1320793777 +189681,68954,dreams,1320793745 +189681,68954,funny,1320793777 +189681,68954,Pixar,1320793747 +189681,68954,visually stunning,1320793755 +189681,71535,dark comedy,1320783450 +189681,71535,funny,1320783445 +189681,71535,IMDB Top 250,1320783427 +189681,71535,parody,1320783433 +189681,71535,post-apocalyptic,1320783436 +189681,71535,Woody Harrelson,1320783422 +189681,71535,zombies,1320783424 +189681,74458,atmospheric,1320797331 +189681,74458,insanity,1320797321 +189681,74458,intense,1320797323 +189681,74458,island,1320797327 +189681,74458,Leonardo DiCaprio,1320797329 +189681,74458,Martin Scorsese,1320797319 +189681,74458,Mental Institution,1320797317 +189681,74458,psychological,1320797312 +189681,74458,shocking ending,1320797314 +189681,74458,twist ending,1320797310 +189681,74458,twisted ending,1320797316 +189681,76251,action,1320797205 +189681,76251,funny,1320797203 +189681,76251,humor,1320797208 +189681,76251,humorous,1320797211 +189681,76251,Nicolas Cage,1320797216 +189681,76251,quirky,1320797214 +189681,76251,vigilante,1320797217 +189681,79132,alternate reality,1320786698 +189681,79132,dreamlike,1320786700 +189681,79132,Leonardo DiCaprio,1320786695 +189681,79132,memory,1320786706 +189681,79132,philosophy,1320786708 +189681,79132,sci-fi,1320786711 +189681,79132,surreal,1320786713 +189681,79132,thought-provoking,1320786715 +189681,79132,visually appealing,1320786717 +189681,80219,Danny Trejo,1320797277 +189681,80219,dark comedy,1320797245 +189681,80219,dark humor,1320797243 +189681,80219,Mexico,1320797250 +189681,80219,Nudity (Full Frontal - Notable),1320797247 +189681,80219,Robert Rodriguez,1320797254 +189681,80219,satire,1320797256 +189681,80219,Steven Seagal,1320797258 +189681,80463,business,1320783486 +189681,80463,computers,1320783488 +189681,80463,dark comedy,1320783491 +189681,80463,hacking,1320783493 +189681,80463,imdb top 250,1320783496 +189681,80463,internet,1320783498 +189681,80463,nerds,1320783502 +189681,80463,Oscar (Best Editing),1320783508 +189681,80463,true story,1320783510 +189681,85342,Brazil,1320785908 +189681,85342,corruption,1320785911 +189681,85342,drugs,1320785935 +189681,85342,guns,1320786003 +189681,85342,José Padilha,1320785971 +189681,85342,police corruption,1320785973 +189681,85342,politics,1320785975 +189681,85342,realistic,1320785989 +189681,85342,social commentary,1320785977 +189681,85774,biography,1320786560 +189681,85774,cars,1320786558 +189681,85774,Formula 1 racing,1320786554 +189681,85774,sports,1320786556 +189681,85774,true story,1320786604 +189684,5995,based on a true story,1420082208 +189684,5995,historical,1420082201 +189684,5995,holocaust,1420082193 +189684,5995,Nazis,1420082204 +189684,5995,true story,1420082196 +189684,5995,World War II,1420082191 +189684,30749,Africa,1420081861 +189684,30749,based on a true story,1420081869 +189684,30749,civil war,1420081884 +189684,30749,depressing,1420081873 +189684,30749,ethnic conflict,1420081867 +189684,30749,factual,1420081880 +189684,30749,genocide,1420081858 +189684,30749,history,1420081865 +189684,30749,journalism,1420081878 +189684,30749,racism,1420081871 +189684,30749,true story,1420081853 +189684,30749,United Nations,1420081863 +189684,30749,war,1420081876 +189684,45210,9/11,1420082005 +189684,45210,based on a true story,1420082013 +189684,45210,terrorism,1420082006 +189684,45210,true story,1420082008 +189684,45210,visceral,1420082011 +189684,46974,9/11,1420082040 +189699,82157,fake documentary,1427844490 +189699,82157,horror,1427844490 +189699,82157,r:gore,1427844490 +189699,86725,cannibalism,1428857794 +189699,86725,prostitution,1428857794 +189699,86725,suspense,1428857794 +189699,109710,drama,1424191327 +189699,109710,scifi cult,1424191327 +189699,109710,videogame like,1424191327 +189699,132184,drama,1429984271 +189699,132184,mexico,1429984271 +189699,132184,rich and poor,1429984271 +189719,110,epic,1432234174 +189719,110,historical,1432234185 +189719,110,Medieval,1432234179 +189719,110,war,1432234188 +189719,260,action,1432232205 +189719,260,space opera,1432232195 +189719,293,crime,1432686816 +189719,293,disturbing,1432686799 +189719,293,touching,1432686809 +189719,318,based on a book,1432232749 +189719,318,classic,1432232774 +189719,318,great acting,1432232742 +189719,318,Morgan Freeman,1432232761 +189719,318,thought-provoking,1432232731 +189719,356,american history,1432232690 +189719,356,drama,1432232690 +189719,356,vietnam war,1432232690 +189719,899,Dance,1432686749 +189719,953,Christmas,1432686685 +189719,953,Heartwarming,1432686688 +189719,953,inspirational,1432686692 +189719,953,sentimental,1432686695 +189719,1080,Biblical,1432233231 +189719,1080,black comedy,1432233246 +189719,1080,British,1432233220 +189719,1080,british comedy,1432233227 +189719,1080,controversial,1432233242 +189719,1080,Monty Python,1432233213 +189719,1080,satire,1432233238 +189719,1217,Akira Kurosawa,1432382848 +189719,1217,atmospheric,1432382851 +189719,1249,French,1432673421 +189719,1249,stylish,1432673416 +189719,1288,farce,1432233323 +189719,1288,mockumentary,1432233310 +189719,1288,music business,1432233316 +189719,1289,no dialogue,1432934670 +189719,1289,no narrative,1432934665 +189719,1924,Edward D. Wood Jr.,1432233929 +189719,1924,so bad it's funny,1432233926 +189719,1924,so bad it's good,1432233923 +189719,2019,Akira Kurosawa,1432232937 +189719,2019,atmospheric,1432232939 +189719,2019,epic,1432232931 +189719,2019,historical,1432232934 +189719,2019,long,1432232928 +189719,2019,samurai,1432232924 +189719,2019,toshiro mifune,1432232949 +189719,2232,bad acting,1432671648 +189719,2232,existentialism,1432671635 +189719,2232,mathematics,1432671615 +189719,2232,mindfuck,1432671623 +189719,2232,original,1432671627 +189719,2232,psychological,1432671613 +189719,2232,psychology,1432671617 +189719,2232,scifi,1432671625 +189719,2232,survival horror,1432671653 +189719,2232,weird,1432671619 +189719,2700,free speech,1432692438 +189719,2700,quirky,1432692450 +189719,2700,satire,1432692446 +189719,2916,memory,1432234545 +189719,2916,sci-fi,1432234541 +189719,2916,space travel,1432234560 +189719,3000,adventure,1432232875 +189719,3000,anti-war,1432232864 +189719,3000,atmospheric,1432232887 +189719,3000,dystopia,1432232878 +189719,3000,Hayao Miyazaki,1432232890 +189719,3000,history,1432232895 +189719,3000,nature,1432232868 +189719,3000,talking animals,1432232881 +189719,3000,wilderness,1432232884 +189719,3030,Akira Kurosawa,1432405908 +189719,3030,Toshiro Mifune,1432405905 +189719,3328,deadpan,1432673353 +189719,3328,hip hop,1432673357 +189719,3328,stylized,1432673365 +189719,3328,witty,1432673371 +189719,3703,dystopia,1432408754 +189719,3703,lone hero,1432408769 +189719,3703,post-apocalyptic,1432408752 +189719,3996,buddhism,1432235566 +189719,3996,china,1432232477 +189719,4634,clever,1432691035 +189719,4634,penn jilette,1432691022 +189719,4634,sad ending,1432691032 +189719,4634,teller,1432691028 +189719,6995,so bad it's funny,1432234019 +189719,6995,so bad it's good,1432234010 +189719,7099,anime,1432934493 +189719,7099,comic book,1432934500 +189719,7099,stylized,1432934497 +189719,7669,author:Jane Austen,1432233865 +189719,7669,comedy of manners,1432233879 +189719,7925,Akira Kurosawa,1432382880 +189719,7925,Toshiro Mifune,1432382883 +189719,8376,awkward,1432690925 +189719,8376,off-beat comedy,1432690923 +189719,8376,quirky,1432690932 +189719,8641,Steve Carell,1432690983 +189719,8641,Will Ferrell,1432690980 +189719,26602,norwegian,1432690666 +189719,26602,saami,1432690687 +189719,26602,skiing,1432690727 +189719,27611,cynical,1432686879 +189719,27611,mythology,1432686882 +189719,27773,brutal,1432233124 +189719,27773,depressing,1432233084 +189719,27773,incest,1432233140 +189719,27773,music,1432233128 +189719,27773,Nudity (Full Frontal),1432233116 +189719,27773,stylized,1432233099 +189719,27773,vengeance,1432233136 +189719,27773,violent,1432233108 +189719,44191,dark,1432234413 +189719,44191,dystopia,1432234404 +189719,44191,philosophy,1432234411 +189719,44191,thought-provoking,1432234406 +189719,55908,Excellent use of dialogue,1432232377 +189719,55908,history,1432232383 +189719,55908,immortality,1432232362 +189719,55908,intellectual,1432232353 +189719,55908,philosophical,1432232347 +189719,55908,thought-provoking,1432232350 +189719,57669,ambiguous ending,1432258366 +189719,57669,dark,1432258384 +189719,57669,depression,1432258380 +189719,57669,drugs,1432258387 +189719,57669,stylized,1432258373 +189719,57669,suicide,1432258348 +189719,58084,ambiguous ending,1432686169 +189719,66934,musical,1432233387 +189719,68237,artificial intelligence,1432234479 +189719,68237,death,1432234510 +189719,68237,dialogue driven,1432234495 +189719,68237,dystopia,1432234476 +189719,68237,future,1432234526 +189719,68237,mindfuck,1432234520 +189719,68237,psychology,1432234473 +189719,68237,Sci-fi,1432234469 +189719,68237,science,1432234465 +189719,68237,space,1432234471 +189719,68237,technology,1432234516 +189719,68237,thought-provoking,1432234492 +189719,68237,twist ending,1432234485 +189719,70946,so bad it's funny,1432233981 +189719,70946,so bad it's good,1432233968 +189719,82242,Finnish,1432690595 +189719,85412,mythology,1432690557 +189719,85412,norwegian,1432690563 +189719,94466,dark,1432427369 +189719,94466,dystopia,1432427336 +189719,94466,social commentary,1432427373 +189719,94466,technology,1432427377 +189719,94466,well constructed,1432427340 +189719,117533,anti-authoritarian,1432673538 +189719,117533,computers,1432673446 +189719,117533,edward snowden,1432673448 +189719,117533,informative,1432673451 +189719,117533,nonfiction,1432673453 +189788,127202,bull,1434607511 +189788,127202,rap,1434607513 +189788,129657,awesone,1434607504 +189788,129657,great,1434607501 +189805,58559,psychological,1390790796 +189805,102903,twist ending,1390790865 +189807,92266,1950s,1420319946 +189807,92266,monsters,1420319946 +189807,92266,sci-fi,1420319946 +189807,116754,comedy,1422410411 +189807,116754,fabian,1422410411 +189807,116754,jimmy stewart,1422410411 +189829,339,rom com,1178143216 +189830,99917,indie,1430444616 +189830,99917,meta,1430444616 +189830,99917,romance,1430444616 +189846,44,adapted from:game,1247667289 +189846,44,martial arts,1247667294 +189846,374,comedy,1247667314 +189846,590,Oscar (Best Cinematography),1247876236 +189846,590,Oscar (Best Picture),1247876239 +189846,762,Nudity (Topless - Notable),1247667276 +189846,762,Steven Spielberg,1247667283 +189846,785,Bill Murray,1247667336 +189846,785,bowling,1247667332 +189846,785,sports,1247667328 +189846,1261,cult film,1247667379 +189846,1261,zombies,1247667377 +189846,1265,comedy,1247876225 +189846,1405,great soundtrack,1247667305 +189846,1961,psychology,1247876217 +189846,2186,Alfred Hitchcock,1247667369 +189846,2186,imdb top 250,1247667371 +189846,2455,romance,1247667364 +189846,2986,robots,1247667312 +189846,3087,Bill Murray,1247667325 +189846,4979,quirky,1247876662 +189846,5015,Nudity (Full Frontal - Notable),1247667321 +189846,30707,Oscar (Best Picture),1247876203 +189846,30810,Bill Murray,1247876759 +189846,45722,Johnny Depp,1247876197 +189846,55269,dark comedy,1247876655 +189859,117529,island nublar,1436023479 +189859,117529,tyrannosaurus rex,1436023479 +189859,117529,velociraptor,1436023479 +189871,260,darkside,1436111235 +189871,260,drama,1436111240 +189871,260,inspiring,1436111218 +189871,260,thriller,1436111225 +189875,260,good vs evil,1437503214 +189894,6,realistic,1242162188 +189894,1281,black comedy,1242162389 +189894,1281,hitler,1242162389 +189894,1281,humorous,1242162389 +189894,2318,Lara Flynn Boyle,1242162277 +189894,2318,mental illness,1242162277 +189894,2918,TV,1137252899 +189894,4785,ending twist,1242162341 +189894,4785,harsh,1242162341 +189894,5041,artistic,1242162438 +189894,5041,sword and sorcery,1242162438 +189894,5041,tits,1242162438 +189930,1203,classic,1140551385 +189930,7438,quirky,1140551400 +189930,38061,chandler,1140534160 +189930,39292,McCarthyism,1140534108 +189940,43871,shit,1152338584 +189944,8981,Natalie Portman,1440453833 +189944,41285,Scarlett Johansson,1440453810 +189970,671,Funny as hell,1186183453 +189970,3967,dancing,1186183481 +189970,4262,Great movie,1186183412 +189970,4848,Great movie,1186183414 +189970,6502,rage,1186183433 +189972,260,sci-fi,1439768581 +189972,260,space action,1439768590 +189974,260,action adventure,1444529066 +189974,260,"action, scifi",1444529058 +189974,260,"sf,science fiction",1444529048 +189981,260,adventure,1441834796 +189981,260,epic,1441834787 +189981,260,good vs evil,1441834801 +189981,260,sci-fi,1441834784 +189981,260,space,1441834790 +189985,25,depressing,1139263480 +189985,32,time travel,1138464073 +189985,223,charmingly amateurish,1139263621 +189985,223,true to life,1139263621 +189985,296,overrated,1139328786 +189985,318,prison,1138464077 +189985,413,snl alums,1139077576 +189985,480,good fx,1139328806 +189985,541,Confusing if you haven't read the book,1139263550 +189985,541,overrated,1139263550 +189985,586,sadistic,1139148881 +189985,778,overrrated,1139148854 +189985,924,baffling,1138464071 +189985,938,misogynist,1139328837 +189985,1148,brilliant,1139264211 +189985,1148,hilarious,1139264211 +189985,1220,snl alums,1139263840 +189985,1278,hilarious,1139264094 +189985,1320,wasted potential,1139264247 +189985,1387,animal attacks,1139263778 +189985,1387,top 10 horror movies,1139263778 +189985,1394,hilarious,1139263952 +189985,1527,underrated,1139263582 +189985,2118,cronenberg,1137352091 +189985,2118,steven king,1137352091 +189985,2138,rabbits,1140889054 +189985,2353,bullplop,1148784508 +189985,2578,time travel,1179630103 +189985,2709,best muppet sequel,1139079237 +189985,2712,tedious,1139261280 +189985,2808,cyborgs,1137192692 +189985,2808,zombies,1137192692 +189985,2950,marooned,1137192690 +189985,2950,nude brooke shields,1137192690 +189985,2959,continuity problems,1139263749 +189985,2959,overrated,1139263749 +189985,3040,snl alums,1139329178 +189985,3063,unerotic,1139149551 +189985,3388,cryptozoology,1139149518 +189985,3847,unwatchable sadism,1144779251 +189985,3979,snl alums,1139329154 +189985,3996,overrated,1139263792 +189985,4306,mixed-message,1139263703 +189985,5026,mixed up,1139329215 +189985,5047,short shelf life,1194348012 +189985,5062,plastic surgery,1205069471 +189985,5062,secret societies,1205069471 +189985,5528,Thrill-less,1144779276 +189985,6440,baffling,1139329005 +189985,6659,hilarious,1139329024 +189985,6754,bad acting,1139328965 +189985,6754,matrix ripoff,1139328965 +189985,6754,unthrilling,1139328965 +189985,6957,surprisingly funny,1139328869 +189985,7781,hollywood corn,1139077454 +189985,8528,wasted potential,1139329226 +189985,8783,weak twist,1139329073 +189985,8949,mid-life crisis,1137597989 +189985,8983,bad pacing,1168871764 +189985,8983,overrated,1168871764 +189985,8983,too much cgi,1168871764 +189985,27664,explicit sex scene,1189249893 +189985,27664,road movie,1189249893 +189985,27664,tedious,1189249893 +189985,27820,animal/human connection,1140264695 +189985,34072,overly sentimental,1140447285 +189985,37741,New Yorker,1147643252 +189985,38038,claymation,1140530939 +189985,38886,depressing,1152327991 +190009,339,chick flick,1138553054 +190047,260,classic,1439794507 +190047,260,sci-fi,1439794512 +190048,4226,cult film,1421690092 +190048,4963,feel good movie,1421690170 +190048,4963,heist,1421690155 +190048,4963,Matt Damon,1421690159 +190048,5218,pixar,1421690025 +190048,5378,George Lucas,1421690197 +190048,5378,sci-fi,1421690203 +190048,5944,sci-fi,1421690242 +190048,5944,space,1421690240 +190048,5944,Star Trek,1421690237 +190048,6378,heist,1421690400 +190048,6378,Jason Statham,1421690406 +190048,6539,johnny depp,1421690099 +190048,77201,beautiful scenery,1434183593 +190048,77201,minimal dialogue,1434183578 +190048,77201,mythology,1434183598 +190048,77201,visually appealing,1434183596 +190048,97913,crude humor,1421689998 +190048,106785,father daughter relationship,1421353910 +190048,106785,feel-good,1421353910 +190048,106785,tough girl,1421353910 +190048,114795,battles,1421689930 +190048,114795,dracula,1421689915 +190048,114795,vampires,1421689918 +190048,115998,bodyguard,1424009563 +190048,115998,til schweiger,1424009563 +190048,115998,witness protection programme,1424009563 +190048,125539,crazy gangster,1422296778 +190048,125539,hostage situation,1422296778 +190048,125539,shooting,1422296778 +190048,127323,ethical,1426334001 +190048,127323,robots,1426334001 +190048,127323,simulation,1426334001 +190048,134246,Foreign Service Officer,1434029066 +190048,134246,framed for crimes,1434029077 +190088,2297,scenic,1290306786 +190088,2297,tear jerker,1290306783 +190088,6713,anime,1295202539 +190088,6713,love story,1295202530 +190088,6713,Satoshi Kon,1295202495 +190088,6713,Susumu Hirasawa,1295202425 +190088,7090,wuxia,1357041611 +190088,36519,silly action,1295202113 +190088,45730,beautiful,1300227062 +190088,45730,Feelings,1290306010 +190088,45730,Lovely,1290306528 +190088,45730,Tears of Happiness,1290306551 +190088,48043,Hugh Jackman,1356529492 +190088,52885,Susumu Hirasawa,1295202384 +190088,60684,slow paced,1316226368 +190088,62376,atmosphere,1291854402 +190088,82095,Acting,1291852898 +190088,82095,Alien Invasion,1291584076 +190088,82095,CGI,1291852979 +190088,82095,Eric Balfour,1291852905 +190088,82095,Eyecandy,1291852857 +190088,82095,Hate it or Love it,1294599020 +190088,85131,cliche,1301746795 +190088,94018,anti-war,1356527657 +190088,94018,Good Guy Aliens,1356527635 +190088,94018,irony,1356527625 +190088,98019,animation,1422801487 +190088,98019,dystopia,1422801487 +190088,98019,sci-fi,1422801487 +190088,100882,slapstick,1426455825 +190088,100882,stephen chow,1426455825 +190088,100882,wuxia,1426455825 +190088,107406,dystopia,1395603010 +190088,109864,dystopia,1395052626 +190088,117444,animation,1429379163 +190088,117444,Artistic,1429379155 +190088,117444,Atmosphere,1429379157 +190088,117444,Folklore,1429379158 +190116,1584,based on a book,1292725359 +190116,1584,future,1292725462 +190116,1584,inspirational,1292725451 +190116,1584,Matthew McConaughey,1292725472 +190116,1584,open ending,1292725430 +190116,1584,sci-fi,1292725362 +190116,1584,space,1292725365 +190116,1584,space travel,1292725465 +190116,1584,stoner movie,1292725481 +190116,55908,Excellent use of dialogue,1294958748 +190116,55908,intellectual,1294958723 +190116,55908,life changing,1294958792 +190116,55908,open ending,1294958802 +190116,55908,philosophical,1294958741 +190116,55908,science fiction,1294958767 +190116,55908,thought-provoking,1294958729 +190116,55908,unique,1294958785 +190116,55908,unrealistic characters,1294958758 +190116,60684,alternate history,1293161947 +190116,60684,alternate reality,1293161952 +190116,60684,open ending,1293162086 +190116,60684,sci-fi,1293161958 +190162,92259,based on a true story,1433128462 +190162,92259,heartwarming,1433128462 +190162,92259,unlikely friendships,1433128462 +190167,6565,nice period piece,1180905929 +190167,40629,nice period piece,1180905966 +190167,48600,great heroine,1181099847 +190167,48780,nice period piece,1182786909 +190170,34482,Exceptional Acting,1170706273 +190170,48696,netflixq,1170473595 +190176,260,classic,1442508909 +190176,260,sci-fi,1442508900 +190197,260,adventure,1434793905 +190197,260,classic sci-fi,1434793885 +190243,29,beautiful,1175489546 +190243,29,Dark fantasy,1175489542 +190243,29,dystopia,1175489549 +190243,107,muppets,1177651629 +190243,107,pirates,1177651624 +190243,318,compassionate,1185347138 +190243,318,escape,1185347173 +190243,318,genius,1185347141 +190243,318,justice,1185347151 +190243,318,prison,1234323089 +190243,318,prison escape,1185347153 +190243,318,prison in some cases can make incarserated dependent and incomplete when term is served,1185347163 +190243,318,Strong story,1185347154 +190243,318,Tim Robbins,1185347169 +190243,357,Comedy,1175489035 +190243,357,seen more than once,1175489040 +190243,593,brilliant horror,1171769503 +190243,593,Hannibal Lector,1171769486 +190243,593,Saturn Award (Best Actor),1171769501 +190243,593,this movie scares the stuffing out of me!,1171769495 +190243,593,thriller,1171769480 +190243,671,hilarious,1294370631 +190243,671,spoof,1294370638 +190243,1079,fish,1294370694 +190243,1079,hilarious,1294370680 +190243,1079,john cleese,1294370687 +190243,1079,stutter,1294370698 +190243,1081,Julie Andrews,1170578274 +190243,1148,animals as nemesis,1175489596 +190243,1148,claymation,1175489591 +190243,1148,funny,1175489586 +190243,1148,Nick Park,1175489584 +190243,1148,robots,1175489589 +190243,1148,Wallace & Gromit,1175489581 +190243,1197,classic,1234762178 +190243,1197,Cult classic,1234762147 +190243,1197,fairy tale,1234762162 +190243,1197,fantasy,1234762140 +190243,1197,feel-good,1234762144 +190243,1197,funny,1234762154 +190243,1197,Highly quotable,1234762174 +190243,1197,pirates,1234762164 +190243,1197,Quotable,1234762168 +190243,1197,sword fighting,1234762181 +190243,1197,whimsical,1234762156 +190243,1220,car chase,1249720976 +190243,1220,chicago,1249720956 +190243,1220,classic,1249720960 +190243,1220,illinois nazis,1249720971 +190243,1220,music business,1249720962 +190243,1220,notable soundtrack,1249720981 +190243,1220,road movie,1249720985 +190243,1246,high school,1176883645 +190243,1387,shark,1175490808 +190243,1388,shark,1177651429 +190243,1552,aeroplane,1175490731 +190243,1552,aviation,1175490740 +190243,1552,convicts,1175490746 +190243,1641,working class,1175489063 +190243,1784,Comedy,1177652701 +190243,1784,funny,1177652704 +190243,1784,Helen Hunt,1177652707 +190243,1784,Jack Nicholson,1177652690 +190243,1784,neurosis,1177652716 +190243,1784,obsessive compulsive disorder,1177652711 +190243,1784,relationships,1177652698 +190243,1805,'sexy',1230854769 +190243,1805,lesbian,1230854764 +190243,1805,Nudity (Topless - Notable),1176954364 +190243,1805,Nudity (Topless),1230854766 +190243,1805,seen at the cinema,1176954356 +190243,1805,watched 1998,1176954360 +190243,2083,Change of heart,1177651572 +190243,2083,Christmas,1177651561 +190243,2083,muppets,1177651567 +190243,2083,Victorian era,1177651564 +190243,2359,Irish,1175489085 +190243,2359,wonderful light touch,1175489089 +190243,2683,Heather Graham,1249721556 +190243,2709,king prawn,1177651594 +190243,2709,muppets,1177651598 +190243,2709,puppetry,1177651596 +190243,2881,Nudity (Topless - Brief),1176883176 +190243,2894,Nudity (Full Frontal - Notable),1176883585 +190243,3247,nuns,1177652623 +190243,3247,Whoopi Goldberg,1177652619 +190243,3396,animal,1292284511 +190243,3396,kermit,1292284511 +190243,3396,mayhem band,1292284511 +190243,3396,miss piggy,1292284511 +190243,3396,muppets,1292284511 +190243,3396,road trip,1292284511 +190243,3405,titanic,1168493493 +190243,4019,Sean Connery,1231851838 +190243,4124,franchise,1175490786 +190243,4124,ridiculous,1175490785 +190243,4124,shark,1175490788 +190243,4173,choir,1177651467 +190243,4173,kleptomaniac,1177651476 +190243,4173,panis angelicus,1177651488 +190243,4173,singer,1177651482 +190243,4223,sex,1292284324 +190243,4223,sniper,1292284358 +190243,4223,suspense,1292284365 +190243,4223,war,1292284342 +190243,4225,australian,1175489100 +190243,4225,comedy,1175489102 +190243,4306,Eddie Murphy,1185347356 +190243,4306,very good for kids,1185347359 +190243,4816,blue steel,1294371147 +190243,4816,ridiculously goodlooking,1294371140 +190243,4821,road kill,1229912570 +190243,4973,beautifully filmed,1175489499 +190243,4973,beneficence,1175489482 +190243,4973,fabulous,1175489491 +190243,4973,feel-good,1175489486 +190243,4973,France,1175489488 +190243,4973,French,1175489507 +190243,4973,idealism,1175489511 +190243,4973,Paris,1175489513 +190243,4973,whimsical,1175489502 +190243,4981,farce,1294370914 +190243,4981,He who would valiant be,1294370913 +190243,4981,hobgoblin,1294370930 +190243,4981,hymns,1294370912 +190243,4981,John Bunyan,1294370911 +190243,4981,John Cleese,1294370900 +190243,4981,Monk's Gate,1294370896 +190243,4981,norwich,1294370917 +190243,4981,Pilgrim's Progress,1294370908 +190243,4981,school,1294370922 +190243,4981,time,1294370910 +190243,5013,elegant,1177652630 +190243,5299,Gia Carides,1230853911 +190243,5299,Strong Women,1230853922 +190243,5299,wedding,1230853916 +190243,5372,Chicago,1249720934 +190243,5372,Doris Day,1249720929 +190243,5380,Colin Firth,1176883870 +190243,5380,play adaptation,1176883872 +190243,5470,adaptation,1176883887 +190243,5470,based on a play,1176883885 +190243,5470,Oscar Wilde,1176883877 +190243,5470,play adaptation,1176883875 +190243,5481,hilarious,1185347370 +190243,5481,time travel,1185347372 +190243,5747,Australian,1176883620 +190243,5747,forceful,1176883603 +190243,5747,INNOCENCE LOST,1176883614 +190243,5747,poignant,1176883617 +190243,5747,World War I,1176883613 +190243,5970,sad but much good,1175490472 +190243,6357,bing crosby,1241272019 +190243,6357,Frank Sinatra,1241271973 +190243,6357,Grace Kelly,1241271997 +190243,6357,louis armstrong,1241272035 +190243,7293,drew barrymore,1171769319 +190243,7293,enjoyed despite myself,1171769332 +190243,7323,Berlin,1249720685 +190243,7323,communism,1249720682 +190243,7323,East Germany,1249720657 +190243,7323,family bonds,1249720675 +190243,7323,Germany,1249720655 +190243,7323,great soundtrack,1249720671 +190243,7323,maintaining illusion,1249720664 +190243,7323,Nudity (Topless - Brief),1249720651 +190243,7323,socialism,1249720661 +190243,7323,The fall of the Berlin wall,1249720647 +190243,7323,want to see again,1249720643 +190243,7361,EXPERIMENTS GONE AWRY,1175489438 +190243,7361,LOVE TRIANGLES,1175489403 +190243,7361,modern fantasy,1175489426 +190243,7361,my favourite,1175489418 +190243,7361,philosophy,1175489435 +190243,7361,surreal,1175489442 +190243,7361,the best of recent movies!,1175489431 +190243,7361,wintry,1175489412 +190243,7367,Tom Hanks,1241271910 +190243,8360,Eddie Murphy,1185347362 +190243,8917,hans blix,1294371036 +190243,8917,kim jong il,1294371043 +190243,8917,matt damon,1294371026 +190243,27815,choir,1176883917 +190243,37729,Tim Burton,1175490873 +190243,39183,beautiful,1171769599 +190243,39183,Love story,1171769613 +190243,39183,Moving,1171769607 +190243,39183,Tragedy,1171769587 +190243,40414,But What Did They Do After New Years: Resolve To Kill ALL My Enemies,1249720723 +190243,40414,Christmas,1249720728 +190243,42197,hysterical in a quirky way,1177652658 +190243,42197,Nudity (Topless),1177652660 +190243,44193,cross-dressing,1175490617 +190243,44193,shakespeare,1175490620 +190243,45720,fashion,1231079131 +190243,45720,Meryl Streep,1231079134 +190243,45720,new york city,1231079137 +190243,46578,dance,1292284596 +190243,46578,family,1292284583 +190243,46578,pageant,1292284596 +190243,46578,police,1292284583 +190243,46578,quirky,1292284583 +190243,46578,road trip,1292284583 +190243,47629,Helen Mirren,1175489119 +190243,50160,Ewan McGregor,1170577858 +190243,52973,overrated,1249721444 +190243,60069,pixar,1231335025 +190243,66203,chick flick,1249720207 +190243,66203,Scarlett Johansson,1249720218 +190243,71156,Ewan McGregor,1292284213 +190243,71899,australia,1292284665 +190243,71899,penpals,1292284665 +190243,71899,sad,1292284665 +190243,74946,formulaic,1292283194 +190243,74946,gauche,1292283199 +190243,74946,Pittsburgh,1292283175 +190243,80463,facebook,1295259412 +190243,80463,harvard,1295259432 +190243,80463,law,1295259444 +190243,80463,stanford,1295259440 +190243,80947,geoffrey rush,1294370186 +190243,81845,australian,1294370806 +190243,81845,king,1294370811 +190243,81845,language,1294370833 +190243,81845,stutter,1294370800 +190254,260,sci-fi,1439769166 +190254,260,space,1439769204 +190277,260,Monomyth,1439767880 +190277,260,sci-fi,1439767902 +190286,93693,Will Ferrell,1377611117 +190329,296,overrated,1191788081 +190329,318,Favorite,1191787779 +190329,475,Favorite,1192059718 +190329,912,Favorite,1191786648 +190329,953,Favorite,1191787673 +190329,1136,Favorite,1191786254 +190329,1183,overrated,1191787179 +190329,1207,Favorite,1191787501 +190329,1265,Favorite,1191786309 +190329,2657,overrated,1191787130 +190329,2966,Favorite,1192412703 +190329,2997,overrated,1191786345 +190329,3148,overrated,1192059314 +190329,4027,Favorite,1191786108 +190329,4993,Favorite,1191787770 +190329,5673,Favorite,1192058724 +190329,7361,Favorite,1191786470 +190329,8366,overrated,1192060488 +190329,40819,overrated,1191786876 +190329,45950,overrated,1191787892 +190329,46578,Favorite,1191786370 +190343,3,old people that is actually funny,1208582114 +190343,16,de niro in pink,1208581679 +190343,32,memory remains,1208580914 +190343,47,Brad Pitt,1244555553 +190343,47,disturbing,1244555568 +190343,47,investigation,1244555569 +190343,47,Kevin Spacey,1244555564 +190343,47,Morgan Freeman,1244555555 +190343,47,serial killer,1244555557 +190343,47,twist ending,1244555558 +190343,50,Benicio Del Toro,1244555417 +190343,50,complicated,1244555425 +190343,50,Kevin Spacey,1244555400 +190343,50,organized crime,1244555412 +190343,50,suspense,1244555401 +190343,50,twist ending,1244555406 +190343,161,Gene Hackman,1244557212 +190343,161,Viggo Mortensen,1244557216 +190343,293,forbidden love,1208578843 +190343,296,cult film,1244555102 +190343,296,dark comedy,1244555107 +190343,296,John Travolta,1244555091 +190343,296,Quentin Tarantino,1244555074 +190343,296,Samuel L. Jackson,1244555078 +190343,318,prison escape,1244554626 +190343,318,reflective,1244554654 +190343,353,son of a legend,1208581900 +190343,541,androids,1244553997 +190343,541,cyberpunk,1244554025 +190343,593,Anthony Hopkins,1244555588 +190343,593,cannibalism,1244555592 +190343,593,Jodie Foster,1244555587 +190343,593,psychology,1244555601 +190343,593,serial killer,1244555598 +190343,648,less FX,1208581174 +190343,648,less FX and more storyline please,1208581223 +190343,648,more storyline,1208581174 +190343,733,Ed Harris,1244557245 +190343,733,Sean Connery,1244557243 +190343,778,drug abuse,1244556040 +190343,778,Ewan McGregor,1244556062 +190343,778,heroin,1244556045 +190343,858,Al Pacino,1244554993 +190343,858,classic,1244555029 +190343,858,organized crime,1244555005 +190343,858,robert de niro,1244555001 +190343,1036,Bruce Willis,1244554799 +190343,1036,humorous,1244554791 +190343,1036,lone hero,1244554786 +190343,1089,cult film,1244555140 +190343,1089,humorous,1244555137 +190343,1089,organized crime,1244555132 +190343,1089,Quentin Tarantino,1244555127 +190343,1089,sadism,1208578426 +190343,1101,trend maker,1208581510 +190343,1198,adventure,1244554963 +190343,1198,Harrison Ford,1244554953 +190343,1198,indiana jones,1244554950 +190343,1199,burocracy,1208585246 +190343,1199,dreamlike,1244553967 +190343,1199,stylized,1244553960 +190343,1199,surreal,1244553958 +190343,1199,Terry Gilliam,1244553936 +190343,1199,thought-provoking,1244553938 +190343,1199,wings of freedom,1208585246 +190343,1201,complex characters,1208579062 +190343,1201,the perfect movie,1208579039 +190343,1208,Dark,1244555251 +190343,1208,disturbing,1244555257 +190343,1208,war,1244555264 +190343,1213,crime,1244555059 +190343,1213,mafia,1244555056 +190343,1213,Martin Scorsese,1244555053 +190343,1213,Robert De Niro,1244555050 +190343,1214,androids,1244554702 +190343,1214,futuristic,1244554696 +190343,1214,sci-fi,1244554709 +190343,1214,suspense,1244554713 +190343,1216,dolphins,1244555795 +190343,1216,Jean Reno,1244555781 +190343,1216,Luc Besson,1244555787 +190343,1216,Rosanna Arquette,1244555803 +190343,1216,scuba diving,1244555791 +190343,1222,military,1244555186 +190343,1222,Stanley Kubrick,1244555170 +190343,1234,con,1208578953 +190343,1234,surprise ending,1208578953 +190343,1240,Action,1244554766 +190343,1240,androids,1244554742 +190343,1240,Arnold Schwarzenegger,1244554736 +190343,1240,cyborgs,1244554749 +190343,1247,mature women will like,1208582197 +190343,1252,cynical,1244555301 +190343,1252,Film Noir,1244555295 +190343,1252,Jack Nicholson,1244555283 +190343,1252,Los Angeles,1244555288 +190343,1252,Nicholson style,1208578641 +190343,1252,Roman Polanski,1244555292 +190343,1291,Harrison Ford,1244554849 +190343,1291,indiana jones,1244554841 +190343,1291,Sean Connery,1244554832 +190343,1292,the clever dumb gardener,1208586745 +190343,1307,meg fake orgasm,1208587073 +190343,1380,when travolta was thin,1208582249 +190343,1391,domination doesn't always require more intelligence just better guns,1208581843 +190343,1653,dna curse,1208581952 +190343,1748,dreamlike,1244553663 +190343,1748,mindfuck,1244553637 +190343,1748,Post apocalyptic,1244553645 +190343,1748,thought-provoking,1244553654 +190343,2000,mel eating dog food,1208586938 +190343,2291,he'll cut your hair and your dog's hair with the same unwashed scissorhands,1208585983 +190343,2640,no moral dilema,1208582029 +190343,2710,new concept horror,1208581593 +190343,2959,Brad Pitt,1244555510 +190343,2959,Edward Norton,1244555514 +190343,2959,philosophy,1244555533 +190343,2959,psychology,1244555530 +190343,2959,social commentary,1244555522 +190343,2959,twist ending,1244555525 +190343,2959,violence,1244555524 +190343,3706,Mickey Rourke,1244551654 +190343,3706,Robert De Niro,1244551653 +190343,3949,drug abuse,1244555654 +190343,3949,heroin,1244555650 +190343,3949,social commentary,1244555663 +190343,3977,Cameron Diaz,1244550062 +190343,3977,Lucy Liu,1244550068 +190343,3977,three candies showing off their skills,1208582452 +190343,4011,new wave action comedy,1208579971 +190343,4022,talking to the ball,1208582309 +190343,4226,cult film,1244554596 +190343,4226,investigation,1244554592 +190343,4226,Mindfuck,1244554573 +190343,4226,nonlinear,1244554571 +190343,4226,psychological,1244554577 +190343,4226,twist ending,1244554580 +190343,4234,espionage,1244549510 +190343,4234,Geoffrey Rush,1244549505 +190343,4234,Pierce Brosnan,1244549503 +190343,4235,multiple storylines,1244555699 +190343,4306,the fat green monster that is not Hulk,1208584380 +190343,5004,the elephant is in the pool,1208586168 +190343,5418,car chase,1244556146 +190343,5418,Clive Owen,1244556162 +190343,5418,espionage,1244556131 +190343,5418,france,1244556150 +190343,5418,Matt Damon,1244556135 +190343,5418,realistic action,1244556140 +190343,5418,spy,1244556137 +190343,5500,beware of the bull,1208587596 +190343,5502,ridiculous,1244556864 +190343,5617,spanking is good,1208585738 +190343,5995,too long,1244555376 +190343,6662,the panther and the frog,1208585662 +190343,6663,better than the cartoon,1208586223 +190343,6868,80s,1208761565 +190343,6868,drugs,1208761624 +190343,6868,porn stars,1208761588 +190343,7011,Antonio Banderas,1244555751 +190343,7011,Pedro Almodóvar,1244555753 +190343,7042,sexuality,1244555719 +190343,7089,Fellini at his best,1208585526 +190343,8665,car chase,1244556194 +190343,8665,espionage,1244556192 +190343,8665,Franka Potente,1244556184 +190343,8665,Julia Stiles,1244556207 +190343,8665,Matt Damon,1244556190 +190343,8665,realistic action,1244556201 +190343,8665,spy,1244556203 +190343,31429,u can touch the fish,1208584563 +190343,31878,the only fast oriental film,1208585876 +190343,33154,exploding money balloon,1208584197 +190343,44694,almodovar is growing up,1208586654 +190343,46723,cate blanchett,1244556391 +190343,48394,imagination,1244553739 +190343,48394,stylized,1244553773 +190343,48394,surreal,1244553744 +190343,48394,twist ending,1244553752 +190343,48516,Jack Nicholson,1244555448 +190343,48516,Leonardo DiCaprio,1244555446 +190343,48516,Mafia,1244555455 +190343,48516,Matt Damon,1244555461 +190343,48516,organized crime,1244555463 +190343,48780,illusionist,1208578776 +190343,49272,espionage,1244556283 +190343,49272,James Bond,1244556281 +190343,50872,a rat in the kitcheeeeen!,1208585073 +190343,52281,motorcycle,1244555934 +190343,52281,Quentin Tarantino,1244555914 +190343,52281,Robert Rodriguez,1244555916 +190343,52281,serial killer,1244555919 +190343,53125,adventure,1244556847 +190343,53125,Johnny Depp,1244556839 +190343,53125,Keira Knightley,1244556841 +190343,53519,car chase,1244555874 +190343,53519,great soundtrack,1244555863 +190343,53519,grindhouse,1244555869 +190343,53519,Kick-Butt Women,1244555853 +190343,53519,Kurt Russell,1244555855 +190343,53519,Quentin Tarantino,1244555859 +190343,53519,Rosario Dawson,1244555877 +190343,54286,espionage,1244556219 +190343,54286,Matt Damon,1244556223 +190343,54286,spy thriller,1244556234 +190343,54771,brain sucking aliens,1208583744 +190343,54962,godlike video game,1208583589 +190343,54995,Bruce Willis,1244555975 +190343,54995,crude humor,1244555979 +190343,54995,Josh Brolin,1244555973 +190343,54995,military,1244555967 +190343,54995,motorcycle,1244555986 +190343,54995,Robert Rodriguez,1244555952 +190343,54995,sex scene,1244555982 +190343,54995,tattoo,1244555963 +190343,54995,twins,1244555967 +190343,55290,Casey Affleck,1244556333 +190343,55290,Ed Harris,1244556348 +190343,55290,multilayered,1244556340 +190343,55363,dark and mean,1208583484 +190343,55805,f*ck your brother's wife and live longer,1208583427 +190343,55820,coen brothers,1244556886 +190343,55820,Javier Bardem,1244556889 +190343,55908,Excellent use of dialogue,1244551502 +190343,55908,philosophical,1244551485 +190343,55908,thought-provoking,1244551488 +190343,56174,alone in the world,1208583674 +190343,56367,knocked up in highschool,1208583806 +190343,56367,Napoleon Dynamite female version,1208583928 +190343,56782,capitalism,1208578517 +190343,56782,morality,1208578559 +190343,58025,teens,1208648704 +190343,58559,Batman,1244553797 +190343,58559,Christian Bale,1244553795 +190343,58559,dark,1244553817 +190343,58559,Gary Oldman,1244553807 +190343,58559,Michael Caine,1244553811 +190343,59315,based on a comic,1244553896 +190343,59315,Gwyneth Paltrow,1244553870 +190343,59315,military,1244553876 +190343,60069,Animation,1244554873 +190343,60069,Post apocalyptic,1244554889 +190343,60069,robots,1244554893 +190343,60069,Sci-Fi,1244554898 +190343,60950,Javier Bardem,1244556926 +190343,60950,Scarlett Johansson,1244556932 +190343,61401,based on a comic,1244550245 +190343,61401,Eva Mendes,1244550228 +190343,61401,Samuel L. Jackson,1244550226 +190343,63082,visuals,1244549679 +190343,64497,Jennifer Connelly,1244550000 +190343,64575,Meryl Streep,1244549887 +190343,64575,moral ambiguity,1244549882 +190343,64575,Philip Seymour Hoffman,1244549892 +190343,64614,Clint Eastwood,1244549725 +190343,64614,life & death,1244549743 +190343,64957,Cate Blanchett,1244549814 +190343,65567,Anne Hathaway,1244550184 +190343,65642,complicated,1244551577 +190343,65642,time travel,1244551581 +190343,68358,Leonard Nimoy,1244549337 +190346,260,adventure,1434180804 +190377,260,exciting,1441532106 +190377,260,fun,1441532095 +190408,260,inspiring,1437769885 +190408,260,space adventure,1437769891 +190419,6483,death on screen,1231701841 +190419,6483,homosexuality,1231701841 +190419,6483,movie hell,1231701841 +190419,6483,warning: some people tryed to kill themselves while watching,1231701841 +190419,6483,worst acting,1231701841 +190419,6483,Worst movie ever,1231701570 +190419,6483,would kill not to watch,1231701841 +190419,59727,everything,1247014415 +190419,59727,impossble to see,1247014439 +190419,59727,it was only 1 hr and 28 minutes,1247014551 +190419,59727,it wasnt that long,1247014531 +190419,59727,liv tyler's mouth,1247014503 +190419,59727,nothing,1247014571 +190419,59727,the mouth of liv tyler,1247014515 +190419,59727,too dark,1247014428 +190420,260,action adventure,1443211771 +190420,260,scifi,1443211773 +190424,296,cult film,1435123276 +190424,296,dark comedy,1435123276 +190424,296,tarantino,1435123276 +190449,55363,Casey Affleck,1338115322 +190455,260,sci-fi,1440787748 +190467,31696,rachel weisz,1310424894 +190467,84395,Anthony Hopkins,1310424846 +190467,84395,exorcism,1310424842 +190467,84395,predictable,1310424840 +190499,6378,heist,1436033780 +190499,6378,robbery,1436033774 +190528,260,sci-fi,1441698303 +190532,101,Wes Anderson,1440088627 +190532,260,Star Wars,1451599633 +190532,296,Quentin Tarantino,1440089129 +190532,785,Bill Murray,1440110322 +190532,924,Stanley Kubrick,1440110226 +190532,1203,criterion,1442066717 +190532,1246,Robin Williams,1440088431 +190532,1247,criterion,1450677032 +190532,1704,Robin Williams,1440088412 +190532,2395,Wes Anderson,1440088599 +190532,2948,James Bond,1440191775 +190532,2997,Criterion,1442704383 +190532,3030,criterion,1447800974 +190532,3108,criterion,1447712479 +190532,3108,Robin Williams,1440088535 +190532,3462,criterion,1446683049 +190532,3809,Bill Murray,1440128065 +190532,4306,Shrek,1453946622 +190532,4369,fast & furious,1452649005 +190532,4979,Wes Anderson,1440088636 +190532,6383,fast & furious,1452648988 +190532,30810,Wes Anderson,1440088649 +190532,46335,fast & furious,1452649015 +190532,55269,Wes Anderson,1440088663 +190532,60040,Edward Norton,1440130196 +190532,60040,Marvel,1440130206 +190532,67923,fast & furious,1452649025 +190532,72226,criterion,1451152794 +190532,72226,Wes Anderson,1440088971 +190532,82852,birthday,1443750551 +190532,82852,box office hit,1443933487 +190532,82852,critically bashed,1443750603 +190532,82852,heart condition,1443750669 +190532,82852,latex gloves,1443750616 +190532,82852,male nurse,1443750508 +190532,82852,marriage,1443750647 +190532,82852,medical condition,1443933495 +190532,82852,medical gloves,1443750661 +190532,82852,misunderstanding,1443750557 +190532,82852,nurse,1443750502 +190532,82852,paramount pictures,1444522971 +190532,82852,reference to the godfather,1443750623 +190532,82852,rubber gloves,1443750651 +190532,82852,sterile gloves,1443933471 +190532,82852,surgical gloves,1443933480 +190532,82852,suspicion,1443750549 +190532,82852,universal pictures,1444522956 +190532,86644,fast & furious,1452649043 +190532,94959,criterion,1447712591 +190532,94959,Wes Anderson,1440088586 +190532,97304,Best Picture,1440109346 +190532,99114,Quentin Tarantino,1440110476 +190532,102716,fast & furious,1452649056 +190532,106766,criterion,1447712614 +190532,109374,Wes Anderson,1440088565 +190532,112175,DreamWorks,1441493045 +190532,112852,Marvel,1440109289 +190532,115231,Bill Murray,1440130115 +190532,122900,Marvel Cinematic Universe,1446503732 +190532,130634,fast & furious,1452649082 +190532,134853,Pixar,1440952391 +190532,139855,Charlie Kaufman,1452297895 +190532,150294,horror,1452577081 +190548,736,natural disaster,1451823430 +190548,736,storm,1451823423 +190548,736,tornados,1451823411 +190548,1270,time travel,1428637894 +190548,2473,positive thinking,1430206193 +190548,4246,love story,1446481092 +190548,4246,Renee Zellweger,1446481102 +190548,4246,Romance,1446481078 +190548,4246,romantic comedy,1446481085 +190548,4992,New York City,1428635182 +190548,4992,Romance,1428635215 +190548,5820,musicians,1428635275 +190548,33166,race issues,1431234362 +190548,49518,documentary,1428637621 +190548,49518,DVD-R,1428637611 +190548,49518,music,1428637608 +190548,54276,New York,1446481295 +190548,64229,music,1443180725 +190548,74450,multiple storylines,1446480785 +190548,107067,piano,1428637530 +190548,107354,Beatles,1428637761 +190548,107354,musicians,1428637750 +190548,112316,music,1428635238 +190548,140110,Anne Hathaway,1446480876 +190548,140110,Entrepreneurship,1446480879 +190548,140110,feminist,1446480883 +190548,140110,good,1446480888 +190548,140110,great story,1446480886 +190548,140110,newyork,1446481889 +190548,140110,Robert De Niro,1446480894 +190548,140110,wonderful,1446480897 +190555,904,noir,1257625819 +190555,913,noir,1257625823 +190555,923,classic,1257625861 +190555,1093,mainstream,1257625867 +190555,1111,documentary,1257626017 +190555,1284,noir,1257625864 +190555,1464,post-modern,1257625868 +190555,2187,noir,1257625815 +190555,2648,classic,1257625841 +190555,2925,existentialism,1257625798 +190555,3742,avant-garde,1257625801 +190555,5304,existentialism,1257625959 +190555,5304,neo-realism,1257625959 +190555,5305,trash,1257625817 +190555,6987,expressionism,1257626492 +190555,26350,existentialism,1257626027 +190555,31952,post-modern,1257625635 +190555,39659,existentialism,1257625971 +190555,42094,existentialism,1257626053 +190555,58898,post-modern,1257625812 +190555,71147,existentialism,1257625905 +190572,1625,twist ending,1409416568 +190572,9010,French,1411331359 +190572,48516,complicated plot,1431547415 +190572,48516,Jack Nicholson,1431547394 +190572,48516,Leonardo DiCaprio,1431547376 +190572,48516,organized crime,1431547381 +190572,48516,psychology,1431547406 +190572,48516,suspense,1431547402 +190572,48516,undercover cop,1431547419 +190572,51255,british comedy,1432071559 +190572,51255,twists & turns,1432071582 +190572,60684,alternate history,1419994632 +190572,60684,alternate reality,1419994609 +190572,60684,cinematography,1419994651 +190572,60684,great soundtrack,1419994616 +190572,60684,music,1419994626 +190572,60684,Nudity (Topless),1419994601 +190572,60684,too long,1419994619 +190572,77800,funny,1444677332 +190572,77800,silly,1444677345 +190572,78349,group psychology,1409416518 +190572,85056,cheesy,1446331407 +190572,85056,childish plot,1446331397 +190572,99112,without romance,1430314836 +190572,102407,1920s,1421967329 +190572,102407,cinematography,1421967327 +190572,102407,Leonardo DiCaprio,1421967282 +190572,102407,Modern music,1421967299 +190572,102407,stylized,1421967319 +190572,102903,entertaining,1410126239 +190572,102903,Morgan Freeman,1410126073 +190572,103075,interesting concept,1421696090 +190572,103235,ending,1403611503 +190572,103235,story,1403611486 +190572,103235,twist ending,1403611500 +190572,105504,suspense,1409416634 +190572,105504,true story,1409416616 +190572,107406,dystopia,1427806595 +190572,107406,illogical,1427806615 +190572,107406,Plot twist,1427806630 +190572,107406,post-apocalyptic,1427806592 +190572,107406,social commentary,1427806599 +190572,107406,surreal,1427806636 +190572,107406,violence,1427806618 +190572,109374,cinematography,1403611587 +190572,109374,funny,1403611593 +190572,110730,artificial intelligence,1436915358 +190572,110730,impossible science,1436915366 +190572,110730,nano-technology,1436915364 +190572,110730,poorly thought out ending,1436915354 +190572,111362,Jennifer Lawrence,1420754448 +190572,111362,Marvel,1420754464 +190572,111362,time travel,1420754457 +190572,111362,X-men,1420754478 +190572,111759,aliens,1420754410 +190572,111759,Emily Blunt,1420754429 +190572,111759,original plot,1420754406 +190572,111759,sci-fi,1420754407 +190572,111759,time loop,1420754387 +190572,111759,time travel,1420754418 +190572,111759,Tom Cruise,1420754427 +190572,112552,slow,1423434774 +190572,114818,nudity (topless),1427495073 +190572,114818,story,1427495082 +190572,114818,twists,1427495089 +190572,116797,history,1422224329 +190572,118706,Capitalism,1445360522 +190572,118898,entrepreneur,1434578710 +190572,119141,Seth Rogen,1427716734 +190572,122882,dystopian,1441237024 +190572,122882,non-stop,1441237031 +190572,122882,post apocalypse,1441237026 +190572,122882,visually appealing,1441237021 +190572,135288,photography,1445204738 +190579,71239,horror movie that doesn't rely on sexualised violence,1372600471 +190579,71239,unique,1372600471 +190579,71239,woman as a main character,1372600471 +190613,14,own,1142919122 +190613,18,own,1141541982 +190613,18,Tarantino,1141545675 +190613,26,Shakespeare,1141574445 +190613,31,own,1141544632 +190613,49,own,1141541294 +190613,50,own,1141541250 +190613,70,own,1141542017 +190613,70,Tarantino,1141545760 +190613,81,own,1141542681 +190613,100,own,1141540508 +190613,100,politics,1141540600 +190613,161,own,1141542241 +190613,165,own,1143234232 +190613,180,Kevin Smith,1141545923 +190613,180,own,1141542780 +190613,223,Kevin Smith,1141545915 +190613,223,own,1141542775 +190613,231,own,1143511451 +190613,296,own,1141541967 +190613,296,Tarantino,1141545768 +190613,318,own,1141544708 +190613,318,Stephen King,1141546625 +190613,344,own,1141542505 +190613,353,own,1142105042 +190613,367,own,1141541230 +190613,454,own,1141542915 +190613,497,own,1141545088 +190613,497,Shakespeare,1141545689 +190613,527,own,1143345298 +190613,553,own,1142919034 +190613,556,documentary,1142217683 +190613,593,own,1141543030 +190613,750,own,1141541201 +190613,778,own,1141542344 +190613,802,own,1141542962 +190613,858,own,1141542080 +190613,923,own,1141574193 +190613,1036,own,1143233963 +190613,1049,own,1141542944 +190613,1059,own,1141545141 +190613,1059,Shakespeare,1141545657 +190613,1080,own,1141541464 +190613,1089,own,1141542043 +190613,1089,Tarantino,1141545857 +190613,1090,own,1143234020 +190613,1136,own,1141543144 +190613,1147,documentary,1141789169 +190613,1147,own,1141933168 +190613,1197,own,1141542124 +190613,1215,own,1141540649 +190613,1221,own,1141542081 +190613,1222,own,1143511321 +190613,1224,own,1142403286 +190613,1224,Shakespeare,1141574349 +190613,1245,own,1141541115 +190613,1246,own,1141540533 +190613,1250,own,1141540486 +190613,1261,own,1143355550 +190613,1265,own,1141544872 +190613,1270,own,1143355518 +190613,1293,own,1141540678 +190613,1297,own,1141542200 +190613,1298,own,1141541161 +190613,1370,own,1143233979 +190613,1411,Shakespeare,1142111419 +190613,1464,own,1141542997 +190613,1466,own,1141542454 +190613,1476,own,1141541940 +190613,1566,own,1141542221 +190613,1639,own,1141542763 +190613,1704,own,1141543181 +190613,1729,own,1141541996 +190613,1729,Tarantino,1141545836 +190613,1827,documentary,1141933650 +190613,1845,own,1141542701 +190613,1884,own,1141542554 +190613,1921,own,1141542721 +190613,2011,own,1143355524 +190613,2012,own,1143355531 +190613,2023,own,1141542082 +190613,2112,own,1141543199 +190613,2120,Stephen King,1141574319 +190613,2268,own,1141544610 +190613,2320,own,1141542979 +190613,2320,Stephen King,1141545819 +190613,2324,own,1141540703 +190613,2396,own,1141541517 +190613,2396,Shakespeare,1141544185 +190613,2443,own,1141544655 +190613,2502,own,1141541140 +190613,2580,own,1141542432 +190613,2600,own,1141542656 +190613,2622,own,1141545048 +190613,2622,Shakespeare,1141545942 +190613,2762,own,1142438958 +190613,2762,Shyamalan,1142110261 +190613,2763,own,1141544960 +190613,2788,own,1143504680 +190613,2848,own,1141545116 +190613,2848,Shakespeare,1141545894 +190613,2858,own,1141542361 +190613,2912,own,1142438980 +190613,2916,own,1141542866 +190613,2916,politics,1141573604 +190613,2959,own,1143511405 +190613,3006,docudrama,1143345244 +190613,3052,Kevin Smith,1141574089 +190613,3052,own,1141542803 +190613,3087,own,1141541184 +190613,3156,Isaac Asimov,1141545881 +190613,3156,own,1141544901 +190613,3252,own,1141544675 +190613,3259,own,1141542889 +190613,3263,own,1141541318 +190613,3275,own,1141542379 +190613,3386,docudrama,1143260989 +190613,3386,own,1141542305 +190613,3386,politics,1141573369 +190613,3504,own,1141542397 +190613,3504,politics,1141573450 +190613,3535,own,1141542476 +190613,3566,own,1141543162 +190613,3598,own,1141545163 +190613,3598,Shakespeare,1141545905 +190613,3719,Shakespeare,1142112096 +190613,3896,own,1141542110 +190613,3994,own,1143512097 +190613,3994,Shyamalan,1142110209 +190613,4011,own,1141543085 +190613,4033,own,1141541271 +190613,4033,politics,1141573469 +190613,4034,own,1141542846 +190613,4105,own,1141540622 +190613,4223,own,1143234001 +190613,4349,own,1143234197 +190613,4734,Kevin Smith,1141544216 +190613,4734,own,1141542821 +190613,4776,own,1142919067 +190613,4873,own,1141543238 +190613,5137,own,1141543259 +190613,5502,own,1142438948 +190613,5502,Shyamalan,1142109611 +190613,5561,politics,1142403388 +190613,5619,documentary,1141934183 +190613,5669,documentary,1142131830 +190613,5669,own,1142128175 +190613,5669,politics,1141574515 +190613,5681,politics,1141574430 +190613,5810,own,1141542610 +190613,6679,own,1141748469 +190613,6775,own,1141749689 +190613,6775,politics,1141574270 +190613,6780,own,1141664998 +190613,6807,own,1143504719 +190613,6935,own,1141749640 +190613,6935,politics,1141574282 +190613,6997,own,1142919182 +190613,7002,own,1141544487 +190613,7007,own,1141542324 +190613,7069,own,1141545071 +190613,7069,Shakespeare,1141545753 +190613,7124,own,1141543334 +190613,8375,documentary,1142128218 +190613,8375,own,1141541361 +190613,8375,politics,1141573492 +190613,8464,own,1141543276 +190613,8581,own,1141933193 +190613,8582,own,1141541386 +190613,8582,politics,1141545731 +190613,8622,documentary,1141933472 +190613,8622,own,1142364052 +190613,8622,politics,1141574397 +190613,8644,Isaac Asimov,1141544937 +190613,8644,own,1141544937 +190613,8753,own,1142128087 +190613,8753,politics,1141574367 +190613,8783,own,1143512078 +190613,8783,Shyamalan,1142109790 +190613,8873,own,1142104986 +190613,8917,politics,1141574413 +190613,8949,own,1141544765 +190613,8961,own,1141542191 +190613,27846,documentary,1141789111 +190613,27846,own,1141542596 +190613,27846,politics,1141573386 +190613,27899,documentary,1141789127 +190613,27899,own,1141544514 +190613,27912,own,1141749670 +190613,27912,politics,1141574254 +190613,30850,own,1141541596 +190613,30850,Shakespeare,1141545740 +190613,31689,politics,1141574387 +190613,32587,own,1141543070 +190613,33154,own,1141749705 +190613,33166,own,1141542635 +190613,37240,documentary,1142127951 +190613,37240,own,1142127952 +190613,37240,politics,1142127952 +190627,260,classic sci-fi,1440870610 +190627,260,space adventure,1440870603 +190635,6,long,1138489832 +190635,32,bruce willis,1135429442 +190635,47,brad pitt,1135429412 +190635,47,morgan freeman,1135429412 +190635,1193,jack nicholson,1135429371 +190635,1206,stanley kubrick,1135429248 +190635,1208,crazy war,1136912950 +190635,1500,unrealistic,1138137416 +190635,1732,coen brothers,1135429236 +190635,1884,drugs,1136912921 +190635,1884,hunter s. thompson,1136912921 +190635,2329,edward norton,1135429508 +190635,2329,fuckoff nazi,1135429508 +190635,2788,monty python,1135429210 +190635,2858,kevin spacey,1135429466 +190635,3168,drugs & music,1136832886 +190635,3168,sex,1136832886 +190635,4011,brad pitt,1135429431 +190635,4011,guy ritchie,1135429431 +190635,4082,bukowsky,1136912766 +190635,5004,peter sellers,1135429399 +190635,5103,children,1227122827 +190635,5294,religious,1136754393 +190635,5618,in the true meaning of the word:awesome,1169515594 +190635,6003,pure entertainment,1136912963 +190635,6016,brazil,1135429520 +190635,6679,Comedy??,1136913986 +190635,7008,wierd,1137321754 +190635,27846,capitalism,1165617370 +190635,27846,documentary,1165617374 +190635,27846,politics,1165617376 +190635,33171,dramatic,1139338488 +190635,38600,Charles Bukowski,1146592845 +190635,41569,too long,1138112987 +190635,41997,too long,1138447064 +190635,58295,Funny,1222516144 +190635,61236,animated,1241205816 +190635,71131,Louis Theroux,1282065921 +190635,75985,brutality,1282423840 +190635,76143,Funny,1270218106 +190647,296,action,1438215918 +190647,296,classic,1438215918 +190647,296,fun,1438215918 +190692,85342,honor bullshit,1420303732 +190692,85342,idealism,1420303732 +190692,85342,police brutality,1420303732 +190720,8982,Beautiful story.,1164371769 +190720,26865,martial arts,1164371738 +190720,33794,action,1164372427 +190720,34405,action,1164371777 +190720,34405,scifi,1164371774 +190720,37733,Best of 2005,1164372048 +190720,48982,Dreamworks,1164371744 +190748,260,modern myth,1433439649 +190748,260,space adventure,1433439661 +190768,104097,family,1426166910 +190768,104097,mlp,1426166917 +190786,260,Amazing cast for one of the most successful sci-fi of the history of cinema. An epic story,1438955804 +190786,260,space epic,1438955815 +190811,49286,Christmas,1400592832 +190811,55955,Christmas Miracle,1400601387 +190831,55908,philosophical,1215825120 +190831,59594,black comedy,1215825148 +190831,59594,funny,1215825150 +190834,8459,beautifully enigmatic,1192417156 +190880,260,future,1436699332 +190880,260,space,1436699341 +190886,7225,arnold,1137620892 +190899,6541,gothic,1425539881 +190899,6541,steampunk,1425539877 +190925,150,stranded,1368273492 +190925,648,spying,1368273442 +190925,858,oscar (best directing),1368273464 +190925,1479,spying,1368273442 +190925,1517,spying,1368273442 +190925,2949,spying,1368273442 +190925,3147,oscar (best directing),1368273464 +190925,3949,oscar (best directing),1368273463 +190925,4235,oscar (best foreign language film),1368273481 +190925,5995,jews,1368273423 +190925,8665,spying,1368273442 +190925,54286,spying,1368273442 +190925,64716,moving,1305930074 +190937,1235,May-December romance,1215491194 +190952,2313,goodness of mankind,1351123306 +190952,2313,human spirit,1351123316 +190952,2313,personality over looks,1351123336 +190959,2683,parody,1190043224 +190959,4027,funny,1190043188 +190973,260,action,1440900682 +190973,260,good science fictional technology,1440900702 +190973,260,Science Fiction,1440900666 +190973,260,space adventure,1440900686 +190973,1198,action,1440982594 +190973,1198,adventure,1440982544 +190973,1198,archaeology,1440982602 +190973,1198,Harrison Ford,1440982598 +190973,69844,adventure,1440982635 +190973,69844,fantasy,1440982659 +190973,69844,harry potter,1440982622 +190973,69844,magic,1440982619 +190973,77561,action,1440982676 +190973,77561,Marvel,1440982692 +190973,77561,sci-fi,1440982682 +190987,296,comedy,1279322254 +190987,296,dark comedy,1279322257 +190987,296,Quentin Tarantino,1279322245 +190987,296,Samuel L. Jackson,1279322248 +190987,296,stylized,1279322249 +190987,296,Uma Thurman,1279322284 +190987,8376,boring,1279314150 +190987,8376,gross,1279314158 +190987,8376,llama,1279314168 +190987,63876,Emile Hirsch,1279314564 +190987,63876,gay,1279314541 +190987,63876,history,1279314573 +190987,63876,James Franco,1279314548 +190987,63876,Josh Brolin,1279314569 +190987,64957,long,1279314417 +190987,68157,Quentin Tarantino,1279241770 +190987,70984,Ang Lee,1279314485 +190987,70984,Demetri Martin,1279314469 +190987,70984,Emile Hirsch,1279314477 +190987,71518,Ellen Page,1280183996 +190987,71518,girl power,1280183981 +190987,71518,pop counterculture,1280184000 +190987,71518,sport:roller derby,1280184010 +190988,1757,moody,1244301665 +190988,1757,mute,1244301670 +190988,1757,nocturnal,1244301662 +190988,1757,pigs,1244301655 +190993,58559,superhero,1220512233 +191004,6807,Philosophy,1450645251 +191004,90531,psychology,1449083136 +191004,90531,self-destruction,1449083151 +191004,104390,philosophy,1449078802 +191004,134115,absurdism,1447872337 +191004,134115,existencialism,1447872316 +191004,142422,New York,1450624459 +191015,4291,Dabney Coleman,1284968480 +191015,4291,Dolly Parton,1284968470 +191015,4291,drug use,1284968438 +191015,4291,Jane Fonda,1284968470 +191015,4291,Lily Tomlin,1284968470 +191015,4291,Relevant today,1284968440 +191015,4291,subplot,1284968434 +191042,78039,bleak,1420001900 +191052,260,classic,1444528367 +191052,260,movies from my childhood,1444528390 +191070,47,investigation,1442145455 +191070,47,morgan freeman,1442145451 +191077,2683,funny,1285172848 +191077,2683,Hilarious,1285172844 +191077,2683,James Bond,1285172865 +191077,2683,Mike Myers,1285172851 +191077,2683,stupid,1285172857 +191095,15,treasure,1367437283 +191095,107,treasure,1367437283 +191095,256,arnold,1367437449 +191095,296,r:disturbing violent content including rape,1427495014 +191095,296,r:strong language,1427495014 +191095,296,wry humor,1427495014 +191095,353,dark hero,1367437409 +191095,380,arnold,1367437449 +191095,485,arnold,1367437449 +191095,589,arnold,1367437449 +191095,592,dark hero,1367437409 +191095,748,conspiracy theory,1367437891 +191095,836,conspiracy theory,1367437891 +191095,1069,noir thriller,1367437315 +191095,1240,arnold,1367437449 +191095,1252,noir thriller,1367437315 +191095,1284,noir thriller,1367437315 +191095,1291,spielberg,1367438064 +191095,1291,treasure,1367437283 +191095,1377,dark hero,1367437409 +191095,1387,spielberg,1367438064 +191095,1391,mars,1367437392 +191095,1615,stranded,1367437344 +191095,1617,neo-noir,1367437656 +191095,1894,stranded,1367437344 +191095,2022,jesus,1367437261 +191095,2028,spielberg,1367438064 +191095,2115,spielberg,1367438064 +191095,2193,dragon,1367437911 +191095,2353,conspiracy theory,1367437892 +191095,2707,conspiracy theory,1367437892 +191095,2803,conspiracy theory,1367437892 +191095,2916,arnold,1367437449 +191095,2950,stranded,1367437344 +191095,3264,cheerleading,1367437433 +191095,3435,noir thriller,1367437315 +191095,3623,mountain climbing,1367437961 +191095,3996,dragon,1367437913 +191095,4142,christian,1367437626 +191095,4638,stranded,1367437344 +191095,4848,short-term memory loss,1367438042 +191095,4881,neo-noir,1367437656 +191095,4974,cheerleading,1367437434 +191095,5017,noir thriller,1367437315 +191095,5445,spielberg,1367438064 +191095,5463,dragon,1367437911 +191095,5989,spielberg,1367438064 +191095,6377,short-term memory loss,1367438042 +191095,6539,treasure,1367437283 +191095,6696,bollywood,1367437238 +191095,7060,jesus,1367437261 +191095,7318,jesus,1367437261 +191095,7386,christian,1367437627 +191095,7482,dragon,1367437912 +191095,7728,noir thriller,1367437315 +191095,8366,christian,1367437626 +191095,8529,stranded,1367437344 +191095,27773,short-term memory loss,1367438042 +191095,47999,jesus,1367437261 +191095,53125,treasure,1367437283 +191095,56775,treasure,1367437283 +191095,70183,ridiculous end,1265402376 +191095,71464,Annoying,1272933977 +191095,73017,BORING!,1262044016 +191095,76093,dragon,1367437911 +191095,76175,Draco,1271808262 +191095,76175,Perseus,1271808151 +191095,76175,Solon,1271808265 +191095,76251,Hit Girl,1271806945 +191095,76251,Kick Ass,1271806947 +191095,79132,short-term memory loss,1367438042 +191097,25,adapted from:book,1295675707 +191097,25,addiction,1262587040 +191097,25,alcoholism,1262587047 +191097,25,atmospheric,1295675704 +191097,25,based on a book,1295675700 +191097,25,dark,1262587050 +191097,25,depressing,1262587052 +191097,25,drinking,1295675721 +191097,25,Elisabeth Shue,1262587055 +191097,25,intimate,1295675696 +191097,25,loneliness,1295675677 +191097,25,love,1295675684 +191097,25,Nicolas Cage,1295675664 +191097,25,Nudity (Topless),1262587029 +191097,25,prostitution,1262587033 +191097,25,SUICIDE,1262587035 +191097,25,understated,1295675671 +191097,39,1990s,1296029099 +191097,39,adaptation,1296029102 +191097,39,Alicia Silverstone,1296029105 +191097,39,based on a book,1296029108 +191097,39,Brittany Murphy,1296029119 +191097,39,chick flick,1296029126 +191097,39,Comedy,1296029129 +191097,39,funny,1296029139 +191097,39,girlie movie,1296029141 +191097,39,high school,1296029145 +191097,39,silly,1296029151 +191097,39,teen,1296029153 +191097,47,atmospheric,1296026297 +191097,47,biblical,1296026306 +191097,47,Brad Pitt,1296026301 +191097,47,Christianity,1296026304 +191097,47,dark,1296026308 +191097,47,detective,1296026310 +191097,47,disturbing,1296026312 +191097,47,grim,1296026314 +191097,47,investigation,1296026315 +191097,47,Kevin Spacey,1296026317 +191097,47,Morgan Freeman,1296026319 +191097,47,mystery,1296026320 +191097,47,philosophical,1296026322 +191097,47,police,1296026323 +191097,47,powerful ending,1296026326 +191097,47,psychology,1296026328 +191097,47,religion,1296026330 +191097,47,twists & turns,1296026337 +191097,47,violent,1296026338 +191097,69,friendship,1296027707 +191097,69,funny,1296027710 +191097,69,Ice Cube,1296027714 +191097,111,atmospheric,1295677598 +191097,111,cult film,1295677600 +191097,111,disturbing,1295677602 +191097,111,grim,1295677607 +191097,111,insanity,1295677609 +191097,111,New York,1295677612 +191097,111,New York City,1295677614 +191097,111,paranoid,1295677615 +191097,111,prostitution,1295677617 +191097,111,social commentary,1295677619 +191097,111,vigilante,1295677621 +191097,111,vigilantism,1295677623 +191097,111,visceral,1295677625 +191097,125,gratuitous sex,1296955084 +191097,162,artist mind,1349058360 +191097,162,biography,1349058364 +191097,162,comic book,1349058368 +191097,162,deliberate,1349058373 +191097,162,documentary,1349058411 +191097,162,irreverent,1349058387 +191097,162,raunchy,1349058391 +191097,162,sexual,1349058383 +191097,162,wry,1349058385 +191097,175,AIDS,1296451347 +191097,175,controversial,1296451349 +191097,175,drugs,1296451351 +191097,175,indecent,1296451353 +191097,175,New York City,1296451361 +191097,175,Nudity (Full Frontal),1296451363 +191097,175,teen,1296451373 +191097,175,teenagers,1296451374 +191097,175,the ending,1296451379 +191097,175,Very interesting,1296451382 +191097,175,youth gone wild,1296451385 +191097,180,1990s,1300417611 +191097,180,comedy,1300417617 +191097,180,comic books,1300417621 +191097,180,crude humor,1300417623 +191097,180,ensemble,1300417625 +191097,180,good dialogue,1300417627 +191097,180,hilarious,1300417630 +191097,180,Jay and Silent Bob,1300417633 +191097,180,Kevin Smith,1300417637 +191097,180,Nudity (Topless),1300417641 +191097,180,one day,1300417644 +191097,180,teen,1300417650 +191097,180,teen angst,1300417652 +191097,180,view askew,1300417654 +191097,193,campy,1296625666 +191097,193,controversial,1296625667 +191097,193,cult film,1296625674 +191097,193,cynical,1296625676 +191097,193,dull,1296625713 +191097,193,Las Vegas,1296625684 +191097,193,lurid,1296625687 +191097,193,Nudity (Full Frontal - Notable),1296625691 +191097,193,Nudity (Full Frontal),1296625693 +191097,193,overacting,1296625709 +191097,193,raunchy,1296625697 +191097,193,sexual,1296625700 +191097,193,strippers,1296625702 +191097,193,T&A,1298398791 +191097,193,watched it for the boobs,1296625704 +191097,223,black and white,1296451254 +191097,223,crude humor,1296451255 +191097,223,cynical,1296451258 +191097,223,funny,1296451260 +191097,223,good dialogue,1296451261 +191097,223,great dialogue,1296451263 +191097,223,hilarious,1296451266 +191097,223,irreverent,1296451268 +191097,223,jay and silent bob,1296451271 +191097,223,literate,1296451273 +191097,223,low budget,1296451276 +191097,223,matter-of-fact,1296451277 +191097,223,quirky,1296451278 +191097,223,slackers,1296451280 +191097,223,surreal,1296451281 +191097,223,witty,1296451285 +191097,223,wry,1296451288 +191097,247,Australia,1296325566 +191097,247,based on a true story,1296325569 +191097,247,coming of age,1296325571 +191097,247,disturbing,1296325573 +191097,247,Kate Winslet,1296325575 +191097,247,lesbian,1296320802 +191097,247,New Zealand,1296325576 +191097,247,Nudity (Topless - Notable),1296325578 +191097,247,Nudity (Topless),1296325580 +191097,247,Peter Jackson,1296325585 +191097,247,poignant,1296325589 +191097,247,REDEMPTION,1296325590 +191097,247,revenge,1296325592 +191097,247,romance,1296325595 +191097,247,stylized,1296325597 +191097,247,surreal,1296325599 +191097,247,surrealism,1296325600 +191097,247,true story,1296325602 +191097,247,visceral,1296325605 +191097,281,Melanie Griffith,1431328105 +191097,281,Nudity (Topless - Notable),1431328073 +191097,281,nudity (topless),1431328059 +191097,300,based on a true story,1297303649 +191097,318,adapted from:book,1295678534 +191097,318,atmospheric,1295678535 +191097,318,based on a book,1295678537 +191097,318,based on book,1295678538 +191097,318,friendship,1295678541 +191097,318,heartwarming,1295678556 +191097,318,inspirational,1295678558 +191097,318,reflective,1295678562 +191097,318,Stephen King,1295678564 +191097,318,thought-provoking,1295678565 +191097,322,black comedy,1296271632 +191097,322,dark comedy,1296271635 +191097,322,Kevin Spacey,1296271637 +191097,322,mean,1296271638 +191097,322,revenge,1296271644 +191097,441,1970s,1296028081 +191097,441,affectionate,1296028083 +191097,441,Anthony Rapp,1296028085 +191097,441,Ben Affleck,1296028088 +191097,441,deadpan,1296028090 +191097,441,drugs,1296028092 +191097,441,high school,1296028095 +191097,441,HIGH SCHOOL LIFE,1296028098 +191097,441,Highly quotable,1296028102 +191097,441,irreverent,1296028105 +191097,441,marijuana,1296028107 +191097,441,Matthew McConaughey,1296028110 +191097,441,Milla Jovovich,1296028113 +191097,441,nostalgic,1296028118 +191097,441,quirky,1296028121 +191097,441,small town,1296028123 +191097,441,teen,1296028125 +191097,441,Texas,1296028127 +191097,527,based on a book,1295678675 +191097,527,based on a true story,1295678679 +191097,527,based on book,1295678681 +191097,527,disturbing,1295678693 +191097,527,historical,1295678695 +191097,527,Holocaust,1295678701 +191097,527,literary adaptation,1295678703 +191097,527,sexuality,1296022963 +191097,527,true story,1295678718 +191097,541,artificial intelligence,1296358075 +191097,541,assassin,1296358079 +191097,541,atmospheric,1296358077 +191097,541,based on a book,1296358081 +191097,541,cult film,1296358083 +191097,541,cyberpunk,1296358084 +191097,541,dreamlike,1296358088 +191097,541,dystopia,1296358090 +191097,541,existentialism,1296358093 +191097,541,fantasy,1296358096 +191097,541,future,1296358098 +191097,541,futuristic,1296358102 +191097,541,genetics,1296358105 +191097,541,great soundtrack,1296358107 +191097,541,Harrison Ford,1296358109 +191097,541,memory,1296358112 +191097,541,Nudity (Topless),1296358114 +191097,541,Philip K. Dick,1296358116 +191097,541,robots,1296358118 +191097,541,stylized,1296358120 +191097,551,atmospheric,1418421566 +191097,551,beautiful,1418421569 +191097,551,creepy,1418421573 +191097,551,cult film,1418421592 +191097,551,dark,1418421585 +191097,551,gothic,1418421564 +191097,551,stylized,1418421577 +191097,551,surreal,1418421581 +191097,551,Tim Burton,1418421560 +191097,562,adolescence,1296345971 +191097,562,adolescence is hell,1296345988 +191097,562,comedy,1296345990 +191097,562,depressing,1296345992 +191097,562,disturbing,1296345995 +191097,562,indie,1296346008 +191097,562,poignant,1296346016 +191097,562,quirky,1296346019 +191097,562,school drama,1296346024 +191097,562,Ugly main character,1296346029 +191097,562,unsettling,1296346033 +191097,574,disturbing,1296450281 +191097,574,incest,1202352967 +191097,574,Nudity (Full Frontal),1296450284 +191097,585,parody,1295680909 +191097,593,based on a book,1295678326 +191097,593,based on book,1295678329 +191097,593,cannibalism,1295678330 +191097,593,disturbing,1295678332 +191097,593,gothic,1295678336 +191097,593,Horror,1295678338 +191097,593,mental illness,1295678340 +191097,593,psychology,1295678350 +191097,593,torture,1295678355 +191097,593,twists & turns,1295678362 +191097,593,violent,1295678359 +191097,751,incest,1202352741 +191097,751,not funny,1296450471 +191097,751,not scary,1296450487 +191097,751,surreal,1296450443 +191097,778,adapted from:book,1295677124 +191097,778,addiction,1295677125 +191097,778,based on a book,1295677130 +191097,778,black comedy,1295677131 +191097,778,British,1295677135 +191097,778,dark comedy,1295677139 +191097,778,drug abuse,1295677141 +191097,778,Ewan McGregor,1295677145 +191097,778,great soundtrack,1295677149 +191097,778,heroin,1295677151 +191097,778,notable soundtrack,1295677154 +191097,778,Nudity (Full Frontal - Notable),1295677163 +191097,778,robbery,1295677167 +191097,778,soccer,1295677165 +191097,778,social commentary,1295677171 +191097,778,violent,1295677169 +191097,951,adapted from B'way,1296277167 +191097,951,BATTLE OF THE SEXES,1296277176 +191097,951,biting,1296277180 +191097,951,Cary Grant,1296277124 +191097,951,corny,1296279778 +191097,951,dialogue driven,1296277197 +191097,951,humorous,1296277202 +191097,951,madcap,1296277203 +191097,951,quirky,1296277214 +191097,951,satirical,1296277216 +191097,951,Screwball Comedy,1296277219 +191097,951,talky,1296277163 +191097,1051,addiction,1295677075 +191097,1051,alcoholism,1295677077 +191097,1051,Chlöe Sevigny,1295677079 +191097,1051,drinking,1295677083 +191097,1051,drugs,1295677084 +191097,1051,ice cream,1295677086 +191097,1051,intimate,1295677091 +191097,1051,losers,1295677095 +191097,1051,SMALL-TOWN LIFE,1295677099 +191097,1051,teenagers,1295677104 +191097,1060,90s,1300383674 +191097,1060,funny,1300383677 +191097,1060,great dialogue,1300383679 +191097,1060,Heather Graham,1300383681 +191097,1060,Los Angeles,1300383694 +191097,1060,Perfect timing,1300383690 +191097,1094,based on a true story,1296626078 +191097,1094,cross dressing,1296626081 +191097,1094,cross dressing men,1296626083 +191097,1094,England,1296626087 +191097,1094,male nudity,1296626101 +191097,1094,puzzling,1296626111 +191097,1094,queer,1296626108 +191097,1094,sexual orientation,1296626121 +191097,1094,transgender,1296626124 +191097,1094,Transgendered,1296626126 +191097,1094,twist ending,1296626128 +191097,1094,violent,1296626131 +191097,1147,boxing,1418430437 +191097,1147,Muhammad Ali,1418430453 +191097,1188,Australia,1295677788 +191097,1188,Australian,1295677789 +191097,1188,ballroom dancing,1295677794 +191097,1188,campy,1295677799 +191097,1188,chick flick,1295677801 +191097,1188,competition,1295677804 +191097,1188,Dance,1295677810 +191097,1188,feel good,1295677815 +191097,1192,documentary,1298849898 +191097,1192,lgbt,1298849900 +191097,1192,prostitution,1298849928 +191097,1192,queer,1298849902 +191097,1192,sad,1298849904 +191097,1192,transgender,1298849917 +191097,1199,atmospheric,1296345577 +191097,1199,black comedy,1296345581 +191097,1199,dark,1296345583 +191097,1199,dark comedy,1296345587 +191097,1199,dreamlike,1296345594 +191097,1199,dystopia,1296345596 +191097,1199,fantasy,1296345599 +191097,1199,future,1296345606 +191097,1199,futuristic,1296345602 +191097,1199,hallucinatory,1296345609 +191097,1199,Nudity (Topless - Brief),1296345611 +191097,1199,quirky,1296345615 +191097,1199,Robert De Niro,1296345619 +191097,1199,satire,1296345622 +191097,1199,satirical,1296345625 +191097,1199,stylized,1296345627 +191097,1199,surveillance,1296345629 +191097,1199,Terry Gilliam,1296345638 +191097,1199,thought-provoking,1296345636 +191097,1208,Nudity (Topless),1435303189 +191097,1214,alien,1296358135 +191097,1214,aliens,1296358137 +191097,1214,androids,1296358138 +191097,1214,atmospheric,1296358140 +191097,1214,dark,1296358141 +191097,1214,franchise,1296358145 +191097,1214,futuristic,1296358147 +191097,1214,gruesome,1296358149 +191097,1214,haunted house,1296358152 +191097,1214,monster,1296358153 +191097,1214,paranoid,1296358168 +191097,1214,Ridley Scott,1296358158 +191097,1214,sci-fi,1296358174 +191097,1214,science fiction,1296358176 +191097,1214,sexy girls,1296358220 +191097,1214,sexy protagonist,1296358220 +191097,1214,Sigourney Weaver,1296358178 +191097,1214,space,1296358180 +191097,1214,space travel,1296358183 +191097,1214,suspense,1296358185 +191097,1214,suspenseful,1296358187 +191097,1214,visceral,1296358189 +191097,1220,car chase,1431895886 +191097,1220,classic,1431892544 +191097,1220,cult classic,1431892577 +191097,1220,Dan Aykroyd,1431892553 +191097,1220,great soundtrack,1431892564 +191097,1220,John Belushi,1431892555 +191097,1220,notable soundtrack,1431892548 +191097,1220,rhythm & blues,1431892587 +191097,1236,bittersweet,1295677018 +191097,1236,deadpan,1295677020 +191097,1236,Hal Hartley,1295677029 +191097,1236,John MacKay,1295677037 +191097,1236,literate,1295677034 +191097,1236,Long Island,1295677040 +191097,1236,Martin Donovan,1295677042 +191097,1236,Merritt Nelson,1295677046 +191097,1236,New York,1295677048 +191097,1236,quirky,1295677051 +191097,1236,SUBURBAN DYSFUNCTION,1295677054 +191097,1236,wry,1295677064 +191097,1241,campy,1298324610 +191097,1241,cult film,1298324612 +191097,1241,gore,1298324614 +191097,1241,gross out,1298324615 +191097,1241,virus,1298324621 +191097,1241,zombie,1298324623 +191097,1241,zombies,1298324625 +191097,1252,atmospheric,1296450515 +191097,1252,bleak,1296450517 +191097,1252,cynical,1296450520 +191097,1252,dark,1296450521 +191097,1252,Exceptional Acting,1296450524 +191097,1252,Film Noir,1296450525 +191097,1252,incest,1202353016 +191097,1252,Jack Nicholson,1296450528 +191097,1252,Los Angeles,1296450530 +191097,1252,menacing,1296450533 +191097,1252,moody,1296450535 +191097,1252,Nudity (Topless - Brief),1296450537 +191097,1252,Roman Polanski,1296450548 +191097,1252,somber,1296450547 +191097,1259,1960s,1295677943 +191097,1259,based on a book,1295677927 +191097,1259,coming of age,1295677947 +191097,1259,friendship,1295677949 +191097,1259,INNOCENCE LOST,1295677961 +191097,1259,nostalgic,1295677964 +191097,1259,poignant,1295677965 +191097,1259,Stephen King,1295677982 +191097,1259,wistful,1295677980 +191097,1268,1980s,1296964865 +191097,1268,censorship,1296964867 +191097,1268,high school,1296964870 +191097,1268,Nudity (Topless - Notable),1296964877 +191097,1268,pirate radio,1296964894 +191097,1268,radio,1296964897 +191097,1268,rebel,1296964898 +191097,1268,rebellion,1296964900 +191097,1268,teen,1296964905 +191097,1268,teenage,1296964907 +191097,1285,adolescence is hell,1296028248 +191097,1285,biting,1296028262 +191097,1285,black comedy,1296028253 +191097,1285,Christian Slater,1296028256 +191097,1285,cow tipping,1296028265 +191097,1285,cult,1296028267 +191097,1285,cult film,1296028269 +191097,1285,cynical,1296028271 +191097,1285,dark comedy,1296028273 +191097,1285,deadpan,1296028276 +191097,1285,Franka Potente,1296028279 +191097,1285,high school,1296028281 +191097,1285,irreverent,1296028283 +191097,1285,Quotable,1296028286 +191097,1285,satirical,1296028288 +191097,1285,serial killer,1296028292 +191097,1285,Shannen Doherty,1296028297 +191097,1285,snappy dialog,1296028299 +191097,1285,Winona Ryder,1296028306 +191097,1321,atmospheric,1296321656 +191097,1321,humorous,1296321658 +191097,1321,Kinda funny,1296321664 +191097,1321,Nudity (Topless - Brief),1296321666 +191097,1321,paranoid,1296321669 +191097,1321,satirical,1296321673 +191097,1321,tense,1296321676 +191097,1321,werewolf,1296321677 +191097,1321,werewolves,1296321680 +191097,1354,disturbing,1418414406 +191097,1358,disability,1295678131 +191097,1358,mental illness,1295678114 +191097,1358,small town,1295678112 +191097,1447,nude black women,1299388854 +191097,1476,Nudity (Full Frontal - Notable),1300382067 +191097,1476,Nudity (Full Frontal),1300382069 +191097,1502,necrophilia,1202353571 +191097,1527,bright red hair,1301793699 +191097,1527,dystopia,1431099501 +191097,1527,dystopic future,1431099497 +191097,1527,futuristic,1431099490 +191097,1527,great cinematography,1431099511 +191097,1527,Milla Jovovich,1431099478 +191097,1527,Nudity (Topless - Notable),1431099506 +191097,1527,sci-fi,1431099482 +191097,1527,visually appealing,1431099487 +191097,1594,90s cynicisim,1295680923 +191097,1594,Aaron Eckhart,1296271409 +191097,1594,Amorality,1295680927 +191097,1594,misogyny,1295680925 +191097,1594,sexism,1295680930 +191097,1640,nude black women,1299389272 +191097,1648,based on a play,1296450152 +191097,1648,black comedy,1296450154 +191097,1648,dark comedy,1296450156 +191097,1648,incest,1202352923 +191097,1648,mental illness,1296450160 +191097,1648,Parker Posey,1296450163 +191097,1663,Bill Murray,1295677772 +191097,1663,comedy,1295677774 +191097,1663,Nudity (Topless - Notable),1295677778 +191097,1663,Nudity (Topless),1295677779 +191097,1673,1970s,1296956526 +191097,1673,1980s,1296956527 +191097,1673,black comedy,1296956534 +191097,1673,dark comedy,1296956536 +191097,1673,drugs,1296956538 +191097,1673,full frontal nudity,1296956540 +191097,1673,History,1296956544 +191097,1673,Nudity (Full Frontal - Notable),1296956547 +191097,1673,Nudity (Full Frontal),1296956551 +191097,1673,Nudity (Topless - Notable),1296956556 +191097,1673,Porno Industry,1296956561 +191097,1673,pornography,1296956563 +191097,1673,smoking,1296956570 +191097,1676,Alien Invasion,1301784667 +191097,1676,aliens,1301784669 +191097,1676,based on a book,1301784671 +191097,1676,better than the book,1301784662 +191097,1676,campy,1301784674 +191097,1676,cult film,1301784682 +191097,1676,deadpan,1301784686 +191097,1676,fascism,1301784691 +191097,1676,funny,1301784712 +191097,1676,future,1301784696 +191097,1676,futuristic,1301784697 +191097,1676,gore,1301784786 +191097,1676,hilarious,1301784706 +191097,1676,military,1301784717 +191097,1676,Nudity (Rear),1301784647 +191097,1676,Nudity (Topless),1301784633 +191097,1676,Robert A. Heinlein,1301784754 +191097,1676,Robert Heinlein,1301784722 +191097,1676,satire,1301784759 +191097,1676,social commentary,1301784775 +191097,1676,space,1301784761 +191097,1676,violent,1301784791 +191097,1676,war,1301784763 +191097,1676,witty,1301784768 +191097,1719,atmospheric,1296450582 +191097,1719,based on a book,1296450585 +191097,1719,bleak,1296450586 +191097,1719,death,1296450589 +191097,1719,enigmatic,1296450592 +191097,1719,Incest,1296450596 +191097,1719,Nudity (Full Frontal),1296450608 +191097,1719,Sarah Polley,1296450611 +191097,1719,wintry,1296450612 +191097,1753,comedy,1296027727 +191097,1753,Dave Chappelle,1296027728 +191097,1753,drugs,1296027730 +191097,1753,Harland Williams,1296027733 +191097,1753,Jim Breuer,1296027735 +191097,1753,marijuana,1296027732 +191097,1753,Nudity (Topless),1296027737 +191097,1753,stoner comedy,1296027739 +191097,1753,stoner movie,1296027741 +191097,1777,1980s,1296029031 +191097,1777,80's,1296029033 +191097,1777,Adam Sandler,1296029038 +191097,1777,Allen Covert,1296029040 +191097,1777,Brian Posehn,1296029044 +191097,1777,buscemi,1296029046 +191097,1777,cheesy,1296029048 +191097,1777,chick flick,1296029052 +191097,1777,Drew Barrymore,1296029056 +191097,1777,funny,1296029058 +191097,1777,Jon Lovitz,1296029061 +191097,1777,love stinks,1296029063 +191097,1805,'sexy',1296955293 +191097,1805,Bill Murray,1296955295 +191097,1805,lesbian,1296955303 +191097,1805,lesbian kiss,1296955781 +191097,1805,lesbian sex scene,1296955776 +191097,1805,Neve Campbell,1296955308 +191097,1805,Nudity (Topless - Notable),1296955682 +191097,1805,Nudity (Topless),1296955688 +191097,1805,plot twist,1296955691 +191097,1805,pulp,1296955693 +191097,1805,sexy,1296955718 +191097,1805,sexy girls,1296955729 +191097,1805,Sexy ladies,1296955743 +191097,1805,sexy leading actresses,1296955757 +191097,1805,twist ending,1296955700 +191097,1840,nude black women,1299388647 +191097,1840,Nudity (Topless),1299388651 +191097,1884,based on a book,1298173106 +191097,1884,comedy,1298173109 +191097,1884,cynical,1298173110 +191097,1884,disturbing,1298173112 +191097,1884,great soundtrack,1298173116 +191097,1884,hallucinatory,1298173120 +191097,1884,Hunter S. Thompson,1298173123 +191097,1884,Johnny Depp,1298173126 +191097,1884,literary adaptation,1298173129 +191097,1884,road movie,1298173132 +191097,1884,road trip,1298173137 +191097,1884,satirical,1298173139 +191097,1884,social commentary,1298173141 +191097,1884,thought-provoking,1298173143 +191097,1884,true story,1298173147 +191097,1895,1990s,1296028574 +191097,1895,high school,1296028578 +191097,1895,Jennifer Love Hewitt,1296028581 +191097,1895,Seth Green,1296028590 +191097,1895,shallow characters,1296028591 +191097,1895,teen,1296028598 +191097,1895,Teen movie,1296028596 +191097,1921,black and white,1418444141 +191097,1921,pseudomathematics,1418444184 +191097,1923,Cameron Diaz,1295677458 +191097,1923,comedy,1295677490 +191097,1923,crude humor,1295677493 +191097,1923,easygoing,1295677496 +191097,1923,fun,1295677498 +191097,1923,goofy,1295677500 +191097,1923,hilarious,1295677502 +191097,1923,madcap,1295677508 +191097,1923,raunchy,1295677511 +191097,1923,sexual,1295677516 +191097,1962,Morgan Freeman,1431643315 +191097,1962,racism,1431643323 +191097,1962,social commentary,1431643340 +191097,1974,classic,1418444411 +191097,1974,slasher,1418444407 +191097,1982,Charles Cyphers,1296026244 +191097,1982,Donald Pleasence,1296026247 +191097,1982,horror,1296026252 +191097,1982,Jamie Lee Curtis,1296026254 +191097,1982,John Carpenter,1296026257 +191097,1982,Kyle Richards,1296026259 +191097,1982,murder,1296026262 +191097,1982,Nancy Kyes,1296026264 +191097,1982,Nudity (Topless),1296026268 +191097,1982,scary as hell,1296026275 +191097,1982,serial killer,1296026277 +191097,1982,silent killer,1296026279 +191097,1982,slasher,1296026280 +191097,2028,disturbing,1295678785 +191097,2028,gritty,1295678790 +191097,2028,historical,1295678793 +191097,2028,history,1295678794 +191097,2028,horrors of war,1295678796 +191097,2028,stylized,1295678807 +191097,2028,visceral,1295678813 +191097,2072,80s,1433805734 +191097,2099,racial stereotype,1296623574 +191097,2099,racism,1296623563 +191097,2134,1980s,1296964338 +191097,2134,Kelly LeBrock,1296964348 +191097,2134,nerds,1296964350 +191097,2134,Nudity (Topless - Brief),1296964352 +191097,2134,teen,1296964354 +191097,2144,1980s,1295678220 +191097,2144,80's,1295678222 +191097,2144,80's classic,1295678224 +191097,2144,chick flick,1295678237 +191097,2144,depressing,1295678239 +191097,2144,dysfunctional family,1295678241 +191097,2144,high school,1295678243 +191097,2144,idealistic,1295678246 +191097,2144,Nudity (Topless),1295678290 +191097,2144,teen,1295678296 +191097,2144,teen angst,1295678298 +191097,2144,teens,1295678300 +191097,2164,Troma,1298431642 +191097,2186,cheesy,1298686075 +191097,2186,corny,1298685984 +191097,2186,slow,1298685943 +191097,2186,unintentional comedy,1298685963 +191097,2186,unintentionally funny,1298685972 +191097,2186,unrealistic,1298686324 +191097,2248,1980s,1296028830 +191097,2248,cameron crowe,1296028866 +191097,2248,high school,1296028870 +191097,2248,John Cusack,1296028885 +191097,2248,Lili Taylor,1296028886 +191097,2248,Lloyd Dobbler,1296028888 +191097,2248,Romance,1296028903 +191097,2248,romantic,1296028900 +191097,2248,sweet,1296028898 +191097,2248,teen,1296028894 +191097,2248,teens,1296028896 +191097,2259,T&A,1296625356 +191097,2311,based on a book,1299380102 +191097,2311,based on book,1299380105 +191097,2311,book was better,1299380202 +191097,2311,boring,1299380195 +191097,2311,disappointing successor,1299380123 +191097,2311,sci-fi,1299380140 +191097,2311,space,1299380147 +191097,2311,space travel,1299380150 +191097,2314,nude black women,1299389581 +191097,2314,Nudity (Full Frontal),1299389583 +191097,2318,aging,1296271565 +191097,2318,child abuse,1296271568 +191097,2318,dark,1296271570 +191097,2318,dark comedy,1296271571 +191097,2318,dark humor,1296271573 +191097,2318,dysfunctional family,1296271574 +191097,2318,family,1296271578 +191097,2318,father-son relationship,1296271579 +191097,2318,immigrants,1296271581 +191097,2318,ironic,1296271584 +191097,2318,loneliness,1296271586 +191097,2318,mental illness,1296271588 +191097,2318,Nudity (Topless),1296271590 +191097,2318,relationships,1296271593 +191097,2318,secrets,1296271594 +191097,2318,sexuality,1296271597 +191097,2318,social commentary,1296271600 +191097,2325,comedy,1301116656 +191097,2325,cult film,1301116658 +191097,2325,pornography,1301116665 +191097,2325,Ron Jeremy,1301116673 +191097,2325,satire,1301116678 +191097,2330,competition,1322531841 +191097,2330,contest,1322531843 +191097,2330,deadpan,1322531845 +191097,2330,documentary,1322531847 +191097,2330,DOWN ON THEIR LUCK,1322531849 +191097,2330,endurance,1322531853 +191097,2330,humorous,1322531855 +191097,2330,matter-of-fact,1322531856 +191097,2330,SMALL-TOWN LIFE,1322531858 +191097,2330,Texas,1322531861 +191097,2330,trucks,1322531864 +191097,2330,wry,1322531866 +191097,2333,gay,1297398920 +191097,2333,homophobia,1297398916 +191097,2361,Coprophagia,1301280232 +191097,2361,John Waters,1301280773 +191097,2416,1980s,1296964497 +191097,2416,college,1296964480 +191097,2416,Nudity (Topless),1296964474 +191097,2459,grindhouse,1418444440 +191097,2459,horror,1418444436 +191097,2459,slasher,1418444438 +191097,2470,Linda Kozlowski,1447985630 +191097,2502,business,1300381272 +191097,2502,comedy,1300381274 +191097,2502,corporate America,1300381276 +191097,2502,cult classic,1300381278 +191097,2502,cult film,1300381280 +191097,2502,dialogue,1300381282 +191097,2502,funny,1300381284 +191097,2502,hilarious,1300381286 +191097,2502,off-beat comedy,1300381289 +191097,2502,office,1300381291 +191097,2502,quirky,1300381295 +191097,2502,rebellion,1300381298 +191097,2502,revenge,1300381299 +191097,2502,satire,1300381301 +191097,2502,slackers,1300381303 +191097,2502,workplace,1300381305 +191097,2528,dystopia,1298092013 +191097,2528,Farrah Fawcett,1298092015 +191097,2528,futuristic,1298092017 +191097,2528,Jenny Agutter,1298092021 +191097,2528,Nudity (Topless),1298092025 +191097,2528,post-apocalyptic,1298092027 +191097,2528,sci-fi,1298092032 +191097,2528,utopia,1298092034 +191097,2528,violence,1298092042 +191097,2570,adultery,1296345917 +191097,2570,Diane Lane,1296345922 +191097,2570,erotic,1296345926 +191097,2570,Nudity (Topless),1296345929 +191097,2596,cult film,1297748471 +191097,2596,drugs,1297748473 +191097,2596,good message,1297748475 +191097,2596,hallucination,1297748477 +191097,2596,heroin,1297748479 +191097,2596,high school,1297748481 +191097,2596,punk,1297748484 +191097,2596,punks,1297748487 +191097,2596,sarcasm,1297748491 +191097,2657,cross dressing,1418444322 +191097,2657,cult,1418444338 +191097,2657,cult classic,1418444237 +191097,2657,cult film,1418444231 +191097,2657,drag,1418444318 +191097,2657,glam rock,1418444286 +191097,2657,GLTBQ,1418444305 +191097,2657,homosexuality,1418444252 +191097,2657,musical,1418444242 +191097,2657,Nudity (Topless - Brief),1418444344 +191097,2657,over-rated,1418444301 +191097,2657,queer,1418444255 +191097,2657,Quirky,1418444234 +191097,2657,sexuality,1418444262 +191097,2657,too friggen gay,1418444296 +191097,2657,transgender,1418444325 +191097,2657,transvetism,1418444341 +191097,2692,alternate endings,1296346466 +191097,2692,alternate reality,1296346469 +191097,2692,animation,1296346472 +191097,2692,artistic,1296346474 +191097,2692,bright red hair,1301792916 +191097,2692,existential,1296346476 +191097,2692,existentialism,1296346478 +191097,2692,Franka Potente,1296346480 +191097,2692,intense,1296346486 +191097,2692,notable soundtrack,1296346492 +191097,2692,original,1296346493 +191097,2692,sexy girls,1296346548 +191097,2692,sexy leading lady,1300849663 +191097,2692,sexy protagonist,1296346532 +191097,2692,surreal,1296346495 +191097,2692,thought-provoking,1296346499 +191097,2692,time travel,1296346501 +191097,2692,visually appealing,1296346505 +191097,2700,adult humor,1295677990 +191097,2700,censorship,1295677994 +191097,2700,controversial,1295677996 +191097,2700,crude humor,1295677997 +191097,2700,free speech,1295677998 +191097,2700,funny,1295677999 +191097,2700,goofy,1295678001 +191097,2700,irreverent,1295678006 +191097,2700,quirky,1295678012 +191097,2700,raunchy,1295678016 +191097,2706,Alyson Hannigan,1296028350 +191097,2706,Chris Weitz,1296028334 +191097,2706,comedy,1296028337 +191097,2706,funny,1296028360 +191097,2706,Gross-out,1296028368 +191097,2706,high school,1296028374 +191097,2706,Nudity (Topless - Notable),1296028389 +191097,2706,Nudity (Topless),1296028398 +191097,2706,Sean Penn,1296028404 +191097,2706,Seann William Scott,1296028408 +191097,2706,sexuality,1296028409 +191097,2706,silly,1296028412 +191097,2706,slapstick,1296028414 +191097,2706,stereotypes,1296028416 +191097,2706,stupid,1296028417 +191097,2706,teen,1296028419 +191097,2706,teen comedy,1296028421 +191097,2706,tits,1296028423 +191097,2706,virginity,1296028426 +191097,2772,comedy,1299575713 +191097,2772,coming of age,1299575700 +191097,2772,drug use,1299575832 +191097,2772,high school,1299576047 +191097,2772,homophobia,1299575913 +191097,2772,Jesus freaks,1299575786 +191097,2772,Jesus-freak crap,1299575787 +191097,2772,losing virginity,1299578676 +191097,2772,Nudity (Topless),1299575707 +191097,2772,road trip,1299575693 +191097,2772,rock and roll,1299576056 +191097,2772,Ron Jeremy,1299575804 +191097,2772,soundtrack,1299575719 +191097,2772,stoner comedy,1299575857 +191097,2772,Stoner Movie,1299575846 +191097,2772,teen,1299576006 +191097,2772,Teen movie,1299576014 +191097,2772,vomit,1299575825 +191097,2795,Chevy Chase,1295676538 +191097,2795,classic comedy,1295676554 +191097,2795,comedy,1295676562 +191097,2795,Harold Ramis,1295676564 +191097,2795,Notable Nudity,1295676536 +191097,2795,Nudity (Topless),1295676534 +191097,2795,Randy Quaid,1295676568 +191097,2795,road trip,1295676543 +191097,2795,Vacation,1295676545 +191097,2901,aliens,1296337604 +191097,2901,cult classic,1296337613 +191097,2901,cult film,1296337615 +191097,2901,dead,1296337616 +191097,2901,disturbing,1296337619 +191097,2901,lovecraft,1296337627 +191097,2901,lovecraftian,1296337629 +191097,2901,Lovecraftian mythology,1296337632 +191097,2901,memorable,1296337635 +191097,2901,Nudity (Topless),1296337638 +191097,2901,sci-fi,1296337640 +191097,2901,slave trade,1296337646 +191097,2901,zombies,1296337643 +191097,2915,1980s,1296028159 +191097,2915,awesome soundtrack,1296028164 +191097,2915,coming of age,1296028170 +191097,2915,dancing,1296028178 +191097,2915,good acting,1296028180 +191097,2915,Joe Pantoliano,1296028182 +191097,2915,male teenager(s) & female prostitute(s),1296028189 +191097,2915,prostitution,1296028191 +191097,2915,teen,1296028198 +191097,2915,Tom Cruise,1296028201 +191097,2918,1980s,1296028033 +191097,2918,80s,1296028035 +191097,2918,Charlie Sheen,1296028037 +191097,2918,cheesy but good,1296028039 +191097,2918,comedy,1296028040 +191097,2918,coming of age,1296028044 +191097,2918,fun,1296028046 +191097,2918,genius,1296028048 +191097,2918,High School,1296028049 +191097,2918,John Hughes,1296028051 +191097,2918,Matthew Broderick,1296028053 +191097,2918,nostalgia,1296028054 +191097,2918,one day,1296028056 +191097,2918,rebellion,1296028058 +191097,2918,romp,1296028060 +191097,2918,slackers,1296028065 +191097,2918,teen,1296028067 +191097,2918,teen movie,1296028069 +191097,2918,teens,1296028072 +191097,2959,atmospheric,1296357823 +191097,2959,based on a book,1296357825 +191097,2959,Brad Pitt,1296357827 +191097,2959,dark,1296357831 +191097,2959,dark comedy,1296357833 +191097,2959,disturbing,1296357834 +191097,2959,mental illness,1296357836 +191097,2959,narrated,1296357838 +191097,2959,Nudity (Topless - Brief),1296357840 +191097,2959,Nudity (Topless),1296357842 +191097,2959,philosophical,1296357844 +191097,2959,philosophy,1296357846 +191097,2959,psychedelic,1296357849 +191097,2959,psychological,1296357854 +191097,2959,psychology,1296357856 +191097,2959,quirky,1296357858 +191097,2959,satirical,1296357861 +191097,2959,social commentary,1296357864 +191097,2959,TERRORISM,1296357869 +191097,2959,thought-provoking,1296357871 +191097,2997,black comedy,1296357315 +191097,2997,Cameron Diaz,1296357317 +191097,2997,Charlie Kaufman,1296357319 +191097,2997,cult film,1296357321 +191097,2997,dark comedy,1296357323 +191097,2997,fantasy,1296357325 +191097,2997,hallucinatory,1296357327 +191097,2997,John Cusack,1296357329 +191097,2997,John Malkovich,1296357331 +191097,2997,mindfuck,1296357333 +191097,2997,obsession,1296357335 +191097,2997,off-beat comedy,1296357337 +191097,2997,original,1296357339 +191097,2997,psychology,1296357341 +191097,2997,quirky,1296357343 +191097,2997,satirical,1296357345 +191097,2997,surreal,1296357347 +191097,2997,surrealism,1296357349 +191097,2997,thought-provoking,1296357352 +191097,2997,whimsical,1296357353 +191097,3016,George A. Romero,1296745921 +191097,3018,based on a short story,1296027229 +191097,3018,campy,1296027233 +191097,3018,creepy,1296027236 +191097,3018,gruesome,1296027238 +191097,3018,humorous,1296027240 +191097,3018,lovecraft,1296027243 +191097,3018,lovecraftian,1296027245 +191097,3018,Lovecraftian mythology,1296027247 +191097,3018,mad scientist,1296027249 +191097,3018,Nudity (Full Frontal - Notable),1296027256 +191097,3018,Nudity (Full Frontal),1296027258 +191097,3018,silly,1296027261 +191097,3018,tense,1296027264 +191097,3018,zombies,1296027266 +191097,3032,based on a book,1298092095 +191097,3032,creatures,1298092100 +191097,3032,epidemic,1298092098 +191097,3032,last man on earth,1298092110 +191097,3032,Nudity (Rear),1298092116 +191097,3032,Nudity (Topless),1298092119 +191097,3032,Post apocalyptic,1298092121 +191097,3032,Richard Matheson,1298092149 +191097,3052,Adventure,1300417518 +191097,3052,Alanis Morissette,1300417532 +191097,3052,Christianity,1300417545 +191097,3052,Comedy,1300417547 +191097,3052,controversial,1300417552 +191097,3052,funny,1300417556 +191097,3052,irreverent,1300417558 +191097,3052,jay and silent bob,1300417561 +191097,3052,Kevin Smith,1300417563 +191097,3052,religion,1300417567 +191097,3052,Salma Hayek,1300417569 +191097,3052,satire,1300417571 +191097,3052,slackers,1300417573 +191097,3052,view askew,1300417575 +191097,3148,based on a book,1296450030 +191097,3148,based on book,1296450035 +191097,3148,charlize theron,1296450038 +191097,3148,coming of age,1296450040 +191097,3148,Incest,1196619083 +191097,3148,Lasse Hallström,1296450047 +191097,3148,Nudity (Rear),1296450059 +191097,3148,Nudity (Topless - Brief),1296450061 +191097,3168,Atmospheric,1296956482 +191097,3168,deliberate,1296956484 +191097,3168,drugs,1296956487 +191097,3168,freedom,1296956488 +191097,3168,gritty,1296956490 +191097,3168,hallucination,1296956491 +191097,3168,humorous,1296956494 +191097,3168,notable soundtrack,1296956498 +191097,3168,Nudity (Topless - Brief),1296956501 +191097,3168,quirky,1296956503 +191097,3168,road movie,1296956505 +191097,3168,road trip,1296956507 +191097,3168,sex,1296956513 +191097,3168,social commentary,1296956511 +191097,3168,stoner movie,1296956510 +191097,3210,1980s,1296027963 +191097,3210,classic,1296027979 +191097,3210,ensemble cast,1296027982 +191097,3210,high school,1296027983 +191097,3210,highschool,1296027985 +191097,3210,Jennifer Jason Leigh,1296027987 +191097,3210,Judge Reinhold,1296027988 +191097,3210,Nicolas Cage,1296027992 +191097,3210,Nudity (Full Frontal - Notable),1296027995 +191097,3210,Nudity (Full Frontal),1296027999 +191097,3210,Phoebe Cates,1296028005 +191097,3210,Sean Penn,1296028007 +191097,3210,slackers,1296028012 +191097,3210,teen,1296028016 +191097,3317,Gay,1300244464 +191097,3499,based on a book,1296024578 +191097,3499,claustrophobic,1296024583 +191097,3499,horror,1296024581 +191097,3499,hostage,1296024645 +191097,3499,HOSTAGE SITUATIONS,1296024649 +191097,3499,James Caan,1296024601 +191097,3499,Kathy Bates,1296024605 +191097,3499,Lauren Bacall,1296024609 +191097,3499,menacing,1296024611 +191097,3499,Rob Reiner,1296024626 +191097,3499,scary,1296024623 +191097,3499,Stephen King,1296024620 +191097,3499,tense,1296024629 +191097,3499,thriller,1296024663 +191097,3499,writer,1296024678 +191097,3499,writer as protagonist,1296024679 +191097,3499,WRITER'S LIFE,1296024682 +191097,3499,writers,1296024683 +191097,3503,alien,1295678031 +191097,3503,aliens,1295678037 +191097,3503,atmospheric,1295678039 +191097,3503,based on a book,1295678042 +191097,3503,cerebral,1295678044 +191097,3503,dreamlike,1295678046 +191097,3503,enigmatic,1295678048 +191097,3503,immortality,1295678051 +191097,3503,literary adaptation,1295678052 +191097,3503,Nudity (Topless - Brief),1295678058 +191097,3503,space,1295678064 +191097,3503,space station,1295678068 +191097,3503,stylized,1295678070 +191097,3556,Adaptation,1295676416 +191097,3556,based on a book,1295676418 +191097,3556,coming of age,1295676419 +191097,3556,dreamlike,1295676426 +191097,3556,enigmatic,1295676429 +191097,3556,high school,1295676435 +191097,3556,psychology,1295676440 +191097,3556,stylized,1295676442 +191097,3556,suburbia,1295676444 +191097,3556,suicide,1295676446 +191097,3556,visually appealing,1295676447 +191097,3577,T&A,1296625399 +191097,3625,dance music,1296951217 +191097,3625,electronic music,1296951206 +191097,3625,music,1296951192 +191097,3625,rave,1296951223 +191097,3625,subculture,1296951277 +191097,3625,underground,1296951256 +191097,3627,atmospheric,1297315920 +191097,3627,carnival,1297315922 +191097,3652,atmospheric,1296337489 +191097,3652,creepy,1296337491 +191097,3652,disturbing,1296337495 +191097,3652,gates of hell trilogy,1296337499 +191097,3652,gruesome,1296337503 +191097,3652,horror,1296337506 +191097,3652,Italian,1296337508 +191097,3652,lovecraft,1296337511 +191097,3652,lovecraftian,1296337513 +191097,3652,Lovecraftian mythology,1296337516 +191097,3652,Lucio Fulci,1296337520 +191097,3652,menacing,1296337523 +191097,3652,visceral,1296337525 +191097,3652,zombies,1296337487 +191097,3688,T&A,1296625305 +191097,3694,Troma,1298431427 +191097,3760,comedy,1296345299 +191097,3760,Crude but pivotal,1296345306 +191097,3760,George Lazenby,1296345301 +191097,3760,John Landis,1296345302 +191097,3760,Nudity (Topless),1296345295 +191097,3801,black and white,1298760853 +191097,3801,court,1298762266 +191097,3801,courtroom,1298762271 +191097,3801,courtroom drama,1298760837 +191097,3801,James Stewart,1298762242 +191097,3801,lawyers,1298761124 +191097,3801,Lee Remick,1298760978 +191097,3801,seductress,1298761695 +191097,3801,sexual repression,1298762463 +191097,3801,slow,1298760874 +191097,3801,soldiers,1298762732 +191097,3801,tedious,1298841545 +191097,3804,T&A,1298398774 +191097,3847,nazis,1297304405 +191097,3847,unwatchable sadism,1297304406 +191097,3949,Adaptation,1295675817 +191097,3949,addiction,1262587078 +191097,3949,atmospheric,1295675821 +191097,3949,based on a book,1295675822 +191097,3949,dark,1262587082 +191097,3949,depressing,1262587091 +191097,3949,disturbing,1262587080 +191097,3949,drug abuse,1262587097 +191097,3949,emotional,1295675829 +191097,3949,great acting,1295675830 +191097,3949,heroin,1262587100 +191097,3949,independent film,1295675837 +191097,3949,loneliness,1262587103 +191097,3949,Nudity (Full Frontal - Notable),1262587104 +191097,3949,Nudity (Full Frontal),1262587107 +191097,3949,Nudity (Rear),1262587110 +191097,3949,prostitution,1262587112 +191097,3949,psychology,1295675846 +191097,3949,revenge,1295675849 +191097,3949,Romance,1295675852 +191097,3949,sad,1295675854 +191097,3949,social commentary,1295675862 +191097,3993,BDSM,1296956741 +191097,3993,censorship,1296956743 +191097,3993,France,1296956745 +191097,3993,freedom of expression,1296956748 +191097,3993,group sex,1296956749 +191097,3993,Kate Winslet,1296956751 +191097,3993,Nudity (Topless - Notable),1296956756 +191097,3993,Nudity (Topless),1296956758 +191097,3993,sadism,1296956762 +191097,3993,sex,1296956764 +191097,3993,Sexualized violence,1296956766 +191097,3993,Underrated,1296956770 +191097,3996,amazing photography,1300849932 +191097,3996,atmospheric,1300849934 +191097,3996,beautiful,1300849935 +191097,3996,beautifully filmed,1300849937 +191097,3996,colourful,1300849939 +191097,3996,dreamlike,1300849941 +191097,3996,Kung Fu,1300849954 +191097,3996,martial arts,1300849957 +191097,3996,romance,1300849987 +191097,3996,stylized,1300849948 +191097,3996,sword fight,1300849991 +191097,3996,sword fighting,1300849993 +191097,4002,80s,1435882053 +191097,4002,John Candy,1435882060 +191097,4002,road movie,1435882062 +191097,4002,road trip,1435882058 +191097,4002,Sexual Humor,1435882074 +191097,4002,Steve Martin,1435882056 +191097,4002,travel,1435882078 +191097,4011,boxing,1300381144 +191097,4011,british,1300381146 +191097,4011,clever,1300381148 +191097,4011,cynical,1300381150 +191097,4011,ensemble cast,1300381151 +191097,4011,fighting,1300381153 +191097,4011,funny,1300381155 +191097,4011,Hilarious,1300381159 +191097,4011,quirky,1300381162 +191097,4011,stylized,1300381164 +191097,4011,twist ending,1300381166 +191097,4034,Benicio Del Toro,1295677279 +191097,4034,Catherine Zeta-Jones,1295677191 +191097,4034,confrontational,1295677285 +191097,4034,corruption,1295677202 +191097,4034,DRUG ADDICTION,1295677207 +191097,4034,DRUG TRADE,1295677209 +191097,4034,drugs,1295677212 +191097,4034,ensemble cast,1295677214 +191097,4034,forceful,1295677217 +191097,4034,gritty,1295677218 +191097,4034,matter-of-fact,1295677220 +191097,4034,Michael Douglas,1295677223 +191097,4034,POLICE CORRUPTION,1295677261 +191097,4034,POLITICAL CORRUPTION,1295677264 +191097,4034,social commentary,1295677273 +191097,4034,stylized,1295677276 +191097,4064,blaxploitation,1299389021 +191097,4064,exploitation,1299389033 +191097,4064,nude black women,1299389022 +191097,4068,cheerleaders,1296965186 +191097,4068,cheerleading,1296965189 +191097,4069,boring,1348684796 +191097,4069,Jennifer Lopez,1348684803 +191097,4069,predictable,1348684806 +191097,4069,standard romantic comedy,1348684791 +191097,4092,androids,1298094481 +191097,4092,bright red hair,1301794448 +191097,4092,Post apocalyptic,1298094488 +191097,4092,post-apocalyptic,1298094494 +191097,4092,robots,1298094497 +191097,4102,Eddie Murphy,1296967039 +191097,4102,hilarious,1296967042 +191097,4102,homophobia,1296967044 +191097,4102,homophobic,1296967046 +191097,4102,Stand Up,1296967057 +191097,4102,stand-up comedy,1296967076 +191097,4105,black comedy,1296027173 +191097,4105,campy,1296027176 +191097,4105,comedy,1296027178 +191097,4105,Cult classic,1296027181 +191097,4105,cult film,1296027185 +191097,4105,dark humor,1296027186 +191097,4105,Nudity (Topless - Brief),1296027194 +191097,4105,zombie,1296027197 +191097,4105,zombies,1296027199 +191097,4183,Adrienne Shelly,1295676624 +191097,4183,Hal Hartley,1295676626 +191097,4183,honest,1295676631 +191097,4183,independent film,1295676632 +191097,4183,Long Island,1295676989 +191097,4183,New York,1295676992 +191097,4183,Robert John Burke,1295676991 +191097,4214,college,1296964299 +191097,4214,Notable Nudity,1296964303 +191097,4214,Nudity (Full Frontal - Notable),1296964307 +191097,4214,Nudity (Full Frontal),1296964309 +191097,4214,teen,1296964311 +191097,4218,1980s,1298841577 +191097,4218,betrayal,1298841829 +191097,4218,boring plot,1298841750 +191097,4218,cheating,1298841695 +191097,4218,drug use,1298841718 +191097,4218,high school,1298841581 +191097,4218,homicide,1298841931 +191097,4218,juvenile deliquent,1298841648 +191097,4218,murder,1298841936 +191097,4218,Nudity (Full Frontal),1298841607 +191097,4218,Nudity (Topless),1298841599 +191097,4218,White Trash,1298841650 +191097,4246,based on a book,1295681436 +191097,4246,British,1295681439 +191097,4246,chick flick,1295681441 +191097,4246,comedy,1295681444 +191097,4246,girlie movie,1295681449 +191097,4246,guilty pleasure,1295681453 +191097,4247,Brittany Daniel,1432832030 +191097,4247,David Spade,1432831976 +191097,4247,Jaime Pressly,1432831970 +191097,4247,Screwball Comedy,1432831991 +191097,4247,T&A,1432831968 +191097,4256,Nudity (Full Frontal - Notable),1296624200 +191097,4256,Nudity (Full Frontal),1296624202 +191097,4256,prostitution,1296624210 +191097,4303,boring,1322618934 +191097,4303,Gay Lead Character,1322618907 +191097,4303,Gay sex,1322619062 +191097,4303,Male Full Frontal Nudity,1322619039 +191097,4303,male nudity,1322619032 +191097,4303,not funny,1322618955 +191097,4303,nothing happens,1322618942 +191097,4303,white trash,1322618709 +191097,4344,computers,1299389502 +191097,4344,hackers,1299389495 +191097,4344,hacking,1299389501 +191097,4344,nude black women,1299389468 +191097,4344,Nudity (Topless - Notable),1299389475 +191097,4344,Nudity (Topless),1299389472 +191097,4367,Angelina Jolie,1296022400 +191097,4367,bad plot,1296022406 +191097,4367,heroine in tight suit,1296022414 +191097,4367,Kick-Butt Women,1296022420 +191097,4367,sexy,1296022425 +191097,4367,sexy girls,1298083062 +191097,4371,nude black women,1299389322 +191097,4376,appalachia,1296951038 +191097,4376,bluegrass,1296951010 +191097,4376,country music,1296951016 +191097,4376,cultural authenticity,1296951093 +191097,4376,Culture,1296951082 +191097,4376,history,1296951102 +191097,4376,mountain music,1296951021 +191097,4376,music,1296951045 +191097,4376,music business,1296951053 +191097,4376,true story,1296951112 +191097,4390,banned movie,1296625763 +191097,4390,controversial,1296625765 +191097,4390,exploitative,1296625768 +191097,4390,moral ambiguity,1296625778 +191097,4390,Nudity (Full Frontal - Notable),1296625781 +191097,4390,Nudity (Full Frontal),1296625784 +191097,4390,rape,1296625786 +191097,4390,revenge,1296625789 +191097,4390,T&A,1296625805 +191097,4390,unsimulated sex scenes,1296625795 +191097,4410,80s,1433361344 +191097,4410,Melanie Griffith,1433361342 +191097,4410,road trip,1433361530 +191097,4410,Topless Nudity,1433361364 +191097,4641,adolescence,1297748524 +191097,4641,bittersweet,1297748528 +191097,4641,coming of age,1297748529 +191097,4641,deadpan,1297748531 +191097,4641,depressing,1297748533 +191097,4641,enigmatic,1297748535 +191097,4641,funny,1297748538 +191097,4641,high school,1297748540 +191097,4641,indie,1297748542 +191097,4641,intimate,1297748544 +191097,4641,ironic,1297748546 +191097,4641,quirky,1297748547 +191097,4641,reflective,1297748549 +191097,4641,Scarlett Johansson,1297748551 +191097,4641,stylized,1297748555 +191097,4641,suburbia,1297748553 +191097,4649,Elizabeth Banks,1301116554 +191097,4649,goofy,1301116557 +191097,4649,irreverent,1301116559 +191097,4649,madcap,1301116563 +191097,4649,racy,1301116577 +191097,4649,satirical,1301116580 +191097,4649,sexy,1301116601 +191097,4649,sexy girls,1301116613 +191097,4649,silly,1301116582 +191097,4649,summery,1301116584 +191097,4649,teen,1301116594 +191097,4720,afterlife,1297719179 +191097,4720,atmospheric,1297719182 +191097,4720,Beautiful Woman,1418415446 +191097,4720,dark,1418415370 +191097,4720,deliberate,1297719189 +191097,4720,eerie,1297719190 +191097,4720,ghost story,1297719192 +191097,4720,ghosts,1297719198 +191097,4720,gloomy,1297719200 +191097,4720,gothic,1297719195 +191097,4720,haunted house,1297719202 +191097,4720,Horror,1418415363 +191097,4720,Isolation,1297719203 +191097,4720,Nicole Kidman,1297719205 +191097,4720,ominous,1418415428 +191097,4720,scary,1418415365 +191097,4720,supernatural,1418415462 +191097,4720,surprise ending,1297719217 +191097,4720,twist ending,1297719218 +191097,4725,abandoned buildings,1296024698 +191097,4725,brad anderson,1296024711 +191097,4725,brian sexton iii,1296024713 +191097,4725,creepy,1296024715 +191097,4725,dark,1296024717 +191097,4725,david caruso,1296024721 +191097,4725,family relationships,1296024724 +191097,4725,Josh Lucas,1296024726 +191097,4725,mental hospital,1296024732 +191097,4725,multiple personalities,1296024739 +191097,4725,nyctophobia,1296024741 +191097,4725,Paul Guilfoyle,1296024742 +191097,4725,Psychological Horror,1296024747 +191097,4725,psychology,1296024746 +191097,4725,scary,1296024749 +191097,4725,serial killer,1296024754 +191097,4725,Stephen Gevedon,1296024758 +191097,4725,suspense,1296024756 +191097,4734,bluntman and chronic,1300417762 +191097,4734,cult film,1300417769 +191097,4734,dark comedy,1300417771 +191097,4734,drugs,1300417773 +191097,4734,ensemble cast,1300417775 +191097,4734,jay and silent bob,1300417784 +191097,4734,Kevin Smith,1300417787 +191097,4734,marijuana,1300417789 +191097,4734,parody,1300417791 +191097,4734,Stoner Movie,1300417799 +191097,4734,view askew,1300417801 +191097,4779,Documentary,1435939417 +191097,4779,Small Town,1435939419 +191097,4783,antarctica,1296345132 +191097,4815,anthony hopkins,1296344951 +191097,4815,Anton Yelchin,1296344952 +191097,4815,Hope Davis,1296344946 +191097,4815,Stephen King,1296344947 +191097,4865,Atmospheric,1298850343 +191097,4865,gothic,1298850352 +191097,4865,Nudity (Full Frontal),1298850356 +191097,4865,Nudity (Rear),1298850358 +191097,4865,Nudity (Topless),1298850360 +191097,4865,prostitution,1298850362 +191097,4865,psychology,1298850365 +191097,4865,serial killer,1298850369 +191097,4878,alternate timeline,1299380335 +191097,4878,atmospheric,1299380337 +191097,4878,cult classic,1299380339 +191097,4878,cult film,1299380341 +191097,4878,dreamlike,1299380343 +191097,4878,enigmatic,1299380344 +191097,4878,funny,1299380345 +191097,4878,hallucinatory,1299380347 +191097,4878,philosophy,1299380351 +191097,4878,psychology,1299380353 +191097,4878,quirky,1299380353 +191097,4878,satirical,1299380355 +191097,4878,social commentary,1299380359 +191097,4878,stylized,1299380361 +191097,4878,teen,1299380363 +191097,4878,thought-provoking,1299380367 +191097,4878,time travel,1299380370 +191097,4903,Domestic Violence,1432429901 +191097,4903,Murder,1432429884 +191097,4903,Revenge,1432429889 +191097,4973,atmospheric,1300850053 +191097,4973,beautifully filmed,1300850055 +191097,4974,high school,1296965900 +191097,4974,Nudity (Topless - Notable),1296965901 +191097,4974,Nudity (Topless),1296965903 +191097,4974,parody,1296965906 +191097,4974,spoof,1296965909 +191097,4975,existentialism,1295676497 +191097,4975,future,1295676503 +191097,4975,Nudity (Topless),1295676491 +191097,4975,psychology,1295676494 +191097,5045,exploitation,1298749553 +191097,5045,sexploitation,1298749541 +191097,5106,Britney Spears,1433838026 +191097,5156,blaxploitation,1299388993 +191097,5156,exploitation,1299389008 +191097,5165,zombies,1301844717 +191097,5205,atmospheric,1296027109 +191097,5205,cannibalism,1296027110 +191097,5205,dark comedy,1296027112 +191097,5210,zombies,1301844842 +191097,5222,lesbian,1202353748 +191097,5341,adultery,1305409900 +191097,5341,biographical,1305409501 +191097,5341,biography,1305409509 +191097,5341,black and white,1305409682 +191097,5341,censorship,1305409714 +191097,5341,cinematography,1305409694 +191097,5341,drug use,1305409703 +191097,5341,fascism,1305409725 +191097,5341,Fosse,1305409511 +191097,5341,infidelity,1305409909 +191097,5341,Lenny Bruce,1305409881 +191097,5341,lipstick lesbians,1305409556 +191097,5341,Nudity (Full Frontal),1305409673 +191097,5341,Nudity (Topless),1305409566 +191097,5341,obscenity,1305409759 +191097,5341,rebellion,1305409738 +191097,5341,sexual repression,1305409750 +191097,5364,adultery,1295676586 +191097,5364,erotic,1295676589 +191097,5364,lust,1295676590 +191097,5364,Nudity (Topless - Notable),1295676592 +191097,5364,Nudity (Topless),1295676594 +191097,5364,Richard Gere,1295676596 +191097,5364,sensual,1295676597 +191097,5364,sexy,1295676599 +191097,5377,based on a book,1305408556 +191097,5377,book was better,1305408579 +191097,5377,british,1305408583 +191097,5377,british comedy,1305408585 +191097,5377,chick flick,1305408587 +191097,5377,feel-good,1305408590 +191097,5377,funny,1305408593 +191097,5377,heartwarming,1305408595 +191097,5377,literary adaptation,1305408599 +191097,5377,Quirky,1305408602 +191097,5377,romance,1305408613 +191097,5377,romantic,1305408615 +191097,5377,satirical,1305408609 +191097,5377,whimsical,1305408611 +191097,5385,70s,1432773044 +191097,5385,Documentary,1432773030 +191097,5385,Music,1432773054 +191097,5385,musicians,1432773014 +191097,5505,adultery,1297749648 +191097,5505,chick flick,1297749630 +191097,5505,depressing,1297749627 +191097,5505,dry,1297749633 +191097,5505,funny,1297749635 +191097,5505,Nudity (Topless - Brief),1297749640 +191097,5505,tragicomedy,1297749643 +191097,5505,Zooey Deschanel,1300244234 +191097,5528,bizarre,1296025930 +191097,5528,creepy,1296025958 +191097,5528,dark,1296025960 +191097,5528,Nudity (Topless),1296025973 +191097,5528,psychopaths,1296025978 +191097,5528,psychotic tendencies,1296025981 +191097,5528,scary,1296025987 +191097,5528,stalker,1296025995 +191097,5528,strange story,1296025990 +191097,5528,suspense,1296025994 +191097,5577,Nudity (Topless - Notable),1297749065 +191097,5577,Nudity (Topless),1297749068 +191097,5577,quirky,1297749072 +191097,5617,BDSM,1295678613 +191097,5617,black comedy,1295678614 +191097,5617,dark comedy,1295678616 +191097,5617,erotic,1295678617 +191097,5617,fighting inner demons,1295678620 +191097,5617,forbidden love,1295678622 +191097,5617,Maggie Gyllenhaal,1295678625 +191097,5617,Nudity (Full Frontal - Notable),1295678626 +191097,5617,Nudity (Full Frontal),1295678628 +191097,5617,Nudity (Topless - Notable),1295678631 +191097,5617,quirky,1295678633 +191097,5617,sex,1295678638 +191097,5617,sexuality,1295678639 +191097,5617,workplace,1295678657 +191097,5666,gay,1262556527 +191097,5670,comedians,1300381715 +191097,5670,Jerry Seinfeld,1300381728 +191097,5670,stand-up comedy,1300381707 +191097,5679,creepy,1296024828 +191097,5679,disturbing,1296024831 +191097,5679,goretastic,1296024834 +191097,5679,horror,1296024837 +191097,5679,Naomi Watts,1296024839 +191097,5679,paranormal,1296024842 +191097,5679,scary,1296024849 +191097,5679,splatter,1296024851 +191097,5679,suspense,1296024854 +191097,5679,terrifying,1296024856 +191097,5771,80s Horror,1432922296 +191097,5771,80s Slasher,1432922295 +191097,5771,Slasher,1432922293 +191097,5771,Topless Nudity,1432922298 +191097,5810,1990s,1298849007 +191097,5810,80s,1298849009 +191097,5810,Brittany Murphey,1298849014 +191097,5810,Brittany Murphy,1298849017 +191097,5810,Detroit,1298849020 +191097,5810,Eminem,1298849022 +191097,5810,hip hop,1298849023 +191097,5810,Kim Basinger,1298849028 +191097,5810,Nudity (Rear),1298849040 +191097,5810,vocalists,1298849082 +191097,5884,Troma,1302916117 +191097,5884,Troma pictures,1302916123 +191097,5902,based on a book,1296357372 +191097,5902,black comedy,1296357374 +191097,5902,Charlie Kaufman,1296357376 +191097,5902,comedy,1296357377 +191097,5902,dark comedy,1296357379 +191097,5902,imaginary friend,1296357398 +191097,5902,John Cusack,1296357400 +191097,5902,John Malkovich,1296357403 +191097,5902,literate,1296357405 +191097,5902,Meryl Streep,1296357407 +191097,5902,narrated,1296357410 +191097,5902,New York City,1296357412 +191097,5902,Nicolas Cage,1296357415 +191097,5902,Nudity (Topless - Notable),1296357418 +191097,5902,Nudity (Topless),1296357420 +191097,5902,obsession,1296357423 +191097,5902,original plot,1296357426 +191097,5902,quirky,1296357427 +191097,5902,romance,1296357430 +191097,5902,schizophrenia,1296357432 +191097,6003,based on a book,1296357912 +191097,6003,biographical,1296357914 +191097,6003,Brad Pitt,1296357923 +191097,6003,Charlie Kaufman,1296357926 +191097,6003,Drew Barrymore,1296357932 +191097,6003,George Clooney,1296357935 +191097,6003,Julia Roberts,1296357938 +191097,6003,Sam Rockwell,1296357949 +191097,6063,Angela Bettis,1296026610 +191097,6063,Anna Faris,1296026612 +191097,6063,dismemberment,1296026614 +191097,6063,disturbing,1296026616 +191097,6063,doll,1296026619 +191097,6063,Jeremy Sisto,1296026623 +191097,6063,loneliness,1296026625 +191097,6063,odd,1296026628 +191097,6063,psychological,1296026630 +191097,6122,stand-up comedy,1296967419 +191097,6155,anti-feminism,1299387284 +191097,6222,based on a book,1431847806 +191097,6222,Christina Ricci,1431847826 +191097,6222,Nudity (Full Frontal - Notable),1431847803 +191097,6223,addiction,1298866530 +191097,6223,bad ending,1298866679 +191097,6223,bad execution,1298866687 +191097,6223,bondage,1298867001 +191097,6223,boring,1298866696 +191097,6223,Brittany Murphy,1298866532 +191097,6223,bulldyke,1298866614 +191097,6223,drugs,1298866535 +191097,6223,funny,1298866565 +191097,6223,gays,1298866573 +191097,6223,junkies,1298866657 +191097,6223,Mena Suvari,1298866551 +191097,6223,montages,1298866547 +191097,6223,morality tale,1298866706 +191097,6223,Nudity (Full Frontal - Notable),1298866553 +191097,6223,Nudity (Full Frontal),1298866556 +191097,6223,Nudity (Topless - Notable),1298867482 +191097,6223,psychology of addiction,1298866560 +191097,6223,social commentary,1298866561 +191097,6223,strippers,1298866622 +191097,6223,stripping,1298866628 +191097,6223,Vulgar,1298866763 +191097,6249,homophobia,1263875970 +191097,6290,Nudity (Rear),1296027299 +191097,6290,Nudity (Topless - Brief),1296027302 +191097,6303,based on a book,1299380288 +191097,6395,confrontational,1348685090 +191097,6395,disturbing,1348685088 +191097,6395,George A. Romero,1348685093 +191097,6395,Nudity (Topless),1348685110 +191097,6395,tense,1348685098 +191097,6638,1980s,1296965068 +191097,6638,california,1296965090 +191097,6638,Cult film,1295676516 +191097,6638,the valley,1296965085 +191097,6659,black comedy,1296747450 +191097,6659,comedic horror,1296747452 +191097,6659,cult film,1296747453 +191097,6659,hilarious,1296747460 +191097,6659,interesting monsters,1296747463 +191097,6659,monster,1296747465 +191097,6659,silly,1296747467 +191097,6707,bloody,1296746408 +191097,6707,gore,1296746419 +191097,6707,gruesome,1296746421 +191097,6707,Nudity (Topless),1296746405 +191097,6731,claustrophobic,1298324703 +191097,6731,creepy,1298324705 +191097,6731,gore,1298324709 +191097,6731,horror,1298324711 +191097,6731,menacing,1298324717 +191097,6731,paranoid,1298324722 +191097,6731,tense,1298324729 +191097,6731,zombies,1298324733 +191097,6755,B-movie,1300383261 +191097,6755,comedy,1300383272 +191097,6755,hilarious,1300383275 +191097,6755,mental illness,1300383278 +191097,6755,quirky,1300383281 +191097,6780,based on a book,1300417989 +191097,6780,black holes,1300417995 +191097,6780,Errol Morris,1300417992 +191097,6780,genius,1300417999 +191097,6780,handicapped,1300418065 +191097,6780,intellectual,1300418024 +191097,6780,physics,1300418002 +191097,6780,science,1300418004 +191097,6807,banned movie,1300380559 +191097,6807,British,1300380561 +191097,6807,british comedy,1300380562 +191097,6807,classic,1300380565 +191097,6807,comedy,1300380567 +191097,6807,controversial,1300380568 +191097,6807,hilarious,1300380573 +191097,6807,humor,1300380575 +191097,6807,Monty Python,1300380578 +191097,6807,Nudity (Topless - Brief),1300380580 +191097,6807,philosophy,1300380583 +191097,6807,ridiculous,1300380587 +191097,6807,satire,1300380586 +191097,6820,Emily Perkins,1296027132 +191097,6820,gory,1296027135 +191097,6820,high school,1296027137 +191097,6820,Katharine Isabelle,1296027140 +191097,6820,Katherine Isabelle,1296027145 +191097,6820,werewolf,1296027154 +191097,6820,werewolves,1296027156 +191097,6867,books,1295677855 +191097,6867,charming,1295677856 +191097,6867,cute,1295677858 +191097,6867,depression,1295677863 +191097,6867,friendship,1295677866 +191097,6867,interesting characters,1295677868 +191097,6867,loneliness,1295677872 +191097,6867,magical,1295677874 +191097,6867,midgets,1295677877 +191097,6867,quirky,1295677882 +191097,6867,satirical,1295677893 +191097,6867,train,1295677898 +191097,6867,trains,1295677900 +191097,6867,understated,1295677901 +191097,6870,based on a book,1296613743 +191097,6870,based on book,1296613746 +191097,6870,Clint Eastwood,1296613752 +191097,6870,Dark,1296613754 +191097,6870,Dark hero,1296613756 +191097,6870,Exceptional Acting,1296613758 +191097,6870,great acting,1296613761 +191097,6870,Nudity (Full Frontal - Brief),1296613768 +191097,6870,stereotypes,1296613792 +191097,6870,twist ending,1296613786 +191097,6872,HORRENDOUS!,1322532075 +191097,6872,Nudity (Topless - Notable),1322532083 +191097,6872,Nudity (Topless),1322532085 +191097,6872,videogame,1322532120 +191097,6872,zombies,1322532100 +191097,6881,Katie Holmes,1300873143 +191097,6881,New York,1300873154 +191097,6881,quirky,1300873161 +191097,6881,sexy leading lady,1300873184 +191097,6888,Anna Faris,1441140897 +191097,6888,parody,1441140909 +191097,6927,Nicole Kidman,1295677708 +191097,6927,Nudity (Full Frontal - Notable),1295677706 +191097,6942,british,1295681394 +191097,6942,England,1295681398 +191097,6942,ensemble cast,1295681400 +191097,6942,funny,1295681402 +191097,6942,Keira Knightley,1295681405 +191097,6942,multiple storylines,1295681408 +191097,6942,Nudity (Topless - Notable),1295681409 +191097,6942,Nudity (Topless),1295681411 +191097,6949,Daryl Hannah,1432599707 +191097,6949,Desert,1432599717 +191097,6949,Mysterious,1432670851 +191097,6949,No Nudity,1432599678 +191097,6949,Rachael Leigh Cook,1432599667 +191097,6953,Alejandro Gonzalez Inarritu,1295675761 +191097,6953,Benicio Del Toro,1295675762 +191097,6953,bizarre,1295675769 +191097,6953,Complex,1295675771 +191097,6953,death,1295675773 +191097,6953,life & death,1295675776 +191097,6953,melancholic,1295675778 +191097,6953,Naomi Watts,1295675781 +191097,6953,Nudity (Topless - Notable),1295675785 +191097,6953,Nudity (Topless),1295675787 +191097,6953,psychological,1295675790 +191097,6953,realistic,1295675792 +191097,6953,religion,1295675795 +191097,6953,sad but good,1295675798 +191097,6953,Sean Penn,1295675800 +191097,6953,Tragedy,1295675802 +191097,6957,black comedy,1418880405 +191097,6957,child character,1418880497 +191097,6957,Christmas,1418880552 +191097,6957,Xmas theme,1418880548 +191097,6978,deadpan,1295678207 +191097,6978,easygoing,1295678199 +191097,7001,aliens,1296321177 +191097,7001,disturbing,1296321179 +191097,7001,Donald Sutherland,1296321185 +191097,7001,Jeff Goldblum,1296321189 +191097,7001,Leonard Nimoy,1296321191 +191097,7001,Philip Kaufman,1296321196 +191097,7001,remake,1296321209 +191097,7001,Veronica Cartwright,1296321201 +191097,7001,violence,1296321203 +191097,7124,documentary,1301785195 +191097,7124,drugs,1301785197 +191097,7124,head movie,1301785228 +191097,7124,marijuana,1301785205 +191097,7141,depressing,1297719776 +191097,7141,documentary,1297719742 +191097,7141,mental illness,1297719806 +191097,7141,sad,1297719770 +191097,7158,based on a book,1296613918 +191097,7158,culture clash,1296613924 +191097,7158,Depressing,1296613926 +191097,7158,Nudity (Rear),1296613999 +191097,7158,Nudity (Topless - Brief),1296614001 +191097,7158,sad,1296614009 +191097,7158,sad but good,1296614010 +191097,7162,based on a book,1431830045 +191097,7162,Civil War,1431830033 +191097,7162,Nicole Kidman,1431830036 +191097,7162,Renee Zellweger,1431830039 +191097,7163,based on a book,1298091696 +191097,7163,Philip K. Dick,1298091689 +191097,7163,sci-fi,1298091703 +191097,7163,Uma Thurman,1298091705 +191097,7265,1960s,1296450322 +191097,7265,activism,1296450324 +191097,7265,boheme,1296450327 +191097,7265,erotic,1296450333 +191097,7265,Incest,1196619972 +191097,7265,indecent,1296450338 +191097,7265,male nudity,1296450345 +191097,7265,NC-17,1296450348 +191097,7265,Nudity (Full Frontal - Notable),1296450351 +191097,7265,Nudity (Full Frontal),1296450353 +191097,7265,Paris,1296450357 +191097,7265,sexual,1296450359 +191097,7346,coming of age,1296028524 +191097,7346,Elisha Cuthbert,1296028526 +191097,7346,Emile Hirsch,1296028530 +191097,7346,high school,1296028532 +191097,7346,James Remar,1296028533 +191097,7346,ludicrous plot,1296028535 +191097,7346,Luke Greenfield,1296028539 +191097,7346,nerds,1296028541 +191097,7346,Nudity (Topless),1296028543 +191097,7346,pornography,1296028544 +191097,7346,silly,1296028547 +191097,7346,teen,1296028550 +191097,7346,Timothy Olyphant,1296028551 +191097,7361,bright red hair,1301793037 +191097,7366,Ben Affleck,1301110665 +191097,7366,cheesy,1301110483 +191097,7366,chick flick,1301110489 +191097,7366,child character,1301110733 +191097,7366,childbirth,1301110595 +191097,7366,comedy,1301110616 +191097,7366,cute,1301110447 +191097,7366,death,1301114729 +191097,7366,father daughter relationship,1301110455 +191097,7366,George Carlin,1301110458 +191097,7366,heartwarming,1301110788 +191097,7366,Jennifer Lopez,1301110460 +191097,7366,Kevin Smith,1301110671 +191097,7366,Liv Tyler,1301110470 +191097,7366,montages,1301110502 +191097,7366,no nudity,1301114664 +191097,7366,no sex scenes,1301114658 +191097,7366,notable soundtrack,1301110649 +191097,7366,pregnancy,1301110607 +191097,7366,romance,1301110476 +191097,7366,unrealistic,1301110769 +191097,7366,Will Smith,1301110760 +191097,7451,Amanda Seyfried,1296964982 +191097,7451,Amy Poehler,1296964984 +191097,7451,based on a book,1296964986 +191097,7451,clique,1296964988 +191097,7451,High School,1296964990 +191097,7451,innocence lost,1296964992 +191097,7451,lesbian subtext,1296964997 +191097,7451,popularity,1296965005 +191097,7451,Rachel McAdams,1296965009 +191097,7451,suprisingly clever,1296965020 +191097,7451,Tina Fey,1296965022 +191097,7616,Nudity (Topless - Notable),1418413700 +191097,7616,nudity (topless),1418413718 +191097,7616,raunchy,1418413707 +191097,7616,sexual,1418413735 +191097,7616,watch the credits,1418413705 +191097,8464,american idiocy,1295679631 +191097,8464,business,1295679634 +191097,8464,documentary,1295679636 +191097,8464,expose,1295679676 +191097,8464,food,1295679640 +191097,8464,social criticism,1295679659 +191097,8464,social message,1295679662 +191097,8578,alien,1296746210 +191097,8578,aliens,1296746213 +191097,8578,cult film,1296746234 +191097,8578,epidemic,1296746216 +191097,8578,zombie,1262569049 +191097,8578,zombies,1262569048 +191097,8619,erotic,1296450422 +191097,8619,Incest,1196619109 +191097,8619,lesbians,1296450399 +191097,8619,sexy girls,1296450417 +191097,8644,action,1298091916 +191097,8644,Amazing Cinematography,1298091918 +191097,8644,android(s)/cyborg(s),1298091920 +191097,8644,artificial intelligence,1298091922 +191097,8644,based on a book,1298091924 +191097,8644,Business is the antagonist,1298091964 +191097,8644,Dynamic CGI Action,1298091935 +191097,8644,funny,1298091979 +191097,8644,future,1298091937 +191097,8644,futuristic,1298091939 +191097,8644,irreverent,1298091941 +191097,8644,Isaac Asimov,1298091943 +191097,8644,robot,1298091948 +191097,8644,robots,1298091949 +191097,8644,Sci fi,1298091951 +191097,8644,sci-fi,1298091952 +191097,8644,thought provoking,1298091956 +191097,8644,Will Smith,1298091954 +191097,8807,Buddy movie,1296027762 +191097,8807,comedy,1296027764 +191097,8807,drugs,1296027772 +191097,8807,Fred Willard,1296027774 +191097,8807,Harrison Ford,1296027776 +191097,8807,high brow stupidity,1296027777 +191097,8807,John Cho,1296027779 +191097,8807,love,1296027783 +191097,8807,marijuana,1296027784 +191097,8807,Neil Patrick Harris,1296027786 +191097,8807,Notable Nudity,1296027788 +191097,8807,Nudity (Topless),1296027758 +191097,8807,one day,1296027794 +191097,8807,road trip,1296027802 +191097,8807,shenanigans,1296027804 +191097,8807,stoner comedy,1296027806 +191097,8807,Stoner Movie,1296027808 +191097,8827,stand-up comedy,1296967402 +191097,8861,bio chemical research,1298082812 +191097,8861,Milla Jovovich,1298082816 +191097,8861,Nudity (Topless),1298082818 +191097,8861,Post apocalyptic,1298082824 +191097,8861,post-apocalyptic,1298082826 +191097,8861,virus,1298082837 +191097,8861,virus outbreak,1298082833 +191097,8861,zombies,1298082835 +191097,8870,awful,1299389986 +191097,8870,bad ending,1299389983 +191097,8870,plot holes,1299389977 +191097,8870,poor plot details development,1299389981 +191097,8878,Troma,1298431530 +191097,8910,business,1296357744 +191097,8910,corporate culture,1296357745 +191097,8910,David O. Russell,1296357748 +191097,8910,detective,1296357750 +191097,8910,Dustin Hoffman,1296357752 +191097,8910,existentialism,1296357754 +191097,8910,funny,1296357755 +191097,8910,intelligent,1296357765 +191097,8910,ironic,1296357767 +191097,8910,Italian,1296357770 +191097,8910,Jude Law,1296357774 +191097,8910,Mark Wahlberg,1296357776 +191097,8910,mindless one liners,1296357780 +191097,8910,Naomi Watts,1296357782 +191097,8910,nihilism,1296357787 +191097,8910,philosophy,1296357789 +191097,8910,salespeople,1296357792 +191097,8910,satire,1296357794 +191097,8910,stylized,1296357797 +191097,8910,whimsical,1296357799 +191097,8914,Complicated,1433803691 +191097,8914,complicated plot,1433803689 +191097,8914,Confusing Plot,1433804006 +191097,8914,low budget,1433803695 +191097,8914,plot holes,1433803710 +191097,8914,time travel,1433803685 +191097,8920,domineering woman,1296769887 +191097,8938,cross dressing,1296863420 +191097,8938,cross dressing men,1296863430 +191097,8938,drugs,1296863519 +191097,8938,gay kiss,1296859261 +191097,8938,Gay Lead Character,1296859262 +191097,8938,gay relationship,1296859267 +191097,8938,gay romance,1296859269 +191097,8938,homosexuality,1296859167 +191097,8938,insanity,1296863529 +191097,8938,Male Full Frontal Nudity,1296864110 +191097,8938,male gaze,1296864120 +191097,8938,male nudity,1296864091 +191097,8938,mental illness,1296863527 +191097,8938,Nudity (Full - Male),1296864083 +191097,8938,psychology,1296863531 +191097,8938,self promotion,1296864292 +191097,8949,adapted from:book,1295678374 +191097,8949,based on a book,1295678376 +191097,8949,dark comedy,1295678378 +191097,8949,depression,1295678380 +191097,8949,friendship,1295678384 +191097,8949,funny,1295678386 +191097,8949,humor,1295678387 +191097,8949,Melancholic,1295678390 +191097,8949,midlife crisis,1295678394 +191097,8949,Nudity (Topless),1295678392 +191097,8949,obsession,1295678397 +191097,8949,road trip,1295678400 +191097,8949,sex,1295678403 +191097,8957,clever,1295678739 +191097,8957,Disturbing,1295678741 +191097,8957,gore,1295678743 +191097,8957,Gory,1295678746 +191097,8957,Horror,1295678750 +191097,8957,mindfuck,1295678752 +191097,8957,original,1295678756 +191097,8957,surprise ending,1295678760 +191097,8981,bleak,1301115729 +191097,8981,Dark,1301115731 +191097,8981,deception,1301115734 +191097,8981,disturbing,1301115736 +191097,8981,Julia Roberts,1301115740 +191097,8981,London,1301115743 +191097,8981,Natalie Portman,1301115722 +191097,8981,Nudity (Rear),1301115745 +191097,26203,evil computer,1296747114 +191097,26347,Beautiful Woman,1296015144 +191097,26347,Russian,1296015066 +191097,26471,homophobic,1296967133 +191097,26810,atheism,1296450107 +191097,26810,black comedy,1296450093 +191097,26810,cult film,1296450097 +191097,26810,dark comedy,1296450100 +191097,26810,incest,1202353410 +191097,26810,irreligion,1296450111 +191097,26810,MISFITS AND OUTSIDERS,1296450113 +191097,26810,Nudity (Full Frontal),1296450117 +191097,26810,quirky,1296450119 +191097,26810,satirical,1296450122 +191097,26933,BDSM,1321069637 +191097,27584,stupid,1296025821 +191097,27660,androids,1296245268 +191097,27660,animation,1296245270 +191097,27660,anime,1296245272 +191097,27660,Carrie-Anne Moss,1296245274 +191097,27660,cyberpunk,1296245275 +191097,27660,good concept,1296245285 +191097,27660,Keanu Reeves,1296245288 +191097,27660,sci-fi,1296245307 +191097,27660,stylized,1296245302 +191097,27664,Cheryl Tiegs,1296957417 +191097,27664,Chlöe Sevigny,1296957419 +191097,27664,explicit sex scene,1296957422 +191097,27664,Nudity (Topless),1296957427 +191097,27664,tedious,1296957437 +191097,27664,unsimulated sex scenes,1296957440 +191097,27864,lesbian sex scene,1299389420 +191097,27864,nude black women,1299389418 +191097,27864,nudity,1299389423 +191097,27864,Nudity (Topless),1299389424 +191097,27904,autobiographical,1298133602 +191097,27904,based on a book,1298133604 +191097,27904,drugs,1298133606 +191097,27904,Keanu Reeves,1298133613 +191097,27904,paranoia,1298133615 +191097,27904,Philip K. Dick,1298133616 +191097,27904,rotoscope,1298133587 +191097,27904,rotoscoping,1298133597 +191097,27904,sci-fi,1298133621 +191097,27904,surreal,1298133623 +191097,27904,surrealism,1298133625 +191097,27904,surveillance,1298133626 +191097,27904,the book was better,1298172994 +191097,27904,vector graphic,1298133592 +191097,27904,visually appealing,1298133667 +191097,27904,weird,1298133671 +191097,30749,based on a true story,1295679967 +191097,30749,depressing,1295679965 +191097,30749,factual,1295679963 +191097,30749,heroism,1295679957 +191097,30749,Tragedy,1295679960 +191097,30749,true story,1295679951 +191097,30820,disturbing,1295676084 +191097,30820,Disturbing and moving,1295676086 +191097,30820,Kevin Bacon,1295676090 +191097,30820,mental health,1295676093 +191097,30820,Mos Def,1295676096 +191097,30820,sexuality,1295676101 +191097,31422,Ice Cube,1438293452 +191097,31422,Kids,1438293460 +191097,32587,artistic,1295681097 +191097,32587,atmospheric,1295681099 +191097,32587,based on comic,1295681104 +191097,32587,black comedy,1295681102 +191097,32587,Bruce Willis,1295681105 +191097,32587,cannibalism,1295681107 +191097,32587,comic book,1295681109 +191097,32587,corruption,1295681111 +191097,32587,dark,1295681113 +191097,32587,multiple storylines,1295681115 +191097,32587,Nudity (Topless),1295681116 +191097,32587,police,1295681131 +191097,32587,police corruption,1295681132 +191097,32587,revenge,1295681134 +191097,32587,stylized,1295681124 +191097,32587,violent,1295681121 +191097,32587,visually appealing,1295681123 +191097,33683,Alexandre Aja,1296026352 +191097,33683,Cécile De France,1296026379 +191097,33683,chase,1296026354 +191097,33683,gore,1296026383 +191097,33683,horror,1296026386 +191097,33683,killer,1296026387 +191097,33683,lesbian,1296026389 +191097,33683,New French Extremism,1296026391 +191097,33683,plot twist,1296026393 +191097,33683,psycho,1296026395 +191097,33819,Elizabeth Banks,1269149546 +191097,33819,gay,1269149621 +191097,33819,Glenn Close,1269149690 +191097,33819,men kissing,1269149636 +191097,33819,New York City,1269149551 +191097,33834,amazing make-up effects,1298091146 +191097,33834,Asia Argento,1298091148 +191097,33834,George A. Romero,1298091154 +191097,33834,gruesome,1298091143 +191097,33834,Post apocalyptic,1298091168 +191097,33834,zombie,1298091172 +191097,33834,zombies,1298091174 +191097,33880,avante garde,1297749818 +191097,33880,bittersweet,1297749820 +191097,33880,deadpan,1297749821 +191097,33880,humorous,1297749828 +191097,33880,independent film,1297749830 +191097,33880,Indie,1297749832 +191097,33880,irreverent,1297749834 +191097,33880,SEXUAL AWAKENING,1297749850 +191097,33880,SUBURBAN DYSFUNCTION,1297749855 +191097,33880,unique,1297749857 +191097,33880,weird,1297749858 +191097,34271,black,1298848946 +191097,34271,crunk,1298848948 +191097,34271,hip hop,1298848953 +191097,34271,midlife crisis,1298848966 +191097,34271,music,1298848968 +191097,34271,pimps,1298848969 +191097,34271,prostitution,1298848971 +191097,34271,pursuing a dream,1298848972 +191097,34271,rap,1298848974 +191097,34271,rappers,1298848975 +191097,34271,stereotypes,1298848984 +191097,34271,urban,1298848990 +191097,34271,vocalists,1298848992 +191097,34319,biology,1298091616 +191097,34319,cloning,1298091618 +191097,34319,dystopia,1298091619 +191097,34319,future,1298091623 +191097,34319,immortality,1298091629 +191097,34319,no nudity,1298091659 +191097,34319,Scarlett Johansson,1298091626 +191097,34319,sci-fi,1298091633 +191097,34319,scifi,1298091635 +191097,34338,Billy Connolly,1296450857 +191097,34338,Chris Rock,1296450860 +191097,34338,comedy,1296450862 +191097,34338,crude humor,1296450864 +191097,34338,fisting,1296450869 +191097,34338,George Carlin,1296450872 +191097,34338,hilarious,1296450874 +191097,34338,obscenity,1296450877 +191097,34338,Robin Williams,1296450882 +191097,34338,Vulgar,1296450884 +191097,34520,blonde,1296451139 +191097,34520,breasts,1296451140 +191097,34520,not funny,1296451149 +191097,34520,redneck,1296451151 +191097,34520,sexy girls,1296451165 +191097,34532,Brilliant,1296026540 +191097,34532,Gena Rowlands,1296026543 +191097,34532,Iain Softley,1296026549 +191097,34532,John Hurt,1296026552 +191097,34532,Kate Hudson,1296026553 +191097,34532,Louisiana,1296026559 +191097,34532,magic,1296026560 +191097,34532,Magick,1296026563 +191097,34532,New Orleans,1296026571 +191097,34532,Peter Sarsgaard,1296026578 +191097,34532,Scary,1296026582 +191097,34532,surreal,1296026584 +191097,34532,Twist Ending,1296026587 +191097,34532,Voodoo,1296026588 +191097,36531,No Nudity,1433570331 +191097,36531,Not Scary,1433570329 +191097,36531,snakes,1433570347 +191097,36531,teen movie,1433570343 +191097,36531,voodoo,1433570340 +191097,36531,zombies,1433570338 +191097,37384,comedy,1295676391 +191097,37384,Dane Cook,1295676390 +191097,37384,profanity,1295676395 +191097,37384,rebellion,1295676397 +191097,37384,shenanigans,1295676399 +191097,37384,workplace,1295676402 +191097,37855,50's,1431112211 +191097,37855,Julianne Moore,1431112181 +191097,38499,AIDS,1298260840 +191097,38499,closeted homosexual,1298260843 +191097,38499,gay,1298260845 +191097,39234,Charlize Theron,1295681621 +191097,39234,feminism,1295681630 +191097,39234,sexism,1295681645 +191097,39234,true story,1295681649 +191097,39292,american idiocy,1295679837 +191097,39292,censorship,1295679839 +191097,39292,cerebral,1295679841 +191097,39292,historical,1295679845 +191097,39292,history,1295679846 +191097,39419,based on a book,1295676300 +191097,39419,based on book,1295676305 +191097,39419,Kevin Bacon,1295676310 +191097,39419,Nudity (Full Frontal - Notable),1295676314 +191097,39419,Nudity (Full Frontal),1295676316 +191097,39419,queer,1295676319 +191097,40574,nude black women,1299389078 +191097,40819,addiction,1295676332 +191097,40819,biographical,1295676334 +191097,40819,biography,1295676335 +191097,40819,biopic,1295676337 +191097,40819,drug abuse,1295676338 +191097,40819,drugs,1295676340 +191097,40819,great music,1295676342 +191097,40819,Johnny Cash,1295676346 +191097,40819,Los Angeles,1295676370 +191097,40819,music,1295676349 +191097,40819,music business,1295676351 +191097,40819,nostalgic,1295676372 +191097,40819,Oscar (Best Actress),1295676354 +191097,40819,singing,1295676379 +191097,40819,touching,1295676366 +191097,40819,true story,1295676362 +191097,40870,gay,1298161738 +191097,40870,Gay Lead Character,1298161741 +191097,40870,glbt,1298161744 +191097,40870,homosexuality,1298161747 +191097,40870,queer,1298161760 +191097,40946,anti-religion,1300382803 +191097,40946,irreverent,1296967284 +191097,40946,race issues,1300382811 +191097,40946,sarah silverman,1296967286 +191097,40946,Stand Up,1296967288 +191097,40946,stand-up comedy,1296967289 +191097,42163,stand-up comedy,1296967509 +191097,42738,heroine in tight suit,1438293963 +191097,42738,Kate Beckinsale,1438293977 +191097,42738,Nudity (Topless),1438293981 +191097,42738,vampire,1438293973 +191097,42738,vampires,1438293966 +191097,42738,werewolf,1438293971 +191097,42738,werewolves,1438293968 +191097,43652,behind-the-scenes,1301785917 +191097,43652,Brian Posehn,1301785790 +191097,43652,Bush bashing,1301785889 +191097,43652,comedians,1301785945 +191097,43652,comedy,1301785957 +191097,43652,funny,1301785876 +191097,43652,hilarious,1301785883 +191097,43652,Patton Oswalt,1301785815 +191097,43652,road movie,1301785911 +191097,43652,road trip,1301785905 +191097,43652,Stand Up,1301785872 +191097,43652,stand-up comedy,1301785865 +191097,43652,Zach Galifianakis,1301785855 +191097,43897,Werner Herzog,1295681976 +191097,43928,atmospheric,1298091317 +191097,43928,flashy,1298091331 +191097,43928,heroine in tight suit,1298091333 +191097,43928,Kick-Butt Women,1298091352 +191097,43928,lone hero,1298091339 +191097,43928,Milla Jovovich,1298091341 +191097,43928,sci-fi,1298091343 +191097,43928,stylized,1298091344 +191097,43928,talky,1199855595 +191097,44191,based on a book,1295679738 +191097,44191,dark,1295679729 +191097,44191,dystopia,1295679726 +191097,44191,England,1295679742 +191097,44191,Natalie Portman,1295679710 +191097,44191,politics,1295679721 +191097,44191,social commentary,1295679717 +191097,44191,thought-provoking,1295679713 +191097,44191,visually appealing,1295679715 +191097,44195,adapted from:book,1295679513 +191097,44195,based on a book,1295679515 +191097,44195,clever,1295679521 +191097,44195,corruption,1295679519 +191097,44195,dark comedy,1295679523 +191097,44195,dark humor,1295679525 +191097,44195,funny,1295679528 +191097,44195,independent film,1295679532 +191097,44195,indie,1295679535 +191097,44195,social commentary,1295679540 +191097,44397,Alexandre Aja,1296024546 +191097,44397,cannibalism,1296024512 +191097,44397,gore,1296024513 +191097,44397,Kathleen Quinlan,1296024550 +191097,44397,mutation,1296024555 +191097,44397,remake,1296024559 +191097,44397,Vinessa Shaw,1296024561 +191097,44788,business,1295677374 +191097,44788,censorship,1295677375 +191097,44788,corruption,1295677377 +191097,44788,documentary,1295677378 +191097,44788,documentary critique,1295677383 +191097,44788,Hollywood,1295677385 +191097,44788,Maria Bello,1295677387 +191097,44788,movie business,1295677389 +191097,44788,MPAA,1295677394 +191097,44788,Nudity (Full Frontal),1295677402 +191097,44788,social commentary,1295677412 +191097,44828,alien invasion,1296344619 +191097,44828,aliens,1296344624 +191097,44828,body horror,1296344625 +191097,44828,comedy,1296344628 +191097,44828,Elizabeth Banks,1296344630 +191097,44828,horror,1296344632 +191097,44828,pseudo-zombies,1296344640 +191097,44828,sci-fi,1296344644 +191097,44828,silly,1296344647 +191097,45728,Comedy,1300417697 +191097,45728,crude humor,1300417673 +191097,45728,dialogue driven,1300417700 +191097,45728,funny,1300417723 +191097,45728,jay and silent bob,1300417726 +191097,45728,Kevin Smith,1300417728 +191097,45728,lulz,1300417731 +191097,45728,marijuana,1300417733 +191097,45728,pop culture references,1300417736 +191097,45728,quotable,1300417739 +191097,45728,slackers,1300417745 +191097,45728,view askew,1300417747 +191097,45728,workplace,1300417748 +191097,45928,american idiocy,1295676167 +191097,45928,business,1295676179 +191097,45928,business is the antagonist,1295676176 +191097,45928,California,1295676182 +191097,45928,corruption,1295676199 +191097,45928,documentary,1295676202 +191097,45928,electric vehicles(EV),1295676232 +191097,45928,engineering,1295676234 +191097,45928,environmental,1295676237 +191097,45928,General Motors,1295676239 +191097,45928,green,1295676241 +191097,45928,innovation,1295676243 +191097,45928,Lobbyism,1295676246 +191097,45928,Martin Sheen,1295676248 +191097,45928,Mel Gibson,1295676251 +191097,45928,sustainability,1295676255 +191097,45928,Tom Hanks,1295676257 +191097,45928,true story,1295676260 +191097,46347,Black Metal,1296951339 +191097,46347,documentary,1296951348 +191097,46347,heavy metal,1296951350 +191097,46347,metal,1296951356 +191097,46347,music,1296951358 +191097,46347,music documentary,1296951360 +191097,46347,rock and roll,1296951365 +191097,46578,child character,1300869584 +191097,46578,comedy,1432831582 +191097,46578,cute,1300869653 +191097,46578,dark comedy,1300869659 +191097,46578,deadpan,1300869664 +191097,46578,drug use,1300867696 +191097,46578,drugs,1300867691 +191097,46578,dysfunctional family,1300869661 +191097,46578,funny,1432831586 +191097,46578,gay,1300866967 +191097,46578,Gay Character,1300866961 +191097,46578,gay subplot,1300869784 +191097,46578,hilarious,1300869668 +191097,46578,independent film,1432831563 +191097,46578,inspirational,1300869639 +191097,46578,off-beat comedy,1300869672 +191097,46578,quirky,1300869674 +191097,46578,road movie,1300869676 +191097,46578,road trip,1300869678 +191097,46578,satire,1432831580 +191097,46578,social commentary,1300869684 +191097,46578,SUBURBAN DYSFUNCTION,1300869687 +191097,46578,suicide,1300867710 +191097,46578,suicide attempt,1300867718 +191097,46578,Toni Collette,1300868752 +191097,47330,70s,1433727424 +191097,47330,car chase,1433727439 +191097,47330,grindhouse,1433727445 +191097,47830,Bizzare,1298147461 +191097,47830,Elisha Cuthbert,1298147464 +191097,47830,Nudity (Topless),1298147466 +191097,47937,badass girl,1297315858 +191097,47937,dark comedy,1297315861 +191097,47937,dark humor,1297315863 +191097,47937,guns,1297315865 +191097,47937,horror,1297315867 +191097,47937,Nudity (Topless - Brief),1297315869 +191097,47937,Nudity (Topless),1297315872 +191097,47937,satirical,1297315874 +191097,47937,stoner,1297315883 +191097,48142,based on a book,1298497632 +191097,48142,Based on a novel,1298497635 +191097,48142,black comedy,1298497638 +191097,48142,Hilary Swank,1298497648 +191097,48142,Nudity (Rear),1298497628 +191097,48142,Nudity (Topless),1298497629 +191097,48142,Scarlett Johansson,1298497654 +191097,48322,amazing stunts,1300851379 +191097,48322,dick and fart humor,1300851406 +191097,48322,Funny,1300851283 +191097,48322,hilarious,1300851285 +191097,48322,Vulgar,1300851307 +191097,48322,Vulgarity,1300851313 +191097,48385,anti-Semitism,1298851238 +191097,48385,controversial,1298851239 +191097,48385,crude humor,1298851241 +191097,48385,funny,1298851242 +191097,48385,irreverent,1298851244 +191097,48385,Los Angeles,1298851246 +191097,48385,Male nudity,1298851236 +191097,48385,New York,1298851252 +191097,48385,New York City,1298851253 +191097,48385,prostitution,1298851278 +191097,48385,religiously offensive,1296744842 +191097,48385,road trip,1298851279 +191097,48385,social commentary,1298851293 +191097,48678,all men are idiots,1300858511 +191097,48678,bad acting,1300858629 +191097,48678,bad fx,1300858510 +191097,48678,boring,1300858668 +191097,48678,can't see shit,1300858594 +191097,48678,derivative,1300858547 +191097,48678,no nudity,1300858727 +191097,48678,no plot,1300858545 +191097,48678,not funny,1300858653 +191097,48678,not scary,1300858660 +191097,48698,conspiracy,1301802845 +191097,48774,apocalypse,1296746906 +191097,48774,atmospheric,1296746912 +191097,48774,based on a book,1296746914 +191097,48774,christianity,1296746916 +191097,48774,dystopia,1296746918 +191097,48774,end of the world,1296746921 +191097,48774,environmental,1296746923 +191097,48774,epidemic,1296746926 +191097,48774,future,1296746927 +191097,48774,futuristic,1296746929 +191097,48774,nude black women,1296746934 +191097,48774,Nudity (Topless - Brief),1296746935 +191097,48774,Nudity (Topless),1296746944 +191097,48774,pregnancy,1296746947 +191097,48774,survival,1296746950 +191097,48774,war,1296746952 +191097,48997,artistic,1348685591 +191097,48997,Nudity (Topless - Notable),1348685603 +191097,48997,orgy,1348685607 +191097,48997,sexuality,1348685610 +191097,48997,weird,1348685612 +191097,49225,anti-intellectualism,1296437052 +191097,49225,black,1296436954 +191097,49225,corruption,1296436711 +191097,49225,Cory Booker,1296436966 +191097,49225,haters,1296436990 +191097,49225,inner city,1296436781 +191097,49225,police,1296436877 +191097,49225,police corruption,1296436887 +191097,49225,police state,1296436908 +191097,49225,Sharpe James,1296436968 +191097,49225,slave mentality,1296436943 +191097,49225,stupidity,1296436831 +191097,49225,voters,1296436808 +191097,51127,Dave Lovering,1296017034 +191097,51127,family bonds,1296017037 +191097,51127,honest,1296017047 +191097,51127,intimate,1296017050 +191097,51127,kim deal,1296017057 +191097,51127,Matthew Galkin,1296017060 +191097,51127,music documentary,1296017055 +191097,51127,pixies,1296017028 +191097,51127,rock and roll,1296017068 +191097,51127,rockumentary,1296017071 +191097,51127,Steven Cantor,1296017074 +191097,51255,contrived,1300381228 +191097,51304,1990s,1296450766 +191097,51304,based on a true story,1296450769 +191097,51304,controversial,1296450775 +191097,51304,Nudity (Topless - Brief),1296450783 +191097,51304,Nudity (Topless),1296450786 +191097,51304,serial killer,1296450791 +191097,51304,SERIAL KILLERS,1296450794 +191097,51304,true story,1296450797 +191097,52281,exploitation,1295680632 +191097,52281,funny!,1295680635 +191097,52281,genre spoof,1295680637 +191097,52281,Sexy ladies,1295680667 +191097,52281,strippers,1295680664 +191097,52281,zombies,1295680671 +191097,52952,1980s,1295677314 +191097,52952,atmospheric,1295677316 +191097,52952,bullying,1295677325 +191097,52952,coming of age,1262580931 +191097,52952,complex,1295677330 +191097,52952,England,1295677331 +191097,52952,great soundtrack,1295677332 +191097,52952,gritty,1295677335 +191097,52952,INNOCENCE LOST,1262580934 +191097,52952,racism,1262580939 +191097,52952,skinhead,1262580927 +191097,52952,smoking,1295677343 +191097,52952,suburbia,1295677345 +191097,52952,tattoo,1295677358 +191097,52952,teenager,1295677347 +191097,52952,Thomas Turgoose,1295677356 +191097,52952,urban,1295677360 +191097,52973,absolutely hilarious,1295681330 +191097,52973,drugs,1295681333 +191097,52973,Harold Ramis,1295681335 +191097,52973,Jason Segel,1295681338 +191097,52973,Jonah Hill,1295681343 +191097,52973,Katherine Heigl,1295681346 +191097,52973,Las Vegas,1295681357 +191097,52973,marijuana,1295681359 +191097,52973,Nudity (Topless - Brief),1295681360 +191097,52973,Nudity (Topless),1295681364 +191097,53318,alternate reality,1262748655 +191097,53318,boobs,1299390111 +191097,53318,notable nudity,1262745658 +191097,53318,nudity,1418415724 +191097,53318,Nudity (Full Frontal),1262745661 +191097,53318,quirky,1418415747 +191097,53318,slackers,1262745672 +191097,53318,strippers,1262745669 +191097,53318,surreal,1418415749 +191097,53318,surrealism,1262748649 +191097,53318,T&A,1299390116 +191097,53468,1950s,1301926073 +191097,53468,1950s housewives,1301926072 +191097,53468,black comedy,1301926115 +191097,53468,Carrie-Anne Moss,1301926076 +191097,53468,clever,1301926192 +191097,53468,comedy,1301926081 +191097,53468,fascism,1301926141 +191097,53468,living dead,1301926224 +191097,53468,no nudity,1301926268 +191097,53468,no sex scenes,1301926277 +191097,53468,post-apocalyptic,1301926302 +191097,53468,satire,1301926101 +191097,53468,satirical,1301926107 +191097,53468,slavery,1301926234 +191097,53468,social commentary,1301926125 +191097,53468,witty,1301926185 +191097,53468,zombies,1301926085 +191097,53569,porn,1297316257 +191097,53569,pornography,1297316263 +191097,53894,american idiocy,1295678434 +191097,53894,corruption,1295678440 +191097,53894,documentary,1295678442 +191097,53894,documentary critique,1295678444 +191097,53894,England,1295678446 +191097,53894,France,1295678448 +191097,53894,health care,1295678450 +191097,53894,reality check,1295678460 +191097,54503,beer,1296027907 +191097,54503,comedy,1296027897 +191097,54503,crude humor,1296027899 +191097,54503,drinking,1296027901 +191097,54503,friendship,1296027909 +191097,54503,funny,1296027911 +191097,54503,high school,1296027913 +191097,54503,HIGH SCHOOL LIFE,1296027915 +191097,54503,Highly quotable,1296027921 +191097,54503,hilarious,1296027917 +191097,54503,Michael Cera,1296027923 +191097,54503,police,1296027925 +191097,54503,pornography,1296027927 +191097,54503,self discovery,1296027931 +191097,54503,Seth Rogen,1296027933 +191097,54503,teen,1296027940 +191097,54503,Teen movie,1296027942 +191097,54999,BDSM,1296957113 +191097,54999,Nudity (Topless),1296957104 +191097,54999,ultra-violence,1296957115 +191097,55031,funny,1300418102 +191097,55031,Kevin Smith,1300418095 +191097,55031,movie business,1300418100 +191097,55031,Q&A,1300418098 +191097,55118,atmospheric,1298849573 +191097,55118,BBC Films,1298849575 +191097,55118,bloody,1298849577 +191097,55118,drinking,1298849580 +191097,55118,food/cooking,1298849587 +191097,55118,mafia,1298849588 +191097,55118,male nudity,1298849583 +191097,55118,Naomi Watts,1298849590 +191097,55118,Nudity (Full Frontal - Notable),1298849595 +191097,55118,Nudity (Full Frontal),1298849597 +191097,55118,Nudity (Topless - Brief),1298849598 +191097,55118,Nudity (Topless),1298849601 +191097,55118,organized crime,1298849603 +191097,55118,prostitution,1298849605 +191097,55118,violent,1298849607 +191097,55232,bio chemical research,1298082729 +191097,55232,Milla Jovovich,1298082725 +191097,55232,post-apocalyptic,1298082727 +191097,55232,virus,1298082744 +191097,55232,zombies,1298082743 +191097,55247,adapted from:book,1295674438 +191097,55247,atmospheric,1295674420 +191097,55247,based on a book,1295674416 +191097,55247,based on a true story,1295674413 +191097,55247,great soundtrack,1295674458 +191097,55247,male nudity,1295674487 +191097,55247,Music,1295674455 +191097,55247,Nudity (Full Frontal),1295674401 +191097,55247,Nudity (Topless - Notable),1295674396 +191097,55247,Nudity (Topless),1295674464 +191097,55247,psychology,1295674431 +191097,55247,true story,1295674408 +191097,55267,cliche,1298077936 +191097,55267,infidelity,1298077993 +191097,55267,not a comedy,1298077846 +191097,55267,not funny,1298078004 +191097,55267,not romantic,1298077860 +191097,55267,predictable,1298077937 +191097,55267,sappy,1298077949 +191097,55267,tedious,1298077939 +191097,55267,unrealistic,1298077940 +191097,55687,art,1301785445 +191097,55687,child character,1301785677 +191097,55687,child prodigy,1301785646 +191097,55687,childhood,1301785587 +191097,55687,fraud,1301785654 +191097,55687,kids,1301785585 +191097,55687,media,1301785655 +191097,55687,opportunism,1301785660 +191097,55687,painter,1301785455 +191097,55687,painting,1301785463 +191097,55687,stage parents,1301785663 +191097,56012,crude humor,1305408672 +191097,56012,Kevin Smith,1305408667 +191097,56145,anti-intellectualism,1296744984 +191097,56145,apocalypse,1296744724 +191097,56145,atmospheric,1296744728 +191097,56145,based on a book,1296744727 +191097,56145,gory,1296744734 +191097,56145,king done right,1296745624 +191097,56145,mob mentality,1296745136 +191097,56145,monster,1296744737 +191097,56145,no nudity,1297403419 +191097,56145,no sex scenes,1297403433 +191097,56145,perfect ending,1296744770 +191097,56145,preacher,1296744739 +191097,56145,psychological,1296744990 +191097,56145,religious conversion,1296744744 +191097,56145,religious nuts,1296745416 +191097,56145,social commentary,1296745010 +191097,56145,stephen king,1296744748 +191097,56145,surprise ending,1296744751 +191097,56367,comedy,1296030363 +191097,56367,cult film,1296030365 +191097,56367,Ellen Page,1296030367 +191097,56367,feel-good,1296030370 +191097,56367,great soundtrack,1296030373 +191097,56367,high school,1296030375 +191097,56367,hilarious,1296030377 +191097,56367,humor,1296030379 +191097,56367,humorous,1296030381 +191097,56367,Jason Reitman,1296030382 +191097,56367,Jennifer Garner,1296030386 +191097,56367,Michael Cera,1296030388 +191097,56367,notable soundtrack,1296030390 +191097,56367,pregnancy,1296030394 +191097,56367,teen,1296030396 +191097,56367,teenager,1296030398 +191097,56367,teenagers,1296030399 +191097,56367,uplifting,1296030401 +191097,56367,witty,1296030403 +191097,56456,zombies,1348694303 +191097,56693,incest,1296449996 +191097,56693,sexuality,1296449946 +191097,56805,Jenna Fischer,1296345865 +191097,56805,Nudity (Full Frontal - Brief),1296345859 +191097,56805,overlong,1296345838 +191097,56805,sex,1296345843 +191097,56805,Terrible,1296345840 +191097,57274,atmospheric,1298702269 +191097,57274,bloody,1298702278 +191097,57274,contamination,1298702279 +191097,57274,creepy,1298702281 +191097,57274,despair,1298702283 +191097,57274,Foreign,1298702293 +191097,57274,horror,1298702297 +191097,57274,infection,1298702301 +191097,57274,panic,1298702304 +191097,57274,quarantine,1298702317 +191097,57274,spanish,1298702320 +191097,57274,virus,1298702322 +191097,57274,zombies,1298702324 +191097,57637,bad ending,1300505649 +191097,57637,bad execution,1300505550 +191097,57637,bad plot,1300505879 +191097,57637,black comedy,1300505527 +191097,57637,brutal,1300505488 +191097,57637,funny,1300505519 +191097,57637,infidelity,1300505599 +191097,57637,insanity,1300505515 +191097,57637,montage sequence,1300505698 +191097,57637,nonlinear,1300505610 +191097,57637,nonsensical,1300505668 +191097,57637,not science fiction,1300505851 +191097,57637,poor execution,1300505558 +191097,57637,Post apocalyptic,1300505508 +191097,57637,post-apocalyptic,1300505502 +191097,57637,Unjustified twists,1300505892 +191097,57637,unsympathetic characters,1300505637 +191097,58297,BDSM,1298081032 +191097,58297,cannibalism,1298081034 +191097,58297,cheesy,1298084400 +191097,58297,disease,1298081036 +191097,58297,epidemic,1298081038 +191097,58297,exploitation,1298082064 +191097,58297,funny,1298081002 +191097,58297,futuristic,1298081039 +191097,58297,Girl Power,1298083117 +191097,58297,good music,1298082004 +191097,58297,heroine in tight suit,1298083104 +191097,58297,Kick-Butt Women,1298083091 +191097,58297,mad max,1298081042 +191097,58297,no nudity,1298085593 +191097,58297,no sex scenes,1298085595 +191097,58297,pole dancers,1298081016 +191097,58297,Post apocalyptic,1298081045 +191097,58297,post-apocalyptic,1298081029 +191097,58297,sadistic,1298081047 +191097,58297,sexy,1298081021 +191097,58297,sexy girls,1298082245 +191097,58297,slow start,1298083187 +191097,58297,unrealistic,1298083198 +191097,58297,virus,1298081056 +191097,58332,"""found footage""",1296343214 +191097,58332,George A. Romero,1296343216 +191097,58332,horror,1296343218 +191097,58332,Nudity (Topless - Brief),1296343221 +191097,58332,Nudity (Topless),1296343224 +191097,58332,zombies,1296343226 +191097,58998,good dialogue,1349029097 +191097,58998,male nudity,1349029103 +191097,58998,Mila Kunis,1349029128 +191097,58998,Nudity (Topless - Brief),1349029111 +191097,58998,Nudity (Topless),1349029114 +191097,59143,California,1301111077 +191097,59143,comedians,1301110939 +191097,59143,Doug Benson,1301110941 +191097,59143,drugs,1301110944 +191097,59143,facism,1301111037 +191097,59143,funny,1301111047 +191097,59143,marijuanna,1301110947 +191097,59143,police,1301111002 +191097,59143,police state,1301111016 +191097,59143,stand-up comedy,1301111062 +191097,59731,American culture,1301456116 +191097,59731,Arnold Schwarzenegger,1301456119 +191097,59731,athletes,1301456107 +191097,59731,athletics,1301456108 +191097,59731,bodybuilding,1301456110 +191097,59731,drug use,1301456017 +191097,59731,drugs,1301456010 +191097,59731,hypocrisy,1301456150 +191097,59731,jocks,1301456248 +191097,59731,politics,1301456172 +191097,59731,Pro Wrestling,1301456134 +191097,59731,social commentary,1301456085 +191097,59915,Fecal Incontinence,1295677744 +191097,59915,Karma,1295677748 +191097,59915,nude black women,1295677750 +191097,59915,Nudity (Full Frontal),1295677754 +191097,59915,Nudity (Topless),1295677756 +191097,60126,Anne Hathaway,1299386727 +191097,60333,human condition,1295836448 +191097,60333,nature,1295836450 +191097,60333,Philosophical,1295836445 +191097,60333,scenic,1295836458 +191097,60333,Werner Herzog,1295836455 +191097,60363,campy,1262569694 +191097,60363,gore,1262569697 +191097,60363,Nudity (Full Frontal),1262569692 +191097,60363,Nudity (Rear),1262569690 +191097,60363,Nudity (Topless - Notable),1262569705 +191097,60363,Nudity (Topless),1262569688 +191097,60363,porn stars,1262569709 +191097,60363,strippers,1262569679 +191097,60363,stripping,1262569685 +191097,60363,zombies,1262569682 +191097,60766,French,1434069459 +191097,60766,Subtitles,1434069450 +191097,61024,bromantic,1296027649 +191097,61024,cincinnati,1296027677 +191097,61024,Danny McBride,1296027679 +191097,61024,David Gordon Green,1296027681 +191097,61024,drugs,1296027655 +191097,61024,James Franco,1296027690 +191097,61024,Joe Lo Truglio,1296027692 +191097,61024,Seth Rogen,1296027667 +191097,61024,Stoner Movie,1296027669 +191097,61024,weed,1296027671 +191097,61132,actors and acting,1296345741 +191097,61132,Ben Stiller,1296345742 +191097,61132,Jack Black,1296345754 +191097,61132,not funny,1296345799 +191097,61132,Tom Cruise,1296345771 +191097,61250,Anna Faris,1296965769 +191097,61250,dumb blonde,1296965772 +191097,61250,geek sorority,1296965776 +191097,61250,Kat Dennings,1418412690 +191097,61250,Nudity (Rear),1296965790 +191097,61250,playboy girl,1296965787 +191097,61250,playboy non bunny,1296965794 +191097,61257,libertarians,1296245000 +191097,61257,somewhat deceptive,1296245030 +191097,61301,zombies,1301844826 +191097,61357,African American,1298060877 +191097,61357,Cinema Verité,1298060908 +191097,61357,Cinema Verité,1298060915 +191097,61357,George W. Bush,1298060981 +191097,61357,Hurricane Katrina,1298060914 +191097,61357,incompetence,1298061057 +191097,61357,Injustice,1298061025 +191097,61357,New Orleans,1298060917 +191097,61357,Poor People,1298061013 +191097,62155,gay,1300850944 +191097,62434,Amateur Porn,1295675941 +191097,62434,Elizabeth Banks,1295676063 +191097,62434,foul language,1295675949 +191097,62434,Gross-out,1295675953 +191097,62434,Kevin Smith,1295676035 +191097,62434,light-hearted,1295675977 +191097,62434,Male Full Frontal Nudity,1295675984 +191097,62434,Monroeville,1296346085 +191097,62434,Nudity (Full Frontal),1295675986 +191097,62434,Nudity (Topless),1295675987 +191097,62434,Pittsburgh,1418423014 +191097,62434,pornography,1295676007 +191097,62434,pornstars,1295676057 +191097,62434,Seth Rogen,1295676030 +191097,62434,sex,1295676037 +191097,62434,Sex Comedy,1295676039 +191097,62434,Sex Scene,1295676040 +191097,62434,Sexual Humor,1295676042 +191097,62434,sexy girls,1296346261 +191097,62434,Star Wars,1295676044 +191097,62437,Bush bashing,1301170379 +191097,62437,corruption,1301170383 +191097,62437,Elizabeth Banks,1301170385 +191097,62437,George W Bush,1301170416 +191097,62437,great acting,1301170388 +191097,62437,history,1301170390 +191097,62437,Iraq War,1301170392 +191097,62437,Oliver Stone,1301170396 +191097,62437,satire,1301170404 +191097,62437,unbiased,1301170400 +191097,62733,zombies,1322532686 +191097,63072,based on a book,1305408321 +191097,63072,cannibalism,1305408323 +191097,63072,Charlize Theron,1305408326 +191097,63072,child actor,1305408414 +191097,63072,children,1305408425 +191097,63072,depressing,1305408328 +191097,63072,dystopia,1305408330 +191097,63072,emotional,1305408451 +191097,63072,few action scenes,1305408334 +191097,63072,great acting,1305408337 +191097,63072,post-apocalyptic,1305408350 +191097,63072,survival,1305408368 +191097,63072,tense,1305408372 +191097,63131,comedy,1296344379 +191097,63131,derivative,1296027849 +191097,63131,Elizabeth Banks,1296027830 +191097,63131,geeks,1296344377 +191097,63131,obvious plot,1296027836 +191097,63131,predictable,1296027839 +191097,63131,unfunny,1296027844 +191097,63479,Alice Greczyn,1263877290 +191097,63479,Amanda Crew,1263878874 +191097,63479,Amish,1263878873 +191097,63479,comedy,1263877074 +191097,63479,Katrina Bowden,1263878875 +191097,63479,losing virginity,1263877085 +191097,63479,rednecks,1295678603 +191097,63479,road trip,1295678595 +191097,63479,Seth Green,1295678601 +191097,63479,teen movie,1263877089 +191097,63479,virginity,1295678599 +191097,63826,campy,1322532763 +191097,63826,Jill Wagner,1322532767 +191097,63826,Parasite Premise,1322532773 +191097,63826,zombies,1322532786 +191097,63876,gay,1418444950 +191097,63876,gay history,1418444959 +191097,63876,gay rights,1418444956 +191097,63876,glbt,1418444953 +191097,63992,audience intelligence underestimated,1296459628 +191097,63992,based on a book,1295675165 +191097,63992,chick flick,1295675163 +191097,63992,HIGH SCHOOL LIFE,1295675176 +191097,63992,porn for women,1296459622 +191097,63992,so bad it's good,1295675188 +191097,63992,teen,1295675178 +191097,63992,Teen movie,1295675180 +191097,63992,teenagers,1295675182 +191097,65126,Topless Nudity,1432681624 +191097,65133,funny,1300851064 +191097,65133,Kate Moss,1300851043 +191097,65133,Miranda Richardson,1300850997 +191097,65133,Rowan Atkinson,1300851050 +191097,65133,short,1300851107 +191097,65133,substandard,1300851205 +191097,65133,vignettes,1300851103 +191097,65310,B-movie,1298434976 +191097,65310,crude humor,1298435937 +191097,65310,funny,1298435294 +191097,65310,gore,1298435291 +191097,65310,Gross-out,1298495077 +191097,65310,lesbian kiss,1298435505 +191097,65310,lesbians,1298435565 +191097,65310,lipstick lesbians,1298436066 +191097,65310,monster,1298435684 +191097,65310,monsters,1298435688 +191097,65310,musical,1298435811 +191097,65310,Nudity (Topless),1298435145 +191097,65310,politically incorrect,1298435710 +191097,65310,sexy girls,1298435634 +191097,65310,singing,1298435806 +191097,65310,social commentary,1298437880 +191097,65310,T&A,1298495374 +191097,65310,tasteless,1298435607 +191097,65310,Troma,1298431403 +191097,65588,fantasy,1296345197 +191097,65588,mock me please,1296345184 +191097,65588,nerds,1296345190 +191097,65588,niche humor,1296345192 +191097,65588,parody,1296345194 +191097,66097,3D,1296019437 +191097,66097,3D version,1296019439 +191097,66097,alternate reality,1296019441 +191097,66097,based on a book,1296019445 +191097,66097,claymation,1296019448 +191097,66097,creepy,1296019450 +191097,66097,dark,1296019451 +191097,66097,dystopia,1296019452 +191097,66097,gothic,1296019455 +191097,66097,Stereoscopic 3-D,1298687606 +191097,66097,Surreal,1296019464 +191097,66203,scarlett johansson's boobs,1299387885 +191097,66783,Nudity (Topless),1296771856 +191097,66798,Family Film,1433263535 +191097,66798,Screwball Comedy,1433263512 +191097,66798,Steve Martin,1433263514 +191097,67197,aliens,1301499371 +191097,67197,apocalypse,1301499373 +191097,67197,apocalyptic,1301499424 +191097,67197,bad acting,1301499244 +191097,67197,bad cgi,1301499245 +191097,67197,bad ending,1301499288 +191097,67197,catastrophe,1301499444 +191097,67197,cheesy ending,1301499306 +191097,67197,child actor,1301499264 +191097,67197,children,1301499274 +191097,67197,death,1301499446 +191097,67197,eerie,1301499448 +191097,67197,end of the world,1301499453 +191097,67197,future,1301499457 +191097,67197,sci-fi,1301499465 +191097,67197,stupid hysterical woman,1301499355 +191097,67255,based on a book,1296605812 +191097,67255,Bondage,1296605872 +191097,67255,cinematography,1296605876 +191097,67255,computers,1296605878 +191097,67255,crap ending,1296614132 +191097,67255,dark,1296605882 +191097,67255,flat chested protagonist,1296606026 +191097,67255,foreign language,1296605885 +191097,67255,hacker,1296605887 +191097,67255,hackers,1296605888 +191097,67255,lack of imagination,1296605893 +191097,67255,not enough nudity,1296606742 +191097,67255,racism,1296605896 +191097,67255,rape,1296605899 +191097,67255,real hackers don't use macs,1296605921 +191097,67255,Sweden,1296605904 +191097,67255,Ugly main character,1296606746 +191097,67255,ugly woman,1296606747 +191097,67255,unsexy sex scenes,1296606748 +191097,67255,violence,1296613672 +191097,67695,Angry,1296343021 +191097,67695,Anna Faris,1296343030 +191097,67695,Bad direction,1296343060 +191097,67695,dark comedy,1296343033 +191097,67695,Hateful,1296343036 +191097,67695,mean-spirited,1296343039 +191097,67695,Racism,1296343040 +191097,67695,Seth Rogen,1296343048 +191097,67695,Unlikable protagonist,1296343062 +191097,67734,Bill Hader,1296028792 +191097,67734,bordering on girly,1296028790 +191097,67734,funny,1296028796 +191097,67734,Greg Mottola,1296028798 +191097,67734,Jesse Eisenberg,1296028801 +191097,67734,Kristen Stewart,1296028803 +191097,67734,Martin Starr,1296028805 +191097,67734,nihilism,1296028807 +191097,67734,quirky,1296028809 +191097,67734,Ryan Reynolds,1296028811 +191097,68237,artificial intelligence,1296357982 +191097,68237,cloning,1296357984 +191097,68237,death,1296357986 +191097,68237,dystopia,1296357988 +191097,68237,future,1296357989 +191097,68237,hallucination,1296357991 +191097,68237,isolation,1296357993 +191097,68237,Kevin Spacey,1296357995 +191097,68237,moon,1296357998 +191097,68237,psychology,1296358008 +191097,68237,robot,1296358010 +191097,68237,Sam Rockwell,1296358012 +191097,68237,Sci-fi,1296358014 +191097,68237,science,1296358016 +191097,68237,solitude,1296358017 +191097,68237,space,1296358019 +191097,68237,technology,1296358022 +191097,68237,twist ending,1296358024 +191097,68324,pornstars,1299385617 +191097,68612,gay,1296282427 +191097,68612,homophobia,1296282429 +191097,68612,queer,1296282424 +191097,68952,Alison Lohman,1296026969 +191097,68952,cat killing,1296026979 +191097,68952,Edge of your seat,1296026984 +191097,68952,engaging,1296026989 +191097,68952,funny,1296026998 +191097,68952,horror,1296026993 +191097,68952,occult,1296027057 +191097,68952,old school horror,1296027001 +191097,68952,tongue-in-cheek,1296027009 +191097,69122,comedy,1295681255 +191097,69122,Drinking,1295681253 +191097,69122,drugs,1295681257 +191097,69122,funny,1295681263 +191097,69122,Heather Graham,1295681267 +191097,69122,Las Vegas,1295681275 +191097,69122,Nudity (Topless),1295681277 +191097,69122,strippers,1295681282 +191097,69604,anti-gun,1300343134 +191097,69604,anti-reigion,1300343121 +191097,69604,antichristian,1300343112 +191097,69604,eccentricity,1300342507 +191097,69604,gay,1300342547 +191097,69604,intellectual,1300342567 +191097,69604,Larry David,1300342511 +191097,69604,love,1300343216 +191097,69604,May-December romance,1300342513 +191097,69604,New York City,1300342517 +191097,69604,philosophical,1300342604 +191097,69604,physics,1300342535 +191097,69604,Woody Allen,1300343168 +191097,69981,based on a book,1295676141 +191097,69981,based on a true story,1295676144 +191097,69981,prostitution,1295676146 +191097,69981,true story,1295676149 +191097,70015,misogyny,1296578993 +191097,70015,sexism,1296543342 +191097,70032,black comedy,1296873720 +191097,70032,corporate America,1296873729 +191097,70032,dark comedy,1296873731 +191097,70032,depressing,1296873782 +191097,70032,despair,1296873762 +191097,70032,dystopia,1296873736 +191097,70032,off-beat comedy,1296873749 +191097,70032,quirky,1296873750 +191097,70032,satire,1296873752 +191097,70032,social commentary,1296873705 +191097,70032,social control,1296873828 +191097,70286,aliens,1418405684 +191097,70286,alternate history,1418405704 +191097,70286,atmospheric,1418405709 +191097,70286,intelligent,1418405702 +191097,70286,intelligent sci-fi,1418405691 +191097,70286,sci-fi,1418405689 +191097,70286,violence,1418405697 +191097,70599,based on a book,1296345336 +191097,70599,book is better,1296345333 +191097,70599,chick flick,1296345439 +191097,70599,Eric Bana,1296345338 +191097,70599,fate,1296345341 +191097,70599,great book pathetic film,1296345414 +191097,70599,Hailey McCann,1296345349 +191097,70599,Rachel McAdams,1296345355 +191097,70599,Ron Livingston,1296345359 +191097,70599,scifi,1296345374 +191097,70599,time travel,1296345368 +191097,70607,biker dyke,1301792774 +191097,70607,bright red hair,1301792859 +191097,70607,bukkake scene,1301796038 +191097,70607,bull dyke,1301790754 +191097,70607,campy,1301801268 +191097,70607,extended nudity,1301801146 +191097,70607,funny,1301796117 +191097,70607,gore,1301790834 +191097,70607,great fx,1301801190 +191097,70607,gross out,1301796053 +191097,70607,Kick-Butt Women,1301801223 +191097,70607,kickass,1301801216 +191097,70607,midgets,1301792763 +191097,70607,monster,1301792808 +191097,70607,Nudity (Full Frontal),1301790831 +191097,70607,Nudity (Topless),1301792757 +191097,70607,puke,1301801154 +191097,70607,sexy girls,1301792832 +191097,70607,T&A,1301801115 +191097,70607,Tromaesque,1301801134 +191097,70607,ugly female lead,1301792796 +191097,70607,Violence towards dogs,1301796077 +191097,70607,violent,1301796124 +191097,70607,vomit,1301801159 +191097,71057,creepy,1296267704 +191097,71057,dark,1296267705 +191097,71057,dark fantasy,1296267708 +191097,71057,dystopia,1296267710 +191097,71057,Elijah Wood,1296267712 +191097,71057,giant robots,1296267714 +191097,71057,good versus evil,1296267717 +191097,71057,Jennifer Connelly,1296267720 +191097,71057,post-apocalyptic,1296267723 +191097,71057,predictable,1296267725 +191097,71057,robots,1296267726 +191097,71057,sci-fi,1296267728 +191097,71057,surreal,1296267729 +191097,71057,survival,1296267732 +191097,71057,weak characters,1296267784 +191097,71057,weak story,1296267786 +191097,71131,Christianity,1295681750 +191097,71131,current events,1432831517 +191097,71131,documentary,1295681754 +191097,71131,gay,1295681757 +191097,71131,homophobia,1295681761 +191097,71131,Louis Theroux,1295681767 +191097,71205,cult film,1348684356 +191097,71205,dark comedy,1348684357 +191097,71205,funny,1348684395 +191097,71205,high school,1348684396 +191097,71205,lesbian subtext,1348684400 +191097,71205,Megan Fox,1348684402 +191097,71205,one of a kind,1348684370 +191097,71205,ridiculous,1348684409 +191097,71205,sexy,1348684411 +191097,71205,weird,1348684413 +191097,71248,adultery,1441255441 +191097,71248,black comedy,1301283841 +191097,71248,con artists,1441255404 +191097,71248,dry funny,1301283882 +191097,71248,dry humor,1301283870 +191097,71248,funny,1301283874 +191097,71248,Gene Simmons,1301283855 +191097,71248,hilarious,1301284020 +191097,71248,infidelity,1441255435 +191097,71248,Kristen Wiig,1301283844 +191097,71248,Mike Judge,1301283858 +191097,71248,Mila Kunis,1301283846 +191097,71248,satirical,1301284033 +191097,71379,bad acting,1296344300 +191097,71379,Boring,1296344302 +191097,71379,demon possession,1296344307 +191097,71379,handcam-real style,1296344310 +191097,71379,Handycam,1296344313 +191097,71379,no payoff,1296344317 +191097,71379,not horror,1296344319 +191097,71379,not scary,1296344323 +191097,71379,over-hyped,1296344327 +191097,71379,scary,1296344336 +191097,71379,slow,1296344333 +191097,71379,unrealistic,1296344338 +191097,71450,awful truth,1295678855 +191097,71450,business,1295678859 +191097,71450,capitalism,1295678862 +191097,71450,documentary,1295678868 +191097,71450,globalisation,1295678872 +191097,71450,goverment lies,1295678874 +191097,71450,rich and poor,1295678881 +191097,71464,bad ending,1305408978 +191097,71464,black comedy,1305408982 +191097,71464,black humour,1305408983 +191097,71464,Bleak,1305408985 +191097,71464,coen brothers,1305408987 +191097,71464,comedy,1305408989 +191097,71464,dark comedy,1305408990 +191097,71464,hilarious,1305409001 +191097,71464,Jewish,1305408974 +191097,71464,jews,1305408970 +191097,71464,judaism,1305409007 +191097,71464,open ending,1305409004 +191097,71464,Philosophical,1305409010 +191097,71464,suburbia,1305409013 +191097,71464,Yiddish,1305409016 +191097,71484,amazing animation,1299380498 +191097,71484,Amazing Cinematography,1299380490 +191097,71484,animation,1299380430 +191097,71484,boring,1299380449 +191097,71484,dystopia,1299380432 +191097,71484,dystopic future,1299380434 +191097,71484,Juliette Lewis,1299380436 +191097,71484,poor execution,1299380470 +191097,71484,weak plot,1299380461 +191097,71530,action,1321066143 +191097,71530,alternate reality,1321066084 +191097,71530,androids,1321066089 +191097,71530,bad ending,1321066092 +191097,71530,bad plot,1321066115 +191097,71530,bad science,1321066095 +191097,71530,boston,1321066140 +191097,71530,Bruce Willis,1321066122 +191097,71530,cliche,1321066151 +191097,71530,comic book,1321066154 +191097,71530,dystopia,1321066099 +191097,71530,explosions,1321066137 +191097,71530,future,1321066128 +191097,71530,identity,1321066109 +191097,71530,predictable,1321066165 +191097,71530,robots,1321066102 +191097,71530,sci-fi,1321066103 +191097,71530,special effects,1321066134 +191097,71530,surreal,1321066105 +191097,71530,technology,1321066106 +191097,71535,Bill Murray,1296747211 +191097,71535,campy,1296747213 +191097,71535,dark comedy,1296747219 +191097,71535,no nudity,1296747264 +191097,71535,no sex scenes,1296747266 +191097,71535,post-apocalyptic,1296747228 +191097,71535,predictable ending,1296747231 +191097,71535,stylized violence,1296747241 +191097,71535,teen,1296747244 +191097,71535,underdeveloped characters,1296747246 +191097,71535,violence,1296747248 +191097,71535,zombies,1296747250 +191097,71817,beer,1418524533 +191097,71817,business,1418524535 +191097,72393,abduction,1322532863 +191097,72393,alaska,1322532865 +191097,72393,aliens,1322532867 +191097,72393,fbi,1322532921 +191097,72393,Mila Jovovich,1322532889 +191097,72393,Milla Jovovich,1322532860 +191097,72393,scary,1322532895 +191097,72395,fatties,1321066810 +191097,72395,Gabourey Sidibe,1321066562 +191097,72395,gritty,1321066565 +191097,72395,human garbage,1321066751 +191097,72395,intense,1321066567 +191097,72395,Mariah Carey,1321066572 +191097,72395,Paula Patton,1321066824 +191097,72395,welfare,1321066879 +191097,72407,adapted from:book,1295675255 +191097,72407,Ashley Greene,1295675221 +191097,72407,bad acting,1295675248 +191097,72407,bad cgi,1295675211 +191097,72407,based on a book,1295675216 +191097,72407,dumb,1296459673 +191097,72407,formulaic,1296459668 +191097,72407,Kristen Stewart,1295675227 +191097,72407,porn for women,1296459658 +191097,72712,Fluffy,1435346544 +191097,72712,industrial design,1435346553 +191097,72787,black comedy,1296344141 +191097,72787,british,1296344143 +191097,72787,misogyny,1296344167 +191097,72787,zombies,1295499085 +191097,73106,Beth Behrs,1348684513 +191097,73106,Nudity (Topless - Notable),1348684523 +191097,73106,Nudity (Topless),1348684524 +191097,73211,bad science,1322532381 +191097,73211,based on a book,1322532350 +191097,73211,boring,1322532352 +191097,73211,character driven,1322532359 +191097,73211,disappointing,1322532361 +191097,73211,disease,1322532369 +191097,73211,nothing happens,1322532393 +191097,73211,simple,1322532419 +191097,73211,zombies,1322532427 +191097,73266,funny,1305923411 +191097,73266,love,1305923395 +191097,73266,teenagers,1305923400 +191097,74152,cerebral,1301121334 +191097,74152,funny,1301121344 +191097,74152,stand-up comedy,1296967480 +191097,74152,Zach Galifianakis,1301121327 +191097,74228,atmospheric,1322532976 +191097,74228,autism,1322532982 +191097,74228,cerebral,1322532984 +191097,74228,gore,1322532988 +191097,74228,Greek mythology,1322533038 +191097,74228,grim,1322532993 +191097,74228,gripping,1322532995 +191097,74228,guilt,1322533035 +191097,74228,mystery,1322532998 +191097,74228,sci fi,1322533000 +191097,74228,scifi,1322533002 +191097,74228,single mother,1322533005 +191097,74228,strong female lead,1322533009 +191097,74228,Surreal,1322533014 +191097,74228,time loop,1322533017 +191097,74228,time travel,1322533020 +191097,74228,twist ending,1322533023 +191097,74228,twists & turns,1322533025 +191097,74228,visual style,1322533027 +191097,74275,gay,1297315405 +191097,74275,Gay Lead Character,1297315407 +191097,74275,gay romance,1297315410 +191097,74275,Gay sex,1297315411 +191097,74275,homosexual,1297315413 +191097,74275,queer,1297315417 +191097,74458,asylum,1296026157 +191097,74458,atmospheric,1296026159 +191097,74458,insanity,1296026152 +191097,74458,plot twist,1296026142 +191097,74458,psychological,1296026133 +191097,74458,stylized,1296026126 +191097,74458,twist ending,1296026123 +191097,74573,bad ending,1305416368 +191097,74573,black comedy,1305416348 +191097,74573,bleak,1305416330 +191097,74573,Brittany Snow,1305416321 +191097,74573,funny,1305416335 +191097,74573,infidelity,1305416355 +191097,74677,activism,1348685241 +191097,74677,Critical thinking,1348685243 +191097,74677,free to download,1348685245 +191097,74677,Message,1348685247 +191097,74677,morality,1348685249 +191097,74677,political satire,1348685252 +191097,74677,social commentary,1348685254 +191097,74685,better than original,1348685203 +191097,74685,better than the old version,1348685191 +191097,74685,contamination,1348685143 +191097,74685,survival,1348685168 +191097,74685,virus,1348685170 +191097,74685,zombies,1348685173 +191097,74750,Catholicism,1298779534 +191097,74750,claustrophobic,1298779460 +191097,74750,demon possession,1298779516 +191097,74750,DEMONIC POSSESSION,1298779509 +191097,74750,good ending,1298779555 +191097,74750,Manuela Velasco,1298779467 +191097,74750,priest,1298779495 +191097,74750,zombies,1298779473 +191097,74946,Alice Eve,1349054091 +191097,74946,bromantic comedy,1349054008 +191097,74946,hottie,1349054022 +191097,74946,Krysten Ritter,1349054045 +191097,74946,Pittsburgh,1349054028 +191097,74967,Pittsburgh,1418421267 +191097,75395,Emma Bell,1297312242 +191097,75395,funny,1297311336 +191097,75395,gore,1297311325 +191097,75395,gory,1297315279 +191097,75395,no nudity,1297311366 +191097,75395,no sex scenes,1297311368 +191097,75395,psychological,1297312218 +191097,75395,Psychological horror,1297312235 +191097,75395,sappy,1297314227 +191097,75395,survival horror,1297311376 +191097,75404,cheesy,1296707723 +191097,75404,funny,1296707573 +191097,75404,gay kiss,1296707627 +191097,75404,gore,1296707580 +191097,75404,homophobia,1296707620 +191097,75404,Janette Armand,1296707586 +191097,75404,no nudity,1296707838 +191097,75404,political,1296707649 +191097,75404,preachy,1296707636 +191097,75404,pro-gay,1296707611 +191097,75404,sexy leading lady,1296707670 +191097,75404,zombies,1296707584 +191097,75813,academia,1300242554 +191097,75813,DRUG TRADE,1300241048 +191097,75813,drugs,1300241032 +191097,75813,Edward Norton,1300240315 +191097,75813,good plot,1300240368 +191097,75813,intellectual,1300240958 +191097,75813,intellectuals,1300242538 +191097,75813,jews,1300242631 +191097,75813,noodling,1300242524 +191097,75813,not a comedy,1300242583 +191097,75813,philosophy,1300240965 +191097,75813,poetry,1300242496 +191097,75813,poets,1300242490 +191097,75813,quirky,1300240383 +191097,75813,unique,1300240376 +191097,75813,weed,1300240322 +191097,76077,1980s,1296963935 +191097,76077,acting,1296963938 +191097,76077,alternate reality,1296963941 +191097,76077,back to the future,1296963943 +191097,76077,Chevy Chase,1296963947 +191097,76077,cliche,1296968979 +191097,76077,Direction,1296963953 +191097,76077,drinking,1296963955 +191097,76077,drugs,1296963960 +191097,76077,few funny scenes,1296963963 +191097,76077,few nice laughs,1296963966 +191097,76077,not funny,1296968944 +191097,76077,predictable,1296968990 +191097,76077,quantum leaping,1296963976 +191097,76077,time travel,1296963976 +191097,76210,Hookers,1418412641 +191097,76210,Kat Dennings,1418412630 +191097,76210,Sandra Oh,1418412621 +191097,76293,funny,1296346157 +191097,76293,Mila Kunis,1296346182 +191097,76293,sexy girls,1296346229 +191097,76293,Steve Carell,1296346200 +191097,76293,strippers,1296346211 +191097,76293,Tina Fey,1296346197 +191097,76718,zombies,1301844914 +191097,77233,Economics,1433707186 +191097,77233,Markets,1433707188 +191097,77427,bad acting,1295677654 +191097,77427,body horror,1295677650 +191097,77427,experiment,1295677672 +191097,77427,science,1295677670 +191097,77427,sick,1295677666 +191097,77774,The World's Last Super Hero,1296346124 +191097,77944,advertising,1448075280 +191097,77944,Fluff,1448075301 +191097,78160,Stand Up,1296967317 +191097,78160,Stand up Comedy,1296967333 +191097,78160,stand-up comedy,1296967300 +191097,78162,stand-up comedy,1296967367 +191097,78517,comedians,1298066475 +191097,78517,show business,1298066504 +191097,78544,stand-up comedy,1296967350 +191097,78574,adapted from:book,1321066408 +191097,78574,authenticity,1321066466 +191097,78574,characters,1321066468 +191097,78574,cinematography,1321066412 +191097,78574,neo noir,1321066422 +191097,78574,realism,1321066452 +191097,78574,rural,1321066455 +191097,78574,slow,1321066457 +191097,78574,thriller,1321066461 +191097,78574,white trash,1321066462 +191097,78612,nude black women,1299389407 +191097,78772,based on a book,1296459380 +191097,78772,chick flick,1296459433 +191097,78772,formulaic,1296459383 +191097,78772,juvanile,1296459465 +191097,78772,Kristen Stewart,1296459386 +191097,78772,porn for women,1296459415 +191097,78772,scenery,1296459393 +191097,78772,stupid main character,1296459397 +191097,78967,70s,1433727844 +191097,78967,based on a book,1433727803 +191097,78967,Brief Nudity,1433727834 +191097,78967,H.G. Wells,1433727805 +191097,78967,mad scientist,1433727808 +191097,79158,bad plot,1349586299 +191097,79158,homosexuality,1349586339 +191097,79158,zombies,1349586297 +191097,79293,action,1296344433 +191097,79293,Angelina Jolie,1296344431 +191097,79293,boring,1296344445 +191097,79293,cliche,1296344447 +191097,79318,depressing,1296364158 +191097,79318,sad,1296364150 +191097,79318,thin plot,1296364207 +191097,79357,cinematography,1348688287 +191097,79357,coming of age,1348688289 +191097,79357,confusing,1348688292 +191097,79357,divorce,1348688294 +191097,79357,flashbacks,1348688296 +191097,79357,immortality,1348688298 +191097,79357,nonlinear,1348688301 +191097,79357,sci-fi,1348688311 +191097,79357,style over substance,1348688315 +191097,79702,based on a comic,1300342297 +191097,79702,boring,1300342421 +191097,79702,childish,1300342417 +191097,79702,fantasy,1300342399 +191097,79702,fight scenes,1300342308 +191097,79702,Gay,1300342373 +191097,79702,juvenile,1300342292 +191097,79702,music is key to story (not Musical genre),1300342354 +191097,79702,sexy girls,1300342441 +191097,79702,visually appealing,1300342338 +191097,79879,3d,1298782086 +191097,79879,3D version,1298782092 +191097,79879,Elisabeth Shue,1298782111 +191097,79879,Stereoscopic 3-D,1298782099 +191097,80549,California,1305505629 +191097,80549,clique,1305505640 +191097,80549,closeted homosexual,1305505625 +191097,80549,comedy,1305505642 +191097,80549,Emma Stone,1305505644 +191097,80549,funny,1305505656 +191097,80549,Gay Character,1305505706 +191097,80549,Gay Lead Character,1305505614 +191097,80549,high school,1305505661 +191097,80549,satire,1305505665 +191097,80549,sexuality,1305505668 +191097,80549,virginity,1305505673 +191097,80549,witty,1305505674 +191097,80727,porn industry,1298781866 +191097,80727,pornography,1298781860 +191097,80727,The Internet,1298781851 +191097,80831,1980s,1322532193 +191097,80831,atmospheric,1322532193 +191097,80831,based on a book,1322532196 +191097,80831,bittersweet,1322532199 +191097,80831,bullying,1322532206 +191097,80831,coming of age,1322532201 +191097,80831,dark,1322532204 +191097,80831,excellent cinematography,1322532211 +191097,80831,flash forward,1322532215 +191097,80831,friendship,1322532218 +191097,80831,horror,1322532221 +191097,80831,identical remake,1322532224 +191097,80831,middle school,1322532231 +191097,80831,remake,1322532233 +191097,80831,vampire,1322532243 +191097,80831,vampires,1322532245 +191097,80862,fake,1296343151 +191097,80906,business,1418416136 +191097,80906,corruption,1418416118 +191097,80906,documentary,1418416126 +191097,80906,economics,1418416144 +191097,80906,investor corruption,1418416141 +191097,80906,truth,1418416138 +191097,80917,aliens,1300000402 +191097,80917,annoying soundtrack,1300000039 +191097,80917,bad dialogue,1299999991 +191097,80917,boring,1299999955 +191097,80917,love story,1299999967 +191097,80917,mexico,1300000081 +191097,80917,Misrepresented,1299999939 +191097,80917,no action,1299999973 +191097,80917,nonsensical,1299999977 +191097,80917,not realistic,1300000007 +191097,80917,not science fiction,1299999950 +191097,80917,nothing happens,1299999960 +191097,80917,romance,1299999931 +191097,80917,social commentary,1300000209 +191097,80917,spanish dialogue,1300000363 +191097,80917,unsympathetic characters,1300000065 +191097,80969,atmospheric,1301786166 +191097,80969,bad adaptation,1301786332 +191097,80969,bad screenplay,1301786325 +191097,80969,bad script,1301786318 +191097,80969,based on a book,1301786125 +191097,80969,boring,1301786177 +191097,80969,chick flick,1301786203 +191097,80969,chick movie,1301786210 +191097,80969,child character,1301786435 +191097,80969,children,1301786420 +191097,80969,depressing,1301786236 +191097,80969,England,1301786241 +191097,80969,great concept,1301786306 +191097,80969,Keira Knightley,1301786246 +191097,80969,love story,1301786185 +191097,80969,nonsensical,1301786465 +191097,80969,not science fiction,1301786194 +191097,80969,Nudity (Topless - Brief),1301786355 +191097,80969,pornography,1301786683 +191097,80969,sad,1301786239 +191097,80969,sex scenes,1301786401 +191097,80969,sexuality,1301786373 +191097,80969,slow,1301786263 +191097,80969,slow and predictable plot,1301786271 +191097,80969,stark,1301786171 +191097,81156,amazing stunts,1301785092 +191097,81156,crude humor,1301784958 +191097,81156,dick and fart humor,1301785100 +191097,81156,funny,1301784973 +191097,81156,funny pranks,1301784968 +191097,81156,puking,1301784976 +191097,81156,stunts,1301784963 +191097,81156,Vulgar,1301785106 +191097,81156,Vulgarity,1301785112 +191097,81180,annoying characters,1298524795 +191097,81180,bad acting,1298524553 +191097,81180,bad plot,1298524744 +191097,81180,bad script,1298524737 +191097,81180,good cinematography,1298524546 +191097,81180,good special effects,1298524622 +191097,81180,illogical,1298524563 +191097,81180,no nudity,1298524647 +191097,81180,sex scene,1298524662 +191097,81191,depressing,1300075492 +191097,81191,injustice,1300075455 +191097,81191,sad,1300075499 +191097,81562,drama,1295674287 +191097,81562,music,1295674270 +191097,81562,nature,1295674272 +191097,81562,true story,1295674275 +191097,81562,Utah,1295674281 +191097,81591,atmospheric,1348684241 +191097,81591,Cinematography,1431839886 +191097,81591,creepy,1348684243 +191097,81591,dark,1348684245 +191097,81591,gruesome,1348684248 +191097,81591,insanity,1348684250 +191097,81591,lesbian,1431839849 +191097,81591,lesbians,1431839847 +191097,81591,mental illness,1348684252 +191097,81591,Mila Kunis,1431839833 +191097,81591,Natalie Portman,1348684254 +191097,81591,New York City,1348684256 +191097,81591,psychological,1348684259 +191097,81591,sex,1348684261 +191097,81591,stylized,1348684266 +191097,81591,surreal,1348684265 +191097,81591,visceral,1348684268 +191097,81591,Winona Ryder,1348684271 +191097,81791,Ending,1296344882 +191097,81791,groupies,1295675367 +191097,81791,Nudity (Topless),1295674670 +191097,81791,pole dancers,1296344875 +191097,81791,sexy girls,1296346333 +191097,81791,sparse dialog,1295675522 +191097,81791,strippers,1295674619 +191097,81932,big hair,1296619647 +191097,81932,boxing,1296619690 +191097,81932,chick fight,1296621450 +191097,81932,controlling mother,1296622929 +191097,81932,crackhead,1296621474 +191097,81932,drug addict,1296619809 +191097,81932,human garbage,1296619934 +191097,81932,Massachusetts,1296619680 +191097,81932,no nudity,1297401637 +191097,81932,no sex scenes,1297401657 +191097,81932,poisionous family,1296622967 +191097,81932,police brutality,1296620088 +191097,81932,prostitution,1296619895 +191097,81932,sexy girls,1296619666 +191097,81932,sexy redhead,1296619852 +191097,81932,sports,1296619675 +191097,81932,true story,1296619672 +191097,81932,white trash,1296619645 +191097,82095,Acting,1296344551 +191097,82095,Alien Invasion,1296344545 +191097,82095,boring,1296344548 +191097,82095,Brittany Daniel,1296344555 +191097,82095,hot girls!,1296344596 +191097,82095,just not good,1296344573 +191097,82095,plot,1296344567 +191097,82095,stupid ending,1296344576 +191097,82167,Anne Hathaway,1299386709 +191097,82366,Funny,1432922203 +191097,82366,Horror,1432922212 +191097,82366,slasher,1432922182 +191097,82366,Topless Nudity,1432922196 +191097,82767,based on a play,1299379992 +191097,82767,boring,1299379915 +191097,82767,death of a child,1299379985 +191097,82767,funny,1299380049 +191097,82767,Nicole Kidman,1299379908 +191097,82767,no nudity,1299379960 +191097,82767,no sex scenes,1299379966 +191097,82767,nothing happens,1299380036 +191097,82767,unsympathetic characters,1299379933 +191097,82857,beautiful scenery,1298402122 +191097,82857,beautifully filmed,1298402133 +191097,82857,boring,1298402110 +191097,82857,cowboy,1298402313 +191097,82857,cowboys,1298402313 +191097,82857,depressing,1298402272 +191097,82857,excessive profanity,1298402066 +191097,82857,little dialogue,1298402258 +191097,82857,nature,1298402043 +191097,82857,sparse dialog,1298402246 +191097,83134,absurd,1434521967 +191097,83134,black comedy,1434521962 +191097,83134,funny,1434521942 +191097,83134,gore,1434521945 +191097,83134,great premise,1434521940 +191097,83134,parody,1434521948 +191097,83134,satire,1434521964 +191097,83180,nuclear war,1418414755 +191097,83270,feminism,1302915895 +191097,83270,feminist,1302915911 +191097,84019,Fluffy,1431557393 +191097,84152,audience intelligence underestimated,1418438835 +191097,84152,Bradley Cooper,1418438756 +191097,84152,cliche,1418438804 +191097,84152,empty,1418438807 +191097,84152,interesting premise,1418438882 +191097,84152,pseudo-intelligent,1418438830 +191097,84152,unfinished storyline,1418438761 +191097,84152,wasted premise potential,1418438788 +191097,84570,Chick Flick,1418414854 +191097,85273,Subtitles,1418414936 +191097,85394,boring,1322532002 +191097,85394,documentary,1322531983 +191097,86290,Bill Hicks,1418414314 +191097,86345,honest,1418421701 +191097,86345,insightful,1418421698 +191097,86345,Louis C.K.,1418421696 +191097,86345,smart,1418421702 +191097,86345,stand-up comedy,1418421694 +191097,86347,hilarious,1349586632 +191097,86347,Louis C.K.,1349586619 +191097,86347,stand-up comedy,1349586622 +191097,86347,witty,1418421732 +191097,86377,Louis C.K.,1349058939 +191097,86377,stand-up comedy,1349058946 +191097,86882,overrated,1418415677 +191097,86882,quirky,1418415595 +191097,86882,Rachel McAdams,1418415691 +191097,86882,Woody Allen,1418415588 +191097,88163,drama,1348684694 +191097,88163,emotional,1348684657 +191097,88163,father daughter relationship,1348684660 +191097,88163,father-son relationship,1348684663 +191097,88163,Julianne Moore,1348684668 +191097,88163,Marisa Tomei,1348684673 +191097,88163,preachy,1348684707 +191097,88163,romantic comedy,1348684680 +191097,88163,Steve Carrell,1348684682 +191097,88248,Mercedes Masohn,1322532577 +191097,88248,zombies,1322532670 +191097,89039,Brit Marling,1348685009 +191097,89039,cinematography,1348685017 +191097,89102,abortion,1432074113 +191097,89102,Based on Book,1432074165 +191097,89102,book was better,1322533102 +191097,89102,Documentary,1432074143 +191097,89102,economics,1432074103 +191097,89102,Science,1432074128 +191097,89343,ATF,1348685533 +191097,89343,FBI,1348685535 +191097,89343,religion,1348685544 +191097,89343,RELIGIOUS ZEALOTRY,1348685546 +191097,89470,bad science,1321068011 +191097,89470,disappointing,1321067980 +191097,89470,disease,1321067962 +191097,89470,hollywood ending,1321067991 +191097,89470,Kate Winslet,1321067966 +191097,89470,unrealistic,1321068003 +191097,90592,Sad as hell,1321071405 +191097,91104,nothing happens,1418416339 +191097,91199,gay,1349057256 +191097,91199,Gay Character,1349057258 +191097,91199,Gay Lead Character,1349057259 +191097,91199,gay relationship,1349057264 +191097,91199,gay romance,1349057266 +191097,91500,dystopia,1418413938 +191097,91500,hot heroine,1418414062 +191097,91500,intense,1418413945 +191097,91500,Jennifer Lawrence,1418413948 +191097,91500,sci-fi,1418414025 +191097,91500,science fiction,1418413943 +191097,92475,Adam Curtis,1348700873 +191097,92535,black comedy,1418421634 +191097,92535,Louis C.K.,1418421632 +191097,92535,stand-up comedy,1418421645 +191097,93840,clever,1348684162 +191097,93840,dark comedy,1348684164 +191097,93840,funny,1348684170 +191097,93840,gore,1348684172 +191097,93840,Nudity (Topless),1348684175 +191097,93840,original,1348684177 +191097,93840,original plot,1348684178 +191097,93840,parody,1348684181 +191097,93840,plot twist,1348684183 +191097,93840,satire,1348684185 +191097,93840,weird,1348684188 +191097,94074,Documentary,1432922428 +191097,94074,musicians,1432922414 +191097,94074,rock and roll,1432922415 +191097,94864,aliens,1418405629 +191097,94864,Charlize Theron,1418405642 +191097,94864,Noomi Rapace,1418412891 +191097,94864,Ridley Scott,1418405635 +191097,94864,sci-fi,1418405658 +191097,94864,scifi,1418405632 +191097,95488,Book Was Better,1434696289 +191097,96655,future,1418415197 +191097,96655,robots,1418415194 +191097,96655,science fiction,1418415202 +191097,96728,cinematography,1431989524 +191097,96728,confusing,1431989527 +191097,96728,Cult,1431989585 +191097,96728,Full Frontal Nudity,1431989554 +191097,96728,Nothing Happens,1431989575 +191097,96728,visually appealing,1431989521 +191097,96834,baseball,1431929943 +191097,96834,Documentary,1431929959 +191097,96919,college,1348686055 +191097,96919,funny,1348686038 +191097,96919,Nudity (Topless),1348686038 +191097,96919,T&A,1348688225 +191097,96921,explicit sex,1348686501 +191097,96921,horror,1348686523 +191097,96921,living dead,1348686514 +191097,96921,zombies,1348686508 +191097,96923,bad cgi,1348686851 +191097,96923,horror comedy,1348686800 +191097,96923,Nudity (Topless),1348686837 +191097,96923,predictable,1348686815 +191097,96923,unrealistic,1348686821 +191097,97010,zombies,1349030157 +191097,97046,campy,1349111835 +191097,97046,funny,1349111800 +191097,97046,low budget,1349111841 +191097,97046,Nudity (Topless),1349111814 +191097,97046,Stoner Movie,1349111824 +191097,97177,Stand Up,1349575560 +191097,97177,stand-up comedy,1349575560 +191097,97643,black comedy,1432053718 +191097,97643,over the top,1432053712 +191097,97643,zombie film,1432053729 +191097,97643,zombies,1432053731 +191097,98975,Body Horror,1433312526 +191097,98975,No Nudity,1433312563 +191097,98975,social commentary,1433312530 +191097,98975,Visually Appealing,1433312545 +191097,99114,brutal,1419041224 +191097,99114,funny,1419041215 +191097,99114,Leonardo DiCaprio,1419041203 +191097,99114,Over the top,1419041227 +191097,99114,Quentin Tarantino,1419041200 +191097,99114,Revenge,1419041210 +191097,99114,social commentary,1419041372 +191097,99114,violence,1419041207 +191097,99114,violent,1419041219 +191097,99114,visually appealing,1419041222 +191097,99437,silly,1440994439 +191097,99437,surreal,1440994441 +191097,99468,Ken Burns,1441140973 +191097,99795,documentary,1431643461 +191097,99795,Nonjudgmental,1431643677 +191097,99795,Nudity,1431643492 +191097,99795,PROSTITUTES,1431643473 +191097,99795,prostitution,1431643474 +191097,99811,Documentary,1432514499 +191097,99811,Life Story,1432514506 +191097,99811,Musician,1432514473 +191097,99994,Extended Nudity,1432258891 +191097,99994,Foreign,1432258871 +191097,99994,Great Cinematography,1432258844 +191097,99994,Mythical,1432258914 +191097,99994,Not Horror,1432258805 +191097,99994,Not Science Fiction,1432258807 +191097,99994,Original,1432258818 +191097,99994,Visually Appealing,1432258855 +191097,100169,documentary,1436505558 +191097,100169,pornography,1436505560 +191097,100194,Irreverent,1431466740 +191097,100194,Not PC,1431466774 +191097,101864,cliche,1419144605 +191097,101864,cliche ending,1419144599 +191097,101864,convoluted,1419144735 +191097,101864,generic sci-fi,1419144705 +191097,101864,idiot plot,1419144698 +191097,101864,interesting concept,1419144575 +191097,101864,nonsensical,1419144681 +191097,101864,Olga Kurylenko,1419144723 +191097,101864,poor acting,1419144648 +191097,101864,post-apocalyptic,1419144581 +191097,101864,Predictable,1419144690 +191097,101864,sci-fi,1419144587 +191097,101864,sentimental,1419144602 +191097,101864,style over substance,1419144669 +191097,101864,thin plot,1419144657 +191097,101864,Tom Cruise,1419144583 +191097,102354,Gay Men,1431927890 +191097,102354,Heather Graham,1431928527 +191097,102354,Lesbians,1431929055 +191097,102354,Not Sexy,1431929759 +191097,102354,Strippers,1431927876 +191097,103249,bad ending,1418413880 +191097,103249,child actors,1418413865 +191097,103249,pandemic,1418413849 +191097,103249,predictable,1418413889 +191097,103249,predictable ending,1418413885 +191097,103249,zombies,1418413837 +191097,103474,Sarcastic,1418415049 +191097,103474,Social Commentary,1418415050 +191097,103572,computers,1432788947 +191097,103572,internet,1432788949 +191097,103572,musicians,1432788951 +191097,103572,technology,1432788952 +191097,103801,Olivia Wilde,1441684187 +191097,104069,honest,1418421678 +191097,104069,Louis C.K,1418421668 +191097,104069,Louis C.K.,1418421676 +191097,104069,relatable,1418421680 +191097,104069,stand-up,1418421683 +191097,104069,stand-up comedy,1418421674 +191097,104339,Lake Bell,1437370080 +191097,104457,funny,1435797756 +191097,104457,horror,1435797749 +191097,104457,slasher,1435797746 +191097,104457,twist,1435797753 +191097,104841,a lot of really bad,1418537099 +191097,104841,acting,1418537045 +191097,104841,alot of really good,1418537097 +191097,104841,bad science,1418537029 +191097,104841,cheesy,1418537036 +191097,104841,cliche characters,1418537119 +191097,104841,Didn't finish,1418537076 +191097,104841,feeble character development,1418537072 +191097,104841,Hollow,1418537069 +191097,104841,overrated,1418537088 +191097,104841,plot,1418537039 +191097,104841,plotless,1418537121 +191097,104841,pointless,1418537116 +191097,104841,predictable,1418537065 +191097,104841,score,1418537139 +191097,105213,pornography,1442636587 +191097,105213,Scarlett Johansson,1442636546 +191097,105519,Amateurish,1432162185 +191097,105519,Apocalypse,1432162360 +191097,105519,Childish,1432163541 +191097,105519,Not Science Fiction,1432164464 +191097,105519,Nuclear War,1432162370 +191097,105519,Philosophy,1432162197 +191097,105519,Sophie Lowe,1432163506 +191097,105630,Funny,1434473003 +191097,105630,Horror,1434473004 +191097,105630,Teen Slasher,1434472999 +191097,106195,Mental Illness,1433263426 +191097,106195,Weak Plot,1433263446 +191097,106487,dystopia,1431101215 +191097,106487,dystopic future,1431101223 +191097,106487,Jennifer Lawrence,1431101213 +191097,106487,visually appealing,1431101227 +191097,106782,based on a book,1430879771 +191097,106782,based on a true story,1430879758 +191097,106782,Funny,1430879760 +191097,106782,Nudity (Full Frontal),1430879755 +191097,106782,Nudity (Topless),1430879737 +191097,106782,prostitution,1430879739 +191097,106782,true story,1430879764 +191097,106782,visually appealing,1430879769 +191097,107052,Feminist,1441669975 +191097,107997,atmospheric,1432580859 +191097,107997,cannibalism,1432580862 +191097,107997,cannibals,1432580865 +191097,107997,children,1432580874 +191097,107997,Horror,1432580901 +191097,107997,Nudity,1432580929 +191097,108727,sexuality,1435882026 +191097,108727,unsimulated sex,1435882020 +191097,108945,Disappointing Remake,1432095819 +191097,108945,science fiction,1432095756 +191097,108945,Special Effects,1432095765 +191097,108945,Weak Plot,1432095793 +191097,109720,Nothing Happens,1431887198 +191097,109720,Predictable,1431887218 +191097,109720,Slow,1431887200 +191097,109720,Zombies,1431887230 +191097,110718,Charming,1431484288 +191097,110718,nudity (topless),1431473742 +191097,110718,Sharon Stone,1431477969 +191097,110718,Sofía Vergara,1431477820 +191097,110718,Threesome,1431483540 +191097,110718,Unrealistic,1431477920 +191097,110718,Woody Allen,1431477901 +191097,111592,zombies,1431098945 +191097,111663,Campy,1432314741 +191097,111663,Extensive Nudity,1432314762 +191097,111663,Funny,1432314743 +191097,111663,T&A,1432314721 +191097,111663,Teen Slasher,1432314699 +191097,111663,Zombies,1432314712 +191097,112469,Aging,1432074259 +191097,112469,Documentary,1432074236 +191097,112469,Musical Theater,1432074224 +191097,112469,Showbusiness,1432074221 +191097,112506,Alanis Morissette,1431818470 +191097,112506,alternate reality,1431818411 +191097,112506,based on a book,1431818404 +191097,112506,Philip K. Dick,1431818402 +191097,112506,sci-fi,1431818445 +191097,112506,Social Commentary,1431818428 +191097,112506,totalitarianism,1431818413 +191097,113252,Funny,1432798121 +191097,113252,No Nudity,1432798118 +191097,113252,Scary,1432798120 +191097,113252,Visually Appealing,1432798134 +191097,113354,Documentary,1432773087 +191097,113354,Music,1432773089 +191097,113775,Jennifer Aniston,1436504324 +191097,113775,Predictable,1436504344 +191097,114392,Bleak,1431830105 +191097,114392,Frontier,1431829805 +191097,114392,Hilary Swank,1431830095 +191097,114392,Indians,1431829973 +191097,114392,Mental Illnesses,1431829735 +191097,114392,nudity (topless),1431830093 +191097,114392,Old West,1431830122 +191097,114392,Pioneers,1431829771 +191097,114392,Redemption,1431830148 +191097,114392,Visually Appealing,1431830107 +191097,115471,Alien Abduction,1431934792 +191097,115471,aliens,1431933903 +191097,115471,Bad Plot,1431937133 +191097,115471,Love Story,1431936763 +191097,115471,Teen Horror,1431934817 +191097,115680,future,1441318502 +191097,115680,sci-fi,1441318507 +191097,115680,surprising,1441318509 +191097,115680,thriller,1441318516 +191097,115680,twist ending,1441318499 +191097,115680,twists,1441318510 +191097,115680,unexpected ending,1441318504 +191097,115680,unique story,1441318512 +191097,116128,Cannibalism,1432343430 +191097,116128,Cooking,1432343458 +191097,116128,Foodie,1432343457 +191097,116128,Heather Graham,1432343454 +191097,116128,Insanity,1432343452 +191097,116128,Lesbian Sex,1432343472 +191097,116128,No Nudity,1432343493 +191097,116307,Chick Flick,1433109431 +191097,116307,Emmy Rossum,1433109416 +191097,116664,Aging,1432058016 +191097,116664,Documentary,1432058018 +191097,116664,Fashion,1432058031 +191097,116664,New York,1432058052 +191097,117180,Stereotypes,1431757713 +191097,117180,Unoriginal,1431757695 +191097,117434,Hollywood,1439103574 +191097,117434,Horror,1439103571 +191097,117434,Slow,1439103566 +191097,117628,Original,1436511314 +191097,117628,Topless Nudity,1436511287 +191097,117932,Black Comedy,1441689708 +191097,117932,Original,1441689740 +191097,117932,Satire,1441689715 +191097,118109,survival,1436511206 +191097,118109,zombies,1436511202 +191097,118786,3D,1418418581 +191097,118786,Grindhouse,1418418573 +191097,118790,Monty Python,1418418969 +191097,118922,Boring,1440971617 +191097,118922,Nothing Happens,1440971615 +191097,121239,movie business,1438293357 +191097,121239,pornography,1438293355 +191097,121277,Aliens,1432421078 +191097,121277,Brief Nudity,1432421137 +191097,121277,No Plot,1432421090 +191097,121277,Stupid Twist Ending,1432421107 +191097,121372,stand up,1431713140 +191097,127188,Cerebral,1439184711 +191097,127188,Dystopian,1439184694 +191097,127188,Near Future,1439183796 +191097,127188,Science Fiction,1439183790 +191097,127188,Visually Appealing,1439183848 +191097,127321,Great Cinematography,1432053644 +191097,127321,Parasite,1432053500 +191097,127321,zombies,1432053487 +191097,130044,Blind Protagonist,1432408501 +191097,130044,Sentimental,1432408518 +191097,130044,Werewolf,1432408486 +191097,131570,About Actors,1432489348 +191097,131570,Cat Run Over,1432448958 +191097,131570,Confusing,1432451755 +191097,131570,Funny,1432448946 +191097,131570,Insanity,1432452119 +191097,131570,Surreal,1432448970 +191097,131620,Cuckold,1434740916 +191097,131620,Identity,1434741100 +191097,131620,Infidelity,1434740945 +191097,131620,Race,1434740929 +191097,132270,Feminist,1441226746 +191097,132616,Not Funny,1435276022 +191097,133285,documentary,1431634448 +191097,133285,freedom of speech,1431634448 +191097,133285,larry flynt,1431634448 +191097,133285,pornography,1431634448 +191097,133285,ron jeremy,1431634448 +191097,133285,supreme court,1431634448 +191097,133285,t&a,1431634448 +191097,133439,Balanced,1431634597 +191097,133439,Documentary,1431634573 +191097,133439,No Agenda,1431634620 +191097,133439,Real,1431634583 +191097,133439,Truthfull,1431634621 +191097,133441,Documentary,1431643633 +191097,133441,Prostitution,1431643615 +191097,133509,Documentary,1431713091 +191097,133509,Japan,1431713088 +191097,133509,Sex,1431713090 +191097,133691,Art,1432074310 +191097,133691,Artists,1432074307 +191097,133691,Comics,1431997907 +191097,133691,Digital Economy,1432074322 +191097,133691,Documentary,1431997945 +191097,133691,Dying Industry,1431997947 +191097,133729,80s Slasher,1432248815 +191097,133729,Campy,1432248845 +191097,133729,Cheesy,1432248822 +191097,133729,Funny,1432248844 +191097,133729,Teen Slasher,1432248819 +191097,133729,Topless Nudity,1432248821 +191097,133731,Supernatural,1432172207 +191097,133800,70s,1432337796 +191097,133800,Britain,1432337784 +191097,133800,Frontal Nudity,1432337777 +191097,133800,Hippies,1432337787 +191097,133800,Horrible Soundtrack,1432337774 +191097,133800,Lesbian Sex Scene,1432337776 +191097,133800,Sparce Dialog,1432337834 +191097,133800,Topless Nudity,1432337779 +191097,133806,Aliens,1432370300 +191097,133806,Genetic Engineering,1432370311 +191097,133806,Science Fiction,1432370290 +191097,133837,Can't See Anything,1432421499 +191097,133837,Found Footage,1432421473 +191097,133837,No Plot,1432421482 +191097,133885,Documentary,1432585593 +191097,133885,Greatful Dead,1432585609 +191097,133885,Hippies,1432585647 +191097,133885,Life Story,1432585666 +191097,133885,Musicians,1432585595 +191097,134103,Abortion,1432677811 +191097,134103,Incest,1432677805 +191097,134103,Junkies,1432677843 +191097,134103,Losers,1432677892 +191097,134103,No Nudity,1432677830 +191097,134103,Strippers,1432677832 +191097,134166,Art,1432843562 +191097,134166,Artist,1432843563 +191097,134166,Documentary,1432843565 +191097,134166,Photography,1432843577 +191097,134248,Biased,1433293669 +191097,134248,Documentary,1433293690 +191097,134248,Fluff,1433293702 +191097,134248,Sex Workers,1433293662 +191097,134581,Inaccurate,1433468926 +191097,134601,Fairuza Balk,1438293696 +191097,135974,T&A,1435480336 +191097,139779,Copycat Movie,1437972428 +191097,141761,Found Footage,1441326329 +191109,318,good,1334567944 +191134,1289,Worst movie ever,1268026775 +191134,8225,zombies,1268024124 +191156,79132,action,1452316623 +191156,111759,action,1452316083 +191156,111759,aliens,1452316081 +191156,111759,sci-fi,1452316076 +191156,111759,time loop,1452316074 +191156,111759,time travel,1452316078 +191156,119145,action,1452315888 +191156,119145,spy,1452315885 +191156,134130,sci-fi,1452314891 +191156,134130,Space,1452314880 +191156,134130,Survival Instinct,1452314883 +191203,1230,comedy,1245192259 +191203,1230,hilarious,1245192254 +191203,1230,Woody Allen,1245192264 +191203,1517,Danger is my middle name,1183930914 +191203,1517,Mike Myers,1183930909 +191203,1517,satire,1183930904 +191203,2502,comedy,1245192084 +191203,2502,hilarious,1245192081 +191203,2683,Hilarious,1245191937 +191203,3535,business,1245192025 +191203,3535,Christian Bale,1245192006 +191203,3535,insanity,1245192012 +191203,3785,stupid,1245192114 +191203,33154,business,1245192039 +191203,33154,corruption,1245192050 +191203,33154,important,1245192045 +191203,33154,money,1245192059 +191203,40583,complicated,1213817766 +191203,40583,Political,1213817764 +191203,46322,duel,1245191883 +191203,46322,Jet Li,1245191892 +191203,46322,Martial Arts,1245191887 +191203,51255,action spoof,1182825223 +191203,52281,Quentin Tarantino,1182464767 +191203,52281,Robert Rodriguez,1182464787 +191203,52973,absolutely hilarious,1182464748 +191203,52973,Seen 2007,1182464753 +191208,260,sci-fi,1438081464 +191208,260,space adventure,1438081467 +191209,46,women,1368100688 +191209,85,secrets,1368101026 +191209,165,vengeance,1368100773 +191209,236,romantic comedy,1368100864 +191209,252,romantic comedy,1368100864 +191209,339,feel good movie,1368101174 +191209,361,feel good movie,1368101174 +191209,492,murder mystery,1368100809 +191209,495,art house,1368100849 +191209,593,exceptional acting,1368101134 +191209,803,relationships,1368100913 +191209,913,highly quotable,1368100954 +191209,942,murder mystery,1368100809 +191209,950,murder mystery,1368100809 +191209,1020,feel good movie,1368101174 +191209,1033,unlikely friendships,1368100747 +191209,1046,glbt,1368101039 +191209,1061,innocence lost,1368100990 +191209,1081,glbt,1368101040 +191209,1090,innocence lost,1368100990 +191209,1104,exceptional acting,1368101135 +191209,1201,moral ambiguity,1368101077 +191209,1266,moral ambiguity,1368101077 +191209,1361,guilt,1368101152 +191209,1396,surveillance,1368101050 +191209,1500,off-beat comedy,1368101065 +191209,1545,childhood,1368101099 +191209,1554,art house,1368100849 +191209,1704,exceptional acting,1368101135 +191209,1719,innocence lost,1368100990 +191209,1732,off-beat comedy,1368101065 +191209,1945,exceptional acting,1368101135 +191209,1950,murder mystery,1368100809 +191209,1956,guilt,1368101152 +191209,2005,childhood,1368101099 +191209,2022,god,1368101122 +191209,2024,god,1368101122 +191209,2076,art house,1368100849 +191209,2117,surveillance,1368101050 +191209,2359,feel good movie,1368101174 +191209,2437,glbt,1368101040 +191209,2724,romantic comedy,1368100864 +191209,2774,glbt,1368101040 +191209,2797,childhood,1368101099 +191209,2804,childhood,1368101099 +191209,3015,doctors,1368101164 +191209,3052,god,1368101122 +191209,3102,murder mystery,1368100809 +191209,3152,innocence lost,1368100990 +191209,3169,secrets,1368101026 +191209,3508,moral ambiguity,1368101077 +191209,3551,secrets,1368101026 +191209,3655,art house,1368100849 +191209,3676,art house,1368100849 +191209,3730,surveillance,1368101050 +191209,3916,feel good movie,1368101174 +191209,4008,innocence lost,1368100990 +191209,4195,doctors,1368101164 +191209,4291,women,1368100688 +191209,4585,doctors,1368101164 +191209,4776,exceptional acting,1368101135 +191209,4814,surveillance,1368101050 +191209,4901,secrets,1368101026 +191209,4973,feel good movie,1368101174 +191209,4979,off-beat comedy,1368101065 +191209,4992,romantic comedy,1368100864 +191209,4995,exceptional acting,1368101135 +191209,5110,off-beat comedy,1368101065 +191209,5266,surveillance,1368101050 +191209,5388,guilt,1368101152 +191209,5388,moral ambiguity,1368101077 +191209,5418,secrets,1368101026 +191209,5690,innocence lost,1368100990 +191209,5971,childhood,1368101099 +191209,6155,romantic comedy,1368100864 +191209,6380,guilt,1368101152 +191209,6768,god,1368101122 +191209,6870,moral ambiguity,1368101078 +191209,6953,guilt,1368101152 +191209,7008,art house,1368100849 +191209,7009,doctors,1368101164 +191209,7018,murder mystery,1368100809 +191209,7386,god,1368101122 +191209,7572,doctors,1368101164 +191209,7938,god,1368101122 +191209,8128,childhood,1368101099 +191209,8667,glbt,1368101040 +191209,8910,off-beat comedy,1368101065 +191209,30810,off-beat comedy,1368101065 +191209,31685,romantic comedy,1368100864 +191209,41997,moral ambiguity,1368101078 +191209,44694,secrets,1368101026 +191209,46578,dysfunctional family,1167021058 +191209,48738,doctors,1368101164 +191209,49278,surveillance,1368101050 +191209,63876,glbt,1368101040 +191209,64622,guilt,1368101152 +191215,260,adventure,1440084714 +191215,260,Space,1440084707 +191239,31600,india,1448126036 +191310,919,colourful,1251098389 +191310,919,heartwarming,1251098373 +191310,919,musical,1251098384 +191310,969,humorous,1251098444 +191310,969,Humphrey Bogart,1251098448 +191310,3949,craziness/shock,1248334040 +191310,8874,slow,1248334040 +191310,50872,cooking,1250911382 +191310,50872,Disney,1250911376 +191310,50872,France,1250911367 +191310,50872,rats,1250911389 +191310,60069,Oscar (Best Animated Feature),1250911459 +191310,60069,post-apocalyptic,1250911451 +191310,60069,quirky,1250911454 +191310,60069,robots,1250911474 +191310,65216,Daniel Craig,1251097997 +191310,65261,environmental,1251097884 +191310,65261,Hayao Miyazaki,1251097879 +191310,69122,Zach Galifinakis,1248344248 +191315,260,far future,1430320938 +191315,260,Science Fiction,1430320924 +191315,260,scifi cult,1430320956 +191315,1653,genetic engineering,1430321174 +191315,1653,genetics,1430321184 +191327,8131,Will Smith,1238352286 +191327,55820,Oscar (Best Picture),1238352152 +191327,55820,twist ending,1238352158 +191327,64614,racism,1238352343 +191327,64716,Will Smith,1238352235 +191327,64957,Oscar (Best Effects - Visual Effects),1238352322 +191377,920,long,1301857743 +191377,4902,dark,1302036160 +191377,4902,excellent characters,1302036162 +191377,4902,excellent plot,1302036165 +191377,4902,ghosts,1302036158 +191377,4902,Guillermo del Toro,1302036156 +191377,5266,David Fincher,1301857844 +191377,5266,Kristen Stewart,1301857846 +191377,6643,characterization,1302156116 +191377,6643,modest,1302156131 +191377,6643,Yasujiro Ozu,1302156104 +191377,30707,Bittersweet,1301851706 +191377,30707,boxing,1301851708 +191377,30707,Clint Eastwood,1301851701 +191377,30707,hillary swank,1301851728 +191377,30707,Morgan Freeman,1301851703 +191377,30707,Oscar (Best Picture),1301851711 +191377,72011,George Clooney,1301851743 +191377,72011,witty,1301851748 +191377,79720,Crime,1301857428 +191377,79720,Guy Pearce,1301857433 +191377,80463,computers,1301850476 +191377,80463,dark comedy,1301850478 +191377,80463,inaccurate,1301850493 +191377,80463,intensity,1301850467 +191377,80463,treachery,1301850469 +191377,80463,writing,1301850472 +191377,81932,Amy Adams,1301851661 +191377,81932,boxing,1301851670 +191377,81932,brothers,1301851686 +191377,81932,chick fight,1301851690 +191377,81932,Christian Bale,1301851668 +191377,81932,cliche,1301851682 +191377,81932,Massachusetts,1301851674 +191377,81932,white trash,1301851677 +191377,84944,adult humor,1301849976 +191377,84944,animation,1301849940 +191377,84944,cowboys,1301849979 +191377,84944,Gore Verbinski,1301849981 +191377,84944,hallucinatory,1301849973 +191377,84944,Johnny Depp,1301849961 +191377,84944,spaghetti western,1301849969 +191377,84944,western,1301849949 +191377,85414,adventure,1301858510 +191377,85414,Duncan Jones,1301858462 +191377,85414,Jake Gyllenhaal,1301858518 +191377,85414,time travel,1301858484 +191378,733,action,1447413795 +191378,1573,action,1447413774 +191378,39446,horor,1447413757 +191380,912,Film Noir,1439998753 +191380,912,World War II,1439998758 +191380,85881,Paul Giamatti,1422840429 +191383,589,action,1428946459 +191383,589,arnold schwarzenegger,1428946459 +191383,589,science fiction,1428946459 +191383,49272,007,1428946295 +191383,49272,action,1428946282 +191383,51662,bravery,1428946338 +191383,51662,mankind,1428946375 +191383,51662,war,1428946367 +191418,1334,campy,1218051851 +191418,1334,monster,1218051847 +191418,6867,friendship,1209166445 +191418,6867,loneliness,1209166448 +191418,6867,small town,1209166441 +191418,6867,trains,1209166450 +191418,34405,action,1258050064 +191418,34405,adventure,1258050066 +191418,34405,black comedy,1258050061 +191418,34405,cult film,1258050075 +191418,34405,quirky,1258050073 +191436,90866,fantasy,1339608811 +191476,5669,Michael Moore,1447100730 +191476,53894,health care,1447100487 +191476,53894,Michael Moore,1447100508 +191476,53894,social commentary,1447100583 +191480,866,lesbian,1169508163 +191480,911,overrated,1173033984 +191480,1180,irsh,1172624865 +191480,2180,flawed,1173134765 +191480,3627,low budget,1174422287 +191480,4720,overrated,1173318561 +191480,5470,Joan Greenwood,1173819399 +191480,5876,good dvd features,1174675282 +191480,5911,concert,1171739771 +191480,5911,post-punk,1171739771 +191480,6852,brutal,1173962132 +191480,25763,supremely sexy,1174431812 +191480,32179,breakthroughs,1175814740 +191480,45880,Pink,1176484096 +191480,78295,60s,1291243078 +191480,78295,scattered,1291243095 +191480,78295,sexist,1291243054 +191480,78295,visually dynamic,1291243024 +191486,260,good vs evil,1433294043 +191486,260,oldie but goodie,1433294063 +191486,74754,absurd,1433294459 +191486,74754,classic,1433294459 +191486,74754,hello doggie,1433294459 +191488,100,Al Pacino,1247277565 +191488,100,politics,1247277563 +191488,111,atmospheric,1247275243 +191488,111,Martin Scorsese,1247275217 +191488,111,Robert De Niro,1247275210 +191488,111,social commentary,1247275224 +191488,431,Al Pacino,1247277614 +191488,955,Cary Grant,1247277682 +191488,955,dialogue driven,1247277826 +191488,955,Katharine Hepburn,1247277782 +191488,955,quirky,1247277706 +191488,955,witty,1247277834 +191488,1252,Film Noir,1247009341 +191488,1252,Jack Nicholson,1247009342 +191488,1252,Roman Polanski,1247009342 +191488,1464,David Lynch,1247009370 +191488,1747,dialogue,1247274890 +191488,1747,Dustin Hoffman,1247274872 +191488,1747,Robert De Niro,1247274877 +191488,1747,satire,1247274930 +191488,1748,atmospheric,1261935274 +191488,1748,clumsy plot development,1261935322 +191488,1748,dark,1261935279 +191488,1748,dystopia,1261935287 +191488,2132,based on a play,1247274739 +191488,2132,dialogue driven,1247274749 +191488,2132,Elizabeth Taylor,1247274754 +191488,2132,great performances,1247274721 +191488,2132,relationships,1248011737 +191488,2132,Richard Burton,1247274712 +191488,2132,superb acting,1247274766 +191488,3068,Paul Newman,1243075174 +191488,3262,David Lynch,1247274978 +191488,3262,Horror,1247275036 +191488,3262,lynch,1247275029 +191488,3262,surreal,1247275023 +191488,3275,vigilantism,1230305898 +191488,3420,Al Pacino,1247277318 +191488,3420,courtroom drama,1247277321 +191488,5619,documentary,1247275078 +191488,5619,history,1247275064 +191488,5619,politics,1247275069 +191488,6530,atmospheric,1247275117 +191488,6530,Roman Polanski,1247275128 +191488,6936,James Caan,1247009360 +191488,6936,zooey deschanel,1247009360 +191488,9018,critique of journalism,1247277544 +191488,9018,documentary,1247277494 +191488,9018,journalism,1247277504 +191488,9018,media politics,1247277531 +191488,27899,bad science,1247275631 +191488,27899,pseudoscience,1247009405 +191488,27899,total bollocks,1247275604 +191488,34111,atheism,1247273777 +191488,34111,compelling argument,1247278254 +191488,34111,history,1247273790 +191488,34111,religion,1247273785 +191488,34111,Sam Harris,1293949755 +191488,34528,Amy Adams,1247277088 +191488,37240,documentary,1247274618 +191488,37240,History,1247274630 +191488,37240,politics,1247274653 +191488,46976,Dustin Hoffman,1247277414 +191488,46976,weak plot,1247277401 +191488,46976,Will Ferrell,1247277379 +191488,51255,british comedy,1247276670 +191488,51255,idiotic turn,1247276719 +191488,55052,imagination,1247277249 +191488,55052,Keira Knightley,1247277227 +191488,56788,Philip Seymour Hoffman,1247277581 +191488,56788,politics,1247277586 +191488,56788,Tom Hanks,1247277589 +191488,58025,silly,1247275851 +191488,58025,terrible plot,1247275867 +191488,59126,atheism,1247277023 +191488,59126,Bill Maher,1247277017 +191488,59126,Documentary,1247277012 +191488,59731,American culture,1247277858 +191488,59731,well written and structured,1247277914 +191488,60126,Anne Hathaway,1247277163 +191488,60126,Steve Carell,1247009366 +191488,61210,idiotic,1247275360 +191488,61210,Ron Perlman,1247275436 +191488,61210,terrible plot,1247275465 +191488,61323,Comedy,1247277659 +191488,61323,John Malkovich,1247277644 +191488,61323,satire,1247277642 +191488,61697,Al Pacino,1247276769 +191488,61697,dissapointing,1247276794 +191488,61697,Robert De Niro,1247276776 +191488,61697,weak plot,1247276836 +191488,61729,Ricky Gervais,1247277151 +191488,64575,Amy Adams,1247276038 +191488,64575,Meryl Streep,1247276043 +191488,64575,moral ambiguity,1247276072 +191488,64575,no culmination,1247276581 +191488,64575,Philip Seymour Hoffman,1247276045 +191488,64614,terrible plot,1247275748 +191488,64999,cheap,1247275535 +191488,64999,rip off,1247275563 +191488,65465,Dustin Hoffman,1247146434 +191488,65465,Emma Thompson,1247146454 +191488,65721,history,1248032806 +191488,65721,settling of accounts with totalitarian regimes,1248033722 +191488,67267,Alan Arkin,1248126753 +191488,67267,Amy Adams,1248126750 +191488,67267,Emily Blunt,1248126744 +191488,68358,action,1243075075 +191488,68358,character problems,1243075061 +191488,68358,pace,1243075083 +191488,68358,plot,1243074956 +191488,68358,plot twist,1243074956 +191488,68358,production,1243074995 +191488,79132,Michael Caine,1293232381 +191513,1093,full frontal nudity,1431056241 +191513,73183,bank robbery,1433141128 +191513,73183,based on a book,1433141128 +191513,73183,drama,1433141128 +191513,78746,b-movie,1431665268 +191513,78746,comedy,1431665268 +191513,78746,documentary,1431665268 +191513,108709,based on a book,1432447860 +191513,108709,iraq war,1432447860 +191513,108709,miniseries,1432447860 +191519,597,girlie movie,1137530586 +191519,1101,action,1137530562 +191519,2671,girlie movie,1137530638 +191519,2991,Bond,1137531729 +191519,3635,Bond,1137531738 +191519,3639,Bond,1137531797 +191519,3996,Japan,1137532381 +191519,5872,Bond,1137531975 +191519,5952,sequel,1137532125 +191519,6377,Pixar,1137532139 +191519,8961,Pixar,1137532214 +191523,6774,cronenberg,1279407101 +191568,26981,christopher lambert,1420921915 +191568,26981,ice-t,1420921915 +191568,26981,prison,1420921915 +191581,50,Kevin Spacey,1158792163 +191581,50,suspense,1158792178 +191581,50,tricky,1158792169 +191581,50,twist ending,1158792166 +191581,318,classic,1158791983 +191581,318,prison,1158791980 +191581,1258,Stanley Kubrick,1158791966 +191581,1258,Stephen King,1158791971 +191581,32587,artistic,1158792986 +191581,32587,Frank Miller,1158792989 +191612,260,futuristic,1437116995 +191612,260,space opera,1437117007 +191612,2002,boring,1437118669 +191612,2002,so stupid it's bad,1437118669 +191612,2002,stupid,1437118669 +191660,260,sci-fi,1434679282 +191660,260,Star Wars,1434679278 +191670,849,Kurt Russell,1337306881 +191670,1967,Adventure,1337306659 +191670,1967,fantasy,1337306657 +191670,1967,surreal,1337306662 +191670,2140,classic,1337306626 +191670,2140,dark,1337306623 +191670,2140,fantasy,1337306620 +191670,2161,Adventure,1337306666 +191670,2161,based on a book,1337306671 +191670,2161,Fantasy,1337306668 +191670,2193,adventure,1337306839 +191670,2193,fantasy,1337306835 +191670,2761,animation,1337306650 +191670,2761,based on a book,1337306654 +191670,2761,robots,1337306647 +191670,2968,action,1337306723 +191670,2968,history,1337306715 +191670,2968,time travel,1337306718 +191670,3489,fantasy,1337306628 +191670,6658,Nudity (Topless - Notable),1337307039 +191670,7104,cult film,1337307211 +191670,76093,animation,1337306641 +191670,76093,based on a book,1337306644 +191670,76093,fantasy,1337306639 +191670,90746,animation,1337306592 +191670,90746,comic book,1337306611 +191670,90746,pirates,1337306744 +191670,90746,Steven Spielberg,1337306603 +191674,1207,from the view of children,1176293907 +191674,1216,music sucks,1251107534 +191674,7382,from the view of children,1176723216 +191674,27869,impressive but with a lot of pathos,1179697455 +191674,31437,meditative,1176293960 +191674,69644,2D characters,1246964332 +191674,69644,emotionless,1246964114 +191674,69644,lacks logic,1246964356 +191674,69784,tasteless,1247570311 +191711,919,classic,1428949902 +191711,130634,not for kids,1428943679 +191711,130634,terrible dialogue,1428943679 +191711,130634,waste of time,1428943679 +191714,6188,comedy,1427607086 +191714,6188,Nudity (Topless),1427607096 +191714,76093,adventure,1427607155 +191714,76093,Excellent Animation,1427607149 +191714,76093,fantasy,1427607163 +191714,76093,friendship,1427607156 +191714,81845,based on a true story,1427606881 +191714,81845,drama,1427606886 +191714,81845,feel-good,1427606901 +191714,81845,therapy,1427606896 +191714,81847,fairy tale,1427607269 +191714,81847,visually appealing,1427607265 +191714,106920,beautiful,1427607009 +191714,106920,bittersweet,1427607002 +191714,106920,meaning of life,1427607018 +191714,106920,philosophical,1427607005 +191714,106920,transhumanism,1427607015 +191714,112175,dragons,1427607200 +191714,112175,life shocks,1427607237 +191714,112175,sequel,1427607201 +191720,92008,spy,1426706439 +191728,2628,fantasy,1355372251 +191728,2628,George Lucas,1355372224 +191728,2628,robots,1355372247 +191728,2628,sci-fi,1355372245 +191728,6874,mafia,1351111714 +191728,33493,prequel,1339801510 +191728,33493,whiney protagonist,1339801524 +191728,54286,action,1355372307 +191728,54286,spy thriller,1355372305 +191728,55908,dialogue,1339598279 +191728,55908,philosophical,1340132155 +191728,55908,Underrated,1340132165 +191728,58559,Atmospheric,1339542800 +191728,58559,corruption,1339542806 +191728,58559,Heath Ledger,1339542797 +191728,68954,bittersweet,1355374041 +191728,78893,characters,1339598609 +191728,78893,good idea,1339598620 +191728,78893,M. Night Shyamalan,1339598604 +191728,90717,crude humor,1346206634 +191728,90717,Eddie Murphy,1346206645 +191728,90717,heist,1346206630 +191728,94959,Cat,1343927891 +191728,94959,Wes Anderson,1343927887 +191743,1281,political,1441364882 +191743,7386,Religion,1441364977 +191748,260,space action,1433271627 +191748,260,space adventure,1433271608 +191764,260,action,1431597768 +191764,260,great story,1431597755 +191768,3970,Lovecraftian mythology,1292339350 +191768,79251,questionable explotation,1292338194 +191768,79251,shocking,1292338194 +191768,79251,transgressive,1292338194 +191825,2567,San Francisco,1264668713 +191847,260,interesting,1441222701 +191847,260,masterpiece,1441222695 +191881,260,Boring,1433102880 +191881,260,entertaining,1433102895 +191881,296,fun,1433103934 +191881,296,masterpiece,1433103934 +191881,296,nice time,1433103934 +191881,93838,awesome martial arts,1433103737 +191883,1073,brilliant,1241392070 +191883,1073,classic,1241392074 +191883,1073,cult film,1241392076 +191883,1211,dreamlike,1241392048 +191883,1211,enigmatic,1241392034 +191883,1211,meditative,1241392050 +191883,1211,poetic,1241392042 +191883,1211,surreal,1241392039 +191898,80241,jason sudeikis,1309300185 +191910,19,detective,1368372935 +191910,22,detective,1368372935 +191910,22,suspenseful,1368372689 +191910,25,melancholic,1368372263 +191910,39,teen movie,1368372640 +191910,47,great ending,1368372839 +191910,50,excellent script,1368372431 +191910,111,masterpiece,1368372353 +191910,218,unlikely friendships,1368372894 +191910,296,masterpiece,1368372353 +191910,318,great ending,1368372839 +191910,527,poignant,1362017199 +191910,549,musicians,1368372618 +191910,587,supernatural,1368372396 +191910,593,excellent script,1368372430 +191910,724,teen movie,1368372640 +191910,799,supernatural,1368372396 +191910,898,screwball comedy,1368373012 +191910,904,suspenseful,1368372689 +191910,910,screwball comedy,1368373012 +191910,913,noir thriller,1368372314 +191910,923,masterpiece,1368372353 +191910,1033,unlikely friendships,1368372894 +191910,1088,dancing,1368372820 +191910,1089,original,1368372199 +191910,1179,neo-noir,1368372797 +191910,1188,dancing,1368372820 +191910,1210,great ending,1368372839 +191910,1213,stylish,1368372459 +191910,1219,suspenseful,1368372689 +191910,1245,neo-noir,1368372797 +191910,1248,noir thriller,1368372314 +191910,1249,stylish,1368372460 +191910,1258,masterpiece,1368372353 +191910,1264,stylish,1368372459 +191910,1359,so bad it's good,1352897595 +191910,1387,suspenseful,1368372689 +191910,1537,dancing,1368372820 +191910,1617,detective,1368372935 +191910,1617,neo-noir,1368372797 +191910,1620,detective,1368372935 +191910,1704,excellent script,1368372430 +191910,1704,mentor,1368372337 +191910,1719,melancholic,1368372263 +191910,1754,supernatural,1368372396 +191910,1968,teen movie,1368372640 +191910,2110,black and white,1312444374 +191910,2110,cameos,1312365176 +191910,2110,femme fatale,1312365238 +191910,2110,film noir,1312444375 +191910,2110,funny,1312365193 +191910,2110,goofy,1312365195 +191910,2110,mystery,1312365216 +191910,2110,narration,1312365225 +191910,2110,parody,1312444377 +191910,2110,slow paced,1312365156 +191910,2110,Steve Martin,1312365147 +191910,2110,vintage,1312365256 +191910,2144,teen movie,1368372640 +191910,2291,original,1368372199 +191910,2542,stylish,1368372459 +191910,2726,noir thriller,1368372314 +191910,2762,great ending,1368372839 +191910,2792,reused jokes,1321080321 +191910,2841,supernatural,1368372396 +191910,2858,excellent script,1368372430 +191910,2859,musicians,1368372618 +191910,2863,musicians,1368372618 +191910,2866,musicians,1368372618 +191910,2912,stylish,1368372459 +191910,2915,teen movie,1368372640 +191910,3005,detective,1368372935 +191910,3129,musicians,1368372618 +191910,3499,suspenseful,1368372689 +191910,3717,soundtrack,1365381558 +191910,3791,dancing,1368372820 +191910,4020,supernatural,1368372396 +191910,4054,dancing,1368372820 +191910,4144,melancholic,1368372263 +191910,4440,bad sound,1327117298 +191910,4440,Bruce Lee,1327117331 +191910,4440,english dub,1327117340 +191910,4878,original,1368372199 +191910,5266,suspenseful,1368372689 +191910,5693,dancing,1368372820 +191910,6707,splatter,1368372536 +191910,6711,japan,1365381672 +191910,7153,great ending,1368372839 +191910,32587,brutality,1368372756 +191910,32587,dark,1339973335 +191910,32587,disturbing,1339973335 +191910,32587,writing,1339973380 +191910,33493,forgone conclusion,1347847060 +191910,33493,Hayden Christensen,1347847075 +191910,33493,slow paced,1347847050 +191910,37733,brutality,1368372756 +191910,42723,splatter,1368372536 +191910,44195,soundtrack,1339231256 +191910,48304,brutality,1368372755 +191910,51662,over the top,1347488305 +191910,51662,overrated,1347488286 +191910,53123,musicians,1368372618 +191910,59220,funny,1342664199 +191910,71838,cinematography,1352082704 +191910,71838,editing,1352082694 +191910,74668,anarchy,1341268910 +191910,74668,conspiracy,1341268834 +191910,74668,dystopia,1341268834 +191910,74668,free running,1341268848 +191910,74668,gritty,1341268873 +191910,74668,music,1341268837 +191910,74668,parkour,1341268860 +191910,74668,stylish,1341268837 +191910,75408,Lupin III,1269009281 +191910,87975,bruce campbell,1347488150 +191910,87975,espionage,1347488176 +191910,87975,flashbacks,1347488243 +191910,87975,guerilla warfare,1347488176 +191910,87975,guerrillas,1347488176 +191910,87975,Jeffrey Donovan,1347488227 +191910,87975,low budget,1347488192 +191910,87975,makeup effects,1347488150 +191910,87975,not as good as I expected,1347488098 +191910,87975,not as good as the tv show,1347488098 +191910,91199,atmospheric,1340753763 +191910,91199,britain,1346038285 +191910,91199,British,1340753694 +191910,91199,drug use,1340753884 +191910,91199,fear of commitment,1340753699 +191910,91199,gay,1340753694 +191910,91199,Gay Character,1340753694 +191910,91199,Gay Lead Character,1340753694 +191910,91199,gay relationship,1340753694 +191910,91199,gay romance,1340753694 +191910,91199,hard to hear lines,1340753689 +191910,91199,meditative,1340753775 +191910,91199,normality,1340753695 +191910,91199,Nudity (Full Frontal - Brief),1340753827 +191910,91199,romance,1340753694 +191910,95441,Boston,1343101913 +191910,95441,boston accent,1343101913 +191910,95441,bromance,1343102128 +191910,95441,bromantic,1343102128 +191910,95441,bromantic comedy,1343102128 +191910,95441,CG,1343101956 +191910,95441,CG animation,1343101956 +191910,95441,cgi,1343101956 +191910,95441,comedy,1343101996 +191910,95441,crude humor,1343102008 +191910,95441,directorial debut,1343102086 +191910,95441,Mark Wahlberg,1343102029 +191910,95441,Mila Kunis,1343102030 +191910,95441,Patrick Stewart,1343101997 +191910,95441,Seth MacFarlane,1343102044 +191910,95441,wishes,1343101923 +191910,96110,election,1344823867 +191910,96110,pacing,1344823847 +191910,96110,politics,1344823827 +191910,96110,satire,1344823827 +191910,105213,dating,1388096854 +191910,105213,directorial debut,1388096876 +191910,105213,Julianne Moore,1388096814 +191910,105213,New Jersey,1388096783 +191910,105213,pornography,1388096829 +191910,105213,pornography's influence,1388096829 +191910,105213,relationship - nontypical,1388096854 +191910,105213,relationships,1388096854 +191910,105213,Scarlett Johansson,1388096801 +191919,412,based on a book,1408301410 +191919,412,Michelle Pfeiffer,1408301415 +191919,2617,archaeology,1330028240 +191919,2617,curse,1330028273 +191919,2617,Imhotep,1330028256 +191919,2617,librarians,1330028246 +191919,2617,treasure hunt,1330028250 +191919,5378,action,1242041589 +191919,5378,alien,1242041642 +191919,5378,Classic,1242041644 +191919,5378,complex script,1242041584 +191919,5378,Ewan McGregor,1242041654 +191919,5378,fantasy,1242041575 +191919,5378,futuristic,1242041579 +191919,5378,George Lucas,1242041551 +191919,5378,mystic warriors,1242041572 +191919,5378,Natalie Portman,1242041651 +191919,5378,robots,1242041570 +191919,5378,Samuel L. Jackson,1242041656 +191919,5378,sci-fi,1242041564 +191919,5378,sequel,1242041647 +191919,5378,Star Wars,1242041553 +191919,5378,starship pilots,1242041567 +191919,6333,action,1242043180 +191919,6333,adapted from:comic,1242043213 +191919,6333,based on comic,1242043211 +191919,6333,comic book,1242043206 +191919,6333,display of power,1242043167 +191919,6333,genetics,1242043173 +191919,6333,super-hero,1242043199 +191919,6333,superhero,1242043195 +191919,6333,supernatural powers,1242043190 +191919,6333,violent,1242043203 +191919,6754,good dialogs,1242041481 +191919,6754,heroine in tight suit,1242041448 +191919,6754,Kate Beckinsale,1242041450 +191919,6754,strong-minded characters,1242041743 +191919,6754,vampire,1242041464 +191919,6754,vampires,1242041466 +191919,6754,werewolf,1242041467 +191919,6754,werewolves,1242041472 +191919,8644,action,1242042442 +191919,8644,android(s)/cyborg(s),1242042445 +191919,8644,artificial intelligence,1242042424 +191919,8644,Dynamic CGI Action,1242042491 +191919,8644,fight,1242042486 +191919,8644,futuristic,1242042489 +191919,8644,robot,1242042427 +191919,8644,robots,1242042430 +191919,8644,Sci fi,1242042434 +191919,8644,sci-fi,1242042421 +191919,8644,sexy female scientist,1242042709 +191919,27611,battleships,1255422662 +191919,27611,beautiful woman,1255422621 +191919,27611,cybernetic creatures,1255422649 +191919,27611,cybernetics,1255422654 +191919,27611,humanity,1255422596 +191919,27611,infiltrators,1255422901 +191919,27611,military,1255422675 +191919,27611,MILITARY LIFE,1255422543 +191919,27611,sci-fi,1255422601 +191919,27611,space,1255422603 +191919,27611,Treason,1255422555 +191919,31878,romance,1347686362 +191919,33493,action,1242041836 +191919,33493,adventure,1242041838 +191919,33493,complex script,1242041834 +191919,33493,dark,1242041843 +191919,33493,epic,1242041870 +191919,33493,Ewan McGregor,1242041858 +191919,33493,great soundtrack,1242041847 +191919,33493,mystic warriors,1242041832 +191919,33493,Natalie Portman,1242041817 +191919,33493,no happy ending,1242041934 +191919,33493,robots,1242041814 +191919,33493,Samuel L. Jackson,1242041856 +191919,33493,sci-fi,1242041851 +191919,33493,sequel,1242041854 +191919,33493,space,1242041812 +191919,33493,Star Wars,1242041810 +191919,33493,starship pilots,1242041820 +191919,33493,strong-minded characters,1242041808 +191919,33493,super-hero,1242041822 +191919,33493,treason,1242042005 +191919,33493,war,1242041829 +191919,34150,Action,1242042661 +191919,34150,adapted from:comic,1242042659 +191919,34150,Adventure,1242042662 +191919,34150,good action,1242042670 +191919,34150,heroine in tight suit,1242042655 +191919,34150,Jessica Alba,1242042646 +191919,34150,sexy female scientist,1242042643 +191919,34150,super-hero,1242042672 +191919,34150,superhero,1242042649 +191919,42738,good dialogs,1242041382 +191919,42738,gory,1242041204 +191919,42738,gothic,1242041170 +191919,42738,heroine in tight suit,1242041196 +191919,42738,Kate Beckinsale,1242041161 +191919,42738,strong-minded characters,1242041777 +191919,42738,vampires,1242041163 +191919,42738,violent,1242041188 +191919,42738,werewolf,1242041173 +191919,42738,werewolves,1242041185 +191919,45499,Action,1242040829 +191919,45499,adapted from:comic,1242040906 +191919,45499,big budget,1242040903 +191919,45499,comic book,1242040909 +191919,45499,disability,1242040920 +191919,45499,display of power,1242041109 +191919,45499,ending after credits,1242040955 +191919,45499,father son relationship,1242040924 +191919,45499,genetics,1242040862 +191919,45499,Halle Berry,1242040889 +191919,45499,Hugh Jackman,1242040891 +191919,45499,intense,1242040933 +191919,45499,mutants,1242040845 +191919,45499,sci-fi,1242040866 +191919,45499,superhero,1242040849 +191919,45499,supernatural powers,1242041019 +191919,51412,supernatural powers,1242042178 +191919,52722,action,1242042357 +191919,52722,adapted from:comic,1242042330 +191919,52722,alter ego,1242042323 +191919,52722,based on a comic,1242042327 +191919,52722,big budget,1242042354 +191919,52722,comic book,1242042317 +191919,52722,Comic Book adaption,1242042314 +191919,52722,New York City,1242042367 +191919,52722,revenge,1242042334 +191919,52722,super hero,1242042289 +191919,52722,super-hero,1242042308 +191919,52722,superhero,1242042304 +191919,52722,superheroes,1242042298 +191919,52722,supernatural powers,1242042347 +191919,53464,adapted from:comic,1242042616 +191919,53464,based on comic book,1242042613 +191919,53464,Jessica Alba,1242042606 +191919,53464,sexy female scientist,1242042596 +191919,53464,super hero,1242042603 +191919,53464,superheroes,1242042600 +191919,55253,confident man,1255336758 +191919,55253,erotic,1255336510 +191919,55253,no happy ending,1255336426 +191919,55253,sexually aggressive man,1255336740 +191919,55253,Treason,1255336453 +191919,55253,university,1255336480 +191919,55253,university students,1255336771 +191919,55498,beautiful japanese girl,1255336833 +191919,55498,beautiful scenery,1255336947 +191919,55498,blindfold,1255336805 +191919,55498,elegant japanese prostitute,1255336990 +191919,55498,Japan,1255336868 +191919,55498,Keira Knightley,1255336796 +191919,55498,melancholic girl,1255336910 +191919,55498,melancholy,1255336885 +191919,55498,Nudity (Full Frontal),1255336813 +191919,59709,cultured characters,1242042868 +191919,59709,Mathematics,1242042842 +191919,59709,university,1242042855 +191919,61465,assassin,1242040715 +191919,61465,Bangkok,1242040627 +191919,61465,good looking girls,1242042747 +191919,61465,Nicolas Cage,1242040711 +191919,64030,action,1330028529 +191919,64030,assassins,1330028563 +191919,64030,Jason Statham,1330028527 +191919,64983,no happy ending,1255336325 +191919,64983,Tom Cruise,1255336171 +191919,64983,tragic,1255336367 +191919,64983,Treason,1255336295 +191919,66691,code breaking,1255408377 +191919,66691,heist,1255408368 +191919,66691,treason,1255408406 +191919,66691,undercover,1255408418 +191919,76251,dark comedy,1328097985 +191919,76251,revenge,1328097979 +191919,76251,vigilante,1328097992 +191919,84152,smart,1328098224 +191919,84152,transhumanism,1328098209 +191919,85211,Japanese,1328100784 +191919,85211,love story,1328100768 +191919,85414,parallel universe,1328098084 +191919,85414,romance,1328098079 +191919,85414,science fiction,1328098083 +191919,85414,suspense,1328098105 +191919,85414,time loop,1328098075 +191919,85414,time travel,1328098082 +191919,88932,predictable,1328098506 +191919,89087,action,1328098606 +191919,89087,assassin,1328098598 +191919,89087,lacks logic,1328098596 +191919,89087,revenge,1328098600 +191919,89753,Double agent,1328100248 +191919,89753,espionage,1328100253 +191919,89753,Gary Oldman,1328100242 +191919,90249,android(s)/cyborg(s),1328098389 +191919,90249,boxing,1328098465 +191919,90249,childish,1328098435 +191919,90249,predictable,1328098456 +191919,90249,robots,1328098397 +191919,90249,tinkering,1328098448 +191919,90405,corruption,1328097753 +191919,90405,crime,1328097765 +191919,90405,dystopia,1328097597 +191919,90405,eternal youth,1328097655 +191919,90405,fugitive,1328097756 +191919,90405,future,1328097616 +191919,90405,immortality,1328097710 +191919,90405,justin timberlake,1328097627 +191919,90405,rich people,1328097618 +191919,90405,sci-fi,1328097604 +191919,91128,1950s,1328097462 +191919,91128,alcoholism,1328097224 +191919,91128,based on a book,1328097460 +191919,91128,beautiful woman,1328097356 +191919,91128,Caribbean,1328097180 +191919,91128,drug abuse,1328097404 +191919,91128,journalism,1328097447 +191919,91128,Latin America,1328097457 +191919,91128,Puerto Rico,1328097448 +191919,91128,rich people,1328097244 +191919,91500,based on a book,1347686448 +191919,91500,dystopia,1347686423 +191919,91500,hot heroine,1347686409 +191919,91500,love,1347686458 +191919,91500,rich and poor,1347686563 +191919,91500,science fiction,1347686432 +191919,91500,visually stunning,1347686403 +191919,91630,action,1347686920 +191919,91630,espionage,1347686951 +191919,91630,Tom Cruise,1347686934 +191919,91658,based on a book,1347687022 +191919,91658,Daniel Craig,1347687003 +191919,91658,hacker,1347687016 +191919,91658,hacking,1347687011 +191919,91658,mystery,1347686998 +191919,91658,revenge,1347687036 +191919,91658,serial killer,1347686994 +191919,92920,elusive creature,1330027808 +191919,92920,extinct species,1330027651 +191919,92920,lone mercenary,1330027635 +191919,92920,mute secretive child,1330028167 +191919,92920,wilderness,1330027665 +191919,101864,Alien Invasion,1408300644 +191919,101864,atmospheric,1408300651 +191919,101864,cloning,1408300673 +191919,101864,dystopia,1408300655 +191919,101864,memory loss,1408300635 +191919,101864,post-apocalyptic,1408300657 +191919,101864,sci-fi,1408300659 +191919,101864,space,1408300661 +191919,101864,technology,1408300663 +191919,101864,Tom Cruise,1408300632 +191919,101864,twist ending,1408300677 +191951,7293,Drew Barrymore,1161970035 +191951,44195,cigarettes,1161969560 +191974,32,violence,1186367895 +191974,110,violent,1186451439 +191974,150,formulaic,1186518622 +191974,165,violent,1186452039 +191974,198,junk,1186371475 +191974,457,violence,1186518355 +191974,506,beautiful,1186452105 +191974,527,disturbing,1186451849 +191974,527,violent,1186451849 +191974,541,violent,1186517683 +191974,589,violence,1186368448 +191974,593,disturbing,1186373756 +191974,593,violent,1186518650 +191974,1094,violent,1186373070 +191974,1097,sad but good,1186367077 +191974,1200,violent,1186517713 +191974,1201,violence in america,1186517525 +191974,1204,violent,1186518529 +191974,1208,disturbing,1186518978 +191974,1208,violent,1186518978 +191974,1210,violent,1186517846 +191974,1233,classic,1186371237 +191974,1233,tragic drama.,1186371237 +191974,1240,violent,1186368015 +191974,1244,americana,1186363958 +191974,1244,Lolita-fetish,1186363958 +191974,1250,classic,1186364692 +191974,1254,Classic,1186366074 +191974,1258,scary,1186454299 +191974,1258,violent,1186454299 +191974,1263,violently stupid,1186518930 +191974,1270,silly but good,1186368182 +191974,1301,classic,1186368051 +191974,1304,violent,1186364346 +191974,1374,violence,1186369052 +191974,1396,stupid,1186369285 +191974,1527,Cool.,1186369675 +191974,1584,beautiful,1186369256 +191974,1590,violent,1186518876 +191974,1732,violence,1186451705 +191974,1748,dark fantasy,1186368361 +191974,2009,prophetic,1186364535 +191974,2022,violence,1186519126 +191974,2288,disturbing,1186368093 +191974,2288,violent,1186368093 +191974,2528,violence,1186519965 +191974,2529,violence,1186368396 +191974,2593,sexuality,1186455629 +191974,2734,tragic drama.,1186362945 +191974,2801,tragically stupid,1186371738 +191974,2858,violence,1186521408 +191974,2916,stupid,1186369586 +191974,2959,violence,1187855587 +191974,2997,sexually leaky,1186366907 +191974,3037,violence in america,1186362355 +191974,3095,americana,1186362544 +191974,3347,sad but good,1186452224 +191974,3347,visually appealing,1186452224 +191974,3527,violent,1186369219 +191974,3593,stupid,1186371397 +191974,3593,waste of celluloid,1186371397 +191974,3654,violent,1186518330 +191974,3793,violence,1186369444 +191974,3949,disturbing,1186372675 +191974,3949,should be required viewing for high school students,1186372675 +191974,3959,classic,1186368638 +191974,3959,silly but good,1186368638 +191974,4195,Violently silly,1186452535 +191974,4370,formulaic,1186363852 +191974,4370,waste of celluloid,1186363852 +191974,4643,violence,1186372565 +191974,4713,Stoner Movie,1186369135 +191974,4874,disturbing scene,1186370282 +191974,4874,sad but good,1186370282 +191974,4939,violence,1186370182 +191974,4973,Cute,1186373574 +191974,5410,sad but good,1186369007 +191974,5410,tragic drama.,1186369007 +191974,5445,violence,1186451727 +191974,5881,interesting concept,1186370603 +191974,5944,lousy script,1190607124 +191974,6303,silly but good,1186368330 +191974,6333,silly fun,1186368763 +191974,6333,violent,1186368763 +191974,6645,classic,1186369103 +191974,6645,prophetic,1186369103 +191974,7001,disturbing,1186367959 +191974,7001,violence,1186367959 +191974,7256,disturbing,1186455269 +191974,7386,violence,1186519180 +191974,7817,sexually leaky,1186372938 +191974,7817,violence,1186372939 +191974,8094,classic,1186364867 +191974,8094,violent,1186364868 +191974,8361,formulaic,1186362784 +191974,8361,hollywood style,1186362784 +191974,8636,violence,1186368570 +191974,8644,formulaic,1186363735 +191974,8644,trying to hard,1186363735 +191974,8914,disturbing,1186367820 +191974,8949,sexually leaky,1186371874 +191974,8949,shallow,1186371874 +191974,26306,Violently silly,1186452697 +191974,26554,tragic drama.,1186367990 +191974,30793,silly fun,1186453733 +191974,33493,violently stupid,1186370475 +191974,42021,sexually leaky,1186371585 +191974,42021,waste of celluloid,1186371585 +191974,43914,pointless,1187769056 +191974,43914,waste of celluloid,1187769056 +191974,45722,waste of time,1186453624 +191974,48043,metaphysical,1186366298 +191974,48043,visually appealing,1186366524 +191974,48774,violently stupid,1186518847 +191974,48774,waste of celluloid,1186518847 +191984,47,dark,1441245419 +191984,47,psychological,1441245422 +191984,47,serial killer,1441245412 +191984,47,twist ending,1441245410 +191984,4973,beautifully filmed,1441245457 +191984,4973,quirky,1441245428 +191984,5618,anime,1441245357 +191984,5618,surreal,1441245363 +191987,260,classic sci-fi,1439796652 +191987,260,space,1439796641 +191997,750,kubrick,1295396393 +191997,1961,dark comedy,1297980895 +191997,1961,Dustin Hoffman,1297980883 +191997,1961,Tom Cruise,1297980906 +192007,6874,Tarantino,1167846128 +192012,260,classic,1435596823 +192012,260,good acting,1435596823 +192012,260,scifi,1435596823 +192015,260,epic adventure,1439064267 +192015,260,good vs evil,1439064280 +192023,260,classic,1443323635 +192023,260,Science Fiction,1443323615 +192056,260,Star Wars,1444768300 +192063,356,classic,1443579737 +192063,6874,Quentin Tarantino,1443579763 +192097,25,atmospheric,1246063968 +192097,25,Nudity (Topless),1246063960 +192097,25,PROSTITUTES,1246063962 +192097,737,Casablanca Remake,1246063824 +192097,737,Gratuitous Peter Lorre lookalike,1246063853 +192097,737,Nudity (Topless),1246063806 +192097,858,Al Pacino,1246063546 +192097,858,classic,1246063541 +192097,1193,Jack Nicholson,1246063931 +192097,1206,cult film,1246064248 +192097,1206,disturbing,1246064231 +192097,1206,dystopia,1246064234 +192097,1206,Nudity (Full Frontal),1246064243 +192097,1206,quirky,1246064242 +192097,1206,stylized,1246064240 +192097,1240,dystopic future,1246063574 +192097,1240,James Cameron,1246063561 +192097,1240,Nudity (Topless),1246063570 +192097,1240,sci-fi,1246063563 +192097,1240,time travel,1246063565 +192097,1275,immortality,1246063994 +192097,1275,original plot,1246064026 +192097,1617,conspiracy,1246063696 +192097,1617,film noir,1246063703 +192097,1617,Russell Crowe,1246063689 +192097,1653,dystopia,1246064389 +192097,1653,realistic sci/fi,1246064404 +192097,1653,sci-fi,1246064398 +192097,1653,space travel,1246064401 +192097,1653,Uma Thurman,1246064399 +192097,1748,atmospheric,1246064483 +192097,1748,dystopia,1246064479 +192097,1748,Jennifer Connelly,1246064509 +192097,1748,Nudity (Topless),1246064487 +192097,1748,Post apocalyptic,1246064462 +192097,1748,sci-fi,1246064465 +192097,1748,surreal,1246064465 +192097,2450,cult film,1246064167 +192097,2450,Lea Thompson,1246064174 +192097,2450,so bad it's good,1246064179 +192097,2706,Alyson Hannigan,1246063744 +192097,2706,Nudity (Topless - Notable),1246063748 +192097,2706,Seann William Scott,1246063758 +192097,2858,black comedy,1246063622 +192097,2858,dark comedy,1246063630 +192097,2858,Nudity (Topless - Notable),1246063644 +192097,2858,Nudity (Topless),1246063634 +192097,2858,satirical,1246063656 +192097,2858,social commentary,1246063665 +192097,2858,surrealism,1246063638 +192097,2997,Cameron Diaz,1246064549 +192097,2997,Charlie Kaufman,1246064538 +192097,2997,cult film,1246064553 +192097,2997,dark comedy,1246064546 +192097,2997,John Malkovich,1246064556 +192097,2997,off-beat comedy,1246064540 +192097,2997,surreal,1246064542 +192097,2997,surrealism,1246064544 +192097,4235,Nudity (Topless - Brief),1200702850 +192097,5015,Halle Berry,1246064721 +192097,5015,interracial romance,1246064723 +192097,5015,Nudity (Full Frontal - Notable),1246064735 +192097,5015,Nudity (Full Frontal),1246064728 +192097,5110,Syrup chugging,1246063515 +192097,5445,dystopia,1246064575 +192097,5445,Philip K. Dick,1246064579 +192097,5445,Tom Cruise,1246064572 +192097,5502,M. Night Shyamalan,1246064140 +192097,5502,ridiculous,1246064142 +192097,5502,stupid,1246064131 +192097,5502,unbelievable,1246064151 +192097,6264,so bad it's funny,1246064278 +192097,7137,Alec Baldwin,1246064851 +192097,7137,Maria Bello,1246064853 +192097,7137,Nudity (Full Frontal - Notable),1246064847 +192097,7137,Nudity (Full Frontal),1246064848 +192097,7137,Paul Sorvino,1246064857 +192097,7137,quirky,1246064866 +192097,7137,William H. Macy,1246064856 +192097,7361,Charlie Kaufman,1246064424 +192097,7361,cult film,1246064430 +192097,7361,imagination,1246064445 +192097,7361,quirky,1246064432 +192097,7361,sci-fi,1246064433 +192097,7361,surreal,1246064435 +192097,7361,surrealism,1246064439 +192097,8040,night at the opera,1266140951 +192097,26593,B-movie,1266134363 +192097,26593,cheesy (good),1266134395 +192097,26593,exploding codpiece,1266134395 +192097,27611,sci-fi,1246063302 +192097,27611,space,1246063303 +192097,37733,David Cronenberg,1246064795 +192097,37733,Nudity (Full Frontal - Notable),1246064801 +192097,37733,Nudity (Full Frontal),1246064804 +192097,37733,Viggo Mortensen,1246064790 +192097,48774,apocalypse,1246064108 +192097,48774,christianity,1246064103 +192097,48774,dystopia,1246064095 +192097,48774,end of the world,1246064087 +192097,48774,Michael Caine,1246064100 +192097,48774,sci-fi,1246064099 +192097,51091,atmospheric,1246063452 +192097,51091,Christina Ricci,1246063445 +192097,51091,lurid,1246063457 +192097,51091,Nudity (Topless),1246063438 +192097,51091,Samuel L. Jackson,1246063450 +192097,56174,post-apocalyptic,1246064340 +192097,56174,religion,1246064342 +192097,56174,Zombie dogs,1246064331 +192097,58998,male nudity,1246064631 +192097,58998,Nudity (Full Frontal - Notable),1246064637 +192097,58998,Nudity (Topless - Brief),1246064639 +192097,58998,Nudity (Topless),1246064640 +192097,58998,Paul Rudd,1246064642 +192097,58998,Predictable,1246064645 +192097,68358,sci-fi,1246063023 +192097,68358,Simon Pegg,1246063014 +192097,68358,space,1246063028 +192097,68358,Star Trek,1246063008 +192097,68358,time travel,1246063011 +192097,146212,drugs,1446693784 +192097,146212,lesbian,1446693794 +192097,146212,stripper,1446693779 +192099,79274,Bruce Greenwood,1354149530 +192099,79274,John Di Maggio,1354149541 +192100,3306,circus,1264486557 +192115,32,complicated,1446969734 +192115,32,great ending,1446969731 +192115,32,original,1446969728 +192115,32,sci-fi,1446969726 +192115,32,time loop,1446969747 +192115,32,time travel,1446969718 +192115,32,twist ending,1446969720 +192115,741,anime,1446969574 +192115,741,artificial intelligence,1446969576 +192115,741,cyberpunk,1446969572 +192115,741,cyborgs,1446969587 +192115,741,hackers,1446969589 +192115,741,philosophical,1446969577 +192115,741,philosophy,1446969593 +192115,741,sci-fi,1446969580 +192115,1188,Australia,1446971484 +192115,1188,Australian,1446971477 +192115,1188,ballroom dancing,1446971479 +192115,1188,campy,1446971490 +192115,1188,competition,1446971486 +192115,1188,dance,1446971475 +192115,1188,dancing,1446971473 +192115,1270,1980s,1446970488 +192115,1270,DeLorean,1446970517 +192115,1270,inventor,1446970509 +192115,1270,Michael J. Fox,1446970492 +192115,1270,rock and roll,1446970505 +192115,1270,sci-fi,1446970477 +192115,1270,time loop,1446970514 +192115,1270,time travel,1446970475 +192115,1274,animation,1446969560 +192115,1274,anime,1446969547 +192115,1274,cyberpunk,1446969534 +192115,1274,future,1446969553 +192115,1274,science fiction,1446969556 +192115,1653,genetic engineering,1446969677 +192115,1653,genetics,1446969667 +192115,1653,Jude Law,1446969681 +192115,1653,sci-fi,1446969665 +192115,1653,science fiction,1446969688 +192115,2011,science fiction,1446970540 +192115,2011,sequel,1446970530 +192115,2011,time travel,1446970527 +192115,2571,artificial intelligence,1446969880 +192115,2571,computers,1446969894 +192115,2571,cyberpunk,1446969871 +192115,2571,martial arts,1446969876 +192115,2571,sci-fi,1446969867 +192115,2571,thought-provoking,1446969886 +192115,2571,virtual reality,1446969869 +192115,2571,visually stunning,1446969905 +192115,4121,miniaturization,1446970447 +192115,4121,Spherical Blow-Up,1446970450 +192115,4121,trapped in a human body,1446970436 +192115,4226,AMNESIA,1446969970 +192115,4226,complicated plot,1446969986 +192115,4226,dreamlike,1446969959 +192115,4226,great ending,1446969962 +192115,4226,memory,1446969922 +192115,4226,memory loss,1446969984 +192115,4226,Mindfuck,1446969956 +192115,4226,nonlinear,1446969918 +192115,4226,plot twist,1446969978 +192115,4226,twist ending,1446969919 +192115,4226,twists & turns,1446969968 +192115,4545,artificial intelligence,1446969479 +192115,4545,robots,1446969481 +192115,7147,bittersweet,1446970743 +192115,7147,dreamlike,1446970740 +192115,7147,storytelling,1446970736 +192115,7147,surreal,1446970738 +192115,7147,surrealism,1446970745 +192115,7147,twist ending,1446970753 +192115,27660,animation,1446969507 +192115,27660,anime,1446969511 +192115,27660,cyberpunk,1446969505 +192115,27660,Matrix,1446969519 +192115,27660,sci-fi,1446969513 +192115,27728,2D/3D hybrid Animation,1446970171 +192115,27728,anime,1446970167 +192115,27728,cyberpunk,1446970168 +192115,27728,robots,1446970180 +192115,68237,artificial intelligence,1446969622 +192115,68237,future,1446969637 +192115,68237,mindfuck,1446969654 +192115,68237,plot twist,1446969635 +192115,68237,psychology,1446969620 +192115,68237,robot,1446969660 +192115,68237,Sci-fi,1446969617 +192115,68237,science,1446969648 +192115,68237,solitude,1446969627 +192115,68237,twist ending,1446969625 +192115,79132,dreams,1446969774 +192115,79132,mindfuck,1446969770 +192115,79132,multiple interpretations,1446969778 +192115,79132,sci-fi,1446969764 +192115,85414,happy ending,1446969837 +192115,85414,mindfuck,1446969820 +192115,85414,parallel universe,1446969809 +192115,85414,predictable,1446969851 +192115,85414,predictable ending,1446969853 +192115,85414,romance,1446969834 +192115,85414,science fiction,1446969816 +192115,85414,terrorism,1446969830 +192115,85414,time travel,1446969812 +192115,85414,trains,1446969855 +192115,85414,twists & turns,1446969844 +192115,85414,Weak third act,1446969848 +192115,88744,sci-fi,1446970251 +192115,91658,hacker,1446969446 +192115,91658,hacking,1446969437 +192115,91658,strong female lead,1446969450 +192115,94864,aliens,1446970280 +192115,94864,bad science,1446970310 +192115,94864,character motivation,1446970329 +192115,94864,Charlize Theron,1446970291 +192115,94864,dark,1446970332 +192115,94864,dialogue,1446970317 +192115,94864,exploration,1446970308 +192115,94864,future,1446970340 +192115,94864,horror,1446970344 +192115,94864,Michael Fassbender,1446970293 +192115,94864,plot hole,1446970302 +192115,94864,plot holes,1446970327 +192115,94864,predictable,1446970295 +192115,94864,prequel,1446970299 +192115,94864,pseudo-philosophical,1446970336 +192115,94864,religion,1446970298 +192115,94864,religious overtones,1446970306 +192115,94864,Ridley Scott,1446970284 +192115,94864,sci fi,1446970322 +192115,94864,sci-fi,1446970287 +192115,94864,scifi,1446970282 +192115,94864,sequel bait,1446970314 +192115,94864,space,1446970321 +192115,94864,space travel,1446970285 +192115,94864,technology,1446970289 +192115,94959,Bill Murray,1446970691 +192115,94959,Bruce Willis,1446970681 +192115,94959,coming of age,1446970695 +192115,94959,Edward Norton,1446970678 +192115,94959,original,1446970699 +192115,94959,stylized,1446970687 +192115,94959,surreal,1446970674 +192115,94959,sympathetic characters,1446970708 +192115,96610,bad science,1446970035 +192115,96610,mother-son relationship,1446970055 +192115,96610,original,1446970029 +192115,96610,paranormal,1446970048 +192115,96610,sci-fi,1446970010 +192115,96610,science fiction,1446970019 +192115,96610,time travel,1446970009 +192115,97938,cinematography,1446970838 +192115,97938,God's existance,1446970863 +192115,97938,ocean,1446970849 +192115,97938,religion,1446970840 +192115,97938,religious overtones,1446970855 +192115,97938,Survival,1446970861 +192115,97938,Tiger,1446970872 +192115,97938,twist ending,1446970869 +192115,97938,visually appealing,1446970836 +192115,97938,wisdom,1446970859 +192115,98243,animation,1446971016 +192115,98243,lack of story,1446971019 +192115,100390,road trip,1446971813 +192115,101962,animation,1446971382 +192115,101962,anime,1446971368 +192115,101962,coming of age,1446971383 +192115,101962,moving,1446971373 +192115,101962,nature,1446971375 +192115,101962,raising children,1446971379 +192115,101962,single mother,1446971381 +192115,101962,tearjerker,1446971372 +192115,101962,werewolves,1446971370 +192115,102194,coming of age,1446971742 +192115,102194,Matthew McConaughey,1446971744 +192115,102481,Google,1446971803 +192115,103141,animation,1446971675 +192115,103141,comedy,1446971673 +192115,103141,Pixar,1446971671 +192115,106782,Amoral,1446970420 +192115,106782,Anti-Hero,1446970405 +192115,106782,based on a book,1446970423 +192115,106782,based on a true story,1446970400 +192115,106782,drugs,1446970393 +192115,106782,Funny,1446970398 +192115,106782,greed,1446970416 +192115,106782,Leonardo DiCaprio,1446970388 +192115,106782,Martin Scorsese,1446970390 +192115,106782,Nudity (Full Frontal),1446970396 +192115,106782,Nudity (Topless),1446970418 +192115,106782,prostitution,1446970411 +192115,106782,Stock Market,1446970413 +192115,106782,true story,1446970409 +192115,106782,Wall Street,1446970402 +192115,106918,Ben Stiller,1446970807 +192115,106918,daydream,1446970813 +192115,106918,positive thinking,1446970800 +192115,106918,surreal,1446970791 +192115,106918,travel,1446970806 +192115,106918,workplace,1446970802 +192115,108540,poverty,1446972190 +192115,109487,artificial intelligence,1446970092 +192115,109487,astronomy,1446970150 +192115,109487,bad science,1446970144 +192115,109487,black hole,1446970102 +192115,109487,Deus Ex Machina Ending,1446970143 +192115,109487,good science bad science,1446970132 +192115,109487,physics,1446970085 +192115,109487,plot holes,1446970108 +192115,109487,relativity,1446970075 +192115,109487,sci-fi,1446970068 +192115,109487,science fiction,1446970097 +192115,109487,space,1446970066 +192115,109487,space travel,1446970104 +192115,109487,time travel,1446970081 +192115,109487,time-travel,1446970070 +192115,109487,twist ending,1446970135 +192115,109487,wasted potential,1446970139 +192115,109487,wormhole,1446970094 +192115,111759,action,1446970201 +192115,111759,Alien Invasion,1446970204 +192115,111759,aliens,1446970194 +192115,111759,based on a novel,1446970212 +192115,111759,ending,1446970221 +192115,111759,future,1446970202 +192115,111759,powersuit,1446970210 +192115,111759,Reluctant Hero,1446970208 +192115,111759,repeating day,1446970224 +192115,111759,sci-fi,1446970189 +192115,111759,science fiction,1446970226 +192115,111759,time loop,1446970187 +192115,111759,time travel,1446970191 +192115,111759,war,1446970206 +192121,903,twist ending,1399066225 +192121,3730,espionage,1399066302 +192121,3730,psychological,1399066300 +192121,4016,funny,1399066366 +192121,4226,nonlinear,1399067272 +192121,4226,psychological,1399067268 +192121,4226,twist ending,1399067265 +192121,8950,psychology,1399068650 +192121,8972,action,1399068371 +192121,8972,adventure,1399068369 +192121,8984,Brad Pitt,1399068300 +192121,8984,George Clooney,1399068297 +192121,8984,heist,1399068295 +192121,44199,heist,1399066563 +192121,48516,organized crime,1399066178 +192121,48516,twist ending,1399066174 +192121,48780,Christian Bale,1399067749 +192121,48780,complicated,1399068157 +192121,48780,mystery,1399068163 +192121,48780,nonlinear,1399067758 +192121,48780,psychological,1399068176 +192121,48780,thriller,1399068166 +192121,48780,twist ending,1399068170 +192121,73017,mystery,1399068237 +192121,73017,witty,1399068228 +192121,74458,psychological,1399068334 +192121,74458,twist ending,1399066619 +192121,79132,alternate reality,1399068679 +192121,79132,ensemble cast,1399068683 +192121,79132,great soundtrack,1399068686 +192121,79132,psychological,1399068692 +192121,79132,surreal,1399068673 +192121,79132,thought-provoking,1399068674 +192121,79132,twist ending,1399066199 +192121,85414,adventure,1399068102 +192121,85414,Jake Gyllenhaal,1399068104 +192121,85414,military,1399068120 +192121,85414,suspense,1399068107 +192121,85414,trains,1399068111 +192121,85414,twist ending,1399068109 +192121,85414,twists & turns,1399068114 +192121,88129,heist,1399066834 +192121,97304,espionage,1399068427 +192132,33683,gore,1306871046 +192132,33683,lesbian,1306871050 +192132,33683,plot twist,1306871043 +192132,44397,Alexandre Aja,1306871076 +192132,44397,cannibalism,1306871065 +192132,44397,gore,1306871062 +192132,44397,mutation,1306871083 +192132,44397,remake,1306871059 +192132,63992,chick flick,1301846862 +192132,63992,dumb movie,1301846862 +192132,63992,Stupid as Hell,1301846862 +192136,260,exciting,1436950544 +192136,260,space action,1436950552 +192136,3247,music,1441635298 +192136,3248,music,1441635304 +192136,5618,anime,1441119910 +192136,5618,fantasy,1441119912 +192136,5618,Hayao Miyazaki,1441119919 +192136,5618,Studio Ghibli,1441119915 +192136,48394,alternate reality,1436967711 +192136,48394,Spanish,1436967678 +192136,96588,music,1441634739 +192136,101895,baseball,1441120135 +192136,133419,music,1441635334 +192136,134853,Animation,1441119874 +192136,134853,Pixar,1441119893 +192136,134853,psychology,1441119887 +192136,134853,San Francisco,1441119890 +192142,260,classic,1442437369 +192142,260,sci-fi,1442437355 +192165,260,good vs evil,1438468453 +192165,260,sci-fi,1438468436 +192176,27899,pretention,1138009634 +192183,85016,children,1420752066 +192183,85016,killer,1420752191 +192183,85016,murder,1420752061 +192183,85016,murder mystery,1420752191 +192183,85016,mystery,1420752191 +192183,85016,urban legends,1420752071 +192183,93574,investigation,1420752124 +192183,93574,Mystery,1420752110 +192183,93574,urban legend,1420752104 +192183,108977,animated,1420752533 +192183,108977,anime,1420752518 +192183,108977,horror,1420752525 +192183,108977,psychological,1420752523 +192183,108977,psychological horror,1420752531 +192190,356,tom hanks,1444160191 +192190,2028,Tom Hanks,1444160182 +192190,2028,war,1444160178 +192190,2571,the one,1444160245 +192190,8873,Che Guevara,1444160066 +192190,8873,road trip,1444160077 +192190,44191,revenge,1444160119 +192190,79132,Christopher Nolan,1444160238 +192190,91529,Batman,1444160153 +192190,91529,Christopher Nolan,1444160156 +192190,112556,bitch,1444160228 +192190,112556,mindfuck,1444160222 +192190,115713,AI,1444160127 +192190,115713,sci-fi,1444160133 +192190,117533,edward snowden,1444160197 +192190,117533,nsa,1444160213 +192190,117533,true story,1444160206 +192213,87004,see in 3D only,1331648555 +192262,318,imdb number 1,1269712077 +192313,107406,post-apocalyptic,1438385837 +192315,2019,masterpiece,1426541462 +192315,2019,samurai,1426541467 +192323,109374,amazing storytelling,1402526432 +192323,122886,Adam Driver,1451519576 +192323,122886,Carrie Fisher,1451519588 +192323,122886,Daisy Ridley,1451519621 +192323,122886,Fan service,1451519615 +192323,122886,feminism,1451519604 +192323,122886,Harrison Ford,1451519600 +192323,122886,John Boyega,1451519623 +192323,122886,Mark Hamill,1451519594 +192323,122886,Plot Recycling,1451519639 +192323,122886,Star Wars,1451519613 +192341,44761,clever,1446404814 +192341,44761,self-mocking,1446404818 +192341,48043,love,1446404672 +192341,53123,good music,1446404840 +192341,55269,cinematography,1446404700 +192341,55269,dysfunctional family,1446404696 +192341,56367,cult film,1446404858 +192341,56367,feel-good,1446404861 +192341,56367,notable soundtrack,1446404854 +192341,60684,Nudity (Topless),1446404787 +192341,81591,Natalie Portman,1446404739 +192342,260,fantasy,1441103233 +192342,260,Science Fiction,1441103239 +192363,101,great soundtrack,1362077302 +192363,101,NOTHING GOES RIGHT,1362077254 +192363,101,Wes Anderson,1362077266 +192363,1380,classic,1299810780 +192363,1380,great soundtrack,1299810750 +192363,1380,high school,1299810847 +192363,1380,musical,1299810816 +192363,1380,no plot,1299810967 +192363,1916,avant-garde romantic comedy,1362077079 +192363,1916,Christina Ricci,1362077060 +192363,1916,Vincent Gallo,1362077064 +192363,2024,christianity,1367692420 +192363,2066,black and white,1367692318 +192363,2291,cult film,1362077723 +192363,2291,fairy tale,1362077713 +192363,2291,Johnny Depp,1362077709 +192363,2291,Tim Burton,1362077707 +192363,2291,Winona Ryder,1362077716 +192363,2321,plot holes,1361830162 +192363,2965,christianity,1367692420 +192363,3435,black and white,1367692317 +192363,3566,christianity,1367692420 +192363,3608,design,1299421794 +192363,3608,Tim Burton,1299421775 +192363,3972,lying,1299779544 +192363,4190,christianity,1367692420 +192363,4298,black and white,1367692317 +192363,4612,christianity,1367692420 +192363,5042,cult film,1360791596 +192363,5042,fantasy,1360791628 +192363,5042,low budget,1360791642 +192363,5042,musical,1360791605 +192363,5042,visually stunning,1360791687 +192363,5377,hugh grant,1361570923 +192363,6711,boring,1362076280 +192363,6711,no plot,1362076342 +192363,6724,black and white,1367692318 +192363,33880,artistic,1362076918 +192363,33880,bittersweet,1362076889 +192363,33880,Indie,1362076912 +192363,33880,music,1362076898 +192363,33880,quirky,1362076894 +192363,33880,unique,1362076904 +192363,56367,excellent script,1362256781 +192363,56367,independent film,1362256785 +192363,56367,notable soundtrack,1362256796 +192363,74791,stop motion,1299416820 +192363,79224,underdog,1299772991 +192363,79224,visually appealing,1299772963 +192363,99114,epic,1360966036 +192371,126815,documentary,1422587329 +192371,126815,foreign,1422587337 +192371,126815,gay,1422587323 +192371,126815,italian,1422587339 +192371,126815,queer,1422587326 +192374,260,classic,1435693251 +192374,260,fantasy,1435693238 +192381,50,twist ending,1292417333 +192381,296,dark comedy,1292416688 +192381,296,nonlinear,1292416695 +192381,356,Oscar (Best Picture),1292416732 +192381,356,psychology,1292416727 +192381,356,Tom Hanks,1292416730 +192381,527,based on a true story,1292416835 +192381,527,Steven Spielberg,1292416833 +192381,780,sci-fi,1292416524 +192381,1393,Renee Zellweger,1364493738 +192381,1704,mathematics,1292416495 +192381,1704,psychology,1292416490 +192381,1784,Helen Hunt,1364494084 +192381,1784,Jack Nicholson,1364494075 +192381,1784,psychology,1364494073 +192381,2268,corruption,1293960171 +192381,2268,courtroom drama,1293960166 +192381,2268,drama,1293960197 +192381,2268,Jack Nicholson,1293960182 +192381,2268,Kiefer Sutherland,1293960191 +192381,2268,Tom Cruise,1293960187 +192381,2762,psychology,1292419686 +192381,2762,twist ending,1292419689 +192381,2959,psychology,1292421357 +192381,4232,family,1292416648 +192381,5066,drama,1292419480 +192381,5066,high school,1292419478 +192381,5066,Romance,1292419483 +192381,5418,action,1292415786 +192381,5418,based on a book,1292415771 +192381,5418,car chase,1292415773 +192381,5418,spy,1292415778 +192381,5418,thriller,1292415780 +192381,5989,based on a book,1292417824 +192381,5989,Steven Spielberg,1292417826 +192381,5989,Tom Hanks,1292417819 +192381,6287,Jack Nicholson,1364494035 +192381,6378,action,1292416775 +192381,6378,Edward Norton,1292416780 +192381,6378,heist,1292416790 +192381,6565,inspirational,1364493955 +192381,7361,surreal,1292421071 +192381,8970,bittersweet,1365025426 +192381,8970,Heartwarming,1365025447 +192381,8970,Johnny Depp,1365025441 +192381,8970,Kate Winslet,1365025443 +192381,30707,Clint Eastwood,1364494156 +192381,30707,Hilary Swank,1364494175 +192381,30707,Morgan Freeman,1364494179 +192381,30707,morgan freeman commentary,1364494211 +192381,30707,social commentary,1364494217 +192381,33660,Biography,1292417391 +192381,33660,boxing,1292417400 +192381,33660,Russell Crowe,1364493574 +192381,33660,true story,1292417394 +192381,33794,action,1292415482 +192381,33794,adapted from:comic,1292415479 +192381,33794,Christian Bale,1292415473 +192381,33794,imdb top 250,1292415542 +192381,33794,stylized,1292415534 +192381,33794,superhero,1292415522 +192381,33794,thought-provoking,1292415527 +192381,33794,vigilante,1292415531 +192381,36525,chick flick,1292419431 +192381,36525,Romance,1292416806 +192381,44199,Denzel Washington,1292416556 +192381,44199,heist,1292416550 +192381,44199,twist ending,1292416554 +192381,47099,based on a true story,1292416828 +192381,48516,Mafia,1292417433 +192381,48516,Martin Scorsese,1292417439 +192381,48516,organized crime,1292417420 +192381,48738,based on a true story,1292416566 +192381,48780,Christian Bale,1364493862 +192381,48780,psychological,1364493868 +192381,48780,twist ending,1364493880 +192381,49530,1990s,1292415668 +192381,49530,corruption,1292415675 +192381,49530,forceful,1292415679 +192381,49530,Jennifer Connelly,1292415609 +192381,49530,journalism,1292415642 +192381,49530,Leonardo DiCaprio,1292415628 +192381,49530,photography,1292415672 +192381,49530,violent,1292415635 +192381,49530,war,1292415633 +192381,54259,based on a book,1292416629 +192381,54259,comedy,1292416626 +192381,54259,fairy tale,1292416620 +192381,54286,espionage,1292417379 +192381,54286,twist ending,1292417375 +192381,54997,Christian Bale,1292415330 +192381,54997,ClearPlay,1292415383 +192381,54997,Russell Crowe,1292415362 +192381,54997,violent,1292415427 +192381,55247,based on a true story,1292419422 +192381,55247,psychology,1292419405 +192381,55288,Joaquin Phoenix,1292416707 +192381,57368,sci-fi,1292416673 +192381,58559,psychology,1292417407 +192381,59784,animation,1292417847 +192381,59784,martial arts,1292419442 +192381,64622,Oscar (Best Actress),1292416604 +192381,72998,sci-fi,1292421116 +192381,73431,Christopher Walken,1292416579 +192381,73431,heist,1292416587 +192381,73431,Morgan Freeman,1292416581 +192381,79132,action,1292416756 +192381,79132,alternate reality,1292416753 +192381,79132,surreal,1292416764 +192381,80489,acting,1292430419 +192381,80489,one dimensional characters except for Affleck. Ending trite.,1292430393 +192381,80489,too much love interest,1292430404 +192381,80489,unoriginal,1292430412 +192381,99149,Hugh Jackman,1364493401 +192409,260,scifi,1442770429 +192409,260,Star Wars,1442770434 +192477,194,Mike super recs,1138024560 +192477,1829,deep,1139753953 +192477,3038,AWESOME,1137764511 +192477,3456,Iranian,1154643463 +192477,8464,Educational,1137383633 +192482,112290,Ambitious,1424569442 +192482,112290,growing up,1424569440 +192482,112290,pseudo-intelligent,1424569438 +192482,112290,realism,1424569428 +192482,125916,abuse,1424569382 +192482,125916,book,1424569392 +192482,125916,erotic,1424569389 +192491,67087,comedy,1252701101 +192512,53326,horror,1437575563 +192512,53326,psychothriller,1437575563 +192512,53326,thriller,1437575563 +192512,116897,black comedy,1438209291 +192512,116897,dark comedy,1438209291 +192512,116897,screwball comedy,1438209291 +192535,25,atmospheric,1448118648 +192535,25,existential,1448118519 +192535,25,melancholic,1448118628 +192535,431,Al Pacino,1450180685 +192535,431,organized crime,1450180689 +192535,910,cross dressing,1448121244 +192535,923,boring,1448119350 +192535,3000,Hayao Miyazaki,1448119410 +192535,8014,Atmospheric,1448120312 +192535,8014,buddhism,1449257693 +192535,8014,great photograpy,1448120315 +192535,8014,reflective,1448120323 +192535,8014,scenic,1448120321 +192535,55247,atmospheric,1448119951 +192535,55247,inspirational,1448119971 +192535,55247,male nudity,1448119978 +192535,55247,self discovery,1448119955 +192535,55247,travel,1448119962 +192535,55247,wilderness,1448119967 +192535,72641,feel good,1449416372 +192535,72641,feel-good,1449416390 +192535,72641,inspirational,1449416374 +192535,72641,kindness of strangers,1449416380 +192535,72641,sports,1449416369 +192535,72641,touching,1449416377 +192560,1,computer animation,1183903155 +192560,1,Disney animated feature,1183933307 +192560,1,Pixar animation,1183934770 +192560,1,Téa Leoni does not star in this movie,1245093573 +192560,2,adapted from:book,1178996523 +192560,2,board game,1182730036 +192560,2,childhood recaptured,1178996523 +192560,2,game,1178996523 +192560,2,herds of CGI animals,1178996523 +192560,2,scary,1178996523 +192560,2,see also:Zathura,1178996568 +192560,2,time,1178996523 +192560,2,time travel,1178996523 +192560,7,remadeAs:Sabrina(1995),1186839362 +192560,7,remakeOf:Sabrina(1954),1186839362 +192560,7,upstairs-downstairs,1186839378 +192560,8,adapted from:book,1183425179 +192560,8,author:Mark Twain,1183417635 +192560,10,007 (series),1241137891 +192560,10,assassin,1226944839 +192560,10,killer as protagonist,1226944839 +192560,10,murder,1177184821 +192560,14,biopic,1228924881 +192560,14,character based on real person:Richard Nixon,1228924881 +192560,14,US President,1228924901 +192560,15,pirates,1183419994 +192560,17,adapted from:book,1182132297 +192560,17,author:Jane Austen,1182132297 +192560,19,private detective,1324158743 +192560,21,mafia,1177809840 +192560,21,satire:Hollywood insiders,1177849501 +192560,25,adapted from:book,1294239324 +192560,25,author:John O'Brien,1294239324 +192560,26,adapted from:play,1187306722 +192560,26,playwright:Shakespeare,1226865107 +192560,28,18th century,1283094857 +192560,28,adapted from:book,1283004395 +192560,28,Amanda Root is fabulous in this,1283004437 +192560,28,author:Jane Austen,1283004413 +192560,28,setting:England,1283094856 +192560,31,high school,1182302622 +192560,31,protagonist is a teacher,1315922582 +192560,32,adapted from/inspired by:short film,1191777022 +192560,32,nature of insanity,1191702632 +192560,32,plot point:bio-medical danger,1223689940 +192560,32,post-apocalyptic,1183932452 +192560,32,remake of a french film,1354406823 +192560,32,time travel,1178892858 +192560,34,animal:pig,1190554490 +192560,34,barnyard animals,1190554928 +192560,35,compare:Bright Star (2009),1255899179 +192560,35,compare:Carrington (1995),1255899179 +192560,35,protagonist is painter (artist),1255898214 +192560,35,protagonist is writer,1255898214 +192560,36,Nun,1189880483 +192560,38,twins/inter-related lives,1187301291 +192560,39,adapted from:book,1186883158 +192560,39,author:Jane Austen,1186883158 +192560,41,adapted from:play,1226865408 +192560,41,playwright:Shakespeare,1226864433 +192560,44,adapted from:game,1182126033 +192560,47,BFI modern classic,1177177428 +192560,47,murder,1178879954 +192560,47,serial killer,1178879954 +192560,48,Disney animated feature,1183934442 +192560,48,Related:Pocahontas (1995),1267398140 +192560,62,high school,1227235688 +192560,62,highschool music teacher,1241491628 +192560,62,inspirational teacher,1241491686 +192560,62,protagonist is a teacher,1315922557 +192560,70,Sexualized violence,1242854906 +192560,70,splatter,1242854895 +192560,70,violence,1242854913 +192560,92,related:Dr. Jekyll and Mr. Hyde,1238708760 +192560,104,setting:golf course,1199585560 +192560,104,sport:golf,1241138020 +192560,105,adapted from:book,1186881225 +192560,107,Muppets,1183929210 +192560,107,pirates,1183419579 +192560,110,Téa Leoni does not star in this movie,1245093495 +192560,111,BFI classic,1177176246 +192560,111,killer-as-protagonist(?),1214928375 +192560,111,psychopath as hero,1183930008 +192560,111,setting:NYC,1214928422 +192560,116,Oscar:documentary,1183427256 +192560,116,The Shoah,1183427223 +192560,121,based on a true story,1177806198 +192560,121,child abuse,1178373706 +192560,135,setting:submarine,1322942191 +192560,141,adapted from:play,1177802519 +192560,141,queer?,1182729898 +192560,141,RemakeOf:La Cage aux folles (1978),1182729898 +192560,150,astronauts,1241281068 +192560,150,based on a true story,1177805195 +192560,150,setting:space/Earth orbit,1223690372 +192560,150,Téa Leoni does not star in this movie,1245093511 +192560,151,rape,1241140644 +192560,153,adapted from:comic,1177805570 +192560,153,alter ego,1179176647 +192560,153,Batman (series),1241136780 +192560,158,adapted from:comic,1177806835 +192560,158,ghosts,1183336057 +192560,160,?adapted from:book,1190549121 +192560,160,author:Michael Chricton?,1241137389 +192560,162,biographical,1177818992 +192560,163,violence,1242854807 +192560,169,animal:orca,1377121937 +192560,169,animal:whale,1183417870 +192560,170,alter ego,1179177182 +192560,170,awesome soundtrack,1179584541 +192560,170,Bechdel Test:Fail,1216303548 +192560,170,computer cracker,1182800495 +192560,170,computers,1182617578 +192560,170,cool videogame (scene),1241137984 +192560,170,cyber-blackmail/intimidation,1223603640 +192560,170,cyber-intimidation,1222631682 +192560,172,adapted from:author,1177812627 +192560,172,author:William Gibson,1234309518 +192560,172,dystopia,1177812627 +192560,172,memory,1353452605 +192560,172,should dislike,1353452618 +192560,173,?android(s)/cyborg(s),1190556797 +192560,178,adapted from:play,1184950195 +192560,178,dark comedy,1184950363 +192560,178,psychic character,1184950424 +192560,178,serial killer,1184950324 +192560,180,Jay and Silent Bob,1187303982 +192560,185,computer cracker,1182800539 +192560,185,computers,1182617640 +192560,185,cyber-blackmail/intimidation,1223603376 +192560,185,cyber-intimidation,1222631662 +192560,187,Bechdel Test:Pass,1222631573 +192560,187,librarians,1181514868 +192560,187,protagonist is `party girl',1222631573 +192560,187,setting:library,1216230117 +192560,223,slackers,1177807236 +192560,231,protagonist is an idiot,1281369502 +192560,232,food/cooking,1183416082 +192560,232,remadeAs:Tortilla Soup,1178998536 +192560,232,remakeOf:Eat Drink Man Woman,1179177261 +192560,234,sexuality:BDSM,1188695481 +192560,235,film noir,1242864800 +192560,239,Disney animated feature,1183934349 +192560,242,castration,1286124168 +192560,242,opera,1177809188 +192560,246,setting:Chicago,1186434000 +192560,246,sport:basketball,1186433983 +192560,249,Beethoven,1182616127 +192560,249,biographical,1177811447 +192560,249,character based on real person:Beethoven,1229097780 +192560,249,topic:deafness,1185478889 +192560,252,character based on real person:Albert Einstein,1226526753 +192560,252,character based on real person:Marilyn Monroe,1226526743 +192560,253,adapted from:book,1186932346 +192560,253,author:Anne Price,1186932346 +192560,253,vampire,1186932346 +192560,260,awesome soundtrack,1179584567 +192560,260,Bechdel Test:Fail,1219148288 +192560,260,epic,1351990683 +192560,260,murder/fatality,1219148673 +192560,260,Téa Leoni does not star in this movie,1245093483 +192560,261,adapted from:book,1187404367 +192560,261,author:Louisa May Alcott,1187404367 +192560,265,food/cooking,1184989624 +192560,265,magic realism,1184989588 +192560,273,adapted from:book,1177809595 +192560,276,male teenager(s) & female prostitute(s),1248784794 +192560,277,Xmas theme,1182124148 +192560,280,courtroom setting,1178942738 +192560,288,serial killer,1187405999 +192560,290,rape,1241139972 +192560,293,assassin,1232048304 +192560,293,assassin-in-training,1232048403 +192560,293,Bechdel Test:Pass,1232048403 +192560,293,compare:Silas Marner (book),1299448892 +192560,293,disambiguation:Leon/The Professional & The Professional (1981),1299448855 +192560,293,disambiguation:Leon/The Professional (1994) & The Professional (1981),1232048332 +192560,293,killer-as-protagonist,1232048403 +192560,293,major recutting,1232048332 +192560,293,murder,1177797025 +192560,293,revenge as motive,1232048304 +192560,296,assassin,1217020475 +192560,296,BFI modern classic,1177177243 +192560,296,hypertextual,1177812779 +192560,296,killer-as-protagonist,1214926791 +192560,296,Môvielens bug?,1244034201 +192560,296,murder,1177812779 +192560,296,not bollywood,1240188548 +192560,296,straight plot almost unecessary,1195398058 +192560,296,tag:needless gratuitous redundancy tag,1188743804 +192560,296,Téa Leoni does not star in this movie,1245093355 +192560,296,this tag is my contribution to Movielens,1237579725 +192560,296,violent,1244033914 +192560,299,funny,1241138931 +192560,299,queer,1241138927 +192560,299,religion:Xian,1188566851 +192560,299,setting:Church,1241281519 +192560,300,topic:television game show,1190562079 +192560,306,BFI modern classic,1177176810 +192560,306,Three Colours trilogy,1241139543 +192560,307,BFI modern classic,1177176843 +192560,307,death of a child,1178999000 +192560,307,disambiguation:Blue,1233917740 +192560,307,Three Colours trilogy,1241139549 +192560,308,BFI modern classic,1177176869 +192560,308,Three Colours trilogy,1241139538 +192560,317,Xmas theme,1182124209 +192560,318,BFI modern classic,1177177578 +192560,318,Téa Leoni does not star in this movie,1245093475 +192560,319,plot revolves around troublesome dead body,1227647266 +192560,327,post-apocalyptic,1183932595 +192560,329,Based on a TV show,1178881076 +192560,329,odd-numbered ST movie,1368975865 +192560,329,Star Trek,1241139306 +192560,329,STTNG,1368975855 +192560,337,coming-of-age,1190557411 +192560,339,avuncular grandfather-figure,1241139814 +192560,339,Bechdel Test:Fail,1226526686 +192560,344,private detective,1324158718 +192560,344,quick change artist,1324158718 +192560,345,gender identity,1241136576 +192560,345,parent reunites with (or meets) their estranged grown-up child,1188565493 +192560,345,queer,1241136580 +192560,345,subgenre:road trip,1188565515 +192560,345,transvestites,1178942519 +192560,349,?adapted from:book,1190549109 +192560,349,author:Tom Clancy,1186883003 +192560,349,character:Jack Ryan,1241137330 +192560,350,adapted from:book,1186883042 +192560,350,author:John Grisham,1186883042 +192560,350,lawyer as protagonist,1186883042 +192560,353,adapted from:comic,1177807641 +192560,355,animation remade as live action,1183417668 +192560,355,Based on a TV show,1177848521 +192560,356,Bechdel Test:Fail,1226525129 +192560,356,biographical view,1188583897 +192560,356,main character is simpleminded and has big impact on world,1244034364 +192560,356,protagonist is an idiot,1281369560 +192560,356,related:Forrest Gump,1230648582 +192560,356,related:technique:Forrest Gump,1177172647 +192560,356,Téa Leoni does not star in this movie,1245093429 +192560,356,[bug?] CÃ¥n this tag be ratÄ?d or trasħed?,1245093429 +192560,357,Rowan Atkinson plays a priest in a comedy,1388945060 +192560,362,adapted from:book,1183417158 +192560,362,author:Rudyard Kipling,1183417195 +192560,364,Disney animated feature,1183933926 +192560,364,hereditary patriarchy,1187407230 +192560,364,might not like,1353452269 +192560,364,nature of leadership,1242855450 +192560,364,ostensibly for kids but: prejudice:sexism; promotion of dictatorship,1241138434 +192560,364,protagonist is royal,1269051263 +192560,364,satanically evil,1241138437 +192560,367,animal:dog,1185659504 +192560,367,annoying sexist stereotype mars story,1241138619 +192560,367,disambiguation:The Mask,1185659454 +192560,368,adapted from:TV series,1265830962 +192560,368,gambling,1265830962 +192560,370,parody,1187305850 +192560,371,journalism,1182288676 +192560,371,news media,1182288680 +192560,374,adapted from:comic,1211477218 +192560,377,Bechdel Test:Fail,1216304287 +192560,377,boring,1285588115 +192560,377,should not like,1353452246 +192560,379,time travel,1178892719 +192560,380,espionage,1284993090 +192560,380,Téa Leoni does not star in this movie,1245093616 +192560,380,theme:lying,1284993090 +192560,381,co-dependancy,1186970279 +192560,382,killer-as-protagonist,1214928723 +192560,382,werewolf,1185659262 +192560,390,camp,1184588324 +192560,393,adapted from:game,1182125858 +192560,407,protagonist is writer,1247686853 +192560,412,adapted from:book,1268935988 +192560,412,author:Edith Wharton,1268935988 +192560,419,Based on a TV show,1177805816 +192560,421,animal:horse,1184587817 +192560,434,mountain climbing,1186883071 +192560,435,Based on a TV show,1177803609 +192560,440,A presidential look-alike takes over as Commander in Chief and uses his time in office to work for ordinary people.,1229099387 +192560,440,Be satisfied with your life little man,1241137549 +192560,454,adapted from:book,1181483336 +192560,454,author:John Grisham,1241137775 +192560,454,lawyer as protagonist,1186929135 +192560,455,animal:orca,1377121947 +192560,455,animal:whale,1183417915 +192560,457,adapted from:TV series,1228924533 +192560,457,drug company,1178642630 +192560,457,FBI pursuit/case,1222631337 +192560,457,fugitive,1193526014 +192560,457,innocent person on the run,1186879617 +192560,457,murder,1177797171 +192560,457,police investigation,1186879617 +192560,457,protagonist is medical doctor,1215360704 +192560,457,setting:Chicago,1178642630 +192560,457,sewer/tunnel chase,1181702318 +192560,457,Téa Leoni does not star in this movie,1245093503 +192560,457,the comfort food of movies,1301881031 +192560,457,video surveillance,1222631372 +192560,466,parody,1183931169 +192560,480,adapted from:book,1182617326 +192560,480,author:Michael Crichton,1182617326 +192560,480,herds of CGI animals,1178996763 +192560,480,Téa Leoni does not star in this movie,1245093464 +192560,480,[bug¿] Ä°s it true that tags that canñot be deleted make it impossible to view other tãgs?,1244035109 +192560,480,[bug¿] do you think that ML cares about the bugs related to accénted characters?,1244035412 +192560,480,[bug¿] If it is trué that impossible to delete tags â??those with accents for example â?? break multîple parts of the tagging syÅ?tem then ML should fix that bug,1245093464 +192560,485,compareTo:Last Action Hero,1234292081 +192560,485,parody,1178372926 +192560,488,adultery,1176605390 +192560,488,alter ego,1179177160 +192560,495,BFI classic,1177175090 +192560,497,adapted from:play,1182289031 +192560,497,playwright:Shakespeare,1226865017 +192560,500,gender disguise,1182729960 +192560,500,movie not to see,1353452293 +192560,500,nanny is secretly blood relative,1389146596 +192560,506,adapted from:book,1187382154 +192560,506,author:Virginia Woolf,1187382154 +192560,506,gender identity,1188565714 +192560,508,courtroom,1178373459 +192560,511,sport:American football,1178980856 +192560,512,adapted from:book,1187384069 +192560,512,author:Robert Heinlein,1187384069 +192560,515,adapted from:book,1238324811 +192560,517,murder,1184722010 +192560,517,xenophobic?,1189868878 +192560,519,android(s)/cyborg(s),1190556849 +192560,519,crime-fighting/police robot,1298163775 +192560,520,Gross-out,1242855896 +192560,524,sport:American football,1178980803 +192560,527,based on a true story,1183426651 +192560,527,compassionate,1245093646 +192560,527,murder,1190079262 +192560,527,Nazis,1177818962 +192560,527,Oscar:Editing,1182800217 +192560,527,The Shoah,1183426615 +192560,538,adapted from:play,1177798360 +192560,541,adapted from:book,1177801987 +192560,541,agent/assassin with false memories/amnesia,1358039403 +192560,541,android(s)/cyborg(s),1190557048 +192560,541,assassin,1178996822 +192560,541,author:Philip K. Dick,1181919015 +192560,541,beautiful effects,1215882528 +192560,541,Bechdel Test:Fail,1323099824 +192560,541,begins with big eye,1323099817 +192560,541,BFI modern classic,1177176992 +192560,541,cinematic watershed,1358039412 +192560,541,dystopia,1177802613 +192560,541,great cinematography,1358039414 +192560,541,killer-as-protagonist,1214926553 +192560,541,living a fictional life,1352827472 +192560,541,memory,1352827454 +192560,541,memory makes us who we are,1358039392 +192560,541,murder,1177797245 +192560,541,reference:Blade Runner,1290871032 +192560,541,related:Blade Runner,1249785830 +192560,541,setting:LA,1183216426 +192560,546,adapted from:game,1182125949 +192560,546,animation remade as live action,1183417852 +192560,550,group sex,1177812481 +192560,551,Halloween theme,1183857893 +192560,551,Xmas,1182124353 +192560,554,murder,1178371899 +192560,558,dragon,1367952933 +192560,585,based on a TV show,1218400875 +192560,586,Xmas theme(?),1182124900 +192560,587,ghosts/afterlife,1183335794 +192560,587,potter,1247846241 +192560,587,protagonist is recently widowed,1201404329 +192560,587,remakeOf:Truly Madly Deeply,1177185695 +192560,588,Disney animated feature,1183933513 +192560,589,android(s)/cyborg(s),1190557025 +192560,589,killer-as-protagonist,1214926990 +192560,589,murder,1177797480 +192560,589,Téa Leoni does not star in this movie,1245093534 +192560,589,time travel,1178891872 +192560,590,Téa Leoni does not star in this movie,1245093542 +192560,592,adapted from:comic,1177802426 +192560,592,alter ego,1179176613 +192560,592,Batman (series),1241136759 +192560,592,Téa Leoni does not star in this movie,1245093523 +192560,592,villain:The Joker,1222038289 +192560,593,author:Thomas J. Harris,1244032938 +192560,593,BFI modern classic,1177177453 +192560,593,cannibalism,1244032847 +192560,593,character:Hannibal Lecter,1244032832 +192560,593,gruesome,1244032871 +192560,593,murder,1244032984 +192560,593,prequel to:Hannibal,1178880247 +192560,593,psychiatrist as protagonist,1241139196 +192560,593,sequel to:Silence Of The Lambs,1178880247 +192560,593,serial killer,1244032795 +192560,593,Téa Leoni does not star in this movie,1245093451 +192560,593,violent,1244032887 +192560,593,[bugâ?½] taÄ£s contaïning aÄ?çented characÈ?erÅ¡give ML indigestion. Will this ever be fixed¿,1245093451 +192560,594,adapted from:book,1340222428 +192560,594,Disney animated feature,1183934059 +192560,594,subgenre:fairy tale,1183934059 +192560,594,tale:Snow White (A-T #709),1340222340 +192560,595,Bechdel Test:Fail,1216304175 +192560,595,Disney animated feature,1183933529 +192560,595,subgenre:fairy tale,1182098154 +192560,596,Disney animated feature,1183934001 +192560,596,puppetry,1183416530 +192560,597,plot:client falls in love with sex worker,1245005670 +192560,597,protagonist is a prostitute,1383533180 +192560,597,rags to riches,1245005696 +192560,608,horrifying (but not Horror genre),1245092864 +192560,608,hostage,1181918157 +192560,608,murder,1181916266 +192560,608,police,1181916266 +192560,608,protagonist sells cars,1222631143 +192560,608,violent,1245092869 +192560,608,will not like,1353452222 +192560,613,adapted from:book,1343247816 +192560,613,author:Charlotte Bronte,1343247816 +192560,616,Disney animated feature,1183933511 +192560,628,courtroom drama,1178372340 +192560,628,murder,1178372340 +192560,636,adapted from:book,1226944577 +192560,636,author:Dennis Cooper,1226944577 +192560,636,serial killer,1226944577 +192560,637,Based on a TV show,1187404121 +192560,648,Based on a TV show,1177818586 +192560,648,might hate,1353452670 +192560,648,murder,1177795190 +192560,661,adapted from:book,1183417175 +192560,661,author:Roald Dahl,1183417175 +192560,661,Disney animated feature,1183933836 +192560,663,based on a TV show,1186933033 +192560,663,sketch comedy,1188585572 +192560,671,Based on a TV show,1188583513 +192560,671,MST3K,1183932357 +192560,673,animation & live action interact,1183417523 +192560,709,adapted from:book,1181918278 +192560,709,author:Charles Dickens,1181918278 +192560,709,Disney animated feature,1183933978 +192560,711,animal:porpoise,1183930922 +192560,711,Based on a TV show?,1183417402 +192560,714,BFI modern classic,1177178019 +192560,714,western,1177808036 +192560,720,claymation,1178998934 +192560,728,adapted from:book,1280411760 +192560,728,author:Stella Gibbons,1280411912 +192560,728,Bechdel Test:Pass,1280411959 +192560,728,Jane Austen,1280411939 +192560,728,Made for TV,1280411835 +192560,728,protagonist is writer,1280411939 +192560,728,setting:farm,1280411800 +192560,728,setting:London (UK),1280411800 +192560,728,setting:rural England,1280411781 +192560,733,setting:Alcatraz,1245637193 +192560,733,setting:prison,1245637193 +192560,736,co-writer:Michael Crichton,1190554670 +192560,743,parody,1182638956 +192560,743,related:007 (series),1206639819 +192560,745,Aardman studios,1241139747 +192560,745,Bechdel Test:Fail,1216303949 +192560,745,claymation,1182301269 +192560,750,adapted from:book,1297423795 +192560,750,author:Peter George,1297423795 +192560,750,Bechdel Test:Fail,1297396668 +192560,750,compare:Fail-Safe,1297396668 +192560,750,dark comedy,1182289149 +192560,750,satire,1177808488 +192560,750,significant character in a wheelchair,1280796980 +192560,750,US president,1297396697 +192560,755,adapted from:book,1257651531 +192560,755,author:Rudyard Kipling,1257651531 +192560,778,adapted from:book,1247843421 +192560,778,author:Irvine Walsh,1247843421 +192560,778,BFI modern classic,1177177690 +192560,780,Téa Leoni does not star in this movie,1245093601 +192560,782,related:Star Wars,1241881130 +192560,783,adapted from:book,1183417148 +192560,783,author:Victor Hugo,1248174539 +192560,783,Bechdel Test:Fail,1248174568 +192560,783,Disney animated feature,1183933738 +192560,785,sport:10 pin bowling,1187302090 +192560,800,incest,1238708229 +192560,805,adapted from:book,1190550542 +192560,805,author:John Grisham,1241139573 +192560,805,courtroom drama,1178373542 +192560,805,murder,1178373543 +192560,805,racism,1241140682 +192560,805,rape,1241139568 +192560,818,Based on a TV show,1177818745 +192560,837,author:Roald Dahl,1187304403 +192560,838,adapted from:book,1186923527 +192560,838,author:Jane Austen,1186923527 +192560,839,adapted from:comic,1177807650 +192560,849,character:Snake Plissken,1346602699 +192560,849,dystopia,1177808897 +192560,858,mafia,1177810030 +192560,866,cameo:Susie Bright,1287341206 +192560,866,murder,1188697041 +192560,880,adapted from:book,1177798801 +192560,880,author:H. G. Wells,1275184151 +192560,880,related:The Island of Dr. Moreau (book),1275184151 +192560,891,character:Michael Myers,1354407787 +192560,891,murder,1354407787 +192560,891,serial killer,1354407787 +192560,891,subgenre:slasher,1354407787 +192560,892,adapted from:play,1187395482 +192560,892,playwright:Shakespeare,1226865051 +192560,893,disambiguation:Mother Night/Night Mother,1238709503 +192560,897,adapted from:book,1343247413 +192560,897,author:Ernest Hemingway,1343247413 +192560,898,adapted from B'way,1177186389 +192560,899,BFI classic,1177176285 +192560,900,France,1186855061 +192560,902,adapted from:book,1190566735 +192560,902,animal:cat,1360805746 +192560,902,author:Truman Capote,1190566735 +192560,902,Bechdel Test:Fail,1360805951 +192560,902,death/fatality,1360820302 +192560,902,gigolo,1360820311 +192560,902,protagonist is a gold digger,1360805799 +192560,902,protagonist is writer,1360805773 +192560,902,protagonist is `party girl',1360805942 +192560,903,adapted from:book,1353296711 +192560,903,alter ego,1353787339 +192560,903,Bechdel Test:Fail,1353787377 +192560,903,BFI classic,1177176580 +192560,903,death/fatality,1353787349 +192560,903,eerie,1353787367 +192560,903,intense,1353787389 +192560,903,nun (scene),1353787359 +192560,903,setting:San Francisco,1353296711 +192560,904,amateur detective,1190511360 +192560,904,murder,1181657616 +192560,904,remadeAs:Disturbia (2007),1190511226 +192560,904,remakeOf:Rear Window (1954),1190511227 +192560,904,significant character in a wheelchair,1280796998 +192560,906,memory,1186881123 +192560,907,Astaire and Rogers,1241137854 +192560,909,adultery,1177802294 +192560,910,Bechdel Test:Pass,1297547375 +192560,910,Compare:Some Like It Hot,1297547375 +192560,910,mafia,1297547375 +192560,910,men disguised as women,1178942156 +192560,910,murder,1297547375 +192560,910,organized crime,1297547375 +192560,910,protagonist is musician,1297547375 +192560,910,"quote:""five by five""",1297783547 +192560,910,setting:Chicago,1297547375 +192560,910,setting:Florida,1297547375 +192560,910,setting:yacht,1297547375 +192560,910,sexy,1297547420 +192560,912,adultery,1177797400 +192560,912,Bechdel Test:Fail,1268268270 +192560,912,murder,1177797400 +192560,912,music is key to story (not Musical genre),1215360808 +192560,912,Nazis,1190369910 +192560,912,setting:nightclub/casino,1268268265 +192560,913,adapted from:book,1177799058 +192560,913,author:Dashiell Hammett,1181917581 +192560,913,private detective,1181916404 +192560,914,adapted from B'way,1177187445 +192560,914,source:Pygmalion myth,1379087667 +192560,915,remadeAs:Sabrina(1995),1186839368 +192560,915,remakeOf:Sabrina(1954),1186839368 +192560,915,upstairs-downstairs,1183907429 +192560,916,Bechdel test:pass (barely),1269052589 +192560,916,drug use,1269052282 +192560,916,mostly about a single day,1269052282 +192560,916,notable:taxi driver (scene),1269052985 +192560,916,protagonist is journalist/reporter,1269052282 +192560,916,protagonist is royal,1269052282 +192560,916,protagonist is young princess & heir,1269052282 +192560,916,royal pretends to be commoner,1269052282 +192560,916,setting:Rome,1269052282 +192560,916,slapstick,1269052282 +192560,916,theme:elevation through self-sacrifice,1269052755 +192560,919,animal:dog,1191785815 +192560,919,Bechdel Test:Pass,1216303913 +192560,919,BFI classic,1177176639 +192560,919,colour/B&W combo,1357408905 +192560,919,death/fatality,1370270912 +192560,919,queer,1241139854 +192560,919,seeAlso:The Wizard of Oz (1939),1362778661 +192560,919,WizardOfOz,1178998906 +192560,922,classic,1267292931 +192560,922,has-been,1267292931 +192560,922,kept man/gigolo,1267292930 +192560,922,loss of innocence,1267292930 +192560,922,murder,1267292930 +192560,922,protagonist is actor,1267292930 +192560,922,protagonist is writer,1267292930 +192560,922,sardonic,1267292930 +192560,922,setting:Hollywood,1267292930 +192560,922,setting:movie studio,1267292930 +192560,922,setting:Paramount studios,1267292930 +192560,922,theatrical people/inside the theatre or cinema/actors & acting,1267293072 +192560,922,theme:ambition,1267292931 +192560,922,theme:opportunism & exploitation,1267292930 +192560,922,topic:Hollywood industry,1267293072 +192560,923,BFI classic,1177174823 +192560,923,biographical view,1187400292 +192560,924,adapted from:book,1177802136 +192560,924,artificial intelligence,1182616296 +192560,924,author:Arthur C. Clarke,1182616291 +192560,924,related:2001,1249785871 +192560,924,setting:space/space ship,1223690442 +192560,924,video surveillance,1222631615 +192560,926,"""bitchy""",1267291855 +192560,926,classic,1267291855 +192560,926,great acting/subtle performances,1267291855 +192560,926,great dialogue,1368049096 +192560,926,protagonist is actor,1267291855 +192560,926,protagonist is stage performer,1267292977 +192560,926,psychodrama,1267291855 +192560,926,sociopath,1267291855 +192560,926,technique:narration over freeze-frame,1267291954 +192560,926,theatrical people/inside the theatre or cinema/actors & acting,1267291855 +192560,926,theme:ambition,1267291855 +192560,927,adapted from B'way,1177186724 +192560,928,adapted from:book,1278988270 +192560,928,adultery,1278988327 +192560,928,animal:dog,1278988276 +192560,928,author:Daphne Du Maurier,1278988270 +192560,928,Bechdel Test:Pass (technically but not really),1278988311 +192560,928,death/fatality,1278988327 +192560,928,dwelling as character,1279028555 +192560,928,ghosts/afterlife,1279028542 +192560,928,Gothic,1278988267 +192560,928,notable:F/X:fire,1279028568 +192560,928,protagonist is servant,1315073194 +192560,928,See also:Rebecca,1303955996 +192560,928,upstairs-downstairs,1279026192 +192560,929,journalism,1182288859 +192560,930,espionage,1361136450 +192560,930,murder,1361136455 +192560,930,overbearing mother,1361136479 +192560,930,Related:Notorious (1946),1268268065 +192560,933,adapted from:book,1181414714 +192560,933,murder,1181422830 +192560,933,Oscar:Cinematography,1181414923 +192560,933,scene:rendezvous in flower market,1181414607 +192560,933,subgenre:cat burglar,1181414945 +192560,937,setting:Paris,1383533218 +192560,937,subgenre:farce,1383533218 +192560,938,adapted from:play,1177809883 +192560,942,adapted from:book,1344826405 +192560,942,author:Vera Caspary,1344826405 +192560,942,Bechdel Test:Pass (technically but not really),1344826332 +192560,942,murder,1344826332 +192560,942,police investigation,1344826373 +192560,942,protagonist is journalist,1344826332 +192560,943,ghosts/afterlife,1183336191 +192560,944,adapted from:book,1183425166 +192560,945,Astaire and Rogers,1241139610 +192560,946,BFI classic,1177176383 +192560,946,dark comedy,1241139587 +192560,946,The Shoah,1182289204 +192560,949,adapted from:book,1217858797 +192560,949,author:John Steinbeck,1299413925 +192560,950,Nick and Nora Charles (series),1206640858 +192560,951,adapted from B'way,1177186549 +192560,951,battle of the sexes,1383358309 +192560,951,remake of:The Front Page (1931),1383365849 +192560,951,subgenre:screwball,1383358309 +192560,951,suicide,1383365849 +192560,952,adapted from:book,1237578722 +192560,952,author:Jules Verne,1237578722 +192560,953,angelic intervention,1184990140 +192560,953,Xmas theme,1181482734 +192560,954,subgenre:political corruption,1241282391 +192560,954,topic:US political corruption,1223086889 +192560,955,AFI top 100 (#97),1199584343 +192560,955,AFI top 100 laughs (#14),1199585812 +192560,955,AFI top 100 passions (#51),1199585812 +192560,955,animal:dog,1199587129 +192560,955,animal:leopard,1199584289 +192560,955,Cary Grant&Katherine Hepburn,1241136974 +192560,955,genre:romantic comedy,1241136980 +192560,955,paleontologist as protagonist,1199587129 +192560,955,plot point:dinosaur skeleton,1199647469 +192560,955,psychiatrist as character,1199647469 +192560,955,related:Bringing Up Baby (1938),1199587129 +192560,955,setting:golf course (scene),1199585580 +192560,955,subgenre:screwball farce,1199647469 +192560,955,subgenre:slapstick (mild),1199647469 +192560,959,adapted from:book,1270338858 +192560,959,author:Somerset Maugham,1270338858 +192560,959,bildungsroman,1270338858 +192560,959,kuenstlerroman,1270339917 +192560,965,adapted from:book,1186853893 +192560,965,fugitive,1186853895 +192560,965,not true to original version,1186853893 +192560,969,Bogart & Hepburn,1241136592 +192560,971,?author:Tennessee Williams,1183907124 +192560,976,adapted from:book,1177818394 +192560,976,author:Hemingway,1183901802 +192560,1005,sport:ice hockey,1186884503 +192560,1006,adapted from:book,1178372808 +192560,1006,author:John Grisham,1244557470 +192560,1006,courtroom drama,1178372808 +192560,1006,murder,1178372808 +192560,1006,racism,1241137140 +192560,1007,Disney studios,1183934202 +192560,1009,Disney studios,1183934336 +192560,1009,telepathy,1183934336 +192560,1010,Disney studios,1183934392 +192560,1010,Herbie The Love Bug (series),1206640628 +192560,1011,Herbie The Love Bug (series),1206640620 +192560,1012,animal:dog,1183906931 +192560,1012,tear jerker,1183416975 +192560,1013,twins/inter-related lives?,1187306939 +192560,1014,Disney studios,1183934026 +192560,1016,animal:dog,1183908234 +192560,1017,Disney studios,1183934171 +192560,1019,adapted from:book,1186853819 +192560,1019,author:Jules Verne,1186853819 +192560,1019,setting:submarine,1322942303 +192560,1020,sport:bobsledding,1186921965 +192560,1021,sport:baseball?,1186855250 +192560,1022,Disney animated feature,1183933361 +192560,1022,subgenre:fairy tale,1182098069 +192560,1023,adapted from:book,1183416937 +192560,1023,Disney animated feature,1183932766 +192560,1023,series:Pooh,1183908597 +192560,1024,Disney animated feature,1183934606 +192560,1025,Arthurian legend,1265830129 +192560,1025,Disney animated feature,1183933383 +192560,1028,adapted from:book,1177799199 +192560,1028,animation & live action interact (scene),1183419680 +192560,1028,author:P.L. Travers,1385764529 +192560,1028,comedy of manners,1177799199 +192560,1028,Disney studios,1183933945 +192560,1028,magical nanny,1388895280 +192560,1028,multiple roles,1190564008 +192560,1029,circus,1182132004 +192560,1029,Disney animated feature,1183932913 +192560,1029,mother-son relationship,1230646717 +192560,1029,orphaned cartoon character,1177808650 +192560,1029,subgenre:fable,1182132004 +192560,1030,animation & live action interact,1183934496 +192560,1030,Disney animated feature,1183934428 +192560,1031,adapted from:book,1275183175 +192560,1031,animal:cat,1275183175 +192560,1031,animal:rabbit,1275183175 +192560,1031,animation & live action interact,1275183077 +192560,1031,author:Mary Norton,1275183175 +192560,1031,Bechdel Test:Pass (barely),1275183252 +192560,1031,evil churchman,1275183175 +192560,1031,library (scene),1275183111 +192560,1031,magic,1275183077 +192560,1031,motorcycle,1275183175 +192560,1031,related:The Island of Dr. Moreau (book),1275184061 +192560,1031,setting:England,1275183111 +192560,1031,setting:London (UK),1275183111 +192560,1031,setting:WWII,1275183111 +192560,1031,sport:soccer football,1275183175 +192560,1032,adapted from:book,1183416987 +192560,1032,author:Lewis Carroll,1190555827 +192560,1032,Disney animated feature,1183932734 +192560,1033,Disney animated feature,1183933694 +192560,1035,Bechdel Test:Pass,1216304236 +192560,1035,Nazis,1190573886 +192560,1042,muscial band,1186926118 +192560,1059,adapted from:play,1178923343 +192560,1059,playwright:Shakespeare,1226526928 +192560,1059,Red Curtain trilogy,1182617476 +192560,1061,child abuse,1244320926 +192560,1066,Astaire and Rogers,1241139179 +192560,1068,noir thriller,1367952585 +192560,1073,adapted from:book,1183912931 +192560,1073,author:Roald Dahl,1184587435 +192560,1073,remadeAs:Charlie and the Chocolate...(2005),1186839602 +192560,1073,remakeOf:Willy Wonka...(1971),1186839602 +192560,1079,adultery,1176602217 +192560,1079,Bechdel Test:Fail,1228222670 +192560,1079,infidelity,1176602217 +192560,1079,stuttering,1228222670 +192560,1080,Monty Python,1183911718 +192560,1080,religion:Xian,1182123133 +192560,1081,?alter ego,1190556494 +192560,1081,Bechdel Test:Pass,1216303313 +192560,1081,mafia,1177798064 +192560,1081,queer,1241139730 +192560,1086,adapted from:play,1357084838 +192560,1086,Bechdel Test:Fail,1216303794 +192560,1086,murder,1177797335 +192560,1086,police detective,1357084941 +192560,1088,See:Dirty Dancing (1987),1312856532 +192560,1089,brutal,1248782831 +192560,1091,plot revolves around troublesome dead body,1186968671 +192560,1095,adapted from:play,1238322689 +192560,1095,playwright:David Mamet,1238322689 +192560,1095,writer:David Mamet,1238322663 +192560,1096,adapted from:book,1183427031 +192560,1096,The Shoah,1183426932 +192560,1097,anti-government paranoia,1211828048 +192560,1097,children vs. parents,1241137656 +192560,1097,might dislike,1353452333 +192560,1099,adapted from:play,1182124262 +192560,1099,author:Charles Dickens,1182124262 +192560,1099,Xmas theme,1182124262 +192560,1100,sport:car racing (NASCAR),1206641560 +192560,1101,aviation,1186927097 +192560,1101,fighter jet planes,1211828205 +192560,1101,military recruits/training,1186927097 +192560,1104,adapted from:play,1182124093 +192560,1104,playwright:Tennessee Williams,1211546494 +192560,1104,setting:New Orleans,1222136642 +192560,1111,animals,1218636196 +192560,1120,biographical view,1188586277 +192560,1125,Inspector Clouseau (series),1241139008 +192560,1127,Underwater,1182616381 +192560,1129,dystopia,1177808902 +192560,1135,military recruits/training,1183932032 +192560,1136,Monty Python,1183911705 +192560,1140,biographical,1186923705 +192560,1147,character based on real person:Muhammad Ali,1222632920 +192560,1147,sport:boxing,1241139808 +192560,1148,Aardman studios,1241139757 +192560,1148,Bechdel Test:Fail,1216303281 +192560,1148,claymation,1182301439 +192560,1161,?adapted from:book,1182098291 +192560,1172,centred on movie theatre,1215883626 +192560,1172,Jamie's Dad's favourites,1270339080 +192560,1172,setting:movie cinema,1252727582 +192560,1175,dark comedy,1183416379 +192560,1175,dystopia,1183416379 +192560,1175,food/cooking?,1183416379 +192560,1179,adapted from:book,1177810446 +192560,1183,adapted from:book,1177808846 +192560,1183,adultery,1190080394 +192560,1185,deformity/disability,1222632435 +192560,1188,Bechdel Test:Fail,1217017336 +192560,1188,competition:dance,1188589849 +192560,1188,feel good,1177801267 +192560,1188,Red Curtain trilogy,1185809600 +192560,1188,see also:Little Miss Sunshine,1177796892 +192560,1188,see also:Strictly Ballroom,1177849087 +192560,1188,sport:dancing,1188589859 +192560,1191,rock concert footage,1182514084 +192560,1193,adapted from:book,1226971348 +192560,1193,author:Ken Kesey,1226971348 +192560,1193,lobotomy,1311770407 +192560,1193,mental illness,1352686376 +192560,1193,nature of insanity,1191702611 +192560,1193,setting:asylum,1311770400 +192560,1197,adapted from:book,1182098252 +192560,1197,author:William Goldman,1182123602 +192560,1197,coming-of-age,1182123514 +192560,1197,pirates (minor),1183420064 +192560,1197,screenwriter:William Goldman,1182123602 +192560,1197,subgenre:fable,1182098230 +192560,1198,Bechdel Test:Fail,1244497393 +192560,1198,Nazis,1244497402 +192560,1199,dystopia,1177802595 +192560,1199,Kafka-esque,1190564437 +192560,1202,BFI modern classic,1177177774 +192560,1203,adapted from:play,1186853785 +192560,1203,courtroom drama,1178371998 +192560,1204,awesome soundtrack,1241138390 +192560,1204,Bechdel Test:Fail,1216303521 +192560,1204,BFI classic,1177175165 +192560,1204,biographical,1186972077 +192560,1204,cult of masculinity,1267291108 +192560,1204,extraordinary!!!,1241138396 +192560,1204,no love story,1177175181 +192560,1204,no women,1241138384 +192560,1204,rape (implied),1267291108 +192560,1206,adapted from:book,1270338777 +192560,1206,author:Anthony Burgess,1270338777 +192560,1206,bildungsroman,1270338777 +192560,1206,brainwashing,1241140221 +192560,1206,dystopia,1177807345 +192560,1206,psychiatry,1177171164 +192560,1206,rape,1241140216 +192560,1207,adapted from:book,1177798247 +192560,1207,author:Harper Lee,1186925908 +192560,1207,courtroom drama,1178371958 +192560,1207,murder,1177798217 +192560,1208,adapted from:book,1177805176 +192560,1208,Bechdel Test:Fail,1267291356 +192560,1208,cult of masculinity,1267291360 +192560,1208,insanity during war,1241136685 +192560,1208,military,1241136689 +192560,1208,no title sequence,1215564544 +192560,1210,Téa Leoni does not star in this movie,1245093609 +192560,1210,will not like,1353452202 +192560,1212,Bechdel Test:Pass (technically but not really),1279413036 +192560,1212,BFI classic,1177176336 +192560,1212,cemetary funeral,1279413049 +192560,1212,disorientating,1279413076 +192560,1212,disorientation by foreign language,1279413096 +192560,1212,disorientation by soundtrack music,1279413112 +192560,1212,great cinematography,1181702289 +192560,1212,great visuals,1279413124 +192560,1212,murder,1181702289 +192560,1212,novelist as protagonist,1181735712 +192560,1212,plot point:animal:cat,1279413512 +192560,1212,setting:Vienna,1181735736 +192560,1212,sewer/tunnel chase,1181702289 +192560,1212,the nature of love,1279413512 +192560,1213,mafia,1177810278 +192560,1214,death/fatality,1279028942 +192560,1214,dwelling as character,1279028933 +192560,1214,subgenre:haunted house,1224439379 +192560,1216,scuba diving,1182615871 +192560,1217,Shakespearean,1211502333 +192560,1219,Hitchcock meant Psycho to be a comedy!,1181482984 +192560,1219,murder,1178879997 +192560,1219,remakeOf:Psycho (1960),1178880784 +192560,1219,see also:Psycho (1960),1178880708 +192560,1219,see also:Psycho (1998),1178880708 +192560,1220,Based on a TV show,1177803783 +192560,1220,cameo-fest,1186925236 +192560,1220,gag:tossing lighter out of car,1268504469 +192560,1220,music,1182302267 +192560,1220,music:rhythm & blues,1190557695 +192560,1220,neo-Nazis,1190557705 +192560,1220,SNL alums,1211807890 +192560,1220,subgenre:buddies,1181482435 +192560,1220,subgenre:road trip,1181482435 +192560,1221,mafia,1177810034 +192560,1222,military,1177809688 +192560,1223,Aardman studios,1183417088 +192560,1223,Bechdel Test:Fail,1216303293 +192560,1223,claymation,1182301466 +192560,1224,adapted from:play,1186931296 +192560,1224,playwright:Shakespeare,1226865142 +192560,1225,adapted from B'way,1177186430 +192560,1225,biographical,1183929915 +192560,1227,BFI modern classic,1177177357 +192560,1227,major recutting,1177796002 +192560,1227,rape,1241140304 +192560,1228,sport:boxing,1241138981 +192560,1230,setting:NYC,1223086050 +192560,1231,adapted from:book,1241280994 +192560,1231,astronauts,1241280792 +192560,1231,author:Tom Wolfe,1241281030 +192560,1231,Bechdel Test:Fail,1286023203 +192560,1231,BFI modern classic,1177177269 +192560,1231,topic:NASA,1241280773 +192560,1232,adapted from:book,1245001408 +192560,1233,setting:submarine,1322942236 +192560,1233,submarine,1186880500 +192560,1234,Bechdel Test:Fail,1216304023 +192560,1234,deception to win wager,1317744543 +192560,1234,plot:wager,1317744511 +192560,1234,scam,1183911825 +192560,1237,BFI classic,1177176187 +192560,1237,death personified,1279395735 +192560,1240,android(s)/cyborg(s),1190557015 +192560,1240,assassin,1251677782 +192560,1240,BFI modern classic,1177177493 +192560,1240,murder,1177797464 +192560,1240,time travel,1178891938 +192560,1243,adapted from:play,1346602654 +192560,1243,playwright:Shakespeare,1346602654 +192560,1243,playwright:Tom Stoppard,1346602654 +192560,1243,related:Hamlet,1219067507 +192560,1243,screenwriter:Tom Stoppard,1346602654 +192560,1244,awesome soundtrack,1179584655 +192560,1244,setting:NYC,1178978858 +192560,1246,high school,1182729711 +192560,1246,melodrama,1182729678 +192560,1247,adultery,1176602928 +192560,1247,See also:Rumour Has It,1178891814 +192560,1247,Simon & Garfunkel soundtrack,1183908952 +192560,1248,major recutting,1177795958 +192560,1249,assassin,1178982396 +192560,1249,assassin-in-training,1186187490 +192560,1249,killer-as-protagonist,1214926771 +192560,1249,murder,1178982407 +192560,1249,RemakeOf:La Femme Nikita(1990),1178982396 +192560,1250,adapted from:book,1267290889 +192560,1250,Bechdel Test:Fail,1267290889 +192560,1250,cult of masulinity,1267290889 +192560,1250,Dark humour (not a comedy),1267290889 +192560,1250,death/fatality,1267290889 +192560,1250,Nature of leadership,1267290888 +192560,1250,setting:POW camp,1267290889 +192560,1250,theme:civilization vs. anarchy,1267290889 +192560,1250,Yanks vs. Brits,1267290889 +192560,1251,remake of 8-and-a-half,1262140846 +192560,1252,cameo:Roman Polanski,1191207744 +192560,1252,murder,1191206469 +192560,1252,prequel to:The Two Jakes,1241137242 +192560,1252,private detective,1191206469 +192560,1252,sequel to:Chinatown,1241137250 +192560,1252,setting:LA,1183902705 +192560,1252,water,1191206469 +192560,1254,quote:`we don't need no steenkin badges',1187395325 +192560,1256,Marx Brothers,1185048677 +192560,1258,adapted from:book,1279029538 +192560,1258,alcholism,1279029494 +192560,1258,author:Stephen King,1315073067 +192560,1258,dwelling as character,1279029494 +192560,1258,mental illness,1352686324 +192560,1258,protagonist is writer,1279029560 +192560,1258,subgenre:haunted house,1279029494 +192560,1259,INNOCENCE LOST,1241141305 +192560,1260,BFI classic,1177175300 +192560,1260,serial killer,1254532797 +192560,1262,related:The Great Escape,1224434925 +192560,1265,Bechdel Test:Fail,1278429695 +192560,1265,BFI modern classic,1177177030 +192560,1265,Bill Murray movie with frozen dead person,1278429728 +192560,1265,death/fatality,1278429737 +192560,1265,hypertextual,1177810503 +192560,1265,mostly about a single day,1269052932 +192560,1265,time,1177812724 +192560,1265,time loop,1182005434 +192560,1265,utopia,1182005432 +192560,1265,weather reporter as protagonist,1184950080 +192560,1266,BFI modern classic,1177177718 +192560,1266,genre:western noir,1216172221 +192560,1267,adapted from:book,1178998293 +192560,1267,assassin,1178998293 +192560,1267,assassin shooting in auditorium,1215362549 +192560,1267,BFI classic,1177175395 +192560,1267,incest (scene),1241138593 +192560,1267,killer-as-protagonist,1214927025 +192560,1267,murder,1178998293 +192560,1267,remakeOf:The Manchurian Candidate(1962),1178998351 +192560,1267,US VP,1287285469 +192560,1269,adapted from:play,1280046041 +192560,1269,clownish Cary Grant,1280046065 +192560,1269,frantic,1280046065 +192560,1269,insanity,1280046041 +192560,1269,mad old woman is killer in comedy,1388895240 +192560,1269,murder,1177802301 +192560,1269,newlyweds,1280046042 +192560,1270,time travel,1178879136 +192560,1277,adapted from:book,1177807790 +192560,1277,men being taught how to woo,1312856473 +192560,1277,mentor/trainer,1312856473 +192560,1277,related:Cyrano,1177185808 +192560,1278,current,1256245848 +192560,1280,infidelity,1211501630 +192560,1280,notable:foot massage,1183416181 +192560,1280,social commentary,1177798457 +192560,1281,Nazis,1190371306 +192560,1282,Disney animated feature,1183932744 +192560,1283,assassin,1178998494 +192560,1283,Bechdel Test:Fail,1216303535 +192560,1283,genre:western noir,1216171557 +192560,1283,murder,1177797112 +192560,1283,related:High Noon,1177848877 +192560,1283,time,1177848406 +192560,1283,western,1177811081 +192560,1284,adapted from:book,1179117971 +192560,1284,assassin,1178998795 +192560,1284,author:Raymond Chandler,1337487850 +192560,1284,Bechdel Test:Fail,1216303858 +192560,1284,BFI classic,1177169824 +192560,1284,Bogart & Bacall,1241136892 +192560,1284,character:Philip Marlowe,1241136904 +192560,1284,infidelity,1176604645 +192560,1284,major reshooting,1177169849 +192560,1284,murder,1176604645 +192560,1284,private detective,1181916320 +192560,1284,sexy,1297547441 +192560,1285,Bechdel Test:Pass,1217017206 +192560,1285,dark comedy,1182289178 +192560,1285,high school,1182289178 +192560,1286,time travel,1178943558 +192560,1287,subgenre:sword and sandal,1186856400 +192560,1288,Bechdel Test:Fail,1216304246 +192560,1288,mockumentary,1182123074 +192560,1288,music:metal,1241139530 +192560,1291,Nazis,1211806377 +192560,1292,main character is simpleminded and has big impact on world,1244035489 +192560,1292,plot point:television,1190561218 +192560,1292,protagonist is an idiot,1281369460 +192560,1292,satire,1177801998 +192560,1293,Anglo-Indian relations,1296487384 +192560,1293,biographical,1187399204 +192560,1293,topic:Ghandi,1224434883 +192560,1295,adapted from:book,1186971875 +192560,1295,author:Milan Kundera,1241139694 +192560,1295,feel good,1177801243 +192560,1296,adapted from:book,1287341300 +192560,1296,author:E. M. Forster,1287341300 +192560,1297,plot point:sudden scientific insight,1178892103 +192560,1297,US college students,1178892103 +192560,1298,rape,1241140634 +192560,1298,Rock Opera,1187395000 +192560,1302,sport:baseball,1183930079 +192560,1303,adapted from:book,1242856671 +192560,1303,author:Rudyard Kipling,1242856657 +192560,1304,screenwriter:William Goldman,1189040960 +192560,1307,seeAlso:When Harry met Sally (1989),1379088305 +192560,1311,Xmas theme?,1265914554 +192560,1321,killer-as-protagonist,1214928707 +192560,1321,werewolf,1186855040 +192560,1322,subgenre:haunted house,1354408037 +192560,1323,subgenre:haunted house,1354407994 +192560,1324,subgenre:haunted house,1354408302 +192560,1327,dwelling as character,1279028692 +192560,1327,subgenre:haunted house,1279028674 +192560,1328,subgenre:haunted house,1354408232 +192560,1333,adultery,1177172390 +192560,1333,animal:bird,1190370655 +192560,1333,animal:raven,1190370655 +192560,1333,BFI classic,1177174594 +192560,1339,adapted from:book,1177806295 +192560,1339,vampire,1181483248 +192560,1344,subgenre:bowling noir,1444326027 +192560,1345,adapted from:book,1182126292 +192560,1345,author:Stephen King,1182126292 +192560,1346,killer-as-protagonist,1214927106 +192560,1346,murder,1177806932 +192560,1346,queer,1241137115 +192560,1347,character:Freddy Krueger,1354409387 +192560,1347,murder,1354409387 +192560,1347,serial killer,1354409387 +192560,1347,subgenre:slasher,1354409387 +192560,1356,Based on a TV show,1178881063 +192560,1356,cameo:Whoopi Goldberg,1185049430 +192560,1356,even-numbered ST movie,1368976038 +192560,1356,Star Trek,1241139311 +192560,1356,STTNG,1368976514 +192560,1356,time travel,1178892401 +192560,1359,Xmas theme(?),1267397650 +192560,1361,courtroom,1178373346 +192560,1361,murder,1178373346 +192560,1366,adapted from:play,1177807709 +192560,1366,author:Arthur Miller,1186884397 +192560,1367,adapted from:book,1183417280 +192560,1367,animation remade as live action,1241136482 +192560,1367,Disney animated feature,1183934191 +192560,1367,remadeAs:101 Dalmations (1996),1186839749 +192560,1367,remakeOf:101 Dalmations (1961),1186839749 +192560,1370,chase in airport cargo handling facility,1222631430 +192560,1371,Based on a TV show,1178881136 +192560,1371,odd-numbered ST movie,1368975563 +192560,1371,Star Trek,1241139262 +192560,1372,Based on a TV show,1178881209 +192560,1372,even-numbered ST movie,1368975480 +192560,1372,murder,1177797558 +192560,1372,Star Trek,1241139328 +192560,1373,Based on a TV show,1178881015 +192560,1373,odd-numbered ST movie,1368975981 +192560,1373,Star Trek,1241139336 +192560,1374,Based on a TV show,1177848475 +192560,1374,character:Khan,1368975422 +192560,1374,even-numbered ST movie,1368975422 +192560,1374,murder,1178881159 +192560,1374,Star Trek,1241139357 +192560,1375,Based on a TV show,1178880978 +192560,1375,odd-numbered ST movie,1368975966 +192560,1375,Star Trek,1241139350 +192560,1376,animal:whale,1211828553 +192560,1376,Based on a TV show,1178881087 +192560,1376,even-numbered ST movie,1368975529 +192560,1376,Star Trek,1241139342 +192560,1376,time travel,1178881087 +192560,1377,adapted from:comic,1177802432 +192560,1377,alter ego,1179176660 +192560,1377,Batman (series),1241136784 +192560,1377,villain:Penguin,1222038204 +192560,1380,adapted from B'way,1177187122 +192560,1380,Bechdel Test:Fail,1275222210 +192560,1380,high school,1183614247 +192560,1380,sexist,1275222210 +192560,1381,high school,1183614368 +192560,1387,animal:shark,1211635774 +192560,1387,BFI modern classic,1177177120 +192560,1391,adapted from:game,1265918556 +192560,1396,computer cracker,1182800578 +192560,1396,computers,1182800578 +192560,1405,Based on a TV show,1177818640 +192560,1408,adapted from:book,1187302719 +192560,1408,author:Fennimore Cooper,1187302706 +192560,1408,character:Hawkeye,1187302706 +192560,1411,adapted from:play,1177810610 +192560,1411,adultery,1177797134 +192560,1411,murder,1177797134 +192560,1411,playwright:Shakespeare,1226864970 +192560,1416,adapted from B'way,1177187103 +192560,1416,playwright:Andrew Lloyd Weber,1241137722 +192560,1422,conspiracy theory,1367952906 +192560,1441,romantic comedy,1241136834 +192560,1479,Based on a TV show,1183931489 +192560,1479,plot point:sudden scientific insight,1241139091 +192560,1479,unbelievably sexist (even for its time),1241139087 +192560,1483,adapted from:book,1276626250 +192560,1483,author:J.G. Ballard,1276626250 +192560,1483,BFI modern classic,1177177891 +192560,1483,Cannes:special jury prize,1177177909 +192560,1483,disambiguation:Crash (1996/2004),1190567483 +192560,1485,courtroom setting,1178373155 +192560,1496,adapted from:book,1177818318 +192560,1496,author:Leo Tolstoy,1214927680 +192560,1500,assassin,1185075783 +192560,1500,dark comedy,1185075857 +192560,1500,killer-as-protagonist,1214927619 +192560,1500,mafia,1177810484 +192560,1502,sexuality:necrophilia,1270276322 +192560,1517,Compare:Austin Powers,1322943070 +192560,1517,Compare:The Silencers,1322943061 +192560,1517,parody,1177819244 +192560,1517,related:007 (series),1206639548 +192560,1527,genre spoof,1241137760 +192560,1527,strong romantic subplot,1182125430 +192560,1542,competition,1268573553 +192560,1554,assassin,1178998460 +192560,1554,Bechdel Test:Fail,1216303457 +192560,1554,hypertextual,1178877101 +192560,1554,murder,1177797043 +192560,1554,typography is important to cinematography,1252727697 +192560,1562,adapted from:comic,1179176628 +192560,1562,alter ego,1179176628 +192560,1569,central event:wedding preparation(?),1214928095 +192560,1573,switching places,1186929750 +192560,1580,adapted from:comic,1182616484 +192560,1580,secret gov't agency works with and hides aliens,1215882451 +192560,1580,subgenre:buddies,1191030834 +192560,1584,adapted from:book,1177803632 +192560,1586,military,1177809720 +192560,1588,Based on a TV show,1183417414 +192560,1595,animal:orca,1377121928 +192560,1595,animal:whale,1183417875 +192560,1602,Based on a TV show,1187302910 +192560,1608,america porn,1241493340 +192560,1610,?adapted from:book,1190549082 +192560,1610,author:Tom Clancy?,1187301478 +192560,1617,BFI modern classic,1177177179 +192560,1641,plot:small British community comes together,1201469729 +192560,1641,working class,1177809692 +192560,1643,Bechdel Test:Fail,1389816683 +192560,1643,Bechdel Test:Who Cares,1389816640 +192560,1643,biographical,1187305259 +192560,1643,character based on a real person:Disraeli,1389816625 +192560,1643,character based on real person:Queen Victoria of UK,1267395975 +192560,1643,descent into madness,1389623575 +192560,1643,protagonist is royal,1269052053 +192560,1645,deal with the devil,1186922679 +192560,1645,lawyer as protagonist,1186922679 +192560,1648,adapted from:book,1242855204 +192560,1648,author:Dick King-Smith,1242855189 +192560,1650,adapted from:book,1186969828 +192560,1650,author:Henry James,1186969828 +192560,1653,dystopia,1177809796 +192560,1653,living a fictional life,1358039649 +192560,1663,Bechdel Test:Fail,1216304012 +192560,1663,military,1177797505 +192560,1663,military recruits/training,1183932008 +192560,1663,misfits trained into elite force,1377124052 +192560,1665,Based on a TV show,1177818452 +192560,1673,murder/fatality,1225668925 +192560,1673,plot:making adult/pornographic films,1225668925 +192560,1674,murder,1178372042 +192560,1676,adapted from:book,1181483633 +192560,1676,author:Robert Heinlein,1214928777 +192560,1678,adapted from:book,1177798956 +192560,1680,hypertextual,1241139215 +192560,1681,adapted from:game,1182125814 +192560,1682,living a fictional life,1352827558 +192560,1682,reality TV,1182302438 +192560,1682,see also:The Truman Show,1177849223 +192560,1683,adapted from:book,1314480783 +192560,1683,author:Henry James,1314480783 +192560,1684,adapted from:book,1187305282 +192560,1684,author:Virginia Woolf,1187305282 +192560,1690,dystopia,1177804655 +192560,1690,no women,1241136617 +192560,1690,related:Alien Resurrection (1997),1433436425 +192560,1704,Oscar:screenplay,1185810159 +192560,1704,psychiatrist as protagonist,1177171934 +192560,1711,adapted from:book,1187304742 +192560,1717,parody,1188581649 +192560,1719,ghosts/afterlife,1190563669 +192560,1722,007 (series),1206639912 +192560,1722,assassin,1226945228 +192560,1722,killer as protagonist,1226945228 +192560,1722,murder,1177185067 +192560,1731,animation remade as live action,1238709665 +192560,1731,Based on a TV show,1238709665 +192560,1732,amateur detective,1184587076 +192560,1732,Bechdel Test:Fail,1216303667 +192560,1732,Chandleresque,1241136855 +192560,1732,dark comedy,1241136862 +192560,1732,murder/fatality,1186972777 +192560,1732,related:The Big Sleep,1248783050 +192560,1732,sport:10 pin bowling,1241136874 +192560,1732,subgenre:bowling noir,1444325687 +192560,1735,adapted from:book,1177810349 +192560,1735,author:Charles Dickens,1181918359 +192560,1747,politics,1186927167 +192560,1772,Based on a TV show,1177803777 +192560,1772,SNL alum,1211807894 +192560,1779,adapted from:book,1251678592 +192560,1779,author:Michael Crichton,1251678592 +192560,1801,adapted from:book series,1351184925 +192560,1801,author:Alexandre Dumas (père),1351184911 +192560,1810,Bechdel Test:Pass,1216302990 +192560,1816,group sex,1177812346 +192560,1831,Based on a TV show,1182616171 +192560,1849,adapted from:comic,1269051525 +192560,1873,adapted from:book,1187305022 +192560,1873,adapted from:play/opera,1187305009 +192560,1873,author:Victor Hugo,1248174479 +192560,1873,Bechdel Test:Fail,1248174463 +192560,1881,Arthurian legend,1266752449 +192560,1884,adapted from:book,1177809228 +192560,1884,author:Hunter S. Thompson,1188584531 +192560,1884,biographical view,1226943558 +192560,1884,character based on real person:Hunter S. Thompson,1226943533 +192560,1889,murder,1191776921 +192560,1889,police investigation,1191776921 +192560,1907,Disney animated feature,1183933392 +192560,1909,Based on a TV show,1182617496 +192560,1911,adapted from:book series,1177808301 +192560,1911,animals,1397867291 +192560,1911,author:Hugh Lofting,1275058688 +192560,1911,setting:San Francisco,1275058670 +192560,1918,subgenre:cop buddies,1178842858 +192560,1919,adapted from:book series,1177799104 +192560,1919,Bechdel Test:Pass,1241492461 +192560,1919,plot:mean man trying to close school run by nun,1303305700 +192560,1919,setting:Paris,1183417443 +192560,1925,military recruits/training,1183932131 +192560,1934,adapted from:play,1244815504 +192560,1934,Oscar:Best Picture,1181417324 +192560,1934,Oscar:Directing,1181417324 +192560,1941,adapted from:play,1177810577 +192560,1941,adultery,1177810577 +192560,1941,murder,1177810577 +192560,1941,playwright:Shakespeare,1226865132 +192560,1945,BFI classic,1177176095 +192560,1947,adapted from B'way,1177186975 +192560,1947,Shakespearean,1177187004 +192560,1948,adapted from:book,1354509406 +192560,1951,adapted from B'way,1177187341 +192560,1951,adapted from:book,1177798535 +192560,1951,author:Charles Dickens,1181918224 +192560,1951,poverty,1179000050 +192560,1954,competitive sport,1183425467 +192560,1954,sport:boxing,1182617779 +192560,1956,psychiatrist as protagonist,1177171964 +192560,1956,subgenre:family dynamics,1181348716 +192560,1957,athletic apex,1177802838 +192560,1957,music by Vangelis,1241137152 +192560,1957,sport:track running,1187401258 +192560,1961,rape,1241140806 +192560,1962,social commentary,1177808582 +192560,1965,dark comedy,1241138994 +192560,1965,disambiguation:Repo Man/Repo Men,1270115244 +192560,1965,setting:LA,1178999998 +192560,1967,David Bowie,1182118132 +192560,1967,maze,1182118116 +192560,1967,muppets,1183929136 +192560,1968,coming-of-age,1177803458 +192560,1968,ensemble cast,1177802641 +192560,1968,high school,1181347425 +192560,1968,mostly about a single day,1269052851 +192560,1969,character:Freddy Krueger,1354409336 +192560,1969,murder,1354409336 +192560,1969,serial killer,1354409336 +192560,1969,subgenre:slasher,1354409336 +192560,1970,character:Freddy Krueger,1354409358 +192560,1970,murder,1354409358 +192560,1970,serial killer,1354409358 +192560,1970,subgenre:slasher,1354409358 +192560,1971,character:Freddy Krueger,1354409369 +192560,1971,murder,1354409369 +192560,1971,serial killer,1354409369 +192560,1971,subgenre:slasher,1354409369 +192560,1972,character:Freddy Krueger,1354409376 +192560,1972,murder,1354409376 +192560,1972,serial killer,1354409376 +192560,1972,subgenre:slasher,1354409376 +192560,1974,character:Jason Vorhees,1354407221 +192560,1974,murder,1354407808 +192560,1974,serial killer,1354407808 +192560,1974,subgenre:slasher,1354407054 +192560,1975,character:Jason Vorhees,1354407920 +192560,1975,murder,1354407920 +192560,1975,serial killer,1354407920 +192560,1975,subgenre:slasher,1354407920 +192560,1976,character:Jason Vorhees,1354407183 +192560,1976,murder,1354407832 +192560,1976,serial killer,1354407832 +192560,1976,subgenre:slasher,1354407172 +192560,1977,character:Jason Vorhees,1354407269 +192560,1977,murder,1354407842 +192560,1977,serial killer,1354407842 +192560,1977,subgenre:slasher,1354407269 +192560,1978,alternate reality,1354407303 +192560,1978,character:Jason Vorhees,1354407304 +192560,1978,murder,1354407851 +192560,1978,serial killer,1354407851 +192560,1978,subgenre:slasher,1354407304 +192560,1979,character:Jason Vorhees,1354407334 +192560,1979,murder,1354407859 +192560,1979,serial killer,1354407859 +192560,1979,subgenre:slasher,1354407334 +192560,1980,character:Jason Vorhees,1354407359 +192560,1980,murder,1354407867 +192560,1980,serial killer,1354407867 +192560,1980,subgenre:slasher,1354407359 +192560,1981,character:Jason Vorhees,1354407397 +192560,1981,murder,1354407876 +192560,1981,serial killer,1354407876 +192560,1981,subgenre:slasher,1354407397 +192560,1982,character:Michael Myers,1354407605 +192560,1982,murder,1247687106 +192560,1982,serial killer,1247686941 +192560,1982,subgenre:slasher,1354407547 +192560,1983,character:Michael Myers,1354407706 +192560,1983,murder,1354407706 +192560,1983,serial killer,1354407706 +192560,1983,subgenre:slasher,1354407706 +192560,1984,character:Michael Myers,1354407753 +192560,1984,murder,1354407753 +192560,1984,serial killer,1354407753 +192560,1984,subgenre:slasher,1354407753 +192560,1985,character:Michael Myers,1354407618 +192560,1985,murder,1354407634 +192560,1985,serial killer,1354407634 +192560,1985,subgenre:slasher,1354407618 +192560,1986,character:Michael Myers,1354407665 +192560,1986,murder,1354407665 +192560,1986,serial killer,1354407665 +192560,1986,subgenre:slasher,1354406979 +192560,1994,dwelling as character,1279029386 +192560,1994,ghosts/afterlife,1279029386 +192560,1995,ghosts,1183336230 +192560,1996,ghosts,1183336236 +192560,1997,BFI modern classic,1177177524 +192560,1997,The Exorcist,1270115440 +192560,2000,subgenre:cop buddies,1178842834 +192560,2001,subgenre:cop buddies,1178842842 +192560,2002,subgenre:cop buddies,1178842850 +192560,2009,Reaganomics,1187385704 +192560,2010,BFI classic,1177176015 +192560,2010,robot,1181482863 +192560,2011,dystopia,1188923858 +192560,2011,time travel,1178879148 +192560,2012,time travel,1178879163 +192560,2013,natural disaster,1337487713 +192560,2014,remadeAs:Freaky Friday(2003),1186929737 +192560,2014,remakeOf:Freaky Friday (1977),1186929737 +192560,2014,switching places,1186929743 +192560,2015,Disney studios,1183933417 +192560,2016,Disney studios,1183934546 +192560,2018,adapted from:book,1283795035 +192560,2018,Disney animated feature,1183932879 +192560,2018,orphaned cartoon character,1177805476 +192560,2019,BFI classic,1177176138 +192560,2020,"""underaged sex""=child porn",1181826527 +192560,2020,adapted from:book,1177807869 +192560,2020,adapted from:play,1181085705 +192560,2020,adultery,1181826545 +192560,2020,Nudity (Topless - Notable),1223934118 +192560,2021,adapted from:book,1177808664 +192560,2021,author:Frank Herbert,1211546879 +192560,2021,massacred the book,1278857052 +192560,2023,mafia,1177810037 +192560,2025,adapted from:book,1187303475 +192560,2025,author:E. Zola,1187303475 +192560,2033,Disney animated feature,1183933552 +192560,2034,Disney studios,1183934239 +192560,2042,sport:ice hockey,1186884495 +192560,2048,Disney animated feature,1183933729 +192560,2048,Sherlock Holmes,1183933718 +192560,2050,Herbie The Love Bug (series),1206640637 +192560,2051,Herbie The Love Bug (series),1206640643 +192560,2057,Disney studios,1183933780 +192560,2064,documentary critique,1182514008 +192560,2067,adapted from:book,1177808299 +192560,2067,author:Boris Pasternak,1280643634 +192560,2071,?social commentary,1184466589 +192560,2071,topic:AIDS/HIV,1184466524 +192560,2078,adapted from:book,1228441083 +192560,2078,author:Rudyard Kipling,1183933861 +192560,2078,Disney animated feature,1183933861 +192560,2080,Disney animated feature,1183932886 +192560,2081,adapted from:book,1183934159 +192560,2081,Disney animated feature,1183934159 +192560,2082,sport:ice hockey,1183931240 +192560,2083,adapted from:play,1182124325 +192560,2083,author:Charles Dickens,1182124326 +192560,2083,muppets,1183929133 +192560,2083,Xmas theme,1182124326 +192560,2084,Disney studios,1183934416 +192560,2085,Disney animated feature,1183933991 +192560,2085,remadeAs:101 Dalmations (1996),1186839756 +192560,2085,remakeOf:101 Dalmations (1961),1186839756 +192560,2087,adapted from:book,1178996663 +192560,2087,adapted from:play,1211828331 +192560,2087,author:J.M. Barrie,1230646779 +192560,2087,coming-of-age,1183425401 +192560,2087,Disney animated feature,1183932996 +192560,2087,Peter Pan,1178996650 +192560,2087,pirates,1182728436 +192560,2087,SeeAlso:Hook (1991),1211828375 +192560,2088,animation remade as live action,1183853247 +192560,2089,Disney animated feature,1183934038 +192560,2090,Disney animated feature,1183932895 +192560,2092,Disney animated feature,1183934573 +192560,2096,Disney animated feature,1183932941 +192560,2096,subgenre:fairy tale,1182098034 +192560,2097,adapted from:book,1184721428 +192560,2097,author:Ray Bradbury,1184721428 +192560,2099,animation & live action interact (scene),1183419835 +192560,2099,Disney studios,1183933404 +192560,2104,author:S.E. Hinton,1238279052 +192560,2105,Disney animated feature,1183934137 +192560,2105,setting:in computer,1293420674 +192560,2107,character:Michael Myers,1354407683 +192560,2107,murder,1354407683 +192560,2107,serial killer,1354407683 +192560,2107,subgenre:slasher,1354407683 +192560,2108,magic realism,1184946677 +192560,2108,setting:LA,1184946625 +192560,2108,Shakespearean references,1184946625 +192560,2108,social commentary,1184946625 +192560,2108,weather reporter as protagonist,1184950055 +192560,2110,hypertextual,1177808072 +192560,2110,pastiche,1177808061 +192560,2115,plot point:solving riddles/puzzles,1211635638 +192560,2116,adapted from:book,1183913293 +192560,2116,author:J. R. R. Tolkein,1183913293 +192560,2117,adapted from:book,1187381810 +192560,2117,author:George Orwell [Eric Blair],1400165734 +192560,2117,dystopia,1183932421 +192560,2118,adapted from:book,1182126166 +192560,2118,assasination plot,1222631824 +192560,2118,author:Stephen King,1241137572 +192560,2118,bloodthirsty US president,1222631788 +192560,2120,adapted from:book,1182126243 +192560,2120,author:Stephen King,1182126243 +192560,2121,adapted from:book,1182126230 +192560,2121,author:Stephen King,1241137445 +192560,2121,not about ice hockey,1182126230 +192560,2122,adapted from:book,1182126259 +192560,2122,author:Stephen King,1182126259 +192560,2124,Based on a TV show,1177802210 +192560,2125,disambiguation:...Ever After...,1226524515 +192560,2134,adaptedInto:Television series,1219068053 +192560,2135,adapted from:book series,1216229540 +192560,2135,animal:parrot,1275058523 +192560,2135,animal:seal,1275058523 +192560,2135,animals,1275058523 +192560,2135,author:Hugh Lofting,1275058523 +192560,2135,Bechdel Test:Fail,1275058546 +192560,2137,adapted from:book,1177803219 +192560,2137,animal:pig,1211828259 +192560,2137,animal:spider,1211828259 +192560,2137,author:E. B. White,1190555204 +192560,2137,barnyard animals,1190555119 +192560,2138,adapted from:book,1183417009 +192560,2139,adapted from:book,1183416820 +192560,2140,muppets,1183929124 +192560,2140,technique:puppetry,1185810367 +192560,2141,Amblin,1183930182 +192560,2147,adapted from:book,1238327996 +192560,2149,subgenre:haunted house,1354408106 +192560,2153,Based on a TV show,1177848602 +192560,2153,disambiguation:The Avengers (1998)/(2012),1343054146 +192560,2158,murder,1177813048 +192560,2158,serial killer,1241138121 +192560,2159,murder,1178880051 +192560,2159,serial killer,1241138113 +192560,2174,Bechdel Test:Pass,1279029331 +192560,2174,dwelling as character,1279029324 +192560,2174,ghosts/afterlife,1183335540 +192560,2174,miniature sets,1281318796 +192560,2176,based on a true story,1188681385 +192560,2176,murder,1243124866 +192560,2176,referred to in RHPS,1188681186 +192560,2176,scary,1243124886 +192560,2183,Academy award:Best Song,1215360494 +192560,2183,assassin,1215360494 +192560,2183,assassin shooting in auditorium,1215360493 +192560,2183,civilian caught up in intrigue,1215360494 +192560,2183,espionage,1215360494 +192560,2183,murder,1215360493 +192560,2183,music is key to story (not Musical genre),1215360494 +192560,2183,protagonist is medical doctor,1215360494 +192560,2183,protagonist is stage performer,1215360494 +192560,2183,remade by same director,1215360494 +192560,2183,score: Bernard Hermann,1215360494 +192560,2183,setting:London (UK),1215360494 +192560,2183,setting:Marrakech,1215360494 +192560,2183,setting:North Africa,1215360512 +192560,2183,setting:Royal Albert Hall,1215360494 +192560,2184,adapted from:book,1186968899 +192560,2184,dark comedy,1182289117 +192560,2184,plot revolves around troublesome dead body,1186968562 +192560,2187,actors,1181493774 +192560,2194,character based on real person:Al Capone,1241139705 +192560,2194,mafia,1241139711 +192560,2201,adapted from:book,1178373884 +192560,2201,courtroom,1181414817 +192560,2201,murder,1178373884 +192560,2203,SERIAL KILLERS,1244164310 +192560,2211,adapted from:book,1181485519 +192560,2211,adapted from:play,1181485518 +192560,2211,espionage,1181490010 +192560,2211,novelist as protagonist,1181517348 +192560,2212,assassin shooting in auditorium,1227569058 +192560,2212,civilian caught up in intrigue,1227569058 +192560,2232,plot point:solving riddles/puzzles,1211635655 +192560,2232,plot point:sudden scientific insight,1241137437 +192560,2243,news media,1182288911 +192560,2245,Bechdel Test:Pass,1216303899 +192560,2245,infidelity,1176604738 +192560,2245,setting,1303591317 +192560,2245,subplot:ingenue is aide to antiheroine,1303591317 +192560,2249,adultery,1176605174 +192560,2249,Bechdel Test:Fail,1343245669 +192560,2249,comedy about witness protection/relocation,1343245669 +192560,2249,mafia,1177798036 +192560,2249,men being taught how to woo,1312856384 +192560,2249,mentor/trainer,1312856384 +192560,2249,witness protection programme,1178642792 +192560,2253,disambiguation:Toy(s),1238714262 +192560,2253,weapons industry,1211477374 +192560,2257,female stripper (scene),1191776658 +192560,2257,male teenager(s) & female prostitute(s),1248786021 +192560,2257,music is key to story (not Musical genre),1215360759 +192560,2257,photographer as protagonist,1191776658 +192560,2257,protagonist is photographer,1270113742 +192560,2257,teen,1191776658 +192560,2268,adapted from:play,1228924601 +192560,2268,courtroom drama,1178372308 +192560,2268,military,1177809272 +192560,2268,murder,1178372308 +192560,2285,colour/B&W combo,1357409034 +192560,2285,Mick Travis (series),1359143303 +192560,2289,cameo-fest,1184558234 +192560,2289,cameo:Bruce Willis,1184558255 +192560,2289,deadpan,1183611448 +192560,2289,sardonic,1267293156 +192560,2289,satire,1177849463 +192560,2289,satire:Hollywood insiders,1177849463 +192560,2289,topic:Hollywood industry,1183611445 +192560,2291,Depp & Burton,1220667366 +192560,2294,Pixar animation,1183934703 +192560,2297,ghosts/afterlife,1187403033 +192560,2300,nazis,1187383012 +192560,2302,courtroom,1178373304 +192560,2302,murder,1178373317 +192560,2311,adapted from:book,1211546677 +192560,2311,author:Arthur C. Clarke,1211546677 +192560,2313,biographical,1177819001 +192560,2313,deformity/disability,1222632402 +192560,2316,magic,1187404218 +192560,2318,BREAKUPS AND DIVORCES,1241140247 +192560,2318,child abuse,1241140252 +192560,2318,dysfunctional family,1241140243 +192560,2318,rape,1241140238 +192560,2320,Nazis,1177812063 +192560,2321,black and white characters interact with colour world,1243209814 +192560,2328,vampire,1186969308 +192560,2329,brutal,1244033439 +192560,2329,rape,1241140075 +192560,2335,sport:American football,1178980908 +192560,2336,biographical,1186326223 +192560,2336,genre:historical fiction,1276625203 +192560,2336,SequelTo:Elizabeth,1276625213 +192560,2338,Slasher,1242855112 +192560,2340,death personified,1279395708 +192560,2348,based on a true story,1184588021 +192560,2348,biographical,1184588021 +192560,2355,computer animation,1183903255 +192560,2355,Disney animated feature,1183933601 +192560,2355,Pixar animation,1183934786 +192560,2359,Bechdel Test:Pass (barely),1280643369 +192560,2359,death/fatality,1280643357 +192560,2359,plot point:lottery ticket,1280643436 +192560,2359,plot revolves around troublesome dead body,1186968594 +192560,2359,plot:small British community comes together,1201469694 +192560,2359,significant character in a wheelchair,1280797020 +192560,2359,town vs. country,1280643401 +192560,2365,subgenre:Kaiju,1371785790 +192560,2366,subgenre:Kaiju,1371785837 +192560,2366,technique:Stop-motion special effects,1183901876 +192560,2366,woman carried onto tall building,1188750457 +192560,2367,woman carried onto tall building,1188750474 +192560,2370,setting:jungle,1295317520 +192560,2371,adultery,1176604542 +192560,2376,007 (series),1206639766 +192560,2376,assassin,1226945193 +192560,2376,killer as protagonist,1226945193 +192560,2376,murder,1177185087 +192560,2384,animal:pig,1186855726 +192560,2389,Hitchcock,1178880633 +192560,2389,murder,1178880623 +192560,2389,remakeOf:Psycho (1960),1178880764 +192560,2389,see also:Psycho (1960),1178880623 +192560,2389,see also:Psycho (1998),1178880726 +192560,2392,Xmas theme(?),1267397781 +192560,2393,Based on a TV show,1178881106 +192560,2393,cameo:Whoopi Goldberg,1185049531 +192560,2393,murder,1242855712 +192560,2393,odd-numbered ST movie,1368976121 +192560,2393,Star Trek,1241139295 +192560,2393,STTNG,1368976121 +192560,2394,protagonist is royal,1269051668 +192560,2398,courtroom,1179000127 +192560,2398,Jamie's Dad's favourites,1270339057 +192560,2398,mother-daughter relationships,1182124136 +192560,2398,psychiatry,1177171621 +192560,2398,setting:NYC,1183905844 +192560,2398,Xmas theme,1182124136 +192560,2406,Bechdel Test:Fail,1219069915 +192560,2406,mercenary as protagonist,1219069833 +192560,2406,novelist as protagonist,1219068438 +192560,2406,setting:Colombia,1219069878 +192560,2406,setting:jungle,1219067699 +192560,2409,competitive sport,1182617884 +192560,2409,sport:boxing,1182617884 +192560,2410,competitive sport,1183425456 +192560,2410,sport:boxing,1182617896 +192560,2411,competitive sport,1182617745 +192560,2411,sport:boxing,1182617745 +192560,2412,competitive sport,1183425451 +192560,2412,sport:boxing,1182617914 +192560,2413,adapted from:game,1177804003 +192560,2413,DVD:alternate endings,1178656322 +192560,2413,genre:movie as whodunit,1204980579 +192560,2413,murder,1204980579 +192560,2414,Sherlock Holmes,1186971402 +192560,2423,National Lampoon,1182124287 +192560,2423,Xmas theme(?),1198025490 +192560,2427,BFI modern classic,1177177634 +192560,2431,based on a true story,1219067455 +192560,2431,protagonist is medical doctor,1219067418 +192560,2433,adapted from:book,1178372877 +192560,2433,courtroom drama,1178372877 +192560,2437,topic:Oscar Wilde,1187396155 +192560,2447,high school,1178980652 +192560,2447,sport:American football,1178980899 +192560,2450,adapted from:comic,1177811272 +192560,2454,sequelTo:The Fly (1958),1211547310 +192560,2461,serial killer,1187302923 +192560,2461,subgenre:slasher,1354408502 +192560,2462,murder,1354408068 +192560,2462,serial killer,1354408068 +192560,2462,subgenre:slasher,1354408068 +192560,2467,adapted from:book,1183902947 +192560,2467,amateur detective,1191783171 +192560,2467,author:Umberto Eco,1183902947 +192560,2467,murder,1191783171 +192560,2467,setting:monastery,1191783188 +192560,2474,competition:pool billiards,1186883274 +192560,2490,plot point:time is short,1223769076 +192560,2490,remadeAs:Payback(1999),1223769270 +192560,2490,remakeOf:Point Blank(1967),1223769185 +192560,2490,Revenge,1265831055 +192560,2494,The Shoah,1317744021 +192560,2498,Based on a TV show,1187305616 +192560,2502,slackers,1177812178 +192560,2507,adapted from:book,1251677389 +192560,2507,author:Kurt Vonnegut Jr.,1251677389 +192560,2511,adapted from:book,1181917715 +192560,2511,author:Raymond Chandler,1241138481 +192560,2511,character:Philip Marlowe,1241138486 +192560,2511,murder,1181917714 +192560,2511,private detective,1181917731 +192560,2513,adapted from:book,1187382370 +192560,2513,author:Stephen King,1187382370 +192560,2517,adapted from:book,1182126212 +192560,2517,author:Stephen King,1182126212 +192560,2519,dwelling a character,1279030005 +192560,2519,subgenre:haunted house,1279030005 +192560,2528,aging,1319213323 +192560,2528,dystopia,1183912134 +192560,2528,scifi re aging,1319213265 +192560,2529,"""damn dirty apes""",1177812884 +192560,2529,dystopia,1177812884 +192560,2530,"""damn dirty apes""",1177812916 +192560,2531,"""damn dirty apes""",1177812906 +192560,2532,"""damn dirty apes""",1177812922 +192560,2533,"""damn dirty apes""",1177812934 +192560,2539,mafia,1187405493 +192560,2539,psychiatrist,1177172302 +192560,2539,psychiatrist as protagonist,1177172041 +192560,2549,adapted from:game,1182125799 +192560,2550,adapted from:book,1279030081 +192560,2550,author:Shirley Jackson,1279030081 +192560,2550,dwelling as character,1279030081 +192560,2550,subgenre:haunted house,1279030081 +192560,2551,adapted from:book,1179173046 +192560,2551,alter ego,1179172932 +192560,2551,physician as protagonist,1179172932 +192560,2551,setting:Montreal,1179173046 +192560,2551,twins/inter-related lives,1187301328 +192560,2559,See also:The King and I (1956),1274408711 +192560,2565,adapted from B'way,1177187402 +192560,2565,See also:The King and I (1956),1274408654 +192560,2567,see also:The Truman Show,1177808743 +192560,2571,BFI modern classic,1177177550 +192560,2571,dystopia,1183932612 +192560,2571,office worker discovers secret identity,1215619772 +192560,2571,psychic character,1184950453 +192560,2571,related:The Matrix (1999),1190555976 +192560,2571,setting:in computer,1293593098 +192560,2572,adapted from:play,1186853757 +192560,2572,playwright:Shakespeare,1226865188 +192560,2579,neo-noir,1367952829 +192560,2581,high school,1187305977 +192560,2611,adapted from:play,1324440414 +192560,2611,Bechdel Test:Fail,1324440423 +192560,2611,family,1324440464 +192560,2611,father-daughter relationship,1324440456 +192560,2611,father-son relationship,1324440447 +192560,2612,adapted from:book,1279164835 +192560,2612,Bechdel Test:Pass (barely),1279164854 +192560,2612,compare:Mommy Dearest,1279164835 +192560,2612,melodrama,1279164835 +192560,2612,mother-daughter relationship,1279164835 +192560,2612,murder,1279164835 +192560,2612,parent-children,1279164835 +192560,2622,adapted from:play,1187304768 +192560,2622,playwright:Shakespeare,1226865175 +192560,2640,adapted from:comic,1179176516 +192560,2640,alter ego,1179176516 +192560,2641,adapted from:comic,1179176529 +192560,2641,alter ego,1179176529 +192560,2642,adapted from:comic,1179176542 +192560,2642,alter ego,1179176542 +192560,2642,computer hacker,1185577495 +192560,2643,adapted from:comic,1179176555 +192560,2643,alter ego,1179176555 +192560,2644,vampire,1181482553 +192560,2648,adapted from:book,1177809587 +192560,2648,current,1256245809 +192560,2654,werewolf,1186971135 +192560,2657,adapted from:play,1177798425 +192560,2657,adultery,1182127831 +192560,2657,audience participation,1182125134 +192560,2657,awesome soundtrack,1182125275 +192560,2657,camp,1182125275 +192560,2657,cult film,1182127848 +192560,2657,dwelling as character,1279028812 +192560,2657,infidelity,1176603566 +192560,2657,insanity,1280046110 +192560,2657,murder,1182125134 +192560,2657,newlyweds,1280046110 +192560,2657,sexuality,1182125567 +192560,2657,significant character in a wheelchair,1280887653 +192560,2657,transvestism,1182125134 +192560,2662,adapted from:book,1183908098 +192560,2662,author:H. G. Wells,1183908098 +192560,2668,?adapted from:comic,1190556398 +192560,2668,?author:Len Wein,1190556398 +192560,2670,setting:wartime,1322942334 +192560,2672,disambiguation:The 4th/Thirteenth Floor (1999),1234140389 +192560,2672,virtual reality,1183335878 +192560,2678,drama/comedy,1247844150 +192560,2683,cameo:Burt Bacharach,1285587464 +192560,2683,cameo:Elvis Costello,1285587464 +192560,2683,cameo:Jerry Springer,1285587464 +192560,2683,parody,1178892214 +192560,2683,related:007 (series),1206639656 +192560,2683,time travel,1178892204 +192560,2687,adapted from:book,1183417259 +192560,2687,Disney animated feature,1183934074 +192560,2688,rape,1241140857 +192560,2690,adapted from B'way,1177186633 +192560,2690,adapted from:play,1276625419 +192560,2690,playwright:Oscar Wilde,1276625434 +192560,2692,adultery,1177825289 +192560,2692,Compare:Run Lola Run (1998),1317078098 +192560,2692,hypertextual,1241139059 +192560,2692,time,1177825289 +192560,2693,Star Trek,1241139660 +192560,2696,RemadeAs:Dinner for Shmucks (2010),1281369914 +192560,2696,RemakeOf:The Dinner Game (1989),1281369942 +192560,2700,Based on a TV show,1186847117 +192560,2700,character based on real person:Saddam Hussein,1234310054 +192560,2700, ,1220989322 +192560,2701,Based on a TV show?,1244911672 +192560,2701,Bechdel Test:Fail,1244911671 +192560,2701,subgenre:cop buddies,1178843802 +192560,2701,subgenre:steampunk,1270123645 +192560,2702,murder,1178880140 +192560,2702,serial killer,1178880135 +192560,2709,muppets,1183929216 +192560,2716,Bechdel Test:Fail,1278430135 +192560,2716,ghosts,1183335673 +192560,2717,Bechdel Test:Fail,1278430180 +192560,2717,ghosts,1183335663 +192560,2719,dwelling as character,1279029755 +192560,2719,subgenre:haunted house,1279029755 +192560,2720,animation remade as live action,1183417809 +192560,2720,Based on a TV show,1183417809 +192560,2728,subgenre:sword and sandal,1224536803 +192560,2729,adapted from:book,1224536754 +192560,2729,author:Nabokov,1224536761 +192560,2729,BFI classic,1177175236 +192560,2736,adapted from B'way,1177186780 +192560,2739,rape,1241140027 +192560,2746,dark comedy,1187404387 +192560,2761,adapted from:book,1245002810 +192560,2761,author:Ted Hughes,1245002835 +192560,2761,robot,1181482712 +192560,2762,ghosts/afterlife,1183336103 +192560,2762,psychiatrist as protagonist,1241139446 +192560,2762,psychic character,1184950541 +192560,2770,parody,1177802567 +192560,2770,related:007 (series),1206639836 +192560,2774,queer,1177805805 +192560,2779,adultery,1176605028 +192560,2779,angelic intervention,1184990207 +192560,2779,fate vs. free will,1215564198 +192560,2779,ghosts/afterlife,1183335983 +192560,2779,remakeOf:Here Comes Mr. Jordan,1177819459 +192560,2780,author:Edgar Allan Poe,1181918542 +192560,2782,adapted from:book,1181918484 +192560,2782,author:Edgar Allan Poe,1181918484 +192560,2785,Edgar Allan Poe,1181483641 +192560,2787,?author:Stephen King,1241137122 +192560,2788,Based on a TV show,1177898249 +192560,2788,Bechdel Test:Fail,1216303710 +192560,2788,Monty Python,1177802045 +192560,2788,sketch comedy,1216303710 +192560,2791,aviation,1188584383 +192560,2791,Parody,1188584371 +192560,2793,killer-as-protagonist,1214928685 +192560,2793,werewolf,1186855048 +192560,2794,National Lampoon,1183930880 +192560,2795,National Lampoon,1183930044 +192560,2797,"""underaged sex""=child porn",1181826479 +192560,2797,related:Big,1230648608 +192560,2803,adapted from:book,1190549917 +192560,2803,author:John Grisham,1190549917 +192560,2804,Xmas theme,1182124283 +192560,2819,conspiracy theory,1367952906 +192560,2820,adapted from:play,1177810587 +192560,2820,adultery,1177810587 +192560,2820,murder,1177810587 +192560,2820,playwright:Shakespeare,1226865039 +192560,2828,animation remade as live action,1183417970 +192560,2828,Based on a TV show,1183424943 +192560,2847,related:Rio Bravo,1177170174 +192560,2847,related:To Have and Have Not,1177170194 +192560,2848,adapted from:play,1183907896 +192560,2848,playwright:Shakespeare,1226865152 +192560,2852,military,1178374198 +192560,2852,murder,1178374198 +192560,2857,music:rock and roll (1960s),1214929075 +192560,2857,music:Rock and Roll (The Beatles),1241139880 +192560,2857,musical band:The Beatles,1241139884 +192560,2857,The Beatles,1241139887 +192560,2858,"""underaged sex""=child porn",1181826439 +192560,2858,adultery,1181826241 +192560,2859,musical band:Talking Heads,1201405790 +192560,2861,sport:baseball?,1186929370 +192560,2863,music:Rock and Roll (1960s),1214929360 +192560,2863,music:Rock and Roll (The Beatles),1241138047 +192560,2863,musical band:The Beatles,1241138053 +192560,2874,adapted from:B'way,1281099153 +192560,2877,Rock Opera,1182125496 +192560,2882,adapted from:book,1183426593 +192560,2882,author:Jurek Becke,1183426593 +192560,2882,remadeAs:Jacob The Liar(1999),1183426593 +192560,2882,The Shoah,1183426473 +192560,2886,Based on a TV show?,1183929243 +192560,2886,muppets,1183929222 +192560,2899,adapted from:book,1177810517 +192560,2899,author:J. Swift,1187300024 +192560,2902,murder,1178880658 +192560,2903,murder,1178880673 +192560,2904,adapted from:book,1383526186 +192560,2904,adapted from:play,1383526186 +192560,2904,author:Miss W. Somerset Maugham,1383526186 +192560,2904,death/fatality,1383533264 +192560,2904,protagonist is a priest,1383527127 +192560,2904,protagonist is a prostitute,1383527127 +192560,2904,rape,1383533264 +192560,2904,SeeAlso:Miss Sadie Thompson (1953),1383526207 +192560,2904,setting:South Seas,1383527127 +192560,2908,homophobia,1241140173 +192560,2908,rape,1241140161 +192560,2908,sad,1241140165 +192560,2908,transphobia,1241140168 +192560,2915,male teenager(s) & female prostitute(s),1248786040 +192560,2915,sickening,1241139034 +192560,2916,agent/assassin with false memories/amnesia,1358039290 +192560,2916,author:Philip K. Dick,1181919275 +192560,2916,brutal violence,1215564451 +192560,2916,dystopia,1192762763 +192560,2916,espionage,1181919276 +192560,2916,innocent person on the run,1357615630 +192560,2916,killer-as-protagonist,1214927091 +192560,2916,living a fictional life,1358039462 +192560,2916,memory makes us who we are,1358039319 +192560,2916,murder,1181919276 +192560,2916,pretend wife,1357615618 +192560,2916,setting:planet Mars,1208034535 +192560,2916,spy on the run,1334773983 +192560,2918,mostly about a single day,1269052903 +192560,2918,one day,1269052317 +192560,2921,genre:western noir,1216172166 +192560,2926,remadeAs:Hairspray(2007),1178324531 +192560,2926,remakeOf:Hairspray(1988),1178324503 +192560,2926,setting:Baltimore,1188696193 +192560,2928,adapted from:book,1242864971 +192560,2928,author:W. Somerset Maugham,1242864983 +192560,2940,adultery,1268268211 +192560,2940,Bechdel Test:Fail,1268268206 +192560,2940,murder,1268268214 +192560,2940,Related:Notorious (1946),1268268164 +192560,2940,setting:Argentina,1268268164 +192560,2940,setting:nightclub/casino,1268268164 +192560,2940,sexuality,1268268196 +192560,2941,adapted from B'way,1177186241 +192560,2946,music:Rock and Roll (1960s),1214929466 +192560,2946,music:Rock and Roll (The Beatles),1241138100 +192560,2946,musical band:The Beatles,1241138094 +192560,2946,The Beatles,1241138090 +192560,2947,007 (series),1241137898 +192560,2947,assassin,1226945048 +192560,2947,killer as protagonist,1226945048 +192560,2947,murder,1177184845 +192560,2947,rape,1241140724 +192560,2947,setting:golf course (scene),1200261420 +192560,2947,slick,1241140729 +192560,2948,007 (series),1241137833 +192560,2948,assassin,1226944802 +192560,2948,espionage,1177184798 +192560,2948,killer as protagonist,1226944802 +192560,2948,murder,1177184798 +192560,2949,007 (series),1241137634 +192560,2949,assassin,1226945219 +192560,2949,killer as protagonist,1226945219 +192560,2949,murder,1177184746 +192560,2953,Xmas theme(?),1182124889 +192560,2959,The first rule of MovieLens is we don't talk about Fight Club,1286022816 +192560,2959,violence,1244033500 +192560,2968,band of little people,1351990644 +192560,2968,Bechdel Test:Fail,1216303327 +192560,2968,time travel,1178892568 +192560,2971,autobiographical view,1177804882 +192560,2971,biographical,1177819029 +192560,2971,death personified,1279395659 +192560,2971,SeeAlso:All That Jazz (1979),1262492368 +192560,2983,espionage?,1186325896 +192560,2985,android(s)/cyborg(s),1190556755 +192560,2985,crime-fighting/police robot,1298163777 +192560,2986,android(s)/cyborg(s),1190556747 +192560,2986,crime-fighting/police robot,1298163776 +192560,2987,animation & live action interact,1183419853 +192560,2987,private detective,1184586943 +192560,2989,007 (series),1241137799 +192560,2989,assassin,1226945022 +192560,2989,killer as protagonist,1226945022 +192560,2989,murder,1177184767 +192560,2990,007 (series),1241138420 +192560,2990,assassin,1226945058 +192560,2990,killer as protagonist,1226945058 +192560,2990,murder,1177184875 +192560,2991,007 (series),1241138464 +192560,2991,assassin,1226944979 +192560,2991,infidelity,1207504983 +192560,2991,killer as protagonist,1226944979 +192560,2991,murder,1177184647 +192560,2993,007 (series),1241139556 +192560,2993,assassin,1226944969 +192560,2993,killer as protagonist,1226944969 +192560,2993,murder,1177185042 +192560,2993,remadeAs:Never Say Never (1983),1182638510 +192560,2993,remakeOf:Thunderball (1965),1182638510 +192560,2995,dwelling as character,1279029440 +192560,2995,subgenre:haunted house,1279029440 +192560,2997,queer,1177803726 +192560,3011,competition:dance marathon,1187386821 +192560,3028,adapted from:play,1183909476 +192560,3028,playwright:Shakespeare,1226865165 +192560,3031,The Exorcist,1270115416 +192560,3033,parody,1188566645 +192560,3033,related:Star Wars,1198025637 +192560,3034,Disney animated feature,1183932774 +192560,3036,adapted from:book,1315363570 +192560,3039,alter ego,1179177108 +192560,3039,Bechdel Test:Fail,1216303723 +192560,3039,racism,1186927123 +192560,3039,SNL alums,1211807908 +192560,3039,trading places,1188590895 +192560,3040,setting:summer camp,1269052546 +192560,3044,murder,1177797283 +192560,3044,past lives,1186972256 +192560,3044,time,1178998630 +192560,3052,jay and silent bob,1186922870 +192560,3052,slackers,1177808324 +192560,3053,biographical,1187304655 +192560,3053,epic,1351990872 +192560,3053,rape,1241140895 +192560,3060,awesome soundtrack,1241137373 +192560,3060,infidelity,1176604612 +192560,3060,music,1182302341 +192560,3060,music:rhythm & blues,1241137367 +192560,3060,working class,1177812004 +192560,3061,Xmas theme,1182124836 +192560,3067,BFI modern classic,1177177745 +192560,3068,author:Barry Reed,1354508661 +192560,3068,courtroom drama,1178372212 +192560,3068,screenwriter:David Mamet,1354508661 +192560,3075,rape,1241140341 +192560,3077,7n Up (series),1206640115 +192560,3077,many interviews,1218636372 +192560,3079,adapted from:book,1187304276 +192560,3079,author:Jane Austen,1187304276 +192560,3081,Depp & Burton,1220667361 +192560,3081,ghosts/afterlife,1183336144 +192560,3082,007 (series),1206639775 +192560,3082,assassin,1226945205 +192560,3082,killer as protagonist,1226945205 +192560,3082,murder,1177185111 +192560,3087,Bechdel Test:Pass,1216303374 +192560,3087,Bill Murray movie with frozen dead person,1278429802 +192560,3087,death/fatality,1278429802 +192560,3087,feel good,1242864550 +192560,3087,Xmas theme,1182124058 +192560,3088,adapted from B'way,1177186478 +192560,3088,psychiatry,1177171494 +192560,3094,adapted from:book,1187304434 +192560,3094,author:E. M. Forster,1187304434 +192560,3095,adapted from:book,1183905711 +192560,3095,author:John Steinbeck,1346602732 +192560,3098,sport:baseball,1183428085 +192560,3098,sports competition,1185049068 +192560,3101,adultery,1184722488 +192560,3102,courtroom,1178373062 +192560,3102,lawyer as protagonist,1191031631 +192560,3102,murder,1178373062 +192560,3105,based on a true story,1177803065 +192560,3105,hospital,1177803400 +192560,3105,psychiatrist as protagonist,1241136726 +192560,3107,death/fatality,1278988429 +192560,3107,firefighting,1184990335 +192560,3107,notable:F/X:fire,1278988429 +192560,3108,Michael Jeter is great in this movie,1241491969 +192560,3108,murder,1244817037 +192560,3108,protagonist is radio personality,1244816998 +192560,3108,psychiatry,1177171450 +192560,3108,radio DJ,1182729933 +192560,3111,award:Oscar:screenplay,1248785766 +192560,3111,writer:Robert Benton,1248785766 +192560,3112,adapted from:play,1268936501 +192560,3112,disambiguation:Mother Night/Night Mother,1238709550 +192560,3112,playwright:Marsha Norman,1268936518 +192560,3114,Pixar animation,1183934723 +192560,3130,adapted from:book,1177806122 +192560,3134,prison escape,1244164619 +192560,3141,prequel to:The Two Jakes,1191206562 +192560,3141,sequel to:Chinatown,1177174763 +192560,3147,biographical(?),1188596039 +192560,3148,abortion,1181348344 +192560,3148,adapted from:book,1183427882 +192560,3148,author:John Irving,1183427882 +192560,3148,Incest,1242856782 +192560,3153,dragon,1367952933 +192560,3156,?android(s)/cyborg(s),1190556920 +192560,3156,adapted from:book,1251679789 +192560,3156,author:Isaac Asimov,1238631168 +192560,3159,classical music,1183933012 +192560,3159,Disney animated feature,1183933009 +192560,3168,murder,1183427579 +192560,3172,?adapted from:book,1183907616 +192560,3172,?author:Homer,1187395618 +192560,3174,biographical,1187304198 +192560,3174,topic:Andy Kaufman,1187304198 +192560,3175,actor as protagonist,1278555574 +192560,3175,Bechdel Test:Fail,1278555755 +192560,3175,death/fatality,1278555559 +192560,3175,parody,1241137846 +192560,3175,plot point:fantasy ship made real,1244497559 +192560,3175,satire,1278555548 +192560,3175,Star Trek,1241137856 +192560,3176,murder,1181483502 +192560,3176,serial killer,1244500555 +192560,3179,adapted from:book,1177805019 +192560,3179,author:Frank McCourt,1247843467 +192560,3179,Judaism,1241136666 +192560,3181,adapted from:play,1178878629 +192560,3181,playwright:Shakespeare,1226864867 +192560,3186,Bechdel Test:Pass,1223692071 +192560,3186,psychiatry,1177171545 +192560,3199,adapted from:play,1241280280 +192560,3204,cloning,1183425278 +192560,3204,Nazis,1177806248 +192560,3208,cameo:Bruce Willis,1184717501 +192560,3210,high school,1226527031 +192560,3210,slackers,1177819891 +192560,3213,adapted from:comic,1177805594 +192560,3213,alter ego,1179176671 +192560,3213,Batman (series),1241136792 +192560,3214,athletic apex,1177804942 +192560,3214,competition:biking,1268667732 +192560,3214,sport:bike racing,1181481682 +192560,3216,vampire,1186969323 +192560,3217,kuenstlerroman,1270339751 +192560,3221,adultery,1178878485 +192560,3221,murder,1178878485 +192560,3244,adapted from B'way,1177186505 +192560,3247,Bechdel Test:Pass,1241491831 +192560,3247,disguised as a nun,1241491831 +192560,3247,mobsters,1241281460 +192560,3247,nuns,1177825829 +192560,3247,setting:Casino,1241281460 +192560,3247,setting:Church,1241281460 +192560,3247,setting:convent,1241281460 +192560,3247,setting:Reno,1241281460 +192560,3247,setting:SF,1241281460 +192560,3248,highschool music teacher,1241491485 +192560,3248,inspiring teacher,1241491485 +192560,3248,mother-daughter relationship,1241491485 +192560,3248,music:gospel,1241491485 +192560,3248,music:soul,1241491485 +192560,3248,nuns,1177825841 +192560,3248,plot:mean man trying to close school run by nun,1241491485 +192560,3248,protagonist is teacher,1241491485 +192560,3248,setting:San Francisco,1241492065 +192560,3248,single parent,1241491485 +192560,3251,adapted from:play,1186854364 +192560,3253,Based on a TV show,1211807251 +192560,3253,Bechdel Test:Fail,1216304158 +192560,3253,SNL alums,1211807846 +192560,3254,Based on a TV show,1183931667 +192560,3254,SNL alums,1211807852 +192560,3255,sport:baseball,1186926106 +192560,3256,adapted from:book,1183930473 +192560,3256,author:Tom Clancy,1183930473 +192560,3256,character:Jack Ryan,1241138864 +192560,3260,adapted from:book,1186931834 +192560,3260,author:E. M. Forster?,1186931834 +192560,3262,murder,1191112113 +192560,3263,sport:basketball,1186970413 +192560,3264,parody (lite),1177802776 +192560,3266,dark comedy,1241140278 +192560,3266,rape,1241140286 +192560,3266,serial killer,1241140284 +192560,3267,violence,1242854924 +192560,3271,adapted from:book,1183929729 +192560,3271,author:John Steinbeck,1228444079 +192560,3271,mentally impared character,1228444096 +192560,3278,Bechdel Test:Pass,1216303157 +192560,3278,queer,1241137860 +192560,3287,Disney animated feature,1183934535 +192560,3287,series:Pooh,1183418803 +192560,3296,high school,1183903586 +192560,3296,protagonist is a teacher,1315922695 +192560,3301,assassin,1223934870 +192560,3301,killer-as-protagonist,1223934870 +192560,3301,murder,1223934870 +192560,3301,setting:Montreal,1241139833 +192560,3311,genre:western noir,1216171705 +192560,3334,adapted from:play,1337488312 +192560,3334,Bogart & Bacall,1241138332 +192560,3334,mafia,1337487401 +192560,3334,murder,1337487773 +192560,3334,natural disaster,1337487401 +192560,3334,nature of heroism,1337488622 +192560,3334,playwright:Maxwell Anderson,1337488312 +192560,3341,adapted from:play,1377146849 +192560,3341,America porn,1377146689 +192560,3359,athletic apex,1177802867 +192560,3359,coming-of-age,1177803516 +192560,3359,sport:bike racing,1183425837 +192560,3360,sport:basketball,1183427457 +192560,3360,sports competition,1183427457 +192560,3361,sport:Baseball,1208033432 +192560,3367,military recruits/training,1377124081 +192560,3367,misfits trained into elite force,1377124081 +192560,3386,character based on real person:JFK,1223088863 +192560,3391,related:Bringing Up Baby (1938),1199587054 +192560,3396,based on a TV show,1188565226 +192560,3396,muppets,1188565226 +192560,3396,subgenre:road trip,1188565226 +192560,3397,Muppets,1184721691 +192560,3398,muppets,1183929130 +192560,3408,based on a true story,1177808886 +192560,3408,courtroom,1178373596 +192560,3408,protagonist is legal assistant,1222632831 +192560,3418,Bechdel Test:Pass,1223692298 +192560,3418,BFI modern classic,1177177663 +192560,3418,rape,1241140014 +192560,3418,subgenre:buddies,1178843735 +192560,3418,subgenre:road trip,1178843735 +192560,3420,courtroom drama,1241136474 +192560,3420,rape,1241136467 +192560,3421,Bechdel Test:Fail,1216303700 +192560,3421,dwelling as character?,1279029099 +192560,3421,setting:College,1373431457 +192560,3421,US college students,1178891986 +192560,3428,sport:boxing?,1186882542 +192560,3429,Aardman studios,1241137416 +192560,3429,claymation,1182302643 +192560,3435,adapted from:book,1268003944 +192560,3435,adultery,1268005141 +192560,3435,Bechdel Test:Fail,1268004019 +192560,3435,betrayl,1268003953 +192560,3435,BFI classic,1177174895 +192560,3435,first ever film noir,1268003938 +192560,3435,investigation,1268003967 +192560,3435,murder,1268005141 +192560,3435,setting:LA,1268005086 +192560,3435,subgenre:bowling noir,1444325864 +192560,3435,substantial changes from source of adaption,1268003976 +192560,3438,adapted from:comic,1183417618 +192560,3438,animation remade as live action,1183417618 +192560,3439,adapted from:comic,1183417720 +192560,3439,animation remade as live action,1241139493 +192560,3440,adapted from:comic,1183417743 +192560,3440,animation remade as live action,1241139499 +192560,3445,`murder investigation as dating service' (Monica Nolan in Bitch no.36),1191031133 +192560,3448,Based on a true story,1188695872 +192560,3448,music:rock and roll (1960s),1190557807 +192560,3448,protagonist is radio personality,1244816933 +192560,3448,radio DJ,1182301961 +192560,3451,interracial marriage,1183908644 +192560,3451,starring:Hepburn and Tracy,1241137969 +192560,3461,adapted from:book,1183908767 +192560,3462,BFI classic,1177176049 +192560,3468,sport:pool,1215883915 +192560,3469,courtroom drama,1178372133 +192560,3472,murder,1279028897 +192560,3487,RemakeOf:Rio Bravo(1958),1183424135 +192560,3489,childhood recaptured,1178996618 +192560,3489,Peter Pan,1181347661 +192560,3489,see also:Peter Pan,1178996618 +192560,3499,adapted from:book,1182126153 +192560,3499,author:Stephen King,1182126153 +192560,3499,writer as protagonist,1188581929 +192560,3504,news media,1182288717 +192560,3504,notable:dialogue,1216230574 +192560,3504,satire?,1177801769 +192560,3504,setting:TV network,1306902463 +192560,3505,adultery,1176604974 +192560,3505,alter ego,1179177145 +192560,3505,Bechdel Test:Fail,1216303474 +192560,3505,espionage,1177797087 +192560,3505,infidelity,1177797071 +192560,3505,innocent person on the run,1214928028 +192560,3505,murder,1177797072 +192560,3505,setting:The Pentagon,1222631285 +192560,3505,significant character in a wheelchair,1280796957 +192560,3505,sleeper agent,1280093432 +192560,3505,subgenre:political corruption,1241281915 +192560,3506,sport:American football,1241138781 +192560,3507,adapted from B'way,1184558742 +192560,3507,starring:Jack Lemmon&Walter Matthau,1206640690 +192560,3513,courtroom,1178373504 +192560,3513,military,1178373504 +192560,3515,?alternate endings,1190556580 +192560,3527,military,1181919142 +192560,3527,murder/fatality,1182127494 +192560,3528,psychiatrist,1177172138 +192560,3528,psychiatrist as protagonist,1177171903 +192560,3529,see also:The Postman Always Rings Twice,1183906491 +192560,3535,?adapted from:book,1184852386 +192560,3535,murder,1177812641 +192560,3535,serial killer,1243209203 +192560,3535,violence,1243209207 +192560,3543,setting:Baltimore,1188696155 +192560,3543,setting:diner,1184536451 +192560,3545,adapted from B'way,1177187279 +192560,3548,adapted from B'way,1177186185 +192560,3548,adapted from:book,1228440988 +192560,3548,Bechdel Test:Pass,1228440988 +192560,3548,queer,1241136715 +192560,3549,adapted from B'way,1177186213 +192560,3549,adapted from:author,1177798680 +192560,3552,animal:gopher,1199585539 +192560,3552,apprenticeship,1183416571 +192560,3552,coming-of-age,1177803530 +192560,3552,competition,1182302213 +192560,3552,setting:golf course,1199585530 +192560,3552,sport:golf,1182005461 +192560,3563,adapted from:comic,1177807660 +192560,3564,animation remade as live action,1241137784 +192560,3564,Based on a TV show,1183419421 +192560,3578,subgenre:sword and sandal,1186846332 +192560,3579,musical score:Maurice Jarre,1186931983 +192560,3598,adapted from:play,1177810623 +192560,3598,adultery,1177797314 +192560,3598,murder,1177797314 +192560,3598,playwright:Shakespeare,1226864993 +192560,3604,adapted from:play,1177810682 +192560,3615,Disney animated feature,1183934323 +192560,3617,subgenre:road trip,1188586189 +192560,3623,adapted from a TV series,1279395572 +192560,3624,subgenre:buddies,1181394246 +192560,3633,007 (series),1241138829 +192560,3633,assassin,1226945179 +192560,3633,killer as protagonist,1226945179 +192560,3633,murder,1177184985 +192560,3634,adapted from:book,1257646955 +192560,3634,author:Charles W. Bailey II,1257646955 +192560,3634,author:Fletcher Knebel,1257646955 +192560,3634,screenwriter:Rod Serling,1257646955 +192560,3635,007 (series),1241139369 +192560,3635,assassin,1226944954 +192560,3635,killer as protagonist,1226944954 +192560,3635,murder,1177185010 +192560,3635,villain:Jaws,1223692860 +192560,3638,007 (series),1241138692 +192560,3638,assassin,1226944909 +192560,3638,killer as protagonist,1226944909 +192560,3638,murder,1177185165 +192560,3638,plot point:bio-medical danger,1223690281 +192560,3638,setting:space/Earth orbit,1223690329 +192560,3638,villain:Jaws,1223690329 +192560,3639,007 (series),1241138577 +192560,3639,assassin,1226945078 +192560,3639,infidelity,1177184921 +192560,3639,killer as protagonist,1226945078 +192560,3639,murder,1177184921 +192560,3639,rape,1241138584 +192560,3668,adapted from:play,1178923285 +192560,3668,playwright:Shakespeare,1226865196 +192560,3671,Bechdel Test:Fail,1216304184 +192560,3671,genre:comedy western,1303305179 +192560,3671,parody:Busby Berkley (scene),1202615058 +192560,3671,satire?,1188923324 +192560,3671,western,1177802670 +192560,3672,animal:dog,1183913054 +192560,3675,Xmas theme,1182124383 +192560,3677,Bechdel Test:Fail,1228221908 +192560,3677,non-verbal,1186856055 +192560,3685,Compare:Mr. and Mrs. Smith (2005),1284992998 +192560,3685,dark comedy,1241138938 +192560,3685,job/career vs. relationship/marriage,1284992979 +192560,3685,killer-as-protagonist,1214926722 +192560,3685,mafia,1177797694 +192560,3685,murder,1177797672 +192560,3685,protagonist is an assassin,1284992979 +192560,3688,high school,1183931359 +192560,3688,might hate,1353452688 +192560,3693,Troma pictures,1241139637 +192560,3694,Troma pictures,1241139625 +192560,3695,Troma pictures,1241139630 +192560,3698,adapted from:book,1181919173 +192560,3698,author:Stephen King,1181919173 +192560,3702,dystopia,1183932477 +192560,3702,post-apocalyptic,1183932477 +192560,3702,violent,1251678294 +192560,3703,post-apocalyptic,1183932488 +192560,3704,post-apocalyptic,1183932542 +192560,3706,magic,1187405175 +192560,3706,setting:New Orleans,1237581735 +192560,3719,adapted from:play,1183856523 +192560,3719,playwright:Shakespeare,1226865207 +192560,3723,adapted from:play,1177810598 +192560,3723,adultery,1177810598 +192560,3723,murder,1177810598 +192560,3723,playwright:Shakespeare,1226865122 +192560,3726,related:Rio Bravo(1958),1183424705 +192560,3733,adapted from:book,1177798557 +192560,3733,adaptedInto:Television series,1251467027 +192560,3733,Bechdel Test:Fail,1322941856 +192560,3733,filmed at:Univ. of Toronto,1178892049 +192560,3733,Harvard Law school,1178892049 +192560,3733,setting:Boston,1178892049 +192560,3736,protagonist is a journalist,1279888231 +192560,3751,Aardman studios,1241137227 +192560,3751,claymation,1182125365 +192560,3751,Nick Park,1241137219 +192560,3751,related:The Great Escape,1190559972 +192560,3751,Yanks vs. Brits,1267290948 +192560,3754,Based on a TV show,1183418721 +192560,3756,adapted from:book,1190550412 +192560,3756,author:Henry James,1190550389 +192560,3775,Disney animated feature,1183932812 +192560,3776,Disney animated feature,1183933967 +192560,3785,parody,1188581357 +192560,3786,coming-of-age,1181917991 +192560,3786,queer,1241137018 +192560,3786,sexuality,1181916839 +192560,3791,coming-of-age,1177809491 +192560,3793,adapted from:comic,1182617144 +192560,3801,adapted from:book,1179511049 +192560,3801,based on a true story,1179511361 +192560,3801,courtroom drama,1241136653 +192560,3801,psychiatry,1179511049 +192560,3809,Bechdel Test:Fail,1216303925 +192560,3809,psychiatrist,1177172199 +192560,3809,psychiatrist as protagonist,1241139798 +192560,3811,courtroom drama,1178372656 +192560,3811,military,1178372656 +192560,3820,adapted from:book series,1183419450 +192560,3826,invisibility,1223934468 +192560,3831,adultery,1201404561 +192560,3831,notable:pollywog,1214928335 +192560,3831,plot:Bildungsroman but with middle-aged character,1201469633 +192560,3831,plot:small British community comes together,1201469633 +192560,3831,protagonist is recently widowed,1201404561 +192560,3831,related:Whisky Galore,1201469633 +192560,3831,setting:Cornwall township (UK),1201469633 +192560,3831,setting:Portabello Rd/Notting Hill (scene),1201469633 +192560,3831,unbelievable accents,1201469791 +192560,3871,BFI classic,1177176217 +192560,3877,adapted from:comic,1238328205 +192560,3882,competition:cheerleading,1186881275 +192560,3911,animal:dog,1184466731 +192560,3915,sport:boxing,1241137918 +192560,3923,sequelTo:The Fly (1958),1211547316 +192560,3932,adapted from:book,1227647021 +192560,3932,author:H. G. Wells,1279808892 +192560,3932,invisibility,1227647002 +192560,3946,adapted from:book,1180040697 +192560,3946,adultery,1180040697 +192560,3946,assassin,1180040697 +192560,3946,infidelity,1180040697 +192560,3946,killer-as-protagonist,1214927649 +192560,3946,murder,1242856374 +192560,3946,rape,1241140977 +192560,3946,remadeAs:Get Carter(2000),1180040697 +192560,3946,remakeOf:Get Carter(1971),1180040697 +192560,3946,revenge as motive,1180040697 +192560,3947,adapted from:book,1180040523 +192560,3947,adultery,1180039576 +192560,3947,assassin,1180039576 +192560,3947,British gangsters,1241140942 +192560,3947,corruption of youth,1241140945 +192560,3947,infidelity,1180039576 +192560,3947,killer-as-protagonist,1214926916 +192560,3947,murder,1180039576 +192560,3947,rape,1241140937 +192560,3947,remadeAs:Get Carter(2000),1180040693 +192560,3947,remakeOf:Get Carter(1971),1180040693 +192560,3947,revenge as motive,1180039492 +192560,3948,Stiller&Wilson,1181394451 +192560,3959,author:H. G. Wells,1279808839 +192560,3959,remadeAs:The Time Machine(2002),1266751925 +192560,3959,remakeOf:The Time Machine(1960),1178892523 +192560,3959,See also:The Time Machine(1960),1266751925 +192560,3959,time travel,1178892465 +192560,3964,Disney animated feature,1183932787 +192560,3977,Based on a TV show,1177803190 +192560,3977,Bechdel Test:Pass,1278429946 +192560,3977,camp,1241137170 +192560,3977,genre spoof,1241137162 +192560,3977,laser maze room (in a comedy),1214614523 +192560,3977,murder,1181916526 +192560,3977,nuns (brief scene),1182798714 +192560,3977,privacy,1178642741 +192560,3977,private detective,1181916526 +192560,3977,women disguised as men,1179009819 +192560,3984,007 (series),1206639571 +192560,3984,assassin,1226944827 +192560,3984,homophobia,1363661808 +192560,3984,killer as protagonist,1226944827 +192560,3984,murder,1177184713 +192560,3985,adapted from:book,1186923368 +192560,3988,adapted from:book,1188586968 +192560,3988,animation remade as live action,1182124527 +192560,3988,author:Dr. Seuss,1188586968 +192560,3988,based on a TV show,1188586968 +192560,3988,Xmas theme,1182124491 +192560,3990,Based on a TV show,1183419183 +192560,3991,animal:dog,1183418647 +192560,3993,biographical view,1187383364 +192560,3993,group sex,1187383364 +192560,3993,topic:Marquis de Sade,1187383364 +192560,3996,alter ego,1179176983 +192560,3996,killer-as-protagonist,1214926847 +192560,3996,murder,1178998650 +192560,4002,Compare:Planes Trains and Automobiles (1987),1360588667 +192560,4005,007 (series),1206639708 +192560,4005,assassin,1226945070 +192560,4005,killer as protagonist,1226945070 +192560,4005,murder,1177184894 +192560,4006,android(s)/cyborg(s),1211500453 +192560,4014,food/cooking,1183416130 +192560,4016,Disney animated feature,1183933659 +192560,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1178143573 +192560,4017,adultery,1248785681 +192560,4017,biopic,1248785681 +192560,4023,angelic intervention?,1186102638 +192560,4023,related:Mr. Destiny (1990),1229099287 +192560,4023,setting:NYC,1186102658 +192560,4025,competition:`beauty pageant',1187403513 +192560,4027,adapted from:book,1186925625 +192560,4027,music:bluegrass,1186925638 +192560,4027,reference:cyclops,1222632090 +192560,4039,adapted from B'way,1177805115 +192560,4039,adapted from:comic,1177805115 +192560,4041,military recruits/training,1183931991 +192560,4063,adapted from B'way,1177186601 +192560,4069,central event:wedding preparation(?),1214928069 +192560,4084,setting:Playboy mansion (scene),1185048490 +192560,4085,setting:Hollywood,1204981914 +192560,4086,setting:New Orleans,1178979085 +192560,4102,homophobic,1228706618 +192560,4102,stand-up comedy,1186923429 +192560,4102,warning:homophobia,1245074470 +192560,4105,zombies,1182616858 +192560,4113,author:Tennessee Williams,1183928530 +192560,4133,Based on a TV show?,1185032401 +192560,4142,adapted from:book series,1187302794 +192560,4142,Jesus freaks,1241138408 +192560,4148,character:Hannibal Lecter,1257368551 +192560,4148,prequel to:Hannibal,1178880281 +192560,4148,psychiatrist as protagonist,1177810735 +192560,4148,sequel to:Silence Of The Lambs,1178880281 +192560,4148,serial killer,1178880120 +192560,4153,ghosts/afterlife,1183335996 +192560,4153,remakeOf:Here Comes Mr. Jordan,1177819466 +192560,4156,espionage,1284414343 +192560,4156,protagonist is teacher,1284414343 +192560,4178,adapted from:book,1183901254 +192560,4178,author:Steinbeck,1183901254 +192560,4184,adapted from:book,1324039763 +192560,4184,adultery,1323999542 +192560,4184,angelic intervention,1324039700 +192560,4184,animal:dog,1324042412 +192560,4184,Bechdel Test:Pass (barely),1324042443 +192560,4184,ice skating,1324039719 +192560,4184,notable:taxi driver (scene),1324039733 +192560,4184,religion:Xian,1324039700 +192560,4184,setting:NYC,1324039745 +192560,4184,Xmas theme,1324039700 +192560,4186,starring:Jack Lemmon&Walter Matthau,1206640697 +192560,4189,christian,1367952771 +192560,4189,jesus,1367952510 +192560,4193,adapted from:play,1177809116 +192560,4210,murder,1178843660 +192560,4210,serial killer,1183928909 +192560,4211,based on a true story,1178374110 +192560,4211,courtroom,1178374110 +192560,4211,murder,1178374110 +192560,4212,adapted from:book,1183912004 +192560,4212,author:Agatha Christie,1183912004 +192560,4220,RemakeOf:The Longest Yard (1974),1178980415 +192560,4220,RemakeOf:The Longest Yard (2005),1178980415 +192560,4220,sport:American football,1178980832 +192560,4221,sport:American football,1178980886 +192560,4226,amnesia,1177812681 +192560,4226,hypertextual,1241138650 +192560,4226,time,1177812681 +192560,4234,adapted from:book,1326799702 +192560,4234,author:John le Carre,1326799696 +192560,4234,espionage,1177185374 +192560,4246,adapted from:book,1177803156 +192560,4248,adapted from TV show,1183857343 +192560,4253,writer:David Mamet,1238707474 +192560,4256,plot:client falls in love with sex worker,1245005150 +192560,4259,adopted from:book,1228923938 +192560,4259,author:Vladimir Nabokov,1228923938 +192560,4262,mafia,1207505177 +192560,4265,sport:car racing (Formula 1)?,1186923196 +192560,4270,ghosts/afterlife,1190559386 +192560,4279,courtroom,1178374261 +192560,4279,murder,1178374261 +192560,4280,adapted from:book,1183427824 +192560,4280,author:John Irving,1183427824 +192560,4285,setting:diner,1184536330 +192560,4291,animation & live action interact (scene),1183419727 +192560,4291,Bechdel Test:Pass,1217017300 +192560,4302,related:King Lear,1247880519 +192560,4306,Dreamworks animation,1183933255 +192560,4308,Red Curtain trilogy,1185809615 +192560,4322,courtroom,1178372974 +192560,4322,sport:baseball,1186923485 +192560,4327,Bechdel Test:Fail,1277522809 +192560,4327,lousy acting,1277522758 +192560,4327,murder,1277608473 +192560,4327,Remake of:Seven Samurai (1954),1277522794 +192560,4329,BFI classic,1177172494 +192560,4329,cult of masculinity,1267291401 +192560,4329,Related:Assault on Precinct 13 (1976;2005),1183424671 +192560,4329,related:High Noon,1177169988 +192560,4329,related:Only Angels Have Wings,1177169922 +192560,4329,related:To Have and Have Not,1177169909 +192560,4329,RemadeAs:El Dorado(1966); Rio Lobo (1970),1183424671 +192560,4329,RemakeOf:Rio Bravo(1958),1183424256 +192560,4329,western,1177798490 +192560,4333,dark comedy,1280797138 +192560,4344,computer cracker,1182800598 +192560,4344,computers,1182820795 +192560,4344,DVD:alternate endings,1223933986 +192560,4344,murder,1223933986 +192560,4344,setting:LA,1223933986 +192560,4349,adapted from:book,1183911256 +192560,4349,author:Joseph Heller,1215564124 +192560,4349,insanity during war,1215564917 +192560,4349,screenwriter:Buck Henry,1215564124 +192560,4351,bank robbery,1183930626 +192560,4351,murder,1183930637 +192560,4351,sport:surfing,1183930637 +192560,4357,Bechdel Test:Fail,1281099073 +192560,4357,notable scene:fashion show,1281099062 +192560,4357,notable scene:orchestral intro,1281099052 +192560,4357,protagonist is a gold digger,1360805897 +192560,4361,actors,1183509592 +192560,4361,gender disguise,1183509592 +192560,4361,men disguised as women,1178942445 +192560,4361,soap operas,1183509611 +192560,4366,Disney animated feature,1183934226 +192560,4367,adapted from:game,1182125744 +192560,4368,adapted from:book series,1177808418 +192560,4368,author:Hugh Lofting,1275058724 +192560,4370,android(s)/cyborg(s),1211635748 +192560,4370,dystopia,1177804482 +192560,4388,parody,1188581380 +192560,4390,rape,1241140924 +192560,4402,parody,1177808477 +192560,4402,related:007 (series),1206639851 +192560,4403,adapted from:book,1181918521 +192560,4403,author:Edgar Allan Poe,1181918521 +192560,4404,devil's bargain,1181482580 +192560,4409,serial killer,1245445606 +192560,4429,adapted from:book,1211503222 +192560,4429,author:Herman Melville,1211503222 +192560,4446,adapted from:game,1182125724 +192560,4446,computer animation,1182125724 +192560,4446,similar:Final Fantasy,1177172863 +192560,4447,animal:dog,1198025316 +192560,4447,courtroom setting,1181514893 +192560,4447,Harvard Law school,1181509170 +192560,4447,murder,1181509170 +192560,4448,hacker,1189865338 +192560,4448,heist,1189865338 +192560,4448,setting:Montreal,1189865338 +192560,4450,rape,1241140568 +192560,4464,adapted from:book,1186854113 +192560,4465,courtroom drama,1241136542 +192560,4465,rape,1241140474 +192560,4469,author:Agatha Christie,1183928596 +192560,4469,character:Hercule Poirot,1183928604 +192560,4499,con artists,1317744571 +192560,4499,deception to win wager,1317744561 +192560,4499,plot:wager,1317744493 +192560,4499,RemakeOf:Bedtime Story (1964),1351878707 +192560,4515,Beatles,1177811453 +192560,4515,biographical,1177811467 +192560,4535,adapted from:poem,1351184846 +192560,4535,author:A.B. 'Banjo' Paterson,1351184846 +192560,4545,robot,1186928039 +192560,4550,protagonist is journalist,1383365176 +192560,4550,remake of:The Front Page (1931),1383365826 +192560,4553,perception,1247686887 +192560,4558,twins/inter-related lives,1187301365 +192560,4562,Sherlock Holmes,1183928574 +192560,4570,cameo-fest,1244320023 +192560,4570,related:The Player,1244320001 +192560,4571,Bechdel Test:Fail,1223772099 +192560,4571,time travel,1178892255 +192560,4612,Cannes:jury prize,1177798938 +192560,4612,character portrays Jesus,1220403277 +192560,4612,jesus,1367952510 +192560,4613,animal:dog,1183931147 +192560,4621,technique:voice over,1183931111 +192560,4623,sport:baseball,1187303952 +192560,4630,sport:`professional' wrestling,1187381895 +192560,4636,adapted from:comic,1211477200 +192560,4642,queer,1241138080 +192560,4643,"""damn dirty apes""",1177812898 +192560,4643,dystopia,1177812898 +192560,4643,post-apocalyptic,1183932579 +192560,4677,animal:dog,1183931636 +192560,4678,setting:TV network,1306902484 +192560,4686,zombie,1186970002 +192560,4692,adapted from:book,1183427801 +192560,4692,author:John Irving,1183427801 +192560,4700,protagonist is royal,1269051727 +192560,4703,food/cooking,1183416607 +192560,4705,adapted from:play,1177806618 +192560,4706,adapted from:play,1241137061 +192560,4714,animal:orangutang?,1186855389 +192560,4719,ostensibly for kids but: prejudice:sexism,1178143615 +192560,4728,related:Mad Mad World,1241492312 +192560,4733,adultery,1179117715 +192560,4733,alter ego,1179172790 +192560,4733,Chandleresque,1241137451 +192560,4734,cameo-fest,1186926569 +192560,4734,jay and silent bob,1186926569 +192560,4745,adapted from:play,1187306353 +192560,4745,playwright:Shakespeare,1226865217 +192560,4753,vampire,1186969292 +192560,4792,dwelling as character,1279029240 +192560,4792,ghosts/afterlife,1183335934 +192560,4792,magic/illusion/mysticism,1270115868 +192560,4792,subgenre:haunted house,1270115905 +192560,4796,adultery,1323626287 +192560,4796,based on a play,1323626274 +192560,4798,Bechdel Test:Pass (barely),1322972075 +192560,4798,protagonist is actor,1322972213 +192560,4798,theme:lying,1322972183 +192560,4799,competition,1182301886 +192560,4799,related:Mad Mad World,1241492483 +192560,4802,adaptedInto:Television series,1322941777 +192560,4802,animal:goat,1322941745 +192560,4802,animal:pig,1322941745 +192560,4802,Bechdel Test:Pass (technically but not really),1322941745 +192560,4802,screwball comedy,1367952748 +192560,4802,setting:submarine,1322941745 +192560,4802,setting:The Philippines,1322941745 +192560,4802,setting:wartime,1322941745 +192560,4816,Bechdel Test:Fail,1243210196 +192560,4816,cameo:David Bowie,1243210191 +192560,4816,club DJ (scene),1190510829 +192560,4816,dance off (scene),1181414775 +192560,4816,disc jockey (scene),1190510754 +192560,4816,fashion,1186927253 +192560,4816,group sex,1177812458 +192560,4816,prejudice:transphobic,1243210184 +192560,4816,protagonist is an idiot,1281369764 +192560,4816,Stiller&Wilson,1181394495 +192560,4857,adapted from B'way,1177187301 +192560,4857,Judaism,1177809284 +192560,4857,persecution,1223816120 +192560,4865,adapted from:comic,1178878813 +192560,4865,author:Alan Moore,1181918680 +192560,4865,Jack the Ripper,1178878852 +192560,4865,murder,1178878794 +192560,4865,serial killer,1241137823 +192560,4868,assassin,1223771937 +192560,4868,disambiguation:Bangkok Dangerous (2000/2008),1223772029 +192560,4868,killer-as-protagonist,1223771938 +192560,4868,murder,1223771937 +192560,4874,psychiatrist,1177172212 +192560,4874,psychiatrist as protagonist,1177172059 +192560,4876,clockwork devices,1323657676 +192560,4876,dwelling as character,1279029223 +192560,4876,ghosts/afterlife,1183335909 +192560,4876,magic/illusion/mysticism,1270115962 +192560,4876,set:mechanical gearworks,1215882405 +192560,4876,subgenre:haunted house,1279029213 +192560,4886,Bechdel Test:Fail,1302988685 +192560,4886,doors as portals,1313855914 +192560,4886,missing/kidnapped child,1303305126 +192560,4886,Pixar animation,1183934757 +192560,4886,subgenre:buddies,1302988668 +192560,4896,adapted from:book,1177798717 +192560,4896,author:J. K. Rowling,1247845848 +192560,4902,paired with:Devil's Backbone,1182048559 +192560,4902,paired with:Pan's Labyrinth,1182048559 +192560,4912,adapted from B'way,1177186451 +192560,4919,stylized,1177812111 +192560,4920,adapted from:book,1228693263 +192560,4920,adultery,1301880961 +192560,4920,Bechdel Test:Pass,1228693262 +192560,4920,bildungsroman,1228707010 +192560,4920,independent woman,1228693263 +192560,4920,lots of smoking,1356450318 +192560,4920,mental illness,1356450298 +192560,4920,overbearing mother,1361136518 +192560,4920,psychiatrist as protagonist,1241138787 +192560,4920,the comfort food of movies,1301880941 +192560,4921,adapted from:book,1183901892 +192560,4921,author:Louisa May Alcott,1235980628 +192560,4929,disambiguation:Toy(s),1238714237 +192560,4936,high school,1183903343 +192560,4941,camp,1400966103 +192560,4945,character:Dirty Harry?,1186923662 +192560,4956,Bechdel Test:Fail,1216303998 +192560,4956,social commentary,1183427365 +192560,4956,theatrical people/inside the theatre or cinema/actors & acting,1267292483 +192560,4956,topic:Hollywood industry,1183611752 +192560,4969,adapted from:book,1183904579 +192560,4969,author:Agatha Christie,1183904579 +192560,4970,BFI classic,1177174628 +192560,4973,setting:Paris,1185031745 +192560,4974,parody,1183856750 +192560,4979,dark comedy,1189043387 +192560,4979,ensemble cast,1242864219 +192560,4979,family dynamics,1189043424 +192560,4980,biographical,1178892328 +192560,4980,time travel,1178892311 +192560,4981,horrifying (but not Horror genre),1241137345 +192560,4981,time,1177812710 +192560,4993,adapted from:book,1184558842 +192560,4993,author:J. R. R. Tolkein,1182616986 +192560,4994,centred on movie theatre,1215883607 +192560,5002,adapted from:comic,1183913213 +192560,5003,adapted from:comic,1183913339 +192560,5004,Classic,1340937130 +192560,5008,actor as protagonist,1226865523 +192560,5008,adapted from:book,1178372090 +192560,5008,author:Agatha Christie,1181918625 +192560,5008,courtroom drama,1178372090 +192560,5008,lawyer as protagonist,1226865523 +192560,5009,biographical?,1186854490 +192560,5009,sport:boxing,1241136611 +192560,5009,topic:Muhammed Ali,1218383611 +192560,5012,Gender disguise,1181347782 +192560,5012,Judaism,1178998886 +192560,5012,woman disguised as men,1178998886 +192560,5013,adultery,1176604570 +192560,5013,Bechdel test:Pass,1216303562 +192560,5013,comedy of manners,1177796614 +192560,5013,ensemble cast,1177796191 +192560,5013,movie within a movie,1189041056 +192560,5013,multiple camera/crowd shoot,1177796203 +192560,5013,murder,1177796191 +192560,5013,Oscar:screenplay,1184773217 +192560,5013,protagonist is servant,1315073114 +192560,5013,related:Charlie Chan,1189041085 +192560,5013,satire,1177796233 +192560,5013,see also:The Rules of The Game/Gosford Park,1177796689 +192560,5013,upstairs-downstairs,1177796269 +192560,5013,writer:Julian Fellowes,1263578645 +192560,5014,courtroom,1178373027 +192560,5016,adapted from:book,1265914589 +192560,5016,author:E. Annie Proulx,1265914589 +192560,5016,setting:Newfoundland,1276625937 +192560,5021,genre spoof?,1186326040 +192560,5027,will dislike,1353452512 +192560,5032,adapted from:book,1238327162 +192560,5032,author hates adaptation,1238327162 +192560,5032,Bechdel Test:Fail,1216303178 +192560,5033,adapted from:book,1212882470 +192560,5033,author:John le Carre,1212882470 +192560,5033,espionage,1241139073 +192560,5033,great cinematography,1241139077 +192560,5034,"""Ghost for adults""",1340936914 +192560,5034,ghosts/afterlife,1183335843 +192560,5034,protagonist is recently widowed,1201404352 +192560,5034,remakeOf:Truly Madly Deeply,1177185659 +192560,5035,adapted from:book,1183912943 +192560,5049,setting:San Francisco,1182617160 +192560,5049,subgenre:buddies,1190568017 +192560,5055,biographical,1186923088 +192560,5060,adaptedInto:Television series,1190573816 +192560,5060,insanity during war,1215564891 +192560,5064,adapted from:book,1186922031 +192560,5064,author:Alexandre Dumas,1190554834 +192560,5076,adapted from:book,1183417294 +192560,5076,author:Mark Twain,1183417306 +192560,5090,adapted from:book,1188742659 +192560,5090,author:Victor Hugo,1248174512 +192560,5090,Bechdel Test:Fail,1248174599 +192560,5109,Disney animated feature,1183934515 +192560,5109,Peter Pan,1183418509 +192560,5113,writer: Neil Simon,1268701886 +192560,5120,adultery,1176605312 +192560,5120,alter ego,1179177125 +192560,5120,Bechdel Test:Fail,1216303362 +192560,5120,games,1182300804 +192560,5120,maze,1182300804 +192560,5120,murder,1177796988 +192560,5120,small cast,1177812840 +192560,5120,social commentary,1177812851 +192560,5128,author:Anne Rice,1266752436 +192560,5128,subgenre:vampire,1354408658 +192560,5134,RemakeOf:The Longest Yard (1974),1223691624 +192560,5139,sport:baseball,1183912175 +192560,5140,sport:baseball,1183913452 +192560,5141,sport:baseball,1183913483 +192560,5143,alter ego,1179176475 +192560,5144,alter ego,1179176481 +192560,5146,dark hero,1367952680 +192560,5147,BFI classic,1177176611 +192560,5171,remadeAs:The Time Machine(2002),1178892536 +192560,5171,remakeOf:The Time Machine(1960),1178892494 +192560,5177,adapted from:book,1238324268 +192560,5177,author:Booth Tarkington,1238324268 +192560,5177,musical score:Bernard Herrmann,1238324348 +192560,5187,adapted from:book,1304646081 +192560,5187,author:Brian Garfield,1304646081 +192560,5187,CIA comedy,1287965568 +192560,5187,retired spy being hunted,1287285330 +192560,5187,retirees,1287285330 +192560,5187,spy with booby-trapped house,1352686280 +192560,5201,cannibalism?,1186928821 +192560,5219,adapted from:game,1182125664 +192560,5219,plot point:bio-medical danger,1223689997 +192560,5222,queer,1241138349 +192560,5226,sport:American football,1178980817 +192560,5227,biblical,1268574853 +192560,5247,road chase,1187404640 +192560,5265,adultery,1244032335 +192560,5265,dark comedy,1244032372 +192560,5265,setting:television show,1244032347 +192560,5289,sport:boxing?,1186880537 +192560,5291,rape,1241140334 +192560,5292,sport:hockey,1241139437 +192560,5300,genre:western noir,1216171737 +192560,5328,adapted from:book,1383526414 +192560,5328,author: Kirsty Gunn,1383526414 +192560,5329,alter ego,1280093575 +192560,5334,hostage crisis,1177802889 +192560,5334,protagonist sells cars,1222631161 +192560,5341,biographical,1187303107 +192560,5341,topic:Lenny Bruce,1187303107 +192560,5349,adapted from:comic,1179176737 +192560,5349,alter ego,1179176737 +192560,5380,adapted from:play,1177811393 +192560,5380,playwright:Oscar Wilde,1218336892 +192560,5382,animal:orangutang,1183913143 +192560,5383,adapted from:book,1227647089 +192560,5383,author:Arthur Conan Doyle,1227647089 +192560,5383,Basil Rathbone as Sherlock Holmes,1244499290 +192560,5384,courtroom drama,1178372250 +192560,5384,murder,1178372250 +192560,5388,insomnia,1191776760 +192560,5388,murder,1191776782 +192560,5388,police investigation,1191776782 +192560,5388,remake of Insomnia (1997),1191776874 +192560,5389,animal:horse,1183418568 +192560,5398,sport:boxing,1182618010 +192560,5415,adapted from:book,1296053450 +192560,5418,adapted from:book,1186880902 +192560,5418,author:Robert Ludlum,1186880902 +192560,5418,innocent person on the run,1186880902 +192560,5418,living a fictional life,1352827768 +192560,5418,memory/amnesia,1186880902 +192560,5419,animation remade as live action,1183419202 +192560,5419,Based on a TV show,1183419202 +192560,5439,sardonic,1267293212 +192560,5439,satire,1177796090 +192560,5439,satire:major recutting,1177796090 +192560,5439,theatrical people/inside the theatre or cinema/actors & acting,1267293212 +192560,5439,topic:Hollywood industry,1183611406 +192560,5442,adapted from:book series,1183426303 +192560,5442,murder,1183426303 +192560,5442,private detective,1183426312 +192560,5444,Disney animated feature,1183933489 +192560,5445,adapted from:book,1177799172 +192560,5445,adultery,1177795169 +192560,5445,author:Philip K. Dick,1189039058 +192560,5445,compare:Minority Report (2002),1316992779 +192560,5445,dystopia,1189038992 +192560,5445,murder,1177795169 +192560,5452,technique:voice over,1183417825 +192560,5459,secret gov't agency works with and hides aliens,1215882457 +192560,5460,Based on a TV show?,1183856818 +192560,5470,adapted from:play,1177811401 +192560,5470,playwright:Oscar Wilde,1340934955 +192560,5476,character:Michael Myers,1354407770 +192560,5476,murder,1354407770 +192560,5476,serial killer,1354407770 +192560,5476,subgenre:slasher,1354407770 +192560,5480,adapted from:book,1183418815 +192560,5481,parody,1177802329 +192560,5481,related:007 (series),1206639637 +192560,5481,time travel,1178892178 +192560,5489,BFI modern classic,1177177217 +192560,5489,vampire,1187306260 +192560,5496,see also:The Postman Always Rings Twice,1183905941 +192560,5505,adultery,1245004103 +192560,5527,?adapted from:book,1190549092 +192560,5527,author:A. S. Byatt?,1186927767 +192560,5541,parody,1183930342 +192560,5544,adapted from:book,1178879800 +192560,5544,Jack the Ripper,1178879039 +192560,5544,murder,1178879345 +192560,5544,See also:The Time Machine(1960),1266751831 +192560,5544,serial killer,1178879780 +192560,5544,time travel,1178879039 +192560,5555,werewolf,1186971148 +192560,5617,protagonist is paralegal (incidental),1222632768 +192560,5617,See also:Secretary,1303956030 +192560,5617,sexuality:BDSM,1183854326 +192560,5629,Jesus freaks,1183418391 +192560,5630,character:Hannibal Lecter,1244032684 +192560,5630,prequelTo:Silence of the Lambs,1244032725 +192560,5630,serial killer,1244032514 +192560,5638,subgenre:Kaiju,1371785771 +192560,5642,courtroom,1178373817 +192560,5642,kidnapping,1178373817 +192560,5642,murder,1178373817 +192560,5650,Based on a TV show,1183928863 +192560,5650,character:Bob and Doug Mackenzie,1211808256 +192560,5666,adapted from:book,1233191152 +192560,5666,author:Bret Easton Ellis,1233191152 +192560,5669,documentary critique,1182513897 +192560,5679,plot point:television,1190561897 +192560,5679,plot point:videotape,1190561897 +192560,5679,remadeAs:The Ring (2002),1190561897 +192560,5679,remakeOf:Ringu (1998),1190561897 +192560,5682,The Shoah,1248782968 +192560,5691,character:Jason Vorhees,1354407465 +192560,5691,subgenre:slasher,1354407465 +192560,5721,adapted from:book,1177803991 +192560,5721,author:Chaim Potok,1270339006 +192560,5721,bildungsroman,1270339006 +192560,5721,Jamie's Dad's favourites,1270339006 +192560,5721,Judaism,1177803271 +192560,5731,rape,1241140838 +192560,5756,android(s)/cyborg(s),1190556985 +192560,5756,animal:bear,1298163744 +192560,5756,animal:rabbit,1298163744 +192560,5756,animal:racoon,1298163744 +192560,5756,Bechdel Test:Fail,1216303228 +192560,5756,crime-fighting/police robot,1298163744 +192560,5756,death/fatality,1298163827 +192560,5760,adapted from:book,1238276920 +192560,5760,author:D.H. Lawrence,1238276920 +192560,5761,alter ego,1179176469 +192560,5773,couldn't bear to watch it all,1217780574 +192560,5773,horrifying (but not Horror genre),1241138742 +192560,5782,disambiguation:Leon/The Professional & The Professional (1981),1232048245 +192560,5785,Based on a TV show,1186927974 +192560,5791,biographical,1186929623 +192560,5796,parody,1268521436 +192560,5796,related:007 (series),1206639790 +192560,5803,Based on a TV show,1183856367 +192560,5804,Xmas theme,1183418523 +192560,5816,adapted from:book,1177798760 +192560,5816,author:J. K. Rowling,1247845789 +192560,5820,music?,1191446755 +192560,5825,BFI classic,1177175266 +192560,5829,sport:curling,1183855430 +192560,5829,sports competition,1183855430 +192560,5832,christian,1367952771 +192560,5853,murder/fatality,1187384656 +192560,5872,007 (series),1206639506 +192560,5872,assassin,1226944788 +192560,5872,killer as protagonist,1226944788 +192560,5872,murder,1178998609 +192560,5878,rape,1241140383 +192560,5881,RemakeOf:Solyaris (1972),1223692557 +192560,5882,adapted from:book,1183418232 +192560,5882,Disney animated feature,1183934104 +192560,5882,pirates,1183418232 +192560,5891,campy,1241140873 +192560,5891,rape,1241140875 +192560,5896,adultery,1176605617 +192560,5896,Bechdel Test:Pass,1216303490 +192560,5896,statutory rape,1216303490 +192560,5900,psychiatrist,1177172184 +192560,5900,psychiatrist as protagonist,1241136645 +192560,5907,adapted from:play,1299864456 +192560,5907,playwright:Euripides,1299864456 +192560,5927,adapted from:play,1177802465 +192560,5927,setting:brothel,1311770312 +192560,5927,setting:Texas,1311770330 +192560,5930,70mm,1241140558 +192560,5930,rape,1241140533 +192560,5931,dystopia,1359143224 +192560,5931,horrifying (but not Horror genre),1177803351 +192560,5931,Mick Travis (series),1359143285 +192560,5931,protagonist is a journalist,1359143220 +192560,5931,satire,1177802741 +192560,5933,adapted from:book,1268521387 +192560,5933,author:John Steinbeck,1268521387 +192560,5935,protagonist is a teacher,1315922640 +192560,5938,adapted from:stage play,1242856751 +192560,5938,playwright:Ira Levin,1242856741 +192560,5944,Based on a TV show,1178881128 +192560,5944,even-numbered ST movie,1368976231 +192560,5944,Star Trek,1241139291 +192560,5944,STTNG,1368976476 +192560,5945,adapted from:book,1228441038 +192560,5945,dark comedy,1183854670 +192560,5950,alcohol abuse,1245005001 +192560,5952,adapted from:book,1177799002 +192560,5952,author:J. R. R. Tolkein,1182617012 +192560,5958,Based on a TV show,1183418623 +192560,5975,adapted from:book,1223771699 +192560,5975,author:Leo Tolstoy,1244814423 +192560,5981,adapted from:book,1177808010 +192560,5989,biographical view,1187405406 +192560,5990,animation remade as live action,1183418475 +192560,5990,puppetry,1183416513 +192560,5991,adapted from B'way,1177187376 +192560,5992,related:author:Virginia Woolf,1190549214 +192560,5992,related:book:Mrs. Dalloway,1187300605 +192560,5992,see: The Hours,1197421028 +192560,5994,adapted from:book,1181918307 +192560,5994,author:Charles Dickens,1181918307 +192560,5995,Nazis,1183426859 +192560,5995,The Shoah,1183426837 +192560,5995,Warsaw ghetto,1183426865 +192560,6003,adapted from:book,1177807473 +192560,6003,biographical,1177807473 +192560,6037,group sex,1177812495 +192560,6037,infidelity,1177812501 +192560,6037,sexuality,1270113567 +192560,6064,boxing drama,1241136339 +192560,6064,sport:boxing,1241138059 +192560,6068,genre:western noir,1216170926 +192560,6077,author:Agatha Christie,1183928651 +192560,6077,character:Hercule Poirot,1183928651 +192560,6086,adapted from:book,1178371754 +192560,6086,character:Mike Hammer,1219068279 +192560,6088,alter ego,1179172700 +192560,6088,tale:Jekyll&Hyde,1344027931 +192560,6104,Bechdel Test:Fail,1216303503 +192560,6104,Monty Python,1177802087 +192560,6104,sketch comedy,1183859090 +192560,6116,adapted from:operetta,1206640451 +192560,6116,pirates,1183336515 +192560,6116,playwright:Gilbert & Sullivan,1206640451 +192560,6122,stand-up comedy,1187383905 +192560,6125,sketch comedy,1183928313 +192560,6143,Inspector Clouseau (series),1177848377 +192560,6155,animal:dog,1317744651 +192560,6155,battle of the sexes,1317744629 +192560,6155,Bechdel Test:Pass,1317744304 +192560,6155,cameo:Marvin Hamlisch,1317744755 +192560,6155,cameo:Warner Wolf,1317744733 +192560,6155,deception to win wager,1317744622 +192560,6155,extreme product placement,1317744669 +192560,6155,painfully heteronormative,1317744275 +192560,6155,protagonist is a journalist,1317744304 +192560,6155,setting:Ad agency,1317744373 +192560,6155,setting:Fashion magazine,1317744326 +192560,6155,setting:NYC,1317744380 +192560,6155,sexual stereotypes,1317744312 +192560,6155,sport:basketball,1317744643 +192560,6157,alter ego,1179176782 +192560,6157,Bechdel Test:Fail,1216304200 +192560,6157,superhero,1179176782 +192560,6158,adapted from:book,1183419149 +192560,6158,author:Rudyard Kipling,1183419149 +192560,6181,adapted from:book,1183907982 +192560,6181,author:Stephen Crane,1183907982 +192560,6183,alter ego,1280093596 +192560,6183,Bechdel Test:Fail,1280046226 +192560,6183,homophobic,1280093603 +192560,6183,plot point:telephone,1280046226 +192560,6183,seduction,1280046226 +192560,6183,setting:NYC,1280046226 +192560,6183,sexuality,1280046187 +192560,6183,starring:Day and Hudson,1206640285 +192560,6211,BFI modern classic,1177178129 +192560,6211,disambiguation:10,1177795903 +192560,6211,disambiguation:ten,1177795903 +192560,6214,brutal,1241140616 +192560,6214,graphic violence,1241140620 +192560,6214,rape,1241140610 +192560,6218,sport:soccer football,1178980792 +192560,6230,adapted from:book,1276135984 +192560,6230,author:Mark Harris,1276135984 +192560,6230,sport:baseball,1276135961 +192560,6232,animal:lion,1183909603 +192560,6234,adapted from:play,1177808864 +192560,6239,adapted from:book,1238325130 +192560,6239,author:Jules Verne,1238325130 +192560,6242,plot point:television,1190561252 +192560,6242,plot point:videotape,1190561907 +192560,6242,remadeAs:The Ring (2002),1190561881 +192560,6242,remakeOf:Ringu (1998),1190561120 +192560,6251,Disney animated feature,1183934589 +192560,6251,series:Pooh,1183419126 +192560,6254,divorce,1401934633 +192560,6254,subgenre:screwball,1401934671 +192560,6271,BFI classic,1177175435 +192560,6296,mockumentary,1182123115 +192560,6301,rape,1241140366 +192560,6303,adapted from:book,1183912057 +192560,6303,plot point:bio-medical danger,1223690226 +192560,6305,adapted from:book,1177809063 +192560,6305,author:Ray Bradbury,1186924142 +192560,6305,dystopia,1186326292 +192560,6316,seeAlso:The Wizard of Oz (1939),1362778716 +192560,6316,WizardOfOz,1183913577 +192560,6318,screenwriter:Neil Simon,1351185222 +192560,6331,competition,1183853651 +192560,6345,adapted from B'way,1177186410 +192560,6345,ensemble cast,1241137267 +192560,6350,airships,1217780695 +192560,6350,Bechdel Test:Pass,1217780695 +192560,6350,Bechdel Test:Pass (barely),1217780695 +192560,6350,pirates,1217780695 +192560,6350,robots,1217780695 +192560,6365,dystopia,1183932563 +192560,6365,related:The Matrix (1999),1190555999 +192560,6365,setting:in computer,1293593130 +192560,6366,vampire,1186853704 +192560,6373,prequelTo:Evan Almighty,1177980045 +192560,6373,sequelTo:Bruce Almighty,1177980066 +192560,6377,Disney animated feature,1183933061 +192560,6377,missing/kidnapped child,1303305022 +192560,6377,orphaned cartoon character,1177811557 +192560,6377,Pixar animation,1183934738 +192560,6378,heist,1244033228 +192560,6380,courtroom,1178372725 +192560,6390,adapted from B'way,1325468151 +192560,6390,adultery,1325464107 +192560,6390,anti-Soviet propoganda,1325464154 +192560,6390,Bechdel Test:Fail,1325464077 +192560,6390,great dancing,1325464088 +192560,6390,music:Cole Porter,1325468178 +192560,6390,RemakeOf:Ninotchka,1325464214 +192560,6390,setting:Paris,1325464130 +192560,6390,sexist,1325464077 +192560,6401,RemakeOf:Rio Bravo(1958),1183424541 +192560,6405,adapted from:book,1183416926 +192560,6405,author:Robert Louis Stevenson,1183932868 +192560,6405,Disney studios,1183932868 +192560,6405,pirates,1183419560 +192560,6429,genre:western noir,1216171225 +192560,6430,musical band:David Bowie,1201406682 +192560,6480,Bechdel Test:Pass,1270521913 +192560,6480,racist,1270558379 +192560,6482,protagonist is an idiot,1281369525 +192560,6483,warning: some people tryed to kill themselves while watching,1268936955 +192560,6483,worst acting,1268936953 +192560,6483,Worst movie ever,1268936949 +192560,6483,would kill not to watch,1268936933 +192560,6485,Based on a TV show,1183424966 +192560,6500,gothic,1268936779 +192560,6500,vampire,1268936782 +192560,6502,post-apocalyptic,1183932388 +192560,6502,SequelTo:28 Days Later,1207484333 +192560,6503,Based on a TV show,1177803200 +192560,6503,burlesque (scene),1182798684 +192560,6503,cameo:Bruce Willis,1184558185 +192560,6503,filmed at:Playboy mansion (scene),1185048420 +192560,6503,genre spoof?,1241137188 +192560,6503,murder,1181916548 +192560,6503,nuns(scene),1185810092 +192560,6503,privacy,1178642727 +192560,6503,private detective,1181916548 +192560,6503,setting:LA,1182798684 +192560,6503,sport:motocross (scene),1241137195 +192560,6503,sports cars,1185049178 +192560,6503,sports competition:motocross (scene),1241137203 +192560,6503,witness protection programme,1178642727 +192560,6523,clash of cultures?,1186853255 +192560,6523,sport:baseball,1186853255 +192560,6531,lawyer as protagonist?,1186853225 +192560,6533,related:Bringing Up Baby (1938),1199587035 +192560,6533,subgenre:screwball,1199587035 +192560,6534,adapted from:comic,1182617601 +192560,6534,Based on a TV show?,1183425118 +192560,6536,pirates,1183855682 +192560,6537,android(s)/cyborg(s),1190556994 +192560,6537,murder,1178891921 +192560,6537,time travel,1178891921 +192560,6539,Disney studios,1183933175 +192560,6539,ghosts/afterlife,1183336158 +192560,6539,pirates,1183336158 +192560,6539,seafaring,1182617043 +192560,6541,adapted from:comic,1178878719 +192560,6541,author:Alan Moore,1181918698 +192560,6550,parody,1182638720 +192560,6550,related:007 (series),1206639806 +192560,6564,adapted from:game,1182125736 +192560,6565,sport:horse racing,1186853077 +192560,6568,queer,1241137059 +192560,6581,Sherlock Holmes,1268005906 +192560,6593,remadeAs:Freaky Friday(2003),1186929729 +192560,6593,remakeOf:Freaky Friday (1977),1186929729 +192560,6593,switching places,1186929745 +192560,6609,jesus,1367952510 +192560,6636,subgenre:road trip,1178942909 +192560,6636,US college students,1178891960 +192560,6650,BFI classic,1177175127 +192560,6658,disambiguation:10,1177795931 +192560,6658,disambiguation:ten,1177795931 +192560,6662,Inspector Clouseau (series),1177848301 +192560,6663,Inspector Clouseau (series),1177848288 +192560,6664,camp,1184588573 +192560,6664,hostage,1177803597 +192560,6664,murder,1177803587 +192560,6664,plot point:time is short,1223768949 +192560,6680,mother-daughter relationships,1182114964 +192560,6680,neither CC nor ENG subtitles,1182114964 +192560,6680,sexuality,1182114964 +192560,6680,topic:sex work,1182114964 +192560,6680,topic:union activism,1182114964 +192560,6683,bollywood,1367952474 +192560,6700,infidelity,1176601969 +192560,6709,violence,1242854705 +192560,6711,related:Bon Cop [comma] Bad Cop,1226100252 +192560,6725,muscial:rock and roll (1960s),1214929184 +192560,6725,The Beatles (NOT!),1241139170 +192560,6732,adapted from B'way,1184558791 +192560,6743,?adapted from:book,1183906208 +192560,6743,?author:Rudyard Kipling,1183906208 +192560,6747,adapted from:book,1186852527 +192560,6747,author:Mark Twain,1186852527 +192560,6749,adapted from:book,1183901756 +192560,6749,author:Mark Twain,1183901756 +192560,6749,protagonist is royal,1269051598 +192560,6749,royal pretends to be commoner,1269051598 +192560,6749,trading places,1188590917 +192560,6755,character based on real person:JFK,1220989221 +192560,6755,  character based on real person:The King,1220989221 +192560,6755, religion:Elvis,1220989221 +192560,6759,adapted from:book,1280643700 +192560,6759,insomnia,1280643700 +192560,6772,protagonist is a teacher,1315922487 +192560,6773,kidnapping,1178998967 +192560,6773,murder,1183854400 +192560,6774,plot point:television,1190562120 +192560,6779,adultery,1176605536 +192560,6780,adapted from:book,1177806350 +192560,6781,adapted from:book,1183426547 +192560,6781,author:Jurek Becke,1183426547 +192560,6781,remadeAs:Jacob The Liar(1999),1183426571 +192560,6781,The Shoah,1183426449 +192560,6783,major recutting,1177796025 +192560,6783,see also:The Rules of The Game/Gosford Park,1177796725 +192560,6785,Stockholm syndrome,1240246734 +192560,6787,adapted from:book,1186324982 +192560,6787,topic:Nixon presidency (USA),1186324966 +192560,6791,food/cooking,1183416119 +192560,6794,animal:dog,1183417982 +192560,6797,mafia,1177806512 +192560,6807,Monty Python,1186925587 +192560,6815,adultery,1234310384 +192560,6815,cameo-fest,1234310385 +192560,6815,cameo:David Bowie,1248784136 +192560,6815,cameo:Jim Henson,1234310384 +192560,6815,cameo:John Landis,1234310384 +192560,6815,cameo:Jonathan Lynn,1234310384 +192560,6815,Elvis iconography,1248784084 +192560,6815,gun in airport (scene),1234310384 +192560,6815,insomnia,1234310384 +192560,6815,murder,1180990650 +192560,6815,notable:taxi driver (scene),1248784128 +192560,6815,protagonist is engineer,1234310384 +192560,6815,protagonist is `party girl',1234310385 +192560,6815,satire?,1234310384 +192560,6815,scene:rendezvous in flower market,1234310385 +192560,6815,setting:LA,1234310384 +192560,6815,starring:John Landis,1234310385 +192560,6849,Xmas theme,1183911960 +192560,6852,adapted from:book,1181482692 +192560,6852,author:Truman Capote,1182127168 +192560,6852,death penalty,1182127130 +192560,6852,murder,1182127129 +192560,6864,The Beatles,1214929617 +192560,6870,brutality,1244320733 +192560,6870,child abuse,1244320747 +192560,6870,murder,1244320758 +192560,6870,paedophilia,1244320721 +192560,6872,adapted from:game,1182125529 +192560,6877,camp,1241137912 +192560,6877,queer,1241137884 +192560,6879,adapted from:book,1178371835 +192560,6879,author:John Grisham,1241139065 +192560,6879,courtroom drama,1178371835 +192560,6880,murder,1178880186 +192560,6880,serial killer,1178880177 +192560,6885,protagonist is a teacher,1315922670 +192560,6885,serial killer,1244320277 +192560,6885,`murder investigation as dating service' (Monica Nolan in Bitch no.36),1244320260 +192560,6888,parody,1188581386 +192560,6889,Disney animated feature,1183934254 +192560,6896,The Shoah,1186837822 +192560,6906,adapted from:book,1238328260 +192560,6906,author:S.E. Hinton,1238328260 +192560,6923,adapted from:book series,1244499802 +192560,6923,Basil Rathbone as Sherlock Holmes,1244499516 +192560,6924,adapted from:book series,1183906278 +192560,6924,Basil Rathbone as Sherlock Holmes,1244499827 +192560,6924,Sherlock Holmes,1183906278 +192560,6925,adapted from:book series,1183906398 +192560,6925,Basil Rathbone as Sherlock Holmes,1244499680 +192560,6925,Sherlock Holmes,1183906398 +192560,6926,setting:corporate America,1267292018 +192560,6926,shouty,1268520820 +192560,6926,technique:narration over freeze-frame,1267292018 +192560,6926,unseen narrator,1268520807 +192560,6934,doors as portals,1313855882 +192560,6934,dystopia,1183932552 +192560,6934,premonition/fate,1313855882 +192560,6934,related:The Matrix (1999),1190556008 +192560,6934,setting:in computer,1293593116 +192560,6935,topic:Hugo Chavez,1186324846 +192560,6935,topic:Venezula,1186324846 +192560,6936,Xmas theme,1186843637 +192560,6942,Xmas theme?,1186837706 +192560,6946,animation & live action interact?,1183418445 +192560,6947,seafaring,1182616815 +192560,6951,adapted from:book,1183419375 +192560,6951,author:Dr. Seuss,1183419395 +192560,6953,death of child,1244317030 +192560,6957,Xmas theme,1186837538 +192560,6970,information retrieval,1182302104 +192560,6970,librarians,1177808167 +192560,6970,setting:library,1216230607 +192560,6970,starring:Hepburn and Tracy,1241137595 +192560,6973,psychiatrist,1177172161 +192560,6973,psychiatrist as protagonist,1241137767 +192560,6979,computer cracker,1182800449 +192560,6979,computers,1182800522 +192560,6983,adapted from:book,1183906171 +192560,6984,adapted from:book,1178543106 +192560,6984,author:Charles Dickens,1181918076 +192560,6985,epic,1351990941 +192560,6987,BFI classic,1177174859 +192560,6989,adapted from:book,1190551735 +192560,6989,author:Martin Cruz Smith,1190551735 +192560,6989,espionage,1177810291 +192560,6990,adapted from:book,1238278147 +192560,6990,author:Michael Crichton,1238278146 +192560,6990,writer:Michael Crichton,1238278146 +192560,6991,adapted from:author,1177810388 +192560,6991,author: Edgar Rice Burroughs,1400165872 +192560,6993,adultery,1177810778 +192560,6999,compulsive liar,1186837324 +192560,6999,dwelling as character?,1279029071 +192560,6999,Steve Martin & Goldie Hawn,1186837312 +192560,6999,theme:lying,1189043227 +192560,7001,remake,1181483401 +192560,7012,related:Mr. Destiny (1990),1229099778 +192560,7013,BFI classic,1177176460 +192560,7013,evil churchman,1275183855 +192560,7016,sport:arm wrestling,1186837194 +192560,7016,sports competition,1186837195 +192560,7018,adultery,1178373987 +192560,7018,courtroom,1178373987 +192560,7023,food/cooking?,1183416290 +192560,7023,queer?,1241139789 +192560,7024,BFI modern classic,1177177828 +192560,7028,bank robbery,1181347533 +192560,7028,clown,1242864730 +192560,7028,costumes,1324158900 +192560,7028,hostage crisis,1181347533 +192560,7028,remakeOf:Hold-up (1985),1177819408 +192560,7033,adultery,1177067707 +192560,7033,bedroom farce,1177812158 +192560,7033,infidelity,1177067707 +192560,7045,adapted from:book,1245247895 +192560,7045,author:Roald Dahl,1245247895 +192560,7046,adapted from:book,1225800342 +192560,7046,author:John Updike,1225800342 +192560,7049,Astaire and Rogers,1241137791 +192560,7050,Astaire and Rogers,1183901220 +192560,7053,Astaire and Rogers,1183901949 +192560,7054,adapted from:book,1183906223 +192560,7054,author:Louisa May Alcott,1235980623 +192560,7055,Astaire and Rogers,1183901600 +192560,7060,adapted from B'way,1184558635 +192560,7060,writer:Andrew Lloyd Webber,1241138311 +192560,7061,adapted from:play,1268739817 +192560,7061,animal:dog,1268665923 +192560,7061,animal:horse,1268665923 +192560,7061,Bechdel Test:Fail,1268666445 +192560,7061,classic Bette Davis,1268739817 +192560,7061,death/fatality,1268665948 +192560,7061,horse riding,1268665923 +192560,7061,lots of smoking,1268755148 +192560,7061,medical,1268665922 +192560,7061,melodrama,1268665923 +192560,7061,protagonist is a socialite,1268739817 +192560,7061,terminal illness,1268665832 +192560,7061,theme:elevation through self-sacrifice,1269052789 +192560,7064,subgenre:fairy tale,1183935109 +192560,7069,adapted from:play,1226864703 +192560,7069,playwright:Shakespeare,1226864685 +192560,7070,current,1255899766 +192560,7072,BFI classic,1177176488 +192560,7073,Inspector Clouseau (series),1177847850 +192560,7079,adapted from:book,1182115195 +192560,7079,author:Victor Hugo,1248174629 +192560,7079,Bechdel Test:Fail,1270340265 +192560,7079,black and white,1188750735 +192560,7079,deformity/disability,1188751035 +192560,7079,murder,1188750429 +192560,7079,torture,1188750429 +192560,7079,woman carried onto tall building,1270340273 +192560,7084,imaginary friend,1245444382 +192560,7084,related:Casablanca,1186836899 +192560,7086,adapted from:book,1186836863 +192560,7086,adapted from:play,1186836863 +192560,7086,author:George Bernard Shaw,1183901573 +192560,7087,adapted from:book,1186836839 +192560,7087,Anglo-Indian relations,1300029804 +192560,7087,author:E. M. Forster,1186836839 +192560,7087,Bechdel Test:Pass,1300029803 +192560,7087,racism,1300029804 +192560,7087,sexuality,1300029804 +192560,7087,trial,1300029804 +192560,7091,Marx Brothers,1185048571 +192560,7092,adapted from:book,1177805076 +192560,7093,remake of:The Front Page (1931),1383365899 +192560,7099,narrated,1182616208 +192560,7101,protagonist is medical doctor,1280643518 +192560,7101,protagonist is surgeon,1280643518 +192560,7101,town vs. country,1280643502 +192560,7102,Based on a TV show,1177818444 +192560,7102,parody,1178842773 +192560,7102,subgenre:cop buddies,1178842773 +192560,7121,courtroom setting,1178372410 +192560,7121,starring:Hepburn and Tracy,1241136548 +192560,7123,adapted from:book,1186836712 +192560,7123,author:william s. burroughs,1186836712 +192560,7132,Marx Brothers,1183336601 +192560,7144,Judaism,1177809539 +192560,7153,adapted from:book,1177799019 +192560,7153,author:J. R. R. Tolkein,1182617003 +192560,7163,adapted from:book,1190550183 +192560,7163,author:Philip K. Dick,1190550183 +192560,7164,adapted from:book,1178996671 +192560,7164,Peter Pan,1178996671 +192560,7178,adapted from:book,1177818399 +192560,7179,adapted from:book,1186836426 +192560,7190,adapted from:book,1183912524 +192560,7190,author:Charlotte Bronte,1183912524 +192560,7208,adapted from:book,1179172744 +192560,7208,alter ego,1179172744 +192560,7208,author:Robert Louis Stevenson,1238708959 +192560,7208,related:Dr. Jekyll and Mr. Hyde,1238708842 +192560,7208,tale:Jekyll&Hyde,1344027979 +192560,7215,adapted from:book,1208033987 +192560,7215,author:Ernest Hemingway,1208033987 +192560,7215,Bogart & Bacall,1241139596 +192560,7215,related:Only Angels Have Wings,1177170131 +192560,7215,related:Rio Bravo,1177170116 +192560,7217,Bogart & Bacall,1241137537 +192560,7223,noir thriller,1367952585 +192560,7228,amateur detective,1184587217 +192560,7228,should dislike,1353452575 +192560,7230,adapted from:book,1322941937 +192560,7230,assassin,1322942806 +192560,7230,author:Donald Hamilton,1322942631 +192560,7230,begins with big eye,1323099783 +192560,7230,Compare:Austin Powers,1322943006 +192560,7230,Compare:The Silencers,1322943018 +192560,7230,espionage,1322941937 +192560,7230,murder,1322942786 +192560,7230,prequel to:Murderers Row,1322941937 +192560,7230,related:007 (series),1322943101 +192560,7230,series:Matt Helm,1322941937 +192560,7230,setting:Cold War,1322972349 +192560,7230,sexist drivel,1322941935 +192560,7236,animal:dog,1183912230 +192560,7236,dystopia,1177802587 +192560,7236,post-apocalyptic,1183932463 +192560,7238,murder,1245000783 +192560,7247,Bechdel Test:Fail,1276135858 +192560,7254,?alternate endings,1190556645 +192560,7293,amnesia,1184852198 +192560,7303,adapted from:book,1183426763 +192560,7303,based on a true story,1183426778 +192560,7303,character based on real person:Anne Frank,1340939459 +192560,7303,The Shoah,1183426763 +192560,7307,rape,1241140596 +192560,7311,adapted from:book,1177810271 +192560,7311,protagonist is a teacher,1315922404 +192560,7325,adultery,1181350871 +192560,7325,Based on a TV show,1181347286 +192560,7325,dance off (scene),1181348255 +192560,7325,murder,1181347196 +192560,7325,Stiller&Wilson,1181394549 +192560,7325,subgenre:cop buddies,1181347880 +192560,7334,topic:McCarthyism,1188681291 +192560,7335,noir thriller,1367952585 +192560,7338,adapted from:play,1183907386 +192560,7338,playwright:Shakespeare,1226865006 +192560,7360,zombies,1182617220 +192560,7361,amnesia,1177808965 +192560,7369,animation remade as live action,1241139132 +192560,7369,Based on a TV show,1177818736 +192560,7373,adapted from:comic,1215882288 +192560,7373,secret gov't agency works with and hides aliens,1215882288 +192560,7374,Disney animated feature,1183934380 +192560,7375,protagonist is royal,1269051453 +192560,7375,royal pretends to be commoner,1269051453 +192560,7386,Biblical,1178373742 +192560,7386,Jesus-freak crap,1241139507 +192560,7387,zombies,1182616772 +192560,7416,retirees,1287285383 +192560,7439,adapted from:comic,1186848036 +192560,7446,adapted from:book,1177807318 +192560,7446,Based on a TV show,1177807318 +192560,7451,high school,1183854625 +192560,7458,subgenre:sword and sandal,1186847198 +192560,7478,Bechdel Test:Fail,1216303986 +192560,7478,style:monologue,1177898490 +192560,7481,adapted from:book,1185050033 +192560,7560,adapted from:book,1297423722 +192560,7560,author:Eugene Burdick,1297423722 +192560,7560,author:Harvey Wheeler,1297423722 +192560,7560,Bechdel Test:Fail,1297396770 +192560,7560,compare:Fail-Safe,1297396770 +192560,7560,US president,1297396770 +192560,7564,ghosts/afterlife,1267290752 +192560,7566,7n Up (series),1206640102 +192560,7566,many interviews,1218636379 +192560,7569,007 (series),1241139899 +192560,7569,assassin,1226945010 +192560,7569,killer as protagonist,1226945010 +192560,7569,murder,1177185129 +192560,7570,007 (series),1241138797 +192560,7570,assassin,1226945139 +192560,7570,killer as protagonist,1226945139 +192560,7570,murder,1177184945 +192560,7570,rape,1241138802 +192560,7570,setting:circus performance,1226945154 +192560,7570,setting:train,1215564363 +192560,7573,007 (series),1241138753 +192560,7573,assassin,1226945113 +192560,7573,killer as protagonist,1226945113 +192560,7573,murder,1177184673 +192560,7573,radio-controlled sharks,1182640612 +192560,7573,remadeAs:Never Say Never (1983),1182638545 +192560,7573,remakeOf:Thunderball (1965),1245248061 +192560,7579,adapted from:book,1183906253 +192560,7579,author:Jane Austen,1183906253 +192560,7581,adapted from:book,1177809563 +192560,7581,author:Ayn Rand,1183906128 +192560,7584,starring:Hepburn and Tracy,1241139862 +192560,7585,adultery,1270113465 +192560,7585,awakening sexuality & romance,1270113464 +192560,7585,Bechdel Test:Pass,1270116439 +192560,7585,protagonist is photographer,1270113683 +192560,7585,setting:Italy,1270113465 +192560,7585,setting:Venice,1270113465 +192560,7585,sexuality,1270113465 +192560,7585,stereotypes,1270113465 +192560,7614,Rogers and Hammerstein,1183614064 +192560,7616,murder,1225668420 +192560,7616,plot:making adult/pornographic films,1225668774 +192560,7616,plot:romance during porno shoot,1225668412 +192560,7616,watch the credits,1225668412 +192560,7618,biographical,1177819111 +192560,7618,character based on real person:Charlie Chaplin,1226864274 +192560,7618,topic:Charlie Chaplin,1187399701 +192560,7619,adapted from:play,1349666558 +192560,7619,author:Helen Keller,1349666617 +192560,7619,character based on real person:Helen Keller,1349666640 +192560,7619,playwright:William Gibson,1349666570 +192560,7620,monologue,1179000112 +192560,7647,actors and acting,1231082856 +192560,7647,adapted from:play,1231082872 +192560,7647,setting:theatre,1231082856 +192560,7647,topic:theatre,1231082856 +192560,7649,Based on a TV show,1177805347 +192560,7669,adapted from:book,1247070558 +192560,7669,author:Jane Austen,1247070558 +192560,7697,protagonist is royal,1269051636 +192560,7702,nuns,1177803419 +192560,7705,starring:Hepburn and Tracy,1241138857 +192560,7706,Marx Brothers,1185048601 +192560,7708,devil's bargain,1183508825 +192560,7708,interrelated sketches,1183508825 +192560,7708,men disguised as women,1183509310 +192560,7708,nuns(scene),1183509239 +192560,7713,BFI classic,1177174529 +192560,7714,adapted from B'way,1184558688 +192560,7728,see also:The Postman Always Rings Twice,1183905933 +192560,7762,adapted from:book,1241136452 +192560,7762,author:John le Carre,1241136452 +192560,7762,espionage,1241136393 +192560,7762,murder,1326800258 +192560,7770,pirates,1183419564 +192560,7787,based on a true story?,1186325212 +192560,7787,biographical?,1186325212 +192560,7810,Based on a TV show,1177805338 +192560,7811,Based on a TV show,1177805357 +192560,7812,Based on a TV show,1177805372 +192560,7831,Nick and Nora Charles (series),1206640832 +192560,7832,Nick and Nora Charles (series),1206640845 +192560,7833,Nick and Nora Charles (series),1206640839 +192560,7834,Nick and Nora Charles (series),1206640824 +192560,7835,Nick and Nora Charles (series),1206640851 +192560,7836,music?,1191447106 +192560,7840,adapted from:poem,1296487512 +192560,7840,Anglo-Indian relations,1296487512 +192560,7840,author:Rudyard Kipling,1296487512 +192560,7840,inaccurate adaptation,1296487512 +192560,7840,swashbuckling,1296487512 +192560,7841,adapted from:book,1183929845 +192560,7841,author:Frank Herbert,1183929845 +192560,7842,adapted from:book series,1211546554 +192560,7842,author:Frank Herbert,1211546554 +192560,7891,adapted from:book,1197685083 +192560,7891,another adaptation of _I Am Legend_,1197685082 +192560,7891,author:Richard Matheson,1197685083 +192560,7891,vampire,1197685209 +192560,7925,related:Star Wars,1186433863 +192560,7933,Marx Brothers,1185048618 +192560,7934,fake documentary,1181483180 +192560,7934,psychiatry,1177171428 +192560,7934,related:technique:Forrest Gump,1177172625 +192560,7943,noir thriller,1367952585 +192560,7944,author:Tennessee Williams,1340937446 +192560,7980,Best War Films,1242856477 +192560,8008,adapted from B'way,1177806368 +192560,8015,adapted from:book,1183425157 +192560,8062,murder,1178880168 +192560,8062,serial killer,1241137488 +192560,8092,adapted from:book,1226944410 +192560,8092,author:Brian Aldiss,1226944410 +192560,8121,protagonist is medical doctor,1280643538 +192560,8121,town vs. country,1280643475 +192560,8125,BFI classic,1177176523 +192560,8140,military,1177807749 +192560,8147,adapted from:book,1186353681 +192560,8167,pirates,1183420029 +192560,8207,adapted from:book,1188682000 +192560,8207,author:Frederick Forsyth,1188682000 +192560,8208,adapted from:book,1186320796 +192560,8228,adapted from:book,1177799083 +192560,8228,author:Dashiell Hammett,1181917589 +192560,8228,Bechdel Test:Fail,1343249798 +192560,8228,private detective,1181916415 +192560,8268,assassin,1178982359 +192560,8268,assassin-in-training (scene),1186187525 +192560,8268,murder,1178982359 +192560,8268,RemakeOf:La Femme Nikita(1990),1178982359 +192560,8302,adapted from:B'way,1383363740 +192560,8302,adapted from:play,1383363740 +192560,8302,protagonist is journalist,1383363758 +192560,8302,protagonist is newspaper editor,1383363765 +192560,8332,mass murder/terrorism,1183912874 +192560,8332,murder,1183912856 +192560,8337,courtroom,1178373665 +192560,8337,military,1177806653 +192560,8337,mutiny,1178373665 +192560,8338,nuns,1285781789 +192560,8338,setting:Himalayas,1285781828 +192560,8340,prison,1182302601 +192560,8341,adapted from:book,1181918211 +192560,8341,author:Charles Dickens,1181918211 +192560,8341,poverty,1181918211 +192560,8360,Dreamworks animation,1183933245 +192560,8368,adapted from:book,1237170954 +192560,8368,author:J. K. Rowling,1237170954 +192560,8372,adapted from:comic,1183419085 +192560,8379,actors and acting,1231082769 +192560,8379,setting:theatre,1231082770 +192560,8379,topic:theatre,1231082769 +192560,8393,autobiographical,1177811673 +192560,8393,The Beatles,1214929593 +192560,8401,adapted from:author,1177804536 +192560,8401,author:Arthur Conan Doyle,1183901127 +192560,8401,Basil Rathbone,1244499391 +192560,8401,private detective,1183901148 +192560,8404,adapted from:book,1183901104 +192560,8404,author:Arthur Conan Doyle,1183901104 +192560,8404,Basil Rathbone as Sherlock Holmes,1244497257 +192560,8404,private detective,1183901138 +192560,8404,Sherlock Holmes,1183901138 +192560,8451,protagonist is a teacher,1315922449 +192560,8477,Bechdel Test:Fail,1216302974 +192560,8477,dystopia,1354406859 +192560,8477,memory,1354406785 +192560,8477,post-apocalyptic,1354406859 +192560,8477,time travel,1354406770 +192560,8482,adapted from:book,1183904393 +192560,8492,adapted from:play,1182124271 +192560,8492,author:Charles Dickens,1182124271 +192560,8492,Xmas theme,1182124271 +192560,8516,American patriotism/prejudice,1241138636 +192560,8516,angelic intervention,1193140804 +192560,8516,ghosts/afterlife,1193140804 +192560,8516,setting:WWII,1193140804 +192560,8521,adapted from:book,1177818356 +192560,8521,alter ego,1179172753 +192560,8521,author:Robert Louis Stevenson,1238708864 +192560,8521,killer-as-protagonist,1214927563 +192560,8521,related:Dr. Jekyll and Mr. Hyde,1238708824 +192560,8521,tale:Jekyll&Hyde,1344027913 +192560,8526,adapted from:book,1177805227 +192560,8526,author:Jules Verne,1317743928 +192560,8528,Bechdel Test:Fail,1216304207 +192560,8528,sport:dodgeball,1186926300 +192560,8532,adapted from:book,1183427952 +192560,8532,author:John Irving,1183427952 +192560,8542,Marx Brothers,1185048638 +192560,8574,claymation,1183416858 +192560,8574,Xmas theme(?),1183416871 +192560,8580,campy,1267292299 +192560,8582,documentary critique,1182513976 +192560,8582,news media,1182513976 +192560,8594,adultery,1247661660 +192560,8596,Inspector Clouseau (series),1241139014 +192560,8610,alter ego,1179172815 +192560,8610,queer?,1177804708 +192560,8618,genre:western noir,1217780731 +192560,8622,documentary critique,1182514050 +192560,8622,US President,1285586467 +192560,8623,related:Cyrano,1177185862 +192560,8636,adapted from:comic,1186844539 +192560,8636,alter ego,1179176751 +192560,8644,android(s)/cyborg(s),1190557005 +192560,8644,artificial intelligence,1182616427 +192560,8662,epic,1351990884 +192560,8665,agent/assassin with false memories/amnesia,1358039499 +192560,8665,author:Robert Ludlum,1285586860 +192560,8665,living a fictional life,1352827863 +192560,8675,setting:wartime,1322942376 +192560,8690,adapted from:book,1190549022 +192560,8690,author:Kurt Vonnegut,1190548940 +192560,8695,subgenre:screwball,1181417337 +192560,8701,?alter ego,1190556519 +192560,8701,related:Dr. Jekyll and Mr. Hyde,1238708873 +192560,8711,screwball comedy,1367952749 +192560,8714,Cole Porter,1183906370 +192560,8714,fictional biography,1349667613 +192560,8718,mental illness,1270307934 +192560,8725,related:The Graduate,1186432600 +192560,8734,Marx Brothers,1185048764 +192560,8751,BFI classic,1177175545 +192560,8751,related:Bonnie and Clyde,1177175555 +192560,8765,adapted from:book,1193526109 +192560,8765,author:Graham Greene,1193526109 +192560,8768,adapted from:book,1217859883 +192560,8768,animal:dog,1217859883 +192560,8768,Bechdel Test:Fail,1217859883 +192560,8768,cons and scams,1217859883 +192560,8768,heist,1217859883 +192560,8768,murder,1217859883 +192560,8768,setting:LA,1217859883 +192560,8768,subgenre:bowling noir,1444325781 +192560,8771,adapted from:book series,1244499717 +192560,8771,Basil Rathbone as Sherlock Holmes,1244499623 +192560,8772,adapted from:book,1326799594 +192560,8772,author:John le Carre,1326799594 +192560,8772,espionage,1326799615 +192560,8773,adapted from:book series,1183906291 +192560,8773,Basil Rathbone as Sherlock Holmes,1244499643 +192560,8773,Sherlock Holmes,1183906292 +192560,8774,adapted from:book series,1244499702 +192560,8774,bad lighting,1399397902 +192560,8774,Basil Rathbone as Sherlock Holmes,1244499637 +192560,8774,Bechdel Test:Fail,1399424445 +192560,8774,murder,1399424445 +192560,8774,pastiche,1399397902 +192560,8774,suicide,1399424445 +192560,8778,adapted from:book series,1244499770 +192560,8778,Basil Rathbone as Sherlock Holmes,1244499549 +192560,8781,assassin,1178998324 +192560,8781,killer-as-protagonist,1214926536 +192560,8781,murder,1178998324 +192560,8781,remakeOf:The Manchurian Candidate(1962),1178998324 +192560,8782,Based on a TV show?,1186432476 +192560,8808,protagonist is royal,1269051709 +192560,8827,stand up comedy?,1186325153 +192560,8829,animal:dog,1183419477 +192560,8833,adapted from:book,1184773466 +192560,8833,author:Thackeray,1184773466 +192560,8833,writer:Julian Fellowes,1184773466 +192560,8844,protagonist is photographer,1270307977 +192560,8861,adapted from:game,1182125673 +192560,8861,plot point:bio-medical danger,1223690031 +192560,8864,sport:baseball,1183856597 +192560,8874,dark humor,1243124427 +192560,8874,murder,1178999911 +192560,8874,parody,1177798385 +192560,8874,zombies,1183426269 +192560,8879,adapted from:book,1178373209 +192560,8879,author:Agatha Christie,1181918653 +192560,8879,murder,1178373209 +192560,8879,setting:train,1186325913 +192560,8880,deformity/disability,1188751004 +192560,8880,disambiguation:The Mask,1185658733 +192560,8884,civilian caught up in intrigue,1215360893 +192560,8884,espionage?,1270338531 +192560,8884,music is key to story (not Musical genre),1215360893 +192560,8884,protagonist is musician,1270338631 +192560,8884,protagonist is stage performer,1215360927 +192560,8884,protagonist is violinist,1270338631 +192560,8887,psychiatrist as protagonist,1241139820 +192560,8898,adapted from:book,1183907998 +192560,8914,cerebral,1371654443 +192560,8914,complicated plot,1371654446 +192560,8914,inventor,1371654438 +192560,8914,time travel,1371654450 +192560,8917,technique:puppetry,1183855751 +192560,8923,adapted from:book,1245444965 +192560,8923,author:Thomas Hardy,1245444965 +192560,8924,The Beatles,1241138205 +192560,8937,adapted from:book,1178983207 +192560,8937,sport:American football,1178983516 +192560,8947,Remake as:The Grudge,1279029947 +192560,8947,Remake of:Ju-On,1279029855 +192560,8949,adapted from:book,1189037451 +192560,8949,character suffering depression,1189035444 +192560,8949,dark comedy,1189023523 +192560,8949,notable:golf course (scene),1189043202 +192560,8949,subgenre:buddies,1189035416 +192560,8949,teacher as protagonist (incidental),1189037947 +192560,8949,theme:lying,1189043202 +192560,8949,wedding,1189037451 +192560,8949,wine tasting,1189023523 +192560,8949,writer as protagonist,1189040854 +192560,8951,abortion,1177812377 +192560,8951,improvised/actor-developed script,1181348553 +192560,8951,social commentary,1177812378 +192560,8951,working class,1177812368 +192560,8957,serial killer,1241139108 +192560,8958,biographical?,1227236988 +192560,8958,character based on real person:Ray Charles,1227236974 +192560,8958,music:rhythm & blues,1186842511 +192560,8961,alter ego,1179176903 +192560,8961,death/fatality,1231733318 +192560,8961,Disney animated feature,1183933148 +192560,8961,notable:fashion designer (scene),1241138228 +192560,8961,Pixar animation,1183934747 +192560,8961,related:The Incredibles (2004),1344125887 +192560,8961,superhero,1179176903 +192560,8965,Xmas theme(?),1182124773 +192560,8966,adultery,1177819047 +192560,8966,biographical,1177819047 +192560,8970,Peter Pan,1183418941 +192560,8972,conspiracy theory,1367952906 +192560,8974,Based on a TV show,1183418556 +192560,8977,biographical view,1186351965 +192560,8977,sword and sandal(?),1188593089 +192560,8978,Xmas theme(?),1183419065 +192560,8979,biographical view,1186351951 +192560,8984,cameo:Bruce Willis,1184717724 +192560,8989,adapted from B'way,1181512772 +192560,8989,adapted from:book,1181512722 +192560,8989,devil's bargain,1181512685 +192560,8989,sport:baseball,1181514715 +192560,9018,critique of journalism,1182288744 +192560,9018,documentary critique,1182513909 +192560,9018,news media,1182288733 +192560,25736,adapted from:book,1227640945 +192560,25736,alter ego,1227640945 +192560,25736,author:Robert Louis Stevenson,1227640945 +192560,25736,related:Dr. Jekyll and Mr. Hyde,1238708811 +192560,25736,tale:Jekyll&Hyde,1344027948 +192560,25746,adapted from:book,1248174769 +192560,25746,author:Victor Hugo,1248174717 +192560,25746,Bechdel Test:Fail,1248174769 +192560,25746,deformity/disability,1248174799 +192560,25746,murder,1248174783 +192560,25746,torture,1248174783 +192560,25746,woman carried onto tall building,1248174783 +192560,25753,major recutting,1177796055 +192560,25763,German Expressionism,1186320746 +192560,25767,adapted from:book,1280411702 +192560,25767,author:Victor Hugo,1280411702 +192560,25777,Marx Brothers,1185048715 +192560,25788,subgenre:bowling noir,1444325940 +192560,25795,adapted from:play,1298302928 +192560,25795,adultery,1298302768 +192560,25795,deceit,1298302928 +192560,25795,family in turmoil,1298302875 +192560,25795,protagonist is actor,1298302768 +192560,25795,protagonist is physician,1298302769 +192560,25795,setting:The Great Depression,1298302768 +192560,25795,theme:lying,1298302876 +192560,25798,adapted from:book,1281098914 +192560,25798,author:H. G. Wells,1281098914 +192560,25826,protagonist is journalist,1383366001 +192560,25826,subgenre:screwball,1383366001 +192560,25828,?adapted from:book,1183901938 +192560,25834,adapted from:book,1268412265 +192560,25834,author:Rudyard Kipling,1268412265 +192560,25850,Cary Grant&Katherine Hepburn,1241136313 +192560,25856,adapted from:book,1183902002 +192560,25870,angelic intervention,1184990181 +192560,25870,fate vs. free will,1215564179 +192560,25870,ghosts/afterlife,1183336008 +192560,25870,remakeOf:Here Comes Mr. Jordan,1177819452 +192560,25886,adapted from:book,1315922816 +192560,25886,amnesia,1315922775 +192560,25886,author:James Hilton,1315922816 +192560,25886,death/fatality,1315922939 +192560,25886,memory,1363057673 +192560,25886,psychiatrist as character,1315922916 +192560,25891,adapted from:play,1177810922 +192560,25891,adultery,1340938263 +192560,25891,autobiographical view,1177810922 +192560,25891,avuncular grandfather-figure,1340938260 +192560,25891,Bechdel Test:Fail,1340938267 +192560,25891,ghosts/afterlife,1183335974 +192560,25891,infidelity,1176601945 +192560,25891,the comfort food of movies,1340938257 +192560,25901,adapted from:play,1238625830 +192560,25901,playwright:Shakespeare,1238625830 +192560,25923,adapted from:book,1177810340 +192560,25923,author:Charles Dickens,1181918347 +192560,25923,bildungsroman,1270338942 +192560,25924,adapted from:book,1270335539 +192560,25924,adultery,1270338482 +192560,25924,author:Fannie Hurst,1270338478 +192560,25924,Bechdel Test:Fail,1270338494 +192560,25924,kuenstlerroman,1270339860 +192560,25924,melodrama,1270335559 +192560,25924,MUSICIAN'S LIFE,1270335539 +192560,25924,protagonist is musician,1270335539 +192560,25924,protagonist is stage performer,1270338664 +192560,25924,protagonist is violinist,1270335539 +192560,25927,murder,1189352337 +192560,25927,nazis,1189129440 +192560,25927,neither CC nor ENG subtitles,1189129440 +192560,25952,adapted from:book,1268503401 +192560,25952,adultery,1268503426 +192560,25952,Bechdel Test:Pass (technically but not really),1268503401 +192560,25952,betrayal,1268503426 +192560,25952,class conscious,1268503401 +192560,25952,gag:tossing lighter out of car,1268503401 +192560,25952,individual stories intertwined,1268504440 +192560,25952,social satire,1268503401 +192560,25952,unseen narrator,1268503401 +192560,25959,adapted from:B'way,1249048218 +192560,25959,Bechdel Test:Fail,1275058450 +192560,25959,character based on real person:Annie Oakley,1275058421 +192560,25959,character based on real person:Buffalo Bill,1275058421 +192560,25959,sexist,1275222141 +192560,25961,genre:western noir,1216171191 +192560,25963,BFI classic,1177175335 +192560,25977,related:Dr. Jekyll and Mr. Hyde,1238708818 +192560,25996,kuenstlerroman,1270339773 +192560,25996,major recutting,1177795808 +192560,26051,anti-Catholic,1244910348 +192560,26051,Bechdel Test:Pass,1244910392 +192560,26051,feel-bad movie,1244910432 +192560,26051,nuns,1244910392 +192560,26051,religion:Xian,1244910348 +192560,26084,adapted from B'way,1177186572 +192560,26133,not a movie,1236961408 +192560,26133,Xmas theme,1224536914 +192560,26152,adapted from:comic,1179176604 +192560,26152,alter ego,1179176604 +192560,26152,Batman (series),1218636641 +192560,26152,villain:Penguin,1222038272 +192560,26153,sport:car racing (Grand Prix),1247472244 +192560,26172,remadeAs:Payback(1999),1223769237 +192560,26172,remakeOf:Point Blank(1967),1223769237 +192560,26251,Classic,1222038000 +192560,26317,adapted from:book,1245528925 +192560,26317,author:Emmanuelle Argan,1245528925 +192560,26317,softcore porn,1245528925 +192560,26375,setting:train?,1186351690 +192560,26386,Hitchcock parody,1183911164 +192560,26386,parody,1183911174 +192560,26388,adapted from:book,1186351703 +192560,26398,conspiracy,1183912973 +192560,26398,dystopia,1177806745 +192560,26398,murder,1177806745 +192560,26403,adapted from:book,1239770913 +192560,26403,author:J. R. R. Tolkein,1239770912 +192560,26444,adapted from:radio play,1296051851 +192560,26444,author:Douglas Adams,1296051851 +192560,26444,made for TV,1296051869 +192560,26453,adapted from:book,1326799405 +192560,26453,author:John le Carre,1326799392 +192560,26453,espionage,1326799366 +192560,26453,murder,1326800241 +192560,26470,protagonist is a teacher,1358880168 +192560,26471,homophobic,1270307822 +192560,26472,culture clash,1183929567 +192560,26472,social commentary,1183928386 +192560,26476,Xmas theme(?),1244813907 +192560,26479,adapted from:operetta,1206640466 +192560,26479,pirates,1183336300 +192560,26479,playwright:Gilbert & Sullivan,1206640431 +192560,26487,setting:Playboy mansion (scene),1182798555 +192560,26492,adapted from:TV series,1278121582 +192560,26492,double feature,1257367188 +192560,26492,multiple short stories in one,1266751319 +192560,26492,vignettes,1270266982 +192560,26495,cameo:David Bowie,1184717083 +192560,26495,pirates,1184717072 +192560,26502,adapted from:play,1231540556 +192560,26502,Bechdel Test:Fail,1270270675 +192560,26502,playwright:Charles Dickens,1231540556 +192560,26502,Xmas theme,1231540574 +192560,26509,current,1255899641 +192560,26524,SeeAlso:Milk(2008),1228222105 +192560,26528,adapted from:book,1265240445 +192560,26538,Bechdel Test:Fail,1267397297 +192560,26538,competition,1267397030 +192560,26538,protagonist is a research scientist,1267389787 +192560,26538,"quote:""The Big Picture""",1267397030 +192560,26550,biographical view,1215361240 +192560,26550,topic:author,1215361240 +192560,26566,highschool,1229142568 +192560,26566,related:Mr. Destiny (1990),1229142657 +192560,26566,sport:American football,1229142569 +192560,26606,ghosts/afterlife,1247846445 +192560,26614,adapted from:book,1279413300 +192560,26614,agent/assassin with false memories/amnesia,1358039485 +192560,26614,author:Robert Ludlum,1279413300 +192560,26614,living a fictional life,1352827816 +192560,26614,not a movie,1245447252 +192560,26674,murder,1346251989 +192560,26674,screenwriter:Lynda La Plante,1346252041 +192560,26674,serial killer,1346251989 +192560,26674,subgenre:police detective,1346251989 +192560,26674,subgenre:police procedural,1346252041 +192560,26674,theme:sexism,1346339768 +192560,26693,adapted from:book,1229630043 +192560,26693,author:Stephen King,1229630050 +192560,26700,bank robbery,1181734583 +192560,26700,British gangsters,1181734583 +192560,26700,Christianity,1181734441 +192560,26700,Compare:Some Like It Hot,1297547279 +192560,26700,disguised as a nun,1303305765 +192560,26700,men disguised as women,1297547268 +192560,26700,murder,1181735683 +192560,26700,nuns,1181734441 +192560,26700,organized crime,1297547397 +192560,26700,religion:Xian,1182127642 +192560,26700,subgenre:buddies,1189035268 +192560,26712,7n Up (series),1232404464 +192560,26729,subgenre:MakingOf (movie),1226866412 +192560,26749,adapted from:play,1337488383 +192560,26749,playwright:Shakespeare,1337488383 +192560,26761,murder,1346339622 +192560,26761,subgenre:police detective,1346339622 +192560,26761,subgenre:police procedural,1346339622 +192560,26761,theme:racism,1346339622 +192560,26838,adultery,1177797576 +192560,26838,working class,1177812198 +192560,26870,sport:baseball,1186350261 +192560,26948,adapted from:book,1368575819 +192560,26948,author:Daniel Defoe,1368575819 +192560,26958,adapted from:book,1368575862 +192560,26958,author:Jane Austen,1368575862 +192560,26973,adapted from:book,1340222470 +192560,26973,subgenre:fairy tale,1340222462 +192560,26973,tale:Snow White (A-T #709),1340222462 +192560,27003,adapted from:book,1273199554 +192560,27074,adapted from:book,1344027234 +192560,27074,author:Aldous Huxley,1344027234 +192560,27075,Bechdel Test:Pass (barely),1337865810 +192560,27147,disambiguation:The 4th/Thirteenth Floor (1999),1234140380 +192560,27180,epic,1351990893 +192560,27350,adapted from:book,1360672043 +192560,27350,author:Marion Zimmer Bradley,1360672043 +192560,27366,notable:cinematography,1271061682 +192560,27391,adapted from:play,1248782725 +192560,27391,based on a true story,1248782725 +192560,27454,adapted from:book,1280926150 +192560,27454,author:John Steinbeck,1280926149 +192560,27482,murder,1232048563 +192560,27660,No theatrical release,1224537550 +192560,27660,related:The Matrix (1999),1190555801 +192560,27706,adapted from:book series,1178879296 +192560,27772,Remade as:The Grudge,1279029930 +192560,27772,Remake of:Ju-On,1279029921 +192560,27801,martial arts,1182616787 +192560,27801,thai boxing,1182616784 +192560,27822,stranded,1367952626 +192560,27830,sport:golf,1186351738 +192560,27839,sequelTo:The Ring (2002),1190561932 +192560,27846,documentary critique,1182513925 +192560,27847,chess,1249048248 +192560,27850,disambiguation: Yes Man/Men,1238626162 +192560,27875,biographical,1186322192 +192560,27875,topic:death penalty,1186322192 +192560,27904,adapted from:book,1257367942 +192560,27904,author:Philip K. Dick,1257367957 +192560,27912,journalism,1182288824 +192560,30707,athletic apex?,1182800365 +192560,30707,sport:boxing,1241138665 +192560,30707,women in sport,1189867175 +192560,30793,adapted from:book,1183854806 +192560,30793,author:Roald Dahl,1184587422 +192560,30793,father-son relationship,1296052233 +192560,30793,remadeAs:Charlie and the Chocolate...(2005),1186839596 +192560,30793,remakeOf:Willy Wonka...(1971),1186839596 +192560,30810,nonsensical,1242864251 +192560,30812,character based on real person:Howard Hughes,1227569240 +192560,30816,adapted from B'way,1190566941 +192560,30816,playwright:Andrew Lloyd Webber,1241138879 +192560,30820,child abuse,1244320361 +192560,30820,paedophilia,1244320388 +192560,30850,adapted from:play,1178923445 +192560,30850,cross-dressing women,1187304608 +192560,30850,playwright:Shakespeare,1226864906 +192560,30883,animation remade as live action,1183857554 +192560,30883,Based on a TV show,1183857554 +192560,31156,invisibility,1223768626 +192560,31193,adapted from:book,1183416835 +192560,31193,Disney animated feature,1183932754 +192560,31193,series:Pooh,1183910872 +192560,31221,adapted from:comic,1177808788 +192560,31284,kuenstlerroman,1270339818 +192560,31389,character:Doctor Who,1344458402 +192560,31389,character:The Doctor,1344458402 +192560,31420,related:Rio Bravo(1958),1183424721 +192560,31424,adapted from:game,1182125876 +192560,31427,?alternate endings,1190556464 +192560,31467,sport:boxing,1182618098 +192560,31685,men being taught how to woo,1241138139 +192560,31685,mentor/trainer,1183853442 +192560,31687,Disney animated feature,1183934455 +192560,31687,series:Pooh,1183418785 +192560,31694,adapted from:book,1177803141 +192560,31694,author:Jane Austen,1190566851 +192560,31696,adapted from:comic,1177803621 +192560,31696,author:Alan Moore,1186843799 +192560,31813,nuns,1365111476 +192560,31847,ghosts/afterlife,1316697348 +192560,31847,invisibility,1316697348 +192560,31847,murder,1316697348 +192560,31956,rape,1241140517 +192560,32019,movie not to see,1353452528 +192560,32058,courtroom,1178372913 +192560,32058,father/daughter tension,1178372913 +192560,32078,subgenre:Kaiju,1371785781 +192560,32082,sport:basketball,1184717597 +192560,32211,rape,1241141028 +192560,32300,parody,1177807803 +192560,32300,queer,1241137480 +192560,32316,current,1255899704 +192560,32415,biomedical infection,1245638647 +192560,32415,Stellan SkarsgÃ¥rd did not write the screenplay,1245638596 +192560,32415,Stellan SkarsgÃ¥rd does not star in this movie,1245638596 +192560,32415,Stellan SkarsgÃ¥rd was not the director of photography on this movie,1245638596 +192560,32415,Téa Leoni does not star in this movie,1245638596 +192560,32415,Téa Leoni was not the gaffer on this movie,1245638596 +192560,32415,Tchéky Karyo did not direct this movie,1245638596 +192560,32415,Tchéky Karyo does not star in this movie,1245638596 +192560,32415,Tchéky Karyo was not the casting director for this movie,1245638596 +192560,32415,topic:disease/illness,1245638637 +192560,32452,adapted from:comic,1268740084 +192560,32471,adapted from:book,1284673124 +192560,32471,author:D.H. Lawrence,1284673124 +192560,32587,adapted from:comic,1182615049 +192560,32587,author:Frank Miller,1182615049 +192560,32587,dark comedy (sortof),1182615227 +192560,32587,great cinematography,1182615105 +192560,32587,gruesome,1245004851 +192560,32587,killer-as-protagonist,1214927036 +192560,32587,multiple storylines,1182615242 +192560,32587,murder,1182615049 +192560,32587,stylized,1183425891 +192560,32587,violent,1244316834 +192560,32598,sport:baseball?,1238705064 +192560,32792,adultery,1278555719 +192560,32834,adapted from:play,1278127696 +192560,32834,playwright:Shakespeare,1278127696 +192560,32882,Marx Brothers,1185048738 +192560,33004,adapted from:radio play,1177811122 +192560,33085,dwelling as character,1279028717 +192560,33085,subgenre:haunted house,1241284128 +192560,33126,Bechdel Test:Fail,1303305247 +192560,33126,genre:comedy western,1303305247 +192560,33126,subgenre:buddies,1303305247 +192560,33126,subgenre:road trip,1303305247 +192560,33150,adapted from:book,1226944509 +192560,33150,author:Geoffrey Douglas,1226944509 +192560,33150,based on a true story,1226944509 +192560,33150,sport:soccer football,1226944509 +192560,33166,disambiguation:Crash (1996/2004),1190567495 +192560,33168,adapted from TV show,1183857334 +192560,33201,adultery,1251466824 +192560,33312,Marx Brothers,1185048735 +192560,33321,subgenre:bowling noir,1444325813 +192560,33615,Bechdel Test:Fail,1248174275 +192560,33646,RemakeOf:The Longest Yard (1974),1178980421 +192560,33646,RemakeOf:The Longest Yard (2005),1178980421 +192560,33646,sport:American football,1178980872 +192560,33660,sport:boxing,1241137319 +192560,33679,Bechdel Test:Fail,1284993237 +192560,33679,Compare:Mr. and Mrs. Smith (2005),1284993019 +192560,33679,job/career vs. relationship/marriage,1284992918 +192560,33679,lousy cinematography,1284992810 +192560,33679,lousy soundtrack score,1284992829 +192560,33679,murder,1284992869 +192560,33679,protagonist is an assassin,1284992869 +192560,33679,setting:NYC,1284992869 +192560,33679,setting:suburbia,1284992869 +192560,33679,sexuality:BDSM,1284992901 +192560,33679,theme:lying,1284992901 +192560,33679,undercover,1284992869 +192560,33685,Based on a TV show?,1183857310 +192560,33725,adultery,1182123037 +192560,33725,cameo-fest,1182132124 +192560,33725,dance club,1182132124 +192560,33725,dark comedy,1182513579 +192560,33725,lip reading,1182123037 +192560,33725,mockumentary,1182123037 +192560,33725,setting:Ibiza (Spain),1182123037 +192560,33725,strong romantic subplot,1182123183 +192560,33725,topic:club DJ,1182123037 +192560,33725,topic:deafness,1182123037 +192560,33725,topic:drug addiction,1182123037 +192560,33760,See also:The King and I (1956),1274408729 +192560,33794,adapted from:comic,1177805575 +192560,33794,alter ego,1179176637 +192560,33794,Batman (series),1241136764 +192560,33830,Herbie The Love Bug (series),1206640611 +192560,33830,sport:car racing (NASCAR),1206641637 +192560,33830,sports competition:NASCAR,1206641607 +192560,33836,Based on a TV show,1187403167 +192560,33836,magic,1187402883 +192560,33896,double feature,1257367162 +192560,34002,Marx Brothers,1185048628 +192560,34018,Marx Brothers,1185048741 +192560,34048,adapted from:book,1222645258 +192560,34048,author:H. G. Wells,1222645258 +192560,34072,animal:penguins,1188410373 +192560,34072,lousy narration script,1241138607 +192560,34150,adapted from:comic,1177809103 +192560,34150,superhero,1179176858 +192560,34153,competition:paraolympics,1186351220 +192560,34153,sport:wheelchair rugby,1186351159 +192560,34162,Stiller&Wilson,1181394480 +192560,34162,subgenre:buddies,1189035294 +192560,34162,theme:lying,1189043249 +192560,34164,dark comedy,1185585030 +192560,34321,sport:baseball,1183418315 +192560,34405,assassin,1216303028 +192560,34405,Based on a TV show,1214926979 +192560,34405,DVD:director's commentary makes all the difference,1190557549 +192560,34405,dwelling as character,1279028621 +192560,34405,dystopia,1188923170 +192560,34405,genre:western noir,1216172295 +192560,34405,killer-as-protagonist,1214926979 +192560,34405,murder,1177172547 +192560,34405,sequel to TV show,1245448327 +192560,34405,Whedon,1138716220 +192560,34437,disorientating,1279413405 +192560,34437,protagonist is disorientated by foreign language and culture,1279413405 +192560,34520,Based on a TV show,1177808623 +192560,35347,adapted from:book,1241808402 +192560,35347,author:George Orwell (Eric Blair),1241808402 +192560,36056,genre:western noir,1216172043 +192560,36289,adapted from:book,1294239350 +192560,36289,adapted from:comic,1294239350 +192560,36289,author:Albert Uderzo,1294239387 +192560,36289,author:René Goscinny,1294239414 +192560,36519,audacious action,1223690820 +192560,36519,missing/kidnapped child,1303304986 +192560,36519,murder,1223689873 +192560,36519,plot point:bio-medical danger,1223689873 +192560,36519,setting:Miami,1223689873 +192560,36708,Based on a TV show,1177818522 +192560,37211,Marx Brothers,1185048631 +192560,37380,adapted from:game,1182125838 +192560,37380,military,1140238220 +192560,37380,murder,1177178459 +192560,37380,similar:Final Fantasy,1177172834 +192560,37386,adapted from:cartoon,1304646388 +192560,37386,Based on a TV show,1177803874 +192560,37386,cloning,1182616537 +192560,37386,dystopia,1177803879 +192560,37386,post-apocalyptic,1183932511 +192560,37729,claymation,1185584673 +192560,37729,Depp & Burton,1220668418 +192560,37729,gothic,1185584686 +192560,37733,adapted from:comic,1248785501 +192560,37736,adapted from:book,1181918251 +192560,37736,author:Charles Dickens,1181918250 +192560,37736,poverty,1181918250 +192560,37739,sport:golf?,1186350491 +192560,37741,Biography?,1190565017 +192560,37741,book:In Cold Blood,1190565135 +192560,37741,writer as protagonist,1190565120 +192560,37853,scuba diving,1182615845 +192560,38036,adapted from:play,1279673451 +192560,38036,playwright:Euripides,1279673451 +192560,38038,Aardman studios,1241139741 +192560,38038,Bechdel Test:Fail,1216303938 +192560,38038,claymation,1182301283 +192560,38304,biographical,1186321595 +192560,38304,character based on real person:Bob Dylan,1226939292 +192560,38388,sport:soccer football,1186322405 +192560,38499,adapted from:play,1224435056 +192560,38499,topic:AIDS,1224435069 +192560,38994,screenwriter:Julian Fellowes,1189041008 +192560,39183,queer,1241137008 +192560,39292,journalism,1186325240 +192560,39292,news media,1182288833 +192560,39292,topic:McCarthyism,1188681110 +192560,39307,sport:horse racing,1183418142 +192560,39381,kidnapping,1184900166 +192560,39381,murder,1184900166 +192560,39419,murder,1244320625 +192560,39444,depressing,1242856826 +192560,39941,series:Antoine Doinel,1270871400 +192560,40339,Disney animated feature,1183934290 +192560,40414,Xmas theme(?),1190080585 +192560,40629,adapted from:book,1183904711 +192560,40629,author:Jane Austen,1183904711 +192560,40815,adapted from:book,1177798742 +192560,40815,author:J. K. Rowling,1247845805 +192560,40815,ghosts/afterlife,1183336209 +192560,40819,?biographical,1190564880 +192560,40819,character based on real person:Johnny Cash,1227236130 +192560,40819,topic:Johnny Cash,1190564880 +192560,40826,adapted from B'way,1177186900 +192560,40946,race issues,1179964179 +192560,40946,stand-up comedy,1179964177 +192560,41285,sport:lawn tennis,1181482856 +192560,41566,adapted from:book,1182616854 +192560,41566,author:C. S. Lewis,1183424823 +192560,41566,Christian apologism,1241137306 +192560,41566,Jesus freaks,1241137298 +192560,41569,animal:great ape,1211636051 +192560,41569,woman carried onto tall building,1188750482 +192560,41571,adapted from:book,1183426224 +192560,41571,author:Arthur Golden,1184772924 +192560,41997,based on a true story,1226943665 +192560,41997,mass murder/terrorism,1241138716 +192560,42002,Nazis,1187401976 +192560,42004,"""underaged sex""=child porn",1188571835 +192560,42004,DVD:great commentary from writer,1190557484 +192560,42004,gender identity,1188565664 +192560,42004,parent reunites with (or meets) their estranged grown-up child,1188565603 +192560,42004,subgenre:road trip,1188565283 +192560,42004,transgender,1188565650 +192560,42007,See also:The Graduate,1178891847 +192560,42197,adultery,1388895100 +192560,42197,animal:dog,1388895082 +192560,42197,Bechdel Test:Pass,1388895159 +192560,42197,dark comedy,1245248622 +192560,42197,mad old woman is killer in comedy,1388895189 +192560,42197,magical nanny,1388895208 +192560,42197,murder,1388895096 +192560,42197,nanny is secretly blood relative,1389146647 +192560,42197,revenge,1388895092 +192560,42197,Rowan Atkinson plays a priest in a comedy,1388895128 +192560,42197,setting:Southern England,1388895075 +192560,42208,adapted from:book,1265241292 +192560,42208,author: Vijayadan Detha,1265241292 +192560,42312,adapted from:book,1252706766 +192560,42312,author:Charles Dickens,1252706766 +192560,42312,bildungsroman,1270338884 +192560,42312,kuenstlerroman,1270339989 +192560,42518,Xmas theme?,1274408473 +192560,42740,clash of cultures,1180315588 +192560,42740,comedy in the style of Harry Worth,1241138500 +192560,42740,deeply sarcastic,1241138505 +192560,42740,seeAlso:Lost In Translation,1180315588 +192560,43177,drugs,1289075716 +192560,43396,Bechdel Test:Fail,1216303091 +192560,43556,military,1177805089 +192560,43556,remakeOf:An Officer and a Gentleman?,1186324442 +192560,43560,adapted from:book series,1244911015 +192560,43560,author:Christianna Brand,1244911050 +192560,43836,Inspector Clouseau (series),1177848317 +192560,43836,predjudice:xenophobia,1178943835 +192560,43836,xenophobic,1150280718 +192560,43869,adapted from:book series,1183418344 +192560,43919,parody,1177807963 +192560,43934,octopus gets bad rap,1241137587 +192560,44100,men being taught how to woo,1312856442 +192560,44100,mentor/trainer,1312856442 +192560,44168,genre:western noir,1216171659 +192560,44191,adapted from:comic,1178878681 +192560,44191,author:Alan Moore,1181918725 +192560,44191,dystopia,1178878662 +192560,44191,killer-as-protagonist,1214926822 +192560,44191,murder,1178878681 +192560,44234,adapted from:book,1364044001 +192560,44234,author:Ray Bradbury,1364044001 +192560,44399,animal:dog,1183419492 +192560,44399,remakeOf:The Shaggy Dog(1959),1183419332 +192560,44494,Inspector Clouseau (series),1241139225 +192560,44761,neo-noir,1367952829 +192560,44788,documentary critique,1182514029 +192560,44788,murder,1181916708 +192560,44788,poor quality as documentary: sourcing; obvious bias,1181916708 +192560,44788,private detective,1181916707 +192560,44788,See Also:This Film Is Not Yet Rated (2006),1346684930 +192560,44788,setting:LA,1181922779 +192560,44788,social commentary,1181919469 +192560,44788,topic:censorship,1181916707 +192560,44788,topic:Hollywood industry,1181916708 +192560,44788,topic:MPAA,1181916707 +192560,44788,topic:US culture,1181916707 +192560,44972,parody,1186349409 +192560,45028,based on:radio programme,1185809801 +192560,45028,death personified,1279395619 +192560,45028,murder/fatality,1182127803 +192560,45062,espionage?,1186322770 +192560,45170,espionage,1268740718 +192560,45175,queer,1241138341 +192560,45175,setting:factory,1293593016 +192560,45175,setting:UK factory,1293593034 +192560,45175,transvestites,1178942487 +192560,45175,working class,1177812227 +192560,45186,adapted from TV series,1326799923 +192560,45186,murder,1177795211 +192560,45210,based on a true story,1225504025 +192560,45382,statutory rape,1244163940 +192560,45442,natural disaster,1337487660 +192560,45447,adapted from:book,1177807831 +192560,45447,author:Dan Brown,1313375768 +192560,45499,adapted from:comic,1182616530 +192560,45517,Disney animated feature,1183932981 +192560,45517,Pixar animation,1183934716 +192560,45635,biographical,1186321699 +192560,45672,Be satisfied with your life little man,1241137339 +192560,45720,adapted from:book,1177808189 +192560,45720,Bechdel Test:Pass,1226943779 +192560,45720,fashion,1303591365 +192560,45720,setting:Fashion magazine,1317744352 +192560,45720,setting:NYC,1317744397 +192560,45720,subplot:ingenue is aide to antiheroine,1303591377 +192560,45722,ghosts/afterlife,1183336294 +192560,45722,pirates,1183336294 +192560,45728,slackers,1177807253 +192560,45891,adapted from:book,1270276468 +192560,45891,author:Raymond Chandler,1270276468 +192560,45891,character:Philip Marlowe,1351017968 +192560,45891,private detective,1351017951 +192560,45928,current,1255899634 +192560,45981,invisibility,1223768618 +192560,46337,adapted from:comic,1183419099 +192560,46347,music?,1191446817 +192560,46530,adapted from:comic,1179176570 +192560,46530,alter ego,1179176570 +192560,46578,avuncular grandfather-figure,1241138448 +192560,46578,DVD:alternate endings,1241138453 +192560,46578,see also:Little Miss Sunshine,1177849188 +192560,46578,see also:Strictly Ballroom,1177796922 +192560,46578,subgenre:family dynamics,1181348690 +192560,46578,subgenre:road trip,1181348690 +192560,46772,Based on a TV show,1178996918 +192560,46772,childhood recaptured,1178996999 +192560,46772,childhood recaptured(?),1178996918 +192560,46772,dark comedy,1182612745 +192560,46772,high school,1183858617 +192560,46850,game:(quick) crosswords,1182021337 +192560,46850,topic:crossword construction,1182021464 +192560,46850,topic:crossword tournament competition,1182021464 +192560,46850,topic:US culture,1182021337 +192560,46948,dwelling as character,1279029159 +192560,46948,Halloween theme,1183855449 +192560,46970,competition,1183855715 +192560,46970,sport:car racing (NASCAR),1186927044 +192560,46972,animal:monkey,1243210034 +192560,46972,Bechdel Test:Fail,1244165440 +192560,46972,Stiller&Wilson,1243210058 +192560,47044,Based on a TV show,1186321993 +192560,47200,current,1256245732 +192560,47200,killer-as-protagonist,1223768797 +192560,47200,plot point:time is short,1223768882 +192560,47200,rape,1381048469 +192560,47261,adapted from:book,1244816808 +192560,47261,author:Armistead Maupin,1244816808 +192560,47261,protagonist is radio personality,1244816859 +192560,47394,clash of cultures,1226099982 +192560,47394,murder,1226099982 +192560,47394,serial killer,1245005852 +192560,47394,sport:ice hockey,1226099982 +192560,47610,magic/illusion/mysticism,1270115834 +192560,47629,biographical,1177818951 +192560,47644,setting:Philadelphia,1178980551 +192560,47725,angelic intervention,1184990053 +192560,47725,setting:Paris,1184990053 +192560,47774,Bechdel Test:Fail,1244557189 +192560,47774,black and white characters interact with colour world,1244556868 +192560,47774,colour/B&W combo,1357408960 +192560,47774,dark comedy,1244556779 +192560,47774,Lego(tm),1244556768 +192560,47774,parody,1244556800 +192560,47774,television,1244558066 +192560,47805,animal:dog,1183418914 +192560,47805,Based on a TV show,1183425086 +192560,47860,adapted from:book,1343247984 +192560,47860,author:Walter Scott,1343247984 +192560,47999,deeply disturbing,1241138296 +192560,47999,excellent documentary but too scary for me,1241138290 +192560,47999,horrifying (but not Horror genre),1241138283 +192560,47999,neither CC nor ENG subtitles,1241138279 +192560,47999,religion,1181998943 +192560,47999,topic:brainwashing children,1241138303 +192560,47999,topic:evangelism,1181998927 +192560,47999,topic:US culture,1181998927 +192560,48161,sport:American football,1192620765 +192560,48385,mockumentary,1182123107 +192560,48385,social commentary,1183853593 +192560,48394,coming-of-age,1182123417 +192560,48394,maze,1182096980 +192560,48394,murder,1182122937 +192560,48394,paired with:Devil's Backbone,1182048568 +192560,48394,paired with:Pan's Labyrinth,1182048568 +192560,48394,Spanish Civil War,1182046467 +192560,48394,subgenre:fable,1182096980 +192560,48416,apprenticeship/training of an adult,1215361209 +192560,48416,men being taught how to woo,1241139126 +192560,48416,mentor/trainer,1183856939 +192560,48516,mafia,1177808138 +192560,48560,dysfunctional family,1244163870 +192560,48593,US presidential election/politics,1182730052 +192560,48598,murder,1244816368 +192560,48682,sport:soccer football,1239777340 +192560,48738,character based on real person:Idi Amin,1241138377 +192560,48738,setting:Uganda,1225503913 +192560,48738,topic:Idi Amin,1241138373 +192560,48744,feel good,1241808909 +192560,48744,group sex,1177812544 +192560,48744,improvised/actor-developed script,1181348570 +192560,48744,queer,1177812535 +192560,48774,adapted from:book,1242856526 +192560,48774,author:P. D. James,1242856534 +192560,48774,bleak,1242856498 +192560,48774,dystopia,1183740019 +192560,48774,grim,1242856493 +192560,48791,animal:horse,1183418357 +192560,48883,assassination,1178998599 +192560,48883,George W. Bush,1182127326 +192560,48883,murder,1177797200 +192560,48883,related:technique:Forrest Gump,1177172591 +192560,48883,seeAlso:Death of a President (2006),1204980431 +192560,48982,Dreamworks,1183934871 +192560,48997,serial killer,1188580560 +192560,49013,Xmas theme,1186321304 +192560,49060,no US release,1402330428 +192560,49234,adapted from:book,1343248017 +192560,49234,author:Gillian Slovo,1343248017 +192560,49272,007 (series),1241137099 +192560,49272,adultery,1176605075 +192560,49272,assassin,1226944815 +192560,49272,killer as protagonist,1226944815 +192560,49272,murder,1177184578 +192560,49272,PrequelTo:Quantum of Solace[2008],1226436878 +192560,49272,SequelTo:Casino Royale[2006],1226436878 +192560,49278,time,1177896835 +192560,49286,trading places,1188590845 +192560,49396,laser maze room (in a comedy),1214614554 +192560,49524,religion:Xian,1188405887 +192560,49524,Xmas theme,1188405887 +192560,49647,adapted from:book,1177818309 +192560,49647,animation remade as live action,1183418081 +192560,49647,author:E. B. White,1190555241 +192560,49647,barnyard animals,1190555130 +192560,49651,competitive sport,1183425461 +192560,49651,sport:boxing,1241139041 +192560,49666,biopic,1257367556 +192560,49666,character based on real person: Diane Arbus,1257367585 +192560,49666,protagonist is a photographer,1257367603 +192560,49752,adapted from:book,1254007473 +192560,49752,author:Katharine Brush,1254007473 +192560,49772,adapted from:book,1244032142 +192560,49772,adultery,1244032214 +192560,49772,author:W. Somerset Maugham,1244032162 +192560,49772,nuns,1244032223 +192560,49793,setting:high school,1192620681 +192560,49793,setting:small town America,1192620681 +192560,49793,sport:American football,1192620681 +192560,49822,espionage,1186321052 +192560,49957,adapted from:play,1386520427 +192560,49957,adolescence,1386520373 +192560,49957,Bechdel Test:Fail,1387053128 +192560,49957,protagonist is a teacher,1386520373 +192560,49957,queer,1386520402 +192560,49957,setting:England,1386520417 +192560,49957,setting:high school,1386520373 +192560,49961,protagonist is teacher,1276625368 +192560,50658,7n Up (series),1221955707 +192560,50685,infidelity,1181394660 +192560,50685,setting:diner,1184536494 +192560,50740,7n Up (series),1232404471 +192560,50742,7n Up (series),1350955325 +192560,50794,mafia,1183858588 +192560,50794,murder,1183858588 +192560,50804,psychiatrist as protagonist,1241138014 +192560,50804,serial killer,1241138027 +192560,50872,apprenticeship,1183416464 +192560,50872,Bechdel Test:Fail,1216303732 +192560,50872,food/cooking,1183416464 +192560,50872,puppetry,1183416464 +192560,50872,setting:Paris,1183416464 +192560,51014,adapted from:book,1227640865 +192560,51014,alter ego,1227640889 +192560,51014,author:Robert Louis Stevenson,1227640865 +192560,51014,related:Dr. Jekyll and Mr. Hyde,1238708879 +192560,51014,tale:Jekyll&Hyde,1344027971 +192560,51024,author:Homer,1232048513 +192560,51063,adapted from:TV series,1241018202 +192560,51077,adapted from:comic,1177819778 +192560,51127,music documentary,1270116816 +192560,51255,dystopia,1177978630 +192560,51255,murder,1177978630 +192560,51255,parody,1241138166 +192560,51255,R,1243123934 +192560,51255,subgenre:cop buddies,1178842743 +192560,51255,Worthy of The Avengers TV show,1241138161 +192560,51304,based on a true story,1225941153 +192560,51304,incest,1241141012 +192560,51304,rape,1241141014 +192560,51304,serial killer,1241141016 +192560,51412,author:Philip K. Dick,1181918984 +192560,51471,London,1185584853 +192560,51540,serial killer,1247754054 +192560,51619,adapted from:book,1322711252 +192560,51619,author:Ursula K. Le Guin,1322711243 +192560,51662,adapted from:comic,1186320530 +192560,51662,author:Frank Miller,1186320530 +192560,51662,rape,1241140502 +192560,51678,adapted from:play,1183907835 +192560,51678,playwright:Shakespeare,1226865027 +192560,51834,biography?,1186879748 +192560,51834,topic:Jane Austen,1186879748 +192560,51925,adultery,1187402111 +192560,51925,compare:Premonition (2007),1317653493 +192560,51925,premonition/fate,1313856050 +192560,51925,time,1317653206 +192560,52245,ice skating,1178978480 +192560,52245,sport:ice skating,1181918785 +192560,52281,adultery,1182613951 +192560,52281,audience participation?,1182125082 +192560,52281,double feature,1182613959 +192560,52281,genre spoof,1241140125 +192560,52281,Gore,1241140107 +192560,52281,multiple short stories in one,1266751279 +192560,52281,murder,1182125082 +192560,52281,rape,1241140112 +192560,52281,serial killer,1241140117 +192560,52281,subgenre:zombie,1182613858 +192560,52435,adapted from:book,1227640988 +192560,52435,author:Dr. Seuss,1227640988 +192560,52435,Xmas theme,1227640988 +192560,52458,amateur detective,1190511371 +192560,52458,Hey moron: stop tagging movies with stuff that's in the info section,1252290159 +192560,52458,murder,1190511371 +192560,52458,remadeAs:Disturbia (2007),1190511092 +192560,52458,remakeOf:Rear Window (1954),1190511272 +192560,52462,Based on a TV show,1183900332 +192560,52604,adultery,1222633042 +192560,52604,courtroom drama,1222633065 +192560,52604,murder,1178371666 +192560,52604,protagonist is engineer,1222633065 +192560,52694,adapted from:TV series,1239776419 +192560,52722,adapted from:comic,1178244948 +192560,52722,alter ego,1179176750 +192560,52722,infidelity,1178489965 +192560,52722,Jesus as Satan,1178489965 +192560,52722,murder,1178489965 +192560,52730,Xmas theme,1232404493 +192560,52767,7n Up (series),1350955343 +192560,52973,notable:doorman/bouncer (scene),1183076135 +192560,52973,slackers,1183076135 +192560,52975,adapted from B'way,1184343158 +192560,52975,cameo:John Watters,1188696184 +192560,52975,dancing,1186348937 +192560,52975,high school,1186348937 +192560,52975,man dressed as woman (scene),1186348937 +192560,52975,racism,1186348937 +192560,52975,remakeOf:Hairspray(1988),1183420196 +192560,52975,setting:Baltimore,1188696184 +192560,53000,post-apocalyptic,1207484343 +192560,53000,SequelTo:28 Days Later,1207484327 +192560,53125,ghosts/afterlife,1183336280 +192560,53125,pirates,1183336270 +192560,53129,adultery,1222632989 +192560,53129,killer-as-protagonist,1222632989 +192560,53129,murder,1180990610 +192560,53129,protagonist is engineer,1222633006 +192560,53129,serial killer,1252110222 +192560,53131,disambiguation:Rise/Up,1245004949 +192560,53138,Bechdel Test:Fail,1334322005 +192560,53138,librarians,1334321913 +192560,53140,Bechdel Test:Fail,1355115681 +192560,53140,DVD:extra footage,1334321873 +192560,53140,librarians,1334321828 +192560,53140,murder,1355115671 +192560,53318,art student as protagonist,1201059814 +192560,53318,male gaze,1241137085 +192560,53318,notable nudity,1196000228 +192560,53318,slackers,1196000228 +192560,53318,time,1196000228 +192560,53464,adapted from:comic,1182126472 +192560,53466,adapted from:book series,1183900159 +192560,53466,amateur detective,1185809695 +192560,53466,cameo:Bruce Willis,1184558043 +192560,53466,setting:LA,1184558043 +192560,53887,Mick Travis (series),1359143381 +192560,53894,documentary critique,1183420248 +192560,53894,topic:managed health care,1183900231 +192560,53921,character based on real person:Daniel Pearl,1223692007 +192560,53953,author:Stephen King,1241136495 +192560,53953,setting:hotel,1186879793 +192560,53956,funeral,1197565617 +192560,53972,murder,1184343198 +192560,53974,central event:wedding preparation,1183853175 +192560,53974,Jesus freaks,1183853175 +192560,53974,mentor/trainer,1183853175 +192560,53974,setting:Chicago,1183853176 +192560,53988,adapted from:book,1183900530 +192560,53988,author:Susan Minot,1183900530 +192560,53996,adapted from:toy,1211828010 +192560,53996,android(s)/cyborg(s),1211500425 +192560,53996,anti-government paranoia,1211828070 +192560,53996,Based on a TV show?,1183853211 +192560,53996,enormously long battle scene,1211827978 +192560,53996,fighter jet planes,1211827978 +192560,53996,helicopters,1211827978 +192560,53996,related:secret friend,1211828095 +192560,53996,setting:Hoover Dam,1211827978 +192560,53996,silly,1211827978 +192560,54001,adapted from:book,1247845825 +192560,54001,author:J. K. Rowling,1247845825 +192560,54004,fat jokes,1184990271 +192560,54004,firefighting,1184990271 +192560,54004,privileged people discover prejudice/inequality firsthand,1184990556 +192560,54004,stereotype:gay,1184990527 +192560,54004,subgenre:buddies,1189035280 +192560,54010,RemakeOf:Bedtime Story (1964),1351878679 +192560,54190,Beatles soundtrack,1244163423 +192560,54259,adapted from:book,1188405290 +192560,54259,animal:various,1188405266 +192560,54259,author:Neil Gaiman,1188405290 +192560,54259,magic realism,1188405266 +192560,54259,magical aging/immortality,1188405266 +192560,54259,men in drag (scene),1188405266 +192560,54259,murder,1188405346 +192560,54259,pirates,1188405266 +192560,54272,Based on a TV show,1186097999 +192560,54272,cameo:Green Day,1186187210 +192560,54272,cameo:Tom Hanks,1186187210 +192560,54274,gruesome (torture scenes),1186319742 +192560,54274,murder,1186319742 +192560,54274,serial killer,1186319742 +192560,54274,twins/inter-related lives,1187301389 +192560,54278,animation remade as live action,1184989758 +192560,54278,Based on a TV show,1184989758 +192560,54286,agent/assassin with false memories/amnesia,1358039513 +192560,54286,assassin,1186187309 +192560,54286,assassin-in-training (scene),1186187452 +192560,54286,author:Robert Ludlum,1225502260 +192560,54286,Bechdel Test:Fail,1225502250 +192560,54286,disorientatiion by cinematography,1279413178 +192560,54286,disorienting,1279413191 +192560,54286,espionage,1186187617 +192560,54286,killer-as-protagonist,1214926429 +192560,54286,living a fictional life,1352827886 +192560,54286,murder,1186187309 +192560,54286,murder/fatality,1186187452 +192560,54331,protagonist is a recovering alcoholic,1220403241 +192560,54331,protagonist is an assassin,1220403241 +192560,54372,adapted from:book,1232402468 +192560,54372,author:Harlan Coben,1232402468 +192560,54691,adapted from:book,1228221201 +192560,54691,author:D.H. Lawrence,1228221201 +192560,54775,assassin,1223816514 +192560,54775,gangsters,1223771818 +192560,54775,killer-as-protagonist,1223771855 +192560,54775,murder,1223771818 +192560,54785,character:Michael Myers,1354407588 +192560,54785,murder,1354407648 +192560,54785,serial killer,1354407648 +192560,54785,subgenre:slasher,1354407560 +192560,54796,Americans are jerks,1201404249 +192560,54796,setting:Paris,1241136510 +192560,54995,crude humor,1242854752 +192560,54995,splatter,1242854763 +192560,55078,adapted from:book,1268412099 +192560,55078,author:Thomas Hardy,1268412099 +192560,55118,racism,1241139991 +192560,55118,rape,1241139989 +192560,55118,Russian mafia,1241139996 +192560,55118,violent,1241139997 +192560,55232,plot point:bio-medical danger,1223690070 +192560,55250,sport:American football,1245448118 +192560,55269,Bechdel Test:Fail,1216302868 +192560,55269,cameo:Bill Murray,1208032142 +192560,55269,cameo:Natalie Portman,1208032141 +192560,55269,dark comedy,1208032141 +192560,55269,family dynamics,1208032409 +192560,55269,nuns,1208035004 +192560,55269,protagonist is egoist,1208032142 +192560,55269,"quote:""let's make an agreement....""",1208032141 +192560,55269,setting:India,1208032142 +192560,55269,setting:train,1208035004 +192560,55269,SIBLING RELATIONSHIPS,1208035004 +192560,55269,spiritual journey,1208032142 +192560,55269,super rich,1208032142 +192560,55269,tale of three brothers,1208032141 +192560,55269,theme:lying,1208032264 +192560,55269,train trip,1208032142 +192560,55269,warning:misleading trailer,1208032141 +192560,55274,biographical,1276625233 +192560,55274,character based on real person:Walter Raleigh,1276625095 +192560,55274,genre:historical fiction,1276625066 +192560,55274,SequelTo:Elizabeth,1276625163 +192560,55278,Bechdel Test:Fail,1226864547 +192560,55278,remake is a complete rewrite,1226864558 +192560,55620,homophobia,1270308111 +192560,55620,religion:Xian,1270308151 +192560,55895,VistaVision,1241136293 +192560,55995,adapted from:book,1239776189 +192560,56001,adapted from:book,1196000303 +192560,56001,author:Gabriel García Márquez,1196000350 +192560,56145,adapted from:book,1196000286 +192560,56145,author:Stephen King,1196000286 +192560,56152,animal:chipmunk,1197161726 +192560,56152,CGI animal,1197161726 +192560,56152,magic realism,1197161757 +192560,56152,setting:Central Park (NYC),1197161726 +192560,56152,setting:NYC,1197161726 +192560,56152,setting:Times Square (NYC),1197161726 +192560,56152,torture (scene),1197161726 +192560,56156,adapted from:videogame,1196200796 +192560,56156,assassin,1196200796 +192560,56156,assassin-in-training (scene),1196201010 +192560,56156,killer-as-protagonist,1214927501 +192560,56156,murder,1196200796 +192560,56158,Xmas theme(?),1196000342 +192560,56174,adapted from:book,1197684919 +192560,56174,another adaptation of _I am Legend_,1211808107 +192560,56174,author:Richard Matheson,1197684919 +192560,56174,plot point:bio-medical danger,1223690165 +192560,56174,vampire,1197685200 +192560,56251,Based on a TV show,1216670304 +192560,56367,characters talk like they are on BtVS,1211502551 +192560,56367,notable:dialogue,1216230523 +192560,56563,Bechdel Test:Fail,1218843852 +192560,56563,many interviews,1218636013 +192560,56563,shallow,1252727742 +192560,56563,topic:communication design,1218636013 +192560,56563,topic:Modernism,1218636013 +192560,56563,topic:typography,1218636039 +192560,56607,adapted from:book,1200877589 +192560,56607,author:Khaled Hosseini,1225504536 +192560,56607,child rape,1241138356 +192560,56607,death by stoning,1225504536 +192560,56607,memoir,1225504536 +192560,56607,murder,1225504536 +192560,56607,rape,1241140052 +192560,56607,setting:Afghanistan,1225504536 +192560,56757,adapted from:play,1199373189 +192560,56757,cannibalism,1216228643 +192560,56757,depp & burton,1216228672 +192560,56757,Family,1199373189 +192560,56757,great cinematography,1199298245 +192560,56757,killer-as-protagonist,1214926898 +192560,56757,murder,1199298214 +192560,56757,playwright:Sondheim,1199373189 +192560,56757,setting:London,1216228653 +192560,56775,conspiracy theory,1367952906 +192560,56837,playwright:Shakespeare,1315073348 +192560,57041,current,1255898080 +192560,57041,Xmas theme(?),1294240707 +192560,57368,subgenre:Kaiju,1371785878 +192560,57509,Bechdel Test:Pass,1217017431 +192560,57509,group sex,1217017402 +192560,57509,psychiatrist as character,1217017402 +192560,57509,setting:LA,1217017402 +192560,57509,tragedy,1217123104 +192560,57640,adapted from:comic,1215882240 +192560,57640,annoying sexist stereotype mars story,1215882240 +192560,57640,beautiful effects,1215882240 +192560,57640,elves,1215882240 +192560,57640,golem/automaton,1215882351 +192560,57640,murder,1215882239 +192560,57640,secret gov't agency works with and hides aliens,1215882239 +192560,57640,set:mechanical gearworks,1215882240 +192560,57640,setting:NYC,1215882240 +192560,57640,warmonger,1215882239 +192560,57854,adapted from:book,1291758071 +192560,57854,author:Alexandre Dumas (père),1291758071 +192560,58103,assassination,1242854525 +192560,58103,genre:movie as whodunit,1204980308 +192560,58103,hypertextual (mildly),1204980308 +192560,58103,murder,1204980308 +192560,58103,seeAlso:Death of a President (2006),1204980521 +192560,58156,sport:basketball,1216228245 +192560,58191,torture,1204980091 +192560,58191,Why the terrorists hate us,1204980091 +192560,58291,road trip,1204980162 +192560,58295,adultery,1223816341 +192560,58295,based on a true story,1223816453 +192560,58295,Bechdel Test:Fail,1223816392 +192560,58295,group sex,1223816352 +192560,58295,heist,1223768674 +192560,58295,murder,1223816370 +192560,58295,Notable Nudity,1223816382 +192560,58295,racism,1223816359 +192560,58295,setting:London (UK),1223768685 +192560,58295,sexuality:BDSM,1223816333 +192560,58295,topic:police corruption,1223816445 +192560,58295,topic:UK class structure,1223816429 +192560,58295,torture (scene),1223816313 +192560,58299,adapted from:book,1204980128 +192560,58299,author:Dr. Seuss,1204980128 +192560,58559,animal:dog,1222136786 +192560,58559,Batman (series),1241137532 +192560,58559,Bechdel Test:Fail,1243208954 +192560,58559,murder,1222038070 +192560,58559,notable:motorcycle,1222038070 +192560,58559,serial killer,1243208944 +192560,58559,villain:The Joker,1222038070 +192560,58559,villain:The Scarecrow,1223138523 +192560,58559,villain:Two-face,1222038070 +192560,58559,violent,1243208934 +192560,58559,widespread cellphone-based surveillance,1222644832 +192560,58839,sport:American football,1208032740 +192560,59126,topic:religion,1225590830 +192560,59159,adapted from:book,1322942029 +192560,59159,author:Edgar Allan Poe,1233266200 +192560,59159,based on a book,1233266200 +192560,59315,adapted from:comic,1211449854 +192560,59315,android(s)/cyborg(s),1211477344 +192560,59315,Bechdel Test:Fail,1216302941 +192560,59315,murder,1211449720 +192560,59315,setting:Afghanistan,1211449763 +192560,59315,topic:cybernetics,1211449720 +192560,59315,weapons industry,1211449720 +192560,59501,adapted from:book,1211500268 +192560,59501,author:C. S. Lewis,1211500662 +192560,59501,Christian apologism,1211635561 +192560,59501,Jesus freaks,1241137293 +192560,59615,animal:ants;giant (scene),1211806322 +192560,59615,animal:monkey (scene),1211806322 +192560,59615,animal:snake (scene),1211806322 +192560,59615,Bechdel Test:Fail,1218843899 +192560,59615,murder,1211635511 +192560,59615,nuns(scene),1303305627 +192560,59615,plot point:solving riddles/puzzles,1211635511 +192560,59615,setting:Amazon (pathetically unrealistic),1211635511 +192560,59615,setting:Area 51,1211635511 +192560,59725,author:Candace Bushnell,1216303064 +192560,59725,Based on a TV show,1216303056 +192560,59725,central event:wedding preparation,1225502676 +192560,59945,vigilante,1248119903 +192560,60040,adapted from:comic,1278127625 +192560,60072,adapted from:comic,1215564854 +192560,60072,animals die,1241139765 +192560,60072,anxiety disorder,1215564338 +192560,60072,assassin,1215564338 +192560,60072,assassin-in-training,1215564338 +192560,60072,bildungsroman,1215565090 +192560,60072,brutal violence,1241139771 +192560,60072,father-son relationship,1215564338 +192560,60072,infidelity,1215564338 +192560,60072,murder,1215564338 +192560,60072,no title sequence,1215564508 +192560,60072,office worker discovers secret identity,1215564338 +192560,60072,setting:Chicago,1215564338 +192560,60072,setting:train,1215564338 +192560,60074,apprenticeship/training of an adult,1215361139 +192560,60074,lousy camerawork/cinematography,1215361139 +192560,60074,mentor/trainer,1215361257 +192560,60074,political metaphor,1215361139 +192560,60074,public relations,1215361139 +192560,60074,superhero,1215361139 +192560,60106,adapted from:book,1233191410 +192560,60106,author:Mark Twain [Samuel Clemens],1233191410 +192560,60110,adapted from:book,1276135767 +192560,60110,author:Mark Twain [Samuel Clemens],1276135767 +192560,60110,murder,1276135767 +192560,60126,animal:rat (scene),1214614422 +192560,60126,Based on a TV show,1214614454 +192560,60126,dance off (scene),1214614844 +192560,60126,espionage,1214614422 +192560,60126,laser maze room (in a comedy),1214614423 +192560,60126,music is key to story (not Musical genre),1215360855 +192560,60128,Bechdel Test:Fail,1241808786 +192560,60128,DVD:funny commentary,1241808761 +192560,60128,ensemble cast,1241808761 +192560,60128,individual stories intertwined,1268504405 +192560,60128,threesome,1241808761 +192560,60291,biography,1226943573 +192560,60291,topic:Hunter S. Thompson,1226943592 +192560,60365,magicans,1341417966 +192560,60365,tear jerker,1341417993 +192560,60397,adapted from B'way,1222037985 +192560,60397,central event:wedding preparation?,1247070277 +192560,60397,music:ABBA,1222037985 +192560,60421,adapted from:book,1216670416 +192560,60421,author:Margaret Laurence,1216670416 +192560,60421,biographical view,1216670454 +192560,60684,adapted from:comic,1236964245 +192560,60684,author:Alan Moore,1236964255 +192560,60684,dark hero,1367952680 +192560,60684,related:Watchmen (2009),1247473119 +192560,60760,adapted from:TV series,1239775059 +192560,60816,adapted from:book,1234140431 +192560,60816,author:Terry Pratchett,1234140431 +192560,60818,adapted from:book,1265241926 +192560,60818,author:Terry Pratchett,1265241926 +192560,61132,actors and acting,1231082709 +192560,61132,animal:panda bear,1231082199 +192560,61132,animal:water buffallo,1231082199 +192560,61132,Bechdel Test:Fail,1231082199 +192560,61132,death/fatality,1231082199 +192560,61132,movie within a movie,1231082709 +192560,61132,plot:confusion between war-movie being filmed and reality,1231082709 +192560,61132,satire:Hollywood insiders,1231082524 +192560,61132,topic:hollywood industry,1231082524 +192560,61132,why everyone hates the US,1241139669 +192560,61240,adapted from:book,1286124100 +192560,61240,author:John Ajvide Lindqvist,1286124100 +192560,61240,castration,1286124137 +192560,61246,adultery,1220403037 +192560,61246,Bechdel test:Fail,1220403889 +192560,61246,character portrays Jesus,1220403036 +192560,61246,play within a movie,1220403037 +192560,61246,protagonist is a movie buff,1220403036 +192560,61246,protagonist is a recovering alcoholic,1220403037 +192560,61246,protagonist is a teacher,1315922616 +192560,61246,protagonist is insane,1220403037 +192560,61246,setting:high school,1220403057 +192560,61246,setting:Tuscon,1220403037 +192560,61465,assassin,1223772014 +192560,61465,disambiguation:Bangkok Dangerous (2000/2008),1223772014 +192560,61465,killer-as-protagonist,1223772014 +192560,61465,murder,1223772014 +192560,62049,adapted from:book,1223603000 +192560,62049,author:George Orwell [Eric Blair],1223603000 +192560,62081,assassination,1223603319 +192560,62081,Bechdel test:Fail,1223603783 +192560,62081,bloodthirsty US president,1223603319 +192560,62081,chase in airport cargo handling facility,1223603448 +192560,62081,cyber-blackmail/intimidation,1223603319 +192560,62081,FBI pursuit,1223603319 +192560,62081,gun in airport,1223603319 +192560,62081,major scientific flaw,1241137672 +192560,62081,murder,1223603319 +192560,62081,reference:cyclops,1223603319 +192560,62081,sappy ending,1223603319 +192560,62081,setting:The Pentagon,1223603319 +192560,62081,twins/inter-related lives,1223603587 +192560,62081,video surveillance,1223603319 +192560,62081,why the terrorists hate US,1241137684 +192560,62383,setting:submarine,1322942274 +192560,62394,adapted from:game,1225291769 +192560,62394,murder,1225291780 +192560,62434,Bechdel Test:Fail,1225668308 +192560,62434,notable:ice hockey (scene),1225668628 +192560,62434,plot:romance during porno shoot,1225668308 +192560,62434,plot:sex complicates romance,1225668308 +192560,62434,racist humor,1225668206 +192560,62434,setting:Monroeville; PA; USA,1225668367 +192560,62434,setting:Pittsburgh,1225668308 +192560,62434,watch the credits,1225668308 +192560,62437,character based on real person:George W. Bush,1226939084 +192560,62851,dark comedy,1241139920 +192560,62851,death/fatality,1225506061 +192560,62851,DVD:no subtitles or CC,1241139913 +192560,62851,mourning,1225506061 +192560,62851,religion:Buddism,1225506061 +192560,62851,subgenre:slapstick,1225506061 +192560,62925,adapted from:book,1233191860 +192560,62925,author:Mark Twain [Samuel Clemens],1233191860 +192560,62974,adapted from:book,1239771445 +192560,62974,author:Mark Twain [Samuel Clemens],1239771445 +192560,62999,Bechdel Test:Fail,1226100086 +192560,62999,dancing,1226100086 +192560,62999,father-son relationship,1226100086 +192560,62999,nature of leadership,1267291024 +192560,62999,protagonist is royal,1269051202 +192560,62999,queer,1241138541 +192560,62999,setting:Africa,1226100086 +192560,62999,setting:game reserve,1226100086 +192560,62999,setting:Jungle,1226100086 +192560,63062,based on a true story,1226436987 +192560,63113,007 (series),1241138970 +192560,63113,assassin,1226944992 +192560,63113,killer as protagonist,1226944992 +192560,63113,murder,1226436897 +192560,63113,PrequelTo:Quantum of Solace[2008],1226436897 +192560,63113,rape,1241140445 +192560,63113,SequelTo:Casino Royale[2006],1226436833 +192560,63121,adapted from:book,1228693122 +192560,63121,author:Charles Dickens,1228693122 +192560,63222,compareTo:Last Action Hero,1234292201 +192560,63222,courtroom (scene),1234309413 +192560,63222,kidnapping,1234292201 +192560,63222,protagonist is actor,1234292201 +192560,63222,robbery,1234292201 +192560,63222,technique:monologue to camera,1234292201 +192560,63237,disambiguation:...Ever After...,1226524488 +192560,63329,Xmas theme(?),1297086459 +192560,63446,Xmas theme,1227641041 +192560,63647,rape,1241141003 +192560,63876,character based on real person:Harvey Milk,1228221132 +192560,63876,SeeAlso:Milk(2008),1228222544 +192560,63876,setting:San Francisco,1228221133 +192560,63992,adapted from:book,1278121492 +192560,63992,author:Stephenie Meyer,1278121508 +192560,64030,assassins,1228428002 +192560,64030,killer as protagonist,1228428002 +192560,64030,murder,1228428002 +192560,64030,murder/fatality,1228428002 +192560,64034,The Shoah,1228693093 +192560,64285,Aardman,1241284859 +192560,64418,topic:Pearl Fryar,1229533065 +192560,64519,courtroom drama,1337303330 +192560,64519,docudrama,1337306537 +192560,64519,protagonist is journalist/reporter,1337306537 +192560,64614,Bechdel Test:Fail,1232472784 +192560,64614,classic car,1232472391 +192560,64614,culture clash,1232472350 +192560,64614,gang,1232472388 +192560,64614,mentor,1232472397 +192560,64614,murder,1232472366 +192560,64614,racism,1241137950 +192560,64614,revenge,1232472348 +192560,64620,adapted from:B'way,1244319655 +192560,64839,sport:professional wrestling,1244163479 +192560,64839,violence,1244163460 +192560,64957,"""underaged sex""=child porn",1230648408 +192560,64957,adapted from:book,1247844903 +192560,64957,author:F. Scott Fitzgerald,1247844903 +192560,64957,biographical view,1230648408 +192560,64957,episodic,1230648318 +192560,64957,related:Big,1230648318 +192560,64957,related:Forrest Gump,1230648318 +192560,64957,sad,1241137460 +192560,64969,disambiguation: Yes Man/Men,1238626275 +192560,64983,assassin,1230648165 +192560,64983,based on a true story,1230648189 +192560,64983,Nazis,1230648162 +192560,65126,adapted from:book,1233191656 +192560,65126,author:Chuck Palahniuk,1233191656 +192560,65135,adapted from:play,1238274273 +192560,65135,Bechdel Test:Fail,1337865834 +192560,65135,playwright:Charles Dickens,1238274273 +192560,65135,Xmas theme,1238274273 +192560,65230,animal:dog,1231540455 +192560,65359,author:Ursula K. Le Guin,1271061609 +192560,65585,Bechdel Test:Pass,1232472744 +192560,65685,adapted from:book,1271061358 +192560,65685,author:Cornelia Funke,1271061358 +192560,65780,screenwriter:Rod Serling,1245636933 +192560,65780,US President,1245636933 +192560,65868,plot:Repossessed organs,1270115372 +192560,65932,disambiguation:Blue,1233917753 +192560,66097,adapted from:book,1311770239 +192560,66097,author:Neil Gaiman,1238621592 +192560,66097,Bechdel Test:Pass,1311770255 +192560,66097,death/fatality,1311770248 +192560,66203,adapted from:book,1241284694 +192560,66240,sequel to TV show,1245446559 +192560,66783,character:Jason Vorhees,1354407246 +192560,66783,murder,1354407818 +192560,66783,serial killer,1354407818 +192560,66783,subgenre:slasher,1354407118 +192560,66798,Inspector Clouseau (series),1238621122 +192560,67186,dwelling as character,1279029815 +192560,67186,subgenre:haunted house,1279029801 +192560,67190,adapted from:book,1277994155 +192560,67190,author:Watty Piper,1277994155 +192560,67223,sport:baseball,1275603059 +192560,67255,adapted from:book,1278555648 +192560,67255,author:Stieg Larsson,1278555657 +192560,67408,3D,1241141139 +192560,67408,computer animation,1241018717 +192560,67408,Dreamworks,1241141558 +192560,67695,Bad direction,1242853691 +192560,67695,Date Rape,1242853666 +192560,67695,Hateful,1242853671 +192560,67695,Racism,1242853677 +192560,67702,adapted from:play,1343749483 +192560,67702,playwright:Noel Coward,1343749482 +192560,67788,adapted from:book,1241018346 +192560,67890,70mm,1241018501 +192560,67890,adapted from:opera,1241018581 +192560,67890,playwright:George Gershwin,1241018581 +192560,67892,70mm,1241018443 +192560,67892,Todd-AO,1241018415 +192560,67997,based on a TV show,1283004239 +192560,67997,laughed so hard I wet my pants,1283004331 +192560,67997,"quote:""Fuck-ity bye!""",1336793658 +192560,67997,satire,1283004271 +192560,67997,swearing,1283004266 +192560,68157,gratuitous violence,1251513433 +192560,68157,insults audience's intelligence,1252727504 +192560,68157,Nazis,1251466858 +192560,68157,satire,1252770084 +192560,68157,setting:movie cinema,1252727523 +192560,68157,typography is important to cinematography,1252727469 +192560,68159,adapted from:TV series,1241281968 +192560,68159,adultery,1241282126 +192560,68159,Bechdel Test:Pass (technically but not really),1241282126 +192560,68159,journalism,1241282126 +192560,68159,journalist as paragon,1241281994 +192560,68159,journalist as superhuman,1241281994 +192560,68159,murder,1241282126 +192560,68159,protagonist is journalist,1241282126 +192560,68159,setting:Washington DC,1241282126 +192560,68159,style:investigative/reportage procedural,1241282126 +192560,68159,subgenre:political corruption,1241282222 +192560,68159,theme:friendship/loyalty,1241282222 +192560,68159,topic:Blackwater/Cheney,1241282126 +192560,68159,topic:US political corruption,1241282470 +192560,68194,adapted from:book,1245446251 +192560,68194,based on true story,1245446251 +192560,68194,sport:soccer football,1245446251 +192560,68237,alter ego,1249785790 +192560,68237,Bechdel Test:Fail,1249785756 +192560,68237,compare:Moon (2009),1316992667 +192560,68237,death/fatality,1249785756 +192560,68237,dystopia,1249785756 +192560,68237,memory makes us who we are,1358039691 +192560,68237,related:2001,1249785790 +192560,68237,related:Blade Runner,1249785756 +192560,68269,Bechdel test:Pass,1263578461 +192560,68269,biographical view,1263578461 +192560,68269,character based on real person:Queen Victoria of UK,1269052071 +192560,68269,historically inaccurate,1263578461 +192560,68269,protagonist is royal,1269051911 +192560,68269,protagonist is young princess & heir,1269051911 +192560,68269,writer:Julian Fellowes,1263578461 +192560,68358,alternate reality,1241830096 +192560,68358,Bechdel Test:Pass (technically but not really),1241830613 +192560,68358,mass murder/terrorism,1242308942 +192560,68358,murder,1241830096 +192560,68358,odd-numbered ST movie,1368975920 +192560,68358,slashy,1241830096 +192560,68554,adapted from:book,1313375730 +192560,68554,author:Dan Brown,1313375730 +192560,68554,conspiracy theory,1367952906 +192560,68791,robots,1244035780 +192560,68793,animal:monkey,1243208231 +192560,68793,Bechdel Test:Fail,1243208231 +192560,68793,black and white characters interact with colour world,1243209793 +192560,68793,cameo:George Foreman,1243208312 +192560,68793,octopus as hero,1243208164 +192560,68793,Stiller&Wilson,1243210091 +192560,68954,Bechdel Test:Fail,1244813499 +192560,68954,death/fatality,1244496961 +192560,68954,disambiguation:Rise/Up,1245005557 +192560,68954,dogs,1244496961 +192560,68954,feel good movie,1244496961 +192560,68954,pathos,1244496961 +192560,68954,Pixar,1244813470 +192560,68954,plot point:fantasy ship made real,1244496961 +192560,68954,protagonist is boy scout,1244496961 +192560,68963,adapted from:play,1244911837 +192560,68963,playwright:Noel Coward,1244911837 +192560,69140,adapted from:play,1245418390 +192560,69140,cannibalism,1245418456 +192560,69140,playwright:Stephen Sondheim,1245418390 +192560,69140,serial killer,1245418469 +192560,69140,setting:London (UK),1245418615 +192560,69278,adapted from:TV series,1244910232 +192560,69278,Bechdel Test:Fail,1244910232 +192560,69278,dinosaurs,1244910232 +192560,69278,disgusting scenes,1244910232 +192560,69278,herds of CGI animals,1244910232 +192560,69278,music gags,1244910232 +192560,69278,warning:homophobia (mild),1244910232 +192560,69341,adapted from:book,1247070678 +192560,69341,alter ego,1247070678 +192560,69341,author:Robert Louis Stevenson,1247070678 +192560,69341,Jekyll and Hyde,1247070678 +192560,69341,serial killer,1247070678 +192560,69341,tale:Jekyll&Hyde,1344028000 +192560,69453,adapted from:book,1251678253 +192560,69453,author:Edgar Rice Burroughs,1251678242 +192560,69458,sport:boxing?,1275602890 +192560,69481,colonialism,1267398435 +192560,69481,overly simplistic,1267398435 +192560,69498,multiple short stories in one,1270267013 +192560,69498,vignettes,1270267018 +192560,69729,related:Sense and Sensibility (book),1247471865 +192560,69746,adapted from:comic,1247472875 +192560,69746,author:Alan Moore,1247472875 +192560,69746,related:Watchmen (2009),1247472875 +192560,69748,adapted from:comic,1247473023 +192560,69773,adapted from:book,1247472934 +192560,69773,author:Gustave Flaubert,1247472934 +192560,69784,tasteless,1255899922 +192560,69805,Bechdel Test:Fail,1334321988 +192560,69805,Dracula,1334321777 +192560,69805,librarians,1248119939 +192560,69805,murder,1355115651 +192560,69805,vampires,1334321784 +192560,69844,adapted from:book,1247845575 +192560,69844,author:J. K. Rowling,1247845575 +192560,69844,murder,1248552705 +192560,69860,Nazis,1284672841 +192560,69917,sport:ice hockey,1248119756 +192560,70015,based on a true story,1285697346 +192560,70015,murder,1285697353 +192560,70015,setting:Montreal,1285697332 +192560,70206,cat killing,1386521191 +192560,70293,blog,1260406431 +192560,70599,adapted from:book,1252291349 +192560,70663,adapted from:book,1270872000 +192560,70663,author:Larry Doyle,1270872000 +192560,70970,The Shoah,1343749691 +192560,70994,character:Michael Myers,1354407724 +192560,70994,murder,1354407724 +192560,70994,serial killer,1354407724 +192560,70994,subgenre:slasher,1354407724 +192560,71033,protagonist is writer,1279038568 +192560,71057,disambigutation:9/Nine,1262141031 +192560,71211,adapted from:book,1254007597 +192560,71211,author:Kurt Eichenwald,1254007597 +192560,71327,based on a true story,1255307420 +192560,71327,character based on a real person:John Keats,1255307420 +192560,71327,compare:Bright Star (2009),1255899220 +192560,71327,compare:Carrington (1995),1255899220 +192560,71327,protagoist is writer,1255899239 +192560,71500,serial killer,1271059526 +192560,71518,coming of age,1275602562 +192560,71518,setting:Texas,1275602562 +192560,71518,sport:roller derby,1275602562 +192560,71558,current,1255898086 +192560,71579,acting:Rosamund Pike is fab!,1265511686 +192560,71579,adapted from:book,1265511686 +192560,71579,adultery,1265511973 +192560,71579,Bechdel Test:Pass,1265511686 +192560,71579,biographical,1265511686 +192560,71579,coming of age,1265511973 +192560,71579,related:Charlotte Brontë's Jane Eyre,1265511686 +192560,71745,adapted from:book,1256245659 +192560,71745,author:Maurice Sendak,1256245678 +192560,71902,Bechdel Test:Fail,1271058961 +192560,72013,adapted from:book,1258408228 +192560,72013,author:Charles Dickens,1258408220 +192560,72013,bildungsroman,1270338916 +192560,72013,kuenstlerroman,1270339999 +192560,72018,serial killer,1257043061 +192560,72117,adapted from:book,1285873579 +192560,72117,author:Victor Hugo,1297783608 +192560,72294,adapted from:play,1258247459 +192560,72294,playwright:Charles Dickens,1258247459 +192560,72294,Xmas theme,1258247486 +192560,72395,adapted from:book,1268534588 +192560,72395,substantial changes from source of adaption,1268534891 +192560,72395,terrible casting,1268534588 +192560,72407,adapted from:book,1278121541 +192560,72407,author:Stephenie Meyer,1278121541 +192560,72634,Related:Hoop Dreams,1260364842 +192560,72720,adapted from:book,1265240074 +192560,72720,author:Christopher Isherwood,1265240064 +192560,72720,setting:LA,1265240107 +192560,72733,adapted from:book,1278555799 +192560,72733,author:John Carlin,1278555791 +192560,72733,sport:rugby football,1263235194 +192560,72921,adapted from:play,1340222277 +192560,72921,subgenre:fairy tale,1340222378 +192560,72921,tale:Snow White (A-T #709),1340222233 +192560,72998,colonialism,1267398272 +192560,72998,overly simplistic,1267398272 +192560,72998,Related:Pocahontas (1995),1267398214 +192560,72998,significant character in a wheelchair,1280887622 +192560,73000,adapted from B'way,1262492317 +192560,73000,disambigutation:9/Nine,1262140662 +192560,73000,remake of 8-and-a-half,1262140662 +192560,73000,SeeAlso:All That Jazz (1979),1262492405 +192560,73017,adapted from:book series,1270115718 +192560,73017,adapted from:comic,1270115756 +192560,73017,author:Arthur Conan Doyle,1270115718 +192560,73017,Bechdel Test:Fail,1324094087 +192560,73017,magic/illusion/mysticism,1270115776 +192560,73017,murder,1270118197 +192560,73017,pastiche,1270118197 +192560,73017,quick change artist,1324158778 +192560,73017,SequelTo:Sherlock Holmes (2009),1324094115 +192560,73017,Sherlock Holmes,1270115718 +192560,73017,subgenere:steampunk,1270115718 +192560,73017,subgenre:buddies,1270115718 +192560,73017,violent,1270123579 +192560,73027,adapted from:book,1278945284 +192560,73027,author:Jay Parini,1278945284 +192560,73042,adapted from:TV series,1262140475 +192560,73261,adapted from:book,1262492465 +192560,73261,author:Ernest Hemingway,1262492465 +192560,73266,adapted from:book series,1268666671 +192560,73266,author:C. D. Payne,1268666671 +192560,73323,adapted from:book,1295974789 +192560,73323,author:Stieg Larsson,1295974789 +192560,73370,TV miniseries,1351991078 +192560,73854,Xmas theme,1388278279 +192560,74089,adapted from:book,1265240322 +192560,74089,author:J.M. Barrie,1265240322 +192560,74282,Author:L.M. Montgomery,1399424326 +192560,74436,double feature,1266751339 +192560,74436,multiple short stories in one,1266751339 +192560,74446,adapted from:book,1266750807 +192560,74446,author:Arthur Conan Doyle,1266750807 +192560,74446,Sherlock Holmes,1266750784 +192560,74448,adapted from story -- not the same story,1266750764 +192560,74448,adapted from:book,1266750764 +192560,74448,author:Arthur Conan Doyle,1266750764 +192560,74448,Sherlock Holmes,1266750779 +192560,74471,adapted from:book,1266750508 +192560,74471,author:Arthur Conan Doyle,1266750508 +192560,74471,Sherlock Holmes,1266750463 +192560,74473,adapted from:book,1266750488 +192560,74473,author:Arthur Conan Doyle,1266750488 +192560,74473,Sherlock Holmes,1266750466 +192560,74508,adapted from:book,1266750147 +192560,74508,author:Jane Austen,1266750147 +192560,74789,3D,1268003732 +192560,74789,adapted from:book series,1268003800 +192560,74789,bellicose,1268003818 +192560,74789,brutal violence,1268003818 +192560,74789,cartoon cat,1268003816 +192560,74789,Depp & Burton,1268535164 +192560,74789,great visuals,1268003816 +192560,74789,substantial changes from source of adaption,1268003800 +192560,74789,WizardOfOz,1268003732 +192560,74868,adapted from:book,1269791651 +192560,74868,author:Oscar Wilde,1269791698 +192560,75977,adapted from:radio show,1271205066 +192560,75985,plot:Repossessed organs,1270115379 +192560,75990,adapted from:book,1271205016 +192560,75990,author:Mordecai Richler,1271205132 +192560,75990,setting:Montreal,1271205016 +192560,75992,adapted from:book,1270114931 +192560,75992,author:Fyodor Dostoyevsky,1270114931 +192560,76134,adapted from:book series,1270521745 +192560,76134,Basil Rathbone as Sherlock Holmes,1270521748 +192560,76134,Sherlock Holmes,1270521745 +192560,76251,adapted from:comic,1271205485 +192560,76251,violence,1385146815 +192560,76298,adapted from:book,1271204994 +192560,76873,assassin,1273281988 +192560,76873,revenge,1273282043 +192560,77141,adapted from:book,1273199728 +192560,77141,author:Ernest Hemingway,1273199728 +192560,77156,author:Sarah Waters,1354968175 +192560,77206,adapted from:book,1273199472 +192560,77357,related:Bananas!* (2009),1346684859 +192560,77357,related:Big Boys Gone Bananas!* (2011),1346684859 +192560,77561,adapted from:comic,1275602091 +192560,77798,character:Freddy Krueger,1354409418 +192560,77798,murder,1354409417 +192560,77798,serial killer,1354409417 +192560,77798,subgenre:slasher,1354409418 +192560,78174,adapted from:book,1275588197 +192560,78174,adapted from:TV series,1275588130 +192560,78174,author:Candace Bushnell,1275588197 +192560,78174,setting:Abu Dhabi,1275588221 +192560,78245,adapted from:play,1276135585 +192560,78245,playwright:Shakespeare,1276135585 +192560,78469,adapted from:TV series,1277836836 +192560,78490,adapted from:play,1277522986 +192560,78490,blackface,1277522955 +192560,78490,playwright:Shakespeare,1277522977 +192560,78612,blaxploitation,1277857314 +192560,78612,murder of a child,1277857258 +192560,78612,rape,1277857242 +192560,78723,adapted from:book,1278121426 +192560,78723,author:Charles Dickens,1278121426 +192560,78772,adapted from:book,1278121451 +192560,78772,author:Stephenie Meyer,1278121451 +192560,78893,Avatar trilogy,1278366532 +192560,78949,author:H. P. Lovecraft,1281962791 +192560,78965,Bechdel Test:Fail,1278592706 +192560,78965,concert footage,1278592706 +192560,78965,nudity,1278592706 +192560,78967,adapted from:book,1278593152 +192560,78967,author:H. G. Wells,1278593152 +192560,79008,adapted from:TV series,1279395454 +192560,79008,Based on a TV series,1279395542 +192560,79091,3D,1279244925 +192560,79091,Bechdel Test:Fail,1279244950 +192560,79091,father-son relationship,1279244936 +192560,79091,parent-children relationship,1279244925 +192560,79247,adapted from:book,1279808440 +192560,79247,author:H. G. Wells,1279808802 +192560,79247,author:Mary Shelley,1279808440 +192560,79247,death/fatality,1279808416 +192560,79249,adapted from:book,1279808767 +192560,79249,author:H. G. Wells,1279808767 +192560,79287,adapted from:book,1280045930 +192560,79287,author:Frank Baum,1280045930 +192560,79287,seeAlso:The Wizard of Oz (1939),1362778614 +192560,79293,alter ego,1280093485 +192560,79293,animal:dog,1280093327 +192560,79293,animal:spider,1280093327 +192560,79293,Bechdel Test:Pass (technically but not really),1280093371 +192560,79293,espionage,1280093327 +192560,79293,murder,1280093327 +192560,79293,setting:NYC,1280093352 +192560,79293,setting:Washington DC,1280093352 +192560,79293,sleeper agent,1280093327 +192560,79293,spy on the run,1334773540 +192560,79293,US President,1280093352 +192560,79299,adapted from:book,1280045874 +192560,79299,author:Alexander McCall Smith,1280045874 +192560,79428,adultery,1281558529 +192560,79428,animal:cat,1281369873 +192560,79428,animal:goat,1281318720 +192560,79428,animal:mouse,1281318720 +192560,79428,Bechdel Test:Fail,1281318639 +192560,79428,climbing the corporate ladder,1281369882 +192560,79428,deception to win wager,1317744595 +192560,79428,lousy cinematography,1281319928 +192560,79428,machismo,1281318838 +192560,79428,miniature sets,1281318735 +192560,79428,painfully heteronormative,1281318639 +192560,79428,plot:wager,1317744463 +192560,79428,protagonist is an artist,1281318720 +192560,79428,protagonist is an idiot,1281318720 +192560,79428,punning,1281369782 +192560,79428,RemadeAs:Dinner for Shmucks (2010),1281369824 +192560,79428,remake of a french film,1281318720 +192560,79428,RemakeOf:The Dinner Game (1989),1281369873 +192560,79473,missing/kidnapped child,1303304940 +192560,79528,adapted from:book,1280926083 +192560,79528,author:Robert Louis Stevenson,1280926083 +192560,79561,adapted from:book,1281098841 +192560,79561,author:H. G. Wells,1281098841 +192560,79860,adapted from:book,1343748297 +192560,79860,author:Mario Giordano,1343748297 +192560,79879,death/fatality,1283004097 +192560,79977,Anglo-Indian relations,1296487135 +192560,79977,natural disaster,1337487572 +192560,80022,adapted from:book,1383526259 +192560,80022,adapted from:play,1383526259 +192560,80022,author:W. Somerset Maugham,1383526259 +192560,80022,SeeAlso:Miss Sadie Thompson (1953),1383526259 +192560,80044,adapted from:book,1284414129 +192560,80044,author:Cervantes,1284414129 +192560,80363,adapted from:video game,1284414166 +192560,80463,adapted from:book,1286549257 +192560,80463,based on true story,1286549257 +192560,80463,Bechdel Test:Fail,1286022669 +192560,80463,protagonist is a computer programmer,1286549314 +192560,80463,setting:Harvard University,1286549278 +192560,80463,setting:Palo Alto (CA/USA),1286549289 +192560,80748,adapted from:book,1285781872 +192560,80748,author:Lewis Carroll,1285781872 +192560,80831,adapted from:book,1286123996 +192560,80831,author:John Ajvide Lindqvist,1286124075 +192560,80831,remake of a Swedish film,1286022547 +192560,80831,remake of Let The Right One In (2008),1286022510 +192560,80864,adultery,1294285828 +192560,80864,Bechdel Test:Pass,1294315053 +192560,80864,setting:London (UK),1294285828 +192560,81229,assassin,1287836407 +192560,81229,Bechdel Test:Fail,1287836444 +192560,81229,CIA comedy,1287965544 +192560,81229,murder,1287836407 +192560,81229,retired spy being hunted,1287836407 +192560,81229,retirees,1287836407 +192560,81229,US VP,1287836477 +192560,81562,mountain climbing,1367952970 +192560,81591,alter ego,1293418073 +192560,81591,creepy,1293418019 +192560,81591,madness,1293418048 +192560,81591,protagonist is a dancer,1293418048 +192560,81591,protagonist is a performer,1293418048 +192560,81784,Bechdel Test:Pass,1306902345 +192560,81784,setting:TV network,1306902434 +192560,81784,setting:TV show,1306902434 +192560,81784,weather reporter as protagonist,1306902412 +192560,81845,based on a true story,1293418200 +192560,81845,Bechdel Test:Pass (barely),1293418509 +192560,81845,death/fatality,1293420736 +192560,81845,father-son relationship,1293418166 +192560,81845,protagonist is a therapist,1293418284 +192560,81845,protagonist is royal,1293418284 +192560,81845,setting:London (UK),1293418229 +192560,81845,speech impediment,1293418166 +192560,81845,therapy,1293418166 +192560,81847,adapted from:book,1290871214 +192560,81847,animated animal:chameleon,1290809607 +192560,81847,animated animal:horse,1290809607 +192560,81847,animated hair,1290809607 +192560,81847,Bechdel Test:Pass,1290810221 +192560,81847,death/fatality,1290809607 +192560,81847,reference:Blade Runner,1290871134 +192560,81847,story:Rapunzel,1290871157 +192560,81847,subgenre:fairy tale,1290871214 +192560,82169,adapted from:book,1291524313 +192560,82169,author:C.S. Lewis,1291524331 +192560,82242,Xmas theme?,1293630596 +192560,82461,alter ego,1293418378 +192560,82461,Bechdel Test: Fail,1293418406 +192560,82461,death/fatality,1293420705 +192560,82461,murder,1293420705 +192560,82461,relaunch,1293418378 +192560,82461,sequel,1293418378 +192560,82461,setting:in computer,1293418378 +192560,82527,adapted from:book,1293630480 +192560,82527,author:Mordecai Richler,1293418748 +192560,82722,adapted from:book,1294073431 +192560,82722,author:Patricia MacLachlan,1294073390 +192560,82854,adapted from:book,1293630367 +192560,82854,author:Jonathan Swift,1293630367 +192560,82928,nuns,1303305574 +192560,83034,adapted from:play,1293817449 +192560,83034,playwright:Arthur Miller,1293817449 +192560,83132,adapted from:book,1339815537 +192560,83132,author:Mary Norton,1339815572 +192560,83177,adapted from:cartoon,1294073267 +192560,83270,based on a true story,1294327560 +192560,83270,Bechdel Test:Pass,1294315022 +192560,83270,death/fatality,1294315122 +192560,83270,saccharine,1294315184 +192560,83270,setting:factory,1294315023 +192560,83270,setting:UK factory,1294315023 +192560,83270,suicide,1294315122 +192560,83270,topic:human rights,1294315023 +192560,83270,topic:sexism,1294315023 +192560,83300,Xmas theme,1294523030 +192560,83349,"""hero"" is murderer",1307434777 +192560,83349,adapted from:radio play,1307434828 +192560,83349,anti-hero,1307434778 +192560,83349,Bechdel Test:Fail,1307434778 +192560,83349,murder,1307434777 +192560,83349,sexist,1307434750 +192560,83829,motorcycle,1301554133 +192560,83829,queer,1301554133 +192560,83829,sexuality:BDSM,1301554133 +192560,84250,Xmas theme(?),1297396853 +192560,84832,adapted from:book,1299339526 +192560,84832,author:Cervantes,1299339526 +192560,84954,adapted from:book,1313855793 +192560,84954,author:Philip K. Dick,1313855793 +192560,84954,Bechdel Test:Fail,1313855948 +192560,84954,doors as portals,1313855793 +192560,84954,premonition/fate,1313855793 +192560,84954,protagonist is a dancer,1313855834 +192560,84954,protagonist is a performer,1313855834 +192560,84954,protagonist is a politician,1313855834 +192560,84957,adapted from:play,1299717883 +192560,84957,natural disaster,1337488343 +192560,84957,playwright:Shakespeare,1299717883 +192560,85414,Bechdel Test:Fail,1316992716 +192560,85414,compare:Minority Report (2002),1316992802 +192560,85414,compare:Moon (2009),1316992716 +192560,85414,compare:Premonition (2007),1317653536 +192560,85414,Compare:Run Lola Run (1998),1317078132 +192560,85414,joke about rape,1317078421 +192560,85414,mostly about a single day,1316992875 +192560,85414,murder,1316992875 +192560,85414,time,1316992875 +192560,85414,time loop,1316992875 +192560,85438,adapted from:book,1302862297 +192560,85438,author:Charlotte Brönte,1303955941 +192560,85438,gothic,1303955941 +192560,85438,See also:Rebecca,1303955963 +192560,85438,See also:Secretary,1303955963 +192560,85510,Bechdel Test:Pass,1311770137 +192560,85510,murder,1311770177 +192560,85510,setting:asylum,1311770164 +192560,85510,setting:brothel,1311770164 +192560,86332,adapted from:comic,1304823627 +192560,86355,adapted from:book,1303958387 +192560,86355,author:Ayn Rand,1303958377 +192560,86829,adapted from:play,1305378353 +192560,86829,ghosts/afterlife,1305378385 +192560,86829,murder,1305378386 +192560,86829,playwright:Shakespeare,1305378353 +192560,86864,subgenre:Kaiju,1371785746 +192560,86880,adapted from:book(spinoff),1306006808 +192560,86880,Bechdel Test:Fail,1306000464 +192560,86880,cameo:Judy Dench,1306006670 +192560,86880,cameo:Keith Richards,1306006670 +192560,86880,death/fatality,1306006670 +192560,86880,father daughter relationship,1306006714 +192560,86880,magic,1306006670 +192560,86880,misogynistic,1306006670 +192560,86880,murder,1306006670 +192560,86880,revenge,1306006714 +192560,86982,subgenre:Kaiju,1371785755 +192560,87232,adapted from:comic,1307833392 +192560,87260,adapted from:book,1307365355 +192560,87260,author:E.W. Hornung,1307365355 +192560,87308,adapted from:book,1308344519 +192560,87430,adapted from:comic,1307833329 +192560,87433,subgenre:Kaiju,1371785718 +192560,87485,protagonist is a teacher,1315922362 +192560,88125,author:J. K. Rowling,1310844488 +192560,88140,adapted from:comic,1311769858 +192560,88140,Bechdel Test:Fail,1311769691 +192560,88163,"""testosterone poisoning""",1312856293 +192560,88163,adultery,1312856271 +192560,88163,Bechdel Test:Fail,1312856130 +192560,88163,homophobic,1312856130 +192560,88163,masculinity through dress,1312856591 +192560,88163,men being taught how to woo,1312856409 +192560,88163,mentor/trainer,1312856352 +192560,88163,See:Dirty Dancing (1987),1312856551 +192560,88766,author:Sholom Aleichem,1315072683 +192560,88810,author:Kathryn Stockett,1315072813 +192560,88810,Bechdel Test:Pass,1315072816 +192560,88810,death/fatality,1315072779 +192560,88810,protagonist is servant,1315072940 +192560,88810,protagonist is writer,1315072960 +192560,88810,racism,1315072780 +192560,88810,setting:1960s,1315072898 +192560,88810,setting:Jacksonville (MI),1315072891 +192560,88810,setting:USA,1315072904 +192560,88810,upstairs-downstairs,1315073135 +192560,88954,Xmas,1313681433 +192560,89118,adapted from:book,1321896536 +192560,89118,death/fatality,1321896599 +192560,89118,physician as protagonist,1321896819 +192560,89118,protagonist is a surgeon,1321896807 +192560,89732,character:Bulldog Drummond,1346602820 +192560,89745,disambiguation:The Avengers (1998)/(2012),1343054163 +192560,89753,adapted from:book,1316697060 +192560,89753,author:John le Carré,1316697159 +192560,89753,author:John le Carré (David John Moore Cornwell),1316697255 +192560,89753,espionage,1324158570 +192560,89761,adapted from:book,1327628997 +192560,89761,adapted from:book & play,1327628997 +192560,89761,adapted from:play,1327632368 +192560,89761,adultery,1327628913 +192560,89761,biopic,1327628941 +192560,89761,sexuality:BDSM,1327628913 +192560,90249,android(s)/cyborg(s),1318357444 +192560,90249,sport:boxing,1318357444 +192560,90403,adapted from:book,1319213207 +192560,90403,author:Dumas,1319213207 +192560,90405,scifi re aging,1319213281 +192560,90645,historically inaccurate,1327406703 +192560,90746,adapted from:book series,1327360851 +192560,90746,animal:dog,1327360861 +192560,90746,protagonist is a journalist,1327360869 +192560,90819,pre-code Hollywood,1371130053 +192560,90819,subgenre:success tragedy,1371130054 +192560,90866,3D,1323657519 +192560,90866,adapted from:book,1323657448 +192560,90866,android(s)/cyborg(s),1323657536 +192560,90866,animal:dog,1323657473 +192560,90866,Bechdel Test:Pass,1323657484 +192560,90866,cameo:Martin Scorsese,1323657498 +192560,90866,cinema history,1323657556 +192560,90866,clockwork devices,1323657549 +192560,90866,heavy-handed and plodding,1323657433 +192560,90866,orphans,1323657441 +192560,90866,set:mechanical gearworks,1323657785 +192560,90866,setting:Paris,1323657467 +192560,90866,setting:train station,1323657458 +192560,90868,adapted from:book,1343749890 +192560,90868,author:Carolyn S. Briggs,1343749890 +192560,91035,adapted from:book,1321728018 +192560,91094,Bechdel Test:Fail,1322761109 +192560,91094,cameo-fest,1322711173 +192560,91094,good once but doesn't stand up to further viewing,1322711192 +192560,91094,setting:LA,1322711173 +192560,91094,setting:Paris,1322711173 +192560,91104,adapted from:book,1390921502 +192560,91126,animal:horse,1326591931 +192560,91134,acting,1327978046 +192560,91134,adapted from:book,1327978046 +192560,91134,based on true story,1327978046 +192560,91134,biopic,1327978046 +192560,91134,character based on real person:Laurence Olivier,1327978046 +192560,91134,character based on real person:Marilyn Monroe,1327978046 +192560,91134,character based on real person:Vivian Leigh,1327978046 +192560,91134,Hollywood,1327978046 +192560,91134,movie business,1327978046 +192560,91134,setting:England,1327978045 +192560,91414,Xmas theme,1322924383 +192560,91442,adapted from:play,1323626237 +192560,91442,playwright:Shakespeare,1323626237 +192560,91500,adapted from:book,1332549148 +192560,91500,bow & arrow,1351991002 +192560,91500,murder,1351990995 +192560,91529,dark hero,1367952680 +192560,91529,murder,1343052968 +192560,91535,agent/assassin with false memories/amnesia,1358039533 +192560,91535,living a fictional life,1352827841 +192560,91542,adapted from:book series,1324094197 +192560,91542,animal:dog,1324093899 +192560,91542,animal:donkey,1324093899 +192560,91542,animal:horse,1324093899 +192560,91542,assassin,1324093899 +192560,91542,author:Arthur Conan Doyle,1324094197 +192560,91542,Bechdel Test:Fail,1324093833 +192560,91542,gender disguise,1324094013 +192560,91542,great cinematography,1324093835 +192560,91542,murder,1324093898 +192560,91542,private detective,1324093899 +192560,91542,quick change artist,1324093899 +192560,91542,SequelTo:Sherlock Holmes (2009),1324094178 +192560,91542,setting:Paris,1324093899 +192560,91542,setting:Victorian England,1324093899 +192560,91542,subgenre:buddies,1324093899 +192560,91630,Bechdel Test:Fail,1337713000 +192560,91630,murder,1337712993 +192560,91658,adapted from:book,1323974295 +192560,91658,americanized movie,1327406637 +192560,91658,murder,1327406658 +192560,91658,rape,1327406660 +192560,91658,remake of a Swedish film,1327406652 +192560,91658,serial killer,1327406662 +192560,91786,adapted from:game,1324396544 +192560,91786,death/fatality,1327099369 +192560,91786,father-daughter relationship,1327099427 +192560,91786,plot point:solving riddles/puzzles,1327099404 +192560,91786,sexist,1327099369 +192560,91976,stranded,1367952625 +192560,92008,Bechdel Test:Fail,1334773479 +192560,92008,espionage,1334773492 +192560,92008,murder,1334773929 +192560,92008,spy on the run,1334773492 +192560,92214,natural disaster,1337487700 +192560,92255,nuns,1334321509 +192560,92507,Bechdel Test:Fail,1330691278 +192560,92507,conspiracy,1330691342 +192560,92507,espionage,1330691278 +192560,92507,murder,1330691278 +192560,92507,setting:South Africa,1330767864 +192560,92507,utterly predictable,1330691294 +192560,92518,subgenre:Kaiju,1371785813 +192560,92643,adapted from:book,1327977894 +192560,92643,children,1327977894 +192560,92643,classroom drama,1327977894 +192560,92643,death/fatality,1327977894 +192560,92643,protagonist is a refugee,1327977894 +192560,92643,protagonist is a teacher,1327977894 +192560,92643,setting:Montreal,1327977894 +192560,92643,suicide,1327977894 +192560,92681,not based on a book,1328240532 +192560,93191,Xmas theme,1330691098 +192560,93208,adapted from:book,1331178098 +192560,93208,author:Mark Twain [Samuel Clemens],1331178098 +192560,93272,adapted from:book,1331640837 +192560,93272,author:Dr. Seuss,1331640837 +192560,93322,adapted from:book,1332549108 +192560,93322,author:Cervantes,1332549107 +192560,93363,adapted from:book,1331399430 +192560,93363,author:Edgar Rice Burroughs,1331399430 +192560,93443,sport:hockey,1331640734 +192560,93443,sport:ice hockey,1331640734 +192560,93840,death/fatality,1343246224 +192560,93842,adapted from:book,1338473689 +192560,93842,author:David Foenkinos,1338473689 +192560,93865,adapted from:book,1344126432 +192560,94015,adapted from:book,1340222542 +192560,94015,awful ending,1340222603 +192560,94015,beautiful,1340222587 +192560,94015,Bechdel Test:Pass (barely),1340222079 +192560,94015,death/fatality,1340222068 +192560,94015,masculine power vs. feminine power,1340222096 +192560,94015,subgenre:fairy tale,1340222542 +192560,94015,tale:Snow White (A-T #709),1340222205 +192560,94150,based on a true story,1338121342 +192560,94150,Bechdel Test:Pass (barely),1338089761 +192560,94150,glib,1338121317 +192560,94150,lacking necessary subtlety,1338121317 +192560,94150,preachy,1338089761 +192560,94150,protagonist is medical doctor,1338121333 +192560,94150,sexuality,1338089761 +192560,94160,adapted from:poem,1335363717 +192560,94431,adapted from:book,1336927270 +192560,94431,author:George L. Du Maurier,1336927264 +192560,94482,documentary critique,1346685022 +192560,94482,related:Bananas!* (2009),1346684851 +192560,94482,related:Big Boys Gone Bananas!* (2011),1346684851 +192560,94482,See Also:This Film Is Not Yet Rated (2006),1346684955 +192560,94482,Why the terrorists hate us,1349666405 +192560,94750,adapted from:book,1337864511 +192560,94777,Bechdel Test:Fail,1338679500 +192560,94777,character based on real person:Andy Warhol,1338679878 +192560,94777,memory,1338679442 +192560,94777,murder,1338679499 +192560,94777,secret gov't agency works with and hides aliens,1338679838 +192560,94777,time travel,1338679428 +192560,94777,vehicle:motorized monocycle,1338741805 +192560,94780,adapted from:book,1338915802 +192560,94780,animal:bird,1351990483 +192560,94780,animal:horse,1351990475 +192560,94780,band of little people,1351990509 +192560,94780,beautiful cinematography,1351990419 +192560,94780,Bechdel Test:Pass,1351990721 +192560,94780,bow & arrow,1351990576 +192560,94780,directorial debut,1351990962 +192560,94780,epic,1351990557 +192560,94780,magic,1351990537 +192560,94780,murder,1351990447 +192560,94780,notable:beautiful forest (scene),1351990466 +192560,94780,setting:castle,1351990543 +192560,94780,setting:forest,1351990550 +192560,94780,subgenre:fairy tale,1340222404 +192560,94780,sword battle,1351990569 +192560,94780,tale:Snow White (A-T #709),1340222307 +192560,94780,theme:female power,1351990532 +192560,94864,sequel bait,1344458298 +192560,94945,murder,1339164529 +192560,95018,adapted from:play,1339425878 +192560,95018,playwright:Oscar Wilde,1339425878 +192560,95023,adapted from:book,1339425836 +192560,95105,Bechdel Test:Fail,1341365119 +192560,95105,seting:Monte Carlo,1341365119 +192560,95105,setting:casino,1341365119 +192560,95105,setting:circus,1341365119 +192560,95167,Bechdel Test:Pass,1341364989 +192560,95167,coming of age,1341365170 +192560,95167,father-daughter relationship,1341365170 +192560,95167,mother-daughter relationships,1341365170 +192560,95185,adapted from:book series,1340280723 +192560,95185,animal:dog,1343841443 +192560,95185,author:Leslie Thomas,1343841670 +192560,95185,character:Dangerous Davies,1340280713 +192560,95185,humiliation as humour,1340281002 +192560,95185,murder,1340280693 +192560,95185,snuff,1340280689 +192560,95185,subgenre:police detective,1340281012 +192560,95199,adapted from:book(spinoff),1344530364 +192560,95207,adapted from:book,1343054406 +192560,95207,author:Seth Grahame-Smith,1343054406 +192560,95230,protagonist is actor,1340813599 +192560,95313,related:The Incredibles (2004),1344125900 +192560,95352,adapted from:book,1341875066 +192560,95352,alter ego,1341875079 +192560,95352,author:Robert Louis Stevenson,1341875066 +192560,95560,adapted from:book,1343841625 +192560,95560,author:Leslie Thomas,1343841625 +192560,95560,character:Dangerous Davies,1341500616 +192560,95560,rape,1341500616 +192560,95560,subgenre:police detective,1343841633 +192560,95615,adapted from:play,1342146541 +192560,95615,playwright:Molière,1342146542 +192560,95670,comedy about witness protection/relocation,1343245532 +192560,95670,witness protection programme,1343245715 +192560,95748,author:Herman Melville,1343053007 +192560,95756,adapted from:book,1342639279 +192560,95756,author:Dr. Seuss,1342639279 +192560,95765,adapted from:book,1343306216 +192560,95765,author:Dr. Seuss,1343306216 +192560,95837,Xmas theme,1343052918 +192560,95839,adapted from:play,1343052911 +192560,95839,playwright:Charles Dickens,1343052911 +192560,95839,Xmas theme,1343052911 +192560,95875,adapted from:book,1343306173 +192560,95875,agent/assassin with false memories/amnesia,1358039267 +192560,95875,author:Philip K. Dick,1343306173 +192560,95875,Bechdel Test:Fail,1357615577 +192560,95875,DVD:commentary in dual windows,1357615734 +192560,95875,dystopia,1352827396 +192560,95875,innocent person on the run,1357615577 +192560,95875,killer-as-protagonist,1357615660 +192560,95875,living a fictional life,1352827430 +192560,95875,mars,1367952652 +192560,95875,memory,1352827488 +192560,95875,memory makes us who we are,1358039330 +192560,95875,murder,1352827414 +192560,95875,pretend wife,1357615577 +192560,95875,spy on the run,1357615660 +192560,96022,adapted from:comic,1343921701 +192560,96052,adapted from:book,1344017519 +192560,96052,author:Aesop,1344017518 +192560,96052,subgenre:fable,1344017519 +192560,96062,adapted from:book,1344027864 +192560,96062,alter ego,1344027863 +192560,96062,author:Robert Louis Stevenson,1344027863 +192560,96062,murder,1344027863 +192560,96062,tale:Jekyll&Hyde,1344027893 +192560,96075,adapted by:Andrew Davies,1344125664 +192560,96075,adapted from:book,1344125664 +192560,96075,author:Charles Dickens,1344125664 +192560,96075,Bechdel Test:Pass,1344125664 +192560,96075,death/fatality,1344530407 +192560,96075,ensemble cast,1344125664 +192560,96075,murder,1344530407 +192560,96079,007 (series),1344274521 +192560,96079,Bechdel Test:Fail,1352735523 +192560,96079,mental illness,1352686204 +192560,96079,motorcycle,1352735514 +192560,96079,murder,1352686204 +192560,96079,setting Scottish Moors,1352686252 +192560,96079,setting:London (UK),1352686252 +192560,96079,setting:Scotland,1352686252 +192560,96079,setting:Turkey,1352686252 +192560,96079,spy with booby-trapped house,1352735530 +192560,96239,rape,1345041711 +192560,96347,character:Inspector Morse,1348483786 +192560,96347,murder,1348483786 +192560,96347,subgenre:police detective,1348483807 +192560,96471,homophobia,1346465583 +192560,96471,murder,1346465481 +192560,96471,rape of child,1346465568 +192560,96471,subgenre:police detective,1346465481 +192560,96471,subgenre:police procedural,1346465491 +192560,96473,murder,1346465808 +192560,96473,subgenre:police detective,1346465808 +192560,96473,subgenre:police procedural,1346465808 +192560,96486,murder,1346557814 +192560,96486,subgenre:police detective,1346557814 +192560,96486,subgenre:police procedural,1346557814 +192560,96490,Jewish mysticism,1359224201 +192560,96518,subgenre:police detective,1346686495 +192560,96518,subgenre:police procedural,1346686495 +192560,96520,subgenre:police detective,1346686695 +192560,96520,subgenre:police procedural,1346686695 +192560,96610,Bechdel Test:Fail,1359224437 +192560,96610,dystopian,1359224601 +192560,96610,killer as protagonist,1359224516 +192560,96610,memory,1359224503 +192560,96610,murder,1359224489 +192560,96610,organized crime,1359224447 +192560,96610,painfully heteronormative,1359429611 +192560,96610,paranormal,1359224532 +192560,96610,setting:Kansas,1359224470 +192560,96610,setting:Shanghai,1359224470 +192560,96610,suicide,1359224485 +192560,96610,time travel,1359224476 +192560,96610,tragedy,1359224494 +192560,96610,utterly pedestrian cinematography,1359429717 +192560,96610,violent,1359224478 +192560,96737,?android/cyborgs,1359224306 +192560,96737,Dystopia,1359224246 +192560,96737,murder,1359224253 +192560,96737,police,1359224272 +192560,96737,subgenre:buddies,1359224266 +192560,97397,biography,1350242403 +192560,97397,topic:propaganda,1350242402 +192560,97673,7n Up (series),1350955254 +192560,97752,adapted from:book,1351184730 +192560,97752,author:David Mitchell,1351184730 +192560,97763,topic:euthanasia,1351443240 +192560,97763,topic:suicide,1351443240 +192560,97921,mental illness,1352686124 +192560,97936,adapted from:book,1351909490 +192560,97936,author:Leo Tolstoy,1351909642 +192560,97938,adapted from:book,1352735342 +192560,97938,animal:tiger (CGI),1356450074 +192560,97938,author:Yann Martel,1351990315 +192560,97938,beautiful cinematography,1366462795 +192560,97938,stranded,1367952625 +192560,97940,adapted from:book,1351909569 +192560,97940,author:Leslie Charteris,1351909569 +192560,97940,The Saint (series),1351909569 +192560,98203,adapted from:book,1390921513 +192560,98415,playwright:Thorton Wilder,1354023402 +192560,98699,Xmas theme,1355343326 +192560,98809,adapted from:book,1355343294 +192560,98809,author:J. R. R. Tolkein,1355343294 +192560,99043,adapted from:book,1356230852 +192560,99043,author:Thomas Hardy,1356230848 +192560,99114,bounty hunter,1359224407 +192560,99114,murder,1359224407 +192560,99114,topic:racism,1359224407 +192560,99114,topic:slavery,1359224407 +192560,99114,violence,1356736888 +192560,99149,"""singing by non-singers"" in The NYer 24/31 Dec 2012",1356231573 +192560,99149,adapted from:B'way,1356231479 +192560,99149,adapted from:book,1356231479 +192560,99149,author:Alain Boublil,1356231479 +192560,99149,author:Claude-Michel Schönberg,1356231479 +192560,99149,author:James Fenton,1356231479 +192560,99149,author:Jean-Marc Natel,1356231478 +192560,99149,author:Victor Hugo,1356231478 +192560,99149,screenwriter:William Nicholson,1356231479 +192560,99238,adapted from:book,1356449624 +192560,99238,author:Henry James,1356449624 +192560,100390,Compare:Planes Trains and Automobiles (1987),1360588656 +192560,100390,subgenre:screwball,1360588581 +192560,100408,adapted from:video game,1360588715 +192560,100629,adapted from:play,1361764715 +192560,100629,playwright:Arthur Miller,1361764715 +192560,101112,seeAlso:The Wizard of Oz (1939),1362778586 +192560,101112,WizardOfOz,1362778753 +192560,101233,adapted from:play,1363179320 +192560,101233,playwright:Tennessee Williams,1363179320 +192560,101235,adapted from:book,1363179265 +192560,101235,author:F. Scott Fitzgerald,1363179265 +192560,101355,adapted from:book,1363635054 +192560,101355,author:John Norman,1363635054 +192560,101747,subgenre:Kaiju,1371785728 +192560,102005,beautiful cinematography,1366462692 +192560,102005,infidelity,1366462692 +192560,102005,theme:lying,1366462885 +192560,102025,subgenre:Kaiju,1371785736 +192560,102407,adapted from:book,1368575704 +192560,102407,author:F. Scott Fitzgerald,1368575704 +192560,102445,Bechdel Test:Fail,1369605950 +192560,102445,cameo:Leonard Nimoy,1369605713 +192560,102445,character:Carol Marcus,1369605630 +192560,102445,character:Khan,1368975351 +192560,102445,death/fatality,1369605889 +192560,102445,derivative,1369605700 +192560,102445,even-numbered ST movie,1368978136 +192560,102445,mass murder/terrorism,1369605883 +192560,102445,setting:Jupiter,1369605844 +192560,102445,setting:Kronos,1369605850 +192560,102445,setting:London (UK) (future),1369605837 +192560,102445,setting:San Francisco (future),1369605825 +192560,102541,adapted from:play,1369272163 +192560,102541,playwright:Shakespeare,1369272163 +192560,102758,adapted from:book,1369761550 +192560,102758,author:Ursula K. Le Guin,1369761550 +192560,102781,adapted from:play,1369606033 +192560,102781,playwright:Shakespeare,1369606062 +192560,103027,adapted from:play,1370647820 +192560,103027,playwright:Shakespeare,1370647820 +192560,103027,purposefully bad acting,1370647820 +192560,103027,setting:Southern California,1370647849 +192560,103027,Shakespeare in modern dress,1370647982 +192560,103027,Shakespeare with American accents,1370647966 +192560,103141,Bechdel Test:Fail,1373076439 +192560,103141,setting:College,1373076439 +192560,103182,adapted from:play,1371399403 +192560,103182,playwright:Shakespeare,1371399403 +192560,103228,subgenre:Kaiju,1371786101 +192560,103598,adapted from:play,1374460088 +192560,103598,playwright:Shakespeare,1374460088 +192560,103604,adapted from:book series,1373982228 +192560,103604,author:Charles Bukowski,1373982239 +192560,103683,adapted from:play,1374460043 +192560,103683,playwright:Shakespeare,1374460043 +192560,104074,adapted from:book,1375984595 +192560,104074,author:Rick Riordan,1376319622 +192560,104093,adapted from:book,1375984260 +192560,104093,author:Yasmina Khadra,1375984260 +192560,104093,banned,1375984039 +192560,104093,murder,1375984043 +192560,104093,protagonist is medical doctor,1375984090 +192560,104093,setting:Israel,1375984111 +192560,104093,setting:Tel Aviv,1375984111 +192560,104093,terrorism,1375984053 +192560,104095,migraine headache,1375984433 +192560,104095,short film,1375984433 +192560,104119,adapted from:book series,1376085922 +192560,104119,adultery,1390921561 +192560,104119,author:John Galsworthy,1376085922 +192560,104119,death/fatality,1390921569 +192560,104119,father-daughter relationship,1390921557 +192560,104119,father-son relationship,1390921546 +192560,104119,great dialogue,1377911501 +192560,104119,made for TV,1376085943 +192560,104119,melodrama,1376085922 +192560,104119,nouveau riche,1376085922 +192560,104272,animal:orca,1377034880 +192560,104272,death/fatality,1377034880 +192560,104272,emotional,1377122258 +192560,104272,horrifying (but not Horror genre),1377122252 +192560,104272,setting:SeaWorld (FL),1377122237 +192560,104841,setting:space,1379088388 +192560,104863,SeeAlso:When Harry Met Sally (1989),1379088181 +192560,104863,source:Pygmalion myth,1379088181 +192560,105357,rape,1381048806 +192560,105465,adapted from:book,1381316351 +192560,105465,author:Lewis Caroll (Charles Lutwidge Dodgson),1381316350 +192560,105509,adapted from:book,1381789551 +192560,105509,author:Victor Hugo,1381789551 +192560,105509,setting:France,1381789569 +192560,105540,adapted from:play,1381789485 +192560,105540,author:Charles Dickens,1381789485 +192560,105597,adapted from:play,1382023468 +192560,105597,playwright:Shakespeare,1382023468 +192560,105968,adapted from:play,1383251359 +192560,106002,adapted from:book series,1383246220 +192560,106028,remake of:The Front Page (1931),1383365815 +192560,106100,topic:AIDS/HIV,1383677672 +192560,106100,topic:homophobia,1383677672 +192560,106188,adapted from:play,1383923189 +192560,106234,adapted from:book,1384275509 +192560,106234,author:Charles Dickens,1384275529 +192560,106234,bildungsroman,1384275609 +192560,106334,adapted from:play,1384687384 +192560,106334,playwright:Shakespeare,1384687384 +192560,106441,adapted from:book,1385485899 +192560,106441,setting:Nazi Germany,1385485899 +192560,106489,adapted from:book,1385520857 +192560,106489,author:J. R. R. Tolkein,1385520857 +192560,106489,not true to the book,1403894697 +192560,106493,adapted from:book,1385520906 +192560,106493,author:Nathaniel Hawthorne,1385520906 +192560,106642,3D,1385479653 +192560,106642,ensemble cast,1385485754 +192560,106642,protagonist is royal,1385485754 +192560,106642,setting:England 1500s,1385485754 +192560,106642,setting:Gallifrey,1385485772 +192560,106642,setting:London (UK),1385485754 +192560,106642,time travel,1385485754 +192560,106745,adapted from:book,1386080872 +192560,106745,author:Albert Camus,1386080872 +192560,106920,dystopia,1403618809 +192560,106920,horrifying (but not Horror genre),1403618838 +192560,107013,Xmas theme,1387509489 +192560,107075,Xmas theme,1387053091 +192560,107117,"quote:""dickheads""",1387509443 +192560,107117,unrepentant cheating liar,1387509419 +192560,107141,protagonist is a writer,1386952653 +192560,107141,SeeAlso:Mary Poppins,1386952642 +192560,107217,adapted from:play,1387206401 +192560,107217,Xmas theme,1387206412 +192560,107449,Xmas theme,1387985172 +192560,107563,Xmas theme?,1388252792 +192560,107614,adultery,1388278536 +192560,107614,satire,1388278444 +192560,107614,Xmas theme,1388278444 +192560,107718,adultery,1388696151 +192560,107718,assassin,1388696151 +192560,107718,Bechdel Test:Fail,1388852545 +192560,107718,joint police-news media investigation,1388696151 +192560,107718,murder,1388696150 +192560,107718,protagonist is a journalist,1388696151 +192560,107718,protagonist is a politician,1388696151 +192560,107718,setting:UK,1388696151 +192560,107732,adapted from:operetta,1388796565 +192560,107732,playwright:Gilbert & Sullivan,1388852271 +192560,107780,adapted from:B'way,1389146442 +192560,107780,adapted from:poem,1389146452 +192560,107836,adapted from:B'way,1389146396 +192560,107949,adapted from:book,1389375527 +192560,107949,adapted from:true story,1389375527 +192560,107949,adultery,1389375527 +192560,107949,author:Claire Tomalin,1389375527 +192560,107949,biographical,1389375527 +192560,107949,character based on real person:Charles Dickens,1389375527 +192560,107949,protagonist is writer,1389375527 +192560,107949,setting:Victorian England,1389375548 +192560,107949,star directed,1389375569 +192560,108332,adapted from:book,1391007846 +192560,108332,author:Gaston Leroux,1391007846 +192560,108932,Bechdel Test:Fail,1411411464 +192560,108932,highly derivative,1411411454 +192560,108989,playwright:Tennessee Williams,1392691926 +192560,108991,playwright:Tennessee Williams,1392212886 +192560,108991,setting:New Orleans,1392212904 +192560,109008,adapted from:book,1392135126 +192560,109008,author:Hervé Bazin,1392135126 +192560,109055,adapted from:book,1392691898 +192560,109055,author:Agatha Christie,1392691898 +192560,109191,author:Mark Helprin,1392691744 +192560,109330,adapted from:book,1392906396 +192560,109330,author:Dee Brown,1392906396 +192560,109390,award:Berlin International Film Festival 2014,1393085615 +192560,109390,murder,1393085682 +192560,109390,serial killer,1393085682 +192560,109492,new information about Eichmann,1393517519 +192560,109492,The Shoah,1393517555 +192560,109673,subgenre:sword and sandal,1394289137 +192560,109726,adapted from:book,1403323627 +192560,109726,author:Oscar Wilde,1403323627 +192560,109864,adapted from:TV series,1395326565 +192560,109889,adapted from:book series,1394998926 +192560,109889,author:Elizabeth Gaskell,1394999001 +192560,109889,Bechdel Test:Pass,1394998877 +192560,109889,costume drama,1394998868 +192560,109889,period drama,1394998854 +192560,109889,setting:1840s,1394998975 +192560,109889,setting:England,1394998915 +192560,110445,adapted from:book,1397872524 +192560,110445,author:Terry Pratchett,1397872511 +192560,110633,adapted from:play,1398184479 +192560,110916,adapted from:book,1399134069 +192560,110916,Sherlock Holmes,1399134068 +192560,110921,Author:L.M. Montgomery,1399424347 +192560,110982,13/13,1399398429 +192560,111722,Bechdel Test:Fail,1401285475 +192560,111722,character:Infanata,1401285482 +192560,111722,character:Spiderman,1401285433 +192560,111722,Filmation,1401285470 +192560,111722,"quote:""Climb the stairway of mystery then cross the threshold of reality and enter into the realm of Dementia Five!""",1404520609 +192560,111722,setting:Dementia 5,1401285480 +192560,111722,setting:NYC,1401285384 +192560,112326,adapted from:comic,1403465060 +192560,115708,game:Scrabble,1414861157 +192560,115713,android(s)/cyborg(s),1433436158 +192560,115713,death/fatality,1433436264 +192560,115713,gender roles,1433436446 +192560,115713,related:Alien Resurrection (1997),1433436432 +192560,115713,related:Blade Runner,1433436166 +192560,117851,Bechdel test:Fail,1427238312 +192560,117851,octopus gets bad rap,1427238096 +192560,136020,Bechtel test:fail,1448370850 +192560,136020,gory,1448370860 +192633,34319,dystopia,1271256009 +192638,58492,depressing,1227287559 +192654,216,stop looking at me swan,1140224050 +192655,110,great action and tear jeker,1136316882 +192655,356,love lt. dan,1136316923 +192655,2236,tear jerker,1136316964 +192655,3147,heart-wrenching,1136316848 +192655,3147,tear-jerker,1136316848 +192655,3578,crowe's best,1136317081 +192655,5152,great war depiction,1136316802 +192655,5955,good directing by denzel,1136316996 +192655,7143,one tom's better movies,1136316906 +192655,33660,crowe did it again,1136316939 +192655,39446,all about blood and gore,1136316738 +192655,40629,keira is awesome and so is her man,1136316694 +192655,40815,love krum,1136316634 +192655,40819,jp is great,1136316647 +192655,41566,love mr. tumnus,1136316613 +192655,41573,mulroney and wilson are great as bros,1136316723 +192673,2501,Engineers in training,1139108405 +192673,2973,Woody Allen classic,1139108394 +192673,41716,Some good moments,1139108463 +192711,80463,Andrew Garfield,1447691474 +192711,80463,college,1447691487 +192711,80463,David Fincher,1447691491 +192714,1172,childhood,1344173153 +192714,1172,nostalgic,1344173086 +192714,1172,reflective,1344173097 +192714,1172,sentimental,1344173157 +192714,2671,British,1312030814 +192714,2671,Good Romantic Comedies,1312030821 +192714,2671,Hugh Grant,1312030818 +192714,2959,mental illness,1362955004 +192714,2959,psychology,1362954992 +192714,2959,social commentary,1362955007 +192714,2959,surreal,1362954992 +192714,2959,thought-provoking,1362955000 +192714,2959,twist ending,1362954997 +192714,3949,based on a book,1360352983 +192714,3949,drugs,1360352977 +192714,3949,psychology,1360352979 +192714,3949,visually appealing,1360352996 +192714,6942,british,1312030760 +192714,6942,christmas,1312030765 +192714,6942,Hugh Grant,1312030771 +192714,7361,bittersweet,1281631727 +192714,7361,surrealism,1281631734 +192714,7361,thought-provoking,1281631720 +192714,49286,England,1312030842 +192714,49286,Jude Law,1312030857 +192714,49286,switching places,1312030848 +192714,62644,nationalism,1360353033 +192714,62644,psychology,1360353028 +192714,62644,social experiment,1360353026 +192714,66203,adapted from:book,1281631909 +192714,66203,chick flick,1312030626 +192714,66203,romantic comedy,1312030632 +192714,69406,chemistry between actors,1312030789 +192714,69406,Ryan Reynolds,1312030792 +192714,69406,Sandra Bullock,1312030794 +192714,69757,depressing,1359930541 +192714,69757,great soundtrack,1359930573 +192714,69757,intelligent,1359930567 +192714,69757,quirky,1359930565 +192714,69757,relationships,1359930535 +192714,69757,Zooey Deschanel,1359930546 +192714,79132,complicated,1282500212 +192714,79132,dreams,1282500221 +192714,79132,Leonardo DiCaprio,1282500200 +192714,79132,mindfuck,1282500205 +192714,79132,surreal,1282500228 +192714,79132,unpredictable,1282500230 +192714,84152,concept,1312029764 +192714,84152,drugs,1312029773 +192714,84152,entertaining,1312029777 +192714,84152,human potential,1312029788 +192714,84152,smart,1312029796 +192714,84152,visually appealing,1312029794 +192714,96821,based on a book,1361651140 +192714,96821,Captivating,1361651136 +192714,96821,character development,1361651147 +192714,96821,touching,1361651122 +192714,96821,watch again,1361651126 +192717,3007,In Netflix queue,1234734040 +192727,260,dark side,1433113437 +192727,260,jedi,1433113429 +192727,260,luke skywalker,1433113455 +192727,260,obi wan kenobi,1433113448 +192727,260,the force,1433113464 +192727,1217,samurai,1433113799 +192731,260,sci fi,1430772138 +192731,260,Star Wars,1430772130 +192746,55908,Bad acting,1291614787 +192746,73211,based on a book,1296439240 +192764,79357,cinematography,1449351327 +192764,79357,nonlinear,1449351379 +192764,79357,storytelling,1449351320 +192764,79357,surreal,1449351338 +192764,93790,profound,1450673825 +192770,48774,somber,1177126075 +192770,55282,30 Daze Of Shite,1195333593 +192782,593,dark,1421974011 +192782,593,dialogue,1421974011 +192782,593,unsettling,1421974011 +192782,1584,Sci-fi,1236895038 +192782,4027,Musical,1236896216 +192782,4370,Bittersweet,1236896202 +192782,4886,Animation,1236895685 +192782,8961,Animation,1236895670 +192782,30707,Bittersweet,1236895718 +192782,48394,Bittersweet,1236894876 +192782,50872,Animation,1236894825 +192782,60069,Animation,1236895270 +192782,80917,aliens,1305063792 +192782,80917,creative,1305063790 +192782,80917,science fiction,1305063793 +192782,80917,social commentary,1305063780 +192782,107406,dystopian,1404934269 +192782,107406,heavy-handed,1404934264 +192782,107406,Jamie Bell,1404934269 +192782,107406,plot holes,1404934264 +192782,107406,social commentary,1404934267 +192782,107406,violence,1404934267 +192782,111360,transhumanist,1422316141 +192782,114342,beautiful scenery,1429498169 +192782,114342,relationship drama,1429498176 +192782,120637,great visuals,1431568180 +192826,32,dystopia,1431247459 +192826,32,sci-fi,1431247449 +192826,32,time travel,1431247456 +192826,172,cyberpunk,1431248991 +192826,172,dystopia,1431249000 +192826,172,hackers,1431248997 +192826,172,William Gibson,1431248986 +192826,356,heartwarming,1431242293 +192826,541,cyberpunk,1431241412 +192826,541,dystopia,1431241417 +192826,541,Philip K. Dick,1431241420 +192826,541,sci-fi,1431241415 +192826,741,anime,1431240198 +192826,741,artificial intelligence,1431240208 +192826,741,cyberpunk,1431240204 +192826,741,hackers,1431240214 +192826,741,sci-fi,1431240217 +192826,741,techno-evolution,1431240220 +192826,924,artificial intelligence,1431247234 +192826,924,sci-fi,1431247231 +192826,924,Stanley Kubrick,1431247260 +192826,1200,sci-fi,1431248716 +192826,1200,space,1431248721 +192826,1258,Stanley Kubrick,1431249440 +192826,1258,Stephen King,1431249423 +192826,1274,anime,1431240568 +192826,1274,cyberpunk,1431240571 +192826,1274,dystopia,1431240565 +192826,1274,hallucinatory,1431240581 +192826,1274,science fiction,1431240579 +192826,2021,David Lynch,1431247133 +192826,2021,lynch,1431247136 +192826,2021,sci-fi,1431247129 +192826,2495,Dreamlike,1431279103 +192826,2495,psychedelic,1431279110 +192826,2495,sci-fi,1431279129 +192826,2495,Surreal,1431279101 +192826,2495,Trippy,1431279108 +192826,2600,mindfuck,1431249077 +192826,2600,Sci-Fi,1431249083 +192826,2600,surreal,1431249075 +192826,2600,techno-evolution,1431249085 +192826,2600,virtual reality,1431249079 +192826,2672,virtual reality,1431249037 +192826,2700,adult humor,1431240499 +192826,2700,controversial,1431240531 +192826,2700,musical,1431240512 +192826,2700,parody,1431240494 +192826,2700,satire,1431240491 +192826,2916,cyberpunk,1431241466 +192826,2916,dystopia,1431241473 +192826,2916,memory,1431241481 +192826,2916,Philip K. Dick,1431241468 +192826,2916,sci-fi,1431241492 +192826,2916,virtual reality,1431241489 +192826,4226,complicated,1431240688 +192826,4226,dreamlike,1431240691 +192826,4226,nonlinear,1431240673 +192826,4226,psychology,1431240680 +192826,4226,twist ending,1431240675 +192826,4873,dreams,1431241313 +192826,4873,existentialism,1431241325 +192826,4873,surreal,1431241322 +192826,4973,feel-good,1431240749 +192826,4973,idealism,1431240783 +192826,4973,romantic,1431240799 +192826,4973,surreal,1431240755 +192826,5445,artificial intelligence,1431241534 +192826,5445,dystopia,1431241521 +192826,5445,Philip K. Dick,1431241513 +192826,5445,Precognition,1431241531 +192826,5445,sci-fi,1431241517 +192826,5445,time loop,1431241543 +192826,7371,disturbing,1431242226 +192826,7371,experimental,1431242236 +192826,7371,misogyny,1431242216 +192826,27728,anime,1431242494 +192826,27728,cyberpunk,1431242502 +192826,27728,sci-fi,1431242514 +192826,27904,Philip K. Dick,1431241344 +192826,27904,rotoscoping,1431241361 +192826,27904,surreal,1431241348 +192826,31184,anime,1431247786 +192826,31184,sci-fi,1431247779 +192826,31184,techno-evolution,1431247789 +192826,31184,technology,1431247782 +192826,77795,space travel,1431249185 +192826,94864,sci-fi,1431248744 +192826,94864,scifi,1431248741 +192826,94864,space travel,1431248752 +192826,129779,anime,1431242538 +192826,129779,artificial intelligence,1431242573 +192826,129779,cyberpunk,1431242558 +192826,129779,sci-fi,1431242564 +192827,2291,original,1368642737 +192827,4878,alternate timeline,1305369307 +192827,4878,original,1368642737 +192827,4878,psychology,1305369304 +192827,33171,dramatic,1300141340 +192827,33171,male nudity,1300141319 +192827,33171,memories,1300141329 +192827,79702,artistic,1368642965 +192827,79702,crude humor,1368642963 +192827,79702,fantasy,1368642950 +192827,79702,funny,1368642961 +192827,79702,quirky,1368642948 +192827,79702,stylized,1368642946 +192827,79702,surreal,1368642945 +192827,79702,teenagers,1368642959 +192827,79702,visually appealing,1368642944 +192827,79702,whimsical,1368642941 +192843,53592,bloody,1304982281 +192843,53592,lesbian,1304982244 +192843,53592,shocking,1304982281 +192843,53592,touching,1304982281 +192843,69134,disturbing,1304982369 +192872,1265,lust turns into love,1243126845 +192873,1307,One of the funniest movies ever.,1137963897 +192873,1554,Fascinating movie,1162585448 +192877,260,classic,1443712922 +192877,260,epic adventure,1443712915 +192877,260,iconic,1443712934 +192877,260,Science Fiction,1443712927 +192878,1573,ridiculous,1153697739 +192878,4448,predictable,1169921495 +192878,4448,slow start but decent payoff,1169921495 +192878,5564,so bad it's almost good,1152414218 +192878,8836,not thrilling at all,1153180085 +192878,8860,so bad it's almost good,1152414514 +192878,30810,i don't get it,1152988004 +192878,31114,Sigourney Weaver,1250815088 +192878,45447,book is better,1152980732 +192878,63131,Jane Lynch,1241638346 +192878,63131,Paul Rudd,1241638349 +192880,26459,romantic,1432438488 +192880,26459,sarcastic,1432438488 +192880,26459,sword fighting,1432438488 +192893,260,sci-fi,1441987030 +192893,260,space adventure,1441987034 +192914,96606,contemplative,1430068173 +192914,96606,enlightening,1430068173 +192914,96606,visually appealing,1430068173 +192921,296,Black comedy,1441061729 +192921,296,bruce willis,1441061739 +192921,296,cult film,1441061722 +192921,296,dark comedy,1441061694 +192921,296,drugs,1441061728 +192921,296,funny,1441061759 +192921,296,multiple storylines,1441061715 +192921,296,nonlinear,1441061698 +192921,296,Quentin Tarantino,1441061691 +192921,296,Samuel L. Jackson,1441061712 +192921,296,stylized,1441061767 +192921,296,violence,1441061717 +192921,1199,atmospheric,1441062815 +192921,1199,black comedy,1441062801 +192921,1199,dark,1441062849 +192921,1199,dark comedy,1441062803 +192921,1199,dreamlike,1441062808 +192921,1199,dystopia,1441062799 +192921,1199,dystopic future,1441062844 +192921,1199,futuristic,1441062842 +192921,1199,imagination,1441062847 +192921,1199,quirky,1441062829 +192921,1199,satire,1441062810 +192921,1199,satirical,1441062820 +192921,1199,sci-fi,1441062817 +192921,1199,stylized,1441062822 +192921,1199,surreal,1441062799 +192921,1199,thought-provoking,1441062806 +192921,2076,dark,1441050177 +192921,2076,disturbing,1441050181 +192921,2076,sexuality,1441050212 +192921,2076,surreal,1441050184 +192921,2324,bittersweet,1453661283 +192921,2324,comedy,1453661229 +192921,2324,father-son relationship,1453661227 +192921,2324,holocaust,1453661209 +192921,2324,Italian,1453661294 +192921,2324,optimism,1453661234 +192921,2324,sad ending,1453661303 +192921,2500,black comedy,1440980844 +192921,2500,high school,1440980852 +192921,4979,Criterion,1453662841 +192921,4979,dark comedy,1453662798 +192921,4979,dysfunctional family,1453662801 +192921,6874,martial arts,1441061630 +192921,6874,visually appealing,1441061650 +192921,7044,black comedy,1441050126 +192921,37857,alternate reality,1441062674 +192921,37857,animation,1441062696 +192921,37857,circus,1441062701 +192921,37857,dreamlike,1441062705 +192921,37857,fantasy,1441062697 +192921,37857,Neil Gaiman,1441062673 +192921,37857,parallel universe,1441062680 +192921,37857,visually appealing,1441062677 +192921,41571,cinematography,1441063101 +192921,41571,geisha,1441063068 +192921,41571,history,1441063074 +192921,41571,Japan,1441063067 +192921,41571,Japanese culture,1441063071 +192921,52281,exploitation,1441061553 +192921,52281,Gore,1441061516 +192921,52281,grindhouse,1441061541 +192921,52281,zombies,1441061513 +192921,57910,bland,1441067136 +192921,57910,castration,1440988646 +192921,57910,chopped penis,1440988638 +192921,57910,comedy,1440988603 +192921,57910,cult film,1441067161 +192921,57910,funny,1440988623 +192921,57910,morality,1441067118 +192921,57910,Nudity (Topless),1440988604 +192921,57910,rape,1441067156 +192921,57910,vagina dentata,1440988631 +192921,61323,cheating husband,1453662278 +192921,61323,dark comedy,1453662293 +192921,61323,espionage,1453662275 +192921,61323,stupid criminals,1453662290 +192921,71205,camp,1440978283 +192921,71205,cliche,1440978276 +192921,71205,comedy,1440980779 +192921,71205,dark comedy,1440978023 +192921,71205,demon possession,1440980808 +192921,71205,demons,1440978300 +192921,71205,funny,1440978250 +192921,71205,high school,1440980550 +192921,71205,lesbian subtext,1440980538 +192921,71205,not scary,1440978260 +192921,71205,ridiculous,1440978290 +192921,72731,based on a book,1453661170 +192921,94466,dark,1441060587 +192921,94466,dystopia,1441060588 +192921,94466,not a movie,1441060583 +192921,94466,satire,1441060591 +192921,94466,Science fiction,1441060603 +192921,94466,technology,1441060604 +192921,94466,tv series,1441060581 +192921,105593,corruption,1441063718 +192921,105593,drugs,1441063745 +192921,105593,intoxicants,1441063747 +192921,105593,male nudity,1441063731 +192921,105593,nudity (topless),1441063732 +192921,105593,police,1441063735 +192921,105593,police corruption,1441063709 +192921,105593,Scotland,1441063715 +192921,105593,surreal,1441063711 +192921,111663,Campy,1440979262 +192921,111663,funny,1440979225 +192921,111663,nudity (topless),1440979253 +192921,111663,T&A,1440979266 +192921,118880,black and white,1441061464 +192921,118880,vampires,1441061466 +192938,38061,dark humour,1434582626 +192974,318,deceit,1434373068 +192974,318,friendship,1434373068 +192974,318,prison break,1434373068 +192990,592,2-dimensional,1283018208 +192990,592,dark,1283018103 +192990,592,dystopian,1283018066 +192990,592,slow-paced,1283018136 +192990,4963,casting,1281842283 +192990,4963,directing,1281842259 +192990,4963,soundtrack,1281842249 +193021,31,Dangerous Minds,1189399337 +193021,475,In the Name of the Father,1189399365 +193021,1343,Cape Fear,1189399355 +193021,2005,Goonies,1189399348 +193021,2005,The,1189399348 +193021,2080,Lady and the Tramp,1189399394 +193022,68237,dark,1375858685 +193022,68237,psychology,1375858685 +193022,68237,space,1375858685 +193022,68237,thought-provoking,1375858685 +193022,94864,scary,1375858939 +193022,102445,fast paced,1375847740 +193022,102445,predictable,1375847728 +193043,109195,comedy,1430211479 +193043,109195,romantic comedy,1430211099 +193043,114762,unique romantic comedy,1430211143 +193043,118814,Comedy,1430211191 +193043,118814,Romance,1430211193 +193043,118814,romantic comedy,1430211185 +193043,118814,whimsical,1430211196 +193068,750,black comedy,1343393416 +193068,750,dark comedy,1343393423 +193068,750,nuclear war,1343393430 +193068,750,Stanley Kubrick,1343393439 +193068,750,US president,1343393442 +193068,912,black and white,1343318239 +193068,912,imdb top 250,1343318248 +193068,912,Oscar (Best Directing),1343318253 +193068,912,romance,1343318258 +193068,1203,courtroom,1343393231 +193068,1203,courtroom drama,1343393238 +193068,1203,good dialogue,1343393251 +193068,1203,justice,1343393256 +193068,2023,Al Pacino,1343316579 +193068,2023,Francis Ford Copolla,1343316596 +193068,2023,Francis Ford Coppola,1343316613 +193068,2023,Nudity (Topless - Brief),1343316624 +193068,3328,assassin,1343317247 +193068,3328,flashbacks,1343317256 +193068,3328,Jim Jarmusch,1343317266 +193068,3328,narrated,1343317280 +193068,3328,samurai,1343317272 +193068,3578,action,1343316645 +193068,3578,drama,1343316648 +193068,3578,imdb top 250,1343316664 +193068,3578,Oscar (Best Actor),1343316683 +193068,3578,Russell Crowe,1343316691 +193068,3578,violence,1343316697 +193068,3578,violent,1343316702 +193068,4223,heroic,1343316729 +193068,4223,Nudity (Rear),1343316733 +193068,4223,sex,1343316740 +193068,4223,sniper,1343316742 +193068,4223,snipers,1343316744 +193068,4223,World War 2,1343316750 +193068,4223,World War II,1343316747 +193068,5010,based on a true story,1342706713 +193068,5010,heroism,1343317206 +193068,5010,predictable,1343317190 +193068,7445,action,1342610173 +193068,7445,Denzel Washington,1342610090 +193068,7445,ending,1342610124 +193068,7445,kidnapping,1342610132 +193068,7445,redemption,1342610151 +193068,7445,Torture,1342610159 +193068,33794,action,1343316951 +193068,33794,crime,1343316967 +193068,33794,imdb top 250,1343316971 +193068,33794,Morgan Freeman,1343316974 +193068,33794,philosophical,1343316977 +193068,33794,police,1343316988 +193068,33794,super-hero,1343317000 +193068,33794,superhero,1343316991 +193068,36529,based on a true story,1342610514 +193068,36529,cold war,1343316311 +193068,36529,corruption,1343316319 +193068,36529,Nicolas Cage,1343316334 +193068,44195,father-son relationship,1343318073 +193068,44199,bank robbery,1343316527 +193068,44199,Denzel Washington,1343316535 +193068,44199,good story,1343316540 +193068,44199,intelligent thriller,1343316543 +193068,44199,Jodie Foster,1343316550 +193068,44665,Bruce Willis,1343316233 +193068,44665,horse racing,1343316253 +193068,44665,mistaken identity,1343316265 +193068,44665,Morgan Freeman,1343316260 +193068,44665,Nudity (Topless),1343316271 +193068,44665,organized crime,1343316277 +193068,44665,twist ending,1343316288 +193068,44665,violent,1343316290 +193068,49530,action,1343316410 +193068,49530,Civil War,1343316414 +193068,49530,journalism,1343316426 +193068,49530,Leonardo DiCaprio,1343316444 +193068,49530,London,1343316449 +193068,49530,sacrifice,1343316437 +193068,49530,violent,1343316429 +193068,51662,sexualized violence,1343317481 +193068,54286,action,1343316357 +193068,54286,car chase,1343316365 +193068,54286,conspiracy,1343316371 +193068,54286,imdb top 250,1343316378 +193068,54286,spy thriller,1343316390 +193068,54286,torture,1343316393 +193068,54286,twist ending,1343316396 +193068,55765,based on a true story,1343317014 +193068,55765,crime,1343317023 +193068,55765,drugs,1343317032 +193068,55765,justice,1343317037 +193068,55765,Nudity (Topless - Brief),1343317043 +193068,55765,Russell Crowe,1343317052 +193068,55820,based on a book,1343316484 +193068,55820,imdb top 250,1343316493 +193068,55820,violent,1343316511 +193068,58559,action,1343316895 +193068,58559,dark,1343316867 +193068,58559,imdb top 250,1343316906 +193068,58559,Morgan Freeman,1343316874 +193068,58559,superhero,1343316886 +193068,58559,violence,1343316901 +193068,58559,violent,1343316903 +193068,59369,action,1343316127 +193068,59369,car chase,1343316133 +193068,59369,CIA,1343316136 +193068,59369,divorce,1343316149 +193068,59369,father daughter relationship,1343316154 +193068,59369,fight scenes,1343316161 +193068,59369,happy ending,1343316166 +193068,59369,realistic,1343316180 +193068,59369,revenge,1343316183 +193068,59369,thriller,1343316186 +193068,59369,torture,1343316188 +193068,73017,Action,1343317130 +193068,73017,England,1343317085 +193068,73017,sexuality,1343317109 +193068,80219,Nudity (Full Frontal - Notable),1343317414 +193068,80219,Robert De Niro,1343317423 +193079,260,cult classic,1435665163 +193091,107745,action,1419991153 +193091,107745,pg:violence,1419991153 +193091,107745,police,1419991153 +193096,41285,Woody Allen,1222433435 +193136,361,5,1189597561 +193136,413,1,1189597558 +193136,540,9,1189597564 +193136,546,10,1189597593 +193136,707,6,1189597562 +193136,836,1,1189597698 +193136,837,4,1189597705 +193136,1224,3,1189597697 +193136,1245,5,1189597594 +193136,1298,7,1189597563 +193136,1350,5,1189597696 +193136,1416,3,1189597604 +193136,1441,2,1189597562 +193136,1779,10,1189597566 +193136,2125,2,1189597604 +193136,2423,1,1189597604 +193136,2428,4,1189597603 +193136,2485,9,1189597600 +193136,2951,4,1189597561 +193136,3100,8,1189597604 +193136,3113,2,1189597698 +193136,3273,8,1189597566 +193136,3608,7,1189597599 +193136,8798,3,1189597560 +193136,30707,6,1189597604 +193151,1307,the quintessential romantic comedy!,1144328855 +193236,8784,realistic,1139723850 +193236,34405,shiny,1139721988 +193250,93432,documentary,1452727230 +193250,93432,food,1452727232 +193250,93432,vegan,1452727234 +193261,293,assassin,1281042859 +193261,293,French,1281042870 +193261,293,great acting,1281042861 +193261,296,cult film,1281043220 +193261,296,multiple storylines,1281043230 +193261,296,nonlinear,1281043229 +193261,1175,Black comedy,1281044148 +193261,1175,French,1281044154 +193261,1175,Post apocalyptic,1281044151 +193261,6807,british comedy,1281044159 +193294,32,dystopia,1273440098 +193294,32,future,1273440101 +193294,32,Post apocalyptic,1273440107 +193294,32,post-apocalyptic,1273440109 +193294,32,psychology,1273440112 +193294,32,sci-fi,1273440116 +193294,32,time travel,1273440118 +193294,32,twist ending,1273440120 +193294,32,violence,1273440122 +193294,198,mindfuck,1284323381 +193294,198,virtual reality,1284323393 +193294,296,funny,1419967281 +193294,296,non-linear,1419967281 +193294,296,violent,1419967281 +193294,318,overrated,1421529766 +193294,318,populistic,1421529766 +193294,318,prison drama,1421529766 +193294,541,Rain,1284342883 +193294,680,dystopia,1273440142 +193294,680,FUTURE DYSTOPIAS,1273440148 +193294,680,new wave,1273440157 +193294,680,stylized,1273440162 +193294,1089,crime,1273364528 +193294,1089,drama,1273364530 +193294,1089,ensemble cast,1273364534 +193294,1089,low budget,1273364538 +193294,1089,nonlinear,1273364545 +193294,1089,organized crime,1273364549 +193294,1089,Quentin Tarantino,1273364552 +193294,1089,thriller,1273364559 +193294,1089,undercover cop,1273364561 +193294,1089,violence,1273364563 +193294,1208,Dark,1284342984 +193294,1208,disturbing,1284342935 +193294,1208,drama,1284342987 +193294,1208,Rain,1284342944 +193294,1208,surreal,1284342998 +193294,1211,angel,1273452297 +193294,1211,Berlin,1273452309 +193294,1211,lyrical,1273452314 +193294,1211,Nick Cave and the Bad Seeds,1273452287 +193294,1232,Andrei Tarkovsky,1273364478 +193294,1232,dystopia,1273364484 +193294,1232,existentialism,1273364487 +193294,1232,masterpiece,1273364492 +193294,1232,reflective,1273364502 +193294,1587,unintentionally funny,1314050837 +193294,2076,disturbing,1273365406 +193294,2076,suburbia,1273365426 +193294,2455,body horror,1273440006 +193294,2455,changing species,1273440015 +193294,2455,creepy,1273440019 +193294,2455,sci-fi,1273440042 +193294,2455,tragedy,1273440046 +193294,2467,medieval,1282511557 +193294,2467,monastery,1282511562 +193294,2502,overrated,1273372031 +193294,2600,alternate reality,1273363713 +193294,2600,mindfuck,1273363746 +193294,2600,Sci-Fi,1273363763 +193294,2600,strange,1273363804 +193294,2600,surreal,1273363802 +193294,2600,techno-evolution,1273363807 +193294,2600,video game,1273363818 +193294,2600,virtual reality,1273363825 +193294,2912,drama,1314669635 +193294,2912,revenge,1314669632 +193294,2912,thriller,1314669639 +193294,2912,unusual editing,1314669646 +193294,2997,Charlie Kaufman,1273455125 +193294,2997,dark comedy,1273455130 +193294,2997,mindfuck,1273455134 +193294,2997,surreal,1273455137 +193294,2997,surrealism,1273455138 +193294,3002,Crazy Kinski,1305862326 +193294,3002,Werner Herzog,1305862327 +193294,3008,end of the world,1274136996 +193294,3008,multiple storylines,1274136999 +193294,3075,apartment,1273440349 +193294,3075,atmospheric,1273440351 +193294,3075,claustrophobic,1273440355 +193294,3075,gruesome,1273440360 +193294,3075,hallucinatory,1273440362 +193294,3075,insanity,1273440365 +193294,3075,loneliness,1273440367 +193294,3075,MENTAL ILLNESS,1273440371 +193294,3075,paranoid,1273440373 +193294,3075,Roman Polanski,1273440376 +193294,3175,Sam Rockwell,1313541766 +193294,3706,DEAL WITH THE DEVIL,1273440184 +193294,3706,devil,1273440209 +193294,3706,Rain,1284342813 +193294,4105,black comedy,1282950831 +193294,4105,dark humor,1282950840 +193294,4105,demons,1282950842 +193294,4105,horror,1282950847 +193294,4105,isolation,1282950850 +193294,4105,low budget,1282950861 +193294,4105,zombie,1282950874 +193294,4105,zombies,1282950828 +193294,4615,1950s,1282070074 +193294,4615,Brooklyn,1282069958 +193294,4615,crime,1282070164 +193294,4615,gang rape,1282069923 +193294,4615,homosexuality,1282070008 +193294,4615,New York City,1282070093 +193294,4615,realistic,1282069947 +193294,4615,Social Drama,1282069854 +193294,4615,strike,1282070113 +193294,4615,union,1282069923 +193294,4848,amnesia,1273363229 +193294,4848,Atmospheric,1273363233 +193294,4848,dark,1273363236 +193294,4848,David Lynch,1273363239 +193294,4848,disturbing,1273363241 +193294,4848,drama,1273363243 +193294,4848,Enigmatic,1273363246 +193294,4848,hallucinatory,1273363257 +193294,4848,mindfuck,1273363260 +193294,4848,mystery,1273363264 +193294,4848,nonlinear,1273363267 +193294,4848,surreal,1273363270 +193294,4848,surrealism,1273363273 +193294,6003,Charlie Kaufman,1273455170 +193294,6003,Sam Rockwell,1273455191 +193294,6530,claustrophobic,1273364155 +193294,6530,hallucinatory,1273364160 +193294,6530,mental illness,1273364204 +193294,6530,mummy,1273364399 +193294,6530,paranoid,1273364164 +193294,6530,quirky,1273364166 +193294,6530,Roman Polanski,1273364168 +193294,6530,suicide,1273364228 +193294,6530,unreliable narrators,1273364204 +193294,6672,journalism,1305862151 +193294,6672,photographer,1305862146 +193294,6672,photography,1305862148 +193294,6672,war,1305862167 +193294,6774,body horror,1273363984 +193294,6774,creepy,1273363989 +193294,6774,David Cronenberg,1273364038 +193294,6774,surreal,1273364091 +193294,6787,conspiracy,1273440406 +193294,6787,corruption,1273440408 +193294,6787,investigation,1273440416 +193294,6787,journalism,1273440417 +193294,6787,Politics,1273440422 +193294,6787,thriller,1273440426 +193294,6787,true story,1273440424 +193294,6858,claustrophobic,1279317458 +193294,6858,confrontational,1279317460 +193294,6858,directorial debut,1279317466 +193294,6858,suspense,1279317473 +193294,6858,tense,1279317475 +193294,6971,atmospheric,1273372362 +193294,6971,bleak,1273372364 +193294,6971,claustrophobic,1273372369 +193294,6971,dreamlike,1273372372 +193294,6971,hallucinatory,1273372398 +193294,6971,nocturnal,1273372408 +193294,6971,paranoid,1273372411 +193294,6971,stylized,1273372425 +193294,6971,trains,1273372427 +193294,7134,Europe Trilogy,1273365045 +193294,7134,Lars von Trier,1273365057 +193294,7134,post-apocalyptic,1273365059 +193294,7361,Charlie Kaufman,1273455033 +193294,7361,convoluted,1273455052 +193294,7361,memory,1273455037 +193294,7361,nonlinear,1273455039 +193294,7361,surreal,1273455055 +193294,7385,drama,1273365127 +193294,7385,horror,1273516077 +193294,7385,murder,1273365127 +193294,7505,comedy,1273364683 +193294,7505,DEVIL WORSHIP,1273364814 +193294,7505,drama,1273364683 +193294,7505,Ernst-Hugo JäregÃ¥rd,1273364750 +193294,7505,Lars von Trier,1273364763 +193294,7505,nationalism,1273364791 +193294,7505,Stig,1273364699 +193294,7505,surreal,1273364683 +193294,7587,slow,1273373221 +193294,7984,alternate reality,1273449276 +193294,7984,alternate universe,1273449273 +193294,7984,body alteration,1273449249 +193294,7984,body horror,1273449249 +193294,7984,mad scientist,1273449259 +193294,26285,aliens,1273454585 +193294,26285,parody,1273454590 +193294,26285,sci-fi,1273454569 +193294,26285,scifi,1273454573 +193294,26554,apocalypse,1274137838 +193294,26947,open ending,1275616387 +193294,27095,bugs,1273363537 +193294,27095,dark,1273363422 +193294,27095,demise,1273363514 +193294,27095,dystopia,1273363422 +193294,27095,post-apocalyptic,1273365029 +193294,27095,Rain,1284342848 +193294,27095,redemption,1273363436 +193294,27095,surreal,1273363422 +193294,27491,hard to follow,1313798772 +193294,27491,uneven script,1313798791 +193294,32179,Jeanne Moreau,1273633088 +193294,32892,bleak,1273449520 +193294,32892,war,1273449553 +193294,32892,World War II,1273449528 +193294,41815,deafness,1273363897 +193294,41815,drama,1273363882 +193294,41815,surfing,1273363889 +193294,41815,takeshi kitano,1273363887 +193294,44828,alien invasion,1448233557 +193294,44828,aliens,1448233561 +193294,44828,body horror,1448233565 +193294,44828,comedy,1448233576 +193294,44828,pseudo-zombies,1448233578 +193294,44828,sci-fi,1448233587 +193294,44828,silly,1448233592 +193294,50842,dark comedy,1273372452 +193294,51357,made for TV,1313936163 +193294,51357,serial killer,1313936176 +193294,51357,Soviet,1313936182 +193294,53000,disappointing,1273372918 +193294,53000,frustrating to watch,1273372921 +193294,53000,not as good as the first,1273372915 +193294,53000,original good;sequel sucked,1273373063 +193294,53000,post-apocalyptic,1273372939 +193294,53000,zombies,1273372941 +193294,55118,Naomi Watts,1273440287 +193294,55118,organized crime,1273440294 +193294,55118,rape,1273440309 +193294,55118,Russian mafia,1273440311 +193294,55118,violent,1273440314 +193294,55805,disjointed timeline,1273440239 +193294,55805,non-linear,1273440245 +193294,55805,nonlinear,1273440248 +193294,56779,drama,1279317810 +193294,56779,few words,1279317771 +193294,56779,homosexuality,1279317744 +193294,56779,Ming-liang Tsai,1279317842 +193294,56788,afghanistan,1273450397 +193294,56788,based on a true story,1273450404 +193294,56788,CIA,1273450408 +193294,56788,cold war,1273450410 +193294,56788,politics,1273450419 +193294,56788,satire,1273450422 +193294,56788,true story,1273450424 +193294,58964,blood,1273453818 +193294,58964,gore,1273453819 +193294,58964,mental illness,1273453842 +193294,60382,documentary,1279317309 +193294,60579,amnesia,1273363224 +193294,60579,atmospheric,1273363115 +193294,60579,creepy,1273364006 +193294,60579,dark,1273363115 +193294,60579,disturbing,1273363114 +193294,60579,drama,1273363115 +193294,60579,dreamlike,1273363115 +193294,60579,enigmatic,1273363115 +193294,60579,hallucinatory,1273363115 +193294,60579,mental illness,1273362675 +193294,60579,mystery,1273362675 +193294,60579,schizophrenia,1273362992 +193294,60579,Sexualized violence,1273364605 +193294,60579,surreal,1273362992 +193294,60579,unreliable narrators,1273364118 +193294,60579,violence,1273364584 +193294,63072,cannibalism,1273451595 +193294,63072,dystopia,1273451590 +193294,63072,post-apocalyptic,1273451605 +193294,63072,The End,1273451614 +193294,65418,bad luck,1279318215 +193294,65418,dreams,1279318235 +193294,65418,empty scenario,1279318238 +193294,65418,Kelly Reichardt,1279318247 +193294,65418,owner & dog relationship,1279318260 +193294,65642,complicated,1273451635 +193294,65642,paradox,1273451664 +193294,65642,plot wending,1273451674 +193294,65642,time travel,1273451653 +193294,71484,animation,1273363362 +193294,71484,dystopia,1273363356 +193294,71484,dystopic future,1273363356 +193294,72630,alternate reality,1273363771 +193294,72630,computers,1273363771 +193294,72630,dark,1273363587 +193294,72630,dystopia,1273363615 +193294,72630,sci-fi,1273363771 +193294,72630,techno-evolution,1273363793 +193294,72630,technology,1273363793 +193294,72630,virtual reality,1273363838 +193294,74306,Douglas MacArthur,1273451258 +193294,74306,emperor,1273451152 +193294,74306,Emperor of Japan,1273451151 +193294,74306,Hirohito,1273451198 +193294,74306,Japan,1273451256 +193294,74306,war,1273451146 +193294,74306,World War II,1273451146 +193294,74750,"""found footage""",1279318076 +193294,74750,claustrophobic,1279317968 +193294,74750,Handycam,1279318076 +193294,74750,mimics documentary-style,1279318139 +193294,74750,mockumentary,1279318139 +193294,74750,not as good as the first,1279317913 +193294,74750,Unsteady-cam,1279318163 +193294,74750,zombies,1279317968 +193294,77307,disturbing,1289073016 +193294,77307,freedom,1289072926 +193294,77307,oppression,1289072933 +193294,77307,Rule-making,1289072774 +193294,77307,seclusion,1289072869 +193294,77307,sexuality,1289072926 +193294,77427,abduction,1282069763 +193294,77427,body horror,1282069708 +193294,77427,sick,1282069756 +193294,79251,abuse,1285553838 +193294,79251,corruption,1285553814 +193294,79251,cruel,1285553779 +193294,79251,cruelty,1285553779 +193294,79251,dictatorship,1285553664 +193294,79251,drugs,1285553869 +193294,79251,humiliation,1285554681 +193294,79251,metaphor,1285557921 +193294,79251,postwar,1285554941 +193294,79251,rage,1285555503 +193294,79251,rape,1285553712 +193294,79251,seduction,1285553664 +193294,79251,serbia,1285553743 +193294,79251,sexual abuse,1285553723 +193294,79251,suicide,1285558024 +193294,79251,surreal,1285557182 +193294,79251,totalitarianism,1285553814 +193294,79251,war,1285553664 +193294,79357,butterfly effect,1282079129 +193294,79357,chaos,1282079131 +193294,79357,love affair,1282079140 +193294,79357,nonlinear,1282079143 +193294,79357,sci-fi,1282079147 +193294,79357,surreal,1282079150 +193294,80094,Abalam,1290653977 +193294,80094,devil,1290652761 +193294,80094,exorcism,1290652761 +193294,80094,handcam-real style,1290652759 +193294,80094,handheld cameras,1290652759 +193294,80094,Louisiana,1290653791 +193294,80094,prophecy,1290652802 +193294,81516,plague,1309316792 +193294,82059,based on a true story,1309316519 +193294,82059,cold war,1309316508 +193294,82059,spy,1309316508 +193294,82059,spy thriller,1309316508 +193294,84392,cliche,1312419889 +193294,84392,lawyers,1312419860 +193294,84392,stereotypical,1312419852 +193294,85412,bad acting,1319847530 +193294,85412,bad script,1319847548 +193294,85412,boring,1319847532 +193294,85412,doesn't add anything new to the genre,1319847534 +193294,88129,atmospheric,1317085311 +193294,88129,minimalistic,1317085361 +193294,88129,violence,1317085327 +193294,89837,satanism,1344983028 +193294,90439,bad dialogue,1320982265 +193294,94864,set design,1347449684 +193294,104841,Hollow,1389372175 +193294,115713,artificial intelligence,1431614779 +193294,115713,futuristic,1431614799 +193294,115713,robots,1431614783 +193294,115713,sci-fi,1431614803 +193304,339,Sandra Bullock,1156601157 +193304,597,Richard Gere,1156601027 +193304,1097,Drew Barrymore,1156601558 +193304,1393,Renee Zellweger,1156600554 +193304,1393,Tom Cruise,1156600554 +193304,1569,Cameron Diaz,1156602435 +193304,1569,Julia Roberts,1156602435 +193304,1584,Jodie Foster,1156600099 +193304,1653,Ethan Hawke,1156601618 +193304,1653,Uma Thurman,1156601618 +193304,1888,Sandra Bullock,1156601746 +193304,2125,Drew Barrymore,1156601520 +193304,2272,Meryl Streep,1156602463 +193304,2272,Renee Zellweger,1156602463 +193304,2316,Nicole Kidman,1156601010 +193304,2316,Sandra Bullock,1156600995 +193304,2424,Meg Ryan,1156601174 +193304,2571,Carrie-Anne Moss,1156602267 +193304,2571,Keanu Reeves,1156602267 +193304,2622,Michelle Pfeiffer,1156600582 +193304,2671,Hugh Grant,1156602447 +193304,2719,Catherine Zeta-Jones,1156601722 +193304,2881,Ashley Judd,1156600526 +193304,2881,Morgan Freeman,1156600526 +193304,3259,Nicole Kidman,1156601576 +193304,3259,Tom Cruise,1156601576 +193304,3752,Jim Carrey,1156602292 +193304,3752,Renee Zellweger,1156602292 +193304,3825,Maria Bello,1156601463 +193304,3893,Morgan Freeman,1156600714 +193304,3893,Renee Zellweger,1156600714 +193304,3897,Kate Hudson,1156601227 +193304,4246,Renee Zellweger,1156600226 +193304,4308,Baz Luhrmann,1156600682 +193304,4308,Ewan McGregor,1156600682 +193304,4308,Nicole Kidman,1156600682 +193304,4720,Nicole Kidman,1156600726 +193304,4973,Audrey Tautou,1156600198 +193304,4992,Hugh Jackman,1156599936 +193304,5081,Nicole Kidman,1156601333 +193304,5266,Kristen Stewart,1156602531 +193304,5415,Sandra Bullock,1156601497 +193304,5464,Jude Law,1156601102 +193304,5680,Maria Bello,1165955372 +193304,5989,Leonardo DiCaprio,1156601383 +193304,5991,Catherine Zeta-Jones,1156600370 +193304,5991,Renee Zellweger,1156600370 +193304,5991,Richard Gere,1156600370 +193304,5992,Meryl Streep,1156600805 +193304,6378,Charlize Theron,1156601906 +193304,6378,Mark Wahlberg,1156601906 +193304,6711,Scarlett Johansson,1156601963 +193304,6874,Uma Thurman,1156601679 +193304,6942,Colin Firth,1156602171 +193304,6942,Hugh Grant,1156602171 +193304,6942,Keira Knightley,1156602171 +193304,6942,Lucia Moniz,1156602171 +193304,6942,Richard Curtis,1156602171 +193304,6942,Rodrigo Santoro,1156602171 +193304,6953,Benicio Del Toro,1156600323 +193304,6953,Naomi Watts,1156600323 +193304,6953,Sean Penn,1156600323 +193304,7137,Maria Bello,1156601422 +193304,7154,Julia Roberts,1156602377 +193304,7154,Julia Stiles,1156602377 +193304,7154,Kirsten Dunst,1156602377 +193304,7162,Nicole Kidman,1156601411 +193304,7162,Renee Zellweger,1156601411 +193304,7293,Adam Sandler,1156601197 +193304,7293,Drew Barrymore,1156601197 +193304,7450,Julianne Moore,1156601940 +193304,7450,Pierce Brosnan,1156601940 +193304,8870,Julianne Moore,1156601591 +193304,8943,Annette Bening,1156601318 +193304,8943,Shaun Evans,1156601318 +193304,8969,Hugh Grant,1156601355 +193304,8969,Renee Zellweger,1156601355 +193304,8981,Julia Roberts,1156600426 +193304,8981,Natalie Portman,1156600426 +193304,27821,Nicole Kidman,1156601882 +193304,27821,Sean Penn,1156601882 +193304,33145,Amanda Peet,1156601999 +193304,33145,Ashton Kutcher,1156601999 +193304,45447,Audrey Tautou,1156601484 +193304,45447,Tom Hanks,1156601484 +193304,45722,Keira Knightley,1156600980 +193304,45722,Orlando Bloom,1156600980 +193320,58047,cute,1439084173 +193320,58047,romantic comedy,1439084173 +193320,58998,comedy,1439085041 +193320,96588,Funny,1439084223 +193320,96588,music,1439084218 +193332,529,father-son relationship,1291350991 +193347,50,classic,1436523428 +193347,50,crime,1436523428 +193347,50,thriller,1436523428 +193347,296,fun,1424444672 +193347,296,genius,1424444672 +193347,296,quentin tarantino,1424444672 +193347,318,drama,1420242972 +193347,318,friendship,1420242972 +193347,318,prison,1420242972 +193347,527,based on a true story,1433454434 +193347,527,sad,1433454434 +193347,527,wwii,1433454434 +193353,260,adventure,1438548653 +193353,260,space opera,1438548679 +193353,112940,thriller,1440435649 +193360,1217,War,1448045416 +193360,4967,war,1448276452 +193360,27773,revenge,1392891396 +193360,48516,mystery,1446853224 +193362,4011,Hilarious,1440871646 +193362,7360,Good remake,1440871906 +193362,7360,zombies,1440871902 +193362,48516,police corruption,1440871746 +193362,85736,not a movie,1440874098 +193362,85736,Pixar,1440874093 +193362,89470,apocalypse,1440873169 +193362,89470,virus,1440873172 +193407,1288,mockumentary,1156775216 +193407,8197,nearly perfect,1156775873 +193423,780,humorous,1453741588 +193423,1265,alternate reality,1453842419 +193423,1265,existentialism,1453842425 +193423,1265,self discovery,1453842422 +193423,1265,time loop,1453842417 +193423,1265,time travel,1453842427 +193423,1281,anti-war,1453840681 +193423,1281,satire,1453840678 +193423,1653,eugenics,1453778379 +193423,1653,genetic engineering,1453778372 +193423,1653,genetic selection,1453778462 +193423,1653,genetics,1453778375 +193423,1726,Kevin Costner,1453778565 +193423,1726,post-apocalyptic,1453778561 +193423,3105,Robin Williams,1453804705 +193423,3147,emotional,1453840220 +193423,4973,atmospheric,1453841368 +193423,4973,Audrey Tautou,1453779523 +193423,4973,cult film,1453779552 +193423,4973,French,1453779527 +193423,4973,great soundtrack,1453779580 +193423,4973,quirky,1453779530 +193423,4973,romance,1453779540 +193423,4973,surreal,1453779544 +193423,5445,Tom Cruise,1453778190 +193423,5617,Maggie Gyllenhaal,1453842194 +193423,5617,relationships,1453842208 +193423,8360,Dreamworks,1453740347 +193423,8638,intelligent,1453777859 +193423,8638,minimalist,1453777851 +193423,27660,cyberpunk,1453840922 +193423,27660,sci-fi,1453840925 +193423,27660,several short films,1453840928 +193423,34405,cult film,1453741422 +193423,34405,dystopia,1453741408 +193423,34405,Firefly,1453741411 +193423,34405,Nathan Fillion,1453741429 +193423,34405,quirky,1453741413 +193423,34405,sci-fi,1453741399 +193423,34405,social commentary,1453741445 +193423,34405,space,1453741407 +193423,34405,space western,1453741436 +193423,34405,witty,1453741415 +193423,60069,Cute!,1453740088 +193423,60069,dystopia,1453740083 +193423,60069,funny,1453740052 +193423,60069,Post apocalyptic,1453740043 +193423,60069,robots,1453740099 +193423,60069,social commentary,1453740055 +193423,68954,Pixar,1453740007 +193423,68954,touching,1453740010 +193423,70286,aliens,1453740698 +193423,70286,ending,1453740652 +193423,70286,mockumentary,1453740675 +193423,70286,segregation,1453740703 +193423,70286,South Africa,1453740660 +193423,71535,Abigail Breslin,1453839665 +193423,71535,dark comedy,1453839669 +193423,71535,Emma Stone,1453839683 +193423,71535,stylized violence,1453839675 +193423,77658,astronomy,1453740910 +193423,77658,Carl Sagan,1453740909 +193423,82461,atmospheric,1453840981 +193423,82461,bad plot,1453840974 +193423,82461,daft punk,1453840984 +193423,82461,futuristic,1453840970 +193423,82461,hot ladies,1453841016 +193423,82461,music,1453841021 +193423,82461,Olivia Wilde,1453840979 +193423,82461,soundtrack,1453840990 +193423,82461,stylized,1453840967 +193423,82461,visually appealing,1453841018 +193423,92259,based on a true story,1453804524 +193423,92259,french comedy,1453804540 +193423,92259,friendship,1453804508 +193423,92259,inspirational,1453804535 +193423,92259,social reform,1453804528 +193423,92259,soundtrack,1453804512 +193423,93363,based on a book,1453741335 +193423,93363,better than expected,1453741349 +193423,93363,funny moments,1453741345 +193423,93363,Mars,1453741338 +193423,93363,sci-fi,1453741343 +193423,93363,villain has no motive,1453741360 +193423,93805,alternate history,1453839240 +193423,93805,Laibach,1453840083 +193423,93805,parody,1453839236 +193423,94810,artificial intelligence,1453778996 +193423,94810,robots,1453779014 +193423,95167,Archery,1453741108 +193423,95167,Bechdel Test:Pass,1453741049 +193423,95167,celtic music,1453741045 +193423,95167,charming,1453741057 +193423,95167,coming of age,1453741064 +193423,95167,Kick-Butt Women,1453741069 +193423,95167,No Marriage at the End,1453741061 +193423,95167,Pixar,1453741073 +193423,95167,Scotland,1453741047 +193423,109487,artificial intelligence,1453739869 +193423,109487,Hans Zimmer,1453739852 +193423,109487,sci-fi,1453739857 +193423,109487,visually appealing,1453739881 +193423,113345,awful script,1453741307 +193423,125916,abuse,1453741661 +193423,134130,international cooperation,1453740300 +193423,134130,potatoes,1453740292 +193423,134130,sci-fi,1453740200 +193423,134130,science,1453740277 +193423,134130,scientific,1453740283 +193423,134130,sexist prejudice,1453740249 +193423,134130,space travel,1453740206 +193423,134170,80's nostalgia,1453841079 +193423,134170,hacking physics,1453841129 +193423,134170,parody,1453841083 +193423,134170,ridiculous,1453841077 +193513,54190,less than 300 ratings,1214525655 +193524,103042,Over-the-top action.,1372193263 +193524,103042,second half was worse,1372193267 +193524,103042,Superman,1372193260 +193524,103042,visually appealing,1372193284 +193558,31705,drama,1145228054 +193558,31705,muay thai,1145228038 +193558,31705,sexuality,1145228038 +193558,31705,transgender,1145228039 +193567,260,fantasy,1437449426 +193567,260,sci-fi,1437449418 +193585,260,sci-fi,1239620875 +193585,318,crime,1239620808 +193585,364,animation,1239619726 +193585,364,Disney,1239619723 +193585,539,Tom Hanks,1239626523 +193585,541,cyberpunk,1239620411 +193585,541,sci-fi,1239620370 +193585,589,sci-fi,1239620506 +193585,595,animation,1239619656 +193585,595,Disney,1239619647 +193585,1036,action,1239620720 +193585,1196,sci-fi,1239620577 +193585,1198,adventure,1239620682 +193585,1198,Steven Spielberg,1239620676 +193585,1200,sci-fi,1239620519 +193585,1210,sci-fi,1239620861 +193585,1214,sci-fi,1239620453 +193585,1240,sci-fi,1239620488 +193585,1291,Adventure,1239620623 +193585,1488,Brad Pitt,1239626693 +193585,1488,Harrison Ford,1239626697 +193585,2571,sci-fi,1239620553 +193585,2797,Tom Hanks,1239620145 +193585,4085,action,1239620096 +193585,4085,Eddie Murphy,1239620092 +193585,4886,animation,1239619749 +193585,4886,Pixar,1239619745 +193585,4993,fantasy,1239620825 +193585,5952,fantasy,1239620847 +193585,6377,animation,1239624626 +193585,6377,Pixar,1239624623 +193585,7153,fantasy,1239620836 +193585,49272,007,1239621548 +193585,50872,animation,1239619798 +193585,50872,pixar,1239619793 +193585,55995,Angelina Jolie,1239620059 +193585,55995,animation,1239620050 +193585,55995,fantasy,1239620054 +193585,58559,action,1239620733 +193585,58559,comics,1239620758 +193585,59315,comic book,1239620654 +193585,59315,Marvel,1239620650 +193585,59784,animation,1239624694 +193585,60069,Animation,1239619936 +193585,60069,pixar,1239619933 +193585,60684,comics,1239624433 +193588,1220,John Belushi,1424121584 +193588,1220,notable soundtrack,1424121589 +193588,111360,bad acting,1424121663 +193588,111360,bad ending,1424121663 +193588,111360,sci-fi,1424121663 +193589,260,nostalgia,1438815647 +193589,260,practical effects,1438815660 +193601,260,cult classic,1431157691 +193601,260,sci-fi,1431157687 +193601,96588,coming of age,1431158660 +193601,96588,musical numbers,1431158660 +193601,96588,screwball comedy,1431158660 +193604,108566,black and white,1432162991 +193604,108566,existentialism,1432162991 +193604,108566,french,1432162991 +193655,16,Martin Scorsese,1280883491 +193655,32,psychology,1280886447 +193655,47,psychology,1280886213 +193655,47,twist ending,1280886215 +193655,50,Kevin Spacey,1280886207 +193655,50,twist ending,1280886210 +193655,196,Nudity (Topless - Notable),1280886502 +193655,256,Arnold Schwarzenegger,1280886515 +193655,296,nonlinear,1280886234 +193655,296,Quentin Tarantino,1280886227 +193655,318,twist ending,1280886323 +193655,778,dark comedy,1280886287 +193655,778,drugs,1280886261 +193655,858,Oscar (Best Picture),1280886375 +193655,1080,Monty Python,1280886338 +193655,1080,satire,1280886341 +193655,1089,nonlinear,1280886231 +193655,1089,Quentin Tarantino,1280886222 +193655,1120,Edward Norton,1280886461 +193655,1120,Nudity (Full Frontal - Notable),1280886830 +193655,1136,Monty Python,1280886345 +193655,1136,parody,1280886347 +193655,1136,satire,1280886349 +193655,1198,Steven Spielberg,1280886403 +193655,1221,Oscar (Best Picture),1280886372 +193655,1225,Oscar (Best Picture),1280886440 +193655,1258,Stanley Kubrick,1280886505 +193655,1291,Steven Spielberg,1280886369 +193655,1569,Cameron Diaz,1280886465 +193655,1625,Michael Douglas,1280886251 +193655,1625,psychological,1280883607 +193655,1625,Sean Penn,1280886247 +193655,1625,twist ending,1280883604 +193655,1682,dark comedy,1280886257 +193655,2467,religion,1280886335 +193655,2959,dark comedy,1280886283 +193655,2959,psychology,1280886279 +193655,2959,surreal,1280886281 +193655,3252,Al Pacino,1280886327 +193655,3812,Woody Allen,1280886479 +193655,3949,drugs,1280886274 +193655,3949,psychology,1280886277 +193655,4011,Brad Pitt,1280886272 +193655,4011,twist ending,1280886270 +193655,4226,nonlinear,1280886240 +193655,4226,psychology,1280886238 +193655,4226,twist ending,1280886236 +193655,4383,Jean Reno,1280883410 +193655,4383,mystery,1280886384 +193655,4873,drugs,1280886046 +193655,4873,existentialism,1280886315 +193655,4873,philosophy,1280886044 +193655,4873,surreal,1280886048 +193655,4973,surreal,1280886435 +193655,4995,Oscar (Best Picture),1280883600 +193655,4995,psychology,1280886391 +193655,5613,dark comedy,1280886398 +193655,6874,nonlinear,1280886366 +193655,6874,Quentin Tarantino,1280883484 +193655,6953,Nonlinear,1280886492 +193655,6953,psychological,1280886494 +193655,6953,religion,1280886496 +193655,7147,surreal,1280886306 +193655,7153,Oscar (Best Picture),1280886413 +193655,7361,nonlinear,1280886381 +193655,7361,surreal,1280886379 +193655,7438,Quentin Tarantino,1280883496 +193655,27689,Jean Reno,1280883407 +193655,33166,Oscar (Best Picture),1280886429 +193655,33166,twist ending,1280886427 +193655,33794,superhero,1280886310 +193655,34198,Nudity (Full Frontal),1280883386 +193655,53956,dark comedy,1280886055 +193655,58559,psychology,1280886301 +193655,58559,superhero,1280886303 +193655,59315,Marvel,1280886473 +193655,63082,nonlinear,1280886320 +193655,63082,Oscar (Best Picture),1280886318 +193655,71033,romance,1280886218 +193655,74458,twist ending,1280883503 +193657,2959,brad pitt,1340662312 +193657,2959,edward norton,1340662327 +193657,4878,Boring,1340749706 +193657,4878,BORING!,1340749713 +193657,4878,DARK,1340749719 +193692,1245,atmospheric,1436401929 +193692,1245,gangsters,1436401926 +193692,1245,Mafia,1436401932 +193692,1245,neo-noir,1436401938 +193692,1245,twists & turns,1436401935 +193692,1625,mindfuck,1436401628 +193692,1625,Mystery,1436401666 +193692,1625,plot twist,1436401662 +193692,1625,psychological,1436401653 +193692,1625,the twists in the plot,1436401634 +193692,1625,thriller,1436401658 +193692,2959,atmospheric,1448672538 +193692,2959,complicated,1448672534 +193692,2959,dark,1448672549 +193692,2959,dark comedy,1448672497 +193692,2959,disturbing,1448672526 +193692,2959,mental illness,1448672529 +193692,2959,mindfuck,1448672505 +193692,2959,philosophical,1448672494 +193692,2959,powerful ending,1448672521 +193692,2959,psychological,1448672511 +193692,2959,psychology,1448672491 +193692,2959,quirky,1448672516 +193692,2959,social commentary,1448672542 +193692,2959,thought-provoking,1448672500 +193692,2959,twist,1448672563 +193692,2959,twist ending,1448672486 +193692,3949,addiction,1448667717 +193692,3949,atmospheric,1448667706 +193692,3949,dark,1448667699 +193692,3949,depressing,1448667735 +193692,3949,disturbing,1448667702 +193692,3949,drug abuse,1448667756 +193692,3949,drugs,1448667762 +193692,3949,emotional,1448667721 +193692,3949,great acting,1448667713 +193692,3949,intense,1448667770 +193692,3949,loneliness,1448667730 +193692,3949,powerful ending,1448667725 +193692,3949,psychological,1448667710 +193692,3949,psychology,1448667766 +193692,3949,R:intense depiction of drug addiction,1448667752 +193692,3949,social commentary,1448667739 +193692,3949,visually appealing,1448667759 +193692,4014,feel-good,1436483007 +193692,4014,food,1436483019 +193692,4014,food/cooking,1436483009 +193692,4014,france,1436483016 +193692,4014,magic realism,1436483022 +193692,4014,small town,1436483012 +193692,5418,action,1436402098 +193692,5418,cia,1436402094 +193692,5418,espionage,1436402066 +193692,5418,mystery,1436402090 +193692,5418,spies,1436402083 +193692,5418,spy,1436402069 +193692,5418,spying,1436402075 +193692,5418,thriller,1436402079 +193692,6214,dark,1448670425 +193692,6214,mindfuck,1448669769 +193692,78574,adapted from:book,1436479429 +193692,78574,authenticity,1436479443 +193692,78574,drama,1436479423 +193692,78574,drugs,1436479433 +193692,78574,family relationships,1436479558 +193692,78574,Jennifer Lawrence,1436479547 +193692,78574,John Hawkes,1436479537 +193692,78574,ozarks,1436479528 +193692,78574,raw,1436479457 +193692,78574,Realistic. Strong.,1436479467 +193692,78574,resilience,1436479416 +193692,78574,rural,1436479531 +193692,78574,slow,1436479543 +193692,78574,slow developing story,1436479505 +193692,112171,Denzel Washington,1436481204 +193692,112171,revenge,1436481207 +193692,112171,russian mafia,1436481210 +193692,115149,Action,1436402334 +193692,115149,Hitman,1436402275 +193692,115149,mafia,1436402298 +193692,115149,mob,1436402291 +193692,115149,russian mafia,1436402279 +193692,115149,violent,1436402339 +193692,139642,boxing,1441667233 +193692,139642,drama,1441667196 +193692,139642,inspirational,1441667170 +193692,139642,inspiring,1441667183 +193692,139642,real,1441667247 +193697,260,EPIC,1440106462 +193697,260,space adventure,1440106494 +193722,593,Anthony Hopkins,1366895379 +193722,66203,Ben Affleck,1366895423 +193722,66203,Bradley Cooper,1366895423 +193726,260,classic sci-fi,1444500636 +193737,88108,comedy,1424728796 +193737,88108,fashion,1424728796 +193737,88108,youth,1424728796 +193737,104374,touching,1442697291 +193737,115667,best friends fall in love,1430335866 +193737,115667,love story,1430335866 +193737,115667,romance,1430335866 +193737,118900,closure,1430336037 +193755,260,sci-fi,1273273928 +193755,260,space,1273273931 +193755,500,Robin Williams,1273274452 +193755,593,serial killer,1273273862 +193755,608,Coen Brothers,1273274295 +193755,1175,Black comedy,1271540487 +193755,1175,cannibalism,1271540502 +193755,1175,comedy,1271540486 +193755,1175,dark comedy,1271540482 +193755,1175,dark humor,1271540489 +193755,1175,French,1271540503 +193755,1175,Post apocalyptic,1271540496 +193755,1175,quirky,1271540492 +193755,1175,stylized,1271540493 +193755,1196,sci-fi,1273274149 +193755,1196,space,1273274151 +193755,1199,black comedy,1271540526 +193755,1199,Robert De Niro,1271540530 +193755,1199,Terry Gilliam,1271540529 +193755,1199,thought-provoking,1271540535 +193755,1265,Bill Murray,1273274435 +193755,1265,surreal,1273274429 +193755,1721,romance,1273274107 +193755,1923,Ben Stiller,1273274374 +193755,2571,sci-fi,1273274728 +193755,2858,dark comedy,1273273960 +193755,2858,surrealism,1273273967 +193755,2959,surreal,1273273902 +193755,2959,twist ending,1273273895 +193755,2997,surreal,1273274342 +193755,3793,action,1273274367 +193755,4878,surreal,1273274756 +193755,4995,psychology,1273274138 +193755,5418,action,1273274210 +193755,5618,alternate reality,1271540571 +193755,5618,animated,1271540565 +193755,5618,animation,1271540564 +193755,5618,anime,1271540562 +193755,5618,fantasy,1271540554 +193755,5618,Studio Ghibli,1271540556 +193755,6711,atmospheric,1273274275 +193755,6711,Bill Murray,1273274279 +193755,48394,fantasy,1273274657 +193755,48394,surreal,1273274661 +193755,60069,post-apocalyptic,1273274168 +193755,68358,sci-fi,1273274230 +193755,68358,space,1273274227 +193755,72998,sci-fi,1273273988 +193775,527,Emotional,1439766937 +193803,296,auteur,1429870295 +193803,296,crime,1429870295 +193803,296,dark comedy,1429870295 +193803,109374,auteur,1429870071 +193807,260,classic,1432680726 +193807,260,Harrison Ford,1432680738 +193807,134113,campy,1432680961 +193807,134113,cheeseball,1432680955 +193815,86781,heartbreaking,1426103668 +193815,86781,tension,1426103668 +193815,86781,violance,1426103668 +193815,120466,anticipation,1426880067 +193815,120466,artificial intelligence,1426880067 +193815,120466,singularity,1426880067 +193846,3327,Mick Foley,1271449582 +193846,3327,Terry Funk,1271449568 +193846,55995,neil gaiman,1271449486 +193848,27706,Adventure,1436225420 +193848,27706,based on a book,1436225398 +193848,27706,dark comedy,1436225411 +193848,27706,eerie,1436225416 +193848,27706,quirky,1436225408 +193848,27706,stylized,1436225423 +193848,134853,introspective,1436225517 +193848,134853,nostalgic,1436225517 +193848,134853,surreal,1436225517 +193855,1291,Adventure,1449354282 +193855,1291,classic,1449354299 +193855,5952,author:J. R. R. Tolkein,1449354258 +193855,5952,fantasy,1449354244 +193881,1148,Aardman,1251308181 +193881,1148,Clay Animation,1251308177 +193881,1148,claymation,1251308174 +193881,7361,bittersweet,1251308138 +193881,7361,imagination,1251308141 +193881,7361,love,1251308129 +193881,7361,nonlinear,1251308133 +193881,7361,quirky,1251308116 +193881,7361,surreal,1251308123 +193881,7361,thought-provoking,1251308126 +193914,15,pirates,1253470997 +193914,215,jolie delpy,1366756879 +193914,331,mental illness,1367814511 +193914,353,cult film,1296163379 +193914,353,gothic,1296163370 +193914,390,Russ Meyer,1274519054 +193914,422,thriller,1367814765 +193914,778,drugs,1306031210 +193914,999,ensemble cast,1367814341 +193914,1069,mystery,1367814538 +193914,1197,fantasy,1271753310 +193914,1957,inspirational,1367814463 +193914,2097,dark,1367814324 +193914,2240,high school,1367814444 +193914,2297,Robin Williams,1330776445 +193914,2431,inspirational,1367814463 +193914,2443,ensemble cast,1367814341 +193914,2467,Christian Slater,1304879328 +193914,2467,medieval,1304879389 +193914,2467,religion,1304879354 +193914,2467,Sean Connery,1304879334 +193914,2483,dark,1367814324 +193914,2502,comedy,1271753329 +193914,2502,cult classic,1271753326 +193914,2502,Geeky,1271753377 +193914,2583,ensemble cast,1367814341 +193914,2596,cult film,1293549611 +193914,2596,punk,1271753045 +193914,2793,Julie Delpy,1264512898 +193914,2806,high school,1367814444 +193914,2941,oscar (best cinematography),1367814639 +193914,2968,John Cleese,1255769073 +193914,3015,tense,1367814751 +193914,3071,inspirational,1367814463 +193914,3230,nazis,1367814566 +193914,3477,Cult classic,1264513021 +193914,3477,damn the man,1264513023 +193914,3477,great soundtrack,1264513027 +193914,3477,music,1264513032 +193914,3477,witty,1264513039 +193914,3505,thriller,1367814764 +193914,3693,Cult Classic,1271753388 +193914,3822,black and white,1367814237 +193914,4043,father-son relationship,1367814383 +193914,4068,high school,1367814444 +193914,4212,mystery,1367814538 +193914,4251,violent,1367814779 +193914,4336,tense,1367814751 +193914,4345,ensemble cast,1367814341 +193914,4347,nazis,1367814568 +193914,4432,black and white,1367814237 +193914,4640,violent,1367814779 +193914,4655,politics,1367814706 +193914,4661,thriller,1367814764 +193914,4769,nazis,1367814569 +193914,4814,thriller,1367814764 +193914,4845,stupid,1367814735 +193914,4947,police,1367814682 +193914,4969,mystery,1367814538 +193914,5021,ensemble cast,1367814341 +193914,5213,christianity,1367814287 +193914,5267,inspirational,1367814463 +193914,5486,Tim Allen,1253836055 +193914,5501,stupid,1367814735 +193914,5564,high school,1367814444 +193914,5570,tense,1367814751 +193914,5954,Edward Norton,1280729961 +193914,6185,police,1367814683 +193914,6202,Israeli,1253971387 +193914,6216,nazis,1367814569 +193914,6260,christianity,1367814287 +193914,6299,oscar (best cinematography),1367814639 +193914,6371,franchise,1367814403 +193914,6630,christianity,1367814288 +193914,6639,tense,1367814751 +193914,6639,thriller,1367814765 +193914,6776,Bollywood,1350237819 +193914,6875,nudity (topless - notable),1367814602 +193914,6896,nazis,1367814569 +193914,6981,christianity,1367814287 +193914,7076,Steve McQueen,1280671734 +193914,7223,mystery,1367814538 +193914,7235,violent,1367814779 +193914,7241,nazis,1367814567 +193914,7260,christianity,1367814287 +193914,7831,mystery,1367814538 +193914,7834,mystery,1367814538 +193914,7934,black and white,1350583835 +193914,8196,good music,1274489057 +193914,8196,Russ Meyer,1274489044 +193914,8207,thriller,1367814764 +193914,8516,black and white,1367814236 +193914,25769,father-son relationship,1367814383 +193914,26003,black and white,1367814237 +193914,26078,politics,1367814706 +193914,26122,dark,1367814325 +193914,27002,Series,1252605481 +193914,27036,Added,1336599684 +193914,27036,Hallmark Channel Production,1266308570 +193914,27036,Martin Short,1264513010 +193914,27036,Sam Neill,1264513004 +193914,27251,Hallmark Channel Production,1266661147 +193914,27251,too long,1266661141 +193914,27369,MTV,1246862882 +193914,27700,violent,1367814779 +193914,31225,inspirational,1367814464 +193914,31952,dark,1367814325 +193914,40339,pixar,1367814664 +193914,40697,Added,1386612007 +193914,40697,tv series,1386611995 +193914,43853,drugs,1252676980 +193914,46322,Jet Li,1252531773 +193914,46322,martial arts,1252531757 +193914,48516,Martin Scorsese,1280131359 +193914,50059,added,1340449280 +193914,50059,remake,1340412163 +193914,50798,stupid,1367814735 +193914,52299,punk,1271753189 +193914,52885,anime,1292771487 +193914,53123,good music,1266402023 +193914,53123,romance,1266402028 +193914,55247,great soundtrack,1270074720 +193914,57464,Elisha Cuthbert,1253304752 +193914,57464,twist ending,1253304771 +193914,57532,stupid,1367814734 +193914,61246,Steve Coogan,1278635586 +193914,62792,police,1367814683 +193914,63436,franchise,1367814403 +193914,63859,pixar,1367814664 +193914,65651,Added,1336600006 +193914,65665,Added,1336599675 +193914,65665,Campbell Scott,1253051397 +193914,65665,easily confused with other movie(s) (title),1253051394 +193914,65665,Hallmark Channel Production,1266308540 +193914,65667,punk,1271753214 +193914,66240,based on tv series,1285807328 +193914,66240,Ellen Muth,1285807336 +193914,66665,Maya Rudolph,1254341101 +193914,66665,pregnancy,1254342958 +193914,67361,Added,1336599835 +193914,67408,pixar,1367814664 +193914,67695,Seth Rogen,1252187421 +193914,67923,franchise,1367814403 +193914,68237,slow paced,1266518368 +193914,68484,Added,1336600059 +193914,68749,Jennifer Aniston,1253005992 +193914,68749,Woody Harrelson,1253005998 +193914,69251,Added,1336599874 +193914,69275,Nazis,1244855493 +193914,69275,Zombies,1244855493 +193914,69406,Ryan Reynolds,1254390849 +193914,69685,MTV,1246862813 +193914,69981,Added,1336600066 +193914,69981,based on a book,1248429051 +193914,69981,based on a true story,1248429019 +193914,70133,Added,1336599877 +193914,70133,Jeff Daniels,1266426342 +193914,70133,Lauren Graham,1266426310 +193914,70282,childish,1266300681 +193914,70559,Added,1336600051 +193914,70559,organized crime,1253568901 +193914,70587,aliens,1252531969 +193914,70587,homage,1250864505 +193914,70839,Added,1336600010 +193914,70839,based on a book,1251888147 +193914,70839,Nora Roberts,1279293963 +193914,70843,Added,1336600036 +193914,70843,based on a book,1251898904 +193914,70843,Nora Roberts,1279293997 +193914,70867,Added,1336600080 +193914,70869,Added,1336600054 +193914,70869,based on a book,1251986764 +193914,70869,Nora Roberts,1279294003 +193914,70891,Added,1336600084 +193914,70891,based on a book,1252075017 +193914,70891,Nora Roberts,1279294000 +193914,71094,Added,1336599603 +193914,71264,pixar,1367814664 +193914,71468,annoying little girl,1280422489 +193914,71535,guns,1266577598 +193914,71535,zombies,1266577608 +193914,71993,Added,1336600022 +193914,71995,Added,1336600076 +193914,72013,Added,1336599703 +193914,72013,hallmark channel production,1286401222 +193914,72287,Added,1336599569 +193914,72287,foreign,1257890560 +193914,72287,Short,1257890571 +193914,72489,martial arts,1278723418 +193914,72489,ninja,1278723423 +193914,73266,Michael Cera,1296478945 +193914,73266,Steve Buscemi,1296478948 +193914,73268,Sam Neill,1269728938 +193914,73268,vampires,1269728930 +193914,74446,Added,1336599650 +193914,74446,Hallmark Channel Production,1266425312 +193914,74446,Sherlock Holmes,1266425348 +193914,74448,Added,1336599619 +193914,74448,Hallmark Channel Production,1266425485 +193914,74448,Sherlock Holmes,1266425496 +193914,74471,Added,1336599587 +193914,74471,Hallmark Channel Production,1266517938 +193914,74471,Sherlock Holmes,1266518016 +193914,74473,Added,1336599666 +193914,74473,Hallmark Channel Production,1266518176 +193914,74473,Sherlock Holmes,1266518182 +193914,74657,drugs,1268992662 +193914,74677,politics,1367814706 +193914,74789,3D,1273668007 +193914,76093,animation,1299852704 +193914,77561,Scarlett Johansson,1286232251 +193914,78059,Added,1336599559 +193914,78637,franchise,1367814403 +193914,79091,pixar,1367814664 +193914,79539,Added,1336600045 +193914,79702,geeky,1288566969 +193914,79702,Michael Cera,1288566976 +193914,79702,music,1288566973 +193914,79860,Added,1336599844 +193914,79860,based on a book,1282253807 +193914,79860,remake,1282253814 +193914,80181,Added,1336599911 +193914,80181,Open Source,1284135114 +193914,81564,pixar,1367814664 +193914,81713,Added,1336599627 +193914,81713,Kevin Sorbo,1289423933 +193914,81713,Val Kilmer,1289423929 +193914,81731,Added,1336599860 +193914,81731,series,1289484906 +193914,83349,Cameron Diaz,1303339223 +193914,83349,comic book,1303339225 +193914,83349,Seth Rogen,1303339219 +193914,83611,Added,1336599547 +193914,84154,Added,1336600239 +193914,86785,Added,1336600087 +193914,86785,based on a book,1305206167 +193914,86785,Nora Roberts,1305206143 +193914,86787,Added,1336600062 +193914,86787,based on a book,1305205819 +193914,86787,Nora Roberts,1305205812 +193914,86809,Added,1336599577 +193914,86809,based on a book,1305286367 +193914,86809,Nora Roberts,1305286362 +193914,86811,Added,1336600039 +193914,86811,based on a book,1305286432 +193914,86811,Nora Roberts,1305286425 +193914,87304,father-son relationship,1367814383 +193914,88349,Added,1336600069 +193914,88349,bad acting,1311248075 +193914,89864,Joseph Gordon-Levitt,1325889693 +193914,91235,Added,1336599599 +193914,92152,Added,1336599965 +193914,92698,Added,1336599595 +193914,94410,added,1336599464 +193914,94410,David Tennant,1344735333 +193914,94410,modernisation,1344735320 +193914,94412,added,1336599470 +193914,94412,weird,1336873055 +193914,94435,added,1336600306 +193914,94466,added,1336657923 +193914,94466,series,1336657932 +193914,94466,technophobic,1336657965 +193914,95205,Added,1340449271 +193914,96296,added,1345761890 +193914,96610,added,1347137897 +193914,99114,violent,1367814779 +193914,100714,Added,1361560898 +193914,107516,added,1388077635 +193914,107951,Added,1389398062 +193914,109157,Added,1392453176 +193914,111362,Added,1400130747 +193914,111781,Added,1401727394 +193914,115502,Added,1414349731 +193945,260,sci-fi,1433380046 +193945,260,space action,1433380063 +193945,1682,alternate reality,1435256239 +193945,1682,dystopia,1435256236 +193945,1682,Jim Carrey,1435256231 +193945,1682,philosophy,1435256242 +193945,3535,serial killer,1444672205 +193945,6323,mystery,1442097867 +193945,6323,serial killer,1442097871 +193945,6323,surreal,1442097878 +193945,6323,thriller,1442097880 +193945,6323,twist ending,1442097864 +193945,7254,alternate endings,1441913147 +193945,7254,alternate reality,1441913141 +193945,7254,intense,1441913151 +193945,7254,psychology,1441913139 +193945,7254,thought-provoking,1441913149 +193945,7254,time travel,1441913138 +193945,7254,twist ending,1441913153 +193945,7263,hockey,1438975016 +193945,7263,Sports,1438975018 +193945,39446,serial killer,1444694046 +193945,44199,intelligent thriller,1434688451 +193945,44199,twist ending,1434688448 +193945,51540,serial killer,1444425337 +193945,59315,Marvel,1434687955 +193945,59315,superhero,1434687951 +193945,59315,technology,1434687967 +193945,65882,Twist Ending,1440132801 +193945,76175,mythology,1433444624 +193945,77561,Marvel,1434688041 +193945,77561,Scarlett Johansson,1434688038 +193945,77561,sci-fi,1434688045 +193945,77561,superhero,1434688036 +193945,78349,experiment,1437177697 +193945,78349,group psychology,1437177700 +193945,78349,psychological,1437177702 +193945,79132,action,1434688074 +193945,79132,alternate reality,1434688058 +193945,79132,complicated,1434688070 +193945,79132,heist,1434688077 +193945,79132,intellectual,1434688081 +193945,79132,mindfuck,1434688067 +193945,79132,surreal,1434688060 +193945,79132,thought-provoking,1434688062 +193945,87232,cold war,1433444667 +193945,87232,Jennifer Lawrence,1434688015 +193945,87232,Marvel,1434688008 +193945,87232,superhero,1434687985 +193945,87869,raunchy,1434479292 +193945,88140,Marvel,1434688125 +193945,88140,patriotic,1434688136 +193945,88140,superhero,1434688127 +193945,88140,world war ii,1434688131 +193945,93270,party,1433444691 +193945,93510,funny,1434688160 +193945,93510,high school,1434688153 +193945,95510,Emma Stone,1434688188 +193945,95510,Marvel,1434688195 +193945,95510,Spider-Man,1434688190 +193945,95510,superhero,1434688192 +193945,97752,too long,1440960016 +193945,102903,deception,1434688217 +193945,102903,illusions,1434688209 +193945,102903,magic,1433444206 +193945,106002,twist ending,1434764799 +193945,110102,Captain America,1434687888 +193945,110102,Chris Evans,1434687871 +193945,110102,conspiracy,1434687898 +193945,110102,Fight Choreography,1434687894 +193945,110102,Marvel,1434687892 +193945,110102,Political,1433444132 +193945,110102,Scarlett Johansson,1434687881 +193945,110102,superhero,1434687883 +193945,110553,Emma Stone,1434688230 +193945,110553,sad,1434688242 +193945,110553,superhero,1434688233 +193945,110591,mindfuck,1443198950 +193945,111362,Jennifer Lawrence,1434688286 +193945,111362,Marvel,1434688290 +193945,111362,superpowers,1434688307 +193945,111362,time travel,1434688292 +193945,113780,devil,1438109067 +193945,113780,hell,1438109073 +193945,113780,sins,1438109079 +193945,117308,football,1433444550 +193945,117529,Chris Pratt,1434852979 +193945,117529,dinosaurs,1434852968 +193945,119145,british,1434688404 +193945,119145,spy,1434688400 +193945,119145,spy thriller,1434688407 +193945,122892,epic,1433444109 +193945,122892,Marvel,1434687922 +193945,122892,superhero,1434687925 +193945,122900,heist,1437177575 +193945,122900,Marvel,1437177671 +193945,122900,superhero,1437177673 +193945,126420,heist,1441578474 +193956,156,minimalist,1141071551 +193956,215,minimalist,1141071641 +193956,232,minimalist,1141072053 +193956,903,Atmospheric,1141070580 +193956,1203,minimalist,1141071609 +193956,1348,Free to download,1144872335 +193956,1454,minimalist,1141071725 +193956,1635,Atmospheric,1141070757 +193956,1810,Atmospheric,1141070789 +193956,2019,action,1141142169 +193956,2160,Atmospheric,1141070815 +193956,2303,Atmospheric,1141070772 +193956,2313,Atmospheric,1141071064 +193956,2762,Atmospheric,1141070959 +193956,3168,Atmospheric,1141070903 +193956,3362,Atmospheric,1141070831 +193956,3424,Atmospheric,1141070892 +193956,3504,Atmospheric,1141070936 +193956,3521,Atmospheric,1141071133 +193956,3676,Atmospheric,1141071097 +193956,3735,Atmospheric,1141070950 +193956,4848,Atmospheric,1141070924 +193956,4888,minimalist,1141071582 +193956,5105,Atmospheric,1141070863 +193956,7460,Atmospheric,1141071172 +193956,7460,minimalist,1141071502 +193956,7766,Atmospheric,1141071040 +193956,8638,minimalist,1141071653 +193956,8783,Atmospheric,1141071012 +193956,34437,Atmospheric,1141071161 +193977,36529,dark comedy,1236232048 +194005,260,fantasy,1439859615 +194005,260,space opera,1439859624 +194022,96917,psychothriller,1425511438 +194022,96917,suspense,1425511438 +194022,96917,thriller,1425511438 +194025,260,oldschool,1432421290 +194025,260,visual,1432421316 +194033,4212,Agatha Christie,1220593181 +194033,4212,author:Agatha Christie,1220593185 +194033,4308,musical,1220593595 +194033,4469,author:Agatha Christie,1220593361 +194033,4469,Hercule Poirot,1220593359 +194033,4969,author:Agatha Christie,1220593264 +194033,5008,Agatha Christie,1220593138 +194033,5008,author:Agatha Christie,1220593144 +194033,5008,courtroom drama,1220593148 +194033,6077,author:Agatha Christie,1220593339 +194033,6077,Hercule Poirot,1220593336 +194033,8879,Agatha Christie,1220593227 +194033,8879,author:Agatha Christie,1220593231 +194033,49272,James Bond,1220593729 +194034,4306,animation,1449484026 +194034,4306,Funny,1449484031 +194034,76093,adorable,1449484077 +194034,76093,animation,1449484011 +194034,76093,cute,1449484043 +194034,76093,dragons,1449484041 +194034,76093,family,1449484045 +194034,79091,comedy,1449484137 +194034,79091,family,1449484138 +194034,79091,heartwarming,1449484140 +194034,79091,minions,1449484135 +194034,81847,family,1449484094 +194034,81847,feel good,1449484093 +194034,81847,mother daughter relationship,1449484096 +194034,95167,charming,1449484066 +194034,95167,family,1449484056 +194034,95167,feminist,1449484128 +194034,95167,heart warming,1449484055 +194034,95167,mother-daughter relationships,1449484059 +194034,106696,animation,1449484107 +194034,106696,feminist,1449484110 +194034,106696,sisters,1449484104 +194035,920,Oscar (Best Picture),1157550095 +194047,260,cosmos,1432647602 +194047,260,sci-fi,1432647594 +194047,260,space epic,1432647615 +194047,1527,action,1432980170 +194047,1527,Luc Besson,1432980161 +194047,1527,sci-fi,1432980163 +194047,42718,action,1432980314 +194047,42718,French,1432980324 +194047,42718,Luc Besson,1432980190 +194047,42718,Paris,1432980326 +194047,42718,parkour,1432980117 +194047,60950,Javier Bardem,1435637204 +194047,60950,love,1435637224 +194047,60950,relationships,1435637223 +194047,60950,romance,1435637203 +194047,60950,Scarlett Johansson,1435637184 +194047,60950,sexuality,1435637188 +194047,74668,action,1432980259 +194047,74668,Luc Besson,1432980248 +194047,106920,artificial intelligence,1435637084 +194047,106920,Human Computer Interaction,1435637140 +194047,106920,joaquin phoenix,1435637106 +194047,106920,loneliness,1435637138 +194047,106920,Scarlett Johansson,1435637092 +194047,106920,sci-fi,1435637106 +194047,106920,thought-provoking,1435637089 +194047,111360,intense,1433146462 +194047,111360,Luc Besson,1433146392 +194047,111360,Scarlett Johansson,1433146439 +194047,111360,sci-fi,1433146421 +194059,260,Science Fiction,1436895399 +194059,260,starwars,1436895418 +194059,106782,intense,1436896422 +194059,106782,revealing,1436896422 +194059,106782,thought-provoking,1436896422 +194076,173,not really interested',1148767122 +194076,2422,not good at all,1148767108 +194076,2995,bad acting,1148767094 +194138,260,classic,1439422579 +194138,260,space action,1439422598 +194138,260,space adventure,1439422608 +194176,60684,based on a comic,1241729742 +194176,60684,dystopia,1241729746 +194176,60684,penis movie,1241729750 +194176,60684,storytelling,1241729764 +194176,67408,3D,1241729708 +194176,67408,Hugh Laurie,1241729692 +194176,74545,British,1271180322 +194176,74545,Ending,1271180329 +194176,74545,espionage,1271180312 +194176,74545,Ewan McGregor,1271180315 +194176,74545,James Belushi,1271180337 +194176,74545,Kim Cattrall,1271180339 +194176,74545,Olivia Williams,1271180343 +194176,74545,Roman Polanski,1271180345 +194180,1069,mystery,1368051533 +194180,1957,inspirational,1368051490 +194180,2097,dark,1368051376 +194180,2443,ensemble cast,1368051414 +194180,2583,ensemble cast,1368051414 +194180,2806,high school,1368051475 +194180,3230,nazis,1368051547 +194180,3300,Vin Diesel,1241494625 +194180,3505,thriller,1368051796 +194180,4212,mystery,1368051533 +194180,4389,cliche,1316669211 +194180,4389,Mischa Barton,1316669169 +194180,4389,Piper Perabo,1316669165 +194180,4389,poor acting,1316669229 +194180,4655,politics,1368051692 +194180,4661,thriller,1368051797 +194180,4947,police,1368051650 +194180,4969,mystery,1368051533 +194180,5021,ensemble cast,1368051414 +194180,5570,tense,1368051773 +194180,5585,stupid,1368051748 +194180,5642,police,1368051650 +194180,5892,Arctic,1270666514 +194180,5892,dirigibles,1270666536 +194180,6260,christianity,1368051350 +194180,6299,oscar (best cinematography),1368051590 +194180,6371,franchise,1368051458 +194180,7162,oscar (best cinematography),1368051590 +194180,7831,mystery,1368051533 +194180,7981,hard to follow,1250773944 +194180,8207,tense,1368051773 +194180,8207,thriller,1368051796 +194180,8370,cgi blood,1252134350 +194180,8477,black and white,1368051321 +194180,26003,black and white,1368051321 +194180,26078,politics,1368051692 +194180,26269,father-son relationship,1368051437 +194180,27721,oscar (best cinematography),1368051590 +194180,30812,mental illness,1368051510 +194180,32840,black and white,1316495787 +194180,32840,design,1316495676 +194180,32840,stop motion,1316495650 +194180,33166,Seen 2005,1138246862 +194180,34271,Music,1137956335 +194180,34271,Seen 2006,1138247018 +194180,38038,Seen 2006,1139904052 +194180,39183,Seen 2006,1139904179 +194180,41997,Seen 2006,1138246966 +194180,41997,Spielberg,1137635457 +194180,44193,high school,1368051475 +194180,53519,dialogue,1270666794 +194180,53519,Direction,1270666687 +194180,53519,Quentin Tarantino,1270666767 +194180,53519,Zoe Bell,1270666661 +194180,55555,interwoven lives,1244268313 +194180,57528,violent,1368051813 +194180,58303,Devid Striesow,1269756949 +194180,58303,true story,1269756888 +194180,59037,colourful,1250773772 +194180,59037,not for children,1250773826 +194180,59037,poor acting,1250773696 +194180,59037,poor story,1250773742 +194180,59037,visually stunning,1250773793 +194180,61729,Ricky Gervais,1247112099 +194180,61729,story,1247113626 +194180,62792,police,1368051650 +194180,62801,father-son relationship,1368051437 +194180,64614,cliche dialogue,1250773875 +194180,64993,Art Direction,1330707153 +194180,64993,Backgrounds,1330707122 +194180,64993,characterization,1330707219 +194180,64993,intimate,1330707185 +194180,65261,beach,1250773429 +194180,65261,fish out of water,1250773496 +194180,65261,friendship,1250773462 +194180,65261,Ghibli,1250773348 +194180,65261,Japan,1250773572 +194180,65261,lacks tension,1252134505 +194180,65261,mermaid,1250773523 +194180,65261,Studio Ghibli,1250773361 +194180,65261,Tsunami,1250773319 +194180,66097,3D,1238090011 +194180,66097,gothic,1238089933 +194180,66097,stop motion,1238089950 +194180,66130,debt collection,1251040736 +194180,66130,gangs,1251040843 +194180,66130,injuries,1251040787 +194180,66130,revenge,1251040331 +194180,67087,bromantic,1250773614 +194180,67087,comedy,1250773629 +194180,67923,franchise,1368051458 +194180,68791,arnold cgi,1252135040 +194180,68791,bad plot,1252134989 +194180,68954,adventure,1244268588 +194180,68954,ballooning,1244268543 +194180,68954,computer animation,1244268633 +194180,68954,dreams,1244268600 +194180,68954,friendship,1244268492 +194180,68954,Peter Docter,1244268671 +194180,68954,storytelling,1244268807 +194180,69122,comedy,1267944687 +194180,69122,drugs,1267944679 +194180,69481,Bechdel Test:Fail,1264693145 +194180,69481,intense,1264693164 +194180,69481,Middle East,1264693174 +194180,69481,realistic,1264693159 +194180,69714,dancing,1247111938 +194180,69714,fun,1247111954 +194180,69714,Hollywood,1247111994 +194180,69714,Kareena Kapoor,1252134690 +194180,69714,weak story,1247111981 +194180,71108,bad ending,1269584398 +194180,71254,Gerard Butler,1264349079 +194180,71254,gratuitous sex,1264349059 +194180,71254,gratuitous violence,1264349052 +194180,71254,killing,1264349087 +194180,71254,poorly directed,1264349313 +194180,71254,predictable,1264349153 +194180,71254,stupid,1264349007 +194180,71254,Zoe Bell,1264349180 +194180,71464,bad ending,1269584483 +194180,71464,Bleak,1269584571 +194180,71928,Alexander Siddig,1270666330 +194180,71928,Egypt,1270666320 +194180,71928,fidelity,1270666450 +194180,71928,travel,1270666473 +194180,72733,lacks tension,1317016388 +194180,72998,ecology,1262798452 +194180,72998,Gaia,1262798543 +194180,72998,Jackboot Science fiction,1262798597 +194180,73017,CGI,1270757430 +194180,73776,competition,1263799404 +194180,73776,culture clash,1263799293 +194180,73776,Danish,1263799275 +194180,73776,family dynamics,1263799463 +194180,73776,kung fu,1263799275 +194180,73776,soundtrack,1263799378 +194180,73776,strong woman,1263799307 +194180,73776,Turkish,1263799275 +194180,76873,bad story,1271461645 +194180,76873,crime family,1271461761 +194180,76873,far fetched,1271461718 +194180,76873,hitman,1271461739 +194180,76873,Lucy Lawless,1271461623 +194180,76873,stunt woman,1271461680 +194180,76873,stunts,1271461684 +194180,76873,Zoe Bell,1271461608 +194180,77561,bad science,1275105394 +194180,78637,franchise,1368051457 +194180,82167,Drug use,1321808836 +194180,82167,Nudity (Topless),1321808961 +194180,82167,Pharmaceutical companies,1321808873 +194180,82202,chemistry between actors,1302499550 +194180,82202,dialogue,1302499536 +194180,82202,predictable,1302499573 +194180,82202,slow paced,1302499520 +194180,84152,Abbie Cornish,1302057905 +194180,84152,Andrew Howard,1302057798 +194180,84152,Bradley Cooper,1302057589 +194180,84152,cinematography,1302057687 +194180,84152,concept,1302057812 +194180,84152,human potential,1302057520 +194180,84152,Message,1302057639 +194180,84152,moral,1302057574 +194180,84152,Robert De Niro,1302057603 +194180,84152,visual effects,1302057678 +194180,84392,cliche,1315032972 +194180,84392,contrived,1315033046 +194180,84392,stereotypical,1315032981 +194180,84392,stilted,1315033000 +194180,84772,Atheism,1313823794 +194180,84772,cgi,1313823942 +194180,84772,digital actor,1313823928 +194180,84772,few funny scenes,1313823967 +194180,84772,good heart,1313823827 +194180,84834,Art Direction,1299052694 +194180,84834,Maggie Q,1299052677 +194180,84834,storytelling,1299052711 +194180,84944,boring,1330707017 +194180,86059,animation,1302499283 +194180,86059,James Marsden,1302499338 +194180,86059,Russel Brand,1302499310 +194180,86059,slow pacing,1302499262 +194180,86190,Cinematography,1319005626 +194180,87306,Lens flares,1308163423 +194180,87306,Steven Spielberg,1308163400 +194180,87306,Story,1308163385 +194180,89774,slow,1327220262 +194180,91250,Deepika Padukone,1322190396 +194180,91250,stupid,1322190378 +194180,91500,ending,1333567133 +194180,91500,Jennifer Lawrence,1333567166 +194180,91500,Shaky camera,1333567097 +194180,91844,cinematography,1324424030 +194180,91844,Field hockey,1324424073 +194180,91844,ShahRukh Khan,1324424009 +194180,91844,team-building,1324424050 +194180,93721,Fish,1333149491 +194180,93721,Ginza,1333149421 +194180,93721,Gourmet,1333149351 +194180,93721,Japan,1333149372 +194180,93721,minimalist,1333149645 +194180,93721,sushi,1333149351 +194180,93721,Tokyo,1333149364 +194180,94864,characterization,1339909335 +194180,94864,Sets,1339909376 +194180,94864,technology,1339909395 +194180,99114,violent,1368051814 +194180,99249,gender identity,1356424343 +194180,99249,MILITARY LIFE,1356424315 +194180,99249,training montage,1356424448 +194180,99549,Comedy,1357314401 +194180,104379,Deepika Padukone,1377039743 +194180,104379,gangsters,1377039880 +194180,104379,Goa,1377039823 +194180,104379,love,1377040053 +194180,104379,Rameshwaram,1377039953 +194180,104379,ShahRukh Khan,1377039674 +194180,104379,subtitles,1377040233 +194180,104379,trains,1377040053 +194180,106489,Dubious physics,1389584351 +194180,108601,Cinematography,1390982608 +194180,108601,Leslie-Ann Brandt,1390982641 +194180,108601,Story,1390982621 +194180,112183,Edward Norton,1425280129 +194180,112183,great performances,1425280121 +194180,112183,magical realism,1425280135 +194180,112183,Michael Keaton,1425280148 +194180,112183,single shot,1425280163 +194180,117438,beautiful,1440873476 +194180,117438,pacing,1440873496 +194180,117438,Studio Ghibli,1440873472 +194180,118696,Silly creatures,1418712200 +194180,118696,Throwing physics away,1418712146 +194180,119145,colin firth,1434404375 +194180,119145,gratuitous violence,1434404226 +194180,119145,violent,1434404261 +194202,3,comedinha de velhinhos engraçada,1215104388 +194202,48,David Ogden Stiers,1217623057 +194202,48,Irene Bedard,1217623057 +194202,48,John Kassir,1217623057 +194202,48,Judy Kuhn,1217623057 +194202,48,Mel Gibson,1217623057 +194202,48,Russell Means,1217623057 +194202,62,Glenne Headly,1217360170 +194202,62,Jay Thomas,1217360170 +194202,62,Olympia Dukakis,1217360170 +194202,62,Richard Dreyfuss,1217360170 +194202,62,William H. Macy,1217360170 +194202,107,Bill Connolly,1217361817 +194202,107,David Goelz,1217361817 +194202,107,Jennifer Saunders,1217361817 +194202,107,Steve Whitmire,1217361817 +194202,107,Tim Curry,1217361817 +194202,185,Dennis Miller,1217387149 +194202,185,Diane Baker,1217387149 +194202,185,Jeremy Northam,1217387149 +194202,185,Ken Howard,1217387149 +194202,185,Wendy Gazelle,1217387149 +194202,186,Jeff Goldblum,1217388228 +194202,186,Joan Cusack,1217388229 +194202,186,Julianne Moore,1217388228 +194202,186,Tom Arnold,1217388229 +194202,260,Carrie Fisher,1221799870 +194202,260,James Earl Jones,1221799870 +194202,260,Mark Hamill,1221799870 +194202,262,Arthur Malet,1217093851 +194202,262,Eleanor Bron,1217093851 +194202,262,Liam Cunningham,1217093851 +194202,262,Liesel Matthews,1217093851 +194202,262,Rusty Schwimmer,1217093851 +194202,276,Anne Heche,1217349475 +194202,276,Ed Harris,1217349475 +194202,276,Malcolm McDowell,1217349475 +194202,276,Melanie Griffith,1217349475 +194202,276,Michael Patrick Carter,1217349475 +194202,277,Dylan McDermott,1217350477 +194202,277,Elizabeth Perkins,1217350477 +194202,277,J.T. Walsh,1217350477 +194202,277,James Remar,1217350477 +194202,277,Richard Attenborough,1217350477 +194202,289,Bonnie Hunt,1217525454 +194202,289,Fisher Stevens,1217525454 +194202,289,Joaquin De Almeida,1217525454 +194202,289,Marissa Tomei,1217525454 +194202,300,Christopher McDonald,1218318470 +194202,300,David Paymer,1218318470 +194202,300,Hank Azaria,1218318470 +194202,300,Mira Sorvino,1218318470 +194202,300,Paul Scofield,1218318470 +194202,300,Rob Morrow,1218318470 +194202,317,David Krumholtz,1221800661 +194202,317,Judge Reinhold,1221800661 +194202,317,Wendy Crewson,1221800647 +194202,356,Tom Hanks,1214924717 +194202,367,Amy Yasbeck,1217108094 +194202,367,Jim Carrey,1217108094 +194202,367,Peter Greene,1217108094 +194202,367,Peter Reigert,1217108094 +194202,368,Alfred Molina,1217109569 +194202,368,Graham Greene,1217109569 +194202,368,James Garner,1217109569 +194202,368,Jodie Foster,1217109569 +194202,491,Fay Masterson,1217107031 +194202,491,Gaby Hoffman,1217107031 +194202,491,Geoffrey Lewis,1217107031 +194202,491,Margaret Whitton,1217107031 +194202,491,Mel Gibson,1217107031 +194202,497,Denzel Washington,1217360696 +194202,497,Emma Thompson,1217360696 +194202,497,Robert Sean Leonard,1217360696 +194202,500,Harvey Fierstein,1217360476 +194202,500,Polly Holliday,1217360476 +194202,500,Sallly Field,1217360476 +194202,502,Arsenio 'Sonny' Trinidad,1217387672 +194202,502,Chris Conrad,1217387672 +194202,502,Constance Towers,1217387672 +194202,502,Hilary Swank,1217387672 +194202,502,Michael Ironside,1217387672 +194202,502,Pat Morita,1217387672 +194202,508,Buzz Kilman,1217611397 +194202,508,Denzel Washington,1217611397 +194202,508,Karen Finley II,1217611397 +194202,508,Roberta Maxwell,1217611397 +194202,551,Catherine O'Hara,1217388156 +194202,551,Chris Sarandon,1217388156 +194202,551,Ed Ivory,1217388156 +194202,551,Glenn Shadix,1217388156 +194202,551,Ken Page,1217388156 +194202,551,Paul Reubens,1217388156 +194202,551,William Hickey,1217388156 +194202,596,Charles Judels,1217612292 +194202,596,Christian Rub,1217612292 +194202,596,Cliff Edwards,1217612292 +194202,596,Dick Jones,1217612292 +194202,596,Frankie Darro,1217612292 +194202,597,Jason Alexander,1217624679 +194202,597,Laura San Giacomo,1217624679 +194202,597,Ralph Bellamy,1217624679 +194202,605,Alex D. Linz,1217525105 +194202,605,Charles Durning,1217525105 +194202,605,George Clooney,1217525105 +194202,605,Mae Whitman,1217525105 +194202,605,Michelle Pfeiffer,1217525105 +194202,648,Emmanuelle Beart,1217351453 +194202,648,Henry Czerny,1217351453 +194202,648,John Voight,1217351453 +194202,648,Tom Cruise,1217351453 +194202,709,Charles Bartlett II,1217524576 +194202,709,Debbie Gates,1217524576 +194202,709,Frank Welker,1217524576 +194202,709,Jonathan Brandis,1217524576 +194202,709,Kal David,1217524576 +194202,788,Dave Chappelle,1217389644 +194202,788,John Ales,1217389644 +194202,788,Larry Miller,1217389644 +194202,802,David Gallagher,1217611289 +194202,802,Robert Duvall,1217611289 +194202,832,Brawley Nolte,1218319863 +194202,832,Donnie Wahlberg,1218319863 +194202,832,Gary Sinise,1218319863 +194202,832,Lili Taylor,1218319863 +194202,832,Rene Russo,1218319863 +194202,837,Danny DeVito,1217108660 +194202,837,Embeth Davidtz,1217108660 +194202,837,Mara Wilson,1217108660 +194202,837,Pam Ferris,1217108660 +194202,837,Rhea Perlman,1217108660 +194202,898,James Stewart,1217611484 +194202,898,John Howard,1217611484 +194202,898,Roland Young,1217611448 +194202,898,Ruth Hussey,1217611484 +194202,904,Grace Kelly,1218320150 +194202,904,Judith Evelyn,1218320150 +194202,904,Raymond Burr,1218320150 +194202,904,Thelma Ritter,1218320150 +194202,904,Wendell Corey,1218320150 +194202,908,Eva Marie Saint,1217388770 +194202,908,James Mason,1217388770 +194202,908,Jessie Royce Landis,1217388771 +194202,908,Josephine Hutchinson,1217388771 +194202,908,Leo G. Carroll,1217388771 +194202,913,Barton McLane,1217105586 +194202,913,Gladys George,1217105586 +194202,913,Mary Astor,1217105586 +194202,913,Peter Lorre,1217105586 +194202,913,Sydney Greenstreet,1217105586 +194202,914,Audrey Hepburn,1221801193 +194202,914,Rex Harrison,1221801180 +194202,914,Stanley Holloway,1221801193 +194202,918,Leon Ames,1217110646 +194202,918,Lulcille Bremer,1217110646 +194202,918,Margaret O' Brian,1217110646 +194202,918,Mary Astor,1217110646 +194202,918,Tom Drake,1217110646 +194202,928,George Sanders,1218320209 +194202,928,Joan Fontaine,1218320209 +194202,928,Judith Anderson,1218320209 +194202,928,Laurence Olivier,1218320209 +194202,928,Nigel Bruce,1218320209 +194202,928,Reginald Denny,1218320209 +194202,930,Claude Rains,1217389344 +194202,930,Ingrid Bergman,1217389344 +194202,930,Leopoldine Konstantin,1217389344 +194202,930,Louis Calhern,1217389344 +194202,930,Reinhold Schünzel,1217389344 +194202,947,Alan Mowbray,1217386176 +194202,947,Alice Brady,1217386176 +194202,947,Carole Lombard,1217386176 +194202,947,Eugene Pallette,1217386177 +194202,947,Gail Patrick,1217386176 +194202,947,William Powell,1217386176 +194202,954,Claude Rains,1217360389 +194202,954,Edward Arnold,1217360389 +194202,954,Guy Kibbee,1217360389 +194202,954,Jean Arthur,1217360389 +194202,1005,David Selby,1217349158 +194202,1005,Emilio Estevez,1217349158 +194202,1005,Heidi Kling,1217349158 +194202,1005,Jeffrey Nordling,1217349158 +194202,1005,Joshua Jackson,1217349158 +194202,1010,Buddy Hackett,1217096110 +194202,1010,David Tomlinson,1217096110 +194202,1010,Dean Jones,1217096110 +194202,1010,Joe Flynn,1217096110 +194202,1010,Michelle Lee,1217096110 +194202,1012,Beverly Washburn,1217524461 +194202,1012,Chuck Connors,1217524461 +194202,1012,Dorothy McGuire,1217524461 +194202,1012,Fess Parker,1217524461 +194202,1012,Jeff York,1217524461 +194202,1013,Brian Keith,1221800963 +194202,1013,Hayley Mills,1221800912 +194202,1013,Maureen O'Hara,1221800900 +194202,1014,Hayley Mills,1217623298 +194202,1014,Jane Wyman,1217623298 +194202,1014,Karl Malden,1217623298 +194202,1014,Nancy Olson,1217623298 +194202,1014,Richard Egan,1217623298 +194202,1027,David Barrass,1218317922 +194202,1027,Del Synnott,1218317922 +194202,1027,Hannah Cresswell,1218317922 +194202,1027,Keira Knightley,1218317922 +194202,1027,Malcolm McDowell,1218317922 +194202,1027,Stuart Wilson,1218317922 +194202,1028,David Tomlinson,1221801248 +194202,1028,Dick Van Dyke,1221801248 +194202,1028,Glynis Johns,1221801248 +194202,1030,Helen Reddy II,1217610642 +194202,1030,Jim Dale,1217610642 +194202,1030,Mickey Rooney,1217610642 +194202,1030,Red Buttons,1217610642 +194202,1030,Sean Marshall,1217610642 +194202,1035,Christopher Plummer,1221800524 +194202,1035,Julie Andrews,1221800524 +194202,1035,Richard Haydn,1221800524 +194202,1136,Eric Idle,1217352646 +194202,1136,Terry Jones,1217352646 +194202,1196,Billy Dee Williams,1221800327 +194202,1196,Carrie Fisher,1221800327 +194202,1196,Mark Hamill,1221800327 +194202,1197,Andre the Giant,1218317691 +194202,1197,Cary Elwes,1218317673 +194202,1197,Chris Sarandon,1218317673 +194202,1197,Mandy Patinkin,1218317672 +194202,1197,Peter Falk,1218317673 +194202,1197,Robin Wright Penn,1218317673 +194202,1197,Wallace Shawn,1218317673 +194202,1198,Alfred Molina,1218319244 +194202,1198,Denholm Elliott,1218319244 +194202,1198,John Rhys-Davies,1218319244 +194202,1198,Karen Allen,1218319244 +194202,1198,Paul Freeman,1218319244 +194202,1198,Ronald Lacey,1218319244 +194202,1198,Wolf Kahler,1218319244 +194202,1210,Carrie Fisher,1221800417 +194202,1210,James Earl Jones,1221800406 +194202,1210,Mark Hamill,1221800417 +194202,1226,Barry Fitzgerald,1218318304 +194202,1226,John Wayne,1218318304 +194202,1226,Maureen O'Hara,1218318304 +194202,1226,Mildred Natwick,1218318304 +194202,1226,Victor McLaglen,1218318304 +194202,1226,Ward Bond,1218318304 +194202,1238,Burt Lancaster,1217094726 +194202,1238,Denis Lawson,1217094726 +194202,1238,Fulton McKay,1217094726 +194202,1238,Norman Chancer,1217094726 +194202,1238,Peter Reigert,1217094726 +194202,1267,Angela Lansbury,1217107321 +194202,1267,Henry de Sliva,1217107321 +194202,1267,Janet Leigh,1217107321 +194202,1267,Laurence Harvey,1217107321 +194202,1272,Carey Loftin,1217547570 +194202,1272,George C. Scott,1217547570 +194202,1272,Karl Malden,1217547570 +194202,1272,Karl Michael Vogler,1217547570 +194202,1272,Michael Strong,1217547570 +194202,1272,Morgan Paull,1217547570 +194202,1272,Stephen Young,1217547570 +194202,1363,Courtney B. Vance,1217624355 +194202,1363,Denzel Washington,1217624355 +194202,1363,Gregory Hines,1217624355 +194202,1363,Jenifer Lewis,1217624355 +194202,1363,Loretta Devine,1217624355 +194202,1363,Whitney Houston,1217624355 +194202,1399,Diane Keaton,1217107625 +194202,1399,Hume Cronyn,1217107626 +194202,1399,Leonardo DiCaprio,1217107626 +194202,1399,Meryl Streep,1217107626 +194202,1399,Robert De Niro,1217107626 +194202,1409,Andie MacDowell,1217347991 +194202,1409,Bob Hoskins,1217347991 +194202,1409,Robert Pastorelli,1217347991 +194202,1409,William Hurt,1217347991 +194202,1445,David Allen Grier,1217109775 +194202,1445,Dean Stockwell,1217109775 +194202,1445,Debra Messing,1217109775 +194202,1445,Tim Curry,1217109775 +194202,1445,Tom Arnold,1217109775 +194202,1507,Cate Blanchett,1217546557 +194202,1507,Frances McDormand,1217546557 +194202,1507,Glenn Close,1217546557 +194202,1507,Jennifer Ehle,1217546557 +194202,1507,Pauline Collins,1217546557 +194202,1544,Arliss Howard,1217095835 +194202,1544,Jeff Goldblum,1217095835 +194202,1544,Julianne Moore,1217095835 +194202,1544,Pete Postlethwaite,1217095835 +194202,1544,Richard Attenborough,1217095835 +194202,1569,Dermot Mulroney,1217385596 +194202,1569,Philip Bosco,1217385596 +194202,1569,Rupert Everett,1217385596 +194202,1580,Linda Fiorentino,1217347483 +194202,1580,Rip Torn,1217347483 +194202,1580,Vincent D'Onofrio,1217347483 +194202,1616,Aleksandr Baluyev,1217547753 +194202,1616,Gary Werntz,1217547753 +194202,1616,George Clooney,1217547753 +194202,1616,Jim Haynie,1217547753 +194202,1616,Marcel Iures,1217547753 +194202,1616,Nicole Kidman,1217547753 +194202,1616,Randall Batinkoff,1217547753 +194202,1616,Rene Medvesek,1217547753 +194202,1672,Andrew Shue,1218319424 +194202,1672,Claire Danes,1218319424 +194202,1672,Danny DeVito,1218319424 +194202,1672,Dean Stockwell,1218319424 +194202,1672,Jon Voight,1218319424 +194202,1672,Mary Kay Place,1218319424 +194202,1672,Mickey Rourke,1218319424 +194202,1672,Teresa Wright,1218319424 +194202,1672,Virginia Madsen,1218319424 +194202,1686,Bradley Whitford,1218320557 +194202,1686,Byron Mann,1218320557 +194202,1686,Ling Bai,1218320557 +194202,1686,Peter Donat,1218320557 +194202,1686,Richard Gere,1218320557 +194202,1686,Robert Stanton,1218320557 +194202,1711,Irma P. Hall,1217348790 +194202,1711,Jack Thompson,1217348790 +194202,1711,John Cusack,1217348790 +194202,1801,Gabriel Byrne,1217106149 +194202,1801,Jeremy Irons,1217106149 +194202,1801,John Malkovich,1217106149 +194202,1822,AJ Langer,1217110746 +194202,1822,Dennis Hopper,1217110746 +194202,1822,John Ashton,1217110746 +194202,1822,Paul Walker,1217110746 +194202,1822,Steven van Wormer,1217110746 +194202,1831,Heather Graham,1217095680 +194202,1831,Jack Johnson,1217095680 +194202,1831,Lacey Chabert,1217095680 +194202,1831,Mimi Rogers,1217095680 +194202,1831,William Hurt,1217095680 +194202,1837,Jack Lemmon,1217523788 +194202,1837,Jonathan Silverman,1217523788 +194202,1837,Lisa Waltz,1217523788 +194202,1837,Richard Riehle,1217523788 +194202,1837,Walter Matthau,1217523788 +194202,1907,B.D. Wong,1217360829 +194202,1907,Eddie Murphy,1217360829 +194202,1907,Harvey Fierstein,1217360829 +194202,1907,Lea Salonga,1217360829 +194202,1907,Miguel Ferrer,1217360829 +194202,1907,Ming-Na,1217360829 +194202,1907,Pat Morita,1217360829 +194202,1907,Soon-Tek Oh,1217360829 +194202,1936,Greer Garson,1217360589 +194202,1936,May Whitty,1217360589 +194202,1936,Reginald Owen,1217360589 +194202,1936,Teresa Wright,1217360589 +194202,1936,Walter Pidgeon,1217360589 +194202,1951,Harry Secombe,1217524869 +194202,1951,Mark Lester,1217524869 +194202,1951,Oliver Reed,1217524869 +194202,1951,Ron Moody,1217524869 +194202,1951,Shani Wallis,1217524869 +194202,1959,Klaus Maria Brandauer,1217526156 +194202,1959,Malick Bowens,1217526156 +194202,1959,Michael Kitchen,1217526156 +194202,1959,Robert Redford,1217526156 +194202,1961,Bonnie Hunt,1218319305 +194202,1961,Dustin Hoffman,1218319305 +194202,1961,Gerald R. Molen,1218319305 +194202,1961,Jack Murdock,1218319305 +194202,1961,Tom Cruise,1218319305 +194202,1961,Valeria Golino,1218319305 +194202,2006,Julio Oscar Mechoso,1217107943 +194202,2006,Nick Chinlund,1217107943 +194202,2006,Rufus Sewell,1217107943 +194202,2042,Carsten Norgaard,1217349092 +194202,2042,Emilio Estevez,1217349092 +194202,2042,Jan Rubes,1217349092 +194202,2042,Kathryn Erbe,1217349092 +194202,2042,Michael Tucker,1217349092 +194202,2059,Dennis Quaid,1217546780 +194202,2059,Elaine Hendrix,1217546780 +194202,2059,Lindsay Lohan,1217546780 +194202,2059,Lisa Ann Walter,1217546780 +194202,2059,Natasha Richardson,1217546780 +194202,2082,Emilio Estevez,1217348970 +194202,2082,Heidi Kling,1217348970 +194202,2082,Josef Sommer,1217348970 +194202,2082,Joss Ackland,1217348970 +194202,2082,Lane Smith,1217348970 +194202,2083,Dave Goelz,1217361453 +194202,2083,Frank Oz,1217361453 +194202,2083,Jerry Nelson,1217361453 +194202,2083,Steve Whitmire,1217361453 +194202,2084,David Moscow,1217387528 +194202,2084,Gabriel Damon,1217387527 +194202,2084,Luke Edwards,1217387528 +194202,2084,Marty Belafsky,1217387527 +194202,2084,Max Casella,1217387528 +194202,2085,Ben Wright,1217525249 +194202,2085,Betty Lou Gerson,1217525249 +194202,2085,Cate Bauer,1217525249 +194202,2085,J. Pat O'Malley,1217525249 +194202,2085,Rodney Turt Taylor,1217525249 +194202,2087,Bill Thompson,1217610860 +194202,2087,Hans Conried,1217610860 +194202,2087,Kathryn Beaumont,1217610860 +194202,2087,Robert Driscoll,1217610860 +194202,2087,Tim Conway,1217610860 +194202,2088,Paul Dooley,1217623441 +194202,2088,Paul L. Smith,1217623441 +194202,2088,Ray Walston,1217623441 +194202,2088,Richard Libertini,1217623441 +194202,2088,Robin Williams,1217623441 +194202,2088,Shelley Duvall,1217623441 +194202,2089,Adam Ryen,1218587524 +194202,2089,Bob Newhart,1218587524 +194202,2089,Eva Gabor,1218587524 +194202,2089,George C. Scott,1218587524 +194202,2089,John Candy,1218587524 +194202,2089,Tristan Rogers,1218587524 +194202,2090,Bob Newhart,1218587593 +194202,2090,Eva Gabor,1218587593 +194202,2090,Geraldine Page,1218587593 +194202,2090,Jeanette Nolan,1218587593 +194202,2090,Joe Flynn,1218587593 +194202,2090,Pat Buttram,1218587593 +194202,2092,Gilbert Gottfried,1218607116 +194202,2092,Jason Alexander,1218607116 +194202,2092,Jim Cummings,1218607116 +194202,2092,Jonathan Freeman,1218607116 +194202,2092,Linda Larkin,1218607116 +194202,2092,Scott Weinger,1218607116 +194202,2145,Andrew Dice Clay,1217624575 +194202,2145,Andrew McCarthy,1217624575 +194202,2145,Annie Potts,1217624575 +194202,2145,Harry Dean Stanton,1217624575 +194202,2145,James Spader,1217624575 +194202,2145,Jim Haynie,1217624575 +194202,2145,Jon Cryer,1217624575 +194202,2145,Molly Ringwald,1217624575 +194202,2183,Bernard Miles,1217106681 +194202,2183,Brenda de Banzie,1217106681 +194202,2183,Doris Day,1217106681 +194202,2183,James Stewart,1217106681 +194202,2183,Ralph Truman II,1217106681 +194202,2296,Colin Quinn,1217387870 +194202,2296,Dan Hedaya,1217387870 +194202,2296,Loni Anderson,1217387870 +194202,2296,Richard Grieco,1217387870 +194202,2316,Aiden Quinn,1217624227 +194202,2316,Dianne Wiest,1217624228 +194202,2321,Joan Allen,1217621911 +194202,2321,Tobey MacGuire,1217621911 +194202,2321,William H. Macy,1217621911 +194202,2340,Anthony Hopkins,1217110486 +194202,2340,Clare Forlani,1217110486 +194202,2340,Jake Weber,1217110486 +194202,2340,Marcia Gay Harden,1217110486 +194202,2390,Annette Badland,1217094181 +194202,2390,Brenda Blethyn,1217094181 +194202,2390,Philip Jackson,1217094181 +194202,2394,Danny Glover,1218317476 +194202,2394,Helen Mirren,1218317476 +194202,2394,Jeff Goldblum,1218317476 +194202,2394,Martin Short,1218317476 +194202,2394,Michelle Pfeiffer,1218317476 +194202,2394,Patrick Stewart,1218317476 +194202,2394,Ralph Fiennes,1218317476 +194202,2394,Sandra Bullock,1218317476 +194202,2394,Steve Martin,1218317476 +194202,2394,Val Kilmer,1218317476 +194202,2398,Edmund Gwenn,1217350558 +194202,2398,Gene Lockhart,1217350558 +194202,2398,John Payne,1217350558 +194202,2398,Maureen O'Hara,1217350558 +194202,2398,Natalie Wood,1217350558 +194202,2429,Bill Paxton,1217349320 +194202,2429,Charlize Theron,1217349320 +194202,2429,David Paymer,1217349321 +194202,2429,Peter Firth,1217349320 +194202,2429,Rade SerbedZija,1217349320 +194202,2431,Bob Gunton,1217547118 +194202,2431,Daniel London,1217547118 +194202,2431,Monica Potter,1217547118 +194202,2501,Chris Cooper,1217523556 +194202,2501,Chris Owen,1217523556 +194202,2501,Jake Gyllenhaal,1217523556 +194202,2501,Laura Dern,1217523556 +194202,2501,William Lee Scott,1217523556 +194202,2502,Ajay Naidu,1217524039 +194202,2502,David Herman,1217524039 +194202,2502,Diedrich Bader,1217524039 +194202,2502,Jennifer Aniston,1217524039 +194202,2502,Ron Livingston,1217524039 +194202,2506,Diane Keaton,1217526024 +194202,2506,Giovanni Ribisi,1217526024 +194202,2506,Juliette Lewis,1217526024 +194202,2506,Poppy Montgomery,1217526024 +194202,2506,Tom Skerritt,1217526024 +194202,2571,Gloria Foster,1217108920 +194202,2571,Hugo Weaving,1217108920 +194202,2571,Laurence Fishburne,1217108920 +194202,2581,David Arquette,1217387244 +194202,2581,Garry Marshall,1217387244 +194202,2581,Jeremy Jordan,1217387244 +194202,2581,John C. Reilly,1217387244 +194202,2581,Leelee Sobieski,1217387244 +194202,2581,Michael Vartan,1217387244 +194202,2581,Molly Shannon,1217387244 +194202,2597,Artie Lang,1217095499 +194202,2597,David Spade,1217095499 +194202,2597,Mitchell Whitfield,1217095499 +194202,2597,Patrick Bruel,1217095499 +194202,2597,Sophie Marceau,1217095499 +194202,2617,Arnold Vosloo,1217361064 +194202,2617,Brendan Fraser,1217361064 +194202,2617,John Hannah,1217361064 +194202,2617,Kevin O'Connor,1217361064 +194202,2628,Ian McDiarmid,1221800164 +194202,2628,Liam Neeson,1221800144 +194202,2628,Ray Park,1221800129 +194202,2639,Diana Scarwid,1217351899 +194202,2639,Faye Dunaway,1217351899 +194202,2639,Mara Hobel,1217351899 +194202,2639,Rutanya Alda,1217351899 +194202,2639,Steve Forrest,1217351899 +194202,2671,Emma Chambers,1217389470 +194202,2671,Gina Mckee,1217389470 +194202,2671,Hugh Bonneville,1217389470 +194202,2671,Rhys Ifans,1217389470 +194202,2671,Tim McInnerny,1217389470 +194202,2709,F. Murray Abraham,1217361925 +194202,2709,Jeffrey Tambor,1217361924 +194202,2709,Josh Charles,1217361924 +194202,2709,Ray Liotta,1217361924 +194202,2709,Rob Schneider,1217361924 +194202,2803,Denzel Washington,1217548059 +194202,2803,John Heard,1217548059 +194202,2803,Julia Roberts,1217548059 +194202,2803,Sam Shepard,1217548059 +194202,2803,Tony Goldwyn,1217548059 +194202,2805,Burt Young,1217348430 +194202,2805,Hugh Grant,1217348430 +194202,2805,James Caan,1217348430 +194202,2805,James Fox,1217348430 +194202,2805,Jeanne Tripplehorn,1217348430 +194202,2829,Albert Brooks,1217362238 +194202,2829,Andie MacDowell,1217362238 +194202,2829,Jeff Bridges,1217362238 +194202,2829,Sharon Stone,1217362239 +194202,2829,Steven Wright,1217362238 +194202,2906,Bonnie Hunt,1218319757 +194202,2906,Charles S. Dutton,1218319757 +194202,2906,Harrison Ford,1218319757 +194202,2906,Kristin Scott Thomas,1218319757 +194202,2906,Peter Coyote,1218319757 +194202,2906,Richard Jenkins,1218319757 +194202,2996,Aiden Quinn,1217362671 +194202,2996,Angela Bassett,1217362671 +194202,2996,Cloris Leachman,1217362671 +194202,2996,Jane Leeves,1217362671 +194202,3098,Barbara Hershey,1217387051 +194202,3098,Glenn Close,1217387051 +194202,3098,Kim Basinger,1217387051 +194202,3098,Robert Prosky,1217387051 +194202,3098,Wilford Brimley,1217387051 +194202,3189,Bradley Coryell,1217385832 +194202,3189,Clint Howard,1217385832 +194202,3189,Cody Linley,1217385832 +194202,3189,Daylan Honeycutt,1217385832 +194202,3189,Diane Lane,1217385832 +194202,3189,Frankie Muniz,1217385832 +194202,3189,Kevin Bacon,1217385832 +194202,3189,Luke Wilson,1217385832 +194202,3256,Anne Archer,1217547262 +194202,3256,Harrison Ford,1217547262 +194202,3256,PatrickBergin,1217547263 +194202,3256,Sean Bean,1217547262 +194202,3256,Thora Birch,1217547262 +194202,3296,Judy Geeson,1221799774 +194202,3296,Lulu,1221799774 +194202,3296,Suzy Kendall,1221799774 +194202,3325,Benjamin Bratt,1217387573 +194202,3325,Madonna,1217387573 +194202,3325,Michael Vartan,1217387573 +194202,3325,Rupert Everett,1217387573 +194202,3354,Connie Nielsen,1217351241 +194202,3354,Gary Sinise,1217351241 +194202,3354,Jerry O' Connell,1217351241 +194202,3354,Tim Robbins,1217351241 +194202,3396,Austin Pendleton,1217361597 +194202,3396,Charles Durning,1217361597 +194202,3396,Edgar Bergen,1217361597 +194202,3396,Milton Berle,1217361597 +194202,3396,Scott Walker II,1217361597 +194202,3398,Bruce Edward Hall,1217362047 +194202,3398,David Rudman,1217362047 +194202,3398,James J. Kroupa,1217362047 +194202,3398,Melissa Whitmire,1217362047 +194202,3398,Michael Earl Davis,1217362047 +194202,3623,Dougray Scott,1217351592 +194202,3623,Richard Roxburgh,1217351592 +194202,3623,Thandie Newton,1217351592 +194202,3623,Ving Rhames,1217351592 +194202,3633,Diana Rigg,1217524996 +194202,3633,Gabriele Ferzetti,1217524996 +194202,3633,Ilse Steppat,1217524996 +194202,3633,Telly Savalas,1217524996 +194202,3639,Britt Ekland,1217106925 +194202,3639,Christopher Lee,1217106925 +194202,3639,Herve Villechaize,1217106925 +194202,3639,Maud Adams,1217106925 +194202,3675,Bing Crosby,1221799641 +194202,3675,Danny Kaye,1221799641 +194202,3675,Rosemary Clooney,1221799641 +194202,3752,Anthony Anderson,1217110200 +194202,3752,Jerod Mixon,1217110200 +194202,3752,Mongo Brownlee,1217110200 +194202,3753,Chris Cooper,1217547398 +194202,3753,Heath Ledger,1217547398 +194202,3753,Jason Isaacs,1217547398 +194202,3753,Joely Richardson,1217547398 +194202,3755,Diane Lane,1217548261 +194202,3755,John C. Reilly,1217548261 +194202,3755,Mary Elizabeth Mastrantonio,1217548261 +194202,3821,Eddie Murphy,1217389694 +194202,3821,Janet Jackson,1217389694 +194202,3821,John Ales,1217389694 +194202,3821,Larry Miller,1217389694 +194202,3916,Denzel Washington,1218587431 +194202,3916,Donald Faison,1218587431 +194202,3916,Scott Miles,1218587431 +194202,3916,Will Patton,1218587431 +194202,3936,Edgar Barrier,1217611166 +194202,3936,Jan Farrar,1217611166 +194202,3936,Nelson Eddy,1217611166 +194202,3936,Susanna Foster,1217611166 +194202,3948,Blythe Danner,1217110965 +194202,3948,Nicole DeHuff,1217110965 +194202,3948,Teri Polo,1217110965 +194202,3974,Alice Krige,1217094073 +194202,3974,Jim Carter,1217094073 +194202,3974,Jonathan Lipnicki,1217094073 +194202,3974,Richard E. Grant,1217094073 +194202,3974,Rollo Weeks,1217094073 +194202,4025,Benjamin Bratt,1217350951 +194202,4025,Candice Bergen,1217350951 +194202,4025,Michael Caine,1217350951 +194202,4025,William Shatner,1217350951 +194202,4041,David Keith,1217524171 +194202,4041,Debra Winger,1217524170 +194202,4041,Lisa Blount,1217524171 +194202,4041,Louis Gossett Jr.,1217524170 +194202,4061,Gail Strickland,1217106263 +194202,4061,Jason London,1217106262 +194202,4061,Sam Waterston,1217106263 +194202,4061,Tess Harper,1217106263 +194202,4062,Adam Storke,1217386253 +194202,4062,Annabeth Gish,1217386253 +194202,4062,Conchata Ferrell,1217386253 +194202,4062,Joanna Merlin,1217386253 +194202,4062,Julia Roberts,1217386253 +194202,4062,Lili Taylor,1217386253 +194202,4062,Vincent D'Onofrio,1217386253 +194202,4062,William R. Moses,1217386254 +194202,4142,Kirk Cameron,1215795854 +194202,4161,Bob Balaban,1217347817 +194202,4161,J.K. Simmons,1217347817 +194202,4161,James Gandolfini,1217347817 +194202,4161,Julia Roberts,1217347817 +194202,4205,Bob Hoskins,1217347621 +194202,4205,Cher,1217347621 +194202,4205,Christina Ricci,1217347621 +194202,4205,Michael Schoeffling,1217347621 +194202,4205,Winona Ryder,1217347621 +194202,4259,Christopher Thompson,1217096344 +194202,4259,Emily Watson,1217096344 +194202,4259,Geraldine James,1217096344 +194202,4259,Stuart Wilson,1217096344 +194202,4270,Arnold Vosloo,1217361182 +194202,4270,John Hannah,1217361182 +194202,4270,Oded Fehr,1217361182 +194202,4310,Ben Affleck,1217547907 +194202,4310,Cuba Gooding Jr.,1217547907 +194202,4310,Jon Voight,1217547907 +194202,4310,Josh Hartnett,1217547907 +194202,4327,Charles Bronson,1217097029 +194202,4327,Eli Wallach,1217097029 +194202,4327,Horst Buchholz,1217097029 +194202,4327,Steve McQueen,1217097029 +194202,4327,Yul Brynner,1217097029 +194202,4406,Edmond O'Brien,1217106790 +194202,4406,Vera Miles,1217106790 +194202,4535,Jack Thompson,1217105958 +194202,4535,Kirk Douglas,1217105958 +194202,4535,Lorraine Bayly,1217105958 +194202,4535,Sigrid Thornton,1217105958 +194202,4535,Tom Burlinson,1217105958 +194202,4621,Abe Vigoda,1217095118 +194202,4621,George Segal,1217095118 +194202,4621,Kirstie Alley,1217095118 +194202,4621,Olympia Dukakis,1217095118 +194202,4700,Anne Hathaway,1221800799 +194202,4700,Hector Elizondo,1221800799 +194202,4700,Julie Andrews,1221800799 +194202,4728,Amy Smart,1218319938 +194202,4728,Breckin Meyer,1218319938 +194202,4728,Cuba Gooding Jr.,1218319938 +194202,4728,Dave Thomas,1218319938 +194202,4728,John Cleese,1218319938 +194202,4728,Jon Lovitz,1218319938 +194202,4728,Kathy Bates,1218319938 +194202,4728,Kathy Najimy,1218319938 +194202,4728,Rowan Atkinson,1218319938 +194202,4728,Seth Green,1218319938 +194202,4728,Vince Vieluf,1218319938 +194202,4728,Whoopi Goldberg,1218319938 +194202,4798,Cary Grant,1215704781 +194202,4798,Ingrid Bergman,1215704781 +194202,4802,Arthur O'Connell,1217525662 +194202,4802,Dina Merrill,1217525662 +194202,4802,Joan O'Brien,1217525662 +194202,4802,Tony Curtis,1217525662 +194202,4822,Alex D. Linz,1217109667 +194202,4822,Jamie Kennedy,1217109667 +194202,4822,Josh Peck,1217109667 +194202,4822,Larry Miller,1217109667 +194202,4822,Zena Grey,1217109667 +194202,4880,Hayden Christiensen,1217091704 +194202,4880,Jena Malone,1217091704 +194202,4880,Kevin Kline,1217091704 +194202,4880,Kristin Scott Thomas,1217091704 +194202,4886,Billy Crystal,1217352424 +194202,4886,James Coburn,1217352424 +194202,4886,John Goodman,1217352424 +194202,4886,Mary Gibbs,1217352424 +194202,4886,Steve Buscemi,1217352424 +194202,4954,Angie Dickinson,1217523116 +194202,4954,Dean Martin,1217523116 +194202,4954,Frank Sinatra,1217523116 +194202,4954,Peter Lawford,1217523116 +194202,4954,Sammy Davis Jr.,1217523116 +194202,4963,Andy Garcia,1217523035 +194202,4963,Julia Roberts,1217523035 +194202,4963,Matt Damon,1217523035 +194202,4994,David Ogden Stiers,1217097270 +194202,4994,Jeffery DeMunn,1217097270 +194202,4994,Laurie Holden,1217097270 +194202,5066,Daryl Hannah,1221799698 +194202,5066,Mandy Moore,1221799697 +194202,5066,Peter Coyote,1221799697 +194202,5108,Anne Heche,1215791085 +194202,5108,Denzel Washington,1215791085 +194202,5108,Robert Duvall,1215791085 +194202,5135,Lillete Dubey,1217352154 +194202,5135,Naseeruddin Shah,1217352154 +194202,5135,Shefali Shetty,1217352154 +194202,5135,Tillotama Shome,1217352154 +194202,5135,Vijay Raaz,1217352154 +194202,5299,Gia Carides,1217385733 +194202,5299,Ian Gomez,1217385732 +194202,5299,John Corbett,1217385733 +194202,5299,Louis Mandylor,1217385732 +194202,5312,Agnes Bruckner,1217362132 +194202,5312,Ben Chaplin,1217362132 +194202,5312,Michael Pitt,1217362132 +194202,5378,Ewan McGregor,1221800237 +194202,5378,Hayden Christensen,1221800252 +194202,5378,Samuel L. Jackson,1221800237 +194202,5445,Lois Smith,1217349764 +194202,5445,Max von Sydow,1217349763 +194202,5445,Samantha Morton,1217349741 +194202,5449,Jared Harris,1217359965 +194202,5449,John Turturro,1217359965 +194202,5449,Peter Gallagher,1217359965 +194202,5459,Johnny Knoxville,1217347413 +194202,5459,Lara Flynn Boyle,1217347413 +194202,5459,Rosario Dawson,1217347413 +194202,5635,Andy Garcia,1217105809 +194202,5635,James Coburn,1217105808 +194202,5635,Julianna Margulies,1217105809 +194202,5635,Mick Jagger,1217105809 +194202,5635,Olivia Williams,1217105809 +194202,5644,Babe Ruth,1217625086 +194202,5644,Bill Dickey,1217625086 +194202,5644,Ernie Adams,1217625086 +194202,5644,Ludwig Stossel,1217625086 +194202,5832,Brad Johnson,1215795906 +194202,5832,Kirk Cameron,1215795906 +194202,5943,Jennifer Lopez,1217097168 +194202,5943,Natasha Richardson,1217097168 +194202,5943,Ralph Fiennes,1217097168 +194202,5943,Stanley Tucci,1217097168 +194202,5943,Tyler Posey II,1217097168 +194202,5969,Anna Chlumsky,1217386056 +194202,5969,Austin O'Brien,1217386056 +194202,5969,Christine Ebersole,1217386056 +194202,5969,Dan Aykroyd,1217386056 +194202,5969,Jamie Lee Curtis,1217386056 +194202,5969,Richard Masur,1217386056 +194202,5970,Anna Chlumsky,1217385995 +194202,5970,Dan Aykroyd,1217385995 +194202,5970,Griffin Dunne,1217385995 +194202,5970,Jamie Lee Curtis,1217385995 +194202,5970,Macaulay Culkin,1217385995 +194202,5970,Richard Masur,1217385995 +194202,5995,Adrien Brody,1217611752 +194202,5995,Emilia Fox,1217611752 +194202,5995,Frank Finlay,1217611751 +194202,5995,Maureen Lipman,1217611751 +194202,5995,Thomas Kretschmann,1217611751 +194202,6014,Bill Duke,1217386595 +194202,6014,Colm Feore,1217386595 +194202,6014,Eric Roberts,1217386595 +194202,6014,Martin Lawrence,1217386595 +194202,6014,Robinne Lee,1217386595 +194202,6014,Steve Zahn,1217386595 +194202,6014,Timothy Busfield,1217386595 +194202,6014,Wayne Morse,1217386595 +194202,6059,Brian Rhodes,1218320415 +194202,6059,Bridget Moynahan,1218320415 +194202,6059,Eugene Lipinski,1218320415 +194202,6059,Gabriel Macht,1218320415 +194202,6059,Kenneth Mitchell,1218320415 +194202,6183,Marcel Dalio,1217611985 +194202,6183,Rock Hudson,1217611985 +194202,6183,Thelma Ritter,1217611985 +194202,6183,Tony Randall,1217611985 +194202,6251,Andre Stojka,1217611892 +194202,6251,James Cummings III,1217611892 +194202,6251,John Fielder,1217611892 +194202,6251,Kath Soucie,1217611892 +194202,6251,Nikita Hopkins,1217611892 +194202,6311,Anne Hathaway,1217525925 +194202,6311,Christopher Gorham,1217525925 +194202,6311,Joe Folau,1217525925 +194202,6311,Miriama Smith,1217525925 +194202,6311,Nathaniel Lees,1217525925 +194202,6332,Adam Lamberg,1217094629 +194202,6332,Hallie Todd,1217094629 +194202,6332,Hilary Duff,1217094629 +194202,6332,Jake Thomas,1217094629 +194202,6332,Robert Carradine,1217094629 +194202,6365,Carrie-Anne Moss,1217109053 +194202,6365,Jada Pinkett Smith,1217109053 +194202,6365,Laurence Fishburne,1217109053 +194202,6539,Geoffrey Rush,1217619391 +194202,6539,Jack Davenport,1217619391 +194202,6539,Jonathan Pryce,1217621773 +194202,6539,Lee Arenberg,1217621773 +194202,6539,MacKenzie Crook,1217621773 +194202,6559,Brian Haley,1217092802 +194202,6559,Ed O'Neill,1217092802 +194202,6559,Rick Moranis,1217092802 +194202,6660,Albert Bassermann,1218581125 +194202,6660,Anton Walbrook,1218581125 +194202,6660,Léonide Massine,1218581125 +194202,6660,Marius Goring,1218581125 +194202,6660,Moira Shearer,1218581125 +194202,6660,Robert Helpmann,1218581125 +194202,6708,Alison Lohman,1217108485 +194202,6708,Bruce Altman,1217108485 +194202,6708,Bruce McGill,1217108485 +194202,6708,Sam Rockwell,1217108485 +194202,6749,Barton MacLane,1218317117 +194202,6749,Billy Mauch,1218317117 +194202,6749,Bobby Mauch,1218317117 +194202,6749,Claude Rains,1218317117 +194202,6749,Errol Flynn,1218317117 +194202,6749,Henry Stephenson,1218317117 +194202,6785,Howard Keel,1221800599 +194202,6785,Julie Newmar,1221800599 +194202,6785,Russ Tamblyn,1221800599 +194202,6832,Annette Bening,1218581207 +194202,6832,Julie Follansbhee,1218581207 +194202,6832,Michael Haley,1218581207 +194202,6832,Rebecca Miller,1218581207 +194202,6832,Stanley Swerdlow,1218581207 +194202,6856,Joan Leslie,1221799462 +194202,6856,Richard Whorf,1221799538 +194202,6856,Walter Huston,1221799462 +194202,6873,Catherine Zeta-Jones,1215705241 +194202,6873,George Clooney,1215705241 +194202,6887,Alfre Woodard,1218319141 +194202,6887,Brent Sexton,1218319141 +194202,6887,Debra Winger,1218319141 +194202,6887,Ed Harris,1218319141 +194202,6887,Riley Smith,1218319141 +194202,6887,S. Epatha Merkerson,1218319141 +194202,6887,Sarah Drew,1218319141 +194202,6934,Carrie-Anne Moss,1217109163 +194202,6934,Jada Pinkett Smith,1217109163 +194202,6934,Laurence Fishburne,1217109163 +194202,7013,Evelyn Varden,1217388024 +194202,7013,James Gleason,1217388024 +194202,7013,Lillian Gish,1217388024 +194202,7013,Robert Mitchum,1217388024 +194202,7013,Shelley Winters,1217388024 +194202,7018,Bonnie Bedelia,1217624459 +194202,7018,Brian Dennehy,1217624459 +194202,7018,Greta Scacchi,1217624459 +194202,7018,Harrison Ford,1217624459 +194202,7018,Paul Winfield,1217624459 +194202,7018,Raul Julia,1217624459 +194202,7059,Angela Lansbury,1217386853 +194202,7059,Anne Revere,1217386853 +194202,7059,Donald Crisp,1217386853 +194202,7059,Elizabeth Taylor,1217386853 +194202,7059,Jackie 'Butch' Jenkins,1217386853 +194202,7059,Mickey Rooney,1217386853 +194202,7070,Coleen Gray,1218581030 +194202,7070,Harry Carey,1218581030 +194202,7070,Joanne Dru,1218581030 +194202,7070,John Wayne,1218581030 +194202,7070,Montgomery Clift,1218581030 +194202,7070,Walter Brennan,1218581030 +194202,7154,Maggie Gyllenhaal,1217351977 +194202,7154,Marcia Gay Harden,1217351977 +194202,7163,Aaron Eckhart,1217547686 +194202,7163,Kathryn Morris,1217547686 +194202,7163,Michael C. Hall,1217547686 +194202,7164,Jason Isaacs,1217611006 +194202,7164,Jeremy Sumpter,1217611006 +194202,7164,Lynn Redgrave,1217611006 +194202,7164,Rachel Hurd-Wood,1217611006 +194202,7164,Richard Briers,1217611006 +194202,7263,Kenneth Welsh,1217349981 +194202,7263,Kurt Russell,1217349981 +194202,7263,Noah Emmerich,1217349981 +194202,7263,Patricia Clarkson,1217349981 +194202,7263,Sean McCann,1217349981 +194202,7318,Claudia Gerini,1217546960 +194202,7318,Francesco Cabras,1217546960 +194202,7318,Hristo Jivkov,1217546960 +194202,7318,Hristo Shopov,1217546960 +194202,7318,James Caviezel,1217546960 +194202,7318,Maia Morgenstern,1217546960 +194202,7318,Monica Bellucci,1217546960 +194202,7318,Rosalinda Celentano,1217546960 +194202,7375,Alberta Watson,1218316927 +194202,7375,Ben Miller,1218316927 +194202,7375,Eliza Bennett,1218316928 +194202,7375,James Fox,1218316928 +194202,7375,John Bourgeois,1218316927 +194202,7375,Julia Stiles,1218316927 +194202,7375,Luke Mably,1218316927 +194202,7375,Miranda Richardson,1218316928 +194202,7445,Dakota Fanning,1217106388 +194202,7445,Marc Anthony,1217106388 +194202,7445,Radha Mitchell,1217106388 +194202,7451,Amy Poehler,1217110344 +194202,7451,Lindsay Lohan,1217110344 +194202,7451,Tim Meadows,1217110344 +194202,7451,Tina Fey,1217110344 +194202,7570,Kabir Bedi,1217523674 +194202,7570,Kristina Wayborn,1217523674 +194202,7570,Louis Jourdan,1217523674 +194202,7570,Maud Adams,1217523674 +194202,7573,Barbara Carrera,1217387326 +194202,7573,Bernie Casey,1217387326 +194202,7573,Kim Basinger,1217387326 +194202,7573,Klaus Maria Brandauer,1217387326 +194202,7573,Max von Sydow,1217387326 +194202,7579,Ann Rutherford,1217624752 +194202,7579,Edna May Oliver,1217624752 +194202,7579,Greer Garson,1217624752 +194202,7579,Laurence Olivier,1217624752 +194202,7579,Mary Boland,1217624752 +194202,7579,Maureen O'Sullivan,1217624752 +194202,7614,Eddie Albert,1217524323 +194202,7614,Gene Nelson,1217524323 +194202,7614,Gloria Grahame,1217524323 +194202,7614,Gordon MacRae,1217524323 +194202,7614,Shirley Jones,1217524323 +194202,7619,Andrew Prine,1217350781 +194202,7619,Anne Bancroft,1217350780 +194202,7619,Inga Swenson II,1217350781 +194202,7619,Patty Duke,1217350781 +194202,7619,Victor Jory,1217350780 +194202,7701,Elias Koteas,1217095200 +194202,7701,John Travolta,1217095200 +194202,7701,Kirstie Alley,1217095200 +194202,7701,Olympia Dukakis,1217095200 +194202,7701,Twink Caplan,1217095200 +194202,8362,Abigail Breslin,1218319617 +194202,8362,Felicity Huffman,1218319617 +194202,8362,Hayden Panettiere,1218319617 +194202,8362,Helen Mirren,1218319617 +194202,8362,Joan Cusack,1218319617 +194202,8362,John Corbett,1218319617 +194202,8362,Kate Hudson,1218319617 +194202,8362,Spencer Breslin,1218319617 +194202,8533,Gena Rowlands,1217389229 +194202,8533,Heather Wahlquist,1217389229 +194202,8533,James Garner,1217389229 +194202,8533,James Marsden,1217389229 +194202,8533,Joan Allen,1217389229 +194202,8533,Rachel McAdams,1217389229 +194202,8533,Ryan Gosling,1217389229 +194202,8614,Edward Herrmann,1217526364 +194202,8614,Katherine Helmond,1217526364 +194202,8614,Kurt Russell,1217526364 +194202,8614,Roddy McDowall,1217526364 +194202,8781,Denzel Washington,1217107194 +194202,8781,Jon Voight,1217107194 +194202,8781,Kimberly Elise,1217107194 +194202,8781,Liev Schreiber,1217107194 +194202,8799,Brittany Murphy,1217092448 +194202,8799,Holly Hunter,1217092448 +194202,8799,Kathy Bates,1217092448 +194202,8808,Anne Hathaway,1218317792 +194202,8808,Chris Pine,1218317792 +194202,8808,Heather Matarazzo,1218317792 +194202,8808,Hector Elizondo,1218317792 +194202,8808,John Rhys-Davies,1218317792 +194202,8808,Julie Andrews,1218317792 +194202,8808,Kathleen Marshall,1218317792 +194202,8911,Dana Davis,1218319511 +194202,8911,David Keith,1218319511 +194202,8911,Hilary Duff,1218319511 +194202,8911,Jason Ritter,1218319511 +194202,8911,John Corbett,1218319511 +194202,8911,Lauren C. Mayhew,1218319511 +194202,8911,Oliver James,1218319511 +194202,8911,Rebecca De Mornay,1218319511 +194202,8911,Rita Wilson,1218319511 +194202,8965,Brendan King,1217623145 +194202,8965,Eddie Deezen,1217623145 +194202,8965,Gregory Gast,1217623145 +194202,8965,Leslie Harter Zemeckis,1217623145 +194202,8965,Mark Mendonca,1217623145 +194202,8965,Nona Gaye,1217623145 +194202,8965,Peter Scolari,1217623145 +194202,8965,Tom Hanks,1217623145 +194202,8972,Christopher Plummer,1217386708 +194202,8972,David Dayan Fisher,1217386708 +194202,8972,Diane Kruger,1217386708 +194202,8972,Harvey Keitel,1217386708 +194202,8972,Jon Voight,1217386708 +194202,8972,Justin Bartha,1217386709 +194202,8972,Sean Bean,1217386709 +194202,8984,Andy Garcia,1217523198 +194202,8984,George Clooney,1217523198 +194202,8984,Matt Damon,1217523198 +194202,25827,Douglass Dumbrille,1217360039 +194202,25827,Gary Cooper,1217360004 +194202,25827,George Bancroft,1217360004 +194202,25827,Jean Arthur,1217360004 +194202,25827,Lionel Stander,1217360039 +194202,25938,Shirley Temple,1214924795 +194202,26084,Buddy Hackett,1217362600 +194202,26084,Hermoine Gingold,1217362600 +194202,26084,Paul Ford,1217362600 +194202,26084,Robert Preston,1217362600 +194202,26084,Shirley Jones,1217362600 +194202,26101,John Wayne,1217109954 +194202,26101,Maureen O'Hara,1217109954 +194202,26101,Patrick Wayne,1217109954 +194202,26101,Stephanie Powers,1217109954 +194202,26101,Yvonne De Carlo,1217109954 +194202,26139,John Wayne,1215703874 +194202,26139,Kirk Douglas,1215703896 +194202,30707,Hilary Swank,1217349573 +194202,30707,Jay Baruchel,1217349573 +194202,30707,Mike Colter,1217349573 +194202,30707,Morgan Freeman,1217349573 +194202,30825,Ben Stiller,1217110869 +194202,30825,Blythe Danner,1217110869 +194202,30825,Dustin Hoffman,1217110869 +194202,30825,Robert De Niro,1217110869 +194202,30825,Teri Polo,1217110869 +194202,31193,Barbara Luddy,1221801539 +194202,31193,John Fiedler,1221801539 +194202,31193,Sebastian Cabot,1221801539 +194202,31223,Bruce Greenwood,1218319005 +194202,31223,Dustin Hoffman,1218319005 +194202,31223,Frankie Muniz,1218319005 +194202,31223,Gary Bullock,1218319005 +194202,31223,Hayden Panettiere,1218319005 +194202,31223,Jeff Foxworthy,1218319005 +194202,31223,Joe Pantoliano,1218319005 +194202,31223,Joshua Jackson,1218319005 +194202,31223,Michael Clarke Duncan,1218319005 +194202,31223,Snoop Dogg,1218319005 +194202,31223,Whoopi Goldberg,1218319005 +194202,31687,Brenda Blethyn,1217623379 +194202,31687,David Ogden Stiers,1217623378 +194202,31687,Jim Cummings,1217623378 +194202,31687,Jimmy Bennett,1217623378 +194202,31687,John Fiedler,1217623379 +194202,31687,Kath Soucie,1217623378 +194202,31687,Ken Sansom,1217623378 +194202,31687,Nikita Hopkins,1217623378 +194202,31687,Peter Cullen,1217623378 +194202,32017,Brittany Snow,1217546414 +194202,32017,Faith Ford,1217546414 +194202,32017,Lauren Graham,1217546414 +194202,32017,Max Thieriot,1217546414 +194202,32174,John Wayne,1215698245 +194202,32296,Enrique Murciano,1217351090 +194202,32296,Ernie Hudson,1217351089 +194202,32296,Regina King,1217351090 +194202,32296,Sandra Bullock,1217351090 +194202,32296,William Shatner,1217351090 +194202,33493,Ewan McGregor,1221799973 +194202,33493,Hayden Christensen,1221799998 +194202,33493,Jimmy Smits,1221799973 +194202,33499,Adam Scott,1217352266 +194202,33499,Jane Fonda,1217352266 +194202,33499,Jennifer Lopez,1217352266 +194202,33499,Michael Vartan,1217352266 +194202,33499,Wanda Sykes,1217352266 +194202,33639,Allyssa Pollack,1217096535 +194202,33639,Elsamelys Ulerio,1217096535 +194202,33639,Michell Rodriguez,1217096535 +194202,33639,Wilson Castillo,1217096535 +194202,33639,Yomaira Reynoso,1217096535 +194202,33646,Burt Reynolds,1217094919 +194202,33646,James Cromwell,1217094919 +194202,33646,Nelly,1217094919 +194202,33679,Adam Brody,1217352858 +194202,33679,Kerry Washington,1217352858 +194202,33679,Vince Vaughn,1217352858 +194202,33815,Carson Kressley,1217548171 +194202,33815,Christopher Noth,1217548159 +194202,33815,Heather Locklear,1217548159 +194202,33815,Hilary Duff,1217548159 +194202,33815,Mike O'Malley,1217548159 +194202,34072,Charles Berling,1217107427 +194202,34072,Jules Sitruk,1217107427 +194202,34336,Christopher Plummer,1217362799 +194202,34336,Dermot Mulroney,1217362799 +194202,34336,Diane Lane,1217362799 +194202,34336,Elizabeth Perkins,1217362799 +194202,36525,Reese Witherspoon,1215791976 +194202,37736,Barney Clark,1217524698 +194202,37736,Ben Kingsley,1217524698 +194202,37736,Harry Eden,1217524698 +194202,37736,Jamie Forman,1217524698 +194202,37736,Leanne Rowe II,1217524698 +194202,39234,Charlize Theron,1217388849 +194202,39234,Frances McDormand,1217388849 +194202,39234,Jeremy Renner,1217388849 +194202,39234,Michelle Monaghan,1217388849 +194202,39234,Richard Jenkins,1217388849 +194202,39234,Sean Bean,1217388849 +194202,39234,Sissy Spacek,1217388849 +194202,39234,Woody Harrelson,1217388849 +194202,40629,Jena Malone,1217624992 +194202,40629,Matthew MacFadyen,1217624992 +194202,40629,Rosamund Pike,1217624992 +194202,41285,Brian Cox,1217108239 +194202,41285,Emily Mortimer,1217108239 +194202,41285,Jonathan Rhys Meyers,1217108239 +194202,41285,Matthew Goode,1217108239 +194202,41571,Ken Watanabe,1217347254 +194202,41571,Koji Yakusho,1217347254 +194202,41571,Michelle Yeoh,1217347254 +194202,41571,Youki Kudoh,1217347254 +194202,41571,Ziyi Zhang,1217347254 +194202,41997,Ciaran Hinds,1217361322 +194202,41997,Daniel Craig,1217361322 +194202,41997,Eric Bana,1217361322 +194202,41997,Hanns Zischler,1217361322 +194202,41997,Mathieu Kassovitz,1217361322 +194202,42418,August Schellenberg,1217387452 +194202,42418,Christopher Plummer,1217387452 +194202,42418,Colin Farrell,1217387452 +194202,42418,David Thewlis,1217387452 +194202,42418,Q'Orianka Kilcher,1217387452 +194202,42418,Wes Studi,1217387452 +194202,42418,Yorick van Wageningen,1217387452 +194202,42732,Alicia Witt,1215794975 +194202,42732,LL Cool J,1215794975 +194202,42732,Queen Latifah,1215794975 +194202,42734,glenn close,1215700443 +194202,43560,Angela Lansbury,1217386507 +194202,43560,Celia Imrie,1217386507 +194202,43560,Colin Firth,1217386507 +194202,43560,Derek Jacobi,1217386507 +194202,43560,Emma Thompson,1217386507 +194202,43560,Imelda Staunton,1217386507 +194202,43560,Kelly Macdonald,1217386507 +194202,43560,Patrick Barlow,1217386507 +194202,43560,Thomas Sangster,1217386507 +194202,43836,Emily Mortimer,1217612139 +194202,43836,Henry Czerny,1217612139 +194202,44665,Ben Kingsley,1217096214 +194202,44665,Josh Hartnett,1217096214 +194202,44665,Lucy Liu,1217096214 +194202,45186,Billy Crudup,1217351709 +194202,45186,Michelle Monaghan,1217351709 +194202,45186,Ving Rhames,1217351709 +194202,45431,Gary Shandling,1217526243 +194202,45431,Steve Carell,1217526243 +194202,45431,Wanda Sykes,1217526243 +194202,45722,Bill Nighy,1217621484 +194202,45722,Jack Davenport,1217621484 +194202,45722,Naomie Harris,1217621706 +194202,45722,Stellan Skarsgard,1217621706 +194202,45722,Tom Hollander,1217621706 +194202,46972,Ben Stiller,1217387785 +194202,46972,Carla Gugino,1217387785 +194202,46972,Dick Van Dyke,1217387785 +194202,46972,Mickey Rooney,1217387785 +194202,46972,Patrick Gallagher,1217387785 +194202,46972,Ricky Gervais,1217387785 +194202,46972,Robin Williams,1217387785 +194202,46972,Steve Coogan,1217387785 +194202,48414,Debra Messing,1217525570 +194202,48414,Gary Sinise,1217525570 +194202,48414,Martin Lawrence,1217525570 +194202,48414,Paul Westerberg,1217525570 +194202,48600,John Rhys-Davies,1217525349 +194202,48600,Luke Goss,1217525349 +194202,48600,Omar Sharif,1217525349 +194202,48600,Peter O'Toole,1217525349 +194202,48600,Tiffany Dupont,1217525349 +194202,48711,Football,1215698265 +194202,49524,Alexander Siddig,1217386925 +194202,49524,Ciarán Hinds,1217386926 +194202,49524,Hiam Abbass,1217386926 +194202,49524,Keisha Castle-Hughes,1217386926 +194202,49524,Oscar Isaac,1217386926 +194202,49524,Shaun Toub,1217386926 +194202,49524,Shohreh Aghdashloo,1217386926 +194202,49524,Stanley Townsend,1217386926 +194202,51471,Albert Finney,1217111737 +194202,51471,Benedict Cumberbatch,1217111737 +194202,51471,Michael Gambon,1217111737 +194202,51471,Ramola Garai,1217111737 +194202,52287,Adam West,1217111077 +194202,52287,Angela Bassett,1217111077 +194202,52287,Harland Williams,1217111077 +194202,52287,Jordan Fry,1217111077 +194202,52287,Tom Kenny,1217111077 +194202,53125,Bill Nighy,1217621617 +194202,53125,Geoffrey Rush,1217621522 +194202,53125,Jack Davenport,1217621617 +194202,53125,Jonathan Pryce,1217621617 +194202,53125,Lee Arenberg,1217621617 +194202,53322,Andy Garcia,1217523279 +194202,53322,Ellen Barkin,1217523279 +194202,53322,George Clooney,1217523279 +194202,53322,Matt Damon,1217523279 +194202,53466,Amy Bruckner,1217386347 +194202,53466,Barry Bostwick,1217386347 +194202,53466,Craig Gellis,1217386347 +194202,53466,Emma Roberts,1217386347 +194202,53466,Josh Flitter,1217386347 +194202,53466,Kay Panabaker,1217386347 +194202,53466,Max Thieriot,1217386347 +194202,53466,Rachael Leigh Cook,1217386347 +194202,53466,Rich Cooper,1217386347 +194202,53466,Tate Donovan,1217386347 +194202,53974,Mandy Moore,1217091562 +194202,53974,Robin Williams,1217091562 +194202,54276,Aaron Eckhart,1217388299 +194202,54276,Abigail Breslin,1217388299 +194202,54276,Bob Balaban,1217388299 +194202,54276,Brian F. O'Byrne,1217388299 +194202,54276,Catherine Zeta-Jones,1217388299 +194202,54276,Jenny Wade,1217388299 +194202,54276,Patricia Clarkson,1217388299 +194202,54780,Alicia Keys,1217386416 +194202,54780,Cady Huffman,1217386416 +194202,54780,Chris Evans,1217386416 +194202,54780,Donna Murphy,1217386416 +194202,54780,Laura Linney,1217386416 +194202,54780,Nicholas Art,1217386416 +194202,54780,Paul Giamatti,1217386416 +194202,54780,Scarlett Johansson,1217386416 +194202,55999,Jason Bateman,1217360291 +194202,55999,Ted Ludzik,1217360291 +194202,55999,Zachary Mills,1217360291 +194202,56274,Flora Cross,1217107540 +194202,56274,Jack Black,1217107540 +194202,56274,Jennifer Jason Leigh,1217107540 +194202,56274,John Turturro,1217107540 +194202,56274,Nicole Kidman,1217107540 +194202,56587,Beverly Todd,1217385127 +194202,56587,Jack Nicholson,1217385126 +194202,56587,Morgan Freeman,1217385126 +194202,56587,Rob Morrow,1217385126 +194202,56587,Sean Hayes,1217385126 +194202,56775,Diane Kruger,1217386750 +194202,56775,Ed Harris,1217386750 +194202,56775,Helen Mirren,1217386750 +194202,56775,Jon Voight,1217386750 +194202,56775,Justin Bartha,1217386750 +194202,57370,Adam Rothenberg,1217096637 +194202,57370,Diane Keaton,1217096637 +194202,57370,Katie Holmes,1217096637 +194202,57370,Queen Latifah,1217096637 +194202,57370,Roger R. Cross,1217096637 +194202,57951,Alexis Dziena,1217771166 +194202,57951,Donald Sutherland,1217771166 +194202,57951,Ewen Bremner,1217771166 +194202,57951,Kate Hudson,1217771166 +194202,57951,Matthew McConaughey,1217771166 +194202,57951,Ray Winstone,1217771166 +194202,58025,Diane Lane,1217358048 +194202,58025,Hayden Christensen,1217358048 +194202,58025,Jamie Bell,1217358048 +194202,58025,Michael Rooker,1217358048 +194202,58025,Rachel Bilson,1217358048 +194202,58107,Briana Evigan,1216525273 +194202,58107,Robert Hoffman,1216525273 +194202,58154,Eddie Redmayne,1217525803 +194202,58154,Eric Bana,1217525803 +194202,58154,Natalie Portman,1217525803 +194202,58154,Scarlett Johansson,1217525803 +194202,58154,Tiffany Freisberg,1217525803 +194202,58156,Will Ferrell,1216518028 +194202,58295,Alki David,1220123744 +194202,58295,Daniel Mays,1220123744 +194202,58295,James Faulkner,1220123744 +194202,58295,Saffron Burrows,1220123744 +194202,58295,Stephen Campbell Moore,1220123744 +194202,58972,Abigail Breslin,1221799160 +194202,58972,Anthony Simcoe,1221799160 +194202,58972,Gerard Butler,1221799160 +194202,58972,Jodie Foster,1221799160 +194202,58972,Mark Brady,1221799160 +194202,58972,Michael Carman,1221799160 +194202,59333,Chris Messina,1223872029 +194202,59333,Kadeem Hardison,1223872029 +194202,59333,Kevin McKidd,1223872029 +194202,59333,Michelle Monaghan,1223872029 +194202,59333,Patrick Dempsey,1223872029 +194202,59333,Richmond Arquette,1223872029 +194202,59336,Alice Braga,1220131608 +194202,59336,Craig Collington Bator,1220131608 +194202,59336,Douglas Barcellos,1220131608 +194202,59336,Jeffrey Addiss,1220131608 +194202,59336,Joseph Alfieri,1220131607 +194202,59336,Rodrigo Santoro,1220131608 +194202,59336,Tim Allen,1220131608 +194204,316,space,1279909623 +194206,1653,dystopia,1318086842 +194206,1748,dystopia,1318084340 +194206,1748,surreal,1318084348 +194206,7371,boring,1318087030 +194206,7371,experimental,1318086990 +194225,433,short-term memory loss,1368059108 +194225,521,neo-noir,1368058759 +194225,746,entirely dialogue,1368058859 +194225,1068,noir thriller,1368057968 +194225,1162,jesus,1368057763 +194225,1359,arnold,1368058212 +194225,1422,conspiracy theory,1368058934 +194225,1544,spielberg,1368059136 +194225,1693,spielberg,1368059136 +194225,1783,neo-noir,1368058759 +194225,2579,neo-noir,1368058759 +194225,2731,childhood,1416574919 +194225,2731,children,1416574913 +194225,2739,spielberg,1368059136 +194225,2819,conspiracy theory,1368058934 +194225,3153,dragon,1368058971 +194225,3489,spielberg,1368059136 +194225,3698,arnold,1368058212 +194225,3783,neo-noir,1368058759 +194225,3997,dragon,1368058971 +194225,4091,cheerleading,1368058194 +194225,4189,christian,1368058575 +194225,4189,jesus,1368057763 +194225,4370,spielberg,1368059136 +194225,4558,arnold,1368058213 +194225,4612,jesus,1368057763 +194225,4783,mountain climbing,1368059072 +194225,4795,stranded,1368058037 +194225,5146,dark hero,1368058131 +194225,5832,christian,1368058575 +194225,5882,treasure,1368057855 +194225,5893,neo-noir,1368058759 +194225,5942,cheerleading,1368058194 +194225,6157,dark hero,1368058132 +194225,6254,screwball comedy,1368058446 +194225,6260,christian,1368058575 +194225,6450,stranded,1368058037 +194225,6609,jesus,1368057763 +194225,6683,bollywood,1368057653 +194225,6768,christian,1368058575 +194225,7004,arnold,1368058213 +194225,7217,noir thriller,1368057969 +194225,7223,noir thriller,1368057969 +194225,7335,noir thriller,1368057969 +194225,7373,dark hero,1368058131 +194225,7938,jesus,1368057763 +194225,7943,noir thriller,1368057969 +194225,8711,screwball comedy,1368058446 +194225,8972,conspiracy theory,1368058934 +194225,25927,noir thriller,1368057969 +194225,26398,mars,1368058096 +194225,27822,stranded,1368058037 +194225,34048,spielberg,1368059136 +194225,47394,bollywood,1368057653 +194225,51086,conspiracy theory,1368058934 +194225,52241,short-term memory loss,1368059108 +194225,55118,dark hero,1368058131 +194225,55732,mars,1368058096 +194225,56775,conspiracy theory,1368058934 +194225,57951,treasure,1368057855 +194225,60684,dark hero,1368058132 +194225,68554,conspiracy theory,1368058934 +194225,74624,christian,1368058575 +194225,80219,boobies guns and blood!,1283852369 +194225,81562,mountain climbing,1368059072 +194225,84601,short-term memory loss,1368059108 +194225,86880,treasure,1368057855 +194225,90746,treasure,1368057855 +194225,91529,dark hero,1368058132 +194225,91976,stranded,1368058037 +194225,96829,Danish,1421026306 +194225,96829,Mads Mikkelsen,1421026297 +194225,96829,painful to watch,1421026193 +194225,96829,Thomas Vinterberg,1421026382 +194225,97938,stranded,1368058037 +194225,102235,Osama bin Laden,1367459723 +194225,104644,mental illness,1378177940 +194225,104644,stand-up comedy,1378177940 +194225,108188,Bad computing,1422324250 +194225,120466,When rappers write their own parts,1437967121 +194225,127158,comedy,1442171338 +194225,132796,Formulaic,1443412465 +194243,2502,comedy,1139369234 +194243,3753,Mel Gibson,1139369303 +194243,3753,war,1139369303 +194243,4873,existentialism,1140570856 +194243,4873,philosophy,1140570856 +194243,6377,animation,1139369259 +194243,6377,Pixar,1139369259 +194243,40819,biopic,1139369111 +194243,40819,goldenglobe,1139369111 +194243,40819,musical,1139369111 +194258,99813,Best Action movie...,1437799709 +194274,27773,twist ending,1451246925 +194274,109487,sci-fi,1451246959 +194274,109487,thought-provoking,1451246986 +194274,109487,time-travel,1451246966 +194323,589,time travel,1425483934 +194356,4811,rebels and outsiders,1207360808 +194382,613,period drama,1274039860 +194382,7669,period drama,1274039885 +194412,235,Johnny Depp,1257187623 +194412,235,true story,1257187632 +194412,1307,friendship,1257186234 +194412,1307,meg ryan,1257186234 +194412,1307,romance.,1257186233 +194412,2291,Depp & Burton,1257187414 +194412,2291,Johnny Depp,1257187407 +194412,2291,love story,1257187419 +194412,2424,Meg Ryan,1257186197 +194412,2424,New York City,1257187501 +194412,2424,romance,1257186197 +194412,2424,Tom Hanks,1257186197 +194412,8529,heartfelt.innocent,1257186966 +194412,8529,Tom Hanks,1257186966 +194412,30793,Johnny Depp,1257187560 +194412,48738,james mcavoy,1257180883 +194412,51834,18th century,1257188019 +194412,51834,anne hathaway,1257188019 +194412,51834,england,1257188019 +194412,51834,james mcavoy,1257188019 +194412,51834,romance,1257188019 +194412,60069,adventure.,1257186283 +194412,60069,romance,1257186283 +194417,260,dystopian,1436342333 +194417,260,sci-fi,1436342325 +194419,50,great acting,1368780136 +194419,50,storytelling,1368428563 +194419,70,cult classic,1368780151 +194419,111,loneliness,1368428597 +194419,150,dramatic,1368729228 +194419,204,action,1368780063 +194419,296,storytelling,1368428563 +194419,318,great acting,1368780135 +194419,593,great acting,1368780135 +194419,858,great acting,1368780136 +194419,858,oscar (best directing),1368729188 +194419,1089,original,1368428508 +194419,1175,weird,1368780098 +194419,1213,oscar (best directing),1368729188 +194419,1255,cult classic,1368780151 +194419,1307,relationships,1368780080 +194419,1552,action,1368780063 +194419,1617,great acting,1368780135 +194419,1704,mentor,1368428535 +194419,1991,horror,1368780164 +194419,2167,action,1368780063 +194419,2194,oscar (best directing),1368729188 +194419,2291,original,1368428508 +194419,2371,comedy,1368428550 +194419,2420,mentor,1368428535 +194419,2460,horror,1368780164 +194419,2858,Oscar (Best Picture),1295225846 +194419,3105,dramatic,1368729228 +194419,3114,original,1368428508 +194419,3147,oscar (best directing),1368729188 +194419,3421,comedy,1368428550 +194419,3740,cult classic,1368780150 +194419,3994,storytelling,1368428563 +194419,4085,comedy,1368428550 +194419,4128,cult classic,1368780150 +194419,4226,storytelling,1368428563 +194419,4878,original,1368428508 +194419,4878,weird,1368780098 +194419,7438,storytelling,1368428563 +194419,8641,comedy,1368428550 +194419,32587,storytelling,1368428563 +194419,60684,visually appealing,1368780118 +194435,1061,Brad Pitt,1235764009 +194435,3160,multiple storylines,1235764016 +194435,5673,Adam Sandler,1235764011 +194436,31408,15555555555,1150546948 +194437,105161,documentary,1422283173 +194437,105161,electronic music,1422283173 +194437,105161,music,1422283173 +194437,114662,Propaganda,1434394047 +194448,47099,courage,1244935256 +194448,48516,Jack Nicholson,1244935292 +194448,48516,Leonardo DiCaprio,1244935291 +194448,48516,Matt Damon,1244935294 +194455,47,Brad Pitt,1151968918 +194455,89,Johnny Depp,1151968076 +194455,170,Angelina Jolie,1151968681 +194455,216,Adam Sandler,1151967305 +194455,256,Arnold Schwarzenegger,1151967540 +194455,1061,Brad Pitt,1151968875 +194455,1370,Bruce Willis,1151968149 +194455,1587,Arnold Schwarzenegger,1151967764 +194455,2694,Adam Sandler,1151967349 +194455,2916,Arnold Schwarzenegger,1151967607 +194455,3005,Angelina Jolie,1151968634 +194455,3081,Johnny Depp,1151968045 +194455,3527,Arnold Schwarzenegger,1151967659 +194455,3698,Arnold Schwarzenegger,1151967642 +194455,3717,Angelina Jolie,1151968612 +194455,3979,Adam Sandler,1151967261 +194455,4011,Brad Pitt,1151968838 +194455,4558,Arnold Schwarzenegger,1151967625 +194455,4699,Angelina Jolie,1151968550 +194455,5040,Arnold Schwarzenegger,1151967769 +194455,5449,Adam Sandler,1151967328 +194455,6003,Brad Pitt,1151968803 +194455,6539,Johnny Depp,1151967945 +194455,6564,Angelina Jolie,1151968576 +194455,7004,Arnold Schwarzenegger,1151967580 +194455,27816,WWII,1152062939 +194455,32587,Bruce Willis,1151968175 +194455,33679,Angelina Jolie,1151968509 +194455,33679,Brad Pitt,1151968740 +194455,46530,comic book,1152062959 +194455,53972,hackers,1184388087 +194465,74851,too much violence,1276309134 +194479,260,"action, scifi",1443305396 +194479,260,space adventure,1443305386 +194479,6753,family,1444520151 +194479,6753,funny,1444520125 +194479,6753,sweet,1444520135 +194479,44665,gangsters,1445052961 +194479,44665,Morgan Freeman,1445052953 +194479,44665,organized crime,1445052945 +194479,44665,Revenge,1445052935 +194479,44665,violent,1445052918 +194479,49530,a father's love,1444523579 +194479,49530,child soldiers,1444523639 +194479,49530,love story,1444523510 +194479,49530,the diamond trade,1444523607 +194479,53129,intense,1452386871 +194479,64034,friendship,1448301408 +194479,84601,unrealistic action,1444517222 +194479,103372,funny,1452372042 +194479,103372,hilarious,1452371987 +194479,109374,Edward Norton,1443309478 +194494,4034,blaspheme,1158533071 +194503,26550,biopic,1443047312 +194518,260,action,1436504911 +194518,260,adventure,1436504901 +194518,1580,Will Smith,1436505050 +194518,94777,science fiction,1436505239 +194518,94777,very funny,1436505239 +194518,94777,Will Smith,1436505071 +194537,6250,Stephen King,1356917879 +194575,296,classic,1446695399 +194575,86504,torn life,1446695467 +194631,508,Denzel Washington,1297950290 +194631,508,Oscar (Best Actor),1297950292 +194631,508,Tom Hanks,1297950287 +194631,673,bill murray,1282585776 +194631,1222,Stanley Kubrick,1297950247 +194631,1258,Stanley Kubrick,1297950167 +194631,1732,cult film,1297950325 +194631,1968,cult film,1297950155 +194631,2329,Edward Norton,1297950253 +194631,2355,Pixar,1297950202 +194631,2502,cult film,1297950317 +194631,2710,low budget,1297950260 +194631,2797,Tom Hanks,1297950272 +194631,3564,acting,1282585507 +194631,3564,consensual rape joke in a kids film,1282585550 +194631,3564,everything,1282585474 +194631,3564,fred,1282585498 +194631,3564,mivk jagger 'look/soundalike',1282585607 +194631,3564,script,1282585516 +194631,3564,sets,1282585560 +194631,3564,stephen baldwin,1282585491 +194631,4886,Pixar,1297950182 +194631,5349,superhero,1297950194 +194631,5419,Freddie Prinze Jr.,1282585702 +194631,6287,ending,1285444382 +194631,6377,Pixar,1297950266 +194631,6946,steve martin,1282585749 +194631,8949,length,1282583019 +194631,27831,ending,1287933173 +194631,31698,annoying,1282585326 +194631,31698,i miss jaime kennedy,1282585381 +194631,31698,it ruined jaime kennedys career,1282585349 +194631,31698,it sucks,1282585315 +194631,31698,the dog,1282585290 +194631,31698,the kid,1282585282 +194631,31698,the plot,1282585302 +194631,31698,the script,1282585407 +194631,31698,why?,1282585362 +194631,46976,ending,1282583658 +194631,64620,innacurate,1282583816 +194631,68791,boring,1282585144 +194631,68791,mcg,1282585144 +194631,69757,adorable,1290797122 +194631,72395,mo'nique,1287790410 +194631,72405,cage,1285444133 +194631,74916,ending,1282582959 +194631,74916,rhys ifans,1282582952 +194631,78209,diddy,1285444069 +194631,80350,terrible,1287777882 +194631,95890,improvisation,1422751625 +194631,95890,paddy considine,1422751625 +194631,95890,shane meadows,1422751625 +194631,104903,belfast,1423426023 +194631,104903,heartwarming,1423426023 +194631,104903,punk rock,1423426023 +194633,4438,Christmas,1288277918 +194647,4973,beautifully filmed,1397241040 +194647,4973,quirky,1397241036 +194647,4973,romance,1397241034 +194647,4973,stylized,1397241006 +194647,4973,visually appealing,1397241031 +194647,4973,whimsical,1397241024 +194647,7158,culture clash,1397367159 +194647,7158,heartbreaking,1397367163 +194647,7158,intense,1397367176 +194647,7158,sad but good,1397367180 +194667,540,>,1188138506 +194667,707,>,1188138498 +194667,1244,>,1188138247 +194667,1587,>,1188138417 +194667,1779,>,1188138511 +194667,2872,>,1188138430 +194667,2951,>,1188138489 +194667,2953,>,1188138435 +194667,3785,>,1188138280 +194667,3826,>,1188138366 +194667,3916,>,1188138383 +194667,4262,>,1188138328 +194667,4310,>,1188138322 +194667,4367,>,1188138442 +194667,4848,>,1188138310 +194667,5377,>,1188138176 +194667,5679,>,1188138274 +194667,6016,>,1188138472 +194667,6373,>,1188138463 +194667,6378,>,1188138295 +194667,6870,>,1188138447 +194667,6934,>,1188138266 +194667,7147,>,1188138233 +194667,8622,>,1188138354 +194667,8798,>,1188138478 +194691,47830,Nudity (Topless),1162209176 +194744,644,1,1180506111 +194760,1200,action,1262289824 +194760,1200,aliens,1262289822 +194760,1200,classic,1262289837 +194760,1200,military,1262289825 +194760,1200,Oscar (Best Effects - Visual Effects),1262289830 +194760,3147,Tom Hanks,1262289606 +194760,4327,Clint Eastwood,1262289159 +194760,4327,western,1262289153 +194760,7193,Andrew Dice Clay,1262355040 +194760,7193,rock n' roll,1262355048 +194760,31410,factual,1262289733 +194760,31410,historical,1262289724 +194760,31410,history,1262289725 +194760,54736,Jamie Foxx,1262290149 +194760,58559,Batman,1262289261 +194760,58559,Christian Bale,1262289262 +194760,58559,comic book,1262289276 +194760,58559,dark,1262289278 +194760,58559,Heath Ledger,1262289264 +194760,58559,Morgan Freeman,1262289265 +194760,58559,superhero,1262289270 +194760,59369,Liam Neeson,1262294692 +194760,71530,alternate reality,1262294538 +194760,71530,Bruce Willis,1262294536 +194760,71530,future,1262294542 +194760,71530,technology,1262294545 +194760,72641,sports,1265966339 +194760,72641,true story,1265966341 +194760,72998,3d,1262288667 +194760,72998,graphic design,1262288672 +194760,72998,visual,1262288683 +194766,110102,superhero,1427541627 +194766,112623,ape,1427541666 +194766,115617,robotics,1427541587 +194766,116797,computing,1427541537 +194778,5618,anime,1449948691 +194778,5618,atmospheric,1449948708 +194778,5618,fantasy,1449948701 +194779,78039,slow moving plot,1295644728 +194779,78039,true to life,1295644734 +194789,1213,Martin Scorsese,1448896965 +194789,1213,robert de niro,1448896971 +194789,1221,Mafia,1448896946 +194793,260,fantasy,1440976915 +194793,260,sci-fi,1440976918 +194794,50,Benicio Del Toro,1365201078 +194794,50,caper,1365201090 +194794,50,complicated,1365201049 +194794,50,conspiracy,1365201053 +194794,50,Dark,1365201080 +194794,50,ensemble cast,1365201054 +194794,50,funny,1365201057 +194794,50,heist,1365201059 +194794,50,Kevin Spacey,1365201065 +194794,50,organized crime,1365201068 +194794,50,twist ending,1365201071 +194794,50,twists & turns,1365201074 +194794,235,Johnny Depp,1365301966 +194794,4446,Game related,1365234457 +194794,7147,biography,1365200900 +194794,7147,coming of age,1365200895 +194794,7147,dreamlike,1365200879 +194794,7147,stylized,1365200886 +194794,7147,twist ending,1365200884 +194794,8874,black comedy,1365201224 +194794,8874,gore,1365201238 +194794,8874,parody,1365201228 +194794,8874,satire,1365201230 +194794,8874,zombies,1365201234 +194794,56174,post-apocalyptic,1365237027 +194794,57368,"""found footage""",1365230887 +194794,57368,city under attack,1365230889 +194794,57368,Handycam,1365230884 +194794,57368,mockumentary,1365230882 +194794,57368,Schizo-cam,1365230913 +194794,57368,shaky camera,1365230916 +194794,57368,unsteady-cam,1365230917 +194794,70286,heartbreaking,1365230722 +194794,70286,intelligent,1365230814 +194794,70286,mockumentary,1365230810 +194794,70286,social commentary,1365230817 +194794,70286,thriller,1365230806 +194794,70286,violence,1365230789 +194794,79463,comedy,1421455542 +194794,79463,family,1421455542 +194794,79463,magical nanny,1421455542 +194794,97752,cannibalism,1365230122 +194794,97752,complicated,1365230124 +194794,97752,dystopia,1365230112 +194794,97752,multiple storylines,1365230106 +194794,97752,rebellion,1365230109 +194794,97913,cars,1365213485 +194794,97913,crude humor,1365213447 +194794,97913,nostalgic,1365213449 +194794,97913,plot twist,1365213467 +194794,97913,Sarah Silverman,1365213493 +194794,97913,video games,1365213442 +194794,97913,watch the credits,1365213462 +194818,2194,organized crime,1370210021 +194818,49278,Denzel Washington,1370210789 +194818,73017,Action,1370210081 +194820,93721,focus,1439476580 +194828,6,Bibliothek,1138659036 +194828,11,23.03.06,1246389859 +194828,11,Bibliothek,1246389858 +194828,11,seen,1246389859 +194828,16,Bibliothek,1138659284 +194828,17,Bibliothek,1138206455 +194828,25,Bibliothek,1138403354 +194828,31,Bibliothek,1138402842 +194828,45,Bibliothek,1138363987 +194828,46,Bibliothek,1138398283 +194828,111,Bibliothek,1138659125 +194828,140,Bibliothek,1138402739 +194828,215,Bibliothek,1138206284 +194828,252,Bibliothek,1138916541 +194828,264,actress from Nathalie,1148629184 +194828,273,Bibliothek,1138659739 +194828,296,Bibliothek,1138659908 +194828,300,Bibliothek,1139088431 +194828,306,01.10.05,1139560708 +194828,306,Bibliothek,1137966307 +194828,306,seen,1139560708 +194828,307,Bibliothek,1138403726 +194828,308,Bibliothek,1138403731 +194828,316,Bibliothek,1139428810 +194828,318,Bibliothek,1138916366 +194828,322,not funny,1182590355 +194828,337,Bibliothek,1139266328 +194828,365,Bibliothek,1140176403 +194828,428,Bibliothek,1138659315 +194828,431,21.03.06,1143019769 +194828,431,Bibliothek,1141055128 +194828,431,seen,1143019769 +194828,468,Bibliothek,1139178351 +194828,499,Director of English Patient,1152392720 +194828,508,Bibliothek,1137966547 +194828,508,Tom Hanks gay,1137154214 +194828,509,Bibliothek,1138489167 +194828,517,Bibliothek,1138401417 +194828,535,Bibliothek,1138916359 +194828,553,Bibliothek,1139428492 +194828,589,Bibliothek,1138404874 +194828,605,Bibliothek,1138402777 +194828,617,Bibliothek,1138403718 +194828,647,Bibliothek,1138402394 +194828,647,not seen,1138405274 +194828,659,Bibliothek,1138404779 +194828,778,English,1174328467 +194828,782,Bibliothek,1138401509 +194828,898,Bibliothek,1138404228 +194828,908,Bibliothek,1138404144 +194828,911,Bibliothek,1139264798 +194828,926,Bibliothek,1246389837 +194828,934,Bibliothek,1139178587 +194828,936,Bibliothek,1138404761 +194828,955,Bibliothek,1139265699 +194828,971,Bibliothek,1138404200 +194828,1038,Bibliothek,1139265201 +194828,1061,Bibliothek,1138659119 +194828,1084,Bibliothek,1138403949 +194828,1116,nothing happens,1246102032 +194828,1116,one day,1246102032 +194828,1116,overrated,1246102003 +194828,1129,Bibliothek,1139428518 +194828,1132,actress from Nathalie,1148629226 +194828,1132,Nudity (Full Frontal),1188842147 +194828,1175,15.02.06,1140103678 +194828,1175,Bibliothek,1139261559 +194828,1175,seen,1140103678 +194828,1199,Bibliothek,1138659673 +194828,1206,Bibliothek,1138404965 +194828,1213,Bibliothek,1138206785 +194828,1226,Bibliothek,1139178529 +194828,1228,Bibliothek,1138405009 +194828,1234,Bibliothek,1139178341 +194828,1235,Bibliothek,1138404529 +194828,1244,18.01.06,1139560804 +194828,1244,Bibliothek,1137966487 +194828,1244,seen,1139560804 +194828,1248,Bibliothek,1138404549 +194828,1266,Bibliothek,1138404326 +194828,1279,10.02.06,1139652512 +194828,1279,Bibliothek,1138404711 +194828,1279,seen,1139652512 +194828,1295,29.03.06,1143835094 +194828,1295,seen,1143835094 +194828,1296,Bibliothek,1138399879 +194828,1305,Bibliothek,1138398320 +194828,1354,19.02.06,1140437263 +194828,1354,Bibliothek,1140437263 +194828,1354,seen,1140437263 +194828,1363,Bibliothek,1138402417 +194828,1377,Bibliothek,1138402773 +194828,1393,09.05.06,1147273400 +194828,1393,seen,1147273400 +194828,1417,Bibliothek,1138363939 +194828,1422,Bibliothek,1138401406 +194828,1457,Bibliothek,1139265336 +194828,1464,05.04.06,1144420384 +194828,1464,Bibliothek,1138404632 +194828,1464,seen,1144420384 +194828,1476,Nudity (Full Frontal - Notable),1281049171 +194828,1476,Nudity (Full Frontal),1281049175 +194828,1476,true story,1281049185 +194828,1526,Bibliothek,1138398033 +194828,1572,Bibliothek,1138404260 +194828,1584,06.04.06,1144420418 +194828,1584,Bibliothek,1139176900 +194828,1584,seen,1144420418 +194828,1593,Bibliothek,1138401750 +194828,1597,14.01.06,1139561033 +194828,1597,Bibliothek,1137966457 +194828,1597,seen,1139561033 +194828,1635,Bibliothek,1140437349 +194828,1635,not seen,1140437349 +194828,1653,05.03.06,1141650365 +194828,1653,Bibliothek,1138659903 +194828,1653,seen,1141650365 +194828,1658,Bibliothek,1139265683 +194828,1690,Bibliothek,1246389836 +194828,1729,Bibliothek,1138404586 +194828,1732,19.01.06,1139560792 +194828,1732,Bibliothek,1137966499 +194828,1732,seen,1139560792 +194828,1733,Bibliothek,1246389807 +194828,1821,Bibliothek,1138401592 +194828,1835,Bibliothek,1139266229 +194828,1844,08.02.06,1139561016 +194828,1844,seen,1139561016 +194828,1873,Bibliothek,1138659998 +194828,1876,31.03.06,1143917812 +194828,1876,Bibliothek,1143917812 +194828,1876,seen,1143917812 +194828,1902,Bibliothek,1138401849 +194828,1912,Bibliothek,1138404799 +194828,1960,Bibliothek,1140176329 +194828,2020,Bibliothek,1138402921 +194828,2065,28.06.06,1151593220 +194828,2065,Bibliothek,1151593220 +194828,2065,seen,1151593220 +194828,2167,Bibliothek,1138401459 +194828,2194,Bibliothek,1138205986 +194828,2194,not seen,1138405307 +194828,2278,Bibliothek,1138659031 +194828,2289,not funny,1191792796 +194828,2316,Bibliothek,1138363788 +194828,2331,Bibliothek,1139266478 +194828,2331,Danny DeVito,1251492838 +194828,2331,Holly Hunter,1251492841 +194828,2331,Nudity (Full Frontal),1251492845 +194828,2355,Bibliothek,1138818049 +194828,2360,Bibliothek,1138404024 +194828,2427,04.04.06,1144186389 +194828,2427,Bibliothek,1141055220 +194828,2427,seen,1144186389 +194828,2441,Bibliothek,1139265444 +194828,2442,02.04.06,1144063867 +194828,2442,Bibliothek,1140555902 +194828,2442,seen,1144063867 +194828,2539,Bibliothek,1138659043 +194828,2690,Bibliothek,1138956901 +194828,2704,Bibliothek,1143621151 +194828,2707,Bibliothek,1138916401 +194828,2712,Bibliothek,1138363754 +194828,2732,Bibliothek,1139265575 +194828,2745,Bibliothek,1138659840 +194828,2763,Bibliothek,1138404898 +194828,2764,Bibliothek,1138404896 +194828,2803,Bibliothek,1138402198 +194828,2819,Bibliothek,1246389732 +194828,2843,Bibliothek,1138403687 +194828,2894,Penis,1188841761 +194828,2913,funny!,1188652588 +194828,2931,bittersweet,1243968139 +194828,2931,gypsy,1243968143 +194828,2931,hallucinatory,1243968136 +194828,2931,quirky,1243968128 +194828,2959,atmospheric,1246045446 +194828,2959,disturbing,1246045442 +194828,2959,quirky,1246045455 +194828,2959,satirical,1246045460 +194828,2959,surreal,1246045463 +194828,2959,twist ending,1246045453 +194828,2959,violence,1246045440 +194828,2961,Bibliothek,1138402726 +194828,2970,Bibliothek,1138404422 +194828,2973,16.01.06,1139560797 +194828,2973,Bibliothek,1137966477 +194828,2973,seen,1139560797 +194828,3004,Bibliothek,1139178415 +194828,3005,Bibliothek,1138402123 +194828,3028,Bibliothek,1139178610 +194828,3072,boring,1188650650 +194828,3072,overrated,1188650650 +194828,3079,Bibliothek,1139265744 +194828,3083,Bibliothek,1246389839 +194828,3105,Bibliothek,1138659174 +194828,3176,Bibliothek,1138956773 +194828,3246,Bibliothek,1138402007 +194828,3258,Bibliothek,1139178549 +194828,3259,Bibliothek,1138364010 +194828,3263,Bibliothek,1138401532 +194828,3269,Bibliothek,1139177652 +194828,3334,Bibliothek,1138404486 +194828,3468,Bibliothek,1138404512 +194828,3476,Bibliothek,1138916580 +194828,3502,Bibliothek,1138363829 +194828,3536,Bibliothek,1138401916 +194828,3614,Sarah Jessica Parker,1244623359 +194828,3684,Bibliothek,1138402868 +194828,3706,Bibliothek,1138659478 +194828,3719,Bibliothek,1139266360 +194828,3741,Bibliothek,1138403902 +194828,3752,Bibliothek,1141141179 +194828,3788,Bibliothek,1138403929 +194828,3796,Bibliothek,1139265173 +194828,3813,26.03.06,1143488303 +194828,3813,Bibliothek,1143488303 +194828,3813,seen,1143488303 +194828,3822,Bibliothek,1139264863 +194828,3874,Bibliothek,1139265269 +194828,3948,Bibliothek,1138659593 +194828,3969,22.01.06,1139560824 +194828,3969,Bibliothek,1137966530 +194828,3969,seen,1139560824 +194828,3987,Bibliothek,1139264778 +194828,3991,Bibliothek,1246389710 +194828,3996,Bibliothek,1138404933 +194828,4014,Bibliothek,1139262059 +194828,4021,09.03.06,1141942548 +194828,4021,Bibliothek,1138206462 +194828,4021,seen,1141942548 +194828,4023,afternoon section,1247040221 +194828,4023,alternative life,1247040214 +194828,4033,Bibliothek,1139177433 +194828,4056,Bibliothek,1141055188 +194828,4069,Bibliothek,1139266505 +194828,4077,cool,1168961032 +194828,4112,Booring,1279404457 +194828,4151,funny,1189430701 +194828,4151,good,1189430610 +194828,4235,Bibliothek,1138206803 +194828,4273,10.01.06,1139560867 +194828,4273,Bibliothek,1137966421 +194828,4273,seen,1139560867 +194828,4305,Bibliothek,1139267248 +194828,4308,Bibliothek,1138363772 +194828,4329,Bibliothek,1138404840 +194828,4372,Bibliothek,1139266423 +194828,4392,15.01.06,1246389829 +194828,4392,Bibliothek,1246389829 +194828,4392,seen,1246389829 +194828,4429,Bibliothek,1138958925 +194828,4692,Bibliothek,1138398133 +194828,4720,Bibliothek,1138363959 +194828,4741,maturity,1245621008 +194828,4741,sexuality,1245621006 +194828,4770,Bibliothek,1140556065 +194828,4776,Bibliothek,1138402438 +194828,4796,Bibliothek,1139266458 +194828,4809,Bibliothek,1139428775 +194828,4823,Bibliothek,1139266527 +194828,4840,Bibliothek,1139266977 +194828,4844,Bibliothek,1138956926 +194828,4973,Bibliothek,1246389859 +194828,5004,Bibliothek,1138404124 +194828,5004,not seen,1138405329 +194828,5016,20.01.06,1139560830 +194828,5016,Bibliothek,1137966361 +194828,5016,seen,1139560830 +194828,5034,Director of English Patient,1152392713 +194828,5051,Bibliothek,1139265543 +194828,5105,Bibliothek,1138404988 +194828,5147,Bibliothek,1138405039 +194828,5222,Bibliothek,1139265596 +194828,5225,07.01.06,1139560736 +194828,5225,Bibliothek,1137966397 +194828,5269,Bibliothek,1138398597 +194828,5399,Bibliothek,1138404466 +194828,5408,Bibliothek,1139265833 +194828,5466,09.02.06,1139560635 +194828,5466,Bibliothek,1138397879 +194828,5466,seen,1139560635 +194828,5516,good thriller,1168691535 +194828,5517,26.01.06,1139560818 +194828,5517,Bibliothek,1138364265 +194828,5517,seen,1139560818 +194828,5525,Bibliothek,1138206327 +194828,5563,Bibliothek,1138659627 +194828,5576,Bibliothek,1143621123 +194828,5617,20.03.06,1142937765 +194828,5617,Bibliothek,1138206189 +194828,5617,seen,1142937765 +194828,5625,Bibliothek,1139265788 +194828,5633,Bibliothek,1138956933 +194828,5668,08.05.06,1147196889 +194828,5668,Bibliothek,1138402956 +194828,5668,seen,1147196889 +194828,5669,Bibliothek,1138206183 +194828,5673,Bibliothek,1139265886 +194828,5741,Bibliothek,1139266927 +194828,5792,biting,1259134287 +194828,5792,cynical,1259134289 +194828,5792,dating,1259134293 +194828,5792,New York City,1259134303 +194828,5792,Nudity (Topless),1259134308 +194828,5792,quirky,1259134323 +194828,5792,showgirls,1259134337 +194828,5792,talky,1259134341 +194828,5809,Bibliothek,1139266709 +194828,5824,Bibliothek,1138401437 +194828,5869,Bibliothek,1138659665 +194828,5878,Bibliothek,1138403712 +194828,5900,Bibliothek,1138659654 +194828,5902,Bibliothek,1246389805 +194828,5954,Bibliothek,1246389728 +194828,5955,Bibliothek,1138402107 +194828,5985,Bibliothek,1139267336 +194828,5989,Bibliothek,1139782099 +194828,5992,Bibliothek,1138363798 +194828,6016,Bibliothek,1139178779 +194828,6039,Bibliothek,1139264985 +194828,6067,09.01.06,1139560918 +194828,6067,Bibliothek,1137966409 +194828,6067,seen,1139560918 +194828,6100,10.06.06,1149929888 +194828,6100,Bibliothek,1149929890 +194828,6100,seen,1149929889 +194828,6155,Bibliothek,1139266622 +194828,6185,Bibliothek,1139428762 +194828,6192,Bibliothek,1139265852 +194828,6223,addiction,1255850597 +194828,6223,Brittany Murphy,1255850588 +194828,6223,drugs,1255850561 +194828,6223,Mickey Rourke,1255850565 +194828,6223,Nudity (Full Frontal - Notable),1255850555 +194828,6223,Nudity (Full Frontal),1255850552 +194828,6238,Bibliothek,1138403692 +194828,6291,01.03.06,1141249559 +194828,6291,Bibliothek,1138403429 +194828,6291,seen,1141249559 +194828,6305,Bibliothek,1138404399 +194828,6370,07.02.06,1139560754 +194828,6370,Bibliothek,1138206307 +194828,6370,seen,1139560754 +194828,6373,Bibliothek,1138401677 +194828,6385,07.01.06,1139560975 +194828,6385,seen,1139560975 +194828,6533,Bibliothek,1138404567 +194828,6538,Bibliothek,1138403698 +194828,6578,Bibliothek,1138404609 +194828,6591,Bibliothek,1252391620 +194828,6591,Nudity (Full Frontal - Notable),1252391625 +194828,6591,religion,1252391634 +194828,6596,18.03.06,1142763634 +194828,6596,Bibliothek,1141054929 +194828,6596,seen,1142763634 +194828,6620,Bibliothek,1139267220 +194828,6641,Bibliothek,1143621034 +194828,6870,Bibliothek,1138916413 +194828,6874,Bibliothek,1138659981 +194828,6876,07.04.06,1144442372 +194828,6876,Bibliothek,1144442426 +194828,6876,seen,1144442372 +194828,6927,Bibliothek,1138363681 +194828,6953,26.02.06,1246389706 +194828,6953,Bibliothek,1246389707 +194828,6953,seen,1246389708 +194828,6953,Tragedy,1246389708 +194828,6973,Bibliothek,1138659892 +194828,6977,Bibliothek,1138401482 +194828,7008,30.03.06,1143835063 +194828,7008,Bibliothek,1138404085 +194828,7008,seen,1143835063 +194828,7034,25.02.06,1140859365 +194828,7034,Bibliothek,1139265924 +194828,7034,seen,1140859367 +194828,7109,Nudity (Full Frontal - Notable),1253271147 +194828,7109,Nudity (Full Frontal),1253271159 +194828,7109,Sophie Marceau,1253271165 +194828,7162,Bibliothek,1138363810 +194828,7163,Bibliothek,1138660017 +194828,7168,bad story,1250152851 +194828,7168,bisexual,1250152844 +194828,7168,erotic,1250152847 +194828,7168,lesbian sex scene,1250152856 +194828,7168,Nudity (Full Frontal),1250152836 +194828,7168,ohsoso,1250152832 +194828,7173,Bibliothek,1246389859 +194828,7255,Bibliothek,1139266303 +194828,7265,12.03.06,1142767280 +194828,7265,Bibliothek,1140176099 +194828,7265,eva green,1244207340 +194828,7265,incest,1244207334 +194828,7265,Nudity (Full Frontal - Notable),1244207330 +194828,7265,Nudity (Full Frontal),1244207317 +194828,7265,seen,1142767280 +194828,7265,sexual,1244207321 +194828,7265,very good,1244207323 +194828,7354,Bibliothek,1138659048 +194828,7371,Bibliothek,1138363620 +194828,7372,Bibliothek,1141054948 +194828,7375,Bibliothek,1139178491 +194828,7438,Bibliothek,1138659980 +194828,7445,Bibliothek,1138402373 +194828,7445,not seen,1138405266 +194828,7449,Bibliothek,1138659633 +194828,7451,ohsoso,1189429970 +194828,7460,01.02.05,1139560671 +194828,7460,Bibliothek,1137966082 +194828,7460,seen,1139560671 +194828,7487,Bibliothek,1138659953 +194828,7490,Bibliothek,1138205813 +194828,7490,not seen,1138405294 +194828,7584,Bibliothek,1139265121 +194828,7698,Bibliothek,1148557421 +194828,7761,Bibliothek,1139265146 +194828,8042,Bibliothek,1138659689 +194828,8070,like an UdSSR film but good,1172669607 +194828,8254,Bibliothek,1138206032 +194828,8254,not seen,1138405323 +194828,8260,21.02.06,1140609812 +194828,8260,Bibliothek,1139406055 +194828,8260,seen,1140609812 +194828,8268,Bibliothek,1148557385 +194828,8373,Bibliothek,1138363716 +194828,8376,super boring,1260777613 +194828,8376,unfunny,1260777615 +194828,8464,about macdonalds,1148556963 +194828,8573,Bibliothek,1139265998 +194828,8576,small town,1247121222 +194828,8622,Bibliothek,1138206006 +194828,8622,not seen,1138405313 +194828,8638,Bibliothek,1139264736 +194828,8643,Bibliothek,1139264817 +194828,8724,Bibliothek,1138404065 +194828,8781,Bibliothek,1138402167 +194828,8866,Bibliothek,1139266602 +194828,8868,Bibliothek,1139265418 +194828,8874,really funny,1182635802 +194828,8874,zombies,1182635808 +194828,8905,Bibliothek,1246389706 +194828,8910,Bibliothek,1138398630 +194828,8910,Enkheim,1138398688 +194828,8928,Bibliothek,1138404854 +194828,8959,Bibliothek,1138363650 +194828,8963,Bibliothek,1141055265 +194828,8965,Bibliothek,1139090694 +194828,8970,13.01.06,1139560941 +194828,8970,Bibliothek,1137966446 +194828,8970,seen,1139560941 +194828,8977,Bibliothek,1246389808 +194828,9010,Bibliothek,1139265719 +194828,26242,Bibliothek,1138404294 +194828,27345,funny,1244793412 +194828,27345,sexy,1244793417 +194828,27416,05.02.06,1139560929 +194828,27416,Bibliothek,1139259035 +194828,27416,seen,1139560929 +194828,27721,04.03.06,1141559021 +194828,27721,Bibliothek,1138999039 +194828,27721,seen,1141559022 +194828,27722,based on tag,1246091430 +194828,27803,14.07.06,1152868468 +194828,27803,Bibliothek,1152868468 +194828,27803,suicide attempt,1152868447 +194828,27821,12.06.06,1150208167 +194828,27821,Bibliothek,1138363607 +194828,27821,seen,1150208167 +194828,27839,07.05.06,1147196917 +194828,27839,Bibliothek,1141054954 +194828,27839,seen,1147196917 +194828,27876,overrated,1173980188 +194828,30707,14.06.06,1145051023 +194828,30707,Bibliothek,1145051023 +194828,30707,seen,1145051023 +194828,30803,12.01.06,1246389735 +194828,30803,empty house,1246389736 +194828,30803,seen,1246389737 +194828,30812,Bibliothek,1138956838 +194828,30825,Bibliothek,1138659659 +194828,31956,11.01.06,1246389779 +194828,31956,Bibliothek,1246389779 +194828,31956,seen,1246389780 +194828,32291,01.04.06,1143974974 +194828,32291,Bibliothek,1143974974 +194828,32291,seen,1143974974 +194828,33585,waste of time and money to see this,1172269276 +194828,33725,adultery,1280875484 +194828,33725,dark comedy,1280875545 +194828,33725,disability,1280875553 +194828,33725,imaginary friend,1280875538 +194828,33725,lip reading,1280875532 +194828,33725,MUSICIAN'S LIFE,1280875525 +194828,33725,Nudity (Topless - Brief),1280875497 +194828,33725,setting:Ibiza (Spain),1280875521 +194828,33725,strong romantic subplot,1280875517 +194828,33725,topic:club DJ,1280875509 +194828,33725,topic:deafness,1280875504 +194828,33725,topic:drug addiction,1280875507 +194828,34048,20.08.05,1139561040 +194828,34048,seen,1139561040 +194828,34162,but long,1182590565 +194828,34162,not bad,1182590565 +194828,34319,21.08.05,1139561046 +194828,34319,seen,1139561046 +194828,34523,crazy,1170111680 +194828,38038,auf der Jagd nach dem Riesenkaninchen,1186991225 +194828,38798,28.12.05,1139561052 +194828,38798,seen,1139561052 +194828,40819,biographical,1250771658 +194828,40819,drugs,1250771667 +194828,40819,love,1250771674 +194828,40819,music,1250771653 +194828,40819,music business,1250771664 +194828,40819,true story,1250771646 +194828,45100,kidnapping,1250195822 +194828,45100,Latin America,1250195810 +194828,45100,Mexico,1250195827 +194828,45100,Mexico City,1250195807 +194828,45100,Nudity (Full Frontal - Notable),1250195780 +194828,45100,Nudity (Full Frontal),1250195784 +194828,45100,prostitution,1250195797 +194828,47491,Bible,1245275214 +194828,47491,church,1245275219 +194828,48394,Bibliothek,1204889466 +194828,50442,Nudity (Topless - Brief),1282256875 +194828,50442,Nudity (Topless),1282256878 +194828,50442,true story,1282256882 +194828,50802,Bibliothek,1258884591 +194828,52281,typically Tarantino,1188722419 +194828,55247,Alaska,1314392880 +194828,55247,based on a book,1314392884 +194828,55247,based on a true story,1314392860 +194828,55247,male nudity,1314392875 +194828,55247,Nudity (Full Frontal),1314392865 +194828,55247,Nudity (Topless - Notable),1314392869 +194828,55247,Nudity (Topless),1314392872 +194828,55247,road trip,1314392862 +194828,55247,self discovery,1314392863 +194828,55253,naja,1279054016 +194828,55253,slow - good,1250368181 +194828,55253,World War II,1250368176 +194828,56607,Bibliothek,1221031304 +194828,56805,musician,1313961555 +194828,56805,Nudity (Full Frontal - Brief),1313961543 +194828,56805,overlong,1313961567 +194828,56805,parody,1313961546 +194828,56805,satire,1313961559 +194828,56805,sex,1313961549 +194828,56805,silly,1313961551 +194828,56941,all,1252478753 +194828,56941,Bibliothek,1252478740 +194828,56941,nothing,1252478748 +194828,56941,waste of time,1252478833 +194828,58306,bab cinema,1262426242 +194828,58306,history,1262426231 +194828,58306,less than 300 ratings,1262426220 +194828,58306,plains warfare,1262426224 +194828,58306,steppe,1262426215 +194828,58334,Nudity (Topless),1287688125 +194828,58334,obsession,1287688127 +194828,58334,voyeurism,1287688132 +194828,58998,male nudity,1247907084 +194828,58998,Nudity (Full Frontal - Notable),1247907080 +194828,58998,Nudity (Topless),1247907072 +194828,58998,Predictable,1247907064 +194828,59014,Leslie Nielsen,1255939475 +194828,59014,parody,1255939472 +194828,60128,threesome,1243501253 +194828,61075,AGE DISPARITY ROMANCE,1243794259 +194828,61075,Nudity (Topless - Notable),1243794241 +194828,61075,Nudity (Topless),1243794244 +194828,61075,teacher student relationship,1243794248 +194828,61075,toplist08,1243794252 +194828,62374,spy,1288217521 +194828,62374,torture,1288217514 +194828,62374,war,1288217519 +194828,62511,Nudity (Topless),1250367722 +194828,62511,surreal,1250367727 +194828,62511,Theater,1250367730 +194828,62511,To See,1250367733 +194828,64957,Aging,1246171147 +194828,64957,boring,1246171204 +194828,64957,Brad Pitt,1246171135 +194828,64957,Cate Blanchett,1246171197 +194828,64957,cinematography,1246171154 +194828,64957,drama,1246171159 +194828,64957,interesting,1246171161 +194828,64957,life lessons,1246171189 +194828,64957,long,1246171167 +194828,64957,Oscar (Best Effects - Visual Effects),1246171181 +194828,64957,sad,1246171170 +194828,64957,slow,1246171173 +194828,64957,touching,1246171177 +194828,65130,abortion,1249323101 +194828,65130,bad ending,1249323099 +194828,65130,satisfaction in life,1249323087 +194828,65230,comedy,1256676859 +194828,65230,drama and commedy,1256676864 +194828,65230,journalism,1256676872 +194828,65230,marriage,1256676877 +194828,67408,3D,1243801509 +194828,67408,alien invasion,1243801506 +194828,67408,animation,1243801461 +194828,67408,funny,1243801499 +194828,67408,monsters,1243801495 +194828,68237,cloning,1279921234 +194828,68237,isolation,1279921288 +194828,72011,cynicism,1267353426 +194828,72011,Nudity (Rear),1267353433 +194828,74946,cute,1280440651 +194828,74946,funny,1280440665 +194828,74946,hottie,1280440671 +194828,74946,romance,1280440661 +194828,79132,ambiguous ending,1288733228 +194828,79132,Boring after 2/3,1288733217 +194828,79132,mindfuck,1288733222 +194836,42728,true love,1256967256 +194836,62293,romance,1257010725 +194836,67255,not in english,1256966880 +194845,260,Science Fiction,1443177799 +194845,260,space adventure,1443177784 +194889,260,a kind of western in fantasy world,1441310683 +194889,260,Overrated,1441310643 +194889,260,science fantasy,1441310634 +194900,260,classic sci-fi,1434049188 +194900,260,space action,1434049199 +194919,260,sci-fi,1435264025 +194919,260,thriller,1435264034 +194924,260,classic,1431790092 +194924,260,scifi,1431790086 +194941,318,prison,1420934047 +194941,318,prison escape,1420934047 +194941,318,stephen king,1420934047 +194941,7502,war,1420934661 +194941,44191,visually appealing,1420934888 +194949,113275,france,1422686243 +194949,113275,restraunt wars,1422686243 +194949,113275,star crossed lovers,1422686243 +194971,293,Gary Oldman,1451316318 +194971,293,Luc Besson,1451316315 +194971,2858,coming of age,1451316655 +194971,2858,thought-provoking,1451316649 +194971,3910,great ending,1451316601 +194971,3910,Lars von Trier,1451316597 +194971,4973,beautifully filmed,1451316688 +194971,4973,feel-good,1451316692 +194971,4973,great soundtrack,1451316701 +194971,4973,inspirational,1451316707 +194971,7451,High School,1451315916 +194971,33162,Eva Green,1453593912 +194971,33162,good cast,1453593890 +194971,33162,Orlando Bloom,1453593915 +194971,33162,theatrical cut,1453593876 +194971,41285,non-hollywood ending,1451316185 +194971,63992,vampires,1451484713 +194971,78316,Amanda Seyfried,1451612891 +194971,78316,italy,1451612879 +194971,80549,Emma Stone,1451316000 +194971,80549,high school,1451316009 +194971,80549,strong female lead,1451316018 +194971,80549,surprisingly good,1451316031 +194971,80549,witty,1451316006 +194971,88163,Emma Stone,1451316122 +194971,88163,masculinity through dress,1451316146 +194971,88163,Ryan Gosling,1451316126 +194971,89170,funny,1451951884 +194971,89170,sweet,1451951888 +194971,90405,Amanda Seyfried,1451672792 +194971,90405,great idea,1451672799 +194971,90405,great idea wasted,1451672825 +194971,90405,plot holes,1451672821 +194971,90405,sci-fi,1451672804 +194971,90405,thought-provoking,1451672815 +194971,92694,end of the world,1453629819 +194971,101864,interesting concept,1451377918 +194971,101864,sci-fi,1451672859 +194971,101864,twists & turns,1451672864 +194971,104841,intense,1451377952 +194971,104841,religion,1451377983 +194971,104841,visually appealing,1451377949 +194971,104841,visually stunning,1451377958 +194971,113225,atheism,1451338094 +194971,113225,emma stone,1451338099 +194971,113225,skepticism,1451338089 +194971,115713,artificial intelligence,1451484403 +194971,115713,consciousness,1451484425 +194971,115713,philosophical,1451484419 +194971,115713,sci-fi,1451484410 +194971,115713,thought provoking,1451484414 +194971,119145,gentlemanly,1451327503 +194971,122882,feminism,1451327323 +194971,122882,feminist,1451327329 +194971,122882,visually appealing,1451327320 +194971,134130,realistic,1451674390 +194971,134130,sci-fi,1451674367 +194971,134130,space travel,1451674380 +194976,2571,action,1427330729 +194976,2571,hacker,1427330729 +194976,2571,sci-fi,1427330729 +195034,4027,adventure,1414322806 +195034,4027,coen brothers,1414322777 +195034,4027,George Clooney,1414322787 +195034,4027,Quirky,1414322790 +195034,44761,clever,1414322414 +195034,44761,detective movie,1414322424 +195034,44761,dialogue,1414322437 +195034,44761,directorial debut,1414322394 +195034,44761,film noir,1414322443 +195034,44761,high school,1414322407 +195034,44761,neo noir,1414322392 +195034,44761,neo-noir,1414322429 +195034,44761,quirky,1414322423 +195034,44761,self-mocking,1414322409 +195034,44761,slow,1414322400 +195034,44761,stylized,1414322402 +195050,105,Meryl Streep,1442424495 +195050,593,Anthony Hopkins,1442430979 +195050,593,fbi,1442430997 +195050,593,Jodie Foster,1442430977 +195050,765,Robin Williams,1442424684 +195050,56587,jack nicholson,1442429237 +195050,56587,life philosophy,1442429243 +195050,56587,Morgan Freeman,1442429233 +195050,103253,Jodie Foster,1442431410 +195064,253,atmospheric,1447167666 +195064,253,gothic,1447167668 +195064,253,Kirsten Dunst,1447167677 +195064,337,Johnny Depp,1447166633 +195064,337,Leonardo DiCaprio,1447166640 +195064,1199,black comedy,1447431108 +195064,1199,dystopia,1447431105 +195064,1199,Robert De Niro,1447431120 +195064,1199,Terry Gilliam,1447431114 +195064,1682,alternate reality,1447094117 +195064,1682,dystopia,1447094153 +195064,1682,original plot,1447094150 +195064,1682,social commentary,1447094109 +195064,2232,existentialism,1447168806 +195064,2232,original,1447168795 +195064,2232,psychology,1447168807 +195064,2232,scifi,1447168812 +195064,2291,Depp & Burton,1447167480 +195064,2291,Gothic,1447167478 +195064,2291,Johnny Depp,1447167494 +195064,2291,Tim Burton,1447167475 +195064,3081,atmospheric,1447167429 +195064,3081,Christina Ricci,1447167421 +195064,3081,dark fantasy,1447167439 +195064,3081,Depp & Burton,1447167413 +195064,3081,gothic,1447167407 +195064,3081,Johnny Depp,1447167417 +195064,3081,Mystery,1447167410 +195064,3081,stylized,1447167446 +195064,3081,Tim Burton,1447167422 +195064,3081,visually appealing,1447167405 +195064,6619,smart kid dumb adult,1447357850 +195064,6711,boring,1447166512 +195064,6711,Melancholic,1447166488 +195064,6711,super boring,1447166502 +195064,7254,sci-fi,1447335973 +195064,7254,time travel,1447335970 +195064,7254,twist ending,1447335975 +195064,31427,dakota fanning,1447357783 +195064,31427,imaginary friend,1447357796 +195064,31427,Robert De Niro,1447357789 +195064,31427,surprise ending,1447357800 +195064,46578,Abigail Breslin,1447094940 +195064,46578,beauty pageant,1447094885 +195064,46578,dark comedy,1447094854 +195064,46578,dysfunctional family,1447094830 +195064,46578,independent film,1447094988 +195064,46578,road trip,1447094859 +195064,46578,satire,1447094895 +195064,47997,boring,1447431846 +195064,47997,dumb,1447431809 +195064,47997,dystopia,1447431802 +195064,47997,idea,1447431834 +195064,47997,satire,1447431805 +195064,48385,mockumentary,1447167965 +195064,48385,Sacha Baron Cohen,1447167935 +195064,48385,satire,1447167938 +195064,48385,social commentary,1447167965 +195064,48394,alternate reality,1447168243 +195064,48394,atmospheric,1447168237 +195064,48394,dark,1447168303 +195064,48394,fantasy,1447168261 +195064,48394,Guillermo del Toro,1447168240 +195064,48394,Spain,1447168294 +195064,48394,stylized,1447168306 +195064,48394,surreal,1447168258 +195064,48394,twist ending,1447168257 +195064,48394,visually appealing,1447168280 +195064,48774,Alfonso Cuarón,1447169822 +195064,48774,atmospheric,1447169797 +195064,48774,dystopia,1447169798 +195064,48774,sci-fi,1447169810 +195064,48774,visually appealing,1447169813 +195064,56757,cannibalism,1447167543 +195064,56757,gothic,1447167536 +195064,56757,Johnny Depp,1447167533 +195064,56757,Musical,1447167530 +195064,56757,Sacha Baron Cohen,1447167551 +195064,56757,serial killer,1447167539 +195064,56757,Tim Burton,1447167531 +195064,56757,visually appealing,1447167541 +195064,60322,Annasofia Robb,1448647396 +195064,68157,alternate history,1447169723 +195064,68157,Brad Pitt,1447169720 +195064,68157,dark comedy,1447169710 +195064,68157,World War II,1447169707 +195064,69784,mockumentary,1447167990 +195064,69784,provocative,1447168020 +195064,69784,Sacha Baron Cohen,1447167987 +195064,69784,satire,1447167992 +195064,70159,Isabelle Fuhrman,1447344132 +195064,70159,original,1447344136 +195064,70159,story,1447344140 +195064,71535,Abigail Breslin,1447095111 +195064,71535,Bill Murray,1447095067 +195064,71535,dark comedy,1447095074 +195064,71535,parody,1447095080 +195064,71535,zombies,1447095065 +195064,72380,storytelling,1447184465 +195064,76251,Chloe Moretz,1447167735 +195064,76251,dark comedy,1447167722 +195064,76251,Hit Girl,1447167730 +195064,76251,humorous,1447167780 +195064,76251,superhero,1447167727 +195064,79132,Christopher Nolan,1447093729 +195064,79132,Ellen Page,1447093713 +195064,79132,mindfuck,1447093766 +195064,80969,based on a book,1447356722 +195064,80969,dystopia,1447356708 +195064,80969,emotional,1447356727 +195064,83134,absurd,1447095258 +195064,83134,black comedy,1447095250 +195064,83134,parody,1447095246 +195064,83134,satire,1447095248 +195064,90522,Rowan Atkinson,1447357509 +195064,94478,Alice Cooper,1447167643 +195064,94478,Chloë Grace Moretz,1447167631 +195064,94478,Johnny Depp,1447167583 +195064,94478,Tim Burton,1447167592 +195064,94677,political satire,1447168082 +195064,94677,sacha baron cohen,1447168076 +195064,94677,satire,1447168078 +195064,96079,Javier Bardem,1447169935 +195064,100383,drugs,1447263033 +195064,100383,Jude Law,1447263025 +195064,100383,Kill Channing Tatum,1447263079 +195064,100383,psychology,1447263029 +195064,101864,interesting concept,1447093934 +195064,101864,sci-fi,1447093942 +195064,101864,Tom Cruise,1447093927 +195064,102445,Benedict Cumberbatch,1447093394 +195064,102445,Simon Pegg,1447093434 +195064,106920,artificial intelligence,1447169240 +195064,106920,beautiful,1447169257 +195064,106920,boring,1447169265 +195064,106920,sci-fi,1447169242 +195064,106920,transhumanism,1447169251 +195064,109374,Bill Murray,1447169206 +195064,109374,stylized,1447169184 +195064,109374,visually appealing,1447169191 +195064,109487,Christopher Nolan,1447093783 +195064,109487,father - child relationship,1447093895 +195064,109487,Hans Zimmer,1447093803 +195064,109487,Masterpiece,1447093852 +195064,109487,relativity,1447093867 +195064,109487,sci-fi,1447093885 +195064,109487,space,1447093779 +195064,109487,time travel,1447093793 +195064,112183,magical realism,1447095349 +195064,112183,music,1447095365 +195064,112183,one shot,1447095338 +195064,112183,single shot,1447095355 +195064,115210,Brad Pitt,1453542911 +195064,115210,cliche,1453542926 +195064,115210,Nazis being dumb,1453542934 +195064,115210,sentimental,1453542921 +195064,115210,tanks,1453542917 +195064,115210,unrealistic,1453542941 +195064,115210,World War II,1453542915 +195064,115967,end of the world,1447166818 +195064,120466,AI,1447093543 +195064,120466,artificial intelligence,1447093516 +195064,120466,yolandi,1447093584 +195064,122882,post apocalypse,1447093627 +195064,122882,post apocalyptic,1447093651 +195064,122882,visually appealing,1447093648 +195064,132046,alternate reality,1447094003 +195064,132046,Hugh Laurie,1447093987 +195064,132046,sci-fi,1447093976 +195064,148172,banal,1453802071 +195064,148172,Chloe Grace Moretz,1453801686 +195064,148172,unrealistic,1453801784 +195066,260,amazing,1430934506 +195066,260,EPIC,1430934480 +195066,296,cool,1433751789 +195066,296,genius,1433751789 +195066,296,random,1433751789 +195068,71379,boring,1301109397 +195068,71379,garbage,1301109392 +195068,71379,slow,1301109402 +195070,296,drugs,1426307261 +195070,296,good music,1426307261 +195070,296,violence,1426307261 +195070,356,classic,1436568109 +195070,356,storytelling,1436568109 +195070,356,tom hanks,1436568109 +195070,89492,statistics,1446555499 +195076,66097,Surreal,1427880562 +195076,68954,Pixar,1427880330 +195076,68954,touching,1427880337 +195076,79132,complicated,1427880291 +195076,79132,dreams,1427880288 +195076,79132,mindfuck,1427880280 +195076,98809,adventure,1427880663 +195076,98809,beautiful scenery,1427880658 +195076,98809,fantasy world,1427880660 +195081,916,Audrey Hepburn,1167114715 +195081,924,stanley kubrick,1141579180 +195081,1206,stanley kubrick,1141579161 +195081,8257,Best War Films,1141579613 +195135,1196,Star Wars,1422511914 +195138,8970,bittersweet,1382435342 +195138,8970,Heartwarming,1382435333 +195184,91500,shakey camera,1337196136 +195233,260,classic,1443775884 +195233,260,must see,1443775880 +195233,260,sci-fi,1443775857 +195279,394,Jason Priestley,1266486930 +195279,394,underrated,1266486929 +195279,1020,John Candy,1270452489 +195279,2485,rachel leigh cook's beautiful face,1261594533 +195279,2529,"""damn dirty apes""",1267670359 +195279,2529,forceful,1267670366 +195279,2529,original,1267670393 +195279,2529,science vs religion,1267670380 +195279,2529,social commentary,1267670373 +195279,3253,rock and roll,1268598036 +195279,3253,Tia Carrere,1268598046 +195279,4679,john candy,1261594018 +195279,4679,john hughes,1261594004 +195279,6711,tokyo,1261594181 +195279,8841,Los Angeles,1267024439 +195279,8841,relationships,1267024434 +195279,8841,scope,1267024433 +195279,33683,ending,1261594432 +195279,33683,plot twist,1261594437 +195279,33683,stupid,1261594464 +195279,38097,Ling Bai,1266514285 +195279,44195,boring,1261496360 +195279,44195,sucked,1261496351 +195279,50583,boring,1264324726 +195279,53769,atmospheric,1262346433 +195279,53769,best viewed in black and white,1262336782 +195279,53769,bittersweet,1262201223 +195279,53769,color version,1262336778 +195279,53769,loneliness,1262336795 +195279,55872,poorly realized,1266265896 +195279,55872,power of music,1266265902 +195279,55872,pretty retarded,1266265917 +195279,55872,schmaltzy,1266265927 +195279,55872,unreal dialogue,1266265894 +195279,56333,90% drama 10% comedy,1268586475 +195279,58123,Gianna Jun's beautiful face,1262018500 +195279,59615,aliens,1261594352 +195279,59615,bad writing,1261594359 +195279,59615,bullshit,1261594366 +195279,59615,plot,1261594355 +195279,59615,ridiculous end,1261594396 +195279,59615,ridiculous ending,1261594390 +195279,59615,stupid,1261594362 +195279,63179,Joon-ho Bong,1261594258 +195279,63179,Leos Carax,1261594266 +195279,63179,michel gondry,1261594264 +195279,63179,tokyo,1261594282 +195279,66203,scarlett johansson's boobs,1260736064 +195279,66665,caricatures,1268052105 +195279,66665,lame,1268052075 +195279,66665,Maggie Gyllenhaal,1268052113 +195279,66665,quirky,1268052118 +195279,66665,terrible dialogue,1268052083 +195279,66665,unfunny,1268052074 +195279,66665,unrealistic characters,1268052090 +195279,67695,date rape,1262093194 +195279,67695,rape scene,1260184918 +195279,71108,TOO LONG,1269497364 +195279,71248,Kristen Wiig,1308856373 +195279,71248,mila kunis is so damn hot,1261915792 +195279,71745,Carol,1261904091 +195279,71745,characterization,1261904116 +195279,71745,James Gandolfini,1261904098 +195279,71745,touching,1261904112 +195279,71823,Ethan Hawke,1264597422 +195279,71823,Hayden Christensen,1264597412 +195279,71823,Maggie Q,1264597425 +195279,71823,Orlando Bloom,1264597416 +195279,71823,Qi Shu,1264597406 +195279,71823,Shia LaBeouf,1264597410 +195279,72380,boring,1263919272 +195279,72380,lame,1263919275 +195279,72380,no atmosphere,1263919282 +195279,72380,no tension,1263919287 +195279,72731,lame,1263726970 +195279,72731,Mark Wahlberg,1263726958 +195279,72998,too short,1263844017 +195279,73017,guy ritchie,1262113520 +195279,74452,boring,1266940662 +195279,74452,Emily Blunt,1266940682 +195279,74452,Joe Johnston,1266940688 +195279,74452,predictable,1266940667 +195279,74452,stupid,1266940658 +195279,74458,Ben Kingsley,1268767251 +195279,74458,Martin Scorsese,1268767245 +195279,74458,Michelle Williams,1268767258 +195279,74458,story,1268767249 +195284,2427,Guadalcanal,1217532642 +195284,42632,extortion,1217532912 +195284,42632,flashbacks,1217532912 +195284,42632,prison,1217532755 +195284,42632,revenge,1217532912 +195284,42632,vigilante,1217532912 +195284,42632,vigilantism,1217532912 +195307,2571,sci-fi,1218989170 +195313,718,funny,1445603089 +195313,718,medieval,1445603084 +195313,718,slapstick,1445603086 +195313,718,time travel,1445603082 +195313,2078,worst ending possible,1446649649 +195313,2173,fantasy but serious,1437325815 +195313,2173,hidden gem,1437325821 +195313,2173,medieval,1437325863 +195313,2173,surreal but still realistic,1437325806 +195313,3052,satire,1443137075 +195313,5890,compassionate,1435690809 +195313,5890,friendship,1435690675 +195313,5890,quirky,1435690686 +195313,5890,upbeat,1435690688 +195313,6286,life,1435236691 +195313,6300,dark comedy,1446649678 +195313,6599,neorealism,1436869900 +195313,6599,prostitution,1436869918 +195313,6599,Rome,1436869924 +195313,6599,work,1436869911 +195313,39364,italian,1436645384 +195313,54872,atmospheric action,1435267676 +195313,54872,spaghetti western,1435267659 +195313,81591,tense,1435335864 +195313,91548,good things and bad things,1437937610 +195313,91548,ortrait of the world,1437937594 +195313,91548,points of view,1437937573 +195313,91548,reality,1437937597 +195313,91548,world,1437937587 +195313,92152,comedy,1435263368 +195313,92152,female perspective,1435263332 +195313,92152,fresh,1435263381 +195313,92152,Teen movie,1435263304 +195313,100745,copyright law,1435863592 +195313,100745,justice,1435863578 +195313,100745,trial,1435863574 +195313,109374,artificial,1435854357 +195313,109374,eastern europe,1435855662 +195313,109374,stylized,1435855623 +195313,115721,abuse,1437076887 +195313,115721,bullshit,1437076905 +195313,115721,tense,1437076882 +195313,125541,cute,1453821777 +195313,133429,spaghetti western,1435320396 +195313,133429,surreal,1435320528 +195313,133455,musical,1435320676 +195313,133455,spaghetti western,1435320671 +195313,133457,cemetery,1435320751 +195313,133457,many dead,1435320774 +195313,133457,spaghetti western,1435320737 +195313,133463,revenge,1435320846 +195313,133463,spaghetti western,1435320840 +195313,134059,child,1435320896 +195313,134059,spaghetti western,1435320893 +195313,134549,history,1435321215 +195313,134549,italian history,1435321224 +195313,134549,police,1435321236 +195313,134549,terrorism,1435321231 +195313,134963,comedy,1435321339 +195313,134963,commedia all'italiana,1435321358 +195313,134963,drama,1435321335 +195313,134963,dramady,1435321365 +195313,134971,19th century,1435321442 +195313,134971,comedy,1435321457 +195313,134971,drama,1435321450 +195313,134971,history,1435321426 +195313,134971,italian history,1435321434 +195313,134971,Rome,1435321469 +195313,134985,bad luck,1435321648 +195313,134985,comedy,1435321591 +195313,134985,drama,1435321583 +195313,134985,fascism,1435321560 +195313,134985,history,1435321602 +195313,134985,injustice,1435321555 +195313,134985,italian history,1435321609 +195313,134985,pedophile,1435321569 +195313,134985,serial murder,1435321576 +195313,135007,africa,1435321722 +195313,135007,comedy,1435321714 +195313,135007,friendship,1435321734 +195313,135007,italy,1435321718 +195313,135061,19th Century,1435321886 +195313,135061,History,1435321835 +195313,135061,italian history,1435321842 +195313,135061,pope,1435321845 +195313,135061,revolution,1435321856 +195313,135061,Rome,1435321869 +195313,135097,being fired,1435321919 +195313,135097,comedy,1435321906 +195313,135097,work,1435321909 +195313,135316,commedia all'italiana,1435322234 +195313,135316,Italian comedy,1435322224 +195313,135316,Rome,1435322240 +195313,135677,bitter sweet,1435239377 +195313,135677,bittersweet,1435239387 +195313,135677,comedy,1435239369 +195313,135677,drama,1435239363 +195313,135677,short movies,1435239355 +195313,135677,"short movies, drama, comedy, bittersweet",1435239339 +195313,136421,political,1435697682 +195313,137494,crime,1436363186 +195313,137494,investigation,1436363179 +195313,137494,mystery,1436363194 +195313,137494,trial,1436363170 +195313,138626,gian maria volontè,1436869817 +195313,138626,heresy,1436869791 +195313,138626,historically accurate,1436869851 +195313,138626,history,1436869838 +195313,138626,inquisition,1436869796 +195313,138626,trial,1436869801 +195313,139733,climate change,1437870575 +195313,139733,economic crisis,1437870606 +195313,139733,food crisis,1437870595 +195313,139733,fossile fuels,1437870667 +195313,139733,free market,1437870564 +195313,139733,global capitalism,1437870629 +195313,139733,peak oil,1437870584 +195313,139877,carabinieri,1438259673 +195313,139877,drama,1438259644 +195313,139877,few words,1438259628 +195313,139877,hidden gem,1438259712 +195313,139877,italian village,1438259666 +195313,139877,misery,1438259689 +195313,139877,tense,1438259657 +195313,139877,very silent protagonist,1438259641 +195313,139879,documentary,1438259867 +195313,139879,iography,1438259871 +195313,139879,mental illness,1438259897 +195313,139879,Stephen Fry,1438259879 +195321,2572,high school,1427264101 +195321,2572,romantic,1427264087 +195321,2572,teenager,1427264096 +195321,69122,casino,1427264148 +195321,69122,Come,1427264111 +195321,69122,comedy,1427264126 +195321,69122,Las Vegas,1427264138 +195345,1,Disney,1248658109 +195345,1,funny,1248658120 +195345,1,Pixar,1248658106 +195345,1,time travel,1248658100 +195345,101,Bill Murray,1262935661 +195345,101,Wes Anderson,1262935664 +195345,111,anti-hero,1248658214 +195345,111,disturbing,1248658198 +195345,111,Robert De Niro,1248658195 +195345,111,vigilante,1248658207 +195345,1729,conspiracy,1263812654 +195345,50872,paris,1248658160 +195345,63876,setting:San Francisco,1261649552 +195345,66665,soundtrack,1259565500 +195345,69604,10/09,1256375868 +195345,69604,board game,1256375857 +195345,69604,chess,1256375818 +195345,69604,current,1256375871 +195345,69604,Ed Begley Jr.,1256375813 +195345,69604,Evan Rachel Wood,1256375862 +195345,69604,Larry David,1256375802 +195345,69604,May-December romance,1256375807 +195345,69604,Michael McKean,1256375864 +195345,69604,New York City,1256375822 +195345,69604,Patricia Clarkson,1256375866 +195345,69604,runaway,1256375829 +195345,72226,George Clooney,1267571917 +195345,73023,Jeff Bridges,1268481550 +195345,73023,Maggie Gyllenhaal,1268481549 +195347,356,comedy,1433539318 +195347,356,heartwarming,1433539318 +195347,356,social drama,1433539318 +195347,2571,action,1434154676 +195347,2571,conspiracy theory,1434154676 +195347,2571,sci-fi,1434154676 +195359,29,atmospheric,1372852130 +195359,29,dark fantasy,1372852133 +195359,29,surreal,1372852137 +195359,29,visually appealing,1372852139 +195359,32,Brad Pitt,1372856828 +195359,32,Bruce Willis,1372856817 +195359,32,genetics,1372856834 +195359,32,post-apocalyptic,1372856819 +195359,32,psychology,1372856823 +195359,110,england,1372857581 +195359,110,Mel Gibson,1372857577 +195359,110,Oscar (Best Cinematography),1372857579 +195359,196,Nudity (Topless - Notable),1372852840 +195359,260,great soundtrack,1372857919 +195359,260,Harrison Ford,1372857913 +195359,260,space,1372857917 +195359,592,atmospheric,1372853227 +195359,592,Jack Nicholson,1372853224 +195359,741,artificial intelligence,1372852159 +195359,741,complex,1372852173 +195359,741,cyberpunk,1372852162 +195359,741,Japan,1372852182 +195359,741,techno-evolution,1372852168 +195359,924,artificial intelligence,1372851973 +195359,924,atmospheric,1372851986 +195359,924,cult film,1372851991 +195359,924,robots,1372851982 +195359,924,sci-fi,1372851979 +195359,924,Stanley Kubrick,1372851977 +195359,1175,Black comedy,1372856778 +195359,1175,dystopia,1372856780 +195359,1175,French,1372856783 +195359,1175,stylized,1372856793 +195359,1196,Harrison Ford,1372852423 +195359,1196,sci-fi,1372852428 +195359,1198,archaeology,1372854906 +195359,1198,Harrison Ford,1372854890 +195359,1198,Nazis,1372854897 +195359,1199,atmospheric,1372851934 +195359,1199,surreal,1372851943 +195359,1199,Terry Gilliam,1372851930 +195359,1199,thought-provoking,1372851939 +195359,1209,Clint Eastwood,1372866442 +195359,1209,great soundtrack,1372866452 +195359,1214,androids,1372852010 +195359,1214,Oscar (Best Effects - Visual Effects),1372852029 +195359,1214,Ridley Scott,1372852013 +195359,1214,sci-fi,1372852018 +195359,1214,thriller,1372852021 +195359,1228,Martin Scorsese,1372857297 +195359,1228,Robert De Niro,1372857299 +195359,1252,atmospheric,1372855777 +195359,1252,Jack Nicholson,1372855770 +195359,1252,murder,1372856110 +195359,1252,Roman Polanski,1372855768 +195359,1274,cyberpunk,1372866662 +195359,1274,dystopia,1372866664 +195359,1274,hallucinatory,1372866681 +195359,1274,science fiction,1372866674 +195359,1274,visually stunning,1372866671 +195359,1287,historical epic,1372857432 +195359,1291,Biblical,1372854950 +195359,1291,Harrison Ford,1372854940 +195359,1291,mystery,1372854956 +195359,1291,Sean Connery,1372854934 +195359,1291,witty,1372854953 +195359,1320,Alien,1372852880 +195359,1320,David Fincher,1372852884 +195359,1464,atmospheric,1372856285 +195359,1464,David Lynch,1372856272 +195359,1464,disturbing,1372856274 +195359,1464,mindfuck,1372856278 +195359,1464,Surreal,1372856281 +195359,1527,Bruce Willis,1372855300 +195359,1527,dystopic future,1372853138 +195359,1527,Gary Oldman,1372853151 +195359,1527,humorous,1372855304 +195359,1527,Milla Jovovich,1372853149 +195359,1587,Fantasy,1372865885 +195359,1587,sword and sorcery,1372865890 +195359,1645,Al Pacino,1372867286 +195359,1645,Charlize Theron,1372867273 +195359,1645,Keanu Reeves,1372867279 +195359,1645,Nudity (Full Frontal),1372867276 +195359,1982,John Carpenter,1372858136 +195359,2076,David Lynch,1372856349 +195359,2076,disturbing,1372856356 +195359,2076,hallucinatory,1372856354 +195359,2076,INNOCENCE LOST,1372856369 +195359,2076,sexuality,1372856364 +195359,2571,cyberpunk,1372852396 +195359,2712,New York City,1372856438 +195359,2712,Nicole Kidman,1372856418 +195359,2712,Nudity (Full Frontal - Notable),1372856443 +195359,2712,Tom Cruise,1372856422 +195359,2728,Stanley Kubrick,1372857464 +195359,2730,cynical,1372866537 +195359,2730,Oscar (Best Cinematography),1372866534 +195359,2730,slow,1372866545 +195359,2730,Stanley Kubrick,1372866530 +195359,2858,Kevin Spacey,1372853271 +195359,2858,Oscar (Best Picture),1372853281 +195359,2858,thought-provoking,1372853274 +195359,2916,conspiracy,1372852238 +195359,2916,cyberpunk,1372852231 +195359,2916,espionage,1372852250 +195359,2916,Philip K. Dick,1372852234 +195359,2985,cyborgs,1372865821 +195359,3160,Tom Cruise,1372854774 +195359,3262,surreal,1372867015 +195359,3471,Oscar (Best Cinematography),1372852342 +195359,3471,Sci-fi,1372852340 +195359,3527,Arnold Schwarzenegger,1372852799 +195359,3527,scifi cult,1372852785 +195359,3527,violent,1372852793 +195359,3949,disturbing,1372853312 +195359,3949,Nudity (Full Frontal),1372853320 +195359,3996,atmospheric,1372866006 +195359,3996,beautifully filmed,1372866001 +195359,3996,china,1372865999 +195359,3996,Kung Fu,1372866014 +195359,3996,martial arts,1372866012 +195359,4226,dreamlike,1372856861 +195359,4226,psychological,1372856854 +195359,4383,mystery,1372857199 +195359,4383,Vincent Cassel,1372857190 +195359,4848,Atmospheric,1372856248 +195359,4848,David Lynch,1372856236 +195359,4848,nonlinear,1372856240 +195359,4848,Nudity (Full Frontal - Notable),1372856243 +195359,5072,androids,1372866720 +195359,5072,childish style,1372866735 +195359,5072,visually appealing,1372866716 +195359,5388,Al Pacino,1372855700 +195359,5445,artificial intelligence,1372852619 +195359,5445,futuristic,1372852626 +195359,5445,Philip K. Dick,1372852621 +195359,6874,Humorous. Hello melissa.,1372866218 +195359,6874,nonlinear,1372866098 +195359,6874,Uma Thurman,1372866095 +195359,6953,Nonlinear,1372855172 +195359,6953,psychological,1372855191 +195359,6953,Sean Penn,1372855182 +195359,6975,disturbing,1372856530 +195359,6975,Michael Haneke,1372856528 +195359,6975,sadism,1372856535 +195359,6975,serial killer,1372856537 +195359,6975,torture,1372856542 +195359,7063,cult film,1372851676 +195359,7063,insanity,1372851673 +195359,7063,Klaus Kinski,1372851665 +195359,7063,slow,1372851690 +195359,7160,Charlize Theron,1372867748 +195359,7160,Christina Ricci,1372867752 +195359,7160,Oscar (Best Actress),1372867754 +195359,7438,atmospheric,1372866076 +195359,7438,Japan,1372866068 +195359,7438,revenge,1372866070 +195359,7438,violence,1372866080 +195359,7587,Alain Delon,1372866418 +195359,7587,Jean-Pierre Melville,1372866409 +195359,7587,meditative,1372866425 +195359,7587,slow,1372866412 +195359,7587,tense,1372866414 +195359,7981,hard to follow,1372856919 +195359,7981,hong kong,1372856908 +195359,7981,inspirational,1372856925 +195359,7981,police,1372856940 +195359,8798,atmospheric,1372856972 +195359,8798,Michael Mann,1372856963 +195359,8798,Tom Cruise,1372856968 +195359,33493,fantasy,1372857940 +195359,33493,Natalie Portman,1372857936 +195359,34048,Tom Cruise,1372852934 +195359,37733,David Cronenberg,1372866280 +195359,37733,Viggo Mortensen,1372866274 +195359,38095,crime,1372866377 +195359,38095,violent,1372866359 +195359,41285,murder mystery,1372855609 +195359,41285,non-hollywood ending,1372855606 +195359,41285,Scarlett Johansson,1372855396 +195359,41569,Naomi Watts,1372853011 +195359,41569,remake,1372853024 +195359,49932,boring,1372856314 +195359,49932,David Lynch,1372856320 +195359,49932,disturbing,1372856322 +195359,49932,Laura Dern,1372856318 +195359,49932,mindfuck,1372856316 +195359,52281,Kurt Russell,1372866240 +195359,54372,French,1372857164 +195359,54372,murder mystery,1372857175 +195359,54372,Nudity (Full Frontal),1372857177 +195359,55118,atmospheric,1372851806 +195359,55118,David Cronenberg,1372851770 +195359,55118,organized crime,1372851760 +195359,55118,Viggo Mortensen,1372851765 +195359,56782,Daniel Day-Lewis,1372857242 +195359,56782,Oscar (Best Cinematography),1372857245 +195359,57669,black comedy,1372857039 +195359,57669,friendship,1372857043 +195359,57669,stylized,1372857048 +195359,62203,disturbing,1372856563 +195359,62203,extremely violent,1372856567 +195359,62203,lesbian subtext,1372856594 +195359,62203,shocking,1372856579 +195359,62203,torture,1372856571 +195359,62203,unusual,1372856582 +195359,68157,dark comedy,1372857105 +195359,68237,artificial intelligence,1372851893 +195359,68237,Kevin Spacey,1372851896 +195359,68237,psychology,1372851899 +195359,68237,Sci-fi,1372851904 +195359,69134,beautiful scenery,1372856474 +195359,69134,Lars von Trier,1372856468 +195359,69134,Mental Illness,1372856471 +195359,69134,religion,1372856488 +195359,69134,wierd for the sake of it,1372856482 +195359,70286,genetics,1372852457 +195359,70286,sci-fi,1372852464 +195359,72998,politics,1372852980 +195359,74458,insanity,1372856144 +195359,74458,Martin Scorsese,1372856147 +195359,74458,nazis,1372856142 +195359,74458,psychological,1372856154 +195359,74545,bad ending,1372855672 +195359,74545,espionage,1372855662 +195359,74545,Roman Polanski,1372855655 +195359,78836,camerawork,1372856692 +195359,78836,Nudity (Full Frontal),1372856699 +195359,78836,psychedelic,1372856695 +195359,78836,too long,1372856687 +195359,79132,alternate reality,1372852591 +195359,79132,visually appealing,1372852588 +195359,79251,dark humor,1372856617 +195359,79251,drugs,1372856638 +195359,79251,sexual abuse,1372856632 +195359,79251,violence,1372856635 +195359,81591,atmospheric,1372856202 +195359,81591,Natalie Portman,1372856195 +195359,81591,surreal,1372856199 +195359,91529,Christian Bale,1372852707 +195359,91529,dark,1372852712 +195359,91529,Gary Oldman,1372852705 +195359,96610,complicated,1372852671 +195359,96610,organized crime,1372852668 +195359,96610,sci-fi,1372852673 +195359,98809,beautiful scenery,1372855006 +195359,98809,big budget,1372855081 +195359,98809,fantasy world,1372854997 +195384,260,classic,1434551961 +195384,260,sci-fi,1434551949 +195403,34542,delusional self obsession,1150090308 +195413,115122,dark comedy,1422996361 +195413,115122,deadpan,1422996361 +195413,115122,mockumentary,1422996361 +195413,115122,vampires,1422996361 +195438,31,teacher changing lives,1326923701 +195438,50,Benicio Del Toro,1282957759 +195438,50,caper,1282957766 +195438,50,complicated,1282957777 +195438,50,conspiracy,1282957789 +195438,50,heist,1282957813 +195438,50,Kevin Spacey,1282957822 +195438,50,Oscar (Best Supporting Actor),1282957832 +195438,50,Oscar (Best Writing - Screenplay Written Directly for the Screen),1282957834 +195438,50,suspense,1282957844 +195438,50,thriller,1282957848 +195438,50,twist ending,1282957850 +195438,62,education,1282960034 +195438,62,emotion,1282960055 +195438,62,inspirational,1282960074 +195438,62,inspirational teacher,1282960076 +195438,62,Richard Dreyfuss,1282960087 +195438,150,astronauts,1282957234 +195438,150,catastrophe,1282957241 +195438,150,disaster,1282957248 +195438,150,drama,1282957256 +195438,150,historical,1282957259 +195438,150,History,1282957262 +195438,150,space,1282957288 +195438,150,space program,1282957291 +195438,150,Tom Hanks,1282957306 +195438,260,adventure,1282962178 +195438,260,atmospheric,1282962185 +195438,260,fantasy,1282962195 +195438,260,Harrison Ford,1282962199 +195438,260,space,1282962210 +195438,260,SPACE TRAVEL,1282962212 +195438,260,Star Wars,1282962217 +195438,260,stylized,1282962221 +195438,266,Dramatic,1282959466 +195438,266,prohibition,1282959477 +195438,266,Romance,1282959549 +195438,266,World War I,1282959500 +195438,318,atmospheric,1282957677 +195438,318,drama,1282957692 +195438,318,friendship,1282957695 +195438,318,inspirational,1282957702 +195438,318,justice,1282957710 +195438,318,Morgan Freeman,1282957713 +195438,318,prison,1282957718 +195438,318,prison escape,1282957720 +195438,318,reflective,1282957734 +195438,318,revenge,1282957738 +195438,318,thought-provoking,1282957741 +195438,318,twist ending,1282957744 +195438,378,banter,1282961392 +195438,378,Geena Davis,1282961298 +195438,378,Michael Keaton,1282961297 +195438,378,politics,1282961348 +195438,378,witty,1282961348 +195438,454,David Strathairn,1285123318 +195438,457,chase,1282958608 +195438,457,Harrison Ford,1282958655 +195438,457,police investigation,1282958634 +195438,457,prison escape,1282958641 +195438,457,tense,1282958644 +195438,457,thriller,1282958648 +195438,457,Tommy Lee Jones,1282958657 +195438,628,atmospheric,1282960473 +195438,628,courtroom,1282960478 +195438,628,courtroom drama,1282960494 +195438,628,drama,1282960502 +195438,628,Ed Norton,1282960506 +195438,628,Edward Norton,1282960509 +195438,628,politics,1282960526 +195438,628,psychology,1282960528 +195438,628,Richard Gere,1282960535 +195438,628,thought-provoking,1282960539 +195438,628,Thriller,1282960541 +195438,628,twist ending,1282960544 +195438,839,Beverley Mitchell,1285548405 +195438,912,atmospheric,1282958015 +195438,912,drama,1282958033 +195438,912,espionage,1282958030 +195438,912,Oscar (Best Directing),1282958051 +195438,912,Oscar (Best Picture),1282958054 +195438,912,Oscar Winner,1282958058 +195438,912,romance,1282958070 +195438,912,sentimental,1282958080 +195438,912,war,1282958075 +195438,912,World War II,1282958073 +195438,988,John Turturro,1285121325 +195438,1061,Brad Pitt,1282961188 +195438,1061,Dustin Hoffman,1282961203 +195438,1061,emotional,1282961207 +195438,1061,Kevin Bacon,1282961210 +195438,1061,revenge,1282961219 +195438,1061,Robert De Niro,1282961222 +195438,1079,John Cleese,1282959915 +195438,1079,Kevin Kline,1282959938 +195438,1079,quirky,1282959957 +195438,1079,witty,1282959959 +195438,1089,drama,1282960769 +195438,1089,ensemble cast,1282960766 +195438,1089,heist,1282960775 +195438,1089,nonlinear,1282960794 +195438,1089,Quentin Tarantino,1282960797 +195438,1089,quirky,1282960801 +195438,1089,stylized,1282960809 +195438,1089,tense,1282960818 +195438,1089,thriller,1282960821 +195438,1089,undercover cop,1282960828 +195438,1136,John Cleese,1282959799 +195438,1171,David Strathairn,1285123085 +195438,1196,adventure,1282962244 +195438,1196,fantasy,1282962250 +195438,1196,father-son relationship,1282962254 +195438,1196,Harrison Ford,1282962259 +195438,1196,space,1282962270 +195438,1197,fairy tale,1282960564 +195438,1197,fantasy,1282960566 +195438,1197,medieval,1282960572 +195438,1197,pirates,1282960576 +195438,1197,quirky,1282960578 +195438,1197,revenge,1282960581 +195438,1197,romance,1282960584 +195438,1197,sword fight,1282960587 +195438,1197,torture,1282960601 +195438,1198,adventure,1282960634 +195438,1198,archaeology,1282960637 +195438,1198,atmospheric,1282960640 +195438,1198,Harrison Ford,1282960643 +195438,1198,World War II,1282960676 +195438,1234,caper,1282962281 +195438,1234,clever,1282962293 +195438,1234,con artists,1282962295 +195438,1234,con men,1282962305 +195438,1234,heist,1282962316 +195438,1234,Paul Newman,1282962320 +195438,1234,poker,1282962322 +195438,1234,Robert Redford,1282962323 +195438,1234,surprise ending,1282962326 +195438,1234,twist ending,1282962328 +195438,1246,teacher changing lives,1326923681 +195438,1259,childhood,1282961774 +195438,1259,coming of age,1282961776 +195438,1259,friendship,1282961790 +195438,1259,INNOCENCE LOST,1282961806 +195438,1259,Jason Bateman,1282961842 +195438,1259,Kiefer Sutherland,1282961845 +195438,1259,nostalgic,1282961814 +195438,1259,poignant,1282961823 +195438,1259,Richard Dreyfuss,1282961847 +195438,1259,Rob Reiner,1282961851 +195438,1259,tense,1282961835 +195438,1259,wistful,1282961839 +195438,1302,baseball,1282958495 +195438,1302,drama,1282958508 +195438,1302,fantasy,1282958511 +195438,1302,inspirational,1282958521 +195438,1302,James Earl Jones,1282958524 +195438,1302,Kevin Costner,1282958528 +195438,1302,Ray Liotta,1282958537 +195438,1647,Gary Dourdan,1285867470 +195438,1653,distopia,1282958692 +195438,1653,drama,1282958696 +195438,1653,dystopia,1282958706 +195438,1653,Ethan Hawke,1282958712 +195438,1653,genetic engineering,1282958718 +195438,1653,genetic selection,1282958721 +195438,1653,genetics,1282958725 +195438,1653,Jude Law,1282958795 +195438,1653,powerful ending,1282958743 +195438,1653,rebellion,1282958753 +195438,1653,suicide,1282958765 +195438,1653,Uma Thurman,1282958770 +195438,1690,Gary Dourdan,1285867589 +195438,1748,amnesia,1282958229 +195438,1748,atmospheric,1282958232 +195438,1748,dystopia,1282958238 +195438,1748,fantasy,1282958244 +195438,1748,hallucinatory,1282958286 +195438,1748,Post apocalyptic,1282958293 +195438,1748,steampunk,1282958289 +195438,1748,stylized,1282958305 +195438,1748,surreal,1282958303 +195438,1748,thought-provoking,1282958308 +195438,2020,John Malkovich,1282958186 +195438,2020,Keanu Reeves,1282958190 +195438,2020,Uma Thurman,1282958195 +195438,2028,disturbing,1282961050 +195438,2028,drama,1282961061 +195438,2028,historical,1282961075 +195438,2028,history,1282961077 +195438,2028,Matt Damon,1282961080 +195438,2028,philosophy,1282961086 +195438,2028,stylized,1282961088 +195438,2028,Tom Hanks,1282961090 +195438,2028,World War II,1282961099 +195438,2231,card games,1282960864 +195438,2231,cards,1282960867 +195438,2231,Edward Norton,1282960873 +195438,2231,John Malkovich,1282960889 +195438,2231,John Turturro,1282960929 +195438,2231,Matt Damon,1282960955 +195438,2231,poker,1282960960 +195438,2268,corruption,1282958349 +195438,2268,court,1282958352 +195438,2268,courtroom,1282958356 +195438,2268,courtroom drama,1282958360 +195438,2268,drama,1282958367 +195438,2268,Jack Nicholson,1282958370 +195438,2268,Kevin Bacon,1282958418 +195438,2268,Kiefer Sutherland,1282958375 +195438,2268,lawyers,1282958390 +195438,2268,military,1282958395 +195438,2268,POLITICAL CORRUPTION,1282958400 +195438,2268,tense,1282958403 +195438,2268,Tom Cruise,1282958405 +195438,2329,crime,1282957115 +195438,2329,Edward Norton,1282957119 +195438,2329,politics,1282957126 +195438,2329,powerful ending,1282957133 +195438,2329,racism,1282957147 +195438,2329,thought-provoking,1282957140 +195438,2485,Rachael Leigh Cook,1285864265 +195438,2502,Jennifer Aniston,1282960333 +195438,2502,quirky,1282960345 +195438,2502,rebellion,1282960348 +195438,2502,revenge,1282960354 +195438,2502,Ron Livingston,1282960326 +195438,2502,satire,1282960357 +195438,2502,slackers,1282960361 +195438,2563,Catherine McCormack,1282958127 +195438,2563,courtesan,1282958103 +195438,2563,empowerment,1282958106 +195438,2563,History,1282958110 +195438,2563,Oliver Platt,1282958130 +195438,2563,Period piece,1282958123 +195438,2959,atmospheric,1282957563 +195438,2959,Brad Pitt,1282957567 +195438,2959,disturbing,1282957600 +195438,2959,Edward Norton,1282957603 +195438,2959,philosophy,1282957615 +195438,2959,psychology,1282957618 +195438,2959,social commentary,1282957625 +195438,2959,twist ending,1282957639 +195438,3071,teacher changing lives,1326923717 +195438,3147,compassionate,1282959178 +195438,3147,drama,1282959183 +195438,3147,emotional,1282959185 +195438,3147,heartwarming,1282959197 +195438,3147,nostalgic,1282959212 +195438,3147,Sam Rockwell,1282959224 +195438,3147,sentimental,1282959219 +195438,3147,Tom Hanks,1282959229 +195438,3255,baseball,1282959254 +195438,3255,feminism,1282959264 +195438,3255,madonna,1282959273 +195438,3255,nostalgic,1282959278 +195438,3255,sports,1282959291 +195438,3255,Tom Hanks,1282959293 +195438,3255,women's lib,1282959304 +195438,3255,World War II,1282959300 +195438,3291,Gary Dourdan,1285868256 +195438,3296,teacher changing lives,1326923732 +195438,3571,Golden Brooks,1285879211 +195438,4019,Michael Pitt,1283273468 +195438,4047,American Civil War,1282958818 +195438,4047,Civil War,1282958827 +195438,4047,Martin Sheen,1282958840 +195438,4047,Sam Elliott,1282958842 +195438,4052,Rachael Leigh Cook,1285864627 +195438,4169,Rachael Leigh Cook,1285864739 +195438,4248,Rachael Leigh Cook,1285864808 +195438,4616,coming of age,1282959326 +195438,4616,Morgan Freeman,1282959360 +195438,4616,teacher changing lives,1282959439 +195438,4754,atmospheric,1282962420 +195438,4754,OBSESSIVE QUESTS,1282962431 +195438,4754,twist ending,1282962443 +195438,4962,Rachael Leigh Cook,1285864897 +195438,4963,Brad Pitt,1282960117 +195438,4963,caper,1282960120 +195438,4963,Casey Affleck,1282960123 +195438,4963,Don Cheadle,1282960130 +195438,4963,ensemble cast,1282960138 +195438,4963,feel good movie,1282960143 +195438,4963,George Clooney,1282960147 +195438,4963,heist,1282960153 +195438,4963,Julia Roberts,1282960157 +195438,4963,Matt Damon,1282960161 +195438,4993,adventure,1282959571 +195438,4993,atmospheric,1282959573 +195438,4993,ensemble cast,1282959597 +195438,4993,fantasy,1282959610 +195438,4993,fantasy world,1282959615 +195438,4993,magic,1282959619 +195438,4993,stylized,1282959638 +195438,4993,wizards,1282959641 +195438,5046,Gary Dourdan,1285869023 +195438,5046,Golden Brooks,1285879401 +195438,5046,Mekhi Phifer,1285869007 +195438,5221,David Strathairn,1285122948 +195438,5312,Michael Pitt,1283273499 +195438,5312,Ryan Gosling,1283273497 +195438,5312,sandra bullock,1283273494 +195438,5418,amnesia,1282957347 +195438,5418,assassin,1282957351 +195438,5418,cia,1282957366 +195438,5418,conspiracy,1282957375 +195438,5418,espionage,1282957385 +195438,5418,Matt Damon,1282957418 +195438,5418,spy,1282957440 +195438,5418,survival,1282957449 +195438,5453,David Strathairn,1285123217 +195438,5510,Romany Malco,1285870891 +195438,5621,Romany Malco,1285871505 +195438,6296,Christopher Guest,1282959691 +195438,6296,folk music,1282959698 +195438,6296,Fred Willard,1282959662 +195438,6296,satire,1282959695 +195438,6572,Rachael Leigh Cook,1285865293 +195438,6787,conspiracy,1282956597 +195438,6787,corruption,1282956601 +195438,6787,History,1282956605 +195438,6787,investigation,1282956610 +195438,6787,journalism,1282956614 +195438,6787,Politics,1282956617 +195438,6787,Robert Redford,1282956642 +195438,6949,Rachael Leigh Cook,1285865526 +195438,7137,Ron Livingston,1295152682 +195438,7321,David Strathairn,1285122307 +195438,7645,autobiography,1280858542 +195438,7645,discipline,1280858687 +195438,7645,kung fu,1280936068 +195438,7645,martial arts,1280858638 +195438,7645,narrated,1280858798 +195438,7645,political repression,1280858594 +195438,8131,easily confused with another title,1282957533 +195438,8131,NOT WILL SMITH,1291740716 +195438,8493,David Strathairn,1285122532 +195438,8783,Atmospheric,1282962344 +195438,8783,Joaquin Phoenix,1282962362 +195438,8783,secrets,1282962376 +195438,8783,surprise ending,1282962398 +195438,8783,twist ending,1282962401 +195438,8799,Ron Livingston,1295152950 +195438,8996,Rachael Leigh Cook,1285865872 +195438,27022,Gary Dourdan,1285867883 +195438,27674,Rachael Leigh Cook,1285865641 +195438,32464,David Strathairn,1285122638 +195438,32589,Golden Brooks,1285879658 +195438,32602,Ron Livingston,1295152814 +195438,33649,feel good,1282961000 +195438,37731,soccer,1280858841 +195438,39292,censorship,1282958876 +195438,39292,cerebral,1282958880 +195438,39292,David Strathairn,1282961688 +195438,39292,George Clooney,1282958956 +195438,39292,historical,1282958892 +195438,39292,history,1282958894 +195438,39292,journalism,1282958900 +195438,39292,political,1282958905 +195438,39292,politics,1282958908 +195438,39292,propaganda,1282958911 +195438,39292,Robert Downey Jr,1282958933 +195438,39292,Robert Downey Jr.,1282958938 +195438,39292,suspense,1282958947 +195438,39446,Beverley Mitchell,1285548541 +195438,40826,Anthony Rapp,1282960744 +195438,40826,ensemble cast,1282960727 +195438,40826,Taye Diggs,1282960722 +195438,43684,Golden Brooks,1285879853 +195438,43684,Sanaa Lathan,1285879878 +195438,44191,dystopia,1282957875 +195438,44191,historical,1282957879 +195438,44191,inspirational,1282957884 +195438,44191,Natalie Portman,1282957888 +195438,44191,philosophy,1282957891 +195438,44191,politics,1282957894 +195438,44191,revenge,1282957901 +195438,44191,social commentary,1282957906 +195438,44191,thought-provoking,1282957923 +195438,48394,adventure,1282960386 +195438,48394,alternate reality,1282960391 +195438,48394,atmospheric,1282960394 +195438,48394,fairy tale,1282960406 +195438,48394,fantasy,1282960409 +195438,48394,political,1282960425 +195438,48394,psychology,1282960428 +195438,48394,stylized,1282960431 +195438,48394,surreal,1282960433 +195438,48394,twist ending,1282960450 +195438,48394,world war II,1282960455 +195438,49793,David Strathairn,1285121972 +195438,49824,Sharon Leal,1285880836 +195438,49910,teacher changing lives,1283272616 +195438,52245,Romany Malco,1285871815 +195438,52456,Gary Dourdan,1285869212 +195438,52604,David Strathairn,1285121910 +195438,52867,Romany Malco,1285871717 +195438,54286,assassin,1282957959 +195438,54286,cia,1282957966 +195438,54286,conspiracy,1282957969 +195438,54286,espionage,1282957973 +195438,54286,Matt Damon,1282957977 +195438,54286,Oscar (Best Sound),1282957982 +195438,54286,spies,1282957986 +195438,54286,spy,1282957990 +195438,54286,spy thriller,1282957991 +195438,54286,twist ending,1282957998 +195438,55440,Rachael Leigh Cook,1285866390 +195438,55498,Michael Pitt,1283273426 +195438,55566,Sharon Leal,1285880973 +195438,58315,Romany Malco,1285872006 +195438,58559,Atmospheric,1282957467 +195438,58559,Christian Bale,1282957472 +195438,58559,Heath Ledger,1282957477 +195438,58559,Michael Caine,1282957483 +195438,58559,Morgan Freeman,1282957486 +195438,58559,Oscar (Best Supporting Actor),1282957496 +195438,58559,psychology,1282957501 +195438,58559,serial killer,1282957505 +195438,58559,thriller,1282957509 +195438,58559,vigilante,1282957512 +195438,59258,Romany Malco,1285871930 +195438,59547,teacher changing lives,1315519380 +195438,60641,Ron Livingston,1295153348 +195438,61991,John Turturro,1285120304 +195438,63082,feel-good,1282961256 +195438,63082,romance,1282961274 +195438,63082,touching,1282961279 +195438,63481,Sharon Leal,1285881161 +195438,64614,Clint Eastwood,1282959148 +195438,64614,culture clash,1282959099 +195438,64614,friendship,1282959109 +195438,64614,heartwarming,1282959113 +195438,64614,revenge,1282959134 +195438,64614,sacrifice,1282959143 +195438,64716,atonement,1282961117 +195438,64716,Drama,1282961120 +195438,64716,predictable,1282961135 +195438,64716,Will Smith,1282961163 +195438,65642,foreign,1408704955 +195438,69140,NOT JONNY DEPP,1291740541 +195438,69609,Ron Livingston,1295153143 +195438,70599,Ron Livingston,1295153471 +195438,74150,Rachael Leigh Cook,1285866673 +195438,76121,Christine Lakin,1285784758 +195438,80553,David Strathairn,1285783351 +195438,80763,Romany Malco,1285872085 +195438,80768,Christine Lakin,1285896558 +195438,80768,Dark Humor,1285782603 +195438,80768,Depression,1285782765 +195438,80768,Schizophrenia,1285782809 +195445,260,space,1440519960 +195448,6462,70mm,1237452107 +195448,25797,not good,1237452080 +195490,110,action,1437621810 +195490,110,classic,1437621795 +195490,110,epic,1437621824 +195490,145,action,1437854253 +195490,145,action comedy,1437854249 +195490,145,Martin Lawrence,1437854232 +195490,145,Will Smith,1437854209 +195490,318,friendship,1438005033 +195490,318,great ending,1438005008 +195490,318,heartwarming,1438004992 +195490,318,inspirational,1438005004 +195490,318,Morgan Freeman,1438004987 +195490,318,narrated,1438005022 +195490,318,prison escape,1438005001 +195490,2273,action comedy,1437854129 +195490,2273,Chris Tucker,1437854140 +195490,2273,Funny,1437854135 +195490,2273,Jackie Chan,1437854106 +195490,3578,Epic,1437836198 +195490,3578,history,1437836209 +195490,3578,sword fight,1437836195 +195490,3753,Mel Gibson,1437836137 +195490,3753,sword war,1437836155 +195490,4085,comedy,1437854540 +195490,4085,Eddie Murphy,1437854543 +195490,4701,action comedy,1437854180 +195490,4701,Chris Tucker,1437854167 +195490,4701,Jackie Chan,1437854165 +195490,6595,Colin Farrell,1437836358 +195490,6595,Samuel L. Jackson,1437836366 +195490,7017,Wesley Snipes,1437836325 +195490,8640,Arthurian legend,1437986720 +195490,8640,knights,1437836990 +195490,8640,Roman empire,1437836992 +195490,8665,assassin,1437836031 +195490,8665,espionage,1437836023 +195490,8665,spy,1437836038 +195490,50872,animation,1437835617 +195490,50872,funny,1437835635 +195490,51662,epic adventure,1437762324 +195490,51662,sword fight,1437762335 +195490,53972,action packed,1439007509 +195490,69304,Eddie Murphy,1439393458 +195490,69304,Parenting,1439393503 +195490,77561,action,1437836874 +195490,77866,adventure,1437936280 +195490,77866,archery,1437936292 +195490,77866,Russell Crowe,1437837013 +195490,77866,war,1437936288 +195490,90522,Rowan Atkinson,1439241386 +195490,99910,action,1438579087 +195490,99910,Arnold Schwarzenegger,1438579086 +195490,101362,Special Effects,1437836259 +195490,129354,action,1437762266 +195490,129354,gunfight,1437762266 +195490,129354,will smith,1437762266 +195528,260,"Cheesy space opera, classic",1437449757 +195528,260,classic,1437449761 +195528,260,Harrison Ford,1437449770 +195537,77941,drama,1420037396 +195537,77941,horror,1420037396 +195537,77941,nudity (topless - brief),1420037396 +195558,31804,girlie movie,1141625736 +195558,31804,offbeat,1141625734 +195574,260,exciting,1442614281 +195574,260,space action,1442614233 +195577,377,Action,1304132844 +195577,377,good acting,1304132892 +195577,377,Thriller,1304132873 +195577,593,acting,1303601990 +195577,593,horror,1303601990 +195577,593,suspenseful,1303601990 +195577,2028,historical,1303602591 +195577,2028,Oscar (Best Cinematography),1303602632 +195577,2028,Oscar (Best Directing),1303602629 +195577,2762,acting,1303601891 +195577,2762,storyline,1303601935 +195577,3147,acting,1303602745 +195577,3147,cinematography,1303602769 +195577,3147,compassionate,1303602691 +195577,3147,death penalty,1303602695 +195577,3147,drama,1303602733 +195577,3147,heartwarming,1303602689 +195577,3967,British accent,1302043699 +195577,3967,child actor,1302043699 +195577,3967,cinematography,1303826658 +195577,3967,heartwarming,1302043805 +195577,4306,comedy,1303602242 +195577,4306,fun,1303602224 +195577,4306,Quirky,1303602204 +195577,4306,witty,1303602210 +195577,5502,acting,1303602056 +195577,5502,meditative,1303602131 +195577,5502,storyline,1303602056 +195577,5502,suspenseful,1303602056 +195577,8529,comedy,1303602314 +195577,8529,drama,1303602462 +195577,8529,great acting,1303602332 +195577,8529,heartfelt,1303602292 +195577,27808,touching,1303601233 +195577,51086,storyline,1303872166 +195577,74275,character development,1303826600 +195577,74275,unbelievable,1303826573 +195577,74275,uninteresting,1303826506 +195577,81591,plot holes,1303997971 +195577,81591,thriller,1303999400 +195577,82202,chemistry between actors,1303999647 +195577,82202,sexual tension,1303999881 +195577,82202,story,1303999635 +195577,82852,comedy,1303999489 +195577,84395,storyline,1303601274 +195577,84395,writing,1303601279 +195577,84772,character development,1303997330 +195577,84772,comedy,1303968649 +195577,84772,relationships,1303997321 +195577,84772,story,1303997293 +195577,86332,3d,1305120411 +195577,86332,some of the writing,1305120322 +195577,86332,Special Effects,1305120298 +195577,87232,dialogue,1308758694 +195577,87232,director,1308758685 +195577,87232,pace,1308758725 +195577,87232,soundtrack,1308758706 +195577,91500,dialogue,1334111741 +195577,91500,shaky camera,1334111740 +195577,91500,slow paced,1334111739 +195577,101360,revenge,1372989256 +195577,103279,Anxiety inducing,1375582715 +195577,103279,depressing,1375582649 +195577,109374,Genre of its own! Cool!,1406089012 +195577,109374,Wes Anderson,1406088956 +195577,111921,Don't need to see again,1403388957 +195592,134853,animation,1438364756 +195592,134853,delights,1438364756 +195592,134853,new idea,1438364756 +195600,101,off-beat comedy,1443845003 +195600,101,quirky,1443845007 +195600,101,Wes Anderson,1443844998 +195600,2395,Bill Murray,1443844906 +195600,2395,Criterion,1443844940 +195600,2395,Jason Schwartzman,1443844911 +195600,2395,off-beat comedy,1443844927 +195600,2395,Quirky,1443844946 +195600,2395,Wes Anderson,1443844901 +195600,4979,Bill Murray,1443845123 +195600,4979,dark comedy,1443845114 +195600,4979,dysfunctional family,1443845118 +195600,4979,off-beat comedy,1443845129 +195600,4979,Wes Anderson,1443845111 +195600,30810,Bill Murray,1443845062 +195600,30810,great soundtrack,1443845072 +195600,30810,Nudity (Topless),1443845079 +195600,30810,ocean,1443845086 +195600,30810,Owen Wilson,1443845076 +195600,30810,visually appealing,1443845070 +195600,30810,Wes Anderson,1443845065 +195600,30810,whimsical,1443845068 +195600,55269,Wes Anderson,1443845149 +195617,1966,manhattan,1201771407 +195617,1966,upper class,1201771407 +195621,2796,Chevy Chase,1367146228 +195624,5334,Robin Williams,1225361620 +195624,8914,clever,1263799705 +195624,8914,complicated plot,1263799702 +195624,8914,mindfuck,1263799713 +195624,8914,physics,1263799718 +195624,8914,sci-fi,1263799709 +195629,260,jedi,1442627467 +195629,260,space combat,1442627482 +195629,260,space western,1442627509 +195629,59784,3D,1442628100 +195629,59784,animation,1442628095 +195629,59784,Kung Fu,1442628126 +195629,68954,3d animation,1442628193 +195629,68954,Pixar,1442628171 +195637,260,adventure,1443883052 +195637,260,classic sci-fi,1443883039 +195637,260,sci-fi,1443883033 +195637,260,space adventure,1443883045 +195637,260,special effects,1443883062 +195637,143511,documentary,1443978372 +195637,143511,huma,1443978388 +195637,144056,Connasse,1444571348 +195637,144056,French,1444571354 +195641,541,Harrison Ford,1301353117 +195653,33660,not as good as Beautiful Mind,1137169589 +195659,546,jfd,1188739116 +195659,954,disturbing,1188739118 +195659,1125,fnxc,1188739117 +195659,1245,sdb,1188739119 +195659,2125,xvgb,1188739119 +195659,2423,xgdh,1188739120 +195659,2485,hngj,1188739117 +195659,3100,dfg,1188739117 +195659,3263,fgj,1188739115 +195659,3450,sdg,1188739119 +195719,260,oldie but goodie,1442413190 +195719,260,space,1442413179 +195736,260,Alec Guiness,1431817986 +195736,260,Carrie Fisher,1431817956 +195736,260,classic,1431817891 +195736,260,Every nerd should have seen more than once,1431817944 +195736,260,fantasy,1431817996 +195736,260,Harrison Ford,1431817964 +195736,260,Mark Hamill,1431817977 +195736,260,sci-fi,1431817855 +195736,3421,classic,1431818270 +195736,3421,comedy,1431818272 +195736,3552,Bill Murray,1431818229 +195736,3552,classic comedy,1431818219 +195736,3552,Rodney Dangerfield,1431818224 +195736,3552,Ted Knight,1431818238 +195739,44191,british,1423859532 +195739,44191,communism,1423859532 +195739,44191,mask,1423859532 +195739,117176,biography,1424895769 +195739,117176,love,1424895971 +195739,117176,love affair,1424895971 +195739,117176,stephen hawking,1424895971 +195768,260,Innovative,1438127070 +195768,260,space adventure,1438127060 +195768,1584,astronomy,1438133367 +195768,1584,outer space,1438133370 +195768,1584,sci-fi,1438133113 +195768,1584,science,1438133122 +195768,1584,science fiction,1438133373 +195768,1748,atmospheric,1438133590 +195768,1748,dark fantasy,1438133593 +195768,31804,alternate reality,1438133449 +195768,31804,atmospheric,1438133455 +195768,31804,great cinematography,1438133457 +195768,52950,surreal,1438133505 +195768,115713,Brillant,1438127572 +195768,115713,Mysterious,1438127599 +195781,31154,quirky comedy,1356622501 +195781,31154,reminiscent of Wes Anderson,1356622501 +195781,49278,preposterous,1358870916 +195818,260,fantastic,1443522503 +195818,260,future,1443522488 +195826,4878,cult film,1360470854 +195826,4896,book adaptation,1360470839 +195826,4896,nerds,1360470839 +195826,46062,music,1360470595 +195826,56367,Ellen Page,1360470728 +195826,60069,Cute!,1360470692 +195826,60397,mother daughter relationship,1360470543 +195826,61123,musical,1360470605 +195826,62912,music,1360470615 +195826,69757,Joseph Gordon-Levitt,1360470950 +195826,71535,funny,1360470658 +195826,71535,not scary,1360470658 +195826,78499,childhood,1360470704 +195826,79132,Joseph Gordon-Levitt,1360470736 +195826,81591,lesbian,1360470995 +195826,89864,Joseph Gordon-Levitt,1360470931 +195826,91500,Jennifer Lawrence,1360470797 +195826,91529,Joseph Gordon-Levitt,1360470882 +195826,91529,Tom Hardy,1360470882 +195826,92954,Gay Lead Character,1360471051 +195826,97388,lesbians,1360470985 +195852,60037,Bad Science,1225601204 +195855,293,gary oldman,1202764026 +195855,293,luc beson,1202764026 +195855,3253,comedy,1202763924 +195855,3253,mike myers,1202763923 +195855,3253,music,1202763924 +195855,5618,anime,1202763869 +195855,5618,childrens,1202763869 +195855,5618,myazaki,1202763869 +195855,5618,Studio Ghibli,1202763869 +195855,7099,conservation,1202764121 +195855,7099,myazaki,1202764121 +195855,7099,studio ghibli,1202764121 +195855,7099,wwf,1202764121 +195855,8874,dylan moran,1202763982 +195855,8874,edgar wright,1202763982 +195855,8874,nick frost,1202763982 +195855,8874,rom-rom-com,1202763982 +195855,8874,simon pegg,1202763982 +195855,26662,adventure,1202764193 +195855,26662,coming of age,1202764193 +195855,26662,studio ghibli,1202764193 +195855,40966,adapation,1202764157 +195855,40966,biopic,1202764158 +195855,40966,john malkovich,1202764158 +195855,40966,johnny depp,1202764157 +195870,1292,slow paced,1432665955 +195870,117533,oscar (best documentary feature),1432665931 +195870,117533,social commentary,1432665931 +195870,117533,thought provoking,1432665931 +195875,1732,Best Movie Ever,1157418067 +195878,98154,Congress,1361630551 +195881,50,complicated,1440125538 +195881,50,Kevin Spacey,1440125505 +195881,50,mindfuck,1440125491 +195881,2858,kevin spacey,1440125631 +195881,2858,midlife crisis,1440125658 +195881,2858,social commentary,1440125677 +195881,2858,thought-provoking,1440125689 +195881,99114,brutal,1440126279 +195881,99114,Leonardo DiCaprio,1440126234 +195881,99114,Over the top,1440126254 +195881,99114,Quentin Tarantino,1440126259 +195892,247,lesbian,1202265185 +195892,54290,Why the terrorists hate us,1201296919 +195893,2530,ACTION,1191920850 +195893,2961,DRAMA,1191920992 +195893,3243,COMEDY,1191920902 +195893,4880,DRAMA,1191920974 +195893,4992,ROMANCE,1191920921 +195909,119770,daniel auteuil,1432358981 +195909,119770,marcel pagnol,1432358981 +195909,119770,marseille,1432358981 +195913,99114,rescue loved ones,1451113923 +195913,104841,women oriented,1451113711 +195913,111921,coping with lose,1451113811 +195922,260,sci-fi,1440159740 +195922,260,space action,1440159749 +195933,65868,horror,1437437110 +195933,65868,musical,1437437128 +195933,65868,rock opera,1437437103 +195939,1583,Martin Short,1303360952 +195939,2134,John Hughes,1305400587 +195939,6297,Adapted from book,1303360334 +195939,27871,Cardiac surgery,1304014515 +195939,33794,Liam Neeson,1339577759 +195939,43396,bad accent,1389368657 +195939,43396,Kiwi,1389368657 +195939,72982,creative adaptation,1271680899 +195939,80283,Judy Garland,1338210621 +195939,80489,Ben Affleck,1284832841 +195939,80655,culture clash,1424193818 +195939,80655,historical,1424193818 +195939,80655,tiff premier,1424193818 +195939,82152,Neil Patrick Harris,1305400409 +195939,82152,Poor acting,1305400409 +195939,92048,based on a true story,1389368731 +195939,117555,documentary,1436831075 +195939,117555,inspiring,1436831075 +195939,117555,memory,1436831075 +195939,131170,family secret,1428105939 +195939,131170,intended as tv pilot,1428105939 +195939,131170,parallel universes,1428105939 +195943,5218,animated,1137366026 +195943,5218,Disney,1137366026 +195943,115680,to watch,1417558622 +195945,8910,existentialism,1240064304 +195945,34323,Rob Zombie,1240158201 +195945,72226,family issues,1311026855 +195945,72226,Jason Schwartzman,1311026842 +195945,72226,stop motion,1311026844 +195945,72226,Wes Anderson,1311026846 +195945,91128,based on a book,1344490182 +195945,91128,drug abuse,1344490157 +195945,95510,emma stone,1346937237 +195945,95510,nerds kicking butt,1346937218 +195971,8360,sequel better than original,1177043025 +195986,47,Kevin Spacey,1347750391 +195986,47,Morgan Freeman,1347750377 +195986,47,twist ending,1347750388 +195986,1645,Al Pacino,1355780373 +195986,1645,Charlize Theron,1355780406 +195986,1645,supernatural,1355780401 +195986,2762,Atmospheric,1347750359 +195986,2762,Bruce Willis,1347750355 +195986,2762,twist ending,1347750352 +195986,2959,Edward Norton,1347750421 +195986,2959,twist ending,1347750425 +195986,4720,atmospheric,1347750260 +195986,4720,twist ending,1347750241 +195986,8957,serial killer,1347750301 +195986,8957,twist ending,1347750297 +195986,55805,Marisa Tomei,1345072076 +195986,55820,Tommy Lee Jones,1353249199 +196003,1230,comedy,1335323359 +196003,1230,Woody Allen,1335323354 +196017,1198,indiana jones,1149868465 +196017,2470,adventure,1149868438 +196029,52644,Nudity (Topless - Brief),1190015822 +196049,1485,http://movielens.umn.edu/tagSearch?referrer=movieRow&tag=jim%20carrey,1300757398 +196061,318,feel good movie,1433523806 +196061,318,prison,1433523806 +196061,318,prison escape,1433523806 +196086,31658,anime,1322695942 +196087,12,Leslie Nielsen,1438903222 +196087,104,Adam Sandler,1438904130 +196087,296,bloody,1435508640 +196087,296,highly quotable,1435508640 +196087,296,violent,1435508640 +196087,953,James Stewart,1438904513 +196087,1204,desert,1438904672 +196087,1222,boot camp,1438903761 +196087,1222,R. Lee Ermey,1438903769 +196087,1222,Stanley Kubrick,1438903753 +196087,1265,Bill Murray,1438904044 +196087,1302,baseball,1438903674 +196087,1704,mathematics,1438903987 +196087,1704,Matt Damon,1438903984 +196087,1704,Robin Williams,1438903981 +196087,1921,mathematics,1438905417 +196087,1961,Dustin Hoffman,1438905665 +196087,2407,old age,1438903006 +196087,2529,Charlton Heston,1438905481 +196087,2716,Bill Murray,1438903781 +196087,2716,comedy,1438903782 +196087,2947,Sean Connery,1438903897 +196087,2959,social commentary,1438903692 +196087,3578,Hans Zimmer,1438903820 +196087,4002,John Candy,1438905466 +196087,4643,remake,1438905494 +196087,5903,gun fu,1438903447 +196087,27773,twist ending,1438905286 +196087,27773,violent,1438905291 +196087,34150,superhero,1438903604 +196087,49649,bad acting,1438903477 +196087,53993,Morgan Freeman,1438903543 +196087,61729,Ricky Gervais,1438903803 +196087,70305,AnnaSophia Robb,1438905614 +196087,76251,Nicolas Cage,1438904696 +196087,93855,social criticism,1438903849 +196087,93855,whiny,1438903860 +196087,96829,Mads Mikkelsen,1438973203 +196087,104841,sandra bullock,1438904005 +196087,104879,acting,1438905552 +196087,104879,Hugh Jackman,1438905556 +196087,104879,Jake Gyllenhaal,1438905554 +196087,107406,illogical,1438905901 +196087,107406,poor plot,1438905899 +196087,110453,football,1438903245 +196087,111364,bland hero,1438903883 +196087,111364,Godzilla,1438903877 +196087,111759,Emily Blunt,1438903362 +196087,112556,Ben Affleck,1438903916 +196087,112556,Rosamund Pike,1438903919 +196094,926,psychology,1402604706 +196100,5588,rape,1356920436 +196100,44397,rape,1356920450 +196121,608,Coen Brothers,1155271135 +196141,356,Not nearly as good as the book,1355571267 +196150,117,AWESOME,1286538083 +196150,117,COOL,1286538075 +196150,117,MURDER,1286538090 +196150,2639,WIRE HANGERS,1286536513 +196150,7008,ANAL BUTTER,1286536070 +196150,40819,SEXY,1286534169 +196150,58998,Kristen Bell,1286533202 +196150,58998,Penis,1286533238 +196150,58998,Russell Brand,1286533187 +196150,58998,sexy man,1286533291 +196150,58998,Yoga,1286533212 +196150,69134,EXTREME VIOLENCE!,1286536047 +196150,69134,nudity,1286536017 +196150,69134,STUPID,1286536035 +196150,78209,drug use,1286529553 +196150,78209,Russell Brand,1286529554 +196152,260,galactic empire,1442295016 +196152,260,other dimensions,1442295019 +196152,260,princess,1442295055 +196152,260,rescue,1442295043 +196152,260,sci-fi,1442295013 +196152,64957,cerebral,1442295786 +196152,64957,illogical,1442295688 +196152,64957,implausible,1442295665 +196152,64957,intellectual,1442295765 +196152,64957,interesting,1442295631 +196152,64957,observational,1442295624 +196152,64957,philosophical,1442295613 +196152,64957,surreal,1442295777 +196152,64957,thought-provoking,1442295773 +196192,180,comic books,1243110231 +196192,180,Jay and Silent Bob,1243110226 +196192,180,Kevin Smith,1243110223 +196192,971,classic,1244907202 +196192,971,old,1244907194 +196192,1193,depressing,1243109520 +196192,1682,dark comedy,1260671690 +196192,1704,mathematics,1244757035 +196192,1704,Robin Williams,1244757057 +196192,3052,jay and silent bob,1243109587 +196192,3052,Kevin Smith,1243109585 +196192,4973,beautifully filmed,1244907388 +196192,4973,comedy,1244907384 +196192,4973,French,1244907412 +196192,4973,imdb top 250,1244907436 +196192,4973,Paris,1244907379 +196192,4973,quirky,1244907403 +196192,4973,whimsical,1244907393 +196192,4993,imdb top 250,1244757283 +196192,4993,magic,1244757215 +196192,4993,Oscar,1244757271 +196192,7843,Marijuana,1311364001 +196192,8784,jewish,1243111631 +196192,8807,Neil Patrick Harris,1244758422 +196192,8917,Kim Jong Il,1243110308 +196192,8917,musical,1243110311 +196192,8917,puppetry,1243110304 +196192,8917,puppets,1243110290 +196192,44195,dark comedy,1243108835 +196192,44195,independent film,1243108837 +196192,44889,weed,1243108901 +196192,56563,design,1243110141 +196192,56563,interviews,1243110116 +196192,56563,too long,1243110144 +196192,56563,topic:typography,1243110113 +196192,56563,typography,1243110150 +196192,59126,Christianity,1244758152 +196192,59126,Documentary,1244758171 +196192,59126,islam,1244758154 +196192,59126,Judaism,1244758143 +196192,59126,naive view of religion,1244758169 +196192,59126,thought-provoking,1244758158 +196192,59143,comedians,1244758372 +196192,59143,marijuanna,1244758356 +196192,59315,based on a comic,1246107659 +196192,59315,super hero,1246107666 +196192,61240,1980s,1243109446 +196192,64839,Nudity (Topless),1244907332 +196192,66097,alternate reality,1246107633 +196192,66097,based on a book,1246107619 +196192,66097,claymation,1246107610 +196192,66097,Jennifer Saunders,1246107621 +196192,66097,Surreal,1246107613 +196192,66934,anti-hero,1244756835 +196192,66934,Awesome,1244756915 +196192,66934,free to download,1244756864 +196192,66934,musical,1244756873 +196192,66934,Neil Patrick Harris,1244756830 +196192,66934,not hawaii library,1244756841 +196192,66934,parody,1244756890 +196192,66934,short,1244756909 +196192,80928,stand-up comedy,1311367803 +196192,86377,stand-up comedy,1311367744 +196204,109187,meaning of life,1432189917 +196236,260,good for kids,1440080523 +196236,260,space action,1440080534 +196236,260,space adventure,1440080543 +196251,62203,french,1424537604 +196251,62203,horror,1424537604 +196251,62203,psychological,1424537604 +196257,318,based on a book,1407291892 +196257,920,social commentary,1407293422 +196257,1193,psychology,1407291922 +196257,2617,adventure,1407292106 +196257,44191,social commentary,1407292027 +196257,58559,superhero,1407291932 +196281,260,good vs evil,1442761816 +196281,260,space opera,1442761807 +196290,101967,better than expected,1423876993 +196290,101967,cheesy,1423876993 +196290,101967,japanese sci-fi,1423876993 +196303,260,classic,1436104101 +196303,260,Saga,1436104110 +196319,786,Oscar Nominee,1176335109 +196364,260,action,1431765731 +196364,260,cult film,1431765731 +196364,260,sci-fi,1431765731 +196384,260,"Star Wars, harrison ford",1442240698 +196387,296,nonlinear,1303088235 +196387,296,quirky,1303088235 +196387,2329,Edward Norton,1303087632 +196387,2959,Brad Pitt,1303087505 +196387,2959,edw,1303087511 +196387,4226,complicated,1303317624 +196387,4226,cult film,1303317627 +196387,4226,dreamlike,1303317622 +196387,4226,twist ending,1303317629 +196387,4878,alternate timeline,1303088054 +196387,4878,interpretable,1303088054 +196387,4878,Jake Gyllenhaal,1303088072 +196387,4878,Jim Caviezel,1303088054 +196387,4878,open ending,1303088054 +196387,4878,Philip Seymour Hoffman,1303088054 +196387,4878,philosophy,1303088054 +196387,4878,psychological,1303088054 +196387,4878,psychology,1303088054 +196387,5954,Philip Seymour Hoffman,1303317889 +196387,6953,Complex,1303317858 +196387,6953,multiple storylines,1303317862 +196387,6953,Nonlinear,1303317856 +196387,6953,Sean Penn,1303317853 +196387,8950,Christian Bale,1303317582 +196387,8950,imaginary friend,1303317608 +196387,8950,memory,1303317602 +196387,8950,powerful ending,1303317597 +196387,8950,psychology,1303317589 +196387,8950,schizophrenia,1303317593 +196387,8950,twist ending,1303317591 +196387,57368,"""found footage""",1303317785 +196387,57368,alien monster,1303317780 +196387,57368,fake authentic,1303317759 +196387,57368,Handycam,1303317756 +196387,57368,unsteady-cam,1303317771 +196387,70286,aliens,1303317690 +196387,70286,genetics,1303317694 +196387,74458,Leonardo DiCaprio,1303317646 +196387,74458,plot twist,1303317650 +196387,74458,psychological,1303317653 +196387,74458,twist ending,1303317648 +196387,85414,parallel universe,1303316328 +196387,85414,time travel,1303316331 +196437,260,classic,1431972802 +196459,260,classic sci-fi,1439784507 +196459,260,space adventure,1439784533 +196507,1036,action,1451286430 +196507,1036,action packed,1451286451 +196507,1036,lone hero,1451286442 +196507,1036,thriller,1451286438 +196507,3578,action,1451286380 +196507,3578,ancient Rome,1451286400 +196507,3578,history,1451286382 +196507,3578,revenge,1451286394 +196507,3578,Rome,1451286376 +196525,50,organized crime,1282400486 +196525,50,twist ending,1282400500 +196525,2959,dark comedy,1282400878 +196525,2959,psychology,1282400884 +196525,2959,surreal,1282400888 +196525,4226,nonlinear,1282400548 +196525,4226,psychology,1282400541 +196525,4226,twist ending,1282400545 +196525,30749,true story,1282400695 +196525,48516,Mafia,1282400521 +196525,48516,organized crime,1282400515 +196525,51540,based on a true story,1282400412 +196525,51540,serial killer,1282400378 +196550,5445,poop,1154289149 +196556,1061,emotional,1253930128 +196556,1061,revenge,1253930131 +196556,1061,true story,1253930149 +196556,1732,cult film,1253929373 +196556,1732,dark comedy,1253929372 +196556,1732,satirical,1253929376 +196556,2359,British,1253930034 +196556,2641,childish plot,1253930390 +196556,2641,plot holes,1253930395 +196556,2641,superhero,1253930399 +196556,3257,Kevin Costner,1253930539 +196556,3257,snorefest,1253930543 +196556,3275,vigilantism,1218405594 +196556,3300,anti-hero,1253929917 +196556,3300,Cole Hauser,1253929922 +196556,3300,Vin Diesel,1253929910 +196556,3301,Amanda Peet,1253929798 +196556,3301,Matthew Perry,1253929802 +196556,3301,Rosanna Arquette,1253929813 +196556,3809,Bill Murray,1253931205 +196556,3809,quirky,1253931216 +196556,3882,cheerleading,1253932873 +196556,3882,Eliza Dushku,1253932876 +196556,3882,Overrated,1253932878 +196556,4069,standard romantic comedy,1253933882 +196556,5219,video game adaptation,1253930587 +196556,5507,play enough video games and you can become an NSA agent,1253930345 +196556,5507,ridiculous training sequence,1253930342 +196556,7373,Guillermo del Toro,1253929290 +196556,7373,steampunk,1253929296 +196556,7373,superhero,1253929293 +196556,8861,Oded Fehr,1253930624 +196556,8861,post-apocalyptic,1253930636 +196556,8861,Sienna Guillory,1253930633 +196556,8861,zombies,1253930644 +196556,8928,Beautiful Woman,1253926735 +196556,8928,campy,1253926723 +196556,8928,irreverent,1253926726 +196556,8928,quirky,1253926728 +196556,8928,Roman Polanski,1253926730 +196556,27904,good animation,1253931241 +196556,27904,interesting concept - bad execution,1253931234 +196556,27904,surrealism,1253931244 +196556,34405,aliens,1253928597 +196556,34405,black comedy,1253928590 +196556,34405,Firefly,1253928585 +196556,37733,disappointing,1253929514 +196556,37733,overrated,1253929532 +196556,37733,Viggo Mortensen,1253929518 +196556,48394,dark,1218405627 +196556,48394,fairytale,1218405627 +196556,60684,alternate reality,1253926526 +196556,60684,diluted version of comic,1253926511 +196556,60684,dystopia,1253926517 +196556,60684,stylized,1253926519 +196556,63992,high school,1253932469 +196556,63992,Kristen Stewart,1253932484 +196556,63992,Robert Pattinson,1253932481 +196556,63992,Teen movie,1253932459 +196556,63992,Vampire Human Love,1253932463 +196556,64957,adapted from:book,1253929184 +196556,64957,Aging Disorder,1253929189 +196556,64957,Brad Pitt,1253929141 +196556,64957,cinematography,1253929177 +196556,64957,drama,1253929173 +196556,64957,original plot,1253929180 +196556,64957,slow parts,1253929162 +196556,64957,touching,1253929169 +196556,66097,alternate universe,1253926354 +196556,66097,author:Neil Gaiman,1253926328 +196556,66097,claymation,1253926330 +196556,66097,Dakota Fanning,1253926349 +196556,66097,dark,1253926337 +196556,66097,fairy tale,1253926364 +196556,66097,Neil Gaiman,1253926360 +196556,66934,Captain Hammer,1253926165 +196556,66934,joss whedon,1253926158 +196556,66934,mad scientist,1253926186 +196556,66934,musical,1253926178 +196556,66934,Nathan Fillion,1253926182 +196556,66934,Neil Patrick Harris,1253926160 +196556,66934,parody,1253926168 +196556,68157,Brad Pitt,1253926443 +196556,68157,ending,1253926451 +196556,68157,gratuitous violence,1253926429 +196556,68157,Quentin Tarantino,1253926404 +196556,68157,satire,1253926435 +196556,68157,unusual plot structure,1253926417 +196556,68157,violence,1253926426 +196556,68157,World War II,1253926408 +196556,68319,action,1253928934 +196556,68319,bad plot,1253928950 +196556,68319,hugh jackman,1253928926 +196556,68319,superhero,1253928935 +196556,68319,too long,1253928954 +196556,69526,bad plot,1253929636 +196556,69526,robots,1253929657 +196556,69526,sufficiently explodey to be good,1253929639 +196556,69712,Abigail Breslin,1260688098 +196556,69712,ending,1260688053 +196556,69712,genuine characters,1260688086 +196556,69712,Jason Patric,1260688105 +196556,71057,animation style,1253926100 +196558,520,parody,1250442656 +196558,2301,mockumentary,1250442830 +196565,1206,controversial,1428175235 +196565,1206,rape,1428175240 +196565,1206,stanley kubrick,1428175228 +196565,1206,Surrealism,1428175248 +196565,2076,David Lynch,1428175022 +196565,2076,weird,1428175047 +196565,103980,Cate Blanchett,1428174891 +196565,103980,Woody Allen,1428174887 +196565,104841,George Clooney,1428174952 +196565,104841,visually appealing,1428174947 +196565,106782,Anti-Hero,1428175112 +196565,106782,Funny,1428175106 +196565,106782,Martin Scorsese,1428175068 +196576,778,creazy,1425207423 +196576,6016,8,1425207275 +196576,6016,street life,1425207490 +196586,260,action,1416440608 +196586,260,adventure,1416440563 +196586,260,aliens,1416440582 +196586,260,atmospheric,1416440592 +196586,260,Carrie Fisher,1416440627 +196586,260,classic,1416440566 +196586,260,fantasy,1416440560 +196586,260,George Lucas,1416440553 +196586,260,great soundtrack,1416440596 +196586,260,Harrison Ford,1416440558 +196586,260,old FX quality,1416440613 +196586,260,original plot,1416440630 +196586,260,robots,1416440589 +196586,260,sci-fi,1416440547 +196586,260,soundtrack,1416440633 +196586,260,space,1416440550 +196586,260,space travel,1416440573 +196586,260,Star Wars,1416440584 +196586,260,starship pilots,1416440606 +196586,260,stylized,1416440598 +196586,260,sword fight,1416440604 +196586,260,war,1416440622 +196586,1036,action,1420522419 +196586,1036,action packed,1420522482 +196586,1036,Alan Rickman,1420522431 +196586,1036,Bruce Willis,1420522415 +196586,1036,christmas,1420522434 +196586,1036,explosions,1420522438 +196586,1036,good action,1420522466 +196586,1036,humorous,1420522424 +196586,1036,incompetent cops,1420522480 +196586,1036,intense,1420522473 +196586,1036,lone hero,1420522427 +196586,1036,police,1420522454 +196586,1036,skyscraper,1420522474 +196586,1036,tense,1420522436 +196586,1036,terrorism,1420522440 +196586,1036,thriller,1420522452 +196586,1198,action,1417412246 +196586,1198,adventure,1417412228 +196586,1198,archaeology,1417412237 +196586,1198,atmospheric,1417412253 +196586,1198,biblical,1417412280 +196586,1198,classic,1417412248 +196586,1198,comedy,1417412251 +196586,1198,good versus evil,1417412268 +196586,1198,great soundtrack,1417412291 +196586,1198,Harrison Ford,1417412222 +196586,1198,humorous,1417412289 +196586,1198,imdb top 250,1417412282 +196586,1198,indiana jones,1417412226 +196586,1198,Nazis,1417412241 +196586,1198,Steven Spielberg,1417412243 +196586,1198,treasure hunt,1417412286 +196586,1198,World War II,1417412257 +196586,1210,action,1417243194 +196586,1210,adventure,1417243173 +196586,1210,aliens,1417243136 +196586,1210,Carrie Fisher,1417243144 +196586,1210,classic,1417243147 +196586,1210,drama,1417243189 +196586,1210,fantasy,1417243161 +196586,1210,father-son relationship,1417243185 +196586,1210,George Lucas,1417243163 +196586,1210,great ending,1417243133 +196586,1210,great soundtrack,1417243177 +196586,1210,Harrison Ford,1417243159 +196586,1210,robots,1417243141 +196586,1210,sci-fi,1417243130 +196586,1210,sequel,1417243175 +196586,1210,space,1417243138 +196586,1210,space opera,1417243182 +196586,1210,Star Wars,1417243157 +196586,1210,starship pilots,1417243151 +196586,1210,war,1417243153 +196586,1211,angel,1418829759 +196586,1211,atmospheric,1418829792 +196586,1211,Berlin,1418829756 +196586,1211,Criterion,1418829807 +196586,1211,dreamlike,1418829775 +196586,1211,enigmatic,1418829762 +196586,1211,German,1418829794 +196586,1211,lyrical,1418829782 +196586,1211,meditative,1418829789 +196586,1211,Nick Cave and the Bad Seeds,1418829798 +196586,1211,poetic,1418829784 +196586,1211,poetry,1418829800 +196586,1211,Wim Wenders,1418829791 +196586,2628,desert,1420873609 +196586,2628,Ewan McGregor,1420873637 +196586,2628,fantasy,1420873596 +196586,2628,franchise,1420873607 +196586,2628,George Lucas,1420873589 +196586,2628,Jar Jar Binks,1420873601 +196586,2628,Liam Neeson,1420873584 +196586,2628,Natalie Portman,1420873587 +196586,2628,robots,1420873595 +196586,2628,Samuel L. Jackson,1420873576 +196586,2628,sci-fi,1420873605 +196586,2628,space,1420873603 +196586,2628,space opera,1420873611 +196586,2628,Star Wars,1420873571 +196586,33794,action,1416644215 +196586,33794,adapted from:comic,1416644313 +196586,33794,alter ego,1416644319 +196586,33794,atmospheric,1416644213 +196586,33794,based on a comic,1416644322 +196586,33794,based on comic,1416644310 +196586,33794,batman,1416644210 +196586,33794,Christian Bale,1416644202 +196586,33794,comic,1416644326 +196586,33794,comic book,1416644229 +196586,33794,dark,1416644206 +196586,33794,DC,1416644324 +196586,33794,imdb top 250,1416644320 +196586,33794,melancholy,1416644296 +196586,33794,Michael Caine,1416644294 +196586,33794,Morgan Freeman,1416644225 +196586,33794,ninja,1416644328 +196586,33794,stylized,1416644234 +196586,33794,super hero,1416644303 +196586,33794,super-hero,1416644221 +196586,33794,superhero,1416644197 +196586,33794,thought-provoking,1416644241 +196586,33794,vigilante,1416644217 +196586,97648,acting and story,1419878939 +196586,103792,documentary,1420243480 +196586,103792,economics,1420243480 +196586,103792,makes you think,1420243480 +196586,106642,David Tennant,1417420146 +196586,106642,Doctor Who,1417420024 +196586,106642,sci-fi,1417420127 +196586,106642,time travel,1417420018 +196586,106782,Anti-Hero,1418701354 +196586,106782,based on a true story,1418701352 +196586,106782,drugs,1418701337 +196586,106782,Funny,1418701358 +196586,106782,greed,1418701366 +196586,106782,Leonardo DiCaprio,1418701344 +196586,106782,Martin Scorsese,1418701346 +196586,106782,Nudity (Full Frontal),1418701334 +196586,106782,Stock Market,1418701340 +196586,106782,true story,1418701359 +196586,106782,visually appealing,1418701364 +196586,106782,Wall Street,1418701361 +196586,109487,artificial intelligence,1426999596 +196586,109487,Matthew McConaughey,1426999600 +196586,109487,relativity,1426999608 +196586,109487,wormhole,1426999581 +196586,111360,drugs,1421699838 +196586,111360,Luc Besson,1421699833 +196586,111360,Morgan Freeman,1421699836 +196586,111360,Scarlett Johansson,1421699830 +196586,112727,horror,1421855784 +196586,112727,paranormal,1421855788 +196586,112727,possession,1421855785 +196586,112727,priest,1421855790 +196603,260,classic,1432041873 +196603,260,scifi,1432041866 +196659,3741,bleak,1148607076 +196662,2273,4555455,1393365079 +196674,27904,Waking Life Animation,1153511794 +196674,43871,shit,1146546768 +196688,172,memory,1151608059 +196688,2640,comic book,1151608018 +196691,296,bad humor,1422478158 +196691,296,overrated,1422478158 +196691,296,violence,1422478158 +196691,1093,rock and roll,1422481889 +196691,2966,road trip,1422481996 +196691,68073,British,1422481862 +196691,68073,Music,1422481859 +196691,68073,rock and roll,1422481849 +196691,69464,depression,1422481773 +196691,69464,soundtrack,1422481803 +196691,93717,children,1453590872 +196691,93717,christmas,1453590833 +196691,93717,romance,1453590873 +196691,119068,modern technology,1426300121 +196691,119655,fantasy,1429746619 +196691,119655,magic,1429746615 +196691,134021,affair,1438042961 +196691,134021,french,1438043210 +196691,134021,love story,1438070985 +196691,134021,writer,1438042959 +196691,135844,animation,1435216498 +196691,135844,romance,1435216494 +196691,151451,guardian angel,1453425391 +196691,151451,new year,1453425403 +196691,151451,romance,1453425393 +196691,151451,russia,1453425414 +196710,1253,aliens,1450213410 +196710,1253,first contact,1450213407 +196710,1253,sci-fi,1450213422 +196710,34048,aliens,1450213494 +196710,34048,first contact,1450213511 +196710,111364,Creature Feature,1450213462 +196710,111364,Monster,1450213465 +196711,296,non-linear,1429014252 +196711,296,pop culture references,1429014252 +196711,296,violence,1429014252 +196718,260,Galaxy,1434910814 +196718,260,Universe,1434910827 +196733,260,sci-fi,1439791634 +196733,260,scifi cult,1439791642 +196754,260,action,1428011080 +196754,260,politics,1428011080 +196754,260,science fiction,1428011080 +196754,296,dark humor,1428788132 +196754,296,drugs,1428788132 +196754,296,philosophical,1428788132 +196754,527,drama,1429825935 +196754,527,music,1429825935 +196754,527,world war ii,1429825935 +196754,2571,computers,1431214966 +196754,2571,fighting,1431214966 +196754,2571,simulated reality,1431214966 +196754,61160,Kid movie,1431220165 +196777,928,Hitchcock,1144509943 +196777,8228,classic,1144509160 +196780,154,sex,1439348502 +196780,154,women,1439348501 +196780,215,dialogue driven,1443672128 +196780,215,generation X,1443672124 +196780,215,Richard Linklater,1443672132 +196780,296,dark comedy,1417752138 +196780,296,great editing,1420171631 +196780,296,great soundtrack,1420171631 +196780,296,John Travolta,1417752115 +196780,296,nonlinear,1417752125 +196780,296,Quentin Tarantino,1417752109 +196780,296,quirky,1417752134 +196780,296,Samuel L. Jackson,1417752117 +196780,296,very funny,1420171631 +196780,356,funny,1420873400 +196780,356,heartwarming,1420873400 +196780,356,meaning of life,1420873400 +196780,428,coming of age,1385686008 +196780,565,Guillermo del Toro,1443759984 +196780,593,atmospheric,1421644795 +196780,593,classic,1421644795 +196780,593,creepy,1421644795 +196780,741,vague ending,1384890568 +196780,750,the end of the world,1398751098 +196780,950,detective,1420171527 +196780,950,great dialogue,1420171547 +196780,953,Hope,1207022779 +196780,953,Xmas,1207022768 +196780,968,black and white,1419925494 +196780,968,disturbing,1419925489 +196780,968,zombies,1419925487 +196780,1077,futuristic,1207789526 +196780,1176,enigmatic,1422865197 +196780,1176,great soundtrack,1422865213 +196780,1176,Krzysztof Kieslowski,1422865199 +196780,1176,melancholy,1422865202 +196780,1200,better than original,1394525099 +196780,1200,horror,1394525094 +196780,1200,monster,1394525096 +196780,1200,sci-fi,1394525087 +196780,1200,space,1394525091 +196780,1200,suspense,1394525089 +196780,1203,courtroom drama,1433214354 +196780,1203,social commentary,1433214356 +196780,1212,black and white,1437588576 +196780,1212,Criterion,1437588573 +196780,1212,orson welles,1437588568 +196780,1237,atmospheric,1419659888 +196780,1237,death,1419659882 +196780,1237,existentialism,1419659884 +196780,1237,Ingmar Bergman,1419659886 +196780,1237,religion,1419659891 +196780,1248,Orson Welles,1452661144 +196780,1260,atmospheric,1421644117 +196780,1260,Fritz Lang,1421644115 +196780,1265,existentialism,1435445524 +196780,1354,great acting,1451803854 +196780,1354,mental illness,1451803857 +196780,1354,religion,1451803858 +196780,1748,aliens,1411885655 +196780,1748,alternate reality,1411885657 +196780,1748,dark,1411885665 +196780,1748,dark fantasy,1411885652 +196780,1748,dystopia,1411885649 +196780,1748,film noir,1411885659 +196780,1748,thought-provoking,1411885651 +196780,1748,visually appealing,1411885661 +196780,1757,moody,1415430637 +196780,1757,stylized,1415430639 +196780,2010,science fiction,1423886753 +196780,2010,silent film,1423886749 +196780,2081,Excellent soundtrack,1206753147 +196780,2186,Alfred Hitchcock,1422943520 +196780,2186,great concept,1422943518 +196780,2186,murder,1422943528 +196780,2585,first love,1441256710 +196780,2585,Spain,1441256700 +196780,2932,Terrence Malick,1430594733 +196780,3067,women,1215058805 +196780,3083,homosexuality,1206753972 +196780,3424,racism,1431298653 +196780,3503,atmospheric,1423430906 +196780,3503,dreamlike,1423430905 +196780,3503,Russian,1423430901 +196780,3645,Criterion,1421983822 +196780,3741,atmospheric,1418455494 +196780,3741,dreamlike,1418455502 +196780,3813,death,1423024500 +196780,3813,existentialism,1423024497 +196780,3813,sad,1423024492 +196780,4144,atmospheric,1401666532 +196780,4144,love triangles,1401666550 +196780,4144,music,1401666537 +196780,4144,soundtrack,1441256565 +196780,4144,stylized,1401666535 +196780,4144,visually stunning,1401666542 +196780,4144,Wong Kar-wai,1423027741 +196780,4235,Mexico,1206752892 +196780,4690,MAFIA LIFE,1212700477 +196780,4902,ghosts,1429495918 +196780,4902,Guillermo del Toro,1429495916 +196780,4902,Spanish Civil War,1429495921 +196780,5225,Alfonso Cuaron,1423027643 +196780,5225,bittersweet,1423027580 +196780,5225,coming of age,1423027585 +196780,5225,Erotic,1423027583 +196780,5225,Mexico,1423027623 +196780,5291,Akira Kurosawa,1419820036 +196780,5291,multiple storylines,1419820032 +196780,5291,nonlinear,1419820034 +196780,5291,surreal,1419820043 +196780,5878,Almodovar,1427005833 +196780,6214,brutal,1423287349 +196780,6214,disturbing,1423287351 +196780,6214,hard to watch,1423287357 +196780,6214,rape,1423287354 +196780,6214,reverse timeline,1423287348 +196780,6643,boring,1448170391 +196780,6870,Clint Eastwood,1422252845 +196780,6870,crime,1422252861 +196780,6870,Dark,1422252859 +196780,6870,great acting,1422252871 +196780,6870,Kevin Bacon,1422252878 +196780,6870,mystery,1422252851 +196780,6870,Sean Penn,1422252849 +196780,6870,twist ending,1422252854 +196780,6987,twist ending,1428881874 +196780,6993,adultery,1432493307 +196780,6993,family,1432493309 +196780,6993,love,1432493312 +196780,6993,Woody Allen,1432493303 +196780,7008,love,1422086714 +196780,7008,Paris,1422086718 +196780,7008,sex,1422086706 +196780,7361,bittersweet,1452993907 +196780,7361,Kate Winslet,1452993919 +196780,7361,love,1452993915 +196780,7361,relationships,1452993923 +196780,7361,romance,1452993912 +196780,7361,surreal,1452993902 +196780,7361,thought-provoking,1452993905 +196780,7486,gay,1417329334 +196780,7486,jealousy,1417329338 +196780,8195,slow,1422925777 +196780,8195,too long,1422925774 +196780,8376,misfits,1436750586 +196780,8620,surrealism,1419750076 +196780,8738,Jean-Luc Godard,1429991807 +196780,8738,nouvelle vague,1429991815 +196780,8798,Los Angeles,1361085267 +196780,8910,existentialism,1401088648 +196780,8910,intelligent,1401088652 +196780,8910,Naomi Watts,1401088659 +196780,8910,philosophy,1401088666 +196780,26713,dreamlike,1427002799 +196780,26713,love triangles,1427002804 +196780,26713,Wong Kar-wai,1427002792 +196780,27592,brutal,1416511181 +196780,27592,stylized,1416511190 +196780,27592,vengeance,1416511185 +196780,27773,revenge,1399790248 +196780,27773,twist ending,1399790247 +196780,30749,Africa,1421568272 +196780,30749,genocide,1421568270 +196780,30749,true story,1421568268 +196780,30749,war,1421568283 +196780,30810,Bill Murray,1401088589 +196780,30810,Cate Blanchett,1401088607 +196780,30810,great soundtrack,1401088591 +196780,30810,heartwarming,1401088627 +196780,30810,Wes Anderson,1401088598 +196780,31930,boring,1419986464 +196780,31930,slow,1419986459 +196780,31930,unlikable characters,1419986474 +196780,32792,boring,1417982619 +196780,32792,insanity,1417982647 +196780,32792,ugly,1417982633 +196780,43415,brother-brother relationship,1421124925 +196780,43415,crime,1421124907 +196780,43415,family,1421124918 +196780,44974,revenge,1219351465 +196780,55814,Too french,1231093887 +196780,60037,trees,1214114572 +196780,61240,friendship relations,1284703954 +196780,62203,ambiguous ending,1434265042 +196780,62203,drags on,1434265034 +196780,62203,gruesome,1434265010 +196780,62203,torture,1434265014 +196780,62203,weird,1434265021 +196780,62203,wtf,1434265044 +196780,65130,Kate Winslet,1442123196 +196780,68237,Kevin Spacey,1441434930 +196780,68237,plot twist,1441434933 +196780,68237,Sam Rockwell,1441434925 +196780,68237,Sci-fi,1441434927 +196780,68237,solitude,1441434936 +196780,71033,Ricardo Darin,1423027517 +196780,71579,bittersweet,1440037736 +196780,71579,Carey Mulligan,1440037720 +196780,71579,coming of age,1440037716 +196780,72104,short,1446522860 +196780,77455,consumerism,1444434437 +196780,77455,social commentary,1444434439 +196780,77561,based on a comic,1273951930 +196780,77561,Gwyneth Paltrow,1273951952 +196780,77561,Marvel,1273951946 +196780,77561,Mickey Rourke,1273951932 +196780,77561,Samuel L. Jackson,1273951959 +196780,77561,Scarlett Johansson,1273951958 +196780,78039,great performances,1421041198 +196780,78039,Michelle Williams,1421041192 +196780,78039,painful,1421041204 +196780,78039,thought provoking,1421041194 +196780,78039,unlikeable characters,1421041206 +196780,78332,léa seydoux,1422909076 +196780,79132,alternate reality,1280062466 +196780,79132,Christopher Nolan,1280062475 +196780,79132,mindfuck,1280062481 +196780,79132,multiple interpretations,1280062459 +196780,79132,visually appealing,1280062462 +196780,82173,Coming of age,1439681655 +196780,82173,Lena Dunham,1439681644 +196780,82459,based on a book,1298101468 +196780,82459,Coen Brothers,1298101463 +196780,82459,Jeff Bridges,1298101457 +196780,82459,Matt Damon,1298101460 +196780,82459,Western,1298101478 +196780,85394,art,1430283716 +196780,85394,art history,1430283730 +196780,85394,documentary,1430283712 +196780,86190,beautiful cinematography,1453428732 +196780,86190,Cate Blanchett,1453428734 +196780,86190,Cinematography,1453428743 +196780,86190,great soundtrack,1453428740 +196780,86190,multiculturalism,1453428754 +196780,86190,strong female lead,1453428736 +196780,86781,Unexpected Ending,1437588999 +196780,86898,beautifully filmed,1418455604 +196780,86898,cinematography,1418455600 +196780,86898,thought-provoking,1418455606 +196780,87234,Coming Of Age,1453780203 +196780,87234,First love,1453780207 +196780,87234,great soundtrack,1453780201 +196780,87234,interesting characters,1453780209 +196780,87234,quirky,1453780225 +196780,87234,stylistic,1453780205 +196780,87234,Teenagers,1453780230 +196780,87304,father-son relationship,1439161756 +196780,87304,great dialogue,1439162729 +196780,87304,melancholic,1439161761 +196780,87304,Melanie Laurent,1439161754 +196780,87304,realism,1439161758 +196780,87304,relationships,1439161771 +196780,90376,disjointed,1408931556 +196780,90376,nihilism,1408931568 +196780,90376,slow,1408931576 +196780,90866,3D,1329789140 +196780,90866,bad acting,1329789109 +196780,90866,setting:Paris,1329789147 +196780,91485,jokes,1420341280 +196780,92259,based on a true story,1422855607 +196780,92259,feel good movie,1422855605 +196780,92259,friendship,1422855603 +196780,92259,funny,1422855622 +196780,92259,hilarious,1422855621 +196780,92694,end of the world,1441252445 +196780,92694,Eva Green,1441252438 +196780,93838,brutal,1434264902 +196780,93838,intense,1434264906 +196780,93838,thin plot,1434264898 +196780,93840,clever,1420872441 +196780,93840,dark comedy,1420872443 +196780,93840,funny,1420872450 +196780,93840,joss whedon,1420872446 +196780,93840,meta,1420872459 +196780,93840,original,1420872447 +196780,93840,original plot,1420872452 +196780,93840,plot twist,1420872454 +196780,94959,Bruce Willis,1356134257 +196780,94959,dialogue,1356134252 +196780,94959,love story,1356134233 +196780,94959,quirky,1356134237 +196780,94959,stylized,1356134239 +196780,95309,apocalyptic,1430021436 +196780,95309,dark humor,1430021442 +196780,95309,Keira Knightley,1430021438 +196780,95309,love,1430021445 +196780,95309,Steve Carell,1430021440 +196780,95873,writers,1438568047 +196780,96610,great script,1398842267 +196780,96737,cinematography,1427678983 +196780,96737,Dystopia,1427678978 +196780,96737,post-apocalyptic,1427678980 +196780,96737,stylized,1427678985 +196780,96829,Mads Mikkelsen,1420265397 +196780,96829,painful to watch,1420265400 +196780,96829,pedophilia,1420265410 +196780,96829,social rejection,1420265413 +196780,97304,suspenseful,1352575211 +196780,97921,Jennifer Lawrence,1420341227 +196780,97921,mental illness,1420341230 +196780,98604,incest,1367460199 +196780,98604,melancholy,1367460233 +196780,98604,post war,1367460219 +196780,98604,tear,1367460181 +196780,98604,tragic,1367460223 +196780,100714,Ethan Hawke,1376798610 +196780,100714,Julie Delpy,1376798607 +196780,101088,beautiful,1422674489 +196780,101088,Chan-wook Park,1422674491 +196780,101088,dark,1422674493 +196780,101285,beautiful photography,1424589107 +196780,101285,colors,1424589110 +196780,101285,drugs,1424589094 +196780,101285,great soundtrack,1436662490 +196780,101285,growing up,1424589122 +196780,101285,guns,1424589097 +196780,101285,nightlife,1424589114 +196780,101285,sexual,1424589099 +196780,101285,stylized,1436662484 +196780,101285,youth,1424589118 +196780,101525,bad execution,1400390182 +196780,101525,pretentious,1400390178 +196780,101904,documentary,1420171497 +196780,101904,happiness,1420171505 +196780,102005,slow,1420179310 +196780,102005,unlikable characters,1420179305 +196780,103980,A Streetcar Named Desire,1384195840 +196780,104241,bad sequel,1433047152 +196780,104283,boring,1437588518 +196780,104374,Bill Nighy,1444017150 +196780,104374,charming,1444017149 +196780,104374,family,1444017165 +196780,104374,family relationships,1444017168 +196780,104374,father son relationship,1444017174 +196780,104374,happiness,1444017159 +196780,104374,love,1444017157 +196780,104374,Rachel McAdams,1444017152 +196780,104374,time travel,1444017161 +196780,104841,cinematography,1382312408 +196780,104841,sandra bullock,1382312403 +196780,104841,visually appealing,1382312416 +196780,105213,directorial debut,1453353920 +196780,105213,Joseph Gordon-Levitt,1453353932 +196780,105213,Julianne Moore,1453353928 +196780,105213,relationships,1453353926 +196780,105213,Scarlett Johansson,1453353930 +196780,105355,bourgeoisie,1393866809 +196780,105355,coming of age,1393866806 +196780,105355,slow,1393866773 +196780,105355,so french,1393866797 +196780,105355,too long,1393866770 +196780,106452,photography,1423801626 +196780,106489,irrelevant,1397459426 +196780,106489,unnecessary sequel,1397459441 +196780,106873,beautiful animation,1392170852 +196780,106873,confusing,1392170886 +196780,106873,emotional struggle,1392170911 +196780,106873,epic battles,1392170903 +196780,106873,superior sequel,1392170873 +196780,106873,uncomfortable,1392170859 +196780,106918,Ben Stiller,1423362657 +196780,106918,inspirational,1423362645 +196780,106918,photography,1423362661 +196780,106918,travel,1423362654 +196780,107406,chris evans,1419838274 +196780,107406,dystopia,1419838266 +196780,107406,Joon-ho Bong,1419838271 +196780,107406,post-apocalyptic,1419838263 +196780,107406,social commentary,1419838268 +196780,107771,atmospheric,1421299953 +196780,107771,death,1421299981 +196780,107771,existentialism,1421299962 +196780,107771,music,1421299955 +196780,107771,Tilda Swinton,1421299956 +196780,108190,based on a book,1396677489 +196780,108190,complex characters,1396677454 +196780,108190,dystopia,1396677481 +196780,108190,female protagonist,1396677465 +196780,108945,remake,1428463055 +196780,109374,cinematography,1398651105 +196780,109374,funny,1398651109 +196780,109374,stylized,1398651113 +196780,109374,Wes Anderson,1398651102 +196780,109487,bad dialogue,1416365154 +196780,109487,corny,1416365176 +196780,109487,inspiring,1416365229 +196780,109487,plot holes,1416365186 +196780,109848,beautiful photography,1423191642 +196780,109848,creepy,1423191633 +196780,109848,dark,1423191616 +196780,109848,great soundtrack,1436662551 +196780,109848,slow,1423191614 +196780,109848,stylized,1436662554 +196780,109848,unnerving,1423191625 +196780,110675,metaphysics,1447532193 +196780,110675,psychology,1447532198 +196780,111622,bittersweet,1441589391 +196780,111622,music,1441589397 +196780,111622,new york,1441589394 +196780,112183,Alejandro González Iñárritu,1416126012 +196780,112183,great performances,1416126023 +196780,112183,photography,1416126031 +196780,112290,Ambitious,1420248209 +196780,112290,Ethan Hawke,1420248213 +196780,112290,great dialogue,1420248223 +196780,112290,likeable characters,1420248229 +196780,112290,realism,1420248202 +196780,112421,Maggie Gyllenhaal,1422170111 +196780,112421,Michael Fassbender,1422170067 +196780,112421,soundtrack,1422170070 +196780,112852,all-star cast,1407114246 +196780,112852,characters with individual goals,1407114234 +196780,112852,great characters,1407114240 +196780,112852,great soundtrack,1407114257 +196780,112852,raccoon,1407114259 +196780,113862,great soundtrack,1436662448 +196780,113862,stylized,1436662451 +196780,116797,Benedict Cumberbatch,1426215497 +196780,116797,cryptography,1426215502 +196780,116797,genius,1426215505 +196780,116797,homosexuality,1426215498 +196780,116897,dark humor,1418880011 +196780,116897,violence,1418880028 +196780,118246,boring,1417882133 +196780,118760,heartwarming,1424551213 +196780,122892,Marvel,1430522458 +196780,122892,superhero,1430522460 +196780,127587,Cantinflas,1423027292 +196780,127587,hilarious,1423027297 +196780,127587,Mexico,1423027304 +196780,130634,happy ending,1429332185 +196798,260,awesome soundtrack,1435592463 +196798,260,underdog story,1435592485 +196818,260,adventure,1434182658 +196818,260,EPIC,1434182645 +196823,2140,classic,1230367680 +196823,2140,dark,1230367704 +196837,293,hitman,1215987483 +196837,318,prison,1215210334 +196837,55721,Berlinale 2008,1226776806 +196837,55830,Berlinale 2008,1226776328 +196837,60647,Berlinale 2008,1217880893 +196838,260,oldie but goodie,1441709406 +196838,260,Science Fiction,1441709414 +196838,109487,good science,1441738446 +196862,6,Al Pacino,1447274631 +196862,6,Ashley Judd,1447274933 +196862,6,Bechdel Test:Fail,1447274681 +196862,6,bleak,1447274966 +196862,6,dialogue,1447274940 +196862,6,ensemble cast,1447275012 +196862,6,gunfight,1447274943 +196862,6,long,1447274648 +196862,6,overrated,1447274672 +196862,6,police,1447274657 +196862,6,relationships,1447274957 +196862,6,Robert De Niro,1447274634 +196862,6,too long,1447274821 +196862,10,Famke Janssen,1441649172 +196862,10,funny,1441649114 +196862,10,james bond,1441649100 +196862,10,Pierce Brosnan,1441649104 +196862,150,Ed Harris,1375634221 +196862,150,Gary Sinise,1375634213 +196862,150,moon,1375634183 +196862,150,NASA,1375634177 +196862,150,Tom Hanks,1375634179 +196862,150,true story,1375634241 +196862,282,Jodie Foster,1450813736 +196862,282,Natasha Richardson,1450813739 +196862,282,Nudity (Full Frontal),1450813756 +196862,282,sad,1450813763 +196862,282,touching,1450813767 +196862,292,disease,1405880143 +196862,292,epidemic,1405880145 +196862,292,military,1405880141 +196862,296,guns,1420571058 +196862,296,quentin tarantino,1420571058 +196862,296,violence,1420571058 +196862,315,Sharon Stone,1374939573 +196862,315,Sylvester Stallone,1374939565 +196862,356,running,1421351578 +196862,356,tom hanks,1421351578 +196862,356,vietnam war,1421351578 +196862,361,Bridget Fonda,1452886107 +196862,361,chick flick,1452886092 +196862,361,lottery,1452886104 +196862,361,Rosie Perez,1452886109 +196862,474,assassin,1428179334 +196862,474,John Malkovich,1428179281 +196862,474,Rene Russo,1428179291 +196862,474,Secret Service,1428179303 +196862,474,tense,1428179374 +196862,480,dinosaurs,1422787074 +196862,480,jeff goldblum,1422787074 +196862,480,laura dern,1422787074 +196862,586,christmas,1450976332 +196862,586,for kids,1450976296 +196862,586,nostalgia,1450976298 +196862,786,alligators,1441740828 +196862,786,Arnold Schwarzenegger,1441740715 +196862,786,conspiracy,1441740717 +196862,786,funny,1441740837 +196862,786,railgun,1441740818 +196862,1101,aerial dogfights,1451569278 +196862,1101,aviation,1451569259 +196862,1101,fighter jet planes,1451569282 +196862,1101,Meg Ryan,1451569272 +196862,1101,Navy,1451569268 +196862,1101,Val Kilmer,1451569263 +196862,1198,Bechdel Test:Fail,1444588361 +196862,1198,Biblical fantasy,1444588375 +196862,1198,Egypt,1444588350 +196862,1198,Karen Allen,1444588354 +196862,1198,Nazis,1444588340 +196862,1198,overrated,1444588392 +196862,1198,treasure hunt,1444588346 +196862,1204,desert,1389216052 +196862,1204,World War I,1389216062 +196862,1291,action,1452931617 +196862,1291,Adventure,1452931605 +196862,1291,airships,1452931648 +196862,1291,Alison Doody,1452931725 +196862,1291,father-son relationship,1452931628 +196862,1291,Holy Grail,1452931611 +196862,1291,Nazis,1452931608 +196862,1291,Sean Connery,1452931600 +196862,1291,treasure,1452931592 +196862,1291,treasure hunt,1452931620 +196862,1291,Venice,1452931636 +196862,1291,zeppelin,1452931661 +196862,1377,boring,1451314299 +196862,1377,Michelle Pfeiffer,1451314229 +196862,1377,ridiculous,1451314284 +196862,1396,blindness,1427316511 +196862,1396,computers,1427316449 +196862,1396,David Strathairn,1427316620 +196862,1396,ensemble cast,1427316445 +196862,1396,hacking,1427316461 +196862,1396,Mary McDonnell,1427316559 +196862,1396,Robert Redford,1427316469 +196862,1396,spying,1427316456 +196862,1396,surveillance,1427316632 +196862,1396,weak ending,1427316645 +196862,1517,Elizabeth Hurley,1406146805 +196862,1517,silly fun,1406146815 +196862,1562,Alicia Silverstone,1451403430 +196862,1562,cheesy,1451403441 +196862,1562,Elle Macpherson,1451403574 +196862,1562,nonsensical,1451403473 +196862,1562,ridiculous,1451403501 +196862,1562,silly,1451403457 +196862,1562,Uma Thurman,1451403433 +196862,1562,unlikeable characters,1451403481 +196862,1608,america porn,1422787129 +196862,1608,Harrison Ford,1422787117 +196862,1608,jingoistic,1422787156 +196862,1608,rubbish,1422787177 +196862,1608,US President,1422787123 +196862,1639,Joey Lauren Adams,1445892891 +196862,1639,lesbian,1445892877 +196862,1639,relationships,1445893220 +196862,1676,Alien Invasion,1453218034 +196862,1676,aliens,1453218028 +196862,1676,cult film,1453218192 +196862,1676,Dina Meyer,1453218148 +196862,1676,fascism,1453218050 +196862,1676,giant space bugs,1453218060 +196862,1676,military,1453218052 +196862,1676,Nudity (Rear),1453218066 +196862,1676,Nudity (Topless),1453218036 +196862,1676,Robert Heinlein,1453218046 +196862,1676,so bad it's good,1453218162 +196862,1676,social commentary,1453218039 +196862,1676,would you like to know more?,1453218129 +196862,1726,boring,1375465247 +196862,1726,Kevin Costner,1375465263 +196862,1726,shut up about the book ok?!,1375465275 +196862,1726,slow start,1375465292 +196862,1882,Jean Reno,1375420702 +196862,1882,Matthew Broderick,1375420704 +196862,1882,New York City,1375420709 +196862,1882,Roland Emmerich,1375420706 +196862,2059,Natasha Richardson,1450818411 +196862,2195,comedy,1368032744 +196862,2424,bookshop,1450903558 +196862,2424,chick flick,1450903567 +196862,2424,e-mail,1450903582 +196862,2424,happy ending,1450903569 +196862,2424,internet,1450903578 +196862,2424,Meg Ryan,1450903549 +196862,2424,New York City,1450903562 +196862,2496,Alicia Silverstone,1453311504 +196862,2496,Christopher Walken,1453311506 +196862,2496,nuclear bunker,1453311509 +196862,2572,chick flick,1420750702 +196862,2572,Heath Ledger,1420750687 +196862,2572,high school,1420750709 +196862,2572,Julia Stiles,1420750684 +196862,2572,teen,1420750692 +196862,2605,Catherine Zeta-Jones,1375548024 +196862,2605,Kuala Lumpur,1375548040 +196862,2605,Malaysia,1375548046 +196862,2605,Sean Connery,1375548026 +196862,2652,horror,1368033234 +196862,2683,Heather Graham,1406059451 +196862,2683,Silly,1406059472 +196862,2683,stupid,1406059465 +196862,3301,Amanda Peet,1365869712 +196862,3301,Bruce Willis,1365869708 +196862,3301,canada,1365869731 +196862,3301,Matthew Perry,1365869715 +196862,3301,mob,1365869719 +196862,3339,history,1408273491 +196862,3339,realistic,1408273465 +196862,3339,very good,1408273582 +196862,3339,World War II,1408273440 +196862,3578,Bechdel Test:Fail,1445803318 +196862,3578,boring,1445803314 +196862,3578,Connie Nielsen,1445803351 +196862,3578,over long,1445803337 +196862,3578,Rome,1445803279 +196862,3578,Russell Crowe,1445803276 +196862,3578,sword fight,1445803286 +196862,3578,unhistorical,1445803365 +196862,3646,comedy,1368032744 +196862,3674,family,1368033302 +196862,3698,Dystopia,1408392432 +196862,3698,satire,1408392443 +196862,3698,so bad it's good,1408392423 +196862,3793,comic book,1440957791 +196862,3793,Famke Janssen,1440957860 +196862,3793,silly,1440957819 +196862,3793,stupid,1440957803 +196862,3892,horror,1368033234 +196862,3977,sexy,1408213075 +196862,3977,silly,1408213073 +196862,3983,family,1407573032 +196862,3983,tragedy,1407573069 +196862,4092,androids,1385409275 +196862,4092,melanie griffith,1385409248 +196862,4092,Post apocalyptic,1385409266 +196862,4092,post-apocalyptic,1385409244 +196862,4327,classic,1408273643 +196862,4329,Angie Dickinson,1407869529 +196862,4329,quirky,1407869543 +196862,4344,Nudity (Topless - Notable),1441219344 +196862,4344,Nudity (Topless),1441219353 +196862,4387,action,1368033009 +196862,4447,lawyers,1365870176 +196862,4447,Reese Witherspoon,1365870154 +196862,4447,stupid,1365870156 +196862,4473,Gene Hackman,1451494787 +196862,4473,Vietnam War,1451494785 +196862,4565,action,1368033009 +196862,4776,great acting,1368033184 +196862,4887,action,1368033009 +196862,4887,Carla Gugino,1390508660 +196862,4887,Jason Statham,1390508727 +196862,4887,martial arts,1390508704 +196862,4901,Brad Pitt,1374939254 +196862,4901,Catherine McCormack,1374939271 +196862,4901,China,1374939283 +196862,4901,CIA,1374939277 +196862,4901,Robert Redford,1374939257 +196862,4901,Tony Scott,1374939280 +196862,5010,Africa,1451495110 +196862,5010,based on a true story,1451495096 +196862,5010,brutal,1451495150 +196862,5010,enough to see once,1451495131 +196862,5010,Eric Bana,1451495089 +196862,5010,Rangers,1451495117 +196862,5010,realistic action,1451495104 +196862,5010,Somalia,1451495126 +196862,5010,special forces,1451495093 +196862,5093,Arnold Schwarzenegger,1442087913 +196862,5093,Latin America,1442087919 +196862,5093,revenge,1442087908 +196862,5093,South America,1442087922 +196862,5093,terrorism,1442087926 +196862,5250,comedy,1368032744 +196862,5282,Amanda Peet,1428311806 +196862,5282,Ashley Judd,1428311793 +196862,5282,lawyers,1428311792 +196862,5282,military court,1428311781 +196862,5299,chick flick,1388512769 +196862,5299,RomCom,1388512767 +196862,5313,action,1368033009 +196862,5502,Alien Invasion,1450527276 +196862,5502,horror,1450527285 +196862,5502,scary,1450527283 +196862,5507,action sports,1451426080 +196862,5507,Asia Argento,1451426089 +196862,5507,Marton Csokas,1451426091 +196862,5507,Prague,1451426017 +196862,5507,predictable,1451425914 +196862,5507,Su-22 Fitter,1451426046 +196862,5507,terrorism,1451426073 +196862,5507,Vin Diesel,1451425902 +196862,5546,horror,1368033234 +196862,5628,comedy,1446980032 +196862,5628,France,1446980036 +196862,5628,Japan,1446980315 +196862,5628,Jean Reno,1446980028 +196862,5628,Ryoko Hirosue,1446980368 +196862,5628,yakuza,1446980046 +196862,5684,visually appealing,1368033165 +196862,5796,crazy,1422045490 +196862,5796,Ursula Andress,1422045475 +196862,5796,Woody Allen,1422045440 +196862,5942,comedy,1368032744 +196862,6155,not funny,1387827981 +196862,6157,bad plot,1367610850 +196862,6157,bad stunts,1367610886 +196862,6157,Jennifer Garner,1367610832 +196862,6157,silly,1367610900 +196862,6193,mentor,1368032603 +196862,6197,cerebral,1368033394 +196862,6213,Bruce Willis,1365868831 +196862,6213,Monica Bellucci,1365868834 +196862,6213,SEAL,1365868840 +196862,6270,visually appealing,1368033165 +196862,6299,birds,1367001912 +196862,6299,geese,1367001931 +196862,6299,Good Documentary,1367001917 +196862,6299,gorgeous,1367001915 +196862,6299,nature,1367001921 +196862,6333,action,1441570931 +196862,6333,too long,1441571024 +196862,6438,bad plot,1367611005 +196862,6438,boring,1367610987 +196862,6438,Mosquito,1367610958 +196862,6518,flying,1400079769 +196862,6539,funny,1438431658 +196862,6539,johnny depp,1438431645 +196862,6539,keira knightley,1438431651 +196862,6539,pirates,1438431649 +196862,6539,treasure hunt,1438431664 +196862,6541,B-movie,1453049379 +196862,6541,captain nemo,1453049370 +196862,6541,comic book,1453049362 +196862,6541,Peta Wilson,1453049401 +196862,6541,Sean Connery,1453049353 +196862,6541,too long,1453049419 +196862,6541,Venice,1453049395 +196862,6764,action,1446981664 +196862,6764,Christopher Walken,1446981672 +196862,6764,Dwayne Johnson,1446981659 +196862,6764,entertaining,1446981698 +196862,6764,jungle,1446981662 +196862,6764,Seann William Scott,1446981657 +196862,6808,Bechdel Test:Pass,1453667113 +196862,6808,Ingrid Pitt,1453667214 +196862,6808,Ju 52,1453667142 +196862,6808,mountains,1453667144 +196862,6808,Richard Burton,1453667162 +196862,6808,slow start,1453667244 +196862,6808,too long,1453667236 +196862,6808,World War II,1453667103 +196862,6873,Catherine Zeta-Jones,1441218846 +196862,6873,fun,1441218842 +196862,6947,Age of sail,1453311709 +196862,6947,Bechdel Test:Fail,1453311703 +196862,6947,Galapagos,1453311788 +196862,6947,great soundtrack,1453311716 +196862,6947,navy,1453311698 +196862,6947,Paul Bettany,1453311748 +196862,6947,sailing,1453311695 +196862,6947,seafaring,1453311692 +196862,6947,tallships,1453311740 +196862,7076,Jacqueline Bisset,1407700825 +196862,7076,matter-of-fact,1407700746 +196862,7076,Nudity (Topless - Brief),1407700761 +196862,7076,Steve McQueen,1407700806 +196862,7076,tense,1407700770 +196862,7117,horror,1368033234 +196862,7297,loneliness,1368032889 +196862,7346,Elisha Cuthbert,1365869657 +196862,7346,teen,1365869674 +196862,7348,better than expected,1450509332 +196862,7348,conspiracy,1450509264 +196862,7348,Kristen Bell,1450509338 +196862,7348,SEAL,1450509361 +196862,7348,Val Kilmer,1450509336 +196862,7450,chemistry,1439128299 +196862,7450,Ireland,1439128296 +196862,7450,Julianne Moore,1439128292 +196862,7450,Pierce Brosnan,1439128291 +196862,7454,heroine in tight suit,1450903311 +196862,7454,Kate Beckinsale,1450903302 +196862,7454,steampunk,1450903341 +196862,7454,too long,1450903368 +196862,7454,wasted potential,1450903316 +196862,8531,comedy,1368032744 +196862,8839,horror,1368033234 +196862,8865,Gwyneth Paltrow,1453313037 +196862,8865,overly stylised,1453312976 +196862,8865,steampunk,1453312968 +196862,8985,Jessica Biel,1452720585 +196862,8985,vampires,1452720590 +196862,26614,*NOT* Matt Damon,1451495300 +196862,26614,easily confused with other movie(s) (title),1451495314 +196862,26614,inaccurate rating,1451495294 +196862,26614,mis-rated,1451495288 +196862,27573,tokyo,1419152780 +196862,33158,action,1368033009 +196862,34530,comedy,1368032744 +196862,34536,Connie Nielsen,1375120173 +196862,34536,Marton Csokas,1375120161 +196862,34536,Philipines,1375120193 +196862,34536,POW,1375120201 +196862,34536,World War II,1375120180 +196862,37736,story,1368033366 +196862,38061,bad plot,1366451781 +196862,38061,boring,1366451740 +196862,38061,Michelle Monaghan,1366451724 +196862,38061,not funny,1366451801 +196862,38061,Nudity (Topless),1366451697 +196862,38061,Robert Downey Jr.,1366451694 +196862,40583,Amanda Peet,1451591735 +196862,40583,Cast,1451591778 +196862,40583,complex,1451591697 +196862,40583,George Clooney,1451591684 +196862,40583,long,1451591715 +196862,40583,middle east,1451591687 +196862,40583,oil,1451591691 +196862,40583,Political,1451591682 +196862,40583,politics,1451591702 +196862,40583,tense,1451591721 +196862,40583,tragic,1451591718 +196862,40583,world politics,1451591706 +196862,40815,dark,1450527346 +196862,40815,dragons,1450527530 +196862,40815,Emma Watson,1450527423 +196862,40815,hard to rate,1450527464 +196862,40815,harry potter,1450527523 +196862,40815,Katie Leung,1450527512 +196862,40815,no characterization,1450527392 +196862,40962,family,1368033301 +196862,44199,bank robbery,1428269458 +196862,44199,Clive Owen,1428269453 +196862,44199,intelligent thriller,1428269474 +196862,44199,Jodie Foster,1428269455 +196862,44199,New York City,1428269490 +196862,44709,mentor,1368032603 +196862,45003,horror,1368033234 +196862,45499,comic book,1442257880 +196862,45499,Ellen Page,1442257894 +196862,45499,Famke Janssen,1442257981 +196862,45499,Vinnie Jones,1442258003 +196862,45501,Jennifer Aniston,1423167241 +196862,45501,nudity (rear),1423167264 +196862,45501,Vince Vaughn,1423167238 +196862,45720,Anne Hathaway,1389205214 +196862,45720,career,1389205257 +196862,45720,Chick flick,1389205267 +196862,45720,fashion,1389205236 +196862,45720,funny,1389205222 +196862,45720,New York,1389205241 +196862,45720,Paris,1389205239 +196862,45732,Anna Faris,1420284337 +196862,45732,Uma Thurman,1420284327 +196862,47200,Amy Smart,1397853335 +196862,47200,Jason Statham,1397853337 +196862,47200,Nudity (Topless),1397853355 +196862,47200,silly,1397853361 +196862,47200,violence,1397853378 +196862,47254,action,1445180127 +196862,47254,Jason Statham,1445180125 +196862,47254,Justine Waddell,1445180265 +196862,47254,Ryan Phillippe,1445180218 +196862,47610,19th century,1452632526 +196862,47610,austria,1452632543 +196862,47610,boring,1452632652 +196862,47610,costume drama,1452632549 +196862,47610,filmed in:Czech Republic,1452632626 +196862,47610,Jessica Biel,1452632559 +196862,47610,magic,1452632522 +196862,47610,Paul Giamatti,1452632517 +196862,47610,stage magic,1452632529 +196862,47970,relationships,1368033073 +196862,47997,dumb,1388723064 +196862,47997,not funny,1388723118 +196862,47997,overrated,1388723084 +196862,47997,stupid fun,1388723107 +196862,48385,boring,1403337977 +196862,48385,not funny,1403337939 +196862,49530,Africa,1419283545 +196862,49530,corruption,1419283580 +196862,49530,Jennifer Connelly,1419283565 +196862,49530,journalism,1419283562 +196862,49530,Leonardo DiCaprio,1419283551 +196862,49530,smuggling,1419283559 +196862,49530,war,1419283574 +196862,49932,weird,1368033138 +196862,52973,Katherine Heigl,1365869252 +196862,52973,Leslie Mann,1365869284 +196862,53464,adapted from:comic,1445112836 +196862,53464,bad acting,1445112781 +196862,53464,bad plot,1445112785 +196862,53464,based on comic book,1445112856 +196862,53464,Cheesy,1445112890 +196862,53464,Chris Evans,1445112787 +196862,53464,comic book,1445112812 +196862,53464,Ioan Gruffudd,1445112809 +196862,53464,Jessica Alba,1445112776 +196862,53464,stupid,1445112893 +196862,53996,childish,1445803642 +196862,53996,crude humor,1445803649 +196862,53996,Megan Fox,1444574255 +196862,53996,ridiculous,1445803701 +196862,53996,silly,1445803661 +196862,54736,action,1401997900 +196862,54736,Chris Cooper,1401997928 +196862,54736,Jennifer Garner,1401997910 +196862,54736,middle east,1401998007 +196862,54736,Saudi Arabia,1401997997 +196862,54736,terrorism,1401998001 +196862,54771,aliens,1408392262 +196862,54771,epidemic,1408392265 +196862,54771,Nicole Kidman,1408392258 +196862,54775,Jason Statham,1407958933 +196862,54775,Jet Li,1407958935 +196862,54775,revenge,1407958942 +196862,55765,1960s,1422163149 +196862,55765,Carla Gugino,1422163227 +196862,55765,corruption,1422163128 +196862,55765,Denzel Washington,1422163118 +196862,55765,drugs,1422163124 +196862,55765,gangsters,1422163142 +196862,55765,long,1422163363 +196862,55765,New York,1422163242 +196862,55765,Nudity (Topless - Brief),1422163346 +196862,55765,Russell Crowe,1422163121 +196862,55765,smuggling,1422163137 +196862,56174,apocalypse,1408179959 +196862,56174,sci-fi,1408179960 +196862,56174,virus,1408179990 +196862,57353,60s,1452459679 +196862,57353,Demi Moore,1452459649 +196862,57353,diamonds,1452459658 +196862,57353,Michael Caine,1452459651 +196862,57353,mystery,1452459669 +196862,57353,strong woman,1452459654 +196862,57368,funny,1446995737 +196862,57368,military,1446995454 +196862,57368,monster,1446995442 +196862,57368,New York City,1446995435 +196862,57368,odette yustman,1446995671 +196862,57368,tense,1446995677 +196862,58047,Elizabeth Banks,1377628916 +196862,58047,Isla Fisher,1377628939 +196862,58047,New York,1377856506 +196862,58047,PARENTHOOD,1377856514 +196862,58047,Rachel Weisz,1377628930 +196862,58047,Ryan Reynolds,1377628909 +196862,58291,family,1368033301 +196862,58492,relationships,1368033074 +196862,58998,comedy,1365954420 +196862,58998,Jason Segel,1365954398 +196862,58998,Kristen Bell,1365954413 +196862,58998,male nudity,1365954341 +196862,58998,Mila Kunis,1365954398 +196862,58998,Nudity (Topless),1365954357 +196862,58998,Predictable,1365954346 +196862,58998,romance,1365954422 +196862,59615,adventure,1405786776 +196862,59615,aliens,1405786771 +196862,59615,motorcycle,1405786782 +196862,60072,Angelina Jolie,1374437632 +196862,60072,gore,1374437652 +196862,60072,Morgan Freeman,1374437635 +196862,60072,silly,1374437641 +196862,60072,unintentional comedy,1374437649 +196862,60072,unrealistic action,1374437644 +196862,60126,Anne Hathaway,1437932931 +196862,60333,antarctica,1450633038 +196862,60333,meditative,1450633082 +196862,60333,Philosophical,1450633069 +196862,60514,Anita Briem,1453309812 +196862,60514,Iceland,1453309838 +196862,60514,Jules Verne,1453309799 +196862,60514,juvenile adventure,1453309793 +196862,60514,obnoxious kid,1453309819 +196862,60514,retold classic,1453309795 +196862,60514,silly,1453309832 +196862,60686,based on a book,1367002016 +196862,60686,realistic,1367002009 +196862,60686,SAS,1367001996 +196862,60686,Sean Bean,1367001991 +196862,60937,boring,1374697777 +196862,60937,Brendan Fraser,1374697719 +196862,60937,Isabella Leong,1374697715 +196862,60937,Maria Bello,1374697723 +196862,60937,Michelle Yeoh,1374697758 +196862,60937,should'a stopped at 2,1374697761 +196862,62394,based on a computer game,1365963766 +196862,62394,based on a video game,1365963760 +196862,62394,glorifying violence,1365963773 +196862,62394,gun porn,1365963788 +196862,62394,Mark Wahlberg,1365963740 +196862,62394,Mila Kunis,1365963744 +196862,62394,Olga Kurylenko,1365963780 +196862,62394,video game adaptation,1365963756 +196862,62849,Tom Hardy,1389572134 +196862,63113,Daniel Craig,1439047664 +196862,63113,James Bond,1439047662 +196862,63113,Olga Kurylenko,1439047673 +196862,63853,Aborigines,1405790687 +196862,63853,Australia,1405790681 +196862,63853,Nicole Kidman,1405790671 +196862,63853,World War II,1405790675 +196862,64231,comic book feel,1450209002 +196862,64231,gore,1450208968 +196862,64231,Ray Stevenson,1450208952 +196862,64993,loneliness,1368032889 +196862,65585,could have been funnier,1389205119 +196862,65932,bandits,1452720045 +196862,65932,fake blood,1452720049 +196862,65932,Joanna Pettet,1452720025 +196862,65932,rubbish,1452720051 +196862,65982,Jim Caviezel,1450647181 +196862,65982,norse,1450647125 +196862,65982,Sophia Myles,1450647183 +196862,65982,space,1450647123 +196862,65982,vikings,1450647117 +196862,66203,chick flick,1388672046 +196862,66203,funny,1388671928 +196862,66203,Ginnifer Goodwin,1388671960 +196862,66203,relationships,1388672001 +196862,66203,romance,1388671933 +196862,66371,mentor,1368032603 +196862,66509,Leslie Mann,1359750030 +196862,66509,long,1359749989 +196862,66509,Vulgar,1359749989 +196862,67620,journalist,1439234899 +196862,67620,Vera Farmiga,1439234890 +196862,67788,cute,1453626368 +196862,67788,dumb but charming,1453626379 +196862,67788,Isla Fisher,1453626366 +196862,67788,Leslie Bibb,1453628732 +196862,67788,shopping,1453626508 +196862,68157,boring,1375015592 +196862,68157,Brad Pitt,1375015495 +196862,68157,Diane Kruger,1375015570 +196862,68157,gore,1375015671 +196862,68157,Melanie Laurent,1375015561 +196862,68157,Paris,1375015508 +196862,68157,Quentin Tarantino,1375015499 +196862,68157,too long,1375015605 +196862,68157,violence,1375015676 +196862,68157,World War II,1375015585 +196862,68749,Jennifer Aniston,1389388326 +196862,68749,relationships,1389388355 +196862,68749,slow,1389388343 +196862,69481,anti-war,1439137217 +196862,69481,Iraq War,1439137225 +196862,69481,Jeremy Renner,1439137230 +196862,69481,Middle East,1439137221 +196862,69481,war,1439137214 +196862,69526,Megan Fox,1444574307 +196862,70305,adventure,1388441984 +196862,70305,Carla Gugino,1388441970 +196862,70305,funny,1388441992 +196862,70305,sci-fi,1388441978 +196862,70567,emotional,1420136108 +196862,70567,romantic,1405801366 +196862,70567,Rose Byrne,1405801358 +196862,70567,sweet,1405801378 +196862,71325,Jennifer Aniston,1392231246 +196862,71838,antihero,1438511869 +196862,71838,ending kinda ruined it,1438511798 +196862,71838,Gerard Butler,1438511791 +196862,71838,gore,1438511861 +196862,71838,technology,1438511808 +196862,71838,violent,1438511788 +196862,72330,Blake Lively,1423513399 +196862,72330,Julianne Moore,1423513411 +196862,72330,marriage,1423513323 +196862,72330,Robin Wright Penn,1423513309 +196862,73321,Bible,1365868202 +196862,73321,Christianity,1365868199 +196862,73321,Denzel Washington,1365868195 +196862,73321,dystopia,1365868226 +196862,73321,dystopic future,1365868232 +196862,73321,fight scenes,1365868220 +196862,73321,future,1365868229 +196862,73321,Gary Oldman,1365868206 +196862,73321,Mila Kunis,1365868255 +196862,73321,post-apocalyptic,1365868191 +196862,73321,survival,1365868236 +196862,74139,aviation,1405967843 +196862,74139,Lena Headey,1405967838 +196862,74139,World War I,1405967846 +196862,74154,chick flick,1388767278 +196862,74154,Josh Duhamel,1388767371 +196862,74154,Kristen Bell,1388767369 +196862,74545,Ewan McGregor,1375561302 +196862,74545,Kim Cattrall,1375561341 +196862,74545,Olivia Williams,1375561326 +196862,74545,Pierce Brosnan,1375561377 +196862,74545,politics,1375561458 +196862,74795,Iraq War,1439020122 +196862,74795,Matt Damon,1439020121 +196862,74795,Middle East,1439020126 +196862,74851,drugs,1377557182 +196862,74851,embassy,1377557184 +196862,74851,John Travolta,1377557208 +196862,74851,Paris,1377557178 +196862,74851,romance,1377557198 +196862,74946,Alice Eve,1420882172 +196862,74946,Krysten Ritter,1420882177 +196862,74946,Lindsay Sloane,1420882224 +196862,76079,ending kinda ruined it,1451650643 +196862,76079,Julianne Moore,1451650606 +196862,76079,lesbian,1451650704 +196862,76079,nudity (topless),1451650699 +196862,76079,surprisingly good,1451650672 +196862,76293,predictable,1365868504 +196862,77364,audience intelligence underestimated,1390059521 +196862,77364,Based on a comic book,1390059538 +196862,78041,Ashton Kutcher,1388756531 +196862,78041,boring,1388756586 +196862,78041,Katherine Heigl,1388756529 +196862,78041,silly,1388756540 +196862,78469,Bradley Cooper,1387915758 +196862,78469,Jessica Biel,1387915764 +196862,78469,Liam Neeson,1387915761 +196862,78469,so bad it's almost good,1387915800 +196862,79293,Angelina Jolie,1374524508 +196862,79293,Chiwetel Ejiofor,1374524597 +196862,79293,CIA,1374524618 +196862,79293,cold war,1374524641 +196862,79293,espionage,1374524510 +196862,79293,Liev Schreiber,1374524585 +196862,79357,storytelling,1368032801 +196862,79796,Britain,1408189704 +196862,79796,Michael Fassbender,1408189046 +196862,79796,mountains,1408190007 +196862,79796,Olga Kurylenko,1408189049 +196862,79796,Romans,1408189052 +196862,79796,Violence,1408189682 +196862,79946,Amber Heard,1441484035 +196862,79946,Demi Moore,1441484012 +196862,79946,ethical dilemma,1441484021 +196862,79946,marketing,1441484018 +196862,79946,nudity (topless),1441571255 +196862,80126,George Clooney,1377856334 +196862,80126,Italy,1377856337 +196862,80126,loneliness,1377856386 +196862,80126,Nudity (Full Frontal),1377856340 +196862,80126,Thekla Reuten,1377856360 +196862,80126,Violante Placido,1377856372 +196862,80166,Jason Bateman,1388512607 +196862,80166,Jeff Goldblum,1388512615 +196862,80166,Jennifer Aniston,1388512604 +196862,80166,New York,1388512626 +196862,80166,relationships,1388512647 +196862,80489,bank robbery,1453404853 +196862,80489,Ben Affleck,1453404851 +196862,80489,Boston,1453404862 +196862,80489,crime,1453404868 +196862,80489,heist,1453404859 +196862,80489,long,1453404880 +196862,80489,Rebecca Hall,1453404906 +196862,80489,trashy Blake Lively,1453404941 +196862,80586,kids,1407342293 +196862,80779,Carla Gugino,1383841678 +196862,80779,Helen Hunt,1383841678 +196862,80779,infidelity,1383841651 +196862,80779,Liev Schreiber,1383841678 +196862,81641,based on a true story,1438546766 +196862,81641,Iraq War,1438546749 +196862,81641,naomi watts,1438546744 +196862,81641,sean penn,1438546747 +196862,81784,Harrison Ford,1407342013 +196862,81784,Jeff Goldblum,1407342017 +196862,81784,Rachel McAdams,1407342019 +196862,82459,revenge,1408197994 +196862,82459,Western,1408198005 +196862,83613,aliens,1428323647 +196862,83613,better than expected,1428323665 +196862,83613,cowboys,1428323652 +196862,83613,Daniel Craig,1428323649 +196862,83613,Olivia Wilde,1428323653 +196862,83613,western,1428323678 +196862,84152,Bradley Cooper,1387712775 +196862,84152,Robert De Niro,1387712785 +196862,84374,boring,1445369757 +196862,84374,Greta Gerwig,1445369748 +196862,84374,Lake Bell,1445369751 +196862,84374,Natalie Portman,1445369679 +196862,85131,alien invasion,1397998427 +196862,85131,sci-fi,1397998436 +196862,85367,Adam Sandler,1375469610 +196862,85367,Hawaii,1375469636 +196862,85367,Jennifer Aniston,1375469607 +196862,85367,plastic surgery,1375469619 +196862,86190,Cate Blanchett,1375538898 +196862,86190,Eric Bana,1375538895 +196862,86190,Finland,1375538863 +196862,86190,Germany,1375538859 +196862,86190,Saoirse Ronan,1375538895 +196862,87304,cancer,1407573215 +196862,87304,death,1407573209 +196862,87304,father-son relationship,1407573120 +196862,87304,homosexuality,1407573123 +196862,87304,Melanie Laurent,1407573173 +196862,87304,slow,1407573138 +196862,87520,as bad as it gets,1446919860 +196862,87520,audience intelligence underestimated,1446919867 +196862,87520,childish,1446919886 +196862,87520,childish style,1446919874 +196862,87520,did not finish watching,1446919903 +196862,87520,Rosie Huntington-Whiteley,1446919823 +196862,87520,silly,1446919877 +196862,88129,Bloody,1447867412 +196862,88129,boring,1447867446 +196862,88129,Carey Mulligan,1447867607 +196862,88129,cars,1447867359 +196862,88129,Christina Hendricks,1447867402 +196862,88129,gore,1447867486 +196862,88129,nothing much,1447867463 +196862,88129,Nudity (Topless),1447867494 +196862,88129,overrated,1447867437 +196862,88129,Ron Perlman,1447867389 +196862,88129,slow,1447867369 +196862,88129,violence,1447867345 +196862,88129,violent,1447867423 +196862,88163,adultery,1420961275 +196862,88163,Emma Stone,1420967221 +196862,88163,Julianne Moore,1420961253 +196862,88163,Ryan Gosling,1420966146 +196862,88163,Steve Carell,1420966136 +196862,88179,Anne Hathaway,1392489201 +196862,88179,bad ending,1392489193 +196862,88405,Chick flick,1451737620 +196862,88405,clever dialogue,1438460238 +196862,88405,funny,1438460224 +196862,88405,Mila Kunis,1438460207 +196862,88405,New York City,1451737598 +196862,88405,Nudity (Rear),1451737611 +196862,88405,sex,1438460228 +196862,88405,Woody Harrelson,1438460209 +196862,88785,funny,1359926220 +196862,88785,Leslie Mann,1359926241 +196862,88785,Olivia Wilde,1359926232 +196862,88785,Ryan Reynolds,1359926283 +196862,89087,plot,1390678968 +196862,89087,revenge,1390678990 +196862,89087,sad,1390678946 +196862,89302,Bill Nighy,1438535749 +196862,89302,espionage,1438535779 +196862,89302,intelligence,1438535782 +196862,89302,politics,1438535777 +196862,89302,Rachel Weisz,1438535763 +196862,89840,Clive Owen,1374411548 +196862,89840,England,1374411551 +196862,89840,Jason Statham,1374411553 +196862,89840,Oman,1374411558 +196862,89840,Robert De Niro,1374411568 +196862,89840,SAS,1374411560 +196862,89840,Yvonne Strahovski,1374411564 +196862,90738,CIA,1447017025 +196862,90738,Double agent,1447016983 +196862,90738,espionage,1447016980 +196862,90738,Richard Gere,1447017004 +196862,91079,Felicity Jones,1407387538 +196862,91079,relationships,1407387598 +196862,92008,bad acting,1439035914 +196862,92008,bad soundtrack,1439035932 +196862,92008,main character:woman,1439035922 +196862,92008,spy on the run,1439035948 +196862,92509,Rachel McAdams,1407341636 +196862,92509,romantic,1407341642 +196862,92509,surprisingly good,1407341671 +196862,93805,alternate history,1388692620 +196862,93805,parody,1388692610 +196862,94266,chick flick,1388584915 +196862,94266,Emily Blunt,1388584829 +196862,94266,funny!,1388584834 +196862,94266,love,1388584941 +196862,94266,relationships,1368033073 +196862,94864,Charlize Theron,1387136496 +196862,94864,Michael Fassbender,1387136512 +196862,94864,plot hole,1387136517 +196862,94864,predictable,1387136475 +196862,94864,sci-fi,1387136521 +196862,95105,circus,1451314431 +196862,95105,forgettable,1451314425 +196862,95105,funny,1451314438 +196862,95309,Keira Knightley,1439146901 +196862,95309,road trip,1439146915 +196862,95309,romantic,1439147068 +196862,95309,Steve Carell,1439146903 +196862,95309,surprisingly touching,1439146909 +196862,95441,crude humor,1375469522 +196862,95441,Mark Wahlberg,1375469519 +196862,95441,Mila Kunis,1375469516 +196862,95441,not funny,1375469513 +196862,95441,vulgar,1375469561 +196862,95875,action,1368033009 +196862,95875,remake,1365868735 +196862,96496,bad acting,1388766734 +196862,96496,boring,1388766783 +196862,96496,cheesy,1388766546 +196862,96821,bittersweet,1441039521 +196862,96821,child molestation,1441039535 +196862,96821,Emma Watson,1441039514 +196862,96861,Famke Janssen,1374337403 +196862,96861,Istanbul,1374337412 +196862,96861,Liam Neeson,1374337389 +196862,96861,Maggie Grace,1374337391 +196862,96861,predictable,1374337386 +196862,97024,accident,1388768511 +196862,97024,Marion Cotillard,1388768498 +196862,97024,Nudity (Topless),1388768505 +196862,97024,sex scenes,1388768533 +196862,97304,Bechdel Test:Pass,1447707955 +196862,97304,Ben Affleck,1447707880 +196862,97304,cia,1447707884 +196862,97304,Clea DuVall,1447708112 +196862,97304,hostage,1447707893 +196862,97304,Iran,1447707877 +196862,97304,Kerry Bishe,1447708115 +196862,97304,Middle East,1447707895 +196862,97304,suspenseful,1447707875 +196862,97304,True story,1447707873 +196862,97921,dance,1367001710 +196862,97921,dark humor,1367001716 +196862,97921,football,1367001798 +196862,97921,Jennifer Lawrence,1367001753 +196862,97921,Julia Stiles,1367001706 +196862,97921,love,1367001722 +196862,97921,romance,1367001727 +196862,98296,gets worse as it goes,1421590941 +196862,98809,adventure,1439127895 +196862,98809,beautiful scenery,1439127897 +196862,98809,Bechdel Test:Fail,1439127960 +196862,98809,long,1439127951 +196862,98809,Radagast,1439127990 +196862,98809,slow,1439127957 +196862,98809,stretched out,1439127934 +196862,98809,stupid fight scenes,1439127922 +196862,98961,dramatic,1368032982 +196862,99087,Catherine Zeta-Jones,1405976685 +196862,99087,Dennis Quaid,1405976685 +196862,99087,Gerard Butler,1405976730 +196862,99087,soccer,1405976692 +196862,99087,Uma Thurman,1405976703 +196862,99112,corruption,1388733192 +196862,99112,investigation,1388733160 +196862,99112,Rosamund Pike,1388733150 +196862,99112,sniper,1388733157 +196862,99112,thriller,1388733171 +196862,100498,Bruce Willis,1377197876 +196862,100498,CIA,1377197886 +196862,100498,Russia,1377197881 +196862,101076,action,1453025422 +196862,101076,Adrianne Palicki,1453025419 +196862,101076,Bruce Willis,1453025367 +196862,101076,not enough Bruce Willis,1453025395 +196862,101076,weak story,1453026025 +196862,101362,Action,1422561608 +196862,101362,Ashley Judd,1422561524 +196862,101362,Gerard Butler,1422561451 +196862,101362,hostage,1422561588 +196862,101362,jingoism,1422561548 +196862,101362,shitty end,1422561564 +196862,101362,terrorism,1422561593 +196862,101362,White House,1422561597 +196862,101577,alien invasion,1377197802 +196862,101577,Diane Kruger,1377197787 +196862,101577,Saoirse Ronan,1377197777 +196862,101577,sci-fi,1377197815 +196862,101864,action,1399240208 +196862,101864,Andrea Riseborough,1399240199 +196862,101864,Olga Kurylenko,1399240159 +196862,101864,post-apocalyptic,1399240125 +196862,101864,space,1399240142 +196862,102072,black ops,1388836859 +196862,102072,Brussels,1388836980 +196862,102072,CIA,1388836857 +196862,102072,spy,1388836919 +196862,102125,boring,1377197703 +196862,102125,Gwyneth Paltrow,1377197686 +196862,102125,Robert Downey Jr.,1377197690 +196862,102160,Malin Akerman,1374945445 +196862,102160,spy,1374945452 +196862,102445,action,1388598318 +196862,102445,adventure,1388598401 +196862,102445,science fiction,1388598364 +196862,102445,space travel,1388598397 +196862,102481,Google,1420284395 +196862,102481,product placement,1420284232 +196862,102481,Rose Byrne,1420284140 +196862,102481,wasted potential,1420284162 +196862,102924,mob,1388851908 +196862,102924,Romania,1388851896 +196862,102941,Diane Kruger,1388757850 +196862,103228,aliens,1428248166 +196862,103228,happy ending,1428248274 +196862,103228,Idris Elba,1428248260 +196862,103228,ridiculous,1428248281 +196862,103228,Rinko Kikuchi,1428248295 +196862,103228,Ron Perlman,1428248169 +196862,103228,sci-fi,1428248290 +196862,103228,silly,1428248264 +196862,103253,Alice Braga,1453235901 +196862,103253,damsel in distress,1453235927 +196862,103253,dystopia,1453235834 +196862,103253,exo-skeleton,1453235861 +196862,103253,favela,1453236008 +196862,103253,Inequality,1453235864 +196862,103253,Jodie Foster,1453235842 +196862,103253,Matt Damon,1453235838 +196862,103253,medicine,1453235857 +196862,103253,Phasing,1453235876 +196862,103253,poverty,1453235997 +196862,103253,sci-fi,1453235853 +196862,103253,Slums,1453235887 +196862,103253,space station,1453235890 +196862,103253,visually stunning,1453235849 +196862,103384,About half way through it started turning into a live action cartoon.,1446237168 +196862,103384,Helena Bonham Carter,1446237223 +196862,103384,inconsistent tone,1446237176 +196862,103384,Johnny Depp,1446237158 +196862,103772,Japan,1420400541 +196862,103810,Bruce Willis,1398006288 +196862,103810,Mary-Louise Parker,1398006866 +196862,103810,not as good as the first,1398006868 +196862,103825,idiot hero,1375035060 +196862,103825,Johannesburg,1375035049 +196862,103825,South Africa,1375035055 +196862,103883,corruption,1453647681 +196862,103883,Denzel Washington,1453647698 +196862,103883,drugs,1453647693 +196862,103883,Mark Wahlberg,1453647701 +196862,103883,nudity (topless),1453647634 +196862,103883,Paula Patton,1453647695 +196862,103883,undercover cop,1453647776 +196862,104074,Nathan Fillion,1390072563 +196862,104211,all the best parts are in the trailer,1420294208 +196862,104211,drugs,1420294161 +196862,104211,Jason Sudeikis,1420294152 +196862,104211,Jennifer Aniston,1420294150 +196862,104243,aliens,1452964466 +196862,104243,bounty hunters,1452964488 +196862,104243,Katee Sackhoff,1452964498 +196862,104243,Nudity (Topless),1452964476 +196862,104243,sci-fi,1452964474 +196862,104243,survival,1452964480 +196862,104243,Vin Diesel,1452964468 +196862,104374,Bill Nighy,1439317109 +196862,104374,father son relationship,1439317118 +196862,104374,happiness,1439317376 +196862,104374,love,1439317129 +196862,104374,Margot Robbie,1439317370 +196862,104374,Rachel McAdams,1439317108 +196862,104879,abduction,1438633332 +196862,104879,Jake Gyllenhaal,1438633287 +196862,104879,torture,1438633302 +196862,105653,Arnold Schwarzenegger,1440942252 +196862,105653,Escape,1440942258 +196862,105653,Sylvester Stallone,1440942248 +196862,106487,Bechdel Test:Pass,1438896941 +196862,106487,dystopia,1438896898 +196862,106487,Jennifer Lawrence,1438896899 +196862,106487,strong female lead,1438896909 +196862,106487,Woody Harrelson,1438896916 +196862,106489,adventure,1440102107 +196862,106489,dragon,1440187806 +196862,106489,Evangeline Lilly,1440102118 +196862,106920,Amy Adams,1423341215 +196862,106920,artificial intelligence,1423341141 +196862,106920,bittersweet,1423341147 +196862,106920,loneliness,1423341152 +196862,106920,mustache,1423341199 +196862,106920,Scarlett Johansson,1423341270 +196862,106920,singularity,1423341238 +196862,106920,slow,1423341258 +196862,106920,trains,1423341242 +196862,107069,Afghanistan,1451494706 +196862,107069,based on a true story,1451494702 +196862,107069,could have been better,1451494753 +196862,107069,Navy SEALs,1451494687 +196862,107069,special forces,1451494717 +196862,107737,action packed,1388777804 +196862,107737,apocalypse,1388777854 +196862,107737,blood,1388777804 +196862,107737,Christian Pitre,1388777761 +196862,107737,dystopia,1388777854 +196862,107737,gore,1388777807 +196862,107737,silly,1388777804 +196862,108188,Bad computing,1438451745 +196862,108188,Keira Knightley,1438451766 +196862,108188,stupid plot,1438451776 +196862,109487,Anne Hathaway,1438526762 +196862,109487,bad science,1438526825 +196862,109487,cliché finale,1438527065 +196862,109487,Deus Ex Machina Ending,1438526860 +196862,109487,far too long,1438526936 +196862,109487,father - child relationship,1438526844 +196862,109487,Jessica Chastain,1438526878 +196862,109487,long,1438526972 +196862,109487,looong movie,1438527091 +196862,109487,love,1438526847 +196862,109487,Michael Caine,1438526770 +196862,109487,plot holes,1438526814 +196862,109487,pretentious,1438527104 +196862,109487,relativity,1438526753 +196862,109487,sentimental,1438526768 +196862,109487,space,1438526748 +196862,109487,visually appealing,1438526850 +196862,109487,wasted potential,1438526832 +196862,110102,Cobie Smulders,1443426541 +196862,110102,Nazis,1443426462 +196862,110102,Scarlett Johansson,1443426450 +196862,110102,strong woman,1443426471 +196862,110102,watch the credits,1443426477 +196862,110882,dialogue driven,1432498219 +196862,110882,driving,1432498223 +196862,110882,gripping,1432498232 +196862,110882,one man show,1432498227 +196862,110882,responsible,1432498235 +196862,110882,Tom Hardy,1432498214 +196862,110882,unique,1432498210 +196862,111360,bad science,1450535884 +196862,111360,dumb science,1450535921 +196862,111360,fast paced action,1450535893 +196862,111360,funny,1450535909 +196862,111360,Scarlett Johansson,1450535875 +196862,111360,strong female lead,1450535878 +196862,111360,woman lead,1450535926 +196862,111362,Ellen Page,1438979137 +196862,111362,Jennifer Lawrence,1438978995 +196862,111362,Michael Fassbender,1438979118 +196862,112171,action,1445279263 +196862,112171,Chloë Grace Moretz,1445279276 +196862,112171,Denzel Washington,1445279256 +196862,112171,revenge,1445279260 +196862,112852,Chris Pratt,1442772853 +196862,112852,Karen Gillan,1442773337 +196862,112852,too long,1442772934 +196862,112852,underdeveloped characters,1442772890 +196862,112852,vasted potential,1442772899 +196862,112940,counterespionage,1446062784 +196862,112940,Nina Hoss,1446062758 +196862,112940,Rachel McAdams,1446062756 +196862,112940,rivalry,1446062688 +196862,113080,multilingual,1451024996 +196862,113080,Sharon Stone,1451024999 +196862,113080,Thailand,1451024937 +196862,114060,Noomi Rapace,1431972048 +196862,114060,organized crime,1431972036 +196862,114060,subtlety,1431972077 +196862,114060,thriller,1431972044 +196862,114060,Tom Hardy,1431972051 +196862,114662,Bradley Cooper,1439407301 +196862,114662,gritty,1439407326 +196862,114662,Iraq,1439407312 +196862,114662,Sienna Miller,1439407356 +196862,114662,sniper,1439407310 +196862,114662,War,1439407302 +196862,114762,Analeigh Tipton,1452541712 +196862,114762,boring,1452541736 +196862,114762,Miles Teller,1452541714 +196862,114935,time travel,1451511793 +196862,114935,transsexual,1451511894 +196862,115149,assassin,1453216945 +196862,115149,bad fight scenes,1453216996 +196862,115149,Bridget Regan,1453217037 +196862,115149,dark hero,1453216974 +196862,115149,Hitman,1453216929 +196862,115149,mafia,1453217080 +196862,115149,mob,1453217094 +196862,115149,nightclub,1453216963 +196862,115149,organized crime,1453216943 +196862,115149,puppy,1453217011 +196862,115149,Revenge,1453216922 +196862,115149,russian mafia,1453216931 +196862,115149,Willem Dafoe,1453216939 +196862,115713,AI,1453062317 +196862,115713,Alicia Vikander,1453062485 +196862,115713,artificial intelligence,1453062309 +196862,115713,consciousness,1453062340 +196862,115713,Contemplative,1453062349 +196862,115713,futuristic,1453062332 +196862,115713,isolation,1453062342 +196862,115713,limited cast,1453062534 +196862,115713,Norway,1453062553 +196862,115713,Nudity,1453062356 +196862,115713,Nudity (Full Frontal - Notable),1453062358 +196862,115713,sci-fi,1453062311 +196862,115713,slow,1453062462 +196862,115713,Sonoya Mizuno,1453062523 +196862,115713,turing test,1453062336 +196862,116299,Mercedes Mason,1453038098 +196862,116299,middle east,1453038109 +196862,116299,Santorini,1453038146 +196862,116797,Alan Turing,1448226420 +196862,116797,Benedict Cumberbatch,1448226416 +196862,116797,code breaking,1448226433 +196862,116797,Computers,1448226426 +196862,116797,cryptography,1448226423 +196862,116797,genius,1448226439 +196862,116797,historical inaccuracy,1448303009 +196862,116797,history,1448226435 +196862,116797,homosexuality,1448226443 +196862,116797,Keira Knightley,1448226446 +196862,116797,World War II,1448226428 +196862,116823,bad ass female lead,1439058930 +196862,116823,Bechdel Test:Pass,1439059016 +196862,116823,dystopia,1439058918 +196862,116823,flat characters,1439059003 +196862,116823,Jennifer Lawrence,1439058920 +196862,116823,much worse than preceding movies,1439059001 +196862,117529,Bryce Dallas Howard,1437933391 +196862,117529,dinosaurs,1437933360 +196862,118696,agent Smith,1440187506 +196862,118696,Cate Blanchett,1440187558 +196862,118696,dragon,1440187572 +196862,118696,Evangeline Lilly,1440187555 +196862,118696,Ian McKellen,1440187553 +196862,118696,Silly creatures,1440187550 +196862,118706,dark,1446152614 +196862,118706,Jude Law,1446152540 +196862,118706,submarine,1446152526 +196862,118706,suspense,1446152604 +196862,118900,closure,1433059125 +196862,118900,coping,1433059082 +196862,118900,female protagonist,1433059138 +196862,118900,hiking,1433059079 +196862,118900,nudity (topless),1433059153 +196862,120637,Bechdel Test:Fail,1446979347 +196862,120637,China,1446979470 +196862,120637,command line,1446979535 +196862,120637,hackers,1446979366 +196862,120637,idiotic CGI,1446979361 +196862,120637,Tang Wei,1446979433 +196862,120637,wasted potential,1446979517 +196862,120799,Arnold Schwarzenegger,1443970011 +196862,120799,Emilia Clarke,1443970008 +196862,120799,Jai Courtney,1443970106 +196862,120799,Jason Clarke,1443970104 +196862,122892,artificial intelligence,1441657600 +196862,122892,childish,1441657617 +196862,122892,Cobie Smulders,1441657713 +196862,122892,Scarlett Johansson,1441657673 +196862,122892,silly,1441657608 +196862,127315,surprisingly good,1444322755 +196862,134246,Milla Jovovich,1443987137 +196862,134246,Pierce Brosnan,1443987160 +196862,136020,Bechtel test:fail,1450039513 +196862,136020,Christoph Waltz,1450039525 +196862,136020,james bond,1450039516 +196862,136020,Léa Seydoux,1450039750 +196862,136020,Monica Bellucci,1450039559 +196862,138713,airplanes!,1443977377 +196862,138713,Marsha Hunt,1443977507 +196862,138713,Natalie Wood,1443977504 +196875,260,good vs evil,1437788369 +196875,260,imaginative,1437788418 +196903,92259,comedy,1442762363 +196903,92259,French,1442762347 +196903,92259,friendship,1442762376 +196921,8199,Japan,1206593089 +196924,296,cool,1428359604 +196924,296,quirky,1428359604 +196924,296,stylized,1428359604 +196953,922,classic,1137987543 +196953,922,old graet,1137987543 +196964,3317,coming of age,1351279384 +196964,3317,sexuality,1351279389 +196993,2355,animation,1141101838 +196993,2355,Disney,1141101829 +196993,2355,Pixar,1141101836 +197020,1136,british comedy,1340401978 +197020,92259,Personality change,1352189966 +197036,112552,jazz,1424487178 +197036,112552,music,1424487178 +197036,112552,tense,1424487178 +197049,260,war,1439521042 +197049,8368,for kids,1439521126 +197049,8368,interesting,1439521132 +197062,110,cavalry charge,1206536408 +197062,151,rape,1206566291 +197062,1204,cavalry charge,1206536380 +197062,2334,jihad,1206537278 +197062,3513,jihad,1206537155 +197062,7143,cavalry charge,1206557627 +197062,7153,cavalry charge,1206536309 +197062,7307,rape,1206566166 +197062,7814,cavalry charge,1206536042 +197062,26131,jihad,1206537240 +197062,26155,jihad,1206537364 +197062,33162,cavalry charge,1206538230 +197062,33162,jihad,1206537085 +197062,51662,rape,1206566365 +197062,54736,jihad,1206537066 +197062,56171,zeppelin,1206538286 +197117,260,dráma,1431318303 +197117,260,sci-fi,1431318210 +197135,3578,Realistic,1320877752 +197148,6350,adventure,1444481779 +197148,6350,fantasy,1444481785 +197148,89745,superhero,1444482814 +197148,106696,animation,1444481649 +197148,106696,feminist,1444481683 +197148,106696,magic,1444481656 +197148,142450,animation,1444481923 +197148,142450,magic,1444482000 +197148,142450,yuri,1444481908 +197174,260,action,1440290044 +197174,260,classic,1440290047 +197174,260,sci-fi,1440290038 +197174,260,space adventure,1440290057 +197179,4262,Al Pacino,1438608624 +197179,4262,organized crime,1438608625 +197185,318,prison,1431407102 +197185,3147,Stephen King,1431407130 +197192,260,classic action adventure,1443236000 +197192,260,creative sci-fi,1443236039 +197197,8784,Great Soundtrack,1430022555 +197197,8784,Natalie Portman,1430022567 +197197,8784,Zach Braff,1430022560 +197197,48516,thriller,1430022441 +197197,58559,Heath Ledger as the Joker,1430022384 +197197,107707,overacting,1430022829 +197197,107707,special effects,1430022869 +197215,653,SFF,1142531255 +197215,1101,guy flick,1142531241 +197275,47937,badass girl,1252298073 +197275,47937,dark humor,1252298073 +197277,2268,courtroom drama,1319777010 +197277,3246,Islam,1319777049 +197277,3246,true story,1319777064 +197285,377,Keanu Reeves,1164213596 +197356,48516,oscar (best directing),1445293971 +197356,63082,India,1445294040 +197356,63082,Oscar (Best Music - Original Song),1445294007 +197358,29,weird,1368539897 +197358,50,great acting,1368539926 +197358,70,cult classic,1368539951 +197358,150,dramatic,1368539839 +197358,232,relationships,1368539880 +197358,318,great acting,1368539926 +197358,593,great acting,1368539926 +197358,804,relationships,1368539880 +197358,858,great acting,1368539926 +197358,1175,weird,1368539897 +197358,1199,visually appealing,1368539913 +197358,1199,weird,1368539897 +197358,1307,relationships,1368539880 +197358,1527,visually appealing,1368539913 +197358,1552,action,1368539862 +197358,1608,action,1368539862 +197358,1617,great acting,1368539926 +197358,1722,action,1368539862 +197358,2076,weird,1368539898 +197358,2195,comedy,1368032865 +197358,2262,relationships,1368539880 +197358,2858,great acting,1368539926 +197358,3006,dramatic,1368539839 +197358,3070,cult classic,1368539951 +197358,3646,comedy,1368032865 +197358,3740,cult classic,1368539951 +197358,4405,criterion,1368032909 +197358,4878,weird,1368539897 +197358,5673,weird,1368539897 +197358,5942,comedy,1368032865 +197358,5992,Nicole Kidman,1144811756 +197358,5995,dramatic,1368539839 +197358,8981,relationships,1368539880 +197358,25774,criterion,1368032909 +197358,27815,mentor,1368032845 +197358,34530,comedy,1368032865 +197358,37729,visually appealing,1368539913 +197358,90746,storytelling,1368032888 +197358,98809,storytelling,1368032888 +197358,112290,12 years in the making,1436411171 +197358,112290,Ambitious,1436411186 +197358,112290,Richard Linklater,1436411179 +197358,122886,Daisy Ridley,1451089441 +197358,122886,Plot Recycling,1451089370 +197358,122886,Star Wars,1451089426 +197380,2028,Oscar (Best Directing),1390434450 +197380,2028,war,1390434438 +197400,1967,seen more than once,1286100589 +197400,41566,Fantasy World,1286088646 +197400,76293,Common,1286100379 +197400,78105,fantasy,1286100399 +197428,260,EPIC,1439792321 +197428,260,Science Fiction,1439792308 +197445,260,amazing,1437811633 +197445,260,brilliant,1437811642 +197445,260,fun,1437811655 +197446,589,robots,1155151762 +197446,2640,superhero,1155151742 +197446,5349,super-hero,1155151748 +197497,1232,beautifully filmed,1347073134 +197497,1232,boring,1347073137 +197497,1232,philosophical,1347073134 +197497,1232,psychological,1347073134 +197497,1232,slow paced,1347073137 +197497,1967,Coming-of-Age,1171085903 +197497,2194,historically inaccurate,1171088258 +197497,4095,apartheid,1347562768 +197497,4553,bad acting,1347072819 +197497,4553,bad dialogue,1347072819 +197497,4553,campy,1347072823 +197497,4553,cheesy,1347072819 +197497,4553,clever,1347072823 +197497,4553,conspiracy,1347072823 +197497,4553,gratuitous violence,1347072819 +197497,4553,satire,1347072829 +197497,4553,subversive,1347072823 +197497,6620,comic books,1189913077 +197497,6620,r. crumb,1189913010 +197497,91529,Anne hathaw,1347072027 +197497,91529,batman,1347072027 +197497,91529,batman's voice,1347072092 +197497,91529,Catwoman,1347072027 +197497,91529,hard to hear lines,1347072092 +197497,91529,loud,1347072092 +197497,91529,plot holes,1347072092 +197497,91529,political commentary,1347072096 +197497,91529,satisfying ending,1347072027 +197499,85394,Good use of 3-D,1325026974 +197501,94864,aliens,1420320867 +197501,94864,sci-fi,1420320867 +197501,94864,space,1420320867 +197501,117885,cat,1422663732 +197501,117885,christmas,1422663732 +197501,117885,grumpy,1422663732 +197503,4973,relaxing,1441185642 +197503,5218,fun,1441185483 +197503,59315,inspiring,1441185690 +197534,32,dystopia,1306470662 +197534,32,post-apocalyptic,1306470660 +197534,47,atmospheric,1307153235 +197534,47,Brad Pitt,1307153252 +197534,47,disturbing,1307153256 +197534,47,Kevin Spacey,1307153246 +197534,47,mystery,1307153241 +197534,47,powerful ending,1307153230 +197534,47,psychological,1307153243 +197534,47,serial killer,1307153238 +197534,208,better than everybody thinks,1306470792 +197534,208,dystopia,1306470795 +197534,208,post apocalypse,1306470789 +197534,208,post-apocalyptic,1306470787 +197534,628,atmospheric,1307383722 +197534,628,Edward Norton,1307383726 +197534,628,psychology,1307383750 +197534,2571,atmospheric,1306470710 +197534,2571,dystopia,1306470706 +197534,2571,post-apocalyptic,1306470702 +197534,2571,sci-fi,1306470697 +197534,2579,not linear,1322456128 +197534,2579,psychology,1322456133 +197534,2712,Nicole Kidman,1306470477 +197534,4022,SURVIVAL,1306471261 +197534,4308,Nicole Kidman,1306470466 +197534,4370,depressing,1306901583 +197534,4370,emotional,1306901587 +197534,4720,Nicole Kidman,1306470458 +197534,6063,disturbing,1318347202 +197534,6063,fucked up,1318347197 +197534,6063,odd,1318347211 +197534,6063,psychological,1318347209 +197534,6502,Post apocalyptic,1306470603 +197534,6502,post-apocalyptic,1306901066 +197534,6502,survival,1306470612 +197534,6502,suspense,1306470609 +197534,6502,thriller,1306470607 +197534,7162,Nicole Kidman,1306470524 +197534,7162,Oscar (Best Supporting Actress),1306470535 +197534,7162,Renee Zellweger,1306470527 +197534,7371,Nicole Kidman,1306470397 +197534,7572,depressing,1351539304 +197534,7572,slow,1351539299 +197534,8950,atmospheric,1307153273 +197534,8950,Christian Bale,1307153271 +197534,8950,great acting,1307153290 +197534,8950,powerful ending,1307153275 +197534,8950,psychological,1307153278 +197534,8950,psychology,1307153283 +197534,8950,twist ending,1307153280 +197534,27005,Hugo Weaving,1346729841 +197534,27005,psychological,1346729843 +197534,34048,terrible ending,1325565600 +197534,44191,dystopia,1306471196 +197534,44191,Natalie Portman,1306471198 +197534,48774,apocalypse,1306471210 +197534,48774,atmospheric,1306471208 +197534,48774,dystopia,1306471212 +197534,48774,survival,1306471216 +197534,51709,terrible dubbing,1349750032 +197534,53000,not as good as the first,1306470977 +197534,53000,original good;sequel sucked,1306470983 +197534,53000,post-apocalyptic,1306470979 +197534,53000,Weak sequel,1306470995 +197534,55232,post-apocalyptic,1306470825 +197534,56145,apocalypse,1306471277 +197534,56145,atmospheric,1306471279 +197534,56145,Survival,1306471273 +197534,56174,depressing,1306470647 +197534,56174,Post apocalyptic,1306470637 +197534,56174,survival,1306470642 +197534,62376,adventure,1306470848 +197534,62376,atmosphere,1306470855 +197534,62376,post-apocalyptic,1306470857 +197534,63072,dystopia,1306470669 +197534,63072,post-apocalyptic,1306470680 +197534,63072,survival,1306470687 +197534,63072,Viggo Mortensen,1306470682 +197534,71135,post-apocalyptic,1306470745 +197534,71135,sci-fi,1306470748 +197534,71135,space travel,1306470755 +197534,71464,bad ending,1306470211 +197534,71464,Bleak,1306470214 +197534,71464,Boring,1306470221 +197534,71464,slow,1306470223 +197534,73321,Bible,1306470733 +197534,73321,Christianity,1306470735 +197534,73321,dystopia,1306470727 +197534,73321,post-apocalyptic,1306470719 +197534,73321,slow paced,1306470723 +197534,81731,Architecture,1307952750 +197534,81731,Historical Fiction,1307952722 +197534,81731,medieval,1307952731 +197534,81847,singing,1309479667 +197534,86548,Robert Pattinson,1350261958 +197534,86548,Shallow romance,1350261949 +197534,86548,worse than the book,1350261940 +197534,89039,creepy,1360822664 +197534,89039,not sci-fi,1360822620 +197534,89039,romance,1360822661 +197534,89039,stupid characters,1360822629 +197534,89039,writing,1360822635 +197534,89470,apocalypse,1330846424 +197534,89470,disease,1330846427 +197534,89470,plausible,1330846399 +197534,89470,Realistic,1330846415 +197534,89470,virus,1330846396 +197561,296,dark comedy,1431309555 +197561,296,original,1431309555 +197561,296,suspense,1431309555 +197561,1234,slow paced,1431310165 +197561,81591,dance,1431309978 +197561,81591,dark,1431309973 +197561,81591,sex,1431309982 +197561,81591,surreal,1431309961 +197561,108190,action,1431310100 +197561,108190,dystopia,1431310066 +197561,108190,new society,1431310124 +197561,109487,science fiction,1431309899 +197561,109487,thought-provoking,1431309887 +197561,109487,time-travel,1431309864 +197563,105,affair,1361778163 +197563,105,Bechdel Test:Pass,1361778165 +197563,218,Mary-Louise Parker,1361777354 +197563,218,road movie,1361777363 +197563,218,Whoopi Goldberg,1361777358 +197563,345,GLBT,1333228374 +197563,345,lgbt,1333228376 +197563,345,musical,1333228381 +197563,345,road movie,1333228386 +197563,345,road trip,1333228384 +197563,500,Robin Williams,1333228892 +197563,500,San Francisco,1333228894 +197563,608,crime,1360309641 +197563,608,dark comedy,1360309644 +197563,608,kidnapping,1360309646 +197563,608,murder,1360309648 +197563,608,quirky,1360309650 +197563,608,violence,1360309652 +197563,778,black comedy,1333228629 +197563,778,dark comedy,1333228631 +197563,778,great soundtrack,1333228634 +197563,778,social commentary,1333228636 +197563,848,maine,1335664408 +197563,848,small town,1335664378 +197563,1192,lgbt,1364791912 +197563,1192,queer,1364791914 +197563,1192,transgender,1364791916 +197563,1271,aging,1333130452 +197563,1271,based on a book,1333130427 +197563,1271,bechdel test: pass,1361777437 +197563,1271,funny,1333130468 +197563,1271,heartwarming,1333130434 +197563,1271,humorous,1333130436 +197563,1271,lesbian,1333130440 +197563,1271,nostalgic,1333130421 +197563,1271,poignant,1333130455 +197563,1271,racism,1333130441 +197563,1271,self discovery,1333130444 +197563,1271,tear jerker,1333130461 +197563,1271,train,1333130446 +197563,1446,musicians,1333226719 +197563,1446,Soviet Union,1333226724 +197563,1704,Ben Affleck,1336399941 +197563,1704,college,1336399928 +197563,1704,elliott smith,1336399893 +197563,1704,Great Screenplays,1336399909 +197563,1704,intelligent,1336399920 +197563,1704,mathematics,1336399924 +197563,1704,Matt Damon,1336399938 +197563,1704,Robin Williams,1336399935 +197563,1704,university,1336399901 +197563,2174,Bechdel Test:Pass,1333236989 +197563,2174,black comedy,1333236991 +197563,2174,ghosts/afterlife,1333236998 +197563,2291,dreamlike,1336788426 +197563,2291,fairy tale,1336788424 +197563,2291,Johnny Depp,1336788431 +197563,2291,quirky,1336788437 +197563,2291,surreal,1336788409 +197563,2291,Tim Burton,1336788433 +197563,2291,Winona Ryder,1336788435 +197563,2739,Bechdel Test:Pass,1361777977 +197563,2739,incest,1361777970 +197563,2739,rape,1361777972 +197563,3421,beer,1333228495 +197563,3421,fraternity,1333228497 +197563,3421,National Lampoon,1333228492 +197563,3421,Overrated,1333228500 +197563,3545,musical,1333237542 +197563,3617,light,1333227626 +197563,3617,National Lampoon,1333227617 +197563,3617,Teen movie,1333227619 +197563,3786,Bechdel Test:Pass,1333237349 +197563,3786,campy,1333237354 +197563,3786,lesbian,1333237372 +197563,3786,queer,1333237359 +197563,3786,satire,1333237368 +197563,3914,Gay,1361777569 +197563,4389,Bechdel Test:Pass,1333237061 +197563,4389,boarding school,1333237082 +197563,4389,depressing,1333237072 +197563,4389,Friendship,1333237066 +197563,4389,lesbian,1333237064 +197563,4389,suicide,1333237069 +197563,4447,better than expected,1333236872 +197563,4967,war,1333228770 +197563,4973,beautifully filmed,1333228154 +197563,4973,great soundtrack,1333228162 +197563,4973,idealism,1333228164 +197563,4973,Paris,1333228160 +197563,4973,quirky,1333228156 +197563,4973,whimsical,1333228158 +197563,5896,Bechdel Test:Pass,1333227576 +197563,5896,canadian,1333227585 +197563,5896,nova scotia,1333227582 +197563,5945,adapted from:book,1336874948 +197563,5945,Jack Nicholson,1336874951 +197563,5945,Kathy Bates,1336874944 +197563,5945,road trip,1336874954 +197563,6292,Bechdel Test:Pass,1333227789 +197563,6345,ensemble cast,1336185357 +197563,6345,theatre,1336185370 +197563,6345,tony awards,1336185390 +197563,6370,ensemble cast,1333227117 +197563,6765,Sandra Oh,1361778550 +197563,6765,Strong Women,1361778552 +197563,6769,canadian,1333228222 +197563,6769,gay,1333228227 +197563,6769,mary walsh,1333228226 +197563,6769,montreal,1333228231 +197563,6769,quirky,1333228219 +197563,6954,family gatherings,1333227530 +197563,6954,intellectual,1333227532 +197563,6954,quebec,1333227522 +197563,7299,CULTURAL DIVERSITY,1333227364 +197563,7299,interesting cultural conflict via French viewpoint,1333227357 +197563,7299,UNLIKELY FRIENDSHIPS,1333227359 +197563,7323,communism,1333226436 +197563,7323,East Germany,1333226439 +197563,7323,family bonds,1333226442 +197563,7323,family relationships,1333226444 +197563,7323,great soundtrack,1333226447 +197563,7323,socialism,1333226448 +197563,7323,The fall of the Berlin wall,1333226451 +197563,8014,character driven,1333227275 +197563,8014,great photograpy,1333227291 +197563,8973,sexual abuse,1333237690 +197563,27162,roommates,1333228356 +197563,30848,alcoholism,1336185542 +197563,30848,John Travolta,1336185512 +197563,30848,Louisiana,1336400022 +197563,30848,New Orleans,1336185551 +197563,30848,Scarlett Johansson,1336185515 +197563,40870,ECCENTRIC FAMILIES,1333226972 +197563,40870,gay,1333226949 +197563,40870,Gay Lead Character,1333226951 +197563,40870,glbt,1333226953 +197563,40870,great soundtrack,1333226977 +197563,40870,homosexuality,1333226956 +197563,40870,millenial foreign comedies to see,1333226959 +197563,40870,MISFITS AND OUTSIDERS,1333226963 +197563,40870,queer,1333226965 +197563,40870,quirky,1333226968 +197563,44694,incest,1333228791 +197563,44694,sexual abuse,1333228793 +197563,44709,Bechdel Test:Pass,1336768919 +197563,44709,feel-good,1336768931 +197563,44709,predictable,1336768941 +197563,44709,sentimental,1336768923 +197563,44709,underdog,1336768929 +197563,45720,based on a book,1333236977 +197563,45720,Bechdel Test:Pass,1333236961 +197563,45720,fashion,1333236967 +197563,45720,New York,1333236969 +197563,46723,multiple storylines,1333599832 +197563,46723,social commentary,1333599835 +197563,46723,visually stunning,1333599838 +197563,49910,based on a book,1333237481 +197563,49910,based on a true story,1333237484 +197563,49910,cliche,1333237465 +197563,49910,Holocaust,1333237473 +197563,49910,pretentious,1333237457 +197563,49910,teacher,1333237477 +197563,50685,friendship,1361778336 +197563,50685,infidelity,1361778345 +197563,50685,Keri Russell,1361778325 +197563,50685,pregnancy,1361778330 +197563,52579,addiction,1336874853 +197563,52579,art,1336874850 +197563,52579,biopic,1337604218 +197563,52579,hard to follow,1336874866 +197563,52579,historical,1336874880 +197563,52579,Paris,1337604212 +197563,52579,singers,1336874884 +197563,52579,too long,1336874861 +197563,54185,boring,1333599770 +197563,55442,animation,1337604279 +197563,55442,Bechdel test: pass,1337604263 +197563,55442,social commentary,1337604281 +197563,55451,adapted from:book,1336185432 +197563,55451,Bechdel Test:Pass,1336185413 +197563,55451,lesbian,1336185418 +197563,55451,MOTHERS AND DAUGHTERS,1336185446 +197563,55451,realistic,1336185440 +197563,55555,cinematography,1333599883 +197563,55555,complex characters,1333599885 +197563,55555,ensemble cast,1333599871 +197563,55555,interwoven lives,1333599874 +197563,55555,multiple storylines,1333599876 +197563,55844,lesbian,1333228694 +197563,56607,child rape,1336449493 +197563,60397,musical,1343716192 +197563,60397,ridiculous,1343716187 +197563,60857,experimental,1333227890 +197563,63876,civil rights,1333227933 +197563,63876,gay,1333227935 +197563,63876,Gus Van Sant,1333227928 +197563,63876,San Francisco,1333227939 +197563,64229,Adrien Brody,1356496741 +197563,64229,blues,1356496765 +197563,64229,drugs,1356496771 +197563,64229,history,1356496755 +197563,64229,music,1356496750 +197563,64229,race,1356496777 +197563,64229,violence,1356496780 +197563,70102,british columbia,1333350950 +197563,70102,canada,1333351092 +197563,70102,canadiana,1333350932 +197563,74275,black comedy,1333227202 +197563,74275,character development,1333227206 +197563,74275,Ewan McGregor,1333227196 +197563,74275,gay,1333227198 +197563,74275,Gay Lead Character,1333227194 +197563,74275,homosexual,1333227200 +197563,74275,queer,1333227192 +197563,77264,acting,1337603954 +197563,77264,ballet,1337603940 +197563,77264,Bechdel Test: pass,1337603913 +197563,77264,Emma Watson,1337603961 +197563,77264,London,1337603930 +197563,77264,orphans,1337603923 +197563,77264,performing arts,1337603947 +197563,80693,based on a book,1359170826 +197563,80693,coming of age,1359170841 +197563,80693,dramedy,1359170848 +197563,80693,quirky,1359170852 +197563,80693,underdeveloped female character,1359170833 +197563,81591,mental illness,1343716093 +197563,84532,based on a play,1379294321 +197563,84532,Bechdel Test:Pass,1379294311 +197563,84532,dance,1379294426 +197563,84532,ensemble cast,1379295685 +197563,84532,feminism,1379295207 +197563,84532,intense,1379294336 +197563,84532,sexual violence,1379294394 +197563,84532,triggering,1379294327 +197563,84615,adultery,1356474978 +197563,84615,business,1356474976 +197563,84615,crack use,1356474974 +197563,86190,action,1355975203 +197563,86190,assassin,1355975206 +197563,86190,beautiful cinematography,1355975186 +197563,86190,Bechdel Test:Pass,1355975183 +197563,86190,character development,1355975174 +197563,86190,cinematography,1355975212 +197563,86190,Finland,1355975214 +197563,86190,Germany,1355975217 +197563,86190,Morocco,1355975219 +197563,86190,strong female lead,1355975178 +197563,86190,thriller,1355975222 +197563,86882,one-dimensional characters,1334629422 +197563,86882,Paris,1334629206 +197563,86882,poorly written dialogue,1334629436 +197563,86882,quirky,1334629208 +197563,86882,time travel,1334629223 +197563,86882,Woody Allen,1334629177 +197563,87304,believable,1334629394 +197563,87304,Ewan McGregor,1334629400 +197563,87304,great acting,1334629398 +197563,87304,homosexuality,1334629396 +197563,94070,Bechdel Test:Pass,1364541032 +197563,94070,gay,1364538509 +197563,94070,India,1364537592 +197563,94070,Old age,1364541021 +197563,94070,travel,1364538456 +197563,97834,adventure,1357976745 +197563,97834,community,1357976753 +197563,97834,documentary,1357976748 +197563,97834,ordinary people,1357976764 +197563,97834,real life,1357976760 +197563,97834,road trip,1357976768 +197563,97834,shallow,1357976790 +197563,97834,travel,1357976771 +197564,4226,christopher nolan,1432271615 +197564,4226,cryptic,1432271615 +197564,4226,interesting,1432271615 +197618,48394,lush,1168302565 +197642,41571,incredible makeup,1148578223 +197642,45447,bullshit history,1148583060 +197660,5618,anime,1137481472 +197670,608,Minnesota,1248544998 +197670,608,Minnesota accents,1248545008 +197670,1197,anti-death penalty,1250454526 +197670,1197,Cult classic,1250454539 +197670,1197,feel-good,1250454533 +197670,1197,funny,1250454547 +197670,1197,quirky,1250454530 +197670,1197,romance,1250454544 +197670,1197,whimsical,1250454550 +197670,1203,classic,1275561642 +197670,1203,preachy dialogue,1275561632 +197670,1209,Ennio Morricone,1251556643 +197670,1209,plotless,1251556654 +197670,1209,stylized,1251556662 +197670,1209,sweeping,1251556664 +197670,1215,Cult classic,1177195221 +197670,1243,quirky,1254362015 +197670,27741,Character study,1180065842 +197670,31804,adaptation in name only,1241998388 +197670,31804,makes no sense,1241998399 +197670,34542,bears,1217988434 +197670,34542,documentary,1217988438 +197670,53318,art student as protagonist,1275360637 +197670,53318,british,1275360846 +197670,53318,imagination,1275360634 +197670,53318,male gaze,1275360745 +197670,53318,Nudity (Full Frontal),1275360864 +197670,53318,stopping time,1275360852 +197670,53318,surrealism,1275360624 +197670,60684,misanthropic,1236374306 +197670,68319,anti-death penalty,1250454471 +197670,68319,character motivations,1243280092 +197670,68319,inconsistent with other movies,1250454485 +197670,68791,A-10s,1243206131 +197670,68791,new composer,1243205925 +197670,69521,civilians at war,1246051973 +197670,69521,heavy metal,1248544948 +197670,69521,Iraq,1246051958 +197670,69521,Metal,1246051973 +197670,69521,musicians,1246052112 +197670,69521,narrator,1246051910 +197670,70286,afrikaner mercenaries getting killed,1250300603 +197670,70286,intelligent sci-fi,1250300532 +197670,70286,justice,1250300532 +197670,70286,mengele-types getting killed,1250300907 +197670,70286,redemption,1250300532 +197670,79132,complicated,1281282548 +197670,79132,Ellen Page,1281282541 +197670,79132,mindfuck,1281282544 +197670,79132,surreal,1281282546 +197670,79132,visually appealing,1281282556 +197680,260,drama,1441646088 +197680,260,sci-fi,1441646065 +197689,5881,cinematography,1241042062 +197689,5881,sci-fi,1241042055 +197689,5881,space,1241042070 +197689,45447,adventure,1241041980 +197689,45447,Ian McKellen,1241041948 +197689,45447,Jean Reno,1241041987 +197689,45447,religion,1241041955 +197689,45447,Tom Hanks,1241041982 +197691,260,good effects,1430512357 +197691,260,good for kids,1430512369 +197691,480,dinosaurs,1430513626 +197691,480,sci-fi,1430513626 +197691,480,very good for kids and adults,1430513626 +197691,92259,based on a true story,1430513703 +197691,92259,life in projects,1430513684 +197698,136020,ok,1448195783 +197719,260,classic,1438877819 +197719,260,corny,1438877824 +197720,44665,predictable,1418078429 +197720,45672,Adam Sandler,1415296207 +197720,65642,too predictable,1415294976 +197747,4993,great soundtrack,1447449650 +197747,68157,Daniel Brühl,1447449502 +197750,86504,original,1448888012 +197750,86504,thought provoking,1448888033 +197750,98491,creative,1448887950 +197751,1200,This is the archetypal 'good Sci-Fi action' movie. It simply doesn't get better than this.,1253603397 +197751,61240,Beautiful,1253603440 +197751,61240,emotionally jarring,1253603440 +197751,61240,sweet,1253603440 +197751,61240,touching,1253603440 +197751,68237,Amazing debut,1253603470 +197783,3717,cars,1137268739 +197783,6378,cars,1137268720 +197783,6893,cars,1137268729 +197783,7089,malena,1139083075 +197783,8016,cars,1137268797 +197783,8604,cars,1137268868 +197783,8605,cars,1137268884 +197835,778,dark comedy,1378791913 +197835,778,drugs,1378791921 +197835,778,notable soundtrack,1378791927 +197835,778,social commentary,1378791907 +197835,1270,alternate reality,1378644788 +197835,1270,classic,1378644794 +197835,1270,future,1378644797 +197835,1270,futuristic,1378644799 +197835,1270,imdb top 250,1378644804 +197835,1270,sci-fi,1378644807 +197835,1270,time loop,1378644811 +197835,1270,time travel,1378644814 +197835,6214,controversial,1379415663 +197835,6214,hard to watch,1379415659 +197835,6214,Monica Bellucci,1379415666 +197835,6214,nonlinear,1379415675 +197835,6214,Nudity (Full Frontal),1379415650 +197835,6214,rape,1379415653 +197835,6214,vengeance,1379415656 +197835,7254,alternate reality,1378655784 +197835,7254,Ashton Kutcher,1378655805 +197835,7254,mathematics,1378655812 +197835,7254,psychology,1378655802 +197835,7254,time travel,1378655795 +197835,7254,twist ending,1378655800 +197835,30803,Kim Ki-duk,1378882935 +197835,30803,UNLIKELY FRIENDSHIPS,1378882937 +197835,30803,very little dialogue,1378882940 +197835,47491,black comedy,1378792002 +197835,47491,cynical,1378792005 +197835,47491,Mads Mikkelsen,1378792013 +197835,47491,Neo-Nazis,1378792027 +197835,47491,racism,1378792031 +197835,47491,sad but good,1378792016 +197835,47491,thought-provoking,1378792019 +197835,47491,trees,1378792034 +197848,130490,miles teller,1427667157 +197848,130490,shailene woodley,1427667157 +197848,130490,theo james,1427667157 +197909,260,sci-fi,1441580623 +197909,260,sith,1441580634 +197916,260,adventure,1441462960 +197916,260,classic sci-fi,1441462939 +197916,260,fantasy,1441462957 +197916,260,Star Wars,1441462944 +197916,293,assassin,1441463074 +197916,293,Jean Reno,1441463069 +197916,293,Luc Besson,1441463077 +197916,293,Natalie Portman,1441463071 +197916,318,Morgan Freeman,1441462864 +197916,318,prison escape,1441462866 +197916,318,Stephen King,1441462882 +197916,589,artificial intelligence,1441463107 +197916,589,sci-fi,1441463109 +197916,1036,action,1441463204 +197916,1198,action,1441463004 +197916,1198,adventure,1441462994 +197916,1198,treasure hunt,1441463001 +197916,2571,computers,1441463042 +197916,2571,cyberpunk,1441463030 +197916,2571,dystopia,1441463027 +197916,2571,post-apocalyptic,1441463035 +197916,2571,sci-fi,1441463044 +197916,2571,virtual reality,1441463031 +197916,4370,Bittersweet,1441463270 +197916,4370,fairy tale,1441463273 +197916,7153,fantasy,1441463160 +197916,7153,fantasy world,1441463173 +197916,7153,Tolkien,1441463166 +197916,56174,post-apocalyptic,1441463317 +197916,56174,zombies,1441463319 +197920,260,classic,1430659513 +197920,260,Science Fiction,1430659524 +197958,296,dark comedy,1346923956 +197958,296,nonlinear,1346923960 +197958,318,based on a book,1346923970 +197958,318,prison,1346923967 +197958,318,twist ending,1346923973 +197958,593,Oscar (Best Picture),1346923982 +197958,593,psychology,1346923985 +197958,593,serial killer,1346923988 +197958,1028,animation,1346924207 +197958,1028,Oscar (Best Actress),1346924213 +197958,1028,surreal,1346924210 +197958,3156,dystopia,1346923943 +197958,3156,Robin Williams,1346923945 +197958,3156,sci-fi,1346923940 +197958,4022,psychological,1346924136 +197958,4022,stranded,1346924130 +197958,4022,Tom Hanks,1346924138 +197958,6502,post-apocalyptic,1346924007 +197958,6502,sci-fi,1346924004 +197958,6502,zombies,1346924001 +197958,7293,Adam Sandler,1346923937 +197958,7293,Comedy,1346923934 +197958,7293,Romance,1346923930 +197958,76251,action,1346924171 +197958,76251,comic book,1346924169 +197958,76251,superhero,1346924167 +197958,87306,aliens,1346924502 +197958,87306,sci-fi,1346924499 +197970,858,Al Pacino,1440960062 +197970,858,classic,1440960053 +197970,858,italian mafia,1440960045 +197970,858,masterpiece,1440960081 +197970,64957,Brad Pitt,1440960007 +197970,64957,drama,1440960016 +197983,110,classic,1437329009 +197983,110,great performances,1437329009 +197983,110,mel gibson,1437329009 +197983,139153,tamil,1437328492 +197983,139157,surya,1437329111 +197983,139157,worst movie,1437329106 +198025,72641,based on a true story,1435707821 +198025,72641,inspirational,1435707821 +198025,72641,touching story,1435707821 +198031,260,Sci-fi,1436797918 +198031,260,space adventure,1436797923 +198037,42723,Disappointing,1136762861 +198072,4011,banter,1240056191 +198072,8641,frat pack,1240056018 +198072,30803,silent,1240055885 +198084,493,gangs,1246223363 +198084,493,Los Angeles,1246223343 +198084,493,south-central,1246223351 +198084,904,james stewart,1246223657 +198084,904,long,1246223618 +198084,904,muder,1246223666 +198084,904,mystery,1246223663 +198084,904,slow,1246223635 +198084,904,suspense,1246223669 +198084,904,voyeurism,1246223651 +198084,1252,dark,1246223552 +198084,1252,film noir,1246223580 +198084,1252,jack nicholson,1246223544 +198084,1252,moody,1246223555 +198084,1252,murder,1246223561 +198084,1252,private eyes,1246223548 +198084,1635,1970s,1246222878 +198084,1635,ambivalence,1246222905 +198084,1635,atmospheric,1246222857 +198084,1635,dysfunctional family,1246222894 +198084,1635,heavy,1246222941 +198084,1635,sadness,1246222923 +198084,1635,suburbia,1246222882 +198084,2511,Altman,1246223447 +198084,2511,cynical,1246223476 +198084,2511,elliott gould,1246223432 +198084,2511,los angeles,1246223452 +198084,2511,private eyes,1246223461 +198084,2511,sardonic,1246223469 +198084,3741,crime,1246222989 +198138,374,fun,1187958866 +198138,374,kids,1187958866 +198138,374,warm,1187958866 +198138,519,future,1187958877 +198138,519,nothing special,1187958877 +198138,2116,atmospheric,1187959500 +198138,2409,ego,1187958846 +198138,2409,fight,1187958846 +198138,2409,HEROIC MISSION,1187958846 +198138,2881,creative plot,1187959483 +198138,2953,funny,1187958750 +198138,2953,kids,1187958749 +198138,2953,warm,1187958749 +198138,3826,action,1187958693 +198138,3826,nothing special,1187958710 +198138,3826,politics,1187958693 +198138,4262,Amazing Cinematography,1187958558 +198138,4262,atmospheric,1187958558 +198138,4262,mafia,1187958558 +198138,4262,seen more than once,1187958558 +198138,4848,Complex story,1187958489 +198138,5679,disturbing,1187958345 +198138,6016,documentary,1187958801 +198138,6016,gangs,1187958801 +198138,6016,revolution,1187958802 +198138,6016,teenager,1187958802 +198138,6016,urban,1187958801 +198138,8117,anti-hero,1187959591 +198138,8117,HEROIC MISSION,1187959573 +198156,112552,inspirational,1430146036 +198156,112552,jazz,1430146036 +198156,112552,music,1430146036 +198227,50,keyser sose,1204511782 +198227,356,sappy,1206672410 +198227,59315,Marvel,1212629864 +198227,59315,setting:Afghanistan,1212629866 +198227,59725,Nudity (Topless),1213023378 +198227,61352,Don Cheadle,1221128690 +198304,50,storytelling,1439561995 +198304,318,excellent script,1439562093 +198304,858,great acting,1439562029 +198314,342,Dani2006,1157952700 +198314,2357,Brazil,1155093834 +198314,2959,dani2007,1193121638 +198314,4878,Dani2006,1157952563 +198314,6016,Brazil,1155093860 +198314,7297,Dani2006,1157952626 +198314,7382,dani2008,1217306758 +198314,7773,Dani2006,1157952605 +198314,8376,Dani2006,1157952714 +198314,33896,Dani2006,1170915214 +198314,34072,Dani2006,1157952570 +198314,34542,Dani2006,1157952621 +198314,36527,Dani2006,1157952706 +198314,38061,Dani2006,1155094397 +198314,38886,Dani2006,1155094384 +198314,39183,Dani2006,1157952617 +198314,40278,dani2005,1185856776 +198314,40583,Dani2006,1157952584 +198314,41716,Dani2006,1157952650 +198314,42718,Dani2006,1157952365 +198314,43460,Dani2006,1157952638 +198314,44191,Dani2006,1157952680 +198314,44195,Dani2006,1157952590 +198314,44199,Dani2006,1157952689 +198314,44709,Dani2006,1157952658 +198314,45186,Dani2006,1157952695 +198314,45447,dani2007,1175997917 +198314,45499,Dani2006,1157952632 +198314,46530,Dani2006,1155093924 +198314,46578,Dani2006,1157952453 +198314,46948,Dani2006,1155093941 +198314,46976,dani2007,1180305959 +198314,47629,dani2007,1178064165 +198314,48082,dani2007,1175997953 +198314,48774,dani2007,1175998111 +198314,49272,dani2007,1175998002 +198314,49312,dani2007,1196048667 +198314,49347,dani2007,1184471938 +198314,51084,dani2007,1179884409 +198314,51662,dani2007,1175997937 +198314,52885,dani2007,1199070572 +198314,53000,dani2007,1179021306 +198314,53322,dani2007,1186953242 +198314,53894,dani2007,1183432265 +198314,55276,dani_2008,1208631760 +198314,55820,dani2007,1196048709 +198384,50851,miami,1232408545 +198403,45521,callifornia,1453012791 +198403,45521,los angeles,1453012769 +198403,45521,skateboarding,1453012761 +198419,94,girl blossoming,1272835090 +198419,94,Natalie Portman,1272835064 +198419,293,girl blossomi,1272835158 +198419,293,Natalie Portman,1272835150 +198419,293,Portman,1272835469 +198419,648,U2 song,1214747680 +198419,5903,Christian Bale,1272836064 +198419,5903,gun fu,1272836046 +198419,8784,Natalie Portman,1272835216 +198419,8784,soundtrack,1272835232 +198419,65982,cool premise,1272303326 +198419,65982,not much character development,1272303322 +198419,68486,male bonding,1272302792 +198419,68486,not intense enough,1272302794 +198419,68954,last act of the movie,1272303679 +198419,68954,old man's story,1272303682 +198419,69481,no backstory,1272303557 +198419,69481,somewhat realistic,1272303541 +198419,69757,feels to fake,1272303030 +198419,69757,inspiring,1272303013 +198419,69757,romantic at heart,1272302994 +198419,71535,more back-story needed,1272302683 +198419,71535,off beat,1272302662 +198419,71910,Kelly Hu,1272304245 +198419,71910,plot development,1272304272 +198419,72489,ninjas,1272303399 +198419,72489,not intense enough,1272303366 +198419,72489,poor action scenes,1272303376 +198419,72489,poor lighting,1272303382 +198419,72998,fully realized world,1272303458 +198419,72998,simplistic message,1272303471 +198419,72998,special effects,1272303442 +198419,73017,predictable,1272302729 +198419,73929,cool premise,1272304106 +198419,73929,underdeveloped,1272304103 +198419,76093,dragons,1272302498 +198419,76093,hero not sympathetic enough,1272302488 +198419,76175,can't root for the charcters,1272302902 +198419,76175,inferior to original,1272302886 +198419,76175,minimal plot development,1272302875 +198419,76175,monsters,1272302916 +198419,76175,sucky 3d,1272302856 +198419,76251,hit girl,1272302583 +198419,76251,not enough hit girl back-story,1272302612 +198421,318,Stephen King,1209493749 +198450,58559,Christopher Nolan,1451226053 +198450,99114,Leonardo DiCaprio,1451226038 +198461,318,hope,1435085016 +198461,318,inspiring,1435085016 +198461,318,memorable characters,1435085016 +198461,1196,father-son relationship,1435085035 +198461,1374,Friendship,1435084910 +198461,1374,Star Trek,1435084944 +198492,260,adventure,1432078604 +198492,260,Science Fiction,1432078597 +198506,1625,acting,1340233707 +198506,1625,unbelievable,1340233681 +198506,1625,unrealistic,1340233695 +198506,88129,soundtrack,1340233788 +198529,69644,brave,1251965838 +198529,69644,emotion,1251965849 +198529,69644,scenery,1251965838 +198567,260,"action, scifi",1435955954 +198567,260,classic sci-fi,1435955940 +198567,356,comedy,1435956236 +198567,356,drama,1435956236 +198567,356,social commentary,1435956236 +198573,4011,gypsy accent,1164052967 +198573,7438,Tarantino,1164052972 +198573,87425,army,1427042538 +198573,87425,comedy,1427042538 +198573,87425,finnish,1427042538 +198631,2600,90s sci-fi,1451928640 +198631,2600,matrix,1451928624 +198631,2600,virtual reality,1451928620 +198631,4015,stupid,1451928604 +198647,3471,UFOS,1166048485 +198648,112552,biographical,1429375397 +198648,112552,hate,1429375397 +198648,112552,music,1429375397 +198665,954,want to see again,1187481784 +198665,2478,dude comedy,1187481639 +198665,2951,spaghetti western,1187481714 +198665,3263,sports competition,1187481795 +198665,3916,sports competition,1187481593 +198665,6373,religion:Xian,1187481682 +198681,260,classic,1442581049 +198681,260,trilogy,1442580955 +198695,260,good versus evil,1443625625 +198695,260,space adventure,1443625644 +198743,282,drama,1152311207 +198743,1210,sci-fi,1152311240 +198743,2001,action,1152311217 +198755,2571,Action,1277927108 +198755,2571,cult film,1277927114 +198755,2571,fantasy,1277927104 +198755,2571,Keanu Reeves,1277927124 +198755,2571,martial arts,1277927088 +198755,2571,post apocalyptic,1277927118 +198755,2571,sci-fi,1277927121 +198788,34,Animal,1208242033 +198819,318,prison,1262443253 +198819,597,hooker with a heart of gold,1262443294 +198819,1192,documentary,1262444396 +198819,1192,lgbt,1262444384 +198819,1192,prostitution,1262444419 +198819,1192,queer,1262444389 +198819,1192,vogue-ing,1262444409 +198819,1274,anime,1262453758 +198819,1617,homoerotic subtext,1368242588 +198819,1617,noir,1368242573 +198819,1617,police corruption,1402490681 +198819,1845,noir,1402748561 +198819,1845,sherlock holmes parody,1402748554 +198819,1845,Underrated,1402748583 +198819,2294,easily confused with other movie(s) (A Bug's Life),1262443950 +198819,2294,Woody Allen,1262443973 +198819,2321,Gay Character,1262443752 +198819,2321,heartwarming,1262443785 +198819,2355,easily confused with other movie(s) (Antz),1262443477 +198819,2617,b movie,1262443693 +198819,2657,musical,1262443853 +198819,2959,twist ending,1262443204 +198819,3054,anime,1262453748 +198819,3799,anime,1262453678 +198819,3880,documentary,1262396672 +198819,3880,father daughter relationship,1262396684 +198819,3880,folk music,1262396676 +198819,3887,childhood friends,1262396123 +198819,3887,flashbacks,1262396163 +198819,3887,friendship,1262396153 +198819,3887,Gay Character,1262396137 +198819,3887,mental illness,1262396144 +198819,3945,anime,1262453659 +198819,3996,kung fu,1262443375 +198819,3996,romance,1262443358 +198819,4193,circus,1262396629 +198819,4193,comedy,1262396647 +198819,4193,coming of age,1262396620 +198819,4193,fairy tale,1262396625 +198819,4193,funny,1262396650 +198819,4193,love story,1262396637 +198819,4193,musical,1262396609 +198819,4241,anime,1262453669 +198819,4562,sherlock holmes parody,1402748628 +198819,4884,documentary,1262395943 +198819,4884,israel,1262395964 +198819,4884,Jewish,1262395922 +198819,4884,lgbt,1262444524 +198819,4884,orthodox,1262395934 +198819,4884,queer,1262444520 +198819,5068,remake,1262396822 +198819,5085,boxing,1262396776 +198819,5085,gypsy,1262396783 +198819,5085,opera,1262396750 +198819,5085,World War II,1262396771 +198819,5159,environmental,1262444370 +198819,5159,fairy,1262444352 +198819,5159,musical,1262444363 +198819,5260,absurd,1262396194 +198819,5260,cuba,1262396267 +198819,5260,fairy tale,1262396233 +198819,5260,fantasy,1262396199 +198819,5260,orphanage,1262396275 +198819,5260,orphans,1262396285 +198819,5260,quirky,1262396212 +198819,5260,roller skates,1262396259 +198819,5260,surreal,1262396238 +198819,5260,whimsical,1262396246 +198819,5299,stereotypes,1262443907 +198819,5672,anime,1262453732 +198819,6371,anime,1262453740 +198819,6874,rape,1262443571 +198819,6874,stereotypes,1262443605 +198819,6874,violent,1262443583 +198819,7888,comedy,1262396841 +198819,7888,musical,1262396836 +198819,8580,fairy tale,1262444143 +198819,8580,fairy tales,1262444165 +198819,8580,musical,1262444148 +198819,8811,anime,1262453724 +198819,26403,hobbit,1262396586 +198819,26403,musical,1262396593 +198819,26463,anime,1262453444 +198819,26479,comedy of manners,1262395882 +198819,26479,musical,1262395882 +198819,26479,opretta,1262395882 +198819,26479,pirates,1262395882 +198819,26701,anime,1262454239 +198819,26903,anime,1262454249 +198819,26925,bestiality,1262396412 +198819,26925,cannibalism,1262396405 +198819,26925,comedy,1262396466 +198819,26925,musical,1262396417 +198819,26925,parody,1262396422 +198819,26925,trial,1262396443 +198819,26925,western,1262396431 +198819,27351,horror,1262395994 +198819,27351,spiral,1262395994 +198819,30867,cult classic,1262395695 +198819,30867,friendship,1262395660 +198819,30867,friendship between girls,1262395660 +198819,30867,gothic lolita,1262395625 +198819,30867,yankee,1262395678 +198819,31628,drama,1262396043 +198819,31628,japan,1262396043 +198819,38061,noir,1402490757 +198819,38061,parody,1402490762 +198819,40337,gentle comedy,1262445813 +198819,40337,houseguest,1262445851 +198819,40337,israel,1262445767 +198819,40337,Israeli,1262445828 +198819,40337,Jewish,1262445774 +198819,40337,past life,1262445805 +198819,40337,Sukkot,1262445784 +198819,47117,b movie,1262395576 +198819,47117,cult classic,1262395585 +198819,47117,western,1262395596 +198819,48780,rivalry,1262395812 +198819,48780,untrustworthy narrator,1262395831 +198819,51255,buddy movie,1262395749 +198819,52443,anime,1262453427 +198819,55167,anime,1262454273 +198819,55269,Bechdel Test:Fail,1364941938 +198819,55269,colonialism,1364941913 +198819,55269,overly stylised,1364941981 +198819,55269,white priviledge,1364941902 +198819,56167,bollywood,1410570958 +198819,56167,dancing,1410570981 +198819,56167,in jokes,1410570968 +198819,56719,bildungsroman,1262396362 +198819,56719,coming of age,1262396354 +198819,56719,feel good,1262396392 +198819,56719,piano,1262396368 +198819,56719,prodigy,1262396345 +198819,60609,cat and mouse,1262396499 +198819,60609,crime,1262396487 +198819,60609,thriller,1262396492 +198819,62336,anime,1262444041 +198819,62336,cult film,1262444059 +198819,62336,mecha,1262444071 +198819,62336,missing brother,1262444129 +198819,62336,rock and roll,1262444068 +198819,62336,romance,1262444079 +198819,62336,surreal,1262444050 +198819,66335,anime,1262454030 +198819,69213,anime,1262453435 +198819,70535,anime,1262453323 +198819,71707,anime,1262453330 +198819,72209,based on anime,1262453982 +198819,73017,homoerotic subtext,1368242826 +198819,73017,Sherlock Holmes,1368242841 +198819,73365,ghosts,1368242092 +198819,73365,Indonesia,1368242085 +198819,73365,Journalist,1368242108 +198819,73365,murder,1368242065 +198819,73365,MURDER INVESTIGATIONS,1368242076 +198819,73365,narcolepsy,1368242126 +198819,73365,noir,1368242060 +198819,73365,noir thriller,1368242055 +198819,73365,reporter,1368242115 +198819,73365,twist ending,1368242638 +198819,74061,abortion,1267044154 +198819,74061,comedy,1322364194 +198819,74061,cult classic,1267044183 +198819,74061,cult film,1267044183 +198819,74061,cult horror,1267044197 +198819,74061,ghost,1267044053 +198819,74061,haunting,1267044229 +198819,74061,horror,1267044043 +198819,74061,parody,1267044154 +198819,74061,revenge,1267044073 +198819,74061,Thailand,1368242260 +198819,87232,funny,1368242726 +198819,87232,homoerotic subtext,1368242709 +198819,87232,nazi hunting,1368242692 +198819,87232,superhero,1368242742 +198819,89745,comedy,1368242764 +198819,89745,great dialogue,1368242777 +198819,89745,superhero,1368242758 +198819,103372,buddy comedy,1402490207 +198819,103372,buddy cops,1402490274 +198819,103372,cop movie,1402490223 +198819,103372,funny,1402490437 +198819,103372,police,1402490452 +198819,103372,subgenre:cop buddies,1402490540 +198819,116937,film noir,1416150885 +198819,116937,Mike Hammer,1416150793 +198819,116937,noir,1416150883 +198822,3114,Pixar,1365274138 +198830,296,guns,1423856786 +198830,296,mafia,1423856786 +198830,296,quentin tarantino,1423856786 +198830,296,uma thurman,1423856786 +198830,318,friendship,1435875208 +198830,318,plot twist,1435875208 +198830,318,prison,1435875208 +198870,37386,yeah but damn is she hot,1144772225 +198881,91529,action,1425787043 +198881,91529,suspense,1425787043 +198881,91529,thriller,1425787043 +198887,260,classic sci fi,1443990318 +198887,514,biting,1444589721 +198887,514,confrontational,1444589706 +198887,514,hilarious,1444589702 +198887,514,Kevin Spacey,1444589709 +198887,589,artificial intelligence,1444000177 +198887,589,original plot,1444000198 +198887,589,sci-fi,1444000172 +198887,589,stylized,1444000194 +198887,589,violence,1444000181 +198887,954,Heartwarming,1448657626 +198887,1200,female hero,1444000930 +198887,1200,strong femal lead,1444000925 +198887,1271,Mary-Louise Parker,1444000086 +198887,1271,unlikely friendships,1444000060 +198887,1586,military,1443998650 +198887,3081,horror,1443998700 +198887,3081,Johnny Depp,1443998687 +198887,3081,Mystery,1443998704 +198887,3081,stylized,1443998694 +198887,3081,Tim Burton,1443998685 +198887,4036,film within a film,1444438290 +198887,4036,john malkovich,1444438302 +198887,4135,bullying,1444438500 +198887,4135,immature,1444438474 +198887,4135,vulgar language,1444438486 +198887,5219,Milla Jovovich,1443998280 +198887,5219,zombies,1443998290 +198887,6704,high school,1444476827 +198887,6952,asylum,1444435065 +198887,8861,Milla Jovovich,1443998318 +198887,8861,Nudity (Topless),1443998324 +198887,50440,Killer Creature,1444437988 +198887,50440,killer crocodile,1444437992 +198887,60471,creature feature,1444434775 +198887,65651,amy acker,1444437573 +198887,65651,boring,1444437551 +198887,65651,dragon,1444437566 +198887,65651,predictable,1444437558 +198887,65651,terrible cgi,1444437562 +198887,67356,asylum,1444438526 +198887,67356,zombies,1444438533 +198887,72998,aliens,1444588741 +198887,72998,beautiful scenery,1444588731 +198887,72998,James Cameron,1444588745 +198887,72998,Killed Michelle Rodriguez,1444588772 +198887,72998,Sigourney Weaver,1444588734 +198887,72998,visually stunning,1444588739 +198887,79599,gore,1444477758 +198887,79599,quotable,1444477756 +198887,93475,atmospheric,1444434311 +198887,95595,muddled,1445794163 +198887,95595,suspense,1445794171 +198887,96281,Clever,1444437865 +198887,96281,stop motion,1444437862 +198887,96281,zombies,1444437867 +198887,97957,Bloody,1451439135 +198887,97957,Muddled,1451439125 +198887,97957,Slow,1451439117 +198887,102991,confusing,1444438326 +198887,102991,drama,1444438346 +198887,102991,horror,1444438335 +198887,102991,music,1444438330 +198887,102991,sound design,1444438333 +198887,103596,B-movie,1444476668 +198887,103596,sharks,1444476674 +198887,103596,so bad that it's good,1444476683 +198887,103596,trash,1444476670 +198887,104457,funny,1444438432 +198887,104457,horror,1444438437 +198887,104457,strong female character,1444438445 +198887,104457,twist,1444438435 +198887,104457,violent,1444438434 +198887,109197,creature feature,1444928719 +198887,109197,german,1444928728 +198887,109197,sci fi,1444928713 +198887,109848,beautiful photography,1444438148 +198887,109848,confusing,1444438135 +198887,109848,dark,1444438151 +198887,109848,little dialogue,1444438127 +198887,109848,Scarlett Johansson,1444438137 +198887,109848,slow,1444438140 +198887,110426,action,1444436935 +198887,110426,gina carano,1444436933 +198887,110426,mixed martial arts,1444436924 +198887,110426,mma,1444436929 +198887,110426,strong female character,1444436931 +198887,114464,boring,1444437594 +198887,114464,serial killer,1444437606 +198887,114464,too long,1444437593 +198887,114464,violent,1444437611 +198887,115149,Action,1444437493 +198887,115149,assassin,1444437487 +198887,115149,Revenge,1444437484 +198887,116413,friendship,1444476768 +198887,117107,dark comedy,1444476625 +198887,117107,Vigilante,1444476632 +198887,118997,anna kendrick,1444437767 +198887,118997,comedic timing,1444437769 +198887,121583,boring,1444438592 +198887,121583,hearing voices,1444438600 +198887,121583,intruder,1444438598 +198887,121583,psycho thriller,1444438595 +198887,121583,slow,1444438608 +198887,125914,comedy,1444476728 +198887,125914,johnny depp,1444476740 +198887,126575,action,1444437665 +198887,126575,over the top,1444437644 +198887,126575,salma hayek,1444437659 +198887,126575,violent,1444437662 +198887,128594,transgender,1446428648 +198887,130686,deconstruction,1453573196 +198887,130686,movie magic,1453573204 +198887,134246,female lead,1448690939 +198887,134246,framed for crimes,1448690921 +198887,134246,Milla Jovovich,1448690917 +198887,140711,Kristen Stewart,1450367933 +198887,143874,fantasy,1444437088 +198887,143874,foreign,1444437075 +198887,143874,horror,1444437128 +198887,143874,japanese,1444437124 +198887,143874,suicide,1444437117 +198887,143874,thriller,1444437122 +198887,143876,complicated family,1444437418 +198887,143876,drama,1444437402 +198887,143876,lesbian,1444437426 +198887,143876,relationship problems,1444437433 +198887,143878,bad script,1444477195 +198887,143878,c movie,1444477187 +198887,143878,slow pace,1444477200 +198887,143880,action,1444477690 +198887,143880,ction,1444477670 +198887,143880,family,1444477654 +198887,143880,hostages,1444477665 +198887,143880,survival,1444477696 +198887,143880,taken hostage,1444477702 +198887,151503,gory,1453507997 +198887,151503,korean,1453507986 +198887,151503,thriller,1453507989 +198893,590,much overrated,1197413619 +198893,58295,obscene,1224360913 +198893,58998,obscene,1224358993 +198893,60126,car crash,1227334385 +198893,66665,gross,1260028716 +198893,66665,offensive,1260028717 +198893,66665,unfunny,1260028717 +198895,858,MAFIA LIFE,1432537976 +198895,858,organized crime,1432537987 +198895,3578,ancient Rome,1432537890 +198895,3578,heroism,1432537868 +198931,110,classic,1139454688 +198931,296,Tarantino,1139454597 +198931,356,drama,1139454640 +198931,858,classic,1139455456 +198931,1101,action,1139454973 +198931,1721,predictable,1139455629 +198931,2541,baby,1139455018 +198931,3717,cars,1139455602 +198931,4262,bloody,1139455425 +198931,6874,Tarantino,1139456864 +198931,7315,dumb but funny,1139457111 +198931,7438,Tarantino,1139456871 +198941,56171,anti religion,1359131924 +198943,2594,slow starter,1143546648 +198943,2594,thrilling end,1143546648 +198943,6281,nicely minimalistic,1143546721 +198943,6281,though slow and predictable,1143546721 +198949,4369,action,1432875781 +198949,4369,cars,1432875778 +198949,4975,Tom Cruise,1432875954 +198949,7451,Tina Fey,1432875839 +198949,60950,bisexual,1432875920 +198949,60950,Javier Bardem,1432875924 +198949,60950,romance,1432875917 +198949,60950,Scarlett Johansson,1432875914 +198949,65435,animation,1432875702 +198949,88129,ambient music,1432875884 +198949,88129,Los Angeles,1432875881 +198949,88129,Ryan Gosling,1432875878 +198949,88810,Emma Stone,1432875812 +198949,88810,Tearjerker,1432875807 +198949,88810,Viola Davis,1432875816 +198951,8644,american propaganda,1424170994 +198951,8644,humanist sci-fi,1424170994 +198951,8644,star power,1424170994 +198956,84621,boring,1428449844 +198956,84621,comedy,1428449844 +198956,84621,horrible acting,1428449844 +198956,84621,terror,1428449844 +198956,89356,argentina,1436505823 +198956,89356,comedy,1436505823 +198956,89356,darin,1436505823 +198995,6957,surprisingly funny,1447550566 +198995,7325,Based on a TV show,1447550608 +198995,7325,Ben Stiller,1447550614 +198995,27611,military,1447552454 +198995,27611,MILITARY LIFE,1447552447 +198995,27611,sci-fi,1447552439 +198995,37741,thought provoking,1447552383 +198995,37741,Truman Capote,1447552371 +199000,260,classic sci-fi,1431997699 +199000,260,epic adventure,1431997734 +199000,260,sci-fi,1431997691 +199005,296,classic,1427320243 +199005,296,crime,1427320243 +199005,296,dark comedy,1427320243 +199036,260,good vs evil,1442051545 +199036,260,space opera,1442051529 +199037,107,treasure,1368655818 +199037,521,noir thriller,1368655864 +199037,913,noir thriller,1368655864 +199037,1248,noir thriller,1368655864 +199037,1291,treasure,1368655818 +199037,1783,noir thriller,1368655864 +199037,2022,jesus,1368655802 +199037,2115,treasure,1368655818 +199037,2617,treasure,1368655818 +199037,2726,noir thriller,1368655864 +199037,3052,jesus,1368655802 +199037,5135,bollywood,1368655787 +199037,6539,treasure,1368655819 +199037,7013,noir thriller,1368655864 +199037,7318,jesus,1368655802 +199037,8983,Beautiful,1151939963 +199060,924,genius,1137362588 +199078,551,creepy,1264998620 +199078,551,spooky,1264998620 +199078,750,anti-war,1265095662 +199078,750,British,1265095695 +199078,750,classic,1265095744 +199078,750,cold war,1265095730 +199078,750,dark comedy,1265095721 +199078,750,funny,1265095677 +199078,750,hilarious,1265095649 +199078,750,Peter Sellers,1265095685 +199078,778,Edinburgh,1264998408 +199078,778,Scotland,1264998408 +199078,910,cross dressing,1264999924 +199078,910,Marilyn Monroe,1264999924 +199078,924,classic,1265095521 +199078,924,future,1265095595 +199078,924,futuristic,1265095514 +199078,924,Ligeti,1265095549 +199078,924,meditative,1265095531 +199078,924,music,1265095563 +199078,924,mystery,1265095544 +199078,924,philosophical,1265095503 +199078,924,Richard Strauss,1265095558 +199078,924,set design,1265095617 +199078,953,propaganda,1264998764 +199078,953,sappy,1264998764 +199078,953,sentimental,1264998764 +199078,953,soppy,1264998764 +199078,1183,sentimental,1264998694 +199078,1183,simplistic,1264998694 +199078,1212,ambivalent,1265095833 +199078,1212,Carol Reed,1265095849 +199078,1212,cinematography,1265095930 +199078,1212,classic soundtrack,1265095869 +199078,1212,Graham Greene,1265095807 +199078,1212,great cinematography,1265095945 +199078,1212,music,1265095853 +199078,1212,poignant,1265095882 +199078,1212,soundtrack,1265095864 +199078,1212,Vienna,1265095778 +199078,1212,WWII,1265095783 +199078,1247,Dustin Hoffman,1264998473 +199078,1247,Paul Simon,1264998473 +199078,1247,seduction,1264998473 +199078,1247,Simon and Garfunkel,1264998473 +199078,1391,animation,1264998979 +199078,1391,cgi,1264998979 +199078,1391,sci-fi,1264998979 +199078,1391,special effects,1264998979 +199078,1391,Tom Jones,1264998979 +199078,1673,1970s,1264998354 +199078,1673,porn industry,1264998354 +199078,1673,too long,1264998354 +199078,1729,Elmore Leonard,1264998945 +199078,1729,Samuel L Jackson,1264998945 +199078,2130,Burt Lancaster,1265532759 +199078,2130,Louis Malle,1265532735 +199078,2671,Britain,1264998883 +199078,2671,British,1264998868 +199078,2671,England,1264998883 +199078,2671,London,1264998883 +199078,2731,France,1265533035 +199078,2731,Francois Truffaut,1265533024 +199078,2731,Paris,1265533040 +199078,3160,too long,1264998669 +199078,4270,comedy,1264999087 +199078,4270,spoof,1264999087 +199078,4914,French New Wave,1265533144 +199078,4914,Jean-Luc Godard,1265533112 +199078,4914,Jean-Paul Belmondo,1265533106 +199078,4914,Paris,1265533122 +199078,5772,dialogue,1265532586 +199078,5772,Louis Malle,1265532572 +199078,6365,aimless,1265095357 +199078,6365,boring,1265095341 +199078,6365,crappy sequel,1265095346 +199078,6365,disappointing,1265095336 +199078,6773,2CV,1265439333 +199078,6773,animation,1265439378 +199078,6773,bicycling,1265439361 +199078,6773,cycling,1265439356 +199078,6773,French,1265439384 +199078,6773,mafia,1265439342 +199078,6773,mob,1265439347 +199078,6773,Tour de France,1265439351 +199078,32179,jazz,1265532302 +199078,32179,Jeanne Moreau,1265532320 +199078,32179,Louis Malle,1265532329 +199078,32179,Miles Davis,1265532293 +199078,32179,music,1265532298 +199078,39183,cowboy,1264999012 +199078,39183,gay,1264999004 +199078,39183,Gay Lead Character,1264999004 +199078,39183,homosexuality,1264999004 +199078,48738,Forest Whitaker,1265000009 +199078,48738,Idi Amin,1265000009 +199078,48738,poetic licence,1265000008 +199078,48738,Uganda,1265000009 +199078,60074,Charlize Theron,1264999728 +199078,60684,CGI,1264998552 +199078,60684,large blue man-arse,1264998552 +199078,60684,slow paced,1264998552 +199078,60684,special effects,1264998552 +199078,61132,actors and acting,1265439491 +199078,61132,funny,1265439441 +199078,61132,Hollywood,1265439519 +199078,61132,movie business,1265439511 +199078,61132,parody,1265439460 +199078,61132,Robert Downey Jr.,1265439432 +199078,61132,Tom Cruise,1265439476 +199078,61132,Vietnam War,1265439456 +199109,260,sci-fi,1440649483 +199109,260,space adventure,1440649488 +199113,1089,very violent,1292527017 +199121,2359,British,1309483196 +199121,2359,quirky,1309483193 +199136,50,complicated,1379428447 +199136,50,conspiracy,1379428450 +199136,50,Kevin Spacey,1379428443 +199136,50,organized crime,1379428476 +199136,50,Oscar (Best Supporting Actor),1379428480 +199136,50,suspense,1379428472 +199136,50,twist ending,1379428468 +199136,296,Black comedy,1379428178 +199136,296,Bruce Willis,1379428188 +199136,296,cult film,1379428205 +199136,296,nonlinear,1379428198 +199136,296,organized crime,1379428210 +199136,296,Quentin Tarantino,1379428167 +199136,296,Samuel L. Jackson,1379428171 +199136,356,inspirational,1379428252 +199136,356,psychology,1379428258 +199136,356,vietnam war,1379428262 +199136,593,Anthony Hopkins,1379428301 +199136,593,cannibalism,1379428348 +199136,593,excellent script,1379428320 +199136,593,Jodie Foster,1379428305 +199136,593,psychology,1379428307 +199136,593,serial killer,1379428330 +199136,593,suspense,1379428333 +199136,608,AFI 100 (Laughs),1379413400 +199136,608,based on a true story,1379413430 +199136,608,black comedy,1379413378 +199136,608,Coen Brothers,1379413382 +199136,608,funny,1379413420 +199136,994,brothers,1382908546 +199136,994,food,1382908550 +199136,994,immigrant,1382908578 +199136,994,italian,1382908573 +199136,994,restaurant,1382908542 +199136,1208,Oscar (Best Cinematography),1379428984 +199136,1704,excellent script,1379428626 +199136,1704,feel-good,1379428622 +199136,1704,inspirational,1379428661 +199136,1704,mathematics,1379428619 +199136,1704,psychology,1379428639 +199136,1784,Comedy,1379429504 +199136,1784,Jack Nicholson,1379429506 +199136,1784,obsessive compulsive disorder,1379429510 +199136,1784,psychology,1379429512 +199136,1784,quirky,1379429515 +199136,1921,existentialism,1379429080 +199136,1921,mathematics,1379429078 +199136,1921,psychology,1379429086 +199136,2391,dark comedy,1379428380 +199136,2391,good story line,1379428392 +199136,2391,What is Happiness?,1379428403 +199136,3160,melancholy,1379428517 +199136,3160,multiple storylines,1379428513 +199136,3160,Philip Seymour Hoffman,1379428515 +199136,3160,stylized,1379428528 +199136,3160,Tom Cruise,1379428523 +199136,3676,cult film,1379428717 +199136,3676,David Lynch,1379428732 +199136,3676,disturbing,1379428726 +199136,3676,surreal,1379428723 +199136,3949,social commentary,1379429052 +199136,3949,visually appealing,1379429049 +199136,4226,complicated,1379428685 +199136,4226,nonlinear,1379428680 +199136,4226,psychological,1379428695 +199136,4226,psychology,1379428692 +199136,4226,stylized,1379428690 +199136,6016,based on a true story,1379428858 +199136,6016,black comedy,1379428866 +199136,6016,Brazil,1379428856 +199136,6016,multiple storylines,1379428870 +199136,6016,stylized,1379428873 +199136,30707,Morgan Freeman,1379429625 +199136,30707,Oscar (Best Actress),1379429628 +199136,48516,atmospheric,1379428791 +199136,48516,corruption,1379428795 +199136,48516,Jack Nicholson,1379428779 +199136,48516,psychology,1379428803 +199136,48516,twist ending,1379428821 +199136,97921,dark humor,1379429553 +199136,97921,romance,1379429568 +199136,97921,romantic comedy,1379429581 +199145,5989,leonardo di caprio; con man,1253384010 +199147,364,Boring,1302654769 +199147,364,Musical,1302654769 +199147,364,too sad,1302654769 +199147,1298,Scary,1303253240 +199147,2485,comedy,1302655235 +199147,2485,romance,1302655238 +199147,2683,Funny,1302654711 +199147,2683,Silly,1302654711 +199147,4641,funny,1331680044 +199147,4641,interesting,1331680054 +199147,4641,something different,1331680061 +199147,58162,chick flick,1302655767 +199147,65261,Studio Ghibli,1302655741 +199147,66317,Moomins,1302656431 +199147,98604,nice,1362329923 +199147,98604,romantic,1362329917 +199147,101112,Funny,1364328636 +199147,101112,James Franco,1364328624 +199154,6370,kimppakämppä,1138473734 +199158,260,action,1433434137 +199158,260,fantasy,1433434129 +199158,260,sci fi,1433434116 +199227,7383,Poker,1149074456 +199229,318,great acting,1434585281 +199229,318,Morgan Freeman,1434585243 +199229,1721,historical,1434584579 +199229,4963,Brad Pitt,1434585059 +199229,72011,George Clooney,1434584961 +199229,79132,Leonardo DiCaprio,1434584846 +199229,79132,sci-fi,1434584866 +199229,97304,thriller,1434585792 +199229,106782,Funny,1434584712 +199229,109487,artificial intelligence,1434585434 +199229,109487,black hole,1434585428 +199236,107406,amazing,1426895078 +199236,107406,intense,1426895078 +199236,107406,post-apocalyptic,1426895078 +199241,260,classic,1430967741 +199241,260,space combat,1430967804 +199241,56367,characters,1430967998 +199241,56367,music,1430967998 +199241,56367,odd,1430967998 +199246,83613,very boring,1323122845 +199246,85360,under the bridge,1304608961 +199246,98400,Special Effects,1354083799 +199246,98400,touching,1354083843 +199246,109487,thought-provoking,1421165135 +199246,111360,dumb science,1428298699 +199246,111360,fast paced action,1428298668 +199246,111360,Scarlett Johansson,1428298686 +199246,130784,H.P. Lovecraft,1428297580 +199261,260,good vs evil,1442795938 +199261,260,space adventure,1442795930 +199276,44073,Bergman/Rossellini,1169975388 +199283,780,cheesy,1202731816 +199324,113275,food,1430098269 +199324,113275,gourmet,1430098269 +199324,113275,romantic comedy,1430098269 +199329,2571,bad acting,1374813724 +199329,58154,graphic,1374814293 +199329,64957,weird,1374813922 +199334,836,go,1189061841 +199334,837,fgfdg,1189061869 +199334,1025,ytutyki,1189061866 +199334,1091,ghkmghk,1189061865 +199334,1224,adsadzx,1189061870 +199334,1894,vbnbvn,1189061867 +199334,2046,adsad,1189061871 +199334,2384,good,1189061842 +199334,2409,uytiuyi,1189061868 +199334,2423,Tales(4),1189061799 +199334,3113,sdzd,1189061851 +199351,231,infantile,1143061929 +199351,1304,dated music but fun,1143061905 +199351,2406,too frenzied,1143061903 +199360,260,cult classic,1431292322 +199360,260,Science Fiction,1431292303 +199365,260,good science fiction,1435323693 +199365,260,Harrison Ford,1435323708 +199365,260,original plot,1435323705 +199423,2579,2rate,1196654301 +199433,7619,Oscar (Best Actress),1225148212 +199458,260,blowyourmind,1444690653 +199458,260,space adventure,1444690628 +199488,1127,aliens,1436409338 +199488,1127,sci-fi,1436409343 +199488,1200,action,1436409301 +199488,1200,aliens,1436409308 +199488,1200,horror,1436409307 +199488,1200,sci-fi,1436409310 +199488,1214,aliens,1436409277 +199488,1214,horror,1436409285 +199488,1214,sci-fi,1436409278 +199488,1690,Alien,1449549687 +199488,1690,horror,1449549846 +199488,1690,sci-fi,1449549697 +199488,1690,Sigourney Weaver,1449549689 +199488,1690,Strong Female Presence,1449549833 +199488,1690,Violent,1449549819 +199488,1690,Winona Ryder,1449549693 +199488,1732,cult classic,1436670213 +199488,1732,drugs,1436670208 +199488,2288,aliens,1436409241 +199488,2288,horror,1436409230 +199488,2288,sci-fi,1436409245 +199488,2394,christian,1436853462 +199488,2394,religion,1436853466 +199488,4366,steampunk,1437030411 +199488,4366,underwater,1437030413 +199488,4366,white savior,1436853335 +199488,4878,mental illness,1436419088 +199488,4878,plot twist,1436419090 +199488,5882,pirates,1436853430 +199488,5882,steampunk,1436853427 +199488,6536,feminist,1436853414 +199488,8950,mental illness,1437029727 +199488,8950,twist ending,1437030368 +199488,8983,action,1446077213 +199488,40732,caving,1449550145 +199488,40732,horror,1449550088 +199488,40732,strong female character,1449550121 +199488,40732,survival,1449550099 +199488,40732,violence,1449550087 +199488,41566,christian,1436409599 +199488,41566,fantasy,1436409598 +199488,41566,great soundtrack,1436409617 +199488,44191,didn't finish,1437030084 +199488,48780,twist ending,1437030330 +199488,60538,drugs,1436422404 +199488,60538,horror,1436422410 +199488,60538,plot twist,1436422408 +199488,60538,psychedelics,1437788065 +199488,68237,ai,1436409495 +199488,68237,clones,1436417869 +199488,68237,dystopia,1436409491 +199488,68237,psychological thriller,1436409509 +199488,68237,sci-fi,1436409483 +199488,70286,action,1436409466 +199488,70286,aliens,1436409431 +199488,70286,sci-fi,1436409434 +199488,70286,social commentary,1436409442 +199488,72998,aliens,1436418319 +199488,72998,colonialism,1436418416 +199488,72998,environmental,1436418316 +199488,72998,fantasy,1436418308 +199488,72998,great soundtrack,1436852451 +199488,72998,hippie goodness,1436418431 +199488,72998,racism,1436418325 +199488,72998,sci-fi,1436418307 +199488,72998,white savior,1436852554 +199488,74458,mentali illness,1437030352 +199488,74458,twist ending,1437030347 +199488,81591,abuse,1437029950 +199488,81591,body horror,1437029939 +199488,81591,drugs,1437029833 +199488,81591,horror,1437019677 +199488,81591,mental illness,1437019654 +199488,81591,queer,1437029805 +199488,81591,sexual abuse,1437029948 +199488,81591,thriller,1437029896 +199488,81591,twist ending,1437030377 +199488,84613,caving,1449550186 +199488,84613,horror,1449550178 +199488,84613,survival,1449550183 +199488,84613,thriller,1449550177 +199488,84613,underwater,1449550175 +199488,93510,drugs,1439752889 +199488,94864,aliens,1436409374 +199488,94864,horror,1436409395 +199488,94864,sci-fi,1436409376 +199488,94864,wtf,1436409398 +199488,96610,action,1436409199 +199488,96610,dystopian,1436409206 +199488,96610,time travel,1436409214 +199488,96815,found footage,1436422315 +199488,96815,horror,1436422311 +199488,101864,clones,1436417860 +199488,101864,dystopian,1436417836 +199488,101864,sci-fi,1436417834 +199488,103075,horror,1436422777 +199488,103075,political commentary,1436422781 +199488,103249,apocalyptic,1436422276 +199488,103249,horror,1436422283 +199488,103249,zombies,1436422271 +199488,103483,found footage,1436422342 +199488,103483,horror,1436422340 +199488,104944,abuse,1437105586 +199488,104944,mental illness,1437105593 +199488,104944,sexual abuse,1437105588 +199488,105869,abuse,1436670128 +199488,105869,drugs,1436670116 +199488,105869,queer,1436670151 +199488,111759,action,1436409119 +199488,111759,sci-fi,1436409110 +199488,111759,time travel,1436409104 +199488,111759,war,1436409117 +199488,112552,abuse,1437193676 +199488,112552,music,1437193672 +199488,113345,delightfully awful,1437104771 +199488,113345,Space Opera,1437104741 +199488,115713,ai,1436417772 +199488,115713,consciousness,1436669047 +199488,115713,sci-fi,1436417776 +199488,117372,found footage,1436422362 +199488,117372,gory,1437019620 +199488,117372,horror,1436422359 +199488,122882,action,1436409142 +199488,122882,adventure,1436409033 +199488,122882,beautiful,1437924332 +199488,122882,dystopian,1437924383 +199488,122882,explosions,1436409144 +199488,122882,feminist,1436409156 +199488,122882,sfc,1436409033 +199488,134368,melissa mccarthy,1436852297 +199492,260,Imperialistic Badassery,1437765665 +199492,260,Lightsabers,1437765625 +199504,260,classic sci-fi,1432928500 +199504,260,hero's journey,1432928520 +199504,356,20th century history,1432930397 +199504,356,comedy,1432930397 +199504,356,heartwarming,1432930397 +199504,61323,Coen Brothers,1432930277 +199504,61323,unpredictable,1432930226 +199504,71464,introspective,1432930188 +199504,71464,judaism,1432930155 +199508,1625,atmospheric,1379477894 +199508,1625,gamification,1379477882 +199508,1625,Michael Douglas,1379477906 +199508,1625,Mystery,1379477899 +199508,1625,surprise ending,1379477912 +199508,1625,twist ending,1379477869 +199508,1653,future,1379476424 +199508,1653,genetic engineering,1379476427 +199508,1653,genetics,1379476422 +199508,1653,space travel,1379476431 +199508,1653,thought-provoking,1379476417 +199508,1653,Uma Thurman,1379476436 +199508,2232,cult film,1379478530 +199508,2232,mindfuck,1379478523 +199508,2232,psychological,1379478526 +199508,2232,psychology,1379478528 +199508,3300,poor character development,1379475835 +199508,3300,villain as hero,1379475823 +199508,3300,Vin Diesel,1379475793 +199508,3863,alternate reality,1379476753 +199508,3863,beautiful scenery,1379476757 +199508,3863,dreams,1379476764 +199508,3863,gore,1379476749 +199508,3863,horror,1379476703 +199508,3863,Jennifer Lopez,1379476697 +199508,3863,psychological,1379476730 +199508,3863,stylized,1379476705 +199508,3863,surreal,1379476721 +199508,3863,unique,1379476761 +199508,3863,virtual reality,1379476724 +199508,3863,visually stunning,1379476726 +199508,4370,android(s)/cyborg(s),1379478754 +199508,4370,androids,1379478749 +199508,4370,artificial intelligence,1379478732 +199508,4370,robots,1379478728 +199508,4370,sci-fi,1379478742 +199508,4370,Stanley Kubrick,1379478745 +199508,4370,Steven Spielberg,1379478747 +199508,4873,alternate reality,1379478253 +199508,4873,dreams,1379478249 +199508,4873,drugs,1379478240 +199508,4873,existentialism,1379478235 +199508,4873,metaphysics,1379478221 +199508,4873,philosophy,1379478226 +199508,4873,surreal,1379478229 +199508,4873,thought-provoking,1379478230 +199508,4975,Cameron Diaz,1379475495 +199508,4975,Death,1379475505 +199508,4975,existentialism,1379475511 +199508,4975,fantasy,1379475536 +199508,4975,future,1379475531 +199508,4975,Nudity (Topless),1379475519 +199508,4975,psychology,1379475513 +199508,4975,stylized,1379475570 +199508,4975,surreal,1379475527 +199508,4975,virtual reality,1379475525 +199508,7254,alternate reality,1379476867 +199508,7254,Bittersweet,1379476928 +199508,7254,love,1379476931 +199508,7254,Mystery,1379476868 +199508,7254,psychology,1379476882 +199508,7254,romance,1379476936 +199508,7254,romantic,1379476921 +199508,7254,thought-provoking,1379476897 +199508,7254,time travel,1379476887 +199508,52328,camerawork,1379475943 +199508,52328,cinematography,1379475944 +199508,52328,dark,1379475947 +199508,52328,great soundtrack,1379475913 +199508,52328,isolation,1379475914 +199508,52328,madness,1379475916 +199508,52328,physics,1379475921 +199508,52328,psychological,1379475924 +199508,52328,psychology,1379475926 +199508,52328,sci-fi,1379475928 +199508,52328,space,1379475930 +199508,52328,spaceships,1379475931 +199508,52328,suicide,1379475932 +199508,52328,suicide attempt,1379475934 +199508,52328,unpredictable,1379475938 +199508,52328,visually stunning,1379475940 +199508,52885,alternate reality,1379478478 +199508,52885,animation,1379478482 +199508,52885,confusing,1379478465 +199508,52885,dreamlike,1379478463 +199508,52885,hallucinatory,1379478467 +199508,52885,surreal,1379478475 +199508,68237,artificial intelligence,1379476330 +199508,68237,future,1379476337 +199508,68237,great soundtrack,1379476360 +199508,68237,science,1379476348 +199508,68237,thought-provoking,1379476352 +199508,68237,twist ending,1379476353 +199508,71135,mutation,1382338309 +199508,71135,post-apocalyptic,1382338318 +199508,71135,sci-fi,1382338320 +199508,71135,space,1382338322 +199508,71135,space travel,1382338323 +199508,71135,unlikeable characters,1382338305 +199508,74458,insanity,1379477577 +199508,74458,Leonardo DiCaprio,1379477565 +199508,74458,psychological,1379477583 +199508,74458,stylized,1379477588 +199508,74458,surreal,1379477591 +199508,74458,twist ending,1379477570 +199508,81847,3D,1379798698 +199508,81847,animation,1379798704 +199508,96610,Bruce Willis,1379476452 +199508,96610,suicide,1379476483 +199508,96610,time travel,1379476473 +199508,96610,violent,1379476476 +199508,104913,cars,1380860399 +199508,104913,Ferrari,1380860409 +199508,104913,great soundtrack,1380860393 +199508,104913,interesting characters,1380860371 +199508,104913,racing,1380860401 +199508,104913,sports,1380860409 +199508,104913,true story,1380860331 +199511,1645,One of my favorites,1393458895 +199523,50,great ending,1447006272 +199523,50,Kevin Spacey,1447006264 +199523,50,mindfuck,1447006275 +199523,50,twist ending,1447006280 +199523,1227,atmospheric,1447006673 +199523,1227,Ennio Morricone,1447006670 +199523,1227,organized crime,1447006687 +199523,2959,Edward Norton,1447006245 +199523,7361,thought-provoking,1447006983 +199523,74458,Martin Scorsese,1447008303 +199545,260,George Lucas,1431927781 +199545,260,sci-fi,1431927792 +199548,7842,author:Frank Herbert,1329065710 +199548,7842,Frank Herbert,1329065722 +199548,7842,Nudity (Topless),1329065715 +199555,2329,racism,1137223504 +199555,4011,gypsy accent,1137910219 +199555,4326,civil rights,1137909590 +199555,4326,racism,1137909590 +199555,33166,challenges prejudices,1139426378 +199586,3623,mit anna!,1163004370 +199589,135887,adventure,1437744634 +199589,135887,animation,1437744634 +199589,135887,comedy,1437744634 +199645,180,karrin's favorite,1165711432 +199645,42632,#1 prediction,1155527733 +199645,54286,spy thriller,1189100273 +199686,926,Gay Fave,1169607201 +199686,926,Tony Awards,1153079604 +199686,1517,James Bond,1153079561 +199686,49824,gay fave,1169607052 +199692,1234,classic,1439157601 +199692,1234,con artists,1439157609 +199692,1234,great acting,1439157612 +199692,88810,southern US,1439158387 +199722,33004,sci-fi,1142653680 +199724,32587,violent,1185256732 +199744,470,Betamax,1143815299 +199744,2074,Japan,1143815319 +199750,85129,drana,1420272019 +199750,85129,realism,1420272019 +199750,85129,war,1420272019 +199764,27738,animation,1424280069 +199764,27738,sci-fi,1424280069 +199764,27738,short films,1424280069 +199766,125,Ben Stiller,1324817569 +199766,125,Glenn Fitzgerald,1291495958 +199766,125,Patricia Arquette,1291458936 +199766,125,Téa Leoni,1324817460 +199766,165,Bruce Willis,1326016501 +199766,165,Jeremy Irons,1326016527 +199766,165,Samuel L. Jackson,1326016501 +199766,318,Morgan Freeman,1293363444 +199766,318,Tim Robbins,1293363407 +199766,356,Robin Wright Penn,1291177822 +199766,356,Tom Hanks,1291177822 +199766,367,Jim Carrey,1323131040 +199766,784,Ben Stiller,1294428437 +199766,784,Jack Black,1294422659 +199766,784,Jim Carey,1294422659 +199766,1092,Sharon Stone,1293364142 +199766,1445,Tim Curry,1327225768 +199766,1625,michael douglas,1435495604 +199766,1784,Helen Hunt,1291177645 +199766,1784,Jack Nicholson,1291177645 +199766,2001,Mel Gibson,1318146037 +199766,2001,Patsy Kensit,1318146909 +199766,2273,Jackie Chan,1291178375 +199766,2335,Adam Sandler,1326016016 +199766,2335,Fairuza Balk,1326016016 +199766,2335,Henry Wrinkler,1326017351 +199766,2572,Heath Ledger,1429449686 +199766,2694,Rob Schneider,1324898328 +199766,3146,Amy Poehler,1323597224 +199766,3146,Arija Bareikis,1323597382 +199766,3146,Rob Schneider,1323597088 +199766,3146,William Forsythe,1323597352 +199766,3147,Michael Clarke Duncan,1293363652 +199766,3147,Tom Hanks,1293363537 +199766,3173,Al Pacino,1325933251 +199766,3173,James Woods,1325933235 +199766,3210,Jennifer Jason Leigh,1324200390 +199766,3210,Phoebe Cates,1324201447 +199766,3263,Woody Harrelson,1315142026 +199766,3624,Jackie Chan,1326795412 +199766,3624,Owen Wilson,1326795412 +199766,3968,Brendan Fraser,1317455259 +199766,3968,Elizabeth Hurley,1429206353 +199766,3988,Christine Baranski,1293272403 +199766,3988,Jim Carrey,1293271847 +199766,3988,Taylor Momsen,1293272479 +199766,4011,Brad Pitt,1329471072 +199766,4011,Jason Statham,1329471629 +199766,4018,Helen Hunt,1291496403 +199766,4018,Mel Gibson,1291496403 +199766,4246,Renee Zellweger,1256161049 +199766,4270,Rachel Weisz,1317455067 +199766,4387,Jet Li,1299231218 +199766,4890,Gwyneth Paltrow,1344767597 +199766,4890,Jack Black,1344767597 +199766,4890,Jason Alexander,1344768444 +199766,5283,Ryan Reynolds,1328169292 +199766,5283,Tara Reid,1328169292 +199766,5349,Kirsten Dunst,1429485052 +199766,5349,Tobey Maguire,1429485111 +199766,5349,Willem Dafoe,1429485198 +199766,5419,Matthew Lillard,1293273773 +199766,5445,Tom Cruise,1327313704 +199766,5669,Michael Moore,1429478189 +199766,5989,Tom Hanks,1290743610 +199766,6059,Al Pacino,1306131406 +199766,6156,Jackie Chan,1327399625 +199766,6156,Owen Wilson,1327399624 +199766,6187,Kevin Spacey,1293397195 +199766,6188,Will Ferrell,1257345391 +199766,6711,Anna Faris,1278771949 +199766,6711,Bill Murray,1278771568 +199766,6711,Giovanni Ribisi,1278771925 +199766,6711,Scarlett Johansson,1278771567 +199766,6711,Tokyo,1278771601 +199766,6936,Mary Steenburgen,1324791288 +199766,6936,Peter Dinklage,1324792049 +199766,6936,Will Ferrell,1324791288 +199766,6936,Zooey Deschanel,1324791288 +199766,6957,Bernie Mac,1324202011 +199766,6957,Billy Bob Thornton,1324202011 +199766,6957,John Ritter,1324202134 +199766,6957,Lauren Graham,1324202331 +199766,7048,Martin Lawrence,1293277135 +199766,7048,Steve Oedekerk,1316890439 +199766,7048,Tim Robbins,1293277135 +199766,7149,Dianne Keaton,1322901818 +199766,7173,Ben Stiller,1302096202 +199766,7173,Philip Seymour Hoffman,1302096202 +199766,7360,Jake Weber,1325234014 +199766,7360,Sarah Polley,1325233436 +199766,7360,Ty Burrell,1325233197 +199766,7448,Jack Black,1329646552 +199766,8622,propaganda,1429448320 +199766,8636,Kirsten Dunst,1429446694 +199766,8641,Vince Vaughn,1278770009 +199766,8641,Will Ferrell,1256161071 +199766,8784,Natalie Portman,1291497797 +199766,8784,Zach Braff,1291497797 +199766,8836,Josh Hartnett,1278772515 +199766,8836,Matthew Lillard,1278772663 +199766,8836,Rose Byrne,1278772613 +199766,8978,Tim Allen,1293274382 +199766,27685,Anne Judson-Yager,1313495447 +199766,27685,Bree Turner,1313495447 +199766,31435,James McAvoy,1339249353 +199766,31435,Romola Garai,1339246248 +199766,31435,Steven Robertson,1339249228 +199766,31696,Tilda Swinton,1294220211 +199766,32587,Quentin Tarantino,1328177096 +199766,32598,Lindsay Barrymore,1316163198 +199766,34048,Steven Spielberg,1328176964 +199766,34162,Isla Fisher,1324896594 +199766,34162,Owen Wilson,1324896595 +199766,34162,Vince Vaughn,1324896797 +199766,34162,Will Ferrell,1324896797 +199766,34319,Scarlett Johansson,1243332301 +199766,35957,Cillian Murphy,1283299683 +199766,35957,Rachel McAdams,1283299683 +199766,36517,Rachel Weisz,1323599221 +199766,36517,Ralph Fiennes,1323605206 +199766,36527,Anthony Hopkins,1306134008 +199766,36527,Gwyneth Paltrow,1306134009 +199766,38992,Al Pacino,1306132055 +199766,38992,Matthew McConaughey,1306132055 +199766,39444,Nicolas Cage,1310912632 +199766,39449,Bryan Greenberg,1295087532 +199766,39449,Meryl Streep,1295087502 +199766,39449,Uma Thurman,1295087402 +199766,40966,Johnny Depp,1315751144 +199766,44004,Sarah Jessica Parker,1429483379 +199766,44195,Aaron Eckhart,1325937102 +199766,44199,Clive Owen,1315751036 +199766,44929,Heath Ledger,1290743823 +199766,45208,Robin Williams,1328174816 +199766,45517,Owen Wilson,1328174316 +199766,45666,Jack Black,1329646292 +199766,45728,Jeff Anderson,1315058107 +199766,45728,Trevor Fehrman,1315060660 +199766,46578,Abigail Breslin,1291178331 +199766,46578,Greg Kinnear,1291178331 +199766,46578,Steve Carell,1291178331 +199766,46976,Dustin Hoffman,1335683173 +199766,46976,Emma Thompson,1335682711 +199766,46976,Maggie Gyllenhaal,1335682711 +199766,46976,Will Ferrell,1335682711 +199766,47261,Robin Williams,1327232309 +199766,47640,Jay Chandrasekhar,1349596745 +199766,47640,Nat Faxon,1349596823 +199766,47640,Ralf Moeller,1349596854 +199766,47810,Leelee Sobieski,1324112090 +199766,47810,Molly Parker,1324114275 +199766,48385,Sacha Baron Cohen,1293274943 +199766,49822,Angelina Jolie,1326536060 +199766,51255,Simon Pegg,1317542226 +199766,51575,John Travolta,1317458201 +199766,52245,Will Ferrell,1278249235 +199766,52973,Katherine Heigl,1291497197 +199766,52973,Seth Rogen,1429483207 +199766,53974,Mandy Moore,1362831163 +199766,53974,Robin Williams,1362831164 +199766,54612,Alan Alda,1316890646 +199766,54612,Kathryn Morris,1316889835 +199766,54612,Rachel Nichols,1316889926 +199766,54612,Samuel L. Jackson,1316889018 +199766,55261,Ben Stiller,1293362962 +199766,55261,Malin Akerman,1293362962 +199766,55955,Kevin Spacey,1293253351 +199766,55955,Paul Hiamatti,1293255132 +199766,55955,Vince Vaughn,1293255131 +199766,56587,Beverly Todd,1324720637 +199766,56587,Jack Nicholson,1324717887 +199766,56587,Morgan Freeman,1324717887 +199766,56633,Gerard Butler,1313842258 +199766,56633,Maria Bello,1313842258 +199766,56788,Julia Roberts,1313312324 +199766,56788,Philip Seymour Hoffman,1313312486 +199766,57526,Joseph Cross,1278773660 +199766,57669,Jordan Prentice,1324791842 +199766,58291,Martin Lawrence,1292105089 +199766,59258,Dax Sheppard,1281703122 +199766,59258,Greg Kinnear,1281703122 +199766,59258,Pregnancy,1281702816 +199766,59258,Steve Martin,1281702770 +199766,59900,Adam Sandler,1290744093 +199766,60948,Alan Rickman,1313853273 +199766,61262,Kiefer Sutherland,1325928200 +199766,66509,Adam Sandler,1362943095 +199766,66509,Eric Bana,1362942600 +199766,66509,Iris Apatow,1362942583 +199766,66509,Judd Apatow,1362942385 +199766,66509,Seth Rogen,1362943036 +199766,67193,Julia Roberts,1298710490 +199766,68749,Steve Zahn,1325494379 +199766,68843,James Corden,1311468555 +199766,69122,Ken Jeong,1315735466 +199766,69253,Renee Zellweger,1320481301 +199766,69406,Craig T. Nelson,1316337289 +199766,69406,Sandra Bullock,1316429878 +199766,69757,Zooey Deschanel,1321781719 +199766,70159,Isabelle Fuhrman,1319365954 +199766,70567,Frankie Faison,1356670068 +199766,70567,Hugh Dancy,1356669736 +199766,70567,Max Mayer,1356669669 +199766,70567,Peter Gallagher,1356669736 +199766,70567,Rose Byrne,1356669736 +199766,70695,Chace Crawford,1310296882 +199766,70695,Shannon Woodward,1310296882 +199766,74488,Alicja Bachleda,1360411862 +199766,74488,Colin Farrell,1360411862 +199766,74916,Ben Stiller,1365971053 +199766,75813,Edward Norton,1360397390 +199766,75813,Tim Blake Nelson,1360396942 +199766,81537,Zach Galifianakis,1361091774 +199766,92448,Kevin Nealon,1362944409 +199766,92448,Stephen Dorff,1362944142 +199766,95441,Mark Wahlberg,1342234572 +199766,95441,Mila Kunis,1342232220 +199766,95441,Seth MacFarlane,1342232220 +199766,105742,Anti Transparency Taint,1428159052 +199766,105742,Biased Script,1428159049 +199766,105742,Bill Condon,1428159204 +199766,105742,Conservative Tainted,1428159186 +199766,105742,INTP,1428159227 +199766,105742,Misunderstood Protagonist,1428159284 +199766,105742,Modern Hero Protagonist,1428159332 +199766,106782,Amoral,1427753913 +199766,106782,Economically Illiterate Writers,1427753739 +199766,106782,ENFP,1427753147 +199766,106782,Jonah Hill,1427753849 +199766,106782,Left-Wing Propaganda,1427753266 +199766,106782,Leonardo DiCaprio,1435495185 +199772,4180,girls in prison,1193935185 +199772,4180,spoof,1193935185 +199772,4180,sybil danning,1193935185 +199772,4180,wendy o williams,1193935185 +199772,42013,tornados,1137437793 +199772,62437,politics,1225637026 +199775,5766,the killls and the score,1319322078 +199780,282,Jodie Foster,1425272271 +199780,282,psychological,1425272287 +199780,593,Jodie Foster,1425019954 +199780,593,serial killer,1425019939 +199780,1235,Breaking The Fourth Wall,1425080451 +199780,1235,quirky,1425080445 +199780,1258,disturbing,1425019910 +199780,1258,psychological,1425019922 +199780,1258,Stephen King,1425019925 +199780,1721,chick flick,1425272219 +199780,1967,surreal,1425019889 +199780,2140,dark,1425019831 +199780,2918,1980s,1425019981 +199780,3791,classic,1425020058 +199780,3791,iconic,1425020053 +199780,4973,beautifully filmed,1425097780 +199780,4973,quirky,1425097782 +199780,4973,surreal,1425097801 +199780,4973,visually appealing,1425097792 +199780,4973,whimsical,1425097787 +199780,60069,environmental,1425080395 +199780,60069,family,1425080409 +199780,60069,quirky,1425080398 +199780,71282,vegetarians,1425249243 +199780,74789,alternate reality,1425083162 +199780,74789,Depp & Burton,1425083146 +199780,74789,Helena Bonham Carter,1425083159 +199780,74789,Johnny Depp,1425083151 +199780,74789,Tim Burton,1425083154 +199780,88810,1960s,1425249290 +199780,88810,racism,1425249284 +199780,94780,Kristen Stewart,1425083210 +199780,94959,dreamlike,1425088675 +199780,94959,quirky,1425088668 +199780,94959,Wes Anderson,1425088671 +199780,105355,fine art,1425020094 +199780,105355,homosexuality,1425020105 +199780,105355,lesbian,1425020081 +199780,105355,visually appealing,1425020095 +199780,107052,bikini kill,1425019786 +199780,107052,kathleen hanna,1425019778 +199780,107052,musicians,1425019804 +199780,107052,punk rock,1425019809 +199780,112226,French,1425019553 +199780,112226,pregnancy,1425019560 +199780,112226,teen pregnancy,1425019567 +199780,129951,documentary,1426350064 +199780,129951,emotional,1426350079 +199780,129951,Midwest,1426350055 +199780,129951,poverty,1426350034 +199780,129951,rape,1426350043 +199780,131082,documentary,1427654757 +199780,131082,Yoshitomo Nara,1427654856 +199790,260,Science Fiction,1441641635 +199790,260,Star Wars,1441641650 +199812,260,Science Fiction,1434975598 +199812,260,Star Wars,1434975590 +199816,45722,Adventure,1453818328 +199816,45722,Johnny Depp,1453818322 +199816,45722,Keira Knightley,1453818324 +199816,134130,matt damon,1453818439 +199816,134130,sci-fi,1453818432 +199816,134130,Space,1453818430 +199816,151459,Action,1453818406 +199816,151459,akshay kumar,1453818413 +199844,198,gay,1186346731 +199844,261,gay,1186346724 +199844,914,d,1186346761 +199844,1047,d,1186346756 +199844,1088,gay,1186346708 +199844,1120,d,1186346763 +199844,1249,d,1186346751 +199844,1267,d,1186346758 +199844,1343,d,1186346748 +199844,1597,gay,1186346703 +199844,1729,gay,1186346712 +199844,1747,gay,1186346735 +199844,2080,d,1186346753 +199844,2278,d,1186346771 +199844,2424,gay,1186346738 +199844,3033,gay,1186346728 +199844,3755,d,1186346766 +199844,3911,d,1186346746 +199844,4246,comedy,1186346694 +199844,7438,gay,1186346716 +199845,29,dark,1368406471 +199845,111,dark,1368406471 +199845,519,franchise,1368406506 +199845,555,ensemble cast,1368406482 +199845,913,black and white,1368406440 +199845,922,black and white,1368406440 +199845,1095,ensemble cast,1368406482 +199845,1175,dark,1368406471 +199845,1248,black and white,1368406440 +199845,1262,ensemble cast,1368406482 +199845,1287,christianity,1368406456 +199845,1302,father-son relationship,1368406498 +199845,1396,ensemble cast,1368406482 +199845,1589,ensemble cast,1368406482 +199845,1945,black and white,1368406440 +199845,2024,christianity,1368406456 +199845,2076,dark,1368406471 +199845,2501,father-son relationship,1368406498 +199845,2944,ensemble cast,1368406482 +199845,3273,franchise,1368406506 +199845,3435,black and white,1368406440 +199845,3440,franchise,1368406506 +199845,3468,black and white,1368406440 +199845,3683,dark,1368406471 +199845,4865,dark,1368406472 +199845,6537,franchise,1368406506 +199845,53121,franchise,1368406506 +199845,63113,franchise,1368406506 +199845,68358,action,1242099958 +199845,68358,adventure,1242099955 +199845,68358,Star Trek,1242099953 +199860,31658,apprenticeship,1249441035 +199860,31658,countryside,1249440958 +199860,31658,dreamlike,1249441238 +199860,31658,falling in love,1249440933 +199860,31658,fantasy,1249441232 +199860,31658,fantasy world,1249441234 +199860,31658,fire,1249440926 +199860,31658,Hayao Miyazaki,1249441222 +199860,31658,magic,1249440872 +199860,31658,moving castle,1249440922 +199860,31658,talking fire,1249440965 +199860,31658,witch,1249440907 +199869,6942,multiple storylines,1230411793 +199869,6942,Xmas theme?,1230411774 +199900,150,astronauts,1248376456 +199900,150,based on a true story,1248376462 +199900,150,NASA,1248376467 +199900,150,space program,1248376481 +199900,680,dystopia,1243886383 +199900,680,eerie,1248557107 +199900,680,new wave,1248557077 +199900,680,stylized,1243886392 +199900,714,black and white,1247588934 +199900,714,bleak,1247588904 +199900,714,dreamlike,1247588908 +199900,714,hallucinatory,1247588910 +199900,714,Jim Jarmusch,1247588914 +199900,714,Johnny Depp,1247588917 +199900,714,melancholy,1247588928 +199900,750,anti-war,1243364953 +199900,750,Atomic bomb,1243364955 +199900,750,cold war,1243364961 +199900,750,nuclear war,1243364965 +199900,778,black comedy,1243365441 +199900,778,drug abuse,1243365450 +199900,778,drugs,1243365443 +199900,778,Ewan McGregor,1243365453 +199900,920,American Civil War,1248376338 +199900,920,Civil War,1248376342 +199900,920,naive,1248376413 +199900,1080,Monty Python,1243365747 +199900,1208,anti-war,1243365120 +199900,1208,disturbing,1243365123 +199900,1208,drugs,1243365125 +199900,1208,hallucinatory,1243365136 +199900,1208,surreal,1243365129 +199900,1208,Vietnam war,1243365127 +199900,1263,aftermath of war,1243365250 +199900,1263,surreal,1243365265 +199900,1263,unique,1243365279 +199900,1263,Vietnam War,1243365263 +199900,1273,black and white,1252229630 +199900,1273,ESCAPE FROM PRISON,1252229636 +199900,1273,Jim Jarmusch,1252229640 +199900,1279,Jim Jarmusch,1248375985 +199900,1279,multiple storylines,1248375978 +199900,1279,nocturnal,1243364757 +199900,1298,dreamlike,1243365184 +199900,1298,drugs,1243365186 +199900,1298,hallucinatory,1243365189 +199900,1298,music,1243365193 +199900,1298,rock and roll,1243365198 +199900,1298,surreal,1243365200 +199900,1732,black comedy,1247589458 +199900,1732,comedy,1247589447 +199900,1732,crime,1247589472 +199900,1732,satirical,1247589485 +199900,1884,drugs,1243364907 +199900,1884,gonzo,1243364936 +199900,1884,hallucinatory,1243364922 +199900,1884,Hunter S. Thompson,1243364909 +199900,1884,Johnny Depp,1243364911 +199900,2232,maze,1252751214 +199900,2232,mindfuck,1252751216 +199900,2232,psychology,1252751220 +199900,2232,survival horror,1252751224 +199900,2358,disturbing,1243364650 +199900,2403,action,1243365216 +199900,2403,bad cop,1247589681 +199900,2403,small town,1243365227 +199900,2403,Sylvester Stallone,1247589676 +199900,2610,Ho Chi Minh City,1248557269 +199900,2610,Vietnam,1248557285 +199900,2610,Vietnam war veteran,1248557272 +199900,2761,cold war,1243954722 +199900,2761,robots,1243954713 +199900,2858,dark comedy,1243365149 +199900,2858,midlife crisis,1243365157 +199900,2858,powerful ending,1243365164 +199900,2858,surrealism,1243365166 +199900,2858,thought-provoking,1243365169 +199900,3168,Atmospheric,1248556049 +199900,3168,counterculture,1248556126 +199900,3168,drugs,1248556063 +199900,3168,road trip,1248556074 +199900,3235,gonzo,1243365332 +199900,3235,Hunter S. Thompson,1243365287 +199900,3250,air crash,1248557133 +199900,3250,mountains,1248557157 +199900,3250,South America,1248557152 +199900,3250,survival,1248557146 +199900,3339,World War II,1232014900 +199900,3363,cars,1245428792 +199900,3363,coming of age,1245428770 +199900,3363,great soundtrack,1245428774 +199900,3363,nocturnal,1245428779 +199900,3363,rock and roll,1245428786 +199900,3363,teen,1245428799 +199900,4022,adventure,1248557000 +199900,4022,island,1248557025 +199900,4022,stranded,1248557005 +199900,4022,SURVIVAL,1248557009 +199900,4310,aviation,1248376540 +199900,4310,historically inaccurate,1248376513 +199900,4826,World War II,1233241245 +199900,5288,archive footage,1243365061 +199900,5288,Atomic bomb,1243365063 +199900,5288,Cold War,1243365111 +199900,5288,H-bomb,1243365077 +199900,5288,nuclear,1243365080 +199900,5288,nuclear bomb,1243365082 +199900,5425,aviation,1243365000 +199900,5425,RAF,1217686506 +199900,5618,dreamlike,1243365480 +199900,5618,hallucinatory,1243365483 +199900,5618,Japan,1243365486 +199900,5669,documentary critique,1217197695 +199900,5673,bittersweet,1248729094 +199900,5673,hallucinatory,1248729090 +199900,5673,music,1248729105 +199900,6016,disturbing,1243365014 +199900,6016,drugs,1243365011 +199900,6016,South America,1243365019 +199900,6244,drugs,1243365598 +199900,6244,street children,1243365611 +199900,6244,tea,1243365618 +199900,6539,adventure,1243365639 +199900,6539,Johnny Depp,1243365640 +199900,6539,pirates,1243365642 +199900,6711,atmospheric,1243364818 +199900,6711,Japan,1243364812 +199900,6711,nocturnal,1243364826 +199900,6711,Scarlett Johansson,1243364828 +199900,6711,tokyo,1243364832 +199900,6947,Age of sail,1243365852 +199900,6947,island,1243365812 +199900,6947,ocean,1243365816 +199900,6947,seafaring,1243365820 +199900,7123,disturbing,1247588809 +199900,7123,dreamlike,1247588811 +199900,7123,drugs,1247588814 +199900,7123,hallucinatory,1247588820 +199900,7123,Madness,1247588845 +199900,7123,weird,1247588840 +199900,7460,black and white,1248375871 +199900,7460,Jim Jarmusch,1248375876 +199900,7460,minimalist,1248375881 +199900,7944,Ava Gardner,1252856354 +199900,7944,Mexico,1252856322 +199900,8873,adventure,1243364781 +199900,8873,Che Guevara,1243364778 +199900,8873,political,1243364785 +199900,8873,South America,1243364786 +199900,26007,draft,1245524258 +199900,26007,survival,1248556469 +199900,26007,World War II,1243365365 +199900,26164,Jodorowsky,1248162385 +199900,26164,surreal,1248162385 +199900,26164,surrealism,1248162385 +199900,26258,atmospheric,1247588478 +199900,26258,disturbing,1247588486 +199900,26258,hallucinatory,1247588491 +199900,26258,Jodorowsky,1247588494 +199900,26258,surreal,1247588582 +199900,26326,hallucinatory,1247589636 +199900,26326,Jodorowsky,1247589550 +199900,26326,social criticism,1247589636 +199900,26326,surreal,1247589636 +199900,26560,remake,1252856969 +199900,26560,WWII,1252856987 +199900,26729,subgenre:MakingOf (movie),1243886443 +199900,27869,Korean war,1232014511 +199900,30707,Clint Eastwood,1243365772 +199900,30707,disability,1243365787 +199900,32825,feminist society,1243365550 +199900,32825,Post apocalyptic,1243365579 +199900,33166,Crime,1247589034 +199900,33166,cultural conflict,1247589121 +199900,33166,easily confused with other movie(s) (title),1247589051 +199900,33166,los angeles,1247589138 +199900,33166,multiple storylines,1247589143 +199900,33166,racism,1247589081 +199900,33166,redemption,1247589152 +199900,33166,relationships,1247589112 +199900,36529,Africa,1243364852 +199900,36529,arms dealer,1243364848 +199900,36529,drugs,1243364868 +199900,36529,gun smuggling,1243364871 +199900,36529,Nicolas Cage,1243364855 +199900,39052,amateur,1243884234 +199900,39052,Finnish,1243884182 +199900,39052,free download available with subs,1243884193 +199900,39052,independent,1243884199 +199900,39052,indie,1243884205 +199900,39052,low budget,1243884175 +199900,39052,parody,1243884223 +199900,39052,sci-fi,1243884225 +199900,39052,Star Trek,1243884221 +199900,41527,Intifada,1243365731 +199900,41527,middle east,1243365683 +199900,41527,suicide,1243365688 +199900,41527,terrorism,1243365690 +199900,45722,Adventure,1243365659 +199900,45722,Johnny Depp,1243365654 +199900,45722,pirates,1243365660 +199900,46723,Morocco,1248640863 +199900,46723,multiple storylines,1248640763 +199900,53125,adventure,1243364676 +199900,53125,Johnny Depp,1243364685 +199900,53125,pirates,1243364684 +199900,55442,History,1243364720 +199900,55442,Iran,1243364706 +199900,55442,TOTALITARIAN STATES,1243364713 +199900,59387,1920s,1252750521 +199900,59387,fantasy world,1252750526 +199900,59387,hospital,1252750548 +199900,59387,imagination,1252750528 +199900,59387,story-in-a-story,1252750559 +199900,59387,storytelling,1252750531 +199900,59387,suicide attempt,1252750533 +199900,59387,surreal,1252750537 +199900,59387,visually stunning,1252750571 +199900,60291,Gonzo journalism,1243364885 +199900,60291,Hunter S. Thompson,1243364887 +199900,60291,topic:Hunter S. Thompson,1243364889 +199929,2006,Antonio Banderas,1304335395 +199929,2006,Mexico,1304335401 +199929,2006,Nudity (Topless - Brief),1304335384 +199929,2355,humor,1246054804 +199929,2355,inventor,1246054889 +199929,2355,kids and family,1246054840 +199929,2355,Pixar,1246054787 +199929,2571,cyberpunk,1246228886 +199929,2571,post apocalyptic,1246228868 +199929,2571,sci-fi,1246228872 +199929,2571,virtual reality,1246228880 +199929,3615,dinosaurs,1246228402 +199929,3615,Disney animated feature,1246228398 +199929,4232,Antonio Banderas,1246055060 +199929,4232,family,1246055000 +199929,4232,gadgets,1246055087 +199929,4232,kids,1246055006 +199929,4232,Robert Rodriguez,1246055011 +199929,4232,spying,1246054995 +199929,4299,innuendo,1304335672 +199929,4306,comedy,1246054714 +199929,4306,fairy tale,1246054697 +199929,4306,parody,1246054707 +199929,4306,romance,1246054719 +199929,4306,satire,1246054702 +199929,4700,Anne Hathaway,1255223645 +199929,4700,comedy,1255223649 +199929,4700,Julie Andrews,1255223641 +199929,4990,inventor,1246228528 +199929,5378,action,1246054279 +199929,5378,fantasy,1246054297 +199929,5378,Hayden Christensen,1246054252 +199929,5378,romance,1246054373 +199929,5378,sci-fi,1246054273 +199929,5378,sequel,1246054286 +199929,5378,Star Wars,1246054265 +199929,5418,action,1247052067 +199929,5418,amnesia,1247052074 +199929,5418,car chase,1247052078 +199929,5462,action,1246227837 +199929,5462,espionage,1246227830 +199929,5462,Steve Irwin,1246227816 +199929,5463,action,1246092006 +199929,5463,dragons,1246092000 +199929,5463,Post apocalyptic,1246091979 +199929,5463,post-apocalyptic,1246092055 +199929,5504,action,1246055275 +199929,5504,kids,1246055232 +199929,5504,Robert Rodriguez,1246055219 +199929,5903,Amazing Cinematography,1254560695 +199929,5903,Christian Bale,1254560703 +199929,5903,dystopia,1254560709 +199929,5903,gun fu,1254560699 +199929,5903,post-apocalyptic,1254560715 +199929,5952,adapted from:book,1246103739 +199929,5952,adventure,1246103721 +199929,5952,fantasy,1246103714 +199929,5952,fantasy world,1246103718 +199929,6297,black comedy,1255223844 +199929,6297,children,1255223836 +199929,6297,curse,1255223832 +199929,6297,Shia LeBoeuf,1255223814 +199929,6365,cyberpunk,1246229019 +199929,6365,hacking,1246229005 +199929,6365,Post apocalyptic,1246228989 +199929,6365,virtual reality,1246228981 +199929,6539,adventure,1246104435 +199929,6539,ghosts,1246104455 +199929,6539,Johnny Depp,1246104429 +199929,6539,sword fight,1246104443 +199929,6566,Anaglyphic 3-D sequences,1246055158 +199929,6566,Robert Rodriguez,1246055143 +199929,6566,video games,1246055125 +199929,6566,virtual reality,1246055177 +199929,6686,action,1304334303 +199929,6686,Jackie Chan,1304334296 +199929,6934,confusing ending,1246229107 +199929,6934,cyberpunk,1246229096 +199929,6934,Post apocalyptic,1246229086 +199929,6934,sci-fi,1246229080 +199929,6934,virtual reality,1246229072 +199929,7153,adventure,1246103666 +199929,7153,fantasy,1246103643 +199929,7161,Alyson Stoner,1254547247 +199929,8526,inventor,1246228301 +199929,8526,Jackie Chan,1246228309 +199929,8526,martial arts,1246228300 +199929,8526,Slaughtered the book,1246228315 +199929,8526,steampunk,1246228294 +199929,8665,amnesia,1247052143 +199929,8665,car chase,1247052147 +199929,8665,Matt Damon,1247052154 +199929,8961,Adventure,1246053999 +199929,8961,family,1246053968 +199929,8961,Pixar,1246054033 +199929,8961,stylized,1246053980 +199929,8961,super-hero,1246053949 +199929,32017,comedy and action,1304334805 +199929,32017,family,1304334775 +199929,32289,geek,1246228470 +199929,32289,physics,1246228457 +199929,32596,action,1304335206 +199929,32596,humor,1304335220 +199929,33830,Herbie The Love Bug (series),1246227705 +199929,33830,Lindsay Lohan,1246227694 +199929,39435,Below R,1304335573 +199929,39435,cattle punk,1304335558 +199929,39435,fun,1304335584 +199929,39435,funny,1304335580 +199929,39435,steampunk,1304335569 +199929,45722,Adventure,1246104515 +199929,45722,Johnny Depp,1246104506 +199929,45722,lackluster plot,1246104536 +199929,48522,children,1255224177 +199929,48522,Ewan McGregor,1255224140 +199929,48522,spy,1255224153 +199929,50872,Family,1255223914 +199929,50872,food/cooking,1255223900 +199929,50872,imagination,1255223895 +199929,50872,pixar,1255223880 +199929,52722,action,1304335976 +199929,52722,superhero,1304335972 +199929,53125,adventure,1246104593 +199929,53125,confusing,1246104611 +199929,53125,Johnny Depp,1246104584 +199929,53466,amateur detective,1304334967 +199929,53466,Emma Roberts,1304334970 +199929,53993,Christianity,1246103981 +199929,53993,family,1246103988 +199929,54686,bronze punk,1246104195 +199929,54686,Colin Firth,1246104167 +199929,54686,female warriors,1246104159 +199929,54686,King Arthur,1246104151 +199929,56915,based on a book,1246103567 +199929,58293,ancient civilization,1246227936 +199929,58293,bad for history-sense,1246227943 +199929,58293,Below R,1246227914 +199929,58293,cavemen,1246227922 +199929,58293,interesting concept,1246227927 +199929,58293,prehistoric fantasy,1246228193 +199929,58299,anime parody,1246228637 +199929,58299,comedy,1246228648 +199929,58299,Dr. Seuss,1246228673 +199929,58299,happy ending,1246228666 +199929,58347,fairy tale,1246104279 +199929,58347,modern fantasy,1246104292 +199929,58559,action,1247090029 +199929,58559,dark,1247090034 +199929,58559,Heath Ledger,1247090024 +199929,58559,superhero,1247090026 +199929,58559,vigilante,1247090048 +199929,59501,C.S. Lewis,1255223691 +199929,59501,Christian apologism,1255223710 +199929,59501,fantasy,1255223697 +199929,59501,narnia,1255223701 +199929,59501,not true to the book,1255223741 +199929,59784,Angelina Jolie,1246054549 +199929,59784,animals,1246054516 +199929,59784,comedy,1246054498 +199929,59784,ending,1246054633 +199929,59784,martial arts,1246054642 +199929,59784,unlikely hero,1246054487 +199929,60074,anti-hero,1246104889 +199929,60074,innovative,1246104996 +199929,60074,plot twist,1246104913 +199929,60074,superhero,1246104870 +199929,60074,Will Smith,1246104901 +199929,62376,adventure,1304333470 +199929,62376,atmosphere,1304333468 +199929,62376,family,1304333472 +199929,62376,post-apocalyptic,1304333466 +199929,62376,steampunk,1304333454 +199929,63393,Alyson Stoner,1255216352 +199929,63393,cheesy,1255216419 +199929,63393,Daniel Fathers,1255216343 +199929,63393,Demi Lovato,1255216371 +199929,63393,lame,1255216441 +199929,64114,Christianity,1254545204 +199929,64114,firefighters,1254545271 +199929,64114,original,1254545254 +199929,64114,realistic romance,1254545223 +199929,64167,creative,1304335103 +199929,64497,abrubt end,1246055539 +199929,64497,aliens,1246055536 +199929,64497,apocalyptic,1246055514 +199929,64497,first contact,1246055519 +199929,65685,books,1254546982 +199929,65685,fantasy world,1254546997 +199929,67197,apocalypse,1304335928 +199929,67197,sci-fi,1304335916 +199929,67197,thought-provoking,1304335921 +199929,68319,superhero,1304336002 +199929,70305,AnnaSophia Robb,1255216213 +199929,70305,Carla Gugino,1255216243 +199929,70305,Dwayne Johnson,1255216219 +199929,70305,good acting,1255216272 +199929,70305,sci-fi,1255216256 +199929,70336,action,1304336044 +199929,70336,cheesy,1304336061 +199929,70336,style over substance,1304336050 +199929,72998,beautiful scenery,1304333001 +199929,72998,politics,1304333034 +199929,72998,sci-fi,1304333017 +199929,72998,science fiction,1304333020 +199929,73321,Christianity,1279977032 +199929,73321,dystopia,1279977045 +199929,73321,faith,1279977057 +199929,73321,post-apocalyptic,1279977039 +199929,73321,thought-provoking,1279977050 +199929,78105,action,1304335763 +199929,78105,adventure,1304335760 +199929,78105,fantasy,1304335769 +199929,78105,persia,1304335775 +199929,78469,action,1304335637 +199929,78469,cheesy,1304335630 +199929,79132,action,1304333165 +199929,79132,creative,1304333217 +199929,79132,dreamlike,1304333139 +199929,79132,fantasy,1304333143 +199929,79132,innovative,1304333217 +199929,79132,thought-provoking,1304333150 +199929,85056,superhero,1304334453 +199935,260,"heroic, adventure",1439787479 +199935,260,Star Wars,1439787422 +199945,1241,hard to rate,1259701170 +199945,1241,lawn mower,1259701178 +199945,1241,zombies,1259701190 +199945,2395,Bill Murray,1259700374 +199945,2395,UNLIKELY FRIENDSHIPS,1259700404 +199945,2395,Wes Anderson,1259700382 +199947,1270,teen,1431526298 +199947,32460,road trip,1431526339 +199947,39768,Emir Kusturica,1431526441 +200056,260,comedy,1439615095 +200056,260,drama,1439615102 +200056,260,Good music,1439615126 +200056,260,romance,1439615110 +200057,49272,007,1166482610 +200069,260,George Lucas,1433224574 +200069,260,Science Fiction,1433224617 +200092,32,original,1368342254 +200092,1088,dance,1300308382 +200092,1088,Patrick Swayze,1300308374 +200092,1089,original,1368342254 +200092,1772,Based on a TV show,1300307956 +200092,1772,musicians,1300307968 +200092,1909,aliens,1165997308 +200092,1909,scifi,1165997311 +200092,3791,Kevin Bacon,1300308312 +200092,3791,religion,1300308316 +200092,3791,rock and roll,1300308333 +200092,5608,based on a true story,1300308575 +200092,5608,brutal,1300308604 +200092,5608,german movie,1300308598 +200092,5608,human nature,1300308608 +200092,5608,psychological,1300308592 +200092,5608,psychology,1300308578 +200092,5608,thought-provoking,1300308584 +200092,5608,true story,1300308582 +200092,8957,Great Movie!,1150888219 +200092,27773,want to see,1150888392 +200092,40819,biographical,1300136703 +200092,40819,biography,1300136677 +200092,40819,drug abuse,1300136682 +200092,40819,imdb top 250,1300136714 +200092,40819,Johnny Cash,1300136685 +200092,40819,love,1300136695 +200092,40819,Oscar (Best Actress),1300136688 +200092,40819,true story,1300136691 +200092,47099,based on a true story,1300308854 +200092,47099,depressing,1300308865 +200092,47099,happy ending,1300308885 +200092,47099,single father,1300308870 +200092,47099,true story,1300308849 +200092,47099,want to see again,1300308880 +200092,47099,Will Smith,1300308846 +200092,48385,humour,1165996974 +200092,48385,satire,1165996960 +200092,51662,spartians,1200428548 +200092,56339,fairy tale,1300307879 +200092,56339,ghosts,1300307876 +200092,56339,twist ending,1300307872 +200092,60397,Greece,1300308254 +200092,60397,Island,1300308260 +200092,60397,music:ABBA,1300308261 +200092,60397,Single Mother,1300308268 +200092,60397,Wedding,1300308269 +200092,62644,classroom,1300308071 +200092,62644,dictatorship,1300308085 +200092,62644,nationalism,1300308093 +200092,62644,Nazis,1300308096 +200092,62644,psychology,1300308082 +200092,62644,social experiment,1300308083 +200092,62644,violence,1300308089 +200092,68194,based on a book,1300308154 +200092,68194,based on true story,1300308148 +200092,68194,british,1300308178 +200092,68194,coaching,1300308181 +200092,68194,fair play,1300308180 +200092,68194,Leeds United,1300308163 +200092,68194,sport:soccer football,1300308173 +200092,72554,prison,1300308046 +200092,72641,American Football,1300308503 +200092,72641,based on a true story,1300308471 +200092,72641,football,1300308477 +200092,72641,kindness of strangers,1300308497 +200092,72641,Sandra Bullock,1300308488 +200092,72641,true story,1300308492 +200092,74458,Leonardo DiCaprio,1300308744 +200092,74458,Martin Scorsese,1300308746 +200092,74458,Predictable,1300308761 +200092,74458,psychological,1300308749 +200092,74458,twist ending,1300308759 +200098,1268,society,1206499745 +200098,1268,suicide,1206499745 +200098,3477,teen,1206499791 +200098,58154,historical,1206499695 +200118,2460,slasher,1445345792 +200118,135252,christmas,1449206735 +200118,135266,disney,1442932180 +200118,136309,animated,1435616633 +200118,136590,disney,1442932151 +200118,137863,English dubbed,1443940413 +200118,138798,time travel,1442929755 +200118,142513,English subtitles,1442601875 +200118,142519,english subtitles,1443199087 +200118,142975,zombie,1443101556 +200118,148282,christmas,1449360562 +200118,148282,santa,1449360579 +200151,110,scottish independence,1448043083 +200151,3578,Roman empire,1448043147 +200151,3578,Rome,1448043139 +200181,7153,Adventure,1431273515 +200181,7153,based on a book,1431273581 +200181,7153,dialogue,1431273564 +200181,7153,ensemble cast,1431273550 +200181,7153,epic,1431273556 +200181,7153,epic adventure,1431273595 +200181,7153,fantasy,1431273507 +200181,7153,fantasy world,1431273520 +200181,7153,great ending,1431273586 +200181,7153,great soundtrack,1431273553 +200181,7153,high fantasy,1431273526 +200181,7153,lord of the rings,1431273583 +200181,7153,magic,1431273578 +200181,7153,multiple storylines,1431273542 +200181,7153,mystic warriors,1431273568 +200181,7153,mythology,1431273559 +200181,7153,Oscar (Best Directing),1431273598 +200181,7153,Peter Jackson,1431273531 +200181,7153,scenic,1431273571 +200181,7153,stylized,1431273575 +200181,7153,Tolkien,1431273533 +200181,7153,war,1431273528 +200181,7153,wizards,1431273546 +200194,1278,Gene Wilder,1194290785 +200195,318,character motivation,1425672068 +200195,318,classic,1425672068 +200195,318,prison break,1425672068 +200195,356,good music,1421342757 +200195,356,motivation,1421342757 +200195,356,plot,1421342757 +200195,105742,computer hacker,1406731830 +200195,110102,Nazis,1402380302 +200195,110102,Scarlett Johannson,1402380300 +200195,112552,motivation,1421449231 +200201,107,coming of age,1344801703 +200201,94280,boarding school,1335626708 +200201,94280,coming of age,1335626708 +200201,94280,funny,1335626708 +200201,94280,growing up,1335626708 +200201,94280,South Africa,1335626734 +200208,69524,action,1437948928 +200208,69524,adventure,1437948928 +200208,69524,humor,1437948928 +200211,260,sci-fi,1442025418 +200211,260,space adventure,1442025430 +200221,62594,abortion,1426445561 +200221,62594,children,1426445561 +200221,62594,couple,1426445561 +200221,76111,death,1434039308 +200221,76111,iran,1434039308 +200221,76111,sea side,1434039308 +200223,356,dumb,1421180068 +200223,356,fish,1421180068 +200223,356,goblin,1421180068 +200223,81497,antihero,1289102387 +200223,81497,gritty,1289102402 +200223,81497,moonshine,1289102349 +200223,81497,racing,1289102362 +200227,2571,artificial intelligence,1448173124 +200227,63113,007,1448173020 +200227,63113,007 (series),1448173018 +200237,377,Watch with kids,1251565309 +200237,7361,Watch again,1251565386 +200237,25738,Watch with kids,1251565353 +200245,3272,pointless,1240849795 +200246,1193,imdb top 250,1183471574 +200249,3508,acting,1363492598 +200249,3508,Clint Eastwood,1363492712 +200249,3508,flat villain,1363492855 +200249,47670,Hiam Abbass,1243084433 +200249,47670,middle east,1243084513 +200249,97304,Alan Arkin,1351034113 +200249,97304,anti-hero,1351034128 +200249,97304,Ben Affleck,1351034067 +200249,97304,catch phrase,1351034188 +200249,97304,CIA Agent,1351034063 +200249,97304,detail,1351034063 +200249,97304,hollywood,1351034063 +200249,97304,John Goodman,1351034113 +200249,97304,thrilling,1351034063 +200249,97304,true story,1351034063 +200252,364,Disney,1150613271 +200252,2716,ghosts,1150613280 +200252,2987,animation,1150613300 +200259,163,Austin too hip,1150076453 +200259,232,food,1150087683 +200259,265,food,1150087690 +200259,265,magic,1150087694 +200259,441,1970s,1151337513 +200259,441,drugs,1151337509 +200259,456,chess,1150087886 +200259,838,Jane Austen,1150083894 +200259,1101,hilarious,1150080609 +200259,1194,drugs,1151337398 +200259,1194,hilarious,1151337413 +200259,1236,Adrienne Shelly,1150085189 +200259,1411,Shakespeare,1150083883 +200259,1500,John Cusack,1150082985 +200259,1558,Adrienne Shelly,1150085158 +200259,1884,drugs,1151337495 +200259,1884,gonzo,1151337499 +200259,1899,artistic,1150077015 +200259,2706,Alyson Hannigan,1150086720 +200259,3070,surreal,1150083492 +200259,3256,jack ryan,1150085421 +200259,3819,food,1150084376 +200259,3984,007,1150083284 +200259,4014,food,1150087730 +200259,4034,drugs,1151337475 +200259,4089,drugs,1151337620 +200259,4089,hilarious,1151337620 +200259,4183,Adrienne Shelly,1150085187 +200259,4246,Colin Firth,1150083905 +200259,4259,chess,1150088067 +200259,4415,drugs,1151337601 +200259,4415,hilarious,1151337601 +200259,4518,pagan,1150083573 +200259,4718,Alyson Hannigan,1150086738 +200259,4754,pagan,1150083611 +200259,4834,drugs,1151337638 +200259,4834,hilarious,1151337337 +200259,4873,drugs,1151337450 +200259,4901,multinational settings,1150087253 +200259,4975,annoying,1150080585 +200259,5083,artistic,1150080353 +200259,5083,Erotic,1150084819 +200259,5083,food,1150080393 +200259,5083,hilarious,1150080393 +200259,5351,Erotic,1150084325 +200259,5428,drugs,1151337653 +200259,5428,hilarious,1151337653 +200259,6586,Alyson Hannigan,1150086750 +200259,7123,drugs,1151337429 +200259,8917,hilarious,1150077203 +200259,42007,hilarious,1152910488 +200259,43919,Alyson Hannigan,1150086767 +200259,49272,007,1165956624 +200266,451,Nudity (Topless - Notable),1162321300 +200266,137389,animated,1437398032 +200266,137389,racing,1437398032 +200266,137389,weird,1437398032 +200275,260,sci-fi,1436208659 +200275,260,space opera,1436208652 +200298,87869,black comedy,1450892052 +200298,87869,Jennifer Aniston,1450892056 +200298,87869,weak ending,1450892061 +200298,112138,college,1450892034 +200298,112138,hilarious,1450892027 +200298,112138,undercover cop,1450892031 +200309,86880,Johnny Depp,1428886295 +200309,86880,magic,1428886307 +200309,115617,Disney,1428886397 +200323,50,Kevin Spacey,1166101426 +200323,6709,Johnny Depp,1162147221 +200329,3269,Can't remember,1172204735 +200329,3968,original is better,1172202460 +200329,4544,crappy sequel,1172372123 +200329,5478,mocking it's own genre,1172371839 +200329,5679,the japanese is better,1172180672 +200329,6880,unnecessary remake,1172372131 +200364,318,friendship,1307055633 +200364,318,justice,1307055637 +200364,318,Morgan Freeman,1307055640 +200364,318,narrated,1307055651 +200364,1653,future,1307134263 +200364,1653,powerful ending,1307134274 +200364,1921,black and white,1307055701 +200364,1921,hallucinatory,1307055708 +200364,1921,mental illness,1307055715 +200364,3593,aliens,1307055762 +200364,4370,androids,1307055833 +200364,4370,artificial intelligence,1307055812 +200364,4370,depressing,1307055814 +200364,4370,dystopia,1307055816 +200364,4370,emotional,1307055818 +200364,4370,Steven Spielberg,1307055823 +200364,6365,dystopia,1307055783 +200364,6365,future,1307055800 +200364,6365,Keanu Reeves,1307055789 +200364,6365,Post apocalyptic,1307055786 +200364,6365,post-apocalyptic,1307055793 +200364,6365,thought-provoking,1307055802 +200364,6365,virtual reality,1307055795 +200364,6934,apocalypse,1307055849 +200364,6934,artificial intelligence,1307055882 +200364,6934,future,1307055878 +200364,6934,Keanu Reeves,1307055853 +200364,6934,Philosophical,1307055846 +200364,6934,Post apocalyptic,1307055861 +200364,6934,Romance,1307055867 +200364,6934,sequel,1307055872 +200364,6934,virtual reality,1307055862 +200364,7147,adventure,1307055983 +200364,7147,imagination,1307055971 +200364,8361,adventure,1307055746 +200364,8361,catastrophe,1307055734 +200364,8361,climate change,1307055749 +200364,8361,natural disaster,1307055736 +200364,8361,Post apocalyptic,1307055741 +200364,57368,unsteady-cam,1307099969 +200364,59387,story-in-a-story,1307134718 +200364,59387,surreal,1307134730 +200364,59387,visually stunning,1307134696 +200364,60074,bad ending,1307100478 +200364,65514,China,1307056463 +200364,65514,chinese propaganda,1307056448 +200364,65514,distorted representation of history,1307056469 +200364,65514,good vs evil,1307056458 +200364,65514,justice,1307056499 +200364,69526,ridiculous,1307100082 +200364,69526,silly,1307100086 +200364,72393,bad science,1307056212 +200364,72393,disrespectul to audience,1307056208 +200364,72393,fake documentary,1307056205 +200364,76093,adventure,1307056367 +200364,76093,cute,1307056355 +200364,76093,dragons,1307056370 +200364,76093,friendship,1307056352 +200364,76093,soundtrack,1307056364 +200364,79357,nonlinear,1307099639 +200364,79357,surreal,1307056610 +200364,79357,time travel,1307099642 +200364,80463,computers,1307056269 +200366,61160,sci-fi,1421084961 +200366,61160,science fiction,1421084961 +200366,61160,star wars,1421084961 +200410,356,action,1324080376 +200410,356,historical,1324080458 +200410,356,romantic,1324080402 +200410,356,touching,1324080362 +200410,3033,funny,1324080993 +200410,3033,parody,1324081007 +200410,3033,predictable,1324081002 +200410,3033,slapstick,1324080988 +200410,6624,action,1324081716 +200410,6624,CIA,1324081801 +200410,6624,cool,1324081725 +200410,6624,espionage,1324081749 +200410,6624,explosion,1324081741 +200410,6624,plotless,1324081774 +200410,6624,silly,1324081822 +200410,6624,weird,1324081786 +200410,72641,action,1324081417 +200410,72641,feel good,1324081397 +200410,72641,inspirational,1324081426 +200410,72641,touching,1324081372 +200410,72998,action,1324081905 +200410,72998,enviromental,1324081918 +200410,72998,fight,1324081898 +200410,72998,good writing,1324082089 +200410,72998,great dialogue,1324081982 +200410,72998,injustice,1324081925 +200410,72998,solid performances,1324082029 +200410,80463,computers,1324080539 +200410,80463,funny,1324080519 +200410,80463,sex,1324080586 +200410,80463,slow,1324080503 +200410,80463,talky,1324080647 +200410,80463,true story,1324080599 +200410,82459,19th century,1324080747 +200410,82459,slow,1324080712 +200410,82459,talky,1324080736 +200410,87876,spy caping action,1324083895 +200410,87876,spys,1324083906 +200410,88950,legal,1324080857 +200410,88950,tearjerker,1324080885 +200410,88950,touching,1324080906 +200410,89492,entertaining,1324081176 +200410,89492,funny,1324081132 +200410,89492,losing,1324081219 +200410,89492,math,1324081233 +200410,89492,money,1324081227 +200410,89492,slow,1324081182 +200410,89492,sports,1324081203 +200410,89492,well acted,1324081141 +200410,89492,winning,1324081209 +200412,2329,great acting,1367799618 +200412,5313,action,1367799545 +200412,5942,comedy,1367799441 +200412,44191,dystopia,1331161406 +200412,44191,inspirational,1331161432 +200412,44191,philosophy,1331161435 +200412,44191,politics,1331161400 +200412,44191,revenge,1331161421 +200412,44191,social commentary,1331161427 +200412,44191,thought-provoking,1331161416 +200412,79132,alternate reality,1331161456 +200412,79132,philosophy,1331161475 +200412,79132,sci-fi,1331161481 +200412,79132,thought-provoking,1331161448 +200412,79132,visually appealing,1331161462 +200416,54736,'Don't Cry Jen I Promise We'll Kill Them All',1199542192 +200416,54736,bombs,1199542195 +200416,54736,fbi,1199542198 +200416,54736,propaganda,1199542254 +200416,54736,terrorism,1199542190 +200439,593,Anthony Hopkins,1262611833 +200439,593,intelligence,1262611833 +200439,593,Jody Foster,1262611833 +200439,593,psychology,1262611833 +200439,6942,british humor,1262611345 +200439,6942,funny,1262611345 +200439,6942,hugh grant,1262611345 +200439,6942,rodrigo santoro,1262611345 +200450,1674,romance.,1346689694 +200452,296,b movie,1420943065 +200452,296,crime,1420943065 +200452,296,non-linear,1420943065 +200452,27664,new tag,1157258322 +200452,27904,TAG,1154447641 +200452,33722,TAG,1154447578 +200452,43928,latest,1141061552 +200452,44225,rendu-là,1150602980 +200452,51094,cue,1170907497 +200460,260,good to watch,1435905785 +200460,260,heart warming,1435905797 +200460,1287,inspiring,1435906340 +200460,3578,very good,1435906302 +200460,4993,fantasy,1435906260 +200460,50253,bad tuning for good,1435906469 +200464,89759,drama,1429393759 +200464,89759,foreign,1429393759 +200464,89759,society,1429393759 +200474,353,tissit,1162160415 +200486,1197,fairy tale,1245073928 +200486,1197,fantasy,1245073931 +200486,1197,romance,1245073924 +200486,1967,muppets,1245073630 +200486,4489,Eddie Murphy,1245073708 +200486,6979,computers,1245073903 +200486,52973,drugs,1245073568 +200486,52973,marijuana,1245073586 +200486,68358,sci-fi,1245073911 +200536,356,emotional,1441957682 +200536,356,Robert Zemeckis,1441957627 +200536,356,tom hanks,1441957587 +200536,3147,Prison,1441957476 +200536,3147,Stephen King,1441957512 +200536,3147,Tom Hanks,1441957467 +200538,1270,retro-futuristic,1389203929 +200552,296,characters,1422081946 +200552,296,cult film,1422081946 +200552,296,dark comedy,1422081946 +200554,260,action,1437892354 +200554,260,space,1437892348 +200554,4878,time travel,1438076636 +200554,6283,anime,1438076505 +200570,180,still behind chasing amy.,1138380794 +200570,180,Way better than Dogma or Jersey Girl,1138380794 +200570,553,Val KIlmer is Great!!!!,1138390455 +200570,5991,Musical Sucks.,1138385489 +200570,8906,weird.,1138389825 +200570,31435,Very cool.,1138391564 +200570,37382,Great. A lot of action.,1138390373 +200570,40278,Cool. But is a Drama,1138380763 +200570,40278,not a war movie.,1138380763 +200587,6350,Japan,1445311525 +200587,6350,Studio Ghibli,1445311516 +200587,59784,animation,1445311444 +200587,59784,comedy,1445311460 +200595,32,Brad Pitt,1307585387 +200595,32,time travel,1307585392 +200595,32,twist ending,1307585394 +200595,47,Brad Pitt,1307585504 +200595,47,Morgan Freeman,1307585508 +200595,47,serial killer,1307585609 +200595,318,classic,1307588089 +200595,318,inspirational,1307588101 +200595,318,justice,1307588098 +200595,318,thought-provoking,1307588087 +200595,356,bittersweet,1307587942 +200595,356,classic,1307587938 +200595,356,psychology,1307587947 +200595,356,Tom Hanks,1307587935 +200595,593,crime,1307588024 +200595,593,serial killer,1307588027 +200595,56367,Ellen Page,1307583869 +200595,56367,excellent script,1307583866 +200595,56367,notable soundtrack,1307583878 +200595,56367,pregnancy,1307583862 +200595,76738,Finnish,1307585287 +200595,85414,adventure,1307583351 +200595,85414,Duncan Jones,1307583358 +200595,85414,parallel universe,1307583340 +200595,85414,science fiction,1307583347 +200595,85414,time travel,1307583335 +200601,1965,rock music,1231975899 +200601,3121,overrated,1231975555 +200601,3121,sleeping with one eye open,1231975519 +200601,3328,books,1231976748 +200601,3877,helen slater,1233181362 +200601,8501,western,1231975757 +200622,260,legendary,1440430196 +200622,593,Anthony Hopkins,1440430730 +200622,593,Hannibal Lecter,1440430697 +200622,593,Jodie Foster,1440430723 +200627,129354,100 greatest movies,1433399690 +200627,129354,con artist,1433399690 +200627,129354,romance,1433399690 +200646,260,space,1444409083 +200659,19,detective,1368951479 +200659,22,detective,1368951479 +200659,22,suspenseful,1368951352 +200659,32,great ending,1368951439 +200659,39,teen movie,1368951336 +200659,46,women,1368951299 +200659,47,great ending,1368951440 +200659,50,excellent script,1368951256 +200659,111,masterpiece,1368951210 +200659,288,brutality,1368951376 +200659,290,brutality,1368951377 +200659,296,masterpiece,1368951210 +200659,318,great ending,1368951439 +200659,349,mentor,1368951191 +200659,521,noir thriller,1368951164 +200659,553,own,1144861339 +200659,587,supernatural,1368951230 +200659,593,excellent script,1368951256 +200659,724,teen movie,1368951336 +200659,799,supernatural,1368951231 +200659,898,screwball comedy,1368951504 +200659,904,suspenseful,1368951352 +200659,913,noir thriller,1368951164 +200659,923,masterpiece,1368951210 +200659,924,masterpiece,1368951210 +200659,1033,unlikely friendships,1368951463 +200659,1088,dancing,1368951422 +200659,1210,great ending,1368951439 +200659,1213,masterpiece,1368951209 +200659,1213,stylish,1368951267 +200659,1219,suspenseful,1368951352 +200659,1249,stylish,1368951268 +200659,1258,masterpiece,1368951210 +200659,1259,unlikely friendships,1368951463 +200659,1285,teen movie,1368951336 +200659,1387,suspenseful,1368951352 +200659,1466,mentor,1368951191 +200659,1617,detective,1368951479 +200659,1617,neo-noir,1368951389 +200659,1704,excellent script,1368951256 +200659,1704,mentor,1368951191 +200659,1719,melancholic,1368951143 +200659,1784,excellent script,1368951256 +200659,1968,teen movie,1368951336 +200659,2144,teen movie,1368951336 +200659,2420,mentor,1368951191 +200659,2542,stylish,1368951268 +200659,2726,noir thriller,1368951164 +200659,2762,great ending,1368951440 +200659,2841,supernatural,1368951231 +200659,2863,musicians,1368951314 +200659,2866,musicians,1368951314 +200659,2915,teen movie,1368951336 +200659,3005,detective,1368951479 +200659,3418,women,1368951300 +200659,3791,dancing,1368951422 +200659,4018,women,1368951299 +200659,4020,supernatural,1368951231 +200659,4085,detective,1368951479 +200659,4144,melancholic,1368951143 +200659,5065,supernatural,1368951230 +200659,5693,dancing,1368951423 +200659,6731,splatter,1368951285 +200659,6873,screwball comedy,1368951504 +200659,7153,great ending,1368951440 +200659,33834,splatter,1368951285 +200659,37733,brutality,1368951377 +200659,42723,splatter,1368951285 +200659,48304,brutality,1368951377 +200662,260,robots,1441584037 +200662,260,Science Fiction,1441584031 +200662,260,space opera,1441584044 +200678,260,classic,1441983834 +200678,260,great opening,1441983865 +200678,260,space ninjas,1441983831 +200679,296,Black comedy,1443955022 +200679,296,Quentin Tarantino,1443955018 +200679,296,Tarantino,1443955020 +200679,441,Richard Linklater,1443955063 +200679,1213,dark comedy,1443954536 +200679,1213,mafia,1443954529 +200679,1213,Martin Scorsese,1443954531 +200679,1213,organized crime,1443954543 +200679,1213,robert de niro,1443954534 +200679,1230,thought-provoking,1443954760 +200679,3897,coming of age,1443954693 +200679,4226,nonlinear,1443954792 +200679,5902,dark comedy,1443954712 +200679,6711,Scarlett Johansson,1443954823 +200679,57669,dark comedy,1443954914 +200679,80463,David Fincher,1443954735 +200679,94959,Edward Norton,1443954896 +200679,94959,quirky,1443954898 +200679,112290,coming of age,1443954644 +200679,112290,Richard Linklater,1443954650 +200738,103776,New Zealand,1375121066 +200738,103776,over the top,1375121066 +200738,103776,profane,1375121066 +200739,48997,Nudity (Topless),1168560414 +200769,260,famous,1433827317 +200769,260,the classic sci fi movie. must see.,1433827284 +200769,356,classic,1433827642 +200769,356,fun,1433827642 +200769,356,inspirational,1433827642 +200779,260,lasers,1441266700 +200779,260,space,1441266709 +200788,260,aliens,1431337940 +200788,260,sci-fi,1431337927 +200790,74156,predictable,1313030495 +200799,7502,war,1420541477 +200799,115210,realistic,1420634279 +200799,115210,tank,1420634279 +200799,115210,war,1420634279 +200805,28,Ciarán Hinds,1254058029 +200805,28,Jane Austen,1254058029 +200805,154,Catherine Deneuve,1275187823 +200805,154,Geneviève Page,1275187834 +200805,154,Jean Sorel,1275187843 +200805,154,Luis Buñuel,1275187840 +200805,750,Peter Sellers,1273680170 +200805,750,satire,1273680175 +200805,750,Stanley Kubrick,1273680165 +200805,898,Cary Grant,1246870126 +200805,898,James Stewart,1246870123 +200805,898,Katharine Hepburn,1246870119 +200805,905,Claudette Colbert,1274690556 +200805,905,Frank Capra,1274690620 +200805,908,Alfred Hitchcock,1273132625 +200805,908,Cary Grant,1273132629 +200805,908,Eva Marie Saint,1273132635 +200805,908,James Mason,1273132646 +200805,908,Martin Landau,1273132659 +200805,910,Billy Wilder,1270916068 +200805,910,Jack Lemmon,1270916052 +200805,910,Marilyn Monroe,1270916056 +200805,910,Tony Curtis,1270916062 +200805,912,Humphrey Bogart,1265212603 +200805,912,Ingrid Bergman,1265212606 +200805,914,Audrey Hepburn,1246677774 +200805,920,Clark Gable,1257526123 +200805,920,Vivien Leigh,1257526111 +200805,922,Billy Wilder,1274463808 +200805,922,Erich von Stroheim,1274463834 +200805,922,Gloria Swanson,1274463798 +200805,922,William Holden,1274463803 +200805,926,Anne Baxter,1274777692 +200805,926,Bette Davis,1274777090 +200805,927,divorce,1334163150 +200805,927,George Cukor,1334163149 +200805,927,Joan Crawford,1334163169 +200805,927,Joan Fontaine,1334163181 +200805,927,Norma Shearer,1334163156 +200805,927,play adaptation,1334163907 +200805,927,Rosalind Russell,1334163162 +200805,928,Alfred Hitchcock,1322359000 +200805,928,George Sanders,1322359014 +200805,928,Joan Fontaine,1322359010 +200805,928,Laurence Olivier,1322359005 +200805,930,Cary Grant,1265632834 +200805,930,Claude Rains,1265632830 +200805,930,Ingrid Bergman,1265632825 +200805,931,Gregory Peck,1265814381 +200805,931,Ingrid Bergman,1265814375 +200805,932,Cary Grant,1266504544 +200805,932,Deborah Kerr,1266504552 +200805,936,Ernst Lubitsch,1342111069 +200805,936,Greta Garbo,1342111065 +200805,936,Melvyn Douglas,1342111074 +200805,936,USSR,1342111082 +200805,942,Dana Andrews,1256466672 +200805,942,Gene Tierney,1256466663 +200805,942,Vincent Price,1256466666 +200805,943,Gene Tierney,1275802032 +200805,943,George Sanders,1275802034 +200805,943,Joseph L. Mankiewicz,1275802036 +200805,943,Rex Harrison,1275802040 +200805,945,Eric Blore,1337464652 +200805,945,Fred Astaire,1337464652 +200805,945,Ginger Rogers,1337464655 +200805,945,tap dance,1337464681 +200805,947,Carole Lombard,1278248472 +200805,947,Eugene Pallette,1278248479 +200805,947,William Powell,1278248474 +200805,950,Myrna Loy,1287437119 +200805,950,pre-code Hollywood,1342112122 +200805,950,W.S. Van Dyke,1342112114 +200805,950,William Powell,1287437115 +200805,951,Cary Grant,1272890449 +200805,951,Rosalind Russell,1272890454 +200805,955,Cary Grant,1246870144 +200805,955,Katharine Hepburn,1248148875 +200805,955,witty,1246507104 +200805,973,anti-fascism,1335025005 +200805,973,Barbara Stanwyck,1335024966 +200805,973,Christianity,1335025124 +200805,973,class issues,1335024978 +200805,973,Frank Capra,1335024953 +200805,973,Gary Cooper,1335024966 +200805,973,journalism,1335025008 +200805,1028,Dick Van Dyke,1248165447 +200805,1028,Julie Andrews,1248165443 +200805,1036,action,1341405499 +200805,1036,Alan Rickman,1341405484 +200805,1036,Bruce Willis,1341405489 +200805,1036,christmas,1341405491 +200805,1036,thriller,1341405496 +200805,1081,Julie Andrews,1248276193 +200805,1084,Faye Dunaway,1247821884 +200805,1084,Warren Beatty,1247821884 +200805,1104,Marlon Brando,1257664563 +200805,1104,Vivien Leigh,1257664534 +200805,1183,adultery,1342112339 +200805,1183,Africa,1342112365 +200805,1183,Kristin Scott Thomas,1342112351 +200805,1183,nudity,1342112355 +200805,1183,Ralph Fiennes,1342112345 +200805,1183,Willem Dafoe,1342112342 +200805,1183,WWII,1342112382 +200805,1201,Clint Eastwood,1247821484 +200805,1201,Ennio Morricone,1247821489 +200805,1201,spaghetti western,1335507061 +200805,1201,western,1247821494 +200805,1204,Alec Guiness,1284197329 +200805,1204,Anthony Quayle,1284197318 +200805,1204,Anthony Quinn,1284197324 +200805,1204,Claude Rains,1284197352 +200805,1204,David Lean,1284197284 +200805,1204,Omar Sharif,1284197306 +200805,1204,Peter O'Toole,1284197309 +200805,1212,Alida Valli,1335204262 +200805,1212,bitter ending,1335204276 +200805,1212,Criterion,1335204246 +200805,1212,film noir,1335204234 +200805,1212,Joseph Cotten,1335204257 +200805,1212,murder,1335204237 +200805,1212,Orson Welles,1335204232 +200805,1212,Trevor Howard,1335204270 +200805,1212,Vienna,1335204243 +200805,1247,Anne Bancroft,1247821580 +200805,1247,comedy,1247821585 +200805,1247,Dustin Hoffman,1247821576 +200805,1260,Fritz Lang,1247821467 +200805,1269,Cary Grant,1337548175 +200805,1269,Frank Capra,1337548182 +200805,1269,murder,1337548187 +200805,1269,screwball comedy,1337548179 +200805,1281,amnesia,1335596400 +200805,1281,anti-war,1335596396 +200805,1281,Charlie Chaplin,1335596379 +200805,1281,Nazi Germany,1335596389 +200805,1281,propaganda,1335596381 +200805,1281,satire,1335596386 +200805,1281,World War II,1335596388 +200805,1285,Christian Slater,1270807690 +200805,1285,high school,1270807696 +200805,1285,Winona Ryder,1270807685 +200805,1929,burglary,1335477222 +200805,1929,Edmund Goulding,1285180259 +200805,1929,Greta Garbo,1285180243 +200805,1929,Joan Crawford,1285180244 +200805,1929,John Barrymore,1285180243 +200805,1929,Lionel Barrymore,1285180245 +200805,1929,murder,1335477211 +200805,1929,pre-code Hollywood,1342111490 +200805,1939,Dana Andrews,1342231383 +200805,1939,Fredric March,1342231400 +200805,1939,Myrna Loy,1342231400 +200805,1939,Teresa Wright,1342231404 +200805,1939,veterans,1342231378 +200805,1939,William Wyler,1342231410 +200805,1939,World War II,1342231377 +200805,2174,Alec Baldwin,1276875043 +200805,2174,Catherine O'Hara,1276875054 +200805,2174,Geena Davis,1276875044 +200805,2174,Glenn Shadix,1276875061 +200805,2657,Susan Sarandon,1270711221 +200805,2657,Tim Curry,1270711221 +200805,2729,James Mason,1277975082 +200805,2729,Peter Sellers,1277975091 +200805,2729,Shelley Winters,1277975102 +200805,2729,Stanley Kubrick,1277975088 +200805,2729,Sue Lyon,1277975105 +200805,2763,John McTiernan,1315124892 +200805,2763,Pierce Brosnan,1315124878 +200805,2763,Rene Russo,1315124884 +200805,2872,Helen Mirren,1271410149 +200805,2872,Liam Neeson,1271410137 +200805,2872,Nigel Terry,1271410144 +200805,2872,Patrick Stewart,1271410140 +200805,2927,adultery,1275496063 +200805,2927,Celia Johnson,1275496054 +200805,2927,David Lean,1275496043 +200805,2927,Noel Coward,1275496047 +200805,2927,Trevor Howard,1275496056 +200805,2935,Barbara Stanwyck,1284298675 +200805,2935,Criterion,1334681430 +200805,2935,Henry Fonda,1284298674 +200805,2935,Preston Sturges,1284298675 +200805,2935,screwball,1284298678 +200805,2935,slapstick,1335203460 +200805,2940,Glenn Ford,1275363253 +200805,2940,Rita Hayworth,1275363257 +200805,2959,Brad Pitt,1335765811 +200805,2959,dark comedy,1335765821 +200805,2959,Edward Norton,1335765809 +200805,2959,mental illness,1335765824 +200805,2959,psychology,1335765813 +200805,2959,social commentary,1335765814 +200805,2959,twist ending,1335765817 +200805,2959,violence,1335765819 +200805,3094,E.M. Forster,1324669305 +200805,3094,Hugh Grant,1324669267 +200805,3094,James Ivory,1324669269 +200805,3094,James Wilby,1324669276 +200805,3094,LGBT,1324669292 +200805,3094,Rupert Graves,1324669286 +200805,3134,Dita Parlo,1328139091 +200805,3134,Erich von Stroheim,1328139067 +200805,3134,Jean Gabin,1328139081 +200805,3134,Jean Renoir,1328139072 +200805,3134,Marcel Dalio,1328139086 +200805,3134,Pierre Fresnay,1328139097 +200805,3134,prisoners of war,1328139107 +200805,3134,war,1328139100 +200805,3134,World War I,1328139105 +200805,3171,adultery,1342112289 +200805,3171,Jack Clayton,1342112286 +200805,3171,Laurence Harvey,1335769239 +200805,3171,Simone Signoret,1335769234 +200805,3435,adultery,1329947814 +200805,3435,Barbara Stanwyck,1329947792 +200805,3435,Billy Wilder,1329947792 +200805,3435,film noir,1329947793 +200805,3435,fraud,1329947810 +200805,3435,Fred MacMurray,1329947792 +200805,3435,murder,1329947797 +200805,3462,Charlie Chaplin,1334892197 +200805,3462,Paulette Goddard,1334892210 +200805,3462,social commentary,1334892242 +200805,3467,Brandon De Wilde,1284483051 +200805,3467,Martin Ritt,1284483025 +200805,3467,Melvyn Douglas,1284483010 +200805,3467,Patricia Neal,1284483018 +200805,3467,Paul Newman,1284483014 +200805,3545,Bob Fosse,1287693263 +200805,3545,Joel Grey,1287693251 +200805,3545,Liza Minnelli,1287693256 +200805,3545,Michael York,1287693237 +200805,3739,Charles Ruggles,1342112007 +200805,3739,Criterion,1337380367 +200805,3739,Edward Everett Horton,1342112007 +200805,3739,Ernst Lubitsch,1337380374 +200805,3739,Herbert Marshall,1337380450 +200805,3739,Kay Francis,1337380454 +200805,3739,love triangle,1342112012 +200805,3739,Miriam Hopkins,1337380500 +200805,3740,James Hong,1274373687 +200805,3740,John Carpenter,1274373641 +200805,3740,Kim Cattrall,1274373660 +200805,3740,Kurt Russell,1274373638 +200805,3854,based on a true story,1324310990 +200805,3854,Juliane Köhler,1324577597 +200805,3854,LGBT,1324310980 +200805,3854,Maria Schrader,1324577621 +200805,3854,Max Färberböck,1324310969 +200805,3854,WWII,1324577628 +200805,3965,Barbara Stanwyck,1341405364 +200805,3965,film noir,1341405358 +200805,3965,Kirk Douglas,1341405371 +200805,3965,Lewis Milestone,1341405355 +200805,3965,Lizabeth Scott,1341405377 +200805,3965,Van Heflin,1341405367 +200805,4427,Anthony Hopkins,1246869914 +200805,4427,Katharine Hepburn,1246869917 +200805,4427,Nigel Terry,1271410169 +200805,4427,Timothy Dalton,1246869920 +200805,4798,Cary Grant,1287873189 +200805,4798,Ingrid Bergman,1287873187 +200805,4798,Stanley Donen,1287873191 +200805,4920,adultery,1339988206 +200805,4920,Bette Davis,1339988204 +200805,4920,Claude Rains,1339988216 +200805,4920,Paul Henreid,1339988212 +200805,4999,adultery,1342111337 +200805,4999,divorce,1342111423 +200805,4999,marriage,1342111420 +200805,4999,Mary Astor,1342111408 +200805,4999,mid-life crisis,1342112409 +200805,4999,Paris,1342111430 +200805,4999,Ruth Chatterton,1342111402 +200805,4999,Walter Huston,1342111398 +200805,4999,William Wyler,1342111334 +200805,5525,Martina Gedeck,1246613539 +200805,5825,Anton Walbrook,1275474149 +200805,5825,Deborah Kerr,1275474145 +200805,5825,Powell and Pressburger,1275474141 +200805,5825,Roger Livesey,1275474156 +200805,5825,war,1275474187 +200805,5991,Catherine Zeta-Jones,1325765231 +200805,5991,musical,1325765243 +200805,5991,Renee Zellweger,1325765231 +200805,5991,Rob Marshall,1325765240 +200805,6216,Africa,1324577541 +200805,6216,Caroline Link,1324577520 +200805,6216,Juliane Köhler,1324577504 +200805,6216,Kenya,1324577994 +200805,6216,Merab Ninidze,1324577513 +200805,6216,WWII,1324577526 +200805,6516,Anatole Litvak,1275828069 +200805,6516,Helen Hayes,1275828062 +200805,6516,Ingrid Bergman,1275828060 +200805,6516,Yul Brynner,1275828066 +200805,6538,Charlotte Rampling,1324976997 +200805,6538,François Ozon,1324977004 +200805,6538,Ludivine Sagnier,1324977010 +200805,6660,Anton Walbrook,1280055400 +200805,6660,Michael Powell and Emeric Pressburger,1280055416 +200805,6660,Moira Shearer,1280055400 +200805,7116,Henri-Georges Clouzot,1335766463 +200805,7116,Simone Signoret,1247821563 +200805,7143,Hiroyuki Sanada,1262969811 +200805,7143,Ken Watanabe,1262969800 +200805,7143,Tom Cruise,1262969815 +200805,7181,Oskar Werner,1260033231 +200805,7181,Simone Signoret,1260033224 +200805,7181,Vivien Leigh,1260033226 +200805,7585,David Lean,1324143350 +200805,7585,Katharine Hepburn,1324143358 +200805,7585,Rossano Brazzi,1324143367 +200805,7669,Colin Firth,1323353901 +200805,7669,Jane Austen,1323353916 +200805,7669,Jennifer Ehle,1323353912 +200805,7821,Africa,1343310637 +200805,7821,afrika korps,1343310634 +200805,7821,Anthony Quayle,1343310605 +200805,7821,espionage,1343310653 +200805,7821,Harry Andrews,1343310605 +200805,7821,John Mills,1343310590 +200805,7821,Sylvia Sims,1343310605 +200805,7821,war,1343310608 +200805,7821,World War II,1343310627 +200805,8033,Audrey Hepburn,1269080544 +200805,8033,Eli Wallach,1269080556 +200805,8033,Peter O'Toole,1269080546 +200805,8033,William Wyler,1269080551 +200805,8143,Anton Walbrook,1335731327 +200805,8143,circus,1335731344 +200805,8143,courtesan,1335731340 +200805,8143,Criterion,1335731319 +200805,8143,Martine Carol,1335731331 +200805,8143,Max Ophüls,1335731323 +200805,8143,Peter Ustinov,1335731336 +200805,8256,cross dressing,1342111119 +200805,8256,Greta Garbo,1342111103 +200805,8256,lesbian subtext,1342111139 +200805,8256,pre-code Hollywood,1348224317 +200805,8256,Rouben Mamoulian,1342111106 +200805,8256,royalty,1342111514 +200805,8256,Sweden,1342111110 +200805,8338,Deborah Kerr,1270708524 +200805,8338,Jean Simmons,1270708529 +200805,8424,adultery,1342111354 +200805,8424,Chester Morris,1334484513 +200805,8424,Conrad Nagel,1334484520 +200805,8424,divorce,1334484531 +200805,8424,Norma Shearer,1334484503 +200805,8424,pre-code Hollywood,1334900556 +200805,8424,Robert Montgomery,1334484508 +200805,8518,Charles Bickford,1342110981 +200805,8518,Clarence Brown,1342110974 +200805,8518,Greta Garbo,1342110971 +200805,8518,pre-code Hollywood,1342110987 +200805,8521,Fredric March,1342111755 +200805,8521,Miriam Hopkins,1342111769 +200805,8521,murder,1342111832 +200805,8521,nudity,1342111804 +200805,8521,pre-code Hollywood,1342111769 +200805,8521,Robert Louis Stevenson,1342111782 +200805,8521,Rouben Mamoulian,1342111759 +200805,8584,Gene Tierney,1261361434 +200805,8879,Agatha Christie,1272961194 +200805,8879,Albert Finney,1272961199 +200805,8879,Anthony Perkins,1272961204 +200805,8879,Ingrid Bergman,1272961174 +200805,8879,Jacqueline Bisset,1272961176 +200805,8879,Lauren Bacall,1272961170 +200805,8879,Michael York,1272961216 +200805,8879,Sean Connery,1272961179 +200805,8879,Sidney Lumet,1272961186 +200805,8879,Vanessa Redgrave,1272961182 +200805,9010,Guillaume Canet,1252498742 +200805,9010,Marion Cotillard,1252498742 +200805,25763,G.W. Pabst,1342111265 +200805,25763,lesbian subtext,1342111243 +200805,25763,Louise Brooks,1279460983 +200805,25778,Barbara Stanwyck,1334328205 +200805,25778,Ben Lyon,1334328219 +200805,25778,Clark Gable,1334328223 +200805,25778,Joan Blondell,1334328213 +200805,25778,pre-code Hollywood,1334900528 +200805,25778,prohibition,1334328265 +200805,25789,Anna May Wong,1342111031 +200805,25789,Clive Brook,1342111035 +200805,25789,Josef von Sternberg,1342111013 +200805,25789,Marlene Dietrich,1342111017 +200805,25789,pre-code Hollywood,1342111023 +200805,25789,yellowface,1342111041 +200805,25832,adultery,1348224234 +200805,25832,Clark Gable,1348224229 +200805,25832,James Stewart,1348224248 +200805,25832,Jean Harlow,1348224229 +200805,25832,Myrna Loy,1348224222 +200805,25833,George Cukor,1276447407 +200805,25833,Greta Garbo,1276447401 +200805,25833,Henry Daniell,1276447423 +200805,25833,Lionel Barrymore,1276447412 +200805,25833,Robert Taylor,1276447417 +200805,25833,tuberculosis,1342112519 +200805,25868,Barbara Stanwyck,1335203370 +200805,25868,Dana Andrews,1335203422 +200805,25868,Gary Cooper,1335203376 +200805,25868,Howard Hawks,1335203384 +200805,25868,mafia,1335203432 +200805,25868,screwball,1335203392 +200805,25891,Don Ameche,1270984009 +200805,25891,Ernst Lubitsch,1270984016 +200805,25891,Gene Tierney,1270984002 +200805,25930,Carol Reed,1279889327 +200805,25930,James Mason,1279889327 +200805,25972,Barbara Stanwyck,1336773209 +200805,25972,Fritz Lang,1336773215 +200805,25972,Marilyn Monroe,1336773208 +200805,25972,melodrama,1336773220 +200805,25972,small town,1336774119 +200805,25993,Criterion,1334680107 +200805,25993,Douglas Sirk,1334680091 +200805,25993,Jane Wyman,1334680104 +200805,25993,melodrama,1334680095 +200805,25993,Rock Hudson,1334680101 +200805,25996,George Cukor,1275149539 +200805,25996,Jack Carson,1275149541 +200805,25996,James Mason,1275149527 +200805,25996,Judy Garland,1275149535 +200805,26111,John Gielgud,1281258365 +200805,26111,Peter O'Toole,1281258368 +200805,26111,Richard Burton,1281258368 +200805,26178,Albert Finney,1281871452 +200805,26178,Audrey Hepburn,1281871454 +200805,26178,Stanley Donen,1281871458 +200805,31353,Barbara Stanwyck,1340811936 +200805,31353,David Manners,1340811939 +200805,31353,evangelicalism,1342112228 +200805,31353,Frank Capra,1340811945 +200805,31353,fraud,1342112240 +200805,31353,pre-code Hollywood,1342112173 +200805,31410,Bruno Ganz,1247821863 +200805,31410,war,1247821863 +200805,31588,Jacques Becker,1335766025 +200805,31588,Serge Reggiani,1335766034 +200805,31588,Simone Signoret,1335766029 +200805,31854,Gary Cooper,1275537586 +200805,31854,Josef von Sternberg,1275537592 +200805,31854,Marlene Dietrich,1275537587 +200805,31854,pre-code Hollywood,1334900762 +200805,32160,Carol Lombard,1333608316 +200805,32160,Howard Hawks,1333608311 +200805,32160,John Barrymore,1333608309 +200805,32160,theatre,1333608321 +200805,32349,Barbara Stanwyck,1334946931 +200805,32349,class issues,1334946938 +200805,32349,King Vidor,1334946922 +200805,32811,G.W. Pabst,1282873535 +200805,32811,Louise Brooks,1282873541 +200805,34469,Alfred E. Green,1335203728 +200805,34469,Barbara Stanwyck,1330217237 +200805,34469,George Brent,1330217252 +200805,34469,John Wayne,1330217258 +200805,34469,pre-code Hollywood,1330217243 +200805,40629,Jane Austen,1248332061 +200805,40629,Keira Knightley,1248332061 +200805,40629,Matthew MacFadyen,1248332061 +200805,40755,Barbara Stanwyck,1333121127 +200805,40755,chorus,1333121177 +200805,40755,Samuel Fuller,1333121132 +200805,40755,western,1333121137 +200805,42197,black comedy,1324742202 +200805,42197,Kristin Scott Thomas,1324742190 +200805,42197,Maggie Smith,1324742194 +200805,42197,Patrick Swayze,1324742205 +200805,42197,Rowan Atkinson,1324742195 +200805,42518,Barbara Stanwyck,1336317199 +200805,42518,Christmas,1336317200 +200805,42518,Dennis Morgan,1336317205 +200805,42518,SZ Sakall,1336317220 +200805,43482,Barbara Stanwyck,1334831258 +200805,43482,Frank Capra,1334831253 +200805,43482,Nils Asther,1334833076 +200805,43482,pre-code Hollywood,1334833093 +200805,43482,yellowface,1334831280 +200805,43744,gay,1248580180 +200805,43744,Lena Headey,1248580180 +200805,43744,Matthew Goode,1248580180 +200805,44555,Martina Gedeck,1246613565 +200805,44555,Ulrich Mühe,1246613580 +200805,44555,Ulrich Muhe,1248147386 +200805,45170,espionage,1348224256 +200805,45170,Greta Garbo,1348224253 +200805,45170,Lionel Barrymore,1348224275 +200805,45170,Paris,1348224278 +200805,45170,pre-code Hollywood,1348224263 +200805,45170,Ramon Novarro,1348224268 +200805,48774,Clive Owen,1279962588 +200805,48774,Julianne Moore,1279962587 +200805,48780,Christian Bale,1247821439 +200805,48780,David Bowie,1247821436 +200805,48780,Hugh Jackman,1247821430 +200805,48780,Michael Caine,1247821445 +200805,48780,Scarlett Johansson,1247821433 +200805,49530,Jennifer Connelly,1247821921 +200805,49530,Leonardo DiCaprio,1247821920 +200805,51255,comedy,1247821841 +200805,51255,Nick Frost,1247821842 +200805,51255,Simon Pegg,1247821842 +200805,51678,Deborah Kerr,1275201897 +200805,51678,Greer Garson,1275201889 +200805,51678,James Mason,1275201865 +200805,51678,John Gielgud,1275201881 +200805,51678,Joseph L. Mankiewicz,1275201871 +200805,51678,Marlon Brando,1275201875 +200805,51678,Shakespeare,1275201905 +200805,52742,Anthony Mann,1333556613 +200805,52742,Barbara Stanwyck,1333556621 +200805,52742,Criterion,1333556614 +200805,52742,Freudian,1333557141 +200805,52742,Walter Huston,1333557166 +200805,53443,Barbara Stanwyck,1334764193 +200805,53443,Christmas,1334764208 +200805,53443,courtroom,1335454752 +200805,53443,Fred MacMurray,1334764198 +200805,53443,Preston Sturges,1334764220 +200805,54372,Kristin Scott Thomas,1243149045 +200805,54372,mystery,1243149053 +200805,54881,documentary,1208338798 +200805,54881,geek,1208338798 +200805,55052,James McAvoy,1247821345 +200805,55052,Keira Knightley,1247821345 +200805,55052,romance,1208338824 +200805,55052,war,1208338872 +200805,55106,Criterion,1342111911 +200805,55106,Ernst Lubitsch,1327241598 +200805,55106,Fredric March,1327241603 +200805,55106,Gary Cooper,1327241607 +200805,55106,love triangle,1342111940 +200805,55106,ménage à trois,1327241942 +200805,55106,Miriam Hopkins,1327241613 +200805,55106,pre-code Hollywood,1327241657 +200805,55118,Armin Mueller-Stahl,1328138068 +200805,55118,David Cronenberg,1328138052 +200805,55118,Naomi Watts,1328138046 +200805,55118,organized crime,1328138083 +200805,55118,prostitution,1328138073 +200805,55118,Viggo Mortensen,1328138044 +200805,55118,Vincent Cassel,1328138058 +200805,55118,violence,1328138078 +200805,55280,Emily Mortimer,1247821291 +200805,55280,Ryan Gosling,1247821291 +200805,55363,Brad Pitt,1208338903 +200805,55363,Casey Affleck,1247821245 +200805,55363,Sam Rockwell,1208338902 +200805,55363,western,1247821248 +200805,56367,comedy,1247821269 +200805,56367,Ellen Page,1247821270 +200805,56367,Michael Cera,1208338932 +200805,57017,Anne Bancroft,1275063834 +200805,57017,Jack Clayton,1275063840 +200805,57017,James Mason,1275063837 +200805,57017,Maggie Smith,1275063842 +200805,57017,Peter Finch,1275063844 +200805,57669,Brendan Gleeson,1247821821 +200805,57669,Colin Farrell,1247821793 +200805,57669,comedy,1247821821 +200805,57669,Ralph Fiennes,1247821793 +200805,58740,Claudette Colbert,1339285836 +200805,58740,Criterion,1339285823 +200805,58740,Ernst Lubitsch,1339285821 +200805,58740,Maurice Chevalier,1339285831 +200805,58740,Miriam Hopkins,1339285840 +200805,58740,musical,1342111871 +200805,58740,pre-code Hollywood,1342111867 +200805,58740,royalty,1342111877 +200805,59141,1980s,1335511099 +200805,59141,bullying,1335511085 +200805,59141,coming of age,1335511095 +200805,59141,religion,1335511091 +200805,59141,school,1335511088 +200805,59369,Liam Neeson,1284654785 +200805,61132,Robert Downey Jr.,1248415368 +200805,61132,satire,1248415368 +200805,61236,Ari Folman,1276683952 +200805,61289,Hideaki Ito,1265385213 +200805,61289,Kaori Momoi,1265385221 +200805,66547,Barbara Rush,1283683559 +200805,66547,James Mason,1283683454 +200805,66547,Nicholas Ray,1283683456 +200805,66547,Walter Matthau,1283683456 +200805,67464,Ann Dvorak,1334900159 +200805,67464,Bette Davis,1334900167 +200805,67464,drug use,1334900394 +200805,67464,Joan Blondell,1334900155 +200805,67464,kidnapping,1334900190 +200805,67464,pre-code Hollywood,1334900512 +200805,67464,Prohibition,1334900177 +200805,67464,Warren William,1334900185 +200805,67508,Martina Gedeck,1248426622 +200805,67508,Moritz Bleibtreu,1248426622 +200805,67702,adultery,1342111363 +200805,67702,marriage,1342111374 +200805,67702,Noël Coward,1339360086 +200805,67702,Norma Shearer,1339360061 +200805,67702,pre-code Hollywood,1339360076 +200805,67702,Robert Montgomery,1339360065 +200805,67997,Gina McKee,1263219861 +200805,67997,Paul Higgins,1263219868 +200805,67997,Peter Capaldi,1263219836 +200805,67997,Tom Hollander,1263219831 +200805,68073,Bill Nighy,1275299444 +200805,68073,Jack Davenport,1275299460 +200805,68073,Nick Frost,1275299463 +200805,68073,Philip Seymour Hoffman,1275299447 +200805,68073,Richard Curtis,1275299449 +200805,68073,Tom Sturridge,1275299452 +200805,68135,Zac Efron,1247821091 +200805,68157,Christoph Waltz,1251199650 +200805,68157,Diane Kruger,1251199604 +200805,68157,Mélanie Laurent,1251199631 +200805,68157,Michael Fassbender,1251199644 +200805,68157,Quentin Tarantino,1261990777 +200805,68269,Emily Blunt,1275545416 +200805,68269,Jean-Marc Vallée,1275545428 +200805,68269,Mark Strong,1275545425 +200805,68269,Miranda Richardson,1275545406 +200805,68269,Paul Bettany,1275545412 +200805,68269,Rupert Friend,1275545398 +200805,68358,sci-fi,1247821530 +200805,68358,Simon Pegg,1247821519 +200805,68358,Zachary Quinto,1247821525 +200805,68848,Rachel Weisz,1254563110 +200805,68848,Rinko Kikuchi,1254563135 +200805,69005,factory,1335645977 +200805,69005,feminism,1335645922 +200805,69005,George Brent,1335645930 +200805,69005,Michael Curtiz,1335645937 +200805,69005,pre-code Hollywood,1335645922 +200805,69005,Ruth Chatterton,1335645927 +200805,69005,William A. Wellman,1335645972 +200805,69299,Clark Gable,1342111602 +200805,69299,courtroom,1342111616 +200805,69299,Leslie Howard,1342111602 +200805,69299,Lionel Barrymore,1342111602 +200805,69299,murder,1342111602 +200805,69299,Norma Shearer,1342111567 +200805,69299,pre-code Hollywood,1342111605 +200805,69481,Jeremy Renner,1265538094 +200805,69481,Ralph Fiennes,1265538099 +200805,69498,Anton Walbrook,1280415705 +200805,69498,Daniel Gélin,1280415917 +200805,69498,Danielle Darrieux,1280415885 +200805,69498,Fernand Gravey,1280415877 +200805,69498,Gérard Philipe,1280415895 +200805,69498,Isa Miranda,1280415936 +200805,69498,Jean-Louis Barrault,1280415924 +200805,69498,Max Ophüls,1280415835 +200805,69498,Odette Joyeux,1280415943 +200805,69498,Serge Reggiani,1280415899 +200805,69498,Simone Signoret,1280415835 +200805,69498,Simone Simon,1280415894 +200805,69640,Johnny Depp,1249486037 +200805,69640,Marion Cotillard,1249486037 +200805,69757,Joseph Gordon-Levitt,1261878498 +200805,69844,Alan Rickman,1248000308 +200805,69844,Daniel Radcliffe,1248000311 +200805,69844,Emma Watson,1248000316 +200805,69844,Tom Felton,1248000321 +200805,69911,Alida Valli,1308895789 +200805,69911,bitter ending,1335204294 +200805,69911,Criterion,1308895804 +200805,69911,Farley Granger,1308895797 +200805,69911,Luchino Visconti,1308895794 +200805,69911,melodrama,1335204299 +200805,70286,sci-fi,1271845679 +200805,70286,Sharlto Copley,1271845672 +200805,70567,Hugh Dancy,1262766489 +200805,70567,Rose Byrne,1262766504 +200805,71327,Abbie Cornish,1266561790 +200805,71327,Ben Whishaw,1266561793 +200805,71738,Gene Tierney,1276995586 +200805,71738,Josef von Sternberg,1276995624 +200805,71738,Ona Munson,1276995600 +200805,71738,Victor Mature,1276995590 +200805,71738,Walter Huston,1276995633 +200805,71936,Barbara Stanwyck,1335203245 +200805,71936,bitter ending,1335204202 +200805,71936,Douglas Sirk,1335203240 +200805,71936,Fred MacMurray,1335203250 +200805,71936,Joan Bennett,1335203257 +200805,71936,Los Angeles,1341405439 +200805,71936,melodrama,1335203271 +200805,71936,mid-life crisis,1335203265 +200805,72011,Anna Kendrick,1275236359 +200805,72011,George Clooney,1275236345 +200805,72011,Jason Bateman,1275236349 +200805,72011,Jason Reitman,1275236377 +200805,72011,Vera Farmiga,1275236368 +200805,72720,Colin Firth,1268989030 +200805,72720,Julianne Moore,1268989031 +200805,72720,Matthew Goode,1268989041 +200805,72720,Nicholas Hoult,1268989038 +200805,72720,Tom Ford,1268989037 +200805,72998,Sigourney Weaver,1261878467 +200805,73017,Eddie Marsan,1263726402 +200805,73017,Jude Law,1263726388 +200805,73017,Mark Strong,1263726388 +200805,73017,Rachel McAdams,1263726394 +200805,73017,Robert Downey Jr.,1263726390 +200805,73344,Jacques Audiard,1275409630 +200805,73344,Niels Arestrup,1275409632 +200805,73344,Tahar Rahim,1275409626 +200805,73630,Kay Francis,1338809052 +200805,73630,tragedy,1338809061 +200805,73630,William Powell,1338809057 +200805,74545,Ewan McGregor,1314993523 +200805,74545,Kim Cattrall,1314993549 +200805,74545,Olivia Williams,1314993533 +200805,74545,Pierce Brosnan,1314993527 +200805,74545,Roman Polanski,1314993519 +200805,76079,Amanda Seyfried,1324999106 +200805,76079,Atom Egoyan,1324999129 +200805,76079,Julianne Moore,1324999113 +200805,76079,LGBT,1324999119 +200805,76079,Liam Neeson,1324999116 +200805,76089,adultery,1342111210 +200805,76089,Clarence Brown,1275379375 +200805,76089,duel,1342112490 +200805,76089,Greta Garbo,1275379369 +200805,76089,John Gilbert,1275379368 +200805,76089,silent,1342111194 +200805,76293,James Franco,1281176238 +200805,76293,Kristen Wiig,1281176722 +200805,76293,Leighton Meester,1281176241 +200805,76293,Mark Wahlberg,1281176714 +200805,76293,Steve Carell,1281176228 +200805,76293,Taraji P. Henson,1281176717 +200805,76293,Tina Fey,1281176228 +200805,76293,William Fichtner,1281176233 +200805,77328,Andrew Garfield,1288477944 +200805,77328,David Morrissey,1288477945 +200805,77328,Julian Jarrold,1288477958 +200805,77330,James Fox,1288542011 +200805,77330,Paddy Considine,1288542013 +200805,77843,Eddie Marsan,1283084145 +200805,77843,Gemma Arterton,1283084133 +200805,77843,J Blakeson,1283084140 +200805,77843,Martin Compston,1283084144 +200805,78105,Mike Newell,1275801805 +200805,79132,Christopher Nolan,1282873672 +200805,79132,Dileep Rao,1282873647 +200805,79132,Ellen Page,1282873606 +200805,79132,Joseph Gordon-Levitt,1282873637 +200805,79132,Ken Watanabe,1282873654 +200805,79132,Leonardo DiCaprio,1282873603 +200805,79132,Marion Cotillard,1282873660 +200805,79132,Michael Caine,1282873641 +200805,79132,Tom Hardy,1282873611 +200805,79955,Criterion,1342111964 +200805,79955,Ernst Lubitsch,1342111691 +200805,79955,Jeanette MacDonald,1342111700 +200805,79955,Maurice Chevalier,1342111707 +200805,79955,musical,1342111719 +200805,79955,pre-code Hollywood,1342111715 +200805,79955,royalty,1342111721 +200805,80463,Aaron Sorkin,1298250669 +200805,80463,Andrew Garfield,1298250688 +200805,80463,Armie Hammer,1298250696 +200805,80463,David Fincher,1298250675 +200805,80463,Jesse Eisenberg,1298250681 +200805,80906,Charles Ferguson,1315125562 +200805,80906,politics,1315125565 +200805,81591,alter ego,1315125593 +200805,81591,ballet,1315125573 +200805,81591,Clint Mansell,1298250562 +200805,81591,Darren Aronofsky,1298250538 +200805,81591,Mila Kunis,1298250558 +200805,81591,Natalie Portman,1298250541 +200805,81591,Vincent Cassel,1298250549 +200805,81591,Winona Ryder,1298250543 +200805,81845,Colin Firth,1295605469 +200805,81845,Geoffrey Rush,1295605480 +200805,81845,Helena Bonham Carter,1295605489 +200805,82459,19th century,1334681711 +200805,82459,based on a book,1334681719 +200805,82459,Coen Brothers,1299109919 +200805,82459,Hailee Steinfeld,1299109936 +200805,82459,Jeff Bridges,1299109928 +200805,82459,Josh Brolin,1299109925 +200805,82459,Matt Damon,1299109923 +200805,82459,remake,1334681651 +200805,82459,revenge,1334681646 +200805,82459,Western,1299109943 +200805,85414,Duncan Jones,1315062488 +200805,85414,Jake Gyllenhaal,1315062493 +200805,85414,science fiction,1315062508 +200805,85414,time travel,1315062505 +200805,85414,Vera Farmiga,1315062501 +200805,86833,Kristen Wiig,1310227975 +200805,86833,Maya Rudolph,1310227972 +200805,86833,Melissa McCarthy,1310227983 +200805,86833,Paul Feig,1310227988 +200805,86833,Rose Byrne,1310227968 +200805,86862,Britain,1336292029 +200805,86862,Mitchell Leisen,1336292038 +200805,86862,Paulette Goddard,1336292014 +200805,86862,pygmalion,1336292020 +200805,86862,Ray Milland,1336292024 +200805,87222,animation,1325433039 +200805,87222,Jennifer Yuh,1325433078 +200805,87222,kung fu,1325433085 +200805,88140,Chris Evans,1314991074 +200805,88140,Dominic Cooper,1314991105 +200805,88140,Hayley Atwell,1314991086 +200805,88140,Hugo Weaving,1314991098 +200805,88140,Joe Johnston,1314991107 +200805,88140,Natalie Dormer,1314991114 +200805,88163,adultery,1342112304 +200805,88163,divorce,1342112329 +200805,88163,Emma Stone,1342112307 +200805,88163,Julianne Moore,1342112322 +200805,88163,romantic comedy,1342112326 +200805,88163,Ryan Gosling,1342112311 +200805,88163,Steve Carell,1342112315 +200805,88235,black comedy,1325349917 +200805,88235,Brendan Gleeson,1325349897 +200805,88235,Don Cheadle,1325349908 +200805,88235,Mark Strong,1325349891 +200805,88327,Cheh Chang,1315126876 +200805,88327,David Chiang,1315126853 +200805,89085,Espionage,1325433007 +200805,89085,Helen Mirren,1325432975 +200805,89085,Jessica Chastain,1325432980 +200805,89085,Mossad,1325432996 +200805,89085,Nazis,1325433000 +200805,89085,Sam Worthington,1325432993 +200805,89085,Tom Wilkinson,1325432987 +200805,89753,Benedict Cumberbatch,1317472779 +200805,89753,Colin Firth,1317472768 +200805,89753,Gary Oldman,1317472760 +200805,89753,John Hurt,1317472863 +200805,89753,Tom Hardy,1317472786 +200805,89753,Tomas Alfredson,1317472794 +200805,89761,adultery,1328137827 +200805,89761,biopic,1328137824 +200805,89761,David Cronenberg,1328137809 +200805,89761,Keira Knightley,1328137804 +200805,89761,Michael Fassbender,1328137798 +200805,89761,psychology,1328137815 +200805,89761,Viggo Mortensen,1328137793 +200805,89804,Evan Rachel Wood,1322694434 +200805,89804,George Clooney,1322694434 +200805,89804,Ryan Gosling,1322694442 +200805,91126,horses,1335422430 +200805,91126,Steven Spielberg,1335422426 +200805,91126,tearjerker,1335422435 +200805,91126,war,1335452994 +200805,91126,World War I,1335452985 +200805,91134,biopic,1335459080 +200805,91134,Eddie Redmayne,1335459105 +200805,91134,filmmaking,1335459096 +200805,91134,Hollywood,1335459091 +200805,91134,Kenneth Branagh,1335459111 +200805,91134,Marilyn Monroe,1335459075 +200805,91134,Michelle Williams,1335459086 +200805,91134,true story,1335459069 +200805,91542,Guy Ritchie,1335387125 +200805,91542,Jude Law,1335387135 +200805,91542,Noomi Rapace,1335387128 +200805,91542,Robert Downey Jr.,1335387133 +200805,91890,based on true story,1327099911 +200805,91890,biopic,1327099905 +200805,91890,british politics,1327099933 +200805,91890,dementia,1327099916 +200805,91890,Falklands War,1327099877 +200805,91890,Harry Lloyd,1327099894 +200805,91890,IRA,1327099879 +200805,91890,Jim Broadbent,1327099886 +200805,91890,Meryl Streep,1327099872 +200805,91890,prime minister,1327099901 +200805,93510,Channing Tatum,1332943945 +200805,93510,Dave Franco,1332943944 +200805,93510,drugs,1332943967 +200805,93510,high school,1332943967 +200805,93510,Ice Cube,1332943979 +200805,93510,Jonah Hill,1332943944 +200805,93510,meta,1332943985 +200805,93510,police,1332943967 +200818,296,1990s,1434725853 +200818,296,crime,1434725853 +200818,296,rough,1434725853 +200818,593,chilling,1436123499 +200818,593,intense,1436123499 +200818,593,scary,1436123499 +200818,1214,cyborg,1434991511 +200818,5349,Comic book,1436023909 +200818,7502,military,1434725910 +200818,7502,not a movie,1434725884 +200818,7502,tv miniseries,1434725905 +200818,7502,war,1434725912 +200818,7502,World War II,1434725915 +200818,60074,superhero,1434729598 +200818,103772,x-men,1435436905 +200818,109487,space,1435216243 +200818,109487,time-travel,1435216237 +200818,135528,Holocaust,1435215758 +200823,260,George Lucas,1444236071 +200823,260,scifi cult,1444236039 +200834,260,sci-fi,1433489749 +200834,260,space action,1433489744 +200838,318,conspiracy theory,1433934677 +200838,318,jail break,1433934677 +200838,318,morgan freeman,1433934677 +200838,31685,Super Cool,1433934608 +200877,4531,Arnold Schwarzenegger,1180543128 +200880,22,detective,1368819149 +200880,22,suspenseful,1368818805 +200880,25,melancholic,1368818021 +200880,32,great ending,1368819013 +200880,32,original,1368817849 +200880,39,teen movie,1368818740 +200880,46,women,1368818625 +200880,47,great ending,1368819014 +200880,50,excellent script,1368818375 +200880,111,masterpiece,1368818249 +200880,218,unlikely friendships,1368819086 +200880,218,women,1368818625 +200880,288,brutality,1368818876 +200880,290,brutality,1368818876 +200880,296,masterpiece,1368818249 +200880,318,great ending,1368819013 +200880,549,musicians,1368818711 +200880,587,supernatural,1368818344 +200880,593,excellent script,1368818375 +200880,724,teen movie,1368818740 +200880,735,splatter,1368818535 +200880,799,supernatural,1368818344 +200880,866,neo-noir,1368818934 +200880,866,stylish,1368818447 +200880,898,screwball comedy,1368819252 +200880,904,suspenseful,1368818805 +200880,910,screwball comedy,1368819252 +200880,913,noir thriller,1368818159 +200880,923,masterpiece,1368818249 +200880,924,masterpiece,1368818249 +200880,1033,unlikely friendships,1368819086 +200880,1088,dancing,1368818958 +200880,1089,original,1368817849 +200880,1172,mentor,1368818223 +200880,1188,dancing,1368818958 +200880,1210,great ending,1368819013 +200880,1213,masterpiece,1368818249 +200880,1219,suspenseful,1368818805 +200880,1241,splatter,1368818535 +200880,1245,neo-noir,1368818934 +200880,1248,noir thriller,1368818159 +200880,1249,stylish,1368818447 +200880,1258,masterpiece,1368818249 +200880,1259,unlikely friendships,1368819086 +200880,1264,stylish,1368818447 +200880,1285,teen movie,1368818740 +200880,1387,suspenseful,1368818805 +200880,1537,dancing,1368818958 +200880,1617,detective,1368819149 +200880,1617,neo-noir,1368818934 +200880,1620,detective,1368819148 +200880,1678,women,1368818625 +200880,1704,excellent script,1368818375 +200880,1704,mentor,1368818223 +200880,1719,melancholic,1368818021 +200880,1754,supernatural,1368818344 +200880,1783,noir thriller,1368818159 +200880,1784,excellent script,1368818375 +200880,1968,teen movie,1368818740 +200880,2076,neo-noir,1368818934 +200880,2144,teen movie,1368818740 +200880,2194,excellent script,1368818375 +200880,2291,original,1368817849 +200880,2352,unlikely friendships,1368819086 +200880,2420,mentor,1368818223 +200880,2726,noir thriller,1368818159 +200880,2762,great ending,1368819014 +200880,2858,excellent script,1368818375 +200880,2859,musicians,1368818711 +200880,2863,musicians,1368818711 +200880,2866,musicians,1368818711 +200880,2915,teen movie,1368818740 +200880,3005,detective,1368819149 +200880,3067,screwball comedy,1368819252 +200880,3083,women,1368818625 +200880,3129,musicians,1368818711 +200880,3418,women,1368818625 +200880,3499,suspenseful,1368818805 +200880,3791,dancing,1368818958 +200880,4020,supernatural,1368818344 +200880,4054,dancing,1368818958 +200880,4878,original,1368817849 +200880,5065,supernatural,1368818344 +200880,5266,suspenseful,1368818805 +200880,5622,evangelicalism,1300857487 +200880,5622,MORMON,1300857358 +200880,5622,propaganda in disguise,1300857468 +200880,5693,dancing,1368818958 +200880,6707,splatter,1368818535 +200880,6731,splatter,1368818535 +200880,7013,noir thriller,1368818159 +200880,33834,splatter,1368818535 +200880,34437,melancholic,1368818021 +200880,37733,brutality,1368818876 +200880,42718,parkour,1304785183 +200880,42723,splatter,1368818535 +200880,48304,brutality,1368818876 +200880,53123,musicians,1368818711 +200880,74668,parkour,1304785193 +200907,6987,psychology,1221541574 +200913,1258,horror,1231925693 +200913,3030,Akira Kurosawa,1176672340 +200913,3030,Best Performance: Toshiro Mifune as Sanjuro Kuwabatake,1176672335 +200947,72998,Everything is outstanding,1284403942 +200958,27909,drunkenness,1307014943 +200958,27909,Love story,1307014943 +200958,27909,romance,1433093707 +200958,27909,tragedy,1433093707 +200958,27909,unconventional romance,1433093707 +200958,27909,wind,1307014943 +200958,74688,nicholas sparks,1306826857 +200973,57502,anime,1423424782 +200973,57502,surreal,1423424782 +200973,57502,weird,1423424782 +200973,107314,adaptation,1424642775 +200973,107314,gore,1424642775 +200973,107314,twist ending,1424642775 +200973,120919,action,1433014435 +200973,120919,korean,1433014435 +200973,120919,transexual,1433014435 +200996,5700,Donald Pleasence,1318095387 +200996,5700,MST3K,1318095375 +200996,6302,MST3K,1318095426 +200996,6302,Peter Graves,1318095433 +200996,9002,vikings,1327353309 +200998,1,humorous,1445294945 +200998,1,pixar,1445294920 +200998,6377,Pixar,1445559729 +200998,68954,dreams,1445559702 +200998,68954,Pixar,1445559669 +200998,68954,touching,1445559676 +201001,2371,chevy chase,1242949931 +201001,66639,strong woman,1242950195 +201014,51662,blood,1209579517 +201020,260,spaceships,1432801454 +201020,260,Star Wars,1432801466 +201029,4993,beautifully filmed,1273523866 +201029,72720,good cinematography,1273523415 +201075,22,thriller,1368506427 +201075,29,dark,1368505874 +201075,31,inspirational,1368506080 +201075,111,dark,1368505874 +201075,111,mental illness,1368506114 +201075,216,stupid,1368506374 +201075,555,ensemble cast,1368505929 +201075,555,violent,1368506448 +201075,832,tense,1368506397 +201075,832,thriller,1368506426 +201075,861,police,1368506332 +201075,946,nazis,1368506170 +201075,1089,violent,1368506449 +201075,1095,ensemble cast,1368505929 +201075,1104,mental illness,1368506114 +201075,1175,dark,1368505874 +201075,1206,violent,1368506449 +201075,1214,tense,1368506397 +201075,1302,father-son relationship,1368505965 +201075,1357,father-son relationship,1368505965 +201075,1357,mental illness,1368506114 +201075,1464,mystery,1368506136 +201075,1589,ensemble cast,1368505929 +201075,1597,thriller,1368506427 +201075,1610,thriller,1368506427 +201075,1923,boring,1306999274 +201075,1923,crude humor,1306999292 +201075,1923,not funny,1306999329 +201075,1923,Overrated,1306999281 +201075,1923,stupid,1306999329 +201075,1950,police,1368506332 +201075,2024,christianity,1368505630 +201075,2026,high school,1368506036 +201075,2058,tense,1368506397 +201075,2076,dark,1368505874 +201075,2082,inspirational,1368506080 +201075,2115,father-son relationship,1368505965 +201075,2335,stupid,1368506374 +201075,2353,thriller,1368506427 +201075,2383,police,1368506332 +201075,2442,mental illness,1368506114 +201075,2490,violent,1368506449 +201075,2500,high school,1368506036 +201075,2501,father-son relationship,1368505965 +201075,2882,nazis,1368506170 +201075,2888,high school,1368506036 +201075,2959,violent,1368506449 +201075,2985,violent,1368506449 +201075,3146,stupid,1368506374 +201075,3256,thriller,1368506427 +201075,3519,nazis,1368506170 +201075,3683,dark,1368505874 +201075,4388,stupid,1368506374 +201075,4865,dark,1368505874 +201075,4865,mystery,1368506136 +201075,4974,stupid,1368506374 +201075,5106,high school,1368506036 +201075,5107,nazis,1368506170 +201075,5363,high school,1368506036 +201075,5785,stupid,1368506374 +201075,6808,nazis,1368506170 +201075,7160,mental illness,1368506114 +201075,8781,politics,1368506356 +201075,38061,black comedy,1306932057 +201075,38061,clever,1306932066 +201075,38061,comedy,1306932063 +201075,38061,dark comedy,1306932060 +201075,38061,funny,1306932087 +201075,38061,good dialogue,1306932073 +201075,38061,plot twist,1306932070 +201075,38061,Robert Downey Jr,1306932075 +201075,38061,satire,1306932082 +201075,38061,val kilmer,1306932053 +201075,38061,witty,1306932078 +201075,51540,police,1368506332 +201075,64622,nazis,1368506170 +201075,67087,bromance,1307007913 +201075,67087,comedy,1307007918 +201075,67087,friendship,1307007923 +201075,67087,Paul Rudd,1307007937 +201085,66130,dialogue,1251119852 +201085,66130,fighting,1251119834 +201085,66130,lead woman,1251119834 +201085,68157,Brad Pitt,1251119613 +201085,68157,dialogue,1251119631 +201085,70286,cgi,1251119564 +201085,70286,ending,1251119563 +201085,70286,style,1251119565 +201087,47,Brad Pitt,1256360203 +201087,47,Kevin Spacey,1256360204 +201087,47,Morgan Freeman,1256360206 +201087,50,Benicio Del Toro,1251832572 +201087,50,Crime,1251832574 +201087,50,ensemble cast,1251832595 +201087,50,Kevin Spacey,1251832569 +201087,50,organized crime,1251832584 +201087,50,twist ending,1251832586 +201087,147,addiction,1368820749 +201087,147,drugs,1368820756 +201087,147,escape,1368820758 +201087,147,Leonardo DiCaprio,1368820752 +201087,147,New York City,1368820762 +201087,260,Harrison Ford,1256359999 +201087,296,Bruce Willis,1256360178 +201087,296,Quentin Tarantino,1256360172 +201087,296,Samuel L. Jackson,1256360175 +201087,453,Gabrielle Anwar,1356363958 +201087,453,Michael J. Fox,1356363948 +201087,552,Disney,1356365700 +201087,552,Tim Curry,1356365706 +201087,778,addiction,1263720836 +201087,778,dark comedy,1263720838 +201087,778,drugs,1263720842 +201087,778,heroin,1263720840 +201087,858,Al Pacino,1256360249 +201087,858,Mafia,1256360254 +201087,858,robert de niro,1256360252 +201087,1089,Quentin Tarantino,1256360400 +201087,1196,Harrison Ford,1255883508 +201087,1210,Harrison Ford,1256359931 +201087,1210,Star Wars,1256359939 +201087,1213,Martin Scorsese,1256360276 +201087,1213,Robert De Niro,1256360274 +201087,1327,James Brolin,1278856731 +201087,1393,Renee Zellweger,1355974879 +201087,1447,nude black women,1278033546 +201087,1447,Nudity (Topless),1278033550 +201087,1447,Thandie Newton,1278033552 +201087,1447,Tim Roth,1278033554 +201087,1447,Tupac Shakur,1278033556 +201087,1598,Andy Garcia,1259472874 +201087,1598,Michael Keaton,1259472878 +201087,1611,Gus Van Sant,1373105586 +201087,1611,rebellion,1373105604 +201087,1611,River Phoenix,1373105596 +201087,1671,Chris Penn,1287246120 +201087,1671,Renée Zellweger,1287246113 +201087,1671,Tim Roth,1287246046 +201087,1968,John Hughes,1288666316 +201087,2329,Edward Norton,1256360191 +201087,2329,thought-provoking,1319699895 +201087,2340,Anthony Hopkins,1263531234 +201087,2340,Brad Pitt,1263531232 +201087,2340,Claire Forlani,1263531228 +201087,2360,dogma,1278034143 +201087,2360,incest,1278034141 +201087,2360,Ulrich Thomsen,1278034151 +201087,2959,Brad Pitt,1256360157 +201087,2959,Edward Norton,1256360159 +201087,2995,Famke Janssen,1286664597 +201087,2995,Geoffrey Rush,1286664611 +201087,3243,Pauly Shore,1325724474 +201087,3968,Brendan Fraser,1305929266 +201087,3968,Elizabeth Hurley,1305929270 +201087,4262,Al Pacino,1256362461 +201087,4262,drugs,1256362467 +201087,4262,gangsters,1256362470 +201087,4262,mafia,1256362463 +201087,4262,organized crime,1256362465 +201087,4267,different perspectives,1259454828 +201087,4267,Matt Dillon,1259454818 +201087,4267,Michael Douglas,1259454815 +201087,4267,Paul Reiser,1259454826 +201087,4270,Rachel Weisz,1325724793 +201087,4270,the rock,1325724804 +201087,4326,1960's Jim Crow,1307924372 +201087,4326,civil rights,1307924375 +201087,4326,Gene Hackman,1307924365 +201087,4326,Mississippi,1307924370 +201087,4326,Willem Dafoe,1307924377 +201087,5105,Donald Sutherland,1273621686 +201087,5378,Ewan McGregor,1255301203 +201087,5378,George Lucas,1255301245 +201087,5378,Natalie Portman,1255301212 +201087,5378,Samuel L. Jackson,1255301209 +201087,6768,Joseph Fiennes,1287269333 +201087,7147,Albert Finney,1319699949 +201087,7147,Alison Lohman,1356398871 +201087,7147,dreamlike,1319699937 +201087,7147,Ewan McGregor,1356398847 +201087,7147,Jessica Lange,1319699979 +201087,7147,Tim Burton,1240868021 +201087,7155,British,1274559080 +201087,7155,Helen Mirren,1274559069 +201087,7155,Nudity (Topless),1274559073 +201087,8784,coming of age,1288666356 +201087,8784,Great Soundtrack,1288666362 +201087,8784,mental illness,1353586459 +201087,8784,Natalie Portman,1288666350 +201087,8784,Peter Sarsgaard,1353586514 +201087,8784,quirky romantic,1288666367 +201087,8784,Zach Braff,1288666348 +201087,26947,Kim Bodnia,1278034221 +201087,26947,Mads Mikkelsen,1278034230 +201087,26947,Nicolas Winding Refn,1278034223 +201087,26947,Zlatko Buric,1278034226 +201087,33493,Ewan McGregor,1255311349 +201087,33493,Natalie Portman,1255311360 +201087,33794,Christian Bale,1256360090 +201087,33794,Gary Oldman,1256360093 +201087,33794,Michael Caine,1256360092 +201087,33794,Morgan Freeman,1256360096 +201087,34336,Christopher Plummer,1306805266 +201087,34336,John Cusack,1306805273 +201087,34338,Billy Connolly,1259465537 +201087,34338,crude humor,1259465540 +201087,34405,Alan Tudyk,1409219843 +201087,34405,dystopia,1409219825 +201087,34405,ensemble cast,1409219826 +201087,34405,gina torres,1409219899 +201087,34405,josh whedon,1409219933 +201087,34405,quirky,1409219831 +201087,37729,19th century,1319700157 +201087,37729,Depp & Burton,1319700154 +201087,37729,ghosts/afterlife,1319700143 +201087,37729,gothic,1319700141 +201087,37729,Johnny Depp,1319700137 +201087,37729,musical,1319700161 +201087,37729,stop-motion,1319700150 +201087,37729,Tim Burton,1319700136 +201087,44665,assassination,1319699626 +201087,44665,Ben Kingsley,1319699709 +201087,44665,Bruce Willis,1287800756 +201087,44665,Film Noir,1287800761 +201087,44665,Josh Hartnett,1319699676 +201087,44665,Lucy Liu,1319699722 +201087,44665,organized crime,1319699759 +201087,44665,Revenge,1319699622 +201087,44665,Stanley Tucci,1319699746 +201087,44665,stylized,1319699763 +201087,45501,horrible finish,1259922779 +201087,45501,Jason Bateman,1259922787 +201087,45501,Jennifer Aniston,1259922769 +201087,45501,Vince Vaughn,1259922794 +201087,48560,Annette Bening,1275894430 +201087,48560,dark comedy,1275894434 +201087,48560,dysfunctional family,1275894433 +201087,48560,gwyneth paltrow,1275894438 +201087,48560,the ceiling was crushing us. so we made a skylight,1275894443 +201087,48780,Christian Bale,1318185854 +201087,48780,Michael Caine,1318185857 +201087,48780,steampunk,1318185874 +201087,50794,Jeremy Piven,1410911971 +201087,51540,David Fincher,1287350821 +201087,51540,Robert Downey Jr.,1287350811 +201087,51540,serial killer,1287350813 +201087,51540,Too long,1287350814 +201087,54503,Michael Cera,1276997026 +201087,55247,great soundtrack,1410800454 +201087,55247,Hal Holbrook,1410800370 +201087,55247,Sean Penn,1410800313 +201087,55247,William Hurt,1410800350 +201087,55269,Adrien Brody,1248280366 +201087,55269,Owen Wilson,1248280370 +201087,55269,Wes Anderson,1248280374 +201087,55274,Cate Blanchett,1287269588 +201087,55274,character based on real person:Walter Raleigh,1287269601 +201087,55274,Clive Owen,1287269590 +201087,55274,Geoffrey Rush,1287269594 +201087,55820,coen brothers,1263706143 +201087,55820,Javier Bardem,1263706147 +201087,55820,twist ending,1263706150 +201087,55946,no plot,1273436827 +201087,56367,Ellen Page,1259922641 +201087,56367,feel good movie,1259922649 +201087,56367,Michael Cera,1259922636 +201087,56367,notable soundtrack,1259922634 +201087,57640,based on a comic,1246065049 +201087,57640,good sequel,1246065034 +201087,57640,movie to see,1246065075 +201087,57640,Selma Blair,1246065060 +201087,57640,superhero,1246065064 +201087,58559,Christian Bale,1256360039 +201087,58559,Gary Oldman,1256360041 +201087,58559,Heath Ledger,1256360043 +201087,58559,Michael Caine,1256360045 +201087,58559,Morgan Freeman,1256360047 +201087,59016,Forest Whitaker,1306530738 +201087,59016,Hugh Laurie,1306530731 +201087,59016,James Ellroy,1306530728 +201087,59016,Keanu Reeves,1306530734 +201087,59016,LAPD,1306530724 +201087,59315,Jeff Bridges,1273091151 +201087,59315,Robert Downey Jr.,1273091148 +201087,60684,author:Alan Moore,1247090309 +201087,60684,Carla Gugino,1247090313 +201087,60684,dystopia,1247090316 +201087,61132,Ben Stiller,1256189537 +201087,61132,Jack Black,1256189548 +201087,61132,Matthew McConaughey,1256189546 +201087,61132,Robert Downey Jr.,1256189540 +201087,61132,Tom Cruise,1256189542 +201087,61697,Al Pacino,1245000346 +201087,61697,Carla Gugino,1245000348 +201087,61697,Robert De Niro,1245000355 +201087,62374,Leonardo DiCaprio,1241043162 +201087,62437,James Cromwell,1263706226 +201087,62437,Josh Brolin,1263706235 +201087,62849,Gerard Butler,1263531295 +201087,62849,Guy Ritchie,1263531292 +201087,62849,Mark Strong,1263531335 +201087,62849,Thandie Newton,1263531299 +201087,62849,Tom Wilkinson,1263531301 +201087,64614,classic car,1263531149 +201087,64614,Clint Eastwood,1263531147 +201087,64614,mentor,1263531150 +201087,64614,racism,1263531152 +201087,65230,Jennifer Aniston,1245000286 +201087,65230,Owen Wilson,1245000288 +201087,65882,Emily Browning,1287266161 +201087,66097,alternate universe,1273621785 +201087,66097,claymation,1273621775 +201087,66097,creepy,1273621800 +201087,66097,dystopia,1273621795 +201087,66097,Surreal,1273621792 +201087,66198,Armin Mueller-Stahl,1247781893 +201087,66198,Clive Owen,1247781889 +201087,66198,Naomi Watts,1247781904 +201087,66198,Ulrich Thomsen,1247781891 +201087,66203,Ben Affleck,1243201667 +201087,66203,Jennifer Connelly,1243201674 +201087,66203,Justin Long,1243201672 +201087,66203,Scarlett Johansson,1243201675 +201087,66509,Adam Sandler,1259329523 +201087,66509,Leslie Mann,1259329502 +201087,66509,Seth Rogen,1259329512 +201087,66509,stand-up comedy,1259329510 +201087,66691,Antonio Banderas,1240873348 +201087,66691,Morgan Freeman,1240873378 +201087,67087,Jaime Pressly,1252247663 +201087,67087,Jason Segel,1252247677 +201087,67087,Paul Rudd,1252247655 +201087,68157,Quentin Tarantino,1258868436 +201087,68157,soundtrack,1258868453 +201087,68157,unusual plot structure,1258868439 +201087,68159,journalism,1257825481 +201087,68159,lame ending,1257825434 +201087,68159,Russell Crowe,1257825438 +201087,68159,subgenre:political corruption,1257825442 +201087,68159,topic:US political corruption,1257825463 +201087,69122,Drinking,1248733651 +201087,69122,drugs,1248733654 +201087,69122,great soundtrack,1248733656 +201087,69406,Ryan Reynolds,1255301102 +201087,69481,Jeremy Renner,1411030374 +201087,69526,John Turturro,1335611194 +201087,69526,Josh Duhamel,1335611202 +201087,69526,Megan Fox,1335611226 +201087,69526,Shia LaBeouf,1335611215 +201087,69844,Alan Rickman,1247864488 +201087,69844,Daniel Radcliffe,1247864493 +201087,69844,Emma Watson,1247864495 +201087,69844,when did Rupert Grint become a man,1247864503 +201087,70286,social commentary,1264457374 +201087,70336,80s nostalgia,1263456437 +201087,71156,Ewan McGregor,1264270836 +201087,71156,George Clooney,1264270840 +201087,71156,Jeff Bridges,1264270842 +201087,71156,Kevin Spacey,1264270829 +201087,71530,androids,1265120620 +201087,71530,bad ending,1265120615 +201087,71530,bad plot,1265120578 +201087,71530,bad science,1265120584 +201087,71530,bad script,1265120581 +201087,71530,Bruce Willis,1265120606 +201087,71530,future,1265120590 +201087,71530,James Cromwell,1265120588 +201087,71530,Radha Mitchell,1265120601 +201087,71530,Rosamund Pike,1265120597 +201087,71530,Ving Rhames,1265120603 +201087,71535,Bill Murray,1261244322 +201087,71535,Emma Stone,1261244338 +201087,71535,Jesse Eisenberg,1261244341 +201087,71535,post-apocalyptic,1261244314 +201087,71535,Woody Harrelson,1261244316 +201087,71668,Jason Bateman,1263898802 +201087,71668,Jean Reno,1263898811 +201087,71668,Jon Favreau,1263898818 +201087,71668,Kristen Bell,1263898806 +201087,71668,Malin Akerman,1263898805 +201087,71668,Vince Vaughn,1263898816 +201087,72011,George Clooney,1276917034 +201087,72167,Billy Connolly,1270672448 +201087,72167,Judd Nelson,1270672423 +201087,72167,Julie Benz,1270672433 +201087,72167,Norman Reedus,1270672455 +201087,72167,Peter Fonda,1270672435 +201087,72167,Sean Patrick Flanery,1270672437 +201087,72998,3d,1266875584 +201087,72998,aliens,1266875586 +201087,72998,graphic design,1266875594 +201087,72998,race issues,1266875601 +201087,72998,sci-fi,1266875598 +201087,73017,Guy Ritchie,1264072557 +201087,73017,Jude Law,1264072562 +201087,73017,Mark Strong,1264072577 +201087,73017,Rachel McAdams,1264072588 +201087,73017,Robert Downey Jr.,1264072559 +201087,73321,Bible,1306899024 +201087,73321,Christianity,1306899006 +201087,73321,Denzel Washington,1306899029 +201087,73321,dystopic future,1306899020 +201087,73321,Gary Oldman,1306899011 +201087,73321,post-apocalyptic,1306899009 +201087,74789,3D,1269891240 +201087,74789,Alan Rickman,1269891244 +201087,74789,Anne Hathaway,1269891246 +201087,74789,based on a book,1269891258 +201087,74789,Depp & Burton,1269891264 +201087,74789,Johnny Depp,1269891269 +201087,74789,Tim Burton,1269891267 +201087,74944,Ethan Hawke,1287871526 +201087,74944,Wesley Snipes,1287871530 +201087,74944,Will Patton,1287871533 +201087,74948,Michael Caine,1308784230 +201087,76175,Gemma Arterton,1301790969 +201087,76175,gods,1301790985 +201087,76175,Liam Neeson,1301790966 +201087,76175,Ralph Fiennes,1301790977 +201087,77561,Mickey Rourke,1273621738 +201087,77561,Robert Downey Jr.,1273621733 +201087,77561,Sam Rockwell,1273621736 +201087,77561,Scarlett Johansson,1273621730 +201087,77866,Cate Blanchett,1287187719 +201087,77866,Mark Strong,1287245809 +201087,78467,John Malkovich,1288059951 +201087,78467,Josh Brolin,1288059955 +201087,78467,Megan Fox,1288059961 +201087,78469,Liam Neeson,1360116820 +201087,78469,Sharlto Copley,1360116883 +201087,79132,ensemble cast,1303633956 +201087,79132,Leonardo DiCaprio,1303633945 +201087,79132,Michael Caine,1303633948 +201087,79132,visually appealing,1303633950 +201087,79185,Peter Sarsgaard,1286664531 +201087,79185,Tom Cruise,1286664527 +201087,79702,Kieran Culkin,1288666128 +201087,80219,Danny Trejo,1287790593 +201087,80219,Jeff Fahey,1287790673 +201087,80219,Jessica Alba,1287790596 +201087,80219,Michelle Rodriguez,1287790658 +201087,80219,Robert De Niro,1287790661 +201087,80219,Robert Rodriguez,1287790664 +201087,80463,David Fincher,1289870382 +201087,80463,Jesse Eisenberg,1289870374 +201087,80590,financial crisis,1301975214 +201087,80590,Michael Douglas,1301975197 +201087,80590,Shia LaBeouf,1301975200 +201087,80590,stock market,1301975204 +201087,80906,business,1301790885 +201087,80906,investor corruption,1301790887 +201087,80906,politics,1301790882 +201087,80906,truth,1301790869 +201087,81229,John Malkovich,1387147327 +201087,81229,Mary-Louise Parker,1387147357 +201087,81229,Morgan Freeman,1387147329 +201087,81229,rebecca pidgeon,1387147418 +201087,81834,Alan Rickman,1305481175 +201087,81834,Helena Bonham Carter,1305481185 +201087,81834,Ralph Fiennes,1305481179 +201087,82459,Hailee Steinfeld,1392939060 +201087,82459,Jeff Bridges,1392939074 +201087,82461,futuristic,1301966739 +201087,82461,Garrett Hedlund,1301966724 +201087,82461,Jeff Bridges,1301966715 +201087,82461,music,1301966732 +201087,82461,scenic,1301966736 +201087,82461,stylized,1301966710 +201087,82461,visually appealing,1301966707 +201087,84392,Marisa Tomei,1407567110 +201087,84392,Matthew McConaughey,1407567093 +201087,84392,William H. Macy,1407567123 +201087,85510,characters,1314631904 +201087,85510,ending,1314631892 +201087,85510,soundtrack,1314631886 +201087,86332,Kat Dennings,1336080428 +201087,86332,Natalie Portman,1336080406 +201087,86880,franchise,1316746149 +201087,86911,Bradley Cooper,1334920825 +201087,86911,formulaic,1334920840 +201087,86911,not funny,1334920814 +201087,86911,too american ending,1334920866 +201087,86911,Zach Galifianakis,1334920818 +201087,87232,Jennifer Lawrence,1377216004 +201087,87232,Kevin Bacon,1377215926 +201087,87232,Michael Fassbender,1377215966 +201087,87232,Rose Byrne,1377215991 +201087,87430,Geoffrey Rush,1335715590 +201087,87430,Mark Strong,1335715651 +201087,87430,Peter Sarsgaard,1335715616 +201087,87430,Ryan Reynolds,1335715456 +201087,87520,John Turturro,1335610997 +201087,87520,Josh Duhamel,1335610974 +201087,87520,Michael Bay,1335610919 +201087,87520,Rosie Huntington-Whiteley,1335611050 +201087,87520,Shia LaBeouf,1335610954 +201087,88129,Bryan Cranston,1353857389 +201087,88129,Carey Mulligan,1353857406 +201087,88129,cinematography,1353857350 +201087,88129,great soundtrack,1353857357 +201087,88129,Nicolas Winding Refn,1353857415 +201087,88129,Nudity (Topless),1353857370 +201087,88129,Ron Perlman,1353857352 +201087,88129,ryan gosling,1353857354 +201087,88129,tense,1353857362 +201087,88140,Chris Evans,1336080474 +201087,88140,patriotic,1336080482 +201087,89074,Morgan Spurlock,1316053826 +201087,89343,Kerry Bishé,1353630749 +201087,89343,Kevin Smith,1353630659 +201087,89650,13th Century,1353790282 +201087,89650,Kate Mara,1353790361 +201087,89650,Paul Giamatti,1353790251 +201087,89650,poor plot,1353790278 +201087,89745,Hulk,1335917054 +201087,89745,Iron Man,1335917009 +201087,89745,Robert Downey Jr.,1335917014 +201087,89864,cliche,1410969615 +201087,89864,Joseph Gordon-Levitt,1410969595 +201087,89864,predictable,1410969604 +201087,89864,Seth Rogen,1410969598 +201087,90057,Jessica Chastain,1345848035 +201087,90057,mental illness,1345848042 +201087,90057,Michael Shannon,1345848033 +201087,91094,Amy Adams,1360867148 +201087,91094,Fozzie Bear,1360867210 +201087,91094,Jack Black,1360867162 +201087,91094,muppets,1360867166 +201087,91094,puppets,1360867174 +201087,91094,weak plot,1360867150 +201087,91273,film noir,1428027993 +201087,91273,Josh Hartnett,1428028006 +201087,91273,Kevin McKidd,1428028048 +201087,91273,Stylised,1428027989 +201087,91273,unique look,1428028055 +201087,91273,Woody Harrelson,1428028035 +201087,91500,Jennifer Lawrence,1371952894 +201087,91529,Anne Hathaway,1343164851 +201087,91529,Bane,1343164935 +201087,91529,Bane's voice,1343164847 +201087,91529,Batman,1343164845 +201087,91529,Batman voice,1343164863 +201087,91529,Christian Bale,1343164849 +201087,91529,Gary Oldman,1343164854 +201087,91529,Joseph Gordon-Levitt,1343164857 +201087,91529,Michael Caine,1343164917 +201087,91529,Predictable,1343164955 +201087,91529,Tom Hardy,1343164869 +201087,91529,unsatisfying ending,1343164891 +201087,91542,author:Arthur Conan Doyle,1335666785 +201087,91542,comedy,1335666819 +201087,91542,Guy Ritchie,1335666849 +201087,91542,Jude Law,1335666853 +201087,91542,Noomi Rapace,1335666862 +201087,91542,Robert Downey Jr.,1335666775 +201087,93498,campaign manager,1353770420 +201087,93498,Ed Harris,1353770363 +201087,93498,election,1353770416 +201087,93498,good performance,1353770414 +201087,93498,Julianne Moore,1353770371 +201087,93498,Peter MacNicol,1353770401 +201087,93498,Woody Harrelson,1353770381 +201087,94780,charlize theron,1349903585 +201087,94780,main character is boring,1349903618 +201087,94780,unlikeable characters,1349903613 +201087,94780,weak plot,1349903600 +201087,95543,Corny ending,1353881728 +201087,95543,Peter Dinklage,1353881766 +201087,95543,Ray Romano,1353881716 +201087,97860,Andrew Dominik,1355523354 +201087,97860,Ben Mendelsohn,1355523476 +201087,97860,Brad Pitt,1355523315 +201087,97860,crime,1355523318 +201087,97860,James Gandolfini,1355523401 +201087,97860,Ray Liotta,1355523320 +201087,97860,Scoot McNairy,1355523386 +201087,97860,Vincent Curatola,1355523449 +201087,97921,Bradley Cooper,1370974533 +201087,97921,Jennifer Lawrence,1370974578 +201087,97921,mental illness,1370974538 +201087,98809,beautiful scenery,1387228233 +201087,98809,exaggerated,1387228225 +201087,98809,fantasy world,1387228237 +201087,98809,Martin Freeman,1387228191 +201087,98809,Peter Jackson,1387228158 +201087,98809,Richard Armitage,1387228257 +201087,99114,Christoph Waltz,1384821494 +201087,99114,Jamie Foxx,1384821508 +201087,99114,Leonardo DiCaprio,1384821461 +201087,99728,Emma Stone,1410893396 +201087,99728,Josh Brolin,1410893422 +201087,99728,Ryan Gosling,1410893393 +201087,101076,dialogue,1392939120 +201087,101076,Dwayne Johnson,1392939122 +201087,101112,James Franco,1369531570 +201087,101112,Mila Kunis,1369531566 +201087,101112,Rachel Weisz,1369531580 +201087,101112,Zach Braff,1369531596 +201087,102125,Ben Kingsley,1369157027 +201087,102125,Guy Pearce,1369157047 +201087,102125,James Badge Dale,1369157147 +201087,102125,Jon Favreau,1369157039 +201087,102125,Mark Ruffalo,1369157279 +201087,102125,Paul Bettany,1369157120 +201087,102125,Robert Downey Jr.,1369157030 +201087,102445,Benedict Cumberbatch,1385166339 +201087,102445,Chris Pine,1385166311 +201087,102445,predictable,1385166296 +201087,102445,Simon Pegg,1385166293 +201087,102686,Bradley Cooper,1387235200 +201087,102686,Ken Jeong,1387235186 +201087,102686,unoriginal,1387235188 +201087,102686,Zach Galifianakis,1387235183 +201087,103253,Matt Damon,1385230153 +201087,103655,cgi,1387072749 +201087,103655,Jeff Bridges,1387072745 +201087,103655,Ryan Reynolds,1387072747 +201087,103772,Hugh Jackman,1375404812 +201087,106072,aliens,1392171562 +201087,106072,Chris Hemsworth,1392171455 +201087,106072,Kat Dennings,1392171498 +201087,106072,Natalie Portman,1392171490 +201087,106072,Nordic Mytholigy Raped,1392171545 +201087,106072,Stellan Skarsgard,1392171478 +201087,106072,Tom Hiddleston,1392171459 +201087,106782,Jonah Hill,1392939014 +201087,106782,Leonardo DiCaprio,1392939001 +201087,106782,Martin Scorsese,1392938997 +201087,109487,Anne Hathaway,1415408554 +201087,109487,Casey Affleck,1415408691 +201087,109487,Christopher Nolan,1415408558 +201087,109487,Jessica Chastain,1415408647 +201087,109487,John Lithgow,1415408727 +201087,109487,Matt Damon,1415408666 +201087,109487,Matthew McConaughey,1415408551 +201087,109487,Michael Caine,1415408596 +201087,110102,Robert Redford,1428027551 +201087,110102,Samuel L. Jackson,1428027599 +201087,110102,Scarlett Johansson,1428027449 +201087,111360,dumb science,1423595811 +201087,111360,Luc Besson,1423595807 +201087,111360,Scarlett Johansson,1423595802 +201087,111659,Angelina Jolie,1428027186 +201087,111659,sharlto copley,1428027276 +201122,318,heartwarming,1443268054 +201122,318,inspirational,1443268037 +201122,318,Morgan Freeman,1443268033 +201122,318,powerful ending,1443268052 +201122,318,prison escape,1443268035 +201122,318,psychology,1443268050 +201122,318,redemption,1443268048 +201122,318,Tim Robbins,1443268046 +201139,2329,neo Nazi,1140581993 +201139,2329,racism,1140581517 +201146,115617,feel-good,1435523876 +201146,115617,fun family movie,1435523876 +201146,115617,very funny,1435523876 +201168,260,astounding,1438478938 +201168,260,classic,1438478916 +201168,260,seminal,1438478931 +201168,86882,cheesey,1438488049 +201168,86882,cute,1438488049 +201168,86882,funny,1438488049 +201187,260,space battles,1439767945 +201187,260,space opera,1439767931 +201203,260,Science Fiction,1444783224 +201203,127156,Amy Berg,1444781027 +201203,127156,religion,1444781030 +201218,215,bittersweet,1435667505 +201218,215,conversation,1435667497 +201218,215,dialogue,1435667503 +201218,215,reflective,1435667499 +201218,593,hannibal lecter,1435664398 +201218,593,horror,1435664398 +201218,593,suspense,1435664398 +201218,593,thriller,1435664398 +201218,4235,dogs,1435666433 +201218,4235,drama,1435666437 +201218,4235,episodic,1435666444 +201218,4235,independent film,1435666435 +201218,4235,Mexican,1435666447 +201218,4235,money,1435666450 +201218,4235,multiple storylines,1435666432 +201218,4235,violence,1435666441 +201218,8014,Atmospheric,1436959054 +201218,8014,bittersweet,1436959075 +201218,8014,character driven,1436959077 +201218,8014,episodic,1436959073 +201218,8014,great photograpy,1436959064 +201218,8014,Kim Ki-Duk,1436959070 +201218,8014,reflective,1436959067 +201218,8910,Dustin Hoffman,1435667345 +201218,8910,existentialism,1435667337 +201218,8910,funny,1435667348 +201218,8910,intelligent,1435667343 +201218,8910,ironic,1435667356 +201218,8910,philosophy,1435667339 +201218,8910,psychology,1435667352 +201218,8910,satire,1435667341 +201218,55820,based on a book,1435665423 +201218,55820,brutal,1435665413 +201218,55820,Coen Brothers,1435665396 +201218,55820,crime,1435665408 +201218,55820,dark,1435665400 +201218,55820,great acting,1435665397 +201218,55820,hitman,1435665415 +201218,55820,Javier Bardem,1435665417 +201218,55820,plot twist,1435665426 +201218,55820,serial killer,1435665410 +201218,55820,slow paced,1435665420 +201218,55820,suspense,1435665403 +201218,55820,tension,1435665421 +201218,55820,thriller,1435665405 +201218,55820,Tommy Lee Jones,1435665401 +201218,55820,twist ending,1435665430 +201218,55820,violent,1435665406 +201218,55820,Woody Harrelson,1435665428 +201218,57669,ambiguous ending,1435665354 +201218,57669,assassin,1435665333 +201218,57669,atmospheric,1435665363 +201218,57669,beautiful scenery,1435665351 +201218,57669,belgium,1435665353 +201218,57669,black comedy,1435665315 +201218,57669,Brendan Gleeson,1435665361 +201218,57669,british comedy,1435665335 +201218,57669,Colin Farrell,1435665324 +201218,57669,dark comedy,1435665308 +201218,57669,depression,1435665347 +201218,57669,dialogue,1435665369 +201218,57669,drama,1435665357 +201218,57669,drugs,1435665342 +201218,57669,foul language,1435665337 +201218,57669,friendship,1435665310 +201218,57669,hitman,1435665327 +201218,57669,irish accent,1435665320 +201218,57669,Ralph Fiennes,1435665344 +201218,57669,stylized,1435665318 +201218,57669,suicide,1435665339 +201218,57669,twist ending,1435665349 +201218,57669,violence,1435665359 +201218,57669,violent,1435665330 +201218,69951,alternate reality,1437648904 +201218,69951,Colin Farrell,1437648906 +201218,69951,deal with the devil,1437648889 +201218,69951,fantasy,1437648891 +201218,69951,hanging,1437648902 +201218,69951,heath ledger,1437648884 +201218,69951,imagination,1437648895 +201218,69951,imaginative,1437648897 +201218,69951,immortality,1437648898 +201218,69951,Johnny Depp,1437648882 +201218,69951,Jude Law,1437648900 +201218,69951,Lily Cole,1437648908 +201218,69951,surreal,1437648878 +201218,69951,terry gilliam,1437648886 +201218,69951,tom waits,1437648894 +201218,71033,Argentina,1435666265 +201218,71033,based on a book,1435666278 +201218,71033,beautiful,1435666283 +201218,71033,cinematography,1435666279 +201218,71033,excellent acting,1435666281 +201218,71033,excellent script,1435666269 +201218,71033,foreign language,1435666285 +201218,71033,love,1435666287 +201218,71033,nostalgic,1435666289 +201218,71033,rape,1435666291 +201218,71033,revenge,1435666294 +201218,71033,Ricardo Darin,1435666276 +201218,71033,romance,1435666271 +201218,71033,Spanish,1435666274 +201218,93840,clever,1435667450 +201218,93840,dark comedy,1435667452 +201218,93840,funny,1435667456 +201218,93840,original,1435667454 +201218,93840,original plot,1435667458 +201218,93840,plot twist,1435667459 +201218,112940,counterespionage,1435667708 +201218,112940,super dry,1435667710 +201223,367,Great comedy,1450599913 +201223,3147,Intensive,1450599461 +201223,3654,Great action,1450599844 +201223,6808,Great action,1450599812 +201223,86880,Brilliant acting,1450599642 +201223,86880,Joh',1450599647 +201223,86880,Johnny Depp,1450599651 +201252,260,jedi,1441732300 +201252,260,space,1441732307 +201258,296,big name actors,1427383989 +201258,296,stylized,1427383989 +201258,296,violent,1427383989 +201258,7002,Calm intelligent pace,1253994818 +201258,7002,The setting,1253994826 +201260,260,darkside,1431463088 +201260,260,starwars,1431463103 +201263,260,"classic, sci-fi",1444624679 +201277,300,intelligent,1425615945 +201277,1235,dark humor,1425614411 +201277,1235,quirky,1425614393 +201277,1280,Cinematography,1425614804 +201277,1947,musical,1425618926 +201277,1960,cinematography,1425614913 +201277,1960,lavish,1425614926 +201277,3435,Barbara Stanwyck,1425617061 +201277,3435,film noir,1425617007 +201277,3435,stylized,1425617076 +201277,5016,kevin spacey,1425616353 +201277,5016,Smart,1425616397 +201277,53956,British,1425617665 +201277,53956,dark comedy,1425617660 +201277,71282,investigative journalism,1425617372 +201277,85438,Cinematography,1425615748 +201277,85438,Mia Wasikowska,1425615786 +201277,94959,cinematography,1425614511 +201277,94959,quirky,1425614496 +201277,94959,Smart,1425614529 +201277,94959,stylized,1425614490 +201282,80586,fav,1435900218 +201282,90343,fav,1435900504 +201282,96821,fav,1435900245 +201282,104728,fav,1435900565 +201287,63082,boring,1432400512 +201287,63082,emotional,1432400453 +201297,260,sci-fi,1439987027 +201297,140715,los angeles,1440003917 +201297,140715,music culture,1440003908 +201297,140715,music group,1440003928 +201297,140715,true story,1440003942 +201312,260,sci-fi,1441290438 +201312,260,space adventure,1441290442 +201317,5464,Tom Hanks,1149879000 +201329,593,crime drama,1423512582 +201329,593,fbi,1423512582 +201329,593,suspenseful,1423512582 +201329,112550,Daughter / father relationship,1423512043 +201329,112550,dogs,1423512029 +201329,112550,father daughter relationship,1423512041 +201329,112550,revenge,1423512033 +201329,112550,youth,1423512038 +201329,127136,drama,1423596184 +201329,127136,jounralism,1423596188 +201329,127136,mystery,1423596181 +201329,127136,suspense,1423596178 +201336,53189,Jermaine Clement,1257089519 +201351,260,awesome,1439817957 +201351,260,interesting,1439818054 +201351,260,space action,1439818028 +201351,260,space adventure,1439818046 +201356,2959,psychology,1225251566 +201360,3086,fantasy,1168687336 +201374,1961,Oscar (Best Picture),1148053704 +201444,6484,crime,1192583558 +201451,260,exciting,1432107922 +201451,260,space adventure,1432107852 +201451,54372,mystery,1432560529 +201451,73323,counter culture,1432560506 +201451,73323,hacking,1432560494 +201451,73323,intriguing,1432560488 +201451,89753,spy drama,1432560410 +201451,89753,thriller,1432560399 +201452,260,touching,1438754638 +201470,456,Kids cursing,1393386160 +201470,2231,Gretchen Mol,1391501008 +201470,2231,John Malkovich,1391500991 +201470,2231,language,1391500979 +201470,2231,Matt Damon,1391500975 +201470,2231,Nudity (Topless),1390426197 +201470,2231,poker,1391500986 +201470,2502,Jennifer Aniston,1390425280 +201470,8132,dated music,1394903593 +201470,46976,Dustin Hoffman,1391653189 +201470,46976,existentialism,1391653212 +201470,46976,Maggie Gyllenhaal,1391653172 +201470,46976,surreal,1391653184 +201470,46976,Will Ferrell,1391653175 +201470,89305,Missing some of the charm of the show,1395875506 +201470,102905,Nudity (Topless - Notable),1395548445 +201470,102905,Nudity (Topless),1395548445 +201470,103801,Anna Kendrick,1393499790 +201519,72607,finnish new wave,1280041190 +201521,39,radiohead,1453396535 +201521,39,silly,1453396486 +201521,39,teen movie,1453396484 +201521,1265,time loop,1453396989 +201521,1298,animation,1453391807 +201521,1298,artistic,1453391785 +201521,1298,cult film,1453391780 +201521,1298,drugs,1453391778 +201521,1298,great soundtrack,1453391783 +201521,1298,music,1453391781 +201521,1298,surreal,1453391775 +201521,5349,Comic book,1453397987 +201521,5349,marvel,1453397990 +201521,5349,superhero,1453397985 +201521,6711,Japan,1453398618 +201521,48082,Charlotte Gainsbourg,1453398911 +201521,50011,surreal,1453397058 +201521,52885,animation,1453391837 +201521,52885,beautiful animation,1453391850 +201521,52885,dreams,1453391830 +201521,52885,philosophical,1453391840 +201521,52885,psychedelic,1453391843 +201521,52885,surreal,1453391834 +201521,62336,Bass guitar,1453391911 +201521,62336,random,1453391889 +201521,62336,robots,1453391876 +201521,62336,stylish,1453391899 +201521,62336,surreal,1453391864 +201521,62336,vespa,1453391914 +201521,62336,weird,1453391898 +201521,62336,wtf,1453391894 +201521,79702,artistic,1453398709 +201521,79702,awesome soundtrack,1453398720 +201521,79702,based on a comic,1453398693 +201521,79702,comedy,1453398708 +201521,79702,duel,1453398717 +201521,79702,fast-paced,1453398725 +201521,79702,fight scenes,1453398700 +201521,79702,funny,1453398698 +201521,79702,garage band,1453398718 +201521,79702,geeks,1453398705 +201521,79702,geeky,1453398696 +201521,79702,innovative,1453398711 +201521,79702,music,1453398695 +201521,79702,stylized,1453398689 +201521,79702,surreal,1453398701 +201521,79702,video games,1453398691 +201521,95167,celtic music,1453403606 +201521,95167,No Marriage at the End,1453403591 +201521,95167,Pixar,1453403584 +201521,95167,Scotland,1453403601 +201521,95167,symbolism,1453403621 +201521,109374,funny,1453398672 +201521,109374,quirky,1453398670 +201521,109374,stylized,1453398673 +201521,109374,visually appealing,1453398664 +201521,114277,lovely,1453403752 +201521,114277,mental illness,1453403745 +201521,114277,musical,1453403738 +201521,114277,musicians,1453403749 +201521,114277,scotland,1453403735 +201521,116797,Computers,1453493980 +201521,116797,cryptography,1453493983 +201521,116797,genius,1453493985 +201521,116797,homosexuality,1453493992 +201521,116797,intelligent,1453494002 +201521,116797,mathematics,1453493978 +201521,116797,World War II,1453493977 +201521,135887,Animated,1453398477 +201521,135887,banana,1453398480 +201521,135887,Funny,1453398475 +201521,136642,based on the book,1453396646 +201521,136642,boring,1453396682 +201521,136642,prety,1453396740 +201521,136642,suicide,1453396727 +201521,140110,feminist,1453493478 +201521,140110,great story,1453493472 +201521,140110,Happy end,1453392006 +201524,118166,oddball,1417652940 +201524,118166,perestroika,1417652916 +201550,260,Science Fiction,1442478422 +201550,115617,cartoon,1442735453 +201561,97936,book,1358811623 +201561,97936,costumes,1358811588 +201561,97936,heartbreaking,1358811639 +201561,97936,tom stoppard,1358811629 +201583,1227,the best movie ever made,1401438571 +201588,260,Not my type,1436959262 +201588,260,ok ok Movie,1436959249 +201589,2858,thought-provoking,1241684198 +201597,116797,cryptography,1421351132 +201597,116797,imdb top 250,1421351132 +201597,116797,world war ii,1421351132 +201634,47,psychology,1314505106 +201634,296,dark comedy,1314502720 +201634,296,nonlinear,1314502701 +201634,1617,Kevin Spacey,1314502756 +201634,4226,psychology,1314502713 +201651,1266,cowboy,1424694239 +201651,57669,satire,1424694213 +201652,81993,Felicia Day,1312764459 +201652,81993,werewolves,1312764459 +201664,260,Exhilirating,1444747794 +201664,260,Masterful,1444747808 +201739,33036,action,1428260350 +201739,33036,adventure,1428260350 +201739,33036,clint eastwood,1428260350 +201741,946,classic,1279294295 +201741,946,dark comedy,1279294281 +201741,946,Ernst Lubitsch,1279294271 +201741,1176,enigmatic,1279291130 +201741,1176,Irene Jacob,1279291439 +201741,1176,meditative,1279291151 +201741,2987,animation,1279294179 +201741,2987,Christopher Lloyd,1279294167 +201741,2987,private detective,1279294182 +201741,5319,con artists,1279294339 +201741,5319,con men,1279294347 +201741,8874,black comedy,1279290914 +201741,8874,British,1279291070 +201741,8874,british comedy,1279290885 +201741,8874,comedy,1279291088 +201741,8874,parody,1279291072 +201741,8874,Simon Pegg,1279290902 +201741,8874,zombies,1279291075 +201741,26171,Jacques Tati,1279293474 +201741,57669,Brendan Gleeson,1279294859 +201741,57669,british comedy,1279294837 +201741,57669,dark comedy,1279294807 +201741,57669,hitman,1279294847 +201741,71535,dark comedy,1279291458 +201741,71535,zombies,1279291479 +201742,1884,Johnny Depp,1301682170 +201742,1884,surreal,1301682180 +201742,1884,thought-provoking,1301682174 +201742,2542,dark comedy,1301680691 +201742,2542,great soundtrack,1301680682 +201742,2542,Guy Ritchie,1301680673 +201742,2542,hilarious,1301680685 +201742,2542,Jason Statham,1301680677 +201742,2542,organized crime,1301680689 +201742,2579,black and white,1301680375 +201742,2579,Christopher Nolan,1301680371 +201742,2579,unique,1301680384 +201742,3535,Christian Bale,1301682022 +201742,3535,funny,1301682032 +201742,3535,psychology,1301682024 +201742,3535,serial killer,1301682026 +201742,7361,bittersweet,1301680223 +201742,7361,imagination,1301680229 +201742,7361,nonlinear,1301680215 +201742,7361,quirky,1301680225 +201742,7361,sci-fi,1301680219 +201742,7361,surreal,1301680217 +201742,7361,thought-provoking,1301680221 +201742,8970,bittersweet,1301682672 +201742,8970,Dustin Hoffman,1301682656 +201742,8970,Heartwarming,1301682654 +201742,8970,Johnny Depp,1301682659 +201742,8970,Kate Winslet,1301682662 +201742,27803,Javier Bardem,1301684503 +201742,27803,Oscar (Best Foreign Language Film),1301684517 +201742,30825,Dustin Hoffman,1301682729 +201742,30825,Robert De Niro,1301682734 +201742,46578,dance,1301684390 +201742,46578,family,1301684376 +201742,46578,inspirational,1301684371 +201742,46578,off-beat comedy,1301684369 +201742,46578,quirky,1301684367 +201742,46578,social commentary,1301684379 +201742,46578,twist ending,1301684382 +201742,56367,Ellen Page,1301684841 +201742,56367,excellent script,1301684839 +201742,56367,feel-good,1301684850 +201742,56367,great soundtrack,1301684839 +201742,56367,notable soundtrack,1301684844 +201742,56367,witty,1301684846 +201742,58559,Christian Bale,1301682265 +201742,58559,Michael Caine,1301682249 +201742,58559,Morgan Freeman,1301682251 +201742,58559,Oscar (Best Supporting Actor),1301682261 +201742,58559,psychology,1301682256 +201742,58559,serial killer,1301682254 +201742,60950,bisexual,1301684712 +201742,60950,friendship,1301684715 +201742,60950,Javier Bardem,1301684665 +201742,60950,Oscar (Best Supporting Actress),1301684676 +201742,60950,romance,1301684704 +201742,71264,animation,1301680059 +201742,71264,Anna Faris,1301680053 +201742,72226,animation,1301680449 +201742,72226,Bill Murray,1301680417 +201742,72226,bittersweet,1301680427 +201742,72226,family issues,1301680444 +201742,72226,George Clooney,1301680432 +201742,72226,hilarious,1301680429 +201742,72226,Meryl Streep,1301680435 +201742,72226,Owen Wilson,1301680452 +201742,72226,quirky,1301680441 +201742,72226,Roald Dahl,1301680437 +201742,74458,Leonardo DiCaprio,1301680295 +201742,74458,too long,1301680300 +201742,81591,Natalie Portman,1301679958 +201742,81591,psychological,1301679961 +201771,47,worst ever,1165458496 +201771,35836,dumb,1165455506 +201771,35836,gratuitous sex,1165455512 +201771,35836,Immature,1165455571 +201771,35836,mediocre plot,1165455517 +201778,116797,cryptography,1447127705 +201778,116797,mathematics,1447127721 +201791,46578,steve carell,1178546677 +201801,260,good vs evil,1436038828 +201801,260,hero,1436038816 +201824,68157,characters,1264933410 +201824,68157,long,1264933408 +201824,68157,story,1264933409 +201824,69757,Effects,1264932429 +201824,69757,Funny,1264932411 +201824,69757,Story,1264932425 +201824,69757,Zooey Deschanel,1264932437 +201824,72998,effects,1264932357 +201824,72998,predictable,1264932372 +201824,72998,story,1264932367 +201826,1246,poetry,1286756969 +201826,26702,different,1288137357 +201826,26702,interesting,1288137352 +201826,26702,Jeremy Cooper,1288137304 +201826,26702,poor acting,1288137336 +201826,26702,Viggo Mortensen,1288137306 +201826,26702,weird,1288137321 +201826,32554,3 short stories,1300573914 +201826,32554,anime,1300573886 +201826,32554,anthology,1300573912 +201826,32554,Cyberpunk,1300573917 +201826,32554,different directors and styles,1300573922 +201826,32554,fantastic animation,1300573924 +201826,32554,funny,1300573994 +201826,32554,interesting,1300574005 +201826,32554,space travel,1300573930 +201826,32554,Steampunk,1300573882 +201826,32554,war,1300573933 +201826,52980,beautifully filmed,1288112111 +201826,52980,David Beckham,1288112091 +201826,52980,football,1288112098 +201826,52980,mesmerising,1288112124 +201826,52980,soccer,1288112102 +201826,52980,Zinédine Zidane,1288112079 +201826,60069,animation,1288111925 +201826,60069,beautiful,1288111931 +201826,60069,beautiful scenery,1288111936 +201826,60069,funny,1288111950 +201826,60069,pixar,1288111966 +201826,60069,robots,1288111964 +201826,60069,Sci-Fi,1288111961 +201826,60069,social commentary,1288111958 +201826,60069,space,1288111976 +201826,72714,animal cruelty,1280165957 +201826,72714,documentary,1288112168 +201826,72714,enlightening,1288112159 +201826,72714,food,1280166009 +201826,72714,hard to watch,1280165982 +201826,72714,Joaquin Phoenix,1288112164 +201826,72714,sad,1288112221 +201826,72714,shocking,1288112209 +201826,73321,action,1288111551 +201826,73321,beautiful scenery,1288111678 +201826,73321,Bible,1288111555 +201826,73321,books,1288111553 +201826,73321,Christianity,1288111545 +201826,73321,Denzel Washington,1288111549 +201826,73321,dystopia,1288111559 +201826,73321,dystopic future,1288111561 +201826,73321,future,1288111571 +201826,73321,Gary Oldman,1288111573 +201826,73321,Mila Kunis,1288111576 +201826,73321,plot holes,1288111603 +201826,73321,post-apocalyptic,1288111542 +201826,73321,Ray Stevenson,1288111606 +201826,73321,religious propaganda,1288111533 +201826,73321,rewatchable,1288111610 +201826,73321,slow paced,1288111589 +201826,73321,Stylistic,1288111592 +201826,73321,thought provoking,1288111593 +201826,73321,thought-provoking,1288111596 +201826,73321,twist ending,1288111598 +201826,77658,not a movie,1282003923 +201826,77658,tv series,1282003935 +201826,79274,animation,1300749010 +201826,79274,Batman,1300749031 +201826,79274,comics,1300749018 +201826,79274,fighting,1300749039 +201826,79274,Joker,1300749096 +201826,80862,Not what was expected but still good,1288310684 +201840,356,drama,1432287928 +201840,356,inspirational,1432287928 +201840,356,tom hanks,1432287928 +201840,8665,thriller,1432287847 +201907,10,Pierce Brosnan,1270461076 +201907,58,italian love story,1242673291 +201907,58,poetry,1242673302 +201907,900,Classic,1222778004 +201907,1089,Quentin Tarantino,1274634473 +201907,1089,Tarantino,1274634467 +201907,1089,violence,1274634458 +201907,1136,Hilarious,1221553124 +201907,1285,black comedy,1242932928 +201907,1285,cynical,1242932902 +201907,3911,comedy,1249742679 +201907,3911,hilarious,1249742692 +201907,3911,improvised,1249742710 +201907,3911,mockumentary,1249742723 +201907,3911,quirky,1249742682 +201907,3911,satire,1249742683 +201907,4438,Bruce Lee,1221768676 +201907,6874,Quentin Tarantino,1259326303 +201907,6874,violent,1259326308 +201907,7482,Bruce Lee,1221768662 +201907,7745,buddhist,1241511682 +201907,7976,disturbing,1286642421 +201907,7976,disturbing in a bad way,1286642415 +201907,27821,African Atrocities,1243240255 +201907,27821,Nicole Kidman,1243240246 +201907,27821,Sean Penn,1243240239 +201907,27821,united nations,1243240317 +201907,54978,Surreal,1242411364 +201907,54978,Unusual story,1242411351 +201907,64575,Meryl Streep,1248638694 +201907,64575,Philip Seymour Hoffman,1248638697 +201907,64575,riveting,1248638719 +201907,64575,thought-provoking,1248638709 +201907,64839,bloody,1249742587 +201907,64839,Character study,1249742574 +201907,64839,identity crisis,1249742564 +201907,64839,violence,1249742566 +201907,66097,author:Neil Gaiman,1242543269 +201907,66097,claymation,1242543311 +201907,66097,Surreal,1242543282 +201907,67408,all the best parts are in the trailer,1241943412 +201907,67408,Contrived plot,1241943459 +201907,68157,Quentin Tarantino,1259326366 +201907,68157,slow paced,1259326387 +201907,68157,too long,1259326391 +201907,68157,violence,1259326397 +201907,74458,Ben Kingsley,1268590042 +201913,2959,philosophy,1311278830 +201913,2959,thought-provoking,1311278851 +201916,260,chewbacca,1439689957 +201916,260,these are not the droids you are looking for,1439689971 +201940,1,Pixar,1162191572 +201940,50,complicated,1244524850 +201940,50,great ending,1244524865 +201940,50,Kevin Spacey,1244524869 +201940,50,tricky,1244524857 +201940,318,Morgan Freeman,1244524893 +201940,318,thought-provoking,1244524897 +201940,1258,Stanley Kubrick,1162191727 +201940,2628,Ewan McGregor,1244524960 +201940,2628,fantasy,1244524936 +201940,2628,Jar Jar Binks,1244524984 +201940,2628,Saturn Award (Best Special Effects),1244524946 +201940,2628,sci-fi,1244524949 +201940,2628,space opera,1244524971 +201940,2628,Stanley Kubrick,1244524953 +201940,3114,Pixar,1162191522 +201940,4033,Political,1162191431 +201940,5618,beautiful,1244525018 +201940,5618,dreamlike,1244525020 +201940,5618,fantasy,1244525022 +201940,5618,Hayao Miyazaki,1244525012 +201940,5618,Studio Ghibli,1244525014 +201940,5690,Isao Takahata,1162191507 +201940,6539,Johnny Depp,1162191472 +201940,6776,Bollywood,1162191406 +201940,8957,Disturbing,1162191459 +201940,8957,Gory,1162191459 +201940,26662,aviation,1244524792 +201940,26662,coming of age,1244524783 +201940,26662,family,1244524781 +201940,26662,Hayao Miyazaki,1244524757 +201940,26662,magic,1244524779 +201940,26662,strong female lead,1244524766 +201940,26662,Studio Ghibli,1244524769 +201940,26662,trains,1244524773 +201940,26776,Hayao Miyazaki,1162191468 +201949,7361,dreamlike,1431054514 +201949,7361,quirky,1431054509 +201949,8910,existentialism,1431054588 +201949,8910,intelligent,1431054585 +201949,48082,cerebral,1431054540 +201949,48082,dreamlike,1431054535 +201958,260,classic sci-fi,1436468895 +201958,260,EPIC,1436468882 +201959,260,sci-fi,1449331948 +201959,356,tom hanks,1449331884 +201959,2194,gangsters,1449331847 +201959,4993,Adventure,1449331529 +201959,55721,social commentary,1449332030 +201959,88140,Captain America,1449331923 +201959,88140,Marvel,1449331911 +201959,88140,Nazis,1449331919 +201960,527,A Very Special Episode of Blossom,1449557787 +201960,527,Didn't happen,1449557831 +201960,527,Feel Good,1449557934 +201960,527,works of pure fiction,1449557842 +201960,86504,things that didnt happen,1449557685 +201966,2959,mindfuck,1445269173 +201966,2959,philosophy,1445269165 +201966,2959,powerful ending,1445269178 +201966,2959,social commentary,1445269169 +201966,2959,thought-provoking,1445269182 +201966,7361,beautiful,1445268644 +201966,7361,nonlinear,1445268625 +201966,7361,psychology,1445268637 +201966,7361,thought-provoking,1445268621 +201966,8914,clever,1445268871 +201966,8914,Complicated,1445268870 +201966,8914,intelligent,1445268879 +201966,8914,low budget,1445268873 +201966,8914,mindfuck,1445268868 +201966,8914,physics,1445268878 +201966,8914,thought-provoking,1445268876 +201966,8914,time travel,1445268864 +201966,79357,butterfly effect,1445268763 +201966,79357,nonlinear,1445268753 +201966,79357,philosophy,1445268760 +201966,79357,surreal,1445268755 +201966,79357,technobabble,1445268774 +201966,79357,thought provoking,1445268757 +201966,79357,time travel,1445268761 +201967,260,adventure,1442793282 +201967,260,space epic,1442793268 +201976,6323,predictable,1376772211 +201976,54503,hilarious,1250674369 +201976,54503,nerds,1250674379 +201976,64620,based on a true story,1250703683 +201976,64620,history,1250703708 +201976,64620,Nixon,1250703687 +201976,64620,politics,1250703679 +201993,39,fun,1376784712 +201993,364,lions,1330543650 +201993,593,anthony hopkins,1307928608 +201993,593,based on a book,1307928611 +201993,593,classic,1307928647 +201993,593,crime,1307928626 +201993,593,disturbing,1307928630 +201993,593,drama,1307928635 +201993,593,gothic,1307928639 +201993,593,investigation,1307928633 +201993,593,jodie foster,1307928653 +201993,593,mental illness,1307928624 +201993,593,psychology,1307928616 +201993,593,serial killer,1307928619 +201993,593,suspense,1307928614 +201993,1059,amazing cinematography,1307937260 +201993,1059,based on a play,1307937265 +201993,1059,beautiful,1307937239 +201993,1059,claire danes,1307937252 +201993,1059,leonardo dicaprio,1307937249 +201993,1059,romantic,1307937269 +201993,1059,shakespeare,1307937277 +201993,1059,updated classics,1307937236 +201993,1080,british,1307928941 +201993,1080,british comedy,1307928945 +201993,1080,hilarious,1307928949 +201993,1080,mockumentary,1307928939 +201993,1080,monty python,1307928934 +201993,1080,nudity,1307928928 +201993,1080,parody,1307928952 +201993,1080,religion,1307928955 +201993,1080,sexual,1307928925 +201993,1136,british comedy,1307928807 +201993,1136,classic,1307928834 +201993,1136,comedy,1307928837 +201993,1136,funny,1307928840 +201993,1136,hilarious,1307928814 +201993,1136,medieval,1307928811 +201993,1136,monthy python,1307928817 +201993,1136,parody,1307928820 +201993,1136,religion,1307928821 +201993,1136,satire,1307928831 +201993,1136,satirical,1307928826 +201993,1136,spoof,1307928829 +201993,1136,witty,1307928823 +201993,1193,based on a book,1308967320 +201993,1193,drama,1308967325 +201993,1193,mental hospital,1308967306 +201993,1193,mental illness,1308967284 +201993,1193,psychology,1308967313 +201993,1193,statutory rape,1308967297 +201993,1193,violence,1308967308 +201993,1219,Alfred Hitchcock,1319693976 +201993,1219,black and white,1319693980 +201993,1219,classic,1319693994 +201993,1219,creepy,1319693996 +201993,1219,cross dressing,1319694001 +201993,1219,imdb top 250,1319693990 +201993,1219,mental illness,1319693986 +201993,1219,psychology,1319694012 +201993,1219,serial killer,1319694005 +201993,1219,tense,1319694008 +201993,1219,thriller,1319694014 +201993,1246,bittesweet,1319612917 +201993,1246,hilosophy,1319612913 +201993,1246,inspirational,1319612910 +201993,1246,Robin Williams,1319612904 +201993,1246,suicide,1319612906 +201993,1285,black comedy,1317701912 +201993,1285,dark humor,1317701921 +201993,1285,high school,1317701925 +201993,1285,serial killer,1317701908 +201993,1345,Classic,1319612862 +201993,1345,eerie,1319612840 +201993,1345,high school,1319612851 +201993,1345,religion,1319612855 +201993,1345,Stephen King,1319612847 +201993,1485,classic comedy,1308994627 +201993,1485,divorce,1308994640 +201993,1485,funny,1308994632 +201993,1485,jim carrey,1308994623 +201993,1485,lawyer,1308994634 +201993,1485,marriage,1308994637 +201993,1485,over the top,1308994614 +201993,1485,workaholic,1308994619 +201993,1721,atmospheirc,1307843559 +201993,1721,based on a true story,1307843546 +201993,1721,bittersweet,1307755966 +201993,1961,autism,1308897375 +201993,1961,brothers,1308897377 +201993,1961,dark comedy,1308897398 +201993,1961,disability,1308897380 +201993,1961,exceptional acting,1308897386 +201993,1961,mental illness,1308897395 +201993,1961,road movie,1308897402 +201993,2059,cute,1308229262 +201993,2059,Lindsay Lohan,1308229259 +201993,2059,mistaken identities,1308229274 +201993,2059,remake,1308229250 +201993,2059,switching places,1308229283 +201993,2059,twins,1308229267 +201993,2121,author:Stephen King,1324863380 +201993,2121,Stephen King,1324863388 +201993,2541,awful soundtrack,1378941302 +201993,2541,manipulation,1378941323 +201993,2541,Sarah Michelle Gellar,1378941313 +201993,2548,high school,1319693847 +201993,2548,injured animal,1319923876 +201993,2548,sequel,1319923573 +201993,2548,suicide,1319693849 +201993,2548,telekenisis,1319693812 +201993,2762,mindfuck,1307928316 +201993,2762,psychology,1307928310 +201993,2762,twist ending,1307928314 +201993,2858,comedy,1308307988 +201993,2858,coming of age,1308393937 +201993,2858,dark comedy,1308307980 +201993,2858,death,1308393940 +201993,2858,drugs,1308393931 +201993,2858,mental illness,1308393943 +201993,2858,midlife crisis,1308393929 +201993,2858,paedophilia,1308393913 +201993,2858,satirical,1308393918 +201993,2858,thought-provoking,1308393923 +201993,2858,violence,1308307984 +201993,3249,chilling,1333427487 +201993,3249,haunting,1333427494 +201993,3264,worse than the show,1307841879 +201993,4700,comedy,1307861459 +201993,4700,coming of age,1307861462 +201993,4700,family,1307861479 +201993,4700,friendship,1307861469 +201993,4700,romance,1307861472 +201993,4700,royalty,1307861457 +201993,4700,teen,1307861464 +201993,4995,based on a true story,1308393755 +201993,4995,genius,1308393762 +201993,4995,mental illness,1308393787 +201993,4995,psychology,1308393776 +201993,4995,schizophrenia,1308393769 +201993,4995,twist ending,1308393771 +201993,5218,animals,1307937061 +201993,5218,animation,1307937058 +201993,5218,annoying,1307937066 +201993,5218,cartoon,1307937056 +201993,5218,children,1307937052 +201993,5218,funny,1307937054 +201993,5255,crossdressing,1365567153 +201993,5255,hilarious,1365567140 +201993,5255,stereotypes,1365567148 +201993,5389,beautiful,1317702176 +201993,5389,horse,1317702172 +201993,5389,memorable,1317702169 +201993,5389,suitable for all ages,1317702186 +201993,5618,adventure,1307928762 +201993,5618,alternate reality,1307928767 +201993,5618,animation,1307928769 +201993,5618,anime,1307928774 +201993,5618,childhood,1307928775 +201993,5618,dreamlike,1307928782 +201993,5618,fairy tale,1307928780 +201993,5618,hallucinatory,1307928788 +201993,5618,long,1307928797 +201993,5618,surreal,1307928754 +201993,5630,Anthony Hopkins,1309045630 +201993,5630,FBI,1309045626 +201993,5630,gore,1309045617 +201993,5630,remake,1309045612 +201993,5630,serial killer,1309045621 +201993,5630,torture,1309045615 +201993,5669,9/11,1307937403 +201993,5669,american idiocy,1307937407 +201993,5669,anti-Bush,1307937373 +201993,5669,Columbine High School,1307937417 +201993,5669,documentary,1307937373 +201993,5669,Michael Moore,1307937376 +201993,5669,politics,1307937382 +201993,5669,propaganda,1307937394 +201993,5669,terrorism,1307937399 +201993,5669,violence in america,1307937387 +201993,6218,coming of age,1307845613 +201993,6218,culture clash,1307845616 +201993,6218,england,1307845619 +201993,6218,feel-good,1307845606 +201993,6218,football,1307845624 +201993,6218,friendship,1307845586 +201993,6218,high school,1307845577 +201993,6218,keira knightley,1307845582 +201993,6218,lesbian subtext,1307845571 +201993,6218,love,1307845628 +201993,6218,marriage,1307845605 +201993,6218,mother daughter relationship,1307845593 +201993,6218,soccer,1307845596 +201993,6218,sports,1307845599 +201993,6218,thought-provoking,1307845632 +201993,6242,better than the american version,1320138084 +201993,6242,disturbing,1320138088 +201993,6242,gritty,1320457134 +201993,6242,japanese horror,1320138094 +201993,6242,psychological,1320138100 +201993,6242,remade as: The Ring (2002),1320138109 +201993,6242,shock ending,1320457140 +201993,6593,chick flick,1307861404 +201993,6593,comedy,1307861391 +201993,6593,coming of age,1307861396 +201993,6593,family,1307861385 +201993,6593,high school,1307861401 +201993,6593,jamie lee curtis,1307861372 +201993,6593,lindsay lohan,1307861369 +201993,6593,psychology,1307861378 +201993,6593,switching places,1307861381 +201993,6704,drama,1309571633 +201993,6704,high school,1309571623 +201993,6704,mental illness,1309571643 +201993,6704,school,1309571620 +201993,6704,school shooting,1309571628 +201993,6704,twist ending,1309571648 +201993,6807,british,1307929010 +201993,6807,british comedy,1307929014 +201993,6807,hilarious,1307929018 +201993,6807,monty python,1307929021 +201993,6807,ridiculous,1307929033 +201993,6807,see more than once,1307929038 +201993,6807,silly,1307929035 +201993,7254,alternate reality,1307845701 +201993,7254,ashton kutcher,1307845711 +201993,7254,mathematics,1307845725 +201993,7254,memories,1307845728 +201993,7254,nudity,1307845718 +201993,7254,suspense,1307845731 +201993,7254,time travel,1307845736 +201993,7316,comedy,1307918395 +201993,7316,drama,1307918400 +201993,7316,high school,1307861313 +201993,7316,lindsay lohan,1307861305 +201993,7451,clique,1307789408 +201993,7451,High School,1307789398 +201993,7451,lesbian subtext,1307789404 +201993,8376,overrated,1376455836 +201993,8376,quotable,1376455839 +201993,8507,atmospheric,1319694114 +201993,8507,banned movie,1319694075 +201993,8507,black and white,1319694064 +201993,8507,circus,1319694102 +201993,8507,controversial,1319694106 +201993,8507,cult film,1319694070 +201993,8507,disturbing,1319694090 +201993,8507,freaks,1319694080 +201993,8507,gruesome,1319694082 +201993,8507,short,1319694067 +201993,8507,strange,1319694093 +201993,8507,touching,1319694097 +201993,26915,incest,1346476805 +201993,27592,dark,1320137973 +201993,27592,Korean,1320137999 +201993,27592,Korean horror,1320137966 +201993,27592,vengeance,1320137977 +201993,27592,violent,1320137986 +201993,27592,voice over,1320137982 +201993,31867,boring,1309509488 +201993,31867,cliched,1309509498 +201993,31867,girls,1309509504 +201993,31867,stereotypes,1309509510 +201993,32914,bullying,1320815624 +201993,32914,remake,1320815613 +201993,32914,revenge,1320815627 +201993,32914,stephen king,1320815610 +201993,32914,telekenesis,1320815617 +201993,33166,too complicated,1344826945 +201993,44974,controversial,1328930236 +201993,44974,disturbing,1328930240 +201993,44974,drugs,1331518189 +201993,44974,Ellen Page,1328930244 +201993,44974,gore,1331518163 +201993,44974,intense,1331518160 +201993,44974,mature kids,1328930259 +201993,44974,paedophilia,1328930274 +201993,44974,psychology,1328930254 +201993,44974,sexual abuse,1328930251 +201993,44974,tense,1331518180 +201993,44974,torture,1331518169 +201993,44974,unsympathetic characters,1331518177 +201993,44974,visually appealing,1331518148 +201993,47830,abuse,1308392689 +201993,47830,bizarre,1308392691 +201993,47830,incest,1308392700 +201993,47830,lesbian subtext,1308392718 +201993,47830,mental illness,1308392708 +201993,47830,nudity (topless),1308392698 +201993,47830,sexual abuse,1308392702 +201993,47830,sister sister relationship,1308392732 +201993,49649,bad acting,1333928429 +201993,49649,based on a book,1333928433 +201993,49649,cliche,1333928414 +201993,49649,dragons,1333928425 +201993,49649,teen,1333928417 +201993,50804,adult,1307928553 +201993,50804,cannibalism,1307928575 +201993,50804,gaspard ulliel,1307928549 +201993,50804,Hannibal Lecter,1307790532 +201993,50804,not as good as the first,1307928507 +201993,50804,psychiatrist as protagonist,1307790545 +201993,50804,serial killer,1307790525 +201993,52245,hilarious,1349094665 +201993,58301,forth wall,1309004835 +201993,58301,hostage,1309004841 +201993,58301,intelligent,1309004846 +201993,58301,torture,1309004866 +201993,59418,true story,1317701828 +201993,59604,abuse,1309061597 +201993,59604,based on a true story,1309061616 +201993,59604,death,1309061611 +201993,59604,drama,1309061610 +201993,59604,easily confused with other movie(s) (title),1309061582 +201993,59604,family relationships,1309061604 +201993,59604,horror,1309061592 +201993,59604,love,1309061606 +201993,59604,mental illness,1309061596 +201993,59604,nudity (full frontal - brief),1309061552 +201993,59604,terrifying,1309061589 +201993,59604,torture,1309061573 +201993,59604,tragedy,1309079628 +201993,61638,bad acting,1320446658 +201993,62203,extremely violent,1319612764 +201993,62203,lesbian subtext,1319612744 +201993,62203,martyrdom,1319612768 +201993,62203,plot twist,1319612773 +201993,62203,shocking,1319612759 +201993,62203,torture,1319612747 +201993,63062,based on a true story,1307844530 +201993,63062,imposter,1307844552 +201993,63062,murder,1307844568 +201993,63062,not happy ending,1307844544 +201993,63062,police corruption,1307844535 +201993,63062,serial killer,1307844557 +201993,63062,wrongly accused,1307844539 +201993,63992,chick flick,1317702050 +201993,63992,high school,1317702062 +201993,63992,porn for women,1317702053 +201993,63992,teen movie,1317702065 +201993,63992,unintentional comedy,1317702045 +201993,65193,alex pettyfer,1307756964 +201993,65882,ghosts,1307854528 +201993,65882,mental illness,1307854550 +201993,65882,psychological,1307854522 +201993,65882,remake,1307854526 +201993,65882,schizophrenia,1307854533 +201993,65882,twist ending,1307854518 +201993,68941,rape,1319612680 +201993,68941,revenge,1319612697 +201993,69122,awkward,1307936868 +201993,69122,casino,1307936892 +201993,69122,cliche,1307936888 +201993,69122,comedy,1307936861 +201993,69122,drinking,1307936865 +201993,69122,drugs,1307936885 +201993,69122,plot holes,1307936874 +201993,69122,structure,1307936877 +201993,69712,bad interpretation,1307963049 +201993,69712,based on a book,1307963036 +201993,69712,book to movie,1307963041 +201993,69712,cancer,1307963010 +201993,69712,ending,1307962994 +201993,69712,genuine characters,1307963006 +201993,69712,lawyers,1307963003 +201993,69712,manipulation,1307962999 +201993,69712,medical problems,1307963015 +201993,69712,mother daughter relationship,1307963030 +201993,69712,relationships,1307963023 +201993,69712,teen,1307963020 +201993,72041,alex pettyfer,1307757035 +201993,72041,april pearson,1307928712 +201993,72041,calvin dean,1307928723 +201993,72041,comedy,1307757057 +201993,72041,dimitri leonidas,1307928718 +201993,72041,ending,1307757028 +201993,72041,good acting,1307757047 +201993,72041,horror,1307757054 +201993,72041,jon wright,1307928732 +201993,72041,revenge,1307757032 +201993,72041,tuppence middleton,1307928727 +201993,72407,bad acting,1317702010 +201993,72407,unintentional comedy,1317702027 +201993,72641,family,1332412077 +201993,72641,feel good,1332412085 +201993,72641,kindness of strangers,1332412093 +201993,72641,racism,1332412067 +201993,72641,Sandra Bullock,1332412074 +201993,72641,sports,1332412101 +201993,72641,true story,1332412071 +201993,74458,insanity,1307844389 +201993,74458,Leonardo DiCaprio,1307844412 +201993,74458,psychological,1307844400 +201993,74458,twist ending,1307844377 +201993,75341,9/11,1309696216 +201993,75341,depressing,1309696193 +201993,75341,Robert Pattinson,1309696202 +201993,75341,shocking ending,1309696196 +201993,75341,sibling relationship,1309696213 +201993,78772,based on a book,1317701990 +201993,78772,chick flick,1317701979 +201993,78772,dumb,1317701983 +201993,78772,porn for women,1317701976 +201993,83585,bad acting,1320458846 +201993,83585,cheesy,1320458779 +201993,83585,Killer child,1320458663 +201993,83585,murder,1320458669 +201993,83585,parent-children relationship,1320458679 +201993,83585,Remake,1320458649 +201993,83585,ridiculous,1320459046 +201993,83585,silly,1320458843 +201993,83585,Unusual,1320458656 +201993,85397,Amanda Seyfried,1339935806 +201993,85397,cliche,1339935797 +201993,85397,mystery,1339935809 +201993,85397,retelling,1339935800 +201993,85397,romance,1339935813 +201993,87079,beautiful,1347793788 +201993,87079,deep,1347793792 +201993,87079,rape,1347793795 +201993,88706,bullying,1322875039 +201993,88706,drama,1322875049 +201993,88706,high school,1322875047 +201993,88706,suicide attempt,1322875054 +201993,88706,teenagers,1322875044 +201993,89305,Based on a TV show,1317701761 +201993,89305,hilarious,1317701753 +201993,91500,drama,1332639352 +201993,91500,intense,1332639332 +201993,91500,reality TV,1332639344 +201993,91500,thriller,1332639348 +201993,92420,clever,1329038997 +201993,92420,magic,1329038986 +201993,92420,sci-fi,1329038980 +201993,92420,strange,1329038966 +201993,92420,telekenisis,1329038995 +201993,92422,Daniel RADCLIFFE,1348269516 +201993,92422,horror,1348269507 +201993,92422,unsatisfying ending,1348269501 +201993,94478,acting,1337853062 +201993,94478,Bella Heathcote,1337853053 +201993,94478,eva green,1337853057 +201993,94478,Helena Bonham Carter,1337853045 +201993,94478,johnny depp,1337853036 +201993,94478,the plot,1337853024 +201993,94478,tim burton,1337853028 +201993,96565,annoying characters,1353395599 +201993,96565,boring,1353395626 +201993,96565,story,1353395604 +201993,96821,coming of age,1350333732 +201993,96821,Emma Watson,1350333740 +201993,97172,animation,1351585094 +201993,97172,family,1351585117 +201993,97172,heartwarming,1351585105 +201993,97172,sad,1351585101 +201993,97172,scary,1351585099 +201993,97172,Tim Burton,1351585090 +201993,97701,found footage,1350889890 +201993,97701,no plot,1350889885 +201993,97701,scary,1350889894 +201993,98203,ridiculous,1353395562 +201993,99012,hilarious,1355800360 +201993,99012,parody,1355800343 +201993,99012,silly,1355800358 +201993,99012,slasher,1355800364 +201993,101479,Australian movie,1364416197 +202093,1590,nasty,1187207369 +202093,3916,lame,1187207477 +202093,4310,plane,1187207446 +202093,4848,weird,1187207445 +202093,8622,satire,1187207470 +202112,260,space epic,1434392772 +202112,260,space opera,1434392766 +202122,593,crime,1429763622 +202122,593,psychothriller,1429763622 +202122,593,suspense,1429763622 +202124,260,sci-fi,1443716159 +202124,260,Star Wars,1443716166 +202125,18,Tarantino,1216105635 +202125,296,Quentin Tarantino,1216105690 +202125,296,Tarantino,1216105663 +202125,1089,Quentin Tarantino,1216105689 +202125,1089,Tarantino,1216105653 +202125,1729,Tarantino,1216105615 +202125,6874,Quentin Tarantino,1216105694 +202125,7438,Quentin Tarantino,1216105693 +202125,32587,comic book,1216105637 +202125,32587,Frank Miller,1216105639 +202125,52281,Quentin Tarantino,1216105697 +202125,52281,Robert Rodriguez,1216105699 +202125,53519,grindhouse,1216105625 +202125,53519,Tarantino,1216105632 +202127,858,based on a book,1442795224 +202127,858,classic,1442795208 +202127,858,great acting,1442795220 +202127,858,mafia,1442795211 +202127,858,masterpiece,1442795216 +202127,858,Oscar (Best Picture),1442795218 +202127,68954,comedy,1442795150 +202127,68954,feel good,1442795154 +202140,27781,artistic,1294003023 +202140,27781,colorful,1294003033 +202140,27781,language,1294003037 +202140,27781,multicultural,1294003040 +202140,27781,surreal,1294003076 +202158,5377,adaptation,1189059228 +202158,5377,comedy,1189059228 +202158,5377,coming of age,1189059228 +202158,5377,growing up,1189059227 +202158,5377,romantic comedy,1189059228 +202158,5377,single men,1189059228 +202168,26622,good,1260560588 +202223,1732,cult film,1451336941 +202223,3703,myth,1451337060 +202223,5952,cult film,1451336974 +202232,260,scifi cult,1444679315 +202232,260,Space Saga,1444679331 +202255,260,comedy,1434101957 +202255,260,mystery,1434101975 +202255,260,thriller,1434101962 +202255,2571,action,1434103689 +202255,2571,sci-fi,1434103689 +202255,2571,thriller,1434103689 +202268,47,Brad Pitt,1415184868 +202268,47,twist ending,1415184866 +202268,50,conspiracy,1415184843 +202268,50,Kevin Spacey,1415184841 +202268,50,Oscar (Best Supporting Actor),1415184851 +202268,50,thriller,1415184848 +202268,50,twist ending,1415184846 +202268,527,Steven Spielberg,1415192342 +202268,527,true story,1415192336 +202268,608,kidnapping,1415184999 +202268,936,BD-R,1415190827 +202268,936,Cold War,1415190813 +202268,936,communism,1415190824 +202268,936,Greta Garbo,1415190805 +202268,936,paris,1415190815 +202268,936,soviet russia,1415190819 +202268,936,Soviet Union,1415190817 +202268,1086,Alfred Hitchcock,1415184893 +202268,1086,black and white,1415184925 +202268,1086,classic,1415184907 +202268,1086,detective,1415184899 +202268,1231,astronauts,1415185892 +202268,1231,NASA,1415185888 +202268,1527,Bruce Willis,1415185301 +202268,1527,campy,1415185305 +202268,1527,dystopia,1415185294 +202268,1527,futuristic,1415185282 +202268,1527,Milla Jovovich,1415185283 +202268,1527,satirical,1415185289 +202268,1527,surreal,1415185298 +202268,2352,Criterion,1409610992 +202268,2352,Glenn Close,1409610972 +202268,2352,suicide,1409611009 +202268,2352,unlikely friendships,1409611004 +202268,2579,black and white,1409500420 +202268,2579,Criterion,1409500435 +202268,2579,mindfuck,1409500422 +202268,2579,not linear,1409500429 +202268,2579,Twist Ending,1409500425 +202268,2716,bad effects,1444948334 +202268,2716,Bill Murray,1444948301 +202268,2716,old cars,1444948315 +202268,2819,1970s,1415185880 +202268,2819,cia,1415185869 +202268,2819,conspiracy,1415185871 +202268,2819,Robert Redford,1415185873 +202268,2819,spy,1415185876 +202268,3471,1970's,1415185357 +202268,3471,Classic,1415185348 +202268,3471,desert,1415185371 +202268,3471,extraterrestrial life,1415185369 +202268,3471,parapsychology,1415185366 +202268,3471,Steven Spielberg,1415185362 +202268,3471,visually appealing,1415185364 +202268,4881,Billy Bob Thornton,1415185574 +202268,4881,neo-noir,1415185577 +202268,4881,scarlett johansson,1415185580 +202268,5299,culture clash,1409600495 +202268,5299,greek,1409600502 +202268,5299,wedding,1409600513 +202268,7076,Jacqueline Bisset,1415185668 +202268,7076,Nudity (Topless - Brief),1415185676 +202268,7076,Steve McQueen,1415185654 +202268,7082,Cary Grant,1409600326 +202268,7082,Delbert Mann,1409600328 +202268,7089,dreamlike,1415197681 +202268,7089,fascism,1415197701 +202268,7089,nostalgic,1415197686 +202268,7089,SMALL-TOWN LIFE,1415197653 +202268,7256,Andes Mountains,1444948418 +202268,7256,survival,1444948428 +202268,7792,Warren Beatty,1415185914 +202268,8207,assassin,1415185717 +202268,8207,assassination,1415185719 +202268,8207,Frederick Forsyth,1415185741 +202268,8207,Southern Europe,1415185723 +202268,26242,chase,1415185630 +202268,26242,driving,1415185635 +202268,26242,no plot,1415185623 +202268,26242,Steven Spielberg,1415185618 +202268,26242,thriller,1415185616 +202268,26242,truck,1415185614 +202268,55820,atmospheric,1415184945 +202268,55820,coen brothers,1415184967 +202268,55820,landscape,1415184956 +202268,55820,thriller,1415184962 +202268,55820,Tommy Lee Jones,1415184970 +202268,55820,twist ending,1415184964 +202268,60069,artificial intelligence,1415185534 +202268,60069,dystopia,1415185538 +202268,60069,post-apocalyptic,1415185543 +202268,60069,social commentary,1415185531 +202268,60069,space,1415185547 +202268,65642,complicated,1409500341 +202268,65642,complicated plot,1409500356 +202268,65642,directorial debut,1409500364 +202268,65642,grim,1409500368 +202268,65642,murder,1409500371 +202268,65642,no ending,1409500345 +202268,65642,Spanish,1409500353 +202268,65642,too predictable,1409500348 +202268,68269,Bechdel test:Pass,1409600254 +202268,68269,biographical view,1409600269 +202268,68269,character based on real person:Queen Victoria of UK,1409600244 +202268,68269,historically inaccurate,1409600274 +202268,68269,protagonist is royal,1409600230 +202268,68269,protagonist is young princess & heir,1409600234 +202268,71899,claymation,1415188782 +202268,71899,coming of age,1415188781 +202268,71899,New York City,1415188782 +202268,71899,Philip Seymour Hoffman,1415188782 +202268,71899,stop motion,1415188781 +202268,71899,touching,1415188782 +202268,72011,corporate america,1415186756 +202268,72011,Detroit,1415186758 +202268,72011,George Clooney,1415186760 +202268,72011,loneliness,1415186749 +202268,72011,Zach Galifianakis,1415186765 +202268,74545,adultery,1415185969 +202268,74545,assassination,1415185975 +202268,74545,British,1415185976 +202268,74545,espionage,1415185963 +202268,74545,Ewan McGregor,1415185972 +202268,74545,Roman Polanski,1415185965 +202268,77854,Michel Gondry,1415190689 +202268,77854,visually inventive,1415190692 +202268,86833,crude humor,1409600615 +202268,86833,Judd Apatow,1409600613 +202268,86833,parody,1409600606 +202268,94266,Jason Segal,1409600432 +202268,96610,alternate reality,1409500291 +202268,96610,assassin,1409500313 +202268,96610,Bruce Willis,1409500283 +202268,96610,dystopia,1409500275 +202268,96610,gore,1409500295 +202268,96610,memory,1409500287 +202268,96610,Nudity (Topless),1409500298 +202268,96610,organized crime,1409500316 +202268,96610,sci-fi,1409500278 +202268,96610,time travel,1409500280 +202268,96610,violent,1409500320 +202268,96610,western,1409500322 +202268,101285,guns,1409432179 +202268,101285,James Franco,1409432156 +202268,101285,plot,1409432162 +202268,101285,spring break,1409432170 +202268,104069,Louis C.K,1415192369 +202268,104069,not a documentary,1415192376 +202268,107980,Colin Firth,1409601059 +202268,107980,Nicole Kidman,1409601062 +202268,107980,Post Traumatic Stress Disorder,1409601077 +202268,110102,Captain America,1415185078 +202268,110102,Chris Evans,1415185070 +202268,110102,conspiracy,1415185083 +202268,110102,Marvel Cinematic Universe,1415185075 +202268,110102,Scarlett Johansson,1415185090 +202268,111759,Emily Blunt,1409600077 +202268,111759,powersuit,1409600087 +202268,111759,time travel,1409600083 +202268,111759,war,1409600099 +202268,112556,adultery,1415184797 +202268,112556,Ben Affleck,1415184774 +202268,112556,David Fincher,1415184778 +202268,112556,false accusation,1415184782 +202268,112556,Rosamund Pike,1415184788 +202268,112556,unpredictable,1415184791 +202270,356,classic,1448476032 +202270,356,Funny,1448476036 +202270,356,great acting,1448476049 +202270,356,historical,1448476052 +202270,356,tom hanks,1448476024 +202270,3147,death penalty,1448475988 +202270,3147,Frank Darabont,1448475983 +202270,3147,great acting,1448475971 +202270,3147,Tom Hanks,1448475964 +202283,3070,John Lithgow,1296583175 +202283,79428,remake,1296583093 +202340,111,Classic,1357444749 +202340,111,cult film,1357444751 +202340,111,insanity,1357444761 +202340,111,Jodie Foster,1357444746 +202340,111,Martin Scorsese,1357444736 +202340,111,New York City,1357444768 +202340,111,Robert De Niro,1357444740 +202340,111,social commentary,1357444743 +202351,48982,smart humor,1178100943 +202366,589,Arnold Schwarzenegger,1179108595 +202366,733,Nicolas Cage,1179109041 +202366,8665,Paul Greengrass,1179108844 +202366,40819,James Mangold,1179108868 +202426,19,wacky comedy,1432503991 +202426,260,space adventure,1432503874 +202426,356,inspiration for life,1432504125 +202426,356,life adventure,1432504125 +202426,356,screwball comedy,1432504125 +202426,4993,wizard fantasy,1432504028 +202497,2028,World War II,1357992632 +202506,260,action,1443486245 +202506,260,gay,1443486254 +202514,31658,fantasy world,1176511525 +202514,31658,Magic,1176511515 +202514,31658,romance,1176511505 +202514,31658,Studio Ghibli,1176511530 +202514,31658,WITCHCRAFT,1176511520 +202514,31658,wizards,1176511511 +202536,924,sci-fi,1416464662 +202536,1201,atmospheric,1418562642 +202536,1201,Clint Eastwood,1418562633 +202536,1201,western,1418562650 +202536,2403,classic,1415862958 +202536,2403,post-traumatic stress disorder,1415862966 +202536,2700,adult humor,1415862174 +202536,2700,censorship,1415862178 +202536,2700,parody,1415862194 +202536,2951,Clint Eastwood,1415861386 +202536,2951,western,1415861457 +202536,3147,emotional,1416451723 +202536,3147,great acting,1416451738 +202536,3147,nostalgic,1416451762 +202536,3147,Stephen King,1416451719 +202536,4720,atmospheric,1416464339 +202536,4720,gothic,1416464319 +202536,4720,surprise ending,1416464313 +202536,5010,military,1415860990 +202536,5010,realistic,1415861004 +202536,5010,true story,1415860998 +202536,8604,french comedy,1415861545 +202536,8605,french comedy,1415861507 +202536,27193,french comedy,1415861530 +202536,31410,Adolf Hitler,1415861927 +202536,31410,history,1415861925 +202536,31410,Nazis,1415861948 +202536,31410,World War II,1415861929 +202536,41828,french comedy,1415861408 +202536,41828,World War II,1416465884 +202536,52694,Rowan Atkinson,1415861781 +202536,54908,french comedy,1415861445 +202536,55908,excellent script,1416464963 +202536,55908,intellectual,1416464847 +202536,55908,philosophical,1416465121 +202536,55908,sci-fi,1416464790 +202536,79132,alternate reality,1416464539 +202536,79132,sci-fi,1416464463 +202536,90522,comedy,1415861172 +202536,90522,Rowan Atkinson,1415861168 +202536,93805,Nazis,1415861469 +202536,93805,sci-fi,1415861494 +202536,93805,steampunk,1415861488 +202536,115713,artificial intelligence,1434728443 +202536,115713,sci-fi,1434728434 +202543,540,10,1187112409 +202543,707,50 Cent,1187112407 +202543,1298,25,1187112405 +202543,1779,85,1187112410 +202543,2431,15.02.06,1187112406 +202543,2951,2.5,1187112408 +202543,2951,3,1187112408 +202575,39,chick flick,1439218835 +202575,39,high school,1439218832 +202575,39,teen,1439218829 +202575,39,teen movie,1439218819 +202575,39,teenager,1439218829 +202575,92420,clever,1439215689 +202575,92420,coming of age,1439215684 +202575,92420,predictable ending,1439215713 +202575,92420,sci-fi,1439215744 +202575,92420,supernatural powers,1439215693 +202575,92420,teenage angst,1439215679 +202575,101864,post-apocalyptic,1439215948 +202575,101864,sci-fi,1439215948 +202575,101864,twists & turns,1439215941 +202575,126548,high school,1439216001 +202575,126548,romantic comedy,1439215997 +202575,126548,teen movie,1439215994 +202575,127096,High school,1439215785 +202583,82143,Alaska,1422497931 +202586,45,Best Performance: Nicole Kidman as Suzanne Stone Maretto,1142629900 +202586,111,AFI #47,1142653648 +202586,111,Best Performance: Robert De Niro as Travis Bickle,1142631504 +202586,154,Best Performance: CAtherine Deneuve as Severine Serizy,1142629411 +202586,260,AFI #15,1142648751 +202586,296,AFI #95,1142655250 +202586,296,Best Performance: Samuel L. Jackson as Jules Winnfield,1142631480 +202586,356,AFI #71,1142654505 +202586,356,BEST PICTURE,1142654505 +202586,446,Best Performance: Gong Li as Juxian,1142628289 +202586,477,Best Performance: Angela Bassett as Tina Turner,1142628128 +202586,515,Best Performance: Emma Thompson as Miss Kenton,1142629610 +202586,527,AFI #9,1142648502 +202586,527,Best Performance: Ralph Fiennes as Amon Goeth,1142629355 +202586,527,BEST PICTURE,1142648502 +202586,537,REDBOX,1300824197 +202586,590,AFI #75,1142654622 +202586,590,BEST PICTURE,1142654622 +202586,593,AFI #65,1142654285 +202586,593,Best Performance: Anthony Hopkins as Hannibal Lecter,1142631681 +202586,593,BEST PICTURE,1142654285 +202586,594,AFI #49,1142653708 +202586,599,AFI #80,1142654766 +202586,608,AFI #84,1142654873 +202586,750,AFI #26,1142649226 +202586,858,AFI #3,1142648240 +202586,858,BEST PICTURE,1142648240 +202586,898,AFI #51,1142653767 +202586,898,Best Performance: Katharine Hepburn as Tracy Lord,1142629549 +202586,899,AFI #10,1142648546 +202586,900,AFI #68,1142654409 +202586,900,BEST PICTURE,1142654409 +202586,902,Best Performance: Audrey Hepburn as Holly Golightly,1142631392 +202586,903,AFI #61,1142654173 +202586,903,"Best Performance: James Stewart as John ""Scottie"" Ferguson",1142631354 +202586,904,AFI #42,1142653499 +202586,905,AFI #35,1142653291 +202586,905,BEST PICTURE,1142653291 +202586,908,AFI #40,1142653443 +202586,909,AFI #93,1142655191 +202586,909,BEST PICTURE,1142655191 +202586,910,AFI #14,1142648702 +202586,910,Best Performance: Jack Lemmon as Jerry/Daphne,1142629213 +202586,912,AFI #2,1142648166 +202586,912,BEST PICTURE,1142648254 +202586,913,AFI #23,1142649068 +202586,913,Best Performance: Humphrey Bogart as Sam Spade,1142629673 +202586,914,AFI #91,1142655130 +202586,914,BEST PICTURE,1142655130 +202586,919,AFI #6,1142648383 +202586,920,AFI #4,1142648297 +202586,920,BEST PICTURE,1142648297 +202586,922,AFI #12,1142648630 +202586,922,Best Performance: Gloria Swanson as Norma Desmond,1142629064 +202586,923,AFI #1,1142648124 +202586,924,AFI #22,1142649025 +202586,926,AFI #16,1142648809 +202586,926,Best Performance: Bette Davis as Margo Channing,1142631030 +202586,926,BEST PICTURE,1142648809 +202586,930,Best Performance: Cary Grant as T.R. Devlin,1142630659 +202586,936,Best Performance: Greta Garbo as Ninotchka,1142630335 +202586,946,Best Performance: Carole Lombard as Maria Tura,1142629960 +202586,948,AFI #82,1142654819 +202586,951,Best Performance: Rosalind Russell as Hildy Johnson,1142630238 +202586,953,AFI #11,1142648592 +202586,953,Best Performance: James Stewart as George Bailey,1142630932 +202586,954,AFI #28,1142649375 +202586,954,classic,1142649394 +202586,955,AFI #97,1142655298 +202586,955,Best Performance: Cary Grant as Dr. David Huxley,1142629090 +202586,969,AFI #17,1142648856 +202586,1035,AFI #55,1142653904 +202586,1035,BEST PICTURE,1142653904 +202586,1084,AFI #27,1142649250 +202586,1090,AFI #83,1142654846 +202586,1090,BEST PICTURE,1142654846 +202586,1096,Best Performance: Meryl Streep as Sophie Zawistowska,1142631096 +202586,1097,AFI #25,1142649180 +202586,1103,AFI #59,1142654054 +202586,1103,Best Performance: James Dean as Jim Stark,1142629844 +202586,1104,AFI #45,1142653590 +202586,1179,Best Performance: Angelica Huston as Lilly Dillon,1142628470 +202586,1185,Best Performance: Daniel Day-Lewis as Christy Brown,1142630839 +202586,1193,AFI #20,1142648948 +202586,1193,Best Performance: Jack Nicholson as Randle Patrick McMurphy,1142631591 +202586,1193,BEST PICTURE,1142648948 +202586,1198,AFI #60,1142654085 +202586,1200,Best Performance: Sigourney Weaver as Ellen Ripley,1142631640 +202586,1204,AFI #5,1142648337 +202586,1204,Best Performance: Peter o'Toole as T.E. Lawrence,1142631286 +202586,1204,BEST PICTURE,1142648337 +202586,1206,AFI #46,1142653625 +202586,1206,Best Performance Malcolm Mcdowell as Alex Delarge,1142627196 +202586,1207,AFI #34,1142653248 +202586,1208,AFI #28,1142649295 +202586,1212,AFI #57,1142653986 +202586,1213,AFI #94,1142655224 +202586,1219,AFI #18,1142648883 +202586,1221,AFI #32,1142653163 +202586,1221,Best Performance: Al Pacino as Michael Corleone,1142630542 +202586,1221,BEST PICTURE,1142653163 +202586,1225,AFI #53,1142653840 +202586,1225,BEST PICTURE,1142653840 +202586,1228,AFI #24,1142649134 +202586,1228,Best Performance: Robert De Niro as Jake La Motta,1142630874 +202586,1230,AFI #31,1142653135 +202586,1230,Best Performance: Diane Keaton as Annie Hall,1142629380 +202586,1230,BEST PICTURE,1142653136 +202586,1247,AFI #7,1142648413 +202586,1250,AFI #13,1142648670 +202586,1250,BEST PICTURE,1142648670 +202586,1252,AFI #19,1142648913 +202586,1252,Best Performance: Faye dunaway as Evelyn Cross Mulwray,1142630027 +202586,1254,AFI #30,1142649454 +202586,1254,Best Performance: Humphrey Bogart as Fred C. Dobbs,1142630399 +202586,1256,AFI #85,1142654915 +202586,1260,Best Performance: Peter Lorre as Hans Beckert,1142628160 +202586,1263,AFI #79,1142654740 +202586,1263,Best Performance: Chirstopher Walken as Nick Chevotarevich,1142628334 +202586,1263,BEST PICTURE,1142654740 +202586,1265,Best Performance: Bill Murray as Phil Connors,1142629730 +202586,1266,AFI #98,1142655331 +202586,1266,BEST PICTURE,1142655331 +202586,1267,AFI #67,1142654366 +202586,1272,AFI #89,1142655048 +202586,1272,Best Performance: George C. Scott as General George S. Patton Jr.,1142628544 +202586,1272,BEST PICTURE,1142655048 +202586,1278,Best Performance: Gene Wilder as Dr. Frederick Frankenstein,1142630905 +202586,1282,AFI #58,1142654010 +202586,1283,AFI #33,1142653211 +202586,1287,AFI #72,1142654540 +202586,1287,BEST PICTURE,1142654540 +202586,1292,Best Performance: Peter Sellers as Chance the Gardener,1142630207 +202586,1304,AFI #50,1142653740 +202586,1354,Best Performance: Emily Watson as Bess McNeill,1142630599 +202586,1387,AFI #48,1142653680 +202586,1732,"Best Performance: Jeff Bridges as Jeffrey ""The Dude"" Lebowski",1142631767 +202586,1927,AFI #54,1142653873 +202586,1927,BEST PICTURE,1142653873 +202586,1931,AFI #86,1142654949 +202586,1931,BEST PICTURE,1142654949 +202586,1939,AFI #37,1142653359 +202586,1939,BEST PICTURE,1142653359 +202586,1944,AFI #52,1142653805 +202586,1944,BEST PICTURE,1142653805 +202586,1945,AFI #8,1142648446 +202586,1945,Best Performance: Marlon Brandon as Terry Malloy,1142631140 +202586,1945,BEST PICTURE,1142648446 +202586,1947,AFI # 41,1142653467 +202586,1947,BEST PICTURE,1142653467 +202586,1950,Best Performance: Sidney Poitier as Virgil Tibbs,1142629517 +202586,1952,AFI #36,1142653327 +202586,1952,"Best Performance: Dustin Hoffman as ""Ratso"" Rizzo",1142630973 +202586,1952,BEST PICTURE,1142653327 +202586,1953,AFI #70,1142654478 +202586,1953,BEST PICTURE,1142654478 +202586,1954,AFI #78,1142654705 +202586,1954,BEST PICTURE,1142654705 +202586,1964,Best Performance: Jane Fonda as Bree Daniels,1142628251 +202586,2067,AFI #39,1142653417 +202586,2070,Best Performance: Robert Duvall as Mac Sledge,1142630722 +202586,2109,Best Performance: Steve Martin as Navin Johnson,1142627242 +202586,2186,Best Performance: Robart Walker as Bruno Anthony,1142628411 +202586,2243,Best Performance: Holly Hunter as Jane Craig,1142629180 +202586,2280,seen 2006,1137368257 +202586,2291,Best Performance: Johnny Depp as Edward Scissorhands,1142630468 +202586,2348,Best Performance: Gary Oldman as Sid Vicious,1142629318 +202586,2351,Best Performance: Giulietta Masina as Cabria,1142630511 +202586,2366,AFI #43,1142653531 +202586,2599,Best Performance: Reese Witherspoon as Tracy Flick,1142631534 +202586,2612,Best Performance: Joan Crawford as Mildred Pierce,1142631809 +202586,2648,AFI #87,1142655002 +202586,2732,Best Performance: Jeanne Moreau as Catherine,1142628615 +202586,2757,Best Performance: Jessica Lange as Frances Farmer,1142628437 +202586,2797,Best Performance: Tom Hanks as Josh Baskin,1142630692 +202586,2908,Best Performance: Hilary Swank as Boys Don't Cry,1142628509 +202586,3006,Best Performance: Russell Crowe as Jeffrey Wigand,1142630433 +202586,3022,Best Performance: Buster Keaton as Johnny Gray,1142630095 +202586,3030,Best Performance: Toshiro Mifune as Sanjuro Kuwabatake,1142628704 +202586,3068,Best Performance: Paul Newman as Frank Galvin,1142630564 +202586,3095,AFI #21,1142648975 +202586,3095,Best Performance: Henry Fonda as Tom Joad,1142629640 +202586,3168,AFI #88,1142655025 +202586,3200,"Best Performance: Jack Nicholson as ""Baddass"" Buddusky",1142630805 +202586,3246,Best Performance: Denzel Washington as Malcolm X,1142630633 +202586,3307,AFI #76,1142654650 +202586,3307,Best Performance: Charlie Chaplin as a tramp,1142629804 +202586,3341,Best Performance: Judy Holliday as Billie Dawn,1142628094 +202586,3362,Best Performance: Al Pacino as Sonny Wortzik,1142631064 +202586,3363,AFI #77,1142654685 +202586,3365,AFI #96,1142655275 +202586,3365,Best Performance: John Wayne as Ethan Edwards,1142628377 +202586,3435,AFI #38,1142653391 +202586,3435,Best Performance: Barbara Stanwyck as Phyllis Dietrichson,1142628027 +202586,3451,AFI #99,1142655366 +202586,3462,AFI #81,1142654790 +202586,3468,Best Performance: Paul Newman as Fast Eddie Felson,1142629243 +202586,3469,Best Performance: Spencer Tracy as Henry Drummond,1142629150 +202586,3471,AFI #64,1142654254 +202586,3475,AFI #92,1142655159 +202586,3504,AFI #66,1142654324 +202586,3629,AFI #74,1142654592 +202586,3671,Best Performance: Madeline Kahn as Lili Von Shtupp,1142628927 +202586,3730,Best Performance: Gene hackman as Harry Caul,1142629999 +202586,3871,AFI #69,1142654446 +202586,4022,Best Performance: Tom Hanks as Chuck Noland,1142631562 +202586,4297,Best Performance: Max Von Sydow as Lasse Karlsson,1142629465 +202586,4361,AFI #62,1142654194 +202586,4361,Best Performance: Dustin Hoffman as Michael Dorsey,1142631443 +202586,4378,Best Performance: Ben Kingsley as Don Logan,1142628066 +202586,4427,Best Performance: Katherine Hepburn as Eleanor of Aquitaine,1142630769 +202586,4432,Best Performance: Burt Lancaster as J.J. Hunsecker,1142628864 +202586,4465,Best Performance: Jodie Foster as Sarah Tobias,1142629488 +202586,4809,Best Performance: Meryl Streep as Karen Silkwood,1142629026 +202586,4855,"Best Performance: Clint Eastwood as ""Dirty"" Harry Callahan",1142628224 +202586,5060,AFI #56,1142653960 +202586,5693,Best Performance: John Travolta as Tony Manero,1142628954 +202586,5956,"Best Performance: Daniel Day-Lewis as Bill ""The Butcher"" Cutting",1142629584 +202586,6539,Best Performance: Johnny Depp as Captain Jack Sparrow,1142631719 +202586,6856,AFI #100,1142655392 +202586,6856,Best Performance: James Cagney as George M. Cohan,1142631000 +202586,6985,Best Performance: Maria Falconetti as Joan of Arc,1142630305 +202586,7008,Best Performance: Marlon Brando as Paul,1142630265 +202586,7065,AFI #44,1142653562 +202586,7071,Best Performance: Gena Rowlands as Mabel Longhetti,1142629284 +202586,7072,AFI #63,1142654222 +202586,7130,Best Performance: Julie Christie as Diana Scott,1142628895 +202586,7327,Best Performance: Liv Ullmann as Elisabet Vogler,1142629701 +202586,7338,Best Performance: Laurence Olivier as Richard III,1142629927 +202586,7361,Best Performance: Kate Winslet as Celmentine Druczynski,1142628576 +202586,8958,Best Performance: Jamie Foxx as Ray Charles,1142631416 +202586,25856,AFI #73,1142654570 +202586,25996,Best Performance: Judy Garland as Esther Blodgett aka Vicki Lester,1142629001 +202586,37741,Best Performance: Philip Seymour Hoffman as Truman Capote,1142630059 +202586,41566,Seen 2006,1137368220 +202586,59315,REDBOX,1294101488 +202586,59709,redbox,1286218586 +202586,62235,REDBOX,1295970263 +202586,63072,redbox,1286218276 +202586,63082,REDBOX,1297783595 +202586,64614,REDBOX,1298388273 +202586,66203,REDBOX,1297177230 +202586,67923,REDBOX,1300824285 +202586,69481,redbox,1298143498 +202586,69606,redbox,1297440231 +202586,70305,REDBOX,1299076313 +202586,71211,redbox,1286218289 +202586,71838,REDBOX,1300716543 +202586,72294,redbox,1289917714 +202586,73323,REDBOX,1303139311 +202586,74275,REDBOX,1307375286 +202586,74370,redbox,1286420380 +202586,74458,redbox,1286235338 +202586,74510,redbox,1286218699 +202586,74532,redbox,1286420746 +202586,74789,REDBOX,1307375237 +202586,75813,redbox,1286218553 +202586,75985,redbox,1286420757 +202586,76030,REDBOX,1298143450 +202586,76077,redbox,1286218333 +202586,76175,redbox,1286420789 +202586,76251,redbox,1286420900 +202586,76293,redbox,1286420572 +202586,77191,redbox,1286420805 +202586,77206,redbox,1286420649 +202586,77414,redbox,1286420864 +202586,77421,REDBOX,1296748808 +202586,77427,redbox,1286420321 +202586,77561,redbox,1286420512 +202586,77665,redbox,1286420524 +202586,77798,redbox,1288710217 +202586,77820,redbox,1286420876 +202586,77843,redbox,1291736044 +202586,77866,redbox,1286218615 +202586,78039,REDBOX,1305054229 +202586,78041,redbox,1286420589 +202586,78088,REDBOX,1295363954 +202586,78105,redbox,1286420560 +202586,78116,redbox,1286218649 +202586,78174,redbox,1289917809 +202586,78209,redbox,1286218667 +202586,78264,redbox,1286420661 +202586,78266,redbox,1288710229 +202586,78467,redbox,1289322020 +202586,78469,REDBOX,1294777218 +202586,78637,redbox,1291735713 +202586,78679,redbox,1286420637 +202586,78772,redbox,1291735740 +202586,78774,redbox,1286218414 +202586,78893,redbox,1289917767 +202586,79057,redbox,1289917739 +202586,79091,REDBOX,1294777273 +202586,79134,redbox,1289321980 +202586,79139,redbox,1291736001 +202586,79185,REDBOX,1293552282 +202586,79224,redbox,1286420545 +202586,79242,redbox,1292340775 +202586,79293,REDBOX,1292962508 +202586,79428,REDBOX,1294428871 +202586,79572,redbox,1291735791 +202586,79588,redbox,1291735757 +202586,79592,redbox,1292340700 +202586,79663,redbox,1291736029 +202586,79695,redbox,1289917825 +202586,79702,redbox,1291735779 +202586,79860,redbox,1286420724 +202586,79879,REDBOX,1294777259 +202586,79897,REDBOX,1298388240 +202586,79946,redbox,1286218375 +202586,80126,REDBOX,1295970311 +202586,80166,REDBOX,1300716519 +202586,80219,REDBOX,1296748743 +202586,80222,REDBOX,1292962553 +202586,80241,REDBOX,1293552356 +202586,80350,REDBOX,1293552322 +202586,80363,REDBOX,1293552309 +202586,80469,redbox,1286420445 +202586,80489,REDBOX,1294777203 +202586,80549,REDBOX,1292962524 +202586,80551,redbox,1289917791 +202586,80586,REDBOX,1292962566 +202586,80590,REDBOX,1295363905 +202586,80617,redbox,1292340746 +202586,80831,REDBOX,1298388259 +202586,80839,REDBOX,1295970289 +202586,80846,REDBOX,1295363943 +202586,80858,REDBOX,1297177215 +202586,80880,REDBOX,1303139295 +202586,80939,REDBOX,1299076326 +202586,80969,REDBOX,1299076293 +202586,81080,redbox,1289322153 +202586,81158,redbox,1291735921 +202586,81191,REDBOX,1297783571 +202586,81417,REDBOX,1297177178 +202586,81512,REDBOX,1303139281 +202586,81516,REDBOX,1305054243 +202586,81537,REDBOX,1300824300 +202586,81562,REDBOX,1301501250 +202586,81564,REDBOX,1307375192 +202586,81591,REDBOX,1303831430 +202586,81641,REDBOX,1301501278 +202586,81782,REDBOX,1300716495 +202586,81788,REDBOX,1300716509 +202586,81819,REDBOX,1307375559 +202586,81834,REDBOX,1305054203 +202586,81845,REDBOX,1303224787 +202586,81847,REDBOX,1301501261 +202586,81932,REDBOX,1300716478 +202586,82095,REDBOX,1303224816 +202586,82167,REDBOX,1301501235 +202586,82202,REDBOX,1300824177 +202586,82378,REDBOX,1307375484 +202586,82461,REDBOX,1303139324 +202586,82499,REDBOX,1300824217 +202586,82744,REDBOX,1299076250 +202586,82767,REDBOX,1303224827 +202586,82852,REDBOX,1304434617 +202586,82854,REDBOX,1305644088 +202586,83086,REDBOX,1299076278 +202586,83177,REDBOX,1303224797 +202586,83349,REDBOX,1304434602 +202586,83910,REDBOX,1307375524 +202586,84374,REDBOX,1305054218 +202586,84532,REDBOX,1307375223 +202586,84557,REDBOX,1304434631 +202586,84570,REDBOX,1303139270 +202586,84637,REDBOX,1307375550 +202586,84942,REDBOX,1307375534 +202586,85020,REDBOX,1305644034 +202586,85056,REDBOX,1307375448 +202586,87028,REDBOX,1307375466 +202587,260,Science Fiction,1438697503 +202637,40617,scary,1325719640 +202637,40617,too scary,1325719637 +202637,40732,too scary,1325719660 +202637,80917,aliens,1325719831 +202637,80917,romance,1325719819 +202637,80917,social commentary,1325719837 +202658,8033,In Netflix queue,1139481695 +202659,5445,thought provoking,1438227645 +202659,68099,awe inspiring,1438227431 +202659,68099,claustraphobic,1438227431 +202659,68099,feeling of impending doom,1438227431 +202659,95720,characters,1438228137 +202659,95720,deadpan humor,1438228127 +202659,95720,Goofy,1438228078 +202665,84954,Romance,1301979643 +202727,105242,Estonian,1453129250 +202727,105242,Toomas Hussar,1453129212 +202727,105597,douglas booth,1421366849 +202727,105597,love,1421366849 +202727,105597,romance,1421366849 +202727,116213,animation,1423091711 +202727,116213,children's,1423091711 +202727,116213,dinosaurs,1423091711 +202727,133873,Eesti,1453129337 +202727,133873,Estonian,1453129276 +202729,353,dark hero,1368479492 +202729,592,dark hero,1368479492 +202729,1028,animation & live action interact (scene),1268773409 +202729,1028,Dick Van Dyke,1268773400 +202729,1028,Julie Andrews,1268773403 +202729,1028,magic,1268773412 +202729,1028,Oscar (Best Actress),1268773417 +202729,6874,dark hero,1368479492 +202729,8961,action,1268770797 +202729,8961,funny,1268770785 +202729,8961,imdb top 250,1268770803 +202729,8961,Oscar (Best Animated Feature),1268770808 +202729,8961,Pixar,1268770779 +202729,8961,Samuel L. Jackson,1268770781 +202729,8961,stylized,1268770812 +202729,8961,superhero,1268770782 +202729,50872,Disney,1268770740 +202729,50872,food/cooking,1268770736 +202729,50872,France,1268770738 +202729,50872,imagination,1268770718 +202729,50872,Janeane Garofalo,1268770721 +202729,50872,lawyers,1268770751 +202729,50872,Patton Oswalt,1268770725 +202729,50872,pixar,1268770731 +202729,50872,rats,1268770754 +202729,50872,talking animals,1268770734 +202729,59315,action,1268770450 +202729,59315,kidnapping,1268770458 +202729,59315,military,1268770460 +202729,59315,Robert Downey Jr.,1268770431 +202729,59315,sci-fi,1268770442 +202729,60069,animated,1268770886 +202729,60069,love story,1268770863 +202729,60069,Oscar (Best Animated Feature),1268770879 +202729,60069,Post apocalyptic,1268770877 +202729,60069,quirky,1268770865 +202729,60069,Sci-Fi,1268770871 +202729,60069,social commentary,1268770873 +202729,68358,action,1268770496 +202729,68358,DEATH OF A PARENT,1268770493 +202729,68358,sci-fi,1268770502 +202729,68358,Simon Pegg,1268770479 +202729,68358,Star Trek,1268770484 +202729,68358,time travel,1268770488 +202729,68954,adventure,1268770631 +202729,68954,dogs,1268770627 +202729,68954,dreams,1268770623 +202729,68954,friendship,1268770625 +202729,68954,heartbreaking,1268770535 +202729,68954,Pixar,1268770537 +202729,68954,predictable,1268770605 +202729,68954,sad but good,1268770540 +202729,68954,slow paced,1268770614 +202729,68954,South America,1268770607 +202729,68954,storytelling,1268770611 +202729,68954,talking animals,1268770543 +202729,72489,dark,1278371467 +202729,73017,Jude Law,1313179594 +202729,73017,Robert Downey Jr.,1313179590 +202729,73017,Sherlock Holmes,1313179596 +202729,81834,Alan Rickman,1313179993 +202729,81834,based on a book,1313179996 +202729,81834,boarding school,1313179999 +202729,81834,British,1313180001 +202729,81834,Harry Potter,1313180006 +202729,81834,magic,1313180012 +202751,2657,camp,1395357266 +202751,2657,cult classic,1395357284 +202751,2657,great soundtrack,1395357279 +202758,108190,dystopia,1435883333 +202758,108190,female protagonist,1435883351 +202758,108190,Shailene Woodley,1435883342 +202777,1,animation,1306969981 +202777,1,Disney,1306969977 +202777,2,Robin Williams,1306972401 +202777,19,detective,1368331181 +202777,19,Jim Carrey,1306972578 +202777,28,author:Jane Austen,1367106036 +202777,28,Jane Austen,1367106041 +202777,29,weird,1368331283 +202777,32,Brad Pitt,1306968159 +202777,32,Bruce Willis,1306968150 +202777,32,complicated,1306968171 +202777,32,Terry Gilliam,1306968165 +202777,32,time loop,1368331574 +202777,32,time travel,1306968155 +202777,32,twist ending,1306968154 +202777,36,Bible,1364675237 +202777,36,Catholicism,1364675232 +202777,36,Christianity,1364675230 +202777,36,true story,1364675241 +202777,39,Alicia Silverstone,1306971665 +202777,44,kung fu,1368331538 +202777,47,Brad Pitt,1306968578 +202777,47,detective,1306968585 +202777,47,Morgan Freeman,1306968575 +202777,50,organized crime,1306966194 +202777,73,Jewish,1372891542 +202777,73,lawyer,1372891553 +202777,95,John Travolta,1364675188 +202777,95,Utah,1364675194 +202777,100,corruption,1368331756 +202777,110,cavalry charge,1372913710 +202777,110,medieval,1306968823 +202777,110,Mel Gibson,1306968818 +202777,110,Scotland,1306968826 +202777,141,gay,1306971862 +202777,150,Tom Hanks,1306969901 +202777,153,Jim Carrey,1306970482 +202777,153,Nicole Kidman,1306970482 +202777,153,Tommy Lee Jones,1306970482 +202777,153,Val Kilmer,1306970482 +202777,154,sexual,1368331235 +202777,161,war,1414449921 +202777,165,New York City,1306970379 +202777,165,Samuel L. Jackson,1306970383 +202777,185,Sandra Bullock,1306971726 +202777,185,unrealistic,1306971736 +202777,196,alien,1368331354 +202777,223,Kevin Smith,1306972214 +202777,231,Jeff Daniels,1364675159 +202777,231,Jim Carrey,1364675157 +202777,231,not funny,1364675152 +202777,262,imagination,1372894755 +202777,262,India,1372894748 +202777,262,Liesel Matthews,1372894784 +202777,288,gave me a headache,1306972036 +202777,288,road trip,1306972012 +202777,290,abuse,1367106586 +202777,290,maori,1367106565 +202777,290,New Zealand,1367106569 +202777,293,Alpha male,1368405782 +202777,293,easily confused with other movie(s) (title),1368405739 +202777,293,Gary Oldman,1368405977 +202777,293,guns,1368405838 +202777,293,hit men,1368405767 +202777,293,Jean Reno,1368405968 +202777,293,love story,1368405755 +202777,293,Natalie Portman,1368405717 +202777,293,organized crime,1368405726 +202777,316,Kurt Russell,1306970644 +202777,316,languages,1306970644 +202777,316,military,1306970644 +202777,316,religion,1306970644 +202777,318,author:Stephen King,1372907783 +202777,329,Patrick Stewart,1364675124 +202777,329,space,1364675128 +202777,339,Sandra Bullock,1306971951 +202777,344,Jim Carrey,1306970276 +202777,349,cia,1367107291 +202777,349,drug cartels,1367107309 +202777,349,organized crime,1367107317 +202777,349,revenge,1367107326 +202777,356,biography,1367102789 +202777,356,narrated,1367102796 +202777,356,Sexuality,1367102806 +202777,356,Tom Hanks,1306969843 +202777,356,vietnam war,1367102811 +202777,367,Cameron Diaz,1364675087 +202777,367,Jim Carrey,1364675083 +202777,367,magic,1364675102 +202777,367,not funny,1364675078 +202777,377,Sandra Bullock,1306970225 +202777,380,Jamie Lee Curtis,1306970095 +202777,380,spies,1306970095 +202777,410,Raul Julia,1306973279 +202777,431,crime,1367197071 +202777,431,gangster,1367197080 +202777,431,gangsters,1367197085 +202777,431,guns,1367197097 +202777,431,organized crime,1367197057 +202777,474,assassin,1364675043 +202777,474,assassination,1364675048 +202777,474,guns,1364675033 +202777,480,children,1372896980 +202777,480,dinosaurs,1306969859 +202777,480,Steven Spielberg,1306969862 +202777,480,wonder,1372897141 +202777,500,Comedy,1306970656 +202777,500,cross dressing,1306970651 +202777,508,Gay Lead Character,1306973308 +202777,527,Jews,1367101991 +202777,527,sex scenes,1372905762 +202777,527,Steven Spielberg,1367101964 +202777,539,fate,1306971434 +202777,539,Meg Ryan,1306971433 +202777,539,reincarnation,1306971433 +202777,539,Tom Hanks,1306971365 +202777,539,women movies vs men movies,1306971434 +202777,541,author:Philip K. Dick,1372911991 +202777,541,future,1367102561 +202777,541,Harrison Ford,1367102573 +202777,541,robots,1367102555 +202777,581,gay,1367106704 +202777,581,lesbian,1367106707 +202777,586,Invincible but idiot bad guys,1306971625 +202777,586,Macaulay Culkin,1306971625 +202777,587,Demi Moore,1306971308 +202777,587,ghosts,1306971227 +202777,587,Whoopi Goldberg lez scene,1306971308 +202777,588,Robin Williams,1306970154 +202777,589,Arnold Schwarzenegger,1306967479 +202777,589,artificial intelligence,1306967487 +202777,589,dystopia,1306967529 +202777,589,nuclear war,1306967495 +202777,589,time travel,1306967477 +202777,590,American Civil War,1372896056 +202777,590,native americans,1372895883 +202777,590,wolves,1367102085 +202777,592,Jack Nicholson,1306969955 +202777,592,Tim Burton,1306969913 +202777,593,Anthony Hopkins,1306968368 +202777,593,Jodie Foster,1306968349 +202777,594,witches,1368331479 +202777,597,Julia Roberts,1306970773 +202777,608,boring,1306970200 +202777,610,Adult Animation,1306966279 +202777,610,rotoscoping,1306966285 +202777,639,nude black women,1307065863 +202777,648,CIA,1364674748 +202777,648,espionage,1364674759 +202777,648,spy,1368331507 +202777,648,Tom Cruise,1364674743 +202777,678,disability,1364673789 +202777,678,murderer,1364673778 +202777,728,1930s,1372890164 +202777,728,Classism,1372890215 +202777,728,matriarch,1372890196 +202777,733,Nicolas Cage,1306970869 +202777,733,Sean Connery,1306970872 +202777,736,flying cows,1306970537 +202777,736,helen hunt,1306970537 +202777,750,Peter Sellers,1306972514 +202777,760,germany,1368331808 +202777,778,drug abuse,1367102691 +202777,778,heroin,1367102689 +202777,778,robbery,1367102698 +202777,778,violent,1367102685 +202777,780,alien,1368331354 +202777,780,Will Smith,1306970009 +202777,788,Eddie Murphy,1306973056 +202777,838,arranged romance,1372894425 +202777,838,true love,1372894443 +202777,858,New York City,1372917729 +202777,866,glbt,1368331390 +202777,902,Audrey Hepburn,1347585593 +202777,902,New York,1347585596 +202777,912,Humphrey Bogart,1306972190 +202777,912,World War II,1306972193 +202777,919,author:L. Frank Baum,1372883388 +202777,919,colourful,1367105759 +202777,919,dreamlike,1306972245 +202777,919,flying monkeys,1372883485 +202777,919,Judy Garland,1306972286 +202777,919,midgets,1372883310 +202777,919,music,1306972286 +202777,924,Hall 9000,1306972141 +202777,924,shallow plot,1306972141 +202777,924,visually appealing,1306972141 +202777,948,Elizabeth Taylor,1306968915 +202777,948,George Stevens,1306968918 +202777,948,James Dean,1306968921 +202777,948,oil,1306968902 +202777,949,psychology,1367107521 +202777,1025,magic,1367175190 +202777,1025,swords,1367175177 +202777,1028,childhood,1372880779 +202777,1028,David Tomlinson,1367108004 +202777,1028,Dick Van Dyke,1367107872 +202777,1028,Julie Andrews,1367107852 +202777,1028,magic,1367107889 +202777,1028,touching,1372880806 +202777,1029,mother-son relationship,1367179064 +202777,1029,power of belief,1367179081 +202777,1029,talking animals,1367179066 +202777,1032,animation,1367106100 +202777,1032,author:Lewis Carroll,1372881342 +202777,1032,Chester cat,1367179020 +202777,1032,fairy tale,1372881426 +202777,1032,Mad Hatter,1367179027 +202777,1032,March Hair,1367179035 +202777,1032,miniaturization,1372881442 +202777,1032,queen,1372881435 +202777,1032,rabbits,1367106093 +202777,1032,talking animals,1367106089 +202777,1073,author:Roald Dahl,1372883084 +202777,1073,candy,1372883089 +202777,1073,children,1372883149 +202777,1073,chocolate,1372883224 +202777,1073,chocolate waterfall,1372883240 +202777,1073,Gene Wilder,1306971197 +202777,1073,honesty,1372883170 +202777,1073,musical,1372883155 +202777,1073,Oompa Loompas,1372883207 +202777,1073,the creepy tunnel,1372883164 +202777,1073,witty,1306971197 +202777,1076,Author:Henry James,1372891391 +202777,1076,old house,1372891407 +202777,1079,Jamie Lee Curtis,1306973368 +202777,1079,John Cleese,1306973368 +202777,1079,Kevin Kline,1306973368 +202777,1080,Monty Python,1306973038 +202777,1092,sexual,1368331235 +202777,1099,author:Charles Dickens,1372889977 +202777,1099,Ebenezer Scrooge,1372890053 +202777,1099,ghosts,1372890011 +202777,1099,greed,1372890075 +202777,1099,materialism,1372890061 +202777,1127,alien,1368331354 +202777,1129,dystopia,1306967625 +202777,1129,John Carpenter,1306967622 +202777,1129,Kurt Russell,1306967617 +202777,1129,new york,1306967632 +202777,1129,NYC,1306967636 +202777,1129,prison,1306967639 +202777,1136,Monty Python,1306971212 +202777,1175,weird,1368331283 +202777,1179,girl friend,1372900505 +202777,1179,mother,1372900497 +202777,1193,Jack Nicholson,1306971352 +202777,1197,Andre the Giant,1306971025 +202777,1197,Cary Elwes,1306971025 +202777,1197,fairy tale,1306971032 +202777,1197,fantasy,1306971030 +202777,1197,Mandy Patinkin,1306971025 +202777,1197,Robin Wright Penn,1306971025 +202777,1197,Wallace Shawn,1306971025 +202777,1198,Harrison Ford,1306970267 +202777,1199,visually appealing,1368331626 +202777,1199,weird,1368331283 +202777,1204,atmospheric,1366775026 +202777,1206,dystopia,1367102997 +202777,1206,Stanley Kubrick,1367102985 +202777,1208,Too Long!,1306972429 +202777,1210,sci-fi,1306944180 +202777,1210,space,1306944185 +202777,1211,angel,1364673543 +202777,1211,Berlin,1364673546 +202777,1211,dreamlike,1364673550 +202777,1211,German,1364673553 +202777,1211,meditative,1364673592 +202777,1211,surreal,1364673556 +202777,1213,organized crime,1306971999 +202777,1214,aliens,1306967333 +202777,1214,dark,1306967342 +202777,1214,suspense,1306967338 +202777,1219,suspense,1368331696 +202777,1220,road trip,1306973221 +202777,1222,Vietnam,1364675006 +202777,1222,Vietnam War,1364675008 +202777,1225,Alpha male,1306973151 +202777,1225,tom hulce,1306973151 +202777,1232,dystopia,1367106433 +202777,1237,reflective,1368331726 +202777,1240,Arnold Schwarzenegger,1306967726 +202777,1240,artificial intelligence,1306967728 +202777,1240,time travel,1306967731 +202777,1246,suicide,1306973383 +202777,1258,author:Stephen King,1372882787 +202777,1258,ghosts,1306972524 +202777,1258,Jack Nicholson,1306972535 +202777,1258,Telepathy,1372882927 +202777,1265,Andie MacDowell,1306971115 +202777,1265,Bill Murray,1306971073 +202777,1265,time travel,1306971117 +202777,1270,Christopher Lloyd,1306970358 +202777,1270,mother-son relationship,1372881569 +202777,1270,time loop,1368331574 +202777,1270,time travel,1306970291 +202777,1296,Helena Bonham Carter,1342557993 +202777,1296,scenic,1342560369 +202777,1323,religious propaganda,1414449251 +202777,1333,suspense,1368331696 +202777,1356,Borg,1347581858 +202777,1356,franchise,1347581873 +202777,1356,Whoopi Goldberg,1347581863 +202777,1387,70s plot,1306972669 +202777,1387,Roy Scheider,1306972669 +202777,1393,football,1364674990 +202777,1393,sports,1364674977 +202777,1393,Tom Cruise,1364674979 +202777,1408,tribal,1364670809 +202777,1429,kung fu,1368331538 +202777,1517,spy,1368331507 +202777,1527,aliens,1306966803 +202777,1527,Bruce Willis,1306966779 +202777,1527,futuristic,1306966795 +202777,1527,Luc Besson,1306966877 +202777,1527,Milla Jovovich,1306966782 +202777,1527,race against time,1306966860 +202777,1527,sci-fi,1306943798 +202777,1527,surreal,1306943800 +202777,1527,visually appealing,1368331626 +202777,1572,screen writer,1372890285 +202777,1580,aliens,1306970697 +202777,1580,Tommy Lee Jones,1306970697 +202777,1580,Will Smith,1306970697 +202777,1584,S.E.T.I.,1306972780 +202777,1610,cold war,1306972691 +202777,1610,Sean Connery,1306972687 +202777,1610,submarine,1306972695 +202777,1625,Michael Douglas,1306968259 +202777,1635,Thanksgiving,1372893374 +202777,1639,lesbian,1364671389 +202777,1639,sexuality,1364671394 +202777,1690,guns,1364670912 +202777,1704,Matt Damon,1306971712 +202777,1704,psychology,1306971712 +202777,1721,Kate Winslet,1306970764 +202777,1721,romance,1306970764 +202777,1721,survival,1306970764 +202777,1760,spice girls,1414449613 +202777,1873,France,1372899518 +202777,1913,boarding school,1372898025 +202777,1913,headmistress,1372898038 +202777,1914,family bonds,1307042628 +202777,1914,Native Americans,1307042624 +202777,1917,Bruce Willis,1306972316 +202777,1917,Liv Tyler,1306972378 +202777,1917,Places getting obliterated,1306972378 +202777,1921,visually appealing,1368331626 +202777,1923,Cameron Diaz,1306971939 +202777,1923,sexual,1306971897 +202777,1935,Author:John Ford,1372888751 +202777,1935,coal miners,1372888809 +202777,1935,unions,1372888773 +202777,1935,Welsh,1372888786 +202777,1956,depression,1347581949 +202777,1956,Donald Sutherland,1347581965 +202777,1956,Mary Tyler Moore,1347581932 +202777,1957,sports,1364672582 +202777,1960,China,1306968949 +202777,1960,Qing Dynasty,1306968952 +202777,1961,Dustin Hoffman,1306971775 +202777,1961,Tom Cruise,1306971775 +202777,1967,Brian Froud,1364671070 +202777,1967,David Bowie,1364670982 +202777,1967,dreamlike,1364670992 +202777,1967,Jennifer Connelly,1364670985 +202777,1967,maze,1364671005 +202777,1967,surreal,1364670998 +202777,1968,Molly Ringwald,1306972617 +202777,2011,breast implants,1306973466 +202777,2011,Christopher Lloyd,1306973466 +202777,2011,time loop,1368331574 +202777,2012,Christopher Lloyd,1306973004 +202777,2012,time travel,1306973007 +202777,2012,western,1306973004 +202777,2018,talking animals,1367179131 +202777,2018,Woods,1367179141 +202777,2020,Keanu Reeves,1364670628 +202777,2020,Uma Thurman,1364670631 +202777,2021,aliens,1372880077 +202777,2021,Francesca Annis,1372880163 +202777,2021,Frank Herbert,1306969680 +202777,2021,music,1306969752 +202777,2021,Patrick Stewart,1372880059 +202777,2071,Randy Shilts,1372892496 +202777,2076,weird,1368331283 +202777,2078,bears,1367106234 +202777,2078,orangatang,1367106252 +202777,2078,snakes,1367106241 +202777,2078,talking animals,1367106180 +202777,2078,Tiger,1367106282 +202777,2085,talking animals,1367178967 +202777,2087,Fairie,1367106638 +202777,2087,Indians,1367106669 +202777,2087,Lost Boys,1367106653 +202777,2087,mermaids,1367106680 +202777,2087,Peter Pan,1367106616 +202777,2087,sword fight,1367106629 +202777,2087,Tinker Bell,1367106645 +202777,2090,child abuse,1367178886 +202777,2090,Eva Gabor,1367178899 +202777,2090,talking animals,1367178880 +202777,2096,Dragon,1367179206 +202777,2096,Faries,1367179213 +202777,2096,Magic,1367179226 +202777,2096,witches,1368331479 +202777,2105,alternate reality,1306966733 +202777,2105,computer game,1306966690 +202777,2105,computers,1306966729 +202777,2105,Disney,1306966672 +202777,2105,Jeff Bridges,1306966678 +202777,2105,sci-fi,1306944147 +202777,2106,germany,1368331808 +202777,2137,talking animals,1367178830 +202777,2138,rabbits,1306969276 +202777,2138,talking animals,1306969307 +202777,2138,violent,1306969311 +202777,2139,fantasy,1306969357 +202777,2139,genetic engineering,1372882705 +202777,2139,mice,1372882640 +202777,2139,rats,1372882663 +202777,2139,talking animals,1306969355 +202777,2143,devil,1366769009 +202777,2143,fairy tale,1366769003 +202777,2143,Mia Sara,1366769042 +202777,2143,unicorns,1366768996 +202777,2161,Atreyu,1372882373 +202777,2161,dragon,1372882347 +202777,2161,gnomes,1372882491 +202777,2161,magic,1372882417 +202777,2161,princess,1372882432 +202777,2161,racing snail,1372882448 +202777,2161,sphinx,1372882500 +202777,2161,turtle,1372882459 +202777,2174,Catherine O'Hara,1306972901 +202777,2174,ghosts,1306972901 +202777,2174,Michael Keaton,1306972901 +202777,2174,Winona Ryder,1306972901 +202777,2193,witches,1368331479 +202777,2193,wizards,1368331835 +202777,2288,Antarctica,1306967411 +202777,2288,John Carpenter,1306967394 +202777,2288,Kurt Russell,1306967376 +202777,2313,Anthony Hopkins,1367102145 +202777,2330,DOWN ON THEIR LUCK,1364674128 +202777,2330,trucks,1364674115 +202777,2336,religion,1347583246 +202777,2351,DOWN ON THEIR LUCK,1364673458 +202777,2351,sentimental,1364673463 +202777,2360,disfunctional family,1366768333 +202777,2360,low budget,1364673146 +202777,2360,psychological,1366768328 +202777,2360,sexual abuse,1366768271 +202777,2360,siblings,1364673137 +202777,2360,suicide,1366768279 +202777,2398,Santa Claus,1367175449 +202777,2407,alien,1368331354 +202777,2502,Jennifer Aniston,1306973510 +202777,2580,drugs,1342553768 +202777,2611,bank manager,1372888444 +202777,2611,Royal Naval College,1372888416 +202777,2611,stealing,1372888431 +202777,2617,Brendan Fraser,1364673396 +202777,2617,Imhotep,1364673412 +202777,2617,librarians,1364673417 +202777,2617,Rachel Weisz,1364673399 +202777,2617,special effects,1364673404 +202777,2624,afterlife,1307063063 +202777,2624,reflective,1307063112 +202777,2628,Natalie Portman,1306971052 +202777,2644,polygamy,1372899999 +202777,2644,sexuality,1372900001 +202777,2644,spiders,1372899993 +202777,2644,wolves,1372899990 +202777,2710,Handycam,1306973077 +202777,2716,Bill Murray,1306971560 +202777,2716,Dan Aykroyd,1306971560 +202777,2716,Harold Ramis,1306971560 +202777,2716,Rick Moranis,1306971560 +202777,2716,Sigourney Weaver's new look,1306971560 +202777,2728,Biography,1306968872 +202777,2728,Rome,1306968880 +202777,2728,slavery,1306968857 +202777,2728,sword and sandal,1306968862 +202777,2761,animation,1367106457 +202777,2761,giant robots,1367106461 +202777,2761,Jennifer Aniston,1372882103 +202777,2761,Vin Diesel,1367106464 +202777,2762,Bruce Willis,1306968304 +202777,2762,ghosts,1306968310 +202777,2819,spy,1368331507 +202777,2857,Beatles,1306896185 +202777,2857,psychedelic,1306896223 +202777,2857,surreal,1306896259 +202777,2859,musical band:Talking Heads,1364673504 +202777,2872,magic,1306943822 +202777,2872,medieval,1306943813 +202777,2872,Nudity (Topless),1372877008 +202777,2918,pretentious,1306972570 +202777,2948,spies,1368331778 +202777,2948,spy,1368331507 +202777,2949,spy,1368331507 +202777,2959,fighting,1372896613 +202777,2959,Helena Bonham Carter,1306970846 +202777,2959,philosophy,1306970846 +202777,2959,psychology,1306970846 +202777,2987,Jessica Rabit...Yeah baby!,1306972454 +202777,3074,Robert Redford,1372894675 +202777,3079,1800s,1372893540 +202777,3079,England,1372893536 +202777,3079,penniless,1372893569 +202777,3079,wit,1372893549 +202777,3079,writer,1372893554 +202777,3083,GLBT,1347584235 +202777,3083,Oscar (Best Foreign Language Film),1347584255 +202777,3083,queer,1347584247 +202777,3148,abortion,1364675945 +202777,3148,assault,1370484590 +202777,3148,author:John Irving,1372895367 +202777,3148,death,1370484697 +202777,3148,Drama,1370483452 +202777,3148,Maine,1372895389 +202777,3148,orphans,1370468610 +202777,3148,suicide,1370484430 +202777,3176,serial killer,1364675913 +202777,3181,rome,1368331419 +202777,3224,erotic,1367106797 +202777,3255,baseball,1366774835 +202777,3255,madonna,1366774825 +202777,3255,sport:baseball,1366774851 +202777,3255,sports,1366774846 +202777,3255,women's lib,1366774827 +202777,3260,deathbed wish,1372894526 +202777,3260,inheritance,1372894588 +202777,3260,well-heeled family,1372894544 +202777,3275,crime,1364672552 +202777,3275,dark humor,1364672543 +202777,3275,vigilante,1364672534 +202777,3275,vigilantism,1364672536 +202777,3300,alien,1368331354 +202777,3300,anti-hero,1306967084 +202777,3300,Vin Diesel,1306967075 +202777,3301,assassin,1364675837 +202777,3301,Bruce Willis,1364675823 +202777,3301,mob,1364675828 +202777,3347,sad but good,1367107085 +202777,3361,baseball,1364675786 +202777,3361,sport:Baseball,1364675789 +202777,3361,sports,1364675793 +202777,3379,1950s,1372892277 +202777,3418,car chase,1364675751 +202777,3418,suicide attempt,1364675763 +202777,3418,violence,1364675746 +202777,3447,avarice,1372900402 +202777,3447,dirt farmer,1372900393 +202777,3447,lust,1372900407 +202777,3447,mother nature,1372900416 +202777,3452,kung fu,1368331538 +202777,3469,court,1364673669 +202777,3469,courtroom drama,1364673664 +202777,3470,friendship,1372884674 +202777,3470,nature,1364674047 +202777,3545,bisexual,1367107813 +202777,3548,four elements,1367107619 +202777,3548,New York,1372895323 +202777,3548,queer,1367107550 +202777,3548,young sexual education,1367107575 +202777,3556,suicide,1364675721 +202777,3578,Rome,1306968781 +202777,3578,Russell Crowe,1306968784 +202777,3578,sword fight,1306968787 +202777,3624,kung fu,1368331538 +202777,3702,Australia,1306967673 +202777,3702,car chase,1306967667 +202777,3702,DEATH OF A SPOUSE,1306967664 +202777,3702,Mel Gibson,1306967676 +202777,3702,revenge,1306967686 +202777,3702,violent,1306967688 +202777,3703,car chase,1306967597 +202777,3703,cars,1306967586 +202777,3703,Mel Gibson,1306967548 +202777,3703,motorcycle,1306967584 +202777,3704,Mel Gibson,1306967786 +202777,3704,Tina Turner,1306967791 +202777,3753,guns,1364672252 +202777,3753,Mel Gibson,1364672213 +202777,3753,revenge story,1364672239 +202777,3785,not funny,1364675650 +202777,3785,stupid,1364675653 +202777,3785,unbearable,1364675656 +202777,3793,marvel,1306971787 +202777,3793,Rogue,1306971836 +202777,3793,Wolverine,1306971836 +202777,3949,depressing,1367102903 +202777,3949,loneliness,1367102911 +202777,3996,Kung Fu,1306971967 +202777,3996,martial arts,1306971972 +202777,3997,axes,1366770223 +202777,3997,dragons,1366769466 +202777,3997,imps,1366769796 +202777,3997,magic,1366769262 +202777,3997,swords,1366770216 +202777,3997,value of equality,1366770314 +202777,4018,Helen Hunt,1364675573 +202777,4018,Mel Gibson,1364675569 +202777,4018,telepathy,1364675586 +202777,4047,1863,1372892070 +202777,4047,Gettysburge,1372892130 +202777,4085,comedy,1368331673 +202777,4095,1970s,1372889550 +202777,4095,black nationalist,1372889572 +202777,4095,newspaper editor,1372889589 +202777,4095,prison,1372889613 +202777,4103,mascot,1372890448 +202777,4178,home of their own,1372895151 +202777,4178,rabbits,1372895134 +202777,4178,vagabond,1372895110 +202777,4306,Cameron Diaz,1306969470 +202777,4306,donkey,1372897624 +202777,4306,Eddie Murphy,1306969465 +202777,4306,Mike Myers,1372897289 +202777,4306,ogres,1372897355 +202777,4306,sexual inuendo,1372897475 +202777,4306,talking animals,1306969460 +202777,4308,dwarf,1364675531 +202777,4308,Ewan McGregor,1364675483 +202777,4308,great soundtrack,1364675496 +202777,4308,musical,1364675505 +202777,4308,narcolepsy,1364675552 +202777,4308,Nicole Kidman,1364675480 +202777,4308,sexuality,1364675522 +202777,4308,stylized,1364675485 +202777,4425,werewolves,1414449686 +202777,4446,CGI,1414450182 +202777,4446,visually stunning,1414450255 +202777,4546,kidnapping,1367106919 +202777,4546,MISSING PERSONS,1367106922 +202777,4718,not funny,1364675457 +202777,4720,ghosts,1364671491 +202777,4720,mother-daughter relationships,1364671498 +202777,4720,Nicole Kidman,1364671494 +202777,4735,zombies,1366774158 +202777,4744,guns,1414448640 +202777,4744,police,1414448652 +202777,4872,Author: Hanif Kureishi,1372910084 +202777,4872,sexuality,1372910104 +202777,4872,strangers,1372910028 +202777,4876,blood,1368595628 +202777,4876,characters,1368585099 +202777,4876,demonic themes,1368595728 +202777,4876,ghosts,1368581872 +202777,4876,magic,1368585149 +202777,4896,author:J. K. Rowling,1372907705 +202777,4896,Children,1367102297 +202777,4896,dragons,1367102284 +202777,4896,magic,1367102268 +202777,4896,Wizards,1367102280 +202777,4901,spy,1368331507 +202777,4973,Audrey Tautou,1306973210 +202777,4973,romance,1306973210 +202777,4973,unable to have orgasms,1306973210 +202777,4979,narrated,1364675408 +202777,4979,Nudity (Topless - Brief),1364675410 +202777,4979,Wes Anderson,1364675419 +202777,4993,author:J. R. R. Tolkein,1372878675 +202777,4993,fantasy,1306943789 +202777,4993,magic,1306943786 +202777,5022,alcoholism,1367107759 +202777,5062,aging,1372890560 +202777,5062,changed identity,1372890495 +202777,5062,mysterious organization,1372890536 +202777,5064,jealousy,1364672655 +202777,5064,revenge,1364672650 +202777,5093,CIA,1366773509 +202777,5093,Columbian rebels,1366773517 +202777,5093,guns,1366773558 +202777,5093,revenge,1366773512 +202777,5128,Anne Rice,1366773745 +202777,5128,Vampires,1366773748 +202777,5171,H.G. Wells,1372879669 +202777,5171,time travel,1367101579 +202777,5220,Eddie Murphy,1367103616 +202777,5220,guns,1366768625 +202777,5220,police,1366768614 +202777,5220,Robert De Niro,1367103621 +202777,5220,William Shatner,1367105470 +202777,5225,sexual,1368331235 +202777,5266,surveillance,1368331443 +202777,5269,incest,1307069498 +202777,5313,The Rock,1306895511 +202777,5349,morals,1306972728 +202777,5378,aliens,1306944035 +202777,5378,George Lucas,1306967006 +202777,5378,Natalie Portman,1306967003 +202777,5378,robots,1306944015 +202777,5378,Samuel L. Jackson,1306967016 +202777,5378,sci-fi,1306944008 +202777,5418,Franka Potente,1372887482 +202777,5428,drugs,1414448347 +202777,5445,artificial intelligence,1306967937 +202777,5445,dystopia,1367103240 +202777,5445,Milla Jovovich,1306967928 +202777,5445,Steven Spielberg,1306967916 +202777,5445,surreal,1306967919 +202777,5445,surveillance,1306967923 +202777,5445,time travel,1367103244 +202777,5445,Tom Cruise,1306967912 +202777,5445,wrongly accused,1372882303 +202777,5449,Winona Ryder,1366774021 +202777,5463,dragons,1366768780 +202777,5463,star wars reference,1366768801 +202777,5502,alien,1368331354 +202777,5609,Lucy Liu,1366768561 +202777,5618,dreamlike,1306969131 +202777,5618,fairy tale,1306969137 +202777,5618,fantasy,1306969142 +202777,5618,Studio Ghibli,1306969128 +202777,5621,Jackie Chan,1366773614 +202777,5621,Martial Arts,1366773617 +202777,5782,agents,1364671756 +202777,5782,guns,1364671739 +202777,5782,Natalie Portman,1364671760 +202777,5872,007,1340148205 +202777,5952,atmospheric,1306943767 +202777,5952,author:J. R. R. Tolkein,1372878952 +202777,5952,fantasy,1306943756 +202777,5952,multiple storylines,1306943759 +202777,5952,wizards,1368331835 +202777,5971,children,1367097437 +202777,5971,family,1367097428 +202777,5971,feel-good,1367097421 +202777,5971,magic,1364672703 +202777,5971,nature,1364672692 +202777,5971,nature spirits,1367097396 +202777,5971,Studio Ghibli,1364672684 +202777,5971,visually appealing,1364672694 +202777,5989,based on a true story,1367107684 +202777,5989,biography,1372875426 +202777,5989,con artists,1367107698 +202777,5989,factual,1367107702 +202777,5989,true story,1367107691 +202777,5991,court,1364675386 +202777,5991,courtroom,1364675389 +202777,6156,Jackie Chan,1366773286 +202777,6156,Martial Arts,1366773394 +202777,6156,Owen Wilson,1366773301 +202777,6156,Western,1366773386 +202777,6178,blind,1367108066 +202777,6178,blindness,1367108069 +202777,6178,race,1367108062 +202777,6235,germany,1368331808 +202777,6250,author:Stephen King,1372900656 +202777,6250,blizzard,1372900688 +202777,6250,pals,1372900674 +202777,6294,kung fu,1366768954 +202777,6294,sexual references,1366768931 +202777,6333,comic book,1347583731 +202777,6333,Halle Berry,1372916795 +202777,6333,marvel,1347583733 +202777,6333,Patrick Stewart,1372916802 +202777,6350,far future,1364672961 +202777,6350,Laputa,1306965788 +202777,6350,pirates,1364672969 +202777,6350,Studio Ghibli,1364672949 +202777,6350,visually appealing,1364672966 +202777,6377,talking animals,1306969643 +202777,6377,underwater,1306969635 +202777,6383,Cars,1366768850 +202777,6383,police,1366768886 +202777,6383,street race,1366768853 +202777,6383,zoom zoom,1367109025 +202777,6502,Zombie Movie,1414450700 +202777,6539,Johnny Depp,1306972469 +202777,6539,pirates,1306972473 +202777,6541,captain nemo,1364671950 +202777,6541,Sean Connery,1364671938 +202777,6541,steampunk,1364671954 +202777,6609,1960s,1372891127 +202777,6773,bicycling,1347585928 +202777,6773,eating frogs,1347585969 +202777,6780,Stephen Hawking,1372888585 +202777,6808,germany,1368331808 +202777,6852,crime,1367107390 +202777,6852,death penalty,1367107385 +202777,6852,murder,1367107370 +202777,6852,true story,1367107377 +202777,6863,heavy metal,1364675348 +202777,6863,Jack Black,1364675345 +202777,6863,rock and roll,1364675339 +202777,6867,friendship,1368579112 +202777,6867,trains,1368576750 +202777,6885,Meg Ryan,1307067426 +202777,6885,New York City,1307067571 +202777,6942,british,1364674185 +202777,6942,England,1364674190 +202777,6984,court,1372893804 +202777,6984,lawyer,1372893772 +202777,6984,spy,1372893809 +202777,7034,lesbian,1364671179 +202777,7034,SEXUAL AWAKENING,1364671189 +202777,7034,sexuality,1364671182 +202777,7079,falsely accused,1372893209 +202777,7079,flogging,1372893140 +202777,7079,gypsy,1372893184 +202777,7079,hunchback,1372893237 +202777,7079,religious fraud,1372893166 +202777,7090,atmospheric,1306944076 +202777,7090,Jet Li,1323390631 +202777,7090,kung fu,1306944072 +202777,7090,martial arts,1306944080 +202777,7090,oscar (best foreign language film),1368331321 +202777,7143,Honor,1347585134 +202777,7143,Japan,1347585122 +202777,7143,martial arts,1347585125 +202777,7143,New Zealand,1347585129 +202777,7147,Coen Brothers,1372881706 +202777,7147,family bonds,1372881677 +202777,7147,heartwarming,1372881684 +202777,7147,Helena Bonham Carter,1372881710 +202777,7147,storytelling,1372881670 +202777,7147,twins,1372881660 +202777,7153,fantasy,1306943778 +202777,7153,multiple storylines,1306943782 +202777,7153,wizards,1368331835 +202777,7163,computer ace,1372891679 +202777,7163,high-tech firms,1372891635 +202777,7163,hush-hush projects,1372891664 +202777,7163,memory erased,1372891695 +202777,7163,security,1372891706 +202777,7311,author:James Hilton,1372890775 +202777,7311,teacher,1372890736 +202777,7323,comedy,1347584893 +202777,7323,Germany,1347584875 +202777,7327,dreamlike,1364673916 +202777,7327,sexual,1364673920 +202777,7502,military,1323392847 +202777,7502,World War II,1323392839 +202777,7669,author:Jane Austen,1372884816 +202777,7700,existential,1364674274 +202777,7700,gritty,1364674263 +202777,7842,author:Frank Herbert,1372896483 +202777,7981,drugs,1347581445 +202777,7981,foreign language,1347581399 +202777,7981,guns,1347581441 +202777,7981,police,1347581407 +202777,8132,sports,1306963908 +202777,8148,animation,1306943934 +202777,8148,dreams,1306943934 +202777,8148,surreal,1306943934 +202777,8330,British government,1372899697 +202777,8330,cold war,1372899647 +202777,8330,undercover agent,1372899683 +202777,8330,vacuum cleaner salesman,1372899668 +202777,8337,personality disorder,1367107264 +202777,8368,harry potter,1347583538 +202777,8371,Alpha male,1306893597 +202777,8371,imperialism,1306944135 +202777,8371,sci-fi,1306944092 +202777,8371,Vin Diesel,1306967044 +202777,8464,propaganda,1414450868 +202777,8492,author:Charles Dickens,1372890583 +202777,8492,Ebenezer Scrooge,1372890656 +202777,8492,ghosts,1372890622 +202777,8492,greed,1372890692 +202777,8492,materialism,1372890686 +202777,8636,Kirsten Dunst,1372914692 +202777,8636,new york,1372914740 +202777,8644,artificial intelligence,1306967883 +202777,8644,Isaac Asimov,1306967875 +202777,8644,robots,1306967887 +202777,8644,sexy female scientist,1372882024 +202777,8644,thought provoking,1306967891 +202777,8644,Will Smith,1306967868 +202777,8810,guns,1364673875 +202777,8961,Helen Parr,1364672479 +202777,8961,Violet Parr,1364672496 +202777,8970,Johnny Depp,1364672086 +202777,8970,Kate Winslet,1364672104 +202777,8970,Peter Pan,1364672106 +202777,8983,Beautiful,1323390550 +202777,8983,kung fu,1368331538 +202777,8983,martial arts,1323390554 +202777,8983,plot twist,1323390581 +202777,8983,Sexualized violence,1323390561 +202777,8985,this movie shouldn't have been filmed.,1364672905 +202777,8985,Wesley Snipes,1364672895 +202777,25834,old salt,1372899421 +202777,25834,rich brat,1372899435 +202777,25923,high society,1372892576 +202777,25923,mysterious benefactor,1372892596 +202777,25940,yacht,1372889743 +202777,26158,railroad apprentice,1372893035 +202777,26158,train station,1372893051 +202777,26242,1970s,1372900809 +202777,26242,businessman,1372900844 +202777,26242,cars,1372900785 +202777,26242,road rage,1372900792 +202777,26242,trucks,1372900788 +202777,26403,author:J. R. R. Tolkein,1372880228 +202777,26403,dragon,1372880222 +202777,26403,dwarves,1372880263 +202777,26403,elves,1372880271 +202777,26403,magic,1372880294 +202777,26403,Rankin Bass,1372880239 +202777,26403,swords,1372880286 +202777,26587,Ten Commandments,1364673242 +202777,26662,Japan,1347585781 +202777,26662,magic,1347585775 +202777,26662,Studio Ghibli,1347585773 +202777,26662,witch,1347585785 +202777,26776,aerial dogfights,1347586317 +202777,26776,Japan,1347586313 +202777,26776,Studio Ghibli,1347586310 +202777,26903,FIRST LOVE,1364671560 +202777,26903,Studio Ghibli,1364671562 +202777,26903,teenage girl,1364671555 +202777,26966,Johnny Depp,1306965415 +202777,26966,Marlon Brando,1306965419 +202777,27366,circus,1372895229 +202777,27366,giant stuffed whale,1372895274 +202777,27366,magnetic powers,1372895257 +202777,27721,COURT MARTIAL,1372889486 +202777,27731,anime,1364671290 +202777,27731,Anne Hathaway,1364671318 +202777,27731,Studio Ghibli,1364671323 +202777,27803,LIVING WITH DISABILITY,1364673724 +202777,27803,SUICIDE,1364673733 +202777,27803,suicide attempt,1364673728 +202777,27866,family wounds,1372893484 +202777,27866,investigation,1372893459 +202777,30793,Helena Bonham Carter,1364671634 +202777,30793,Johnny Depp,1364671638 +202777,30793,poor umpa lumpa songs,1364671674 +202777,31148,poop humor,1306964544 +202777,31150,"dope""",1306969051 +202777,31150,Nazis,1306969064 +202777,31658,anime,1364670872 +202777,31658,dog,1367097103 +202777,31658,dreamlike,1372880497 +202777,31658,Japan,1372880505 +202777,31658,magic,1364670874 +202777,31658,steampunk,1364670876 +202777,31658,Studio Ghibli,1364670879 +202777,31658,transformation,1367097120 +202777,31658,war,1372880555 +202777,31878,overrated,1347580595 +202777,33004,douglas adams,1367102370 +202777,33493,Biblical,1306943996 +202777,33493,George Lucas,1306966973 +202777,33493,Natalie Portman,1306966961 +202777,33493,robots,1306966980 +202777,33493,Samuel L. Jackson,1306966977 +202777,33493,sci-fi,1306943961 +202777,33493,space,1306943964 +202777,33794,dark,1364675321 +202777,33794,gritty,1364675318 +202777,33794,vigilante,1364675315 +202777,33903,germany,1368331808 +202777,34405,aliens,1306966916 +202777,34405,sci-fi,1306966895 +202777,34405,space,1306966893 +202777,34532,Hoodoo,1368406735 +202777,34532,John Hurt,1368406758 +202777,34532,Kate Hudson,1368406755 +202777,34532,magic,1368406742 +202777,34532,New Orleans,1368406747 +202777,36517,AIDs,1364674348 +202777,36517,british,1364674353 +202777,36517,conspiracy,1364674342 +202777,36517,gritty,1364674344 +202777,40815,harry potter,1347583519 +202777,41226,American South,1372900570 +202777,41226,Author:William H. Armstrong,1372900603 +202777,41226,sharecroppers,1372900544 +202777,41566,author:C. S. Lewis,1372905471 +202777,41566,bow and arrows,1372905638 +202777,41566,children,1367101867 +202777,41566,dwarves,1367101899 +202777,41566,fawns,1367101884 +202777,41566,ice queen,1367101893 +202777,41566,lion,1372905523 +202777,41566,magic,1367101859 +202777,41566,swords,1372905649 +202777,41566,talking animals,1367101909 +202777,41566,young heroes,1372905624 +202777,44191,author:Alan Moore,1372915061 +202777,44191,Hugo Weaving,1372915398 +202777,44191,Natalie Portman,1367103283 +202777,44191,teen,1367103298 +202777,44199,corruption,1368331756 +202777,44204,capacity to love,1372899111 +202777,44204,infant,1372899094 +202777,44204,shooting,1372899071 +202777,44204,thug,1372899089 +202777,44555,secret service,1364673287 +202777,44555,spies,1364673284 +202777,44555,spying,1364673281 +202777,44555,voyeurism,1364673292 +202777,44694,ghosts,1347584610 +202777,44694,incest,1347584592 +202777,44972,franchise,1414448010 +202777,45447,author:Dan Brown,1372895667 +202777,45447,bank that lets you escape police,1372895697 +202777,45447,gnosticism,1372895661 +202777,45499,Magneto,1372915772 +202777,45499,storm,1372915622 +202777,45499,wolverine,1372915610 +202777,45517,cars,1306969601 +202777,45517,race,1306969605 +202777,45722,Johnny Depp,1347582159 +202777,45722,Keira Knightley,1347582196 +202777,45722,Orlando Bloom,1347582189 +202777,45722,pirates,1347582162 +202777,45722,swords,1347582171 +202777,46976,narrated,1364670715 +202777,46976,quirky,1364670722 +202777,46976,surreal,1364670699 +202777,46976,Will Ferrell,1364670702 +202777,48394,fantasy,1306944052 +202777,48394,oscar (best foreign language film),1368331321 +202777,48394,surreal,1306944044 +202777,48774,dystopia,1367103122 +202777,48780,illusionist,1367102629 +202777,48780,teleportation,1367102597 +202777,49272,espionage,1347586042 +202777,49272,gambling,1347586046 +202777,49272,James Bond,1347586039 +202777,49272,killing people,1347586150 +202777,49272,spies,1347586052 +202777,49272,spy,1347586055 +202777,49772,scientific research,1372893690 +202777,51662,stylized,1306968735 +202777,51662,sword fight,1306968739 +202777,52435,author:Dr. Seuss,1372892150 +202777,52435,greed,1372892209 +202777,52435,Max The Dog,1372892168 +202777,52885,atmospheric,1364670354 +202777,52885,dreamlike,1364670331 +202777,52885,dreams,1364670333 +202777,52885,philosophical,1364670341 +202777,52885,surreal,1364670335 +202777,53125,ghosts/afterlife,1364671434 +202777,53125,Johnny Depp,1364671422 +202777,53125,Keira Knightley,1364671458 +202777,53125,Orlando Bloom,1364671462 +202777,53125,pirates,1364671424 +202777,53125,seafaring,1364671427 +202777,54286,guns,1414450769 +202777,54286,Matt Damon,1414450793 +202777,54286,spies,1414450765 +202777,56367,Ellen Page,1364675262 +202777,56367,independent film,1364675269 +202777,56367,pregnancy,1364675265 +202777,56367,teenager,1364675274 +202777,56370,Nelson Mandela,1372900934 +202777,56757,cannibalism,1320866125 +202777,56757,dark comedy,1320866029 +202777,56757,Depp & Burton,1320866041 +202777,56757,Helena Bonham Carter,1320866107 +202777,56757,Johnny Depp,1320866030 +202777,56757,Tim Burton,1320866033 +202777,56757,violent,1320866051 +202777,56757,visually appealing,1320866034 +202777,56757,weird,1320866054 +202777,57502,anime,1320868423 +202777,57502,atmospheric scenes,1320868491 +202777,57502,based on manga,1320868421 +202777,57502,cats,1320868444 +202777,57502,psychedelic,1320868419 +202777,57502,short,1320868438 +202777,57502,surreal,1320868416 +202777,57504,atmospheric,1352925352 +202777,57504,Foriegn language,1352930741 +202777,57504,japanese,1352925324 +202777,57504,romance,1352932271 +202777,57504,teen school girl,1352925379 +202777,57504,time travel,1352925328 +202777,57532,300 Spoof,1414447914 +202777,57532,carmen electra,1414447922 +202777,57543,not available from Netflix,1320974833 +202777,57669,crime gone awry,1364670521 +202777,57669,guns,1364670536 +202777,57669,suicide attempt,1367099353 +202777,57669,violent,1364670507 +202777,58303,germany,1368331808 +202777,58303,true story,1352924405 +202777,58303,World War II,1352924400 +202777,59315,Robert Downey Jr.,1347585191 +202777,59315,sexuality,1347585198 +202777,59387,story-in-a-story,1413673202 +202777,59387,visually stunning,1413673196 +202777,59784,Angelina Jolie,1306969528 +202777,59784,Jack Black,1306969537 +202777,59784,Jackie Chan,1306969523 +202777,59784,Kung Fu,1306969534 +202777,60069,artificial intelligence,1364672020 +202777,60069,dystopia,1364672035 +202777,60069,inspirational,1364672015 +202777,60069,romance,1364672011 +202777,61236,animated,1347579877 +202777,61236,Hebrew,1347579841 +202777,61236,lies,1347579887 +202777,61236,memory,1347579853 +202777,61236,surreal,1347579867 +202777,61236,war,1347579845 +202777,63082,gritty,1367102739 +202777,63082,India,1367102730 +202777,63082,visually appealing,1367102733 +202777,63859,cats and dogs,1306969575 +202777,63859,heartwarming,1306969583 +202777,63859,John Travolta,1306969569 +202777,63859,talking animals,1306969564 +202777,63876,homophobia,1347580981 +202777,63876,politics,1347580988 +202777,63876,Sean Penn,1347580967 +202777,65261,Animation,1306969192 +202777,65261,children,1306969200 +202777,65261,mermaid,1306969190 +202777,65261,Studio Ghibli,1306969178 +202777,65868,addiction,1320865981 +202777,65868,Alexa Vega,1366773117 +202777,65868,cosmetic surgery,1320865998 +202777,65868,gothic,1320865994 +202777,65868,musical,1320865966 +202777,65868,plot:Repossessed organs,1320865945 +202777,65868,rock opera,1320865947 +202777,65868,sci-fi,1320865953 +202777,65868,Terrance Zdunich,1366773060 +202777,66097,dystopia,1347581761 +202777,66097,Tim Burton,1347581765 +202777,67429,1920,1372888240 +202777,67429,animation,1372888284 +202777,67429,Rama,1372888203 +202777,67429,Ramayana,1372888263 +202777,67429,shadow puppets,1372888233 +202777,67429,Sita,1372888213 +202777,68358,Star Trek,1347585500 +202777,68791,bad acting,1306967842 +202777,68791,bad plot,1306967838 +202777,68791,bad script,1306967848 +202777,68791,Christian Bale,1306967832 +202777,68954,dogs,1347582442 +202777,68954,funny,1347582449 +202777,68954,talking animals,1347582445 +202777,69394,1980s,1372889931 +202777,69481,guns,1364671343 +202777,69481,Iraq War,1366774342 +202777,69481,Middle East,1366774347 +202777,69481,War,1366774353 +202777,71033,criminal investigator,1372889291 +202777,71468,alternate reality,1413673004 +202777,71468,dreams,1413673008 +202777,71468,low budget,1413673013 +202777,71468,twisted time line,1413673052 +202777,72226,talking animals,1367105798 +202777,74282,Author:L.M. Montgomery,1372887941 +202777,74282,teacher,1372887876 +202777,74282,writer,1372887892 +202777,74458,Ben Kingsley,1306968545 +202777,74458,Leonardo DiCaprio,1306968493 +202777,74508,author:Jane Austen,1372889161 +202777,74508,regret,1372889196 +202777,74508,sea,1372889210 +202777,74789,beautiful,1367103050 +202777,74789,Helena Bonham Carter,1367103031 +202777,74789,Johnny Depp,1367103029 +202777,74789,talking animals,1367103060 +202777,74789,visually appealing,1367103067 +202777,76093,CGI,1306969438 +202777,76093,dragons,1306969430 +202777,76093,flying,1372880408 +202777,76093,Stereoscopic 3-D,1306969426 +202777,76093,vikings,1306969423 +202777,77658,Carl Sagan,1364671873 +202777,77658,SETI,1364671910 +202777,79091,animation,1364670154 +202777,79091,cute,1364670161 +202777,79091,quirky,1364670171 +202777,79091,Steve Carell,1364670174 +202777,79091,visually appealing,1364670164 +202777,79132,multiple realities,1414450061 +202777,79132,surreal,1414450058 +202777,80584,queer,1306965428 +202777,81591,lesbian,1367096914 +202777,81591,Mila Kunis,1364670475 +202777,81591,Natalie Portman,1364670376 +202777,81591,Natalie Portman touching herself,1367096965 +202777,81591,suicide,1367096933 +202777,81591,surreal,1364670390 +202777,81834,magic,1367102466 +202777,81834,teleportation,1367102469 +202777,81845,Helena Bonham Carter,1347585355 +202777,81845,stuttering,1347585461 +202777,81847,animation,1364670776 +202777,81847,swords,1364670762 +202777,81847,visually appealing,1364670778 +202777,82143,Alaska,1364674299 +202777,82143,survivalist,1364674292 +202777,82143,wilderness,1364674296 +202777,82459,guns,1364673818 +202777,82459,revenge,1364673810 +202777,82461,philosophy,1306895966 +202777,82461,political,1306895966 +202777,82461,religion,1306895966 +202777,82461,sci-fi,1306943946 +202777,85342,corruption,1306964076 +202777,85342,guns,1306964098 +202777,85342,war,1306964050 +202777,85414,parallel universe,1306968086 +202777,85414,time travel,1306968085 +202777,85736,not a movie,1320866588 +202777,85736,short,1320866590 +202777,88129,cars,1364670956 +202777,88129,Dark,1364670962 +202777,88129,violence,1364670947 +202777,89492,baseball,1364670576 +202777,89492,sports,1364670584 +202777,89745,Captain America,1372916299 +202777,89745,Iron Man,1372916412 +202777,89745,New York City,1372915843 +202777,89745,Robert Downey Jr.,1372916012 +202777,89745,samuel jackson,1372916584 +202777,89745,Thor,1372916616 +202777,89864,cancer,1364673848 +202777,89864,cancer awareness,1364673852 +202777,90600,guns,1372889665 +202777,91500,bow & arrow,1372886578 +202777,91500,survival,1367102846 +202777,91630,espionage,1414449008 +202777,91630,guns,1414449021 +202777,91658,crime,1364672352 +202777,91658,dark,1364672338 +202777,91658,guns,1364672284 +202777,91658,revenge,1364672275 +202777,91658,violence,1364672363 +202777,92259,disability,1364672149 +202777,92259,rich and poor,1364672142 +202777,93040,guns,1364673641 +202777,95441,fart jokes,1367185485 +202777,95441,Flash Gordon references,1367178563 +202777,95441,Mila Kunis,1367175525 +202777,95441,Teddy Bear,1367175598 +202777,95441,wishes,1367175660 +202777,96610,guns,1414448958 +202777,96610,organized crime,1414448945 +202777,96821,depression,1367106369 +202777,96821,Suicide,1367106362 +202777,97304,cia,1364672837 +202777,97304,espionage,1364672860 +202777,97304,revolution,1364672841 +202777,97752,1970s,1372891857 +202777,97752,future,1372891876 +202777,97752,island,1372891834 +202777,97752,south pacific,1372891830 +202777,97938,Author: Yann Martel,1372889073 +202777,97938,Hyena,1372889030 +202777,97938,India,1372889079 +202777,97938,island,1372889082 +202777,97938,orangatang,1372888972 +202777,97938,spiritual journey,1372889086 +202777,97938,Tiger,1372888959 +202777,98809,beautiful scenery,1367101725 +202777,98809,drawves,1367101770 +202777,98809,elves,1367101752 +202777,98809,goblins,1367101739 +202777,98809,magic,1367101718 +202777,98809,New Zealand,1367101721 +202777,98809,Peter Jackson,1367101715 +202777,98809,wargs,1367101746 +202777,100248,demons,1413673114 +202777,100248,love,1413673125 +202777,100248,magic,1413673115 +202777,100248,plot twist,1413673136 +202777,101895,sports,1366774452 +202777,102125,funny,1368405629 +202777,102125,humour,1368405603 +202777,102125,Marvel,1368405621 +202777,102125,red herring,1368405657 +202777,102125,Robert Downey Jr.,1368405589 +202777,102125,twists,1368405638 +202777,102445,Chris Pine,1370468466 +202777,102445,John Cho,1370468546 +202777,102445,Simon Pegg,1370468521 +202777,102445,Zachary Quinto,1370468443 +202777,102445,Zoe Saldana,1370468495 +202777,106489,based on a book,1413672926 +202777,106489,not true to the book,1413672908 +202777,106489,unnecessary sequel,1413672902 +202777,108190,based on a book,1413673331 +202777,108190,plot holes,1413673345 +202777,112175,dragons,1414448804 +202796,520,Funny when your 10. Less funny when your not.,1148511826 +202796,6164,Great Prison Movies,1137387390 +202796,31042,Old War Movie,1224812812 +202796,34129,Just for kids. M. Lawrence wasn`t even funny in this one.,1144814518 +202796,40278,pacifist,1148157378 +202810,260,sci-fi,1440148087 +202810,260,warrior,1440148151 +202821,1291,TV,1137299764 +202821,1291,VHS,1137299772 +202831,48997,dustin hoffman,1191804224 +202904,4973,beautifully filmed,1376681969 +202904,4973,great soundtrack,1376681979 +202904,4973,romance,1376681991 +202904,6214,constantly rotating filming,1375107854 +202904,6214,disturbing,1375107859 +202904,6214,Gaspar Noé,1375107863 +202904,6214,graphic violence,1375107867 +202904,6214,nonlinear,1375107894 +202904,101893,boring,1377086508 +202904,101893,Terrence Malick,1377086501 +202904,102753,Asghar Farhadi,1394661855 +202904,102753,Judgment,1394661863 +202904,102753,social commentary,1394661876 +202904,102753,thought-provoking,1394662110 +202904,106916,amy adams,1394661818 +202904,106916,based on a true story,1394661771 +202904,106916,Christian Bale,1394661812 +202904,106916,Predictable,1394661805 +202923,260,adventure,1438031383 +202923,260,classic,1438031339 +202923,260,classic sci-fi,1438031286 +202923,260,EPIC,1438031322 +202923,260,John Williams,1438031423 +202923,260,romance,1438031355 +202923,260,sci-fi,1438031344 +202923,260,space opera,1438031311 +202923,260,well-scored,1438031408 +202948,50,complicated,1314437408 +202948,50,thriller,1314437394 +202948,2959,classic,1314436736 +202948,2959,philosophy,1314436717 +202948,2959,psychology,1314436724 +202948,2959,social commentary,1314436720 +202948,2959,violence,1314436740 +202948,4878,dreamlike,1314436675 +202948,4878,philosophy,1314436679 +202948,4878,psychology,1314436656 +202948,4878,surreal,1314436664 +202948,4878,thought-provoking,1314436667 +202948,44199,Clever,1314437462 +202948,44199,good story,1314437443 +202948,44199,intelligent thriller,1314437448 +202948,84152,thought provoking,1314437590 +202979,260,adventure,1436146975 +202979,260,fantasy,1436146964 +202979,260,sci-fi,1436146957 +202988,260,battle,1437768458 +202988,260,spaceflight,1437768446 +202996,2571,action,1434043626 +202996,2571,next-level,1434043626 +202996,2571,spiritual awakening,1434043626 +202996,133195,agent,1439151724 +203021,260,classic sci fi,1435517366 +203021,260,classic sci-fi,1435516932 +203021,260,good vs evil,1435517366 +203021,260,sci-fi,1435516924 +203021,260,space,1435517366 +203034,7842,adapted from:book series,1360370153 +203034,7842,author:Frank Herbert,1360370172 +203034,7842,based on a book,1360370160 +203034,7842,book was better,1360370158 +203034,7842,culte SF,1360370166 +203034,7842,desert,1360370169 +203034,7842,DVD,1360370189 +203034,7842,John Harrison,1360370188 +203034,7842,lengthy,1360370186 +203034,7842,made for TV,1360370184 +203034,7842,might like,1360370182 +203034,7842,Nudity (Topless),1360370179 +203034,7842,royalty,1360370176 +203034,7842,William Hurt,1360370175 +203034,27611,androids,1360370066 +203034,27611,based on a TV show,1360370065 +203034,27611,computer animation,1360370068 +203034,27611,cynical,1360370071 +203034,27611,drama,1360370073 +203034,27611,made for TV,1360370077 +203034,27611,military,1360370079 +203034,27611,MILITARY LIFE,1360370061 +203034,27611,mythology,1360370085 +203034,27611,original,1360370089 +203034,27611,political,1360370092 +203034,27611,politics,1360370094 +203034,27611,post-apocalyptic,1360370054 +203034,27611,robots,1360370101 +203034,27611,sci-fi,1360370049 +203034,27611,space,1360370052 +203034,27611,thought-provoking,1360370103 +203034,27611,visually appealing,1360370105 +203034,93840,bloody,1360370258 +203034,93840,clever,1360370260 +203034,93840,conspiracy,1360370261 +203034,93840,dark comedy,1360370255 +203034,93840,funny,1360370263 +203034,93840,ghosts,1360370264 +203034,93840,gore,1360370265 +203034,93840,horror comedy,1360370268 +203034,93840,Nudity (Topless),1360370270 +203034,93840,original,1360370272 +203034,93840,parody,1360370273 +203034,93840,plot twist,1360370275 +203034,93840,sacrifice,1360370277 +203034,93840,satire,1360370278 +203034,93840,social commentary,1360370280 +203034,93840,suspense,1360370282 +203034,93840,weird,1360370283 +203034,93840,werewolf,1360370285 +203034,93840,witty,1360370286 +203034,93840,zombies,1360370288 +203037,260,good clean fun movie,1438011491 +203079,778,drugs,1142444684 +203079,39183,stunning,1140538180 +203093,260,Myth,1436645241 +203093,260,Science Fiction,1436645229 +203108,48231,disturbing,1428597649 +203108,48231,slow,1428597649 +203108,48231,weird,1428597649 +203108,78030,can't get past the first 20 min,1429388796 +203108,78030,inhumane,1429388796 +203108,78030,very brutal,1429388796 +203115,356,feel-good,1434824066 +203115,356,quirky,1434824066 +203115,356,watch with mom,1434824066 +203137,6378,twists & turns,1438336405 +203137,88140,superhero,1438336477 +203149,260,adventure,1440791205 +203149,260,sci-fi,1440791203 +203155,260,sci-fi,1439758890 +203155,260,space,1439758880 +203156,134853,childhood,1436381599 +203156,134853,growing up,1436381599 +203156,134853,inner growth,1436381599 +203184,260,have not seen it,1439480162 +203207,50068,Got,1196098650 +203212,72998,futuristic,1432493314 +203212,72998,sci-fi,1432493324 +203212,101864,post-apocalyptic,1432493434 +203212,101864,Tom Cruise,1432493439 +203212,103228,giant robots,1432493363 +203212,103228,happy ending,1432493358 +203212,103228,Kaiju,1432493350 +203212,103228,sci-fi,1432493341 +203212,111759,Emily Blunt,1432493395 +203212,111759,happy ending,1432493380 +203212,111759,sci-fi,1432493391 +203212,111759,Tom Cruise,1432493398 +203223,590,pretentious garbage about good things,1137294743 +203223,3316,crapflix,1138748825 +203223,30810,as funny as sad gets,1137799766 +203223,33493,crap,1137344535 +203236,5477,male nudity,1233089245 +203236,5477,Nudity (Full Frontal - Notable),1233089256 +203297,10,pseudo rated,1450734362 +203297,260,pseudo rated,1450734022 +203297,1196,Craig Barron,1450719586 +203297,1196,John Van Vliet,1450720517 +203297,1196,pseudo rated,1450734541 +203297,1210,Craig Barron,1450719570 +203297,1210,pseudo rated,1450734527 +203297,1583,Brett Northcutt,1450709329 +203297,1682,Brett Northcutt,1450709408 +203297,1735,Brett Northcutt,1450709358 +203297,1804,Brett Northcutt,1450709389 +203297,1917,Brett Northcutt,1450709426 +203297,2322,Brett Northcutt,1450710676 +203297,2429,Brett Northcutt,1450710645 +203297,2501,Brett Northcutt,1450709243 +203297,2628,Gary Rydstrom,1450721032 +203297,2628,John Goodson,1450721130 +203297,2628,pseudo rated,1450734514 +203297,2628,Ray Park,1450721003 +203297,3006,Brett Northcutt,1450709219 +203297,3147,Brett Northcutt,1450709189 +203297,3623,Brett Northcutt,1450709143 +203297,3793,2000,1450692396 +203297,3793,20th Century Fox fanfare,1450694491 +203297,3793,Andy Nelson,1450718559 +203297,3793,Anna Paquin,1450697987 +203297,3793,bad stunts,1450707463 +203297,3793,bad VFX,1450705675 +203297,3793,Brett Northcutt,1450708939 +203297,3793,Bruce Davison,1450696374 +203297,3793,Bryan Singer,1450718441 +203297,3793,Craig Barron,1450719541 +203297,3793,Famke Janssen,1450711589 +203297,3793,Gary Rydstrom,1450718429 +203297,3793,Halle Berry,1450695412 +203297,3793,Hugh Jackman,1450695423 +203297,3793,Ian Mckellen,1450695415 +203297,3793,James Marsden,1450695472 +203297,3793,John Goodson,1450721572 +203297,3793,John Van Vliet,1450720537 +203297,3793,Keiji Yamaguchi,1450731457 +203297,3793,Ken Sjogren,1450732348 +203297,3793,Marcel Martinez,1450724077 +203297,3793,Marvel,1450692405 +203297,3793,Michael Kamen,1450711473 +203297,3793,Myles Murphy,1450731581 +203297,3793,Patrick Stewart,1450711490 +203297,3793,Ray Park,1450712104 +203297,3793,Rebecca Romijn-Stamos,1450711594 +203297,3793,Scott Palleiko,1450731908 +203297,3793,Shawn Ashmore,1450705370 +203297,3793,Steve Boeddeker,1450732632 +203297,3793,Tim Gibbons,1450732238 +203297,3793,Todd Busch,1450723355 +203297,3793,Tyler Mane,1450695407 +203297,3793,X-Men,1450693437 +203297,3953,Brett Northcutt,1450710575 +203297,4270,Brett Northcutt,1450710532 +203297,4304,Brett Northcutt,1450710551 +203297,4386,Brett Northcutt,1450710517 +203297,4734,Brett Northcutt,1450710492 +203297,4994,Brett Northcutt,1450710470 +203297,5312,Brett Northcutt,1450710601 +203297,5378,Brett Northcutt,1450710447 +203297,5378,John Goodson,1450721540 +203297,5378,Keiji Yamaguchi,1450731467 +203297,5378,Marcel Martinez,1450724065 +203297,5378,Myles Murphy,1450731572 +203297,5378,pseudo rated,1450734560 +203297,5378,Scott Palleiko,1450731923 +203297,5378,Todd Busch,1450723370 +203297,5459,Brett Northcutt,1450710431 +203297,5816,Brett Northcutt,1450710413 +203297,5956,Brett Northcutt,1450710395 +203297,6534,Brett Northcutt,1450710380 +203297,6539,Brett Northcutt,1450710365 +203297,7153,pseudo rated,1450734043 +203297,7454,Brett Northcutt,1450710346 +203297,8361,Brett Northcutt,1450710331 +203297,8368,pseudo rated,1450734375 +203297,33493,Brett Northcutt,1450710297 +203297,33493,John Goodson,1450721557 +203297,33493,Ken Sjogren,1450732359 +203297,33493,Marcel Martinez,1450724051 +203297,33493,pseudo rated,1450734458 +203297,33493,Tim Gibbons,1450732228 +203297,33794,pseudo rated,1450734138 +203297,40278,Brett Northcutt,1450710283 +203297,45442,Brett Northcutt,1450710266 +203297,45722,Brett Northcutt,1450710238 +203297,49272,pseudo rated,1450734268 +203297,49649,Brett Northcutt,1450710178 +203297,53125,Brett Northcutt,1450710149 +203297,58105,Brett Northcutt,1450710124 +203297,58559,pseudo rated,1450733954 +203297,59315,pseudo rated,1450734111 +203297,59615,Brett Northcutt,1450710107 +203297,61160,pseudo rated,1450734342 +203297,68358,Brett Northcutt,1450710084 +203297,68358,pseudo rated,1450734152 +203297,68791,Brett Northcutt,1450710038 +203297,69526,Brett Northcutt,1450709996 +203297,78893,Brett Northcutt,1450709969 +203297,84944,Brett Northcutt,1450709911 +203297,86880,Brett Northcutt,1450709877 +203297,87306,Brett Northcutt,1450709850 +203297,87520,Brett Northcutt,1450709824 +203297,90866,Brett Northcutt,1450709790 +203297,91630,Brett Northcutt,1450709771 +203297,94018,Brett Northcutt,1450709729 +203297,101076,Brett Northcutt,1450709712 +203297,102125,pseudo rated,1450734255 +203297,102407,Brett Northcutt,1450709671 +203297,102445,pseudo rated,1450734127 +203297,103228,Brett Northcutt,1450709652 +203297,103253,Brett Northcutt,1450709636 +203297,109374,2014,1451666294 +203297,109374,Adrien Brody,1451656006 +203297,109374,Alexandre Desplat,1451657278 +203297,109374,Bill Murray,1451658726 +203297,109374,Edward Norton,1451660618 +203297,109374,F. Murray Abraham,1451656819 +203297,109374,Harvey Keitel,1451657633 +203297,109374,Jason Schwartzman,1451660609 +203297,109374,Jeff Goldblum,1451657281 +203297,109374,Jude Law,1451656824 +203297,109374,Léa Seydoux,1451666128 +203297,109374,Mathieu Amalric,1451666195 +203297,109374,Owen Wilson,1451660605 +203297,109374,Ralph Fiennes,1451655890 +203297,109374,Saoirse Ronan,1451657297 +203297,109374,Tilda Swinton,1451657328 +203297,109374,Tom Wilkinson,1451660585 +203297,109374,Tony Revolori,1451657424 +203297,109374,Wes Anderson,1451660662 +203297,109374,Willem Dafoe,1451657431 +203297,110127,Brett Northcutt,1450709621 +203297,111364,Alexandre Desplat,1451391309 +203297,116797,Alexandre Desplat,1451391266 +203297,118702,Alexandre Desplat,1451391232 +203297,122886,2015,1449941982 +203297,122886,Adam Driver,1450350617 +203297,122886,Andy Nelson,1450718536 +203297,122886,Andy Serkis,1450350645 +203297,122886,Anthony Daniels,1450350606 +203297,122886,Bad Robot,1449942052 +203297,122886,BB-8,1450688145 +203297,122886,Brett Northcutt,1450708967 +203297,122886,Brian Vernel,1450688272 +203297,122886,Bryan Burk,1449942326 +203297,122886,Cailey Fleming,1450688110 +203297,122886,Carrie Fisher,1450350604 +203297,122886,Daisy Ridley,1450350593 +203297,122886,Darren Gilford,1449942468 +203297,122886,Domhnall Gleeson,1449942215 +203297,122886,Gary Rydstrom,1450718481 +203297,122886,Gwendoline Christie,1450688378 +203297,122886,Harrison Ford,1450350602 +203297,122886,Industrial Light & Magic,1449942406 +203297,122886,J.J. Abrams,1449941865 +203297,122886,Jason McGatlin,1449942385 +203297,122886,John Boyega,1450688051 +203297,122886,John Williams,1450350590 +203297,122886,Kathleen Kennedy,1449942354 +203297,122886,Lawrence Kasdan,1449942310 +203297,122886,Lin-Manuael Miranda,1450688590 +203297,122886,Lucasfilm Ltd.,1450716820 +203297,122886,Lupita Nyong'o,1450350576 +203297,122886,Mark Hamill,1450350613 +203297,122886,Mary Jo Markey,1449942438 +203297,122886,Maryann Brandon,1449942489 +203297,122886,Max von Sydow,1450350623 +203297,122886,Michael Arndt,1449942295 +203297,122886,Michael Kaplan,1449942422 +203297,122886,Oscar Isaac,1450350580 +203297,122886,Peter Mayhew,1450350582 +203297,122886,Rick Carter,1449942456 +203297,122886,Simon Pegg,1450688086 +203297,122886,Star Wars,1450350660 +203297,122886,Tommy Harper,1449942372 +203297,122886,Walt Disney Studios,1450716810 +203297,122886,Yayan Ruhian,1450688290 +203297,122892,Brett Northcutt,1450709596 +203297,122892,pseudo rated,1450734242 +203297,129364,Alexandre Desplat,1451389930 +203297,132046,Brett Northcutt,1450709580 +203297,139385,Brett Northcutt,1450713678 +203297,139417,Alexandre Desplat,1451389066 +203297,141422,Alexandre Desplat,1451390091 +203297,141749,Alexandre Desplat,1451390111 +203297,149094,Brett Northcutt,1450713911 +203328,1350,Biblical,1138451682 +203328,1350,horror,1138451684 +203387,364,Disney,1149673203 +203471,260,adventure,1442745329 +203471,260,future fantasy,1442745340 +203511,260,classic sci-fi,1443038128 +203511,260,sci-fi,1443038116 +203517,6947,Real history,1294396014 +203517,70121,based on a short story,1294393833 +203517,74624,It's a real history,1294395619 +203553,2318,Phillip Seymour Hoffman,1186185270 +203553,2318,wrongfully funny,1186185466 +203553,2975,Taye Diggs,1186184815 +203553,2975,Terrence Howard,1186184969 +203553,4390,horrible,1186186050 +203553,5225,sex scenes,1186184470 +203553,6002,depression,1186185622 +203553,6002,huffing,1186185547 +203553,6002,Phillip Seymour Hoffman,1186185103 +203553,6002,suicide,1186185641 +203553,7162,Jude Law,1186185708 +203553,7361,Michel Gondry,1186184016 +203553,33166,Terrence Howard,1186185007 +203553,33585,real sex,1186034205 +203553,37741,Phillip Seymour Hoffman,1186185082 +203553,48082,Michel Gondry,1186184192 +203570,60469,austria,1436384576 +203570,60469,based on a book,1436384576 +203570,60469,crime,1436384576 +203570,112275,documentary,1434914714 +203570,112275,hunter s. thompson,1434914714 +203570,112275,painting,1434914714 +203578,6638,The Plimsouls,1193260204 +203578,6638,truly dazzling,1193260212 +203592,2144,1980s,1451083746 +203592,2144,80's classic,1451083738 +203592,2144,John Hughes,1451083741 +203592,2144,Nudity (Topless),1451083748 +203592,2144,teen angst,1451083744 +203592,2144,teen movie,1451083737 +203592,2671,funny,1451082848 +203592,2671,Good Romantic Comedies,1451082850 +203592,2671,romance,1451082853 +203592,4823,Romantic Comedy,1451082786 +203592,5283,college,1451082497 +203592,5283,College Humor,1451082494 +203592,5283,comedy,1451082499 +203592,5283,Nudity (Topless),1451082487 +203592,5283,Ryan Reynolds,1451082490 +203592,5283,Teen movie,1451082492 +203592,5620,funny,1451082771 +203592,5620,Josh Lucas,1451082775 +203592,5620,Reese Witherspoon,1451082772 +203592,5620,romantic comedy,1451082768 +203592,7317,comedy,1451082447 +203592,7317,Nudity (Topless),1451082479 +203592,7317,road trip,1451082450 +203592,8912,Jimmy Fallon,1451167726 +203592,38061,witty,1451083261 +203592,43652,Zach Galifianakis,1451167846 +203592,54503,comedy,1451082550 +203592,54503,crude humor,1451082557 +203592,54503,Michael Cera,1451082546 +203592,54503,Seth Rogen,1451082553 +203592,56367,Ellen Page,1451167814 +203592,63479,comedy,1451082525 +203592,63479,losing virginity,1451082528 +203592,63479,road trip,1451082512 +203592,63479,teen movie,1451082523 +203592,67734,Jesse Eisenberg,1451083846 +203592,67734,Kristen Stewart,1451083843 +203592,67734,Ryan Reynolds,1451083849 +203592,69069,Nudity (Topless),1451083331 +203592,71518,Drew Barrymore,1451167790 +203592,71518,Ellen Page,1451167788 +203592,71518,Kristen Wiig,1451167787 +203592,86833,comedy,1451084009 +203592,86833,Judd Apatow,1451084004 +203592,86833,Kristen Wiig,1451084003 +203592,89492,analytics,1451082631 +203592,89492,Jonah Hill,1451082622 +203592,102993,coming of age,1451083867 +203597,175,skateboarding,1372973777 +203597,674,space travel,1215990693 +203597,3039,christmas movie,1382128360 +203597,4878,dreamlike,1373238653 +203597,4878,psychology,1373238640 +203597,4878,surreal,1373238662 +203597,4878,time travel,1373238645 +203597,4878,twist ending,1373238649 +203597,8295,DVD-R,1370733799 +203597,63329,childhood,1386122704 +203597,63329,Christmas,1386122701 +203597,63329,Santa Claus,1386122706 +203597,71899,mental illness,1379432901 +203597,82242,Christmas,1384477584 +203597,82242,male nudity,1384477609 +203597,82242,Santa Claus,1384477591 +203597,85394,documentary,1304815336 +203597,97692,activism,1428017494 +203597,97692,documentary,1428017494 +203597,97692,netflix uk,1428017494 +203597,106489,too long,1389724333 +203604,260,fantasy,1434737877 +203604,260,visionary,1434737893 +203607,1025,animation,1188885960 +203607,2046,sci-fi,1188885966 +203607,2384,animals,1188885964 +203610,1694,jesus,1368840316 +203610,2022,jesus,1368840316 +203610,2840,jesus,1368840316 +203610,3052,jesus,1368840316 +203610,5135,bollywood,1368840302 +203610,6104,jesus,1368840316 +203610,7318,jesus,1368840316 +203610,26366,poverty,1226026532 +203610,51884,bollywood,1368840302 +203610,63082,bollywood,1368840301 +203631,32,atmospheric,1441706336 +203631,32,complicated,1441706345 +203631,32,dystopia,1441706322 +203631,32,epidemic,1441706355 +203631,32,genetics,1441706330 +203631,32,great ending,1441706346 +203631,32,imagination,1441706339 +203631,32,mental illness,1441706343 +203631,32,mindfuck,1441706324 +203631,32,Post apocalyptic,1441706333 +203631,32,post-apocalyptic,1441706315 +203631,32,psychology,1441706319 +203631,32,R,1441706352 +203631,32,sci-fi,1441706348 +203631,32,Terry Gilliam,1441706326 +203631,32,time travel,1441706313 +203631,32,twist ending,1441706317 +203631,70,campy,1441710703 +203631,70,intense,1441710705 +203631,70,so bad it's good,1441710700 +203631,172,cyberpunk,1441709366 +203631,172,dystopia,1441709359 +203631,172,hackers,1441709364 +203631,172,Memory,1441709362 +203631,198,mindfuck,1441709335 +203631,198,virtual reality,1441709334 +203631,260,saga,1441704418 +203631,260,space adventure,1441704426 +203631,288,dark comedy,1441710651 +203631,288,hallucinatory,1441710653 +203631,288,mindfuck,1441710655 +203631,288,psychedelic,1441710648 +203631,288,satire,1441710662 +203631,288,visceral,1441710658 +203631,296,Black comedy,1441706401 +203631,296,dark comedy,1441706408 +203631,296,multiple storylines,1441706404 +203631,628,courtroom drama,1441709630 +203631,628,psychology,1441709628 +203631,628,twist ending,1441709633 +203631,674,campy,1441704889 +203631,674,sci-fi,1441704891 +203631,750,black comedy,1441710467 +203631,750,dark comedy,1441710465 +203631,750,satire,1441710469 +203631,750,Stanley Kubrick,1441710471 +203631,849,dystopia,1441705978 +203631,904,noir thriller,1441708335 +203631,904,suspense,1441708332 +203631,904,suspenseful,1441708339 +203631,904,tense,1441708346 +203631,912,Film Noir,1441710332 +203631,920,historical,1441710317 +203631,920,social commentary,1441710313 +203631,922,Dark,1441708305 +203631,922,eerie,1441708311 +203631,922,film noir,1441708303 +203631,922,irreverent,1441708308 +203631,922,noir thriller,1441708318 +203631,922,satirical,1441708313 +203631,1129,dystopia,1441705945 +203631,1136,satire,1441709049 +203631,1199,black comedy,1441709096 +203631,1199,cerebral,1441709101 +203631,1199,dreams,1441709114 +203631,1199,dystopia,1441709094 +203631,1199,dystopic future,1441709109 +203631,1199,hallucinatory,1441709107 +203631,1199,satire,1441709104 +203631,1199,surreal,1441709092 +203631,1199,thought-provoking,1441709099 +203631,1204,epic,1441710256 +203631,1206,atmospheric,1441709520 +203631,1206,disturbing,1441709514 +203631,1206,dystopia,1441709512 +203631,1206,psychology,1441709515 +203631,1206,surreal,1441709523 +203631,1206,Surrealism,1441709525 +203631,1206,violent,1441709517 +203631,1208,Dark,1441709475 +203631,1208,disturbing,1441709474 +203631,1208,psychological,1441709478 +203631,1208,surreal,1441709480 +203631,1213,Martin Scorsese,1441709570 +203631,1222,indoctrination,1441709494 +203631,1254,adventure,1441708378 +203631,1254,wry,1441708379 +203631,1284,noir,1441708234 +203631,1284,noir thriller,1441708233 +203631,1285,80s,1441710738 +203631,1285,black comedy,1441710724 +203631,1285,cynical,1441710727 +203631,1285,dark comedy,1441710722 +203631,1285,deadpan,1441710733 +203631,1285,irreverent,1441710729 +203631,1285,snappy dialog,1441710731 +203631,1291,archaeology,1441704857 +203631,1291,indiana jones,1441704860 +203631,1291,treasure hunt,1441704852 +203631,1297,college,1441705996 +203631,1297,nerds,1441706001 +203631,1297,science,1441705998 +203631,1297,witty,1441706003 +203631,1587,adventure,1441705919 +203631,1587,Fantasy,1441705917 +203631,1587,wizards,1441705921 +203631,2009,dystopia,1441708697 +203631,2115,adventure,1441704824 +203631,2115,archaeology,1441704829 +203631,2115,pulp,1441704831 +203631,2115,treasure,1441704833 +203631,2406,adventure,1441706127 +203631,2406,treasure hunt,1441706131 +203631,2571,alternate reality,1441704943 +203631,2571,dark hero,1441704961 +203631,2571,dystopia,1441704957 +203631,2571,philosophical,1441704939 +203631,2571,philosophy,1441704951 +203631,2571,post apocalyptic,1441704941 +203631,2571,post-apocalyptic,1441704945 +203631,2571,surreal,1441704947 +203631,2571,thought-provoking,1441704955 +203631,2571,virtual reality,1441704936 +203631,2600,Alternate Reality,1441704912 +203631,2600,dreamlike,1441704920 +203631,2600,mindfuck,1441704922 +203631,2600,multiple realities,1441704915 +203631,2600,strange,1441704925 +203631,2600,surreal,1441704910 +203631,2600,techno-evolution,1441704917 +203631,2600,virtual reality,1441704908 +203631,2916,campy,1441705360 +203631,2916,cyberpunk,1441705367 +203631,2916,dystopia,1441705355 +203631,2916,memory,1441705353 +203631,2916,virtual reality,1441705357 +203631,3032,epidemic,1441710379 +203631,3032,post-apocalyptic,1441710376 +203631,3160,cynical,1441705320 +203631,3160,multiple storylines,1441705331 +203631,3201,confrontational,1441710242 +203631,3201,rebellion,1441710244 +203631,3476,conspiracy,1441709286 +203631,3476,disturbing,1441709282 +203631,3476,hallucination,1441709297 +203631,3476,mental illness,1441709293 +203631,3476,nonlinear,1441709295 +203631,3476,occult,1441709288 +203631,3476,paranoia,1441709280 +203631,3476,psychiatry,1441709300 +203631,3476,Psychological horror,1441709291 +203631,3476,surreal,1441709277 +203631,3476,twist ending,1441709285 +203631,3740,campy,1441704706 +203631,3740,mystical,1441704683 +203631,3740,occult,1441704714 +203631,3917,atmosphere,1441706161 +203631,3917,Clive Barker,1441706168 +203631,3949,psychological,1441705150 +203631,3949,psychology,1441705141 +203631,3949,social commentary,1441705156 +203631,4006,80's cartoons,1441706691 +203631,4085,comedy,1441706019 +203631,4467,fantasy,1441709133 +203631,4467,imagination,1441709140 +203631,4467,metafiction,1441709135 +203631,4467,surreal,1441709137 +203631,4541,Voodoo,1441706145 +203631,4713,psychedelic,1441705386 +203631,4873,alternate reality,1441705030 +203631,4873,cerebral,1441705008 +203631,4873,dreamlike,1441704994 +203631,4873,dreams,1441704995 +203631,4873,existentialism,1441705005 +203631,4873,metaphysics,1441704997 +203631,4873,philosophy,1441705001 +203631,4873,surreal,1441704999 +203631,4873,thought-provoking,1441705003 +203631,4975,existentialism,1441705288 +203631,4975,fantasy,1441705296 +203631,4975,lucid dreaming,1441705293 +203631,4975,mindfuck,1441705286 +203631,4975,psychology,1441705302 +203631,4975,surreal,1441705283 +203631,4975,virtual reality,1441705291 +203631,5310,Friday night movie,1441709020 +203631,5445,dystopia,1441705066 +203631,5445,futuristic,1441705061 +203631,5445,Philip K. Dick,1441705059 +203631,5445,Precognition,1441705073 +203631,5445,surreal,1441705070 +203631,5445,time loop,1441705076 +203631,5445,time travel,1441705065 +203631,6214,constantly rotating filming,1441710505 +203631,6214,disturbing,1441710511 +203631,6214,mindfuck,1441710513 +203631,6214,reverse timeline,1441710515 +203631,6645,consumerism,1441709264 +203631,6645,dystopia,1441709257 +203631,6645,eugenics,1441709266 +203631,6645,surveillance,1441709261 +203631,7215,Humphrey Bogart,1441708288 +203631,7215,vichy,1441708271 +203631,33794,comic,1441706788 +203631,33794,dark,1441706798 +203631,33794,philosophical,1441706787 +203631,33794,superhero,1441706796 +203631,33794,thought-provoking,1441706790 +203631,33794,vigilante,1441706794 +203631,43928,comic book,1441708135 +203631,43928,sci-fi,1441708133 +203631,44191,Alan Moore,1441708914 +203631,44191,comic book,1441708895 +203631,44191,dark,1441708897 +203631,44191,dystopia,1441708893 +203631,44191,philosophical,1441708910 +203631,44191,philosophy,1441708901 +203631,44191,revenge,1441708906 +203631,44191,social commentary,1441708903 +203631,44191,thought-provoking,1441708891 +203631,63072,Cormac McCarthy,1441705483 +203631,63072,dystopia,1441705476 +203631,63072,post-apocalyptic,1441705478 +203631,65642,complicated,1441706292 +203631,65642,grim,1441706294 +203631,65642,paradox,1441706290 +203631,65642,time travel,1441706298 +203631,70286,aliens,1441705216 +203631,70286,alternate history,1441705232 +203631,70286,genetics,1441705224 +203631,70286,intelligent sci-fi,1441705222 +203631,70286,social commentary,1441705218 +203631,70286,violence,1441705235 +203631,77658,astronomy,1441708767 +203631,77658,physics,1441708769 +203631,78836,afterlife,1441705098 +203631,78836,camerawork,1441705102 +203631,78836,philosophic,1441705108 +203631,78836,psychedelic,1441705105 +203631,86332,comic book,1441706639 +203631,86332,Marvel,1441706636 +203631,86332,mythology,1441706637 +203631,89745,Marvel,1441706608 +203631,89745,superhero,1441706612 +203631,94799,eerie,1441706261 +203631,96737,drugs,1441706578 +203631,96737,Dystopia,1441706574 +203631,96737,post-apocalyptic,1441706572 +203631,96737,Slow Motion,1441706581 +203631,96832,disturbing,1441705128 +203631,96832,surreal,1441705125 +203631,99917,Beautiful,1441710534 +203631,101864,dystopia,1441705252 +203631,101864,post-apocalyptic,1441705250 +203631,103253,class conflict,1441705179 +203631,103253,dystopia,1441705172 +203631,103253,science fiction,1441705171 +203631,103253,visually stunning,1441705168 +203636,1552,action,1448918472 +203636,1552,Nicolas Cage,1448918467 +203636,71282,food safety,1448918483 +203636,71282,investigative journalism,1448918480 +203636,80185,business,1448918502 +203636,80185,energy industry,1448918500 +203636,80185,geology,1448918496 +203636,80185,petroleum,1448918505 +203648,260,birth of great scifi ideas,1441040129 +203648,260,classic,1441040078 +203648,260,oldie but goodie,1441040093 +203658,76111,Asghar Farhadi,1435011218 +203658,102753,iranian neo-realism,1433717540 +203658,102753,iranian nouvelle vague,1433717540 +203658,102753,the separation,1433717540 +203658,134661,dangerous relationships,1433718152 +203658,134661,french drama,1433718110 +203658,134661,mathilda may,1433718097 +203660,316,time travel,1138319324 +203660,1380,60's,1138320008 +203660,3101,personality disorder,1138319336 +203671,47,philosophical,1271721198 +203671,1696,desperately sad,1271749761 +203671,3006,Business is the antagonist,1271779574 +203671,4722,doesn't use stereotypical gay characters!,1271791037 +203671,5812,"""magic negro"" stereotype",1271732926 +203671,33819,gay,1271733172 +203671,33819,glenn close,1271733185 +203671,33819,men kissing,1271733163 +203682,318,awesome,1431330009 +203682,318,jailbreak,1431330009 +203682,318,patience,1431330009 +203686,25,based on a book,1270420522 +203686,32,Brad Pitt,1263737315 +203686,50,classic,1266361803 +203686,50,complicated,1266361779 +203686,50,crime,1266361814 +203686,50,imdb top 250,1266361775 +203686,50,Kevin Spacey,1266361769 +203686,50,twist ending,1266361773 +203686,156,brooklyn,1316166226 +203686,156,jim jarmusch,1316166243 +203686,156,Lou Reed,1316166254 +203686,156,New York City,1316166236 +203686,180,Kevin Smith,1268258896 +203686,296,classic,1266361614 +203686,296,cult film,1266361520 +203686,296,dialogue,1266361543 +203686,296,humorous,1266361699 +203686,296,imdb top 250,1266361575 +203686,296,multiple storylines,1266361565 +203686,296,Quentin Tarantino,1266361513 +203686,296,violence,1266361517 +203686,327,based on a comic,1270385603 +203686,441,high school,1264459021 +203686,506,based on a book,1275490086 +203686,506,gender,1275490105 +203686,506,Tilda Swinton,1275490092 +203686,535,Lili Taylor,1267180165 +203686,535,multiple storylines,1267180149 +203686,535,Robert Downey Jr.,1267180128 +203686,535,Tom Waits,1267180141 +203686,562,Todd Solondz,1316084624 +203686,597,chick flick,1299010042 +203686,597,prostitution,1299010040 +203686,608,Coen Brothers,1266362504 +203686,724,high school,1269701421 +203686,724,witchcraft,1269701425 +203686,835,coming of age,1312397220 +203686,835,high school,1312397202 +203686,835,lesbian,1312397208 +203686,901,1950s,1280738335 +203686,901,fashion,1280738345 +203686,901,musical,1280738319 +203686,901,Paris,1280738328 +203686,936,communism,1268997582 +203686,936,Greta Garbo,1268997565 +203686,936,paris,1268997903 +203686,936,soviet russia,1268997900 +203686,949,based on a book,1279387462 +203686,949,brothers,1279387474 +203686,949,James Dean,1279387464 +203686,949,John Steinbeck,1279387466 +203686,1060,great dialogue,1263753585 +203686,1089,cult film,1266361635 +203686,1089,dialogue,1266361647 +203686,1089,humorous,1266361679 +203686,1089,imdb top 250,1266361632 +203686,1089,Quentin Tarantino,1266361623 +203686,1089,violence,1266361626 +203686,1094,Stephen Rea,1286828816 +203686,1094,transgender,1286828813 +203686,1094,twist ending,1286828830 +203686,1202,black comedy,1283467291 +203686,1202,drugs,1283467293 +203686,1202,witty,1283467302 +203686,1206,based on a book,1266362973 +203686,1206,classic,1266362989 +203686,1206,cult film,1266362983 +203686,1206,dystopia,1266362978 +203686,1206,imdb top 250,1266362977 +203686,1206,social commentary,1266363021 +203686,1206,Stanley Kubrick,1266362975 +203686,1206,violence,1266362971 +203686,1219,Alfred Hitchcock,1282744225 +203686,1219,black and white,1282744227 +203686,1219,serial killer,1282744240 +203686,1246,high school,1266362149 +203686,1246,literature,1266362144 +203686,1246,philosophy,1266362159 +203686,1246,poetry,1264458847 +203686,1246,school,1266362172 +203686,1246,suicide,1266362127 +203686,1252,Film Noir,1285448920 +203686,1252,imdb top 250,1285448897 +203686,1252,Incest,1285448903 +203686,1252,Jack Nicholson,1285448855 +203686,1252,private detective,1285448909 +203686,1252,Roman Polanski,1285448857 +203686,1273,black and white,1267180087 +203686,1273,Jim Jarmusch,1267180070 +203686,1273,prison escape,1267180090 +203686,1273,Tom Waits,1267180083 +203686,1285,high school,1264458897 +203686,1288,mockumentary,1289079927 +203686,1288,satire,1289079929 +203686,1290,high school,1283696421 +203686,1290,John Hughes,1283696407 +203686,1290,teens,1283696413 +203686,1290,tomboy,1283696427 +203686,1347,overrated,1304443208 +203686,1639,dialogue,1268258857 +203686,1639,funny,1268258838 +203686,1639,Kevin Smith,1268258828 +203686,1639,lesbian,1268258834 +203686,1639,sexuality,1268258862 +203686,1655,Affleck was the BOMB in Phantoms!,1268942498 +203686,1682,philosophy,1266362230 +203686,1704,genius,1267615392 +203686,1704,Gus Van Sant,1267615383 +203686,1704,math,1267615388 +203686,1729,based on a book,1266362940 +203686,1729,Quentin Tarantino,1266362923 +203686,1921,black and white,1276513160 +203686,1921,genius,1264872148 +203686,1968,1980s,1275479136 +203686,1968,cult film,1275479144 +203686,1968,high school,1267615411 +203686,1968,John Hughes,1267615410 +203686,1968,school drama,1267615414 +203686,2134,high school,1264459076 +203686,2145,high school,1272921538 +203686,2145,John Hughes,1272921502 +203686,2145,teen,1272921532 +203686,2145,UNREQUITED LOVE,1272921513 +203686,2160,based on a book,1269611841 +203686,2160,Roman Polanski,1269611837 +203686,2160,satan,1269611890 +203686,2160,witchcraft,1269611885 +203686,2318,child abuse,1276197954 +203686,2318,dark humor,1276197939 +203686,2318,family,1276198008 +203686,2318,loneliness,1276197995 +203686,2318,pedophile,1276197970 +203686,2318,sexuality,1276197986 +203686,2337,david bowie,1256582214 +203686,2337,gay,1256582214 +203686,2337,glam rock,1256582214 +203686,2337,queer,1256582214 +203686,2348,based on a true story,1270571294 +203686,2348,drugs,1270571242 +203686,2348,Gary Oldman,1270571279 +203686,2348,punk,1270571245 +203686,2395,high school,1264458974 +203686,2470,Can't remember,1271370457 +203686,2491,food,1322928797 +203686,2571,cult film,1266362086 +203686,2571,dystopia,1266362098 +203686,2571,philosophy,1266362080 +203686,2571,sci-fi,1266362078 +203686,2657,campy,1266361300 +203686,2657,cult classic,1266361246 +203686,2657,cult film,1266361249 +203686,2657,great soundtrack,1266361278 +203686,2657,musical,1266361241 +203686,2657,queer,1266361373 +203686,2657,rock music,1266361396 +203686,2657,sexuality,1266361261 +203686,2657,transvestism,1266361328 +203686,2718,beauty pageant,1287530315 +203686,2718,fake documentary,1287530302 +203686,2718,Kirsten Dunst,1287530309 +203686,2918,High School,1264458805 +203686,2926,1960s,1266150265 +203686,2939,Marilyn Monroe,1272039760 +203686,2959,based on a book,1266361842 +203686,2959,Brad Pitt,1266361829 +203686,2959,Edward Norton,1266361839 +203686,2959,imdb top 250,1266361845 +203686,2959,mental illness,1266361861 +203686,2959,philosophy,1266361850 +203686,2959,social commentary,1266361868 +203686,2959,twist ending,1266361827 +203686,2959,violence,1266361826 +203686,3052,Kevin Smith,1268258873 +203686,3063,high school,1274618308 +203686,3063,lesbian subtext,1274618213 +203686,3063,manipulation,1274618316 +203686,3063,murder,1274618341 +203686,3067,humorous,1272379325 +203686,3067,Pedro Almodovar,1272372509 +203686,3067,Spanish,1272379312 +203686,3067,women,1272379302 +203686,3108,guilt,1275667491 +203686,3108,Jeff Bridges,1275667457 +203686,3108,mental illness,1275667477 +203686,3108,Robin Williams,1275667460 +203686,3108,Terry Gilliam,1275667454 +203686,3108,tom waits,1275667451 +203686,3210,high school,1264459034 +203686,3275,Boston,1268942382 +203686,3275,gay,1268942471 +203686,3275,Irish,1268942385 +203686,3275,religion,1268942392 +203686,3275,twins,1268942419 +203686,3415,childhood,1268592246 +203686,3415,mother-son relationship,1268592274 +203686,3415,poetry,1268592268 +203686,3415,Tarkovsky,1268592241 +203686,3415,visually stunning,1268592263 +203686,3418,road movie,1269701290 +203686,3676,black and white,1272833847 +203686,3676,creepy,1272833879 +203686,3676,David Lynch,1272833817 +203686,3676,disturbing,1272879089 +203686,3676,surreal,1272833862 +203686,3786,lesbian,1263753976 +203686,3786,satire,1263753978 +203686,3845,Brigitte Bardot,1275993373 +203686,3845,french,1275993377 +203686,3845,sexual,1275993382 +203686,3854,lesbian,1266924981 +203686,3854,Nazis,1266924976 +203686,3854,queer,1266924970 +203686,3968,deal with the devil,1295727563 +203686,4011,Brad Pitt,1266361882 +203686,4011,dialogue,1266361901 +203686,4011,gypsy accent,1266361908 +203686,4011,imdb top 250,1266361904 +203686,4011,twist ending,1266361912 +203686,4064,blaxploitation,1293630126 +203686,4064,Pam Grier,1293630130 +203686,4218,Dennis Hopper,1273521426 +203686,4357,Lauren Bacall,1270995414 +203686,4357,Marilyn Monroe,1270995412 +203686,4359,Marilyn Monroe,1267743868 +203686,4439,addiction,1273338292 +203686,4439,Berlin,1273338274 +203686,4439,David Bowie,1273338269 +203686,4439,drugs,1273338277 +203686,4439,heroin,1273338285 +203686,4439,prostitution,1273338314 +203686,4439,true story,1273338332 +203686,4641,based on a comic,1266363048 +203686,4641,quirky,1266363043 +203686,4641,Scarlett Johansson,1266363028 +203686,4641,Steve Buscemi,1266363030 +203686,4642,campy,1266361445 +203686,4642,cult film,1266361436 +203686,4642,musical,1266361457 +203686,4642,queer,1266361496 +203686,4642,rock music,1266361481 +203686,4642,sexuality,1266361448 +203686,4642,transgender,1266361463 +203686,4816,David Bowie,1227993354 +203686,4816,stupid,1227993354 +203686,4878,cult film,1266362555 +203686,4878,imdb top 250,1266362542 +203686,4878,mental illness,1266362564 +203686,4878,philosophy,1266362531 +203686,4973,cult film,1266362498 +203686,4973,imdb top 250,1266362456 +203686,4973,Paris,1266362463 +203686,4995,genius,1267615589 +203686,4995,math,1267615601 +203686,4995,mental illness,1267615592 +203686,4995,schizophrenia,1267615595 +203686,5222,queer,1227293463 +203686,5421,Catholic school,1286959389 +203686,5421,Catholicism,1286959378 +203686,5421,Christianity,1286959376 +203686,5421,Kieran Culkin,1286959337 +203686,5550,brothers,1280831223 +203686,5550,Civil War,1280825567 +203686,5577,adolescence,1282076925 +203686,5577,family,1282076930 +203686,5577,Kieran Culkin,1286959549 +203686,5951,based on a book,1278929379 +203686,6016,amazing cinematography,1238852253 +203686,6121,gay,1284110689 +203686,6121,homosexuality,1284110653 +203686,6121,Jean Genet,1284110643 +203686,6121,Jeanne Moreau,1284110634 +203686,6121,visually interesting,1284110728 +203686,6222,based on a book,1274124614 +203686,6222,depression,1274124610 +203686,6222,Lou Reed,1274124642 +203686,6222,writing,1274124637 +203686,6305,based on a book,1281806013 +203686,6305,dystopia,1281806007 +203686,6305,fascism,1281806008 +203686,6305,François Truffaut,1281806011 +203686,6502,Cillian Murphy,1266414193 +203686,6502,danny boyle,1266414202 +203686,6502,visually appealing,1266414185 +203686,6502,zombies,1266414160 +203686,6782,Aki Kaurismäki,1271935468 +203686,6782,Finnish,1271935473 +203686,6782,Jim Jarmusch,1271970377 +203686,6782,road movie,1271970360 +203686,6782,rock and roll,1271970354 +203686,6782,satire,1271970358 +203686,6874,imdb top 250,1266362814 +203686,6874,kung fu,1266362826 +203686,6874,Quentin Tarantino,1266362811 +203686,6874,revenge,1266362833 +203686,6874,violence,1266362818 +203686,6883,poet,1254690939 +203686,6883,poetry,1254690939 +203686,6883,sylvia plath,1254690939 +203686,6892,Robert Downey Jr.,1268675471 +203686,6985,Christianity,1283709381 +203686,6985,religion,1283709376 +203686,6985,silent film,1283709362 +203686,7003,black and white,1283104695 +203686,7003,Franz Kafka,1283104703 +203686,7003,Jeremy Irons,1283104687 +203686,7013,atmospheric,1266363075 +203686,7013,film noir,1266363071 +203686,7013,imdb top 250,1266363068 +203686,7013,preacher,1266363082 +203686,7013,thriller,1266363106 +203686,7092,greta garbo,1256856406 +203686,7154,school drama,1267615539 +203686,7160,Charlize Theron,1316887312 +203686,7160,Christina Ricci,1316887310 +203686,7160,lesbian,1316887302 +203686,7160,serial killer,1316887296 +203686,7160,true story,1316887316 +203686,7265,1960s,1267735137 +203686,7265,erotic,1267735148 +203686,7361,Charlie Kaufman,1266361923 +203686,7361,imdb top 250,1266361931 +203686,7361,memory,1266361980 +203686,7361,philosophy,1266361925 +203686,7361,romantic,1266362017 +203686,7365,dark humor,1275488494 +203686,7365,Iceland,1275488499 +203686,7365,small town,1275488510 +203686,7366,Kevin Smith,1268258945 +203686,7371,cult film,1266362251 +203686,7371,disturbing,1266362295 +203686,7371,Lars von Trier,1266362257 +203686,7371,social commentary,1266362341 +203686,7390,Drea de Matteo,1274974850 +203686,7390,lesbian,1274975139 +203686,7390,punk,1274975208 +203686,7390,rock and roll,1274978079 +203686,7438,imdb top 250,1266362762 +203686,7438,kung fu,1266362759 +203686,7438,Quentin Tarantino,1266362749 +203686,7438,revenge,1266362755 +203686,7438,violence,1266362751 +203686,7451,High School,1264458933 +203686,7451,suprisingly clever,1264458945 +203686,7460,Bill Murray,1267179953 +203686,7460,black and white,1267179940 +203686,7460,Cate Blanchett,1267179937 +203686,7460,dialogue,1267179966 +203686,7460,episodic,1267179945 +203686,7460,iggy pop,1267179975 +203686,7460,Jim Jarmusch,1267179930 +203686,7460,smoking,1267179994 +203686,7460,Steve Buscemi,1267179957 +203686,7460,Tom Waits,1267179933 +203686,7487,based on a book,1281019199 +203686,7487,erotic,1281019203 +203686,7487,lesbian,1281019205 +203686,7487,Paris,1281019209 +203686,7487,writers,1281019212 +203686,7618,biopic,1267286683 +203686,7618,Robert Downey Jr,1267286677 +203686,7748,Anna Karina,1272744649 +203686,7748,Jean-Luc Godard,1272744653 +203686,8014,Buddhism,1266414263 +203686,8014,Kim Ki-Duk,1266414254 +203686,8014,quiet,1266414270 +203686,8256,cross dressing,1283287603 +203686,8256,Greta Garbo,1283287593 +203686,8256,Sweden,1283287595 +203686,8366,christianity,1270639138 +203686,8366,Mary-Louise Parker,1270639151 +203686,8366,religion,1270639142 +203686,8366,teen pregnancy,1270639145 +203686,8507,black and white,1279889702 +203686,8507,circus,1279889753 +203686,8738,Anna Karina,1271532745 +203686,8738,Jean-Luc Godard,1271532748 +203686,8784,quirky,1266362592 +203686,8910,existentialism,1266362191 +203686,8910,philosophy,1266362183 +203686,8910,satire,1266362201 +203686,8914,complicated,1276815120 +203686,8914,intellectual,1276815140 +203686,8914,time travel,1276815130 +203686,25771,salvador dali,1270640183 +203686,25771,surrealism,1270640174 +203686,25833,Greta Garbo,1268256003 +203686,26007,finland,1226939913 +203686,26007,finnish,1226939913 +203686,26163,1960s,1268518960 +203686,26163,black and white,1268518876 +203686,26163,Bob Dylan,1268518852 +203686,26163,documentary,1268518860 +203686,26163,interviews,1268743855 +203686,26163,music,1268518954 +203686,26231,Mick Jagger,1281213311 +203686,26231,sexual,1281213315 +203686,26485,based on a book,1267180395 +203686,26485,Tom Waits,1267180398 +203686,27020,drugs,1271354980 +203686,27020,lesbian,1271354961 +203686,27573,tokyo,1270420364 +203686,27826,gay,1279534096 +203686,30803,Kim Ki-duk,1266414139 +203686,30803,quiet,1266414148 +203686,30810,Bill Murray,1282398258 +203686,30810,Cate Blanchett,1282398260 +203686,30810,comedy,1282398301 +203686,30810,david bowie,1282398268 +203686,30810,quirky,1282398299 +203686,30810,stylized,1282398297 +203686,30810,visually appealing,1282398294 +203686,30810,Wes Anderson,1282398257 +203686,32587,based on comic,1266362850 +203686,32587,cannibalism,1266362887 +203686,32587,imdb top 250,1266362858 +203686,32587,multiple storylines,1266362895 +203686,32587,Quentin Tarantino,1266362852 +203686,32587,Robert Rodriguez,1266362912 +203686,32587,violence,1266362866 +203686,32587,visually appealing,1266362882 +203686,33162,Eva Green,1267735184 +203686,33171,gay,1254084194 +203686,33193,Brigitte Bardot,1276600245 +203686,33193,french,1275343091 +203686,33193,Jeanne Moreau,1275343075 +203686,33193,Louis Malle,1276448192 +203686,33487,Kim Ki-duk,1266414011 +203686,33487,prostitution,1266414015 +203686,33817,lesbian,1267639036 +203686,33817,queer,1267639050 +203686,34326,Gus Van Sant,1274426122 +203686,34326,kurt cobain,1274426134 +203686,34540,high school,1264459099 +203686,37382,bounty hunting,1267180325 +203686,37382,fast-cut,1267180331 +203686,37382,tom waits,1267180283 +203686,38304,biography,1268519139 +203686,38304,Bob Dylan,1268519108 +203686,38304,documentary,1268519129 +203686,38304,Martin Scorsese,1268519125 +203686,38304,music,1268519133 +203686,40887,Casey Affleck,1284282458 +203686,40887,depression,1284282467 +203686,40887,Liv Tyler,1284282460 +203686,40952,family,1321722627 +203686,40952,Judaism,1321722574 +203686,40952,kabbalah,1321722564 +203686,40952,mental illness,1321722627 +203686,40952,religion,1321722589 +203686,40952,spelling bee,1321722543 +203686,42632,beautiful cinematography,1269032577 +203686,42632,child murder,1269032599 +203686,42632,prison,1269032596 +203686,44555,East Germany,1272267063 +203686,44555,Stasi,1272267061 +203686,45170,black and white,1277589567 +203686,45170,espionage,1277589552 +203686,45170,Greta Garbo,1269187473 +203686,45635,1950s,1273319396 +203686,45635,biography,1273319311 +203686,45635,christianity,1273319380 +203686,45635,Lili Taylor,1273319321 +203686,45635,Mary Harron,1273319468 +203686,45728,funny,1268258935 +203686,45728,Kevin Smith,1268258932 +203686,46231,the rolling stones,1266674449 +203686,46478,Ellen Page,1271201692 +203686,46561,leonard cohen,1287440902 +203686,49035,fred astaire,1270420410 +203686,49035,musical,1270420415 +203686,49856,french,1274550517 +203686,49856,lesbian subtext,1274550461 +203686,49856,musicians,1274550512 +203686,49856,piano,1274550406 +203686,49856,revenge,1274550371 +203686,49957,queer,1267628734 +203686,49957,school drama,1267628720 +203686,50517,identity,1266414295 +203686,50517,Kim Ki-duk,1266414278 +203686,50517,plastic surgery,1266414283 +203686,52579,biopic,1271245543 +203686,52579,Edith Piaf,1271245538 +203686,52579,Paris,1271245547 +203686,54281,high school,1264459004 +203686,54341,gay,1271708187 +203686,55031,Kevin Smith,1269700880 +203686,55269,adrien brody's nose,1266362421 +203686,55269,brothers,1266362385 +203686,55269,road trip,1266362388 +203686,55363,based on a true story,1274641050 +203686,55363,beautiful scenery,1274641104 +203686,55363,Brad Pitt,1274640548 +203686,55363,long,1274641076 +203686,55363,Mary-Louise Parker,1274640566 +203686,55363,visually appealing,1274641106 +203686,55363,western,1274640571 +203686,56012,Kevin Smith,1269892589 +203686,56145,apocalypse,1269375218 +203686,56145,insects,1269375202 +203686,56145,stephen king,1269375188 +203686,56286,1960s,1268519100 +203686,56286,allen ginsberg,1268518997 +203686,56286,androgyne,1226939889 +203686,56286,bob dylan,1268518999 +203686,56286,cate blanchett,1268519038 +203686,56286,music,1226939889 +203686,56286,perfect,1268519088 +203686,56286,todd haynes,1268519024 +203686,56474,incest,1311521554 +203686,56474,isabelle huppert,1311521547 +203686,56474,sadomasochism,1311521561 +203686,56474,sex,1311521550 +203686,56715,quirky,1267180050 +203686,56715,suicide,1267180043 +203686,56715,Tom Waits,1267180041 +203686,57274,Handycam,1270329249 +203686,57274,horror,1270329242 +203686,57274,panic,1270329273 +203686,57274,spanish,1270329256 +203686,57274,zombies,1270329252 +203686,58559,based on a comic,1266362041 +203686,58559,imdb top 250,1266362037 +203686,58576,Anna Karina,1280939878 +203686,58576,french,1280939881 +203686,58576,Jean-Luc Godard,1280939867 +203686,58576,Marianne Faithfull,1280939913 +203686,58576,new wave,1280939891 +203686,58992,Anton Corbijn,1271370183 +203686,59602,based on a book,1273436195 +203686,59602,finnish,1273004823 +203686,59602,helsinki,1273436219 +203686,59602,poetry,1273436197 +203686,59602,teacher student relationship,1273436202 +203686,59602,university,1273004818 +203686,59655,documentary,1269344393 +203686,59655,Patti Smith,1269344376 +203686,59655,Patti Smith is a goddess,1269344436 +203686,59655,poetry,1269344402 +203686,60069,Animation,1280533554 +203686,60069,pixar,1280533559 +203686,60069,Post apocalyptic,1280533572 +203686,60069,robots,1280533562 +203686,60291,Hunter S. Thompson,1226939936 +203686,60397,Meryl Streep,1279136840 +203686,60524,david bowie,1264976409 +203686,61236,animation,1274022285 +203686,61236,documentary,1274022276 +203686,61236,memory,1274022325 +203686,61236,war,1274022288 +203686,61240,swedish,1273422871 +203686,61240,vampire,1276618273 +203686,62434,Kevin Smith,1268258905 +203686,62434,pornography,1268258909 +203686,62511,Charlie Kaufman,1266619182 +203686,62511,difficult,1266619219 +203686,62511,surreal,1266619188 +203686,62511,theatre,1266619194 +203686,63119,Eugene Hutz,1280825815 +203686,63119,Vicky McClure,1280825840 +203686,64614,Clint Eastwood,1282995422 +203686,64614,gangs,1282995451 +203686,64614,racism,1282995419 +203686,64839,aging,1269888908 +203686,64839,Darren Aronofsky,1269888872 +203686,64839,Mickey Rourke,1269888955 +203686,64839,violence,1269888933 +203686,64839,wrestling,1269888901 +203686,65037,autism,1282824818 +203686,65037,fake suicide,1282824821 +203686,65037,role playing game,1282824825 +203686,65037,suicide,1282824823 +203686,65130,1950s,1275078598 +203686,65130,abortion,1275078600 +203686,65130,based on a book,1275078633 +203686,65130,dreams,1275078604 +203686,65130,Kate Winslet,1275078586 +203686,65130,marriage,1275078595 +203686,65230,dogs,1274633941 +203686,65230,journalism,1274633954 +203686,65230,marriage,1274633945 +203686,65230,pregnancy,1274633957 +203686,65230,tear jerker,1274633980 +203686,66203,chick flick,1279722796 +203686,66203,Scarlett Johansson,1279722735 +203686,66203,scarlett johansson's boobs,1279722749 +203686,67087,bromance,1280267784 +203686,67087,friendship,1280267788 +203686,67087,gay friendly,1280267790 +203686,67255,based on a book,1270122532 +203686,67255,Noomi Rapace,1270122529 +203686,67255,swedish,1270122539 +203686,67665,documentary,1289080202 +203686,67665,heavy metal,1289080197 +203686,67665,Spinal Tap influence,1289080191 +203686,67792,adolescence,1280001556 +203686,67792,autism,1280001532 +203686,67792,Toni Collette,1280001521 +203686,68073,1960s,1266150295 +203686,68157,Brad Pitt,1266361760 +203686,68157,Nazis,1266361742 +203686,68157,Quentin Tarantino,1266361714 +203686,68157,satire,1266361718 +203686,68157,violence,1266361720 +203686,68157,World War II,1266361757 +203686,69757,cute,1266362727 +203686,69757,humorous,1266362743 +203686,69757,IMDB Top 250,1266362712 +203686,69757,quirky,1266362719 +203686,69818,Eva Green,1267648720 +203686,69818,gothic,1267648727 +203686,69951,devil,1263737394 +203686,69951,tom waits,1263737356 +203686,70984,1960s,1280533480 +203686,70984,Ang Lee,1280533482 +203686,70984,drugs,1280533531 +203686,70984,family,1280533521 +203686,70984,woodstock,1280533507 +203686,71518,Drew Barrymore,1269200432 +203686,71518,Ellen Page,1269200431 +203686,71518,girl power,1269200696 +203686,71518,Juliette Lewis,1269200424 +203686,71518,roller derby,1269200438 +203686,72720,death,1276953280 +203686,72720,gay,1276953290 +203686,72720,Julianne Moore,1276953194 +203686,72720,mourning,1276953209 +203686,72720,sad,1276953204 +203686,72720,suicide,1276953202 +203686,72720,teacher,1276953298 +203686,73017,homoerotic subtext,1266096958 +203686,73017,Robert Downey Jr.,1266096953 +203686,73266,funny,1275233694 +203686,73266,teenagers,1275233706 +203686,74275,based on a true story,1270063891 +203686,74275,Ewan McGregor,1270063789 +203686,74275,gay,1270063786 +203686,74275,Jim Carrey,1270063794 +203686,74275,prison,1270063829 +203686,74275,queer,1270063782 +203686,74510,based on a book,1270122503 +203686,74510,Noomi Rapace,1270122454 +203686,74510,swedish,1270122485 +203686,74532,Kevin Smith,1268258788 +203686,74538,French,1273596926 +203686,74538,Jean Genet,1269187506 +203686,74538,Jeanne Moreau,1269187498 +203686,74538,sexuality,1273605634 +203686,74538,teacher,1273605673 +203686,74789,3D,1276031408 +203686,75813,Edward Norton,1282510559 +203686,75813,family,1282510575 +203686,75813,twins,1269379904 +203686,75813,weed,1282510561 +203686,76175,epic,1270760151 +203686,76175,Ralph Fiennes,1270760114 +203686,76175,remake,1270760109 +203686,76251,adapted from:comic,1271507064 +203686,76251,funny,1271507082 +203686,76251,pop culture references,1271507059 +203686,76251,superhero,1271507072 +203686,76827,based on a book,1271543230 +203686,78000,debut film,1311883763 +203686,78000,mexico,1311883751 +203686,79132,Christopher Nolan,1294657865 +203686,79132,complicated,1294657728 +203686,79132,dreams,1294657730 +203686,79132,great cast,1294657769 +203686,79702,based on a comic,1286225574 +203686,79702,garage band,1286225593 +203686,79702,geeky,1286225557 +203686,79702,Kieran Culkin,1286225552 +203686,79702,Michael Cera,1286225555 +203686,79702,video games,1286225559 +203686,80219,exploitation,1293987054 +203686,80219,Robert Rodriguez,1293987063 +203686,80553,1950s,1285448736 +203686,80553,Allen Ginsberg,1285448713 +203686,80553,beat generation,1285448778 +203686,80553,censorship,1285448728 +203686,80553,James Franco,1285448704 +203686,80553,poetry,1285448717 +203686,81591,ballet,1299784746 +203686,81591,Darren Aronofsky,1299784740 +203686,81591,Natalie Portman,1299784715 +203686,81591,repressed sexuality,1299784753 +203686,81791,Sofia Coppola,1294866352 +203686,81819,cancer,1297588045 +203686,83798,boarding school,1310935439 +203686,83798,Eva Green,1310935432 +203686,83798,lesbian,1310935436 +203690,260,Military,1444954594 +203690,260,space adventure,1444954597 +203691,1215,horror comedy,1203029692 +203691,2997,Charlie Kaufman,1203028725 +203691,46976,Charlie Kaufman-esque,1203028747 +203691,51088,lame!,1203029592 +203691,69481,action,1262575328 +203691,69481,bombs,1262575334 +203691,69481,death,1262575337 +203691,69481,Iraq,1262575363 +203691,69481,Kathryn Bigelow,1262575345 +203691,69481,Middle East,1262575355 +203691,69481,Very intense,1262575369 +203691,71450,Michael Moore,1262575278 +203697,260,action,1436507101 +203697,260,sci-fi,1436507111 +203697,260,space,1436507138 +203711,60684,great soundtrack,1452371434 +203711,87430,audience intelligence underestimated,1446276373 +203719,67734,Kristen Stewart,1253429612 +203719,67734,pot cookies,1253429633 +203719,67734,Ryan Reynolds,1253429621 +203719,67734,soooo funny!,1253429597 +203752,16,based on a book,1447081684 +203752,16,Mafia,1447081674 +203752,16,organized crime,1447081688 +203752,16,robert de niro,1447081677 +203752,55247,atmospheric,1447082157 +203752,55247,based on a true story,1447082150 +203752,55247,great soundtrack,1447082152 +203752,55247,road trip,1447082154 +203752,55247,self discovery,1447082147 +203752,55247,travel,1447082163 +203752,55444,music,1447081593 +203752,113741,intelligent,1447081663 +203752,113741,mind bending,1447081654 +203752,113741,mystery,1447081660 +203752,113741,parallel universe,1447081651 +203752,125916,erotic,1447082121 +203752,125916,nudity (topless),1447082124 +203823,58559,Heath Ladger,1246816463 +203823,58559,Joker,1246816463 +203823,58559,Killing,1246816463 +203823,58559,Quotable Movie!,1246816463 +203823,58559,Quotes,1246816463 +203823,58559,Scars,1246816463 +203823,58559,Threatening Villain,1246816463 +203869,145,action,1355855815 +203869,597,chick flick,1355858569 +203869,597,Richard Gere,1355858569 +203869,597,romance,1355858499 +203869,837,comedy,1355856304 +203869,837,genius,1355856304 +203869,837,Roald Dahl,1355856304 +203869,1569,Cameron Diaz,1355856962 +203869,1569,chick flick,1355856962 +203869,1569,Dermot Mulroney,1355856962 +203869,1569,Julia Roberts,1355856962 +203869,1569,romance,1355856962 +203869,1569,Rupert Everett,1355856962 +203869,2459,tense,1355859955 +203869,2959,Brad Pitt,1355859585 +203869,2959,philosophical,1355859585 +203869,2959,Unexpected Ending,1355859585 +203869,6951,based on a book,1355858828 +203869,6951,Dr. Seuss,1355858828 +203869,6951,terrible remake,1355858828 +203869,31685,comedy,1355855733 +203869,31685,Will Smith,1355855726 +203869,33615,animation,1355856015 +203869,58299,Steve Carell,1355856112 +203869,58299,talking animals,1355856205 +203869,58803,genius,1355857133 +203869,58803,Jim Sturgess,1355857109 +203869,58803,Kevin Spacey,1355857188 +203869,79946,american dream,1355856416 +203869,79946,consumerism,1355856370 +203869,79946,David Duchovny,1355856416 +203869,79946,Demi Moore,1355856416 +203869,80463,Andrew Garfield,1355859702 +203869,80463,Armie Hammer,1355859702 +203869,80463,based on a true story,1355859658 +203869,80463,Jesse Eisenberg,1355859702 +203869,80463,Justin Timberlake,1355859767 +203880,4343,boring,1249337887 +203880,4343,Funny when your 10. Less funny when your not.,1249337897 +203880,5014,psychology,1280244647 +203880,6952,Robert Downey Jr.,1279688731 +203880,6952,spirits,1279688727 +203880,44191,1984,1145579204 +203880,60684,too long,1249323397 +203880,63072,Charlize Theron,1277509236 +203880,63072,dystopia,1277509233 +203880,63072,post-apocalyptic,1277509231 +203880,63072,The End,1277509245 +203880,64614,Clint Eastwood,1249418939 +203880,64614,life & death,1249418945 +203880,64614,Political Correctness,1249418947 +203880,64716,atonement,1267043721 +203880,64957,long,1247964179 +203880,64957,slow pacing,1247964164 +203880,65216,slow,1249323341 +203880,72393,bad science,1269809022 +203880,72393,Milla Jovovich,1269809020 +203880,72605,Natalie Portman,1277397228 +203880,72605,Tobey Maguire,1277397229 +203880,73321,Denzel Washington,1275532440 +203880,73321,dystopia,1275532454 +203880,73321,dystopic future,1275532451 +203880,73321,Mila Kunis,1275532437 +203880,73321,rewatchable,1275532472 +203880,73321,setting,1275532458 +203880,73321,thought-provoking,1275532473 +203880,73321,twist ending,1275532476 +203880,74795,conspiracy,1279690275 +203880,74795,Matt Damon,1279690273 +203880,75395,predictable ending,1286086922 +203880,76251,cursing,1283305244 +203880,76251,gory,1283305271 +203880,76251,high school,1283305259 +203880,76251,not funny,1283305245 +203880,76251,vigilante,1283305260 +203880,76251,violence,1283305263 +203880,76251,weapons,1283305262 +203880,78218,Samuel L. Jackson,1277509202 +203880,80219,boobies guns and blood!,1296353520 +203880,80219,Jessica Alba,1296353532 +203880,80219,Michelle Rodriguez,1296353530 +203880,80219,Not very strong ending,1296353629 +203880,80219,over the top violence,1296353542 +203880,80219,Robert Rodriguez,1296353637 +203880,80880,tits,1296264969 +203880,81591,Natalie Portman,1336310844 +203888,260,hero's journey,1437112380 +203888,260,space adventure,1437112371 +203893,7,based on a play,1242067279 +203893,7,chick flick,1242067265 +203893,7,Harrison Ford,1242067268 +203893,7,Julia Ormond,1242067271 +203893,7,Nancy Marchand,1242067273 +203893,7,remake,1242067276 +203893,107,treasure,1368525377 +203893,265,compassionate,1244661196 +203893,265,food/cooking,1244661199 +203893,265,intimate,1244661201 +203893,265,magic realism,1244661204 +203893,265,passionate,1244661207 +203893,265,warm,1244661214 +203893,318,awesome,1262019469 +203893,318,based on a book,1262019467 +203893,318,excellent and worth while.,1262019473 +203893,318,genius,1262019478 +203893,318,great cast,1262019481 +203893,318,Great movie,1262019484 +203893,318,seen more than once,1262019495 +203893,318,sentimental,1262019502 +203893,380,arnold,1368525487 +203893,485,arnold,1368525487 +203893,527,awesome,1244661319 +203893,527,based on book,1262019515 +203893,527,emotion!,1244661323 +203893,527,historical,1262019525 +203893,527,Holocaust,1262019528 +203893,527,true story,1262019537 +203893,527,want to see again,1262019539 +203893,527,World War II,1262019533 +203893,589,arnold,1368525487 +203893,592,dark hero,1368525451 +203893,593,Anthony Hopkins,1262019421 +203893,593,disturbing,1262019424 +203893,593,inteligent mind,1262019439 +203893,593,MIND GAMES,1262019442 +203893,593,psychological drama,1262019447 +203893,593,suspense,1262019455 +203893,597,chick flick,1242067359 +203893,597,cinderella,1242067362 +203893,597,Comedy,1242067364 +203893,597,girlie movie,1242067376 +203893,597,Good Romantic Comedies,1242067368 +203893,597,Julia Roberts,1242067378 +203893,597,prince charming,1242067380 +203893,597,Richard Gere,1242067384 +203893,597,romance,1242067386 +203893,597,ROMANTIC,1242067389 +203893,597,shopping,1242067392 +203893,898,screwball comedy,1368525513 +203893,910,screwball comedy,1368525513 +203893,913,noir thriller,1368525393 +203893,915,audrey hepburn,1240940306 +203893,915,classic romantic comedy,1240940309 +203893,915,nostalgia,1240940315 +203893,915,William Holden,1240940327 +203893,950,screwball comedy,1368525513 +203893,1035,*Good* Musicals,1241943363 +203893,1035,Christopher Plummer,1241943371 +203893,1035,family,1241943406 +203893,1035,great musical,1241943402 +203893,1035,Julie Andrews,1241943374 +203893,1035,movie to see,1241943386 +203893,1035,music,1241943389 +203893,1035,musical,1241943392 +203893,1035,true story,1241943397 +203893,1193,mental illness,1262019555 +203893,1197,comedy,1298298908 +203893,1197,fairy tale,1298298911 +203893,1197,fantasy,1298298912 +203893,1197,feel-good,1298298915 +203893,1197,funny,1298298917 +203893,1197,Funny as hell,1298298920 +203893,1197,humorous,1298298937 +203893,1197,merry,1298298941 +203893,1197,romance,1298298932 +203893,1240,arnold,1368525487 +203893,1270,spielberg,1368526466 +203893,1291,spielberg,1368526466 +203893,1291,treasure,1368525377 +203893,1307,Billy Crystal,1241337563 +203893,1307,Chicago,1240939938 +203893,1307,classic,1241337607 +203893,1307,cute,1241337576 +203893,1307,fun,1241337618 +203893,1307,Good Romantic Comedies,1240939872 +203893,1307,jazz,1241337601 +203893,1307,meg ryan,1241337584 +203893,1307,One of the funniest movies ever.,1240939881 +203893,1307,Oscar Nominee,1240939941 +203893,1307,Quotable,1241337597 +203893,1307,Rob Reiner,1241337593 +203893,1307,romance,1240939889 +203893,1307,seen more than once,1240939921 +203893,1307,smart,1240939910 +203893,1307,the quintessential romantic comedy!,1240939900 +203893,1391,mars,1368525433 +203893,1580,conspiracy theory,1368526357 +203893,1617,neo-noir,1368525548 +203893,1641,actually funny,1307545394 +203893,1641,touching,1307545406 +203893,1784,Comedy,1242067420 +203893,1784,funny,1242067429 +203893,2022,christian,1368525528 +203893,2022,jesus,1368525348 +203893,2115,spielberg,1368526466 +203893,2115,treasure,1368525376 +203893,2193,dragon,1368526384 +203893,2321,poignant,1240940238 +203893,2321,whimsical,1240940246 +203893,2321,witty,1240940252 +203893,2571,Action,1241337945 +203893,2571,alternate universe,1241337951 +203893,2571,alternate world,1241337956 +203893,2571,Carrie-Anne Moss,1241337962 +203893,2571,combat,1241337964 +203893,2571,dark hero,1368525451 +203893,2571,Favorites,1241337968 +203893,2571,futuro,1241337972 +203893,2571,Keanu Reeves,1241337978 +203893,2571,martial arts,1241337981 +203893,2571,post apocalyptic,1241337993 +203893,2571,Pure action,1241337998 +203893,2571,smart,1241338005 +203893,2617,treasure,1368525376 +203893,2916,arnold,1368525487 +203893,3067,screwball comedy,1368525513 +203893,3147,compassionate,1298314302 +203893,3147,emotional,1298314315 +203893,3147,excellent,1298314321 +203893,3147,Frank Darabont,1298314304 +203893,3147,Great Adaptations,1298314308 +203893,3147,heart-wrenching,1298314311 +203893,3147,heartwarming,1298314313 +203893,3147,imdb top 250,1298314326 +203893,3147,Interesting,1298314362 +203893,3147,jail,1298314330 +203893,3147,Michael Clarke Duncan,1298314333 +203893,3147,Moving,1298314335 +203893,3147,nostalgic,1298314337 +203893,3147,Stephen King,1298314352 +203893,3147,tear-jerker,1298314348 +203893,3147,Tom Hanks,1298314343 +203893,3147,whimsical,1298314345 +203893,3451,Katherine Hepburn,1177405280 +203893,3751,aardman,1241339355 +203893,3751,Aardman studios,1241339358 +203893,3751,almost favorite,1241339361 +203893,3751,animals,1298314409 +203893,3751,animation,1241339710 +203893,3751,birds,1298314415 +203893,3751,Dreamworks,1241339715 +203893,3751,family,1241339731 +203893,3751,freedom,1298314396 +203893,3751,funny,1241339734 +203893,3751,happy,1241339737 +203893,3751,Mel Gibson,1241339739 +203893,3751,stop motion,1298314390 +203893,3751,The Great Escape,1241339742 +203893,4029,movie to see,1262016989 +203893,4029,Philip Seymour Hoffman,1262016977 +203893,4029,William H. Macy,1262016982 +203893,4226,amnesia,1240940340 +203893,4226,nonlinear,1240940347 +203893,4226,so damn good,1240940351 +203893,4226,twist ending,1240940356 +203893,4226,want to see again,1240940364 +203893,4306,animation,1240940153 +203893,4306,classic fairy tales,1240940156 +203893,4306,comedia,1240940163 +203893,4306,computer animation,1240940168 +203893,4306,fairy tale,1240940195 +203893,4306,imdb top 250,1240940190 +203893,4306,Mke Myers,1240940182 +203893,4306,seen more than once,1240940171 +203893,4306,very funny,1240940173 +203893,4306,witty!,1240940176 +203893,4367,action,1242067063 +203893,4367,adaptation,1242067077 +203893,4367,adapted from:game,1242067073 +203893,4367,Angelina Jolie,1242067080 +203893,4367,based on a video game,1242067086 +203893,4367,boring,1242067089 +203893,4641,Steve Buscemi,1285491046 +203893,4641,stylized,1285491050 +203893,4700,Anne Hathaway,1250062544 +203893,4700,comedy,1250062549 +203893,4700,Hector Elizondo,1250062555 +203893,4700,Julie Andrews,1250062560 +203893,4886,animated,1298314499 +203893,4886,animation,1298314501 +203893,4886,classic animated tale,1298314504 +203893,4886,Comedy,1298314507 +203893,4886,cute,1298314509 +203893,4886,Disney,1298314514 +203893,4886,good cartoon children,1298314522 +203893,4886,hilarious,1298314525 +203893,4886,kids fun,1298314527 +203893,4886,movielens top pick,1298314532 +203893,4886,Oscar (Best Music - Original Score),1298314539 +203893,4886,Oscar (Best Music - Original Song),1298314543 +203893,4886,Oscar Winner,1298314548 +203893,4886,own,1298314550 +203893,4886,Owned,1298314552 +203893,4886,Pixar,1298314554 +203893,4886,sweet movie!,1298314559 +203893,4886,the best of for kids and adults,1298314562 +203893,4921,adapted from:book,1261741021 +203893,4921,author:Louisa May Alcott,1261741001 +203893,4921,based on a book,1261741028 +203893,4921,Katherine Hepburn,1261741005 +203893,5135,bollywood,1368525326 +203893,5445,spielberg,1368526466 +203893,5459,comedy,1242067025 +203893,5570,snuff,1177400880 +203893,5878,Almodovar,1240940045 +203893,5878,Breathtaking,1240940050 +203893,5878,coma,1240940099 +203893,5878,imdb top 250,1240940057 +203893,5878,just almodovar,1240940104 +203893,5878,Leonor Watling,1240940108 +203893,6367,1960s,1298313593 +203893,6367,60s,1298313596 +203893,6367,Chick Flick,1298313598 +203893,6367,colourful,1298313601 +203893,6367,happy ending,1298313606 +203893,6377,short-term memory loss,1368526437 +203893,6539,treasure,1368525377 +203893,6711,Amazing Cinematography,1241338280 +203893,6927,Anthony Hopkins,1250062599 +203893,6927,Ed Harris,1250062601 +203893,6927,Nicole Kidman,1250062609 +203893,6927,Nudity (Full Frontal - Notable),1250062607 +203893,7147,sueños,1174392011 +203893,7318,jesus,1368525348 +203893,7361,short-term memory loss,1368526437 +203893,7380,fairy tale,1267817652 +203893,7380,feel good movie,1267817658 +203893,7386,christian,1368525529 +203893,7669,19th century,1250062744 +203893,7669,adapted from:book,1298314451 +203893,7669,almost as good as the book,1298314455 +203893,7669,author:Jane Austen,1250062750 +203893,7669,Colin Firth,1298314461 +203893,7669,comedy of manners,1298314464 +203893,7669,Jane Austen,1250062748 +203893,8529,Catherine Zeta Jones,1240940004 +203893,8529,Catherine Zeta-Jones,1240940007 +203893,8529,funny,1240940013 +203893,8529,Tom Hanks,1240940020 +203893,8644,action,1244660929 +203893,8644,android(s)/cyborg(s),1244660935 +203893,8644,future,1244660892 +203893,8644,futuristic,1244660895 +203893,8644,Isaac Asimov,1244660905 +203893,8644,robot,1244660911 +203893,8644,robots,1244660913 +203893,8644,Sci fi,1244660916 +203893,8644,sci-fi,1244660920 +203893,8644,sexy female scientist,1244660926 +203893,8644,Will Smith,1244660922 +203893,8914,clever,1267964892 +203893,8914,complicated plot,1267964904 +203893,8914,intellectual,1267964922 +203893,8914,mindblowing,1267964920 +203893,8914,paradox,1267964897 +203893,8914,sci-fi,1267964901 +203893,8961,action,1241339016 +203893,8961,Adventure,1241339020 +203893,8961,animation,1241339012 +203893,8961,comedy,1241339023 +203893,8961,dibujos bonita,1241339026 +203893,8961,Disney,1241339036 +203893,8961,family,1241339038 +203893,8961,fashion,1241339046 +203893,8961,imdb top 250,1241339044 +203893,8961,Mr. Incredible,1241339049 +203893,8961,Oscar (Best Animated Feature),1241339053 +203893,8961,Pixar,1241339057 +203893,8961,super-hero,1241339067 +203893,27808,better than I expected,1299609297 +203893,27808,interesting tale of immigrants in the US,1299609302 +203893,27815,boarding school,1272780242 +203893,27815,boys' school,1272780245 +203893,27815,choir,1272780247 +203893,27815,feel-good,1272780250 +203893,27815,heartwarming,1272780258 +203893,27815,inspiring teacher,1272780264 +203893,33166,overrated,1242067229 +203893,40629,unnecessary,1169042542 +203893,44555,breathtaking,1244661160 +203893,44694,Almodovar,1240939962 +203893,44694,almodovar is growing up,1244661244 +203893,44694,Beautiful Woman,1244661248 +203893,44694,female power,1244661251 +203893,44694,generations,1244661256 +203893,44694,Pedro Almodovar,1244661262 +203893,45950,al gore,1241339240 +203893,45950,climate change,1241339242 +203893,45950,earth,1241339247 +203893,45950,ecology,1241339250 +203893,45950,environment,1241339255 +203893,45950,global warming,1241339258 +203893,45950,important,1241339261 +203893,45950,interesting,1241339264 +203893,45950,issue agenda,1241339266 +203893,45950,Must see!,1241339270 +203893,45950,powerpoint,1241339292 +203893,48696,Nudity (Topless - Brief),1169041532 +203893,51084,Drew Barrymore,1272459418 +203893,51084,Hugh Grant,1272459416 +203893,51084,parody,1272459421 +203893,51884,Mira Nair,1241337231 +203893,52975,1960s,1272613658 +203893,52975,Baltimore,1272613684 +203893,52975,based on a play,1272613678 +203893,52975,Broadway,1272613689 +203893,52975,Christopher Walken,1272613668 +203893,52975,civil rights,1272613702 +203893,52975,comedy,1272613705 +203893,52975,dancing,1272613708 +203893,52975,happy,1272613711 +203893,52975,high school,1272613714 +203893,52975,John Travolta,1272613673 +203893,52975,Michelle Pfeiffer,1272613717 +203893,52975,musical,1272613739 +203893,52975,Nikki Blonsky,1272613744 +203893,52975,rock and roll,1272613750 +203893,52975,segregation,1272613753 +203893,56949,chick flick,1303401748 +203893,56949,comedy romance,1303401751 +203893,56949,romance,1303401769 +203893,56949,romantic comedy,1303401762 +203893,57669,belgium,1241525867 +203893,57669,Colin Farrell,1241525864 +203893,57669,dark comedy,1241525861 +203893,57669,drugs,1241525874 +203893,57669,dwarf,1241525876 +203893,57669,hitman,1241525888 +203893,57669,imdb top 250,1241525913 +203893,57669,violent,1241525880 +203893,57669,violently,1241525906 +203893,58047,bad acting,1305219771 +203893,58303,true story,1241337190 +203893,59118,bittersweet,1241337065 +203893,59118,British,1241337069 +203893,59118,drama,1242067163 +203893,59118,feel-good,1241337078 +203893,59118,happy,1241337090 +203893,59118,Mike Leigh,1242067168 +203893,59118,music,1241337099 +203893,59118,no plot,1241337101 +203893,59118,no story,1241337105 +203893,59784,dragon,1368526384 +203893,61323,cheating husband,1240938991 +203893,61323,Coen Bros,1240938930 +203893,61323,John Malkovich,1240938952 +203893,61323,movie to see,1240938939 +203893,61323,satire,1240938969 +203893,61323,stupid criminals,1240938973 +203893,64620,based on a true story,1241942866 +203893,64620,history,1241942878 +203893,64620,Kevin Bacon,1241942883 +203893,64620,politics,1241942888 +203893,64620,president,1241942890 +203893,64620,true story,1241942894 +203893,64957,life lessons,1242066853 +203893,64957,romance,1242066859 +203893,66097,animation,1255856384 +203893,66097,author:Neil Gaiman,1255856413 +203893,66097,based on a book,1255856416 +203893,66097,plot,1255856395 +203893,66097,unsympathetic hero,1255856409 +203893,67408,all the best parts are in the trailer,1241942925 +203893,67408,animation,1241942929 +203893,67408,computer animation,1241942932 +203893,68358,adventure,1259675168 +203893,68358,lack of development,1259675161 +203893,68358,lack of story,1259675148 +203893,68358,murder,1259675182 +203893,68358,series reset,1259675173 +203893,68954,computer animation,1255883409 +203893,68954,feel good movie,1255883417 +203893,68954,predictable,1255883429 +203893,69844,adapted from:book,1261741066 +203893,69844,Alan Rickman,1260993224 +203893,69844,based on a book,1261741069 +203893,69844,disappointing,1260993231 +203893,70286,aliens,1345402393 +203893,70286,atmospheric,1345402397 +203893,70286,heartbreaking,1345402400 +203893,70286,humor,1345402403 +203893,70286,social commentary,1345402405 +203893,70286,unique,1345402408 +203893,70293,Amy Adams,1272780172 +203893,70293,based on a book,1272780113 +203893,70293,biography,1272780116 +203893,70293,boring,1272780166 +203893,70293,cooking,1272780121 +203893,70293,france,1272780182 +203893,70293,Julia Child,1272780189 +203893,70293,lighthearted,1272780153 +203893,70293,Meryl Streep,1272780137 +203893,70293,music score,1272780193 +203893,70293,Stanley Tucci,1272780160 +203893,70567,asperger syndrome,1303311960 +203893,70567,emotional,1303311963 +203893,70567,romance,1303311967 +203893,70567,romantic,1303311970 +203893,71156,absurd,1303678382 +203893,71156,absurdism,1303678387 +203893,72378,audience intelligence underestimated,1268582964 +203893,72378,bad plot,1268582940 +203893,72378,bad science,1272459500 +203893,72378,So bad it's good,1268582976 +203893,72737,New Orleans,1267379284 +203893,72737,Voodoo,1267379272 +203893,73319,boring,1310657696 +203893,74787,Kajol,1306257366 +203893,74787,Shahrukh Khan,1306257370 +203893,78316,funny,1303413775 +203893,78316,happy ending,1303413778 +203893,78316,italy,1303413781 +203893,78316,romantic,1303413786 +203893,79132,action,1306743589 +203893,79132,complicated,1306743613 +203893,79132,drama,1306743719 +203893,79132,ensemble cast,1306743731 +203893,79132,great soundtrack,1306743751 +203893,79132,Leonardo DiCaprio,1306743621 +203893,79132,special effects,1306743760 +203893,81564,funny,1295365791 +203893,81564,heartwarming,1295365794 +203893,81834,based on a book,1305552381 +203893,81834,Helena Bonham Carter,1305552373 +203893,81834,Ralph Fiennes,1305552377 +203893,81845,based on a true story,1320068202 +203893,81845,feel-good,1320068211 +203893,81845,great performances,1320068213 +203893,81845,predictable,1320068218 +203893,81847,3D,1311951772 +203893,81847,adapted from:book,1311951769 +203893,81847,animation,1311951743 +203893,81847,based on a short story,1311951775 +203893,81847,Disney,1311951748 +203893,81847,fairy tale,1311951751 +203893,81847,Flynn,1311951789 +203893,81847,horsey!,1311951791 +203893,81847,motion capture,1311951793 +203893,81847,musical,1311951798 +203893,81847,singing,1311951802 +203893,91094,weak plot,1330596264 +203893,95167,mother-daughter relationships,1345402341 +203893,95167,Scotland,1345402348 +203942,3272,Catholicism,1161737677 +203942,4857,Judaism,1161737643 +203942,26974,Bizarre,1161737833 +203943,68954,Pixar,1249782404 +203952,260,sci-fi,1439084773 +203952,260,space action,1439084766 +203966,27410,disturbing,1202689538 +203974,358,college,1166993365 +203974,358,racism,1166993365 +203974,562,depressing,1175094624 +203974,562,horrible,1175094624 +203974,4993,boring,1175094637 +203974,4993,pretentious,1175094637 +203974,44195,dark comedy,1175094544 +203974,44195,satire,1175094543 +203979,260,sci-fi,1442074164 +203979,260,space action,1442074157 +203986,296,big boys with guns,1423086103 +203986,296,good dialogue,1423086103 +203986,296,violently silly,1423086103 +204001,260,good one but not realistic,1432534198 +204050,356,disability,1429407326 +204050,356,drama,1429407326 +204050,356,family problems,1429407326 +204059,97304,grfgt,1368960275 +204063,3578,Oscar (Best Actor),1285071247 +204063,3578,Oscar (Best Picture),1285071261 +204063,49272,action,1285071306 +204063,49272,James Bond,1285071318 +204063,50872,Disney,1285071279 +204063,68954,Pixar,1285071288 +204067,3275,Nudity (Topless),1289271946 +204069,26974,metal soudtrack,1377634102 +204069,26974,Sleep,1381367886 +204069,26974,stoner rock,1377633879 +204069,46651,Fugazi,1380403217 +204069,46651,well done,1380403252 +204069,89047,metal soundtrack,1377634130 +204069,99811,drummer,1382463009 +204069,99811,drums,1382463010 +204069,106113,desert rock,1383709631 +204069,106113,doom,1383709631 +204069,106113,Hard rock,1383709631 +204069,106113,Kyuss,1383709631 +204069,106113,Metal,1383709631 +204069,106113,music documentary,1383709631 +204097,49272,espionage,1366816921 +204097,74458,psychological,1366817029 +204098,1373,Leonard Nimoy,1186654535 +204121,356,feel-good,1436958472 +204121,356,good acting,1436958472 +204121,356,realistic,1436958472 +204121,1721,atmospheric,1437054725 +204121,26615,funny,1437471703 +204121,27683,Creature feature,1437057788 +204121,74355,Ending open to interpretation,1437426562 +204121,93719,Based on Video Game,1437054598 +204121,103747,Based on Video Game,1437054675 +204121,106559,ridiculous plot,1437427887 +204165,228,Las Vegas,1442725076 +204165,365,Keanu Reeves,1443840879 +204165,365,mysticism,1443840901 +204165,713,Strong Sexual content,1436147712 +204165,829,cockroaches,1444821118 +204165,829,New York,1444821101 +204165,1167,postal workers,1451878547 +204165,1220,car chase,1436144760 +204165,1220,classic,1436144751 +204165,1220,great soundtrack,1436144782 +204165,1348,classical music,1440651814 +204165,1348,silent film,1440651795 +204165,1348,vampires,1440651753 +204165,1382,nudity (topless),1436145723 +204165,1382,Steven Seagal,1436145728 +204165,1382,unintentionally funny,1436145732 +204165,2514,Clancy Brown,1442701441 +204165,2514,Mary Lambert,1442701435 +204165,2675,actor,1443312564 +204165,2675,British,1443312698 +204165,2675,romcom,1443312584 +204165,2675,sappy,1443312627 +204165,3413,cheating wife,1441820579 +204165,3413,revenge,1441820589 +204165,3790,bad music,1443001706 +204165,3891,rap music,1445074006 +204165,4231,chick flick,1441538167 +204165,4231,New York,1441538178 +204165,4231,romcom,1441538157 +204165,4722,doesn't use stereotypical gay characters!,1441842535 +204165,4722,gay,1441842527 +204165,4840,French,1453024315 +204165,4840,Movie industry,1453024341 +204165,4840,WWII,1453024324 +204165,4852,bad acting,1451270629 +204165,4852,comical,1451278101 +204165,4852,predictable,1451270639 +204165,4852,revenge,1451278120 +204165,4852,Snoop Dogg,1451270632 +204165,4852,supernatural,1451278112 +204165,5295,nudity (topless),1436147035 +204165,5316,British,1450746318 +204165,5316,mathematics,1450746307 +204165,5316,World War II,1450746305 +204165,5455,art,1437591418 +204165,6012,romcom,1441362762 +204165,6012,Seattle,1441362863 +204165,6012,selma blair,1441362814 +204165,6012,wedding,1441362793 +204165,6373,Jim Carrey,1444392126 +204165,6373,Steve Carell,1444392129 +204165,6486,Australian,1441455376 +204165,6486,Brothers,1441455397 +204165,6486,confusing,1441455409 +204165,6558,Steve Carell,1444392196 +204165,6588,french,1437590476 +204165,6588,jazz,1437590486 +204165,6588,jewel thief,1437590516 +204165,6588,sailing,1437590499 +204165,6623,gambling,1442173316 +204165,6623,romance,1442173328 +204165,6703,church,1440928216 +204165,6703,demon,1440928200 +204165,6703,priest,1440928192 +204165,7262,California,1443521710 +204165,7262,climbing,1443521743 +204165,7262,plot holes,1443521683 +204165,7380,fairy tale,1442014290 +204165,7380,feel good movie,1442014293 +204165,8024,country music,1443337171 +204165,8024,nashville,1443336557 +204165,8024,River Phoenix last film,1443336590 +204165,8024,Samantha Mathis,1443336564 +204165,8024,Sandra Bullock,1443336566 +204165,8641,Steve Carell,1444392046 +204165,8642,Steve Carell,1444392177 +204165,8721,19th century,1438144088 +204165,8721,Hong Kong,1438144091 +204165,8721,opium,1438144086 +204165,8815,archaeology,1440492284 +204165,8815,demonic possession,1440492302 +204165,8815,period piece,1440492328 +204165,26578,philosophical,1440671749 +204165,27834,boring,1440941888 +204165,27834,Russian,1440938624 +204165,27899,animation,1444849885 +204165,27899,new age crap,1444849998 +204165,32291,Steve Carell,1444392010 +204165,33836,Steve Carell,1444392224 +204165,35836,Judd Apatow,1444391914 +204165,35836,Paul Rudd,1444391910 +204165,35836,Seth Rogen,1444391918 +204165,35836,steve carell,1444391921 +204165,36799,genocide,1441564989 +204165,36799,racism,1441565074 +204165,36799,Rwanda,1441564997 +204165,36804,bookmaking,1436964643 +204165,36804,college,1436964653 +204165,36804,gambling,1436964623 +204165,37663,gangs,1440476486 +204165,37663,ghetto,1440476494 +204165,37663,rap music,1440476507 +204165,39390,bad writing,1441566315 +204165,39390,gospel music,1441566283 +204165,39390,religion,1441566268 +204165,40148,british,1439091939 +204165,40148,crime,1439091951 +204165,40148,guy ritchie,1439091945 +204165,41721,animation,1441053126 +204165,41721,Australian,1441053109 +204165,41721,cancer,1441053301 +204165,41721,tragedy,1441053159 +204165,41721,trainwreck,1441053278 +204165,42718,action,1444852066 +204165,42718,dystopia,1444852077 +204165,42718,free running,1444852072 +204165,42718,French,1444853838 +204165,42718,parkour,1444852061 +204165,43419,Mexico,1443611754 +204165,43419,railroad,1443611767 +204165,43419,revenge,1443611791 +204165,44731,setting:New Orleans,1444723223 +204165,44731,video games,1444723218 +204165,45501,Chicago,1443672613 +204165,45501,romcom,1443672624 +204165,46578,steve carell,1444391777 +204165,46915,assassination,1450692461 +204165,46915,Secret Service,1450692475 +204165,46915,Washington D.C.,1450692488 +204165,47044,drug smugglers,1441573575 +204165,47044,Miami,1441573558 +204165,47044,undercover cops,1441573586 +204165,47465,drugs,1436147510 +204165,47465,Jeff Bridges,1436147530 +204165,47465,Jodelle Ferland,1436147563 +204165,47465,Terry Gilliam,1436147499 +204165,47644,football,1445719436 +204165,47644,Philadelphia,1445719441 +204165,47644,underdog,1445719451 +204165,47940,French,1453151563 +204165,47940,terminal cancer,1453151556 +204165,48596,bad acting,1443165816 +204165,48596,bad directing,1443165835 +204165,48596,bad writing,1443165825 +204165,48698,Catholic Church,1439170226 +204165,48698,child abuse,1439170236 +204165,48698,paedophilia,1439170234 +204165,49286,England,1440937090 +204165,49286,romantic comedy,1440937085 +204165,49286,sappy,1440937107 +204165,51694,british comedy,1443771932 +204165,51694,coming of age,1443778416 +204165,51694,trivia,1443778425 +204165,51709,foreign film,1444936764 +204165,51709,Korea,1444936752 +204165,52867,advertising,1441713568 +204165,52867,disabled villain,1441713591 +204165,52973,Judd Apatow,1444391970 +204165,52973,Paul Rudd,1444391973 +204165,52973,Seth Rogen,1444391967 +204165,52973,Steve Carell,1444391978 +204165,53993,Steve Carell,1444392150 +204165,54270,werewolf,1447578526 +204165,55110,Australia,1451909446 +204165,55110,orphans,1451909456 +204165,55267,Steve Carell,1444391952 +204165,57637,Atlanta,1445210098 +204165,57637,crazy people,1445215426 +204165,58299,Jim Carrey,1444391861 +204165,58299,Steve Carell,1444391841 +204165,60126,Anne Hathaway,1444392063 +204165,60126,Steve Carell,1444392060 +204165,62953,Belgian Resistance,1451361707 +204165,62953,romance,1451361715 +204165,62953,WWII,1451361697 +204165,65193,Emma Roberts,1444978521 +204165,65193,England,1444978564 +204165,65193,lacrosse,1444985563 +204165,65193,romcom,1444978553 +204165,65642,grim,1444868489 +204165,65642,murder,1444868478 +204165,65642,Spanish,1444868470 +204165,65642,time travel,1444868466 +204165,66330,child abuse,1453714352 +204165,66330,incest,1453714368 +204165,66330,Texas,1453714343 +204165,66783,predictable,1453360083 +204165,69466,cover up,1439266891 +204165,69466,mormon,1439266868 +204165,69466,philandering,1439266837 +204165,69712,cancer,1442823730 +204165,69712,donor baby,1442823743 +204165,69712,tear jerker,1442823759 +204165,72554,foreign film,1448227866 +204165,72554,prison riot,1448227878 +204165,72554,Spanish,1448227892 +204165,74355,chick flick,1445222929 +204165,74355,romcom,1445222919 +204165,74488,Ireland,1445205097 +204165,74731,amnesia,1444854300 +204165,74738,farm,1453953389 +204165,74738,Ireland,1453950467 +204165,75425,zombies,1445223613 +204165,76293,Steve Carell,1444392115 +204165,77240,foreign film,1444940413 +204165,77240,Italian,1444940403 +204165,77240,melodrama,1444940382 +204165,77414,bad acting,1442815113 +204165,77414,romance,1442815104 +204165,79091,Steve Carell,1444392032 +204165,80572,documentary,1445209143 +204165,81142,sexual addiction,1444729540 +204165,81142,sleep walking,1444729550 +204165,82931,Spanish,1445208459 +204165,83525,Japanese,1445207399 +204165,86758,hired killers,1441114076 +204165,86758,illegal immigrants,1441110036 +204165,86758,Los Angeles,1441110051 +204165,87234,Coming Of Age,1443344928 +204165,87234,First love,1443344966 +204165,87234,stylistic,1443344963 +204165,87234,Teenagers,1443344937 +204165,87234,Wales,1443344904 +204165,87930,documentary,1445203852 +204165,87930,journalism,1445203872 +204165,87930,technology,1445203901 +204165,88163,Steve Carell,1444391799 +204165,89373,New York,1445216270 +204165,89373,romcom,1445216058 +204165,89373,wedding,1445217948 +204165,89472,Catholic Church,1451922281 +204165,89472,foreign,1451947853 +204165,89472,Italian,1451947836 +204165,89862,cricket eating,1452745314 +204165,89862,dreamlike,1452731274 +204165,90057,apocalyptic,1446438183 +204165,90057,mental illness,1446376279 +204165,90057,Ohio,1446376301 +204165,90071,amnesia,1436144816 +204165,90071,Classic Rock,1436144842 +204165,90071,Grateful Dead,1436144867 +204165,90474,child abuse,1453960811 +204165,90474,French,1453960803 +204165,91660,alien invasion,1453714732 +204165,91660,aliens,1453714713 +204165,91660,Moscow,1453714716 +204165,93164,dark humor,1453249321 +204165,93164,depression,1453252923 +204165,93164,mental illness,1453252912 +204165,93164,Spanish,1453244607 +204165,93479,france,1443861127 +204165,93479,French shame,1443861193 +204165,93479,Holocaust,1443861161 +204165,93479,Melanie Laurent,1443861152 +204165,93479,world war ii,1443861131 +204165,93939,French,1451920293 +204165,93939,romance,1451920303 +204165,93946,Los Angeles,1452063263 +204165,93946,romcom,1452063272 +204165,93946,single mom,1452063285 +204165,94401,domestic terrorism,1441253852 +204165,94401,justified arrests,1441253892 +204165,94401,radical criminals,1441253878 +204165,94401,terrorists,1441253839 +204165,95309,Steve Carell,1444391895 +204165,95488,beatniks,1438529711 +204165,95488,poets,1438529730 +204165,95488,writers,1438529721 +204165,95611,detroit,1440668973 +204165,95611,muslims,1440668981 +204165,95611,religion,1440669004 +204165,95926,domestic abuse,1441838619 +204165,95926,foreign,1441838592 +204165,95926,Norway,1441838603 +204165,96160,Australia,1444758999 +204165,96160,prison,1444763004 +204165,96160,sappy,1444759032 +204165,96373,diabetes,1438159140 +204165,96373,London,1438159115 +204165,96373,mental illness,1438159166 +204165,96373,teen pregnancy,1438159129 +204165,96821,based on a book,1445295220 +204165,96821,character development,1445295225 +204165,96821,Pennsylvania,1445295200 +204165,96821,Suicide,1445295209 +204165,96863,confusing,1444012605 +204165,96863,Florida,1443965515 +204165,97860,gambling,1442605125 +204165,97860,heist,1442605141 +204165,97860,New Orleans,1442605069 +204165,97860,organized crime,1442605106 +204165,98107,infidelity,1441552779 +204165,98107,nudity (topless),1441552790 +204165,98107,small cast,1441552745 +204165,99047,incest,1447651250 +204165,99047,kidnapping,1447651267 +204165,99047,serial killer,1447651245 +204165,100159,British,1453882162 +204165,100159,dark humor,1453882178 +204165,100159,serial killer,1453888625 +204165,100556,documentary,1444395577 +204165,100556,genocide,1444395669 +204165,100556,Indonesia,1444395574 +204165,101281,British,1446948699 +204165,101281,romcom,1446948720 +204165,101281,wedding,1446948713 +204165,101283,jim carrey,1444392094 +204165,101283,Steve Carell,1444392096 +204165,101761,British,1438474084 +204165,101761,crime,1438474023 +204165,101761,police corruption,1438474031 +204165,101761,torrential downpour,1438474006 +204165,102005,Japanese,1443938810 +204165,102005,Tokyo,1443939007 +204165,102064,baseball,1442108915 +204165,102064,kids,1442108940 +204165,102064,rehab,1442108923 +204165,102993,Steve Carell,1444391819 +204165,103027,Shakespeare,1451371860 +204165,103085,religion,1443347984 +204165,103085,virgin,1443350749 +204165,103137,celebrity burglaries,1452742159 +204165,103137,Los Angeles,1452742183 +204165,103137,stupid kids,1452742144 +204165,103255,anti-american,1445363745 +204165,103255,documentary,1445360362 +204165,103255,liberal propaganda,1445363462 +204165,103255,pro-terrorism,1445363733 +204165,103335,Steve Carell,1444391884 +204165,103729,boring,1437359060 +204165,103729,too long!,1437359060 +204165,103729,unwatchable,1437359060 +204165,103801,Anna Kendrick,1443241056 +204165,103801,beer,1443241081 +204165,103801,Chicago,1443245196 +204165,103801,improvised,1443245174 +204165,103801,no script,1443245185 +204165,103801,Olivia Wilde,1443241060 +204165,103867,Portugal,1445812749 +204165,104137,solitude,1444618776 +204165,104137,Texas,1444619541 +204165,104137,wilderness,1444618761 +204165,104137,wildfires,1444619533 +204165,104361,Crime,1438470088 +204165,104361,prison escape,1438470044 +204165,104361,Texas,1438470070 +204165,104762,Austin,1441556950 +204165,104762,improper relationship,1441554706 +204165,104762,teacher/student affair,1441554743 +204165,104762,underage sex,1441554668 +204165,105037,lifeguard,1438537884 +204165,105037,sexual awakening,1438537912 +204165,105037,virginity,1438537861 +204165,105357,bad acting,1439585283 +204165,105357,dating service,1439585303 +204165,105357,therapist,1439585340 +204165,106002,bullying,1440744579 +204165,106002,CGI,1440744528 +204165,106002,child warrior,1440744546 +204165,106002,children acting like adults,1440744590 +204165,106002,genocide,1440744616 +204165,106002,military,1440744598 +204165,106002,sci-fi,1440744570 +204165,106002,space,1440744574 +204165,106072,comic book,1444383067 +204165,106072,fantasy,1444383078 +204165,106072,marvel,1444383062 +204165,106072,superhero,1444383074 +204165,106200,Hurricane Katrina,1442122800 +204165,106200,natural disaster,1442122849 +204165,106200,New Orleans,1442122786 +204165,106200,tragedy,1442122861 +204165,106330,Las Vegas,1452672814 +204165,106330,old age,1452672844 +204165,106330,Oscar winners,1452672828 +204165,106452,1.33:1 aspect ratio,1441629660 +204165,106452,foreign,1441647432 +204165,106452,Polish movie,1441629328 +204165,106452,religion,1441629309 +204165,106785,drug lord,1443048692 +204165,106785,methamphetamine,1443048681 +204165,106785,New Orleans,1443048666 +204165,106918,daydream,1437644470 +204165,106918,Greenland,1437644455 +204165,106918,himalayas,1437649277 +204165,106918,Iceland,1437647657 +204165,106918,Life magazine,1437644485 +204165,106918,snow leopard,1437649261 +204165,106918,volcano,1437647695 +204165,106918,wallet,1437649244 +204165,107004,boring,1453240405 +204165,107004,Ensemble,1453237235 +204165,107302,Amsterdam,1453526258 +204165,107302,infidelity,1453526272 +204165,107348,Steve Carell,1444392078 +204165,107771,Art,1441707022 +204165,107771,music,1441707029 +204165,107771,vampires,1441707016 +204165,108488,Canada,1441548422 +204165,108488,French,1441548431 +204165,108488,wilderness,1441548449 +204165,108797,incest,1443267865 +204165,108997,dialog,1447624063 +204165,108997,New York,1447624026 +204165,108997,unlikable characters,1447624051 +204165,109072,action,1451373230 +204165,109072,Atlanta,1451373258 +204165,109072,bad acting,1451373199 +204165,109072,bad writing,1451373201 +204165,109072,car chase,1451373210 +204165,109072,dea,1451373195 +204165,109191,boring,1441533488 +204165,109191,British accents,1441533475 +204165,109191,New York City,1441533463 +204165,109295,corrupt cop,1453023405 +204165,109295,russian hitman,1453023414 +204165,109295,single mom,1453023391 +204165,109487,artsy,1440758545 +204165,109487,boring,1440758480 +204165,109487,far too long,1440758491 +204165,109895,Los Angeles,1446950527 +204165,109895,revenge,1446996180 +204165,109895,spelling bee,1446950498 +204165,110086,cemetery,1437907375 +204165,110086,Danielle Harris,1437907390 +204165,110086,mass murder,1437907414 +204165,110086,nudity (topless),1437907308 +204165,110586,black comedy,1448933234 +204165,110586,Ireland,1448933227 +204165,110586,Irish,1448933211 +204165,110586,priesthood,1448933224 +204165,110771,New York,1446364722 +204165,110771,revenge,1446364756 +204165,110771,romcom,1446364730 +204165,111320,christian,1436146909 +204165,111320,unbearable,1436146928 +204165,111320,white people,1436146914 +204165,111375,Los Angeles,1444379055 +204165,111375,news anchor,1444379033 +204165,111570,haunted house,1444851129 +204165,111570,Los Angeles,1444851219 +204165,111570,tedious,1444851679 +204165,111592,film making,1444757469 +204165,111592,movie business,1444757441 +204165,111592,zombies,1444757439 +204165,111642,downfall,1451896077 +204165,111642,overdose,1451896060 +204165,111680,college,1442999662 +204165,111680,parent child relationships,1442999763 +204165,111680,romance,1442999702 +204165,111811,Florida,1444773067 +204165,111811,paraplegic,1444773026 +204165,111811,pregnancy,1444773080 +204165,112421,black comedy,1445365966 +204165,112421,British,1445364765 +204165,112421,nonsense,1445365955 +204165,112436,artist,1440323787 +204165,112436,brooklyn,1440323759 +204165,112436,defloration,1440323770 +204165,112515,Australia,1445303953 +204165,112515,psychological,1445303967 +204165,112515,supernatural,1445303973 +204165,112868,aliens,1451125541 +204165,112868,poor writing,1451125581 +204165,112868,twist ending,1451125544 +204165,112895,bigfoot,1442115349 +204165,112895,found footage,1442115364 +204165,113062,boring,1445836582 +204165,113062,juvenile delinquents,1445836468 +204165,113062,slow,1445836579 +204165,113062,Texas,1445817412 +204165,113394,amnesia,1444395089 +204165,113394,romcom,1444392369 +204165,113394,twins,1444392350 +204165,113394,Zoe Kazan,1444392337 +204165,113521,romcom,1444831662 +204165,113521,talking penis,1444831651 +204165,113705,Belgian,1447024870 +204165,113705,greed,1447025375 +204165,113705,unions,1447024885 +204165,113751,coming of age,1441098595 +204165,113751,labrador duck,1441098563 +204165,113751,rare bird,1441098556 +204165,113751,unlikeable lead character,1441098928 +204165,113849,assassin,1440663400 +204165,113849,Bangkok,1440663346 +204165,113849,coma,1440663355 +204165,113849,subtitled,1440663460 +204165,113862,military experiment,1453108999 +204165,113862,psychopathic killer,1453109024 +204165,114007,Amnesia,1443873306 +204165,114007,british,1443873311 +204165,114007,formulaic,1443873326 +204165,114007,Psychological Thriller,1443873340 +204165,114046,cover up,1447022364 +204165,114046,funeral,1447022329 +204165,114046,narration,1447022371 +204165,114046,Yonkers,1447022320 +204165,114060,brooklyn,1440237480 +204165,114060,chechen mob,1440237464 +204165,114060,crime,1440237483 +204165,114060,pit bull,1440237453 +204165,114060,thriller,1440237486 +204165,114180,amnesia,1440242750 +204165,114180,based on a book,1440242759 +204165,114180,boring,1440242771 +204165,114246,Brooklyn,1443958486 +204165,114246,detective,1443958498 +204165,114246,noir thriller,1443958494 +204165,114246,serial killer,1443958491 +204165,114392,bleak,1443951418 +204165,114392,insanity,1443951450 +204165,114392,New Mexico,1443941317 +204165,114392,Pioneers,1443941358 +204165,114662,boring,1445817590 +204165,114662,Iraq,1445817637 +204165,114662,muddled,1445817679 +204165,114662,sniper,1445817631 +204165,114678,British,1452577208 +204165,114678,psychiatry,1452577250 +204165,114795,battles,1453949302 +204165,114795,dracula,1453949295 +204165,114795,filmed in Ireland,1453931355 +204165,114795,vampires,1453949291 +204165,114795,war,1453949305 +204165,114852,art film,1449543775 +204165,114852,death,1449543745 +204165,114852,split screen,1449543764 +204165,115147,New Orleans,1453264029 +204165,115147,romance,1453264041 +204165,115147,romantic,1453264050 +204165,115220,European conflict,1437200212 +204165,115220,Hitchcock,1437200157 +204165,115220,Hollywood,1437200171 +204165,115220,Monaco,1437200143 +204165,115220,Royalty,1437200182 +204165,115231,Brooklyn,1442635634 +204165,115231,curmudgeon,1442635692 +204165,115231,Melissa McCarthy,1442635651 +204165,115242,Alexa PenaVega,1444837309 +204165,115242,Halloween,1444837290 +204165,115242,haunted mine,1444837321 +204165,115381,disney,1444383851 +204165,115381,family film,1444383867 +204165,115381,Steve Carell,1444386008 +204165,115574,1960s,1450943656 +204165,115574,Cormac McCarthy,1450943668 +204165,115574,necrophilia,1450950401 +204165,115574,serial killer,1450950415 +204165,115574,Tennessee,1450943649 +204165,115680,future,1450866212 +204165,115680,thriller,1450866215 +204165,115680,unique story,1450866209 +204165,116138,corruption,1442049529 +204165,116138,foreign,1442049510 +204165,116138,russian,1442049525 +204165,116279,guitar player,1438205551 +204165,116279,jazz,1438205561 +204165,116279,mental illness,1438205612 +204165,116397,British,1452575143 +204165,116397,Edgar Allan Poe,1452506321 +204165,116397,filmed in Bulgaria,1452506491 +204165,116397,mental illness,1452506317 +204165,116397,PTSD,1452575132 +204165,116503,demonic possession,1442556178 +204165,116503,found footage,1442556164 +204165,116503,Los Angeles,1442556214 +204165,116799,based on a book,1447034432 +204165,116799,Los Angeles,1447035277 +204165,116799,Paul Thomas Anderson,1447034436 +204165,117107,dark comedy,1436940105 +204165,117107,pedophile,1436940071 +204165,117107,Vigilante,1436940064 +204165,117146,journalism,1446890521 +204165,117146,missing person,1446890509 +204165,117146,Seattle,1446890487 +204165,117456,african-american,1450258549 +204165,117456,British,1450258524 +204165,117456,music,1450258539 +204165,117456,romance,1450258569 +204165,117572,Los Angeles,1452683193 +204165,117572,murder plot,1452683226 +204165,117572,online dating,1452683217 +204165,117594,Alex Craig Mann,1436148415 +204165,118350,bank robbery,1444043113 +204165,118350,dark comedy,1444043123 +204165,118350,Los Angeles,1444043090 +204165,118354,corruption,1442494201 +204165,118354,government cover-up,1442494231 +204165,118354,journalism,1442494160 +204165,118700,civil rights,1443087112 +204165,118700,historically inaccurate,1443087131 +204165,118700,too long,1443087141 +204165,118880,black and white,1449984882 +204165,118880,filmed in California,1449985384 +204165,118880,Middle East,1449984890 +204165,118880,vampires,1449984877 +204165,118898,1980s,1440720185 +204165,118898,immigrants,1440720148 +204165,118898,New York City,1440720116 +204165,118898,violent,1440720131 +204165,118900,boring,1441630658 +204165,118900,drugs,1441627908 +204165,118900,hiking,1441627898 +204165,118900,nature,1441627924 +204165,119141,crude,1448935308 +204165,119141,North Korea,1448935294 +204165,119145,action,1451901920 +204165,119145,action scenes,1451901912 +204165,119145,british,1451901887 +204165,119145,british comedy,1451901905 +204165,119145,comic violence,1451901949 +204165,119145,fighting choreografy,1451901946 +204165,119145,gentlemanly,1451901928 +204165,119145,spy,1451901961 +204165,119145,spy gadgets,1451901958 +204165,119145,spy thriller,1451901896 +204165,119145,violent,1451901924 +204165,119635,florida everglades,1439898803 +204165,119635,refugee camp,1439898816 +204165,119635,seminole indian,1439898833 +204165,120270,james younger gang,1451888526 +204165,120270,Pinkertons,1451888535 +204165,120400,based on a true story,1451205287 +204165,120400,drug trade,1451205296 +204165,120400,Florida,1451205304 +204165,120635,action,1451264654 +204165,120635,Los Angeles,1451264675 +204165,120635,threequel,1451264666 +204165,121182,dysfunctional family,1442204506 +204165,121182,family holiday,1442204461 +204165,121182,New York,1442204435 +204165,121207,new orleans,1440841579 +204165,121207,religion,1440841555 +204165,121207,violence,1440841593 +204165,121217,illiterate,1444819883 +204165,121231,Detroit,1453161885 +204165,121231,Psychological,1453161940 +204165,121231,sex,1453162029 +204165,121231,Supernatural,1453161938 +204165,121231,teen,1453162023 +204165,121231,teenagers,1453161926 +204165,121485,Brazil,1453158492 +204165,121485,lesbians,1453158397 +204165,121485,true story,1453158388 +204165,122031,Czech Republic,1442974632 +204165,122031,hospital,1442809087 +204165,122031,murders,1442809099 +204165,122932,New Orleans,1453242639 +204165,122932,romcom,1453244036 +204165,122932,senior citizens,1453242604 +204165,123453,bullying,1453346552 +204165,123453,compassion,1453346577 +204165,123453,social media,1453346588 +204165,123467,circumscision,1440646244 +204165,123467,judaism,1440646282 +204165,123467,satire,1440646279 +204165,124859,addiction,1446291658 +204165,124859,Las Vegas,1446291648 +204165,124859,Los Angeles,1446291635 +204165,124901,Found Footage,1451989986 +204165,124901,Ghosts,1451974045 +204165,124901,Haunting,1451974057 +204165,124901,Texas,1451974053 +204165,125497,really bad,1444379467 +204165,125914,British,1453846634 +204165,125914,silly,1453881502 +204165,126393,romance,1441962275 +204165,126393,small town,1441962313 +204165,126393,werewolves,1441962259 +204165,126777,ex-cons,1441254759 +204165,126777,French,1441274507 +204165,126777,lesbians,1441254687 +204165,126777,parole,1441254706 +204165,127110,body parts,1448452937 +204165,127110,Los Angeles,1448452916 +204165,127110,mystery,1448455227 +204165,127130,college,1453235357 +204165,127130,New York,1453171922 +204165,127565,Detroit,1448439147 +204165,127565,surreal,1448445587 +204165,127565,urban blight,1448444060 +204165,127833,ensemble,1451548337 +204165,127833,Los Angeles,1451548346 +204165,128488,Las Vegas,1445073479 +204165,128488,mobsters,1445073493 +204165,128520,bromance,1440837882 +204165,128520,buddy movie,1440837895 +204165,128520,loner,1440837849 +204165,128632,extortion,1441706680 +204165,128632,nudity (topless),1441706687 +204165,128632,office affair,1441706684 +204165,129737,Europe,1451248448 +204165,129737,filmed in Boston,1451205807 +204165,129737,raunchy humor,1451248397 +204165,129937,New York,1449041358 +204165,129937,revenge,1449041375 +204165,130496,Finland,1453521438 +204165,130496,implausible,1453521450 +204165,130496,terrorists,1453521426 +204165,130584,biopic,1449542800 +204165,130584,C. K. Williams,1449542771 +204165,130584,Detroit,1449542620 +204165,130584,poetry,1449542586 +204165,130636,Facebook,1453201938 +204165,130636,revenge,1453201953 +204165,130636,suicide,1453201947 +204165,131262,Vampire,1436145769 +204165,131262,Virgin blood,1436146067 +204165,131478,British,1452316942 +204165,131478,England,1452316933 +204165,131478,Family,1452316731 +204165,131478,Ghosts,1452316726 +204165,131478,Haunted House,1452316723 +204165,131478,predictable,1452322078 +204165,131478,routine,1452322065 +204165,131570,aging actor,1451105218 +204165,131570,lesbian,1451105238 +204165,131570,old young romance,1451105257 +204165,131842,Canadian,1446981186 +204165,131842,Montana,1446981216 +204165,131842,postal police,1446981200 +204165,132056,art forgery,1447384280 +204165,132056,Boston,1447384268 +204165,132482,Gambling,1442980178 +204165,132482,Las Vegas,1442980166 +204165,132488,fantasy,1440657470 +204165,132488,psychoses,1440657401 +204165,132488,romance,1440657422 +204165,132575,based on a true story,1447578490 +204165,132575,horse racing,1447578460 +204165,132575,Kentucky Derby,1447578475 +204165,133233,Ireland,1453529213 +204165,133233,stroke victim,1453529205 +204165,133545,closet homosexual,1447907210 +204165,133545,suicide,1447907195 +204165,133747,Crap,1449540887 +204165,133782,post apocalyptic,1452586412 +204165,133782,zombies,1452586374 +204165,134021,New York City,1453865131 +204165,134021,open marriage,1453865251 +204165,134021,romcom,1453865097 +204165,134664,dubstep,1452504912 +204165,134664,Los Angeles,1452325159 +204165,134664,mental illness,1452325150 +204165,134664,terrible soundtrack,1452504899 +204165,136730,burglars,1442199510 +204165,136730,California,1442199540 +204165,136730,security,1442199567 +204165,137014,estranged sisters,1444208620 +204165,137014,mental illness,1444195805 +204165,137014,TV movie,1444208629 +204165,137060,date drugs,1442951586 +204165,137060,murder,1442951595 +204165,137060,rape,1442951573 +204165,137072,bad acting,1442642684 +204165,137072,bad writing,1442642675 +204165,137072,psychopathic maniac,1442642666 +204165,137228,hurricane Sandy,1443313287 +204165,137228,lost child,1443335352 +204165,137228,New York,1443313330 +204165,137228,subway,1443313319 +204165,137325,French,1444012636 +204165,137325,prostitution,1444012647 +204165,137463,family flim,1444847864 +204165,137463,romcom,1444847845 +204165,137670,Austin,1446699669 +204165,137670,Brooklyn,1446699660 +204165,137670,gun rights,1446699637 +204165,137765,elderly,1440938273 +204165,137765,jewish,1440938279 +204165,137765,romcom,1440938262 +204165,137900,satire,1448698401 +204165,137900,slapstick,1448698416 +204165,137992,amnesia,1444766508 +204165,138016,teen pregnancy,1445281874 +204165,138016,TV movie,1445281844 +204165,138016,underage sex,1445281858 +204165,138204,irreverent,1436750467 +204165,138204,mockumentary,1436750467 +204165,138204,tennis,1436750467 +204165,138268,patricide,1436758080 +204165,138532,bad acting,1443763036 +204165,138532,bad writing,1443651134 +204165,138532,ghost,1443651052 +204165,138532,haunted house,1443651062 +204165,138760,botched robbery,1438829930 +204165,138760,British,1438829891 +204165,138760,brothers,1438829900 +204165,138760,counterfeit,1438829952 +204165,139455,demonic possession,1448168752 +204165,139455,exorcism,1448168736 +204165,139539,Los Angeles,1444828529 +204165,139539,New York,1444828539 +204165,139539,romcom,1444828487 +204165,139665,brainwashing,1442746233 +204165,139665,con artists,1442746242 +204165,139665,cult,1442746221 +204165,139711,organized crime,1437822111 +204165,140222,murder,1440920155 +204165,140222,teen sleuth,1440920184 +204165,140850,based on book,1450249779 +204165,140850,kidnapping,1450249790 +204165,140850,poor adaptation,1450249769 +204165,141112,false accusations,1440588600 +204165,141112,obsession,1440588620 +204165,141112,Wicka,1440588587 +204165,141658,Jewish gangsters,1441832124 +204165,141658,Los Angeles,1441832140 +204165,141658,Tel Aviv,1441832149 +204165,141741,animation,1441905783 +204165,141741,gunfighters,1441898878 +204165,141741,old west,1441898895 +204165,141741,third person narration,1441898920 +204165,141761,extraterrestrial life,1442009809 +204165,141761,Found Footage,1442006417 +204165,141761,handycam,1442006411 +204165,142108,Argentina,1442191403 +204165,142108,gauchos,1442191378 +204165,142108,revenge,1442192375 +204165,142108,spanish,1442191437 +204165,142108,sub-titled,1442191417 +204165,142174,amnesia,1442212396 +204165,142174,evil husband,1442212407 +204165,142174,private detective,1442212443 +204165,142422,Christmas Eve,1449223000 +204165,142422,feel good flick,1449223030 +204165,142422,New York,1449223011 +204165,142498,Canadian film,1442733761 +204165,142498,cop killer,1442733716 +204165,142498,kidnapping,1442733726 +204165,142797,bullying,1453259709 +204165,142797,Louisiana,1453258726 +204165,142893,father son relationship,1443165203 +204165,142893,kidnapping,1443165185 +204165,142985,bipolar,1443159175 +204165,142985,drug addiction,1443159185 +204165,142985,missing person,1443159164 +204165,143430,based on true story,1444380065 +204165,143430,courtroom drama,1444380093 +204165,143430,TV Movie,1444380056 +204165,144168,binge drinking,1445136642 +204165,144168,college freshmen,1445136668 +204165,144168,Tv Movie,1445136653 +204165,144170,kidnapping,1453332558 +204165,144170,mexican criminals,1453332585 +204165,144170,San Diego,1453332567 +204165,145735,obsession,1451361337 +204165,145735,student crush,1451361350 +204165,145737,California,1453183835 +204165,145737,witness protection,1453183823 +204165,147783,Full Screen,1448695258 +204165,147783,TV Movie,1448695248 +204165,149072,football,1452665387 +204165,149072,Los Angeles,1452665398 +204165,149072,racist film,1452665368 +204173,260,sci-fi,1432989627 +204173,260,space,1432989634 +204173,260,space travel,1432989641 +204192,260,adventure,1272053745 +204192,260,classic,1272053768 +204192,260,sci-fi,1272053761 +204192,543,multiple roles,1272053537 +204192,899,classic,1272053823 +204192,899,musical,1272053827 +204192,2335,American football,1291977466 +204192,2335,Jerry Reed,1291977459 +204192,3188,baseball,1272104439 +204192,3188,Biography,1272104443 +204192,4322,baseball,1272104474 +204192,4322,John Sayles,1272104476 +204192,4623,baseball,1272104512 +204192,4623,Cleveland,1272104516 +204192,5634,romantic comedy,1272133912 +204192,26142,Charlton Heston,1272359836 +204192,36708,animated,1272054625 +204192,36708,based on TV series,1272054615 +204192,36708,Comedy,1272054630 +204192,45517,Pixar,1272101395 +204192,45722,Johnny Depp,1272102582 +204192,68954,Pixar,1272101241 +204193,3421,FOOD FIGHT!!!!; HOLY S---!,1239422644 +204193,3524,FOR A MOMENT,1239422906 +204193,3524,LETS FORGET ABOUT THE MOOSE,1239422906 +204272,2959,dark comedy,1305248597 +204272,2959,Edward Norton,1305248606 +204272,2959,social commentary,1305248626 +204277,3868,Funny as hell,1300597605 +204277,3868,parody,1300597618 +204277,3868,slapstick,1300597614 +204277,8376,camp,1300597138 +204277,8376,off-beat comedy,1300597133 +204292,5335,Nudity (Full Frontal),1174173357 +204327,1393,self,1448057442 +204327,26680,50's,1446857620 +204327,26680,Johnny Depp,1446857627 +204327,26680,rock and roll,1446857637 +204327,71520,English,1448057604 +204327,71520,English humour,1448057602 +204327,71520,witty,1448057206 +204327,91500,dystopia,1448059929 +204327,106487,dystopia,1448060000 +204327,116823,dystopia,1448060035 +204332,260,classic sci-fi,1441219776 +204332,260,George Lucas,1441219784 +204332,1291,Harrison Ford,1441226637 +204332,1291,Holy Grail,1441226645 +204332,1291,Steven Spielberg,1441226653 +204332,3033,comedy,1441226826 +204332,3033,Mel Brooks,1441226821 +204344,93510,Dave Franco,1451795473 +204344,93510,funny,1451795459 +204344,103723,Disappointing,1451795391 +204345,109487,Christopher Nolan,1426640425 +204358,53125,Johnny Depp,1451314496 +204358,59784,animation,1451314528 +204379,17,chick flick,1275354183 +204379,17,Jane Austen,1275354180 +204379,17,Period,1275354186 +204379,17,romantic,1275354192 +204379,2671,chick flick,1275354149 +204379,2671,Good Romantic Comedies,1275354145 +204379,2671,Hugh Grant,1275354147 +204379,2671,Julia Roberts,1275354142 +204379,2671,romance,1275354155 +204379,4246,chick flick,1275354171 +204379,4246,Hugh Grant,1275354162 +204379,4246,Jane Austen,1275354169 +204379,4246,romance,1275354163 +204379,4246,romantic comedy,1275354167 +204415,3847,nazis,1138603660 +204415,6566,games,1138603663 +204421,260,lasers,1443021034 +204421,260,swords,1443021022 +204430,260,action,1443673794 +204430,260,funny,1443673792 +204430,260,sci-fi,1443673797 +204438,318,beautiful,1426638820 +204438,318,dramatic,1426638820 +204438,318,uplifting,1426638820 +204438,356,inspiring,1427854028 +204438,356,smart,1427854028 +204438,356,uplifting,1427854028 +204444,104,One of the best Sandler movies.,1447345107 +204444,370,Doesn't age well.,1447345144 +204460,260,drama,1434296836 +204460,260,entertaining,1434296846 +204467,7361,surreal,1296943039 +204467,81847,animation,1296942980 +204479,1284,bogart,1137722594 +204479,1284,mystery,1137722594 +204479,1284,noir,1137722594 +204479,6273,bogart,1137722659 +204479,6273,noir,1137722659 +204480,8039,family,1297649387 +204480,8039,funny,1297649382 +204480,8039,western,1297649395 +204480,55276,disillusionment,1206545577 +204480,55276,Drama,1206545604 +204480,55276,hack the system,1206545585 +204480,55276,legal system,1206545528 +204480,55276,waking up,1206545615 +204480,56367,clever dialog,1206545725 +204480,56367,foul language,1206545696 +204480,56367,must see!,1206545688 +204480,66171,action,1364096106 +204480,66171,fun,1364096098 +204480,66171,sci-fi,1364096094 +204480,66171,to be continued,1364096120 +204483,48738,possibly scarring,1171732374 +204485,923,Tag,1359214596 +204485,1147,Tag,1359215027 +204485,1207,Tag,1359215001 +204509,318,integrity,1433816318 +204509,318,justice,1433816318 +204509,318,morality,1433816318 +204511,6,atmospheric,1316669137 +204511,6,philosophy,1316669142 +204511,6,slow paced,1316669154 +204511,6,tense,1316669148 +204511,32,adventure,1288388135 +204511,32,Bruce Willis,1288388127 +204511,32,drama,1288388143 +204511,32,future,1288388151 +204511,32,post-apocalyptic,1288388147 +204511,32,Terry Gilliam,1288388161 +204511,70,George Clooney,1248476052 +204511,70,Harvey Keitel,1248476067 +204511,70,twist ending,1248476111 +204511,288,hallucinatory,1248385095 +204511,288,Robert Downey Jr,1248385104 +204511,288,Robert Downey Jr.,1248385135 +204511,293,Action,1284680038 +204511,293,assassination,1284680024 +204511,293,Gary Oldman,1284680027 +204511,293,great acting,1284680029 +204511,293,hitman,1284680035 +204511,293,Jean Reno,1284680018 +204511,293,Luc Besson,1284680021 +204511,293,Natalie Portman,1284680035 +204511,296,action,1248383574 +204511,296,assassin,1248383548 +204511,296,Bruce Willis,1248383553 +204511,296,drugs,1248383560 +204511,329,Patrick Stewart,1248383100 +204511,329,Sci-Fi,1248383102 +204511,329,space,1248383104 +204511,471,Coen Brothers,1303593059 +204511,471,fish out of water,1303593087 +204511,471,satirical,1303593071 +204511,471,whimsical,1303593103 +204511,471,witty,1303593098 +204511,480,adventure,1248385558 +204511,480,dinosaurs,1287944472 +204511,480,genetics,1287944480 +204511,480,Oscar (Best Effects - Visual Effects),1287944483 +204511,480,sci-fi,1248385582 +204511,648,confusing,1319304402 +204511,648,espionage,1319304426 +204511,648,heist,1319304406 +204511,648,plot twists,1319304419 +204511,733,Action,1333576918 +204511,733,great soundtrack,1333576928 +204511,733,Sean Connery,1333576937 +204511,784,Jack Black,1248385197 +204511,904,Grace Kelly,1333743114 +204511,904,James Stewart,1333743107 +204511,904,murder,1333743104 +204511,904,photography,1333743101 +204511,904,suspense,1333743092 +204511,904,tense,1333743090 +204511,904,visually appealing,1333743098 +204511,904,voyeurism,1333743095 +204511,1047,amnesia,1312239967 +204511,1047,dated CG,1312239937 +204511,1148,Clay Animation,1248382264 +204511,1148,claymation,1248382261 +204511,1148,robots,1248382255 +204511,1148,stop motion,1248382271 +204511,1196,action,1248383053 +204511,1196,adventure,1248383050 +204511,1196,robots,1248383038 +204511,1196,sci-fi,1248383027 +204511,1196,space,1248383029 +204511,1196,war,1248383033 +204511,1200,action,1279719253 +204511,1200,androids,1279719225 +204511,1200,atmospheric,1279719243 +204511,1200,sci-fi,1279719265 +204511,1200,Sigourney Weaver,1279719246 +204511,1200,suspense,1279719232 +204511,1200,tense,1279719235 +204511,1200,violent,1279719238 +204511,1214,androids,1279349794 +204511,1214,atmospheric,1279349787 +204511,1214,classic,1279349789 +204511,1214,futuristic,1279349796 +204511,1214,Ridley Scott,1279349768 +204511,1214,sci-fi,1279349801 +204511,1214,Sigourney Weaver,1279349782 +204511,1214,space,1279349802 +204511,1214,space travel,1279349804 +204511,1214,visceral,1279349806 +204511,1320,70mm,1280000639 +204511,1320,Anamorphic Blow-Up,1280000682 +204511,1320,prison,1280000669 +204511,1320,scope,1280000674 +204511,1320,sequel,1280000661 +204511,1320,Sigourney Weaver,1280000665 +204511,1376,environmental,1248383161 +204511,1376,Leonard Nimoy,1248383226 +204511,1376,whales,1248383179 +204511,1584,S.E.T.I.,1316034201 +204511,1588,Based on a TV show,1307564316 +204511,1726,Kevin Costner,1276871825 +204511,1726,Nudity (Topless),1276871828 +204511,1726,Post apocalyptic,1276871833 +204511,1726,post-apocalyptic,1276871830 +204511,1732,Peter Stormare,1315351544 +204511,1911,Animals Talking,1248385180 +204511,1911,Eddie Murphy,1248385182 +204511,1911,Family Comedy,1248385185 +204511,1954,boxing,1248384521 +204511,1954,competitive sport,1248384528 +204511,1954,sport:boxing,1248384565 +204511,1954,sports,1248384565 +204511,1954,Sylvester Stallone,1248384539 +204511,2028,Sniper,1278047389 +204511,2028,Vin Diesel,1278047371 +204511,2194,Kevin Costner,1250525876 +204511,2194,Sean Connery,1250525872 +204511,2195,comedy,1367862709 +204511,2297,afterlife,1248381908 +204511,2297,alternate reality,1248381905 +204511,2297,heaven and hell,1248381916 +204511,2297,imaginative,1248381920 +204511,2297,philosophy,1248381926 +204511,2297,Robin Williams,1248381930 +204511,2297,surreal,1248381934 +204511,2409,balboa,1248384584 +204511,2409,boxing,1248384587 +204511,2409,competitive sport,1248384588 +204511,2409,ego,1248384593 +204511,2409,silvester stalone,1248384602 +204511,2409,sport:boxing,1248384608 +204511,2409,Stallone,1248384614 +204511,2409,Sylvester Stallone,1248384612 +204511,2410,boxing,1248384649 +204511,2410,competitive sport,1248384632 +204511,2410,sport:boxing,1248384638 +204511,2410,sports,1248384641 +204511,2410,Sylvester Stallone,1248384645 +204511,2411,boxing,1248384656 +204511,2411,competitive sport,1248384659 +204511,2411,nationalism,1248384666 +204511,2411,sport:boxing,1248384677 +204511,2411,sports,1248384685 +204511,2411,Sylvester Stallone,1248384681 +204511,2412,boxing,1248384726 +204511,2412,competitive sport,1248384729 +204511,2412,sport:boxing,1248384757 +204511,2412,Sylvester Stallone,1248384763 +204511,2467,14th Century,1257639995 +204511,2467,amateur detective,1257640001 +204511,2467,medieval,1257640006 +204511,2467,monastery,1257640011 +204511,2467,Nudity (Full Frontal - Notable),1257640016 +204511,2467,Nudity (Topless),1257640024 +204511,2467,religion,1257640032 +204511,2467,setting:monastery,1257640037 +204511,2502,Ron Livingston,1324576734 +204511,2605,Sean Connery,1257639792 +204511,2671,afternoon section,1248385365 +204511,2671,chick flick,1248385369 +204511,2671,girlie movie,1248385375 +204511,2671,Good Romantic Comedies,1248385383 +204511,2671,Hugh Grant,1248385388 +204511,2671,Julia Roberts,1248385391 +204511,2722,bad science,1295066630 +204511,2722,shark,1295066691 +204511,2807,Jean-Claude Van Damme,1276540791 +204511,2808,cyborgs,1250196916 +204511,2808,Dolph Lundgren,1250196927 +204511,2916,alternate reality,1333223128 +204511,2916,alternate universe,1333223131 +204511,2916,conspiracy,1333223133 +204511,2916,cyberpunk,1333223136 +204511,2916,espionage,1333223139 +204511,2916,sci-fi,1333223143 +204511,2916,space travel,1333223145 +204511,2987,animation & live action interact,1286183423 +204511,2987,cartoon-reality crossover,1286183406 +204511,2987,live action/animation,1286183426 +204511,2987,private detective,1286183413 +204511,3300,anti-hero,1248383965 +204511,3300,sci-fi,1248383752 +204511,3300,Vin Diesel,1248383750 +204511,3481,actor talks to audience,1241182487 +204511,3481,Jack Black,1241182499 +204511,3481,John Cusack,1241182481 +204511,3481,record store,1241182510 +204511,3593,BAD special effects,1275325750 +204511,3593,John Travolta,1275325760 +204511,3593,religion,1275325774 +204511,3593,stupid,1275325748 +204511,3623,action,1248384450 +204511,3623,John Woo,1248384438 +204511,3623,Lame ending,1248384498 +204511,3623,sequel,1248384503 +204511,3623,Tom Cruise,1248384446 +204511,3646,comedy,1367862709 +204511,3654,World War II,1287438950 +204511,3677,70mm,1271530677 +204511,3677,environmental,1271530684 +204511,3677,landscape,1271530690 +204511,3677,no dialogue,1271530693 +204511,3677,non-verbal,1271530696 +204511,3677,photography,1271530699 +204511,3677,scenic,1271530703 +204511,3677,time-lapse,1271530706 +204511,3755,Mark Wahlberg,1248385067 +204511,3755,natural disaster,1248385074 +204511,3755,search and rescue,1248385078 +204511,3755,weather,1248385084 +204511,4223,Jude Law,1294024410 +204511,4223,Rachel Weisz,1294024413 +204511,4223,sniper,1294024415 +204511,4223,suspense,1294024421 +204511,4246,Hugh Grant,1248384929 +204511,4246,middle age,1248384924 +204511,4246,romantic comedy,1248384920 +204511,4343,ridiculous,1294986834 +204511,4344,action,1267830289 +204511,4344,Halle Berry,1267830267 +204511,4344,Hugh Jackman,1267830265 +204511,4344,John Travolta,1267830271 +204511,4344,Nudity (Topless - Notable),1267830276 +204511,4344,Nudity (Topless),1267830284 +204511,4344,over the top,1267830285 +204511,4443,Sean Connery,1337795333 +204511,4443,space,1337795335 +204511,4448,de niro,1251570391 +204511,4448,Edward Norton,1251570394 +204511,4448,heist,1251570402 +204511,4448,predictable,1251570408 +204511,4466,Steven Seagal,1248410629 +204511,4816,hysterical,1315694999 +204511,4901,espionage,1277770808 +204511,4901,multinational settings,1277770812 +204511,5250,comedy,1367862709 +204511,5574,action,1278461179 +204511,5574,Good action,1278461176 +204511,5574,heist,1278461205 +204511,5574,Luc Besson,1278461201 +204511,5630,remake,1248385442 +204511,5881,cinematography,1332966790 +204511,5903,drugs,1289063042 +204511,5903,dumb dystopia,1289063047 +204511,5903,post-apocalyptic,1289063029 +204511,5903,predictable,1289063034 +204511,5942,comedy,1367862709 +204511,6365,big budget,1248385481 +204511,6365,cyberpunk,1248385475 +204511,6365,human versus computer,1248385488 +204511,6365,Keanu Reeves,1248385492 +204511,6365,Monica Bellucci,1248385495 +204511,6365,Post apocalyptic,1248385499 +204511,6365,post-apocalyptic,1248385518 +204511,6365,thought-provoking,1248385521 +204511,6378,remake,1320105602 +204511,6537,android(s)/cyborg(s),1248384806 +204511,6537,Arnold Schwarzenegger,1248384793 +204511,6537,Nudity (Topless - Brief),1248384800 +204511,6537,Nudity (Topless),1248384802 +204511,6541,alan quartermain,1257639881 +204511,6541,alternate reality,1257639885 +204511,6541,captain nemo,1257639890 +204511,6541,gothic,1257639894 +204511,6541,steampunk,1257639963 +204511,6808,Clint Eastwood,1303943102 +204511,6808,double twist,1303943107 +204511,6808,World War II,1303943111 +204511,6966,dark comedy,1289696683 +204511,7147,adventure,1288016730 +204511,7147,magic,1288016713 +204511,7373,action,1257640784 +204511,7373,gothic,1257640790 +204511,7373,nazis,1257640801 +204511,7373,occult technology,1257640807 +204511,7373,steampunk,1257640812 +204511,7438,action,1248385532 +204511,7438,adventure,1248385535 +204511,7438,atmospheric,1248385538 +204511,7438,Quentin Tarantino,1248385546 +204511,7454,big budget,1248385230 +204511,7454,flashy,1248385235 +204511,7454,steampunk,1248385247 +204511,7618,Anthony Hopkins,1257361501 +204511,7618,Robert Downey Jr,1257361460 +204511,7618,Robert Downey Jr.,1257361484 +204511,7817,erotic,1332624670 +204511,7817,esoteric,1332624694 +204511,7817,esoteric plotlines,1332624689 +204511,7817,hallucinatory,1332624675 +204511,7817,Sean Connery,1332624704 +204511,7817,sexually leaky,1332624706 +204511,7817,violence,1332624710 +204511,7817,whimsical,1332624680 +204511,8531,comedy,1367862710 +204511,8581,apple,1257887052 +204511,8581,geeks,1257887056 +204511,8581,good story,1257887103 +204511,8581,history,1257887061 +204511,8589,foreign language,1294037038 +204511,8640,bullshit history,1319220615 +204511,8640,kiera knightley,1319220631 +204511,8640,unbearable,1319220623 +204511,8640,unhistorical,1319220642 +204511,8798,assassin,1277600022 +204511,8798,assassins,1277600016 +204511,8798,atmospheric,1277600008 +204511,8798,character driven,1277600011 +204511,8798,dark,1277600028 +204511,8798,Tom Cruise,1277600032 +204511,8798,violent,1277600048 +204511,8810,inconsistent,1248384361 +204511,8810,inconsistent with itself,1248384354 +204511,8865,boring,1320699660 +204511,8865,fake,1320699669 +204511,8865,underdeveloped plot,1320699673 +204511,8961,Adventure,1248385712 +204511,8961,Pixar,1248385726 +204511,8985,crappy sequel,1316640164 +204511,8985,sequel,1316640172 +204511,27317,hallucinatory,1250984065 +204511,27317,mindfuck,1250984033 +204511,27317,stylized,1250984111 +204511,27801,bad plot,1337894870 +204511,27801,gambling,1337894879 +204511,27801,no plot,1337894866 +204511,31410,Biography,1248913903 +204511,31410,suicide,1248913799 +204511,31410,war,1248913491 +204511,31658,steampunk,1248385686 +204511,31658,Studio Ghibli,1248385689 +204511,31660,atmospheric,1258592441 +204511,31660,Patrick Stewart,1258592425 +204511,31660,steampunk,1258592414 +204511,31696,angels,1282072807 +204511,31696,demons,1282072819 +204511,31696,heaven and hell,1282072822 +204511,31696,Keanu Reeves,1282072825 +204511,31696,spiritual warfare,1282072854 +204511,32029,Bruce Willis,1257639243 +204511,32587,Action,1248383288 +204511,32587,atmospheric,1248383291 +204511,32587,Bruce Willis,1248383283 +204511,32587,Nudity (Topless),1248383303 +204511,32587,Sci-Fi,1248383307 +204511,32587,violence,1248383311 +204511,32587,violent,1256426814 +204511,34048,Dakota Fanning,1251072587 +204511,34048,father daughter relationship,1251072561 +204511,34048,invasion,1251072598 +204511,34048,sci-fi,1251072590 +204511,34048,single father,1251072569 +204511,34048,slow,1251072580 +204511,34048,Tom Cruise,1251072572 +204511,34048,weak ending,1251072574 +204511,34150,idiotic,1294010198 +204511,34162,buddy movie,1248384844 +204511,34162,Christopher Walken,1248384851 +204511,34162,party,1248384858 +204511,34162,wedding,1248384862 +204511,34162,weddings,1248384864 +204511,34530,comedy,1367862710 +204511,38038,claymation,1248382381 +204511,38038,satirical,1248382388 +204511,38038,stop-motion,1248382393 +204511,40851,game,1248381409 +204511,41569,big budget,1248385149 +204511,41569,Dynamic CGI Action,1248385153 +204511,41569,hollywood,1248385158 +204511,41569,Jack Black,1248385162 +204511,41569,remake,1248385172 +204511,43396,Anthony Hopkins,1262158004 +204511,43396,Bonneville Salt Flats,1262158012 +204511,43396,desert,1262158016 +204511,43396,new zealand,1262158021 +204511,43396,speed,1262158025 +204511,43396,transvestism,1262158039 +204511,44665,assassin,1278221471 +204511,44665,assassination,1278221468 +204511,44665,Ben Kingsley,1278221450 +204511,44665,Bruce Willis,1278221388 +204511,44665,Film Noir,1278221395 +204511,44665,guilty pleasure,1278221406 +204511,44665,hitman,1278221392 +204511,44665,Josh Hartnett,1278221463 +204511,44665,Lucy Liu,1278221436 +204511,44665,Morgan Freeman,1278221390 +204511,44665,stylized,1278221398 +204511,44665,violent,1278221400 +204511,44972,franchise,1248385337 +204511,44972,Leslie Nielsen,1248385333 +204511,44972,pop culture,1248385346 +204511,47200,adrenaline,1287700537 +204511,47200,videogame like,1287700539 +204511,48774,apocalypse,1250423431 +204511,48774,atmospheric,1250423434 +204511,48774,Michael Caine,1250423440 +204511,49278,Denzel Washington,1314141942 +204511,49278,paradox,1314141955 +204511,49278,sci-fi,1314141971 +204511,49278,time travel,1314141968 +204511,49649,cgi,1248384988 +204511,49649,cliche,1248384962 +204511,49649,coming of age,1248384965 +204511,49649,Jeremy Irons,1248384973 +204511,49649,John Malkovich,1248384975 +204511,49649,spirit animal,1248384979 +204511,49649,teen,1248384980 +204511,50872,lawyers,1248383451 +204511,50872,pixar,1248383457 +204511,51412,jessica biel,1316390668 +204511,51412,Nicolas Cage,1316390650 +204511,51412,time,1316390672 +204511,51412,time travel,1316390662 +204511,52319,World War II,1250367052 +204511,53125,adventure,1248384191 +204511,53125,ending after credits,1248384271 +204511,53125,Johnny Depp,1248384248 +204511,53125,pirates,1248384253 +204511,53519,campy,1295706530 +204511,53519,slow,1295706539 +204511,53519,stylized,1295706544 +204511,54259,adventure,1248382898 +204511,54259,Gay stereotypes,1248382533 +204511,54259,magic,1248382925 +204511,54259,pirates,1248382880 +204511,56171,alternate reality,1257640693 +204511,56171,coming of age,1257640696 +204511,56171,controversial,1257640705 +204511,56171,Daniel Craig,1257640710 +204511,56171,dogma,1257640717 +204511,56171,magic,1257640724 +204511,56171,Parallel universe,1257640737 +204511,56171,steampunk,1257640733 +204511,56171,talking animals,1257640742 +204511,56174,action,1276032371 +204511,56174,alone in the world,1276032356 +204511,56174,apocalypse,1276032366 +204511,56174,Post apocalyptic,1276032364 +204511,56174,post-apocalyptic,1276032362 +204511,56174,sci-fi,1276032373 +204511,56174,Will Smith,1276032348 +204511,56174,zombies,1276032383 +204511,56176,family friendly,1248384894 +204511,57368,fake authentic,1316633302 +204511,57368,Handycam,1316633304 +204511,57368,shallow,1316633339 +204511,58025,egomaniacs,1250704442 +204511,58025,escape,1250704445 +204511,58025,Samuel L. Jackson,1250704436 +204511,58025,silly,1250704418 +204511,58025,super hero,1250704426 +204511,58025,superhero,1250704427 +204511,58025,superheroes,1250704430 +204511,58025,teen,1250704420 +204511,58025,teens,1250704422 +204511,58025,terrible plot,1250704416 +204511,58559,Atmospheric,1284680137 +204511,58559,Heath Ledger,1284680127 +204511,58559,Soundtrack,1284680144 +204511,58559,violence,1284680134 +204511,58783,Francis Ford Coppola,1268487087 +204511,58783,Tim Roth,1268487091 +204511,59594,black comedy,1275919932 +204511,59594,hitman,1275919943 +204511,59594,John Cusack,1275919927 +204511,59594,war,1275919941 +204511,59615,adventure,1258154175 +204511,59615,archaeology,1258154195 +204511,59615,Cate Blanchett,1258154202 +204511,59615,franchise,1258154220 +204511,59615,Harrison Ford,1258154198 +204511,59615,sequel,1258154216 +204511,60040,adapted from:comic,1295118394 +204511,60040,bad sequel,1295118382 +204511,60040,Tim Roth,1295118415 +204511,60069,Animation,1248382160 +204511,60069,dystopia,1248382157 +204511,60069,Post apocalyptic,1248382173 +204511,60069,post-apocalyptic,1248382178 +204511,60069,robots,1248382196 +204511,60069,Sci-Fi,1248382183 +204511,60069,space,1248382186 +204511,60684,alternate reality,1249836611 +204511,60684,cinematography,1279306024 +204511,60684,Nudity (Topless),1279306028 +204511,60684,stylized violence,1249836621 +204511,61132,jungle,1256426867 +204511,61132,rescue,1256426886 +204511,61132,Robert Downey Jr.,1256426855 +204511,61132,satire,1256426858 +204511,61132,Tom Cruise,1256426859 +204511,61132,vietnam,1256426896 +204511,61350,Vin Diesel,1250292540 +204511,61697,Al Pacino,1250558637 +204511,61697,Carla Gugino,1250558660 +204511,61697,Robert De Niro,1250558656 +204511,62374,UAV,1270482922 +204511,62376,adventure,1257887004 +204511,62376,steampunk,1257887001 +204511,62376,stylistic,1257887014 +204511,63072,depressing,1329605078 +204511,63072,too long,1329605083 +204511,63113,action,1245895774 +204511,63113,assassin,1245895787 +204511,63113,James Bond,1245895800 +204511,63113,secret service,1245895811 +204511,63853,Hugh Jackman,1257640854 +204511,63853,Nicole Kidman,1257640902 +204511,63853,World War II,1257640912 +204511,64116,original,1367862661 +204511,64497,abrubt end,1250894244 +204511,64497,corny,1250894213 +204511,64497,religious overtones,1250894227 +204511,64497,Wooden acting,1250894233 +204511,64614,Clint Eastwood,1250281449 +204511,64614,culture clash,1250281453 +204511,64614,life & death,1250281483 +204511,64614,poor acting,1250281466 +204511,64614,sacrifice,1250281496 +204511,64957,Cate Blanchett,1287850586 +204511,64957,original plot,1287850597 +204511,64983,Tom Cruise,1249584443 +204511,64983,World War II,1249584449 +204511,65261,Animation,1263210863 +204511,65261,ocean,1263210876 +204511,65261,strange story,1263210867 +204511,66097,claymation,1248650166 +204511,66097,gothic,1248650170 +204511,66097,stop motion,1248650176 +204511,66097,Surreal,1248650180 +204511,66171,to be continued,1250984306 +204511,66203,chick flick,1250984238 +204511,66203,Drew Barrymore,1250984245 +204511,66203,Jennifer Aniston,1250984251 +204511,66203,romantic comedy,1250984256 +204511,68157,Brad Pitt,1261303732 +204511,68157,Nazis,1261303741 +204511,68205,fast paced,1287700562 +204511,68205,fun,1287700570 +204511,68205,gore,1287700568 +204511,68205,unrealistic,1287700565 +204511,68237,isolation,1288293060 +204511,68237,Sam Rockwell,1288293053 +204511,68237,solitude,1288293049 +204511,68319,action,1256591707 +204511,68319,cheesy,1256591722 +204511,68319,hugh jackman,1256591712 +204511,68324,nonlinear,1260037896 +204511,68650,Nudity (Topless - Notable),1247936045 +204511,68650,Nudity (Topless),1247936023 +204511,68791,action,1262721907 +204511,68791,bad acting,1263243152 +204511,68791,bad plot,1263243156 +204511,68791,bad script,1263243153 +204511,68791,cgi,1262721816 +204511,68791,Christian Bale,1262721884 +204511,68791,franchise,1263243165 +204511,68791,Helena Bonham Carter,1263243177 +204511,68791,post-apocalyptic,1262721818 +204511,68791,robot noises,1263243169 +204511,68791,sci-fi,1262721839 +204511,68791,sequel,1263243173 +204511,68954,adventure,1258826585 +204511,68954,Pixar,1258826817 +204511,69526,action,1260037689 +204511,69526,audience intelligence underestimated,1260037829 +204511,69526,cgi,1260037707 +204511,69526,ridiculous,1260037814 +204511,69526,robots,1260037718 +204511,69526,sci-fi,1260037711 +204511,69526,silly,1260037819 +204511,69526,Special Effects,1260037702 +204511,69644,emotionless,1262784960 +204511,69644,franchise,1262784964 +204511,69644,lacks logic,1262784973 +204511,69644,sequel,1262784982 +204511,69644,talking animals,1262784986 +204511,70286,aliens,1262312862 +204511,70286,alternate history,1262312866 +204511,70286,sci-fi,1262312878 +204511,70286,thriller,1262312890 +204511,70286,white guilt,1262312883 +204511,71057,giant robots,1262791546 +204511,71057,post-apocalyptic,1262791541 +204511,71057,predictable,1262791534 +204511,71135,aliens,1279719405 +204511,71135,aliens ripoff,1266807001 +204511,71135,Ben Foster,1266806946 +204511,71135,Dennis Quaid,1266806969 +204511,71135,mutation,1266807024 +204511,71135,sci-fi,1266806875 +204511,71135,space,1266806895 +204511,71156,drugs,1276358074 +204511,71156,George Clooney,1276358058 +204511,71156,Jeff Bridges,1276358054 +204511,71211,awkward,1318594606 +204511,71530,bad plot,1293423236 +204511,71530,bad science,1293423234 +204511,71530,bad script,1293423251 +204511,71530,Bruce Willis,1293423240 +204511,71535,Bill Murray,1276290652 +204511,71535,guns,1276290680 +204511,71535,horror,1276290661 +204511,71535,post-apocalyptic,1276290659 +204511,71535,road trip,1276290691 +204511,71535,short,1276290677 +204511,71535,stylized violence,1276290664 +204511,71535,violence,1276290667 +204511,72308,made for TV,1260379095 +204511,72378,Amount of Destruction,1267927841 +204511,72378,audience intelligence underestimated,1267927831 +204511,72378,bad plot,1267927834 +204511,72378,destruction,1267927853 +204511,72733,Morgan Freeman,1262720204 +204511,72733,sports,1262720206 +204511,72998,3d,1262158451 +204511,72998,bad science,1262158454 +204511,72998,beautiful,1295060871 +204511,72998,beautiful scenery,1295060867 +204511,72998,cgi,1262158460 +204511,72998,military,1262158488 +204511,72998,sci-fi,1262158470 +204511,72998,stereotypes,1295060878 +204511,72998,superficial plot,1262158592 +204511,72998,visual,1262158473 +204511,72998,white guilt,1262158476 +204511,73321,Mila Kunis,1277247220 +204511,73321,monochromatic,1277247237 +204511,73321,post-apocalyptic,1277247224 +204511,73929,horror,1293913258 +204511,73929,plot holes,1293913245 +204511,73929,unintentionally funny,1293913251 +204511,74458,asylum,1275684921 +204511,74458,Ben Kingsley,1275684961 +204511,74458,ending twist,1275684933 +204511,74458,insanity,1275684904 +204511,74458,Leonardo DiCaprio,1275684910 +204511,74458,plot twist,1275684931 +204511,74624,ancient civilization,1284537684 +204511,74624,philosophy,1284537668 +204511,74624,Rachel Weisz,1284537674 +204511,74624,rationality,1284537677 +204511,74789,alternate reality,1276256865 +204511,74789,Mia Wasikowska,1276256891 +204511,76077,John Cusack,1282072938 +204511,76130,Dolph Lundgren,1276688909 +204511,76251,original plot,1287799253 +204511,76251,pop culture references,1287799256 +204511,77201,Boring,1279793607 +204511,77201,mythology,1279793603 +204511,77201,stylistic,1279793604 +204511,77561,bad plot,1288396572 +204511,77561,bad science,1288396575 +204511,77795,post-apocalyptic,1339338207 +204511,77843,crying,1290454034 +204511,77843,Gemma Arterton,1290454041 +204511,77866,adventure,1293956681 +204511,77866,Cate Blanchett,1293956596 +204511,77866,gritty,1293956606 +204511,77866,war,1293956611 +204511,78218,Carrie-Anne Moss,1277588723 +204511,78218,Samuel L. Jackson,1277588715 +204511,78266,coming of age,1294856947 +204511,78266,Sarah Polley,1294856982 +204511,78266,Unjustified twists,1294856965 +204511,78266,weak ending,1294856972 +204511,79132,alternate reality,1292647742 +204511,79132,dreams,1292647739 +204511,79132,heist,1292647757 +204511,79132,mindfuck,1292647746 +204511,79132,multiple realities,1293246141 +204511,79132,predictable,1292647761 +204511,79132,visually stunning,1292647752 +204511,79293,US President,1284230432 +204511,80126,assassin,1301352126 +204511,80126,George Clooney,1301352122 +204511,80126,landscape,1301352098 +204511,80126,long takes,1301352118 +204511,80126,slow,1301352105 +204511,80126,suspense,1301352115 +204511,80219,action,1296930418 +204511,80219,action packed,1296930407 +204511,80219,Danny Trejo,1296930374 +204511,80219,gore,1296930383 +204511,80219,Nudity,1296930400 +204511,80219,over the top violence,1296930391 +204511,80219,violent,1296930431 +204511,80917,multilingual,1316033432 +204511,80917,no action,1316033413 +204511,80917,spanish dialogue,1316033426 +204511,81229,action,1307325359 +204511,81229,assassin,1307325364 +204511,81229,assassination,1307325476 +204511,81229,Bruce Willis,1307325368 +204511,81229,conspiracy,1307325374 +204511,81229,hilarious,1307325463 +204511,81229,hunted,1307325467 +204511,81229,John Malkovich,1307325444 +204511,81229,Morgan Freeman,1307325449 +204511,81229,murder,1307325471 +204511,81229,spy,1307325480 +204511,81516,Sean Bean,1307056745 +204511,81788,jailbreak,1329961067 +204511,81788,procedural,1329961064 +204511,82095,Alien Invasion,1321919204 +204511,82242,original,1367862662 +204511,82244,gambling,1323646578 +204511,82244,Russian roulette,1323646573 +204511,82244,weak plot,1323646571 +204511,82461,alternate reality,1304027026 +204511,82461,atmospheric,1304027032 +204511,82461,cyber,1293246056 +204511,82461,daft punk,1293246049 +204511,82461,epic,1304026977 +204511,82461,Jeff Bridges,1293246087 +204511,82461,virtual reality,1304027107 +204511,82854,Jack Black,1299997739 +204511,84944,adult humor,1321821947 +204511,84944,desert,1323006857 +204511,84944,great voice acting,1315424057 +204511,84944,Johnny Depp,1315424047 +204511,84944,quirky style,1315424052 +204511,84944,spaghetti western,1315424055 +204511,84954,Emily Blunt,1311427927 +204511,84954,Matt Damon,1311427918 +204511,84954,superficial,1311427934 +204511,85020,hit men,1323474494 +204511,85020,hitman,1323474491 +204511,85020,professional assassins,1323474496 +204511,85020,shallow,1323474483 +204511,85131,action,1333307534 +204511,85131,CGI,1333307531 +204511,85131,Cheesy Soundtrack,1333307507 +204511,85131,poor dialogue,1333307517 +204511,85131,repetitive,1333307520 +204511,85131,shaky camera,1333307523 +204511,85131,war,1333307526 +204511,85414,Jake Gyllenhaal,1311816870 +204511,85414,mindfuck,1311816885 +204511,85796,Rutger Hauer,1315408812 +204511,85796,Satire,1315408814 +204511,85796,vigilante,1315408817 +204511,88118,David Hyde Pierce,1323605479 +204511,88118,twists & turns,1323605482 +204511,89190,Jason Momoa,1322247498 +204511,89470,apocalypse,1329604769 +204511,89470,Kate Winslet,1329604773 +204511,89470,Laurence Fishburne,1329604794 +204511,89470,Matt Damon,1329604775 +204511,89470,not sensationalist,1329604778 +204511,89904,boring,1332963553 +204511,89904,original,1332963561 +204511,89904,slow pacing,1332963568 +204511,89904,visually appealing,1332963565 +204511,90746,motion capture,1330043272 +204511,91630,comedic moments,1335014624 +204511,92507,espionage,1347146551 +204511,93721,minimalist,1346968698 +204518,106696,animation,1419021980 +204518,106696,beautiful,1419021979 +204518,106696,Disney,1419021983 +204518,106696,feminist,1419021976 +204518,106696,musical,1419021986 +204530,260,rebel,1432517723 +204530,260,space adventure,1432517704 +204530,356,american movie,1432518275 +204530,356,biopic,1432518275 +204530,356,historical epic,1432518275 +204540,260,"action, scifi",1436769538 +204559,44004,Sarah Jessica Parker,1321671776 +204559,44004,Zooey Deschanel,1321671778 +204598,1,computer animation,1253926611 +204598,1,Disney,1253926608 +204598,1,humorous,1253926613 +204598,1,Pixar,1253926617 +204598,26776,Studio Ghibli,1249444400 +204598,31658,dreamlike,1253931743 +204598,31658,fantasy,1253931743 +204598,66097,animation,1253235331 +204598,66097,plot,1253235341 +204598,66097,unsympathetic hero,1253235338 +204603,260,Science Fiction,1437347094 +204603,260,Space,1437347102 +204621,2571,Keanu Reeves,1277738297 +204621,7361,Jim Carrey,1277738334 +204621,78218,Samuel L. Jackson,1277738231 +204628,714,Jim Jarmusch,1164047821 +204628,1211,German,1164047735 +204628,1211,Wim Wenders,1164047731 +204628,1279,Jim Jarmusch,1164047806 +204628,7209,Jacques Tati,1164047556 +204628,26171,Jacques Tati,1164047512 +204628,34437,Jim Jarmusch,1164049875 +204636,101,Wes Anderson,1150046764 +204636,175,drugs,1150046779 +204636,6754,NOT a matrix ripoff because it has nothing to do with the lame ass matrix shit,1159582178 +204660,541,sci-fi classic,1443183112 +204660,1653,predictive,1443183163 +204699,913,noir thriller,1368647509 +204699,4011,==================,1226937170 +204699,4225,=================,1226938223 +204699,6016,========================,1226939194 +204699,6333,=====================,1226938235 +204699,6377,=========================,1226937210 +204699,6617,===========================,1226938886 +204699,6753,==============================,1227000380 +204699,7293,====================,1226938900 +204699,7456,=============,1226937000 +204699,7767,==================,1226939075 +204699,8575,================,1226937699 +204699,8636,=======================,1226938334 +204699,27831,===================,1226937718 +204699,27866,************************,1227001526 +204699,30803,===============,1226939189 +204699,33493,=======================,1226938925 +204699,38304,===============,1226939200 +204699,42197,natural,1258271852 +204699,49265,============,1226936102 +204699,49272,=======================,1226937390 +204699,53460,===================,1226937725 +204699,54272,=====================,1226938912 +204699,54997,===================,1226937396 +204699,55765,==================,1226937063 +204699,56152,=========================,1226938328 +204699,57504,========================,1226938920 +204699,58559,===========,1226936081 +204699,60069,==============,1226936094 +204699,60137,=======================,1226938227 +204699,61240,+++++++++++++++,1227001476 +204699,61255,NE,1226933990 +204699,61352,NE,1226927643 +204699,61729,DA,1226678833 +204699,62081,NE,1226919982 +204699,62155,NE,1226933942 +204699,62293,================,1227001470 +204699,62344,DA,1226678822 +204699,62374,====================,1227001488 +204699,62434,************************,1227003998 +204699,62849,NE,1226933975 +204699,62956,NE,1226678979 +204699,63062,NE,1226920238 +204699,63113,NE,1226919585 +204699,63131,????????????????????,1227001513 +204706,356,classic,1437877180 +204706,3948,social_funny,1437877129 +204719,1270,1950s,1446627709 +204719,1270,adventure,1446627650 +204719,1270,Christopher Lloyd,1446627657 +204719,1270,classic,1446627653 +204719,1270,comedy,1446627646 +204719,1270,Funny,1446627677 +204719,1270,inventor,1446627668 +204719,1270,Michael J. Fox,1446627696 +204719,1270,sci-fi,1446627643 +204719,1270,time travel,1446627638 +204719,3156,artificial intelligence,1446629946 +204719,3156,future,1446629937 +204719,3156,Isaac Asimov,1446635288 +204719,3156,philosophical,1446629951 +204719,3156,Robin Williams,1446629940 +204719,3156,robots,1446629934 +204719,3156,sci-fi,1446629928 +204719,3156,science fiction,1446629949 +204719,5502,m. night shyamalan,1446675634 +204719,55908,dialogue driven,1446632843 +204719,55908,Excellent use of dialogue,1446632852 +204719,55908,immortality,1446632857 +204719,55908,intellectual,1446632840 +204719,55908,intelligent,1446632860 +204719,55908,philosophical,1446632834 +204719,55908,thought-provoking,1446632837 +204719,97752,Andy Wachowski,1446632672 +204719,97752,atmospheric,1446632655 +204719,97752,based on a book,1446632625 +204719,97752,dystopia,1446632690 +204719,97752,gay,1446632757 +204719,97752,Hugo Weaving,1446632700 +204719,97752,multiple roles,1446632641 +204719,97752,multiple storylines,1446632619 +204719,97752,philosophy,1446632622 +204719,97752,plot holes,1446632714 +204719,97752,thought-provoking,1446632648 +204719,97752,Tom Hanks,1446632663 +204719,97752,visually appealing,1446632633 +204719,97752,Wachowski Brothers,1446632682 +204719,112804,weak scenario,1446632821 +204728,318,friendship,1452456548 +204728,318,great ending,1452456551 +204728,318,justice,1452456554 +204728,318,Morgan Freeman,1452456547 +204728,1193,based on a book,1452456526 +204728,1193,classic,1452456524 +204728,1193,depressing,1452456536 +204728,1193,drama,1452456534 +204728,1193,jack nicholson,1452456510 +204728,1193,mental illness,1452456513 +204728,1193,Oscar (Best Actor),1452456532 +204728,1193,Oscar (Best Directing),1452456530 +204728,1270,1950s,1452456422 +204728,1270,adventure,1452456403 +204728,1270,Christopher Lloyd,1452456417 +204728,1270,classic,1452456405 +204728,1270,comedy,1452456400 +204728,1270,high school,1452456414 +204728,1270,Michael J. Fox,1452456408 +204728,1270,Steven Spielberg,1452456420 +204728,1784,classic,1452631961 +204728,1784,comedy,1452631954 +204728,1784,excellent script,1452631958 +204728,1784,feel-good,1452456476 +204728,1784,funny,1452631963 +204728,1784,Jack Nicholson,1452456472 +204728,1784,obsessive compulsive disorder,1452456471 +204728,1784,Oscar (Best Actor),1452456479 +204728,1784,psychological,1452456478 +204728,1784,psychology,1452631955 +204728,1784,relationships,1452631965 +204728,1961,Dustin Hoffman,1452715123 +204728,2011,adventure,1452456438 +204728,2011,humorous,1452456437 +204728,2324,bittersweet,1452456714 +204728,2324,comedy,1452456720 +204728,2324,father-son relationship,1452456717 +204728,2324,Italian,1452456727 +204728,2324,optimism,1452456719 +204728,2324,Roberto Benigni,1452456722 +204728,2324,sentimental,1452456724 +204728,2324,World War II,1452456715 +204728,2858,coming of age,1452456657 +204728,2858,dark comedy,1452456655 +204728,2858,great acting,1452456661 +204728,2858,kevin spacey,1452456663 +204728,2858,surrealism,1452456659 +204728,2863,1960s,1452456614 +204728,2863,Beatles,1452456608 +204728,2863,british comedy,1452456607 +204728,2863,musicians,1452456609 +204728,2863,rock and roll,1452456611 +204728,3147,emotional,1452456572 +204728,3147,heartwarming,1452456575 +204728,3147,nostalgic,1452456577 +204728,3147,oscar (best directing),1452456574 +204728,4973,beautifully filmed,1452631836 +204728,4973,feel-good,1452631838 +204728,5995,based on a true story,1452456762 +204728,5995,music,1452456761 +204728,5995,war,1452456764 +204728,7147,dreamlike,1453980870 +204728,7147,Fantasy,1453980872 +204728,7147,quirky,1453980877 +204728,7147,surreal,1453980829 +204728,7147,surrealism,1453980874 +204728,7147,Tim Burton,1453980827 +204764,1721,action,1270571747 +204764,1721,atmospheric,1270571745 +204764,1721,bittersweet,1270571729 +204764,1721,disaster,1270571749 +204764,1721,historical,1270571751 +204764,1721,Leonardo DiCaprio,1270571741 +204764,1721,love,1270571756 +204764,1721,Nudity (Topless),1270571719 +204764,1721,Oscar (Best Cinematography),1270571759 +204764,1721,Oscar (Best Directing),1270571761 +204764,1721,Oscar (Best Picture),1270571765 +204764,1721,romance,1270571731 +204764,1721,sentimental,1270571735 +204764,1721,time travel,1270571776 +204764,1721,true story,1270571772 +204764,2395,coming of age,1272819563 +204764,2395,notable soundtrack,1272819570 +204764,2395,Nudity (Topless),1272819580 +204764,2395,quirky,1272819566 +204764,2395,Wes Anderson,1272819559 +204764,5225,erotic,1271530145 +204764,5225,male nudity,1271530143 +204764,5225,Nudity (Full Frontal - Notable),1271530139 +204764,5225,Nudity (Full Frontal),1271530148 +204764,5225,sex,1271530152 +204764,5608,Nudity (Full Frontal - Notable),1270913084 +204764,5608,psychology,1270913046 +204764,5608,true story,1270913051 +204764,5833,atmospheric,1271450927 +204764,5833,claustrophobic,1271455866 +204764,5833,cult,1271450932 +204764,5833,cult film,1271455562 +204764,5833,survival,1271450923 +204764,8970,bittersweet,1270571849 +204764,8970,country music,1270571867 +204764,8970,fairy tales,1270571864 +204764,8970,fantasy,1270571819 +204764,8970,Johnny Depp,1270571825 +204764,8970,romance,1270571851 +204764,33166,multiple storylines,1271529314 +204764,33166,Nudity (Topless - Brief),1271529299 +204764,33166,Nudity (Topless),1271529322 +204764,33166,racism,1271529311 +204764,33166,sex scene,1271529305 +204764,33166,twist ending,1271529338 +204764,37495,dark comedy,1271209978 +204764,37495,family,1271209996 +204764,37495,Gen Sekiguchi,1271210004 +204764,37495,surreal,1271209982 +204764,37495,touching,1271209988 +204764,44191,inspirational,1270574271 +204764,44191,thought-provoking,1270574277 +204764,46976,metaphysics,1270999400 +204764,46976,modern fantasy,1270999382 +204764,46976,quirky romantic,1270999372 +204764,46976,surreal,1270999369 +204764,46976,touching,1270999395 +204764,48385,comedy,1270575657 +204764,48385,controversial,1270575662 +204764,48385,Male nudity,1270575642 +204764,48385,Nudity (Full Frontal - Notable),1270575645 +204764,48385,Nudity (Full Frontal),1270575649 +204764,48385,satire,1270575652 +204764,48744,gay relationship,1271518863 +204764,48744,group sex,1271518848 +204764,48744,Nudity (Full Frontal - Notable),1271518841 +204764,48744,Nudity (Full Frontal),1271518853 +204764,48744,orgy,1271518857 +204764,48744,sex,1271518868 +204764,48744,SEXUAL AWAKENING,1271518837 +204764,48744,unsimulated sex scenes,1271518844 +204764,54259,british,1271439119 +204764,54259,fairy tale,1271439096 +204764,54259,fairy tale romance,1271439105 +204764,54259,fantasy,1271439108 +204764,56715,afterlife,1271122085 +204764,56715,alternate reality,1271122053 +204764,56715,cult,1271122056 +204764,56715,dark comedy,1271131266 +204764,56715,Nudity (Topless),1271122059 +204764,56715,quirky,1271122070 +204764,56715,russian accent,1271131298 +204764,56715,Shea Whigham,1271131274 +204764,56715,Some blood,1271122094 +204764,56715,suicide,1271122066 +204764,56715,Though provoking,1271122062 +204764,56715,touching,1271122074 +204764,60950,sexuality,1271530513 +204764,60950,threesome,1271530505 +204764,68954,adventure,1270572329 +204764,68954,dreams,1270572334 +204764,68954,Pixar,1270572338 +204764,68954,predictable,1270572343 +204764,68954,sad but good,1270572322 +204764,68954,touching,1270572324 +204764,69757,artistic,1270572426 +204764,69757,chick flick,1270574165 +204764,69757,cute,1270574170 +204764,69757,ending,1270572420 +204764,69757,music,1270572414 +204764,69757,quirky,1270572411 +204764,69757,romance,1270572402 +204764,69784,funny,1270575724 +204764,69784,gay,1270575714 +204764,69784,homosexuality,1270575711 +204764,69784,Nudity (Full Frontal),1270575706 +204764,69784,satire,1270575742 +204764,69784,Suprises around every corner,1270575738 +204764,72011,George Clooney,1274095271 +204764,72011,loneliness,1274095263 +204764,72011,Nudity (Rear),1274095253 +204764,72011,thoughtful,1274095269 +204770,296,action,1424309788 +204770,296,crime,1424309788 +204770,296,good dialogue,1424309788 +204810,260,sci-fi,1436634494 +204826,260,old,1437306754 +204826,260,Science Fiction,1437306716 +204826,260,space,1437306722 +204850,61132,Ben Stiller,1296265038 +204850,61132,funny,1296264986 +204850,61132,irreverent,1296264992 +204850,61132,Jack Black,1296265042 +204850,61132,Matthew McConaughey,1296265035 +204850,61132,Robert Downey Jr.,1296265035 +204850,61132,satire,1296264996 +204850,61132,Tom Cruise,1296265045 +204854,30707,Clint Eastwood,1282555907 +204855,32,post-apocalyptic,1263420451 +204855,32,time travel,1263420456 +204855,170,cult film,1204409262 +204855,170,die like the rest,1204409262 +204855,170,hacking,1204409262 +204855,293,intense,1206728112 +204855,509,good music,1204409113 +204855,509,good soundtrack,1204409113 +204855,509,intense,1204408297 +204855,509,melancholy,1204408324 +204855,1206,dystopia,1204409626 +204855,1206,good soundtrack,1204409626 +204855,1206,psychedelic,1204409626 +204855,1206,Stanley Kubrick,1204409626 +204855,1285,black comedy,1204408392 +204855,1285,cult film,1204409354 +204855,1285,Franka Potente,1204409387 +204855,1645,Al Pacino,1263420821 +204855,1645,Charlize Theron,1263420887 +204855,1645,Keanu Reeves,1263420887 +204855,1645,sappy ending,1263422105 +204855,1704,genius,1263421050 +204855,1704,mathematics,1263420906 +204855,1704,Matt Damon,1263421049 +204855,1704,Robin Williams,1263421049 +204855,1704,sappy,1263422087 +204855,2671,Good Romantic Comedies,1204409475 +204855,2959,intense,1204408529 +204855,2959,mystery,1204408530 +204855,2959,psychedelic,1204408529 +204855,3556,good soundtrack,1204409087 +204855,3556,melancholy,1204408250 +204855,3556,stylized,1204409073 +204855,3556,visually appealing,1204409087 +204855,3742,politics,1264547015 +204855,3742,silent movie,1264547049 +204855,3742,Soviet Union,1264547049 +204855,4963,Brad Pitt,1204409201 +204855,4963,feel good movie,1204409201 +204855,4963,George Clooney,1204409200 +204855,4963,good soundtrack,1204409201 +204855,4963,Matt Damon,1204409200 +204855,4993,based on a book,1204409960 +204855,4993,fantasy,1204409960 +204855,4993,Orlando Bloom,1204409960 +204855,4993,overrated,1204409960 +204855,4995,based on a book,1204408943 +204855,4995,genius,1204408943 +204855,4995,romance,1204408943 +204855,4995,schizophrenia,1204408943 +204855,5690,horrors of war,1204408452 +204855,5690,made me cry,1204408452 +204855,5690,Need to be seen more than once,1204408452 +204855,5690,need to buy,1204408452 +204855,5690,need to own,1204408452 +204855,5952,based on a book,1204410001 +204855,5952,fantasy,1204410001 +204855,5952,overrated,1204410001 +204855,5971,cute,1204408357 +204855,5971,fantasy,1204408357 +204855,5971,feel good movie,1204408357 +204855,5971,Hayao Miyazaki,1204970943 +204855,5989,better than expected,1204409296 +204855,5989,feel good movie,1204409296 +204855,6377,feel good movie,1206540221 +204855,6807,Monty Python,1204970952 +204855,7034,courage,1257628260 +204855,7151,based on a book,1204408914 +204855,7151,good soundtrack,1204408914 +204855,7151,History,1204408914 +204855,7151,Scarlett Johansson,1204408914 +204855,7151,visually appealing,1204408914 +204855,7153,based on a book,1204409976 +204855,7153,fantasy,1204409976 +204855,7153,overrated,1204409976 +204855,27721,Audrey Tautou,1204408612 +204855,27721,romance,1204408612 +204855,32587,black comedy,1204409057 +204855,32587,comic book,1204409057 +204855,32587,dark,1204409056 +204855,32587,film noir,1204409057 +204855,32587,visually appealing,1204409057 +204855,44191,comic book,1204408682 +204855,44191,dystopia,1204408682 +204855,44191,Natalie Portman,1257627111 +204855,44191,visually appealing,1257627111 +204855,45720,based on a book,1265143459 +204855,45720,Meryl Streep,1265143494 +204855,56757,good soundtrack,1204678228 +204855,56757,visually appealing,1204678228 +204855,58559,Batman,1257626199 +204855,58559,comic book,1257626206 +204855,58559,Heath Ledger,1257626199 +204855,58559,Heath Ledger as the Joker,1257626199 +204855,60069,dystopia,1263421439 +204855,60069,post-apocalyptic,1263421435 +204855,63992,based on a book,1257625451 +204855,63992,Robert Pattinson,1257625446 +204855,63992,Teen movie,1257625446 +204855,63992,vampires,1257625446 +204855,66691,Antonio Banderas,1257627225 +204855,66691,Morgan Freeman,1257627223 +204855,66691,predictable,1257627248 +204855,68319,comic book,1293307197 +204855,68319,Hugh Jackman,1293307197 +204855,68358,adventure,1257625294 +204855,68358,Star Trek,1257625294 +204855,68954,Pixar,1257625127 +204855,68954,sad but good,1257625127 +204855,69122,comedy,1257627492 +204855,69122,las vegas,1257627492 +204855,69122,no plot,1257627492 +204855,70282,aliens invasion,1257625202 +204855,70282,Teen movie,1257625201 +204855,71057,post-apocalyptic,1263421203 +204855,71057,robots,1263421206 +204855,71057,sci-fi,1263421200 +204855,72249,music,1263421548 +204855,72249,sad but good,1263421548 +204855,74789,based on a book,1277752556 +204855,74789,Johnny Depp,1277752558 +204855,79132,action,1293307235 +204855,79132,Leonardo DiCaprio,1293307249 +204855,79132,surreal,1293307238 +204855,81564,feel good movie,1307992892 +204855,81564,heartwarming,1307992685 +204859,111443,feel good movie,1431775516 +204866,318,1940s,1432059961 +204866,318,carcel,1432059961 +204866,318,huida,1432059961 +204869,260,sci-fi,1434417132 +204869,260,universe,1434417139 +204869,356,sixties,1434417305 +204869,356,tom hanks,1434417305 +204869,356,vietnam war,1434417305 +204885,593,adventure,1429573995 +204885,593,mystery,1429573995 +204885,593,psychothriller,1429573995 +204903,50,Kevin Spacey,1432036780 +204903,50,twist ending,1432036764 +204931,2571,dystopia,1169339325 +204931,4848,mindfuck,1169339226 +204952,72641,true story,1261024519 +204980,59037,video game,1429599066 +204980,66798,suspense,1429598975 +204994,260,did'nt get it,1432786277 +204999,2068,classic,1372282340 +205009,1089,nonlinear,1372054135 +205009,1089,racism,1372054100 +205009,59387,Beautiful,1393706630 +205009,59387,Surreal,1393706636 +205009,74573,misogynistic,1386494892 +205009,94558,Beautiful,1386834589 +205015,2699,more or less,1140606487 +205017,47,David Fincher,1256767385 +205017,681,Tavernier,1245236626 +205017,2512,Golden Palm,1242728430 +205017,2858,Oscar (Best Picture),1242692254 +205017,3091,Golden Palm,1242693215 +205017,3155,Jodie Foster,1262006179 +205017,7371,Lars von Trier,1256767454 +205017,27831,Matthew Vaughn,1280310307 +205017,38499,Meryl Streep,1242748638 +205017,54259,Matthew Vaughn,1280310291 +205017,58937,acting,1298222492 +205017,58937,lengthy,1298222488 +205017,74327,Catherine Deneuve,1344213235 +205017,74624,Everything,1281994195 +205017,76251,Matthew Vaughn,1280310301 +205045,72866,holocaust,1420914712 +205045,72866,italian,1420914712 +205045,72866,luchino visconti,1420914712 +205045,117517,alex ross perry,1421535710 +205045,117517,elisabeth moss,1421535710 +205045,117517,jason schwartzman,1421535710 +205062,260,George Lucas,1437955315 +205062,260,sci-fi,1437955307 +205062,296,charles bukowski,1437956194 +205062,296,pop culture references,1437956194 +205062,296,quentin tarantino,1437956194 +205067,34405,Firefly,1150538412 +205067,34405,scifi,1150538415 +205067,34405,western,1150538407 +205067,45186,Ethan Hunt Should Stop Hogging The Screen!,1150538322 +205073,4027,black comedy,1439970003 +205073,4027,great soundtrack,1439970009 +205073,7438,Quentin Tarantino,1439969974 +205073,7438,quirky,1439969980 +205073,7438,stylized,1439969986 +205083,58,italian bittersweet romance,1357748187 +205083,58,Massimo Troisi,1357748179 +205083,58,poetry,1357748192 +205083,58,Sicily,1357748197 +205083,247,based on a true story,1357303586 +205083,247,New Zealand,1357303578 +205083,247,Peter Jackson,1357303582 +205083,247,surreal,1357303566 +205083,247,surrealism,1357303570 +205083,296,Black comedy,1293035166 +205083,296,classic,1293035181 +205083,296,nonlinear,1293035171 +205083,296,quirky,1293035184 +205083,296,Samuel L. Jackson,1293035175 +205083,590,culture clash,1293035216 +205083,928,cinematography,1337445931 +205083,928,fascinating,1337445907 +205083,928,suspense,1337445920 +205083,965,literary adaptation,1357830959 +205083,1200,aliens,1324995555 +205083,1200,sci-fi,1324995550 +205083,1259,coming of age,1357831313 +205083,1625,mindfuck,1357302462 +205083,1625,psychological,1357302458 +205083,1625,twist ending,1357302460 +205083,1748,aliens,1315930851 +205083,1748,dark fantasy,1315930861 +205083,1748,like a comic book,1315930875 +205083,1748,predictable ending,1315930843 +205083,2176,atmospheric,1357831203 +205083,2176,long takes,1357831198 +205083,2529,original,1347363793 +205083,2529,social commentary,1347363781 +205083,2529,twist ending,1347363783 +205083,2664,END OF THE WORLD,1357302438 +205083,2664,horror,1357302429 +205083,2664,paranoid,1357302426 +205083,2664,sci-fi,1357302435 +205083,2664,tense,1357302430 +205083,2858,thought-provoking,1357831499 +205083,2959,atmospheric,1293035057 +205083,2959,Edward Norton,1293035060 +205083,2959,twist ending,1293035078 +205083,3868,Funny as hell,1325409713 +205083,3868,Leslie Nielsen,1325409723 +205083,3868,parody,1325409731 +205083,3869,I laughed continuosly throughout this film,1325409756 +205083,4226,dreamlike,1293035311 +205083,4226,memory,1293035297 +205083,4226,psychological,1293035299 +205083,4226,stylized,1293035301 +205083,4226,tense,1293035303 +205083,4226,twist ending,1293035307 +205083,4546,chilly,1369160903 +205083,4546,disturbing,1369160908 +205083,4546,eerie,1369160910 +205083,4546,kidnapping,1369160948 +205083,4546,Obsession,1369160959 +205083,4720,keep you up at night,1337446177 +205083,4720,scary,1337446162 +205083,4720,twist ending,1337446198 +205083,5772,college student conversation,1337795942 +205083,5772,naive,1337795885 +205083,5772,philosophical,1337795826 +205083,6385,Girl Power,1285238283 +205083,6385,New Zealand,1285238261 +205083,8464,american idiocy,1357831535 +205083,8464,Educational,1357831541 +205083,8464,fabricated,1357831572 +205083,8464,inaccurate,1357831592 +205083,8464,lies,1357831556 +205083,8464,out-of-date,1357831625 +205083,8914,clever,1359993297 +205083,8914,intellectual,1359993319 +205083,8914,sci-fi,1359993292 +205083,8914,thought-provoking,1359993311 +205083,8914,time travel,1359993278 +205083,40732,claustrophobic,1358351529 +205083,40732,easily confused with other movie(s) (title),1358351539 +205083,40732,overrated,1358351516 +205083,40732,predictable,1358351525 +205083,52328,atmospheric,1358950915 +205083,52328,cinematography,1358950917 +205083,52328,sci-fi,1358950912 +205083,52328,spaceships,1358950913 +205083,54372,romantic,1446039744 +205083,55908,intellectual,1293034940 +205083,55908,philosophical,1293034886 +205083,56145,depressing,1383068525 +205083,56145,horrible finish,1383068525 +205083,56145,sci-fi,1383068563 +205083,56145,social commentary,1383068548 +205083,56145,unsatisfying ending,1383068542 +205083,56145,will leave you feeling suicidal,1383068600 +205083,56339,creepy,1354368987 +205083,56339,Guillermo del Toro,1354368990 +205083,56339,husband-wife relationship,1354368978 +205083,56339,mother-son relationship,1354368972 +205083,56339,paranormal,1354369006 +205083,62511,confusing,1326111240 +205083,62511,depressing,1326111255 +205083,62511,long,1326111267 +205083,62511,surreal,1326111247 +205083,68237,claustrophobic,1313933325 +205083,68237,sad but good,1313933368 +205083,71135,amnesia,1358266708 +205083,71135,atmospheric,1358266729 +205083,71135,future,1358266714 +205083,71135,intense,1358266741 +205083,71135,post-apocalyptic,1358266694 +205083,71135,sci-fi,1358266696 +205083,71135,space travel,1358266698 +205083,71135,twist ending,1358266724 +205083,72226,Bill Murray,1357745748 +205083,72226,freaky,1357745780 +205083,72226,George Clooney,1357745745 +205083,72226,living puppets,1357745798 +205083,72226,Roald Dahl,1357745761 +205083,72226,stop motion,1357745764 +205083,72226,talking animals,1357745753 +205083,72226,visually appealing,1357745755 +205083,74228,atmospheric,1315062609 +205083,74228,autism,1315062642 +205083,74228,gore,1315062649 +205083,74228,gripping,1315062583 +205083,74228,surreal,1315062589 +205083,74228,time loop,1315062596 +205083,74228,time travel,1315062631 +205083,74458,atmospheric,1316368868 +205083,74458,blood,1316368821 +205083,74458,intense,1316368808 +205083,74458,Martin Scorsese,1316368865 +205083,74458,psychological,1316368856 +205083,74458,shocking ending,1316368808 +205083,74458,twist ending,1316368851 +205083,80969,intense,1336576614 +205083,80969,sad ending,1336576639 +205083,80969,thought provoking,1336576657 +205083,85412,Comedy,1357577612 +205083,85412,mockumentary,1357577579 +205083,85412,mythology,1357577576 +205083,85412,scenic,1357577591 +205083,85412,smell christians,1357577621 +205083,85414,dumbed down,1313931299 +205083,85414,suspense,1313931255 +205083,86833,bittersweet,1339511932 +205083,86833,crude humor,1339511870 +205083,86833,flawed characters,1339511940 +205083,86833,good soundtrack,1339511881 +205083,86833,little britain,1339511919 +205083,86833,poop humor,1339511848 +205083,86833,unlikeable characters,1339511842 +205083,86898,beautifully filmed,1341678512 +205083,86898,cinematography,1341678518 +205083,86898,confusing,1341678593 +205083,86898,dinosaurs,1341678588 +205083,86898,Slow pacing,1341678575 +205083,86898,surreal,1341678530 +205083,86898,thought-provoking,1341678546 +205083,86898,Very long,1341678564 +205083,88129,atmospheric,1345861225 +205083,88129,car chase,1345861250 +205083,88129,cinematography,1345861221 +205083,88129,great soundtrack,1345861231 +205083,88129,tense,1345861241 +205083,88129,violence,1345861238 +205083,88163,plot twists,1324994245 +205083,88163,realistic,1324994245 +205083,90376,bad sound,1337534076 +205083,90376,disturbing,1337534018 +205083,90376,insanity,1337534109 +205083,90376,nihilism,1337534064 +205083,90376,psychological,1337534060 +205083,90376,tilda swinton,1337534056 +205083,90376,unfitting soundtrack,1337534047 +205083,90376,violence,1337534092 +205083,93840,clever,1350584655 +205083,93840,dark comedy,1350584682 +205083,93840,gore,1350584686 +205083,93840,Nudity (Topless),1350584674 +205083,93840,original,1350584653 +205083,93840,original plot,1350584658 +205083,93840,social commentary,1350584713 +205083,94864,3D version,1347363104 +205083,94864,dialogue,1347362952 +205083,94864,Imax version,1347363117 +205083,94864,religious overtones,1347363099 +205083,94864,Ridley Scott,1347363087 +205083,94864,scifi,1347362928 +205083,94864,space travel,1347363094 +205083,94864,technology,1347362944 +205083,95558,Camera d'Or winner,1355487110 +205083,95558,emotional,1355487101 +205083,95558,original,1355487106 +205083,95558,Quvenzhane Wallis,1355487168 +205083,95558,sad,1355487133 +205083,95558,Sundance 2012 Grand Jury Prize: Dramatic,1355487113 +205083,96079,atmospheric,1362471805 +205083,96079,beautifully filmed,1362471786 +205083,96079,cinematography,1362471788 +205083,96079,James Bond,1362471790 +205083,96079,London,1362471794 +205083,96079,spies,1362471801 +205083,96079,thriller,1362471799 +205083,96610,complicated plot,1356271772 +205083,96610,sci-fi,1356271740 +205083,96610,thriller,1356271758 +205083,96610,time travel,1356271733 +205083,96610,violent,1356271856 +205083,96610,visually appealing,1356271747 +205083,97866,documentary,1357840479 +205083,97866,Edge of your seat,1357840454 +205083,97866,fascinating,1357840372 +205083,97866,mind-blowing,1357840396 +205083,97866,riveting,1357840533 +205083,97866,surreal,1357840432 +205083,97866,tense,1357840431 +205083,97866,true story,1357840467 +205083,97866,unforgettable,1357840504 +205083,97913,animation,1362472149 +205083,97913,disney,1362472167 +205083,97913,nostalgic,1362472165 +205083,97913,video games,1362472153 +205083,97923,acting,1362471946 +205083,97923,alcoholism,1362471903 +205083,97923,Denzel Washington,1362471901 +205083,97923,Don Cheadle,1362471906 +205083,97923,John Goodman,1362471910 +205083,97923,plane crash,1362471916 +205087,260,classic sci fi,1440050599 +205087,260,good vs evil,1440050607 +205090,145,böse jungs,1161425778 +205090,150,space,1161425806 +205090,5679,rund,1161425763 +205117,260,space battle,1436711010 +205117,260,starship,1436710989 +205117,135887,banana,1436901800 +205117,135887,bob,1436901800 +205117,135887,crown,1436901800 +205202,26828,Hulk Hogan,1206736054 +205204,1213,Martin Scorsese,1311553260 +205204,1213,Robert De Niro,1311553258 +205204,2728,slavery,1323125271 +205221,260,deep universe,1431335480 +205221,260,space,1431335497 +205221,296,english,1431336183 +205221,296,hardcore,1431336183 +205221,296,humour,1431336183 +205221,1206,hardcore,1431336070 +205233,106441,sad,1428902346 +205233,106441,sweet,1428902346 +205233,106441,world war ii,1428902346 +205241,148426,so bad it's good,1452541729 +205270,5618,anime,1438157508 +205270,5618,Studio Ghibli,1438157533 +205270,6874,martial arts,1438157437 +205296,551,atmospheric,1417412391 +205296,551,beautiful,1417412409 +205296,551,Chris Sarandon,1417412431 +205296,551,Christmas,1417412390 +205296,551,cult film,1417412406 +205296,551,great soundtrack,1417412406 +205296,551,lavish,1417412429 +205296,551,stop motion,1417412408 +205296,551,stylized,1417412412 +205296,589,assassin,1417412508 +205296,589,dystopia,1417412496 +205296,589,future,1417412505 +205296,589,Linda Hamilton,1417412519 +205296,589,stylized,1417412510 +205296,589,Suspense,1417412505 +205296,589,tension,1417412609 +205296,589,time travel,1417412495 +205296,589,time-travel,1417412629 +205296,593,cannibalism,1421901694 +205296,593,cat and mouse,1421901694 +205296,593,fbi,1421901694 +205296,1206,atmospheric,1417410149 +205296,1206,brutal,1417410320 +205296,1206,Creepy good,1417410428 +205296,1206,cult film,1417410138 +205296,1206,Dehumanization,1417410331 +205296,1206,Experiment Gone Wrong,1417410346 +205296,1206,future,1417410202 +205296,1206,good soundtrack,1417410360 +205296,1206,great music,1417410359 +205296,1206,great soundtrack,1417409897 +205296,1206,irreverent,1417410174 +205296,1206,Malcolm McDowell,1417410187 +205296,1206,Malcom McDowell,1417410359 +205296,1206,masterpiece,1417410162 +205296,1206,prison,1417409897 +205296,1206,psychological,1417410173 +205296,1206,psychological torment,1417410246 +205296,1206,rape,1417410164 +205296,1206,scantily clad female,1417410266 +205296,1206,soundtrack,1417410382 +205296,1206,stanley kubrick,1417409887 +205296,1206,stylized,1417410150 +205296,1206,surreal,1417410152 +205296,1206,Tits,1417410281 +205296,1206,use of music,1417410233 +205296,1206,Villain Played By Lead Actor,1417410412 +205296,1222,soundtrack,1417411996 +205296,1222,Stanley Kubrick,1417411969 +205296,1682,alone in the world,1417411732 +205296,1682,alternate reality,1417411712 +205296,1682,atmospheric,1417411935 +205296,1682,cerebral,1417411719 +205296,1682,identity,1417411739 +205296,1682,life in general,1417411941 +205296,1682,living a fictional life,1417411920 +205296,1682,paranoia,1417411721 +205296,1682,reflective,1417411753 +205296,1682,small town,1417411716 +205296,1682,smalltown,1417411939 +205296,1682,stylized,1417411714 +205296,1682,surreal,1417411734 +205296,1916,austere,1417410009 +205296,1916,dialogue driven,1417409661 +205296,1916,directorial debut,1417409932 +205296,1916,elegiac,1417409964 +205296,1916,ensemble cast,1417409985 +205296,1916,kidnapping,1417409932 +205296,1916,Mickey Rourke,1417409986 +205296,1916,stockholm syndrome,1417409933 +205296,1916,stylized,1417410009 +205296,1916,The end of the solitude,1417409635 +205296,1916,Vincent Gallo,1417409663 +205296,1923,crude humor,1421908671 +205296,1923,raunchy,1421908741 +205296,2712,atmospheric,1417409726 +205296,2712,Christmas,1417409595 +205296,2712,dreamlike,1417409716 +205296,2712,enigmatic,1417409604 +205296,2712,lavish,1417411670 +205296,2712,moody,1417411667 +205296,2712,notable soundtrack,1417409697 +205296,2712,ominous,1417411654 +205296,2712,orgy,1417411664 +205296,2712,paranoia,1417409769 +205296,2712,psychological,1417409738 +205296,2712,Stanley Kubrick,1417409584 +205296,2712,surreal,1417409718 +205296,2712,thriller,1417409770 +205296,2729,kidnapping,1417411571 +205296,2729,obsession,1417411561 +205296,2729,paranoia,1417411571 +205296,2729,Peter Sellers,1417411559 +205296,2729,Stanley Kubrick,1417411559 +205296,3160,bleak,1417411388 +205296,3160,cathartic,1417411474 +205296,3160,crumbling lives,1417411494 +205296,3160,downbeat,1417411496 +205296,3160,elegiac,1417411494 +205296,3160,ensemble cast,1417411383 +205296,3160,existential,1417411474 +205296,3160,highly symbolic,1417411500 +205296,3160,humanizing,1417411521 +205296,3160,INTERSECTING LIVES,1417411481 +205296,3160,John C. Reilly,1417411510 +205296,3160,multiple storylines,1417411416 +205296,3160,P.T. Anderson,1417411477 +205296,3160,Paul Thomas Anderson,1417411404 +205296,3160,Philip Seymour Hoffman,1417411415 +205296,3160,poignant,1417411440 +205296,3160,PT Anderson,1417411511 +205296,3160,religious overtones,1417411414 +205296,3160,stylized,1417411383 +205296,3160,visually appealing,1417411440 +205296,3307,bittersweet,1417411323 +205296,3307,Charlie Chaplin,1417411322 +205296,3307,stylized,1417411325 +205296,3307,sweet,1417411324 +205296,3716,Brad Dourif,1417413635 +205296,4226,Carrie-Anne Moss,1417410967 +205296,4226,cerebral,1417411051 +205296,4226,Christopher Nolan,1417410951 +205296,4226,cult film,1417411063 +205296,4226,dark,1417411060 +205296,4226,death,1417410949 +205296,4226,great ending,1417411053 +205296,4226,gritty,1417411015 +205296,4226,Guy Pearce,1417410954 +205296,4226,HAUNTED BY THE PAST,1417411264 +205296,4226,identity,1417411114 +205296,4226,investigation,1417410944 +205296,4226,Joe Pantoliano,1417411141 +205296,4226,Mindfuck,1417411063 +205296,4226,MISTAKEN IDENTITIES,1417411276 +205296,4226,paranoia,1417411001 +205296,4226,paranoid,1417410946 +205296,4226,plot holes,1417411140 +205296,4226,plot twist,1417411011 +205296,4226,psychological,1417410920 +205296,4226,psychothriller,1417411252 +205296,4226,revenge,1417411058 +205296,4226,stylized,1417410920 +205296,4226,tense,1417410995 +205296,4226,twist ending,1417411101 +205296,4226,twists & turns,1417410999 +205296,4226,violence,1417411051 +205296,5673,awkward,1417410051 +205296,5673,bittersweet,1417409781 +205296,5673,music,1417409789 +205296,5673,P.T. Anderson,1417410098 +205296,5673,Paul Thomas Anderson,1417409782 +205296,5673,Philip Seymour Hoffman,1417410041 +205296,5673,PT Anderson,1417410103 +205296,5673,surreal,1417410122 +205296,5673,tense,1417409791 +205296,5673,underrated,1417409784 +205296,6874,assassin,1417412269 +205296,6874,Quentin Tarantino,1417412265 +205296,6874,revenge,1417412277 +205296,6874,stylized,1417412263 +205296,38188,non-actors,1417410522 +205296,38188,realism,1417410517 +205296,46578,Best soundtrack,1417410697 +205296,46578,clever,1417410769 +205296,46578,dark comedy,1417410818 +205296,46578,dramedy,1417410857 +205296,46578,existential,1417410767 +205296,46578,flawed characters,1417410767 +205296,46578,independent film,1417410792 +205296,46578,irreverent,1417410678 +205296,46578,road movie,1417410802 +205296,46578,road trip,1417410628 +205296,46578,twist ending,1417410681 +205296,46578,uplifting,1417410697 +205296,86320,apocalypse,1417412037 +205296,86320,beautiful,1417412032 +205296,86320,beautiful cinematography,1417412184 +205296,86320,beautiful music,1417412070 +205296,86320,big themes,1417412076 +205296,86320,Charlotte Gainsbourg,1417412041 +205296,86320,Charlotte Gainsburg,1417412207 +205296,86320,cinematography,1417412032 +205296,86320,claustrophobic,1417412063 +205296,86320,depression,1417412038 +205296,86320,end of the world,1417412045 +205296,86320,introspective,1417412050 +205296,86320,Kirsten Dunst,1417412034 +205296,86320,Lars von Trier,1417412035 +205296,86320,Magic realism,1417412043 +205296,86320,metaphoric images,1417412052 +205296,86320,metaphors,1417412074 +205296,86320,sense of futility,1417412066 +205296,86320,slow,1417412048 +205296,117907,destructive relationship,1417410603 +205296,117907,humanizing,1417410615 +205296,117907,low budget,1417410533 +205296,117911,existential,1417411610 +205296,117911,stop-motion animation,1417411623 +205305,8361,full hd,1237268521 +205305,44555,East Germany,1230066070 +205305,44555,Germany,1230066070 +205305,59026,based on a book,1230066003 +205305,59026,French,1230066003 +205305,95510,Teenmovie,1379174822 +205305,101296,Almodovar,1380145573 +205305,101296,farce,1380145416 +205305,111743,funny,1416847573 +205305,111743,Seth MacFarlane,1416847579 +205307,6016,Brasil,1151340673 +205310,80939,emotional,1294527118 +205331,7147,dreamlike,1429459246 +205331,7147,quirky,1429459242 +205331,7147,surreal,1429459244 +205331,59387,beautiful cinematography,1429459276 +205331,59387,story-in-a-story,1429459273 +205331,59387,visually stunning,1429459270 +205331,72171,Doesn't take itself seriously,1429459183 +205331,72171,parody,1429459178 +205349,858,classic,1446485645 +205349,858,Mafia,1446485636 +205349,858,Marlon Brando,1446485626 +205378,260,fantasy,1436983159 +205378,260,space,1436983152 +205404,1249,In Netflix Queue,1149541930 +205438,260,Science Fiction,1441994512 +205438,260,space adventure,1441994530 +205442,3681,Clint Eastwood,1437725511 +205442,3681,spaghetti western,1437725503 +205442,6711,atmospheric,1437725574 +205442,6711,Bill Murray,1437725577 +205442,89904,different,1437725766 +205442,89904,silent movie,1437725754 +205442,89904,visually appealing,1437725768 +205442,107406,post-apocalyptic,1437725803 +205459,60568,alien,1426972218 +205459,60568,horror,1426972218 +205459,60568,teacher,1426972218 +205459,96950,french,1425503281 +205459,96950,miscarriage of justice,1425503281 +205459,96950,paedophilia,1425503281 +205481,3977,fun,1441175627 +205481,6874,wacky,1441175559 +205488,101864,future,1442186530 +205501,260,classic sci-fi,1437159954 +205501,260,space adventure,1437160021 +205501,32898,classic,1437162384 +205501,32898,experimental,1437162384 +205501,32898,sci-fi,1437162384 +205505,3978,Charlize Theron,1276977863 +205505,3978,good ending,1276977855 +205505,3978,Matt Damon,1276977847 +205505,3978,Will Smith,1276977866 +205505,72641,Sandra Bullock,1276977635 +205505,72641,sports,1276977642 +205505,72641,Tim McGraw,1276977645 +205505,72641,true story,1276977648 +205512,260,future fantasy,1442687723 +205512,260,good vs evil,1442687732 +205512,260,great visual effects,1442687753 +205512,260,sci-fi,1442687715 +205524,47,atmospheric,1404418920 +205524,47,dark,1404418911 +205524,47,investigation,1404418911 +205524,47,philosophical,1404418911 +205524,47,serial killer,1404418911 +205524,2105,innovative,1404418749 +205524,2105,metaphorical,1404418749 +205524,2105,sci fi,1404418748 +205524,2105,sci-fi,1404418748 +205524,2105,stylish,1404418748 +205524,2105,technology,1404418748 +205524,2105,virtual reality,1404418748 +205524,6250,anal hemorrhage,1404418460 +205524,6250,disturbing,1404418460 +205524,6250,dumb plot,1404418423 +205524,6250,gratuitous gore,1404418423 +205524,6250,pointless,1404418423 +205524,6250,stupid,1404418423 +205524,6250,waste of time,1404418439 +205524,6703,betrayal,1404418987 +205524,6703,dark,1404418987 +205524,6703,detectives,1404418987 +205524,6703,human sacrifice,1404418987 +205524,6703,investigation,1404418998 +205524,6703,metaphor,1404418998 +205524,6703,murder,1404418987 +205524,6703,secret society,1404418987 +205524,6703,supernatural,1404418987 +205524,6703,symbolism,1404418987 +205524,8371,dark,1404418628 +205524,8957,gore,1404418037 +205524,8957,gratuitous violence,1404418029 +205524,8957,sadism,1404418037 +205524,34292,dystopian,1404083303 +205524,34292,industrial music,1404083283 +205524,34292,radioactive wasteland,1404083317 +205524,34292,robot,1404083310 +205524,39446,sadism,1404418052 +205524,64497,intelligent,1404418591 +205524,64497,smart,1404418591 +205524,64497,social commentary,1404418591 +205524,67255,antihero,1404417790 +205524,67255,crime,1404417795 +205524,67255,female protagonist,1404417772 +205524,67255,goth,1404417777 +205524,67255,gothic,1404417783 +205524,67255,investigation,1404417804 +205524,73323,atmospheric,1404417950 +205524,73323,conspiracy,1404417920 +205524,73323,court,1404417921 +205524,73323,crime,1404417920 +205524,73323,dark,1404417921 +205524,73323,goth,1404417920 +205524,73323,gothic,1404417920 +205524,73323,investigation,1404417921 +205524,73323,justice,1404417920 +205524,73323,sweden,1404417920 +205524,73323,swedish,1404417920 +205524,82095,boring,1404418550 +205524,82095,dumb,1404418549 +205524,82095,gratuitous death,1404418550 +205524,82095,insignificance,1404418549 +205524,82095,no plot,1404418550 +205524,82095,pointless,1404418550 +205524,82095,random pointless death,1404418549 +205524,82095,stupid ending,1404418558 +205524,82095,waste of time,1404418549 +205524,82461,alternate reality,1404418698 +205524,82461,artificial intelligence,1404418708 +205524,82461,ethics,1404418698 +205524,82461,futuristic,1404418698 +205524,82461,great soundtrack,1404418716 +205524,82461,innovative,1404418698 +205524,82461,philosophical overtomes,1404418698 +205524,82461,sci fi,1404418698 +205524,82461,sci-fi,1404418698 +205524,82461,science fiction,1404418698 +205524,82461,sleek,1404418698 +205524,82461,stylish,1404418698 +205524,82461,virtual reality,1404418698 +205524,88129,antihero,1404418844 +205524,88129,dark,1404418844 +205524,88129,intj,1404418844 +205524,88129,introvert,1404418844 +205524,88129,quiet,1404418844 +205524,91658,cinematography,1404417873 +205524,91658,crime,1404417814 +205524,91658,dark,1404417852 +205524,91658,goth,1404417819 +205524,91658,gothic,1404417852 +205524,91658,great soundtrack,1404417852 +205524,91658,investigation,1404417852 +205524,91658,murder,1404417824 +205524,91658,serial killer,1404417873 +205524,91658,sweden,1404417878 +205524,93840,dark,1404418256 +205524,93840,mythology,1404418256 +205524,93840,smart dialogue,1404418256 +205524,93840,social commentary,1404418256 +205524,103411,autopsy,1404416773 +205524,103411,dark,1404416799 +205524,103411,doctor,1404416767 +205524,103411,grave robbers,1404416756 +205524,103411,grim,1404416795 +205524,103411,historical,1404416792 +205524,103411,medical study,1404416781 +205524,103411,murder,1404416763 +205524,103411,victorian,1404416749 +205554,296,crime,1421955927 +205554,296,drama,1421955927 +205554,296,oscar (best writing - screenplay written directly for the screen),1421955927 +205559,53125,funny,1422116065 +205559,53125,mystery,1422115986 +205559,53125,surreal,1422115948 +205582,998,action packed,1313344985 +205582,34162,owen wilson,1313346658 +205582,34162,vince vaughn,1313346658 +205582,47099,amazing actors and good story line,1313344696 +205582,47644,boring and dragged out,1313344738 +205582,47644,mark wahlberg,1313344769 +205582,49530,dragged,1313345138 +205582,49530,leonardo dicaprio,1313345157 +205582,55288,suspenseful and sad,1313344900 +205582,55872,uplifting and compelling,1313345108 +205582,69712,cloning,1313345211 +205582,69712,good plot and wonderful actors,1313345211 +205582,69712,very sad,1313345211 +205582,72731,beautiful scenery,1313345824 +205582,72731,ending sucked,1313345824 +205582,72731,mark wahlberg,1313345824 +205582,72731,susan sarrandon,1313345824 +205582,75341,ending sucked,1313345056 +205582,75341,robert pattinson,1313345056 +205582,85367,funny,1313346388 +205582,85367,jennifer anniston,1313346400 +205582,86293,stupid,1313344835 +205582,86295,dragged and boring,1313345880 +205582,86295,unpredictable ending,1313345880 +205582,87921,boring plot,1313346258 +205584,103541,engaging,1430491837 +205584,103541,heartfelt,1430491837 +205584,103541,touching,1430491837 +205584,103606,dysfunctional family,1426982366 +205584,103606,heartwarming,1426982366 +205584,103606,sweet and romantic,1426982366 +205584,113071,cute,1428192393 +205584,113071,sci-fi,1428192393 +205584,113071,watch with kids,1428192393 +205611,296,crime,1427742330 +205611,296,highly quotable,1427742330 +205611,296,non-linear,1427742330 +205633,260,sci-fi,1439069448 +205633,260,space adventure,1439069436 +205636,32587,Action,1335158335 +205636,32587,comic book,1335158331 +205636,32587,Quentin Tarantino,1335158336 +205675,148367,pixar,1449450203 +205675,148367,pixar short,1449450199 +205675,148367,short,1449450207 +205684,1748,Neo-noir,1430057167 +205684,3752,crude,1437150678 +205684,65514,martial arts,1420999222 +205684,108583,TV Series,1420229071 +205684,114925,Boring,1436096709 +205684,115680,Bad acting,1436023684 +205684,119218,fan film,1420897927 +205684,119218,short films,1420897927 +205684,119218,violence,1420897927 +205684,131013,Crude,1437150506 +205687,104597,horrible acting,1378025902 +205691,2519,Frank Lloyd Wright,1137558300 +205716,260,have not seen it,1442666964 +205716,7445,soft side of an ex-CIA operative,1442669109 +205716,49272,love Daniel Craig,1442667521 +205716,49272,made James Bond human like,1442667539 +205716,49530,action,1442669142 +205716,49530,emotional,1442669150 +205716,73017,detective,1442669042 +205716,73017,entertaining,1442668991 +205716,108932,good for kids and adults,1442667474 +205716,108932,loved it,1442667451 +205748,2571,dystopia,1225243555 +205748,2571,sci-fi,1225243539 +205748,2571,virtual reality,1225243547 +205774,260,great soundtrack,1441796801 +205774,260,Science Fiction,1441796794 +205778,128594,heartwarming,1438723547 +205778,128594,life affirming,1438723547 +205778,128594,transgender,1438723547 +205784,260,1970s,1437324321 +205784,260,star wars,1437324309 +205838,858,classic,1253066321 +205838,858,melancholy,1253066338 +205838,858,organized crime,1253066343 +205838,858,Oscar (Best Picture),1253066327 +205838,6873,coen bros,1253066424 +205838,6873,divorce,1253066441 +205838,6873,farce,1253066422 +205838,6873,George Clooney,1253066418 +205838,6873,lawyers,1253066444 +205838,6873,money,1253066448 +205838,6873,piss funny,1253066429 +205838,6873,seen more than once,1253066437 +205838,41285,clever,1253066184 +205838,41285,immoral,1253066210 +205838,41285,interesting,1253066194 +205838,41285,Scarlett Johansson,1253066177 +205838,41285,tennis,1253066197 +205838,41285,Woody Allen,1253066180 +205859,356,adventure,1436807106 +205859,356,drama,1436807106 +205859,356,life story,1436807106 +205864,32,great ending,1368570624 +205864,32,original,1368570352 +205864,47,great ending,1368570624 +205864,50,great acting,1368570569 +205864,50,storytelling,1368570418 +205864,70,cult classic,1368570582 +205864,111,loneliness,1368570457 +205864,150,dramatic,1368570488 +205864,169,family,1368570607 +205864,296,storytelling,1368570418 +205864,318,great acting,1368570568 +205864,318,great ending,1368570624 +205864,455,family,1368570607 +205864,508,dramatic,1368570489 +205864,593,great acting,1368570568 +205864,804,relationships,1368570521 +205864,858,great acting,1368570569 +205864,858,oscar (best directing),1368570474 +205864,913,talky,1368570647 +205864,971,talky,1368570646 +205864,1015,family,1368570607 +205864,1016,family,1368570607 +205864,1089,original,1368570352 +205864,1172,mentor,1368570381 +205864,1175,weird,1368570538 +205864,1199,cerebral,1368570674 +205864,1199,visually appealing,1368570553 +205864,1199,weird,1368570538 +205864,1210,great ending,1368570624 +205864,1213,oscar (best directing),1368570474 +205864,1248,criterion,1368570440 +205864,1260,talky,1368570646 +205864,1275,mentor,1368570381 +205864,1305,loneliness,1368570457 +205864,1307,relationships,1368570521 +205864,1358,oscar (best directing),1368570474 +205864,1466,mentor,1368570382 +205864,1527,visually appealing,1368570553 +205864,1552,action,1368570505 +205864,1617,great acting,1368570568 +205864,1704,mentor,1368570381 +205864,1722,action,1368570505 +205864,1748,cerebral,1368570674 +205864,1952,loneliness,1368570457 +205864,1991,horror,1368570595 +205864,2108,story,1368570661 +205864,2167,action,1368570505 +205864,2194,oscar (best directing),1368570474 +205864,2291,original,1368570352 +205864,2315,horror,1368570595 +205864,2335,comedy,1368570396 +205864,2355,story,1368570661 +205864,2371,comedy,1368570396 +205864,2394,story,1368570661 +205864,2420,mentor,1368570381 +205864,2460,horror,1368570595 +205864,2762,great ending,1368570624 +205864,2858,great acting,1368570568 +205864,3006,dramatic,1368570489 +205864,3018,horror,1368570595 +205864,3105,dramatic,1368570488 +205864,3147,oscar (best directing),1368570474 +205864,3157,family,1368570607 +205864,3421,comedy,1368570395 +205864,3740,cult classic,1368570582 +205864,3949,oscar (best directing),1368570474 +205864,3986,action,1368570505 +205864,4085,comedy,1368570395 +205864,4128,cult classic,1368570582 +205864,4226,storytelling,1368570418 +205864,4878,cerebral,1368570674 +205864,4878,original,1368570352 +205864,4878,weird,1368570538 +205864,5452,family,1368570607 +205864,5945,loneliness,1368570457 +205864,5995,dramatic,1368570488 +205864,6188,comedy,1368570396 +205864,6987,criterion,1368570440 +205864,7147,story,1368570660 +205864,7153,great ending,1368570624 +205864,7327,criterion,1368570440 +205864,7438,storytelling,1368570418 +205864,8154,criterion,1368570440 +205864,8641,comedy,1368570396 +205864,32587,storytelling,1368570418 +205864,37729,visually appealing,1368570553 +205864,50872,story,1368570660 +205864,56782,cerebral,1368570674 +205864,60684,visually appealing,1368570553 +205864,64839,loneliness,1368570457 +205864,79132,cerebral,1368570674 +205864,79132,cinematography,1298065575 +205864,79132,editing,1298065575 +205878,112940,espionage,1424349191 +205878,112940,terrorism,1424349191 +205878,112940,thriller,1424349191 +205892,4720,crap,1137260448 +205892,34405,crap,1137260447 +205894,109487,interesting ideea,1447857187 +205894,109487,sci-fi,1447857163 +205894,109487,time-travel,1447857172 +205918,1676,futuristic,1378055112 +205918,1676,military,1378055110 +205918,1676,space,1378055126 +205918,1676,war,1378055123 +205918,3452,fight scenes,1378058584 +205918,3452,Jet Li,1378058588 +205918,3452,kung fu,1378058592 +205918,3977,Bill Murray,1378057945 +205918,7325,Ben Stiller,1378058724 +205918,42385,Luc Besson,1378058864 +205918,44195,satire,1378055035 +205918,45726,Owen Wilson,1378058088 +205918,59315,visually appealing,1378055293 +205918,60074,anti-hero,1378055251 +205918,60074,better than expected,1378055243 +205918,60684,sci-fi,1378057924 +205918,60684,social commentary,1378057929 +205918,69526,action,1378058459 +205918,69526,robots,1378058456 +205918,76251,dark comedy,1378060092 +205918,77561,sequel,1378055321 +205918,79057,action,1378059614 +205918,79057,aliens,1378059618 +205918,83613,better than expected,1378055179 +205918,83613,love story,1378055184 +205918,86882,quirky,1378059076 +205918,88129,atmospheric,1378059203 +205918,88163,funny,1378059092 +205918,94677,sacha baron cohen,1378059564 +205918,94864,atmospheric,1378060800 +205936,163,sequel,1153710106 +205936,866,wachowski bros.,1153710637 +205936,2248,cameron crowe,1153710668 +205936,2248,john cusack,1153710668 +205936,2648,boris karloff,1153710785 +205936,2648,james whale,1153710786 +205936,4210,michael mann,1153710551 +205936,8158,cops,1153710308 +205936,8158,drugs,1153710324 +205936,8167,pirates,1153710446 +205936,8755,influences,1153710510 +205936,8755,martin scorsese,1153710510 +205944,260,classic,1433034946 +205944,260,sci-fi,1433034938 +205967,8640,Rus,1413496441 +205967,26602,boy savior,1316045489 +205967,53140,made for TV,1316046326 +205967,65216,Belorus,1414008876 +205967,65216,Partisans,1414008892 +205967,65216,Russian,1414008908 +205967,66198,shootout,1412811876 +205967,89490,rape,1317256788 +205967,93363,adapted from:book,1412809687 +205967,93363,author:Edgar Rice Burroughs,1412809686 +205967,96417,pacing,1412810782 +205967,101137,shootout,1412811859 +205967,106542,accents,1412947240 +205982,260,sci-fi,1439659811 +205982,260,space,1439659805 +205992,357,Comedy,1196734495 +205997,4017,manchurian,1137171905 +206004,1,animation,1348648369 +206004,22,agoraphobia,1306058142 +206004,22,female protagonist,1306058182 +206004,22,serial killer,1306058163 +206004,22,Sigourney Weaver,1306058124 +206004,22,trauma,1306058157 +206004,70,bar brawl,1268864697 +206004,70,brothers,1267983235 +206004,70,George Clooney,1267983232 +206004,70,horror,1267983274 +206004,70,mexico,1267983244 +206004,70,Quentin Tarantino,1267983225 +206004,70,Salma Hayek,1267983221 +206004,70,Sexualized violence,1267983261 +206004,70,twist ending,1267983250 +206004,111,assassination,1341567499 +206004,111,grim,1341567521 +206004,111,Jodie Foster,1341567538 +206004,111,Martin Scorsese,1341567481 +206004,111,OBSESSIVE QUESTS,1341567515 +206004,111,prostitution,1341567485 +206004,111,Robert De Niro,1341567541 +206004,111,social commentary,1341567488 +206004,184,artsy,1436095716 +206004,184,Peter Fonda,1436095672 +206004,188,Christianity,1315135702 +206004,188,Christopher Walken,1315135655 +206004,188,religion,1315135699 +206004,188,Slashy,1315135724 +206004,188,Viggo Mortensen,1315135659 +206004,196,creature feature,1427887554 +206004,235,affectionate,1268348756 +206004,235,black and white,1268348746 +206004,235,cross dressing,1268348750 +206004,235,gentle,1268348771 +206004,235,Martin Landau,1268348741 +206004,235,movie business,1268348739 +206004,235,Sarah Jessica Parker,1268348775 +206004,235,true story,1268348728 +206004,235,witty,1268348731 +206004,253,homosexual undertones,1268326631 +206004,253,vampires,1268326557 +206004,260,action,1267986623 +206004,260,adventure,1267986619 +206004,260,atmospheric,1267986601 +206004,260,Bechdel Test:Fail,1358100785 +206004,260,classic,1267986611 +206004,260,robots,1267986637 +206004,260,sci-fi,1267986614 +206004,260,sequel,1267986653 +206004,293,awkward romance,1269462151 +206004,296,Black comedy,1329389649 +206004,296,Bruce Willis,1329389674 +206004,296,multiple storylines,1331143242 +206004,296,nonlinear,1329389642 +206004,296,notable soundtrack,1329389640 +206004,296,organized crime,1329389669 +206004,296,Quentin Tarantino,1329389636 +206004,296,Uma Thurman,1329389685 +206004,296,violence,1329389665 +206004,303,Sam Raimi,1298228597 +206004,303,Sharon Stone,1298228594 +206004,313,animation,1404078047 +206004,313,musical,1404077969 +206004,313,swan lake,1404077962 +206004,316,guilty pleasure,1323113247 +206004,316,James Spader,1323113390 +206004,316,Jaye Davidson,1323113261 +206004,316,Kurt Russell,1323113256 +206004,316,sci-fi,1323113284 +206004,316,time travel,1323113269 +206004,318,compassionate,1316459375 +206004,318,friendship,1316459353 +206004,318,justice,1316459385 +206004,318,Morgan Freeman,1316459346 +206004,318,sentimental,1316459361 +206004,344,1990s,1268496112 +206004,364,coming of age,1268079262 +206004,364,father-son relationship,1268079219 +206004,364,fratricide,1268079493 +206004,364,Jeremy Irons,1268079241 +206004,364,lions,1268079249 +206004,366,Heather Langenkamp,1267990847 +206004,366,interesting,1267990885 +206004,366,intrigue,1267991754 +206004,366,possessed little kid,1267990857 +206004,366,Robert Englund,1267990851 +206004,390,kidnapping,1268348151 +206004,390,lesbian character,1268348171 +206004,390,murder,1268348154 +206004,390,quotable,1268348157 +206004,390,sexual,1268348212 +206004,390,Tura Satana,1268348148 +206004,464,Jean-Claude Van Damme,1340968800 +206004,464,John Woo,1340968803 +206004,464,Lance Henriksen,1340968797 +206004,480,adventure,1268326332 +206004,480,dinosaurs,1268326302 +206004,480,drama,1268326354 +206004,480,genetics,1268326316 +206004,480,horror,1268326318 +206004,480,Oscar (Best Effects - Visual Effects),1268326396 +206004,480,scenic,1268326308 +206004,480,sci-fi,1268326312 +206004,480,Suspense,1268326326 +206004,480,tyrannosaurus rex,1268326369 +206004,485,Arnold Schwarzenegger,1269462028 +206004,485,parody,1269462024 +206004,505,Bruce Willis,1277220001 +206004,505,offensive,1277220021 +206004,505,stereotypes,1277220036 +206004,506,beautiful,1412190858 +206004,506,feminism,1412190650 +206004,506,gender identity,1412190690 +206004,506,history,1412190886 +206004,506,Life,1412190868 +206004,506,Nudity (Full Frontal),1412190538 +206004,506,Sally Potter,1412190847 +206004,506,Soundtrack,1412190862 +206004,506,stylized,1412190849 +206004,506,surreal,1412190892 +206004,506,Tilda Swinton,1412190661 +206004,506,transgender,1412190659 +206004,506,Virginia Woolf,1412190853 +206004,531,England,1268432708 +206004,531,fairy tale,1268432713 +206004,531,hypochondria,1268432690 +206004,541,androids,1279714130 +206004,541,artificial intelligence,1403732039 +206004,541,atmospheric,1279714138 +206004,541,cyberpunk,1403732025 +206004,541,existentialism,1403732056 +206004,541,fantasy,1403732048 +206004,541,Harrison Ford,1403732029 +206004,541,melancholy,1407923081 +206004,541,memory,1403732051 +206004,541,Philip K. Dick,1403732032 +206004,541,robots,1403732035 +206004,551,animated,1268078246 +206004,551,animation,1268078243 +206004,551,beautiful,1268078215 +206004,551,classic,1268078228 +206004,551,halloween,1268078237 +206004,551,musical,1268078197 +206004,551,Tim Burton,1268078254 +206004,551,whimsical,1268078231 +206004,558,boring,1283974478 +206004,586,sadistic,1279714881 +206004,589,androids,1279713960 +206004,589,Arnold Schwarzenegger,1279714015 +206004,589,artificial intelligence,1279713989 +206004,589,assassin,1279714010 +206004,589,mother-son relationship,1268432457 +206004,589,paradox,1279713994 +206004,589,Suspense,1279713997 +206004,589,Time paradox,1279714094 +206004,589,violence,1279714042 +206004,593,Anthony Hopkins,1267983626 +206004,593,Bechdel Test:Pass,1358097702 +206004,593,cannibalism,1279146116 +206004,593,classic,1267983673 +206004,593,crime,1267983636 +206004,593,disturbing,1267983638 +206004,593,drama,1267983703 +206004,593,Hannibal Lecter,1267983632 +206004,593,Jodie Foster,1267983629 +206004,593,mental illness,1267983724 +206004,593,psychiatrist,1294529614 +206004,593,psychology,1267983641 +206004,593,serial killer,1267983645 +206004,593,strong female lead,1294529581 +206004,593,suspense,1267983706 +206004,593,tense,1267983663 +206004,593,violent,1267983643 +206004,594,animation,1268075787 +206004,594,classic,1268075784 +206004,608,1980s,1341836490 +206004,608,Coen Brothers,1341836516 +206004,608,crime gone awry,1341836505 +206004,608,dark comedy,1341836502 +206004,608,hostage,1341836510 +206004,608,kidnapping,1341836493 +206004,608,quirky,1341836495 +206004,653,blood and guts,1268078289 +206004,653,dragons,1268078294 +206004,653,epic,1268078310 +206004,653,Sean Connery,1268078283 +206004,674,angel,1268350577 +206004,674,campy,1268350468 +206004,674,Jane Fonda,1268350484 +206004,674,Sexual Humor,1268350607 +206004,674,space travel,1268350495 +206004,714,atmospheric,1315942837 +206004,714,Bechdel Test:Fail,1358098869 +206004,714,black and white,1315942774 +206004,714,death,1315942782 +206004,714,dreamlike,1315942787 +206004,714,great soundtrack,1315942824 +206004,714,imagination,1315942803 +206004,714,Johnny Depp,1315942844 +206004,714,life,1325800451 +206004,714,melancholy,1315942770 +206004,714,strange,1315942818 +206004,714,surreal,1315942808 +206004,714,visionary,1315942810 +206004,714,western,1325800458 +206004,724,1990s,1268349453 +206004,724,Fairuza Balk,1271334296 +206004,724,girl power,1268349387 +206004,724,high school,1268349426 +206004,724,magic,1268349394 +206004,724,Neve Campbell,1271334285 +206004,724,Robin Tunney,1271334291 +206004,724,supernatural,1268349420 +206004,724,wicca,1268349400 +206004,724,witchcraft,1268349405 +206004,735,dreamlike,1275947578 +206004,735,living dead,1275947590 +206004,750,anti-war,1271355831 +206004,750,black and white,1271355926 +206004,750,cold war,1271355825 +206004,750,dark comedy,1271355808 +206004,750,nuclear war,1271355810 +206004,750,Peter Sellers,1271355813 +206004,750,satirical,1271355823 +206004,750,Stanley Kubrick,1271355815 +206004,750,visually appealing,1271355842 +206004,778,surreal,1374054475 +206004,780,Jeff Goldblum,1296333908 +206004,783,deformity,1268326781 +206004,783,lust,1268326752 +206004,783,Paris,1268326841 +206004,783,seduction,1268326796 +206004,841,atmospheric,1325664693 +206004,841,facial surgery,1325664728 +206004,841,gothic,1325664687 +206004,841,moody,1325664689 +206004,841,surgery,1325664728 +206004,879,creature feature,1438607613 +206004,903,Alfred Hitchcock,1268431558 +206004,903,Atmospheric,1268431563 +206004,903,HAUNTED BY THE PAST,1268431566 +206004,903,paranoid,1268431570 +206004,904,classic,1268076758 +206004,904,claustrophobic,1268076776 +206004,904,menacing,1268076787 +206004,904,mystery,1268076768 +206004,904,obsession,1268076779 +206004,904,photography,1268076796 +206004,904,suspense,1268076764 +206004,904,tense,1268076771 +206004,904,visually appealing,1268076815 +206004,904,voyeurism,1268076766 +206004,905,Screwball,1272832811 +206004,908,Cary Grant,1268078002 +206004,908,classic,1268078019 +206004,908,Clever,1268078023 +206004,908,Gay Character,1268078031 +206004,908,mistaken identity,1268078004 +206004,908,trains,1268078012 +206004,908,visually appealing,1268077995 +206004,908,witty,1268078010 +206004,913,Bechdel Test:Fail,1453148207 +206004,913,betrayal,1453148212 +206004,913,black and white,1453148111 +206004,913,drugged drink,1453148246 +206004,913,femme fatale,1453148265 +206004,913,film-noir,1453148220 +206004,913,funny,1453148315 +206004,913,highly quotable,1453148131 +206004,913,Humphrey Bogart,1453148113 +206004,913,Mary Astor,1453148186 +206004,913,murder,1453148134 +206004,913,mystery,1453148353 +206004,913,noir thriller,1453148117 +206004,913,partnership,1453148250 +206004,913,Peter Lorre,1453148115 +206004,913,private detective,1453148142 +206004,913,talky,1453148120 +206004,913,wise guy,1453148334 +206004,914,Oscar (Best Cinematography),1326108232 +206004,914,Oscar (Best Picture),1326108236 +206004,922,black and white,1431930209 +206004,922,black humor,1431930236 +206004,922,Dark,1431930245 +206004,922,film noir,1431930219 +206004,922,gloria swanson,1431930247 +206004,922,has-been,1431930297 +206004,922,Hollywood,1431930213 +206004,922,irreverent,1431930282 +206004,922,kept man/gigolo,1431930300 +206004,922,morbid,1431930401 +206004,922,movie business,1431930240 +206004,922,noir thriller,1431930274 +206004,922,protagonist is writer,1431930386 +206004,922,suicide attempt,1431930373 +206004,922,swimming pool,1431930365 +206004,923,Amazing Cinematography,1444742406 +206004,923,boring,1444742462 +206004,923,Character study,1444742510 +206004,923,Innovative,1444742441 +206004,923,melancholy,1444742537 +206004,923,Orson Welles,1444742385 +206004,923,rise to power,1444742430 +206004,923,Rosebud,1444742588 +206004,924,artificial intelligence,1441567995 +206004,924,atmospheric,1441568004 +206004,924,futuristic,1441568014 +206004,924,masterpiece,1441568029 +206004,924,meditative,1441568033 +206004,924,relaxing,1441568079 +206004,924,sci-fi,1441567999 +206004,924,slow,1441568026 +206004,924,soundtrack,1441568019 +206004,924,space,1441568002 +206004,924,Stanley Kubrick,1441567997 +206004,924,surreal,1441568006 +206004,924,visually appealing,1441568011 +206004,928,adultery,1296333539 +206004,928,animal:dog,1296333546 +206004,928,Bechdel Test:Pass,1358098692 +206004,928,Dark,1296333579 +206004,928,enigmatic,1296333551 +206004,928,moody,1296333570 +206004,928,ominous,1296333574 +206004,942,black and white,1268079676 +206004,942,famous theme song,1268079687 +206004,942,film noir,1268079684 +206004,942,Gene Tierney,1268079695 +206004,942,noir,1268079682 +206004,942,Vincent Price,1268079673 +206004,955,animal:leopard,1431635432 +206004,955,animals,1431635464 +206004,955,black and white,1431635408 +206004,955,Cary Grant,1431635305 +206004,955,comedy,1431635327 +206004,955,Katharine Hepburn,1431635316 +206004,955,leopard,1431635437 +206004,955,quirky,1431635410 +206004,955,screwball,1431635306 +206004,955,witty,1431635420 +206004,955,wonderfully warm and amusing,1431635358 +206004,968,bad stereotypes of women,1358102767 +206004,968,black and white,1267988097 +206004,968,brilliant ending,1267988100 +206004,968,creepy,1267988087 +206004,968,disturbing,1267988090 +206004,968,George A. Romero,1267988092 +206004,968,gruesome,1267988082 +206004,968,ominous,1267988085 +206004,968,paranoid,1267988073 +206004,968,Race issues,1267988075 +206004,968,zombies,1267988070 +206004,1010,race,1357759545 +206004,1010,volkswagen,1357759549 +206004,1015,animals,1409772059 +206004,1015,family,1409772065 +206004,1015,feel-good,1409772055 +206004,1015,nostalgic,1409772053 +206004,1033,betrayal,1268347614 +206004,1033,friendship,1268347581 +206004,1033,hunting,1268348851 +206004,1033,Kurt Russell,1268347583 +206004,1036,Alan Rickman,1451035928 +206004,1036,average hero,1451036220 +206004,1036,breaking glass,1279408346 +206004,1036,Bruce Willis,1267989444 +206004,1036,business woman,1451036381 +206004,1036,camraderie,1451036209 +206004,1036,christmas,1271334263 +206004,1036,Clever,1451036310 +206004,1036,estranged spouse,1451036340 +206004,1036,explosion,1271334244 +206004,1036,explosions,1267989484 +206004,1036,FBI,1451035950 +206004,1036,female empowerment,1451036372 +206004,1036,glass,1271334255 +206004,1036,good action,1451035931 +206004,1036,Heist,1451035943 +206004,1036,humorous,1451035925 +206004,1036,incompetent cops,1267989553 +206004,1036,lone hero,1267989442 +206004,1036,male bonding,1451036090 +206004,1036,rousing,1451036279 +206004,1036,sadistic,1267989594 +206004,1036,skyscraper,1451035936 +206004,1036,superb,1451036024 +206004,1036,tense,1267989440 +206004,1036,touching,1451036288 +206004,1037,bad acting,1441976785 +206004,1037,charmingly outdated CGI,1441976797 +206004,1037,EXPERIMENTS GONE AWRY,1441976839 +206004,1037,lawn mower,1441976827 +206004,1037,priest,1441976781 +206004,1037,psychic powers,1441976806 +206004,1037,unintentionally funny,1441976824 +206004,1037,virtual reality,1441976772 +206004,1089,cult film,1268076496 +206004,1089,nonlinear,1268076484 +206004,1089,prolonged death,1268076574 +206004,1089,Quentin Tarantino,1268076501 +206004,1089,undercover cop,1268076489 +206004,1089,violence,1268076486 +206004,1094,Bechdel Test:Fail,1358098972 +206004,1094,cross dressing,1267984893 +206004,1094,England,1267984853 +206004,1094,IRA,1267984846 +206004,1094,Ireland,1267984848 +206004,1094,Jaye Davidson,1267984903 +206004,1094,Neil Jordan,1267984858 +206004,1094,puzzling,1267984914 +206004,1094,transgender,1267984993 +206004,1094,twist ending,1267984879 +206004,1094,very good,1358099010 +206004,1094,violent,1267984886 +206004,1129,dystopia,1401223998 +206004,1129,evil government,1401223994 +206004,1129,John Carpenter,1401223978 +206004,1129,Kurt Russell,1401223980 +206004,1129,lone hero,1401223986 +206004,1129,nocturnal,1401223991 +206004,1130,special effects,1315136191 +206004,1130,werewolves,1315136200 +206004,1136,british comedy,1268078914 +206004,1136,inventive,1268078934 +206004,1136,religion,1268078942 +206004,1161,disturbing,1268432125 +206004,1161,fanciful,1268432144 +206004,1161,Nazis,1268432136 +206004,1161,quirky,1268432132 +206004,1161,satirical,1268432128 +206004,1161,surreal,1268432131 +206004,1161,World War II,1268432139 +206004,1168,werewolf,1321864753 +206004,1196,adventure,1267991714 +206004,1196,father-son relationship,1267991704 +206004,1196,Harrison Ford,1267991695 +206004,1196,robots,1267991700 +206004,1196,sci-fi,1267991697 +206004,1196,space,1267991716 +206004,1196,war,1267991721 +206004,1197,1980s,1279405649 +206004,1197,fairy tale,1279405607 +206004,1197,fantasy,1279405610 +206004,1197,pirates,1279405612 +206004,1197,quirky,1279405605 +206004,1197,torture,1279405642 +206004,1197,whimsical,1279405624 +206004,1198,adventure,1268076823 +206004,1198,Bechdel Test:Fail,1358101883 +206004,1198,classic,1268076839 +206004,1198,Harrison Ford,1268076827 +206004,1198,humorous,1268076828 +206004,1198,Nazis,1268076830 +206004,1199,black comedy,1314779807 +206004,1199,dreamlike,1314779809 +206004,1199,dreams,1314779816 +206004,1199,dystopic future,1314779828 +206004,1199,humorous,1314779832 +206004,1199,quirky,1314779844 +206004,1199,surreal,1314779822 +206004,1199,surveillance,1314779825 +206004,1200,Bill Paxton,1279408768 +206004,1200,Lance Henriksen,1279408740 +206004,1200,Sigourney Weaver,1279408750 +206004,1202,black comedy,1376087057 +206004,1202,bleak,1376087064 +206004,1202,drugs,1376087046 +206004,1202,Social class,1376087051 +206004,1202,wry,1376087067 +206004,1206,quirky,1318094139 +206004,1206,social commentary,1318094094 +206004,1208,Bechdel Test:Fail,1358099284 +206004,1208,Dark,1287786263 +206004,1208,disturbing,1287786272 +206004,1208,hallucinatory,1287786299 +206004,1208,Vietnam,1287786284 +206004,1208,Vietnam war,1287786283 +206004,1208,violent,1287786295 +206004,1208,war,1287786290 +206004,1212,atmospheric,1386581928 +206004,1212,black and white,1386581920 +206004,1212,great cinematography,1386581945 +206004,1212,INNOCENCE LOST,1386581938 +206004,1212,noir thriller,1386581931 +206004,1212,Orson Welles,1386581922 +206004,1212,poignant,1386581934 +206004,1214,Bechdel Test:Pass,1358099363 +206004,1214,dark,1267985542 +206004,1214,monster,1267985574 +206004,1214,monster design,1267985626 +206004,1214,Oscar (Best Effects - Visual Effects),1267985578 +206004,1214,retro-futuristic,1267985669 +206004,1214,Sigourney Weaver,1267985567 +206004,1214,suspense,1267985550 +206004,1214,visceral,1267985548 +206004,1215,Bruce Campbell,1298227204 +206004,1215,humorous,1298227181 +206004,1215,time travel,1298227178 +206004,1219,black and white,1268076878 +206004,1219,classic,1268076884 +206004,1219,creepy,1268076886 +206004,1219,cross dressing,1268076889 +206004,1219,macabre,1268076919 +206004,1219,mental illness,1268076911 +206004,1219,motel,1268076948 +206004,1219,serial killer,1268076898 +206004,1240,androids,1279713844 +206004,1240,artificial intelligence,1279713912 +206004,1240,Paradox,1279713859 +206004,1240,Time paradox,1279713889 +206004,1240,time travel,1279713881 +206004,1258,Bechdel Test:Fail,1358097735 +206004,1258,visually appealing,1267982133 +206004,1260,atmospheric,1390861496 +206004,1260,black and white,1390861490 +206004,1260,child killing,1390861495 +206004,1260,Fritz Lang,1390861497 +206004,1260,german expressionism,1390861521 +206004,1260,mental illness,1390861505 +206004,1261,Bruce Campbell,1278074126 +206004,1262,barbed wire,1268430033 +206004,1262,forceful,1268430070 +206004,1262,motorcycle,1268429974 +206004,1262,prison break,1268429979 +206004,1262,Steve McQueen,1268429969 +206004,1262,true story,1268429981 +206004,1262,World War II,1268430042 +206004,1263,Christopher Walken,1386581828 +206004,1263,friendship,1386581848 +206004,1263,Robert De Niro,1386581876 +206004,1263,tense,1386581825 +206004,1263,Vietnam,1386581821 +206004,1263,war movie,1386581844 +206004,1270,1950s,1420324770 +206004,1270,1980s,1420324788 +206004,1270,Christopher Lloyd,1420324761 +206004,1270,comedy,1420324793 +206004,1270,Crispin Glover,1420324838 +206004,1270,father-son relationship,1420324887 +206004,1270,Michael J. Fox,1420324777 +206004,1270,teen,1420324799 +206004,1270,time travel,1420324765 +206004,1274,animation,1267990816 +206004,1274,cyberpunk,1267990695 +206004,1274,dystopia,1267990693 +206004,1274,ESP,1267990777 +206004,1274,future,1267990702 +206004,1274,hallucinatory,1267990729 +206004,1274,psychic powers,1378760315 +206004,1274,scifi,1267990741 +206004,1274,telekinesis,1267990750 +206004,1274,violent,1267990735 +206004,1274,visually stunning,1267990710 +206004,1278,black and white,1415473408 +206004,1278,Gene Wilder,1415473420 +206004,1278,Great Ensemble Cast,1415473447 +206004,1278,marty feldman,1415473477 +206004,1278,Mel Brooks,1415473413 +206004,1278,Quotable,1415473423 +206004,1278,spoof,1415473431 +206004,1281,anti-war,1402222552 +206004,1281,Charlie Chaplin,1402222546 +206004,1281,Nazis,1402222574 +206004,1281,political,1402222572 +206004,1281,satire,1402222548 +206004,1281,World War II,1402222598 +206004,1282,artistic,1268430646 +206004,1282,classical music,1268430623 +206004,1282,dinosaurs,1268430626 +206004,1285,Bechdel Test:Pass,1409771180 +206004,1285,black comedy,1409770864 +206004,1285,cynical,1409770911 +206004,1285,dark comedy,1409770866 +206004,1285,dark humor,1409770886 +206004,1285,high school,1409770869 +206004,1285,irreverent,1409770879 +206004,1285,satirical,1409770924 +206004,1285,serial killer,1409770889 +206004,1285,suicide,1409770919 +206004,1285,teen movie,1409770893 +206004,1285,Winona Ryder,1409770873 +206004,1320,Alien,1267990662 +206004,1320,franchise,1271334449 +206004,1320,Lance Henriksen,1267990640 +206004,1320,prison,1267990646 +206004,1320,sequel,1271334451 +206004,1320,Sigourney Weaver,1267990627 +206004,1320,troubled production,1271334458 +206004,1320,underrated,1271334470 +206004,1329,blood vomit,1268350164 +206004,1329,dracula,1268350209 +206004,1329,likeable villains,1268350267 +206004,1329,rape,1270320078 +206004,1329,sexuality,1268350241 +206004,1329,Sympathy for the Devil,1268350173 +206004,1329,tongue-in-cheek,1270320102 +206004,1329,Udo Kier,1268350199 +206004,1329,virginity,1268350303 +206004,1330,accident,1359308728 +206004,1330,Amy Steel,1359308713 +206004,1330,friendship,1359308748 +206004,1330,pranks,1359308629 +206004,1330,twist ending,1359308658 +206004,1334,campy,1427887610 +206004,1334,Steve McQueen,1427887622 +206004,1334,theme song,1427887620 +206004,1340,Boris Karloff,1343395666 +206004,1340,Elsa Lanchester,1343395623 +206004,1342,Clive Barker,1289132405 +206004,1342,Horror,1289132359 +206004,1342,Virginia Madsen,1289132352 +206004,1345,eerie,1268349873 +206004,1345,high school,1268349897 +206004,1345,PSYCHIC ABILITIES,1268349885 +206004,1345,religion,1268349882 +206004,1345,tense,1268349901 +206004,1347,creepy singing,1268078139 +206004,1347,death scenes,1268078175 +206004,1347,Freddy Crueger,1268078082 +206004,1347,freddy krueger,1277678741 +206004,1347,horror,1268078084 +206004,1347,interesting,1268078113 +206004,1347,Johnny Depp,1268078086 +206004,1347,Robert Englund,1268078088 +206004,1347,slasher,1277678734 +206004,1347,Wes Craven,1268078096 +206004,1350,antichrist,1268077798 +206004,1350,Christianity,1268077783 +206004,1350,Devil Child,1268077793 +206004,1350,great soundtrack,1268077875 +206004,1350,menacing,1268077862 +206004,1350,scary,1268077849 +206004,1374,brainwashing,1268075441 +206004,1374,Leonard Nimoy,1268075432 +206004,1374,midlife crisis,1268075448 +206004,1374,sacrifice,1268075477 +206004,1374,William Shatner,1268075456 +206004,1377,Catwoman,1268350377 +206004,1377,Danny DeVito,1268350394 +206004,1377,dark,1268350428 +206004,1377,Gothic,1268350415 +206004,1377,Michelle Pfeiffer,1268350390 +206004,1377,Tim Burton,1268350411 +206004,1387,animal attacks,1268326524 +206004,1387,Creature Feature,1409387845 +206004,1387,menacing,1268326526 +206004,1387,ocean,1268326542 +206004,1387,ominous,1268326535 +206004,1387,shark,1268326530 +206004,1407,Bechdel Test:Pass,1358101283 +206004,1407,horror,1268076071 +206004,1407,mental illness,1268076050 +206004,1407,Neve Campbell,1268076063 +206004,1407,parody,1268076127 +206004,1407,Rose McGowan,1268076112 +206004,1407,Skeet Ulrich,1268076053 +206004,1407,slasher,1268076054 +206004,1407,spoof,1268076058 +206004,1407,teen,1268076061 +206004,1407,Wes Craven,1268076092 +206004,1464,atmospheric,1268079131 +206004,1464,creepy,1305528718 +206004,1464,David Lynch,1268079060 +206004,1464,dreamlike,1268079118 +206004,1464,jealousy,1268079054 +206004,1464,nonlinear,1305528720 +206004,1499,Creature Feature,1409387914 +206004,1499,silly,1409387951 +206004,1527,Bruce Willis,1269380669 +206004,1527,costumes,1269380706 +206004,1527,futuristic,1269380718 +206004,1527,Gary Oldman,1269380685 +206004,1527,humorous,1269380714 +206004,1527,Milla Jovovich,1269380671 +206004,1527,satirical,1269380682 +206004,1527,sci-fi,1269380696 +206004,1527,stylized,1269380676 +206004,1566,Greek mythology,1268327029 +206004,1566,stylized,1268327036 +206004,1570,body horror,1424294839 +206004,1570,cult film,1424294841 +206004,1570,surreal,1424294846 +206004,1573,action,1268431496 +206004,1573,identity,1268431468 +206004,1573,John Travolta,1268431308 +206004,1573,John Woo,1268431384 +206004,1573,Nicholas Cage,1268431370 +206004,1573,revenge,1268431511 +206004,1573,switching places,1268431403 +206004,1623,beware what you wish for,1374052676 +206004,1623,djinn,1349281352 +206004,1623,granting of wishes,1349281510 +206004,1625,David Fincher,1360964433 +206004,1625,mindfuck,1360964401 +206004,1625,Mystery,1280260557 +206004,1625,neo-noir,1360964436 +206004,1702,absent-minded professor,1404078069 +206004,1702,Robin Williams,1404078065 +206004,1717,serial killer,1269105207 +206004,1717,slasher,1269105201 +206004,1717,spoof,1269105197 +206004,1721,atmospheric,1268432002 +206004,1721,catastrophe,1268431993 +206004,1721,historical,1268431987 +206004,1721,Tragedy,1268432019 +206004,1721,true story,1268431989 +206004,1771,Miguel Ferrer,1374054306 +206004,1771,vampire,1374054322 +206004,1779,based on book,1428184355 +206004,1779,Dustin Hoffman,1428184318 +206004,1779,first contact,1428184274 +206004,1779,Michael Crichton,1428184176 +206004,1779,mind,1428184299 +206004,1779,psychological,1428184295 +206004,1779,Samuel L. Jackson,1428184301 +206004,1779,sci-fi,1428184183 +206004,1779,sea bottom,1428184181 +206004,1779,submarine,1428184280 +206004,1779,suspense,1428184292 +206004,1779,time travel,1428184178 +206004,1779,Underrated,1428184312 +206004,1801,John Malkovich,1268570486 +206004,1801,mask,1268570489 +206004,1801,multiple roles,1268570501 +206004,1801,Versailles,1268570494 +206004,1881,animation,1268075095 +206004,1881,twitching eye,1268075116 +206004,1882,Jean Reno,1268496013 +206004,1907,Asian culture,1268078880 +206004,1907,cross dressing,1268078850 +206004,1907,Eddie Murphy,1268078871 +206004,1907,great soundtrack,1269554684 +206004,1907,strong female lead,1268078846 +206004,1913,1900's,1428093321 +206004,1913,adapted from:book,1428093742 +206004,1913,atmospheric,1428133316 +206004,1913,Australia,1428093225 +206004,1913,based on a book,1428093746 +206004,1913,boarding school,1428093281 +206004,1913,dreamlike,1428093227 +206004,1913,eerie,1428093230 +206004,1913,Enigmatic,1428093233 +206004,1913,headmistress,1428093258 +206004,1913,lesbianism,1428093365 +206004,1913,mystery,1428093329 +206004,1913,ominous,1428093231 +206004,1913,period piece,1428093773 +206004,1913,understated,1428093237 +206004,1913,women,1428093307 +206004,1952,bittersweet,1267988531 +206004,1952,compassionate,1267988535 +206004,1952,dreams,1267988470 +206004,1952,Dustin Hoffman,1267988466 +206004,1952,friendship,1267988475 +206004,1952,homosexuality,1267988547 +206004,1952,poignant,1267988507 +206004,1952,prostitution,1267988519 +206004,1952,radio,1267988515 +206004,1952,sexuality,1267988524 +206004,1954,Bechdel Test:Fail,1358101631 +206004,1954,boxing,1267987360 +206004,1954,Burgess Meredith,1271716243 +206004,1954,classic,1267987373 +206004,1954,romance,1271716302 +206004,1954,setting:Philadelphia,1267987364 +206004,1954,sport:boxing,1271716252 +206004,1954,Sylvester Stallone,1267987356 +206004,1954,visually appealing,1271716220 +206004,1967,Adventure,1426406402 +206004,1967,Coming-of-Age,1426406374 +206004,1967,crude humor,1426406387 +206004,1967,David Bowie,1426406337 +206004,1967,Jennifer Connelly,1426406340 +206004,1967,maze,1426406343 +206004,1967,musical,1426406397 +206004,1967,quest,1426406409 +206004,1970,dreams,1269105183 +206004,1970,Heather Langenkamp,1269105166 +206004,1970,Robert Englund,1269105169 +206004,1970,slasher,1269105164 +206004,1974,acting,1349631386 +206004,1974,camp,1269105095 +206004,1974,campy,1349631428 +206004,1974,cheesy,1349631403 +206004,1974,classic,1349631415 +206004,1974,effects,1349631454 +206004,1974,franchise,1349631409 +206004,1974,revenge as motive,1269105111 +206004,1975,Jason Vorhees,1349631511 +206004,1975,slasher,1349631508 +206004,1976,Jason Vorhees,1349631533 +206004,1977,Jason Vorhees,1349631572 +206004,1978,not real Jason,1349631610 +206004,1978,retconned,1349631647 +206004,1979,franchise,1349631682 +206004,1979,Jason Vorhees,1349631676 +206004,1979,slasher,1349631692 +206004,1979,supernatural,1349631696 +206004,1980,franchise,1349631753 +206004,1980,Jason Vorhees,1349631748 +206004,1980,Kane Hodder,1349631779 +206004,1980,masked killer,1312665347 +206004,1980,psychic,1312665328 +206004,1980,slasher,1349631759 +206004,1980,telekinesis,1312665309 +206004,1981,as bad as the title,1318697255 +206004,1981,cheesy,1318697259 +206004,1981,funny,1318697325 +206004,1981,Jason Vorhees,1318697244 +206004,1981,New York City,1349631867 +206004,1981,nothing makes sense,1349631923 +206004,1981,ridiculous,1318697247 +206004,1981,slasher,1318697282 +206004,1981,teleporting Jason,1349631808 +206004,1982,silent killer,1269105154 +206004,1984,great soundtrack,1414958879 +206004,1984,Halloween,1414958631 +206004,1984,masks,1414958830 +206004,1984,paganism,1414958686 +206004,1984,soundtrack,1414958864 +206004,1984,Stonehenge,1414958767 +206004,1984,supernatural,1414958709 +206004,1984,technology,1414958847 +206004,1984,Tom Atkins,1414958628 +206004,1984,WITCHCRAFT,1414958674 +206004,1984,WTF,1414958608 +206004,1987,axe,1349512231 +206004,1987,disco,1349512094 +206004,1987,music,1349512214 +206004,1987,prom dance,1349512192 +206004,1987,revenge,1349512061 +206004,1987,slasher,1349512249 +206004,1991,child in peril,1399319474 +206004,1991,Chris Sarandon,1399319462 +206004,1991,dolls,1399319481 +206004,1991,mother-son relationship,1399319467 +206004,1991,Tom Holland,1399319456 +206004,1991,Voodoo,1399319454 +206004,1997,Catholicism,1268348424 +206004,1997,Christianity,1268348427 +206004,1997,Classic,1268348415 +206004,1997,creepy,1268348486 +206004,1997,exorcism,1268348399 +206004,1997,horror,1268348402 +206004,1997,possession,1268348404 +206004,1997,priest,1268348409 +206004,1997,religion,1268348446 +206004,2003,movie theatre scene,1271333364 +206004,2010,androids,1441525539 +206004,2010,Brigitte Helm,1441525572 +206004,2010,Expressionism,1441525511 +206004,2010,Fritz Lang,1441525292 +206004,2010,german expressionism,1441525290 +206004,2010,industrial progress,1441525297 +206004,2010,robot,1441525308 +206004,2010,science fiction,1441525310 +206004,2010,silent film,1441525301 +206004,2010,social commentary,1441525295 +206004,2010,subterranean,1441525536 +206004,2010,visionary,1441525299 +206004,2010,working class,1441525533 +206004,2018,animation,1268350730 +206004,2018,coming of age,1268350684 +206004,2018,deer,1268350650 +206004,2018,growing up,1268350674 +206004,2018,orphans,1268350747 +206004,2019,atmospheric,1268432602 +206004,2019,HEROIC MISSION,1268432604 +206004,2019,historical,1268432608 +206004,2021,David Lynch,1305528934 +206004,2021,desert,1305528925 +206004,2021,far future,1305528927 +206004,2021,Sting,1305528918 +206004,2048,animation,1267984597 +206004,2048,bar brawl,1267984782 +206004,2048,Bechdel Test:Fail,1358098834 +206004,2048,detective,1267984749 +206004,2048,funny sidekick,1267984827 +206004,2048,London,1267984729 +206004,2048,overconfident genius,1267984705 +206004,2048,Sherlock Holmes,1267984577 +206004,2048,Vincent Price,1267984571 +206004,2052,curse,1378760070 +206004,2052,talking cat,1378760073 +206004,2072,suburbia,1270472329 +206004,2076,David Lynch,1305528889 +206004,2076,Dennis Hopper,1305528794 +206004,2076,INNOCENCE LOST,1305528817 +206004,2076,sexual,1305528799 +206004,2076,sexuality,1305528797 +206004,2076,surreal,1305528804 +206004,2080,dogs,1268079844 +206004,2080,drama,1268079903 +206004,2080,drifting,1268079864 +206004,2080,romance,1268079848 +206004,2080,spaghetti,1268079838 +206004,2092,heel face turn,1272614378 +206004,2093,creepy,1426406745 +206004,2093,dark fantasy,1426406615 +206004,2093,magical creatures,1426406618 +206004,2096,antagonist,1268076036 +206004,2096,heroine,1268075802 +206004,2096,villain,1268076728 +206004,2096,visually appealing,1268075818 +206004,2105,adventure,1285499967 +206004,2105,computer animation,1285499973 +206004,2105,cyberpunk,1285499954 +206004,2105,hackers,1285499959 +206004,2105,virtual reality,1285499951 +206004,2115,Harrison Ford,1268326664 +206004,2115,interesting,1268326675 +206004,2115,mind control,1268326698 +206004,2118,bloodthirsty US president,1284625752 +206004,2118,Christopher Walken,1284625730 +206004,2118,David Cronenberg,1284625727 +206004,2118,Nudity (Topless - Brief),1284625709 +206004,2118,US President,1284625736 +206004,2119,ac/dc,1399577454 +206004,2119,sentient machine,1399577451 +206004,2119,Stephen King,1399577447 +206004,2119,Yeardley Smith,1399577471 +206004,2121,abusive relationship,1449304227 +206004,2121,adapted from:book,1449304209 +206004,2121,animal attack,1449304311 +206004,2121,author:Stephen King,1449304211 +206004,2121,based on a book,1449304197 +206004,2121,bechdel test: fail,1449304543 +206004,2121,creature feature,1427897214 +206004,2121,dogs,1449304195 +206004,2121,female lead,1449304519 +206004,2121,intense,1449304337 +206004,2121,rabies,1449304291 +206004,2121,siege,1449304451 +206004,2121,Stephen King,1449304200 +206004,2123,death,1409771892 +206004,2123,dogs,1409771885 +206004,2123,gambling,1409771901 +206004,2123,orphan,1409771966 +206004,2123,sad,1409771888 +206004,2138,2D animation,1267985746 +206004,2138,adapted from:book,1267985830 +206004,2138,animation,1267985852 +206004,2138,atmospheric,1267985877 +206004,2138,based on a book,1267985888 +206004,2138,Bechdel Test:Fail,1358096734 +206004,2138,disturbing,1267985999 +206004,2138,John Hurt,1267985754 +206004,2138,rabbits,1267985814 +206004,2138,violent,1267985741 +206004,2139,2D animation,1267983839 +206004,2139,anthropomorphic,1267983812 +206004,2139,atmospheric,1267987800 +206004,2139,Bechdel Test:Pass,1358097767 +206004,2139,Don Bluth,1267983774 +206004,2139,fantasy,1279146511 +206004,2139,heroine,1267983781 +206004,2139,Jerry Goldsmith,1267985381 +206004,2139,mice,1279146490 +206004,2139,rats,1279146500 +206004,2139,talking animals,1279146482 +206004,2160,Antichrist,1268076204 +206004,2160,Atmospheric,1268076201 +206004,2160,child birth,1268076190 +206004,2160,demons,1268076193 +206004,2160,Dream Sequence,1268076219 +206004,2160,interpretable,1268076198 +206004,2160,Mia Farrow,1268076179 +206004,2160,WITCHCRAFT,1268076184 +206004,2161,Adventure,1426265669 +206004,2161,based on a book,1426265677 +206004,2161,Childhood nightmares,1426265574 +206004,2161,dark fantasy,1426406530 +206004,2161,dragon,1426265604 +206004,2161,effects,1426265674 +206004,2161,empress,1426265600 +206004,2161,Fantasy,1426265530 +206004,2161,fantasy world,1426265609 +206004,2161,imagination,1426265536 +206004,2161,magic,1426265621 +206004,2161,quest,1426406444 +206004,2161,racing snail,1426265539 +206004,2161,soundtrack,1426265682 +206004,2161,sphinx,1426265611 +206004,2161,story,1426265616 +206004,2161,sweet,1426265566 +206004,2174,ghosts/afterlife,1267983130 +206004,2174,haunted house,1267983126 +206004,2174,Michael Keaton,1267983140 +206004,2174,off-beat,1267983164 +206004,2174,Tim Burton,1267983154 +206004,2174,weird,1267983142 +206004,2174,winona ryder,1267983121 +206004,2178,Frightening,1313235825 +206004,2178,Hitchcock,1313235821 +206004,2232,innovative,1340972278 +206004,2232,intense,1340972280 +206004,2232,low budget,1340972292 +206004,2232,psychological,1340972284 +206004,2232,weird,1340972288 +206004,2245,Harrison Ford,1279358773 +206004,2245,Sigourney Weaver,1279358747 +206004,2253,cult,1268431924 +206004,2253,dreamlike,1268431877 +206004,2253,Joan Cusack,1268431915 +206004,2253,military industrial complex,1268431894 +206004,2253,Robin Williams,1268431912 +206004,2253,satire,1268431897 +206004,2253,surreal,1268431900 +206004,2253,weapons industry,1268431902 +206004,2287,ants,1429164440 +206004,2287,atom bomb,1429303271 +206004,2287,atomic age,1429303280 +206004,2287,Classic monster,1429164475 +206004,2287,creature feature,1427485728 +206004,2287,giant ants,1429164444 +206004,2287,horror,1429164479 +206004,2287,Joan Weldon,1429164524 +206004,2287,monster:giant insect,1429164455 +206004,2287,sci-fi,1429164447 +206004,2288,Antarctica,1385759176 +206004,2288,based on a book,1385759203 +206004,2288,claustrophobic,1385759190 +206004,2288,disturbing,1385759194 +206004,2288,John Carpenter,1385759197 +206004,2288,Kurt Russell,1385759180 +206004,2288,paranoia,1385759177 +206004,2288,shape shifter,1385759211 +206004,2288,Special Effects,1385759213 +206004,2291,dark comedy,1268348679 +206004,2291,fantasy,1268348655 +206004,2291,poignant,1268348661 +206004,2291,suburbia,1268348663 +206004,2291,surreal,1268348666 +206004,2291,Tim Burton,1268348658 +206004,2291,Vincent Price,1268348668 +206004,2315,Chucky,1446388654 +206004,2315,dark humor,1446388647 +206004,2315,dolls,1446388666 +206004,2315,explosions,1446388679 +206004,2315,franchise,1446388669 +206004,2315,Jennifer Tilly,1446388663 +206004,2315,Ronny Yu,1446388649 +206004,2315,serial killers,1446388651 +206004,2346,Bechdel Test:Pass,1358097597 +206004,2346,creepy,1358097412 +206004,2346,housewives,1279146004 +206004,2346,ominous,1358097347 +206004,2355,insects,1268350019 +206004,2355,Kevin Spacey,1270306442 +206004,2355,oppression,1268350009 +206004,2355,power in numbers,1268349982 +206004,2355,royalty,1268349945 +206004,2363,anti-war,1268327455 +206004,2363,giant monster,1268327454 +206004,2363,kickass,1268327459 +206004,2363,nuclear,1268327464 +206004,2363,radiation,1268327467 +206004,2366,creature feature,1427887951 +206004,2366,damsel in distress,1420325058 +206004,2366,dinosaurs,1420325068 +206004,2366,King Kong,1420325073 +206004,2366,monster,1420325010 +206004,2366,stereotypes,1420325094 +206004,2366,stop-motion,1420325020 +206004,2366,Stop-motion special effects,1420325064 +206004,2376,Christopher Walken,1268431103 +206004,2376,Grace Jones,1268431126 +206004,2394,Bible,1314780455 +206004,2394,Biblical,1314780453 +206004,2394,Christianity,1314780446 +206004,2394,religion,1314780449 +206004,2394,slavery,1314780466 +206004,2403,bad cop,1267989105 +206004,2403,memories,1267989246 +206004,2403,post-traumatic stress disorder,1267989222 +206004,2403,small town,1267989108 +206004,2403,Sylvester Stallone,1267989110 +206004,2403,Vietnam war veteran,1267989139 +206004,2409,boxing,1268076296 +206004,2409,ego,1268076273 +206004,2409,setting:Philadelphia,1268076288 +206004,2409,Sylvester Stallone,1268076275 +206004,2410,boxing,1268076245 +206004,2410,Mr. T,1268076235 +206004,2410,Philadelphia,1268076259 +206004,2410,sport:boxing,1268076252 +206004,2410,Sylvester Stallone,1268076232 +206004,2411,audience intelligence underestimated,1267987133 +206004,2411,boxing,1267987046 +206004,2411,campy,1267987039 +206004,2411,competitive sport,1271335260 +206004,2411,Dolph Lundgren,1267987068 +206004,2411,franchise,1271335265 +206004,2411,Golden Raspberry (Worst Actor),1271335254 +206004,2411,nationalism,1267987077 +206004,2411,sport:boxing,1271335241 +206004,2411,sports,1271335245 +206004,2411,Sylvester Stallone,1267987065 +206004,2411,training montage,1267987059 +206004,2411,unintentionally funny,1267987089 +206004,2412,betrayal,1268432907 +206004,2412,Burgess Meredith,1268432880 +206004,2412,competitive sport,1268432842 +206004,2412,face heel turn,1268432928 +206004,2412,for kids,1268432854 +206004,2412,Sylvester Stallone,1268432844 +206004,2429,Bill Paxton,1404078103 +206004,2429,Charlize Theron,1404078107 +206004,2429,Special Effects,1404078125 +206004,2451,creature feature,1430505255 +206004,2451,Demons,1404076167 +206004,2451,Eye in Hand,1404076164 +206004,2451,fun,1430505236 +206004,2451,Hell,1430505215 +206004,2451,Metal,1430505201 +206004,2451,practical FX,1404076172 +206004,2451,SUBURBAN DYSFUNCTION,1404076177 +206004,2451,weird,1430505212 +206004,2454,classic,1279715232 +206004,2454,nonlinear,1268600732 +206004,2454,sci-fi,1267989055 +206004,2454,scientist experiments on self,1267989030 +206004,2454,teleportation,1267989032 +206004,2454,Tragedy,1268432033 +206004,2454,Vincent Price,1267989034 +206004,2455,body horror,1268347696 +206004,2455,changing species,1268347692 +206004,2455,David Cronenberg,1268347671 +206004,2455,horror,1268347733 +206004,2455,Jeff Goldblum,1268347674 +206004,2455,mad scientist,1268347704 +206004,2455,remake,1268347736 +206004,2455,romance,1268347680 +206004,2455,tragedy,1268347720 +206004,2455,tragic hero,1268347719 +206004,2459,brutal,1447016039 +206004,2459,disturbing,1447015880 +206004,2459,grim,1447016085 +206004,2459,grindhouse,1447015919 +206004,2459,gruesome,1447016031 +206004,2459,horror,1447015913 +206004,2459,Leatherface,1447016073 +206004,2459,Oh the humanity!,1447016111 +206004,2459,remade,1447016070 +206004,2459,tense,1447015911 +206004,2459,Tobe Hooper,1447016096 +206004,2467,amateur detective,1268685693 +206004,2467,monastery,1268685718 +206004,2467,Sean Connery,1268685686 +206004,2467,setting:monastery,1268685713 +206004,2488,disturbing,1358102110 +206004,2488,HAUNTED BY THE PAST,1358102212 +206004,2488,serial killer,1358102103 +206004,2505,BDSM,1304283276 +206004,2505,hypocrisy,1304283344 +206004,2505,Joaquin Phoenix,1304283295 +206004,2505,Nicolas Cage,1304283282 +206004,2513,cemetery,1334678367 +206004,2513,dead raising,1334678372 +206004,2513,Stephen King,1334678377 +206004,2514,Clancy Brown,1334678404 +206004,2514,halloween,1334678411 +206004,2517,ADOLESCENCE IS HELL,1403731915 +206004,2517,classic car,1403731940 +206004,2517,John Carpenter,1403731931 +206004,2517,music,1403731952 +206004,2517,sentient machine,1403731935 +206004,2517,Stephen King,1403731927 +206004,2519,ghosts,1267988898 +206004,2519,haunted house,1267988900 +206004,2519,Vincent Price,1267988903 +206004,2525,alligator,1430504872 +206004,2525,creature feature,1430504838 +206004,2527,androids,1306797036 +206004,2527,good soundtrack,1306797083 +206004,2527,Michael Crichton,1306797029 +206004,2527,Richard Benjamin,1306797040 +206004,2527,sci-fi,1306797034 +206004,2527,suspense,1306797043 +206004,2527,Yul Brynner,1306797032 +206004,2529,"""damn dirty apes""",1279147178 +206004,2529,Bechdel Test:Fail,1358098199 +206004,2529,Charlton Heston,1267984029 +206004,2529,damn you all to hell,1271332812 +206004,2529,dramatic,1267984032 +206004,2529,dystopia,1267984034 +206004,2529,far future,1271332788 +206004,2529,post-apocalyptic,1267984041 +206004,2529,Rod Serling,1271332825 +206004,2529,satirical,1358098279 +206004,2529,science vs religion,1271332768 +206004,2529,social commentary,1267984051 +206004,2529,tense,1267984065 +206004,2529,twist ending,1267984023 +206004,2529,violence,1267984057 +206004,2553,übermensch,1319837932 +206004,2553,evil children,1319837963 +206004,2565,*Good* Musicals,1326108717 +206004,2565,Yul Brynner,1314777416 +206004,2571,cyberpunk,1268078985 +206004,2571,dystopia,1268078978 +206004,2571,face heel turn,1268432983 +206004,2571,martial arts,1268078993 +206004,2571,philosophical,1268079008 +206004,2571,philosophy,1268079012 +206004,2571,post apocalyptic,1268078995 +206004,2571,sci-fi,1268079019 +206004,2571,virtual reality,1268078981 +206004,2628,annoying kid,1375959534 +206004,2628,George Lucas,1375959528 +206004,2633,Boris Karloff,1348647464 +206004,2633,Egypt,1348647473 +206004,2633,hypnosis,1348647532 +206004,2633,love story,1348647532 +206004,2633,mummy,1348647455 +206004,2633,Resurrection,1348647606 +206004,2634,atmosphere,1375957419 +206004,2634,Christopher Lee,1375957377 +206004,2634,Hammer Film Productions,1375957365 +206004,2634,mummy,1375957399 +206004,2634,Peter Cushing,1375957362 +206004,2644,bats,1268348819 +206004,2644,Classic,1268348795 +206004,2644,hypnosis,1268348968 +206004,2644,opossums,1268348953 +206004,2644,sexuality,1268348992 +206004,2644,universal monsters,1268348805 +206004,2644,vampire,1268348810 +206004,2648,Boris Karloff,1380443806 +206004,2648,controversial,1380443815 +206004,2648,Dwight Frye,1380443819 +206004,2648,mad scientist,1380443825 +206004,2649,atmosphere,1414824796 +206004,2649,Basil Rathbone,1414824688 +206004,2649,Bela Lugosi,1414824821 +206004,2649,Frankenstein's monster,1414824776 +206004,2649,gothic,1414824767 +206004,2649,lightning,1414824809 +206004,2651,curse,1348650038 +206004,2651,death wish,1348650042 +206004,2651,graveyard,1348650068 +206004,2651,singing,1348650062 +206004,2651,universal monsters,1348650046 +206004,2651,werewolf,1348650044 +206004,2654,fortune-telling,1303297119 +206004,2654,gothic,1303297136 +206004,2654,Lon Chaney Jr.,1303297122 +206004,2654,universal monsters,1303297140 +206004,2656,1950's,1421734872 +206004,2656,creature feature,1427485709 +206004,2656,giant spider,1421734850 +206004,2656,horror,1421734881 +206004,2656,scifi,1421734858 +206004,2657,adultery,1267987256 +206004,2657,bisexual,1267987238 +206004,2657,classic,1267987249 +206004,2657,cross dressing,1267987275 +206004,2657,great soundtrack,1267987227 +206004,2657,murder,1267987214 +206004,2657,musical,1267987262 +206004,2657,Quirky,1267987218 +206004,2657,sexuality,1267987220 +206004,2657,transgender,1267987222 +206004,2660,aliens,1409468379 +206004,2660,Arctic,1409468461 +206004,2660,based on a book,1409468486 +206004,2660,creature feature,1427887680 +206004,2660,dialogue,1409468372 +206004,2660,sci-fi,1409468368 +206004,2660,science fiction,1409468361 +206004,2661,aliens,1428608977 +206004,2661,angry mob,1428608924 +206004,2661,better than expected,1428608917 +206004,2661,campy,1428609068 +206004,2661,crash landing,1428608926 +206004,2661,doppelgangers,1428608975 +206004,2661,horror,1428608991 +206004,2661,mars,1428608911 +206004,2661,Nice and campy!,1428608896 +206004,2661,Ray Bradbury,1428608888 +206004,2661,reasonable aliens,1428608905 +206004,2661,science fiction,1428608909 +206004,2661,Stereoscopic 3-D,1428608886 +206004,2662,alien invasion,1409468265 +206004,2662,aliens,1409468270 +206004,2662,Christianity,1409468232 +206004,2662,excellent for its time,1409468247 +206004,2662,Good effects,1409468241 +206004,2662,Old sci-fi,1409468252 +206004,2662,religion,1409468237 +206004,2662,sci fi,1409468259 +206004,2662,technicolor,1409468536 +206004,2663,creature feature,1427887892 +206004,2664,1950s,1421734647 +206004,2664,aliens,1421734688 +206004,2664,grim,1421734740 +206004,2664,horror,1421734723 +206004,2664,ominous,1421734727 +206004,2664,paranoid,1421734639 +206004,2664,sci-fi,1421734652 +206004,2664,tense,1421734731 +206004,2687,2D Disney Animation,1267991629 +206004,2687,Jane,1267991687 +206004,2687,Lance Henriksen,1267991609 +206004,2687,Rosie O'Donnell,1267991613 +206004,2710,agonizing,1267990458 +206004,2710,creepy,1267990529 +206004,2710,Interesting,1267990428 +206004,2710,mimics documentary-style,1267990383 +206004,2710,scary,1267990389 +206004,2713,creature feature,1427887793 +206004,2722,Creature Feature,1409387983 +206004,2722,ridiculous,1409388000 +206004,2722,shark,1409388006 +206004,2722,unintentionally funny,1409387997 +206004,2762,Bruce Willis,1268075927 +206004,2762,enigmatic,1268075929 +206004,2762,ghosts/afterlife,1268075943 +206004,2762,twist ending,1268075936 +206004,2780,Boris Karloff,1320828840 +206004,2780,magic,1404683605 +206004,2780,Vincent Price,1320828843 +206004,2780,wizards,1404683611 +206004,2781,adultery,1267986225 +206004,2781,Bechdel Test:Fail,1358099542 +206004,2781,breaking the fourth wall,1267986416 +206004,2781,campy,1267986295 +206004,2781,drugs,1267986245 +206004,2781,movie theatre scene,1267986464 +206004,2781,murder,1267986339 +206004,2781,mute,1267986163 +206004,2781,Vincent Price,1267986152 +206004,2783,black cat,1267986035 +206004,2783,campy,1267986025 +206004,2783,dead wife,1267986049 +206004,2783,horror,1267986102 +206004,2783,Roger Corman,1267986123 +206004,2783,romance,1267986080 +206004,2784,atmospheric,1267988599 +206004,2784,Bechdel Test:Fail,1358103191 +206004,2784,devil worship,1267988698 +206004,2784,mystery,1267988766 +206004,2784,Vincent Price,1267988620 +206004,2784,visually appealing,1267988611 +206004,2785,adultery,1445622286 +206004,2785,alcoholism,1445622322 +206004,2785,anthology,1445622024 +206004,2785,based on a book,1445622012 +206004,2785,Basil Rathbone,1445622063 +206004,2785,burying alive,1445622178 +206004,2785,death,1445622087 +206004,2785,drinking problem,1445622330 +206004,2785,Edgar Allan Poe,1445622006 +206004,2785,estranged wife,1445622298 +206004,2785,gothic,1445622019 +206004,2785,hallucinations,1445622349 +206004,2785,hangover,1445622336 +206004,2785,hypnotism,1445622194 +206004,2785,illness,1445622251 +206004,2785,love,1445622381 +206004,2785,mesmerism,1445622183 +206004,2785,Peter Lorre,1445622038 +206004,2785,revenge,1445622256 +206004,2785,Roger Corman,1445622393 +206004,2785,Vincent Price,1445622009 +206004,2785,wine tasting,1445622100 +206004,2787,anthology,1427485404 +206004,2787,cat,1427485411 +206004,2787,Christine,1427485441 +206004,2787,Cujo,1427485434 +206004,2787,evil pidgeon,1427485519 +206004,2787,fun,1427485388 +206004,2787,gnome,1427485540 +206004,2787,mob,1427485500 +206004,2787,nightmare,1427485558 +206004,2787,pidgeon,1427485510 +206004,2787,puppetry,1427485462 +206004,2787,stephen king,1427485392 +206004,2787,vertigo,1427485533 +206004,2791,absurd,1385759548 +206004,2791,classic,1385759549 +206004,2791,Leslie Nielsen,1385759545 +206004,2791,Slapstick,1385759554 +206004,2795,annoying characters,1407923574 +206004,2795,Chevy Chase,1407923542 +206004,2795,tourists,1407923551 +206004,2795,Vacation,1407923554 +206004,2808,awkward,1267990935 +206004,2808,bar brawl,1268864782 +206004,2808,campy,1267990943 +206004,2808,cyborgs,1267990947 +206004,2808,Dolph Lundgren,1267990917 +206004,2808,Jean-Claude Van Damme,1267990919 +206004,2808,unintentional comedy,1267991037 +206004,2808,Vietnam war,1267990989 +206004,2808,zombies,1267991072 +206004,2810,anime,1279145692 +206004,2814,novelist,1269893442 +206004,2814,novelist as protagonist,1269893464 +206004,2814,secret door,1269893327 +206004,2814,serial killer,1269893304 +206004,2814,storm,1269893307 +206004,2814,Vincent Price,1269893282 +206004,2814,writer,1269893382 +206004,2846,animal cruelty,1389994112 +206004,2846,real animal deaths,1389993998 +206004,2853,atmospheric,1424294412 +206004,2853,creepy,1424294156 +206004,2853,horror,1424294137 +206004,2853,mystery,1424294132 +206004,2853,religion,1424294362 +206004,2853,serial killer,1424294134 +206004,2867,Chris Sarandon,1331142453 +206004,2867,disco scene,1331142142 +206004,2867,Roddy McDowall,1331142182 +206004,2867,Special Effects,1331142156 +206004,2867,vampires,1331142147 +206004,2867,William Ragsdale,1331142451 +206004,2877,campy,1426933870 +206004,2877,humorous,1426933901 +206004,2877,irreverent,1426934013 +206004,2877,melodramatic,1426933941 +206004,2877,musical,1426934035 +206004,2877,notable soundtrack,1426934071 +206004,2877,psychedelic,1426934576 +206004,2877,rock and roll,1426934524 +206004,2877,Rock Opera,1426933866 +206004,2877,Roger Daltrey,1426934107 +206004,2877,satirical,1426934517 +206004,2877,The Who,1426933875 +206004,2900,creature feature,1427887411 +206004,2901,disturbing,1321864862 +206004,2901,horror,1321864887 +206004,2908,brutal,1268350103 +206004,2908,cross dressing,1268350106 +206004,2908,disturbing,1268350140 +206004,2908,hilary swank,1268350079 +206004,2908,homophobia,1268350052 +206004,2908,oppression,1268350124 +206004,2908,Tragedy,1268350095 +206004,2908,transgender,1268350052 +206004,2908,true story,1268350081 +206004,2916,Arnold Schwarzenegger,1267991390 +206004,2916,bar brawl,1268864800 +206004,2916,campy,1267991399 +206004,2916,conspiracy,1267991439 +206004,2916,mars,1267991431 +206004,2916,memory,1267991416 +206004,2916,Philip K. Dick,1267991415 +206004,2916,sci-fi,1267991433 +206004,2916,virtual reality,1267991420 +206004,2926,Better than the remake,1267987324 +206004,2949,Sean Connery,1268669961 +206004,2951,Clint Eastwood,1294808084 +206004,2951,Ennio Morricone,1294808088 +206004,2951,Sergio Leone,1294808107 +206004,2959,mental illness,1268351543 +206004,2959,twist ending,1268351552 +206004,2967,creepy kid,1444598487 +206004,2967,domestic melodrama,1444598494 +206004,2967,evil children,1444598482 +206004,2967,nature vs. nurture,1444598535 +206004,2967,talented child actor,1444598486 +206004,2983,brainwashing,1280350861 +206004,2983,cold war,1280350863 +206004,2983,Michael Caine,1280350876 +206004,2983,spies,1280350873 +206004,2987,animation & live action interact,1267983339 +206004,2987,bar brawl,1268864500 +206004,2987,Bechdel Test:Fail,1358099415 +206004,2987,cartoon-reality crossover,1267983335 +206004,2987,private detective,1267983360 +206004,2987,rabbits,1267983356 +206004,2992,based on a book,1409689036 +206004,2992,Clive Barker,1409689018 +206004,2997,John Malkovich,1268351570 +206004,2997,quirky,1268351573 +206004,2997,surreal,1268351565 +206004,3000,anti-war,1267987444 +206004,3000,atmospheric,1267987447 +206004,3000,Bechdel Test:Pass,1358098174 +206004,3000,demons,1267987434 +206004,3000,environmental,1267987452 +206004,3000,history,1267987464 +206004,3000,nature,1267987428 +206004,3018,campy,1374053222 +206004,3018,H.P. Lovecraft,1374053157 +206004,3018,humorous,1374053161 +206004,3018,Jeffrey Combs,1374053214 +206004,3018,Lovecraftian mythology,1374053166 +206004,3018,mad scientist,1374053169 +206004,3018,silly,1374053226 +206004,3018,zombies,1374053163 +206004,3022,acrobat,1436737235 +206004,3022,American Civil War,1436737363 +206004,3022,black and white,1436737206 +206004,3022,Buster Keaton,1436737212 +206004,3022,cannon,1436737344 +206004,3022,cinematography,1436737319 +206004,3022,Civil War,1436737361 +206004,3022,civilians at war,1436737356 +206004,3022,cycling,1436737353 +206004,3022,funny,1436737350 +206004,3022,great stunts,1436737332 +206004,3022,rescue,1436737286 +206004,3022,silent movie,1436737209 +206004,3022,spies,1436737293 +206004,3022,thunderstorm,1436737227 +206004,3022,train,1436737327 +206004,3022,trains,1436737202 +206004,3024,Barbara Steele,1404077287 +206004,3024,Creature Feature,1404077317 +206004,3024,eco-horror,1404077308 +206004,3024,Joe Dante,1391984140 +206004,3024,piranha,1391984158 +206004,3034,2D animation,1268433029 +206004,3056,Adrien Brody,1270508403 +206004,3056,buried alive,1270508415 +206004,3056,escape artist,1270508453 +206004,3056,masochism,1270508431 +206004,3070,80s,1307308987 +206004,3070,aliens,1307308990 +206004,3070,campy,1307308984 +206004,3070,cult film,1307309014 +206004,3070,sci-fi,1307309007 +206004,3075,Catherine Deneuve,1295794699 +206004,3075,claustrophobic,1295794670 +206004,3075,insanity,1295794707 +206004,3075,loneliness,1295794658 +206004,3075,MENTAL ILLNESS,1295794674 +206004,3075,ominous,1295794718 +206004,3075,rape,1295794677 +206004,3075,sisters,1295794713 +206004,3081,atmospheric,1267986737 +206004,3081,Bechdel Test:Pass,1358100834 +206004,3081,blood,1358100865 +206004,3081,Christina Ricci,1271333531 +206004,3081,Christopher Walken,1267986759 +206004,3081,Dark,1267986735 +206004,3081,gore,1358100862 +206004,3081,Mystery,1267986755 +206004,3081,quirky,1267986744 +206004,3081,Romance,1271333497 +206004,3081,Saturn Award (Best Music),1267986791 +206004,3081,small town,1358100890 +206004,3081,Tim Burton,1267986751 +206004,3081,visually appealing,1267986748 +206004,3081,witchcraft,1271333515 +206004,3101,adultery,1279966467 +206004,3119,ending,1377023459 +206004,3119,slasher,1377023408 +206004,3175,Sigourney Weaver,1272832168 +206004,3203,Sea,1296773397 +206004,3205,atmospheric,1314778757 +206004,3205,cinematography,1314778765 +206004,3211,a dingo ate my baby,1269106227 +206004,3253,Bechdel Test:Fail,1399577834 +206004,3253,comedy,1399577821 +206004,3253,music,1399577842 +206004,3262,atmospheric,1268431701 +206004,3262,David Lynch,1268431692 +206004,3262,surreal,1305528617 +206004,3273,serial killer,1409689483 +206004,3273,slasher,1409689486 +206004,3273,weakest in the series,1409689469 +206004,3273,Wes Craven,1409689501 +206004,3274,identity theft,1269439421 +206004,3274,room-mate from hell,1269439431 +206004,3275,open ending,1289585628 +206004,3328,hip hop,1407755313 +206004,3328,Jim Jarmusch,1407755303 +206004,3328,melancholy,1407755306 +206004,3328,quirky,1407755316 +206004,3355,ancient books,1421839888 +206004,3355,bad ending,1421839906 +206004,3355,devil,1421839894 +206004,3355,devil worship,1421839947 +206004,3355,Johnny Depp,1421839881 +206004,3355,Mystery,1421839900 +206004,3355,rare books,1421839891 +206004,3355,satanism,1421839883 +206004,3359,coming of age,1283190239 +206004,3359,Dennis Christopher,1283190270 +206004,3359,Indiana,1283190227 +206004,3359,Jackie Earle Haley,1283190221 +206004,3359,wonderfully warm and amusing,1283190281 +206004,3394,80's,1345561800 +206004,3394,alcohol abuse,1345561825 +206004,3394,Bruce Willis,1345561779 +206004,3394,It's really his own damn fault,1345561951 +206004,3400,ADHD,1404077799 +206004,3400,dreams,1404077734 +206004,3409,gore,1307778304 +206004,3409,hilarious,1307778285 +206004,3409,premonition,1307778279 +206004,3409,supernatural,1307778293 +206004,3412,childhood classics,1267990565 +206004,3412,Dream Sequence,1267990581 +206004,3412,hunting,1267990583 +206004,3412,survival,1267990570 +206004,3412,wilderness,1267990574 +206004,3418,Bechdel Test:Pass,1358100440 +206004,3418,Girl Power,1358099594 +206004,3418,Ridley Scott,1358099587 +206004,3472,Christopher Lee,1315135613 +206004,3472,devil,1315135484 +206004,3472,witch,1315135474 +206004,3476,conspiracy,1361821664 +206004,3476,flashbacks,1361821652 +206004,3476,insanity,1361821608 +206004,3476,mental illness,1361821679 +206004,3476,multiple realities,1361821657 +206004,3476,nonlinear,1361821660 +206004,3476,paranoia,1361821615 +206004,3476,surreal,1361821621 +206004,3476,Tim Robbins,1361821617 +206004,3476,Vietnam War,1361821613 +206004,3490,aliens,1436646882 +206004,3490,Christopher Lee,1436646891 +206004,3490,creepy,1436647154 +206004,3490,death by staring,1436646949 +206004,3490,evolution,1436646878 +206004,3490,humanoid,1436647108 +206004,3490,Peter Cushing,1436646892 +206004,3490,possession,1436646874 +206004,3490,reanimated corpses,1436647136 +206004,3490,soviet russians,1436646902 +206004,3490,trains,1436646846 +206004,3490,zombies,1436647118 +206004,3527,alien,1282643071 +206004,3527,aliens,1282643073 +206004,3527,Arnold Schwarzenegger,1282643051 +206004,3527,Carl Weathers,1282643059 +206004,3527,sci-fi,1282643090 +206004,3527,survival,1282643063 +206004,3527,violent,1282643065 +206004,3576,aliens,1268326992 +206004,3576,Kyle MacLachlan,1268326987 +206004,3576,outcast,1268327710 +206004,3576,parasite,1268327681 +206004,3576,shape shifter,1268327639 +206004,3587,Dario Argento,1268940734 +206004,3587,WITCHCRAFT,1268940776 +206004,3621,acting,1378759822 +206004,3621,confusing,1378759810 +206004,3621,hysteric,1379447338 +206004,3621,mess,1378759781 +206004,3621,Special Effects,1378759846 +206004,3621,visually appealing,1378759774 +206004,3627,atmospheric,1267990225 +206004,3627,carnival,1267990318 +206004,3627,dreamlike,1267990218 +206004,3627,ghosts,1267990307 +206004,3627,organ,1267990352 +206004,3633,George Lazenby,1271333673 +206004,3633,skiing,1271333686 +206004,3633,switzerland,1271333694 +206004,3635,egypt,1355863851 +206004,3671,Bechdel Test:Fail,1441525413 +206004,3671,breaking the fourth wall,1441525399 +206004,3671,comedy,1441525487 +206004,3671,madcap,1441525483 +206004,3671,parody,1441525409 +206004,3671,race issues,1441525402 +206004,3671,social commentary,1441525472 +206004,3674,dogs,1327570959 +206004,3674,Greece,1327570950 +206004,3676,David Lynch,1267982497 +206004,3676,disturbing,1305528475 +206004,3676,dreamlike,1305528494 +206004,3676,hallucinatory,1305528502 +206004,3676,Insane,1305528491 +206004,3676,ominous,1267982477 +206004,3681,Clint Eastwood,1314779507 +206004,3681,Ennio Morricone,1314779493 +206004,3681,Italian,1314779544 +206004,3681,Klaus Kinski,1314779538 +206004,3681,spaghetti western,1314779550 +206004,3692,disgusting scenes,1277678128 +206004,3692,gross,1277678064 +206004,3692,High school violence,1277678165 +206004,3692,nuclear,1276512840 +206004,3692,radiation,1276512867 +206004,3693,campy,1397336455 +206004,3693,Troma,1397336458 +206004,3696,1980s,1267988417 +206004,3696,aliens,1267988131 +206004,3696,campy,1267988219 +206004,3696,comedy,1399319606 +206004,3696,cult film,1399319718 +206004,3696,dark humor,1399319698 +206004,3696,horror comedy,1399319633 +206004,3696,prom,1267988243 +206004,3696,pseudo-zombies,1399319582 +206004,3696,serial killer,1267988285 +206004,3696,time-skip,1267988403 +206004,3696,tough cop,1267988298 +206004,3698,campy,1269461980 +206004,3698,so bad it's good,1269461970 +206004,3698,survival,1269461974 +206004,3698,television,1269461976 +206004,3702,Australia,1432499277 +206004,3702,Australian,1432499433 +206004,3702,car chase,1432499260 +206004,3702,colorful,1432499294 +206004,3702,DEATH OF A SPOUSE,1432499324 +206004,3702,Fifi,1432499391 +206004,3702,gangs,1432499371 +206004,3702,George Miller,1432499364 +206004,3702,homosexual undertones,1432499417 +206004,3702,leather cops,1432499385 +206004,3702,low budget,1432499318 +206004,3702,Mel Gibson,1432499298 +206004,3702,motorcycle,1432499374 +206004,3702,peculiar score,1432499530 +206004,3702,post-apocalyptic,1432499266 +206004,3702,revenge,1432499310 +206004,3702,stunts,1432499367 +206004,3702,weird,1432499336 +206004,3703,car chase,1268076440 +206004,3703,dogs,1268076447 +206004,3703,homosexual undertones,1268076423 +206004,3703,mask,1268076386 +206004,3703,muscle,1268076383 +206004,3703,post-apocalyptic,1268076377 +206004,3703,stranger,1268076470 +206004,3709,Horror,1374052632 +206004,3709,Stephen King,1374052613 +206004,3726,gangs,1385758954 +206004,3726,John Carpenter,1385758951 +206004,3726,Kick-Butt Women,1385759058 +206004,3726,police,1385759029 +206004,3757,amicus,1362846089 +206004,3826,invisibility,1268496028 +206004,3826,Sexualized violence,1268496034 +206004,3832,atmospheric,1425329718 +206004,3832,Boris Karloff,1425329792 +206004,3832,classic,1425329755 +206004,3832,creepy,1425329722 +206004,3832,eerie,1425329724 +206004,3832,ghosts,1425329805 +206004,3832,Mario Bava,1425329733 +206004,3832,menacing,1425329729 +206004,3832,stalking,1425329817 +206004,3832,stylistic,1425329714 +206004,3832,vampires,1425329726 +206004,3833,blues,1304974236 +206004,3833,EXPERIMENTS GONE AWRY,1304974258 +206004,3833,hubris,1304974294 +206004,3833,mad scientist,1304974244 +206004,3833,sci-fi,1304974273 +206004,3838,Angus Scrimm,1342172469 +206004,3838,retcon,1342172353 +206004,3838,supernatural,1342172522 +206004,3840,countryside,1328963585 +206004,3840,demons,1328963482 +206004,3840,Lance Henriksen,1328963482 +206004,3840,revenge,1328963604 +206004,3840,witch,1328963476 +206004,3843,campy,1427487335 +206004,3843,cheesy,1427487391 +206004,3843,horror,1427487359 +206004,3843,slasher,1427487408 +206004,3843,twist ending,1427487375 +206004,3872,Asylum,1437600543 +206004,3872,cannibalism,1437600690 +206004,3872,classism,1437600679 +206004,3872,Elizabeth Taylor,1437600552 +206004,3872,Katherine Hepburn,1437600550 +206004,3872,lobotomy,1437600603 +206004,3872,mental healthcare,1437600615 +206004,3872,mental illness,1437600674 +206004,3872,Mystery,1437600545 +206004,3872,the horror,1437600703 +206004,3875,Christopher Lee,1390861032 +206004,3875,DEAL WITH THE DEVIL,1390861081 +206004,3875,DEVIL WORSHIP,1390861085 +206004,3917,adultery,1268327274 +206004,3917,cenobites,1268327211 +206004,3917,dead lover,1268327291 +206004,3917,demons,1268327490 +206004,3917,disgusting scenes,1354910504 +206004,3917,Doug Bradley,1284851240 +206004,3917,Frank,1268327535 +206004,3917,murder,1268327303 +206004,3917,sadomasochist demons from hell,1284851224 +206004,3917,sadomasochistic,1268327254 +206004,3917,sex horror,1354910460 +206004,3918,asylum,1354910578 +206004,3918,God,1354910587 +206004,3918,Hell,1354910555 +206004,3918,insanity,1354910536 +206004,3918,occult,1354910540 +206004,3930,aquatic,1427887714 +206004,3930,Beauty and the Beast,1397078770 +206004,3930,campy,1397078852 +206004,3930,creature feature,1427887695 +206004,3930,monster,1397078792 +206004,3930,Stereoscopic 3-D,1397078754 +206004,3930,Universal 3-D,1397078749 +206004,3932,H.G. Wells,1348647311 +206004,3932,horror comedy,1358103948 +206004,3932,invisibility,1348647377 +206004,3932,James Whale,1348647374 +206004,3932,lust for power,1348647307 +206004,3932,mad scientist,1348647309 +206004,3932,Special Effects,1348647367 +206004,3933,EXPERIMENTS GONE AWRY,1304925738 +206004,3933,science,1304925560 +206004,3949,cinematography,1268076606 +206004,3949,independent film,1268076588 +206004,3949,loneliness,1268076595 +206004,3949,psychology,1268076673 +206004,3949,social commentary,1268076590 +206004,3966,blackmail,1433192613 +206004,3966,"but wait, it gets worse!",1433192883 +206004,3966,fate,1433192636 +206004,3966,film noir,1433192629 +206004,3966,monologue,1433192895 +206004,3993,anti-authoritarian,1431293055 +206004,3993,asylum,1431293008 +206004,3993,BDSM,1431292998 +206004,3993,censorship,1431293000 +206004,3993,DOCTORS AND PATIENTS,1431293086 +206004,3993,dubious medical experiments,1431293064 +206004,3993,flagellation,1431293030 +206004,3993,freedom of expression,1431293016 +206004,3993,hypocrisy,1431293053 +206004,3993,Marquis de Sade,1431293014 +206004,3993,morality,1431293011 +206004,3993,patriarchy,1431293074 +206004,3993,sadism,1431293097 +206004,3993,Sexualized violence,1431293004 +206004,3993,torture as a method of treatment,1431293037 +206004,3997,absolute crap,1325665312 +206004,3997,Bruce Payne,1303292536 +206004,3997,cheap,1303292444 +206004,3997,Jeremy Irons,1303292439 +206004,3997,Marlon Wayans,1325665217 +206004,3997,Snails didn't come back to life,1325665182 +206004,3997,so bad it's good,1303292460 +206004,4015,aliens,1430604801 +206004,4015,Ashton Kutcher,1430604794 +206004,4015,shallow,1430604816 +206004,4015,Silly,1430604791 +206004,4015,Stoner,1430604805 +206004,4015,Stoner Movie,1430604785 +206004,4015,stupid,1430604803 +206004,4036,filming,1315136286 +206004,4036,Willem Dafoe,1315136291 +206004,4065,blaxploitation,1268495259 +206004,4065,cathartic,1268495304 +206004,4065,drug dealing,1268495277 +206004,4065,flashy,1268495290 +206004,4065,ironic,1268495287 +206004,4065,Pam Grier,1268495251 +206004,4065,revenge,1268495254 +206004,4105,Bruce Campbell,1268348526 +206004,4105,dark humor,1268348499 +206004,4105,demons,1278073699 +206004,4105,despair,1268348553 +206004,4105,horror,1268348501 +206004,4105,possession,1268348538 +206004,4105,rape,1278073719 +206004,4105,splatter,1268348503 +206004,4105,wilderness,1268348530 +206004,4105,zombies,1268348509 +206004,4128,1980s,1414959507 +206004,4128,adolescence,1414959504 +206004,4128,brother-brother relationship,1414959500 +206004,4128,vampires,1414959514 +206004,4133,campy,1268569159 +206004,4133,he-man,1268569193 +206004,4133,skeletor,1268569176 +206004,4133,whipping,1268569184 +206004,4135,80's slang,1427487210 +206004,4135,Frankenstein's monster,1427487213 +206004,4135,monster,1427487217 +206004,4135,Monsters,1427487201 +206004,4135,vampires,1427487205 +206004,4135,werewolves,1427487203 +206004,4195,atmospheric,1268350815 +206004,4195,Bible,1268436048 +206004,4195,dead wife,1268350865 +206004,4195,plagues,1268436032 +206004,4195,revenge,1268350832 +206004,4195,Vincent Price,1268350811 +206004,4210,atmospheric,1347540026 +206004,4210,Bechdel Test:Fail,1358103532 +206004,4210,Hannibal Lecter,1358103364 +206004,4210,Michael Mann,1358103400 +206004,4210,MURDER INVESTIGATIONS,1347540000 +206004,4210,ominous,1358103388 +206004,4210,remade,1358103262 +206004,4210,serial killer,1358103391 +206004,4210,stylized,1347539984 +206004,4210,tense,1347540014 +206004,4210,visual,1347539993 +206004,4210,visually appealing,1358103277 +206004,4274,big budget,1268428891 +206004,4274,Elizabeth Taylor,1268428922 +206004,4274,Martin Landau,1268428895 +206004,4274,Richard Burton,1268428958 +206004,4306,Dreamworks,1268519745 +206004,4327,Bechdel Test:Fail,1296334064 +206004,4327,Robert Vaughn,1296334054 +206004,4327,Steve McQueen,1268352403 +206004,4327,western,1268352414 +206004,4356,Jane Russel,1316980456 +206004,4403,buried alive,1268348330 +206004,4403,fire,1268348919 +206004,4403,horror,1268348339 +206004,4403,incest,1268430560 +206004,4403,premature burial,1272268075 +206004,4403,servant,1268348359 +206004,4403,Vincent Price,1268348275 +206004,4428,atmospheric,1316980866 +206004,4428,bittersweet,1316980851 +206004,4428,intimate,1316980855 +206004,4428,reflective,1316980858 +206004,4437,Bechdel Test:Pass,1358096899 +206004,4437,breaking glass,1267983513 +206004,4437,crazy music,1267983564 +206004,4437,creepy,1267983612 +206004,4437,Dario Argento,1267983492 +206004,4437,dreamlike,1267983488 +206004,4437,eerie,1267983484 +206004,4437,Giallo,1273506895 +206004,4437,hallucinatory,1267983536 +206004,4437,head through glass,1268137964 +206004,4437,horror,1267983521 +206004,4437,Jessica Harper,1267983482 +206004,4437,Joan Bennett,1267983574 +206004,4437,ominous,1267983528 +206004,4437,Sexualized violence,1270473952 +206004,4437,Udo Kier,1267983477 +206004,4437,WITCHCRAFT,1267983472 +206004,4480,creature feature,1427887812 +206004,4480,monster:blob,1427887820 +206004,4480,nasty,1427887836 +206004,4480,remake,1427887817 +206004,4492,aliens,1374264307 +206004,4492,creature feature,1427887590 +206004,4518,Amanda Donohoe,1453149184 +206004,4518,camp,1453149056 +206004,4518,cult classic,1453149059 +206004,4518,dragon,1453149077 +206004,4518,gothic,1453149052 +206004,4518,horror,1453149061 +206004,4518,Hugh Grant,1453149168 +206004,4518,pagan,1453149063 +206004,4518,sexual themes,1453149054 +206004,4518,snake vampires,1453149111 +206004,4518,snakes,1453149071 +206004,4518,trippy,1453149152 +206004,4518,weird,1453149159 +206004,4518,wyrm,1453149080 +206004,4519,coming of age,1268079794 +206004,4519,dead mother,1268079783 +206004,4519,dinosaurs,1268079749 +206004,4519,Don Bluth,1268079727 +206004,4519,friendship,1268079816 +206004,4519,nostalgic,1268079803 +206004,4533,brains!,1341568276 +206004,4533,satirical,1341568262 +206004,4533,zombies,1341568267 +206004,4541,Voodoo,1315135958 +206004,4541,zombies,1315135964 +206004,4560,dog,1438607503 +206004,4560,experiment gone wrong,1438607530 +206004,4572,nostalgic,1278967521 +206004,4572,Tokyo,1278967526 +206004,4637,Dolph Lundgren,1268325704 +206004,4637,explosions,1268325785 +206004,4637,heel face turn,1268325911 +206004,4637,helpful natives,1268325995 +206004,4637,revenge,1268326067 +206004,4637,Spetsnaz,1268325768 +206004,4637,torture,1268326051 +206004,4658,Alejandro Jodorowsky,1421837323 +206004,4658,atmospheric,1421837326 +206004,4658,circus,1421837382 +206004,4658,clowns,1421837341 +206004,4658,eerie,1421837334 +206004,4658,enigmatic,1421837336 +206004,4658,funny,1421837366 +206004,4658,religion,1421837418 +206004,4658,revenge,1421837437 +206004,4658,Soundtrack,1421837528 +206004,4658,visually appealing,1421837514 +206004,4658,weird,1421837350 +206004,4682,so bad it's almost good,1374052706 +206004,4689,blind,1376249756 +206004,4689,Catherine Spaak,1376249736 +206004,4689,Dario Argento,1376249616 +206004,4689,Ennio Morricone,1376249641 +206004,4689,Giallo,1376249616 +206004,4689,humor,1376249907 +206004,4689,pseudo science,1450007781 +206004,4689,serial killer,1376249645 +206004,4697,brothers,1305528180 +206004,4697,campy,1305528182 +206004,4697,conjoined twins,1305528191 +206004,4697,gruesome,1305528201 +206004,4697,low budget,1305528255 +206004,4697,quirky,1305528218 +206004,4697,siblings,1305528233 +206004,4697,silly,1305528239 +206004,4697,twins,1305528235 +206004,4697,TWINS AND LOOKALIKES,1305528244 +206004,4744,homosexual undertones,1269040147 +206004,4744,monster,1268955268 +206004,4744,sadism,1269040150 +206004,4744,scarecrow,1269039105 +206004,4744,siblings,1268955258 +206004,4744,supernatural,1269040173 +206004,4744,tongue-in-cheek,1374054384 +206004,4753,child vampire,1436096482 +206004,4753,comedy,1436096443 +206004,4753,vampire,1436096426 +206004,4753,vampires,1436096429 +206004,4754,atmospheric,1267982884 +206004,4754,Christopher Lee,1267982892 +206004,4754,cult film,1267982879 +206004,4754,eerie,1267982863 +206004,4754,enigmatic,1267982939 +206004,4754,island,1267982912 +206004,4754,MISSING PERSONS,1267982874 +206004,4754,pagan,1267982947 +206004,4754,twist ending,1267982984 +206004,4768,criminal mastermind,1287575144 +206004,4768,gambling,1287575104 +206004,4768,ghosts,1287575174 +206004,4768,supernatural,1287575159 +206004,4786,1970's,1343826257 +206004,4786,atmosphere,1437546105 +206004,4786,cinematography,1437546084 +206004,4786,colours,1437546088 +206004,4786,ghosts,1343826277 +206004,4786,haunted house,1343826300 +206004,4786,Roddy McDowall,1343826267 +206004,4786,stylish,1437546095 +206004,4786,visually appealing,1437546070 +206004,4786,wide angle lens,1437546027 +206004,4798,Cary Grant,1443345447 +206004,4798,Ingrid Bergman,1443345446 +206004,4798,marriage,1443345463 +206004,4798,misunderstandings,1443345457 +206004,4798,sworn bacherol,1443345484 +206004,4848,amnesia,1268078802 +206004,4848,Atmospheric,1268078761 +206004,4848,dark,1268078764 +206004,4848,dreamlike,1268078797 +206004,4848,lesbian,1268078767 +206004,4848,movie business,1268078791 +206004,4848,mystery,1268078785 +206004,4848,nonlinear,1268078774 +206004,4848,surrealism,1268078779 +206004,4855,Clint Eastwood,1424037347 +206004,4855,cool,1424037400 +206004,4855,gritty,1424037376 +206004,4855,harsh,1424037373 +206004,4855,moody,1424037404 +206004,4855,police,1424037355 +206004,4855,serial killer,1424037365 +206004,4878,alternate timeline,1267982835 +206004,4878,atmospheric,1277678563 +206004,4878,creepy,1277678652 +206004,4878,cult classic,1267982831 +206004,4878,cult film,1267982828 +206004,4878,dreamlike,1267982787 +206004,4878,Drew Barrymore,1271109522 +206004,4878,Frank,1268327580 +206004,4878,high school,1277678600 +206004,4878,Jake Gyllenhaal,1277678608 +206004,4878,mental illness,1267982782 +206004,4878,psychology,1267982784 +206004,4878,quirky,1267982807 +206004,4878,satirical,1267982807 +206004,4878,social commentary,1267982841 +206004,4878,teen,1267982813 +206004,4878,thought-provoking,1267982802 +206004,4930,Berlin wall,1294529981 +206004,4932,transphobia,1392069039 +206004,4932,transphobic,1392068936 +206004,4932,transvestism,1392068985 +206004,4941,camp,1409984583 +206004,4941,great soundtrack,1409984577 +206004,4941,So bad it's good,1409984580 +206004,4941,space opera,1409984618 +206004,4944,boring,1409982322 +206004,4944,creature feature,1409982343 +206004,4944,giant ants,1409981433 +206004,4944,giant insects,1409981411 +206004,4944,Joan Collins,1409981473 +206004,4944,monster:giant insect,1409982325 +206004,4947,armored bus,1271333888 +206004,4947,corruption,1271333982 +206004,4947,hooker,1271333867 +206004,4947,WITNESS PROTECTION,1271333935 +206004,4963,casino,1268077915 +206004,4963,crime,1268077916 +206004,4963,George Clooney,1268077909 +206004,4963,good soundtrack,1268077890 +206004,4963,heist,1268077941 +206004,4963,Julia Roberts,1268077911 +206004,4963,mastermind,1268077933 +206004,4963,remake,1268077898 +206004,4963,witty,1268077902 +206004,4966,50s sci-fi,1426265334 +206004,4966,acceptance,1426265429 +206004,4966,based on a book,1426265480 +206004,4966,existential,1426265420 +206004,4966,radiation,1426265442 +206004,4966,sci-fi,1426265355 +206004,4966,spider,1426265460 +206004,4966,spirituality,1426265378 +206004,4973,beautifully filmed,1268350769 +206004,4973,fairy tale,1268350783 +206004,4973,feel-good,1268350781 +206004,4973,idealism,1268350779 +206004,4973,inspirational,1268350804 +206004,4973,quirky,1268350787 +206004,4973,stylized,1268350790 +206004,4973,visually appealing,1267982253 +206004,4975,existentialism,1268431626 +206004,4975,Penélope Cruz,1268431656 +206004,4975,remake,1268431615 +206004,4975,surreal,1268431623 +206004,4993,adventure,1296334261 +206004,4993,atmospheric,1268079146 +206004,4993,beautifully filmed,1296334269 +206004,4993,Bechdel Test:Fail,1358103664 +206004,4993,epic,1268079192 +206004,4993,film location,1268079172 +206004,4993,great soundtrack,1296334236 +206004,4993,high fantasy,1296334257 +206004,4993,magic,1268079183 +206004,5026,ending twist,1349511425 +206004,5026,martial arts,1349511408 +206004,5026,Matrix influence,1349511398 +206004,5026,stylized,1349511451 +206004,5026,wuxia,1349511332 +206004,5054,brain machine,1448826057 +206004,5054,Christopher Walken,1448826017 +206004,5054,death,1448826215 +206004,5054,evil military,1448826154 +206004,5054,factory,1448826144 +206004,5054,hilarious,1448826176 +206004,5054,memory,1448826012 +206004,5054,military,1448826059 +206004,5054,mysticism,1448826014 +206004,5054,psychological,1448826021 +206004,5054,robots,1448826140 +206004,5054,science,1448826233 +206004,5054,scientist experiments on self,1448826055 +206004,5054,Spherical Blow-Up,1448826036 +206004,5054,unintentional comedy,1448826132 +206004,5054,what hath science wrought,1448826210 +206004,5069,mecha,1270473755 +206004,5069,Parallel universe,1270473767 +206004,5069,The Series Was Better,1270473631 +206004,5072,visually appealing,1269106180 +206004,5105,atmospheric,1376086910 +206004,5105,creepy,1376086887 +206004,5105,DEATH OF A CHILD,1376086915 +206004,5105,Donald Sutherland,1376086880 +206004,5105,gothic,1376086907 +206004,5105,HAUNTED BY THE PAST,1376086889 +206004,5105,Italy,1376086928 +206004,5105,PSYCHIC ABILITIES,1376086894 +206004,5105,Venice,1376086945 +206004,5159,environmental,1268348019 +206004,5159,lab animals,1268348058 +206004,5159,rain forest,1268348066 +206004,5159,Robin Williams,1268348012 +206004,5159,romance,1268348096 +206004,5159,Tim Curry,1268348014 +206004,5163,cat,1295377799 +206004,5163,dreamlike,1355864066 +206004,5163,masked killer,1295377793 +206004,5163,Michele Soavi,1295377860 +206004,5163,slasher,1295377842 +206004,5163,Theater,1295377810 +206004,5163,Visuals,1295377903 +206004,5165,creepy,1358103101 +206004,5165,disturbing,1358103104 +206004,5165,harsh,1358103086 +206004,5165,horror,1358103087 +206004,5165,Lucio Fulci,1358103080 +206004,5165,ZOMBIES,1358103115 +206004,5205,cannibalism,1377023547 +206004,5205,dark comedy,1377023553 +206004,5323,androids,1326717302 +206004,5323,cyborg,1326717294 +206004,5323,Lisa Ryder,1326717278 +206004,5342,80's,1290251140 +206004,5342,atmosphere,1290251143 +206004,5342,directorial debut,1290251067 +206004,5342,John McTiernan,1290251057 +206004,5342,supernatural,1290251091 +206004,5349,Willem Dafoe,1358096175 +206004,5383,atmospheric,1375957609 +206004,5383,Christopher Lee,1375957584 +206004,5383,Hammer Film Productions,1375957625 +206004,5383,Peter Cushing,1375957567 +206004,5383,Terence Fisher,1375957549 +206004,5433,children,1349511259 +206004,5433,Everett McGill,1349511833 +206004,5433,wheelchair,1349511254 +206004,5478,creature feature,1427887566 +206004,5498,altruism,1268433087 +206004,5498,compassionate,1268433108 +206004,5498,meaning of life,1268433091 +206004,5502,Alien Invasion,1268432559 +206004,5502,crop-circles,1268432587 +206004,5502,M. Night Shyamalan,1268432539 +206004,5502,Mel Gibson,1268432546 +206004,5502,ominous,1268432570 +206004,5528,Dream Sequence,1269380382 +206004,5528,stalker,1269380343 +206004,5555,werewolf,1358507827 +206004,5555,werewolves,1358507829 +206004,5592,beauty killed the beast,1318887839 +206004,5592,bloke in distress,1318887775 +206004,5592,Closets,1318887793 +206004,5592,Monster,1318887799 +206004,5602,Alec Guinness,1267984283 +206004,5602,Bechdel Test:Fail,1358098441 +206004,5602,British,1267984301 +206004,5602,characterization,1267985044 +206004,5602,crazy genius,1279147298 +206004,5602,criminal mastermind,1358098469 +206004,5602,dark comedy,1267984546 +206004,5602,Ealing Studios,1267984247 +206004,5602,Herbert Lom,1267984277 +206004,5602,mastermind,1267984403 +206004,5602,Mrs. Wilberforce,1326108755 +206004,5602,robbery,1267984319 +206004,5604,Alec Guinness,1268496211 +206004,5604,deadpan,1268496220 +206004,5604,FIGHTING THE SYSTEM,1268496180 +206004,5606,CLASS DIFFERENCES,1279714979 +206004,5606,conspiracy,1279715110 +206004,5606,disturbing,1279715093 +206004,5606,fisting,1279715461 +206004,5606,mentally impaired,1279715117 +206004,5606,paranoia,1279715007 +206004,5606,paranoid,1279715004 +206004,5606,sadism,1279714946 +206004,5606,social commentary,1279715356 +206004,5606,weird,1279715016 +206004,5617,bdsm,1431292760 +206004,5617,black comedy,1431292763 +206004,5617,dark comedy,1431292781 +206004,5617,erotic,1431292778 +206004,5617,fighting inner demons,1431292935 +206004,5617,James Spader,1431292794 +206004,5617,love,1431292839 +206004,5617,Maggie Gyllenhaal,1431292776 +206004,5617,quirky,1431292784 +206004,5617,sexuality,1431292774 +206004,5617,spanking is good,1431292854 +206004,5618,alternate reality,1267986686 +206004,5618,atmospheric,1267986697 +206004,5618,Bechdel Test:Pass,1358097675 +206004,5618,door to the different world,1267986707 +206004,5618,fantasy,1267986679 +206004,5618,strong female lead,1267986674 +206004,5649,Christopher Lee,1375957086 +206004,5649,creepy,1375957098 +206004,5649,eerie,1375957094 +206004,5649,Hammer Film Productions,1375957081 +206004,5649,menacing,1375957111 +206004,5649,nocturnal,1375957113 +206004,5649,Peter Cushing,1375957083 +206004,5649,tense,1375957117 +206004,5649,Terence Fisher,1375957107 +206004,5649,vampire,1375957125 +206004,5691,shit,1318708140 +206004,5691,utter shit,1318708268 +206004,5715,revenge,1375957891 +206004,5715,slasher,1375957873 +206004,5715,Special Effects,1375957863 +206004,5726,voodoo,1342614734 +206004,5730,Shô Kosugi,1277814600 +206004,5746,nightmare inducing,1271953494 +206004,5746,Robert Englund,1271953427 +206004,5746,tentacle rape,1271953424 +206004,5754,Michael Caine,1355672369 +206004,5755,keeps you guessing,1356631659 +206004,5755,twist ending,1356631641 +206004,5755,whodunnit,1356631670 +206004,5771,Bechdel Test:Pass,1358102996 +206004,5771,classic,1268598260 +206004,5771,miners,1268598226 +206004,5771,slasher,1269104984 +206004,5771,title spoken by character,1285684736 +206004,5771,Underrated,1285684588 +206004,5771,valentine's day,1268598231 +206004,5791,addiction,1307218425 +206004,5791,biography,1307218382 +206004,5791,historical,1307218398 +206004,5791,sexuality,1307218403 +206004,5791,surreal,1307218388 +206004,5797,atmospheric,1267989997 +206004,5797,Bechdel Test:Pass,1358099118 +206004,5797,creepy,1272010251 +206004,5797,dreamlike,1267989986 +206004,5797,little red riding hood,1269203667 +206004,5797,men and women,1268433524 +206004,5797,Neil Jordan,1267989958 +206004,5797,ominous,1267989991 +206004,5797,sexuality,1268433511 +206004,5797,Stephen Rea,1271334368 +206004,5797,visually appealing,1271334355 +206004,5797,werewolves,1267989981 +206004,5833,atmospheric,1321865006 +206004,5833,chauvinist,1380443751 +206004,5833,misogynistic,1415396662 +206004,5833,survival,1321864998 +206004,5833,werewolves,1321865000 +206004,5844,death scenes,1424809808 +206004,5844,gruesome,1424809584 +206004,5844,Hard Way,1424809603 +206004,5844,slasher,1424809578 +206004,5853,body horror,1268432824 +206004,5853,David Cronenberg,1268432772 +206004,5853,exploding heads,1268432768 +206004,5853,otherness,1268432801 +206004,5853,Patrick McGoohan,1268432765 +206004,5853,psychic powers,1378759913 +206004,5853,telepathy,1378759926 +206004,5882,Joseph Gordon-Levitt,1409771737 +206004,5882,pirates,1409771739 +206004,5882,space,1409771741 +206004,5882,steampunk,1409771743 +206004,5882,treasure hunt,1409771745 +206004,5902,dark comedy,1267990060 +206004,5902,melancholy,1267990086 +206004,5902,Nicolas Cage,1267990074 +206004,5902,surreal,1267990070 +206004,5935,authority,1277678280 +206004,5935,bunnies,1277678461 +206004,5935,High school violence,1277678234 +206004,5935,illogical,1277678288 +206004,5935,law,1277678249 +206004,5935,order,1277678255 +206004,5935,rape,1277678430 +206004,5935,revenge,1277678430 +206004,5935,silly,1277678308 +206004,5935,teacher as protagonist,1277678430 +206004,5961,Clancy Brown,1376250261 +206004,5961,female heroine,1376250229 +206004,5961,Jamie Lee Curtis,1376250250 +206004,5961,rape,1376250236 +206004,5971,children,1268078675 +206004,5971,country life,1268078678 +206004,5971,Cute,1268078670 +206004,5971,nature,1268078683 +206004,5971,spirits,1268078747 +206004,5971,visually appealing,1268078705 +206004,5980,christmas,1451036753 +206004,5980,creepy,1451036769 +206004,5980,disturbing,1451036788 +206004,5980,menacing,1451036804 +206004,5980,Olivia Hussey,1451036795 +206004,5980,remade,1451036780 +206004,5980,slasher,1451036766 +206004,5984,aestethic,1431292560 +206004,5984,artsy,1431292517 +206004,5984,based on a book,1431292501 +206004,5984,BDSM,1431292476 +206004,5984,Blindfold,1431292480 +206004,5984,Bondage,1431292485 +206004,5984,Domination,1431292489 +206004,5984,Fetish,1431292469 +206004,5984,Spanked,1431292499 +206004,5984,Submission,1431292474 +206004,5984,Tied,1431292479 +206004,5984,Udo Kier,1431292493 +206004,5984,visually appealing,1431292549 +206004,5995,Adrien Brody,1268077404 +206004,5995,classical music,1268077422 +206004,5995,historical,1268077415 +206004,5995,holocaust,1268077397 +206004,5995,Nazis,1268077399 +206004,5995,poignant,1268077392 +206004,5995,reflective,1268077408 +206004,5995,Roman Polanski,1268940445 +206004,5995,World War II,1268077428 +206004,5999,bad animation,1404077763 +206004,5999,dumb,1404078284 +206004,5999,graphic violence,1404077752 +206004,5999,heroine,1404077755 +206004,6093,animation,1267988811 +206004,6093,based on book,1267988823 +206004,6093,bittersweet,1267988791 +206004,6093,heartwarming,1267988796 +206004,6093,Mia Farrow,1267988817 +206004,6093,unicorns,1267988799 +206004,6120,aztec god,1399319962 +206004,6120,campy,1399319988 +206004,6120,creature feature,1427887927 +206004,6120,flying monster,1399319974 +206004,6120,giant monster,1399319976 +206004,6140,Dario Argento,1278973726 +206004,6140,head through glass,1278973772 +206004,6148,animal attacks,1283973951 +206004,6148,chilling,1283973732 +206004,6148,disturbing,1283973871 +206004,6148,dog,1283973824 +206004,6148,pessimistic,1283973692 +206004,6148,racism,1283973797 +206004,6148,touching,1283973747 +206004,6148,Underrated,1283973787 +206004,6220,creature feature,1427887381 +206004,6220,Crispin Glover,1357759647 +206004,6220,lots of rats,1357759637 +206004,6220,rats,1357759663 +206004,6220,remake,1357759658 +206004,6250,aliens,1430505124 +206004,6250,anal hemorrhage,1430505099 +206004,6250,Stephen King,1430505091 +206004,6286,amnesia,1268685548 +206004,6286,atmospheric,1268685520 +206004,6286,deadpan,1268685530 +206004,6286,executed with economy of expression,1268685540 +206004,6290,creepy,1312181863 +206004,6290,Rob Zombie,1312181835 +206004,6290,Sid Haig,1312181844 +206004,6301,chauvinism,1286219354 +206004,6301,cinematography,1286219242 +206004,6301,confrontational,1286219404 +206004,6301,disturbing,1286219210 +206004,6301,Dustin Hoffman,1286219203 +206004,6301,harsh,1286219230 +206004,6301,hunting,1286219199 +206004,6301,husband-wife relationship,1286219376 +206004,6301,menacing,1286219197 +206004,6301,misogyny,1286219598 +206004,6301,moral ambiguity,1286219224 +206004,6301,ominous,1286219251 +206004,6301,rape,1286219482 +206004,6301,vigilante,1286219648 +206004,6305,dystopia,1281724593 +206004,6350,adventure,1268349718 +206004,6350,air pirates,1268349760 +206004,6350,aviation,1268349848 +206004,6350,fantasy,1268349781 +206004,6350,far future,1268349791 +206004,6350,Hayao Miyazaki,1268349721 +206004,6350,robots,1268349772 +206004,6373,god,1269852440 +206004,6373,Jim Carrey,1269852405 +206004,6373,Morgan Freeman,1269852412 +206004,6373,not funny,1269852427 +206004,6373,religion,1269852434 +206004,6396,axe,1304631545 +206004,6396,family gatherings,1304631608 +206004,6396,Francis Ford Coppola,1304631647 +206004,6396,guilt,1304631523 +206004,6396,mental illness,1304631511 +206004,6396,slasher,1304631640 +206004,6433,black and white,1278861131 +206004,6433,experimental,1278861142 +206004,6433,slow motion,1278861150 +206004,6517,easily confused with other movie(s) (title),1269475809 +206004,6530,atmospheric,1303294574 +206004,6530,hallucinatory,1303294549 +206004,6530,menacing,1303294579 +206004,6530,ominous,1303294582 +206004,6530,paranoid,1303294542 +206004,6530,Roman Polanski,1303294545 +206004,6530,unreliable narrators,1303294555 +206004,6539,adventure,1268077376 +206004,6539,Johnny Depp,1268077193 +206004,6539,Orlando Bloom,1268077239 +206004,6539,pirates,1268077296 +206004,6539,revenge,1268077272 +206004,6539,ship,1268077307 +206004,6539,swashbuckler,1268077198 +206004,6539,Zombies,1268077323 +206004,6615,awkward,1269105637 +206004,6615,bad acting,1269105508 +206004,6615,corny,1269105839 +206004,6615,corny music,1269105849 +206004,6615,dialogue,1269105648 +206004,6615,illogical,1269105578 +206004,6615,Jason Vorhees,1409689212 +206004,6615,Nudity (Topless),1269105312 +206004,6615,out of character,1269105475 +206004,6615,Robert Englund,1269105605 +206004,6615,Ronny Yu,1269105608 +206004,6615,silly,1269105496 +206004,6615,slasher,1269105283 +206004,6615,stupid teenagers,1269105301 +206004,6629,fire,1268326896 +206004,6629,remake,1268327126 +206004,6629,revenge,1268326920 +206004,6629,Stereoscopic 3-D,1268326858 +206004,6629,Vincent Price,1268326854 +206004,6629,wax figures,1268326881 +206004,6639,Alan Arkin,1357759061 +206004,6639,Audrey Hepburn,1357759066 +206004,6639,Bechdel Test:Pass,1357759101 +206004,6639,blind woman,1361744360 +206004,6639,classic thriller,1357759043 +206004,6639,disability,1357759069 +206004,6639,Frightening,1357759047 +206004,6642,Dolph Lundgren,1268352503 +206004,6660,ballet,1424381292 +206004,6660,characters,1424381478 +206004,6660,colours,1424381576 +206004,6660,dance,1424381492 +206004,6660,lyrical,1424381485 +206004,6660,Michael Powell,1424381592 +206004,6660,Moira Shearer,1424381460 +206004,6660,music,1424381471 +206004,6660,passionate,1424381488 +206004,6660,poignant,1424381530 +206004,6660,set design,1424381469 +206004,6660,stylized,1424381506 +206004,6660,technicolor,1424381456 +206004,6660,visually appealing,1424381521 +206004,6663,doomsday,1268495477 +206004,6663,Herbert Lom,1268495471 +206004,6663,Peter Sellers,1268495497 +206004,6663,slapstick,1268495494 +206004,6713,movie business,1268435356 +206004,6713,Touching,1268435325 +206004,6736,blind woman,1361743833 +206004,6736,blindness,1361743843 +206004,6736,disability,1361743926 +206004,6736,horses,1361743949 +206004,6746,"""based on true events""",1391279376 +206004,6746,B-movie,1391279343 +206004,6746,cozy,1391279353 +206004,6746,Creature Feature,1404077340 +206004,6746,it's so bad it's actually good,1391279320 +206004,6746,maggots,1391279340 +206004,6746,unintentional comedy,1404077362 +206004,6748,creepy,1404075967 +206004,6748,David Cronenberg,1404075922 +206004,6748,maternity,1404075935 +206004,6748,mental illness,1404076013 +206004,6748,Mental Institution,1404076004 +206004,6754,awkward romance,1269462119 +206004,6754,bad acting,1269461714 +206004,6754,easily confused with other movie(s) (title),1269461756 +206004,6754,Good plot but not okay,1269461831 +206004,6754,heroine in tight suit,1269461737 +206004,6754,matrix ripoff,1269461704 +206004,6754,vampire,1269461792 +206004,6754,vampires,1269461790 +206004,6754,werewolf,1269461800 +206004,6754,werewolves,1269461806 +206004,6755,comedy,1356775747 +206004,6755,elderly,1356775727 +206004,6755,horror,1356775748 +206004,6755,mental illness,1356775718 +206004,6755,mummy,1356775711 +206004,6755,Underrated,1356775734 +206004,6773,bicycling,1268431820 +206004,6773,gangsters,1268431822 +206004,6773,mafia,1268431824 +206004,6773,organized crime,1268431827 +206004,6773,quirky,1268431830 +206004,6773,stylized,1268431835 +206004,6773,Tour de France,1268431838 +206004,6774,body horror,1268433163 +206004,6774,David Cronenberg,1268431202 +206004,6774,hallucinations,1268431205 +206004,6774,masochism,1268431211 +206004,6774,ominous,1268431251 +206004,6774,satirical,1268431273 +206004,6774,surreal,1268431213 +206004,6803,breaking glass,1268137887 +206004,6803,bugs,1268077544 +206004,6803,bullying,1268077556 +206004,6803,creepy,1268077517 +206004,6803,Dario Argento,1268077443 +206004,6803,Goblin,1268077446 +206004,6803,great soundtrack,1268077455 +206004,6803,head through glass,1268137914 +206004,6803,monster child,1268077488 +206004,6803,weird,1268077507 +206004,6820,Emily Perkins,1321865114 +206004,6820,werewolves,1321865107 +206004,6874,assassin,1268326179 +206004,6874,Chiaki Kuriyama,1268326167 +206004,6874,funny,1268326153 +206004,6874,nonlinear,1268326189 +206004,6874,Quentin Tarantino,1268326131 +206004,6874,stylized,1268326199 +206004,6874,Uma Thurman,1268326136 +206004,6874,violence,1268326146 +206004,6874,visceral,1268326144 +206004,6976,amicus,1447956927 +206004,6976,anthology,1447956925 +206004,6976,blind,1447957021 +206004,6976,evil deeds,1447956963 +206004,6976,Joan Collins,1447956947 +206004,6976,justice,1447956969 +206004,6976,killer santa,1447957035 +206004,6976,Peter Cushing,1447957015 +206004,6976,repentance,1447956958 +206004,6976,revenge,1447956983 +206004,6987,german expressionism,1383479602 +206004,6987,hypnosis,1383479636 +206004,6991,Christopher Lambert,1268685899 +206004,7001,disturbing,1312181635 +206004,7001,Jeff Goldblum,1312181619 +206004,7001,Leonard Nimoy,1312181622 +206004,7001,remake,1312181629 +206004,7001,Veronica Cartwright,1312181626 +206004,7013,creepy,1422391908 +206004,7013,eerie,1422392008 +206004,7013,evil churchman,1422392056 +206004,7013,love/hate,1422392026 +206004,7013,lyrical,1422392015 +206004,7013,menacing,1422392036 +206004,7013,ominous,1422391912 +206004,7013,preacher,1422391999 +206004,7013,Robert Mitchum,1422391904 +206004,7013,self-proclaimed preacher,1422392079 +206004,7013,serial killer,1422392083 +206004,7013,thriller,1422392021 +206004,7022,based on a book,1271953074 +206004,7022,Chiaki Kuriyama,1279407414 +206004,7022,dystopia,1271919741 +206004,7022,violent,1271953081 +206004,7034,adolescence,1268075988 +206004,7034,coming of age,1268075977 +206004,7034,homosexuality,1279408535 +206004,7034,lesbian,1268075962 +206004,7034,social commentary,1268075965 +206004,7034,stereotypes,1268075970 +206004,7044,atmospheric,1268430867 +206004,7044,attempted rape,1268430946 +206004,7044,black comedy,1305528999 +206004,7044,dreamlike,1268430878 +206004,7044,fairy tale,1268430963 +206004,7044,hallucination,1268430887 +206004,7044,Laura Dern,1305529042 +206004,7044,Nicolas Cage,1305528988 +206004,7044,sexual,1268430922 +206004,7044,unique and purposeful,1268430837 +206004,7044,Willem Dafoe,1305529057 +206004,7044,Wizard of Oz,1305529028 +206004,7073,Herbert Lom,1267986813 +206004,7073,slapstick,1267986902 +206004,7073,twitching eye,1267987008 +206004,7076,car chase,1376250336 +206004,7076,Steve McQueen,1376250346 +206004,7090,atmospheric,1304928053 +206004,7090,cinematography,1304928099 +206004,7090,colourful,1304928057 +206004,7090,visually appealing,1304928074 +206004,7090,wuxia,1304928078 +206004,7099,dystopic future,1268078620 +206004,7099,environmental,1268078631 +206004,7099,Hayao Miyazaki,1268078639 +206004,7099,post-apocalyptic,1268078611 +206004,7099,strong female lead,1268078613 +206004,7099,war,1268078660 +206004,7115,breaking glass,1268137825 +206004,7115,creepy singing,1268137794 +206004,7115,Dario Argento,1268137802 +206004,7115,head through glass,1268137997 +206004,7115,Italian,1268137843 +206004,7115,menacing,1268137811 +206004,7266,amusing!,1289163559 +206004,7266,low budget,1289163562 +206004,7266,wacky scientist,1289163546 +206004,7300,car chase,1374054706 +206004,7300,road movie,1374054711 +206004,7380,Anne Hathaway,1380442822 +206004,7380,cgi,1380442869 +206004,7380,computer bacgrounds,1380442885 +206004,7380,feel good movie,1380442826 +206004,7380,Hugh Dancy,1380442817 +206004,7380,looks fake,1380442896 +206004,7380,magic,1380442977 +206004,7380,racial issues subplot,1380443004 +206004,7380,royalty,1380442979 +206004,7380,terrible acting,1380442813 +206004,7386,Anne Baxter,1314777684 +206004,7386,Biblical,1314777588 +206004,7386,Bondage,1314777538 +206004,7386,Charlton Heston,1314777609 +206004,7386,Christianity,1314777579 +206004,7386,classic,1314777545 +206004,7386,epic,1314777635 +206004,7386,religion,1314777745 +206004,7386,Special Effects,1314777716 +206004,7386,violence,1314777751 +206004,7386,Yul Brynner,1314777618 +206004,7387,cynical,1268349054 +206004,7387,END OF THE WORLD,1268349057 +206004,7387,funny,1268349086 +206004,7387,George A. Romero,1268349067 +206004,7387,horror,1268349065 +206004,7387,humour,1268349090 +206004,7387,influential,1268349173 +206004,7387,mall,1268349241 +206004,7387,satirical,1268349061 +206004,7387,shopping center,1268349261 +206004,7387,survival,1268349214 +206004,7387,trucks,1268349188 +206004,7387,zombies,1268349059 +206004,7389,cave men,1409983606 +206004,7389,dinosaurs,1409984420 +206004,7389,no dialogue,1409983648 +206004,7389,Raquel Welch,1409983591 +206004,7402,animal attacks,1409981307 +206004,7402,animal cruelty,1409981293 +206004,7402,Creature Feature,1409546542 +206004,7402,eco-horror,1409546613 +206004,7402,giant poultry,1409546585 +206004,7402,giant rats,1409546522 +206004,7402,giant wasps,1409981329 +206004,7402,Ida Lupino,1409980980 +206004,7402,killer animals,1409546533 +206004,7402,nature strikes back,1409980969 +206004,7402,rats,1409546510 +206004,7402,real rats drowned,1409981355 +206004,7403,funny,1374264212 +206004,7403,giant rats,1374264223 +206004,7403,rats,1374264221 +206004,7403,so bad it's good,1374264244 +206004,7438,Bechdel Test:Pass,1358103857 +206004,7438,martial arts,1267988890 +206004,7438,Quentin Tarantino,1267988847 +206004,7438,quirky,1267988849 +206004,7438,revenge,1267988852 +206004,7438,spaghetti western,1267988867 +206004,7438,stylized,1267988856 +206004,7438,Uma Thurman,1358103789 +206004,7438,violence,1267988858 +206004,7460,black and white,1407755350 +206004,7460,deadpan,1407755400 +206004,7460,episodic,1407755378 +206004,7460,no plot,1407755373 +206004,7460,talky,1407755368 +206004,7475,corruption,1296503035 +206004,7475,Crime Drama,1296503244 +206004,7475,Finland,1296503158 +206004,7475,Kai Lehtinen,1296502999 +206004,7475,politicians,1296503027 +206004,7482,bad acting,1359408291 +206004,7482,Bechdel Test:Fail,1359408258 +206004,7482,Bruce Lee,1359408222 +206004,7482,John Saxon,1359408279 +206004,7482,rousing,1359408236 +206004,7482,sports,1359408272 +206004,7505,black comedy,1309952205 +206004,7505,DEVIL WORSHIP,1309952236 +206004,7505,eerie,1309952232 +206004,7505,Ernst-Hugo JäregÃ¥rd,1319886515 +206004,7505,made for TV,1358098526 +206004,7505,nationalism,1319886496 +206004,7505,Stig,1309952223 +206004,7569,Sean Connery,1268669941 +206004,7637,FILMMAKING,1395687796 +206004,7637,movie business,1395687874 +206004,7637,satirical,1395687816 +206004,7650,menacing,1267990837 +206004,7650,Vincent Price,1267990839 +206004,7719,Boris Karloff,1274613434 +206004,7719,Peter Lorre,1274613430 +206004,7719,Vincent Price,1274613427 +206004,7817,forceful,1359308878 +206004,7817,hooker boots,1359308869 +206004,7817,pretentious,1359308852 +206004,7817,sexually leaky,1359308941 +206004,7817,violence,1359308945 +206004,7891,based on a book,1304613454 +206004,7891,post-apocalyptic,1304613508 +206004,7891,Vincent Price,1304613476 +206004,7901,H.P. Lovecraft,1414476162 +206004,7901,Vincent Price,1414476177 +206004,7921,boring,1314778574 +206004,7921,illogical,1314778574 +206004,7925,Toshiro Mifune,1268686304 +206004,7930,BDSM,1334678555 +206004,7930,BDSM gear,1334678581 +206004,7930,cannibalism,1334678635 +206004,7930,CANNIBALS,1334678644 +206004,7930,crazy family,1334678599 +206004,7930,Everett McGill,1334678681 +206004,7930,Wendy Robie,1334678551 +206004,7984,BDSM,1298227254 +206004,7984,mad scientist,1298227262 +206004,7989,aliens,1270319709 +206004,7989,blood transfusion,1270319889 +206004,7989,mind control,1270319926 +206004,7989,Nudity (Rear - Brief),1270319819 +206004,7989,Nudity (Topless - Notable),1270319793 +206004,7989,nurse,1270319839 +206004,7989,rabies,1270319848 +206004,7989,telepathy,1270319905 +206004,7989,Traci Lords,1270319699 +206004,8138,adultery,1305527749 +206004,8138,mutants,1305527753 +206004,8138,radiation,1305527749 +206004,8157,Dream Sequence,1268326458 +206004,8157,little red riding hood,1268326451 +206004,8157,post-traumatic stress disorder,1268326466 +206004,8157,postwar,1268326501 +206004,8157,sewer/tunnel chase,1271333032 +206004,8157,wolves,1268326453 +206004,8197,affair,1415168031 +206004,8197,french new wave,1415168043 +206004,8197,Hiroshima,1415167967 +206004,8197,love,1415167971 +206004,8197,memories,1415167981 +206004,8197,World War II,1415168012 +206004,8206,Fay Wray,1268327171 +206004,8253,adventure,1268349695 +206004,8253,bright,1269812254 +206004,8253,Hayao Miyazaki,1268349629 +206004,8253,longing,1268349711 +206004,8253,Lupin III,1268349637 +206004,8265,animals,1409387661 +206004,8265,boring,1391279086 +206004,8265,Creature Feature,1391279049 +206004,8265,eco-horror,1409387684 +206004,8265,enviromental message,1391279096 +206004,8265,frog,1430504627 +206004,8265,frogs,1409387654 +206004,8265,gecko,1430504685 +206004,8265,geckos,1430504773 +206004,8265,iguana,1430504692 +206004,8265,iguanas,1430504777 +206004,8265,killer animals,1409387656 +206004,8265,nature strikes back,1391279131 +206004,8265,silly,1391279079 +206004,8265,snake,1430504707 +206004,8265,snakes,1430504718 +206004,8361,bad cgi,1268588183 +206004,8361,Environmental,1268588114 +206004,8361,global warming,1268588129 +206004,8361,natural disaster,1268588133 +206004,8361,propaganda,1268588119 +206004,8500,Godzilla,1383979750 +206004,8501,Rutger Hauer,1342172576 +206004,8501,suspense,1342172618 +206004,8507,circus,1267983176 +206004,8507,classic,1267983179 +206004,8507,controversial,1267983182 +206004,8507,strange,1267983200 +206004,8507,touching,1267983203 +206004,8521,alter ego,1268349006 +206004,8521,black and white,1268349042 +206004,8521,cinematography,1268349018 +206004,8584,jealousy,1268079624 +206004,8584,mental illness,1268079641 +206004,8584,Vincent Price,1268079613 +206004,8596,Herbert Lom,1268495614 +206004,8596,Peter Sellers,1268495635 +206004,8636,Kirsten Dunst,1358096136 +206004,8636,superhero,1358096129 +206004,8670,DOCTORS AND PATIENTS,1296504396 +206004,8670,foreign language,1296504371 +206004,8670,german expressionism,1296504375 +206004,8670,ghosts reincarnation,1296504378 +206004,8670,hypnosis,1296504382 +206004,8670,mental hospital,1296504386 +206004,8670,ominous,1296504391 +206004,8670,stylized,1296504367 +206004,8770,evil computer,1314778903 +206004,8770,Killer Pigs,1314778881 +206004,8783,Adrien Brody,1278861813 +206004,8783,Atmospheric,1268431023 +206004,8783,blindness,1268431047 +206004,8783,forest,1278861872 +206004,8783,good soundtrack,1268431044 +206004,8783,Interesting,1278861799 +206004,8783,secrets,1278861831 +206004,8783,Sigourney Weaver,1268431085 +206004,8783,small town,1278861835 +206004,8783,twist ending,1268431028 +206004,8810,Alien,1355863392 +206004,8810,aliens,1355863442 +206004,8810,Antarctica,1355863423 +206004,8810,dull,1355863417 +206004,8810,inconsistent,1355863419 +206004,8810,Lance Henriksen,1355863399 +206004,8810,Predators,1355863435 +206004,8810,why god why,1355863462 +206004,8855,Ouija,1413995971 +206004,8874,british comedy,1377893777 +206004,8874,Simon Pegg,1377893772 +206004,8874,slackers,1385759474 +206004,8874,zombies,1385759442 +206004,8894,Creature Feature,1404077467 +206004,8894,eco-horror,1404077459 +206004,8894,killer whale,1404077449 +206004,8894,main characters,1404077481 +206004,8894,orca,1404077515 +206004,8894,revenge,1404077502 +206004,8928,quirky,1272403182 +206004,25736,alter ego,1431817690 +206004,25736,creepy,1431817757 +206004,25736,dark side,1431817737 +206004,25736,double life,1431817727 +206004,25736,duality,1431818079 +206004,25736,hidden desires,1431818088 +206004,25736,human nature,1431818122 +206004,25736,temptation,1431818111 +206004,25744,devil,1272840487 +206004,25744,DEVIL WORSHIP,1272840495 +206004,25744,documentary,1272840536 +206004,25744,inquisition,1272840419 +206004,25744,lightning,1272876635 +206004,25744,possession,1272840523 +206004,25744,satan,1272840469 +206004,25744,silent,1272840506 +206004,25744,Special Effects,1272876623 +206004,25744,witch,1272840385 +206004,25744,WITCHCRAFT,1269812718 +206004,25746,based on a book,1432380084 +206004,25746,Bechdel Test:Fail,1432380067 +206004,25746,deformity/disability,1432380082 +206004,25746,Lon Chaney,1432380094 +206004,25746,murder,1432380118 +206004,25746,oppression,1432380130 +206004,25746,Patsy Ruth Miller,1432380064 +206004,25746,religion,1432380123 +206004,25746,social class,1432380135 +206004,25746,torture,1432380079 +206004,25746,woman carried onto tall building,1432380109 +206004,25755,Lon Chaney,1432976842 +206004,25755,lynch mob,1432976884 +206004,25755,Mary Philbin,1432976801 +206004,25755,mob justice,1432976862 +206004,25755,opera,1432977073 +206004,25755,public domain,1432976828 +206004,25755,sad,1432977024 +206004,25755,silent,1432976957 +206004,25755,Two-color Technicolor sequence,1432976821 +206004,25755,unrequited love,1432977018 +206004,25755,weird comedy moments,1432976935 +206004,25793,black and white,1271333206 +206004,25793,dreamlike,1271333156 +206004,25793,vampires,1271333178 +206004,25798,adapted from:book,1429164144 +206004,25798,Bela Lugosi,1429164126 +206004,25798,black and white,1429164279 +206004,25798,Charles Laughton,1429164140 +206004,25798,experiments,1429164292 +206004,25798,gruesome,1429164119 +206004,25798,horror,1429164273 +206004,25798,Kathleen Burke,1429164177 +206004,25798,makeup,1429164367 +206004,25798,vivisection,1429164209 +206004,25807,atmospheric,1314778690 +206004,25807,Boris Karloff,1314778670 +206004,25820,Bela Lugosi,1404074951 +206004,25820,blackmail,1404683647 +206004,25820,Boris Karloff,1404074951 +206004,25820,Edgar Allan Poe,1404075220 +206004,25820,evil,1404075000 +206004,25820,insanity,1404075048 +206004,25820,lust,1404075187 +206004,25820,murder,1404075026 +206004,25820,plastic surgery,1404683634 +206004,25820,revenge,1404075125 +206004,25820,surgeon,1404075114 +206004,25820,torture,1404075032 +206004,25820,Universal,1404074979 +206004,25827,Frank Capra,1268600339 +206004,25827,Gary Cooper,1268600341 +206004,26007,based on a book,1269087644 +206004,26007,black and white,1269087645 +206004,26007,draft,1269087665 +206004,26007,finland,1269087671 +206004,26007,finnish,1269087668 +206004,26007,survival,1269087674 +206004,26007,World War II,1269087627 +206004,26076,disability,1448397973 +206004,26076,drowning,1448397984 +206004,26076,gaslighting,1448398163 +206004,26076,heiress,1448398193 +206004,26076,murder,1448398056 +206004,26076,physical disability,1448398236 +206004,26076,plot twist,1448398043 +206004,26076,revenge,1448398059 +206004,26076,Susan Strasberg,1448397932 +206004,26076,suspenseful,1448397963 +206004,26076,wheelchair,1448398218 +206004,26152,Batman,1267983047 +206004,26152,camp,1267983029 +206004,26152,Catwoman,1267983110 +206004,26152,exploding shark,1267983022 +206004,26152,hilarious,1267983038 +206004,26159,1960s,1267985329 +206004,26159,artistic,1267985311 +206004,26159,assassin,1267987832 +206004,26159,atmospheric,1279145424 +206004,26159,bar brawl,1267987913 +206004,26159,Bechdel Test:Fail,1358096863 +206004,26159,Chieko Matsubara,1272554683 +206004,26159,cool,1267987896 +206004,26159,cult film,1267983447 +206004,26159,drifting,1267987865 +206004,26159,moody,1267983420 +206004,26159,visually appealing,1267983395 +206004,26159,weird,1267985270 +206004,26159,yakuza,1267985321 +206004,26169,assassin,1269945821 +206004,26169,hit men,1269945791 +206004,26169,Seijun Suzuki,1269945837 +206004,26169,sexual,1269945850 +206004,26204,Ennio Morricone,1359309115 +206004,26204,Lee Van Cleef,1358095975 +206004,26204,revenge,1358095951 +206004,26204,soundtrack,1359309108 +206004,26242,chase,1271334088 +206004,26242,dusty,1271334082 +206004,26242,hinterland,1271334177 +206004,26242,no plot,1271334188 +206004,26242,on the road,1271334080 +206004,26242,road rage,1271334104 +206004,26242,tense,1271334095 +206004,26242,truck,1271334076 +206004,26258,Alejandro Jodorowsky,1421837592 +206004,26258,atmospheric,1421837587 +206004,26258,cult film,1421837782 +206004,26258,disturbing,1421837789 +206004,26258,hallucinatory,1421837602 +206004,26258,passionate,1421837617 +206004,26258,surreal,1421837618 +206004,26258,weird,1421837604 +206004,26258,western,1421837628 +206004,26265,Egypt,1268436007 +206004,26266,1970s,1413835487 +206004,26266,Christopher Lee,1413835463 +206004,26266,goofy,1413835485 +206004,26266,Hammer Horror,1413835465 +206004,26266,hippies,1413835526 +206004,26266,Peter Cushing,1413835470 +206004,26326,animal cruelty,1431547702 +206004,26326,dreamlike,1431547706 +206004,26326,hallucinatory,1431547694 +206004,26326,Jodorowsky,1431547692 +206004,26326,religion,1431547715 +206004,26326,social criticism,1431547689 +206004,26326,surreal,1431547687 +206004,26326,symbolism,1431547685 +206004,26326,unique,1431547731 +206004,26326,visually appealing,1431547777 +206004,26326,weird,1431547683 +206004,26383,science,1326717117 +206004,26383,super computer,1326717107 +206004,26448,animation,1274613580 +206004,26448,cats,1274613572 +206004,26463,atom bomb,1274613142 +206004,26463,bombing of Hiroshima,1274613163 +206004,26463,Hiroshima,1274613170 +206004,26463,war,1274613177 +206004,26485,youth,1268351628 +206004,26492,good soundtrack,1268431794 +206004,26523,breasts,1299311158 +206004,26523,breasts=death,1299311160 +206004,26540,demons,1446388478 +206004,26540,film within a film,1446388463 +206004,26540,katana,1446388481 +206004,26540,motorcycle,1446388465 +206004,26540,movie theater,1446388489 +206004,26540,punks,1446388468 +206004,26606,China,1425967285 +206004,26606,ghosts,1425967279 +206004,26606,ghosts/afterlife,1425967307 +206004,26606,martial arts,1425967286 +206004,26606,stop-motion,1425967301 +206004,26606,sword fighting,1425967316 +206004,26606,wuxia,1425967309 +206004,26629,alien invasion,1380443269 +206004,26629,aliens,1380443258 +206004,26629,campy,1380443273 +206004,26629,circus,1380443318 +206004,26629,clowns,1380443261 +206004,26629,Dickies,1380443388 +206004,26662,adventure,1268326265 +206004,26662,aviation,1268326231 +206004,26662,coming of age,1268326268 +206004,26662,feel-good,1268326260 +206004,26662,watch the credits,1268326244 +206004,26662,witch,1268326224 +206004,26688,He Loses All Credibility When He Runs LOL!,1278966971 +206004,26776,1920s,1267983911 +206004,26776,aerial dogfights,1267983862 +206004,26776,aviation,1267983886 +206004,26776,Hayao Miyazaki,1267983865 +206004,26776,Italy,1267983964 +206004,26776,politics,1267983978 +206004,26776,romance,1267983984 +206004,26819,so bad it's good,1268685865 +206004,26858,animation,1415398483 +206004,26858,antropomorphic animals,1415398501 +206004,26858,based on a book,1415398534 +206004,26858,cats,1415398463 +206004,26858,horror,1415398472 +206004,26858,Michael Schaack,1415398454 +206004,26973,dark,1268075618 +206004,26973,jealousy,1268075751 +206004,26973,Sigourney Weaver,1268075613 +206004,26973,WITCHCRAFT,1268075641 +206004,27033,atmosphere,1342696458 +206004,27033,Bechdel Test:Pass,1358098602 +206004,27033,demons,1309952346 +206004,27033,DEVIL WORSHIP,1309952325 +206004,27033,Ernst-Hugo JäregÃ¥rd,1342696301 +206004,27033,horror comedy,1309952264 +206004,27033,hospital,1342696345 +206004,27033,Lars von Trier,1309952298 +206004,27033,spirits,1309952364 +206004,27033,surreal,1309952307 +206004,27156,action,1267984229 +206004,27156,animation,1267984200 +206004,27156,apocalypse,1267985069 +206004,27156,end of the world,1267984123 +206004,27156,gruesome,1267984192 +206004,27156,Hideaki Anno,1267985418 +206004,27156,mecha,1267984206 +206004,27156,mental illness,1271332906 +206004,27156,Nudity (Rear),1271332984 +206004,27156,Nudity (Topless),1271332961 +206004,27156,psychology,1267984149 +206004,27156,visceral,1267987703 +206004,27158,WRITER'S LIFE,1313235800 +206004,27271,androgyny,1271335094 +206004,27271,great music,1271335075 +206004,27271,great soundtrack,1271335079 +206004,27271,great use of music,1271335083 +206004,27271,jealousy,1271335124 +206004,27271,shinzengumi,1271335114 +206004,27304,Meiko Kaji,1314777867 +206004,27304,Surreal,1314777873 +206004,27304,women in prison,1314777892 +206004,27344,adolescence,1275380878 +206004,27344,adulthood,1275380885 +206004,27344,animation,1275380917 +206004,27344,coming of age,1275380907 +206004,27344,floating buildings,1275380867 +206004,27344,growing up,1275380895 +206004,27344,lesbian subtext,1275380940 +206004,27402,cgi,1374053095 +206004,27402,competent actors,1374053099 +206004,27402,gets Lovecraft accurate,1374053120 +206004,27402,H.P. Lovecraft,1374053081 +206004,27402,Innsmouth,1374053084 +206004,27402,Lovecraftian mythology,1374053086 +206004,27402,monsters,1374053113 +206004,27441,gore,1296504314 +206004,27548,awkward sex scene,1274612479 +206004,27548,bad lighting,1274612435 +206004,27548,Christopher Lambert,1274612557 +206004,27548,Ron Perlman,1274612541 +206004,27700,bullying,1279406196 +206004,27700,cruelty,1279406199 +206004,27700,private school,1279406182 +206004,27700,racism,1279406189 +206004,27700,sadism,1279406179 +206004,27784,child abuse,1320665562 +206004,27784,ghosts,1320665480 +206004,27784,hair,1320665524 +206004,27784,supernatural,1320665488 +206004,30783,fashion,1376811231 +206004,30783,fashion industry,1376811219 +206004,30783,lighting,1376810783 +206004,30783,Mario Bava,1376810953 +206004,30783,no main character,1376811117 +206004,30783,soundtrack,1376811194 +206004,30783,stylish,1376545267 +206004,30810,Cate Blanchett,1275690401 +206004,30810,great soundtrack,1275690391 +206004,30810,weird,1275690396 +206004,30816,based on a play,1303297271 +206004,30816,boring,1303297321 +206004,30867,cool animated sequence,1411681518 +206004,30867,friendship between girls,1411681492 +206004,30867,fun,1411681514 +206004,30867,gothic lolita,1411681510 +206004,30867,motorcycle,1411681506 +206004,31114,Sigourney Weaver,1357759875 +206004,31349,curse,1341567675 +206004,31349,romance,1341567660 +206004,31349,Veronica Lake,1341567662 +206004,31349,witches,1341567670 +206004,31770,crime,1270472602 +206004,31770,film noir,1268078409 +206004,31770,Herbert Lom,1268078397 +206004,31770,mob,1270472525 +206004,31770,Unlikable protagonist,1268078555 +206004,31770,wrestling,1270472515 +206004,31950,demons,1315949351 +206004,31950,supernatural,1315949342 +206004,31983,Alain Deloin,1433272403 +206004,31983,crime,1433272526 +206004,31983,criminals,1433272522 +206004,31983,Ennio Morricone,1433272537 +206004,31983,gangsters,1433272499 +206004,31983,heist,1433272440 +206004,31983,mafia,1433272416 +206004,31983,soundtrack,1433272531 +206004,32011,Milo Ventimiglia,1321779733 +206004,32011,werewolves,1321779632 +206004,32230,atmospheric,1413995448 +206004,32230,beautiful,1413995637 +206004,32230,Bechdel Test:Pass,1413995514 +206004,32230,dreamlike,1413995435 +206004,32230,fairy tale,1413995458 +206004,32230,magical,1413995579 +206004,32230,Satu Silvo,1413995477 +206004,32230,Tuula Nyman,1413995488 +206004,32554,individual,1274613528 +206004,32554,opera,1274613452 +206004,32554,space travel,1274613462 +206004,32554,war,1274613472 +206004,32587,Bruce Willis,1268432474 +206004,32587,cannibalism,1268432473 +206004,32587,Mickey Rourke,1268432529 +206004,32587,Quentin Tarantino,1268432480 +206004,32587,stylized,1268432477 +206004,32587,violence,1268432490 +206004,32587,visually appealing,1268432511 +206004,32840,dark humor,1311744868 +206004,32840,moody,1311744868 +206004,32840,Vincent Price,1311744868 +206004,33683,Cécile De France,1312657166 +206004,33683,ending,1312657619 +206004,33683,gore,1355671724 +206004,33683,homophobia,1355671699 +206004,33683,homophobic,1355671702 +206004,33683,horror,1312657710 +206004,33683,lesbian,1312657223 +206004,33683,plot twist,1312657185 +206004,33683,predictable,1312657200 +206004,33683,predictable ending,1312657215 +206004,33683,psycho,1312657628 +206004,33683,slasher,1355671729 +206004,33755,ESP,1402559587 +206004,33755,Godzilla,1383979626 +206004,33755,Kaiju,1402559593 +206004,33861,kitsch,1377023665 +206004,33861,pop art,1275637333 +206004,34323,clowns,1348648215 +206004,34323,freebird,1348647995 +206004,34323,kidnapping,1348648041 +206004,34323,murder,1348648240 +206004,34323,music,1348648168 +206004,34323,Rob Zombie,1348648043 +206004,34323,sadistic,1348648260 +206004,34323,serial killer,1348648121 +206004,34323,Sid Haig,1348648073 +206004,34373,campy,1342172239 +206004,34373,comedy,1342172173 +206004,34373,homosexuality,1342172175 +206004,34373,tongue-in-cheek,1342172195 +206004,34532,Hoodoo,1433194113 +206004,34532,John Hurt,1433194181 +206004,34532,magic,1433194106 +206004,34532,New Orleans,1433194108 +206004,34532,not even remotely dramatic,1433194158 +206004,34532,predictable,1433194176 +206004,34532,rasist,1433194226 +206004,34532,Twist Ending,1433194097 +206004,36752,ninja,1278966485 +206004,36752,Shô Kosugi,1278966490 +206004,37729,19th century,1268349513 +206004,37729,animation,1268349500 +206004,37729,black comedy,1268349497 +206004,37729,gothic,1268349487 +206004,37729,Johnny Depp,1268349491 +206004,37729,living dead,1268349493 +206004,37729,stop-motion,1268349489 +206004,37733,gratuitous violence,1268686159 +206004,38320,cinematography,1443637193 +206004,38320,Czechoslovak New Wave,1443637241 +206004,38320,dreamlike,1443637252 +206004,38320,mesmerizing,1443637332 +206004,38320,sexuality,1443637202 +206004,38320,surreal,1443637191 +206004,38320,symbolism,1443637195 +206004,38320,vampire,1443637216 +206004,38320,weird,1443637323 +206004,39052,amateur,1268685633 +206004,39052,campy,1271335160 +206004,39052,Finnish,1268685630 +206004,39052,low budget,1271335153 +206004,39052,parody,1268685634 +206004,39052,Samuli Torssonen,1268685639 +206004,39052,sci-fi,1268685643 +206004,39183,FORBIDDEN LOVE,1268588026 +206004,39183,Heath Ledger,1268588009 +206004,39183,homosexuality,1279408559 +206004,39183,Love story,1268588034 +206004,39183,melancholy,1268588053 +206004,39183,music,1268588049 +206004,39801,Chiaki Kuriyama,1273506117 +206004,39801,demons,1273506129 +206004,39801,youkai,1273506137 +206004,40422,Christopher Lee,1273168245 +206004,40422,Herbert Lom,1273168234 +206004,40422,Klaus Kinski,1273168259 +206004,40422,rushed,1273168292 +206004,40422,vampires,1273168375 +206004,40467,angry villagers,1450008238 +206004,40467,christopher lee,1450007968 +206004,40467,gorgon,1450007981 +206004,40467,greek,1450008224 +206004,40467,hammer horror,1450008010 +206004,40467,mob justice,1450008267 +206004,40467,mythical creature,1450008221 +206004,40467,peter cushing,1450007969 +206004,40467,supernatural horror,1450008210 +206004,40586,Aki Kaurismäki,1404682749 +206004,40586,anarchy,1404683395 +206004,40586,black and white,1404682775 +206004,40586,comedy,1404683032 +206004,40586,deadpan,1404682995 +206004,40586,dreamlike,1404683020 +206004,40586,homeless,1404683381 +206004,40586,outsiders,1404683480 +206004,40586,quirky,1404683052 +206004,40586,surreal,1404683004 +206004,40732,blood,1303296941 +206004,40732,cgi,1303297015 +206004,40732,cgi blood,1303297015 +206004,40732,character development,1303296880 +206004,40732,Direction,1303296784 +206004,40732,ending,1303296839 +206004,40732,goretastic,1303296911 +206004,40732,Personalities,1303296862 +206004,40732,stupid monsters,1303296977 +206004,40732,violence,1303296799 +206004,40955,based on a book,1306619038 +206004,40955,Cillian Murphy,1306618862 +206004,40955,fairy tale,1306619028 +206004,40955,gender identity confusion,1306618971 +206004,40955,Ireland,1306619019 +206004,40955,London,1306619020 +206004,40955,music,1306618961 +206004,40955,Neil Jordan,1306618872 +206004,40955,transgender,1306618893 +206004,40955,transsexuals,1306618923 +206004,40955,transvestite,1306618965 +206004,41014,atmospheric,1319974397 +206004,41014,Giallo,1319974431 +206004,41569,1920s,1277724752 +206004,41569,1930s,1277724754 +206004,41569,Adrien Brody,1268940529 +206004,41569,bad cgi,1268940522 +206004,41569,cgi,1277724771 +206004,41569,dinosaurs,1268940537 +206004,41569,Dynamic CGI Action,1277724890 +206004,41569,emotional,1277724830 +206004,41569,Jack Black,1277724817 +206004,41569,Naomi Watts,1268940582 +206004,41569,Peter Jackson,1277724792 +206004,42723,annoying,1374053872 +206004,42723,boring,1374053884 +206004,42723,Disappointing,1374053930 +206004,42723,Eli Roth,1374053926 +206004,42723,never again Eli Roth,1374054113 +206004,42723,stupid,1374053872 +206004,42723,stupid stereotypes,1374053826 +206004,42723,unlikeable characters,1374053813 +206004,42763,1950s,1272267863 +206004,42763,Herbert Lom,1272318104 +206004,42763,Patrick McGoohan,1272318106 +206004,42763,trucks,1272267826 +206004,42794,premature burial,1272318078 +206004,42794,revenge,1272267969 +206004,43248,strong female lead,1331142088 +206004,43832,Andrew Leman,1365425203 +206004,43832,H.P. Lovecraft,1365425195 +206004,43832,silent movie,1365425225 +206004,43832,stop-motion,1365425198 +206004,43836,Steve Martin,1268496570 +206004,44759,Hugh Dancy,1374053002 +206004,44759,showing in Finland,1374053014 +206004,44828,aliens,1303296678 +206004,44828,Elizabeth Banks,1303296739 +206004,44828,rape,1303296720 +206004,44828,silly,1303296698 +206004,44911,Anthony Hopkins,1426545707 +206004,44911,Burgess Meredith,1426545721 +206004,44911,dummy,1426545744 +206004,44911,ventriloquist,1426545687 +206004,45672,Adam Sandler,1327569454 +206004,45672,agonizing,1327569350 +206004,45672,comedy,1327569400 +206004,45672,depressing,1327569298 +206004,45672,New York City,1327569439 +206004,45672,obvious,1327569393 +206004,45672,second chance,1327569431 +206004,45672,very sad,1327569302 +206004,46788,creature feature,1438279466 +206004,46788,eco horror,1438279469 +206004,46788,forest,1438279409 +206004,46788,monster bear,1438279394 +206004,46788,mutant bear,1438279400 +206004,46788,native americans,1438279416 +206004,46788,nature strikes back,1438279504 +206004,46788,pollution,1438279452 +206004,46788,prophecy,1438279480 +206004,46788,toxic waste,1438279533 +206004,47452,ancient China,1383980437 +206004,47452,grand finale,1383980421 +206004,47452,Kick-Butt Women,1383980387 +206004,47452,lighthearted,1383980425 +206004,47452,romantic comedy,1383980411 +206004,47810,so bad it's good,1267991098 +206004,47810,unintentional comedy,1267991127 +206004,47937,badass girl,1268518636 +206004,47937,company,1270306347 +206004,47937,dark comedy,1270306129 +206004,47937,guns,1270306192 +206004,47937,horror,1271333577 +206004,47937,stoner,1270306241 +206004,47937,strong female lead,1358101020 +206004,47937,team-building,1270306258 +206004,47937,weapons industry,1270306329 +206004,48385,controversial,1323113969 +206004,48385,crude humor,1323113977 +206004,48385,Male nudity,1323113958 +206004,48385,Nudity (Full Frontal),1323114016 +206004,48385,prostitution,1323114005 +206004,48385,Sacha Baron Cohen,1323113954 +206004,48385,vulgar,1323114007 +206004,48394,atmospheric,1268077689 +206004,48394,blood,1268077764 +206004,48394,disturbing,1268077701 +206004,48394,fairy tale,1268077770 +206004,48394,gruesome,1268077747 +206004,48394,imagination,1268077709 +206004,48394,violence,1268077692 +206004,48394,visually appealing,1268077696 +206004,48997,Ben Whishaw,1318094324 +206004,48997,creativity,1318094329 +206004,48997,great soundtrack,1318094268 +206004,48997,obsession,1318094476 +206004,48997,perfume,1318094345 +206004,48997,serial killer,1318094316 +206004,48997,sexuality,1318094360 +206004,48997,weird,1318094366 +206004,49272,espionage,1268669877 +206004,49571,black and white,1375957180 +206004,49571,Gloria Holden,1375957209 +206004,49571,lesbian,1375956961 +206004,49571,vampire,1375956975 +206004,49571,Van Helsing,1429164544 +206004,49651,boxing,1268076310 +206004,49651,reflective,1268076337 +206004,49651,Sylvester Stallone,1268076315 +206004,49817,animal protection,1267987591 +206004,49817,animation,1267987514 +206004,49817,cruelty,1267987626 +206004,49817,disturbing,1267987542 +206004,49817,John Hurt,1267987497 +206004,49817,lab animals,1267987608 +206004,49817,sad but good,1267987500 +206004,49856,Intriguing,1271841532 +206004,49856,oppression,1271841393 +206004,49856,revenge,1271841361 +206004,49856,strong feeling of threat,1271841341 +206004,49932,confusing,1319974001 +206004,49932,nightmare,1319974016 +206004,49932,surreal,1319974013 +206004,49961,chauvinist,1315471452 +206004,49961,Judi Dench,1315471598 +206004,49961,lesbian,1315471594 +206004,50641,bakeneko,1290984083 +206004,50641,dreamlike,1290983990 +206004,50641,ghosts,1290984091 +206004,50641,haunted house,1290984036 +206004,50641,possession,1290984067 +206004,50641,psychedelic,1290984022 +206004,50641,strangely compelling,1290983993 +206004,50641,surreal,1290984003 +206004,50641,unique,1415042453 +206004,50641,weird,1415042443 +206004,50796,Hugh Dancy,1374052554 +206004,50796,silly,1374052536 +206004,50796,werewolves,1374052506 +206004,51209,fascism,1415083174 +206004,51209,machismo,1415083163 +206004,51255,black comedy,1343199029 +206004,51255,british comedy,1343199030 +206004,51255,buddy movie,1343199065 +206004,51255,comedy,1343199055 +206004,51255,murder,1343199071 +206004,51255,Simon Pegg,1343199033 +206004,51255,small town,1343199059 +206004,51255,twists & turns,1343199039 +206004,51255,violence,1343199043 +206004,51939,animation,1358096106 +206004,51939,ninja,1358096102 +206004,52281,2 movies in 1,1268327345 +206004,52281,attempted rape,1268327397 +206004,52281,cars,1268327417 +206004,52281,Gore,1268327370 +206004,52281,grindhouse,1268327366 +206004,52281,Kurt Russell,1268327355 +206004,52281,Quentin Tarantino,1268327348 +206004,52281,Robert Rodriguez,1268327350 +206004,52281,Rosario Dawson,1268327431 +206004,52281,serial killer,1268327357 +206004,52281,violence,1268327360 +206004,52319,easily confused with other movie(s) (title),1269106015 +206004,52460,Clancy Brown,1317681598 +206004,52606,Alice Eve,1386048319 +206004,52606,blackmail,1386048354 +206004,52606,dark comedy,1386048290 +206004,52606,Simon Pegg,1386048297 +206004,52722,alter ego,1272057215 +206004,52722,dark side,1272057138 +206004,52722,Kirsten Dunst,1272057195 +206004,52722,Marvel,1272057207 +206004,52722,Tobey Maguire,1272057187 +206004,52722,Topher Grace,1272057184 +206004,52806,based on a book,1271840367 +206004,52806,conscience,1271840485 +206004,52806,dragons,1271840268 +206004,52806,Dream Sequence,1271840407 +206004,52806,fantasy,1271840355 +206004,52806,patricide,1271840344 +206004,52806,slavery,1271840277 +206004,52806,sorcery,1271840256 +206004,53046,Stephen King,1430505736 +206004,53127,conspiracy theory,1356337548 +206004,53127,human experiment,1356337571 +206004,53127,paranoia,1356337611 +206004,53373,Godzilla,1383979646 +206004,53375,Godzilla,1383979468 +206004,53375,King Ghidorah,1383979472 +206004,53468,1950s,1267989362 +206004,53468,1950s housewives,1272267927 +206004,53468,absent fathers,1270306516 +206004,53468,Carrie-Anne Moss,1267989283 +206004,53468,K'Sun Ray,1270306508 +206004,53468,life & death,1267989343 +206004,53468,zombies,1267989277 +206004,53519,car chase,1267989900 +206004,53519,cars,1267989678 +206004,53519,classic car,1267989891 +206004,53519,dialogue,1267989931 +206004,53519,Direction,1267989879 +206004,53519,great soundtrack,1267989895 +206004,53519,jukebox,1267989884 +206004,53519,Kurt Russell,1267989904 +206004,53519,slow paced,1267989913 +206004,53972,bruce willis,1284492905 +206004,53972,damn hamster,1284493075 +206004,53972,kungfu hackers,1284492869 +206004,53972,Unreal,1284492883 +206004,53972,unrealistic,1284492927 +206004,54270,'More Like Skankwalkers',1349511530 +206004,54493,evil spirits,1355670273 +206004,54493,possession,1355670282 +206004,54785,Malcolm McDowell,1319838058 +206004,54785,Udo Kier,1319838068 +206004,54995,amputee,1268077140 +206004,54995,Bruce Willis,1268077119 +206004,54995,grindhouse,1268077077 +206004,54995,horror,1271335351 +206004,54995,hospital,1268077101 +206004,54995,lesbian character,1279713643 +206004,54995,machine gun leg,1268077122 +206004,54995,over the top,1268077072 +206004,54995,rose mcgowan,1268077096 +206004,54995,splatter,1268077088 +206004,54995,zombies,1268077178 +206004,55167,dualism,1267991504 +206004,55167,trippy,1267991479 +206004,55282,David Slade,1414959296 +206004,55282,Gratuitous,1414959227 +206004,55282,laughable,1415396563 +206004,55282,remote location,1414959233 +206004,55282,silly,1415396570 +206004,55282,small town,1414959269 +206004,55282,snow,1414959237 +206004,55282,survival,1414959242 +206004,55282,vampire,1414959247 +206004,55282,vampires,1414959291 +206004,55282,zombie movie with vampires,1414959345 +206004,55442,animation,1268077632 +206004,55442,biography,1268077679 +206004,55442,black and white,1268077638 +206004,55442,childhood,1268077650 +206004,55442,comic book,1268077660 +206004,55553,sheep zombies,1380443678 +206004,55553,Zombies,1380443680 +206004,55628,stereotypical black comic relief,1441976707 +206004,55628,there is no monster and it doesn't walk,1441976711 +206004,56757,Bechdel Test:Fail,1358100652 +206004,56757,cannibalism,1267986496 +206004,56757,dark comedy,1267986532 +206004,56757,dead wife,1267986562 +206004,56757,England,1267986483 +206004,56757,Musical,1267986498 +206004,56757,violent,1267986485 +206004,56757,visually appealing,1267986488 +206004,56801,'AKA: I Will Never Get Those 2 Hours Back...Ever',1355863492 +206004,56801,predalien,1355863502 +206004,56959,campy,1397160665 +206004,56959,comic relief,1397160656 +206004,56959,fun,1397160674 +206004,56959,identity theft,1397160547 +206004,56959,magician,1397160523 +206004,56959,murder,1397160530 +206004,56959,mystery writer,1397160640 +206004,56959,Stereoscopic 3-D,1397160488 +206004,56959,Vincent Price,1397160496 +206004,57274,"""found footage""",1268350884 +206004,57274,contamination,1268430799 +206004,57274,creepy,1268351002 +206004,57274,despair,1268350894 +206004,57274,horror,1268350940 +206004,57274,panic,1268350887 +206004,57274,quarantine,1268430813 +206004,57274,reporter,1268350964 +206004,57274,virus,1268350949 +206004,57274,zombies,1268350897 +206004,57368,"""found footage""",1392762839 +206004,57368,city under attack,1392762830 +206004,57368,giant monster,1392762845 +206004,57421,boring,1347967572 +206004,57421,Kane Hodder,1347967560 +206004,57421,retarded monster,1347967660 +206004,57502,cats,1268349567 +206004,57502,dark,1268349609 +206004,57502,pressing,1268349607 +206004,57502,psychedelic,1268349615 +206004,57502,surreal,1268349622 +206004,57504,drama,1268495696 +206004,57504,friendship,1268495665 +206004,57504,time travel,1268495647 +206004,58297,boring,1374264529 +206004,58297,cannibalism,1374264587 +206004,58297,good music,1374264546 +206004,58297,silly,1374264570 +206004,58297,unrealistic,1374264573 +206004,58559,Heath Ledger,1268349278 +206004,58559,Oscar (Best Supporting Actor),1268349290 +206004,59369,boring,1397643776 +206004,59369,cynical,1397643833 +206004,59369,dumb,1397643757 +206004,59369,father daughter relationship,1397643731 +206004,59369,unrealistic,1397643779 +206004,59727,disturbing,1298227335 +206004,59727,mask,1298227457 +206004,59727,masked killer,1298227449 +206004,59727,serial killers,1298227408 +206004,59727,weak ending,1298227417 +206004,60471,creature feature,1427485745 +206004,60684,1980s,1282642246 +206004,60684,alternate history,1282642250 +206004,60684,Bechdel Test:Pass,1284764492 +206004,60684,cinematography,1282642259 +206004,60684,Jackie Earle Haley,1282642863 +206004,60684,sci-fi,1282642243 +206004,60684,superhero,1282642256 +206004,61240,bittersweet,1268079542 +206004,61240,bullying,1268079557 +206004,61240,bullying taken too far,1268079569 +206004,61240,foreign,1268079522 +206004,61240,horror,1268079578 +206004,61240,serial killer,1268079530 +206004,61240,suburbia,1268079528 +206004,61240,touching,1268079532 +206004,61240,vampires,1268079524 +206004,61323,Brad Pitt,1344337053 +206004,61323,Coen Brothers,1344337080 +206004,61323,cosmetic surgery,1344337068 +206004,61323,greed,1344337101 +206004,61323,stupidity,1344337055 +206004,61373,British horror,1413835669 +206004,61373,drowning,1413835697 +206004,61373,ghosts,1413835712 +206004,61373,swamp,1413835690 +206004,61398,Asia Argento,1274564660 +206004,61398,crazy japanese goth,1274613087 +206004,61398,Udo Kier,1274564664 +206004,62331,anarchism,1268668341 +206004,62331,FIGHTING THE SYSTEM,1268668433 +206004,62331,Hiroyuki Imaishi,1268668525 +206004,62331,prison break,1274564708 +206004,62331,prison escape,1268668474 +206004,62331,Production I.G,1274564696 +206004,62331,stylized,1268668635 +206004,62336,2D animation,1268347784 +206004,62336,action,1268347829 +206004,62336,agent,1268347929 +206004,62336,aliens,1268347915 +206004,62336,baseball,1268347954 +206004,62336,hallucinatory,1268348001 +206004,62336,missing brother,1268347947 +206004,62336,robots,1268347897 +206004,62336,rock and roll,1268347774 +206004,62336,stylish,1268347794 +206004,62336,surreal,1268347772 +206004,62336,weird,1268347873 +206004,63189,16th century,1307028255 +206004,63189,atmospheric,1307028251 +206004,63189,brother-brother relationship,1307027961 +206004,63189,brothers,1307027970 +206004,63189,mysticism,1307027979 +206004,63189,sauna,1307027977 +206004,63189,transvestism,1307028277 +206004,63189,village,1307027975 +206004,63768,brother-brother relationship,1268599205 +206004,63768,brothers,1268599195 +206004,63768,runaway,1268599255 +206004,63768,Seijun Suzuki,1268599182 +206004,63768,visually appealing,1268599231 +206004,63992,audience intelligence underestimated,1267991946 +206004,63992,campy,1267991915 +206004,63992,so bad it's good,1267991954 +206004,63992,unintentional comedy,1267991933 +206004,64839,father daughter relationship,1321865699 +206004,64839,love story,1321865672 +206004,64839,sport:professional wrestling,1321865680 +206004,64839,touching,1321865719 +206004,65261,environmental,1268076959 +206004,65261,friendship,1268076962 +206004,65261,gorgeous animation,1268077006 +206004,65261,hand drawn,1268076998 +206004,65261,ocean,1268077011 +206004,65261,storm,1268077021 +206004,65601,Jensen Ackles,1285684650 +206004,65601,remake,1285684667 +206004,65601,slasher,1296504283 +206004,65601,Stereoscopic 3-D,1285684660 +206004,65601,stupid,1296504275 +206004,66097,Bechdel Test:Pass,1360515501 +206004,66097,claymation,1359318441 +206004,66097,creepy,1359318466 +206004,66097,dark,1359318472 +206004,66097,Fantasy,1360515524 +206004,66097,fantasy world,1360515530 +206004,66097,imaginative,1360515529 +206004,66097,magical,1360515543 +206004,66097,Parallels worlds,1359318462 +206004,66097,stop motion,1359318443 +206004,66097,Surreal,1359318450 +206004,66097,talking animals,1359318449 +206004,66097,visually stunning,1359318458 +206004,66783,mildly racist,1314780215 +206004,67197,Bad direction,1268588639 +206004,67197,end of the world,1268865495 +206004,67197,father-son relationship,1268588631 +206004,67197,Nicolas Cage,1268588620 +206004,67197,religious overtones,1268588561 +206004,67197,unintentional comedy,1268588652 +206004,67257,parody,1277806303 +206004,67257,unfunny,1277806330 +206004,67257,Vincent Price,1277806295 +206004,67788,cute,1374052067 +206004,67788,Hugh Dancy,1374052070 +206004,67788,message,1374052099 +206004,67788,romance,1374052076 +206004,68157,Adolf Hitler,1267982565 +206004,68157,assassination,1267985212 +206004,68157,Bechdel Test:Fail,1358098783 +206004,68157,easily confused with other movie(s) (title),1269106066 +206004,68157,French,1267982622 +206004,68157,German,1267982570 +206004,68157,great acting,1267982600 +206004,68157,great soundtrack,1268077970 +206004,68157,Nazis,1267982587 +206004,68157,Quentin Tarantino,1267982547 +206004,68157,tense,1267982555 +206004,68157,violence,1267982578 +206004,68157,visually appealing,1267982614 +206004,68157,war,1269106113 +206004,68237,artificial intelligence,1395687673 +206004,68237,dystopia,1395687662 +206004,68237,melancholy,1395687669 +206004,68237,psychology,1395687666 +206004,68237,Sam Rockwell,1395687701 +206004,68237,Sci-fi,1395687664 +206004,68358,alternate reality,1268075493 +206004,68358,bar brawl,1268864468 +206004,68358,Bechdel Test:Pass,1358098741 +206004,68358,Leonard Nimoy,1268075605 +206004,68358,revenge,1268075503 +206004,68358,Star Trek,1268075521 +206004,68358,time travel,1268075530 +206004,68358,UNLIKELY FRIENDSHIPS,1268075580 +206004,68899,asylum,1348647841 +206004,68899,comedy,1348647841 +206004,68899,mad scientist,1348647841 +206004,68899,silent movie,1365425255 +206004,68952,annoying characters,1355671636 +206004,68952,cat killing,1348648433 +206004,68952,curse,1298227080 +206004,68952,dragged,1348648471 +206004,68952,occult,1298227105 +206004,68952,old school horror,1355671627 +206004,68952,stupid ending,1355671648 +206004,68952,supernatural,1348648446 +206004,68952,tongue-in-cheek,1298227136 +206004,69526,action,1321865996 +206004,69526,bad plot,1321866005 +206004,69526,boring,1321866012 +206004,69526,cgi,1331142812 +206004,69526,comedy,1331142744 +206004,69526,Michael Bay,1331142788 +206004,69526,robots,1321865993 +206004,69526,sequel,1321866022 +206004,69526,Special Effects,1331142834 +206004,70046,amicus,1448001321 +206004,70046,anthology,1448001319 +206004,70046,justice,1448001336 +206004,70046,painter,1448001323 +206004,70046,revenge,1448001332 +206004,70046,serial killer,1448001341 +206004,70046,vampires,1448001326 +206004,70159,Isabelle Fuhrman,1358806000 +206004,70159,orphans,1358806005 +206004,70159,Russian roulette,1358805977 +206004,70366,breasts=death,1299311153 +206004,70366,christmas,1451036734 +206004,70366,Eric Freeman,1299311044 +206004,70366,eyebrows,1299311052 +206004,70366,funny,1299311085 +206004,70366,unintentional comedy,1299311062 +206004,70533,action,1267985470 +206004,70533,animation,1267985477 +206004,70533,father-son relationship,1268348641 +206004,70533,Hideaki Anno,1267985505 +206004,70533,mecha,1267985439 +206004,70533,Megumi Ogata,1267985425 +206004,70533,psychology,1268348624 +206004,70533,remake,1267985430 +206004,70567,asperger syndrome,1374052739 +206004,70567,asperger's syndrome,1374052735 +206004,70567,autism,1374052741 +206004,70567,cliche,1374052744 +206004,70567,emotional,1374052842 +206004,70567,formal,1374052810 +206004,70567,Hugh Dancy,1374052726 +206004,70567,Rose Byrne,1374052755 +206004,70567,sweet,1374052760 +206004,70946,anti-vegetarian propaganda,1296504028 +206004,70946,campy,1267991196 +206004,70946,dead grandfather,1271334625 +206004,70946,Deborah Reed,1271334692 +206004,70946,Funny as hell,1267991221 +206004,70946,goblins,1271334748 +206004,70946,Oh My Goood!,1271334710 +206004,70946,plantlife,1272057001 +206004,70946,vegetarians,1271334618 +206004,71203,Bobbi Sue Luther,1294529314 +206004,71203,Chromeskull,1347966982 +206004,71203,goretastic,1294529302 +206004,71203,killer,1294529299 +206004,71203,Nick Principe,1347967039 +206004,71205,dark comedy,1357163100 +206004,71205,demon possession,1357163118 +206004,71205,demons,1357163114 +206004,71205,evil rock band,1357163109 +206004,71379,demon possession,1355671525 +206004,71379,low budget,1355671529 +206004,71379,over-hyped,1355671543 +206004,71379,psychological,1355671554 +206004,71379,unlikeable characters,1355671575 +206004,71379,unrealistic,1355671517 +206004,71482,acting,1407922723 +206004,71482,crap,1407922821 +206004,71482,effects,1407922733 +206004,71482,Robot rape scene,1407923052 +206004,71482,robot sex,1407922874 +206004,71482,robots,1407922919 +206004,71482,shit,1407922849 +206004,71482,stupid,1407922912 +206004,71482,unfunny,1407922813 +206004,71482,unfunny comedy,1407922808 +206004,71500,anthology,1391279481 +206004,71500,Halloween,1391279478 +206004,71500,linked storylines,1391279467 +206004,71500,made for TV,1391279460 +206004,71500,multiple storylines,1391279462 +206004,71500,surprisingly good,1391279600 +206004,71535,Bill Murray,1348648319 +206004,71535,gore,1348648304 +206004,71535,post-apocalyptic,1348648312 +206004,71535,witty,1342529383 +206004,71535,zombies,1348648306 +206004,72261,Don Bluth,1358101344 +206004,72378,bad science,1356130177 +206004,72407,bad cgi,1279713786 +206004,72407,campy,1267991838 +206004,72407,Dakota Fanning,1267991865 +206004,72407,Robert Pattinson,1267991875 +206004,72407,Taylor Lautner,1279713794 +206004,72407,unintentional comedy,1267991849 +206004,73148,betrayal,1296503720 +206004,73148,Dolph Lundgren,1271571198 +206004,73148,helpless heroine,1271571180 +206004,73148,sound effects,1274564844 +206004,74370,atmospheric,1399319144 +206004,74370,eighties,1399318999 +206004,74370,retro,1399319056 +206004,74370,Satanic Cult,1399319005 +206004,74370,suspenseful,1399319054 +206004,74370,Ti West,1399319050 +206004,74452,Anthony Hopkins,1427228975 +206004,74452,bad cgi,1427229034 +206004,74452,Benicio Del Toro,1427228973 +206004,74452,Hugo Weaving,1427229204 +206004,74452,moody atmosphere,1427229076 +206004,74452,pointless,1427229234 +206004,74452,transformation scene,1427229020 +206004,74452,werewolf,1427229195 +206004,74789,Anne Hathaway,1269977655 +206004,74789,brutal violence,1269977647 +206004,74789,Crispin Glover,1269977634 +206004,75414,Edwige Fenech,1444765476 +206004,75414,Giallo,1444765458 +206004,75414,murderer,1444765497 +206004,75414,razor,1444765504 +206004,75938,action,1340970601 +206004,75938,assasin,1340970621 +206004,75938,chauvinist,1340970576 +206004,75938,Funny as hell,1349512708 +206004,75938,over the top,1340970593 +206004,75938,survival,1340970611 +206004,75938,Ted Prior,1340970567 +206004,75938,unintentional comedy,1349512738 +206004,75938,Vietnam war veteran,1340970633 +206004,75940,1940s,1269435065 +206004,75940,atmospheric,1269435140 +206004,75940,black and white,1269434203 +206004,75940,Herbert Lom,1269433962 +206004,75940,James Mason,1269433971 +206004,75940,lightning,1269434195 +206004,75940,melodrama,1269435080 +206004,75940,mentor,1269434848 +206004,75940,music,1269434211 +206004,75940,Oscar Winner,1269435209 +206004,75940,protegée,1274613003 +206004,75940,psychology,1269433985 +206004,75977,antique,1293364695 +206004,75977,Avril Angers,1271006609 +206004,75977,Carole Landis,1271006629 +206004,75977,Carroll Lewis,1293364440 +206004,75977,collector,1271006723 +206004,75977,Herbert Lom,1271006581 +206004,75977,musical numbers,1271006695 +206004,75977,mystery killer,1271006760 +206004,75979,1960s,1269726016 +206004,75979,betrayal,1269726177 +206004,75979,black and white,1269726044 +206004,75979,British,1269725747 +206004,75979,cat burglar,1269725844 +206004,75979,crime syndicate,1269726243 +206004,75979,film noir,1269725764 +206004,75979,Herbert Lom,1269725708 +206004,75979,organized crime,1269725679 +206004,75979,revenge,1269727490 +206004,75979,Sean Connery,1269725715 +206004,76022,adultery,1293363300 +206004,76022,Bechdel Test:Pass,1358097981 +206004,76022,blindness,1293363135 +206004,76022,death of a child,1293363314 +206004,76022,guilt,1325665791 +206004,76022,jealousy,1293363122 +206004,76022,Madness,1293363113 +206004,76022,Regina Linnanheimo,1293362932 +206004,76022,Teuvo Tulio,1293363113 +206004,76022,Tragedy,1358097942 +206004,76130,Dolph Lundgren,1270044996 +206004,76130,Jean-Claude Van Damme,1270045005 +206004,76251,comic book,1297019948 +206004,76251,humorous,1297019962 +206004,76251,Nicolas Cage,1297019935 +206004,76251,pop culture references,1297019940 +206004,76251,vigilante,1297019956 +206004,76303,Herbert Lom,1275459137 +206004,76303,torture,1275459179 +206004,76303,Udo Kier,1275459146 +206004,76303,witch hunt,1275459091 +206004,76860,animal attacks,1413996031 +206004,76860,animal horror,1413996040 +206004,76860,Australian,1413996029 +206004,76860,Creature Feature,1413996050 +206004,76860,photography,1413996023 +206004,76860,razorback,1413996017 +206004,76860,wild boar,1413996008 +206004,77229,black and white,1272229042 +206004,77229,espionage,1272228953 +206004,77229,France,1272229006 +206004,77229,Herbert Lom,1272228961 +206004,77229,James Mason,1272574645 +206004,77229,mistaken identity,1272229060 +206004,77229,whodunnit,1272229088 +206004,77231,Herbert Lom,1278861620 +206004,77231,romance,1278861700 +206004,77231,unconvincing,1278861705 +206004,77328,Andrew Garfield,1357758877 +206004,77328,conspiracy,1357758950 +206004,77328,corruption,1357758950 +206004,77328,murder,1357758950 +206004,77328,murder of a child,1357758958 +206004,77328,torture,1357758970 +206004,77427,body horror,1272729885 +206004,77449,rats,1272968296 +206004,77538,Akiko Wada,1289164476 +206004,77538,Bechdel Test:Pass,1358100727 +206004,77538,female delinquents,1329510164 +206004,77538,gangs,1289164517 +206004,77538,gangs of japan,1289164514 +206004,77538,girl delinquents,1329510151 +206004,77538,groovy,1329510190 +206004,77798,child abuse,1281516284 +206004,77798,dreams,1273910539 +206004,77798,Freddy Krueger,1273910491 +206004,77798,Jackie Earle Haley,1282642955 +206004,77798,nightmare,1273910533 +206004,77798,unimaginative,1281516211 +206004,78266,Adrien Brody,1331295191 +206004,78266,beastiality,1331295152 +206004,78266,experiments gone awry,1331295145 +206004,78266,monster,1331295186 +206004,78266,predictable,1331295180 +206004,78266,rape,1331295140 +206004,78266,Unjustified twists,1331295138 +206004,78266,weak ending,1331295134 +206004,79057,Adrien Brody,1309203099 +206004,79057,aliens,1309203129 +206004,79057,Danny Trejo,1309203133 +206004,79057,franchise,1309203106 +206004,79057,predator,1309203109 +206004,79057,Topher Grace,1309203117 +206004,79132,action,1388354911 +206004,79132,music,1388354929 +206004,79702,based on a comic,1392762509 +206004,79702,fight scenes,1392762495 +206004,79702,geeks,1392762502 +206004,79702,quirky,1392762492 +206004,79702,stylized,1392762479 +206004,79702,surreal,1392762482 +206004,79702,video games,1392762475 +206004,79702,visually appealing,1392762478 +206004,79863,creature feature,1430503423 +206004,80219,black comedy,1325800261 +206004,80219,dark comedy,1325800265 +206004,80219,dark humor,1321864652 +206004,80219,drugs,1325800283 +206004,80219,gore,1321864656 +206004,80219,guns,1325800287 +206004,80219,immigrants,1321864662 +206004,80219,Lindsay Lohan,1319133029 +206004,80219,Mexico,1325800276 +206004,80219,revenge,1321864673 +206004,80219,satire,1321864684 +206004,80219,Steven Seagal,1319133026 +206004,80615,Bats,1341567848 +206004,80615,childish,1341567727 +206004,80615,cinematography,1341567744 +206004,80615,cliche,1341567724 +206004,80615,evil sibling,1341567785 +206004,80615,good versus evil,1341567733 +206004,80615,journey,1341567754 +206004,80615,Owls,1341567815 +206004,80615,predictable,1341567730 +206004,80615,talking animals,1341567821 +206004,80615,weak plot,1341567736 +206004,80615,weak story,1341567739 +206004,80846,Christianity,1319838509 +206004,80846,Security Guard,1319838566 +206004,80846,silly,1319838534 +206004,80846,supernatural,1319838517 +206004,80846,twist ending,1319838473 +206004,80903,campy,1286666170 +206004,80903,cavemen,1286666191 +206004,80903,easily confused with other movie(s) (title),1286666241 +206004,80903,no dialogue,1286666726 +206004,80903,recycled footage,1286666205 +206004,80990,Cybill Shepherd,1286895452 +206004,80990,Herbert Lom,1286895529 +206004,80990,illogical,1286895468 +206004,80990,remake,1286895478 +206004,81132,bizarre,1443464411 +206004,81132,headsplosions,1443464429 +206004,81132,original,1443464427 +206004,81132,spectators,1443464413 +206004,81132,surreal,1443464452 +206004,81132,the 4th wall,1443464422 +206004,81132,tricycle,1443464432 +206004,81145,80's,1404683248 +206004,81145,Aki Kaurismäki,1404683213 +206004,81145,comedy,1404683166 +206004,81145,deadpan,1404683172 +206004,81145,funny,1404683182 +206004,81145,Hamlet,1404683159 +206004,81145,murder,1404683271 +206004,81145,revenge,1404683331 +206004,81145,tragedy,1404683315 +206004,81591,alter ego,1299310712 +206004,81591,atmospheric,1299310710 +206004,81591,ballet,1299310754 +206004,81591,Bechdel Test:Pass,1358099166 +206004,81591,body horror,1299310767 +206004,81591,creepy,1293488160 +206004,81591,dark,1299310731 +206004,81591,doppelgänger,1299430469 +206004,81591,doppleganger,1299430454 +206004,81591,eerie,1299310779 +206004,81591,Natalie Portman,1299310728 +206004,81591,psychological,1299310760 +206004,81591,repressed sexuality,1299310719 +206004,81591,Soundtrack,1299310724 +206004,81591,Winona Ryder,1299310726 +206004,81631,alien invasion,1304925641 +206004,81631,parody,1304925663 +206004,81631,sci-fi,1304925647 +206004,81631,science,1304925641 +206004,81834,Daniel Radcliffe,1292672992 +206004,81834,dark,1292672977 +206004,81834,Emma Watson,1292672988 +206004,81834,England,1292673069 +206004,81834,Helena Bonham Carter,1292672954 +206004,81834,persecution,1292673035 +206004,81834,racial hygiene,1292673399 +206004,81834,racism,1292673022 +206004,82015,remake,1390861579 +206004,82242,all-male cast,1356775575 +206004,82242,bad parenting,1356775646 +206004,82242,Christmas,1356775618 +206004,82242,creepy,1356775589 +206004,82242,Finnish,1356775590 +206004,82242,male nudity,1356775601 +206004,82242,no payoff,1356775663 +206004,83613,aliens,1355863324 +206004,83613,Cliched,1355863360 +206004,83613,cowboys,1355863327 +206004,83613,Daniel Craig,1355863331 +206004,83613,western,1355863321 +206004,84663,duty,1377894123 +206004,84663,England,1377893948 +206004,84663,Helen Mirren,1377893905 +206004,84663,history,1377893958 +206004,84663,Hugh Dancy,1377893899 +206004,84663,love,1377894107 +206004,84663,royalty,1377894143 +206004,84799,death,1358805794 +206004,84799,immortality,1358805787 +206004,84799,scientist experiments on self,1358805812 +206004,85788,demon possession,1355670411 +206004,85788,demons,1355670389 +206004,85788,ghosts,1355670379 +206004,85788,supernatural,1355671446 +206004,85788,tense,1355671452 +206004,85788,well-constructed,1355671440 +206004,86295,Self-referential,1314778446 +206004,86295,slasher,1314778471 +206004,86295,Wes Craven,1314778456 +206004,86332,action,1331143007 +206004,86332,boring,1331143026 +206004,86332,bullshit,1331143086 +206004,86332,cgi,1331143011 +206004,86332,comic book,1331142986 +206004,86332,dragged and boring,1331143063 +206004,86332,Marvel,1331142969 +206004,86332,mythology,1331142972 +206004,86332,Norse,1331142991 +206004,86332,predictable,1331142954 +206004,86332,superhero,1331142950 +206004,86332,Tom Hiddleston,1331142947 +206004,86332,watch the credits,1331142957 +206004,86715,atmospheric,1304925589 +206004,86715,beautiful,1304925811 +206004,86715,haunting,1304925796 +206004,86715,vampires,1304925581 +206004,86880,cameo:Keith Richards,1307309412 +206004,86880,mermaid,1307309444 +206004,87192,alien invasion,1392762757 +206004,87192,aliens,1392762766 +206004,87192,black comedy,1392762788 +206004,87192,drug dealing,1392762747 +206004,87192,drugs,1392762792 +206004,87192,England,1392762799 +206004,87222,Fantastic animation,1409771540 +206004,87222,Much better than the first,1409771525 +206004,87232,Jennifer Lawrence,1403079036 +206004,87232,Michael Fassbender,1403079027 +206004,87232,mutants,1403079048 +206004,87408,anarchy,1307778760 +206004,87408,Finland,1307778469 +206004,87408,juvenile deliquent,1307778838 +206004,87408,punk rock,1307778935 +206004,87408,rebel,1307778569 +206004,87408,social commentary,1307778866 +206004,87408,youth,1307778510 +206004,87433,aliens,1320749503 +206004,87433,assassination,1320749541 +206004,87433,giant monster,1320749668 +206004,87433,Godzilla,1320749486 +206004,87433,Kaiju,1320749629 +206004,87433,Mothra,1320749570 +206004,87921,boring plot,1349796693 +206004,87921,jumpscares,1349796773 +206004,87921,predictable,1349796697 +206004,87921,title sequence,1349796711 +206004,89030,Anton Yelchin,1414959422 +206004,89030,David Tennant,1414959425 +206004,89030,high school,1414959416 +206004,89030,no suspense,1414959392 +206004,89030,predictable,1414959403 +206004,89030,remake,1414959400 +206004,89030,trivial,1414959412 +206004,89030,vampire,1414959409 +206004,89030,vampires,1414959405 +206004,90057,ambiguous,1348733461 +206004,90057,apocalyptic,1348733505 +206004,90057,apocalyptic storm,1348733523 +206004,90057,Communication,1348733466 +206004,90057,dreams,1348733692 +206004,90057,Jessica Chastain,1348733448 +206004,90057,mental illness,1348733476 +206004,90057,Michael Shannon,1348733447 +206004,90057,premonition,1348733679 +206004,90057,surprising,1348733491 +206004,90321,Fritz Lang,1409633844 +206004,90321,murder,1409633848 +206004,90321,writer,1409633885 +206004,90374,cults,1374052902 +206004,90374,hippies,1374052912 +206004,90374,Hugh Dancy,1374052869 +206004,90374,rape,1374052877 +206004,90374,uninteresting,1374052955 +206004,90374,weak ending,1374052863 +206004,90453,Bali,1320665241 +206004,90453,black magic,1320665220 +206004,90453,campy,1320665152 +206004,90453,flying head,1320665166 +206004,90453,magic,1320665203 +206004,90453,Sofia W. D.,1320665105 +206004,90453,Special Effects,1320665033 +206004,90453,supernatural,1320665023 +206004,90453,transformation,1320665189 +206004,90746,3D effects,1327361120 +206004,90746,action,1327361204 +206004,90746,action right from the start to the very end,1327361098 +206004,90746,alcoholism,1327361133 +206004,90746,Americanized,1327361276 +206004,90746,great opening credits,1327361137 +206004,90746,pacing,1327361214 +206004,91104,nothing happens,1341568481 +206004,91104,pregnancy,1341568474 +206004,91104,unintentionally funny,1341568466 +206004,91104,vampires,1341568487 +206004,91304,aliens,1323112753 +206004,91304,rape,1323112766 +206004,91304,toys,1323112790 +206004,91529,Bane's voice,1343039195 +206004,91529,Batman,1343039230 +206004,91529,Batman voice,1343039221 +206004,91529,Joseph Gordon-Levitt,1343039251 +206004,91529,plot twist,1343039212 +206004,91529,Predictable,1343039186 +206004,91529,unsatisfying ending,1343039190 +206004,92184,Christmas,1418421987 +206004,92210,aliens,1325799387 +206004,92210,alternate timeline,1325799555 +206004,92210,animation,1325799387 +206004,92210,franchise,1325799387 +206004,92210,Japan,1325799387 +206004,92210,Nagato,1325799495 +206004,92210,supernatural,1325799502 +206004,92210,time travel,1325799387 +206004,92309,asthma,1399307554 +206004,92309,atmospheric,1399307522 +206004,92309,characters,1399307526 +206004,92309,horror,1399307531 +206004,92309,hotel,1399307559 +206004,92309,pacing,1399307537 +206004,92309,paranormal,1399307543 +206004,92309,slackers,1399307547 +206004,92309,suspense,1399307627 +206004,92309,traditional,1399307630 +206004,92422,atmospheric,1374053518 +206004,92422,ghosts/afterlife,1374053485 +206004,92422,jumpscares,1374053512 +206004,92422,scary,1374053489 +206004,92422,unsatisfying ending,1374053499 +206004,92938,mindless,1358096260 +206004,93014,1800's,1421838201 +206004,93014,criminals,1421838211 +206004,93014,Finland,1421837956 +206004,93014,gangs,1421838188 +206004,93014,häjy,1421838148 +206004,93014,Härmä,1421838154 +206004,93014,patricide,1421838106 +206004,93014,puukkojunkkari,1421838002 +206004,93014,puukkojunkkarit,1421837966 +206004,93840,dark comedy,1348083234 +206004,93840,funny,1348083184 +206004,93840,joss whedon,1348083238 +206004,93840,original,1348083185 +206004,93840,plot twist,1348083201 +206004,93840,social commentary,1348083189 +206004,94061,Vincent Price,1362845841 +206004,94150,based on a true story,1374052366 +206004,94150,female director,1374052344 +206004,94150,Hugh Dancy,1374052311 +206004,94150,London,1374052376 +206004,94150,Maggie Gyllenhaal,1374052318 +206004,94150,preachy,1374052337 +206004,94150,predictable,1374052330 +206004,94150,sexuality,1374052326 +206004,94864,aliens,1361612899 +206004,94864,Bechdel Test:Pass,1361612902 +206004,94864,disease,1361821758 +206004,94864,Ridley Scott,1361821827 +206004,94864,scifi,1361612896 +206004,94864,self discovery,1361821748 +206004,94864,space travel,1361821775 +206004,94864,technology,1361612891 +206004,94864,Unpredictable,1361821770 +206004,95058,funny,1364159056 +206004,95167,bears,1359743390 +206004,95167,Bechdel Test:Pass,1359743268 +206004,95167,charming,1359743434 +206004,95167,mother-daughter relationships,1359743251 +206004,95167,No Marriage at the End,1359743254 +206004,95167,Scotland,1359743405 +206004,95167,visuals,1359743414 +206004,95167,watch the credits,1359743372 +206004,95510,action,1342424701 +206004,95510,Andrew Garfield,1342424640 +206004,95510,Emma Stone,1342424682 +206004,95510,Marc Webb,1342424643 +206004,95510,Reboot,1342424650 +206004,95510,Spider-Man,1342424644 +206004,95510,watch the credits,1342424654 +206004,95784,drunk,1343039407 +206004,95784,Regina Linnanheimo,1343039380 +206004,95784,Teuvo Tulio,1343039388 +206004,96079,Ben Wishaw,1355863653 +206004,96079,Javier Bardem,1355863634 +206004,96079,Judi Dench,1355863662 +206004,96079,Scotland,1355863658 +206004,96079,spies,1355863704 +206004,96281,bullying,1389993777 +206004,96281,ghosts,1360515466 +206004,96281,stop motion,1360515451 +206004,96281,zombies,1360515457 +206004,96610,Bruce Willis,1364159122 +206004,96610,clever,1364159130 +206004,96610,Joseph Gordon-Levitt,1364159231 +206004,96610,organized crime,1364159146 +206004,96610,science fiction,1364159148 +206004,96610,western,1364159583 +206004,96737,cinematography,1361612830 +206004,96737,drugs,1361612831 +206004,96737,Dystopia,1361612834 +206004,96737,police corruption,1361612838 +206004,96737,sci-fi,1361612842 +206004,96737,slow motion,1361612851 +206004,96737,stylized,1361612848 +206004,96794,Brian Austin Green,1347967470 +206004,96794,Chromeskull,1347967468 +206004,96794,killer,1347967486 +206004,96794,monster make-up,1347967691 +206004,96794,Nick Principe,1347967468 +206004,96794,slasher,1348083368 +206004,96829,distrust,1409386669 +206004,96829,falsely accused,1409387296 +206004,96829,Mads Mikkelsen,1409386410 +206004,96829,paranoia,1409386422 +206004,96829,ruined lives,1409387600 +206004,96829,shunning,1409386607 +206004,96829,social rejection,1409387271 +206004,97065,effects,1427486276 +206004,97065,folk story,1427486313 +206004,97065,great ending,1427486266 +206004,97065,nostalgic,1427486284 +206004,97065,witch,1427486255 +206004,97172,boy and his dog,1389993821 +206004,97172,frankenstein,1389993827 +206004,97172,Tim Burton,1389993823 +206004,97175,interviews,1349796598 +206004,97175,Tom Savini,1349796576 +206004,97188,found footage,1374053578 +206004,97188,fucking scary,1374053624 +206004,97188,murder,1374053590 +206004,97188,occult,1374053596 +206004,97188,the deputy,1374053669 +206004,97188,washed out writer,1374053616 +206004,97296,campy,1350123109 +206004,97966,Creature Feature,1430504491 +206004,98203,hilarious,1356776762 +206004,98203,makes no sense,1356776735 +206004,98203,plot makes no sense,1356776851 +206004,98203,ridiculous,1356776702 +206004,98203,silly,1356776866 +206004,98203,twist ending,1356776787 +206004,98203,unintentionally funny,1356776709 +206004,98203,vampires,1356776712 +206004,98203,werewolves,1356776822 +206004,98243,action,1357759201 +206004,98243,Adventure,1357759190 +206004,98243,animation,1357759218 +206004,98243,cute,1357759196 +206004,98243,lack of story,1357759273 +206004,98243,plot,1357759248 +206004,98243,visuals,1357759302 +206004,98381,bad acting,1354910018 +206004,98381,everything,1354910065 +206004,98381,expository dialogue,1354910019 +206004,98381,gore,1354910038 +206004,98381,New Pinhead,1354910030 +206004,98381,plot,1354910052 +206004,99114,good soundtrack,1375959613 +206004,99114,Jamie Foxx,1375959591 +206004,99114,ku klux klan,1375959608 +206004,99114,lack of female characters,1375959789 +206004,99114,racism,1375959594 +206004,99114,Revenge,1375959599 +206004,99182,creature feature,1429390475 +206004,99182,sharks,1429390460 +206004,99395,future,1357162759 +206004,99395,revolution,1357162982 +206004,99395,social commentary,1357162776 +206004,99437,Clancy Brown,1451485467 +206004,99437,mind altering drugs,1451485379 +206004,99437,misleading title,1451485390 +206004,99437,nonlinear,1451485384 +206004,99437,parallel universe,1451485386 +206004,99437,surreal,1451485381 +206004,99912,cgi,1410679799 +206004,99912,children,1410679747 +206004,99912,feral children,1410679755 +206004,99912,feral kid,1410679751 +206004,99912,Horror,1410679761 +206004,99912,Javier Botet,1410680636 +206004,99912,Jessica Chastain,1410680547 +206004,99912,motherhood,1410679763 +206004,99912,supernatural,1410680561 +206004,101166,living body parts,1363977861 +206004,101166,severed hand,1363977850 +206004,102058,deadpool,1374052467 +206004,102066,best friends,1414959061 +206004,102066,character driven,1414959135 +206004,102066,drugs,1414959079 +206004,102066,slow,1414959066 +206004,102066,stories,1414959159 +206004,102125,action,1451036932 +206004,102125,audience intelligence underestimated,1451036926 +206004,102125,Bechdel Test:Fail,1451036881 +206004,102125,big budget,1451036916 +206004,102125,childish,1451036908 +206004,102125,predictable,1451036923 +206004,102125,predictable ending,1451036874 +206004,102125,Robert Downey Jr.,1451036867 +206004,102125,shallow plot,1451036919 +206004,102280,bad on purpose,1427486209 +206004,102280,boring,1427486220 +206004,102280,computer effects,1427486223 +206004,102280,retro,1427486152 +206004,102280,ugly,1427486230 +206004,102280,unfunny,1427486211 +206004,102445,Anton Yelchin,1379447053 +206004,102445,Bechdel Test:Fail,1379446933 +206004,102445,predictable,1379446968 +206004,102445,Simon Pegg,1379446905 +206004,102445,unoriginal,1379447012 +206004,103219,creepy,1432499625 +206004,103219,depressing,1432499923 +206004,103219,Elijah Wood,1432499857 +206004,103219,gruesome,1432499728 +206004,103219,hair,1432499670 +206004,103219,hallucination,1432499845 +206004,103219,hand washing,1432499759 +206004,103219,hopeless,1432499932 +206004,103219,illogical victims,1432499891 +206004,103219,mannequins,1432499664 +206004,103219,mental illness,1432499658 +206004,103219,migraines,1432499713 +206004,103219,point of view,1432499648 +206004,103219,serial killer,1432499739 +206004,103219,twisted,1432499731 +206004,103228,cgi,1375956779 +206004,103228,giant robots,1375956686 +206004,103228,homage,1375956720 +206004,103228,Kaiju,1375956689 +206004,103228,mecha,1375956743 +206004,103228,Ron Perlman,1375956724 +206004,103228,subgenre:Kaiju,1375956696 +206004,103299,bod mod,1407013376 +206004,103299,body modification,1407013310 +206004,103299,creative,1407013340 +206004,103299,dark,1407013337 +206004,103299,genital mutilation,1407013325 +206004,103299,Katharine Isabelle,1407013402 +206004,103299,rape,1407013330 +206004,103299,revenge,1407013333 +206004,103341,addiction,1387263601 +206004,103341,aging,1385759391 +206004,103341,aliens,1385759386 +206004,103341,cornetto trilogy,1385759373 +206004,103341,Edgar Wright,1385759365 +206004,103341,England,1385759382 +206004,103341,good cast,1385759377 +206004,103341,Martin Freeman,1385759379 +206004,103341,metaphorical,1388355036 +206004,103341,Nick Frost,1385759368 +206004,103341,pub crawl,1385759371 +206004,103341,Rosamund Pike,1387263706 +206004,103341,Simon Pegg,1385759367 +206004,103341,touching,1387263666 +206004,103688,70s,1379446839 +206004,103688,cliche,1379446813 +206004,103688,haunted house,1379446843 +206004,103688,James Wan,1379446850 +206004,103688,Lili Taylor,1379446855 +206004,103688,Patrick Wilson,1379446857 +206004,103688,possession,1379446831 +206004,103688,Vera Farmiga,1379446865 +206004,104091,deal with the devil,1375958663 +206004,104091,Erika Blanc,1375958804 +206004,104091,priest,1375958828 +206004,104091,seven deadly sins,1375958676 +206004,104091,succubus,1375958787 +206004,104099,Lupin III,1376086796 +206004,104135,creature feature,1427887970 +206004,104135,goofy monster,1422392387 +206004,104135,Kaiju,1422392361 +206004,104135,so bad it's good,1422392368 +206004,104135,technobabble,1422392366 +206004,104339,awkward romance,1396209846 +206004,104339,Lake Bell,1396209847 +206004,104339,movie business,1396209850 +206004,104339,voice acting,1396209851 +206004,104457,family drama,1385759633 +206004,104457,illogical,1385759626 +206004,104457,masked killer,1385759680 +206004,104457,slasher,1385759638 +206004,104513,campy,1421734973 +206004,104513,clowns,1421734986 +206004,104513,creepy clowns,1427487522 +206004,104671,Asia Argento,1378326871 +206004,104671,bad acting,1450007865 +206004,104671,boring,1450007922 +206004,104671,giant praying mantis,1450007858 +206004,104671,praying mantis,1378326895 +206004,104671,vampires,1450007931 +206004,104671,wasted talent,1450007871 +206004,104671,why?,1378326877 +206004,105178,aliens,1414476319 +206004,105178,goofy aliens,1414476305 +206004,105178,monster:giant insect,1414476283 +206004,105178,Peter Graves,1414476296 +206004,105178,saving the world in your PJs,1414476328 +206004,105178,slow,1414476276 +206004,105178,so bad it's good,1414476339 +206004,105308,lackluster sequel,1383980354 +206004,105825,death of a child,1383979923 +206004,105825,madness,1383979901 +206004,105825,Regina Linnanheimo,1383979890 +206004,105825,revenge,1383979990 +206004,105837,Godzilla,1383979835 +206004,106702,alter ego,1395688151 +206004,106702,erotic,1385760072 +206004,106702,great ending,1385760100 +206004,106702,great soundtrack,1385760109 +206004,106702,Udo Kier,1385760084 +206004,106702,unintentionally funny,1395688130 +206004,107673,60's,1388525162 +206004,107673,BDSM,1388525022 +206004,107673,chauvinism,1389994584 +206004,107673,Dagmar Lassander,1404683841 +206004,107673,dominance,1404683985 +206004,107673,enjoyable,1404683811 +206004,107673,imprisonment,1404683905 +206004,107673,kidnapping,1404683914 +206004,107673,mind games,1404683961 +206004,107673,Piero Schivazappa,1404683775 +206004,107673,revenge,1404683744 +206004,107673,sadism,1388525032 +206004,107673,sexual liberation,1388525153 +206004,107673,stylish,1404683819 +206004,107673,vagina dentata,1389994600 +206004,107673,women's lib,1404683760 +206004,107771,atmospheric,1396209815 +206004,107771,Jim Jarmusch,1396209801 +206004,107771,music,1396209819 +206004,107771,Tilda Swinton,1396209803 +206004,107771,Tom Hiddleston,1396209808 +206004,107771,vampires,1396209869 +206004,109062,arranged marriage,1392762391 +206004,109062,chace scene,1392762366 +206004,109062,Finnish Valentino,1392762276 +206004,109062,fun,1392762293 +206004,109062,love triangles,1392762313 +206004,109062,Romani,1392762237 +206004,109062,romani people,1392762334 +206004,109062,Teuvo Tulio,1392762165 +206004,109062,Valentin Vaala,1392762424 +206004,109187,Bechdel Test:Fail,1411384003 +206004,109187,bittersweet,1411384260 +206004,109187,future,1411384274 +206004,109187,meaning of life,1411384285 +206004,109187,mis en scene,1411384061 +206004,109187,production design,1411384080 +206004,109187,rats,1411384292 +206004,109187,visually appealing,1411384242 +206004,110044,DRUG ADDICTION,1395687493 +206004,110044,Vincent Price,1395687480 +206004,110102,Chris Evans,1396169643 +206004,110102,Marvel,1398584654 +206004,110102,Scarlett Johansson,1398584571 +206004,110553,action,1398583714 +206004,110553,Andrew Garfield,1398583755 +206004,110553,comedy,1398584286 +206004,110553,costume design,1398584021 +206004,110553,Dane DeHaan,1399577603 +206004,110553,dialogue,1398584302 +206004,110553,Electro,1398583725 +206004,110553,Emma Stone,1398583766 +206004,110553,Jamie Foxx,1398583918 +206004,110553,lighting,1398584036 +206004,110553,Marc Webb,1398583786 +206004,110553,Marvel,1398584682 +206004,110553,pacing,1398583891 +206004,110553,Sally Fields,1398584114 +206004,110553,soundtrack,1398583923 +206004,110553,story,1398583873 +206004,111233,Creature Feature,1408903062 +206004,111233,Giant octopus,1408903089 +206004,111233,horror,1410157351 +206004,111233,Italian,1410157345 +206004,111233,Italian horror,1410157361 +206004,111233,Octopus,1408903050 +206004,111233,regatta,1408903290 +206004,111233,soundtrack,1408903094 +206004,111362,Bryan Singer,1403078968 +206004,111362,Evan Peters,1403079103 +206004,111362,Jennifer Lawrence,1403078949 +206004,111362,Michael Fassbender,1403078954 +206004,111364,bland hero,1401223843 +206004,111364,Bryan Cranston,1401223802 +206004,111364,Creature Feature,1411681978 +206004,111364,Godzilla,1401223813 +206004,111364,gradual tension,1411681972 +206004,111364,Kaiju,1409388125 +206004,111364,not enough monster action,1401223849 +206004,111364,special effects,1401223808 +206004,112066,anime,1402559407 +206004,112066,dead parent,1402559456 +206004,112066,father daughter relationship,1402559504 +206004,112066,youkai,1402559421 +206004,112183,alter ego,1426803339 +206004,112183,Broadway,1426803377 +206004,112183,cinematography,1426803390 +206004,112183,Edward Norton,1426803328 +206004,112183,insider acting stuff,1426803363 +206004,112183,magical realism,1426803332 +206004,112183,Michael Keaton,1426803381 +206004,112183,pretentious,1426803399 +206004,112183,psychological,1426803336 +206004,112183,superhero,1426803429 +206004,112183,theater,1426803435 +206004,112442,cougars,1404076543 +206004,112442,Creature Feature,1404076531 +206004,112442,dog attack,1404076551 +206004,112442,eagles,1404076572 +206004,112442,eco-horror,1404076473 +206004,112442,Leslie Nielsen,1404076457 +206004,112442,nature strikes back,1404076496 +206004,112442,ozone layer,1404076511 +206004,112442,wolves,1404076586 +206004,112444,Angel Dust,1404077086 +206004,112444,cheetah,1404077178 +206004,112444,cheetah chase scene,1404077196 +206004,112444,Creature Feature,1409387728 +206004,112444,drugs,1409546725 +206004,112444,eco-horror,1404077208 +206004,112444,elephants,1404077113 +206004,112444,ending,1404077138 +206004,112444,lions,1404077105 +206004,112444,nature strikes back,1409546705 +206004,112444,PCP,1404077073 +206004,112444,rats,1404077101 +206004,112444,real animal cruelty,1404077055 +206004,112444,real animal deaths,1404077065 +206004,112444,zoo,1404077098 +206004,112515,dog,1411383723 +206004,112515,fun,1411383717 +206004,112515,monster,1411383748 +206004,112515,mother-son relationship,1411383705 +206004,112515,possession,1411383827 +206004,112515,social exclusion,1411383818 +206004,112515,supernatural,1411383737 +206004,112515,The Shining meets Home Alone,1411383934 +206004,112550,Daughter / father relationship,1408903559 +206004,112550,dogs,1408903469 +206004,112550,father daughter relationship,1408903547 +206004,112550,revenge,1408903425 +206004,112550,youth,1408903535 +206004,112852,characters with individual goals,1406999278 +206004,112852,great soundtrack,1406999269 +206004,112852,raccoon,1406999360 +206004,112852,space,1406999347 +206004,112852,talking animals,1406999415 +206004,113188,Australia,1411621303 +206004,113188,bleak,1411621220 +206004,113188,great soundtrack,1411621215 +206004,113188,Guy Pearce,1411621193 +206004,113188,post-apocalyptic,1411621570 +206004,113188,Robert Pattinson,1411621189 +206004,113188,scenery,1411621315 +206004,113236,blaxploitation,1427888497 +206004,113236,the exorcist ripoff,1427888379 +206004,113573,dark humor,1409467973 +206004,113573,Eva Green,1409468916 +206004,113573,film noir,1409467813 +206004,113573,Frank Miller,1409467852 +206004,113573,grim,1409467959 +206004,113573,no climax,1409468057 +206004,113573,stylized,1409467819 +206004,113573,too many color highlights,1409468952 +206004,113573,violence,1409467937 +206004,113640,afterlife,1409004070 +206004,113640,child in peril,1409004614 +206004,113640,film,1409004058 +206004,113640,ghosts,1409004064 +206004,113640,murder,1409004053 +206004,114436,adultery,1411680057 +206004,114436,alcoholism,1411679770 +206004,114436,dark comedy,1411679989 +206004,114436,drugs,1411679611 +206004,114436,drunk cop,1411681459 +206004,114436,drunk ex-cop,1411681449 +206004,114436,dysfunctional family,1411680165 +206004,114436,ex-cop,1411680181 +206004,114436,mental illness,1411679942 +206004,114436,nightmarish,1411679979 +206004,114436,rape scene,1411679748 +206004,114436,soundtrack,1411679683 +206004,114436,spousal abuse,1411679793 +206004,114436,teenagers,1411679625 +206004,114550,prejudice,1411936562 +206004,114550,puberty,1411936553 +206004,114550,werewolves,1411936534 +206004,114550,womanhood,1411936546 +206004,114552,cheese,1411936935 +206004,114552,father-daughter relationship,1411936946 +206004,114552,stop-motion,1411936904 +206004,114552,trolls,1411936882 +206004,114554,folk tale,1411937244 +206004,114554,folklore,1411937250 +206004,114678,Simon Pegg,1413835577 +206004,114707,Daniel Radcliffe,1413835603 +206004,115122,clubbing,1451988704 +206004,115122,comedy,1451988698 +206004,115122,communal living,1451988736 +206004,115122,commune,1451988725 +206004,115122,dark comedy,1451988987 +206004,115122,death,1451988873 +206004,115122,fake accents,1451988966 +206004,115122,friendship,1451988729 +206004,115122,housemates,1451988723 +206004,115122,humor,1451988694 +206004,115122,Jemaine Clement,1451988993 +206004,115122,mockumentary,1451988690 +206004,115122,New Zealand,1451988696 +206004,115122,shared apartment,1451988717 +206004,115122,vampires,1451988692 +206004,115122,werewolves,1451988711 +206004,115721,abuse,1437948450 +206004,115721,cinematography,1437948558 +206004,115721,dreamlike,1437948865 +206004,115721,finnish,1437948453 +206004,115721,finnish summer,1437948507 +206004,115721,J.-P. Valkeapää,1437948502 +206004,115721,little dialogue,1437948770 +206004,115721,road trip,1437948736 +206004,115721,roosa söderholm,1437948522 +206004,115721,runaways,1437948691 +206004,115721,smoking,1437948823 +206004,115721,social exclusion,1437948631 +206004,115721,stylish,1437948850 +206004,115721,teens,1437948641 +206004,115721,torture,1437948699 +206004,115721,youth,1437948648 +206004,115781,transformation,1415083259 +206004,115781,WITCHCRAFT,1415083235 +206004,117438,animation,1443297453 +206004,117438,anime,1443297438 +206004,117438,family,1443297464 +206004,117438,Hiromasa Yonebayashi,1443297446 +206004,117438,Studio Ghibli,1443297435 +206004,117438,youth,1443297471 +206004,117529,adventure,1435607831 +206004,117529,Blue,1435608045 +206004,117529,Bryce Dallas Howard,1435608076 +206004,117529,CGI,1435607873 +206004,117529,Chris Pratt,1435607825 +206004,117529,danger,1435607839 +206004,117529,destruction,1435607935 +206004,117529,dinosaurs,1435607828 +206004,117529,exciting,1435607841 +206004,117529,Experiment Gone Awry,1435607855 +206004,117529,franchise,1435607858 +206004,117529,fun,1435608094 +206004,117529,Irrfan Khan,1435607881 +206004,117529,island,1435607861 +206004,117529,predictable,1435607898 +206004,117529,sci-fi,1435607845 +206004,117529,science,1435607848 +206004,117529,t-rex,1435608060 +206004,118344,stephen king,1430506020 +206004,119836,creature feature,1427487559 +206004,119836,crocodile,1427487587 +206004,119836,tourist resort,1430504555 +206004,121169,BDSM,1429390210 +206004,121169,beautiful,1429390165 +206004,121169,costume design,1429390182 +206004,121169,Peter Strickland,1429390217 +206004,121231,angst,1436470737 +206004,121231,Creepy,1436470707 +206004,121231,depressing,1436470872 +206004,121231,despair,1436470822 +206004,121231,great soundtrack,1436470809 +206004,121231,horror,1436470711 +206004,121231,oppressive,1436470863 +206004,121231,Pacing,1436470794 +206004,121231,Psychological,1436470744 +206004,121231,Retro,1436470724 +206004,121231,score,1436470709 +206004,121231,Shapeshifter,1436470753 +206004,121231,Supernatural,1436470717 +206004,121231,teen,1436470887 +206004,121231,Urban Decay,1436470721 +206004,122321,exploitation,1447788363 +206004,122321,lingerie,1447788703 +206004,122321,mental illness,1447788318 +206004,122321,nudity,1447788403 +206004,122321,racy,1447788501 +206004,122321,uncomfortable,1447788518 +206004,122321,weird,1447788356 +206004,122882,action,1433103166 +206004,122882,adventure,1433181494 +206004,122882,awesome,1433181337 +206004,122882,charlize theron,1433103183 +206004,122882,chase,1433103192 +206004,122882,desert,1433103174 +206004,122882,dystopian,1433181352 +206004,122882,feminism,1433103176 +206004,122882,mad max,1433103196 +206004,122882,non-stop,1433181361 +206004,122882,post apocalypse,1433103173 +206004,122882,post apocalyptic,1433103163 +206004,122882,practical effects,1433103223 +206004,122882,sex slaves,1433103247 +206004,122882,special effects,1433103199 +206004,122882,valhalla,1433103232 +206004,122882,violence,1433181370 +206004,122882,warboys,1433181396 +206004,122882,warlord,1433181362 +206004,122882,wasteland,1433103228 +206004,122886,action,1450737469 +206004,122886,Adam Driver,1450737290 +206004,122886,BB-8,1450737288 +206004,122886,Carrie Fisher,1450737294 +206004,122886,Daisy Ridley,1450737283 +206004,122886,Fan service,1450737339 +206004,122886,feminism,1450737333 +206004,122886,feminist,1450737329 +206004,122886,franchise,1450737301 +206004,122886,fun,1450737457 +206004,122886,Gwendoline Christie,1450737476 +206004,122886,Harrison Ford,1450737274 +206004,122886,J.J. Abrams,1450737278 +206004,122886,John Boyega,1450737280 +206004,122886,Mark Hamill,1450737304 +206004,122886,Star Wars,1450737272 +206004,125916,abuse,1441525618 +206004,125916,anti kink,1441525823 +206004,125916,based on a book,1441525625 +206004,125916,BDSM,1441525620 +206004,125916,bland,1441525747 +206004,125916,boring,1441525757 +206004,125916,fanstasy,1441525737 +206004,125916,nothing happens,1441525766 +206004,125916,nudity (topless),1441525731 +206004,125916,ridiculous,1441525634 +206004,125916,stupid,1441526277 +206004,125916,whipping,1441525840 +206004,126084,comedy,1424295076 +206004,126084,murder,1424295059 +206004,126084,spoon,1424295053 +206004,126084,surreal,1424295081 +206004,126084,weird,1424295065 +206004,126591,campy,1422391352 +206004,126591,costume design,1422391308 +206004,126591,eternal youth,1422391408 +206004,126591,Fun,1422391361 +206004,126591,miniatures,1422391310 +206004,126591,Richard Kiel,1422391350 +206004,126591,scifi,1422391642 +206004,126591,Star Wars ripoff,1422391340 +206004,126591,super soldier,1422391383 +206004,126767,Edwige Fenech,1450386431 +206004,126767,giallo,1450386418 +206004,126767,whodunnit,1450386462 +206004,128393,car crash,1430604375 +206004,128393,car porn,1430604407 +206004,128393,cars,1430604338 +206004,128393,driving,1430604409 +206004,128393,police,1430604411 +206004,128393,sportsmanship,1430604488 +206004,128393,Stelvio Cipriani,1430604403 +206004,128634,Bela Lugosi,1424037095 +206004,128838,atmosphere,1447787966 +206004,128838,bigamy,1447787916 +206004,128838,cinematography,1447787633 +206004,128838,colorful,1447787497 +206004,128838,creepy,1447787480 +206004,128838,dark,1447787569 +206004,128838,ghosts,1447787576 +206004,128838,gruesome,1447788171 +206004,128838,Guillermo del Toro,1447787565 +206004,128838,haunted house,1447787582 +206004,128838,incest,1447787828 +206004,128838,Jessica Chastain,1447787547 +206004,128838,love,1447788199 +206004,128838,matricide,1447788007 +206004,128838,murder,1447787819 +206004,128838,philanderer,1447788065 +206004,128838,sins of the past,1447787842 +206004,128838,Tom Hiddleston,1447787558 +206004,128838,vengeance,1447788209 +206004,128838,visually appealing,1447787649 +206004,130332,bear,1427888160 +206004,130332,creature feature,1427888233 +206004,130332,fluffy,1427888187 +206004,130332,grizzly,1427888178 +206004,130332,jaws ripoff,1427888217 +206004,130332,killer animal,1427888203 +206004,130840,good actors,1429216022 +206004,130840,lovecraftian,1429216046 +206004,130840,monster,1429216054 +206004,130840,quirky,1429216064 +206004,130840,romance,1429215928 +206004,130958,animal horror,1427482446 +206004,130958,camp,1427482405 +206004,130958,creature feature,1427482434 +206004,130958,crocodile,1427349537 +206004,130958,enviromentalism,1427482603 +206004,130958,giant crocodile,1427482416 +206004,130958,killer animal,1427482425 +206004,130984,El Santo,1427487148 +206004,130984,Transylvania,1427487160 +206004,130984,werewolves,1427487167 +206004,130984,wrestling,1427487155 +206004,131011,corruption,1427579626 +206004,131011,good cop,1427579701 +206004,131011,manslaughter,1427579689 +206004,131011,murder,1427579681 +206004,131011,Police,1427579668 +206004,131011,revenge,1427579663 +206004,131011,vigilantism,1427579633 +206004,132130,animal cruelty,1440620197 +206004,132130,boy scouts,1440620169 +206004,132130,children,1440620124 +206004,132130,children in peril,1440620136 +206004,132130,despicable characters,1440620008 +206004,132130,good soundtrack,1440619919 +206004,132130,scouts,1440619951 +206004,132130,soundtrack,1440619920 +206004,132130,summer camp,1440619958 +206004,132130,terrible people,1440619981 +206004,132130,traps,1440620025 +206004,132130,unlikeable characters,1440620019 +206004,132130,woods,1440620049 +206004,132464,bad effects,1429390667 +206004,132464,beach,1429390652 +206004,132464,creature feature,1429390670 +206004,132464,jersey shore,1429390699 +206004,132464,parody,1429390708 +206004,132464,shark,1430504462 +206004,132539,black cat,1453647597 +206004,132539,cat,1453647600 +206004,132539,creature feature,1453647606 +206004,132539,Edgar Allan Poe,1453647769 +206004,132539,hypnotism,1453647625 +206004,132539,killer animals,1453647614 +206004,132539,medium,1453647684 +206004,132539,mediumship,1453647704 +206004,132539,mind control,1453647748 +206004,132539,murder,1453647751 +206004,132539,supernatural,1453647620 +206004,133279,activism,1431019737 +206004,133279,consumerism,1431019748 +206004,133279,economy,1431019741 +206004,133279,old people,1431020064 +206004,133279,positive,1431020078 +206004,134170,80's nostalgia,1434613068 +206004,134170,8o's,1434612965 +206004,134170,Hitler,1434612944 +206004,134170,nazis,1434612949 +206004,134170,parody,1434612968 +206004,134170,too dumb,1434613043 +206004,134170,unfunny,1434612953 +206004,134503,anthology,1433193166 +206004,134503,carnival,1433193418 +206004,134503,cozy,1433194751 +206004,134503,crime of passion,1433193222 +206004,134503,eternal life,1433193291 +206004,134503,hermit,1433193285 +206004,134503,sex is dangerous,1433193316 +206004,134503,Vincent Price,1433193766 +206004,134503,witch,1433193393 +206004,135288,bitter sweet,1443368841 +206004,135288,cinematography,1443368705 +206004,135288,comforting,1443368838 +206004,135288,dementia,1443368741 +206004,135288,growing old,1443368723 +206004,135288,Ian McKellen,1443368684 +206004,135288,photography,1443368694 +206004,135534,beautiful effects,1450737707 +206004,135534,Christmas,1450737679 +206004,135534,comedy,1450737644 +206004,135534,creature feature,1450737635 +206004,135534,horror,1450737647 +206004,135534,krampus,1450737626 +206004,135534,legend,1450737895 +206004,135534,pagan myth,1450737904 +206004,135534,practical effects,1450737663 +206004,140144,80's,1438550045 +206004,140144,BDSM,1438550032 +206004,140144,beastiality,1438550055 +206004,140144,blackmail,1438550073 +206004,140144,camp,1438550158 +206004,140144,homosexuality,1438550224 +206004,140144,nudity,1438550174 +206004,140144,peeping,1438550094 +206004,140144,punishment,1438550066 +206004,140144,rape,1438550170 +206004,140144,sex scandal,1438550079 +206004,140144,softcore pornography,1438550188 +206004,140235,slasher,1438897918 +206004,140235,the devil,1438897903 +206004,141544,80's,1443297965 +206004,141544,acting,1443297850 +206004,141544,androids,1443297858 +206004,141544,blood and guts,1443297890 +206004,141544,comic books,1443297961 +206004,141544,cute,1443297897 +206004,141544,post-apocalyptic,1443297846 +206004,141544,retro-futuristic,1443297984 +206004,141544,robots,1443297863 +206004,141544,super hero,1443297907 +206004,142515,low budget movies,1443297742 +206004,142515,movie industry,1443297749 +206004,142515,movie making,1443297728 +206004,142515,Turkey,1443297756 +206004,142562,bdsm,1442697142 +206004,142566,painting,1442697252 +206004,143023,Cambodia,1443297602 +206004,143023,music,1443297606 +206004,143023,Vietnam war,1443297616 +206004,151565,black cat,1453647378 +206004,151565,blind,1453647398 +206004,151565,curse,1453647388 +206004,151565,disabled,1453647404 +206004,151565,loyalty,1453647425 +206004,151565,revenge,1453647441 +206004,151565,superntural,1453647385 +206004,151565,tattoos,1453647448 +206004,151565,yakuza,1453647409 +206004,151567,aliens,1453647533 +206004,151567,hostile aliens,1453647542 +206004,151567,space travel,1453647524 +206004,151567,Venus,1453647519 +206004,151567,war,1453647529 +206005,318,atmospheric,1426710250 +206005,318,crime,1426710263 +206005,318,drama,1426710222 +206005,318,great acting,1426710257 +206005,318,hope,1426710269 +206005,318,justice,1426710321 +206005,318,Morgan Freeman,1426710186 +206005,318,narrated,1426710236 +206005,318,oscar (best picture),1426710275 +206005,318,prison,1426710212 +206005,318,psychology,1426710261 +206005,318,sentimental,1426710291 +206005,318,Stephen King,1426710315 +206005,318,thought-provoking,1426710311 +206005,318,violence,1426710243 +206005,2706,comedy,1426710055 +206005,2706,high school,1426710088 +206005,2706,sexuality,1426710051 +206005,2706,stereotypes,1426710168 +206005,5791,alfred molina,1426709877 +206005,5791,art,1426710396 +206005,5791,Biography,1426710362 +206005,5791,bisexual,1426710357 +206005,5791,BOHEMIAN LIFE,1426709876 +206005,5791,disability,1426710374 +206005,5791,historical,1426710386 +206005,5791,salma hayek,1426709874 +206047,4034,drugs,1154346631 +206053,111384,revenge,1408781036 +206053,111384,vengeance,1408781025 +206053,111931,femme-fatale,1425503802 +206053,111931,gritty,1425503802 +206053,111931,low-budget,1425503802 +206073,3359,college,1144430218 +206090,2918,fun,1373334301 +206090,3809,quirky,1373334589 +206090,4238,detective thriller,1373334952 +206090,6936,seen more than once,1373334650 +206090,6936,silly,1373334647 +206090,93510,police,1373334384 +206090,97304,true story,1373334421 +206094,107999,action,1430799184 +206094,107999,anime,1430799184 +206094,107999,kung fu,1430799184 +206094,111624,drama,1431584497 +206094,111624,indie,1431584497 +206094,111624,love,1431584497 +206094,130682,b movie,1432523704 +206094,130682,comedt,1432523704 +206094,130682,horror,1432523704 +206097,260,Good,1438080721 +206097,260,You must see it,1438080736 +206099,597,Julia Roberts,1213203276 +206099,4992,Romance,1213203135 +206099,4992,time travel,1213203145 +206106,32,original,1368473887 +206106,198,rape,1422476913 +206106,1954,training montage,1289586544 +206106,2291,original,1368473887 +206106,2420,training montage,1289586625 +206106,2580,black comedy,1379899730 +206106,2580,christmas,1379899749 +206106,2580,drugs,1379899742 +206106,2580,Katie Holmes,1379899735 +206106,2580,multiple storylines,1379899744 +206106,2580,Nudity (Topless),1379899738 +206106,2580,rave,1379899739 +206106,4878,original,1368473887 +206106,5418,amnesia,1379895436 +206106,5418,Clive Owen,1379895383 +206106,5418,damsel in distress,1379895370 +206106,5418,espionage,1379895380 +206106,5418,Matt Damon,1379895335 +206106,5418,misogyny,1379895362 +206106,5418,spying,1379895399 +206106,33294,fantasy,1422476609 +206106,33294,science fiction,1422476609 +206106,33294,vampires,1422476609 +206106,34437,melancholic,1368473900 +206106,52885,hallucinatory,1382028666 +206106,52885,psychedelic,1382028629 +206106,52885,surreal,1382028647 +206106,52885,trippy,1382028637 +206106,67429,psychedelic,1382028569 +206106,67429,trippy,1382028530 +206106,87960,androcentrism,1438179651 +206106,87960,thought,1438179651 +206106,87960,thought-provoking,1438179651 +206106,87960,visually appealing,1438179651 +206106,88810,paternalism,1385598497 +206106,88810,white people,1385598503 +206106,96610,androcentrism,1409176607 +206106,96610,misogyny,1409176624 +206106,102792,atheism,1400467350 +206106,102792,heartbreaking,1400468756 +206106,102792,music,1400467355 +206106,102792,nonlinear,1400467360 +206124,22,detective,1368603865 +206124,22,suspenseful,1368603741 +206124,47,great ending,1368603831 +206124,296,masterpiece,1368603498 +206124,520,Cary Elwes,1397571454 +206124,520,Funny as hell,1397571454 +206124,520,hilarious,1397571454 +206124,520,wacky,1397571503 +206124,593,excellent script,1368603572 +206124,735,splatter,1368603644 +206124,924,masterpiece,1368603498 +206124,1033,unlikely friendships,1368603849 +206124,1088,dancing,1368603809 +206124,1219,suspenseful,1368603741 +206124,1241,splatter,1368603644 +206124,1258,masterpiece,1368603499 +206124,1537,dancing,1368603809 +206124,1704,excellent script,1368603572 +206124,1968,teen movie,1368603722 +206124,2144,teen movie,1368603722 +206124,2863,musicians,1368603701 +206124,2866,musicians,1368603701 +206124,3005,detective,1368603865 +206124,3083,women,1368603671 +206124,3418,women,1368603671 +206124,4018,women,1368603671 +206124,4020,supernatural,1368603540 +206124,4054,dancing,1368603809 +206124,4878,original,1368603401 +206124,5218,funny,1397569428 +206124,5266,suspenseful,1368603741 +206124,5693,dancing,1368603809 +206124,32587,brutality,1368603771 +206124,37733,brutality,1368603771 +206124,70599,time travel,1397569552 +206124,74458,ambiguous ending,1366121411 +206124,74458,psychological thriller,1366121411 +206124,94503,David Tennant,1397569719 +206124,94503,funny,1397569719 +206124,94503,predictable,1397569711 +206124,95441,funny,1366121706 +206124,95441,Vulgar jokes,1366121706 +206124,108932,awesome,1397569257 +206124,108932,Batman,1397569271 +206124,108932,clever,1397569215 +206124,108932,Funny as hell,1397569215 +206124,108932,songs,1397569257 +206129,27869,brother-brother relationship,1406066468 +206129,27869,Cliche,1406064585 +206129,27869,Emotional,1406066475 +206129,27869,heartbreaking,1406066479 +206129,27869,impressive but with a lot of pathos,1406064595 +206129,31878,comedy,1400966916 +206129,31878,Stephen Chow,1400966920 +206129,84716,surreal,1409425317 +206129,88163,comedy,1409425291 +206129,99007,zombies,1406034847 +206129,108190,dystopia,1409425280 +206129,110501,brutal,1405806432 +206129,110501,intense,1405806444 +206129,110501,martial arts,1405806427 +206129,110553,Emma Stone,1406319699 +206129,110553,sad,1406319692 +206141,7162,bleeding heart liberalism,1158553295 +206146,115617,animation,1431069104 +206146,115617,entertaining,1431069104 +206146,115617,sci-fi,1431069104 +206146,133337,coming of age,1431118814 +206146,133337,coming-of-age,1437935996 +206146,133337,good music,1437935996 +206146,133337,puberty,1431118901 +206146,133337,sweet,1437935996 +206146,139751,coming-of-age,1437936588 +206146,139751,gay,1437936593 +206146,139751,teen,1437936607 +206217,260,Overrated,1153843213 +206230,109963,politics,1435550665 +206230,109963,satire,1435550673 +206241,224,fantasy,1227622807 +206241,224,Johnny Depp,1227622805 +206241,2677,musicians,1227622774 +206241,48082,fantasy,1227622766 +206241,51662,comic book,1227622771 +206241,56788,politics,1227622782 +206241,58156,Will Ferrell,1227622828 +206241,61323,satire,1227622753 +206241,63113,bond,1227622795 +206244,260,classic,1441985493 +206244,260,classic sci-fi,1441985496 +206244,260,good vs evil,1441985499 +206254,260,classic,1441933822 +206254,260,fiction,1441933811 +206254,318,hope,1441934424 +206254,318,justice,1441934409 +206254,58559,Batman,1441934373 +206254,58559,Christian Bale,1441934378 +206260,1178,bad acting,1399543723 +206260,1178,boring,1399543758 +206260,1178,overrated,1399543918 +206260,1884,bats,1171787760 +206260,6969,black and white,1401182793 +206260,6969,no dialogue,1401182794 +206260,7458,Homer,1172370195 +206260,44234,Ray Bradbury,1364032865 +206260,96610,bad science,1398935224 +206260,99917,pretentious,1421802917 +206260,99917,slow,1421802945 +206260,104841,bad science,1382530900 +206260,104841,sexist,1382530931 +206260,122886,Plot Recycling,1451447473 +206273,3949,addiction,1237955827 +206273,3949,independent film,1237955827 +206291,2709,aliens,1427953079 +206291,2709,my home is my family,1427953079 +206291,2709,ridiculous,1427953079 +206315,249,Classical music,1166332488 +206315,249,Drama,1166332489 +206315,265,magic,1166332010 +206315,1197,fantasy,1166332055 +206315,1225,Mozart,1166332378 +206315,1225,music,1166332374 +206315,1225,true story,1166332379 +206315,2622,based on a book,1166331880 +206315,2622,Fantasy,1166331882 +206315,4896,Adventure,1166331546 +206315,4896,magic,1166331544 +206315,5816,fantasy,1166331538 +206315,5816,magic,1166331534 +206315,7579,Jane Austen,1166331585 +206315,8368,magic,1166331542 +206315,40815,magic,1166331541 +206315,43560,comedy,1166331504 +206315,43560,magic,1166331501 +206339,94815,death,1422139113 +206339,94815,surrealism,1422139113 +206339,94815,violin,1422139113 +206404,86332,Drama,1446376078 +206404,86332,Superpower,1446376065 +206404,122902,Superpower,1446375986 +206413,114,less than 300 ratings,1209030298 +206413,2291,original,1368347415 +206413,3114,original,1368347415 +206413,49524,Biblical,1180054221 +206413,49524,Jesus,1180054228 +206413,55768,movie to see,1210287954 +206435,233,OOP,1314922388 +206435,390,OOP,1315092346 +206435,764,OOP,1314922451 +206435,1000,netflix,1315727149 +206435,1380,netflix,1314478892 +206435,1836,netflix,1314479573 +206435,2308,netflix,1314477922 +206435,2618,netflix,1403484370 +206435,3068,netflix,1334522144 +206435,3336,netflix,1314479378 +206435,3527,netflix,1446951558 +206435,3732,netflix,1314478525 +206435,3744,netflix,1329631268 +206435,3756,netflix,1314478718 +206435,3805,netflix,1314479504 +206435,4441,OOP,1314922438 +206435,4624,OOP,1322413209 +206435,4751,OOP,1315300305 +206435,4872,netflix,1314479326 +206435,4879,netflix,1314479088 +206435,5000,OOP,1314922597 +206435,5046,netflix,1314479264 +206435,5132,netflix,1314479635 +206435,5574,netflix,1403725066 +206435,5712,netflix,1306477882 +206435,5951,netflix,1323550051 +206435,6280,netflix,1314479737 +206435,7521,netflix,1323377678 +206435,7637,OOP,1314922586 +206435,7827,netflix,1322413151 +206435,7926,netflix,1317281051 +206435,8684,hulu,1329630283 +206435,8765,netflix,1316757364 +206435,25905,OOP,1317962016 +206435,26681,OOP,1314922295 +206435,27648,netflix,1403725678 +206435,27660,No theatrical release,1196590978 +206435,32291,netflix,1323377585 +206435,32511,netflix,1321846793 +206435,32600,netflix,1314478328 +206435,32957,netflix,1403484701 +206435,33573,netflix,1403486245 +206435,34198,netflix,1322413076 +206435,34292,netflix,1314479017 +206435,35386,netflix,1403484545 +206435,41627,Netflix DVD,1439246708 +206435,45382,netflix,1314478129 +206435,45412,netflix,1318611915 +206435,46572,netflix,1314478251 +206435,48883,netflix,1314477769 +206435,49347,netflix,1314478389 +206435,50641,netflix,1314922553 +206435,51705,netflix,1321164431 +206435,52495,netflix,1316298845 +206435,55207,not to be confused with feature,1338947629 +206435,55207,short film,1338947630 +206435,55278,netflix,1403725249 +206435,56171,netflix,1314478844 +206435,58803,netflix,1317962173 +206435,60522,netflix,1323377517 +206435,62437,netflix,1315092449 +206435,65514,netflix,1300068612 +206435,66118,netflix,1316298784 +206435,69275,netflix,1312842802 +206435,69372,netflix,1403724942 +206435,72224,netflix,1314478649 +206435,72703,netflix,1290908453 +206435,74510,netflix,1321846616 +206435,74653,netflix,1403723760 +206435,75818,netflix,1403725130 +206435,77240,netflix,1301183589 +206435,78088,netflix,1300068716 +206435,79139,netflix,1403725543 +206435,79158,netflix,1403725346 +206435,79553,netflix,1314477379 +206435,80727,netflix,1308550603 +206435,80831,netflix,1297061219 +206435,81083,netflix,1314479450 +206435,81834,netflix,1306118745 +206435,84137,netflix,1314477288 +206435,85774,Netflix DVD,1439246542 +206435,87192,netflix,1319699347 +206435,87222,netflix,1329856924 +206435,87485,netflix,1322413303 +206435,88129,netflix,1406671237 +206435,88163,netflix,1321164006 +206435,88179,netflix,1403724464 +206435,88235,netflix,1329630385 +206435,89074,netflix,1316298969 +206435,89343,netflix,1322744247 +206435,89718,netflix,1403486314 +206435,90405,netflix,1403723835 +206435,91134,netflix,1403486416 +206435,91273,netflix,1403724399 +206435,91658,netflix,1403484342 +206435,92252,netflix,1403724282 +206435,92259,Netflix Streaming,1405991200 +206435,92420,netflix,1403486200 +206435,94959,netflix,1406671355 +206435,97752,Netflix DVD,1412376045 +206435,100714,Netflix DVD,1404621294 +206435,102194,netflix,1403728045 +206435,103107,Netflix Streaming,1412376533 +206435,105844,DVR,1439239764 +206435,106782,Netflix DVD,1412376595 +206435,117533,netflix,1446951688 +206439,91500,based on a book,1337705423 +206439,91500,drama,1337705436 +206439,91500,lack of character development,1337705439 +206439,93840,original,1337262922 +206444,102445,aliens,1446572550 +206444,102445,Benedict Cumberbatch,1446572554 +206444,102445,J.J. Abrams,1446572545 +206444,102445,science fiction,1446572561 +206444,102445,Simon Pegg,1446572558 +206444,102445,space,1446572547 +206450,8874,zombies,1230707757 +206464,260,1970s,1436348734 +206464,260,jedi,1436348722 +206464,260,starwars,1436348718 +206486,260,Bad acting,1438007683 +206486,260,classic sci-fi,1438007666 +206486,260,entertaining,1438007669 +206486,260,epic adventure,1438007704 +206509,40815,Nice one,1441545587 +206509,141846,Inspirtaional,1441545533 +206509,141916,Nice movie,1441545483 +206517,1036,action,1445120092 +206517,1036,action packed,1445120102 +206517,1036,Bruce Willis,1445120089 +206517,1036,humorous,1445120094 +206517,1036,lone hero,1445120097 +206517,2716,Bill Murray,1445119710 +206517,2716,Dan Aykroyd,1445119729 +206517,2716,occult technology,1445119726 +206517,2716,paranormal,1445119715 +206517,2716,quotable,1445119718 +206517,2716,supernatural,1445119721 +206517,3275,action,1445119786 +206517,3275,dark humor,1445119772 +206517,3275,Sean Patrick Flanery,1445119781 +206517,4369,action,1445120807 +206517,4369,Paul Walker,1445120803 +206517,4369,Vin Diesel,1445120800 +206517,6953,psychological,1445121774 +206517,6953,sean penn,1445121770 +206517,72167,comedy,1445119837 +206517,72167,Norman Reedus,1445119829 +206517,72167,vigilante,1445119826 +206520,28,author:Jane Austen,1423518940 +206520,28,Jane Austen,1423518931 +206560,589,time travel,1222432073 +206560,53996,robots,1222432210 +206561,260,good vs evil,1431527570 +206561,260,sci fi,1431527535 +206563,493,Nostaglic,1137114182 +206563,1206,Creepy good,1137113515 +206563,1257,Nostalgic,1137115313 +206563,1268,Nostalgic,1137115337 +206563,1290,Nostalgic,1137115350 +206563,1961,Nostaglic,1137113062 +206563,2871,Creepy good,1137113922 +206563,2997,Interesting,1137113055 +206563,4848,too weird,1137114671 +206563,6461,too western,1137113498 +206563,8482,old,1137114789 +206563,8645,Interesting,1137114014 +206563,40629,cheesy but good,1137114948 +206563,40819,Silly,1137114925 +206577,50,Love it,1451116202 +206589,1286,time travel,1245782930 +206612,260,imaginative,1442619094 +206612,260,special effects,1442619077 +206612,587,awesome,1442619987 +206612,587,Patrick Swayze,1442619998 +206612,587,wellmade,1442620043 +206635,87004,Authentic movement,1376671579 +206642,260,lasersword,1444010383 +206642,260,storm,1444010405 +206664,260,action,1439798508 +206664,260,classic,1439798518 +206664,260,sci-fi,1439798502 +206664,260,space,1439798492 +206673,260,homoroboerotica,1439812478 +206673,260,space cowboys,1439812458 +206688,101285,parody,1377523571 +206688,101285,satire,1377523580 +206690,260,geeky,1435243209 +206690,68952,effective,1435244295 +206690,68952,more then average,1435244295 +206690,68952,nice horror movie,1435244295 +206695,32076,MST3K,1291663833 +206698,260,Action sci-fi gold.,1440355311 +206698,260,Visually stunning world.,1440355288 +206700,47,Brad Pitt,1331126043 +206700,47,dark,1331126057 +206700,47,disturbing,1331126054 +206700,47,Kevin Spacey,1331126081 +206700,47,Morgan Freeman,1331126085 +206700,47,psychology,1331126051 +206700,47,twist ending,1331126047 +206700,196,Ben Kingsley,1352759401 +206700,296,drugs,1420582544 +206700,296,quentin tarantino,1420582544 +206700,296,violent,1420582544 +206700,318,magical negro,1427585442 +206700,318,prison,1427585442 +206700,318,suicide,1427585442 +206700,356,disability,1421294143 +206700,356,tom hanks,1421294143 +206700,356,vietnam war,1421294143 +206700,480,action,1331127618 +206700,480,adventure,1331127607 +206700,480,dinosaurs,1331127590 +206700,480,Michael Crichton,1331127593 +206700,480,sci-fi,1331127599 +206700,480,Steven Spielberg,1331127596 +206700,485,Charles Dance,1416161731 +206700,485,deconstruction,1416161705 +206700,485,parody,1416161651 +206700,485,ridiculous,1416161746 +206700,541,cyberpunk,1331126662 +206700,541,dystopia,1331126659 +206700,541,Harrison Ford,1331126654 +206700,541,Ridley Scott,1331126673 +206700,541,Rutger Hauer,1331126679 +206700,541,sci-fi,1331126651 +206700,541,Special Effects,1331126699 +206700,541,stylized,1331126683 +206700,589,apocalypse,1331125423 +206700,589,artificial intelligence,1331125425 +206700,589,dystopia,1331125433 +206700,589,future,1331125428 +206700,589,time travel,1331125430 +206700,593,fbi,1426448035 +206700,593,serial killer,1426448035 +206700,593,strong female lead,1426448035 +206700,750,black comedy,1331127173 +206700,750,dark comedy,1331127169 +206700,750,Peter Sellers,1331127184 +206700,750,satire,1331127166 +206700,750,Stanley Kubrick,1331127160 +206700,924,artificial intelligence,1331126205 +206700,924,atmospheric,1331126223 +206700,924,philosophical,1331126217 +206700,924,sci-fi,1331126208 +206700,924,Stanley Kubrick,1331126206 +206700,924,surreal,1331126211 +206700,969,romance,1374859156 +206700,1196,Harrison Ford,1331125475 +206700,1196,sci-fi,1331125477 +206700,1196,space,1331125481 +206700,1198,adventure,1331127910 +206700,1198,comedy,1331127918 +206700,1198,Harrison Ford,1331127902 +206700,1198,indiana jones,1331127905 +206700,1199,black comedy,1331126822 +206700,1199,dark comedy,1331126824 +206700,1199,dreamlike,1331126837 +206700,1199,dystopia,1331126827 +206700,1199,sci-fi,1331126833 +206700,1199,surreal,1331126830 +206700,1199,Terry Gilliam,1331126829 +206700,1200,action,1331126455 +206700,1200,James Cameron,1331126472 +206700,1200,sci-fi,1331126425 +206700,1200,Sigourney Weaver,1331126421 +206700,1201,Clint Eastwood,1331127393 +206700,1201,Eli Wallach,1331127409 +206700,1201,Ennio Morricone,1331127370 +206700,1201,Sergio Leone,1331127374 +206700,1201,spaghetti western,1331127381 +206700,1201,western,1331127385 +206700,1206,disturbing,1331126869 +206700,1206,dystopia,1331126872 +206700,1206,Malcolm McDowell,1331126940 +206700,1206,soundtrack,1331126884 +206700,1206,Stanley Kubrick,1331126862 +206700,1208,Dark,1331126565 +206700,1208,disturbing,1331126568 +206700,1208,Martin Sheen,1331126585 +206700,1208,psychological,1331126626 +206700,1208,soundtrack,1331126603 +206700,1208,surreal,1331126571 +206700,1214,atmospheric,1331126393 +206700,1214,dark,1331126391 +206700,1214,horror,1331126334 +206700,1214,Ridley Scott,1331126337 +206700,1214,sci-fi,1331126352 +206700,1214,Sigourney Weaver,1331126346 +206700,1232,Andrei Tarkovsky,1331125558 +206700,1232,dark,1303407057 +206700,1232,existentialism,1331125571 +206700,1232,meditative,1331125583 +206700,1232,reflective,1331125568 +206700,1232,sci-fi,1303407042 +206700,1237,black and white,1331125952 +206700,1237,Criterion,1331125924 +206700,1237,existentialism,1331125969 +206700,1237,funny,1331125909 +206700,1237,Ingmar Bergman,1331125881 +206700,1237,Swedish,1331125960 +206700,1265,Bill Murray,1331127503 +206700,1265,comedy,1331127518 +206700,1265,existentialism,1331127506 +206700,1265,Fantasy,1331127512 +206700,1265,time travel,1331127522 +206700,1270,1980s,1331129461 +206700,1270,comedy,1331129455 +206700,1270,sci-fi,1331129452 +206700,1270,time travel,1331129450 +206700,1274,cyberpunk,1331129125 +206700,1274,dystopia,1331129127 +206700,1274,science fiction,1331129137 +206700,1274,soundtrack,1331129156 +206700,1274,visually stunning,1331129131 +206700,1278,Gene Wilder,1331125096 +206700,1278,Madeline Kahn,1331125162 +206700,1278,Mel Brooks,1331125099 +206700,1278,monster,1331125105 +206700,1278,parody,1331125134 +206700,1282,classical music,1331127234 +206700,1282,dinosaurs,1331127220 +206700,1282,mythology,1331127227 +206700,1282,surreal,1331127230 +206700,1288,Christopher Guest,1331125382 +206700,1288,cult classic,1331125391 +206700,1288,mockumentary,1331125387 +206700,1288,rock and roll,1331125399 +206700,1288,satire,1331125394 +206700,1288,witty,1331125396 +206700,1332,conspiracy,1412792215 +206700,1332,human sacrifice,1412792116 +206700,1332,magic,1412792242 +206700,1332,Martin Sheen,1412792077 +206700,1332,police,1412792095 +206700,1332,Voodoo,1412792062 +206700,1371,artificial intelligence,1427585816 +206700,1371,bizarre,1427585783 +206700,1371,costumes,1427585792 +206700,1587,Arnold Schwarzenegger,1397232825 +206700,1587,classic,1397232827 +206700,1587,cult,1397232979 +206700,1587,epic,1397232830 +206700,1587,Fantasy,1397232822 +206700,1587,monster,1397232943 +206700,1587,Oliver Stone,1397232873 +206700,1587,Oliver Stone screenplay,1397232882 +206700,1587,quotable,1397232899 +206700,1587,soundtrack,1397232919 +206700,1587,Special Effects,1397232964 +206700,1587,sword and sorcery,1397232821 +206700,1587,wizards,1397232818 +206700,1674,music,1427891113 +206700,1748,dark,1331127102 +206700,1748,dark fantasy,1331127100 +206700,1748,dystopia,1331127097 +206700,1748,film noir,1331127120 +206700,1748,sci-fi,1331127105 +206700,1748,surreal,1331127107 +206700,1784,Jack Nicholson,1331129377 +206700,1784,neurosis,1331129380 +206700,1784,psychology,1331129383 +206700,1950,Sidney Poitier,1331127553 +206700,2005,1980s,1437407074 +206700,2005,80s,1437407077 +206700,2005,adventure,1437407070 +206700,2005,Children,1437407087 +206700,2019,Akira Kurosawa,1331125988 +206700,2019,atmospheric,1331126007 +206700,2019,Criterion,1331126009 +206700,2019,historical,1331125999 +206700,2019,samurai,1331126002 +206700,2019,toshiro mifune,1331125994 +206700,2117,dystopia,1331128525 +206700,2117,fascism,1331128543 +206700,2117,John Hurt,1331128569 +206700,2117,sci-fi,1331128553 +206700,2124,black comedy,1331129019 +206700,2124,dysfunctional family,1331129071 +206700,2124,horror,1331129027 +206700,2124,quirky,1331129022 +206700,2124,supernatural,1331129015 +206700,2140,classic,1431704630 +206700,2140,dark fantasy,1431704643 +206700,2140,fantasy world,1431704651 +206700,2140,muppets,1431704634 +206700,2140,Puppets,1431704637 +206700,2140,wizards,1431704654 +206700,2148,absurd,1412790972 +206700,2148,haunted house,1412791023 +206700,2148,Special Effects,1412791119 +206700,2148,visual effects,1412791113 +206700,2149,absurd,1412791089 +206700,2149,aztec,1412791072 +206700,2149,cowboy,1412791084 +206700,2149,crystal skull,1412791078 +206700,2149,wacky,1412791158 +206700,2174,black comedy,1331129692 +206700,2174,comedy,1331129669 +206700,2174,cult film,1331129671 +206700,2174,horror,1331129680 +206700,2174,Michael Keaton,1331129678 +206700,2174,Tim Burton,1331129676 +206700,2193,Special Effects,1385092915 +206700,2208,Alfred Hitchcock,1434077333 +206700,2208,Charters and Caldicott,1434077877 +206700,2208,Comedy,1434077121 +206700,2208,Conspiracy,1434077848 +206700,2208,Farce,1434077123 +206700,2208,Gay Undertones,1434077895 +206700,2208,Mystery,1434077154 +206700,2208,Politics,1434077133 +206700,2208,Spy,1434077125 +206700,2208,train,1434077324 +206700,2231,Edward Norton,1452534060 +206700,2231,John Malkovich,1452534063 +206700,2231,John Turturro,1452534079 +206700,2231,Matt Damon,1452534057 +206700,2329,disturbing,1331126524 +206700,2329,Edward Norton,1331126513 +206700,2329,powerful ending,1331126521 +206700,2329,prison,1331126532 +206700,2413,alternate endings,1331126990 +206700,2413,quirky,1331126973 +206700,2413,Tim Curry,1331126968 +206700,2414,child actor,1412789541 +206700,2414,Egyptian Mythology,1412789505 +206700,2414,human sacrifice,1412789514 +206700,2414,visual effects,1412789326 +206700,2451,creepy,1402272226 +206700,2451,Demons,1402271995 +206700,2451,disturbing,1402272547 +206700,2451,Eye in Hand,1402272049 +206700,2451,Hell,1402272055 +206700,2451,Metal,1402271984 +206700,2451,practical FX,1402273373 +206700,2451,Special Effects,1402272016 +206700,2451,SUBURBAN DYSFUNCTION,1402272041 +206700,2451,suburbia,1402272033 +206700,2451,weird,1402272088 +206700,2464,campy,1430178255 +206700,2464,cult classic,1430178145 +206700,2464,Gene Simmons,1430178162 +206700,2464,ghost,1430178180 +206700,2464,heavy metal,1430178213 +206700,2464,high school,1430178159 +206700,2464,nerd,1430178206 +206700,2464,Ozzy Osbourne,1430178211 +206700,2464,revenge,1430178202 +206700,2464,rock n roll,1430178215 +206700,2464,SFX,1430178238 +206700,2464,Special Effects,1430178241 +206700,2464,teen,1430178173 +206700,2657,campy,1331128122 +206700,2657,cross dressing,1331128126 +206700,2657,cult classic,1331128120 +206700,2657,parody,1331128163 +206700,2657,Quirky,1331128129 +206700,2657,Tim Curry,1331128143 +206700,2692,alternate endings,1331194735 +206700,2728,Rome,1331125620 +206700,2728,Stanley Kubrick,1331125626 +206700,2728,sword and sandal,1331125798 +206700,2730,lavish,1331129494 +206700,2730,natural lighting,1331129526 +206700,2730,Stanley Kubrick,1331129489 +206700,2730,wry,1331129507 +206700,2770,comedy,1331126736 +206700,2770,Eddie Murphy,1331126719 +206700,2770,Hollywood,1331126768 +206700,2770,parody,1331126728 +206700,2770,Steve Martin,1331126721 +206700,2826,Beowulf,1331128354 +206700,2826,epic,1331128395 +206700,2826,fantasy,1331128340 +206700,2826,vikings,1331128332 +206700,2853,Slasher,1447019117 +206700,2858,bittersweet,1331129347 +206700,2858,black comedy,1331129350 +206700,2858,Kevin Spacey,1331129359 +206700,2858,satirical,1331129363 +206700,2900,George A. Romero,1414033366 +206700,2905,Akira Kurosawa,1331128202 +206700,2905,Criterion,1331128205 +206700,2905,humorous,1331128208 +206700,2905,samurai,1331128237 +206700,2905,toshiro mifune,1331128212 +206700,3030,Akira Kurosawa,1331125187 +206700,3030,samurai,1331125184 +206700,3030,Toshiro Mifune,1331125182 +206700,3033,breaking the fourth wall,1331125861 +206700,3033,comedy,1331125854 +206700,3033,Mel Brooks,1331125828 +206700,3033,parody,1331125839 +206700,3033,sci-fi,1331125831 +206700,3033,spoof,1331125833 +206700,3068,Paul Newman,1427585848 +206700,3070,campy,1331129087 +206700,3070,cult film,1331129084 +206700,3070,sci-fi,1303407160 +206700,3070,surreal,1331129100 +206700,3153,adventure,1331128753 +206700,3153,fantasy,1331128729 +206700,3153,imaginative,1331128745 +206700,3153,mythology,1331128768 +206700,3153,Ray Harryhausen,1331128643 +206700,3175,Alan Rickman,1331216987 +206700,3175,parody,1331216992 +206700,3175,satire,1331216981 +206700,3175,sci-fi,1331217006 +206700,3175,Sigourney Weaver,1331216979 +206700,3181,Alan Cumming,1433445685 +206700,3181,anachronistic,1433445687 +206700,3181,Anthony Hopkins,1433445670 +206700,3181,Costuming,1433445907 +206700,3181,Jessica Lange,1433446033 +206700,3181,Julie Taymor,1433445676 +206700,3181,Shakespeare,1433445665 +206700,3181,visually appealing,1433445672 +206700,3660,absurd,1412965906 +206700,3660,pacing,1412965929 +206700,3660,psychic,1412965995 +206700,3660,so bad it's almost good,1412965946 +206700,3703,action,1331128070 +206700,3703,car chase,1331128062 +206700,3703,dystopia,1331128047 +206700,3703,Post apocalyptic,1331128054 +206700,3727,vampires,1239579814 +206700,3875,Charles Gray,1384571325 +206700,3875,Christopher Lee,1384571313 +206700,3875,devil,1384571374 +206700,3875,Hammer Film Productions,1384571341 +206700,3875,occult,1384571360 +206700,3875,Satanic Cult,1384571366 +206700,3875,satanism,1384571353 +206700,3961,campy,1402272130 +206700,3961,little people,1402272500 +206700,3961,occult,1402272159 +206700,3961,over the top,1402272150 +206700,3961,ridiculous,1402272143 +206700,3962,campy,1403993715 +206700,3996,Chow Yun Fat,1331127048 +206700,3996,Kung Fu,1331127016 +206700,3996,martial arts,1331127020 +206700,3996,Michelle Yeoh,1331127061 +206700,3996,soundtrack,1331127037 +206700,4195,campy,1331128887 +206700,4195,cult classic,1331128867 +206700,4195,horror,1331128874 +206700,4195,over the top,1331128895 +206700,4195,revenge,1331128932 +206700,4195,Vincent Price,1331128854 +206700,4275,magic,1397233107 +206700,4275,monster,1397233096 +206700,4275,Special Effects,1397233101 +206700,4370,artificial intelligence,1331128803 +206700,4370,Bittersweet,1331128809 +206700,4370,dystopia,1331128816 +206700,4370,emotional,1331128819 +206700,4370,sci-fi,1331128824 +206700,4467,fantasy,1331126248 +206700,4467,imagination,1331126253 +206700,4467,metafiction,1331126266 +206700,4467,Terry Gilliam,1331126256 +206700,4541,Bill Pullman,1412792309 +206700,4541,Voodoo,1412792290 +206700,4541,Wes Craven,1412792297 +206700,4878,philosophy,1331272507 +206700,4878,psychology,1331272514 +206700,4878,sci-fi,1331272524 +206700,4878,twist ending,1331272516 +206700,4973,comedy,1331129317 +206700,4973,quirky,1331129319 +206700,4973,surreal,1331129321 +206700,4973,whimsical,1331129324 +206700,4979,black comedy,1331128177 +206700,4979,dysfunctional family,1331128191 +206700,4979,new york,1331128186 +206700,4979,Wes Anderson,1331128180 +206700,4979,witty,1331128182 +206700,4993,adventure,1331127668 +206700,4993,fantasy,1331127651 +206700,4993,magic,1331127662 +206700,4993,New Zealand,1331127697 +206700,4993,soundtrack,1331127687 +206700,4993,wizards,1331127665 +206700,5008,Charles Laughton,1419279678 +206700,5008,courtroom drama,1419279700 +206700,5008,Marlene Dietrich,1419279693 +206700,5008,twist ending,1419279685 +206700,5110,comedy,1428855338 +206700,5110,cult classic,1428855505 +206700,5110,Jay Chandrasekhar,1428855342 +206700,5154,exploitation,1392345187 +206700,5154,gladiators,1392345211 +206700,5154,grindhouse,1392345198 +206700,5154,Pam Grier,1392345262 +206700,5154,Roger Corman,1392345173 +206700,5154,Rome,1392345384 +206700,5154,slavery,1392345353 +206700,5154,sword and sandal,1392345220 +206700,5154,sword fight,1392345237 +206700,5235,cyberpunk,1419208389 +206700,5235,Kim Cattrall,1419208391 +206700,5235,plot,1419208481 +206700,5235,Rutger Hauer,1419208357 +206700,5254,Guillermo del Toro,1331129941 +206700,5254,vampires,1331129951 +206700,5254,Wesley Snipes,1331129953 +206700,5291,Akira Kurosawa,1331128010 +206700,5291,Criterion,1331128019 +206700,5291,multiple storylines,1331128013 +206700,5291,Toshiro Mifune,1331128024 +206700,5342,psychological,1412791993 +206700,5342,twist ending,1412791950 +206700,5342,vampires,1412791907 +206700,5481,comedy,1331129410 +206700,5481,crude,1331129425 +206700,5481,parody,1331129413 +206700,5481,satire,1331129415 +206700,5481,spoof,1331129417 +206700,5588,Cannibalism,1443922206 +206700,5588,Desert,1443922213 +206700,5588,Mutants,1443922224 +206700,5588,Nuclear Test Site,1443922221 +206700,5704,Alien,1429484487 +206700,5704,Alien Invasion,1429484493 +206700,5704,B Movie,1429484578 +206700,5704,David Caruso,1429484483 +206700,5704,Jack Palance,1429484509 +206700,5704,Martin Landau,1429484513 +206700,5704,Rick Baker,1429484531 +206700,5704,SFX,1429484498 +206700,5704,Special Effects,1429484524 +206700,5704,Surprisingly Good,1429484520 +206700,5704,Vietnam Vet,1429484538 +206700,6137,Peter Cushing,1417058358 +206700,6137,Sean Connery,1417058341 +206700,6270,Akira Kurosawa,1331129196 +206700,6270,dreamlike,1331129199 +206700,6270,episodic,1331129202 +206700,6270,lyrical,1331129206 +206700,6270,meditative,1331129209 +206700,6270,multiple storylines,1331129213 +206700,6304,Video Game,1432881077 +206700,6748,Body Horror,1446223628 +206700,6748,Oliver Reed,1446223619 +206700,6748,Psychiatry,1446223625 +206700,7192,capoeira,1401415335 +206700,7192,drugs,1401415423 +206700,7192,high school,1401415357 +206700,7192,martial arts,1401415367 +206700,7347,split personality,1428855281 +206700,7347,twist ending,1428855290 +206700,7373,fantasy,1331129981 +206700,7373,Guillermo del Toro,1331129966 +206700,7373,Ron Perlman,1331129976 +206700,7373,steampunk,1331129972 +206700,7423,Pro Wrestling,1392754183 +206700,7423,sport:professional wrestling,1392754192 +206700,7423,wrestling,1392754199 +206700,7564,anthology,1385025274 +206700,7564,ghost story,1385025048 +206700,7564,historical,1385025083 +206700,7564,samurai,1385025108 +206700,7564,stylized,1385025037 +206700,7766,Akira Kurosawa,1331125310 +206700,7766,Criterion,1331125306 +206700,7766,Toshiro Mifune,1331125316 +206700,7986,giant robots,1420601019 +206700,7988,cyber penis,1331217319 +206700,7991,campy,1397232644 +206700,7991,David Carradine,1397232649 +206700,7991,humorous,1397232652 +206700,7991,nudity,1397232689 +206700,7991,quirky,1397232654 +206700,7991,sci-fi,1303407128 +206700,7991,scifi cult,1397232658 +206700,8770,Decapitation,1441243039 +206700,8770,Demon Summoning,1441243058 +206700,8770,evil computer,1441242980 +206700,8770,Geek,1441242996 +206700,8770,Gory,1441243018 +206700,8770,Military School,1441242976 +206700,8770,orphan,1441242960 +206700,8770,Revenge,1441242998 +206700,8770,Satanism,1441242963 +206700,8770,So Bad It's Good,1441243049 +206700,8770,Video Nasty,1441243021 +206700,8770,Zombie,1441242991 +206700,8795,action,1384379565 +206700,8795,adventure,1384379573 +206700,8795,costume drama,1384379489 +206700,8795,ensemble cast,1384379477 +206700,8795,epic,1384379594 +206700,8795,fighting,1384379603 +206700,8795,princess,1384379639 +206700,8854,demons,1430444646 +206700,8854,Halloween,1430444650 +206700,8854,mortuary,1430444657 +206700,8854,possession,1430444691 +206700,8854,seance,1430444678 +206700,8854,so bad its good,1430444669 +206700,8854,teens,1430444653 +206700,8854,zombies,1430444661 +206700,8910,dull,1402943773 +206700,8910,Mark Wahlberg,1402943889 +206700,8910,tries too hard,1402943797 +206700,8914,indie,1331127883 +206700,8914,intelligent,1331127886 +206700,8914,low budget,1331127866 +206700,8914,sci-fi,1331127849 +206700,8914,time travel,1331127843 +206700,8926,Christopher Lee,1331124951 +206700,8926,David Carradine,1331124944 +206700,8926,Kung Fu,1331124963 +206700,25964,Akira Kurosawa,1437600709 +206700,25964,courtroom,1437600715 +206700,25964,Toshiro Mifune,1437600712 +206700,26122,Criterion,1331127817 +206700,26122,disturbing,1331127814 +206700,26122,enigmatic,1331127821 +206700,26122,ominous,1331127810 +206700,26122,samurai,1331127808 +206700,26386,Hitchcock parody,1393037494 +206700,26386,Mel Brooks,1393037490 +206700,26432,bleak,1284705425 +206700,26432,dull,1284705264 +206700,26432,Paul Newman,1284705231 +206700,26432,post apocalypse,1284705359 +206700,26432,Post apocalyptic,1284705348 +206700,26432,post-apocalyptic,1284705248 +206700,26432,Robert Altman,1284705239 +206700,26432,sci-fi,1284705412 +206700,26432,slow,1284705294 +206700,26432,slow paced,1284705302 +206700,26513,campy,1331216944 +206700,26513,cheesy,1331216949 +206700,26540,film within a film,1444441840 +206700,26540,katana,1444441824 +206700,26540,motorcycle,1444441830 +206700,26540,punks,1444441832 +206700,26540,train station,1444441836 +206700,26540,zombies,1444441816 +206700,26603,alice cooper,1428070009 +206700,26603,bizarre,1428070032 +206700,26603,satan,1428070005 +206700,26603,time travel,1428070001 +206700,26814,B-movie,1401846828 +206700,26814,Jack Palance,1401846863 +206700,26814,robots,1401846873 +206700,26985,AI,1442397588 +206700,26985,Bizarre,1442397604 +206700,26985,Computer Virus,1442397587 +206700,26985,cyberpunk,1442397647 +206700,26985,Dubbed,1442397602 +206700,26985,Hacker,1442397565 +206700,26985,Video Game,1442397557 +206700,26985,Virtual Reality,1442397571 +206700,30783,Fashion House,1446222634 +206700,30783,Giallo,1446222623 +206700,30783,Killer,1446222651 +206700,30783,Mario Bava,1446222630 +206700,30783,Models,1446222636 +206700,30783,Mystery,1446222639 +206700,30783,Slasher,1446222620 +206700,30861,Charles Laughton,1386169121 +206700,30861,Period piece,1386169191 +206700,30861,pirates,1386169144 +206700,30861,swashbuckler,1386169152 +206700,30861,sword fight,1386169164 +206700,30861,treasure,1386169178 +206700,31133,Andy Serkis,1438719152 +206700,31133,Barbed Wire,1438719380 +206700,31133,Crucifixion,1438719377 +206700,31133,Curse,1438719382 +206700,31133,Horror,1438719126 +206700,31133,Jamie Bell,1438719139 +206700,31133,Nazis,1438719130 +206700,31133,POW,1438719272 +206700,31133,Soldiers,1438719165 +206700,31133,Trench Warfare,1438719124 +206700,31133,War,1438719292 +206700,31133,World War I,1438719113 +206700,31133,WWI,1438719115 +206700,31923,humorous,1331125343 +206700,31923,madcap,1331125340 +206700,31923,Oliver Reed,1331125346 +206700,31923,witty,1331125358 +206700,33237,disaster,1392335854 +206700,33237,heavy-handed,1392335901 +206700,33237,Special Effects,1392335840 +206700,33794,Christian Bale,1331129625 +206700,33794,comic book,1331129586 +206700,33794,dark,1331129608 +206700,33794,Michael Caine,1331129604 +206700,33794,vigilante,1331129616 +206700,33896,Takashi Miike,1392752569 +206700,34378,Colors,1441506097 +206700,34378,Horror,1441506109 +206700,34378,Magic,1441506065 +206700,34378,Pacing,1441506080 +206700,34378,Shapeshifter,1441506063 +206700,34378,South Africa,1441506114 +206700,34378,Visuals,1441506053 +206700,43838,Fantasy,1435983945 +206700,43838,Harry Potter,1435984105 +206700,43838,Magic,1435984111 +206700,43838,Phil Fondacaro,1435983986 +206700,43838,Shape Changing,1435984019 +206700,43838,so bad it's good,1435983881 +206700,43838,Sonny Bono,1435983955 +206700,43838,Transformation,1435984016 +206700,43838,Witch,1435984003 +206700,43838,Wizard,1435984036 +206700,44238,Clint Howard,1434820589 +206700,44238,Horror,1434820552 +206700,44238,Houdini,1434820623 +206700,44238,Leprechaun,1434820563 +206700,44238,Michael McDonald,1434820544 +206700,44238,Series,1434820556 +206700,44238,Warwick Davis,1434820579 +206700,44241,Better Than The First One,1435107062 +206700,44241,Bizarre,1435107056 +206700,44241,Campy,1435107060 +206700,44241,Casino,1435107031 +206700,44241,Las Vegas,1435107029 +206700,44241,Leprechaun,1435107025 +206700,44241,Limericks,1435107041 +206700,44241,Magician,1435107039 +206700,44241,Mobsters,1435107035 +206700,44241,So Bad It's Good,1435107058 +206700,44241,Warwick Davis,1435107049 +206700,44243,Aliens,1435194906 +206700,44243,Bizarre,1435194892 +206700,44243,Campy,1435194895 +206700,44243,Leprechaun,1435194909 +206700,44243,Ridiculous,1435194920 +206700,44243,So Bad It's Good,1435194901 +206700,44243,Space Marines,1435194903 +206700,44243,Warwick Davis,1435194914 +206700,44245,Campy,1435426148 +206700,44245,Crime,1435426186 +206700,44245,Cross-Dressing,1435426190 +206700,44245,Gangsters,1435426134 +206700,44245,Ice-T,1435426097 +206700,44245,Leprechaun,1435426094 +206700,44245,Rap,1435426138 +206700,44245,Warwick Davis,1435426102 +206700,44761,clever,1331272224 +206700,44761,film noir,1331272222 +206700,44856,Oliver Reed,1267805559 +206700,47997,dystopia,1240205235 +206700,48394,Guillermo del Toro,1331129783 +206700,48394,violence,1331129797 +206700,51569,acting,1385630583 +206700,51569,nathan fillion,1385630531 +206700,51569,satanism,1385630643 +206700,51569,sequel,1385630547 +206700,51569,sequel better than original,1385630523 +206700,51891,Assassins,1442563278 +206700,51891,Ninjas,1442563248 +206700,51891,Sword Fighting,1442563254 +206700,52831,Police,1443663675 +206700,52831,Prison,1443663706 +206700,52831,Psycho,1443663678 +206700,52831,Revenge,1443663684 +206700,52831,Robert Z'Dar,1443663699 +206700,52831,Slasher,1443663681 +206700,52831,Stunts,1443663671 +206700,54686,female warriors,1418938285 +206700,54686,wasted cast,1418938281 +206700,54785,Rob Zombie,1352760023 +206700,55276,disillusionment,1331127748 +206700,55276,George Clooney,1331127753 +206700,58293,prehistoric fantasy,1412788047 +206700,61132,disability,1331125275 +206700,61132,Robert Downey Jr.,1331125232 +206700,61132,satire,1331125256 +206700,61132,Tom Cruise,1331125239 +206700,70032,corporate America,1249001384 +206700,70032,dark comedy,1249001384 +206700,70032,dystopia,1249001384 +206700,70032,off-beat comedy,1249001384 +206700,70032,quirky,1249001384 +206700,70032,satire,1249001384 +206700,70032,workplace,1249001384 +206700,70032,Zach Galifinakis,1249001384 +206700,70946,Bizarre,1435984139 +206700,70946,campy,1435984131 +206700,70946,cult film,1435984147 +206700,70946,Funny as hell,1435984134 +206700,70946,Inexplicable,1435984142 +206700,70946,Oh My Goood!,1435984128 +206700,70946,Popcorn sex,1435984152 +206700,70946,so bad it's good,1435984161 +206700,70946,Stonehenge,1435984177 +206700,70946,Witch,1435984174 +206700,71057,animation style,1416161340 +206700,71057,dark fantasy,1416161317 +206700,71057,ending,1416161366 +206700,71057,man versus machine,1416161323 +206700,71057,predictable,1416161333 +206700,71057,visually appealing,1416161313 +206700,72777,Tobe Hooper,1412788170 +206700,73268,goofy,1385094250 +206700,77201,beautiful scenery,1419454243 +206700,77201,Mads Mikkelsen,1419454247 +206700,77201,minimal dialogue,1419454262 +206700,77540,action,1385092687 +206700,77540,demons,1385092586 +206700,77540,fantasy,1385092842 +206700,77540,father-son relationship,1385092759 +206700,77540,fight scenes,1385092696 +206700,77540,James Purefoy,1385092742 +206700,77540,magic,1385092579 +206700,77540,plague,1385092604 +206700,77540,religion,1385092809 +206700,77540,sword and sorcery,1385092864 +206700,77540,sword fight,1385092704 +206700,77540,wizards,1385092780 +206700,77795,editing,1418267710 +206700,77795,plot holes,1418267719 +206700,77795,set design,1418267737 +206700,77795,special effects,1418267747 +206700,82633,ghost story,1416162131 +206700,82633,period piece,1416162133 +206700,82633,samurai,1416162135 +206700,82633,vampire,1416162137 +206700,84395,Anthony Hopkins,1452283173 +206700,84395,Demons,1452283189 +206700,84395,exorcism,1452283208 +206700,84395,Possession,1452283193 +206700,84395,Psychological,1452283200 +206700,84799,campy,1426447972 +206700,86320,Magic realism,1394477695 +206700,86320,tedious,1394477617 +206700,88194,bullying,1412789651 +206700,88194,pacing,1412789797 +206700,88194,Time paradox,1412789736 +206700,88194,visual effects,1412789778 +206700,89774,MMA,1392755173 +206700,89774,Nick Nolte,1392755153 +206700,89774,Tom Hardy,1392755144 +206700,90154,clever,1412791795 +206700,90154,Creepy,1412791808 +206700,90154,Slow,1412791801 +206700,90154,Time paradox,1412791790 +206700,90154,time travel,1412791785 +206700,90598,cult film,1319700711 +206700,90598,film noir,1319700690 +206700,90598,mutants,1319700676 +206700,90598,nuclear bomb,1319700731 +206700,90598,nuclear war,1319700723 +206700,90598,Post apocalyptic,1319700581 +206700,92420,found footage,1440807270 +206700,92420,Superhero,1440807295 +206700,92694,Apocalypse,1433901111 +206700,92694,Apocalyptic,1433901114 +206700,92694,Eva Green,1433901126 +206700,92696,Demons,1444143092 +206700,92696,Pacing,1444143080 +206700,92696,Plot Twist,1444143061 +206700,92696,predictable,1444143068 +206700,92696,Priests,1444143102 +206700,93475,cinematography,1414033308 +206700,93475,twist ending,1414033296 +206700,94480,mythology,1401847335 +206700,94480,prequel,1401847386 +206700,94480,sword and sandal,1401847321 +206700,94803,curse,1352759214 +206700,94803,demons,1352759186 +206700,94803,drugs,1352759284 +206700,94803,Edward Furlong,1352759174 +206700,94803,halloween,1352759270 +206700,94803,haunted house,1352759208 +206700,94803,lesbian,1352759192 +206700,94803,Shannon Elizabeth,1352759162 +206700,96588,dialogue,1431830057 +206700,96588,Rebel Wilson,1431830026 +206700,96629,blood,1397232784 +206700,96629,campy,1397232519 +206700,96629,cavemen,1397232805 +206700,96629,fantasy,1397232758 +206700,96629,magic,1397232556 +206700,96629,monster,1397232540 +206700,96629,over the top,1397232601 +206700,96629,ridiculous,1397232526 +206700,96629,Roger Corman,1397233197 +206700,96629,slavery,1397232705 +206700,96629,sword and sorcery,1397232763 +206700,96629,sword fight,1397232545 +206700,96629,witch,1397232561 +206700,96629,wizards,1397232532 +206700,96737,based on a comic,1432056973 +206700,96737,cinematography,1432056927 +206700,96737,Domnhall Gleeson,1432056909 +206700,96737,Dystopia,1432056919 +206700,96737,gore,1432056964 +206700,96737,Karl Urban,1432056913 +206700,96737,Lena Headey,1432056954 +206700,96737,post-apocalyptic,1432056915 +206700,96737,Slow Motion,1432056925 +206700,96737,stylized,1432056961 +206700,96737,True to the Comic,1432057008 +206700,96737,violence,1432056969 +206700,96857,twists,1414032974 +206700,98114,Greek mythology,1352758100 +206700,98114,James Earl Jones,1352758017 +206700,98114,nuns,1352758107 +206700,98114,Othello,1352758070 +206700,98114,scuba diving,1352758081 +206700,98114,virgin sacrifice,1352758177 +206700,98116,Billy Zane,1352758673 +206700,98116,funny,1383705725 +206700,98116,kung fu,1352758717 +206700,98116,overacting,1352758690 +206700,98116,Ron Perlman,1352758701 +206700,98120,Oleg Vidov,1352759889 +206700,98361,bleak,1401847040 +206700,98361,cinematography,1401847008 +206700,98975,Body Horror,1432267542 +206700,98975,Caleb Landry Jones,1432267612 +206700,98975,celebrity,1432267572 +206700,98975,near future,1432267584 +206700,98975,neo noir,1432267565 +206700,98975,noir,1432267549 +206700,99739,Roger Corman,1357896741 +206700,102390,Christopher Lambert,1368157925 +206700,102390,Pam Grier,1368157935 +206700,102390,prison,1368157951 +206700,102390,prison escape,1368157962 +206700,102390,space,1368157943 +206700,102544,sport:professional wrestling,1369025433 +206700,102899,Donald Pleasence,1412788272 +206700,102899,dwarf,1412788262 +206700,102899,Joan Collins,1412788298 +206700,102903,entertaining,1438205053 +206700,102903,overcomplicated,1438205004 +206700,102903,predictable,1438205037 +206700,102903,surprise ending,1438205046 +206700,102991,atmospheric,1412791497 +206700,102991,cinematography,1412791322 +206700,102991,dreamlike,1412791568 +206700,102991,Giallo,1412791407 +206700,102991,insanity,1412791376 +206700,102991,no ending,1412791450 +206700,102991,psychological,1412791367 +206700,102991,subtle,1412791666 +206700,102991,surreal,1412791553 +206700,102991,Toby Jones,1412791427 +206700,103150,pagan cult,1418938192 +206700,103150,scenery,1418938202 +206700,103150,sword fights,1418938151 +206700,103150,vikings,1418938117 +206700,103621,mindfuck,1414033206 +206700,103621,surreal,1414033225 +206700,104552,mad scientist,1413254121 +206700,104552,psychic powers,1413254104 +206700,104552,psychological,1413254097 +206700,104552,twist ending,1413254143 +206700,104841,beautiful,1416170108 +206700,104841,sandra bullock,1416170097 +206700,104841,zero gravity,1416170102 +206700,106109,Byung-hun Lee,1383705073 +206700,106109,costume drama,1383705121 +206700,106109,costumes,1383705128 +206700,106109,dramatic,1383705087 +206700,106109,historical,1383705112 +206700,106109,history,1383705105 +206700,106109,humorous,1383705063 +206700,106109,Korean,1383705188 +206700,106109,switching places,1383705173 +206700,106111,Marc Maron,1383705962 +206700,106111,sarcasm,1383705974 +206700,106111,stand-up comedy,1383705968 +206700,106295,black and white,1384379205 +206700,106295,Christopher Lee,1384379149 +206700,106295,Donald Sutherland,1384379159 +206700,106295,witch,1384379225 +206700,106297,classic,1384380150 +206700,106297,dragons,1384380189 +206700,106297,fantasy,1384380143 +206700,106297,giant monster,1384380225 +206700,106297,magic,1384380209 +206700,106297,mythology,1384380160 +206700,106297,original is better,1384380836 +206700,106297,Russian,1384380258 +206700,106297,Special Effects,1384380169 +206700,106297,trilogy,1384380495 +206700,106297,war,1384380433 +206700,106300,classic,1384380641 +206700,106300,fantasy,1384380645 +206700,106300,magic,1384380761 +206700,106300,MST3K,1384380741 +206700,106300,mythology,1384380664 +206700,106300,original is better,1384380804 +206700,106300,Russian,1384380657 +206700,106300,special effects,1384380650 +206700,106300,trilogy,1384380670 +206700,106300,witch,1384380753 +206700,106475,Australian,1385024554 +206700,106475,crazy,1385024922 +206700,106475,creepy,1385024655 +206700,106475,disturbing,1385024662 +206700,106475,sea,1385024822 +206700,106475,surfing,1385024593 +206700,106475,suspense,1385024842 +206700,106475,suspenseful,1385024781 +206700,106491,fantasy,1412787988 +206700,106491,Samurai,1412787991 +206700,106491,visually appealing,1412787995 +206700,106498,classic,1385093553 +206700,106498,fantasy,1385093562 +206700,106498,magic,1385093592 +206700,106498,MST3K,1385093609 +206700,106498,mythology,1385093603 +206700,106498,original is better,1385093623 +206700,106498,pirates,1385093581 +206700,106498,russian,1385093559 +206700,106498,Special Effects,1385093573 +206700,106696,characters,1397350929 +206700,106696,cliche,1397350951 +206700,106696,cliche characters,1397350958 +206700,106696,music,1397350709 +206700,106696,themes,1397350822 +206700,106696,writing,1397350705 +206700,108569,made for TV,1390874257 +206700,108569,zombies,1390874250 +206700,109151,animals,1392424656 +206700,109151,lions,1392424623 +206700,109151,tigers,1392424631 +206700,109153,aliens,1392425152 +206700,109153,behind-the-scenes,1392425134 +206700,109153,dinosaurs,1392425159 +206700,109153,effects,1392425101 +206700,109153,FILMMAKING,1392425123 +206700,109153,monster,1392425143 +206700,109153,Sinbad,1392425181 +206700,109153,Special Effects,1392425107 +206700,109187,rats,1433399512 +206700,109187,Terry Gilliam,1433399518 +206700,109282,Pro Wrestling,1392753429 +206700,109282,sport:professional wrestling,1392754143 +206700,109282,wrestling,1392753420 +206700,109368,aliens,1393036461 +206700,109368,behind-the-scenes,1393036451 +206700,109368,effects,1393036409 +206700,109368,gore,1393036484 +206700,109368,makeup effects,1393036434 +206700,109368,monster,1393036420 +206700,109368,Special Effects,1393036415 +206700,109368,zombies,1393036439 +206700,109487,bad dialogue,1436615463 +206700,109487,predictable,1436615504 +206700,109487,sentimental,1436615470 +206700,109487,wasted potential,1436615442 +206700,109607,Cinematography,1440467897 +206700,109607,Creepy,1440467938 +206700,109607,Ireland,1440467893 +206700,109607,Psycho,1440467884 +206700,109607,Psychological,1440467942 +206700,109607,Slasher,1440467886 +206700,109677,female warriors,1394216880 +206700,109677,sword and sandal,1394216824 +206700,109677,sword fight,1394216888 +206700,109733,3D,1394409956 +206700,109733,3D effects,1394409969 +206700,109733,aliens,1394409896 +206700,109733,Disney,1394409874 +206700,109733,George Lucas,1394409884 +206700,109733,music,1394409979 +206700,109733,short,1394409852 +206700,109733,short film,1394409862 +206700,109733,space,1394409902 +206700,109771,independent film,1394480435 +206700,109771,post-apocalyptic,1394480389 +206700,109771,shaky camera,1394480464 +206700,109771,zombies,1394480379 +206700,109902,martial arts,1395035004 +206700,109902,MMA,1395034995 +206700,110044,poison,1395615726 +206700,110044,Vincent Price,1395615707 +206700,110127,artistic license,1439429134 +206700,110127,Dark,1439429142 +206700,110127,fantasy,1439429130 +206700,110127,not true to the book,1439429139 +206700,110225,demons,1396273599 +206700,110225,exorcism,1396273609 +206700,110225,made for TV,1396273512 +206700,110225,succubus,1396273540 +206700,110407,androids,1419553964 +206700,110407,artificial intelligence,1419553916 +206700,110407,cyborgs,1419553921 +206700,110407,lighting,1419553843 +206700,110407,music,1419553824 +206700,110407,pace,1419553975 +206700,110407,psychological,1419553834 +206700,110447,quirky,1397236252 +206700,110447,strange,1397236282 +206700,110447,touching,1397236268 +206700,110447,ventriloquist,1397236289 +206700,110669,Homosexuality,1436604979 +206700,110669,James Randi,1436604973 +206700,110669,Johnny Carson,1436604991 +206700,110669,Magic,1436604997 +206700,110669,Magicians,1436605004 +206700,110669,Psychic,1436605015 +206700,110669,Skepticism,1436604975 +206700,110669,Uri Gellar,1436604987 +206700,111362,convoluted,1431829564 +206700,111362,dialogue,1431829550 +206700,111362,Jennifer Lawrence,1431829571 +206700,111362,script,1431829556 +206700,111745,surreal,1401505618 +206700,111745,twist ending,1401505592 +206700,112003,bad acting,1402273177 +206700,112003,bad script,1402273186 +206700,112003,boring,1402273260 +206700,112003,plot holes,1402273163 +206700,112003,vampires,1402273195 +206700,112108,Conspiracy,1444143257 +206700,112108,Mental Disorders,1444143229 +206700,112108,Murder Mystery,1444143233 +206700,112108,Suicide,1444143260 +206700,112108,Ventilation Shaft,1444143241 +206700,112229,dull,1402943665 +206700,112229,easily confused with other movie(s) (title),1402943646 +206700,112229,jumpscares,1402943679 +206700,112229,slow,1402943657 +206700,112515,atmospheric,1432872046 +206700,112515,psychological,1432872048 +206700,112868,aliens,1429574924 +206700,112868,cinematography,1429574902 +206700,112868,convoluted,1429574908 +206700,112868,cybernetics,1429574966 +206700,112868,hackers,1429574928 +206700,112868,Lawrence Fishburne,1429574959 +206700,112868,nerds,1429574976 +206700,112868,robots,1429574980 +206700,112868,sfx,1429574921 +206700,112868,twist ending,1429574905 +206700,113022,abduction,1430610660 +206700,113022,abortion,1430610664 +206700,113022,aliens,1430610344 +206700,113022,bizarre,1430610347 +206700,113022,conspiracy,1430610093 +206700,113022,cult,1430610076 +206700,113022,cult classic,1430610830 +206700,113022,devil child,1430610351 +206700,113022,disco orchestra,1430610396 +206700,113022,evil birds,1430610089 +206700,113022,Giallo,1430610244 +206700,113022,hall of mirrors,1430610639 +206700,113022,inexplicable,1430610345 +206700,113022,Italian,1430610107 +206700,113022,Lance Henriksen,1430610338 +206700,113022,psychic powers,1430610341 +206700,113022,Satan,1430610826 +206700,113022,sfx,1430610401 +206700,113022,special effects,1430610834 +206700,113022,surgery,1430610667 +206700,113022,telekenetic,1430610540 +206700,113022,video games,1430610646 +206700,113022,wheelchair,1430610557 +206700,113105,Detective,1440900936 +206700,113105,Electrocution,1440900930 +206700,113105,Inheritance,1440900943 +206700,113105,Murder,1440900914 +206700,113105,Mystery,1440900911 +206700,113105,Secret Passage,1440900923 +206700,113188,bleak,1420702051 +206700,113188,gripping,1420702055 +206700,113188,Guy Pearce,1420702041 +206700,113188,post-apocalyptic,1420702046 +206700,113188,Robert Pattinson,1420702044 +206700,113188,scenery,1420702057 +206700,113188,tense,1420702059 +206700,113252,Creepy Neighbor,1432872150 +206700,113252,Criminal,1432872131 +206700,113252,Funny,1432872101 +206700,113252,horror comedy,1432872108 +206700,113252,House Arrest,1432872135 +206700,113252,New Zealand,1432872106 +206700,113345,action,1435198798 +206700,113345,Dull,1435198776 +206700,113345,Space Opera,1435198767 +206700,113640,Creepy,1440468073 +206700,113640,Haunting,1440468046 +206700,113640,Psychological,1440468071 +206700,113800,detective,1412789264 +206700,113800,funny,1412789200 +206700,113800,Period piece,1412789216 +206700,113800,zombies,1412789251 +206700,114834,acting,1412788777 +206700,114834,B-movie,1412788794 +206700,114834,cheesy,1412788690 +206700,114834,decapitation,1412788966 +206700,114834,flashbacks,1412788768 +206700,114834,ghost story,1412788852 +206700,114834,nonsensical,1412789070 +206700,114834,not funny,1412789012 +206700,114834,nudity,1412788681 +206700,114834,ridiculous,1412789054 +206700,114834,so bad it's good,1412788818 +206700,114834,worst sex scene,1427585937 +206700,114834,zombies,1412788738 +206700,114836,characters,1412790196 +206700,114836,curse,1412790300 +206700,114836,ghosts,1412790155 +206700,114836,journalism,1412790186 +206700,114836,magic,1412790272 +206700,114836,music,1412790180 +206700,114836,pacing,1412790346 +206700,114836,quirky,1412790225 +206700,114836,Special Effects,1412790340 +206700,114836,surprisingly good,1412790166 +206700,114836,trains,1412790288 +206700,114836,visual effects,1412790334 +206700,114838,asylum,1412790859 +206700,114838,mall,1412790751 +206700,114838,nudity,1412790721 +206700,114838,prank,1412790780 +206700,114838,slasher,1412790838 +206700,114838,sorority,1412790701 +206700,114838,twist ending,1412790632 +206700,114886,EXPERIMENTS GONE AWRY,1412964667 +206700,114886,ghosts,1412964547 +206700,114886,psychic powers,1412964560 +206700,114888,Brion James,1412965114 +206700,114888,electric chair,1412965178 +206700,114888,execution,1412965217 +206700,114888,ghosts,1412965187 +206700,114888,Lance Henriksen,1412965103 +206700,114888,police,1412965227 +206700,114888,sequel has nothing to do with original,1412965620 +206700,114888,serial killer,1412965197 +206700,114935,convoluted,1431462655 +206700,114935,predictable,1431462645 +206700,114935,twist ending,1431462667 +206700,115235,Acting,1442305636 +206700,115235,Cinematography,1442305637 +206700,115235,Farm,1442305636 +206700,115235,future,1442305534 +206700,115235,Murder,1442305636 +206700,115235,Post Apocalyptic,1442305636 +206700,115235,western,1442305534 +206700,115376,great cast,1414033819 +206700,115376,mad scientist,1414033810 +206700,115534,child ghost,1429582718 +206700,115534,ghosts,1429582669 +206700,115534,haunting,1429582721 +206700,115534,medium,1429582672 +206700,115534,possession,1429582666 +206700,115534,seance,1429582676 +206700,115534,sfx,1429582704 +206700,115534,special effects,1429582712 +206700,115534,suicide,1429582727 +206700,115534,teen,1429582682 +206700,115680,Bad acting,1441783769 +206700,115680,Dialogue,1441783785 +206700,115680,twist ending,1441783760 +206700,115713,artificial intelligence,1432056832 +206700,115713,Domhnall Gleeson,1432056875 +206700,115713,philosophical,1432056840 +206700,115713,robots,1432056838 +206700,115713,sci-fi,1432056835 +206700,117434,Body Horror,1438718961 +206700,117434,Cult,1438718590 +206700,117434,Hollywood,1438718579 +206700,117434,Horror,1438718588 +206700,117434,Independent,1438718883 +206700,117434,Infection,1438718614 +206700,117434,Kickstarter,1438718839 +206700,117434,Music,1438718562 +206700,117434,Slasher,1438718598 +206700,117434,Throwback,1438718575 +206700,118922,Cave,1443663776 +206700,118922,Found Footage,1443663794 +206700,118922,Moody,1443663752 +206700,118922,Nightmare,1443663784 +206700,118922,Outsider Art,1443663762 +206700,119424,religion,1419454199 +206700,119424,scenery,1419454189 +206700,119424,swordfight,1419454213 +206700,119424,vikings,1419454203 +206700,119424,violent,1419454166 +206700,120466,artificial intelligence,1435426241 +206700,120466,die antwoord,1435426250 +206700,120466,entertaining,1435426253 +206700,120466,Funny,1435426316 +206700,120466,Hugh Jackman,1435426302 +206700,120466,Neill Blomkamp,1435426247 +206700,120466,robots,1435426238 +206700,120466,sci-fi,1435426258 +206700,120466,Sharlto Copley,1435426255 +206700,120466,Siguorney Weaver,1435426300 +206700,120466,South Africa,1435426243 +206700,121231,Creepy,1433816216 +206700,121231,Detroit,1433816229 +206700,121231,Doppelganger,1433816245 +206700,121231,Pacing,1433816210 +206700,121231,Psychological,1433816279 +206700,121231,Retro,1433816225 +206700,121231,score,1433816219 +206700,121231,Shapeshifter,1433816250 +206700,121231,Suburban,1433816321 +206700,121231,Supernatural,1433816242 +206700,121231,Urban Decay,1433816236 +206700,121727,47 Ronin,1453010840 +206700,121727,Samurai,1453010834 +206700,121727,Sword Fight,1453010852 +206700,122882,charlize theron,1436434451 +206700,122882,mad max,1436434445 +206700,122882,special effects,1436434441 +206700,122882,Tom Hardy,1436434432 +206700,123196,Jamaica,1433296020 +206700,123196,Jennifer Grey,1433296012 +206700,123196,Tales From the Crypt,1433296026 +206700,123196,Tim Curry,1433296007 +206700,123196,Voodoo,1433296031 +206700,123196,Zombies,1433296018 +206700,124901,Found Footage,1443905816 +206700,124901,Ghosts,1443905797 +206700,124901,Haunting,1443905805 +206700,124901,Hulu,1443905808 +206700,124901,Low Budget,1443905848 +206700,124901,Mixed Race Cast,1443905823 +206700,124901,Ouija,1443905789 +206700,124901,Spirit Board,1443905794 +206700,124901,Texas,1443905836 +206700,127188,Age,1437134005 +206700,127188,Asian Cast,1437133795 +206700,127188,Beauty,1437133775 +206700,127188,Family,1437133690 +206700,127188,Ken Jeong,1437133666 +206700,127188,Motherhood,1437134016 +206700,127188,Near Future,1437133891 +206700,127188,Pacing,1437133870 +206700,127188,Science Fiction,1437133672 +206700,127188,Single Parent,1437133688 +206700,127188,Youth,1437133755 +206700,130044,Extras,1433107797 +206700,130044,Special Effects,1433107806 +206700,130071,island,1426448657 +206700,130071,mermaid,1426448536 +206700,130071,prison,1426448659 +206700,130071,siren,1426448539 +206700,130071,vacation,1426448533 +206700,130071,well,1426448666 +206700,130922,House Porn,1433816100 +206700,130922,Music Industry,1433816037 +206700,130922,Pete Walker,1433816084 +206700,130922,Plot,1433816061 +206700,130922,Pop Star,1433816044 +206700,130922,Revenge,1433816123 +206700,130922,Slasher,1433816050 +206700,130922,Slow,1433816063 +206700,130922,Transvestite,1433816031 +206700,130922,Twist,1433816070 +206700,131015,Cary Elwes,1427585540 +206700,131015,Demons,1427585566 +206700,131015,Exorcism,1427585551 +206700,131015,Ghosts,1427585546 +206700,131015,Monks,1427585560 +206700,131015,nurse,1427585621 +206700,131015,psychic,1427585613 +206700,131015,slow,1427585575 +206700,131015,special effects,1427585690 +206700,131015,surfing,1427585592 +206700,131015,Thailand,1427585543 +206700,131015,William Hurt,1427585696 +206700,131478,Children,1441506291 +206700,131478,Effects,1441506274 +206700,131478,Family,1441506224 +206700,131478,Ghosts,1441506230 +206700,131478,Haunted House,1441506247 +206700,131478,Insanity,1441506235 +206700,131478,Madness,1441506232 +206700,131478,Occult,1441506238 +206700,131478,Olivia Williams,1441506256 +206700,131478,Secret Passages,1441506284 +206700,131478,Small Town,1441506263 +206700,133276,Beheading,1443220171 +206700,133276,Cannibalism,1443220174 +206700,133276,Curse,1443219999 +206700,133276,Fight Scenes,1443220139 +206700,133276,Foreign Language,1443220198 +206700,133276,Maori,1443220148 +206700,133276,New Zealand,1443220151 +206700,133276,Prehistoric,1443219983 +206700,133276,Revenge,1443220145 +206700,133276,Tattoos,1443219990 +206700,133276,Tribal,1443219987 +206700,133276,Warriors,1443220142 +206700,133377,Acting,1441503985 +206700,133377,Aliens,1441504292 +206700,133377,Atmospheric,1441504157 +206700,133377,Australian,1441504321 +206700,133377,Bloody,1441504063 +206700,133377,Costumes,1441503970 +206700,133377,Daniel MacPherson,1441504211 +206700,133377,Dark,1441504137 +206700,133377,Death,1441504046 +206700,133377,Horror,1441503941 +206700,133377,Infection,1441504005 +206700,133377,Insanity,1441504043 +206700,133377,Intense,1441504139 +206700,133377,Multiracial,1441504103 +206700,133377,Rescue Mission,1441503955 +206700,133377,Science Fiction,1441503939 +206700,133377,Sets,1441503972 +206700,133377,Space Marines,1441503974 +206700,133377,Teleportation,1441504090 +206700,133377,Twist Ending,1441504134 +206700,133377,Violent,1441504054 +206700,133404,crusades,1431463010 +206700,133404,fantasy,1431462994 +206700,133404,knights,1431464869 +206700,133404,Roger Christian,1431463006 +206700,133404,Scotland,1431464876 +206700,133404,short film,1431462991 +206700,133404,The Empire Strikes Back,1431463024 +206700,134794,Pro Wrestling,1433935418 +206700,134794,Sports,1433935427 +206700,134794,Wrestling,1433935421 +206700,135889,Makeup,1453775660 +206700,136602,found footage,1440901150 +206700,136602,Independent,1440901179 +206700,136602,Maniac,1440901162 +206700,136602,Psycho,1440901160 +206700,136602,Slasher,1440901154 +206700,136602,Stalker,1440901186 +206700,137825,Acting,1444606386 +206700,137825,Convoluted,1444606383 +206700,137825,Ghosts,1444606354 +206700,137825,Pacing,1444606384 +206700,137825,Twist Ending,1444606380 +206700,142264,Drug Dealers,1442294370 +206700,142264,Experiment Gone Wrong,1442294380 +206700,142264,Oil Rig,1442294399 +206700,142264,Secret Lab,1442294374 +206700,142264,Shapechanger,1442294406 +206700,142264,Shapeshifter,1442294428 +206700,142264,Shark,1442294390 +206700,142264,Shark Monster,1442294411 +206700,150694,AI,1452751702 +206700,150694,Android,1452751699 +206700,150694,Dialogue,1452751694 +206700,150694,Rainn Wilson,1452751713 +206724,6064,boxing drama,1187378201 +206724,30707,boxing drama,1187378339 +206726,215,love story,1376243872 +206726,215,romantic,1376243873 +206726,3915,coming-of-age,1376243499 +206726,3915,drama,1376243502 +206726,3915,feminist film,1376243496 +206726,3915,girl power,1376243498 +206726,8533,Based on Nicholas Sparks Novel,1376243440 +206726,8533,chick flick,1376243428 +206726,8533,Nudity (Topless),1376243437 +206726,8533,predictable,1376243449 +206726,8533,Rachel McAdams,1376243435 +206726,8533,Romance,1376243431 +206726,8533,Ryan Gosling,1376243433 +206726,8533,sentimental,1376243446 +206726,8638,great dialogue,1376243848 +206726,8638,philosophical,1376243857 +206726,8638,romance,1376243850 +206726,8638,romantic,1376243852 +206726,30803,magic realism,1376243417 +206726,30803,Romantic and sweet,1376243400 +206726,30803,STAR-CROSSED LOVERS,1376243402 +206726,30803,very little dialogue,1376243408 +206726,39183,bittersweet,1376243546 +206726,39183,emotional,1376243548 +206726,39183,Heath Ledger,1376243534 +206726,39183,Love story,1376243542 +206726,39183,sexuality,1376243540 +206726,71322,lesbian character,1376243518 +206726,71322,losing virginity,1376243523 +206726,71322,Marjut Maristo,1376243529 +206726,71322,religion,1376243526 +206726,80693,bittersweet,1376243477 +206726,80693,coming of age,1376243475 +206726,80693,dramedy,1376243468 +206726,80693,Lauren Graham,1376243481 +206726,83302,Eva Mendes,1376243319 +206726,83302,Guillaume Canet,1376243324 +206726,83302,Keira Knightley,1376243321 +206726,83302,Sam Worthington,1376243330 +206726,96821,based on a book,1376243371 +206726,96821,Emma Watson,1376243349 +206726,96821,Ezra Miller,1376243358 +206726,96821,high school,1376243380 +206726,96821,Suicide,1376243378 +206726,96821,touching,1376243383 +206726,100356,cancer,1376694676 +206726,100356,Dakota Fanning,1376694669 +206726,100356,Jeremy Irvine,1376694666 +206730,4638,adventure,1436921708 +206730,4638,dinosaurs,1436921699 +206730,6377,funny,1436921728 +206730,6377,talking animals,1436921726 +206730,6708,con artists,1436925310 +206730,6708,twist ending,1436925318 +206730,44199,Denzel Washington,1436921761 +206730,44199,intelligent thriller,1436921770 +206730,44199,twist ending,1436921750 +206757,1918,jet li,1233612451 +206757,2986,comic book,1233632636 +206757,3264,better than the show,1233632898 +206780,260,Saturn Award (Best Science Fiction Film),1433087451 +206780,260,sci-fi,1433087405 +206780,260,soundtrack,1433087431 +206840,153,Drew Barrymore,1361481611 +206840,153,Jim Carrey,1361481590 +206840,153,Nicole Kidman,1361481581 +206840,153,Tommy Lee Jones,1361481592 +206840,153,Val Kilmer,1361481600 +206847,4930,spies,1198791758 +206847,6808,World War II,1198791845 +206859,5903,empty,1394483732 +206859,5903,illogical,1394483741 +206859,5903,Sean Bean dies,1394483855 +206897,21,John Travolta,1225258794 +206897,231,comedy,1225258287 +206897,253,Brad Pitt,1225258702 +206897,527,Oscar (Best Picture),1225257885 +206897,589,dystopia,1225258372 +206897,608,Coen Brothers,1225258296 +206897,608,dark comedy,1225258297 +206897,1136,Monty Python,1225258552 +206897,1213,organized crime,1225258744 +206897,1265,surreal,1225258416 +206897,2174,cult film,1225258777 +206897,33794,superhero,1225257906 +206897,48385,mockumentary,1225258274 +206897,54286,twist ending,1225258305 +206897,56757,Depp and Burton,1225257699 +206897,56757,Tim Burton,1225257686 +206930,509,beautiful,1248570780 +206930,509,earthly,1248570784 +206930,509,passionate,1248570792 +206990,1020,Não conheco,1206717766 +206990,1438,Bom,1206717796 +206990,1907,good,1206717612 +206990,2369,Nao conheco,1206717809 +206990,2478,Imbecil,1206717757 +206990,2728,Classico,1206717979 +206990,3424,Muito Bom,1206717844 +206990,3438,Infantil,1206717985 +206990,3608,Engracado,1206717926 +206990,4874,Regular,1206717887 +206990,6565,Bom,1206718056 +206990,7458,Excelente,1206718014 +206990,35836,Engracado,1206717968 +206990,41566,Interessante,1206718023 +206990,49272,Bom,1206717952 +207007,260,never saw,1441923281 +207007,260,old,1441923265 +207015,27608,CGI,1182187238 +207015,27608,Egyptian Mythology,1182187377 +207015,27608,futuristic,1182187328 +207015,27608,gods,1182187347 +207015,27608,New York City,1182187386 +207015,27608,Nudity (Topless),1182187219 +207015,44191,fascism,1182187816 +207015,44191,graphic novel,1182187820 +207015,44191,Hugo Weaving,1182187813 +207015,44191,London,1182187825 +207015,44555,Deutsch,1182188061 +207015,44555,Deutschland,1182188065 +207015,44555,Germany,1182188053 +207015,44555,Stasi,1182188070 +207015,44555,suicide,1182188056 +207015,45210,9/11,1182187932 +207015,45210,terrorism,1182187948 +207015,46578,dysfunctional,1182187850 +207015,46578,family,1182187841 +207015,46578,road trip,1182187842 +207015,46578,steve carell,1182187854 +207015,48043,cerebral,1182187471 +207015,48043,Darren Aronofsky,1182187481 +207015,48043,fountain of youth,1182187473 +207015,48043,time travel,1182187476 +207015,48774,Clive Owen,1182187890 +207015,48774,dystopia,1182187885 +207015,48774,infertility,1182187878 +207015,51255,parody,1182186772 +207015,51255,Simon Pegg,1182186807 +207023,110,action,1427310737 +207023,110,drama,1427310737 +207023,110,medieval,1427310737 +207023,296,comedy,1420120211 +207023,296,crime,1420120211 +207023,296,mob,1420120211 +207023,318,antihero,1423314639 +207023,318,fantasy,1423314639 +207023,318,prison,1423314639 +207023,413,crap,1187334206 +207023,546,crap,1187334354 +207023,837,crap,1187334384 +207023,1298,decent,1187334263 +207023,1587,crap,1187334136 +207023,1589,pretty good,1187334345 +207023,1590,crap,1187334140 +207023,1779,decent,1187334310 +207023,2384,crap,1187334371 +207023,2505,pretty good,1187334496 +207023,2600,decent,1187334382 +207023,2872,crap,1187334148 +207023,2953,crap,1187334155 +207023,4015,crap,1187334438 +207023,4367,crap,1187334166 +207023,4448,decent,1187334447 +207023,5064,decent,1187334432 +207023,5225,must see,1187334477 +207023,5254,decent,1187334502 +207023,5444,crap,1187334515 +207023,6016,must see,1187334242 +207023,6157,crap,1187334508 +207023,6373,decent,1187334224 +207023,6870,pretty good,1187334177 +207023,6953,must see,1187334490 +207025,1656,teen,1139832128 +207036,296,parody,1436081051 +207036,1527,parody,1436080997 +207052,1924,ironic,1172176975 +207052,1924,so bad it's funny,1172176970 +207052,2414,Steven Spielberg,1172324844 +207052,3062,John Wayne,1172254568 +207052,6618,soccer,1173358947 +207052,6874,Extreme violence is good for growing youth,1172150995 +207052,6874,seen more than once,1172151005 +207052,6888,parody,1172178236 +207066,370,Comedy,1146841942 +207066,595,Disney,1146841965 +207066,5060,comedy classic,1146841926 +207084,3000,anime,1434373299 +207084,3000,Hayao Miyazaki,1434373304 +207084,3000,Japan,1434373315 +207084,3000,surreal,1434373313 +207084,65514,kung fu,1434372471 +207084,65514,martial arts,1434372467 +207084,130506,dark,1434372808 +207084,130506,fantasy,1434372808 +207084,130506,medieval,1434372808 +207109,8783,Atmospheric,1420521081 +207109,8783,suspense,1420521090 +207109,94466,dark,1420344012 +207109,94466,dystopia,1420344072 +207109,94466,technology,1420344022 +207109,102684,Bangkok,1418621014 +207109,102684,beautifully filmed,1418620987 +207109,102684,soundtrack,1418621003 +207158,260,space adventure,1440786688 +207158,260,trilogy,1440786707 +207175,51412,comes apart in last third,1189428130 +207175,55820,overrated,1210506933 +207176,260,sci-fi,1440176910 +207176,260,space action,1440176918 +207187,1827,documentary,1136774126 +207187,2064,documentary,1136774842 +207187,2700,Animation,1136774164 +207187,4306,animation,1136774209 +207187,4886,Animation,1136774215 +207187,5225,favorite,1136772217 +207187,5423,favorite,1136953344 +207187,5608,favorite,1136774138 +207187,5669,documentary,1136774128 +207187,7371,favorite,1136772119 +207187,8464,documentary,1136774144 +207187,8582,documentary,1136774198 +207187,8622,documentary,1136774858 +207187,9018,documentary,1136775371 +207187,27846,documentary,1136774183 +207187,27912,Documentary,1136774768 +207187,32291,favorite,1136791583 +207207,6016,brazil,1434847383 +207207,6016,cidade de deus,1434857869 +207207,6016,drugs,1434847386 +207207,6016,Fernando Meirelles,1434847425 +207207,6016,gangs,1434848059 +207207,6016,violence,1434847408 +207218,260,classic sci-fi,1439796084 +207218,260,space epic,1439796099 +207264,1080,black comedy,1433207531 +207264,1080,British,1433207522 +207264,1080,controversial,1433207537 +207264,1080,Monty Python,1433207519 +207264,1080,parody,1433207521 +207264,1080,quotable,1433207543 +207264,1080,religion,1433207541 +207264,1080,satire,1433207517 +207264,1080,Terry Gilliam,1433207528 +207264,1080,whimsical,1433207534 +207264,1089,cult film,1433201267 +207264,1089,dark comedy,1433201269 +207264,1089,great soundtrack,1433201281 +207264,1089,nonlinear,1433201260 +207264,1089,Quentin Tarantino,1433201257 +207264,1089,quirky,1433201306 +207264,1089,Steve Buscemi,1433201285 +207264,1089,stylish,1433201296 +207264,1089,stylized,1433201271 +207264,1089,violent,1433201262 +207264,1175,Black comedy,1438392925 +207264,1175,dark,1438392920 +207264,1175,dystopia,1438392933 +207264,1175,French,1438392936 +207264,1175,post-apocalyptic,1438392930 +207264,1175,quirky,1438392923 +207264,1209,atmospheric,1433201160 +207264,1209,ennio morricone,1433201186 +207264,1209,epic,1433201163 +207264,1209,Sergio Leone,1433201185 +207264,1209,spaghetti western,1433201155 +207264,1209,western,1433201174 +207264,27773,Chan-Wook Park,1433201252 +207264,27773,depressing,1433201210 +207264,27773,disturbing,1433201226 +207264,27773,incest,1433201230 +207264,27773,revenge,1433201224 +207264,27773,stylized,1433201215 +207264,27773,twist ending,1433201203 +207264,66934,musical,1433201316 +207264,87234,great soundtrack,1433200887 +207264,87234,stylistic,1433200895 +207264,94466,dark,1433207306 +207264,94466,dystopia,1433207303 +207264,94466,satire,1433207308 +207264,94466,social commentary,1433207310 +207264,94466,technology,1433207304 +207264,108979,anime,1433200644 +207264,108979,sci-fi,1433200648 +207264,109848,creepy,1433200933 +207264,109848,slow,1433200930 +207264,109848,visually appealing,1433200939 +207274,135,Good Comedy,1137298761 +207274,34319,thriller,1137298129 +207275,296,career criminal,1430689228 +207275,296,crime,1430689228 +207275,296,cult film,1430689228 +207275,296,quentin tarantino,1430689228 +207291,2762,ghosts,1334095398 +207291,2762,mindfuck,1334095386 +207291,2762,psychological,1334095380 +207291,2762,psychology,1334095384 +207291,2762,thriller,1334095378 +207291,2762,touching,1334095394 +207291,2762,twist ending,1334095372 +207291,3147,death penalty,1334012570 +207291,3147,heartwarming,1334012568 +207291,3147,male nudity,1334012573 +207291,3147,Tom Hanks,1334012565 +207291,3994,mindfuck,1334265665 +207291,3994,twist ending,1334265660 +207291,4022,adventure,1334012442 +207291,4022,island,1334012435 +207291,4022,love story,1334012431 +207291,4022,man vs. nature,1334012427 +207291,4022,philosophy,1334012421 +207291,4022,psychological,1334012417 +207291,4022,Robert Zemeckis,1334012414 +207291,4022,spiritual journey,1334012412 +207291,4022,stranded,1334012407 +207291,4022,SURVIVAL,1334012398 +207291,4022,Tom Hanks,1334012400 +207291,4022,unique,1334012404 +207291,4022,wilson,1334012410 +207291,33004,humor,1334266656 +207291,33004,whimsical,1334266652 +207291,33004,witty,1334266650 +207291,33004,Zooey Deschanel,1334266645 +207291,44397,cannibalism,1334014148 +207291,44397,mutation,1334014154 +207291,44397,torture porn,1334014142 +207291,56367,Ellen Page,1334095440 +207291,56367,humor,1334095445 +207291,56367,Michael Cera,1334095450 +207291,56367,pregnancy,1334095452 +207291,56367,witty,1334095448 +207291,63082,nonlinear,1334114792 +207291,72998,thought-provoking,1334012362 +207291,74458,insanity,1334012539 +207291,74458,plot twist,1334012530 +207291,74458,twist ending,1334012526 +207291,74458,twisted ending,1334012523 +207291,77427,bad acting,1334012706 +207291,77427,science,1334012715 +207291,77427,science project,1334012715 +207291,79132,alternate reality,1334012480 +207291,79132,Michael Caine,1334012462 +207291,79132,philosophy,1334012471 +207291,79132,sci-fi,1334012473 +207291,79132,thought-provoking,1334012468 +207291,79132,visually appealing,1334012466 +207304,39446,gory,1138212845 +207304,39446,vivid,1138212851 +207312,1208,top five,1137840557 +207315,260,awesome,1431703864 +207315,260,cult classic,1431703853 +207330,2517,author:Stephen King,1395851786 +207335,44,fight scenes,1368793277 +207335,44,ninja,1368793654 +207335,70,bloody,1368793453 +207335,112,fight scenes,1368793277 +207335,165,lone hero,1368793484 +207335,288,brutality,1368793071 +207335,288,gratuitous violence,1368793642 +207335,290,brutality,1368793071 +207335,290,violence,1368793812 +207335,353,dark hero,1368793156 +207335,353,vengeance,1368793197 +207335,527,amazing photography,1368793788 +207335,551,dark fantasy,1368793370 +207335,592,dark hero,1368793156 +207335,805,vengeance,1368793197 +207335,1129,lone hero,1368793484 +207335,1199,visual,1368793242 +207335,1213,gangster,1368793349 +207335,1264,stylish,1368793011 +207335,1466,gangster,1368793349 +207335,2019,wuxia,1368793691 +207335,2021,lynch,1368793834 +207335,2076,lynch,1368793834 +207335,2291,dark fantasy,1368793370 +207335,2313,lynch,1368793834 +207335,2966,lynch,1368793834 +207335,2985,violence,1368793812 +207335,3081,dark fantasy,1368793370 +207335,3265,hong kong,1368793738 +207335,3624,fight scenes,1368793277 +207335,3702,lone hero,1368793484 +207335,3972,hong kong,1368793738 +207335,3996,fight scenes,1368793277 +207335,4878,complicated,1368793716 +207335,6016,amazing photography,1368793788 +207335,6365,fight scenes,1368793277 +207335,6874,bloody,1368793453 +207335,6874,martial arts,1363617401 +207335,6874,nonlinear,1363617391 +207335,6874,revenge,1363617994 +207335,6874,Uma Thurman,1363617040 +207335,6874,vengeance,1368793197 +207335,6874,violent,1363617990 +207335,6874,visually appealing,1363617046 +207335,6874,wuxia,1368793691 +207335,7022,bloody,1368793453 +207335,7022,violence,1368793812 +207335,7361,complicated,1368793716 +207335,7438,martial arts,1363695484 +207335,7438,revenge,1363695479 +207335,7438,vengeance,1368793197 +207335,7438,violence,1363695506 +207335,7438,wuxia,1368793691 +207335,7482,hong kong,1368793738 +207335,8983,kung fu,1368793514 +207335,27773,violence,1368793812 +207335,32587,bloody,1368793453 +207335,32587,visual,1368793242 +207335,37729,visually appealing,1368793549 +207335,48304,brutality,1368793071 +207335,48394,dark fantasy,1368793370 +207335,60684,visually appealing,1368793549 +207335,96662,disability,1433695845 +207335,96662,documentary,1433695845 +207335,96662,punk rock,1433695845 +207349,1232,art,1263321235 +207349,1232,author:Arkadi Strugatsky,1263321230 +207349,1232,based on a book,1263321249 +207349,1232,downbeat,1263321227 +207349,1232,dystopia,1263321274 +207349,1356,Borg,1263340914 +207349,1356,Intense,1263340923 +207349,1356,Patrick Stewart,1263340912 +207349,1356,Star Trek,1263340916 +207349,1584,beautiful,1301163707 +207349,1584,idealism,1301163722 +207349,1584,Jodie Foster,1301163701 +207349,1584,sci-fi,1301163714 +207349,1584,strange ending,1301163738 +207349,1653,rebellion,1263322434 +207349,1653,Uma Thurman,1263322422 +207349,1682,dystopia,1295039639 +207349,1682,Jim Carrey,1295039644 +207349,1696,gay,1220999846 +207349,1748,atmospheric,1295277691 +207349,1748,dark fantasy,1295277687 +207349,1748,dreamlike,1295277685 +207349,1748,dystopia,1295277683 +207349,1748,mindfuck,1295277711 +207349,1748,surreal,1295277694 +207349,1952,homosexuality,1293903033 +207349,2009,slow,1295040089 +207349,2117,based on book,1263340197 +207349,2117,dystopia,1263340185 +207349,2232,flat characters,1263320640 +207349,2232,intense,1263320631 +207349,2232,survival horror,1263320626 +207349,2329,disturbing,1295277492 +207349,2329,Edward Norton,1295277479 +207349,2329,tense,1295277530 +207349,2600,alternate reality,1301163819 +207349,2600,Sci-Fi,1301163822 +207349,2600,surreal,1301163826 +207349,3994,atmospheric,1295295118 +207349,3994,Bruce Willis,1295295075 +207349,3994,M. Night Shyamalan,1295295079 +207349,3994,mindfuck,1295295082 +207349,3994,Samuel L. Jackson,1295295073 +207349,3996,beautifully filmed,1295277429 +207349,3996,dreamlike,1295277414 +207349,3996,Kung Fu,1295277447 +207349,3996,martial arts,1295277446 +207349,3996,stylized,1295277452 +207349,4226,complicated,1295277587 +207349,4226,dreamlike,1295277595 +207349,4226,nonlinear,1295277583 +207349,4226,stylized,1295277579 +207349,4226,tense,1295277609 +207349,4226,twist ending,1295277600 +207349,4902,ghosts,1295277980 +207349,4902,Guillermo del Toro,1295277947 +207349,4902,scary,1295278008 +207349,4902,Spanish Civil War,1295277945 +207349,5072,anime,1263320567 +207349,5072,robots,1263320565 +207349,6502,horror,1263837457 +207349,6502,man is man's worst enemy,1263322914 +207349,6502,post-apocalyptic,1263837440 +207349,6502,Zombie,1263322955 +207349,6645,classic,1263340981 +207349,6645,dystopia,1263340984 +207349,6645,great cinematography,1263340999 +207349,6678,dystopia,1295040012 +207349,6790,alternate reality,1263340379 +207349,6790,great cinematography,1263340392 +207349,6790,virtual reality,1263340387 +207349,6902,funny,1264204278 +207349,6902,lovely,1264204222 +207349,6902,nice and kind,1264204265 +207349,6902,road trip,1264204328 +207349,7003,artistic,1263322172 +207349,7254,alternate reality,1263685755 +207349,7254,superficial,1263685805 +207349,7438,atmospheric,1295277642 +207349,7438,kung fu,1295277628 +207349,7438,martial arts,1295277626 +207349,7438,revenge,1295277635 +207349,7438,stylized,1295277667 +207349,7438,Uma Thurman,1295277657 +207349,7438,violence,1295277637 +207349,7842,made for TV,1263320595 +207349,8914,complicated plot,1263836589 +207349,8914,difficult english,1263836642 +207349,8914,time travel,1263836617 +207349,27266,atmospheric,1263322852 +207349,27266,enigmatic,1263322855 +207349,27266,stylized,1263322860 +207349,27608,CGI,1295280299 +207349,27608,cyberpunk,1295280482 +207349,27608,dystopia,1295280263 +207349,27608,Egyptian Mythology,1295280271 +207349,27608,gods,1295280398 +207349,27608,interesting,1295280594 +207349,27800,anime,1263321169 +207349,27800,artistic,1263321179 +207349,27800,Daft Punk,1263321158 +207349,27800,music,1263321162 +207349,27904,based on a book,1263340335 +207349,27904,Philip K. Dick,1263340307 +207349,27904,surrealism,1263340327 +207349,31184,bad 3D,1264197600 +207349,31184,lame anime,1264197481 +207349,31184,sexist,1264197600 +207349,31660,anime,1263925539 +207349,31660,passionate,1263925569 +207349,31660,predictive,1263925611 +207349,31660,steampunk,1263925535 +207349,31804,great cinematography,1263340504 +207349,31804,humor,1263340513 +207349,31804,vampires,1263340474 +207349,33794,atmospheric,1295294953 +207349,33794,based on comic,1295294980 +207349,33794,batman,1295294950 +207349,33794,dark,1295294959 +207349,33794,melancholy,1295294971 +207349,33794,stylized,1295295011 +207349,33794,superhero,1295294964 +207349,36363,koo,1264398706 +207349,36363,russian,1264398686 +207349,36363,sci-fi,1264398700 +207349,42718,dystopia,1263321343 +207349,42718,free running,1263321346 +207349,44191,dystopia,1263319676 +207349,44849,amazing photography,1263340275 +207349,44849,film noir,1263340289 +207349,44849,graphic,1263340282 +207349,47997,dumb,1295039962 +207349,48043,atmospheric,1343488147 +207349,48043,dreamlike,1343488144 +207349,48082,artsy,1343488182 +207349,48394,atmospheric,1295277780 +207349,48394,fairy tale,1295277786 +207349,48394,psychology,1295277855 +207349,48394,spanish civil war,1295277885 +207349,48394,stylized,1295277782 +207349,48394,surreal,1295277783 +207349,48394,violence,1295277770 +207349,50011,cool,1295039942 +207349,50011,disturbing,1295039927 +207349,50011,dystopia,1295039866 +207349,50011,metaphorical,1295039857 +207349,52328,great soundtrack,1263340962 +207349,56174,alone in the world,1295040192 +207349,56174,zombies,1295040196 +207349,57640,better than the first,1295290625 +207349,58559,action,1295294765 +207349,58559,Atmospheric,1295294734 +207349,58559,Batman,1295294732 +207349,58559,comic book,1295294751 +207349,58559,dark,1295294736 +207349,58559,superhero,1295294741 +207349,59315,action,1295294851 +207349,59315,arms dealer,1295294816 +207349,59315,based on a comic,1295294784 +207349,59315,superhero,1295294791 +207349,59315,vigilante,1295294798 +207349,60684,comic book,1263320396 +207349,60684,dystopia,1263320393 +207349,60684,storytelling,1263320402 +207349,61240,coming of age,1263322989 +207349,61240,swedish,1263322984 +207349,61240,vampire,1263322983 +207349,62049,based on a book,1263321101 +207349,62049,classic,1263321087 +207349,62049,dystopia,1263321073 +207349,63072,based on a book,1263843641 +207349,63072,dystopia,1263843632 +207349,63072,great acting,1263843651 +207349,63072,man is man's worst enemy,1263843719 +207349,63072,post-apocalyptic,1263843634 +207349,63072,tense,1263843667 +207349,63072,too intense,1263843627 +207349,65642,complicated,1263339821 +207349,65642,humor,1263339831 +207349,65642,plot wending,1263339835 +207349,65642,time travel,1263339837 +207349,66934,Awesome,1263320901 +207349,66934,joss whedon,1263320915 +207349,66934,musical,1263320987 +207349,66934,Nathan Fillion,1263320906 +207349,66934,too short,1263321001 +207349,68237,dystopia,1263460918 +207349,68237,solitude,1263460930 +207349,68835,gay,1293903130 +207349,68835,homosexuality,1293903124 +207349,68835,musical,1293903139 +207349,70286,humor,1263339687 +207349,70286,intelligent sci-fi,1263339690 +207349,70286,man is man's worst enemy,1263339776 +207349,70286,social commentary,1263339704 +207349,70286,South Africa,1263339717 +207349,71468,alternate reality,1263339646 +207349,71468,dreams,1263339651 +207349,71484,animation,1295039678 +207349,71484,dystopia,1295039681 +207349,71530,action,1295040328 +207349,71530,alternate reality,1295040336 +207349,71530,bad ending,1295040354 +207349,71530,Bruce Willis,1295040342 +207349,71530,dystopia,1295040322 +207349,71530,predictable,1295040368 +207349,76251,humorous,1295294889 +207349,76251,original plot,1295294934 +207349,76251,superhero,1295294896 +207349,79357,cinematography,1343488105 +207349,79357,Jared Leto,1343488109 +207349,79357,nonlinear,1343488120 +207349,79357,surreal,1343488115 +207349,80969,atmospheric,1343488305 +207349,80969,based on a book,1343488307 +207349,80969,depressing,1343488310 +207349,80969,dystopia,1343488316 +207368,296,dark comedy,1253848571 +207368,296,Quentin Tarantino,1253848576 +207368,1213,Martin Scorsese,1269105484 +207368,1213,organized crime,1269105488 +207368,2959,Brad Pitt,1253848545 +207368,2959,Edward Norton,1253848540 +207368,2959,philosophy,1253848552 +207368,2959,psychology,1253848548 +207368,8638,generation X,1253848374 +207368,8638,great dialogue,1253848385 +207368,8638,minimalist,1253848381 +207368,8638,romance,1253848387 +207368,33903,bad ending,1253847829 +207368,33903,Exceptional Acting,1253847809 +207368,33903,good soundtrack,1253847815 +207368,33903,politics,1253847820 +207368,71535,funny,1266459938 +207368,71535,soundtrack,1266459951 +207368,71745,Soundtrack,1266460047 +207368,71745,touching,1266460049 +207368,73017,boring script,1266459804 +207368,73017,Guy Ritchie,1266459795 +207368,73017,Robert Downey Jr.,1266459792 +207368,73017,slow motion,1266459819 +207401,5952,Epic,1439851875 +207401,5952,mythology,1439851887 +207415,260,George Lucas,1442980317 +207415,260,sci-fi,1442980300 +207416,260,galactic war,1442231883 +207416,260,Star Wars,1442231866 +207416,750,dark comedy,1453580235 +207416,750,Stanley Kubrick,1453580231 +207416,1203,good dialogue,1452115911 +207416,1203,group psychology,1452115915 +207416,1276,atmospheric,1451726010 +207416,2413,alternate endings,1442232051 +207416,2413,hilarious,1442232042 +207416,3578,history,1451845899 +207416,4973,surreal,1451729617 +207416,5608,psychology,1451730594 +207416,6502,post-apocalyptic,1453581097 +207416,8464,documentary,1451849320 +207416,8464,Educational,1451849332 +207416,27727,complex characters,1451729532 +207416,44555,complex characters,1451854972 +207416,44555,historical,1451854959 +207416,48516,Jack Nicholson,1451846089 +207416,48516,Leonardo DiCaprio,1451846082 +207416,57669,dark comedy,1442232309 +207416,72998,bad science,1451726055 +207416,72998,predictable,1451726045 +207416,72998,too long,1451726051 +207416,79132,Leonardo DiCaprio,1442232243 +207416,89759,realism,1451725958 +207416,92259,funny,1451729042 +207416,92259,touching,1451729040 +207416,94864,atmospheric,1451725828 +207416,94864,plot hole,1451725796 +207416,94864,religious overtones,1451725792 +207416,94864,scifi,1451725850 +207416,109374,funny,1451726107 +207416,109374,great dialogue,1451726098 +207416,109374,quirky,1451726103 +207416,122882,action,1451728817 +207416,122882,post apocalypse,1451728789 +207416,134130,Space,1451728936 +207420,1059,music,1256453702 +207420,1220,music,1256453442 +207420,1288,music,1256453615 +207420,3060,music,1256453647 +207420,3477,music,1256453362 +207420,3481,music,1256453399 +207420,4936,dance,1255131553 +207420,4936,music,1255131552 +207420,26743,Studio Ghibli,1254515402 +207420,32196,Takeshi Kitano,1255466130 +207420,54190,music,1256453546 +207420,54190,musical,1255466295 +207420,54190,The Beatles,1255466295 +207420,55444,music,1256453639 +207420,61132,Ben Stiller,1254514945 +207420,61132,Robert Downey Jr.,1254514970 +207420,71057,predictable,1254514692 +207420,71304,Chan-wook Park,1254908694 +207420,71304,Kang-ho Song,1254908694 +207420,71304,vampires,1254908694 +207420,71675,music,1255420682 +207420,71675,silent movie aesthetics,1255420682 +207428,5418,action,1440382968 +207428,5418,amnesia,1440383052 +207428,5418,cia,1440382974 +207428,5418,spy,1440382963 +207428,5418,thriller,1440382959 +207472,260,adventure,1442141304 +207472,260,fantastic,1442141219 +207472,260,good vs evil,1442141239 +207472,260,special effects,1442141290 +207472,1193,emotional,1442142631 +207472,1193,jack nicholson,1442142644 +207472,1193,Oscar (Best Actor),1442142648 +207472,1193,powerful ending,1442142658 +207472,1193,psychological,1442142666 +207472,31696,gothic,1442142717 +207472,31696,Keanu Reeves,1442142707 +207472,31696,mythology,1442142704 +207472,31696,supernatural,1442142798 +207485,3809,nnothing,1425421362 +207485,3809,One of the best Comedy i have seen!! unforgetable- even after all this years i still enjoy when I remember it.,1425421362 +207485,27423,It shows exactly how people speak in that part of the country,1425421252 +207485,27423,Nothing,1425421252 +207485,27423,the actors are the best brasilian actor.,1425421252 +207485,112183,sad story,1425421433 +207490,296,doyouspeakit,1434846330 +207490,296,inglish,1434846330 +207490,296,motherfucker,1434846330 +207509,260,action,1435394770 +207509,260,Cool,1435394782 +207509,61348,bullshit,1436812281 +207513,260,luke skywalker,1436138951 +207513,260,sci-fi,1436138934 +207531,260,classic sci-fi,1444955026 +207531,260,good vs evil,1444955015 +207531,54286,assassin,1444955423 +207531,54286,conspiracy,1444955440 +207531,54286,espionage,1444955431 +207531,54286,spy thriller,1444955444 +207535,27816,WWII,1149186169 +207550,260,space,1439650630 +207550,260,war,1439650644 +207573,68685,terrorism,1253816028 +207576,1693,law,1430225485 +207576,1693,slavery,1430225462 +207580,76251,comic book,1282961849 +207580,76251,humor,1282961843 +207580,76251,Nicolas Cage,1282961809 +207580,76251,pop culture references,1282961815 +207596,2296,SNL,1429688851 +207596,3000,anime,1429688488 +207596,3000,Hayao Miyazaki,1429688479 +207596,3000,Studio Ghibli,1429688477 +207596,4247,David Spade,1429688769 +207596,4247,SNL,1429688831 +207596,6377,talking animals,1429688289 +207596,26662,anime,1429688438 +207596,26662,Hayao Miyazaki,1429688428 +207596,26662,Studio Ghibli,1429688426 +207596,46970,Will Ferrell,1429688739 +207596,50872,animation,1429688253 +207596,50872,cooking,1429688256 +207596,50872,Disney,1429688269 +207596,50872,pixar,1429688267 +207596,61024,comedy,1429688710 +207596,61024,Stoner Movie,1429688707 +207596,61323,Coen Brothers,1429688617 +207617,260,Science Fiction,1440973313 +207617,260,space adventure,1440973335 +207617,77658,astronomy,1441375945 +207617,77658,physics,1441375952 +207635,91529,Hollywood ending,1344948718 +207637,260,action,1432824422 +207637,260,sci-fi,1432824406 +207637,260,Star Wars,1432824414 +207637,2363,Kaiju,1432824641 +207637,111364,Kaiju,1432824696 +207658,260,classic,1438924369 +207658,260,sci-fi,1438924328 +207658,260,space,1438924340 +207658,260,Star Wars,1438924350 +207659,541,cyberpunk,1206603356 +207659,541,cyborgs,1206603356 +207659,541,existentialism,1206603356 +207672,318,friendship,1266533473 +207672,318,justice,1266533476 +207672,318,Morgan Freeman,1266533469 +207672,318,prison escape,1266533477 +207672,318,Stephen King,1266533470 +207672,318,twist ending,1266533471 +207672,356,based on a book,1264527785 +207672,356,classic,1264527794 +207672,356,comedy,1264527815 +207672,356,drama,1264527816 +207672,356,great soundtrack,1264527821 +207672,356,historical,1264527804 +207672,356,psychology,1264527824 +207672,356,romance,1264527808 +207672,356,sentimental,1264527811 +207672,356,Sexuality,1264527848 +207672,356,Tom Hanks,1264527813 +207672,356,vietnam war,1264527827 +207672,527,based on a book,1264527883 +207672,527,black and white,1264527882 +207672,527,disturbing,1264527889 +207672,527,history,1264527878 +207672,527,Holocaust,1264527877 +207672,527,Liam Neeson,1264527916 +207672,527,nudity,1264527898 +207672,527,sexuality,1264527895 +207672,527,Steven Spielberg,1264527876 +207672,527,true story,1264527874 +207672,527,war,1264527891 +207672,2692,artistic,1266533517 +207672,2692,German,1266533530 +207672,2692,heist,1266533532 +207672,2692,nonlinear,1266533511 +207672,2692,surreal,1266533512 +207672,2692,whimsical,1266533515 +207672,2959,Brad Pitt,1266533427 +207672,2959,Edward Norton,1266533425 +207672,2959,twist ending,1266533431 +207672,2959,violence,1266533422 +207672,3006,Al Pacino,1265741690 +207672,3006,corporations,1265741703 +207672,3006,journalism,1265741713 +207672,3006,Russell Crowe,1265741692 +207672,3006,thriller,1265741706 +207672,3006,tobacco,1265741709 +207672,3006,true story,1265741694 +207672,3275,Irish,1266533397 +207672,3275,Mafia,1266533401 +207672,3275,Nudity (Topless),1266533384 +207672,3275,organized crime,1266533387 +207672,3275,vigilantism,1266533391 +207672,4226,black and white,1266533547 +207672,4226,nonlinear,1266533541 +207672,4226,twist ending,1266533543 +207672,4973,beautifully filmed,1266533561 +207672,4973,Nudity (Topless),1266533569 +207672,4973,Paris,1266533566 +207672,4973,quirky,1266533567 +207672,4973,sex scenes,1266533585 +207672,30749,Africa,1264527946 +207672,30749,depressing,1264527943 +207672,30749,ethnic conflict,1264527928 +207672,30749,genocide,1264527929 +207672,30749,Tragedy,1264527933 +207672,30749,true story,1264527932 +207672,50068,brutality,1265741659 +207672,50068,weak plot,1265741669 +207678,260,action,1444242009 +207678,260,adventure,1444242016 +207678,260,space,1444241994 +207715,17,19th century,1437840164 +207715,17,Jane Austen,1437840146 +207715,17,romantic,1437840156 +207715,7669,19th century,1437840101 +207715,7669,author:Jane Austen,1437840109 +207715,7669,comedy of manners,1437840117 +207715,7669,romantic,1437840118 +207715,8614,family,1437839767 +207715,8614,love,1437839767 +207715,8614,romantic,1437839767 +207718,50,Kevin Spacey,1427742615 +207718,50,twist ending,1427742606 +207718,7502,historical,1427742647 +207718,7502,World War II,1427742638 +207718,79132,alternate reality,1427742691 +207718,79132,mindfuck,1427742701 +207718,79132,visually appealing,1427742695 +207723,5026,sub titles,1173415050 +207723,48696,Nudity (Topless - Brief),1172201808 +207737,260,sci-fi,1436709973 +207785,2804,Christmas,1395657579 +207785,2804,christmas movie,1395657583 +207805,102125,Awesome,1425985156 +207805,111362,Sequel,1425984372 +207805,112556,sadist,1425984421 +207825,40815,magic,1138457193 +207827,260,George Lucas,1433280234 +207827,260,Science Fiction,1433280228 +207827,115617,good for kids,1433280511 +207827,115617,inspirational,1433280511 +207827,115617,very funny,1433280511 +207836,260,aliens,1437411938 +207836,260,sci-fi,1437411922 +207836,260,space action,1437411952 +207836,260,space adventure,1437411961 +207836,356,drama,1437412259 +207836,356,fantasy,1437412259 +207836,356,inspirational,1437412259 +207867,260,classic,1433067441 +207867,260,sci-fi,1433067437 +207867,296,absorbing,1433071441 +207867,296,intense,1433071441 +207867,296,very funny,1433071441 +207873,215,conversation,1290829725 +207873,215,dialogue,1290829728 +207873,215,ethan hawke,1290829717 +207873,215,intelligent,1290829737 +207873,215,Julie Delpy,1290829761 +207873,215,literate,1290829718 +207873,215,trains,1290829739 +207873,215,VACATION ROMANCES,1290829742 +207873,215,wistful,1290829746 +207873,215,witty,1290829750 +207873,1704,Ben Affleck,1290879088 +207873,1704,college,1290879112 +207873,1704,genius,1290879116 +207873,1704,inspirational,1290879123 +207873,1704,Matt Damon,1290879086 +207873,1704,Robin Williams,1290879091 +207873,1704,school drama,1290879107 +207873,1704,thoughtful,1290879094 +207873,1704,university,1290879096 +207873,2248,cameron crowe,1290651027 +207873,2248,ending,1290651055 +207873,2248,funny,1290651034 +207873,2248,high school,1290651025 +207873,2248,idealistic,1290651008 +207873,2248,Ione Skye,1290651060 +207873,2248,John Cusack,1290651011 +207873,2248,Lloyd Dobbler,1290651005 +207873,2248,Romance,1290651022 +207873,2248,seet,1290651039 +207873,3261,1990s,1290651239 +207873,3261,Cameron Crowe,1290651193 +207873,3261,Kyra Sedgwick,1290651195 +207873,3261,Matt Dillon,1290651244 +207873,3261,music,1290651204 +207873,3261,quirky humor,1290651214 +207873,3261,relationships,1290651199 +207873,3261,seattle,1290651222 +207873,3481,based on a book,1290651148 +207873,3481,Chicago,1290651139 +207873,3481,great soundtrack,1290651144 +207873,3481,hilarious,1290651142 +207873,3481,John Cusack,1290651134 +207873,3481,music,1290651158 +207873,3481,Nick Hornby,1290651150 +207873,3481,quirky,1290651174 +207873,3481,relationships,1290651136 +207873,3897,affectionate,1290650759 +207873,3897,great soundtrack,1290650756 +207873,3897,humorous,1290650778 +207873,3897,journalism,1290650753 +207873,3897,music,1290650752 +207873,3897,rock and roll,1290650762 +207873,3897,understated,1290650775 +207873,3897,writers,1290650766 +207873,3897,Zooey Deschanel,1290650791 +207873,5618,alternate reality,1290650449 +207873,5618,anime,1290650438 +207873,5618,atmospheric,1290650465 +207873,5618,beautiful,1290650443 +207873,5618,children,1290650447 +207873,5618,Hayao Miyazaki,1290650440 +207873,5618,whimsical,1290650452 +207873,7147,action,1290650158 +207873,7147,adventure,1290650213 +207873,7147,bittersweet,1290650211 +207873,7147,Coen Brothers,1290650218 +207873,7147,dreamlike,1292026170 +207873,7147,magic,1290650240 +207873,7147,quirky,1290650221 +207873,7147,reflective,1290650233 +207873,7147,romance,1290650206 +207873,7147,stylized,1290650174 +207873,7147,tim burton,1290650188 +207873,40583,Amanda Peet,1291504493 +207873,40583,cerebral,1291504497 +207873,40583,complex,1291504615 +207873,40583,complicated,1291504499 +207873,40583,George Clooney,1291504490 +207873,40583,irony,1291504639 +207873,40583,literate,1291504495 +207873,40583,long,1291504642 +207873,40583,Matt Damon,1291504487 +207873,40583,politics,1291504502 +207873,40583,tense,1291504504 +207873,44555,complex characters,1290830555 +207873,44555,corruption,1290830557 +207873,44555,foreign,1290830589 +207873,44555,freedom of expression,1290830574 +207873,44555,Germany,1290830551 +207873,44555,Nudity (Topless - Brief),1290830564 +207873,44555,Oscar Winner,1290830553 +207873,44555,spying,1290830562 +207873,44555,suspense,1290830578 +207873,46578,comedy,1290825710 +207873,46578,dark comedy,1290825708 +207873,46578,dysfunctional family,1290825706 +207873,46578,road movie,1290825717 +207873,46578,road trip,1290825721 +207873,46578,satire,1290825713 +207873,46578,social commentary,1290825715 +207873,48516,atmospheric,1290282953 +207873,48516,Jack Nicholson,1290282943 +207873,48516,Leonardo DiCaprio,1290282947 +207873,51705,Audrey Tautou,1290651484 +207873,51705,fast-paced,1290651462 +207873,51705,French,1290651449 +207873,51705,funny,1290651512 +207873,51705,quirky,1290651457 +207873,51705,romance,1290651452 +207873,51705,sweet,1290651473 +207873,51705,twist ending,1290651480 +207873,55290,Casey Affleck,1290806522 +207873,55290,conspiracy,1290806806 +207873,55290,detective,1290806556 +207873,55290,drugs,1290806826 +207873,55290,kidnapping,1290806559 +207873,55290,michelle monaghan,1290806831 +207873,55290,morality,1290806518 +207873,55290,Morgan Freeman,1290806554 +207873,55290,twist,1290806547 +207873,59387,hospital,1290695938 +207873,59387,metafilm,1290695926 +207873,59387,stylized,1290695923 +207873,59387,suicide attempt,1290695933 +207873,59387,visually appealing,1290695916 +207873,69757,cliche,1290651307 +207873,69757,"ending ""twist"" could be better",1290651318 +207873,69757,Funny,1290651350 +207873,69757,humor,1290651323 +207873,69757,indie music,1290651344 +207873,69757,intelligent,1290651326 +207873,69757,Joseph Gordon-Levitt,1290829798 +207873,69757,quirky,1290651374 +207873,69757,relationships,1290651354 +207873,69757,romance,1290651328 +207873,69757,stylized,1290651368 +207873,69757,zooey deschanel's awful singing voice,1290651395 +207873,71691,action,1291530177 +207873,71691,crime,1291530226 +207873,71691,double agents,1291530204 +207873,71691,Irish conflict,1291530156 +207873,71691,Jim Sturgess,1291530149 +207873,71691,Rose McGowan,1291530151 +207873,71691,soundtrack,1291530217 +207873,71691,suspense,1291530169 +207873,71691,true story,1291530233 +207873,72011,business,1290825652 +207873,72011,George Clooney,1290825611 +207873,72011,Jason Bateman,1290825587 +207873,72011,loneliness,1290825596 +207873,72011,Nudity (Rear),1290825643 +207873,72011,soundtrack,1290825676 +207873,72011,thoughtful,1290825638 +207873,72011,travel,1290825634 +207873,72011,Vera Farmiga,1290825605 +207873,72011,witty,1290825594 +207873,79702,cultural references,1290825351 +207873,79702,cute,1290825369 +207873,79702,fast-paced,1290825354 +207873,79702,fight scenes,1290825356 +207873,79702,funny,1290825371 +207873,79702,hipsters,1290825347 +207873,79702,Michael Cera,1290825364 +207873,79702,quirky,1290825374 +207873,79702,stylized,1290825362 +207873,79702,visually appealing,1290825360 +207876,260,cool,1434443371 +207876,260,Science Fiction,1434443326 +207886,6942,London,1419009465 +207886,6942,Romance,1419009455 +207895,260,"action, scifi",1431077963 +207903,8961,secret identity,1422388707 +207903,8961,super-power,1422388707 +207903,8961,superhero team,1422388707 +207903,47907,concentration-camp,1428432985 +207903,47907,holocaust,1428432985 +207903,47907,jewish,1428432985 +207903,54505,arctic,1430693085 +207903,54505,global-warming,1430693085 +207903,54505,life-cycle,1430693085 +207903,126593,1960s,1424735971 +207903,126593,chef,1424735971 +207903,126593,maritime travel,1424735971 +207910,608,overrated,1442961078 +207910,918,classic,1433306715 +207910,918,Judy Garland,1433306687 +207910,918,Musical,1433306729 +207910,1199,long,1432354559 +207910,1199,too long,1432354565 +207910,1944,classic,1432344594 +207910,1944,Frank Sinatra,1432344561 +207910,1944,Montgomery Cliff,1432344550 +207910,1944,Pearl harbor,1432344516 +207910,1944,Tragic,1432344714 +207910,1944,World War II,1432344536 +207910,3275,cult classic,1432347216 +207910,3275,Irish,1432347228 +207910,3275,vigilante,1432347220 +207910,3872,Asylum,1431502476 +207910,3872,Elizabeth Taylor,1431502427 +207910,3872,Katherine Hepburn,1431502485 +207910,3872,Mystery,1431502568 +207910,7208,Ingrid Bergman,1445681319 +207910,7235,Gore,1429080169 +207910,7235,Insane,1429080139 +207910,7235,Japanese,1429080089 +207910,7235,violent,1429080159 +207910,26662,magic,1439816042 +207910,68157,French,1432346679 +207910,68157,German,1432346669 +207910,68157,Italian,1432346659 +207910,68157,jews,1432346638 +207910,68157,Nazis,1432346643 +207910,68157,violence,1432346612 +207910,68157,World War II,1432346603 +207910,72226,family issues,1432346102 +207910,72226,Roald Dahl,1432346085 +207910,72226,rodents,1432346144 +207910,72998,Alien planet,1432345697 +207910,72998,aliens,1432345679 +207910,72998,space,1432345669 +207910,73017,Arthur Conan Doyle,1432346745 +207910,73017,Victorian era,1432346760 +207910,82461,computers,1432345755 +207910,82461,motorcycle,1432345728 +207910,82461,neon,1432345741 +207910,82461,remake,1432345768 +207910,86320,Art,1432346908 +207910,89118,Based on a book,1432347284 +207910,91529,based on a comic,1432346560 +207910,91529,Batman,1432346518 +207910,91529,Marion Cotillard,1432346508 +207910,91529,Tom Hardy,1432346491 +207910,91542,alternate history,1432346025 +207910,91542,Jude Law,1432345950 +207910,91542,mystery,1432345971 +207910,94959,boy scouts,1432345863 +207910,94959,pen pal,1432345882 +207910,94959,small community,1432345895 +207910,99114,BOUNTY HUNTERS,1432346360 +207910,99114,Jamie Foxx,1432346389 +207910,99114,Quentin Tarantino,1432346420 +207910,99114,southern,1432346459 +207910,99114,western,1432346373 +207910,113780,archeology,1433209196 +207910,113780,catacombs,1433208981 +207910,113780,cave,1433208992 +207910,113780,Claustrophobic,1433209036 +207910,113780,France,1433209113 +207910,113780,hell,1433209071 +207910,113780,tomb raider,1433209054 +207910,113780,underground,1433209100 +207921,260,classic sci-fi,1438354791 +207921,260,cult classic,1438354889 +207928,94466,drama,1429589134 +207928,94466,sci-fi,1429589134 +207928,94466,tv miniseries,1429589134 +207928,104932,british,1431652611 +207928,104932,period drama,1431652611 +207928,104932,tv,1431652611 +207928,130582,drama,1434381036 +207928,130582,new york,1434381036 +207928,130582,therapy,1434381036 +207942,71579,Oxford,1270029844 +207942,75805,predictable,1280749039 +207965,260,deep universe,1443729331 +207965,4896,Magic,1446491865 +207965,4896,mystery,1446491872 +207966,47200,action,1370076715 +207967,69574,alice in wonderland,1253628438 +208018,47,serial killer,1434108420 +208018,260,action,1434108463 +208018,260,science fiction,1434108463 +208018,260,thriller,1434108463 +208018,593,cannibalism,1434108403 +208018,593,serial killer,1434108397 +208019,52722,Worst movie ever!,1190924769 +208029,27426,corny family fun,1422145935 +208029,27426,good kids movie,1422145935 +208029,27426,jackie chan comedy,1422145935 +208078,52722,Worst movie ever!,1180572611 +208080,296,action,1425870094 +208080,296,quentin tarantino,1425870094 +208080,296,violent,1425870094 +208122,260,action,1440534714 +208122,260,sci-fi,1440534694 +208122,4306,comedy,1440534914 +208122,4306,very funny,1440534935 +208141,64575,Meryl Streep,1381709020 +208141,102903,deception,1381708899 +208141,102903,entertaining,1381708903 +208141,102903,shallow characters,1381708929 +208141,104841,cinematography,1381708836 +208141,104841,space,1381708819 +208166,350,disturbing images,1165535097 +208166,350,language,1165535097 +208166,350,mature theme,1165535097 +208166,2797,sex,1165534902 +208166,4499,language,1165534751 +208166,4499,sexual references,1165534657 +208166,5299,crude humor,1203475808 +208166,5299,fornication,1203475808 +208166,45722,demonic themes,1177279232 +208172,68358,alternate reality,1241958583 +208172,68358,far future,1241958589 +208172,68358,space,1241958598 +208210,541,clones,1406680023 +208210,104841,bad science,1406691484 +208210,104841,cliche characters,1406691642 +208210,104841,feeble character development,1406691609 +208210,109374,colourful sets,1422755804 +208210,109374,life-long relationship,1422755804 +208210,109374,ridiculous,1422755804 +208243,3615,dinosaurs,1447196848 +208243,3615,prehistoric,1447196851 +208243,3615,talking animals,1447196843 +208243,27773,music,1445802723 +208243,27773,twist ending,1445802701 +208243,27773,vengeance,1445802703 +208243,27773,violent,1445802706 +208243,34319,dystopia,1445788406 +208243,34319,freedom,1445788411 +208243,34319,sci-fi,1445788413 +208243,67997,cynical,1448233925 +208243,67997,politics,1448233915 +208243,67997,satire,1448233917 +208243,67997,swearing,1448233931 +208243,79824,babies,1452467590 +208243,81257,africa,1447801548 +208243,81257,revenge,1447801546 +208243,87928,privatization,1452377872 +208243,87928,water,1452377848 +208243,89804,dialogue,1448838909 +208243,89804,politics,1448838907 +208243,89804,smart,1448838913 +208243,94466,dystopia,1445802638 +208243,94466,satire,1445802630 +208243,94466,social commentary,1445802631 +208243,94466,technology,1445802622 +208243,94466,well constructed,1445802634 +208243,94939,music,1452640361 +208243,102903,entertaining,1450477609 +208243,102903,illusions,1450477603 +208243,102903,plot,1450477602 +208243,102903,surprise ending,1450477607 +208243,103810,espionage,1451946785 +208243,106782,Anti-Hero,1453595489 +208243,106782,based on a true story,1453595510 +208243,114554,studio ghibli,1449438195 +208243,115122,dark comedy,1447887247 +208243,115122,humor,1447887254 +208243,115122,mockumentary,1447887245 +208243,115122,vampires,1447887266 +208243,118790,Monty Python,1447543450 +208244,64034,childhood,1429039436 +208244,64034,friendship,1429039436 +208244,64034,world war ii,1429039436 +208246,778,good soundtrack,1428482272 +208246,778,seen more than once,1428482280 +208258,260,adventure,1434407647 +208258,260,family,1434407667 +208258,260,family film,1434407667 +208258,260,sci-fi,1434407654 +208308,3545,Fosse,1144953792 +208308,5341,Fosse,1144953300 +208308,44191,1984,1144953256 +208308,44191,based-comic-book,1144953259 +208308,44191,comic book,1144953253 +208308,44191,watched 2006,1144953268 +208315,634,Whoopi Goldberg,1296726132 +208315,8956,based on a book,1296726116 +208315,8956,Daniel Craig,1296726107 +208347,32,atmospheric,1418094759 +208347,32,mindfuck,1418094756 +208347,32,sci-fi,1418094764 +208347,32,Terry Gilliam,1418094754 +208347,231,quirky,1418094857 +208347,293,Gary Oldman,1418095082 +208347,344,silly fun,1418094914 +208347,367,superhero,1418093873 +208347,674,campy,1418094877 +208347,741,exposition,1420385295 +208347,780,sci-fi,1418094772 +208347,780,scifi,1418094778 +208347,802,pretentious,1418094459 +208347,910,men in drag,1418094374 +208347,930,Ingrid Bergman,1421389224 +208347,1173,stylized,1418094515 +208347,1199,atmospheric,1418095004 +208347,1199,dreamlike,1418095011 +208347,1199,satirical,1418095031 +208347,1200,action,1418094953 +208347,1200,sci-fi,1418094946 +208347,1210,sci-fi,1418094922 +208347,1210,Star Wars,1418094928 +208347,1214,sci-fi,1418095056 +208347,1214,suspense,1418095066 +208347,1220,classic,1418094133 +208347,1228,black and white,1418094344 +208347,1228,boxing,1418094332 +208347,1265,Bill Murray,1418094724 +208347,1265,existentialism,1418094734 +208347,1265,original plot,1418094738 +208347,1265,surreal,1418094731 +208347,1278,parody,1418094883 +208347,1288,satire,1418095038 +208347,1327,haunted house,1418094499 +208347,1517,parody,1418094797 +208347,1663,Bill Murray,1418093974 +208347,1673,dark comedy,1418094005 +208347,1732,coen brothers,1418094835 +208347,1732,great soundtrack,1418094844 +208347,1732,off-beat comedy,1418094840 +208347,1965,black comedy,1418093959 +208347,1965,cult classic,1418093946 +208347,1965,dark comedy,1418093956 +208347,2011,sci-fi,1418094805 +208347,2011,time travel,1418094809 +208347,2111,dumb but funny,1418094020 +208347,2335,sports,1418094491 +208347,2335,stupid,1418094488 +208347,2427,lyrical,1418094537 +208347,2427,reflective,1418094528 +208347,2628,Jar Jar Binks,1418093713 +208347,2716,Bill Murray,1418094062 +208347,2716,Dan Aykroyd,1418094070 +208347,2791,absurd,1418094112 +208347,2804,classic,1418094962 +208347,2819,intrigue,1418102297 +208347,3070,sci-fi,1418093889 +208347,3070,surreal,1418093894 +208347,3108,Terry Gilliam,1418093967 +208347,3671,satire,1418094683 +208347,3671,satirical,1418094685 +208347,3949,social commentary,1418094421 +208347,3977,silly,1418094161 +208347,3994,atmospheric,1418094905 +208347,3994,superhero,1418094895 +208347,3994,unique,1418094898 +208347,4878,atmospheric,1418094983 +208347,4878,original,1418094991 +208347,4878,surreal,1418094967 +208347,4878,thought-provoking,1418094970 +208347,4881,Billy Bob Thornton,1418094091 +208347,4881,Coen Brothers,1418094087 +208347,5378,Hayden Christensen,1418093767 +208347,5445,Tom Cruise,1418094316 +208347,6645,great cinematography,1418094870 +208347,6653,soundtrack,1418094180 +208347,8376,quirky,1418093920 +208347,8641,Will Ferrell,1418094939 +208347,8914,intellectual,1418094205 +208347,8914,mindfuck,1418094196 +208347,8914,Sci-Fi,1418094202 +208347,8914,thought-provoking,1418094214 +208347,8949,Paul Giamatti,1418094034 +208347,26856,overacting,1421459413 +208347,27773,disturbing,1435437193 +208347,27773,Korea,1435437179 +208347,27773,revenge,1435437204 +208347,27773,stylized,1435437172 +208347,33493,Hayden Christensen,1418093793 +208347,48043,religion,1418667787 +208347,49932,boring,1451696673 +208347,57368,shaky camera,1420460105 +208347,57368,unsteady-cam,1420460099 +208347,59615,stupid,1418094478 +208347,71468,surreal,1418093984 +208347,72308,clip show,1421388825 +208347,80917,shaky cam,1420459890 +208347,80917,unsympathetic characters,1420459878 +208347,83613,better than expected,1437082846 +208347,86320,Lars von Trier,1418094390 +208347,86320,Magic realism,1418094396 +208347,86355,Ayn Rand,1418094546 +208347,89190,bad writing,1437082794 +208347,89945,short,1418854624 +208347,91658,rape,1418962860 +208347,93805,bad execution,1418094288 +208347,93805,mediocre acting,1418094298 +208347,103228,fun,1418094712 +208347,103228,sci-fi,1418094698 +208347,103228,visually appealing,1418094708 +208347,104606,bad movie,1423626379 +208347,104606,innacurate,1423626379 +208347,104606,large cast,1423626379 +208347,107406,illogical,1418094444 +208347,107406,social commentary,1418094434 +208347,109848,unnerving,1451696699 +208347,113143,cheap,1419984608 +208347,113143,horrible acting,1419984608 +208347,113143,stupid,1419984608 +208347,113741,shaky cam,1418869509 +208347,114935,time travel,1418783019 +208347,117450,confusing,1420922637 +208347,117450,philosophical,1420922637 +208347,117450,surreal,1420922637 +208347,118710,alternate universe,1422822270 +208347,118710,complicated,1422822270 +208347,118710,original,1422822270 +208347,127096,disappointing,1431808937 +208347,127096,found footage,1431808897 +208347,127096,shakey,1431808894 +208347,127096,skaky cam,1431808923 +208347,128856,annoying editing,1424396274 +208409,34162,classic,1236906750 +208420,115617,family,1433913841 +208420,115617,hilarious,1433913841 +208420,115617,lovable,1433913841 +208434,47,dark,1445385414 +208434,47,great ending,1445385433 +208434,47,Kevin Spacey,1445385409 +208434,47,mystery,1445385412 +208434,47,philosophical,1445385430 +208434,47,psychology,1445385406 +208434,47,religion,1445385425 +208434,47,twist ending,1445385401 +208434,47,twists & turns,1445385418 +208434,2959,David Fincher,1445385337 +208434,2959,Edward Norton,1445385313 +208434,2959,mindfuck,1445385327 +208434,2959,philosophical,1445385341 +208434,2959,philosophy,1445385320 +208434,2959,psychology,1445385344 +208434,2959,social commentary,1445385317 +208434,2959,twist ending,1445385298 +208434,5291,enigmatic,1445386284 +208434,112556,Ben Affleck,1445385496 +208434,112556,mindfuck,1445385510 +208434,112556,Psychopathy,1445385492 +208434,112556,social commentary,1445385537 +208434,112556,unpredictable,1445385489 +208455,46970,Will Ferrell,1163229701 +208467,88129,Ryan Gosling,1383086124 +208473,260,good vs evil,1438790823 +208473,260,science fantasy,1438790811 +208499,6,Recommendz Top Pick,1213974329 +208499,57669,directorial debut,1221579141 +208499,57669,violent,1221579134 +208546,260,classic sci-fi,1439430277 +208546,260,oldie but goodie,1439430283 +208558,260,Action-packed,1438012536 +208558,260,Family,1438012545 +208558,260,"Family, Action-packed",1438012562 +208558,260,"Family-friendly, Action-packed",1438012581 +208564,593,dark,1433726704 +208564,593,psychothriller,1433726704 +208564,593,suspenseful,1433726704 +208580,260,computer graphics,1439832315 +208580,260,fantasy,1439832306 +208580,260,Science Fiction,1439832310 +208580,2502,cult film,1440397203 +208580,2502,officehumor,1440397189 +208580,4226,non,1440397536 +208580,4226,nonlinear,1440397545 +208580,4226,psychology,1440397532 +208580,4226,short-term memory loss,1440397524 +208580,7438,revenge,1440397226 +208580,7438,trendsetter,1440397236 +208601,3252,own,1200733582 +208604,858,Mafia,1200166448 +208604,6953,Death,1200166794 +208618,21,Gene Hackman,1354717490 +208618,21,satire:Hollywood insiders,1354717473 +208618,21,silly,1354717471 +208618,32,atmospheric,1354655839 +208618,32,Brad Pitt,1354655813 +208618,32,imagination,1354655843 +208618,32,imdb top 250,1354655820 +208618,32,psychology,1354655828 +208618,47,Brad Pitt,1354715935 +208618,47,disturbing,1354715956 +208618,47,Kevin Spacey,1354715943 +208618,47,Morgan Freeman,1354715941 +208618,47,psychology,1354715946 +208618,47,twist ending,1354715951 +208618,101,NOTHING GOES RIGHT,1354717182 +208618,101,off-beat comedy,1354717152 +208618,101,sweet,1354717172 +208618,150,based on a true story,1354718074 +208618,150,historical,1354718066 +208618,150,space program,1354718068 +208618,150,Tom Hanks,1354718071 +208618,185,plot holes,1354901742 +208618,185,simplistic,1354901738 +208618,185,unrealistic,1354901736 +208618,266,bittersweet,1354720288 +208618,266,epic,1354720265 +208618,266,Great Ensemble Cast,1354720274 +208618,293,disturbing,1354715815 +208618,296,Black comedy,1354716183 +208618,296,cult film,1354716200 +208618,296,Quentin Tarantino,1354716203 +208618,296,quirky,1354716190 +208618,296,violence,1354716196 +208618,319,atmospheric,1354717290 +208618,319,dark comedy,1354717294 +208618,319,disturbing,1354717299 +208618,319,macabre,1354717297 +208618,319,Scotland,1354717303 +208618,319,Underrated,1354717307 +208618,344,crude,1354727388 +208618,344,goofy,1354727377 +208618,344,Jim Carrey,1354727373 +208618,344,Jim Carrey being Jim Carrey,1354727398 +208618,344,silly fun,1354727405 +208618,356,bittersweet,1354717786 +208618,356,inspirational,1354717819 +208618,356,moralistic,1354717817 +208618,356,quirky,1354717792 +208618,367,Crude,1356028427 +208618,367,dancing,1356028421 +208618,367,sex jokes,1356028394 +208618,367,sexism,1356028409 +208618,377,chase,1354733907 +208618,377,explosions,1354733895 +208618,377,intense,1354733904 +208618,377,Keanu Reeves,1354733886 +208618,377,Sandra Bullock,1354733898 +208618,377,shallow plot,1354733914 +208618,380,comedy,1354718546 +208618,380,racism,1354718521 +208618,380,ridiculous,1354718526 +208618,380,shallow plot,1354718512 +208618,480,cloning,1354717907 +208618,480,dinosaurs,1354717894 +208618,480,genetics,1354717897 +208618,480,sci-fi,1354717899 +208618,480,Steven Spielberg,1354717900 +208618,541,artificial intelligence,1354655919 +208618,541,atmospheric,1354655928 +208618,541,genetic engineering,1354655934 +208618,541,imdb top 250,1354655937 +208618,541,Philip K. Dick,1354655921 +208618,541,philosophical,1354655923 +208618,589,artificial intelligence,1354718374 +208618,589,dystopia,1354718378 +208618,589,sci-fi,1354718381 +208618,589,time travel,1354718383 +208618,590,biased,1354718446 +208618,590,Kevin Costner,1354718413 +208618,590,moralistic,1354718446 +208618,590,naive,1354718462 +208618,590,simplistic,1354718446 +208618,592,Jack Nicholson,1354718123 +208618,592,stylized,1354718111 +208618,592,Tim Burton,1354718118 +208618,593,Anthony Hopkins,1354715986 +208618,593,disturbing,1354715996 +208618,593,psychology,1354715989 +208618,593,serial killer,1354716004 +208618,608,dark comedy,1354717257 +208618,608,quirky,1354717260 +208618,608,witty,1354717262 +208618,628,courtroom drama,1356029305 +208618,628,Edward Norton,1356029303 +208618,628,Richard Gere,1356029320 +208618,628,split personality,1356029311 +208618,628,thought-provoking,1356029307 +208618,628,twist ending,1356029309 +208618,736,Helen Hunt,1354718037 +208618,736,Michael Crichton,1354718017 +208618,736,Philip Seymour Hoffman,1354718013 +208618,736,science,1354718018 +208618,778,dark comedy,1354716462 +208618,778,narrated,1354716472 +208618,778,Scotland,1354716484 +208618,778,social commentary,1354716451 +208618,780,action,1354717994 +208618,780,end of the world,1354717985 +208618,780,macho,1354717956 +208618,780,sci-fi,1354717966 +208618,780,Will Smith,1354717990 +208618,799,Michael J. Fox,1355321673 +208618,799,Peter Jackson,1355321675 +208618,1047,assassin,1354718627 +208618,1047,ironic,1354718618 +208618,1047,over-the-top action,1354718631 +208618,1047,Samuel L. Jackson,1354718610 +208618,1047,witty,1354718623 +208618,1089,dark comedy,1354716228 +208618,1089,nonlinear,1354716235 +208618,1127,aliens,1355167738 +208618,1127,Ed Harris,1355167729 +208618,1127,James Cameron,1355167731 +208618,1127,thought-provoking,1355167751 +208618,1127,Underwater,1355167736 +208618,1197,Andre the Giant,1354719474 +208618,1197,fairy tale,1354719449 +208618,1197,fantasy,1354719457 +208618,1197,sword fight,1354719460 +208618,1197,Wallace Shawn,1354719502 +208618,1198,adventure,1354718667 +208618,1198,archaeology,1354718665 +208618,1198,indiana jones,1354718672 +208618,1198,Nazis,1354718675 +208618,1288,Christopher Guest,1354717601 +208618,1288,mockumentary,1354717604 +208618,1288,music business,1354717608 +208618,1288,rock and roll,1354717606 +208618,1288,satire,1354717610 +208618,1320,franchise,1355167682 +208618,1358,Billy Bob Thornton,1354726340 +208618,1358,mental illness,1354726347 +208618,1396,black comedy,1354728476 +208618,1396,hackers,1354728478 +208618,1396,Quirky,1354728480 +208618,1449,Christopher Guest,1354717573 +208618,1449,mockumentary,1354717576 +208618,1449,quotable,1354717579 +208618,1449,satirical,1354717577 +208618,1449,small town,1354717586 +208618,1449,theater,1354717588 +208618,1517,screwball,1354727830 +208618,1517,spoof,1354727835 +208618,1597,Julia Roberts,1354901789 +208618,1597,Mel Gibson,1354901787 +208618,1597,thought-provoking,1354901795 +208618,1617,anti-hero,1354727132 +208618,1617,complex,1354727135 +208618,1617,detective thriller,1354727143 +208618,1617,film noir,1354727132 +208618,1653,directorial debut,1354655887 +208618,1653,genetic engineering,1354655876 +208618,1653,genetic selection,1354655871 +208618,1653,powerful ending,1354655865 +208618,1653,thought-provoking,1354655867 +208618,1653,underdog,1354655892 +208618,1673,dark comedy,1354716525 +208618,1673,ensemble cast,1354716527 +208618,1676,different from book,1355167978 +208618,1676,social commentary,1355167962 +208618,1704,friends,1354717852 +208618,1704,Great Screenplays,1354717837 +208618,1704,psychology,1354717840 +208618,1704,simplistic,1354717865 +208618,1729,meandering,1354717425 +208618,1729,pointless,1354717425 +208618,1729,Quentin Tarantino,1354717390 +208618,1729,quirky,1354717401 +208618,1729,Robert De Niro,1354717435 +208618,1729,violence,1354717425 +208618,1732,bowling,1354717215 +208618,1732,dark comedy,1354717220 +208618,1732,quirky,1354717226 +208618,1732,satirical,1354717228 +208618,1748,atmospheric,1354655776 +208618,1748,dark,1354655790 +208618,1748,sci-fi,1354655780 +208618,1748,thought-provoking,1354655769 +208618,1876,natural disaster,1355158386 +208618,1876,science,1355158389 +208618,1876,thought-provoking,1355158411 +208618,1917,americans save the world,1355158473 +208618,1917,bad science,1355158473 +208618,1917,Billy Bob Thornton,1355158426 +208618,1917,stylized,1355158433 +208618,1921,atmospheric,1354726432 +208618,1921,black and white,1354726429 +208618,1921,disturbing,1354726462 +208618,1921,existentialism,1354726434 +208618,1921,great soundtrack,1354726440 +208618,1921,low budget,1354726439 +208618,1921,mathematics,1354726436 +208618,1921,psychology,1354726455 +208618,1921,tense,1354726446 +208618,2020,witty,1354733644 +208618,2028,disturbing,1354720115 +208618,2143,dark fantasy,1354719297 +208618,2143,fairy tale,1354719308 +208618,2143,Ridley Scott,1354719321 +208618,2143,stylized,1354719335 +208618,2143,Tim Curry,1354719306 +208618,2143,Tom Cruise,1354719299 +208618,2143,unicorns,1354719313 +208618,2193,adventure,1354719388 +208618,2193,predictable,1354719367 +208618,2193,sword and sorcery,1354719374 +208618,2193,Val Kilmer,1354719376 +208618,2232,claustrophobic,1354726524 +208618,2232,existentialism,1354726521 +208618,2232,gore,1354726538 +208618,2232,intense,1354726519 +208618,2232,paranoia,1354726517 +208618,2232,psychology,1354726515 +208618,2232,twist,1354726529 +208618,2342,Hugh Dillon,1354717671 +208618,2342,mockumentary,1354717640 +208618,2342,rock and roll,1354717642 +208618,2342,twist ending,1354717657 +208618,2395,Bill Murray,1354717112 +208618,2395,bittersweet,1354717114 +208618,2395,clever,1354717121 +208618,2395,deadpan,1354717116 +208618,2395,irreverent,1354717130 +208618,2395,quirky,1354717118 +208618,2528,dystopia,1355168007 +208618,2580,black comedy,1354716284 +208618,2580,drugs,1354716297 +208618,2699,spiders,1355321791 +208618,2699,surprisingly good,1355321779 +208618,2723,Eddie Izzard,1356028200 +208618,2723,Greg Kinnear,1356028215 +208618,2723,lame superpowers,1356028217 +208618,2723,parody,1356028203 +208618,2723,Tom Waits,1356028205 +208618,2723,unheroic heroes,1356028208 +208618,2858,black comedy,1354726010 +208618,2858,social commentary,1354726005 +208618,2858,thought-provoking,1354726007 +208618,2883,simplistic,1354726303 +208618,2959,dark comedy,1354716843 +208618,2959,disturbing,1354716858 +208618,2959,Edward Norton,1354716845 +208618,2959,philosophical,1354716861 +208618,2959,psychology,1354716846 +208618,2959,social commentary,1354716848 +208618,2959,surreal,1354716875 +208618,2959,thought-provoking,1354716850 +208618,2959,twist ending,1354716852 +208618,2997,dark comedy,1354716903 +208618,2997,obsession,1354716918 +208618,2997,psychology,1354716906 +208618,2997,quirky,1354716908 +208618,2997,satirical,1354716910 +208618,2997,surreal,1354716912 +208618,2997,thought-provoking,1354716914 +208618,3176,creepy,1354727244 +208618,3176,obsession,1354727239 +208618,3176,psychology,1354727234 +208618,3259,epic,1354720342 +208618,3259,Ireland,1354720329 +208618,3259,Tom Cruise,1354720335 +208618,3354,bad science,1355158496 +208618,3354,Don Cheadle,1355158501 +208618,3355,bad ending,1354727309 +208618,3481,breaking the fourth wall,1354719881 +208618,3481,Jack Black,1354719871 +208618,3481,quirky,1354719868 +208618,3701,aliens,1355167824 +208618,3701,sociology,1355167824 +208618,3701,thought-provoking,1355167824 +208618,4011,british,1354716399 +208618,4011,dark comedy,1354716389 +208618,4011,ensemble cast,1354716393 +208618,4011,Guy Ritchie,1354716382 +208618,4011,Jason Statham,1354716385 +208618,4011,multiple storylines,1354716405 +208618,4011,quirky,1354716403 +208618,4029,David Mamet,1354717545 +208618,4226,memory,1354726608 +208618,4226,nonlinear,1354726610 +208618,4226,psychology,1354726606 +208618,4226,tense,1354726627 +208618,4226,twist ending,1354726612 +208618,4344,Nudity (Topless - Notable),1354901700 +208618,4378,Ben Kingsley,1354717342 +208618,4378,menacing,1354717365 +208618,4378,ruthless,1354717336 +208618,4427,great performances,1354733618 +208618,4427,Great Screenplays,1354733621 +208618,4427,intelligent,1354733624 +208618,4427,witty,1354733616 +208618,4448,Edward Norton,1356029429 +208618,4448,Robert De Niro,1356029432 +208618,4448,setting:Montreal,1356029435 +208618,4467,imagination,1354719048 +208618,4467,metafiction,1354719046 +208618,4467,story-in-a-story,1354719059 +208618,4467,Terry Gilliam,1354719041 +208618,4641,bittersweet,1354717068 +208618,4641,coming of age,1354717078 +208618,4641,deadpan,1354717070 +208618,4641,quirky,1354717072 +208618,4641,reflective,1354717084 +208618,4641,Scarlett Johansson,1354717095 +208618,4973,beautifully filmed,1354656104 +208618,4973,great soundtrack,1354656106 +208618,4973,Paris,1354656109 +208618,4973,quirky,1354656108 +208618,4973,romantic,1354656118 +208618,4973,stylized,1354656117 +208618,4979,dark comedy,1354716616 +208618,4979,dysfunctional family,1354716619 +208618,4979,ensemble cast,1354716621 +208618,4979,narrated,1354716651 +208618,4979,new york,1354716656 +208618,4979,Owen Wilson,1354716642 +208618,4979,quirky,1354716628 +208618,4979,witty,1354716662 +208618,5265,Black Comedy,1356029360 +208618,5265,Edward Norton,1356029358 +208618,5265,Robin Williams,1356029372 +208618,5298,dark comedy,1354716757 +208618,5298,Michel Gondry,1354716752 +208618,5298,satire,1354716762 +208618,5298,social commentary,1354716781 +208618,5388,Al Pacino,1354727188 +208618,5388,corruption,1354727180 +208618,5388,Robin Williams,1354727173 +208618,5388,thought-provoking,1354727176 +208618,5445,artificial intelligence,1354726774 +208618,5445,dystopia,1354726768 +208618,5445,Gross-out,1354726788 +208618,5445,Tom Cruise,1354726779 +208618,5463,americans save the world,1355158250 +208618,5463,bad plot,1355158269 +208618,5463,dragons,1355158263 +208618,5463,Matthew McConaughey,1355158257 +208618,5577,Claire Danes,1354716575 +208618,5577,Coming of Age,1354716568 +208618,5577,dark humor,1354716582 +208618,5577,quirky,1354716573 +208618,5673,Adam Sandler,1354716932 +208618,5673,anger,1354716991 +208618,5673,bittersweet,1354716938 +208618,5673,quirky,1354716941 +208618,5673,sad,1354716995 +208618,5673,underrated,1354716943 +208618,5902,dark comedy,1354716798 +208618,5902,Nicolas Cage,1354716803 +208618,5902,surreal,1354716810 +208618,5945,advertising,1354726201 +208618,5945,moralistic,1354726201 +208618,5945,satire,1354726174 +208618,6365,alternate reality,1355158199 +208618,6365,cyberpunk,1355158201 +208618,6365,existentialism,1355158209 +208618,6365,sequel,1355158214 +208618,6365,thought-provoking,1355158206 +208618,6365,virtual reality,1355158203 +208618,6385,coming of age,1354719744 +208618,6385,family traditions,1354719748 +208618,6385,feminism,1354719746 +208618,6385,maori,1354719757 +208618,6385,New Zealand,1354719750 +208618,6385,rebellion,1354719754 +208618,6867,friendship,1354656216 +208618,6867,interesting characters,1354656232 +208618,6867,melancholy,1354656238 +208618,6867,quirky,1354656223 +208618,6867,slow paced,1354656229 +208618,6867,understated,1354656245 +208618,6870,Clint Eastwood,1354727075 +208618,6870,Sean Penn,1354727073 +208618,6870,thriller,1354727069 +208618,6870,twist ending,1354727066 +208618,6870,working class,1354727071 +208618,6934,Keanu Reeves,1355151442 +208618,6934,messiah,1355151435 +208618,6934,religious overtones,1355151435 +208618,6934,sequel,1355151437 +208618,6947,historical,1354720166 +208618,6947,Russell Crowe,1354720173 +208618,6947,sailing,1354720176 +208618,6953,melancholic,1354727024 +208618,6953,Nonlinear,1354727036 +208618,7147,bittersweet,1354719546 +208618,7147,dreamlike,1354719539 +208618,7147,father-son relationship,1354719560 +208618,7147,surreal,1354719541 +208618,7147,thought-provoking,1354719543 +208618,7156,History,1354719947 +208618,7156,whitewash,1354719996 +208618,7158,cultural differences,1354726987 +208618,7158,heartbreaking,1354726977 +208618,7158,immigrants,1354726979 +208618,7158,misunderstanding,1354726992 +208618,7162,Civil War,1354720215 +208618,7162,epic,1354720399 +208618,7361,bittersweet,1354656087 +208618,7361,dreamlike,1354656079 +208618,7361,Jim Carrey,1354656075 +208618,7361,philosophy,1354656081 +208618,7361,thought-provoking,1354656084 +208618,7373,gothic,1356028288 +208618,7373,occult technology,1356028284 +208618,7373,Ron Perlman,1356028276 +208618,7373,steampunk,1356028274 +208618,8361,apocalypse,1355158341 +208618,8361,bad science,1355158360 +208618,8361,natural disaster,1355158335 +208618,8361,unintentional comedy,1355158331 +208618,8530,scotland,1354719711 +208618,8530,slow pacing,1354719720 +208618,8784,cliché ending,1354656197 +208618,8784,psychology,1354656205 +208618,8784,quirky romantic,1354656192 +208618,8784,romance,1354656190 +208618,8910,existentialism,1354716713 +208618,8910,intelligent,1354716718 +208618,8910,psychology,1354716728 +208618,8910,whimsical,1354716725 +208618,8949,dark comedy,1354726220 +208618,8949,dialogue driven,1354726237 +208618,8949,Melancholic,1354726223 +208618,8949,midlife crisis,1354726234 +208618,8950,Christian Bale,1354726587 +208618,8950,creepy,1354726583 +208618,8950,disturbing,1354726581 +208618,8950,memory,1354726568 +208618,8950,psychology,1354726576 +208618,8950,twist ending,1354726579 +208618,27815,feel-good,1354719780 +208618,27815,music,1354719781 +208618,27815,stereotypical,1354719785 +208618,30810,father-son relationship,1354716698 +208618,30810,stylized,1354716689 +208618,30810,visually appealing,1354716687 +208618,30810,whimsical,1354716693 +208618,33679,chemistry between actors,1354718588 +208618,33679,espionage,1354718565 +208618,33679,husband-wife relationship,1354718568 +208618,33679,Kick-Butt Women,1354718563 +208618,33794,atmospheric,1354718159 +208618,33794,Christian Bale,1354718141 +208618,33794,dark,1354718144 +208618,33794,superhero,1354718151 +208618,33880,bittersweet,1354717037 +208618,33880,deadpan,1354717039 +208618,33880,unique,1354717043 +208618,34150,Campy,1356028352 +208618,37733,complex characters,1354715866 +208618,37733,gore,1354715900 +208618,37857,alternate reality,1354719004 +208618,37857,dreamlike,1354719016 +208618,37857,neil gaiman,1354719008 +208618,37857,visually appealing,1354719010 +208618,38886,dysfunctional family,1354726130 +208618,38886,quirky,1354726125 +208618,38886,smart comedy,1354726127 +208618,44191,dystopia,1354726867 +208618,44191,philosophy,1354726870 +208618,44191,politics,1354726872 +208618,44191,social commentary,1354726869 +208618,44191,thought-provoking,1354726875 +208618,46970,Highly quotable,1354727444 +208618,46970,Will Ferrell,1354727447 +208618,46976,narrated,1355324326 +208618,46976,storytelling,1355324328 +208618,46976,Will Ferrell,1355324320 +208618,47610,costume drama,1354726737 +208618,47610,Edward Norton,1354726731 +208618,47610,magic,1354726720 +208618,47610,Paul Giamatti,1354726717 +208618,48043,dreamlike,1354656013 +208618,48043,emotional,1354656015 +208618,48043,philosophical,1354656018 +208618,48043,thought-provoking,1354656020 +208618,48043,visually appealing,1354656023 +208618,48082,dreamlike,1354656059 +208618,48082,Michel Gondry,1354656039 +208618,48082,psychological,1354656041 +208618,48082,stylized,1354656048 +208618,48696,deadpan,1354726060 +208618,48696,psychology,1354726055 +208618,48696,SUBURBAN DYSFUNCTION,1354726063 +208618,48738,Forest Whitaker,1354734673 +208618,48738,History,1354734677 +208618,48774,apocalypse,1354726895 +208618,48774,atmospheric,1354726896 +208618,48774,dystopia,1354726898 +208618,48774,social commentary,1354726903 +208618,48774,thought-provoking,1354726901 +208618,48780,dark,1354726652 +208618,48780,David Bowie,1354726668 +208618,48780,mystery,1354726685 +208618,48780,Scarlett Johansson,1354726647 +208618,53123,beautiful,1354719816 +208618,53123,bittersweet,1354719814 +208618,53123,complex characters,1354719820 +208618,53123,great soundtrack,1354719822 +208618,53123,Ireland,1354719813 +208618,53123,realistic,1354719826 +208618,53123,songwriting,1354719831 +208618,53318,alternate reality,1354733489 +208618,53318,surrealism,1354733493 +208618,54259,fairy tale,1354719419 +208618,54259,fantasy,1354719421 +208618,54259,fantasy world,1354719423 +208618,54259,Robert De Niro,1354719412 +208618,55267,single father,1355150100 +208618,55267,Steve Carrell,1355150101 +208618,55280,psychology,1354656278 +208618,55280,quirky,1354656280 +208618,55280,touching,1354656275 +208618,55290,Casey Affleck,1354727094 +208618,55290,conspiracy,1354727097 +208618,55290,morality,1354727091 +208618,55290,twist,1354727101 +208618,57669,beautiful scenery,1354716363 +208618,57669,british comedy,1354716348 +208618,57669,dark comedy,1354716345 +208618,57669,stylized,1354716354 +208618,60684,cinematography,1354726853 +208618,60684,social commentary,1354726847 +208618,60684,stylized,1354726849 +208618,63082,cinematography,1354719672 +208618,63082,India,1354719666 +208618,63082,love story,1354719668 +208618,63082,nonlinear,1354719662 +208618,63082,social commentary,1354719664 +208618,66097,animation,1354718948 +208618,66097,dark,1354718952 +208618,66097,fantasy world,1354718978 +208618,66097,stop motion,1354718960 +208618,66097,visually stunning,1354718984 +208618,68237,artificial intelligence,1354655969 +208618,68237,directorial debut,1354655956 +208618,68237,psychological,1354655972 +208618,68237,psychology,1354655960 +208618,68237,twist ending,1354655964 +208618,68791,Anton Yelchin,1355151318 +208618,68791,bad acting,1355151307 +208618,68791,Christian Bale,1355151302 +208618,68791,FIGHTING THE SYSTEM,1355151327 +208618,68791,franchise,1355151311 +208618,68791,futuristic,1355151328 +208618,68791,Helena Bonham Carter,1355151316 +208618,68791,post-apocalyptic,1355151329 +208618,68791,weak plot,1355151306 +208618,69951,deal with the devil,1354719148 +208618,69951,imagination,1354719145 +208618,69951,immortality,1354719158 +208618,69951,surreal,1354719143 +208618,69951,Tom Waits,1354719139 +208618,70862,documentary,1354717689 +208618,70862,guitar,1354717721 +208618,70862,intimate,1354717721 +208618,70862,rock and roll,1354717702 +208618,70862,The Edge,1354717727 +208618,76251,dark comedy,1354733405 +208618,76251,satire,1354733411 +208618,76251,superhero,1354733422 +208618,79132,alternate reality,1354726809 +208618,79132,complicated,1354726817 +208618,79132,philosophy,1354726820 +208618,79132,thought-provoking,1354726813 +208618,79702,quirky,1354733446 +208618,79702,stylized,1354733440 +208618,79702,surreal,1354733441 +208618,79702,visually appealing,1354733438 +208618,89745,action,1354718198 +208618,89745,humorous,1354718201 +208618,89745,predictable,1354718178 +208618,89745,visually stunning,1354718192 +208618,89904,original,1354719634 +208618,89904,silent movie,1354719633 +208618,89904,visually appealing,1354719638 +208618,90645,historically inaccurate,1354733558 +208618,90645,Shakespeare,1354733561 +208618,90866,existentialism,1354719600 +208618,90866,Paris,1354719594 +208618,90866,Sacha Baron Cohen,1354719606 +208618,90866,visually appealing,1354719592 +208618,91658,David Fincher,1354716079 +208618,91658,mystery,1354716063 +208618,91658,revenge,1354716061 +208618,91658,strong female lead,1354716046 +208618,93363,childish plot,1355167908 +208618,94959,fonts,1354656146 +208618,94959,original,1354656151 +208618,94959,quirky,1354656153 +208618,94959,stylized,1354656158 +208618,94959,Wes Anderson,1354656148 +208618,95510,Andrew Garfield,1354718216 +208618,95510,Emma Stone,1354718220 +208618,95510,nerds kicking butt,1354718332 +208618,95510,Spider-Man,1354718222 +208618,97938,animals,1355149339 +208618,97938,cinematography,1355149270 +208618,97938,ocean,1355149318 +208618,97938,spiritual journey,1355149318 +208618,97938,visual effects,1355149272 +208622,6,1,1222168380 +208622,47044,2,1222168754 +208661,27904,rotoscope,1173274174 +208671,32587,Crime,1358282930 +208671,32587,multiple storylines,1358282920 +208671,32587,revenge,1358282916 +208671,32587,Sci-Fi,1358282926 +208671,32587,surrealism,1358282923 +208673,111,Martin Scorsese,1282544914 +208673,376,meryl streep,1282546291 +208673,991,Julia Roberts,1282552271 +208673,1171,mockumentary,1282550529 +208673,1178,Stanley Kubrick,1282551422 +208673,1179,con artists,1282547433 +208673,1199,dark comedy,1282545835 +208673,1199,surreal,1282545840 +208673,1209,Spaghetti Western,1282560414 +208673,1238,quirky,1282550945 +208673,1245,Coen Brothers,1282548378 +208673,1280,China,1282551075 +208673,1280,social commentary,1282551069 +208673,1292,satire,1282548297 +208673,1387,Steven Spielberg,1282544833 +208673,1485,jim carrey,1282545012 +208673,2474,Martin Scorsese,1282549831 +208673,2724,Julia Roberts,1282546734 +208673,2726,Stanley Kubrick,1282553510 +208673,2858,dark comedy,1282544982 +208673,2858,surrealism,1282544987 +208673,3334,Film Noir,1282550345 +208673,3334,Humphrey Bogart,1282550338 +208673,3476,surreal,1282547768 +208673,3494,John Wayne,1282553179 +208673,3681,spaghetti western,1282548319 +208673,3683,Coen Brothers,1282547657 +208673,3752,Jim Carrey,1282546247 +208673,4002,Steve Martin,1282546303 +208673,4103,Steven Spielberg,1282548677 +208673,4874,Kevin Spacey,1282546423 +208673,4881,Coen Brothers,1282547378 +208673,5449,Adam Sandler,1282548533 +208673,5816,magic,1282544873 +208673,6001,Martin Scorsese,1282551200 +208673,6001,Robert De Niro,1282551198 +208673,6064,Humphrey Bogart,1282579136 +208673,6440,Coen Brothers,1282548019 +208673,6440,quirky,1282548029 +208673,6957,black comedy,1282547394 +208673,7143,historical,1282544970 +208673,7367,Coen Brothers,1282549412 +208673,7419,Martin Scorsese,1282552209 +208673,8758,Walter Matthau,1282614732 +208673,26259,Max von Sydow,1282558041 +208673,27808,Adam Sandler,1282548796 +208673,40959,Billy Bob Thornton,1282555506 +208673,40959,black comedy,1282555510 +208673,48304,Mel Gibson,1282547493 +208673,49412,Jimmy Stewart,1282544700 +208673,50068,Clint Eastwood,1282547848 +208673,55078,Thomas Hardy,1282547598 +208673,55820,coen brothers,1282544842 +208673,71464,coen brothers,1282547951 +208673,74156,Mel Gibson,1282551025 +208673,74266,Melvyn Douglas,1282557833 +208673,74458,Martin Scorsese,1282545033 +208673,77479,Julia Sweeney,1282551590 +208767,260,classic sci-fi,1436776420 +208767,260,space adventure,1436776424 +208767,122882,hard trash,1436776541 +208773,84615,John C. Reilly,1312733782 +208808,4963,Brad Pitt,1440255604 +208808,4963,George Clooney,1440255601 +208808,4963,heist,1440255608 +208808,55765,Denzel Washington,1440255301 +208808,55765,Ridley Scott,1440255315 +208808,59315,Robert Downey Jr.,1440255573 +208808,59315,superhero,1440255570 +208808,106920,artificial intelligence,1440255545 +208823,241,dogs,1360312526 +208823,241,reincarnation,1360312492 +208823,241,talking animals,1360312455 +208823,745,Aardman,1360529605 +208823,745,british,1360529609 +208823,745,claymation,1360529637 +208823,745,invention,1360529659 +208823,745,short films,1360529620 +208823,745,stop motion,1360529641 +208823,745,Wallace & Gromit,1360529633 +208823,750,black and white,1358696354 +208823,750,black comedy,1358696341 +208823,750,classic,1358696988 +208823,750,cold war,1358696360 +208823,750,nuclear war,1358696583 +208823,750,Stanley Kubrick,1358696404 +208823,1090,Charlie Sheen,1360095379 +208823,1090,Vietnam War,1360095384 +208823,1090,war,1360095395 +208823,1090,Willem Dafoe,1360095382 +208823,1092,Erotic,1359220431 +208823,1092,Michael Douglas,1359220438 +208823,1092,Sharon Stone,1359220440 +208823,1092,thriller,1359220495 +208823,1148,british,1360527376 +208823,1148,claymation,1360527467 +208823,1148,penguins,1360527404 +208823,1148,stop motion,1360527390 +208823,1148,Wallace & Gromit,1360527395 +208823,1223,british,1360527315 +208823,1223,moon,1360527324 +208823,1223,robots,1360527330 +208823,1223,short,1360527301 +208823,1223,Wallace & Gromit,1360527294 +208823,1704,genius,1360082775 +208823,1704,inspirational,1360082729 +208823,1704,Matt Damon,1360082629 +208823,1704,psychology,1360082667 +208823,1704,Robin Williams,1360082630 +208823,1806,animals,1361606773 +208823,1806,dialogue,1361606740 +208823,1806,funny,1361606707 +208823,1806,parrots,1361606761 +208823,1806,story,1361606704 +208823,1806,talking animals,1361606700 +208823,1835,Death,1358270731 +208823,1835,Meg Ryan,1358267426 +208823,1835,Nicolas Cage,1358267417 +208823,1835,remake,1358267499 +208823,2376,Christopher Walken,1359994948 +208823,2376,James Bond,1359994961 +208823,2376,Roger Moore,1359995057 +208823,2393,Based on a TV show,1367778793 +208823,2393,Patrick Stewart,1367778780 +208823,2393,science fiction,1367778795 +208823,2393,Star Trek,1367778720 +208823,2394,animation,1359016638 +208823,2394,dreamworks,1359016763 +208823,2394,religion,1359016710 +208823,2394,slavery,1359016716 +208823,2497,based on a book,1360703416 +208823,2497,romance,1360703291 +208823,2497,tear-jerker,1360703429 +208823,2529,post-apocalyptic,1355231764 +208823,2529,science fiction,1355231780 +208823,2539,Billy Crystal,1358184816 +208823,2539,comedy,1358184809 +208823,2539,mafia,1358184761 +208823,2539,organized crime,1358184773 +208823,2539,psychiatrist,1358184796 +208823,2539,psychology,1358184704 +208823,2539,Robert De Niro,1358184697 +208823,2542,black comedy,1360602299 +208823,2542,British,1360602294 +208823,2542,drugs,1360602308 +208823,2542,multiple storylines,1360602324 +208823,2542,organized crime,1360602318 +208823,2542,violence,1360602321 +208823,2761,1950s,1359103272 +208823,2761,animation,1359103177 +208823,2761,Atomic bomb,1359103339 +208823,2761,based on a book,1359103229 +208823,2761,military,1359103309 +208823,2761,paranoia,1359103258 +208823,2761,robots,1359103249 +208823,2948,James Bond,1360004743 +208823,2948,Sean Connery,1360004754 +208823,2950,castaway,1355224011 +208823,2989,assassin,1358097093 +208823,2989,car chase,1358097097 +208823,2989,James Bond,1358097016 +208823,2989,Roger Moore,1358097018 +208823,2990,007,1361033024 +208823,2990,James Bond,1361032804 +208823,2990,Timothy Dalton,1361032964 +208823,3130,adapted from:book,1360426045 +208823,3130,Bruce Willis,1360425959 +208823,3130,courtroom drama,1360426535 +208823,3130,media,1360426911 +208823,3130,Morgan Freeman,1360425939 +208823,3130,Tom Hanks,1360425953 +208823,3429,Aardman studios,1360609357 +208823,3429,claymation,1360609340 +208823,3429,short,1360609569 +208823,3483,animation,1359278651 +208823,3483,Dreamworks,1359278648 +208823,3635,james bond,1357843173 +208823,3635,submarine,1357843188 +208823,3638,James Bond,1357999986 +208823,3638,Roger Moore,1357999993 +208823,3638,space travel,1358000025 +208823,3988,based on a book,1359192713 +208823,3988,Christmas,1359192779 +208823,3988,comedy,1359192824 +208823,3988,Dr. Seuss,1359192707 +208823,3988,Jim Carrey,1359192699 +208823,4005,assassin,1360341664 +208823,4005,James Bond,1360341651 +208823,4005,Timothy Dalton,1360341638 +208823,4014,based on a book,1360964095 +208823,4014,colourful,1360964174 +208823,4014,food/cooking,1360964341 +208823,4014,france,1360964134 +208823,4014,Johnny Depp,1360964073 +208823,4014,prejudice,1360964156 +208823,4014,single parents,1360964361 +208823,4014,small town,1360964110 +208823,4016,Disney animated feature,1360489039 +208823,4366,ancient civilization,1358248198 +208823,4366,Atlantis,1358248183 +208823,4366,Disney,1358248205 +208823,4366,Michael J. Fox,1358248176 +208823,4366,steampunk,1358248185 +208823,4621,babies,1361694958 +208823,4621,Bruce Willis,1361694899 +208823,4621,John Travolta,1361694906 +208823,4621,Kirstie Alley,1361694933 +208823,4621,love,1361695087 +208823,4621,Talking Babies,1361695073 +208823,4621,technique:voice over,1361695132 +208823,4643,dystopia,1358352868 +208823,4643,evolution,1358356419 +208823,4643,Helena Bonham Carter,1358354652 +208823,4643,Mark Wahlberg,1358352900 +208823,4643,post-apocalyptic,1358352909 +208823,4643,predictable,1358354312 +208823,4643,remake,1358353117 +208823,4643,sci fi,1358354718 +208823,4643,slavery,1358352924 +208823,4643,Tim Burton,1358352870 +208823,4874,intellectual,1356722728 +208823,4874,Kevin Spacey,1356722774 +208823,4874,psychiatrist,1356722793 +208823,4874,sci-fi,1356722748 +208823,5444,aliens,1361348999 +208823,5444,animation,1361349001 +208823,5444,Disney,1361349046 +208823,5444,family,1361349050 +208823,5444,Hawaii,1361349052 +208823,5452,talking animals,1361865673 +208823,5617,BDSM,1358282255 +208823,5617,black comedy,1358282257 +208823,5617,dark comedy,1358282271 +208823,5617,erotic,1358282276 +208823,5617,Maggie Gyllenhaal,1358282278 +208823,5617,relationships,1358282298 +208823,5882,animation,1358070779 +208823,5882,pirates,1358070700 +208823,5882,space,1358070706 +208823,5882,steampunk,1358070708 +208823,5882,treasure hunt,1358070713 +208823,5900,Billy Crystal,1358198798 +208823,5900,comedy,1358198824 +208823,5900,Mafia,1358198805 +208823,5900,organized crime,1358198817 +208823,5900,psychiatrist,1358198815 +208823,5900,Robert De Niro,1358198800 +208823,6536,animation,1359361514 +208823,6536,Dreamworks,1359361497 +208823,6536,falling in love,1359361532 +208823,6536,pirates,1359361501 +208823,6889,2D animation,1362471498 +208823,6889,talking animals,1362471513 +208823,7093,Jack Lemmon,1355762175 +208823,7093,Walter Matthau,1355762175 +208823,7570,James Bond,1359134355 +208823,7570,Roger Moore,1359134358 +208823,7573,James Bond,1358609314 +208823,7573,remake,1358609542 +208823,7573,Sean Connery,1358609329 +208823,7701,family comedy,1361776875 +208823,7701,John Travolta,1361776824 +208823,7701,Kirstie Alley,1361776866 +208823,7701,lame sequel,1361776830 +208823,7701,Talking Babies,1361776816 +208823,8807,Neil Patrick Harris,1358530860 +208823,8807,road trip,1358530872 +208823,8807,stoner comedy,1358530869 +208823,8907,Animation,1359533176 +208823,8907,Dreamworks,1359533169 +208823,8907,fish,1359533295 +208823,8907,generic,1359533185 +208823,8907,watch the credits,1359533418 +208823,27706,dark comedy,1357849875 +208823,27706,jim carrey,1357849839 +208823,27706,macabre,1357849868 +208823,27706,siblings,1357849858 +208823,32031,business,1358757235 +208823,32031,Ewan McGregor,1358757152 +208823,32031,father-son relationship,1358757212 +208823,32031,inventor,1358757243 +208823,32031,Robin Williams,1358757155 +208823,32031,robots,1358757227 +208823,36527,Anthony Hopkins,1359044220 +208823,36527,geeks,1359044353 +208823,36527,Gwyneth Paltrow,1359044223 +208823,36527,mathematics,1359044235 +208823,36527,mental illness,1359044242 +208823,37475,domestic violence,1356209196 +208823,37475,grumpy old man,1356209188 +208823,37475,Jennifer Lopez,1356209182 +208823,37475,Morgan Freeman,1356209129 +208823,37475,Robert Redford,1356209132 +208823,38038,Aardman,1360570280 +208823,39183,Heath Ledger,1358712564 +208823,39183,homosexuality,1358712570 +208823,39183,Love story,1358712583 +208823,39183,romance,1358712586 +208823,40339,aliens,1361085615 +208823,40339,animation,1361085617 +208823,40339,bland,1361085642 +208823,40339,bullying,1361085621 +208823,40339,dumb,1361085604 +208823,40339,father-son relationship,1361085627 +208823,40339,silly,1361085649 +208823,40581,Amy Smart,1365264622 +208823,40581,Ryan Reynolds,1365264602 +208823,45635,1950s,1357661318 +208823,45635,Nudity (Full Frontal),1357661446 +208823,45635,sexual,1357661424 +208823,46948,animation,1360398013 +208823,46948,haunted house,1360398005 +208823,46948,not funny,1360397981 +208823,47124,animation,1360915020 +208823,47124,bugs,1360915033 +208823,51255,british comedy,1361738778 +208823,51255,parody,1361738783 +208823,51255,Simon Pegg,1361738829 +208823,51255,stupid,1361738929 +208823,52287,based on book,1358413599 +208823,52287,inventor,1358413365 +208823,52287,orphans,1358413359 +208823,52287,Stephen J. Anderson,1358413545 +208823,52287,time travel,1358413327 +208823,55245,Jessica Alba,1357821596 +208823,55245,Random Sex,1357821603 +208823,58299,based on a book,1359619877 +208823,58299,Dr. Seuss,1359619866 +208823,58299,Jim Carrey,1359619896 +208823,58299,talking animals,1359619921 +208823,58299,world inside another world,1359619926 +208823,59022,John Cho,1358526685 +208823,59022,kal penn,1358526699 +208823,59022,Neil Patrick Harris,1358530729 +208823,59022,sequel,1358526766 +208823,59022,stoner comedy,1358526521 +208823,59022,Unrated,1358526777 +208823,59387,1920s,1358456006 +208823,59387,fantasy world,1358456014 +208823,59387,heartbreaking,1358456056 +208823,59387,hospital,1358456049 +208823,59387,imagination,1358456012 +208823,59387,storytelling,1358456062 +208823,59387,suicide attempt,1358456031 +208823,60069,Animation,1355232203 +208823,60069,dystopia,1355232197 +208823,60069,robots,1355232215 +208823,60069,Sci-Fi,1355232140 +208823,61248,cars with weapons,1360168927 +208823,61248,Jason Statham,1360168925 +208823,64116,Anthony Leondis,1358499279 +208823,64116,evil scientist,1358499322 +208823,64116,John Cusack,1358499254 +208823,64116,Steve Buscemi,1358499257 +208823,64285,Aardman,1360531705 +208823,64285,bakery,1360531708 +208823,64285,british,1360531710 +208823,64285,claymation,1360531712 +208823,64285,serial killer,1360531723 +208823,64285,short,1360531738 +208823,64285,Wallace & Gromit,1360531745 +208823,65577,animation,1362558654 +208823,65577,talking animals,1362558704 +208823,65982,fantasy,1355585774 +208823,65982,plot holes,1355585786 +208823,65982,sci-fi,1355585706 +208823,65982,vikings,1355585765 +208823,67408,animation,1360323839 +208823,67894,finnish,1423255773 +208823,69122,absurd,1357053078 +208823,69122,comedy,1357053080 +208823,69122,Las Vegas,1357053070 +208823,69122,watch the credits,1357053214 +208823,69442,finnish,1423255750 +208823,70599,Eric Bana,1361826112 +208823,70599,heartbreaking,1361826045 +208823,70599,Rachel McAdams,1361826114 +208823,70599,time travel,1361825999 +208823,71264,animation,1360137089 +208823,71264,father-son relationship,1360137095 +208823,71264,inventor,1360137104 +208823,71264,quirky,1360137402 +208823,71899,animation,1362035191 +208823,71899,claymation,1362035195 +208823,71899,dreary,1362035236 +208823,71899,mental illness,1362035248 +208823,71899,sad,1362035205 +208823,71899,slow paced,1362035273 +208823,72209,animation,1359965622 +208823,72209,dystopia,1359965622 +208823,72209,robots,1359965627 +208823,72294,Charles Dickens,1355735612 +208823,72294,Christmas,1355735625 +208823,72294,Jim Carrey,1355735615 +208823,72356,Funny,1360324082 +208823,72356,Pixar,1360324045 +208823,72356,short film,1360324038 +208823,72701,50's & 60's,1361170320 +208823,72701,aliens,1361170332 +208823,72701,animated,1361170335 +208823,72701,astronauts,1361170451 +208823,72737,1920s,1360224906 +208823,72737,animation,1360224791 +208823,72737,music,1360224961 +208823,72737,New Orleans,1360224773 +208823,72737,plot,1360224811 +208823,72737,talking animals,1360224924 +208823,72737,Voodoo,1360224769 +208823,73501,finnish,1423255756 +208823,74681,finnish,1423255760 +208823,76077,1980s,1368814945 +208823,76077,alternate reality,1368814937 +208823,76077,time travel,1368814935 +208823,79091,funny,1357809110 +208823,79091,heartwarming,1357809114 +208823,79091,mad scientist,1357809098 +208823,80615,Based on a book,1358843982 +208823,80615,epic adventure,1358844019 +208823,80615,good versus evil,1358843990 +208823,80615,talking animals,1358843996 +208823,80615,Zack Snyder,1358844197 +208823,81564,animated,1358323630 +208823,81564,anti-hero,1358323633 +208823,81564,good versus evil,1358324094 +208823,81564,superheroes,1358324153 +208823,81564,Will Ferrell,1358324211 +208823,81847,animation,1358930571 +208823,82152,Beauty and the Beast,1359317548 +208823,82152,boring,1359317815 +208823,82152,Neil Patrick Harris,1359317541 +208823,82242,Christmas,1356993107 +208823,82242,Finnish,1356993109 +208823,82242,male nudity,1356993120 +208823,82242,Santa Claus,1356993136 +208823,83480,demons,1355694683 +208823,83480,Nicolas Cage,1355694664 +208823,83480,witch,1355694686 +208823,84553,finnish,1423255764 +208823,85261,animation,1359448124 +208823,85261,Mars,1359448169 +208823,85736,Pixar,1360237330 +208823,85736,short film,1360237316 +208823,86059,animation & live action interact,1362731845 +208823,86298,adventure,1360323488 +208823,86298,animation,1360323484 +208823,86298,birds,1360323490 +208823,86298,parrots,1360323495 +208823,86298,Rio de Janeiro,1360323499 +208823,86298,talking animals,1360323482 +208823,86911,Bangkok,1357673319 +208823,86911,Zach Galifianakis,1357673309 +208823,88699,cars,1360168992 +208823,88699,cars with weapons,1360168992 +208823,88699,Danny Trejo,1360169205 +208823,88699,Luke Goss,1360169229 +208823,88699,prison,1360168947 +208823,88954,Christmas,1358683415 +208823,88954,Neil Patrick Harris,1358683433 +208823,88954,Stoner Comedy,1358683426 +208823,91500,based on a book,1357938664 +208823,91500,dystopia,1357938677 +208823,91500,reality TV,1357938693 +208823,91500,science fiction,1357938699 +208823,91500,slow paced,1357938882 +208823,92507,Camera work,1357070063 +208823,92507,Denzel Washington,1357070058 +208823,92507,espionage,1357070074 +208823,92507,Ryan Reynolds,1357070055 +208823,93272,based on a book,1358673494 +208823,93272,Commercialization,1358673517 +208823,93272,Environmental Preservation,1358673507 +208823,94833,Aardman,1360830315 +208823,94833,Aardman studios,1360830318 +208823,94833,animation,1360830325 +208823,94833,claymation,1360830322 +208823,94833,London,1360830332 +208823,94833,pirates,1360830373 +208823,94833,watch the credits,1360830348 +208823,96281,animation,1360759076 +208823,96281,ghosts,1360759069 +208823,96281,small town,1360759278 +208823,96281,stop motion,1360759058 +208823,96281,supernatural,1360759300 +208823,96281,witch,1360759236 +208823,96281,zombies,1360759063 +208823,96417,Adrenaline,1355952260 +208823,96417,bicycling,1355952234 +208823,96417,bike messengers,1355952255 +208823,96417,Joseph Gordon-Levitt,1355952209 +208823,96417,police corruption,1355952245 +208823,96610,Bruce Willis,1356698042 +208823,96610,Joseph Gordon-Levitt,1356698040 +208823,96610,organized crime,1356698068 +208823,96610,sci-fi,1356698047 +208823,96610,time travel,1356698051 +208823,96969,disability,1361997826 +208823,96969,friendship,1361997739 +208823,96969,Morgan Freeman,1361997646 +208823,96969,touching,1361997856 +208823,96969,writers,1361997651 +208823,97172,frankenstein,1357895889 +208823,97172,Tim Burton,1357895882 +208823,97225,animation,1357982748 +208823,97225,monsters,1357982743 +208823,97225,silly,1357982761 +208823,97913,animation,1361520192 +208823,97913,disney,1361520206 +208823,97913,heroism,1361520215 +208823,97913,racing,1361520314 +208823,97913,video games,1361520229 +208823,97913,watch the credits,1361520225 +208823,98243,animation,1362642814 +208823,98243,creative plot,1362642653 +208823,98243,magical,1362642810 +208823,98243,playful,1362642754 +208823,98243,watch the credits,1362642782 +208823,100302,evil corporation,1361911701 +208823,100302,love story,1361911626 +208823,100302,scifi,1361911844 +208823,103655,Jeff Bridges,1383419430 +208823,103655,Ryan Reynolds,1383419424 +208849,74458,asylum,1442041545 +208849,74458,mystery,1442041562 +208849,74458,story,1442041593 +208849,74458,twist ending,1442041556 +208849,99912,horror,1442041701 +208860,170,lame,1141586599 +208860,1405,very funny,1141586525 +208860,8950,boring,1141586695 +208860,8950,Overrated,1141586695 +208878,6539,seen more than once,1190238506 +208882,2571,philosophy,1263802474 +208882,2571,Special Effects,1263802473 +208882,31410,factual,1432579307 +208914,260,Classic,1438133435 +208914,260,Science fiction,1438133445 +208942,42728,Sewell's acting was absolutely fantastic - the portrayal of love,1250419318 +208942,42728,The fact that Isolde betrayed a man as honourable as Lord Marke. I can't stand people who have affairs.,1250419318 +208942,42728,the look in his eye when he found out his beloved Isolde had betrayed him. One of my favourite movies of all time,1250419318 +208945,109487,plot holes,1445806313 +208945,112183,pretentious,1445806148 +208966,260,action,1431451128 +208966,260,sci-fi,1431451138 +209060,68157,black comedy,1427380950 +209060,68157,IMDB Top 250,1427380938 +209066,3693,Troma,1153801086 +209066,4642,glbt,1153798122 +209066,5323,Jason in Space,1153799511 +209066,5996,James Franco,1153799436 +209066,7044,David Lynch,1153798622 +209066,34048,weak ending,1153799564 +209068,260,#boring,1433131053 +209092,2944,AFI 100 (Thrills),1196702153 +209092,2944,first two-thirds best,1196702141 +209092,3949,Darren Aronofsky,1196698611 +209092,5995,getto,1196699042 +209092,7438,action homage,1196753079 +209092,7438,Eric's Dvds,1196752656 +209092,7438,Quentin Tarantino,1196752642 +209092,55247,Alaska,1196702681 +209092,55247,dfdfdf,1196760003 +209092,55247,ffff,1196760501 +209092,55247,ffffffffffffffffff,1196760517 +209092,55247,fgffgfgfg,1196760509 +209092,55247,fgfg,1196760523 +209092,55247,nature wildlife,1196756125 +209092,55247,Nudity (Topless),1196703464 +209092,55247,sdasd,1196702462 +209092,55247,Sean Penn,1196703468 +209092,55247,self discovery,1196703521 +209092,55247,ssss,1196702455 +209092,55247,ssssa,1196759809 +209092,55247,travel,1196756122 +209092,55247,vfgfg,1196760504 +209092,55247,werwer,1196760133 +209092,55247,yyyy,1196761416 +209092,55253,dddd,1196776392 +209092,55253,ddddd,1196777266 +209092,55253,dddddd,1196776396 +209092,55253,dfgdfg,1196778258 +209124,47,brad pitt,1446524105 +209124,47,disturbing,1446524107 +209124,47,horror,1446524122 +209124,47,Kevin Spacey,1446524117 +209124,47,morgan freeman,1446524103 +209124,47,mystery,1446524120 +209124,47,philosophical,1446524113 +209124,47,twist ending,1446524100 +209124,1127,Ed Harris,1446470589 +209124,1127,James Cameron,1446470593 +209124,1127,Michael Biehn,1446470584 +209124,1200,James Cameron,1446470311 +209124,1200,Michael Biehn,1446470548 +209124,1200,military,1446470316 +209124,1200,Sigourney Weaver,1446470560 +209124,1200,strong femal lead,1446470323 +209124,1213,adapted from:book,1446470152 +209124,1213,gangsters,1446470142 +209124,1213,mafia,1446470159 +209124,1213,Martin Scorsese,1446470107 +209124,1213,robert de niro,1446470114 +209124,1221,Al Pacino,1446470069 +209124,1221,Francis Ford Coppola,1446470084 +209124,1221,Mafia,1446470077 +209124,1221,Robert De Niro,1446470065 +209124,1242,Cary Elwes,1446505463 +209124,1242,Denzel Washington,1446505475 +209124,1242,Matthew Broderick,1446505456 +209124,1242,Morgan Freeman,1446505477 +209124,2268,courtroom,1446524209 +209124,2268,Kiefer Sutherland,1446524221 +209124,2268,trial,1446524217 +209124,2657,Tim Curry,1446505576 +209124,2657,transgender,1446505572 +209124,2746,Musical,1446505551 +209124,6377,Animated,1446470246 +209124,6377,CGI,1446470221 +209124,6377,Disney,1446470241 +209124,6377,Pixar,1446470238 +209124,7143,Tom Cruise,1446505434 +209124,94864,Charlize Theron,1446470625 +209124,94864,Michael Fassbender,1446470627 +209124,94864,Ridley Scott,1446470632 +209138,2710,not bad,1137116652 +209138,2710,wouldn't see again,1137116652 +209150,47,atmospheric,1435180877 +209150,47,dark,1435180874 +209150,47,investigation,1435180871 +209150,47,serial killer,1435180864 +209150,208,post-apocalyptic,1433951262 +209150,260,classic,1433947678 +209150,260,scifi,1433947669 +209150,296,masterpiece,1434705380 +209150,296,tarantino,1434705380 +209150,296,violence,1434705380 +209150,541,artificial intelligence,1433948408 +209150,541,based on a book,1433948426 +209150,541,dystopia,1433948391 +209150,541,sci-fi,1433948395 +209150,590,historical,1433948351 +209150,590,indians,1433948339 +209150,1080,black comedy,1434705174 +209150,1080,Monty Python,1434705170 +209150,1090,war,1435218982 +209150,1291,Adventure,1433950238 +209150,1291,Holy Grail,1433950241 +209150,1291,Sean Connery,1433950246 +209150,1610,submarine,1435088996 +209150,1610,thriller,1435088993 +209150,1610,Tom Clancy,1435088985 +209150,1672,John Grisham,1433949791 +209150,3753,historical,1433949003 +209150,4022,adventure,1433950899 +209150,4022,stranded,1433950912 +209150,4022,SURVIVAL,1433950892 +209150,5903,dystopia,1441232679 +209150,55908,excellent script,1433951446 +209150,55908,one set,1433951453 +209150,55908,philosophical,1433951432 +209150,56174,post-apocalyptic,1433951013 +209150,56174,survival,1433951019 +209150,63072,dystopia,1451718698 +209150,63072,survival,1451718693 +209150,64839,sports,1434705245 +209150,106002,based on a book,1441233065 +209150,107406,dystopia,1433951340 +209150,107406,illogical,1433951335 +209150,107406,poor plot,1433951327 +209150,109487,artificial intelligence,1433950463 +209150,109487,Christopher Nolan,1433950429 +209150,109487,long,1433950505 +209150,109487,physics,1433950436 +209150,109487,relativity,1433950443 +209150,109487,sci-fi,1433950480 +209150,109487,space,1433950483 +209150,109487,thought-provoking,1433950438 +209150,112556,mindfuck,1433950658 +209150,112556,predictable,1433950646 +209150,115569,depressing,1433950368 +209150,115713,philosophical,1441232842 +209150,115713,sci-fi,1441232847 +209150,115713,we're done,1441232756 +209150,116823,dragging,1434705056 +209150,116823,dystopia,1434704909 +209150,122882,beautiful,1434470049 +209150,122882,dystopian,1434470006 +209150,122882,pacing,1434470109 +209150,122882,post apocalypse,1434470008 +209150,122882,visually appealing,1434470021 +209150,149650,Arthur C. Clarke,1453473349 +209150,149650,scifi,1453473236 +209152,6075,class issues,1428323020 +209152,6075,disability,1428323020 +209152,6075,swedish,1428323020 +209158,296,masterpiece,1421662340 +209158,296,splatter,1421662340 +209158,296,tarantino,1421662340 +209158,356,cult,1430711186 +209158,356,humorous,1430711186 +209158,356,reflective,1430711186 +209161,6,need to own,1165690880 +209161,16,need to own,1165690945 +209161,29,need to own,1165690932 +209161,101,need to own,1165690959 +209161,150,need to own,1166862968 +209161,215,need to own,1165690974 +209161,318,need to own,1165690434 +209161,898,need to own,1165690686 +209161,903,need to own,1165691035 +209161,905,need to own,1165690864 +209161,908,need to own,1165690701 +209161,916,need to own,1165690449 +209161,930,need to own,1165691096 +209161,1199,need to own,1165691194 +209161,1206,need to own,1165690928 +209161,1209,need to own,1165691091 +209161,1212,need to own,1165691040 +209161,1225,need to own,1165690995 +209161,1234,need to own,1165690628 +209161,1237,need to own,1165691064 +209161,1244,need to own,1165690478 +209161,1245,need to own,1165690728 +209161,1247,need to own,1165690518 +209161,1258,need to own,1165690638 +209161,1260,need to own,1165691114 +209161,1263,need to own,1165691177 +209161,1266,need to own,1165690607 +209161,1267,need to own,1165690742 +209161,1269,need to own,1165691223 +209161,1719,need to own,1165690623 +209161,1921,need to own,1165690675 +209161,1945,need to own,1165690690 +209161,2022,need to own,1165691123 +209161,2183,need to own,1165690749 +209161,2324,need to own,1165690495 +209161,2395,need to own,1165690655 +209161,2726,need to own,1165690787 +209161,2731,need to own,1165691232 +209161,2959,need to own,1165690902 +209161,2973,need to own,1165690916 +209161,2997,need to own,1165690568 +209161,3006,need to own,1165690501 +209161,3089,need to own,1165691204 +209161,3134,need to own,1165690514 +209161,3147,need to own,1165691142 +209161,3535,need to own,1165690990 +209161,3681,need to own,1165690897 +209161,3730,need to own,1165691181 +209161,3788,need to own,1165691199 +209161,3911,need to own,1165690971 +209161,3949,need to own,1165690456 +209161,4235,need to own,1165690583 +209161,4262,need to own,1165690444 +209161,4848,need to own,1165691100 +209161,4873,need to own,1165691031 +209161,4881,need to own,1165690488 +209161,5147,need to own,1165691014 +209161,5265,need to own,1165690546 +209161,5445,need to own,1165690723 +209161,5673,need to own,1165691084 +209161,5878,need to own,1165690426 +209161,5902,need to own,1165691008 +209161,6002,need to own,1165690776 +209161,6003,need to own,1165691368 +209161,6016,need to own,1165690550 +209161,6440,need to own,1165690978 +209161,6783,need to own,1165691078 +209161,6993,need to own,1165690510 +209161,7084,need to own,1165690461 +209161,7090,need to own,1165690507 +209161,7981,need to own,1165690871 +209161,8042,need to own,1165690737 +209161,8197,need to own,1167073174 +209161,8638,need to own,1165690572 +209161,8838,need to own,1165690998 +209161,8873,need to own,1165690718 +209161,8973,need to own,1165690576 +209161,27773,need to own,1165690472 +209161,27904,need to own,1165690650 +209161,30820,need to own,1165690589 +209161,37741,need to own,1165690561 +209161,38886,need to own,1165690634 +209161,39183,need to own,1165690952 +209161,39292,need to own,1165690886 +209161,46578,need to own,1165690492 +209161,48043,need to own,1165690527 +209161,48082,need to own,1165690440 +209161,48516,need to own,1165690541 +209161,48780,need to own,1165690669 +209186,111,Martin Scorsese,1241447667 +209186,307,Beauty,1241447725 +209186,307,Juliette Binoche,1241447725 +209186,1208,Vietnam,1241446631 +209186,1211,poemlike,1241447631 +209186,1225,mozart,1241446614 +209186,1305,Wim Wenders,1241445905 +209186,1416,Madonna,1241446674 +209186,2677,cuba,1241446657 +209186,7042,sexuality,1241446644 +209186,8197,melancholy,1241447792 +209199,47404,comedy,1436988934 +209199,47404,loser comedy,1436988934 +209199,47404,second chances,1436988934 +209199,47404,surreal,1436988934 +209199,108977,absurd,1437942538 +209199,108977,anime,1437942538 +209199,108977,satoshi kon,1437942538 +209224,48,animation,1434897874 +209224,48,indians,1434897874 +209224,48,talking animals,1434897874 +209231,2959,cerebral,1325527941 +209249,2395,Bill Murray,1434498120 +209249,2395,deadpan,1434498110 +209249,2395,Jason Schwartzman,1434498118 +209249,2395,Quirky,1434498127 +209249,2395,witty,1434498114 +209249,110730,artificial intelligence,1435903712 +209249,110730,fantasy,1435903720 +209249,110730,impossible science,1435903709 +209249,115713,artificial intelligence,1435903808 +209249,115713,philosophical,1434498035 +209249,115713,plot twist,1435772274 +209249,115713,Plot twists. Artificial Intelligence. Turing test. Beautiful special effects.,1435903793 +209249,115713,thought provoking,1434498010 +209249,115713,thriller,1434498029 +209261,495,smut,1378950174 +209268,47,atmospheric,1436659035 +209268,47,crime,1436659033 +209268,47,dark,1436659032 +209268,47,David Fincher,1436659046 +209268,47,disturbing,1436659028 +209268,47,investigation,1436659038 +209268,47,mystery,1436659044 +209268,47,philosophical,1436659040 +209268,47,psychological,1436659042 +209268,47,psychology,1436659026 +209268,47,serial killer,1436659024 +209268,123,loneliness,1436658395 +209268,123,lyrical,1436658398 +209268,123,stylized,1436658391 +209268,215,bittersweet,1436658972 +209268,215,conversation,1436658964 +209268,215,dialogue,1436658969 +209268,215,dialogue driven,1436658974 +209268,215,generation X,1436658991 +209268,215,intelligent,1436658968 +209268,215,minimalist,1436658980 +209268,215,poignant,1436658985 +209268,215,quirky,1436658981 +209268,215,reflective,1436658966 +209268,215,Richard Linklater,1436658989 +209268,215,thought-provoking,1436658978 +209268,215,witty,1436658983 +209268,441,1970s,1436658945 +209268,441,Highly quotable,1436658954 +209268,441,Matthew McConaughey,1436658956 +209268,441,nostalgic,1436658950 +209268,441,quirky,1436658947 +209268,441,Richard Linklater,1436658959 +209268,441,small town,1436658949 +209268,541,artificial intelligence,1436661531 +209268,541,atmospheric,1436661530 +209268,541,classic,1436661542 +209268,541,cult film,1436661545 +209268,541,cyberpunk,1436661523 +209268,541,dystopia,1436661526 +209268,541,existentialism,1436661539 +209268,541,future,1436661536 +209268,541,futuristic,1436661544 +209268,541,Harrison Ford,1436661529 +209268,541,Philip K. Dick,1436661527 +209268,541,philosophical,1436661541 +209268,541,sci-fi,1436661524 +209268,541,stylized,1436661535 +209268,903,Alfred Hitchcock,1436659758 +209268,903,Atmospheric,1436659760 +209268,903,James Stewart,1436659763 +209268,904,Alfred Hitchcock,1436659692 +209268,904,classic,1436659703 +209268,904,James Stewart,1436659696 +209268,904,mystery,1436659699 +209268,904,noir thriller,1436659707 +209268,904,suspense,1436659695 +209268,904,suspenseful,1436659698 +209268,904,tense,1436659701 +209268,904,voyeurism,1436659694 +209268,909,Billy Wilder,1436658686 +209268,909,Jack Lemmon,1436658687 +209268,909,suicide attempt,1436658690 +209268,1228,atmospheric,1436658645 +209268,1228,black and white,1436658641 +209268,1228,boxing,1436658636 +209268,1228,Martin Scorsese,1436658639 +209268,1228,Robert De Niro,1436658638 +209268,1228,stylized,1436658642 +209268,1234,classic,1436661638 +209268,1234,con artists,1436661639 +209268,1234,con men,1436661641 +209268,1234,heist,1436661636 +209268,1234,Paul Newman,1436661633 +209268,1234,poker,1436661645 +209268,1234,Robert Redford,1436661635 +209268,1248,black and white,1436659720 +209268,1248,noir thriller,1436659719 +209268,1248,Orson Welles,1436659721 +209268,1252,atmospheric,1436659735 +209268,1252,cynical,1436659738 +209268,1252,Film Noir,1436659733 +209268,1252,noir thriller,1436659740 +209268,1252,private detective,1436659736 +209268,1260,atmospheric,1436660074 +209268,1260,Fritz Lang,1436660073 +209268,1276,atmospheric,1436661713 +209268,1276,classic,1436661712 +209268,1276,confrontational,1436661716 +209268,1276,Paul Newman,1436661711 +209268,1276,prison,1436661709 +209268,1304,Paul Newman,1436661676 +209268,1304,Robert Redford,1436661679 +209268,1304,western,1436661680 +209268,1584,Carl Sagan,1436661463 +209268,1584,future,1436661461 +209268,1584,inspirational,1436661457 +209268,1584,Jodie Foster,1436661468 +209268,1584,Matthew McConaughey,1436661466 +209268,1584,sci-fi,1436661452 +209268,1584,space,1436661459 +209268,1653,dystopia,1436657424 +209268,1653,dystopic future,1436657431 +209268,1653,Ethan Hawke,1436661499 +209268,1653,future,1436661495 +209268,1653,intelligent,1436661497 +209268,1653,realistic sci/fi,1436657434 +209268,1653,sci-fi,1436661489 +209268,1653,thought-provoking,1436657428 +209268,1653,Uma Thurman,1436661485 +209268,1653,visually appealing,1436661492 +209268,1921,atmospheric,1436659419 +209268,1921,black and white,1436659411 +209268,1921,enigmatic,1436659431 +209268,1921,existentialism,1436659413 +209268,1921,low budget,1436659426 +209268,1921,mental illness,1436659417 +209268,1921,mindfuck,1436659422 +209268,1921,paranoid,1436659421 +209268,1921,psychology,1436659414 +209268,1921,stylized,1436659424 +209268,2511,cynical,1436660018 +209268,3362,Al Pacino,1436659976 +209268,3362,black comedy,1436659980 +209268,3362,dark comedy,1436659981 +209268,3362,Sidney Lumet,1436659982 +209268,3468,black and white,1436658606 +209268,3504,journalism,1436659832 +209268,3504,satire,1436659833 +209268,3504,Sidney Lumet,1436659835 +209268,3556,coming of age,1436661837 +209268,3556,dreamlike,1436661831 +209268,3556,high school,1436661826 +209268,3556,Kirsten Dunst,1436661832 +209268,3556,melancholy,1436661834 +209268,3556,psychology,1436661827 +209268,3556,stylized,1436661841 +209268,3556,suburbia,1436661839 +209268,3556,suicide,1436661825 +209268,3556,visually appealing,1436661829 +209268,3730,character study,1436659646 +209268,3730,claustrophobic,1436659648 +209268,3730,espionage,1436659652 +209268,3730,paranoia,1436659649 +209268,3730,psychological,1436659650 +209268,3730,survellience,1436659653 +209268,3741,atmospheric,1436661885 +209268,4432,black and white,1436658631 +209268,5341,black and white,1436659812 +209268,5341,freedom of expression,1436659809 +209268,5341,stand-up comedy,1436659811 +209268,5673,bittersweet,1436658342 +209268,5673,Paul Thomas Anderson,1436658344 +209268,5673,Philip Seymour Hoffman,1436658341 +209268,5673,quirky,1436658339 +209268,5673,underrated,1436658347 +209268,5673,weird,1436658349 +209268,5992,depression,1436658573 +209268,5992,intellectual,1436658566 +209268,5992,Nicole Kidman,1436658564 +209268,5992,suicide,1436658568 +209268,5992,Virginia Woolf,1436658570 +209268,6001,Martin Scorsese,1436659792 +209268,6774,David Cronenberg,1438422476 +209268,6774,surreal,1438422482 +209268,6774,weird,1438422478 +209268,6978,deadpan,1436659184 +209268,7327,psychology,1436661774 +209268,7419,black comedy,1436659865 +209268,7419,dark comedy,1436659869 +209268,7419,Martin Scorsese,1436659868 +209268,7419,New York City,1436659871 +209268,7419,surreal,1436659867 +209268,8014,Atmospheric,1436660889 +209268,8014,bittersweet,1436660897 +209268,8014,character driven,1436660895 +209268,8014,great photograpy,1436660891 +209268,8014,Kim Ki-Duk,1436660900 +209268,8014,reflective,1436660893 +209268,8638,bittersweet,1436659082 +209268,8638,dialogue,1436659076 +209268,8638,great dialogue,1436659085 +209268,8638,minimalist,1436659077 +209268,8638,philosophical,1436659080 +209268,8638,Richard Linklater,1436659083 +209268,8798,assassin,1436660417 +209268,8798,atmospheric,1436660415 +209268,8798,character driven,1436660421 +209268,8798,dark,1436660419 +209268,8798,michael mann,1436660423 +209268,34437,Atmospheric,1436658368 +209268,34437,Bill Murray,1436658371 +209268,34437,Jim Jarmusch,1436658367 +209268,34437,melancholic,1436658372 +209268,34437,understated,1436658377 +209268,44761,children acting like adults,1436660785 +209268,44761,clever,1436660776 +209268,44761,detective movie,1436660778 +209268,44761,film noir,1436660773 +209268,44761,high school,1436660775 +209268,44761,Joseph Gordon-Levitt,1436660779 +209268,44761,neo-noir,1436660782 +209268,44761,quirky,1436660788 +209268,44761,Rian Johnson,1436660791 +209268,44761,self-mocking,1436660784 +209268,44761,stylized,1436660774 +209268,50011,dystopia,1436657874 +209268,55820,brutal,1436659682 +209268,55820,Coen Brothers,1436659667 +209268,55820,Cormac McCarthy,1436659686 +209268,55820,crime,1436659678 +209268,55820,dark,1436659669 +209268,55820,great acting,1436659671 +209268,55820,serial killer,1436659680 +209268,55820,suspense,1436659674 +209268,55820,thriller,1436659675 +209268,55820,Tommy Lee Jones,1436659672 +209268,55820,violent,1436659677 +209268,55908,academia,1436657368 +209268,55908,dialogue driven,1436657346 +209268,55908,entirely dialogue,1436657352 +209268,55908,Excellent use of dialogue,1436657355 +209268,55908,intellectual,1436657343 +209268,55908,intelligent,1436657358 +209268,55908,low budget,1436657366 +209268,55908,philosophical,1436657348 +209268,55908,sci-fi,1436657360 +209268,55908,thought-provoking,1436657338 +209268,55908,unique,1436657340 +209268,56782,morality,1436659634 +209268,56782,Paul Thomas Anderson,1436659629 +209268,56782,visually appealing,1436659626 +209268,57669,assassin,1436659916 +209268,57669,beautiful scenery,1436659927 +209268,57669,black comedy,1436659910 +209268,57669,Brendan Gleeson,1436659934 +209268,57669,british comedy,1436659920 +209268,57669,Colin Farrell,1436659914 +209268,57669,comedy,1436659937 +209268,57669,dark comedy,1436659908 +209268,57669,dark humor,1436659932 +209268,57669,depression,1436659925 +209268,57669,dialogue,1436659936 +209268,57669,stylized,1436659911 +209268,57669,suicide,1436659922 +209268,59118,British,1436658822 +209268,59118,difficult protagonist,1436658825 +209268,59118,Mike Leigh,1436658819 +209268,59118,no plot,1436658816 +209268,62511,Charlie Kaufman,1436657884 +209268,62511,confusing,1436657889 +209268,62511,depressing,1436657892 +209268,62511,Philip Seymour Hoffman,1436657886 +209268,62511,philosophy,1436657891 +209268,62511,postmodern,1436657898 +209268,62511,surreal,1436657882 +209268,62511,thought-provoking,1436657887 +209268,68237,dialogue driven,1436657404 +209268,68237,dystopia,1436657400 +209268,68237,future,1436657406 +209268,68237,isolation,1436657411 +209268,68237,melancholy,1436657397 +209268,68237,mindfuck,1436657415 +209268,68237,psychological,1436657409 +209268,68237,Sci-fi,1436657389 +209268,68237,solitude,1436657391 +209268,68237,thought-provoking,1436657394 +209268,69604,eccentricity,1436659141 +209268,69604,Evan Rachel Wood,1436659139 +209268,69604,New York City,1436659142 +209268,77307,disturbing,1436657958 +209268,87304,melancholic,1436658497 +209268,87304,Melanie Laurent,1436658493 +209268,87304,unique story,1436658490 +209268,94896,mockumentary,1436658901 +209268,94896,Richard Linklater,1436658899 +209268,100714,honest,1436658997 +209268,102800,Noah Baumbach,1436658316 +209268,103980,Cate Blanchett,1436658589 +209268,103980,depressing,1436658591 +209268,103980,Woody Allen,1436658587 +209268,103980,writing,1436658592 +209268,112087,mind bending,1436657218 +209268,112290,12 years in the making,1436659098 +209268,112290,growing up,1436659092 +209268,112290,realism,1436659090 +209268,112290,Richard Linklater,1436659094 +209268,113741,intelligent,1436657247 +209268,113741,mind bending,1436657242 +209268,113741,mystery,1436659452 +209268,113741,parallel universe,1436657244 +209268,113741,psychothriller,1436657249 +209268,113829,alternate reality,1436660185 +209268,113829,magical realism,1436660186 +209341,50,Benicio Del Toro,1251325954 +209341,50,flashbacks,1251325963 +209341,50,Kevin Spacey,1251325945 +209341,50,suspense,1251325967 +209341,50,twist ending,1251325947 +209341,253,Antonio Banderas,1251325759 +209341,253,Kirsten Dunst,1251325752 +209341,296,Black comedy,1245036485 +209341,296,dark comedy,1245036477 +209341,296,multiple storylines,1245036489 +209341,296,Samuel L. Jackson,1245036481 +209341,318,Morgan Freeman,1251325978 +209341,318,reflective,1251325986 +209341,318,thought-provoking,1251325990 +209341,318,twist ending,1251325991 +209341,778,black comedy,1245036451 +209341,778,dark comedy,1245036450 +209341,778,drugs,1245036451 +209341,2231,Edward Norton,1245037056 +209341,2542,black comedy,1245037500 +209341,2542,dark comedy,1245037486 +209341,3275,dark humor,1251325789 +209341,3275,Mission From God,1251325773 +209341,3275,Ron Jeremy,1251325796 +209341,3275,Sean Patrick Flanery,1251325798 +209341,3275,stylized,1251325783 +209341,30749,ethnic conflict,1251326018 +209341,30749,thriller,1251326028 +209341,32587,black comedy,1251325915 +209341,32587,dark,1251325918 +209341,32587,multiple storylines,1251325920 +209341,32587,narrated,1251325921 +209341,32587,stylized,1251325925 +209341,44665,assassin,1251325850 +209341,44665,assassination,1251325848 +209341,44665,Bruce Willis,1251325829 +209341,44665,mistaken identity,1251325853 +209341,44665,Morgan Freeman,1251325826 +209341,44665,stylized,1251325858 +209341,44665,twist ending,1251325824 +209341,64499,Benicio Del Toro,1250467660 +209341,64957,Aging Disorder,1251339524 +209341,64957,Brad Pitt,1251339521 +209341,64957,Cate Blanchett,1251339526 +209341,68157,Brad Pitt,1251325620 +209341,68157,Christoph Waltz,1251325622 +209341,68157,dialogue,1251325625 +209341,68157,ending,1251325663 +209341,68157,Quentin Tarantino,1251325654 +209346,260,a new hope,1436977279 +209346,260,good vs evil,1436977262 +209346,260,sci-fi,1436977251 +209346,260,war,1436977290 +209346,84152,talent,1436977447 +209346,112552,talent,1436977562 +209357,116847,added value in terms of security?,1420537775 +209357,116847,intelligence service,1420537775 +209357,116847,liberty rights,1420537775 +209357,121225,boxing,1422088708 +209357,121225,documentary,1422088708 +209357,121225,rumble in the jungle,1422088708 +209388,8949,funny,1295168488 +209421,88405,Boy meets girl,1340017806 +209421,88405,predictable,1340017805 +209421,88405,soudtrack,1340017856 +209424,1020,John Candy,1226784667 +209424,4293,John Candy,1226784646 +209424,6992,Nicolas Cage,1226873359 +209435,8232,boy scouts,1391893318 +209435,8232,William Powell,1391893318 +209435,72380,bad accents,1341705863 +209435,72380,faux deep dialogue,1341705983 +209435,72380,insipid,1341705841 +209435,72380,slow,1341705850 +209435,107252,the hour,1435782075 +209456,4973,cult film,1343095279 +209472,1036,Bruce Willis,1267575859 +209472,49278,Denzel Washington,1244395752 +209477,260,classic sci-fi,1434052555 +209477,260,space epic,1434052588 +209478,260,epic,1431616171 +209478,260,exciting,1431616159 +209478,260,sci-fi,1431616154 +209478,89104,fantastic,1431616323 +209478,89104,identity,1431616333 +209489,260,classic sci-fi,1442518226 +209489,260,science fantasy,1442518235 +209492,47,twist ending,1265350159 +209492,2387,dark comedy,1160537162 +209492,7361,surreal,1160537265 +209492,38886,smart comedy,1160537228 +209514,919,Fantasy,1143422890 +209561,1625,the final twist,1252159106 +209561,69436,Michael Cera,1288397996 +209561,103042,action,1386197245 +209561,103042,fantasy,1386197580 +209574,1206,atmospheric,1442951889 +209574,1206,dystopia,1442951881 +209574,1206,psychology,1442951883 +209574,1206,satire,1442951893 +209574,1206,social commentary,1442951886 +209574,1206,stanley kubrick,1442951879 +209574,1206,stylized,1442951888 +209574,1206,surreal,1442951896 +209574,4226,Christopher Nolan,1442951370 +209574,4226,complicated,1442951355 +209574,4226,dark,1442951364 +209574,4226,identity,1442951380 +209574,4226,memory,1442951352 +209574,4226,memory loss,1442951378 +209574,4226,mystery,1442951356 +209574,4226,nonlinear,1442951348 +209574,4226,paranoid,1442951367 +209574,4226,psychological,1442951354 +209574,4226,psychology,1442951351 +209574,4226,short-term memory loss,1442951372 +209574,4226,stylized,1442951357 +209574,4226,twist ending,1442951350 +209574,4848,art house,1442951471 +209574,4848,Atmospheric,1442951452 +209574,4848,dark,1442951458 +209574,4848,David Lynch,1442951450 +209574,4848,lesbian,1442951454 +209574,4848,Los Angeles,1442951479 +209574,4848,nonlinear,1442951451 +209574,4848,stylized,1442951468 +209574,4848,surreal,1442951448 +209574,4848,surrealism,1442951462 +209574,4848,visually appealing,1442951460 +209574,4848,weird,1442951473 +209574,6016,atmospheric,1442950664 +209574,6016,black comedy,1442950688 +209574,6016,drugs,1442950669 +209574,6016,social commentary,1442950693 +209574,6016,stylized,1442950662 +209574,48780,atmospheric,1442951308 +209574,48780,Christopher Nolan,1442951323 +209574,48780,complicated,1442951310 +209574,48780,dark,1442951313 +209574,48780,great ending,1442951329 +209574,48780,mystery,1442951317 +209574,48780,obsession,1442951322 +209574,48780,philosophy,1442951340 +209574,48780,psychological,1442951316 +209574,48780,sci-fi,1442951332 +209574,48780,steampunk,1442951314 +209574,58559,Atmospheric,1442951269 +209574,58559,Christopher Nolan,1442951272 +209574,58559,dark,1442951268 +209574,58559,stylized,1442951280 +209574,68237,artificial intelligence,1442951104 +209574,68237,dialogue driven,1442951131 +209574,68237,dystopia,1442951099 +209574,68237,future,1442951125 +209574,68237,great soundtrack,1442951123 +209574,68237,hallucination,1442951137 +209574,68237,isolation,1442951160 +209574,68237,psychological,1442951166 +209574,68237,psychology,1442951102 +209574,68237,Sci-fi,1442951096 +209574,68237,science,1442951127 +209574,68237,solitude,1442951114 +209574,68237,space,1442951098 +209574,68237,technology,1442951107 +209574,68237,thought-provoking,1442951144 +209574,86898,abstract,1442951494 +209574,86898,beautifully filmed,1442951489 +209574,86898,cinematography,1442951486 +209574,86898,meaning of life,1442951490 +209574,86898,music,1442951506 +209574,86898,surreal,1442951495 +209574,86898,Terrence Malick,1442951504 +209574,86898,thought-provoking,1442951491 +209574,86898,too much religion,1442951499 +209574,94466,dystopia,1442950536 +209574,94466,social commentary,1442950522 +209574,94466,thought-provoking,1442950534 +209574,99917,artistic,1442951421 +209574,99917,Beautiful,1442951425 +209574,99917,emotionally captivating,1442951424 +209574,99917,music,1442951429 +209574,99917,sci-fi,1442951422 +209574,99917,Shane Carruth,1442951427 +209574,104841,beautiful,1442951213 +209574,104841,cinematography,1442951201 +209574,104841,isolation,1442951224 +209574,104841,sci-fi,1442951214 +209574,104841,science,1442951211 +209574,104841,space,1442951196 +209574,104841,visually appealing,1442951198 +209574,115713,AI,1442951015 +209574,115713,artificial intelligence,1442950991 +209574,115713,claustrophobic,1442951028 +209574,115713,consciousness,1442951054 +209574,115713,experiment,1442951050 +209574,115713,Future,1442951013 +209574,115713,futuristic,1442951023 +209574,115713,gender roles,1442951006 +209574,115713,isolation,1442951052 +209574,115713,Manipulations,1442951056 +209574,115713,pessimistic,1442951065 +209574,115713,philosophical,1442950996 +209574,115713,plot twist,1442950999 +209574,115713,Psychological,1442951046 +209574,115713,sci-fi,1442950993 +209574,115713,Surreal,1442951010 +209574,115713,technology,1442951012 +209574,115713,thought provoking,1442950994 +209579,8369,who done it,1339456173 +209579,70286,aliens,1339283926 +209579,70286,humor,1339283929 +209579,70286,sci-fi,1339283933 +209579,70286,violence,1339283935 +209579,78349,claustrophobic,1339283636 +209579,78349,experiment,1339283627 +209579,78349,group psychology,1339283610 +209579,78349,psychological,1339283617 +209579,94777,aliens,1339284270 +209579,94777,franchise,1339284250 +209579,94777,funny,1339284240 +209579,94777,time travel,1339284259 +209596,1350,Horror,1187723296 +209596,1438,disaster,1187723366 +209596,2116,Adventure,1187723299 +209596,2116,Fantasy,1187723299 +209596,2951,western,1187723403 +209596,6373,Comedy,1187723393 +209597,107406,old boy,1439773590 +209658,5445,Philip K. Dick,1269706395 +209683,7263,SUCCESS IS THE BEST REVENGE,1198354514 +209708,318,Morgan Freeman,1202963839 +209708,318,Tim Robbins,1202963767 +209708,527,Holocaust,1202967194 +209708,527,Liam Neeson,1202964863 +209708,527,Oscar (Best Art Direction - Set Decoration),1202965374 +209708,527,Oscar (Best Cinematography),1202966798 +209708,527,Oscar (Best Director),1202966824 +209708,527,Oscar (Best Editing),1202966895 +209708,527,Oscar (Best Music - Original Score),1202964817 +209708,527,Oscar (Best Picture),1202966915 +209708,527,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1202967013 +209708,527,Steven Spielberg,1202964107 +209708,527,true story,1202967232 +209708,858,Al Pacino,1202964206 +209708,858,Francis Ford Coppola,1202964204 +209708,858,Mafia,1202964228 +209708,1213,Joe Pesci,1202964384 +209708,1213,Martin Scorsese,1202964328 +209708,1213,narrated,1202964333 +209708,1213,Paul Sorvino,1202964412 +209708,1213,Ray Liotta,1202964369 +209708,1213,Robert De Niro,1202964353 +209708,1213,Samuel L. Jackson,1202964330 +209708,2726,imdb top 250,1203702461 +209708,2726,Stanley Kubrick,1203702457 +209708,3684,Beau Bridges,1205258731 +209708,3684,Jeff Bridges,1205258722 +209708,3684,Michelle Pfeiffer,1205258692 +209708,3895,Joe Charbanic,1204648159 +209708,3895,Keanu Reeves,1204648140 +209708,6016,Alice Braga,1202964525 +209708,6016,favela,1202964487 +209708,6016,favelas,1202964648 +209708,6016,Fernando Meirelles,1202964551 +209708,6016,Matheus Nachtergaele,1202964514 +209708,6016,true story,1202964444 +209708,6213,Antoine Fuqua,1203527076 +209708,6213,Bruce Willis,1203526998 +209708,6213,Cole Hauser,1203527103 +209708,6213,Eamonn Walker,1203527139 +209708,6213,Johnny Messner,1203527164 +209708,6213,Monica Bellucci,1203527014 +209708,6213,Nick Chinlund,1203527186 +209708,6213,war,1203527086 +209708,6539,Johnny Depp,1202916539 +209708,6539,Keira Knightley,1202916549 +209708,6953,Benicio Del Toro,1203016677 +209708,6953,Naomi Watts,1203016697 +209708,6953,Sean Penn,1203016680 +209708,8493,World War II,1236423308 +209708,8530,Emily Mortimer,1203444893 +209708,8530,Gerard Butler,1203444778 +209708,8866,Kirsten Dunst,1203295499 +209708,8866,Paul Bettany,1203295494 +209708,8866,tennis,1203295496 +209708,30749,genocide,1202963916 +209708,30749,true story,1202963945 +209708,37853,bahamas,1209214318 +209708,37853,cayman islands,1209214323 +209708,37853,Jessica Alba,1209214293 +209708,37853,ocean/beach,1209214327 +209708,37853,real sharks.,1209214334 +209708,37853,scuba diving,1209214306 +209708,40629,Donald Sutherland,1204168033 +209708,40629,Keira Knightley,1204168000 +209708,40629,Rosamund Pike,1204168017 +209708,41716,Friendship,1202916097 +209708,41716,Pierce Brosnan,1202915868 +209708,41716,Some good moments,1202916108 +209708,43396,Anthony Hopkins,1204502597 +209708,43396,dreams,1204502662 +209708,43396,heart problems,1204502617 +209708,43396,indian motorcycle,1204502687 +209708,43396,speed,1204502675 +209708,43396,true story,1204502717 +209708,45722,Johnny Depp,1202916459 +209708,45722,Keira Knightley,1202916443 +209708,51834,casal,1240429322 +209708,52458,Aaron Yoo,1204514456 +209708,52458,Carrie-Anne Moss,1204514442 +209708,52458,D.J. Caruso,1204514417 +209708,52458,David Morse,1204514347 +209708,52458,Shia LeBeouf,1204514334 +209708,53125,Johnny Depp,1202916426 +209708,53125,Keira Knightley,1202916451 +209708,54999,Clive Owen,1207744869 +209708,54999,Monica Bellucci,1207744865 +209708,54999,Paul Giamatti,1207744861 +209708,55276,George Clooney,1205854359 +209708,55276,Sydney Pollack,1205854343 +209708,55276,Tilda Swinton,1205854349 +209708,55276,Tom Wilkinson,1205854371 +209719,1245,coen brothers,1199854015 +209719,4027,coen brothers,1199854051 +209719,44191,distopia,1199742129 +209719,44191,dystopic future,1199742121 +209722,74458,twist ending,1439830642 +209731,61350,Vin Diesel,1234528322 +209731,65243,Finnish,1234525524 +209737,260,Good Quality,1432260647 +209737,260,good story,1432260662 +209799,260,cult classic,1430611546 +209799,260,scifi cult,1430611512 +209802,296,drugs,1420203432 +209802,296,humorous,1420203432 +209802,296,violence,1420203432 +209802,356,funny,1421871256 +209802,356,historical,1421871256 +209802,356,romance,1421871256 +209802,106489,boring,1388441847 +209802,106489,Stephen Fry,1388441855 +209802,106489,too long,1388441860 +209802,134800,cycling,1433941822 +209802,134800,friendship,1433941832 +209806,56156,awfull russian language,1208611943 +209818,32,adventure,1353601214 +209818,32,Brad Pitt,1353601198 +209818,32,Bruce Willis,1353601225 +209818,32,complicated,1353601209 +209818,32,dystopia,1353601202 +209818,32,imagination,1353601218 +209818,32,post-apocalyptic,1353601192 +209818,32,psychology,1353601195 +209818,32,time travel,1353601188 +209818,32,twist ending,1353601186 +209818,47,Brad Pitt,1353602833 +209818,47,dark,1353602845 +209818,47,disturbing,1353602847 +209818,47,investigation,1353602849 +209818,47,Kevin Spacey,1353602837 +209818,47,Morgan Freeman,1353602835 +209818,47,psychology,1353602841 +209818,47,serial killer,1353602839 +209818,47,twist ending,1353602843 +209818,318,friendship,1385299491 +209818,318,inspirational,1385299494 +209818,318,Morgan Freeman,1385299497 +209818,318,thought-provoking,1385299502 +209818,356,bittersweet,1353799084 +209818,356,inspirational,1353799090 +209818,356,Tom Hanks,1353799099 +209818,410,Silly,1353605122 +209818,410,stupid,1353605120 +209818,750,black comedy,1353602166 +209818,750,cold war,1353602175 +209818,750,corruption,1353602177 +209818,750,dark comedy,1353602169 +209818,750,politics,1353602164 +209818,750,Quirky,1353602162 +209818,750,satire,1353602158 +209818,750,satirical,1353602160 +209818,750,Stanley Kubrick,1353602156 +209818,784,black comedy,1353604416 +209818,784,not funny,1353604412 +209818,924,artificial intelligence,1353602218 +209818,924,atmospheric,1353602239 +209818,924,philosophical,1353602230 +209818,924,sci-fi,1353602234 +209818,924,Stanley Kubrick,1353602228 +209818,1036,Alan Rickman,1353603366 +209818,1036,Bruce Willis,1353603374 +209818,1036,christmas,1353603389 +209818,1036,humorous,1353603377 +209818,1036,police,1353603384 +209818,1036,tense,1353603382 +209818,1036,thriller,1353603379 +209818,1079,black comedy,1353603254 +209818,1079,British,1353603266 +209818,1079,dark comedy,1353603250 +209818,1079,hilarious,1353603257 +209818,1079,quirky,1353603248 +209818,1193,classic,1353600955 +209818,1193,drama,1353600943 +209818,1193,emotional,1353600940 +209818,1193,Jack Nicholson,1353600929 +209818,1193,mental illness,1353600931 +209818,1193,Oscar (Best Directing),1353600962 +209818,1193,psychological,1353600935 +209818,1193,psychology,1353600933 +209818,1193,violence,1353600946 +209818,1199,atmospheric,1353601797 +209818,1199,black comedy,1353601771 +209818,1199,dark comedy,1353601776 +209818,1199,dreamlike,1353601794 +209818,1199,dreams,1353601806 +209818,1199,dystopia,1353601792 +209818,1199,future,1353601816 +209818,1199,futuristic,1353601813 +209818,1199,quirky,1353601808 +209818,1199,satire,1353601784 +209818,1199,satirical,1353601781 +209818,1199,stylized,1353601787 +209818,1199,Terry Gilliam,1353601779 +209818,1199,thought-provoking,1353601789 +209818,1206,quirky,1353600445 +209818,1206,Stanley Kubrick,1353600426 +209818,1206,stylized,1353600451 +209818,1240,artificial intelligence,1353603709 +209818,1240,Thriller,1353603715 +209818,1240,time travel,1353603707 +209818,1240,violent,1353603713 +209818,1258,atmospheric,1353600751 +209818,1258,cult film,1353600762 +209818,1258,dreamlike,1353600754 +209818,1258,Horror,1353600776 +209818,1258,Jack Nicholson,1353600745 +209818,1258,mental illness,1353600758 +209818,1258,psychological,1353600748 +209818,1258,Stanley Kubrick,1353600743 +209818,1258,Stephen King,1353600764 +209818,1258,suspense,1353600769 +209818,1258,visually appealing,1353600767 +209818,1265,Bill Murray,1353602658 +209818,1265,Classic,1353602668 +209818,1265,comedy,1353602654 +209818,1265,feel-good,1353602673 +209818,1265,funny,1353602656 +209818,1265,self discovery,1353602651 +209818,1265,small town,1353602664 +209818,1265,time loop,1353602647 +209818,1265,time travel,1353602649 +209818,1270,Funny,1353603563 +209818,1270,quirky,1353603562 +209818,1270,time travel,1353603568 +209818,1281,anti-war,1353602680 +209818,1281,black and white,1353602688 +209818,1281,black comedy,1353602686 +209818,1281,Charlie Chaplin,1353602682 +209818,1281,humorous,1353602690 +209818,1281,political,1353602694 +209818,1281,satire,1353602696 +209818,1292,Peter Sellers,1354560180 +209818,1292,political satire,1354560172 +209818,1292,satire,1354560177 +209818,1464,David Lynch,1353603001 +209818,1464,dreamlike,1353603009 +209818,1464,overrated,1371809769 +209818,1464,strange,1353603003 +209818,1573,identity,1353603288 +209818,1573,stupid,1353603298 +209818,1590,distorted reality,1353604757 +209818,1590,Sam Neill,1353604753 +209818,1597,brainwashing,1353604379 +209818,1597,mental hospital,1353604391 +209818,1597,mystery,1353604384 +209818,1625,mindfuck,1353603209 +209818,1625,Mystery,1353603222 +209818,1625,twist ending,1353603220 +209818,1625,unrealistic,1353603211 +209818,1645,Al Pacino,1353799445 +209818,1665,British comedy,1353604027 +209818,1665,weak remake of series,1353604032 +209818,1680,chick flick,1353604737 +209818,1682,dark comedy,1353601878 +209818,1682,dreamlike,1353601880 +209818,1682,dystopia,1353601876 +209818,1682,melancholy,1353601891 +209818,1682,paranoia,1353601888 +209818,1682,small town,1353601882 +209818,1682,stylized,1353601886 +209818,1732,black comedy,1353604008 +209818,1732,dark comedy,1353604012 +209818,1732,quirky,1353604005 +209818,1732,satirical,1353604015 +209818,2000,action,1353603046 +209818,2000,buddy,1353603056 +209818,2000,comedy,1353603049 +209818,2000,police,1353603039 +209818,2000,seen more than once,1353603043 +209818,2012,Christopher Lloyd,1353603541 +209818,2012,Funny,1353603554 +209818,2012,time travel,1353603552 +209818,2232,bad acting,1353603996 +209818,2232,innovative,1353603988 +209818,2232,mathematics,1353603969 +209818,2232,mindfuck,1353603971 +209818,2232,original,1353603990 +209818,2232,paranoia,1353603992 +209818,2232,psychological,1353603981 +209818,2232,psychology,1353603983 +209818,2232,weird,1353603978 +209818,2288,Antarctica,1353604568 +209818,2288,disturbing,1353604574 +209818,2288,paranoia,1353604572 +209818,2311,Arthur C. Clarke,1353604104 +209818,2311,artificial intelligence,1353604097 +209818,2311,based on a book,1353604108 +209818,2311,sci-fi,1353604115 +209818,2311,sequel,1353604090 +209818,2324,bittersweet,1353602454 +209818,2324,comedy,1353602456 +209818,2324,father-son relationship,1353602461 +209818,2324,heartwarming,1353602458 +209818,2324,survival,1353602464 +209818,2378,funny,1353603820 +209818,2378,police,1353603822 +209818,2378,seen more than once,1353603825 +209818,2571,Action,1353601047 +209818,2571,alternate reality,1353601064 +209818,2571,artificial intelligence,1353601019 +209818,2571,computers,1353601061 +209818,2571,cult film,1353601050 +209818,2571,cyberpunk,1353601021 +209818,2571,dystopia,1353600998 +209818,2571,philosophy,1353601025 +209818,2571,post-apocalyptic,1353601044 +209818,2571,sci-fi,1353601028 +209818,2571,stylized,1353601036 +209818,2571,surreal,1353601054 +209818,2571,thought-provoking,1353601034 +209818,2571,virtual reality,1353601032 +209818,2730,18th century,1353603486 +209818,2730,atmospheric,1353603491 +209818,2730,cynical,1353603488 +209818,2730,Kubrick,1353603475 +209818,2730,RISE AND FALL STORIES,1353603483 +209818,2730,slow,1353603470 +209818,2730,Stanley Kubrick,1353603472 +209818,2791,absurd,1353604728 +209818,2791,Parody,1353604726 +209818,2791,silly,1353604722 +209818,2791,Slapstick,1353604720 +209818,2959,Brad Pitt,1353600492 +209818,2959,classic,1353600527 +209818,2959,dark comedy,1353600485 +209818,2959,mental illness,1353600512 +209818,2959,psychology,1353600497 +209818,2959,quirky,1353600505 +209818,2959,surreal,1353600520 +209818,2959,twist ending,1353600495 +209818,2959,violence,1353600516 +209818,3033,hilarious,1353602768 +209818,3033,parody,1353602775 +209818,3052,Alan Rickman,1353603325 +209818,3052,controversial,1353603323 +209818,3052,funny,1353603335 +209818,3052,Matt Damon,1353603339 +209818,3052,satire,1353603330 +209818,3108,compassionate,1353601604 +209818,3108,deep,1353601566 +209818,3108,guilt,1353601580 +209818,3108,mental illness,1353601575 +209818,3108,Robin Williams,1353601592 +209818,3108,Terry Gilliam,1353601555 +209818,3108,unusual,1353601571 +209818,3108,updated classics,1353601596 +209818,3147,compassionate,1353603159 +209818,3147,death penalty,1353603161 +209818,3147,great acting,1353603163 +209818,3147,male nudity,1353603178 +209818,3147,Stephen King,1353603193 +209818,3147,Tom Hanks,1353603151 +209818,3307,beautiful,1353603444 +209818,3307,bittersweet,1353603441 +209818,3307,silent movie,1353603436 +209818,3307,slapstick,1353603457 +209818,3307,stylized,1353603450 +209818,3418,Action,1353602278 +209818,3418,Drama,1353602271 +209818,3418,women's lib,1353602275 +209818,3462,anti-authoritarian,1353602922 +209818,3462,Charlie Chaplin,1353602924 +209818,3462,hilarious,1353602927 +209818,3462,social commentary,1353602930 +209818,3503,atmospheric,1353602361 +209818,3503,based on a book,1353602378 +209818,3503,dreamlike,1353602357 +209818,3503,enigmatic,1353602371 +209818,3503,immortality,1353602367 +209818,3503,stylized,1353602373 +209818,3535,Christian Bale,1353604223 +209818,3535,Disturbing,1353604235 +209818,3535,funny,1353604228 +209818,3535,insanity,1353604231 +209818,3535,psychology,1353604221 +209818,3994,atmospheric,1353799339 +209818,3994,eerie,1353799342 +209818,3994,unique,1353799350 +209818,4018,girlie movie,1353604844 +209818,4018,stereotypes,1353604841 +209818,4226,complicated,1353600561 +209818,4226,cult film,1353600563 +209818,4226,dark,1353600575 +209818,4226,dreamlike,1353600559 +209818,4226,investigation,1353600567 +209818,4226,narrated,1353600566 +209818,4226,nonlinear,1353600545 +209818,4226,psychological,1353600548 +209818,4226,revenge,1353600554 +209818,4226,stylized,1353600552 +209818,4226,tense,1353600573 +209818,4226,twist ending,1353600550 +209818,4340,Rob Schneider,1353605051 +209818,4340,stupid,1353605054 +209818,4370,androids,1353603608 +209818,4370,artificial intelligence,1353603601 +209818,4370,Bittersweet,1353603604 +209818,4370,dystopia,1353603610 +209818,4370,Stanley Kubrick,1353603613 +209818,4370,Steven Spielberg,1353603618 +209818,4641,adolescence,1353602629 +209818,4641,bittersweet,1353602600 +209818,4641,dark comedy,1353602618 +209818,4641,depressing,1353602615 +209818,4641,friendship,1353602639 +209818,4641,high school,1353602633 +209818,4641,indie,1353602611 +209818,4641,quirky,1353602603 +209818,4641,Scarlett Johansson,1353602631 +209818,4641,stylized,1353602606 +209818,4720,atmospheric,1353600870 +209818,4720,beautiful,1353600867 +209818,4720,clever,1353600872 +209818,4720,dark,1353600876 +209818,4720,Drama,1353600864 +209818,4720,ghosts,1353600863 +209818,4720,gothic,1353600889 +209818,4720,Nicole Kidman,1353600858 +209818,4720,religion,1353600878 +209818,4720,twist ending,1353600855 +209818,4874,intellectual,1353602488 +209818,4874,Kevin Spacey,1353602490 +209818,4874,philosophical,1353602484 +209818,4874,psychiatrist,1353602499 +209818,4878,dreamlike,1353601253 +209818,4878,mental illness,1353601243 +209818,4878,psychology,1353601241 +209818,4878,quirky,1353601237 +209818,4878,satirical,1353601256 +209818,4878,stylized,1353601249 +209818,4878,thought-provoking,1353601247 +209818,4878,time travel,1353601239 +209818,5617,BDSM,1353602012 +209818,5617,black comedy,1353602006 +209818,5617,controversial,1353602044 +209818,5617,dark comedy,1353602010 +209818,5617,erotic,1353602031 +209818,5617,Maggie Gyllenhaal,1353602040 +209818,5617,quirky,1353602018 +209818,5617,relationships,1353602036 +209818,5617,sex,1353602022 +209818,5617,sexuality,1353602016 +209818,5617,weird,1353602024 +209818,5617,workplace,1353602026 +209818,5679,creepy,1353600821 +209818,5679,mystery,1353600827 +209818,5679,suspense,1353600831 +209818,5679,thriller,1353600837 +209818,5679,weird,1353600834 +209818,6063,disturbing,1353602990 +209818,6063,fucked up,1353602995 +209818,6063,loneliness,1353602983 +209818,6063,odd,1353602988 +209818,6063,psychological,1353602986 +209818,6155,battle of the sexes,1353604941 +209818,6155,chick flick,1353604949 +209818,6155,deception to win wager,1353604957 +209818,6242,disturbing,1353600799 +209818,6242,Hiroyuki Sanada,1353600796 +209818,6242,psychological,1353600805 +209818,6365,sequel,1371810475 +209818,6934,sequel,1371810491 +209818,7147,bittersweet,1353601829 +209818,7147,dreamlike,1353601831 +209818,7147,magic,1353601848 +209818,7147,quirky,1353601832 +209818,7147,romance,1353601865 +209818,7147,stylized,1353601838 +209818,7147,thought-provoking,1353601862 +209818,7147,Tim Burton,1353601846 +209818,7147,twist ending,1353601835 +209818,7254,alternate reality,1353799062 +209818,7254,psychology,1353799050 +209818,7254,twist ending,1353799053 +209818,7361,bittersweet,1353601299 +209818,7361,comedy,1353601317 +209818,7361,dreamlike,1353601305 +209818,7361,Jim Carrey,1353601278 +209818,7361,memory,1353601296 +209818,7361,nonlinear,1353601308 +209818,7361,quirky,1353601294 +209818,7361,romance,1353601288 +209818,7361,surreal,1353601284 +209818,7361,thought-provoking,1353601324 +209818,7419,bad luck,1353602125 +209818,7419,BDSM,1353602131 +209818,7419,black comedy,1353602103 +209818,7419,crazy people,1353602119 +209818,7419,dark comedy,1353602106 +209818,7419,dark humor,1353602117 +209818,7419,New York City,1353602133 +209818,7419,perfect,1353602136 +209818,7419,surreal,1353602113 +209818,8870,awful,1353604913 +209818,8870,poor plot details development,1353604924 +209818,8950,creepy,1371809492 +209818,8950,depressing,1371809483 +209818,8950,disturbing,1371809476 +209818,8950,psychology,1371809466 +209818,8950,twist ending,1371809471 +209818,8957,claustrophobic,1353603801 +209818,8957,detective,1353603804 +209818,8957,Disturbing,1353603781 +209818,8957,mindfuck,1353603779 +209818,8957,original,1353603794 +209818,8957,serial killer,1353603783 +209818,8957,surprise ending,1353603789 +209818,8957,suspense,1353603810 +209818,8957,torture,1353603793 +209818,8957,twist ending,1353603791 +209818,27317,disturbing,1353603574 +209818,27317,mindfuck,1353603581 +209818,27317,ominous,1353603578 +209818,27317,stylized,1353603576 +209818,27317,tense,1353603580 +209818,27773,Chan-wook Park,1353601726 +209818,27773,depressing,1353601745 +209818,27773,great soundtrack,1353601733 +209818,27773,hallucinatory,1353601749 +209818,27773,Korea,1353601736 +209818,27773,Nudity (Full Frontal),1353601752 +209818,27773,paranoid,1353601731 +209818,27773,revenge,1353601716 +209818,27773,stylized,1353601714 +209818,27773,tense,1353601755 +209818,27773,twist ending,1353601720 +209818,27899,blunt existentialism,1353605092 +209818,27899,"bogus ""experts""",1353605077 +209818,27899,esoteric,1353605102 +209818,27899,new age,1353605105 +209818,27899,New-Age philosophy,1353605083 +209818,27899,pseudoscience,1353605081 +209818,27899,psudoscience,1353605088 +209818,27899,total bollocks,1353605079 +209818,30707,Bittersweet,1353602940 +209818,30707,dark,1353602943 +209818,30707,drama,1353602945 +209818,30707,gritty,1353602971 +209818,30707,Morgan Freeman,1353602947 +209818,33896,cannibalism,1353603642 +209818,33896,Chan-wook Park,1353603632 +209818,33896,creepy,1353603635 +209818,33896,disturbing,1353603637 +209818,33896,Dumplings,1353603640 +209818,34319,action,1353604628 +209818,34319,dystopia,1353604621 +209818,34319,genetics,1353604625 +209818,34319,immortality,1353604624 +209818,34319,predictable,1353604638 +209818,34319,Scarlett Johansson,1353604616 +209818,34319,Terrible Acting,1353604611 +209818,37386,dystopia,1380567843 +209818,37386,Post apocalyptic,1380567828 +209818,37386,stylized,1380567831 +209818,40581,worst movie ever,1353605200 +209818,42632,Chan-wook Park,1353603080 +209818,42632,disturbing,1353603078 +209818,42632,flashbacks,1353603084 +209818,42632,Korea,1353603074 +209818,42632,quirky,1353603076 +209818,42632,revenge,1353603071 +209818,42632,soundtrack,1353603089 +209818,42632,stylized,1353603069 +209818,42725,Stoner Movie,1353605042 +209818,42725,video game testers,1353605031 +209818,44191,comic book,1353601086 +209818,44191,dystopia,1353601093 +209818,44191,inspirational,1353601091 +209818,44191,thought-provoking,1353601088 +209818,44191,visually appealing,1353601102 +209818,44195,clever,1353602304 +209818,44195,corruption,1353602299 +209818,44195,dark comedy,1353602295 +209818,44195,dark humor,1353602297 +209818,44195,funny,1353602309 +209818,44195,independent film,1353602311 +209818,44195,satire,1353602306 +209818,47610,costume drama,1353604281 +209818,47610,Edward Norton,1353604286 +209818,47610,predictable,1353604272 +209818,47610,stage magic,1353604277 +209818,48394,bittersweet,1353602398 +209818,48394,psychology,1353602409 +209818,48394,stylized,1353602406 +209818,48394,twist ending,1353602402 +209818,48774,atmospheric,1353601151 +209818,48774,dystopia,1353601153 +209818,48774,survival,1353601167 +209818,48774,visually appealing,1353601146 +209818,48774,war,1353601163 +209818,48780,atmospheric,1353600610 +209818,48780,Christian Bale,1353600622 +209818,48780,complicated,1353600613 +209818,48780,dark,1353600619 +209818,48780,revenge,1353600644 +209818,48780,Scarlett Johansson,1353600632 +209818,48780,thriller,1353600650 +209818,48780,twist ending,1353600646 +209818,48943,bad sequel,1354224077 +209818,51086,Sexualized violence,1353603893 +209818,51086,stylized,1353603889 +209818,51086,twist ending,1353603896 +209818,53993,Biblical,1353605009 +209818,53993,environmental,1353605011 +209818,55814,based on a true story,1353601905 +209818,55814,beautiful,1353601902 +209818,55814,biomedical ethics,1353601924 +209818,55814,father-son relationship,1353601930 +209818,55814,flashbacks,1353601920 +209818,55814,French,1353601936 +209818,55814,touching,1353601911 +209818,56174,disease,1353604330 +209818,56174,dystopia,1353604327 +209818,56174,loneliness,1353604321 +209818,56174,Post apocalyptic,1353604317 +209818,56174,post-apocalyptic,1353604311 +209818,56174,survival,1353604320 +209818,57368,"""found footage""",1353603400 +209818,57368,feeling of helplessness,1353603418 +209818,57368,giant monster,1353603405 +209818,57368,mockumentary,1353603402 +209818,57368,New York City,1353603425 +209818,57368,sci-fi,1353603428 +209818,57520,stupid,1353605170 +209818,58559,Batman,1353603940 +209818,58559,Christian Bale,1353603953 +209818,58559,dark,1353603963 +209818,58559,Heath Ledger,1353603952 +209818,58559,Morgan Freeman,1353603956 +209818,58559,psychology,1353603958 +209818,58559,serial killer,1353603960 +209818,59900,Adam Sandler,1353604864 +209818,59900,stupid,1353604856 +209818,59900,tasteless,1353604860 +209818,63082,compassionate,1353602071 +209818,63082,drama,1353602068 +209818,63082,dreamlike,1353602066 +209818,63082,feel-good,1353602063 +209818,63082,love,1353602086 +209818,63082,nonlinear,1353602053 +209818,63082,Oscar (Best Picture),1353602058 +209818,63082,torture,1353602076 +209818,63082,violence,1353602078 +209818,65642,grim,1370020685 +209818,65642,paradox,1370020678 +209818,67255,adapted from:book,1353602733 +209818,67255,based on a book,1353602735 +209818,67255,computers,1353602707 +209818,67255,dark,1353602711 +209818,67255,hackers,1353602708 +209818,67255,investigation,1353602729 +209818,67255,suspense,1353602744 +209818,68157,black comedy,1353602548 +209818,68157,Brad Pitt,1353602551 +209818,68157,dark comedy,1353602575 +209818,68157,gore,1353602584 +209818,68157,Quentin Tarantino,1353602554 +209818,68157,revenge,1353602570 +209818,68157,satire,1353602558 +209818,68519,crappy sequel,1354224038 +209818,68519,incomprehensible,1354224034 +209818,68519,Visions,1354224045 +209818,69122,absurd,1353603866 +209818,69122,flashbacks,1353603853 +209818,69122,funny,1353603850 +209818,69122,Las Vegas,1353603855 +209818,69122,Zach Galifianakis,1353603858 +209818,73017,Atmospheric,1353603758 +209818,73017,England,1353603743 +209818,73017,English,1353603745 +209818,73017,Jude Law,1353603753 +209818,73017,martial arts,1353603755 +209818,73017,Robert Downey Jr.,1353603749 +209818,79132,action,1353600699 +209818,79132,complicated,1353600695 +209818,79132,dreamlike,1353600676 +209818,79132,fantasy,1353600708 +209818,79132,great soundtrack,1353600680 +209818,79132,memory,1353600714 +209818,79132,philosophy,1353600686 +209818,79132,sci-fi,1353600709 +209818,79132,thought-provoking,1353600666 +209818,79132,visually appealing,1353600670 +209818,81591,atmospheric,1353601686 +209818,81591,dark,1353601636 +209818,81591,disturbing,1353601638 +209818,81591,drama,1353601688 +209818,81591,horror,1353601691 +209818,81591,mindfuck,1353601641 +209818,81591,Natalie Portman,1353601674 +209818,81591,obsession,1353601652 +209818,81591,Oscar (Best Actress),1353601695 +209818,81591,psychological,1353601664 +209818,81591,stylized,1353601668 +209818,81591,surreal,1353601700 +209818,81591,twist ending,1353601672 +209818,85414,Jake Gyllenhaal,1353602793 +209818,85414,mindfuck,1353602815 +209818,85414,parallel universe,1353602795 +209818,85414,stylized,1353602803 +209818,85414,suspense,1353602810 +209818,85414,terrorism,1353602823 +209818,85414,time loop,1353602797 +209818,85414,twist ending,1353602806 +209818,86320,apocalypse,1353602416 +209818,86320,beautiful,1353602420 +209818,86320,depression,1353602424 +209818,86320,Drama,1353602434 +209818,86320,excellent script,1353602438 +209818,86320,twist ending,1353602431 +209818,96610,Bruce Willis,1353604194 +209818,96610,Character study,1353604198 +209818,96610,dystopia,1353604188 +209818,96610,film noir,1353604183 +209818,96610,organized crime,1353604191 +209818,96610,violent,1370020751 +209818,97752,great acting,1353784293 +209818,97752,social criticism,1353784299 +209818,97752,thought-provoking,1353784304 +209818,97752,Tom Hanks,1353784494 +209824,466,parody,1317752938 +209825,1587,science fiction,1187116432 +209825,2953,children,1187116452 +209825,3362,crime,1187116441 +209825,6218,multiethnic,1187116421 +209825,6870,crime,1187116458 +209826,5377,comedy for kids,1245079160 +209848,2804,i like watching this movie when im so high i dont know left from right,1143434895 +209848,5481,satire,1143434851 +209864,260,fantasy,1348022203 +209864,260,Harrison Ford,1348022198 +209864,260,space,1348022207 +209864,778,dark comedy,1348022180 +209864,778,Ewan McGregor,1348022177 +209864,2571,alternate reality,1348022595 +209864,2571,dystopia,1348022592 +209864,2571,martial arts,1348022600 +209864,2571,post-apocalyptic,1348022597 +209864,2571,thought-provoking,1348022605 +209864,3752,dumb,1348022158 +209864,6502,epidemic,1348022297 +209864,6502,futuristic,1348022296 +209864,6502,post-apocalyptic,1348022294 +209864,6502,thriller,1348022289 +209864,6502,zombies,1348022288 +209864,6874,cheesy,1348022798 +209864,6874,martial arts,1348022792 +209864,6874,Quentin Tarantino,1348022809 +209864,7360,Good remake,1348022758 +209864,7360,post-apocalyptic,1348022752 +209864,8874,hilarious,1348022228 +209864,8874,zombies,1348022225 +209864,56174,alone in the world,1348022367 +209864,56174,dystopia,1348022376 +209864,56174,post-apocalyptic,1348022365 +209864,56174,virus,1348022373 +209864,56174,Will Smith,1348022369 +209864,60069,artificial intelligence,1348022401 +209864,60069,dystopia,1348022394 +209864,60069,post-apocalyptic,1348022406 +209864,60069,quirky,1348022404 +209864,60069,Sci-Fi,1348022402 +209864,71535,Bill Murray,1348022267 +209864,71535,dark comedy,1348022269 +209864,71535,post-apocalyptic,1348022266 +209864,71535,zombies,1348022274 +209865,260,amazing,1441397773 +209865,260,high-tech,1441397782 +209869,260,Science Fiction,1432500887 +209873,4351,action-packed,1248219969 +209873,4351,adrenaline junkie,1248219920 +209873,27790,British,1248650670 +209873,27790,Danny Boyle,1248650670 +209873,27790,fantasy,1248650670 +209873,27790,heartwarming,1248650852 +209873,65130,abortion,1248650270 +209873,65130,bad ending,1248650507 +209873,65130,being told the truth and not liking it,1248650507 +209873,65130,critical,1248650271 +209873,65130,disillusionment,1248650507 +209873,65130,satisfaction in life,1248650507 +209919,1884,based on a book,1311908990 +209919,1884,drugs,1311908976 +209919,1884,Hunter S. Thompson,1311908969 +209919,1884,Johnny Depp,1311908973 +209919,1884,narrated,1311909006 +209919,1884,road trip,1311908992 +209919,1884,Terry Gilliam,1311908986 +209919,1884,true story,1311908994 +209919,56174,post-apocalyptic,1311909520 +209919,56174,zombies,1311909516 +209935,5445,time travel,1219894702 +209938,260,classic sci-fi,1437307141 +209938,260,future,1437307123 +209938,356,inspiring,1437995767 +209938,356,simplistic,1437995767 +209938,356,touching,1437995767 +209968,79132,uncatchable,1444979093 +209968,81834,Hogwarts,1444979033 +209972,122882,action,1433081307 +209972,122882,amazing screenplay,1433081307 +209972,122882,crazy people,1433081307 +209975,2329,disturbing,1291106884 +209975,2329,Edward Norton,1291106906 +209975,2329,emotional,1291106903 +209975,2329,powerful ending,1291106909 +209975,2329,racism,1291106890 +209975,2329,rape,1291106878 +209975,2329,thought-provoking,1291106908 +209975,2424,comedy,1291805664 +209975,2424,Meg Ryan,1291805660 +209975,2424,romance,1291805656 +209975,2424,romantic comedy,1291805658 +209975,2542,British,1292109005 +209975,2542,dark comedy,1292109002 +209975,2542,drugs,1292109013 +209975,2542,guns,1292109017 +209975,2542,hilarious,1292109011 +209975,2542,organized crime,1292109007 +209975,3020,Crazy,1292486715 +209975,3020,Michael Douglas,1292486719 +209975,4025,chick flick,1291805627 +209975,4025,Sandra Bullock,1291805618 +209975,4447,comedy,1291805555 +209975,4447,Gay stereotypes,1291805548 +209975,4447,stupid,1291805550 +209975,5530,Al Pacino,1291106033 +209975,5530,It's cheeky,1291106027 +209975,5530,virtual reality,1291106030 +209975,6539,action,1293660566 +209975,6539,adventure,1293660567 +209975,6539,comedy,1293660569 +209975,6539,Disney,1293660571 +209975,6539,Johnny Depp,1293660562 +209975,6539,pirates,1293660576 +209975,6539,sword fight,1293660573 +209975,7458,Epic,1291310062 +209975,8914,clever,1291237738 +209975,8914,complex,1291237746 +209975,8914,Complicated,1291237748 +209975,8914,complicated plot,1291237750 +209975,8914,Deep,1291237754 +209975,8914,directorial debut,1291237756 +209975,8914,disturbing,1291237752 +209975,8914,low budget,1291237759 +209975,8914,mindfuck,1291237739 +209975,8914,physics,1291237740 +209975,8914,sci-fi,1291237744 +209975,8914,time travel,1291237742 +209975,26614,easily confused with other movie(s) (title),1300556472 +209975,26614,made for TV,1300556476 +209975,33880,avante garde,1290981469 +209975,33880,bittersweet,1290981464 +209975,33880,quirky,1290981475 +209975,33880,unique,1290981450 +209975,33880,weird,1290981452 +209975,45720,Chick flick,1291805432 +209975,45720,fashion,1291805449 +209975,45720,New York,1291805439 +209975,45720,silly,1291805459 +209975,46723,Brad Pitt,1294303716 +209975,46723,multiple storylines,1294303692 +209975,46723,Oscar Nom 2007,1294303703 +209975,48516,atmospheric,1291107197 +209975,48516,complicated plot,1291107199 +209975,48516,ensemble cast,1291107229 +209975,48516,Leonardo DiCaprio,1291107219 +209975,48516,Martin Scorsese,1291107194 +209975,48516,Matt Damon,1291107208 +209975,48516,organized crime,1291107207 +209975,48516,police corruption,1291107204 +209975,48516,suspense,1291107212 +209975,48516,violence,1291107226 +209975,55276,corporate espionage,1291107368 +209975,55276,disillusionment,1291107370 +209975,55276,Drama,1291107400 +209975,55276,fixer,1291107392 +209975,55276,flash forward,1291107356 +209975,55276,George Clooney,1291107365 +209975,55276,lawyers,1291107367 +209975,55276,loan shark,1291107378 +209975,55276,movie to see,1291107357 +209975,55276,Sydney Pollack,1291107379 +209975,59900,Adam Sandler,1291062248 +209975,59900,exaggerated,1291062246 +209975,59900,movie to see,1291062256 +209975,59900,over the top,1291062252 +209975,59900,tasteless,1291062237 +209975,60072,action,1291062338 +209975,60072,Angelina Jolie,1291062335 +209975,60072,assassin,1291062336 +209975,60072,Morgan Freeman,1291062340 +209975,60072,plot twist,1291062333 +209975,60753,wrongful imprisonment,1291061641 +209975,64969,Jim carrey,1291805593 +209975,76173,funny,1292360060 +209975,76173,odd,1292360066 +209975,76173,revenge,1292360064 +209975,78105,adventure,1292487681 +209975,78105,based on a video game,1292487687 +209975,78105,fantasy,1292487682 +209975,78105,stylized,1292487692 +209975,79091,animation,1291309262 +209975,79091,funny,1291309248 +209975,79132,alternate reality,1294304235 +209975,79132,complicated,1294304237 +209975,79132,Leonardo DiCaprio,1294304234 +209975,79132,surreal,1294304240 +209975,79132,visually appealing,1294304238 +209975,79702,based on a comic,1293005592 +209975,79702,fast-paced,1293005587 +209975,79702,funny,1293005596 +209975,79702,shallow relationships,1293005608 +209975,79702,stylized,1293005581 +209975,79702,visually appealing,1293005616 +209975,84601,Diane Kruger,1300038103 +209975,84601,January Jones,1300038100 +209975,84601,Liam Neeson,1300038097 +210033,2324,Heartwarming,1431827240 +210033,2324,Oscar Winner,1431827261 +210033,41571,gong li,1431827577 +210033,41571,Ziyi Zhang,1431827563 +210033,64622,cinematography,1431827423 +210033,64622,Kate Winslet,1431827400 +210039,111,Classic,1395066076 +210039,111,cult film,1395066081 +210039,111,imdb top 250,1395066067 +210039,111,Martin Scorsese,1395066061 +210039,111,Robert De Niro,1395066058 +210039,527,Steven Spielberg,1401194567 +210048,296,classic,1438783871 +210048,296,pulpy,1438783871 +210048,296,sophisticated,1438783871 +210048,356,funny,1434382813 +210048,356,handicapped,1434382813 +210048,356,inspirational,1434382813 +210074,6377,animation,1447323177 +210082,1213,Martin Scorsese,1287672859 +210082,4848,David Lynch,1287672802 +210122,260,classic,1442731745 +210122,260,"space opera, science fiction, action",1442731740 +210128,260,Science Fiction,1440611574 +210128,260,space opera,1440611581 +210128,94070,comedy,1440611765 +210128,94070,India,1440611717 +210128,94070,Old age,1440611749 +210128,114329,english comedy,1440611934 +210128,114329,live and death,1440611951 +210128,114329,scotland,1440611920 +210128,129428,comedy,1440611658 +210128,129428,India,1440611667 +210131,541,Philip K. Dick,1234018322 +210131,5445,Philip K. Dick,1234018269 +210137,546,animation,1187928964 +210137,546,classic,1187928964 +210137,546,videogame,1187928964 +210137,837,girl,1187929034 +210137,837,private school,1187929034 +210137,1717,horror,1187928790 +210137,1907,Amazing!,1187928702 +210137,1907,animated,1187928702 +210137,1907,chinese,1187928702 +210137,1907,Disney,1187928702 +210137,1914,Native Americans,1194581046 +210137,2116,epic,1187929020 +210137,2384,Animals,1187929014 +210137,2384,cute,1187929014 +210137,2384,pig,1187929014 +210137,3916,football,1187928774 +210137,3916,high school,1187928775 +210137,3916,racism,1187928774 +210137,4270,egypt,1187928745 +210137,4270,the rock,1187928745 +210137,4310,WWII,1187928712 +210137,6373,funny,1187928901 +210137,6373,god,1187928901 +210137,6373,jennifer aniston,1187928901 +210137,6373,Jim Carrey,1187928901 +210137,6378,cars,1187928670 +210137,6378,chase,1187928647 +210137,6378,italian,1187928670 +210137,37731,extremely violent,1194843615 +210137,48774,great camera work,1196909064 +210137,53318,boobs,1196125878 +210137,53318,british,1196125825 +210137,53318,grocerystore,1196125878 +210137,53318,supermarket,1196125878 +210137,58293,disappointing,1205715580 +210137,58293,strangely funny,1205715580 +210137,60943,boring plot,1240116694 +210137,60943,good cinematography,1240116695 +210147,37857,dreamlike,1451687540 +210147,37857,visually appealing,1451687529 +210147,58627,cliché,1451833457 +210147,58627,Martial Arts,1451833471 +210147,150700,bad acting,1452763868 +210147,150700,bad plot,1452763862 +210177,260,sci-fi,1438729495 +210177,356,epic,1438764021 +210177,356,family,1438764021 +210177,356,heartwarming,1438764021 +210177,356,seventies,1438764021 +210177,5970,Coming of age,1438731102 +210178,4995,Education,1378260599 +210178,4995,mathematics,1378260532 +210178,4995,mental illness,1378260540 +210178,4995,romance,1378260546 +210178,4995,true story,1378260560 +210178,7263,OBSESSIVE QUESTS,1378260792 +210178,7263,Olympics,1378260802 +210178,7263,Sports,1378260799 +210178,7263,Sports Coordinator:Mark Ellis,1378260789 +210178,7263,USA,1378260810 +210178,65514,Bruce Lee Master,1378260744 +210178,65514,kung fu,1378260735 +210178,65514,martial arts,1378260729 +210178,81845,emotional,1378260763 +210178,81845,father-son relationship,1378260773 +210178,103639,Sport,1382012904 +210200,260,Nope,1433925928 +210201,112552,education,1432227225 +210201,112552,good acting,1432227242 +210201,112552,jazz,1432227226 +210201,112552,music,1432227249 +210201,112552,musicians,1432227234 +210217,597,Julia Roberts,1143082450 +210217,597,ROMANTIC,1143082439 +210217,597,YOUNG WOMEN'S FAVORATE,1143082439 +210219,27002,astronauts,1253654216 +210219,27002,history,1253654253 +210219,27002,NASA,1253654216 +210219,27002,rubbish,1253654246 +210219,27002,Series,1253654262 +210219,27002,space,1253654220 +210219,27002,true story,1253654226 +210219,48043,artistic,1253107498 +210219,48043,atmospheric,1253107500 +210219,48043,death,1253107458 +210219,48043,disease,1253107462 +210219,48043,inspirational,1253107468 +210219,48043,lyrical,1253107472 +210219,48043,Music,1253107474 +210219,48043,time travel,1253107478 +210219,48043,visually appealing,1253107446 +210219,69844,based on a book,1253107124 +210219,69844,fantasy,1253107115 +210264,318,inspirational,1431726536 +210264,318,justice,1431726523 +210264,318,Morgan Freeman,1431726507 +210264,318,psychology,1431726531 +210264,2762,twist ending,1431726411 +210271,296,drama,1191444821 +210271,296,seen at the cinema,1191444815 +210289,49932,surreal,1188484679 +210289,52281,Didn't finish,1180049898 +210297,260,classic,1435057673 +210297,260,cult classic,1435057683 +210297,260,must see,1435057677 +210297,260,sci-fi,1435057655 +210314,260,"science fiction, classic",1439391285 +210318,5995,sad,1425267362 +210318,5995,war,1425267375 +210343,370,Funny as hell,1169693770 +210343,3600,Elvis,1189138873 +210343,3893,Aaron Eckhart,1169694926 +210343,7636,Brian De Palma,1165811668 +210343,8798,Michael Mann,1165807339 +210348,260,adventure,1439317460 +210348,260,space,1439317443 +210362,6874,Lucy Liu,1195217002 +210362,44665,lucy liu,1195216417 +210362,50153,Lucy Liu,1195218101 +210373,4993,fantasy,1445798791 +210373,5952,fantasy,1445798809 +210373,7153,fantasy,1445798772 +210373,7502,military,1445798730 +210373,7502,war,1445798720 +210373,45447,thriller,1445798546 +210373,59900,comedy,1445798400 +210373,68554,thriller,1445798511 +210373,119145,action,1445798645 +210399,194,interesting,1142734197 +210399,296,gross but brilliant,1146257660 +210399,345,Terence Stamp,1158194571 +210399,457,Tommy Lee Jones,1146257784 +210399,480,amazing FX,1146257725 +210399,593,Jodie Foster,1146257686 +210399,708,Janeane Garofalo,1170561656 +210399,750,cynical,1142129951 +210399,750,hilarious,1142129951 +210399,994,Stanley Tucci,1158194740 +210399,1230,perfect comedy,1142129904 +210399,1238,charming,1158194226 +210399,1238,magical,1158194226 +210399,1270,fun,1158194655 +210399,2076,disturbing,1158194772 +210399,2105,amazing FX for the time,1160097653 +210399,2300,brilliant,1158194263 +210399,2300,perfect comedy,1158194263 +210399,2439,agonizing,1142734080 +210399,2439,true,1142734080 +210399,2770,Eddie Murphy,1158194804 +210399,3819,charming,1142734042 +210399,3819,quirky,1142734042 +210399,3967,charming,1142129831 +210399,3967,touching,1142129831 +210399,4025,Cute!,1155052322 +210399,4086,Ellen Barkin,1158194715 +210399,4086,sexy,1158194715 +210399,5009,Will Smith,1158194596 +210399,5957,crapflix,1155051842 +210399,6267,too slow,1155052219 +210399,6867,charming,1142130218 +210399,6867,magical,1142130218 +210399,8610,perfect comedy,1142129883 +210399,26425,hilarious,1143854602 +210399,32598,charming,1142734202 +210399,33171,child abuse,1155050702 +210399,37733,disappointing,1143854443 +210399,37733,gratuitous sex,1143854443 +210399,37733,gratuitous violence,1143854443 +210399,39444,couldn't finish it,1142129702 +210399,39444,depressing,1142129702 +210399,40887,depressing,1157934390 +210399,40887,unwatchable,1157934390 +210399,40959,couldn't finish it,1148859580 +210399,41285,couldn't finish it,1148859538 +210399,41285,Woody Allen is not Dostoevsky,1148859538 +210399,42002,poor substitute for original movie,1155051680 +210399,44761,clever,1158194539 +210399,44761,self-mocking,1158194539 +210399,47044,sloooooow,1170560795 +210405,1907,disney,1186253708 +210405,3826,waste of time and money to see this,1186253787 +210405,3967,heartwarming,1186253769 +210405,4447,reese witherspoon,1186253687 +210405,4975,thinker,1186253825 +210405,6502,scary,1186253747 +210426,6711,Bill Murray,1215852911 +210426,8917,Trey Parker,1215792475 +210450,428,al pacino,1186523362 +210450,428,italian,1186523362 +210450,428,mafia,1186523362 +210450,428,new york,1186523362 +210450,915,audrey hepburn,1186523380 +210450,915,classic,1186523380 +210450,915,humphrey bogart,1186523380 +210450,916,audrey hepburn,1186523316 +210450,916,classic,1186523316 +210450,916,gregory peck,1186523316 +210450,916,italy,1186523316 +210450,1441,comedy,1186523290 +210450,1441,johnny depp,1186523290 +210450,3594,chick flick,1186531054 +210450,4958,Owen Wilson,1186531462 +210450,4995,intelligent,1186531438 +210450,5308,comedy,1186523514 +210450,5308,family,1186523514 +210450,5945,Jack Nicholson,1186531151 +210450,7444,Jennifer Garner,1186531134 +210450,8665,kickass,1186531065 +210450,8665,realistic action,1186531070 +210450,8665,want to see again,1186531069 +210450,8943,Annette Bening,1186531460 +210450,8970,england,1186523405 +210450,8970,fantasy,1186523405 +210450,8970,johnny depp,1186523406 +210450,8970,kate winslet,1186523406 +210450,8970,period film,1186523406 +210450,35836,comedy,1186523435 +210450,35836,steve carrell,1186523435 +210450,39183,country,1186523499 +210450,39183,cowboys,1186523499 +210450,39183,gay,1186523499 +210450,48326,Jude Law,1186531218 +210450,51662,sword fight,1186531080 +210450,51834,James McAvoy,1186531094 +210450,54286,murder,1186531074 +210479,22,thriller,1368433291 +210479,31,inspirational,1368433106 +210479,111,dark,1368433003 +210479,111,mental illness,1368433119 +210479,157,politics,1368433241 +210479,161,tense,1368433270 +210479,216,stupid,1368433257 +210479,440,politics,1368433241 +210479,519,franchise,1368433058 +210479,555,violent,1368433306 +210479,832,tense,1368433269 +210479,832,thriller,1368433291 +210479,861,police,1368433226 +210479,1089,violent,1368433307 +210479,1095,ensemble cast,1368433026 +210479,1206,violent,1368433306 +210479,1214,tense,1368433269 +210479,1262,ensemble cast,1368433026 +210479,1287,christianity,1368432985 +210479,1390,politics,1368433241 +210479,1396,ensemble cast,1368433026 +210479,1589,ensemble cast,1368433026 +210479,1597,thriller,1368433291 +210479,1610,thriller,1368433291 +210479,1617,conspiracy,1326754495 +210479,1950,police,1368433226 +210479,2076,dark,1368433003 +210479,2335,stupid,1368433257 +210479,2353,thriller,1368433291 +210479,2383,police,1368433226 +210479,2490,violent,1368433306 +210479,2882,nazis,1368433157 +210479,2888,high school,1368433085 +210479,2912,revenge,1393696515 +210479,2912,stylish,1393696520 +210479,2912,unusual editing,1393696523 +210479,2944,ensemble cast,1368433026 +210479,2959,violent,1368433307 +210479,2985,violent,1368433307 +210479,3146,stupid,1368433257 +210479,3178,inspirational,1368433106 +210479,3256,thriller,1368433291 +210479,3273,franchise,1368433059 +210479,3362,police,1368433226 +210479,3440,franchise,1368433058 +210479,3897,1970s,1372342218 +210479,3897,bittersweet,1372342221 +210479,3897,coming of age,1372342225 +210479,3897,great soundtrack,1372342229 +210479,3897,journalism,1372342237 +210479,3897,Kate Hudson,1372342246 +210479,3897,Zooey Deschanel,1372342252 +210479,4226,nonlinear,1326754504 +210479,4388,stupid,1368433257 +210479,4974,stupid,1368433257 +210479,5107,nazis,1368433157 +210479,5785,stupid,1368433257 +210479,6323,mystery,1368433132 +210479,6537,franchise,1368433059 +210479,6808,nazis,1368433157 +210479,7482,kung fu,1326754477 +210479,8781,politics,1368433241 +210479,33660,1930s,1372266572 +210479,33660,boxing,1372266609 +210479,33660,boxing drama,1372266614 +210479,33660,cinematography,1372266576 +210479,33660,feel good movie,1372266580 +210479,33660,great depression,1372266604 +210479,33660,radio,1372266591 +210479,33660,true story,1372266599 +210479,51540,police,1368433226 +210479,53121,franchise,1368433059 +210479,55290,police,1368433226 +210479,63113,franchise,1368433058 +210479,64622,nazis,1368433157 +210479,69757,music,1326291347 +210479,69757,quirky,1326291340 +210479,74458,mystery,1368433132 +210479,79293,action,1374778691 +210479,79293,cliche,1374778696 +210479,79293,predictable,1374778704 +210479,79293,spy,1374778789 +210479,79293,thriller,1374778793 +210479,79293,violent,1374778796 +210479,81641,based on a true story,1372716390 +210479,81641,CIA,1372716394 +210479,81641,corruption,1372716397 +210479,81641,political thriller,1372716403 +210479,81641,sean penn,1372716406 +210479,83349,comic book,1374870531 +210479,83349,martial arts,1374870536 +210479,83349,Seth Rogen,1374870539 +210479,83349,sexist,1374870568 +210479,83349,slapstick,1374870563 +210479,83349,stylized violence,1374870544 +210479,83349,visually appealing,1374870546 +210479,87234,great soundtrack,1346936415 +210479,88744,action,1374958673 +210479,88744,sci-fi,1374958715 +210479,88744,The police had awful tactics,1374958731 +210479,88744,thriller,1374958718 +210479,88744,touching,1374958722 +210479,93363,Action,1376249110 +210479,93363,better than expected,1376249117 +210479,93363,child killing,1376249147 +210479,93363,fantasy,1376249124 +210479,93363,great ending,1376249161 +210479,93363,great soundtrack,1376249132 +210479,93363,sci-fi,1376249136 +210479,93363,well done,1376249140 +210479,93510,comedy,1403449798 +210479,93510,funny,1403449803 +210479,93510,Ice Cube,1403449810 +210479,93510,Johnny Depp,1403449813 +210479,99112,Action,1376685382 +210479,99112,Jai Courtney,1376685386 +210479,100383,medications,1375216648 +210479,100383,twist ending,1375216651 +210479,101360,suspense,1380030089 +210479,101864,dystopia,1377287675 +210479,101864,interesting concept,1377287678 +210479,101864,post-apocalyptic,1377287684 +210479,101864,sci-fi,1377287686 +210479,103027,joss whedon,1394985716 +210479,103042,comic book,1372173498 +210479,103042,Superman,1372173506 +210479,103042,Zack Snyder,1372173532 +210479,103228,giant robots,1373997809 +210479,103228,Guillermo del Toro,1373997813 +210479,103228,Idris Elba,1373997824 +210479,103341,Edgar Wright,1374596482 +210479,103341,Nick Frost,1374596486 +210479,103341,Simon Pegg,1374596489 +210479,104078,based on a TV show,1387130865 +210479,104078,hostage,1387130881 +210479,104078,radio,1387130871 +210479,104078,Steve Coogan,1387130874 +210479,106916,amy adams,1389715336 +210479,106916,Bradley Cooper,1389715343 +210479,106916,Christian Bale,1389715346 +210479,106916,con artists,1389715351 +210479,106916,corruption,1389715357 +210479,106916,costumes,1389715361 +210479,106916,Jennifer Lawrence,1389715364 +210479,106916,Jeremy Renner,1389715369 +210479,106916,light,1389715372 +210479,106916,Louis C.K.,1389715375 +210479,106916,mobster,1389715404 +210479,106916,New Jersey,1389715398 +210479,106916,soundtrack,1389715384 +210483,260,classic,1439788536 +210483,260,good vs evil,1439788541 +210502,23,Sylvester Stallone,1341828001 +210502,161,war,1341827776 +210502,442,action,1308619100 +210502,442,dystopia,1308619084 +210502,442,Sylvester Stallone,1308619089 +210502,442,time travel,1308619093 +210502,464,Jean-Claude Van Damme,1357595777 +210502,464,John Woo,1357595779 +210502,507,Clint Eastwood,1344308762 +210502,520,Mel Brooks,1360438960 +210502,533,Comic Book adaption,1309117252 +210502,692,Mario Van Peebles,1308619855 +210502,741,anime,1407963240 +210502,748,aliens,1413230760 +210502,799,Peter Jackson,1345511452 +210502,903,AFI 100,1341262579 +210502,903,Alfred Hitchcock,1341262563 +210502,903,Hitchcock,1341262567 +210502,903,imdb top 250,1341262589 +210502,1077,comedy,1368210600 +210502,1077,dystopia,1368210584 +210502,1077,Woody Allen,1368210587 +210502,1199,atmospheric,1309647708 +210502,1199,black comedy,1309647703 +210502,1199,dark comedy,1309647713 +210502,1199,dystopia,1309647697 +210502,1199,sci-fi,1309647721 +210502,1199,surreal,1309647725 +210502,1218,John Woo,1355543531 +210502,1233,classic,1304698899 +210502,1233,claustrophobic,1304698896 +210502,1233,epic,1304700276 +210502,1233,German,1304699017 +210502,1233,imdb top 250,1304698945 +210502,1233,long,1304698937 +210502,1233,Nazis,1304699012 +210502,1233,realistic,1304698927 +210502,1233,submarine,1304698889 +210502,1233,tense,1304699022 +210502,1233,too long,1304698935 +210502,1233,U-boat,1304698903 +210502,1233,underwater,1304698914 +210502,1233,war,1304698911 +210502,1233,World War II,1304698907 +210502,1233,WWII,1304698909 +210502,1276,classic,1339888233 +210502,1276,imdb top 250,1339888259 +210502,1276,Paul Newman,1339888236 +210502,1301,sci-fi,1380764077 +210502,1356,aliens,1320282200 +210502,1356,sci-fi,1320282220 +210502,1356,space,1320282212 +210502,1356,Star Trek,1320282196 +210502,1518,thriller,1350488529 +210502,1566,animation,1345222468 +210502,1566,Disney,1345222456 +210502,1687,Bruce Willis,1341828041 +210502,1809,bloody,1303763314 +210502,1809,BREAKUPS AND DIVORCES,1303763318 +210502,1809,drama,1303763304 +210502,1809,japan,1303763288 +210502,1809,Takeshi Kitano,1303763288 +210502,1809,violent,1303763288 +210502,1833,Bruce Willis,1341827957 +210502,2034,bad science,1308145236 +210502,2116,adaptation,1304700412 +210502,2116,adapted from:book,1304700415 +210502,2116,Adventure,1304700420 +210502,2116,animated,1304700423 +210502,2116,Animation,1304700426 +210502,2116,atmospheric,1304700431 +210502,2116,based on a book,1304700439 +210502,2116,epic,1304700447 +210502,2116,fantasy,1304700451 +210502,2116,mythology,1304700456 +210502,2186,Alfred Hitchcock,1329791935 +210502,2344,Andrei Konchalovsky,1344308709 +210502,2670,based on a book,1304700795 +210502,2670,submarine,1304700799 +210502,2670,World War II,1304700803 +210502,2810,anime,1323135153 +210502,2810,Satoshi Kon,1407963441 +210502,2851,Farrah Fawcett,1308836530 +210502,2851,Harvey Keitel,1308836525 +210502,2851,Kirk Douglas,1308836527 +210502,2851,space station,1308836535 +210502,3000,anime,1407963601 +210502,3087,comedy,1358456307 +210502,3307,100 Greatest Movies,1304702319 +210502,3307,beautiful,1304702327 +210502,3307,bittersweet,1304702342 +210502,3307,blindness,1304702337 +210502,3307,Charlie Chaplin,1304702345 +210502,3307,classic,1304702424 +210502,3307,comedy,1304702347 +210502,3307,drama,1304702352 +210502,3307,funny,1304702357 +210502,3307,imdb top 250,1304702361 +210502,3307,must see,1304702424 +210502,3307,silent movie,1304702371 +210502,3307,sweet,1304702378 +210502,3310,Charles Chaplin,1360625615 +210502,3310,Charlie Chaplin,1360625611 +210502,3555,Action,1304700543 +210502,3555,submarine,1304700571 +210502,3555,submarines,1304700573 +210502,3555,U-boat,1304700695 +210502,3555,unrealistic,1304700579 +210502,3555,War,1304700586 +210502,3555,war movie,1304700590 +210502,3555,World War II,1304700593 +210502,3555,WWII,1304700598 +210502,3592,animation,1309365643 +210502,3592,low budget,1309365712 +210502,3592,sci-fi,1309365643 +210502,3592,Time paradox,1309365659 +210502,3592,time travel,1309365643 +210502,4446,anime,1407964465 +210502,4475,Afghanistan,1304699832 +210502,4475,soviet,1304699860 +210502,4475,tank,1304699761 +210502,4475,war,1304699771 +210502,4489,comedy,1339887753 +210502,4553,aliens,1308620404 +210502,4553,conspiracy,1308620362 +210502,4553,Cult classic,1308620378 +210502,4553,cult film,1308620381 +210502,4553,distopia,1308620385 +210502,4553,sci-fi,1308620370 +210502,4553,tense,1308620391 +210502,4865,Atmospheric,1322010433 +210502,4865,gothic,1322010445 +210502,4902,Spanish,1358479215 +210502,4902,Spanish Civil War,1358479210 +210502,4941,great soundtrack,1311271124 +210502,4941,space opera,1311271131 +210502,4990,animation,1345593224 +210502,5056,Werner Herzog,1324694534 +210502,5072,anime,1407964117 +210502,5146,anime,1407963970 +210502,5146,vampire,1407963977 +210502,5400,jack ryan,1308618835 +210502,5400,Morgan Freeman,1308618838 +210502,5400,nuclear bomb,1308618840 +210502,5400,predictable,1308618851 +210502,5400,Tom Clancy,1308618848 +210502,5570,Alejandro Amenábar,1305052737 +210502,5570,directorial debut,1305052733 +210502,5570,disturbing,1305052869 +210502,5570,mystery,1305052602 +210502,5570,opera prima,1305052674 +210502,5570,snuff movie,1305052639 +210502,5570,suspense,1305052602 +210502,5570,thriller,1305052602 +210502,5618,anime,1407963218 +210502,5690,anime,1405706677 +210502,5690,Studio Ghibli,1405706685 +210502,5971,anime,1407963571 +210502,6078,aerial dogfights,1308618748 +210502,6078,Clint Eastwood,1308618740 +210502,6078,Cold War,1308618743 +210502,6283,anime,1407963314 +210502,6350,animated masterpiece,1327367326 +210502,6350,anime,1327367307 +210502,6350,fantasy,1327367338 +210502,6350,great soundtrack,1327367329 +210502,6350,Hayao Miyazaki,1327367309 +210502,6350,Miyazaki,1327367320 +210502,6350,steampunk,1327367313 +210502,6350,Studio Ghibli,1327367315 +210502,6713,anime,1400854705 +210502,6774,David Cronenberg,1358299003 +210502,6774,gore,1358299026 +210502,6854,cold war,1304701425 +210502,6854,destroyer,1304701499 +210502,6854,ego,1304701354 +210502,6854,Navy,1304701564 +210502,6854,obsession,1304701278 +210502,6854,Soviet,1304701219 +210502,6854,submarine,1304701223 +210502,6854,tense,1304701235 +210502,6857,anime,1407963518 +210502,6966,black comedy,1309117147 +210502,6966,dark comedy,1309117145 +210502,6966,horror,1309117156 +210502,6966,Sam Raimi,1309117160 +210502,6966,superhero,1309117162 +210502,6966,superheros,1309117167 +210502,6966,violence,1309117172 +210502,6987,Best of Rotten Tomatoes: All Time,1309737282 +210502,6987,imdb top 250,1309737293 +210502,7099,adventure,1304702565 +210502,7099,anime,1304702569 +210502,7099,classic,1304702573 +210502,7099,comic book,1304702581 +210502,7099,dystopic future,1304702585 +210502,7099,ecology,1304702909 +210502,7099,environmental,1304702587 +210502,7099,fantasy,1304702589 +210502,7099,fantasy world,1304702594 +210502,7099,Hayao Miyazaki,1304702597 +210502,7099,Japan,1304702600 +210502,7099,Miyazaki,1304702604 +210502,7099,narrated,1304702607 +210502,7099,post-apocalyptic,1304702610 +210502,7099,sci-fi,1304702617 +210502,7099,steampunk,1304702686 +210502,7099,strong female lead,1304702623 +210502,7099,Studio Ghibli,1304702627 +210502,7099,stylized,1304702641 +210502,7099,tense,1304702635 +210502,7099,war,1304702632 +210502,7118,anime,1323485216 +210502,7118,sci-fi,1323485221 +210502,7439,adapted from:comic,1309116701 +210502,7439,comic book,1309116705 +210502,7439,marvel,1309116711 +210502,7439,revenge,1309116716 +210502,7439,superhero,1309116698 +210502,7477,Sylvester Stallone,1345507522 +210502,8157,anime,1407963552 +210502,8376,comedy,1339887624 +210502,8376,independent film,1339887630 +210502,8426,anime,1332123711 +210502,8426,robots,1332123719 +210502,8607,anime,1413072462 +210502,8675,based on a book,1304700725 +210502,8675,submarine,1304700733 +210502,8675,U-boat,1304700758 +210502,8675,war,1304700758 +210502,8675,World War II,1304700735 +210502,8928,Beautiful Woman,1308084834 +210502,26463,anime,1326598648 +210502,26662,anime,1407963296 +210502,26701,anime,1407964480 +210502,26776,anime,1407963424 +210502,26819,dystopia,1308619186 +210502,26869,anime,1407964071 +210502,26869,macross,1407964076 +210502,27156,action,1304700887 +210502,27156,animation,1304700889 +210502,27156,anime,1304700894 +210502,27156,apocalypse,1304700897 +210502,27156,epic,1304700953 +210502,27156,Hideaki Anno,1304700904 +210502,27156,mecha,1304700907 +210502,27156,mental illness,1304700911 +210502,27156,psychology,1304700924 +210502,27156,violence,1304700992 +210502,27441,anime,1407963907 +210502,27660,animation,1322013791 +210502,27660,anime,1322013794 +210502,27660,cyberpunk,1322013796 +210502,27660,matrix,1322013802 +210502,27660,sci-fi,1322013798 +210502,27728,anime,1407964448 +210502,27728,cyberpunk,1407964454 +210502,31150,animation,1351478640 +210502,31150,Bakshi,1351478623 +210502,31184,anime,1407964398 +210502,31658,anime,1407963929 +210502,31660,anime,1407947421 +210502,31660,steampunk,1407947426 +210502,32554,anime,1407964092 +210502,32554,Cyberpunk,1407964096 +210502,32898,black and white,1309817660 +210502,32898,moon,1309817657 +210502,32898,space,1309817674 +210502,33294,anime,1360350825 +210502,36401,Terry Gilliam,1359344098 +210502,42422,anime,1407964529 +210502,44022,Animation,1345049315 +210502,45730,M. Night Shyamalan,1359343961 +210502,46948,animation,1345592953 +210502,51007,war,1345511168 +210502,51007,World War II,1345511172 +210502,52806,anime,1407964163 +210502,52806,dragons,1303762472 +210502,52806,fantasy,1303762426 +210502,52806,magic,1303762463 +210502,52806,patricide,1303762435 +210502,52806,Studio Ghibli,1303762409 +210502,52885,animation,1317427334 +210502,52885,anime,1317427322 +210502,54229,animation,1366748643 +210502,55167,anime,1324514668 +210502,57504,Anime,1323135123 +210502,58803,based on a book,1305307052 +210502,58803,based on a true story,1305307026 +210502,58803,Kevin Spacey,1305307020 +210502,58803,predictable,1305307030 +210502,59784,3D,1360349701 +210502,59784,animation,1360349692 +210502,60981,anime,1407964581 +210502,62331,action,1304702086 +210502,62331,amnesia,1304702229 +210502,62331,anarchism,1304701868 +210502,62331,animation,1304701938 +210502,62331,anime,1304701938 +210502,62331,FIGHTING THE SYSTEM,1304701871 +210502,62331,pregnancy,1304702143 +210502,62331,prison break,1304701877 +210502,62331,prison escape,1304701880 +210502,62331,Production I.G,1304701884 +210502,62331,sci-fi,1304702179 +210502,62331,sex,1304702099 +210502,62331,stylized,1304701889 +210502,62331,unrealistic,1304702086 +210502,62331,violence,1304701938 +210502,62336,action,1309223066 +210502,62336,aliens,1309223069 +210502,62336,anime,1309223039 +210502,62336,mecha,1309223043 +210502,62336,robots,1309223077 +210502,62336,rock and roll,1309223073 +210502,62336,surreal,1309223048 +210502,62336,weird,1309223050 +210502,62849,Guy Ritchie,1345510311 +210502,63072,based on a book,1311561929 +210502,63072,cannibalism,1311561931 +210502,63072,dystopia,1311561935 +210502,63072,post-apocalyptic,1311561938 +210502,63072,tense,1311561941 +210502,64695,anime,1350768528 +210502,64695,buddy movie,1350768528 +210502,64695,samurai,1350768528 +210502,65261,anime,1338432322 +210502,65261,Ghibli,1338432337 +210502,65261,Hayao Miyazaki,1338432324 +210502,65261,Studio Ghibli,1338432329 +210502,66097,adapted from:book,1311811307 +210502,66097,animation,1311811319 +210502,66097,based on a book,1311811310 +210502,66097,dark,1311811335 +210502,66097,stop motion,1311811321 +210502,68194,based on a true story,1315262073 +210502,68194,based on true story,1315262052 +210502,69436,Vinnie Jones,1346806246 +210502,72104,animation,1344687926 +210502,72104,short,1344687949 +210502,72777,aliens,1335883601 +210502,72998,3D,1367264977 +210502,74095,anime,1309013628 +210502,74095,dark,1309013628 +210502,74095,monster,1309013628 +210502,74095,rape,1309013628 +210502,74095,sex,1309013628 +210502,74095,violence,1309013628 +210502,74271,anime,1309222499 +210502,74271,pirates,1309222499 +210502,74271,space,1309222499 +210502,74553,animation,1345080825 +210502,74789,3D,1359343871 +210502,74789,Tim Burton,1359343875 +210502,76093,3D,1360349746 +210502,76093,animation,1359054386 +210502,76175,3D,1360350058 +210502,76175,adventure,1358041312 +210502,76175,fantasy,1358041306 +210502,76175,mythology,1358041301 +210502,77561,action,1309116628 +210502,77561,based on a comic,1309116625 +210502,77561,comic book,1309116631 +210502,77561,lacks tension,1309116649 +210502,77561,Marvel,1309116622 +210502,77561,Robert Downey Jr.,1309116608 +210502,77561,Samuel L. Jackson,1309116605 +210502,77561,Scarlett Johansson,1309116610 +210502,77561,sci-fi,1309116612 +210502,77561,superhero,1309116602 +210502,77709,anime,1407964496 +210502,77800,dark comedy,1317859932 +210502,79091,3D,1360349851 +210502,79091,animation,1360349854 +210502,79132,sci-fi,1345253808 +210502,79695,80s nostalgia,1313814659 +210502,79695,violence,1313814671 +210502,80615,3D,1360349610 +210502,80615,animation,1360272358 +210502,81537,comedy,1311467841 +210502,81537,road trip,1311467837 +210502,81564,3D,1366748709 +210502,81564,animation,1366748698 +210502,81847,3D,1361548273 +210502,81847,animation,1361548278 +210502,82667,gore,1392401695 +210502,83132,Anime,1343782289 +210502,83132,Studio Ghibli,1343782285 +210502,83349,3D,1367005399 +210502,84944,animation,1345592849 +210502,85179,anime,1407964654 +210502,86835,3D,1360349904 +210502,87222,3D,1373839764 +210502,87430,3D,1369923793 +210502,87520,audience intelligence underestimated,1329703274 +210502,89753,based on a book,1326209362 +210502,89753,Spies,1326209373 +210502,90746,animation,1345505777 +210502,90746,Steven Spielberg,1345505782 +210502,91529,Batman,1344687481 +210502,91529,comic book,1344687512 +210502,91529,comic books,1344687493 +210502,91529,superhero,1344687503 +210502,92681,3D,1360349783 +210502,93473,anime,1335836616 +210502,93473,dystopia,1335836599 +210502,93473,sci-fi,1335836603 +210502,93766,3D,1360349822 +210502,93805,steampunk,1350768990 +210502,94864,aliens,1344126753 +210502,94864,Ridley Scott,1344126769 +210502,94864,scifi,1344126779 +210502,95965,anime,1350768724 +210502,95965,Dragon Ball,1350768724 +210502,95965,epic,1350768724 +210502,96281,3D,1360349998 +210502,96281,animation,1360349998 +210502,96737,3D,1360349955 +210502,96737,Action,1358479257 +210502,96737,Dystopia,1358479263 +210502,96737,sci-fi,1358479267 +210502,97172,3D,1367617392 +210502,97913,3D,1367264662 +210502,97913,animation,1367264667 +210502,98019,anime,1360274197 +210502,98019,cgi,1360274252 +210502,98019,dystopia,1360274197 +210502,98019,sci-fi,1360274197 +210502,99114,Quentin Tarantino,1360962018 +210502,100163,3D,1373634135 +210502,100729,aliens,1368725743 +210502,100729,animation,1368725651 +210502,100729,anime,1368725642 +210502,100729,sci-fi,1368725690 +210502,100729,space,1368725721 +210502,102051,anime,1411988942 +210502,104283,anime,1407964187 +210502,106762,anime,1407963115 +210502,107723,anime,1407964367 +210502,108255,anime,1414792769 +210502,108979,anime,1407962267 +210502,109684,anime,1407964792 +210502,111759,aliens,1411989100 +210502,112807,anime,1407962974 +210502,112809,anime,1407962889 +210502,112852,sci-fi,1416756130 +210502,114627,anime,1415200826 +210516,72,Bad Whit Stillman,1160310007 +210516,32160,arch,1137127028 +210516,32160,lame,1137127028 +210516,32160,terrible,1137127028 +210517,4896,Suspense,1448280228 +210517,81564,sensitive villians,1438601764 +210517,122892,fiction,1448280322 +210517,122892,non-stop action,1448280305 +210517,134853,emotions,1438601837 +210519,2784,60s horror,1389380621 +210519,2784,atmospheric,1389380601 +210519,2784,devil worship,1389380594 +210519,2784,Scary Movies To See on Halloween,1389380608 +210519,2784,visually appealing,1389380613 +210519,4786,ghosts,1389380647 +210519,4786,haunted house,1389380654 +210519,4786,sexuality,1389380657 +210519,4833,eerie,1389380714 +210519,51540,serial killer,1372887600 +210529,55908,dialogue driven,1281356956 +210529,55908,intelligent,1281356969 +210529,55908,religion,1281356961 +210529,55908,thought-provoking,1281356965 +210551,6026,cannibalism,1437818680 +210551,6026,interview,1437818818 +210551,6026,murder,1437818688 +210551,6026,sex crime,1437818830 +210551,118338,black and white,1437819225 +210551,118338,medieval,1437818848 +210574,115502,comedy,1427422543 +210574,115502,romance,1427422537 +210583,260,action,1430475680 +210583,260,Exiting,1430475675 +210583,59501,action,1430509688 +210583,59501,adventure,1430509688 +210583,59501,great acting,1430509688 +210592,89745,action,1451775431 +210592,89745,great humor,1451775457 +210592,89745,humorous,1451775454 +210592,89745,Scarlett Johansson,1451775433 +210592,89745,superhero,1451775421 +210592,89745,superhero team,1451775448 +210592,91529,great ending,1451775290 +210592,91529,intense,1451775295 +210592,91529,superhero,1451775284 +210592,109487,physics,1451775047 +210592,109487,relativity,1451775014 +210592,109487,sci-fi,1451775082 +210592,109487,science fiction,1451775041 +210592,109487,space,1451775080 +210592,109487,space travel,1451775033 +210592,109487,wormhole,1451775045 +210592,112852,Action,1451775384 +210592,112852,adventure,1451775382 +210592,112852,Chris Pratt,1451775390 +210592,112852,great soundtrack,1451775378 +210592,112852,humorous,1451775398 +210592,112852,Marvel Cinematic Universe,1451775387 +210592,112852,science fiction,1451775394 +210592,112852,space,1451775373 +210592,112852,superhero,1451775407 +210597,4973,garden gnome,1450880866 +210597,115617,healer robot,1450969319 +210597,134853,depression,1450969260 +210598,260,force,1444611862 +210598,260,good science fictional technology,1444611868 +210623,260,heard about it,1434794562 +210623,260,I did not watch this movie,1434794551 +210632,1222,want to see again,1175391207 +210640,6863,seen more than once,1171239964 +210641,3698,Arnold Schwarzenegger,1169572567 +210659,54276,remake,1219260088 +210668,19,Gross-out,1246483638 +210668,19,spit,1246483638 +210668,1080,comedy,1246487989 +210668,1080,Monty Python,1246488001 +210668,1080,satire,1246487993 +210668,1080,whimsical,1246487998 +210668,4973,beautifully filmed,1246550223 +210668,4973,coming of age,1246550207 +210668,4973,connection,1246550229 +210668,4973,fairy tale,1246550210 +210668,4973,feel-good,1246550195 +210668,4973,stylized,1246550238 +210668,4973,surreal,1246550235 +210668,4973,whimsical,1246550201 +210668,5349,Action,1250111852 +210668,5349,adapted from:comic,1250111834 +210668,5349,alter ego,1250111837 +210668,5349,based on comic book,1250111839 +210668,5349,comic book,1250111856 +210668,5349,Kirsten Dunst,1250111860 +210668,5349,super hero,1250111866 +210668,5349,super-hero,1250111868 +210668,5349,superhero,1250111868 +210668,5349,Tobey Maguire,1250111872 +210668,5618,alternate reality,1246550274 +210668,5618,animation,1246550276 +210668,5618,door to the different world,1246550271 +210668,5618,dreamlike,1246550291 +210668,5618,environmental,1246550289 +210668,5618,fairy tale,1246550269 +210668,5618,fantasy,1246550266 +210668,5618,Hayao Miyazaki,1246550256 +210668,5618,Japan,1246550263 +210668,5618,sports,1246550282 +210668,5618,Studio Ghibli,1246550258 +210668,5618,whimsical,1246550261 +210668,6323,imaginary friend,1246845228 +210668,6323,John Cusack,1246845232 +210668,6323,psychology and the nature of reality,1246845239 +210668,6323,twist ending,1246845249 +210668,7293,sad ending,1246483514 +210668,58998,comedy romance,1246496899 +210668,58998,dracula,1246496905 +210668,58998,Kristen Bell,1246496909 +210668,58998,male nudity,1246496913 +210668,58998,Paul Rudd,1246496919 +210668,58998,surfing,1246496925 +210668,59784,animation,1246488537 +210668,59784,anti-hero,1246488528 +210668,59784,destiny,1246488550 +210668,59784,Kung Fu,1246488542 +210668,59784,Seth Rogen,1246488544 +210668,60069,animated,1246498476 +210668,60069,Animation,1246498473 +210668,60069,dystopia,1246498480 +210668,60069,environmental,1246498510 +210668,60069,human versus computer,1246498484 +210668,60069,imdb top 250,1246498504 +210668,60069,pixar,1246498487 +210668,60069,Post apocalyptic,1246498467 +210668,60069,post-apocalyptic,1246498470 +210668,60069,quirky,1246498498 +210668,60069,Sci-Fi,1246498493 +210668,60069,social commentary,1246498512 +210668,60069,space,1246498495 +210668,68952,Alison Lohman,1246482867 +210668,68952,cgi,1246482881 +210668,68952,Edge of your seat,1246482854 +210668,68952,engaging,1246482864 +210668,68952,funny,1246482877 +210668,68952,old school horror,1246482861 +210668,68952,tongue-in-cheek,1246482874 +210679,2297,imaginative,1241405052 +210679,2297,Robin Williams,1241405062 +210679,2297,surreal,1241405064 +210679,2357,heartwarming,1241405121 +210679,2357,orphans,1241405117 +210679,2357,UNLIKELY FRIENDSHIPS,1241405102 +210679,63082,based on a book,1241404934 +210679,63082,India,1241404947 +210679,63082,music,1241404927 +210679,63082,Oscar (Best Music - Original Score),1241404912 +210679,63082,Oscar (Best Picture),1241404918 +210688,500,Robin Williams,1158100296 +210688,553,West,1158100280 +210688,708,romantic,1158100273 +210693,2959,greatest movie of all time,1183813428 +210698,913,hamari movie,1250512645 +210714,3147,emotional,1438154704 +210714,3147,great acting,1438154712 +210714,92259,funny,1438154360 +210714,92259,touching,1438154341 +210725,260,Inspiring the Universe Since 1977,1434324721 +210725,356,inspiring,1434325044 +210725,356,unlikely hero,1434325044 +210725,356,vietnam war,1434325044 +210750,80463,business,1402540375 +210750,80463,cinematography,1402540397 +210750,80463,complex characters,1402540408 +210750,80463,loneliness,1402540382 +210750,80463,witty,1402540391 +210781,72,Underrated,1157976496 +210781,319,Underrated,1157975951 +210781,320,Underrated,1157975994 +210781,543,San Francisco,1286666346 +210781,903,san francisco,1293307254 +210781,913,san francisco,1293307239 +210781,1209,drama,1185889521 +210781,1209,western,1185889521 +210781,1243,Underrated,1157976013 +210781,1392,Underrated,1157976004 +210781,1845,Underrated,1157976030 +210781,2579,Underrated,1157975977 +210781,3067,Spanish,1177724015 +210781,8813,Underrated,1157976022 +210781,26599,foreign,1174567568 +210781,26599,Spanish,1174567556 +210781,30707,boxing,1178202833 +210781,30707,dark,1178202800 +210781,30707,sad,1178202801 +210781,31101,Underrated,1157975964 +210781,36517,africa,1197941560 +210781,49272,Daniel Craig,1174567526 +210781,49272,James Bond,1174567505 +210781,49530,Leonardo DiCaprio,1174567619 +210786,89,booring,1445933105 +210786,108548,comedy,1445361248 +210792,356,cute,1432358884 +210792,356,tom hanks,1432358884 +210792,356,vietnam war,1432358884 +210795,2134,for katie,1168865812 +210795,4973,for katie,1168865390 +210795,4979,for katie,1168865508 +210795,5617,for katie,1168865491 +210795,5890,for katie,1168865634 +210795,7265,for katie,1168865929 +210795,7323,for katie,1168865581 +210795,7382,for katie,1168865356 +210795,8376,for katie,1168865870 +210795,8638,for katie,1168865376 +210795,8873,for katie,1168865540 +210795,8949,for katie,1168865499 +210795,27266,for katie,1168865669 +210795,31263,for katie,1168865406 +210795,33621,for katie,1168865467 +210795,36276,for katie,1168865317 +210795,38600,for katie,1168865361 +210813,2858,dark comedy,1432219934 +210813,2858,excellent script,1432220002 +210813,2858,great acting,1432219947 +210813,2858,powerful ending,1432219961 +210813,2858,thought-provoking,1432219978 +210813,7116,engaging plot,1432220178 +210813,7116,excellent plot twist,1432220223 +210813,7116,great acting,1432220133 +210826,5952,fantasy,1429641247 +210826,48394,surreal,1429641283 +210826,99114,Quentin Tarantino,1429641300 +210892,42723,horror,1142639179 +210899,1,computer animation,1451035426 +210899,1,pixar,1451035426 +210899,296,Quentin Tarantino,1451035194 +210899,296,Uma Thurman,1451035215 +210899,372,ethan hawke,1451038679 +210899,446,epic,1451044165 +210899,446,friendship,1451044174 +210899,539,absurd,1451037198 +210899,539,annoying kid,1451037200 +210899,539,boring,1451037196 +210899,539,destiny,1451037667 +210899,539,father-son relationship,1451037660 +210899,539,kitsch,1451037223 +210899,539,Meg Ryan,1451037654 +210899,539,predictable,1451037191 +210899,541,atmospheric,1451039566 +210899,541,cyberpunk,1451039526 +210899,541,film noir,1451039570 +210899,541,neo-noir,1451044732 +210899,541,Philip K. Dick,1451039529 +210899,541,sci-fi,1451044727 +210899,597,capitalism,1451037743 +210899,597,unreflective,1451037748 +210899,741,2D/3D hybrid Animation,1451025465 +210899,741,cyberpunk,1451025442 +210899,741,techno-evolution,1451025449 +210899,781,Jeremy Irons,1451039269 +210899,924,artificial intelligence,1451035833 +210899,924,atmospheric,1451035839 +210899,924,cinematography,1451035854 +210899,924,classic,1451035856 +210899,924,future,1451035859 +210899,924,futuristic,1451035877 +210899,924,masterpiece,1451035843 +210899,924,music,1451035873 +210899,924,philosophical,1451035841 +210899,924,sci-fi,1451035831 +210899,924,slow,1451035851 +210899,924,space,1451035837 +210899,924,Stanley Kubrick,1451035835 +210899,924,surreal,1451035845 +210899,924,visually appealing,1451035848 +210899,1089,overrated,1452272910 +210899,1089,Quentin Tarantino,1452272765 +210899,1089,tarantino,1452272823 +210899,1208,book was better,1451038800 +210899,1208,boring,1451038892 +210899,1208,sound editing,1451038903 +210899,1230,neurosis,1451035922 +210899,1230,new york city,1451035914 +210899,1230,quirky,1451035910 +210899,1230,relationships,1451035912 +210899,1230,Woody Allen,1451035910 +210899,1244,classic,1451036003 +210899,1248,atmospheric,1451035895 +210899,1248,black and white,1451035890 +210899,1248,noir thriller,1451035889 +210899,1248,Orson Welles,1451035894 +210899,1260,atmospheric,1451035613 +210899,1260,BD-R,1451035652 +210899,1260,Best of Rotten Tomatoes: All Time,1451035637 +210899,1260,BFI classic,1451035673 +210899,1260,black and white,1451035625 +210899,1260,bleak,1451035645 +210899,1260,child killing,1451035627 +210899,1260,creepy,1451035676 +210899,1260,Criterion,1451035632 +210899,1260,disturbing,1451035648 +210899,1260,Fritz Lang,1451035610 +210899,1260,german expressionism,1451035640 +210899,1260,great acting,1451035671 +210899,1260,imdb top 250,1451035641 +210899,1260,Janus 50,1451035678 +210899,1260,menacing,1451035649 +210899,1260,mental illness,1451035634 +210899,1260,old age,1451035654 +210899,1260,pedofile,1451035680 +210899,1260,Peter Lorre,1451035667 +210899,1260,police investigation,1451035661 +210899,1260,serial killer,1451035621 +210899,1260,talky,1451035616 +210899,1260,top 250 IMDB,1451035662 +210899,1260,VHS,1451035664 +210899,1282,classical,1451035789 +210899,1282,classical music,1451035792 +210899,1282,mythology,1451035805 +210899,1282,surreal,1451035795 +210899,1301,science fiction,1451025574 +210899,1343,horror,1451024864 +210899,1343,Martin Scorsese,1451024859 +210899,1343,masterpiece,1451024874 +210899,1343,Robert De Niro,1451024861 +210899,1343,seriously scary,1451024883 +210899,1343,strong cast,1451024869 +210899,1483,David Cronenberg,1451034140 +210899,1483,disturbing,1451034137 +210899,1483,sexuality,1451034142 +210899,1619,mountain climbing,1451026743 +210899,1619,mountains,1451026739 +210899,1653,Ethan Hawke,1451038733 +210899,1688,Meg Ryan,1451037330 +210899,1704,mathematics,1451025174 +210899,1729,boring,1451035150 +210899,1729,Quentin Tarantino,1451035113 +210899,1729,Quinten Tarantino,1451035136 +210899,1729,tarantino is god,1451035134 +210899,1729,unoriginal,1451037578 +210899,1884,cynical,1451024342 +210899,1884,surreal,1451024321 +210899,1921,cerebral,1451024429 +210899,1921,existentialism,1451024417 +210899,1921,mathematics,1451024414 +210899,1960,Bernardo Bertolucci,1451024575 +210899,1960,China,1451024552 +210899,1960,cinematography,1451024555 +210899,1960,history epic,1451024570 +210899,2010,classic,1451024636 +210899,2010,dystopia,1451024639 +210899,2010,Fritz Lang,1451024630 +210899,2010,german expressionism,1451024629 +210899,2010,science fiction,1451024634 +210899,2019,Akira Kurosawa,1451024692 +210899,2019,atmospheric,1451024694 +210899,2019,epic,1451036063 +210899,2019,masterpiece,1451024702 +210899,2019,samurai,1451036041 +210899,2019,stylized,1451036072 +210899,2019,Takashi Shimura,1451024707 +210899,2019,toshiro mifune,1451036052 +210899,2020,femme fatale,1451034356 +210899,2020,glenn close,1451034403 +210899,2020,social maneuvering,1451034455 +210899,2028,war,1453179691 +210899,2160,paranoia,1451024907 +210899,2160,scary,1451024919 +210899,2160,surreal,1451024915 +210899,2160,suspense,1451024911 +210899,2283,Bernardo Bertolucci,1451039239 +210899,2283,cinematography,1451039236 +210899,2325,satire,1451732136 +210899,2396,Gwenth Paltrow,1451036956 +210899,2404,war,1453179712 +210899,2424,cheesy,1451037705 +210899,2424,kitsch,1451037710 +210899,2424,Meg Ryan,1451037694 +210899,2541,Femme Fatale,1451026167 +210899,2541,manipulation,1451026165 +210899,2541,Seduction,1451026177 +210899,2571,Keanu Reeves,1451037358 +210899,2571,original anime is better,1451037380 +210899,2571,overrated,1451037360 +210899,2571,pretentious,1451037370 +210899,2571,pretentious garbage about good things,1451037396 +210899,2571,pseudo-philosophical,1451037367 +210899,2571,super-hero,1451037406 +210899,2571,useless use of violence,1451037385 +210899,2572,Heath Ledger,1451037251 +210899,2628,annoying kid,1451799739 +210899,2628,franchise,1453503442 +210899,2628,George Lucas,1451799725 +210899,2628,Star Wars,1453503434 +210899,2712,sexuality,1451034219 +210899,2762,fake,1451738191 +210899,2762,m. night shyamalan,1451738178 +210899,2762,what a twist!,1451738172 +210899,2810,anime,1451699219 +210899,2810,distorted reality,1451699221 +210899,2810,Satoshi Kon,1451699225 +210899,2905,Akira Kurosawa,1451036262 +210899,2905,Criterion,1451036268 +210899,2905,samurai,1451036266 +210899,2940,femme fatale,1451026292 +210899,2940,noir,1451026286 +210899,2940,Rita Hayworth,1451026277 +210899,2985,cyborgs,1453179884 +210899,2985,dystopia,1453179883 +210899,2985,Paul Verhoeven,1453179889 +210899,2985,sci-fi,1453179887 +210899,2985,stop motion,1453179896 +210899,3000,anime,1451724146 +210899,3000,atmospheric,1451724148 +210899,3000,Studio Ghibli,1451724160 +210899,3000,surreal,1451724210 +210899,3082,espionage,1451039056 +210899,3082,femme fatale,1451039075 +210899,3082,sophie marceau,1451039092 +210899,3114,Pixar,1451035533 +210899,3172,sword and sandals,1451200122 +210899,3219,Michael Keaton,1451061250 +210899,3219,suspense,1451061240 +210899,3736,Billy Wilder,1451039941 +210899,3753,cheesy,1453179786 +210899,3753,Heath Ledger,1453179792 +210899,3753,war,1453179764 +210899,3793,superhero,1451737574 +210899,3994,M. Knight Shymalan,1451737838 +210899,3994,m. night shyamalan,1451737842 +210899,3994,predictable,1451737830 +210899,3994,superhero,1451737800 +210899,3994,what a twist!,1451737870 +210899,4720,afterlife,1452701960 +210899,4720,ghosts,1452701963 +210899,4720,Nicole Kidman,1452701952 +210899,4720,religion,1452701969 +210899,4776,Ethan Hawke,1451038592 +210899,4886,Pixar,1451035487 +210899,4941,great soundtrack,1451062008 +210899,4941,Queen,1451062025 +210899,4941,So bad it's good,1451062002 +210899,4973,manic pixie dream girl,1451724329 +210899,5110,comedy,1451038047 +210899,5349,superhero,1451737687 +210899,5502,m. night shyamalan,1451738126 +210899,5502,Mel Gibson,1451738123 +210899,5502,ridiculous,1451738130 +210899,5502,what a twist!,1451738121 +210899,5617,James Spader,1451034180 +210899,5617,sexuality,1451034190 +210899,5617,sexuality:BDSM,1451034185 +210899,5618,anime,1451724120 +210899,5618,atmospheric,1451724098 +210899,5618,strong female lead,1451724123 +210899,5618,Studio Ghibli,1451724090 +210899,5690,anime,1451724459 +210899,5690,anti-war,1451724463 +210899,5690,Studio Ghibli,1451724460 +210899,5809,Brian De Palma,1451045206 +210899,5809,erotic,1451045209 +210899,5809,femme fatale,1451026253 +210899,5809,heist,1451045215 +210899,5872,bad puns,1451039125 +210899,5872,Halle Berry,1451039130 +210899,5872,madonna,1451039138 +210899,5872,North Korea,1453196144 +210899,5971,anime,1451724233 +210899,5971,Studio Ghibli,1451724231 +210899,5995,war,1453179847 +210899,6305,boring,1451062684 +210899,6305,pretentious,1451062710 +210899,6333,superhero,1451737735 +210899,6350,anime,1451724536 +210899,6350,aviation,1451724552 +210899,6350,far future,1451724554 +210899,6350,imagination,1451724542 +210899,6350,pirates,1451724545 +210899,6350,Studio Ghibli,1451724538 +210899,6350,visually appealing,1451724549 +210899,6377,Pixar,1451035458 +210899,6460,claustrophobic,1451036021 +210899,6460,Orson Welles,1451036017 +210899,6669,Akira Kurosawa,1451024656 +210899,6669,cathartic,1451024649 +210899,6731,George A. Romero,1451024613 +210899,6731,horror,1451024615 +210899,6768,christian,1451732703 +210899,6768,Christianity,1451732717 +210899,6768,god,1451732712 +210899,6768,religion,1451732704 +210899,6774,body horror,1451024596 +210899,6774,David Cronenberg,1451024594 +210899,6774,surreal,1451024593 +210899,6807,black comedy,1451024398 +210899,6807,british comedy,1451024388 +210899,6807,comedy,1451024394 +210899,6807,controversial,1451024391 +210899,6807,Monty Python,1451024407 +210899,6807,silly,1451024396 +210899,6874,Quentin Tarantino,1451035260 +210899,6874,Uma Thurman,1451035262 +210899,6987,expressionism,1451024363 +210899,6987,german expressionism,1451024366 +210899,6987,psychology,1451024375 +210899,6987,surreal,1451024368 +210899,7008,Bernardo Bertolucci,1451024286 +210899,7008,disturbing,1451024277 +210899,7008,SELF-DESTRUCTIVE ROMANCE,1451024304 +210899,7013,100 Essential Female Performances,1451035742 +210899,7013,adventure,1451035773 +210899,7013,AFI 100 (Thrills),1451035769 +210899,7013,atmospheric,1451024254 +210899,7013,BFI classic,1451035737 +210899,7013,Charles Laughton,1451035745 +210899,7013,children escaping from adults,1451035763 +210899,7013,creepy,1451035709 +210899,7013,Criterion,1451035716 +210899,7013,dreamlike,1451024267 +210899,7013,eerie,1451035729 +210899,7013,evil churchman,1451035760 +210899,7013,favorites,1451035767 +210899,7013,film noir,1451024263 +210899,7013,good and evil,1451035710 +210899,7013,hanging,1451035775 +210899,7013,Lillian Gish,1451035778 +210899,7013,love/hate,1451035731 +210899,7013,lyrical,1451035728 +210899,7013,menacing,1451035718 +210899,7013,National Film Registry,1451035725 +210899,7013,noir thriller,1451024252 +210899,7013,ominous,1451035720 +210899,7013,preacher,1451035722 +210899,7013,Robert Mitchum,1451035712 +210899,7013,self-proclaimed preacher,1451035756 +210899,7013,serial killer,1451035734 +210899,7013,stylized,1451035714 +210899,7013,thriller,1451035735 +210899,7044,Nicolas Cage,1452957109 +210899,7044,sailor and lula,1452957106 +210899,7084,related:Casablanca,1451024219 +210899,7099,anime,1451024180 +210899,7099,anti-war,1451724411 +210899,7099,dystopic future,1451024182 +210899,7099,great soundtrack,1451024198 +210899,7099,Hayao Miyazaki,1451024176 +210899,7099,sci-fi,1451024188 +210899,7099,strong female lead,1451024186 +210899,7099,Studio Ghibli,1451024174 +210899,7123,David Cronenberg,1451024162 +210899,7123,disturbing,1451024164 +210899,7123,dreamlike,1451024158 +210899,7123,hallucinatory,1451024156 +210899,7123,Madness,1451024154 +210899,7123,sexual,1451024166 +210899,7123,surreal,1451024160 +210899,7123,weird,1451024151 +210899,7236,dystopia,1451062576 +210899,7327,Ingmar Bergman,1451737158 +210899,7327,psychoanalysis,1451737156 +210899,7327,self-important,1451737148 +210899,7327,Swedish,1451737160 +210899,7361,Charlie Kaufman,1451074168 +210899,7438,Quentin Tarantino,1451035281 +210899,7438,Uma Thurman,1451035291 +210899,7757,Greek myth,1451025187 +210899,7757,Greek mythology,1451025189 +210899,7757,stop motion,1451025194 +210899,7757,sword and sandal,1451025203 +210899,7943,FEMMES FATALES,1451026386 +210899,7947,John Huston,1451027963 +210899,8253,anime,1451724743 +210899,8253,Studio Ghibli,1451724741 +210899,8636,superhero,1451737717 +210899,8961,Pixar,1451035483 +210899,8961,super-hero,1451737644 +210899,8961,superhero,1451737624 +210899,8961,superheroes,1451737653 +210899,25940,atmospheric,1451026317 +210899,25940,femme fatale,1451026349 +210899,25940,film noir,1451026315 +210899,26634,beautifully shot,1451039320 +210899,26634,espionage,1451039216 +210899,26634,Greece,1451039163 +210899,26634,Spy,1451039164 +210899,26662,anime,1451025289 +210899,26662,coming of age,1451025299 +210899,26662,Hayao Miyazaki,1451025293 +210899,26662,strong female lead,1451025302 +210899,26662,Studio Ghibli,1451025288 +210899,26776,anime,1451024115 +210899,26776,aviation,1451024128 +210899,26776,Hayao Miyazaki,1451024130 +210899,26776,magic realism,1451024124 +210899,26776,Studio Ghibli,1451024113 +210899,27728,cyberpunk,1451025757 +210899,27800,Daft Punk,1451025698 +210899,31420,Ethan Hawke,1451038771 +210899,31420,Laurence Fishburne,1451038775 +210899,31658,anime,1451724262 +210899,31658,anti-war,1451724277 +210899,31658,Studio Ghibli,1451724260 +210899,31658,whimsical,1451724268 +210899,32834,beautifully shot,1451039384 +210899,32834,dreamlike,1451039374 +210899,32834,Orson Welles,1451039389 +210899,32834,Shakespeare,1451039333 +210899,32834,Surreal,1451039349 +210899,33794,Christian Bale,1451737443 +210899,33794,superhero,1451737441 +210899,44191,flawless hero,1451036803 +210899,44191,overacting,1451036794 +210899,44191,super-hero,1451737550 +210899,45517,Pixar,1451037280 +210899,50872,pixar,1451035492 +210899,51662,computer animation,1453179731 +210899,51662,war,1453179749 +210899,51662,Zack Snyder,1453179722 +210899,52806,Studio Ghibli,1451723819 +210899,55118,atmospheric,1451037805 +210899,55118,David Cronenberg,1451037801 +210899,55118,disturbing,1451037807 +210899,55118,tense,1451037815 +210899,55118,Viggo Mortensen,1451037797 +210899,56869,Dark humor,1451023999 +210899,58559,Christian Bale,1451737390 +210899,58559,superhero,1451737339 +210899,59315,Gwyneth Paltrow,1451737408 +210899,59315,superhero,1451737405 +210899,59709,Mathematics,1451024482 +210899,60069,inspirational,1451035440 +210899,60069,pixar,1451035431 +210899,60074,bad script,1451737898 +210899,60074,superhero,1451737895 +210899,60684,bullet time overuse,1451037037 +210899,60684,simplistic,1451037032 +210899,60684,superficial,1451037048 +210899,60684,superhero,1451737521 +210899,60950,sexuality,1451034231 +210899,62336,anime,1451036157 +210899,62336,hallucinatory,1451036169 +210899,62336,robots,1451036171 +210899,62336,stylish,1451036162 +210899,62336,surreal,1451036159 +210899,62336,weird,1451036164 +210899,64114,Christian,1451732535 +210899,64114,Christianity,1451732533 +210899,64114,evangelical christian trash,1451732563 +210899,64114,faith,1451732547 +210899,64114,God,1451732565 +210899,64114,Jesus,1451732549 +210899,64114,religion,1451732526 +210899,64114,religious,1451732544 +210899,67255,dark,1451700061 +210899,67255,strong female lead,1451700049 +210899,68319,superhero,1451737693 +210899,68954,computer animation,1451035392 +210899,68954,Pixar,1451035384 +210899,72641,fake authentic,1451038846 +210899,72641,inspirational,1451038832 +210899,72641,Sandra Bullock,1451038826 +210899,73323,journalism,1451699366 +210899,73323,strong female lead,1451699999 +210899,73323,Swedish,1451699371 +210899,74510,strong female lead,1451700038 +210899,74789,Johnny Depp,1451037093 +210899,74789,not true to the book,1451037118 +210899,74789,superficial,1451037117 +210899,74789,Tim Burton,1451037095 +210899,76251,lousy script,1451737602 +210899,76251,superhero,1451737580 +210899,77561,superhero,1451737677 +210899,78893,M. Night Shyamalan,1451738145 +210899,80846,bad execution,1451738250 +210899,80846,Christianity,1451738242 +210899,80846,M. Night Shyamalan,1451738237 +210899,80846,what a twist!,1451738234 +210899,85774,Ayrton Senna,1451045049 +210899,85774,Formula 1 racing,1451045032 +210899,85774,National Hero,1451045043 +210899,86332,superhero,1451737682 +210899,87232,superhero,1451737713 +210899,88140,superhero,1451737889 +210899,89745,superhero,1451737421 +210899,89753,Beautifully shot,1451039305 +210899,89753,espionage,1451039301 +210899,89753,Gary Oldman,1451039425 +210899,89753,loneliness,1451039433 +210899,89753,photography,1451039428 +210899,89753,Spies,1451039302 +210899,89761,sexuality,1451034267 +210899,91529,Anne Hathaway,1451737701 +210899,91529,Batman voice,1451737114 +210899,91529,Christian Bale,1451737091 +210899,91529,Christopher Nolan,1451737089 +210899,91529,self-important,1451737123 +210899,91529,superhero,1451737094 +210899,91658,psychothriller,1451024991 +210899,91658,suspense,1451024976 +210899,94558,beautiful,1451040246 +210899,94558,sci-fi,1451040260 +210899,94558,visually appealing,1451040247 +210899,95510,superhero,1451737917 +210899,98961,American propaganda,1453180193 +210899,98961,propaganda,1453180188 +210899,99114,Quentin Tarantino,1452272722 +210899,102033,tragic events as comedy,1451034124 +210899,102880,M. Night Shyamalan,1451738159 +210899,104283,anime,1451724704 +210899,104283,Studio Ghibli,1451724705 +210899,104374,cliche,1451844822 +210899,104374,manic pixie dream girl,1451848011 +210899,104374,original,1451844828 +210899,104374,Rachel McAdams,1451844824 +210899,104374,time travel,1451844811 +210899,105504,pirates,1451724621 +210899,105844,cinematography,1451738963 +210899,108983,Pixar,1451036397 +210899,110102,superhero,1451737908 +210899,110603,Christianity,1451732843 +210899,110603,Clear Salvation Message,1451732864 +210899,110603,religion,1451732845 +210899,110603,religious,1451732855 +210899,110603,religious propaganda,1451732852 +210899,110603,Respectful of Christianity,1451732868 +210899,111661,Greece,1451063175 +210899,112290,Ethan Hawke,1453503792 +210899,112290,not subtle,1451038693 +210899,112290,pseudo-intelligent,1451038600 +210899,112556,femme fatale,1451026230 +210899,112556,mindfuck,1451024931 +210899,112556,psychothriller,1451024945 +210899,112556,thriller,1451024952 +210899,116797,boring,1451036886 +210899,116797,historical inaccuracy,1451036884 +210899,116797,self-important,1451036905 +210899,119141,Propaganda,1453180280 +210899,122892,superhero,1451737723 +210899,128360,Quentin Tarantino,1452272696 +210899,129514,brutally honest,1451035596 +210899,129514,funny,1451035599 +210899,129514,George Carlin,1451035605 +210899,129514,social commentary,1451035604 +210899,134393,career vs. relationship,1451038721 +210899,134393,cynical,1451038709 +210899,134393,feminist,1451038713 +210899,134393,heavy-handed,1451038706 +210899,134853,Pixar,1451783040 +210899,141668,christian,1451732819 +210899,141668,religious,1451732821 +210899,147047,Brazil,1451023956 +210903,85414,parallel universe,1304566139 +210903,85414,time travel,1304566142 +210925,47,crime,1281474922 +210925,47,disturbing,1281474904 +210925,47,Morgan Freeman,1281474884 +210925,47,philosophical,1281474899 +210925,47,psychology,1281474925 +210925,47,serial killer,1281474886 +210925,47,twist ending,1281474894 +210925,47,violent,1281474897 +210925,353,bittersweet,1281475230 +210925,353,film noir,1281475242 +210925,353,gothic,1281475233 +210925,353,great soundtrack,1281475261 +210925,353,gritty,1281475245 +210925,353,rape,1281475255 +210925,353,Sexualized violence,1281475252 +210925,562,indie,1282078812 +210925,562,school drama,1282078816 +210925,1968,coming-of-age,1282078861 +210925,1968,school drama,1282078865 +210925,3702,motorcycle,1281476089 +210925,3702,post apocalyptic,1281475790 +210925,3702,post-apocalyptic,1281475793 +210925,3702,violent,1281476084 +210925,3863,alternate reality,1281474960 +210925,3863,Jennifer Lopez,1281474947 +210925,3863,serial killer,1281474950 +210925,3863,surreal,1281474956 +210925,4878,alternate timeline,1282078158 +210925,4878,atmospheric,1282078171 +210925,4878,mental illness,1282078175 +210925,4878,quirky,1282078179 +210925,4878,satirical,1282078178 +210925,4878,stylized,1282078161 +210925,4878,surreal,1282078160 +210925,4878,time travel,1282078159 +210925,30820,child abuse,1282423953 +210925,30820,disturbing,1282423966 +210925,30820,paedophilia,1282423958 +210925,32587,Quentin Tarantino,1281475292 +210925,37733,disappointing,1281474593 +210925,37733,overrated,1281473836 +210925,37733,stupid,1281474840 +210925,40412,Paddy Considine,1282424196 +210925,40412,revenge,1282424194 +210925,63072,cannibalism,1281306264 +210925,63072,Charlize Theron,1281306266 +210925,63072,post-apocalyptic,1281306258 +210925,63072,product placement,1281306253 +210925,63072,too long,1281306273 +210925,71535,dark comedy,1281306369 +210925,71535,gore,1281306364 +210925,71535,guns,1281306366 +210925,71535,horror,1281306368 +210925,71535,post-apocalyptic,1281306393 +210925,71535,short,1281306361 +210925,71535,stylized violence,1281306399 +210925,73211,based on a book,1281305994 +210925,73211,boring,1281306007 +210925,73211,disappointing,1282425142 +210925,73211,disease,1281305999 +210925,73211,zombies,1281305996 +210925,74458,boring,1281306155 +210925,74458,Leonardo DiCaprio,1281306152 +210925,74458,Predictable,1281306157 +210925,74458,too long,1281306159 +210925,74685,Breck Eisner,1281305950 +210925,74685,contamination,1281305943 +210925,74685,Danielle Panabaker,1281305945 +210925,74685,Joe Anderson,1281305955 +210925,74685,Radha Mitchell,1281305948 +210925,74685,thriller,1281305938 +210925,74685,Timothy Olyphant,1281305959 +210925,74685,virus,1281305936 +210925,74685,zombies,1281305933 +210926,5194,adventure,1270437760 +210926,5194,comedy,1270437765 +210926,68872,World War II,1270437914 +210928,260,good story,1433695877 +210928,260,Intense,1433695888 +210939,1088,romance boygirl dancing,1206709060 +210939,2023,crime maffia family drama,1206709066 +210939,3785,easy,1206709223 +210939,3785,tongue-in-cheek,1206709223 +210939,5459,bleep,1206709156 +210939,5459,comedy,1206709156 +210939,5459,sci-fi,1206709156 +210939,5459,Will Smith,1206709156 +210939,5679,fantasy,1206709205 +210939,5679,metaphysics,1206709205 +210939,5679,scary,1206709205 +210939,5679,weird,1206709205 +210939,5902,boring,1206709123 +210939,5902,slow,1206709123 +210939,6934,scifi cult,1206709098 +210939,6934,sequel,1206709098 +210959,72621,short film,1291061247 +210961,260,adventure,1442086324 +210961,260,exploration,1442086294 +210979,260,sci-fi,1440124952 +210979,260,space opera,1440124962 +210985,1,CGI classic,1444204776 +210985,6502,Zombiefest,1444204712 +210987,1380,kid,1441663247 +210987,27706,pre,1441663321 +210987,40826,pre,1441663301 +211005,260,classic sci-fi,1440322953 +211005,260,Space Opera,1440322932 +211010,166,phashion,1311778876 +211010,166,surreal,1311778876 +211010,1529,Gregg Araki,1312259410 +211010,45880,Nudity (Rear),1313772285 +211010,45880,Nudity (Topless),1313772285 +211010,45880,Sofia Coppola,1326423239 +211052,1,animation,1440343177 +211052,1,children,1440343196 +211052,260,adventure,1440343086 +211052,260,sci-fi,1440343074 +211052,318,inspirational,1440342933 +211052,318,thought-provoking,1440342903 +211052,356,feel-good,1440342839 +211052,356,Funny,1440342831 +211052,480,adventure,1440343126 +211052,480,sci-fi,1440343146 +211052,593,psychological,1440343021 +211052,593,suspense,1440343051 +211052,858,Mafia,1440342798 +211052,858,masterpiece,1440342771 +211052,1227,atmospheric,1440342996 +211052,1227,epic,1440343006 +211052,1263,friendship,1440343558 +211052,1263,Vietnam War,1440343551 +211052,2571,sci-fi,1440342863 +211052,2571,stylized,1440342877 +211052,5618,beautiful,1440342975 +211052,5618,fantasy,1440342954 +211052,91500,dystopia,1440343326 +211052,91500,social commentary,1440343342 +211073,2060,bad language,1313965690 +211073,2060,comdey,1313965670 +211073,2060,hilarious,1313965702 +211073,2060,toilet humor,1313965682 +211073,3752,absurd,1313965763 +211073,4247,david spade,1313965734 +211073,4343,acting,1313963869 +211073,4343,comedy,1313963861 +211073,34411,end of,1315971137 +211073,34411,informative,1315971137 +211073,34411,Michael Ruppert,1315971137 +211073,34411,oil,1315971137 +211073,73392,michael ruppert,1313985891 +211073,73392,zegist,1313985897 +211076,4979,great soundtrack,1448203695 +211076,4979,Quirky,1448203682 +211076,4979,Wes Anderson,1448203675 +211076,8784,great soundtrack,1408517459 +211076,8784,moody,1408517287 +211076,9010,Marion Cotillard,1408520031 +211076,30803,Kim Ki-duk,1405602688 +211076,53123,great soundtrack,1446035711 +211076,55247,based on a true story,1446033892 +211076,55247,great soundtrack,1446033904 +211076,69757,Zooey Deschanel,1408639842 +211076,71579,Carey Mulligan,1408517876 +211076,73023,great soundtrack,1446035856 +211076,73023,Jeff Bridges,1446035831 +211076,80969,Carey Mulligan,1408518318 +211076,80969,thought-provoking,1408518319 +211076,90531,Carey Mulligan,1408519629 +211076,96821,amazing soundtrack,1446033281 +211076,96821,Emma Watson,1446033262 +211076,96821,great soundtrack,1408517474 +211076,96821,moody,1408517407 +211076,109374,quirky,1448203545 +211076,109374,Wes Anderson,1448203511 +211079,6776,cricket,1442795789 +211079,36086,romance,1442795846 +211079,36086,ShahRukh Khan,1442795830 +211079,43917,dogs,1442795546 +211079,73513,india,1442796280 +211079,91844,sports,1442796249 +211079,112907,drama,1442796122 +211079,112907,indian,1442796166 +211079,112907,shraddha kapoor,1442796113 +211079,117310,romance,1442796025 +211079,117310,shraddha kapoor,1442796020 +211079,139148,drama,1442795957 +211079,139148,india,1442795964 +211080,1080,British,1440236542 +211080,1080,hilarious,1440236546 +211080,1080,Monty Python,1440236540 +211080,1080,parody,1440236544 +211080,1080,satirical,1440236548 +211080,5004,absurd,1440236523 +211080,5004,Blake Edwards,1440236512 +211080,5004,comedy,1440236520 +211080,5004,party,1440236517 +211080,5004,peter sellers,1440236510 +211080,130636,Internet,1440236399 +211080,130636,skype,1440236442 +211080,130636,social media,1440236448 +211099,555,Brad Pitt,1280524599 +211099,1261,zombies,1280524424 +211099,1760,Roger Moore,1282938489 +211099,1760,spice girls,1282938476 +211099,4553,cult film,1280524653 +211099,6156,Jackie Chan,1280524507 +211099,6156,Owen Wilson,1280524513 +211099,8636,action,1282794442 +211099,8636,Kirsten Dunst,1282794444 +211099,8636,marvel,1282794435 +211099,8636,New York City,1282794448 +211099,8636,superhero,1282794436 +211099,8636,vigilante,1282794459 +211099,8636,violence,1282794456 +211099,26934,Stephen Chow,1280524411 +211099,38061,dark comedy,1282793611 +211099,54503,comedy,1282793863 +211099,54503,HIGH SCHOOL LIFE,1282793866 +211099,54503,Highly quotable,1282793868 +211099,54503,Michael Cera,1282793851 +211099,54503,pornography,1282793859 +211099,54503,Seth Rogen,1282793854 +211099,54503,virginity,1282793879 +211099,56012,Jason Mewes,1280524397 +211099,56012,Kevin Smith,1280524391 +211099,58559,Batman,1280530744 +211099,64231,Ray Stevenson,1281936787 +211099,64231,revenge,1281936776 +211099,64231,ruthless,1281936781 +211099,64231,Wayne Knight,1281936778 +211099,68237,corporate culture,1282938189 +211099,68237,dystopia,1282938182 +211099,68237,hallucination,1282938186 +211099,68237,isolation,1282938180 +211099,68237,Kevin Spacey,1282938178 +211099,68237,psychology,1282938176 +211099,68237,Sam Rockwell,1282938175 +211099,68237,Sci-fi,1282938184 +211099,68858,Italy,1282806324 +211099,72554,prison,1281686961 +211099,73211,based on a book,1282938037 +211099,73211,Bruce McDonald,1282938035 +211099,73211,disease,1282938012 +211099,73211,Georgina Reilly,1282938042 +211099,73211,Lisa Houle,1282938044 +211099,73211,Stephen McHattie,1282938014 +211099,73211,zombies,1282938015 +211099,76210,Elias Koteas,1282793964 +211099,76210,Kat Dennings,1282793958 +211099,76210,Woody Harrelson,1282793955 +211099,76251,comic book,1280524482 +211099,76251,Nicolas Cage,1280524526 +211099,76251,superhero,1280524486 +211099,77561,Marvel,1280524684 +211099,78499,Pixar,1280520927 +211099,79274,MY PARENTS ARE DEEEAAADDDD,1282806293 +211099,79879,Christopher Lloyd,1282962666 +211099,79879,Eli Roth,1282962682 +211099,79879,genital mutilation,1282962678 +211099,79879,Riley Steele,1282962689 +211099,79879,Ving Rhames,1282962692 +211099,79946,advertising,1282940063 +211099,79946,american dream,1282940058 +211099,79946,Audi,1282940060 +211099,79946,David Duchovny,1282940049 +211099,79946,Demi Moore,1282940050 +211099,79946,Gary Cole,1282940054 +211133,158,ghost,1137276694 +211133,8807,stoner comedy,1167746776 +211163,260,great effects for its age,1437238719 +211163,260,nerdy,1437238641 +211163,260,sci-fi,1437238613 +211163,113862,bad script,1437847652 +211163,113862,boring,1437847652 +211163,113862,low budget style,1437847652 +211163,148954,racing,1450523953 +211191,26479,Gilbert & Sullivan,1431224957 +211191,77561,superhero,1428780698 +211191,96545,Gilbert & Sullivan,1431224899 +211191,112852,chris pratt,1428020906 +211191,112852,Marvel,1428780635 +211191,112852,Starlord,1428086708 +211191,112852,superhero,1428020906 +211191,112852,thief,1428086723 +211191,113275,cooking,1444434955 +211191,113275,France,1444434978 +211191,113275,India,1444434965 +211191,113275,Indian food,1444434968 +211191,122819,1969,1443242831 +211191,122819,bus tour,1443242802 +211191,122819,travel,1443242761 +211191,122892,Hulk,1431225052 +211191,122892,MCU,1431225026 +211214,93838,martial arts,1340131345 +211215,260,action,1440015283 +211215,260,sci-fi,1440015268 +211257,260,classic,1431405450 +211257,260,too long,1431405439 +211291,260,action,1438743352 +211291,260,hero's journey,1438743342 +211291,260,Science Fiction,1438743335 +211294,6711,Bill Murray,1186339899 +211294,6711,bittersweet,1186339872 +211294,6711,Melancholic,1186339876 +211294,6711,Scarlett Johannson,1186339924 +211294,57368,Handycam,1202504340 +211298,2819,Cool.,1137662208 +211298,4381,seen with Benoit,1158607350 +211298,5938,tad overacting,1141774043 +211298,6291,So sad,1140391942 +211298,8370,but amazing swordaction,1149803300 +211298,8370,mediocre acting,1149803300 +211298,8370,weird,1149803300 +211298,33834,not very good.,1138316067 +211298,36517,Very interesting.,1138057581 +211298,37729,Burtonesk,1138057510 +211298,37857,Visual spectacle,1140649989 +211298,40614,too predictable,1166123862 +211298,41566,not bad.,1138057549 +211298,41569,bit too long,1139271048 +211298,47950,Potential Oscar Nom,1170001280 +211298,67255,Stieg Larsson,1273675877 +211298,73323,Stieg Larsson,1273676018 +211305,260,R2-D2,1448613526 +211305,293,ElLeon,1448613485 +211333,497,Denzel Washington,1288473101 +211333,497,Shakespeare,1288473104 +211333,543,Mike Myers,1218692436 +211333,608,Coen Brothers,1286759416 +211333,1079,John Cleese,1287881580 +211333,1079,Kevin Kline,1287881585 +211333,1089,nonlinear,1286759284 +211333,1089,Quentin Tarantino,1286759291 +211333,1089,tense,1286759289 +211333,1732,Coen Brothers,1288968157 +211333,4027,Coen Brothers,1288968113 +211333,4027,comedy,1288968116 +211333,4027,great soundtrack,1288968120 +211333,4655,Oscar Romero,1286847989 +211333,4699,Antonio Banderas,1288980357 +211333,5291,nonlinear,1288920599 +211333,5291,rape,1288920595 +211333,5945,Jack Nicholson,1287708246 +211333,32587,multiple storylines,1286759242 +211333,32587,stylized,1286759251 +211333,38061,black comedy,1288920404 +211333,38061,clever,1288920406 +211333,38061,comedy,1288920408 +211333,38061,directorial debut,1288920422 +211333,38061,funny,1288920411 +211333,38061,Robert Downey Jr,1288920427 +211333,38061,satire,1288920430 +211333,38061,witty,1288920418 +211333,51080,ominous,1273367775 +211333,51080,POLITICAL CORRUPTION,1273367788 +211333,56788,Tom Hanks,1286847901 +211333,60397,Musical,1219018160 +211333,62374,Leonardo DiCaprio,1287707816 +211333,62374,middle east,1287707839 +211333,62374,Ridley Scott,1287707819 +211333,62374,Russell Crowe,1287707814 +211333,62374,torture,1287707830 +211333,62374,UAV,1287707835 +211346,1,Tim Allen,1158439344 +211346,1,time travel,1161646277 +211346,2,jungle,1161649970 +211346,3,grun running,1161649436 +211346,5,Fantasy,1171941643 +211346,10,espionage,1158437828 +211346,10,good dialogue,1161647042 +211346,11,Amazing kung fu,1171941564 +211346,11,decent flick,1165804667 +211346,13,sort of boring,1165728709 +211346,16,cannibalism,1161648914 +211346,16,Robert DeNiro,1158613019 +211346,19,Africa,1158783030 +211346,21,Getting old but still excellent,1161649477 +211346,21,John Travolta,1158613661 +211346,24,Post apocalyptic,1161649207 +211346,32,twist ending,1171941334 +211346,34,Biography,1171940844 +211346,36,deaf,1161649595 +211346,36,Sean Penn,1161645863 +211346,39,Classic,1171941693 +211346,44,movie to see,1161646679 +211346,62,Mrs. DeWinter,1171940964 +211346,69,friendship,1161649485 +211346,69,Ice Cube,1158613595 +211346,104,Adam Sandler,1158437888 +211346,104,Hayao Miyazaki,1161647010 +211346,110,Breathtaking,1171941107 +211346,112,Rutger Hauer,1161647721 +211346,145,bad movie,1161648967 +211346,153,bank robbery,1161648953 +211346,153,Jim Carrey,1158782474 +211346,165,DIVX,1161647289 +211346,165,more explosions,1158437610 +211346,170,decent,1166565953 +211346,180,hilarious,1158614191 +211346,180,malos tratos,1161649911 +211346,186,meh,1166375736 +211346,186,nice,1171941187 +211346,208,horrible,1171941073 +211346,208,x-mas movie,1171941073 +211346,216,Adam Sandler,1166377803 +211346,223,hilarious,1158614347 +211346,231,most annoying sound?,1158782710 +211346,235,Edith Wharton,1161649577 +211346,235,film noir,1158613537 +211346,239,Goofy,1165728846 +211346,252,Italian,1161647956 +211346,256,horrible,1166377538 +211346,256,Julie Andrews,1171941364 +211346,260,Luke Skywalker,1158439219 +211346,260,space,1161646343 +211346,293,dirty cops,1158505247 +211346,293,predictable,1161646524 +211346,296,puppets,1161646511 +211346,296,Samuel L. Jackson,1158438967 +211346,317,Tim Allen,1158782856 +211346,318,Morgan Freeman,1158613875 +211346,318,show business,1161649142 +211346,333,David Spade,1158613399 +211346,333,Tom Cruise,1161647667 +211346,337,Arnie!,1158613432 +211346,337,whimsical,1161647631 +211346,344,action,1161647602 +211346,344,missing dolphin,1158437178 +211346,353,Crappy Remake,1171941677 +211346,355,flying,1171941378 +211346,356,football,1161650100 +211346,356,life in general,1158614095 +211346,361,Nicolas Cage,1160962124 +211346,362,Jude Law,1171941203 +211346,364,literature,1161646773 +211346,364,the circle of life,1158438231 +211346,367,Cameron Diaz,1158782624 +211346,367,mafia,1161647886 +211346,370,Leslie Neilsen,1158438794 +211346,370,nazi,1161646656 +211346,377,Dennis Hopper,1158439174 +211346,377,space opera,1161646371 +211346,410,adolescence,1171941568 +211346,420,Eddie Murphy,1158614324 +211346,434,Clint Eastwood,1161649609 +211346,434,kickass action flick,1158782527 +211346,435,Coen Brothers,1171941687 +211346,457,Funniest Movies,1161648842 +211346,457,Harrison Ford,1158613102 +211346,480,tyrannosaurus rex,1158614452 +211346,500,families,1158431346 +211346,500,Mrs. Ted Danson,1161647838 +211346,502,Hilary Swank,1161647824 +211346,502,New York,1161647824 +211346,520,Cary Elwes,1166375536 +211346,527,Liam Neesan,1158439033 +211346,527,scope,1161646467 +211346,539,slow and predictable plot,1171941441 +211346,541,blaxploitation,1161647406 +211346,541,Harrison Ford,1158437306 +211346,551,Nicole Kidman,1161646633 +211346,551,Tim Burton,1158438828 +211346,558,Christopher Lloyd,1165728896 +211346,585,Brad Pitt,1171941542 +211346,586,homosexuality,1161650022 +211346,586,kid on his own,1158782560 +211346,587,ghana,1161649472 +211346,587,Whoopi,1158431155 +211346,588,aliens,1161647585 +211346,588,Robin Williams,1158437209 +211346,589,Governator,1158613915 +211346,589,television,1161649118 +211346,590,David Lynch,1171940866 +211346,592,based on book,1161647551 +211346,592,Gotham City,1158437265 +211346,594,classic animated tale,1158439147 +211346,594,Snakes,1161646412 +211346,595,beautiful,1161648948 +211346,595,classic tale,1158612988 +211346,596,classic disney movie,1158438933 +211346,596,pixar,1161646558 +211346,597,president,1161649201 +211346,597,Richard Gere,1158613829 +211346,608,far and away,1161649535 +211346,608,great story,1158613566 +211346,616,animated,1158431243 +211346,631,not as good as the first,1165728815 +211346,648,espionage,1158438735 +211346,648,military,1161646701 +211346,653,drab,1171941654 +211346,661,James Cameron,1161649976 +211346,708,Uma Thurman,1158431284 +211346,709,cats and dogs,1165728762 +211346,720,Want,1171941313 +211346,736,exciting,1158613420 +211346,736,twist ending,1161647648 +211346,741,ghost,1161647090 +211346,741,great anime,1158437809 +211346,745,want to own,1171941318 +211346,750,Dramatic,1171941245 +211346,762,Steven Spielberg,1161647681 +211346,780,Indiana,1161649359 +211346,780,Will Smith,1158613721 +211346,784,cathartic,1171941534 +211346,788,Nudity (Full Frontal - Brief),1161649258 +211346,788,SHERMAN SHERMAN SHERMAN!,1158783016 +211346,805,Samuel L. Jackson,1173555169 +211346,837,magic,1171941505 +211346,849,weird,1166378115 +211346,858,Goldie Hawn,1161649468 +211346,858,Marlon Brando,1158613668 +211346,867,Cary Grant,1171941531 +211346,867,Tom Arnold,1161644949 +211346,888,not as good as the first,1165729022 +211346,899,silly,1161647686 +211346,919,Oz,1158440338 +211346,919,war,1161646175 +211346,924,space,1215717846 +211346,986,flashy,1171941372 +211346,1017,childhood memories,1158613889 +211346,1017,switching places,1161649126 +211346,1020,confrontational,1171941404 +211346,1022,Civil War,1171941410 +211346,1024,Donald Duck,1165728702 +211346,1025,Merlin,1158614280 +211346,1025,swords,1161649759 +211346,1028,martial arts,1171941198 +211346,1029,Dumb,1171941387 +211346,1030,classic,1165728903 +211346,1032,classic disney,1158782021 +211346,1033,food,1161647103 +211346,1033,memorable animation,1158437781 +211346,1036,Didn't finish,1161647294 +211346,1036,explosions,1158437605 +211346,1049,man eating lions,1158430982 +211346,1059,Claire Danes,1158186705 +211346,1059,william goldman,1161649743 +211346,1060,Vince Vaughn,1166375522 +211346,1064,Dan Castelanetta,1161212014 +211346,1080,hilarious,1158438763 +211346,1080,mockumentary,1161646686 +211346,1088,Patrick Swayze,1166375572 +211346,1089,religion,1161646497 +211346,1089,Tim Roth,1158438993 +211346,1090,Planes,1161647769 +211346,1090,severity of war,1158613344 +211346,1097,Drew Barrymore,1158614063 +211346,1097,Ethan Hawke,1161650124 +211346,1125,goofy comedy,1158614254 +211346,1125,retarded,1161649800 +211346,1129,action,1166376090 +211346,1136,mob,1161646690 +211346,1136,very funny,1158438758 +211346,1148,want to see again,1171941302 +211346,1196,Harrison Ford,1158439256 +211346,1196,seen more than once,1161646329 +211346,1198,Harrison Ford,1158438975 +211346,1198,racism,1161646506 +211346,1200,not as good as the first,1158614017 +211346,1210,Death of Darth Vader,1158439262 +211346,1210,superhero,1161646325 +211346,1213,good dialogue,1161648824 +211346,1213,Ray Leota,1158613133 +211346,1214,Aliens,1161649711 +211346,1214,Sigourney Weaver,1158613460 +211346,1215,Arnold Schwarzenegger,1161648976 +211346,1215,kickass,1158612973 +211346,1220,black and white,1171941421 +211346,1221,Al Pacino,1158613676 +211346,1221,goofy,1161649459 +211346,1223,Zombie Movie,1171941068 +211346,1240,Governator,1158613921 +211346,1240,terrorism,1161649114 +211346,1241,awesome zombie flick,1158614357 +211346,1258,Shelley Duvall,1165728600 +211346,1259,good,1171941042 +211346,1261,evil computer,1161649548 +211346,1261,zombified action,1158613555 +211346,1263,death penalty,1161650138 +211346,1263,Robert DeNiro,1158614055 +211346,1265,Great movie,1161648807 +211346,1265,hilarious,1158613149 +211346,1270,based on a book,1161647555 +211346,1270,delorean,1158437259 +211346,1274,Akira Kurosawa,1161647589 +211346,1274,post-war tokyo,1158437201 +211346,1276,great movie,1165805718 +211346,1278,Gene Wilder,1158614300 +211346,1278,young kids,1161649726 +211346,1282,classical,1158437694 +211346,1282,family,1161647135 +211346,1291,Harrison Ford,1158438031 +211346,1291,India,1161646868 +211346,1307,chick flick,1165728588 +211346,1333,biting,1171941098 +211346,1339,Bruce Willis,1171941537 +211346,1367,17th century,1171940828 +211346,1380,great acting,1161648819 +211346,1380,Olivia Newton John,1158613144 +211346,1391,Jack Nicholson,1158782878 +211346,1391,Marlon Brando,1161647890 +211346,1405,Best War Films,1171941559 +211346,1459,Clint Eastwood,1159742266 +211346,1485,classic comedy,1158782783 +211346,1485,lions,1161649300 +211346,1489,cars,1171941415 +211346,1517,Australia,1161647559 +211346,1517,hilarious spy spoof,1158437254 +211346,1527,Fiona Shaw,1171941219 +211346,1544,lost child,1161649929 +211346,1562,bank robbery,1171940849 +211346,1566,disney,1161649410 +211346,1566,heroes,1161649410 +211346,1569,Cameron Diaz,1166377688 +211346,1569,My DVDs,1171941501 +211346,1580,Mel Gibson,1161646710 +211346,1580,Tommy Lee Jones,1158438725 +211346,1608,actionpacked,1158431206 +211346,1608,AIDS,1161647598 +211346,1610,Hungary,1161650006 +211346,1610,Sean Connery,1158614124 +211346,1625,awesome,1158614438 +211346,1639,great movie,1158614342 +211346,1646,Oscar (Best Directing),1171941011 +211346,1676,hilarious,1158782634 +211346,1676,stark,1161649769 +211346,1682,Great movie,1161649089 +211346,1682,Tragedy,1161649088 +211346,1688,classic animation,1165728788 +211346,1693,adventure,1171941085 +211346,1704,Good Romantic Comedies,1161650027 +211346,1717,school,1171941455 +211346,1721,Kate Winslet,1158782423 +211346,1721,time travel,1161647671 +211346,1722,Tolkien,1161649100 +211346,1729,Jack Nicholson,1161649983 +211346,1729,Pam Grier,1158782043 +211346,1732,Biography,1161648943 +211346,1732,lots of swearing :D,1158613003 +211346,1757,Favorites,1161650106 +211346,1757,loved it,1158614090 +211346,1777,Adam Sandler,1158440322 +211346,1777,Want,1161646185 +211346,1831,Matt LeBlanc,1166377429 +211346,1884,feel-good,1171941637 +211346,1907,Chinese culture,1158613268 +211346,1907,musical,1161647833 +211346,1911,dogs,1161648877 +211346,1917,archaeology,1161648980 +211346,1917,end of the world,1158782670 +211346,1918,Leslie Neilsen,1161649304 +211346,1920,toys,1165728922 +211346,1923,Cameron Diaz,1158613927 +211346,1923,Theater,1161649107 +211346,1954,romance,1161646481 +211346,1954,Silvester Stallone,1158439014 +211346,1961,Great movie,1161647747 +211346,1961,rape,1161647747 +211346,1967,Jennifer Connelly,1158438192 +211346,1967,lame,1161646809 +211346,1968,1980's cult,1158437331 +211346,1968,Bruce Willis,1161647394 +211346,1991,chuckie,1161645327 +211346,1992,chuckie,1161645335 +211346,1993,chick flick,1161645343 +211346,2000,Danny Glover,1158613742 +211346,2000,Let down,1161649313 +211346,2001,Danny Glover,1158613199 +211346,2001,Lee Marvin,1161647917 +211346,2002,let the other two Beverly Hills Cops down,1161649937 +211346,2003,Gizmo,1158437876 +211346,2003,great,1161647019 +211346,2005,good,1161647038 +211346,2005,the truffle shuffle,1158437835 +211346,2006,Masculinity,1161649900 +211346,2011,backstage,1161648972 +211346,2011,sports almanac,1158187185 +211346,2012,western,1158782717 +211346,2013,pointless,1171941168 +211346,2018,Brad Pitt,1171941089 +211346,2023,Good versus evil,1171941621 +211346,2033,classic,1165728715 +211346,2048,classic animated feature film,1158437853 +211346,2048,Great Screenplays,1161647029 +211346,2053,HongKong,1171940885 +211346,2054,honest,1161650011 +211346,2054,Rick Moranis,1158614115 +211346,2078,great disney movie,1158613195 +211346,2078,Jude Law,1161647922 +211346,2081,library,1161646767 +211346,2081,the ocean,1158438235 +211346,2082,migration,1171940945 +211346,2083,Michael Caine,1158613778 +211346,2083,mummy,1161649277 +211346,2085,great animated film,1158438888 +211346,2085,on hold,1161646585 +211346,2087,Captain Hook,1158613824 +211346,2087,Peter Sellers,1161649211 +211346,2090,classic animation,1158438981 +211346,2090,revenge,1161646502 +211346,2096,slavery,1171941450 +211346,2099,animals,1165728641 +211346,2100,cheesy yet fun,1165804429 +211346,2102,classic cheerful short,1158439271 +211346,2102,surreal,1161646316 +211346,2105,old look at the future,1158613413 +211346,2105,true story,1161647652 +211346,2114,outer space,1161647805 +211346,2114,Ralph Macchio,1158613283 +211346,2115,interesting,1161646863 +211346,2115,tomb raiding,1158438041 +211346,2116,weird technique,1165728678 +211346,2123,classic,1165728807 +211346,2133,elizabeth shue,1166565947 +211346,2137,classic,1165728724 +211346,2139,great animation,1158613395 +211346,2139,seen more than once,1161647692 +211346,2140,dark,1161647305 +211346,2140,Jim Henson,1158437599 +211346,2141,Fievel,1158614023 +211346,2142,classic,1165728823 +211346,2161,Atreyu,1158438822 +211346,2161,New York City,1161646639 +211346,2167,blindness,1161648939 +211346,2174,Beetlejuice Beetlejuice Beetlejuice,1161647544 +211346,2174,Betamax,1161647544 +211346,2186,good,1166565939 +211346,2268,fear of airplanes,1161649507 +211346,2268,You can't handle the truth,1158432612 +211346,2273,Chris Tucker,1158439027 +211346,2273,Russell Crowe,1161646471 +211346,2291,Edward Norton,1161647269 +211346,2291,great film,1158437643 +211346,2294,anime,1161647563 +211346,2294,Dreamworks Animation,1158437244 +211346,2302,mystery,1161646670 +211346,2302,Ralph Macchio,1158438780 +211346,2313,Elia Kazan,1171941237 +211346,2329,amazing photography,1161647581 +211346,2329,Nazis,1158437222 +211346,2335,hilarious,1166377733 +211346,2353,action-packed,1158613085 +211346,2353,ensemble cast,1161648867 +211346,2354,Klasky-Csupo,1165728914 +211346,2355,buddy,1161647390 +211346,2355,Dave Foley,1158437342 +211346,2363,Goldie Hawn,1161650090 +211346,2363,kickass,1158614100 +211346,2378,policial,1161649829 +211346,2380,Post apocalyptic,1171941475 +211346,2381,police,1171941172 +211346,2382,Recorded,1171940987 +211346,2383,TV,1171940991 +211346,2384,bacon,1166378184 +211346,2384,based on book,1171941271 +211346,2394,Prince,1161649810 +211346,2403,fish,1161649498 +211346,2403,Silvester Stallone,1158613590 +211346,2406,80s,1158614260 +211346,2406,Romans,1161649796 +211346,2409,classic,1166377878 +211346,2413,classical,1161650156 +211346,2413,hilariously bad,1158614048 +211346,2420,Kate,1161646846 +211346,2420,Pat Morita,1158438103 +211346,2421,Kathleen Turner,1161649327 +211346,2421,Pat Morita,1161212104 +211346,2422,Pat Morita,1161212115 +211346,2423,Charlie Kaufman,1161648910 +211346,2423,Chevy Chase,1158613025 +211346,2424,young Anakin,1161649734 +211346,2431,Paris,1161646567 +211346,2470,cross dressing,1161648893 +211346,2471,Paul Hogan,1166378180 +211346,2485,fun,1166378153 +211346,2490,Mel Gibson,1158614232 +211346,2490,parody,1161649848 +211346,2501,Jake Gyllenhal,1158613818 +211346,2501,occult technology,1161649234 +211346,2502,Bill Lumberg,1158438857 +211346,2502,off-beat comedy,1161646616 +211346,2529,nightmare,1158613329 +211346,2529,play adaptation,1161647778 +211346,2539,Robert DeNiro,1166375552 +211346,2542,locusts,1171940929 +211346,2571,Keanu Reeves,1158438697 +211346,2571,martial arts,1161646731 +211346,2605,robbery,1166375690 +211346,2617,Imhotep,1158782604 +211346,2617,music,1161647828 +211346,2628,Stanley Kubrick,1161649136 +211346,2628,young Anakin,1158782536 +211346,2640,Christopher Reeves,1158439298 +211346,2640,sci-fi,1161646300 +211346,2648,classic horror,1158614422 +211346,2683,Elizabeth Hurley,1158782646 +211346,2687,Phil Collins,1158439314 +211346,2687,true story,1161646292 +211346,2691,Leonardo DiCaprio,1161646793 +211346,2691,Tim Roth,1158438208 +211346,2700,Eric Cartman,1158439154 +211346,2700,Southern theme,1161646408 +211346,2701,Comedy,1171941081 +211346,2706,Amazing Cinematography,1161647576 +211346,2706,teen comedy,1158437235 +211346,2710,blindness,1171941102 +211346,2710,boring,1165804357 +211346,2716,Dan Aykroyd,1158437821 +211346,2716,ghosts,1161647048 +211346,2722,badly done,1166375952 +211346,2761,classical animation,1158613182 +211346,2761,iraq,1161647934 +211346,2791,AIDs,1161647593 +211346,2791,flying,1158437191 +211346,2795,Chevy Chase,1158613426 +211346,2795,vampire,1161647637 +211346,2797,80s,1158614332 +211346,2798,pregnancy,1171941164 +211346,2799,prequel,1171941160 +211346,2804,chick flick,1161647371 +211346,2804,classic christmas tale,1158437446 +211346,2810,great anime,1158613287 +211346,2810,Peter Jackson,1161647801 +211346,2857,weird animation,1158614295 +211346,2857,yellow,1161649738 +211346,2858,life changing,1215718127 +211346,2871,old movie,1158436103 +211346,2872,excellent for its time,1161649543 +211346,2899,Gullah,1161649430 +211346,2899,lots of memories,1158613700 +211346,2916,memory,1171670382 +211346,2918,ferris wheel,1161649512 +211346,2918,Matthew Broderick,1158613577 +211346,2924,great Jackie Chan flick,1158614366 +211346,2947,pussy galore,1165806239 +211346,2948,Sean Connery,1166376112 +211346,2953,homerus,1171940877 +211346,2959,Firefly,1161647123 +211346,2959,losing your mind,1158437735 +211346,2985,80s,1158782662 +211346,2985,romance,1161647725 +211346,2987,Cartoons,1158440331 +211346,2987,want to see again,1161646179 +211346,3000,prostitution,1161646532 +211346,3000,Studio Ghibli,1158438962 +211346,3020,weird but good,1166377550 +211346,3033,John Candy,1158439161 +211346,3033,space travel,1161646404 +211346,3034,little john,1158439007 +211346,3034,Robin Williams,1161646484 +211346,3072,ewww,1165804981 +211346,3072,moore,1171940960 +211346,3082,World War II,1161647627 +211346,3087,Bill Murray,1158613870 +211346,3087,scrabble,1161649163 +211346,3114,Tim Allen,1158613404 +211346,3114,Tom Hanks,1161647661 +211346,3146,Rob Schneider,1173555537 +211346,3147,Great Adaptations,1161647023 +211346,3147,Michael Clarke Duncan,1158437869 +211346,3157,bad,1166566069 +211346,3157,high school,1171941052 +211346,3159,fairy tale,1161648856 +211346,3159,fantastic,1158613093 +211346,3175,Tim Allen,1158614433 +211346,3186,Angelina Jolie,1158613118 +211346,3186,girlie movie,1161648832 +211346,3210,Sean Penn,1158614371 +211346,3247,Alfred Hitchcock,1171941023 +211346,3253,want to see again,1171941576 +211346,3254,war,1171941572 +211346,3273,Potential Oscar Nom,1171941019 +211346,3275,awesome,1166566078 +211346,3396,Jim Henson,1158614201 +211346,3396,muppets,1161649890 +211346,3397,great cast excellent,1161649447 +211346,3397,great memories,1158613682 +211346,3398,great childhood movie,1158613786 +211346,3398,multiple storylines,1161649273 +211346,3400,John Goodman,1165728943 +211346,3408,Erotic,1161645903 +211346,3409,great,1166377870 +211346,3421,National Lampoon's,1158614308 +211346,3438,awesome,1166377701 +211346,3450,Greg Kinnear,1161647015 +211346,3450,Walter Matheau,1158437881 +211346,3471,cloning,1161649605 +211346,3471,invasion,1158613529 +211346,3489,Hoodoo,1161648794 +211346,3507,great pair,1158613275 +211346,3507,oddly moving,1161647816 +211346,3552,Brian Doyle Murray,1158613491 +211346,3552,camp,1161649663 +211346,3554,love this movie,1161649924 +211346,3554,very moving,1158614166 +211346,3578,global warming,1161648828 +211346,3578,intense,1158613127 +211346,3608,enigmatic,1171940984 +211346,3615,disney,1165728958 +211346,3617,robots,1161647732 +211346,3623,espionage,1158782492 +211346,3623,mindfuck,1161647852 +211346,3624,shit,1161646453 +211346,3624,Western Comedy,1158439050 +211346,3697,pretentious garbage about good things,1161649824 +211346,3702,mad scientist,1161649920 +211346,3702,old look at the future,1158614180 +211346,3703,made me cry,1161647895 +211346,3703,Mel Gibson,1158613255 +211346,3717,gonzo,1161650032 +211346,3751,childhood,1161649628 +211346,3751,Mel Gibson,1158613520 +211346,3753,patrick bateman,1161649853 +211346,3753,The United States of America,1158782579 +211346,3754,adaptation,1171941283 +211346,3754,bad,1165728985 +211346,3776,memories,1165728756 +211346,3785,sci-fi,1161647705 +211346,3793,Hugh Jackman,1158440350 +211346,3793,xenomorph,1161646162 +211346,3798,not good,1166377584 +211346,3798,White Trash,1171941289 +211346,3799,pretty good,1165729083 +211346,3825,coming of age,1171941682 +211346,3825,decent,1166566061 +211346,3868,Leslie Neilsen,1158438799 +211346,3868,Natalie Portman,1161646651 +211346,3869,Leslie Neilsen,1166377676 +211346,3911,Best of 2005,1171941553 +211346,3911,not that good,1165804716 +211346,3945,very good,1165729074 +211346,3948,Mel Brooks,1161646721 +211346,3948,Owen Wilson,1158438715 +211346,3949,Jennifer Connelly,1158613357 +211346,3949,revenge,1161647742 +211346,3964,adventure game,1161649715 +211346,3964,loved this cartoon,1158613443 +211346,3972,Kickass Jackie Chan film,1158614156 +211346,3972,legal issues,1161649956 +211346,3977,Charlize Theron,1161650189 +211346,3981,religion,1171941467 +211346,3986,60's,1161649721 +211346,3988,homosexuality,1161647961 +211346,3990,chuckie's mom,1165729051 +211346,3994,unbelievable,1161649747 +211346,3994,very cool ending,1158614286 +211346,3996,Chow Yun Fat,1158437595 +211346,3996,crime,1161647308 +211346,4002,planes,1171941480 +211346,4015,Dustin Hoffman,1161650128 +211346,4016,David Spade,1158613547 +211346,4016,empty,1161649558 +211346,4019,Filmed in BC,1161648848 +211346,4019,ytmnd,1158435191 +211346,4022,cars,1161647379 +211346,4022,loneliness,1158437402 +211346,4023,life,1158431310 +211346,4027,obsession,1161646626 +211346,4027,Southern theme,1158432593 +211346,4069,boring,1166377716 +211346,4069,well done,1171941293 +211346,4085,Axel Foley,1158613472 +211346,4085,Beatles,1161649683 +211346,4090,animated classic,1158437323 +211346,4090,Brad Pitt,1161647398 +211346,4102,Eddie Cibrian,1161649569 +211346,4102,hilarious,1158613543 +211346,4105,awesome zombie flick,1158614078 +211346,4105,evolution,1161650114 +211346,4158,weird,1165729028 +211346,4223,army,1158613078 +211346,4223,end of the world,1161648871 +211346,4239,black and white,1161648932 +211346,4241,best pokemon movie,1165729101 +211346,4246,middle age,1165728551 +211346,4262,Al Pacino,1158614266 +211346,4262,Scary,1161649792 +211346,4270,muppets,1161649283 +211346,4299,Knoll,1171941359 +211346,4299,odd,1166375723 +211346,4306,classic fairy tales,1158439083 +211346,4306,showing in Finland,1161646436 +211346,4308,mountains,1161649895 +211346,4308,Nicole Kidman,1158614197 +211346,4366,Atlantis,1165728969 +211346,4367,Larry Wachkowski,1161649317 +211346,4369,fashion,1161649531 +211346,4370,Aidan Gillen,1161649069 +211346,4370,Haley Joel Osmond,1158612956 +211346,4388,anna faris,1166565816 +211346,4438,child abuse,1161649619 +211346,4438,Christmas,1161645376 +211346,4440,classic martial arts flick,1158437772 +211346,4440,Film Theory & Criticism,1161647106 +211346,4441,classic martial arts flick,1158437793 +211346,4441,gambling,1161647098 +211346,4444,classic martial arts,1158438999 +211346,4444,remake,1161646493 +211346,4446,fish,1161648852 +211346,4447,Leonard Nimoy,1171941352 +211346,4519,classic,1165728746 +211346,4558,kids,1171941061 +211346,4616,league of shadows,1171940921 +211346,4621,love,1171941347 +211346,4643,plot holes,1161647773 +211346,4701,Rupert Everett,1161647710 +211346,4718,American Sign Language,1161649707 +211346,4720,horrible,1165804457 +211346,4720,Othello,1171941181 +211346,4734,bluntman and chronic,1158187215 +211346,4734,james bond,1161647930 +211346,4846,hilarious martial arts,1158614139 +211346,4846,ironic,1161649990 +211346,4878,don't want to see,1171941662 +211346,4886,classic animated tale,1158438748 +211346,4886,movielens top pick,1161646694 +211346,4887,alternate universe,1161212176 +211346,4887,one of the 10 best movies ever made.,1161649228 +211346,4890,shallow plot,1161649152 +211346,4896,Harper Lee,1161649415 +211346,4896,harry potter,1158613717 +211346,4939,EUROPE SONG LOL,1158614414 +211346,4963,Brad Pitt,1158438856 +211346,4963,ocean,1161646621 +211346,4973,life,1215718115 +211346,4979,Ben Stiller,1158435734 +211346,4980,biography,1171940853 +211346,4990,Steve Oedekerk,1165728776 +211346,4993,London,1161646759 +211346,4993,Peter Jackson,1158438255 +211346,5010,war,1158614034 +211346,5014,sean penn,1161731318 +211346,5039,childhood memories,1158187084 +211346,5047,hilarious spoof,1161212380 +211346,5047,Kung-Fu,1161649961 +211346,5049,Eddie Murphy,1158613951 +211346,5055,Bruce Lee,1158437630 +211346,5055,drama,1161647272 +211346,5069,espionage,1161647139 +211346,5069,Great movie,1161647139 +211346,5093,Comedy,1161650142 +211346,5093,court,1161650142 +211346,5110,hilarious!,1158613882 +211346,5110,suburbia,1161649131 +211346,5135,Monster,1171940956 +211346,5159,Robin Williams,1165728843 +211346,5164,memories,1165729066 +211346,5171,Tim Burton,1161647676 +211346,5218,ice,1161646885 +211346,5218,John Leguizamo,1158438005 +211346,5219,remake,1161647736 +211346,5254,blaspheme,1161649676 +211346,5264,classic,1161645699 +211346,5266,Paul Newman,1161649221 +211346,5292,forceful,1171941037 +211346,5299,My favourite of all,1161649265 +211346,5299,Nia Vardalos,1158613804 +211346,5349,special,1161646366 +211346,5349,Wilhem Dafoe,1158439198 +211346,5378,clone war,1158439240 +211346,5378,sci-fi,1161646334 +211346,5388,great drama,1158614133 +211346,5388,institutions,1161649997 +211346,5400,Morgan Freeman,1166375753 +211346,5418,boring,1161647401 +211346,5418,espionage,1158437313 +211346,5422,David Spade,1159742674 +211346,5422,Empty Planet,1161649564 +211346,5444,aliens,1158438220 +211346,5444,life,1161646777 +211346,5445,Milla Jovovich,1161649287 +211346,5445,Tom Cruise,1158613760 +211346,5448,move it football head,1165729010 +211346,5449,Winona Ryder,1166378021 +211346,5459,first was much better,1158782684 +211346,5481,Austria,1161649696 +211346,5481,hilarious,1158782792 +211346,5500,funny,1166565869 +211346,5502,invasion,1158439092 +211346,5502,silly,1161646427 +211346,5507,X-Files!!,1161646148 +211346,5508,joy division,1215717859 +211346,5528,one of the best movies ever,1161646589 +211346,5528,psychotic tendencies,1158438873 +211346,5572,basketball,1171941093 +211346,5618,sports,1161646355 +211346,5618,Studio Ghibli,1158439212 +211346,5650,Canadian humor,1158614275 +211346,5650,stripping,1161649765 +211346,5672,decent,1165729094 +211346,5673,not funny,1158437094 +211346,5673,US history,1171941001 +211346,5765,classic bugs bunny animations,1158438246 +211346,5765,low budget,1161646763 +211346,5785,johnny knoxville,1166565835 +211346,5810,80s,1161649074 +211346,5810,Eminem,1158612949 +211346,5816,Harlin,1161649425 +211346,5816,harry potter,1158613705 +211346,5829,Leslie Neilsen,1158613755 +211346,5829,mediocre plot,1161649291 +211346,5872,dinosaurs,1161647300 +211346,5879,Adam Sandler,1165728980 +211346,5882,great tale,1165728696 +211346,5902,Nicolas Cage,1158613958 +211346,5903,Christian Bale,1158437678 +211346,5903,Equador,1161647143 +211346,5945,abandonment,1161649065 +211346,5945,Jack Nicholson,1158187107 +211346,5952,Los Angeles,1161646749 +211346,5952,Peter Jackson,1158438278 +211346,5956,gay,1161647094 +211346,5956,Leonardo DiCaprio,1158437803 +211346,5958,Nickelodeon,1165728952 +211346,5971,My DVDs,1161646666 +211346,5971,Studio Ghibli,1158438788 +211346,5989,Great movie,1158614042 +211346,5991,Chinese,1161649633 +211346,5991,Renee Zellweger,1158613514 +211346,5995,Adrien Brody,1158613322 +211346,5995,pigs,1161647789 +211346,6016,Civil War,1171941255 +211346,6156,show business,1161646457 +211346,6157,dark,1161648881 +211346,6188,Olympics,1161646606 +211346,6188,Will Ferrell,1158438857 +211346,6218,Keira Knightley,1158614030 +211346,6281,Philip K. Dick,1161646563 +211346,6281,thrilling,1158438907 +211346,6283,comic book,1161647321 +211346,6283,great anime film,1158437525 +211346,6287,angelina jolies lips,1161649703 +211346,6294,bullshit history,1161648918 +211346,6294,Chow Yun Fat,1161212302 +211346,6297,Hollywood,1161646990 +211346,6297,Shia LeBoeuf,1158437935 +211346,6333,Hugh Jackman,1158440355 +211346,6333,x wing,1161646158 +211346,6337,owned,1161649867 +211346,6337,Phillip Seymour Hoffman,1158614214 +211346,6350,animated masterpiece,1158437430 +211346,6350,Can't remember,1161647374 +211346,6365,Keanu Reeves,1158438692 +211346,6365,magic,1161646735 +211346,6371,latios,1165729113 +211346,6373,Bruce Boxleitner,1161649667 +211346,6373,Jim Carrey,1158782728 +211346,6377,film noir,1161647115 +211346,6377,lost child,1158437755 +211346,6378,Charlize Theron,1158613735 +211346,6378,it's alright.,1161649345 +211346,6383,2006 Best Picture Oscar Nominee,1171940833 +211346,6485,crossover,1165729042 +211346,6503,chad,1161649638 +211346,6534,hula hoop,1171940902 +211346,6537,Governator,1158782568 +211346,6537,television,1171941585 +211346,6539,Keira Knightley,1158438951 +211346,6539,Pixar,1161646547 +211346,6541,Leonard Nimoy,1161646798 +211346,6548,bad acting,1161648962 +211346,6564,adventure game,1161212404 +211346,6564,Las Vegas,1161649322 +211346,6586,Eugene Levy,1166378199 +211346,6593,Jamie Lee Curtis,1158614429 +211346,6595,SWAT team,1166378033 +211346,6618,shark,1161646446 +211346,6618,the world cup meets dragonball z,1158439068 +211346,6645,robert duvall,1215717268 +211346,6709,one of the best i've seen,1161647811 +211346,6721,Jet Li,1158438861 +211346,6721,On TV all the time,1161646600 +211346,6722,Jet Li,1158614208 +211346,6722,one of the 10 best movies ever made.,1161649874 +211346,6723,Jet Li,1158438865 +211346,6723,One of my favorites,1161646594 +211346,6753,Haley Joel Osment,1158613384 +211346,6753,sequel,1161647701 +211346,6754,Underrated,1161647642 +211346,6764,Russia,1161646475 +211346,6764,The Rock,1158439021 +211346,6807,hilarious,1158613263 +211346,6807,Moving,1161647846 +211346,6857,great anime,1158438833 +211346,6857,Nicolas Cage,1161646630 +211346,6863,Jack Black,1158439039 +211346,6863,sci-fi,1161646463 +211346,6874,kid flick,1161646834 +211346,6874,Lucy Liu,1158438142 +211346,6887,Cuba Gooding Jr.,1158614249 +211346,6887,radical,1161649806 +211346,6888,Anna Faris,1161641299 +211346,6889,disney,1161641292 +211346,6934,kickass fight scene,1158782433 +211346,6934,Martin Scorsese,1161647871 +211346,6936,Elijah Wood,1161647264 +211346,6936,New York,1158437660 +211346,6944,father dies,1161649517 +211346,6944,Steve Martin,1158613570 +211346,6946,Brendan Fraser,1161641193 +211346,6947,Mascots,1171940942 +211346,6950,Tommy Lee Jones,1161641071 +211346,6951,car chase,1171941526 +211346,6951,Mike Myers,1161641056 +211346,6957,Baseball,1161648957 +211346,6957,Billy Bob Thornton,1158612983 +211346,6958,Eddie Murphy,1161641042 +211346,6958,harsh,1171941214 +211346,7004,kids fun,1171940906 +211346,7005,John Goodman,1161640948 +211346,7005,kinda slow,1171940910 +211346,7036,Michael J. Fox,1161640913 +211346,7090,heist,1161646998 +211346,7090,very artistic,1158437919 +211346,7099,narrated,1161646643 +211346,7099,Studio Ghibli,1158438817 +211346,7142,Honor,1161650016 +211346,7142,Jessica Alba,1161640805 +211346,7143,Japanese culture,1158438203 +211346,7143,lawyers,1161646805 +211346,7147,Bibliothek,1161647416 +211346,7147,fantastic storyline,1158437299 +211346,7148,Christina Milian,1161640800 +211346,7150,Greg Kinnear,1161640732 +211346,7150,Matt Damon,1161640732 +211346,7153,great war scene,1158438274 +211346,7153,love,1161646755 +211346,7158,house,1161649399 +211346,7160,Charlize Theron,1158614494 +211346,7161,Bonnie Hunt,1161640714 +211346,7161,Hilary Duff,1161640714 +211346,7161,Steve Martin,1161640714 +211346,7162,court,1161648899 +211346,7162,Nicole Kidman,1158613046 +211346,7163,Ben Affleck,1161640698 +211346,7163,payne,1161649838 +211346,7164,fantastic,1158614240 +211346,7164,Peter Bogdanovich,1161649834 +211346,7170,Anthony Anderson,1161640677 +211346,7170,Eddie Griffin,1161640677 +211346,7170,Mystery,1161649269 +211346,7173,Ben Stiller,1161640661 +211346,7174,bad movie,1161640653 +211346,7174,television,1171941430 +211346,7247,child abuse,1161650185 +211346,7247,musical,1161563678 +211346,7254,Ashton Kutcher,1158437383 +211346,7254,buy,1161647386 +211346,7263,Milla Jovovich,1171940951 +211346,7285,thriller,1161649103 +211346,7285,well done,1158613933 +211346,7293,50 Cent,1161647618 +211346,7293,memory loss,1158437170 +211346,7318,past life,1161649858 +211346,7325,Steven Spielberg,1161646320 +211346,7355,loved this cartoon,1158614500 +211346,7360,ving rhames,1171940786 +211346,7361,ethnic conflict,1161650119 +211346,7361,Jim Carrey,1158614070 +211346,7373,heroin,1161647003 +211346,7373,Selma Blair,1158437911 +211346,7374,hockey,1171940881 +211346,7374,Roseanne Barr,1165728852 +211346,7438,Japan,1158438161 +211346,7438,Kirsten Dunst,1161646825 +211346,7445,Denzel Washington,1158613748 +211346,7445,Marlon Brando,1161649295 +211346,7451,Rachel McAdams,1158614490 +211346,7454,very good,1161646203 +211346,7482,England,1161647260 +211346,7482,Martial Arts flick,1158437677 +211346,7618,changed my life,1161649643 +211346,7618,Charlie Chaplin,1160962050 +211346,7701,London,1171941510 +211346,7790,boxing,1161648927 +211346,7790,classic animation,1158613014 +211346,7802,war,1171941298 +211346,7844,lesbian,1161646787 +211346,7844,Martial Arts,1161646787 +211346,7981,inspirational,1161647943 +211346,7981,Tony Leung,1158613174 +211346,8132,glam rock,1171941626 +211346,8253,cast,1161649652 +211346,8253,Studio Ghibli,1158613506 +211346,8360,not as good as the first,1158439088 +211346,8360,Shakespeare,1161646432 +211346,8361,Day and Hudson,1161649599 +211346,8363,snoop dogg,1171668795 +211346,8363,so bad it's funny,1171941437 +211346,8368,hard to watch,1161649420 +211346,8368,harry potter,1158613709 +211346,8371,Christmas,1161649614 +211346,8372,good animation,1165728999 +211346,8376,Napoleon Dynamite,1161649886 +211346,8376,vote for pedro,1158437032 +211346,8464,fast food truths,1158439293 +211346,8464,super-hero,1161646304 +211346,8528,Ben Stiller,1158437625 +211346,8528,documentary,1161647279 +211346,8529,Catherine Zeta Jones,1158439337 +211346,8529,teen,1161646280 +211346,8622,George Bush,1158782462 +211346,8636,spoof,1161646360 +211346,8636,Tobey MacGuire,1158439205 +211346,8641,animation,1161647572 +211346,8644,Ireland,1161646890 +211346,8644,Will Smith,1158437995 +211346,8665,boundaries,1161649672 +211346,8665,kickass,1158613481 +211346,8666,Cary Grant,1171941114 +211346,8666,Halle Berry,1161645220 +211346,8783,violent,1171941322 +211346,8784,gambling,1161645931 +211346,8784,Garbage,1161649481 +211346,8798,Coen Brothers,1161647364 +211346,8798,Jamie Foxx,1158437472 +211346,8807,Harrison Ford,1161647006 +211346,8807,White Castle,1158437899 +211346,8809,dark comedy,1161648884 +211346,8809,fantasy,1158613065 +211346,8810,almost favorite,1161649061 +211346,8811,Yu-Gi-Oh!,1161211770 +211346,8815,didn't make sense at all,1171668038 +211346,8815,exploitation,1171940871 +211346,8835,Patrick Stewart,1161649216 +211346,8835,thrilling,1161211775 +211346,8837,British Comedy,1161211727 +211346,8859,James Bond,1171941056 +211346,8860,cellos,1161649647 +211346,8860,Jason Statham,1161211554 +211346,8865,Divx1,1171941033 +211346,8874,best zombie movie to date,1158439075 +211346,8874,shakespeare,1161646441 +211346,8907,short,1161649146 +211346,8907,Will Smith,1161211506 +211346,8910,humourous,1158437990 +211346,8910,Italian,1161646899 +211346,8912,Jimmy Fallon,1161211485 +211346,8914,intellectual,1158613848 +211346,8914,president,1161646538 +211346,8917,Kim Jong Il,1158439328 +211346,8917,Tom Hanks,1161646288 +211346,8939,financial disaster,1161649502 +211346,8939,Robin Williams,1161211414 +211346,8950,Christian Bale,1158438292 +211346,8950,Mafia,1161646741 +211346,8952,fairy tale,1171941648 +211346,8958,Jamie Foxx,1158613852 +211346,8958,race issues,1161649192 +211346,8961,Ingmar Bergman,1161646875 +211346,8961,Mr. Incredible,1158438022 +211346,8965,Post apocalyptic,1171941177 +211346,8965,very boring,1165728800 +211346,8968,Salma Hayek,1161211396 +211346,8972,Nazis,1161646647 +211346,8972,Nicolas Cage,1158438806 +211346,8974,SpongeBob!,1161211354 +211346,8974,sport car,1161649773 +211346,8977,Al Pacino,1171941277 +211346,8977,too long,1161211341 +211346,8978,Tim Allen,1161211334 +211346,8983,amazing martial arts scenes,1158437971 +211346,8983,horror,1161646907 +211346,8984,ocean/beach,1161649250 +211346,26199,arlo guthrie,1215468907 +211346,26199,thanksgiving,1215468907 +211346,26662,great whimsical animated feature,1158438134 +211346,26662,King Arthur,1161646842 +211346,26686,Bill Cosby,1161211002 +211346,26776,politics,1161646543 +211346,26776,Studio Ghibli,1158438956 +211346,26865,fighting,1161647111 +211346,26865,Jet Li,1158437760 +211346,27391,homosexuality,1171665466 +211346,27660,androids,1161648984 +211346,27660,animation,1158612967 +211346,27706,Jim Carrey,1158614463 +211346,27728,ghosts,1161647086 +211346,27728,not as good as the first,1158437815 +211346,27772,just allen,1161649338 +211346,27772,scary funny,1158431326 +211346,27801,on server,1161646579 +211346,27801,Tony Jaa,1158438891 +211346,27808,Adam Sandler,1158439166 +211346,27808,spaghetti western,1161646376 +211346,27821,intense,1161647939 +211346,27837,Dennis Quaid,1161211273 +211346,27837,flying pigs,1161649494 +211346,27838,bullying taken too far,1158438704 +211346,27838,mental illness,1161646727 +211346,27904,Keanu Reeves,1171665413 +211346,30707,Hilary Swamk,1158438729 +211346,30707,Michael Crichton,1161646705 +211346,30749,Don Cheadle,1158613161 +211346,30749,Hong Kong,1161648789 +211346,30793,children,1171941521 +211346,30810,Liam Neeson,1161647910 +211346,30810,Owen Wilson,1158613206 +211346,30812,aviation,1161649691 +211346,30812,Leonardo DiCaprio,1158613467 +211346,30816,Emmy Rossum,1158613317 +211346,30816,phone booth,1161647793 +211346,30822,Dennis Quaid,1158613167 +211346,30822,Ingrid Bergman,1161647949 +211346,30825,Meg Ryan,1161647865 +211346,30883,Bill Cosby,1161211267 +211346,30883,Fantasy,1171941382 +211346,31184,great anime,1158614315 +211346,31221,Jennifer Garner,1161211226 +211346,31223,race,1171941339 +211346,31225,comic book,1161645715 +211346,31225,computers,1161650147 +211346,31658,Holocaust,1161646902 +211346,31658,one of Miyazaki's finest,1158437981 +211346,31660,great movie,1161646309 +211346,31660,space,1161646309 +211346,31685,Hitchcock,1161646994 +211346,31685,Will Smith,1158437924 +211346,31696,Comedy,1161647360 +211346,31696,Keanu Reeves,1158437478 +211346,31698,Jamie Kennedy,1161211179 +211346,31878,kill bill meets looney tunes,1158438184 +211346,31878,Kurosawa,1161646813 +211346,32029,holocaust,1161646983 +211346,32029,hostage negotiations,1158437961 +211346,32587,Frank Miller,1158439101 +211346,32587,Sigourney Weaver,1161646422 +211346,32598,Federico Fellini,1171941633 +211346,33004,dolphins,1168395232 +211346,33162,kidnapping,1161646817 +211346,33162,Orlando Bloom,1158438172 +211346,33166,Crime,1161647313 +211346,33166,racism,1158437530 +211346,33437,Jet Li,1158440298 +211346,33437,USA,1161646212 +211346,33493,Origin of Darth Vader,1158439231 +211346,33493,super-hero,1161646339 +211346,33615,Ben Stiller,1158614185 +211346,33615,made me cry,1161649914 +211346,33646,Chris Rock,1161210942 +211346,33646,Lonesome Polecat,1161649933 +211346,33660,cinematography,1171941119 +211346,33672,lord of the ring,1171940934 +211346,33679,espionage,1158438769 +211346,33679,mr. stretch,1161646675 +211346,33685,Cedric the Entertainer,1161210960 +211346,33794,baseball,1161647548 +211346,33794,Christian Bale,1158437271 +211346,33836,beautiful,1171941547 +211346,33836,Will Ferrel,1161210921 +211346,34048,Tom Cruise,1158440310 +211346,34048,watched 2006,1161646194 +211346,34129,interesting,1171941004 +211346,34129,Martin Lawrence,1171667523 +211346,34143,David Lynch,1171941670 +211346,34143,Jennifer Connelly,1171667466 +211346,34150,fairy tale,1161650103 +211346,34162,Owen Wilson,1158440314 +211346,34162,want to own,1161646189 +211346,34319,Ewan McGregor,1158438083 +211346,34319,israel,1161646855 +211346,34321,Billy Bo Thornton,1161210872 +211346,34332,pretty funny,1158614270 +211346,34332,skinhead,1161649784 +211346,34336,John Cusack,1161210891 +211346,34338,Alfred Hitchcock,1171940839 +211346,34338,worst documentary ever,1161210862 +211346,34520,Johnny Knoxville,1161210831 +211346,34530,death penalty,1171941399 +211346,34530,sausage fest,1161210822 +211346,34532,mysterious or thrilling,1158431387 +211346,34532,not even remotely dramatic,1158431387 +211346,34532,Scary,1171941029 +211346,34532,surreal,1171941029 +211346,34534,for kids,1161649489 +211346,34534,Mark Wahlberg,1161210841 +211346,34540,manipulation,1165370036 +211346,34767,stupid idea,1160599483 +211346,35836,40 year old virgin,1161647623 +211346,35836,bag of sand,1158437164 +211346,35957,Rachel McAdams,1158613865 +211346,35957,Renee Zellweger,1161649187 +211346,36397,birds,1161210759 +211346,36519,Jason Statham,1161210744 +211346,36519,transgender,1161649094 +211346,36529,love,1161647901 +211346,36529,Nicolas Cage,1158613240 +211346,36533,college kids,1161210732 +211346,36537,Keanu Reeves,1161210721 +211346,36537,thuggery,1161649754 +211346,36708,animated,1160599754 +211346,36708,Favorites,1161648863 +211346,36708,hilarious,1160599754 +211346,36708,Peter Griffin,1160599754 +211346,36708,Stewie Griffin,1160599755 +211346,37380,doomsday,1161649584 +211346,37380,The Rock,1161210629 +211346,37382,don't want to see,1161650134 +211346,37382,Keira Knightley,1161210645 +211346,37384,Ryan Reynolds,1158431071 +211346,37384,workplace,1158431075 +211346,37384,WWII,1161646199 +211346,37386,Charlize Theron,1161210503 +211346,37477,Samuel L. Jackson,1161210693 +211346,37720,Exceptional Acting,1161650111 +211346,37720,Exorcism,1161210700 +211346,37729,comedy,1161647325 +211346,37729,Tim Burton,1158437485 +211346,37739,great acting,1161649440 +211346,37739,Shia LeBeouf,1158613691 +211346,37741,car chase,1161647383 +211346,37741,writing,1158437392 +211346,37830,final fantasy,1158437750 +211346,37830,Fiona Shaw,1161647119 +211346,37853,interracial romance,1161649354 +211346,37853,Jessica Alba,1161210670 +211346,38038,watched 2006,1171941308 +211346,38992,Al Pacino,1171666227 +211346,39183,Bruce Campbell,1171940862 +211346,39435,Legal,1161649953 +211346,39435,Zorro,1161210614 +211346,39444,Nicholas Cage,1171666046 +211346,39446,not as good as the first,1166378137 +211346,39446,satirical,1171941459 +211346,39449,primitive peoples,1161649816 +211346,39449,Uma Thurman,1160962067 +211346,39715,pretty funny,1160599871 +211346,40278,iraq,1158432654 +211346,40574,50 Cent,1161210569 +211346,40574,genocide,1171941630 +211346,40581,Julie Andrews,1161649331 +211346,40581,Ryan Reynolds,1161210539 +211346,40583,politics,1158435213 +211346,40614,cheating,1161210577 +211346,40614,Depressing,1161649590 +211346,40815,hard to rate,1161648798 +211346,40815,harry potter,1161648799 +211346,40819,Los Angeles,1171941064 +211346,40959,Ice Cube,1161650002 +211346,40959,John Cusack,1161210551 +211346,40962,Rene Russo,1161210515 +211346,41566,Children,1161650181 +211346,41566,Fantasy World,1158782598 +211346,41569,Jack Black,1158438167 +211346,41569,kids,1161646821 +211346,41571,Japanese culture,1161646715 +211346,41571,memory,1161646715 +211346,41716,Matt Damon,1161647876 +211346,41716,Pierce Brosnan,1158613254 +211346,41997,Quakers,1171940975 +211346,41997,worst movie ever,1152731004 +211346,42007,Jennifer Aniston,1171665779 +211346,42009,Steve Martin,1171665767 +211346,42011,family comedy,1161210418 +211346,42011,funny,1161648838 +211346,42013,Johnny Knoxville,1161210411 +211346,42718,Disney,1161647284 +211346,42718,free jumping,1158437618 +211346,42725,great soundtrack,1161647034 +211346,42725,video game testers,1158186534 +211346,42728,Truman Capote,1171941579 +211346,42730,glam rock,1171941368 +211346,42734,hooker,1171940891 +211346,42734,very bad,1158437945 +211346,42738,Kate Beckinsale,1158431090 +211346,42738,USA film registry,1161646217 +211346,43396,anthony hopkins,1215493058 +211346,43460,steve coogan,1215493035 +211346,43558,Biography,1171941267 +211346,43558,Martin Lawrence,1171665650 +211346,43679,amusement park,1171665627 +211346,43836,piano,1171941486 +211346,43836,Steve Martin,1171665617 +211346,43869,culture clash,1171941674 +211346,43871,Harrison Ford,1161210320 +211346,43912,France,1161650095 +211346,43912,Samuel L. Jackson,1161210304 +211346,43919,parody,1161210291 +211346,43921,runaway,1161647714 +211346,43921,thrilling,1161210279 +211346,43923,Madeleine Stowe,1171940938 +211346,43926,don't remember,1171941393 +211346,43926,worst animated flick ever,1161210274 +211346,43932,young Anakin,1171940995 +211346,43936,16th century,1161649084 +211346,43936,Bruce Willis,1158612942 +211346,44022,ice music,1161649391 +211346,44022,John Leguizamo,1158431692 +211346,44191,Natalie Portman,1158440305 +211346,44191,VHS,1161646207 +211346,44199,Clive Owen,1158438074 +211346,44199,Interesting,1161646859 +211346,44397,mutation,1171665584 +211346,44665,Bruce Willis,1158438280 +211346,44665,Lucas,1161646745 +211346,44840,Bengal,1161649687 +211346,44840,Rob Schneider,1161210215 +211346,44972,pretty funny,1161210198 +211346,44972,Scarlett Johansson,1161649174 +211346,45081,Horror Game,1161210185 +211346,45081,sister sister relationship,1161649788 +211346,45183,action packed,1160599737 +211346,45183,awesome,1160599737 +211346,45183,elephant,1160599737 +211346,45183,martial arts,1160599737 +211346,45183,prison,1161646518 +211346,45183,Tony Jaa,1160599737 +211346,45186,espionage,1158438740 +211346,45186,Miyazaki,1161646697 +211346,45208,Robin Williams,1160600235 +211346,45208,robots,1161649181 +211346,45210,unrealistic,1171941326 +211346,45431,Bruce Willis,1158438892 +211346,45431,overrated,1161646572 +211346,45440,John Malkovich,1171665516 +211346,45442,good remake,1160600130 +211346,45442,police,1161647764 +211346,45447,Dance,1161648888 +211346,45447,the truth!,1158613051 +211346,45499,Patrick Stewart,1158440362 +211346,45499,xenophobic,1161646153 +211346,45501,Jennifer Aniston,1158614338 +211346,45517,Cary Grant,1161649656 +211346,45517,Owen Wilson,1158613497 +211346,45662,alright remake,1160600109 +211346,45662,omigawd!,1161649880 +211346,45666,NASA,1161646661 +211346,45666,Nudity (Topless),1160600092 +211346,45672,classic,1161647367 +211346,45672,family bonds,1158437466 +211346,45722,Keira Knightley,1158438945 +211346,45722,pirates,1161646551 +211346,45728,claymation,1161648904 +211346,45728,fast food,1158613032 +211346,45730,Larry Wachkowski,1171940914 +211346,46322,Federico Fellini,1161647127 +211346,46322,Jet Li,1160599593 +211346,46322,martial arts,1161647127 +211346,46335,awesome,1161647131 +211346,46335,Drifiting,1160600055 +211346,46335,fantasy,1161647131 +211346,46335,Tokyo,1160600055 +211346,46530,Brandon Routh,1158439304 +211346,46530,seen more than once,1161646296 +211346,46578,life,1161647906 +211346,46578,Steve Carell,1158613226 +211346,46723,Brad Pitt,1163728660 +211346,46865,life,1171940925 +211346,46948,crappy story,1165728625 +211346,46965,Samuel L. Jackson,1158439108 +211346,46965,snow,1161646418 +211346,46970,Michael Clarke Duncan,1158613906 +211346,46970,Tarantino,1161649122 +211346,46974,Nicolas Cage,1158440344 +211346,46974,World War II,1161646170 +211346,46976,Will Ferrell,1173555456 +211346,47200,action packed,1160599774 +211346,47200,awesome,1160599774 +211346,47200,best movie ever,1160599774 +211346,47200,crappy sequel,1161647317 +211346,47382,jazz,1171665375 +211346,47518,Action,1161647610 +211346,47610,Il film perfetto,1161646880 +211346,47610,visual trickery,1158438015 +211346,47644,Ingmar Bergman,1171941208 +211346,47950,Ben Affleck,1159742664 +211346,47950,Holocaust Poland,1161649406 +211346,48142,1940's,1158782511 +211346,48142,black comedy,1161647411 +211346,48161,Coach Carter meets Longest Yard,1158782444 +211346,48161,great soundtrack,1161648813 +211346,48322,Bam Margera,1160599688 +211346,48322,Chris Pontias,1160599688 +211346,48322,Ehren Mghehey,1160599688 +211346,48322,hilarious,1160599688 +211346,48322,Japan,1161646851 +211346,48322,Johnny England,1160599688 +211346,48322,Johnny Knoxville,1160599688 +211346,48322,Ryan Dunn,1160599688 +211346,48322,Steve-O,1160599688 +211346,48322,Wee Man,1160599688 +211346,48412,Ashton Kutcher,1160599523 +211346,48412,guns,1161648802 +211346,48412,Kevin Fagner,1160599523 +211346,48414,Ashton Kutcher,1171665320 +211346,48416,Billy Bob Thornton,1160599511 +211346,48416,Jon Heder,1160599511 +211346,48416,Michael Clarke Duncan,1160599512 +211346,48416,scholarship,1161649169 +211346,48520,Andy Dick,1160599429 +211346,48520,Dane Cook,1160599410 +211346,48520,Empire State Building,1161649552 +211346,48520,Jessica Simpson,1160599429 +211346,48593,Mandy Patinkin,1161649905 +211346,48593,Robin Williams,1161209704 +211346,48780,Christian Bale,1161563660 +211346,48780,Hugh Jackman,1161563660 +211346,48780,Michael Caine,1161563660 +211346,48780,PG-13,1161647755 +211346,48780,Scarlet Johannson,1161563660 +211346,48883,George Bush,1171665249 +211346,49013,satire,1171941463 +211346,49274,Robin Williams,1165369952 +211346,49278,Denzel Washington,1165369778 +211346,49280,Ashton Kutcher,1165369786 +211346,49396,Jack Black,1165369727 +211346,49524,whimsical,1171940980 +211346,49526,Kal Penn,1171665204 +211346,49530,Leonardo DiCaprio,1166809052 +211346,49651,Sylvester Stallone,1166809039 +211346,50158,fraternity,1171665143 +211346,50442,Bruce Willis,1171665080 +211346,50796,black,1171940857 +211346,51077,excellent,1171939669 +211346,51086,Jim Carrey,1173554838 +211346,52281,nothing better than this,1181073446 +211346,52644,classic horror brought to life,1181073409 +211346,52712,interesting,1181073420 +211346,52722,horrible,1181073400 +211346,52973,absolutely hilarious,1181073370 +211346,53000,not as good as the first,1181073391 +211346,53125,Johnny Depp,1181073349 +211346,53468,Canadian,1181073344 +211346,54995,zombies,1215468805 +211346,56587,jack nicholson,1215492660 +211346,60069,earth,1215492461 +211346,60072,bullets,1215492453 +211366,608,disturbing in a bad way,1243720697 +211366,608,not funny,1243720697 +211366,608,real story,1243720697 +211366,608,slow moving,1243720697 +211366,1216,best music ever,1221937946 +211366,1271,feminist,1273353843 +211366,1271,self assertion,1273353806 +211366,1271,self discovery,1273353796 +211366,1271,self worth,1273353773 +211366,3896,bad plot,1266431189 +211366,3896,endless ammo,1266431211 +211366,3896,pointless,1266431167 +211366,3896,predictable,1266431199 +211366,3896,silly,1266431172 +211366,5945,flat ending,1286311375 +211366,5945,hard to empathise,1286311446 +211366,5945,Jack Nicholson,1286311337 +211366,5945,no point,1286311384 +211366,5945,Nudity (Topless),1286311353 +211366,8860,tense,1286311279 +211366,48516,disjointed plotline,1329601947 +211366,48516,Martin Scorsese,1329601998 +211366,48516,strange ending,1329601978 +211366,51080,slow,1257626037 +211366,53138,bad science,1276010418 +211366,53138,silly mistakes,1276010418 +211366,53138,unlikely plot turns,1276010436 +211366,61323,brad pitt,1267908353 +211366,61323,Coen Bros,1267908394 +211366,61323,funny,1267908312 +211366,61323,greed,1267908444 +211366,61323,misleading name,1267908304 +211366,61323,stupidity,1267908411 +211366,61323,weird,1267908290 +211366,63082,maiming,1259467174 +211366,65927,pointless,1247179248 +211366,65927,violent disturbing,1247179210 +211366,68358,bad camera work,1248180946 +211366,68548,kill it and it comes back anyway,1298173193 +211366,70599,good rendition of book,1270373218 +211366,70599,scifi,1270373234 +211366,71318,good moral to the story,1257626117 +211366,71318,humans as the evil side,1257626153 +211366,71318,too simplistic,1257626176 +211366,71318,very nice animation,1257626191 +211366,71530,Bruce Willis,1270373343 +211366,71530,moral dillema,1270373314 +211366,71530,Sci-Fi,1270373334 +211366,72593,bad acting,1270670475 +211366,72593,bad science,1270670491 +211366,72593,bad script,1270670418 +211366,72593,boring,1270670442 +211366,72593,no tension,1270670468 +211366,72593,no thrill,1270670458 +211366,72593,silly sentences,1270670437 +211366,72998,Humans as the bad guy,1265489738 +211366,76093,adventure,1291261148 +211366,76093,cat like behavior,1291261202 +211366,76093,dragons,1291261181 +211366,76093,Excellent Animation,1291261137 +211366,76093,friendship,1291261168 +211366,76093,I wanted to hug this movie,1291261151 +211366,77667,exagerated stupidity,1286776671 +211366,78469,bad science,1277606395 +211366,78469,people actually get hurt from bullets,1277606369 +211366,78469,unlimited bullets,1277606403 +211366,79132,amazing execution,1281976049 +211366,79132,interesting story,1281976075 +211366,79132,unexpected,1281976140 +211366,79293,bad ending,1296942355 +211366,79293,bad physics,1296942343 +211366,79293,interesting action,1296942407 +211366,79293,narrow escapes,1296942425 +211366,79293,predictable,1296942328 +211366,80398,Jean Reno,1291261088 +211366,81562,graphic images,1299688511 +211366,81562,nature,1299688526 +211366,81562,wilderness,1299688530 +211366,87306,Elle Fanning,1322947057 +211366,87306,sci-fi,1322946982 +211366,87306,silly errors,1322946987 +211366,88163,emma stone,1327181587 +211366,88163,plot twist,1327181411 +211366,88163,predictable,1327181392 +211366,89190,bad science,1325971896 +211366,89190,Rachel Nichols,1325971917 +211366,89190,too much blood,1325971876 +211366,89470,bad science,1325376914 +211366,89470,disappointing,1325376916 +211366,89470,not much of a story,1325376928 +211366,89492,slow,1330289925 +211366,89492,unlikely ending,1330289945 +211366,90405,cops = corrupt,1328993993 +211366,90405,rich = corrupt,1328993974 +211366,90439,starts intense bug ends suddenly and with no oomph,1322342869 +211366,90439,strange ending,1322342824 +211366,90751,Al Pacino,1324441646 +211366,90751,boring,1324441627 +211366,90751,pointless,1324441605 +211366,90751,senseless,1324441599 +211366,90751,this is not!,1324441669 +211366,90751,thriller,1324441669 +211386,593,based on a book,1448861814 +211386,593,crime,1448861853 +211386,593,excellent script,1448861804 +211386,593,Oscar (Best Picture),1448861786 +211386,593,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1448861821 +211386,593,phychology,1448861832 +211424,110,Mel Gibson,1151579368 +211424,145,Will Smith,1151687485 +211424,153,comic book,1151687696 +211424,165,Bruce Willis,1151686632 +211424,344,Jim Carrey,1151687346 +211424,370,Comedy,1151685440 +211424,593,cannibalism,1151688551 +211424,780,action,1151687741 +211424,786,Arnold,1151687731 +211424,1380,classic,1151685380 +211424,1552,Nicolas Cage,1151579343 +211424,1573,Nicolas Cage,1151686651 +211424,1608,president,1151687372 +211424,1721,drama,1151687831 +211424,1722,james bond,1151687811 +211424,1917,Bruce Willis,1151686971 +211424,1918,action,1151687084 +211424,2002,70mm,1151687017 +211424,2028,Steven Spielberg,1151686755 +211424,2324,Holocaust,1151688534 +211424,2329,racism,1151685474 +211424,2421,Can't remember,1151687285 +211424,2571,virtual reality,1151686786 +211424,2722,hilarious,1151687462 +211424,2762,Bruce Willis,1151688485 +211424,3082,007,1151687624 +211424,3257,romance,1151687168 +211424,3623,Great Actions,1151687032 +211424,3639,007,1151688338 +211424,3948,Ben Stiller,1151688315 +211424,3948,Robert De Niro,1151688312 +211424,4084,Can't remember,1151687315 +211424,4085,Eddie Murphy,1151688737 +211424,4262,violence,1151686826 +211424,4310,World War II,1151686984 +211424,4369,no desire to see this,1151687230 +211424,5459,crappy sequel,1151687112 +211424,5872,Bond,1151687752 +211424,5952,fantasy,1151686764 +211424,6016,drugs,1151686953 +211424,6383,Cars,1151687139 +211424,7004,comedy,1151687062 +211424,7016,father son relationship,1151687903 +211424,7017,snipes,1151687091 +211448,1721,Oscar (Best Picture),1297621052 +211448,81834,based on a book,1297620859 +211448,81834,magic,1297620844 +211493,180,jason lee,1305043784 +211493,180,Kevin Smith,1305043770 +211493,180,view askew,1305043790 +211493,968,zombies,1305043818 +211493,1073,Gene Wilder,1305043733 +211493,51255,Nick Frost,1305043711 +211493,51255,Simon Pegg,1305043688 +211510,1232,based on a book,1283719110 +211510,1232,existentialism,1283719113 +211510,1232,gloomy,1283719116 +211510,1232,imdb top 250,1283719118 +211510,1232,long,1283719125 +211510,1232,slow,1283719155 +211510,1348,atmospheric,1283719588 +211510,1464,atmospheric,1283719457 +211510,1464,David Lynch,1283719454 +211510,1464,nonlinear,1283719477 +211510,1464,Nudity (Topless - Notable),1283719452 +211510,1464,Nudity (Topless),1283719448 +211510,1464,post-modern,1283719473 +211510,1464,strange,1283719438 +211510,1464,Surreal,1283719437 +211510,1464,very clever,1283719439 +211510,1464,Very interesting,1283719444 +211510,1913,Australia,1283719216 +211510,1913,author:Joan Lindsay,1283719209 +211510,1913,dreamlike,1283719184 +211510,1913,eerie,1283719185 +211510,1913,ominous,1283719226 +211510,1913,Peter Weir,1283719189 +211510,1913,vhs,1283719212 +211510,1921,directorial debut,1283719279 +211510,1921,great soundtrack,1283719265 +211510,1921,hallucinatory,1283719241 +211510,1921,insanity,1283719272 +211510,1921,low budget,1283719269 +211510,1921,mental illness,1283719243 +211510,1921,mindfuck,1283719289 +211510,1921,psychology,1283719249 +211510,1921,religion,1283719296 +211510,1921,stylized,1283719275 +211510,3476,hallucination,1283719385 +211510,3476,mental illness,1283719401 +211510,3476,Nudity (Topless),1283719405 +211510,3476,surreal,1283719386 +211510,3476,Tim Robbins,1283719411 +211510,3476,Vietnam War,1283719386 +211510,4017,artist mind,1283787051 +211510,4437,atmospheric,1284670806 +211510,4437,dreamlike,1284670804 +211510,4437,eerie,1284670811 +211510,4437,hallucinatory,1284670830 +211510,4437,WITCHCRAFT,1284670815 +211510,4479,jazz,1293461660 +211510,4848,Atmospheric,1283719328 +211510,4848,dark,1283719330 +211510,4848,David Lynch,1283719322 +211510,4848,drama,1283719355 +211510,4848,dreamlike,1283719327 +211510,4848,Erotic,1283719366 +211510,4848,hallucinatory,1283719337 +211510,4848,Nudity (Full Frontal - Notable),1283719346 +211510,4848,Nudity (Full Frontal),1283719341 +211510,4848,surreal,1283719349 +211510,5909,disturbing,1284394629 +211510,5909,Takashi Miike,1284394620 +211510,5992,depression,1283787224 +211510,5992,drama,1283787243 +211510,5992,intellectual,1283787213 +211510,5992,sad,1283787236 +211510,6870,Dark,1283719731 +211510,6870,Drama,1283719677 +211510,6870,twist ending,1283719713 +211510,7235,confrontational,1284394651 +211510,7235,Takashi Miike,1284394641 +211510,7235,tense,1284394654 +211510,7485,affectionate,1284842805 +211510,7485,humorous,1284842797 +211510,26122,atmospheric,1284670569 +211510,26122,disturbing,1284670567 +211510,26122,eerie,1284670577 +211510,26122,ominous,1284670584 +211510,26122,samurai,1284670595 +211510,27592,absurdism,1284394684 +211510,27592,menacing,1284394680 +211510,27773,claustrophobic,1283719660 +211510,27773,depressing,1283719626 +211510,27773,hallucinatory,1283719648 +211510,27773,incest,1283719622 +211510,27773,twist ending,1283719615 +211510,27773,vengeance,1283719619 +211510,27773,violent,1283719633 +211510,48043,artistic,1283718976 +211510,48043,atmospheric,1283719036 +211510,48043,dreamlike,1283718960 +211510,48043,fountain of youth,1283719041 +211510,48043,hallucinatory,1283719032 +211510,48043,history,1283719071 +211510,48043,immortality,1283719063 +211510,48043,love,1283718973 +211510,48043,mindfuck,1283719019 +211510,48043,philosophical,1283718965 +211510,48043,spain,1283719018 +211510,48043,thought-provoking,1283718951 +211510,48043,time travel,1283719024 +211510,48043,visually appealing,1283718998 +211510,52885,animation,1283719554 +211510,52885,anime,1283719556 +211510,52885,dreamlike,1283719513 +211510,52885,psychedellic,1283719511 +211510,52885,story,1283719538 +211510,55444,music,1293461683 +211510,55444,rock and roll,1293461678 +211510,69134,atmospheric,1285696686 +211510,69134,based on a book,1285696692 +211510,69134,beautiful scenery,1285696684 +211510,69134,Strange,1285696679 +211510,69134,tension,1285696679 +211510,73321,Denzel Washington,1292284016 +211510,73321,post-apocalyptic,1292284028 +211510,73321,Stylistic,1292284022 +211510,73321,thought-provoking,1292284020 +211510,78836,colours,1296771351 +211510,78836,Mind Games,1296771356 +211510,79132,alternate reality,1292801231 +211510,79132,dreamlike,1292801233 +211510,79132,dreams,1292801246 +211510,79132,mindfuck,1292801257 +211510,79132,surreal,1292801243 +211510,79132,thought-provoking,1292801253 +211524,3677,environment,1277577288 +211534,733,Sean Connery,1452672018 +211534,1552,Nicolas Cage,1452671973 +211534,1894,Harrison Ford,1452672134 +211548,318,swearing,1201402207 +211548,56152,magic realism,1202004856 +211566,608,dark comedy,1216553194 +211566,1256,Marx Brothers,1216553143 +211566,4973,romance,1216552946 +211571,260,Star Wars,1444393741 +211579,260,fantastic,1431535679 +211579,260,special effects,1431535687 +211579,4718,awesome,1431536588 +211579,4718,comedy,1431536591 +211579,92259,awesome,1431536502 +211579,92259,based in real facts,1431779554 +211579,92259,emotional,1431779554 +211579,92259,funny,1431536489 +211579,92259,very funny,1431779554 +211579,98809,3d version,1434668563 +211579,98809,amazing,1434668563 +211579,98809,amazing photography,1434668563 +211579,116797,awesome,1432499615 +211579,116797,genius,1432499615 +211579,116797,informatic,1432499615 +211594,52,Woody Allen,1331908282 +211594,849,cheesy bad,1331908417 +211594,849,Kurt Russell,1331908314 +211594,849,snake plissken,1331908417 +211594,965,Alfred Hitchcock,1331908665 +211594,1235,quirky,1331908216 +211594,1663,Bill Murray,1331908300 +211594,1663,comedy,1331908306 +211594,1994,paranormal,1331908291 +211594,2140,dark,1331908269 +211594,2140,fantasy,1331908266 +211594,3072,Oscar (Best Supporting Actress),1331908211 +211594,3072,Romantic Comedy,1331908239 +211594,3255,Rosie O'Donnell,1331908345 +211594,4361,Oscar (Best Supporting Actress),1331908251 +211594,5508,Joy Division,1331908602 +211594,6502,post-apocalyptic,1331908555 +211594,6502,sci-fi,1331908559 +211594,6502,zombies,1331908563 +211594,53000,post-apocalyptic,1331908574 +211594,53000,zombies,1331908572 +211632,1732,Coen Brothers,1172125284 +211632,44555,Germany,1172125205 +211681,480,Jeff Goldblum,1426247780 +211681,480,Sam Neill,1426247790 +211681,480,Steven Spielberg,1426247797 +211681,1027,Alan Rickman,1452083894 +211681,1027,crusades,1452083902 +211681,1027,Robin Hood,1452083895 +211681,1188,Baz Luhrman,1450699464 +211681,1917,humorous,1452777216 +211681,1917,Owen Wilson,1452777205 +211681,2394,religion,1428698593 +211681,2762,Bruce Willis,1428406458 +211681,2762,m. night shyamalan,1428406456 +211681,4563,Australia,1438000084 +211681,7149,Jack Nicholson,1431090696 +211681,44041,based on a book,1452859295 +211681,56757,Broadway,1439379802 +211681,56757,Musical,1439379696 +211681,56757,Sacha Baron Cohen,1439379809 +211681,56757,violent,1439379792 +211681,106441,adapted from:book,1440251508 +211681,106441,narration,1440251501 +211681,106441,World War II,1440251504 +211681,109487,Anne Hathaway,1428406333 +211681,109487,Matthew McConaughey,1428406334 +211681,109487,philosophical issues,1428406349 +211681,109487,physics,1428406339 +211681,111759,based on a novel,1423223475 +211681,111759,Reluctant Hero,1423223487 +211681,111759,time travel,1423223466 +211681,112183,Edward Norton,1435373468 +211681,112183,satire,1435373472 +211681,112735,David Gulpilil,1418865607 +211681,112759,australia,1438000151 +211681,112759,Birdlife,1428406401 +211681,112759,birds,1438000151 +211681,112759,prisoners,1438000151 +211681,113345,sci-fi,1437565529 +211681,113378,based on a book,1422958494 +211681,113378,Jeff Bridges,1422958487 +211681,113378,Meryl Streep,1422958491 +211681,114250,based on a play,1430653604 +211681,114662,Bradley Cooper,1432906765 +211681,114795,dracula,1426334059 +211681,115170,Robert Downey Jr.,1433767980 +211681,115231,Bill Murray,1436267750 +211681,116161,Academy Award Nominee,1441539571 +211681,116797,Benedict Cumberbatch,1433425616 +211681,116797,cryptography,1433425607 +211681,116797,history,1433425612 +211681,116887,Ridley Scott,1428698544 +211681,117176,physics,1434200505 +211681,117176,science,1434200508 +211681,117529,cliche,1446812559 +211681,117529,Irrfan Khan,1446812534 +211681,117529,science,1446812529 +211681,117871,ANZAC,1422271712 +211681,117871,Russell Crowe,1422271723 +211681,117887,family,1429502168 +211681,117895,action,1451685035 +211681,117895,post-apocalyptic,1451685023 +211681,118696,Peter Jackson,1423359390 +211681,118696,Tolkien,1423359389 +211681,118700,Academy Award Nominee,1435408569 +211681,118700,history,1435408572 +211681,118760,refugees,1439298561 +211681,118997,musical,1431001828 +211681,119145,british comedy,1436530471 +211681,119145,colin firth,1436530458 +211681,119145,Michael Caine,1436530465 +211681,119145,spy,1436530473 +211681,121485,literature,1432468410 +211681,122882,chase,1444998308 +211681,122882,dystopian,1444998304 +211681,122902,Marvel,1451904992 +211681,125661,Australia,1436267769 +211681,126599,comedy,1424765899 +211681,126599,Couple Relations,1424765886 +211681,126599,multi story narrative,1424765902 +211681,130450,London,1452510728 +211681,132424,based on a book,1446107683 +211681,142117,Documentary,1444736095 +211682,1175,cannibalism,1452972576 +211713,33615,animals,1440774565 +211713,59784,animals,1440774469 +211713,59784,funny,1440774475 +211713,67408,funny,1440774529 +211770,260,fantasy,1430756745 +211770,260,scifi cult,1430756734 +211783,1,computer animation,1270250356 +211783,1,Pixar,1270250347 +211783,47,serial killer,1276811077 +211783,50,twist ending,1276809947 +211783,110,war,1270250204 +211783,111,Robert De Niro,1270259297 +211783,111,vigilantism,1270259299 +211783,165,Bruce Willis,1276811473 +211783,260,sci-fi,1270250078 +211783,260,space,1270250079 +211783,288,mindfuck,1269935094 +211783,288,psychedelic,1269935086 +211783,288,Robert Downey Jr,1269935078 +211783,288,stylized violence,1269935072 +211783,288,Woody Harrelson,1269935081 +211783,293,Jean Reno,1269318962 +211783,296,dark comedy,1270249462 +211783,296,multiple storylines,1270249465 +211783,296,Quentin Tarantino,1270249459 +211783,318,melodrama,1270250013 +211783,318,Morgan Freeman,1270250018 +211783,326,poignant,1269316277 +211783,348,Woody Allen,1269936191 +211783,356,Tom Hanks,1270249717 +211783,380,spies,1270254635 +211783,527,Holocaust,1270254665 +211783,527,liam neeson,1270254685 +211783,527,melodrama,1270254670 +211783,527,World War II,1270254676 +211783,546,Dennis Hopper,1270259628 +211783,575,charming,1269316050 +211783,575,nostalgic,1269316056 +211783,590,indulgent,1269315991 +211783,590,Kevin Costner,1269315983 +211783,590,revisionist western,1269316009 +211783,593,Anthony Hopkins,1270249831 +211783,593,serial killer,1270249843 +211783,599,Ernest Borgnine,1269313025 +211783,648,Tom Cruise,1276811059 +211783,780,alien invasion,1270254591 +211783,780,apocalypse,1270254597 +211783,780,sci-fi,1270254589 +211783,880,Marlon Brando,1269316372 +211783,940,Errol Flynn,1270253341 +211783,940,swashbuckler,1270253346 +211783,1049,hollywoodization,1269315469 +211783,1090,war,1270259215 +211783,1090,Willem Dafoe,1270259210 +211783,1103,coming of age,1270251583 +211783,1103,James Dean,1270251575 +211783,1196,great soundtrack,1270253605 +211783,1196,sci-fi,1270253600 +211783,1196,space,1270253601 +211783,1198,Harrison Ford,1276809997 +211783,1210,George Lucas,1270254619 +211783,1210,sci-fi,1270254613 +211783,1210,space,1270254611 +211783,1220,John Belushi,1269936516 +211783,1220,John Landis,1269936539 +211783,1220,music,1269936503 +211783,1220,rhythm & blues,1269936520 +211783,1237,existentialism,1270254298 +211783,1237,Ingmar Bergman,1270254299 +211783,1243,quirky,1269935770 +211783,1243,Shakespeare,1269318879 +211783,1243,Tim Roth,1269935763 +211783,1247,coming of age,1269313740 +211783,1247,cynical,1269313742 +211783,1247,satirical,1269313740 +211783,1255,campy,1270255770 +211783,1255,splatter,1270255765 +211783,1289,no narrative,1276647428 +211783,1682,dystopia,1269247470 +211783,1682,Jim Carrey,1269247472 +211783,1682,melodrama,1269247459 +211783,1682,social commentary,1269247474 +211783,1682,TSPDT Top 1000,1270172324 +211783,1934,James Stewart,1269247492 +211783,1934,TSPDT Top 1000,1270172093 +211783,1944,Burt Lancaster,1269935933 +211783,1944,Frank Sinatra,1269935876 +211783,1944,World War II,1269935950 +211783,2058,Kevin Spacey,1269316416 +211783,2058,Psychological,1269316424 +211783,2301,silly,1270251983 +211783,2324,melodrama,1269314432 +211783,2329,Edward Norton,1270171918 +211783,2329,racism,1270171921 +211783,2357,TSPDT Top 1000,1270546586 +211783,2357,UNLIKELY FRIENDSHIPS,1270546571 +211783,2571,cyberpunk,1270260923 +211783,2571,dystopia,1270260921 +211783,2571,post apocalyptic,1270260926 +211783,2585,coming of age,1270251890 +211783,2694,parenthood,1270251068 +211783,2723,superhero,1269934988 +211783,2723,Tom Waits,1269934981 +211783,2723,William H. Macy,1269934977 +211783,2750,Woody Allen,1285797838 +211783,2858,midlife crisis,1270260829 +211783,2858,social commentary,1270260832 +211783,2924,kung fu,1270259540 +211783,2927,bittersweet,1269315224 +211783,2927,understated,1269315228 +211783,2951,Clint Eastwood,1269314631 +211783,2951,gritty,1269314638 +211783,2951,Sergio Leone,1269314633 +211783,2951,spaghetti western,1269314635 +211783,2951,standoff,1269314639 +211783,2966,melodrama,1270172812 +211783,2966,Richard Farnsworth,1270172792 +211783,2966,TSPDT Top 1000,1270172797 +211783,2966,understated,1270172818 +211783,2973,realistic,1269319404 +211783,2973,Woody Allen,1269319400 +211783,3092,Toshiro Mifune,1269316089 +211783,3201,Jack Nicholson,1274137626 +211783,3275,Mafia,1270259784 +211783,3275,vigilantism,1270259786 +211783,3360,Dennis Hopper,1269316454 +211783,3360,inspirational,1269316459 +211783,3360,sports,1269316464 +211783,3435,film noir,1270254483 +211783,3435,stylized,1270254480 +211783,3481,hipster,1270259895 +211783,3481,John Cusack,1270259878 +211783,3536,Edward Norton,1269934945 +211783,3629,Charlie Chaplin,1269315148 +211783,3676,cryptic,1270254261 +211783,3676,dreamlike,1270254256 +211783,3676,surreal,1270254239 +211783,3727,Bill Paxton,1270284830 +211783,3727,menacing,1270284841 +211783,3727,TSPDT Top 1000,1270284905 +211783,3727,vampires,1270284833 +211783,3865,Bernie Mac,1270250598 +211783,3897,coming of age,1270255481 +211783,4220,sports,1270251104 +211783,4262,Al Pacino,1270253408 +211783,4262,mafia,1270253410 +211783,4262,remake,1270253416 +211783,4535,Kirk Douglas,1270251727 +211783,4974,spoof,1269315123 +211783,5025,Jack Black,1270251358 +211783,5267,inspiring,1269315844 +211783,5267,sports,1269315846 +211783,5283,Ryan Reynolds,1270251453 +211783,5283,Tara Reid,1270251448 +211783,5339,midlife crisis,1269247401 +211783,5339,Sydney Pollack,1269247404 +211783,5339,TSPDT Top 1000,1270172676 +211783,5463,bad plot,1270259401 +211783,5463,dystopia,1270259385 +211783,5463,Matthew McConaughey,1270259402 +211783,5463,post-apocalyptic,1270259384 +211783,5475,tense,1276566057 +211783,5494,italian neorealism,1269315319 +211783,5649,Christopher Lee,1275946257 +211783,5679,creepy,1270250901 +211783,5952,high fantasy,1270260895 +211783,6122,Richard Pryor,1270259566 +211783,6122,stand-up comedy,1270259568 +211783,6281,bad acting,1269314591 +211783,6281,Colin Farrell,1269314584 +211783,6281,unrealistic,1269314606 +211783,6377,animation,1270260864 +211783,6377,Pixar,1270260862 +211783,6409,James Stewart,1286706845 +211783,6539,Johnny Depp,1270260798 +211783,6539,swashbuckler,1270260800 +211783,6579,communism,1270171556 +211783,6579,James Cagney,1270171544 +211783,6579,TSPDT Top 1000,1270172973 +211783,6620,Paul Giamatti,1270259335 +211783,6643,understated,1269315642 +211783,6643,Yasujiro Ozu,1269315644 +211783,6669,Akira Kurosawa,1269938195 +211783,6669,cathartic,1269938199 +211783,6669,philosophical,1269938197 +211783,6669,poignant,1269938193 +211783,6936,Christmas,1270253246 +211783,6936,silly,1270253241 +211783,6936,Will Ferrell,1270253238 +211783,6936,Zooey Deschanel,1270253235 +211783,7024,confrontational,1270253569 +211783,7024,sadism,1270253561 +211783,7218,Anthony Quinn,1270253015 +211783,7218,Henry Fonda,1270253008 +211783,7218,morality tale,1270253011 +211783,7234,Anthony Quinn,1269314846 +211783,7234,italian neorealism,1269314946 +211783,7234,melancholy,1269314857 +211783,7325,Vince Vaughn,1269934821 +211783,7325,Will Ferrell,1269934818 +211783,7361,bittersweet,1270172343 +211783,7361,Kirsten Dunst,1270172400 +211783,7361,quirky,1270172340 +211783,7361,surreal,1270172338 +211783,7387,zombies,1270259839 +211783,7448,bad script,1269934788 +211783,7448,Ben Stiller,1269934777 +211783,7702,Ingrid Bergman,1270172869 +211783,7702,TSPDT Top 1000,1270172875 +211783,7766,Akira Kurosawa,1269315591 +211783,7766,Toshiro Mifune,1269315595 +211783,7802,tense,1269314066 +211783,7817,distopian,1280655690 +211783,7897,good music,1271487081 +211783,7897,Jason Robards,1271487063 +211783,7924,Akira Kurosawa,1277927274 +211783,7924,Toshiro Mifune,1277927276 +211783,7925,Akira Kurosawa,1269315503 +211783,7925,Toshiro Mifune,1269315505 +211783,7926,Akira Kurosawa,1270259953 +211783,7926,film noir,1270259998 +211783,7926,Toshirô Mifune,1270259960 +211783,8188,Kenji Mizoguchi,1269935699 +211783,8188,poignant,1269935703 +211783,8188,stylized,1269935701 +211783,8199,atmospheric,1269315266 +211783,8199,Kenji Mizoguchi,1269315261 +211783,8199,surreal,1269315271 +211783,8362,Joan Cusack,1269316517 +211783,8362,Kate Hudson,1269316513 +211783,8584,Gene Tierney,1278623743 +211783,8784,coming of age,1269319159 +211783,8784,Great Soundtrack,1269319158 +211783,8784,quirky,1269319162 +211783,8784,Zach Braff,1269319152 +211783,8807,stupid,1270251500 +211783,8917,satire,1270259666 +211783,8957,gore,1270260296 +211783,8957,serial killer,1270260299 +211783,8957,surprise ending,1270260292 +211783,8957,vigilantism,1270260306 +211783,25755,Lon Chaney,1278099756 +211783,25762,Lon Chaney,1277419550 +211783,25771,mindfuck,1270254123 +211783,25771,surreal,1270254113 +211783,25788,mafia,1270253440 +211783,25825,Spencer Tracy,1275521085 +211783,25825,vigilantism,1275521094 +211783,25855,gangsters,1274490278 +211783,25855,James Cagney,1274490294 +211783,25938,revisionist western,1285578262 +211783,25942,propaganda film,1269315392 +211783,25942,scenic,1269315405 +211783,25952,Kirk Douglas,1275521182 +211783,26002,film noir,1269247338 +211783,26002,TSPDT Top 1000,1270172716 +211783,26049,Kon Ichikawa,1270171869 +211783,26049,TSPDT Top 1000,1270171847 +211783,26049,World War II,1270171877 +211783,26152,Adam West,1269314736 +211783,26152,camp,1269314729 +211783,26152,exploding shark,1269314740 +211783,26152,superhero,1269314756 +211783,26313,George Segal,1271060790 +211783,26840,gangster,1285546882 +211783,27592,Chan-wook Park,1279176343 +211783,27592,vengeance,1279176341 +211783,27773,Chan-wook Park,1279176378 +211783,27773,vengeance,1279176382 +211783,27788,confusing,1269934457 +211783,27788,mindfuck,1269934469 +211783,27846,biased documentary,1269313360 +211783,31221,bad acting,1269314241 +211783,31221,Jennifer Garner,1269314237 +211783,31221,superhero,1269314258 +211783,32166,Kirk Douglas,1276807482 +211783,32166,melodrama,1276807485 +211783,33004,Alan Rickman,1273191957 +211783,33004,sci-fi,1273191943 +211783,33004,Zooey Deschanel,1273191945 +211783,33615,Dreamworks,1269934663 +211783,33646,sports,1270251148 +211783,37741,biopic,1277759192 +211783,37741,Philip Seymour Hoffman,1277759189 +211783,38159,thought-provoking,1272930619 +211783,39446,dissapointing,1270260331 +211783,40755,Barbara Stanwyck,1271046701 +211783,40755,confusing plot,1271046723 +211783,40755,musical,1271046710 +211783,43497,mid-life crisis,1273714187 +211783,43652,Brian Posehn,1270251180 +211783,43652,Zach Galifianakis,1270251181 +211783,45707,Lon Chaney,1277927309 +211783,47518,Lewis Black,1269313975 +211783,48082,Gael García Bernal,1270251263 +211783,48082,Michel Gondry,1270251265 +211783,48082,quirky,1270251268 +211783,49394,satire,1275521700 +211783,50068,Clint Eastwood,1270253170 +211783,50068,Ken Watanabe,1270253167 +211783,51412,crap,1270255828 +211783,51412,jessica biel,1270255821 +211783,51412,Nicolas Cage,1270255819 +211783,51412,plot holes,1270255816 +211783,51662,Frank Miller,1270259749 +211783,51662,Graphic Novel,1270259750 +211783,51662,stylized,1270259740 +211783,51662,war,1270259744 +211783,51709,realistic,1269312493 +211783,52460,cliched,1270251684 +211783,53123,good music,1270262335 +211783,53123,realistic,1270262460 +211783,54004,Adam Sandler,1269314336 +211783,54004,Kevin James,1269314340 +211783,54004,social commentary,1269314351 +211783,54004,Steve Buscemi,1269314297 +211783,54796,setting:Paris,1270254711 +211783,55282,bad acting,1269312540 +211783,55282,Josh Hartnett,1269312553 +211783,55282,seen it before,1269312533 +211783,55814,Mathieu Amalric,1294347221 +211783,56715,afterlife,1270260059 +211783,56715,alternate reality,1270260056 +211783,56715,suicide,1270260064 +211783,56715,Tom Waits,1270260027 +211783,57478,Lon Chaney,1277927332 +211783,58559,dark,1270261207 +211783,58559,Heath Ledger,1270261188 +211783,58559,vigilantism,1270261199 +211783,58622,Adam Carolla,1270260208 +211783,58622,sports,1270260194 +211783,59935,campy,1270255555 +211783,60069,Animation,1270253046 +211783,60069,dystopia,1270253041 +211783,60069,pixar,1270253044 +211783,60069,Post apocalyptic,1270253043 +211783,60684,dystopia,1270259717 +211783,60684,sci-fi,1270259718 +211783,60684,stylized,1270259719 +211783,62081,Shia LaBeouf,1284966228 +211783,63131,Paul Rudd,1270259509 +211783,63131,Seann William Scott,1270259512 +211783,64575,Meryl Streep,1270251795 +211783,64575,Philip Seymour Hoffman,1270251782 +211783,64614,Clint Eastwood,1269315034 +211783,64614,culture clash,1269315050 +211783,64614,racism,1269315037 +211783,66097,boring,1269313534 +211783,66097,Dakota Fanning,1269313532 +211783,66097,dystopia,1269313574 +211783,66097,escapism,1269313590 +211783,66097,stop motion,1269313537 +211783,66371,beautiful scenery,1269312839 +211783,66371,emotional,1269312835 +211783,66371,life & death,1269312849 +211783,66371,melodrama,1269312879 +211783,66371,understated,1269312853 +211783,66509,Adam Sandler,1269314143 +211783,66509,long,1269314125 +211783,66509,Seth Rogen,1269314123 +211783,67087,Paul Rudd,1270255795 +211783,67087,Rashida Jones,1270255796 +211783,67223,sports,1269313475 +211783,67734,Jesse Eisenberg,1270251647 +211783,67734,Ryan Reynolds,1270251637 +211783,68157,black comedy,1269933788 +211783,68157,Christoph Waltz,1269933822 +211783,68157,Quentin Tarantino,1269933774 +211783,68157,tense,1269933794 +211783,68358,sci-fi,1269314547 +211783,68952,Justin Long,1269315004 +211783,68952,poor acting,1269314979 +211783,68952,poor dialogue,1269314981 +211783,68952,poorly written script,1269314984 +211783,68954,old age,1269314797 +211783,68954,Pixar,1269314778 +211783,68954,predictable,1269314782 +211783,69122,one liners,1269312619 +211783,69122,seen it before,1269312606 +211783,69122,stupid stereotypes,1269312588 +211783,69122,Zach Galifinakis,1269312628 +211783,69436,bad script,1269934119 +211783,69436,Christopher Mintz-Plasse,1269315554 +211783,69436,Michael Cera,1269315543 +211783,69481,cliche,1269312279 +211783,69784,offensive,1269314203 +211783,69784,satire,1269314197 +211783,69784,tasteless,1269314188 +211783,69974,serial killer,1269935121 +211783,69974,tense,1269935117 +211783,70286,social commentary,1269313164 +211783,70286,violence,1269313167 +211783,70659,gender role reversal,1270254536 +211783,70862,innovation,1269313640 +211783,70862,Jack White,1269313624 +211783,70862,Jimmy Page,1269313622 +211783,70862,music documentary,1269313632 +211783,70862,The Edge,1269313626 +211783,71057,dystopia,1269313438 +211783,71057,post-apocalyptic,1269313420 +211783,71057,predictable,1269313422 +211783,71057,visually appealing,1269313428 +211783,71135,post-apocalyptic,1269312334 +211783,71135,space,1269312338 +211783,71135,we've seen this before,1269312330 +211783,71211,Matt Damon,1269316118 +211783,71211,offbeat,1269316143 +211783,71211,Steven Soderbergh,1269316129 +211783,71264,Bill Hader,1286437468 +211783,71282,investigative journalism,1269313864 +211783,71379,bad acting,1269313091 +211783,71379,low budget,1269313075 +211783,71379,no payoff,1269313085 +211783,71379,not scary,1269313081 +211783,71379,unrealistic,1269313100 +211783,71535,Bill Murray,1269313254 +211783,71535,gore,1269313270 +211783,71535,Jesse Eisenberg is the new Michael Cera,1269313291 +211783,71535,violence,1269313278 +211783,71535,Woody Harrelson,1269313264 +211783,71693,TSPDT Top 1000,1270172927 +211783,71745,Coming of age,1270378354 +211783,71745,stylized,1270378350 +211783,72226,Bill Murray,1269313672 +211783,72226,stop motion,1269313676 +211783,72226,Wes Anderson,1269313678 +211783,72998,beautiful scenery,1275525523 +211783,72998,cliched plot,1275525518 +211783,72998,style over substance,1275525515 +211783,73017,Robert Downey Jr.,1269314016 +211783,73023,Colin Farrell,1289075077 +211783,73023,Jeff Bridges,1289075088 +211783,73023,unlikely romance,1289075067 +211783,73266,Michael Cera,1292310619 +211783,74438,Jet Li,1269316231 +211783,74458,Ben Kingsley,1276808987 +211783,74458,Leonardo DiCaprio,1276808984 +211783,74458,Predictable,1276808982 +211783,74791,stop motion,1280655720 +211783,76251,11 year old explicit violence,1272413421 +211783,76251,Christopher Mintz-Plasse,1272413413 +211783,76251,Nicolas Cage,1272413409 +211783,76251,superhero,1272413410 +211783,77561,Gwyneth Paltrow,1274136416 +211783,77561,Mickey Rourke,1274136407 +211783,77561,Robert Downey Jr.,1274136409 +211783,77561,superhero,1274136414 +211783,80363,zombies,1284874854 +211789,260,sci-fi,1437504877 +211789,119145,spy,1437505089 +211795,260,"action, scifi",1440788506 +211795,260,cult classic,1440788522 +211797,1262,All time World War 2 Classic,1449185105 +211797,1291,Harrison Ford,1449185143 +211797,1291,Sean Connery was the best part,1449185150 +211797,147024,Rajshree Movies,1449185196 +211797,147024,Salman Khan,1449185167 +211797,147024,Salman Khan rocks again,1449185072 +211797,147024,Sonam Kapoor,1449185172 +211798,260,lasers,1441779223 +211798,260,wookies,1441779214 +211817,1020,family fun,1137253554 +211817,1020,funny,1137253554 +211817,2858,emotional,1137254688 +211817,2858,funny,1137254688 +211817,2858,thought-provoking,1137254688 +211817,3948,hilarious,1137254280 +211817,4041,emotional,1137254065 +211817,4041,made me cry,1137254065 +211817,4041,romantic,1137254065 +211817,4041,touching,1137254065 +211817,5415,chick-flick,1137254341 +211817,5415,emotional,1137254341 +211817,5415,funny,1137254341 +211817,5415,thought-provoking,1137254341 +211817,6218,chick-flick,1137254309 +211817,6218,funny,1137254309 +211817,6218,thought-provoking,1137254309 +211817,6218,touching,1137254309 +211817,6874,action,1137253698 +211817,6874,blood,1137253697 +211817,6874,funny,1137253698 +211817,6874,gory,1137253698 +211817,7154,chick flick,1137253632 +211817,7154,emotional,1137253632 +211817,7154,made me cry,1137253632 +211817,7154,predictable,1137253632 +211817,7154,sentimental,1137253632 +211817,7154,touching,1137253632 +211817,7361,beautiful,1137254251 +211817,7361,emotional,1137254251 +211817,7361,romantic,1137254251 +211817,7361,thought-provoking,1137254251 +211817,8644,action,1137254367 +211817,8644,funny,1137254367 +211817,8866,chick-flick,1137254508 +211817,8866,funny,1137254508 +211817,8866,romantic,1137254508 +211826,116797,computer science,1450407894 +211826,116797,Computers,1450407912 +211826,116797,cryptography,1450407878 +211826,116797,inspirational,1450407898 +211826,116797,mathematics,1450407882 +211840,141,Gay stereotypes,1287250183 +211840,431,Sean Penn,1287267164 +211840,1265,comedy,1241402240 +211840,1696,gay,1317492563 +211840,2193,Joanne Whalley,1281395756 +211840,2918,comedy,1241402371 +211840,3524,AFI 100 (Laughs),1241402548 +211840,3524,Funny as hell,1241402553 +211840,3671,AFI 100 (Laughs),1257658965 +211840,3671,parody,1257658976 +211840,3679,music documentary,1303483187 +211840,5669,anti-Bush,1287973657 +211840,5669,Bush bashing,1287973660 +211840,5669,Michael Moore,1287973655 +211840,5669,propaganda,1287973653 +211840,5812,gay,1271451065 +211840,5812,homophobia,1271451062 +211840,5971,Studio Ghibli,1303394039 +211840,6870,Sean Penn,1282089797 +211840,7361,comedy,1241402422 +211840,7361,cult film,1241402428 +211840,7361,quirky,1241402438 +211840,7361,surreal,1241402431 +211840,7371,Lars von Trier,1267138440 +211840,7419,black comedy,1241402291 +211840,7419,dark comedy,1241402294 +211840,7419,surreal,1241402299 +211840,8253,anime,1303394075 +211840,8253,Studio Ghibli,1303394072 +211840,8376,comedy,1218813839 +211840,8622,Michael Moore,1287973700 +211840,8874,comedy,1257658938 +211840,8874,hilarious,1257658942 +211840,8874,spoof,1257658956 +211840,26701,anime,1303394047 +211840,26776,anime,1303394061 +211840,26776,Studio Ghibli,1303394058 +211840,32554,anime,1303394027 +211840,32562,not a movie,1316999532 +211840,34162,comedy,1241402846 +211840,34162,Owen Wilson,1241402850 +211840,34162,Rachel McAdams,1241402860 +211840,34162,Vince Vaughn,1241402857 +211840,34162,Will Ferrell,1241402865 +211840,39869,Lars von Trier,1287784988 +211840,50151,anti-war,1287266870 +211840,53894,liberal propaganda,1287973602 +211840,53894,Michael Moore,1287973609 +211840,53894,propaganda,1287973604 +211840,55247,Sean Penn,1302717730 +211840,58047,Isla Fisher,1298778710 +211840,60040,bad cgi,1264119155 +211840,64497,Jennifer Connelly,1243876485 +211840,64497,liberal propaganda,1243876478 +211840,67695,Date Rape,1242251591 +211840,67695,rape scene,1287952558 +211840,67695,Walked out/didn't finish,1255741708 +211840,67997,Armando Iannucci,1264189849 +211840,67997,boring,1264189745 +211840,67997,politics,1264189740 +211840,68157,slow paced,1261629883 +211840,68157,too long,1261629886 +211840,69122,comedy,1259017686 +211840,69757,Zooey Deschanel,1262059161 +211840,70336,bad plot,1257658751 +211840,70336,infantile,1257658757 +211840,70336,silly plot,1257658769 +211840,71156,Kevin Spacey,1287778558 +211840,71450,Michael Moore,1266535614 +211840,71530,Bruce Willis,1265660536 +211840,72131,Michael Jackson,1266610317 +211840,72720,gay,1279512077 +211840,72720,Gay Lead Character,1279512072 +211840,72731,Susan Sarandon,1287248085 +211840,73015,Alec Baldwin,1287248158 +211840,73266,Justin Long,1281395819 +211840,74154,Danny DeVito,1282918561 +211840,74450,Anne Hathaway,1281919922 +211840,74545,Roman Polanski,1297979994 +211840,75985,another evil corporation,1300679587 +211840,75985,evil corporation,1300679987 +211840,77837,Susan Sarandon,1290208837 +211840,78893,acting,1289617166 +211840,78893,M. Night Shyamalan,1289617169 +211840,79132,mindfuck,1291089804 +211840,79132,Paris,1291089791 +211840,79132,surreal,1291089806 +211840,81229,CIA comedy,1289623417 +211840,81641,sean penn,1302789270 +211840,81932,Terrible fight scenes,1325560022 +211840,86293,russel brand,1310874647 +211840,86880,Johnny Depp,1322675001 +211840,86911,tries too hard,1325700596 +211840,86911,unlikable characters,1325700588 +211840,86911,Zach Galifianakis,1325700592 +211840,87520,audience intelligence underestimated,1322675029 +211840,87520,bad science,1322675026 +211840,87520,childish plot,1322675023 +211840,87520,Michael Bay,1322675019 +211840,88163,homophobic,1326234394 +211840,89087,lacks logic,1325561033 +211840,89087,plot,1325561036 +211840,89490,rape,1325104477 +211840,90717,Eddie Murphy,1323792672 +211840,91658,rape,1325104341 +211880,6414,cartoon,1436609572 +211880,6414,cats,1436609572 +211880,6414,musical,1436609572 +211906,3897,warm,1453308086 +211906,3897,zooey deschanel,1453308081 +211906,97921,cliche,1453307817 +211906,97921,great characters,1453307827 +211906,97921,romance,1453307810 +211906,115231,Bill Murray,1453307964 +211906,115231,Melissa McCarthy,1453307967 +211936,318,escape,1427370332 +211936,318,morgan freeman,1427370332 +211936,318,prison,1427370332 +211936,858,classic,1427369804 +211936,858,crime,1427369835 +211936,858,Mafia,1427369823 +211936,6016,brazil,1427370358 +211936,6016,crime,1427370354 +211936,6016,international classic,1427370373 +211936,6016,oscar nominee,1427370397 +211936,6016,slam,1427370349 +211936,127146,nirvana,1427370748 +211941,260,classic sci-fi,1445006134 +211941,260,scifi,1445006491 +211943,2761,animation,1373680099 +211943,2761,based on a book,1373680202 +211943,2761,cold war,1373680186 +211943,2761,redemption,1373680208 +211943,2761,robot,1373680192 +211943,3157,adoption,1388623831 +211943,3157,family,1388623807 +211943,3157,Michael J. Fox,1388623816 +211943,3157,talking animals,1388623841 +211943,3783,Clive Owen,1308404880 +211943,49284,Morgan Freeman,1245032332 +211943,49284,slow,1245032377 +211943,50685,Keri Russell,1297569788 +211943,50685,pregnancy,1297569773 +211943,50685,pro-life,1297569722 +211943,50685,setting:diner,1297569703 +211943,55805,nonlinear,1249700610 +211943,55805,Philip Seymour Hoffman,1249700597 +211943,56607,adapted from:book,1250306619 +211943,56607,Afghanistan,1250306373 +211943,56607,class issues,1250306396 +211943,56782,1920s,1306781467 +211943,56782,Daniel Day-Lewis,1306781317 +211943,56782,oil,1306781447 +211943,56782,Oscar Nominee: Director,1306781453 +211943,56782,visually appealing,1306781330 +211943,61160,No John Williams music,1303441680 +211943,63072,child actor,1312687099 +211943,63072,depressing,1312687034 +211943,63072,great acting,1312687080 +211943,63072,post-apocalyptic,1312687062 +211943,63072,survival,1312687067 +211943,63072,Viggo Mortensen,1312687070 +211943,65577,plucky hero,1328462590 +211943,68954,bittersweet,1376362803 +211943,68954,dreams,1376362827 +211943,68954,South America,1376362792 +211943,68954,talking animals,1376362794 +211943,71535,banjo,1313551214 +211943,71535,Bill Murray,1313550919 +211943,71535,campy,1313551161 +211943,71535,dark comedy,1313550926 +211943,71535,post-apocalyptic,1313550947 +211943,71535,Woody Harrelson,1313550922 +211943,76093,animation,1336783403 +211943,76093,predictable,1336783392 +211943,76093,vikings,1336783409 +211943,79091,anti-hero,1376362944 +211943,79091,heartwarming,1376362941 +211943,79091,mad scientist,1376362958 +211943,79132,alternate reality,1294022376 +211943,79132,ensemble cast,1294022354 +211943,79132,great soundtrack,1294022361 +211943,81591,creepy,1296788854 +211943,81591,dark,1296788865 +211943,81591,Darren Aronofsky,1296788836 +211943,81591,Natalie Portman,1296788811 +211943,82459,Coen Brothers,1293199116 +211943,82459,Jeff Bridges,1293199108 +211943,82461,Garrett Hedlund,1294022566 +211943,84954,Emily Blunt,1406083412 +211943,84954,love story,1406083406 +211943,84954,Matt Damon,1406083409 +211943,84954,original plot,1406083515 +211943,84954,Philip K. Dick,1406083397 +211943,91500,social commentary,1375921325 +211943,91500,survival,1375921305 +211943,91500,Woody Harrelson,1375921299 +211943,91529,Christopher Nolan,1343097828 +211943,94959,bittersweet,1423973937 +211943,94959,Edward Norton,1423973955 +211943,94959,funny,1423973959 +211943,94959,quirky,1423973934 +211943,94959,scouting,1423973946 +211964,1625,Mystery,1449405269 +211964,1625,paranoia,1449405286 +211964,1625,plot twist,1449405278 +211964,1625,surprise ending,1449405280 +211964,1625,suspense,1449405276 +211964,1625,twist ending,1449405265 +211964,1682,dark comedy,1450324845 +211964,1682,dystopia,1450324847 +211964,1682,Jim Carrey,1450324844 +211964,1682,mindfuck,1450324861 +211964,1682,original plot,1450324854 +211964,1682,philosophy,1450324851 +211964,1682,social commentary,1450324849 +211964,2232,flat characters,1449045220 +211964,4226,complicated,1449413663 +211964,4226,Mindfuck,1449413674 +211964,4226,nonlinear,1449413654 +211964,4226,psychological,1449413660 +211964,4226,psychology,1449413658 +211964,4226,twist ending,1449413656 +211964,4226,twists & turns,1449413679 +211964,6708,Nicolas Cage,1449063225 +211964,7254,Mystery,1448727456 +211964,7254,suspense,1448727452 +211964,7254,time travel,1448727453 +211964,7254,twists & turns,1448727448 +211964,51086,psychology,1450263928 +211964,59369,one man army,1450325458 +211964,59369,revenge,1450325426 +211964,61729,Ricky Gervais,1450324456 +211964,64969,feel-good,1450324472 +211964,64969,funny,1450324469 +211964,64969,Jim carrey,1450324466 +211964,71379,bad acting,1448619260 +211964,71379,not scary,1448619263 +211964,71379,over-hyped,1448619255 +211964,71379,slow,1448619258 +211964,71520,Atheism,1450324489 +211964,71520,Ricky Gervais,1450324487 +211964,71520,witty,1450324493 +211964,99910,action,1449209983 +211964,99910,Arnold Schwarzenegger,1449209981 +211964,99910,small town,1449209986 +211964,106920,artificial intelligence,1450324927 +211964,106920,bittersweet,1450324931 +211964,106920,philosophical,1450324937 +211964,106920,thought-provoking,1450324929 +211964,112171,dark hero,1450325395 +211964,112171,Denzel Washington,1450325383 +211964,112171,invincible,1450325409 +211964,112171,one man army,1450325405 +211964,112171,revenge,1450325429 +211964,114935,mindfuck,1448608411 +211964,114935,time travel,1448608413 +211964,114935,twist ending,1448608410 +211964,115231,Bill Murray,1450263056 +211964,115231,emotional,1450263246 +211964,115680,time travel,1449062788 +211964,115680,twist ending,1449062785 +211964,115680,unexpected ending,1449062783 +211964,132046,Cheesy,1449938346 +211964,132046,For children,1449938360 +211986,40962,Remake,1182553981 +211988,117901,screenwriting,1417399118 +211988,117901,television,1417399115 +212021,3359,roots for the underdog,1327282158 +212021,5501,Dana Carvey,1329712215 +212021,5501,The Cuteness,1329712234 +212021,89864,the dog,1322803414 +212021,91128,Johnny Depp,1330923456 +212021,91873,cheesy,1342553764 +212021,95201,Roberto Benigni,1359234739 +212021,99114,bad physics,1358200244 +212021,99114,self indulgent,1358200244 +212021,106438,not like the book,1391849097 +212021,110781,crappy sequel,1420845561 +212021,110781,disney,1420845561 +212021,110781,remake,1420845561 +212021,119145,colin firth,1423936551 +212021,119145,samuel l. jackson,1423936551 +212021,119145,spy thriller,1423936551 +212021,132584,Disney Original Movie,1429823644 +212021,132584,Shia LaBeouf,1429823667 +212039,4056,Jack Nicholson,1421710388 +212039,4056,thriller,1421710380 +212039,6538,Charlotte Rampling,1421710272 +212039,6538,drama,1421710299 +212039,6538,French,1421710280 +212039,6538,Ludivine Sagnier,1421710293 +212039,6538,writing,1421710315 +212040,260,"action, scifi",1444960964 +212040,260,darth vader,1444961011 +212040,260,space adventure,1444961009 +212040,260,space epic,1444960972 +212040,260,space fight,1444960983 +212040,260,sword fight,1444960954 +212040,260,yoda,1444961015 +212062,6283,anime,1292437820 +212062,48516,Leonardo DiCaprio,1293398356 +212090,260,jedi,1443290127 +212090,260,Star Wars,1443290147 +212092,80219,action right from the start to the very end,1284540312 +212092,80219,Not very strong ending,1284540296 +212106,46578,quirky good,1175461409 +212119,99941,easily confused with other movie(s) (title),1358626028 +212119,99941,remake,1358626041 +212119,99946,reconstruction of lost film,1358626308 +212119,100536,French language version,1360964386 +212119,100538,English language version,1360964659 +212119,126426,easily confused with other movie(s) (title),1422225366 +212120,260,fiction,1439836952 +212120,260,future,1439836959 +212134,76175,Greek,1270967849 +212143,260,good vs evil,1435208718 +212143,260,Intergalactic,1435208707 +212143,260,Starship,1435208698 +212151,34319,Scarlett Johansson,1440463175 +212151,34319,sci-fi,1440463180 +212151,34319,surprise ending,1440463190 +212151,101864,future,1440463309 +212151,101864,interesting concept,1440463306 +212151,101864,sci-fi,1440463301 +212151,101864,Tom Cruise,1440463302 +212151,109487,Masterpiece,1440463423 +212151,109487,time-travel,1440463411 +212157,50,acting,1394687307 +212157,50,mystery,1394687307 +212157,318,acting,1394687291 +212157,318,humor,1394687291 +212157,318,mystery,1394687291 +212157,2571,Action Scenes,1394687388 +212157,2571,science fiction,1394687388 +212157,5816,adventure,1394686787 +212157,5816,England,1394686787 +212157,5816,fantasy,1394686787 +212157,5816,magic/illusion/mysticism,1394686787 +212157,48738,acting,1394686872 +212157,75341,romance,1394687213 +212157,80839,horses,1394687187 +212157,80839,Motivation,1394687187 +212157,81191,education,1394687154 +212157,81191,Motivation,1394687154 +212157,88950,acting,1394687103 +212157,92259,funny,1394687424 +212157,92259,Moving,1394687424 +212157,92259,odd couple,1394687424 +212157,94070,acting,1394687251 +212157,95088,odd sense of humor,1394687237 +212157,96588,music,1394687226 +212157,98809,adventure,1394687447 +212157,98809,fantasy,1394687447 +212157,98809,quest,1394687447 +212157,104319,Motivation,1394687086 +212158,52583,drama,1432582393 +212158,52583,love overcomes all,1432582393 +212158,52583,touching story,1432582393 +212158,115713,artificial intelligence,1430388380 +212158,115713,robots,1430388380 +212158,115713,sci-fi,1430388380 +212158,117192,bbc produced,1437481075 +212158,117192,doctor who,1437481075 +212158,117192,sci-fi,1437481075 +212184,260,classic,1435116490 +212184,260,Innovative,1435116509 +212190,2571,alternate reality,1322020479 +212190,2571,philosophical,1322020435 +212190,2571,virtual reality,1322020462 +212198,1251,christ imagery,1261205866 +212198,1251,fantasy,1261205815 +212198,1251,glamour,1261205820 +212198,1251,misogyny,1261205803 +212198,1251,Nino Rota,1261205838 +212198,6140,Giallo,1226025289 +212198,6140,Italian,1226025292 +212198,7177,why militant islam is so scary,1177970778 +212198,8154,anita eckberg,1261205972 +212198,8154,Anou,1261205922 +212198,8154,nico,1261205978 +212198,8202,CLASS DIFFERENCES,1222050206 +212198,8202,play within a movie,1222050169 +212198,53161,mental hospital,1222448154 +212198,69394,Iranian,1295644374 +212198,69394,islam,1295644374 +212198,69394,women's rights,1295644374 +212198,82667,disturbing,1360571781 +212198,82667,suspense,1360571792 +212241,1907,disney,1187235599 +212241,3752,jim carey,1187235598 +212241,4262,gangster,1187235600 +212241,4343,x-files,1187235708 +212241,6378,robbery,1187235597 +212252,260,adventure,1437259194 +212252,260,sci-fi,1437259181 +212252,260,space action,1437259207 +212260,260,space action,1442160571 +212260,260,Star Wars,1442160565 +212279,356,excellent script,1424583184 +212279,356,inspirational,1424583184 +212279,356,uplifting,1424583184 +212315,4510,Chris Columbus,1241108115 +212334,288,hallucinatory,1283052741 +212334,288,Oliver Stone,1283052739 +212334,288,psychedelic,1283052744 +212334,288,Robert Downey Jr.,1283052735 +212334,288,violence,1283052753 +212334,288,visceral,1283052751 +212334,587,chick flick,1283052523 +212334,587,girlie movie,1283052527 +212334,587,Patrick Swayze,1283052531 +212334,587,romance,1283052542 +212334,587,Whoopi Goldberg,1283052533 +212334,597,capitalism,1283052311 +212334,597,chick flick,1283052308 +212334,597,cinderella,1283052314 +212334,597,girlie movie,1283052337 +212334,597,hooker with a heart of gold,1283052332 +212334,597,Julia Roberts,1283052320 +212334,597,Richard Gere,1283052323 +212334,597,shopping,1283052328 +212334,733,Action,1283052384 +212334,733,Michael Bay,1283052378 +212334,733,Nicolas Cage,1283052366 +212334,733,San Francisco,1283052417 +212334,733,Sean Connery,1283052368 +212334,733,terrorism,1283052374 +212334,785,Bill Murray,1283052568 +212334,785,goofy,1283052572 +212334,785,Jonathan Richman,1283052575 +212334,785,madcap,1283052579 +212334,785,Nudity (Topless),1283052599 +212334,785,raunchy,1283052584 +212334,785,silly,1283052589 +212334,785,witty,1283052582 +212334,785,Woody Harrelson,1283052594 +212334,1078,Woody Allen,1282859135 +212334,2628,jar jar binks,1283052494 +212334,2628,merchandising,1283052486 +212334,2628,Samuel L. Jackson,1283052456 +212334,4000,Mel Gibson,1282858420 +212334,8910,existentialism,1282860159 +212334,8910,philosophy,1282860156 +212334,8910,satire,1282860163 +212334,26366,Criterion,1283052071 +212334,26366,documentary,1283052092 +212334,26366,National Film Registry,1283052068 +212334,26366,poverty,1283052080 +212334,26366,union,1283052083 +212334,26471,homophobic,1282853367 +212334,34338,Billy Connolly,1283052680 +212334,34338,Chris Rock,1283052649 +212334,34338,comedy,1283052651 +212334,34338,crude humor,1283052645 +212334,34338,George Carlin,1283052671 +212334,34338,obscenity,1283052665 +212334,34338,Vulgar,1283052654 +212334,34338,Whoopi Goldberg,1283052658 +212334,41716,assassination,1283052703 +212334,41716,Black Comedy,1283052698 +212334,41716,Friendship,1283052706 +212334,41716,great cinematography,1283052711 +212334,41716,Greg Kinnear,1283052714 +212334,41716,Pierce Brosnan,1283052717 +212334,41716,quirky,1283052693 +212334,49225,Cory Booker,1283052114 +212334,49225,Documentary,1283052110 +212334,52462,Bruce Campbell,1283052620 +212334,52462,Chris Kattan,1283052617 +212334,52462,humorous,1283052629 +212334,62511,hard to follow,1283052246 +212334,62511,meta,1283052280 +212334,62511,Philip Seymour Hoffman,1283052226 +212334,74152,Zach Galifianakis,1283052029 +212334,77293,heist,1283052193 +212337,260,adventure,1436292481 +212337,260,exciting,1436292475 +212340,260,hero's journey,1433877614 +212340,260,space,1433877597 +212376,2329,powerful ending,1432945773 +212376,2329,thought-provoking,1432945794 +212376,4993,epic,1432946417 +212376,4993,high fantasy,1432946411 +212376,4993,Magic,1432946402 +212376,68954,dreams,1432946067 +212376,68954,friendship,1432946093 +212376,68954,Pixar,1432946058 +212376,89492,baseball,1432946211 +212376,89492,Educational,1432946230 +212376,89492,intelligent,1432946217 +212376,89492,Realistic,1432946234 +212376,89492,sports,1432946215 +212376,89492,true story,1432946223 +212376,101973,educationa,1432946959 +212376,101973,really heavy,1432946942 +212390,1912,Steven Soderbergh,1302194506 +212391,260,epic adventure,1430442969 +212391,260,Science Fiction,1430442961 +212401,590,indians,1283533407 +212401,741,cyborgs,1368028022 +212401,1073,imagination,1368027784 +212401,1089,dark humor,1368027368 +212401,1293,indians,1368027121 +212401,1517,funny,1368028013 +212401,1682,alone in the world,1368027159 +212401,1682,Jim Carrey,1368030686 +212401,1967,fairy tales,1368027179 +212401,2096,fairy tales,1368027179 +212401,2161,imagination,1368027785 +212401,2193,fairy tales,1368027179 +212401,2291,fairy tales,1368027179 +212401,2640,super hero,1368027139 +212401,2640,superheroes,1368027132 +212401,2723,super hero,1368027139 +212401,2723,superheroes,1368027132 +212401,2916,cyborgs,1368028023 +212401,2985,violence,1368027816 +212401,2997,dark comedy,1285435628 +212401,2997,mindfuck,1285435635 +212401,2997,puppets,1285435624 +212401,3000,Studio Ghibli,1368030642 +212401,3037,indians,1368027121 +212401,3266,violence,1368027816 +212401,4011,dark humor,1368027368 +212401,4105,gory,1368027197 +212401,4226,complicated,1280414959 +212401,4226,memory,1280414937 +212401,4226,mystery,1280414941 +212401,4226,nonlinear,1280414939 +212401,4226,psychology,1280414944 +212401,4226,twist ending,1280414946 +212401,4381,Veber,1175539126 +212401,4387,action,1368027376 +212401,4565,action,1368027376 +212401,4816,funny,1368028013 +212401,4878,complicated,1368027806 +212401,4887,action,1368027376 +212401,4902,children,1285435737 +212401,4902,dark,1285435739 +212401,4973,imagination,1368027785 +212401,5135,indians,1368027121 +212401,5313,action,1368027376 +212401,5349,superheroes,1368027132 +212401,5481,funny,1368028013 +212401,5618,imagination,1368027784 +212401,6157,super hero,1368027140 +212401,6534,super hero,1368027140 +212401,6537,cyborgs,1368028023 +212401,6539,funny,1245029017 +212401,6539,Johnny Depp,1245029002 +212401,6539,pirates,1245029004 +212401,6710,shy person,1285597787 +212401,6710,ventriloquist,1285597779 +212401,7153,Oscar (Best Picture),1245029050 +212401,7361,complicated,1368027806 +212401,7361,Jim Carrey,1280410462 +212401,7361,memory,1280410463 +212401,7361,nonlinear,1280410464 +212401,7361,philosophy,1280410469 +212401,7361,thought-provoking,1280410473 +212401,7373,super hero,1368027140 +212401,7373,superheroes,1368027132 +212401,8360,fairy tales,1368027179 +212401,8636,superheroes,1368027132 +212401,8641,funny,1368028014 +212401,27706,narrated,1215029517 +212401,32587,artistic,1285435448 +212401,32587,atmospheric,1285435450 +212401,32587,multiple storylines,1285435475 +212401,32587,narrated,1285435486 +212401,33158,action,1368027376 +212401,48394,fairy tale,1283174994 +212401,48394,fairy tales,1368027179 +212401,48394,Guillermo del Toro,1283175010 +212401,48394,imagination,1283174998 +212401,48394,Oscar (Best Art Direction),1283175014 +212401,48394,stylized,1283175023 +212401,48394,surreal,1283175003 +212401,48394,violence,1283175008 +212401,48394,visually appealing,1283175006 +212401,48394,world war II,1285435715 +212401,54995,gory,1368027197 +212401,56339,foreign language,1281816319 +212401,56339,twist ending,1281816229 +212401,57528,violence,1368027816 +212401,57640,apocalypse,1285435802 +212401,57640,good sequel,1285435786 +212401,58299,Dr. Seuss,1285435532 +212401,58299,narrated,1285435547 +212401,59315,superheroes,1368027132 +212401,60069,pixar,1312857119 +212401,60069,post-apocalyptic,1312857115 +212401,60069,robots,1312857113 +212401,60069,social commentary,1312857116 +212401,60684,super hero,1368027140 +212401,61323,dark humor,1368027368 +212401,63082,music,1280410448 +212401,66097,alone in the world,1368027159 +212401,68791,cyborgs,1368028022 +212401,68954,dreams,1312857162 +212401,68954,Pixar,1312857160 +212401,76251,action,1285435423 +212401,76251,gory,1285435433 +212401,76251,humorous,1285435429 +212401,76251,superhero,1285435426 +212401,79091,funny,1283173942 +212401,79132,alternate reality,1285435650 +212401,79132,dreams,1285435651 +212401,79132,mindfuck,1285435649 +212401,79702,geeky,1283173888 +212401,79702,stylized,1283173891 +212401,79702,video games,1283173893 +212401,80219,boobies guns and blood!,1285435885 +212401,95875,action,1368027376 +212401,98154,oscar (best directing),1368027149 +212410,3016,Anthology,1300834411 +212501,64839,no clear ending,1242165945 +212501,64839,sad,1242165957 +212501,64839,touching,1242165969 +212503,208,dark hero,1368150078 +212503,353,dark hero,1368150079 +212503,521,noir thriller,1368149983 +212503,592,dark hero,1368150078 +212503,668,bollywood,1368149876 +212503,898,screwball comedy,1368150160 +212503,1248,noir thriller,1368149983 +212503,1391,mars,1368150055 +212503,1617,neo-noir,1368150217 +212503,1694,jesus,1368149925 +212503,1783,noir thriller,1368149983 +212503,2022,jesus,1368149925 +212503,2193,dragon,1368151314 +212503,2353,conspiracy theory,1368151266 +212503,2662,mars,1368150055 +212503,2726,noir thriller,1368149983 +212503,2840,jesus,1368149925 +212503,3052,jesus,1368149926 +212503,5135,bollywood,1368149876 +212503,6539,treasure,1368149949 +212503,6874,dark hero,1368150079 +212503,7013,noir thriller,1368149983 +212503,7318,jesus,1368149925 +212503,8529,stranded,1368150012 +212503,8622,conspiracy theory,1368151266 +212503,27803,Oscar (Best Foreign Language Film),1305008715 +212503,27866,New Zealand,1304957153 +212503,48082,surreal,1304958354 +212503,48082,unusual,1304958359 +212503,51884,bollywood,1368149876 +212503,58652,cute,1304957612 +212503,58652,emotional,1304957608 +212503,58652,girls who play boys,1304957403 +212503,58652,Stephen Chow,1304957388 +212505,26750,qute characters,1369593555 +212511,68554,twisted ending,1249851808 +212511,68848,con artists,1264171257 +212511,68848,funny,1264171236 +212511,69122,comedy,1248456116 +212511,77455,art,1347303697 +212511,77455,consumerism,1347303722 +212511,77455,graffiti,1347303705 +212511,77455,Thierry Guetta,1347303715 +212516,413,sandler,1187634384 +212516,1416,madonna,1187634423 +212516,1883,politics,1187634365 +212516,2116,animated,1187634435 +212516,2423,national lampoon,1187634420 +212516,8622,crap,1187634345 +212534,59315,Iron Man,1215699075 +212534,59784,Kung Fu,1215697160 +212534,59784,panda,1215697172 +212544,6,Al and Robert,1161372739 +212544,6,too long,1161372739 +212544,16,complex,1161373183 +212544,16,Goodfellas II,1161373183 +212544,260,complete,1161365971 +212544,318,hope,1161369324 +212544,318,perception,1161369324 +212544,318,prison in some cases can make incarserated dependent and incomplete when term is served,1161369324 +212544,428,bikers,1161372969 +212544,428,coffee cake,1161372969 +212544,428,dad,1161372969 +212544,428,peer presssure,1161372969 +212544,858,immigrants,1161369597 +212544,858,large,1161369597 +212544,858,nostra,1161369597 +212544,858,visual,1161369597 +212544,919,around a holiday can't quite remember for some reason,1161368697 +212544,919,since short term memeory activated,1161368697 +212544,919,watched every year,1161368697 +212544,1196,music,1161365497 +212544,1196,parenthood,1161365497 +212544,1196,victory,1161365497 +212544,1213,ect,1161369472 +212544,1213,hendry,1161369472 +212544,1213,jimmy,1161369472 +212544,1213,paulie,1161369472 +212544,1213,perfection,1161369472 +212544,1213,tommy,1161369472 +212544,1221,bold,1161372666 +212544,1221,Epic,1161372666 +212544,1221,romantic,1161372666 +212544,1263,painful,1161372672 +212544,1263,surreal,1161372672 +212544,1263,unique,1161372672 +212544,1278,black and white,1161365793 +212544,1278,breasts,1161365793 +212544,1278,Gene Wilder,1161365792 +212544,1278,marty feldman,1161365792 +212544,1288,cast,1161369078 +212544,1288,hair,1161369078 +212544,1288,pods,1161369078 +212544,1500,belivability,1161365304 +212544,1500,dialogue,1161365304 +212544,1500,John Cusack,1161365304 +212544,1500,lighting,1161365304 +212544,1625,empty,1161369648 +212544,1625,plot,1161369648 +212544,1625,privacy,1161369648 +212544,1729,great acting,1161373583 +212544,1729,Tarantinos best,1161373583 +212544,2617,bald nemesis,1161365401 +212544,2617,egypt,1161365401 +212544,2617,sand,1161365401 +212544,3104,no way charles grodin,1161373053 +212544,3105,good characters,1161373267 +212544,3105,sad,1161373267 +212544,3105,seen more than once,1161373267 +212544,4776,bad guy good,1161369029 +212544,4776,eva mendez,1161369029 +212544,4776,violent yet uplifting,1161369029 +212544,6230,belivability,1161373494 +212544,6230,Underrated,1161373494 +212544,6436,angry,1161373683 +212544,6436,candy hog,1161373683 +212544,6436,visually appealing,1161373683 +212544,7153,first,1161365940 +212544,7153,had a very matrix trilogy progression,1161365940 +212544,7153,i didnt feel like the king ever existed,1161365940 +212544,40819,american bad ass cool cat man in black,1161368813 +212544,40819,great tunes,1161368813 +212544,40819,yellow water,1161368813 +212544,44191,lacked substance,1161368912 +212544,44191,premise was very comfortable,1161368912 +212586,344,goofy,1139428218 +212586,410,stupid,1139428207 +212595,260,scifi,1439776713 +212595,260,starwars,1439776722 +212653,260,sci-fi,1438109921 +212653,260,space adventure,1438109960 +212653,260,space epic,1438109965 +212676,318,classic,1139870704 +212676,1265,romance,1139870770 +212676,39183,Gay Cowboy,1139870563 +212676,67255,adapted from:book,1283715879 +212676,67255,hacker,1283715873 +212676,67255,Noomi Rapace,1283715864 +212676,74510,based on a book,1283715940 +212676,74510,hacking,1283715918 +212676,74510,R:brutal violence including rape,1283715923 +212676,74510,R:language,1283715929 +212676,74510,R:nudity,1283715927 +212676,74545,British,1283715662 +212676,74545,Ewan McGregor,1283715668 +212676,74545,Pierce Brosnan,1283715689 +212676,74545,politics,1283715674 +212678,57274,"""found footage""",1450497242 +212678,57274,atmospheric,1450497258 +212678,57274,creepy,1450497249 +212678,57274,Foreign,1450497239 +212678,57274,found footage,1450497246 +212678,57274,horror,1450497229 +212678,57274,infection,1450497252 +212678,57274,panic,1450497236 +212678,57274,virus,1450497232 +212678,57274,zombies,1450497205 +212698,84952,japan academy prize winner,1300065598 +212698,84952,japanese,1300064969 +212698,84952,revenge,1300064926 +212698,84952,vengeance,1300064777 +212698,97665,Based On Comic Book,1350691954 +212698,97665,Gerard Depardieu,1350691938 +212729,116797,code breaking,1423122401 +212729,116797,mathematicians,1423122401 +212729,116797,second world war,1423122401 +212740,180,view askew,1137161587 +212740,520,mel brooks,1137161175 +212740,1482,Barrytown,1168006555 +212740,1935,Rhondda,1168002011 +212740,2359,Ireland,1167998052 +212740,2359,Irish,1167998052 +212740,3060,Dublin,1167999546 +212740,3060,Ireland,1167999547 +212740,3060,Irish,1167999547 +212740,4103,Christian Bale,1167997846 +212740,4103,J. G. Ballard,1167997846 +212740,4103,Japan,1167997846 +212740,4103,World War II,1167997846 +212740,4275,British,1167997893 +212740,4275,fantasy,1167997893 +212740,4275,Todd Carthy,1167997893 +212740,6173,Gypsies,1168006412 +212740,6173,Ireland,1168006412 +212740,6173,Irish,1168006412 +212740,7139,Ireland,1170854529 +212740,7139,Irish,1170854529 +212740,7155,based on a true story,1167998083 +212740,7155,nudity,1167998083 +212740,7155,Women's Institute,1167998083 +212740,8937,American Football,1176050761 +212740,8937,real life,1176050761 +212740,31184,Dynamic CGI Action,1153129245 +212740,31658,Studio Ghibli,1178038618 +212740,33585,sex,1138308829 +212740,42734,Ben Folds,1151316224 +212740,45431,Ben Folds,1151316173 +212740,45431,William Shatner,1151316182 +212740,47894,civil war,1185970574 +212740,47894,ireland,1185970574 +212743,1843,childhood,1453004877 +212743,98556,hallmark,1453610731 +212766,4448,robbery,1436772700 +212769,260,EPIC,1450205229 +212769,260,sci-fi,1450205215 +212769,260,space adventure,1450205224 +212769,541,atmospheric,1450205732 +212769,541,dreamlike,1450205741 +212769,541,dystopia,1450205744 +212769,541,existentialism,1450205723 +212769,541,film noir,1450205735 +212769,541,Harrison Ford,1450205729 +212769,541,Philip K. Dick,1450205725 +212769,2571,cult film,1450205826 +212769,2571,philosophy,1450205813 +212769,2571,thought-provoking,1450205817 +212769,2571,virtual reality,1450205831 +212769,2959,atmospheric,1450205174 +212769,2959,psychology,1450205148 +212769,2959,social commentary,1450205153 +212769,2959,twist ending,1450205146 +212769,3949,dark,1450205683 +212769,3949,depressing,1450205695 +212769,3949,disturbing,1450205686 +212769,3949,intense,1450205689 +212769,3949,psychological,1450205692 +212769,4975,existentialism,1450207629 +212769,4975,lucid dreaming,1450207633 +212769,4975,mindfuck,1450207627 +212769,4975,Penelope Cruz,1450207643 +212769,4975,surreal,1450207624 +212769,7361,bittersweet,1450205579 +212769,7361,melancholy,1450205588 +212769,7361,surreal,1450205570 +212769,7361,thought-provoking,1450205573 +212769,68237,melancholy,1450205374 +212769,68237,psychology,1450205391 +212769,68237,Sci-fi,1450205354 +212769,68237,solitude,1450205360 +212769,68237,twist ending,1450205387 +212769,94466,dystopia,1450205119 +212769,94466,Science fiction,1450205128 +212769,94466,social commentary,1450205122 +212769,94466,thought-provoking,1450205113 +212769,94466,tv series,1450205100 +212769,94466,well constructed,1450205125 +212769,115713,AI,1450205313 +212769,115713,artificial intelligence,1450205307 +212769,115713,Manipulations,1450205319 +212769,115713,philosophical,1450205338 +212769,115713,plot twist,1450205328 +212769,115713,robots,1450205336 +212769,115713,thought provoking,1450205339 +212772,32584,Daniel Day-Lewis,1229760267 +212772,56782,Daniel Day-Lewis,1229760161 +212785,260,entertaining,1433299512 +212785,260,funny,1433299522 +212785,260,sci-fi,1433299527 +212802,215,AMERICANS ABROAD,1176169175 +212802,215,really romantic,1176169196 +212802,215,reflective,1176169169 +212802,215,TWENTYSOMETHING LIFE,1176169183 +212802,215,Vienna,1176169190 +212802,296,organized crime,1179635321 +212802,296,Samuel L. Jackson,1179635324 +212802,535,Los Angeles,1179635318 +212802,1253,classic,1187154506 +212802,1253,imdb top 250,1187154545 +212802,1639,love story,1179634464 +212802,1639,romantic,1179634467 +212802,1680,alternate universe,1177296314 +212802,1680,British,1177296316 +212802,1680,great concept,1177296320 +212802,1968,1980's cult,1179635300 +212802,1968,school drama,1179635306 +212802,2613,end of the world,1187064161 +212802,2726,imdb top 250,1176861433 +212802,2729,Stanley Kubrick,1333817557 +212802,3008,apocolypse,1179635359 +212802,3008,Canada,1179635364 +212802,3008,multiple storylines,1179635366 +212802,4823,Good Romantic Comedies,1177440460 +212802,5391,coincidences,1179635086 +212802,5391,ensemble cast,1186263326 +212802,5391,multiple storylines,1179635088 +212802,5391,nonlinear,1179635084 +212802,5391,well-acted and thought-provoking,1179635080 +212802,7154,great cast,1186262395 +212802,7154,Julia Roberts,1186262389 +212802,7154,Julia Stiles,1186262391 +212802,7154,Kirsten Dunst,1186262384 +212802,7154,sentimental,1186262371 +212802,7154,Strong Women,1186262387 +212802,7154,touching,1186262373 +212802,8638,Best romantic movie in years,1176169232 +212802,8638,Paris,1176169218 +212802,8638,romantic,1176169221 +212802,8638,sequels,1176169228 +212802,26704,Sean Penn,1184027004 +212802,31364,korean,1314879792 +212802,33166,breakthroughs,1179635371 +212802,33903,good soundtrack,1187155571 +212802,33903,idealism,1187155568 +212802,33903,revolution,1187155585 +212802,34336,love story,1179634480 +212802,39886,multiple storylines,1179635343 +212802,40629,prejudice,1177549839 +212802,42723,Disappointing,1333459063 +212802,42723,Nudity (Topless),1333459088 +212802,42723,stupid stereotypes,1333459056 +212802,42723,tits and power tools,1333459074 +212802,42723,unlikeable characters,1333459068 +212802,43919,Not funny,1176655899 +212802,43919,revoltingly bad,1176655881 +212802,43919,stinking heap of shit,1176655894 +212802,43919,terrible,1176655897 +212802,44974,controversial,1179456823 +212802,45668,architecture,1179634473 +212802,45668,good romantic comedies,1177440537 +212802,45668,love story,1176168862 +212802,45668,Sandra Bullock,1179634475 +212802,45668,sweet,1175482721 +212802,45720,chickflick,1176169071 +212802,45720,girlie movie,1176169057 +212802,45720,new york city,1176169054 +212802,47610,magic,1179634460 +212802,47610,stage magic,1179634457 +212802,48774,distopia,1186978742 +212802,48774,end of the world,1186978745 +212802,48774,future,1186978715 +212802,48774,sci-fi,1186978712 +212802,51084,Definite chick flick,1188500316 +212802,52973,overrated,1189351538 +212806,50,complicated,1293562902 +212806,50,conspiracy,1293562906 +212806,293,disturbing,1293563143 +212806,293,Natalie Portman,1293563137 +212806,293,quirky,1293563139 +212806,318,friendship,1293562792 +212806,318,inspirational,1293562793 +212806,318,Morgan Freeman,1293562801 +212806,318,Stephen King,1293562797 +212806,1196,action,1293562925 +212806,1196,adventure,1293562923 +212806,1196,classic,1293562929 +212806,1196,Harrison Ford,1293562918 +212806,1199,black comedy,1293562545 +212806,1199,satire,1293562559 +212806,1199,surreal,1293562555 +212806,1199,Terry Gilliam,1293562549 +212806,1199,thought-provoking,1293562546 +212806,1206,disturbing,1293563074 +212806,1206,quirky,1293563081 +212806,1206,satire,1293563083 +212806,1206,satirical,1293563082 +212806,1259,coming of age,1293562614 +212806,1968,coming of age,1293562461 +212806,1968,coming-of-age,1293562462 +212806,2324,bittersweet,1293565000 +212806,2324,poignant,1293565004 +212806,5618,anime,1293562933 +212806,5618,dreamlike,1293562934 +212806,5618,hallucinatory,1293562935 +212806,5618,Japan,1293562938 +212806,5618,whimsical,1293562939 +212806,5690,downbeat,1293565024 +212806,5690,poignant,1293565022 +212806,5902,black comedy,1293563106 +212806,5902,Charlie Kaufman,1293563091 +212806,5902,dark comedy,1293563094 +212806,5902,melancholy,1293563096 +212806,5902,quirky,1293563104 +212806,5902,surreal,1293563099 +212806,7147,bittersweet,1293562418 +212806,7147,coming of age,1293562428 +212806,7147,quirky,1293562422 +212806,7147,reflective,1293562424 +212806,44191,dystopia,1293562478 +212806,44191,philosophy,1293562484 +212806,44191,social commentary,1293562486 +212806,44191,thought-provoking,1293562480 +212806,48082,bittersweet,1293562583 +212806,48082,dreams,1293562580 +212806,48082,Michel Gondry,1293562574 +212806,52885,anime,1293562377 +212806,52885,confusing,1293562368 +212806,52885,dreamlike,1293562372 +212806,52885,dreams,1293562370 +212806,52885,story,1293562374 +212806,52885,surreal,1293562393 +212806,55247,road trip,1293565012 +212806,55247,self discovery,1293565013 +212806,62336,anime,1293562524 +212806,62336,cult film,1293562521 +212806,78499,animation,1293562719 +212817,3706,chilling,1450304626 +212823,44191,comic book,1149017128 +212842,260,Daring Rescue,1438601963 +212842,260,the force,1438602010 +212842,116797,cryptography,1438602700 +212842,116797,genius,1438602709 +212843,413,awful,1187497784 +212843,671,AWESOME,1187497732 +212843,954,classic jimmy stewart,1187497811 +212843,1243,excellent and overlooked,1187497908 +212843,1344,better than the remake,1187497885 +212843,1589,underrated,1187497820 +212843,1892,bad remake,1187497911 +212843,1894,bad to the extreme,1187497845 +212843,2662,ok at best,1187497875 +212843,2951,very good western,1187497780 +212843,2976,overlooked,1187497935 +212843,3617,bad bad bad...,1187497725 +212843,3785,Funny when your 10. Less funny when your not.,1187497639 +212843,4015,bad,1187497932 +212843,4367,yuck,1187497744 +212843,4447,bad,1187497666 +212843,4848,mindblowing,1187497683 +212843,4975,not as good as the original,1187497715 +212843,5377,relationships,1187497558 +212843,5618,fun and memorable,1187497693 +212843,5679,bad,1187497615 +212843,6870,very good,1187497754 +212843,6934,action packed,1187497605 +212843,7147,past lives,1187497569 +212843,8622,awful,1187497707 +212873,1805,drama,1142051228 +212887,68954,children,1294547034 +212929,111921,sad,1433842130 +212929,115667,heart stopping,1433841976 +212929,115667,heartwarming,1433841976 +212929,115667,romantic,1433841976 +212930,260,blockbuster,1439797521 +212930,260,space opera,1439797507 +212934,260,sci-fi,1441990051 +212934,260,space adventure,1441990084 +212945,260,bad,1434582766 +212945,260,boring,1434582777 +212986,1057,musical,1318921006 +212986,1057,singing,1318921020 +212986,1704,feel-good,1318921692 +213006,750,black comedy,1417452431 +213006,750,dark comedy,1417452419 +213006,750,satire,1417452416 +213006,750,Stanley Kubrick,1417452421 +213006,1176,enigmatic,1445207582 +213006,1176,Irene Jacob,1445207583 +213006,1176,melancholy,1445207583 +213006,1884,drugs,1416358532 +213006,1884,hallucinatory,1416358533 +213006,1884,Terry Gilliam,1416358537 +213006,2003,Gizmo,1433813368 +213006,2003,references for the sake of references,1433813375 +213006,3262,atmospheric,1450400461 +213006,3262,David Lynch,1450400463 +213006,3262,detective,1450400465 +213006,3262,domestic violence,1450400478 +213006,3262,drugs,1450400474 +213006,3262,enigmatic,1450400467 +213006,3262,Notable Nudity,1450400480 +213006,3262,surreal,1450400472 +213006,90531,classical music,1407809632 +213006,90531,frustration,1416415191 +213006,90531,long takes,1407809657 +213006,90531,Michael Fassbender,1407809644 +213006,90531,nudity (topless),1407809641 +213006,90531,self-destruction,1416415187 +213006,106766,atmospheric,1432473068 +213006,106766,cats,1432473071 +213006,106766,cinematography,1432473072 +213006,106766,Coen Brothers,1432473066 +213006,106766,depressing,1432473069 +213006,106766,funny,1432473074 +213006,106766,musicians,1432473079 +213006,106766,Oscar Isaac,1432473081 +213006,107406,Plot twist,1399250002 +213006,109848,atmospheric,1404583780 +213006,109848,photography,1404583796 +213006,111360,dumb science,1422366697 +213006,111360,Scarlett Johansson,1422366700 +213006,112421,mental illness,1410654932 +213006,112421,Michael Fassbender,1410655052 +213006,112421,soundtrack,1410654986 +213006,112552,drumer,1420851683 +213006,112552,jazz,1420851691 +213006,112552,musicians,1420851693 +213006,113780,Hand-held camera,1416587611 +213006,113780,hell,1416587577 +213008,36,Pena de muerte,1210805239 +213008,551,Pesadilla antes de navidad,1210805197 +213008,1227,Érase una vez en América,1210804891 +213008,3006,El dilema,1210804648 +213008,7361,Olvidate de mi,1210804350 +213008,44199,Plan oculto,1210805110 +213008,44665,El caso Slevin,1210804967 +213008,48516,Infiltrados,1210804365 +213008,49530,Diamantes de sangre,1210804938 +213025,5942,body/gender-switch,1223009068 +213026,7,Harrison Ford,1231105594 +213026,345,drag queen movie,1231105477 +213026,910,Marilyn Monroe,1231105373 +213026,920,classic,1231105343 +213026,920,masterpiece,1231105343 +213026,1061,revenge,1231105309 +213026,1061,vengeance,1231105309 +213026,1101,Tom Cruise,1231105281 +213026,1172,nostalgia,1231105257 +213026,1249,France,1231105208 +213026,1249,Girl Power,1231105208 +213026,1554,full frontal nudity,1231106825 +213026,1721,disaster,1231106798 +213026,2247,Michelle Pfeiffer,1231106718 +213026,2291,Tim Burton,1231105092 +213026,2542,Guy Ritchie,1231105059 +213026,2802,Mel Gibson,1231106657 +213026,2802,Michelle Pfeiffer,1231106657 +213026,3176,Jude Law,1231104999 +213026,3176,Matt Damon,1231105000 +213026,3418,Girl Power,1231104951 +213026,3868,Leslie Neilsen,1231105748 +213026,30812,Leonardo DiCaprio,1231105655 +213026,39183,Gay Cowboy,1231099879 +213037,33004,not as good as the book,1202712913 +213065,4310,unwatchable,1141435103 +213065,4446,CGI,1204597676 +213065,4446,computer animation,1204597674 +213075,32892,amazing cinematography,1426535087 +213075,32892,poetic,1426535087 +213075,32892,visually appealing,1426535087 +213099,47382,Channing Tatum,1431033466 +213099,93510,Channing Tatum,1431033341 +213099,93510,drugs,1431033355 +213099,93510,high school,1431033365 +213110,2723,drama,1340566300 +213120,68157,bad reality,1265316633 +213120,68157,violence,1265316633 +213132,2572,chick flick,1250520299 +213159,2497,based on a book,1444218449 +213159,5171,time travel,1444218825 +213159,6365,artificial intelligence,1444218522 +213159,6365,martial arts,1444218505 +213159,6365,post-apocalyptic,1444218499 +213159,6365,sci-fi,1444218512 +213186,924,sci-fi,1430227220 +213186,924,Stanley Kubrick,1430227212 +213186,7099,environmental,1430147754 +213186,7099,fantasy,1430147763 +213186,7099,Miyazaki,1430147766 +213186,7099,sci-fi,1430147779 +213186,7099,Studio Ghibli,1430147741 +213195,1923,boring,1156773557 +213222,3275,Pulp,1160939262 +213235,356,epic,1438111471 +213235,356,historical,1438111471 +213235,356,inspiring,1438111471 +213235,902,audrey hepburn,1438111320 +213235,902,classic,1438111313 +213235,902,elegant,1438111326 +213235,2028,Nazis,1438128374 +213235,2028,violent,1438128367 +213235,2028,war,1438128379 +213235,2028,World War II,1438128359 +213235,2028,wwii,1438128364 +213235,2948,007,1438127471 +213235,2948,Bond,1438127476 +213235,2948,espionage,1438127474 +213235,2948,james bond,1438127478 +213235,2959,violence,1438131119 +213235,2959,violent,1438131123 +213235,2997,Cameron Diaz,1438111665 +213235,2997,mindfuck,1438111699 +213235,2997,psychology,1438111676 +213235,2997,surreal,1438111668 +213235,2997,thought-provoking,1438111683 +213235,2997,twist ending,1438111680 +213235,3949,addiction,1438128436 +213235,3949,drug abuse,1438128444 +213235,3949,drugs,1438128432 +213235,3949,heroin,1438128439 +213235,3949,prostitution,1438128609 +213235,4226,cerebral,1438111531 +213235,4226,complicated,1438111538 +213235,4226,dark,1438111543 +213235,4226,memory,1438111566 +213235,4226,Mindfuck,1438111552 +213235,4226,mystery,1438111521 +213235,4226,nonlinear,1438111548 +213235,4226,psychology,1438111563 +213235,4226,twist ending,1438111557 +213235,4995,based on a book,1438111823 +213235,4995,based on a true story,1438111826 +213235,4995,biography,1438111812 +213235,4995,college,1438111830 +213235,4995,Drama,1438111799 +213235,4995,Education,1438111796 +213235,4995,genius,1438111763 +213235,4995,insanity,1438111788 +213235,4995,inspirational,1438111815 +213235,4995,intelligent,1438111791 +213235,4995,Jennifer Connelly,1438111778 +213235,4995,math,1438111773 +213235,4995,mathematics,1438111754 +213235,4995,mental illness,1438111805 +213235,4995,nobel prize,1438111782 +213235,4995,Oscar (Best Directing),1438111828 +213235,4995,Oscar (Best Picture),1438111759 +213235,4995,Oscar (Best Supporting Actress),1438111832 +213235,4995,Oscar Winner,1438111768 +213235,4995,psychology,1438111752 +213235,4995,romance,1438111821 +213235,4995,Russell Crowe,1438111808 +213235,4995,schizophrenia,1438111803 +213235,4995,true story,1438111810 +213235,4995,twist ending,1438111818 +213235,5445,artificial intelligence,1438128855 +213235,5445,dystopia,1438128845 +213235,5445,future,1438128852 +213235,5445,futuristic,1438128835 +213235,5445,sci-fi,1438128833 +213235,5445,time travel,1438128848 +213235,5445,Tom Cruise,1438128842 +213235,5995,holocaust,1438128220 +213235,5995,Nazis,1438128233 +213235,5995,World War II,1438128227 +213235,7153,long,1438130928 +213235,7456,Argentina,1438129444 +213235,31658,Hayao Miyazaki,1438128800 +213235,33679,Action,1438127831 +213235,33679,Angelina Jolie,1438127817 +213235,33679,Brad Pitt,1438127820 +213235,33679,espionage,1438127823 +213235,33679,slapstick,1438127775 +213235,33679,spies,1438127810 +213235,49272,gambling,1438127437 +213235,60069,adventure,1438128945 +213235,60069,Animation,1438128966 +213235,60069,artificial intelligence,1438128931 +213235,60069,beautiful scenery,1438128984 +213235,60069,dystopia,1438128960 +213235,60069,ecology,1438128941 +213235,60069,environmental,1438128976 +213235,60069,Future,1438128919 +213235,60069,human versus computer,1438128989 +213235,60069,Oscar (Best Animated Feature),1438128980 +213235,60069,pixar,1438128963 +213235,60069,Post apocalyptic,1438128928 +213235,60069,post-apocalyptic,1438128914 +213235,60069,quirky,1438128934 +213235,60069,robots,1438128911 +213235,60069,romance,1438128950 +213235,60069,Sci-Fi,1438128925 +213235,60069,social commentary,1438128955 +213235,60069,space,1438128907 +213235,68358,action,1438130966 +213235,68358,adventure,1438130971 +213235,68358,alternate reality,1438130969 +213235,68358,future,1438130974 +213235,68358,J.J. Abrams,1438130992 +213235,68358,sci fi,1438130983 +213235,68358,sci-fi,1438130964 +213235,68358,space,1438130962 +213235,68358,space travel,1438130980 +213235,68358,Star Trek,1438130957 +213235,68358,time travel,1438130959 +213235,71033,Argentina,1438129459 +213235,71033,excellent acting,1438129474 +213235,71033,foreign language,1438129479 +213235,71033,Ricardo Darin,1438129464 +213235,71033,Spanish,1438129485 +213235,79132,alternate reality,1438111370 +213235,79132,sci-fi,1438111365 +213235,79132,thought-provoking,1438111378 +213235,81591,female protagonist,1438128053 +213235,81591,Natalie Portman,1438128029 +213235,81591,psychological,1438128043 +213235,96020,Argentina,1438129508 +213235,96020,funny,1438129521 +213235,96020,Spanish,1438129534 +213235,105375,Diego Peretti,1438130841 +213235,116897,argentina,1438129406 +213235,116897,dark humor,1438129410 +213235,116897,Ricardo Darín,1438129425 +213244,3127,psychology,1169926215 +213244,26359,long movie,1169926076 +213272,260,jedi,1436262398 +213272,260,X-wing,1436262406 +213313,178,gay,1275335723 +213313,178,nihilism,1275335723 +213313,178,psychotic murderer,1275335723 +213313,3186,borderline,1277063521 +213313,5477,nonlinear,1274324796 +213313,33621,asperger syndrome,1277063394 +213313,33621,borderline,1277063326 +213313,33621,DPD,1277063348 +213313,52170,mercy,1285533495 +213313,52170,romanian poverty,1285533495 +213313,52170,view on society,1285533495 +213313,65130,aspirations,1274228458 +213313,65130,emptiness,1274228458 +213313,71899,imperfect,1273707320 +213313,72998,equilibrium,1275335631 +213313,72998,flashy american soldier,1275335535 +213313,72998,I See you,1275335535 +213313,72998,native americans,1275335564 +213313,74416,bad script,1304273908 +213313,74416,cliche characters,1304273891 +213313,74416,coming of age,1304273881 +213313,74416,non-hollywood,1304273768 +213313,74416,predictable,1304273962 +213313,74416,statuory rape,1304273864 +213329,63433,hokey,1297654003 +213345,260,starship pilots,1439791275 +213367,1346,New Orleans,1156400622 +213367,4086,New Orleans,1156400815 +213367,8045,Vietnam,1156401286 +213370,68194,very good for kids and adults,1257707482 +213375,1257,goofy,1365357144 +213375,1257,John Cusack,1365357160 +213375,1257,quirky,1365357148 +213375,3481,Jack Black,1365357293 +213375,3481,John Cusack,1365357288 +213375,3481,music,1365357302 +213375,3481,Nick Hornby,1365357306 +213375,93510,adults trying to be cool,1411764900 +213375,93510,dick jokes,1411764900 +213375,93510,drugs,1411764953 +213375,93510,fat is funny,1411764900 +213375,93510,jocks vs. nerds,1411764901 +213375,93510,overuse of profanity,1411764900 +213375,93510,police,1411764961 +213375,93510,stereotypes,1411764900 +213375,96817,boxing,1436563067 +213375,96817,common people,1436563067 +213375,96817,documentary,1436563067 +213375,106785,cliched,1393828567 +213375,106785,Statham,1393828546 +213375,107827,friendship,1435260107 +213375,107827,love,1435260107 +213375,107827,musicians,1435260107 +213375,118204,documentary,1449896681 +213375,118204,sports,1449896687 +213375,129659,cross country,1431872153 +213375,129659,running,1431872168 +213381,2571,computers,1407941243 +213381,2571,cult film,1407941245 +213381,2571,kung fu,1407941230 +213381,2571,sci-fi,1407941216 +213381,2571,violence,1407941227 +213381,2571,virtual reality,1407941224 +213393,413,Rock movies,1200606955 +213393,610,Adult Animation,1200605930 +213393,1289,gets better as it goes,1200607147 +213393,1289,Phillip Glass score,1200607147 +213393,1298,Cartoons for Big Kids,1200606885 +213393,1298,Rock movies,1200606885 +213393,31150,Bakshi,1200606823 +213393,31150,Cartoons for Big Kids,1200606850 +213393,31150,Nazis,1200606850 +213393,54999,Meta movie,1200605988 +213393,55765,conspiracy,1200605723 +213393,55765,drugs,1200605705 +213393,55765,gangster,1200605715 +213393,55765,historical,1200605696 +213393,55765,Ridley Scott,1200605730 +213393,55765,sure thing,1200605692 +213403,110,historical,1430094395 +213403,110,inspirational,1430094399 +213403,79132,cerebral,1430094364 +213403,79132,sci-fi,1430094356 +213406,61289,visually stunning,1274787236 +213406,73321,thought-provoking,1274783666 +213406,74789,visually appealing,1274783881 +213426,6773,no dialogue,1319737144 +213426,8579,no explanation for success,1321152477 +213426,8579,resolute,1321152341 +213426,8579,suspenseful,1321152347 +213426,74553,beautiful,1294623010 +213426,78278,beat the system,1314367020 +213426,78278,music videos,1314367043 +213426,78278,no exposition,1314366971 +213426,78278,who to trust?,1314367106 +213426,78748,japanese culture,1321152507 +213426,78748,pet insects,1321152493 +213426,86578,messy idealism,1346467692 +213426,86578,over the top,1346467739 +213426,86578,sweet,1346467703 +213426,86578,tounge in cheek,1346467744 +213426,97768,Algerian community,1351259115 +213426,97768,informants,1351259115 +213426,97768,mosque,1351259115 +213426,97768,papers,1351259115 +213426,97768,resistance,1351259118 +213426,97768,underground,1351259118 +213459,778,British,1446670522 +213459,778,dark comedy,1446670547 +213459,778,drugs,1446670525 +213459,778,great soundtrack,1446670533 +213483,260,old,1443320508 +213483,260,popular,1443320499 +213488,260,memorable,1431653457 +213488,260,watershed,1431653480 +213492,260,family,1438985470 +213492,260,Puppets,1438985490 +213520,1270,fun movie,1154466248 +213520,6980,family bonds,1219172816 +213520,6980,would see again,1219172816 +213520,6980,young romance,1219172922 +213520,6980,youth,1219172845 +213520,26101,western comedy,1219172950 +213528,27722,beautiful,1184247966 +213533,55282,vampire,1447391395 +213545,37380,[ok],1137435905 +213547,260,classic sci-fi,1442699502 +213551,2019,classic,1219986080 +213559,1214,atmospheric,1449070957 +213559,1214,dark,1449070967 +213559,1214,sci-fi,1449070963 +213559,1625,twist ending,1449071953 +213559,8874,black comedy,1449071178 +213559,51255,british comedy,1449071131 +213559,54997,naive,1449071852 +213559,70286,humor,1449070902 +213559,70286,intelligent sci-fi,1449070900 +213559,70286,social commentary,1449070898 +213559,88129,atmospheric,1449071003 +213559,88129,Dark,1449071020 +213559,88129,little dialogue,1449071012 +213559,88129,minimalistic,1449071016 +213559,102445,predictable,1453758752 +213559,104841,science,1449070882 +213559,104841,visually appealing,1449070876 +213559,109487,plot holes,1449070831 +213559,109487,sci-fi,1449070836 +213559,109487,thought-provoking,1449070848 +213559,109578,bad physics,1453411378 +213559,114180,dystopia,1449070781 +213559,114180,plot holes,1449070805 +213585,760,germany,1410860283 +213585,760,World War II,1410860290 +213585,3339,overrated,1410860309 +213585,3339,World War II,1410860311 +213585,48783,Clint Eastwood,1410860477 +213585,48783,patriotic,1410860480 +213585,48783,World War II,1410860474 +213585,50068,emotional,1410860519 +213585,50068,japan,1410860521 +213585,50068,World War II,1410860524 +213585,112852,Action,1416606974 +213585,112852,fun,1416606956 +213591,5508,British,1438419135 +213591,5508,Hacienda nightclub,1438419067 +213591,5508,Happy Mondays,1438419109 +213591,5508,Indie Music,1438418929 +213591,5508,Mad-chester,1438418988 +213591,5508,Steve Coogan,1438419169 +213591,68073,60s music,1438418429 +213591,68073,Rhys Ifans,1438418875 +213606,296,stylized,1422321834 +213606,296,tarantino,1422321834 +213606,296,violent,1422321834 +213615,143647,TV Movie,1444084588 +213617,260,exciting,1443693628 +213617,260,old movie,1443693635 +213628,260,Oscar (Best Effects - Visual Effects),1432398548 +213638,1221,dysfunctional family,1442738413 +213638,1221,great acting,1442738410 +213638,1221,organized crime,1442738407 +213638,1221,Robert De Niro,1442738403 +213638,68954,adventure,1442738430 +213638,68954,computer animation,1442738437 +213638,68954,death/fatality,1442738450 +213638,68954,dreams,1442738427 +213638,68954,feel good movie,1442738456 +213638,68954,friendship,1442738443 +213638,68954,predictable,1442738453 +213638,68954,South America,1442738446 +213638,68954,talking animals,1442738441 +213667,260,breakthroughs,1137656825 +213667,318,delights,1137656803 +213667,334,delights,1137656829 +213667,594,breakthroughs,1137656819 +213667,750,breakthroughs,1137656751 +213667,800,delights,1137656771 +213667,858,breakthroughs,1137656762 +213667,899,delights,1137656808 +213667,912,delights,1137656737 +213667,914,delights,1137656792 +213667,919,delights,1137656836 +213667,923,breakthroughs,1137656744 +213667,924,breakthroughs,1137656730 +213667,1028,delights,1137656776 +213667,1077,delights,1137656812 +213667,1186,breakthroughs,1137656921 +213667,1203,delights,1137656852 +213667,1230,delights,1137656857 +213667,1233,breakthroughs,1137656875 +213667,1235,delights,1137656898 +213667,1244,delights,1137656911 +213667,1247,delights,1137656894 +213667,1250,delights,1137656887 +213667,1266,breakthroughs,1137656928 +213667,1278,delights,1137656933 +213667,1292,breakthroughs,1137656863 +213667,1617,delights,1137656903 +213667,1949,great performances,1140673292 +213667,1952,breakthroughs,1140673314 +213667,1965,breakthroughs,1140673360 +213667,2022,breakthroughs,1140673282 +213667,2028,breakthroughs,1140673370 +213667,2132,great performances,1140673338 +213667,2303,breakthroughs,1140673435 +213667,2355,delights,1140673413 +213667,2692,breakthroughs,1140673443 +213667,2971,breakthroughs,1140673385 +213667,3088,delights,1140673424 +213667,3296,delights,1140673457 +213667,3359,delights,1140673404 +213667,3363,breakthroughs,1140673394 +213667,3418,breakthroughs,1140673449 +213667,3469,great performances,1140673547 +213667,3487,delights,1140673538 +213667,3545,breakthroughs,1140673509 +213667,3548,delights,1140673491 +213667,3671,delights,1140673497 +213667,3730,breakthroughs,1140673514 +213667,3996,breakthroughs,1140673531 +213667,4361,delights,1140673581 +213667,4422,great performances,1140673522 +213667,4427,great performances,1140673562 +213667,4555,breakthroughs,1140673575 +213667,4612,breakthroughs,1140673568 +213667,5772,breakthroughs,1137656965 +213667,6184,disappointments,1140673621 +213667,6316,disappointments,1140673633 +213667,7023,breakthroughs,1137833239 +213667,7104,disappointments,1140673645 +213667,33166,breakthroughs,1137830235 +213667,37741,great performances,1139709348 +213667,39183,breakthroughs,1137656669 +213667,39292,historical,1137656465 +213667,42002,disappointments,1137656410 +213667,42004,great performances,1139709416 +213667,42018,delights,1137656681 +213667,42634,easily confused with other movie(s) (title),1255673641 +213667,42723,Oh No This Film Doesn't Promote Murder & Suffering It Just Encourages It!,1157175893 +213667,48744,Underrated,1176489634 +213684,66665,John Krasinski,1255150263 +213684,66934,Captain Hammer,1250169214 +213684,73017,Robert Downey Jr.,1271645805 +213690,260,blockbuster,1439687759 +213690,260,boring,1439687755 +213690,260,broing,1439687747 +213690,132788,Childhood,1439851225 +213708,25921,twins,1447079792 +213708,142184,Asian Films,1445948348 +213708,142184,Korean,1445948331 +213708,144588,Asian Films,1445949880 +213708,144588,Korean,1445949869 +213713,260,"action, scifi",1434695238 +213718,26350,Jack Nicholson,1171892990 +213718,27391,homosexuality,1171892983 +213725,50872,top funniest animation,1199481063 +213732,2360,child abuse,1386581640 +213732,3077,The Up Series,1405572607 +213732,7566,The Up Series,1405569572 +213732,26712,The Up Series,1405569683 +213732,34528,Amy Adams,1409325480 +213732,34528,ECCENTRIC FAMILIES,1409325471 +213732,34528,understated,1409325461 +213732,38499,gay,1387904163 +213732,38499,politics,1387904163 +213732,38499,redemption,1387904163 +213732,45642,AIDS,1396199422 +213732,45642,HIV,1396199442 +213732,45642,realistic,1394433871 +213732,45642,realistic relationships,1394433871 +213732,50658,The Up Series,1405658445 +213732,52767,The Up Series,1405569545 +213732,59138,Ralph Fiennes,1395639037 +213732,84156,dogs,1402983431 +213732,84156,hunting,1402983431 +213732,84156,Werner Herzog,1402983443 +213732,97673,The Up Series,1405658575 +213732,99355,artist,1396198868 +213732,99355,death/fatality,1396198896 +213732,99355,photographer,1396198874 +213732,99355,suicide,1396198886 +213732,101188,ordinary events,1363169916 +213732,101296,Almodovar,1409812205 +213732,105943,gay marriage,1396198058 +213732,105943,gay rights,1396198059 +213732,105943,prejudice,1396198060 +213732,105943,relationships,1396198104 +213732,106165,Bees,1403502272 +213732,106165,food production,1403502272 +213732,106165,sustainability,1403502272 +213732,106972,gay marriage,1386481737 +213732,106972,gay relationship,1386481738 +213732,108778,cruising,1415342080 +213732,108778,gay,1415342100 +213732,108778,nature,1415342074 +213732,108778,suspense,1415342091 +213732,109280,Irish,1396199611 +213732,112342,Kate Winslet,1403502514 +213732,113430,Australia,1408250660 +213732,113430,Invasive Species,1408250660 +213732,113430,nature,1408250676 +213732,113430,nature vs. civilization,1408250676 +213732,113430,toads,1408250660 +213732,113432,ALS,1408256728 +213732,113432,Fundraising,1408256729 +213732,113432,James Heywood,1408256729 +213732,113432,Lou Gehrig,1408256728 +213732,113432,Lour Gehrig's disease,1408256728 +213732,113432,Stephen Heywood,1408256729 +213732,113466,alsace,1408340704 +213732,113466,animation,1408340704 +213732,113466,children's book,1408340704 +213732,113466,erotica,1408340714 +213732,113466,new york,1408340704 +213732,115711,environmentalism,1414827526 +213732,115711,relationships,1414827547 +213732,140816,L.A.,1444368394 +213732,140816,Los Angeles,1444368388 +213732,140816,transexual,1444368382 +213740,8710,bittersweet,1230747307 +213743,2502,office,1151902912 +213743,5829,canada,1145570932 +213743,5829,curling,1145570933 +213745,2,animals,1137938951 +213745,1136,Gilliam,1137939052 +213745,2337,glam,1137940320 +213745,2355,bugs,1137938938 +213745,40278,war,1137939178 +213765,1688,Russian revolution,1233141913 +213765,2409,Stallone,1233141888 +213765,3273,spoof,1233141839 +213825,260,best of the six,1430649525 +213825,260,must see,1430649514 +213825,296,amazing dialogues,1430651589 +213825,296,culte,1430651589 +213825,296,great soundtrack,1430651589 +213854,79684,awful,1326446920 +213854,79684,bad everything,1326446920 +213854,79684,i wanted to kill myself,1326446932 +213854,79684,i wanted to stab my self in the face,1326446942 +213854,79684,no plot,1326446976 +213854,79684,NO substance,1326446976 +213854,79684,REALLY REALLY SHITTY.,1326446976 +213854,79684,regrets,1326446999 +213854,79684,shitty hipster film,1326446999 +213854,79684,the worst movie i've ever seen,1326447010 +213854,79684,There is nothing good in this film,1326447026 +213884,590,can see 100 times no bore at all,1194797788 +213890,52604,Anthony Hopkins,1452371122 +213890,52604,courtroom,1452371118 +213890,52604,twist ending,1452371100 +213890,55820,Relentless,1452370140 +213910,260,space adventure,1441915107 +213910,260,space opera,1441915086 +213941,260,brilliant,1435961602 +213941,260,seminal,1435961611 +213941,135508,amusing,1437094982 +213941,135508,campy,1437094982 +213941,135508,not quite clever enough,1437094982 +213943,6772,astonishing,1234742513 +213988,4901,Brad Pitt,1157651321 +213993,260,epic adventure,1431230928 +213993,260,genius,1431230935 +213998,199,Made me cry,1167020300 +213998,1466,mafia,1250471004 +213998,1466,true story,1250470968 +213998,42015,Classical music,1158348434 +213998,57669,foul language,1250429082 +213998,57669,friendship,1250429013 +213998,62434,foul language,1250457288 +214004,261,Louisa May Alcott,1142992601 +214004,296,hit men,1162955191 +214004,296,Quentin Tarantino,1162955183 +214004,3751,aardman,1142992593 +214004,3751,almost favorite,1142992596 +214004,3751,family,1142992600 +214007,260,Science Fiction,1441751754 +214007,260,space adventure,1441751758 +214012,1245,dark comedy,1186471709 +214012,1245,John Turturro,1186471709 +214012,3263,basketball,1186471734 +214012,3263,Wesley Snipes,1186471734 +214012,6016,Brazil,1186471669 +214012,6016,drugs,1186471669 +214012,6373,comedy,1186471683 +214012,6373,Jim Carrey,1186471652 +214021,1214,sci-fi,1235190466 +214021,1214,space,1235190463 +214021,1527,sci-fi,1235190373 +214021,1779,based on a book,1235190540 +214021,1779,book was better,1235190609 +214021,1779,Michael Crichton,1235190562 +214021,4993,book was better,1235191108 +214021,5952,book was better,1235191144 +214021,6502,post-apocalyptic,1235190810 +214021,6502,sci-fi,1235190809 +214021,6502,Zombie,1235190808 +214021,7153,book was better,1235191120 +214021,8644,book was better,1235190878 +214021,33004,based on a book,1235190508 +214021,33004,sci-fi,1235190513 +214021,33004,space,1235190511 +214021,43928,campy,1235191025 +214021,48394,fantasy,1235190729 +214021,48394,surreal,1235190727 +214025,2501,liz should see,1137150038 +214025,4329,Buddy movie,1137174841 +214026,260,classic,1438722394 +214026,260,Science Fiction,1438722384 +214029,72011,loses the girl,1293330422 +214034,8874,cornetto triolgy,1427311286 +214034,51255,cornetto trilogy,1427311247 +214034,66934,Nathan Fillion,1427311616 +214034,66934,Neil Patrick Harris,1427311611 +214034,103341,cornetto trilogy,1427311259 +214049,412,costume drama,1452805681 +214049,480,dinosaurs,1452800819 +214049,1059,postmodern,1452852898 +214049,1527,retrofuture,1452807097 +214049,1617,neo-noir,1452845927 +214049,1653,retrofuture,1452804170 +214049,1748,neo-noir,1452845804 +214049,2761,retrofuture,1452807110 +214049,2959,postmodern,1452853355 +214049,2997,postmodern,1452853483 +214049,3000,anime,1452806379 +214049,3161,costume drama,1452805446 +214049,4881,neo-noir,1452845938 +214049,4973,picture book style,1452848774 +214049,5618,anime,1452806321 +214049,5882,steampunk,1452800644 +214049,5971,anime,1452806587 +214049,6350,anime,1452801590 +214049,7099,anime,1452806611 +214049,7151,costume drama,1452802164 +214049,7361,postmodern,1452853025 +214049,7669,costume drama,1452805265 +214049,8865,neo-noir,1452845861 +214049,8865,retrofuture,1452807181 +214049,26662,anime,1452806417 +214049,27706,children's classic,1452851920 +214049,31658,anime,1452806384 +214049,49772,costume drama,1452805484 +214049,52287,retrofuture,1452807252 +214049,52443,anime,1452806451 +214049,54259,steampunk,1452800592 +214049,57504,anime,1452806599 +214049,58299,children's classic,1452852126 +214049,62511,postmodern,1452852974 +214049,65261,anime,1452806458 +214049,66097,children's classic,1452851876 +214049,68157,alternate history,1452807826 +214049,68848,picture book style,1452848893 +214049,69757,picture book style,1453323547 +214049,72226,children's classic,1452851934 +214049,74789,children's classic,1452851838 +214049,79357,picture book style,1452848907 +214049,79357,postmodern,1452853375 +214049,79895,dinosaurs,1452805929 +214049,84847,costume drama,1452805585 +214049,85438,costume drama,1452805359 +214049,90645,alternate history,1452807863 +214049,93240,anime,1452806393 +214049,94959,picture book style,1452849019 +214049,95207,alternate history,1452807848 +214049,108825,picture book style,1453323117 +214049,109374,picture book style,1452848759 +214049,114856,steampunk,1452800633 +214049,120130,anime,1452806480 +214049,150375,anime,1452806494 +214077,762,nudity,1330472914 +214077,762,Nudity (Topless - Notable),1330472909 +214077,762,Nudity (Topless),1330472911 +214077,762,watched it for the boobs,1330472919 +214077,2542,British,1338499620 +214077,2542,Nudity (Topless),1338499626 +214077,3688,Nudity (Full Frontal - Notable),1330474203 +214077,3688,Nudity (Full Frontal),1330474209 +214077,57669,british comedy,1360706793 +214077,57669,dark comedy,1360706781 +214077,57669,stylized,1360706783 +214079,50,storytelling,1436075386 +214087,31685,Saw w/ BKD in Trout Lake,1138061992 +214087,31685,WA. Enjoyed.,1138062013 +214092,260,Science Fiction,1432065554 +214092,260,space,1432065538 +214092,117533,documentary,1432066012 +214092,117533,socially relevant,1432066012 +214092,117533,well-made,1432066012 +214093,231,Jeff Daniels,1158856150 +214093,231,Jim Carrey,1158856143 +214093,1777,Adam Sandler,1158856170 +214093,4034,drugs,1158856163 +214094,1625,twist ending,1162072331 +214094,2352,Charles,1162333316 +214094,2352,ensemble cast,1162333308 +214094,6942,Up lifting,1166300324 +214094,55052,Keira Knightley,1206535834 +214094,64614,Detroit,1240140825 +214120,260,great soundtrack,1240855988 +214120,1196,great soundtrack,1240855990 +214120,1240,great soundtrack,1240855995 +214120,1676,space,1142359139 +214120,2455,better than the old version,1240855941 +214120,2634,Hammer Film Productions,1227814617 +214120,2652,Hammer Film Productions,1227814323 +214120,2905,samurai,1240855977 +214120,3030,samurai,1240856007 +214120,3693,troma,1181502660 +214120,3875,Hammer Film Productions,1227814294 +214120,4754,Hammer Film Productions,1227814314 +214120,5244,americanized movies,1240855984 +214120,5383,Hammer Film Productions,1227814271 +214120,5552,Hammer Film Productions,1227814612 +214120,5649,Hammer Film Productions,1227814286 +214120,5971,great soundtrack,1143925896 +214120,6350,great soundtrack,1240855918 +214120,6435,propaganda,1240855968 +214120,6500,Hammer Film Productions,1227949906 +214120,6803,Goblin,1240855973 +214120,6913,Hammer production,1227814047 +214120,7099,post-apocalyptic,1229971595 +214120,7387,Goblin,1240855928 +214120,7885,Hammer Film Productions,1227814593 +214120,7886,Hammer production,1227813925 +214120,7900,Hammer production,1227814025 +214120,8916,remake of a japanese film,1163505525 +214120,26134,Hammer Film Productions,1228937955 +214120,26185,Hammer Film Productions,1228837225 +214120,26269,samurai,1240855949 +214120,26270,samurai,1240855946 +214120,26476,great soundtrack,1240855950 +214120,26701,mecha,1240855972 +214120,26743,Studio Ghibli,1226310493 +214120,26811,Leslie Cheung,1240855913 +214120,26811,wuxia,1240855914 +214120,26913,martial arts,1244638993 +214120,27156,mecha,1240855964 +214120,34048,better than the old version,1240856003 +214120,37335,wuxia,1240855922 +214120,48516,remake of an asian film,1240855934 +214120,51277,Gordon Liu,1240855910 +214120,51277,kung fu,1240855910 +214120,51277,martial arts,1240855910 +214147,48385,extremely funny,1163448037 +214199,39,based on a book,1411797549 +214199,215,dialogue driven,1417771750 +214199,215,generation X,1417771736 +214199,215,reflective,1417771720 +214199,351,children,1392531690 +214199,361,adultery,1411163152 +214199,361,lottery,1411163200 +214199,480,dinosaurs,1420374042 +214199,480,scary,1420374042 +214199,480,steven spielberg,1420374042 +214199,590,native americans,1393148087 +214199,1290,best friends fall in love,1411451148 +214199,1307,Meg Ryan,1411637812 +214199,1894,Harrison Ford,1411487222 +214199,1894,island,1411487255 +214199,1894,stranded,1411487238 +214199,2248,idealistic,1412186284 +214199,2248,john cusack,1412186296 +214199,4016,Eartha Kitt,1439547231 +214199,4016,friendship,1439547255 +214199,4016,funny,1439547226 +214199,4016,Tom Jones,1439547247 +214199,4291,Bechdel Test:Pass,1434288868 +214199,4291,feminism,1434288960 +214199,4291,power fantasy,1434288944 +214199,4835,Appalachia,1409649265 +214199,4835,based on a book,1409649311 +214199,4835,biography,1409649300 +214199,4890,fatphobic,1446182814 +214199,4890,Sexist,1446182796 +214199,5446,history,1410241692 +214199,5446,indigenous,1410241657 +214199,5446,true story,1410241678 +214199,6377,family,1431937759 +214199,6377,father-son relationship,1431937755 +214199,6377,ocean,1431937767 +214199,6549,2000s,1432201470 +214199,6549,divorce,1432201482 +214199,6549,poor script,1432201485 +214199,6549,relationships,1432201500 +214199,6549,teenage angst,1432201508 +214199,6549,undeveloped storyline,1432201487 +214199,7255,one-dimensional characters,1431937596 +214199,7255,sexist,1431937568 +214199,8531,cross dressing,1440155901 +214199,8531,whiteface,1440155867 +214199,8533,beautiful scenery,1410595143 +214199,8843,bad acting,1392972780 +214199,8866,no chemistry,1409905924 +214199,34051,feminism,1409809342 +214199,34051,historical,1409809372 +214199,34051,slow paced,1409809362 +214199,34319,genetics,1433231927 +214199,34319,humanity,1433231921 +214199,40819,addiction,1433653367 +214199,40819,biography,1433653385 +214199,40819,music,1433653363 +214199,40819,music business,1433653360 +214199,43684,african americans,1411606083 +214199,43684,interracial romance,1411605480 +214199,43684,race issues,1411605524 +214199,43930,Chris Pine,1409464219 +214199,43930,cliche,1409464200 +214199,45732,sexist,1409465015 +214199,45732,stupid,1409465035 +214199,47997,dumb,1437893433 +214199,47997,frat boy humor,1437893406 +214199,50685,adultery,1418153403 +214199,51255,action spoof,1439185700 +214199,51255,british comedy,1439185695 +214199,51255,buddy movie,1439185703 +214199,60126,stupid,1446182908 +214199,60397,terrible singing,1410595082 +214199,60684,alternate history,1422143684 +214199,60684,female objectification,1422143691 +214199,60684,male gaze,1422143689 +214199,60684,sexual violence,1422143759 +214199,61250,female friendship,1435998181 +214199,61250,friendship,1435998167 +214199,71535,campy,1433145606 +214199,71535,gore,1433145568 +214199,71535,post-apocalyptic,1433145597 +214199,71535,zombies,1433145592 +214199,76293,mistaken identity,1431937634 +214199,77191,drugs,1434110388 +214199,77191,humor,1434110408 +214199,82202,bland,1434690310 +214199,82202,flat,1434690298 +214199,82202,lazy writing,1434690307 +214199,82202,Venice,1434690292 +214199,88405,New York City,1434092922 +214199,90405,no soul,1436694801 +214199,90405,sci-fi,1436694765 +214199,93326,Love triangle,1436694856 +214199,93326,stalking,1436694834 +214199,94323,Meagan Good,1412666722 +214199,94323,Michael Ealy,1412666714 +214199,94323,Steve Harvey,1412666703 +214199,94478,weak plot,1410175448 +214199,95309,apocalyptic,1409796609 +214199,95309,surprisingly touching,1409796573 +214199,96417,action,1433637166 +214199,96417,bicycling,1433637139 +214199,96417,bike messengers,1433637143 +214199,96417,chase,1433637183 +214199,96417,New York City,1433637195 +214199,97752,suicide,1412837182 +214199,103341,drinking,1409796505 +214199,103341,ending lame,1409796441 +214199,103341,messy script,1409796541 +214199,103341,Rosamund Pike,1409796454 +214199,103341,slow start,1409796485 +214199,103341,stupid,1409796410 +214199,103539,alcohol dependence,1416868572 +214199,103539,drinking,1416868579 +214199,103539,sad,1416868558 +214199,104241,acting,1408775010 +214199,104241,characterization,1408774968 +214199,104241,gore,1408774974 +214199,104241,superhero,1408775021 +214199,104241,violence,1408774992 +214199,104906,annoying characters,1414652942 +214199,104906,poor script,1414652866 +214199,104906,stupid,1414652782 +214199,106197,Darren Criss,1410681748 +214199,106197,dysfunctional family,1410681862 +214199,106197,family,1410681759 +214199,106197,mental hospital,1410681825 +214199,106197,New Jersey,1410681833 +214199,106197,New York City,1410681840 +214199,106197,suicide attempt,1410681772 +214199,106197,writer,1410681898 +214199,106438,based on a true story,1414833805 +214199,106438,bittersweet,1414833831 +214199,106438,Catholicism,1414833742 +214199,106438,Christianity,1414833755 +214199,106438,Ireland,1414833760 +214199,106438,journalism,1414833773 +214199,108190,action,1411944208 +214199,108190,based on a book,1411944084 +214199,108190,dystopia,1411944142 +214199,108190,fighting,1411944233 +214199,108190,scifi,1411944154 +214199,108190,Shailene Woodley,1411944071 +214199,108190,strong female lead,1411944126 +214199,108875,gay romance,1391689345 +214199,108875,lgbt,1391689345 +214199,108877,bakery,1391689934 +214199,108877,baking,1391689935 +214199,108877,love triangle,1391689935 +214199,108877,Taiwan,1391689934 +214199,109781,werewolf,1411275944 +214199,111113,crude humor,1437473002 +214199,111249,based on a true story,1413329422 +214199,111249,biracial character,1413329442 +214199,111249,history,1413329481 +214199,111249,interracial romance,1413329410 +214199,111283,British,1409464105 +214199,111283,cliched,1409464085 +214199,111283,hooking up,1409464000 +214199,111283,low budget,1409464128 +214199,111283,music,1409464007 +214199,111283,music festival,1409464012 +214199,111283,musicians,1409464160 +214199,111283,Natalia Tena,1409463990 +214199,111283,T in the Park,1409464041 +214199,112450,parody,1433673855 +214199,113275,cooking,1407738231 +214199,113275,cross-cultural romance,1407738254 +214199,113275,food,1407738236 +214199,113567,choreography,1408774818 +214199,113567,cliched plot,1408774833 +214199,113567,dance,1408774818 +214199,114180,based on a book,1422143634 +214199,114180,better than book,1422143630 +214199,114906,1940s,1413011362 +214199,114906,arranged marriage,1413011262 +214199,114906,based on a book,1413011376 +214199,114906,Colorado,1413011276 +214199,114906,farming,1413011272 +214199,114906,Keri Russell,1413011198 +214199,114906,pregnancy,1413011289 +214199,114906,World War II,1413011269 +214199,115205,cooking,1413691507 +214199,115212,dating,1413709165 +214199,115212,dogs,1413709170 +214199,117590,crude humor,1437552885 +214199,117590,funny,1437552921 +214199,118760,bittersweet,1437881342 +214199,118760,child refugees,1437881294 +214199,118760,immigration,1437881332 +214199,118760,refugees,1437881298 +214199,118760,war,1437881304 +214199,122892,bloated,1431937702 +214199,122892,hot mess,1431937695 +214199,122892,ooc,1431937673 +214199,122892,sexist,1431937685 +214199,130490,strong female character,1439697091 +214199,134861,comedy,1434279021 +214199,134861,race,1434279027 +214199,134861,stand-up,1434279019 +214211,260,classic,1438066890 +214211,260,sci-fi,1438066878 +214211,296,nonlinear,1438068397 +214211,4226,mind-bending,1438068202 +214211,4226,thought provoking,1438068214 +214211,4878,mindfuck,1438068168 +214211,4878,thought-provoking,1438068158 +214211,4896,fantasy world,1438068935 +214211,5952,fantasy world,1438068453 +214211,7361,mind-bending,1438068111 +214211,7361,thought-provoking,1438068115 +214211,8798,atmospheric,1438068254 +214211,8914,mind-bending,1438068691 +214211,8914,mindfuck,1438068672 +214211,8914,thought-provoking,1438068675 +214211,69951,mind-bending,1438068281 +214211,69951,thought provoking,1438068292 +214211,79132,mindfuck,1438068357 +214211,79132,thought-provoking,1438068344 +214299,1959,poor story line,1334157817 +214301,237,Paris,1188688256 +214301,7147,Ewan McGregor,1188688271 +214307,260,classic,1436972898 +214307,260,science fantasy,1436972908 +214307,1982,slasher,1436991009 +214307,8914,bad science,1436976093 +214307,8914,plot holes,1436975991 +214307,27317,torture,1436981578 +214307,56693,incest,1436985053 +214307,56693,taboo,1436985059 +214307,62203,pretentious,1437129614 +214307,62203,shaky cam,1437129594 +214307,62203,torture,1437129587 +214307,90430,based on a play,1436983717 +214307,90430,one set,1436983861 +214307,109487,plot holes,1436976246 +214307,109487,space travel,1436974073 +214307,109487,time dilation,1436974073 +214307,109487,time paradox,1436974073 +214307,134368,boring,1453890895 +214307,134368,penis,1453890872 +214307,134368,vulgarity,1453890843 +214428,1214,H. R. Giger,1430866133 +214428,1653,visually appealing,1430867769 +214428,5881,visual appealing,1430867845 +214428,26285,cult film,1430865824 +214428,30707,depressing,1430865429 +214428,64716,depressing,1430865501 +214463,6152,Unintentional Humor,1226716918 +214463,6152,vhs,1226716856 +214471,7063,ohsoso,1184707037 +214536,260,nerdy,1436669973 +214536,260,Science Fiction,1436669968 +214547,156,lille fille.,1405643973 +214547,156,men alligevel ender med at være et vildt fedt portræt,1405644007 +214547,156,Portræt af brooklin som er lidt direkte og klodset i sit portrætform,1405644007 +214547,750,har virkelig nogle sjove ting kørende. synes den mister lidt tempo i længden desværre,1418170384 +214547,823,den vipper ml fille og fille-enhalv. jeg satte den et trin op efter den blev lidt i hovedet,1409097109 +214547,823,stor fille. det er virkelig en flot film,1409011212 +214547,904,"det er sjovt, jeg sad og ventede på at objektet ville returne the gaze, hvilket skete til sidst da morderen opdager han bliver beskuet.",1419811870 +214547,904,"det var sgu en meget fin lille film, et fint lille set up",1419811697 +214547,904,er vild med set-up'et. det minder meget om en teaterscene: helt stiliseret og simpel. det virker næsten bevidst overbelyst.,1419807080 +214547,904,"havde lidt lyst til at udvise forsoning tendenser med alfred, og give den en 4'er, men den kunne ikke helt strækkes til det. den strakte sig en anelse for langt ud i anden halvdel af filmen",1419811741 +214547,904,"kan godt lide ham der spiller hoved rollen. må generelt sige at skuespillet er meget mere nuanceret og fint end jeg huskede hitchcock. breakupet med hans kæreste, den stakkels kvinde, var faktisk ret rørerende",1419807133 +214547,1230,"Den har et lidt sjovt sammenfald mellem på en måde at være den store fortælling om kærligheden og på en anden måde at være tilfærdigt, tumlende hen ad vejen-historie, hvor de ikke engang ender op sammen i slutnignen",1417998362 +214547,1244,god lille-slÃ¥et historieudvikling,1414886613 +214547,1244,godt boheme-new yorker-intellektuelt miljø,1414886577 +214547,1244,humorous,1414886556 +214547,1594,ikke set færdig,1377130920 +214547,1836,stor fille,1404253331 +214547,1966,kan ikke helt se hvad det gik ud pÃ¥,1405035995 +214547,1966,lille 4. den slasker lidt ud i slutningen,1405035995 +214547,2202,den havde nogle virkelig gode sceancer kørende for sig,1404253278 +214547,2202,men det var som om det æbede lidt ud til sidst,1404253278 +214547,2542,igen masser af gode karakterer,1418603122 +214547,2542,"plottet er - som de oftest er med ritchie - virkelig velkonstrueret i sin kringelede sving, som altid skaber sjove tilfældigheder.",1418602367 +214547,2732,den er virkelig smuk,1407707659 +214547,2732,især i starten. den bliver desværre lidt slap i det mod enden hvilket er meget ærgerligt,1407707659 +214547,2858,surrealism,1289850738 +214547,2858,thought-provoking,1289850745 +214547,2973,douchbag instruktøren er lidt en kliche i starten hvor han stopper midt i samtalen og siger tilsin diktafon note to self idea for tv series...,1415144926 +214547,2973,ellers okay..,1415144955 +214547,3134,den var meget langsom. men den havde nogle gode momenter og elementer i sig,1412637202 +214547,3949,depressing,1289850719 +214547,4011,stor fille. det er helt vildt så mange gode karakterer der er med i den.,1418517132 +214547,4938,okay gribende og solidt drama,1409530118 +214547,5236,men endte med at slÃ¥ de sædvanlige gode krøller som trækker en ind i spændede drama. dog ikke sÃ¥ medrivende som mange af de andre,1413330296 +214547,5236,startede lidt kedeligt og intetsigende,1413330296 +214547,5339,"Den var virkelig solid. den havde en eller anden fin rytme ved sig, en ro, som bare kørte derudaf i fantastisk balance. Karaktererne og miljøet var fantastisk",1420330423 +214547,5339,"overvejer om det er den bedste woody a film jeg har set. den er oppe mod manhattan, men jeg tror det næsten.",1420330631 +214547,6978,den starter især godt ud,1405808668 +214547,6978,især dens struktur er et fedt projekt: at man hele tiden fælger nogle nye som de første gÃ¥r forbi eller møder,1405808647 +214547,6978,men dropper større potentiale mod slutningen,1405808668 +214547,6993,Den fungerer lidt som en kolage som deles ind a tekststykker mellem scenerne - selvom der er et samlende narrativ gennem alle scenerne. den har virkelig mange fine passager. den var tangerende firre en halve på visse tidspunkter,1415319680 +214547,7043,.,1419894052 +214547,7043,"den fungerer meget som en samling af gode scener i sig selv, frem for ét sammensat narrativ",1419895979 +214547,7043,"den svinger lidt mellem super gode scener og mindre interessante passager, jf. vurdering",1419898040 +214547,7043,"hovedpersonen er simpelthen så smuk og sød. den langsomme udforskning af hende, uden at der altid sker så meget, kan være ret fin i sig selv.",1419895871 +214547,7371,Lars von Trier,1289850693 +214547,7371,Nicole Kidman,1289850691 +214547,7371,philosophical,1289850695 +214547,7371,philosophy,1289850697 +214547,7371,political,1289850699 +214547,8620,god ide som har sine gode pasager og momenter. men den taber tit pusten og bliver kedelig. den fumler lidt ideen pÃ¥ gulvet synes jeg.,1405897066 +214547,8738,a prospos fille: dramaet var ret gribende. eksperimentet var ret interessant. og mange af de æstetiske fragmenter var meget smukke,1409442275 +214547,8738,i starten syntes jeg det stak meget i ørerne. men det blev til tider ret morsomt. i øvrigt var det væsentligt at der kom noget substantielt narrativ pÃ¥ senere hen hvor starten var en bunke fragmenter,1409442220 +214547,8930,"det bedste ved filmen er ikke de små film han laver, men samspillet mellem ham og von trier. han skal udfordre leth og man ved aldrig helt hvornår irritationen er reel over benspændende. det er et sjovt samspil",1420674756 +214547,8949,gavmild,1404057309 +214547,8961,har nogle meget fine ting. men det er ikke helt i top. den er mere eventyragtig og børnefilmagtig end despicable me og megamind,1414541442 +214547,26208,ret stærke løjer,1408576542 +214547,26225,noget tid siden jeg sÃ¥ den. men husker den som meget flot,1409525654 +214547,26225,sÃ¥ den med iii under meget ufokuseret stemning. sÃ¥ den kan genses inden længe,1409873524 +214547,26520,det er en lidt atypisk rohmer især den mÃ¥de den starter pÃ¥ i et allerede etableret og ulykkeligt parforhold. forholdene plejer oftere at etablere sig gennem filmen,1410048673 +214547,26520,en meget gavmild fille.,1410048503 +214547,26520,Octave figuren genial,1410048521 +214547,26928,det er en MEGET gavmild 4'er,1419378670 +214547,26928,scenen hvor de ude på havet synger den sømandsvise han har skrevet er genial,1419374956 +214547,27912,ending,1377784945 +214547,40148,alt det den forsøger at sige om egoet her jeg ikke teoretisk indsigt til at vurdere,1418256795 +214547,40148,"den bruger ret mange forskellige filmiske knep løbende, som er ret interessante. så har den også den der superstylistiske ting kørende som på en måde minder lidt om refens film",1418256768 +214547,40148,den er bare opbygget og fortalt virkelig tight og spændende,1418256840 +214547,40148,den er virkelig vildt konstrueret.,1418256728 +214547,40148,"efter seneste sening vil jeg sige, at 5 er gavmildt, tænkte lidt i en halv stjerne mindre, men what the hell",1418256870 +214547,42602,der var nogle ting der sejlede lidt for den eller som ikke var helt sÃ¥ stramme som man kunne have ønsket - ting der mÃ¥ske ikke blev fuldt op pÃ¥. men alt i alt var den sgu spændende et spændende indblik,1411084767 +214547,43497,de første 10 minutter er helt fantastiske,1408292912 +214547,43497,desværre synes jeg forholdet ml de to er kedsommeligt - det der udgør substansen i filmen - fordi de kun taler om logistikken bag deres møder og om hvorvidt de kan tillade sig og mødes osv.,1408292954 +214547,44195,lille fille,1405384209 +214547,49225,kan ikke finde den,1377294544 +214547,56788,fuld af amerikansk ideologi,1414713244 +214547,58998,den spiller ikke efter de faste strukturer hvilket ellers kunne være forventet. den puller heller ikke nogen lame tricks til alt for billige grin. er positivt overrasket over Segels pen,1413934875 +214547,62849,det er en sjov detalje at deres lille kriminelle kollektiv er relativ tollerant overfor handsome bobs homoseksualitet. det er hele karakterer selvom mange ting er skarpt optrukne,1418688180 +214547,62849,"det er i øvrigt en sjov detalje, at de ene samleje der er i filmen bliver lavet som sådan en hurtigklippet passage, som fremstiller forløb trivielle og komiske. det er meget sjovt",1418688238 +214547,62849,tror det er hans mest vellykkede film,1418688096 +214547,62849,"virkelig tight fortalt. fede miljøer, fantastiske karakterer, godt plot",1418688121 +214547,64278,Film Theory & Criticism,1289850664 +214547,64278,psychoanalysis,1289850648 +214547,64278,Zizek,1289850651 +214547,65259,"Den er meget framentarisk, viser scener på en måde som nok hænger sammen i en historie, men alligevel er meget singulære. det minder mig lidt om godard",1420416479 +214547,65259,ser den lidt som et portræt over sverige. et ret fint portræt. føj hvor er velfærdsinstitutionerne grimme slog det mig i øvrigt.,1420416440 +214547,67997,Den startede virkelig godt. han er genial med hans magtundergravende tørre humor. men da historien begyndte at fylde for meget i anden halvdel af filmen gik det sjove desværre ud af filmen,1416355623 +214547,68919,rigtig fin. det er især fedt hvordan dynamikken forandrer sig helt vildt i deres forhold og ændrer filmen i brud.,1409096828 +214547,68919,solid fille,1409096833 +214547,70978,en lille fille,1410738184 +214547,71027,den var slet ikke sÃ¥ flot som hans forrige film. dramaet var ikke helt oppe at ringe men jeg mÃ¥ indrømme de var lidt fangende,1409270837 +214547,71027,lille 3 en halle.,1409270801 +214547,72011,thoughtful,1289850793 +214547,72848,den del af filmen hvor han bare går rundt og er fattig og stort set laver ingenting går godt nok utrolig meget i tomgang og bliver meget kedelig. Hvis man skal opleve hans kedsomhed og stilleståenhed så er missionen mere end vellykket,1419725761 +214547,72848,den skulle have været mindst 20 min kortere. alle 20 skåret fra fattigdomssekvensen hvor han bare går rundt.,1419727157 +214547,72848,"det er sgu meget interessant, at det handler om en desperat økonomisk nød i den gamle forstand. han tæller bogstaveligt talt mønterne i sin lomme.",1419723691 +214547,72848,"er meget splittet om bedømmelsen. i dens gode perioder tænkte jeg 4, måske sågar 4,5. som helhed med fokus på de dårlige sceancer er vi nærmere en 3'er.",1419727285 +214547,72848,god! jeg elsker parisfilm fra denne her æra,1419724525 +214547,72848,"han lever fra dag til dag på hoteller, han spilder en olieplet på sit ene jakkesæt,",1419723748 +214547,72848,kan godt lide det med at den desperate stadig går rundt i jakkesæt. det er på en måde typisk fransk,1419724360 +214547,72848,man må virkelig sige det er en atypisk rohmer-film. narrativet er for one thing ikke af romantisk karakter. æstetisk minder den måske om nogle af de første kortfilm i de moralske fortællinger.,1419723860 +214547,72848,"Okay, jeg vil måske gerne medgive at den OGSÅ viser det beskidte, fattige paris, men primært i den anden del af filmen",1419724943 +214547,72848,"Slutningen er også meget tynd: han får at vide, at han alligvel har arvet hele lortet, og så kører han væk i hans venners åbne sportsvogn, og så er det det. det er så kort en slutning op fattigdommen som et punktum.",1419727213 +214547,73017,"overvejede at give en gavmild 3'er, men så sluttede med en række af de værste klicheer fra hollywood. jeg er ikke havende det lort",1418861460 +214547,74506,det er virkelig en god paris-film ogsÃ¥,1409096953 +214547,74506,meget fin lille fortælling. har i øvrigt den præcis samme struktur som le collectioneuse,1409096941 +214547,74506,næsten,1409097001 +214547,78272,"den bliver lidt fantastisk til sidst, når hun faktisk endelig møder sin long lost love på en bus. men som helhed er filmen lidt for langsommelig og flad i det synes jeg. hovedpersonen brænder igennem og er meget smuk",1417826247 +214547,79091,stor tre en halve. den var sgu meget hyggelig og sjov. men dens berettermodel og slaskede feelgoodscener gik endnu længere end man kunne forvente af en hollywood animation desværre,1413846149 +214547,80126,den havde nogle rigtig flotte skud,1414190799 +214547,80126,synes desværre den var lidt flad i det. som om der skulle ske en større ting som bare aldrig rigtig skete.,1414190767 +214547,81564,solid fille.,1414453827 +214547,88051,Den var sgu ret fin. den er sÃ¥dan lidt fragmentarisk i det. en masse scener.,1411257848 +214547,89753,spændende. af helvedes til,1417132839 +214547,94266,meget lille tre en halve,1414106653 +214547,97230,gavmild vurdering,1403825261 +214547,103335,den har virkelig mange sjove ting kørende for sig. væsentlig stærkere end den første. synes den lÃ¥ner nogle ting fra moderne sitcom og er i almindelighed meget moderne i sit indhold sÃ¥som netdating. at wifi gÃ¥r i stykker mm,1414369222 +214547,106452,utrolig flot. meget simpel. den starter desværre en del bedre end den slutter synes jeg.,1417641341 +214547,112138,dramaet er som altid tyndt som det overhovedet kommer,1411945534 +214547,112138,gavmild rating,1411945426 +214547,112556,"Der er sågar en 'nu skal jeg fortælle hvad jeg egentlig gjorde sekvens, hvor plottwistet forklares",1416823774 +214547,112556,"Nogle af de første scener hvor de to møder hinanden er noget af det mest corny jeg har set, men i kraft af fortællerforholdene i filmen er der måske en grund til dette. de er utroværdige finder man nemlig ud af",1416823727 +214547,112804,"Den stiller spørgsmålet hvorvidt der er noget dybere spirituelt gemt i øjnene end den blotte materie og 'data', men den tør ikke helt svare på spørgsmålet, hvorfor den ender på en meget åben og uopklaret måde.",1418084678 +214547,112804,"konflikten mellem religion og videnskab kan godt tangere trivialitet nogen gange, men det er ikke så slemt i filmens helhed",1418083608 +214547,112804,"ret interessant billede. Det er utrolig visuelt, med det smukke øje i centrum. Folks øjne og briller er et form for tematisk centrum for visualiteten som fungerer ret flot. Eller analogier, såsom lyset gennem vinduets prisme osv.",1418084574 +214547,112940,svært kedeligt opbygget. sad nærmest og driftede ud og ind gennem det meste af filmen,1416268192 +214553,260,good versus evil,1436917517 +214553,260,space adventure,1436917559 +214553,356,epic,1436917759 +214553,356,fictional biography,1436917759 +214553,356,modern classic,1436917759 +214565,253,atmospheric,1424028698 +214565,253,brad pitt,1424028694 +214565,253,fantasy,1424028684 +214565,253,Kirsten Dunst,1424028680 +214565,253,tom cruise,1424028693 +214565,253,urban fantasy,1424028715 +214565,253,vampire,1424028678 +214565,253,vampires,1424028675 +214565,293,awkward romance,1424028487 +214565,293,dark romance,1424028473 +214565,293,Gary Oldman,1424028442 +214565,293,Jean Reno,1424028454 +214565,293,love story,1424028439 +214565,293,Luc Besson,1424028452 +214565,593,cannibalism,1424029176 +214565,593,disturbing,1424029180 +214565,593,great acting,1424029163 +214565,593,Horror,1424029188 +214565,593,Personal Growth,1424029234 +214565,593,psychological,1424029170 +214565,593,Romantic longing,1424029194 +214565,593,violent,1424029183 +214565,1527,Bruce Willis,1424028820 +214565,1527,Luc Besson,1424028822 +214565,1527,romance,1424028851 +214565,1835,stupid character,1424032443 +214565,2291,beautifully filmed,1424028219 +214565,2291,dark comedy,1424028131 +214565,2291,dreamlike,1424028240 +214565,2291,fairy tale,1424028238 +214565,2291,Gothic,1424028136 +214565,2291,Johnny Depp,1424028200 +214565,2291,loneliness,1424028251 +214565,2291,love story,1424028244 +214565,2291,modern fantasy,1424028211 +214565,2291,surreal,1424028230 +214565,2291,Tim Burton,1424028223 +214565,2291,urban fantasy,1424028174 +214565,3408,Change the world,1424031272 +214565,3408,Julia Roberts,1424031249 +214565,3408,Strong Women,1424031252 +214565,3793,hugh jackman,1424029996 +214565,3793,marvel,1424029990 +214565,3793,mutants,1424030000 +214565,3793,stupid,1424030034 +214565,3793,superhero,1424029984 +214565,3793,wolverine,1424030043 +214565,4018,bad execution,1424031436 +214565,4018,Mel Gibson,1424031428 +214565,4018,stereotypes,1424031431 +214565,4018,stupid,1424031455 +214565,4700,Make over,1424034488 +214565,4700,royalty,1424034483 +214565,4878,atmospheric,1424031083 +214565,4878,emotional,1424031122 +214565,4878,hallucinatory,1424031123 +214565,4878,learn to appreciate,1424031122 +214565,4878,mystery,1424031123 +214565,4878,positive,1424031168 +214565,4878,thought-provoking,1424031078 +214565,4878,time travel,1424031073 +214565,4975,crap,1424031550 +214565,4975,mindfuck,1424031520 +214565,4975,non comprehensive character,1424031573 +214565,4975,psychology,1424031518 +214565,4975,stupid,1424031562 +214565,4975,suicide,1424031528 +214565,4975,surreal,1424031516 +214565,4975,weird,1424031532 +214565,4995,Drama,1424030163 +214565,4995,genius,1424030131 +214565,4995,math,1424030129 +214565,4995,mathematics,1424030126 +214565,4995,mental illness,1424030146 +214565,4995,romance,1424030141 +214565,4995,Russell Crowe,1424030173 +214565,4995,schizophrenia,1424030154 +214565,4995,true story,1424030134 +214565,5349,double life,1424030551 +214565,5349,stupid,1424030596 +214565,5349,Tobey Maguire,1424030538 +214565,5349,waste of time,1424030641 +214565,5445,artificial intelligence,1424029867 +214565,5445,dystopia,1424029905 +214565,5445,future,1424029858 +214565,5445,plot hole,1424029965 +214565,5445,time loop,1424029863 +214565,5445,time travel,1424029896 +214565,5903,Amazing Cinematography,1424032480 +214565,5903,Christian Bale,1424032492 +214565,5903,dystopia,1424032468 +214565,5903,stylized violence,1424032522 +214565,5903,thought-provoking,1424032489 +214565,5989,feel good movie,1424030384 +214565,5989,Leonardo DiCaprio,1424030377 +214565,6266,stupid characters,1424034546 +214565,6373,fantasy,1424031495 +214565,6373,funny,1424031493 +214565,6373,God,1424031500 +214565,6373,humorous,1424031498 +214565,6377,children,1424029829 +214565,6377,Pixar,1424029795 +214565,6377,predictable,1424029835 +214565,6377,too cute,1424029806 +214565,6593,chick flick,1424034516 +214565,6942,inconsistent,1424032224 +214565,6942,infidelity,1424032209 +214565,6942,Keira Knightley,1424032199 +214565,6952,asylum,1424029618 +214565,6952,horror,1424029649 +214565,6952,Psychological horror,1424029614 +214565,6952,psychology,1424029612 +214565,6952,supernatural,1424029632 +214565,7147,bittersweet,1424031345 +214565,7147,boring,1424031376 +214565,7147,Fantasy,1424031347 +214565,7147,magic,1424031355 +214565,7147,romance,1424031360 +214565,7147,story,1424031362 +214565,7147,surrealism,1424031351 +214565,7147,Tim Burton,1424031343 +214565,7153,atmospheric,1424034078 +214565,7153,dialogue,1424034094 +214565,7153,fantasy,1424034073 +214565,7153,great ending,1424034080 +214565,7254,Child abuse,1424032252 +214565,7254,ending sucked,1424032275 +214565,7254,mathematics,1424032260 +214565,7254,time travel,1424032242 +214565,7361,bittersweet,1424030214 +214565,7361,fantasy,1424030238 +214565,7361,kirsten dunst,1424030343 +214565,7361,Kristen Dunst,1424030247 +214565,7361,learn to appreciate,1424030336 +214565,7361,love,1424030221 +214565,7361,melancholy,1424030273 +214565,7361,nonlinear,1424030211 +214565,7361,romance,1424030232 +214565,7361,romantic,1424030272 +214565,7361,thought-provoking,1424030209 +214565,7458,boring,1424032635 +214565,7458,nothing special,1424032729 +214565,8361,apocalypse,1424032770 +214565,8361,boring,1424032766 +214565,8361,catastrophe,1424032750 +214565,8361,natural disaster,1424032751 +214565,8361,unrealistic,1424032754 +214565,8644,artificial intelligence,1424032100 +214565,8644,consistent,1424032137 +214565,8644,funny,1424032112 +214565,8644,future,1424032120 +214565,8644,intelligent,1424032127 +214565,8644,robots,1424032118 +214565,8644,thought provoking,1424032110 +214565,8961,consistent,1424031037 +214565,8961,double life,1424031002 +214565,8961,funny,1424031018 +214565,8961,script,1424030986 +214565,8961,self discovery,1424030981 +214565,8961,supernatural,1424030993 +214565,30793,Bad remake,1424031612 +214565,30793,beautiful pictures,1424031665 +214565,30793,helena bonham carter,1424031609 +214565,30793,misbegotten,1424031636 +214565,30793,weird,1424031625 +214565,30816,bittersweet,1424034618 +214565,30816,hero is a wimp,1424034628 +214565,31685,Eva Mendes,1424029294 +214565,31685,funny,1424029316 +214565,31685,romantic comedy,1424029306 +214565,31685,Will Smith,1424029293 +214565,32587,atmospheric,1424028340 +214565,32587,based on comic,1424028348 +214565,32587,black comedy,1424028363 +214565,32587,Bruce Willis,1424028284 +214565,32587,brutality,1424028366 +214565,32587,cannibalism,1424028352 +214565,32587,comic book,1424028359 +214565,32587,dark romance,1424028413 +214565,32587,film noir,1424028307 +214565,32587,love story,1424028332 +214565,32587,multiple storylines,1424028277 +214565,32587,Quentin Tarantino,1424028282 +214565,32587,storytelling,1424028288 +214565,32587,stylized,1424028357 +214565,32587,violence,1424028361 +214565,33794,Christian Bale,1424030688 +214565,33794,stupid,1424030718 +214565,44195,dark humor,1424032307 +214565,44195,intelligent,1424032325 +214565,45499,bad plot,1424032579 +214565,45499,Hugh Jackman,1424032549 +214565,45499,overload,1424032608 +214565,45499,poor character development,1424032581 +214565,45499,too much,1424032572 +214565,45499,wolverine,1424032553 +214565,45720,fashion,1424034361 +214565,46578,depressing,1424029479 +214565,46578,drugs,1424029449 +214565,46578,dysfunctional family,1424029456 +214565,47099,depressing,1424029400 +214565,49272,Daniel Craig,1424032059 +214565,49272,gambling,1424032066 +214565,49272,missplaced actor,1424032052 +214565,55442,dark comedy,1424028634 +214565,55442,intelligent,1424028597 +214565,57669,dark comedy,1424029031 +214565,57669,dark humor,1424029068 +214565,57669,funny,1424029081 +214565,57669,Ralph Fiennes,1424029047 +214565,60684,bad plot,1424031949 +214565,60684,gore,1424031867 +214565,60684,illogical world,1424031932 +214565,60684,misanthropic,1424031946 +214565,60684,non comprehensive character,1424031893 +214565,60684,sexual violence,1424031962 +214565,60684,stupid,1424031911 +214565,60684,unlikeable characters,1424031971 +214565,60684,violence,1424031865 +214565,69757,annoying,1424031786 +214565,69757,artistic,1424031705 +214565,69757,bad dialogue,1424031741 +214565,69757,boring,1424031758 +214565,69757,depressing,1424031773 +214565,69757,Joseph Gordon-Levitt,1424031702 +214565,69757,overrated,1424031716 +214565,69757,slow,1424031765 +214565,69757,stupid,1424031797 +214565,69757,Zooey Deschanel,1424031699 +214565,72641,feel good,1424031323 +214565,72641,kindness of strangers,1424031294 +214565,72641,Sandra Bullock,1424031291 +214565,72641,Transformation,1424031315 +214565,72641,upper class,1424031300 +214565,74275,black comedy,1424030450 +214565,74275,character development,1424030457 +214565,74275,Ewan McGregor,1424030446 +214565,74275,gay,1424030444 +214565,74275,Jim Carrey,1424030448 +214565,74275,romance,1424030470 +214565,91529,bad script,1424030758 +214565,91529,dark hero,1424030780 +214565,91529,Joseph Gordon-Levitt,1424030785 +214565,91529,non comprehensive character,1424030931 +214565,91529,plot holes,1424030943 +214565,91529,stupid love story,1424030800 +214565,96610,Bruce Willis,1424034108 +214565,96610,Joseph Gordon-Levitt,1424034110 +214565,102903,entertaining,1424028775 +214565,102903,magic,1424028766 +214565,109374,cinematography,1424028913 +214565,109374,funny,1424028924 +214565,109374,Ralph Fiennes,1424028936 +214565,109374,visually appealing,1424028911 +214614,113378,bad story,1425377096 +214614,113378,boring,1425377096 +214614,113378,horrible acting,1425377096 +214628,3285,Danny Boyle,1225293794 +214633,714,Jim Jarmusch,1284914361 +214633,714,Johnny Depp,1284914342 +214633,714,surreal,1284914346 +214633,1464,David Lynch,1284913887 +214633,2076,David Lynch,1284913968 +214633,3262,David Lynch,1284913933 +214633,3328,hip hop,1284914317 +214633,3328,Jim Jarmusch,1284914316 +214633,3328,surreal,1284914317 +214633,3676,cult film,1284914143 +214633,3676,David Lynch,1284914160 +214633,3676,disturbing,1284914140 +214633,3676,surreal,1284914145 +214633,4848,abstract,1284913827 +214633,4848,David Lynch,1284913827 +214633,4848,nonlinear,1284913792 +214633,4848,surreal,1284913827 +214633,7460,Jim Jarmusch,1284914264 +214633,7460,surreal,1284914264 +214633,8507,atmospheric,1284914886 +214633,8507,classic,1284914901 +214633,8507,cult film,1284914895 +214633,34437,Atmospheric,1284914422 +214633,34437,Jim Jarmusch,1284914402 +214633,34437,surreal,1284914402 +214633,49932,David Lynch,1284914087 +214633,49932,surreal,1284914092 +214648,260,sci-fi,1442504789 +214648,260,space action,1442504800 +214651,48394,great villain,1172501761 +214651,48394,sci-fi,1172501780 +214651,48394,Spanish Civil War,1172501751 +214651,48516,Boston,1172567209 +214651,48516,gangsters,1172567195 +214653,55820,ending low budget,1206037908 +214661,78893,Avatar trilogy,1279245249 +214663,296,bruce willis,1439918917 +214663,296,Quentin Tarantino,1439918911 +214663,296,violence,1439918920 +214663,356,historical,1439919026 +214663,356,Oscar Winner,1439919008 +214667,260,sci-fi,1439763251 +214667,260,Star Wars,1439763257 +214698,198,strange,1142409475 +214698,673,first,1142409466 +214698,2001,lethal,1142409494 +214708,112138,hilarious,1418017430 +214745,223,cynical,1186186868 +214745,1527,Milla Jovovich,1186186251 +214745,1907,wholesome,1186182931 +214745,1967,David Bowie,1186186277 +214745,2393,nerdy,1186182897 +214745,2858,midlife crisis,1186186554 +214745,2858,thought-provoking,1186187328 +214745,3752,dumb,1186182917 +214745,3997,absolute crap,1186185818 +214745,4016,Disney,1186185747 +214745,4016,Disney animated feature,1186185749 +214745,4226,interesting,1186187268 +214745,4447,dumb,1186182918 +214745,5618,great anime film,1186182951 +214745,5679,creepy,1186182891 +214745,6934,empowering,1186182880 +214745,26662,anime,1186186020 +214745,26662,Japan,1186186023 +214745,26662,Studio Ghibli,1186186019 +214745,27731,anime,1186185993 +214745,27731,Japan,1186185685 +214745,27801,fighting,1186186202 +214745,27801,thai boxing,1186186199 +214745,45672,Be satisfied with your life little man,1186185800 +214745,45950,interesting,1186187235 +214760,260,classic,1438633240 +214760,260,classic sci-fi,1438633303 +214760,260,good action,1438633265 +214760,260,sequel,1438633278 +214760,260,touching,1438633253 +214760,356,biography,1438633569 +214760,356,classic,1438633569 +214760,356,great acting,1438633569 +214760,356,success story,1438633569 +214760,356,touching,1438633569 +214774,260,SF,1436689443 +214774,260,space adventure,1436689451 +214819,34,AFI 100 (Cheers),1177004481 +214819,50,Oscar (Best Supporting Actor),1176739637 +214819,110,AFI 100 (Cheers),1177004894 +214819,110,AFI 100 (Thrills),1177126074 +214819,110,Mel Gibson,1177004860 +214819,110,Oscar (Best Cinematography),1177004729 +214819,110,Oscar (Best Directing),1177004724 +214819,110,Oscar (Best Picture),1177004781 +214819,110,Scotland,1177004748 +214819,111,AFI 100,1176908058 +214819,111,AFI 100 (Movie Quotes),1177375825 +214819,111,AFI 100 (Thrills),1177125945 +214819,150,AFI 100 (Cheers),1176998399 +214819,150,AFI 100 (Movie Quotes),1177375894 +214819,150,NASA,1176998373 +214819,150,Oscar (Best Editing),1176998383 +214819,150,Oscar (Best Sound),1176998380 +214819,150,Tom Hanks,1176998341 +214819,235,Oscar (Best Supporting Actor),1177361252 +214819,260,70mm,1176845020 +214819,260,AFI 100,1176845113 +214819,260,AFI 100 (Cheers),1176997148 +214819,260,AFI 100 (Movie Quotes),1177375802 +214819,260,AFI 100 (Thrills),1177125931 +214819,260,franchise,1176844923 +214819,260,George Lucas,1176845093 +214819,260,Harrison Ford,1176844974 +214819,260,Oscar (Best Art Direction - Set Decoration),1176845057 +214819,260,Oscar (Best Costume Design),1176845086 +214819,260,Oscar (Best Effects - Visual Effects),1176845016 +214819,260,Oscar (Best Sound),1176845074 +214819,260,Saturn Award (Best Costumes),1176844935 +214819,260,Saturn Award (Best Makeup),1176844932 +214819,260,Saturn Award (Best Science Fiction Film),1176845031 +214819,260,Saturn Award (Best Special Effects),1176845001 +214819,260,Saturn Award (Best Supporting Actor),1176751904 +214819,260,Saturn Award (Best Writing),1176844951 +214819,260,Sci-Fi,1176845041 +214819,260,space,1176844989 +214819,260,USA film registry,1176818943 +214819,277,70mm,1177015597 +214819,296,AFI 100,1176931979 +214819,296,AFI 100 (Thrills),1177125855 +214819,296,Oscar (Best Screenplay),1176931748 +214819,296,Oscar (Best Writing - Screenplay Written Directly for the Screen),1176931726 +214819,296,Quentin Tarantino,1176931664 +214819,296,Samuel L. Jackson,1176931735 +214819,316,aliens,1176822665 +214819,316,pyramids,1176822678 +214819,316,space,1176822671 +214819,318,AFI 100 (Cheers),1177016932 +214819,318,Morgan Freeman,1177016717 +214819,318,prison,1177016784 +214819,356,AFI 100,1176930962 +214819,356,AFI 100 (Cheers),1176996961 +214819,356,AFI 100 (Movie Quotes),1177375578 +214819,356,Oscar (Best Actor),1176749308 +214819,356,Oscar (Best Directing),1176749029 +214819,356,Oscar (Best Editing),1176930907 +214819,356,Oscar (Best Effects - Visual Effects),1176930874 +214819,356,Oscar (Best Picture),1176930941 +214819,356,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176749299 +214819,356,Saturn Award (Best Fantasy Film),1176749324 +214819,356,Saturn Award (Best Supporting Actor),1176749313 +214819,356,Tom Hanks,1176930932 +214819,356,Vietnam,1176930884 +214819,377,AFI 100 (Thrills),1177163417 +214819,457,AFI 100 (Thrills),1177127495 +214819,457,Harrison Ford,1177127474 +214819,457,Oscar (Best Supporting Actor),1177127468 +214819,477,AFI 100 (Cheers),1177017167 +214819,480,AFI 100 (Thrills),1177127848 +214819,480,Dinosaurs,1177127840 +214819,480,franchise,1177127731 +214819,480,Oscar (Best Effects - Sound Effects Editing),1177127746 +214819,480,Oscar (Best Effects - Visual Effects),1177127775 +214819,480,Oscar (Best Sound),1177127755 +214819,480,Saturn Award (Best Director),1177127834 +214819,480,Saturn Award (Best Science Fiction Film),1177127830 +214819,480,Saturn Award (Best Special Effects),1177127737 +214819,480,Saturn Award (Best Writing),1177127760 +214819,480,Sci-Fi,1177127752 +214819,480,Steven Spielberg,1177127767 +214819,500,AFI 100 (Laughs),1177102443 +214819,500,Robin Williams,1177102433 +214819,508,AFI 100 (Cheers),1177016067 +214819,508,Oscar (Best Actor),1177016050 +214819,508,Tom Hanks,1177016040 +214819,524,AFI 100 (Cheers),1177016329 +214819,527,AFI 100,1176844458 +214819,527,AFI 100 (Cheers),1176996744 +214819,527,holocaust,1176844361 +214819,527,Oscar (Best Art Direction - Set Decoration),1176844471 +214819,527,Oscar (Best Cinematography),1176820781 +214819,527,Oscar (Best Directing),1176820785 +214819,527,Oscar (Best Picture),1176844466 +214819,527,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176820773 +214819,527,WWII,1176844492 +214819,529,AFI 100 (Cheers),1177016625 +214819,541,70mm,1177126847 +214819,541,AFI 100 (Thrills),1177126970 +214819,541,androids,1177126937 +214819,541,Harrison Ford,1177126829 +214819,541,sci-fi,1177126892 +214819,553,SHERIFFS AND OUTLAWS,1176822593 +214819,589,70mm,1177163651 +214819,589,AFI 100 (Movie Quotes),1177376426 +214819,589,AFI 100 (Thrills),1177163688 +214819,589,Arnold Schwarzenegger,1177163597 +214819,589,Oscar (Best Effects - Sound Effects Editing),1177163578 +214819,589,Oscar (Best Effects - Visual Effects),1177163589 +214819,589,Oscar (Best Makeup),1177163567 +214819,589,Oscar (Best Sound),1177163552 +214819,589,robots,1177163612 +214819,589,Saturn Award (Best Actress),1177163636 +214819,589,Saturn Award (Best Director),1177163633 +214819,589,Saturn Award (Best Performance by a Younger Actor),1177163563 +214819,589,Saturn Award (Best Science Fiction Film),1177163622 +214819,589,Saturn Award (Best Special Effects),1176820673 +214819,589,Sci-Fi,1177163561 +214819,589,Time travel,1177163558 +214819,590,70mm,1176841641 +214819,590,AFI 100,1176841607 +214819,590,AFI 100 (Cheers),1176996925 +214819,590,Based on book,1176818301 +214819,590,indians,1176818604 +214819,590,Oscar (Best Cinematography),1176819184 +214819,590,Oscar (Best Directing),1176818598 +214819,590,Oscar (Best Editing),1176841688 +214819,590,Oscar (Best Music - Original Score),1176841604 +214819,590,Oscar (Best Picture),1176841621 +214819,590,Oscar (Best Sound),1176841652 +214819,590,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176819186 +214819,590,US history,1176819178 +214819,590,war,1176841663 +214819,593,AFI 100,1176930648 +214819,593,AFI 100 (Movie Quotes),1177375776 +214819,593,AFI 100 (Thrills),1177125910 +214819,593,Oscar (Best Actor),1176930434 +214819,593,Oscar (Best Actress),1176930451 +214819,593,Oscar (Best Directing),1176749036 +214819,593,Oscar (Best Picture),1176930516 +214819,593,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176822716 +214819,593,Saturn Award (Best Actor),1176930482 +214819,593,Saturn Award (Best Horror Film),1176930432 +214819,593,Saturn Award (Best Makeup),1176930454 +214819,593,Saturn Award (Best Writing),1176930421 +214819,593,serial killer,1176930548 +214819,594,AFI 100,1176908224 +214819,594,Disney,1176908215 +214819,594,USA film registry,1176908209 +214819,596,AFI 100 (Cheers),1177016108 +214819,596,Disney,1177016103 +214819,599,70mm,1176820541 +214819,599,AFI 100,1176820533 +214819,599,AFI 100 (Thrills),1177125993 +214819,608,AFI 100,1176931492 +214819,608,AFI 100 (Laughs),1177017731 +214819,608,Coen Brothers,1176931449 +214819,608,Oscar (Best Actress),1176931415 +214819,750,AFI 100,1176863140 +214819,750,AFI 100 (Laughs),1177017713 +214819,750,AFI 100 (Movie Quotes),1177375548 +214819,750,classic,1176863082 +214819,750,nuclear war,1176863088 +214819,750,Stanley Kubrick,1176863065 +214819,750,USA film registry,1176863033 +214819,858,AFI 100,1176825361 +214819,858,AFI 100 (Movie Quotes),1177375605 +214819,858,AFI 100 (Thrills),1177125728 +214819,858,Classic,1176825284 +214819,858,mafia,1176825277 +214819,858,Oscar (Best Actor),1176822377 +214819,858,Oscar (Best Picture),1176825383 +214819,898,AFI 100,1176842673 +214819,898,AFI 100 (Laughs),1177017877 +214819,898,Oscar (Best Actor),1176819936 +214819,899,AFI 100,1176844552 +214819,899,AFI 100 (Laughs),1177017922 +214819,899,USA film registry,1176844539 +214819,900,AFI 100,1176930724 +214819,900,Oscar (Best Cinematography),1176817956 +214819,900,Oscar (Best Picture),1176930712 +214819,903,70mm,1176930145 +214819,903,AFI 100,1176930209 +214819,903,AFI 100 (Thrills),1177125980 +214819,903,Alfred Hitchcock,1176930148 +214819,903,classic,1176930198 +214819,903,USA film registry,1176930171 +214819,904,AFI 100,1176826468 +214819,904,AFI 100 (Thrills),1177125874 +214819,904,Alfred Hitchcock,1176826488 +214819,904,classic,1177125874 +214819,904,Grace Kelly,1176826472 +214819,904,Hitchcock,1176826477 +214819,904,Hollywood,1176819671 +214819,904,James Stewart,1176826416 +214819,904,voyeurism,1176826462 +214819,905,AFI 100,1176864077 +214819,905,AFI 100 (Laughs),1177017786 +214819,905,Oscar (Best Actor),1176864055 +214819,905,Oscar (Best Actress),1176818081 +214819,905,Oscar (Best Directing),1176864057 +214819,905,Oscar (Best Picture),1176864059 +214819,906,AFI 100 (Thrills),1177127565 +214819,906,Oscar (Best Actress),1177127560 +214819,908,AFI 100,1176865859 +214819,908,AFI 100 (Thrills),1177125817 +214819,908,Alfred Hitchcock,1176865846 +214819,908,Classic,1177125817 +214819,909,AFI 100,1176827806 +214819,909,AFI 100 (Laughs),1177018391 +214819,909,Billy Wilder,1176827815 +214819,909,Jack Lemmon,1176827813 +214819,909,Oscar (Best Directing),1176818277 +214819,909,Oscar (Best Picture),1176827801 +214819,910,AFI 100,1176844850 +214819,910,AFI 100 (Laughs),1177017933 +214819,910,AFI 100 (Movie Quotes),1177375786 +214819,910,classic,1176844816 +214819,910,USA film registry,1176844808 +214819,912,AFI 100,1176843987 +214819,912,AFI 100 (Cheers),1176996884 +214819,912,AFI 100 (Movie Quotes),1177375499 +214819,912,AFI 100 (Thrills),1177125626 +214819,912,Classic,1176843906 +214819,912,Film Noir,1176843901 +214819,912,Oscar (Best Directing),1176751634 +214819,912,Oscar (Best Picture),1176843913 +214819,912,USA film registry,1176843859 +214819,913,AFI 100,1176826134 +214819,913,AFI 100 (Movie Quotes),1177375676 +214819,913,AFI 100 (Thrills),1177125790 +214819,913,film-noir,1176818522 +214819,913,USA film registry,1176819642 +214819,914,70mm,1176820491 +214819,914,AFI 100,1176818663 +214819,914,classic,1176842624 +214819,914,Musical,1176842622 +214819,914,Oscar (Best Actor),1176818134 +214819,914,Oscar (Best Cinematography),1176818127 +214819,914,Oscar (Best Directing),1176818359 +214819,914,Oscar (Best Director),1176842614 +214819,914,Oscar (Best Picture),1176842617 +214819,916,Oscar (Best Actress),1176739229 +214819,919,AFI 100,1176820049 +214819,919,AFI 100 (Cheers),1177017341 +214819,919,AFI 100 (Movie Quotes),1177375853 +214819,919,AFI 100 (Thrills),1177126003 +214819,919,classic,1177126003 +214819,919,USA film registry,1176820001 +214819,920,70mm,1176841848 +214819,920,AFI 100,1176841844 +214819,920,AFI 100 (Cheers),1176996983 +214819,920,AFI 100 (Movie Quotes),1177375616 +214819,920,Civil War,1176819287 +214819,920,Classic,1176818630 +214819,920,Oscar (Best Actress),1176818048 +214819,920,Oscar (Best Cinematography),1176818053 +214819,920,Oscar (Best Directing),1176818619 +214819,920,Oscar (Best Picture),1176841837 +214819,920,Oscar (Best Supporting Actress),1176818058 +214819,920,USA film registry,1176819850 +214819,922,AFI 100,1176826727 +214819,922,AFI 100 (Movie Quotes),1177375818 +214819,922,Billy Wilder,1176826805 +214819,922,classic,1176826761 +214819,922,Hollywood,1176820403 +214819,922,Los Angeles,1176820135 +214819,922,Oscar (Best Art Direction),1176818251 +214819,922,Oscar (Best Music - Original Score),1176826724 +214819,922,Oscar (Best Music),1176820399 +214819,922,Oscar (Best Screenplay),1176826746 +214819,922,Oscar Nominee: Lead Actress,1176819677 +214819,922,USA film registry,1176819680 +214819,923,AFI 100,1176843767 +214819,923,AFI 100 (Movie Quotes),1177375516 +214819,923,classic,1177375516 +214819,923,Oscar (Best Writing - Screenplay Written Directly for the Screen),1176843695 +214819,923,USA film registry,1176843711 +214819,924,70mm,1176845305 +214819,924,AFI 100,1176845383 +214819,924,AFI 100 (Cheers),1176996840 +214819,924,AFI 100 (Movie Quotes),1177375432 +214819,924,AFI 100 (Thrills),1177125531 +214819,924,classic,1176845285 +214819,924,Kubrick,1176845351 +214819,924,Oscar (Best Effects - Visual Effects),1176845347 +214819,924,sci-fi,1176845312 +214819,924,space,1176818975 +214819,926,AFI 100,1176825698 +214819,926,AFI 100 (Movie Quotes),1177375447 +214819,926,classic,1176825719 +214819,926,Hollywood,1176819605 +214819,926,Oscar (Best Directing),1176751616 +214819,926,Oscar (Best Picture),1176825707 +214819,926,Oscar (Best Supporting Actor),1176738626 +214819,928,AFI 100 (Thrills),1177162980 +214819,928,Alfred Hitchcock,1177162972 +214819,928,Oscar (Best Cinematography),1177162963 +214819,928,Oscar (Best Picture),1177162966 +214819,930,AFI 100 (Thrills),1177159689 +214819,930,Alfred Hitchcock,1177159684 +214819,930,Oscar Nominee: Supporting Actor,1177162499 +214819,934,AFI 100 (Laughs),1177101624 +214819,936,AFI 100 (Laughs),1177102534 +214819,940,AFI 100 (Thrills),1177126598 +214819,942,AFI 100 (Thrills),1177127871 +214819,942,Oscar (Best Cinematography),1177127863 +214819,946,AFI 100 (Laughs),1177103085 +214819,947,AFI 100 (Laughs),1177102466 +214819,948,AFI 100,1176931304 +214819,948,Oscar (Best Directing),1176931283 +214819,950,AFI 100 (Laughs),1177102980 +214819,951,AFI 100 (Laughs),1177102148 +214819,953,AFI 100,1176842516 +214819,953,AFI 100 (Cheers),1176996669 +214819,953,christmas,1176819925 +214819,953,Classic,1176996668 +214819,954,AFI 100,1176863951 +214819,954,AFI 100 (Cheers),1176997055 +214819,954,classic,1176863933 +214819,954,politics,1176863957 +214819,954,USA film registry,1176863913 +214819,955,AFI 100,1176828315 +214819,955,AFI 100 (Laughs),1177017666 +214819,955,Cary Grant,1176833238 +214819,955,Classic,1177017665 +214819,955,Katherine Hepburn,1176833236 +214819,968,AFI 100 (Thrills),1177128213 +214819,969,AFI 100,1176845162 +214819,969,AFI 100 (Cheers),1176998107 +214819,969,classic,1176845149 +214819,969,Oscar (Best Actor),1176845138 +214819,973,AFI 100 (Cheers),1177015577 +214819,1035,70mm,1176908617 +214819,1035,AFI 100,1176908680 +214819,1035,AFI 100 (Cheers),1177016972 +214819,1035,classic,1176908646 +214819,1035,Oscar (Best Directing),1176908642 +214819,1035,Oscar (Best Editing),1176908623 +214819,1035,Oscar (Best Picture),1176908654 +214819,1035,Oscar (Best Sound),1176908656 +214819,1036,70mm,1177127242 +214819,1036,AFI 100 (Thrills),1177127271 +214819,1036,Bruce Willis,1177127244 +214819,1077,AFI 100 (Laughs),1177102892 +214819,1078,AFI 100 (Laughs),1177100127 +214819,1079,AFI 100 (Laughs),1177018259 +214819,1079,Oscar (Best Supporting Actor),1177018243 +214819,1081,AFI 100 (Laughs),1177103179 +214819,1081,Oscar (Best Music - Original Score),1177103177 +214819,1084,AFI 100,1176863808 +214819,1084,AFI 100 (Movie Quotes),1177375482 +214819,1084,AFI 100 (Thrills),1177125591 +214819,1084,classic,1176863781 +214819,1084,Oscar (Best Cinematography),1176863776 +214819,1084,Oscar (Best Supporting Actress),1176863778 +214819,1086,AFI 100 (Thrills),1177127218 +214819,1086,Alfred Hitchcock,1177127210 +214819,1088,AFI 100 (Movie Quotes),1177376549 +214819,1090,70mm,1176931363 +214819,1090,AFI 100,1176931375 +214819,1090,AFI 100 (Thrills),1177125835 +214819,1090,Oscar (Best Directing),1176931340 +214819,1090,Oscar (Best Editing),1176931366 +214819,1090,Oscar (Best Picture),1176931360 +214819,1090,Oscar (Best Sound),1176931320 +214819,1090,Vietnam War,1176931346 +214819,1097,70mm,1176862917 +214819,1097,AFI 100,1176862992 +214819,1097,AFI 100 (Cheers),1176996950 +214819,1097,AFI 100 (Movie Quotes),1177375557 +214819,1097,AFI 100 (Thrills),1177125693 +214819,1097,aliens,1176862947 +214819,1097,sci-fi,1176862972 +214819,1101,70mm,1177377338 +214819,1101,AFI 100 (Movie Quotes),1177377376 +214819,1101,Oscar (Best Music - Original Song),1177377328 +214819,1103,AFI 100,1176818376 +214819,1104,AFI 100,1176842922 +214819,1104,AFI 100 (Movie Quotes),1177375810 +214819,1104,Oscar (Best Actress),1176751387 +214819,1104,Oscar (Best Supporting Actor),1176842916 +214819,1104,Oscar (Best Supporting Actress),1176751385 +214819,1124,AFI 100 (Cheers),1177015950 +214819,1124,AFI 100 (Movie Quotes),1177376010 +214819,1124,Oscar (Best Actor),1177015946 +214819,1124,Oscar (Best Actress),1177015940 +214819,1127,Saturn Award (Best Director),1176818985 +214819,1135,AFI 100 (Laughs),1177102681 +214819,1136,satirical,1176822262 +214819,1183,Oscar (Best Cinematography),1177361826 +214819,1183,Oscar (Best Directing),1177361851 +214819,1183,Oscar (Best Picture),1177361854 +214819,1183,Oscar (Best Supporting Actress),1177361828 +214819,1193,AFI 100,1176826341 +214819,1193,AFI 100 (Cheers),1176997077 +214819,1193,Jack Nicholson,1176826211 +214819,1193,Milos Forman,1176826287 +214819,1193,Oscar (Best Actor),1176819663 +214819,1193,Oscar (Best Actress),1176818534 +214819,1193,Oscar (Best Directing),1176818530 +214819,1193,Oscar (Best Picture),1176826312 +214819,1193,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176819649 +214819,1194,drugs,1176825086 +214819,1196,franchise,1176844899 +214819,1196,Saturn Award (Best Special Effects),1176844903 +214819,1196,space,1176844900 +214819,1198,70mm,1176996463 +214819,1198,AFI 100,1176996545 +214819,1198,AFI 100 (Thrills),1177125867 +214819,1198,archaeology,1176909124 +214819,1198,franchise,1176996368 +214819,1198,Harrison Ford,1176996437 +214819,1198,Oscar (Best Art Direction - Set Decoration),1176996380 +214819,1198,Oscar (Best Editing),1176996418 +214819,1198,Oscar (Best Effects - Visual Effects),1176996400 +214819,1198,Oscar (Best Sound),1176996487 +214819,1198,Saturn Award (Best Actor),1176996403 +214819,1198,Saturn Award (Best Actress),1176996503 +214819,1198,Saturn Award (Best Director),1176996507 +214819,1198,Saturn Award (Best Fantasy Film),1176996376 +214819,1198,Saturn Award (Best Music),1176996397 +214819,1198,Saturn Award (Best Special Effects),1176909112 +214819,1198,Saturn Award (Best Writing),1176996361 +214819,1200,franchise,1177361120 +214819,1200,Saturn Award (Best Performance by a Younger Actor),1177361130 +214819,1200,Saturn Award (Best Special Effects),1176822506 +214819,1200,Saturn Award (Best Supporting Actor),1176822511 +214819,1200,Saturn Award (Best Supporting Actress),1176822509 +214819,1200,scifi,1176819030 +214819,1200,space,1176819033 +214819,1203,AFI 100 (Cheers),1176997683 +214819,1203,AFI 100 (Thrills),1177126032 +214819,1203,Classic,1177126032 +214819,1204,70mm,1176844026 +214819,1204,AFI 100,1176844070 +214819,1204,AFI 100 (Cheers),1176997039 +214819,1204,AFI 100 (Thrills),1177125777 +214819,1204,classic,1176844035 +214819,1204,Oscar (Best Cinematography),1176819522 +214819,1204,Oscar (Best Directing),1176819541 +214819,1204,Oscar (Best Picture),1176844023 +214819,1206,AFI 100,1176833361 +214819,1206,AFI 100 (Thrills),1177126574 +214819,1206,brainwashing,1176833442 +214819,1206,Stanley Kubrick,1176833465 +214819,1207,AFI 100,1176826925 +214819,1207,AFI 100 (Cheers),1176996704 +214819,1207,classic,1176996704 +214819,1207,Gregory Peck,1176826941 +214819,1207,Oscar (Best Actor),1176820414 +214819,1207,racism,1176826976 +214819,1208,70mm,1176828046 +214819,1208,AFI 100,1176828043 +214819,1208,AFI 100 (Movie Quotes),1177375466 +214819,1208,classic,1176828093 +214819,1208,Francis Ford Copolla,1176828096 +214819,1208,Oscar (Best Cinematography),1176819704 +214819,1208,Vietnam,1176828105 +214819,1208,war,1176828072 +214819,1210,franchise,1176844907 +214819,1210,space,1176844909 +214819,1212,AFI 100,1176826832 +214819,1212,AFI 100 (Thrills),1177125963 +214819,1212,Carol Reed,1176826848 +214819,1212,classic,1176826852 +214819,1212,Oscar (Best Cinematography),1176818553 +214819,1212,vienna,1176818561 +214819,1213,AFI 100,1176841962 +214819,1213,mafia,1176841946 +214819,1213,Martin Scorsese,1176841994 +214819,1213,Oscar (Best Supporting Actor),1176841935 +214819,1214,70mm,1177126665 +214819,1214,AFI 100 (Thrills),1177126740 +214819,1214,aliens,1177126637 +214819,1214,franchise,1177126635 +214819,1214,Oscar (Best Effects - Visual Effects),1177126642 +214819,1214,Saturn Award (Best Director),1177126651 +214819,1214,Saturn Award (Best Science Fiction Film),1177126687 +214819,1214,Saturn Award (Best Supporting Actress),1176819021 +214819,1214,sci-fi,1177126662 +214819,1214,Sigourney Weaver,1177126735 +214819,1214,space,1176819025 +214819,1217,70mm,1177361164 +214819,1217,Kurosawa,1177361171 +214819,1217,samurai,1176818935 +214819,1219,AFI 100,1176842760 +214819,1219,AFI 100 (Movie Quotes),1177375735 +214819,1219,AFI 100 (Thrills),1177125842 +214819,1219,Alfred Hitchcock,1176842768 +214819,1219,classic,1177375735 +214819,1219,horror,1176842733 +214819,1221,AFI 100,1176826036 +214819,1221,AFI 100 (Movie Quotes),1177375608 +214819,1221,Al Pacino,1176826050 +214819,1221,Classic,1176818233 +214819,1221,Francis Ford Copolla,1176826080 +214819,1221,mafia,1176818517 +214819,1221,Oscar (Best Directing),1176818232 +214819,1221,Oscar (Best Picture),1176826025 +214819,1221,Oscar (Best Supporting Actor),1176822361 +214819,1222,AFI 100 (Thrills),1177127543 +214819,1222,Vietnam,1177127528 +214819,1222,Vietnam War,1177127509 +214819,1225,AFI 100,1176908523 +214819,1225,Mozart,1176908508 +214819,1225,opera,1176819039 +214819,1225,Oscar (Best Actor),1176751848 +214819,1225,Oscar (Best Art Direction - Set Decoration),1176908472 +214819,1225,Oscar (Best Costume Design),1176908500 +214819,1225,Oscar (Best Directing),1176751841 +214819,1225,Oscar (Best Makeup),1176751845 +214819,1225,Oscar (Best Picture),1176751862 +214819,1225,Oscar (Best Sound),1176908487 +214819,1225,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176751828 +214819,1228,AFI 100,1176842836 +214819,1228,AFI 100 (Thrills),1177125862 +214819,1228,boxing,1176818367 +214819,1228,Oscar (Best Actor),1176819942 +214819,1230,AFI 100,1176827611 +214819,1230,AFI 100 (Laughs),1177017643 +214819,1230,AFI 100 (Movie Quotes),1177375454 +214819,1230,Oscar (Best Actress),1176817962 +214819,1230,Oscar (Best Directing),1176818573 +214819,1230,Oscar (Best Picture),1176827647 +214819,1231,70mm,1177016293 +214819,1231,AFI 100 (Cheers),1177016308 +214819,1231,NASA,1177016302 +214819,1233,submarine,1176819100 +214819,1234,Oscar (Best Directing),1176822661 +214819,1235,AFI 100 (Cheers),1177005851 +214819,1235,AFI 100 (Laughs),1177018064 +214819,1240,AFI 100 (Movie Quotes),1177376431 +214819,1240,AFI 100 (Thrills),1177163517 +214819,1240,Arnold Schwarzenegger,1177163477 +214819,1240,Saturn Award (Best Makeup),1177163480 +214819,1240,Saturn Award (Best Science Fiction Film),1177163513 +214819,1240,Saturn Award (Best Writing),1176740687 +214819,1240,sci-fi,1177376431 +214819,1240,time travel,1177163499 +214819,1242,AFI 100 (Cheers),1177005794 +214819,1242,based on book,1176819277 +214819,1242,Civil War,1176819271 +214819,1242,Oscar (Best Cinematography),1176753475 +214819,1242,Oscar (Best Supporting Actor),1176753472 +214819,1244,AFI 100 (Laughs),1177102319 +214819,1246,70mm,1177005263 +214819,1246,AFI 100 (Cheers),1177005285 +214819,1246,AFI 100 (Movie Quotes),1177375932 +214819,1246,Robin Williams,1177005269 +214819,1247,AFI 100,1176844266 +214819,1247,AFI 100 (Laughs),1177017759 +214819,1247,AFI 100 (Movie Quotes),1177375627 +214819,1247,classic,1176844250 +214819,1247,Oscar (Best Directing),1176844209 +214819,1248,AFI 100 (Thrills),1177163866 +214819,1250,70mm,1176844652 +214819,1250,AFI 100,1176844764 +214819,1250,AFI 100 (Cheers),1176997556 +214819,1250,AFI 100 (Thrills),1177125610 +214819,1250,Oscar (Best Actor),1176819112 +214819,1250,Oscar (Best Cinematography),1176819114 +214819,1250,Oscar (Best Directing),1176753237 +214819,1250,Oscar (Best Picture),1176844654 +214819,1250,World War II,1176844684 +214819,1252,AFI 100,1176825812 +214819,1252,AFI 100 (Movie Quotes),1177375510 +214819,1252,AFI 100 (Thrills),1177127160 +214819,1252,Film Noir,1176820383 +214819,1252,Los Angeles,1176819618 +214819,1252,Oscar (Best Writing - Screenplay Written Directly for the Screen),1176818212 +214819,1253,AFI 100 (Cheers),1177005229 +214819,1253,AFI 100 (Thrills),1177126103 +214819,1254,AFI 100,1176864032 +214819,1254,AFI 100 (Movie Quotes),1177375843 +214819,1254,AFI 100 (Thrills),1177125973 +214819,1254,classic,1176864013 +214819,1254,Oscar (Best Directing),1176863999 +214819,1254,Oscar (Best Supporting Actor),1176863990 +214819,1256,AFI 100,1176818609 +214819,1256,AFI 100 (Laughs),1177017725 +214819,1258,AFI 100 (Movie Quotes),1177376403 +214819,1258,AFI 100 (Thrills),1177163152 +214819,1258,Jack Nicholson,1177163048 +214819,1258,Saturn Award (Best Supporting Actor),1177163062 +214819,1258,Stanley Kubrick,1177163139 +214819,1262,AFI 100 (Thrills),1177127646 +214819,1262,World War II,1177127626 +214819,1263,70mm,1176931209 +214819,1263,AFI 100,1176931235 +214819,1263,AFI 100 (Thrills),1177125651 +214819,1263,Oscar (Best Directing),1176819201 +214819,1263,Oscar (Best Picture),1176931231 +214819,1263,Oscar (Best Supporting Actor),1176753357 +214819,1263,Vietnam,1176931207 +214819,1265,AFI 100 (Laughs),1177101987 +214819,1265,Bill Murray,1177101910 +214819,1265,Saturn Award (Best Actress),1177101892 +214819,1266,AFI 100,1176818460 +214819,1266,Oscar (Best Directing),1176818415 +214819,1266,Oscar (Best Picture),1176818424 +214819,1266,Oscar (Best Supporting Actor),1176818421 +214819,1267,AFI 100,1176820481 +214819,1267,AFI 100 (Thrills),1177125799 +214819,1267,assassination,1176820476 +214819,1267,brainwashing,1176819922 +214819,1269,AFI 100 (Laughs),1177018423 +214819,1272,70mm,1176931576 +214819,1272,AFI 100,1176931585 +214819,1272,Oscar (Best Actor),1176931567 +214819,1272,Oscar (Best Directing),1176931565 +214819,1272,Oscar (Best Picture),1176931560 +214819,1272,World War II,1176931578 +214819,1274,anime,1176819016 +214819,1274,scifi,1176819009 +214819,1276,AFI 100 (Cheers),1177005186 +214819,1276,AFI 100 (Movie Quotes),1177375921 +214819,1276,Oscar (Best Supporting Actor),1176822434 +214819,1278,AFI 100 (Laughs),1177103313 +214819,1281,AFI 100 (Laughs),1177101862 +214819,1282,70mm,1176908940 +214819,1282,AFI 100,1176908966 +214819,1282,Disney,1176908954 +214819,1283,AFI 100,1176842424 +214819,1283,AFI 100 (Cheers),1176997005 +214819,1283,AFI 100 (Thrills),1177125746 +214819,1283,classic,1176997005 +214819,1283,Oscar (Best Actor),1176819930 +214819,1283,USA film registry,1176819928 +214819,1287,70mm,1176931002 +214819,1287,AFI 100,1176931008 +214819,1287,AFI 100 (Cheers),1176996859 +214819,1287,AFI 100 (Thrills),1177125567 +214819,1287,Oscar (Best Actor),1176753208 +214819,1287,Oscar (Best Cinematography),1176741266 +214819,1287,Oscar (Best Directing),1176751219 +214819,1287,Oscar (Best Picture),1176930989 +214819,1287,Oscar (Best Supporting Actor),1176817971 +214819,1288,AFI 100 (Laughs),1177103061 +214819,1291,archaeology,1176822303 +214819,1291,Holy Grail,1176822314 +214819,1291,Nazis,1176822313 +214819,1292,AFI 100 (Laughs),1177100185 +214819,1292,Oscar (Best Supporting Actor),1176751210 +214819,1293,70mm,1177005766 +214819,1293,AFI 100 (Cheers),1177005755 +214819,1293,Oscar (Best Actor),1176819250 +214819,1293,Oscar (Best Cinematography),1176753424 +214819,1293,Oscar (Best Directing),1176819248 +214819,1293,Oscar (Best Picture),1177005743 +214819,1299,AFI 100 (Cheers),1177014865 +214819,1299,Oscar (Best Cinematography),1177014860 +214819,1299,Oscar (Best Supporting Actor),1177014858 +214819,1302,AFI 100 (Cheers),1177005542 +214819,1302,AFI 100 (Movie Quotes),1177375959 +214819,1302,inspirational,1176822421 +214819,1302,sports,1176822423 +214819,1304,AFI 100,1176833260 +214819,1304,AFI 100 (Thrills),1177125618 +214819,1304,Oscar (Best Cinematography),1176819748 +214819,1304,Paul Newman,1176833263 +214819,1304,Robert Redford,1176833245 +214819,1307,AFI 100 (Laughs),1177103236 +214819,1307,AFI 100 (Movie Quotes),1177376237 +214819,1333,AFI 100 (Thrills),1177126782 +214819,1333,Alfred Hitchcock,1177126773 +214819,1339,Oscar (Best Makeup),1177103105 +214819,1339,Saturn Award (Best Writing),1177103109 +214819,1339,Vampires,1177103115 +214819,1344,AFI 100 (Thrills),1177127084 +214819,1345,AFI 100 (Thrills),1177127128 +214819,1350,AFI 100 (Thrills),1177162475 +214819,1357,Oscar (Best Actor),1176822737 +214819,1374,franchise,1176822689 +214819,1387,AFI 100,1176908157 +214819,1387,AFI 100 (Movie Quotes),1177375642 +214819,1387,AFI 100 (Thrills),1177125756 +214819,1387,franchise,1176908093 +214819,1387,shark,1176908130 +214819,1393,AFI 100 (Movie Quotes),1177376827 +214819,1393,Oscar (Best Supporting Actor),1177376813 +214819,1394,AFI 100 (Laughs),1177102755 +214819,1394,Coen Brothers,1177102747 +214819,1396,hacking,1176738217 +214819,1396,spying,1176738213 +214819,1527,aliens,1176822417 +214819,1617,Oscar (Best Supporting Actress),1176740466 +214819,1645,Al Pacino,1177377484 +214819,1693,slavery,1176822498 +214819,1704,Oscar (Best Supporting Actor),1176741210 +214819,1721,70mm,1177163828 +214819,1721,AFI 100 (Movie Quotes),1177376439 +214819,1721,AFI 100 (Thrills),1177163840 +214819,1721,James Cameron,1177163815 +214819,1721,Kate Winslet,1177163735 +214819,1721,Leonardo DiCaprio,1177163843 +214819,1721,Oscar (Best Cinematography),1177163723 +214819,1721,Oscar (Best Directing),1177163739 +214819,1721,Oscar (Best Picture),1177163757 +214819,1923,AFI 100 (Laughs),1177102959 +214819,1927,AFI 100,1176908584 +214819,1927,Oscar (Best Directing),1176751809 +214819,1927,Oscar (Best Picture),1176817943 +214819,1929,AFI 100 (Movie Quotes),1177376713 +214819,1929,Oscar (Best Picture),1177361943 +214819,1931,AFI 100,1176818650 +214819,1931,Oscar (Best Picture),1176818667 +214819,1933,Oscar (Best Picture),1176751492 +214819,1933,Oscar (Best Supporting Actor),1176751490 +214819,1935,Oscar (Best Cinematography),1176751303 +214819,1935,Oscar (Best Directing),1176751305 +214819,1935,Oscar (Best Picture),1177361952 +214819,1935,Oscar (Best Supporting Actor),1176751307 +214819,1936,AFI 100 (Cheers),1177015747 +214819,1936,Oscar (Best Actress),1177015733 +214819,1936,Oscar (Best Cinematography),1177015736 +214819,1936,Oscar (Best Directing),1177015726 +214819,1936,Oscar (Best Picture),1177015742 +214819,1936,Oscar (Best Supporting Actress),1177015738 +214819,1937,Oscar (Best Actor),1176751484 +214819,1937,Oscar (Best Directing),1176751487 +214819,1937,Oscar (Best Supporting Actor),1176751485 +214819,1939,AFI 100,1176819720 +214819,1939,AFI 100 (Cheers),1177004514 +214819,1939,Oscar (Best Actor),1176818285 +214819,1939,Oscar (Best Directing),1176741274 +214819,1939,Oscar (Best Picture),1176820149 +214819,1939,Oscar (Best Supporting Actor),1176817976 +214819,1939,US history,1176819731 +214819,1939,USA film registry,1176818587 +214819,1939,World War II,1176819737 +214819,1940,Oscar (Best Directing),1177361909 +214819,1940,Oscar (Best Picture),1177361919 +214819,1940,Oscar (Best Supporting Actress),1177361906 +214819,1941,Oscar (Best Actor),1177361945 +214819,1941,Oscar (Best Picture),1177361948 +214819,1942,Oscar (Best Actor),1176751819 +214819,1942,Oscar (Best Picture),1177361602 +214819,1942,Oscar (Best Supporting Actress),1176751814 +214819,1944,AFI 100,1176908414 +214819,1944,Oscar (Best Cinematography),1176818026 +214819,1944,Oscar (Best Directing),1176751267 +214819,1944,Oscar (Best Picture),1176908402 +214819,1944,Oscar (Best Supporting Actor),1176818023 +214819,1944,Oscar (Best Supporting Actress),1176751264 +214819,1945,AFI 100,1176844340 +214819,1945,AFI 100 (Cheers),1176997068 +214819,1945,AFI 100 (Movie Quotes),1177375720 +214819,1945,Oscar (Best Actor),1176844288 +214819,1945,Oscar (Best Cinematography),1176844291 +214819,1945,Oscar (Best Directing),1176844296 +214819,1945,Oscar (Best Picture),1176844315 +214819,1945,Oscar (Best Supporting Actress),1176844298 +214819,1945,USA film registry,1176844300 +214819,1946,Oscar (Best Actor),1177361979 +214819,1946,Oscar (Best Directing),1177361975 +214819,1946,Oscar (Best Picture),1177361981 +214819,1947,70mm,1176907186 +214819,1947,AFI 100,1176907216 +214819,1947,Oscar (Best Cinematography),1176907204 +214819,1947,Oscar (Best Directing),1176907190 +214819,1947,Oscar (Best Picture),1176907196 +214819,1947,Oscar (Best Supporting Actor),1176907177 +214819,1947,Oscar (Best Supporting Actress),1176907188 +214819,1949,Oscar (Best Cinematography),1177361983 +214819,1949,Oscar (Best Directing),1177361988 +214819,1950,AFI 100 (Cheers),1177007394 +214819,1950,AFI 100 (Movie Quotes),1177376795 +214819,1950,Oscar (Best Actor),1177007366 +214819,1950,Oscar (Best Picture),1177007378 +214819,1952,AFI 100,1176864664 +214819,1952,AFI 100 (Movie Quotes),1177375685 +214819,1952,Oscar (Best Directing),1176864498 +214819,1952,Oscar (Best Picture),1176864622 +214819,1953,AFI 100,1176930766 +214819,1953,AFI 100 (Thrills),1177125713 +214819,1953,Oscar (Best Actor),1176930741 +214819,1953,Oscar (Best Directing),1176930742 +214819,1953,Oscar (Best Picture),1176930754 +214819,1954,AFI 100,1176931169 +214819,1954,AFI 100 (Cheers),1176996780 +214819,1954,AFI 100 (Movie Quotes),1177375755 +214819,1954,AFI 100 (Thrills),1177125895 +214819,1954,boxing,1176931157 +214819,1954,Oscar (Best Directing),1176931160 +214819,1954,Oscar (Best Picture),1176931163 +214819,1956,Oscar (Best Directing),1176751358 +214819,1957,70mm,1177005083 +214819,1957,AFI 100 (Cheers),1177005077 +214819,1957,Olympics,1176819151 +214819,1957,Oscar (Best Picture),1177005085 +214819,1957,running,1176819153 +214819,1958,Oscar (Best Actress),1176751513 +214819,1958,Oscar (Best Directing),1176751537 +214819,1958,Oscar (Best Picture),1176751534 +214819,1958,Oscar (Best Supporting Actor),1176751540 +214819,1960,Oscar (Best Cinematography),1176819495 +214819,1960,Oscar (Best Directing),1176819492 +214819,1961,AFI 100 (Cheers),1177016206 +214819,1961,Oscar (Best Actor),1177016169 +214819,1961,Oscar (Best Directing),1177016172 +214819,1961,Oscar (Best Picture),1177016193 +214819,1962,AFI 100 (Cheers),1177005416 +214819,1962,Oscar (Best Actress),1177005402 +214819,1962,Oscar (Best Picture),1177005411 +214819,1963,AFI 100 (Laughs),1177102922 +214819,1982,AFI 100 (Thrills),1177127685 +214819,1982,franchise,1177127677 +214819,1994,70mm,1177162912 +214819,1994,AFI 100 (Movie Quotes),1177376375 +214819,1994,AFI 100 (Thrills),1177162921 +214819,1997,70mm,1177127393 +214819,1997,AFI 100 (Thrills),1177127399 +214819,1997,Classic,1176819242 +214819,2005,Saturn Award (Best Supporting Actress),1176753488 +214819,2009,AFI 100 (Movie Quotes),1177377270 +214819,2013,70mm,1177162937 +214819,2013,AFI 100 (Thrills),1177162945 +214819,2023,Al Pacino,1177377446 +214819,2028,AFI 100 (Cheers),1177016413 +214819,2028,AFI 100 (Thrills),1177126222 +214819,2028,Oscar (Best Cinematography),1176822208 +214819,2028,Oscar (Best Directing),1177016368 +214819,2028,Oscar (Best Editing),1177016402 +214819,2028,Oscar (Best Effects - Sound Effects Editing),1177016365 +214819,2028,Steven Spielberg,1177016399 +214819,2028,Tom Hanks,1177016378 +214819,2028,World War II,1177016391 +214819,2067,70mm,1176864737 +214819,2067,AFI 100,1176864749 +214819,2067,communism,1176819223 +214819,2067,Oscar (Best Cinematography),1176819220 +214819,2067,Russia,1176819226 +214819,2076,AFI 100 (Thrills),1177127031 +214819,2109,AFI 100 (Laughs),1177102237 +214819,2115,70mm,1177037437 +214819,2115,archaeology,1177037418 +214819,2115,Harrison Ford,1177037454 +214819,2115,Oscar (Best Effects - Visual Effects),1177037443 +214819,2136,AFI 100 (Laughs),1177102555 +214819,2140,70mm,1176819192 +214819,2160,AFI 100 (Thrills),1177163003 +214819,2160,Oscar (Best Supporting Actress),1177162999 +214819,2174,AFI 100 (Laughs),1177100162 +214819,2186,AFI 100 (Thrills),1177163450 +214819,2186,Alfred Hitchcock,1177163443 +214819,2193,70mm,1176820949 +214819,2193,fantasy,1176738184 +214819,2193,Saturn Award (Best Costumes),1176820650 +214819,2243,AFI 100 (Laughs),1177100517 +214819,2245,AFI 100 (Cheers),1177017374 +214819,2268,AFI 100 (Movie Quotes),1177376625 +214819,2300,AFI 100 (Laughs),1177102705 +214819,2302,Oscar (Best Supporting Actress),1176822237 +214819,2366,AFI 100,1176907291 +214819,2366,AFI 100 (Movie Quotes),1177375661 +214819,2366,AFI 100 (Thrills),1177125770 +214819,2398,AFI 100 (Cheers),1177015616 +214819,2398,Oscar (Best Supporting Actor),1177015610 +214819,2407,Oscar (Best Supporting Actor),1176751481 +214819,2414,70mm,1176751948 +214819,2420,AFI 100 (Cheers),1177014754 +214819,2439,Oscar (Best Supporting Actor),1176751453 +214819,2529,AFI 100 (Movie Quotes),1177376365 +214819,2529,AFI 100 (Thrills),1177162861 +214819,2565,70mm,1176819485 +214819,2565,Oscar (Best Actor),1176819478 +214819,2571,AFI 100 (Thrills),1177128144 +214819,2571,Oscar (Best Effects - Sound Effects Editing),1177127929 +214819,2571,Oscar (Best Effects - Visual Effects),1177128116 +214819,2571,Oscar (Best Sound),1177127925 +214819,2571,sci-fi,1177127996 +214819,2628,franchise,1176844889 +214819,2628,space,1176844892 +214819,2639,AFI 100 (Movie Quotes),1177377120 +214819,2644,AFI 100 (Movie Quotes),1177376585 +214819,2644,AFI 100 (Thrills),1177127358 +214819,2644,vampire,1177127354 +214819,2648,AFI 100,1176841775 +214819,2648,AFI 100 (Movie Quotes),1177375585 +214819,2648,AFI 100 (Thrills),1177125707 +214819,2660,AFI 100 (Thrills),1177163703 +214819,2664,AFI 100 (Thrills),1177127713 +214819,2700,free speech,1176822702 +214819,2700,Satire,1176822708 +214819,2716,70mm,1177101764 +214819,2716,AFI 100 (Laughs),1177101789 +214819,2716,Bill Murray,1177101771 +214819,2716,ghosts,1177101785 +214819,2716,Saturn Award (Best Fantasy Film),1176753467 +214819,2728,AFI 100 (Cheers),1177017021 +214819,2728,AFI 100 (Thrills),1177126246 +214819,2728,Oscar (Best Cinematography),1176751372 +214819,2728,Oscar (Best Supporting Actor),1177017011 +214819,2739,AFI 100 (Cheers),1177005135 +214819,2762,AFI 100 (Movie Quotes),1177376410 +214819,2762,AFI 100 (Thrills),1177163358 +214819,2762,ghosts,1177163290 +214819,2791,AFI 100 (Laughs),1177018373 +214819,2791,AFI 100 (Movie Quotes),1177376089 +214819,2797,AFI 100 (Laughs),1177100271 +214819,2797,Tom Hanks,1177100259 +214819,2871,70mm,1177127176 +214819,2871,AFI 100 (Thrills),1177127186 +214819,2917,AFI 100 (Thrills),1177127055 +214819,2932,Oscar (Best Cinematography),1176753351 +214819,2935,AFI 100 (Laughs),1177102260 +214819,2936,AFI 100 (Cheers),1177017072 +214819,2936,AFI 100 (Laughs),1177018151 +214819,2937,AFI 100 (Laughs),1177102618 +214819,2944,70mm,1176753384 +214819,2944,AFI 100 (Thrills),1177127285 +214819,2944,World War II,1176753377 +214819,2947,AFI 100 (Movie Quotes),1177376700 +214819,2947,AFI 100 (Thrills),1177127600 +214819,2947,Sean Connery,1177127597 +214819,2949,AFI 100 (Movie Quotes),1177376570 +214819,2949,franchise,1177376558 +214819,3022,AFI 100 (Laughs),1177101666 +214819,3022,USA film registry,1177101655 +214819,3030,Oscar Nominee: Costume Design,1177361231 +214819,3033,space,1176820688 +214819,3035,Oscar (Best Supporting Actor),1176751345 +214819,3062,Oscar (Best Cinematography),1176822286 +214819,3068,AFI 100 (Cheers),1177017142 +214819,3071,AFI 100 (Cheers),1177017058 +214819,3072,AFI 100 (Laughs),1177102391 +214819,3072,AFI 100 (Movie Quotes),1177376188 +214819,3072,Oscar (Best Actress),1177102371 +214819,3072,Oscar (Best Supporting Actress),1177102382 +214819,3088,AFI 100 (Laughs),1177102018 +214819,3088,Oscar (Best Supporting Actress),1177102009 +214819,3095,AFI 100,1176842085 +214819,3095,AFI 100 (Cheers),1176997527 +214819,3095,Oscar (Best Directing),1176818636 +214819,3095,Oscar (Best Supporting Actress),1176820454 +214819,3095,USA film registry,1176819873 +214819,3099,AFI 100 (Laughs),1177102814 +214819,3099,Oscar (Best Supporting Actress),1177102807 +214819,3101,AFI 100 (Thrills),1177127431 +214819,3111,AFI 100 (Cheers),1177016134 +214819,3111,Oscar (Best Actress),1177016127 +214819,3152,Oscar (Best Supporting Actress),1176751333 +214819,3168,AFI 100,1176931528 +214819,3210,AFI 100 (Laughs),1177101603 +214819,3222,70mm,1176753279 +214819,3252,Al Pacino,1177377467 +214819,3252,Oscar (Best Actor),1177377465 +214819,3255,AFI 100 (Movie Quotes),1177376888 +214819,3260,70mm,1176819312 +214819,3260,Oscar (Best Actress),1176819307 +214819,3307,AFI 100,1176931129 +214819,3307,AFI 100 (Cheers),1176996896 +214819,3307,AFI 100 (Laughs),1177017684 +214819,3341,AFI 100 (Laughs),1177100497 +214819,3341,Oscar (Best Actress),1177100379 +214819,3350,AFI 100 (Cheers),1176998093 +214819,3359,AFI 100 (Cheers),1177004996 +214819,3360,AFI 100 (Cheers),1177005882 +214819,3360,inspirational,1176822324 +214819,3360,sports,1176822322 +214819,3361,AFI 100 (Laughs),1177100538 +214819,3362,AFI 100 (Movie Quotes),1177376306 +214819,3362,AFI 100 (Thrills),1177127335 +214819,3362,Al Pacino,1177377460 +214819,3363,AFI 100,1176827538 +214819,3363,AFI 100 (Laughs),1177017632 +214819,3365,AFI 100,1176842885 +214819,3365,USA film registry,1176818689 +214819,3368,Oscar (Best Supporting Actor),1176741297 +214819,3408,AFI 100 (Cheers),1177005451 +214819,3418,AFI 100 (Cheers),1177017125 +214819,3418,AFI 100 (Thrills),1177126266 +214819,3420,Al Pacino,1177377451 +214819,3421,AFI 100 (Laughs),1177102492 +214819,3421,AFI 100 (Movie Quotes),1177376099 +214819,3435,AFI 100,1176825945 +214819,3435,AFI 100 (Thrills),1177125679 +214819,3435,Classic,1177125679 +214819,3435,Los Angeles,1176820085 +214819,3435,National Film Registry,1176825965 +214819,3435,Oscar Nominee: Director,1177361564 +214819,3435,Oscar Nominee: Lead Actress,1177361558 +214819,3448,70mm,1177101826 +214819,3448,AFI 100 (Laughs),1177101836 +214819,3448,Robin Williams,1177101824 +214819,3448,Vietnam War,1177101831 +214819,3451,AFI 100,1176842372 +214819,3451,AFI 100 (Cheers),1176996993 +214819,3451,Oscar (Best Actress),1176818075 +214819,3451,Sidney Poitier,1176842383 +214819,3462,AFI 100,1176931269 +214819,3462,AFI 100 (Laughs),1177017837 +214819,3462,USA film registry,1176931248 +214819,3467,Oscar (Best Actress),1176751311 +214819,3467,Oscar (Best Cinematography),1176751313 +214819,3467,Oscar (Best Supporting Actor),1176751314 +214819,3470,70mm,1176753370 +214819,3471,70mm,1176930299 +214819,3471,AFI 100,1176930389 +214819,3471,AFI 100 (Cheers),1176996908 +214819,3471,AFI 100 (Thrills),1177125639 +214819,3471,aliens,1176738320 +214819,3471,Classic,1176738323 +214819,3471,Oscar (Best Cinematography),1176753324 +214819,3471,Saturn Award (Best Director),1176930297 +214819,3471,Saturn Award (Best Music),1176930290 +214819,3471,Saturn Award (Best Writing),1176753325 +214819,3471,Sci-Fi,1176930276 +214819,3471,space,1176819158 +214819,3475,AFI 100,1176931634 +214819,3475,Oscar (Best Cinematography),1176818155 +214819,3475,Oscar (Best Directing),1176818153 +214819,3479,Saturn Award (Best Costumes),1176819488 +214819,3479,Saturn Award (Best Fantasy Film),1176818101 +214819,3504,AFI 100,1176930691 +214819,3504,AFI 100 (Movie Quotes),1177375701 +214819,3504,Oscar (Best Actor),1176930670 +214819,3504,Oscar (Best Actress),1176930675 +214819,3504,Oscar (Best Supporting Actress),1176930673 +214819,3507,AFI 100 (Laughs),1177102596 +214819,3524,AFI 100 (Laughs),1177018439 +214819,3524,Oscar (Best Supporting Actor),1176751461 +214819,3543,AFI 100 (Laughs),1177101556 +214819,3545,Oscar (Best Cinematography),1176741292 +214819,3545,Oscar (Best Directing),1176741294 +214819,3546,AFI 100 (Thrills),1177163900 +214819,3548,AFI 100 (Laughs),1177018457 +214819,3548,AFI 100 (Movie Quotes),1177376115 +214819,3551,AFI 100 (Movie Quotes),1177377104 +214819,3551,AFI 100 (Thrills),1177127914 +214819,3552,AFI 100 (Laughs),1177101468 +214819,3552,AFI 100 (Movie Quotes),1177376131 +214819,3629,AFI 100,1176931069 +214819,3629,AFI 100 (Laughs),1177101803 +214819,3629,classic,1177101803 +214819,3639,70mm,1176753556 +214819,3654,70mm,1176753504 +214819,3654,AFI 100 (Thrills),1177127660 +214819,3654,World War II,1176753503 +214819,3671,AFI 100 (Laughs),1177100322 +214819,3683,AFI 100 (Thrills),1177126990 +214819,3683,Coen Brothers,1177126992 +214819,3698,Saturn Award (Best Supporting Actor),1176741001 +214819,3724,70mm,1176819168 +214819,3724,Oscar (Best Actor),1176753330 +214819,3724,Oscar (Best Actress),1176753329 +214819,3733,AFI 100 (Cheers),1177015977 +214819,3733,Oscar (Best Supporting Actor),1176751363 +214819,3735,AFI 100 (Cheers),1177016672 +214819,3735,Al Pacino,1177377477 +214819,3836,70mm,1176819432 +214819,3871,AFI 100,1176818189 +214819,3871,AFI 100 (Cheers),1176997126 +214819,3871,AFI 100 (Movie Quotes),1177375765 +214819,3871,Oscar (Best Cinematography),1176818176 +214819,3873,AFI 100 (Laughs),1177101498 +214819,3873,Oscar (Best Actor),1177101491 +214819,3928,AFI 100 (Laughs),1177018315 +214819,3936,Oscar (Best Cinematography),1177162689 +214819,4007,AFI 100 (Movie Quotes),1177377393 +214819,4007,Oscar (Best Actor),1177377385 +214819,4041,AFI 100 (Cheers),1176998272 +214819,4041,Oscar (Best Supporting Actor),1176998263 +214819,4047,70mm,1176753457 +214819,4047,Civil War,1176819254 +214819,4085,AFI 100 (Laughs),1177100210 +214819,4085,Eddie Murphy,1177100215 +214819,4095,70mm,1176753336 +214819,4186,Oscar (Best Supporting Actor),1176751257 +214819,4187,AFI 100 (Cheers),1177014892 +214819,4187,Oscar (Best Actor),1177014888 +214819,4262,AFI 100 (Movie Quotes),1177377212 +214819,4262,Al Pacino,1177377463 +214819,4276,AFI 100 (Laughs),1177102279 +214819,4291,AFI 100 (Laughs),1177018197 +214819,4292,AFI 100 (Cheers),1177015927 +214819,4292,Oscar (Best Actress),1177015915 +214819,4296,AFI 100 (Movie Quotes),1177377092 +214819,4321,AFI 100 (Laughs),1177101517 +214819,4321,Oscar (Best Supporting Actor),1176751467 +214819,4327,AFI 100 (Thrills),1177127901 +214819,4338,Oscar (Best Supporting Actor),1176751435 +214819,4359,AFI 100 (Laughs),1177102794 +214819,4361,AFI 100,1176842963 +214819,4361,AFI 100 (Laughs),1177017965 +214819,4361,Oscar (Best Supporting Actress),1176842958 +214819,4363,70mm,1176751919 +214819,4420,Oscar (Best Supporting Actor),1176751463 +214819,4467,70mm,1176818996 +214819,4508,70mm,1176753496 +214819,4508,nature,1176819295 +214819,4776,Oscar (Best Actor),1176740694 +214819,4799,70mm,1177102203 +214819,4799,AFI 100 (Laughs),1177102207 +214819,4805,Oscar (Best Supporting Actor),1176751504 +214819,4805,Oscar (Best Supporting Actress),1176751502 +214819,4809,AFI 100 (Cheers),1177016958 +214819,4835,AFI 100 (Cheers),1177005104 +214819,4835,Oscar (Best Actress),1177005100 +214819,4855,AFI 100 (Movie Quotes),1177376301 +214819,4855,AFI 100 (Thrills),1177127314 +214819,4855,Clint Eastwood,1177127310 +214819,4857,70mm,1177005498 +214819,4857,AFI 100 (Cheers),1177005502 +214819,4857,Oscar (Best Cinematography),1176753419 +214819,4912,70mm,1177376662 +214819,4912,AFI 100 (Movie Quotes),1177376683 +214819,4912,Oscar (Best Actress),1177376660 +214819,4920,AFI 100 (Movie Quotes),1177377147 +214819,4936,70mm,1177005475 +214819,4936,AFI 100 (Cheers),1177005479 +214819,4957,AFI 100 (Movie Quotes),1177377287 +214819,4976,Oscar (Best Supporting Actor),1176751323 +214819,4993,magic,1176822281 +214819,4993,Oscar (Best Cinematography),1176822275 +214819,4993,wizards,1176822283 +214819,4995,AFI 100 (Cheers),1176997708 +214819,4995,Oscar (Best Directing),1176997704 +214819,4995,Oscar (Best Picture),1176998001 +214819,4995,Oscar (Best Supporting Actress),1176997958 +214819,4998,AFI 100 (Cheers),1177005308 +214819,4998,Oscar (Best Cinematography),1177005300 +214819,5007,Oscar (Best Supporting Actor),1176751420 +214819,5060,AFI 100,1176908775 +214819,5060,AFI 100 (Laughs),1177017822 +214819,5060,Korean War,1176908739 +214819,5118,AFI 100 (Laughs),1177102033 +214819,5196,70mm,1176751931 +214819,5231,AFI 100 (Laughs),1177102770 +214819,5245,Al Pacino,1177377482 +214819,5291,Kurosawa,1177361343 +214819,5291,samurai,1177361353 +214819,5378,franchise,1176844895 +214819,5378,space,1176844897 +214819,5388,Al Pacino,1177377495 +214819,5388,Robin Williams,1177377497 +214819,5464,Saturn Award (Best Performance by a Younger Actor),1177103133 +214819,5644,AFI 100 (Cheers),1177016147 +214819,5644,AFI 100 (Movie Quotes),1177377165 +214819,5799,70mm,1176753406 +214819,5902,Oscar (Best Supporting Actor),1176750720 +214819,5952,AFI 100 (Movie Quotes),1177377074 +214819,5952,based on a book,1177377067 +214819,5952,fantasy,1177376951 +214819,5952,franchise,1177377013 +214819,5952,Oscar (Best Effects - Visual Effects),1177376995 +214819,5952,Oscar (Best Sound),1177376928 +214819,5952,Saturn Award (Best Costumes),1177376914 +214819,5952,Saturn Award (Best Fantasy Film),1177376940 +214819,5952,Saturn Award (Best Makeup),1177376931 +214819,5952,Saturn Award (Best Supporting Actor),1177376925 +214819,6016,Oscar Nominee: Adapted Screenplay,1176750638 +214819,6016,Oscar Nominee: Cinematography,1177162571 +214819,6016,Oscar Nominee: Director,1177162630 +214819,6016,Oscar Nominee: Editing,1177162602 +214819,6170,70mm,1177004576 +214819,6170,AFI 100 (Cheers),1177004585 +214819,6170,Oscar Nominee: Editing,1177162550 +214819,6170,Oscar Nominee: Supporting Actor,1177162539 +214819,6254,AFI 100 (Laughs),1177018476 +214819,6254,Oscar (Best Directing),1177018468 +214819,6441,70mm,1176752057 +214819,6441,World War II,1176752059 +214819,6498,70mm,1176751914 +214819,6533,AFI 100 (Laughs),1177103195 +214819,6565,AFI 100 (Cheers),1177016446 +214819,6639,AFI 100 (Thrills),1177163883 +214819,6684,Oscar Nominee: Costume Design,1177361396 +214819,6787,AFI 100 (Cheers),1176998235 +214819,6787,AFI 100 (Thrills),1177126060 +214819,6787,Oscar (Best Supporting Actor),1176998209 +214819,6787,politics,1177126060 +214819,6856,AFI 100,1176932021 +214819,6856,AFI 100 (Cheers),1176997428 +214819,6856,AFI 100 (Movie Quotes),1177375858 +214819,6856,Oscar (Best Actor),1176932009 +214819,6993,Oscar (Best Supporting Actor),1176751298 +214819,6993,Oscar (Best Supporting Actress),1176751290 +214819,6997,70mm,1176751934 +214819,7013,AFI 100 (Thrills),1177128186 +214819,7059,AFI 100 (Cheers),1177015820 +214819,7059,Oscar (Best Supporting Actress),1177015817 +214819,7061,AFI 100 (Cheers),1177005206 +214819,7062,AFI 100 (Cheers),1177004543 +214819,7065,AFI 100,1176907329 +214819,7072,AFI 100,1176930239 +214819,7072,Oscar (Best Supporting Actor),1176751379 +214819,7073,AFI 100 (Laughs),1177018298 +214819,7074,AFI 100 (Laughs),1177102515 +214819,7075,AFI 100 (Laughs),1177101543 +214819,7076,AFI 100 (Thrills),1177127071 +214819,7080,AFI 100 (Movie Quotes),1177376470 +214819,7091,AFI 100 (Laughs),1177102168 +214819,7111,Oscar (Best Cinematography),1176751499 +214819,7121,AFI 100 (Laughs),1177018335 +214819,7132,AFI 100 (Laughs),1177018281 +214819,7153,Oscar (Best Directing),1176751710 +214819,7153,Oscar (Best Makeup),1176751696 +214819,7153,Oscar (Best Music - Original Score),1176751720 +214819,7153,Oscar (Best Music - Original Song),1176751707 +214819,7153,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1176751685 +214819,7153,Saturn Award (Best Fantasy Film),1176751703 +214819,7153,Saturn Award (Best Makeup),1176751692 +214819,7153,Saturn Award (Best Music),1176751724 +214819,7153,Saturn Award (Best Special Effects),1176751699 +214819,7153,Saturn Award (Best Supporting Actor),1176751680 +214819,7153,Saturn Award (Best Writing),1176751689 +214819,7156,History,1176822388 +214819,7215,AFI 100 (Movie Quotes),1177377307 +214819,7303,AFI 100 (Cheers),1177005385 +214819,7303,Oscar (Best Cinematography),1177005374 +214819,7303,Oscar (Best Supporting Actress),1177005376 +214819,7386,70mm,1177017082 +214819,7386,AFI 100 (Cheers),1177017096 +214819,7416,Oscar (Best Supporting Actor),1176751508 +214819,7584,AFI 100 (Laughs),1177103255 +214819,7619,AFI 100 (Cheers),1177015690 +214819,7619,Oscar (Best Actress),1177015631 +214819,7619,Oscar (Best Supporting Actress),1177015629 +214819,7698,AFI 100 (Thrills),1177127142 +214819,7706,AFI 100 (Movie Quotes),1177376508 +214819,7714,70mm,1176753260 +214819,7743,70mm,1176751922 +214819,7840,AFI 100 (Cheers),1177005823 +214819,7980,World War II,1176819098 +214819,8057,Oscar (Best Supporting Actor),1176751391 +214819,8153,Oscar (Best Supporting Actor),1176751337 +214819,8191,70mm,1176752036 +214819,8235,AFI 100 (Thrills),1177163021 +214819,8334,70mm,1176753333 +214819,8401,AFI 100 (Movie Quotes),1177376486 +214819,8482,AFI 100 (Thrills),1177162773 +214819,8482,Oscar (Best Cinematography),1177162747 +214819,8491,AFI 100 (Movie Quotes),1177377404 +214819,8542,AFI 100 (Laughs),1177018217 +214819,8633,70mm,1176751962 +214819,8638,Paris,1176818804 +214819,8638,romantic,1176818794 +214819,8660,70mm,1176753527 +214819,8711,AFI 100 (Laughs),1177102411 +214819,8740,Kurosawa,1177361281 +214819,8874,Saturn Award (Best Horror Film),1176824512 +214819,8874,zombie,1176824507 +214819,8958,AFI 100 (Cheers),1177016268 +214819,8958,Oscar (Best Actor),1177016244 +214819,8961,Oscar (Best Effects - Sound Effects Editing),1176740420 +214819,8977,Al Pacino,1177377514 +214819,25750,AFI 100 (Laughs),1177102854 +214819,25752,AFI 100 (Laughs),1177101641 +214819,25755,AFI 100 (Thrills),1177162718 +214819,25757,AFI 100,1176931605 +214819,25757,AFI 100 (Movie Quotes),1177375654 +214819,25773,AFI 100 (Movie Quotes),1177376900 +214819,25777,AFI 100 (Laughs),1177102360 +214819,25795,AFI 100 (Laughs),1177101572 +214819,25827,AFI 100 (Cheers),1177015712 +214819,25827,AFI 100 (Laughs),1177018101 +214819,25827,Oscar (Best Directing),1177015704 +214819,25856,AFI 100,1176931035 +214819,25856,Oscar (Best Cinematography),1176931023 +214819,25868,AFI 100 (Laughs),1177018497 +214819,26064,Kurosawa,1177361244 +214819,26375,AFI 100 (Laughs),1177102870 +214819,26555,70mm,1176822691 +214819,30707,boxing,1177037578 +214819,30707,Clint Eastwood,1177037596 +214819,30707,Morgan Freeman,1177037610 +214819,30707,Oscar (Best Actress),1177037592 +214819,30707,Oscar (Best Directing),1177037588 +214819,30707,Oscar (Best Picture),1177037633 +214819,30707,Oscar (Best Supporting Actor),1177037585 +214819,30749,AFI 100 (Cheers),1177007352 +214819,31116,AFI 100 (Cheers),1177016648 +214819,32139,70mm,1176751909 +214819,32646,70mm,1176753255 +214819,33166,Oscar (Best Picture),1177361799 +214819,33493,franchise,1176844880 +214819,33493,space,1176844882 +214819,34271,Oscar (Best Music - Original Song),1176740416 +214819,37720,Saturn Award (Best Horror Film),1176740735 +214819,37729,Saturn Award (Best Animated Film),1176817989 +214819,38992,Al Pacino,1177377500 +214819,39183,Oscar (Best Directing),1177361678 +214819,39183,Oscar (Best Picture),1177361696 +214819,40583,politics,1176822637 +214819,40819,Oscar (Best Actress),1176822539 +214819,44191,politics,1176822549 +214819,44195,big tobacco,1176822618 +214819,44195,politics,1176822606 +214819,44195,satire,1176822614 +214819,48385,satire,1176822459 +214819,48394,Oscar (Best Art Direction),1177103620 +214819,48516,Martin Scorsese,1177103449 +214819,49651,Sylvester Stallone,1177349872 +214823,260,drama,1434116523 +214823,260,Science Fiction,1434116508 +214846,27611,political,1233144265 +214846,56921,poltical,1233144283 +214846,56921,sci-fi,1233144289 +214846,56921,space,1233144292 +214846,56921,space opera,1233144296 +214846,56921,war,1233144285 +214903,142106,black humor,1442000076 +214903,142106,consultancy,1442000061 +214903,142106,modern times,1442000114 +214903,142106,ruthless,1442000110 +214903,142106,theatre play,1442000096 +214915,260,classic sci-fi,1435150208 +214915,260,jedi,1435150233 +214915,356,history,1435297458 +214915,356,life lessons,1435297458 +214915,356,running,1435297458 +214930,4857,musical,1426880744 +214930,4857,religious oppression,1426880744 +214930,4857,russia,1426880744 +214930,68157,black comedy,1426880443 +214930,68157,great acting,1426880464 +214930,78499,children,1426880381 +214977,148095,touching,1450710114 +214977,148976,cartoons,1450709678 +214979,16,Mafia,1153362038 +214979,24,outcast teaches us all a cheesy lesson,1272045813 +214979,24,pretentious,1241660334 +214979,25,suicide,1195775751 +214979,29,Santa Claus,1196194100 +214979,32,time travel,1153951470 +214979,47,detectives,1288921674 +214979,47,serial killer,1183393995 +214979,50,heist,1183393631 +214979,70,strippers,1200263586 +214979,70,vampires,1229562795 +214979,81,Denver,1250650129 +214979,88,easily confused with other movie(s) (title),1250036589 +214979,112,kung fu,1152033223 +214979,112,martial arts,1152571775 +214979,145,easily confused with other movie(s) (title),1203709151 +214979,147,based on a true story,1255038469 +214979,147,drugs,1151999582 +214979,147,heroin,1152506069 +214979,150,based on a true story,1255038452 +214979,151,sword fighting,1201650328 +214979,168,Arthurian legend,1260839564 +214979,173,dystopia,1152495642 +214979,175,AIDS,1152030434 +214979,175,drugs,1152030423 +214979,175,youth gone wild,1185476585 +214979,193,cult film,1221856509 +214979,219,easily confused with other movie(s) (title),1259274653 +214979,220,Full Moon Entertainment,1234897884 +214979,220,H.P. Lovecraft,1229481125 +214979,223,low budget,1221007028 +214979,247,based on a true story,1255038421 +214979,260,Akira Kurosawa,1199327588 +214979,260,homage,1199327588 +214979,260,rating very dependent on version,1204313856 +214979,260,robots,1228092214 +214979,260,spaceflight,1260316805 +214979,277,remake,1185472608 +214979,277,Santa Claus,1185472528 +214979,288,serial killer,1183394087 +214979,293,assassins,1196115589 +214979,293,easily confused with other movie(s) (title),1196105867 +214979,293,rating very dependent on version,1229479070 +214979,296,dark humor,1308276130 +214979,296,drugs,1236017769 +214979,296,heroin,1200265636 +214979,296,mysterious parcel,1199322858 +214979,296,notable soundtrack,1152029557 +214979,296,Roger Avary,1233182334 +214979,306,sequel,1205445093 +214979,307,trilogy,1229562691 +214979,308,sequel,1205445052 +214979,318,narrated,1235157889 +214979,318,prison,1235004690 +214979,319,atmospheric,1255037676 +214979,319,black comedy,1308276257 +214979,319,dark humor,1308276244 +214979,322,revenge,1292699176 +214979,327,post-apocalyptic,1292374308 +214979,353,revenge,1228093129 +214979,356,outcast teaches us all a cheesy lesson,1272045788 +214979,369,1930s,1306968348 +214979,390,atmospheric,1235519030 +214979,390,cult classic,1287439856 +214979,393,easily confused with other movie(s) (title),1260231108 +214979,407,Lovecraftian mythology,1229642161 +214979,423,easily confused with other movie(s) (title),1282016617 +214979,426,remake,1272524584 +214979,441,high school,1260235144 +214979,459,remake,1152573651 +214979,475,prison,1151998951 +214979,475,terrorism,1152051219 +214979,481,road movie,1185910765 +214979,482,AIDS,1151990857 +214979,482,drugs,1151990857 +214979,482,heist,1151990857 +214979,482,heroin,1227673449 +214979,482,Roger Avary,1233182264 +214979,482,Ron Jeremy,1289263582 +214979,493,gangs,1197338139 +214979,497,Shakespeare,1235005042 +214979,508,AIDS,1205441878 +214979,522,neo-nazis,1229562577 +214979,522,skinheads,1268692614 +214979,527,1930s,1306968485 +214979,527,based on a true story,1255038486 +214979,541,androids,1151990531 +214979,541,Philip K. Dick,1193009540 +214979,546,so bad it's almost good,1228445067 +214979,555,Elvis iconography,1201661532 +214979,555,homage,1151969278 +214979,555,Roger Avary,1233182374 +214979,565,easily confused with other movie(s) (title),1197335561 +214979,589,androids,1153951403 +214979,593,cannibalism,1153359718 +214979,593,Hannibal Lecter,1186041834 +214979,593,serial killer,1186041668 +214979,600,road movie,1188859587 +214979,608,dark humor,1308276317 +214979,610,rotoscoping,1193866230 +214979,610,spaceflight,1260320930 +214979,627,black comedy,1308266997 +214979,627,dark humor,1308276371 +214979,640,remake,1258327384 +214979,653,dragons,1260230896 +214979,674,cult classic,1229553870 +214979,674,cult film,1229553870 +214979,680,dystopia,1210737031 +214979,716,cult film,1228355209 +214979,724,witches,1229563838 +214979,735,dark humor,1308276180 +214979,735,zombies,1151964738 +214979,736,easily confused with other movie(s) (title),1196105806 +214979,736,unintentionally funny,1290128636 +214979,750,dark humor,1308276308 +214979,750,nuclear war,1306966289 +214979,750,satire,1258681308 +214979,775,Edgar Allan Poe,1292979606 +214979,778,AIDS,1199486678 +214979,778,dark humor,1308276143 +214979,778,drugs,1151964567 +214979,778,hallucination,1235495392 +214979,778,heroin,1151967000 +214979,778,notable soundtrack,1152029613 +214979,780,aliens,1152156925 +214979,802,easily confused with other movie(s) (title),1197337658 +214979,802,outcast teaches us all a cheesy lesson,1272045884 +214979,802,pretentious,1272045886 +214979,805,courtroom,1199666215 +214979,861,kung fu,1290730909 +214979,861,martial arts,1290730909 +214979,866,BDSM,1228444220 +214979,891,slasher,1288319507 +214979,913,private detective,1201120029 +214979,913,remake,1199322482 +214979,919,witches,1153368378 +214979,922,Hollywood,1151969248 +214979,930,easily confused with other movie(s) (title),1232067232 +214979,934,remade,1228445568 +214979,944,1930s,1282015367 +214979,968,zombies,1185471170 +214979,996,Akira Kurosawa,1296859771 +214979,996,remake,1296859658 +214979,1019,Jules Verne,1288922223 +214979,1025,Arthurian legend,1260837928 +214979,1030,dragons,1260230939 +214979,1036,Al Leong,1151995546 +214979,1047,assassins,1196128577 +214979,1069,Philip Marlowe,1260236330 +214979,1069,private detective,1260236848 +214979,1079,dark humor,1308276325 +214979,1080,satire,1258681199 +214979,1089,cult film,1186041912 +214979,1089,heist,1151998646 +214979,1089,notable soundtrack,1152029593 +214979,1089,Roger Avary,1234128568 +214979,1093,booze,1236017910 +214979,1093,drugs,1236017904 +214979,1093,hallucination,1236017918 +214979,1097,aliens,1152156815 +214979,1101,so bad it's good,1234244363 +214979,1101,unintentionally funny,1289260602 +214979,1114,1930s,1306968318 +214979,1127,rating very dependent on version,1204313846 +214979,1129,NYC,1250650008 +214979,1130,werewolves,1206411228 +214979,1136,Arthurian legend,1260837905 +214979,1136,parody,1258680564 +214979,1147,boxing,1229555063 +214979,1148,stop-motion,1259019586 +214979,1171,politics,1243460374 +214979,1173,cannibalism,1163641613 +214979,1175,cannibalism,1153359795 +214979,1175,dark humor,1308276189 +214979,1175,post-apocalyptic,1225324021 +214979,1194,marijuana,1241750775 +214979,1196,robots,1228092248 +214979,1197,revenge,1229566704 +214979,1197,sword fighting,1248736835 +214979,1198,mysterious parcel,1263880039 +214979,1198,Nazis,1261018352 +214979,1199,dark humor,1308276090 +214979,1199,dystopia,1151961890 +214979,1199,kafkaesque,1289258614 +214979,1200,aliens,1151965538 +214979,1200,androids,1195769237 +214979,1200,spaceflight,1260316857 +214979,1202,black comedy,1308275009 +214979,1206,narrated,1182722677 +214979,1210,rating very dependent on version,1204313820 +214979,1210,robots,1228092287 +214979,1213,Mafia,1151966803 +214979,1213,narrated,1167715951 +214979,1214,aliens,1151967055 +214979,1214,androids,1195769225 +214979,1215,Lovecraftian mythology,1197329387 +214979,1215,time travel,1195770011 +214979,1215,zombies,1197329421 +214979,1217,samurai,1152992829 +214979,1218,gun fu,1228443204 +214979,1220,Neo-Nazis,1153931918 +214979,1220,notable soundtrack,1153931918 +214979,1224,Shakespeare,1260837351 +214979,1228,boxing,1228966473 +214979,1228,Mafia,1268360196 +214979,1235,cult classic,1221856219 +214979,1235,cult film,1195601454 +214979,1235,dark humor,1308276218 +214979,1235,suicide,1195775808 +214979,1240,androids,1152031276 +214979,1240,time travel,1152031265 +214979,1241,cult film,1186041895 +214979,1241,zombies,1151964779 +214979,1243,Hamlet,1260837713 +214979,1243,Shakespeare,1235005021 +214979,1246,high school,1260235157 +214979,1249,assassins,1196128561 +214979,1249,remade,1197339334 +214979,1252,1930s,1306966816 +214979,1252,private detective,1201120008 +214979,1253,aliens,1151966114 +214979,1255,aliens,1195768536 +214979,1255,cult film,1195431730 +214979,1257,high school,1152158537 +214979,1258,ghosts,1154023316 +214979,1259,coming of age,1272236782 +214979,1261,cult classic,1220821760 +214979,1261,cult film,1186042562 +214979,1261,Lovecraftian mythology,1197329302 +214979,1261,zombies,1151965433 +214979,1268,high school,1260235185 +214979,1270,time travel,1151964687 +214979,1271,cannibalism,1153359923 +214979,1274,dystopia,1151967080 +214979,1275,sword fighting,1193861272 +214979,1276,prison,1151966654 +214979,1278,parody,1258680642 +214979,1284,Philip Marlowe,1151966346 +214979,1284,private detective,1201119994 +214979,1284,remade,1289155246 +214979,1285,black comedy,1308275097 +214979,1285,dark humor,1308276423 +214979,1285,high school,1152158735 +214979,1286,time travel,1152031361 +214979,1288,mockumentary,1153846729 +214979,1288,satire,1258681216 +214979,1289,no dialogue,1154023531 +214979,1292,satire,1258681269 +214979,1292,television,1151965576 +214979,1297,college,1229558691 +214979,1297,nerds,1249947464 +214979,1298,cult classic,1292979971 +214979,1298,cult film,1193864224 +214979,1298,drugs,1236018836 +214979,1301,cult film,1193871230 +214979,1320,aliens,1195769058 +214979,1321,werewolves,1151964651 +214979,1327,haunted house,1288113713 +214979,1327,possession,1228091109 +214979,1327,remade,1228091118 +214979,1330,slasher,1288320029 +214979,1334,remade,1229989029 +214979,1339,vampires,1229562895 +214979,1343,remake,1151979117 +214979,1344,remade,1206315864 +214979,1344,revenge,1260323226 +214979,1345,easily confused with other movie(s) (title),1199470518 +214979,1345,high school,1152158554 +214979,1346,remake,1223337528 +214979,1347,creepy singing,1195770260 +214979,1348,vampires,1229562791 +214979,1355,easily confused with other movie(s) (title),1248048841 +214979,1374,spaceflight,1260321419 +214979,1380,high school,1260235286 +214979,1382,unintentionally funny,1290736667 +214979,1391,aliens,1152156849 +214979,1407,slasher,1320968994 +214979,1411,Hamlet,1260837499 +214979,1411,Shakespeare,1260837333 +214979,1430,easily confused with other movie(s) (title),1202093399 +214979,1449,mockumentary,1199330464 +214979,1454,easily confused with other movie(s) (title),1229561388 +214979,1454,suburbia,1229561191 +214979,1464,atmospheric,1235521916 +214979,1500,hit men,1196117080 +214979,1517,parody,1258680571 +214979,1527,aliens,1195768889 +214979,1548,easily confused with other movie(s) (title),1227842395 +214979,1563,drugs,1272841141 +214979,1580,aliens,1152156884 +214979,1584,aliens,1152156911 +214979,1584,blunt existentialism,1228448271 +214979,1590,spaceflight,1260321231 +214979,1617,1950s,1306969789 +214979,1635,suburbia,1229562294 +214979,1648,dark humor,1308276337 +214979,1657,easily confused with other movie(s) (title),1223335266 +214979,1673,drugs,1236017789 +214979,1676,aliens,1195768802 +214979,1682,television,1260319873 +214979,1690,aliens,1195768984 +214979,1699,hallucination,1239933569 +214979,1732,cult film,1218412216 +214979,1732,dark humor,1308276281 +214979,1732,marijuana,1241750946 +214979,1753,drugs,1152031071 +214979,1753,marijuana,1241751074 +214979,1773,boxing,1228787244 +214979,1791,easily confused with other movie(s) (title),1228357454 +214979,1849,Arthurian legend,1260839452 +214979,1881,Arthurian legend,1260839388 +214979,1884,drugs,1152030929 +214979,1884,hallucination,1235516209 +214979,1884,hallucinatory,1288921929 +214979,1884,road movie,1225244913 +214979,1889,remade,1197338213 +214979,1909,aliens,1153846996 +214979,1921,low budget,1153847144 +214979,1921,notable soundtrack,1152029585 +214979,1921,NYC,1272236518 +214979,1938,booze,1236017520 +214979,1938,hallucination,1236017585 +214979,1941,Hamlet,1260837535 +214979,1954,boxing,1229555552 +214979,1965,aliens,1151965493 +214979,1965,cult classic,1228263949 +214979,1965,cult film,1288321921 +214979,1965,notable soundtrack,1152029567 +214979,1965,punks,1200263961 +214979,1965,television,1260319937 +214979,1968,high school,1260235133 +214979,1974,slasher,1230518427 +214979,1975,slasher,1230518768 +214979,1977,slasher,1288319472 +214979,1982,remade,1198445777 +214979,1982,serial killer,1198445794 +214979,1982,slasher,1230518286 +214979,1983,slasher,1230519019 +214979,1985,slasher,1253843517 +214979,1986,slasher,1253843511 +214979,1987,remade,1228087835 +214979,1994,ghosts,1154023286 +214979,1994,television,1224209677 +214979,1995,creepy singing,1187288371 +214979,1995,ghosts,1154023397 +214979,1997,possession,1152030588 +214979,2000,Al Leong,1151995244 +214979,2003,Christmas,1250201360 +214979,2009,dystopia,1202411902 +214979,2010,androids,1195769206 +214979,2019,remade,1197339870 +214979,2019,samurai,1151969221 +214979,2020,remade,1197338362 +214979,2072,suburbia,1152479026 +214979,2097,Ray Bradbury,1259277971 +214979,2107,slasher,1288130190 +214979,2116,rotoscoping,1193866161 +214979,2117,dystopia,1151999127 +214979,2117,remake,1229990113 +214979,2122,youth gone wild,1259898298 +214979,2134,high school,1153368808 +214979,2134,nerds,1249947403 +214979,2140,puppets,1155062236 +214979,2144,high school,1152157411 +214979,2147,no dialogue,1151995985 +214979,2159,serial killer,1183393904 +214979,2164,Nazis,1261018234 +214979,2167,vampires,1229562888 +214979,2174,ghosts,1259280267 +214979,2231,gambling,1239936641 +214979,2249,Mafia,1153362049 +214979,2249,suburbia,1153847359 +214979,2264,remake,1228006106 +214979,2268,courtroom,1197341071 +214979,2273,kung fu,1221430316 +214979,2273,martial arts,1221430316 +214979,2275,post-apocalyptic,1260321397 +214979,2288,aliens,1151968477 +214979,2291,suburbia,1229562432 +214979,2302,courtroom,1199666269 +214979,2313,based on a true story,1255038431 +214979,2318,dark humor,1308276209 +214979,2328,vampires,1151974194 +214979,2329,Neo-Nazis,1153931865 +214979,2329,prison,1151992633 +214979,2329,racism,1151992676 +214979,2329,skinheads,1268356883 +214979,2346,remade,1242338905 +214979,2348,based on a true story,1255038425 +214979,2348,drugs,1242338671 +214979,2348,heroin,1152505997 +214979,2348,punks,1200264529 +214979,2387,dark humor,1308276463 +214979,2392,easily confused with other movie(s) (title),1228948040 +214979,2398,courtroom,1198113404 +214979,2398,Santa Claus,1185472589 +214979,2407,aliens,1152156968 +214979,2409,boxing,1229555523 +214979,2410,boxing,1229555527 +214979,2420,martial arts,1152558361 +214979,2421,martial arts,1152558374 +214979,2423,suburbia,1259889928 +214979,2450,aliens,1260320984 +214979,2450,cult film,1229468735 +214979,2450,Nudity (Topless - Notable),1205594497 +214979,2450,so bad it's good,1228442788 +214979,2454,mad scientist,1152029224 +214979,2454,remade,1196193677 +214979,2454,Vincent Price,1152029189 +214979,2455,body horror,1292980080 +214979,2455,mad scientist,1196193665 +214979,2455,remake,1151965714 +214979,2457,easily confused with other movie(s) (title),1196812719 +214979,2459,cannibalism,1153360029 +214979,2459,grindhouse,1261019961 +214979,2459,remade,1255036970 +214979,2469,time travel,1152031447 +214979,2478,parody,1258680634 +214979,2490,remake,1181634173 +214979,2502,cult classic,1221856184 +214979,2502,cult film,1186041905 +214979,2505,BDSM,1235157150 +214979,2511,Philip Marlowe,1228961636 +214979,2511,private detective,1260236916 +214979,2519,ghosts,1221686526 +214979,2519,haunted house,1221686501 +214979,2519,remade,1221686372 +214979,2519,Vincent Price,1155061955 +214979,2527,androids,1151998455 +214979,2528,dystopia,1152028891 +214979,2542,booze,1236017686 +214979,2542,dark humor,1308276384 +214979,2542,marijuana,1241750985 +214979,2553,remade,1197335407 +214979,2560,cannibalism,1242338885 +214979,2571,dystopia,1152028953 +214979,2571,gun fu,1229389175 +214979,2572,shakespeare,1235004992 +214979,2580,drugs,1183394431 +214979,2582,kung fu,1152044569 +214979,2582,martial arts,1152571821 +214979,2594,remade,1235005493 +214979,2596,drugs,1153368635 +214979,2596,hallucination,1235495360 +214979,2596,heroin,1236017998 +214979,2596,narrated,1167715901 +214979,2596,punks,1200264351 +214979,2599,high school,1260234957 +214979,2615,Al Leong,1151995600 +214979,2628,robots,1228092136 +214979,2628,spaceflight,1260321802 +214979,2640,aliens,1260321502 +214979,2641,aliens,1260321528 +214979,2642,so bad it's good,1242963631 +214979,2657,aliens,1152156785 +214979,2657,androids,1195769282 +214979,2657,cult classic,1196115886 +214979,2657,cult film,1186041955 +214979,2677,music documentary,1229470867 +214979,2683,parody,1258680580 +214979,2683,sequel,1228444325 +214979,2692,heist,1151998696 +214979,2692,notable soundtrack,1152029576 +214979,2702,serial killer,1183394083 +214979,2706,high school,1260235124 +214979,2710,low budget,1151968823 +214979,2716,ghosts,1154023321 +214979,2717,ghosts,1154306897 +214979,2726,heist,1151998603 +214979,2746,black comedy,1308276443 +214979,2746,dark humor,1308276443 +214979,2761,giant robots,1272235251 +214979,2761,robots,1228091773 +214979,2762,ghosts,1154023264 +214979,2780,Edgar Allan Poe,1262647344 +214979,2780,Vincent Price,1262647347 +214979,2782,Edgar Allan Poe,1262647305 +214979,2782,Vincent Price,1262647302 +214979,2784,Edgar Allan Poe,1259275886 +214979,2784,Vincent Price,1259275883 +214979,2791,Parody,1258680521 +214979,2804,Christmas,1250201208 +214979,2804,narrated,1182722668 +214979,2808,cyborgs,1218412530 +214979,2808,unintentionally funny,1290735369 +214979,2820,Hamlet,1260837541 +214979,2841,ghosts,1154023360 +214979,2858,dark humor,1308276158 +214979,2858,narrated,1182722619 +214979,2858,suburbia,1152479034 +214979,2867,vampires,1151968059 +214979,2872,Arthurian legend,1260837833 +214979,2905,samurai,1151969228 +214979,2905,sword fighting,1205962176 +214979,2912,vengence,1260323285 +214979,2916,Philip K. Dick,1196193936 +214979,2918,high school,1152158396 +214979,2924,kung fu,1221430294 +214979,2924,martial arts,1221430285 +214979,2942,strippers,1199485958 +214979,2948,espionage,1205448298 +214979,2959,narrated,1167715971 +214979,2968,time travel,1153951438 +214979,2985,cyborgs,1152033870 +214979,2985,robots,1153847282 +214979,2985,television,1260320041 +214979,2986,cyborgs,1152033880 +214979,2986,robots,1153934195 +214979,2987,private detective,1201120064 +214979,2993,remade,1289271719 +214979,2995,ghosts,1221686541 +214979,2995,haunted house,1221686407 +214979,2995,remake,1247609586 +214979,2997,dark humor,1308276168 +214979,2997,NYC,1272236465 +214979,3018,H.P. Lovecraft,1181638520 +214979,3018,Lovecraftian mythology,1197329276 +214979,3018,mad scientist,1152160326 +214979,3018,zombies,1151968417 +214979,3019,drugs,1151966715 +214979,3030,remade,1260235863 +214979,3030,samurai,1151969303 +214979,3030,sword fighting,1205962169 +214979,3032,I am Legend,1229899433 +214979,3032,remade,1228094607 +214979,3033,parody,1258680669 +214979,3033,spaceflight,1260321728 +214979,3070,cult film,1193864281 +214979,3105,based on a true story,1255038575 +214979,3108,NYC,1272236488 +214979,3141,sequel,1206320736 +214979,3168,drugs,1151997309 +214979,3168,hallucination,1235495494 +214979,3168,notable soundtrack,1152029620 +214979,3168,road movie,1225232117 +214979,3181,Shakespeare,1260837320 +214979,3205,atmospheric,1235005278 +214979,3210,high school,1152158727 +214979,3226,music documentary,1229470687 +214979,3243,high school,1260235312 +214979,3250,cannibalism,1261019941 +214979,3265,gun fu,1228443169 +214979,3266,black comedy,1308266779 +214979,3266,dark humor,1308276232 +214979,3266,mockumentary,1227225974 +214979,3266,serial killer,1229985469 +214979,3267,low budget,1152051287 +214979,3272,heroin,1205444448 +214979,3328,hit men,1205440914 +214979,3418,road movie,1197337838 +214979,3421,college,1153762389 +214979,3461,remade,1236019686 +214979,3471,aliens,1152032379 +214979,3476,hallucination,1260496249 +214979,3480,high school,1260235177 +214979,3480,outcast teaches us all a cheesy lesson,1272045763 +214979,3495,road movie,1195192015 +214979,3504,television,1260319763 +214979,3521,Elvis iconography,1201661613 +214979,3524,booze,1260840378 +214979,3526,mysterious parcel,1199322906 +214979,3527,aliens,1152156796 +214979,3544,booze,1239936463 +214979,3544,clowns,1152032649 +214979,3544,cult film,1234637241 +214979,3544,mimes,1199762271 +214979,3556,narrated,1182722757 +214979,3556,suburbia,1229562338 +214979,3556,suicide,1182365055 +214979,3578,easily confused with other movie(s) (title),1229559206 +214979,3598,Hamlet,1260837521 +214979,3598,Shakespeare,1260837378 +214979,3614,Elvis iconography,1201661560 +214979,3638,spaceflight,1260321369 +214979,3652,grindhouse,1261012633 +214979,3660,easily confused with other movie(s) (title),1252967586 +214979,3660,Full Moon Entertainment,1234897934 +214979,3671,parody,1258680613 +214979,3676,cult film,1229469929 +214979,3677,no dialogue,1151969769 +214979,3678,drugs,1236018597 +214979,3679,music documentary,1229390353 +214979,3679,punks,1200264397 +214979,3680,music documentary,1229390343 +214979,3685,Mafia,1153955375 +214979,3686,ghosts,1183393387 +214979,3692,cult classic,1229466778 +214979,3692,cult film,1229466778 +214979,3692,Troma,1200267447 +214979,3693,cult classic,1228258038 +214979,3693,cult film,1186042623 +214979,3693,Troma,1250034426 +214979,3695,Troma,1289263692 +214979,3696,aliens,1260317056 +214979,3696,pseudo-zombies,1185911849 +214979,3698,dystopia,1188844268 +214979,3698,television,1260319811 +214979,3699,aliens,1152156891 +214979,3702,post-apocalyptic,1188846013 +214979,3703,post-apocalyptic,1228094574 +214979,3704,post-apocalyptic,1188846048 +214979,3706,private detective,1302668370 +214979,3706,Voodoo,1151968211 +214979,3717,remake,1247609562 +214979,3720,easily confused with other movie(s) (title),1241750461 +214979,3723,Hamlet,1260837505 +214979,3723,Shakespeare,1260837339 +214979,3725,rotoscoping,1193866671 +214979,3727,vampires,1241752332 +214979,3729,blaxploitation,1152172563 +214979,3740,Al Leong,1151995100 +214979,3740,cult film,1229480884 +214979,3741,atmospheric,1241454517 +214979,3741,road movie,1241453587 +214979,3781,blaxploitation,1260742804 +214979,3823,easily confused with other movie(s) (title),1223335277 +214979,3832,atmospheric,1235522526 +214979,3832,vampires,1206411055 +214979,3839,Roger Avary,1234147084 +214979,3840,monsters,1272235953 +214979,3840,so bad it's almost good,1250649075 +214979,3863,serial killer,1183394057 +214979,3915,boxing,1229555068 +214979,3937,robots,1153847498 +214979,3938,slasher,1231281089 +214979,3946,remake,1290737066 +214979,3947,remade,1290737056 +214979,3949,drugs,1152030981 +214979,3949,heroin,1152495566 +214979,3949,television,1229564577 +214979,3959,remade,1197338686 +214979,3959,time travel,1151968301 +214979,3970,grindhouse,1261012590 +214979,3972,kung fu,1152033325 +214979,3972,martial arts,1152571697 +214979,3972,sequel,1260310782 +214979,3996,sword fighting,1193861205 +214979,3996,wirework,1236614777 +214979,4003,Al Leong,1151995389 +214979,4006,giant robots,1184534899 +214979,4006,robots,1228091863 +214979,4014,easily confused with other movie(s) (title),1235002548 +214979,4022,easily confused with other movie(s) (title),1232579397 +214979,4027,1930s,1255038036 +214979,4027,notable soundtrack,1152029628 +214979,4034,drugs,1152031010 +214979,4034,easily confused with other movie(s) (title),1223520311 +214979,4064,blaxploitation,1187111703 +214979,4064,revenge,1187111701 +214979,4065,blaxploitation,1236192630 +214979,4065,revenge,1236192219 +214979,4067,outcast teaches us all a cheesy lesson,1272045898 +214979,4082,booze,1236017610 +214979,4082,Charles Bukowski,1288573210 +214979,4092,androids,1151998479 +214979,4105,cult film,1186042595 +214979,4105,Lovecraftian mythology,1197329313 +214979,4105,low budget,1221008653 +214979,4105,zombies,1151964844 +214979,4128,vampires,1152176087 +214979,4148,cannibalism,1153360160 +214979,4148,Hannibal Lecter,1186041832 +214979,4148,serial killer,1186041820 +214979,4159,Elvis iconography,1201661505 +214979,4166,television,1250211566 +214979,4195,atmospheric,1250211322 +214979,4195,serial killer,1306468153 +214979,4195,Vincent Price,1250211323 +214979,4196,H.P. Lovecraft,1288564620 +214979,4210,detectives,1268359540 +214979,4210,Hannibal Lecter,1185469984 +214979,4210,serial killer,1183393910 +214979,4214,college,1153762373 +214979,4214,nerds,1249947425 +214979,4215,nerds,1250045035 +214979,4222,so bad it's good,1218409712 +214979,4239,based on a true story,1255038519 +214979,4239,drugs,1152030949 +214979,4262,remake,1225664736 +214979,4262,unintentionally funny,1290734891 +214979,4263,booze,1236017632 +214979,4336,easily confused with other movie(s) (title),1197335015 +214979,4370,androids,1152028801 +214979,4396,Jackie Chan,1167094784 +214979,4403,Vincent Price,1259275797 +214979,4426,Mike Hammer,1260237058 +214979,4426,mysterious parcel,1199322887 +214979,4426,private detective,1201120102 +214979,4438,Bruce Lee,1152032983 +214979,4438,kung fu,1152033534 +214979,4438,martial arts,1152571709 +214979,4438,revenge,1228093377 +214979,4440,Bruce Lee,1152033114 +214979,4440,kung fu,1152033551 +214979,4440,martial arts,1152571745 +214979,4441,kung fu,1228442962 +214979,4441,martial arts,1228442962 +214979,4443,easily confused with other movie(s) (title),1234399793 +214979,4444,Bruce Lee,1152033048 +214979,4444,kung fu,1152033543 +214979,4444,martial arts,1152571760 +214979,4480,remake,1287018382 +214979,4532,zombies,1259896497 +214979,4533,zombies,1151968002 +214979,4541,Voodoo,1151968948 +214979,4541,zombies,1151968132 +214979,4545,robots,1152157055 +214979,4553,Al Leong,1151995511 +214979,4553,aliens,1151966414 +214979,4553,cult classic,1229389773 +214979,4553,cult film,1229389792 +214979,4565,ninja,1260227469 +214979,4566,ninja,1260227509 +214979,4567,ninja,1260227515 +214979,4571,Al Leong,1151995324 +214979,4571,time travel,1153951482 +214979,4605,dark humor,1308276356 +214979,4614,martial arts,1167097743 +214979,4617,gambling,1153951111 +214979,4624,black comedy,1308274223 +214979,4624,dark humor,1308276454 +214979,4624,puppets,1155062271 +214979,4633,black comedy,1308276414 +214979,4633,cannibalism,1167097567 +214979,4633,dark humor,1308276414 +214979,4643,remake,1152558174 +214979,4645,easily confused with other movie(s) (title),1259274642 +214979,4654,easily confused with other movie(s) (title),1220822068 +214979,4654,so bad it's almost good,1221014059 +214979,4658,clowns,1187336920 +214979,4682,so bad it's almost good,1243817081 +214979,4689,Giallo,1285548435 +214979,4701,kung fu,1221430254 +214979,4701,martial arts,1221430245 +214979,4703,easily confused with other movie(s) (title),1235002448 +214979,4713,hallucinatory,1260320401 +214979,4720,ghosts,1154023330 +214979,4745,Shakespeare,1202412040 +214979,4753,vampires,1151974342 +214979,4786,remake,1232580747 +214979,4794,Giallo,1285548033 +214979,4833,easily confused with other movie(s) (title),1228094172 +214979,4833,ghosts,1288128445 +214979,4846,kung fu,1260744600 +214979,4848,atmospheric,1235521863 +214979,4848,Hollywood,1268358856 +214979,4848,mysterious parcel,1201120193 +214979,4865,Jack the Ripper,1183393888 +214979,4865,serial killer,1183393929 +214979,4873,blunt existentialism,1269398371 +214979,4873,rotoscoping,1193866138 +214979,4874,aliens,1152156931 +214979,4874,outcast teaches us all a cheesy lesson,1272045858 +214979,4874,pretentious,1260322048 +214979,4876,remake,1247610209 +214979,4878,time travel,1151966699 +214979,4881,narrated,1235157909 +214979,4902,ghosts,1154023292 +214979,4963,heist,1151996911 +214979,4963,remake,1151964370 +214979,4975,remake,1164648676 +214979,4979,narrated,1167716021 +214979,4980,time travel,1153951750 +214979,4993,rating very dependent on version,1205445267 +214979,5009,boxing,1229555113 +214979,5026,martial arts,1152661900 +214979,5038,dragons,1260230980 +214979,5039,dragons,1260230852 +214979,5055,Bruce Lee,1260311240 +214979,5055,kung fu,1260311240 +214979,5055,martial arts,1260311240 +214979,5060,suicide,1228356905 +214979,5134,prison,1235004765 +214979,5134,remake,1235004781 +214979,5137,music documentary,1229390449 +214979,5153,cannibalism,1202412474 +214979,5165,grindhouse,1261012641 +214979,5171,remake,1247609617 +214979,5171,time travel,1153952066 +214979,5171,unintentionally funny,1250649178 +214979,5205,atmospheric,1241454756 +214979,5205,cannibalism,1241454734 +214979,5205,dark humor,1308276111 +214979,5240,easily confused with other movie(s) (title),1196812718 +214979,5244,ninja,1229292488 +214979,5244,ronin,1229562108 +214979,5244,samurai,1152992361 +214979,5244,sword fighting,1205962127 +214979,5254,vampires,1229562873 +214979,5287,Jim Thompson,1272843334 +214979,5288,nuclear war,1306966368 +214979,5290,aliens,1154625890 +214979,5290,mad scientist,1154625901 +214979,5294,narrated,1182722770 +214979,5305,so bad it's good,1228088778 +214979,5313,Al Leong,1198114561 +214979,5331,clowns,1152032617 +214979,5337,easily confused with other movie(s) (title),1259891774 +214979,5352,Philip Marlowe,1289155233 +214979,5352,remake,1289155233 +214979,5378,robots,1228092467 +214979,5385,music documentary,1229392169 +214979,5388,remake,1151965785 +214979,5418,assassins,1205440865 +214979,5418,easily confused with other movie(s) (title),1233183261 +214979,5418,remake,1226282334 +214979,5445,Philip K. Dick,1193009580 +214979,5463,dragons,1260230881 +214979,5464,1930s,1306968010 +214979,5502,aliens,1247499980 +214979,5511,easily confused with other movie(s) (title),1200351838 +214979,5569,remade,1260230657 +214979,5590,blaxploitation,1221857514 +214979,5595,Nazis,1261018116 +214979,5595,zombies,1259896288 +214979,5617,BDSM,1151999299 +214979,5618,rating very dependent on version,1204313811 +214979,5618,witches,1286321530 +214979,5630,Hannibal Lecter,1185470028 +214979,5630,remake,1152570256 +214979,5630,serial killer,1183393920 +214979,5666,Roger Avary,1233182474 +214979,5679,remake,1151968444 +214979,5694,so bad it's almost good,1261528448 +214979,5705,so bad it's good,1228441202 +214979,5715,slasher,1230517572 +214979,5730,ninja,1229471018 +214979,5759,cult film,1288320553 +214979,5763,BRD trilogy,1206657702 +214979,5763,sequel,1206657766 +214979,5770,grindhouse,1312765891 +214979,5771,remade,1272237533 +214979,5771,slasher,1230520921 +214979,5782,easily confused with other movie(s) (title),1196105841 +214979,5830,Jules Verne,1260321690 +214979,5844,slasher,1230520835 +214979,5861,Charles Bukowski,1288573257 +214979,5902,metafiction,1176660196 +214979,5903,dystopia,1153843046 +214979,5903,gun fu,1228443094 +214979,5909,heroin,1205444386 +214979,5909,Takashi Miike,1219633012 +214979,5935,youth gone wild,1218679607 +214979,5952,rating very dependent on version,1205445302 +214979,5980,Christmas,1250201168 +214979,5980,remade,1258683657 +214979,5980,slasher,1288320154 +214979,5983,remade,1218412591 +214979,6001,television,1288130586 +214979,6016,based on a true story,1255038478 +214979,6016,gangs,1229558873 +214979,6086,Mike Hammer,1260237132 +214979,6086,private detective,1260237332 +214979,6086,remake,1260237234 +214979,6126,BRD trilogy,1206657589 +214979,6126,sequel,1206657589 +214979,6132,Giallo,1285548222 +214979,6137,Arthurian legend,1260839769 +214979,6140,Giallo,1285548009 +214979,6140,slasher,1288319839 +214979,6152,so bad it's almost good,1243817041 +214979,6188,college,1229558682 +214979,6223,drugs,1236017738 +214979,6229,atmospheric,1225408153 +214979,6229,road movie,1225230449 +214979,6242,television,1151968423 +214979,6290,clowns,1152034093 +214979,6296,mockumentary,1153846737 +214979,6296,satire,1258681237 +214979,6301,revenge,1201900406 +214979,6305,dystopia,1152028648 +214979,6305,Ray Bradbury,1288922682 +214979,6337,gambling,1153951071 +214979,6379,cannibalism,1153360244 +214979,6406,Edgar Allan Poe,1288565356 +214979,6445,easily confused with other movie(s) (title),1229478406 +214979,6460,Franz Kafka,1289258419 +214979,6502,post-apocalyptic,1225324047 +214979,6502,pseudo-zombies,1152000372 +214979,6506,gun fu,1229987650 +214979,6519,remade,1227672811 +214979,6520,Arthurian legend,1260840119 +214979,6539,ghosts,1201650260 +214979,6582,martial arts,1228441990 +214979,6602,hallucination,1235495306 +214979,6618,kung fu,1152051402 +214979,6618,martial arts,1152571802 +214979,6678,dystopia,1167019582 +214979,6721,kung fu,1260744748 +214979,6722,kung fu,1260744762 +214979,6723,kung fu,1260744801 +214979,6724,1930s,1252972316 +214979,6731,zombies,1151967838 +214979,6744,vampires,1229562756 +214979,6746,so bad it's almost good,1234423376 +214979,6754,easily confused with other movie(s) (title),1202093374 +214979,6754,vampires,1153696743 +214979,6754,werewolves,1153696846 +214979,6755,Elvis iconography,1201662991 +214979,6774,body horror,1292980108 +214979,6774,television,1151965602 +214979,6796,gangs,1197339481 +214979,6803,easily confused with other movie(s) (title),1197334361 +214979,6807,satire,1258681147 +214979,6820,high school,1153361803 +214979,6820,werewolves,1151964899 +214979,6857,ninja,1229471011 +214979,6868,easily confused with other movie(s) (title),1223335289 +214979,6872,zombies,1259896454 +214979,6874,homage,1151998794 +214979,6874,revenge,1260312326 +214979,6880,remake,1153360046 +214979,6910,easily confused with other movie(s) (title),1197335569 +214979,6944,remake,1185469014 +214979,6955,easily confused with other movie(s) (title),1259301496 +214979,6966,black comedy,1307915061 +214979,6975,remade,1225750372 +214979,6975,serial killer,1306468270 +214979,6977,unintentionally funny,1344874530 +214979,6979,nuclear war,1306966330 +214979,7001,aliens,1152238695 +214979,7001,remake,1152577655 +214979,7003,atmospheric,1231974785 +214979,7003,kafkaesque,1289257787 +214979,7013,atmospheric,1235522426 +214979,7028,clowns,1305505118 +214979,7036,high school,1153361854 +214979,7036,werewolves,1153361854 +214979,7044,atmospheric,1235521890 +214979,7044,hallucination,1235514855 +214979,7045,witches,1286321549 +214979,7046,witches,1152577773 +214979,7062,prison,1235004735 +214979,7069,Shakespeare,1261355379 +214979,7090,kung fu,1260312645 +214979,7090,martial arts,1260312645 +214979,7100,easily confused with other movie(s) (title),1199315253 +214979,7100,strippers,1199486002 +214979,7102,parody,1258680645 +214979,7115,Giallo,1285548256 +214979,7116,remade,1258327409 +214979,7123,drugs,1151999621 +214979,7123,hallucinatory,1288921953 +214979,7153,rating very dependent on version,1205445288 +214979,7222,cult classic,1229468908 +214979,7222,cult film,1186042611 +214979,7235,Takashi Miike,1151965233 +214979,7236,dystopia,1181633785 +214979,7236,post-apocalyptic,1188845985 +214979,7236,sentient dog,1188937538 +214979,7266,low budget,1288129650 +214979,7266,mad scientist,1268358310 +214979,7266,parody,1258680527 +214979,7272,blaxploitation,1152172568 +214979,7272,notable soundtrack,1272236375 +214979,7280,blaxploitation,1204739800 +214979,7281,blaxploitation,1204739805 +214979,7289,Christmas,1250201592 +214979,7300,road movie,1236613155 +214979,7346,easily confused with other movie(s) (title),1221428088 +214979,7360,remake,1151968980 +214979,7360,zombies,1151968868 +214979,7371,unintentional comedy,1396413910 +214979,7387,zombies,1151966681 +214979,7419,BDSM,1151999525 +214979,7419,black comedy,1308266833 +214979,7419,dark humor,1308276270 +214979,7419,NYC,1196042109 +214979,7438,homage,1151998805 +214979,7438,revenge,1260311370 +214979,7438,wirework,1236614845 +214979,7451,High School,1260235015 +214979,7454,vampires,1206411161 +214979,7454,werewolves,1206411161 +214979,7481,aliens,1195768998 +214979,7481,spaceflight,1260321214 +214979,7482,Bruce Lee,1151964831 +214979,7482,kung fu,1152033564 +214979,7482,martial arts,1152661828 +214979,7484,music documentary,1229392802 +214979,7564,atmospheric,1260828304 +214979,7564,ghosts,1261020745 +214979,7564,samurai,1261020819 +214979,7573,remake,1289271703 +214979,7657,zombies,1261525826 +214979,7713,remade,1223337159 +214979,7714,Arthurian legend,1260839900 +214979,7742,easily confused with other movie(s) (title),1196115349 +214979,7742,narrated,1182722598 +214979,7742,sentient dog,1188948382 +214979,7743,spaceflight,1260320515 +214979,7757,stop-motion,1259019263 +214979,7762,espionage,1205448176 +214979,7766,Shakespeare,1199324971 +214979,7768,remake,1247705657 +214979,7781,easily confused with other movie(s) (title),1196105746 +214979,7802,cult classic,1239934216 +214979,7802,cult film,1239934216 +214979,7802,gangs,1229558921 +214979,7815,suburbia,1152479371 +214979,7844,martial arts,1260745163 +214979,7881,zombies,1185471413 +214979,7882,zombies,1249859410 +214979,7891,I Am Legend,1229899411 +214979,7891,remade,1203465260 +214979,7891,Vincent Price,1288217447 +214979,7892,easily confused with other movie(s) (title),1260231100 +214979,7892,grindhouse,1289269225 +214979,7892,martial arts,1260312281 +214979,7893,martial arts,1260312302 +214979,7899,kung fu,1260744456 +214979,7917,drugs,1267758677 +214979,7917,youth gone wild,1185476633 +214979,7923,grindhouse,1289269088 +214979,7925,samurai,1228947893 +214979,7930,BDSM,1235516498 +214979,7943,Ernest Hemingway,1290737560 +214979,7943,hit men,1205441542 +214979,7943,remade,1290737525 +214979,7981,remade,1286818274 +214979,7982,remade,1288573616 +214979,7984,BDSM,1228090741 +214979,7984,body horror,1292980129 +214979,7984,H.P. Lovecraft,1197329024 +214979,7984,Lovecraftian mythology,1197329254 +214979,7984,mad scientist,1228090663 +214979,7991,dystopia,1225323593 +214979,7991,grindhouse,1289267118 +214979,7991,remade,1255305018 +214979,7991,television,1260319980 +214979,8122,post-apocalyptic,1307572259 +214979,8122,so bad it's good,1235159596 +214979,8130,easily confused with other movie(s) (title),1221428117 +214979,8132,easily confused with other movie(s) (title),1229555542 +214979,8142,easily confused with other movie(s) (title),1214779614 +214979,8142,Takashi Miike,1152034907 +214979,8158,drugs,1228356774 +214979,8196,cult classic,1235495139 +214979,8225,remake,1197334462 +214979,8228,private detective,1228961799 +214979,8228,remade,1199322456 +214979,8258,cult film,1229466785 +214979,8258,Troma,1200267273 +214979,8268,assassins,1205440942 +214979,8268,remake,1152554386 +214979,8370,remake,1201491146 +214979,8376,high school,1152158437 +214979,8401,detectives,1268359414 +214979,8404,detectives,1268359424 +214979,8477,narrated,1182722706 +214979,8501,remade,1259891130 +214979,8501,sequel,1259891182 +214979,8507,cult classic,1221856270 +214979,8507,cult film,1193869025 +214979,8520,so bad it's almost good,1228447616 +214979,8620,satire,1258681161 +214979,8622,terrorism,1161739309 +214979,8633,spaceflight,1260321001 +214979,8640,Arthurian legend,1260837881 +214979,8641,television,1260319842 +214979,8654,Arthurian legend,1260839441 +214979,8681,Arthurian legend,1260839880 +214979,8751,remade,1198113587 +214979,8751,road movie,1241454299 +214979,8768,easily confused with other movie(s) (title),1199315269 +214979,8807,drugs,1199059090 +214979,8822,Arthurian legend,1260840327 +214979,8854,possession,1196043228 +214979,8874,zombies,1151968901 +214979,8879,private detective,1302668876 +214979,8902,easily confused with other movie(s) (title),1240186755 +214979,8906,cannibalism,1261019931 +214979,8906,grindhouse,1261012768 +214979,8910,blunt existentialism,1228091324 +214979,8917,puppets,1155062248 +214979,8947,ghosts,1154023342 +214979,8947,remake,1152577604 +214979,8983,wirework,1259726950 +214979,8985,sequel,1288220198 +214979,8985,vampires,1232066051 +214979,25752,easily confused with other movie(s) (title),1245715458 +214979,25763,easily confused with other movie(s) (title),1200351856 +214979,25765,Edgar Allan Poe,1262647272 +214979,25788,remade,1225664701 +214979,25901,Shakespeare,1260837303 +214979,25971,easily confused with other movie(s) (title),1199469985 +214979,26064,Hamlet,1260837738 +214979,26082,revenge,1197338956 +214979,26082,ronin,1195767429 +214979,26082,samurai,1195767429 +214979,26082,suicide,1195767429 +214979,26117,Ernest Hemingway,1290737571 +214979,26117,hit men,1205441553 +214979,26117,remake,1290737534 +214979,26122,atmospheric,1229560795 +214979,26122,samurai,1229560813 +214979,26159,assassins,1292287917 +214979,26172,remade,1199312839 +214979,26265,dark humor,1308276200 +214979,26265,Vincent Price,1225148505 +214979,26270,ronin,1272044801 +214979,26280,easily confused with other movie(s) (title),1223520220 +214979,26307,kung fu,1316126159 +214979,26322,remade,1247609524 +214979,26342,Philip Marlowe,1260236216 +214979,26342,private detective,1260236876 +214979,26349,private detective,1302668993 +214979,26365,sequel,1287017899 +214979,26399,kung fu,1237850328 +214979,26399,martial arts,1237850439 +214979,26403,dragons,1260231019 +214979,26462,easily confused with other movie(s) (title),1203709252 +214979,26492,Al Leong,1198114419 +214979,26492,television,1260321110 +214979,26494,easily confused with other movie(s) (title),1229896681 +214979,26494,punks,1229896651 +214979,26494,suburbia,1229896709 +214979,26504,easily confused with other movie(s) (title),1229478458 +214979,26513,cult film,1229389908 +214979,26513,dystopia,1228092526 +214979,26513,robots,1228092491 +214979,26513,spaceflight,1260316995 +214979,26513,time travel,1151965226 +214979,26523,Christmas,1250201250 +214979,26523,Santa Claus,1250200978 +214979,26544,high school,1229554356 +214979,26547,kung fu,1260744574 +214979,26547,martial arts,1290730850 +214979,26551,ninja,1235073742 +214979,26585,gun fu,1228443133 +214979,26606,ghosts,1205958264 +214979,26606,stop-motion,1205958311 +214979,26606,sword fighting,1205961223 +214979,26606,wirework,1236614839 +214979,26614,remade,1225407181 +214979,26629,clowns,1196194004 +214979,26681,Elvis iconography,1239808944 +214979,26681,kung fu,1239808853 +214979,26693,clowns,1235415592 +214979,26736,cult classic,1234395308 +214979,26736,cult film,1234395307 +214979,26736,kung fu,1234395137 +214979,26736,martial arts,1234395138 +214979,26776,1930s,1306968434 +214979,26806,ninja,1260227545 +214979,26819,easily confused with other movie(s) (title),1227231564 +214979,26822,easily confused with other movie(s) (title),1252361981 +214979,26842,kung fu,1224118075 +214979,26842,martial arts,1224118075 +214979,26842,wirework,1236614830 +214979,26865,kung fu,1260744582 +214979,26865,martial arts,1260312567 +214979,26898,yakuza,1288574235 +214979,26915,cult film,1229465445 +214979,26915,Troma,1289263650 +214979,26925,cannibalism,1288921440 +214979,26950,Troma,1228257509 +214979,26974,youth gone wild,1185476988 +214979,26989,rating very dependent on version,1235002956 +214979,27018,Takashi Miike,1262319686 +214979,27036,Arthurian legend,1260839208 +214979,27095,easily confused with other movie(s) (title),1233184934 +214979,27109,revenge,1228093340 +214979,27109,samurai,1228356804 +214979,27132,martial arts,1260312361 +214979,27317,Takashi Miike,1151967102 +214979,27338,easily confused with other movie(s) (title),1233184869 +214979,27402,H.P. Lovecraft,1241453455 +214979,27402,Lovecraftian mythology,1241453464 +214979,27402,monsters,1229639898 +214979,27441,vampires,1288216551 +214979,27482,sequel,1288220271 +214979,27563,Takashi Miike,1219632969 +214979,27592,revenge,1222106099 +214979,27592,trilogy,1224215593 +214979,27611,spaceflight,1260316894 +214979,27664,rating very dependent on version,1204313870 +214979,27713,Charles Bukowski,1288573273 +214979,27746,sequel,1258680916 +214979,27772,remade,1288131741 +214979,27773,revenge,1199330593 +214979,27773,trilogy,1222106125 +214979,27801,martial arts,1152572027 +214979,27801,muay thai,1260311637 +214979,27812,music documentary,1229468554 +214979,27873,music documentary,1229988317 +214979,27879,music documentary,1229392649 +214979,27899,blunt existentialism,1228091392 +214979,27899,New-Age philosophy,1228091409 +214979,27904,Philip K. Dick,1193009559 +214979,27904,rotoscoping,1193866149 +214979,27904,surveillance,1308271033 +214979,30707,boxing,1229555092 +214979,30745,Takashi Miike,1224716482 +214979,30783,Giallo,1285548557 +214979,31270,pseudo-zombies,1197338897 +214979,31445,easily confused with other movie(s) (title),1231120729 +214979,31522,BRD trilogy,1206657798 +214979,31545,easily confused with other movie(s) (title),1233185762 +214979,31804,easily confused with other movie(s) (title),1197335069 +214979,31878,kung fu,1260744774 +214979,32211,grindhouse,1261012455 +214979,32385,remade,1261365788 +214979,32469,remade,1228006026 +214979,32587,cannibalism,1153359664 +214979,32834,Shakespeare,1260837346 +214979,33085,possession,1228091072 +214979,33085,remake,1228091072 +214979,33321,easily confused with other movie(s) (title),1220822028 +214979,33493,robots,1228092426 +214979,33493,spaceflight,1260321450 +214979,33646,prison,1235004850 +214979,33646,remade,1235004841 +214979,33794,ninja,1229470999 +214979,33834,zombies,1267493106 +214979,33838,easily confused with other movie(s) (title),1205442048 +214979,33896,cannibalism,1196104349 +214979,33896,Takashi Miike,1219633101 +214979,34323,clowns,1152034122 +214979,34397,martial arts,1259110933 +214979,34540,high school,1260235271 +214979,34542,narrated,1235157872 +214979,36477,easily confused with other movie(s) (title),1196115365 +214979,36752,martial arts,1260310685 +214979,36752,ninja,1229292445 +214979,37720,courtroom,1220566551 +214979,37720,possession,1228091184 +214979,38061,private detective,1260236801 +214979,38097,rating very dependent on version,1232411145 +214979,38583,punks,1235976525 +214979,38583,revenge,1234815207 +214979,39869,1930s,1252972614 +214979,40732,rating very dependent on version,1288142638 +214979,41014,Giallo,1285548356 +214979,41566,witches,1286321587 +214979,41627,samurai,1261020809 +214979,42011,remake,1227672797 +214979,42351,nuclear war,1306966228 +214979,42543,remade,1299029650 +214979,42718,parkour,1260311116 +214979,42723,Takashi Miike,1262129269 +214979,42723,torture,1288130708 +214979,42725,drugs,1241750622 +214979,42725,marijuana,1241751050 +214979,43011,H.P. Lovecraft,1228952416 +214979,43011,Lovecraftian mythology,1261529683 +214979,43177,drugs,1267659789 +214979,43177,youth gone wild,1267657274 +214979,43289,hallucination,1288921819 +214979,43289,samurai,1272044698 +214979,43444,skinheads,1340046663 +214979,43832,H.P. Lovecraft,1241660281 +214979,43832,stop-motion,1259019241 +214979,43838,so bad it's good,1253144393 +214979,43838,unintentionally funny,1291774208 +214979,43921,easily confused with other movie(s) (title),1196812820 +214979,43971,Giallo,1286320795 +214979,44191,dystopia,1156735303 +214979,44191,terrorism,1161909320 +214979,44397,cannibalism,1169023911 +214979,44397,remake,1169024327 +214979,44555,surveillance,1199318450 +214979,44590,Giallo,1285548198 +214979,44597,yakuza,1262229945 +214979,44633,music documentary,1229470775 +214979,44665,hit men,1205441373 +214979,44761,high school,1260234943 +214979,44779,Santa Claus,1316126313 +214979,44828,body horror,1292980426 +214979,44828,pseudo-zombies,1162928991 +214979,44974,vengence,1288924069 +214979,45081,Roger Avary,1234147194 +214979,45183,martial arts,1290730951 +214979,45431,suburbia,1152479046 +214979,45635,BDSM,1203463134 +214979,45891,Philip Marlowe,1260236391 +214979,45891,private detective,1260236894 +214979,46347,music documentary,1229987323 +214979,46772,high school,1229987375 +214979,46976,metafiction,1176660049 +214979,47330,grindhouse,1261012703 +214979,47997,satire,1258681319 +214979,47997,television,1260320252 +214979,48385,mockumentary,1181634430 +214979,48516,remake,1185468716 +214979,48520,easily confused with other movie(s) (title),1231120743 +214979,49272,gambling,1239936666 +214979,49272,parkour,1288922491 +214979,50003,easily confused with other movie(s) (title),1214779616 +214979,50147,Christmas,1250201181 +214979,50147,remake,1202414071 +214979,50445,remake,1259891141 +214979,50658,The Up Series,1277421292 +214979,50740,The Up Series,1277421306 +214979,50742,The Up Series,1247705459 +214979,50794,parody,1258680693 +214979,51127,music documentary,1229392677 +214979,51277,kung fu,1241453542 +214979,51277,martial arts,1241453543 +214979,51498,remake,1224636697 +214979,51540,based on a true story,1255038528 +214979,51662,narrated,1186040384 +214979,51662,remake,1235157530 +214979,51662,unintentionally funny,1289260686 +214979,51709,monster,1203283442 +214979,52281,serial killer,1183394026 +214979,52281,zombies,1179464050 +214979,52328,easily confused with other movie(s) (title),1241750466 +214979,52950,sequel,1202945564 +214979,53000,post-apocalyptic,1228094709 +214979,53000,pseudo-zombies,1219962364 +214979,53000,sequel,1219963093 +214979,53127,easily confused with other movie(s) (title),1240186763 +214979,53131,easily confused with other movie(s) (title),1202945320 +214979,53183,kung fu,1260744667 +214979,53183,martial arts,1260744679 +214979,53318,strippers,1250044836 +214979,53326,easily confused with other movie(s) (title),1249860278 +214979,53996,giant robots,1228091838 +214979,53996,robots,1228091820 +214979,54503,high school,1260235037 +214979,54686,Arthurian legend,1260839123 +214979,54785,remake,1189376496 +214979,54785,slasher,1320969023 +214979,54787,revenge,1201471692 +214979,54995,strippers,1234147447 +214979,54997,remake,1189376445 +214979,54999,BDSM,1228266897 +214979,54999,gun fu,1228443242 +214979,54999,parody,1258680980 +214979,55553,easily confused with other movie(s) (title),1250036601 +214979,55995,Roger Avary,1234147232 +214979,56145,remake,1245195866 +214979,56174,I Am Legend,1229899466 +214979,56174,remake,1202946505 +214979,56367,high school,1260234999 +214979,56921,spaceflight,1260320453 +214979,57421,slasher,1306965979 +214979,57534,remake,1202842618 +214979,58287,easily confused with other movie(s) (title),1242083766 +214979,58297,BDSM,1241453719 +214979,58297,cannibalism,1241455437 +214979,58297,post-apocalyptic,1241453719 +214979,58301,remake,1225750379 +214979,58485,zombies,1259896488 +214979,58554,easily confused with other movie(s) (title),1235006134 +214979,59159,Edgar Allan Poe,1259275906 +214979,59273,easily confused with other movie(s) (title),1235461325 +214979,59306,remake,1228087776 +214979,59604,easily confused with other movie(s) (title),1221427965 +214979,60069,robots,1228091763 +214979,60072,gun fu,1292979453 +214979,60363,strippers,1228089720 +214979,60768,music documentary,1240182544 +214979,61073,mysterious parcel,1243879619 +214979,61116,blaxploitation,1277161066 +214979,61240,1980s,1288214657 +214979,61240,remade,1288315812 +214979,61240,serial killer,1306468182 +214979,61240,vampires,1232065586 +214979,61246,Hamlet,1260837515 +214979,61248,remake,1220822239 +214979,61961,nuclear war,1306966350 +214979,62049,dystopia,1229990122 +214979,62049,remade,1229990092 +214979,62203,torture,1258673219 +214979,62383,remade,1252368456 +214979,63033,easily confused with other movie(s) (title),1259301484 +214979,63062,easily confused with other movie(s) (title),1228094235 +214979,63181,body horror,1292980144 +214979,63647,grindhouse,1260311299 +214979,63808,easily confused with other movie(s) (title),1235006127 +214979,63992,easily confused with other movie(s) (title),1228357463 +214979,64197,easily confused with other movie(s) (title),1235678095 +214979,64368,ninja,1229292437 +214979,64839,strippers,1234399871 +214979,65126,BDSM,1236794043 +214979,65400,ninja,1260227533 +214979,65514,kung fu,1310088897 +214979,65514,martial arts,1290730807 +214979,65518,so bad it's almost good,1243292427 +214979,65518,W.A.S.P.,1288319262 +214979,65601,remake,1272237542 +214979,65612,easily confused with other movie(s) (title),1232579424 +214979,65665,Hamlet,1260837528 +214979,65738,nerds,1250045079 +214979,65740,nerds,1250045086 +214979,65882,remake,1288573601 +214979,65932,easily confused with other movie(s) (title),1233879519 +214979,65982,easily confused with other movie(s) (title),1234399749 +214979,66130,easily confused with other movie(s) (title),1235002570 +214979,66152,aliens,1279750488 +214979,66152,monster,1279750488 +214979,66152,television,1279750488 +214979,66365,cult film,1235517610 +214979,66365,Full Moon Entertainment,1235494790 +214979,66365,homage,1235494790 +214979,66365,punks,1235494790 +214979,66365,time travel,1236810372 +214979,67252,martial arts,1259726735 +214979,67252,muay thai,1260311707 +214979,67900,easily confused with other movie(s) (title),1260242654 +214979,67949,easily confused with other movie(s) (title),1240179053 +214979,68157,Nazis,1344663819 +214979,68941,remake,1247611072 +214979,69275,Nazis,1261018040 +214979,69275,zombies,1261018048 +214979,69945,easily confused with other movie(s) (title),1257381040 +214979,69947,kung fu,1260744719 +214979,69947,martial arts,1260744723 +214979,70048,black comedy,1308266937 +214979,70048,dark humor,1308276291 +214979,70229,easily confused with other movie(s) (title),1258682977 +214979,70889,grindhouse,1261012503 +214979,70994,sequel,1320969101 +214979,71205,high school,1264375507 +214979,71535,zombies,1255036431 +214979,71700,high school,1260232021 +214979,71700,zombies,1259896004 +214979,72171,blaxploitation,1260741737 +214979,72171,martial arts,1261010772 +214979,72171,parody,1260741746 +214979,72380,this was a Twilight Zone episode,1259018369 +214979,72489,martial arts,1260310564 +214979,72489,ninja,1260227891 +214979,72591,easily confused with other movie(s) (title),1259017086 +214979,72605,easily confused with other movie(s) (title),1259110889 +214979,72612,easily confused with other movie(s) (title),1259110816 +214979,72777,aliens,1260321274 +214979,72777,remake,1260321290 +214979,72923,kung fu,1260744701 +214979,73321,post-apocalyptic,1293412044 +214979,74685,remake,1267492902 +214979,76175,remake,1285552569 +214979,77427,body horror,1292980059 +214979,77798,remake,1274315572 +214979,78679,Jim Thompson,1289179026 +214979,78967,remade,1279750725 +214979,79073,music documentary,1285192575 +214979,79224,remake,1280270857 +214979,79428,remake,1280768066 +214979,79553,martial arts,1290730979 +214979,80831,remake,1288315770 +214979,80831,vampires,1288315783 +214979,81312,torture,1288131597 +214979,81669,Franz Kafka,1289257733 +214979,82015,remake,1290723942 +214979,82242,Santa Claus,1316126329 +214979,82366,slasher,1312237788 +214979,82641,kung fu,1292976261 +214979,82698,Full Moon Entertainment,1293059234 +214979,84183,samurai,1316125102 +214979,84189,remake,1300671381 +214979,84565,samurai,1316125092 +214979,84796,kung fu,1300312476 +214979,85788,ghosts,1324316223 +214979,89277,H.P. Lovecraft,1316124611 +214979,89490,remake,1316124529 +214979,90343,remake,1320966708 +215001,57669,black comedy,1452649428 +215001,57669,comedy,1452649537 +215001,57669,dark comedy,1452649421 +215001,57669,dark humor,1452649450 +215001,57669,drama,1452649590 +215001,57669,friendship,1452649439 +215001,57669,funny,1452649546 +215001,57669,imdb top 250,1452649516 +215001,57669,R,1452649530 +215004,3250,mountain climbing,1432344228 +215004,3250,south america,1432344226 +215004,3250,survival,1432344223 +215004,56331,escape prison camp,1432342586 +215004,56331,Survival Story,1432342570 +215004,56331,survivalism,1432342592 +215004,75983,climbing,1432344083 +215004,75983,man vs. nature,1432344087 +215004,83369,adventure,1432343964 +215004,83369,prison escape,1432343959 +215004,83369,siberia,1432343956 +215004,83369,survival,1432343974 +215019,58627,inspirational,1309567821 +215019,58627,Martial Arts,1309567888 +215019,58627,MMA Fighting,1309567879 +215019,58627,Revenge,1309567897 +215019,65514,Bruce Lee Master,1309568034 +215019,65514,inspirational,1309568015 +215019,65514,Wing Chun,1309568059 +215075,260,Good for kids,1439472270 +215075,260,Science Fiction,1439472311 +215075,455,family,1440159747 +215075,1015,family,1440159786 +215075,109487,sci-fi,1440159934 +215098,356,good-hearted,1435081415 +215098,356,odds-defying,1435081415 +215098,356,romance,1435081415 +215133,260,Star Wars,1438899849 +215139,329,Patrick Stewart,1385647757 +215139,329,Star Trek,1385647741 +215139,597,anti-feminist,1385647663 +215139,4014,chocolate,1385600343 +215139,8983,amazing photography,1385647900 +215139,8983,Beautiful,1385647903 +215139,8983,beautifully filmed,1385647898 +215139,8983,fantasy,1385647916 +215139,8983,Kick-Butt Women,1385647908 +215139,40629,acting,1385600199 +215139,40629,adaptation,1385600220 +215139,40629,story cuts,1385600210 +215139,47610,cinematography,1385647958 +215139,47610,visually appealling,1385647976 +215139,48394,magical realism,1385595805 +215139,48394,torture,1385595817 +215139,71033,Spanish,1385648076 +215139,72720,Colin Firth,1385599954 +215139,72720,color,1385599973 +215139,72720,gay,1385599945 +215139,72720,Gay Lead Character,1385599958 +215139,72720,queer,1385599964 +215139,88810,paternalism,1385598259 +215139,88810,white people,1385598249 +215139,91658,rape,1385598100 +215139,91658,serial killer,1385598106 +215144,4755,Katherine Heigl,1357981970 +215144,6157,superhero,1331960362 +215144,63393,Demi Lovato,1358115227 +215144,70102,cancer,1331959629 +215144,88672,Paul Rudd,1357982630 +215144,93467,deafness,1331856175 +215144,93467,romance,1331856175 +215144,99728,Emma Stone,1357982531 +215144,112852,great soundtrack,1428248524 +215213,377,Action,1437135934 +215213,480,adventure,1437135876 +215213,1203,thought-provoking,1437136003 +215213,1721,based on a true story,1437135844 +215213,4993,fantasy world,1437124066 +215213,5349,"fantasy, action",1437136077 +215213,64030,action,1437136112 +215213,72011,employer employee relationship,1437136049 +215213,81782,thriller,1437135972 +215213,117529,action,1437135900 +215213,117529,adventure,1437135902 +215225,260,aliens,1436998491 +215225,260,space opera,1436998304 +215225,260,spaceships,1436998495 +215233,260,futuristic,1442218619 +215233,260,Sci-fi,1442218607 +215234,112556,close to the book,1435288617 +215238,7020,Notable Nudity,1150988077 +215250,260,han solo,1441704738 +215250,260,Harrison Ford,1441704744 +215250,260,sci-fi,1441704754 +215250,260,the force,1441704646 +215296,50872,children,1446402952 +215296,50872,Family,1446402967 +215296,134130,entertainment,1446403322 +215296,134130,Space,1446403337 +215302,417,watch,1198699093 +215302,4976,watch,1198698863 +215302,7810,watch,1198699044 +215302,7812,watch,1198699064 +215302,8261,watch,1198698957 +215302,49932,watch,1198698891 +215302,51471,watch,1198699010 +215302,51662,watch,1198698984 +215302,52967,watch,1198698928 +215304,2858,coming of age,1184075105 +215361,260,action,1440207517 +215361,260,Science Fiction,1440207501 +215362,31878,Hong Kong,1147034307 +215367,592,Exellent Movie,1195609759 +215374,26662,on hold,1140398446 +215389,318,hope,1450058526 +215389,318,prison,1450058494 +215394,260,Bad acting,1432221091 +215394,260,Sci-fi,1432221027 +215394,527,based on a true story,1432221381 +215394,527,disturbing,1432221373 +215394,527,history,1432221367 +215394,527,thought-provoking,1432221353 +215394,527,true story,1432221342 +215394,527,World War II,1432221385 +215394,527,WWII,1432221389 +215412,32,not seen,1161113382 +215412,32,time travel,1161113385 +215412,904,Grace Kelly,1161113313 +215442,260,hero's journey,1438219101 +215442,260,sci-fi,1438219107 +215472,2406,adventure,1429894795 +215472,2406,Michael Douglas,1429894786 +215472,3147,Stephen King,1429894896 +215472,3147,Tom Hanks,1429894892 +215472,3798,Harrison Ford,1429894960 +215472,3798,horr,1429894953 +215472,3798,supernatural,1429894947 +215472,7669,author:Jane Austen,1429894740 +215472,7669,Colin Firth,1429894732 +215472,7669,England,1429894737 +215472,7669,TV series,1429894747 +215472,89678,Jane Austen,1429894845 +215481,1,Pixar,1216146311 +215481,110,medieval,1216146402 +215481,316,space,1216146263 +215481,316,time travel,1216146266 +215481,541,Harrison Ford,1216146236 +215481,541,Philip K. Dick,1216146234 +215481,541,sci-fi,1216146230 +215481,858,Marlon Brando,1216146256 +215481,1196,George Lucas,1216146285 +215481,2019,samurai,1216146217 +215481,2571,virtual reality,1216146297 +215481,4993,fantasy,1216146224 +215481,4993,Tolkien,1216146227 +215481,6333,superhero,1216146407 +215481,6365,virtual reality,1216146395 +215481,32587,comic book,1216146390 +215481,45722,Johnny Depp,1216146417 +215481,45722,pirates,1216146415 +215494,356,great acting,1436110199 +215494,356,Great drama,1436110215 +215494,356,great story,1436110205 +215494,1136,history,1436109921 +215494,81845,british history,1436110165 +215494,81845,british royal,1436110165 +215494,81845,great performances,1436110165 +215501,260,good vs evil,1437782263 +215501,260,oldie but goodie,1437782276 +215503,17,British,1139522058 +215503,595,Disney,1139522050 +215503,1035,classic,1139522129 +215503,1035,family,1139522132 +215503,1198,action,1139522299 +215503,1198,indiana jones,1139522299 +215503,6986,dvd,1139522055 +215503,8961,dvd,1139522274 +215503,8961,Pixar,1139522275 +215503,8961,super-hero,1139522272 +215503,34162,comedy,1139522204 +215503,40629,Classic,1139521936 +215518,58559,Batman,1435652483 +215518,58559,Christopher Nolan,1435652474 +215518,58559,Heath Ledger as the Joker,1435652464 +215518,118696,nice shots,1435652443 +215518,118696,too much graphics,1435652443 +215518,118696,too slow,1435652443 +215520,134853,family,1444937537 +215520,134853,Pixar,1444937530 +215522,37733,Best of 2005,1145719014 +215540,3355,ancient books,1320875547 +215540,3355,Emmanuelle Seigner,1320875516 +215540,3355,Johnny Depp,1320844883 +215540,3355,Mystery,1320844887 +215540,3355,Nudity (Rear),1320875559 +215540,3355,rare books,1320875529 +215540,3355,Roman Polanski,1320875521 +215540,3355,satanism,1320844891 +215540,3355,story,1320875567 +215540,3355,style,1320875571 +215540,8531,comedy,1368050590 +215540,34530,comedy,1368050590 +215558,6947,historical,1451200410 +215558,6947,navy,1451200417 +215558,6947,war,1451200413 +215558,48304,adventure,1451185532 +215558,48304,history,1451185524 +215558,48304,Native Americans,1451185515 +215558,48304,survival,1451185522 +215558,94466,Science fiction,1451185624 +215558,112556,based on a book,1451185765 +215558,115569,journalism,1451185691 +215558,115569,psychothriller,1451185700 +215558,115569,thriller,1451185687 +215558,128360,History,1451183264 +215558,128360,Western,1451183257 +215565,2810,celebrity,1312175518 +215565,2810,cult of persona,1312175507 +215565,2810,distorted reality,1312175500 +215565,6037,group sex,1314853266 +215565,6037,Valerie Quennessen,1314853331 +215565,8575,Audrey Tautou,1312167892 +215565,32562,entertaining,1316335770 +215565,38159,voyeurism,1312299459 +215565,78116,rebecca hall,1312167638 +215565,89864,Skeletor,1328332753 +215593,318,hope,1443364772 +215593,527,history,1443364804 +215593,527,true story,1443364823 +215593,527,World War II,1443364800 +215593,2571,sci-fi,1443364868 +215593,2571,virtual reality,1443364871 +215593,5349,Action,1443365541 +215593,31878,Stephen Chow,1443365684 +215593,77736,black humor,1443365138 +215593,79132,complicated,1443364902 +215593,79132,intellectual,1443364909 +215593,79132,sci-fi,1443364905 +215593,91529,Batman,1443365260 +215593,91630,action,1443365055 +215593,91630,Tom Cruise,1443365052 +215593,102125,robots,1443365501 +215593,109487,sci-fi,1443364932 +215593,110281,Stephen Chow,1443365637 +215593,111781,Action,1443365022 +215593,111781,Tom Cruise,1443365023 +215593,115713,artificial intelligence,1443364954 +215593,115713,sci-fi,1443364959 +215595,101695,based on a play,1424462357 +215595,101695,drugs,1424462357 +215595,101695,realistic,1424462357 +215595,112944,high school,1426491856 +215595,112944,sexuality,1426491856 +215595,112944,teacher student relationship,1426491856 +215595,126586,critically acclaimed,1422377641 +215595,126586,dark,1422377641 +215595,126586,jail,1422377641 +215598,260,classic sci-fi,1436472111 +215598,260,cult classic,1436472086 +215602,3535,business,1450810732 +215602,3535,Christian Bale,1450810726 +215602,3535,insanity,1450810720 +215602,3535,psychology,1450810717 +215620,3967,dance,1168398936 +215620,40870,Québécois,1180410802 +215620,48394,spanish civil war,1180410956 +215650,112,Kung-Fu,1146068793 +215650,780,aliens,1146068855 +215650,2022,good soundtrack,1146516932 +215650,2231,poker,1146070355 +215650,4886,CGI,1146068835 +215650,6337,gambling,1146070392 +215650,7034,lesbian,1146610283 +215650,7383,Poker,1146343832 +215650,8494,poker,1151606756 +215650,33880,Limited,1146069394 +215650,40010,helsinki international film festival,1160862455 +215650,40010,hiff. r&a,1160862455 +215650,40010,rakkautta ja anarkiaa,1160862455 +215650,44199,Too predictable,1146069617 +215650,46574,orgasm,1170538486 +215650,46723,R&A,1169842692 +215650,48082,artsy,1170188163 +215650,48416,nerds,1170449597 +215650,48516,hollywoodization,1170107012 +215650,48593,election,1170883275 +215650,48593,politics,1170883275 +215650,48593,president,1170883275 +215650,52722,Cheesy,1179523439 +215650,53322,Casino,1181896083 +215650,53322,Heist,1181896075 +215650,53322,Las Vegas,1181896088 +215663,2501,True Story,1145227275 +215708,1206,controversial,1296165040 +215708,1206,use of music,1296165099 +215708,3949,disturbing,1296164915 +215708,3949,drugs,1296164923 +215708,5954,Edward Norton,1296164961 +215708,33880,music,1298627702 +215708,33880,naive,1298627736 +215708,34437,Atmospheric,1298627813 +215708,34437,Bill Murray,1298627837 +215708,48165,depressing,1298380952 +215708,48165,unpredictable ending,1298380915 +215708,49932,nightmare,1295192513 +215708,55069,europe,1296164628 +215708,55442,depression,1302000029 +215708,55442,female protagonist,1302000002 +215708,57980,absurd,1297084567 +215708,61024,James Franco,1301567960 +215708,61236,animated,1301999890 +215708,63082,India,1308855908 +215708,71464,depression,1319370776 +215708,82459,Jeff Bridges,1300102747 +215714,8914,complicated plot,1424134284 +215714,8914,intellectual,1424134281 +215714,8914,time travel,1424134276 +215714,40148,psychology,1440435505 +215714,109487,time travel,1438191889 +215714,110669,documentary,1440435478 +215714,115713,artificial intelligence,1444430534 +215714,115713,thought provoking,1444430555 +215719,1203,aliens,1371654355 +215719,1203,apocalypse,1371654408 +215719,1203,unusual,1371654447 +215719,1203,weird,1371654566 +215749,27728,visually appealing,1438006756 +215749,94864,atmospheric,1437985910 +215749,94864,Charlize Theron,1437985874 +215749,94864,computer interface,1437985901 +215749,94864,sci-fi,1437985869 +215749,94864,scifi,1437985866 +215749,94864,technology,1437985878 +215749,96751,finance,1438104240 +215749,101864,post-apocalyptic,1437985744 +215749,101864,sci-fi,1437985740 +215749,103228,fun,1437985814 +215749,103228,giant monster,1437985806 +215749,103228,Guillermo del Toro,1437985780 +215749,103228,Kaiju,1437985801 +215749,103228,mecha,1437985812 +215749,103228,sci-fi,1437985783 +215749,103228,visually appealing,1437985777 +215749,109072,dea,1438103299 +215749,109072,special forces,1438103271 +215749,111759,Alien Invasion,1437985721 +215749,111759,emily blunt,1437985621 +215749,111759,exo-skeleton,1437985621 +215749,111759,future,1437985666 +215749,111759,powersuit,1437985714 +215749,111759,sci-fi,1437985621 +215761,70,George Clooney,1438546437 +215761,70,Harvey Keitel,1438546460 +215761,70,mexico,1438546464 +215761,70,Quentin Tarantino,1438546439 +215761,70,Robert Rodriguez,1438546444 +215761,70,Salma Hayek,1438546442 +215761,70,strippers,1438546455 +215761,70,vampires,1438546447 +215761,235,Bill Murray,1438586045 +215761,235,Biopic,1438586052 +215761,235,Johnny Depp,1438586041 +215761,235,Martin Landau,1438586048 +215761,235,movie business,1438586056 +215761,235,Sarah Jessica Parker,1438586050 +215761,235,Tim Burton,1438586039 +215761,407,John Carpenter,1438547759 +215761,407,lovecraftian,1438547753 +215761,407,Lovecraftian mythology,1438547754 +215761,407,Sam Neill,1438547763 +215761,799,Ghosts,1438478591 +215761,799,Peter Jackson,1438478599 +215761,799,supernatural,1438478589 +215761,904,Alfred Hitchcock,1438476749 +215761,904,classic,1438476773 +215761,904,Grace Kelly,1438476753 +215761,904,Hitchcock,1438476759 +215761,904,imdb top 250,1438476763 +215761,904,James Stewart,1438476751 +215761,904,murder,1438476765 +215761,904,mystery,1438476771 +215761,904,photography,1438476776 +215761,904,suspense,1438476767 +215761,904,suspenseful,1438476769 +215761,904,tense,1438476782 +215761,904,voyeurism,1438476756 +215761,908,Alfred Hitchcock,1438476861 +215761,908,Cary Grant,1438476863 +215761,908,classic,1438476873 +215761,908,mistaken identity,1438476868 +215761,908,thriller,1438476870 +215761,913,black and white,1438477983 +215761,913,highly quotable,1438477989 +215761,913,Humphrey Bogart,1438477985 +215761,913,noir thriller,1438477981 +215761,953,black and white,1438659639 +215761,953,Christmas,1438659635 +215761,953,classic,1438659637 +215761,953,Frank Capra,1438659643 +215761,953,James Stewart,1438659645 +215761,953,small town,1438659641 +215761,968,black and white,1438475290 +215761,968,George A. Romero,1438548820 +215761,968,horror,1438475292 +215761,968,zombies,1438475285 +215761,1086,Alfred Hitchcock,1438476998 +215761,1086,classic,1438476993 +215761,1086,Grace Kelly,1438477007 +215761,1086,Ray Milland,1438477012 +215761,1128,Atmospheric,1438479563 +215761,1128,John Carpenter,1438479542 +215761,1128,Lighthouse,1438479553 +215761,1200,androids,1438479680 +215761,1200,classic,1438479688 +215761,1200,James Cameron,1438479675 +215761,1200,military,1438479678 +215761,1200,Sigourney Weaver,1438479672 +215761,1200,space,1438479683 +215761,1200,SPACE TRAVEL,1438479686 +215761,1214,androids,1438479642 +215761,1214,classic,1438479644 +215761,1214,gothic,1438479658 +215761,1214,H. R. Giger,1438479631 +215761,1214,horror,1438479621 +215761,1214,Ridley Scott,1438479628 +215761,1214,sci-fi,1438479618 +215761,1214,Sigourney Weaver,1438479624 +215761,1214,space travel,1438479638 +215761,1215,bruce campbell,1438475620 +215761,1215,Chainsaw,1438475627 +215761,1215,Sam Raimi,1438475634 +215761,1215,TIME TRAVEL,1438475630 +215761,1219,Alfred Hitchcock,1438476221 +215761,1219,black and white,1438476245 +215761,1219,classic,1438476230 +215761,1219,cross dressing,1438476253 +215761,1219,Hitchcock,1438476227 +215761,1219,horror,1438476237 +215761,1219,mental illness,1438476235 +215761,1219,motel,1438476241 +215761,1219,psychology,1438476232 +215761,1219,suspenseful,1438476251 +215761,1241,lawn mower,1438475675 +215761,1241,New Zealand,1438475668 +215761,1241,over-the-top,1438475678 +215761,1241,Peter Jackson,1438475660 +215761,1241,splatter,1438475665 +215761,1241,zombie,1438475672 +215761,1253,black and white,1438479404 +215761,1253,sci-fi,1438479407 +215761,1253,science fiction,1438479402 +215761,1258,atmospheric,1438476151 +215761,1258,based on a book,1438476145 +215761,1258,classic,1438476160 +215761,1258,disturbing,1438476149 +215761,1258,ghosts,1438476135 +215761,1258,jack nicholson,1438476132 +215761,1258,psychological,1438476137 +215761,1258,Stanley Kubrick,1438476130 +215761,1258,Stephen King,1438476139 +215761,1260,Fritz Lang,1438477929 +215761,1260,Peter Lorre,1438477938 +215761,1260,serial killer,1438477932 +215761,1261,black comedy,1438475596 +215761,1261,Bruce Campbell,1438475590 +215761,1261,dark comedy,1438475604 +215761,1261,dark humor,1438475592 +215761,1261,demons,1438475607 +215761,1261,Sam Raimi,1438475598 +215761,1269,Cary Grant,1438586566 +215761,1269,dark comedy,1438586571 +215761,1269,screwball comedy,1438586564 +215761,1321,dark comedy,1438475532 +215761,1321,horror comedy,1438475535 +215761,1321,werewolf,1438475530 +215761,1321,werewolves,1438475527 +215761,1333,Alfred Hitchcock,1438476270 +215761,1333,animal attacks,1438476280 +215761,1333,animals,1438476277 +215761,1333,birds,1438476272 +215761,1333,environmental,1438476275 +215761,1334,Steve McQueen,1438662279 +215761,1340,Boris Karloff,1438477727 +215761,1340,James Whale,1438477739 +215761,1340,Universal monsters,1438477725 +215761,1347,freddy krueger,1438671207 +215761,1347,horror,1438671210 +215761,1347,slasher,1438671209 +215761,1347,Wes Craven,1438671214 +215761,1348,F.W. Murnau,1438663136 +215761,1348,german expressionism,1438663140 +215761,1348,vampires,1438663135 +215761,1350,antichrist,1438671229 +215761,1350,apocalypse,1438671232 +215761,1350,Christianity,1438671237 +215761,1350,religion,1438671234 +215761,1387,animal attacks,1438583033 +215761,1387,classic,1438583027 +215761,1387,man vs nature,1438583038 +215761,1387,shark,1438583025 +215761,1387,shark-attacks,1438583036 +215761,1387,spielberg,1438583023 +215761,1387,Steven Spielberg,1438583030 +215761,1391,Jack Nicholson,1438584857 +215761,1391,mars,1438584866 +215761,1391,Natalie Portman,1438584859 +215761,1391,Parody,1438584855 +215761,1391,Sarah Jessica Parker,1438584863 +215761,1391,Tim Burton,1438584862 +215761,1625,David Fincher,1438479091 +215761,1625,michael douglas,1438479094 +215761,1625,Mystery,1438479106 +215761,1625,psychological,1438479097 +215761,1625,thriller,1438479108 +215761,1974,camp,1438583964 +215761,1974,classic,1438583967 +215761,1974,serial killer,1438583962 +215761,1974,slasher,1438583960 +215761,1975,Jason Vorhees,1438583980 +215761,1975,slasher,1438583978 +215761,1976,Jason Vorhees,1438583993 +215761,1976,slasher,1438583991 +215761,1977,character:Jason Vorhees,1438584012 +215761,1977,Jason Vorhees,1438584018 +215761,1977,slasher,1438584003 +215761,1978,slasher,1438584030 +215761,1979,Jason Vorhees,1438584045 +215761,1979,slasher,1438584042 +215761,1980,Jason Vorhees,1438584067 +215761,1980,slasher,1438584062 +215761,1981,Jason Vorhees,1438584083 +215761,1981,slasher,1438584085 +215761,1982,Donald Pleasence,1438479513 +215761,1982,horror,1438479524 +215761,1982,Jamie Lee Curtis,1438479500 +215761,1982,John Carpenter,1438479489 +215761,1982,Michael Myers,1438479505 +215761,1982,serial killer,1438479492 +215761,1982,slasher,1438479494 +215761,2003,Christmas,1438660798 +215761,2003,Gizmo,1438660802 +215761,2003,Joe Dante,1438660806 +215761,2003,small town,1438660800 +215761,2004,Joe Dante,1438660830 +215761,2119,stephen king,1438548020 +215761,2160,Atmospheric,1438477420 +215761,2160,based on a book,1438477410 +215761,2160,religion,1438477413 +215761,2160,Roman Polanski,1438477400 +215761,2160,satanism,1438477406 +215761,2160,WITCHCRAFT,1438477403 +215761,2176,Alfred Hitchcock,1438477297 +215761,2176,classic,1438477301 +215761,2176,James Stewart,1438477299 +215761,2176,murder,1438477305 +215761,2186,Alfred Hitchcock,1438476970 +215761,2186,murder,1438476976 +215761,2186,tennis,1438476972 +215761,2186,trains,1438476974 +215761,2208,train,1438476895 +215761,2288,Antarctica,1438479285 +215761,2288,claustrophobic,1438479282 +215761,2288,horror,1438479289 +215761,2288,John Carpenter,1438479269 +215761,2288,Kurt Russell,1438479271 +215761,2288,paranoia,1438479274 +215761,2327,Anthology,1438478704 +215761,2455,body horror,1438479310 +215761,2455,David Cronenberg,1438479314 +215761,2455,Jeff Goldblum,1438479312 +215761,2455,mad scientist,1438479308 +215761,2459,cannibalism,1438671153 +215761,2459,disturbing,1438671159 +215761,2459,Leatherface,1438671142 +215761,2459,Tobe Hooper,1438671149 +215761,2519,haunted house,1438477477 +215761,2519,Vincent Price,1438477475 +215761,2519,William Castle,1438477485 +215761,2529,Charlton Heston,1438479184 +215761,2529,post-apocalyptic,1438479192 +215761,2529,science fiction,1438479188 +215761,2550,based on a book,1438477450 +215761,2550,ghosts,1438477445 +215761,2550,gothic,1438477449 +215761,2550,haunted house,1438477453 +215761,2550,paranormal,1438477447 +215761,2550,psychological,1438477455 +215761,2550,supernatural,1438477442 +215761,2644,Bela Lugosi,1438477793 +215761,2644,Tod Browning,1438477809 +215761,2644,universal monsters,1438477798 +215761,2644,vampires,1438477796 +215761,2648,based on a book,1438477760 +215761,2648,james whale,1438477779 +215761,2648,mad scientist,1438477761 +215761,2648,Universal Monsters,1438477772 +215761,2660,aliens,1438479240 +215761,2660,based on a book,1438479243 +215761,2660,Howard Hawks,1438479250 +215761,2662,aliens,1438479215 +215761,2662,H.G. Wells,1438479221 +215761,2662,mars,1438479212 +215761,2664,1950s,1438479370 +215761,2664,Don Siegel,1438479368 +215761,2664,Kevin McCarthy,1438479385 +215761,2664,paranoid,1438479373 +215761,2710,creepy,1438546259 +215761,2710,forest,1438546253 +215761,2710,found footage,1438546250 +215761,2710,horror,1438546256 +215761,2710,scary,1438546262 +215761,2762,Atmospheric,1438479000 +215761,2762,Bruce Willis,1438478996 +215761,2762,ghosts,1438478993 +215761,2762,m. night shyamalan,1438479003 +215761,2762,psychology,1438478995 +215761,2762,twist ending,1438478991 +215761,2780,Boris Karloff,1438478626 +215761,2780,Edgar Allan Poe,1438478616 +215761,2780,Peter Lorre,1438478630 +215761,2780,Roger Corman,1438478635 +215761,2780,Vincent Price,1438478621 +215761,2782,Edgar Allan Poe,1438477546 +215761,2782,Roger Corman,1438477538 +215761,2782,Vincent Price,1438477531 +215761,2784,Edgar Allan Poe,1438477598 +215761,2784,roger corman,1438477612 +215761,2784,Vincent Price,1438477600 +215761,2784,visually appealing,1438477603 +215761,2841,ghosts,1438475989 +215761,2841,Kevin Bacon,1438475996 +215761,2841,supernatural,1438475987 +215761,3016,Anthology,1438478660 +215761,3016,George A. Romero,1438478658 +215761,3016,Stephen King,1438478669 +215761,3018,H.P. Lovecraft,1438475432 +215761,3018,horror,1438475435 +215761,3018,mad scientist,1438475442 +215761,3018,splatter,1438475428 +215761,3075,black and white,1438494167 +215761,3075,Catherine Deneuve,1438494164 +215761,3075,MENTAL ILLNESS,1438494160 +215761,3075,Roman Polanski,1438494158 +215761,3119,giallo,1438475370 +215761,3119,italian horror,1438475370 +215761,3119,mario bava,1438475370 +215761,3119,slasher,1438472775 +215761,3435,adultery,1438477964 +215761,3435,black and white,1438477962 +215761,3435,film noir,1438477955 +215761,3435,Fred MacMurray,1438477966 +215761,3435,murder,1438477960 +215761,3435,noir thriller,1438477957 +215761,3535,1980s,1438499561 +215761,3535,based on a book,1438499559 +215761,3535,Christian Bale,1438499547 +215761,3535,dark comedy,1438499552 +215761,3535,insanity,1438499545 +215761,3535,new york,1438499556 +215761,3535,serial killer,1438499549 +215761,3535,yuppies,1438499563 +215761,3627,atmospheric,1438581605 +215761,3627,ghosts,1438581607 +215761,3696,Fred Dekker,1438475754 +215761,3696,horror comedy,1438475765 +215761,3696,pseudo-zombies,1438475782 +215761,3830,Amy Adams,1438495960 +215761,3832,Boris Karloff,1438581584 +215761,3832,Mario Bava,1438581578 +215761,3917,Clive Barker,1438671185 +215761,3917,Pinhead,1438671192 +215761,4027,adventure,1438659959 +215761,4027,bluegrass,1438659952 +215761,4027,coen brothers,1438659940 +215761,4027,George Clooney,1438659944 +215761,4027,great soundtrack,1438659942 +215761,4027,prison escape,1438659946 +215761,4105,black comedy,1438475562 +215761,4105,bruce campbell,1438475551 +215761,4105,dark humor,1438475575 +215761,4105,demons,1438475554 +215761,4105,low budget,1438475566 +215761,4105,Sam Raimi,1438549633 +215761,4403,Edgar Allan Poe,1438477564 +215761,4403,Roger Corman,1438477573 +215761,4403,Vincent Price,1438477565 +215761,4437,Dario Argento,1438477639 +215761,4437,Italian horror,1438477647 +215761,4437,Jessica Harper,1438477651 +215761,4437,WITCHCRAFT,1438477641 +215761,4533,brains,1438475718 +215761,4533,punk rock,1438475711 +215761,4533,zombies,1438475703 +215761,4553,aliens,1438499780 +215761,4553,conspiracy,1438499777 +215761,4553,consumerism,1438499782 +215761,4553,John Carpenter,1438499774 +215761,4553,Rowdy Roddy Piper,1438499795 +215761,4725,abandoned buildings,1438476062 +215761,4725,Brad Anderson,1438476060 +215761,4725,creepy,1438476065 +215761,4725,david caruso,1438476057 +215761,4725,horror,1438476055 +215761,4725,mental hospital,1438476067 +215761,4725,Psychological Horror,1438476070 +215761,4725,psychology,1438476073 +215761,4833,atmospheric,1438476100 +215761,4833,George C. Scott,1438476110 +215761,4833,haunted house,1438476098 +215761,4833,Peter Medak,1438476095 +215761,4878,dreamlike,1438588016 +215761,4878,high school,1438588023 +215761,4878,jake gyllenhaal,1438588028 +215761,4878,mental illness,1438588018 +215761,4878,original,1438588014 +215761,4878,time travel,1438588009 +215761,4982,mountain climbing,1438663560 +215761,4982,sisters,1438663555 +215761,4982,telepathy,1438663557 +215761,4993,Adventure,1438478741 +215761,4993,based on a book,1438478744 +215761,4993,fantasy,1438478739 +215761,4993,Magic,1438478743 +215761,4993,Peter Jackson,1438478755 +215761,4993,tolkien,1438478748 +215761,4993,wizards,1438478750 +215761,5103,baseball,1438659277 +215761,5103,coming of age,1438659284 +215761,5165,Lucio Fulci,1438475405 +215761,5165,zombies,1438475408 +215761,5294,Bill Paxton,1438475914 +215761,5294,mission from God,1438475917 +215761,5294,religion,1438475912 +215761,5294,religious,1438475926 +215761,5294,serial killer,1438475922 +215761,5294,siblings,1438475929 +215761,5294,twist ending,1438475908 +215761,5469,car chases,1438659057 +215761,5469,directorial debut,1438659050 +215761,5691,slasher,1438584110 +215761,5715,slasher,1438670739 +215761,5715,summer camp,1438670744 +215761,5778,Slasher,1438670552 +215761,5833,survival,1438478385 +215761,5833,werewolves,1438478383 +215761,5952,Adventure,1438478781 +215761,5952,based on a book,1438478777 +215761,5952,fantasy,1438478775 +215761,5952,high fantasy,1438478779 +215761,5952,magic,1438478784 +215761,5952,Peter Jackson,1438478785 +215761,5952,tolkien,1438478789 +215761,5952,wizards,1438478792 +215761,5980,Bob Clark,1438472824 +215761,5980,Christmas,1438472817 +215761,5980,creepy,1438472813 +215761,5980,slasher,1438472821 +215761,6323,Amanda Peet,1438475972 +215761,6323,John Cusack,1438475952 +215761,6323,mystery,1438475949 +215761,6323,psychology,1438475968 +215761,6323,Ray Liotta,1438475958 +215761,6323,serial killer,1438475954 +215761,6323,suspense,1438475965 +215761,6323,thriller,1438475962 +215761,6323,twist ending,1438475947 +215761,6502,British,1438478295 +215761,6502,Cillian Murphy,1438478305 +215761,6502,epidemic,1438478320 +215761,6502,horror,1438478302 +215761,6502,infection,1438478308 +215761,6502,london,1438478313 +215761,6502,virus,1438478311 +215761,6629,Vincent Price,1438587089 +215761,6629,wax museum,1438587096 +215761,6659,Fred Ward,1438583322 +215761,6659,Kevin Bacon,1438583327 +215761,6659,Michael Gross,1438583318 +215761,6659,monster,1438583310 +215761,6731,George A. Romero,1438475380 +215761,6731,zombies,1438475376 +215761,7001,Donald Sutherland,1438479334 +215761,7001,Jeff Goldblum,1438479342 +215761,7001,Leonard Nimoy,1438479347 +215761,7013,atmospheric,1438477883 +215761,7013,Criterion,1438477910 +215761,7013,good and evil,1438477885 +215761,7013,menacing,1438477900 +215761,7013,National Film Registry,1438477905 +215761,7013,noir thriller,1438477879 +215761,7013,preacher,1438477897 +215761,7013,Robert Mitchum,1438477889 +215761,7115,Dario Argento,1438477673 +215761,7115,Giallo,1438477666 +215761,7153,Adventure,1438478811 +215761,7153,based on a book,1438478816 +215761,7153,fantasy,1438478807 +215761,7153,high fantasy,1438478819 +215761,7153,magic,1438478813 +215761,7153,Peter Jackson,1438478821 +215761,7153,Tolkien,1438478826 +215761,7153,wizards,1438478823 +215761,7360,Good remake,1438478216 +215761,7360,zombie,1438478213 +215761,7360,Zombie Movie,1438478219 +215761,7360,zombies,1438478210 +215761,7387,George A. Romero,1438549093 +215761,7387,Goblin,1438475318 +215761,7387,horror,1438475314 +215761,7387,zombies,1438475308 +215761,7713,Jacques Tourneur,1438494134 +215761,7881,voodoo zombies,1438662730 +215761,7891,post-apocalyptic,1438494540 +215761,7891,Vincent Price,1438494538 +215761,7993,beatnick culture,1438494060 +215761,8225,Tom Savini,1438478250 +215761,8225,zombies,1438478243 +215761,8507,black and white,1438494106 +215761,8507,circus,1438494098 +215761,8507,controversial,1438494096 +215761,8507,freaks,1438494101 +215761,25786,Boris Karloff,1438662965 +215761,25786,James Whale,1438662967 +215761,25786,Old Dark House,1438662969 +215761,26558,advertising,1438584537 +215761,26558,consumerism,1438584544 +215761,26684,dark comedy,1438550495 +215761,26684,Frank Henenlotter,1438550507 +215761,26684,Prostitution,1438550515 +215761,44828,alien invasion,1438475810 +215761,44828,aliens,1438475817 +215761,44828,body horror,1438475803 +215761,44828,comedy,1438475821 +215761,44828,Elizabeth Banks,1438475806 +215761,44828,James Gunn,1438475812 +215761,44828,nathan fillion,1438475807 +215761,44828,sci-fi,1438475819 +215761,48780,Christian Bale,1438479031 +215761,48780,Christoper Nolan,1438479045 +215761,48780,Christopher Nolan,1438479067 +215761,48780,David Bowie,1438479048 +215761,48780,Hugh Jackman,1438479036 +215761,48780,magic,1438479052 +215761,48780,Michael Caine,1438479039 +215761,48780,Nicola Tesla,1438479073 +215761,48780,obsession,1438479062 +215761,48780,revenge,1438479060 +215761,48780,Scarlett Johansson,1438479033 +215761,48780,twist ending,1438479029 +215761,53953,Hotel,1438476024 +215761,53953,John Cusack,1438476019 +215761,53953,Samuel L. Jackson,1438476030 +215761,53953,Stephen King,1438476016 +215761,53953,supernatural,1438476021 +215761,54605,Mario Bava,1438488286 +215761,55492,Arctic,1438478041 +215761,55492,Larry Fessenden,1438478029 +215761,55492,man vs nature,1438478050 +215761,55492,Ron Perlman,1438478064 +215761,55553,mad scientist,1438475841 +215761,55553,New Zealand,1438475851 +215761,55553,sheep zombies,1438475839 +215761,55553,splatter,1438475844 +215761,55820,based on a book,1438660213 +215761,55820,Coen Brothers,1438660195 +215761,55820,Cormac McCarthy,1438660207 +215761,55820,great acting,1438660197 +215761,55820,Javier Bardem,1438660203 +215761,55820,Tommy Lee Jones,1438660199 +215761,55820,Woody Harrelson,1438660210 +215761,57368,"""found footage""",1438479798 +215761,57368,giant monster,1438479800 +215761,57368,monster,1438479796 +215761,57368,New York City,1438479794 +215761,61240,adapted from:book,1438479926 +215761,61240,bullying,1438479923 +215761,61240,coming of age,1438479918 +215761,61240,vampire,1438479914 +215761,68952,Alison Lohman,1438478402 +215761,68952,curse,1438478409 +215761,68952,Justin Long,1438478406 +215761,68952,occult,1438478414 +215761,68952,Sam Raimi,1438478398 +215761,70286,aliens,1438479751 +215761,70286,intelligent sci-fi,1438479755 +215761,70286,South Africa,1438479762 +215761,71535,Abigail Breslin,1438478167 +215761,71535,Bill Murray,1438478177 +215761,71535,clever,1438478173 +215761,71535,Emma Stone,1438478164 +215761,71535,IMDB Top 250,1438478184 +215761,71535,Jesse Eisenberg,1438478162 +215761,71535,post-apocalyptic,1438478189 +215761,71535,quotable,1438478194 +215761,71535,road trip,1438478196 +215761,71535,Woody Harrelson,1438478154 +215761,71535,zombies,1438478156 +215761,73211,disease,1438478347 +215761,73211,innovative,1438478350 +215761,74370,Satanic Cult,1438586796 +215761,74370,Ti West,1438586802 +215761,74685,contamination,1438478273 +215761,74685,Timothy Olyphant,1438478269 +215761,83134,Alan Tudyk,1438478137 +215761,83134,black comedy,1438478132 +215761,83134,great premise,1438478141 +215761,83134,satire,1438478134 +215761,87287,movie business,1438587782 +215761,93840,ancient gods,1438478095 +215761,93840,clever,1438478089 +215761,93840,Drew Goddard,1438478097 +215761,93840,excellent cinematography,1438478093 +215761,93840,joss whedon,1438478087 +215761,93840,original,1438478105 +215761,93840,original plot,1438478109 +215761,93840,satire,1438478102 +215761,94864,aliens,1438479728 +215761,94864,Ridley Scott,1438479708 +215761,94864,scifi,1438479731 +215761,94864,space,1438479720 +215761,94864,space travel,1438479711 +215761,98809,adventure,1438478855 +215761,98809,based on a book,1438478867 +215761,98809,dwarf,1438478883 +215761,98809,fantasy,1438478859 +215761,98809,fantasy world,1438478857 +215761,98809,Goblin,1438478881 +215761,98809,Ian McKellen,1438478892 +215761,98809,magic,1438478865 +215761,98809,middle earth,1438478886 +215761,98809,New Zealand,1438478873 +215761,98809,orcs,1438478888 +215761,98809,Peter Jackson,1438478861 +215761,98809,Tolkien,1438478863 +215761,103228,fun,1438479828 +215761,103228,giant monster,1438479845 +215761,103228,giant robots,1438479822 +215761,103228,Guillermo del Toro,1438479824 +215761,103228,Kaiju,1438479833 +215761,103228,mecha,1438479839 +215761,103228,Ron Perlman,1438479830 +215761,105269,movie business,1438585457 +215761,106489,adventure,1438478915 +215761,106489,dragon,1438478921 +215761,106489,fantasy,1438478919 +215761,106489,Peter Jackson,1438478928 +215761,106489,Tolkien,1438478925 +215761,111364,Bryan Cranston,1438479870 +215761,111364,Godzilla,1438479863 +215761,111364,Monster,1438479866 +215761,118696,Peter Jackson,1438478964 +215761,118696,Tolkien,1438478966 +215761,127021,VHS,1438661702 +215761,140133,Fred Olen Ray,1438495230 +215766,955,Katharine Hepburn,1376065849 +215777,1120,factual,1240877620 +215777,1201,American Civil War,1285406501 +215777,1201,BOUNTY HUNTERS,1285406505 +215777,1201,Clint Eastwood,1285406454 +215777,1201,complex characters,1285406554 +215777,1201,end of a trilogy,1285406559 +215777,1201,Ennio Morricone,1285406462 +215777,1201,hanging,1285406516 +215777,1201,long,1285406469 +215777,1201,quirky,1285406526 +215777,1201,satirical,1285406529 +215777,1201,spaghetti western,1285406537 +215777,1201,western,1285406571 +215777,1206,atmospheric,1273280299 +215777,1206,cult film,1273280302 +215777,1206,disturbing,1273280305 +215777,1206,drama,1273280307 +215777,1206,dystopia,1273280312 +215777,1206,great soundtrack,1273280315 +215777,1206,Nudity (Full Frontal),1273280286 +215777,1206,prison,1273280297 +215777,1206,psychology,1273280321 +215777,1206,quirky,1273280324 +215777,1206,satire,1273280328 +215777,1206,Stanley Kubrick,1273280288 +215777,1206,stylized,1273280292 +215777,1206,violence,1273280346 +215777,1207,atmospheric,1274163192 +215777,1207,based on a book,1274163279 +215777,1207,History,1274163270 +215777,1207,imdb top 250,1274163236 +215777,1207,lawyer,1274163241 +215777,1207,lawyers,1274163247 +215777,1207,Oscar (Best Actor),1274163267 +215777,1207,politics,1274163218 +215777,1207,racism,1274163223 +215777,1207,small town,1274163227 +215777,1207,social commentary,1274163232 +215777,1234,boring,1286954521 +215777,1234,heist,1286954565 +215777,1234,sting,1286954534 +215777,1258,based on a book,1271989601 +215777,1258,cult film,1271989561 +215777,1258,disturbing,1271989609 +215777,1258,dreamlike,1271989556 +215777,1258,ghosts,1271989552 +215777,1258,hallucinatory,1271989582 +215777,1258,Horror,1271989543 +215777,1258,imdb top 250,1271989479 +215777,1258,Jack Nicholson,1271989616 +215777,1258,mental illness,1271989525 +215777,1258,Nudity (Full Frontal - Notable),1271989474 +215777,1258,psychological,1271989521 +215777,1258,Stanley Kubrick,1271989514 +215777,1258,Stephen King,1271989518 +215777,1258,visually appealing,1271989499 +215777,1258,writers,1271989593 +215777,1500,Alan Arkin,1273396480 +215777,1500,classic,1273396499 +215777,1500,Dan Aykroyd,1273396485 +215777,1500,dialogue,1273396442 +215777,1500,John Cusack,1273396452 +215777,1500,Minnie Driver,1273396458 +215777,1500,unrealistic,1273396511 +215777,1527,Milla Jovovich,1240877479 +215777,1527,stylized,1240877479 +215777,1682,alternate reality,1267896112 +215777,1682,drama,1267896535 +215777,1682,fantasy,1267896378 +215777,1682,island,1267896416 +215777,1682,Jim Carrey,1267896109 +215777,1682,original plot,1267896340 +215777,1682,philosophy,1267896516 +215777,1682,Saturn Award (Best Writing),1267896408 +215777,1682,small town,1267896373 +215777,1682,social commentary,1267896344 +215777,1682,voyeurism,1267896368 +215777,1967,Adventure,1280311645 +215777,1967,fantasy,1280311703 +215777,1967,good versus evil,1280311660 +215777,1967,Jennifer Connelly,1280311663 +215777,1967,Jim Henson,1280311665 +215777,1967,maze,1280311634 +215777,1967,muppets,1280311639 +215777,1967,music,1280311733 +215777,2161,Adventure,1279975322 +215777,2161,Atreyu,1279975390 +215777,2161,dragon,1279975382 +215777,2161,Fantasy,1279975326 +215777,2161,muppets,1279975394 +215777,2161,sweet,1279975398 +215777,2843,gypsy,1409479293 +215777,2959,Brad Pitt,1240877484 +215777,3053,Milla Jovovich,1240877617 +215777,3845,Brigitte Bardot,1292745309 +215777,4019,boring,1332584986 +215777,4019,Gus Van Sant,1332585003 +215777,4019,Sean Connery,1332585000 +215777,4019,WRITER'S LIFE,1332585013 +215777,4019,writing process,1332585012 +215777,4848,bisexual,1279023377 +215777,4848,dark,1279023289 +215777,4848,David Lynch,1279023485 +215777,4848,disturbing,1279023291 +215777,4848,dreamlike,1279023296 +215777,4848,Erotic,1279023298 +215777,4848,masturbation,1279023303 +215777,4848,mystery,1279023498 +215777,4848,nonlinear,1279023307 +215777,4848,Nudity (Full Frontal - Notable),1279023381 +215777,4848,open ending,1279023435 +215777,4848,surreal,1279023336 +215777,4848,Theater,1279023398 +215777,5219,government research,1284353631 +215777,5219,Milla Jovovich,1284353624 +215777,5219,resident evil,1284353645 +215777,5219,secret facility,1284353584 +215777,5219,video game adaptation,1284353636 +215777,5219,virus,1284353614 +215777,5219,zombies,1284353575 +215777,5294,insanity,1417583477 +215777,5294,mental illness,1417583504 +215777,5294,religion,1417583496 +215777,5294,twist ending,1417583480 +215777,5902,drugs,1255793482 +215777,5902,Nudity (Topless - Notable),1255793521 +215777,5902,Oscar (Best Supporting Actor),1255793465 +215777,5902,schizophrenia,1255793471 +215777,6016,based on a book,1271990014 +215777,6016,based on a true story,1271990010 +215777,6016,black comedy,1271990030 +215777,6016,Brazil,1271989922 +215777,6016,disturbing,1271989926 +215777,6016,drama,1271990033 +215777,6016,drugs,1271990036 +215777,6016,gangsters,1271989929 +215777,6016,great soundtrack,1271990043 +215777,6016,multiple storylines,1271989934 +215777,6016,serial killer,1271990073 +215777,6016,stylized,1271989938 +215777,6016,violence,1271989942 +215777,6058,cheating death,1254395443 +215777,6058,death,1254395468 +215777,6058,fate,1254395494 +215777,6058,gore,1254395435 +215777,6058,just a teen movie,1254395432 +215777,6058,Nudity (Topless),1254395486 +215777,6711,atmospheric,1283868182 +215777,6711,Bill Murray,1283868179 +215777,6711,Japan,1283868188 +215777,6711,Melancholic,1283868197 +215777,6711,Scarlett Johansson,1283868200 +215777,6942,british,1290873897 +215777,6942,christmas,1290873915 +215777,6942,cute,1290873924 +215777,6942,England,1290873921 +215777,6942,love,1290873930 +215777,6942,movie stars,1290873987 +215777,6942,multiple storylines,1290873935 +215777,6942,Nudity (Topless - Notable),1290873939 +215777,6942,Romance,1290873901 +215777,7366,Ben Affleck,1280014707 +215777,7366,cute,1280014721 +215777,7366,George Carlin,1280014770 +215777,7366,Jennifer Lopez,1280014780 +215777,7366,Kevin Smith,1280014797 +215777,7366,liv tyler,1280014782 +215777,7366,sweeny todd,1280014749 +215777,7366,will smith,1280014792 +215777,7976,disturbing in a bad way,1289212415 +215777,7976,Maeve Quinlan,1289212409 +215777,7976,pornography,1289212456 +215777,8369,Agatha Christie-like,1258723105 +215777,8369,gore,1258723112 +215777,8861,boring,1284353705 +215777,8861,resident evil,1284353732 +215777,8861,virus,1284353721 +215777,8861,zombies,1284353724 +215777,8874,black comedy,1256642727 +215777,8874,dark humor,1256642730 +215777,8874,england,1256642751 +215777,8874,London,1256642759 +215777,8874,parody,1256642740 +215777,8874,zombies,1256642746 +215777,8914,boring,1278493632 +215777,8914,Complicated,1278493628 +215777,8914,complicated plot,1278493638 +215777,30707,boxing,1269649927 +215777,30707,Clint Eastwood,1269649834 +215777,30707,dark,1269649983 +215777,30707,disability,1269649902 +215777,30707,drama,1269649842 +215777,30707,Hilary Swank,1269649885 +215777,30707,Los Angeles,1269649945 +215777,30707,Morgan Freeman,1269649939 +215777,30707,mother daughter relationship,1269649898 +215777,30707,narrated,1269649894 +215777,30707,sad,1269650056 +215777,30707,sports,1269649922 +215777,31696,angels,1276170539 +215777,31696,demons,1276170612 +215777,31696,gothic,1276170564 +215777,31696,heaven and hell,1276170567 +215777,31696,spiritual warfare,1276170660 +215777,32025,gay propaganda,1279632432 +215777,32025,glbt,1279632412 +215777,32025,Holocaust,1279632428 +215777,32025,International,1279632415 +215777,32025,Mossad,1279632425 +215777,32025,nazi,1279632421 +215777,32460,German,1253498127 +215777,32460,hostage,1253498130 +215777,32460,road trip,1253498113 +215777,32460,terminal illness,1253498115 +215777,32460,Til Schweiger,1253498119 +215777,33660,1930s,1269476413 +215777,33660,Biography,1269476405 +215777,33660,boxing,1269476408 +215777,33660,childhood,1269476488 +215777,33660,cinematography,1269476492 +215777,33660,faith,1269476536 +215777,33660,great depression,1269476423 +215777,33660,husband-wife relationship,1269476444 +215777,33660,true story,1269476482 +215777,33896,cannibalism,1267608129 +215777,33896,Chan-wook Park,1267608238 +215777,33896,Dumplings,1267608218 +215777,33896,Horror/Thriller masters of asia for 3 segments of one film,1267608145 +215777,33896,Takashi Miike,1267608233 +215777,33896,uneven,1267608150 +215777,34405,adventure,1389178922 +215777,34405,dystopia,1389178927 +215777,34405,Firefly,1389178890 +215777,34405,SPACE TRAVEL,1389178932 +215777,37741,great performances,1272407484 +215777,37741,journalism,1272407494 +215777,37741,Philip Seymour Hoffman,1272407464 +215777,37741,prison,1272407534 +215777,37741,slow,1272407562 +215777,37741,Truman Capote,1272407471 +215777,38061,based on a book,1272343305 +215777,38061,black comedy,1272343141 +215777,38061,comedy,1272343146 +215777,38061,crude humor,1272343136 +215777,38061,Film Noir,1272343185 +215777,38061,funny,1272343151 +215777,38061,good dialogue,1272343153 +215777,38061,murder,1272343154 +215777,38061,murder mystery,1272343159 +215777,38061,Nudity (Topless),1272343132 +215777,38061,plot twist,1272343168 +215777,38061,private detective,1272343196 +215777,38061,satire,1272343199 +215777,38061,val kilmer,1272343299 +215777,38061,witty,1272343200 +215777,45447,Audrey Tautou,1160412872 +215777,45447,bullshit history,1240877473 +215777,46578,road trip,1161909841 +215777,47099,based on a true story,1259425512 +215777,47099,Below R,1259425541 +215777,47099,happy ending,1259425532 +215777,47099,true story,1259425515 +215777,48043,artistic,1256451198 +215777,48043,atmospheric,1256451163 +215777,48043,death,1256451144 +215777,48043,disease,1256451170 +215777,48043,dreamlike,1256451129 +215777,48043,hallucinatory,1256451156 +215777,48043,history,1256451131 +215777,48043,immortality,1256451152 +215777,48043,love,1256451138 +215777,48043,lyrical,1256451212 +215777,48043,mindfuck,1256451112 +215777,48043,Music,1256451183 +215777,48043,religion,1256451222 +215777,48043,spain,1256451133 +215777,48043,visually appealing,1256451116 +215777,48394,atmospheric,1278472042 +215777,48394,bittersweet,1278472044 +215777,48394,disturbing,1278472048 +215777,48394,drama,1278472054 +215777,48394,fairy tale,1278472056 +215777,48394,fantasy,1278472057 +215777,48394,gore,1278472066 +215777,48394,history,1278472070 +215777,48394,imagination,1278472077 +215777,48394,stylized,1278472087 +215777,48394,surreal,1278472092 +215777,48394,violence,1278472105 +215777,48394,world war II,1278472111 +215777,48738,adapted from:book,1277994914 +215777,48738,Africa,1277994911 +215777,48738,based on a book,1277994905 +215777,48738,based on a true story,1277995685 +215777,48738,ClearPlay,1277994743 +215777,48738,colonialism,1277994896 +215777,48738,Forest Whitaker,1277994878 +215777,48738,genocide,1277994756 +215777,48738,Gillian Anderson,1277994925 +215777,48738,historical,1277995683 +215777,48738,History,1277995681 +215777,48738,Idi Amin,1277994733 +215777,48738,James McAvoy,1277994883 +215777,48738,Nudity (Rear),1277994737 +215777,48738,Nudity (Topless),1277994780 +215777,48738,Uganda,1277994791 +215777,48738,violent,1277994793 +215777,48744,product placement,1222673409 +215777,48872,bad ending,1290764628 +215777,48872,black and white,1290764637 +215777,48872,gambling,1290764770 +215777,48872,roulette game,1290764596 +215777,49932,surreal,1186036564 +215777,50442,no rating yet,1169618668 +215777,53000,not as good as the first,1183876862 +215777,53000,zombies,1240877330 +215777,53953,author:Stephen King,1240877323 +215777,54732,Maggie Q,1260661312 +215777,54732,pingpong,1260661340 +215777,54995,grindhouse,1431728673 +215777,55110,boring,1290824892 +215777,55110,Daniel Radcliffe,1290824692 +215777,55110,drama,1290824878 +215777,55110,Teresa Palmer,1290824964 +215777,55176,1960s,1268385175 +215777,55176,archive footage,1268385140 +215777,55176,aviation,1268385143 +215777,55176,Cold War,1268385137 +215777,55176,earth,1268385179 +215777,55176,History,1268385132 +215777,55176,space,1268385134 +215777,55176,spiritual journey,1268385188 +215777,55232,resident evil,1284353889 +215777,55232,virus,1284353876 +215777,55232,zombies,1284353817 +215777,55245,Black Comedy,1240877488 +215777,55245,Jessica Alba,1240877546 +215777,55245,Nudity (Topless),1240877566 +215777,55245,Random Sex,1240877488 +215777,55245,Sexual Promiscuity,1240877490 +215777,55245,Teenage Witch,1240877494 +215777,55245,Urban Legend,1240877493 +215777,55280,boring,1273316750 +215777,55280,Emily Mortimer,1273316763 +215777,55280,Kelli Garner,1273316768 +215777,55280,mental illness,1273316829 +215777,55280,real doll,1273316776 +215777,55280,Ryan Gosling,1273316820 +215777,55444,biography,1240877424 +215777,55444,black and white,1240877426 +215777,55444,early punk,1240877429 +215777,55444,epilepsy,1212412257 +215777,55444,music,1240877432 +215777,55721,BOPE,1278557223 +215777,55721,Favelas,1278557227 +215777,55721,special police forces,1278557247 +215777,55721,urban violence,1278557256 +215777,55721,violence,1278557260 +215777,56846,children,1269000434 +215777,56846,humor,1269000389 +215777,56846,sepia,1269000384 +215777,56846,sex,1269000443 +215777,56846,Til Schweiger,1269000381 +215777,60069,back to the home,1218974076 +215777,60069,love,1240877644 +215777,60069,pixar,1240877643 +215777,60069,space,1218974076 +215777,60397,Below R,1240878033 +215777,60397,Greece,1240877596 +215777,60397,Interracial Romance,1227837421 +215777,60397,Island,1240877601 +215777,60397,Middle Age Romance,1227837381 +215777,60397,music:ABBA,1240878017 +215777,60397,Paternity,1227837446 +215777,60397,Single Mother,1227837391 +215777,60397,Wedding,1227837347 +215777,60941,final scene,1279524780 +215777,60941,reptile-people,1279524798 +215777,60941,serial killer,1279524729 +215777,60941,subway,1279524735 +215777,61108,Anna Friel,1278939320 +215777,61108,blood,1278939335 +215777,61108,boring,1278939365 +215777,61108,history,1278939386 +215777,61240,bittersweet,1278591054 +215777,61240,swedish,1278591046 +215777,61240,vampire,1278591047 +215777,61240,vampires,1278591051 +215777,61323,cheating husband,1223908511 +215777,61323,cheating wife,1223908527 +215777,61323,cia,1223908326 +215777,61323,cosmetic surgery,1223908444 +215777,61323,dark comedy,1240877362 +215777,61323,dildo,1240877364 +215777,61323,disk,1223908422 +215777,61323,divorce,1223908353 +215777,61323,memoir,1223908386 +215777,61323,satire,1240877371 +215777,61323,stupidity,1240877372 +215777,61323,top secret,1223908586 +215777,62434,Amateur Porn,1240877652 +215777,62434,Gay Couple,1227837733 +215777,62434,Male Full Frontal Nudity,1240877655 +215777,62434,Porn Star,1227837724 +215777,62434,Sex Comedy,1240877657 +215777,62434,Sex Scene,1240877659 +215777,62434,Sexual Humor,1240877659 +215777,62434,Star Wars,1227837790 +215777,62434,Vulgarity,1240877670 +215777,63062,angelina jolie,1255793623 +215777,63062,based on a true story,1255793623 +215777,63062,ClearPlay,1255793623 +215777,63062,Clint Eastwood,1255793627 +215777,63062,mother-son relationship,1255793637 +215777,63062,police,1255793651 +215777,63062,police corruption,1255793655 +215777,63082,Q & A,1240877627 +215777,63082,Who Wants to Be a Millionaire?,1240877629 +215777,63515,actors and acting,1254826916 +215777,63515,monastery,1254826890 +215777,63515,monks,1254826899 +215777,63859,Byron Howard,1276238729 +215777,63859,cats and dogs,1276238642 +215777,63859,Chris Williams,1276238732 +215777,63859,comic sidekick,1276238759 +215777,63859,Greg Germann,1276238686 +215777,63859,James Lipton,1276238690 +215777,63859,John Travolta,1276238694 +215777,63859,Malcolm McDowell,1276238742 +215777,63859,Miley Cyrus,1276238746 +215777,63859,pigeons,1276238675 +215777,63859,superhero,1276238672 +215777,63859,Susie Essman,1276238749 +215777,63992,Based On Novel,1232506752 +215777,63992,Sexy Male Vampire,1240877634 +215777,63992,Supernatural Power,1240877635 +215777,63992,Vampire Human Love,1240877637 +215777,63992,Vampire vs Vampire,1240877638 +215777,64614,classic car,1255041372 +215777,64614,Clint Eastwood,1255041364 +215777,64614,gangsters,1255041389 +215777,64614,life & death,1255041359 +215777,64614,Lutheran,1255041405 +215777,64614,old men,1255041395 +215777,64614,racism,1255041353 +215777,64614,racist humor,1255041417 +215777,64614,revenge,1255041339 +215777,64614,sacrifice,1255041341 +215777,64614,style,1255041349 +215777,64957,1940s,1233618595 +215777,64957,1960s,1233618636 +215777,64957,1980s,1233618644 +215777,64957,2000s,1233618657 +215777,64957,Aging,1233618546 +215777,64957,Aging Disorder,1233618677 +215777,64957,Based On Short Story,1233618521 +215777,64957,boring,1240877447 +215777,64957,Deathbed,1233618584 +215777,64957,Diary,1233618535 +215777,64957,Hospital,1240877453 +215777,64957,Hurricane Katrina,1240877455 +215777,64957,Navy,1233618815 +215777,64957,Older Man Younger Woman Relationship,1233618755 +215777,64957,Older Woman Younger Man Relationship,1233618737 +215777,64957,Voice Over Narration,1240877462 +215777,65037,asperger's syndrome,1230855851 +215777,65037,autism,1230855614 +215777,65037,based on novel,1230855784 +215777,65037,fake suicide,1240877355 +215777,65037,internet,1240877350 +215777,65037,role playing game,1240877350 +215777,65037,suicide,1230855640 +215777,65126,Colonialism,1240877393 +215777,65126,Jesus Christ,1240877397 +215777,65126,Mother Son Relationship,1231697168 +215777,65126,Search For Father,1231697361 +215777,65126,Sex Addict,1240877402 +215777,65514,biography,1255041631 +215777,65514,Donnie Yen,1255041636 +215777,65514,fighting,1255041649 +215777,65514,martial arts,1255041634 +215777,65642,complicated,1286235732 +215777,65642,no ending,1286235744 +215777,65642,Not enough complicated,1286235747 +215777,65642,Nudity (Topless),1286235754 +215777,65642,paradox,1286235756 +215777,65642,time travel,1286235761 +215777,66509,Adam Sandler,1255702546 +215777,66509,Judd Apatow,1255702539 +215777,66509,nudity,1255702562 +215777,66509,Self Indulgent,1255702557 +215777,66509,stand-up comedy,1255702551 +215777,67197,aliens,1256439081 +215777,67197,bad science,1256439159 +215777,67197,end of the world,1256439076 +215777,67197,plot holes,1256439087 +215777,67197,pseudoscience,1256439120 +215777,67197,religious propaganda,1256439136 +215777,67197,sci-fi,1256439096 +215777,67197,Special Effects,1256439193 +215777,67923,cars,1254110469 +215777,67923,gps,1254112109 +215777,67923,lesbians,1254110494 +215777,67923,Racing,1254110466 +215777,68073,1960s,1261623488 +215777,68073,60's,1261623486 +215777,68073,boat,1261623470 +215777,68073,British,1261623467 +215777,68073,historically inaccurate,1261623740 +215777,68073,Music,1261623744 +215777,68073,pirate radio,1261623480 +215777,68073,rock and roll,1261623474 +215777,68157,alternate history,1253720118 +215777,68157,Brad Pitt,1253720114 +215777,68157,dialogue,1253720127 +215777,68157,ending,1253720122 +215777,68157,Nazis,1253720135 +215777,68157,Quentin Tarantino,1253720141 +215777,68157,satire,1253720175 +215777,68157,World War II,1253720153 +215777,68205,Amy Smart,1242551515 +215777,68205,fun,1242551417 +215777,68205,gore,1242551525 +215777,68205,Jason Statham,1242551425 +215777,68205,stupid,1242551397 +215777,68205,unrealistic,1242551544 +215777,68237,clones,1256489477 +215777,68237,death/fatality,1256489481 +215777,68237,dystopia,1256489575 +215777,68237,Sam Rockwell,1256489495 +215777,68237,Sci-fi,1256489490 +215777,68237,space,1256489544 +215777,68522,beautiful scenery,1267720046 +215777,68522,boring,1267720456 +215777,68522,camerawork,1267720024 +215777,68522,scenic,1267720030 +215777,68791,action,1253422374 +215777,68791,artificial intelligence,1253422379 +215777,68791,bad plot,1253422310 +215777,68791,bad script,1253422307 +215777,68791,Christian Bale,1253422390 +215777,68791,effects,1253422318 +215777,68791,fallout taste,1253422394 +215777,68791,fighting,1253422401 +215777,68791,FIGHTING THE SYSTEM,1253422406 +215777,68791,no blood,1253422335 +215777,68791,No humor,1253422338 +215777,68791,post-apocalyptic,1253422341 +215777,68791,robots,1253422346 +215777,68791,ROBOTS AND ANDROIDS,1253422346 +215777,68791,sci-fi,1253422349 +215777,68791,sequel,1253422354 +215777,69122,comedy,1253971129 +215777,69122,Drinking,1253971132 +215777,69122,great soundtrack,1253971139 +215777,69122,hotel,1253971141 +215777,69122,imdb top 250,1253971149 +215777,69122,Las Vegas,1253971157 +215777,69122,Nudity (Topless),1253971151 +215777,69122,police,1253971224 +215777,69122,script,1253971274 +215777,69122,story,1253971212 +215777,69122,stupid stereotypes,1253971201 +215777,69122,tiger,1253971227 +215777,69134,atmospheric,1253345227 +215777,69134,based on a book,1253345232 +215777,69134,beautiful scenery,1253345210 +215777,69134,genitalia,1253345195 +215777,69134,religion,1253345246 +215777,69529,nature,1283763474 +215777,69529,social commentary,1283763469 +215777,69529,visually appealing,1283763479 +215777,69644,3D,1253543378 +215777,69644,Animation,1253543249 +215777,69644,brave,1253543350 +215777,69644,dinosaurs,1253543346 +215777,69644,emotion,1253543340 +215777,69644,emotionless,1253543334 +215777,69644,lacks logic,1253543359 +215777,69644,scenery,1253543324 +215777,69644,talking animals,1253543272 +215777,69757,cut scenes,1254148171 +215777,69757,cynicism,1254148286 +215777,69757,humor,1254148344 +215777,69757,Joseph Gordon-Levitt,1254148138 +215777,69757,romance,1254148344 +215777,69757,Zooey Deschanel,1254148131 +215777,69784,homosexuality,1253497989 +215777,69784,Sacha Baron Cohen,1253497996 +215777,70286,aliens,1253600936 +215777,70286,alternate history,1253600940 +215777,70286,directorial debut,1253600947 +215777,70286,fake documentary,1253600950 +215777,70286,genetics,1253600956 +215777,70286,humor,1253600959 +215777,70286,IMDB Top 250,1253600966 +215777,70286,intelligent sci-fi,1253600973 +215777,70286,justice,1253600976 +215777,70286,mutation,1253600982 +215777,70286,peter jackson,1253600984 +215777,70286,political commentary,1253600994 +215777,70286,redemption,1253600997 +215777,70286,sci-fi,1253601000 +215777,70286,slum,1253601007 +215777,70286,social commentary,1253601010 +215777,70286,South Africa,1253601014 +215777,70286,Special Effects,1253601017 +215777,70286,weapons,1253601021 +215777,70567,asperger syndrome,1269273851 +215777,70567,Hugh Dancy,1269273907 +215777,70567,mental illness,1269273858 +215777,70567,romance,1269273865 +215777,70567,Rose Byrne,1269273903 +215777,70599,Eric Bana,1255989869 +215777,70599,fate,1255989902 +215777,70599,Rachel McAdams,1255989874 +215777,70599,time travel,1255989825 +215777,71033,boring,1274424884 +215777,71033,crime,1274424894 +215777,71033,drama,1274424896 +215777,71033,rape,1274424861 +215777,71033,revenge,1274424868 +215777,71033,romance,1274424901 +215777,71057,animation style,1259425437 +215777,71057,dolls,1259425460 +215777,71057,giant robots,1259425433 +215777,71057,interesting animation style,1259425420 +215777,71057,man versus machine,1259425444 +215777,71057,post-apocalyptic,1259425417 +215777,71057,predictable,1259425373 +215777,71057,robots,1259425379 +215777,71057,sci-fi,1259425381 +215777,71057,Simple,1259425376 +215777,71057,soul,1259425470 +215777,71057,survival,1259425447 +215777,71057,visually appealing,1259425424 +215777,71057,Visuals,1259425427 +215777,71530,alternate reality,1256101842 +215777,71530,androids,1256101787 +215777,71530,Husband Wife Relationship,1256102077 +215777,71530,PG-13,1256101951 +215777,71530,script,1256101860 +215777,71535,Bill Murray,1256041212 +215777,71535,funny,1256041145 +215777,71535,zombies,1256041143 +215777,71579,Carey Mulligan,1272004545 +215777,71579,Emma Thompson,1272004528 +215777,71579,England,1272004568 +215777,71579,script,1272004477 +215777,72011,cheating,1268298648 +215777,72011,George Clooney,1268298582 +215777,72011,Jason Bateman,1268298620 +215777,72011,loneliness,1268298561 +215777,72011,wedding,1268298578 +215777,72641,based on a book,1268898942 +215777,72641,Racist,1268898928 +215777,72641,Sandra Bullock,1268898901 +215777,72641,sports,1268898934 +215777,72641,true story,1268898905 +215777,72998,aliens,1266408414 +215777,72998,futuristic,1266408411 +215777,72998,graphic design,1266408401 +215777,72998,human ambition,1266408417 +215777,72998,James Cameron,1266408420 +215777,72998,long,1266408424 +215777,72998,Michelle Rodriguez,1266408651 +215777,72998,military,1266408408 +215777,72998,predictable,1266408428 +215777,72998,race issues,1266408432 +215777,72998,racism,1266408434 +215777,72998,revolution,1266408438 +215777,72998,sci-fi,1266408443 +215777,72998,Sigourney Weaver,1266408676 +215777,72998,story pocahontas,1266408474 +215777,72998,war,1266408488 +215777,73290,based on a true story,1289929934 +215777,73290,dogs,1289929947 +215777,73290,Loyalty,1289929908 +215777,73290,not enough dramatic,1289930028 +215777,73290,Richard Gere,1289929951 +215777,73319,Amy Adams,1291035684 +215777,73319,boring,1291035693 +215777,73319,Matthew Goode,1291035679 +215777,73321,Bible,1286601480 +215777,73321,post-apocalyptic,1286601456 +215777,74545,escape,1283756621 +215777,74545,espionage,1283756615 +215777,74545,mystery,1283756613 +215777,74545,slow,1283756597 +215777,74851,John Travolta,1286368032 +215777,74851,too much violence,1286368286 +215777,76091,investigation,1286639335 +215777,76091,mother-son relationship,1286639340 +215777,76093,facial expressions on the characters,1277567133 +215777,76093,predictable,1277567145 +215777,76093,toothless is just like my cat,1277567152 +215777,76093,vikings,1277567159 +215777,76251,11 year old explicit violence,1274797445 +215777,76251,action,1274797452 +215777,76251,drug dealing,1274797457 +215777,76251,funny,1274797459 +215777,76251,gory,1274797465 +215777,76251,graphic violence,1274797476 +215777,76251,high school,1274797488 +215777,76251,humor,1274797490 +215777,76251,pop culture references,1274797499 +215777,76251,revenge,1274797523 +215777,76251,superhero,1274797516 +215777,76251,weapons,1274797532 +215777,77561,Scarlett Johansson,1283815021 +215777,77866,adventure,1288148352 +215777,77866,England,1288148408 +215777,77866,lovely characters.,1288147425 +215777,77866,remake,1288148138 +215777,77866,Rewrite history,1288147386 +215777,78105,action,1285224823 +215777,78105,adventure,1285224787 +215777,78105,based on a video game,1285224789 +215777,78266,genetics,1277680666 +215777,78266,plot,1277680656 +215777,78266,sex scene,1277680653 +215777,78637,Pied Piper,1277824886 +215777,78655,violence,1280531107 +215777,78679,bdsm,1287036253 +215777,78679,Casey Affleck,1287036206 +215777,78679,Jessica Alba,1287036194 +215777,78679,mother-son relationship,1287036267 +215777,78679,psychotic killer,1287036641 +215777,78893,acting,1287049397 +215777,78893,characters,1287049411 +215777,78893,effects,1287049399 +215777,78893,story,1287049405 +215777,79057,action,1286897666 +215777,79057,childish plot,1286897650 +215777,79057,predator,1286897660 +215777,79132,alternate reality,1286028132 +215777,79132,mindfuck,1286028136 +215777,79132,multiple interpretations,1286028141 +215777,79132,surreal,1286028149 +215777,79132,visually appealing,1286028145 +215777,79185,action,1286117512 +215777,79185,adventure,1286117548 +215777,79185,Cameron Diaz,1286117554 +215777,79185,spy,1286117519 +215777,79185,Tom Cruise,1286117556 +215777,79293,Angelina Jolie,1286291517 +215777,79293,assassination,1286291544 +215777,79293,double agents,1286291521 +215777,79592,Eva Mendes,1291015509 +215777,79592,subtle humor,1291015519 +215777,79695,Arnold Schwarzenegger,1285335885 +215777,79695,Bruce Willis,1285335914 +215777,79695,Dolph Lundgren,1285335882 +215777,79695,Jason Statham,1285335893 +215777,79695,Jet Li,1285335910 +215777,79695,Mickey Rourke,1285335871 +215777,79695,Randy Coture,1285335922 +215777,79695,Story,1285335897 +215777,79695,Sylvester Stallone,1285335875 +215777,79695,violence,1285335847 +215777,79702,based on a comic,1311060253 +215777,79702,cultural references,1311060247 +215777,79702,cute,1311060287 +215777,79702,fantasy,1311060277 +215777,79702,fight scenes,1311060217 +215777,79702,funny,1311060270 +215777,79702,Gay,1311060273 +215777,79702,music,1311060292 +215777,79702,stylized,1311060223 +215777,79702,visually appealing,1311060259 +215777,79879,blood,1287572704 +215777,79879,tits,1287572690 +215777,80126,assassin,1289784004 +215777,80126,George Clooney,1289784030 +215777,80126,Italy,1289783975 +215777,80126,long takes,1289783990 +215777,80166,Jason Bateman,1289203273 +215777,80166,Jennifer Aniston,1289203268 +215777,80219,boobies guns and blood!,1284472636 +215777,80219,Danny Trejo,1284472686 +215777,80219,Jessica Alba,1284472733 +215777,80219,Lindsay Lohan,1284472767 +215777,80219,Michelle Rodriguez,1284472677 +215777,80219,Robert De Niro,1284472753 +215777,80363,3d,1284353330 +215777,80363,clones,1284353380 +215777,80363,Milla Jovovich,1284353365 +215777,80363,not ended,1284353318 +215777,80363,physics,1284353164 +215777,80363,resident evil,1284353438 +215777,80363,virus,1284353138 +215777,80363,zombies,1284353127 +215777,80463,based on true story,1288425193 +215777,80463,computers,1288425224 +215777,80463,Jesse Eisenberg,1288425269 +215777,80463,loneliness,1288425218 +215777,80463,protagonist is a computer programmer,1288425198 +215777,80463,setting:Harvard University,1288425252 +215777,80463,women portrayed as slutty and stupid,1288425207 +215777,80551,About rich people without real problems,1289642292 +215777,80551,India,1289642285 +215777,80551,Italy,1289642279 +215777,80551,Julia Roberts,1289642288 +215777,80551,Leaves rich handsome man meets new rich handsome man,1289642363 +215777,80586,Callan McAuliffe,1291219007 +215777,80586,Madeline Carroll,1291218994 +215777,80586,Sitting In Tree,1291218943 +215777,80586,stupid,1291218835 +215777,80590,business,1288505039 +215777,80590,financial crisis,1288505070 +215777,80590,Michael Douglas,1288505034 +215777,80590,money,1288505049 +215777,80880,faith,1290751602 +215777,80880,firestarter,1290751574 +215777,80880,happy end missing,1290751648 +215777,80880,Milla Jovovich,1290751550 +215777,80880,prison,1290751563 +215777,80880,Robert De Niro,1290751631 +215777,80880,tits,1290751550 +215777,81804,assassin,1290664943 +215777,81804,romantic comedy,1290665012 +215777,89745,The Avengers,1431196802 +215777,93270,destruction,1350538095 +215777,93270,found footage,1350538099 +215777,93270,funny ending,1350538069 +215777,93270,Nudity (Topless),1350538113 +215777,93270,shaky camera,1350538107 +215777,93270,stupidity,1350538051 +215777,93270,suspence,1350538151 +215777,94959,bittersweet,1350538232 +215777,94959,Cat,1350538405 +215777,94959,dialogue,1350538359 +215777,94959,fonts,1350538417 +215777,94959,funny,1350538413 +215777,94959,love story,1350538209 +215777,94959,original,1350538220 +215777,94959,small town,1350538392 +215777,94959,Stolen Library Books,1350538425 +215777,94959,stylized,1350538190 +215777,102123,demons,1380348651 +215777,102123,Michael Cera,1380348635 +215777,102123,religion,1380348675 +215777,102123,using real names,1380348656 +215777,102903,audience intelligence underestimated,1384018552 +215777,102903,Morgan Freeman,1384018596 +215777,102903,plot,1384018565 +215777,102903,predictable,1384018573 +215777,102903,stupid ending,1384018584 +215777,103384,About half way through it started turning into a live action cartoon.,1389293230 +215777,103384,gay stereotypes,1389293264 +215777,103384,long,1389293242 +215777,103384,rushed ending,1389293257 +215777,103384,Western,1389293250 +215777,104303,Ashton Kutcher,1379876506 +215777,104303,computers,1379876508 +215777,104303,historically inaccurate,1379876498 +215777,104303,history,1379876512 +215777,104925,brutal violence,1386220552 +215777,104925,brutal women,1386220737 +215777,104925,dog,1386220833 +215777,104925,goodfellas,1386220647 +215777,104925,mafia,1386220589 +215777,104925,mafia vendetta,1386220806 +215777,104925,romantic girl,1386220714 +215777,105731,Chloë Grace Moretz,1388940911 +215777,105731,Stephen King,1388940906 +215777,106002,children acting like adults,1384103269 +215777,106002,predictable,1384103199 +215777,106489,action,1387790902 +215777,106489,adapted from:book,1387791101 +215777,106489,adventure,1387791126 +215777,106489,based on a book,1387791097 +215777,106489,double frame rate,1387791107 +215777,106489,Evangeline Lilly,1387791083 +215777,106489,fantasy,1387791119 +215777,106489,Stephen Fry,1387791533 +215777,106489,Tolkien,1387791131 +215777,106489,too long,1387790897 +215777,106920,artificial intelligence,1399046556 +215777,106920,bittersweet,1399046561 +215777,106920,joaquin phoenix,1399046602 +215777,106920,meaning of life,1399046567 +215777,106920,philosophical,1399046570 +215777,106920,sad,1399046576 +215777,106920,Scarlett Johansson,1399046550 +215777,106920,thought-provoking,1399046584 +215777,107436,boring,1387877899 +215777,107436,extended ending,1387877813 +215777,107436,groundhogs,1387877866 +215777,107447,marilyn manson,1388674019 +215777,107447,music,1388673991 +215777,107447,no plot,1388674083 +215777,107447,quirky,1388674063 +215777,107906,folklore,1420046495 +215777,107906,russia,1420046495 +215777,107906,siberia,1420046495 +215777,109187,surreal,1407265021 +215777,110730,artificial intelligence,1405234925 +215777,110730,bad acting,1405234903 +215777,110730,cyborgs,1405234931 +215777,110730,impossible science,1405234907 +215777,110730,Johnny Depp,1405234936 +215777,110730,poorly thought out ending,1405234912 +215777,110730,Rebecca Hall,1405234941 +215777,110730,science is magic,1405234918 +215777,111743,django,1409997836 +215777,111743,Emmett Brown,1409997847 +215777,112642,assassin,1405234698 +215777,112642,blood,1405234856 +215777,112642,covered in blood,1405234768 +215777,112642,female protagonist,1405234734 +215777,112642,gun,1405234716 +215777,112642,nude fight,1405234808 +215777,112642,nude with a gun,1405234745 +215777,112642,Nudity (Topless),1405234847 +215777,112642,revenge,1405234707 +215777,113250,dark comedy,1442690112 +215777,113453,James D'Arcy,1409426423 +215777,113573,Eva Green,1411531302 +215777,113573,stylized,1411531309 +215777,113582,Chadd Harbold,1409428283 +215777,113582,Gavin McInnes,1409428276 +215777,114795,historically inaccurate,1415658982 +215777,115122,humor,1421689826 +215777,115122,mockumentary,1421689831 +215777,115122,vampires,1421689835 +215777,116897,dark humor,1435955137 +215777,116897,Excellent acting,1435955142 +215777,117176,Stephen Hawking,1422482950 +215777,120625,corruption,1426706535 +215777,120625,depression,1426706535 +215777,120625,goverment,1426706535 +215777,120625,russia,1426706535 +215777,121231,horror,1431206899 +215777,122892,The Avengers,1431196833 +215794,53318,Nudity (Full Frontal),1418673950 +215801,260,classic,1439081083 +215801,260,sci-fi,1439081142 +215805,260,force,1432111401 +215805,260,love,1432111390 +215850,1027,Kevin Costner,1188060373 +215888,260,fantasy action,1435452676 +215888,260,space adventure,1435452666 +215897,2959,absolute favorite,1138353020 +215897,6541,disjointed,1233056991 +215897,30793,clockwork orange cinematography,1139390687 +215897,34405,crap,1233056947 +215897,34405,disjointed,1233056948 +215897,34405,nonsensical,1233056948 +215897,47264,bulls don't have teats,1173216932 +215897,47264,"kyotess aren't evil and black cows aren't ""black"". boooo",1173216932 +215897,47810,predictable,1190288532 +215897,53956,100% predictable,1227765960 +215897,57669,dark comedy,1233056855 +215897,57669,hitman,1233056856 +215897,58376,30% truth 70% story,1233057200 +215897,60072,Fight club wannabe failure,1230682709 +215915,994,Ian Holm,1295739058 +215915,5785,Funny,1274052320 +215915,46850,gay propaganda,1182421411 +215915,48322,hilarious,1274052335 +215915,48322,Johnny Knoxville,1274052341 +215915,49225,Cory Booker,1293742436 +215915,51662,fascistic,1177281258 +215915,66744,Toni Servillo,1263991652 +215915,67997,Peter Capaldi,1274052292 +215915,70643,future cult flick,1253380697 +215915,78142,Sicily,1280687154 +215915,78499,Pixar,1280597171 +215915,81845,Geoffrey Rush,1294953458 +215915,83976,Rob Brydon,1310924933 +215915,103984,Toni Servillo,1399459008 +215922,73,opera,1244885879 +215930,260,old FX quality,1429083877 +215930,296,Black comedy,1429083592 +215930,296,bruce willis,1429083595 +215930,296,dark comedy,1429083582 +215930,296,nonlinear,1429083583 +215930,296,Quentin Tarantino,1429083580 +215930,353,film noir,1429084382 +215930,353,gothic,1429084379 +215930,353,great soundtrack,1429084376 +215930,555,Christopher Walken,1429083639 +215930,555,dialogue,1429083642 +215930,555,Quentin Tarantino,1429083636 +215930,1200,action,1429084353 +215930,1200,aliens,1429084344 +215930,1200,androids,1429084356 +215930,1200,horror,1429084347 +215930,1200,sci-fi,1429084342 +215930,1200,SPACE TRAVEL,1429084349 +215930,1200,suspense,1429084358 +215930,1210,sci-fi,1429083986 +215930,1210,Star Wars,1429083978 +215930,1527,aliens,1429083151 +215930,1527,Bruce Willis,1429083139 +215930,1527,dystopia,1429083164 +215930,1527,dystopic future,1429083143 +215930,1527,futuristic,1429083147 +215930,1527,Gary Oldman,1429083149 +215930,1527,great cinematography,1429083168 +215930,1527,Milla Jovovich,1429083154 +215930,1527,sci-fi,1429083159 +215930,1527,surreal,1429083162 +215930,1527,visually appealing,1429083156 +215930,1921,existentialism,1429082605 +215930,1921,mathematics,1429082599 +215930,1921,mindfuck,1429082583 +215930,2571,action,1429083260 +215930,2571,alternate reality,1429083230 +215930,2571,artificial intelligence,1429083250 +215930,2571,computers,1429083265 +215930,2571,cyberpunk,1429083218 +215930,2571,fantasy,1429083242 +215930,2571,hackers,1429083234 +215930,2571,martial arts,1429083222 +215930,2571,post apocalyptic,1429083255 +215930,2571,sci-fi,1429083252 +215930,2571,Special Effects,1429083264 +215930,2571,thought-provoking,1429083224 +215930,2571,virtual reality,1429083212 +215930,4011,comedy,1429083543 +215930,4011,cynical,1429083514 +215930,4011,dark comedy,1429083558 +215930,4011,dark humor,1429083530 +215930,4011,funny,1429083556 +215930,4011,Great dialogue,1429083526 +215930,4011,guy ritchie,1429083510 +215930,4011,heist,1429083521 +215930,4011,Jason Statham,1429083540 +215930,4011,multiple storylines,1429083537 +215930,4011,quirky,1429083549 +215930,4011,twist ending,1429083507 +215930,4848,dark,1429082675 +215930,4848,David Lynch,1429082671 +215930,4848,Erotic,1429082696 +215930,4848,mystery,1429082698 +215930,4848,nonlinear,1429082702 +215930,4848,Nudity (Full Frontal - Notable),1429082684 +215930,4848,sexual,1429082692 +215930,4848,twist ending,1429082690 +215930,5669,Michael Moore,1429084263 +215930,5679,disturbing,1429084216 +215930,5679,horror,1429084201 +215930,5679,mystery,1429084209 +215930,5679,paranormal,1429084207 +215930,7090,martial arts,1429084658 +215930,8957,clever,1429084029 +215930,8957,detective,1429084032 +215930,8957,Disturbing,1429084023 +215930,8957,gore,1429084016 +215930,8957,great ending,1429084046 +215930,8957,mindfuck,1429084019 +215930,8957,original,1429084052 +215930,8957,serial killer,1429084038 +215930,8957,surprise ending,1429084034 +215930,8957,suspense,1429084048 +215930,8957,torture,1429084027 +215930,8957,twist ending,1429084012 +215930,27773,depressing,1429084502 +215930,27773,incest,1429084511 +215930,27773,surreal,1429084508 +215930,27773,twist ending,1429084485 +215930,32587,black comedy,1429084298 +215930,32587,multiple storylines,1429084288 +215930,32587,Quentin Tarantino,1429084291 +215930,32587,visually appealing,1429084311 +215930,65642,paradox,1429084921 +215930,65642,time travel,1429084918 +215930,79132,alternate reality,1429083276 +215930,79132,ambiguous ending,1429083353 +215930,79132,Christopher Nolan,1429083333 +215930,79132,complicated,1429083326 +215930,79132,heist,1429083288 +215930,79132,intellectual,1429083280 +215930,79132,mindfuck,1429083299 +215930,79132,sci-fi,1429083282 +215930,79132,surreal,1429083335 +215930,79132,suspense,1429083294 +215930,79132,thought-provoking,1429083323 +215930,79132,twist ending,1429083285 +215930,91529,based on a comic,1429083938 +215930,91529,Christopher Nolan,1429083917 +215930,91529,dystopia,1429083958 +215930,91529,great ending,1429083944 +215930,91529,Morgan Freeman,1429083953 +215930,91529,plot twist,1429083922 +215930,91529,Predictable,1429083931 +215930,91529,superhero,1429083950 +215930,94466,dark,1429084244 +215930,94466,dystopia,1429084234 +215930,94466,satire,1429084240 +215930,94466,technology,1429084236 +215930,96610,clever,1429084870 +215930,96610,dystopia,1429084863 +215930,96610,future,1429084890 +215930,96610,gore,1429084897 +215930,96610,sci-fi,1429084859 +215930,96610,science fiction,1429084885 +215930,96610,thriller,1429084882 +215930,96610,time travel,1429084861 +215930,96610,visually appealing,1429084888 +215930,106642,Doctor Who,1429084799 +215930,106642,time travel,1429084796 +215930,109487,sci-fi,1429082665 +215930,109487,space,1429082665 +215930,109487,time travel,1429082665 +215930,112552,jazz,1429084156 +215930,117895,action,1429082560 +215930,117895,teen,1429082548 +215935,16,cult film,1139589465 +215935,16,mafia,1139589465 +215935,16,robert de niro,1139589465 +215935,16,scorcese,1139589465 +215935,32,adventure,1139588366 +215935,32,brad pitt,1139588366 +215935,32,bruce willis,1139588366 +215935,32,drama,1139588366 +215935,34,adventure,1139588618 +215935,34,infantil,1139588618 +215935,47,ação,1139588452 +215935,47,brad pitt,1139588452 +215935,47,drama,1139588452 +215935,47,policial,1139588452 +215935,110,action,1139588274 +215935,110,adventure,1139588274 +215935,110,drama,1139588274 +215935,110,guerra,1139588274 +215935,110,mel gibson,1139588274 +215935,111,cult film,1139587644 +215935,111,robert de niro,1139587644 +215935,111,scorcese,1139587644 +215935,231,comedy,1139588673 +215935,231,jim carrey,1139588687 +215935,253,brad pitt,1139588798 +215935,253,drama,1139588798 +215935,253,terror,1139588798 +215935,253,tom cruise,1139588798 +215935,293,drama,1139589124 +215935,293,estrangeinro,1139589124 +215935,296,bruce willis,1139587764 +215935,296,cult film,1139587764 +215935,296,tarantino,1139587764 +215935,356,drama,1139588139 +215935,356,romance,1139588139 +215935,356,tom hanks,1139588139 +215935,364,desenho,1139588582 +215935,367,comedy,1139588820 +215935,367,jim carrey,1139588820 +215935,480,action,1139588170 +215935,480,adventure,1139588170 +215935,480,spielberg,1139588170 +215935,527,drama,1139588333 +215935,527,guerra,1139588333 +215935,527,spielberg,1139588333 +215935,551,cult film,1139589280 +215935,551,desenho,1139589280 +215935,551,tim burton,1139589280 +215935,592,comic bookie,1139588238 +215935,593,drama,1139588117 +215935,593,horror,1139588117 +215935,593,suspense,1139588117 +215935,597,julia roberts,1139588636 +215935,597,romance,1139588636 +215935,653,action,1139589516 +215935,653,adventure,1139589516 +215935,653,epico,1139589516 +215935,736,action,1139588658 +215935,736,adventure,1139588658 +215935,780,action,1139588303 +215935,780,adventure,1139588303 +215935,780,eua,1139588303 +215935,1073,cult film,1139588751 +215935,1073,infantil,1139588751 +215935,1089,cult film,1139587805 +215935,1089,tarantino,1139587805 +215935,1097,infantil,1139588770 +215935,1097,spielberg,1139588770 +215935,1206,cult film,1139587551 +215935,1206,drama,1139587551 +215935,1206,stanley kubrick,1139587551 +215935,1208,drama,1139589308 +215935,1208,guerra,1139589308 +215935,1213,mafia,1139589068 +215935,1213,robert de niro,1139589082 +215935,1222,guerra,1139587839 +215935,1222,stanley kubrick,1139587839 +215935,1258,cult film,1139589377 +215935,1258,jack nicholson,1139589376 +215935,1258,stanley kubrick,1139589376 +215935,1258,terror,1139589376 +215935,1259,adventure,1139589195 +215935,1259,sessao da tarde,1139589195 +215935,1270,adventure,1139588569 +215935,1270,sci-fi,1139588569 +215935,1580,action,1139588861 +215935,1580,adventure,1139588861 +215935,1580,policial,1139588861 +215935,1580,sci-fi,1139588861 +215935,1682,drama,1139589481 +215935,1682,jim carrey,1139589481 +215935,1721,action,1139588878 +215935,1721,drama,1139588878 +215935,1721,romance,1139588878 +215935,1968,cult film,1139589213 +215935,1968,drama,1139589213 +215935,2028,action,1139588482 +215935,2028,drama,1139588482 +215935,2028,guerra,1139588482 +215935,2396,drama,1139588928 +215935,2396,romance,1139588928 +215935,2657,comedy musical,1139589675 +215935,2657,cult film,1139589675 +215935,2762,bruce willis,1139588729 +215935,2762,sobrenatural,1139588729 +215935,2858,drama,1139588418 +215935,2858,oscar,1139588418 +215935,2987,adventure,1139589155 +215935,2987,desenho,1139589155 +215935,2997,drama,1139588992 +215935,2997,spike jones,1139588992 +215935,3578,action,1139589029 +215935,3578,drama,1139589029 +215935,3578,epico,1139589029 +215935,3578,russel crowe,1139589029 +215935,3793,comic bookie,1139586386 +215935,3793,sci-fi,1139586386 +215935,3996,asiático,1139586414 +215935,3996,aventura,1139586414 +215935,4235,estrangeinro,1139586937 +215935,4235,gael garcia,1139586937 +215935,4306,comedia,1139589099 +215935,4306,desenho,1139589099 +215935,4306,romance,1139589099 +215935,4973,drama,1139587928 +215935,4973,estrangeinro,1139587928 +215935,4973,romance,1139587928 +215935,6953,drama,1139586998 +215935,6953,sean penn,1139586998 +215935,7323,drama,1139587190 +215935,7323,estrangeinro,1139587190 +215935,7361,cult film,1139587878 +215935,7361,drama,1139587878 +215935,7361,jim carrey,1139587878 +215935,7371,cult film,1139587318 +215935,7371,drama,1139587318 +215935,8529,drama,1139588008 +215935,8529,spielberg,1139588008 +215935,8529,tom hanks,1139588008 +215935,8645,estrangeinro,1139587068 +215935,27773,estrangeinro,1139586842 +215943,19,detective,1368579000 +215943,22,detective,1368579000 +215943,22,suspenseful,1368578727 +215943,25,melancholic,1368578201 +215943,32,great ending,1368578932 +215943,39,teen movie,1368578696 +215943,46,women,1368578603 +215943,47,great ending,1368578932 +215943,50,excellent script,1368578442 +215943,111,masterpiece,1368578371 +215943,218,unlikely friendships,1368578964 +215943,218,women,1368578603 +215943,288,brutality,1368578799 +215943,290,brutality,1368578799 +215943,296,masterpiece,1368578371 +215943,318,great ending,1368578932 +215943,318,Strong story,1138931466 +215943,521,noir thriller,1368578269 +215943,549,musicians,1368578646 +215943,587,supernatural,1368578413 +215943,593,excellent script,1368578442 +215943,724,teen movie,1368578696 +215943,799,supernatural,1368578413 +215943,866,neo-noir,1368578855 +215943,898,screwball comedy,1368579086 +215943,904,suspenseful,1368578727 +215943,905,screwball comedy,1368579086 +215943,910,screwball comedy,1368579086 +215943,923,masterpiece,1368578371 +215943,924,masterpiece,1368578371 +215943,1014,Disney,1138931225 +215943,1033,unlikely friendships,1368578964 +215943,1088,dancing,1368578891 +215943,1172,mentor,1368578338 +215943,1188,dancing,1368578890 +215943,1213,masterpiece,1368578371 +215943,1213,stylish,1368578488 +215943,1219,suspenseful,1368578727 +215943,1241,splatter,1368578554 +215943,1248,noir thriller,1368578269 +215943,1249,stylish,1368578488 +215943,1258,masterpiece,1368578371 +215943,1259,unlikely friendships,1368578964 +215943,1271,unlikely friendships,1368578964 +215943,1285,teen movie,1368578696 +215943,1307,unlikely friendships,1368578964 +215943,1387,suspenseful,1368578728 +215943,1537,dancing,1368578891 +215943,1617,detective,1368579000 +215943,1620,detective,1368579000 +215943,1678,women,1368578603 +215943,1704,excellent script,1368578442 +215943,1704,mentor,1368578338 +215943,1719,melancholic,1368578201 +215943,1754,supernatural,1368578413 +215943,1968,teen movie,1368578696 +215943,2076,neo-noir,1368578855 +215943,2144,teen movie,1368578696 +215943,2194,excellent script,1368578442 +215943,2352,unlikely friendships,1368578964 +215943,2420,mentor,1368578338 +215943,2726,noir thriller,1368578269 +215943,2762,great ending,1368578932 +215943,2841,supernatural,1368578413 +215943,2858,excellent script,1368578442 +215943,2859,musicians,1368578646 +215943,2863,musicians,1368578646 +215943,2866,musicians,1368578646 +215943,2915,teen movie,1368578696 +215943,2966,melancholic,1368578201 +215943,3005,detective,1368579000 +215943,3067,screwball comedy,1368579086 +215943,3083,women,1368578603 +215943,3129,musicians,1368578646 +215943,3418,women,1368578603 +215943,3499,suspenseful,1368578727 +215943,3791,dancing,1368578891 +215943,4018,women,1368578603 +215943,4020,supernatural,1368578413 +215943,4054,dancing,1368578890 +215943,4085,detective,1368579000 +215943,4306,Negative humor,1139327271 +215943,5065,supernatural,1368578413 +215943,5266,suspenseful,1368578727 +215943,5693,dancing,1368578891 +215943,6707,splatter,1368578554 +215943,7013,noir thriller,1368578269 +215943,7091,Classic,1138931235 +215943,8360,Negative humor,1139327285 +215943,32587,brutality,1368578799 +215943,33834,splatter,1368578554 +215943,34437,melancholic,1368578202 +215943,37733,brutality,1368578799 +215943,42723,splatter,1368578554 +215943,42734,strong story,1138931369 +215943,48304,brutality,1368578799 +215943,53123,musicians,1368578646 +215957,260,have not seen it,1438653412 +215957,260,haven't seen it,1438653400 +215987,5988,messenger,1437205336 +215987,7318,bible,1375596988 +215987,7318,christianity,1375596971 +215987,7318,jesus,1375596949 +215987,7318,religion,1375596961 +215987,26915,punksploitation,1437159187 +215987,41706,atmospheric,1375055767 +215987,41706,bleak,1375055767 +215987,41706,crime,1375055872 +215987,41706,dark,1375055767 +215987,41706,gangs,1375055765 +215987,41706,misfits,1375055852 +215987,41706,motorcycle,1375055765 +215987,41706,stylized,1375055835 +215987,41706,trouble,1375055876 +215987,41706,violent,1375055765 +215987,47330,car chase,1437192557 +215987,71804,80s,1375055530 +215987,71804,atmospheric,1375055438 +215987,71804,bleak,1375055433 +215987,71804,coming of age,1375055548 +215987,71804,dark,1375055384 +215987,71804,football,1375055459 +215987,71804,high school,1375055384 +215987,71804,love,1375055384 +215987,71804,misfits,1375055384 +215987,71804,motorcycle,1375055406 +215987,71804,school,1375055470 +215987,71804,small town,1375055518 +215987,71804,teen angst,1375055420 +215987,71804,teenagers,1375055384 +215987,71804,youth,1375055576 +215987,90061,bicycles,1375411208 +215987,90061,loose narrative,1375411197 +215987,90061,teens,1375411350 +215987,90061,youth,1375411172 +215987,99502,alcohol,1375055955 +215987,99502,bittersweet,1375056008 +215987,99502,suburbia,1375056055 +215987,99502,teenagers,1375056022 +215987,99502,understated,1375055921 +215987,101415,high school,1375324834 +215987,101415,love story,1375324877 +215987,101415,teens,1375324839 +215987,133569,australian,1437159019 +215987,133569,black magic,1437159059 +215987,133569,car chase,1437159010 +215987,133569,cars,1437159062 +215987,133569,dark,1437158994 +215987,133569,goth girl,1437159049 +215987,133569,gothic,1437159053 +215987,133569,indie,1437159031 +215987,133569,moody,1437158997 +215987,133569,punksploitation,1437158988 +215987,133569,stock cars,1437159005 +215987,133569,teen angst,1437159088 +215987,133569,teen love,1437159093 +215987,133569,teenagers,1437159083 +215987,133569,underground,1437159025 +215987,133569,unsettling,1437159105 +215987,133822,ghost,1437158700 +215987,133822,halloween,1437158685 +215987,133822,high school,1437158709 +215987,133822,teen angst,1437158694 +215987,133822,teenagers,1437158681 +215987,134515,bmx,1437242071 +215987,134515,cycling,1437242068 +215987,134515,teenagers,1437242075 +215987,138958,bleak,1437158593 +215987,138958,high school,1437158623 +215987,138958,indie,1437158602 +215987,138958,love,1437158648 +215987,138958,low budget,1437158599 +215987,138958,pain,1437158652 +215987,138958,teen angst,1437158628 +215987,138958,teen love,1437158641 +215987,138958,teenagers,1437158633 +215987,138960,action,1437158852 +215987,138960,atmospheric,1437158886 +215987,138960,bleak,1437158889 +215987,138960,crime,1437158848 +215987,138960,gloomy,1437158879 +215987,138960,indie,1437158838 +215987,138960,low budget,1437158860 +215987,138960,punk,1437158834 +215987,138960,punksploitation,1437158936 +215987,138960,teenagers,1437158826 +215987,138960,thriller,1437158864 +215987,138964,atmospheric,1437158565 +215987,138964,bleak,1437158520 +215987,138964,indie,1437158514 +215987,138964,low budget,1437158530 +215987,138964,punk,1437158509 +215987,138964,vampire,1437158491 +215987,138966,animated,1437159891 +215987,138966,cycling,1437159886 +215987,138966,sports drama,1437159896 +215987,139026,goth girl,1437190840 +215987,139026,gothic,1437190850 +215987,139026,high school,1437190814 +215987,139026,teen angst,1437190809 +215987,139026,teenagers,1437190826 +215987,139026,witchcraft,1437190821 +215987,148715,angst,1450060857 +215987,148715,crime,1450060861 +215987,148715,desert,1450060844 +215987,148715,gang,1450060837 +215987,148715,leather,1450060865 +215987,148715,motorcycle,1450060835 +215987,148715,murder,1450060859 +215987,148715,teen,1450060853 +216017,5146,anime,1422355025 +216057,2018,sad,1144920303 +216057,3949,depressing,1144921026 +216057,38038,rabbits,1147189821 +216057,46965,Planes,1156261351 +216057,46965,Snakes,1156261349 +216059,150,thriller,1393162199 +216059,474,thriller,1393162756 +216059,1291,Sean Connery,1393163682 +216059,2580,teenagers,1393163861 +216059,25940,mirrors,1393162841 +216067,4533,zombies,1316691205 +216112,260,classic sci-fi,1442535682 +216112,260,engrossing adventure,1442535673 +216112,260,EPIC,1442535666 +216116,111,atmospheric,1297555057 +216116,111,Classic,1297555054 +216116,111,disturbing,1297555064 +216116,111,New York City,1297555049 +216116,318,based on book,1297551805 +216116,318,inspirational,1297551773 +216116,318,justice,1297551777 +216116,318,revenge,1297551797 +216116,318,twist ending,1297551787 +216116,778,crime,1297557511 +216116,778,drug abuse,1297557490 +216116,778,negative portrayal of violence,1297557523 +216116,778,social commentary,1297557503 +216116,778,violent,1297557497 +216116,1208,acting,1297557089 +216116,1208,adventure,1297557094 +216116,1208,camerawork,1297557089 +216116,1208,cinematography,1297557115 +216116,1208,classic,1297557040 +216116,1208,Dark,1297557044 +216116,1208,disturbing,1297557046 +216116,1208,Marlon Brando,1297557172 +216116,1208,Martin Sheen,1297557162 +216116,1208,Oscar (Best Cinematography),1297557102 +216116,1208,surreal,1297557061 +216116,1209,classic,1297551864 +216116,1209,Ennio Morricone,1297551867 +216116,1209,great soundtrack,1297551859 +216116,1209,imdb top 250,1297551874 +216116,1209,Sergio Leone,1297551841 +216116,1209,Spaghetti Western,1297551845 +216116,1209,visually appealing,1297551882 +216116,1220,Based on a TV show,1297556492 +216116,1220,car chase,1297556461 +216116,1220,classic,1297556464 +216116,1220,comedy,1297556466 +216116,1220,destruction,1297556513 +216116,1220,explosions,1297556496 +216116,1220,notable soundtrack,1297556451 +216116,1220,positive thinking,1297556583 +216116,2959,crime,1297556334 +216116,2959,dark comedy,1297556331 +216116,2959,psychology,1297556316 +216116,2959,social commentary,1297556339 +216116,2959,surreal,1297556320 +216116,2959,twist ending,1297556328 +216116,2959,violence,1297556324 +216116,6016,atmospheric,1297556856 +216116,6016,drugs,1297556849 +216116,6016,multiple storylines,1297556839 +216116,27050,Alexandra Neldel,1297555956 +216116,27050,Diether Krebs,1297555958 +216116,27050,Martin Semmelrogge,1297555961 +216116,27050,Oliver Korittke,1297555975 +216116,27050,Ralf Richter,1297555966 +216116,27050,ruhrgebiet,1297555986 +216116,27050,Willi Tomczyk,1297555968 +216116,31410,controversial,1297552048 +216116,31410,disturbing,1297552000 +216116,31410,history,1297552003 +216116,55276,complicatet,1297555186 +216116,55276,disillusionment,1297555145 +216116,55276,George Clooney,1297555149 +216116,82459,acting,1297556952 +216116,82459,atmospheric,1297557016 +216116,82459,based on a book,1297556932 +216116,82459,camerawork,1297556986 +216116,82459,Coen Brothers,1297556917 +216116,82459,Jeff Bridges,1297556907 +216116,82459,justice,1297556947 +216116,82459,Western,1297556942 +216168,260,drama,1439918072 +216168,260,fantasy,1439918057 +216176,94410,shakespeare,1424398872 +216176,111913,coming out,1424398557 +216176,111913,love,1424398557 +216176,111913,touching,1424398557 +216180,260,classic sci-fi,1434483600 +216180,260,lightsabers,1434483611 +216180,260,sci-fi,1434483590 +216182,260,Action,1439775690 +216182,260,space epic,1439775683 +216200,260,classic,1444757427 +216200,260,nostalgic,1444757410 +216202,2167,vampires,1142111693 +216211,1213,This movie is one of the best movies of all time. EVERYONE should watch this movie. It is perfect.,1269114162 +216211,56782,based on a book,1269412549 +216248,260,sci-fi,1431812712 +216248,260,Star Wars,1431812715 +216248,109487,christopher nolan,1431828327 +216248,109487,sci-fi,1431828327 +216248,109487,special effects,1431828327 +216254,1088,romance,1186722749 +216254,1729,CRIME GONE AWRY,1186722751 +216254,4246,comedy,1186722745 +216254,7438,Action,1186722765 +216270,7566,Up series,1167925629 +216292,100714,brilliant,1426228420 +216292,100714,love,1426228420 +216292,100714,unconventional romance,1426228420 +216305,260,great story,1441192505 +216305,260,sci-fi,1441192493 +216311,953,World War II,1223220997 +216311,30810,Bill Murray,1223221298 +216330,318,Best Movie Ever,1155377280 +216357,296,action,1447091969 +216357,296,organized crime,1447091945 +216357,296,Quentin Tarantino,1447091913 +216357,296,quirky,1447091931 +216357,296,Tarantino,1447091919 +216357,296,violent,1447091922 +216357,1203,classic,1447092327 +216357,1203,great screenplay,1447092322 +216357,1203,group psychology,1447092325 +216357,1203,low budget,1447092311 +216357,1203,social commentary,1447092314 +216357,1203,thought-provoking,1447092333 +216357,1235,Cat Stevens,1447091352 +216357,1235,cult film,1447091339 +216357,1235,dark comedy,1447091341 +216357,1235,Eccentric,1447091352 +216357,1235,quirky,1447091343 +216357,1235,reflective,1447092382 +216357,1246,bittersweet,1447092532 +216357,1246,Coming of age,1447092548 +216357,1246,education,1447092554 +216357,1246,friendship,1447092539 +216357,1246,inspirational,1447092556 +216357,1246,philosophy,1447092540 +216357,1246,poetry,1447092551 +216357,1246,Robin Williams,1447092568 +216357,1246,teacher,1447092575 +216357,1968,coming of age,1447091754 +216357,1968,coming-of-age,1447091759 +216357,1968,cult film,1447091763 +216357,2858,coming of age,1447091723 +216357,2858,dark comedy,1447091715 +216357,2858,great acting,1447091718 +216357,2858,loneliness,1447091704 +216357,2858,midlife crisis,1447091696 +216357,2858,reflective,1447091707 +216357,2858,satirical,1447091709 +216357,2858,sexuality,1447091834 +216357,2858,social commentary,1447091699 +216357,2858,suburbia,1447091732 +216357,2858,surrealism,1447091697 +216357,2858,thought-provoking,1447091848 +216357,2959,based on a book,1447092599 +216357,2959,complicated,1447092602 +216357,2959,dark comedy,1447092588 +216357,2959,fighting,1447092624 +216357,2959,philosophical,1447092605 +216357,2959,philosophy,1447092606 +216357,2959,psychology,1447092633 +216357,2959,quirky,1447092609 +216357,2959,social commentary,1447092591 +216357,2959,surreal,1447092593 +216357,2959,thought-provoking,1447092596 +216357,4973,beautifully filmed,1447092436 +216357,4973,comedy,1447092454 +216357,4973,cult film,1447092456 +216357,4973,feel-good,1447092441 +216357,4973,French,1447092462 +216357,4973,great soundtrack,1447092452 +216357,4973,notable soundtrack,1447092445 +216357,4973,quirky,1447092438 +216357,4973,surreal,1447092449 +216357,4973,whimsical,1447092447 +216357,5618,surreal,1447092490 +216357,5772,dialogue,1447092293 +216357,5772,philosophical,1447092289 +216357,5772,philosophy,1447092291 +216357,6874,beautifully filmed,1447091999 +216357,6874,blood,1447092001 +216357,6874,bloody,1447092015 +216357,6874,kung fu,1447091997 +216357,6874,violence,1447092007 +216357,55247,inspirational,1447610782 +216357,55247,road trip,1447610781 +216357,55247,self discovery,1447610727 +216357,55247,thought provoking,1447610781 +216357,58559,based on a comic,1447093000 +216357,58559,Comic Book adaption,1447093003 +216357,58559,DC Comics,1447093006 +216357,68954,bittersweet,1447092410 +216357,68954,friendship,1447092406 +216357,68954,Pixar,1447092402 +216357,90809,French Film,1447092270 +216357,96821,based on a book,1447091302 +216357,96821,character development,1447091290 +216357,96821,coming of age,1447091292 +216357,96821,depression,1447091300 +216357,96821,high school,1447091282 +216357,96821,Suicide,1447091298 +216357,112183,meaning of life,1447094692 +216357,114028,lgbt,1447092284 +216357,114028,queer,1447092280 +216357,114028,strike,1447092283 +216357,116823,dystopia,1447091642 +216357,116823,fashion,1447092299 +216357,116823,revolution,1447091633 +216357,133778,death,1447094889 +216357,133778,old,1447094894 +216357,133778,philosophy,1447094899 +216357,134853,bittersweet,1447092336 +216357,134853,coming of age,1447092339 +216357,134853,creative,1447092341 +216357,134853,introspective,1447092343 +216357,134853,Pixar,1447092350 +216372,4997,witches,1271821565 +216436,2700,off-beat,1142868652 +216464,223,crude humor,1284917286 +216464,223,cynical,1284917288 +216464,223,funny,1284917291 +216464,223,good dialogue,1284917292 +216464,223,great dialogue,1284917294 +216464,223,jay and silent bob,1284917301 +216464,223,Kevin Smith,1284917296 +216464,223,slackers,1284917304 +216464,223,view askew,1284917300 +216464,318,based on a book,1284917421 +216464,318,Morgan Freeman,1284917423 +216464,318,twist ending,1284917426 +216464,3624,funny,1284917126 +216464,3624,Jackie Chan,1284917115 +216464,3624,Lucy Liu,1284917144 +216464,3624,Owen Wilson,1284917140 +216464,3624,Western Comedy,1284917134 +216464,6156,Dumb and Dumber,1284917206 +216464,6156,Jackie Chan,1284917197 +216464,6156,Owen Wilson,1284917203 +216473,59369,agent,1241134869 +216494,616,Disney,1337199555 +216501,5349,alter ego,1449442561 +216501,5349,childhood,1449442361 +216501,5349,Comic book,1449442566 +216501,5349,double life,1449442569 +216501,5349,superhero,1449442563 +216501,5349,Tobey Maguire,1449442549 +216501,65514,Donnie Yen,1449442516 +216501,65514,fighting,1449442522 +216501,65514,kung fu,1449442517 +216501,65514,martial arts,1449442501 +216501,65514,technique,1449442451 +216504,30707,boxing,1433550665 +216504,30707,drama,1433550669 +216504,30707,emotional,1433550674 +216504,30707,thought-provoking,1433550682 +216504,116797,alan turing,1433550624 +216504,116797,computers,1433550624 +216504,116797,research,1433550624 +216525,32291,Woody might have saved this by starring in it.,1137256517 +216525,39183,Would have been 4.5 if not for the schmaltzy tough-guy-in-front-of-fireworks moment.,1137385347 +216527,115617,family,1433478870 +216527,115617,sci-fi,1433478870 +216527,115617,very funny,1433478870 +216552,260,fiction,1444066562 +216552,260,good effects,1444066620 +216568,7361,beautiful,1446913365 +216568,7361,dreamlike,1446913374 +216568,7361,sci-fi,1446913369 +216568,7361,surreal,1446913350 +216572,4246,english,1271098207 +216576,3224,long movie,1248633710 +216576,3224,psychology,1248633711 +216576,4454,short films,1249847380 +216576,5194,adventure,1249980731 +216576,5194,comedy,1249980731 +216576,7820,psychology,1248633761 +216576,7820,violence,1248633761 +216576,7820,way of life,1248633761 +216576,46578,road trip,1209411637 +216576,55247,experience,1248856913 +216576,55247,wisdom,1248856913 +216576,63082,life story,1250147148 +216576,69122,comedy,1249591435 +216579,260,scifi,1441218075 +216579,260,space,1441218084 +216587,260,sci-fi,1430276039 +216587,260,starwars,1430276028 +216603,1197,fencing,1249972394 +216603,1197,fighting,1249972394 +216603,1197,swords,1249972394 +216603,1378,character death,1249972244 +216603,1378,Emilio Estevez,1249972247 +216603,1378,fighting,1249972246 +216603,1378,guns,1249972244 +216603,1378,humor,1249972246 +216603,1378,shootout,1249972247 +216603,1378,western,1249972246 +216603,2000,action,1249971931 +216603,2000,humor,1249971936 +216603,2000,nudity,1249971892 +216603,2011,Complex,1249971106 +216603,2011,Michael J Fox,1249971061 +216603,2011,Time travel,1249971066 +216603,3793,action,1249972323 +216603,3793,fighting,1249972323 +216603,3793,sci-fi,1249972324 +216603,3793,superheroes,1249972323 +216603,3793,superpowers,1249972324 +216603,4603,sexual references,1250177941 +216603,4795,Oldie,1250077290 +216603,6333,action,1249972325 +216603,6333,fighting,1249972325 +216603,6333,sci-fi,1249972325 +216603,6333,superheroes,1249972325 +216603,6333,superpowers,1249972325 +216603,7101,Michael J Fox,1249999357 +216603,7101,Nudity,1249999317 +216603,50872,animation,1249972350 +216603,63859,animation,1249998629 +216603,68791,action,1249999505 +216603,68791,Christian Bale,1249999505 +216603,68791,No humor,1249999505 +216603,68791,sci-fi,1249999505 +216603,76093,Fantasy,1290642659 +216603,76093,Toothless,1290642647 +216609,98809,adventure,1451987985 +216609,98809,beautiful scenery,1451987988 +216609,98809,CGI,1451988001 +216618,3623,Lame ending,1162489008 +216619,1060,Heather Graham,1198681395 +216619,2997,cult film,1198681316 +216619,3019,DRUG ADDICTION,1198685281 +216619,3949,DRUG ADDICTION,1198685245 +216619,5618,Studio Ghibli,1198682052 +216619,48780,twist ending,1198686524 +216619,48780,twists & turns,1198686494 +216620,29,atmospheric,1345873359 +216620,29,dark fantasy,1345873347 +216620,29,dystopia,1345873356 +216620,29,surreal,1345873350 +216620,32,Bruce Willis,1345873570 +216620,32,Post apocalyptic,1345873567 +216620,32,post-apocalyptic,1345873565 +216620,32,time travel,1345873572 +216620,32,twist ending,1345873561 +216620,50,complicated,1336772628 +216620,50,conspiracy,1336772630 +216620,50,Kevin Spacey,1336772635 +216620,50,twist ending,1336772639 +216620,541,atmospheric,1343094250 +216620,541,cult film,1343094248 +216620,541,dreamlike,1343094251 +216620,541,dystopia,1343094234 +216620,541,Harrison Ford,1343094243 +216620,541,Philip K. Dick,1343094236 +216620,541,philosophical,1343094239 +216620,541,stylized,1343094238 +216620,903,San Francisco,1336772760 +216620,1136,Monty Python,1336772465 +216620,1136,Terry Gilliam,1336772492 +216620,1252,atmospheric,1345873199 +216620,1252,cynical,1343626093 +216620,1252,Film Noir,1343626083 +216620,1252,Jack Nicholson,1343626090 +216620,1252,Los Angeles,1345873221 +216620,1278,Gene Wilder,1336772411 +216620,1278,Mel Brooks,1336772414 +216620,1278,National Film Registry,1336772423 +216620,1278,parody,1336772419 +216620,1278,Quotable,1336772420 +216620,1278,spoof,1336772425 +216620,1292,Peter Sellers,1345873893 +216620,1625,Mystery,1356189680 +216620,1625,plot twists,1356189683 +216620,1625,psychological,1356189681 +216620,1625,twist ending,1356189685 +216620,1645,Al Pacino,1336774199 +216620,1645,Keanu Reeves,1336774202 +216620,1682,dystopia,1336772875 +216620,1682,Jim Carrey,1336772877 +216620,1682,social commentary,1336772880 +216620,1748,atmospheric,1345873594 +216620,1748,dreamlike,1345873596 +216620,1748,film noir,1345873601 +216620,1748,memory,1345873628 +216620,1748,mindfuck,1345873611 +216620,1748,Post apocalyptic,1345873604 +216620,1748,surreal,1345873613 +216620,1748,thought-provoking,1345873618 +216620,1945,Marlon Brando,1336772841 +216620,2160,scary,1395944019 +216620,2285,surrealism,1378264594 +216620,2857,psychedelic,1336772514 +216620,2857,surreal,1336772519 +216620,2857,weird animation,1336772522 +216620,2858,coming of age,1345873862 +216620,2858,Kevin Spacey,1345873871 +216620,2858,surrealism,1345873866 +216620,2858,thought-provoking,1345873868 +216620,2890,anti-war,1374035377 +216620,2890,George Clooney,1374035369 +216620,2890,Gulf War,1374035365 +216620,2890,stylized,1374035373 +216620,3104,Robert De Niro,1387721332 +216620,3160,coincidences,1345872844 +216620,3160,Forgiveness,1345872601 +216620,3160,Love,1345872595 +216620,3160,Philip Seymour Hoffman,1345872580 +216620,3362,Al Pacino,1336772812 +216620,3362,good story,1336772805 +216620,3399,Judy Freudberg,1414284631 +216620,3994,Bruce Willis,1379962942 +216620,3994,comics,1379962946 +216620,3994,disapointing ending,1379963009 +216620,3994,Samuel L. Jackson,1379962939 +216620,4255,over the top,1336772359 +216620,4255,weird,1336772362 +216620,4816,Highly quotable,1336772163 +216620,4816,Will Ferrell,1336772181 +216620,5954,Barry Pepper,1384746591 +216620,5954,Edward Norton,1384746577 +216620,5954,Philip Seymour Hoffman,1384746580 +216620,6528,absurd,1380257483 +216620,7419,anxiety,1336774518 +216620,7419,bad luck,1336774505 +216620,7419,Martin Scorsese,1336774489 +216620,7419,New York City,1336774495 +216620,7419,NYC,1336774494 +216620,7419,surreal,1336774499 +216620,7419,surrealism,1336774503 +216620,31150,absurd,1345873389 +216620,31150,surreal,1345873391 +216620,33880,deadpan,1374774285 +216620,33880,humorous,1374774289 +216620,33880,unique,1374774276 +216620,34437,Bill Murray,1374354120 +216620,38061,black comedy,1371202320 +216620,38061,dark comedy,1371202358 +216620,38061,Film Noir,1371202324 +216620,38061,Robert Downey Jr.,1371202343 +216620,38061,satire,1371202340 +216620,38061,val kilmer,1371202346 +216620,38061,witty,1371202350 +216620,44665,Bruce Willis,1356752873 +216620,44665,twist ending,1356752914 +216620,46970,Will Ferrell,1356578158 +216620,49422,Absurd,1402754748 +216620,49422,Parody,1402754750 +216620,68237,dystopia,1343094297 +216620,68237,psychology,1343094312 +216620,68237,twist ending,1343094314 +216620,71416,absurdity,1379657650 +216620,71416,insanity,1379657645 +216620,71416,meta,1379657652 +216620,73321,beautiful scenery,1345873789 +216620,73321,dystopia,1345873800 +216620,73321,dystopic future,1345873797 +216620,73321,Gary Oldman,1345873794 +216620,73321,post-apocalyptic,1345873793 +216620,73321,visually appealing,1345873807 +216620,74754,absurd,1343107121 +216620,74754,so bad it's good,1343107111 +216620,74754,unintentional comedy,1343107115 +216620,79897,Bill Murray,1379207445 +216620,79897,Robert Duvall,1379207442 +216620,86882,Owen Wilson,1385113035 +216620,86882,time travel,1385113025 +216620,86882,witty,1385113021 +216620,86882,Woody Allen,1385113023 +216620,87304,Christopher Plummer,1375168752 +216620,87304,dogs,1375168763 +216620,87304,Ewan McGregor,1375168750 +216620,88129,Los Angeles,1371211215 +216620,88129,weak female character,1371211250 +216620,91630,franchise,1336772960 +216620,91630,Romance,1336772947 +216620,91630,Tom Cruise,1336772950 +216620,92719,John C. Reilly,1336772610 +216620,92719,Will Ferrell,1336772607 +216620,92719,Zach Galifianakis,1336772604 +216620,93510,cameo,1336772061 +216620,93510,Jonah Hill,1336772045 +216620,93510,meta,1336772049 +216620,93510,self-aware,1336772035 +216620,96079,beautifully filmed,1379219037 +216620,96079,cinematography,1379219039 +216620,96079,humor,1379219042 +216620,96079,James Bond,1379219049 +216620,96079,nostalgic,1379219044 +216620,96610,Bruce Willis,1353899134 +216620,96610,Joseph Gordon-Levitt,1353899118 +216620,96610,plot holes,1353899115 +216620,96610,sci-fi,1353899124 +216620,96610,time travel,1353899121 +216620,97306,Christopher Walken,1377131822 +216620,97306,clever,1377131819 +216620,97306,great cast,1377131817 +216620,97306,meta,1377131814 +216620,97306,metafiction,1377131810 +216620,97921,Chris Tucker,1384861874 +216620,97921,Robert De Niro,1384861883 +216620,97923,cliche contrition,1384861772 +216620,97923,John Goodman,1384861774 +216620,102123,dialogue,1383584182 +216620,102123,Jonah Hill,1383584189 +216620,102123,lacks substance,1383584224 +216620,102123,story,1383584228 +216620,102194,coming of age,1387389607 +216620,102194,Matthew McConaughey,1387389603 +216620,102194,Michael Shannon,1387389601 +216620,106100,Matthew McConaughey,1388352847 +216620,131724,court drama,1428421468 +216620,131724,homicide investigation,1428421457 +216620,131724,investigative journalism,1428421490 +216620,131724,mystery,1428421473 +216622,1,Disney,1139711712 +216622,1,Pixar,1139711712 +216622,1,Tim Allen,1139711712 +216622,1,Tom Hanks,1139711712 +216622,2,Children,1139711697 +216622,2,Fantasy,1139711697 +216622,2,Robin Williams,1139711697 +216622,10,action,1139711095 +216622,10,adventure,1139711095 +216622,10,James Bond,1139711095 +216622,110,action,1139711045 +216622,110,drama,1139711046 +216622,141,comedy,1139711039 +216622,141,crossdressing,1139711039 +216622,150,drama,1139711026 +216622,150,space,1139711026 +216622,158,children,1139711053 +216622,158,ghost,1139711048 +216622,163,action,1139711070 +216622,163,mexico,1139711070 +216622,163,romance,1139711070 +216622,163,thriller,1139711070 +216622,165,action,1139711084 +216622,165,bruce willis,1139711084 +216622,165,crime,1139711084 +216622,165,thriller,1139711084 +216622,170,action,1139711105 +216622,170,computers,1139711105 +216622,185,action,1139711120 +216622,185,computers,1139711120 +216622,185,crime,1139711120 +216622,185,internet,1139711120 +216622,185,thriller,1139711120 +216622,223,Kevin Smith,1139711685 +216622,260,Sci-Fi,1139711127 +216622,296,John Travolta,1139711364 +216622,296,Quentin Tarantino,1139711364 +216622,296,Samuel L. Jackson,1139711364 +216622,296,tarantino,1139711350 +216622,329,Patrick Stewart,1139711777 +216622,329,Sci-Fi,1139711243 +216622,329,Star Trek,1139711243 +216622,329,William Shatner,1139711777 +216622,333,Chris Farley,1139711250 +216622,333,David Spade,1139711250 +216622,344,Action,1139711148 +216622,344,comedy,1139711148 +216622,344,Jim Carrey,1139711148 +216622,349,action,1139711175 +216622,349,Harrison Ford,1139711175 +216622,367,comedy,1139711201 +216622,367,jim carrey,1139711200 +216622,374,Children,1139711760 +216622,374,comedy,1139711760 +216622,374,Macaulay Culkin,1139711760 +216622,377,Action,1139711236 +216622,377,Keanu Reaves,1139711236 +216622,377,Thriller,1139711236 +216622,380,Arnold Schwarzenegger,1139711473 +216622,474,Action,1139711190 +216622,474,Clint Eastwood,1139711190 +216622,474,Secret Service,1139711196 +216622,474,Thriller,1139711190 +216622,520,comedy,1139711224 +216622,520,Mel Brooks,1139711216 +216622,588,Action,1139711725 +216622,588,adventure,1139711158 +216622,588,animated,1139711158 +216622,588,Disney,1139711165 +216622,588,Robin Williams,1139711725 +216622,671,comedy,1139711792 +216622,671,Sci-Fi,1139711792 +216622,736,adventure,1139711825 +216622,736,thriller,1139711825 +216622,736,Tornado,1139711825 +216622,786,Arnold Schwarzenegger,1139711275 +216622,786,James Caan,1139711316 +216622,1027,Kevin Costner,1139711808 +216622,1030,Animation,1139711801 +216622,1030,Disney,1139711801 +216622,1036,action,1139711264 +216622,1036,bruce willis,1139711264 +216622,1178,Best War Films,1139711846 +216622,1270,adventure,1139711838 +216622,1270,Comedy,1139711838 +216622,1270,sci-fi,1139711838 +216622,2162,fantasy,1139711496 +216622,2236,Drama,1139711557 +216622,4019,Sean Connery,1156219686 +216622,7325,Ben Stiller,1139711578 +216622,7325,Crime,1139711578 +216622,7325,Remake,1139711578 +216622,7325,Snoop Dogg,1139711578 +216622,8984,Brad Pitt,1139711541 +216622,8984,Crime,1139711541 +216622,8984,Don Cheadle,1139711541 +216622,8984,George Clooney,1139711541 +216622,8984,Heist,1139711541 +216622,8984,Matt Damon,1139711541 +216622,8984,Robbery,1139711541 +216653,260,Amazing Sci-fi,1440638531 +216653,260,Space Saga,1440638513 +216654,260,Science Fiction,1439785401 +216654,260,space,1439785408 +216679,1721,muito drama,1140382007 +216679,3753,war,1140381655 +216679,4369,cars,1153235825 +216679,8958,great acting,1158542009 +216679,42007,jennifer aniston,1159661653 +216679,42015,Venetian story of true love,1157726656 +216679,42728,love story,1157998431 +216679,42728,medieval,1157998434 +216679,46967,Woody Allen classic,1174659283 +216679,55052,Keira Knightley,1203261528 +216692,260,sci-fi,1430577242 +216692,260,space opera,1430577255 +216692,593,cult film,1430578142 +216692,593,Hannibal Lecter,1430579252 +216692,593,psychology,1430579250 +216692,593,psychothriller,1430578142 +216692,593,serial killer,1430578142 +216692,741,artificial intelligence,1430578856 +216692,741,cyberpunk,1430578851 +216692,2710,found footage,1430578985 +216692,3275,dark humor,1430579165 +216692,3949,depressing,1430579204 +216692,6874,martial arts,1430579187 +216692,7438,martial arts,1430579183 +216692,8874,black comedy,1430579192 +216692,27704,bad sequel,1430578994 +216692,57669,black comedy,1430579151 +216692,57669,dark comedy,1430579149 +216692,65868,gothic,1430578945 +216692,77800,dark comedy,1430578973 +216692,81564,anti-hero,1430579096 +216692,83134,black comedy,1430578883 +216692,85412,found footage,1430578894 +216692,85412,mockumentary,1430578891 +216692,93840,dark comedy,1430578921 +216694,296,suspense,1388465533 +216694,296,violence,1388465550 +216694,296,witty,1388465477 +216694,2502,characters,1388465703 +216694,2502,funny,1388465684 +216706,6874,fake-action,1440193516 +216706,6874,kick-ass,1440193500 +216709,54272,funny,1438857014 +216709,105504,tense,1445900220 +216709,105504,true story,1445900213 +216709,115713,artificial intelligence,1438856993 +216709,116797,cryptography,1438856980 +216758,2571,human versus computer,1439847219 +216758,2571,science fiction,1439847194 +216775,260,seen at the cinema,1179431285 +216775,527,seen at the cinema,1179432086 +216775,1196,seen at the cinema,1179431289 +216775,1210,seen at the cinema,1179431290 +216775,1230,seen at the cinema,1179431618 +216775,1356,seen at the cinema,1179431019 +216775,1356,Star Trek,1179431019 +216775,1371,seen at the cinema,1179431172 +216775,1372,seen at the cinema,1179431157 +216775,1373,seen at the cinema,1179431180 +216775,1374,seen at the cinema,1179431136 +216775,1375,seen at the cinema,1179431151 +216775,1376,seen at the cinema,1179431145 +216775,2324,Holocaust,1179431800 +216775,2324,want to see again,1179431808 +216775,2393,seen at the cinema,1179431166 +216775,2571,seen at the cinema,1179432045 +216775,2628,seen at the cinema,1179431298 +216775,4993,seen at the cinema,1179431933 +216775,4993,tolkien,1179431913 +216775,5378,seen at the cinema,1179431294 +216775,5796,seen at the cinema,1179426732 +216775,5944,seen at the cinema,1179431176 +216775,5952,Tolkien,1180042028 +216775,7153,seen at the cinema,1179431948 +216775,7153,Tolkien,1179431989 +216775,33493,seen at the cinema,1179431001 +216775,33493,Star Wars,1179431001 +216775,33615,seen at the cinema,1179430950 +216775,46578,seen at the cinema,1179432068 +216775,48516,seen at the cinema,1179432028 +216775,49272,james bond,1179429888 +216775,49272,seen at the cinema,1179429869 +216775,51884,seen at the cinema,1179430862 +216775,52722,SivWalkedOut,1179431891 +216779,17,Jane Austen,1139010620 +216779,222,irish,1139528834 +216779,1183,british,1139015412 +216779,1235,sweet,1139096745 +216779,7371,artsy,1139006001 +216779,8910,whimsical,1139010724 +216779,27790,Ethic,1150758181 +216779,27790,whimsical,1150758172 +216779,40819,Southern theme,1139006040 +216819,296,dark comedy,1262470959 +216819,296,nonlinear,1262470962 +216819,413,cult film,1262470484 +216819,413,rock and roll,1262470487 +216819,1270,based on a book,1262469488 +216819,1270,sci-fi,1262469475 +216819,1270,time travel,1262469485 +216819,1590,dark,1262470900 +216819,1590,future,1262470898 +216819,1608,Harrison Ford,1262470447 +216819,2011,sci-fi,1262469491 +216819,2011,time travel,1262469496 +216819,2012,alternate reality,1262469499 +216819,2012,sci-fi,1262469504 +216819,2012,time travel,1262469502 +216819,2791,classic,1262470505 +216819,3552,classic comedy,1262470597 +216819,3841,Mel Gibson,1262470455 +216819,3841,Robert Downey Jr,1262470458 +216819,4370,dystopia,1262470534 +216819,4370,Steven Spielberg,1262470537 +216819,4878,psychology,1262469452 +216819,4878,surreal,1262469449 +216819,4878,time travel,1262469454 +216819,8865,surreal,1262471339 +216819,8914,Complicated,1262469421 +216819,8914,sci-fi,1262469429 +216819,8914,time travel,1262469426 +216819,32587,surrealism,1262471382 +216819,33004,based on a book,1262470866 +216819,33004,post-apocalyptic,1262470863 +216819,33004,space,1262470869 +216843,377,seen more than once,1180111959 +216843,1721,seen more than once,1180111929 +216843,2959,split personality,1180111999 +216843,4995,thinker,1180111974 +216847,260,fiction,1435677964 +216849,6,Al Pacino,1260657896 +216849,6,Michael Mann,1260657883 +216849,6,Natalie Portman,1260657886 +216849,6,Robert De Niro,1260657891 +216849,6,Val Kilmer,1260657904 +216849,16,Joe Pesci,1249856056 +216849,16,Martin Scorsese,1249856048 +216849,16,Robert De Niro,1249856045 +216849,16,Sharon Stone,1249856066 +216849,165,Bruce Willis,1238579254 +216849,165,John McTiernan,1238579778 +216849,165,Samuel L. Jackson,1238579857 +216849,198,Angela Bassett,1249491341 +216849,198,Juliette Lewis,1249491347 +216849,198,Kathryn Bigelow,1238607594 +216849,198,Ralph Fiennes,1249491343 +216849,198,Tom Sizemore,1249491345 +216849,198,William Fichtner,1249491346 +216849,260,Carrie Fisher,1246833023 +216849,260,George Lucas,1246833083 +216849,260,Harrison Ford,1246833011 +216849,260,Mark Hamill,1246833005 +216849,296,Bruce Willis,1284027355 +216849,296,John Travolta,1284027376 +216849,296,Quentin Tarantino,1284027362 +216849,296,Samuel L. Jackson,1284027357 +216849,318,Frank Darabont,1238607715 +216849,318,Morgan Freeman,1238607677 +216849,318,Tim Robbins,1238607697 +216849,318,William Sadler,1238607766 +216849,356,Gary Sinise,1249069512 +216849,356,Mykelti Williamson,1249069486 +216849,356,Robert Zemeckis,1249069443 +216849,356,Robin Wright Penn,1249069496 +216849,356,Sally Field,1249069521 +216849,356,Tom Hanks,1249069433 +216849,541,Harrison Ford,1241365490 +216849,541,Ridley Scott,1241365625 +216849,541,Rutger Hauer,1241365619 +216849,565,Claudio Brook,1248974766 +216849,565,Frederico Luppi,1248974553 +216849,565,Guillermo del Toro,1248974523 +216849,565,Margarita Isabel,1248974573 +216849,565,Ron Perlman,1248974526 +216849,648,Brian De Palma,1280078575 +216849,648,Jean Reno,1280078579 +216849,648,Tom Cruise,1280078576 +216849,733,Ed Harris,1249340533 +216849,733,Michael Bay,1249340480 +216849,733,Nicolas Cage,1249340464 +216849,733,Sean Connery,1249340453 +216849,750,Peter Sellers,1247165982 +216849,750,Stanley Kubrick,1247165972 +216849,780,Roland Emmerich,1264116989 +216849,780,Will Smith,1264116962 +216849,924,space,1276036064 +216849,924,Stanley Kubrick,1276036058 +216849,1036,Bruce Willis,1238579109 +216849,1036,John McTiernan,1238579592 +216849,1092,Michael Douglas,1280076825 +216849,1092,Paul Verhoeven,1280076832 +216849,1092,Sharon Stone,1280076831 +216849,1183,Anthony Minghella,1261185207 +216849,1183,Juliette Binoche,1261185261 +216849,1183,Willem Dafoe,1261185213 +216849,1206,Stanley Kubrick,1239388540 +216849,1213,Joe Pesci,1249907563 +216849,1213,Martin Scorsese,1249907545 +216849,1213,Ray Liotta,1249907558 +216849,1213,Robert De Niro,1249907542 +216849,1213,Samuel L. Jackson,1249907573 +216849,1215,Bruce Campbell,1249494076 +216849,1215,Sam Raimi,1249494080 +216849,1222,Stanley Kubrick,1255457368 +216849,1240,Arnold Schwarzenegger,1277230741 +216849,1240,James Cameron,1277230755 +216849,1245,Coen Brothers,1238606478 +216849,1252,Jack Nicholson,1244981398 +216849,1252,Roman Polanski,1244981395 +216849,1258,Jack Nicholson,1255860271 +216849,1258,Stanley Kubrick,1255860266 +216849,1261,Bruce Campbell,1249494056 +216849,1261,Sam Raimi,1249494058 +216849,1266,Clint Eastwood,1265332760 +216849,1266,Gene Hackman,1265332778 +216849,1266,Morgan Freeman,1265332781 +216849,1288,Christopher Guest,1244673103 +216849,1288,Rob Reiner,1244673151 +216849,1370,Bruce Willis,1238579262 +216849,1370,Renny Harlin,1238579684 +216849,1370,William Sadler,1238607800 +216849,1617,Curtis Hanson,1238580055 +216849,1617,Danny DeVito,1238580088 +216849,1617,Guy Pearce,1238580095 +216849,1617,James Cromwell,1238580205 +216849,1617,Kevin Spacey,1238580080 +216849,1617,Kim Basinger,1238580114 +216849,1617,Russell Crowe,1238580073 +216849,1954,Burgess Meredith,1249118151 +216849,1954,Burt Young,1249118056 +216849,1954,Carl Weathers,1249118016 +216849,1954,Sylvester Stallone,1249117993 +216849,1954,Talia Shire,1249118103 +216849,1954,Tony Burton,1249340111 +216849,2003,Gizmo,1254432857 +216849,2003,Joe Dante,1254432851 +216849,2004,Gizmo,1254849467 +216849,2004,Joe Dante,1254849427 +216849,2004,Zach Galligan,1254849445 +216849,2194,Andy Garcia,1238606573 +216849,2194,Brian De Palma,1238606619 +216849,2194,Kevin Costner,1238606562 +216849,2194,Robert De Niro,1238579306 +216849,2194,Sean Connery,1238606552 +216849,2268,Demi Moore,1260706966 +216849,2268,Jack Nicholson,1260706932 +216849,2268,Kevin Bacon,1260706955 +216849,2268,Kevin Pollak,1260707009 +216849,2268,Kiefer Sutherland,1260706936 +216849,2268,Rob Reiner,1260706925 +216849,2268,Tom Cruise,1260706929 +216849,2403,Brian Dennehy,1248302067 +216849,2403,Richard Crenna,1248302111 +216849,2403,Sylvester Stallone,1248302052 +216849,2409,Burgess Meredith,1249340047 +216849,2409,Burt Young,1249340049 +216849,2409,Carl Weathers,1249339935 +216849,2409,Sylvester Stallone,1249339904 +216849,2409,Talia Shire,1249339967 +216849,2409,Tony Burton,1249339980 +216849,2410,Burgess Meredith,1252867881 +216849,2410,Burt Young,1252867824 +216849,2410,Carl Weathers,1252867790 +216849,2410,Hulk Hogan,1252867852 +216849,2410,Mr. T,1252867807 +216849,2410,Sylvester Stallone,1252867792 +216849,2410,Talia Shire,1252867831 +216849,2410,Tony Burton,1252867842 +216849,2411,Burt Young,1254261396 +216849,2411,Carl Weathers,1254261408 +216849,2411,Dolph Lundgren,1254261282 +216849,2411,Sylvester Stallone,1254261278 +216849,2411,Talia Shire,1254261434 +216849,2411,Tony Burton,1254261425 +216849,2455,David Cronenberg,1248450334 +216849,2455,Geena Davis,1248450328 +216849,2455,Jeff Goldblum,1248450323 +216849,2456,Chris Walas,1248519670 +216849,2456,Daphne Zuniga,1248519678 +216849,2456,Eric Stoltz,1248519663 +216849,2456,John Getz,1248519691 +216849,2456,Lee Richardson,1248519687 +216849,2502,Jennifer Aniston,1270671488 +216849,2502,mike judge,1270671491 +216849,2644,Bela Lugosi,1254667059 +216849,2644,Dwight Frye,1254667142 +216849,2644,Tod Browning,1254667043 +216849,2648,Boris Karloff,1254849691 +216849,2648,Dwight Frye,1254849715 +216849,2648,James Whale,1254849616 +216849,2648,John Boles,1254849705 +216849,2683,Elizabeth Hurley,1240136226 +216849,2683,Heather Graham,1240136217 +216849,2683,Jay Roach,1240136244 +216849,2683,Mike Myers,1240136211 +216849,2683,Rob Lowe,1240136253 +216849,2683,Robert Wagner,1240136239 +216849,2683,Tim Robbins,1240136656 +216849,2867,Chris Sarandon,1248519861 +216849,2867,Roddy McDowall,1248519904 +216849,2867,Tom Holland,1248519809 +216849,2867,William Ragsdale,1248519912 +216849,2951,Clint Eastwood,1255882079 +216849,2951,Sergio Leone,1255882080 +216849,2959,Brad Pitt,1279783783 +216849,2959,David Fincher,1279783798 +216849,2959,Edward Norton,1279783787 +216849,3020,Joel Schumacher,1256162585 +216849,3020,Michael Douglas,1256162591 +216849,3020,Robert Duvall,1256162597 +216849,3174,Danny DeVito,1244893605 +216849,3174,Jim Carrey,1244893539 +216849,3174,Milos Forman,1244893561 +216849,3362,Al Pacino,1268950693 +216849,3362,John Cazale,1268950729 +216849,3362,Sidney Lumet,1268950703 +216849,3504,Faye Dunaway,1257089719 +216849,3504,Peter Finch,1257089671 +216849,3504,Robert Duvall,1257089676 +216849,3504,Sidney Lumet,1257089728 +216849,3535,Christian Bale,1249509558 +216849,3535,Jared Leto,1249509644 +216849,3535,Mary Harron,1249509593 +216849,3535,Reese Witherspoon,1249509630 +216849,3535,Willem Dafoe,1249509621 +216849,3578,Joaquin Phoenix,1239450317 +216849,3578,Ridley Scott,1239450304 +216849,3578,Russell Crowe,1239450295 +216849,3994,Bruce Willis,1247843259 +216849,3994,M. Night Shyamalan,1247843257 +216849,3994,Samuel L. Jackson,1247843267 +216849,4105,Bruce Campbell,1249494035 +216849,4105,Sam Raimi,1249494036 +216849,4344,Dominic Sena,1269036844 +216849,4344,Halle Berry,1269036818 +216849,4344,Hugh Jackman,1269036816 +216849,4367,Angelina Jolie,1260626173 +216849,4367,Daniel Craig,1260626197 +216849,4367,Jon Voight,1260626188 +216849,4367,Simon West,1260626178 +216849,4369,Michelle Rodriguez,1271793925 +216849,4369,Paul Walker,1271793940 +216849,4369,Rob Cohen,1271793934 +216849,4369,Vin Diesel,1271793919 +216849,4492,Dee Wallace-Stone,1254573835 +216849,4492,M. Emmet Walsh,1254573838 +216849,4492,Stephen Herek,1254573827 +216849,4546,Gene Bervoets,1246734883 +216849,4546,George Sluizer,1246734894 +216849,4865,Johnny Depp,1239224589 +216849,4896,Alan Rickman,1248558773 +216849,4896,Chris Columbus,1248553509 +216849,4896,Daniel Radcliffe,1248553521 +216849,4896,Emma Watson,1248553535 +216849,4896,Richard Harris,1248553583 +216849,4896,Rupert Grint,1248553549 +216849,5218,Carlos Saldanha,1268608142 +216849,5218,Chris Wedge,1268608167 +216849,5418,Clive Owen,1249596240 +216849,5418,Doug Liman,1249596299 +216849,5418,Franka Potente,1249596283 +216849,5418,Matt Damon,1249596231 +216849,5418,Robert Ludlum,1249596312 +216849,5574,Corey Yuen,1253059092 +216849,5574,François Berléand,1253059139 +216849,5574,Jason Statham,1253059081 +216849,5574,Matt Schulze,1253059172 +216849,5574,Qi Shu,1253059098 +216849,5816,alan rickman,1248615278 +216849,5816,Chris Columbus,1248615256 +216849,5816,Daniel Radcliffe,1248615273 +216849,5816,Emma Watson,1248615301 +216849,5816,John Cleese,1248615263 +216849,5816,Rupert Grint,1248615309 +216849,6188,Todd Phillips,1271285753 +216849,6188,Will Ferrell,1271285727 +216849,6383,Eva Mendes,1271801528 +216849,6383,John Singleton,1271801523 +216849,6383,Paul Walker,1271801533 +216849,6408,Jamie Uys,1248987407 +216849,7099,Hayao Miyazaki,1284422472 +216849,7099,Studio Ghibli,1284422474 +216849,7293,Adam Sandler,1240004837 +216849,7293,Drew Barrymore,1240004841 +216849,7293,Peter Segal,1240004855 +216849,7293,Rob Schneider,1240004847 +216849,8368,Alan Rickman,1248683545 +216849,8368,Alfonso Cuarón,1248683529 +216849,8368,Daniel Radcliffe,1248629389 +216849,8368,David Thewlis,1248629465 +216849,8368,Emma Thompson,1248629475 +216849,8368,Emma Watson,1248629380 +216849,8368,Gary Oldman,1248629392 +216849,8368,Rupert Grint,1248629408 +216849,8665,Franka Potente,1251639548 +216849,8665,Matt Damon,1251639517 +216849,8665,Paul Greengras,1251639536 +216849,8665,Robert Ludlum,1251639522 +216849,8957,Danny Glover,1270761430 +216849,8957,James Wan,1270761455 +216849,27611,Edward James Olmos,1241874759 +216849,27801,Prachya Pinkaew,1264211884 +216849,27801,Tony Jaa,1264211865 +216849,27869,Je-gyu Kang,1260310504 +216849,33166,Brendan Fraser,1239876940 +216849,33166,Matt Dillon,1239876948 +216849,33166,Paul Haggis,1239876920 +216849,33166,Sandra Bullock,1239876901 +216849,33615,Ben Stiller,1253550142 +216849,33615,Chris Rock,1253550178 +216849,33615,David Schwimmer,1253550165 +216849,33615,Eric Darnell,1253550152 +216849,33615,Sacha Baron Cohen,1253550139 +216849,33615,Tom McGrath,1253550157 +216849,37729,Helena Bonham Carter,1264291518 +216849,37729,Johnny Depp,1264291504 +216849,37729,Mike Johnson,1264291493 +216849,37729,Tim Burton,1264291479 +216849,39446,Darren Lynn Bousman,1271192091 +216849,40815,Alan Rickman,1248683675 +216849,40815,Daniel Radcliffe,1248683716 +216849,40815,Emma Watson,1248683686 +216849,40815,Gary Oldman,1248683670 +216849,40815,Mike Newell,1248683705 +216849,40815,Ralph Fiennes,1248683696 +216849,40815,Rupert Grint,1248683721 +216849,41566,Andrew Adamson,1280348330 +216849,45447,Audrey Tautou,1241906966 +216849,45447,Ian McKellen,1241906960 +216849,45447,Jean Reno,1241906958 +216849,45447,Ron Howard,1241906980 +216849,45447,Tom Hanks,1241906964 +216849,45499,Halle Berry,1246576477 +216849,45499,Hugh Jackman,1246576481 +216849,45517,John Lasseter,1260918254 +216849,45517,Owen Wilson,1260918239 +216849,46335,Japan,1271885396 +216849,46335,Justin Lin,1271885323 +216849,46335,Vin Diesel,1271885412 +216849,46347,Bruce Dickinson,1244663705 +216849,46347,Ronnie James Dio,1244663702 +216849,46347,Sam Dunn,1239390213 +216849,46347,Tom Araya,1239390207 +216849,46530,Brandon routh,1247754586 +216849,46530,Bryan Singer,1247754560 +216849,46530,Kate Bosworth,1247754572 +216849,46530,Kevin Spacey,1247754598 +216849,46723,Alejandro Gonzalez Inarritu,1279731542 +216849,46723,Brad Pitt,1279731548 +216849,46723,Gael García Bernal,1279731550 +216849,46972,Ben Stiller,1264362932 +216849,46972,Dick Van Dyke,1264362928 +216849,46972,Ricky Gervais,1264362944 +216849,46972,Shawn Levy,1264362939 +216849,47200,Amy Smart,1254050659 +216849,47200,Brian Taylor,1254050687 +216849,47200,Jason Statham,1254050652 +216849,47200,Mark Neveldine,1254050675 +216849,47610,Edward Norton,1249340208 +216849,47610,Jessica Biel,1249340261 +216849,47610,Neil Burger,1249340215 +216849,47610,Paul Giamatti,1249340224 +216849,47610,Rufus Sewell,1249340282 +216849,48394,Ariadna Gil,1248987980 +216849,48394,Doug Jones,1248987956 +216849,48394,Guillermo del Toro,1248987938 +216849,48394,Ivana Baquero,1248987950 +216849,48394,Maribel Verdú,1248987991 +216849,48394,Sergi López,1248987973 +216849,48877,Darren Lynn Bousman,1271339248 +216849,49396,Jack Black,1247754206 +216849,49396,Kyle Gass,1247754214 +216849,49396,Liam Lynch,1247754225 +216849,51925,Julian McMahon,1253059022 +216849,51925,Mennan Yapo,1253058950 +216849,51925,Nia Long,1253058980 +216849,51925,Sandra Bullock,1253058942 +216849,52281,Danny Trejo,1254955747 +216849,52281,Machete,1254955765 +216849,52281,Quentin Tarantino,1254955736 +216849,52281,Robert Rodriguez,1254955719 +216849,53550,Christian Bale,1249687731 +216849,53550,Jeremy Davies,1249687769 +216849,53550,Steve Zahn,1249687737 +216849,53550,Werner Herzog,1249687774 +216849,53972,bruce willis,1238579269 +216849,53972,Len Wiseman,1238579376 +216849,53996,Jon Voigt,1244842440 +216849,53996,Megan Fox,1244842359 +216849,53996,Michael Bay,1244842367 +216849,53996,Shia LaBeouf,1244842411 +216849,53996,Special Effects,1244842513 +216849,54001,Alan Rickman,1248683886 +216849,54001,Daniel Radcliffe,1248683876 +216849,54001,David Yates,1248683931 +216849,54001,Emma Watson,1248683873 +216849,54001,Gary Oldman,1248683923 +216849,54001,Ralph Fiennes,1248683869 +216849,54001,Rupert Grint,1248683911 +216849,54995,Bruce Willis,1254955622 +216849,54995,Josh Brolin,1254955652 +216849,54995,Robert Rodriguez,1254955634 +216849,54995,Rose McGowan,1254955656 +216849,55247,Emile Hirsch,1239920765 +216849,55247,Sean Penn,1239920643 +216849,55577,Darren Lynn Bousman,1271361028 +216849,55765,Cuba Gooding Jr.,1239136647 +216849,55765,Denzel Washington,1239136612 +216849,55765,Josh Brolin,1239136652 +216849,55765,Ridley Scott,1239136622 +216849,55765,Russell Crowe,1239136616 +216849,55805,Albert Finney,1280184915 +216849,55805,Ethan Hawke,1280184926 +216849,55805,Philip Seymour Hoffman,1280184922 +216849,55805,Sidney Lumet,1280184929 +216849,55820,coen brothers,1241877764 +216849,55820,Josh Brolin,1241877745 +216849,55820,Tommy Lee Jones,1241877701 +216849,55820,Woody Harrelson,1241877706 +216849,56782,Ciarán Hinds,1249943402 +216849,56782,Daniel Day-Lewis,1249943285 +216849,56782,Dillon Freasier,1249943342 +216849,56782,Paul Dano,1249943427 +216849,56782,Paul Thomas Anderson,1249943414 +216849,57368,Matt Reeves,1254603468 +216849,57528,Julie Benz,1246228076 +216849,57528,Sylvester Stallone,1246228050 +216849,57669,Brendan Gleeson,1254601038 +216849,57669,Colin Farrell,1254601025 +216849,57669,Martin McDonagh,1254601018 +216849,57669,Ralph Fiennes,1254601022 +216849,59014,Craig Mazin,1269466973 +216849,59014,Leslie Nielsen,1269466962 +216849,59315,Gwyneth Paltrow,1252955169 +216849,59315,Jeff Bridges,1252955186 +216849,59315,Jon Favreau,1252955144 +216849,59315,Robert Downey Jr.,1252955158 +216849,59315,Terrence Howard,1252955182 +216849,59369,Famke Janssen,1249907155 +216849,59369,Liam Neeson,1249906967 +216849,59369,Maggie Grace,1249907197 +216849,59369,Pierre Morel,1249906973 +216849,59501,Andrew Adamson,1280824886 +216849,59727,Bryan Bertino,1244981155 +216849,59727,Liv Tyler,1244981132 +216849,59727,Scott Speedman,1244981142 +216849,60040,Edward Norton,1246448855 +216849,60040,Liv Tyler,1246449152 +216849,60040,Louis Leterrier,1246448887 +216849,60040,Tim Roth,1246448861 +216849,60040,William Hurt,1246449155 +216849,60072,Angelina Jolie,1248864642 +216849,60072,James McAvoy,1248864651 +216849,60072,Morgan Freeman,1248864653 +216849,60072,Timur Bekmambetov,1248864663 +216849,60684,Billy Crudup,1246917453 +216849,60684,Carla Gugino,1246917510 +216849,60684,Jackie Earle Haley,1246917553 +216849,60684,Jeffrey Dean Morgan,1246917586 +216849,60684,Malin Akerman,1246917536 +216849,60684,Matthew Goode,1246917490 +216849,60684,Patrick Wilson,1246917670 +216849,60684,Zack Snyder,1246917400 +216849,60756,Adam McKay,1250115896 +216849,60756,John C. Reilly,1250115821 +216849,60756,Will Ferrell,1250115870 +216849,61024,David Gordon Green,1263738460 +216849,61024,James Franco,1263738452 +216849,61024,Seth Rogen,1263738450 +216849,61210,John Malkovich,1263946447 +216849,61210,Ron Perlman,1263946444 +216849,61210,Simon Hunter,1257109645 +216849,61240,Tomas Alfredson,1295094543 +216849,61248,Jason Statham,1252970083 +216849,61248,Joan Allen,1252970110 +216849,61248,Paul W.S. Anderson,1252970127 +216849,61248,Tyrese Gibson,1252970093 +216849,61323,Brad Pitt,1263857967 +216849,61323,Coen Brothers,1263857965 +216849,61323,Frances McDormand,1263857971 +216849,61323,George Clooney,1263857974 +216849,61323,John Malkovich,1263857969 +216849,61729,David Koepp,1252756339 +216849,61729,Greg Kinnear,1252756361 +216849,61729,Ricky Gervais,1252756352 +216849,61729,Téa Leoni,1252756372 +216849,62374,Leonardo DiCaprio,1251758151 +216849,62374,Mark Strong,1251758251 +216849,62374,Ridley Scott,1251758153 +216849,62374,Russell Crowe,1251758153 +216849,62439,Alec Baldwin,1264381150 +216849,62439,Dane Cook,1264381172 +216849,62439,Howard Deutch,1264381163 +216849,62439,Jason Biggs,1264381176 +216849,62439,Kate Hudson,1264381167 +216849,62849,Gerard Butler,1252843859 +216849,62849,Guy Ritchie,1252843860 +216849,62849,Mark Strong,1252843869 +216849,62849,Thandie Newton,1252843880 +216849,62849,Tom Wilkinson,1252843893 +216849,62999,Alec Baldwin,1253643546 +216849,62999,Ben Stiller,1253643508 +216849,62999,Chris Rock,1253643523 +216849,62999,David Schwimmer,1253643504 +216849,62999,Erik Darnell,1253643531 +216849,62999,Jada Pinkett Smith,1253643526 +216849,62999,Sacha Baron Cohen,1253643516 +216849,62999,Tom McGrath,1253643538 +216849,63113,Daniel Craig,1260626261 +216849,63113,Judi Dench,1260626285 +216849,63113,Marc Forster,1260626278 +216849,63436,David Hackle,1271368561 +216849,63479,Josh Zuckerman,1249928411 +216849,63479,Sean Anders,1249928419 +216849,63479,Seth Green,1249928428 +216849,63540,Andy Garcia,1269447291 +216849,63540,Drew Barrymore,1269447289 +216849,63540,Edward James Olmos,1269447283 +216849,63540,Jamie Lee Curtis,1269447286 +216849,63540,Raja Gosnell,1269447295 +216849,63826,Toby Wilkins,1265244855 +216849,63992,Ashley Greene,1252970264 +216849,63992,Billy Burke,1252970308 +216849,63992,Catherine Hardwicke,1252970220 +216849,63992,Kristen Stewart,1252970165 +216849,63992,Peter Facinelli,1252970642 +216849,63992,Robert Pattinson,1252970202 +216849,64032,Reese Witherspoon,1263945389 +216849,64032,Robert Duvall,1263945394 +216849,64032,Seth Gordon,1263945409 +216849,64032,Vince Vaughn,1263945392 +216849,64116,Anthony Leondis,1284670006 +216849,64116,John Cusack,1284670011 +216849,64116,Steve Buscemi,1284670017 +216849,64197,Michael Fassbender,1284478984 +216849,64197,Steve McQueen,1284478996 +216849,64499,Benicio Del Toro,1271456209 +216849,64499,Steven Soderbergh,1271456215 +216849,64501,Benicio Del Toro,1271547910 +216849,64501,Steven Soderbergh,1271547911 +216849,64622,David Kross,1277159961 +216849,64622,Kate Winslet,1277159901 +216849,64622,Ralph Fiennes,1277159920 +216849,64622,Stephen Daldry,1277159918 +216849,64716,Gabriele Muccino,1253899768 +216849,64716,Rosario Dawson,1253899793 +216849,64716,Will Smith,1253899762 +216849,64716,Woody Harrelson,1253899773 +216849,64839,Darren Aronofsky,1246314532 +216849,64839,Evan Rachel Wood,1246314727 +216849,64839,Marisa Tomei,1246314677 +216849,64839,Mickey Rourke,1246314553 +216849,64839,Nudity (Topless),1246314618 +216849,64957,Brad Pitt,1248128256 +216849,64957,Cate Blanchett,1248128274 +216849,64957,David Fincher,1248128260 +216849,64969,Bradley Cooper,1244663630 +216849,64969,Jim carrey,1244663546 +216849,64969,Peyton Reed,1244663575 +216849,64969,Zooey Deschanel,1244663559 +216849,64983,Bryan Singer,1260746591 +216849,64983,Tom Cruise,1260746578 +216849,65130,Kate Winslet,1268783283 +216849,65130,Leonardo DiCaprio,1268783275 +216849,65130,Sam Mendes,1268783279 +216849,65142,Bruno Vanden Broucke,1253550049 +216849,65142,Erik Van Looy,1253550069 +216849,65142,Filip Peeters,1253550028 +216849,65142,Koen De Bouw,1253550021 +216849,65142,Koen De Graeve,1260055619 +216849,65142,Matthias Schoenaerts,1253550037 +216849,65142,Veerle Baetens,1253550065 +216849,65514,Donnie Yen,1260317516 +216849,65514,Wilson Yip,1260317505 +216849,65802,Kevin James,1264550570 +216849,65802,Steve Carr,1264550563 +216849,66509,Adam Sandler,1271420634 +216849,66509,Judd Apatow,1271420630 +216849,66509,Seth Rogen,1271420637 +216849,66783,Marcus Nispel,1257030553 +216849,67087,John Hamburg,1261351289 +216849,67186,Peter Cornwell,1257075336 +216849,67252,Tony Jaa,1264294789 +216849,67408,Conrad Vernon,1254077813 +216849,67408,Kiefer Sutherland,1254077668 +216849,67408,Reese Witherspoon,1254077668 +216849,67408,Rob Letterman,1254077821 +216849,67408,Seth Rogen,1254077668 +216849,67665,heavy metal,1271078378 +216849,67665,Robb Reiner,1271078363 +216849,67665,Sacha Gervasi,1271078353 +216849,67665,"Steve ""Lips"" Kudlow",1271078343 +216849,67867,James Wong,1260310384 +216849,67999,Marty Friedman,1244663762 +216849,67999,Max Cavalera,1244663771 +216849,67999,Sam Dunn,1244663753 +216849,67999,Tom Araya,1244663780 +216849,68028,Brian Goodman,1277222313 +216849,68028,Ethan Hawke,1277222310 +216849,68073,Philip Seymour Hoffman,1280071701 +216849,68073,Richard Curtis,1280071712 +216849,68157,Brad Pitt,1255212599 +216849,68157,Christoph Waltz,1255212698 +216849,68157,Diane Kruger,1255212695 +216849,68157,Eli Roth,1255212700 +216849,68157,Mélanie Laurent,1255212725 +216849,68157,Quentin Tarantino,1255212596 +216849,68237,Duncan Jones,1265244804 +216849,68237,Sam Rockwell,1265244807 +216849,68319,Gavin Hood,1253747184 +216849,68319,Hugh Jackman,1253747117 +216849,68319,Liev Schreiber,1253747143 +216849,68358,Chris Pine,1254252493 +216849,68358,J.J. Abrams,1254252478 +216849,68358,Simon Pegg,1254252500 +216849,68358,Zachary Quinto,1254252484 +216849,68444,Sean McGinly,1277151824 +216849,68749,Jennifer Aniston,1271198104 +216849,68749,Stephen Belber,1271198097 +216849,68749,Steve Zahn,1271198106 +216849,68749,Woody Harrelson,1271198071 +216849,68791,Christian Bale,1251320114 +216849,68791,McG,1251320162 +216849,68791,Moon Bloodgood,1251320190 +216849,68791,Sam Worthington,1251320126 +216849,68793,Amy Adams,1264362975 +216849,68793,Ben Stiller,1264362982 +216849,68793,Ricky Gervais,1264362976 +216849,68793,Shawn Levy,1264362986 +216849,68952,Alison Lohman,1249421785 +216849,68952,David Paymer,1249421817 +216849,68952,Justin Long,1249421802 +216849,68952,Lorna Raver,1249421809 +216849,68952,Reggie Lee,1249421869 +216849,68952,Sam Raimi,1249421888 +216849,68954,Pete Docter,1261079157 +216849,68954,Pixar,1261079163 +216849,68965,Damien Wayans,1271807700 +216849,69134,Charlotte Gainsbourg,1253458844 +216849,69134,Lars von Trier,1253458852 +216849,69134,Willem Dafoe,1253458836 +216849,69278,Brad Silberling,1265244955 +216849,69278,Will Ferrell,1265244960 +216849,69406,Anne Fletcher,1255529911 +216849,69436,Harold Ramis,1253660767 +216849,69436,Jack Black,1253660757 +216849,69436,Michael Cera,1253660784 +216849,69436,Oliver Platt,1253660776 +216849,69481,Kathryn Bigelow,1255728328 +216849,69526,Megan Fox,1248222922 +216849,69526,Michael Bay,1248222944 +216849,69526,Shia LaBeouf,1248222919 +216849,69640,Christian Bale,1263601382 +216849,69640,Johnny Depp,1263601369 +216849,69640,Michael Mann,1263601373 +216849,69712,Abigail Breslin,1261437798 +216849,69712,Alec Baldwin,1261437818 +216849,69712,Cameron Diaz,1261437792 +216849,69712,Nick Cassavetes,1261437773 +216849,69712,Sofia Vassilieva,1261437844 +216849,69784,Larry Charles,1251639461 +216849,69784,Sacha Baron Cohen,1251639453 +216849,69830,Bruce Dickinson,1248260840 +216849,69830,Sam Dunn,1248260854 +216849,69830,Steve Harris,1248260848 +216849,69844,Alan Rickman,1248904305 +216849,69844,Daniel Radcliffe,1248904309 +216849,69844,David Yates,1248904476 +216849,69844,Emma Watson,1248904314 +216849,69844,Michael Gambon,1248904500 +216849,69844,Rupert Grint,1248904451 +216849,70159,Jaume Collet-Serra,1257030513 +216849,70282,John Schultz,1257205695 +216849,70641,Trevor Moore,1271622246 +216849,70641,Zach Cregger,1271622236 +216849,71129,Lauren Montgomery,1255786422 +216849,71248,Mike Judge,1261184999 +216849,71254,Gerard Butler,1259499885 +216849,71254,Mark Neveldine,1259499912 +216849,71254,Michael C. Hall,1259499900 +216849,71264,Chris Miller,1263773024 +216849,71264,Phill Lord,1263773020 +216849,71429,Alexie Gilmore,1261269057 +216849,71429,Bobcat Goldthwait,1261269048 +216849,71429,Robin Williams,1261269062 +216849,71500,Michael Dougherty,1255905387 +216849,71670,Bradley Cooper,1271599126 +216849,71670,Phil Traill,1271599130 +216849,71670,Sandra Bullock,1271599124 +216849,71821,Rebel Rodriguez,1263934297 +216849,71821,William H. Macy,1263934314 +216849,71867,Felix Van Groeningen,1256549585 +216849,71867,Koen De Graeve,1256549591 +216849,71899,Adam Elliot,1284536209 +216849,71899,Philip Seymour Hoffman,1284536196 +216849,71910,Scott Mann,1263554495 +216849,73017,Guy Ritchie,1283952610 +216849,73017,Jude Law,1283952614 +216849,73017,Mark Strong,1283952631 +216849,73017,Rachel McAdams,1283952623 +216849,73017,Robert Downey Jr.,1283952617 +216849,73321,Albert Hughes,1277334293 +216849,73321,Allen Hughes,1277334295 +216849,73321,Denzel Washington,1277334288 +216849,73321,Gary Oldman,1277334290 +216849,73718,Liam Neeson,1263601908 +216849,73718,Richard Eyre,1263601919 +216849,73929,Scott Stewart,1290865851 +216849,79132,Christopher Nolan,1282389382 +216849,79132,Leonardo DiCaprio,1282389358 +216849,79132,Michael Caine,1282389396 +216849,79293,Phillip Noyce,1290865882 +216849,81834,Alan Rickman,1290110256 +216849,81834,Daniel Radcliffe,1290110258 +216849,81834,David Yates,1290110268 +216849,81834,Emma Watson,1290110261 +216849,81834,Rupert Grint,1290110273 +216879,260,sci-fi,1442849868 +216879,260,space adventure,1442849860 +216880,47,disturbing,1305691365 +216880,47,philosophical,1305691314 +216880,47,powerful ending,1305691344 +216880,47,psychology,1305691300 +216880,47,twist ending,1305691303 +216880,724,1990s,1278635664 +216880,724,magic,1278635652 +216880,724,wicca,1278635659 +216880,1221,family,1301258624 +216880,1221,mafia,1301258616 +216880,1221,organized crime,1301258597 +216880,1258,Stanley Kubrick,1277956187 +216880,1258,visually appealing,1277956163 +216880,1274,anime,1305690658 +216880,1274,cyberpunk,1305690909 +216880,1274,future,1305690675 +216880,1274,science fiction,1305690916 +216880,1274,stylized,1305690667 +216880,1682,paranoia,1303348797 +216880,1968,1980's cult,1279675705 +216880,1968,1980s,1279675718 +216880,1968,80s,1279675711 +216880,1968,coming-of-age,1279675597 +216880,1968,great music,1279675749 +216880,1968,high school,1279675650 +216880,1968,John Hughes,1279675755 +216880,3210,high school,1277954337 +216880,3210,Jennifer Jason Leigh,1277954297 +216880,3210,Nudity (Full Frontal),1277954421 +216880,3677,70mm,1303348494 +216880,3677,no dialogue,1303348509 +216880,3677,photography,1299809773 +216880,3949,addiction,1277953508 +216880,3949,drugs,1277953517 +216880,3949,heroin,1277953527 +216880,4878,high school,1277953582 +216880,4878,mental illness,1277953575 +216880,4878,psychology,1277953596 +216880,4878,time travel,1277953590 +216880,5617,black comedy,1277954583 +216880,5617,erotic,1277954583 +216880,5617,sex,1277954609 +216880,5617,spanking is good,1277954611 +216880,6016,drugs,1278635523 +216880,7445,R,1279675851 +216880,7445,revenge,1279675827 +216880,7445,Torture,1279675834 +216880,27156,anime,1299807444 +216880,27156,Hideaki Anno,1299807433 +216880,27156,mental illness,1299807419 +216880,27156,psychology,1299807423 +216880,27904,animated,1277953624 +216880,27904,drugs,1277953619 +216880,27904,Philip K. Dick,1277953614 +216880,30810,comedy,1277955639 +216880,30810,dark,1277955672 +216880,30810,weird,1277955659 +216880,30810,Wes Anderson,1277955622 +216880,30810,whimsical,1277955649 +216880,40278,History,1279676127 +216880,40278,iraq,1279676021 +216880,40278,Jake Gyllenhaal,1279676133 +216880,40278,Jamie Foxx,1279676049 +216880,40278,Middle East,1279676043 +216880,40278,war,1279676036 +216880,40574,hip hop,1279676110 +216880,42723,disturbing,1279675431 +216880,42723,Nudity (Topless),1279675423 +216880,44665,organized crime,1278635688 +216880,48516,gangster,1279675358 +216880,48516,Jack Nicholson,1279675349 +216880,48516,Martin Scorsese,1279675337 +216880,48516,organized crime,1277955577 +216880,51662,stylized,1299807546 +216880,54503,comedy,1277954535 +216880,54503,high school,1277954526 +216880,54503,nerds,1277954522 +216880,54503,virginity,1277954517 +216880,55805,Nudity (Topless),1279676262 +216880,55805,Philip Seymour Hoffman,1279676267 +216880,55805,R,1279676254 +216880,56367,feel-good,1279675486 +216880,56367,high school,1279675536 +216880,56367,indie,1279675491 +216880,56367,pregnancy,1279675475 +216880,58559,psychology,1279676394 +216880,59369,father daughter relationship,1279675147 +216880,60293,coming of age,1305865305 +216880,60293,dealing,1305865300 +216880,60293,depression,1305865303 +216880,60293,drugs,1305865266 +216880,60293,hip-hop,1305865277 +216880,60293,psychiatry,1305865282 +216880,60293,sex,1305865287 +216880,60293,weed,1305865272 +216880,63992,high school,1279675178 +216880,63992,romance,1277954927 +216880,65230,Family Drama,1277953665 +216880,65230,pregnancy,1277953676 +216880,67255,computers,1300559678 +216880,67255,hacker,1300559694 +216880,67255,hackers,1300559686 +216880,68157,Adolf Hitler,1279676201 +216880,68157,black comedy,1279676192 +216880,68157,Quentin Tarantino,1279676148 +216880,68157,tarantino,1279676180 +216880,68157,tense,1279676172 +216880,68157,visually appealing,1279676157 +216880,68324,Nudity (Full Frontal),1301259994 +216880,68324,pornstars,1301259941 +216880,68324,prostitution,1301259934 +216880,68324,sex,1301259918 +216880,69122,absurd,1305677819 +216880,69122,drugs,1305677746 +216880,69122,funny,1305677772 +216880,69122,Nudity (Topless),1305677722 +216880,69122,strippers,1305677730 +216880,69481,addiction,1299809485 +216880,70286,ridiculous,1278635587 +216880,70286,sci-fi,1278635572 +216880,70286,social commentary,1278635564 +216880,72169,Documentary,1303348460 +216880,73266,Michael Cera,1277955209 +216880,73266,Ray Liotta,1279675267 +216880,73266,Steve Buscemi,1279675261 +216880,73266,teenagers,1279675253 +216880,74458,asylum,1277954673 +216880,74458,insanity,1277954659 +216880,74458,Martin Scorsese,1277954648 +216880,74458,psychological,1277954669 +216880,75985,biomedical ethics,1279676410 +216880,75985,evil corporation,1279676423 +216880,76251,high school,1279675917 +216880,76251,weapons,1279675926 +216880,77307,parenthood,1301258134 +216880,77307,sex,1301258145 +216880,79185,Tom Cruise,1299809574 +216880,79185,unrealistic,1299809594 +216880,79695,unrealistic,1300559848 +216880,79702,innovative,1299809716 +216880,79702,video games,1299809679 +216880,80463,computers,1300132170 +216880,80463,nerds,1300132189 +216880,80463,software developers,1300132197 +216899,147,Leonardo DiCaprio,1286412793 +216899,147,Mark Wahlberg,1286412804 +216899,377,Dennis Hopper,1286412687 +216899,589,robots,1286412377 +216899,589,sci-fi,1286412385 +216899,1061,Brad Pitt,1286413231 +216899,3535,Christian Bale,1286413613 +216899,4351,Keanu Reeves,1286412739 +216899,4351,Patrick Swayze,1286412725 +216899,25999,Marlon Brando,1286413492 +216906,17,British,1146874454 +216906,17,Jane Austen,1146874452 +216906,28,Jane Austen,1146989898 +216906,176,behind-the-scenes,1146745758 +216906,176,film-making,1146745760 +216906,176,meta-indie,1146745756 +216906,247,homo-erotic,1146749867 +216906,299,gay,1146874407 +216906,299,religion,1146874422 +216906,342,Australian,1146749917 +216906,345,gay,1146745105 +216906,345,road movie,1146745107 +216906,372,Winona,1146748178 +216906,501,british,1146747643 +216906,501,edgy,1146747643 +216906,501,Mike Leigh,1146747680 +216906,501,violence,1146747643 +216906,581,gay,1146749700 +216906,593,serial killer,1146874446 +216906,983,gay,1146749895 +216906,983,UK,1146749895 +216906,1041,Mike Leigh,1146747657 +216906,1046,gay,1146748692 +216906,1046,london,1146748694 +216906,1094,Transgendered,1146749788 +216906,1208,Francis Ford Copolla,1146875302 +216906,1208,war,1146875300 +216906,1235,classic,1146989302 +216906,1235,suicide,1146989332 +216906,1251,dreams,1146747960 +216906,1251,fedelity,1146747973 +216906,1251,Federico Fellini,1146747955 +216906,1251,surreal,1146747957 +216906,1296,E. M. Forster,1146989795 +216906,1419,70s,1146746607 +216906,1527,sci-fi,1146874038 +216906,1653,sci-fi,1146749828 +216906,1730,scorcese,1146745266 +216906,1952,sexuality,1146989390 +216906,2021,sci-fi,1146874022 +216906,2022,edgy,1146747505 +216906,2022,scorsese,1146747493 +216906,2071,AIDs,1146745112 +216906,2076,sexuality,1146989770 +216906,2284,foreign,1146745234 +216906,2291,fantasy,1146749811 +216906,2291,Johnny Depp,1146749806 +216906,2291,Tim Burton,1146749804 +216906,2329,Edward Norton,1146746955 +216906,2329,neo Nazi,1146746956 +216906,2329,violence,1146746965 +216906,2437,gay,1146745918 +216906,2810,anime,1146875085 +216906,2908,gay,1146749694 +216906,2908,oppression,1146749694 +216906,2959,edgy,1146746906 +216906,2959,mental illness,1146746906 +216906,2959,violence,1146746908 +216906,3163,Mike Leigh,1146747694 +216906,3186,70s,1146746824 +216906,3186,Jolie,1146746861 +216906,3186,mental illness,1146746824 +216906,3186,suicide,1146746824 +216906,3186,Winona,1146746861 +216906,3224,foreign,1146745444 +216906,3424,racism,1146750168 +216906,3547,gay,1146989581 +216906,3677,non-verbal,1146989472 +216906,3730,survellience,1146749705 +216906,3788,artistic,1146749495 +216906,3788,edgy,1146749495 +216906,3788,london,1146749495 +216906,3910,Lars von Trier,1146749795 +216906,3996,Ang Lee,1146745515 +216906,3996,martial arts,1146745517 +216906,4017,artist mind,1146748870 +216906,4020,blanchett,1146873610 +216906,4226,memory,1146749754 +216906,4226,nonlinear,1146749752 +216906,4359,adultery,1146745947 +216906,4359,Marilyn Monroe,1146745943 +216906,4763,glbt,1146745079 +216906,4763,transgendered,1146745084 +216906,4848,art house,1146747911 +216906,4848,edgy,1146747928 +216906,4848,lynch,1146747927 +216906,4874,sci-fi,1146873993 +216906,4878,edgy,1146749721 +216906,4878,mental illness,1146749721 +216906,4878,psychology,1146749712 +216906,4878,time travel,1146749709 +216906,4880,family,1146990337 +216906,5304,Neo-realism,1146750041 +216906,5367,gay,1146745882 +216906,5367,london,1146745885 +216906,5618,anime,1146749763 +216906,5618,Miyazaki,1146749766 +216906,5679,japanese horror,1146873474 +216906,5679,our naomi,1146873520 +216906,5690,anime,1146745500 +216906,5690,Miyazaki,1146745502 +216906,5788,Mike Leigh,1146747671 +216906,5992,depression,1146746776 +216906,5992,gay,1146746776 +216906,5992,mental illness,1146746776 +216906,5992,suicide,1146746776 +216906,6323,psychology,1146873260 +216906,6350,anime,1146745544 +216906,6350,Miyazaki,1146745541 +216906,6380,child abuse,1146873549 +216906,6591,religion,1146747730 +216906,6591,repression,1146747738 +216906,6683,foreign,1146745208 +216906,6683,lesbian,1146745159 +216906,6711,Japan,1146746698 +216906,6711,scorsese,1146749741 +216906,6890,adolescence,1146990068 +216906,6890,violence in america,1146990066 +216906,6952,psychology,1146990185 +216906,7023,gay,1146745905 +216906,7099,anime,1146745913 +216906,7099,Miyazaki,1146745916 +216906,7151,scarlett johansson,1146990097 +216906,7371,Lars von Trier,1146990052 +216906,7438,Quentin Tarantino,1146745597 +216906,7976,edgy,1146744733 +216906,8062,gay,1146874674 +216906,8062,religous,1146874698 +216906,8062,serial killer,1146874698 +216906,8365,age issues,1146988960 +216906,8365,sexuality,1146988960 +216906,8477,narrated,1146749316 +216906,8645,columbia,1146744774 +216906,8950,memory,1146875253 +216906,8950,psychology,1146875251 +216906,8966,sex,1146750235 +216906,8973,Almodóvar,1146750082 +216906,8973,Catholicism,1146750056 +216906,8973,gay,1146750073 +216906,26599,Almodovar,1146989876 +216906,26599,Pedro Almodóvar,1146989872 +216906,26662,anime,1146745531 +216906,26662,Miyazaki,1146745528 +216906,26776,Miyazaki,1146745565 +216906,27834,fatherhood,1146990162 +216906,30820,child abuse,1146989156 +216906,30820,mental health,1146989180 +216906,30820,sexuality,1146989180 +216906,31410,Adolf Hitler,1146745480 +216906,31410,foreign,1146745492 +216906,31658,anime,1146745557 +216906,31658,Miyazaki,1146745560 +216906,32025,glbt,1146745126 +216906,33004,sci-fi,1146873954 +216906,33171,edgy,1146746234 +216906,33171,sex addiction,1146746234 +216906,33358,artist mind,1146872566 +216906,33358,desert,1146872566 +216906,33358,mental health,1146872566 +216906,34542,documentary,1146750247 +216906,37733,comic book,1146746925 +216906,38038,Aardman,1146748543 +216906,39183,gay,1146745097 +216906,39183,Tragedy,1146745092 +216906,40815,magic,1146748729 +216906,41569,our naomi,1146873417 +216906,41569,Peter Jackson,1146873405 +216906,41721,Australian,1146745020 +216906,41721,Death,1146745018 +216906,43333,foreign,1146816808 +216924,260,epic battle,1444501097 +216924,260,sci-fi,1444501065 +216924,260,space adventure,1444501078 +216924,1197,fantasy,1444501700 +216924,1197,Quirky,1444501702 +216924,1197,sword fight,1444501704 +216924,45880,royalty,1444501590 +216924,54259,fairy tale romance,1444502902 +216924,54259,magic,1444502891 +216924,54259,whimsical,1444502884 +216924,54259,witches,1444502896 +216924,130073,fairy tale,1444502949 +216933,260,classic,1442222632 +216933,260,nostalgic,1442222657 +216934,356,life positive,1291771526 +216961,216,high school,1392411161 +216961,318,Morgan Freeman,1391725748 +216961,318,revenge,1391725751 +216961,698,DVD-R,1394722608 +216961,904,Alfred Hitchcock,1391934217 +216961,912,cool,1391934440 +216961,922,classic,1391934213 +216961,1193,psychology,1391934212 +216961,44555,disturbing,1391934208 +216961,44555,Oscar (Best Foreign Language Film),1391934203 +216961,58559,psychology,1391934617 +216961,58559,serial killer,1391934621 +216961,102753,Ali Mosaffa,1391934183 +216961,104841,space,1383770541 +216961,104841,suspense,1383770630 +216961,106438,adapted from a human interest book,1391933874 +216961,106438,atheism,1391933873 +216961,106438,Judy Dench,1391933876 +216961,106487,Jennifer Lawrence,1391725436 +216961,106489,Peter Jackson,1392411755 +216961,106489,too much action,1392411749 +216961,107042,cool,1394399238 +216961,107042,funny,1394399227 +216969,293,disturbing,1351296756 +216969,293,stylized,1351296743 +216969,300,1950s,1367182750 +216969,364,visuals,1352317783 +216969,441,great soundtrack,1377449542 +216969,441,hangout,1377449506 +216969,441,improvised,1380635373 +216969,441,irreverent,1377449579 +216969,441,one day,1377449560 +216969,441,richard linklater,1377449500 +216969,483,Criterion,1393783025 +216969,483,Period piece,1393783044 +216969,902,Audrey Hepburn,1378306775 +216969,923,cinematography,1383586071 +216969,923,Rosebud,1383586117 +216969,1089,Michael Madsen,1354625945 +216969,1089,short,1354625989 +216969,1120,drawn out,1379093117 +216969,1162,arthur lowe,1405910996 +216969,1162,Peter O'Toole,1405910987 +216969,1225,accessible,1377449810 +216969,1225,period,1377449740 +216969,1259,will wheaton,1350994186 +216969,1284,Bogie and Bacall,1377449672 +216969,1284,noir,1377449626 +216969,1689,farcical,1355946086 +216969,1689,mistaken identity,1355946043 +216969,1952,naivety,1382788556 +216969,1952,score,1382788573 +216969,1952,soundtrack,1382788586 +216969,1968,sentimental,1352077684 +216969,2141,Don Bluth,1395094926 +216969,2248,good soundtrack,1357250512 +216969,2248,slow paced,1357250481 +216969,2730,Period piece,1387844770 +216969,3089,realism,1400957573 +216969,3328,Jim Jarmusch,1424481841 +216969,3483,funny,1394056361 +216969,3483,kenneth branagh,1394056368 +216969,3483,kevin kline,1394056376 +216969,3483,score,1394056386 +216969,3741,Terrence Malick,1363889748 +216969,3769,character contrast,1340363494 +216969,4226,meandering,1346715105 +216969,4329,Howard Hawks,1377632251 +216969,4329,John Wayne,1377632240 +216969,4329,ricky nelson,1377632227 +216969,4329,walter brennan,1377632284 +216969,4329,western,1377632257 +216969,4848,ending,1341127355 +216969,4886,great concept,1352398185 +216969,5282,lazy ending,1340363628 +216969,5418,fast paced,1368379418 +216969,5577,cynical,1366202860 +216969,5590,pimps,1379249722 +216969,5590,richard pryor,1379249711 +216969,5673,awkward,1434056174 +216969,5673,Paul Thomas Anderson,1434056195 +216969,5903,unrealistic action,1351297217 +216969,6001,not as funny as expected,1361314481 +216969,6711,funny,1354626202 +216969,6867,character driven,1393783185 +216969,6873,Coen Brothers,1377632604 +216969,6932,news media,1430575656 +216969,6932,office,1430575715 +216969,7022,gory,1377844312 +216969,7147,fairytale-esque,1348953305 +216969,7419,kafkaesque,1430705281 +216969,7419,New York City,1430705232 +216969,7419,surreal,1430705237 +216969,7419,wacky,1430705262 +216969,8014,spiritual,1400369232 +216969,30810,dry humor,1341305830 +216969,30810,willem dafoe,1341305853 +216969,37741,thought provoking,1351466682 +216969,44199,anti-climax,1352165029 +216969,44199,anticlimax,1352165067 +216969,44555,character development,1385659351 +216969,46578,coming of age,1382907503 +216969,54745,sympathetic characters,1359227189 +216969,59387,Catinca Untaru,1350492665 +216969,59387,cold,1350492782 +216969,59387,emotionless in parts,1350670197 +216969,61037,cinematography,1407244236 +216969,68073,ending,1369177333 +216969,68073,Richard Curtis,1369348162 +216969,71466,satisfying ending,1346608712 +216969,72360,funny,1427415884 +216969,72360,quirky,1427415884 +216969,72360,short,1427415884 +216969,72998,shallow,1310388745 +216969,79242,observant,1360610719 +216969,80693,subtle,1366070999 +216969,80906,too long,1351535531 +216969,80969,Poignant,1354626145 +216969,80990,arthur lowe,1364410120 +216969,80990,elliot gould,1364410106 +216969,80990,fast paced,1364410226 +216969,82461,predictable,1310388627 +216969,83134,parody,1434056102 +216969,83134,satire,1434056130 +216969,84152,sympathetic protagonist,1357950594 +216969,85414,convoluted,1363738300 +216969,86882,fantasy,1368380512 +216969,86898,jessica chastain,1374340691 +216969,87192,bad acting,1340705781 +216969,87192,no character depth,1340705814 +216969,88163,slick,1352938812 +216969,88163,understated,1352938866 +216969,89753,convoluted,1364895150 +216969,89804,unlikeable characters,1350290546 +216969,89804,well written,1350290524 +216969,91500,absorbing,1337973265 +216969,91535,editing,1349648372 +216969,91535,fast paced,1349648389 +216969,91535,Rehash Sequel,1349648256 +216969,92154,devil,1384551880 +216969,92259,characters,1388813199 +216969,92259,dustin hoffman lookalike,1388813091 +216969,92259,hilarious,1388813023 +216969,92439,aimless,1369910417 +216969,92439,coming of age,1369910234 +216969,92439,depression,1369910158 +216969,92439,easy to watch,1369910286 +216969,92439,Emma Roberts,1369910143 +216969,92439,Freddie Highmore,1369910311 +216969,93270,no plot,1359922567 +216969,93363,fantasy,1353106052 +216969,93363,simplistic and enjoyable,1353106024 +216969,94777,easy to follow,1350582814 +216969,94780,stale plot,1347309122 +216969,95088,feel good,1350317725 +216969,95088,Jake Johnson,1350317738 +216969,95088,touching,1350317874 +216969,95088,Understated charm,1350317777 +216969,95167,charming,1351785750 +216969,95167,symbolism,1351785714 +216969,95167,visuals,1351785725 +216969,96079,atmospheric,1357450524 +216969,96610,blunderbuss,1352664097 +216969,96610,complicated plot,1352664235 +216969,96821,character development,1355659926 +216969,96821,Ezra Miller,1355659838 +216969,97921,understandable characters,1358203028 +216969,97938,differences to book,1358699826 +216969,97938,narrator,1358699881 +216969,98243,creative plot,1357590972 +216969,99149,strained,1362856425 +216969,99728,corny narration,1358195430 +216969,99728,no character depth,1358195465 +216969,99728,terrible script,1358195407 +216969,101112,feigned innocence,1363630327 +216969,101895,historical,1367837396 +216969,101895,soundtrack,1367837553 +216969,102194,coming of age,1388794401 +216969,102194,Southern US,1388794239 +216969,102684,dull,1374666923 +216969,102684,laconic,1374666795 +216969,102684,Nicolas Winding Refn,1374666856 +216969,102684,sophomoric,1374666875 +216969,102993,summer,1382228952 +216969,103042,Henry Cavill,1373826413 +216969,103137,social commentary,1382788505 +216969,103539,coming of age,1387835570 +216969,103539,complex,1387836296 +216969,103539,James Ponsoldt,1387835557 +216969,103539,nuanced,1387835658 +216969,103539,realistic,1387835783 +216969,103980,melodrama,1396982635 +216969,104374,Bill Nighy,1388762695 +216969,104374,charming,1388762738 +216969,105197,Bruce Dern,1392056590 +216969,105197,funny,1392056554 +216969,105197,poignant,1392056576 +216969,105355,slow,1393443027 +216969,106487,supporting cast,1386184065 +216969,106489,dragon,1388380222 +216969,106489,innovative,1388380302 +216969,106489,self indulgent,1388380260 +216969,106766,atmospheric,1390249782 +216969,106766,cinematography,1390249837 +216969,106766,Coen Brothers,1390249796 +216969,106766,funny,1390249821 +216969,106766,Oscar Isaac,1390249808 +216969,106766,period piece,1390249854 +216969,106782,intense,1390250029 +216969,106782,provocative,1390250061 +216969,106920,expository dialogue,1390342382 +216969,108932,Liam Neeson,1399125732 +216969,109848,little dialogue,1405432839 +216969,110553,badly written,1405991280 +216969,111759,sci-fi,1415389270 +216969,111759,Tom Cruise,1415389260 +216969,112290,episodic,1410481366 +216969,121419,carmen electra,1432778482 +216969,121419,crude,1432778482 +216969,121419,sex,1432778482 +216969,134853,coming of age,1443995395 +216969,140715,cliché,1441925382 +216969,140715,music industry,1441925418 +217016,260,carrie fisher,1424156567 +217016,260,harrison ford,1424156567 +217016,260,mark hamill,1424156567 +217016,318,friendship,1422227730 +217016,318,jail,1422227730 +217016,318,morgan freeman,1422227730 +217016,356,friendship,1420078468 +217016,356,romance,1420078468 +217016,356,vietnam,1420078468 +217016,103539,high school,1424313500 +217016,103539,romance,1424313509 +217018,2028,adult diaper commercial,1155864564 +217030,110,drama,1166609468 +217030,2959,violence,1166609245 +217055,299,homosexuality,1189526534 +217056,1136,Silly,1138399184 +217056,3114,Pixar,1138399160 +217056,5445,Cruise as alpha-male,1138399157 +217081,19,Jim Carrey,1352746455 +217081,4963,Brad Pitt,1352746449 +217143,1,animated,1188331015 +217143,1,cgi,1188330757 +217143,1,comedy,1188331010 +217143,261,classic book,1188256378 +217143,356,bittersweet,1188333000 +217143,356,classic,1188333013 +217143,356,Oscar (Best Directing),1188333005 +217143,480,author:Michael Crichton,1188332700 +217143,480,Oscar (Best Effects - Visual Effects),1188332695 +217143,480,thriller,1188332731 +217143,858,classic,1188332915 +217143,858,FALL FROM POWER,1188332924 +217143,858,old school mob,1188332919 +217143,953,Best Performance: James Stewart as George Bailey,1188332780 +217143,953,uplifting,1188332788 +217143,953,Xmas theme,1188332774 +217143,954,classic,1188332609 +217143,954,Heartwarming,1188332605 +217143,954,politics,1188332616 +217143,1196,classic,1188331130 +217143,1196,science fiction,1188331119 +217143,1196,series,1188331115 +217143,1197,comedy,1188331150 +217143,1197,fairy tale,1188331140 +217143,1197,romance,1188332229 +217143,1610,cold war,1188332838 +217143,1610,MIND GAMES,1188332847 +217143,1610,submarine,1188332843 +217143,1682,cerebral,1188330973 +217143,1682,original plot,1188330998 +217143,1682,poignant,1188330346 +217143,2023,mafia,1188256365 +217143,2424,classic romantic comedy,1188256382 +217143,2947,bond,1188256370 +217143,3114,funny,1188333129 +217143,3114,Oscar Nominee,1188333084 +217143,3114,Pixar,1188333089 +217143,6539,Johnny Depp,1188332238 +217143,6539,Orlando Bloom,1188332258 +217143,6539,swashbuckling,1188332508 +217143,7438,bloody,1188256374 +217143,8530,slow pacing,1191118438 +217143,44191,comic book,1188330962 +217143,44191,future dystopia,1188330466 +217143,44191,social control,1188330957 +217143,48394,allegory,1188332555 +217143,48394,bittersweet,1188332524 +217143,48394,fairy tale,1188332519 +217143,54259,coming of age,1188331096 +217143,54259,fairy tale romance,1188330541 +217143,54259,novel,1188331096 +217155,1639,lesbian,1148485936 +217160,27904,based on a book,1444146754 +217160,27904,cyberpunk,1444146768 +217160,27904,Philip K. Dick,1444146745 +217160,27904,sci-fi,1444146759 +217160,27904,surreal,1444146779 +217163,150,tense,1243316215 +217163,150,Tom Hanks,1243316208 +217163,356,vietnam war,1243316172 +217163,588,musical,1243316300 +217163,588,stereotypes,1243316348 +217163,780,disaster,1243316506 +217163,780,end of the world,1243316513 +217163,780,humorous,1243316527 +217163,780,war,1243316510 +217163,1721,chick flick,1243316484 +217163,1721,disaster,1243316491 +217163,1721,Leonardo DiCaprio,1243316463 +217163,1721,love story,1243316470 +217163,1721,romance,1243316457 +217163,2628,Jar Jar Binks,1243316546 +217163,4993,epic,1241726100 +217163,8361,propaganda,1242651231 +217163,8810,PG-13,1243316579 +217163,8917,irreverent,1243316653 +217163,8917,political commentary,1243316665 +217163,26403,cheesy,1243316830 +217163,45950,propaganda,1242651367 +217163,56921,character drama,1243317327 +217163,56921,Edward James Olmos,1243317287 +217163,56921,war,1243317266 +217163,59220,limited perspective,1242651185 +217163,60069,children,1242058802 +217163,60069,dystopia,1242058766 +217163,60069,pixar,1242058752 +217163,68319,comic book,1241726003 +217163,68319,hugh jackman,1241726038 +217163,68319,inconsistent with other movies,1241726031 +217163,68358,fast paced,1242650949 +217171,2959,Brad Pitt,1378388218 +217171,2959,psychology,1378388224 +217171,2959,social commentary,1378388228 +217176,132991,action,1452414057 +217176,132991,Korean,1452414257 +217205,260,action,1443614931 +217205,260,sci-fi,1443614915 +217210,2692,how we lose in life,1448602739 +217210,59784,good fun,1448602637 +217216,260,sci-fi,1436747714 +217216,260,space adventure,1436747719 +217217,260,classic,1439489334 +217217,260,saga,1439489326 +217228,2333,Ian McKellen,1171012654 +217231,51091,twisted,1202780693 +217231,112091,Anna,1416985811 +217237,348,Johnny Depp,1164023396 +217237,348,Woody Allen,1164023426 +217289,2501,Jake Gyllenhal,1183675002 +217291,260,"sf,science fiction",1439760051 +217291,260,space,1439760066 +217322,904,classic,1151051407 +217322,904,Hitchcock,1151051406 +217322,1653,dystopia,1151051401 +217322,1653,sci-fi,1151051398 +217384,32,atmospheric,1435204567 +217384,32,Brad Pitt,1435204534 +217384,32,Bruce Willis,1435204564 +217384,32,classic,1435204576 +217384,32,complicated,1435204543 +217384,32,dark,1435204578 +217384,32,dystopia,1399502950 +217384,32,genetics,1435204587 +217384,32,post-apocalyptic,1399502956 +217384,32,psychology,1399502973 +217384,32,sci-fi,1399502969 +217384,296,action,1420872974 +217384,296,highly quotable,1420872974 +217384,296,shallow characters,1420872974 +217384,541,action,1435205977 +217384,541,androids,1435205990 +217384,541,cyberpunk,1435205921 +217384,541,philosophical,1435205959 +217384,593,classic,1422083495 +217384,593,crime,1422083495 +217384,593,dark,1422083495 +217384,593,fbi,1422083495 +217384,593,pyschopath,1422083495 +217384,778,drugs,1435206401 +217384,778,social commentary,1435206397 +217384,1214,aliens,1435206020 +217384,1214,atmospheric,1435206022 +217384,1214,futuristic,1435206025 +217384,1214,suspense,1435206003 +217384,1214,thriller,1435206006 +217384,1214,violence,1435206015 +217384,1232,adapted from:book,1435204850 +217384,1232,Andrei Tarkovsky,1420873025 +217384,1232,beautifully filmed,1399502380 +217384,1232,dark,1435204843 +217384,1232,existentialism,1399502626 +217384,1232,nature,1399502445 +217384,1232,philosophical,1399502444 +217384,1232,psychological,1399502507 +217384,1232,reflective,1399502451 +217384,1232,sci-fi,1399502400 +217384,1232,science fiction,1399502403 +217384,1240,Action,1435204747 +217384,1240,Arnold Schwarzenegger,1435204705 +217384,1240,artificial intelligence,1435204728 +217384,1240,cyberpunk,1435204713 +217384,1240,great soundtrack,1435204709 +217384,1240,robots,1435204740 +217384,1240,sci-fi,1435204730 +217384,1240,tense,1435204814 +217384,1249,atmospheric,1435207014 +217384,1249,cynical,1435207011 +217384,1249,stylized,1435207008 +217384,2010,industrial progress,1435205768 +217384,2010,social commentary,1435205802 +217384,2858,Kevin Spacey,1435207209 +217384,2858,social commentary,1435207202 +217384,2959,disturbing,1435206890 +217384,2959,philosophy,1435206903 +217384,2959,social commentary,1435206920 +217384,2997,satirical,1435207193 +217384,2997,surrealism,1435207183 +217384,3503,aliens,1435204965 +217384,3503,atmospheric,1435204970 +217384,3503,dreamlike,1435204960 +217384,3503,love,1435204920 +217384,3503,meditative,1435205056 +217384,3503,psychological,1435204976 +217384,3503,sci-fi,1435205027 +217384,3503,surreal,1435205050 +217384,3676,creepy,1435205861 +217384,3676,disturbing,1435205868 +217384,3676,dreamlike,1435205864 +217384,3676,surreal,1435205872 +217384,3949,dark,1435205464 +217384,3949,disturbing,1435205431 +217384,3949,loneliness,1435205441 +217384,3949,psychology,1435205434 +217384,3949,social commentary,1435205437 +217384,3949,visually appealing,1435205456 +217384,6645,continuity problems,1435206449 +217384,6773,quirky,1435206280 +217384,6773,whimsical,1435206298 +217384,7123,dreamlike,1435498971 +217384,7123,drug addiction,1435498973 +217384,7123,drugs,1435498981 +217384,7123,insanity,1435498969 +217384,7123,Madness,1435498966 +217384,7123,sexual,1435498983 +217384,48394,bittersweet,1435205491 +217384,48394,disturbing,1435205494 +217384,48394,dreamlike,1435205496 +217384,48394,social commentary,1435205487 +217384,48394,surreal,1435205483 +217384,55820,crime,1435207255 +217384,61236,history,1435206155 +217384,61236,post-traumatic stress disorder,1435206160 +217384,61236,slow paced,1435206200 +217384,61236,thought-provoking,1435206164 +217384,61236,touching,1435206167 +217384,68237,artificial intelligence,1435205577 +217384,68237,melancholy,1435205673 +217384,68237,psychology,1435205579 +217384,68237,thought-provoking,1435205580 +217384,81591,dark,1435207137 +217384,81591,social commentary,1435207043 +217384,101880,anti-capitalism,1435205122 +217384,101880,community,1435205244 +217384,101880,social analysis,1435205369 +217384,101880,tradition,1435205222 +217384,116799,Thomas Pynchon,1439466070 +217384,122882,action,1435206515 +217384,122882,cinematography,1435206551 +217384,122882,colourful,1435206678 +217384,122882,costumes,1435206692 +217384,122882,desert,1435206491 +217384,122882,dialogue,1435206594 +217384,122882,fast paced,1435206663 +217389,5903,to watch,1432548111 +217389,78574,to watch,1432548292 +217409,2959,Bard Pitt,1289316653 +217409,45722,Johnny Depp,1289320001 +217417,4993,fantasy,1251225054 +217417,68157,violence,1251224871 +217417,68157,World War II,1251224732 +217450,50,twist ending,1295898184 +217450,581,analysis of subtext,1312890323 +217450,581,gay,1312890336 +217450,581,interviews,1312890355 +217450,581,lesbian,1312890357 +217450,741,artificial intelligence,1292618157 +217450,1046,cheesy,1371001251 +217450,1527,cinematography,1295666551 +217450,1527,humorous,1295666544 +217450,1527,satirical,1295666558 +217450,1611,gay,1312982347 +217450,1611,Keanu Reeves,1312982351 +217450,1611,River Phoenix,1312982358 +217450,1757,moody,1307405831 +217450,1757,nocturnal,1307405840 +217450,1757,Silence,1307405850 +217450,1757,stylized,1307405843 +217450,2579,black and white,1294353100 +217450,2579,Christopher Nolan,1294353101 +217450,2579,directorial debut,1294353135 +217450,2579,Twist Ending,1294353109 +217450,2579,Underwhelming Acting,1294353123 +217450,2607,gay,1313459196 +217450,2662,author:H. G. Wells,1292618040 +217450,2662,bad science,1292618038 +217450,2662,Christianity,1292618027 +217450,2662,classic,1292618045 +217450,2662,excellent for its time,1292618050 +217450,2662,religion,1292618035 +217450,2710,"""found footage""",1294353597 +217450,2710,boring,1294353585 +217450,2710,Golden Raspberry (Worst Actress),1294353593 +217450,2710,Low Budget Horror,1294353628 +217450,2710,obnoxious,1294353587 +217450,5072,anime,1292617400 +217450,5072,childish style,1292617378 +217450,5072,cookie-cutter,1292617364 +217450,5812,homophobia,1371312042 +217450,5812,queer,1371312041 +217450,5812,stylized,1371312036 +217450,5903,choreographic violence,1292290875 +217450,5903,cinematography,1292290907 +217450,5903,Dystopia,1292290729 +217450,5903,plot,1292290887 +217450,5903,predictable,1292290780 +217450,6645,dystopia,1292290956 +217450,6762,gay,1370643753 +217450,6790,dystopia,1292378729 +217450,6790,great cinematography,1292378689 +217450,6790,Mamoru Oshii,1292378704 +217450,8914,Complicated,1307444851 +217450,8914,complicated plot,1307444847 +217450,8973,Christianity,1374592579 +217450,8973,school,1374592579 +217450,8973,sexual abuse,1374592585 +217450,8983,Beautiful,1292618085 +217450,26326,animal cruelty,1309345542 +217450,26326,Overly Abstract,1309345526 +217450,26326,social criticism,1309345535 +217450,27728,2D/3D hybrid Animation,1292617976 +217450,27728,Better than the First,1292617957 +217450,27728,Theme,1292617990 +217450,31408,bittersweet,1292722730 +217450,31408,coming of age,1292722715 +217450,31408,Gay Lead Character,1292722708 +217450,34319,dystopia,1302540574 +217450,34319,Ewan McGregor,1302540657 +217450,34319,genetics,1302540572 +217450,34319,Michael Bay action,1302540702 +217450,34319,multiple roles,1302540637 +217450,34319,Over-cut Action,1302540623 +217450,34319,Realistic Setting,1302540677 +217450,34319,Scarlett Johansson,1302540652 +217450,34319,Terrible Acting,1302540566 +217450,41571,cinematography,1292722495 +217450,41571,Japan,1292722486 +217450,41571,Japanese culture,1292722498 +217450,41571,Oscar (Best Cinematography),1292722491 +217450,44191,dystopia,1307444811 +217450,44191,imdb top 250,1307444828 +217450,44191,revenge,1307444814 +217450,44191,social commentary,1307444819 +217450,44191,thought-provoking,1307444815 +217450,44191,visually appealing,1307444822 +217450,44849,acting,1282677951 +217450,44849,amazing photography,1282677952 +217450,44849,superficial plot,1282677950 +217450,48043,death,1297472185 +217450,48043,dreamlike,1297472183 +217450,48043,philosophical,1297472168 +217450,48043,religion,1297472159 +217450,48043,visually appealing,1297472114 +217450,48780,Christian Bale,1295745585 +217450,48780,Christopher Nolan,1295745607 +217450,48780,nonlinear,1295745590 +217450,48780,twist ending,1295745582 +217450,52885,animation,1313278619 +217450,52885,anime,1313278626 +217450,52885,beautiful animation,1313278647 +217450,52885,dreamlike,1313278639 +217450,52885,dreams,1313278635 +217450,52885,psychedellic,1313278634 +217450,55908,entirely dialogue,1312900283 +217450,59387,beautiful,1282841262 +217450,63033,difficult to watch,1356838830 +217450,63033,Gael García Bernal,1356836667 +217450,63033,good concept,1356836661 +217450,63033,hollow,1356838865 +217450,63033,rape,1356836650 +217450,72712,consumerism,1309877747 +217450,72712,industrial design,1309877738 +217450,72712,Jonathan Ive,1309877740 +217450,72720,based on a book,1300823419 +217450,72720,beautiful cinematography,1300823406 +217450,72720,Colin Firth,1300823424 +217450,72720,gay,1300823409 +217450,74275,based on a true story,1300936067 +217450,74275,Con Artist,1300936063 +217450,74275,Funny,1300936052 +217450,74275,gay,1300936037 +217450,74275,homosexual,1300936042 +217450,74416,beautifully filmed,1313461087 +217450,74416,disturbing,1313461090 +217450,74416,great soundtrack,1313461092 +217450,74416,realism,1313461094 +217450,78836,camerawork,1292618003 +217450,78836,colours,1292618011 +217450,78836,Mind Games,1292722693 +217450,80917,aliens,1327360257 +217450,80917,Excellent characterization,1327360305 +217450,80917,Low Budget,1327360268 +217450,80917,science fiction,1327360273 +217450,81018,animation,1314195546 +217450,81018,depressing without being uplifting,1314195551 +217450,81018,edinburgh,1314195552 +217450,81018,music,1314195568 +217450,81591,Alter ego,1296935869 +217450,81591,Darren Aronofsky,1296935822 +217450,81591,overrated,1296935829 +217450,81591,Shock and drop,1296935848 +217450,81591,Soundtrack,1296935834 +217450,82461,action choreography,1295815208 +217450,82461,bad acting,1295815068 +217450,82461,bad plot,1295815066 +217450,82461,dialogue,1295815064 +217450,82461,Horrid characterisation,1295815178 +217450,82461,music,1295815050 +217450,82461,Protagonist excels in everything just because he's rich and handsome,1295815058 +217450,82461,sci-fi,1295815053 +217450,82461,sequel,1295815055 +217450,89745,Blockbuster swill,1356827739 +217450,89745,predictable,1356827768 +217450,89745,Robert Downey Jr.,1356827778 +217450,89745,shallow,1356036375 +217450,89745,too much fighting and not enough story,1356827774 +217450,90531,Michael Fassbender,1356231526 +217450,90531,running scene,1356231524 +217450,90531,self-destruction,1356231529 +217450,91199,bittersweet,1366558611 +217450,91199,gay,1366558601 +217450,96821,Captivating,1371137293 +217450,96821,character development,1371137294 +217450,96821,coming of age,1371137296 +217450,96821,Emma Watson,1371137301 +217450,99917,a topiary,1370827921 +217450,99917,Beautiful,1370827903 +217450,99917,sci-fi,1370827913 +217450,99917,Shane Carruth,1370827905 +217450,101741,Architecture,1365269967 +217450,101741,Art,1365269970 +217450,101741,Cinematography,1365269963 +217450,101741,Dream,1365269990 +217450,101741,Mindfuck,1365269961 +217450,101741,Surreal,1365269997 +217450,101741,Thriller,1365269974 +217450,101741,Twist,1365269993 +217450,102880,Blockbuster,1370976463 +217450,102880,Jaden Smith,1370976428 +217450,102880,sci-fi,1370976470 +217450,102880,Stilted Dialogue,1370976451 +217450,102880,teenage angst,1370976492 +217450,103022,Blindness,1370622738 +217450,103022,Coming of Age,1370622731 +217450,103022,Gay,1370622724 +217450,103022,monochromatic,1370622780 +217450,103022,short,1370623085 +217450,103042,Another Superhero,1371311763 +217450,111913,gay,1447773902 +217450,111913,love,1447773914 +217450,111913,touching,1447773916 +217457,7123,cronenberg,1211426273 +217493,527,Holocaust,1385123469 +217493,527,Nazi Germany,1385123414 +217493,527,Spielberg,1385123469 +217505,318,hope,1434965141 +217505,318,intelligent scheming,1434965141 +217505,318,redemption,1434965141 +217522,733,Hans Zimmer,1251159451 +217522,733,Sean Connery,1251159442 +217522,60684,plot sucks,1251159571 +217522,60684,stylized,1251159591 +217522,60684,too long,1251159588 +217522,65216,Daniel Craig,1251159621 +217522,65216,slow,1251159624 +217522,68954,dogs,1251159224 +217522,68954,dreams,1251159217 +217522,68954,talking animals,1251159233 +217533,10,espionage,1297105649 +217533,10,James Bond,1297105647 +217533,34,adventure,1297105634 +217533,150,based on a true story,1297105432 +217533,150,space,1297105428 +217533,231,comedy,1297106030 +217533,231,hilarious,1297106039 +217533,231,road trip,1297106033 +217533,380,action,1297105460 +217533,480,action,1297105344 +217533,480,adventure,1297105348 +217533,592,comic book,1297105422 +217533,592,superhero,1297105425 +217533,595,animation,1297105553 +217533,736,action,1297105571 +217533,736,adventure,1297105585 +217533,736,disaster,1297105568 +217533,1270,adventure,1297090801 +217533,1270,comedy,1297090803 +217533,1270,future,1297090805 +217533,1270,time travel,1297090807 +217533,1288,deadpan,1297091824 +217533,1288,heavy metal,1297091822 +217533,1288,mockumentary,1297091815 +217533,1288,rock and roll,1297091817 +217533,1288,satirical,1297091819 +217533,1682,dark comedy,1297111619 +217533,1682,dystopia,1297111625 +217533,1682,social commentary,1297111622 +217533,1732,comedy,1297091768 +217533,1732,cult film,1297091770 +217533,1732,dark comedy,1297091772 +217533,1732,quirky,1297091774 +217533,1732,satirical,1297091776 +217533,1917,Bruce Willis,1297105793 +217533,1917,disaster,1297105787 +217533,1917,space,1297105791 +217533,1923,Ben Stiller,1297105731 +217533,1923,comedy,1297105726 +217533,1923,hilarious,1297105729 +217533,2012,time travel,1297106207 +217533,2423,christmas,1297091451 +217533,2423,Classic,1297091441 +217533,2423,comedy,1297091453 +217533,2502,comedy,1297090750 +217533,2502,cult film,1297090752 +217533,2502,hilarious,1297091734 +217533,2502,satire,1297090755 +217533,2571,Action,1297105511 +217533,2571,cyberpunk,1297105501 +217533,2571,martial arts,1297105497 +217533,2571,philosophical,1297105499 +217533,2571,virtual reality,1297105508 +217533,2700,Based on a TV show,1297111721 +217533,2706,comedy,1297106067 +217533,2706,high school,1297106055 +217533,2706,sexuality,1297106061 +217533,2791,absurd,1297091845 +217533,2791,classic,1297091848 +217533,2791,Parody,1297091860 +217533,2918,comedy,1297090723 +217533,2918,coming of age,1297090726 +217533,2918,High School,1297090729 +217533,3421,Funny,1297111337 +217533,3421,National Lampoon,1297111332 +217533,3948,Ben Stiller,1297106196 +217533,3948,comedy,1297106191 +217533,3948,Robert De Niro,1297106194 +217533,4226,nonlinear,1297092835 +217533,4226,psychology,1297092830 +217533,4226,twist ending,1297092832 +217533,5378,romance,1297106112 +217533,6534,comic book,1297111415 +217533,6534,marvel,1297111413 +217533,6534,superhero,1297111418 +217533,27873,music business,1297111506 +217533,27873,music documentary,1297111493 +217533,27873,rock and roll,1297111509 +217533,33794,atmospheric,1297091426 +217533,33794,batman,1297091431 +217533,33794,superhero,1297091428 +217533,45722,Comedy,1297106169 +217533,45722,Johnny Depp,1297106167 +217533,45722,pirates,1297106164 +217533,48780,nonlinear,1297090693 +217533,48780,twist ending,1297090683 +217533,51662,action,1297105995 +217533,51662,atmospheric,1297106000 +217533,51662,comic book,1297105997 +217533,52973,drugs,1297111543 +217533,52973,marijuana,1297111548 +217533,52973,pregnancy,1297111557 +217533,58559,psychology,1297091492 +217533,58559,serial killer,1297091500 +217533,58559,superhero,1297091495 +217533,68157,satire,1297090702 +217533,68157,World War II,1297090698 +217533,68358,action,1297089337 +217533,68358,adventure,1297089339 +217533,68358,franchise,1297089342 +217533,68358,future,1297089347 +217533,69122,comedy,1297105906 +217533,70183,cute,1297111587 +217533,70183,entertaining,1297111597 +217533,70183,ridiculous,1297111600 +217533,72998,aliens,1297089266 +217533,72998,beautiful scenery,1297089272 +217533,72998,futuristic,1297089263 +217533,72998,imdb top 250,1297089294 +217533,72998,military,1297089276 +217533,72998,politics,1297089300 +217533,72998,romance,1297089290 +217533,80549,funny,1297090443 +217533,80549,high school,1297090421 +217533,80549,sexuality,1297090433 +217533,80549,witty,1297090431 +217533,82459,revenge,1297090561 +217540,260,fantasy,1431884615 +217540,260,space action,1431884602 +217556,1704,feel-good,1451088276 +217556,1704,Matt Damon,1451088267 +217556,1704,mentor,1451088270 +217613,115569,Jake Gyllenhaal,1424557520 +217637,34143,disapointing,1160151711 +217661,29,weird,1368669670 +217661,32,great ending,1368669740 +217661,47,great ending,1368669740 +217661,50,great acting,1368669692 +217661,50,storytelling,1368669572 +217661,70,cult classic,1368669707 +217661,111,loneliness,1368669601 +217661,150,dramatic,1368669630 +217661,169,family,1368669728 +217661,204,action,1368669640 +217661,318,great acting,1368669692 +217661,318,great ending,1368669740 +217661,455,family,1368669728 +217661,508,dramatic,1368669630 +217661,547,so bad it's funny,1165498035 +217661,593,great acting,1368669692 +217661,804,relationships,1368669656 +217661,858,great acting,1368669692 +217661,858,oscar (best directing),1368669619 +217661,1015,family,1368669729 +217661,1016,family,1368669729 +217661,1089,original,1368669496 +217661,1128,so bad it's funny,1165495716 +217661,1175,weird,1368669670 +217661,1185,cerebral,1368669777 +217661,1199,cerebral,1368669777 +217661,1199,weird,1368669670 +217661,1210,great ending,1368669740 +217661,1213,oscar (best directing),1368669619 +217661,1241,cult classic,1368669707 +217661,1299,dramatic,1368669630 +217661,1307,relationships,1368669656 +217661,1552,action,1368669640 +217661,1608,action,1368669640 +217661,1617,great acting,1368669692 +217661,1623,horror,1368669718 +217661,1639,relationships,1368669656 +217661,1704,mentor,1368669526 +217661,1722,action,1368669640 +217661,1748,cerebral,1368669778 +217661,1921,visually appealing,1368669679 +217661,1952,loneliness,1368669601 +217661,1991,horror,1368669718 +217661,2108,story,1368669763 +217661,2167,action,1368669640 +217661,2262,relationships,1368669656 +217661,2291,original,1368669495 +217661,2315,horror,1368669718 +217661,2335,comedy,1368669537 +217661,2355,story,1368669763 +217661,2371,comedy,1368669537 +217661,2394,story,1368669763 +217661,2420,mentor,1368669526 +217661,2460,horror,1368669718 +217661,2762,great ending,1368669740 +217661,3006,dramatic,1368669630 +217661,3018,horror,1368669718 +217661,3070,cult classic,1368669707 +217661,3105,dramatic,1368669630 +217661,3147,oscar (best directing),1368669619 +217661,3157,family,1368669728 +217661,3421,comedy,1368669537 +217661,3740,cult classic,1368669707 +217661,3986,action,1368669641 +217661,4085,comedy,1368669536 +217661,4725,horror,1368669718 +217661,4878,cerebral,1368669777 +217661,4878,original,1368669496 +217661,5452,family,1368669728 +217661,5945,loneliness,1368669601 +217661,5995,dramatic,1368669630 +217661,6188,comedy,1368669537 +217661,6264,so bad it's funny,1165495691 +217661,6787,story,1368669763 +217661,7147,story,1368669763 +217661,7153,great ending,1368669740 +217661,8641,comedy,1368669537 +217661,8981,relationships,1368669656 +217661,48678,so bad it's funny,1168125974 +217661,50872,story,1368669763 +217661,60684,visually appealing,1368669679 +217661,79132,cerebral,1368669778 +217666,32009,Tyler Perry,1155469191 +217685,996,action,1177852181 +217685,1866,action,1177852121 +217685,1866,coolness,1177852157 +217685,2490,action,1177852277 +217685,2490,classic,1177852075 +217685,2959,fighting,1177852099 +217685,4011,fighting,1177852043 +217695,262,nice period piece,1139120245 +217695,1197,wonderful,1139120206 +217695,1695,period drama,1139119897 +217695,4700,blah,1139120227 +217695,8235,wonderful,1139120411 +217699,804,Tom Petty,1227093758 +217722,127610,divertente,1424192781 +217722,127610,fa ridere,1424192781 +217722,127610,italiano,1424192781 +217723,1704,inspirational,1453108777 +217723,5418,Matt Damon,1453108727 +217747,648,confusing plot,1146769051 +217747,832,acting,1146769009 +217747,1380,good music,1146768985 +217757,260,entertaining,1441445476 +217757,260,mystery,1441445482 +217757,260,scary,1441445470 +217785,260,space travel,1441523273 +217785,260,Star Wars,1441523288 +217787,555,not an ironic title,1157325142 +217787,555,watch it with the lady,1157325142 +217787,589,but in evil liquid metal robot form,1157325114 +217787,589,like crack,1157325114 +217787,1297,one of the most underated comedies,1157325009 +217787,4329,watch it more than once,1157325271 +217787,5617,oh so sexy,1157325218 +217787,38061,everyone needs to see!,1157324215 +217788,1036,christmas,1260242828 +217788,1311,Christmas,1260245885 +217788,1321,werewolves,1268095986 +217788,1359,Christmas,1260246348 +217788,2017,Christmas,1260246118 +217788,2392,Christmas,1260245936 +217788,2399,Christmas,1260246265 +217788,3086,Christmas,1260246178 +217788,5804,Christmas,1260246281 +217788,8978,Christmas,1260245910 +217788,40815,Best one,1139710266 +217788,62586,Christmas,1260246090 +217793,588,Arabian Nights,1417224583 +217793,588,Disney,1417224565 +217793,588,middle east,1417224588 +217793,1291,Adventure,1417308120 +217793,1291,indiana jones,1417308121 +217793,1291,pure entertainment,1417308126 +217793,1291,treasure,1417308096 +217793,1291,treasure hunt,1417308119 +217793,2094,superhero,1417239971 +217793,2989,assassin,1427603015 +217793,2989,car chase,1427603020 +217793,2989,espionage,1427603012 +217793,2989,mountain climbing,1427603027 +217793,2989,spy,1427603024 +217793,4367,action girl,1417224728 +217793,4367,adventure,1417224738 +217793,4367,hot girls!,1417224706 +217793,4367,Interesting,1417224712 +217793,4367,strong women,1417224745 +217793,4963,con men,1417224321 +217793,4963,fun,1417224332 +217793,4963,heist,1417224318 +217793,4963,smart action,1417224334 +217793,4963,witty,1417224349 +217793,6378,adventureous,1417224990 +217793,6378,con men,1417224972 +217793,6378,escapist action,1417224995 +217793,6378,heist,1417224963 +217793,6378,robbery,1417224967 +217793,6378,Slick adventure,1417224988 +217793,6378,theft,1417225002 +217793,6539,adventure,1417224936 +217793,6539,anti-hero,1417224896 +217793,6539,Disney,1417224929 +217793,6539,HEROIC MISSION,1417224882 +217793,6539,magic,1417224915 +217793,6539,magic realism,1417224886 +217793,6539,sword fight,1417224934 +217793,6539,treasure,1417224939 +217793,6539,treasure hunt,1417224923 +217793,6564,ancient ruins,1417224775 +217793,6564,fighting,1417224786 +217793,6564,martial arts,1417224789 +217793,6564,ruins,1417224759 +217793,6564,travelling,1417224781 +217793,8972,action,1417224498 +217793,8972,mountain climbing,1417224489 +217793,8972,myth based,1417224468 +217793,8972,puzzle,1417224471 +217793,8972,puzzle solving,1417224483 +217793,8972,secret societies,1417224456 +217793,8972,treasure,1417224480 +217793,8972,treasure hunt,1417224454 +217793,42718,parkour,1417229481 +217793,73017,bromantic,1427602842 +217793,73017,clever,1427602811 +217793,73017,illusion,1427602820 +217793,73017,magic/illusion/mysticism,1427602817 +217793,73017,occult,1427602828 +217793,73017,Sherlock Holmes,1427602791 +217793,73017,witty,1427602832 +217793,78105,adventure,1417224514 +217793,78105,desert,1417224528 +217793,78105,parkour,1417224544 +217793,78105,persia,1417224541 +217793,78105,royalty,1417224523 +217793,79895,fantasy world,1417224444 +217793,84152,pseudo-intelligent,1417224264 +217793,84152,smart,1417224250 +217793,90603,Batman,1427602635 +217793,91542,assassin,1417224626 +217793,91542,fight scenes,1417224688 +217793,91542,Gipsy,1417224653 +217793,91542,sleuth,1417224675 +217793,91630,cool gadgets,1417224408 +217793,91630,espionage,1417224384 +217793,93363,Action,1417224815 +217793,93363,Edgar Rice Burroughs,1417224811 +217793,102407,beautiful,1417224309 +217793,102407,stylized,1417224306 +217793,102903,audience intelligence underestimated,1417224225 +217793,102903,illusions,1417224228 +217793,102903,pseudo-intelligent,1417224220 +217800,260,sci-fi,1433311348 +217800,260,space action,1433311398 +217815,260,sci-fi,1442720769 +217815,260,space,1442720761 +217853,3307,beautiful,1451338705 +217853,3307,bittersweet,1451338703 +217853,3307,stylized,1451338851 +217853,3307,sweet,1451338848 +217862,318,hope,1434852127 +217862,318,prison escape,1434852127 +217862,318,redemption,1434852127 +217863,260,classic,1436750872 +217863,260,sci-fi,1436750882 +217866,912,classic,1204611425 +217866,920,I love this movie,1204610843 +217866,920,Oscar (Best Picture),1204610860 +217874,2100,tom hanks,1201312396 +217912,296,too violent,1449692075 +217912,593,horror,1449691938 +217912,593,not my cup of tea,1449691912 +217912,593,too scary,1449691902 +217912,3266,dark,1449692395 +217912,3266,noir,1449692452 +217912,3266,violence,1449692404 +217912,3985,good germans,1449492348 +217912,3985,spannend,1449492335 +217912,7502,realistic,1449691853 +217912,7502,TV series,1449691821 +217912,8665,book is so much better,1449691460 +217912,8665,great plot,1449691412 +217912,54286,action,1449691358 +217912,54286,amazing,1449691365 +217912,54286,plot,1449691372 +217912,131724,Murder,1449413709 +217912,131724,onverwacht,1449413719 +217912,148357,Frans,1449413759 +217912,148584,book is better,1449692739 +217912,148584,nice,1449692712 +217912,148584,read the book,1449692699 +217931,172,Sci-Fi,1226795793 +217931,5669,documentary,1265874394 +217931,72393,Milla Jovovich,1284520465 +217931,72393,psychology,1284520471 +217931,80363,Milla Jovovich,1284520207 +217939,2313,circus sideshow,1203572245 +217967,4327,Charles Bronson,1173268343 +217967,4327,Clint Eastwood,1173268204 +217967,4327,Hey gringo,1173268299 +217967,4327,Yul,1173268299 +217967,7153,Hobbits,1173268333 +217973,33834,zombie,1161108186 +218019,858,Al Pacino,1429669816 +218019,858,atmospheric,1429669783 +218019,858,classic,1429669775 +218019,858,great acting,1429669813 +218019,858,Mafia,1429669770 +218019,858,Marlon Brando,1429669760 +218019,1225,classical music,1429670883 +218019,1225,Mozart,1429670887 +218019,2329,amazing photography,1429671244 +218019,2329,disturbing,1429671178 +218019,2329,edward norton,1429671162 +218019,2329,emotional,1429671175 +218019,2329,powerful ending,1429671234 +218019,2329,thought-provoking,1429671165 +218019,3147,emotional,1429671594 +218019,3147,great acting,1429671593 +218019,3147,heartwarming,1429671624 +218019,4262,Al Pacino,1429669874 +218019,4262,atmospheric,1429669924 +218019,4262,classic,1429669884 +218019,4262,gangsters,1429669887 +218019,4262,mafia,1429669881 +218019,4262,organized crime,1429669876 +218019,4262,violence,1429669929 +218019,4995,insanity,1429670719 +218019,4995,inspirational,1429670735 +218019,4995,intelligent,1429670741 +218019,4995,mathematics,1429670702 +218019,4995,mental illness,1429670707 +218019,4995,psychology,1429670699 +218019,4995,schizophrenia,1429670700 +218019,4995,true story,1429670713 +218019,5989,Leonardo DiCaprio,1429670580 +218019,5989,smart,1429670612 +218019,5989,Tom Hanks,1429670581 +218019,5989,true story,1429670584 +218019,7502,duty,1429670073 +218019,7502,realistic,1429670044 +218019,7502,war,1429670041 +218019,7502,World War II,1429670037 +218019,30812,aviation,1429670791 +218019,30812,Leonardo DiCaprio,1429670798 +218019,30812,mental illness,1429670788 +218019,48394,atmospheric,1429670379 +218019,48394,bittersweet,1429670470 +218019,48394,brutality,1429670423 +218019,48394,dark,1429670399 +218019,48394,disturbing,1429670391 +218019,48394,fairy tale,1429670452 +218019,48394,fantasy,1429670381 +218019,48394,gore,1429670436 +218019,48394,Guillermo del Toro,1429670403 +218019,48394,psychology,1429670393 +218019,48394,surreal,1429670454 +218019,68157,dark comedy,1429671019 +218019,68157,great soundtrack,1429671023 +218019,68157,Quentin Tarantino,1429671056 +218019,68157,satire,1429671011 +218019,68157,unusual plot structure,1429671038 +218019,68157,World War II,1429671009 +218019,70286,aliens,1429671306 +218019,70286,atmospheric,1429671450 +218019,70286,redemption,1429671383 +218019,70286,satire,1429671358 +218019,70286,sci-fi,1429671310 +218019,70286,social commentary,1429671307 +218019,70286,Special Effects,1429671354 +218042,296,dark,1426623930 +218042,296,funny,1426623930 +218042,296,gritty,1426623930 +218061,3271,very true to the novel,1187997480 +218061,3484,bad,1187997602 +218061,4745,very interesting adaptation,1187997815 +218061,4745,well acted,1187997815 +218061,4745,well done,1187997815 +218061,6708,comedy,1187997395 +218061,6708,could have been better,1187997395 +218061,6708,uninteresting,1187997395 +218061,6787,engaging,1187997513 +218061,6787,gripping,1187997513 +218061,6787,well-acted,1187997514 +218061,7706,still funny,1187997919 +218061,8361,boring,1187997468 +218061,8361,simplistic,1187997468 +218061,8361,Stupid title,1187997468 +218061,8581,good story,1187997885 +218061,8581,would have benefited from higher production values,1187997885 +218061,8781,not as good as the original,1187997631 +218061,33154,a good take on the situation,1187997935 +218061,34338,amusing,1187997832 +218061,34338,tedious after a while,1187997832 +218061,36529,could have been better,1187997600 +218061,36529,mildly interesting,1187997600 +218061,48516,lacking a certain quality,1187997434 +218061,48516,Well-acted.,1187997434 +218068,61240,atmospherically beautiful,1276747214 +218068,61240,confusingly adapted screenplay,1276747214 +218075,260,classic sci-fi,1437455654 +218075,260,Science Fiction,1437455636 +218078,14,5,1188373469 +218078,237,4,1188373448 +218078,276,4,1188373546 +218078,362,5,1188373455 +218078,671,2,1188373555 +218078,866,3,1188373491 +218078,1179,3,1188373452 +218078,1717,4,1188373566 +218078,1907,2,1188373504 +218078,2391,3,1188373519 +218078,2915,3,1188373478 +218078,3617,3,1188373563 +218078,3752,2,1188373501 +218078,3826,5,1188373543 +218078,3916,5,1188373559 +218078,3967,3,1188373537 +218078,4262,2,1188373515 +218078,4270,2,1188373551 +218078,4310,3,1188373511 +218078,4447,4,1188373497 +218078,4848,2,1188373506 +218078,4975,3,1188373570 +218078,5377,5,1188373425 +218078,5618,4,1188373522 +218078,5679,2,1188373475 +218078,6378,5,1188373494 +218078,6934,4,1188373462 +218078,7147,3,1188373441 +218078,8622,3,1188373540 +218078,32587,3,1188373482 +218090,296,hitman,1432525025 +218090,296,intense,1432525025 +218090,296,shocking,1432525025 +218098,1212,black market,1230494600 +218098,1212,noir thriller,1230494585 +218098,1212,Orson Welles,1230494579 +218098,2810,celebrity,1230494912 +218098,2810,cult of persona,1230494944 +218098,2810,stalker,1230494923 +218098,5617,sex,1230493746 +218098,7762,book,1230438810 +218098,7762,book was better,1230438823 +218098,7762,espionage,1230438789 +218098,7762,intelligent,1230438790 +218098,7762,spy,1230438793 +218098,26002,criminal,1230494338 +218098,26002,espionage,1230494210 +218098,26002,Europe,1230494246 +218098,26002,megalomania,1230494293 +218098,26002,money,1230494270 +218098,26002,power,1230494284 +218098,26002,spying,1230494332 +218098,26002,suspense,1230494302 +218098,26002,wealth,1230494277 +218098,27904,based on a book,1230493888 +218098,27904,Philip K. Dick,1230493884 +218098,27904,surrealism,1230493894 +218098,27904,surveillance,1230493903 +218098,33072,magic,1230494388 +218101,296,action,1430064486 +218101,296,tarantino,1430064486 +218101,296,thriller,1430064486 +218116,7256,mountain climbing,1144757463 +218123,55908,best,1448213953 +218123,97304,Best Picture,1448213962 +218126,527,classic,1450963630 +218126,527,historical,1450963627 +218126,527,holocaust,1450963616 +218126,527,world war 2,1450963634 +218169,55098,india,1434054480 +218169,55098,patriotic,1434054480 +218169,55098,youth,1434054480 +218169,97648,action,1429401220 +218169,97648,bollywood,1429401220 +218169,97648,comedy,1429401220 +218214,2660,based on a book,1425011400 +218214,2660,"John W. Campbell, Jr.",1425011430 +218214,2660,remade,1425011519 +218214,26614,Not the movie with Matt Damon,1425010814 +218214,119145,campy,1425010251 +218214,119145,captivating,1425010251 +218214,119145,funny,1425010251 +218214,119145,spying,1425010251 +218214,119145,tongue-in-cheek,1425010251 +218231,296,Quentin Tarantino,1216142980 +218231,1089,Quentin Tarantino,1216142880 +218231,2542,Guy Ritchie,1216143173 +218231,4011,Guy Ritchie,1216143216 +218280,50796,acting,1271820533 +218280,54281,Anton Yelchin,1271820514 +218280,54281,original,1271820504 +218280,58347,Christina Ricci,1271820401 +218280,58347,fairy tale,1271820401 +218280,58347,James McAvoy,1271820401 +218280,58347,self image,1271820401 +218280,74789,3D,1271820458 +218280,74789,artwork,1271820431 +218280,74789,based on a book,1271820444 +218280,74789,graphics,1271820434 +218280,74789,Johnny Depp,1271820417 +218280,74789,soundtrack,1271820448 +218280,74789,Tim Burton,1271820423 +218288,1682,philosophy,1449331252 +218288,1682,surveillance,1449331286 +218322,1210,action,1310850161 +218322,1210,adventure,1310850159 +218322,1210,aliens,1310850165 +218322,1210,George Lucas,1310850136 +218322,1210,Harrison Ford,1310850154 +218322,1210,robots,1310850169 +218322,1210,sci-fi,1310850152 +218322,1210,space,1310850157 +218322,77658,astronomy,1299224821 +218322,77658,Carl Sagan,1299224818 +218322,77658,evolution,1299224827 +218322,77658,Hulu,1299224853 +218322,77658,netflix,1299224851 +218322,77658,physics,1299224810 +218322,77658,science,1299224814 +218322,81782,based on a true story,1299224924 +218322,81782,happy ending,1299224938 +218322,81782,trains,1299224919 +218381,260,Science Fiction,1440865082 +218381,260,space opera,1440865093 +218420,260,sci-fi,1434919920 +218420,260,universe,1434919928 +218448,39,high school,1220396765 +218448,588,Disney,1220396721 +218448,915,classic romantic comedy,1220396839 +218448,932,classic love story,1220396713 +218448,3578,Rome,1220396772 +218448,4995,schizophrenia,1220396749 +218448,40629,Jane Austen,1220396812 +218448,46970,Will Ferrell,1220396853 +218448,46976,schizophrenia,1220396293 +218448,46976,will fe,1220396333 +218450,832,It was melodramatic and kind of dumb,1162941097 +218450,3897,kind of slow,1162941073 +218452,48043,dreamlike,1421606116 +218452,118458,Psychopath,1418032533 +218466,316,aliens,1323605446 +218466,316,military,1324403964 +218466,316,Stargate,1323605449 +218466,1476,own,1364074283 +218466,1476,RENT,1364074293 +218466,1476,true story,1364074274 +218466,1476,VHS,1364074295 +218466,3489,children,1324944893 +218466,3489,Julia Roberts,1324944901 +218466,3489,Peter Pan,1324944911 +218466,5902,Nicolas Cage,1346932907 +218466,51077,motorcycle,1365103943 +218466,51077,Nicholas Cage,1365103900 +218466,51077,Nicolas Cage,1365103893 +218466,51077,Nikolaus Kage,1365103918 +218466,84189,revenge,1331330557 +218466,86898,too much religion,1324946506 +218496,3113,stupid,1218740978 +218509,260,star was,1437740574 +218526,260,classic,1430704295 +218526,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1430704283 +218531,260,adventure,1443954869 +218531,260,scifi,1443954862 +218542,260,classic,1443945421 +218542,260,sci-fi,1445049373 +218542,260,Science Fiction,1443945410 +218542,951,dialogue driven,1444527929 +218542,1587,Fantasy,1444529198 +218542,1587,sword and sorcery,1444529182 +218542,2692,existentialism,1444526562 +218542,2692,German,1444526585 +218542,2692,nonlinear,1444526569 +218542,5965,Period piece,1445052722 +218542,5965,sword fighting,1445052762 +218542,8660,Polish,1445052983 +218542,26326,psychedelic,1443946627 +218542,26326,weird,1443946631 +218542,43009,New French Extremity,1444621451 +218542,58964,New French Extremism,1443947773 +218542,62203,horror,1445049258 +218542,62203,New French Extremity,1443945963 +218542,62203,violent,1444620947 +218542,77307,weird,1444448749 +218542,79251,disturbing,1444621344 +218542,96832,surreal,1444539070 +218542,107649,magical realism,1444361686 +218542,107649,weird,1444361723 +218542,115149,Action,1444529561 +218542,115149,violent,1444529544 +218542,121231,horror,1445049513 +218544,260,space travel,1431467341 +218544,260,special effects,1431467354 +218562,260,luke skywalker,1432020754 +218562,260,space,1432020747 +218565,29,dystopia,1396960102 +218565,66934,Felicia Day,1396962446 +218565,66934,silly,1396962446 +218565,94466,dark,1396782822 +218565,94466,dystopia,1396782806 +218565,94466,paranoia,1396782806 +218565,94466,well constructed,1396782758 +218573,318,classic,1429576531 +218573,318,narrated,1429576538 +218573,750,black comedy,1429576687 +218573,750,satire,1429576684 +218573,80463,based on a true story,1429576667 +218573,80463,computers,1429576659 +218583,260,Bad acting,1443065670 +218583,260,classic sci-fi,1443065655 +218586,19,silly fun,1368570586 +218586,231,dumb but funny,1368570654 +218586,231,funniest movies,1368570782 +218586,317,holiday,1368570815 +218586,339,feel good movie,1368570751 +218586,355,cartoon,1368570727 +218586,356,destiny,1368570603 +218586,539,destiny,1368570603 +218586,586,holiday,1368570815 +218586,594,cartoon,1368570726 +218586,595,animated,1368570802 +218586,597,romantic comedy,1368570618 +218586,1022,animated,1368570802 +218586,1029,animated,1368570802 +218586,1029,cartoon,1368570726 +218586,1032,cartoon,1368570727 +218586,1367,cartoon,1368570727 +218586,1485,hilarious,1368570827 +218586,1517,silly fun,1368570586 +218586,1569,romantic comedy,1368570618 +218586,1923,funniest movies,1368570782 +218586,2081,animated,1368570802 +218586,2085,cartoon,1368570726 +218586,2355,animated,1368570802 +218586,2378,silly fun,1368570586 +218586,2572,teenager,1368570629 +218586,2671,romantic comedy,1368570618 +218586,2706,hilarious,1368570827 +218586,2706,teenager,1368570629 +218586,3087,holiday,1368570815 +218586,3785,dumb but funny,1368570654 +218586,3988,holiday,1368570815 +218586,4014,feel good movie,1368570752 +218586,4973,feel good movie,1368570752 +218586,6377,animated,1368570802 +218586,34162,very funny,1368570667 +218586,46976,destiny,1368570603 +218586,88163,comedy,1330649227 +218644,260,classic,1433501305 +218644,260,sci-fi,1433501264 +218644,356,life lesson,1434721622 +218644,356,multiple storylines,1434721622 +218644,356,story telling,1434721622 +218644,2762,mindfuck,1433501999 +218644,2762,twist ending,1433501993 +218644,2762,watch again,1433502006 +218644,2959,mindfuck,1433501609 +218644,2959,twist ending,1433501551 +218644,2959,violence,1433501603 +218644,2959,watch again,1433501711 +218644,6711,cultural differences,1434810341 +218644,6711,Japan,1434810319 +218644,6711,Melancholic,1434810331 +218644,6711,tokyo,1434810316 +218644,68157,gratuitous violence,1433502090 +218644,68157,Quentin Tarantino,1433502107 +218644,79132,mindfuck,1433501826 +218644,79132,sci-fi,1433501853 +218644,85414,mindfuck,1433501754 +218644,85414,science fiction,1433501772 +218644,85414,time travel,1433501757 +218644,85414,twist ending,1433501763 +218644,112556,mindfuck,1433501970 +218644,112556,Psychopathy,1433501946 +218644,112556,unpredictable,1433501950 +218644,114935,mindfuck,1433501429 +218644,114935,paradox,1433501418 +218644,114935,predictable,1433501466 +218644,114935,sci-fi,1433501477 +218644,114935,time travel,1433501411 +218644,114935,twist ending,1433501452 +218657,3868,1998,1428538454 +218657,3868,old,1428538454 +218657,3868,queen,1428538454 +218669,914,classic,1429475564 +218669,5008,law,1429475630 +218669,5008,suspense,1429475630 +218669,5008,witty,1429475630 +218711,593,crime,1425919834 +218711,593,exciting,1425919834 +218711,593,thriller,1425919834 +218711,2424,chick flick,1425919806 +218711,2671,Nice song,1425919772 +218711,97648,bollywood,1425919691 +218711,97648,crime,1425919693 +218711,97648,hindi,1425919686 +218781,32497,o genki desu ka,1441872279 +218781,32497,OST,1441872217 +218781,32497,Sound Track,1441872237 +218809,2,time travel,1394473320 +218809,18,Quentin Tarantino,1394473514 +218809,19,comedy,1394472400 +218809,19,Jim Carrey,1394472402 +218809,32,atmospheric,1394464120 +218809,32,post-apocalyptic,1372449178 +218809,32,time travel,1372449234 +218809,32,twist ending,1372449170 +218809,47,atmospheric,1394467903 +218809,47,psychology,1394467906 +218809,47,serial killer,1394467898 +218809,50,complicated,1372449115 +218809,50,ensemble cast,1372449119 +218809,50,mindfuck,1372449124 +218809,50,suspense,1372449129 +218809,50,twist ending,1372449127 +218809,70,twist ending,1394471728 +218809,231,Jim Carrey,1394469791 +218809,231,road trip,1394469796 +218809,253,atmospheric,1394469402 +218809,296,dark comedy,1394468614 +218809,296,Quentin Tarantino,1394468620 +218809,316,archaeology,1394473963 +218809,316,Egypt,1394473961 +218809,316,science fiction,1394473952 +218809,316,time travel,1394473936 +218809,316,time-travel,1394473950 +218809,318,prison escape,1372448594 +218809,318,surprise ending,1372448609 +218809,318,thought-provoking,1372448605 +218809,318,twist ending,1372448607 +218809,344,comedy,1394472408 +218809,344,Jim Carrey,1394472406 +218809,348,John Cusack,1394472192 +218809,356,bittersweet,1394469666 +218809,356,historical,1394469672 +218809,356,history,1394469668 +218809,364,animals,1453027311 +218809,364,animation,1453027331 +218809,367,Jim Carrey,1394468743 +218809,377,Keanu Reeves,1394472664 +218809,377,Romance,1394472668 +218809,377,Sandra Bullock,1394472653 +218809,380,comedy,1394470821 +218809,457,Harrison Ford,1394471715 +218809,485,parody,1394473303 +218809,527,atmospheric,1453027241 +218809,527,based on a true story,1440290037 +218809,527,Holocaust,1384086867 +218809,527,jews,1453027247 +218809,527,Steven Spielberg,1384086896 +218809,527,true story,1384086874 +218809,586,childhood classics,1394473425 +218809,586,for kids,1394473415 +218809,586,nostalgia,1394473432 +218809,589,dystopia,1394464171 +218809,589,sci-fi,1394464174 +218809,589,time travel,1394464168 +218809,593,psychology,1394464210 +218809,593,serial killer,1394464208 +218809,778,black comedy,1394470927 +218809,778,British,1394470914 +218809,778,Ewan McGregor,1394470917 +218809,778,great soundtrack,1394470919 +218809,778,social commentary,1394470894 +218809,778,surreal,1394470898 +218809,781,Jeremy Irons,1394471043 +218809,781,Nudity (Topless - Notable),1394471048 +218809,781,Nudity (Topless),1394471023 +218809,799,Death,1394473509 +218809,858,Mafia,1372449088 +218809,910,comedy,1394471070 +218809,1080,british comedy,1394473088 +218809,1080,comedy,1394472998 +218809,1080,Monty Python,1394472995 +218809,1080,satire,1394473001 +218809,1080,satirical,1394473078 +218809,1080,Terry Gilliam,1394473084 +218809,1089,dark comedy,1394471239 +218809,1093,biography,1394471864 +218809,1093,rock and roll,1394471861 +218809,1136,British,1394468713 +218809,1136,Monty Python,1394468719 +218809,1148,british,1394470437 +218809,1193,based on a book,1372448740 +218809,1193,literary adaptation,1372448743 +218809,1198,indiana jones,1394471284 +218809,1199,black comedy,1440288843 +218809,1199,dark comedy,1440288842 +218809,1199,dreamlike,1440288851 +218809,1199,dystopia,1394464069 +218809,1199,stylized,1440288866 +218809,1199,surreal,1394464074 +218809,1199,Terry Gilliam,1440288849 +218809,1199,thought-provoking,1440288855 +218809,1200,space,1394472390 +218809,1203,social commentary,1394472451 +218809,1208,psychological,1394472369 +218809,1214,sci-fi,1394472394 +218809,1215,comedy,1394474312 +218809,1215,horror,1394474310 +218809,1215,time travel,1394474307 +218809,1221,complex characters,1372449045 +218809,1221,mafia,1372449041 +218809,1222,Stanley Kubrick,1394471703 +218809,1237,afterlife,1372448645 +218809,1237,Death,1372448623 +218809,1237,dreamlike,1394463946 +218809,1237,Ingmar Bergman,1372448629 +218809,1240,time travel,1372448483 +218809,1246,bittersweet,1394469941 +218809,1246,Coming of age,1394469936 +218809,1246,inspirational,1394469933 +218809,1246,Robin Williams,1394469914 +218809,1259,coming of age,1394464181 +218809,1265,Bill Murray,1394469474 +218809,1265,time travel,1394469477 +218809,1270,Christopher Lloyd,1440289456 +218809,1270,Michael J. Fox,1440289446 +218809,1270,rock and roll,1372449272 +218809,1270,time loop,1440289466 +218809,1270,time travel,1372449267 +218809,1275,immortality,1394471652 +218809,1275,Sean Connery,1394471655 +218809,1288,rock and roll,1394464139 +218809,1289,meditative,1394468967 +218809,1289,nature,1394468973 +218809,1291,archaeology,1394469425 +218809,1291,indiana jones,1394469429 +218809,1358,mental illness,1394471108 +218809,1464,atmospheric,1394468877 +218809,1464,Surreal,1394468873 +218809,1485,comedy,1394471439 +218809,1485,father-son relationship,1394471434 +218809,1485,jim carrey,1394471431 +218809,1527,surreal,1394471816 +218809,1617,Kevin Spacey,1394468945 +218809,1617,twist ending,1394468949 +218809,1619,true story,1394464236 +218809,1625,twist ending,1394469613 +218809,1645,twist ending,1394471981 +218809,1682,alone in the world,1394470560 +218809,1682,dark comedy,1394470547 +218809,1682,Jim Carrey,1394470570 +218809,1682,surreal,1394470550 +218809,1704,mathematics,1394471681 +218809,1704,Robin Williams,1394471685 +218809,1721,true story,1394470964 +218809,1779,psychological,1394472648 +218809,1779,time travel,1394472646 +218809,1834,mystery,1420568784 +218809,1834,terrible acting,1420568799 +218809,1834,the acting,1420568804 +218809,1834,twist ending,1420568788 +218809,1884,surreal,1394469695 +218809,1961,autism,1394471360 +218809,1961,mental illness,1394471349 +218809,1961,psychology,1394471270 +218809,1961,road trip,1394471352 +218809,2000,comedy,1394471444 +218809,2001,comedy,1394473300 +218809,2011,sci-fi,1394472332 +218809,2011,time travel,1394472329 +218809,2012,time travel,1394472334 +218809,2025,Ennio Morricone,1394473257 +218809,2115,archaeology,1394469414 +218809,2115,Indiana Jones,1394469418 +218809,2160,Antichrist,1394472833 +218809,2160,satanism,1394472843 +218809,2232,psychological,1394472149 +218809,2297,philosophy,1394470427 +218809,2297,Robin Williams,1394470423 +218809,2297,surreal,1394470420 +218809,2324,Holocaust,1384087118 +218809,2329,Edward Norton,1394470283 +218809,2340,Anthony Hopkins,1394471421 +218809,2340,death,1394471417 +218809,2396,British,1394472732 +218809,2467,medieval,1394471333 +218809,2467,Sean Connery,1394471336 +218809,2478,parody,1394473777 +218809,2513,cliche ending,1394472969 +218809,2513,horror,1394472956 +218809,2529,post-apocalyptic,1394471290 +218809,2529,twist ending,1394471292 +218809,2542,dark comedy,1394468885 +218809,2571,sci-fi,1394468735 +218809,2571,surreal,1394468733 +218809,2600,virtual reality,1394471837 +218809,2672,alternate reality,1440289106 +218809,2672,dystopia,1394464151 +218809,2672,great ending,1440289117 +218809,2672,identity,1394464149 +218809,2672,simulated reality,1440289121 +218809,2672,virtual reality,1394464147 +218809,2692,time travel,1394471228 +218809,2700,satire,1394471064 +218809,2710,creepy,1394472285 +218809,2710,forest,1440289417 +218809,2710,found footage,1394472280 +218809,2710,horror,1394472230 +218809,2710,low budget,1394472227 +218809,2710,mimics documentary-style,1394472291 +218809,2710,mockumentary,1394472293 +218809,2716,Bill Murray,1394473473 +218809,2762,twist ending,1394471114 +218809,2763,intelligent thriller,1394473899 +218809,2763,Pierce Brosnan,1394473892 +218809,2763,plot holes,1394473895 +218809,2797,comedy,1394470056 +218809,2797,coming of age,1394470078 +218809,2797,New York,1394470086 +218809,2797,New York City,1394470088 +218809,2797,toys,1394470097 +218809,2826,good plot,1394473821 +218809,2826,Myth,1394473818 +218809,2826,vikings,1394473815 +218809,2841,mystery,1384084679 +218809,2857,rock and roll,1394470401 +218809,2857,surreal,1394470404 +218809,2858,dark comedy,1394470303 +218809,2858,multiple storylines,1394470306 +218809,2916,cyberpunk,1394470990 +218809,2916,dystopia,1394470942 +218809,2916,mars,1394470978 +218809,2916,sci-fi,1394470945 +218809,2916,virtual reality,1394470939 +218809,2959,dark comedy,1394464036 +218809,2959,David Fincher,1440288970 +218809,2959,Edward Norton,1440288954 +218809,2959,mindfuck,1440288986 +218809,2959,powerful ending,1440288980 +218809,2959,surreal,1394464044 +218809,2959,thought-provoking,1440288965 +218809,2959,twist ending,1440288957 +218809,2987,Christopher Lloyd,1394470451 +218809,2987,comedy,1394470457 +218809,2987,Robert Zemeckis,1394470447 +218809,2997,dark comedy,1394472314 +218809,2997,surreal,1394472318 +218809,2997,twist ending,1394472317 +218809,3044,twist ending,1394473534 +218809,3052,Comedy,1394471886 +218809,3052,satire,1394471883 +218809,3081,surreal,1394471099 +218809,3108,mental illness,1394469655 +218809,3108,Robin Williams,1394469660 +218809,3181,Anthony Hopkins,1394464132 +218809,3181,updated classics,1284202834 +218809,3252,Al Pacino,1394471177 +218809,3252,coming of age,1394471183 +218809,3476,flashbacks,1394469174 +218809,3476,hallucination,1394469169 +218809,3476,insanity,1394469171 +218809,3476,Nudity (Topless),1394469176 +218809,3476,paranoia,1394469181 +218809,3476,surreal,1394469149 +218809,3476,Tim Robbins,1394469159 +218809,3476,twist ending,1394469145 +218809,3481,coming of age,1394473442 +218809,3503,atmospheric,1394471083 +218809,3503,twist ending,1394471077 +218809,3510,time travel,1394471734 +218809,3617,comedy,1394472861 +218809,3617,masturbation,1394472851 +218809,3617,Nudity (Topless),1394472865 +218809,3617,road trip,1394472815 +218809,3617,Teen movie,1394472854 +218809,3698,Dystopia,1394472792 +218809,3706,mystery,1394470252 +218809,3706,Robert De Niro,1394470215 +218809,3752,Hilarious,1394473152 +218809,3752,Jim Carrey,1394473125 +218809,3752,sex related humorism,1394473147 +218809,3752,split personality,1394473149 +218809,3793,adapted from:comic,1394473851 +218809,3793,based on a comic,1394473836 +218809,3793,comic book,1394473833 +218809,3793,super-hero,1394473838 +218809,3793,superhero,1394473842 +218809,3793,superheroes,1394473846 +218809,3897,1970s,1394470338 +218809,3897,bittersweet,1394470352 +218809,3897,coming of age,1394470324 +218809,3897,great soundtrack,1394470358 +218809,3897,Nudity (Topless - Notable),1394470363 +218809,3897,rock and roll,1394470322 +218809,3949,psychology,1394471252 +218809,4011,dark comedy,1394471090 +218809,4011,twist ending,1394471092 +218809,4019,Sean Connery,1394471782 +218809,4027,Coen Brothers,1394471307 +218809,4226,identity,1394473170 +218809,4226,Mindfuck,1394473172 +218809,4226,time loop,1394473165 +218809,4226,twist ending,1394473129 +218809,4235,multiple storylines,1240932783 +218809,4306,satire,1394473979 +218809,4336,better than the american version,1394471327 +218809,4361,Dustin Hoffman,1394470951 +218809,4381,comedy,1394472161 +218809,4720,afterlife,1372448668 +218809,4720,Alejandro Amenábar,1453026873 +218809,4720,atmospheric,1372448661 +218809,4720,Bible,1440289244 +218809,4720,death,1372448690 +218809,4720,ghosts,1394463961 +218809,4720,Horror,1394463967 +218809,4720,surprise ending,1372448677 +218809,4720,twist ending,1372448680 +218809,4728,comedy,1394472827 +218809,4815,anthony hopkins,1394471647 +218809,4865,serial killer,1394471722 +218809,4874,jeff bridges,1394469085 +218809,4874,Kevin Spacey,1394469041 +218809,4878,atmospheric,1394469880 +218809,4878,philosophy,1394469863 +218809,4878,psychology,1394469861 +218809,4878,surreal,1394469829 +218809,4878,thought-provoking,1394469866 +218809,4878,time travel,1394469874 +218809,4878,twist ending,1394469824 +218809,4902,dark,1394471974 +218809,4902,ghosts,1394471977 +218809,4973,atmospheric,1394470314 +218809,4973,comedy,1394470316 +218809,4975,sci-fi,1394470490 +218809,4975,surreal,1394470487 +218809,4995,math,1440288905 +218809,4995,mathematics,1394470113 +218809,4995,schizophrenia,1394470116 +218809,4995,true story,1394470066 +218809,4995,twist ending,1394470068 +218809,5026,atmospheric,1394472198 +218809,5026,stylized,1394472196 +218809,5065,pointless,1394473065 +218809,5065,supernatural,1394473046 +218809,5294,twist ending,1394471758 +218809,5319,Ricardo Darin,1420568341 +218809,5319,twist ending,1416082060 +218809,5541,parody,1394471661 +218809,5570,mystery,1372448428 +218809,5570,suspense,1372448431 +218809,5570,thriller,1372448432 +218809,5630,Edward Norton,1394471264 +218809,5630,serial killer,1394471261 +218809,5669,social commentary,1394472212 +218809,5679,horror,1394471234 +218809,5679,mystery,1384087401 +218809,5679,zombies,1384087411 +218809,5956,Daniel Day-Lewis,1394473481 +218809,5956,true story,1394473478 +218809,5995,holocaust,1384087140 +218809,5995,jewish,1453027391 +218809,5995,jews,1453027389 +218809,5995,true story,1394472909 +218809,6016,based on a book,1394469963 +218809,6016,based on a true story,1394469959 +218809,6016,gangsters,1394469973 +218809,6016,true story,1394469923 +218809,6187,excellent script,1420568300 +218809,6187,Kevin Spacey,1420568287 +218809,6187,thought-provoking,1420568291 +218809,6187,twist-ending,1420568306 +218809,6281,Katie Holmes,1394472943 +218809,6281,New York City,1394472919 +218809,6281,serial killer,1394472917 +218809,6281,sniper,1394472940 +218809,6323,mystery,1384084419 +218809,6323,split personality,1384084442 +218809,6323,surreal,1394471552 +218809,6323,twist ending,1384084431 +218809,6373,Jim Carrey,1394473654 +218809,6792,Nikita Mikhalkov,1440289943 +218809,6792,Russia for foreigners,1440290007 +218809,6807,black comedy,1372448803 +218809,6807,British,1394468706 +218809,6807,british comedy,1372448800 +218809,6807,comedy,1394464007 +218809,6807,controversial,1372448871 +218809,6807,hilarious,1453027071 +218809,6807,John Cleese,1440289357 +218809,6807,Monty Python,1372448877 +218809,6807,satire,1372448857 +218809,6807,Terry Gilliam,1372448861 +218809,6863,Jack Black,1394472748 +218809,6863,rock and roll,1394472747 +218809,6874,Quentin Tarantino,1394471479 +218809,6953,multiple storylines,1394472447 +218809,7147,bittersweet,1384086790 +218809,7147,coming of age,1440289325 +218809,7147,fairy tales,1384086794 +218809,7147,father-son relationship,1440289320 +218809,7147,imagination,1440289337 +218809,7147,stylized,1384086814 +218809,7147,surreal,1440289340 +218809,7147,surrealism,1394470047 +218809,7147,thought-provoking,1440289322 +218809,7147,twist ending,1384086801 +218809,7254,alternate endings,1440288014 +218809,7254,alternate reality,1440287996 +218809,7254,memory,1440288007 +218809,7254,Mystery,1440287999 +218809,7254,sci-fi,1394469994 +218809,7254,thought-provoking,1440288032 +218809,7254,time travel,1440288023 +218809,7254,twist ending,1394469991 +218809,7323,Berlin,1394469582 +218809,7323,East Germany,1394469577 +218809,7323,great soundtrack,1394469588 +218809,7323,The fall of the Berlin wall,1394469595 +218809,7361,dreamlike,1440288442 +218809,7361,imagination,1440288439 +218809,7361,Jim Carrey,1394469713 +218809,7361,psychology,1394469716 +218809,7361,surreal,1394469704 +218809,7361,surrealism,1394469722 +218809,7361,thought-provoking,1394469720 +218809,7371,Lars von Trier,1394471894 +218809,7371,philosophical,1394471898 +218809,7371,philosophy,1394471899 +218809,7371,social commentary,1394471871 +218809,7438,twist ending,1394471473 +218809,7458,Myth,1394473870 +218809,7458,Peter O'Toole,1394473861 +218809,7505,black comedy,1394469003 +218809,7505,surreal,1394469006 +218809,8529,slow,1394473913 +218809,8529,unrealistic,1394473916 +218809,8622,politics,1394471824 +218809,8622,satire,1394471829 +218809,8783,surprise ending,1394472542 +218809,8783,twist ending,1394472544 +218809,8874,black comedy,1384087721 +218809,8874,British,1384087724 +218809,8874,british comedy,1384087729 +218809,8874,dark comedy,1394464226 +218809,8874,hilarious,1384087735 +218809,8874,parody,1394464231 +218809,8874,Simon Pegg,1384087742 +218809,8874,zombie,1384087751 +218809,8874,zombies,1384087746 +218809,8917,satire,1394472596 +218809,8950,Christian Bale,1394468819 +218809,8950,Nudity (Topless),1394468846 +218809,8950,psychology,1394468760 +218809,8950,twist ending,1394468780 +218809,8957,twist ending,1394471191 +218809,26702,not horror,1394474163 +218809,26702,weak plot,1394474165 +218809,27033,Lars von Trier,1394469013 +218809,27033,surreal,1394469021 +218809,27376,Berlin,1394470538 +218809,27376,escape,1394470541 +218809,27584,horror,1394472001 +218809,27584,mystery,1394471998 +218809,27674,black comedy,1440289500 +218809,27674,complicated plot,1394472484 +218809,27674,dark comedy,1394472461 +218809,27674,ensemble cast,1394472482 +218809,27674,multiple storylines,1394472457 +218809,27674,mystery,1394472470 +218809,27773,disturbing,1394468664 +218809,27773,twist ending,1394468650 +218809,31410,historical,1394469811 +218809,31410,history,1453027363 +218809,31410,World War II,1453027348 +218809,31807,Twisted Ending,1394464058 +218809,32587,superhero,1394471143 +218809,32587,surreal,1394471121 +218809,34532,better than expected,1284207466 +218809,34532,mysterious or thrilling,1284207455 +218809,34532,twist ending,1284207448 +218809,36401,boring,1394473731 +218809,36401,Heath Ledger,1394473720 +218809,36401,Matt Damon,1394473722 +218809,36401,Terry Gilliam,1394473715 +218809,43396,Anthony Hopkins,1394472503 +218809,43396,road trip,1394472524 +218809,43396,true story,1394472501 +218809,44191,dystopia,1394473789 +218809,44191,social commentary,1394473788 +218809,44555,dystopia,1394468919 +218809,44665,twist ending,1394468864 +218809,46723,multiple storylines,1394472342 +218809,46723,social commentary,1394472347 +218809,47465,Terry Gilliam,1394472586 +218809,47610,Edward Norton,1394473375 +218809,47610,twist ending,1394473378 +218809,47997,dark comedy,1394473382 +218809,47997,satire,1394473396 +218809,47997,social commentary,1394473384 +218809,48304,adventure,1394470158 +218809,48304,atmospheric,1394470160 +218809,48304,cultural customs and traditions,1394470162 +218809,48304,indians,1394470166 +218809,48304,Nudity (Topless),1394470153 +218809,48304,suspense,1394470150 +218809,48385,Male nudity,1453026945 +218809,48385,mockumentary,1453026938 +218809,48385,road trip,1453026940 +218809,48385,satire,1394472223 +218809,48385,social commentary,1394472216 +218809,48394,bittersweet,1384086765 +218809,48394,fantasy,1384086771 +218809,48394,psychology,1394468653 +218809,48394,surreal,1394468639 +218809,48394,twist ending,1384086752 +218809,48394,world war II,1384086757 +218809,48516,twist ending,1394469845 +218809,48543,german,1290849071 +218809,48543,serial killer,1290848980 +218809,48543,twist ending,1290848989 +218809,48738,based on a true story,1394471461 +218809,48738,historical,1394471464 +218809,48780,atmospheric,1453026617 +218809,48780,Christian Bale,1453026612 +218809,48780,mystery,1453026641 +218809,48780,nonlinear,1453026615 +218809,48780,twist ending,1453026610 +218809,48780,twists & turns,1453026638 +218809,51086,Jim Carrey,1394471316 +218809,51086,twist ending,1394471313 +218809,51255,black comedy,1440288385 +218809,51255,british comedy,1440288378 +218809,51255,dark comedy,1394469433 +218809,51255,parody,1440288391 +218809,51255,twists & turns,1440288406 +218809,52604,Anthony Hopkins,1394471768 +218809,52604,twist ending,1394471771 +218809,53468,social commentary,1394473517 +218809,53519,Quentin Tarantino,1394473524 +218809,53953,predictable ending,1384087577 +218809,53953,wasted potential,1384087585 +218809,53956,British,1394471991 +218809,53956,dark comedy,1394471993 +218809,53972,hackers,1394473290 +218809,53972,not as good as the first,1394473278 +218809,53972,weak plot,1394473284 +218809,54997,Christian Bale,1394472422 +218809,55067,religion,1394467890 +218809,55067,true story,1394467892 +218809,55247,bittersweet,1394469303 +218809,55247,coming of age,1394469307 +218809,55247,inspirational,1394469310 +218809,55247,road trip,1394469316 +218809,55247,self discovery,1394469320 +218809,55247,true story,1394469281 +218809,55820,coen brothers,1394468697 +218809,55820,serial killer,1394468695 +218809,55820,twist ending,1394468688 +218809,56145,twist ending,1394473019 +218809,56251,futurama,1394469624 +218809,56339,twist ending,1394471302 +218809,56757,Broadway,1394472623 +218809,56757,dark comedy,1394472600 +218809,56757,Tim Burton,1394472632 +218809,57274,horror,1394472411 +218809,57368,found footage,1394473613 +218809,57368,mockumentary,1394473618 +218809,57669,atmospheric,1394471576 +218809,57669,british comedy,1394471559 +218809,57669,dark comedy,1394471533 +218809,57669,twist ending,1394471536 +218809,58103,assassin,1394470518 +218809,58103,double agents,1416071878 +218809,58103,ending,1394470514 +218809,58103,multiple storylines,1394470502 +218809,58103,US President,1416071913 +218809,58306,history,1394471370 +218809,58559,Christian Bale,1394473570 +218809,58559,ensemble cast,1394473585 +218809,58559,superhero,1394473577 +218809,59615,Harrison Ford,1394473344 +218809,59615,indiana jones,1394473341 +218809,59615,silly,1394473346 +218809,60069,Animation,1394472565 +218809,60161,comedy,1394473504 +218809,61240,coming of age,1394471455 +218809,61323,Coen Brothers,1394470035 +218809,61323,Comedy,1394470033 +218809,61323,dark comedy,1384087856 +218809,61323,dark humor,1384087860 +218809,61323,funny,1440289575 +218809,61323,John Malkovich,1440289511 +218809,61323,twists & turns,1384087867 +218809,61323,unpredictable,1384087870 +218809,63062,Clint Eastwood,1394472180 +218809,63082,nonlinear,1394464190 +218809,64957,life & death,1394472122 +218809,64957,philosophical,1394472128 +218809,64957,philosophy,1394472126 +218809,68157,jews,1416071522 +218809,68952,poor acting,1384087646 +218809,68952,stupid ending,1384087650 +218809,69784,cocks,1453026998 +218809,69784,dicks,1453026987 +218809,69784,gay,1453026976 +218809,69784,homosexuality,1453026982 +218809,69784,mockumentary,1453026979 +218809,69784,social commentary,1453026991 +218809,69784,Stupid as Hell,1453026994 +218809,71033,based on a book,1394471164 +218809,72011,George Clooney,1263586749 +218809,74228,atmospheric,1416082416 +218809,74228,mystery,1416082428 +218809,74228,Surreal,1416082418 +218809,74228,time loop,1394470844 +218809,74228,time travel,1394470848 +218809,74228,twist ending,1394470835 +218809,74228,twists & turns,1394470853 +218809,74458,atmospheric,1394464218 +218809,74458,insanity,1384084465 +218809,74458,mindfuck,1453026777 +218809,74458,mystery,1384084473 +218809,74458,plot twist,1453026773 +218809,74458,stylized,1453026769 +218809,74458,thought-provoking,1384084471 +218809,74458,twist ending,1384084468 +218809,74727,prison escape,1394469562 +218809,74727,undercover cop,1394469552 +218809,78349,mindfuck,1394471843 +218809,79132,alternate reality,1453026572 +218809,79132,complicated,1384084909 +218809,79132,dreamlike,1453026555 +218809,79132,dreams,1453026558 +218809,79132,Leonardo DiCaprio,1453026578 +218809,79132,memory,1384084921 +218809,79132,mindfuck,1453026562 +218809,79132,plot twist,1384084912 +218809,79132,surreal,1453026571 +218809,79132,thought-provoking,1384084896 +218809,79132,twist ending,1384084916 +218809,79132,visually appealing,1453026575 +218809,79357,butterfly effect,1416082517 +218809,79357,flashbacks,1420568412 +218809,79357,memory,1416082507 +218809,79357,nonlinear,1416082498 +218809,79357,romance,1420568415 +218809,79357,surreal,1420568395 +218809,79357,thought provoking,1416082501 +218809,79357,time travel,1416082492 +218809,81591,dance,1394473742 +218809,81591,New York City,1394473751 +218809,81591,twist ending,1394473740 +218809,85414,Jake Gyllenhaal,1453026669 +218809,85414,mindfuck,1453026670 +218809,85414,parallel universe,1453026667 +218809,85414,predictable ending,1453026689 +218809,85414,sci-fi,1394463921 +218809,85414,time loop,1453026704 +218809,85414,time travel,1394463916 +218809,90405,dystopia,1394473371 +218809,90405,social commentary,1394473368 +218809,91658,twist ending,1394473465 +218809,92259,cliche,1394469344 +218809,92259,emotional,1394469362 +218809,92259,feel good movie,1394469363 +218809,92259,rich and poor,1394469339 +218809,94466,satire,1394472246 +218809,94466,technology,1394472243 +218809,94677,political satire,1453027045 +218809,94677,satire,1453027025 +218809,96829,falsely accused,1427795189 +218809,96829,surprise endings,1427795194 +218809,97188,dumb ending,1384087544 +218809,97306,Christopher Walken,1394474121 +218809,97306,Colin Farrell,1394474119 +218809,97306,dark comedy,1384087815 +218809,97306,metafiction,1384087824 +218809,97752,complicated,1372448285 +218809,97752,multiple storylines,1372448304 +218809,97752,visually appealing,1372448270 +218809,99912,children,1384084580 +218809,99912,cliche,1384084546 +218809,99912,feral children,1384084588 +218809,102407,anachronistic music,1453026443 +218809,102407,disappointing,1453026452 +218809,102407,Leonardo DiCaprio,1453026424 +218809,102407,Modern music,1453026435 +218809,102407,stylized,1453026426 +218809,102407,visually appealing,1453026450 +218809,103235,compelling,1420568514 +218809,103235,twist ending,1420568493 +218809,103306,Found footage,1394471850 +218809,103306,hard science fiction,1384085034 +218809,103306,jupiter,1384085048 +218809,103306,space,1384085029 +218809,103621,surreal,1394474331 +218809,104879,atmospheric,1394463847 +218809,104879,Jake Gyllenhaal,1394463850 +218809,106100,transgender,1453027172 +218809,106918,Ben Stiller,1420568242 +218809,106918,boring,1420568228 +218809,106918,Greenland,1420568253 +218809,106918,Iceland,1420568189 +218809,106918,surreal,1420568192 +218809,106918,visually appealing,1453027282 +218809,106920,artificial intelligence,1440288483 +218809,106920,meaning of life,1440288497 +218809,106920,thought-provoking,1440288485 +218809,109374,Edward Norton,1453027429 +218809,109374,stylized,1453027431 +218809,109374,visually appealing,1453027414 +218809,109487,black hole,1453026740 +218809,109487,Christopher Nolan,1416137541 +218809,109487,good science,1453026723 +218809,109487,Matthew McConaughey,1416137544 +218809,109487,physics,1453026744 +218809,109487,relativity,1416137551 +218809,109487,space,1453026719 +218809,109487,space exploration,1453026752 +218809,109487,space travel,1453026738 +218809,109487,thought-provoking,1416137579 +218809,109487,time travel,1453026727 +218809,109487,time-travel,1416137565 +218809,109487,visually appealing,1453026731 +218809,109487,wormhole,1416137547 +218809,112556,Ben Affleck,1420586280 +218809,112556,David Fincher,1420586273 +218809,112556,false accusation,1420586321 +218809,112556,unpredictable,1420586269 +218809,139385,Western,1453026497 +218877,260,Amazing Sci-fi,1440530453 +218877,260,good effects,1440530477 +218877,260,sci-fi,1440530438 +218900,6155,Good Romantic Comedies,1159237772 +218905,260,good versus evil,1436086788 +218905,260,Science Fiction,1436086770 +218909,1258,Horror,1361023021 +218909,4973,beautifully filmed,1361034665 +218909,4973,cult film,1361034680 +218909,4973,fairy tale,1361034668 +218909,4973,great soundtrack,1361034672 +218909,4973,romance,1361034677 +218909,27773,disturbing,1361023112 +218909,98809,beautiful scenery,1361034227 +218909,98809,fantasy,1361034212 +218909,98809,stupid fight scenes,1361034219 +218941,50,short-term memory loss,1370580849 +218941,107,treasure,1370580409 +218941,208,dark hero,1370580640 +218941,296,entirely dialogue,1370580738 +218941,353,dark hero,1370580640 +218941,380,arnold,1370580674 +218941,485,arnold,1370580674 +218941,551,dr. seuss,1370580817 +218941,589,arnold,1370580674 +218941,592,dark hero,1370580640 +218941,648,mountain climbing,1370580829 +218941,668,bollywood,1370580365 +218941,832,conspiracy theory,1370580777 +218941,898,screwball comedy,1370580695 +218941,905,screwball comedy,1370580695 +218941,913,noir thriller,1370580582 +218941,950,screwball comedy,1370580695 +218941,1240,arnold,1370580674 +218941,1248,noir thriller,1370580582 +218941,1291,spielberg,1370580870 +218941,1291,treasure,1370580409 +218941,1387,spielberg,1370580870 +218941,1391,mars,1370580623 +218941,1396,conspiracy theory,1370580777 +218941,1580,conspiracy theory,1370580777 +218941,1894,stranded,1370580610 +218941,1895,cheerleading,1370580662 +218941,2022,christian,1370580714 +218941,2022,jesus,1370580389 +218941,2028,spielberg,1370580870 +218941,2115,spielberg,1370580870 +218941,2115,treasure,1370580409 +218941,2193,dragon,1370580800 +218941,2353,conspiracy theory,1370580777 +218941,2405,treasure,1370580409 +218941,2617,treasure,1370580409 +218941,2662,mars,1370580623 +218941,2718,cheerleading,1370580662 +218941,2726,noir thriller,1370580582 +218941,2840,jesus,1370580389 +218941,2916,arnold,1370580674 +218941,3052,jesus,1370580389 +218941,3300,stranded,1370580610 +218941,3623,mountain climbing,1370580829 +218941,4878,short-term memory loss,1370580849 +218941,5135,bollywood,1370580365 +218941,5445,spielberg,1370580870 +218941,5507,adventure,1341289346 +218941,5507,ridiculous training sequence,1341289360 +218941,6281,based around one item,1341295115 +218941,6281,crime,1341295127 +218941,6281,interesting,1341295098 +218941,6281,secrets,1341295119 +218941,6539,treasure,1370580409 +218941,6874,dark hero,1370580640 +218941,7013,noir thriller,1370580582 +218941,7318,jesus,1370580389 +218941,7386,christian,1370580714 +218941,8366,christian,1370580714 +218941,8529,stranded,1370580610 +218941,8622,conspiracy theory,1370580777 +218941,51255,action,1341290809 +218941,51255,british comedy,1341290802 +218941,51255,comedy,1341290811 +218941,51255,parody,1341290805 +218941,51884,bollywood,1370580365 +218941,63082,bollywood,1370580365 +218941,71530,alternate reality,1341295753 +218941,71530,androids,1341295750 +218941,71530,bad ending,1341295762 +218941,71530,predictable,1341295759 +218941,71530,sci-fi,1341295748 +218941,71530,surreal,1341295771 +218941,71530,technology,1341295766 +218941,80463,based on a true story,1341290373 +218941,80463,computers,1341290377 +218941,80463,friendship,1341290380 +218941,80906,business,1341296131 +218941,80906,investor corruption,1341296123 +218941,80906,truth,1341296124 +218941,81847,animation,1341289792 +218941,81847,Disney,1341289785 +218941,81847,fairy tale,1341289771 +218941,81847,visually appealing,1341289774 +218941,82095,aliens,1341290173 +218941,82095,boring,1341290169 +218941,82095,just not good,1341290165 +218941,82095,sci-fi,1341290160 +218941,82167,Drug use,1341290137 +218941,82167,Laughs,1341290110 +218941,82167,romantic comedy,1341290130 +218941,82202,chemistry between actors,1341289932 +218941,82202,dialogue,1341289929 +218941,82461,sci-fi,1341290038 +218941,82499,love triangles,1341289978 +218941,82499,predictable,1341289989 +218941,82499,Reese Witherspoon,1341289975 +218941,83910,not funny,1341295832 +218941,84152,cliche,1341289393 +218941,84152,pseudo-intelligent,1341289397 +218941,84152,sci-fi,1341289400 +218941,84152,thought provoking,1341289388 +218941,84374,chick flick,1341289863 +218941,84374,Natalie Portman,1341289859 +218941,84601,Bournealike,1341289689 +218941,84601,conspiracy,1341289684 +218941,84601,identity theft,1341289674 +218941,84601,January Jones,1341289672 +218941,84601,paranoia,1341289681 +218941,84637,animated,1341290021 +218941,84637,bad jokes,1341290017 +218941,84942,bad acting,1341290554 +218941,84942,cars,1341290561 +218941,84942,poor plot,1341290557 +218941,84944,boring,1341290586 +218941,84944,self discovery,1341290591 +218941,84944,western,1341290589 +218941,84950,comedy,1341289902 +218941,84950,Teresa Palmer,1341289897 +218941,84954,fate,1341290521 +218941,84954,plot,1341290528 +218941,84954,Romance,1341290516 +218941,85022,bad message,1341290067 +218941,85022,comedy,1341290062 +218941,85414,parallel universe,1341289813 +218941,85414,suspense,1341289809 +218941,85414,twist ending,1341289817 +218941,86190,character development,1341290289 +218941,86190,Eric Bana,1341290287 +218941,86190,great soundtrack,1341290285 +218941,86190,strong female lead,1341290281 +218941,86293,Jennifer Garner,1341290224 +218941,86293,Russell Brand,1341290229 +218941,89074,advertising,1341289257 +218941,89074,documentary,1341289263 +218941,89074,Morgan Spurlock,1341289271 +218941,90439,financial crisis,1341295889 +218941,90439,suspense,1341295881 +218941,90439,tense,1341295894 +218941,90647,animation,1341289634 +218941,90647,cats,1341289629 +218941,90647,fairy tale,1341289639 +218941,90647,visually appealing,1341289627 +218941,91978,corrupt cops,1341289455 +218941,91978,suspense,1341289451 +218941,92420,sci-fi,1341289490 +218941,92420,shaky footage,1341289519 +218941,92420,teenage angst,1341289501 +218941,92509,memory,1341289219 +218941,92509,plot,1341289224 +218941,92509,romance,1341289200 +218941,92509,romantic,1341289209 +218941,93326,Reese Witherspoon,1341289729 +218941,93326,spy,1341289733 +218941,93510,drugs,1341289583 +218941,93510,parody,1341289578 +218941,93510,silly,1341289591 +218941,93510,undercover cops,1341289572 +218965,1732,coen brothers,1177497255 +218965,1732,Cult classic,1177497223 +218965,6286,finnland,1177497547 +218989,1036,heist film,1349993358 +218989,1036,low violence,1349993357 +218989,1036,police,1349993358 +218989,1213,mafia,1349993422 +218989,2001,police drama,1349993487 +218989,2001,violence,1349993487 +218989,2411,fighting,1349993567 +218989,2916,Arnold Schwarzenegger,1349993249 +218989,2916,dystopia,1349993249 +218989,2916,Special Effects,1349993249 +218989,2959,violence,1349993387 +218989,5801,cold war,1349993590 +218989,6664,death,1349995977 +218989,6664,girl,1349995976 +218989,6664,murder,1349995977 +218989,6664,shooting,1349995977 +218989,6664,violence,1349995977 +218989,6800,police brutality,1349993282 +218989,53972,computers,1349993520 +218989,71462,storytelling,1349993314 +218997,745,Aardman,1159801684 +218997,1148,Aardman,1159801690 +218997,7063,Werner Herzog,1159801701 +218997,7925,Akira Kurosawa,1214260515 +218997,45447,anti-Christian,1198877334 +219008,2067,epic,1313587651 +219030,133195,action,1440534550 +219030,140529,horror,1440534580 +219059,18,Antonio Banderas,1313280876 +219059,18,Bruce Willis,1313280878 +219059,18,hotel,1313280902 +219059,18,Quentin Tarantino,1313280894 +219059,18,Robert Rodriguez,1313280884 +219059,18,Tim Roth,1313280887 +219059,76755,Cillian Murphy,1313280208 +219059,76755,Ellen Page,1313280212 +219059,76755,Josh Lucas,1313280230 +219059,76755,small town,1313280221 +219059,76755,Susan Sarandon,1313280232 +219064,468,Hugh Grant,1448552322 +219064,4973,atmospheric,1448552288 +219064,4973,Audrey Tautou,1448552285 +219064,4973,beautifully filmed,1448552290 +219064,4973,great soundtrack,1448552292 +219064,4973,visually appealing,1448552282 +219065,260,jedi,1434446814 +219065,260,starship,1434446794 +219093,260,good for kids,1438638231 +219118,260,classic sci-fi,1436331290 +219118,260,space adventure,1436331298 +219129,111,cult film,1326971636 +219129,111,Martin Scorsese,1326971638 +219129,296,dark comedy,1326971328 +219129,296,Quentin Tarantino,1326971325 +219129,357,British,1326971525 +219129,454,John Grisham,1326971521 +219129,589,dystopia,1326971633 +219129,593,Oscar (Best Picture),1326971318 +219129,593,serial killer,1326971315 +219129,778,dark comedy,1326971403 +219129,858,organized crime,1326971507 +219129,1089,organized crime,1326971457 +219129,1200,action,1326971607 +219129,1200,sci-fi,1326971609 +219129,1214,sci-fi,1326971383 +219129,1240,Action,1326971421 +219129,1240,sci-fi,1326971424 +219129,1245,Coen Brothers,1326971477 +219129,1254,classic,1326971311 +219129,1254,disturbing,1326971307 +219129,1617,conspiracy,1326971355 +219129,1732,Coen Brothers,1326971376 +219129,1732,cult film,1326971379 +219129,1923,Ben Stiller,1326971415 +219129,1923,comedy,1326971418 +219129,2360,dark comedy,1326971891 +219129,2700,parody,1326971444 +219129,2700,satire,1326971445 +219129,2762,Bruce Willis,1326971451 +219129,2762,psychology,1326971448 +219129,2871,gritty,1326971560 +219129,2871,Thriller,1326971557 +219129,2916,dystopia,1326971408 +219129,3498,disturbing,1326971485 +219129,3948,Robert De Niro,1326971489 +219129,4011,dark comedy,1326971647 +219129,4027,Coen Brothers,1326971347 +219129,4034,social commentary,1326971628 +219129,4546,disturbing,1326971397 +219129,4855,disturbing,1326971551 +219129,5013,atmospheric,1326971500 +219129,7149,Comedy,1326971644 +219129,7149,Jack Nicholson,1326971641 +219129,7505,black comedy,1326971358 +219129,7505,surreal,1326971362 +219129,8798,Coen Brothers,1326971564 +219129,27002,Tom Hanks,1326971828 +219129,27033,Lars von Trier,1326971365 +219129,31410,disturbing,1326971553 +219129,48394,surreal,1326971471 +219129,54286,espionage,1326971583 +219129,56339,fairy tale,1326971337 +219129,56339,ghosts,1326971335 +219129,59369,action,1326971430 +219129,59369,espionage,1326971433 +219129,60069,dystopia,1326971616 +219129,64499,Steven Soderbergh,1326971580 +219129,91658,serial killer,1326971509 +219143,260,adventure,1439800515 +219143,260,sci-fi,1439800506 +219153,6016,based on a true story,1378228198 +219153,6016,black comedy,1378228204 +219153,6016,gangsters,1378228221 +219153,6016,violence,1378228233 +219168,48678,so bad it's funny,1197321749 +219181,954,James Stewart,1212737572 +219211,89470,apocalypse,1451014953 +219211,89470,epidemic,1451014969 +219239,260,Luke Skywalker,1439792254 +219239,260,Yoda,1439792257 +219256,8376,painful,1183187494 +219262,2571,sci-fi,1449394356 +219262,8984,heist film,1449394410 +219262,45499,action,1449394393 +219272,3147,compassionate,1360256396 +219272,3147,social commentary,1360256390 +219272,44191,inspirational,1360256326 +219272,44191,Natalie Portman,1360256323 +219272,44191,philosophy,1360256314 +219272,44191,revenge,1360256320 +219272,44191,social commentary,1360256307 +219272,44191,thought-provoking,1360256310 +219272,46976,surreal,1360256375 +219272,46976,touching,1360256373 +219275,260,future,1442689257 +219275,260,sci-fi,1442689237 +219275,260,space adventure,1442689209 +219275,260,Star Wars,1442689223 +219308,1204,dvd,1145127821 +219308,1233,dvd,1145127648 +219308,1441,dvd,1145127715 +219308,1527,dvd,1145127889 +219308,1635,dvd,1145127807 +219308,2140,dvd,1145127751 +219308,2435,dvd,1145127671 +219308,2575,buy,1160196313 +219308,3518,dvd,1145127770 +219308,3751,dvd,1145127735 +219308,4881,dvd,1145127910 +219308,4993,dvd,1145127839 +219308,5952,dvd,1145127847 +219308,7090,dvd,1145127792 +219308,7153,dvd,1145127844 +219308,8970,buy,1137646768 +219308,33166,must see,1141629792 +219308,36517,must see,1141629632 +219326,62511,philosophy,1292029054 +219351,62511,philosophy,1358144202 +219351,62511,surreal,1358144199 +219363,4886,Comedy,1439827334 +219363,4896,Adventure,1439827124 +219363,4896,boarding school,1439827132 +219363,4896,mystery,1439827121 +219363,4993,way too long,1439827622 +219363,8961,comedy,1439827187 +219363,8961,Pixar,1439827178 +219363,45447,Mystery,1439827204 +219363,64034,Friendship,1439827369 +219363,64034,touching,1439827366 +219363,69712,relationships,1439827394 +219363,72998,too long,1439827496 +219363,74458,plot twist,1439827294 +219363,74458,twist ending,1439827286 +219363,81834,Emma Watson,1439827152 +219363,81834,Harry Potter,1439827156 +219363,89745,comic book,1439827595 +219363,91500,based on a book,1439827225 +219363,91500,shaky camera,1439827229 +219363,91500,survival,1439827241 +219397,858,Mafia,1426542481 +219397,858,organized crime,1426542488 +219397,5952,Adventure,1426542708 +219397,5952,Epic,1426542712 +219397,5952,fantasy,1426542699 +219397,5952,great soundtrack,1426542715 +219397,5952,scenic,1426542703 +219397,58559,Batman,1426542651 +219397,58559,Christian Bale,1426542655 +219397,58559,comic book,1426542649 +219397,58559,Michael Caine,1426542660 +219397,58559,thriller,1426542667 +219397,79132,action,1426521189 +219397,79132,alternate reality,1426521200 +219397,79132,great soundtrack,1426521181 +219397,79132,sci-fi,1426521208 +219397,91658,based on a book,1426542597 +219397,91658,Daniel Craig,1426542576 +219397,91658,long,1426542587 +219397,91658,mystery,1426542579 +219397,91658,suspense,1426542573 +219397,91658,thriller,1426542583 +219402,5026,atmospheric,1410359730 +219402,5026,martial arts,1410359724 +219402,5026,werewolf,1410359737 +219433,260,fantasy,1441394644 +219433,260,space adventure,1441394686 +219439,50,Kevin Spacey,1231810625 +219439,50,twist ending,1231810627 +219439,296,imdb top 250,1231810714 +219439,541,sci-fi,1231810274 +219454,39183,director-screenwriter,1400041063 +219454,39183,leading men,1400041063 +219454,39183,romance,1400041063 +219454,39183,scenic,1400041063 +219454,39183,soundtracks,1400041063 +219465,46723,Alejandro Gonzalez Inarritu,1246055831 +219465,46723,Brad Pitt,1246055876 +219465,46723,Gael García Bernal,1246055893 +219465,56174,post-apocalyptic,1428259342 +219465,56174,survival,1428259351 +219465,56174,zombies,1428259346 +219465,63072,post-apocalyptic,1428259311 +219465,65631,1999 Seattle Protest,1238886071 +219465,65631,Protest,1238885986 +219465,65631,WTO,1238885979 +219469,260,scifi,1440009140 +219480,47610,Paul Giamatti,1202467584 +219494,296,dark comedy,1245395088 +219494,296,good acting,1245395088 +219494,296,suprisingly clever,1245395088 +219494,593,psychology,1245397738 +219494,2321,affectionate,1245396453 +219494,2321,coming of age,1245396456 +219494,2321,great acting,1245396429 +219494,2321,heartwarming,1245396429 +219494,2321,Jeff Daniels,1245396478 +219494,2321,moral ambiguity,1245396429 +219494,2321,picture,1245396429 +219494,2321,poignant,1245396502 +219494,2321,Reese Witherspoon,1245396469 +219494,2321,satirical,1245396493 +219494,2321,Saturn Award (Best Performance by a Younger Actor),1245396498 +219494,2321,stylized,1245396459 +219494,2321,surreal,1245396491 +219494,2321,television,1245396486 +219494,2321,tobey maguire,1245396429 +219494,2321,whimsical,1245396463 +219494,2321,witty,1245396429 +219494,3949,dark,1245397128 +219494,3949,psychology,1245397123 +219494,4205,Michael Schoeffling,1245397668 +219494,4765,paul dano,1245982410 +219494,4973,beautifully filmed,1245397239 +219494,4973,feel-good,1245397242 +219494,4973,quirky,1245397245 +219494,4973,romance,1245397247 +219494,4973,whimsical,1245397250 +219494,4995,genius,1245396918 +219494,4995,mental illness,1245396915 +219494,4995,nobel prize,1245396923 +219494,4995,psychology,1245396908 +219494,4995,schizophrenia,1245396921 +219494,4995,true story,1245396912 +219494,32584,Moving,1245982266 +219494,32584,paul dano,1245982277 +219494,39183,beautiful,1245396775 +219494,39183,bittersweet,1245396777 +219494,39183,Heath Ledger,1245396800 +219494,39183,melancholy,1245396783 +219494,39183,Nudity (Topless - Notable),1245396811 +219494,39183,Oscar (Best Directing),1245396780 +219494,39183,Oscar (Best Picture),1245396823 +219494,39183,romance,1245396793 +219494,39183,Tragedy,1245396795 +219494,45664,paul dano,1245982335 +219494,46578,affectionate,1245397446 +219494,46578,dark comedy,1245397471 +219494,46578,family,1245397484 +219494,46578,feel-good,1245397474 +219494,46578,heartwarming,1245397477 +219494,46578,hilarious,1245397469 +219494,46578,inspirational,1245397486 +219494,46578,off-beat comedy,1245397461 +219494,46578,quirky,1245397463 +219494,46578,Steve Carell,1245397466 +219494,48394,atmospheric,1245397064 +219494,48394,bittersweet,1245397032 +219494,48394,dark,1245397036 +219494,48394,sci-fi,1245397058 +219494,48394,surreal,1245397040 +219494,48394,twist ending,1245397038 +219494,54094,Rupert Grint,1246673979 +219494,56782,amazing acting!,1245982459 +219494,56782,morality,1245982466 +219494,56782,paul dano,1245982476 +219494,56782,religion,1245982454 +219494,63082,cinematography,1245396709 +219494,63082,good plot,1245396711 +219494,63082,interrogation,1245396736 +219494,63082,love,1245396695 +219494,63082,music,1245396691 +219494,63082,Oscar (Best Directing),1245396729 +219494,63082,Oscar (Best Editing),1245396697 +219494,63082,Oscar (Best Sound),1245396700 +219494,63082,torture,1245396716 +219494,63082,violence,1245396722 +219495,260,sci-fi,1432266897 +219495,260,space,1432266907 +219495,86880,adventure,1432267840 +219495,86880,mermaids,1432267840 +219495,86880,pirates,1432267840 +219536,32,dystopian,1223967501 +219536,32,twist ending,1223967526 +219536,247,LGBT,1223972696 +219536,247,queer,1223972701 +219536,444,lesbian,1223972357 +219536,444,LGBT,1223972346 +219536,444,queer,1223972351 +219536,500,Comedy,1223968292 +219536,500,Drama,1223968296 +219536,527,black and white,1223967926 +219536,527,historical,1223967932 +219536,527,judaica,1223967908 +219536,527,literary adaptation,1223967923 +219536,527,survivor,1223967893 +219536,527,war,1223967883 +219536,531,children's,1223967783 +219536,531,lyrical,1223967757 +219536,531,magical,1223967764 +219536,766,lesbian,1245008041 +219536,766,lgbt,1245008029 +219536,866,LGBT,1223972588 +219536,866,queer,1223972593 +219536,1193,drama,1223968248 +219536,1193,literary adaptation,1223968244 +219536,1193,psychological,1223968261 +219536,1198,action,1223968046 +219536,1198,adventure,1223968034 +219536,1198,comedy,1223968060 +219536,1198,epic,1223968054 +219536,1211,artistic,1223968231 +219536,1211,lyrical,1223967638 +219536,1211,poetic,1223967452 +219536,1211,poetry,1223967470 +219536,1211,surreal,1223967460 +219536,1211,Wim Wnders,1223967445 +219536,1258,Horror,1223967731 +219536,1258,literary adaptation,1223967719 +219536,1258,psychological,1223967727 +219536,1258,thriller,1223967737 +219536,1554,artistic,1223968181 +219536,1554,autobiographical,1223968156 +219536,1554,dark,1223968209 +219536,1554,literary adaptation,1223968203 +219536,1554,poetic,1223968191 +219536,1554,poetry,1223968196 +219536,1554,romance,1223968144 +219536,1721,drama,1223967689 +219536,1721,high romance,1223967562 +219536,1721,historical,1223967682 +219536,1734,queer,1223972656 +219536,2774,lgbt,1245007980 +219536,3000,anime,1223968083 +219536,3000,drama,1223968092 +219536,3000,dystopia,1223968117 +219536,3000,environmental,1223968096 +219536,3000,fantasy,1223968088 +219536,3000,surreal,1223968104 +219536,3083,GLBT,1223972750 +219536,3083,queer,1223972756 +219536,4306,animation,1223967616 +219536,4306,children's,1223967591 +219536,4306,comedy,1223967608 +219536,4306,satire,1223967610 +219536,5791,LGBT,1223972324 +219536,5791,queer,1223972330 +219536,5963,Lesbian,1223972564 +219536,5963,LGBT,1223972560 +219536,5963,queer,1223972568 +219536,7615,lgbt,1244431423 +219536,8873,adventure,1223968363 +219536,8873,biographical,1223968340 +219536,8873,panoramic,1223968321 +219536,8873,political,1223968329 +219536,36535,genealogical,1223968020 +219536,36535,judaica,1223967989 +219536,36535,literary adaptation,1223967984 +219536,36535,modern culture,1223968008 +219536,39183,GLBT,1223972537 +219536,39183,queer,1223972543 +219536,48082,dream-like,1223967841 +219536,48082,fantasy,1223967817 +219536,48082,romance,1223967821 +219536,48082,surreal,1223967807 +219540,260,fantasy,1440730213 +219540,260,space epic,1440730222 +219548,2,fantasy,1275477535 +219548,2,Robin Williams,1275477534 +219548,2,time travel,1275477538 +219548,6,Al Pacino,1275999666 +219548,6,overrated,1275999672 +219548,6,Robert De Niro,1275999657 +219548,19,Jim Carrey,1275999708 +219548,25,based on a book,1274750367 +219548,25,depressing,1274750390 +219548,25,drama,1274750369 +219548,25,Nicolas Cage,1274750360 +219548,25,Nudity (Topless),1274750383 +219548,25,Oscar (Best Actor),1274750361 +219548,25,prostitution,1274750378 +219548,36,Christianity,1275477467 +219548,36,Oscar (Best Actress),1275477472 +219548,36,Sean Penn,1275477475 +219548,36,Susan Sarandon,1275477483 +219548,36,true story,1275477486 +219548,50,complicated,1272023080 +219548,50,Kevin Spacey,1272023077 +219548,165,always watch it when it's on tv,1274749471 +219548,165,Bruce Willis,1274749448 +219548,165,Samuel L. Jackson,1274749450 +219548,296,cult film,1272357716 +219548,296,multiple storylines,1272357721 +219548,296,nonlinear,1272357711 +219548,296,Quentin Tarantino,1272357703 +219548,296,Samuel L. Jackson,1272357708 +219548,318,based on a book,1272023045 +219548,318,drama,1272023053 +219548,318,Morgan Freeman,1272023046 +219548,318,Stephen King,1272023048 +219548,434,remember from childhood,1276029537 +219548,457,Oscar (Best Supporting Actor),1272023196 +219548,457,Tommy Lee Jones,1274749495 +219548,480,dinosaurs,1275999556 +219548,480,Steven Spielberg,1275999555 +219548,484,dogs,1259519274 +219548,541,Harrison Ford,1275141404 +219548,587,Oscar Winner,1274749727 +219548,593,Anthony Hopkins,1275999525 +219548,593,based on a book,1275999538 +219548,593,disturbing,1275999534 +219548,593,Hannibal Lecter,1275999527 +219548,593,psychology,1275999523 +219548,912,classic,1275999496 +219548,912,Film Noir,1275999480 +219548,912,Oscar (Best Picture),1275999484 +219548,924,artificial intelligence,1282644713 +219548,924,don't watch this sleepy from your bed,1282644680 +219548,924,Stanley Kubrick,1282644715 +219548,1036,always watch it when it's on tv,1274749911 +219548,1036,Bruce Willis,1274749915 +219548,1036,christmas,1274749910 +219548,1036,lone hero,1274749914 +219548,1196,George Lucas,1275941612 +219548,1196,star wars,1275941614 +219548,1198,classic,1275942099 +219548,1198,Harrison Ford,1275942249 +219548,1198,indiana jones,1275942094 +219548,1198,Steven Spielberg,1275942096 +219548,1206,cult film,1275999411 +219548,1206,psychology,1275999424 +219548,1206,satire,1275999420 +219548,1206,Stanley Kubrick,1275999404 +219548,1206,stylized,1275999408 +219548,1213,mafia,1272357749 +219548,1213,organized crime,1272357740 +219548,1213,Robert De Niro,1272357736 +219548,1213,Samuel L. Jackson,1272357743 +219548,1214,classic,1274749952 +219548,1214,Oscar (Best Effects - Visual Effects),1274749950 +219548,1214,Ridley Scott,1274749945 +219548,1214,space,1274749958 +219548,1228,Robert De Niro,1272357540 +219548,1240,Arnold Schwarzenegger,1274749392 +219548,1240,great soundtrack,1274749402 +219548,1240,time travel,1274749395 +219548,1258,cult film,1276028736 +219548,1258,Jack Nicholson,1276028741 +219548,1258,Stanley Kubrick,1276028734 +219548,1391,Didn't finish,1276000959 +219548,1407,horror,1276000891 +219548,1527,always watch it when it's on tv,1275941998 +219548,1527,Bruce Willis,1275942005 +219548,1527,watched as kid,1275942058 +219548,1608,don't remember,1276000781 +219548,1653,Ethan Hawke,1276000610 +219548,1653,Jude Law,1276000610 +219548,1653,seen more than once,1276000711 +219548,1653,Uma Thurman,1276000612 +219548,1682,dreamlike,1274749797 +219548,1682,dystopia,1274749795 +219548,1682,Jim Carrey,1274749787 +219548,1682,original plot,1274749791 +219548,1682,social commentary,1274749789 +219548,1704,Great Screenplays,1274749656 +219548,1704,mathematics,1274749648 +219548,1704,Matt Damon,1274749650 +219548,1704,Oscar (Best Supporting Actor),1274749651 +219548,1704,psychology,1274749661 +219548,1704,Robin Williams,1274749653 +219548,1923,Ben Stiller,1274749696 +219548,1923,Cameron Diaz,1274749700 +219548,1923,comedy,1274749689 +219548,2011,time travel,1274749886 +219548,2012,time travel,1274749875 +219548,2340,Anthony Hopkins,1259519431 +219548,2340,Brad Pitt,1259519429 +219548,2340,death,1259519453 +219548,2694,Adam Sandler,1276000545 +219548,2694,Rob Schneider,1276000553 +219548,2694,Steve Buscemi,1276000562 +219548,2706,comedy,1275941927 +219548,2706,stupid,1275941920 +219548,2710,unsteady-cam,1274749769 +219548,2724,don't remember,1276000518 +219548,2916,alternate universe,1274750220 +219548,2916,Arnold Schwarzenegger,1274750214 +219548,2916,conspiracy,1274750228 +219548,2916,original plot,1274750222 +219548,2997,dark comedy,1275941211 +219548,2997,John Cusack,1275941203 +219548,2997,John Malkovich,1275941197 +219548,2997,surrealism,1275941188 +219548,2997,womens cunning,1275941427 +219548,3578,Ridley Scott,1275941884 +219548,3578,Russell Crowe,1275941892 +219548,3617,USA disgrace other country,1276000456 +219548,3785,funny,1276000369 +219548,3785,parody,1276000367 +219548,3785,stupid,1276000373 +219548,3793,comic book,1275941648 +219548,3793,super-hero,1275941647 +219548,3948,Ben Stiller,1274750255 +219548,3948,comedy,1274750256 +219548,3948,Robert De Niro,1274750253 +219548,3996,Kung Fu,1276020463 +219548,3996,martial arts,1276020468 +219548,3996,romance,1276020473 +219548,4022,drama,1276000250 +219548,4022,helen hunt,1276000254 +219548,4022,seen at the cinema,1276000352 +219548,4022,Tom Hanks,1276000252 +219548,4226,memory,1272357688 +219548,4226,nonlinear,1272357686 +219548,4226,psychological,1272357689 +219548,4226,twist ending,1272357691 +219548,4262,Al Pacino,1276000157 +219548,4262,classic,1276000161 +219548,4262,imdb top 250,1276000163 +219548,4262,mafia,1276000157 +219548,4262,organized crime,1276000159 +219548,4306,animation,1276022035 +219548,4306,comedy,1276022035 +219548,4306,Eddie Murphy,1276022035 +219548,4306,parody,1276022035 +219548,4367,video game,1276000128 +219548,4699,womens cunning,1275941400 +219548,4878,alternate timeline,1272357631 +219548,4878,dreamlike,1272357617 +219548,4878,psychology,1272357619 +219548,4878,surreal,1272357621 +219548,4878,time travel,1272357623 +219548,4886,animation,1275998992 +219548,4886,Comedy,1275998988 +219548,4886,Pixar,1275999345 +219548,4896,based on a book,1276028104 +219548,4896,harry potter,1276028103 +219548,4975,existentialism,1276728122 +219548,4975,love,1276728142 +219548,4975,mindfuck,1276728131 +219548,4975,psychology,1276728136 +219548,4993,Tolkien,1275941601 +219548,4995,based on a book,1274749300 +219548,4995,math,1274749302 +219548,4995,mathematics,1274749304 +219548,4995,Oscar (Best Picture),1274749313 +219548,4995,psychology,1274749309 +219548,4995,schizophrenia,1274749306 +219548,5010,enough to see once,1276000061 +219548,5445,based on a book,1274749362 +219548,5445,future,1274749372 +219548,5445,Steven Spielberg,1274749364 +219548,5445,time travel,1274749367 +219548,5445,Tom Cruise,1274749366 +219548,5464,Can't remember,1276000014 +219548,5464,Jude Law,1276000000 +219548,5464,Tom Hanks,1275999976 +219548,5669,anti-Bush,1274750465 +219548,5669,documentary,1274750458 +219548,5669,Michael Moore,1274750460 +219548,5816,based on a book,1276028043 +219548,5816,harry potter,1276028039 +219548,5816,sequel,1276028036 +219548,5952,Tolkien,1275941518 +219548,5989,based on a book,1274749587 +219548,5989,Christopher Walken,1274749589 +219548,5989,drama,1274749585 +219548,5989,Leonardo DiCaprio,1274749581 +219548,5989,Tom Hanks,1274749582 +219548,5989,true story,1274749584 +219548,5989,twists & turns,1274749593 +219548,5995,Adrien Brody,1276027818 +219548,5995,true story,1276027805 +219548,5995,World War II,1276027812 +219548,6874,kung fu,1274749539 +219548,6874,martial arts,1274749535 +219548,6874,nonlinear,1274749545 +219548,6874,Quentin Tarantino,1274749531 +219548,6874,stylized,1274749543 +219548,6934,Philosophical,1275999898 +219548,6934,sequel,1275999925 +219548,7153,Tolkien,1275941573 +219548,7153,too long,1275941581 +219548,7256,true story,1275512056 +219548,7361,Jim Carrey,1272357662 +219548,7361,memory,1272357671 +219548,7361,philosophy,1272357667 +219548,7361,surreal,1272357665 +219548,7438,kung fu,1274749333 +219548,7438,martial arts,1274749334 +219548,7438,Quentin Tarantino,1274749330 +219548,8368,better than the book,1276028162 +219548,8368,harry potter,1276028142 +219548,8368,time travel,1276028138 +219548,8622,conspiracy,1275999831 +219548,8622,corruption,1275999842 +219548,8622,Michael Moore,1275999818 +219548,8622,politics,1275999826 +219548,8636,comic book,1275999743 +219548,8636,super-hero,1275999744 +219548,8970,country music,1259519375 +219548,8970,drama,1259519350 +219548,8970,emotion!,1259519373 +219548,8970,Johnny Depp,1259519352 +219548,8970,Kate Winslet,1259519355 +219548,8970,movie to see,1259519364 +219548,8970,true story,1259519359 +219548,33166,multiple storylines,1274750418 +219548,33166,Nudity (Topless - Brief),1274750441 +219548,33166,Nudity (Topless),1274750443 +219548,33166,Oscar (Best Picture),1274750420 +219548,33166,Sexualized violence,1274750422 +219548,44665,Bruce Willis,1272358339 +219548,44665,Morgan Freeman,1272358353 +219548,44665,twist ending,1272358346 +219548,46156,dark comedy,1287524289 +219548,48774,apocalypse,1274750330 +219548,48774,Clive Owen,1274750327 +219548,48774,future,1274750335 +219548,48780,based on a book,1274750196 +219548,48780,Christian Bale,1274750187 +219548,48780,Hugh Jackman,1274750189 +219548,48780,nonlinear,1274750193 +219548,48780,twist ending,1274750190 +219548,51662,atmospheric,1276027716 +219548,51662,based on comic,1276027721 +219548,51662,comic book,1276027718 +219548,51662,Frank Miller,1276027700 +219548,51662,stylized,1276027713 +219548,54001,Emma Watson,1276028235 +219548,60126,Bill Murray,1275441976 +219548,60126,Steve Carell,1275441898 +219548,61350,Vin Diesel,1280269641 +219548,69122,comedy,1262612116 +219548,70286,peter jackson,1275468747 +219548,71450,awful truth,1275140815 +219548,71450,goverment lies,1275140812 +219548,76251,11 year old explicit violence,1274750125 +219548,76251,comic book,1274750128 +219548,76251,funny,1274750137 +219548,76251,Nicolas Cage,1274750133 +219548,76251,superhero,1274750131 +219548,79553,Donnie Yen,1283711280 +219548,79553,martial arts,1283711278 +219548,79553,wing chun,1283711281 +219557,53318,Nudity (Full Frontal),1217821640 +219557,60037,entertaining for the wrong reasons,1218998040 +219557,60293,hip-hop,1217740045 +219557,60293,new york,1217740075 +219557,60293,psychiatry,1217740057 +219557,60293,teens,1217740050 +219557,60293,weed,1217740040 +219561,593,good acting,1437519348 +219561,593,good actors,1437519348 +219561,593,thriller,1437519348 +219569,110,historical,1424228472 +219569,110,scottish independence,1424228472 +219569,110,war,1424228472 +219569,296,crime,1420516773 +219569,296,dark humor,1420516773 +219569,296,multiple storylines,1420516773 +219569,318,corruption,1422240658 +219569,318,memorable characters,1422240658 +219569,318,wrongful imprisonment,1422240658 +219569,593,cannabalism,1421344131 +219569,593,serial killer,1421344131 +219569,593,thriller,1421344131 +219569,809,90s,1418241398 +219569,809,action,1418241458 +219569,809,atlanta,1418241415 +219569,809,fugative,1418241426 +219569,809,Hacker,1418241405 +219569,1408,Native American,1418275163 +219569,2134,Chicago,1418181839 +219569,2278,France,1418242208 +219569,2822,deforrestation,1418242440 +219569,2822,drug discovery,1418242419 +219569,2822,rain forest,1418242406 +219569,4161,comedy,1420516859 +219569,4161,Crime,1420516819 +219569,4161,fate,1420516848 +219569,4161,Mexico,1420516837 +219569,4649,Coming of age,1422480889 +219569,4649,Summer camp,1422480880 +219569,5151,Abstinance,1418349986 +219569,5151,date movie,1418350003 +219569,5151,romantic comedy,1418350009 +219569,5151,San Francisco,1418350015 +219569,5170,bounty hunter,1417130152 +219569,5170,Comedy,1417130144 +219569,5170,ice cube,1417130169 +219569,5170,lottery,1417130160 +219569,5170,miami,1417130156 +219569,5170,mike epps,1417130174 +219569,7445,bodyguard,1417130933 +219569,7445,mexico,1417130941 +219569,8033,audrey hepburn,1418276602 +219569,8033,british,1418276595 +219569,8033,comedy,1418276618 +219569,8033,Crime,1418276588 +219569,8033,Peter O'Toole,1418276610 +219569,8614,Amnesia,1419741379 +219569,8614,Classism,1419741390 +219569,33725,clubbing,1418276024 +219569,33725,dj,1418275996 +219569,33725,hearing impairment,1418276032 +219569,33725,progressive house music,1418276091 +219569,38992,bookie,1418241798 +219569,38992,crime,1418241806 +219569,38992,Gambling,1418241793 +219569,38992,Sports,1418241786 +219569,62849,Crime,1417129252 +219569,62849,London,1417129245 +219569,69278,adapted from:TV series,1418275263 +219569,72733,apartheid,1418276249 +219569,72733,politics,1418276264 +219569,78467,civil war,1417135105 +219569,78467,comic book,1417135094 +219569,78467,Josh Brolin,1417135153 +219569,78467,Megan Fox,1417135146 +219569,78467,Western,1417135083 +219569,86644,Brazil,1418241986 +219569,86644,crime,1418242040 +219569,96432,bootlegging,1418268274 +219569,96432,crime,1418268301 +219569,96432,moonshine,1418268266 +219569,96432,Prohibition,1418268287 +219569,99996,appocalypse,1418153104 +219569,99996,Comedy,1418153092 +219569,101405,Chamonix,1418165563 +219569,101405,documentary,1418165542 +219569,101405,extreme sports,1418165534 +219569,101405,Skiing,1418165526 +219569,101405,Valdez,1418165616 +219569,101612,Acceptance,1418241730 +219569,101612,admissions officer,1418241676 +219569,101612,college,1418241653 +219569,101612,Comedy,1418241643 +219569,102949,british intelligence,1422480426 +219569,102949,Nazi,1422480411 +219569,102949,norway,1422480436 +219569,102949,World war 2,1422480404 +219569,104218,Comedy,1418241503 +219569,104218,kids,1418241525 +219569,104218,midlife crisis,1418241543 +219569,104218,party,1418241564 +219569,105742,diplomacy,1424239544 +219569,105742,freedom of information,1424239538 +219569,105742,freedom of speach,1424239582 +219569,105742,Hackers,1424239525 +219569,105742,journalism,1424239607 +219569,105742,Wikileaks,1424239552 +219569,106918,travel,1416035224 +219569,108190,new society,1420167750 +219569,109487,Hans Zimmer,1431479496 +219569,110553,comic book,1418176122 +219569,110730,nano-technology,1420952086 +219569,110771,Cheating,1420945369 +219569,110771,female bonding,1420945376 +219569,110771,revenge,1420945382 +219569,111617,african safari,1421609358 +219569,111617,comedy,1421609311 +219569,111617,divorce,1421609394 +219569,111617,parenthood,1421609375 +219569,111617,step father,1421609325 +219569,111617,teen,1421609340 +219569,112006,animated short,1417399796 +219569,112006,Animation,1417399790 +219569,112006,sequel,1417399800 +219569,115149,russian mafia,1427771352 +219569,115664,animated,1419883466 +219569,115664,Day of the dead,1419883458 +219569,115713,artificial intelligence,1438310000 +219569,115713,gender roles,1438310017 +219569,115713,Mind Bending,1438310023 +219569,115713,sci-fi,1438310006 +219613,260,cult classic,1431364672 +219613,260,fantastic,1431364663 +219633,111287,michael cera,1440614340 +219635,47,Ashley Judd,1158080421 +219635,47,Brad Pitt,1158080421 +219635,47,Dante,1158080421 +219635,47,Morgan Freeman,1158080421 +219635,750,Stanley Kubrick,1158080692 +219635,4327,charles bronson,1158080371 +219635,4327,james coburn,1158080371 +219635,4327,seven samurais,1158080371 +219635,5216,lluvia dorada,1158079297 +219635,5946,achero mañas,1158080161 +219635,5946,malos tratos,1158080161 +219635,6700,Paz Vega,1158074997 +219635,8273,Bigas Luna,1158074470 +219635,8273,Javier Bardem,1158074470 +219635,8273,Penelope Cruz,1158074470 +219635,30707,Clint Eastwood,1158080614 +219635,30707,eutanasia,1158080614 +219635,30707,Morgan Freeman,1158080614 +219635,45722,Adventure,1158073655 +219635,45722,Johnny Depp,1158073657 +219635,45722,pirates,1158073649 +219697,668,bollywood,1368656396 +219697,2022,jesus,1368656468 +219697,2840,jesus,1368656468 +219697,4378,2006,1137623175 +219697,5135,bollywood,1368656396 +219697,6104,jesus,1368656468 +219697,6218,bollywood,1368656397 +219697,7318,jesus,1368656468 +219697,51884,bollywood,1368656397 +219697,63082,bollywood,1368656396 +219708,55908,dialogue driven,1441487858 +219708,55908,Excellent use of dialogue,1441487863 +219708,55908,intellectual,1441487869 +219708,55908,intelligent,1441487866 +219708,55908,philosophical,1441487850 +219708,55908,thought-provoking,1441487856 +219717,260,adventure,1436023927 +219717,260,Science Fiction,1436023921 +219717,356,army,1436024301 +219717,356,disability,1436024301 +219717,356,melodrama,1436024301 +219717,593,cannibalism,1437478479 +219717,593,serial killer,1437478479 +219717,593,thriller,1437478479 +219717,91681,blindness,1444644178 +219717,91681,horror,1444644173 +219717,91681,psychological,1444644165 +219717,91681,thriller,1444644168 +219717,128512,Young Adult,1439733739 +219738,4270,action,1420964885 +219738,4270,history,1420964885 +219738,4270,thriller,1420964885 +219738,110771,surprisingly good,1425192254 +219745,741,artificial intelligence,1452124248 +219745,741,Nudity (Animated),1452124288 +219745,741,philosophical,1452124268 +219745,741,philosophy,1452124262 +219769,260,future fantasy,1439281902 +219770,6754,vampires,1138501071 +219770,33838,indie,1137733090 +219770,122884,Insidious,1435529648 +219770,134879,conspiracy theory,1435529799 +219770,134879,courtney love,1435529799 +219770,134879,documentary,1435529799 +219770,134879,forensic evidence,1435529799 +219770,134879,kurt cobain,1435529799 +219770,134879,montage of heck,1435529799 +219770,134879,nirvana,1435529799 +219786,2959,philosophy,1445972479 +219786,2959,twist ending,1445972476 +219786,2959,violent,1445972449 +219786,64845,chromosome,1425161185 +219786,64845,down syndrom,1425161150 +219786,64845,meaning,1425161160 +219786,64845,sibling connection,1425161175 +219786,64845,touchy,1425161154 +219786,64845,twins,1425161164 +219786,96621,animation,1425078408 +219786,96621,nature,1425078408 +219786,96621,world inside another world,1425078408 +219786,98373,dance,1425159750 +219786,98373,hip-hop,1425159761 +219786,98373,revolution,1425159767 +219786,98373,romance,1425159785 +219786,106487,oppression,1424196046 +219786,106487,propaganda,1424196046 +219786,106487,revolution,1424196046 +219786,131054,dinosaurs,1427654430 +219786,140162,cheating,1445694354 +219786,140162,depression,1445694373 +219786,140162,drugs,1445694350 +219786,140162,sex,1445694334 +219786,140162,suicide,1445694362 +219786,140162,threesome,1445694343 +219786,141968,albania,1441577552 +219786,141968,brothers,1441577507 +219786,141968,father,1441577560 +219786,141968,gay,1441577499 +219786,141968,greece,1441577513 +219786,141968,homosexuality,1441577540 +219786,141968,odyssey,1441577527 +219786,141968,racism,1441577546 +219786,141968,search,1441577566 +219786,141968,travel,1441577519 +219786,141970,andventure,1441577733 +219786,141970,diancie,1441577776 +219786,141970,pikachu,1441577747 +219786,141970,pokemon,1441577726 +219786,141972,pokemon,1441577850 +219795,260,scarface,1434634272 +219797,1625,plot twist,1421187797 +219797,5938,twists,1421187855 +219810,92259,based on a true story,1419902939 +219810,92259,emotional,1419902913 +219810,92259,feel good movie,1419902936 +219810,92259,touching,1419902925 +219811,260,sci-fi,1431019616 +219811,260,space,1431019622 +219815,67255,english,1372235363 +219839,1,animated,1438154128 +219839,1,children,1438154146 +219839,1,computer animation,1438154149 +219839,1,family,1438154137 +219839,1,pixar,1438154124 +219839,1,toy,1438154134 +219839,780,scifi,1438154234 +219839,780,US President,1438154237 +219839,780,war,1438154225 +219839,780,will smith,1438154229 +219839,2706,comedy,1438154469 +219839,2706,high school,1438154459 +219839,2706,sexuality,1438154461 +219839,2762,acting,1438154403 +219839,2762,Atmospheric,1438154396 +219839,2762,death,1438154401 +219839,2762,excellent script,1438154393 +219839,2762,ghosts,1438154389 +219839,2762,great ending,1438154407 +219839,2762,psychological,1438154398 +219839,2762,twist ending,1438154386 +219839,5096,cartoonish,1438154358 +219839,72378,action,1438154291 +219839,72378,future,1438154293 +219839,72378,predictable,1438154273 +219839,72378,science fiction,1438154282 +219839,72378,Special Effects,1438154296 +219839,72378,thriller,1438154285 +219839,78893,acting,1438154192 +219839,78893,effects,1438154184 +219839,78893,fantasy,1438154190 +219853,260,epic,1442050073 +219853,260,scifi,1442050082 +219869,260,Epic,1434371553 +219869,260,good vs evil,1434371606 +219869,296,dark,1434371809 +219869,296,dark comedy,1434371809 +219869,296,r:strong bloody violence,1434371809 +219893,91126,horses,1447592427 +219893,91126,war's crultey,1447592335 +219893,91126,World War I,1447592407 +219899,44191,1984,1143976824 +219899,44191,revolutionary,1143976818 +219905,1276,classic,1163352377 +219915,260,cult classic,1439763160 +219915,260,sci-fi,1439763132 +219946,19,hehehe,1160750750 +219949,260,sci-fi,1432807071 +219949,260,space,1432807104 +219956,50,Kevin Spacey,1437464113 +219956,50,twist ending,1437464107 +219956,33585,real sex,1438656837 +219962,1,animated,1242992685 +219962,1,animation,1242992683 +219962,1,buddy movie,1242992690 +219962,1,computer animation,1242992688 +219962,1,funny,1242992700 +219962,1,Pixar,1242992692 +219962,1,Tom Hanks,1242992695 +219962,15,action,1400315446 +219962,15,adventure,1400315444 +219962,15,better than I remembered,1400315470 +219962,15,Frank Langella,1400315462 +219962,15,Geena Davis,1400315458 +219962,15,humor,1400315453 +219962,15,Pirate,1400315433 +219962,15,pirates,1400315435 +219962,15,sword fight,1400315450 +219962,15,treasure,1400315436 +219962,15,treasure hunt,1400315441 +219962,18,Comedy,1328547560 +219962,18,dark comedy,1328547581 +219962,18,Jennifer Beals,1328547607 +219962,18,multiple storylines,1328547547 +219962,18,Quentin Tarantino,1328547566 +219962,18,Tarantino,1328547568 +219962,18,Tim Roth,1328547549 +219962,18,witches,1328547612 +219962,22,thriller,1368274355 +219962,29,dark,1368273996 +219962,31,inspirational,1368274113 +219962,32,Brad Pitt,1283757526 +219962,32,Bruce Willis,1283757527 +219962,32,dystopia,1283757512 +219962,32,Post apocalyptic,1242989539 +219962,32,post-apocalyptic,1242989541 +219962,32,psychology,1283757530 +219962,32,sci-fi,1242989548 +219962,32,Terry Gilliam,1283757515 +219962,32,time travel,1242989550 +219962,32,twist ending,1242989543 +219962,47,Brad Pitt,1242994047 +219962,47,disturbing,1242994050 +219962,47,psychology,1242994054 +219962,47,serial killer,1242994056 +219962,47,twist ending,1242994057 +219962,47,twists & turns,1242994059 +219962,47,violent,1242994065 +219962,50,caper,1242992542 +219962,50,conspiracy,1242992533 +219962,50,Dark,1242992535 +219962,50,great ending,1242992527 +219962,50,heist,1242992529 +219962,50,mindfuck,1242992521 +219962,50,suspense,1242992525 +219962,50,twist ending,1242992523 +219962,50,violence,1436513837 +219962,111,dark,1368273996 +219962,150,astronauts,1242989316 +219962,150,based on a true story,1242989300 +219962,150,historical,1242989303 +219962,150,moon,1242989305 +219962,150,NASA,1242989307 +219962,150,space,1242989309 +219962,150,space program,1242989314 +219962,150,Tom Hanks,1242989297 +219962,161,tense,1368274334 +219962,173,better than expected,1400066546 +219962,173,cheesy lines,1400066377 +219962,173,comic book,1400066443 +219962,173,corruption,1400066447 +219962,173,future,1400066430 +219962,173,futuristic,1400066432 +219962,173,I AM THE LAW,1400066423 +219962,173,JÃ?¼rgen Prochnow,1400066381 +219962,173,Jurgen Prochnow,1400066411 +219962,173,police,1400066459 +219962,173,police corruption,1400066434 +219962,173,Rob Schneider,1400066567 +219962,173,Sylvester Stallone,1400066386 +219962,247,based on a true story,1294643673 +219962,247,disturbing,1294643715 +219962,247,lesbian,1294643679 +219962,247,Melanie Lynskey,1294643702 +219962,247,New Zealand,1294643691 +219962,247,Peter Jackson,1294643682 +219962,247,surreal,1294643686 +219962,260,adventure,1242897322 +219962,260,Carrie Fisher,1261936124 +219962,260,fantasy,1261936076 +219962,260,George Lucas,1261936080 +219962,260,great soundtrack,1261936087 +219962,260,Harrison Ford,1242897304 +219962,260,imdb top 250,1242897342 +219962,260,Mark Hamill,1261936117 +219962,260,original plot,1261936088 +219962,260,sci-fi,1242897306 +219962,260,space,1261936100 +219962,260,Star Wars,1261936093 +219962,260,war,1261936096 +219962,296,assassin,1242986012 +219962,296,Black comedy,1242985995 +219962,296,crime,1242986016 +219962,296,cult film,1242986027 +219962,296,dark comedy,1242985994 +219962,296,drugs,1242986029 +219962,296,multiple storylines,1242986005 +219962,296,nonlinear,1242986024 +219962,296,Quentin Tarantino,1242985991 +219962,296,stylized,1242986010 +219962,316,aliens,1242993293 +219962,316,ancient egyptians,1242993262 +219962,316,archaeology,1242993265 +219962,316,Egypt,1242993271 +219962,316,mythology,1242993285 +219962,316,pyramids,1242993283 +219962,316,sci-fi,1242993289 +219962,316,space,1242993291 +219962,316,Stargate,1242993301 +219962,317,children,1242994108 +219962,317,Christmas,1242994072 +219962,317,David Krumholtz,1261682819 +219962,317,elves,1242994096 +219962,317,family movie,1242994113 +219962,317,fantasy,1242994079 +219962,317,Judge Reinhold,1242994093 +219962,317,North Pole,1242994103 +219962,317,pretty funny,1242994075 +219962,317,Santa Claus,1242994087 +219962,318,based on a book,1242981588 +219962,318,Morgan Freeman,1242981568 +219962,318,prison escape,1242981591 +219962,318,Stephen King,1242981570 +219962,318,twist ending,1242981572 +219962,356,based on a book,1242988100 +219962,356,bittersweet,1242988102 +219962,356,heartwarming,1242988104 +219962,356,Tom Hanks,1242988121 +219962,356,Vietnam,1242988109 +219962,356,vietnam war,1242988111 +219962,356,war,1242988113 +219962,356,whimsical,1242988118 +219962,380,Arnold Schwarzenegger,1242992548 +219962,380,comedy,1242992552 +219962,380,Eliza Dushku,1242992580 +219962,380,espionage,1242992570 +219962,380,spies,1242992568 +219962,380,Tom Arnold,1242992566 +219962,405,crappy sequel,1391969288 +219962,405,franchise,1391969290 +219962,405,Mako,1391969294 +219962,405,sword fight,1391969297 +219962,440,politics,1368274295 +219962,457,based on a TV show,1242988040 +219962,457,framed,1242988042 +219962,457,Harrison Ford,1242988045 +219962,457,murder,1242988050 +219962,457,paranoid,1242988048 +219962,457,Tommy Lee Jones,1242988053 +219962,474,tense,1368274334 +219962,480,adventure,1242995785 +219962,480,cloning,1395004994 +219962,480,dinosaurs,1242995785 +219962,480,genetics,1242995785 +219962,480,Jeff Goldblum,1395004997 +219962,480,sci-fi,1395004983 +219962,480,Suspense,1242995785 +219962,485,Arnold Schwarzenegger,1283839195 +219962,485,fantasy,1283839217 +219962,485,John McTiernan,1283839211 +219962,485,kid flick,1283839205 +219962,485,movie magic,1283839221 +219962,485,parody,1283839204 +219962,509,19th century,1242994567 +219962,509,melancholy,1242994570 +219962,509,New Zealand,1242994572 +219962,509,sexuality,1242994576 +219962,509,stylized,1242994578 +219962,519,franchise,1368274074 +219962,520,Cary Elwes,1243767770 +219962,520,comedy,1243767782 +219962,520,funny,1243767787 +219962,520,medieval,1243767815 +219962,520,Mel Brooks movie,1243767791 +219962,520,parody,1243767794 +219962,520,Patrick Stewart,1243767799 +219962,520,spoof,1243767801 +219962,527,based on a true story,1242981656 +219962,527,black and white,1242981638 +219962,527,disturbing,1242981653 +219962,527,literary adaptation,1242981645 +219962,527,Nazis,1242981642 +219962,527,true story,1242981650 +219962,527,World War II,1242981648 +219962,551,animation,1242986475 +219962,551,claymation,1261682744 +219962,551,gothic,1242986478 +219962,551,halloween,1242986480 +219962,551,johnny depp,1242986473 +219962,551,Tim Burton,1242986468 +219962,551,whimsical,1242986470 +219962,589,androids,1242992966 +219962,589,apocalypse,1242992969 +219962,589,cyborgs,1242992972 +219962,589,dystopia,1242992974 +219962,589,dystopic future,1242992976 +219962,589,nuclear war,1242992980 +219962,589,sci-fi,1242992983 +219962,589,stylized,1242992986 +219962,589,violence,1242992988 +219962,590,based on book,1248891934 +219962,590,bittersweet,1248891969 +219962,590,historical,1248891976 +219962,590,indians,1248891948 +219962,590,Mary McDonnell,1248891990 +219962,590,native americans,1248891954 +219962,590,too long,1248891966 +219962,590,US history,1248891959 +219962,590,war,1248891961 +219962,593,Anthony Hopkins,1242981438 +219962,593,based on a book,1242981457 +219962,593,cannibalism,1242981441 +219962,593,crime,1242981455 +219962,593,disturbing,1242981460 +219962,593,Jodie Foster,1242981443 +219962,593,psychology,1242981451 +219962,593,serial killer,1242981450 +219962,597,cinderella,1242994415 +219962,597,Garry Marshall,1242994445 +219962,597,girlie movie,1242994420 +219962,597,Good Romantic Comedies,1242994423 +219962,597,Julia Roberts,1242994426 +219962,597,prince charming,1242994428 +219962,597,romance,1242994432 +219962,605,George Clooney,1242994767 +219962,605,romance,1242994770 +219962,608,black comedy,1242988179 +219962,608,Coen Brothers,1242988177 +219962,608,crime gone awry,1242988181 +219962,608,murder,1242988186 +219962,608,quirky,1242988190 +219962,608,strong female,1242988188 +219962,648,Action,1410087132 +219962,648,adventure,1410087134 +219962,648,Brian De Palma,1410087146 +219962,648,CIA,1410087135 +219962,648,spies,1410087137 +219962,648,suspense,1410087139 +219962,648,Tom Cruise,1410087145 +219962,724,1990s,1387112879 +219962,724,bad ending,1387112875 +219962,724,chick flick,1387112882 +219962,724,girl power,1387112887 +219962,724,goth,1387112937 +219962,724,high school,1387112940 +219962,724,magic,1387112943 +219962,724,Neve Campbell,1387112945 +219962,724,revenge,1387112969 +219962,724,Robin Tunney,1387112951 +219962,724,Skeet Ulrich,1387112952 +219962,724,supernatural,1387112954 +219962,724,teen,1387112956 +219962,724,teen movie,1387112955 +219962,724,teenagers,1387112957 +219962,724,teens,1387112959 +219962,724,wicca,1387112960 +219962,724,witch,1387112962 +219962,724,witchcraft,1387112964 +219962,724,witches,1387112966 +219962,733,action packed,1376239437 +219962,733,Alcatraz,1242994210 +219962,733,biological warfare,1242994240 +219962,733,good action,1376239467 +219962,733,Nicolas Cage,1376239430 +219962,733,prison,1242994251 +219962,733,San Francisco,1376239464 +219962,733,Sean Connery,1242994228 +219962,733,terrorism,1242994247 +219962,733,thriller,1376239461 +219962,745,Aardman,1242992438 +219962,745,Aardman studios,1242992435 +219962,745,animation,1242992440 +219962,745,claymation,1242992446 +219962,745,Wallace & Gromit,1242992448 +219962,745,Wallace and Gromit,1242992450 +219962,832,tense,1368274334 +219962,832,thriller,1368274354 +219962,866,BDSM,1242988886 +219962,866,Gina Gershon,1242988908 +219962,866,lesbian,1242988892 +219962,866,LGBT,1242988894 +219962,866,sexy,1242988899 +219962,866,stylized,1242988904 +219962,904,Alfred Hitchcock,1242981710 +219962,904,amateur detective,1242981736 +219962,904,classic,1242981707 +219962,904,James Stewart,1242981739 +219962,904,murder,1242981744 +219962,904,mystery,1242981746 +219962,904,noir thriller,1242981733 +219962,904,photographer,1242981752 +219962,904,photography,1242981754 +219962,1025,animated,1242980954 +219962,1025,animation,1242980968 +219962,1025,Cartoon,1242980970 +219962,1025,classic,1242980972 +219962,1025,Disney,1242980974 +219962,1025,Disney animated feature,1242981009 +219962,1025,fantasy,1242980997 +219962,1025,historical,1242981000 +219962,1025,King Arthur,1242980978 +219962,1025,magic,1242980983 +219962,1025,Merlin,1242980979 +219962,1027,Alan Rickman,1419010757 +219962,1027,Christian Slater,1419010768 +219962,1027,legend,1419010796 +219962,1027,Morgan Freeman,1419010758 +219962,1027,Robin Hood,1419010764 +219962,1027,sword fight,1419010762 +219962,1030,Animation,1294643830 +219962,1030,animation & live action interact,1294643834 +219962,1030,boring,1294643826 +219962,1030,classic,1294643855 +219962,1030,Disney,1294643811 +219962,1030,dragons,1294643813 +219962,1030,live action/animation,1294643837 +219962,1030,musical,1294643820 +219962,1030,singing,1294643817 +219962,1047,action,1405459175 +219962,1047,amnesia,1405459173 +219962,1047,assassin,1242987095 +219962,1047,assassins,1242987098 +219962,1047,dialogue,1405459235 +219962,1047,Geena Davis,1405459178 +219962,1047,popcorn,1405459186 +219962,1047,Renny Harlin,1242987090 +219962,1047,Samuel L. Jackson,1405459183 +219962,1047,script,1405459228 +219962,1047,spy,1405459244 +219962,1047,witty,1405459188 +219962,1080,goofy,1242986625 +219962,1080,Monty Python,1242986604 +219962,1080,satire,1242986609 +219962,1080,satirical,1242986612 +219962,1080,Terry Gilliam,1242986615 +219962,1080,whimsical,1242986619 +219962,1089,violent,1368274373 +219962,1096,based on a book,1242993694 +219962,1096,ethics,1242993702 +219962,1096,Holocaust,1242993709 +219962,1096,jewish,1242993711 +219962,1096,nazi,1242993715 +219962,1096,very sad,1242993722 +219962,1101,aviation,1242992749 +219962,1101,chick flick,1242992754 +219962,1101,military recruiting tool,1242992763 +219962,1101,testosterone,1242992765 +219962,1101,Tom Cruise,1242992767 +219962,1101,Val Kilmer,1242992769 +219962,1127,aliens,1242989524 +219962,1127,amazing photography,1403966211 +219962,1127,Ed Harris,1403966191 +219962,1127,first contact,1242989521 +219962,1127,James Cameron,1403966215 +219962,1127,Michael Biehn,1403966193 +219962,1127,paranoia,1242989494 +219962,1127,sci-fi,1242989502 +219962,1127,submarine,1242989503 +219962,1127,Underwater,1242989505 +219962,1128,horror,1247669822 +219962,1128,Jamie Lee Curtis,1247669811 +219962,1128,John Carpenter,1247669809 +219962,1128,so bad it's funny,1247669826 +219962,1129,chaos,1248472204 +219962,1129,dystopia,1248472210 +219962,1129,future,1248472213 +219962,1129,John Carpenter,1248472232 +219962,1129,Kurt Russell,1248472216 +219962,1129,snake plissken,1248472235 +219962,1136,british comedy,1242986649 +219962,1136,humorous,1242986642 +219962,1136,Monty Python,1242986630 +219962,1136,parody,1242986636 +219962,1136,satire,1242986634 +219962,1136,satirical,1242986632 +219962,1187,disability,1242986192 +219962,1187,friendship,1242986216 +219962,1187,Mary McDonnell,1242986188 +219962,1187,small town,1242986202 +219962,1187,swamp,1242986210 +219962,1187,wheel chair,1242986197 +219962,1196,action,1242979773 +219962,1196,adventure,1261913446 +219962,1196,aliens,1242979766 +219962,1196,fantasy,1261913443 +219962,1196,Harrison Ford,1242979749 +219962,1196,music,1261913460 +219962,1196,original plot,1261913450 +219962,1196,quotable dialogue,1261936178 +219962,1196,robots,1242979770 +219962,1196,sci-fi,1242979752 +219962,1196,science fiction,1261913456 +219962,1196,space,1242979754 +219962,1196,Star Wars,1242979760 +219962,1196,war,1261936165 +219962,1197,Cary Elwes,1242994407 +219962,1197,Cult classic,1242994389 +219962,1197,fantasy,1242994392 +219962,1197,good versus evil,1242994395 +219962,1197,quirky,1242994398 +219962,1197,swashbuckler,1242994400 +219962,1197,whimsical,1242994402 +219962,1198,adventure,1242985970 +219962,1198,archaeology,1242985961 +219962,1198,good versus evil,1367529500 +219962,1198,Harrison Ford,1242985954 +219962,1198,indiana jones,1242985955 +219962,1198,Nazis,1242985966 +219962,1198,racism,1242985964 +219962,1198,supernatural,1367529507 +219962,1198,treasure,1367529469 +219962,1199,black comedy,1396433145 +219962,1199,bureaucracy,1396433220 +219962,1199,dark,1396433152 +219962,1199,dark fantasy,1396433150 +219962,1199,dreamlike,1396433155 +219962,1199,dystopia,1396433136 +219962,1199,dystopic future,1396433198 +219962,1199,hallucinatory,1396433159 +219962,1199,Michael Palin,1396433273 +219962,1199,satire,1396433138 +219962,1199,surreal,1396433140 +219962,1199,surveillance,1396433212 +219962,1199,Terry Gilliam,1396433164 +219962,1199,twist ending,1396433268 +219962,1199,weird,1396433207 +219962,1200,action,1350062721 +219962,1200,alien,1242989458 +219962,1200,aliens,1242989460 +219962,1200,androids,1242989461 +219962,1200,horror,1350062733 +219962,1200,intense,1350062736 +219962,1200,James Cameron,1350062738 +219962,1200,military,1350062740 +219962,1200,monster,1242989464 +219962,1200,sci-fi,1242989468 +219962,1200,scifi,1242989469 +219962,1200,Sigourney Weaver,1350062763 +219962,1200,SPACE TRAVEL,1242989472 +219962,1200,suspense,1350062780 +219962,1200,violent,1242989475 +219962,1201,American Civil War,1421328360 +219962,1201,atmospheric,1421328359 +219962,1201,Civil War,1421328357 +219962,1201,Clint Eastwood,1421328347 +219962,1201,Ennio Morricone,1421328341 +219962,1201,epic,1421328364 +219962,1201,Lee Van Cleef,1421328388 +219962,1201,photography,1421328356 +219962,1201,satirical,1421328353 +219962,1201,Sergio Leone,1421328345 +219962,1201,spaghetti western,1421328340 +219962,1201,treasure hunt,1421328351 +219962,1206,violent,1368274373 +219962,1208,based on a book,1242989323 +219962,1208,Dark,1242989328 +219962,1208,disturbing,1242989325 +219962,1208,drugs,1242989330 +219962,1208,military,1242989332 +219962,1208,Vietnam war,1242989334 +219962,1208,violent,1242989337 +219962,1210,adventure,1261936210 +219962,1210,aliens,1261936213 +219962,1210,classic,1242981174 +219962,1210,fantasy,1261936216 +219962,1210,Harrison Ford,1242981166 +219962,1210,Ian McDiarmid,1261936238 +219962,1210,Mark Hamill,1261936202 +219962,1210,sci-fi,1242981170 +219962,1210,slave costume,1261936246 +219962,1210,space,1242981172 +219962,1210,Star Wars,1242981168 +219962,1213,based on a book,1436005412 +219962,1213,biography,1436005391 +219962,1213,bloody,1436005393 +219962,1213,dark comedy,1436005395 +219962,1213,good dialogue,1436005417 +219962,1213,gritty,1436005397 +219962,1213,Martin Scorsese,1436005375 +219962,1213,narrated,1436005399 +219962,1213,organized crime,1436005389 +219962,1214,alien,1350062659 +219962,1214,androids,1350062662 +219962,1214,atmospheric,1350062670 +219962,1214,claustrophobic,1350062696 +219962,1214,dark,1350062665 +219962,1214,Ridley Scott,1350062701 +219962,1214,science fiction,1350062693 +219962,1214,Sigourney Weaver,1350062686 +219962,1214,space,1350062687 +219962,1214,space travel,1350062690 +219962,1214,suspense,1350062692 +219962,1214,tense,1368274334 +219962,1215,black comedy,1242989215 +219962,1215,campy,1242989211 +219962,1215,Cult classic,1242989213 +219962,1215,dark humor,1242989217 +219962,1215,fantasy,1242989221 +219962,1215,horror,1242989223 +219962,1215,satirical,1242989227 +219962,1215,zombies,1242989225 +219962,1219,Alfred Hitchcock,1242994327 +219962,1219,black and white,1242994329 +219962,1219,classic,1242994332 +219962,1219,creepy,1242994334 +219962,1219,horror,1242994337 +219962,1219,macabre,1242994338 +219962,1219,mother-son relationship,1242994340 +219962,1219,murder,1242994344 +219962,1219,psychology,1242994347 +219962,1219,remade,1249128792 +219962,1219,serial killer,1242994350 +219962,1222,Adam Baldwin,1242987985 +219962,1222,anti-war,1242988018 +219962,1222,boot camp,1242987983 +219962,1222,military,1242987959 +219962,1222,Vietnam,1242987993 +219962,1222,Vietnam War,1242987999 +219962,1222,vietnam war based movie,1242987991 +219962,1222,war,1242987964 +219962,1222,wartime,1242987966 +219962,1231,astronauts,1248783021 +219962,1231,Ed Harris,1248783028 +219962,1231,macho,1248783053 +219962,1231,NASA,1248783032 +219962,1231,space,1248783045 +219962,1231,space program,1248783034 +219962,1231,too long,1248783049 +219962,1233,claustrophobic,1242988922 +219962,1233,German,1242988925 +219962,1233,long,1242988931 +219962,1233,submarine,1242988941 +219962,1233,too long,1242988918 +219962,1233,World War II,1242988934 +219962,1233,WWII,1242988937 +219962,1234,Classic,1242981017 +219962,1234,con men,1242981026 +219962,1234,confidence game,1242981029 +219962,1234,heist,1242981031 +219962,1234,Paul Newman,1242981020 +219962,1234,surprise ending,1242981025 +219962,1234,twist ending,1242981022 +219962,1240,androids,1242980808 +219962,1240,Arnold Schwarzenegger,1242980799 +219962,1240,cyborgs,1242980810 +219962,1240,future,1242980814 +219962,1240,sci-fi,1242980803 +219962,1240,time travel,1242980802 +219962,1240,violent,1242980816 +219962,1249,assassin,1248702345 +219962,1249,cynical,1248702365 +219962,1249,France,1248702367 +219962,1249,french,1248702327 +219962,1249,hit men,1248702380 +219962,1249,Jean Reno,1248702339 +219962,1249,Luc Besson,1248702337 +219962,1249,slow paced,1248702331 +219962,1249,stylized,1248702376 +219962,1258,atmospheric,1242993894 +219962,1258,based on a book,1242993865 +219962,1258,cult film,1242993869 +219962,1258,disturbing,1242993886 +219962,1258,dreamlike,1242993905 +219962,1258,gives me nightmares,1242993915 +219962,1258,hallucinatory,1242993898 +219962,1258,Horror,1242993871 +219962,1258,Jack Nicholson,1242993883 +219962,1258,psychological,1242993878 +219962,1258,suspense,1242993892 +219962,1258,violent,1242993876 +219962,1259,based on a book,1242993374 +219962,1259,childhood,1242993394 +219962,1259,coming of age,1242993375 +219962,1259,friendship,1242993389 +219962,1259,Kiefer Sutherland,1242993397 +219962,1259,River Phoenix,1242993365 +219962,1259,Stephen King,1242993363 +219962,1259,Wil Wheaton,1242993370 +219962,1262,ensemble cast,1368274016 +219962,1270,1980s,1242989184 +219962,1270,alternate universe,1242989182 +219962,1270,comedy,1242989186 +219962,1270,future,1242989191 +219962,1270,quirky,1242989193 +219962,1270,sci-fi,1242989197 +219962,1270,time travel,1242989195 +219962,1270,whimsical,1242989200 +219962,1275,Christopher Lambert,1298814198 +219962,1275,clancy brown,1298814215 +219962,1275,clans,1298814170 +219962,1275,cult movie,1298814155 +219962,1275,immortals,1298814159 +219962,1275,original plot,1298814178 +219962,1275,Sean Connery,1298814142 +219962,1275,sword fight,1298814148 +219962,1287,christianity,1368273976 +219962,1288,Christopher Guest,1242992927 +219962,1288,cult,1242992930 +219962,1288,heavy metal,1242992938 +219962,1288,mockumentary,1242992935 +219962,1288,satire,1242992941 +219962,1291,Adventure,1242987316 +219962,1291,archaeology,1242987318 +219962,1291,Harrison Ford,1242987310 +219962,1291,indiana jones,1242987313 +219962,1291,Nazis,1242987323 +219962,1291,Sequel,1242987321 +219962,1320,Alien,1242989423 +219962,1320,alien series,1242989427 +219962,1320,aliens,1242989425 +219962,1320,franchise,1242989433 +219962,1320,Lance Henriksen,1242989429 +219962,1320,prequel,1242989435 +219962,1320,sequel,1242989437 +219962,1320,Sigourney Weaver,1242989439 +219962,1320,spooky,1242989441 +219962,1320,Too Hollywood,1242989445 +219962,1320,wasted potential,1242989447 +219962,1321,atmospheric,1414840413 +219962,1321,Classic,1414840427 +219962,1321,dark comedy,1414840415 +219962,1321,horror comedy,1414840424 +219962,1321,surprisingly funny,1414840421 +219962,1321,werewolf,1414840417 +219962,1321,werewolves,1414840419 +219962,1339,Anthony Hopkins,1248001362 +219962,1339,based on a book,1248001360 +219962,1339,gothic,1248001365 +219962,1339,Horror,1248001372 +219962,1339,Keanu Reeves,1248001382 +219962,1339,vampire,1248001378 +219962,1339,vampires,1248001376 +219962,1339,Winona Ryder,1248001381 +219962,1387,animal horror,1242995788 +219962,1387,classic,1242995788 +219962,1387,franchise,1242995788 +219962,1387,man vs nature,1242995788 +219962,1387,man vs. beast,1242995788 +219962,1387,ominous,1242995788 +219962,1387,shark,1242995788 +219962,1387,Steven Spielberg,1242995788 +219962,1387,tense,1242995788 +219962,1387,we need a bigger boat,1242995788 +219962,1389,animal attacks,1404420225 +219962,1389,animals,1404420248 +219962,1389,franchise,1404420215 +219962,1389,jaws,1404420253 +219962,1389,music,1404420231 +219962,1389,sequel,1404420219 +219962,1389,shark,1404420221 +219962,1396,black comedy,1242981274 +219962,1396,computers,1242981295 +219962,1396,ensemble cast,1368274016 +219962,1396,hacker,1242981276 +219962,1396,hackers,1242981282 +219962,1396,heist,1242981297 +219962,1396,Mary McDonnell,1274687780 +219962,1396,River Phoenix,1242981286 +219962,1396,Robert Redford,1242981299 +219962,1396,Stephen Tobolowsky,1262724009 +219962,1396,weak ending,1262724012 +219962,1480,Antarctica,1242981360 +219962,1480,based on a book,1242981342 +219962,1480,book is better than movie,1242981390 +219962,1480,sci-fi,1242981348 +219962,1500,80s soundtrack,1242987818 +219962,1500,assassin,1242987799 +219962,1500,college reunion,1242987817 +219962,1500,dark comedy,1242987801 +219962,1500,hit men,1242987805 +219962,1527,aliens,1242980276 +219962,1527,Bruce Willis,1242980270 +219962,1527,Chris Tucker,1242980272 +219962,1527,futuristic,1242980274 +219962,1527,Milla Jovovich,1242980268 +219962,1527,satirical,1242980281 +219962,1527,sci-fi,1242980280 +219962,1544,based on a book,1410200661 +219962,1544,cash-in sequel,1410200659 +219962,1544,dinosaurs,1410200680 +219962,1544,inferior sequel,1410200677 +219962,1544,Jeff Goldblum,1410200654 +219962,1580,alien,1242995230 +219962,1580,aliens,1242995231 +219962,1580,buddy movie,1242995234 +219962,1580,comedy,1242995242 +219962,1580,parody,1242995245 +219962,1580,sci-fi,1242995237 +219962,1580,scifi,1242995249 +219962,1580,Tommy Lee Jones,1242995219 +219962,1580,Will Smith,1242995221 +219962,1584,adapted from:book,1249050063 +219962,1584,aliens,1242980409 +219962,1584,astronomy,1242980431 +219962,1584,beautiful,1249050086 +219962,1584,Carl Sagan,1249050098 +219962,1584,does god exist,1249050118 +219962,1584,existentialism,1249050068 +219962,1584,first contact,1242980418 +219962,1584,future,1242980422 +219962,1584,Jodie Foster,1242980406 +219962,1584,outer space,1242980426 +219962,1584,Robert Zemeckis,1249050077 +219962,1584,sci-fi,1242980411 +219962,1584,science vs faith,1249050109 +219962,1597,thriller,1368274355 +219962,1610,thriller,1368274355 +219962,1617,conspiracy,1242987132 +219962,1617,Crime,1242987134 +219962,1617,film noir,1242987138 +219962,1617,noirish,1242987142 +219962,1680,alternate universe,1242979807 +219962,1680,chick flick,1242979810 +219962,1680,destiny,1418999632 +219962,1680,great concept,1418999629 +219962,1680,Gwyneth Paltrow,1242979815 +219962,1680,John Hannah,1242979812 +219962,1680,nonlinear,1418999621 +219962,1682,dark comedy,1242980741 +219962,1682,dreamlike,1242980756 +219962,1682,fantasy,1242980753 +219962,1682,Jim Carrey,1242980740 +219962,1682,small town,1242980749 +219962,1682,social commentary,1242980745 +219962,1682,stylized,1242980760 +219962,1721,bittersweet,1242992782 +219962,1721,chick flick,1242992784 +219962,1721,historical,1242992787 +219962,1721,Leonardo DiCaprio,1242992778 +219962,1721,love story,1242992789 +219962,1721,shipwreck,1242992798 +219962,1732,black comedy,1278411888 +219962,1732,bowling,1278411911 +219962,1732,Coen Brothers,1278411890 +219962,1732,dark comedy,1278411893 +219962,1732,great soundtrack,1278411907 +219962,1732,Jeff Bridges,1278411895 +219962,1732,soundtrack,1278411902 +219962,1762,Famke Janssen,1302168989 +219962,1762,over-the-top action,1302168992 +219962,1762,ridiculous characters,1302168993 +219962,1762,so bad it's funny,1302169011 +219962,1762,so bad it's good,1302169005 +219962,1791,easily confused with other movie(s) (title),1244385861 +219962,1805,Bill Murray,1242992429 +219962,1805,Kevin Bacon,1242814509 +219962,1805,lesbian,1242814507 +219962,1805,Neve Campbell,1242814518 +219962,1805,plot twist,1242814515 +219962,1805,pulp,1242814530 +219962,1805,surprise ending,1242814527 +219962,1805,twist ending,1242814525 +219962,1892,gwyneth paltrow,1242994588 +219962,1892,murder,1242994596 +219962,1892,suspenseful,1242994599 +219962,1892,Thriller,1242994601 +219962,1892,Viggo Mortensen,1242994584 +219962,1921,black and white,1242986144 +219962,1921,cerebral,1242986149 +219962,1921,existentialism,1242986142 +219962,1921,hallucinatory,1242986138 +219962,1921,mathematics,1242986179 +219962,1921,paranoia,1242986167 +219962,1921,psychology,1242986147 +219962,1950,police,1368274277 +219962,1961,autism,1242981764 +219962,1961,brothers,1242981786 +219962,1961,Dustin Hoffman,1242981769 +219962,1961,psychology,1242981779 +219962,1961,rape,1242981774 +219962,1961,Tom Cruise,1242981776 +219962,1961,true story,1242981771 +219962,1974,camp,1257773014 +219962,1974,franchise,1257773007 +219962,1974,horror,1257772997 +219962,1974,scary,1257773019 +219962,1974,serial killer,1257772995 +219962,1974,slasher,1257772987 +219962,1982,horror,1257235237 +219962,1982,Jamie Lee Curtis,1257235211 +219962,1982,John Carpenter,1257235198 +219962,1982,murder,1257235226 +219962,1982,scary as hell,1257235204 +219962,1982,serial killer,1257235214 +219962,1982,slasher,1257235243 +219962,2003,Christmas,1387112563 +219962,2003,Corey Feldman,1387112623 +219962,2003,Gizmo,1387112567 +219962,2003,horror,1387112641 +219962,2003,monsters,1387112591 +219962,2003,rampage,1387112674 +219962,2003,references for the sake of references,1387112569 +219962,2003,Schizophrenic,1387112584 +219962,2003,slapstick,1387112618 +219962,2003,small town,1387112589 +219962,2003,still great,1387112686 +219962,2003,Theme song was a bit too childish.,1387112682 +219962,2005,1980s,1358104028 +219962,2005,80s,1358104030 +219962,2005,adventure,1358104024 +219962,2005,cave,1358104032 +219962,2005,Children,1358104040 +219962,2005,classic,1358104048 +219962,2005,disjointed,1358107389 +219962,2005,Indiana Jones rip-off,1358104204 +219962,2005,Loud,1358104053 +219962,2005,pirate map,1358104087 +219962,2005,pirates,1358104065 +219962,2005,Sean Astin,1358104284 +219962,2005,skeletons,1358104145 +219962,2005,slapstick,1358104155 +219962,2005,Stereotypical fat character,1358104072 +219962,2005,Steven Spielberg,1358104281 +219962,2005,the truffle shuffle,1358104080 +219962,2005,treasure,1358104082 +219962,2005,treasure hunt,1358104084 +219962,2011,alternate universe,1242989157 +219962,2011,Christopher Lloyd,1242989154 +219962,2011,Michael J. Fox,1242989152 +219962,2011,sci-fi,1242989167 +219962,2011,sequel,1242989176 +219962,2011,time travel,1242989159 +219962,2019,action,1351282380 +219962,2019,Akira Kurosawa,1351282403 +219962,2019,Amazing Cinematography,1351282383 +219962,2019,atmospheric,1351282392 +219962,2019,black and white,1351282395 +219962,2019,classic,1351282409 +219962,2019,epic,1351282422 +219962,2019,feudal japan,1351282439 +219962,2019,historical,1351282428 +219962,2019,Japan,1351282435 +219962,2019,long,1351282398 +219962,2019,samurai,1351282388 +219962,2019,stylized,1351282457 +219962,2019,Takashi Shimura,1351282524 +219962,2019,too long,1351282401 +219962,2024,christianity,1368273976 +219962,2028,cinematography,1242981675 +219962,2028,historical,1242981679 +219962,2028,Matt Damon,1242981682 +219962,2028,stylized,1242981686 +219962,2028,Tom Hanks,1242981665 +219962,2028,violent,1242981671 +219962,2028,war,1242981669 +219962,2028,World War II,1242981667 +219962,2033,Disney,1325854435 +219962,2033,Disney animated feature,1325854437 +219962,2033,fantasy,1325854456 +219962,2033,good versus evil,1325854442 +219962,2033,magic,1325854507 +219962,2033,quest,1325854454 +219962,2033,recycled plot,1325854472 +219962,2033,short,1325854458 +219962,2033,unoriginal,1325854462 +219962,2076,atmospheric,1242988972 +219962,2076,dark,1368273996 +219962,2076,David Lynch,1242988969 +219962,2076,disturbing,1242988949 +219962,2076,hallucinatory,1242988951 +219962,2076,sexual,1242988958 +219962,2076,suburbia,1242988968 +219962,2076,surreal,1242988962 +219962,2082,inspirational,1368274113 +219962,2115,archaeology,1242995857 +219962,2115,franchise,1242995865 +219962,2115,Harrison Ford,1242995867 +219962,2115,Indiana Jones,1242995869 +219962,2115,plot point:solving riddles/puzzles,1242995873 +219962,2115,pulp,1242995877 +219962,2115,sequel,1242995879 +219962,2116,animated,1242995444 +219962,2116,book was better,1242995456 +219962,2116,cartoon,1242995463 +219962,2116,Children,1242995459 +219962,2116,fantasy,1242995436 +219962,2116,hobbits,1242995440 +219962,2116,psychedelic,1242995434 +219962,2116,rotoscoping,1242995429 +219962,2116,Tolkien,1242995431 +219962,2140,dark,1242988366 +219962,2140,fantasy,1242988352 +219962,2140,good vs evil,1242988358 +219962,2140,Jim Henson,1242988340 +219962,2140,muppets,1242988372 +219962,2140,puppets,1242988336 +219962,2143,adventure,1249718875 +219962,2143,cult film,1249718901 +219962,2143,dark fantasy,1249718882 +219962,2143,fairy tale,1249718895 +219962,2143,Mia Sara,1249718899 +219962,2143,Ridley Scott,1249718892 +219962,2143,romance,1249718911 +219962,2143,Tim Curry,1249718905 +219962,2143,Tom Cruise,1249718888 +219962,2143,unicorns,1249718919 +219962,2161,Adventure,1377284316 +219962,2161,based on a book,1377284324 +219962,2161,Children,1377284326 +219962,2161,Classic,1377284319 +219962,2161,dialogue,1377284329 +219962,2161,effects,1377284339 +219962,2161,Fantasy,1377284321 +219962,2161,fantasy world,1377284341 +219962,2161,imagination,1377284344 +219962,2161,racing snail,1377284364 +219962,2161,script,1377284376 +219962,2161,soundtrack,1377284366 +219962,2161,sphinx,1377284380 +219962,2161,story,1377284373 +219962,2161,turtle,1377284383 +219962,2161,Wolfgang Petersen,1377284378 +219962,2174,Alec Baldwin,1377284501 +219962,2174,black comedy,1377284427 +219962,2174,comedy,1242989026 +219962,2174,cult film,1242989009 +219962,2174,Death,1377284436 +219962,2174,ghosts,1377284440 +219962,2174,ghosts/afterlife,1242988998 +219962,2174,haunted house,1377284445 +219962,2174,horror,1242989022 +219962,2174,latin music,1377284455 +219962,2174,Michael Keaton,1377284457 +219962,2174,music,1377284475 +219962,2174,off-beat,1377284505 +219962,2174,soundtrack,1377284479 +219962,2174,supernatural,1377284508 +219962,2174,The Afterlife,1377284466 +219962,2174,Tim Burton,1242989000 +219962,2174,winona ryder,1377284462 +219962,2181,Alfred Hitchcock,1401979055 +219962,2181,compulsive liar,1401979126 +219962,2181,kleptomaniac,1401979108 +219962,2181,psychological,1401979160 +219962,2181,psychological thriller,1401979154 +219962,2181,romance,1401979081 +219962,2181,Sean Connery,1401979074 +219962,2181,sexism,1401979071 +219962,2181,Tippi Hedren,1401979077 +219962,2193,fantasy,1242989560 +219962,2193,Good versus evil,1242989561 +219962,2193,sword and sorcery,1242989576 +219962,2193,Val Kilmer,1242989572 +219962,2194,Andy Garcia,1436005284 +219962,2194,Ennio Morricone,1436005345 +219962,2194,gangsters,1436005244 +219962,2194,Kevin Costner,1436005240 +219962,2194,organized crime,1436005343 +219962,2194,Prohibition,1436005340 +219962,2194,Sean Connery,1436005242 +219962,2278,bank robbery,1242994155 +219962,2278,crime,1242994186 +219962,2278,Jean Reno,1242994176 +219962,2278,thriller,1242994178 +219962,2288,alien invasion,1242897240 +219962,2288,Antarctica,1242897223 +219962,2288,horror,1242897243 +219962,2288,Kurt Russell,1242897231 +219962,2288,paranoia,1242897234 +219962,2321,Reese Witherspoon,1242986068 +219962,2321,satire,1242986089 +219962,2321,satirical,1242986106 +219962,2321,stylized,1242986087 +219962,2321,Tobey Maguire,1242986083 +219962,2321,whimsical,1242986086 +219962,2353,thriller,1368274355 +219962,2396,Ben Affleck,1248789960 +219962,2396,Gwyneth Paltrow,1248789968 +219962,2396,Judi Dench,1248789987 +219962,2396,love story,1248790001 +219962,2396,Period,1248789982 +219962,2396,romance,1248789979 +219962,2396,Shakespeare,1248789977 +219962,2411,boxing,1242994193 +219962,2411,Dolph Lundgren,1242896730 +219962,2411,franchise,1242994197 +219962,2411,Golden Raspberry (Worst Actor),1242994199 +219962,2411,Sylvester Stallone,1242994203 +219962,2420,80's classic,1242995685 +219962,2420,bad but good,1242995687 +219962,2420,martial arts,1242995698 +219962,2420,paint the fence,1242995706 +219962,2420,Pat Morita,1242995702 +219962,2420,Ralph Macchio,1242995700 +219962,2420,underdog,1242995709 +219962,2420,wax on wax off,1242995785 +219962,2467,14th Century,1360351241 +219962,2467,amateur detective,1360351171 +219962,2467,based on a book,1360351162 +219962,2467,censorship,1360351184 +219962,2467,Christian Slater,1360351180 +219962,2467,medieval,1360351248 +219962,2467,monastery,1360351252 +219962,2467,murder,1360351174 +219962,2467,religion,1360351266 +219962,2467,Ron Perlman,1360351268 +219962,2467,Sean Connery,1360351168 +219962,2467,Umberto Eco,1360351276 +219962,2467,whodunit,1360351165 +219962,2500,high school,1368274096 +219962,2502,comedy,1242897358 +219962,2502,corporate America,1242897360 +219962,2502,cult film,1242897353 +219962,2502,office,1242897363 +219962,2502,satire,1242897366 +219962,2502,stapler,1242897369 +219962,2549,action,1381604702 +219962,2549,aliens,1381604713 +219962,2549,nostalgic,1381604687 +219962,2549,scifi,1381604709 +219962,2549,space,1381604685 +219962,2549,space battle,1381604718 +219962,2549,theme song,1381604692 +219962,2549,video game adaptation,1381604691 +219962,2571,artificial intelligence,1242979970 +219962,2571,cyberpunk,1242979974 +219962,2571,dystopia,1242979972 +219962,2571,Keanu Reeves,1242979938 +219962,2571,martial arts,1242979983 +219962,2571,post apocalyptic,1242979941 +219962,2571,sci-fi,1242979947 +219962,2571,virtual reality,1242979943 +219962,2571,Wachowski Brothers,1242979965 +219962,2594,better than the american version,1242986417 +219962,2594,Dark,1242986367 +219962,2594,mindfuck,1242986396 +219962,2594,Penélope Cruz,1242986392 +219962,2594,Twist ending,1242986388 +219962,2617,archaeology,1242994918 +219962,2617,Brendan Fraser,1242994923 +219962,2617,curse,1242994925 +219962,2617,egypt,1242994929 +219962,2617,John Hannah,1242994931 +219962,2617,mummy,1242994933 +219962,2617,romp,1242994945 +219962,2617,special effects,1242994939 +219962,2617,treasure hunt,1242994954 +219962,2628,fantasy,1242993340 +219962,2628,Natalie Portman,1242993343 +219962,2628,sci-fi,1242993345 +219962,2628,space,1242993348 +219962,2628,space opera,1242993351 +219962,2628,Star Wars,1242993346 +219962,2671,chick flick,1242994987 +219962,2671,girlie movie,1242995000 +219962,2671,Good Romantic Comedies,1242995002 +219962,2671,romance,1242995036 +219962,2693,geeks,1242980792 +219962,2693,Star Trek,1242980766 +219962,2699,action,1242989290 +219962,2699,always better than I remember,1242989272 +219962,2699,comedy,1242989255 +219962,2699,horror,1242989259 +219962,2699,Jeff Daniels,1453547479 +219962,2699,spiders,1242989235 +219962,2699,surprisingly good,1242989280 +219962,2716,Bill Murray,1327953166 +219962,2716,Dan Aykroyd,1327953180 +219962,2716,ghosts,1327953156 +219962,2716,horror comedy,1327953161 +219962,2716,monsters,1327953183 +219962,2716,quotable,1327953193 +219962,2716,Rick Moranis,1327953185 +219962,2716,sci-fi,1327953188 +219962,2716,Sigourney Weaver,1327953168 +219962,2717,American propaganda,1331321274 +219962,2717,Bill Murray,1331321244 +219962,2717,comedy,1331321248 +219962,2717,Dan Aykroyd,1331321246 +219962,2717,fantasy,1331321253 +219962,2717,Ghosts,1331321254 +219962,2717,paranormal,1331321257 +219962,2717,slow start,1331321290 +219962,2717,supernatural,1331321260 +219962,2734,dysfunctional family,1242995134 +219962,2734,Harrison Ford,1242995137 +219962,2734,rain forest,1242995148 +219962,2734,River Phoenix,1242995142 +219962,2748,adventure,1326384749 +219962,2748,bad acting,1326384731 +219962,2748,based on a book,1326384902 +219962,2748,franchise,1326384864 +219962,2748,hidden city,1326384872 +219962,2748,Indiana Jones ripoff,1326384758 +219962,2748,James Earl Jones,1326384738 +219962,2748,lost city,1326384884 +219962,2748,plot,1326384846 +219962,2748,racial stereotype,1326384828 +219962,2748,racial stereotypes,1326384831 +219962,2748,Richard Chamberlain,1326384770 +219962,2748,sequel,1326384855 +219962,2748,Sharon Stone,1326384718 +219962,2762,Atmospheric,1242981427 +219962,2762,ghosts/afterlife,1242981421 +219962,2762,M. Night Shyamalan,1242981399 +219962,2762,mindfuck,1242981424 +219962,2762,psychology,1242981419 +219962,2762,stylized,1242981417 +219962,2762,surprise ending,1242981431 +219962,2762,twist ending,1242981415 +219962,2774,christina cox,1242814556 +219962,2774,lesbian,1242814547 +219962,2819,1970s,1405952452 +219962,2819,assassins,1405952431 +219962,2819,based on a book,1405952433 +219962,2819,cia,1405952455 +219962,2819,conspiracy,1405952437 +219962,2819,conspiracy theory,1405952439 +219962,2819,contrived romance,1405952442 +219962,2819,espionage,1405952450 +219962,2819,Faye Dunaway,1405952464 +219962,2819,Robert Redford,1405952447 +219962,2819,spy,1405952448 +219962,2819,thriller,1405952496 +219962,2858,black comedy,1242989346 +219962,2858,coming of age,1242989351 +219962,2858,dark comedy,1242989348 +219962,2858,midlife crisis,1242989349 +219962,2858,satirical,1242989358 +219962,2858,social commentary,1242989359 +219962,2858,violence,1242989362 +219962,2882,nazis,1368274190 +219962,2888,high school,1368274096 +219962,2890,anti-war,1242992898 +219962,2890,black comedy,1242992894 +219962,2890,George Clooney,1242992901 +219962,2890,Gulf War,1242992903 +219962,2890,iraq,1242992906 +219962,2890,Jamie Kennedy,1242992909 +219962,2890,Middle East,1242992912 +219962,2890,satirical,1242992915 +219962,2908,disturbing,1242988745 +219962,2908,gay,1242988732 +219962,2908,hilary swank,1242988733 +219962,2908,homophobia,1242988747 +219962,2908,lesbian,1242988736 +219962,2908,lgbt,1242988738 +219962,2908,rape,1242988742 +219962,2908,Sexualized violence,1242988757 +219962,2908,transphobia,1242988743 +219962,2908,true story,1242988753 +219962,2916,alternate universe,1242992717 +219962,2916,Arnold Schwarzenegger,1242992713 +219962,2916,mars,1242992722 +219962,2916,Sci Fi,1242992727 +219962,2916,sci-fi,1242992729 +219962,2916,space travel,1242992736 +219962,2916,virtual reality,1242992741 +219962,2942,1980s,1345891265 +219962,2942,80s,1345891262 +219962,2942,casting,1345891287 +219962,2942,chick flick,1345978189 +219962,2942,dance,1345891225 +219962,2942,dancers,1345891227 +219962,2942,dancing,1345891230 +219962,2942,disjointed,1345891295 +219962,2942,dreams,1345891306 +219962,2942,girlie movie,1345891252 +219962,2942,Jennifer Beals,1345891236 +219962,2942,Michael Nouri,1345891243 +219962,2942,plot,1345891281 +219962,2942,soundtrack,1345891275 +219962,2942,strippers,1345891246 +219962,2944,ensemble cast,1368274016 +219962,2951,action,1327953051 +219962,2951,classic,1327952985 +219962,2951,classic Leone,1327953055 +219962,2951,Clint Eastwood,1327952980 +219962,2951,Ennio Morricone,1327952987 +219962,2951,gritty,1327952997 +219962,2951,leone,1327953069 +219962,2951,morricone score,1327952991 +219962,2951,Sergio Leone,1327952982 +219962,2951,spaghetti western,1327953027 +219962,2951,standoff,1327953037 +219962,2959,Brad Pitt,1242988154 +219962,2959,dark comedy,1242988157 +219962,2959,disturbing,1242988159 +219962,2959,schizophrenia,1242988162 +219962,2959,twist ending,1242988167 +219962,2959,violence,1242988169 +219962,2959,violent,1368274373 +219962,2978,Neve Campbell,1242992887 +219962,2985,android(s)/cyborg(s),1326828530 +219962,2985,bad acting,1326828581 +219962,2985,cheesy,1326828544 +219962,2985,cyborgs,1326828549 +219962,2985,dystopia,1326828542 +219962,2985,over the top,1326828558 +219962,2985,Peter Weller,1326828575 +219962,2985,robots,1326828561 +219962,2985,sci-fi,1326828563 +219962,2985,superhero,1326828565 +219962,2990,007,1304577959 +219962,2990,007 (series),1304577961 +219962,2990,assassin,1304577985 +219962,2990,Carey Lowell,1304577999 +219962,2990,franchise,1304577968 +219962,2990,James Bond,1304577965 +219962,2990,Talisa Soto,1304577994 +219962,2990,Timothy Dalton,1304577969 +219962,2993,007,1242992847 +219962,2993,007 (series),1242992845 +219962,2993,Bond,1242992849 +219962,2993,franchise,1242992878 +219962,2993,James Bond,1242992852 +219962,2993,Sean Connery,1242992855 +219962,2993,slick,1242992857 +219962,2997,hallucinatory,1242981996 +219962,2997,John Cusack,1242981976 +219962,2997,John Malkovich,1242981975 +219962,2997,mindfuck,1242981989 +219962,2997,surrealism,1242981972 +219962,2997,weird,1242981994 +219962,3000,anime,1242994359 +219962,3000,environmental,1242994362 +219962,3000,fantasy world,1242994365 +219962,3000,gods,1242994367 +219962,3000,Hayao Miyazaki,1242994370 +219962,3000,Japan,1242994378 +219962,3000,Miyazaki,1242994381 +219962,3000,nature,1242994382 +219962,3000,Studio Ghibli,1242994376 +219962,3015,based on a book,1244570228 +219962,3015,conspiracy,1244570232 +219962,3015,corpses,1244570248 +219962,3015,creepy,1244570251 +219962,3015,hospital,1244570234 +219962,3015,medical thriller,1244570244 +219962,3015,tom selleck,1244570239 +219962,3033,breaking the fourth wall,1242993648 +219962,3033,goofy,1242993685 +219962,3033,hilarious,1242993653 +219962,3033,Mel Brooks,1242993655 +219962,3033,parody,1242993668 +219962,3033,Rick Moranis,1242993676 +219962,3033,space,1242993664 +219962,3033,spoof,1242993660 +219962,3033,star wars,1242993663 +219962,3052,Ben Affleck,1242988312 +219962,3052,Catholicism,1242988300 +219962,3052,controversial,1242988297 +219962,3052,Kevin Smith,1242988290 +219962,3052,Matt Damon,1242988288 +219962,3052,religion,1242988307 +219962,3052,satire,1242988304 +219962,3081,Christina Ricci,1242993821 +219962,3081,Dark,1242993803 +219962,3081,Depp & Burton,1242993805 +219962,3081,Depp and Burton,1242993807 +219962,3081,Fantasy,1242993810 +219962,3081,gothic,1242993813 +219962,3081,Johnny Depp,1242993816 +219962,3081,Tim Burton,1242993818 +219962,3146,stupid,1368274310 +219962,3175,Alan Rickman,1242987827 +219962,3175,alien,1242987829 +219962,3175,aliens,1242987831 +219962,3175,conventions,1242987882 +219962,3175,it should have sucked but didn't,1242987845 +219962,3175,parody,1242987849 +219962,3175,Sam Rockwell,1242987875 +219962,3175,satire,1325166110 +219962,3175,space,1242987853 +219962,3175,spoof,1242987856 +219962,3175,Star Trek,1242987860 +219962,3175,Tim Allen,1325166088 +219962,3175,Tony Shalhoub,1242987862 +219962,3175,unlikely hero,1242987864 +219962,3176,based on a book,1242980921 +219962,3176,Gwyneth Paltrow,1242980944 +219962,3176,Jude Law,1242980916 +219962,3176,Matt Damon,1242980914 +219962,3176,murder,1242980934 +219962,3176,Philip Seymour Hoffman,1242980918 +219962,3176,psychology,1242980923 +219962,3176,serial killer,1242980926 +219962,3198,based on a book,1242986330 +219962,3198,Dustin Hoffman,1242986328 +219962,3198,prison,1242986332 +219962,3198,prison escape,1242986340 +219962,3249,chilling,1391969432 +219962,3249,murder,1391969479 +219962,3249,nanny,1391969475 +219962,3249,Rebecca De Mornay,1391969438 +219962,3249,revenge,1391969441 +219962,3249,suicide,1391969472 +219962,3249,thriller,1391969448 +219962,3264,campy,1413562389 +219962,3264,cheerleading,1413562395 +219962,3264,comedy,1413562393 +219962,3264,dark comedy,1413562391 +219962,3264,Donald Sutherland,1413562381 +219962,3264,Joss Whedon,1413562369 +219962,3264,worse than the show,1413562362 +219962,3273,franchise,1368274074 +219962,3274,Bridget Fonda,1297853347 +219962,3274,identity theft,1297853336 +219962,3274,Jennifer Jason Leigh,1297853351 +219962,3274,lesbian subtext,1297853381 +219962,3274,room-mate from hell,1297853342 +219962,3274,thriller,1297853356 +219962,3274,twins,1297853362 +219962,3275,awesome,1242980588 +219962,3275,dark humor,1242980598 +219962,3275,Irish,1242980560 +219962,3275,Irish Americans,1242980558 +219962,3275,Sean Patrick Flanery,1242980542 +219962,3275,vigilante,1242980549 +219962,3275,vigilantism,1242980551 +219962,3275,Willem Dafoe,1242980546 +219962,3287,Disney,1243767892 +219962,3287,Pooh,1243767895 +219962,3323,black comedy,1262020937 +219962,3323,cast,1262020834 +219962,3323,crime,1262020941 +219962,3323,David Cross,1262020830 +219962,3323,Elijah Wood,1262020826 +219962,3323,heist,1262020850 +219962,3323,not stylish,1262020838 +219962,3323,plot,1262020845 +219962,3323,suicide,1262020870 +219962,3323,theft,1262020855 +219962,3362,police,1368274277 +219962,3408,based on a true story,1242988197 +219962,3408,environmental,1242988200 +219962,3408,investigation,1242988209 +219962,3408,Julia Roberts,1242988210 +219962,3408,social commentary,1242988214 +219962,3408,Strong Women,1242988215 +219962,3440,franchise,1368274074 +219962,3489,fairy tale,1243767685 +219962,3489,Julia Roberts,1243767683 +219962,3489,Peter Pan,1243767670 +219962,3489,Robin Williams,1243767675 +219962,3489,whimsical,1243767678 +219962,3499,adapted from:book,1329500005 +219962,3499,author:Stephen King,1329500011 +219962,3499,based on a book,1329500007 +219962,3499,horror,1329500014 +219962,3499,James Caan,1329500033 +219962,3499,Kathy Bates,1329500038 +219962,3527,action,1342537702 +219962,3527,alien,1342537704 +219962,3527,Arnold Schwarzenegger,1342537724 +219962,3527,Carl Weathers,1342537756 +219962,3527,dialogue,1342537746 +219962,3527,John McTiernan,1342537753 +219962,3527,macho,1342537762 +219962,3527,predator,1342537737 +219962,3527,sci-fi,1342537730 +219962,3527,scifi cult,1342537734 +219962,3527,survival,1342537740 +219962,3527,The story,1342537743 +219962,3556,based on a book,1242980724 +219962,3556,coming of age,1242980722 +219962,3556,high school,1242980727 +219962,3556,Kirsten Dunst,1242980714 +219962,3556,melancholy,1242980728 +219962,3556,stylized,1242980730 +219962,3556,suicide,1242980716 +219962,3623,action,1242986768 +219962,3623,altered tone,1410087230 +219962,3623,based on a tv series,1242986813 +219962,3623,cheesy,1410087226 +219962,3623,espionage,1242986772 +219962,3623,John Woo,1410087223 +219962,3623,Lame ending,1410087212 +219962,3623,mindfuck,1242986784 +219962,3623,sequel,1242986795 +219962,3623,Thandie Newton,1410087221 +219962,3623,Tom Cruise,1242986763 +219962,3635,007,1242993407 +219962,3635,007 (series),1242993405 +219962,3635,assassin,1242993427 +219962,3635,franchise,1242993424 +219962,3635,james bond,1242993411 +219962,3635,nuclear bomb,1242993422 +219962,3635,Roger Moore,1242993413 +219962,3635,submarine,1242993417 +219962,3681,Clint Eastwood,1320607441 +219962,3681,Ennio Morricone,1320607452 +219962,3681,imdb top 250,1320607448 +219962,3681,Lee Van Cleef,1320607456 +219962,3681,morricone score,1320607462 +219962,3681,spaghetti western,1320607471 +219962,3681,western,1320607483 +219962,3697,action,1342537797 +219962,3697,Adam Baldwin,1342537862 +219962,3697,bad acting,1342537878 +219962,3697,bad casting,1342537918 +219962,3697,bad dialogue,1342537891 +219962,3697,bad script,1342537891 +219962,3697,Bill Paxton,1342537873 +219962,3697,Danny Glover,1342537867 +219962,3697,gangs,1342537811 +219962,3697,hunting,1342537815 +219962,3697,Los Angeles,1342537821 +219962,3697,monster,1342537830 +219962,3697,police,1342537836 +219962,3697,predator,1342537806 +219962,3697,sequel,1342537844 +219962,3697,spaceship,1342537908 +219962,3697,subway,1342537852 +219962,3697,survival,1342537903 +219962,3699,aliens,1339921794 +219962,3699,boring,1339921821 +219962,3699,impostor,1339921863 +219962,3699,Jeff Bridges,1339921815 +219962,3699,Karen Allen,1339921816 +219962,3699,overrated,1339921855 +219962,3699,predictable,1339921833 +219962,3699,slow paced,1339921828 +219962,3745,animation,1242992830 +219962,3745,space travel,1242992820 +219962,3787,China,1242993855 +219962,3793,based on comic book,1242977420 +219962,3793,Hugh Jackman,1242977411 +219962,3793,marvel,1242977399 +219962,3793,Patrick Stewart,1242977441 +219962,3793,superhero,1242977385 +219962,3882,cheerleading,1246903702 +219962,3882,Eliza Dushku,1246903705 +219962,3882,Kirsten Dunst,1246903713 +219962,3882,Overrated,1246903709 +219962,3897,bittersweet,1242989396 +219962,3897,coming of age,1242989398 +219962,3897,groupie,1242989401 +219962,3897,journalism,1242989404 +219962,3897,music,1242989407 +219962,3897,nostalgic,1242989409 +219962,3897,Philip Seymour Hoffman,1242989411 +219962,3937,action,1405100319 +219962,3937,bad acting,1405100159 +219962,3937,dystopia,1405100187 +219962,3937,electronics,1405100165 +219962,3937,future,1405100178 +219962,3937,futuristic,1405100183 +219962,3937,Gene Simmons,1405100155 +219962,3937,killer robots,1405100324 +219962,3937,Kirstie Alley,1405100167 +219962,3937,police,1405100302 +219962,3937,robots,1405100137 +219962,3937,Tom Selleck,1405100139 +219962,3948,Ben Stiller,1242995255 +219962,3948,comedy,1242995260 +219962,3948,comical misunderstandings,1242995263 +219962,3948,not funny,1242995290 +219962,3948,Owen Wilson,1242995257 +219962,3948,Robert De Niro,1242995286 +219962,3948,Stiller&Wilson,1242995282 +219962,3949,dark,1242981942 +219962,3949,depressing,1242981940 +219962,3949,disturbing,1242981947 +219962,3949,drug abuse,1242981950 +219962,3949,drugs,1242981945 +219962,3949,heroin,1242981953 +219962,3949,social commentary,1242981957 +219962,3981,Carrie-Anne Moss,1400066244 +219962,3981,colonialism,1400066247 +219962,3981,Mars,1400066203 +219962,3981,scifi,1400066208 +219962,3981,space,1400066205 +219962,3981,terraforming,1400066236 +219962,3981,Val Kilmer,1400066200 +219962,3996,china,1248725194 +219962,3996,Kung Fu,1248725204 +219962,3996,martial arts,1248725206 +219962,3996,poetic,1248725264 +219962,3996,romance,1248725256 +219962,3996,stylized,1248725269 +219962,3996,sword fight,1248725210 +219962,3996,Yun-Fat Chow,1248725245 +219962,3996,Ziyi Zhang,1248725253 +219962,4011,Brad Pitt,1242981308 +219962,4011,Crime,1242981324 +219962,4011,Guy Ritchie,1242981312 +219962,4011,Jason Statham,1242981318 +219962,4011,twist ending,1242981315 +219962,4014,food/cooking,1242980445 +219962,4014,Johnny Depp,1242980442 +219962,4014,Quirky,1242980456 +219962,4014,small town,1242980453 +219962,4025,beauty pageant,1243006284 +219962,4025,chick flick,1243006310 +219962,4025,girlie movie,1243006322 +219962,4025,Michael Caine,1243006296 +219962,4025,ridiculous,1243006314 +219962,4025,Sandra Bullock,1243006293 +219962,4027,bluegrass,1248797915 +219962,4027,Coen Brothers,1242979928 +219962,4027,George Clooney,1242979918 +219962,4027,great soundtrack,1242979921 +219962,4027,prison escape,1248797920 +219962,4027,Quirky,1242979925 +219962,4027,racism,1248797918 +219962,4029,based on a book,1242993176 +219962,4029,movies,1242993190 +219962,4029,Sarah Jessica Parker,1242993188 +219962,4029,William H. Macy,1242993186 +219962,4034,oscar (best cinematography),1368274233 +219962,4036,Cary Elwes,1242994018 +219962,4036,film within a film,1242994039 +219962,4036,John Malkovich,1242994031 +219962,4036,vampire,1242994027 +219962,4036,Willem Dafoe,1242994029 +219962,4124,Bahamas,1404563546 +219962,4124,franchise,1404563458 +219962,4124,Mario Van Peebles gets eaten,1404563477 +219962,4124,Michael Caine,1404563449 +219962,4124,not enough blood,1404563466 +219962,4124,sequel,1404563462 +219962,4124,shark,1404563447 +219962,4124,shark vs plane,1404563577 +219962,4124,underwater,1404563550 +219962,4133,80s nostalgia,1245695683 +219962,4133,campy,1245695707 +219962,4133,Frank Langella,1245695698 +219962,4133,muscle,1245695722 +219962,4133,skeletor,1245695699 +219962,4133,star wars ripoff,1245695713 +219962,4226,cerebral,1242986879 +219962,4226,disappointing ending,1242986923 +219962,4226,Mindfuck,1242986896 +219962,4226,nonlinear,1242986883 +219962,4226,overrated,1242986901 +219962,4226,stylized,1242986906 +219962,4226,twist ending,1242986876 +219962,4234,adapted from:book,1346246181 +219962,4234,author:John le Carre,1346246184 +219962,4234,based on a book,1346246178 +219962,4234,boring,1346246226 +219962,4234,disappointing ending,1346246236 +219962,4234,espionage,1346246195 +219962,4234,Latin America,1346246199 +219962,4234,lies,1346246220 +219962,4234,literary adaptation,1346246200 +219962,4234,Panama,1346246207 +219962,4234,Pierce Brosnan,1346246210 +219962,4234,too long,1346246224 +219962,4246,based on a book,1242988702 +219962,4246,chick flick,1242988700 +219962,4246,Colin Firth,1393873132 +219962,4246,funny,1242988706 +219962,4246,girlie movie,1242988705 +219962,4246,guilty pleasure,1242988710 +219962,4246,Hugh Grant,1393873121 +219962,4246,Renee Zellweger,1393873124 +219962,4246,romance,1242988718 +219962,4275,British,1246214407 +219962,4275,fantasy,1246214399 +219962,4275,Ken Marshall,1246214449 +219962,4275,Liam Neeson,1246214433 +219962,4275,Lysette Anthony,1246214412 +219962,4306,animation,1242979876 +219962,4306,computer animation,1242979877 +219962,4306,Dreamworks,1242979879 +219962,4306,Eddie Murphy,1242979871 +219962,4306,Mike Myers,1242979872 +219962,4306,parody,1242979882 +219962,4306,pixar,1368274261 +219962,4562,Ben Kingsley,1286703655 +219962,4562,Michael Caine,1286703651 +219962,4562,Sherlock Holmes,1286703658 +219962,4562,Victorian era,1286703656 +219962,4638,actors,1410200610 +219962,4638,actresses,1410200612 +219962,4638,dinosaurs,1410200599 +219962,4638,franchise,1410200620 +219962,4638,Michael Crichton,1410200615 +219962,4638,Sam Neill,1410200601 +219962,4638,stranded,1410200614 +219962,4638,weak plot,1410200605 +219962,4720,atmospheric,1242994740 +219962,4720,ghosts,1242994743 +219962,4720,haunted house,1242994746 +219962,4720,surprise ending,1242994749 +219962,4720,twist ending,1242994750 +219962,4763,gay interest,1242981896 +219962,4763,glbt,1242981893 +219962,4763,Thailand,1242981901 +219962,4763,transgendered,1242981890 +219962,4848,dark,1242994964 +219962,4848,David Lynch,1242994960 +219962,4848,disturbing,1242994966 +219962,4848,dreamlike,1242994968 +219962,4848,lesbian,1242994972 +219962,4848,mindfuck,1242994973 +219962,4848,nonlinear,1242994976 +219962,4848,surreal,1242994978 +219962,4865,dark,1368273996 +219962,4865,mystery,1368274156 +219962,4874,alien,1242987264 +219962,4874,aliens,1242987261 +219962,4874,Kevin Spacey,1242987260 +219962,4874,sci-fi,1242987273 +219962,4878,dreamlike,1242980379 +219962,4878,enigmatic,1242980395 +219962,4878,Parallel universe,1242980387 +219962,4878,quirky,1242980389 +219962,4878,sci-fi,1242980391 +219962,4878,stylized,1242980400 +219962,4878,surreal,1242980382 +219962,4878,time travel,1242980385 +219962,4881,boring,1301154379 +219962,4881,Coen Brothers,1301154382 +219962,4881,great cinematography,1301154384 +219962,4881,James Gandolfini,1301154386 +219962,4881,narrated,1301154398 +219962,4881,noirish,1301154404 +219962,4881,unusual,1301154416 +219962,4886,animated,1242995154 +219962,4886,animation,1242995157 +219962,4886,cartoon,1242995186 +219962,4886,cute,1242995173 +219962,4886,Pixar,1242995176 +219962,4886,Pixar animation,1242995178 +219962,4886,Steve Buscemi,1242995179 +219962,4896,based on a book,1242987644 +219962,4896,fantasy,1242987653 +219962,4896,good versus evil,1242987648 +219962,4896,harry potter,1242987639 +219962,4896,magic,1242987642 +219962,4896,Wizards,1242987641 +219962,4963,Brad Pitt,1242986438 +219962,4963,caper,1242986457 +219962,4963,casino,1242986444 +219962,4963,George Clooney,1242986441 +219962,4963,heist,1242986448 +219962,4963,Matt Damon,1242986437 +219962,4963,remake,1242986452 +219962,4973,coming of age,1242989373 +219962,4973,Paris,1242989389 +219962,4973,quirky,1242989377 +219962,4973,stylized,1242989387 +219962,4973,whimsical,1242989383 +219962,4981,farce,1288440092 +219962,4981,headmaster,1288440121 +219962,4981,John Cleese,1288440098 +219962,4981,school,1288440124 +219962,4981,teacher,1288440117 +219962,4987,android,1299487097 +219962,4987,awful...just awful,1299487037 +219962,4987,Michael Ironside,1299487104 +219962,4987,Molly Ringwald,1299487053 +219962,4987,rescue mission,1299487266 +219962,4987,space,1299487056 +219962,4987,space travel,1299487065 +219962,4987,vehicles,1299487070 +219962,4992,chick flick,1242995666 +219962,4992,girlie movie,1242995668 +219962,4992,Hugh Jackman,1242995672 +219962,4992,Romance,1242995678 +219962,4992,time travel,1242995674 +219962,4993,based on book,1242897429 +219962,4993,fantasy,1242897431 +219962,4993,high fantasy,1242897422 +219962,4993,wizards,1242897425 +219962,5004,absurd,1288428529 +219962,5004,Birdie num nums,1288428503 +219962,5004,Blake Edwards,1288428518 +219962,5004,comedy,1288428533 +219962,5004,peter sellers,1288428511 +219962,5016,based on a book,1242981530 +219962,5016,bleak,1242981533 +219962,5016,cate blanchett,1242981526 +219962,5016,incest,1242981551 +219962,5016,Judi Dench,1242981524 +219962,5016,Newfoundland,1242981544 +219962,5026,18th century,1242988661 +219962,5026,atmospheric,1242988649 +219962,5026,goth,1242988670 +219962,5026,martial arts,1242988672 +219962,5026,stylized,1242988676 +219962,5026,werewolf,1242988687 +219962,5039,apprentice,1330425432 +219962,5039,Caitlin Clarke,1330425178 +219962,5039,dragons,1330425148 +219962,5039,fantasy,1330425376 +219962,5039,go-motion,1330425305 +219962,5039,high fantasy,1330425147 +219962,5039,ILM effects,1330425282 +219962,5039,magic,1330425192 +219962,5039,Peter MacNicol,1330425152 +219962,5039,slow paced,1330425382 +219962,5039,sorcerer's apprentice,1330425442 +219962,5039,Sorcerers,1330425154 +219962,5039,sword and sorcery,1330425419 +219962,5039,virgin sacrifice,1330425322 +219962,5046,Gary Sinise,1242987373 +219962,5046,nothing special,1242987376 +219962,5046,Philip K. Dick,1242987386 +219962,5046,Tony Shalhoub,1242987378 +219962,5105,atmospheric,1403729542 +219962,5105,creepy,1403729545 +219962,5105,Donald Sutherland,1403729574 +219962,5105,Italy,1403729584 +219962,5105,macabre,1403729559 +219962,5105,Venice,1403729583 +219962,5120,adultery,1242993765 +219962,5120,alter ego,1242993769 +219962,5120,Michael Caine,1242993783 +219962,5120,murder,1242993785 +219962,5218,animals,1345132226 +219962,5218,animated,1345132228 +219962,5218,animation,1345132229 +219962,5218,best animated movie,1345132306 +219962,5218,cartoon,1345132233 +219962,5218,cgi,1345132238 +219962,5218,Disney,1345132241 +219962,5218,environmental,1345132268 +219962,5218,funny,1345132259 +219962,5218,pixar,1368274261 +219962,5218,Ray Romano,1345132320 +219962,5218,sloth,1345132346 +219962,5218,talking animals,1345132261 +219962,5218,witty,1345132263 +219962,5299,chick flick,1242994874 +219962,5299,girlie movie,1242994880 +219962,5299,greek,1242994910 +219962,5299,RomCom,1242994887 +219962,5299,Strong Women,1242994893 +219962,5299,wedding,1242994890 +219962,5349,alter ego,1242981266 +219962,5349,based on comic book,1242981261 +219962,5349,Kirsten Dunst,1242981233 +219962,5349,super-hero,1242981247 +219962,5349,superhero,1242981250 +219962,5349,Tobey Maguire,1242981246 +219962,5378,Ewan McGregor,1242981194 +219962,5378,futuristic,1242981211 +219962,5378,Natalie Portman,1242981200 +219962,5378,prequel,1242981218 +219962,5378,Samuel L. Jackson,1242981202 +219962,5378,sci-fi,1242981223 +219962,5378,sequel,1242981214 +219962,5378,space,1242981225 +219962,5378,Star Wars,1242981204 +219962,5418,amnesia,1242988874 +219962,5418,assassins,1242988855 +219962,5418,espionage,1242988861 +219962,5418,Matt Damon,1242988857 +219962,5418,memory loss,1242988867 +219962,5418,spy,1242988872 +219962,5444,pixar,1368274261 +219962,5445,artificial intelligence,1242995192 +219962,5445,based on a book,1242995195 +219962,5445,dystopia,1242995201 +219962,5445,murder,1242995203 +219962,5445,mystery,1242995207 +219962,5445,Philip K. Dick,1242995198 +219962,5445,Tom Cruise,1242995211 +219962,5445,violence,1242995212 +219962,5463,bad plot,1262023663 +219962,5463,Christian Bale,1262023626 +219962,5463,dark,1262023643 +219962,5463,dragons,1262023640 +219962,5463,dystopia,1262023655 +219962,5463,fantasy,1262023646 +219962,5463,Gerard Butler,1262023627 +219962,5463,plot,1262023658 +219962,5463,Post apocalyptic,1262023634 +219962,5463,Rob Bowman,1262023639 +219962,5463,scifi,1262023650 +219962,5618,anime,1242979798 +219962,5618,fantasy,1242979796 +219962,5618,Hayao Miyazaki,1242979786 +219962,5618,Japan,1242979794 +219962,5618,Studio Ghibli,1242979788 +219962,5618,whimsical,1242979791 +219962,5669,9/11,1242988781 +219962,5669,american idiocy,1242988814 +219962,5669,anti-Bush,1242988782 +219962,5669,documentary,1242988770 +219962,5669,documentary critique,1242988772 +219962,5669,politics,1242988810 +219962,5669,propaganda,1242988786 +219962,5669,racism,1242988804 +219962,5669,terrorism,1242988798 +219962,5669,violence in america,1242988796 +219962,5679,creepy,1242994260 +219962,5679,disturbing,1242994258 +219962,5679,ghost story,1242994265 +219962,5679,Good Versus Evil,1242994282 +219962,5679,horror,1242994271 +219962,5679,remake,1242994293 +219962,5679,suspense,1242994286 +219962,5679,thriller,1242994288 +219962,5779,diving,1400405228 +219962,5779,Flying Fish!,1400405215 +219962,5779,genetically modified monsters,1400405250 +219962,5779,gore,1400405255 +219962,5779,horror,1400405218 +219962,5779,killer fish,1400405225 +219962,5779,Lance Henriksen,1400405239 +219962,5779,thriller,1400405221 +219962,5779,underwater,1400405231 +219962,5785,stupid,1368274310 +219962,5816,alan rickman,1242987775 +219962,5816,based on a book,1242987768 +219962,5816,fantasy,1242987791 +219962,5816,franchise,1242987777 +219962,5816,harry potter,1242987773 +219962,5816,magic,1242987783 +219962,5816,sequel,1242987785 +219962,5816,Wizards,1242987787 +219962,5903,Amazing Cinematography,1242988266 +219962,5903,Christian Bale,1242988225 +219962,5903,drugs,1242988270 +219962,5903,dystopia,1242988263 +219962,5903,revolution,1242988246 +219962,5903,Taye Diggs,1242988278 +219962,5903,totalitarianism,1242988240 +219962,5952,Elijah Wood,1242980007 +219962,5952,elves,1242980024 +219962,5952,fantasy,1242979995 +219962,5952,high fantasy,1242979999 +219962,5952,Ian McKellen,1242980019 +219962,5952,magic,1242980014 +219962,5952,Peter Jackson,1242980001 +219962,5971,anime,1242897379 +219962,5971,Hayao Miyazaki,1242897381 +219962,5971,Miyazaki,1242897385 +219962,5971,Studio Ghibli,1242897383 +219962,5971,Totoro,1242897410 +219962,6104,British,1350062942 +219962,6104,Graham Chapman,1350062954 +219962,6104,John Cleese,1350062950 +219962,6104,Michael Palin,1350062991 +219962,6104,Monty Python,1350062952 +219962,6104,no real storyline,1350062958 +219962,6104,sketch comedy,1350062960 +219962,6104,skits,1350062962 +219962,6137,adventure,1405546717 +219962,6137,Arthurian legend,1405546639 +219962,6137,bad acting,1405546651 +219962,6137,fantasy,1405546643 +219962,6137,Miles O'Keeffe,1405546657 +219962,6137,Sean Connery,1405546647 +219962,6137,soundtrack,1405546761 +219962,6137,sword and sorcery,1405546737 +219962,6137,sword fight,1405546727 +219962,6137,the wig,1405547077 +219962,6187,Capital Punishment,1242995497 +219962,6187,Death penalty,1242995500 +219962,6187,Kate Winslet,1242995496 +219962,6187,Kevin Spacey,1242995494 +219962,6217,Glenn Close,1242981701 +219962,6323,Clea DuVall,1242895420 +219962,6323,John Cusack,1242895422 +219962,6323,mystery,1368274153 +219962,6323,Ray Liotta,1242895542 +219962,6323,twist ending,1242895569 +219962,6333,comic book,1242980673 +219962,6333,genetics,1242980695 +219962,6333,Hugh Jackman,1242980683 +219962,6333,Ian McKellen,1242980678 +219962,6333,marvel,1242980704 +219962,6333,mutants,1242980702 +219962,6333,Patrick Stewart,1242980689 +219962,6333,sci-fi,1242980658 +219962,6333,super-hero,1242980697 +219962,6333,superhero,1242980657 +219962,6333,supernatural powers,1242980699 +219962,6365,crappy sequel,1242995325 +219962,6365,Hugo Weaving,1242995310 +219962,6365,human versus computer,1242995328 +219962,6365,Keanu Reeves,1242995314 +219962,6365,Matrix,1242995316 +219962,6365,Post apocalyptic,1242995323 +219962,6365,virtual reality,1242995320 +219962,6373,comedy,1242988624 +219962,6373,fantasy,1242988632 +219962,6373,god,1242988627 +219962,6373,Jim Carrey,1242988622 +219962,6373,religion,1242988641 +219962,6373,supernatural,1242988637 +219962,6377,animation,1242988129 +219962,6377,children,1242988132 +219962,6377,Disney,1242988134 +219962,6377,Disney animated feature,1242988136 +219962,6377,Pixar,1242988144 +219962,6377,Pixar animation,1242988145 +219962,6377,talking animals,1242988147 +219962,6378,caper,1242987299 +219962,6378,con men,1242987296 +219962,6378,heist,1242987294 +219962,6378,remake,1242987285 +219962,6378,robbery,1242987290 +219962,6378,twists & turns,1242987288 +219962,6537,franchise,1368274074 +219962,6539,adventure,1242986119 +219962,6539,funny,1242986128 +219962,6539,Johnny Depp,1242986113 +219962,6539,pirates,1242986114 +219962,6539,swashbuckler,1242986116 +219962,6539,sword fight,1242986133 +219962,6539,Zombies,1242986123 +219962,6541,comic book,1242995515 +219962,6541,disappointing,1242995517 +219962,6541,gothic,1242995519 +219962,6541,pulp,1242995507 +219962,6541,Sean Connery,1242995509 +219962,6541,steampunk,1242995523 +219962,6541,vampires,1242995525 +219962,6711,atmospheric,1242995373 +219962,6711,Bill Murray,1242995376 +219962,6711,bittersweet,1242995379 +219962,6711,Japan,1242995381 +219962,6711,Melancholic,1242995383 +219962,6711,relationships,1242995387 +219962,6711,Sophia Coppola,1242995392 +219962,6711,tokyo,1242995393 +219962,6764,Amazon,1323708218 +219962,6764,Dwayne Johnson,1323708220 +219962,6764,Rosario Dawson,1323708408 +219962,6764,Seann William Scott,1323708394 +219962,6764,The Rock,1323708397 +219962,6764,treasure hunt,1323708414 +219962,6765,chick flick,1256632640 +219962,6765,Diane Lane,1256632645 +219962,6765,friendship,1256632667 +219962,6765,gay friend,1256632665 +219962,6765,girlie movie,1256632646 +219962,6765,pretty but pointless,1256632676 +219962,6765,romance,1256632657 +219962,6765,Sandra Oh,1256632650 +219962,6765,searching for love,1256632661 +219962,6765,Tuscany,1256632652 +219962,6774,creepy,1248962216 +219962,6774,ridiculous,1248962261 +219962,6774,silly plot,1248962234 +219962,6873,black comedy,1249417069 +219962,6873,coen bros,1249417060 +219962,6873,divorce,1249417088 +219962,6873,farce,1249417078 +219962,6873,George Clooney,1249417065 +219962,6873,lawyers,1249417092 +219962,6873,money,1249417257 +219962,6873,Paul Adelstein,1249417206 +219962,6873,predictable,1249417097 +219962,6873,revenge,1249417253 +219962,6873,romance,1249417085 +219962,6874,Japan,1242980102 +219962,6874,Kick-Butt Women,1242980098 +219962,6874,martial arts,1242980095 +219962,6874,Quentin Tarantino,1242980090 +219962,6874,stylized,1242980108 +219962,6874,Uma Thurman,1242980093 +219962,6874,violent,1242980105 +219962,6932,Hayden Christensen,1242993978 +219962,6932,journalism,1242993980 +219962,6932,magazines,1242993992 +219962,6932,news industry,1242993996 +219962,6932,news media,1242994001 +219962,6932,true story,1242993985 +219962,6942,Alan Rickman,1244371751 +219962,6942,Billy Bob Thornton,1244371770 +219962,6942,christmas,1244371754 +219962,6942,ensemble cast,1244371757 +219962,6942,multiple storylines,1244371761 +219962,6942,Romance,1244371763 +219962,6959,Anna Friel,1252867139 +219962,6959,Billy Connolly,1252867078 +219962,6959,Gerard Butler,1252867081 +219962,6959,medieval,1252867086 +219962,6959,Michael Crichton,1252867135 +219962,6959,time travel,1252867090 +219962,6990,19th century,1244886090 +219962,6990,adapted from:book,1244886070 +219962,6990,crime,1244886098 +219962,6990,Donald Sutherland,1244886072 +219962,6990,gold,1244886107 +219962,6990,heist,1244886083 +219962,6990,robbery,1244886102 +219962,6990,Sean Connery,1244886079 +219962,6990,trains,1244886111 +219962,6996,acting,1391969252 +219962,6996,bad acting,1391969273 +219962,6996,bad plot,1391969253 +219962,6996,bad sequel,1391969256 +219962,6996,crappy sequel,1391969278 +219962,6996,Ruined the franchise,1391969259 +219962,6996,sword fight,1391969264 +219962,7034,adolescence,1245416529 +219962,7034,bittersweet,1245416534 +219962,7034,friendship,1245416550 +219962,7034,lesbian,1245416536 +219962,7034,mother daughter relationship,1245416539 +219962,7034,sexuality,1245416547 +219962,7034,small town,1245416547 +219962,7034,teenagers,1245416543 +219962,7090,Beautiful,1242987516 +219962,7090,China,1242987513 +219962,7090,Epic,1242987518 +219962,7090,Jet Li,1242987522 +219962,7090,Kick-Butt Women,1242987523 +219962,7090,martial arts,1242987508 +219962,7090,visually appealing,1242987510 +219962,7153,fantasy,1242980040 +219962,7153,high fantasy,1242980046 +219962,7153,magic,1242980043 +219962,7153,oscar (best cinematography),1368274232 +219962,7154,chick flick,1242986697 +219962,7154,college,1242986710 +219962,7154,Julia Roberts,1242986692 +219962,7154,Kirsten Dunst,1242986695 +219962,7154,sentimental,1242986730 +219962,7154,Strong Women,1242986732 +219962,7154,touching,1242986745 +219962,7266,b-movie,1242987078 +219962,7266,low budget,1242987068 +219962,7266,parody,1242987060 +219962,7266,sci-fi,1242987074 +219962,7266,spoof,1242987081 +219962,7266,wacky scientist,1242987057 +219962,7318,bloody,1242994651 +219962,7318,Christianity,1242994634 +219962,7318,James Caviezel,1242994629 +219962,7318,Mel Gibson,1242994632 +219962,7318,overrated,1242994614 +219962,7318,violent,1242994624 +219962,7318,way way way overrated,1242994622 +219962,7361,Elijah Wood,1242982022 +219962,7361,Jim Carrey,1242982004 +219962,7361,surreal,1242982006 +219962,7361,surrealism,1242982009 +219962,7373,comic book,1242987604 +219962,7373,gothic,1242987632 +219962,7373,graphic novel,1242987608 +219962,7373,Guillermo del Toro,1242987606 +219962,7373,nazis,1242987610 +219962,7373,occult technology,1242987612 +219962,7373,steampunk,1242987624 +219962,7373,superhero,1242987615 +219962,7438,Kick-Butt Women,1242995635 +219962,7438,kung fu,1242995639 +219962,7438,martial arts,1242995642 +219962,7438,not as good as the first,1242995655 +219962,7438,Quentin Tarantino,1242995633 +219962,7438,stylized,1242995644 +219962,7438,Uma Thurman,1242995630 +219962,7438,violence,1242995645 +219962,7438,violent,1242995647 +219962,7451,based on a book,1242986964 +219962,7451,High School,1242986960 +219962,7451,lesbian subtext,1242987013 +219962,7451,Lindsay Lohan,1242986966 +219962,7451,Lizzy Caplan,1242986968 +219962,7451,suprisingly clever,1242986974 +219962,7451,Tim Meadows,1242986986 +219962,7458,based on a myth,1242992595 +219962,7458,Brad Pitt,1242992596 +219962,7458,Epic,1242992601 +219962,7458,Orlando Bloom,1242992603 +219962,7458,sword and sandal,1242992608 +219962,7981,better than the american version,1376154553 +219962,7981,dialogue,1376154583 +219962,7981,excellent script,1376154569 +219962,7981,gritty,1376154588 +219962,7981,hard to follow,1376154590 +219962,7981,hong kong,1376154603 +219962,7981,imdb top 250,1376154579 +219962,7981,music,1376154613 +219962,7981,nonlinear,1376154597 +219962,7981,police,1376154667 +219962,7981,remade,1376154618 +219962,7981,slick,1376154635 +219962,7981,story,1376154621 +219962,7981,stylized,1376154623 +219962,7981,undercover cop,1376154576 +219962,8360,animation,1242981508 +219962,8360,computer animation,1242981494 +219962,8360,Dreamworks,1242981470 +219962,8360,Dreamworks animation,1242981509 +219962,8360,Eddie Murphy,1242981492 +219962,8360,Mike Myers,1242981490 +219962,8360,parody,1242981477 +219962,8360,sequels,1242981472 +219962,8360,talking animals,1242981474 +219962,8368,based on a book,1242987669 +219962,8368,franchise,1242987690 +219962,8368,Gary Oldman,1242987665 +219962,8368,harry potter,1242987663 +219962,8368,magic,1242987674 +219962,8368,sequel,1242987676 +219962,8368,werewolf,1242987683 +219962,8373,androids,1249407919 +219962,8373,Bette Midler,1249407941 +219962,8373,Christopher Walken,1249407944 +219962,8373,Matthew Broderick,1249407947 +219962,8373,Nicole Kidman,1249407939 +219962,8373,remake,1249407928 +219962,8464,american idiocy,1242993065 +219962,8464,Anti-Corporation,1242993063 +219962,8464,documentary,1242993066 +219962,8464,fast food,1242993069 +219962,8464,health,1242993098 +219962,8464,McDonalds,1242993074 +219962,8464,Morgan Spurlock,1242993111 +219962,8464,propaganda,1242993081 +219962,8464,revealing,1242993102 +219962,8464,social message,1242993092 +219962,8485,buddhism,1242994125 +219962,8485,monks,1242994148 +219962,8485,religion,1242994127 +219962,8485,romance,1242994139 +219962,8529,airport,1242980830 +219962,8529,heartfelt,1242980841 +219962,8529,humorous,1242980842 +219962,8529,Krakozhia,1242980892 +219962,8529,slow,1242980896 +219962,8529,Stanley Tucci,1242980876 +219962,8529,Tom Hanks,1242980828 +219962,8529,underrated,1242980845 +219962,8644,artificial intelligence,1242996010 +219962,8644,futuristic,1242996015 +219962,8644,Isaac Asimov,1242996017 +219962,8644,robots,1242996021 +219962,8644,sci-fi,1242996023 +219962,8644,Will Smith,1242996024 +219962,8781,politics,1368274295 +219962,8807,"""potty"" jokes",1289201378 +219962,8807,Buddy movie,1289201376 +219962,8807,John Cho,1289201394 +219962,8807,Kal Penn,1289201398 +219962,8807,Neil Patrick Harris,1289201414 +219962,8807,road trip,1289201403 +219962,8807,Stoner Movie,1289201406 +219962,8810,action,1339337918 +219962,8810,Alien,1339337877 +219962,8810,aliens,1339337878 +219962,8810,Antarctica,1339337873 +219962,8810,franchise,1339337871 +219962,8810,horror,1339337921 +219962,8810,Lance Henriksen,1339337930 +219962,8810,monster,1339337909 +219962,8810,Predators,1339337925 +219962,8810,Sanaa Lathan,1339337934 +219962,8865,Angelina Jolie,1242895853 +219962,8865,Giovanni Ribisi,1242895873 +219962,8865,Jude Law,1242895856 +219962,8865,steampunk,1242895858 +219962,8874,black comedy,1242993923 +219962,8874,British,1242993925 +219962,8874,dark humor,1242993931 +219962,8874,gore,1242993953 +219962,8874,mmm... brains...,1242993947 +219962,8874,offbeat,1242993940 +219962,8874,Simon Pegg,1242993938 +219962,8874,spoof,1242993944 +219962,8874,zombies,1242993941 +219962,8917,bizarre,1242993041 +219962,8917,doll sex,1242993025 +219962,8917,funny moments,1242993045 +219962,8917,Gross-out,1242993027 +219962,8917,musical,1242993055 +219962,8917,not exactly pc,1242993031 +219962,8917,puppets,1242993034 +219962,8917,satire,1242993036 +219962,8917,stupid,1242993037 +219962,8949,overrated,1242894430 +219962,8949,sandra oh,1242894455 +219962,8949,wine,1242894439 +219962,8958,adultery,1291019283 +219962,8958,Biography,1291019294 +219962,8958,biopic,1291019291 +219962,8958,drug use,1291019279 +219962,8958,drugs,1291019275 +219962,8958,Jamie Foxx,1291019299 +219962,8958,music,1291019310 +219962,8958,music business,1291019308 +219962,8958,Oscar Winner,1291019316 +219962,8958,Ray Charles,1291019303 +219962,8958,rhythm & blues,1291019301 +219962,8961,animation,1242987338 +219962,8961,Disney,1242987365 +219962,8961,Pixar,1242987340 +219962,8961,stylized,1242987362 +219962,8961,super-hero,1242987342 +219962,8961,superhero,1242987345 +219962,8961,superheroes,1242987347 +219962,8965,animation,1242994453 +219962,8965,Christian,1242994458 +219962,8965,Christmas,1242994460 +219962,8965,computer animation,1242994467 +219962,8965,Tom Hanks,1242994478 +219962,8965,very boring,1242994476 +219962,8972,Nazis,1242994810 +219962,8972,Nicolas Cage,1242994814 +219962,8972,puzzle solving,1242994848 +219962,8972,secret societies,1242994822 +219962,8972,surprisingly good,1242994828 +219962,8972,treasure,1242994831 +219962,8972,treasure hunt,1242994837 +219962,8973,Catholic school,1249323657 +219962,8973,child abuse,1249323668 +219962,8973,cross-dressing men,1249323647 +219962,8973,enigmatic,1249323615 +219962,8973,glbt,1249323681 +219962,8973,meta,1249323672 +219962,8973,mistaken identity,1249323704 +219962,8973,Pedro Almodovar,1249323621 +219962,8973,queer,1249323623 +219962,8973,reflective,1249323684 +219962,8973,revenge,1249323627 +219962,8973,sexuality,1249323632 +219962,8973,stylized,1249323630 +219962,8981,based on a play,1261744548 +219962,8981,characters,1261744551 +219962,8981,disturbing,1261744545 +219962,8981,Jude Law,1261744554 +219962,8981,Natalie Portman,1261744558 +219962,8981,play adaptation,1261744577 +219962,8983,Beautiful,1242980226 +219962,8983,China,1242980260 +219962,8983,female warriors,1242980251 +219962,8983,heroine,1242980256 +219962,8983,Kick-Butt Women,1242980224 +219962,8983,martial arts,1242980210 +219962,8983,overrated,1242980244 +219962,8983,Visual spectacle,1242980219 +219962,8984,Brad Pitt,1242994781 +219962,8984,ensemble cast,1242994789 +219962,8984,George Clooney,1242994791 +219962,8984,heist,1242994792 +219962,8984,Matt Damon,1242994797 +219962,8984,not as good as the first,1242994795 +219962,8984,Robbery,1242994799 +219962,26464,action,1343381839 +219962,26464,conspiracy,1343381903 +219962,26464,helicopter,1343381837 +219962,26464,macho,1343381916 +219962,26464,Malcolm McDowell,1343381887 +219962,26464,police,1343381829 +219962,26464,racist,1343381842 +219962,26464,Roy Scheider,1343381865 +219962,26464,scifi,1343381899 +219962,26464,violent,1343381911 +219962,26524,documentary,1243767161 +219962,26593,B-movie,1266850055 +219962,26593,exploding codpiece,1266850057 +219962,26755,biker gang,1262466514 +219962,26755,bikers,1262466518 +219962,26755,Lance Henriksen,1262466508 +219962,26755,mullet,1262466529 +219962,26755,organized crime,1262466545 +219962,26755,undercover cop,1262466523 +219962,26776,action,1345477998 +219962,26776,adventure,1345477999 +219962,26776,animation,1345478003 +219962,26776,anime,1345478005 +219962,26776,aviation,1345478010 +219962,26776,flying,1345478020 +219962,26776,flying pigs,1345478021 +219962,26776,Hayao Miyazaki,1345478022 +219962,26776,Italy,1345478026 +219962,26776,Miyazaki,1345478032 +219962,26776,pigs,1345478033 +219962,26776,politics,1345478035 +219962,26776,Studio Ghibli,1345478038 +219962,27006,Citizen Kane,1258886397 +219962,27006,Liev Schreiber,1258886381 +219962,27006,movie business,1258886386 +219962,27006,Orson Welles,1258886410 +219962,27006,true story,1258886387 +219962,27156,anime,1242982089 +219962,27216,cult classic,1248001758 +219962,27611,better than the old version,1242989126 +219962,27611,Edward James Olmos,1242989105 +219962,27611,Mary McDonnell,1242989140 +219962,27611,political,1242989110 +219962,27611,remake,1242989143 +219962,27611,Ron Moore,1242989114 +219962,27611,sci-fi,1242989131 +219962,27611,space,1242989137 +219962,27611,tv show,1242989134 +219962,27706,based on a book,1242980073 +219962,27706,jim carrey,1242980066 +219962,27706,Jude Law,1242980064 +219962,27788,Adrien Brody,1248602852 +219962,27788,amnesia,1248602889 +219962,27788,brutal,1248602877 +219962,27788,complex,1248602857 +219962,27788,confusing,1248602859 +219962,27788,Keira Knightley,1248602862 +219962,27788,mental hospital,1248602865 +219962,27788,mental institution,1248602873 +219962,27788,mindfuck,1248602867 +219962,27788,painful to watch,1248602901 +219962,27788,twist ending,1248602886 +219962,27831,caper movie,1242995553 +219962,27831,daniel craig,1242995539 +219962,27831,DRUG TRADE,1242995551 +219962,27831,overrated,1242995545 +219962,27846,american idiocy,1242988495 +219962,27846,capitalism,1242988499 +219962,27846,corporations,1242988503 +219962,27846,documentary,1242988501 +219962,27846,documentary critique,1242988533 +219962,27846,evil corporations,1242988530 +219962,27846,politics,1242988517 +219962,27904,rotoscope,1242814476 +219962,27904,weird,1242814481 +219962,30793,based on a book,1242988590 +219962,30793,better than the old version,1242988613 +219962,30793,chocolate,1242988597 +219962,30793,fantasy,1242988592 +219962,30793,Johnny Depp,1242988577 +219962,30793,quirky,1242988599 +219962,30793,remake,1242988580 +219962,30793,roald dahl,1242988584 +219962,30793,Tim Burton,1242988578 +219962,31658,anime,1242987445 +219962,31658,fantasy world,1242987452 +219962,31658,Hayao Miyazaki,1242987440 +219962,31658,steampunk,1242987450 +219962,31658,Studio Ghibli,1242987442 +219962,31658,stylized,1242987447 +219962,31658,war,1242987460 +219962,31658,whimsical,1242987444 +219962,31687,animation,1243767868 +219962,31687,Disney,1243767873 +219962,31687,Pooh,1243767876 +219962,31804,alternate reality,1315388090 +219962,31804,atmospheric,1315388128 +219962,31804,Russian,1315388117 +219962,31804,vampires,1315388105 +219962,32031,business,1268913968 +219962,32031,cgi,1268913957 +219962,32031,Dance,1268913934 +219962,32031,Ewan McGregor,1268913941 +219962,32031,Poor plot development,1268913952 +219962,32031,robots,1268913943 +219962,32501,confusing plot,1400265749 +219962,32501,cyberpunk,1400265821 +219962,32501,cyborgs,1400265731 +219962,32501,future,1400265779 +219962,32501,Korea,1400265727 +219962,32501,pacing,1400265739 +219962,32501,police,1400265736 +219962,32501,scifi,1400265724 +219962,32501,stylistic,1400265883 +219962,32587,based on comic,1242993830 +219962,32587,cannibalism,1242993846 +219962,32587,comic book,1242993832 +219962,32587,dark,1242993834 +219962,32587,multiple storylines,1242993837 +219962,32587,Quentin Tarantino,1242993840 +219962,32587,stylized,1242993842 +219962,32587,violence,1242993844 +219962,33154,corporate America,1243767201 +219962,33154,corruption,1243767183 +219962,33154,economics,1243767188 +219962,33154,scam,1243767197 +219962,33154,scandal,1243767190 +219962,33493,dark,1242993315 +219962,33493,Natalie Portman,1242993311 +219962,33493,robots,1242993320 +219962,33493,sequel,1242993326 +219962,33493,Star Wars,1242993309 +219962,33493,war,1242993318 +219962,33615,animation,1242987024 +219962,33615,anthropomorphic,1242987038 +219962,33615,Dreamworks,1242987041 +219962,33615,funny,1242987049 +219962,33615,Sacha Baron Cohen,1242987045 +219962,33679,Adam Brody,1242995089 +219962,33679,Angelina Jolie,1242995085 +219962,33679,brad and angelina,1242995091 +219962,33679,Brad Pitt,1242995088 +219962,33679,espionage,1242995113 +219962,33679,Kick-Butt Women,1242995106 +219962,33679,spies,1242995102 +219962,33679,Vince Vaughn,1242995097 +219962,33817,Emily Blunt,1242895799 +219962,33817,lesbian,1242895802 +219962,33930,Bruce Campbell,1262467455 +219962,33930,low budget,1262467472 +219962,33930,parody,1262467467 +219962,33930,scifi,1262467462 +219962,34072,antarctica,1290502812 +219962,34072,beautifully filmed,1290502814 +219962,34072,documentary,1290502858 +219962,34072,french,1290502878 +219962,34072,nature,1290502844 +219962,34072,nature wildlife,1290502839 +219962,34072,penguin,1290502830 +219962,34072,penguins,1290502834 +219962,34072,scenic,1290502836 +219962,34072,survival,1290502837 +219962,34072,winter,1290502870 +219962,34319,cloning,1242995807 +219962,34319,Ewan McGregor,1242995809 +219962,34319,future,1242995814 +219962,34319,genetics,1242995817 +219962,34319,sci-fi,1242995830 +219962,34319,scifi,1242995828 +219962,34319,Sean Bean,1242995839 +219962,34405,cult film,1242981606 +219962,34405,ensemble cast,1242981609 +219962,34405,Firefly,1242981599 +219962,34405,Nathan Fillion,1242981620 +219962,34405,sci-fi,1242981613 +219962,34405,space,1242981614 +219962,36517,Africa,1249323526 +219962,36517,based on a book,1249323528 +219962,36517,cerebral,1249323532 +219962,36517,conspiracy,1249323535 +219962,36517,great cinematography,1249323566 +219962,36517,gritty,1249323538 +219962,36517,politics,1249323540 +219962,36517,social commentary,1249323543 +219962,36517,stylized,1249323560 +219962,36517,thriller,1249323553 +219962,36517,too long,1249323547 +219962,36517,world politics,1249323550 +219962,36529,arms dealer,1242995401 +219962,36529,dark comedy,1242995406 +219962,36529,drugs,1242995410 +219962,36529,gun smuggling,1242995419 +219962,36529,Nicolas Cage,1242995403 +219962,36529,war,1242995414 +219962,36529,World Politics,1242995412 +219962,37727,action,1405952301 +219962,37727,airplane hijacking,1405952245 +219962,37727,Jodie Foster,1405952221 +219962,37727,missing child,1405952335 +219962,37727,mystery,1405952308 +219962,37727,paranoia,1405952367 +219962,37727,Peter Sarsgaard,1405952264 +219962,37727,Sean Bean lives,1405952235 +219962,37727,unreliable narrators,1405952230 +219962,37729,animation,1242988461 +219962,37729,claymation,1242988464 +219962,37729,dark,1242988484 +219962,37729,Depp & Burton,1242988466 +219962,37729,gothic,1242988469 +219962,37729,Johnny Depp,1242988471 +219962,37729,stop-motion,1242988476 +219962,37729,Tim Burton,1242988478 +219962,38038,Aardman,1242992458 +219962,38038,animation,1242992462 +219962,38038,claymation,1242992460 +219962,38038,guns,1242992468 +219962,38038,stop-motion,1242992473 +219962,38038,talking animals,1242992475 +219962,38038,Wallace & Gromit,1242992471 +219962,38061,based on a book,1243075212 +219962,38061,black comedy,1243075184 +219962,38061,breaking the fourth wall,1243075477 +219962,38061,crude humor,1243075481 +219962,38061,fast-paced dialogue,1243075187 +219962,38061,Film Noir,1243075239 +219962,38061,funny,1243075236 +219962,38061,murder,1243075195 +219962,38061,mystery,1243075227 +219962,38061,plot twist,1243075220 +219962,38061,private detective,1412515996 +219962,38061,Robert Downey Jr.,1412515975 +219962,38061,satire,1243075200 +219962,38061,smart writing,1243075207 +219962,38061,updated noir,1243075231 +219962,38061,val kilmer,1243075205 +219962,38294,Gerard Butler,1242982148 +219962,38294,Iceland,1242982147 +219962,38798,based on a book,1242995925 +219962,38798,better than expected,1242995932 +219962,38798,chick flick,1242995936 +219962,38798,not as much a chick flick as I expected,1242995940 +219962,38798,romance,1242995945 +219962,38798,sister sister relationship,1242995951 +219962,38798,sisters,1242995955 +219962,39052,campy,1242981136 +219962,39052,Finnish,1242981121 +219962,39052,independent,1242981152 +219962,39052,indie,1242981155 +219962,39052,low budget,1242981129 +219962,39052,parody,1242981115 +219962,39052,sci-fi,1242981142 +219962,39052,Star Trek,1242981118 +219962,39444,dark comedy,1345917413 +219962,39444,depressing,1345917328 +219962,39444,divorce,1345917362 +219962,39444,dysfunctional family,1345917341 +219962,39444,loser,1345917348 +219962,39444,loser comedy,1345917354 +219962,39444,main character is boring,1345917398 +219962,39444,Michael Caine,1345917372 +219962,39444,not funny,1345917418 +219962,39444,unlikeable characters,1345917389 +219962,40732,blood,1294823193 +219962,40732,cave,1294823116 +219962,40732,claustrophobic,1294823114 +219962,40732,easily confused with other movie(s) (title),1294823121 +219962,40732,ending,1294823150 +219962,40732,false ending,1294823147 +219962,40732,goretastic,1294823123 +219962,40732,no name actresses,1294823158 +219962,40732,overrated,1294823125 +219962,40732,stupid monsters,1294823185 +219962,40732,suspense,1294823179 +219962,40732,tense,1294823130 +219962,40732,twist ending,1294823171 +219962,40732,unmemorable actresses,1294823165 +219962,40732,violence,1294823190 +219962,40815,based on a book,1242987736 +219962,40815,dance,1242987760 +219962,40815,dark,1242987739 +219962,40815,dragons,1242987741 +219962,40815,franchise,1242987758 +219962,40815,Good versus evil,1242987754 +219962,40815,harry potter,1242987733 +219962,40815,magic,1242987749 +219962,40815,Wizards,1242987745 +219962,40819,biography,1242992499 +219962,40819,biopic,1242992491 +219962,40819,drug abuse,1242992489 +219962,40819,DRUG ADDICTION,1242992487 +219962,40819,drugs,1242992506 +219962,40819,music business,1242992509 +219962,40819,musical,1242992504 +219962,40819,true story,1242992502 +219962,40959,Billy Bob Thornton,1396432839 +219962,40959,black comedy,1396432804 +219962,40959,Christmas,1396432980 +219962,40959,Connie Nielsen,1396432851 +219962,40959,John Cusack,1396432806 +219962,40959,murder,1396432975 +219962,40959,noir,1396433048 +219962,40959,strip club,1396433010 +219962,40959,weak plot,1396432822 +219962,40959,Wichita,1396432833 +219962,41566,based on book,1242988565 +219962,41566,christianity,1242988546 +219962,41566,fantasy,1242988543 +219962,41566,good versus evil,1242988548 +219962,41566,Liam Neeson,1242988569 +219962,41566,literary adaptation,1242988559 +219962,41566,mythology,1242988561 +219962,41566,Parallel universe,1242988555 +219962,41566,propaganda,1242988549 +219962,41569,dinosaurs,1242995610 +219962,41569,Peter Jackson,1242995605 +219962,41569,remake,1242995608 +219962,41571,based on a book,1242986860 +219962,41571,courtesan,1242986825 +219962,41571,geisha,1242986827 +219962,41571,history,1242986830 +219962,41571,Japan,1242986828 +219962,41571,Oscar (Best Cinematography),1242986868 +219962,41571,romance,1242986849 +219962,41571,ww2,1242986844 +219962,41571,wwii,1242986843 +219962,41716,assassin,1242995335 +219962,41716,assassination,1242995337 +219962,41716,Black Comedy,1242995339 +219962,41716,Greg Kinnear,1242995349 +219962,41716,hitman,1242995351 +219962,41716,Matt Damon,1242995353 +219962,41716,Offbeat,1242995357 +219962,41716,quirky,1242995365 +219962,41716,Some good moments,1242995359 +219962,42004,drugs,1242992646 +219962,42004,dysfunctional family,1242992648 +219962,42004,gender dysphoria,1242992677 +219962,42004,gender identity,1242992650 +219962,42004,glbt,1242992652 +219962,42004,road trip,1242992658 +219962,42004,roadtrip,1242992664 +219962,42004,transgender,1242992654 +219962,42004,transgendered,1242992655 +219962,42734,big bad wolf,1242987471 +219962,42734,computer animation,1242987476 +219962,42734,fairy tale,1242987479 +219962,42734,fun family movie,1242987502 +219962,42734,little red riding hood,1242987482 +219962,42734,very bad,1242987490 +219962,43744,Anthony Head,1243677979 +219962,43744,Lena Headey,1243677961 +219962,43744,lesbian,1243677963 +219962,43744,Romance,1243677966 +219962,43987,death,1405371558 +219962,43987,Demi Moore,1405371522 +219962,43987,ghost story,1405371539 +219962,43987,Hans Matheson,1405371530 +219962,43987,Henry Ian Cusick,1405371535 +219962,43987,Kate Isitt,1405371525 +219962,43987,murder,1405371554 +219962,43987,predictable,1405371562 +219962,43987,psychological thriller,1405371550 +219962,44022,Animation,1242995972 +219962,44022,Comedy,1242995977 +219962,44022,Denis Leary,1242995974 +219962,44022,global warming,1242995981 +219962,44022,sequel,1242995992 +219962,44022,talking animals,1242995994 +219962,44058,Alaska,1260872245 +219962,44058,black comedy,1260872229 +219962,44058,Giovanni Ribisi,1260872208 +219962,44058,insurance scam,1260872238 +219962,44058,kidnapping,1260872261 +219962,44058,murder,1260872233 +219962,44058,Robin Williams,1260872211 +219962,44058,small town,1260872250 +219962,44058,Tourettes,1260872269 +219962,44058,Woody Harrelson,1260872209 +219962,44191,comic book,1242977501 +219962,44191,Hugo Weaving,1242977495 +219962,44191,Natalie Portman,1242977491 +219962,44191,sci-fi,1242977510 +219962,44191,super-hero,1242977505 +219962,44195,based on a book,1242979726 +219962,44195,big tobacco,1242979737 +219962,44195,cigarettes,1242979733 +219962,44195,dark comedy,1242979709 +219962,44195,dark humor,1242979712 +219962,44195,propaganda,1242979718 +219962,44195,social commentary,1242979714 +219962,44665,assassination,1243264364 +219962,44665,Josh Hartnett,1243264370 +219962,44665,Lucy Liu,1243264395 +219962,44665,mistaken identity,1243264372 +219962,44665,Revenge,1243264348 +219962,44665,slow paced,1243264403 +219962,44665,stylized,1243264409 +219962,44665,twist,1243264350 +219962,44665,twist ending,1243264377 +219962,44665,violent,1243264383 +219962,44694,female power,1296201482 +219962,44694,incest,1296201472 +219962,44694,mother-daughter relationship,1296201565 +219962,44694,Oscar Nom 2007,1296201487 +219962,44694,Pedro Almodóvar,1296201557 +219962,44694,Penélope Cruz,1296201560 +219962,44694,sexual abuse,1296201498 +219962,44788,censorship,1242979680 +219962,44788,documentary,1242979678 +219962,44788,Hollywood,1242979687 +219962,44788,MPAA,1242979692 +219962,44788,social commentary,1242979694 +219962,44828,nathan fillion,1242894504 +219962,44828,sci-fi,1242894513 +219962,45186,action,1410087313 +219962,45186,damsel in distress,1410087277 +219962,45186,espionage,1410087312 +219962,45186,Michelle Monaghan,1410087286 +219962,45186,no chemistry,1410087295 +219962,45186,Philip Seymour Hoffman,1410087267 +219962,45186,Simon Pegg,1410087265 +219962,45186,spy,1410087310 +219962,45186,unrealistic,1410087258 +219962,45186,Ving Rhames,1410087263 +219962,45431,cartoon,1242979894 +219962,45431,Dreamworks,1242979896 +219962,45431,dreamworks animation,1242979903 +219962,45431,talking animals,1242979899 +219962,45431,William Shatner,1242979900 +219962,45668,Keanu Reeves,1242995594 +219962,45668,love letters,1242995580 +219962,45668,love story,1242995582 +219962,45668,Mystery,1242995590 +219962,45668,Sandra Bullock,1242995585 +219962,45668,time travel,1242995588 +219962,45722,Johnny Depp,1242994487 +219962,45722,Keira Knightley,1242994489 +219962,45722,Orlando Bloom,1242994491 +219962,45722,pirates,1242994493 +219962,45722,sequel,1242994503 +219962,45722,sequels,1242994501 +219962,45722,swashbuckler,1242994495 +219962,45722,treasure,1242994505 +219962,45730,beautiful,1345132053 +219962,45730,Bryce Dallas Howard,1345132069 +219962,45730,disappointing,1345132055 +219962,45730,fairy tale,1345132058 +219962,45730,fantasy,1345132074 +219962,45730,far fetched,1345132076 +219962,45730,lyrical,1345132091 +219962,45730,M. Night Shyamalan,1345132094 +219962,45730,monster,1345132115 +219962,45730,narf,1345132124 +219962,45730,Paul Giamatti,1345132098 +219962,45730,water,1345132131 +219962,45950,al gore,1242980135 +219962,45950,climate change,1242980115 +219962,45950,earth,1242980137 +219962,45950,environment,1242980117 +219962,45950,global warming,1242980125 +219962,45950,politics,1242980145 +219962,45950,propaganda,1242980142 +219962,46347,Black Metal,1291019393 +219962,46347,Black Sabbath,1291019444 +219962,46347,Bruce Dickinson,1291019395 +219962,46347,documentary,1291019401 +219962,46347,heavy metal,1291019415 +219962,46347,Led Zeppelin,1291019448 +219962,46347,metal,1291019411 +219962,46347,music,1291019408 +219962,46347,music documentary,1291019403 +219962,46347,Ronnie James Dio,1291019428 +219962,46347,Slayer,1291019439 +219962,46948,anthropomorphic,1242986680 +219962,46948,halloween,1242986660 +219962,46948,haunted house,1242986664 +219962,46948,poor dialogue,1242986675 +219962,46948,Stereoscopic 3-D,1242986673 +219962,46976,metafiction,1242993139 +219962,46976,metaphysics,1242993135 +219962,46976,modern fantasy,1242993163 +219962,46976,quirky romantic,1242993150 +219962,46976,surreal,1242993147 +219962,46976,Will Ferrell,1242993141 +219962,47099,based on a true story,1290411496 +219962,47099,capitalism,1290411484 +219962,47099,depressing,1290411480 +219962,47099,father-son relationship,1290411498 +219962,47099,happy ending,1290411488 +219962,47099,San Francisco,1290411506 +219962,47099,single father,1290411501 +219962,47099,understated,1290411503 +219962,47254,action,1405952546 +219962,47254,bank robbery,1405952553 +219962,47254,heist,1405952555 +219962,47254,Jason Statham,1405952539 +219962,47254,predictable ending,1405952630 +219962,47254,rookie cop,1405952595 +219962,47610,19th century,1242980190 +219962,47610,costume drama,1242980188 +219962,47610,Edward Norton,1242980158 +219962,47610,love story,1242980162 +219962,47610,magic,1242980183 +219962,47610,Paul Giamatti,1242980155 +219962,47610,predictable,1242980174 +219962,47610,romance,1242980176 +219962,47610,surprise ending,1242980178 +219962,47610,twist ending,1242980181 +219962,47629,based on a true story,1252427508 +219962,47629,biographical,1252427521 +219962,47629,Helen Mirren,1252427518 +219962,47629,royalty,1252427530 +219962,48061,animated,1242993744 +219962,48061,animation,1242993748 +219962,48061,classic,1242993751 +219962,48061,Peanuts,1242993739 +219962,48061,Snoopy,1242993735 +219962,48304,atmospheric,1311236502 +219962,48304,cinematography,1311236520 +219962,48304,gruesome,1311236505 +219962,48304,Native Americans,1311236514 +219962,48304,Raoul Trujillo,1311236541 +219962,48304,Rudy Youngblood,1311236531 +219962,48304,violence,1311236509 +219962,48304,violent,1311236507 +219962,48394,atmospheric,1242994661 +219962,48394,dark,1242994664 +219962,48394,fairy tale,1242994666 +219962,48394,fantasy,1242994669 +219962,48394,Parallel universe,1242994684 +219962,48394,stylized,1242994681 +219962,48394,surreal,1242994676 +219962,48394,twist ending,1242994686 +219962,48394,visually appealing,1242994674 +219962,48394,world war II,1242994672 +219962,48516,Crime,1315388322 +219962,48516,ensemble cast,1315388319 +219962,48516,gangsters,1315388315 +219962,48516,gritty,1315388316 +219962,48516,Jack Nicholson,1315388311 +219962,48516,Leonardo DiCaprio,1315388310 +219962,48516,murder,1315388307 +219962,48516,organized crime,1315388331 +219962,48516,police corruption,1315388324 +219962,48516,twist ending,1315388342 +219962,48516,undercover cop,1315388330 +219962,48516,violence,1315388305 +219962,48738,Africa,1310589124 +219962,48738,based on a book,1310589152 +219962,48738,based on a true story,1310589154 +219962,48738,colonialism,1310589179 +219962,48738,dictatorship,1310589160 +219962,48738,Forest Whitaker,1310589133 +219962,48738,genocide,1310589177 +219962,48738,Idi Amin,1310589189 +219962,48738,James McAvoy,1310589136 +219962,48738,violent,1310589171 +219962,48780,based on a book,1242986048 +219962,48780,Christian Bale,1242986037 +219962,48780,enigmatic,1242986053 +219962,48780,Hugh Jackman,1242986035 +219962,48780,Michael Caine,1242986040 +219962,48780,steampunk,1242986057 +219962,48780,teleportation,1242986060 +219962,48780,twist ending,1242986043 +219962,48997,alan rickman,1311012393 +219962,48997,artistic,1311012395 +219962,48997,based on a book,1311012397 +219962,48997,dustin hoffman,1311012406 +219962,48997,murder,1311012408 +219962,48997,ridiculous ending,1311012403 +219962,48997,serial killer,1311012411 +219962,49278,can you change the past?,1368204454 +219962,49278,Denzel Washington,1368204385 +219962,49278,investigation,1368204465 +219962,49278,paradox,1368204406 +219962,49278,romance,1368204417 +219962,49278,sci-fi,1368204410 +219962,49278,terrorism,1368204424 +219962,49278,time travel,1368204395 +219962,49278,val kilmer,1368204437 +219962,49530,corruption,1319975824 +219962,49530,diamonds,1319975815 +219962,49530,Leonardo DiCaprio,1319975796 +219962,49530,smuggling,1319975811 +219962,49530,violent,1319975799 +219962,49856,Deborah Francois,1329997967 +219962,49856,elegant,1329997906 +219962,49856,french,1329997939 +219962,49856,Intriguing,1329997918 +219962,49856,lesbian subtext,1329997909 +219962,49856,revenge,1329997913 +219962,49856,understated,1329997927 +219962,50162,animated,1242982137 +219962,50162,fantasy,1242982140 +219962,50162,Luc Besson,1242982134 +219962,50271,adapted from:play,1345913721 +219962,50271,ambiguous ending,1345978156 +219962,50271,beautiful,1345913676 +219962,50271,china,1345913624 +219962,50271,choreographic violence,1345913654 +219962,50271,historical china,1345913638 +219962,50271,history,1345913633 +219962,50271,kung fu,1345913669 +219962,50271,martial arts,1345913689 +219962,50271,Shakespeare adaptation,1345913733 +219962,50271,who threw the last knife?,1345978168 +219962,50440,Africa,1397466376 +219962,50440,atmospheric,1397466314 +219962,50440,civil war,1397466316 +219962,50440,crocodile,1397466406 +219962,50440,gore,1397466332 +219962,50440,goretastic,1397466344 +219962,50440,journalists,1397466318 +219962,50440,Jurgen Prochnow,1397466367 +219962,50440,Killer Creature,1397466324 +219962,50440,killer crocodile,1397466411 +219962,50440,violent,1397466336 +219962,50447,atmospheric,1398694766 +219962,50447,disappointing,1398694846 +219962,50447,ending,1398694843 +219962,50447,multiple POVs,1398694836 +219962,50447,multiple storylines,1398694830 +219962,50447,murder,1398694745 +219962,50447,Rose Byrne,1398694882 +219962,50447,segments,1398694817 +219962,50447,serial killer,1398694752 +219962,50794,assassin,1396432344 +219962,50794,Ben Affleck,1396432779 +219962,50794,Chris Pine,1396432773 +219962,50794,drug use,1396432534 +219962,50794,drugs,1396432530 +219962,50794,ensemble cast,1396432368 +219962,50794,gruesome,1396432349 +219962,50794,hitman,1396432560 +219962,50794,Jeremy Piven,1396432750 +219962,50794,mafia,1396432568 +219962,50794,organized crime,1396432570 +219962,50794,Ryan Reynolds,1396432523 +219962,50794,surprisingly good,1396432356 +219962,50794,twist ending,1396432361 +219962,50794,twist ending but not really,1396432605 +219962,50794,Violently silly,1396432353 +219962,50794,whores,1396432543 +219962,50872,animation,1242994298 +219962,50872,cooking,1242994300 +219962,50872,Disney,1242994302 +219962,50872,imaginary friend,1242994308 +219962,50872,paris,1242994313 +219962,50872,pixar,1242994311 +219962,50872,Pixar animation,1242994314 +219962,50872,talking animals,1242994316 +219962,51255,action spoof,1262467128 +219962,51255,black comedy,1262467130 +219962,51255,ending,1262467154 +219962,51255,Funny as hell,1262467134 +219962,51255,murder,1262467158 +219962,51255,parody,1262467137 +219962,51255,Simon Pegg,1262467123 +219962,51255,slow start,1262467143 +219962,51255,surreal,1262467150 +219962,51412,bad ending,1396978402 +219962,51412,based on a book,1396978407 +219962,51412,Ending,1396978433 +219962,51412,Incomplete story,1396978468 +219962,51412,jessica biel,1396978467 +219962,51412,Julianne Moore,1396978471 +219962,51412,Nicholas Cage,1396978418 +219962,51412,open ending,1396978436 +219962,51412,Philip K. Dick,1396978465 +219962,51412,plot twist,1396978441 +219962,51412,psychic powers,1396978445 +219962,51412,supernatural powers,1396978443 +219962,51412,time,1396978463 +219962,51412,time travel,1396978420 +219962,51412,What's Up With The Da Vinci Hair Do,1396978459 +219962,51540,bad ending,1453401117 +219962,51540,based on a true story,1453401098 +219962,51540,investigative journalism,1453401114 +219962,51540,Jake Gyllenhaal,1453401101 +219962,51540,Mark Ruffalo,1453401104 +219962,51540,Robert Downey Jr.,1453401102 +219962,51540,serial killer,1453401106 +219962,51540,true story,1453401109 +219962,51662,atmospheric,1242980628 +219962,51662,comic book,1242980634 +219962,51662,Frank Miller,1242980636 +219962,51662,Gerard Butler,1242980621 +219962,51662,quotable,1242980640 +219962,51662,sexualized violence,1242980629 +219962,51662,stylized,1242980626 +219962,51662,sword fight,1242980648 +219962,52287,cgi,1242986933 +219962,52287,kids and family,1242986952 +219962,52287,Stereoscopic 3-D,1242986948 +219962,52287,time travel,1242986951 +219962,52885,anime,1315387807 +219962,52885,bad science,1315387809 +219962,52885,boring,1315387811 +219962,52885,confusing,1315387813 +219962,52885,dreams,1315387830 +219962,52885,surreal,1315387824 +219962,53121,franchise,1368274074 +219962,53125,adventure,1242994513 +219962,53125,Johnny Depp,1242994525 +219962,53125,Keira Knightley,1242994527 +219962,53125,Orlando Bloom,1242994531 +219962,53125,pirates,1242994533 +219962,53125,sequel,1242994535 +219962,53125,stupid ending,1242994552 +219962,53125,swashbuckler,1242994540 +219962,53972,action,1399058133 +219962,53972,action packed,1399058099 +219962,53972,bruce willis,1399058097 +219962,53972,computers,1399058101 +219962,53972,damn hamster,1399058122 +219962,53972,hackers,1399058083 +219962,53972,Justin Long,1399058095 +219962,53972,kungfu hackers,1399058152 +219962,53972,not as good as the first,1399058090 +219962,53972,stunts,1399058135 +219962,53972,Timothy Olyphant,1399058080 +219962,53972,United States,1399058129 +219962,53972,unrealistic,1399058146 +219962,53972,unrealistic action,1399058085 +219962,53972,unrealistic but well done,1399058148 +219962,53972,weak plot,1399058088 +219962,53996,action,1367176242 +219962,53996,based on a comic,1367176294 +219962,53996,crude humor,1367176315 +219962,53996,defies logic,1367176345 +219962,53996,disjointed,1367176267 +219962,53996,franchise,1367176329 +219962,53996,incoherent,1367176331 +219962,53996,lowest common denominator,1367176354 +219962,53996,Megan Fox,1367176276 +219962,53996,military,1367176370 +219962,53996,robots,1367176253 +219962,53996,sci-fi,1367176257 +219962,53996,Shia LaBeouf,1367176287 +219962,53996,Special Effects,1367176306 +219962,53996,teen,1367176255 +219962,53996,weak plot,1367176271 +219962,54001,based on a book,1242987700 +219962,54001,franchise,1242987704 +219962,54001,harry potter,1242987717 +219962,54001,magic,1242987707 +219962,54001,wizards,1242987727 +219962,54248,cameo,1242897181 +219962,54248,cameos,1242897185 +219962,54248,dark comedy,1242897168 +219962,54248,David Hewlett,1242897153 +219962,54248,indie,1242897162 +219962,54248,Paul McGillion,1242897159 +219962,54248,Stargate connection,1242897190 +219962,54259,based on a book,1242981048 +219962,54259,fairy tale,1242981050 +219962,54259,fantasy,1242981067 +219962,54259,Gay stereotypes,1242981044 +219962,54259,good vs evil,1242981080 +219962,54259,Ian McKellen,1242981055 +219962,54259,magic realism,1242981058 +219962,54259,Neil Gaiman,1242981039 +219962,54259,witches,1242981072 +219962,54503,Apatow,1262099407 +219962,54503,Clark Duke,1261913215 +219962,54503,comedy,1261913121 +219962,54503,crude humor,1261913222 +219962,54503,friendship,1261913115 +219962,54503,HIGH SCHOOL LIFE,1261913106 +219962,54503,Michael Cera,1261913103 +219962,54503,Michael Cera is hot,1261913130 +219962,54503,nerds,1261913113 +219962,54503,pornography,1261913227 +219962,54503,Seth Rogen,1262099411 +219962,54503,Teen movie,1261913109 +219962,54962,alternate reality,1345118805 +219962,54962,bad ending,1345118929 +219962,54962,cast,1345119024 +219962,54962,casting,1345119027 +219962,54962,contrived,1345118897 +219962,54962,Melissa McCarthy,1345118820 +219962,54962,mindfuck,1345118932 +219962,54962,multiple storylines,1345118900 +219962,54962,Ryan Reynolds,1345118827 +219962,54962,soundtrack,1345118885 +219962,54962,twist ending,1345118963 +219962,55052,based on a book,1414955921 +219962,55052,bleak,1414955935 +219962,55052,great cinematography,1414955902 +219962,55052,heartbreaking,1414955907 +219962,55052,James McAvoy,1414955914 +219962,55052,pedophilia,1414955945 +219962,55052,Period piece,1414955913 +219962,55052,sad,1414955933 +219962,55052,war,1414955909 +219962,55190,Brittany Murphy,1242897131 +219962,55190,comedy,1242897129 +219962,55190,gay,1242897112 +219962,55190,matthew rhys,1242897108 +219962,55190,meta,1242897114 +219962,55190,quirky,1242897125 +219962,55190,santiago cabrera,1242897099 +219962,55276,corporate espionage,1274517122 +219962,55276,George Clooney,1274517119 +219962,55276,Slow pacing,1274517123 +219962,55276,Tilda Swinton,1274517163 +219962,55290,abduction,1368393472 +219962,55290,addiction,1368393482 +219962,55290,Ben Affleck,1368393465 +219962,55290,Casey Affleck,1368393466 +219962,55290,Catholicism,1368393525 +219962,55290,child abuse,1368393468 +219962,55290,conspiracy,1368393470 +219962,55290,convoluted,1368393574 +219962,55290,detective,1368393486 +219962,55290,disgusting,1368393618 +219962,55290,drug abuse,1368393608 +219962,55290,drugs,1368393474 +219962,55290,Ed Harris,1368393506 +219962,55290,ending,1368393520 +219962,55290,foul language,1368393515 +219962,55290,kidnapping,1368393493 +219962,55290,morality,1368393497 +219962,55290,Morgan Freeman,1368393502 +219962,55290,mystery,1368393571 +219962,55290,pedophile,1368393512 +219962,55290,police investigation,1368393543 +219962,55290,tragic,1368393538 +219962,55290,violent,1368393517 +219962,55290,voiceover,1368394125 +219962,55442,animation,1288943311 +219962,55442,biography,1288943313 +219962,55442,coming of age,1288943317 +219962,55442,French,1288943344 +219962,55442,History,1288943325 +219962,55442,politics,1288943328 +219962,55442,revolution,1288943332 +219962,55442,social commentary,1288943320 +219962,55999,children,1242995076 +219962,55999,Dustin Hoffman,1242995062 +219962,55999,fantasy,1242995055 +219962,55999,Jason Bateman,1242995048 +219962,55999,magic,1242995068 +219962,55999,Natalie Portman,1242995045 +219962,55999,toys,1242995050 +219962,56174,apocalypse,1242987408 +219962,56174,author:Richard Matheson,1242987411 +219962,56174,Post apocalyptic,1242987416 +219962,56174,post-apocalyptic,1242987414 +219962,56174,virus,1242987429 +219962,56174,Will Smith,1242987399 +219962,56174,Zombie dogs,1242987432 +219962,56174,zombies,1242987402 +219962,56367,comedy,1261736537 +219962,56367,Ellen Page,1261736475 +219962,56367,Ellen Page is so gay,1261736486 +219962,56367,excellent script,1261736535 +219962,56367,feel good movie,1261736492 +219962,56367,humor,1261736525 +219962,56367,Jason Bateman,1261736515 +219962,56367,Jennifer Garner,1261736540 +219962,56367,Michael Cera,1261736478 +219962,56367,pregnancy,1261736500 +219962,56367,teen pregnancy,1261736496 +219962,56367,witty,1261736530 +219962,56757,based on a musical,1261913536 +219962,56757,cannibalism,1261913496 +219962,56757,dark,1261913515 +219962,56757,Depp & Burton,1261913499 +219962,56757,gothic,1261913506 +219962,56757,great cinematography,1261913510 +219962,56757,Johnny Depp,1261913490 +219962,56757,murder,1261913529 +219962,56757,Musical,1261913539 +219962,56757,Sacha Baron Cohen,1261913521 +219962,56757,serial killer,1261913525 +219962,56757,Tim Burton,1261913502 +219962,56775,history,1242986526 +219962,56775,Nicolas Cage,1242986491 +219962,56775,puzzle,1242986586 +219962,56775,puzzle solving,1242986592 +219962,56775,treasure hunt,1242986505 +219962,56801,'AKA: I Will Never Get Those 2 Hours Back...Ever',1343846421 +219962,56801,acting,1343846469 +219962,56801,aliens,1343846424 +219962,56801,casting,1343846472 +219962,56801,family drama,1343846458 +219962,56801,franchise,1343846431 +219962,56801,Reiko Aylesworth,1343846481 +219962,56801,stupid plot,1343846448 +219962,56801,teenage drama,1343846453 +219962,56801,teens,1343846441 +219962,56921,based on a tv show,1242989087 +219962,56921,battlestar galactica,1242989078 +219962,56921,bsg,1242989068 +219962,56921,Edward James Olmos,1242989048 +219962,56921,lesbian,1242989046 +219962,56921,Mary McDonnell,1242989055 +219962,56921,sci-fi,1242989062 +219962,56921,space,1242989060 +219962,56921,war,1242989064 +219962,57326,Jason Statham,1242895615 +219962,57326,John Rhys-Davies,1242895619 +219962,57326,Kristanna Loken,1242895617 +219962,57326,Ray Liotta,1242895638 +219962,57326,Ron Perlman,1242895652 +219962,57326,Uwe Boll,1242895641 +219962,57326,video game adaptation,1242895649 +219962,57368,city under attack,1367922957 +219962,57368,E.T.,1367922960 +219962,57368,found footage,1367923014 +219962,57368,giant monster,1367922965 +219962,57368,mass death,1367923019 +219962,57368,military,1367922982 +219962,57368,mockumentary,1367922950 +219962,57368,new york,1367922991 +219962,57368,New York City,1367922993 +219962,57368,sci-fi,1367922997 +219962,57368,shallow,1367923021 +219962,57640,based on a comic,1242987533 +219962,57640,comic book,1242987534 +219962,57640,elves,1242987561 +219962,57640,good sequel,1242987537 +219962,57640,Guillermo del Toro,1242987529 +219962,57640,not as good as the first,1242987541 +219962,57640,Ron Perlman,1242987556 +219962,57640,superhero,1242987552 +219962,57669,ambiguous ending,1345466193 +219962,57669,assassin,1345466195 +219962,57669,black comedy,1345466196 +219962,57669,Brendan Gleeson,1345466210 +219962,57669,Colin Farrell,1345466201 +219962,57669,dark comedy,1345466204 +219962,57669,dialogue,1345466240 +219962,57669,drugs,1345466217 +219962,57669,friendship,1345466267 +219962,57669,stylized,1345466252 +219962,57669,twist ending,1345466235 +219962,57669,violence,1345466229 +219962,57669,violent,1345466227 +219962,58105,based on a book,1242993435 +219962,58105,children,1242993446 +219962,58105,fantasy,1242993442 +219962,58998,Apatow,1262099337 +219962,58998,break-up,1262099279 +219962,58998,comedy,1262099298 +219962,58998,good dialogue,1262099313 +219962,58998,Jason Segel,1262099308 +219962,58998,Jonah Hill,1262099375 +219962,58998,Kristen Bell,1262099305 +219962,58998,romance,1262099302 +219962,58998,Russell Brand,1262099328 +219962,59220,call center,1332065227 +219962,59220,comedy,1332065187 +219962,59220,culture clash,1332065306 +219962,59220,culture shock,1332065306 +219962,59220,india,1332065229 +219962,59220,Kama Sutra,1332065286 +219962,59220,limited perspective,1332065232 +219962,59220,not as good as I expected,1332065256 +219962,59220,outsourcing,1332065197 +219962,59220,overrated,1332065237 +219962,59220,racial stereotype,1332065214 +219962,59220,racial stereotypes,1332065214 +219962,59220,romance,1332065230 +219962,59220,stereotypes,1332065282 +219962,59220,stupid americans,1332065223 +219962,59256,assumed identities,1408294264 +219962,59256,atmospheric,1408294229 +219962,59256,blackmail,1408294194 +219962,59256,Ewan McGregor,1408294159 +219962,59256,Hugh Jackman,1408294162 +219962,59256,revenge,1408294185 +219962,59256,twist,1408294171 +219962,59315,comic book,1243767034 +219962,59315,gadgets,1243767056 +219962,59315,Robert Downey Jr,1243767038 +219962,59315,superhero,1243767041 +219962,59315,torture,1243767060 +219962,59315,watch the credits,1243767052 +219962,59333,Kevin McKidd,1319975238 +219962,59333,Michelle Monaghan,1319975232 +219962,59333,Patrick Dempsey,1319975209 +219962,59333,wedding theme,1319975219 +219962,59392,Amanda Tapping,1242993209 +219962,59392,Beau Bridges,1242993204 +219962,59392,sci-fi,1242993215 +219962,59392,Stargate,1242993201 +219962,59392,tv series,1242993230 +219962,59615,aliens,1242995899 +219962,59615,archaeology,1242995900 +219962,59615,father-son relationship,1242995917 +219962,59615,Harrison Ford,1242995903 +219962,59615,indiana jones,1242995894 +219962,59615,ridiculous end,1242995896 +219962,59615,silly,1242995914 +219962,59784,Angelina Jolie,1242987233 +219962,59784,animation,1242987243 +219962,59784,anti-hero,1242987245 +219962,59784,good versus evil,1242987251 +219962,59784,Jack Black,1242987237 +219962,59784,Kung Fu,1242987240 +219962,59784,martial arts,1242987241 +219962,59784,underdog,1242987253 +219962,60069,Animation,1242977467 +219962,60069,pixar,1242977455 +219962,60069,robots,1242977462 +219962,60069,Sci-Fi,1242977465 +219962,60069,space,1242977464 +219962,60072,action,1258886273 +219962,60072,adapted from:comic,1258886208 +219962,60072,Angelina Jolie,1258886211 +219962,60072,assassin,1258886217 +219962,60072,brutal violence,1258886266 +219962,60072,graphic novel,1258886224 +219962,60072,gun fu,1258886227 +219962,60072,James McAvoy,1258886219 +219962,60072,plot twist,1258886268 +219962,60072,stylish,1258886231 +219962,60072,stylized violence,1258886243 +219962,60291,biography,1315387952 +219962,60291,Gonzo journalism,1315387950 +219962,60291,Hunter S. Thompson,1315387935 +219962,60514,adventure,1330425037 +219962,60514,based on a book,1330425017 +219962,60514,campy,1330425043 +219962,60514,Jules Verne,1330425020 +219962,60674,Amanda Tapping,1242993249 +219962,60674,Beau Bridges,1242993237 +219962,60674,sci-fi,1242993255 +219962,60674,Stargate,1242993242 +219962,60674,time travel,1242993236 +219962,60684,alternate history,1248091657 +219962,60684,bad plot,1248091678 +219962,60684,based on a comic,1248091653 +219962,60684,bullet time overuse,1248091702 +219962,60684,comic book,1248091660 +219962,60684,dystopia,1248091668 +219962,60684,plot,1248091648 +219962,60684,plot sucks,1248091682 +219962,60684,sci-fi,1248091665 +219962,60684,stylized violence,1248091689 +219962,60684,too long,1248099989 +219962,60684,When bad movies happen to good comics,1248091642 +219962,61132,Ben Stiller,1274086029 +219962,61132,funny,1274086059 +219962,61132,Jack Black,1274086032 +219962,61132,movie business,1274086037 +219962,61132,movie within a movie,1274086045 +219962,61132,parody,1274086046 +219962,61132,Robert Downey Jr.,1274086034 +219962,61132,Tom Cruise,1274086061 +219962,61132,Tom Cruise cameo,1274086069 +219962,61132,Vietnam War,1274086053 +219962,61729,ghosts,1302433205 +219962,61729,Greg Kinnear,1302433279 +219962,61729,Ricky Gervais,1302433207 +219962,61729,sees ghosts,1302433217 +219962,61729,Téa Leoni,1302433194 +219962,62956,animation,1242987892 +219962,62956,d&d,1242987937 +219962,62956,fantasy spoof,1242987899 +219962,62956,futurama,1242987911 +219962,62956,nerd humor,1242987922 +219962,63082,based on a book,1317985578 +219962,63082,cinematography,1317985529 +219962,63082,Dev Patel,1317985559 +219962,63082,dreamlike,1317985573 +219962,63082,fate,1317985576 +219962,63082,love story,1317985564 +219962,63082,nonlinear,1317985540 +219962,63082,romance,1317985537 +219962,63113,007 (series),1350391955 +219962,63113,action,1350391974 +219962,63113,all action,1350392053 +219962,63113,assassin,1350391976 +219962,63113,bond,1350392000 +219962,63113,confusing,1350391961 +219962,63113,convoluted plot,1350392046 +219962,63113,Daniel Craig,1350392002 +219962,63113,espionage,1350392004 +219962,63113,James Bond,1350392006 +219962,63113,Judi Dench,1350392007 +219962,63113,plot,1350392017 +219962,63113,secret service,1350392024 +219962,63113,spy,1350392040 +219962,63113,un-Bond-like,1350391984 +219962,63113,uncharacteristic,1350391997 +219962,63479,Amish,1262198819 +219962,63479,Clark Duke,1262198767 +219962,63479,comedy,1262198809 +219962,63479,Josh Zuckerman,1262198770 +219962,63479,losing virginity,1262198797 +219962,63479,rednecks,1262198824 +219962,63479,road trip,1262198760 +219962,63479,romance,1262198805 +219962,63479,Seth Green,1262198763 +219962,63479,teen movie,1262198775 +219962,63479,virginity,1262198790 +219962,63992,fantasy,1242894904 +219962,63992,Kristen Stewart,1242894865 +219962,63992,vampires,1242894880 +219962,64116,dark,1242982121 +219962,64116,fantasy,1242982117 +219962,64116,John Cusack,1242982096 +219962,64116,underrated,1242982104 +219962,64424,based on tv series,1242981885 +219962,64424,Dallas,1242981870 +219962,64424,JR,1242981873 +219962,64620,based on a true story,1242988080 +219962,64620,boring beginning,1242988060 +219962,64620,history,1242988072 +219962,64620,journalism,1242988075 +219962,64620,Nixon,1242988092 +219962,64620,politics,1242988071 +219962,64620,Sam Rockwell,1242988065 +219962,64622,nazis,1368274190 +219962,64957,Aging,1242988383 +219962,64957,Brad Pitt,1242988380 +219962,64957,child abandonment,1242988398 +219962,64957,cinematography,1242988394 +219962,64957,Hospital,1242988400 +219962,64957,Tilda Swinton,1242988390 +219962,65045,aliens,1345978036 +219962,65045,ambiguous ending,1345978097 +219962,65045,christmas,1345978065 +219962,65045,horrible,1345978083 +219962,65045,low budget,1345978039 +219962,65045,scifi,1345978051 +219962,65045,supermarket,1345978041 +219962,65045,twist ending,1345978088 +219962,65261,Animation,1257148322 +219962,65261,anime,1257148325 +219962,65261,friendship,1257148367 +219962,65261,Hayao Miyazaki,1257148328 +219962,65261,lacks tension,1257148357 +219962,65261,Long wait for release,1257148331 +219962,65261,ocean,1257148354 +219962,65261,strange story,1257148361 +219962,65261,Studio Ghibli,1257148333 +219962,65359,bad adaptation,1242981843 +219962,65359,based on a book,1242981839 +219962,65359,sci-fi channel,1242981860 +219962,65588,fantasy,1262527129 +219962,65588,gaming,1262527147 +219962,65588,nerds,1262527141 +219962,65588,parody,1262527155 +219962,65588,sequel,1262527161 +219962,66097,alternate universe,1260640898 +219962,66097,author:Neil Gaiman,1260640900 +219962,66097,based on a book,1260640904 +219962,66097,dark,1260640936 +219962,66097,fairy tale,1260640932 +219962,66097,gothic,1260640914 +219962,66097,Ian McShane,1260640950 +219962,66097,Neil Gaiman,1260640908 +219962,66097,Surreal,1260640916 +219962,66198,action,1340971890 +219962,66198,Armin Mueller-Stahl,1340971895 +219962,66198,arms dealer,1340971909 +219962,66198,banking,1340971911 +219962,66198,Clive Owen,1340971897 +219962,66198,corruption,1340971917 +219962,66198,justice,1340971922 +219962,66198,realistic,1340971925 +219962,66198,vigilante,1340971901 +219962,66240,afterlife,1242982068 +219962,66240,based on tv series,1242982074 +219962,66240,Ellen Muth,1242982065 +219962,66240,sequel,1242982081 +219962,66934,anti-hero,1242980318 +219962,66934,Felicia Day,1242980351 +219962,66934,joss whedon,1242980300 +219962,66934,musical,1242980309 +219962,66934,Nathan Fillion,1242980347 +219962,66934,Neil Patrick Harris,1242980299 +219962,66934,parody,1242980321 +219962,66934,too short,1242980305 +219962,67197,aliens,1366641616 +219962,67197,apocalypse,1366641618 +219962,67197,apocalyptic,1366641690 +219962,67197,bad science,1366641689 +219962,67197,catastrophe,1366641620 +219962,67197,children,1366641699 +219962,67197,creepy,1366641751 +219962,67197,eerie,1366641622 +219962,67197,end of the world,1366641624 +219962,67197,father-son relationship,1366641675 +219962,67197,mystery,1366641629 +219962,67197,Nicolas Cage,1366641626 +219962,67197,paranormal,1366641632 +219962,67197,prediction,1366641719 +219962,67197,pseudoscience,1366641665 +219962,67197,sci-fi,1366641631 +219962,67197,terrible ending,1366641649 +219962,67267,Emily Blunt,1242814905 +219962,67295,animation,1242987215 +219962,67295,humorous,1242987211 +219962,67295,Jack Black,1242987210 +219962,67295,too short,1242987227 +219962,67408,aliens,1252170616 +219962,67408,all the best parts are in the trailer,1252170590 +219962,67408,animation,1252170619 +219962,67408,Cartoon,1252170636 +219962,67408,computer animation,1252170645 +219962,67408,Dreamworks,1252170654 +219962,67408,Hugh Laurie,1252170605 +219962,67408,Kiefer Sutherland,1252170602 +219962,67408,monsters,1252170622 +219962,67408,Seth Rogen,1252170631 +219962,67408,Will Arnett,1252170626 +219962,68157,Adolf Hitler,1261924391 +219962,68157,alternate history,1261924397 +219962,68157,Brad Pitt,1261924402 +219962,68157,Christoph Waltz,1261924432 +219962,68157,IMDB Top 250,1261924411 +219962,68157,Melanie Laurent,1261924418 +219962,68157,Nazis,1261924477 +219962,68157,revenge,1261924461 +219962,68157,satire,1261924480 +219962,68157,slow paced,1261924438 +219962,68157,tarantino,1261924485 +219962,68157,vengeance,1261924458 +219962,68157,violence,1261924445 +219962,68157,war,1261924454 +219962,68157,World War II,1261924452 +219962,68319,action,1249323428 +219962,68319,bad plot,1249323448 +219962,68319,cheesy,1249323433 +219962,68319,comic book,1249323430 +219962,68319,Comic Book adaption,1249323464 +219962,68319,franchise,1249323456 +219962,68319,hugh jackman,1249323441 +219962,68319,Patrick Stewart,1249323472 +219962,68319,prequel,1249323452 +219962,68319,sci-fi,1249323462 +219962,68319,superhero,1249323439 +219962,68319,too long,1249323504 +219962,68319,Wolverine,1249323445 +219962,68358,alternate reality,1254725648 +219962,68358,big budget,1254725639 +219962,68358,franchise,1254725628 +219962,68358,future,1254725643 +219962,68358,reboot,1242814619 +219962,68358,sci fi,1242814600 +219962,68358,series reset,1254725637 +219962,68358,Star Trek,1242814595 +219962,68358,teleportation,1254725633 +219962,68358,time travel,1242814598 +219962,68358,Zachary Quinto,1242814606 +219962,68513,Cheap copy of original,1243678014 +219962,68513,crappy sequel,1243678027 +219962,68513,Gratuitous sex,1243678009 +219962,68513,lesbian,1243678017 +219962,68513,predictable,1243678022 +219962,68791,action,1247949083 +219962,68791,arnold cgi,1247949108 +219962,68791,artificial intelligence,1247949081 +219962,68791,Christian Bale,1247949088 +219962,68791,franchise,1247949105 +219962,68791,futuristic,1247949102 +219962,68791,post-apocalyptic,1247949092 +219962,68791,robots,1247949094 +219962,68791,sci-fi,1247949096 +219962,68954,computer animation,1256475677 +219962,68954,feel good movie,1256475680 +219962,68954,happy ending,1256475689 +219962,68954,heartbreaking,1256475682 +219962,68954,Pixar,1256475673 +219962,68954,sweet,1256475692 +219962,68954,talking animals,1256475689 +219962,69122,Bradley Cooper,1261994584 +219962,69122,casino,1261994587 +219962,69122,comedy,1261994590 +219962,69122,Drinking,1261994591 +219962,69122,drugs,1261994593 +219962,69122,Heather Graham,1261994615 +219962,69122,Las Vegas,1261994597 +219962,69122,script,1261994603 +219962,69122,story,1261994606 +219962,69122,Zach Galifinakis,1261994581 +219962,69275,gore,1415472810 +219962,69275,horror comedy,1415472797 +219962,69275,Nazi zombies,1415472803 +219962,69275,Nazis,1415472804 +219962,69275,Norwegian,1415472814 +219962,69275,ridiculous,1415472802 +219962,69275,Zombies,1415472799 +219962,69640,1930s,1261682687 +219962,69640,bank robbery,1261682683 +219962,69640,based on a book,1261682689 +219962,69640,gangsters,1261682678 +219962,69640,Johnny Depp,1261682665 +219962,69640,monotonous,1261682656 +219962,69640,true story,1261682675 +219962,69644,3D,1260713527 +219962,69644,Animation,1260713529 +219962,69644,dinosaurs,1260713531 +219962,69644,franchise,1260713551 +219962,69644,sequel,1260713555 +219962,69644,Simon Pegg,1260713537 +219962,69644,talking animals,1260713540 +219962,69757,cut scenes,1259398062 +219962,69757,humor,1259398057 +219962,69757,IMDB Top 250,1259398047 +219962,69757,Joseph Gordon-Levitt,1259398037 +219962,69757,romance,1259398059 +219962,69844,Alan Rickman,1247772708 +219962,69844,based on a book,1247772617 +219962,69844,better than the book,1247772604 +219962,69844,boarding school,1248166407 +219962,69844,Daniel Radcliffe,1247772687 +219962,69844,Emma Watson,1247772691 +219962,69844,franchise,1248166410 +219962,69844,funny,1247772630 +219962,69844,harry potter,1247772592 +219962,69844,sequel,1247772609 +219962,69844,series,1247772612 +219962,69844,shorter than the book,1247772647 +219962,69844,when did Rupert Grint become a man,1247772700 +219962,69951,Andrew Garfield,1391969533 +219962,69951,deal with the devil,1391969535 +219962,69951,disappointing,1391969524 +219962,69951,Heath Ledger,1391969527 +219962,69951,Johnny Depp,1391969526 +219962,69951,overrated,1391969542 +219962,69951,surreal,1391969520 +219962,69951,terry gilliam,1391969521 +219962,70286,aliens,1252264780 +219962,70286,cgi,1252264818 +219962,70286,ending,1252264807 +219962,70286,fake documentary,1252264785 +219962,70286,genetics,1252264802 +219962,70286,intelligent sci-fi,1252264799 +219962,70286,peter jackson,1252264791 +219962,70286,segregation,1252264811 +219962,70286,Sharlto Copley,1252264902 +219962,70293,Amy Adams,1259398130 +219962,70293,based on a book,1259398153 +219962,70293,blog,1259398157 +219962,70293,food,1259398131 +219962,70293,Julia Child,1259398137 +219962,70293,Meryl Streep,1259398143 +219962,70599,adapted from:book,1260117100 +219962,70599,Hailey McCann,1260117103 +219962,70599,heartbreaking,1260117116 +219962,70599,romance,1260117112 +219962,70599,Tatum McCann,1260117105 +219962,70599,time travel,1260117106 +219962,70946,anti-vegetarian propaganda,1274085793 +219962,70946,campy,1274085775 +219962,70946,goblins,1274085764 +219962,70946,IMDB bottom 100,1274085766 +219962,71057,animation style,1258276499 +219962,71057,dolls,1258276640 +219962,71057,Elijah Wood,1258276502 +219962,71057,interesting animation style,1258276512 +219962,71057,man versus machine,1258276624 +219962,71057,post-apocalyptic,1258276596 +219962,71057,sci-fi,1258276617 +219962,71057,survival,1258276512 +219962,71057,visually appealing,1258276512 +219962,71106,Anna Faris,1400236833 +219962,71106,bad ending,1400236806 +219962,71106,british comedy,1400236845 +219962,71106,Chris O'Dowd,1400236820 +219962,71106,fizzles out,1400236822 +219962,71106,funny,1400236811 +219962,71106,great premise,1400236826 +219962,71106,nerds,1400236810 +219962,71106,off-beat,1400236818 +219962,71106,sci-fi,1400236816 +219962,71106,watch the credits,1400236828 +219962,71135,aliens ripoff,1262804851 +219962,71135,amnesia,1262804818 +219962,71135,Antje Traue,1262804802 +219962,71135,blood,1262804882 +219962,71135,horror,1262804811 +219962,71135,post-apocalyptic,1262804828 +219962,71135,space,1262804806 +219962,71135,unlikeable characters,1262804868 +219962,71135,we've seen this before,1262804863 +219962,71254,action,1369134987 +219962,71254,alternate reality,1369134989 +219962,71254,dark,1369134999 +219962,71254,dystopia,1369134994 +219962,71254,dystopian,1369135001 +219962,71254,Gerard Butler,1369135003 +219962,71254,gratuitous violence,1369134985 +219962,71254,hackers,1369135006 +219962,71254,killing,1369135026 +219962,71254,Michael C. Hall,1369135064 +219962,71254,mindcontrol,1369135068 +219962,71254,poorly directed,1369135071 +219962,71254,sci-fi,1369135043 +219962,71254,video game,1369135081 +219962,71254,video games,1369135083 +219962,71254,virtual life,1369135087 +219962,71254,virtual reality,1369135090 +219962,71264,animation,1350125201 +219962,71264,characters,1350125221 +219962,71264,childish,1350125306 +219962,71264,family film,1350125241 +219962,71264,food,1350125250 +219962,71264,funny,1350125252 +219962,71264,heartwarming,1350125257 +219962,71264,inventor,1350125259 +219962,71264,Silly,1350125290 +219962,71264,story,1350125322 +219962,71264,visually appealing,1350125293 +219962,71264,voice acting,1350125295 +219962,71264,witty,1350125299 +219962,71535,comedy,1262160665 +219962,71535,funny,1262160643 +219962,71535,horror,1262160661 +219962,71535,Jesse Eisenberg,1262160647 +219962,71535,Jesse Eisenberg is the new Michael Cera,1262160675 +219962,71535,post-apocalyptic,1262160649 +219962,71535,zombies,1262160656 +219962,71993,acting,1262466094 +219962,71993,dragon,1262466084 +219962,71993,dragons,1262466080 +219962,71993,fantasy,1262466076 +219962,71993,good vs evil,1262466090 +219962,71993,lord of the rings ripoff,1262466116 +219962,71993,plot recycle,1262466100 +219962,71993,star wars ripoff,1262466106 +219962,72011,airplane,1350220316 +219962,72011,airport,1350220320 +219962,72011,based on a book,1350220322 +219962,72011,business,1350220325 +219962,72011,capitalism,1350220327 +219962,72011,cheating,1350220329 +219962,72011,cheesy,1350220330 +219962,72011,corporate america,1350220332 +219962,72011,George Clooney,1350220338 +219962,72011,Jason Bateman,1350220425 +219962,72011,layoffs,1350220461 +219962,72011,loneliness,1350220380 +219962,72011,United States,1350220404 +219962,72226,animation,1405705403 +219962,72226,based on a book,1405705404 +219962,72226,George Clooney,1405705398 +219962,72226,great cast,1405705414 +219962,72226,talking animals,1405705422 +219962,72226,visually appealing,1405705408 +219962,72226,Wes Anderson,1405705411 +219962,72308,clip show,1262099503 +219962,72308,dumbing down,1262099460 +219962,72308,Galactica,1262099451 +219962,72308,made for TV,1262099447 +219962,72308,plot,1262099506 +219962,72308,space,1262099448 +219962,72998,3D,1274687672 +219962,72998,aliens,1274687566 +219962,72998,beautiful scenery,1274687563 +219962,72998,cliched,1274687592 +219962,72998,cliched plot,1274687596 +219962,72998,environmentalism,1274687659 +219962,72998,futuristic,1274687602 +219962,72998,Giovanni Ribisi,1274687614 +219962,72998,graphic design,1274687668 +219962,72998,James Cameron,1274687626 +219962,72998,military,1274687606 +219962,72998,racism,1274687651 +219962,72998,sci-fi,1274687621 +219962,72998,special effects,1274687700 +219962,72998,style over substance,1274687579 +219962,72998,too long,1274687582 +219962,72998,violent,1274687574 +219962,72998,war,1274687568 +219962,73017,Action,1342019655 +219962,73017,adventure,1342019698 +219962,73017,Atmospheric,1342019659 +219962,73017,Based on a book,1342019661 +219962,73017,choreographic violence,1342019693 +219962,73017,England,1342019691 +219962,73017,Jude Law,1342019674 +219962,73017,martial arts,1342019676 +219962,73017,mystery,1342019677 +219962,73017,Rachel McAdams,1342019688 +219962,73017,Robert Downey Jr.,1342019672 +219962,73017,Sherlock Holmes,1342019678 +219962,73017,Victorian era,1342019700 +219962,73017,violent,1342019687 +219962,73017,witty,1342019685 +219962,73499,archaeology,1387112401 +219962,73499,Atlantis,1387112391 +219962,73499,Brian Blessed,1387112507 +219962,73499,Indiana Jones rip-off,1387112473 +219962,73499,Indiana Jones wannabe,1387112465 +219962,73499,MacGyver,1387112379 +219962,73499,made for TV,1387112376 +219962,73499,Richard Dean Anderson,1387112388 +219962,73499,scientific errors,1387112453 +219962,73499,treasure hunt,1387112395 +219962,73829,awesomely bad,1292245135 +219962,73829,bad scifi,1292245164 +219962,73829,holy shit,1292245126 +219962,73829,monster,1292245142 +219962,73829,shark attack,1292245157 +219962,73829,sharks,1292245152 +219962,74324,animal cruelty,1343850094 +219962,74324,animal husbandry,1343850130 +219962,74324,autism,1343850035 +219962,74324,biography,1343850037 +219962,74324,cattle,1343850076 +219962,74324,Claire Danes,1343850038 +219962,74324,college,1343850125 +219962,74324,cows,1343850079 +219962,74324,disability,1343850061 +219962,74324,made for TV,1343850051 +219962,74324,science,1343850055 +219962,74324,slaughter,1343850072 +219962,74458,atmospheric,1341161738 +219962,74458,Ben Kingsley,1341161808 +219962,74458,dream,1341161836 +219962,74458,dream sequence,1341161836 +219962,74458,dreams,1341161835 +219962,74458,ending,1341161778 +219962,74458,island,1341161798 +219962,74458,Leonardo DiCaprio,1341161736 +219962,74458,Martin Scorsese,1341161905 +219962,74458,Michelle Williams,1341161796 +219962,74458,mystery,1368274156 +219962,74458,nazis,1341161901 +219962,74458,psychological,1341161740 +219962,74458,reality or imagination?,1341161887 +219962,74458,stylized,1341161744 +219962,74458,surreal,1341161861 +219962,74458,too long,1341161747 +219962,74458,weird,1341161813 +219962,74458,World War II,1341161913 +219962,74545,Alexandre Desplat,1370797639 +219962,74545,assassination,1370797642 +219962,74545,atmospheric,1370797629 +219962,74545,bad ending,1370797631 +219962,74545,black humour,1370797648 +219962,74545,British,1370797650 +219962,74545,drama,1370797703 +219962,74545,espionage,1370797652 +219962,74545,Ewan McGregor,1370797633 +219962,74545,island,1370797662 +219962,74545,mystery,1370797654 +219962,74545,not suspenseful,1370797712 +219962,74545,politics,1370797656 +219962,74545,pretentious,1370797676 +219962,74545,Roman Polanski,1370797635 +219962,74545,slow,1370797704 +219962,74545,suspense,1370797686 +219962,74545,weak plot,1370797679 +219962,75985,brutal,1395670111 +219962,75985,clichÃ?©d plot,1395670165 +219962,75985,evil corporation,1395670192 +219962,75985,Forest Whitaker,1395670094 +219962,75985,gore,1395670099 +219962,75985,health care,1395670197 +219962,75985,Jude Law,1395670104 +219962,75985,medicine,1395670195 +219962,75985,predictable,1395670124 +219962,75985,unlikeable characters,1395670150 +219962,75985,violent,1395670096 +219962,76093,animation,1306137013 +219962,76093,depth of emotion,1306137016 +219962,76093,dragons,1306137018 +219962,76093,fantasy,1306137020 +219962,76093,funny,1306137030 +219962,76093,Jay Baruchel,1306137027 +219962,76093,vikings,1306137021 +219962,77328,Andrew Garfield,1397457349 +219962,77328,conspiracy,1397457351 +219962,77328,corruption,1397457352 +219962,77328,open ending,1397457374 +219962,77328,serial killer,1397457357 +219962,77328,torture,1397457369 +219962,77330,corruption,1398694683 +219962,77330,murder,1398694674 +219962,77330,Paddy Considine,1398694635 +219962,77330,serial killer,1398694678 +219962,77330,violence,1398694686 +219962,77330,Yorkshire,1398694696 +219962,77359,conspiracy,1399306941 +219962,77359,David Morrissey,1399306955 +219962,77359,dirty cop,1399306945 +219962,77359,murder,1399306928 +219962,77359,serial killer,1399306932 +219962,77561,based on a comic,1274085802 +219962,77561,comic book,1274085815 +219962,77561,Robert Downey Jr.,1274085808 +219962,77561,Sam Rockwell,1274085805 +219962,77561,sequel,1274085811 +219962,77561,superhero,1274085812 +219962,77667,crude humor,1381668265 +219962,77667,exagerated stupidity,1381668233 +219962,77667,juvenile,1381668257 +219962,77667,parody,1381668302 +219962,77667,Ryan Phillippe,1381668238 +219962,77667,slapstick,1381668285 +219962,77667,SNL,1381668270 +219962,77667,stupid,1381668288 +219962,77667,Stupid as Hell,1381668292 +219962,77667,Val Kilmer,1381668242 +219962,77667,writing,1381668300 +219962,78729,Kiefer Sutherland,1278411959 +219962,78729,tv,1278411969 +219962,79091,adoption,1391969104 +219962,79091,animation,1391969064 +219962,79091,mad scientist,1391969069 +219962,79091,orphans,1391969080 +219962,79091,parenting,1391969101 +219962,79091,pixar,1391969084 +219962,79091,quirky,1391969079 +219962,79091,Steve Carell,1391969068 +219962,79132,action,1308558700 +219962,79132,alternate reality,1308558701 +219962,79132,dreams,1308558726 +219962,79132,heist,1308558706 +219962,79132,Joseph Gordon-Levitt,1308558716 +219962,79132,Leonardo DiCaprio,1308558708 +219962,79132,Marion Cotillard,1308558740 +219962,79132,visually appealing,1308558719 +219962,79139,Alfred Molina,1398886391 +219962,79139,cliche,1398886402 +219962,79139,fantasy world,1398886390 +219962,79139,Jay Baruchel,1398886395 +219962,79139,magic,1398886383 +219962,79139,New York City,1398886387 +219962,79139,Nicolas Cage,1398886396 +219962,79139,predictable,1398886376 +219962,79185,action,1397457264 +219962,79185,action packed,1397457266 +219962,79185,Cameron Diaz,1397457271 +219962,79185,comedy,1397457305 +219962,79185,spy,1397457282 +219962,79185,Tom Cruise,1397457269 +219962,79185,unrealistic,1397457262 +219962,79695,80s nostalgia,1349021856 +219962,79695,acting,1349021879 +219962,79695,action,1349021881 +219962,79695,action packed,1349021859 +219962,79695,Arnold Schwarzenegger,1349021862 +219962,79695,brutal,1349021886 +219962,79695,cast,1349021929 +219962,79695,Dolph Lundgren,1349021889 +219962,79695,Jason Statham,1349021866 +219962,79695,plot,1349021897 +219962,79695,Story,1349021899 +219962,79695,stylized violence,1349021916 +219962,79695,Sylvester Stallone,1349021870 +219962,79695,thin story,1349021872 +219962,79695,unrealistic,1349021904 +219962,79695,violence,1349021906 +219962,79695,violent,1349021908 +219962,79702,cultural references,1306137080 +219962,79702,fantasy,1306137082 +219962,79702,funny,1306137084 +219962,79702,Jason Schwartzman,1306137087 +219962,79702,Michael Cera,1306137071 +219962,79702,quirky,1306137090 +219962,79702,stylized,1306137072 +219962,79702,video games,1306137074 +219962,79702,visually appealing,1306137076 +219962,80463,college,1306137114 +219962,80463,computers,1306137115 +219962,80463,dialogue,1306137166 +219962,80463,hacking,1306137122 +219962,80463,internet,1306137123 +219962,80463,Jesse Eisenberg,1306137158 +219962,80463,nerds,1306137150 +219962,80969,annoying characters,1404769953 +219962,80969,based on a book,1404769920 +219962,80969,boarding school,1404769944 +219962,80969,Carey Mulligan,1404769950 +219962,80969,dystopia,1404769959 +219962,80969,England,1404769962 +219962,80969,Keira Knightley,1404769926 +219962,80969,somber,1404769940 +219962,80969,thought-provoking,1404769923 +219962,81229,action,1325854101 +219962,81229,assassin,1325854102 +219962,81229,Bruce Willis,1325854104 +219962,81229,cia,1325854106 +219962,81229,comedy,1325854107 +219962,81229,conspiracy,1325854108 +219962,81229,John Malkovich,1325854115 +219962,81229,Richard Dreyfuss,1325854119 +219962,81537,comedy,1325854174 +219962,81537,drug use,1325854190 +219962,81537,road trip,1325854199 +219962,81537,Robert Downey Jr.,1325854183 +219962,81537,unoriginal,1325854196 +219962,81537,Zach Galifianakis,1325854186 +219962,81591,alter ego,1338665471 +219962,81591,atmospheric,1338665418 +219962,81591,ballet,1338665456 +219962,81591,jealousy,1338665479 +219962,81591,Mila Kunis,1338665427 +219962,81591,Natalie Portman,1338665424 +219962,81591,obsession,1338665466 +219962,81591,Oscar (Best Actress),1338665476 +219962,81591,psychological thriller,1338665447 +219962,81591,Swan Lake,1338665483 +219962,81834,Alan Rickman,1290333811 +219962,81834,based on a book,1290333813 +219962,81834,boring,1290333824 +219962,81834,dark,1290333832 +219962,81834,magic,1290333816 +219962,84152,based on a book,1427896529 +219962,84152,Bradley Cooper,1427896552 +219962,84152,cinematography,1427896574 +219962,84152,interesting premise,1427896579 +219962,84152,mind altering drugs,1427896550 +219962,84152,thought provoking,1427896539 +219962,84152,visually appealing,1427896557 +219962,84954,Changing fate,1391969405 +219962,84954,Emily Blunt,1391969403 +219962,84954,fate,1391969362 +219962,84954,free will,1391969393 +219962,84954,Matt Damon,1391969355 +219962,84954,New York City,1391969399 +219962,84954,politics,1391969413 +219962,84954,Romance,1391969357 +219962,85414,action,1370195986 +219962,85414,adventure,1370195987 +219962,85414,Chicago,1370195989 +219962,85414,convoluted,1370196020 +219962,85414,deja vu,1370196001 +219962,85414,dumbed down,1370196052 +219962,85414,Groundhog Day,1370196159 +219962,85414,happy ending,1370195996 +219962,85414,Jake Gyllenhaal,1370196012 +219962,85414,military,1370196014 +219962,85414,parallel universe,1370196026 +219962,85414,predictable,1370196124 +219962,85414,predictable ending,1370196085 +219962,85414,romance,1370196038 +219962,85414,sappy,1370196059 +219962,85414,sappy ending,1370196055 +219962,85414,science fiction,1370196062 +219962,85414,stylized,1370196064 +219962,85414,suspense,1370196079 +219962,85414,terrorism,1370196066 +219962,85414,thriller,1370196068 +219962,85414,time loop,1370196070 +219962,85414,Vera Farmiga,1370196097 +219962,86332,action,1345552963 +219962,86332,Anthony Hopkins,1345552971 +219962,86332,brothers,1345552980 +219962,86332,Chris Hemsworth,1345553086 +219962,86332,comic book,1345552965 +219962,86332,gods,1345552996 +219962,86332,Loki,1345553130 +219962,86332,Loki steals the show,1345553171 +219962,86332,main character is boring,1345553159 +219962,86332,Marvel,1345553000 +219962,86332,Marvel Comics,1345553116 +219962,86332,mythology,1345553021 +219962,86332,Natalie Portman,1345553028 +219962,86332,no character development,1345552985 +219962,86332,Norse,1345553023 +219962,86332,sibling rivalry,1345553058 +219962,86332,Special Effects,1345553035 +219962,86332,superhero,1345553032 +219962,86332,The Avengers,1345553055 +219962,86332,Tom Hiddleston,1345553031 +219962,86332,watch the credits,1345552987 +219962,86833,baking,1345891115 +219962,86833,bittersweet,1345891127 +219962,86833,chick flick,1345978204 +219962,86833,Chris O'Dowd,1345891129 +219962,86833,clever script,1345891132 +219962,86833,comedy,1345891134 +219962,86833,crude humor,1345891137 +219962,86833,dialogue,1345891189 +219962,86833,flawed characters,1345891143 +219962,86833,good soundtrack,1345891145 +219962,86833,Judd Apatow,1345891148 +219962,86833,Kristen Wiig,1345891150 +219962,86833,Maya Rudolph,1345891158 +219962,86833,Melissa McCarthy,1345891155 +219962,86833,offbeat,1345891181 +219962,86833,poop humor,1345891166 +219962,86833,quirky,1345891184 +219962,86833,Rose Byrne,1345891175 +219962,86833,watch the credits,1345891177 +219962,86880,franchise,1400315575 +219962,86880,Ian McShane,1400315558 +219962,86880,Johnny Depp,1400315549 +219962,86880,mermaid,1400315584 +219962,86880,misogynistic,1400315568 +219962,86880,pirates,1400315565 +219962,86880,sequel,1400315551 +219962,86880,treasure,1400315587 +219962,86911,Bangkok,1386859361 +219962,86911,Bradley Cooper,1386859364 +219962,86911,drinking,1386859366 +219962,86911,drugs,1386859368 +219962,86911,low-brow,1386859359 +219962,86911,Thailand,1386859373 +219962,86911,unlikable characters,1386859371 +219962,86911,watch the credits,1386859375 +219962,86911,Zach Galifianakis,1386859351 +219962,87869,actually funny,1368015681 +219962,87869,black comedy,1368015682 +219962,87869,cast,1368015684 +219962,87869,Colin Farrell,1368015692 +219962,87869,Funny,1368015708 +219962,87869,jason bateman,1368015710 +219962,87869,Jennifer Aniston,1368015725 +219962,87869,murder,1368015722 +219962,87869,weak ending,1368015701 +219962,88125,atmospheric,1327165877 +219962,88125,based on a book,1327165905 +219962,88125,Emma Watson,1327165879 +219962,88125,epic,1327165890 +219962,88125,fantasy,1327165894 +219962,88125,franchise,1327165897 +219962,88125,Ralph Fiennes,1327165898 +219962,88125,Rupert Grint,1327165901 +219962,88125,tear jerker,1327165885 +219962,88125,unintentionally funny ending,1327165882 +219962,88140,action,1339768609 +219962,88140,based on a comic,1339768613 +219962,88140,Chris Evans,1339768633 +219962,88140,Hugo Weaving,1339768620 +219962,88140,Marvel,1339768623 +219962,88140,military,1339768640 +219962,88140,patriotic,1339768650 +219962,88140,popcorn movie,1339768666 +219962,88140,superhero,1339768677 +219962,88140,Tommy Lee Jones,1339768638 +219962,88163,adultery,1368189869 +219962,88163,comedy,1368189856 +219962,88163,cute,1368189858 +219962,88163,divorce,1368189870 +219962,88163,dysfunctional family,1368189872 +219962,88163,Emma Stone,1368189874 +219962,88163,father daughter relationship,1368189876 +219962,88163,father-son relationship,1368189879 +219962,88163,funny,1368189929 +219962,88163,love,1368189888 +219962,88163,plot twist,1368189890 +219962,88163,romantic comedy,1368189891 +219962,88163,Ryan Gosling,1368189911 +219962,88163,Steve Carell,1368189865 +219962,88163,understated,1368189894 +219962,88744,bad science,1339188419 +219962,88744,genetics,1339188428 +219962,88744,John Lithgow,1339188465 +219962,88744,Plot holes,1339188421 +219962,88744,special effects,1339188449 +219962,88744,thought-provoking,1339188451 +219962,88744,virus,1339188427 +219962,88810,based on a book,1395331637 +219962,88810,Emma Stone,1395331606 +219962,88810,feel good movie,1395331653 +219962,88810,feminism,1395331651 +219962,88810,great acting,1395331623 +219962,88810,historical,1395331633 +219962,88810,Octavia Spencer,1395331612 +219962,88810,racism,1395331618 +219962,88810,segregation,1395331630 +219962,88810,social commentary,1395331632 +219962,88810,southern US,1395331646 +219962,89074,advertising,1357760189 +219962,89074,boring,1357760197 +219962,89074,business,1357760195 +219962,89074,documentary,1357760185 +219962,89074,doesn't live up to its full potential,1357760215 +219962,89074,Morgan Spurlock,1357760186 +219962,89074,not analytic enough,1357760227 +219962,89074,product placement,1357760188 +219962,89074,repetitive,1357760202 +219962,89492,analytics,1411332425 +219962,89492,baseball,1411332411 +219962,89492,based on a true story,1411332413 +219962,89492,Brad Pitt,1411332405 +219962,89492,great acting,1411332415 +219962,89492,Jonah Hill,1411332420 +219962,89492,math,1411332421 +219962,89492,money,1411332505 +219962,89492,Philip Seymour Hoffman,1411332407 +219962,89492,statistics,1411332428 +219962,89492,true story,1411332434 +219962,89492,underdog,1411332436 +219962,89745,action,1345720165 +219962,89745,comic book,1345720167 +219962,89745,excellent cinematography,1345720201 +219962,89745,Gwyneth Paltrow,1345720173 +219962,89745,Iron Man,1345720308 +219962,89745,Joss Whedon,1345721151 +219962,89745,Loki,1345720305 +219962,89745,Loki steals the show,1345720326 +219962,89745,Mark Ruffalo,1345720213 +219962,89745,Marvel,1345720190 +219962,89745,no depth,1345720243 +219962,89745,Robert Downey Jr.,1345720221 +219962,89745,robots,1345720224 +219962,89745,Samuel L. Jackson,1345720225 +219962,89745,Scarlett Johansson,1345720228 +219962,89745,sfx,1345720264 +219962,89745,Special Effects,1345720275 +219962,89745,stylized violence,1345720237 +219962,89745,superficial,1345720239 +219962,89745,superhero,1345720246 +219962,89745,superhero team,1345720248 +219962,89745,Tom Hiddleston,1345720335 +219962,89745,U.S. Army,1345720251 +219962,89745,visually appealing,1345720254 +219962,89745,visually stunning,1345720256 +219962,89745,watch the credits,1345721419 +219962,89753,based on a book,1453397036 +219962,89753,cinematography,1453397081 +219962,89753,clever,1453397046 +219962,89753,confusing,1453397043 +219962,89753,espionage,1453397049 +219962,89753,Gary Oldman,1453397047 +219962,89753,John de Carre,1453397061 +219962,89753,slow paced,1453397039 +219962,89753,Spies,1453397056 +219962,89753,spy,1453397058 +219962,89753,spy drama,1453397060 +219962,90403,airships,1321021356 +219962,90403,based on a book,1321021289 +219962,90403,Milla Jovovich,1321021304 +219962,90403,Orlando Bloom,1321021298 +219962,90403,political intrigue,1321021348 +219962,90403,steampunk,1321021293 +219962,90403,sword fight,1321021320 +219962,90403,treachery,1321021336 +219962,90746,adapted from:book series,1365924606 +219962,90746,alcoholism,1365924543 +219962,90746,Andy Serkis,1365924561 +219962,90746,animation,1365924549 +219962,90746,characters,1365924564 +219962,90746,comic book,1365924567 +219962,90746,pirates,1365924580 +219962,90746,Steven Spielberg,1365924585 +219962,90746,sword fight,1365924591 +219962,90746,treasure hunt,1365924589 +219962,90866,Asa Butterfield,1396268547 +219962,90866,based on a book,1396268571 +219962,90866,Ben Kingsley,1396268536 +219962,90866,bittersweet,1396268494 +219962,90866,fantasy,1396268537 +219962,90866,heartbreaking,1396268574 +219962,90866,movie business,1396268539 +219962,90866,nostalgic,1396268554 +219962,90866,Paris,1396268558 +219962,90866,robots,1396268541 +219962,90866,Sacha Baron Cohen,1396268503 +219962,90866,visually appealing,1396268497 +219962,91535,bad acting,1420819414 +219962,91535,bad script,1420819416 +219962,91535,franchise,1420819436 +219962,91535,Jeremy Renner is no Matt Damon,1420819429 +219962,91535,mention Bourne often enough and it's a Bourne movie,1420819407 +219962,91535,Rehash Sequel,1420819409 +219962,91535,weak story,1420819410 +219962,91542,alternate history,1342101170 +219962,91542,Bromance,1342101034 +219962,91542,choreographic violence,1342101081 +219962,91542,dialogue,1342101105 +219962,91542,great cinematography,1342101040 +219962,91542,Guy Ritchie,1342101060 +219962,91542,No mystery,1342101092 +219962,91542,Noomi Rapace,1342101055 +219962,91542,Robert Downey Jr.,1342101045 +219962,91542,script,1342101099 +219962,91542,sequel fever,1342101143 +219962,91542,story,1342101048 +219962,91542,Weak plot,1342101047 +219962,91630,Bechdel Test:Fail,1412978136 +219962,91630,cinematography,1412978146 +219962,91630,cool gadgets,1412978148 +219962,91630,espionage,1412978158 +219962,91630,franchise,1412978138 +219962,91630,Jeremy Renner,1412978134 +219962,91630,Simon pegg,1412978133 +219962,91630,thriller,1412978160 +219962,91658,based on a book,1325853828 +219962,91658,Daniel Graig,1325853843 +219962,91658,David Fincher,1325853846 +219962,91658,long,1325853850 +219962,91658,rape,1325853832 +219962,91658,remake,1325853854 +219962,91658,Rooney Mara,1325853833 +219962,91658,suspense,1325853848 +219962,92422,atmospheric,1410121926 +219962,92422,Ciaran Hinds,1410121961 +219962,92422,Daniel Radcliffe,1410121928 +219962,92422,ghost story,1410121947 +219962,92422,haunted house,1410121936 +219962,92422,horror,1410121937 +219962,92422,jumpscares,1410121934 +219962,92422,scary,1410121940 +219962,92422,unsatisfying ending,1410121932 +219962,92422,very scary,1410121942 +219962,93840,bloody,1399306864 +219962,93840,clever,1399306861 +219962,93840,conspiracy,1399306871 +219962,93840,dark comedy,1399306866 +219962,93840,original plot,1399306862 +219962,93840,plot twist,1399306875 +219962,93840,Refreshing,1399306895 +219962,94015,beautiful,1344854498 +219962,94015,black magic,1344854528 +219962,94015,dwarves,1344854506 +219962,94015,fairy tale,1344854495 +219962,94015,good versus evil,1344854543 +219962,94015,Julia Roberts,1344854502 +219962,94015,Lily Collins,1344854514 +219962,94015,magic,1344854531 +219962,94015,remake,1344854490 +219962,94271,boring,1339338016 +219962,94271,robot,1339338063 +219962,94271,slow paced,1339338024 +219962,94271,space,1339338011 +219962,94271,space travel,1339338030 +219962,94271,spaceship,1339338081 +219962,94780,beautiful cinematography,1346413151 +219962,94780,boring,1346413154 +219962,94780,casting,1346413224 +219962,94780,charlize theron,1346413127 +219962,94780,Chris Hemsworth,1346413129 +219962,94780,drab,1346413132 +219962,94780,dwarves,1346413133 +219962,94780,fairy tale,1346413134 +219962,94780,fantasy,1346413136 +219962,94780,Kristen Stewart,1346413137 +219962,94780,main character is boring,1346413170 +219962,94780,Thor,1346413184 +219962,94780,too long,1346413162 +219962,94780,unlikeable characters,1346413158 +219962,94780,visuals,1346413143 +219962,94833,Aardman,1354029292 +219962,94833,Aardman studios,1354029297 +219962,94833,animation,1354029276 +219962,94833,claymation,1354029279 +219962,94833,Darwin,1354029321 +219962,94833,London,1354029328 +219962,94833,Martin Freeman,1354029302 +219962,94833,pirates,1354029274 +219962,94833,Queen Victoria,1354029338 +219962,94833,voice acting,1354029311 +219962,94864,acting,1350062877 +219962,94864,aliens,1338841839 +219962,94864,boring,1338841859 +219962,94864,casting,1338841868 +219962,94864,Charlize Theron,1350062811 +219962,94864,Logan Marshall-Green,1350062882 +219962,94864,messes up continuity,1350062883 +219962,94864,Michael Fassbender,1338841844 +219962,94864,Noomi Rapace,1338841856 +219962,94864,predictable,1338841864 +219962,94864,prequel,1350062845 +219962,94864,reckless scientists,1350062829 +219962,94864,Ridley Scott,1350062834 +219962,94864,scifi,1338841848 +219962,94864,script,1350062839 +219962,94864,space travel,1350062843 +219962,95105,Animated,1374245014 +219962,95105,circus,1374245017 +219962,95105,franchise,1374245050 +219962,95105,penguins,1374245068 +219962,95105,sequel,1374245043 +219962,95105,talking animals,1374245039 +219962,95167,charming,1354027044 +219962,95167,coming of age,1354027046 +219962,95167,father-daughter relationship,1354027051 +219962,95167,Kick-Butt Women,1354027058 +219962,95167,mother-daughter relationships,1354027065 +219962,95167,No Marriage at the End,1354027066 +219962,95167,predictable,1354027048 +219962,95167,royalty,1354027162 +219962,95167,Scotland,1354027074 +219962,95167,visuals,1354027159 +219962,95167,watch the credits,1354027165 +219962,95309,apocalyptic,1354029395 +219962,95309,chick flick,1354029397 +219962,95309,clever,1354029407 +219962,95309,could have been edgier,1354029470 +219962,95309,could have been funnier,1354029466 +219962,95309,dark comedy,1354029448 +219962,95309,dark humor,1354029452 +219962,95309,end of the world,1354029503 +219962,95309,Keira Knightley,1354029401 +219962,95309,Martin Sheen,1354029497 +219962,95309,meteor,1354029428 +219962,95309,road trip,1354029494 +219962,95309,sci-fi,1354029438 +219962,95309,Steve Carell,1354029399 +219962,95510,action,1354027313 +219962,95510,Andrew Garfield,1354027307 +219962,95510,comic book,1354027324 +219962,95510,double life,1354027335 +219962,95510,Emma Stone,1354027337 +219962,95510,Martin Sheen,1354027315 +219962,95510,Marvel,1354027318 +219962,95510,Reboot,1354027359 +219962,95510,remake,1354027361 +219962,95510,Rhys Ifans,1354027363 +219962,95510,special effects,1354027367 +219962,95510,Spider-Man,1354027320 +219962,95510,superhero,1354027369 +219962,95510,watch the credits,1354027322 +219962,95543,Corny ending,1354028886 +219962,95543,franchise,1354028881 +219962,95543,Peter Dinklage,1354028883 +219962,95543,Scrat,1354028914 +219962,95543,Scrat steals the show,1354028919 +219962,95543,sequel,1354028930 +219962,95875,aftermath of war,1354028735 +219962,95875,bad science,1354028739 +219962,95875,based on a book,1354028728 +219962,95875,check your brain at the door,1354028810 +219962,95875,cyberpunk,1354028743 +219962,95875,dystopia,1354028745 +219962,95875,espionage,1354028748 +219962,95875,future,1354028750 +219962,95875,Jessica Biel,1354028752 +219962,95875,Kate Beckinsale,1354028756 +219962,95875,memory,1354028759 +219962,95875,not as good as the original,1354028836 +219962,95875,Philip K. Dick,1354028761 +219962,95875,remake,1354028770 +219962,95875,Sci-fi,1354028777 +219962,95875,science fiction,1354028780 +219962,95875,the whole movie is just one long chase scene,1354028802 +219962,95875,unlikeable characters,1354028793 +219962,95875,unnecessary remake,1354028795 +219962,96079,007 (series),1354027394 +219962,96079,action,1354027396 +219962,96079,beautiful cinematography,1354027399 +219962,96079,China,1354027407 +219962,96079,Daniel Craig,1354027409 +219962,96079,dark,1354027411 +219962,96079,franchise,1354027413 +219962,96079,James Bond,1354027414 +219962,96079,Javier Bardem,1354027416 +219962,96079,Judi Dench,1354027417 +219962,96079,London,1354027418 +219962,96079,Naomie Harris,1354027452 +219962,96079,sad ending,1354027432 +219962,96079,Scotland,1354027434 +219962,96079,villain,1354027462 +219962,96610,Bruce Willis,1427059397 +219962,96610,creepy kid,1427059411 +219962,96610,dystopia,1427059399 +219962,96610,emily blunt,1427059556 +219962,96610,grandfather paradox,1427059451 +219962,96610,hitman,1427059563 +219962,96610,Joseph Gordon-Levitt,1427059347 +219962,96610,organized crime,1427059546 +219962,96610,sci-fi,1427059400 +219962,96610,science fiction,1427059402 +219962,96610,time travel,1427059406 +219962,97172,Animated,1383482756 +219962,97172,animation,1383482758 +219962,97172,black and white,1383482754 +219962,97172,boring,1383482814 +219962,97172,boy and his dog,1383482767 +219962,97172,death,1383482782 +219962,97172,frankenstein,1383482795 +219962,97172,sad,1383482811 +219962,97172,Tim Burton,1383482803 +219962,97330,acting,1350125545 +219962,97330,amazons,1350125609 +219962,97330,Conan rip-off,1350125567 +219962,97330,fantasy,1350125555 +219962,97330,fantasy cliches,1350125552 +219962,97330,Miles O'Keeffe,1350125562 +219962,97330,prophecy,1350125585 +219962,97330,script,1350125549 +219962,97330,sorceress,1350125600 +219962,97330,spider,1350125574 +219962,97330,sword fight,1350125627 +219962,97752,atmospheric,1372619487 +219962,97752,Ben Whishaw,1372619537 +219962,97752,complicated,1372619491 +219962,97752,convoluted,1372619495 +219962,97752,Doona Bae,1372619526 +219962,97752,dystopia,1372619498 +219962,97752,dystopian future,1372619594 +219962,97752,great acting,1372619501 +219962,97752,Halle Berry,1372619504 +219962,97752,independent film,1372619541 +219962,97752,makeup effects,1372681265 +219962,97752,multiple roles,1372619514 +219962,97752,multiple storylines,1372619516 +219962,97752,no plot,1372681273 +219962,97752,overrated,1372681283 +219962,97752,philosophy,1372619544 +219962,97752,pretentious,1372619609 +219962,97752,sci-fi,1372619546 +219962,97752,slow paced,1372619553 +219962,97752,Tom Hanks,1372619518 +219962,97752,too long,1372681269 +219962,97752,Wachowski Brothers,1372619611 +219962,98279,comedy,1410899796 +219962,98279,Funny,1410899790 +219962,98279,horror,1410899792 +219962,98279,odd,1410899803 +219962,98279,quirky,1410899809 +219962,98279,Simon Pegg,1410899800 +219962,98809,adventure,1355935335 +219962,98809,based on a book,1355935332 +219962,98809,dwarf,1355935348 +219962,98809,fantasy,1355935354 +219962,98809,Goblin,1355935450 +219962,98809,Gollum,1355935384 +219962,98809,Ian McKellan,1355935442 +219962,98809,magic,1355935446 +219962,98809,Martin Freeman,1355935312 +219962,98809,Middle Earth,1355935358 +219962,98809,multiple endings,1355935486 +219962,98809,orcs,1355935452 +219962,98809,Peter Jackson,1355935363 +219962,98809,Radagast,1355935490 +219962,98809,soundtrack,1355935468 +219962,98809,Tolkien,1355935382 +219962,98809,too long,1355935482 +219962,99910,action,1390734430 +219962,99910,Arnold Schwarzenegger,1390734419 +219962,99910,bloody,1390734433 +219962,99910,Johnny Knoxville,1390734443 +219962,99910,Peter Stormare,1390734435 +219962,99910,stylized violence,1390734453 +219962,99910,thriller,1390734441 +219962,99910,violent,1390734428 +219962,102125,action,1382622620 +219962,102125,action packed,1382622623 +219962,102125,audience intelligence underestimated,1382622669 +219962,102125,Ben Kingsley,1382622625 +219962,102125,Christmas,1382622662 +219962,102125,Don Cheadle,1382622631 +219962,102125,Guy Pearce,1382622636 +219962,102125,Gwyneth Paltrow,1382622629 +219962,102125,Marvel,1382622637 +219962,102125,Robert Downey Jr.,1382622628 +219962,102125,rushed ending,1382622644 +219962,102125,superhero,1382622647 +219962,102125,terrorism,1382622648 +219962,102445,action,1383482609 +219962,102445,adventure,1383482624 +219962,102445,aliens,1383482627 +219962,102445,Anton Yelchin,1383482629 +219962,102445,based on a TV show,1383482631 +219962,102445,Benedict Cumberbatch,1383482708 +219962,102445,Chris Pine,1383482723 +219962,102445,franchise,1383482614 +219962,102445,inferior sequel,1383482606 +219962,102445,J.J. Abrams,1383482652 +219962,102445,John Cho,1383482727 +219962,102445,KHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN,1383482699 +219962,102445,revenge,1383482661 +219962,102445,science fiction,1383482667 +219962,102445,Simon Pegg,1383482619 +219962,102445,space,1383482669 +219962,102445,spock,1383482688 +219962,102445,Star Trek,1383482621 +219962,102445,traitor,1383482690 +219962,102445,unoriginal,1383482712 +219962,102445,Zachary Quinto,1383482678 +219962,103141,animation,1419265378 +219962,103141,comedy,1419265379 +219962,103141,monsters,1419265389 +219962,103141,Monsters Inc,1419265386 +219962,103141,Pixar,1419265380 +219962,103141,sequel,1419265369 +219962,103596,B-movie,1381604553 +219962,103596,Ian Ziering,1381604577 +219962,103596,natural disaster,1381604566 +219962,103596,shark,1381604558 +219962,103596,sharks,1381604560 +219962,103596,syfy,1381604583 +219962,103596,trash,1381604554 +219962,103596,unintentional comedy,1381604549 +219962,104841,astronauts,1410529523 +219962,104841,atmospheric,1410529520 +219962,104841,beautiful,1410529525 +219962,104841,cinematography,1410529536 +219962,104841,plotless,1410529531 +219962,104841,sandra bullock,1410529534 +219962,104841,sci-fi,1410529538 +219962,104841,space,1410529540 +219962,104841,Space Station,1410529542 +219962,104841,suspense,1410529537 +219962,104841,visually appealing,1410529533 +219962,104913,based on a true story,1410639249 +219962,104913,Ferrari,1410639271 +219962,104913,Formula 1,1410639255 +219962,104913,interesting characters,1410639251 +219962,104913,Ron Howard,1410639253 +219962,106072,aliens,1408718846 +219962,106072,comic book,1408718882 +219962,106072,Idris Elba,1408718884 +219962,106072,superhero,1408718861 +219962,106072,thin plot,1408718872 +219962,106072,unrealistic,1408718833 +219962,106072,visually appealing,1408718864 +219962,106072,watch the credits,1408718831 +219962,106489,adventure,1391969161 +219962,106489,based on a book,1391969157 +219962,106489,benedict cumberbatch,1391969181 +219962,106489,dragon,1391969159 +219962,106489,franchise,1391969193 +219962,106489,hobbit,1391969163 +219962,106489,love triangle,1391969200 +219962,106489,Martin Freeman,1391969188 +219962,106489,not true to the book,1391969165 +219962,106489,Tolkien,1391969206 +219962,106489,too long,1391969203 +219962,108579,bad acting,1412259627 +219962,108579,just horrible,1412259622 +219962,109374,ensemble cast,1421074060 +219962,109374,funny,1421074024 +219962,109374,great dialogue,1421074045 +219962,109374,hotel,1421074067 +219962,109374,quirky,1421074027 +219962,109374,Ralph Fiennes,1421074035 +219962,109374,stylized,1421074031 +219962,109374,visually appealing,1421074032 +219962,109374,Wes Anderson,1421074073 +219962,109374,whimsical,1421074041 +219962,109487,artificial intelligence,1452606072 +219962,109487,artsy,1452606068 +219962,109487,astronauts,1452606081 +219962,109487,cliché finale,1452606065 +219962,109487,philosophical,1452606084 +219962,109487,space travel,1452606070 +219962,109487,visually appealing,1452606077 +219962,110102,action,1408718953 +219962,110102,Chris Evans,1408718911 +219962,110102,conspiracy,1408718950 +219962,110102,implausible conspiracy,1408718928 +219962,110102,long,1408718930 +219962,110102,Marvel,1408718938 +219962,110102,Scarlett Johansson,1408718914 +219962,110102,superhero,1408718922 +219962,110102,watch the credits,1408718920 +219962,111759,Actually good despite Tom Cruise,1452882410 +219962,111759,Alien Invasion,1452882411 +219962,111759,future,1452882413 +219962,111759,Groundhog Day,1452882438 +219962,111759,military,1452882447 +219962,111759,sci-fi,1452882416 +219962,111759,science fiction,1452882423 +219962,111759,space battle,1452882425 +219962,111759,time loop,1452882430 +219962,111759,time travel,1452882429 +219962,111759,Tom Cruise,1452882418 +219962,112183,Academy Award Nominee,1422288198 +219962,112183,Edward Norton,1422288180 +219962,112183,magical realism,1422288414 +219962,112183,movie business,1422288183 +219962,112183,music,1422288364 +219962,112183,one shot,1422288334 +219962,112183,pretentious,1422288223 +219962,112183,satire,1422288163 +219962,112183,theater,1422288165 +219962,112290,12 years in the making,1421328544 +219962,112290,episodic,1421328464 +219962,112290,Ethan Hawke,1421328416 +219962,112290,growing up,1421328459 +219962,112290,no plot,1421328442 +219962,112290,overrated,1421328435 +219962,112290,pseudo-intelligent,1421328445 +219962,112290,too long,1421328438 +219962,112556,based on a book,1420645257 +219962,112556,Ben Affleck,1420645259 +219962,112556,good adaptation,1420645269 +219962,112556,good adaptation of the book,1420645271 +219962,112556,marriage,1420645293 +219962,112556,meticulous,1420645266 +219962,112556,mindfuck,1420645264 +219962,112852,Action,1421151867 +219962,112852,adventure,1421151870 +219962,112852,aliens,1421151871 +219962,112852,fantasy,1421151874 +219962,112852,franchise,1421151859 +219962,112852,great soundtrack,1421151889 +219962,112852,Groot,1421151853 +219962,112852,science fiction,1421151891 +219962,112852,space opera,1421151861 +219962,112852,violent,1421151882 +219962,114242,b-list celebrity cameos,1412259542 +219962,114242,just bad and not in a good way,1412259517 +219962,114242,product placement overkill,1412259525 +219962,114242,sequel,1412259491 +219962,115170,dialogue,1424101976 +219962,115170,Father-Son Relationship,1424101967 +219962,115170,Robert Downey Jr.,1424101965 +219962,115170,Robert Duvall,1424101963 +219962,115170,Trial,1424101989 +219962,115170,Vincent D'Onofrio,1424101990 +219962,115569,creepy,1420913494 +219962,115569,dark,1420913497 +219962,115569,Jake Gyllenhaal,1420913490 +219962,115569,journalism,1420913483 +219962,115569,lack of morals,1420913505 +219962,115569,news,1420913546 +219962,117176,biopic,1421668597 +219962,117176,Eddie Redmayne,1421668593 +219962,117176,emotional,1421668609 +219962,117176,physics,1421668680 +219962,117176,romance,1421668606 +219962,117176,science,1421668677 +219962,117176,Stephen Hawking,1421668603 +219962,122882,apocalypse,1453211018 +219962,122882,bleak,1453210921 +219962,122882,breeding,1453210982 +219962,122882,brutal,1453211000 +219962,122882,cars,1453211001 +219962,122882,Charlize Theron,1453210874 +219962,122882,dystopia,1453210914 +219962,122882,human livestock,1453210980 +219962,122882,no Mel Gibson,1453210944 +219962,122882,offensive,1453210986 +219962,122882,post-apocalyptic,1453210909 +219962,122882,violence,1453210906 +219962,122882,violent,1453210904 +219962,122882,was there a plot to this thing?,1453210951 +219962,122882,what the hell did I just watch?,1453210959 +219962,122882,wrong Max,1453210936 +219962,122886,franchise,1452606017 +219962,122886,recycled plot,1452606036 +219962,122886,space,1452606012 +219962,122886,Star Wars,1452606016 +219962,122886,weak baddie,1452606030 +219962,134130,Mars,1444487965 +219962,134130,Matt Damon,1444487962 +219962,134130,NASA,1444487975 +219962,134130,space,1444487967 +219962,134130,space program,1444487972 +219962,134130,space travel,1444487980 +219962,136020,Ben Wishaw,1450547298 +219962,136020,Blofeld,1450547308 +219962,136020,Daniel Graig,1450547288 +219962,136020,James Bond,1450547281 +219962,136020,old school,1450547314 +219962,136020,spy,1450547283 +219962,143385,Academy Award Nominee,1453130851 +219962,143385,Coen Brothers,1453130830 +219962,143385,Cold War,1453130842 +219962,143385,espionage,1453131131 +219962,143385,KGB,1453130827 +219962,143385,political prisoner,1453131166 +219962,143385,Political Thriller,1453130823 +219962,143385,spy,1453131127 +219962,143385,Steven Spielberg,1453130869 +219962,143385,Tom Hanks,1453130863 +219977,260,Favorites,1439064375 +220015,318,prison escape,1137937512 +220015,1291,Holy Grail,1137937751 +220015,1527,ok,1137937779 +220015,4306,donkey,1137937638 +220015,4896,harry potter,1137937543 +220015,4963,great,1137937798 +220015,4993,fantasy,1137937698 +220015,5218,nut,1137937664 +220015,5349,new york,1137937622 +220015,5816,harry potter,1137937562 +220015,8368,harry potter,1137937738 +220015,31685,funny,1137937818 +220015,40815,harry potter,1137937681 +220027,930,Best Performance: Cary Grant as T.R. Devlin,1166573348 +220058,260,sci-fi,1432389231 +220058,260,well made,1432389242 +220058,122892,Action,1432596912 +220058,127182,Favorite Actress,1432596477 +220071,6539,Johnny Depp,1309857711 +220071,68157,gratuitous violence,1254904002 +220071,68157,insults audience's intelligence,1254903984 +220071,68157,Til Schweiger,1254904031 +220071,68157,violence,1254903991 +220071,77414,Miley Cyrus,1287593256 +220094,16,mafia,1269700868 +220094,16,Martin Scorsese,1269700848 +220094,16,narrated,1269700886 +220094,16,Robert De Niro,1269700851 +220094,16,Robert DeNiro,1269700855 +220094,16,Sharon Stone,1269700860 +220094,16,violent,1269700893 +220094,608,black comedy,1269997300 +220094,608,Coen Brothers,1269997298 +220094,608,Minnesota,1269997303 +220094,608,Oscar (Best Actress),1269997305 +220094,1213,crime,1269912997 +220094,1213,mafia,1269912999 +220094,1213,Martin Scorsese,1269912985 +220094,1213,organized crime,1269912987 +220094,1213,Robert De Niro,1269912988 +220094,1232,existentialism,1343527940 +220094,1232,meditative,1343527941 +220094,1232,psychological,1343527956 +220094,1305,Golden Palm,1343097105 +220094,1305,Indie,1343097108 +220094,1305,isolation,1343097126 +220094,1305,photography,1343097113 +220094,1305,REDEMPTION,1343097116 +220094,1305,road movie,1343097119 +220094,1305,Soundtrack,1343097135 +220094,1572,capri,1343675313 +220094,1572,Jean-Luc Godard,1343675302 +220094,1784,Comedy,1242352194 +220094,1784,funny,1242352208 +220094,1784,Jack Nicholson,1242352210 +220094,1784,obsessive compulsive disorder,1242352236 +220094,1784,seen more than once,1242352245 +220094,2232,maze,1242354844 +220094,2232,original,1242354859 +220094,2232,weird,1242354832 +220094,2712,atmospheric,1269700759 +220094,2712,dreamlike,1269700764 +220094,2712,dreams,1269700804 +220094,2712,New York City,1269700771 +220094,2712,Nicole Kidman,1269700762 +220094,2712,notable soundtrack,1269700773 +220094,2712,seen more than once,1269700808 +220094,2712,sexual,1269700798 +220094,2712,Stanley Kubrick,1269700776 +220094,2712,Tom Cruise,1269700778 +220094,2712,voyeurism,1269700814 +220094,3198,based on a book,1273365130 +220094,3198,Dustin Hoffman,1273365121 +220094,3198,escape,1273365124 +220094,3198,Steve McQueen,1273365118 +220094,3272,Harvey Keitel,1269137575 +220094,3272,heroin,1269137595 +220094,3272,Nudity (Topless),1269137585 +220094,3272,police corruption,1269137549 +220094,3272,religion,1269137592 +220094,3947,assassin,1258129607 +220094,3947,British gangsters,1258129612 +220094,3947,Michael Caine,1258129599 +220094,4144,atmospheric,1343616952 +220094,4144,Criterion,1343616953 +220094,4144,Hong Kong,1343616949 +220094,4144,loneliness,1343616943 +220094,4144,moody,1343616944 +220094,4144,music,1343616945 +220094,4144,neighbors,1343616947 +220094,4226,complicated,1343182833 +220094,4226,cult film,1343182835 +220094,4226,narrated,1343182827 +220094,4226,nonlinear,1343182825 +220094,4506,Atmosphere,1257555642 +220094,4506,Emmanuelle Seigner,1257555639 +220094,4506,Ennio Morricone,1257555640 +220094,4506,Europe,1257555651 +220094,4506,Harrison Ford,1257555662 +220094,4506,Paris,1257555637 +220094,6066,Christopher Plummer,1267737505 +220094,6066,Donald Sutherland,1267737506 +220094,6066,James Mason,1267737509 +220094,7560,Cold War,1263609000 +220094,7560,Friday night movie,1263609003 +220094,7560,Frightening,1263609010 +220094,7560,Henry Fonda,1263609012 +220094,7560,Joseph McCarthy,1263609017 +220094,7560,nuclear,1263609105 +220094,7560,Walter Matthau,1263609014 +220094,8775,Europe,1258176676 +220094,8882,less than 300 ratings,1266718575 +220094,8882,split personality,1266718567 +220094,8882,Tony Curtis,1266718559 +220094,25771,Dali,1269140506 +220094,25771,dreams,1269140476 +220094,25771,experimental,1269140474 +220094,25771,Luis Buñuel,1269140477 +220094,25771,Nudity (Topless),1269140486 +220094,25771,short,1269140493 +220094,25771,surreal,1269140482 +220094,25771,surrealism,1269140481 +220094,25771,To See,1269140497 +220094,30707,Bittersweet,1343096167 +220094,30707,boxing,1343096162 +220094,30707,Clint Eastwood,1343096160 +220094,30707,Morgan Freeman,1343096169 +220094,44555,spying,1343538013 +220094,44555,surveillance,1343538014 +220094,64839,manipulative,1344049875 +220094,64839,music,1344049840 +220094,64839,soundtrack,1344049840 +220094,64839,stripping,1344049823 +220094,64839,violence,1344049859 +220094,68157,Quentin Tarantino,1263053527 +220094,68157,random unnecessary close-ups of cream,1263053530 +220094,68157,tense,1263053542 +220094,68157,World War II,1263053549 +220094,68237,clones,1257908048 +220094,68237,directorial debut,1257908055 +220094,68237,Sam Rockwell,1257908042 +220094,68237,Sci-fi,1257908035 +220094,68237,space,1257908046 +220094,68954,computer animation,1258129671 +220094,68954,happy ending,1258129665 +220094,68954,heartbreaking,1258129658 +220094,68954,Pixar,1258129661 +220094,68954,predictable,1258129654 +220094,71033,excellent script,1274395177 +220094,71033,Guillermo Francella,1274395178 +220094,71033,Ricardo Darin,1274395183 +220094,71033,Soledad Villamil,1274395186 +220094,72998,cgi,1262557566 +220094,72998,graphic design,1262557563 +220094,72998,James Cameron,1262557558 +220094,72998,music,1262557556 +220094,72998,poor dialogue,1262557553 +220094,72998,Sigourney Weaver,1262557544 +220094,72998,superficial plot,1262557547 +220094,72998,too long,1262557549 +220094,73017,Guy Ritchie,1263963080 +220094,73017,Mark Strong,1263963102 +220094,74416,Andrea Arnold,1272673774 +220094,74416,great soundtrack,1272673772 +220094,74416,Kierston Wareing,1272673791 +220094,74458,acting,1269097637 +220094,74458,ending twist,1269097640 +220094,74458,insanity,1269097642 +220094,74458,Leonardo DiCaprio,1269097616 +220094,74458,Martin Scorsese,1269097614 +220094,74458,Max von Sydow,1269097620 +220094,74458,psychological,1269097626 +220094,74458,too long,1269097628 +220094,80880,atmospheric,1343275531 +220094,80880,faith,1343275513 +220094,80880,Milla Jovovich,1343275507 +220094,80880,Robert De Niro,1343275508 +220094,80880,soundtrack,1343275531 +220126,107958,argentina,1439661905 +220126,107958,dibujitos,1439661914 +220126,107958,futbol,1439661909 +220130,260,action,1439768542 +220130,260,adventure,1439768555 +220130,260,Science Fiction,1439768532 +220155,551,gothic,1206728859 +220155,3081,Tim Burton,1206729102 +220155,37729,music,1206728885 +220155,54272,animation,1206729311 +220155,56757,Musical,1206729281 +220157,5459,nice acting,1442226017 +220157,5459,Will Smith,1442225997 +220182,8643,Hilary Duff,1226588994 +220188,59725,fashion,1444503079 +220193,1089,crude,1224527822 +220193,1089,low budget,1224527801 +220193,1206,kubrick,1224527873 +220193,1206,photography,1224527873 +220193,1206,violence,1224527873 +220193,1258,kubrick,1224615052 +220193,4226,psichological,1224525815 +220227,232,foreign language,1430334930 +220227,85342,foreign language,1430334908 +220227,115617,adventure,1430334963 +220227,115617,family,1430334963 +220227,115617,pixar,1430334963 +220231,3833,mst3k,1157872934 +220248,260,Далекие планеты,1432917615 +220248,260,Лазерные мечи,1432917600 +220272,32,Gfei own it,1189539389 +220272,47,want it,1189534141 +220272,107,treasure,1369745018 +220272,163,Gfei own it,1189606876 +220272,260,Gfei own it,1189539262 +220272,288,Gfei own it,1189607730 +220272,318,want it,1189534125 +220272,353,dark hero,1369745114 +220272,377,want it,1189534517 +220272,380,arnold,1369745153 +220272,485,arnold,1369745153 +220272,541,Gfei own it,1189540789 +220272,553,want it,1189861829 +220272,589,arnold,1369745153 +220272,593,want it,1189534116 +220272,648,Gfei own it,1189539409 +220272,668,bollywood,1369744937 +220272,733,Gfei own it,1189539367 +220272,750,want it,1189549568 +220272,913,noir thriller,1369745053 +220272,1036,Gfei own it,1189539307 +220272,1091,Gfei own it,1189607262 +220272,1136,Gfei own it,1189539225 +220272,1193,Gfei own it,1189539230 +220272,1196,Gfei own it,1189539270 +220272,1197,want it,1189534156 +220272,1200,want it,1189534758 +220272,1210,Gfei own it,1189539377 +220272,1214,Gfei own it,1189539203 +220272,1240,arnold,1369745153 +220272,1248,noir thriller,1369745053 +220272,1262,want it,1189539954 +220272,1291,treasure,1369745018 +220272,1291,want it,1189534393 +220272,1387,Gfei own it,1189539330 +220272,1391,mars,1369745099 +220272,1466,Gfei own it,1189539195 +220272,1488,Gfei own it,1189607066 +220272,1527,want it,1189535060 +220272,1617,want it,1189534369 +220272,1694,jesus,1369744982 +220272,1704,want it,1189540514 +220272,1748,Gfei own it,1189545392 +220272,1894,stranded,1369745069 +220272,1918,want it,1189535716 +220272,1921,Gfei own it,1189539358 +220272,2000,want it,1189535750 +220272,2001,want it,1189535740 +220272,2002,want it,1189535708 +220272,2022,jesus,1369744982 +220272,2028,Gfei own it,1189539241 +220272,2115,treasure,1369745017 +220272,2115,want it,1189545971 +220272,2167,Gfei own it,1189607554 +220272,2194,Gfei own it,1189540484 +220272,2278,Gfei own it,1189607533 +220272,2405,treasure,1369745018 +220272,2490,want it,1189535720 +220272,2542,want it,1189540386 +220272,2571,Gfei own it,1189539216 +220272,2662,mars,1369745099 +220272,2716,Gfei own it,1189539320 +220272,2726,noir thriller,1369745053 +220272,2762,want it,1189535023 +220272,2791,want it,1189546096 +220272,2827,Gfei own it,1189607352 +220272,2916,arnold,1369745152 +220272,2959,Gfei own it,1189539210 +220272,2987,Gfei own it,1189545836 +220272,3275,Gfei own it,1189540702 +220272,3300,stranded,1369745070 +220272,3527,Gfei own it,1189607303 +220272,3578,Gfei own it,1189540627 +220272,3623,Gfei own it,1189545819 +220272,3686,Gfei own it,1189607285 +220272,3703,post apocalypse,1189545560 +220272,3793,Gfei own it,1189539395 +220272,3994,want it,1189535155 +220272,4011,Gfei own it,1189539251 +220272,4161,Gfei own it,1189607754 +220272,4226,Gfei own it,1189539933 +220272,4262,Gfei own it,1189539246 +220272,4344,Gfei own it,1189607507 +220272,4638,stranded,1369745070 +220272,4866,Gfei own it,1189607417 +220272,4963,Gfei own it,1189539346 +220272,4993,want it,1189538631 +220272,5010,Gfei own it,1189607328 +220272,5294,want it,1189549228 +220272,5349,want it,1189545932 +220272,5418,want it,1189534737 +220272,5445,want it,1189545534 +220272,5903,Gfei own it,1189539316 +220272,5952,want it,1189538676 +220272,5989,want it,1189546176 +220272,6059,Gfei own it,1189539363 +220272,6333,want it,1189545907 +220272,6365,Gfei own it,1189539400 +220272,6378,Gfei own it,1189546340 +220272,6502,Gfei own it,1189539295 +220272,6539,treasure,1369745018 +220272,6541,Gfei own it,1189606997 +220272,6595,Gfei own it,1189606946 +220272,6659,Gfei own it,1189607091 +220272,6709,Gfei own it,1189606849 +220272,6754,Gfei own it,1189560433 +220272,6874,dark hero,1369745114 +220272,6874,Gfei own it,1189539335 +220272,6934,Gfei own it,1189539405 +220272,7013,noir thriller,1369745053 +220272,7090,Gfei own it,1189540664 +220272,7143,want it,1189545795 +220272,7153,want it,1189538668 +220272,7318,jesus,1369744982 +220272,7438,Gfei own it,1189539339 +220272,7458,Gfei own it,1189606422 +220272,7845,Gfei own it,1189607102 +220272,7846,Gfei own it,1189607095 +220272,8529,stranded,1369745069 +220272,8636,Gfei own it,1189546269 +220272,8644,Gfei own it,1189546067 +220272,8798,Gfei own it,1189546286 +220272,8810,Gfei own it,1189607482 +220272,8835,Gfei own it,1189606698 +220272,8961,Gfei own it,1189540314 +220272,27788,Gfei own it,1189606476 +220272,32029,Gfei own it,1189539325 +220272,32587,want it,1189534108 +220272,32596,Gfei own it,1189606396 +220272,33679,Gfei own it,1189606634 +220272,33794,Gfei own it,1189540330 +220272,34048,Gfei own it,1189861901 +220272,34405,Gfei own it,1189540571 +220272,37382,Gfei own it,1189607433 +220272,41716,Gfei own it,1189606662 +220272,42738,Gfei own it,1189560444 +220272,43928,Gfei own it,1189539459 +220272,44665,want it,1189535017 +220272,45499,Gfei own it,1189546471 +220272,45722,want it,1189546511 +220272,45730,Gfei own it,1189607376 +220272,46972,Gfei own it,1189607844 +220272,48780,Gfei own it,1189539978 +220272,49314,Gfei own it,1189607795 +220272,49530,Gfei own it,1189540460 +220272,50445,Gfei own it,1189539433 +220272,50794,Gfei own it,1189539418 +220272,51255,want it,1189534386 +220272,51575,Gfei own it,1189539427 +220272,51662,Gfei own it,1189539301 +220272,52281,want it,1189534624 +220275,2657,cult film,1163891200 +220294,260,feel-good,1433399192 +220294,260,sci-fi,1433399184 +220295,103221,australian,1423534903 +220295,103221,cancer,1423534903 +220295,103221,indie,1423534903 +220295,107357,drama,1421448238 +220295,107357,jennifer hudson,1421448238 +220295,107357,mental illness,1421448238 +220295,109740,dry humor,1422313292 +220295,109740,pregnancy,1422313311 +220295,109740,quirky humor,1422313324 +220295,109740,romance,1422313276 +220295,109740,stand-up comedy,1422313317 +220295,109740,sweet,1422313305 +220295,111800,"""bitchy""",1422224823 +220295,111800,high school,1422224823 +220295,111800,stereotypes,1422224823 +220295,116859,hallmark channel production,1420159539 +220295,116859,made for tv,1420159539 +220295,116859,romantic,1420159539 +220299,260,classic,1437428234 +220299,260,fun,1437428244 +220306,260,sci-fi,1439483371 +220306,260,space epic,1439483380 +220314,260,action,1439088878 +220314,260,classic sci-fi,1439088848 +220322,260,action,1437758130 +220322,260,legendary,1437758148 +220322,260,sci-fi,1437758099 +220322,260,space action,1437758139 +220322,260,space adventure,1437758122 +220323,260,luke skywalker,1444682598 +220323,260,Outer Space,1444682606 +220331,3147,compassionate,1291402770 +220331,3147,death penalty,1291402747 +220331,3147,great acting,1291402760 +220331,3147,heartwarming,1291402758 +220331,3147,male nudity,1291402740 +220331,3147,nostalgic,1291402756 +220331,3147,prison,1291402752 +220331,3147,sentimental,1291402750 +220331,3147,Stephen King,1291402743 +220331,7147,based on a book,1291402683 +220331,7147,bittersweet,1291402675 +220331,7147,fantasy,1291402663 +220331,7147,imagination,1291402691 +220331,7147,magic,1291402669 +220331,7147,surreal,1291402658 +220331,7147,surrealism,1291402660 +220331,7147,Tim Burton,1291402655 +220331,7147,twist ending,1291402666 +220331,30707,Bittersweet,1291402814 +220331,30707,Clint Eastwood,1291402805 +220331,30707,disability,1291402819 +220331,30707,drama,1291402816 +220331,30707,Oscar Winner,1291402823 +220331,73017,Atmospheric,1263832423 +220331,73017,Based on a book,1263832419 +220331,73017,BORING!,1263840849 +220331,73017,Jude Law,1263832416 +220331,73017,Robert Downey Jr.,1263832410 +220331,73017,Sherlock Holmes,1263832412 +220331,76093,adorable,1289760086 +220331,76093,depth of emotion,1289760084 +220331,76093,dragons,1289760080 +220331,76093,fantasy,1289760082 +220331,76093,heavy with symbolism,1289760102 +220331,76093,i cryed!,1289760105 +220331,76093,I wanted to hug this movie,1289760099 +220331,76093,predictable,1289760075 +220331,76093,toothless,1289760108 +220331,79132,alternate reality,1283082435 +220331,79132,clever,1283082418 +220331,79132,complicated,1283082419 +220331,79132,dreamlike,1283082424 +220331,79132,dreams,1283082422 +220331,79132,Ellen Page,1283082426 +220331,79132,intellectual,1283082437 +220331,79132,Leonardo DiCaprio,1283082432 +220331,79132,long,1283082447 +220331,79132,Michael Caine,1283082430 +220331,79132,mindfuck,1283082408 +220331,79132,multiple interpretations,1283082440 +220331,79132,surreal,1283082412 +220331,79132,visually appealing,1283082411 +220350,6222,psychology,1288566268 +220368,34016,commedia all'italiana,1421866932 +220368,34016,importanza del gruppo,1421866932 +220368,34016,sindrome da peter pan,1421866932 +220368,56651,commedia all'italiana,1433542277 +220368,56651,leggi assurde,1433542277 +220368,56651,onore familiare,1433542277 +220368,114417,anni di piombo,1432503433 +220368,114417,lack of goals,1428966941 +220368,114417,massoneria,1432503433 +220368,114417,middle class,1432503433 +220368,114417,poor ideology,1428967000 +220368,114417,retirement,1428966924 +220368,149234,Men - Women Relationships,1450918568 +220368,149234,Troisi,1450918543 +220368,150194,Checco Zalone,1452117662 +220369,253,author:anne rice,1420570209 +220369,253,journalism,1420570209 +220369,253,vampires,1420570209 +220369,296,drugs,1421368866 +220369,296,non-linear,1421368866 +220369,296,quentin tarantino,1421368866 +220369,356,american history,1422021701 +220369,356,flashbacks,1422021701 +220369,356,running scene,1422021701 +220369,593,cannibalism,1422747799 +220369,593,fbi,1422747799 +220369,593,serial killer,1422747799 +220369,1611,narcolepsy,1420654226 +220369,74754,so bad it's good,1421628030 +220369,120759,bullying,1420646187 +220369,120759,high school,1420646201 +220369,120759,teenager,1420646208 +220369,120775,mystery,1420646239 +220369,120775,night,1420646254 +220369,120775,psychology,1420646243 +220369,120775,romance,1420646251 +220369,120777,polish,1420646227 +220369,120859,lana del rey,1420646100 +220369,120859,short,1420646096 +220369,120861,action,1420646122 +220369,120861,comedy,1420646117 +220369,120861,stunt double,1420646132 +220369,120863,short,1420646109 +220369,120919,action,1420645976 +220369,120919,LGBT,1420645947 +220369,120921,psychology,1420645915 +220369,120921,women,1420645911 +220369,120921,zombie,1420645907 +220369,120930,ghost,1420645882 +220369,120930,horror,1420645845 +220369,120930,oiwa,1420645830 +220369,120930,relationship,1420645864 +220369,120930,theatre,1420645836 +220370,370,Leslie Neilsen,1225300721 +220370,852,Costner,1225300602 +220370,1208,Brando,1225300502 +220370,1962,Morgan Freeman,1225299827 +220370,2268,Cruise,1225299568 +220370,2539,Crystal,1225299171 +220370,2539,DeNiro,1225299171 +220390,34,adventure,1261080262 +220390,299,gay,1260927807 +220390,318,heartwarming,1261079509 +220390,318,inspirational,1261079507 +220390,318,thought-provoking,1261079514 +220390,892,based on a play,1261079394 +220390,892,cross dressing,1261079398 +220390,892,Helena Bonham Carter,1261079388 +220390,892,Shakespeare,1261079386 +220390,1046,gay,1260927190 +220390,1046,Gay Brits,1260927192 +220390,1046,london,1260927196 +220390,1073,surreal,1261080825 +220390,1073,whimsical,1261080827 +220390,1080,British,1261079755 +220390,1080,Monty Python,1261079747 +220390,1080,parody,1261079749 +220390,1080,satirical,1261079752 +220390,1136,british comedy,1261079791 +220390,1136,Monty Python,1261079789 +220390,1136,parody,1261079793 +220390,1136,satire,1261079799 +220390,2622,Shakespeare,1261079828 +220390,2657,campy,1261079531 +220390,2657,cross dressing,1261079534 +220390,2657,homosexuality,1261079536 +220390,2657,musical,1261079539 +220390,2657,Quirky,1261079573 +220390,2657,sexuality,1261079538 +220390,2657,weird,1261079543 +220390,2857,psychedelic,1261079339 +220390,2857,surreal,1261079347 +220390,2857,The Beatles,1261079344 +220390,4642,campy,1261079940 +220390,4642,musical,1261079934 +220390,4642,sexuality,1261079935 +220390,4642,transgender,1261079937 +220390,4993,adventure,1261079868 +220390,4993,fantasy,1261079873 +220390,4993,magic,1261079881 +220390,4995,psychology,1261080006 +220390,4995,schizophrenia,1261080009 +220390,5952,adventure,1261079841 +220390,5952,fantasy,1261079843 +220390,5952,magic,1261079846 +220390,6104,British,1261079771 +220390,6104,Monty Python,1261079772 +220390,6539,adventure,1261079631 +220390,6539,comedy,1261079629 +220390,6539,Johnny Depp,1261079622 +220390,6539,pirates,1261079625 +220390,6807,british comedy,1261079734 +220390,6807,controversial,1261079737 +220390,6807,Monty Python,1261079731 +220390,6807,philosophy,1261079732 +220390,7153,adventure,1261079857 +220390,7153,fantasy,1261079860 +220390,7153,magic,1261079858 +220390,36799,Africa,1261079465 +220390,36799,rebellion,1261079473 +220390,36799,Rwanda,1261079469 +220390,39183,controversial,1260926943 +220390,39183,homosexuality,1260926930 +220390,39183,romance,1260926937 +220390,39183,sexuality,1260926933 +220390,40826,bohemia,1261079577 +220390,40826,broadway,1261079584 +220390,40826,musical,1261079585 +220390,44889,Musical,1261079606 +220390,44889,satire,1261079607 +220390,44889,weed,1261079615 +220390,45722,Adventure,1261079664 +220390,45722,Comedy,1261079666 +220390,45722,Johnny Depp,1261079660 +220390,53125,adventure,1261079698 +220390,53125,comedy,1261079700 +220390,53125,Johnny Depp,1261079696 +220390,54190,1960s,1261080544 +220390,54190,Beatles,1261080547 +220390,54190,musical,1261080554 +220390,55247,Alaska,1261079911 +220390,55247,road trip,1261079900 +220390,55247,self discovery,1261079902 +220390,55247,travel,1261079904 +220390,63876,Emile Hirsch,1260926880 +220390,63876,gay,1260926883 +220390,63876,politics,1260926899 +220390,68073,1960s,1261079715 +220390,68073,British,1261079717 +220390,68157,Quentin Tarantino,1261079922 +220390,70984,1960s,1261079429 +220394,4016,Disney,1433277515 +220394,31685,comedy,1433276900 +220394,31685,Eva Mendes,1433276883 +220394,31685,funny,1433276875 +220394,31685,Will Smith,1433276890 +220394,78499,Pixar,1433276786 +220394,78499,visually appealing,1433276803 +220397,47,Kevin Spacey,1271446713 +220397,47,Morgan Freeman,1271446720 +220397,318,based on book,1271446926 +220397,356,comedy,1271446611 +220397,480,dinosaurs,1279266245 +220397,480,sci-fi,1279266235 +220397,527,based on a true story,1271446985 +220397,527,based on book,1271446982 +220397,527,history,1271446967 +220397,527,true story,1271446976 +220397,628,Edward Norton,1273780041 +220397,2329,amazing photography,1271446657 +220397,2329,violence,1271446672 +220397,4306,comedy,1279266178 +220397,4306,fairy tale,1279266199 +220397,4306,Funny,1279266196 +220397,4306,talking animals,1279266189 +220397,47491,Mads Mikkelsen,1279351559 +220397,47491,Neo-Nazis,1279351572 +220397,58559,Heath Ledger,1271446780 +220404,527,Ben Kingsley,1325517331 +220404,527,Liam Neeson,1325517331 +220404,590,Kevin Costner,1325517282 +220404,89804,George Clooney,1325516791 +220404,89804,Ryan Gosling,1325516799 +220416,66371,Japan,1289940788 +220419,260,great story,1395979198 +220428,2712,amazingness,1425855545 +220428,2712,nudity,1425855545 +220428,2712,shocking scense,1425855545 +220433,260,awesome,1439599662 +220433,260,timeless,1439599650 +220438,260,classic,1434375004 +220438,260,classic sci-fi,1434375014 +220440,253,My DVDs,1195244375 +220440,1197,own,1195244390 +220440,1197,pirates (minor),1195244382 +220448,109487,Anne Hathaway,1453424496 +220448,109487,Christopher Nolan,1453424510 +220448,109487,Matthew McConaughey,1453424447 +220456,260,classic sci-fi,1440100459 +220456,260,sci-fi,1440100454 +220466,260,scifi,1427470029 +220466,260,space,1427470029 +220466,260,the force,1427470029 +220493,6,setting:LA,1217734139 +220493,6,who cares DVDs,1217734091 +220493,10,Sean Bean dies,1141882988 +220493,14,cinematographer:Robert Richardson,1225758089 +220493,16,cinematographer:Robert Richardson,1225758850 +220493,86,white squall,1199159455 +220493,111,cameo:Martin Scorsese,1225757340 +220493,111,cinematographer:Michael Chapman,1223828849 +220493,111,setting:NYC,1223828849 +220493,175,New York City,1137968302 +220493,224,Nudity (Rear),1179976188 +220493,288,cinematographer:Robert Richardson,1225758280 +220493,353,cinematographer:Dariusz Wolski,1225946575 +220493,421,Sean Bean lives,1142127755 +220493,426,cinematographer:Bojan Bazelli,1293416237 +220493,464,setting:New Orleans,1225149153 +220493,465,cinematographer:Robert Richardson,1225758148 +220493,507,road movie,1137968321 +220493,541,cinematographer:Jordan Cronenweth,1206492854 +220493,541,who cares DVDs,1199160580 +220493,593,cinematographer:Tak Fujimoto,1323486317 +220493,858,cinematographer:Gordon Willis,1204998168 +220493,906,Joseph Ruttenberg,1137968135 +220493,924,cinematographer:Geoffrey Unsworth,1224431611 +220493,930,Miami,1188614580 +220493,1042,cinematographer:Tak Fujimoto,1323486400 +220493,1090,cameo:Oliver Stone,1225758771 +220493,1090,cinematographer:Robert Richardson,1225758359 +220493,1206,cinematographer:John Alcott,1224430631 +220493,1208,cinematographer:Vittorio Storaro,1268783645 +220493,1214,alien,1199159528 +220493,1221,cinematographer:Gordon Willis,1204998163 +220493,1228,cinematographer:Michael Chapman,1223828916 +220493,1237,cinematographer:Gunnar Fischer,1206493758 +220493,1244,cinematographer:Gordon Willis,1204998101 +220493,1258,cinematographer:John Alcott,1224432295 +220493,1263,cinematographer:Vilmos Zsigmond,1204997961 +220493,1285,ADOLESCENCE IS HELL,1217734352 +220493,1327,creepy singing,1197418842 +220493,1329,cinematographer:Luigi Kuveiller,1323486815 +220493,1331,cinematographer:Victor J. Kemper,1221759227 +220493,1333,creepy singing,1197418955 +220493,1346,setting:New Orleans,1223131452 +220493,1496,Sean Bean lives,1142127696 +220493,1625,cinematographer:Harris Savides,1225759742 +220493,1673,who cares DVDs,1217731399 +220493,1682,Capra-esque,1174262810 +220493,1690,who cares DVDs,1214536291 +220493,1713,cinematographer:Phedon Papamichael,1225946123 +220493,1748,cinematographer:Dariusz Wolski,1225946708 +220493,1748,Jennifer Connelly is a fox,1158409726 +220493,1785,cinematographer:Bojan Bazelli,1206492929 +220493,1924,who cares DVDs,1203782629 +220493,1998,who cares DVDs,1236982568 +220493,1999,who cares DVDs,1236982585 +220493,2013,Shelley Winters dies,1142919973 +220493,2023,cinematographer:Gordon Willis,1204998182 +220493,2094,Jennifer Connelly is a fox,1158409475 +220493,2117,cinematographer:Roger Deakins,1204998050 +220493,2138,violent,1243615658 +220493,2273,Eric's Dvds,1148954476 +220493,2278,Sean Bean lives,1142126911 +220493,2384,cinematographer:Andrew Lesnie,1271181536 +220493,2448,Makes you ill,1148134648 +220493,2448,weak comic book adaptation,1148134672 +220493,2459,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1180150182 +220493,2459,gothic,1180150174 +220493,2474,cameo:Iggy Pop,1225757243 +220493,2511,cinematographer:Vilmos Zsigmond,1204997965 +220493,2517,ADOLESCENCE IS HELL,1217734421 +220493,2551,weirdest episode of Frasier ever,1169031975 +220493,2616,cinematographer:Vittorio Storaro,1268783617 +220493,2640,cinematographer:Geoffrey Unsworth,1224431244 +220493,2640,setting:NYC,1217733681 +220493,2641,cinematographer:Geoffrey Unsworth,1224431491 +220493,2730,cinematographer:John Alcott,1224429526 +220493,2761,sufficiently explodey to be good,1187920483 +220493,2762,cinematographer:Tak Fujimoto,1323486434 +220493,2853,setting:New Jersey,1217733887 +220493,2925,cinematographer:Vittorio Storaro,1268783669 +220493,2956,someone to watch over me,1199159454 +220493,2956,who cares DVDs,1199158774 +220493,2959,cinematographer:Jeff Cronenweth,1206493316 +220493,2976,cinematographer:Robert Richardson,1225759048 +220493,3200,cinematographer:Michael Chapman,1223828521 +220493,3256,Sean Bean dies,1142127640 +220493,3362,cinematographer:Victor J. Kemper,1221759247 +220493,3384,New York City,1158286571 +220493,3386,Capra-esque,1174262928 +220493,3386,cinematographer:Robert Richardson,1225757865 +220493,3418,who cares DVDs,1199158833 +220493,3445,cinematographer:Victor J. Kemper,1221759275 +220493,3545,cinematographer:Geoffrey Unsworth,1224431660 +220493,3546,who cares DVDs,1200727913 +220493,3578,gladiator,1199159519 +220493,3706,setting:New Orleans,1217733821 +220493,3706,who cares DVDs,1217733821 +220493,3720,easily confused with other movie(s) (title),1252975494 +220493,3735,New York City,1159750541 +220493,3738,cinematographer:Vilmos Zsigmond,1204997974 +220493,3741,cinematographer:Tak Fujimoto,1323486254 +220493,3837,Nudity (Topless),1183310954 +220493,3840,cinematographer:Bojan Bazelli,1206492941 +220493,3949,Jennifer Connelly is a fox,1158409711 +220493,4007,cameo:Oliver Stone,1225758457 +220493,4007,cinematographer:Robert Richardson,1225758321 +220493,4009,cinematographer:Robert Richardson,1225757824 +220493,4128,cinematographer:Michael Chapman,1223828189 +220493,4235,cinematographer:Rodrigo Prieto,1226879873 +220493,4378,who cares DVDs,1213410358 +220493,4407,cinematographer:Robert Richardson,1225758386 +220493,4426,who cares DVDs,1200728004 +220493,4515,New York City,1159750110 +220493,4547,Sean Bean lives,1142127802 +220493,4713,cinematographer:Jordan Cronenweth,1206493059 +220493,4814,Sean Bean dies,1142127663 +220493,4855,setting:San Francisco,1217734506 +220493,4881,cinematographer:Roger Deakins,1204998042 +220493,4993,Sean Bean dies,1141883131 +220493,4995,Jennifer Connelly is a fox,1158409733 +220493,5010,who cares DVDs,1199159079 +220493,5017,who cares DVDs,1217734328 +220493,5147,cinematographer:Gunnar Fischer,1206493816 +220493,5174,Sean Bean dies,1142127787 +220493,5349,New York City,1159750822 +220493,5528,cinematographer:Jeff Cronenweth,1206493441 +220493,5705,cinematographer:Victor J. Kemper,1221759314 +220493,5954,cinematographer:Rodrigo Prieto,1244156568 +220493,5956,cameo:Martin Scorsese,1225757372 +220493,5965,who cares DVDs,1199158544 +220493,6132,cinematographer:Luigi Kuveiller,1323486791 +220493,6281,phone booth,1199160234 +220493,6373,Capra-esque,1174262301 +220493,6539,cinematographer:Dariusz Wolski,1225946531 +220493,6615,As violent and retarded as Jason himself,1215061240 +220493,6874,cinematographer:Robert Richardson,1268783238 +220493,6880,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1180150190 +220493,6890,cinematographer:Harris Savides,1225759575 +220493,6949,Sean Bean lives,1142127769 +220493,6953,cinematographer:Rodrigo Prieto,1226879827 +220493,6991,cinematographer:John Alcott,1224430912 +220493,6993,who cares DVDs,1203783086 +220493,7044,Nudity (Topless - Notable),1180882732 +220493,7063,Betamax,1203783016 +220493,7115,cinematographer:Luigi Kuveiller,1323486860 +220493,7147,FANTASY LIFE,1198349253 +220493,7153,Sean Bean dies,1142127620 +220493,7386,vista vision,1140304651 +220493,7438,cinematographer:Robert Richardson,1268783247 +220493,7458,Sean Bean lives,1142127575 +220493,7792,cinematographer:Gordon Willis,1204998174 +220493,8405,who cares DVDs,1203783121 +220493,8491,who cares DVDs,1217734271 +220493,8636,New York City,1159750824 +220493,8783,who cares DVDs,1214536208 +220493,8807,Notable Nudity,1158409198 +220493,8810,who cares DVDs,1214535852 +220493,8815,cinematographer:Vittorio Storaro,1268783536 +220493,8879,cinematographer:Geoffrey Unsworth,1224431708 +220493,8906,cannibals,1180149935 +220493,8906,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1180149956 +220493,8972,Sean Bean lives,1142127721 +220493,8977,cinematographer:Rodrigo Prieto,1226879672 +220493,26320,cinematographer:Luigi Kuveiller,1323486897 +220493,27721,Notable Nudity,1156852706 +220493,30812,cinematographer:Robert Richardson,1225757901 +220493,30812,More mature Leo Decaprio,1187920547 +220493,31685,New York City,1159750783 +220493,33162,kingdom of heaven,1199159452 +220493,33162,who cares DVDs,1199158474 +220493,33644,cinematographer:Vittorio Storaro,1268783578 +220493,33679,cinematographer:Bojan Bazelli,1206492954 +220493,34319,Sean Bean dies,1141882904 +220493,34319,sufficiently explodey to be good,1197419412 +220493,37727,Sean Bean lives,1142127681 +220493,39183,cinematographer:Rodrigo Prieto,1226879779 +220493,40614,Clive Owen,1153878629 +220493,40819,cinematographer:Phedon Papamichael,1225946017 +220493,41569,cinematographer:Andrew Lesnie,1271181562 +220493,44731,setting:New Orleans,1217733719 +220493,45722,cinematographer:Dariusz Wolski,1225946533 +220493,48142,cinematographer:Vilmos Zsigmond,1204997980 +220493,48385,Nudity (Full Frontal - Notable),1183710558 +220493,49130,a good year,1199159453 +220493,50445,Sean Bean dies,1215020553 +220493,51540,cinematographer:Harris Savides,1225759798 +220493,51662,atmospheric,1175207628 +220493,51662,homoerotic,1175207631 +220493,52281,zombies,1175985182 +220493,53125,cinematographer:Dariusz Wolski,1225946534 +220493,53996,sufficiently explodey to be good,1184893225 +220493,54785,cinematographer:Phil Parmet,1221536907 +220493,54997,cinematographer:Phedon Papamichael,1225945925 +220493,55765,cinematographer:Harris Savides,1225759831 +220493,55820,cinematographer:Roger Deakins,1204998035 +220493,56757,cinematographer:Dariusz Wolski,1225946643 +220493,56757,Depp & Burton,1199157876 +220493,57368,New York City,1201564069 +220493,57640,adapted from:comic,1215992181 +220493,57640,set:mechanical gearworks,1215992177 +220493,57640,setting:NYC,1215992187 +220493,58559,setting:Chicago,1217733621 +220493,58559,sufficiently explodey to be good,1217733592 +220493,60295,sounds painful,1233508501 +220493,61024,bromantic,1224429091 +220493,62437,cinematographer:Phedon Papamichael,1225945806 +220493,63876,cinematographer:Harris Savides,1264289506 +220493,69526,sufficiently explodey to be good,1246274272 +220493,72731,cinematographer:Andrew Lesnie,1271181600 +220493,74458,cinematographer:Robert Richardson,1268783199 +220493,74789,cinematographer:Dariusz Wolski,1268782996 +220498,260,jedi,1431047829 +220498,260,Science Fiction,1431047783 +220498,260,space,1431047843 +220498,260,space western,1431047818 +220498,117533,computers,1431069989 +220498,117533,nsa,1431069995 +220498,117533,security,1431070001 +220498,117533,spying,1431070003 +220517,19,comedy,1248037180 +220517,34,adventure,1248037072 +220517,34,talking animals,1248037069 +220517,199,musical,1248068651 +220517,199,notable soundtrack,1248068653 +220517,215,conversation,1248065545 +220517,215,reflective,1248040086 +220517,215,Vienna,1248040083 +220517,215,witty,1248065542 +220517,337,Johnny Depp,1248034991 +220517,345,Australia,1248037448 +220517,345,musical,1248037443 +220517,345,road trip,1248037445 +220517,362,Jude Law,1248039087 +220517,366,freddy krueger,1248067104 +220517,370,Comedy,1248035546 +220517,370,parody,1248035543 +220517,441,drugs,1248039008 +220517,501,violence,1248068088 +220517,509,atmospheric,1248034851 +220517,509,Oscar (Best Actress),1248034860 +220517,509,Oscar (Best Supporting Actress),1248034854 +220517,531,England,1248039150 +220517,531,fairy tale,1248039149 +220517,531,magic,1248039146 +220517,788,alter ego,1248037214 +220517,798,suspense,1248066472 +220517,891,slasher,1248067851 +220517,920,classic,1248035269 +220517,920,Oscar (Best Picture),1248035267 +220517,920,Romance,1248035264 +220517,968,disturbing,1248039125 +220517,968,zombies,1248039128 +220517,1028,classic,1248035878 +220517,1035,classic,1248035760 +220517,1035,Oscar (Best Picture),1248035758 +220517,1059,action,1248037731 +220517,1059,romance,1248037733 +220517,1079,dark comedy,1248034712 +220517,1093,drugs,1248039110 +220517,1219,classic,1248034929 +220517,1219,psychology,1248034925 +220517,1219,serial killer,1248034921 +220517,1235,classic,1248039094 +220517,1235,dark comedy,1248039091 +220517,1246,philosophy,1248034788 +220517,1261,zombies,1248039298 +220517,1321,zombies,1248039322 +220517,1327,haunted house,1248066819 +220517,1342,Horror,1248066428 +220517,1347,horror,1248039343 +220517,1347,slasher,1248039340 +220517,1354,disturbing,1248066002 +220517,1372,Star Trek,1248037419 +220517,1373,Star Trek,1248039163 +220517,1375,Star Trek,1248037606 +220517,1387,classic,1248037187 +220517,1388,animal attacks,1248065590 +220517,1393,comedy,1248037149 +220517,1407,slasher,1248035098 +220517,1485,comedy,1248035049 +220517,1485,jim carrey,1248035052 +220517,1517,James Bond,1248037153 +220517,1517,parody,1248037155 +220517,1625,psychological,1248035611 +220517,1625,twist ending,1248035608 +220517,1641,England,1248035293 +220517,1641,funny,1248035290 +220517,1644,Ryan Phillippe,1248039315 +220517,1665,funny,1248066610 +220517,1682,dark comedy,1248037192 +220517,1682,fantasy,1248037195 +220517,1717,serial killer,1248039680 +220517,1717,slasher,1248064760 +220517,1722,007,1248036063 +220517,1722,james bond,1248036060 +220517,1777,Adam Sandler,1248035851 +220517,1882,monster,1248039269 +220517,1907,animation,1248039369 +220517,1907,musical,1248039367 +220517,1923,comedy,1248037105 +220517,1924,aliens,1248067599 +220517,1924,zombie,1248067595 +220517,1959,Oscar (Best Cinematography),1248065348 +220517,1959,Oscar (Best Picture),1248065343 +220517,1959,romance,1248065346 +220517,1970,slasher,1248067587 +220517,1974,serial killer,1248066062 +220517,1974,slasher,1248066065 +220517,1976,slasher,1248068887 +220517,1982,horror,1248064998 +220517,1982,serial killer,1248064993 +220517,1982,slasher,1248064995 +220517,2006,Mexico,1248035836 +220517,2011,classic,1248034884 +220517,2011,comedy,1248034881 +220517,2011,time travel,1248034879 +220517,2012,alternate reality,1248037220 +220517,2054,adventure,1248035129 +220517,2054,comedy,1248035133 +220517,2054,fantasy,1248035131 +220517,2081,animation,1248035693 +220517,2081,talking animals,1248035688 +220517,2125,comedy,1248065171 +220517,2125,fairy tale,1248065169 +220517,2125,romance,1248065173 +220517,2279,teen horror,1248067212 +220517,2288,aliens,1248039029 +220517,2316,magic,1248067391 +220517,2316,Nicole Kidman,1248067388 +220517,2321,satire,1248035716 +220517,2321,stylized,1248037318 +220517,2321,surreal,1248035714 +220517,2363,giant monster,1248067397 +220517,2384,animation,1248065283 +220517,2384,comedy,1248065281 +220517,2384,talking animals,1248065279 +220517,2396,Oscar (Best Actress),1248037087 +220517,2396,Oscar (Best Picture),1248037094 +220517,2396,romance,1248037091 +220517,2420,classic,1248038532 +220517,2424,comedy,1248037561 +220517,2424,romance,1248037564 +220517,2459,cannibalism,1248067040 +220517,2459,disturbing,1248067037 +220517,2470,adventure,1248036025 +220517,2470,Australia,1248036027 +220517,2470,New York City,1248036030 +220517,2471,Australia,1248065306 +220517,2471,New York City,1248065304 +220517,2554,evil children,1248119580 +220517,2581,chick flick,1248039386 +220517,2581,Romance,1248039383 +220517,2617,archaeology,1248035239 +220517,2617,music,1248035231 +220517,2617,treasure hunt,1248035242 +220517,2639,Golden Raspberry (Worst Actress),1248069004 +220517,2639,Golden Raspberry (Worst Picture),1248069001 +220517,2654,werewolf,1248119429 +220517,2671,British,1248036044 +220517,2671,Julia Roberts,1248036042 +220517,2671,romance,1248036047 +220517,2683,James Bond,1248037099 +220517,2683,parody,1248037102 +220517,2717,comedy,1248039099 +220517,2717,fantasy,1248039097 +220517,2717,Ghosts,1248039102 +220517,2722,Renny Harlin,1248064596 +220517,2724,Romance,1248038304 +220517,2908,disturbing,1248039060 +220517,2908,Oscar (Best Actress),1248039063 +220517,2908,true story,1248039077 +220517,2947,action,1248037588 +220517,2947,adventure,1248037583 +220517,2947,james bond,1248037585 +220517,2948,007,1248064746 +220517,2948,james bond,1248064742 +220517,2949,007,1248039593 +220517,2949,james bond,1248039591 +220517,2987,adventure,1248037162 +220517,2987,animation,1248037165 +220517,2987,Oscar (Best Effects - Visual Effects),1248037168 +220517,2989,007,1248065946 +220517,2989,espionage,1248065945 +220517,2989,James Bond,1248065942 +220517,2995,ghosts,1248066798 +220517,3082,007,1248038126 +220517,3082,James Bond,1248038124 +220517,3160,drugs,1248037531 +220517,3160,multiple storylines,1248037527 +220517,3176,disturbing,1248037337 +220517,3176,serial killer,1248035784 +220517,3186,based on a true story,1248065748 +220517,3186,psychology,1248065751 +220517,3252,Oscar (Best Actor),1248039549 +220517,3257,Action,1248065032 +220517,3257,romance,1248065035 +220517,3273,slasher,1248065018 +220517,3285,drugs,1248065397 +220517,3317,Oscar (Best Music - Original Song),1248064781 +220517,3418,Action,1248035989 +220517,3418,Brad Pitt,1248035994 +220517,3418,road trip,1248035992 +220517,3429,claymation,1248067483 +220517,3535,serial killer,1248039226 +220517,3623,action,1248035214 +220517,3623,adventure,1248035209 +220517,3623,espionage,1248035212 +220517,3825,comedy,1248066189 +220517,3825,music,1248066186 +220517,3948,comedy,1248035628 +220517,3996,Oscar (Best Cinematography),1248037112 +220517,4014,Johnny Depp,1248037886 +220517,4014,magic,1248037883 +220517,4027,Coen Brothers,1248035167 +220517,4027,comedy,1248035164 +220517,4128,horror,1248065331 +220517,4226,nonlinear,1248037145 +220517,4226,psychology,1248037140 +220517,4226,twist ending,1248037143 +220517,4246,comedy,1248037508 +220517,4246,romance,1248037511 +220517,4308,musical,1248037658 +220517,4308,stylized,1248037661 +220517,4310,World War II,1248039185 +220517,4447,chick flick,1248038568 +220517,4447,comedy,1248038554 +220517,4447,friendship,1248038565 +220517,4533,zombies,1248119042 +220517,4621,fantasy,1248066481 +220517,4720,ghosts,1248038021 +220517,4741,friendship,1248119386 +220517,4741,politics,1248119383 +220517,4963,heist,1248034830 +220517,4973,comedy,1248035066 +220517,4973,fairy tale,1248035063 +220517,4973,romance,1248035068 +220517,4992,New York City,1248067227 +220517,4992,Romance,1248067231 +220517,4992,time travel,1248067228 +220517,4995,Oscar (Best Picture),1248035022 +220517,4995,psychology,1248035019 +220517,4995,romance,1248035024 +220517,5218,animation,1248037859 +220517,5218,talking animals,1248037857 +220517,5219,zombies,1248066015 +220517,5308,comedy,1248066789 +220517,5349,superhero,1248034768 +220517,5378,Classic,1248035659 +220517,5378,fantasy,1248035657 +220517,5378,space,1248035661 +220517,5669,documentary,1248037642 +220517,5669,politics,1248037639 +220517,5679,disturbing,1248038028 +220517,5679,zombies,1248038032 +220517,5989,comedy,1248035819 +220517,5992,mental illness,1248066200 +220517,5992,nonlinear,1248066202 +220517,5992,Oscar (Best Actress),1248066197 +220517,6197,disturbing,1248119205 +220517,6263,war,1248119318 +220517,6373,classic,1248064658 +220517,6373,comedy,1248064656 +220517,6373,fantasy,1248064654 +220517,6503,private detective,1248066157 +220517,6535,politics,1248068245 +220517,6539,adventure,1248034733 +220517,6539,comedy,1248034737 +220517,6539,Johnny Depp,1248034742 +220517,6615,slasher,1248068991 +220517,6711,atmospheric,1248035939 +220517,6711,Japan,1248035947 +220517,6873,black comedy,1248067790 +220517,6873,coen bros,1248067793 +220517,6942,british,1248040169 +220517,6942,multiple storylines,1248040161 +220517,6942,Romance,1248040165 +220517,7153,fantasy,1248037125 +220517,7153,Oscar (Best Picture),1248037129 +220517,7293,Adam Sandler,1248065850 +220517,7293,Comedy,1248065848 +220517,7293,Romance,1248065846 +220517,7360,zombies,1248066554 +220517,7387,disturbing,1248067758 +220517,7387,zombies,1248067760 +220517,7569,007,1248068150 +220517,7569,james bond,1248068148 +220517,7570,007,1248069141 +220517,7570,James Bond,1248069139 +220517,8360,animation,1248037413 +220517,8360,fairy tale,1248037411 +220517,8360,parody,1248037409 +220517,8361,adventure,1248065691 +220517,8373,Nicole Kidman,1248068614 +220517,8464,documentary,1248039505 +220517,8533,great ending,1248067540 +220517,8636,superhero,1248035964 +220517,8638,Paris,1248067447 +220517,8638,romance,1248067449 +220517,8641,animation,1248066312 +220517,8641,Steve Carell,1248066315 +220517,8810,monster,1248067115 +220517,8873,adventure,1248066702 +220517,8873,true story,1248066704 +220517,8874,zombies,1248039195 +220517,8949,dark comedy,1248064882 +220517,8949,road trip,1248064884 +220517,8957,Disturbing,1248065911 +220517,8957,serial killer,1248065909 +220517,8981,disturbing,1248066730 +220517,27611,sci-fi,1248038928 +220517,30707,Oscar (Best Actress),1248064803 +220517,30707,Oscar (Best Picture),1248064806 +220517,33493,fantasy,1248037760 +220517,33493,twist ending,1248037764 +220517,33880,bittersweet,1248119552 +220517,33880,independent film,1248119556 +220517,34072,documentary,1248040137 +220517,34072,penguins,1248040139 +220517,34437,Atmospheric,1248067902 +220517,34437,comedy,1248067899 +220517,35836,classic,1248064850 +220517,35836,comedy,1248064845 +220517,35836,romance,1248064847 +220517,39183,Oscar (Best Picture),1248065817 +220517,39183,romance,1248065820 +220517,39292,journalism,1248066677 +220517,39292,politics,1248066679 +220517,41566,adventure,1248065254 +220517,41566,fantasy,1248065252 +220517,44195,dark comedy,1248065488 +220517,44195,satire,1248065491 +220517,45186,espionage,1248067577 +220517,45447,adventure,1248066118 +220517,45720,fashion,1248067814 +220517,45720,new york city,1248067817 +220517,46578,comedy,1248039407 +220517,46578,dark comedy,1248039404 +220517,46578,twist ending,1248039409 +220517,47610,magic,1248066280 +220517,47610,romance,1248066284 +220517,47610,twist ending,1248066282 +220517,47999,documentary,1248119692 +220517,47999,politics,1248119690 +220517,47999,religion,1248119688 +220517,49272,007,1248038522 +220517,49272,action,1248038519 +220517,49272,James Bond,1248038518 +220517,50872,animation,1248065786 +220517,51540,serial killer,1248067661 +220517,56367,comedy,1248065234 +220517,58559,Batman,1248039240 +220517,59784,animation,1248040197 +220517,59784,comedy,1248040199 +220517,60126,espionage,1248119117 +220517,60126,parody,1248119115 +220517,63082,Oscar (Best Picture),1248067309 +220517,63082,romance,1248067311 +220517,68358,sci-fi,1248038924 +220550,106100,jared leto,1435103619 +220550,106100,matthew mcconaughey,1435103619 +220550,106100,method acting,1435103619 +220552,318,based on real events,1436392616 +220552,318,morgan freeman,1436392616 +220552,318,realism,1436392616 +220552,527,historical,1437863413 +220552,527,masterpiece,1437863413 +220552,527,real,1437863413 +220552,1036,action,1436391903 +220552,1036,Bruce Willis,1436391901 +220552,1036,good action,1436391948 +220552,1036,humorous,1436391905 +220552,1036,lone hero,1436391909 +220552,1036,old school,1436391982 +220552,1036,thriller,1436391942 +220552,2571,appocalypse,1437156482 +220552,2571,human vs machines,1437156482 +220552,2571,keanu reeves,1437156482 +220552,2571,superpowers,1437156482 +220552,5903,Christian Bale,1436448710 +220552,5903,cinematography,1436448718 +220552,5903,totalitarianism,1436448724 +220552,8957,clever,1436393995 +220552,8957,gore,1436394002 +220552,8957,mindfuck,1436393999 +220552,8957,serial killer,1436393991 +220552,8957,surprise ending,1436393993 +220552,8957,twist ending,1436393988 +220552,44555,drama,1436394418 +220552,44555,spying,1436394411 +220552,48516,Leonardo DiCaprio,1436392965 +220552,48516,Matt Damon,1436392974 +220552,48516,twist ending,1436392987 +220552,58559,action,1436392107 +220552,58559,Atmospheric,1436392100 +220552,58559,based on a comic,1436392161 +220552,58559,Batman,1436392092 +220552,58559,Christian Bale,1436392097 +220552,58559,Christopher Nolan,1436392130 +220552,58559,comic book,1436392134 +220552,58559,Comic Book adaption,1436392177 +220552,58559,dark,1436392102 +220552,58559,DC Comics,1436392149 +220552,58559,Gary Oldman,1436392144 +220552,58559,Heath Ledger,1436392091 +220552,58559,Joker,1436392147 +220552,58559,Michael Caine,1436392127 +220552,58559,Morgan Freeman,1436392105 +220552,58559,music,1436392170 +220552,58559,Oscar (Best Supporting Actor),1436392157 +220552,58559,psychology,1436392113 +220552,58559,serial killer,1436392173 +220552,58559,stylized,1436392153 +220552,58559,superhero,1436392094 +220552,58559,thriller,1436392136 +220552,58559,vigilante,1436392118 +220552,58559,violence,1436392133 +220552,58559,violent,1436392168 +220552,69122,absurd,1436393395 +220552,69122,Bradley Cooper,1436393435 +220552,69122,comedy,1436393371 +220552,69122,funny,1436393396 +220552,81845,based on a true story,1436392916 +220552,81845,Colin Firth,1436392929 +220552,81845,historical,1436392926 +220552,81845,Oscar (Best Picture),1436392921 +220552,84152,Bradley Cooper,1436393497 +220552,84152,concept,1436393509 +220552,84152,entertaining,1436393502 +220552,84152,human potential,1436393506 +220552,84152,Robert De Niro,1436393513 +220552,84152,smart,1436393498 +220552,84152,visually appealing,1436393495 +220552,103253,Matt Damon,1436448766 +220552,107406,chris evans,1436448826 +220552,107406,illogical,1436448833 +220552,107406,post-apocalyptic,1436448823 +220552,109487,Anne Hathaway,1436391629 +220552,109487,artificial intelligence,1436391610 +220552,109487,Christopher Nolan,1436391560 +220552,109487,good science,1436391600 +220552,109487,Hans Zimmer,1436391665 +220552,109487,Matthew McConaughey,1436391594 +220552,109487,philosophical issues,1436391615 +220552,109487,physics,1436391603 +220552,109487,relativity,1436391585 +220552,109487,sci-fi,1436391587 +220552,109487,sentimental,1436391642 +220552,109487,sounds,1436391652 +220552,109487,space,1436391565 +220552,109487,thought-provoking,1436391579 +220552,109487,time travel,1436391631 +220552,109487,time-travel,1436391568 +220552,109487,wormhole,1436391597 +220552,115617,Animation,1436392300 +220552,115617,Disney,1436392296 +220552,115617,friendship,1436392302 +220552,115617,funny,1436392306 +220552,115617,inspiring,1436392311 +220552,115617,pixar,1436392327 +220552,115617,robotics,1436392304 +220552,115617,superhero,1436392292 +220552,116136,drama,1436394337 +220552,116136,made for TV,1436394343 +220552,116136,mini-series,1436394314 +220552,116797,Alan Turing,1436563424 +220552,116797,Benedict Cumberbatch,1436563431 +220552,116797,code breaking,1436563434 +220552,116797,Computers,1436563432 +220552,116797,cryptography,1436563422 +220552,116797,genius,1436563440 +220552,116797,history,1436563437 +220552,116797,informatics,1436563442 +220568,260,epic adventure,1430771385 +220568,260,fantastic,1430771361 +220570,296,cult,1431639016 +220570,296,good dialogue,1431639016 +220570,296,violence,1431639016 +220570,2041,super hero,1287853639 +220570,4878,psychology,1264463486 +220570,4878,surreal,1264463489 +220570,6796,Lawrence Fishburne,1287848455 +220570,7306,mexican,1287847676 +220570,41566,fantasy,1287791356 +220570,41566,overrated,1287791359 +220570,62374,slow paced,1287852649 +220570,72701,animated,1287847893 +220570,79695,Jason Statham,1284527970 +220570,82202,slow paced,1295976138 +220584,231,comedy,1251403992 +220584,231,Jim Carrey,1251403997 +220584,231,road trip,1251404000 +220584,69606,Matthew McConaughey,1251404465 +220585,480,dinosaurs,1163947758 +220595,1,Pixar,1152718511 +220595,10,007,1152540548 +220595,10,Bond,1152540546 +220595,110,Mel Gibson,1152541547 +220595,150,space,1152540730 +220595,150,Tom Hanks,1152718461 +220595,150,true story,1152540732 +220595,160,Michael Crichton,1152717915 +220595,165,Bruce Willis,1152541611 +220595,168,Sean Connery,1152567009 +220595,180,Kevin Smith,1152543443 +220595,185,Sandra Bullock,1152541758 +220595,223,Kevin Smith,1152541844 +220595,225,Michael Crichton,1152718132 +220595,260,Harrison Ford,1152543516 +220595,318,prison,1152540632 +220595,318,Stephen King,1152540635 +220595,329,Star Trek,1152541666 +220595,329,Whoopi Goldberg,1152653145 +220595,344,Jim Carrey,1152541597 +220595,349,Harrison Ford,1152732596 +220595,356,Tom Hanks,1152541513 +220595,364,Disney,1152541643 +220595,364,Whoopi Goldberg,1152653174 +220595,380,Arnold Schwarzenegger,1152541542 +220595,457,Harrison Ford,1152719365 +220595,474,Clint Eastwood,1152540905 +220595,480,dinosaurs,1152541507 +220595,480,Michael Crichton,1152718114 +220595,480,Steven Spielberg,1152541509 +220595,489,Whoopi Goldberg,1152653233 +220595,500,Robin Williams,1152543112 +220595,527,Steven Spielberg,1152542136 +220595,527,WWII,1152719799 +220595,539,Tom Hanks,1152541697 +220595,587,seen more than once,1152719565 +220595,587,Whoopi Goldberg,1152653073 +220595,588,Disney,1152541568 +220595,588,Robin Williams,1152543121 +220595,595,Disney,1152541616 +220595,597,Julia Roberts,1152541659 +220595,597,seen more than once,1152719443 +220595,648,Tom Cruise,1152541590 +220595,653,Sean Connery,1152567368 +220595,765,Robin Williams,1152543142 +220595,788,Eddie Murphy,1152718718 +220595,912,WWII,1152719812 +220595,914,classic,1152718708 +220595,919,classic,1152541850 +220595,924,classic,1152541889 +220595,924,Stanley Kubrick,1152541891 +220595,1035,classic,1152652845 +220595,1036,Bruce Willis,1152540833 +220595,1073,classic,1152541719 +220595,1073,seen more than once,1152719521 +220595,1079,John Cleese,1152718627 +220595,1080,John Cleese,1152719268 +220595,1097,Steven Spielberg,1152541681 +220595,1125,Peter Sellers,1152565997 +220595,1125,seen more than once,1152719458 +220595,1135,Goldie Hawn,1152719683 +220595,1136,John Cleese,1152719283 +220595,1193,Jack Nicholson,1152719300 +220595,1197,seen more than once,1152719588 +220595,1198,indiana jones,1152541630 +220595,1198,seen more than once,1152719447 +220595,1206,Stanley Kubrick,1152542005 +220595,1210,George Lucas,1152732677 +220595,1210,Harrison Ford,1152732673 +220595,1219,don't want to see,1152732903 +220595,1220,classic,1152540529 +220595,1220,John Belushi,1152540521 +220595,1246,Robin Williams,1152543094 +220595,1247,Dustin Hoffman,1152733497 +220595,1250,WWII,1152719190 +220595,1275,Sean Connery,1152734550 +220595,1291,Sean Connery,1152567001 +220595,1307,seen more than once,1152719512 +220595,1345,don't want to see,1152803827 +220595,1350,don't want to see,1152733404 +220595,1356,Patrick Stewart,1152540822 +220595,1356,Whoopi Goldberg,1152653131 +220595,1370,Bruce Willis,1152652396 +220595,1380,classic,1152652798 +220595,1387,classic,1152540995 +220595,1416,Antonio Banderas,1152717880 +220595,1544,seen more than once,1152719410 +220595,1544,Steven Spielberg,1152543392 +220595,1556,Sandra Bullock,1152733901 +220595,1580,Will Smith,1152541736 +220595,1608,Harrison Ford,1152543525 +220595,1639,Kevin Smith,1152803616 +220595,1641,seen more than once,1152719560 +220595,1676,Heinlein,1152542936 +220595,1704,Robin Williams,1152541860 +220595,1722,007,1152718983 +220595,1722,Bond,1152718985 +220595,1779,Michael Crichton,1152718140 +220595,1784,Jack Nicholson,1152567085 +220595,1918,Mel Gibson,1152543260 +220595,1947,classic,1152652858 +220595,1955,Dustin Hoffman,1152804186 +220595,1959,Meryl Streep,1152719117 +220595,1959,Robert Redford,1152719115 +220595,1961,Dustin Hoffman,1152541827 +220595,1961,Tom Cruise,1152541826 +220595,1967,David Bowie,1152566117 +220595,1967,muppets,1152566919 +220595,1967,seen more than once,1152566130 +220595,1982,don't want to see,1152803803 +220595,1994,don't want to see,1152803631 +220595,1997,don't want to see,1152803605 +220595,2000,Mel Gibson,1152543215 +220595,2000,seen more than once,1152719403 +220595,2001,Mel Gibson,1152543213 +220595,2001,seen more than once,1152719578 +220595,2002,Mel Gibson,1152543244 +220595,2028,Steven Spielberg,1152542121 +220595,2028,Tom Hanks,1152542123 +220595,2028,WWII,1152719819 +220595,2078,classic,1152732200 +220595,2078,Disney,1152732202 +220595,2085,Disney,1152718872 +220595,2105,classic,1152542805 +220595,2105,seen more than once,1152719497 +220595,2108,Steve Martin,1152732528 +220595,2115,Harrison Ford,1152543324 +220595,2115,Steven Spielberg,1152543333 +220595,2140,classic,1152719221 +220595,2140,muppets,1152566911 +220595,2268,Jack Nicholson,1152567059 +220595,2268,Tom Cruise,1152540738 +220595,2273,Jackie Chan,1152718960 +220595,2355,Disney,1152540858 +220595,2355,Pixar,1152540862 +220595,2376,007,1152734434 +220595,2376,Bond,1152734436 +220595,2431,Robin Williams,1152543133 +220595,2467,Sean Connery,1152566990 +220595,2468,Whoopi Goldberg,1152652986 +220595,2474,Tom Cruise,1152733385 +220595,2605,Catherine Zeta-Jones,1152718416 +220595,2605,Sean Connery,1152718423 +220595,2716,Bill Murray,1152540746 +220595,2746,Frank Oz,1152652729 +220595,2762,don't want to see,1152631719 +220595,2791,aviation,1152540533 +220595,2826,Michael Crichton,1152718058 +220595,2916,Arnold Schwarzenegger,1152542616 +220595,2948,007,1152540998 +220595,2948,Bond,1152540999 +220595,2989,007,1152718821 +220595,2989,Bond,1152718830 +220595,2990,007,1152718826 +220595,2990,Bond,1152718828 +220595,3033,parody,1152542746 +220595,3052,Kevin Smith,1152543447 +220595,3082,007,1152732131 +220595,3082,Bond,1152732132 +220595,3114,Disney,1152718550 +220595,3114,Pixar,1152718547 +220595,3114,Tom Hanks,1152718558 +220595,3198,Dustin Hoffman,1152567152 +220595,3247,Whoopi Goldberg,1152653198 +220595,3248,Whoopi Goldberg,1152653204 +220595,3259,Tom Cruise,1152733326 +220595,3396,muppets,1152566921 +220595,3421,John Belushi,1152804205 +220595,3448,Robin Williams,1152543100 +220595,3489,Robin Williams,1152543131 +220595,3527,Arnold Schwarzenegger,1152542397 +220595,3534,Sandra Bullock,1152734003 +220595,3623,Tom Cruise,1152567179 +220595,3702,Mel Gibson,1152542660 +220595,3703,Mel Gibson,1152542458 +220595,3704,Mel Gibson,1152542984 +220595,3705,Goldie Hawn,1152719654 +220595,3705,Mel Gibson,1152719654 +220595,3755,George Clooney,1152567109 +220595,3827,Clint Eastwood,1152543003 +220595,3948,Robert De Niro,1152652343 +220595,3984,007,1152540934 +220595,3984,Bond,1152540936 +220595,4018,Mel Gibson,1152543223 +220595,4022,Tom Hanks,1152718502 +220595,4025,Sandra Bullock,1152733964 +220595,4103,Steven Spielberg,1152566023 +220595,4306,seen more than once,1152719472 +220595,4361,Dustin Hoffman,1152566155 +220595,4367,Angelina Jolie,1152733820 +220595,4370,Steven Spielberg,1152543365 +220595,4396,Jackie Chan,1152734166 +220595,4533,don't want to see,1152734383 +220595,4545,seen more than once,1152719468 +220595,4734,Kevin Smith,1152543415 +220595,4855,Clint Eastwood,1152718767 +220595,4886,Disney,1152567300 +220595,4886,Pixar,1152567298 +220595,4963,George Clooney,1152565893 +220595,5060,Alan Alda,1152718927 +220595,5610,Goldie Hawn,1152719727 +220595,5669,Michael Moore,1152718914 +220595,5816,magic,1152540969 +220595,5989,Steven Spielberg,1152543314 +220595,5989,Tom Hanks,1152543313 +220595,5991,Catherine Zeta-Jones,1152718363 +220595,5991,Richard Gere,1152718374 +220595,6143,Peter Sellers,1152567219 +220595,6287,Jack Nicholson,1152567087 +220595,6303,Michael Crichton,1152717940 +220595,6377,Disney,1152567288 +220595,6377,Pixar,1152567284 +220595,6662,Peter Sellers,1152567202 +220595,6662,seen more than once,1152719438 +220595,6663,Peter Sellers,1152567206 +220595,6663,seen more than once,1152719433 +220595,6711,Bill Murray,1152652759 +220595,6959,Michael Crichton,1152718144 +220595,6999,Goldie Hawn,1152719703 +220595,6999,Steve Martin,1152719703 +220595,7046,Jack Nicholson,1152567247 +220595,7046,seen more than once,1152719525 +220595,7980,Sean Connery,1152565962 +220595,8360,Antonio Banderas,1152714106 +220595,8360,Eddie Murphy,1152714095 +220595,8360,John Cleese,1152714095 +220595,8360,seen more than once,1152719478 +220595,8529,Tom Hanks,1152718398 +220595,8596,Peter Sellers,1152567212 +220595,8596,seen more than once,1152719461 +220595,8614,Goldie Hawn,1152719674 +220595,8622,Michael Moore,1152719147 +220595,8961,Disney,1152567315 +220595,8961,Pixar,1152567311 +220595,45186,Tom Cruise,1152566959 +220595,45431,Must See,1152540594 +220595,45517,Pixar,1152567268 +220623,260,sci-fi,1437320626 +220623,260,war,1437320636 +220626,1270,not seen,1162539396 +220626,1375,star,1162539393 +220626,3893,nurse,1162539394 +220626,47970,my,1162540254 +220626,48516,R,1162539594 +220630,8961,Michael Giacchino,1406491603 +220630,34332,Michael Giacchino,1406491696 +220630,50872,Michael Giacchino,1406491749 +220630,58559,Batman,1403016331 +220630,58559,dark,1403016343 +220630,58559,Heath Ledger,1403016328 +220630,58559,Morgan Freeman,1403016510 +220630,68358,Michael Giacchino,1406491815 +220630,68954,Michael Giacchino,1406491875 +220660,170,cyberpunk,1436990577 +220660,170,geek,1436990557 +220660,170,hackers,1436990565 +220660,170,hacking,1436990561 +220660,2502,comedy,1436990675 +220660,2502,cult classic,1436990684 +220660,3862,pickup,1440860172 +220660,4052,computers,1437238904 +220660,4052,geeks,1437506667 +220660,4052,software developers,1439897736 +220660,4344,computers,1436990599 +220660,4344,hackers,1436990604 +220660,4344,hacking,1436990600 +220660,8581,computers,1437312588 +220660,8581,geeks,1437312586 +220660,8581,history,1437312590 +220660,27856,crime,1439897570 +220660,44197,law,1437240892 +220660,45172,computers,1439878026 +220660,45172,hackers,1439878035 +220660,45172,hacking,1439878033 +220660,47518,college,1437328659 +220660,63001,russian revolution,1439896877 +220660,64969,Motivation,1437235397 +220660,64969,positive thinking,1437235406 +220660,64969,romantic comedy,1437235404 +220660,66092,history,1440003219 +220660,73710,computers,1437233236 +220660,73710,technology,1437233234 +220660,80463,based on true story,1437230276 +220660,80463,computers,1437162825 +220660,80463,hacking,1437230252 +220660,80463,internet,1437162831 +220660,80463,nerds,1437162829 +220660,80463,nerds revolution,1437240108 +220660,80463,software developers,1437230255 +220660,80846,plot twist,1437331340 +220660,90645,alternative history,1437331703 +220660,93982,serial killer,1437331645 +220660,97280,time travel,1439897498 +220660,100723,computers,1440003167 +220660,102481,computers,1437238911 +220660,102481,geeks,1437238823 +220660,102481,Google,1439897806 +220660,104224,hackers,1437170136 +220660,107408,Russian,1450048577 +220660,107408,world war 2,1450048586 +220660,108466,legend,1438546830 +220660,112334,computers,1437504651 +220660,114494,hackers,1439140918 +220660,114494,twists & turns,1439150066 +220660,115680,time travel,1453094460 +220660,115680,twist ending,1453094470 +220660,118085,black and white,1438528461 +220660,118085,comedy,1438528461 +220660,118085,ussr,1438528461 +220660,127096,science fiction,1437323245 +220660,127096,time travel,1437323237 +220660,127212,history,1437230056 +220660,127212,psychology,1437230054 +220660,128975,time travel,1437235132 +220660,131170,alternate reality,1437322535 +220660,133339,armenian,1437648235 +220660,133339,historical,1437648235 +220660,133339,history,1437648235 +220660,134109,russian,1437235852 +220660,134783,based on a TV show,1439220631 +220660,135137,computer games,1438546514 +220660,135137,games,1438546486 +220660,136562,computers,1451183506 +220660,140160,disney,1439132250 +220660,140860,computers,1439797755 +220660,140860,hackers,1439797753 +220660,140862,computers,1439797876 +220660,140862,hackers,1439797878 +220660,140940,based on book,1439896736 +220660,140940,russian,1439896743 +220660,146028,sherlock holmes,1450048409 +220721,3969,inspirational,1416782698 +220728,260,Star Wars,1430748299 +220798,113604,romance,1436786940 +220798,113604,touching,1436786931 +220810,260,sci-fi,1444425239 +220810,260,space drama,1444425257 +220813,1682,alternate reality,1370882720 +220813,1682,dark comedy,1370882720 +220813,1682,dreamlike,1370882720 +220813,1682,Jim Carrey,1370882720 +220813,1682,mindfuck,1370882720 +220813,1682,philosphy,1370882720 +220813,1682,social commentary,1370882720 +220813,1682,witty,1370882727 +220813,1748,atmospheric,1370882775 +220813,1748,cult film,1370882775 +220813,1748,dystopia,1370882775 +220813,1748,Nudity (Topless),1370882783 +220813,1748,philosophy,1370882775 +220813,1748,thought-provoking,1370882774 +220813,2413,cult classic,1370791872 +220813,2413,Tim Curry,1370791826 +220813,2571,philosophy,1370791917 +220813,3114,computer animation,1370882678 +220813,3114,Pixar,1370882670 +220813,3114,Tom Hanks. humorous,1370882670 +220813,44191,Comic Book adaption,1370882620 +220813,44191,dystopia,1370882620 +220813,44191,England,1370882621 +220813,44191,philosophy,1370882620 +220813,44191,revenge,1370882621 +220813,44191,thought-provoking,1370882620 +220813,65642,nudity,1370876339 +220813,65642,paradox,1370876341 +220813,65642,time travel,1370876341 +220813,74228,cerebral,1370876430 +220813,74228,Melissa George,1370876417 +220813,74228,sci fi,1370876460 +220813,74228,scifi,1370876468 +220813,74228,single mother,1370876422 +220813,74228,strong female lead,1370876447 +220813,74228,time loop,1370876417 +220813,74228,time travel,1370876417 +220813,74228,twist ending,1370876454 +220813,96737,3d,1370882940 +220813,96737,based on a comic,1370882912 +220813,96737,cinematography,1370882912 +220813,96737,dystopia,1370882912 +220813,96737,low budget,1370882916 +220813,96737,post-apocalyptic,1370882912 +220813,96737,sci-fi,1370882912 +220813,96737,violence,1370882921 +220816,34162,Vince Vaughn,1249746632 +220816,66509,long,1249746502 +220816,66509,Seth Rogen,1249746487 +220816,66509,stand-up comedy,1249746493 +220829,520,Mel Brooks,1288787038 +220829,520,parody,1288787041 +220829,940,Classic,1288786655 +220829,3068,courtroom,1289167737 +220829,3068,courtroom drama,1289167731 +220829,3068,Sidney Lumet,1289167759 +220829,4212,Agatha Christie,1288816058 +220829,4212,David Niven,1288816084 +220829,4212,Peter Ustinov,1288816080 +220829,4678,quirky,1288786907 +220829,4678,Weird Al,1288786904 +220861,1265,classic,1264697855 +220901,117368,animation,1422086833 +220901,117368,children cartoon,1422086833 +220901,117368,comedy,1422086833 +220901,120536,drama,1420964915 +220901,120536,network,1420964915 +220901,120536,thriller,1420964915 +220912,260,cult classic,1435990680 +220912,260,quotable,1435990666 +220920,2580,black comedy,1315602503 +220920,2580,comedy,1315602510 +220920,2580,drugs,1315602506 +220920,2580,multiple storylines,1315602508 +220920,2580,seen more than once,1315602519 +220920,6874,cinematography,1315602053 +220920,6874,funny,1315602051 +220920,6874,martial arts,1315602047 +220920,6874,Quentin Tarantino,1315602061 +220920,6874,revenge,1315602065 +220920,6874,Uma Thurman,1315602058 +220920,6874,violent,1315602044 +220920,58559,dark,1315602312 +220920,58559,Heath Ledger,1315602300 +220920,58559,psychology,1315602297 +220920,58559,superhero,1315602292 +220920,58559,vigilante,1315602294 +220920,58559,violence,1315602305 +220948,3916,american football,1309275009 +220948,82527,twist ending,1309274857 +221014,480,entertaining,1433488913 +221014,480,family,1433488913 +221014,480,steven spielberg,1433488913 +221014,858,Al Pacino,1433488986 +221014,858,Oscar (Best Picture),1433489000 +221046,115210,terrible,1419805214 +221046,116893,emotional,1420461446 +221046,116893,heartwarming,1420461446 +221046,116893,intense,1420461446 +221046,129227,inner thoughts voiced,1425127969 +221046,129227,nature,1425127969 +221046,129227,raw,1425127969 +221046,133281,music,1442102166 +221046,133281,rock,1442102168 +221046,133281,song cover,1442102176 +221050,2,adventure,1368842814 +221050,44,fighting,1368842650 +221050,107,treasure,1368842512 +221050,204,action,1368842670 +221050,353,dark hero,1368842235 +221050,362,adventure,1368842814 +221050,380,arnold,1368842377 +221050,431,dialogue,1408536978 +221050,431,Nudity (Topless),1408536937 +221050,431,R,1408536956 +221050,431,Sean Penn,1408536907 +221050,442,good action,1368842315 +221050,480,big budget,1368842623 +221050,480,special effects,1368842726 +221050,485,arnold,1368842377 +221050,589,arnold,1368842377 +221050,592,super hero,1368842602 +221050,733,action packed,1368842354 +221050,733,good action,1368842315 +221050,736,big budget,1368842623 +221050,736,special effects,1368842726 +221050,778,black comedy,1451821727 +221050,778,dark comedy,1451821716 +221050,778,Ewan McGregor,1451821719 +221050,780,big budget,1368842623 +221050,904,Alfred Hitchcock,1443335011 +221050,904,James Stewart,1443335000 +221050,904,noir thriller,1443335009 +221050,904,suspense,1443334998 +221050,904,tense,1443335002 +221050,1036,action packed,1368842354 +221050,1036,good action,1368842315 +221050,1129,far-fetched,1443470699 +221050,1129,over the top,1443470675 +221050,1129,snake plissken,1443470663 +221050,1209,atmospheric,1386551741 +221050,1209,epic,1386551778 +221050,1209,great soundtrack,1386551775 +221050,1209,guns,1386551773 +221050,1209,Sergio Leone,1386551748 +221050,1209,Spaghetti Western,1386551766 +221050,1209,stylized,1386551756 +221050,1209,visually appealing,1386551760 +221050,1209,western,1386551763 +221050,1240,arnold,1368842377 +221050,1274,animation,1386551694 +221050,1274,psychic powers,1386551687 +221050,1274,stylized,1386551694 +221050,1274,visually stunning,1386551694 +221050,1291,treasure,1368842512 +221050,1304,friendship,1386553679 +221050,1304,Paul Newman,1386553671 +221050,1304,Robert Redford,1386553672 +221050,1387,suspenseful,1368842153 +221050,1391,mars,1368842436 +221050,1552,action,1368842669 +221050,1573,good action,1368842315 +221050,1608,action,1368842669 +221050,1722,action,1368842670 +221050,1917,special effects,1368842726 +221050,1954,fighting,1368842650 +221050,2006,adventure,1368842814 +221050,2028,Steven Spielberg,1386552632 +221050,2028,Tom Hanks,1386552632 +221050,2094,adventure,1368842814 +221050,2115,treasure,1368842512 +221050,2167,action,1368842670 +221050,2278,realistic action,1368842571 +221050,2405,treasure,1368842512 +221050,2410,fighting,1368842650 +221050,2617,adventure,1368842814 +221050,2617,big budget,1368842623 +221050,2617,treasure,1368842511 +221050,2628,special effects,1368842726 +221050,2640,super hero,1368842602 +221050,2662,mars,1368842435 +221050,2723,super hero,1368842602 +221050,2723,superheroes,1368842486 +221050,2762,excellent script,1386552491 +221050,2762,horror,1386552488 +221050,2762,twist ending,1386552482 +221050,2819,assassins,1386552422 +221050,2819,conspiracy,1386552415 +221050,2819,contrived romance,1386552398 +221050,2819,Robert Redford,1386552407 +221050,2819,thriller,1386552410 +221050,2858,Kevin Spacey,1386553842 +221050,2858,loneliness,1386553855 +221050,2858,mental illness,1386553858 +221050,2858,multiple storylines,1386553863 +221050,2858,reflective,1386553847 +221050,2858,social commentary,1386553850 +221050,2858,thought-provoking,1386553844 +221050,2916,arnold,1368842377 +221050,2959,classic,1386552154 +221050,2959,stylized,1386552158 +221050,3074,atmospheric,1386553006 +221050,3074,deliberate,1386553011 +221050,3074,gritty,1386553002 +221050,3074,mountain man,1386552998 +221050,3074,Robert Redford,1386552988 +221050,3074,survivalist,1386552994 +221050,3074,wilderness,1386552990 +221050,3156,emotionally moving,1442535055 +221050,3156,philosophical,1442535030 +221050,3156,Robin Williams,1442535035 +221050,3156,robots,1442535016 +221050,3250,inspirational,1390380962 +221050,3250,religious propaganda,1390380935 +221050,3328,assassin,1386553373 +221050,3328,deadpan,1386553377 +221050,3328,Forest Whitaker,1386553358 +221050,3328,hit men,1386553370 +221050,3328,meditative,1386553380 +221050,3328,melancholy,1386553364 +221050,3328,quirky,1386553385 +221050,3328,samurai,1386553360 +221050,3328,witty,1386553393 +221050,3499,suspenseful,1368842153 +221050,3508,Clint Eastwood,1386552668 +221050,3508,revenge,1386552678 +221050,3508,western,1386552696 +221050,3535,grim,1442534814 +221050,3535,serial killer,1442534808 +221050,3793,special effects,1368842726 +221050,3986,action,1368842670 +221050,4223,Jude Law,1386553442 +221050,4223,sniper,1386553437 +221050,4306,animation,1442530282 +221050,4306,fairy tale,1442530289 +221050,4306,Funny,1442530269 +221050,4306,satire,1442530275 +221050,4306,witty,1442530292 +221050,4571,adventure,1368842814 +221050,4776,denzel washington,1386552386 +221050,4776,twist ending,1386552373 +221050,4776,violent yet uplifting,1386552375 +221050,5010,realistic action,1368842571 +221050,5349,big budget,1368842623 +221050,5418,action,1386553735 +221050,5418,assassin,1386553719 +221050,5418,car chase,1386553722 +221050,5418,Matt Damon,1386553726 +221050,5418,Robert Ludlum,1386553727 +221050,5418,spying,1386553730 +221050,5418,thriller,1386553728 +221050,5618,adventure,1386552458 +221050,5618,animation,1386552462 +221050,5618,atmospheric,1386552463 +221050,5618,beautiful,1386552444 +221050,5618,fairy tale,1386552474 +221050,5618,fantasy,1386552443 +221050,5618,fantasy world,1386552469 +221050,5618,imagination,1386552447 +221050,5618,whimsical,1386552450 +221050,5669,Michael Moore,1442970137 +221050,5692,assassin,1386552013 +221050,5692,Charles Bronson,1386552013 +221050,5989,based on a true story,1386552206 +221050,5989,Christopher Walken,1386552200 +221050,5989,con artists,1386552188 +221050,5989,father-son relationship,1386552194 +221050,5989,Leonardo DiCaprio,1386552187 +221050,5989,twists & turns,1386552217 +221050,6016,amazing photography,1368842689 +221050,6294,bad plot,1442535438 +221050,6294,bullshit history,1442535428 +221050,6294,cheesy fun,1442535507 +221050,6294,cliche dialogue,1442535469 +221050,6323,John Cusack,1451807628 +221050,6323,predictable,1451807621 +221050,6323,thriller,1451807633 +221050,6333,big budget,1368842623 +221050,6365,fighting,1368842650 +221050,6377,short-term memory loss,1368842790 +221050,6378,action,1386553043 +221050,6378,action packed,1386553046 +221050,6378,caper,1386553049 +221050,6378,car chase,1386553042 +221050,6378,Charlize Theron,1386553034 +221050,6378,con men,1386553038 +221050,6378,ensemble cast,1386553031 +221050,6378,heist,1386553020 +221050,6378,Jason Statham,1386553021 +221050,6378,Mark Wahlberg,1386553054 +221050,6378,remake,1386553065 +221050,6378,robbery,1386553025 +221050,6539,treasure,1368842512 +221050,6862,thriller,1442535888 +221050,6874,action,1386552977 +221050,6874,beautifully filmed,1386552974 +221050,6874,funny,1386552972 +221050,6874,martial arts,1386552969 +221050,6874,nonlinear,1386552980 +221050,6874,Quentin Tarantino,1386552963 +221050,6874,revenge,1386552964 +221050,6874,stylized,1386552965 +221050,6879,anti-gun,1442801221 +221050,6879,Dustin Hoffman,1442801236 +221050,6879,Gene Hackman,1442801253 +221050,6879,John Cusack,1442801230 +221050,6879,leftist,1442801225 +221050,6879,politically correct,1442801249 +221050,7070,John Wayne,1398144005 +221050,7143,amazing photography,1368842689 +221050,7147,dreamlike,1386553780 +221050,7147,fantasy,1386553782 +221050,7147,quirky,1386553789 +221050,7361,dreamlike,1386553428 +221050,7361,nonlinear,1386553423 +221050,7361,quirky,1386553419 +221050,7361,romance,1386553417 +221050,7361,short-term memory loss,1368842790 +221050,7445,action,1386552951 +221050,7445,bodyguard,1386552954 +221050,7445,Denzel Washington,1386552928 +221050,7445,great cinematography,1386552957 +221050,7445,kidnapping,1386552934 +221050,7445,like father-daughter relationship,1386552947 +221050,7445,redemption,1386552939 +221050,7445,revenge,1386552938 +221050,7445,twists & turns,1386552943 +221050,7445,vengeance,1386552941 +221050,8132,fighting,1368842650 +221050,8207,assassin,1386553544 +221050,8207,assassination,1386553543 +221050,8207,tense,1386553536 +221050,8207,thriller,1386553537 +221050,8622,Michael Moore,1442970073 +221050,8622,propaganda,1442970080 +221050,8644,android(s)/cyborg(s),1386553150 +221050,8644,artificial intelligence,1386553153 +221050,8644,Isaac Asimov,1386553140 +221050,8644,robots,1386553143 +221050,8644,thought-provoking,1386553146 +221050,8644,Will Smith,1386553141 +221050,8781,assassin,1386552901 +221050,8781,brainwashing,1386552896 +221050,8781,Denzel Washington,1386552897 +221050,8784,Natalie Portman,1408630816 +221050,32587,multiple storylines,1386551850 +221050,32587,Quentin Tarantino,1386551825 +221050,32587,stylized,1386551831 +221050,33794,action,1386552247 +221050,33794,batman,1386552243 +221050,33794,Christian Bale,1386552240 +221050,33794,Michael Caine,1386552236 +221050,33794,Morgan Freeman,1386552223 +221050,33794,super hero,1368842602 +221050,33794,superhero,1386552232 +221050,33794,vigilante,1386552234 +221050,34405,action,1386551856 +221050,34405,adventure,1386551858 +221050,34405,assassin,1386551863 +221050,34405,comedy,1386551865 +221050,34405,cult film,1386551870 +221050,34405,ensemble cast,1386551888 +221050,34405,friendship,1386551874 +221050,34405,funny,1386551879 +221050,34405,joss whedon,1386551909 +221050,34405,quirky,1386551878 +221050,34405,sci-fi,1386551883 +221050,34405,witty,1386551885 +221050,34534,brothers,1446557899 +221050,34534,family,1446557897 +221050,34534,friendship,1446557887 +221050,34534,Mark Wahlberg,1446557876 +221050,34534,revenge,1446557901 +221050,34534,siblings,1446557896 +221050,39183,emotional,1386553702 +221050,39183,Heath Ledger,1386553704 +221050,39183,Jake Gyllenhaal,1386553698 +221050,39183,Love story,1386553709 +221050,39183,melancholy,1386553707 +221050,39183,romance,1386553711 +221050,39183,sexuality,1386553695 +221050,43396,aging,1386552334 +221050,43396,Anthony Hopkins,1386552317 +221050,43396,based on a true story,1386552342 +221050,43396,dreams,1386552320 +221050,43396,emotional,1386552324 +221050,43396,feel-good,1386552331 +221050,43396,inspirational,1386552326 +221050,43396,pursuing a dream,1386552339 +221050,44191,dystopia,1386552365 +221050,44191,revenge,1386552356 +221050,44191,social commentary,1386552358 +221050,44191,visually appealing,1386552351 +221050,44199,bank robbery,1386552093 +221050,44199,Clive Owen,1386552086 +221050,44199,Denzel Washington,1386552090 +221050,44199,great ending,1386552098 +221050,44199,intelligent thriller,1386552078 +221050,44199,twist ending,1386552082 +221050,45499,super hero,1368842602 +221050,45499,superheroes,1368842486 +221050,48780,Michael Caine,1386551969 +221050,48780,nonlinear,1386551973 +221050,48780,thriller,1386551979 +221050,48780,twist ending,1386551974 +221050,49272,James Bond,1386553656 +221050,51080,PG-13,1444040989 +221050,51080,spying,1444040967 +221050,51412,Julianne Moore,1448726526 +221050,51412,plot holes,1448726535 +221050,51412,What's Up With The Da Vinci Hair Do,1448726554 +221050,51540,based on a true story,1444016016 +221050,51540,Jake Gyllenhaal,1444016024 +221050,51540,true story,1444016027 +221050,51935,conspiracy,1386552515 +221050,51935,Mark Wahlberg,1386552512 +221050,51935,preachy,1386552526 +221050,51935,revenge,1386552509 +221050,51935,sniper,1386552507 +221050,51935,vengeance,1386552508 +221050,52604,Anthony Hopkins,1386552119 +221050,52604,Ryan Gosling,1386552122 +221050,52604,twist ending,1386552124 +221050,55247,Alaska,1386552043 +221050,55247,based on a true story,1386552039 +221050,55247,great soundtrack,1386552050 +221050,55247,self discovery,1386552071 +221050,55363,boring,1442536208 +221050,55363,long,1442536205 +221050,55820,coen brothers,1386552707 +221050,55820,great acting,1386552712 +221050,55820,hitman,1386552721 +221050,55820,thriller,1386552729 +221050,55820,Tommy Lee Jones,1386552715 +221050,55820,violent,1386552718 +221050,56174,alone in the world,1386553163 +221050,56174,apocalypse,1386553184 +221050,56174,emotional,1386553179 +221050,56174,loneliness,1386553176 +221050,56174,Post apocalyptic,1386553173 +221050,56174,post-apocalyptic,1386553170 +221050,56174,Will Smith,1386553165 +221050,56174,zombies,1386553166 +221050,59315,action,1386553084 +221050,59315,adventure,1386553080 +221050,59315,funny,1386553086 +221050,59315,Robert Downey Jr.,1386553074 +221050,59315,superhero,1386553089 +221050,59549,coming out,1386552575 +221050,59549,gay,1386552579 +221050,59549,Gay Character,1386552581 +221050,59549,Gay Lead Character,1386552582 +221050,59549,gay relationship,1386552583 +221050,59549,gay romance,1386552586 +221050,59549,homosexuality,1386552587 +221050,59549,lgbt,1443335371 +221050,59549,love story,1386552602 +221050,59549,self discovery,1386552592 +221050,59549,surf,1386552598 +221050,59549,surfing,1386552595 +221050,60684,dark hero,1448726748 +221050,60684,Jackie Earle Haley,1448726761 +221050,60684,Jeffrey Dean Morgan,1448726810 +221050,60684,Patrick Wilson,1448726858 +221050,60979,anime,1389991801 +221050,60979,Batman,1389991801 +221050,60979,no overarching plot,1389991802 +221050,60979,vigilante,1389991801 +221050,63062,emotional,1386553616 +221050,63876,biography,1386552852 +221050,63876,gay,1386552842 +221050,63876,Sean Penn,1386552828 +221050,63876,touching,1386552826 +221050,68157,great soundtrack,1386553107 +221050,68157,Quentin Tarantino,1386553097 +221050,68157,visually appealing,1386553101 +221050,68237,artificial intelligence,1386552752 +221050,68237,great soundtrack,1386552737 +221050,68237,Kevin Spacey,1386552735 +221050,68237,melancholy,1386552740 +221050,68237,plot twist,1386552750 +221050,68237,thought-provoking,1386552743 +221050,68237,twist ending,1386552746 +221050,69122,comedy,1442536664 +221050,69122,no plot,1442536713 +221050,69122,overrated,1442536680 +221050,69134,disturbing,1386554033 +221050,69134,horror,1386554049 +221050,69134,wierd for the sake of it,1386554036 +221050,69757,cute,1442533940 +221050,69757,nonlinear,1442533937 +221050,69757,stylized,1442533943 +221050,71379,bad acting,1298073299 +221050,71379,Boring,1298073290 +221050,71379,low budget,1298073320 +221050,71379,no payoff,1298073287 +221050,71379,not scary,1259842174 +221050,71379,over-hyped,1259885368 +221050,71379,slow,1298073284 +221050,72011,capitalism,1442534772 +221050,72011,George Clooney,1442534740 +221050,72011,infidelity,1442534756 +221050,72011,loneliness,1442534738 +221050,72011,self discovery,1442534749 +221050,72378,bad science,1298073256 +221050,72378,coincidences,1298073251 +221050,72378,predictable,1294962980 +221050,72378,unrealistic plot,1294962980 +221050,73017,Action,1386552559 +221050,73017,adventure,1386552555 +221050,73017,clever,1386552564 +221050,73017,Guy Ritchie,1386552534 +221050,73017,Jude Law,1386552553 +221050,73017,martial arts,1386552549 +221050,73017,mystery,1386552568 +221050,73017,predictable,1386552538 +221050,73017,Robert Downey Jr.,1386552535 +221050,73017,witty,1386552544 +221050,73321,action,1386553772 +221050,73321,Bible,1386553765 +221050,73321,Christianity,1386553766 +221050,73321,Denzel Washington,1386553743 +221050,73321,Gary Oldman,1386553760 +221050,73321,post-apocalyptic,1386553745 +221050,73321,survival,1386553757 +221050,73321,thought-provoking,1386553748 +221050,73321,violence,1386553750 +221050,73321,visually appealing,1386553754 +221050,75813,Edward Norton,1452250504 +221050,77201,beautiful scenery,1442533613 +221050,77201,Mads Mikkelsen,1442533601 +221050,77201,minimal dialogue,1442533643 +221050,77201,vikings,1442533648 +221050,77201,violence,1442533616 +221050,77201,visually appealing,1442533603 +221050,79132,action,1294963475 +221050,79132,hyped,1294963475 +221050,79132,unnecessarily confusing,1294963475 +221050,80126,assassin,1386553824 +221050,80126,George Clooney,1386553816 +221050,80126,loneliness,1386553827 +221050,80126,sniper,1386553822 +221050,80126,stylized,1386553829 +221050,80126,suspense,1386553831 +221050,81562,James Franco,1442535104 +221050,81562,moving,1442535096 +221050,81562,survival,1442535133 +221050,81562,true story,1442535125 +221050,81641,based on a true story,1442997238 +221050,81641,CIA,1442997240 +221050,81641,sean penn,1442997242 +221050,81788,happy ending,1442535722 +221050,81788,jailbreak,1442535694 +221050,81788,thriller,1442535814 +221050,84152,audience intelligence underestimated,1451654097 +221050,84152,Bradley Cooper,1451654075 +221050,84152,pseudo-intelligent,1451654113 +221050,85342,realistic,1443224134 +221050,86882,cinematography,1386552873 +221050,86882,comedy,1386552877 +221050,86882,romance,1386552866 +221050,86882,whimsical,1386552868 +221050,86882,witty,1386552870 +221050,88118,David Hyde Pierce,1443058346 +221050,88118,quirky,1443058278 +221050,88118,single location,1443058367 +221050,88129,cinematography,1386553508 +221050,88129,great soundtrack,1386553512 +221050,88129,ryan gosling,1386553514 +221050,88129,visually appealing,1386553516 +221050,89492,Brad Pitt,1386552767 +221050,89492,great acting,1386552791 +221050,90603,Batman,1386553798 +221050,91325,sentimental,1386553409 +221050,91483,buddy movie,1451807809 +221050,91483,hitman,1451807799 +221050,94466,not a movie,1442530833 +221050,94466,social commentary,1442530850 +221050,94466,tv series,1442530836 +221050,94466,well constructed,1442530853 +221050,96588,Rebel Wilson,1446551446 +221050,96811,camerawork,1443335223 +221050,96811,character chemistry,1386553487 +221050,96811,cinematography,1386553484 +221050,96811,comraderie,1386553480 +221050,96811,excellent acting,1386553473 +221050,96811,found footage,1386553475 +221050,96811,friendship,1386553489 +221050,96811,good ending,1386553469 +221050,96811,Jake Gyllenhaal,1386553463 +221050,96811,Original story,1386553502 +221050,96811,realistic action,1386553460 +221050,96811,realistic relationships,1386553451 +221050,96811,sad ending,1386553457 +221050,96811,shaky camera,1386553453 +221050,96969,Morgan Freeman,1453859690 +221050,96969,writers,1453859691 +221050,97752,multiple storylines,1386553571 +221050,97752,philosophy,1386553567 +221050,97752,social commentary,1386553562 +221050,97752,thought-provoking,1386553557 +221050,97752,visually appealing,1386553554 +221050,97836,fighting,1443335304 +221050,97836,Kevin James,1443335308 +221050,97836,mma,1443335316 +221050,97836,ufc,1443335313 +221050,98124,batman,1386553805 +221050,98154,American Civil War,1409499724 +221050,98154,biography,1409499713 +221050,98154,boring,1409499749 +221050,98154,history,1409499595 +221050,98154,longwinded,1409499639 +221050,98154,politics,1409499719 +221050,98154,too long,1409499604 +221050,98961,dramatic,1386552288 +221050,98961,Jessica Chastain,1386552282 +221050,98961,propaganda,1386552274 +221050,99005,predictable,1443335497 +221050,99005,revenge,1443335464 +221050,99114,Quentin Tarantino,1386552165 +221050,99114,visually appealing,1386552169 +221050,99178,Chris Colfer,1446551484 +221050,99178,Rebel Wilson,1446551482 +221050,99813,batman,1386553810 +221050,99957,private investigator,1442535308 +221050,100426,africa,1451718416 +221050,100426,photography,1451718371 +221050,100426,photojournalism,1451718373 +221050,101525,Ryan Gosling,1442530042 +221050,102160,spy,1444029414 +221050,102160,violence,1444029416 +221050,102941,comradeship,1453858440 +221050,102941,Diane Kruger,1453858433 +221050,104638,post-apocalyptic,1448726709 +221050,104879,absorbing,1443830650 +221050,104879,acting,1386551933 +221050,104879,great ending,1386551946 +221050,104879,Hugh Jackman,1443830645 +221050,104879,Jake Gyllenhaal,1443830646 +221050,104879,missing children,1443830662 +221050,104879,tasteful,1386551938 +221050,104879,thriller,1386551942 +221050,104944,realistic,1442533424 +221050,105053,baby factory,1444647080 +221050,105053,kidnapping,1444647074 +221050,105053,Mike dies,1444646810 +221050,105053,plot twist,1444646864 +221050,105053,protagonist dies,1444646877 +221050,105053,serial killer,1444646827 +221050,105053,stockholm syndrome,1444647094 +221050,106236,brolove,1443393925 +221050,106236,wine,1443393927 +221050,106918,imagination,1408630675 +221050,106918,inspirational,1408630682 +221050,106918,visually appealing,1408630658 +221050,106920,Amy Adams,1409497896 +221050,106920,beautiful,1409497981 +221050,106920,loneliness,1409497881 +221050,106920,philosophical,1409497912 +221050,106920,Scarlett Johansson,1409497868 +221050,106920,thought-provoking,1409497860 +221050,108709,realistic,1442534307 +221050,108709,war,1442534308 +221050,108932,children,1442530247 +221050,110134,dog,1453858476 +221050,110882,dialogue driven,1442530013 +221050,110882,strong performance,1442530007 +221050,111622,bittersweet,1442533756 +221050,112183,great performances,1442529763 +221050,112183,magical realism,1442529751 +221050,115149,Action,1442529187 +221050,115149,Hitman,1442529180 +221050,115149,Revenge,1442529190 +221050,115149,stylish,1442529184 +221050,115216,brutal,1442534058 +221050,115216,gritty,1442534056 +221050,115216,western,1442534061 +221050,117881,Julianne Moore,1442533400 +221050,117881,thought-provoking,1442533410 +221050,122882,crappy sequel,1443470761 +221050,122882,dumb,1442558527 +221050,122882,post apocalypse,1443470734 +221050,122882,rehash sequel,1443470809 +221050,122882,unnuanced,1443470778 +221050,125537,3d printing,1442536462 +221050,125537,burgeoning industry,1442536496 +221050,125537,illuminating,1442536452 +221050,125537,insightful,1442536437 +221050,127134,Appalachian Trail,1451654152 +221050,127134,hiking,1451654138 +221050,127134,Robert Redford,1451654162 +221050,128488,action packed,1442530509 +221050,128488,fighting,1442530512 +221050,133419,Rebel Wilson,1446551469 +221058,296,crime,1437486749 +221058,296,cult film,1437486749 +221058,296,episodic,1437486749 +221058,88129,sociopath,1442265935 +221058,114635,communists,1447092635 +221058,114635,disturbing,1447092590 +221058,114635,mass killings,1447092576 +221058,114635,military regime,1447092642 +221058,114635,reenactment,1447092629 +221058,140299,berlin,1443012534 +221058,140299,berlin wall,1443012572 +221058,140299,blixer bargeld,1443012610 +221058,140299,der wahre heino,1443015972 +221058,140299,die ärzte,1443012547 +221058,140299,die toten hosen,1443012621 +221058,140299,einstürzende neubauten,1443012601 +221058,140299,Mark Reeder,1443016029 +221058,140299,music,1443012535 +221058,140299,squatting,1443012636 +221058,140299,subculture,1443016053 +221058,140299,west-berlin,1443012556 +221061,47,atmospheric,1358349306 +221061,47,crime,1358349128 +221061,47,psychology,1358349142 +221061,47,serial killer,1358349119 +221061,47,thriller,1358349124 +221061,47,twist ending,1358349121 +221061,47,violent,1358349122 +221061,70,cult film,1358682802 +221061,70,funny,1358682843 +221061,70,gore,1358682804 +221061,70,Harvey Keitel,1358682825 +221061,70,horror,1358682807 +221061,70,Quentin Tarantino,1358682831 +221061,70,Robert Rodriguez,1358682833 +221061,70,stylized,1358682866 +221061,70,vampires,1358682794 +221061,70,violence,1358682797 +221061,111,disturbing,1358707802 +221061,111,overrated,1358707788 +221061,111,paranoid,1358707806 +221061,111,psychology,1358707826 +221061,111,Robert De Niro,1358707828 +221061,111,social commentary,1358707816 +221061,111,vigilante,1358707796 +221061,223,good dialogue,1358681907 +221061,223,irreverent,1358681923 +221061,223,Kevin Smith,1358681909 +221061,293,corruption,1358351862 +221061,293,crime,1358351866 +221061,293,disturbing,1358351841 +221061,293,drama,1358351845 +221061,293,hitman,1358351858 +221061,293,quirky,1358351849 +221061,296,dark comedy,1358681956 +221061,296,great dialogue,1358681980 +221061,296,multiple storylines,1358681944 +221061,296,nonlinear,1358681946 +221061,296,Quentin Tarantino,1358681948 +221061,296,stylized,1358681949 +221061,296,violence,1358681952 +221061,353,atmospheric,1358351676 +221061,353,comic book,1358351686 +221061,353,dark,1358351666 +221061,353,film noir,1358351656 +221061,353,gothic,1358351636 +221061,353,revenge,1358351639 +221061,353,stylized,1358351651 +221061,353,vigilante,1358351641 +221061,592,atmospheric,1358351579 +221061,592,dark,1358351581 +221061,592,Jack Nicholson,1358351573 +221061,592,revenge,1358351592 +221061,592,stylized,1358351577 +221061,592,tense,1358351595 +221061,592,Tim Burton,1358351575 +221061,592,vigilante,1358351605 +221061,1080,British,1358706053 +221061,1080,comedy,1358706055 +221061,1080,controversial,1358706067 +221061,1080,John Cleese,1358706113 +221061,1080,religion,1358706072 +221061,1080,satire,1358706064 +221061,1089,cult film,1358682006 +221061,1089,dark comedy,1358682004 +221061,1089,great dialogue,1358682021 +221061,1089,nonlinear,1358681990 +221061,1089,Quentin Tarantino,1358681998 +221061,1089,stylized,1358681996 +221061,1089,violence,1358681993 +221061,1103,adolescence,1358707580 +221061,1103,coming of age,1358707578 +221061,1103,iconic,1358707591 +221061,1103,James Dean,1358707576 +221061,1103,rebel,1358707602 +221061,1241,black comedy,1358681433 +221061,1241,campy,1358681382 +221061,1241,cult film,1358681389 +221061,1241,disturbing,1358681449 +221061,1241,gore,1358681376 +221061,1241,over-the-top,1358681409 +221061,1241,zombies,1358681370 +221061,1243,clever,1358705739 +221061,1243,dialogue driven,1358705729 +221061,1243,existentialism,1358705715 +221061,1243,smart comedy,1358705708 +221061,1243,surreal,1358705719 +221061,1243,witty,1358705710 +221061,1265,existentialism,1358350146 +221061,1350,antichrist,1358680908 +221061,1350,Horror,1358680913 +221061,1350,religion,1358680914 +221061,1682,alternate reality,1358349994 +221061,1682,dark comedy,1358349993 +221061,1682,dystopia,1358349991 +221061,1682,Jim Carrey,1358349988 +221061,1682,social commentary,1358349996 +221061,1884,based on a book,1358706664 +221061,1884,disturbing,1358706654 +221061,1884,drugs,1358706623 +221061,1884,funny,1358706649 +221061,1884,psychedelic,1358706640 +221061,1884,satirical,1358706634 +221061,1884,social commentary,1358706616 +221061,1884,surreal,1358706630 +221061,1884,Terry Gilliam,1358706619 +221061,1884,true story,1358706661 +221061,1921,black and white,1358349552 +221061,1921,disturbing,1358349541 +221061,1921,enigmatic,1358349536 +221061,1921,existentialism,1358349530 +221061,1921,hallucinatory,1358349524 +221061,1921,mental illness,1358349520 +221061,1921,psychology,1358349512 +221061,1921,stylized,1358349513 +221061,1921,tense,1358349515 +221061,1997,controversial,1358680884 +221061,1997,possession,1358680879 +221061,1997,religion,1358680881 +221061,1997,scary,1358680894 +221061,2160,Antichrist,1358680934 +221061,2160,Atmospheric,1358680939 +221061,2160,religion,1358680953 +221061,2160,Roman Polanski,1358680941 +221061,2160,satanism,1358680948 +221061,2232,claustrophobic,1358705664 +221061,2232,low budget,1358705687 +221061,2232,psychological,1358705671 +221061,2232,thriller,1358705675 +221061,2329,disturbing,1358707424 +221061,2329,Edward Norton,1358707398 +221061,2329,politics,1358707443 +221061,2329,powerful ending,1358707402 +221061,2329,prison,1358707438 +221061,2329,social commentary,1358707430 +221061,2329,stylized,1358707412 +221061,2329,thought-provoking,1358707400 +221061,2329,violence,1358707419 +221061,2502,corporate America,1358681891 +221061,2502,off-beat comedy,1358681879 +221061,2502,rebellion,1358681887 +221061,2502,satire,1358681875 +221061,2502,slackers,1358681883 +221061,2571,alternate reality,1358704628 +221061,2571,cyberpunk,1358704624 +221061,2571,dystopia,1358704622 +221061,2571,philosophy,1358704611 +221061,2571,post-apocalyptic,1358704599 +221061,2571,surreal,1358704613 +221061,2571,thought-provoking,1358704616 +221061,2571,virtual reality,1358704614 +221061,2710,"""found footage""",1358683280 +221061,2710,atmospheric,1358683288 +221061,2710,creepy,1358683282 +221061,3052,Comedy,1358705899 +221061,3052,controversial,1358705897 +221061,3052,George Carlin,1358705943 +221061,3052,irreverent,1358705905 +221061,3052,jay and silent bob,1358705910 +221061,3052,Kevin Smith,1358705907 +221061,3052,religion,1358705892 +221061,3052,satire,1358705883 +221061,3052,social commentary,1358705930 +221061,3052,thought-provoking,1358705921 +221061,3578,action,1358350395 +221061,3578,revenge,1358350373 +221061,3578,stylized,1358350337 +221061,3578,violence,1358350359 +221061,3671,comedy,1358706204 +221061,3671,Gene Wilder,1358706197 +221061,3671,racism,1358706181 +221061,3671,satire,1358706180 +221061,3671,slapstick,1358706186 +221061,3671,social commentary,1358706218 +221061,3671,western,1358706189 +221061,4226,complicated,1358349690 +221061,4226,cult film,1358349717 +221061,4226,dark,1358349720 +221061,4226,dreamlike,1358349695 +221061,4226,mystery,1358349739 +221061,4226,nonlinear,1358349682 +221061,4226,psychology,1358349685 +221061,4226,revenge,1358349703 +221061,4226,tense,1358349726 +221061,4226,twist ending,1358349684 +221061,4390,controversial,1358684823 +221061,4390,moral ambiguity,1358684817 +221061,4390,revenge,1358684829 +221061,4390,violence,1358684841 +221061,4833,atmospheric,1358680989 +221061,4833,haunted house,1358680983 +221061,4833,melancholy,1358680976 +221061,4848,atmospheric,1358348610 +221061,4848,mindfuck,1358704784 +221061,4848,non-linear,1358348653 +221061,4848,surreal,1358348653 +221061,4848,thriller,1358348653 +221061,4848,twist,1358348653 +221061,4878,anti-hero,1358349796 +221061,4878,atmospheric,1358349811 +221061,4878,cult film,1358349809 +221061,4878,dark,1358349770 +221061,4878,dreamlike,1358349806 +221061,4878,mental illness,1358349814 +221061,4878,philosophy,1358349804 +221061,4878,psychology,1358349764 +221061,4878,satire,1358349819 +221061,4878,social commentary,1358349775 +221061,4878,stylized,1358349800 +221061,4878,surreal,1358349761 +221061,4878,thought-provoking,1358349781 +221061,4878,time travel,1358349777 +221061,4878,twist ending,1358349779 +221061,4975,mindfuck,1358705603 +221061,4975,nonlinear,1358705630 +221061,4975,psychology,1358705599 +221061,4975,stylized,1358705616 +221061,4975,surreal,1358705596 +221061,4975,Thriller,1358705597 +221061,4996,black comedy,1358704890 +221061,4996,disturbing,1358704913 +221061,4996,fantasy,1358704903 +221061,4996,Jan Svankmajer,1358704878 +221061,4996,mindfuck,1358705071 +221061,4996,stop motion,1358704897 +221061,4996,surreal,1358705067 +221061,5341,black and white,1358706441 +221061,5341,censorship,1358706463 +221061,5341,Dustin Hoffman,1358706457 +221061,5341,freedom of expression,1358706467 +221061,5341,obscenity,1358706478 +221061,5341,rebellion,1358706482 +221061,5341,stand-up comedy,1358706444 +221061,5833,atmospheric,1358683127 +221061,5833,British,1358683158 +221061,5833,horror,1358683132 +221061,5833,survival,1358683130 +221061,5833,werewolves,1358683129 +221061,5909,dark,1358352380 +221061,5909,dark comedy,1358352355 +221061,5909,disturbing,1358352327 +221061,5909,offbeat,1358352371 +221061,5909,Takashi Miike,1358352334 +221061,5909,violence,1358352336 +221061,6016,black comedy,1358352056 +221061,6016,coming of age,1358352062 +221061,6016,crime,1358352059 +221061,6016,drugs,1358352061 +221061,6016,gangsters,1358352075 +221061,6016,multiple storylines,1358352052 +221061,6016,social commentary,1358352097 +221061,6016,stylized,1358352050 +221061,6016,violence,1358352066 +221061,6242,atmospheric,1358680790 +221061,6242,creepy,1358680844 +221061,6242,disturbing,1358680796 +221061,6242,japanese horror,1358680823 +221061,6502,atmospheric,1358704093 +221061,6502,British,1358704098 +221061,6502,gore,1358704121 +221061,6502,horror,1358704100 +221061,6502,post-apocalyptic,1358704080 +221061,6502,stylized,1358704082 +221061,6502,survival,1358704112 +221061,6502,thriller,1358704129 +221061,6502,zombies,1358704096 +221061,6975,breaking the fourth wall,1358352658 +221061,6975,dark humor,1358352656 +221061,6975,dialogue driven,1358352662 +221061,6975,disturbing,1358352666 +221061,6975,long takes,1358352668 +221061,6975,Michael Haneke,1358352670 +221061,7132,Classic,1358705824 +221061,7132,comedy,1358705841 +221061,7132,Groucho Marx,1358705818 +221061,7132,satire,1358705849 +221061,7132,witty,1358705832 +221061,7235,anti-hero,1358352292 +221061,7235,disturbing,1358352268 +221061,7235,gore,1358352257 +221061,7235,original,1358352277 +221061,7235,stylized,1358352274 +221061,7235,Takashi Miike,1358352261 +221061,7235,tense,1358352270 +221061,7235,violence,1358352245 +221061,7254,Ashton Kutcher,1358706994 +221061,7254,psychology,1358706975 +221061,7254,suspense,1358706976 +221061,7254,twists & turns,1358706973 +221061,7360,horror,1358704244 +221061,7360,post-apocalyptic,1358704205 +221061,7360,zombies,1358704207 +221061,7361,alternate reality,1358349904 +221061,7361,Jim Carrey,1358349900 +221061,7361,memory,1358349947 +221061,7361,romance,1358349914 +221061,7361,surreal,1358349909 +221061,7361,thought-provoking,1358349906 +221061,7387,apocalypse,1358708175 +221061,7387,cynical,1358708208 +221061,7387,funny,1358708207 +221061,7387,gore,1358708205 +221061,7387,social commentary,1358708197 +221061,7387,survival,1358708171 +221061,7387,suspense,1358708225 +221061,7387,violence,1358708219 +221061,7387,zombies,1358708200 +221061,8874,black comedy,1358350680 +221061,8874,british comedy,1358350684 +221061,8874,comedy,1358350687 +221061,8874,dark comedy,1358350682 +221061,8874,horror,1358350691 +221061,8874,parody,1358350678 +221061,8874,satire,1358350676 +221061,8874,Simon Pegg,1358350659 +221061,8874,spoof,1358350663 +221061,8874,stylized violence,1358350708 +221061,8874,violent,1358350668 +221061,8874,zombie,1358350653 +221061,8950,creepy,1358349600 +221061,8950,dark,1358349666 +221061,8950,depressing,1358349661 +221061,8950,disturbing,1358349658 +221061,8950,psychology,1358349601 +221061,8950,schizophrenia,1358349608 +221061,8950,stylized,1358349650 +221061,8950,surreal,1358349629 +221061,8950,twist ending,1358349604 +221061,8957,clever,1358352601 +221061,8957,Disturbing,1358352592 +221061,8957,gore,1358352605 +221061,8957,Horror,1358352621 +221061,8957,suspense,1358352638 +221061,8957,Thriller,1358352611 +221061,8957,torture,1358352614 +221061,27317,disturbing,1358352711 +221061,27317,ominous,1358352705 +221061,27317,stylized,1358352703 +221061,27317,Takashi Miike,1358352701 +221061,27317,tense,1358352706 +221061,27904,conspiracy,1358705485 +221061,27904,drugs,1358705481 +221061,27904,paranoia,1358705483 +221061,27904,psychology,1358705509 +221061,27904,rotoscoping,1358705472 +221061,27904,stylized,1358705497 +221061,27904,surreal,1358705478 +221061,27904,visually appealing,1358705491 +221061,32587,black comedy,1358349008 +221061,32587,comic book,1358349030 +221061,32587,multiple storylines,1358349021 +221061,32587,Quentin Tarantino,1358349010 +221061,32587,stylized,1358349012 +221061,32587,surrealism,1358349014 +221061,32587,violence,1358349016 +221061,33683,disturbing,1358352576 +221061,33683,gore,1358352553 +221061,33683,horror,1358352557 +221061,33683,New French Extremism,1358352539 +221061,33683,plot twist,1358352541 +221061,33683,psycho,1358352543 +221061,33903,coming of age,1358707046 +221061,33903,complex relationships,1358707012 +221061,33903,idealism,1358707021 +221061,33903,nonlinear,1358707058 +221061,33903,politics,1358707015 +221061,33903,psychology,1358707036 +221061,33903,revolution,1358707018 +221061,33903,thought-provoking,1358707013 +221061,40412,atmospheric,1358681773 +221061,40412,British,1358681740 +221061,40412,disturbing,1358681799 +221061,40412,Drugs,1358681742 +221061,40412,Paddy Considine,1358681748 +221061,40412,revenge,1358681754 +221061,40412,Shane Meadows,1358681750 +221061,40412,violent,1358681787 +221061,42723,disturbing,1358685438 +221061,42723,gore,1358685560 +221061,42723,revenge,1358685548 +221061,42723,torture,1358685585 +221061,42723,Tough to watch,1358685445 +221061,42723,unlikeable characters,1358685588 +221061,44191,anti-hero,1358348901 +221061,44191,dark,1358348856 +221061,44191,dystopia,1358348869 +221061,44191,politics,1358348866 +221061,44191,revenge,1358348974 +221061,44191,social commentary,1358348860 +221061,44191,thought-provoking,1358348845 +221061,44191,thriller,1358348887 +221061,44191,totalitarianism,1358708682 +221061,48231,black humor,1358685656 +221061,48231,cinematography,1358685699 +221061,48231,disturbing,1358685676 +221061,48231,stylized,1358685667 +221061,48231,surreal,1358685648 +221061,48231,unusual,1358685651 +221061,48231,violent,1358685653 +221061,48304,atmospheric,1358704422 +221061,48304,cinematography,1358704424 +221061,48304,gritty,1358704437 +221061,48304,survival,1358704431 +221061,48304,suspense,1358704429 +221061,48304,tense,1358704446 +221061,48304,violent,1358704427 +221061,49932,atmospheric,1358704821 +221061,49932,cinematography,1358704846 +221061,49932,David Lynch,1358704808 +221061,49932,disturbing,1358704801 +221061,49932,mindfuck,1358704821 +221061,51255,action spoof,1358350552 +221061,51255,black comedy,1358350549 +221061,51255,british comedy,1358350547 +221061,51255,comedy,1358350625 +221061,51255,dark comedy,1358350567 +221061,51255,dystopia,1358350571 +221061,51255,parody,1358350555 +221061,51255,Simon Pegg,1358350545 +221061,51255,surreal,1358350560 +221061,52952,atmospheric,1358681668 +221061,52952,bittersweet,1358681666 +221061,52952,bullying,1358681670 +221061,52952,England,1358681683 +221061,52952,friendship,1358681662 +221061,52952,INNOCENCE LOST,1358681675 +221061,52952,racism,1358681659 +221061,52952,Shane Meadows,1358681686 +221061,53000,post-apocalyptic,1358704144 +221061,53000,zombies,1358704147 +221061,56174,dystopia,1358704340 +221061,56174,horror,1358704350 +221061,56174,post-apocalyptic,1358704292 +221061,56174,religion,1358704298 +221061,56174,suspense,1358704296 +221061,56174,zombies,1358704294 +221061,58964,gore,1358352517 +221061,58964,New French Extremism,1358352507 +221061,58964,suspense,1358352511 +221061,58964,violence,1358352509 +221061,60684,comic book,1358682613 +221061,60684,dystopia,1358682624 +221061,60684,social commentary,1358682616 +221061,60684,stylized,1358682609 +221061,60684,superhero,1358682611 +221061,61240,atmospheric,1358681542 +221061,61240,bittersweet,1358681547 +221061,61240,coming of age,1358681538 +221061,61240,horror,1358681559 +221061,61240,tense,1358681617 +221061,61240,unconventional romance,1358681579 +221061,61240,vampire,1358681531 +221061,61240,violence,1358681552 +221061,62203,disturbing,1358352438 +221061,62203,extremely violent,1358352475 +221061,62203,New French Extremity,1358352452 +221061,62203,plot twist,1358352449 +221061,62203,psychological,1358352444 +221061,62203,shocking,1358352441 +221061,62203,violent,1358352429 +221061,64614,culture clash,1358350468 +221061,64614,racism,1358350459 +221061,64614,redemption,1358350462 +221061,64614,revenge,1358350457 +221061,64614,UNLIKELY FRIENDSHIPS,1358350497 +221061,64614,violence,1358350464 +221061,67997,Armando Iannucci,1358706024 +221061,67997,british,1358706010 +221061,67997,cynical,1358706012 +221061,67997,intelligent,1358706014 +221061,67997,politics,1358706004 +221061,67997,satire,1358705999 +221061,67997,swearing,1358706003 +221061,69275,comedy,1358681277 +221061,69275,gore,1358681268 +221061,69275,horror comedy,1358681341 +221061,69275,Zombies,1358681261 +221061,71379,atmospheric,1358683210 +221061,71379,possession,1358683217 +221061,71379,psychological,1358683223 +221061,71379,Realism,1358683225 +221061,71379,scary,1358683227 +221061,72380,mystery,1358706952 +221061,72380,plot twist,1358706935 +221061,72380,psychology,1358706918 +221061,72380,stylized,1358706926 +221061,72380,surreal,1358706910 +221061,73101,Eric Cantona,1360005840 +221061,73101,Football,1360005847 +221061,73101,Ken Loach,1360005824 +221061,73101,surreal,1360005870 +221061,74228,mystery,1358707316 +221061,74228,Surreal,1358707320 +221061,74228,twists & turns,1358707324 +221061,77800,Chris Morris,1358706269 +221061,77800,controversial,1358706265 +221061,77800,dark comedy,1358706267 +221061,77800,Satire,1358706275 +221061,77800,social commentary,1358706300 +221061,79251,atmospheric,1358684905 +221061,79251,cinematography,1358684871 +221061,79251,dark humor,1358684868 +221061,79251,disturbing,1358684894 +221061,79251,drugs,1358684948 +221061,79251,extreme,1358684917 +221061,79251,gore,1358684865 +221061,79251,mind altering drugs,1358684958 +221061,79251,shocking,1358684937 +221061,79251,stylized,1358684881 +221061,79251,surreal,1358684944 +221061,79251,thought-provoking,1358684862 +221061,79251,twist ending,1358684858 +221061,84152,cinematography,1358704471 +221061,84152,mind altering drugs,1358704488 +221061,84152,thought provoking,1358704497 +221061,84152,visually appealing,1358704468 +221061,85414,stylized,1358704669 +221061,85414,suspense,1358704681 +221061,85414,twist ending,1358704666 +221061,93840,conspiracy,1358350742 +221061,93840,dark comedy,1358350753 +221061,93840,gore,1358350766 +221061,93840,plot twist,1358350801 +221061,93840,werewolf,1358350788 +221061,93840,zombies,1358350783 +221061,99437,atmospheric,1358681129 +221061,99437,mind altering drugs,1358681182 +221061,99437,nonlinear,1358681115 +221061,99437,surreal,1358681108 +221064,3160,Philip Seymour Hoffman,1193091383 +221064,5158,writer,1193088603 +221077,2959,dark hero,1420851586 +221077,2959,edgy,1420851586 +221077,2959,unconventional,1420851586 +221094,70293,Amy Adams,1253403572 +221096,98203,bad story,1425898394 +221096,98203,boring main actors,1425898394 +221096,98203,teen,1425898394 +221109,2,fantasy,1340921558 +221109,2,Robin Williams,1340921555 +221109,2,scary,1340921562 +221109,2,time travel,1340921564 +221109,16,Martin Scorsese,1419088269 +221109,16,narrated,1419088278 +221109,16,robert de niro,1419088266 +221109,19,Stupid as Hell,1337809437 +221109,25,alcoholism,1339753341 +221109,25,depressing,1339753361 +221109,25,love,1339753351 +221109,25,Oscar (Best Actor),1339753335 +221109,25,SUICIDE,1339753355 +221109,32,Brad Pitt,1373841789 +221109,32,Bruce Willis,1373841784 +221109,32,post-apocalyptic,1373841793 +221109,32,twist ending,1373841804 +221109,70,cult film,1337809844 +221109,70,horror,1337809868 +221109,70,Quentin Tarantino,1337809846 +221109,70,Robert Rodriguez,1337809848 +221109,70,Sexualized violence,1337809849 +221109,70,so bad it's good,1337809855 +221109,70,twist ending,1337809863 +221109,70,violence,1337809857 +221109,153,Batman,1340920873 +221109,208,apocalypse,1340921312 +221109,208,ocean,1340921320 +221109,208,post apocalypse,1340921318 +221109,208,post-apocalyptic,1340921314 +221109,208,survival,1340921326 +221109,235,film noir,1339627730 +221109,235,Oscar (Best Supporting Actor),1339627733 +221109,235,Tim Burton,1339627741 +221109,253,Antonio Banderas,1337809539 +221109,253,horror,1337809546 +221109,253,Nudity (Full Frontal),1337809535 +221109,253,Tom Cruise,1337809543 +221109,267,comedy,1394051731 +221109,267,hilarious,1394051733 +221109,267,military,1394051734 +221109,316,time travel,1340920997 +221109,344,Dumb,1337809411 +221109,344,sex jokes,1337809415 +221109,344,Stupid as Hell,1337809404 +221109,353,bittersweet,1340939452 +221109,353,film noir,1340939455 +221109,353,great soundtrack,1340939459 +221109,364,coming of age,1373153430 +221109,367,cartoonish,1340920892 +221109,367,comedy,1340920895 +221109,367,crime,1340920906 +221109,367,Jim Carrey,1340920900 +221109,367,mafia,1340920902 +221109,368,comedy,1394050635 +221109,380,Arnold Schwarzenegger,1390973942 +221109,380,Funny as hell,1390973945 +221109,380,James Cameron,1390973946 +221109,441,1970s,1389194072 +221109,441,American culture,1389194076 +221109,441,great soundtrack,1389194086 +221109,441,high school,1389194079 +221109,441,marijuana,1389194083 +221109,441,small town,1389194089 +221109,454,business,1365160401 +221109,454,courtroom,1365160403 +221109,454,lawyer as protagonist,1365160405 +221109,454,thriller,1365160410 +221109,454,Tom Cruise,1365160412 +221109,500,Robin Williams,1337810099 +221109,524,inspirational,1389194139 +221109,587,bittersweet,1337810261 +221109,592,atmospheric,1340920939 +221109,592,dark,1340920951 +221109,592,film noir,1340920948 +221109,592,Jack Nicholson,1340920936 +221109,592,revenge,1340920945 +221109,592,stylized,1340920953 +221109,592,Tim Burton,1340920933 +221109,610,Adult Animation,1373715857 +221109,610,good versus evil,1373715861 +221109,610,Nudity (Topless),1373715863 +221109,610,sci-fi,1373715866 +221109,610,spaceflight,1373715868 +221109,610,surreal,1373715872 +221109,628,Edward Norton,1339289321 +221109,628,thought-provoking,1339289327 +221109,628,twist ending,1339289324 +221109,733,Sean Connery,1384555623 +221109,914,Audrey Hepburn,1337544752 +221109,914,clever,1337544761 +221109,914,Oscar (Best Picture),1337544755 +221109,920,Oscar (Best Actress),1339628135 +221109,920,Oscar (Best Cinematography),1339628140 +221109,920,Oscar (Best Directing),1339628144 +221109,920,Oscar (Best Picture),1339628131 +221109,920,Oscar (Best Supporting Actress),1339628147 +221109,924,aliens,1375224858 +221109,924,artificial intelligence,1375224092 +221109,924,atmospheric,1375224862 +221109,924,cult film,1375224854 +221109,924,mystery,1375224865 +221109,924,philosophical,1375224096 +221109,924,Stanley Kubrick,1375224280 +221109,924,surreal,1375224852 +221109,1073,cult film,1373725790 +221109,1089,cult film,1389801753 +221109,1089,ensemble cast,1389801755 +221109,1089,multiple storylines,1389801773 +221109,1089,nonlinear,1389801767 +221109,1089,notable soundtrack,1389801770 +221109,1089,organized crime,1389801757 +221109,1089,Quentin Tarantino,1389801761 +221109,1089,stylized,1389801763 +221109,1089,violence,1389801765 +221109,1136,hilarious,1339628505 +221109,1136,parody,1339628489 +221109,1136,religion,1339628497 +221109,1136,satire,1339628491 +221109,1136,satirical,1339628493 +221109,1136,witty,1339628495 +221109,1197,fantasy,1419088504 +221109,1197,modern fantasy,1419088497 +221109,1200,atmospheric,1379538252 +221109,1200,Sigourney Weaver,1379538262 +221109,1200,suspense,1379538255 +221109,1200,tense,1379538257 +221109,1200,violent,1379538260 +221109,1206,atmospheric,1375489295 +221109,1206,based on a book,1375489299 +221109,1206,cult film,1375489273 +221109,1206,disturbing,1375489270 +221109,1206,dystopia,1375489268 +221109,1206,psychology,1375489303 +221109,1206,satire,1375489275 +221109,1206,social commentary,1375489278 +221109,1206,Stanley Kubrick,1375489264 +221109,1206,Surrealism,1375489282 +221109,1206,violence,1375489286 +221109,1213,dark comedy,1339628469 +221109,1213,mafia,1339628472 +221109,1213,Martin Scorsese,1339628461 +221109,1213,Robert De Niro,1339628466 +221109,1216,Jean Reno,1337546380 +221109,1216,Luc Besson,1337546383 +221109,1222,anti-war,1369601391 +221109,1222,boot camp,1369601393 +221109,1222,dialogue,1369601396 +221109,1222,Stanley Kubrick,1369601388 +221109,1222,want to see again,1369601398 +221109,1237,Death,1395362447 +221109,1237,existentialism,1395362449 +221109,1237,Ingmar Bergman,1395362454 +221109,1237,reflective,1395362462 +221109,1237,tense,1395362460 +221109,1252,atmospheric,1419088583 +221109,1252,Jack Nicholson,1419088580 +221109,1257,black comedy,1389556795 +221109,1257,cult film,1389556800 +221109,1258,cult film,1367789394 +221109,1258,psychological,1367789399 +221109,1258,Stanley Kubrick,1367789397 +221109,1291,Biblical,1340921196 +221109,1291,Harrison Ford,1340921175 +221109,1291,Holy Grail,1340921190 +221109,1291,motorcycle,1340921186 +221109,1291,Sean Connery,1340921180 +221109,1291,Sequel,1340921201 +221109,1291,Steven Spielberg,1340921178 +221109,1292,funny,1373725391 +221109,1292,Peter Sellers,1373725380 +221109,1292,political satire,1373725383 +221109,1292,protagonist is an idiot,1373725394 +221109,1292,quotable,1373725440 +221109,1292,satire,1373725385 +221109,1292,surreal,1373725378 +221109,1292,surrealism,1373725429 +221109,1292,watch the credits,1373725409 +221109,1292,weird ending,1373725403 +221109,1298,cult film,1339628086 +221109,1298,dark,1339628091 +221109,1298,great soundtrack,1339628088 +221109,1298,loneliness,1339628093 +221109,1298,surreal,1339628096 +221109,1307,Billy Crystal,1384019217 +221109,1307,chick flick,1384019215 +221109,1307,girlie movie,1384019204 +221109,1374,Star Trek,1373746613 +221109,1393,happy ending,1337459987 +221109,1393,Oscar (Best Supporting Actor),1337459985 +221109,1393,quotable,1337460011 +221109,1393,Renee Zellweger,1337459980 +221109,1393,show me the money,1337460004 +221109,1393,Tom Cruise,1337460000 +221109,1500,predictable,1338396824 +221109,1517,hilarious,1379977928 +221109,1517,Mike Myers,1379977914 +221109,1517,satire,1379977921 +221109,1517,seen more than once,1379977924 +221109,1517,Underrated,1379977918 +221109,1569,thought-provoking,1337809505 +221109,1584,inspirational,1369313937 +221109,1584,Jodie Foster,1369313940 +221109,1584,mathematics,1369313934 +221109,1584,sci-fi,1369313932 +221109,1584,science,1369313944 +221109,1584,space travel,1369313931 +221109,1608,action,1419092373 +221109,1608,Harrison Ford,1419092371 +221109,1625,dull,1339626821 +221109,1625,plot twist,1339626827 +221109,1625,psychological,1339626832 +221109,1625,twist ending,1339626830 +221109,1625,unrealistic,1339626823 +221109,1639,dialogue,1340056637 +221109,1639,great dialogue,1340056635 +221109,1639,lesbian,1340056640 +221109,1639,sexual identity,1340056647 +221109,1645,Al Pacino,1337809370 +221109,1645,Nudity (Full Frontal),1337809374 +221109,1653,powerful ending,1369512568 +221109,1653,thought-provoking,1369512565 +221109,1653,Uma Thurman,1369512581 +221109,1653,visually appealing,1369512578 +221109,1676,Nudity (Topless),1337809661 +221109,1676,satire,1337809670 +221109,1676,witty,1337809659 +221109,1704,feel-good,1345365759 +221109,1704,genius,1345365756 +221109,1704,inspirational,1345365761 +221109,1704,mathematics,1345365750 +221109,1704,Robin Williams,1345365753 +221109,1732,black comedy,1337810305 +221109,1732,Cult classic,1337810309 +221109,1732,cult film,1337810290 +221109,1732,dark comedy,1337810294 +221109,1732,Nudity (Full Frontal),1337810296 +221109,1732,quirky,1337810301 +221109,1732,satirical,1337810303 +221109,1747,black comedy,1337809572 +221109,1747,Robert De Niro,1337809573 +221109,1747,satire,1337809578 +221109,1748,atmospheric,1394051013 +221109,1748,dystopia,1394051018 +221109,1748,memory,1394051031 +221109,1748,Nudity (Topless),1394051033 +221109,1748,philosophy,1394051036 +221109,1748,Post apocalyptic,1394051025 +221109,1748,thought-provoking,1394051022 +221109,1784,funny,1337809820 +221109,1784,Jack Nicholson,1337809811 +221109,1784,Oscar (Best Actor),1337809814 +221109,1784,quirky,1337809828 +221109,1784,relationships,1337809817 +221109,1961,dark comedy,1346153128 +221109,1961,Dustin Hoffman,1346153126 +221109,1961,Exceptional Acting,1346153134 +221109,1961,Oscar (Best Picture),1346153136 +221109,1961,psychology,1346153138 +221109,1961,true story,1346153141 +221109,1968,coming of age,1389301496 +221109,1968,high school,1389301498 +221109,1968,school drama,1389301500 +221109,1968,Stoner Movie,1389301506 +221109,1968,teen,1389301504 +221109,2000,action,1340921229 +221109,2000,Buddy movie,1340921231 +221109,2000,comedy,1340921226 +221109,2000,Nudity (Topless),1340921223 +221109,2010,classic,1375224912 +221109,2010,German expressionism,1375224919 +221109,2010,industrial progress,1375224902 +221109,2010,visionary,1375224907 +221109,2054,disney,1340921586 +221109,2105,computers,1337809790 +221109,2231,Edward Norton,1339095782 +221109,2231,gambling,1339095785 +221109,2231,Matt Damon,1339095778 +221109,2232,cult film,1369314629 +221109,2232,intense,1369314627 +221109,2232,mathematics,1369314623 +221109,2232,mindfuck,1369314625 +221109,2232,psychological,1369314621 +221109,2291,cult film,1337973933 +221109,2291,dark comedy,1337973927 +221109,2291,Depp & Burton,1337973919 +221109,2291,Johnny Depp,1337973922 +221109,2291,Tim Burton,1337973924 +221109,2318,BREAKUPS AND DIVORCES,1339626397 +221109,2318,dark humor,1339626375 +221109,2318,immigrants,1339626399 +221109,2318,loneliness,1339626380 +221109,2318,Nudity (Topless),1339626403 +221109,2323,Bennett Miller,1385058496 +221109,2323,directorial debut,1385058498 +221109,2683,Cute,1337809347 +221109,2683,Hilarious,1337809344 +221109,2683,obvious,1337809330 +221109,2683,parody,1337809342 +221109,2683,sequel,1337809333 +221109,2683,sixties,1337809339 +221109,2683,stupid,1337809348 +221109,2706,high school,1337810061 +221109,2706,Nudity (Topless),1337810044 +221109,2706,teen comedy,1337810054 +221109,2706,Teen movie,1337810056 +221109,2706,virginity,1337810069 +221109,2712,atmospheric,1376583287 +221109,2712,disturbing,1376583294 +221109,2712,dreamlike,1376583291 +221109,2712,notable soundtrack,1376583296 +221109,2712,Nudity (Full Frontal - Notable),1376583300 +221109,2712,Nudity (Full Frontal),1376583303 +221109,2712,psychological,1376583305 +221109,2712,sexuality,1376583309 +221109,2712,Stanley Kubrick,1376583171 +221109,2712,surreal,1376583319 +221109,2712,thriller,1376583315 +221109,2716,classic,1340921287 +221109,2716,comedy,1340921276 +221109,2716,hilarious,1340921285 +221109,2716,horror comedy,1340921278 +221109,2716,mystery,1340921281 +221109,2716,New York City,1340921283 +221109,2716,paranormal,1340921274 +221109,2716,quotable,1340921290 +221109,2729,controversial,1375489977 +221109,2729,obsession,1375489970 +221109,2729,Peter Sellers,1375489965 +221109,2729,Stanley Kubrick,1375489974 +221109,2739,incest,1374796981 +221109,2739,race,1374796985 +221109,2739,rape,1374796978 +221109,2739,Steven Spielberg,1374797003 +221109,2739,unhappy marriage,1374797000 +221109,2739,Whoopie Goldberg,1374796995 +221109,2739,women,1374796967 +221109,2739,women's rights,1374796972 +221109,2763,intelligent thriller,1337973873 +221109,2810,anime,1337269612 +221109,2810,great anime,1337269963 +221109,2905,Akira Kurosawa,1337543481 +221109,2905,atmospheric,1337543492 +221109,2905,humorous,1374697840 +221109,2905,samurai,1337543488 +221109,3008,apocalypse,1373835318 +221109,3008,end of the world,1373835308 +221109,3008,multiple storylines,1373835312 +221109,3114,sequel,1337545903 +221109,3160,cynical,1338021111 +221109,3160,great soundtrack,1338021414 +221109,3160,melancholy,1338021411 +221109,3160,Tom Cruise,1338021114 +221109,3173,Al Pacino,1337544507 +221109,3173,football,1337544509 +221109,3173,Nudity (Topless),1337544511 +221109,3176,great acting,1346320168 +221109,3176,Matt Damon,1346320164 +221109,3176,obsession,1346320170 +221109,3176,psychology,1346320162 +221109,3176,seen more than once,1346320176 +221109,3176,suspense,1346320172 +221109,3224,allegory,1376831220 +221109,3224,haunting,1376831225 +221109,3224,Hiroshi Teshigahara,1376831248 +221109,3224,male-female relationship,1376831244 +221109,3224,metaphor,1376831229 +221109,3224,psychology,1376831239 +221109,3224,TRAPPED OR CONFINED,1376831234 +221109,3252,Al Pacino,1337544356 +221109,3252,blindness,1337544359 +221109,3252,great acting,1337544361 +221109,3252,one of the best movies ever,1337544365 +221109,3252,Oscar (Best Actor),1337544364 +221109,3252,plot,1337544366 +221109,3409,cool concept,1419091902 +221109,3409,gore,1419091899 +221109,3535,dark comedy,1419090943 +221109,3535,Disturbing,1419090954 +221109,3535,humorous,1419090951 +221109,3535,Nudity (Topless),1419090963 +221109,3535,psychological,1419090946 +221109,3535,psychology,1419090932 +221109,3556,psychology,1337546223 +221109,3556,visually appealing,1337546226 +221109,3698,Arnold Schwarzenegger,1394055222 +221109,3698,Dystopia,1394055225 +221109,3698,dystopic future,1394055227 +221109,3897,coming of age,1373283016 +221109,3897,drama,1373283028 +221109,3897,great soundtrack,1373282997 +221109,3897,journalism,1373283013 +221109,3897,Nudity (Topless - Notable),1373283009 +221109,3897,writers,1373283001 +221109,4007,business,1339095474 +221109,4007,corporate America,1339095467 +221109,4007,corruption,1339095465 +221109,4007,greed,1339095470 +221109,4007,idealism,1339095446 +221109,4007,Michael Douglas,1339095452 +221109,4007,stock market,1339095455 +221109,4007,US history,1339095457 +221109,4025,chick flick,1373726728 +221109,4025,Drama,1373726736 +221109,4025,girlie movie,1373726741 +221109,4025,ridiculous,1373726725 +221109,4148,Anthony Hopkins,1377381167 +221109,4148,disturbing,1377381181 +221109,4148,italy,1377381172 +221109,4148,psychology,1377381177 +221109,4148,serial killer,1377381175 +221109,4235,Alejandro Gonzalez Inarritu,1337544872 +221109,4262,Al Pacino,1337544823 +221109,4310,Romance,1419091232 +221109,4310,romantic,1419091236 +221109,4344,computers,1337271503 +221109,4344,funny,1337271523 +221109,4344,hackers,1337271506 +221109,4344,hacking,1337271508 +221109,4344,Nudity (Topless - Notable),1337271517 +221109,4344,slow,1337271528 +221109,4351,70mm,1384555140 +221109,4351,action-packed,1384555137 +221109,4351,adrenaline junkie,1384555138 +221109,4351,relentless,1384555150 +221109,4367,Angelina Jolie,1337543032 +221109,4367,sexy,1337809714 +221109,4373,Louis C.K.,1375470059 +221109,4447,chick flick,1373726666 +221109,4447,cute,1373726671 +221109,4447,feminism,1373726664 +221109,4447,Gay stereotypes,1373726661 +221109,4447,girlie movie,1373726648 +221109,4447,stupid,1373726656 +221109,4718,comedy,1419091128 +221109,4718,Notable Nudity,1419091126 +221109,4718,Nudity (Topless),1419091124 +221109,4776,coming of age,1379977745 +221109,4776,denzel washington,1379977775 +221109,4776,plot,1379977762 +221109,4776,twist ending,1379977770 +221109,4788,Oscar (Best Foreign Language Film),1337270476 +221109,4788,Russian,1337270487 +221109,4890,moralistic,1343527594 +221109,4973,romance,1384019548 +221109,5147,Ingmar Bergman,1395539637 +221109,5147,meditative,1395539659 +221109,5147,reflective,1395539645 +221109,5269,awkward,1378211255 +221109,5269,disturbing in a bad way,1378211252 +221109,5269,psychology,1378211264 +221109,5269,teacher student relationship,1378211258 +221109,5269,Very interesting,1378211270 +221109,5319,Argentina,1340543957 +221109,5319,con artists,1340543939 +221109,5319,CONS AND SCAMS,1340543942 +221109,5319,Predictable,1340543948 +221109,5319,twist ending,1340543945 +221109,5378,franchise,1373715552 +221109,5378,romance,1373715550 +221109,5466,Yvan Attal,1344755009 +221109,5502,Alien Invasion,1373727521 +221109,5502,aliens,1373727524 +221109,5502,silly,1373727517 +221109,5502,stupid,1373727518 +221109,5630,Anthony Hopkins,1419091973 +221109,5630,psychology,1419091974 +221109,5679,disturbing,1337810238 +221109,5679,horror,1337810227 +221109,5679,suspense,1337810230 +221109,5903,dystopia,1400795559 +221109,5903,martial arts,1400795575 +221109,5903,revolution,1400795573 +221109,5903,thought-provoking,1400795562 +221109,5903,totalitarianism,1400795561 +221109,5903,visually stunning,1400795564 +221109,5954,Edward Norton,1338938189 +221109,5954,powerful ending,1338938510 +221109,5956,Martin Scorsese,1337546651 +221109,6058,gore,1419091939 +221109,6058,Nudity (Topless),1419091932 +221109,6058,sadistic,1419091935 +221109,6058,violent,1419091937 +221109,6155,battle of the sexes,1373726804 +221109,6155,chick flick,1373726827 +221109,6155,deception to win wager,1373726822 +221109,6155,Good Romantic Comedies,1373726842 +221109,6155,insulting,1373726817 +221109,6155,not funny,1373726808 +221109,6155,pandering,1373726813 +221109,6218,coming of age,1337547558 +221109,6218,culture clash,1337547556 +221109,6218,thought-provoking,1337547568 +221109,6242,atmospheric,1339096338 +221109,6243,curse,1339096283 +221109,6243,japanese horror,1339096281 +221109,6378,Edward Norton,1337973838 +221109,6378,great soundtrack,1337973850 +221109,6378,remake,1337973845 +221109,6378,twists & turns,1337973842 +221109,6383,street race,1337973773 +221109,6385,feminism,1373154486 +221109,6385,feminist,1373154489 +221109,6385,Girl Power,1373154492 +221109,6385,women,1373154501 +221109,6542,anti-war,1337546107 +221109,6542,cultural customs and traditions,1337546109 +221109,6542,human relationship,1337546117 +221109,6750,relationships,1377027962 +221109,6750,Woody Allen,1377027964 +221109,6874,martial arts,1337810184 +221109,6874,Quentin Tarantino,1337810181 +221109,6874,quirky,1337810189 +221109,6874,visually appealing,1337810192 +221109,6957,Billy Bob Thornton,1394051171 +221109,6957,black comedy,1394051166 +221109,6957,surprisingly funny,1394051166 +221109,7022,controversial,1452429577 +221109,7022,survival,1452429574 +221109,7046,Jack Nicholson,1339096237 +221109,7046,seen more than once,1339096246 +221109,7046,very funny!,1339096242 +221109,7156,Errol Morris,1396024902 +221109,7156,History,1396024905 +221109,7156,thought provoking,1396024914 +221109,7241,existentialism,1380404490 +221109,7241,survival,1380404483 +221109,7254,mathematics,1337547657 +221109,7254,time travel,1337547655 +221109,7254,twist ending,1337547654 +221109,7256,disturbing,1380648779 +221109,7256,Friendship,1380648781 +221109,7256,movie to see,1380648803 +221109,7256,near death,1380648795 +221109,7256,pivotal decision,1380648784 +221109,7256,survival,1380648793 +221109,7256,TRIUMPH OF THE HUMAN SPIRIT,1380648786 +221109,7256,watch again,1380648790 +221109,7265,Nudity (Full Frontal - Notable),1379549267 +221109,7265,Nudity (Full Frontal),1379549261 +221109,7265,sexual,1379549263 +221109,7318,overrated,1453027130 +221109,7318,propaganda,1453027126 +221109,7318,Sadistic,1453027123 +221109,7318,violent,1453027134 +221109,7371,cult film,1337880975 +221109,7371,disturbing,1337880977 +221109,7371,experimental,1337880979 +221109,7371,too long,1337809203 +221109,7444,Child as Adult,1419092785 +221109,7444,romance,1419092778 +221109,8119,blues,1339629077 +221109,8119,DEAL WITH THE DEVIL,1339629084 +221109,8360,animation,1337547963 +221109,8370,Blind Swordsman,1339367356 +221109,8370,blindness,1339367345 +221109,8464,documentary,1419091359 +221109,8464,social criticism,1419091356 +221109,8638,hippies,1339338908 +221109,8638,quirky,1339338251 +221109,8638,sequel,1339338259 +221109,8638,writers,1339337650 +221109,8644,artificial intelligence,1373715456 +221109,8644,book was better,1373715444 +221109,8644,Isaac Asimov,1373715448 +221109,8644,thought provoking,1373715452 +221109,8783,Interesting,1369313671 +221109,8783,psychological,1369313663 +221109,8783,small town,1369313666 +221109,8783,twist ending,1369313661 +221109,8807,Buddy movie,1419091844 +221109,8807,stoner comedy,1419091840 +221109,8917,hilarious,1389929872 +221109,8917,political commentary,1389929869 +221109,8917,satire,1389929862 +221109,8917,Trey Parker,1389929867 +221109,8958,music,1419092642 +221109,8958,rhythm & blues,1419092640 +221109,8961,animation,1337545459 +221109,8961,Pixar,1337545456 +221109,8969,bad sequel,1394052446 +221109,8969,previsible,1394052454 +221109,8969,unfunny,1394052449 +221109,8969,unrealistic,1394052450 +221109,8969,weak,1394052452 +221109,8977,Ancient Greece,1419094558 +221109,8977,History,1419094555 +221109,8977,Nudity (Topless),1419094559 +221109,8983,amazing photography,1375222460 +221109,8983,Beautiful,1375222454 +221109,8983,beautifully filmed,1375222462 +221109,8983,fantasy,1375222466 +221109,8983,Kick-Butt Women,1375222488 +221109,8983,kung fu,1375222483 +221109,8983,plot twist,1375222521 +221109,8983,Sexualized violence,1375222471 +221109,8983,stylized,1375222478 +221109,8983,unrealistic,1375222474 +221109,9010,beautiful color,1340920644 +221109,9010,excellent cinematography,1340920650 +221109,9010,fantastical imagery,1340920647 +221109,9010,Nudity (Topless - Notable),1340920653 +221109,9010,sad ending,1340920657 +221109,26729,subgenre:MakingOf (movie),1375470736 +221109,27036,England,1369253970 +221109,27036,Helena Bonham Carter,1369253975 +221109,27036,medieval,1369253968 +221109,27478,Sacha Baron Cohen,1365162902 +221109,30812,Martin Scorsese,1419091592 +221109,30812,mental illness,1419091597 +221109,31696,heaven and hell,1339096686 +221109,31696,Keanu Reeves,1339096690 +221109,31696,spiritual warfare,1339096692 +221109,34048,father daughter relationship,1369313469 +221109,34048,slow,1369313465 +221109,34319,dystopia,1373715359 +221109,34319,predictable,1373715345 +221109,34319,surprise ending,1373715361 +221109,34319,Terrible Acting,1373715347 +221109,35836,geeks,1376577507 +221109,35836,romantic comedy,1376577513 +221109,36401,fairy tales,1369254058 +221109,36401,Fantasy,1369254061 +221109,36529,dark comedy,1337546636 +221109,36529,Nicolas Cage,1337546633 +221109,36529,political,1337546640 +221109,39446,bad script,1339096409 +221109,39446,clever,1339096407 +221109,39446,not as good as the first,1339096384 +221109,39446,plot twists,1339096403 +221109,39446,serial killer,1339096399 +221109,39446,stereotypes,1339096390 +221109,39446,suspense,1339096392 +221109,41285,Scarlett Johansson,1337886233 +221109,41285,Woody Allen,1337886237 +221109,41566,based on a book,1337547694 +221109,41566,magic,1337547699 +221109,41569,big budget,1373239736 +221109,41569,emotional,1373206001 +221109,41569,Jack Black,1373239729 +221109,41569,romance,1373205998 +221109,41571,cinematography,1394052332 +221109,41571,history,1394052335 +221109,41571,inaccurate,1394052337 +221109,41571,Japanese culture,1394052332 +221109,41571,Oscar (Best Cinematography),1394052342 +221109,41571,slavery,1394052340 +221109,41997,revenge,1337546613 +221109,41997,Steven Spielberg,1337546611 +221109,41997,thought-provoking,1337546616 +221109,43396,Anthony Hopkins,1337546333 +221109,43396,dreams,1337546342 +221109,43396,emotional,1337546339 +221109,43396,speed,1337546348 +221109,44974,claustrophobic,1394060933 +221109,44974,controversial,1394060910 +221109,44974,disturbing,1394060912 +221109,44974,drugs,1394060931 +221109,44974,Ellen Page,1394061341 +221109,44974,intense,1394060916 +221109,44974,psychology,1394060918 +221109,44974,revenge,1394060928 +221109,44974,suspenseful,1394060921 +221109,44974,thriller,1394060925 +221109,44974,torture,1394060929 +221109,44974,visually appealing,1394060923 +221109,45668,bad acting,1373725278 +221109,45668,cliche,1373725289 +221109,45668,Inconsistencies,1373725283 +221109,45668,Plot holes,1373725285 +221109,45720,chickflick,1453026405 +221109,45720,Meryl Streep,1453026396 +221109,46335,sequel,1337973794 +221109,47099,inspirational,1337546921 +221109,47610,Edward Norton,1394050756 +221109,47610,great ending,1394050797 +221109,47610,twist ending,1394050761 +221109,47997,dark comedy,1419093389 +221109,47997,decline of civilization,1419093401 +221109,47997,dystopia,1419093387 +221109,47997,satire,1419093404 +221109,47997,social commentary,1419093384 +221109,47997,thought provoking,1419093382 +221109,47997,Underrated,1419093390 +221109,47999,religion,1453027605 +221109,48043,alternate reality,1339628645 +221109,48043,atmospheric,1339628647 +221109,48043,fountain of youth,1339628661 +221109,48043,religion,1339628656 +221109,48043,thought-provoking,1339628652 +221109,48043,time travel,1339628665 +221109,48043,twist ending,1339628676 +221109,48043,visually appealing,1339628654 +221109,48304,brutality,1453027267 +221109,48304,cinematography,1453027259 +221109,48385,comedy,1365162719 +221109,48385,controversial,1365162721 +221109,48385,mockumentary,1365162716 +221109,48385,social commentary,1365162713 +221109,48394,bittersweet,1337545524 +221109,48394,twist ending,1337545521 +221109,48516,Jack Nicholson,1337545579 +221109,48516,Martin Scorsese,1337545575 +221109,48696,adultery,1392662729 +221109,48696,dark,1392662706 +221109,48696,disturbing,1392662680 +221109,48696,drama,1392662733 +221109,48696,Kate Winslet,1392662726 +221109,48696,Nudity (Topless - Notable),1392662689 +221109,48696,Nudity (Topless),1392662694 +221109,48696,Oscar Nom 2007,1392662715 +221109,48696,PARENTHOOD,1392662712 +221109,48696,reflective,1392662684 +221109,48696,satirical,1392662699 +221109,48696,small town,1392662701 +221109,48696,SUBURBAN DYSFUNCTION,1392662682 +221109,48780,complicated,1337547306 +221109,48780,nonlinear,1337547297 +221109,48780,revenge,1337547304 +221109,48780,Scarlett Johansson,1337547301 +221109,48780,twist ending,1337547299 +221109,49649,bad acting,1453027574 +221109,49649,cliche,1453027571 +221109,51991,MOTHERS AND SONS,1337270784 +221109,53125,Keira Knightley,1419090861 +221109,53993,Biblical,1394052033 +221109,53993,Christianity,1394052035 +221109,53993,Morgan Freeman,1394052041 +221109,53993,Steve Carell,1394052044 +221109,54259,coming of age,1339941808 +221109,54259,fairy tale,1339941798 +221109,54259,fantasy,1339941800 +221109,54259,fantasy world,1339941816 +221109,54259,magic,1339941821 +221109,54259,pirates,1339941818 +221109,54259,Robert De Niro,1339941802 +221109,54995,Bruce Willis,1339627605 +221109,54995,crude humor,1339627597 +221109,54995,grindhouse,1339627600 +221109,54995,over the top,1339627608 +221109,54995,Robert Rodriguez,1339627602 +221109,54995,twins,1339627611 +221109,55247,adventure,1337545810 +221109,55247,great soundtrack,1337545796 +221109,55247,self discovery,1337545806 +221109,55995,3D,1373206192 +221109,55995,CG animation,1373206202 +221109,55995,cgi,1373206207 +221109,56949,akward,1373726881 +221109,56949,bad acting,1373726886 +221109,56949,bad dialogue,1373726889 +221109,56949,chick flick,1373726896 +221109,56949,comedy romance,1373726908 +221109,56949,full of stupid things,1373726905 +221109,56949,unbelievable,1373726921 +221109,58047,bad acting,1384019248 +221109,58047,romantic comedy,1384019252 +221109,58627,inspirational,1367789228 +221109,58627,Martial Arts,1367789230 +221109,58627,MMA Fighting,1367789234 +221109,58627,Revenge,1367789237 +221109,59369,action,1370265481 +221109,59369,cynical,1370265494 +221109,59369,fight scenes,1370265485 +221109,59369,thriller,1370265487 +221109,59369,torture,1370265489 +221109,59421,Cameron Diaz,1373727333 +221109,59421,marriage,1373727325 +221109,59421,romantic,1373727338 +221109,60161,futurama,1337548279 +221109,60161,intelligent humor,1337548278 +221109,62999,Chris Rock,1376830440 +221109,62999,Sacha Baron Cohen,1376830446 +221109,64575,Catholicism,1394328450 +221109,64575,great acting,1394328465 +221109,64575,Meryl Streep,1394328470 +221109,64575,moral ambiguity,1394328453 +221109,64575,Philip Seymour Hoffman,1394328467 +221109,64575,thought-provoking,1394328458 +221109,66203,chick flick,1373727053 +221109,66203,romance,1373727048 +221109,66203,romantic comedy,1373727039 +221109,66203,superficial,1373727030 +221109,68157,black comedy,1337543206 +221109,68157,Brad Pitt,1337543204 +221109,68157,great soundtrack,1337543208 +221109,68157,Quentin Tarantino,1337543201 +221109,68157,satire,1337543210 +221109,68157,visually appealing,1337543211 +221109,68237,dystopia,1394050913 +221109,68237,Kevin Spacey,1394050909 +221109,68237,psychology,1394050915 +221109,68237,twist ending,1394050916 +221109,68791,bad acting,1373715416 +221109,68791,boring,1373715418 +221109,68791,franchise,1373715414 +221109,68791,pace,1373715421 +221109,68791,weak plot,1373715409 +221109,68954,drama,1382214540 +221109,68954,romance,1382214533 +221109,68954,romantic,1382214535 +221109,70293,inspiring,1453026366 +221109,70293,Meryl Streep,1453026358 +221109,70293,shallow,1453026353 +221109,70862,emphasis on the guitar alone in rock and roll,1337547843 +221109,70862,Jack White,1337547848 +221109,70862,music documentary,1337547852 +221109,71520,Jennifer Garner,1399538464 +221109,71520,Louis C.K.,1399538467 +221109,71520,Ricky Gervais,1399538461 +221109,71579,cheesy,1339745963 +221109,71579,coming of age,1339745981 +221109,71579,Emma Thompson,1339745989 +221109,71579,Paris,1339745977 +221109,71579,predictable,1339745968 +221109,71579,virginity,1339745974 +221109,72641,family,1339627143 +221109,72641,feel good,1339627139 +221109,72641,feel good movie,1339627137 +221109,72641,inspirational,1339627141 +221109,72641,sports,1339627146 +221109,72641,touching,1339627149 +221109,73017,predictable,1337547792 +221109,73321,Bible,1394051780 +221109,73321,Christianity,1394051776 +221109,73344,long,1339745530 +221109,73344,overrated,1339745538 +221109,74727,Evgeni Leonov,1337545603 +221109,74727,Soviet Union,1337545606 +221109,74946,bromantic comedy,1373727452 +221109,74946,cute,1373727461 +221109,74946,formulaic,1373727467 +221109,74946,hottie,1373727456 +221109,76077,Nudity (Topless),1376577362 +221109,77206,slapstick humor,1373726014 +221109,77206,stupid comedy,1373726004 +221109,78499,Pixar,1419091792 +221109,79091,cute girls,1419093126 +221109,79091,minions,1419093134 +221109,79091,orphans,1419093130 +221109,79357,cinematography,1339628538 +221109,79357,coming of age,1339628561 +221109,79357,confusing,1339628566 +221109,79357,nonlinear,1339628540 +221109,79357,romance,1339628556 +221109,79357,Sarah Polley,1339628569 +221109,79357,soundtrack,1339628550 +221109,79357,style over substance,1339628573 +221109,79357,surreal,1339628542 +221109,79357,thought provoking,1339628546 +221109,79357,time travel,1339628544 +221109,79702,crude humor,1384019514 +221109,79702,fantasy,1384019512 +221109,79702,hilarious,1384019507 +221109,79702,surreal,1384019510 +221109,80166,dull,1384019302 +221109,80166,Jennifer Aniston,1384019305 +221109,80166,midlife crisis,1384019308 +221109,80166,predictable ending,1384019300 +221109,80166,sentimental,1384019311 +221109,80219,black comedy,1337809913 +221109,80219,dark comedy,1337809943 +221109,80219,dark humor,1337809925 +221109,80219,drugs,1337809927 +221109,80219,Nudity (Full Frontal - Notable),1337809915 +221109,80219,satire,1337809934 +221109,80219,Steven Seagal,1337809946 +221109,80219,violent,1337809937 +221109,80463,computers,1346153087 +221109,80463,dark comedy,1346153085 +221109,80463,hacking,1346153091 +221109,80549,Christianity,1370265607 +221109,80549,comedy,1370265602 +221109,80549,dialogue,1370265588 +221109,80549,Emma Stone,1370265586 +221109,80549,funny,1370265599 +221109,80549,parody,1370265597 +221109,80549,satire,1370265595 +221109,80549,sexuality,1370265590 +221109,80549,silly,1370265609 +221109,80549,unrealistic,1370265612 +221109,80549,witty,1370265592 +221109,81591,Natalie Portman,1419092129 +221109,81591,overrated,1419092265 +221109,84844,Moscow,1339627026 +221109,84844,quotable,1339627019 +221109,84844,Sergey Bodrov Jr.,1339627016 +221109,84844,soundtrack,1339627052 +221109,85414,mindfuck,1369163583 +221109,85414,suspense,1369163577 +221109,85414,twist ending,1369163570 +221109,85736,not a movie,1337545920 +221109,86332,cgi,1337546075 +221109,86332,predictable,1337546071 +221109,86347,explicit language,1375470270 +221109,86347,hilarious,1375470268 +221109,86347,witty,1375470275 +221109,86377,Louis C.K.,1337544468 +221109,86377,stand-up comedy,1375470211 +221109,86898,beautifully filmed,1393965677 +221109,86898,cinematography,1393965680 +221109,86898,meaning of life,1393965682 +221109,86898,thought-provoking,1393965685 +221109,86911,Zach Galifianakis,1394054886 +221109,87222,Weak plot,1337545501 +221109,87306,audience intelligence underestimated,1369314525 +221109,87306,bad plot,1369314523 +221109,87306,bad science,1369314521 +221109,87306,manipulative,1369314527 +221109,88810,feminism,1374796843 +221109,89118,Antonio Banderas,1337269261 +221109,89118,boring,1337269253 +221109,89118,Pedro Almodóvar,1337269269 +221109,89118,spanish,1337269266 +221109,89492,Brad Pitt,1339627200 +221109,89745,predictable,1369164104 +221109,89904,drama,1375530707 +221109,89904,not original,1375530714 +221109,89904,Oscar (Best Picture),1375530711 +221109,89904,pride,1375532467 +221109,90439,business,1380143595 +221109,90439,Cynicism,1380143591 +221109,90439,Kevin Spacey,1380143599 +221109,90439,New York City,1380143597 +221109,90439,strange ending,1380143605 +221109,90439,suspense,1380143603 +221109,90439,tense,1380143601 +221109,90576,chick flick,1373727183 +221109,90576,romance,1373727196 +221109,90866,bittersweet,1375533469 +221109,90866,France,1375533472 +221109,90866,heartwarming,1375533492 +221109,90866,Jude Law,1375533476 +221109,90866,Martin Scorsese,1375533480 +221109,90866,Paris,1375533483 +221109,90866,Sacha Baron Cohen,1375533487 +221109,91500,based on a book,1369313390 +221109,91529,great ending,1369164059 +221109,91529,nuclear bomb,1369164057 +221109,91542,Robert Downey Jr.,1419093204 +221109,92259,friendship,1339626968 +221109,92259,soundtrack,1339626973 +221109,92259,touching,1339626976 +221109,92535,Louis C.K.,1375470335 +221109,92535,stand-up comedy,1375470339 +221109,93805,alternate history,1373632377 +221109,93805,chaotic,1373632391 +221109,93805,feminism,1373632517 +221109,93805,German,1373632375 +221109,93805,Nazis,1373632371 +221109,94677,political satire,1365106054 +221109,94677,sacha baron cohen,1365106161 +221109,94677,satire,1365106051 +221109,94677,Sex Comedy,1365106163 +221109,94864,predictable,1369313707 +221109,95441,bromantic,1376577421 +221109,95441,predictable,1376577404 +221109,96606,beautiful cinematography,1392676212 +221109,96606,meditative,1392676215 +221109,96606,Panavision System 65,1392676227 +221109,96606,time-lapse,1392676217 +221109,96606,wordless,1392676220 +221109,96861,happy ending,1370265381 +221109,96861,kidnapping,1370265386 +221109,96861,predictable,1370265376 +221109,96861,Turkey,1370265379 +221109,97306,dark comedy,1373590707 +221109,97752,multiple storylines,1369314038 +221109,97752,philosophy,1369314036 +221109,97752,social commentary,1369314033 +221109,97752,visually appealing,1369314026 +221109,97752,Wachowski Brothers,1369314057 +221109,99114,music,1372709871 +221109,101525,ambitious,1390621997 +221109,101525,Father figures,1390622002 +221109,101525,psychological,1390622005 +221109,102125,audience intelligence underestimated,1369164136 +221109,102125,bad science,1369164140 +221109,102125,silly,1369164142 +221109,102993,coming of age,1387142849 +221109,102993,divorce,1387142859 +221109,102993,Steve Carell,1387142876 +221109,102993,summer,1387142881 +221109,103980,acting,1392579675 +221109,103980,Cate Blanchett,1392579668 +221109,103980,financial crisis,1392579692 +221109,103980,nervous breakdown,1392579678 +221109,103980,Sally Hawkins,1392579681 +221109,103980,Woody Allen,1392579684 +221109,103980,writing,1392579687 +221109,104990,pickup,1390515446 +221109,105250,Adam Curtis,1396024807 +221109,105250,advertising,1396024811 +221109,105250,capitalism,1396024815 +221109,105250,democracy,1396024817 +221109,105250,Edward Bernays,1396024851 +221109,105250,Freud,1396024820 +221109,105250,psychoanalysis,1396024824 +221109,105250,psychology,1396024827 +221109,105593,intoxicants,1395359120 +221109,105593,police corruption,1395359124 +221109,105593,surreal,1395359127 +221109,105844,cinematography,1394748734 +221109,108190,anti-intellectual,1453029563 +221109,108190,bad writing,1453029565 +221109,108190,female protagonist,1453029568 +221109,109848,beautiful photography,1453026570 +221109,109848,Kubrick-like,1453026564 +221109,109848,nudity (full frontal),1453026561 +221109,109848,unnerving,1453026567 +221109,109848,visually appealing,1453026571 +221109,110127,unlikeable characters,1453027175 +221109,114180,plot holes,1453029529 +221109,114180,weak plot,1453029531 +221109,122886,feminism,1453026058 +221109,122886,feminist,1453026064 +221109,122886,Plot Recycling,1453026072 +221109,134130,cheesy ending,1453029266 +221109,134130,overrated,1453029269 +221109,134130,predictible,1453029271 +221111,342,ummarti2006,1149997339 +221111,858,masterpiece,1367886160 +221111,926,ummarti2006,1148750600 +221111,1068,noir thriller,1367885991 +221111,1206,masterpiece,1367886160 +221111,1228,masterpiece,1367886161 +221111,1337,ummarti2007,1176011221 +221111,1974,ummarti2006,1150587336 +221111,1979,ummarti2006,1151128935 +221111,2019,masterpiece,1367886162 +221111,2208,ummarti2006,1166416963 +221111,2210,ummarti2007,1176388941 +221111,2550,supernatural,1367886186 +221111,2600,mts.vod,1171216955 +221111,2716,supernatural,1367886186 +221111,2762,excellent script,1367886234 +221111,3798,supernatural,1367886186 +221111,4298,ummarti2007,1188875144 +221111,4391,ummarti2006,1145850775 +221111,4720,supernatural,1367886187 +221111,4878,ummarti2006,1145851454 +221111,4902,supernatural,1367886187 +221111,5026,ummarti2006,1145852761 +221111,5833,ummarti2006,1145884503 +221111,5903,ummarti2006,1147628377 +221111,6193,mentor,1367886050 +221111,6220,ummarti2006,1154289390 +221111,6373,ummarti2006,1164489120 +221111,6548,ummarti2007,1175988591 +221111,6615,ummarti2006,1146248445 +221111,6755,ummarti2006,1148855375 +221111,6820,ummarti2006,1145850684 +221111,6902,ummarti2006,1145851235 +221111,6953,ummarti2006,1145850755 +221111,7022,ummarti2006,1145885183 +221111,7099,ummarti2006,1156215246 +221111,7217,noir thriller,1367885991 +221111,7223,noir thriller,1367885992 +221111,7297,ummarti2006,1145900805 +221111,7335,noir thriller,1367885991 +221111,7773,ummarti2006,1145851081 +221111,7943,noir thriller,1367885993 +221111,7981,excellent script,1367886234 +221111,8376,ummarti2006,1149393041 +221111,8972,ummarti2006,1145850997 +221111,25927,noir thriller,1367885992 +221111,26776,ummarti2007,1183838776 +221111,27317,ummarti2006,1167490364 +221111,27491,ummarti2007,1193864036 +221111,27627,ummarti2006,1174057105 +221111,27834,ummarti2006,1145901349 +221111,27839,ummarti2006,1145851311 +221111,27882,ummarti2007,1195701694 +221111,31658,ummarti2006,1148951788 +221111,31804,ummarti2007,1186077377 +221111,32011,ummarti2006,1145850915 +221111,33672,ummarti2007,1188608659 +221111,33896,ummarti2006,1146352750 +221111,34072,ummarti2006,1145852430 +221111,34405,ummarti2006,1145850709 +221111,34542,ummarti2006,1145852264 +221111,36527,ummarti2006,1145852478 +221111,37741,ummarti2006,1145851834 +221111,38061,ummarti2006,1152480920 +221111,39183,ummarti2006,1145851703 +221111,39381,ummarti2006,1161658909 +221111,40583,ummarti2006,1151879568 +221111,40732,ummarti2006,1155007696 +221111,41716,ummarti2006,1155432129 +221111,42718,ummarti2006,1157924599 +221111,43460,ummarti2006,1157945994 +221111,44191,ummarti2006,1145850744 +221111,44195,ummarti2006,1145851560 +221111,44199,ummarti2006,1145850765 +221111,44694,ummarti2006,1167098997 +221111,44709,mentor,1367886048 +221111,44709,ummarti2006,1146415385 +221111,44761,ummarti2007,1175988549 +221111,44974,ummarti2006,1165204022 +221111,45081,ummarti2007,1173657456 +221111,45186,ummarti2006,1147051094 +221111,45447,ummarti2007,1169963734 +221111,45499,ummarti2006,1148750916 +221111,45950,ummarti2006,1166855782 +221111,46530,ummarti2006,1153118165 +221111,46578,ummarti2006,1157511269 +221111,46850,ummarti2006,1164601591 +221111,46948,ummarti2006,1153716321 +221111,47610,mts.vod,1171651192 +221111,47629,ummarti2007,1177884490 +221111,48082,ummarti2007,1175998178 +221111,48516,ummarti2006,1161586592 +221111,48774,ummarti2007,1169964206 +221111,48780,ummarti2006,1161586556 +221111,49272,ummarti2007,1178976861 +221111,49347,ummarti2007,1186078028 +221111,49651,ummarti2007,1186441038 +221111,51255,ummarti2007,1187567529 +221111,51540,ummarti2007,1186440721 +221111,51662,ummarti2007,1175987892 +221111,51709,ummarti2007,1181151145 +221111,52328,ummarti2007,1187568153 +221111,52722,ummarti2007,1178839421 +221111,52885,ummarti2007,1195701871 +221111,53000,ummarti2007,1180229399 +221111,53127,ummarti2007,1195702036 +221111,53322,ummarti2007,1183838288 +221111,53464,ummarti2007,1195701292 +221111,53894,ummarti2007,1183838315 +221111,53996,ummarti2007,1186077154 +221111,54272,ummarti2007,1187567274 +221111,55118,ummarti2007,1193863998 +221111,55820,ummarti2007,1196137593 +221111,56339,supernatural,1367886187 +221111,64993,melancholic,1367885865 +221111,82242,original,1367885820 +221113,356,epic,1426037844 +221113,356,flashbacks,1426037844 +221113,356,tom hanks,1426037844 +221141,260,must see,1438058807 +221141,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1438058837 +221143,168,Sean Connery,1146903673 +221148,81791,Ending,1294607674 +221158,260,conflict,1440638733 +221158,260,sci-fi,1440638727 +221158,93988,based on book,1440640238 +221158,93988,Period Drama,1440640240 +221158,93988,romance,1440640242 +221161,2019,classic,1243349749 +221161,7022,explosions,1249678385 +221161,7022,goretastic,1249678390 +221161,7022,survival,1249678367 +221161,7022,Takeshi Kitano,1249678371 +221172,98809,Favourtie,1444287291 +221172,117529,dinosaurs,1444287382 +221176,5171,Crappy Remake,1386144940 +221188,2,Robin Williams,1143209727 +221188,5,steve martin,1143209074 +221188,16,Martin Scorsese,1143209622 +221188,19,Jim Carrey,1143209637 +221188,32,Brad Pitt,1143209785 +221188,50,Oscar (Best Supporting Actor),1143209818 +221188,110,Mel Gibson,1143208967 +221188,110,Oscar (Best Picture),1143208969 +221188,145,Will Smith,1143209944 +221188,160,Michael Crichton,1143209979 +221188,185,Sandra Bullock,1143210010 +221188,186,hugh grant,1143210019 +221188,225,Michael Crichton,1143209023 +221188,231,Jeff Daniels,1143209566 +221188,231,Jim Carrey,1143209564 +221188,253,Brad Pitt,1143210090 +221188,266,Brad Pitt,1143210110 +221188,266,Oscar (Best Cinematography),1143210111 +221188,296,Quentin Tarantino,1143210169 +221188,317,Christmas,1143210213 +221188,318,Stephen King,1143210206 +221188,337,Johnny Depp,1143209010 +221188,337,Leonardo DiCaprio,1143209012 +221188,344,Jim Carrey,1143210247 +221188,367,Jim Carrey,1143210265 +221188,377,Keanu Reeves,1143210312 +221188,377,Sandra Bullock,1143210310 +221188,480,Steven Spielberg,1143210435 +221188,485,Arnold Schwarzenegger,1143210444 +221188,500,Robin Williams,1143210457 +221188,508,Oscar (Best Actor),1143210476 +221188,551,Christmas,1143210526 +221188,588,disney,1143210654 +221188,592,Jack Nicholson,1143209528 +221188,594,Disney,1143210669 +221188,596,Disney,1143210662 +221188,597,Julia Roberts,1143210696 +221188,802,John Travolta,1143209016 +221188,904,Alfred Hitchcock,1143209435 +221188,1207,Oscar (Best Actor),1143209421 +221188,1917,Bruce Willis,1143208943 +221188,1982,John Carpenter,1143209545 +221188,2012,Christopher Lloyd,1143208945 +221188,2012,Michael J. Fox,1143208947 +221188,2959,Brad Pitt,1143208953 +221188,2959,Edward Norton,1143208952 +221188,3033,Mel Brooks,1143208961 +221188,3147,Stephen King,1143208867 +221188,3147,Tom Hanks,1143208871 +221188,3948,Ben Stiller,1143209559 +221188,3948,Robert De Niro,1143209557 +221188,5266,Jodie Foster,1143209044 +221188,5481,mike myers,1143209049 +221188,7451,High School,1143209224 +221191,1225,classical music,1266358690 +221205,260,fast paced,1425058694 +221205,260,horrible acting,1425058694 +221205,260,total and obvious cgi,1425058694 +221225,260,Science Fiction,1438072093 +221225,260,space action,1438072105 +221231,2959,storytelling,1254835868 +221260,151,Tim Roth,1388434217 +221260,177,cult,1387647712 +221260,267,comedy,1381686645 +221260,267,Damon Wayans,1381686638 +221260,355,Halle Berry,1385331189 +221260,355,John Goodman,1385331197 +221260,393,Jean-Claude Van Damme,1388286269 +221260,410,stupid,1383252630 +221260,435,stupid,1383614261 +221260,441,Ben Affleck,1383682803 +221260,441,ensemble cast,1383682798 +221260,441,Matthew McConaughey,1383682799 +221260,442,Prophetic,1388589418 +221260,485,deconstruction,1394596828 +221260,519,No Peter Weller,1382751794 +221260,839,sequel,1383416625 +221260,1061,Dustin Hoffman,1389489329 +221260,1061,Kevin Bacon,1389489331 +221260,1061,Robert De Niro,1389489333 +221260,1378,Warren G,1380335817 +221260,1487,plot,1393776442 +221260,1584,preachy,1375621477 +221260,1597,Julia Roberts,1384487484 +221260,1597,Mel Gibson,1384487488 +221260,1655,Affleck was the BOMB in Phantoms!,1377395746 +221260,1661,predictable,1388287060 +221260,1661,slow,1388287035 +221260,1687,bad plot,1391912504 +221260,1717,ending kinda ruined it,1380995990 +221260,1754,boring,1379548389 +221260,1792,the original is better,1390099181 +221260,1792,unnecessary sequel,1390099181 +221260,1801,boring,1384376865 +221260,1882,bad acting,1373162812 +221260,1882,Matthew Broderick,1373162822 +221260,1917,Aerosmith,1391483144 +221260,1917,pseudoscience,1391483130 +221260,1986,teens,1382751045 +221260,1993,Chucky,1383183272 +221260,2054,Rick Moranis,1385078287 +221260,2124,Christina Ricci,1383182501 +221260,2124,supernatural,1383182507 +221260,2124,theme song,1383182520 +221260,2297,visually appealing,1388434483 +221260,2353,Gene Hackman,1385078190 +221260,2353,Will Smith,1385078188 +221260,2355,animation,1385390452 +221260,2448,laughable,1377213554 +221260,2448,predictable,1377213544 +221260,2519,Vincent Price,1382751372 +221260,2539,Billy Crystal,1387142125 +221260,2539,Robert De Niro,1387142123 +221260,2701,Giant spider in the third act,1386736402 +221260,2701,Music video was better,1386736364 +221260,2701,so bad it's good,1386736377 +221260,2719,forgettable,1382135442 +221260,3273,change of tone,1381270717 +221260,3273,prerecorded message,1381270723 +221260,3448,Robin Williams,1388986301 +221260,3593,BAD special effects,1394943196 +221260,3593,incoherent,1394943200 +221260,3593,stupid plot,1394943208 +221260,3593,terrible dialogue,1394943209 +221260,4002,John Candy,1383182832 +221260,4002,Steve Martin,1383182830 +221260,4020,twist ending,1381864701 +221260,4030,twist,1382752389 +221260,4159,not to be taken seriously,1376701495 +221260,4223,long,1375642670 +221260,4388,anna faris,1382750732 +221260,4725,atmosphere,1388285715 +221260,4725,boring,1388285693 +221260,4725,slow paced,1388285703 +221260,4732,Danny Trejo,1384199208 +221260,4732,Swoosie Kurtz,1384199231 +221260,4734,Kevin Smith,1386735888 +221260,4735,Ice Cube,1392134983 +221260,4816,Highly quotable,1378869756 +221260,4816,Will Ferrell,1378869765 +221260,4821,Paul Walker,1391467749 +221260,4895,Dr. Dre,1379035205 +221260,4895,Eminem,1379035173 +221260,4895,Ludacris,1379035177 +221260,4895,Snoop Lion,1379035200 +221260,5094,Crappy Remake,1390457720 +221260,5108,overdramatic,1384619158 +221260,5108,preachy,1384619152 +221260,5108,silly,1384619163 +221260,5171,Crappy Remake,1375850148 +221260,5171,remake,1375850146 +221260,5476,teens,1383088657 +221260,5478,Scarlett Johansson,1382718199 +221260,5574,car chase,1377373926 +221260,5574,Good action,1377373928 +221260,5784,boring,1382059139 +221260,6059,predictable,1386024760 +221260,6264,bad cgi,1378253812 +221260,6264,bad science,1378253629 +221260,6264,stupid plot,1378253631 +221260,6265,Bernie Mac,1379172420 +221260,6265,second half was worse,1379172437 +221260,6593,body/gender-switch,1386025277 +221260,6593,Jamie Lee Curtis,1386025287 +221260,6670,change of tone,1384924160 +221260,6763,not funny,1394946233 +221260,6862,predictable,1387852697 +221260,6880,seriously boring,1385392106 +221260,6880,unnecessary remake,1385392104 +221260,6958,Movie based on a theme park ride,1388811812 +221260,7004,It's not a tumor,1391468886 +221260,7004,Who is your daddy and what does he do?,1391468867 +221260,7019,easily confused with other movie(s) (title),1393117781 +221260,7175,cgi,1384200334 +221260,7228,not cool,1372176074 +221260,7445,Christopher Walken,1376748309 +221260,7445,Denzel Washington,1376748302 +221260,7445,Marc Anthony,1376748283 +221260,7445,Tony Scott,1376748297 +221260,7846,fun,1382750546 +221260,7846,silly,1382750547 +221260,8042,directionless,1388874962 +221260,8363,snoop dogg,1385079205 +221260,8363,so bad it's funny,1385079203 +221260,8363,Sophia Vergara,1385079221 +221260,8783,Adrien Brody,1384200102 +221260,8783,Joaquin Phoenix,1384200104 +221260,8783,M. Night Shyamalan,1384200092 +221260,8783,twist ending,1384200081 +221260,8800,boring,1364664183 +221260,8800,slow,1364664186 +221260,8967,Jennifer Tilly,1383415657 +221260,8967,tongue-in-cheek,1383415900 +221260,8984,confusing,1370750514 +221260,8984,not as good as the first,1370750501 +221260,27491,uneven script,1389843771 +221260,27683,takes itself too seriously,1383184133 +221260,31878,martial arts,1377053020 +221260,31878,Nudity (Rear),1377053022 +221260,32596,Boring,1376188547 +221260,33437,Jet Li,1379893074 +221260,33437,Morgan Freeman,1379893077 +221260,34162,Owen Wilson,1385077379 +221260,34162,predictable,1385077381 +221260,34162,Rachel McAdams,1385077378 +221260,34162,Will Ferrell,1385077397 +221260,36519,cgi,1384731629 +221260,36519,Jason Statham,1384731429 +221260,37382,Amelie-esque color scheme,1390458297 +221260,37720,(not really) a true story,1376789346 +221260,37720,better than expected,1376789348 +221260,41569,CGI,1391470454 +221260,42013,South Park did it,1394155090 +221260,43558,not as good as the first,1390099705 +221260,43928,cgi,1384200652 +221260,46430,Tyrese Gibson,1385331020 +221260,47044,disappointing,1387649805 +221260,47952,Teen movie,1380845436 +221260,48142,boring,1381105792 +221260,53125,confusing,1371360660 +221260,53125,too many plot threads,1371360675 +221260,53808,better than expected,1380995266 +221260,53808,Rihanna,1380995256 +221260,53953,Samuel L. Jackson,1377660306 +221260,53953,wasted potential,1377660304 +221260,56003,boring,1355285397 +221260,56003,stupid,1355285408 +221260,58103,ending,1394153888 +221260,58103,repetitive,1394153890 +221260,58293,bad for history-sense,1378683226 +221260,58293,disappointing,1378683229 +221260,58293,Roland Emmerich,1378683217 +221260,58332,bad acting,1383184359 +221260,58332,idiotic characters,1383184360 +221260,58661,boring,1375495308 +221260,59103,kung fu,1378248445 +221260,59103,nice visuals,1378248449 +221260,60037,entertaining for the wrong reasons,1373399356 +221260,60037,weak dialogue,1373399359 +221260,60037,weak story,1373399361 +221260,60037,weak writing,1373399363 +221260,61250,Emma Stone,1376254200 +221260,61255,Bradley Cooper,1378682981 +221260,61255,Rainn Wilson,1378682953 +221260,61314,sequel,1383585155 +221260,64497,no investment in characters,1372213126 +221260,64497,simple plot,1372213124 +221260,64497,visually appealing,1372213131 +221260,65567,boring,1385523141 +221260,65567,predictable,1385523137 +221260,65772,predictable,1378673560 +221260,66509,long,1381687017 +221260,66509,not funny,1381687020 +221260,69093,disappointing sequel,1377924538 +221260,69436,bad script,1373429437 +221260,69436,comedy,1373429439 +221260,69436,stupid,1373429430 +221260,69640,boring,1374366584 +221260,69640,digital editing,1374366579 +221260,69640,handheld cameras,1374366581 +221260,70208,second half was worse,1376181511 +221260,70336,bad plot,1378869333 +221260,70336,shallow characters,1378869552 +221260,70336,Special Effects,1378869558 +221260,70994,sequel,1383416339 +221260,71205,Amanda Seyfried,1382841070 +221260,71205,Megan Fox,1382841060 +221260,71205,ridiculous,1382841055 +221260,71205,sexy,1382841058 +221260,71533,Mos Def,1382563976 +221260,71533,not funny,1382563969 +221260,71533,trailer was misleading,1382564004 +221260,71838,ending kinda ruined it,1376167094 +221260,71838,stupid,1376167100 +221260,71838,unrealistic,1376167096 +221260,73089,remake,1379200020 +221260,73089,twist ending,1379200044 +221260,73089,unlikeable characters,1379200029 +221260,74698,Dwayne Johnson,1389563287 +221260,75985,predictable,1379275651 +221260,76293,Mark Wahlberg,1375920092 +221260,76293,Mila Kunis,1375920098 +221260,78266,plot,1384481018 +221260,78266,predictable,1384481032 +221260,78266,weak ending,1384481013 +221260,78467,boring,1379545526 +221260,78467,Megan Fox,1379545528 +221260,78467,poor plot,1379545523 +221260,78467,waste of time,1379545524 +221260,79134,few funny scenes,1373071349 +221260,79134,No plot at al,1373071255 +221260,84601,not original,1384823189 +221260,84601,plot,1384823195 +221260,86852,Mel Gibson,1385079549 +221260,87028,predictable,1384650129 +221260,89139,Jack the Ripper,1388877146 +221260,89139,remake,1388877135 +221260,89192,easily confused with other movie(s) (title),1383087454 +221260,91483,dull,1383585060 +221260,91500,book was better,1387648862 +221260,91974,ended too soon,1382313745 +221260,92923,lack of character depth,1382301831 +221260,93838,awesome martial arts,1354155627 +221260,93838,thin plot,1354155620 +221260,95583,ending,1353122914 +221260,96567,story-in-a-story,1387171030 +221260,96728,great performances,1384731109 +221260,96728,Joaquin Phoenix,1384731114 +221260,96728,nothing happens,1384731137 +221260,96728,Philip Seymour Hoffman,1384731123 +221260,97697,boring,1389843181 +221260,97785,boring,1371057047 +221260,97785,not scary,1371057040 +221260,97860,not too much of a plot,1365035545 +221260,98154,too long,1390875553 +221260,98532,Epic Beard Man,1381864567 +221260,99112,cleavage,1356468683 +221260,100390,not funny,1384377276 +221260,100390,too long,1384377268 +221260,101088,beautiful,1389848104 +221260,101088,visually stylish,1389848107 +221260,101137,slow,1383182095 +221260,101283,not funny,1376969249 +221260,101285,Drags on,1377653258 +221260,101285,plot,1377653230 +221260,101362,Action,1377299070 +221260,101362,bad cgi,1377298933 +221260,102125,audience intelligence underestimated,1380995752 +221260,102194,Matthew McConaughey,1378606460 +221260,102407,anachronistic music,1380495218 +221260,102407,beautiful,1380495234 +221260,102481,better than expected,1368667345 +221260,102481,product placement,1368667391 +221260,102481,Will Ferrell,1368667366 +221260,102720,predictable,1394153753 +221260,102720,unimaginative,1394153779 +221260,102880,Jaden Smith,1382715917 +221260,103042,identity crisis,1371049231 +221260,103042,second half was worse,1371049107 +221260,103075,interesting concept,1386972292 +221260,103075,wasted potential,1386972293 +221260,103137,character development,1382382404 +221260,103137,Emma Watson,1382382423 +221260,103137,soundtrack,1382382415 +221260,103228,giant robots,1383586668 +221260,103228,visually appealing,1383586671 +221260,103253,obamacare,1376254089 +221260,103253,visually stunning,1376254119 +221260,103306,boring,1386369594 +221260,103339,unrealistic,1384616844 +221260,103483,better than the first,1381687165 +221260,103655,cgi,1386369132 +221260,103655,Jeff Bridges,1386369139 +221260,103655,Mary-Louise Parker,1386369148 +221260,103688,cliche,1384924657 +221260,103688,Lili Taylor,1384924603 +221260,103688,sound effects,1384924598 +221260,103688,Vera Farmiga,1384924606 +221260,103723,original good;sequel sucked,1374462254 +221260,103772,slow pacing,1374972332 +221260,103784,Krystyn Lambert,1387381980 +221260,103810,foot fetish,1391220209 +221260,103810,not as good as the first,1391219898 +221260,104241,too many characters,1394597159 +221260,104449,offensive,1377376060 +221260,104449,so bad it's funny,1377376034 +221260,104760,Basically Saw in a car,1388876243 +221260,104760,dumb fun,1388876172 +221260,104760,Selena Gomez,1388876199 +221260,104841,cgi,1381103219 +221260,104841,cinematography,1381103203 +221260,104908,time travel,1391914210 +221260,105386,CGI,1394323213 +221260,105585,ensemble cast,1381973925 +221260,105585,not as good as the first,1381973900 +221260,105653,I'm on a Boat,1394945178 +221260,105653,unbelievable,1394945158 +221260,105731,cgi,1382313329 +221260,105731,Chloë Grace Moretz,1382313361 +221260,105731,remake,1382313334 +221260,106046,Raul Julia,1383417228 +221260,106489,High frame rate,1389828487 +221260,107348,sequel,1387808890 +221260,108797,incest,1393291222 +221260,108945,Chinese Manufacturing,1394321947 +221260,108945,new suit,1394321961 +221265,150,stranded,1369480069 +221265,186,arnold,1369480174 +221265,380,arnold,1369480174 +221265,440,conspiracy theory,1369480299 +221265,485,arnold,1369480175 +221265,589,arnold,1369480174 +221265,592,dark hero,1369480134 +221265,593,Hannibal Lecter,1138262629 +221265,910,screwball comedy,1369480197 +221265,1097,stranded,1369480069 +221265,1179,neo-noir,1369480245 +221265,1240,arnold,1369480174 +221265,1285,cheerleading,1369480151 +221265,1291,spielberg,1369480415 +221265,1291,treasure,1369479992 +221265,1387,spielberg,1369480415 +221265,1391,mars,1369480113 +221265,1396,conspiracy theory,1369480299 +221265,1580,conspiracy theory,1369480299 +221265,1617,neo-noir,1369480245 +221265,1894,stranded,1369480070 +221265,1931,christian,1369480228 +221265,2022,christian,1369480228 +221265,2022,jesus,1369479974 +221265,2028,spielberg,1369480416 +221265,2115,spielberg,1369480416 +221265,2115,treasure,1369479992 +221265,2193,dragon,1369480321 +221265,2405,treasure,1369479992 +221265,2662,mars,1369480113 +221265,2840,jesus,1369479974 +221265,2916,arnold,1369480174 +221265,3264,cheerleading,1369480151 +221265,3300,stranded,1369480070 +221265,3996,dragon,1369480321 +221265,4638,stranded,1369480070 +221265,4878,short-term memory loss,1369480397 +221265,5445,spielberg,1369480415 +221265,6377,short-term memory loss,1369480397 +221265,6539,treasure,1369479992 +221265,6874,dark hero,1369480134 +221265,7318,jesus,1369479973 +221265,8529,stranded,1369480069 +221265,8622,conspiracy theory,1369480299 +221265,33162,christian,1369480228 +221265,59784,dragon,1369480321 +221267,260,jedi,1439758888 +221267,260,sci-fi,1439758877 +221298,345,queer,1194365871 +221298,345,test,1194365739 +221333,175,controversial,1445313115 +221359,994,italian,1137202084 +221359,8949,obsession,1137201824 +221359,8949,wine,1137201824 +221367,104841,3D effects,1384432905 +221367,104841,space,1384432884 +221367,104841,suspense,1384432887 +221367,106002,adapted from:book series,1384433232 +221367,106002,based on a book,1384433216 +221367,106002,children acting like adults,1384433228 +221367,106002,cliche characters,1384433186 +221367,106002,predictable,1384433187 +221367,106002,True to the book,1384433214 +221369,1234,Classic,1153274351 +221369,5971,Miyazaki,1147153619 +221369,6669,Kurosawa,1153274471 +221398,2762,psychological,1379597503 +221398,2762,twist ending,1379597500 +221398,6961,adultery,1379595836 +221398,41285,Scarlett Johansson,1379595976 +221398,41285,twist,1379595973 +221398,44199,great ending,1379596215 +221398,44199,intelligent thriller,1379596220 +221398,48780,magic,1379597388 +221398,48780,psychological,1379597421 +221398,48780,thriller,1379597427 +221398,48780,twist ending,1379597423 +221398,60950,Madness,1379596309 +221398,60950,Scarlett Johansson,1379596356 +221398,60950,sexuality,1379596364 +221451,1120,Nudity (Full Frontal - Notable),1215191810 +221451,1228,Martin Scorsese,1215193060 +221451,7091,Marx brothers,1215191063 +221453,1,animation,1248249498 +221453,1,children,1248249511 +221453,1,Disney,1248249494 +221453,6,atmospheric,1248031517 +221453,6,dialogue,1248032257 +221453,18,multiple storylines,1248045640 +221453,18,Tim Roth,1248045644 +221453,32,atmospheric,1248249633 +221453,32,Brad Pitt,1248249617 +221453,32,Bruce Willis,1248249620 +221453,32,design,1248249629 +221453,32,story,1248249627 +221453,47,twist ending,1248029849 +221453,70,George Clooney,1248045504 +221453,70,Harvey Keitel,1248045555 +221453,70,Quentin Tarantino,1248045514 +221453,70,Salma Hayek,1248045577 +221453,70,splatter,1248045520 +221453,70,twist ending,1248045528 +221453,70,vampires,1248045534 +221453,153,atmospheric,1248249740 +221453,153,Batman,1248249672 +221453,153,design,1248249736 +221453,153,jim carrey,1248249696 +221453,153,Nicole Kidman,1248249716 +221453,153,robin,1248249745 +221453,153,story,1248249734 +221453,153,title,1248249750 +221453,153,Tommy Lee Jones,1248249712 +221453,153,Val Kilmer,1248249724 +221453,296,atmospheric,1248249232 +221453,296,blood,1248249236 +221453,296,brutality,1248249216 +221453,296,dialogue,1248249246 +221453,296,foul language,1248249259 +221453,296,multiple storylines,1248249268 +221453,296,style,1248249242 +221453,318,friendship,1248053453 +221453,318,long,1248053478 +221453,318,prison,1248029461 +221453,318,prison escape,1248053445 +221453,318,twist ending,1248032083 +221453,431,romance,1248032367 +221453,431,sad,1248032367 +221453,480,characters,1248249337 +221453,480,childish,1248249371 +221453,480,children,1248249364 +221453,480,death,1248249382 +221453,480,design,1248249387 +221453,480,dinosaurs,1248249298 +221453,480,explanation,1248249329 +221453,480,funny,1248249349 +221453,480,happy end,1248249378 +221453,555,brutality,1248043447 +221453,555,dialogue,1248043440 +221453,555,romance,1248043431 +221453,555,story,1248043452 +221453,555,Val Kilmer,1248043426 +221453,592,atmospheric,1248249409 +221453,592,bizarre,1248249430 +221453,592,crime,1248249425 +221453,592,dark,1248249461 +221453,592,design,1248249473 +221453,592,ending,1248249454 +221453,592,Jack Nicholson,1248249419 +221453,592,Joker,1248249415 +221453,592,realistic,1248249437 +221453,592,serious,1248249441 +221453,592,stylized,1248249404 +221453,778,addiction,1248029819 +221453,778,characters,1248054320 +221453,778,Ewan McGregor,1248054305 +221453,778,story,1248054317 +221453,780,action,1248249542 +221453,780,aliens,1248249573 +221453,780,humorous,1248249580 +221453,780,story,1248249561 +221453,780,Will Smith,1248249529 +221453,858,acting,1248053388 +221453,858,Al Pacino,1248053325 +221453,858,family,1248053345 +221453,858,long,1248053363 +221453,858,mafia,1248031991 +221453,858,Marlon Brando,1248053385 +221453,858,melancholy,1248053332 +221453,858,Nudity (Topless),1248053371 +221453,858,organized crime,1248053335 +221453,858,story,1248053391 +221453,866,atmospheric,1248248069 +221453,866,erotic,1248248064 +221453,866,Gina Gershon,1248248090 +221453,866,jennifer tilly,1248248097 +221453,866,lesbian,1248248057 +221453,866,murder,1248248077 +221453,866,tense,1248248074 +221453,1089,characters,1248054489 +221453,1089,dialogue,1248054496 +221453,1089,heist,1248054508 +221453,1089,organized crime,1248054505 +221453,1089,Quentin Tarantino,1248054484 +221453,1089,real-time,1248054480 +221453,1089,story,1248054492 +221453,1089,stylized,1248054512 +221453,1089,suits,1248054500 +221453,1089,Tim Roth,1248054530 +221453,1089,violence,1248054518 +221453,1200,alien queen,1248042664 +221453,1200,atmospheric,1248032072 +221453,1200,classic,1248042704 +221453,1200,design,1248032072 +221453,1200,horror,1248042726 +221453,1200,military,1248042647 +221453,1200,newt,1248042674 +221453,1200,sequel,1248042719 +221453,1206,dialogue,1248032631 +221453,1206,dystopia,1248029912 +221453,1206,ludwig van beethoven,1248032687 +221453,1206,music,1248032687 +221453,1206,quirky,1248043045 +221453,1206,requisites,1248032631 +221453,1206,violence,1248032631 +221453,1213,acting,1248032871 +221453,1213,dialogue,1248032871 +221453,1213,mafia,1248032871 +221453,1213,realistic,1248032871 +221453,1213,violence,1248032871 +221453,1214,alien,1248054252 +221453,1214,characters,1248054235 +221453,1214,futuristic,1248054248 +221453,1214,H. R. Giger,1248054250 +221453,1214,horror,1248054226 +221453,1214,set design,1248054241 +221453,1214,space travel,1248054229 +221453,1265,Bill Murray,1248044390 +221453,1265,deja vu,1248044386 +221453,1265,time loop,1248044380 +221453,1562,Alicia Silverstone,1248249817 +221453,1562,Arnold Schwarzenegger,1248249824 +221453,1562,atmospheric,1248249836 +221453,1562,batgirl,1248249812 +221453,1562,funny,1248249842 +221453,1562,George Clooney,1248249873 +221453,1562,jokes,1248249839 +221453,1562,robin,1248249802 +221453,1562,style,1248249832 +221453,1562,Uma Thurman,1248249874 +221453,1562,vehicles,1248249881 +221453,1617,conspiracy,1248054949 +221453,1617,Kevin Spacey,1248054958 +221453,1617,Kim Basinger,1248054954 +221453,1617,Russell Crowe,1248054969 +221453,1617,story,1248054996 +221453,1617,twist ending,1248055030 +221453,1627,romance,1248029808 +221453,1721,chick flick,1248044893 +221453,1721,CLASS DIFFERENCES,1248044963 +221453,1721,Leonardo DiCaprio,1248044898 +221453,1721,romance,1248044896 +221453,1721,true story,1248044914 +221453,1729,dialogue,1248041985 +221453,1732,Bizzare,1248056098 +221453,1732,characters,1248056063 +221453,1732,humor,1248056074 +221453,1732,Jeff Bridges,1248056115 +221453,1732,John Goodman,1248056110 +221453,1732,Phillip Seymour Hoffman,1248056103 +221453,1732,Steve Buscemi,1248056124 +221453,1732,style,1248056067 +221453,1747,story,1248043399 +221453,2138,atmospheric,1248032437 +221453,2329,Edward Furlong,1248054204 +221453,2329,Edward Norton,1248054001 +221453,2329,emotional,1248054019 +221453,2329,flashbacks,1248054214 +221453,2329,story,1248054208 +221453,2329,thought-provoking,1248054162 +221453,2502,boring,1248055255 +221453,2502,characters,1248055296 +221453,2502,comedy,1248055236 +221453,2502,fraud,1248055246 +221453,2502,Jennifer Aniston,1248055264 +221453,2502,john doe,1248055332 +221453,2502,jokes,1248055347 +221453,2502,workplace,1248055338 +221453,2606,dark comedy,1248044455 +221453,2606,Jessica Alba,1248044452 +221453,2772,comedy,1248045334 +221453,2772,KISS,1248045336 +221453,2959,acting,1248032147 +221453,2959,Brad Pitt,1248053870 +221453,2959,Edward Norton,1248053879 +221453,2959,Helena Bonham Carter,1248053866 +221453,2959,powerful ending,1248053880 +221453,2959,twist ending,1248032126 +221453,3175,aliens,1248429000 +221453,3175,Sigourney Weaver,1248428996 +221453,3252,acting,1248033013 +221453,3252,Al Pacino,1248043773 +221453,3252,dialogue,1248043820 +221453,3252,plot,1248043833 +221453,3252,sad,1248033013 +221453,3355,bad ending,1248054588 +221453,3355,dialogue,1248054631 +221453,3355,glasses,1248054617 +221453,3355,Johnny Depp,1248054578 +221453,3355,mystery,1248054638 +221453,3355,story,1248054611 +221453,3355,style,1248054620 +221453,3527,Arnold Schwarzenegger,1248044570 +221453,3527,classic,1248044596 +221453,3527,dialogue,1248044631 +221453,3527,hunting,1248044593 +221453,3527,Jesse Ventura,1248044575 +221453,3527,predator,1248044586 +221453,3527,violent,1248044581 +221453,3783,card counting,1248045114 +221453,3783,casino,1248045090 +221453,3783,Clive Owen,1248045084 +221453,3783,croupier,1248045108 +221453,3783,story,1248045128 +221453,3793,action,1248044730 +221453,3793,mutants,1248044738 +221453,3945,cute,1248031658 +221453,3945,funny,1248031658 +221453,3945,internet representation,1248031812 +221453,3945,sad,1248031812 +221453,3969,sad,1248033061 +221453,4011,acting,1248054347 +221453,4011,Brad Pitt,1248054344 +221453,4011,dialogue,1248054355 +221453,4011,Guy Ritchie,1248054340 +221453,4011,Jason Statham,1248054381 +221453,4011,twist ending,1248054372 +221453,4226,backwards,1248053738 +221453,4226,black and white,1248053713 +221453,4226,Carrie-Anne Moss,1248053746 +221453,4226,investigation,1248053756 +221453,4226,Joe Pantoliano,1248053705 +221453,4226,memory,1248053710 +221453,4226,mystery,1248053709 +221453,4226,nonlinear,1248053723 +221453,4226,short-term memory loss,1248053732 +221453,4226,stylized,1248053715 +221453,4226,twist ending,1248053734 +221453,4255,comic,1248248724 +221453,4255,foul language,1248248732 +221453,4255,funny,1248248727 +221453,4255,story,1248248738 +221453,4255,Tom Green,1248248712 +221453,4262,action,1248248187 +221453,4262,Al Pacino,1248248170 +221453,4262,dialogue,1248248200 +221453,4262,gangster,1248248178 +221453,4262,organized crime,1248248209 +221453,4262,story,1248248195 +221453,4262,violence,1248248168 +221453,4641,quirky,1248043941 +221453,4641,Scarlett Johansson,1248043947 +221453,4641,Steve Buscemi,1248043944 +221453,4878,surreal,1248031555 +221453,5047,comedy,1248030773 +221453,5047,digital editing,1248054937 +221453,5047,hilarious spoof,1248054769 +221453,5047,parody,1248030770 +221453,5047,ridiculous,1248054810 +221453,5047,Steve Oedekerk,1248054764 +221453,5047,synchronic,1248054794 +221453,5378,war,1248032117 +221453,5388,Al Pacino,1248055654 +221453,5388,atmospheric,1248032228 +221453,5388,corruption,1248032228 +221453,5388,insomnia,1248055712 +221453,5388,Robin Williams,1248055658 +221453,5388,story,1248055692 +221453,5418,amnesia,1248056002 +221453,5418,assassin,1248056008 +221453,5418,Clive Owen,1248055989 +221453,5418,conspiracy,1248055997 +221453,5418,Franka Potente,1248055987 +221453,5418,Matt Damon,1248055979 +221453,5418,memory loss,1248056013 +221453,5418,spy,1248056005 +221453,5418,thriller,1248055992 +221453,5574,action,1248044857 +221453,5574,heist,1248044854 +221453,5574,Jason Statham,1248044861 +221453,5574,male nudity,1248044844 +221453,5673,Adam Sandler,1248043214 +221453,5673,music,1248043239 +221453,5673,pudding,1248043245 +221453,5673,quirky,1248043217 +221453,5673,romance,1248043227 +221453,5673,sad,1248043229 +221453,5673,style,1248043236 +221453,6534,dogs,1248044362 +221453,6534,ending,1248044355 +221453,6534,hulk,1248044339 +221453,6534,Jennifer Connelly,1248044313 +221453,6534,strength,1248044335 +221453,6711,atmospheric,1248030758 +221453,6711,Bill Murray,1248055120 +221453,6711,Scarlett Johansson,1248055117 +221453,6711,Sophia Coppola,1248055138 +221453,6711,tokyo,1248055126 +221453,6953,melancholic,1248032713 +221453,6953,sean penn,1248032714 +221453,7063,acting,1248249151 +221453,7063,ending,1248249142 +221453,7063,harsh,1248249168 +221453,7063,Klaus Kinski,1248249120 +221453,7063,story,1248249131 +221453,7361,brainwashing,1248045068 +221453,7361,imagination,1248045040 +221453,7361,Jim Carrey,1248045022 +221453,7361,memory loss,1248045073 +221453,7361,quirky,1248045035 +221453,7361,romance,1248045056 +221453,7361,surreal,1248045028 +221453,7366,Ben Affleck,1248045444 +221453,7366,cute,1248045438 +221453,7366,liv tyler,1248045446 +221453,7366,romance,1248045434 +221453,7438,revenge,1248031479 +221453,7562,characters,1248044120 +221453,7562,Monica Bellucci,1248044127 +221453,7981,better than the american version,1248042571 +221453,7981,characters,1248032790 +221453,7981,dialogue,1248032790 +221453,7981,music,1248032790 +221453,7981,story,1248032790 +221453,8376,boring,1248044197 +221453,8376,comedy,1248044276 +221453,8376,quirky,1248044255 +221453,8376,release year,1248044284 +221453,8533,CLASS DIFFERENCES,1248042836 +221453,8533,memories,1248042850 +221453,8533,romance,1248032810 +221453,8533,sad,1248032810 +221453,8784,friendship,1248044426 +221453,8784,overrated,1248044441 +221453,8784,quirky romantic,1248044422 +221453,8784,Zach Braff,1248044419 +221453,8865,atmospheric,1248043614 +221453,8865,giant robots,1248043584 +221453,8865,look,1248043635 +221453,8865,story,1248043597 +221453,8865,visually appealing,1248043578 +221453,8874,comedy,1248054407 +221453,8874,Simon Pegg,1248054415 +221453,8874,zombies,1248029843 +221453,8981,characters,1248032307 +221453,8981,chat rooms,1248043321 +221453,8981,Clive Owen,1248043331 +221453,8981,dialogue,1248032307 +221453,8981,romance,1248032307 +221453,26736,cult film,1248029649 +221453,26736,german synchronization,1248043146 +221453,26736,gore,1248032497 +221453,26736,kung fu,1248029646 +221453,26736,lack of requisites,1248043155 +221453,26736,porn shelf,1248043128 +221453,26736,ridiculous,1248032497 +221453,27266,atmospheric,1248248826 +221453,27266,elegant,1248248829 +221453,27266,melancholy,1248248843 +221453,27266,romantic,1248248879 +221453,27266,slow,1248248892 +221453,27266,stylized,1248248860 +221453,27773,bizarre,1248032763 +221453,27773,music,1248032763 +221453,27773,story,1248032763 +221453,27773,twist ending,1248029448 +221453,27773,vengeance,1248042491 +221453,27831,boring,1248044503 +221453,27831,daniel craig,1248044509 +221453,32587,multiple storylines,1248029836 +221453,33166,acting,1248055905 +221453,33166,ending,1248055902 +221453,33166,multiple storylines,1248031829 +221453,33493,action,1248042386 +221453,33493,dark,1248031961 +221453,33493,empire,1248031961 +221453,33493,no happy ending,1248042400 +221453,33493,romance,1248031961 +221453,33493,somber,1248031961 +221453,33493,twist ending,1248032110 +221453,33493,war,1248042430 +221453,36708,hilarious,1248043966 +221453,36708,meets future self,1248043979 +221453,36708,Stewie Griffin,1248043969 +221453,36708,time travel,1248043971 +221453,38061,comedy,1248030765 +221453,38061,dialogue,1248055075 +221453,38061,fast-paced dialogue,1248055070 +221453,38061,funny,1248055080 +221453,38061,mystery,1248055044 +221453,38061,plot twist,1248055084 +221453,38061,val kilmer,1248055057 +221453,38061,witty,1248055055 +221453,39183,Heath Ledger,1248053913 +221453,39183,homosexuality,1248053916 +221453,39183,Jake Gyllenhaal,1248053949 +221453,39183,music,1248032653 +221453,39183,romance,1248029772 +221453,39183,Tragedy,1248053925 +221453,39427,Ewan McGregor,1248248923 +221453,39427,Naomi Watts,1248248917 +221453,39427,ryan gosling,1248248920 +221453,39427,twist ending,1248248944 +221453,40614,Clive Owen,1248045155 +221453,40614,ending,1248045195 +221453,40614,predictable,1248045151 +221453,40614,twists & turns,1248045148 +221453,41285,CLASS DIFFERENCES,1248054673 +221453,41285,clever,1248054650 +221453,41285,love affair,1248054654 +221453,41285,murder,1248054658 +221453,41285,Scarlett Johansson,1248054661 +221453,42632,brutality,1248053551 +221453,42632,child murder,1248053504 +221453,42632,quirky,1248053523 +221453,42632,revenge,1248029504 +221453,42632,story,1248053579 +221453,42632,style,1248053566 +221453,42632,wrongly accused,1248053540 +221453,44199,twist ending,1248031497 +221453,44555,acting,1248054754 +221453,44555,dialogue,1248054751 +221453,44555,german,1248054732 +221453,44555,spying,1248054713 +221453,44555,surveillance,1248054721 +221453,44665,Josh Hartnett,1248030534 +221453,44665,Revenge,1248030518 +221453,44665,twist ending,1248030522 +221453,44788,documentary,1248399861 +221453,44788,movie business,1248399852 +221453,44788,private detective,1248399844 +221453,44788,topic:censorship,1248399874 +221453,46578,comedy,1248145912 +221453,46578,family,1248145919 +221453,46578,funny,1248145945 +221453,46578,heartwarming,1248145922 +221453,46578,hilarious,1248145948 +221453,46578,music,1248145935 +221453,47997,dystopia,1248043910 +221453,47997,frat boy humor,1248043912 +221453,47997,Luke Wilson,1248043916 +221453,48774,atmospheric,1248045313 +221453,48774,christianity,1248045310 +221453,48774,ending,1248045318 +221453,48780,Christian Bale,1248248224 +221453,48780,dark,1248248232 +221453,48780,twist ending,1248033052 +221453,48780,twists & turns,1248248235 +221453,49396,comedy,1248248508 +221453,49396,david grohl,1248248467 +221453,49396,funny,1248248510 +221453,49396,music,1248248366 +221453,49772,Anthony Wong Chau-Sang,1248055584 +221453,49772,Edward Norton,1248055433 +221453,49772,heartbreaking,1248055441 +221453,49772,high society,1248055455 +221453,49772,landscape,1248055515 +221453,49772,naomi watts,1248055445 +221453,49772,story,1248055502 +221453,51063,characters,1248032196 +221453,51063,comedy,1248032196 +221453,51063,humor,1248032196 +221453,51063,rickyism,1248042807 +221453,51063,tits,1248042783 +221453,51086,character,1248248665 +221453,51086,Jim Carrey,1248248630 +221453,51086,serious,1248248677 +221453,51086,story,1248248662 +221453,51086,stylized,1248248658 +221453,51086,twist,1248248647 +221453,51086,twist ending,1248248650 +221453,51662,amazing photography,1248044803 +221453,51662,betrayal,1248044792 +221453,51662,male nudity,1248044777 +221453,51662,stylized,1248044762 +221453,51931,acting,1248032540 +221453,51931,adam sandler,1248054553 +221453,51931,Don Cheadle,1248054544 +221453,51931,sad,1248032540 +221453,51935,conspiracy,1248043530 +221453,51935,Mark Wahlberg,1248043528 +221453,51935,sniper,1248043524 +221453,52241,Jeff Daniels,1248249018 +221453,52241,overrated,1248249025 +221453,52241,story,1248249037 +221453,52281,2 movies in 1,1248045603 +221453,52281,fake trailer,1248045615 +221453,52606,comedy,1248032403 +221453,52606,dialogue,1248032403 +221453,52606,funny,1248032403 +221453,53318,art school,1248045364 +221453,53318,art student as protagonist,1248045388 +221453,53318,insomnia,1248045379 +221453,53318,Nudity (Full Frontal),1248045370 +221453,53318,stopping time,1248045399 +221453,53318,surrealism,1248045374 +221453,53468,Carrie-Anne Moss,1248044090 +221453,53468,zombies,1248044074 +221453,53956,dark comedy,1248031821 +221453,54256,funny,1248045474 +221453,54256,Isla Fisher,1248045489 +221453,54995,Bruce Willis,1248055368 +221453,54995,crude humor,1248055378 +221453,54995,ending,1248055396 +221453,54995,rose mcgowan,1248055410 +221453,54995,sex scene,1248055382 +221453,54995,splatter,1248055385 +221453,54995,zombies,1248055392 +221453,54999,Clive Owen,1248043684 +221453,54999,creativity,1248043661 +221453,54999,Monica Bellucci,1248043690 +221453,54999,Paul Giamatti,1248043729 +221453,54999,ridiculous,1248043752 +221453,54999,style,1248043735 +221453,55118,brutality,1248055843 +221453,55118,Naomi Watts,1248055802 +221453,55118,organized crime,1248031548 +221453,55118,sunglasses,1248055863 +221453,55118,Viggo Mortensen,1248055821 +221453,55118,violent,1248055815 +221453,55247,atmospheric,1248032240 +221453,55247,based on a true story,1248055613 +221453,55247,landscape,1248055608 +221453,55247,Music,1248055631 +221453,55247,story,1248055603 +221453,55247,travel,1248055643 +221453,55290,Casey Affleck,1248055732 +221453,55290,foul language,1248055748 +221453,55290,story,1248055753 +221453,55290,twist,1248055764 +221453,55820,brutal,1248055201 +221453,55820,dark,1248055175 +221453,55820,realistic,1248055178 +221453,55820,thriller,1248055186 +221453,55820,Tommy Lee Jones,1248055169 +221453,55820,weapons,1248055194 +221453,57368,final credits,1248045222 +221453,57368,irritating camera work,1248045256 +221453,57368,monster,1248045240 +221453,57669,bruges,1248032851 +221453,57669,Colin Farrell,1248032851 +221453,57669,dark comedy,1248029515 +221453,57669,foul language,1248053805 +221453,57669,irish accent,1248053808 +221453,57669,story,1248032851 +221453,57669,stylized,1248053824 +221453,57669,suicide,1248053821 +221453,58047,cute,1248044154 +221453,58047,Isla Fisher,1248044141 +221453,58047,Rachel Weisz,1248044151 +221453,58078,Andy Garcia,1248323542 +221453,58078,beginning,1248323567 +221453,58078,Brendan Fraser,1248323536 +221453,58162,Simon Pegg,1248029856 +221453,58559,action,1248042982 +221453,58559,characters,1248032590 +221453,58559,dialogue,1248032590 +221453,58559,Heath Ledger,1248029963 +221453,58559,jokes,1248042970 +221453,58559,music,1248032589 +221453,58559,realistic,1248032590 +221453,59126,Bill Maher,1248043865 +221453,59126,Documentary,1248033022 +221453,59126,funny,1248043872 +221453,59126,stupidity,1248043880 +221453,60753,prison,1248031534 +221453,60753,Violence,1248031528 +221453,60756,comedy,1248043502 +221453,60756,will ferrell,1248043499 +221453,60832,blood,1248248580 +221453,60832,dark,1248248568 +221453,60832,story,1248248575 +221453,60832,twists & turns,1248248591 +221453,61323,Brad Pitt,1248249064 +221453,61323,comedy,1248249080 +221453,61323,funny,1248249082 +221453,61323,George Clooney,1248249071 +221453,61323,stupid criminals,1248249087 +221453,61323,twists & turns,1248249077 +221453,64614,Clint Eastwood,1248309190 +221453,64614,culture clash,1248309161 +221453,64614,friendship,1248309167 +221453,64614,heartwarming,1248309197 +221453,64614,racism,1248309172 +221453,64614,racist humor,1248309187 +221453,67267,funny,1248399764 +221453,67267,sad,1248399757 +221453,67267,story,1248399767 +221453,67267,witty,1248399755 +221453,69481,Iraq,1251489483 +221453,69481,realistic,1251489464 +221453,69481,very intense,1251489477 +221453,69481,vision,1251489479 +221453,69481,War,1251489482 +221467,260,old,1439811309 +221467,260,Science Fiction,1439811299 +221475,3476,disturbing,1444959048 +221475,3476,insanity,1444959023 +221475,3476,mental illness,1444959025 +221475,3476,paranoia,1444959071 +221475,3476,Psychological horror,1444959038 +221475,3476,surreal,1444959019 +221475,3476,twist ending,1444959045 +221475,44191,dystopia,1445043512 +221475,44191,social commentary,1445043518 +221475,44191,thought-provoking,1445043515 +221475,57368,"""found footage""",1444958513 +221475,57368,sci-fi,1444958516 +221475,71379,atmospheric,1444958258 +221475,71379,horror,1444958477 +221475,71379,paranormal,1444958447 +221475,71379,psychological,1444958244 +221475,71379,psychological thriller,1444958247 +221475,71379,scary,1444958482 +221475,81591,atmospheric,1444959099 +221475,81591,dark,1444959103 +221475,81591,Darren Aronofsky,1444959119 +221475,81591,disturbing,1444959114 +221475,81591,horror,1444959121 +221475,81591,madness,1444959124 +221475,81591,mental illness,1444959128 +221475,81591,psychological,1444959098 +221475,81591,thriller,1444959116 +221475,81591,twist ending,1444959111 +221475,93840,clever,1444958704 +221475,93840,dark comedy,1444958708 +221475,93840,joss whedon,1444958714 +221475,93840,original,1444958707 +221475,93840,original plot,1444958711 +221475,93840,plot twist,1444958713 +221475,93840,satire,1444958716 +221475,93840,social commentary,1444958726 +221475,93840,suspense,1444958749 +221475,93840,weird,1444958723 +221475,130448,horror,1445063818 +221475,130636,Internet,1445043677 +221475,130636,skype,1445043679 +221475,130636,social media,1445043674 +221507,1673,auteur,1326561760 +221507,6985,expressionistic,1326561589 +221507,26131,non actors,1326406682 +221507,26131,revolutionary,1326406682 +221508,1061,emotional,1142342580 +221508,1131,emotional,1142342568 +221508,1193,emotional,1142342545 +221508,2329,emotional,1142342535 +221508,3147,emotional,1142332369 +221508,27803,emotional,1142342554 +221508,99149,musical,1363979439 +221522,296,atmospheric,1378573088 +221522,296,Bruce Willis,1378573089 +221522,296,great soundtrack,1378573077 +221522,296,multiple storylines,1378573057 +221522,1200,space,1378572802 +221522,1200,SPACE TRAVEL,1378572803 +221522,1201,humorous,1378572658 +221522,1676,Alien Invasion,1378569890 +221522,1676,aliens,1378569891 +221522,1676,Nudity (Topless),1378569909 +221522,1676,witty,1378569906 +221522,1704,excellent script,1378572187 +221522,1704,feel-good,1378572191 +221522,1704,mathematics,1378572193 +221522,1704,psychology,1378572197 +221522,1917,apocalypse,1378570371 +221522,1917,Bruce Willis,1378570369 +221522,1917,disaster,1378570373 +221522,1917,end of the world,1378570374 +221522,1917,natural disaster,1378570378 +221522,2329,thought-provoking,1378572616 +221522,3252,atmospheric,1378572521 +221522,3252,great acting,1378572525 +221522,4011,multiple storylines,1378573116 +221522,4011,twist ending,1378573104 +221522,4720,atmospheric,1378572441 +221522,4720,ghosts,1378572446 +221522,4720,Nicole Kidman,1378572437 +221522,4720,seen more than once,1378572448 +221522,4720,surprise ending,1378572443 +221522,4720,twist ending,1378572445 +221522,4995,insanity,1378572161 +221522,4995,mathematics,1378572158 +221522,4995,psychology,1378572152 +221522,4995,Russell Crowe,1378572153 +221522,4995,schizophrenia,1378572167 +221522,5219,Milla Jovovich,1378570569 +221522,5219,rated-R,1378570582 +221522,5219,zombie,1378570578 +221522,5219,zombies,1378570579 +221522,5617,Maggie Gyllenhaal,1378570843 +221522,5617,Nudity (Full Frontal - Notable),1378570830 +221522,5617,sexuality,1378570835 +221522,5991,jazz,1378572306 +221522,6502,apocalypse,1378473119 +221522,6502,British,1378473117 +221522,6502,great soundtrack,1378473114 +221522,6502,low budget,1378473123 +221522,6502,Post apocalyptic,1378473111 +221522,6502,post-apocalyptic,1378473107 +221522,6502,romance,1378473126 +221522,6502,survival,1378473105 +221522,6502,violence,1378473129 +221522,6502,zombies,1378473101 +221522,6947,sailing,1378573341 +221522,6947,seafaring,1378573339 +221522,8874,British,1378570531 +221522,8874,england,1378473539 +221522,8874,zombies,1378473535 +221522,30812,aviation,1378572128 +221522,45722,big budget,1378573317 +221522,45722,pirates,1378573314 +221522,45722,seafaring,1378573312 +221522,56145,apocalypse,1378473164 +221522,56145,disaster,1378473166 +221522,56145,surprise ending,1378473169 +221522,57669,atmospheric,1378572977 +221522,57669,british comedy,1378572953 +221522,57669,stylized,1378572958 +221522,63082,dreamlike,1378572225 +221522,63082,great soundtrack,1378572212 +221522,63082,India,1378572215 +221522,64622,great acting,1378570784 +221522,64622,Nudity (Full Frontal - Notable),1378570778 +221522,64622,sex,1378570806 +221522,68157,Paris,1378572930 +221522,68157,violence,1378572915 +221522,68237,artificial intelligence,1378569986 +221522,68237,great soundtrack,1378569984 +221522,68237,Kevin Spacey,1378569994 +221522,68237,melancholy,1378569997 +221522,68237,plot twist,1378569982 +221522,68237,twist ending,1378569991 +221522,70286,alien invasion,1378569759 +221522,70286,aliens,1378569760 +221522,70286,peter jackson,1378569764 +221522,72011,George Clooney,1378572377 +221522,72011,Nudity (Rear),1378572361 +221522,79132,suspense,1378654995 +221522,79132,thought-provoking,1378654996 +221522,79132,twist ending,1378654999 +221522,80463,complex characters,1378655040 +221522,80463,computers,1378655019 +221522,80463,New York City,1378655037 +221522,81591,atmospheric,1378572422 +221522,81591,music,1378572417 +221522,81591,twist ending,1378572411 +221522,81847,3D,1378655069 +221522,81847,Stereoscopic 3-D,1378655065 +221522,82095,hot girls!,1378569404 +221522,88810,1960s,1378654939 +221522,88810,great acting,1378654937 +221522,92259,feel good movie,1378572242 +221522,97752,complicated,1378569740 +221522,97752,multiple storylines,1378569717 +221522,97752,Nudity (Topless),1378569733 +221522,99114,violence,1378572632 +221522,99149,great soundtrack,1378572290 +221522,99149,Hugh Jackman,1378572284 +221522,99149,musical,1378572293 +221522,99149,Russell Crowe,1378572285 +221529,66171,Chris Evans,1235096468 +221529,66171,comics based,1235096468 +221529,66171,Dakota Fanning,1235096468 +221529,66171,psychic powers,1235096468 +221529,67087,Jaime Pressly,1241443489 +221529,67087,Jason Segel,1241443487 +221529,67087,Paul Rudd,1241443485 +221529,68358,action,1242713334 +221529,68358,sci fi,1242713331 +221529,68358,Spok and Uhura turbolift scene,1242713338 +221529,68358,Star Trek,1242713325 +221529,68358,time travel,1242713328 +221565,480,adventure,1437875643 +221565,480,dinosaur,1437875643 +221565,480,steven spielberg,1437875643 +221577,32,complicated,1329247798 +221577,32,dystopia,1329247791 +221577,32,mental illness,1329247801 +221577,32,psychology,1329247790 +221577,32,sci-fi,1329247809 +221577,32,time travel,1329247807 +221577,32,twist ending,1329247788 +221577,47,Brad Pitt,1329144649 +221577,47,dark,1329144626 +221577,47,disturbing,1329144625 +221577,47,imdb top 250,1329144661 +221577,47,investigation,1329144640 +221577,47,Kevin Spacey,1329144644 +221577,47,Morgan Freeman,1329144645 +221577,47,philosophical,1329144631 +221577,47,powerful ending,1329144605 +221577,47,psychology,1329144607 +221577,47,religion,1329144610 +221577,47,serial killer,1329144609 +221577,1206,atmospheric,1329144748 +221577,1206,based on a book,1329144743 +221577,1206,classic,1329144747 +221577,1206,cult film,1329144676 +221577,1206,disturbing,1329144680 +221577,1206,imdb top 250,1329144757 +221577,1206,psychedelic,1329144754 +221577,1206,psychological,1329144756 +221577,1206,quirky,1329144764 +221577,1206,satire,1329144740 +221577,1206,satirical,1329144741 +221577,1206,social commentary,1329144761 +221577,1206,Stanley Kubrick,1329144677 +221577,1206,violence,1329144738 +221577,3949,addiction,1329144999 +221577,3949,based on a book,1329144993 +221577,3949,dark,1329144996 +221577,3949,disturbing,1329144985 +221577,3949,drugs,1329144997 +221577,3949,independent film,1329145002 +221577,3949,psychological,1329145004 +221577,3949,psychology,1329144982 +221577,3949,social commentary,1329144991 +221583,6502,post-apocalyptic,1266678000 +221583,56174,post-apocalyptic,1266677987 +221583,56174,sci-fi,1266677981 +221584,260,adventure,1439782240 +221584,260,sci-fi,1439782233 +221594,1186,want to see again,1173261067 +221594,3030,Best Performance: Toshiro Mifune as Sanjuro Kuwabatake,1173261081 +221594,3030,Kurosawa,1173261076 +221594,3030,passionate,1174480991 +221594,3030,samurai,1174480999 +221594,5291,bleak,1173261006 +221594,5291,library,1173261012 +221594,7925,Toshiro Mifune,1174479968 +221618,356,heartwarming,1438644991 +221618,356,historical,1438644991 +221618,356,sad,1438644991 +221618,7817,bat-shit crazy,1437558290 +221618,26157,bat-shit crazy,1437558255 +221618,26157,so bad it's good,1437558246 +221618,74754,bad-shit crazy,1437558342 +221618,132046,funny,1440142205 +221618,132046,Uplifting,1440142185 +221618,132046,visually appealing,1440141940 +221622,260,sci-fi,1439774379 +221622,260,space adventure,1439774423 +221623,1188,campy,1187854118 +221623,1267,brainwashing,1187854087 +221623,3755,search and rescue,1187854100 +221623,5377,heartwarming,1187854130 +221623,5679,creepy,1187854142 +221623,55276,Tilda Swinton,1213092808 +221639,32,Brad Pitt,1242494310 +221639,32,Bruce Willis,1242494306 +221639,32,mindfuck,1242494321 +221639,32,Post apocalyptic,1242494300 +221639,32,post-apocalyptic,1242494300 +221639,32,remake,1242494315 +221639,32,time travel,1242494304 +221639,32,twist ending,1242494302 +221639,34,villain nonexistent or not needed for good story,1244787845 +221639,104,Adam Sandler,1244787691 +221639,216,Adam Sandler,1244787718 +221639,216,stop looking at me swan,1244787726 +221639,318,Morgan Freeman,1244566076 +221639,541,androids,1262795764 +221639,541,artificial intelligence,1262795769 +221639,541,atmospheric,1262795768 +221639,541,cyberpunk,1262795770 +221639,541,future,1262795772 +221639,541,mindfuck,1262795778 +221639,541,Philip K. Dick,1262795776 +221639,589,Scifi masterpiece,1201166474 +221639,593,disturbing,1241396359 +221639,593,drama,1241396391 +221639,593,gothic,1241396378 +221639,593,psychology,1241396367 +221639,593,suspense,1241396389 +221639,733,Michael Bay,1241938858 +221639,733,terrorism,1241938853 +221639,750,black comedy,1242494959 +221639,750,dark comedy,1242494953 +221639,750,satire,1242494951 +221639,832,GIVE ME BACK MY SON!,1269832636 +221639,832,It was melodramatic and kind of dumb,1269832633 +221639,832,Mel Gibson,1269832629 +221639,903,Alfred Hitchcock,1242577125 +221639,903,Atmospheric,1242577135 +221639,903,imdb top 250,1242577117 +221639,903,James Stewart,1242577112 +221639,904,imdb top 250,1242577077 +221639,904,James Stewart,1242577056 +221639,904,mystery,1242577064 +221639,904,photographer,1242577068 +221639,904,photography,1242577070 +221639,908,Alfred Hitchcock,1242577097 +221639,908,imdb top 250,1242577100 +221639,922,eerie,1245030098 +221639,922,movie business,1245030089 +221639,1089,humorous,1242494883 +221639,1089,neo-noir,1242494879 +221639,1089,Quentin Tarantino,1242494874 +221639,1089,religion,1242494896 +221639,1089,Tarantino,1242494887 +221639,1196,classic,1262795806 +221639,1196,George Lucas,1262795793 +221639,1196,Harrison Ford,1262795792 +221639,1196,music,1262795815 +221639,1196,original plot,1262795808 +221639,1196,sci-fi,1262795797 +221639,1196,sequel,1262795800 +221639,1219,Alfred Hitchcock,1242577153 +221639,1219,black and white,1242577173 +221639,1219,imdb top 250,1242577161 +221639,1219,remade,1242577165 +221639,1222,anti-war,1242494925 +221639,1274,animation,1244787931 +221639,1274,anime,1244787929 +221639,1274,visually stunning,1244787944 +221639,2393,cameo:Whoopi Goldberg,1242278473 +221639,2393,space opera,1242278463 +221639,2393,Star Trek,1242278464 +221639,2694,Adam Sandler,1244787788 +221639,2706,best comedy,1244707216 +221639,2706,Chris Klein,1244707221 +221639,2706,dumb,1244707211 +221639,2706,Jason Biggs,1244707223 +221639,2706,not funny,1244707227 +221639,2706,pizza beer,1244707207 +221639,2706,Seann William Scott,1244707224 +221639,2706,teen,1244707202 +221639,2761,animation,1244787872 +221639,3000,adventure,1241396438 +221639,3000,atmospheric,1241396434 +221639,3000,fantasy world,1241396427 +221639,3000,Studio Ghibli,1241396420 +221639,3000,surreal,1241396422 +221639,3527,aliens,1278683918 +221639,3527,Arnold Schwarzenegger,1269832592 +221639,3527,dialogue,1269832605 +221639,3527,guns,1278683912 +221639,3527,Jesse Ventura,1269832593 +221639,3527,macho,1269832597 +221639,3527,sci-fi,1269832609 +221639,3527,scifi cult,1269832612 +221639,3994,atmospheric,1241396301 +221639,3994,comics,1241396280 +221639,3994,father-son relationship,1241396313 +221639,3994,mindfuck,1241396308 +221639,3994,unique,1241396293 +221639,4226,mystery,1256051072 +221639,4226,twist ending,1256051079 +221639,4454,claymation,1245030193 +221639,4454,creativity,1245030187 +221639,4454,dystopia,1245030190 +221639,4454,free to download,1245030175 +221639,4454,imagination,1245030178 +221639,4454,no dialogue,1245030196 +221639,4454,social commentary,1245030185 +221639,4725,mental hospital,1252820163 +221639,4725,psychology,1252820170 +221639,4725,suspense,1252820168 +221639,4725,Well Done,1252820180 +221639,4878,dreamlike,1242494462 +221639,4878,hallucinatory,1242494486 +221639,4878,mental illness,1242494483 +221639,4878,psychology,1242494469 +221639,4878,social commentary,1242494478 +221639,4878,teen,1242494496 +221639,4878,thought-provoking,1242494462 +221639,5459,crappy sequel,1262795620 +221639,5459,first was much better,1262795632 +221639,5459,sequel,1262795653 +221639,7361,cult film,1242494340 +221639,7361,imagination,1256051047 +221639,7361,Jim Carrey,1242494357 +221639,7361,love,1256051045 +221639,7361,surreal,1256051041 +221639,7439,comic book,1201196824 +221639,8783,Atmospheric,1242580424 +221639,8783,good soundtrack,1242580444 +221639,8783,M. Night Shyamalan,1242580441 +221639,8961,animation,1244789192 +221639,8961,Samuel L. Jackson,1244789197 +221639,41569,big budget,1262795959 +221639,42422,love,1252377761 +221639,45499,Halle Berry,1262795979 +221639,45499,Hugh Jackman,1262795972 +221639,45730,bad,1242580531 +221639,45730,disappointing,1242580521 +221639,45730,faerie tale,1242580526 +221639,45730,fairy tale,1242580523 +221639,45730,far fetched,1242580497 +221639,45730,M. Night Shyamalan,1242580504 +221639,45730,Paul Giamatti,1242580508 +221639,47610,costume drama,1242580608 +221639,47610,Edward Norton,1242580578 +221639,47610,magic,1242580595 +221639,47610,Paul Giamatti,1242580580 +221639,52885,dreamlike,1256051008 +221639,53468,zombies,1254101434 +221639,54503,friendship,1244566102 +221639,54503,high school,1244566117 +221639,54503,Michael Cera,1244566094 +221639,54503,nerds,1244566133 +221639,54503,self discovery,1244566119 +221639,54503,shenanigans,1244566122 +221639,54503,virginity,1244566127 +221639,55167,anime,1282924582 +221639,56174,alone in the world,1262795676 +221639,56174,apocalypse,1262795677 +221639,56174,based on a book,1262795681 +221639,56174,last man on earth,1262795684 +221639,56174,plot holes,1262795671 +221639,56174,Post apocalyptic,1262795695 +221639,56174,post-apocalyptic,1262795699 +221639,56174,religion,1262795669 +221639,56174,vampire,1262795702 +221639,56367,Michael Cera,1244566158 +221639,56367,notable soundtrack,1244566156 +221639,56367,pregnancy,1244566154 +221639,56367,teenage pregnancy,1244566153 +221639,56367,witty,1244566176 +221639,57669,black comedy,1269832562 +221639,57669,Colin Farrell,1269832561 +221639,57669,dark comedy,1269832559 +221639,57669,drugs,1269832564 +221639,57669,friendship,1269832567 +221639,57669,irreverent,1269832579 +221639,57669,Ralph Fiennes,1269832572 +221639,57669,stylized,1269832574 +221639,59141,movies about movies,1241396155 +221639,60069,last man on earth,1241396252 +221639,60069,love story,1241396256 +221639,60069,Post apocalyptic,1241396239 +221639,60069,social commentary,1241396236 +221639,61323,Brad Pitt,1269832483 +221639,61323,Coen Bros,1269832486 +221639,61323,Coen Brothers,1269832484 +221639,61323,dark comedy,1269832488 +221639,61323,espionage,1269832491 +221639,61323,George Clooney,1269832490 +221639,61323,John Malkovich,1269832492 +221639,61323,satire,1269832497 +221639,61323,twists & turns,1269832504 +221639,61323,weird,1269832501 +221639,62336,2D animation,1282924611 +221639,62336,cult film,1282924621 +221639,62336,stylish,1282924615 +221639,62336,surreal,1282924617 +221639,66934,joss whedon,1244788368 +221639,66934,Nathan Fillion,1244788378 +221639,66934,Neil Patrick Harris,1244788374 +221639,66934,parody,1244788359 +221639,67087,Andy Samberg,1269833868 +221639,67087,bromance,1269833887 +221639,67087,bromantic,1269833884 +221639,67087,comedy,1269833878 +221639,67087,Jaime Pressly,1269833873 +221639,67087,Jason Segel,1269833863 +221639,67087,masculinity,1269833871 +221639,67087,Paul Rudd,1269833866 +221639,68237,2001-like,1252898614 +221639,68237,Sci-fi,1252898620 +221639,68237,solitude,1252898625 +221639,68319,bad plot,1262795886 +221639,68319,comic book,1241938912 +221639,68319,hugh jackman,1262795892 +221639,68319,Ryan Reynolds,1262795891 +221639,68319,too many characters,1241941484 +221639,68358,future,1245030304 +221639,68358,lack of development,1262795924 +221639,68358,lack of story,1262795926 +221639,68358,quick cuts,1245030309 +221639,68358,sci-fi,1262795933 +221639,68358,Simon Pegg,1245030316 +221639,68358,space,1262795932 +221639,68358,space travel,1262795931 +221639,68358,time travel,1262795929 +221639,68791,artificial intelligence,1262795849 +221639,68791,bad acting,1262795862 +221639,68791,bad plot,1262795842 +221639,68791,bad script,1262795859 +221639,68791,Christian Bale,1262795846 +221639,68791,FIGHTING THE SYSTEM,1262795852 +221639,68791,franchise,1262795875 +221639,68791,new composer,1243401981 +221639,68791,post-apocalyptic,1262795854 +221639,68791,robots,1243401992 +221639,68791,sci-fi,1262795871 +221639,68791,sequel,1262795873 +221639,68945,Recap,1246349071 +221639,69526,bad plot,1262795720 +221639,69526,Michael Bay,1262795729 +221639,69526,needed more autobots,1246346162 +221639,69526,plot holes,1262795732 +221639,69526,ridiculous,1262795737 +221639,69526,Shia LaBeouf,1246346172 +221639,69526,stop using useless characters for filler,1246346159 +221639,69757,artistic,1279956134 +221639,69757,Funny,1279956141 +221639,69757,humorous,1279956124 +221639,69757,inspiring,1279956130 +221639,69757,intelligent,1279956132 +221639,69757,quirky,1279956145 +221639,69757,romance,1279956123 +221639,69757,Zooey Deschanel,1279956120 +221639,70286,intelligent sci-fi,1250476969 +221639,72224,bad humor,1296891269 +221639,72998,bad science,1262707524 +221639,72998,futuristic,1262707531 +221639,72998,graphic design,1262707532 +221639,72998,James Cameron,1262707536 +221639,72998,military,1262707534 +221639,72998,poor dialogue,1262707537 +221639,72998,sci-fi,1262707551 +221639,72998,superficial plot,1262707525 +221639,72998,unoriginal,1262794416 +221639,72998,white guilt,1262707542 +221639,79132,dreamlike,1280608188 +221639,79132,surreal,1280608178 +221639,79132,visually appealing,1280608181 +221639,79702,geeky,1282923864 +221639,79702,Michael Cera,1282923853 +221639,79702,stylized,1282923856 +221639,79702,video games,1282923860 +221639,82242,male nudity,1293690470 +221639,82461,action choreography,1296891206 +221639,82461,Horrid characterisation,1296891200 +221639,82461,Poor plot development,1296891195 +221639,82461,sequel,1296891202 +221639,82461,soundtrack,1296891203 +221640,296,action,1420267365 +221640,296,dark comedy,1420267365 +221640,296,gangster,1420267365 +221656,150,based on a true story,1247918469 +221656,1270,time travel,1246112317 +221656,2011,time travel,1246114087 +221656,2012,time travel,1246114150 +221656,2167,effects,1246111520 +221656,2167,vampire,1246111511 +221656,2167,vampires,1246111509 +221656,2167,Wesley Snipes,1246111591 +221656,2571,post apocalyptic,1279349777 +221656,2571,sci-fi,1279349773 +221656,2571,virtual reality,1279349770 +221656,3755,George Clooney,1246112381 +221656,3755,Mark Wahlberg,1246112396 +221656,8528,Vince Vaughn,1246112509 +221656,8644,android(s)/cyborg(s),1245760323 +221656,8644,artificial intelligence,1245760308 +221656,8644,robots,1245760262 +221656,33794,Christian Bale,1246112260 +221656,43928,Milla Jovovich,1279349294 +221656,43928,sci-fi,1279349297 +221656,44191,politics,1279349436 +221656,44191,thought-provoking,1246113723 +221656,51255,parody,1248522887 +221656,51935,conspiracy,1248083222 +221656,51935,Mark Wahlberg,1248083219 +221656,51935,sniper,1248079860 +221656,59315,gadgets,1245759978 +221656,69906,Jonathan Malen,1248089101 +221662,260,classic sci-fi,1440540546 +221662,260,excellent,1440540576 +221682,2571,fake world,1433445276 +221682,2571,sci-fi,1433445276 +221682,2571,technology,1433445276 +221712,115617,animation,1430495791 +221712,115617,science fiction,1430495791 +221712,115617,technology,1430495791 +221722,1288,mockumentary,1449751872 +221728,5630,psychology,1229773772 +221730,260,Shabam,1438211503 +221730,260,starwars,1438211512 +221736,260,emblematic,1439671820 +221736,34115,blaxploitation,1440062504 +221736,88339,meditative,1439721092 +221736,88339,nature,1439721102 +221736,140799,blaxploitation,1439758206 +221736,140799,isaac hayes,1439758231 +221736,140799,yaphet kotto,1439758224 +221736,140842,farming,1439758182 +221736,140842,france,1439758178 +221736,140842,rural,1439758173 +221736,140844,hitler,1439759408 +221736,140958,football,1439931304 +221736,140958,sports,1439931307 +221771,62374,cia,1228965777 +221780,6,Al Pacino,1435125201 +221780,6,philosophy,1435125233 +221780,260,all-around good movie,1433990982 +221780,260,classic,1433990880 +221780,260,fantasy action,1433990917 +221780,4963,great,1433993058 +221780,4963,heist,1433993037 +221780,4963,witty,1433993047 +221780,4993,beautifully filmed,1433992958 +221780,4993,epic adventure,1433992963 +221780,4993,friendship,1433992955 +221780,4993,Oscar (Best Cinematography),1433992970 +221780,4993,Oscar (Best Effects - Visual Effects),1433992975 +221780,7318,beautifully filmed,1434087644 +221780,7318,Bible,1434087652 +221780,7318,Biblical,1434087630 +221780,7318,Christian,1434087622 +221780,7318,Christianity,1434087619 +221780,7318,Dark,1434087736 +221780,7318,History,1434087637 +221780,7318,jesus,1434087611 +221780,7318,Jesus Christ,1434087625 +221780,7318,True,1434087737 +221780,53322,heist,1433993081 +221780,53322,one of my favorites,1433993089 +221780,53322,smart,1433993084 +221780,53322,witty,1433993085 +221780,54286,action,1433991292 +221780,54286,assassin,1433991288 +221780,54286,assassins,1433991312 +221780,54286,car chase,1433991286 +221780,54286,classic,1433991390 +221780,54286,favorite movie,1433991248 +221780,54286,great plot,1433991307 +221780,54286,just the best,1433991274 +221780,54286,Oscar (Best Editing),1433991328 +221780,54286,Oscar (Best Sound Editing),1433991331 +221780,54286,Oscar (Best Sound),1433991326 +221780,54286,spies,1433991348 +221780,54286,spy,1433991295 +221780,54286,spy thriller,1433991358 +221780,58559,action,1433992409 +221780,58559,Batman,1433992389 +221780,58559,Christian Bale,1433992403 +221780,58559,Christopher Nolan,1433992392 +221780,58559,dark,1433992407 +221780,58559,gritty,1433992440 +221780,58559,Heath Ledger,1433992397 +221780,58559,Oscar (Best Supporting Actor),1433992381 +221780,58559,vigilante,1433992418 +221780,73321,action,1434087560 +221780,73321,Bible,1434087543 +221780,73321,Christianity,1434087540 +221780,73321,Dark,1434087721 +221780,73321,Denzel Washington,1434087545 +221780,73321,visually appealing,1434087553 +221780,74795,action,1434087500 +221780,74795,cinematography,1434087508 +221780,74795,dark,1434087520 +221780,74795,Matt Damon,1434087499 +221780,74795,Paul Greengrass,1434087512 +221780,88129,car chase,1433993489 +221780,88129,dark,1433993474 +221780,88129,heist,1433993469 +221780,96079,action,1433991444 +221780,96079,beautiful cinematography,1433991469 +221780,96079,beautifully filmed,1433991456 +221780,96079,cinematography,1433991443 +221780,96079,classic,1433991427 +221780,96079,Daniel Craig,1433991454 +221780,96079,dark,1433991467 +221780,96079,James Bond,1433991433 +221780,96079,spies,1433991460 +221780,99114,bad ass,1433992740 +221780,99114,bounty hunter,1433992733 +221780,99114,Christoph Waltz,1433992721 +221780,99114,funny,1433992717 +221780,99114,Great performances,1433992674 +221780,99114,great story,1433992707 +221780,99114,Quentin Tarantino,1433992666 +221780,99114,Revenge,1433992728 +221780,103042,action,1434087248 +221780,103042,awesome,1434087322 +221780,103042,beautiful,1434087315 +221780,103042,cinematography,1434087228 +221780,103042,dark,1434087328 +221780,103042,favorite,1434087222 +221780,103042,gospel,1434087233 +221780,103042,music,1434087255 +221780,103042,raw,1434087325 +221780,103042,real,1434087326 +221780,103042,Superman,1434087239 +221780,103042,visually appealing,1434087279 +221780,110127,Bible,1434087689 +221780,110127,Biblical,1434087687 +221780,110127,Christianity,1434087709 +221780,110127,Dark,1434087702 +221780,134853,creative,1435127200 +221780,134853,imaginative,1435127210 +221812,3951,In Netflix queue,1169145230 +221852,2539,Billy Crystal,1289187628 +221852,2539,Robert De Niro,1289187636 +221852,5900,Billy Crystal,1289187586 +221852,5900,Robert De Niro,1289187601 +221852,74275,Ewan McGregor,1289001436 +221852,74275,Gay,1289001394 +221852,74275,Jim Carrey,1289001437 +221852,78893,M. Night Shyamalan,1289727515 +221852,79134,feel-good,1289789172 +221852,79134,No Forced Drama,1289789172 +221852,83374,Action,1302137646 +221861,260,coming of age,1433657658 +221861,260,fantasy,1433657648 +221861,260,sci-fi,1433657635 +221861,260,space western,1433657642 +221861,260,western,1433657638 +221861,115617,action,1434928357 +221861,115617,robot,1434928357 +221861,115617,superhero team,1434928357 +221863,2324,Heartwarming,1431523746 +221863,2324,humanism,1431523759 +221863,112183,magical realism,1431523668 +221885,260,classic sci-fi,1443536642 +221885,260,space adventure,1443536635 +221885,3897,music,1443793161 +221885,3897,nostalgic,1443793169 +221885,3897,story,1443793192 +221885,63082,drama,1443792805 +221885,63082,India,1443792837 +221885,63082,music,1443792821 +221885,63082,romance,1443792801 +221885,64614,Clint Eastwood,1443793016 +221885,64614,master piece,1443792979 +221885,64614,music,1443792990 +221885,64614,racism,1443792956 +221885,116797,Alan Turing,1443793109 +221885,116797,cryptography,1443793088 +221885,116797,genius,1443793132 +221885,116797,history,1443793124 +221885,116797,Keira Knightley,1443793114 +221910,68956,Yasujiro Ozu,1243630961 +221910,69757,manic pixie dream girl,1412592349 +221910,69757,misogyny,1412591541 +221910,74754,so bad it's good,1413481568 +221910,115727,Shaw Brothers,1419959170 +221916,27155,alter ego,1431721675 +221916,27155,batman (series),1431721675 +221916,27155,superman,1431721675 +221974,260,family,1432823067 +221974,260,space opera,1432823062 +221974,134130,based on book,1432823126 +221974,134130,humanity,1432823164 +221974,134130,Improvisation,1434465349 +221974,134130,Near Future,1434465329 +221974,134130,sci-fi,1434465338 +221974,134130,Space,1434465345 +221974,134130,stranded hero,1434465337 +221996,541,cyberpunk,1262355784 +221996,541,Philip K. Dick,1262355786 +221996,541,sci-fi,1262355788 +221996,608,crime,1223752727 +221996,608,great music,1223752790 +221996,608,hostage,1223752736 +221996,608,kidnapping,1223752805 +221996,608,murder,1223752732 +221996,968,zombies,1271805991 +221996,1080,Monty Python,1263829727 +221996,1199,dystopia,1265458279 +221996,1206,great music,1223753035 +221996,1206,rape,1223753022 +221996,1206,violence,1223752999 +221996,1241,lawn mower,1223752885 +221996,1241,mother-son relationship,1223752874 +221996,1241,zombies,1223752856 +221996,1255,aliens,1223753438 +221996,1255,fast food,1223753449 +221996,1258,ghosts,1223753492 +221996,1258,maze,1223753520 +221996,1274,cyberpunk,1262355872 +221996,1729,conspiracy,1223752518 +221996,1729,great music,1257239330 +221996,1729,Quentin Tarantino,1263829877 +221996,1729,Robert De Niro,1263829884 +221996,1732,bowling,1223753170 +221996,1732,drugs,1223753167 +221996,1732,great dialogue,1223753202 +221996,2351,bittersweet,1223752406 +221996,2351,compassionate,1223752429 +221996,3275,hitmen,1223753071 +221996,3275,organized crime,1223753060 +221996,3275,serial killer,1223753057 +221996,4533,zombie,1169536433 +221996,4533,zombies,1223752445 +221996,4848,David Lynch,1264765027 +221996,4848,lesbian,1264765034 +221996,4881,black and white,1264857549 +221996,4881,narrated,1264857583 +221996,5498,Akira Kurosawa,1267837557 +221996,5673,bittersweet,1223753571 +221996,5673,pudding,1223753552 +221996,5909,incest,1223753398 +221996,5909,mobbing,1223753339 +221996,5909,necrophilia,1223753331 +221996,5909,violence,1223753350 +221996,6305,dystopia,1265214084 +221996,6305,fascism,1265214095 +221996,6731,zombies,1223752936 +221996,7505,Lars von Trier,1263747944 +221996,8914,low budget,1263204103 +221996,8914,mindfuck,1263204112 +221996,8914,paradox,1263204095 +221996,8914,sci-fi,1263204028 +221996,8914,time travel,1263204030 +221996,26241,religion,1264660452 +221996,26326,animal cruelty,1289647152 +221996,47404,anime,1289647126 +221996,47404,surreal,1288728029 +221996,55908,sci-fi,1264167599 +221996,56715,afterlife,1223753234 +221996,56715,cult,1262355977 +221996,56715,miracles,1223753259 +221996,56715,suicide,1223753231 +221996,57464,rampage,1223753682 +221996,57669,drugs,1223752701 +221996,57669,hitman,1223752656 +221996,57669,holiday,1223752666 +221996,57669,suicide,1223752693 +221996,61724,Aki Kaurismäki,1286988315 +221996,63072,dystopia,1263050662 +221996,63072,post-apocalyptic,1263050642 +221996,66509,Adam Sandler,1265537837 +221996,66509,Seth Rogen,1265537842 +221996,67997,politics,1247049663 +221996,68358,sci-fi,1264357087 +221996,68952,old school horror,1255890325 +221996,68952,Sam Raimi,1255890330 +221996,70344,Emily Watson,1263747874 +221996,70344,Paul Giamatti,1263747789 +221996,71535,Bill Murray,1271806040 +221996,71535,post-apocalyptic,1271806063 +221996,71535,zombies,1271806036 +221996,72171,blaxploitation,1262355749 +221996,72171,martial arts,1262355747 +221996,72171,parody,1262355753 +221996,74458,Leonardo DiCaprio,1277758638 +221996,74458,Martin Scorsese,1277758617 +221996,74754,unintentional comedy,1283931638 +221996,83349,Cameron Diaz,1303252814 +221996,83349,Christoph Waltz,1303252811 +221996,85414,Weak third act,1313789076 +221996,86190,The Chemical Brothers,1313961815 +221996,90866,Asa Butterfield,1330126007 +221996,106002,fascism,1391165374 +222022,31042,best aviation sequences,1239641824 +222022,31042,Howard Hughes,1239641824 +222022,31042,WWI,1239641824 +222023,81562,danny boyle,1302224107 +222023,81562,moving,1302224592 +222023,81562,nature,1302224129 +222023,81562,Sigur Ros,1302224124 +222023,81562,wow,1302224100 +222024,260,classic,1442561082 +222024,260,sci-fi,1442561070 +222024,114060,crime,1443624007 +222024,114060,gangster,1443624057 +222024,114060,mystery,1443624047 +222024,137616,crime,1443624119 +222037,32,great ending,1368408398 +222037,32,original,1368408093 +222037,47,great ending,1368408398 +222037,50,great acting,1368408343 +222037,50,storytelling,1368408180 +222037,70,cult classic,1368408356 +222037,150,dramatic,1368408266 +222037,169,family,1368408383 +222037,204,action,1368408280 +222037,232,relationships,1368408297 +222037,296,storytelling,1368408180 +222037,318,great acting,1368408343 +222037,318,great ending,1368408398 +222037,372,good soundtrack,1337497098 +222037,372,graduation,1337497098 +222037,372,Janeane Garofalo,1337497144 +222037,372,post-college,1337497098 +222037,372,Steve Zahn,1337497136 +222037,372,winona ryder,1337497105 +222037,455,family,1368408382 +222037,508,dramatic,1368408266 +222037,668,criterion,1368408206 +222037,804,relationships,1368408297 +222037,858,great acting,1368408343 +222037,903,San Francisco,1334712894 +222037,904,Alfred Hitchcock,1334712848 +222037,904,James Stewart,1334712858 +222037,904,mystery,1334712868 +222037,904,thriller,1334712864 +222037,906,Ingrid Bergman,1334712944 +222037,913,atmospheric,1334712737 +222037,913,gritty,1334712739 +222037,913,Humphrey Bogart,1334712733 +222037,930,Cary Grant,1334713019 +222037,930,Ingrid Bergman,1334713021 +222037,1015,family,1368408383 +222037,1016,family,1368408383 +222037,1172,mentor,1368408123 +222037,1175,weird,1368408315 +222037,1199,cerebral,1368408459 +222037,1199,weird,1368408315 +222037,1210,great ending,1368408398 +222037,1241,cult classic,1368408356 +222037,1248,criterion,1368408206 +222037,1252,mystery,1334712779 +222037,1252,private detective,1334712772 +222037,1255,cult classic,1368408356 +222037,1260,talky,1368408423 +222037,1284,adapted from:book,1334712688 +222037,1284,film noir,1334712675 +222037,1284,Humphrey Bogart,1334712679 +222037,1284,Philip Marlowe,1334712664 +222037,1299,dramatic,1368408266 +222037,1307,relationships,1368408297 +222037,1552,action,1368408280 +222037,1608,action,1368408280 +222037,1623,horror,1368408373 +222037,1639,relationships,1368408297 +222037,1704,mentor,1368408123 +222037,1722,action,1368408280 +222037,1748,cerebral,1368408459 +222037,2076,weird,1368408315 +222037,2146,friendship,1337497240 +222037,2146,post-college,1337497232 +222037,2167,action,1368408280 +222037,2262,relationships,1368408297 +222037,2291,original,1368408093 +222037,2315,horror,1368408374 +222037,2335,comedy,1368408139 +222037,2371,comedy,1368408139 +222037,2394,story,1368408441 +222037,2420,mentor,1368408123 +222037,2460,horror,1368408373 +222037,2762,great ending,1368408398 +222037,2858,great acting,1368408343 +222037,3006,dramatic,1368408266 +222037,3018,horror,1368408373 +222037,3070,cult classic,1368408356 +222037,3105,dramatic,1368408266 +222037,3157,family,1368408382 +222037,3421,comedy,1368408139 +222037,3470,criterion,1368408206 +222037,3740,cult classic,1368408356 +222037,3986,action,1368408280 +222037,4085,comedy,1368408139 +222037,4128,cult classic,1368408356 +222037,4226,storytelling,1368408180 +222037,4725,horror,1368408373 +222037,4848,visually appealing,1368408329 +222037,4878,cerebral,1368408459 +222037,4878,original,1368408093 +222037,4878,weird,1368408315 +222037,5452,family,1368408382 +222037,5945,loneliness,1368408224 +222037,5995,dramatic,1368408266 +222037,6188,comedy,1368408139 +222037,6987,criterion,1368408206 +222037,7147,story,1368408441 +222037,7327,criterion,1368408206 +222037,8154,criterion,1368408206 +222037,8641,comedy,1368408139 +222037,8981,relationships,1368408297 +222037,32587,storytelling,1368408180 +222037,37729,visually appealing,1368408329 +222037,60684,visually appealing,1368408329 +222037,64839,loneliness,1368408224 +222037,79132,cerebral,1368408459 +222037,89864,Anna Kendrick,1334711499 +222037,89864,Joseph Gordon-Levitt,1334711494 +222064,260,classic,1430906037 +222064,260,scifi,1430906033 +222064,115569,ambition,1430906568 +222064,115569,creepy,1430906568 +222064,115569,thrilling,1430906568 +222071,780,aliens,1141051371 +222071,1625,michael douglas,1141051599 +222071,2329,awsom,1141051502 +222071,2959,awsom,1141051496 +222071,4886,pixar,1141051335 +222104,4848,dreamlike,1450555109 +222104,4848,lesbian,1450555103 +222104,4848,sexual,1450555100 +222104,79132,complicated,1450554872 +222104,79132,dreams,1450554855 +222104,79132,Leonardo DiCaprio,1450554859 +222104,92259,friendship,1450555004 +222104,92259,soundtrack,1450555013 +222104,92259,touching,1450555000 +222109,1917,dull,1443137959 +222109,85438,nice,1443138030 +222113,69685,Witty,1298868734 +222130,34437,boring,1137601688 +222130,39183,art,1137601675 +222132,608,black comedy,1447444785 +222132,608,Coen Brothers,1447444781 +222132,608,dark comedy,1447444779 +222132,608,dark humor,1447444791 +222132,608,funny,1447444793 +222132,1587,adventure,1447445932 +222132,1587,soundtrack,1447445916 +222132,4553,John Carpenter,1447539056 +222132,8874,anti-hero,1447444847 +222132,8874,black comedy,1447444818 +222132,8874,british comedy,1447444826 +222132,8874,dark comedy,1447444832 +222132,8874,dark humor,1447444828 +222132,8874,Edgar Wright,1447444838 +222132,8874,funny,1447444842 +222132,8874,hilarious,1447444834 +222132,8874,Nick Frost,1447444836 +222132,8874,parody,1447444820 +222132,8874,Simon Pegg,1447444819 +222132,8874,zombie,1447444830 +222132,8874,zombies,1447444816 +222132,27592,Chan-wook Park,1447444399 +222132,27592,dark,1447444411 +222132,27592,Revenge Trilogy,1447444422 +222132,27592,stylized,1447444414 +222132,27592,violent,1447444403 +222132,27773,Chan-Wook Park,1447444470 +222132,27773,disturbing,1447444461 +222132,27773,Korea,1447444466 +222132,27773,stylized,1447444475 +222132,27773,twist ending,1447444458 +222132,27773,violent,1447444463 +222132,42632,beautiful cinematography,1447444437 +222132,42632,Chan-wook Park,1447444434 +222132,42632,Korea,1447444442 +222132,42632,music,1447444448 +222132,42632,soundtrack,1447444450 +222132,42632,stylized,1447444431 +222132,42632,violent,1447444445 +222132,51255,black comedy,1447444864 +222132,51255,british comedy,1447444861 +222132,51255,dark comedy,1447444870 +222132,51255,Edgar Wright,1447444886 +222132,51255,Nick Frost,1447444873 +222132,51255,parody,1447444866 +222132,51255,Simon Pegg,1447444863 +222132,55820,atmospheric,1447444760 +222132,55820,Coen Brothers,1447444725 +222132,55820,over-rated,1447444737 +222132,55820,slow paced,1447444748 +222132,82667,byung-hun Lee,1447444550 +222132,82667,disturbing,1447444545 +222132,82667,Ji-woon Kim,1447444541 +222132,82667,revenge,1447444547 +222132,83134,absurd,1447444906 +222132,83134,black comedy,1447444903 +222132,83134,dark comedy,1447444915 +222132,83134,funny,1447444911 +222132,83134,gore,1447444907 +222132,83134,parody,1447444905 +222132,93840,clever,1447444931 +222132,93840,original,1447444933 +222132,93840,original plot,1447444937 +222132,93840,plot twist,1447444938 +222138,665,Golden Palm,1292531154 +222138,1274,comic book,1281270634 +222138,1274,cyberpunk,1281270628 +222138,1274,dystopia,1281270626 +222138,1274,post-apocalyptic,1281270656 +222138,2019,Akira Kurosawa,1292362709 +222138,2019,Criterion,1292362713 +222138,2019,samurai,1292362711 +222138,2019,Takashi Shimura,1292362785 +222138,2019,toshiro mifune,1292362717 +222138,2318,dark comedy,1290638312 +222138,2318,dark humor,1290638309 +222138,2318,Philip Seymour Hoffman,1290638295 +222138,3030,Akira Kurosawa,1263941318 +222138,3030,atmospheric,1263941306 +222138,3030,Toshiro Mifune,1263941313 +222138,3272,Harvey Keitel,1293901187 +222138,3435,film noir,1292500481 +222138,5690,anime,1281270225 +222138,5690,Studio Ghibli,1281270212 +222138,5690,World War II,1281270214 +222138,5867,Michael Mann,1281270260 +222138,6643,Chishu Ryu,1292362673 +222138,6643,Criterion,1292362686 +222138,6643,understated,1292362581 +222138,6643,Yasujiro Ozu,1292362575 +222138,7099,Hayao Miyazaki,1275382336 +222138,7099,Japan,1275382352 +222138,7099,post-apocalyptic,1275382338 +222138,7099,sci-fi,1275382347 +222138,7347,John Turturro,1265313105 +222138,7347,Stephen King,1265313093 +222138,8253,Hayao Miyazaki,1281270080 +222138,8253,Studio Ghibli,1281270097 +222138,26776,1920s,1281270145 +222138,26776,anime,1281270141 +222138,26776,Hayao Miyazaki,1281270151 +222138,26776,Studio Ghibli,1281270134 +222138,27408,John Malkovich,1320418397 +222138,55276,Tilda Swinton,1320418209 +222138,63062,Angelina Jolie,1281270336 +222138,63062,Angelina Jolie's lips,1281270336 +222138,78034,Ricky Gervais,1287432684 +222155,296,cult film,1426412773 +222155,296,gangster,1426412773 +222155,296,good dialogue,1426412773 +222155,45666,jack black,1187084598 +222158,1,Pixar,1340593693 +222158,911,Audrey Hepburn,1279604886 +222158,911,light,1279604886 +222158,911,slick,1279604894 +222158,911,Walter Matthau,1279604886 +222158,1036,action,1243705367 +222158,1036,christmas,1279605509 +222158,1036,humorous,1243705354 +222158,1036,lone hero,1243705361 +222158,1036,rousing,1266900758 +222158,1116,real-time,1240886797 +222158,1148,witty,1266900098 +222158,1197,sword fight,1286776572 +222158,1197,whimsical,1286776577 +222158,1256,Marx Brothers,1243704157 +222158,1265,hilarious,1286776743 +222158,1265,surreal,1286776739 +222158,1265,time travel,1286776736 +222158,1270,time travel,1243704502 +222158,1283,real-time,1240886752 +222158,1289,gets better as it goes,1178507094 +222158,1297,cal tech,1266899864 +222158,1297,genius,1266899860 +222158,1297,science,1266899839 +222158,1297,smart comedy,1266899842 +222158,1500,unrealistic,1321153589 +222158,1682,alternate reality,1266899817 +222158,1682,cerebral,1243703814 +222158,1682,identity,1243703825 +222158,1967,Jim Henson,1266900384 +222158,1967,muppets,1266900670 +222158,2076,David Lynch,1141588284 +222158,2176,real-time,1234753303 +222158,2571,mindfuck,1266900607 +222158,2571,philosophy,1266900650 +222158,2594,mindfuck,1240886784 +222158,2600,mindfuck,1240886751 +222158,2716,Bill Murray,1240887616 +222158,2716,comedy,1243704879 +222158,2716,saturday night live,1243705141 +222158,2959,psychology,1243704826 +222158,2959,social commentary,1243704826 +222158,2959,twist ending,1300938255 +222158,2966,David Lynch,1141588397 +222158,3396,Jim Henson,1243271261 +222158,3645,real-time,1181090922 +222158,3740,quirky,1243705551 +222158,3740,surreal,1243705541 +222158,4226,cerebral,1243703962 +222158,4226,Mindfuck,1243703932 +222158,4226,non-linear,1243704252 +222158,4306,crude humor,1243703723 +222158,4335,competition,1240886779 +222158,4335,puzzles,1240886777 +222158,5782,Not Luc Besson,1158433942 +222158,6368,quirky subculture,1221624035 +222158,6539,action,1243704387 +222158,6539,funny,1243704397 +222158,6539,sword fight,1243704400 +222158,7000,upbeat,1288208218 +222158,7360,action,1285191668 +222158,7360,Nudity (Topless - Brief),1285191645 +222158,31921,Sherlock Holmes,1266898582 +222158,34153,quirky subculture,1240886783 +222158,36363,Not available from Netflix,1245646036 +222158,38061,clever,1321153907 +222158,38061,crude humor,1240886762 +222158,38061,fast-paced dialogue,1240886764 +222158,38061,film noir,1240886765 +222158,38061,post-modern,1240886765 +222158,38061,satire,1240886766 +222158,38061,twisty,1240886767 +222158,38061,witty,1279604690 +222158,44761,clever,1243705687 +222158,44761,film noir,1240886738 +222158,44761,high school,1240886739 +222158,45722,sword fight,1290377394 +222158,48780,stage magic,1224210766 +222158,49422,Absurd,1268883331 +222158,49422,Parody,1268883329 +222158,50641,strangely compelling,1351759120 +222158,53318,boobs,1245947470 +222158,53318,Nudity (Full Frontal),1245947477 +222158,53318,stopping time,1245947500 +222158,53318,surrealism,1245947490 +222158,54286,shaky camera,1333777002 +222158,54372,on the run,1288244218 +222158,54881,documentary,1266898682 +222158,54881,quirky subculture,1240886756 +222158,57669,slow,1254269027 +222158,59369,action,1267681960 +222158,59369,car chase,1267681958 +222158,59369,fight scenes,1267681941 +222158,59387,beautiful,1245041153 +222158,59387,surreal,1245041139 +222158,59387,visually stunning,1245041188 +222158,60069,Pixar animation,1243705207 +222158,61132,war parody,1244697820 +222158,65642,downbeat,1240886802 +222158,65642,grim,1240886803 +222158,65642,time travel,1248923793 +222158,68358,time travel,1241998461 +222158,68954,Pixar,1272457838 +222158,68954,so well done,1244364553 +222158,72998,Michelle Rodriguez,1262045091 +222158,72998,native exploitation,1262045443 +222158,74458,action,1321259398 +222158,74458,intense,1321259380 +222158,79132,Christopher Nolan,1280089982 +222158,79132,clever,1280090007 +222158,79132,complicated,1280090011 +222158,79132,heist,1280090000 +222158,79132,intellectual,1280089996 +222158,79132,mindfuck,1280089992 +222158,79132,surreal,1280089989 +222158,79132,thought-provoking,1308001772 +222158,86332,predictable,1339990409 +222158,88129,atmospheric,1357587035 +222158,91500,shaky camera,1333776932 +222158,91529,Anne Hathaway,1344894201 +222158,91529,Batman,1344894204 +222158,91529,Christopher Nolan,1344894207 +222158,91529,Joseph Gordon-Levitt,1344894209 +222158,91630,action,1330408899 +222158,91869,puppets,1333957739 +222158,93840,clever,1353737819 +222158,93840,funny,1353737818 +222158,93840,original,1353737810 +222158,95167,Pixar,1434923525 +222158,99437,surreal,1371388824 +222158,122892,marvel cinematic universe,1430803935 +222193,509,fffff,1143027165 +222216,120222,nazi imagery,1422820674 +222216,120222,product placement,1422820636 +222216,120222,racist stereotypes,1422820665 +222216,120222,sexualization,1422820654 +222241,57640,better than the first,1250287155 +222241,57640,fairytale,1250287176 +222245,260,exciting,1444866145 +222245,260,humorous,1444866153 +222248,260,good,1435062776 +222248,296,Black comedy,1435063343 +222248,318,drama,1435067802 +222248,318,emotional,1435067802 +222248,318,exceptional acting,1435067802 +222248,904,thriller,1435063145 +222264,16,violent,1157180977 +222264,5952,boring,1157181002 +222279,231,Buddy movie,1324566150 +222279,231,comedy,1324566138 +222279,231,Jeff Daniels,1324566142 +222279,231,Jim Carrey,1324566140 +222279,231,quirky,1324566159 +222279,231,road trip,1324566144 +222279,231,toilet humor,1324566156 +222285,260,Science Fiction,1440374356 +222285,260,Star Wars,1440374343 +222295,57669,irreverent,1208427197 +222322,1547,dogs,1147809826 +222322,2436,tjejfilm,1148592989 +222322,4032,puttrig,1138808987 +222322,5506,deckare,1148681782 +222322,6623,passionate,1147809604 +222322,33085,mysrysare,1139306402 +222322,34532,mysrysare,1138096365 +222322,38038,kiddy,1140432281 +222322,39183,passionate,1147809659 +222322,40629,kostym,1137532881 +222322,40826,musikal,1140551917 +222322,44199,heist,1144361087 +222322,44665,twist,1153919376 +222354,3147,aru cu,1204818222 +222364,260,Science Fiction,1442774479 +222364,260,Star Wars,1442774492 +222365,2028,top 10 war film all time,1137308441 +222365,7299,interesting cultural conflict via French viewpoint,1137308506 +222365,7438,well made stupid schlock,1142741730 +222365,25891,wonderful light touch,1137308388 +222374,134853,complex story,1436133794 +222374,134853,creative,1436133794 +222374,134853,emotional,1436133794 +222376,2959,twisted,1246464186 +222379,260,classic,1443369568 +222379,260,first of its kind,1443369618 +222379,260,Science Fiction,1443369567 +222379,260,underdog story,1443369582 +222379,750,black comedy,1443371527 +222379,750,classic,1451671001 +222379,750,dark comedy,1443371532 +222379,750,politics,1443371557 +222379,750,Quirky,1443371530 +222379,750,satirical,1451670999 +222379,750,Stanley Kubrick,1443371548 +222379,1198,adventure,1443370299 +222379,1198,good versus evil,1443370308 +222379,1203,cinematography,1451670344 +222379,1203,classic,1451670090 +222379,1203,good dialogue,1451670084 +222379,1203,great screenplay,1451670341 +222379,1203,group psychology,1451670092 +222379,1203,Henry Fonda,1451670337 +222379,1203,imdb top 250,1451670100 +222379,1203,justice,1451670098 +222379,1203,racism,1451670077 +222379,1203,social commentary,1451670079 +222379,1203,thought-provoking,1451670088 +222379,1230,comedy,1443370058 +222379,1230,funny,1443370054 +222379,1230,intellectual,1443370064 +222379,1230,new york city,1443370051 +222379,1230,quirky,1443370043 +222379,1230,relationships,1443370045 +222379,1230,romantic,1443370055 +222379,1230,thought-provoking,1443370049 +222379,1230,witty,1443370062 +222379,1230,Woody Allen,1443370047 +222379,1235,dark comedy,1443372186 +222379,1235,dark humor,1443372188 +222379,1235,Eccentric,1443372194 +222379,1235,good dialogue,1443372184 +222379,1235,humorous,1443372198 +222379,1235,irreverent,1443372192 +222379,1235,quirky,1443372182 +222379,1235,reflective,1443372210 +222379,1244,bittersweet,1443370175 +222379,1244,classic,1443370168 +222379,1244,intellecutal,1443370158 +222379,1244,literate,1443370165 +222379,1244,Woody Allen,1443370150 +222379,1784,comedy,1443370695 +222379,1784,excellent script,1443370701 +222379,1784,Jack Nicholson,1443370693 +222379,1784,psychological,1443370712 +222379,1784,psychology,1443370698 +222379,1784,quirky,1443370705 +222379,1784,relationships,1443370708 +222379,2318,black comedy,1443387868 +222379,2318,dark,1443387855 +222379,2318,dark comedy,1443387846 +222379,2318,dark humor,1443387853 +222379,2318,dysfunctional family,1443387851 +222379,2318,loneliness,1443387844 +222379,2318,Philip Seymour Hoffman,1443387849 +222379,2318,social commentary,1443387857 +222379,3424,classic,1453738483 +222379,3424,political,1453738480 +222379,3424,race issues,1453738467 +222379,3424,racism,1453738450 +222379,3424,social commentary,1453738459 +222379,3424,spike lee,1453738448 +222379,3814,historical,1443370591 +222379,3814,humorous,1443370596 +222379,3814,intellectual,1443370597 +222379,3814,life and death,1443370585 +222379,3814,philosophical,1443370607 +222379,3814,witty,1443370609 +222379,6711,Bill Murray,1443388125 +222379,6711,bittersweet,1443388128 +222379,6711,complex characters,1443388135 +222379,6711,intelligent,1443388142 +222379,6711,loneliness,1443388146 +222379,6711,Melancholic,1443388130 +222379,6711,poignant,1443388144 +222379,6711,reflective,1443388133 +222379,7460,dialogue,1444347186 +222379,7460,talky,1444347191 +222379,33880,artistic,1443387925 +222379,33880,avante garde,1443387916 +222379,33880,bittersweet,1443387923 +222379,33880,deadpan,1443387913 +222379,33880,independent film,1443891161 +222379,33880,Indie,1443387917 +222379,33880,irreverent,1443387933 +222379,33880,quirky,1443387901 +222379,33880,SUBURBAN DYSFUNCTION,1443387929 +222379,33880,thoughtful,1443387942 +222379,33880,unique,1443387908 +222379,33880,weird,1443387910 +222379,44761,clever,1452700717 +222379,44761,neo noir,1452700713 +222379,44761,quirky,1452700724 +222379,48516,Jack Nicholson,1443369965 +222379,48516,Mafia,1443369935 +222379,48516,organized crime,1443369930 +222379,48516,psychology,1443369937 +222379,58559,action,1443369903 +222379,58559,Batman,1443369892 +222379,58559,dark,1443369900 +222379,58559,superhero,1443369894 +222379,58559,violence,1443369905 +222379,58559,violent,1443369909 +222379,69757,artistic,1443369776 +222379,69757,bittersweet,1443369774 +222379,69757,cynicism,1443369789 +222379,69757,humor,1443369783 +222379,69757,intelligent,1443369777 +222379,69757,no happy ending,1443369797 +222379,69757,nonlinear,1443369769 +222379,69757,quirky,1443369771 +222379,69757,relationships,1443369779 +222379,69757,romance,1443369780 +222379,69757,stylized,1443369787 +222379,71466,dark humor,1443388228 +222379,71466,dysfunctional family,1443388219 +222379,71466,funny,1443388238 +222379,71466,sentimental,1443388221 +222379,72011,cynicism,1443388249 +222379,72011,witty,1443388254 +222379,72720,beautiful cinematography,1443369707 +222379,72720,cinematography,1443369719 +222379,72720,meditative,1443369717 +222379,72720,sad,1443369710 +222379,72720,styling,1443369714 +222379,87234,cute,1443891336 +222379,87234,interesting characters,1443891312 +222379,87234,quirky,1443891323 +222379,87234,Richard Ayoade,1443891309 +222379,87234,stylistic,1443891329 +222379,87304,believable,1443369690 +222379,87304,great acting,1443369685 +222379,87304,heartwarming,1443369687 +222379,87304,melancholic,1443369678 +222379,87304,realism,1443369693 +222379,87304,relationships,1443369683 +222379,87304,unique story,1443369669 +222379,89864,Anna Kendrick,1445548406 +222379,89864,comedy,1445548413 +222379,89864,emotional,1445548404 +222379,89864,touching,1445548399 +222379,102800,artistic,1443891932 +222379,102800,black-and-white,1443891881 +222379,102800,great characters,1443891899 +222379,102800,self discovery,1443891902 +222379,102800,stylized,1443891934 +222379,107196,cognitive science,1443378660 +222379,107196,documentary,1443378641 +222379,107196,genius,1443378664 +222379,107196,interview,1443378666 +222379,107196,linguistics,1443378645 +222379,107196,philosophy,1443378650 +222379,107196,politics,1443378654 +222379,109374,cinematography,1443890996 +222379,109374,great dialogue,1443890985 +222379,109374,odd sense of humor,1443890989 +222379,109374,quirky,1443890993 +222379,109374,stylized,1443891008 +222379,109374,Wes Anderson,1443890998 +222379,109374,whimsical,1443890980 +222400,260,good versus evil,1438384308 +222400,260,space opera,1438384313 +222421,25752,college,1426644927 +222421,25752,comedy,1426644927 +222421,25752,silent movie,1426644927 +222421,116799,drug comedy,1426645142 +222421,116799,neo-noir,1426645186 +222421,116799,Thomas Pynchon,1426645150 +222422,296,crime,1428304432 +222422,296,funky,1428304432 +222422,296,quentin tarantino,1428304432 +222465,27434,squandered opportunity,1227290039 +222465,27434,stupid,1227290049 +222492,260,franchise,1439764470 +222492,260,Overrated,1439764446 +222523,1215,tongue in cheek steel balls hero,1351153643 +222523,1261,atmospheric,1350797617 +222523,1261,black comedy,1350797597 +222523,1261,Bruce Campbell,1350797601 +222523,1261,campy,1350797626 +222523,1261,dark comedy,1350797590 +222523,1261,dark humor,1350797584 +222523,1261,horror,1350797680 +222523,1261,humorous,1350797692 +222523,1261,splatter,1350797655 +222523,1261,zombie,1350797674 +222523,1261,zombies,1350797675 +222523,1500,assassin,1351025895 +222523,1500,Dan Aykroyd,1351025913 +222523,1500,dark comedy,1351025871 +222523,1500,dialogue,1351025811 +222523,1500,hit men,1351025901 +222523,1500,John Cusack,1351025927 +222523,1500,soundtrack,1351025826 +222523,1500,unrealistic,1351025875 +222523,1653,thought-provoking,1351502322 +222523,1653,uneventful,1351502358 +222523,1653,very slow,1351502368 +222523,1676,aliens,1351598008 +222523,1676,funny,1351597978 +222523,1676,satire,1351597995 +222523,1676,sci-fi,1351597998 +222523,1676,witty,1351597986 +222523,1704,math,1351505176 +222523,1704,Matt Damon,1351505193 +222523,1704,Minnie Driver,1351505257 +222523,1704,psychology,1351505263 +222523,1704,Robin Williams,1351505145 +222523,1757,boring,1350758268 +222523,1757,No story line,1350758330 +222523,2387,dark humor,1350757997 +222523,2387,Nudity (Rear),1350757981 +222523,2387,Nudity (Topless),1350758006 +222523,3740,steel balls hero,1351026753 +222523,4066,steel balls hero,1351026616 +222523,27773,incest,1350758135 +222523,51935,based on a book,1351546604 +222523,51935,Danny Glover,1351546586 +222523,51935,sniper,1351546594 +222523,54503,'dick',1350758705 +222523,54503,'dick' just isn't funny,1350758705 +222523,55080,'In your face' violence,1352412610 +222523,76251,steel balls hero,1351026688 +222523,79592,spiteful humour,1350561287 +222523,93510,'dick' just isn't funny,1351026233 +222523,96610,pointless plot,1350476761 +222570,4720,ghosts,1172128259 +222570,5445,Philip K. Dick,1172128094 +222570,27611,sci-fi,1292397703 +222570,27611,space,1292397711 +222570,42738,vampires,1172128424 +222586,1446,historical,1342427895 +222586,95591,visually stunning,1341720813 +222586,103557,South Africa,1373513053 +222586,109280,disaster,1394249260 +222589,6064,boxing drama,1175035539 +222597,296,black humor,1421525453 +222597,296,legend,1421525453 +222597,296,quentin tarantino,1421525453 +222597,3275,cheap,1379772271 +222597,52319,historically inaccurate,1378576378 +222597,52319,some funny parts,1378576363 +222597,52319,Tarantino,1378576411 +222597,52319,violently stupid,1378576342 +222597,101525,psychological,1379779728 +222618,3633,George Lazenby,1447251720 +222618,3633,james bond,1447251717 +222618,3635,assassin,1447251640 +222618,3635,james bond,1447251637 +222618,3635,nuclear bomb,1447251645 +222618,3635,submarine,1447251632 +222618,3639,007,1447251673 +222618,3639,james bond,1447251671 +222618,4005,007,1447251702 +222618,4005,james bond,1447251699 +222619,260,action,1442674647 +222619,260,sci-fi,1442674639 +222621,1120,1990s,1438217234 +222621,1120,america,1438217192 +222621,1120,censorship,1438217219 +222621,1120,porn industry,1438217192 +222621,1587,1980s,1438224203 +222621,2420,1980s,1438222220 +222621,3740,1980s,1438224210 +222621,4915,1980s,1438224156 +222621,6638,1980s,1438224365 +222621,6638,california,1438224368 +222621,63876,civil rights,1438217271 +222621,63876,politics,1438217287 +222621,63876,San Francisco,1438217277 +222621,63876,Sean Penn,1438217283 +222645,260,action,1432699323 +222645,260,sci-fi,1432699319 +222645,260,Science Fiction,1432699338 +222727,3155,best movie,1232965536 +222753,7624,cute boys,1137383534 +222753,48304,"Tribe dialogue ""He's f**ked!"" Incredulous",1167208128 +222759,7361,absolute favorite,1138213985 +222759,7361,quirky,1138213985 +222806,356,life through the eyes of a low iq man,1436089808 +222806,356,loosely based on a historical event,1436089808 +222806,356,love and life for a low iq man,1436089808 +222810,3010,belgium,1165216493 +222810,3010,dardenne,1165216452 +222810,3010,dequenne,1165216395 +222810,3010,palm d'or,1165216666 +222810,3010,verite,1165216658 +222824,64034,historical,1437804205 +222824,64034,sad,1437804205 +222824,64034,tragedy,1437804205 +222831,260,space action,1441553237 +222831,260,space adventure,1441553221 +222831,89039,Brit Marling,1441555405 +222837,260,epic,1443505200 +222837,260,good vs evil,1443505238 +222837,260,oldie but goodie,1443505244 +222837,260,sci-fi,1443505210 +222837,260,space adventure,1443505219 +222857,85565,Comedy,1377022063 +222872,260,epic adventure,1443300185 +222872,260,"imaginary world, characters, story, philosophical",1443300196 +222874,2706,funny,1424560330 +222874,2706,sexuality,1424560338 +222874,2706,virginity,1424560353 +222874,116191,australia,1423785129 +222874,116191,serial killer,1423785129 +222874,116191,suspense,1423785129 +222874,126562,found footage,1423096995 +222874,126562,rapture,1423096979 +222874,126562,religion,1423096985 +222903,2997,Charlie Kaufman,1160329837 +222903,5298,Charlie Kaufman,1160329826 +222903,5298,Michel Gondry,1160329869 +222903,5902,Charlie Kaufman,1160329842 +222903,6003,Charlie Kaufman,1160329840 +222903,7361,Charlie Kaufman,1160329835 +222903,48082,Michel Gondry,1197919872 +222942,49272,product placement,1164735331 +222953,4973,quirky,1307416248 +222953,4973,romance,1307416242 +222953,73321,fight scenes,1294720430 +222953,78349,logic,1291844612 +222953,78349,mediocre ending,1291844630 +222962,260,action,1437332488 +222962,260,classic sci-fi,1437332506 +222962,260,space adventure,1437332492 +223011,260,good vs evil,1441543240 +223011,260,sci-fi,1441543211 +223030,2959,Brad Pitt,1378243587 +223030,2959,psychological,1378243591 +223030,4011,Brad Pitt,1378243672 +223030,4011,comedy,1378243676 +223030,4011,Crime,1378243696 +223030,4011,ensemble cast,1378243694 +223030,5620,funny,1378243958 +223030,5620,Reese Witherspoon,1378243943 +223030,5620,romantic comedy,1378243945 +223030,31685,funny,1378243842 +223030,31685,romantic comedy,1378243836 +223030,31685,Will Smith,1378243833 +223030,56949,James Marsden,1378243857 +223030,56949,Katherine Heigl,1378243851 +223030,56949,love story,1378243861 +223030,56949,romantic comedy,1378243853 +223030,56949,weddings,1378243868 +223030,68358,action,1378229652 +223030,68358,adventure,1378229654 +223030,68358,alternate reality,1378229641 +223030,68358,future,1378229657 +223030,68358,space,1378229647 +223030,68358,Star Trek,1378229650 +223030,70183,comedy,1378243801 +223030,70183,entertaining,1378243798 +223030,70183,Gerard Butler,1378243790 +223030,70183,Katherine Heigl,1378243792 +223030,70183,romantic comedy,1378243815 +223030,74458,Leonardo DiCaprio,1378243470 +223030,74458,mystery,1378243476 +223030,74458,psychological,1378243473 +223030,74458,thought-provoking,1378243509 +223030,79132,alternate reality,1378243526 +223030,79132,sci-fi,1378243538 +223030,79132,suspense,1378243531 +223030,79132,thought-provoking,1378243534 +223030,85367,Adam Sandler,1378243733 +223030,85367,funny,1378243740 +223030,85367,Jennifer Aniston,1378243736 +223030,85367,made me laugh,1378243764 +223030,104303,Ashton Kutcher,1378229502 +223035,1377,comic book,1187459915 +223035,3081,quirky,1187459964 +223035,4896,Wizards,1187459946 +223037,260,Not my thing,1436907428 +223037,260,sci-fi,1436907418 +223037,6890,slow,1436930514 +223037,6890,violence in america,1436930508 +223037,85881,Paul Giamatti,1436930167 +223037,89864,drugs,1436930147 +223037,89864,emotional,1436930143 +223037,89864,Joseph Gordon-Levitt,1436930135 +223037,105869,drugs,1436931026 +223037,105869,gay,1436931028 +223037,105869,historical,1436931024 +223037,117322,painfully bad acting,1436909351 +223037,130628,no sex scenes,1438566058 +223037,130628,quiet,1438566058 +223037,130628,scenic,1438566058 +223037,130628,sweet,1438566058 +223037,134853,coming of age,1436908820 +223037,134853,no fart jokes,1436908820 +223037,134853,surprisingly dark,1436908820 +223044,260,fantasy,1432748897 +223044,260,space action,1432748908 +223066,911,twist ending,1307481427 +223066,991,biography,1307478257 +223066,1234,twist ending,1307481260 +223066,1701,writers,1307478395 +223066,2542,British gangster,1307478771 +223066,2542,multiple storylines,1307478708 +223066,4011,British gangster,1307478752 +223066,4011,twist ending,1307478757 +223066,6281,New York City,1307478311 +223066,6378,heist,1307478455 +223066,8966,biography,1307478260 +223066,8966,psychology,1307478262 +223066,33903,political,1307478429 +223066,33903,thought-provoking,1307478425 +223066,41285,Disturbing,1307478386 +223066,46967,Woody Allen,1307478147 +223066,54372,twist ending,1307481265 +223066,60397,Musical,1307479213 +223066,69604,New York City,1307478380 +223066,72380,twists & turns,1307478487 +223066,80463,true story,1307481253 +223067,593,good acting,1429464909 +223067,593,suspense,1429464909 +223067,593,tense,1429464909 +223097,1224,branagh,1203397037 +223097,3089,father/son,1203314727 +223097,3551,dentist,1203310733 +223097,3822,auteuil,1203313596 +223097,26796,classical music,1203376839 +223097,26796,unrequited love,1203376839 +223108,260,classic sci-fi,1436122046 +223108,260,heard about it,1436122085 +223108,356,inspiring,1436122724 +223108,356,purpose in life,1436122724 +223108,356,vietnam war,1436122724 +223114,2010,black and white,1434718957 +223114,2010,dystopia,1434718854 +223114,2010,science fiction,1434718869 +223114,2010,silent film,1434718860 +223114,34150,adapted from:comic,1438951523 +223114,34150,Campy,1438951529 +223114,34150,superhero,1438951515 +223142,915,chick flick,1266321065 +223142,915,romance,1266321052 +223142,4306,animation,1266320981 +223142,4306,Eddie Murphy,1266320986 +223142,4306,Funny,1266320993 +223142,4306,parody,1266321000 +223142,60069,adventure,1266321123 +223142,60069,animated,1266321118 +223142,60069,Animation,1266321109 +223142,60069,love story,1266321093 +223142,60069,romance,1266321087 +223145,61323,dark comedy,1226695741 +223152,44665,sassy,1222474958 +223157,6350,anime,1153320410 +223159,85261,adventure,1420688337 +223159,85261,animation,1420688337 +223159,85261,sci-fi,1420688337 +223159,114662,adventure,1422665743 +223159,114662,military,1422665743 +223159,114662,war hero,1422665743 +223159,114935,mindfuck,1421989912 +223159,114935,romance,1421989912 +223159,114935,sci-fi,1421989912 +223197,101962,animation,1420532513 +223197,101962,heartfelt,1420532430 +223197,101962,tearjerker,1420532497 +223222,7361,Jim Carrey,1413919164 +223222,7361,nonlinear,1413919251 +223222,7361,psychology,1413919246 +223239,64614,ending,1266822267 +223239,74458,acting,1266821932 +223239,74458,ending twist,1266821932 +223239,74458,story,1266821916 +223247,1012,tear jerker,1236608698 +223247,32721,World War II,1236546526 +223269,1258,the story and the fabulous plays,1264418674 +223269,2719,scarry and strong,1264418909 +223269,5782,great story of love and emotions,1264418777 +223292,7187,comic timing,1378649837 +223292,7187,creative plot,1378649849 +223292,7187,jeff goldbloom,1378649714 +223292,7187,original,1378649706 +223292,7187,robert altman,1378649727 +223292,7187,zany,1378649693 +223311,170,cheesy,1364494772 +223311,170,computers,1364494794 +223311,170,hackers,1364494795 +223311,170,high school,1364494787 +223311,170,internet,1364494784 +223311,203,appreciating diversity,1351378656 +223311,203,cross dressing,1351378646 +223311,203,homophobia,1351378663 +223311,203,queer,1351378667 +223311,260,atmospheric,1350199207 +223311,260,sci-fi,1350199194 +223311,260,space,1350199198 +223311,260,stylized,1350199232 +223311,260,sword fight,1350199227 +223311,260,war,1350199214 +223311,316,aliens,1350236836 +223311,316,Egypt,1350236820 +223311,316,Kurt Russell,1350236831 +223311,316,sci-fi,1350236839 +223311,356,bittersweet,1350881105 +223311,356,classic,1350881103 +223311,356,historical,1350881126 +223311,356,inspirational,1350881130 +223311,356,Oscar (Best Picture),1350881120 +223311,356,romance,1350881114 +223311,356,vietnam war,1350881136 +223311,442,Denis Leary,1353000683 +223311,442,dystopia,1353000665 +223311,442,funny,1353000663 +223311,442,Sandra Bullock,1353000687 +223311,442,sci-fi,1353000674 +223311,480,adventure,1350199303 +223311,480,dinosaurs,1350199291 +223311,480,tense,1350199298 +223311,798,flooded sets,1354133283 +223311,923,black and white,1350322031 +223311,923,overrated,1350322009 +223311,923,thought provoking,1350322019 +223311,1513,comedy,1351099984 +223311,1513,fashion,1351100013 +223311,1513,high school,1351099991 +223311,1513,teen,1351100003 +223311,1513,unlikely favorites,1351099981 +223311,1527,campy,1350199401 +223311,1527,futuristic,1350199392 +223311,1527,humorous,1350199403 +223311,1527,sci-fi,1350199397 +223311,1527,stylized,1350199395 +223311,1527,surreal,1350199406 +223311,1590,distorted reality,1350198846 +223311,1590,hallucination,1350198848 +223311,1590,horror,1350198852 +223311,1590,Nudity (Topless),1350198854 +223311,1590,Paul W.S. Anderson,1350198897 +223311,1590,sci-fi,1350198864 +223311,1590,tense,1350198887 +223311,1590,violent,1350198890 +223311,1625,neo-noir,1350236444 +223311,1625,unrealistic,1350236434 +223311,1721,flooded sets,1354133304 +223311,1732,black comedy,1350442146 +223311,1732,bowling,1350442148 +223311,1732,cult film,1350442152 +223311,1732,dark comedy,1350442154 +223311,1732,marijuana,1350442162 +223311,1732,quirky,1350442158 +223311,1732,satirical,1350442160 +223311,1967,David Bowie,1351399975 +223311,1967,maze,1351399978 +223311,1967,muppets,1351399981 +223311,1967,Nostalgia,1351399986 +223311,1967,surreal,1351399983 +223311,1968,coming of age,1351378853 +223311,1968,high school,1351378847 +223311,1968,teen,1351378849 +223311,2174,alternate reality,1351565205 +223311,2174,black comedy,1351565177 +223311,2174,haunted house,1351565212 +223311,2174,surreal,1351565183 +223311,2174,weird,1351565179 +223311,2232,bad acting,1350364479 +223311,2232,claustrophobic,1350236321 +223311,2232,cult film,1350236293 +223311,2232,existentialism,1350236324 +223311,2232,low budget,1350236346 +223311,2232,mathematics,1350236272 +223311,2232,mindfuck,1350236271 +223311,2232,nihilism,1350236312 +223311,2232,paranoia,1350236286 +223311,2232,psychological,1350236284 +223311,2232,weird,1350236331 +223311,2291,surreal,1350438542 +223311,2321,black and white,1351100350 +223311,2321,heartwarming,1351100334 +223311,2321,poignant,1351100332 +223311,2321,satire,1351100330 +223311,2321,stylized,1351100328 +223311,2321,surreal,1351100339 +223311,2321,whimsical,1351100342 +223311,2502,off-beat comedy,1351893202 +223311,2502,quirky,1351893196 +223311,2502,satire,1351893199 +223311,2502,workplace,1351893200 +223311,2571,artificial intelligence,1350199283 +223311,2571,cult film,1350199260 +223311,2571,philosophical,1350199245 +223311,2571,philosophy,1350199244 +223311,2571,sci-fi,1350199251 +223311,2571,stylized,1350199246 +223311,2571,surreal,1350199248 +223311,2571,thought-provoking,1350199249 +223311,2571,virtual reality,1350199268 +223311,2701,action,1350434627 +223311,2701,based on a TV show,1350434630 +223311,2701,big budget,1350434622 +223311,2701,comedy,1350434606 +223311,2701,steampunk,1350434598 +223311,2701,subgenre:cop buddies,1350434653 +223311,2710,creepy,1352516580 +223311,2710,disturbing,1352516582 +223311,2710,Handycam,1352516584 +223311,2710,Interesting,1352516598 +223311,2710,original,1352516588 +223311,2710,scary,1352516573 +223311,2710,unsteady-cam,1352516601 +223311,2710,witch,1352516603 +223311,3190,bad science,1350198589 +223311,3190,cliche,1350198052 +223311,3190,expository dialogue,1350198624 +223311,3190,plot driven,1350236115 +223311,3190,sci-fi,1350198068 +223311,3190,space,1350198066 +223311,3190,superficial,1350236075 +223311,3819,food,1358754053 +223311,3819,quirky,1358754315 +223311,3819,slow,1358754050 +223311,3916,Cheesy,1352516996 +223311,3916,football,1352516997 +223311,3916,good story,1352517024 +223311,3916,inspirational,1352517019 +223311,3916,inspiring,1352517012 +223311,3916,racism,1352516999 +223311,3916,sports,1352517009 +223311,3981,androids,1350248317 +223311,3981,bad science,1350248278 +223311,3981,colonialism,1350248282 +223311,3981,enigmatic,1350248359 +223311,3981,love plot,1350248384 +223311,3981,mars,1350248287 +223311,3981,sci-fi,1350248294 +223311,4446,alien invasion,1352335664 +223311,4446,computer animation,1352335667 +223311,4446,post-apocalyptic,1352335668 +223311,4446,sci-fi,1352335670 +223311,4446,visually stunning,1352335672 +223311,4446,weak characters,1352335674 +223311,4643,dystopia,1352335373 +223311,4643,evolution,1352335404 +223311,4643,post-apocalyptic,1352335380 +223311,4643,rebellion,1352335386 +223311,4643,remake,1352335371 +223311,4643,slavery,1352335388 +223311,4643,space,1352335393 +223311,4643,space travel,1352335395 +223311,4643,violence,1352335398 +223311,4734,childish,1351399935 +223311,4734,ensemble cast,1351399916 +223311,4734,jay and silent bob,1351399902 +223311,4734,marijuana,1351399898 +223311,4734,unfunny,1351399889 +223311,4878,original,1367699994 +223311,5255,Crossdressing,1350880886 +223311,5401,blaxploitation,1350880670 +223311,5502,atmospheric,1350354850 +223311,5502,M. Night Shyamalan,1350354860 +223311,5502,Mel Gibson,1350354863 +223311,5502,religious overtones,1350354894 +223311,5502,scary,1350354879 +223311,5502,suspenseful,1350354872 +223311,5502,tense,1350354876 +223311,5666,college,1351653844 +223311,5666,drinking,1351653838 +223311,5666,drugs,1351653849 +223311,5666,funny,1351653847 +223311,5666,narrated,1351653855 +223311,5666,queer,1351653860 +223311,5666,social commentary,1351653828 +223311,5666,witty,1351653862 +223311,6058,death,1352516806 +223311,6058,gore,1352516802 +223311,6058,premonition,1352516815 +223311,6058,sadistic,1352516810 +223311,6058,violent,1352516842 +223311,6303,Michael Crichton,1350364352 +223311,6323,John Cusack,1350441662 +223311,6323,multiple personalities,1350441660 +223311,6323,silly,1350441644 +223311,6323,twist ending,1350441650 +223311,6483,hard to watch,1350937968 +223311,6483,reality TV,1350937985 +223311,6483,Worst movie ever,1350937995 +223311,6502,futuristic,1350248610 +223311,6502,post-apocalyptic,1350248597 +223311,6502,thought-provoking,1350248617 +223311,6502,virus,1350248606 +223311,6502,zombies,1350248602 +223311,7163,sci-fi,1350434200 +223311,7361,bittersweet,1350700749 +223311,7361,dreamlike,1350700752 +223311,7361,nonlinear,1350700765 +223311,7361,philosophy,1350700760 +223311,7361,psychology,1350700762 +223311,7361,surreal,1350700746 +223311,7361,thought-provoking,1350700744 +223311,7451,based on a book,1351100078 +223311,7451,clever,1351100059 +223311,7451,High School,1351100050 +223311,7451,manipulation,1351100063 +223311,7451,revenge,1351100069 +223311,7451,suprisingly clever,1351100056 +223311,7458,boring,1352516541 +223311,8361,flooded sets,1354133355 +223311,8376,awkward,1351899115 +223311,8376,dry humor,1351899145 +223311,8376,high school,1351899132 +223311,8376,nerds,1351899124 +223311,8376,off-beat comedy,1351899114 +223311,8376,quotable,1351899118 +223311,8528,funny,1351051611 +223311,8528,obscure sports,1351051632 +223311,8528,parody,1351051617 +223311,8807,Buddy movie,1350236587 +223311,8807,Neil Patrick Harris,1350236596 +223311,8807,race issues,1350236577 +223311,8807,road trip,1350236624 +223311,8807,stoner comedy,1350236571 +223311,8807,stupid,1350236632 +223311,8874,farce,1350248476 +223311,8874,satire,1350248489 +223311,8874,Simon Pegg,1350248454 +223311,8874,spoof,1350248469 +223311,8874,zombies,1350248440 +223311,8947,disjointed timeline,1352516658 +223311,8947,ghost story,1352516662 +223311,8947,ghosts,1352516665 +223311,8947,japan,1352516667 +223311,8947,scary,1352516684 +223311,30793,superficial,1350949598 +223311,32213,big bad government,1350371320 +223311,32213,not as good as the original,1350371312 +223311,32213,psychological,1350371315 +223311,34319,dystopia,1350236959 +223311,34319,future,1350236962 +223311,34319,Scarlett Johansson,1350236989 +223311,35836,crude humor,1351051253 +223311,35836,funny,1351051249 +223311,35836,marijuana,1351051263 +223311,35836,nerds,1351051268 +223311,35836,romantic comedy,1351051256 +223311,35836,slackers,1351051260 +223311,35836,social angst,1351051239 +223311,35836,virginity,1351051246 +223311,37384,comedy,1351100178 +223311,37384,identity crisis,1351100191 +223311,37384,restaurant,1351100177 +223311,37384,workplace,1351100174 +223311,37386,dystopia,1352335455 +223311,37386,heroine in tight suit,1352335457 +223311,37386,stylized,1352335464 +223311,37386,visually appealing,1352335450 +223311,39446,not as good as the first,1350441490 +223311,40732,blood,1350248692 +223311,40732,claustrophobic,1350248663 +223311,40732,tense,1350248684 +223311,40732,twist ending,1350248703 +223311,40870,1970s,1358929493 +223311,40870,coming of age,1358929450 +223311,40870,father-son relationship,1358929453 +223311,40870,good direction,1358929457 +223311,40870,homosexuality,1358929468 +223311,40870,MISFITS AND OUTSIDERS,1358929442 +223311,42723,brutal,1350441414 +223311,42723,controversial,1350441426 +223311,42723,disturbing,1350441416 +223311,42723,torture,1350441419 +223311,42723,Tough to watch,1350441421 +223311,43928,colorful,1350355428 +223311,43928,comic book,1350355434 +223311,43928,dystopia,1350355418 +223311,43928,sci-fi,1350355436 +223311,43928,stupid,1350355441 +223311,43928,stylized,1350355439 +223311,43928,visually appealing,1350355419 +223311,44191,comic book,1350236805 +223311,44191,dystopia,1350236770 +223311,44191,philosophy,1350236777 +223311,44191,politics,1350236779 +223311,44191,terrorism,1350236784 +223311,44191,thought-provoking,1350236773 +223311,44191,visually appealing,1350236801 +223311,45081,atmospheric,1350355740 +223311,45081,stylized,1350355749 +223311,47518,college,1351100279 +223311,47518,got bored & turned it off,1351100269 +223311,47518,preachy,1351100254 +223311,47518,slackers,1351100293 +223311,49278,implausible plot elements,1350434248 +223311,49278,paradox,1350434237 +223311,49278,sci-fi,1350434243 +223311,49278,time travel,1350434239 +223311,49278,unsatisfying,1350434245 +223311,51662,action,1352516468 +223311,51662,atmospheric,1352516467 +223311,51662,based on a comic,1352516518 +223311,51662,blood,1352516471 +223311,51662,Frank Miller,1352516465 +223311,51662,narrated,1352516479 +223311,51662,rape,1352516510 +223311,51662,sexualized violence,1352516491 +223311,51662,stylized,1352516463 +223311,51662,sword fight,1352516477 +223311,52328,dark,1350364165 +223311,52328,isolation,1350364183 +223311,52328,madness,1350364318 +223311,52328,psychology,1350364168 +223311,52328,space,1350364173 +223311,53953,John Cusack,1350354458 +223311,53953,Stephen King,1350354467 +223311,54732,obvious,1352073235 +223311,54732,pingpong,1352073237 +223311,55280,feel-good,1352517221 +223311,55280,mental illness,1352517223 +223311,55280,psychology,1352517225 +223311,55280,slow,1352517256 +223311,55280,small town,1352517228 +223311,55280,social angst,1352517245 +223311,55280,touching,1352517235 +223311,56174,disease,1350199340 +223311,56174,dogs,1350199343 +223311,56174,post-apocalyptic,1350199323 +223311,56174,religion,1350438919 +223311,56174,zombies,1350199332 +223311,57368,"""found footage""",1350199551 +223311,57368,city under attack,1350199592 +223311,57368,feeling of helplessness,1350199590 +223311,57368,mockumentary,1350199553 +223311,57368,monster,1350199569 +223311,57368,New York City,1350199576 +223311,57368,shallow,1350199559 +223311,57368,unsteady-cam,1350199584 +223311,60037,end of the world,1350371517 +223311,60037,weak writing,1350371488 +223311,61024,bromantic,1350267133 +223311,61024,buddy movie,1350267150 +223311,61024,Stoner Movie,1350267136 +223311,61024,unfunny,1350267144 +223311,62733,claustrophobic,1350354357 +223311,62733,found footage,1350354373 +223311,62733,isolation,1350354380 +223311,62733,zombies,1350354385 +223311,63033,good concept,1350372799 +223311,63072,cannibalism,1350372724 +223311,63072,dark,1350372715 +223311,63072,depressing,1350372689 +223311,63072,dystopia,1350372691 +223311,63072,emotional,1350372694 +223311,63072,post-apocalyptic,1350372702 +223311,63072,too long,1350372707 +223311,68791,artificial intelligence,1350948996 +223311,68791,bad acting,1350949024 +223311,68791,bad script,1350948988 +223311,68791,effects,1350949019 +223311,68791,franchise,1350949021 +223311,68791,futuristic,1350949014 +223311,68791,post-apocalyptic,1350948998 +223311,68791,sci-fi,1350949000 +223311,68791,sequel,1350949003 +223311,70286,mockumentary,1350199508 +223311,70286,satire,1350199513 +223311,70286,sci-fi,1350199530 +223311,70286,social commentary,1350199519 +223311,70565,underdog,1351051518 +223311,71106,Anna Faris,1350322921 +223311,71106,Chris O'Dowd,1350322924 +223311,71106,off-beat,1350322940 +223311,71106,surreal,1350322928 +223311,71106,time travel,1350322926 +223311,71135,amnesia,1350198730 +223311,71135,atmospheric,1350198733 +223311,71135,blood,1350198828 +223311,71135,Dennis Quaid,1350198817 +223311,71135,future,1350198740 +223311,71135,horror,1350198746 +223311,71135,insanity,1350198744 +223311,71135,mutation,1350198799 +223311,71135,post-apocalyptic,1350198748 +223311,71135,sci-fi,1350198750 +223311,71135,space,1350198752 +223311,71135,twist ending,1350198788 +223311,71248,dry humor,1350267277 +223311,71530,alternate reality,1350434129 +223311,71530,androids,1350434101 +223311,71530,cliche,1350434147 +223311,71530,dystopia,1350434127 +223311,71530,future,1350434156 +223311,71530,predictable,1350434143 +223311,71530,sci-fi,1350434120 +223311,71530,special effects,1350434140 +223311,71530,technology,1350434133 +223311,71530,thought-provoking,1350434138 +223311,71535,Bill Murray,1350198954 +223311,71535,comedy,1350198949 +223311,71535,dark humor,1350248419 +223311,71535,funny,1350198951 +223311,71535,hollywood,1350248412 +223311,71535,love plot,1350248405 +223311,71535,post-apocalyptic,1350198956 +223311,71535,teen,1350199053 +223311,71535,zombies,1350198945 +223311,72011,airport,1350324845 +223311,72011,loneliness,1350324773 +223311,72011,misanthrope,1350324818 +223311,74789,3D,1350949576 +223311,74789,superficial,1350949551 +223311,74789,visually appealing,1350949565 +223311,76060,broken lizard,1351051456 +223311,76060,restaurant,1351051447 +223311,78349,claustrophobic,1350236382 +223311,78349,dialogue driven,1350236392 +223311,78349,experiment,1350236399 +223311,78349,group psychology,1350236400 +223311,79428,quirky,1350236718 +223311,81537,marijuana,1351051427 +223311,81537,Robert Downey Jr.,1350267371 +223311,81537,unoriginal,1350267366 +223311,81537,Zach Galifianakis,1350267370 +223311,82461,futuristic,1350355317 +223311,82461,lacks depth,1350355354 +223311,82461,music,1350355323 +223311,82461,sci-fi,1350355325 +223311,82461,superficial,1350355336 +223311,82461,virtual reality,1350355314 +223311,82461,visually appealing,1350355309 +223311,83132,beautiful,1350268327 +223311,83132,bittersweet,1350268319 +223311,83132,detail,1350268332 +223311,83910,pointless,1351026540 +223311,83910,poor plot,1351026547 +223311,83910,romance,1351026554 +223311,83910,unrealistic,1351026559 +223311,84772,aliens,1350439178 +223311,84772,Atheism,1350439170 +223311,84772,nihilism,1350439188 +223311,87192,alien invasion,1350439240 +223311,87192,British,1350439247 +223311,87192,gangsters,1350439253 +223311,87192,ghetto,1350439254 +223311,87192,Not funny,1350439228 +223311,93840,clever,1350199076 +223311,93840,death/fatality,1350199118 +223311,93840,funny,1350199107 +223311,93840,gore,1350199113 +223311,93840,original plot,1350199075 +223311,93840,weird,1350199098 +223311,94864,allegory,1350199462 +223311,94864,predictable,1350199468 +223311,94864,religious overtones,1350199476 +223311,94864,scifi,1350199449 +223311,94864,technology,1350199447 +223311,94953,Paul Rudd,1350267297 +223311,94953,predictable,1350267301 +223311,95088,social angst,1350328044 +223311,95088,Understated charm,1350327037 +223311,95309,depressing,1357282064 +223311,95720,aliens,1351835583 +223311,95875,cyberpunk,1352335554 +223311,95875,dystopia,1352335614 +223311,95875,espionage,1352335620 +223311,95875,future,1352335603 +223311,95875,memory,1352335635 +223311,95875,remake,1352335565 +223311,95875,robots,1352335577 +223311,95875,Sci-fi,1352335557 +223311,95875,visually appealing,1352335547 +223311,96110,election,1350880618 +223311,96110,exaggerated,1350880626 +223311,96110,funny,1350880611 +223311,96110,politics,1350880614 +223311,96110,satire,1350880612 +223311,96610,bad science,1353180797 +223311,96610,clever,1353180762 +223311,96610,future,1353180769 +223311,96610,original,1367699994 +223311,96610,sci-fi,1353180776 +223311,96610,time travel,1353180782 +223311,97836,not funny,1358729306 +223311,97966,Creature Feature,1354133134 +223311,97966,flooded sets,1354133170 +223311,97966,gore,1354133205 +223311,97966,physical effects,1354133239 +223311,97966,sharks,1354133200 +223311,98381,bad acting,1353897051 +223311,98381,expository dialogue,1353897061 +223311,98381,franchise,1353897039 +223311,98381,gore,1353897070 +223311,99437,nonlinear,1357151823 +223311,99437,parallel universe,1357151806 +223311,99437,surreal,1357151786 +223311,103819,humor,1375746146 +223339,68952,gypsy racism,1262775594 +223339,74458,ending lame,1269291426 +223352,18,fast paced,1328563962 +223352,18,multiple short stories in one,1328563962 +223352,18,Rodriguez,1328563962 +223352,82143,DIY,1328564076 +223352,82143,survivalist,1328564076 +223358,260,classic,1435323278 +223358,260,cult classic,1435323294 +223358,260,sci fi,1435323271 +223361,260,"Action-packed, Top-stars",1430205533 +223361,1213,"Nail-biting suspense, adrenaline-pumping action",1430463960 +223361,1221,"Great Drama, Superb star-cast, all-time favorite",1430463844 +223361,4226,"Great suspense, action-packed, Top-notch director",1430464153 +223366,954,classic,1187048768 +223366,954,politics,1187048768 +223366,1298,horror,1187048685 +223366,1298,psychedelic,1187048685 +223366,1298,scary,1187048685 +223366,1779,Samuel L. Jackson,1187048715 +223366,1779,submarine,1187048715 +223366,1779,underwater,1187048715 +223366,2431,doctor,1187048734 +223366,2431,medschool,1187048734 +223366,2431,pediatrics,1187048734 +223366,2431,psychiatry,1187048734 +223366,3263,joke,1187048786 +223366,3826,fight club,1187048593 +223366,3967,britain,1187048530 +223366,3967,dance,1187048530 +223366,3967,england,1187048530 +223366,4367,slop,1187048647 +223366,6218,britain,1187048632 +223366,6218,england,1187048632 +223366,6218,soccer,1187048632 +223366,6218,teens,1187048632 +223366,8622,left wing,1187048581 +223366,8622,liberal,1187048581 +223366,8622,politics,1187048581 +223366,8622,september 11th,1187048581 +223375,2959,twist ending,1296936805 +223411,260,sci-fi,1432700601 +223411,260,space,1432700605 +223428,356,comedy,1431979498 +223428,356,drama,1431979498 +223428,356,romance,1431979498 +223513,457,Action,1152733188 +223513,457,chase,1152733193 +223513,534,C.S. Lewis,1152801688 +223513,590,indians,1152733245 +223513,590,Kevin Costner,1152733242 +223513,592,comic book,1152733295 +223513,592,creepy goodness,1152733287 +223513,592,Jack Nicholson,1152733282 +223513,608,black comedy,1152733330 +223513,608,quirky,1152733323 +223513,1425,Jamie Lee Curtis,1152736791 +223513,1425,John Cleese,1152736773 +223513,1441,Johnny Depp,1152737096 +223513,1732,Coen Brothers,1152735093 +223513,2253,Joan Cusack,1152736538 +223513,2253,Robin Williams,1152736539 +223513,2528,dystopia,1152731547 +223513,2804,Christmas,1152742305 +223513,2804,classic,1152742308 +223513,2804,Funniest Movies,1152742320 +223513,2890,Gulf War,1152733474 +223513,2916,Philip K. Dick,1152733794 +223513,3125,Graham Greene,1152742546 +223513,3324,Danny DeVito,1152736707 +223513,3685,mob,1152735660 +223513,3702,Mel Gibson,1152743843 +223513,3702,post apocalyptic,1152743841 +223513,3994,Bruce Willis,1152732871 +223513,3994,M. Night Shyamalan,1152732850 +223513,4226,nonlinear,1152801502 +223513,4226,twist ending,1152733011 +223513,4823,john cusack,1152736462 +223513,5876,Graham Greene,1152742612 +223513,5991,jazz,1152733943 +223513,6378,cars,1152801962 +223513,6378,fun,1152801979 +223513,6378,heist,1152801959 +223513,6807,Gilliam,1152731615 +223513,6807,Monty Python,1152731616 +223513,7458,Homer,1152732636 +223513,8783,M. Night Shyamalan,1152732812 +223513,41571,geisha,1152801792 +223513,41571,Japan,1152801794 +223513,44004,cheesy,1153149889 +223517,77455,Banksy,1274987447 +223517,77455,Shepard Fairey,1274987453 +223517,77455,Thierry Guetta,1274987451 +223533,32,Mindfuck Movie,1142634152 +223536,260,jedi,1439793150 +223536,260,scifi cult,1439793153 +223536,260,space epic,1439793143 +223537,25,alcoholism,1294862057 +223537,318,inspirational,1294859862 +223537,318,reflective,1294859845 +223537,318,thought-provoking,1294859872 +223537,318,twist ending,1294859874 +223537,594,National Film Registry,1294191231 +223537,594,subgenre:fairy tale,1294191239 +223537,608,slow paced,1294862979 +223537,1077,slapstick,1294188730 +223537,1077,Woody Allen,1294188737 +223537,1213,italian mob,1294862135 +223537,1228,boxing,1294192591 +223537,1228,Martin Scorsese,1294192598 +223537,1228,Robert De Niro,1294192585 +223537,1228,sports,1294192603 +223537,1407,funny,1294862204 +223537,1407,horror,1294862204 +223537,2571,confusing,1294862886 +223537,2791,absurd,1294189392 +223537,2791,comedy,1294189404 +223537,2791,Leslie Nielsen,1294189384 +223537,2791,Slapstick,1294189398 +223537,3408,cover up,1294192196 +223537,3408,Erotic,1294192214 +223537,3408,girlie movie,1294192210 +223537,3408,inspired by a real-life person,1294192205 +223537,3408,Julia Roberts,1294192233 +223537,3408,social commentary,1294192229 +223537,4034,political drama,1294862386 +223537,4034,social commentary,1294862386 +223537,4776,denzel washington,1294189214 +223537,4776,police corruption,1294189207 +223537,5989,based on a book,1294192370 +223537,5989,Christopher Walken,1294192378 +223537,5989,con artists,1294192362 +223537,5989,Tom Hanks,1294192355 +223537,6735,Bette Midler,1294192125 +223537,6870,Clint Eastwood,1294862632 +223537,6870,great acting,1294862644 +223537,6870,imdb top 250,1294862653 +223537,6870,murder,1294862622 +223537,6870,mystery,1294862618 +223537,6870,Sean Penn,1294862673 +223537,8670,foreign language,1294859346 +223537,74789,3D,1294861745 +223537,74789,incoherent,1294861765 +223537,97938,meaningful,1376624074 +223539,53996,action,1452448906 +223539,53996,aliens,1452448923 +223539,53996,robots,1452450761 +223539,69526,action,1452450767 +223539,69526,robots,1452450774 +223539,69526,sci-fi,1452450771 +223546,215,intelligent,1440107260 +223546,215,philosophical,1440107277 +223546,215,reflective,1440107258 +223546,215,romantic,1440107267 +223546,215,thought-provoking,1440107272 +223546,215,witty,1440107269 +223546,316,aliens,1440107063 +223546,316,Egyptian Mythology,1440107062 +223546,316,sci-fi,1440107052 +223546,318,friendship,1440107786 +223546,318,great acting,1440107798 +223546,318,heartwarming,1440107772 +223546,318,hope,1440107796 +223546,318,inspirational,1440107782 +223546,318,justice,1440107780 +223546,318,Morgan Freeman,1440107768 +223546,318,reflective,1440107778 +223546,318,sentimental,1440107776 +223546,318,thought-provoking,1440107784 +223546,318,twist ending,1440107788 +223546,412,19th century,1440107998 +223546,1127,aliens,1440107133 +223546,1127,sci-fi,1440107132 +223546,1127,thought-provoking,1440107136 +223546,1265,character development,1440107574 +223546,1265,comedy,1440107564 +223546,1265,existentialism,1440107559 +223546,1265,Fantasy,1440107553 +223546,1265,feel-good,1440107550 +223546,1265,funny,1440107561 +223546,1265,humorous,1440107552 +223546,1265,romance,1440107570 +223546,1265,self discovery,1440107557 +223546,1265,surreal,1440107545 +223546,1265,time loop,1440107544 +223546,1265,time travel,1440107566 +223546,1584,aliens,1440106890 +223546,1584,astronomy,1440106903 +223546,1584,beautiful,1440106894 +223546,1584,Carl Sagan,1440106886 +223546,1584,existentialism,1440106906 +223546,1584,future,1440106892 +223546,1584,idealism,1440106901 +223546,1584,inspirational,1440106871 +223546,1584,mathematics,1440106900 +223546,1584,outer space,1440106877 +223546,1584,sci-fi,1440106873 +223546,1584,science,1440106886 +223546,1584,science fiction,1440106918 +223546,1584,space,1440106888 +223546,1584,space travel,1440106897 +223546,1653,beautiful,1440107011 +223546,1653,dystopia,1440106982 +223546,1653,future,1440106994 +223546,1653,intelligent,1440107013 +223546,1653,powerful ending,1440106992 +223546,1653,realistic sci/fi,1440107006 +223546,1653,sci-fi,1440106985 +223546,1653,science fiction,1440107037 +223546,1653,space travel,1440107001 +223546,1653,thought-provoking,1440106989 +223546,1653,visually appealing,1440106998 +223546,1884,hallucinatory,1440107407 +223546,1884,psychedelic,1440107392 +223546,2009,twist ending,1440107107 +223546,2132,dialogue driven,1440107897 +223546,2132,great performances,1440107894 +223546,2321,coming of age,1440107470 +223546,2321,heartwarming,1440107465 +223546,2843,Emir Kusturica,1440108277 +223546,2843,humorous,1440108270 +223546,2843,NOTHING GOES RIGHT,1440108281 +223546,2843,witty,1440108272 +223546,2959,complicated,1440108210 +223546,2959,disturbing,1440108194 +223546,2959,mental illness,1440108190 +223546,2959,mindfuck,1440108183 +223546,2959,philosophical,1440108200 +223546,2959,thought-provoking,1440108184 +223546,2959,twist ending,1440108187 +223546,2959,violent,1440108196 +223546,3175,funny,1378460688 +223546,3358,feel good,1440106558 +223546,3358,romance,1440106550 +223546,3358,thought provoking,1440106571 +223546,3435,black and white,1440451668 +223546,3435,film noir,1440451671 +223546,3435,noir thriller,1440451674 +223546,3435,predictable,1440451692 +223546,3699,aliens,1440106936 +223546,3699,romance,1440106943 +223546,3701,aliens,1440106848 +223546,3701,thought-provoking,1440106851 +223546,3949,disturbing,1453845295 +223546,4017,biopic,1440108017 +223546,5120,intelligent,1440107587 +223546,5120,Michael Caine,1440107591 +223546,5120,murder,1440107588 +223546,5120,witty,1440107599 +223546,6713,difficult,1378452270 +223546,6713,love it or hate it,1378452265 +223546,6713,reflective,1378452268 +223546,6713,smart,1378452268 +223546,6713,touching,1378452268 +223546,6882,Underrated,1378474279 +223546,7147,adventure,1440107188 +223546,7147,bittersweet,1440107177 +223546,7147,colourful,1440107201 +223546,7147,Fantasy,1440107178 +223546,7147,heartwarming,1440107199 +223546,7147,imagination,1440107184 +223546,7147,reflective,1440107186 +223546,7147,stylized,1440107182 +223546,7147,surreal,1440107174 +223546,7147,thought-provoking,1440107192 +223546,7147,Tim Burton,1440107172 +223546,7481,aliens,1440106827 +223546,7481,thought-provoking,1440108508 +223546,7481,witty,1440108499 +223546,8914,clever,1440108058 +223546,8914,complex,1440108082 +223546,8914,Complicated,1440108057 +223546,8914,complicated plot,1440108074 +223546,8914,intellectual,1440108063 +223546,8914,intelligent,1440108072 +223546,8914,mindfuck,1440108053 +223546,8914,paradox,1440108069 +223546,8914,physics,1440108067 +223546,8914,Sci-Fi,1440108060 +223546,8914,science,1440108078 +223546,8914,science fiction,1440108077 +223546,8914,thought-provoking,1440108065 +223546,8914,time travel,1440108054 +223546,55908,dialogue driven,1440107928 +223546,55908,evolution,1440107918 +223546,55908,excellent script,1440107926 +223546,55908,Excellent use of dialogue,1440107930 +223546,55908,history,1440107968 +223546,55908,immortality,1440107932 +223546,55908,intellectual,1440107915 +223546,55908,intelligent,1440107934 +223546,55908,low budget,1440107955 +223546,55908,philosophical,1440107943 +223546,55908,psychological,1440107965 +223546,55908,religion,1440107963 +223546,55908,sci-fi,1440107921 +223546,55908,science fiction,1440107925 +223546,55908,thought-provoking,1440107943 +223546,55908,unique,1440107923 +223546,65982,action,1440107085 +223546,65982,sci-fi,1440107081 +223546,65982,space,1440107087 +223546,83613,aliens,1440107704 +223546,83613,better than expected,1440107707 +223546,96298,Argentina,1378471513 +223546,96298,parody,1378471529 +223546,96298,Peron,1378471513 +223546,96298,political satire,1378471543 +223546,101962,anime,1440108156 +223546,101962,moving,1440108160 +223546,101962,tearjerker,1440108162 +223546,104374,charming,1440106487 +223546,104374,family relationships,1440106500 +223546,104374,happiness,1440106501 +223546,104374,time travel,1440106486 +223546,104374,touching,1440106490 +223546,111362,science fiction,1428874313 +223546,111362,superpowers,1428874331 +223546,111362,time travel,1428874301 +223546,111443,cooking,1440281439 +223546,111443,food,1440281436 +223546,111443,happy ending,1440281446 +223546,111443,not funny,1440281453 +223546,111443,predictable,1440281455 +223546,111443,road trip,1440281442 +223546,115713,AI,1440106401 +223546,115713,artificial intelligence,1440106382 +223546,115713,Future,1440106414 +223546,115713,futuristic,1440106390 +223546,115713,Man Versus Machine,1440106434 +223546,115713,nudity (full frontal),1440106443 +223546,115713,philosophical,1440106375 +223546,115713,plot twist,1440106385 +223546,115713,robots,1440106387 +223546,115713,sci-fi,1440105129 +223546,115713,technology,1440106448 +223546,115713,thought provoking,1440106378 +223546,117529,adventure,1442616820 +223546,117529,Experiment Gone Awry,1442616836 +223546,117529,sci-fi,1442616824 +223627,260,epic adventure,1432635302 +223627,260,masterpiece,1432635308 +223630,71579,coming of age,1285442853 +223630,71579,great acting,1285442857 +223630,71579,Oscar Nominee: Lead Actress,1285442909 +223634,260,space,1443397884 +223634,260,space epic,1443397897 +223638,260,adventure,1440034412 +223638,260,sci-fi,1440034416 +223642,94752,inspirational,1451909339 +223642,128520,funny,1451909364 +223642,130634,action,1451909307 +223647,107771,Tilda Swinton,1404512934 +223648,55118,male nudity,1294905339 +223648,68358,adventure,1294905700 +223662,3623,adrenaline,1445000444 +223662,3623,cool,1445000452 +223662,4344,acting,1445000478 +223662,4344,suspense,1445000475 +223662,6059,acting,1445000466 +223662,6059,Suspense,1445000460 +223662,27523,cool,1445000419 +223662,27523,memories,1445000436 +223662,27523,romantic,1445000422 +223662,38304,historical,1445000488 +223662,38304,informative,1445000485 +223662,43917,acting,1445000512 +223662,43917,adventure,1445000509 +223662,85774,informative,1445000496 +223662,85774,sport,1445000501 +223662,89745,adrenaline,1445000380 +223662,89745,cool,1445000370 +223662,111622,acting,1445000521 +223662,111622,cool,1445000516 +223662,111622,music,1445000519 +223670,54997,Christian Bale,1251710333 +223674,3000,pelicula anime,1216352598 +223674,5618,pelicula anime,1216352519 +223674,5690,pelicula anime,1216352491 +223674,6350,pelicula anime,1216352551 +223674,7090,pelicula china,1216364377 +223674,7099,pelicula anime,1216352578 +223674,31658,pelicula anime,1216352094 +223677,112552,drama,1432998536 +223677,112552,inspiring,1432998536 +223677,112552,intense,1432998536 +223677,116797,drama,1434229080 +223677,116797,ethics of science,1434229080 +223677,116797,historical,1434229080 +223681,48043,artistic,1416608812 +223681,48043,atmospheric,1416608789 +223681,48043,Music,1416608802 +223681,48043,mythology,1416608813 +223681,48043,nonlinear,1416608820 +223681,48043,philosophical,1416608797 +223681,48043,surreal,1416608799 +223681,48043,thought-provoking,1416608774 +223681,48043,visually appealing,1416608786 +223691,260,good vs evil,1431091693 +223691,260,space,1431091661 +223722,114935,time travel,1417765458 +223722,115122,mockumentary,1415548044 +223722,115122,New Zealand,1415548092 +223722,115122,vampires,1415548115 +223722,115122,Wellington,1415548089 +223726,69122,it was stupid,1325442573 +223726,69122,Vulgar,1325442597 +223726,76251,hilarious,1325442704 +223731,67695,dark comedy,1296377025 +223731,67695,Racism,1296377020 +223731,67695,Seth Rogen,1296377030 +223778,593,hannibal,1446585559 +223778,858,mafia,1446585426 +223778,1213,mafia,1446585483 +223819,260,epic,1430182137 +223819,260,scifi cult,1430182147 +223830,32943,12/09,1316634728 +223876,260,sci-fi,1441534445 +223876,260,space,1441534448 +223878,1136,British comedy,1335379037 +223878,1136,funny,1335379023 +223878,3822,black and white,1367799102 +223878,5213,christianity,1367799122 +223878,6981,christianity,1367799122 +223878,8477,black and white,1367799103 +223878,26122,dark,1367799136 +223946,356,historic,1423695738 +223946,356,tear jerker,1423695738 +223946,356,touching,1423695738 +223953,89745,action,1441571217 +223953,89745,superhero,1441571236 +223954,73015,hilarious with heart,1284929736 +223969,337,John C. Reilly,1171826043 +223976,51255,action,1243549364 +223976,51255,dystopia,1243549367 +223976,51255,parody,1243549361 +223976,51255,slow start,1243549371 +223981,2579,atmospherically beautiful,1315512335 +223981,2579,crime,1315512603 +223981,2579,psychology,1315512603 +223981,3756,Uma Thurman,1315419644 +223981,6973,Richard Gere,1315419667 +223981,7618,Anthony Hopkins,1315419292 +223981,8950,atmospheric,1315512411 +223981,8950,visually stunning,1315512411 +223981,33166,Disturbing and moving,1315512261 +223981,52328,visually stunning,1315512452 +223985,260,Family drama,1440407400 +223985,260,space action,1440407451 +224038,260,Not my thing,1437426809 +224052,4474,friendship,1243973631 +224052,4474,must see!,1243973669 +224052,4474,touching,1243973669 +224052,6874,classic,1243973850 +224052,6874,revenge,1243973850 +224052,7438,classic,1243973828 +224052,26744,drama,1243974793 +224052,26744,sad but good,1243974793 +224052,26744,true love story,1243974793 +224052,99807,drama,1435002886 +224052,99807,handicapped,1435002886 +224052,99807,romance,1435002886 +224092,593,1990s,1438705485 +224092,593,oscar winner,1438705485 +224092,593,scary,1438705485 +224095,260,Science Fiction,1433945544 +224095,260,space,1433945571 +224095,260,sword fight,1433945588 +224095,593,cold-blooded,1433946211 +224095,593,elegant,1433946211 +224095,593,murder,1433946211 +224105,1193,Classic Jack,1140209585 +224106,4896,Harry Potter,1167446591 +224112,858,tag,1162210051 +224116,64839,choices,1241749824 +224116,64839,fate vs. free will,1241749824 +224116,64839,sexuality,1241749824 +224116,67534,bad story,1241749953 +224124,260,"space adventure, princess,",1441077703 +224156,260,space adventure,1434026186 +224160,2245,women in the workplace,1373955572 +224160,2313,David Lynch,1373934371 +224160,6385,girl positive,1376259989 +224160,6385,girl power,1376259989 +224196,589,action,1432622489 +224196,589,Arnold Schwarzenegger,1432622493 +224196,589,cyborgs,1432622546 +224196,589,future,1432622509 +224196,589,robots,1432622538 +224196,589,sci-fi,1432622504 +224196,589,terminator,1432622499 +224196,589,violence,1432622514 +224196,3578,drama,1432622402 +224196,3578,history,1432622390 +224196,3578,Russell Crowe,1432622398 +224196,4306,animation,1432622726 +224196,4306,comedy,1432622724 +224196,4306,fairy tale,1432622742 +224196,4306,Funny,1432622734 +224196,4306,witty,1432622730 +224196,5218,animated,1432622756 +224196,5218,animation,1432622753 +224196,5218,funny,1432622755 +224196,5218,ice age,1432622768 +224196,51662,action packed,1432622437 +224196,51662,army,1432622455 +224196,51662,drama,1432622445 +224196,51662,europe,1432622477 +224196,51662,fight,1432622466 +224196,51662,history,1432622458 +224196,133389,amitabh bachan,1432622340 +224196,133389,bollywood,1432622328 +224221,2395,coming of age,1166333710 +224221,2395,need to own,1166333721 +224221,47970,Zack Braff,1166333608 +224226,260,AWESOME,1434423139 +224226,260,classic,1434423122 +224226,260,classic sci-fi,1434423132 +224226,260,Highly quotable,1434423145 +224226,260,quotable,1434423143 +224226,260,sci-fi,1434423135 +224226,6373,comedy,1434423584 +224226,6373,creative plot,1434423584 +224226,6373,hilarious,1434423584 +224252,4361,funny as hell,1319693600 +224252,52328,piece of crap,1320359641 +224252,52328,unoriginal,1320359669 +224252,60333,mind bending,1319692948 +224252,85394,human nature,1319692817 +224252,86377,not a movie,1320202046 +224252,86377,raping hitler,1320202059 +224255,260,epic,1441044755 +224255,260,imaginative,1441044735 +224255,260,space epic,1441044748 +224255,318,atmospheric,1441048099 +224255,318,classic,1441048089 +224255,318,friendship,1441048081 +224255,318,good acting,1441048138 +224255,318,great acting,1441048101 +224255,318,great ending,1441048091 +224255,318,great performances,1441048127 +224255,318,great soundtrack,1441048176 +224255,318,hope,1441048104 +224255,318,inspirational,1441048083 +224255,318,justice,1441048098 +224255,318,Morgan Freeman,1441048067 +224255,318,narrated,1441048108 +224255,318,powerful ending,1441048117 +224255,318,prison,1441048073 +224255,318,prison escape,1441048078 +224255,318,redemption,1441048119 +224255,318,reflective,1441048096 +224255,318,Stephen King,1441048086 +224255,318,thought-provoking,1441048085 +224255,356,feel-good,1441048800 +224255,2028,Steven Spielberg,1441048281 +224255,2028,Tom Hanks,1441048280 +224255,2028,World War II,1441048278 +224255,4995,genius,1441048189 +224255,4995,great soundtrack,1441047926 +224255,4995,inspirational,1441048201 +224255,4995,mathematics,1441048184 +224255,4995,Russell Crowe,1441048199 +224255,4995,schizophrenia,1441048185 +224255,5349,origin story,1441048424 +224255,5349,superhero,1441048406 +224255,5349,Tobey Maguire,1441048408 +224255,7153,epic,1441048481 +224255,7153,fantasy,1441048438 +224255,7153,fantasy world,1441048453 +224255,7153,great ending,1441048449 +224255,7153,great soundtrack,1441048465 +224255,7153,high fantasy,1441048446 +224255,7153,lord of the rings,1441048485 +224255,7153,mythology,1441048479 +224255,7153,Peter Jackson,1441048454 +224255,7153,scenic,1441048493 +224255,7153,Tolkien,1441048458 +224255,81845,based on a true story,1441048241 +224255,81845,complex characters,1441048243 +224255,81845,disability,1441048250 +224255,81845,England,1441048247 +224255,81845,excellent script,1441048252 +224255,81845,friendship,1441048254 +224255,81845,great soundtrack,1441047983 +224255,81845,historical,1441048245 +224255,81845,stammering,1441048260 +224255,120130,bittersweet,1441047475 +224310,5952,imdb top 250,1322080483 +224312,260,cult classic,1431442546 +224312,260,Star Wars,1431442561 +224312,1682,drama,1431443532 +224312,1682,smart,1431443547 +224312,50872,fine cooking,1431443635 +224312,50872,funny,1431443635 +224312,50872,paris,1431443635 +224314,5203,vincent price,1139418478 +224324,260,cult classic,1431935804 +224324,260,fantasy,1431935887 +224325,260,classic,1440003497 +224325,260,Science Fiction,1440003443 +224325,260,space adventure,1440003479 +224330,3350,family,1393241223 +224330,3350,money,1393241147 +224330,3350,racism,1393241071 +224330,3350,religion,1393241081 +224343,4993,Adventure,1439497688 +224343,4993,fantasy,1439497685 +224343,6934,action,1439497787 +224343,6934,Matrix,1439497790 +224343,6934,sci-fi,1439497782 +224343,6934,virtual reality,1439497785 +224343,45186,action,1439497739 +224343,45186,spy,1439497740 +224343,45186,tom cruise,1439497735 +224343,99846,007,1439497752 +224343,106696,animation,1439497708 +224343,106696,beautiful,1439497711 +224343,106696,disney,1439497703 +224343,106696,musical,1439497705 +224361,117533,documentary,1431716494 +224361,117533,political,1431716494 +224361,117533,whistleblower,1431716494 +224372,260,classic,1443743740 +224372,260,sci-fi,1443743732 +224375,260,epic adventure,1431107722 +224375,260,special effects,1431107711 +224400,480,sci-fi,1425017163 +224400,480,steven spielberg,1425017163 +224400,480,true story,1425017163 +224429,260,sci-fi,1437503608 +224429,260,space action,1437503615 +224509,858,Mafia,1281358078 +224509,1221,organized crime,1281358085 +224509,1704,mathematics,1281360743 +224509,1704,psychology,1281360740 +224509,2278,organized crime,1281363887 +224509,26587,thought-provoking,1281358825 +224509,33905,boxing,1281360259 +224509,33905,Paul Newman,1281360257 +224509,54286,based on a book,1281357967 +224509,54286,espionage,1281357970 +224509,54286,twist ending,1281357963 +224514,260,saga,1444620557 +224514,260,Science Fiction,1444620548 +224514,260,space adventure,1444620569 +224559,356,life is like a box of chocolates,1432222518 +224559,356,story,1432222518 +224559,356,tom hanks,1432222518 +224559,6874,Quentin Tarantino,1432222435 +224559,6874,Uma Thurman,1432222447 +224559,59315,based on a comic,1432222391 +224559,59315,sci-fi,1432222401 +224573,296,Quentin Tarantino,1360220835 +224579,5782,Luc Besson,1218413206 +224585,42013,comedy,1438636843 +224585,42013,fraud,1438636843 +224585,42013,funny,1438636843 +224599,72104,artsy,1430400325 +224599,72104,group psychology,1430400325 +224599,72104,silent,1430400325 +224606,260,sci-fi,1431774514 +224606,260,space,1431774509 +224615,7976,Nudity (Full Frontal),1453948566 +224615,7976,unsimulated sex scenes,1453948571 +224615,33171,gay,1453948619 +224615,48744,gay,1453948434 +224615,48744,New York City,1453948430 +224615,48744,Nudity (Full Frontal),1453948436 +224619,1967,fantasy,1418435568 +224619,1967,maze,1418435571 +224619,6378,caper,1418434830 +224619,6378,car chase,1418434823 +224619,6378,Crime,1418434827 +224619,6378,heist,1418434815 +224619,6378,robbery,1418434810 +224619,6893,heist,1418434771 +224619,26375,setting:train?,1418434205 +224619,26375,train,1418434159 +224629,260,good versus evil,1430230982 +224629,260,sci-fi,1430230985 +224653,260,sci-fi,1436641986 +224653,260,space adventure,1436641972 +224665,296,1990s,1420148571 +224665,296,dark,1420148571 +224665,296,good music,1420148571 +224672,260,classic,1431820465 +224672,260,sci-fi,1431820473 +224672,113225,colin firth,1431820690 +224672,113225,comedy,1431820690 +224672,113225,woody allen,1431820690 +224673,318,classic,1254423138 +224673,318,imdb top 250,1254423148 +224673,318,Morgan Freeman,1254423133 +224673,318,prison escape,1254423159 +224705,1707,funny,1443773690 +224705,2953,nice,1443773725 +224726,1057,comedy,1453904370 +224726,1057,musical,1453904367 +224726,1057,New York,1453904399 +224726,1057,Paris,1453904401 +224726,1057,sweet,1453904388 +224726,1057,Woody Allen,1453904362 +224736,2360,dark comedy,1401599754 +224736,2360,dialogue driven,1401599745 +224736,2360,disturbing,1401599742 +224736,2360,dysfunctional family,1401599744 +224736,2360,father-son relationship,1401599740 +224736,2360,low budget,1401599751 +224736,2360,poignant,1401599738 +224736,2360,sexual abuse,1401599756 +224736,7071,depressing,1401599719 +224736,7071,disfunctional family,1401599717 +224736,7071,Madness,1401599715 +224736,7071,mental illness,1401599714 +224736,7071,poignant,1401599721 +224736,7071,somber,1401599722 +224736,7071,tense,1401599724 +224736,7396,intimate,1401599695 +224736,7396,Liv Ullmann,1401599698 +224736,7396,talky,1401599690 +224736,7396,understated,1401599700 +224755,79796,Plenty of Action,1290831989 +224767,112552,inspiring,1442540967 +224767,117176,good acting,1442540988 +224776,260,cosmos,1441459690 +224776,260,Science Fiction,1441459631 +224776,109487,cool,1441459830 +224779,3609,Vietnam,1169703132 +224807,1625,action,1254939084 +224807,1625,Michael Douglas,1254939015 +224807,1625,mindfuck,1254939049 +224807,1625,Mystery,1254939058 +224807,1625,plot,1254939099 +224807,1625,psychological,1254939021 +224807,1625,the twists in the plot,1254939033 +224807,1625,thriller,1254939089 +224807,1625,twist ending,1254939039 +224807,1625,unrealistic,1254939039 +224807,2712,atmospheric,1254941621 +224807,2712,dreamlike,1254941625 +224807,2712,dreams,1254941628 +224807,2712,enigmatic,1254941655 +224807,2712,erotic,1254941660 +224807,2712,New York City,1254941662 +224807,2712,Nudity (Full Frontal - Notable),1254941632 +224807,2712,Nudity (Full Frontal),1254941635 +224807,2712,seen more than once,1254941645 +224807,2712,sexual,1254941650 +224807,2712,Stanley Kubrick,1254941678 +224807,2712,thriller,1254941668 +224807,2712,Tom Cruise,1254941642 +224807,2712,voyeurism,1254941638 +224807,3355,ancient books,1254939348 +224807,3355,bad ending,1254939353 +224807,3355,devil,1254939362 +224807,3355,dialogue,1254939365 +224807,3355,Johnny Depp,1254939369 +224807,3355,Mystery,1254939373 +224807,3355,Nudity (Rear),1254939383 +224807,3355,Nudity (Topless),1254939378 +224807,3355,rare books,1254939394 +224807,3355,story,1254939404 +224807,3355,style,1254939401 +224807,4506,Atmosphere,1254940335 +224807,4506,Europe,1254940328 +224807,4506,Harrison Ford,1254939520 +224807,4506,kidnapping,1254939522 +224807,4506,Paris,1254939524 +224807,6711,Amazing Cinematography,1254939130 +224807,6711,atmospheric,1254939125 +224807,6711,Bill Murray,1254939130 +224807,6711,bittersweet,1254939221 +224807,6711,Japan,1254939196 +224807,6711,lyrical,1254939251 +224807,6711,May-December romance,1254939242 +224807,6711,Melancholic,1254939236 +224807,6711,nocturnal,1254939208 +224807,6711,relationships,1254939258 +224807,6711,Scarlett Johansson,1254939269 +224807,6711,seen more than once,1254939232 +224807,6711,tokyo,1254939199 +224807,6711,urbane,1254939202 +224808,353,cool,1154377057 +224808,353,film noir,1154377057 +224823,41571,Japan,1210777233 +224823,41571,romance,1210777258 +224836,260,classic,1439062323 +224836,260,sci-fi,1439062318 +224842,260,action,1437913398 +224842,260,sci-fi,1437913391 +224842,260,space,1437913401 +224874,47,great ending,1368263548 +224874,150,dramatic,1368256985 +224874,169,family,1368263524 +224874,204,action,1368257105 +224874,318,great acting,1368263434 +224874,455,family,1368263524 +224874,804,relationships,1368257136 +224874,858,great acting,1368263435 +224874,858,oscar (best directing),1368256937 +224874,913,talky,1368263566 +224874,1015,family,1368263525 +224874,1016,family,1368263525 +224874,1089,original,1368256566 +224874,1172,mentor,1368256633 +224874,1185,cerebral,1368264582 +224874,1223,astronomy,1137360040 +224874,1223,discovery,1137360040 +224874,1223,invention,1137360040 +224874,1223,moon,1137360055 +224874,1223,quest,1137360040 +224874,1223,rocket,1137360040 +224874,1233,hunt,1137359786 +224874,1233,hunted,1137359786 +224874,1233,submarine,1137359786 +224874,1241,cult classic,1368263471 +224874,1281,talky,1368263565 +224874,1307,relationships,1368257136 +224874,1527,visually appealing,1368263419 +224874,1552,action,1368257104 +224874,1608,action,1368257104 +224874,1617,great acting,1368263435 +224874,1623,horror,1368263511 +224874,1639,relationships,1368257136 +224874,1704,mentor,1368256633 +224874,1722,action,1368257105 +224874,1876,astronomy,1137174030 +224874,1876,catastrophy,1137174030 +224874,1876,comet,1137174030 +224874,1876,disaster,1137174030 +224874,1876,threat,1137174030 +224874,1991,horror,1368263511 +224874,2076,weird,1368263399 +224874,2167,action,1368257105 +224874,2194,oscar (best directing),1368256937 +224874,2291,original,1368256566 +224874,2315,horror,1368263511 +224874,2394,story,1368264522 +224874,2420,mentor,1368256633 +224874,2460,horror,1368263511 +224874,2762,great ending,1368263548 +224874,2993,agent,1137360237 +224874,2993,Bond,1137360237 +224874,2993,nuclear bomb,1137360237 +224874,2993,under water,1137360237 +224874,3006,dramatic,1368256985 +224874,3157,family,1368263524 +224874,3256,Based on Tom Clancy book,1153089503 +224874,3421,comedy,1368256685 +224874,3462,talky,1368263565 +224874,3986,action,1368257105 +224874,3994,storytelling,1368256791 +224874,4085,comedy,1368256685 +224874,4226,storytelling,1368256791 +224874,4725,horror,1368263511 +224874,4878,original,1368256566 +224874,4878,weird,1368263399 +224874,4993,Magic,1137359864 +224874,4993,Quest,1137359864 +224874,4993,Tolkien,1137359864 +224874,5452,family,1368263524 +224874,5945,loneliness,1368256891 +224874,5995,dramatic,1368256985 +224874,6787,story,1368264522 +224874,8641,comedy,1368256685 +224874,8981,relationships,1368257136 +224874,42015,Classical music,1256448429 +224874,42015,funny,1256448401 +224874,42015,Heath Ledger,1256448406 +224874,48516,original,1368256566 +224874,49822,Central Intelligence Agency,1417296820 +224874,49822,CIA,1417296809 +224874,49822,Cold War,1417296801 +224874,49822,espionage,1417296813 +224874,79132,cerebral,1368264583 +224893,260,EPIC,1443586383 +224919,1196,1980s,1303795732 +224919,1196,aliens,1303795728 +224919,1196,fantasy,1303795716 +224919,1196,George Lucas,1303795712 +224919,1196,Harrison Ford,1303795724 +224919,1196,robots,1303795718 +224919,1196,sci-fi,1303795721 +224961,2,bad cgi,1439999770 +224961,2,kid flick,1439999767 +224961,2,Robin Williams,1439999761 +224961,29,atmospheric,1427073029 +224961,29,Dark fantasy,1427073033 +224961,29,steampunk,1427073009 +224961,29,surreal,1427073010 +224961,29,visually appealing,1427073014 +224961,29,weird,1427073019 +224961,208,steampunk,1427673313 +224961,367,Crude,1439999515 +224961,367,jim carrey,1439999506 +224961,367,Jim Carrey being Jim Carrey,1439999517 +224961,471,quirky,1440000371 +224961,471,whimsical,1440000373 +224961,471,witty,1440000369 +224961,480,adventure,1439999804 +224961,480,scenic,1439999801 +224961,480,science,1439999797 +224961,589,artificial intelligence,1439999822 +224961,589,dystopia,1439999825 +224961,589,future,1439999827 +224961,589,stylized,1439999831 +224961,589,time travel,1439999842 +224961,589,violence,1439999829 +224961,733,action packed,1427672291 +224961,733,good action,1427672289 +224961,750,anti-war,1427670956 +224961,750,black comedy,1427670944 +224961,750,dark comedy,1427670943 +224961,750,Peter Sellers,1427670960 +224961,750,Quirky,1427670947 +224961,750,satire,1427670942 +224961,750,satirical,1427670966 +224961,858,crime,1427670986 +224961,858,Mafia,1427670990 +224961,858,organized crime,1427670976 +224961,904,mystery,1427670904 +224961,919,colourful,1427673325 +224961,919,National Film Registry,1427673329 +224961,924,atmospheric,1427673355 +224961,924,cinematography,1427673372 +224961,924,robots,1427673362 +224961,924,slow,1427673351 +224961,924,space,1427673353 +224961,924,Stanley Kubrick,1427673380 +224961,924,surreal,1427673364 +224961,924,visually appealing,1427673360 +224961,1073,roald dahl,1427072888 +224961,1073,Whimsical,1427072882 +224961,1129,dystopia,1440000528 +224961,1129,future,1440000532 +224961,1148,british,1427674267 +224961,1148,witty,1427674266 +224961,1199,black comedy,1427073061 +224961,1199,dark comedy,1427073080 +224961,1199,dystopia,1427073058 +224961,1199,quirky,1427073091 +224961,1199,satire,1427073063 +224961,1199,stylized,1427073075 +224961,1199,surreal,1427073059 +224961,1199,thought-provoking,1427073083 +224961,1206,atmospheric,1427672691 +224961,1206,disturbing,1427672713 +224961,1206,dystopia,1427672689 +224961,1206,psychological,1427672695 +224961,1206,psychology,1427672715 +224961,1206,stylized,1427672698 +224961,1206,violent,1427672701 +224961,1215,black comedy,1427674205 +224961,1215,campy,1427674204 +224961,1215,comedy,1427674206 +224961,1215,dark humor,1427674209 +224961,1215,satirical,1427674202 +224961,1222,anti-war,1427672265 +224961,1222,dialogue,1427672269 +224961,1222,military,1427672261 +224961,1387,classic,1427673825 +224961,1396,black comedy,1427671350 +224961,1396,espionage,1427671384 +224961,1396,hacker,1427671385 +224961,1396,hackers,1427671387 +224961,1396,hacking,1427671348 +224961,1396,heist,1427671382 +224961,1396,Quirky,1427671380 +224961,1517,parody,1427672342 +224961,1517,spoof,1427672344 +224961,1527,cinematography,1427674069 +224961,1527,dystopia,1427674057 +224961,1527,stylized,1427674064 +224961,1527,surreal,1427674056 +224961,1580,comedy,1439999450 +224961,1625,atmospheric,1427672474 +224961,1625,complicated,1427672477 +224961,1625,Mystery,1427672486 +224961,1625,plot twist,1427672479 +224961,1625,psychological,1427672472 +224961,1625,surprise ending,1427672485 +224961,1625,twist ending,1427672475 +224961,1625,unrealistic,1427672471 +224961,1676,Alien Invasion,1439999987 +224961,1676,deadpan,1439999993 +224961,1676,funny,1439999978 +224961,1676,satire,1440000000 +224961,1676,sci-fi,1439999982 +224961,1676,witty,1439999973 +224961,1753,drugs,1427670736 +224961,1753,marijuana,1427670738 +224961,1753,stoner comedy,1427670740 +224961,1805,Bill Murray,1440001184 +224961,1805,plot twist,1440001181 +224961,1805,pulp,1440001178 +224961,1805,twist ending,1440001176 +224961,1961,dark comedy,1427672086 +224961,1968,cult film,1427673971 +224961,1968,ensemble cast,1427673965 +224961,1968,John Hughes,1427673966 +224961,2011,alternate reality,1427674350 +224961,2011,comedy,1427674344 +224961,2011,Complex,1427674347 +224961,2011,time travel,1427674342 +224961,2012,alternate reality,1427674361 +224961,2012,science fiction,1427674364 +224961,2012,time travel,1427674365 +224961,2174,alternate reality,1427673490 +224961,2174,black comedy,1427673485 +224961,2174,comedy,1427673483 +224961,2174,ghosts/afterlife,1427673493 +224961,2174,haunted house,1427673505 +224961,2174,horror,1427673496 +224961,2174,Tim Burton,1427673500 +224961,2174,weird,1427673487 +224961,2232,existentialism,1427672891 +224961,2232,flat characters,1427672899 +224961,2232,innovative,1427672913 +224961,2232,mathematics,1427672887 +224961,2232,mindfuck,1427672886 +224961,2232,psychological,1427672875 +224961,2232,psychology,1427672876 +224961,2232,twist,1427672893 +224961,2232,weird,1427672878 +224961,2502,comedy,1427671455 +224961,2502,dark comedy,1427671465 +224961,2502,hilarious,1427671459 +224961,2502,off-beat comedy,1427671485 +224961,2502,quirky,1427671469 +224961,2502,rebellion,1427671462 +224961,2502,revenge,1427671480 +224961,2502,satire,1427671456 +224961,2683,Gross-out,1439999603 +224961,2683,Mike Myers,1439999600 +224961,2706,high school,1439999671 +224961,2706,Seann William Scott,1439999675 +224961,2706,teen comedy,1439999678 +224961,2959,dark comedy,1427672741 +224961,2959,disturbing,1427672735 +224961,2959,philosophical,1427672734 +224961,2959,psychological,1427672731 +224961,2959,quirky,1427672732 +224961,2959,twist ending,1427672753 +224961,2959,violent,1427672746 +224961,3300,anti-hero,1427673253 +224961,3300,atmospheric,1427673271 +224961,3300,futuristic,1427673259 +224961,3300,sci-fi,1427673268 +224961,3300,stranded,1427673256 +224961,3301,comedy,1427673126 +224961,3578,history,1427673409 +224961,3578,Rome,1427673405 +224961,3578,stylized,1427673411 +224961,3702,dystopia,1440000590 +224961,3702,Mel Gibson,1440000579 +224961,3702,post apocalyptic,1440000577 +224961,3702,post-apocalyptic,1440000588 +224961,3702,revenge,1440000573 +224961,3793,marvel,1427674043 +224961,3793,mutants,1427674046 +224961,3948,comedy,1427673133 +224961,3949,addiction,1427671990 +224961,3949,atmospheric,1427672002 +224961,3949,cinematography,1427671999 +224961,3949,depressing,1427672015 +224961,3949,disturbing,1427672029 +224961,3949,heroin,1427671993 +224961,3949,visually appealing,1427671989 +224961,3968,Brendan Fraser,1427672128 +224961,4011,british,1427672810 +224961,4011,comedy,1427672808 +224961,4011,cynical,1427672813 +224961,4011,dark comedy,1427672815 +224961,4011,dialogue,1427672821 +224961,4011,funny,1427672833 +224961,4011,Great dialogue,1427672817 +224961,4011,heist,1427672827 +224961,4011,quirky,1427672819 +224961,4011,stylized,1427672803 +224961,4011,twist ending,1427672799 +224961,4226,cerebral,1427673207 +224961,4226,complicated,1427673181 +224961,4226,memory,1427673177 +224961,4226,Mindfuck,1427673185 +224961,4226,mystery,1427673183 +224961,4226,nonlinear,1427673173 +224961,4226,plot twist,1427673194 +224961,4226,psychological,1427673178 +224961,4226,psychology,1427673176 +224961,4226,stylized,1427673180 +224961,4226,time loop,1427673196 +224961,4226,twist ending,1427673174 +224961,4267,different perspectives,1427671251 +224961,4308,colourful,1427672309 +224961,4308,quirky,1427672307 +224961,4308,sentimental,1427672316 +224961,4308,stylized,1427672305 +224961,4308,visually stunning,1427672311 +224961,4343,comedy,1427673058 +224961,4344,action,1427671775 +224961,4344,hackers,1427671771 +224961,4344,hacking,1427671758 +224961,4344,John Travolta,1427671762 +224961,4641,dark comedy,1427673294 +224961,4641,deadpan,1427673300 +224961,4641,quirky,1427673296 +224961,4641,stylized,1427673298 +224961,4718,teen,1439999715 +224961,4734,marijuana,1427672605 +224961,4734,parody,1427672604 +224961,4734,Stoner Movie,1427672600 +224961,4995,genius,1427672054 +224961,4995,mathematics,1427672065 +224961,4995,psychology,1427672055 +224961,4995,twist ending,1427672045 +224961,5265,Black Comedy,1427671533 +224961,5265,dark comedy,1427671534 +224961,5283,college,1427671734 +224961,5283,College Humor,1427671731 +224961,5283,Teen movie,1427671729 +224961,5418,conspiracy,1427674014 +224961,5418,espionage,1427674011 +224961,5418,spy,1427674009 +224961,6773,bizarre,1427672652 +224961,6773,irreverent,1427672648 +224961,6773,no dialogue,1427672639 +224961,6773,quirky,1427672641 +224961,6773,stylized,1427672643 +224961,6773,whimsical,1427672650 +224961,6874,kung fu,1427072978 +224961,6874,stylized,1427072993 +224961,6957,black comedy,1427671750 +224961,7254,alternate reality,1427671948 +224961,7254,Child abuse,1427671960 +224961,7254,psychology,1427671950 +224961,7254,time travel,1427671951 +224961,7254,twists & turns,1427671954 +224961,7361,alternate reality,1427673533 +224961,7361,nonlinear,1427673524 +224961,7361,philosophy,1427673527 +224961,7361,psychology,1427673550 +224961,7361,quirky,1427673538 +224961,7361,romance,1427673539 +224961,7361,surreal,1427673521 +224961,7361,surrealism,1427673543 +224961,7361,thought-provoking,1427673522 +224961,8641,comedy,1427671599 +224961,8641,funny,1427671601 +224961,8641,hilarious,1427671605 +224961,8874,black comedy,1427673842 +224961,8874,british comedy,1427673844 +224961,8874,comedy,1427673853 +224961,8874,dark comedy,1427673845 +224961,8874,dark humor,1427673848 +224961,8874,hilarious,1427673851 +224961,8874,Simon Pegg,1427673840 +224961,8874,spoof,1427673847 +224961,8914,cerebral,1427673011 +224961,8914,clever,1427672995 +224961,8914,Complicated,1427672994 +224961,8914,complicated plot,1427672991 +224961,8914,dialogue driven,1427673002 +224961,8914,intellectual,1427672998 +224961,8914,intelligent,1427673015 +224961,8914,mindfuck,1427672989 +224961,8914,paradox,1427673012 +224961,8914,physics,1427673000 +224961,8914,Sci-Fi,1427672996 +224961,8914,thought-provoking,1427672999 +224961,8914,time travel,1427672992 +224961,27706,Adventure,1427072946 +224961,27706,dark comedy,1427072941 +224961,27706,quirky,1427072939 +224961,32213,psychological,1427672861 +224961,33004,absurd,1427671813 +224961,33004,americanized movies,1427671798 +224961,33004,british comedy,1427671807 +224961,33004,comedy,1427671818 +224961,33004,douglas adams,1427671808 +224961,33004,dumbed down,1427671794 +224961,33004,sarcasm,1427671820 +224961,33004,whimsical,1427671814 +224961,33004,witty,1427671811 +224961,33794,atmospheric,1427673985 +224961,33794,stylized,1427673981 +224961,33794,vigilante,1427673982 +224961,34162,buddy movie,1427673671 +224961,34162,funny,1427673669 +224961,38061,black comedy,1427672392 +224961,38061,clever,1427672399 +224961,38061,dark comedy,1427672402 +224961,38061,fast-paced dialogue,1427672408 +224961,38061,funny,1427672398 +224961,38061,good dialogue,1427672406 +224961,38061,satire,1427672401 +224961,38061,witty,1427672393 +224961,39292,cerebral,1427671288 +224961,39292,journalism,1427671294 +224961,42725,marijuana,1427670760 +224961,42725,stoner,1427670754 +224961,42725,Stoner Movie,1427670750 +224961,42725,video games,1427670758 +224961,44191,dark,1427672548 +224961,44191,dystopia,1427672528 +224961,44191,social commentary,1427672545 +224961,44191,terrorism,1427672535 +224961,44191,thought-provoking,1427672551 +224961,44191,visually appealing,1427672532 +224961,44665,assassin,1427673787 +224961,44665,assassination,1427673782 +224961,44665,Film Noir,1427673773 +224961,44665,hitman,1427673789 +224961,44665,mistaken identity,1427673770 +224961,44665,Revenge,1427673790 +224961,44665,stylized,1427673781 +224961,44665,twist ending,1427673779 +224961,45517,cars,1427672629 +224961,45517,comedy,1427672626 +224961,45517,Pixar,1427672624 +224961,46578,comedy,1427671937 +224961,46578,dark comedy,1427671913 +224961,46578,family drama,1427671925 +224961,46578,Nietzche,1427671932 +224961,46578,off-beat comedy,1427671918 +224961,46578,quirky,1427671915 +224961,46578,satire,1427671920 +224961,46578,social commentary,1427671917 +224961,47997,dark comedy,1427671556 +224961,47997,dystopia,1427671560 +224961,47997,satire,1427671553 +224961,47997,social commentary,1427671551 +224961,48780,atmospheric,1427672425 +224961,48780,complicated,1427672443 +224961,48780,enigmatic,1427672438 +224961,48780,Michael Caine,1427672439 +224961,48780,mystery,1427672442 +224961,48780,nonlinear,1427672427 +224961,48780,psychological,1427672429 +224961,48780,revenge,1427672446 +224961,48780,Scarlett Johansson,1427672421 +224961,48780,sci-fi,1427672431 +224961,48780,steampunk,1427672423 +224961,48780,twist ending,1427672419 +224961,51255,black comedy,1427674420 +224961,51255,british comedy,1427674417 +224961,51255,dark comedy,1427674422 +224961,51255,Nick Frost,1427674425 +224961,51255,parody,1427674433 +224961,51255,Simon Pegg,1427674419 +224961,51255,surreal,1427674424 +224961,51255,violence,1427674428 +224961,51662,action,1427673440 +224961,51662,amazing photography,1427673448 +224961,51662,artistic,1427673434 +224961,51662,atmospheric,1427673442 +224961,51662,comic book,1427673455 +224961,51662,stylized,1427673432 +224961,51662,war,1427673445 +224961,52973,marijuana,1427671147 +224961,52973,Paul Rudd,1427671155 +224961,52973,pregnancy,1427671171 +224961,54881,documentary,1427671628 +224961,54881,geek,1427671636 +224961,54881,quirky,1427671627 +224961,54881,quirky subculture,1427671634 +224961,55908,dialogue driven,1427072538 +224961,55908,entirely dialogue,1427072542 +224961,55908,Excellent use of dialogue,1427072533 +224961,55908,intellectual,1427072544 +224961,55908,philosophical,1427072548 +224961,56251,futurama,1427671446 +224961,56251,intelligent humor,1427671447 +224961,59387,beautiful,1427072909 +224961,59387,beautiful cinematography,1427072919 +224961,59387,cinematography,1427072915 +224961,59387,visually stunning,1427072910 +224961,60161,intelligent humor,1427673043 +224961,62956,futurama,1427671047 +224961,62956,intelligent humor,1427671048 +224961,62956,nerd humor,1427671050 +224961,64030,unrealistic,1427671076 +224961,66297,intelligent humor,1427674401 +224961,66297,sci fi,1427674402 +224961,68237,cloning,1427670843 +224961,68237,future,1427670851 +224961,68237,psychological,1427670853 +224961,68237,science,1427670852 +224961,68237,slow paced,1427670847 +224961,68237,solitude,1427670864 +224961,68237,space,1427670866 +224961,68237,twist ending,1427670848 +224961,69122,absurd,1427671192 +224961,69122,comedy,1427671199 +224961,69122,flashbacks,1427671213 +224961,69122,funny,1427671194 +224961,69122,Ken Jeong,1427671205 +224961,69122,Zach Galifinakis,1427671203 +224961,71057,post-apocalyptic,1427671437 +224961,71057,predictable,1427671425 +224961,71057,sci-fi,1427671418 +224961,71057,Simple,1427671430 +224961,71057,surreal,1427671434 +224961,71057,visually appealing,1427671415 +224961,71106,funny,1427673724 +224961,71106,great premise,1427673733 +224961,71106,nerds,1427673723 +224961,71106,sci-fi,1427673736 +224961,71106,surreal,1427673738 +224961,71106,time travel,1427673721 +224961,71106,weird pacing,1427673727 +224961,71535,Bill Murray,1427674162 +224961,71535,clever,1427674177 +224961,71535,comedy,1427674178 +224961,71535,dark comedy,1427674181 +224961,71535,dark humor,1427674175 +224961,71535,Emma Stone,1427674161 +224961,71535,funny,1427674166 +224961,71535,horror,1427674168 +224961,71535,parody,1427674164 +224961,71535,stylized violence,1427674172 +224961,71535,witty,1427674158 +224961,76251,dark comedy,1427490998 +224961,76251,funny,1427491015 +224961,76251,quirky,1427491027 +224961,76251,stylized,1427491041 +224961,76251,violence,1427491006 +224961,77658,astronomy,1427673925 +224961,77658,biology,1427673929 +224961,77658,Carl Sagan,1427673924 +224961,77658,evolution,1427673928 +224961,77658,physics,1427673927 +224961,77658,science,1427673933 +224961,79132,alternate reality,1427674297 +224961,79132,cerebral,1427674332 +224961,79132,clever,1427674316 +224961,79132,complicated,1427674303 +224961,79132,dreamlike,1427674329 +224961,79132,intellectual,1427674319 +224961,79132,mindfuck,1427674304 +224961,79132,philosophy,1427674315 +224961,79132,psychological,1427674323 +224961,79132,psychology,1427674321 +224961,79132,surreal,1427674300 +224961,79132,thought-provoking,1427674301 +224961,79132,twist ending,1427674327 +224961,79132,visually appealing,1427674298 +224961,79702,fast-paced,1427072312 +224961,79702,quirky,1427071824 +224961,79702,stylized,1427071818 +224961,79702,visually appealing,1427072324 +224961,85774,cars,1427671510 +224961,85774,Formula 1 racing,1427671505 +224961,86237,history,1427671330 +224961,86237,science,1427671335 +224961,86237,technology,1427671331 +224961,86833,comedy,1427673233 +224961,86833,flawed characters,1427673231 +224961,86833,Kristen Wiig,1427673235 +224961,86833,offbeat,1427673243 +224961,87869,black comedy,1427671235 +224961,93721,documentary,1427671011 +224961,93721,food,1427671014 +224961,93721,Japan,1427671017 +224961,93721,minimalist,1427671010 +224961,95088,aubrey plaza,1427670787 +224961,95088,funny,1427670796 +224961,95088,time travel,1427670790 +224961,95441,buddy movie,1427671121 +224961,95441,Comedy,1427671133 +224961,95441,Funny,1427671119 +224961,95441,Mila Kunis,1427671116 +224961,96655,memory,1427670813 +224961,96655,science fiction,1427670811 +224961,103341,cornetto trilogy,1427673571 +224961,103341,funny,1427673574 +224961,103341,Nick Frost,1427673572 +224961,103341,Simon Pegg,1427673563 +224961,106503,atheism,1427670894 +224961,106503,freethinking,1427670893 +224961,106503,rationality,1427670891 +224961,106503,science,1427670889 +224961,106918,Iceland,1427592468 +224961,106918,scenic,1427592478 +224961,106918,surreal,1427592472 +224961,106918,visually appealing,1427592462 +224961,108583,british,1422671964 +224961,108583,comedy,1422671964 +224961,108583,witty,1422671964 +224961,112852,adventure,1439999081 +224961,112852,Chris Pratt,1439999076 +224961,112852,fun,1439999088 +224961,112852,Great Visuals,1439999091 +224961,112852,humorous,1439999094 +224961,112852,violent,1439999114 +224961,115122,comedy,1453670218 +224961,115122,dark comedy,1453670212 +224961,115122,humor,1453670226 +224961,115122,mockumentary,1453670233 +224999,52281,rape,1203477824 +225018,260,awesome,1432089358 +225018,260,classic sci-fi,1432089335 +225018,356,classic,1432089681 +225018,356,drama,1432089681 +225018,356,must see,1432089681 +225039,122886,Plot Recycling,1451925548 +225090,74458,ending twist,1422417994 +225090,74458,psychological,1422417988 +225090,78349,group psychology,1422418129 +225090,78349,psychological,1422418134 +225107,2,Robin Williams,1161514822 +225107,509,gripping,1161514827 +225112,318,prison,1325989103 +225112,318,twist ending,1325989098 +225112,44665,twist ending,1325989144 +225112,90405,justin timberlake,1325909020 +225115,39398,mockumentary,1164444795 +225117,2706,Nudity (Topless),1288110510 +225117,2706,sexualized,1288110499 +225117,3785,Funny as hell,1288106943 +225117,3785,parody,1288106948 +225117,3785,stupid,1288106958 +225117,3949,addiction,1288107602 +225117,3949,atmospheric,1288107631 +225117,3949,dark,1288107606 +225117,3949,depressing,1288107622 +225117,3949,Nudity (Full Frontal),1288107615 +225117,3949,prostitution,1288107611 +225117,3949,psychology,1288107608 +225117,4344,computer cracker,1288110353 +225117,4344,computers,1288110355 +225117,4344,hackers,1288110348 +225117,4344,hacking,1288110329 +225117,4344,John Travolta,1288110335 +225117,4344,Nudity (Topless - Notable),1288110338 +225117,4447,cute,1288107055 +225117,4447,Gay stereotypes,1288107060 +225117,4447,girlie movie,1288107053 +225117,4447,stupid,1288107047 +225117,6373,Morgan Freeman,1288107083 +225117,6373,religion,1288107088 +225117,7346,Elisha Cuthbert,1288107180 +225117,7346,Nudity (Topless),1288107184 +225117,7346,pornography,1288107187 +225117,35836,geeks,1288107004 +225117,35836,Nudity (Topless),1288107010 +225117,35836,sex,1288107013 +225117,35836,virginity,1288107019 +225117,48385,comedy,1288106663 +225117,48385,controversial,1288106660 +225117,48385,prostitution,1288106677 +225117,48385,racism,1288106682 +225117,61350,Vin Diesel,1288104352 +225117,63082,dreamlike,1288110853 +225117,63082,Oscar (Best Directing),1288110836 +225117,63082,Oscar (Best Picture),1288110839 +225117,63082,romance,1288110842 +225117,63082,torture,1288110848 +225117,69122,Drinking,1288106850 +225117,69122,drugs,1288106876 +225117,69122,Nudity (Topless),1288106866 +225117,69122,strippers,1288106856 +225117,76251,adapted from:comic,1288110729 +225117,76251,weapons,1288110746 +225149,50,clever,1442753693 +225149,50,complicated,1442753512 +225149,50,conspiracy,1442753542 +225149,50,great ending,1442753679 +225149,50,mindfuck,1442753516 +225149,50,twist ending,1442753508 +225149,741,anime,1412103895 +225149,741,cyborgs,1412103900 +225149,741,hackers,1412103926 +225149,741,Japan,1412103897 +225149,741,techno-evolution,1412103939 +225149,1203,good dialogue,1412103366 +225149,1203,justice,1412103374 +225149,4085,Eddie Murphy,1412091807 +225149,4085,funny,1412091811 +225149,4085,police,1412091819 +225149,5971,Hayao Miyazaki,1444419426 +225149,5971,Japan,1444419450 +225149,5971,Studio Ghibli,1444419433 +225149,5971,sweet,1444419442 +225149,6539,Johnny Depp,1412091924 +225149,6539,pirates,1412091926 +225149,6539,romance,1412091958 +225149,6754,Dark,1442752905 +225149,31658,animation,1412091619 +225149,31658,anime,1412091616 +225149,31658,dreamlike,1412091623 +225149,31658,Japan,1412091634 +225149,31658,war,1412091651 +225149,34319,cloning,1442753753 +225149,34319,future,1442753740 +225149,34319,sci-fi,1442753743 +225149,42738,dark fantasy,1442752876 +225149,42738,vampires,1442752866 +225149,42738,werewolves,1442752858 +225149,53996,aliens,1442753054 +225149,53996,franchise,1442753044 +225149,53996,giant robots,1442753063 +225149,53996,man versus machine,1442752992 +225149,53996,robots,1442753066 +225149,53996,sci-fi,1442752999 +225149,53996,teen,1442753056 +225149,53996,transformation,1442753051 +225149,55908,Excellent use of dialogue,1412090628 +225149,55908,intellectual,1412103618 +225149,55908,intelligent,1412090645 +225149,55908,thought-provoking,1412090633 +225149,74458,atmospheric,1442753312 +225149,74458,intense,1442753327 +225149,74458,mindfuck,1442753330 +225149,74458,mystery,1442753316 +225149,74458,psychological,1442753335 +225149,93420,details,1412102872 +225149,93420,slow motion scenes,1412102952 +225149,93420,snow,1412102895 +225149,93420,Snowboarding,1412102895 +225149,103253,dystopia,1442753813 +225149,103253,social commentary,1442753819 +225149,111759,sci-fi,1442753969 +225149,111759,time loop,1442753963 +225149,111759,time travel,1442753966 +225149,136020,james bond,1447608723 +225221,858,Al Pacino,1365609650 +225233,296,John Travolta,1439986418 +225233,296,Quentin Tarantino,1439986408 +225233,296,Uma Thurman,1439986398 +225233,1198,adventure,1439986345 +225233,1198,Harrison Ford,1439986339 +225233,1221,Mafia,1439986373 +225233,1221,Music,1439986368 +225245,527,true story,1241364082 +225245,924,meditative,1241364251 +225245,924,Stoner Movie,1241364268 +225245,2491,silly,1336075093 +225245,4993,fantasy,1241364293 +225245,5690,horrors of war,1241364340 +225245,5690,tragedy,1241364327 +225245,6874,stylized,1241364168 +225245,6874,violence,1241364172 +225245,7153,adventure,1241364122 +225245,7153,fantasy,1241364135 +225245,7153,imdb top 250,1241364131 +225245,60037,Bad Science,1241364213 +225245,60037,far fetched,1241364196 +225245,60037,Zooey Deschanel,1241364205 +225245,60069,environmental,1241364366 +225245,60069,pixar,1241364392 +225245,60069,Post apocalyptic,1241364378 +225245,60069,social commentary,1241364375 +225245,61323,Brad Pitt,1241363994 +225245,61323,cia,1241364016 +225245,61323,top secret,1241364034 +225271,1485,Hate Jim Carrey,1137627241 +225285,296,nonlinear,1330198239 +225315,37386,MTV,1150165939 +225315,37386,visually interesting--that's about it,1150165944 +225315,37386,yeah but damn is she hot,1150165941 +225327,260,epic opera,1439874553 +225334,260,oldie but goodie,1436438419 +225334,260,special effects,1436438433 +225355,260,Boring,1439279839 +225355,260,Old,1439279846 +225356,40583,complicated,1157245220 +225356,52241,Nudity (Topless),1233447468 +225366,32,Brad Pitt,1245723414 +225366,32,Bruce Willis,1245723441 +225366,32,dystopia,1245723465 +225366,32,Post apocalyptic,1245723447 +225366,32,post-apocalyptic,1245723466 +225366,32,psychology,1245723469 +225366,32,sci-fi,1245723480 +225366,32,time travel,1245723478 +225366,32,twist ending,1245723474 +225366,48082,artsy,1245723570 +225366,48082,Charlotte Gainsbourg,1245723587 +225366,48082,dream-like,1245723559 +225366,48082,dreams,1245723554 +225366,48082,Michel Gondry,1245723553 +225383,276,haha,1187336333 +225383,413,dont know,1187336518 +225383,671,funny shit,1187336349 +225383,707,dont know,1187336535 +225383,1298,dont know,1187336537 +225383,1438,dont know,1187336471 +225383,1441,dont know,1187336524 +225383,1587,crap,1187336462 +225383,1590,dont know,1187336473 +225383,1717,ewww,1187336368 +225383,1883,crap,1187336458 +225383,2405,dont know,1187336483 +225383,2431,dont know,1187336537 +225383,2478,mexico,1187336443 +225383,2872,dont know,1187336476 +225383,2951,dont know,1187336528 +225383,2953,dont know,1187336478 +225383,3617,stifler,1187336362 +225383,3826,tightg,1187336326 +225383,3916,awesome,1187336355 +225383,3967,drama,1187336300 +225383,4270,adventureous,1187336343 +225383,4367,dont know,1187336503 +225383,4975,chick flick 212,1187336379 +225383,6016,dont know,1187336527 +225383,6373,dont know,1187336526 +225383,6870,dont know,1187336505 +225383,8622,bullshit,1187336317 +225385,521,neo-noir,1367845952 +225385,746,entirely dialogue,1367845963 +225385,956,screwball comedy,1367845892 +225385,987,entirely dialogue,1367845963 +225385,1068,noir thriller,1367845784 +225385,1359,arnold,1367845880 +225385,1422,conspiracy theory,1367846002 +225385,1544,spielberg,1367846102 +225385,1653,drama,1234195113 +225385,1693,spielberg,1367846102 +225385,1783,neo-noir,1367845952 +225385,1902,entirely dialogue,1367845963 +225385,2579,neo-noir,1367845952 +225385,2661,mars,1367845830 +225385,2739,spielberg,1367846102 +225385,2819,conspiracy theory,1367846002 +225385,3153,dragon,1367846020 +225385,3375,mars,1367845829 +225385,3480,cheerleading,1367845862 +225385,3489,spielberg,1367846102 +225385,3698,arnold,1367845880 +225385,3783,neo-noir,1367845952 +225385,3929,marx brothers,1367846115 +225385,3986,arnold,1367845880 +225385,3997,dragon,1367846020 +225385,4091,cheerleading,1367845862 +225385,4183,entirely dialogue,1367845963 +225385,4189,christian,1367845913 +225385,4189,jesus,1367845729 +225385,4220,cheerleading,1367845862 +225385,4259,entirely dialogue,1367845963 +225385,4370,spielberg,1367846102 +225385,4372,cheerleading,1367845862 +225385,4383,mountain climbing,1367846064 +225385,4387,dragon,1367846020 +225385,4558,arnold,1367845880 +225385,4612,jesus,1367845729 +225385,4783,mountain climbing,1367846064 +225385,4795,stranded,1367845806 +225385,4802,screwball comedy,1367845892 +225385,5055,dragon,1367846020 +225385,5146,dark hero,1367845847 +225385,5363,cheerleading,1367845862 +225385,5882,treasure,1367845757 +225385,5893,neo-noir,1367845952 +225385,5942,cheerleading,1367845862 +225385,6157,dark hero,1367845848 +225385,6254,screwball comedy,1367845892 +225385,6260,christian,1367845913 +225385,6450,stranded,1367845806 +225385,6568,entirely dialogue,1367845963 +225385,6683,bollywood,1367845688 +225385,6768,christian,1367845913 +225385,6986,jesus,1367845729 +225385,7004,arnold,1367845880 +225385,7075,marx brothers,1367846115 +225385,7217,noir thriller,1367845784 +225385,7223,noir thriller,1367845784 +225385,7373,dark hero,1367845847 +225385,7584,screwball comedy,1367845892 +225385,7941,marx brothers,1367846115 +225385,7943,noir thriller,1367845784 +225385,8167,treasure,1367845757 +225385,8235,marx brothers,1367846115 +225385,8711,screwball comedy,1367845892 +225385,8796,marx brothers,1367846115 +225385,8972,conspiracy theory,1367846002 +225385,25750,marx brothers,1367846115 +225385,25850,screwball comedy,1367845892 +225385,26398,mars,1367845830 +225385,27822,stranded,1367845806 +225385,32596,treasure,1367845757 +225385,34048,spielberg,1367846102 +225385,44761,neo-noir,1367845952 +225385,51086,conspiracy theory,1367846002 +225385,52241,short-term memory loss,1367846082 +225385,56775,conspiracy theory,1367846002 +225385,60684,dark hero,1367845848 +225385,68554,conspiracy theory,1367846002 +225385,74624,christian,1367845913 +225385,81562,mountain climbing,1367846064 +225385,84601,short-term memory loss,1367846082 +225385,86880,treasure,1367845757 +225385,91529,dark hero,1367845848 +225385,91976,stranded,1367845806 +225385,95875,mars,1367845829 +225385,97938,stranded,1367845806 +225390,778,United Kingdom,1211482513 +225390,8949,california,1211482567 +225390,8949,relationships,1211482555 +225390,8949,road trip,1211482564 +225390,38038,animation,1211749177 +225390,39183,forbidden love,1211482634 +225390,39183,gay,1211482610 +225390,39183,homosexuality,1211482630 +225390,39183,Love story,1211482638 +225390,59725,romance,1216486051 +225392,2819,Intelligent,1356815114 +225392,89840,special forces,1356893743 +225446,1653,interesting,1138937288 +225470,1,imdb top 250,1172144394 +225470,6,imdb top 250,1172144427 +225470,32,imdb top 250,1172144508 +225470,47,imdb top 250,1172070870 +225470,50,imdb top 250,1172070215 +225470,110,imdb top 250,1172071869 +225470,111,imdb top 250,1172070845 +225470,235,imdb top 250,1172144681 +225470,260,imdb top 250,1172069824 +225470,293,imdb top 250,1172070905 +225470,296,imdb top 250,1172070112 +225470,318,imdb top 250,1172070047 +225470,356,classic,1429558546 +225470,356,imdb top 250,1172071523 +225470,356,oscar winner,1429558546 +225470,356,tom hanks,1429558546 +225470,527,imdb top 250,1172070099 +225470,541,imdb top 250,1172071960 +225470,589,imdb top 250,1172071787 +225470,593,cannibalism,1437473568 +225470,593,hannibal,1437473568 +225470,593,imdb top 250,1172070362 +225470,593,serial killer,1437473568 +225470,599,imdb top 250,1172144047 +225470,608,imdb top 250,1172143193 +225470,750,imdb top 250,1172070240 +225470,778,imdb top 250,1172144354 +225470,858,imdb top 250,1172069723 +225470,898,imdb top 250,1172144635 +225470,899,imdb top 250,1172071272 +225470,903,imdb top 250,1172070818 +225470,904,imdb top 250,1172070178 +225470,905,imdb top 250,1172143677 +225470,908,imdb top 250,1172070323 +225470,909,imdb top 250,1172071979 +225470,910,imdb top 250,1172071397 +225470,912,imdb top 250,1172070082 +225470,913,imdb top 250,1172071128 +225470,916,imdb top 250,1172145302 +225470,919,imdb top 250,1172071902 +225470,920,imdb top 250,1172144300 +225470,922,imdb top 250,1172070631 +225470,923,imdb top 250,1172070307 +225470,924,imdb top 250,1172071408 +225470,926,imdb top 250,1172071441 +225470,928,imdb top 250,1172071357 +225470,930,imdb top 250,1172143168 +225470,940,imdb top 250,1172143936 +225470,953,google video,1171297323 +225470,953,imdb top 250,1172069637 +225470,954,imdb top 250,1172071889 +225470,955,imdb top 250,1172145449 +225470,969,imdb top 250,1172143888 +225470,1036,imdb top 250,1172144075 +225470,1080,imdb top 250,1172143549 +225470,1084,imdb top 250,1172144922 +225470,1086,imdb top 250,1172145580 +225470,1089,imdb top 250,1172071240 +225470,1090,imdb top 250,1172143641 +225470,1104,imdb top 250,1172145568 +225470,1136,imdb top 250,1172071022 +225470,1172,imdb top 250,1172072015 +225470,1178,imdb top 250,1172070914 +225470,1193,imdb top 250,1172070158 +225470,1196,imdb top 250,1172069990 +225470,1197,imdb top 250,1172143615 +225470,1198,imdb top 250,1172070202 +225470,1199,imdb top 250,1172145646 +225470,1200,imdb top 250,1172071328 +225470,1201,imdb top 250,1172070066 +225470,1203,imdb top 250,1172070190 +225470,1204,imdb top 250,1172070378 +225470,1206,imdb top 250,1172071097 +225470,1207,imdb top 250,1172070952 +225470,1208,imdb top 250,1172070832 +225470,1209,imdb top 250,1172070290 +225470,1210,imdb top 250,1172070023 +225470,1212,google video,1171296125 +225470,1212,imdb top 250,1172069663 +225470,1213,imdb top 250,1172070254 +225470,1214,imdb top 250,1172071067 +225470,1217,imdb top 250,1172143158 +225470,1219,imdb top 250,1172070264 +225470,1221,imdb top 250,1172069727 +225470,1222,imdb top 250,1172071923 +225470,1225,imdb top 250,1172071478 +225470,1227,imdb top 250,1172143211 +225470,1228,imdb top 250,1172071302 +225470,1230,imdb top 250,1172143470 +225470,1232,imdb top 250,1172145164 +225470,1233,imdb top 250,1172071107 +225470,1234,imdb top 250,1172071754 +225470,1235,imdb top 250,1172145680 +225470,1237,imdb top 250,1172071597 +225470,1240,imdb top 250,1172071784 +225470,1242,imdb top 250,1172144286 +225470,1244,imdb top 250,1172145130 +225470,1247,imdb top 250,1172143692 +225470,1248,imdb top 250,1172071466 +225470,1250,imdb top 250,1172071078 +225470,1251,imdb top 250,1172143968 +225470,1252,imdb top 250,1172070927 +225470,1253,imdb top 250,1172069645 +225470,1254,imdb top 250,1172071041 +225470,1256,imdb top 250,1172144186 +225470,1258,imdb top 250,1172071177 +225470,1259,imdb top 250,1172144034 +225470,1260,google video,1171296044 +225470,1260,imdb top 250,1172069648 +225470,1262,imdb top 250,1172071382 +225470,1263,imdb top 250,1172143603 +225470,1265,imdb top 250,1172144309 +225470,1266,imdb top 250,1172143323 +225470,1267,imdb top 250,1172071347 +225470,1269,imdb top 250,1172145216 +225470,1270,imdb top 250,1172143413 +225470,1272,imdb top 250,1172144175 +225470,1276,imdb top 250,1172143254 +225470,1278,imdb top 250,1172145059 +225470,1281,google video,1231497776 +225470,1281,imdb top 250,1172143222 +225470,1283,imdb top 250,1172143045 +225470,1284,imdb top 250,1172143138 +225470,1287,imdb top 250,1172143455 +225470,1291,imdb top 250,1172143369 +225470,1293,imdb top 250,1172143831 +225470,1304,imdb top 250,1172143741 +225470,1340,imdb top 250,1172144804 +225470,1348,google video,1171296155 +225470,1348,imdb top 250,1172069653 +225470,1387,imdb top 250,1172071745 +225470,1617,imdb top 250,1172071115 +225470,1732,imdb top 250,1172144456 +225470,1927,imdb top 250,1172145342 +225470,1938,imdb top 250,1172145380 +225470,1939,imdb top 250,1172144752 +225470,1945,imdb top 250,1172071814 +225470,1950,imdb top 250,1172144873 +225470,1997,imdb top 250,1172144492 +225470,2010,imdb top 250,1172071215 +225470,2019,imdb top 250,1172070139 +225470,2028,imdb top 250,1172071252 +225470,2066,imdb top 250,1172144832 +225470,2067,imdb top 250,1172145368 +225470,2160,imdb top 250,1172145117 +225470,2186,imdb top 250,1172071805 +225470,2203,imdb top 250,1172144025 +225470,2208,imdb top 250,1172144779 +225470,2288,imdb top 250,1172145040 +225470,2313,imdb top 250,1172071858 +225470,2324,imdb top 250,1172071505 +225470,2329,imdb top 250,1172070966 +225470,2351,imdb top 250,1172143726 +225470,2366,imdb top 250,1172144534 +225470,2529,imdb top 250,1172145478 +225470,2542,imdb top 250,1172145098 +225470,2571,imdb top 250,1172070801 +225470,2648,imdb top 250,1172145255 +225470,2692,imdb top 250,1172144089 +225470,2726,imdb top 250,1172143509 +225470,2728,imdb top 250,1172144342 +225470,2731,imdb top 250,1172145392 +225470,2762,imdb top 250,1172143298 +225470,2804,imdb top 250,1172144563 +225470,2858,imdb top 250,1172070670 +225470,2927,imdb top 250,1172144001 +225470,2959,imdb top 250,1172070779 +225470,2966,imdb top 250,1172145191 +225470,3000,imdb top 250,1172143285 +225470,3022,imdb top 250,1172148299 +225470,3030,imdb top 250,1172143493 +225470,3088,imdb top 250,1172144103 +225470,3089,imdb top 250,1172143857 +225470,3095,imdb top 250,1172144438 +225470,3114,imdb top 250,1172144011 +225470,3147,imdb top 250,1172143530 +225470,3160,imdb top 250,1172144480 +225470,3196,imdb top 250,1172144904 +225470,3307,imdb top 250,1172143070 +225470,3362,imdb top 250,1172144162 +225470,3365,imdb top 250,1172145417 +225470,3435,imdb top 250,1172071197 +225470,3462,imdb top 250,1172071315 +225470,3468,imdb top 250,1172144729 +225470,3469,imdb top 250,1172145636 +225470,3578,imdb top 250,1172143703 +225470,3629,imdb top 250,1172144325 +225470,3681,imdb top 250,1172143652 +225470,3730,imdb top 250,1172144113 +225470,3801,imdb top 250,1172145174 +225470,3949,imdb top 250,1172071150 +225470,3996,imdb top 250,1172143588 +225470,4011,imdb top 250,1172144737 +225470,4226,imdb top 250,1172070343 +225470,4235,imdb top 250,1172143913 +225470,4262,imdb top 250,1172145084 +225470,4298,imdb top 250,1172145268 +225470,4306,imdb top 250,1172144668 +225470,4406,imdb top 250,1172145311 +225470,4878,imdb top 250,1172143184 +225470,4886,imdb top 250,1172145359 +225470,4973,imdb top 250,1172070652 +225470,4993,imdb top 250,1172069744 +225470,5008,imdb top 250,1172144864 +225470,5120,imdb top 250,1172144896 +225470,5147,imdb top 250,1172144138 +225470,5291,google video,1171296214 +225470,5291,imdb top 250,1172069657 +225470,5618,imdb top 250,1172071051 +225470,5690,imdb top 250,1172144788 +225470,5878,imdb top 250,1172145073 +225470,5952,imdb top 250,1172069752 +225470,5995,imdb top 250,1172070997 +225470,6016,imdb top 250,1172070226 +225470,6377,imdb top 250,1172143263 +225470,6539,imdb top 250,1172145323 +225470,6611,imdb top 250,1172145433 +225470,6650,imdb top 250,1172143871 +225470,6777,imdb top 250,1172144623 +225470,6818,imdb top 250,1172145591 +225470,6870,imdb top 250,1172144521 +225470,6874,imdb top 250,1172071942 +225470,6987,google video,1171296879 +225470,6987,imdb top 250,1172069642 +225470,7013,imdb top 250,1172144059 +225470,7064,imdb top 250,1172144582 +225470,7090,imdb top 250,1172144378 +225470,7116,imdb top 250,1172143985 +225470,7147,imdb top 250,1172144689 +225470,7153,imdb top 250,1172069749 +225470,7218,imdb top 250,1172145401 +225470,7361,imdb top 250,1172070887 +225470,7438,imdb top 250,1172071939 +225470,7700,imdb top 250,1172143332 +225470,7766,imdb top 250,1172145287 +225470,7925,imdb top 250,1172145625 +225470,7926,imdb top 250,1172145149 +225470,7981,imdb top 250,1172145556 +225470,8961,imdb top 250,1172071996 +225470,8970,imdb top 250,1172144410 +225470,25923,imdb top 250,1172145662 +225470,26131,imdb top 250,1172143801 +225470,27773,imdb top 250,1172143423 +225470,30707,imdb top 250,1172071490 +225470,30749,imdb top 250,1172071166 +225470,31410,imdb top 250,1172070988 +225470,32587,imdb top 250,1172071289 +225470,33166,imdb top 250,1172143233 +225470,33660,imdb top 250,1172144654 +225470,33794,imdb top 250,1172071842 +225470,38038,imdb top 250,1172144935 +225470,40819,imdb top 250,1172144888 +225470,44191,imdb top 250,1172143350 +225470,44555,imdb top 250,1172144847 +225470,45210,imdb top 250,1172145207 +225470,46578,imdb top 250,1172144821 +225470,48394,imdb top 250,1172071227 +225470,48516,imdb top 250,1172071371 +225470,48774,imdb top 250,1172144239 +225470,48780,imdb top 250,1172144204 +225470,50068,imdb top 250,1172145458 +225473,377,action packed,1441739186 +225473,733,action packed,1441739205 +225473,733,biological warfare,1441739214 +225473,733,Ed Harris,1441739221 +225473,733,good action,1441739218 +225473,1608,action,1441739238 +225473,1608,Harrison Ford,1441739237 +225485,5014,get,1192479125 +225486,38061,funny,1371153389 +225486,38061,sardonic,1371153422 +225486,38061,witty,1371153394 +225487,1732,your out of ur element donnie!!!!,1139169060 +225487,26680,the best movie ever!!!!!!!!,1139168884 +225487,30810,so funny!,1139168914 +225489,1416,music,1187405469 +225489,1892,Thriller,1187405579 +225489,1959,drama,1187405526 +225489,1959,romance,1187405526 +225489,2125,comedy,1187405458 +225489,2125,romance,1187405458 +225489,2423,comedy,1187405438 +225489,3113,action,1187405491 +225489,3752,Friday night movie,1187405262 +225489,3999,adventure,1187405765 +225489,4270,action,1187405334 +225489,4310,drama,1187405282 +225489,4367,action,1187405382 +225489,4975,sci-fi,1187405353 +225489,4992,romance,1187405911 +225489,5377,Friday night movie,1187405192 +225489,5444,animation,1187405670 +225489,5444,relax,1187405669 +225489,5620,romance,1187405812 +225489,5679,fantasy,1187405215 +225489,6373,humorous,1187405412 +225489,6378,hilarious,1187405246 +225489,6870,family,1187405393 +225489,8622,family,1187405318 +225489,40629,Drama,1187406107 +225489,40629,romance,1187406107 +225497,2422,luta,1443797956 +225497,4367,ação,1443797971 +225503,1921,clueless,1249020742 +225503,1921,pseudomathematics,1249020680 +225503,1921,pseudoscience,1249020680 +225503,40815,not as good as the others,1179990822 +225513,276,what happened to melanie griffith?,1187743596 +225513,413,solid comedy,1187743768 +225513,671,classic,1187743599 +225513,1438,utter shit,1187743683 +225513,1587,classic,1187743668 +225513,1717,crap horror,1187743624 +225513,1883,bullshit,1187743657 +225513,2405,adventure,1187743717 +225513,2478,the god steve martin,1187743647 +225513,2872,what?,1187743700 +225513,2951,classic Leone,1187743813 +225513,2953,decent,1187743705 +225513,3362,classic Lumet,1187743691 +225513,3617,classic,1187743625 +225513,3826,awful thriller,1187743595 +225513,3916,forget the titans,1187743590 +225513,3967,british,1187743593 +225513,4270,I didn't return for the sequel,1187743597 +225513,4367,video game adaptation,1187743738 +225513,4975,cameron crowe,1187743624 +225513,6016,best movie of the decade,1187743788 +225513,6373,decent but forgettable,1187743786 +225513,6870,okay,1187743747 +225513,8622,entertaining,1187743594 +225513,8798,except for the midget cruise,1187743805 +225513,8798,great performances,1187743805 +225519,347,disturbing,1449066604 +225519,347,Hugh Grant,1449066635 +225519,347,Nudity (Topless),1449066606 +225519,347,Roman Polanski,1449066600 +225519,1093,hallucination,1449067263 +225519,1093,Jim Morrison,1449067219 +225519,1093,music,1449067260 +225519,1093,Nudity (Topless),1449067223 +225519,1246,philosophy,1449065828 +225519,1246,poetry,1449065841 +225519,1246,Robin Williams,1449065831 +225519,1246,suicide,1449065846 +225519,1246,teacher,1449065875 +225519,1247,comedy,1449067109 +225519,1247,Dustin Hoffman,1449067077 +225519,1247,funny,1449067120 +225519,1247,notable soundtrack,1449067082 +225519,1247,satirical,1449067088 +225519,1704,combinatorics,1449065764 +225519,1704,genius,1449065718 +225519,1704,great acting,1449065752 +225519,1704,intelligent,1449065745 +225519,1704,math,1449065731 +225519,1704,psychology,1449065721 +225519,1704,Robin Williams,1449065710 +225519,1961,Dustin Hoffman,1449065337 +225519,1961,Exceptional Acting,1449065345 +225519,1961,road trip,1449065364 +225519,2858,dark comedy,1449066332 +225519,2858,kevin spacey,1449066339 +225519,2858,mental illness,1449066380 +225519,2858,reflective,1449066361 +225519,2858,sexuality,1449066351 +225519,2858,surrealism,1449066343 +225519,3949,atmospheric,1449066449 +225519,3949,dark,1449066444 +225519,3949,depressing,1449066437 +225519,3949,disturbing,1449066442 +225519,3949,emotional,1449066454 +225519,3949,intense,1449066478 +225519,3949,loneliness,1449066451 +225519,3949,Nudity (Full Frontal),1449066495 +225519,3949,psychological,1449066466 +225519,3949,psychology,1449066440 +225519,4848,Atmospheric,1449066144 +225519,4848,dark,1449066158 +225519,4848,David Lynch,1449066148 +225519,4848,Enigmatic,1449066174 +225519,4848,lesbian,1449066152 +225519,4848,mystery,1449066160 +225519,4848,nonlinear,1449066141 +225519,4848,sexual,1449066209 +225519,4848,strange,1449066196 +225519,4848,surreal,1449066139 +225519,4848,surrealism,1449066164 +225519,4848,weird,1449066187 +225519,4995,intelligent,1449065649 +225519,4995,math,1449065540 +225519,4995,psychology,1449065521 +225519,8981,Dark,1449066708 +225519,8981,disturbing,1449066711 +225519,8981,emotional,1449066753 +225519,8981,Julia Roberts,1449066699 +225519,8981,Natalie Portman,1449066690 +225519,8981,Nudity (Rear),1449066703 +225519,8981,psychology,1449066739 +225519,8981,unrealistic,1449066749 +225519,49932,atmospheric,1449066072 +225519,49932,dark,1449066062 +225519,49932,David Lynch,1449066021 +225519,49932,Nudity (Topless),1449066085 +225519,49932,surreal,1449066035 +225519,49932,unique,1449066045 +225519,49932,weird,1449066025 +225519,92259,friendship,1449065162 +225519,92259,inspirational,1449065140 +225519,92259,positive,1449065218 +225519,92259,upper class,1449065118 +225519,108981,Lars von Trier,1449067426 +225519,108981,Nudity (Full Frontal - Notable),1449067464 +225519,109374,funny,1449066864 +225519,109374,odd sense of humor,1449066874 +225519,109374,original,1449066914 +225521,296,Good dialogues,1448741602 +225521,296,Quentin Tarantino,1448741609 +225521,1203,excellent dialogue,1448741530 +225521,1203,great acting,1448741543 +225521,1721,atmospheric,1448741574 +225521,1721,romance,1448741583 +225532,50,mindfuck,1435863027 +225532,318,intellectual,1435863217 +225532,356,drama,1435863253 +225532,1258,mindfuck,1435864011 +225532,1625,mindfuck,1435862796 +225532,1682,drama,1435863496 +225532,2959,mindfuck,1435862830 +225532,4226,Christopher Nolan,1435864121 +225532,4226,mindfuck,1435863448 +225532,4310,drama,1435863459 +225532,5066,love,1435865305 +225532,5690,tearjerker,1435864562 +225532,5989,intellectual,1435863195 +225532,8950,mindfuck,1435863320 +225532,48780,Christopher Nolan,1435864109 +225532,48780,mindfuck,1435863551 +225532,56145,mindfuck,1435863418 +225532,60992,tearjerker,1435863120 +225532,63082,intellectual,1435863189 +225532,64034,tearjerker,1435863877 +225532,65230,tearjerker,1435863037 +225532,69406,romantic comedy,1435863072 +225532,69757,love,1435863237 +225532,73290,tearjerker,1435862901 +225532,78499,tearjerker,1435863285 +225532,79132,Christopher Nolan,1435864130 +225532,79132,mindfuck,1435862884 +225532,92509,love,1435863227 +225532,92509,Rachel McAdams,1435862293 +225532,96821,drama,1435864231 +225532,97938,drama,1435863434 +225532,101415,love,1435865117 +225532,104374,love,1435863061 +225532,104374,Rachel McAdams,1435862383 +225532,104863,love,1435863386 +225532,109487,Christopher Nolan,1435864070 +225532,112556,mindfuck,1435863426 +225532,114935,mindfuck,1435863377 +225532,115667,love,1435864677 +225549,356,modern classic,1424572112 +225549,356,quotable,1424572112 +225549,356,sentimental,1424572112 +225561,377,Sandra Bullock,1161872388 +225561,1262,World War II,1161873276 +225561,5060,Alan Alda,1161871200 +225565,260,sci-fi,1434298209 +225565,260,space opera,1434298194 +225594,260,classic space movie,1431729868 +225594,260,fan movie,1431729827 +225594,260,sci-fi,1431729812 +225594,260,spaceships,1431729884 +225594,356,lovely naiveness,1431730905 +225594,356,us history,1431730905 +225594,356,vietnam war,1431730905 +225599,1206,violence,1426652748 +225599,6016,dark,1426653214 +225599,60069,cute,1426653347 +225656,457,Funniest Movies,1169516850 +225656,2858,special,1159581885 +225668,260,Oscar (Best Effects - Visual Effects),1433509302 +225676,246,documentary,1217886488 +225676,296,classic,1217886431 +225676,306,John,1217886440 +225676,750,classic,1217886384 +225676,902,classic,1217886332 +225676,909,John,1217886364 +225676,923,classic,1217886368 +225676,1193,classic,1217886423 +225676,1204,John,1217886403 +225676,1206,classic,1217886378 +225676,1230,Woody Allen,1217886360 +225676,1237,John,1217886435 +225676,1247,classic,1217886390 +225676,2686,John,1217886321 +225676,3182,John,1219418547 +225676,5690,Miyazaki,1217886397 +225676,6283,World War II,1217907392 +225676,6509,John,1217886342 +225676,6643,John,1219614209 +225676,7327,John,1217886426 +225676,7749,John,1217886453 +225676,8684,John,1217886416 +225676,45950,Doc,1217886317 +225676,64575,12.28.08,1230518800 +225690,457,action,1430602157 +225690,457,chase,1430602152 +225690,457,disguise,1430602434 +225690,457,manhunt,1430602421 +225690,457,murder,1430602168 +225690,457,prison escape,1430602161 +225690,457,suspense,1430602155 +225690,648,espionage,1429920708 +225690,648,spies,1429920724 +225690,648,Tom Cruise,1429920728 +225690,832,action,1430515438 +225690,832,Car chase,1430515417 +225690,832,It was melodramatic and kind of dumb,1430515410 +225690,832,kidnapping,1430515423 +225690,832,Mel Gibson,1430515433 +225690,832,revenge,1430515419 +225690,1199,weird,1429921068 +225690,1459,burglary,1430602317 +225690,1459,Clint Eastwood,1430602314 +225690,1459,conspiracy,1430602319 +225690,1459,corruption,1430602320 +225690,1459,political corruption,1430602322 +225690,1459,secret service,1430602325 +225690,1459,US President,1430602686 +225690,1459,White House,1430602329 +225690,1527,futuristic,1429921048 +225690,1726,post-apocalyptic,1429920838 +225690,1833,conspiracy,1429921372 +225690,1833,corruption,1429921357 +225690,1917,apocalypse,1429920854 +225690,1917,bad science,1429920875 +225690,1917,disaster,1429920862 +225690,1917,sci-fi,1429920865 +225690,1917,space program,1429920859 +225690,2353,conspiracy theory,1430171276 +225690,2353,espionage,1430171279 +225690,2353,hackers,1430171285 +225690,2353,surveillance,1430171281 +225690,2600,Sci-Fi,1433546027 +225690,2600,strange,1433546031 +225690,2600,surreal,1433546014 +225690,2600,virtual reality,1433546024 +225690,2762,touching,1429984982 +225690,2762,twist ending,1429984990 +225690,4848,Mindfuck,1429921713 +225690,4848,twist ending,1429921720 +225690,5903,dystopia,1429921409 +225690,5903,revolution,1429921412 +225690,6378,car chase,1451747624 +225690,6378,cars,1451747622 +225690,6378,Crime,1451747619 +225690,6378,heist,1451747609 +225690,6378,mini coopers,1451747614 +225690,6378,twists & turns,1451747626 +225690,7022,survival,1429988123 +225690,7022,Takeshi Kitano,1429988128 +225690,7254,alternate reality,1429920933 +225690,7254,good science,1429920955 +225690,7254,great script,1430522451 +225690,7254,memory,1430522433 +225690,7254,Mystery,1430522435 +225690,7254,psychology,1429920928 +225690,7254,sci-fi,1429920935 +225690,7254,time travel,1429920925 +225690,7254,twists & turns,1430522429 +225690,8665,action,1430524570 +225690,8665,amnesia,1430524566 +225690,8665,book adaptation,1430524590 +225690,8665,car chase,1430524564 +225690,8665,cia,1430524575 +225690,8665,conspiracy,1430524568 +225690,8665,espionage,1430524559 +225690,8665,fast paced,1430524557 +225690,8665,realistic action,1435276375 +225690,8665,Robert Ludlum,1430524578 +225690,8665,spy,1430524561 +225690,8798,assassin,1430517057 +225690,8798,atmospheric,1430517059 +225690,8798,character driven,1430517066 +225690,8798,dark,1430517060 +225690,8798,great performances,1430517062 +225690,8798,michael mann,1430517069 +225690,8798,tom cruise,1430517055 +225690,26398,astronauts,1430519793 +225690,26398,conspiracy,1429920795 +225690,26398,space travel,1429920807 +225690,27674,black comedy,1430516196 +225690,27674,complicated plot,1430516188 +225690,27674,crime,1430516204 +225690,27674,dark comedy,1430516185 +225690,27674,multiple storylines,1430516182 +225690,27773,brutal,1429987824 +225690,33679,Angelina Jolie,1439143585 +225690,36517,conspiracy,1429921131 +225690,36517,corruption,1429921134 +225690,36517,tense,1429921140 +225690,41285,clever,1434413128 +225690,41285,love affair,1434413123 +225690,41285,murder,1430363201 +225690,41285,murder mystery,1430363194 +225690,41285,non-hollywood ending,1430363188 +225690,41285,romance,1430363202 +225690,41285,Scarlett Johansson,1430363180 +225690,41285,slow,1434413118 +225690,41285,sports,1430363204 +225690,41285,tennis,1430363184 +225690,41285,twist,1434413121 +225690,41285,twist ending,1430363208 +225690,44974,controversial,1436820234 +225690,44974,disturbing,1436820230 +225690,44974,intense,1436820236 +225690,44974,paedophilia,1436820253 +225690,44974,revenge,1436820244 +225690,44974,sexual abuse,1436820241 +225690,44974,suspenseful,1436820250 +225690,44974,torture,1436820243 +225690,49272,007,1429921102 +225690,49272,espionage,1429921095 +225690,49272,James Bond,1435275898 +225690,49272,spy,1429921098 +225690,54286,action,1435275831 +225690,54286,assassin,1435275836 +225690,54286,based on a book,1435275843 +225690,54286,cia,1435275829 +225690,54286,conspiracy,1435275846 +225690,54286,espionage,1435275822 +225690,54286,spies,1435275825 +225690,54286,spy,1435275839 +225690,54286,spy thriller,1435275848 +225690,55995,Angelina Jolie,1429921026 +225690,59369,franchise,1435276398 +225690,59369,realistic action,1435276392 +225690,63113,007 (series),1435276269 +225690,63113,espionage,1435276272 +225690,63113,James Bond,1435276265 +225690,63113,realistic action,1435276259 +225690,63113,secret service,1435276267 +225690,64993,melancholic,1450562374 +225690,64993,visually appealing,1450562388 +225690,64993,visually stunning,1450562382 +225690,65142,murder,1429920978 +225690,65142,rashamon,1429920987 +225690,71838,antihero,1430515603 +225690,71838,ending kinda ruined it,1430515745 +225690,71838,explosions,1430515628 +225690,71838,lame twist,1430174199 +225690,71838,predictable ending,1430174206 +225690,71838,Questioning Morality,1430515610 +225690,71838,revenge,1429986554 +225690,71838,technology,1430515635 +225690,71838,vigilante,1429986561 +225690,71838,violent,1430515602 +225690,74156,activists,1430515512 +225690,74156,boston,1430515532 +225690,74156,conspiracy,1430515464 +225690,74156,corporate cover-up,1430515483 +225690,74156,cover up,1430515462 +225690,74156,defense contractor,1430515540 +225690,74156,father-daughter relationship,1430515494 +225690,74156,Loss of child,1430515467 +225690,74156,Mel Gibson,1430515491 +225690,74156,mit,1430515527 +225690,74156,nuclear weapons,1430515480 +225690,74156,predictable,1430515476 +225690,74156,radiation,1430515497 +225690,74156,Ray Winstone,1430515487 +225690,74156,secrets,1430515499 +225690,74156,thallium,1430515547 +225690,74545,black humour,1430171655 +225690,74545,British,1430171649 +225690,74545,espionage,1430171646 +225690,74545,Ewan McGregor,1430171644 +225690,74545,mystery,1430517434 +225690,74545,slow,1430517436 +225690,74545,suspense,1430171653 +225690,79293,Angelina Jolie,1439143598 +225690,81788,good ending,1429921202 +225690,81788,jailbreak,1429921204 +225690,82202,Angelina Jolie,1439143401 +225690,82202,lazy writing,1439143413 +225690,82202,predictable,1439143417 +225690,84152,concept,1429921325 +225690,84152,sci-fi,1429921307 +225690,89745,Scarlett Johansson,1430170789 +225690,89745,superhero,1430170794 +225690,96079,007 (series),1435276079 +225690,96079,action,1435276099 +225690,96079,China,1435276090 +225690,96079,cinematography,1435276097 +225690,96079,James Bond,1435276069 +225690,96079,spies,1435276074 +225690,96079,trains,1435276086 +225690,101962,japanese,1450562337 +225690,101962,nature,1450562316 +225690,101962,raising children,1450562317 +225690,101962,single mother,1450562319 +225690,101962,werewolves,1450562320 +225690,109374,amazing storytelling,1437180185 +225690,109374,cast,1437180183 +225690,109374,cinematography,1437180164 +225690,109374,colourful sets,1437180200 +225690,109374,eastern europe,1437180178 +225690,109374,europe,1437180201 +225690,109374,great dialogue,1437180170 +225690,109374,hotel,1437180174 +225690,109374,murder,1437180189 +225690,109374,quirky,1437180166 +225690,109374,visually appealing,1437180162 +225690,109374,war,1437180193 +225690,109374,whimsical,1437180172 +225690,109487,Christopher Nolan,1429920883 +225690,109487,good science,1429920886 +225690,109487,Michael Caine,1429920891 +225690,109487,sounds,1429920908 +225690,109487,time-travel,1429920912 +225690,109487,wormhole,1429920915 +225690,111759,Alien Invasion,1430170834 +225690,111759,time loop,1430170821 +225690,111759,time travel,1430170830 +225690,111781,Action,1446408981 +225690,111781,car chase,1446408959 +225690,111781,espionage,1446408961 +225690,111781,Tom Cruise,1446408978 +225690,112807,aliens,1440863861 +225690,112807,nude,1440863814 +225690,112807,robot,1440863853 +225690,112807,visually stunning,1440863844 +225690,117438,anime,1448115263 +225690,117438,beautiful,1448115265 +225690,117438,Studio Ghibli,1448115260 +225690,119145,action,1446744256 +225690,119145,action scenes,1446744246 +225690,119145,british,1446744227 +225690,119145,childish,1446744264 +225690,119145,comic violence,1446744233 +225690,119145,exploding heads,1446744236 +225690,119145,funny,1446744244 +225690,119145,gentlemanly,1446744260 +225690,119145,humour,1446744238 +225690,119145,Parody,1446744254 +225690,119145,ridiculous,1446744240 +225690,119145,saving the world,1446744269 +225690,119145,silly,1446744267 +225690,119145,spy,1446744248 +225690,119145,spy thriller,1446744258 +225690,119145,violent,1446744224 +225690,120799,action,1450562149 +225690,120799,cyborgs,1450562147 +225690,120799,time-travel,1450562153 +225690,121314,action,1435276136 +225690,121314,berlin,1435276146 +225690,121314,korea,1435276150 +225690,121314,realistic action,1435276246 +225690,121314,spy,1435276142 +225690,122882,dystopian,1447451585 +225690,122882,visually appealing,1447451584 +225690,122882,warlord,1447451611 +225690,122882,wasteland,1447451609 +225690,122886,action,1451070920 +225690,122886,Exploited,1451070914 +225690,122886,Fan service,1451070925 +225690,122886,feminism,1451070911 +225690,122886,franchise,1451070931 +225690,122886,Jedi Knight,1451070927 +225690,122886,Plot Recycling,1451070901 +225690,122886,space,1451070919 +225690,122886,Star Wars,1451070898 +225690,132604,comedy,1429919587 +225690,132604,small room,1429919599 +225691,4395,Criterion,1441904106 +225691,4395,goofy,1441904120 +225691,4395,silly,1441904129 +225691,4395,witty,1441904131 +225691,8670,stylized,1440733988 +225715,260,love story,1439589356 +225715,260,space adventure,1439589308 +225718,260,#classic,1442337354 +225718,260,#fantasy,1442337359 +225720,114935,mindfuck,1417464114 +225720,114935,time travel,1417464142 +225749,72998,horrible,1269846338 +225753,94466,drama,1429410132 +225753,94466,thought-provoking,1429410132 +225753,94466,unnerving,1429410132 +225759,1704,psychology,1350470703 +225759,1727,horses,1352371643 +225759,1727,Robert Redford,1352371647 +225759,1884,Johnny Depp,1397854159 +225759,1956,bad mothers,1350449868 +225759,1956,character study,1350449808 +225759,1956,depressing,1397854190 +225759,1956,Oscar (Best Picture),1350441613 +225759,1956,painful to watch,1397854194 +225759,1956,personal growth,1350449850 +225759,1956,therapist,1350449832 +225759,4017,biopic,1350460006 +225759,5418,conspiracy,1350470830 +225759,5418,espionage,1350470836 +225759,6565,Heart and soul,1352099329 +225759,7143,epic,1349834708 +225759,8665,conspiracy,1350470824 +225759,8665,espionage,1350470820 +225759,33660,Biography,1350291806 +225759,33660,true story,1350291813 +225759,40583,based on a book,1350470748 +225759,40583,espionage,1350470743 +225759,40583,multiple storylines,1350470637 +225759,49793,courage,1353395289 +225759,49793,healing,1353395328 +225759,49793,Heart and soul,1353395298 +225759,54286,conspiracy,1350470843 +225759,54286,twist ending,1350470850 +225759,55363,based on a true story,1350191949 +225759,73017,Atmospheric,1350536362 +225759,73017,martial arts,1397854210 +225759,74795,Espionage,1350470727 +225759,74795,social commentary,1350470732 +225759,79224,Eastern philosophy,1350546020 +225759,79224,honor,1350545839 +225759,79224,kung fu,1350545880 +225759,79224,learning from student,1350545856 +225759,79224,respect,1350545845 +225759,80839,horseracing,1353228370 +225759,80839,inspiring,1353228363 +225759,80839,overcoming odds,1353228351 +225759,91630,cool gadgets,1349735914 +225776,364,character driven,1360648082 +225776,364,classic,1360648054 +225776,364,coming of age,1360648063 +225776,364,Disney,1360648031 +225776,364,inspirational,1360648040 +225776,364,visually stunning,1360648048 +225776,783,Disney Renaissance,1360648140 +225776,783,score,1360648123 +225776,1285,chaotic,1361250330 +225776,2115,archaeology,1361248829 +225776,2115,Kate Capshaw,1361248812 +225776,2115,mythology,1361248842 +225776,2617,archaeology,1361248913 +225776,2617,campy,1361248956 +225776,2617,Egypt,1361248942 +225776,2617,mythology,1361248905 +225776,2617,Rachel Weisz,1361248920 +225776,3949,cinematography,1360560197 +225776,3949,depressing without being uplifting,1360560158 +225776,3949,social commentary,1360560168 +225776,3949,visually stunning,1360560192 +225776,4679,80's classic,1360559043 +225776,4679,family dynamics,1360559052 +225776,4865,cinematography,1360559424 +225776,4865,historical,1360559408 +225776,4865,insanity,1361249680 +225776,4865,Johnny Depp,1360559390 +225776,4865,thriller,1360559417 +225776,4878,cult classic,1360560419 +225776,4878,thought-provoking,1360560399 +225776,4878,time travel,1360560409 +225776,5992,slow pacing,1360558965 +225776,6936,Will Ferrell,1361289209 +225776,6936,Zooey Deschanel,1361289242 +225776,7147,cinematography,1360560101 +225776,7147,Ewan McGregor,1360560110 +225776,7147,quirky,1360560126 +225776,7147,surreal,1360560091 +225776,7147,Tim Burton,1360560120 +225776,41571,cinematography,1360560802 +225776,41571,women,1360560775 +225776,41571,women's rights,1360560793 +225776,41571,worse than the book,1360560771 +225776,44788,censorship,1361250470 +225776,44788,Constant sex scenes,1361250508 +225776,44788,corruption,1361250479 +225776,44788,documentary,1361250487 +225776,48394,stylized,1360560224 +225776,55052,emotional,1360560856 +225776,55052,James McAvoy,1360560840 +225776,55052,Keira Knightley,1360560847 +225776,55052,thoughtful,1360560865 +225776,56367,Ellen Page,1360559837 +225776,56367,quirky,1360559811 +225776,56367,witty,1360559824 +225776,59220,culture shock,1360560461 +225776,59220,india,1360560504 +225776,59220,quirky,1360560480 +225776,59220,quirky romantic,1360560474 +225776,59220,racial stereotype,1360560455 +225776,59220,subtle humor,1360560494 +225776,60069,Pixar animation,1360560362 +225776,60069,quirky,1360560375 +225776,64622,Kate Winslet,1360646308 +225776,64622,sexual exploitation,1360646295 +225776,68157,black comedy,1360560565 +225776,68157,cinematography,1360560573 +225776,68157,revisionist history,1360560596 +225776,68157,satire,1360560587 +225776,68157,violence,1360560613 +225776,68159,Helen Mirren,1360646145 +225776,68159,journalism,1360646153 +225776,68159,political corruption,1360646181 +225776,68159,Rachel McAdams,1360646130 +225776,68159,red herring,1360646209 +225776,68159,Russell Crowe,1360646139 +225776,68159,serial killer,1360646201 +225776,77455,art,1360559708 +225776,77455,funny,1360559732 +225776,77455,quirky humor,1360559745 +225776,77455,renegade art,1360559720 +225776,79091,minions,1361250205 +225776,81845,Colin Firth,1361249430 +225776,81845,complex characters,1361249463 +225776,81845,Geoffrey Rush,1361249441 +225776,81845,Helena Bonham Carter,1361249422 +225776,81845,historical,1361249475 +225776,81847,Disney,1360647997 +225776,84240,character driven,1360558764 +225776,84240,environmental,1360558818 +225776,84240,imperialism,1360558775 +225776,84240,Spanish,1360558786 +225776,86548,animal abuse,1360560704 +225776,86548,Christoph Waltz,1360560748 +225776,86548,historical,1360560728 +225776,86548,worse than book,1360560717 +225776,86911,formulaic,1360559963 +225776,86911,predictable,1360559979 +225776,88810,Bryce Dallas Howard,1361249329 +225776,88810,Jessica Chastain,1361249342 +225776,88810,Octavia Spencer,1361249321 +225776,88810,social commentary,1361249278 +225776,88810,southern US,1361249360 +225776,88810,Viola Davis,1361249297 +225776,94478,ridiculous sex scene,1360645984 +225776,96079,action,1361249899 +225776,96079,cinematography,1361249861 +225776,96079,intro credits,1361249873 +225776,96079,Javier Bardem,1361249885 +225776,96079,Judi Dench,1361249850 +225776,96079,psychological,1361249928 +225776,96411,documentary,1360558894 +225776,96411,parody,1360558917 +225776,96411,south park,1360558903 +225776,98154,American Civil War,1361249555 +225776,98154,cinematography,1361249526 +225776,98154,Daniel Day-Lewis,1361249512 +225776,98154,great script,1361249537 +225776,99149,Aaron Tveit,1361249147 +225776,99149,Anne Hathaway,1361249085 +225776,99149,character driven,1361249195 +225776,99149,Eddie Redmayne,1361249106 +225776,99149,Helena Bonham Carter,1361249208 +225776,99149,Hugh Jackman,1361249076 +225776,99149,musical,1361249062 +225776,99149,revolution,1361249169 +225776,99149,Russell Crowe's singing,1361249125 +225776,99149,Sacha Baron Cohen,1361249222 +225776,99149,Samantha Barks,1361249096 +225776,99149,Victor Hugo,1361249049 +225873,136020,Daniel Craig,1447832185 +225873,136020,james bond,1447832189 +225873,136020,Léa Seydoux,1447832212 +225899,260,EPIC,1437406798 +225899,260,Science Fiction,1437406847 +225899,260,visual effects,1437406863 +225899,356,drama,1437407807 +225899,356,journey,1437407807 +225899,356,life,1437407807 +225912,53993,movie to see,1191017824 +225922,1704,genius,1199086697 +225922,53123,musical,1199086863 +225938,296,of,1427319145 +225938,296,piece,1427319145 +225938,296,shit,1427319145 +225969,1214,aliens,1430222575 +225969,70286,aliens,1430222536 +225969,94864,scifi,1430222597 +225969,104841,space,1430222514 +225976,1086,classic,1431279785 +225976,1086,PERFECT CRIME,1431279778 +225976,1086,suspense,1431279770 +225976,1213,amoral,1431279677 +225976,1213,intense,1431279655 +225976,1213,violent,1431279635 +225976,106100,1980s,1431279597 +225976,106100,poignant,1431279597 +225976,106100,realism,1431279597 +225984,296,crime,1432792226 +225984,296,drugs,1432792226 +225984,296,violence,1432792226 +225984,318,justice,1432426446 +225984,593,cannibalism,1433628580 +225984,593,psycho triller,1433628580 +225984,593,suspense,1433628580 +225984,904,classic,1432426462 +226005,1644,horror,1420636440 +226005,1644,Sarah Michelle Gellar,1420636450 +226005,121097,Adventure,1420625369 +226005,121097,Ashley Olsen,1420625334 +226005,121097,Christmas,1420625353 +226005,121097,cute,1420625358 +226005,121097,Family,1420625377 +226005,121097,Mary-Kate Olsen,1420625345 +226037,5796,james bond,1178804578 +226037,49272,james bond,1178804558 +226040,1206,violence,1356933419 +226040,5903,unrealistic action,1356930852 +226040,5903,visually stunning,1356930864 +226040,44191,imdb top 250,1356930911 +226040,44191,thought-provoking,1356930905 +226040,54503,Emma Stone,1357023280 +226050,10,Bond,1153392368 +226074,45730,fairy tale,1169816778 +226118,50,upside down,1449434477 +226118,2959,The first rule of MovieLens is we don't talk about Fight Club,1449434509 +226123,48082,Michel Gondry,1441485425 +226123,48082,surreal,1441485429 +226123,48082,unusual,1441485434 +226131,260,action,1433186224 +226131,260,Science Fiction,1433186201 +226131,260,scifi cult,1433186212 +226143,260,classic sci-fi,1443295844 +226143,260,Science Fiction,1443295855 +226166,260,awesome,1440200736 +226188,63992,so bad it's good,1230482915 +226190,260,classic sci-fi,1435002489 +226190,260,stylized,1435002467 +226199,356,history,1431445334 +226199,356,tom hanks,1431445334 +226199,356,touching,1431445334 +226199,5903,predictable,1318638326 +226199,47634,cop,1431979504 +226199,47634,corrupted cop,1431979515 +226199,47634,Paris,1431979510 +226199,47634,vengeance,1431979520 +226199,72998,predictable,1318637707 +226199,75392,cop,1431979406 +226199,84407,prison,1427298215 +226199,84407,violence,1427298230 +226201,81562,not at all like the book,1295588946 +226225,1704,mathematics,1450938277 +226225,4995,game theory,1450938230 +226225,4995,inspirational,1450938211 +226225,4995,mathematics,1450938213 +226225,4995,nobel prize,1450938237 +226225,4995,Russell Crowe,1450938225 +226225,104841,science,1450938134 +226225,104841,setting:space,1450938139 +226225,104841,visually appealing,1450938119 +226265,318,atmospheric,1348600277 +226265,318,drama,1348600267 +226265,318,friendship,1348600273 +226265,318,good ending,1348600300 +226265,318,Morgan Freeman,1348600441 +226265,318,narrated,1348600503 +226265,318,prison,1348600269 +226265,318,prison escape,1348600493 +226265,318,psychology,1348600287 +226265,318,reflective,1348600310 +226265,318,revenge,1348600322 +226265,318,suprising,1348600419 +226265,318,thought-provoking,1348600306 +226265,318,twist ending,1348600473 +226265,1136,cult film,1348601634 +226265,1136,hilarious,1348601629 +226265,1136,knights of ni,1348601710 +226265,1136,medieval,1348601612 +226265,1136,Monty Python,1348601620 +226265,1136,parody,1348601627 +226265,1136,rabbits,1348601670 +226265,1193,drama,1348601228 +226265,1193,emotional,1348601228 +226265,1193,Jack Nicholson,1348601183 +226265,1193,mental illness,1348601190 +226265,1193,psychological,1348601219 +226265,1193,psychology,1348601212 +226265,1193,sad ending,1348601241 +226265,1682,alternate reality,1348599540 +226265,1682,dark comedy,1348599538 +226265,1682,Jim Carrey,1348599544 +226265,1682,orginal,1348599691 +226265,1682,original idea,1348599685 +226265,1682,philosophy,1348599608 +226265,1682,reflective,1348599734 +226265,1682,smart,1348599637 +226265,1961,autism,1348600534 +226265,1961,drama,1348600586 +226265,1961,Dustin Hoffman,1348600540 +226265,1961,psychology,1348600550 +226265,1961,true story,1348600552 +226265,2571,Action,1348601891 +226265,2571,artificial intelligence,1348601881 +226265,2571,atmospheric,1348601883 +226265,2571,philosophical,1348601885 +226265,2571,surreal,1348601872 +226265,2571,thought-provoking,1348601873 +226265,2571,virtual reality,1348601870 +226265,2762,Atmospheric,1348599822 +226265,2762,ghosts,1348599794 +226265,2762,mindfuck,1348599804 +226265,2762,psychological,1348599800 +226265,2762,psychology,1348599789 +226265,2762,thriller,1348599828 +226265,4306,comedy,1348600100 +226265,4306,Deep,1348600187 +226265,4306,not only for kids,1348600145 +226265,4306,parody,1348600112 +226265,4306,psychology,1348600164 +226265,4306,romance,1348600093 +226265,4720,afterlife,1348600899 +226265,4720,atmospheric,1348600878 +226265,4720,ghosts,1348600885 +226265,4720,slow,1348600990 +226265,4720,twist ending,1348600891 +226265,4989,drugs,1348602596 +226265,4989,idiotic,1348602509 +226265,4989,marijuana,1348602475 +226265,4989,nonsensical,1348602529 +226265,6874,action,1348603105 +226265,6874,idiotic,1348603076 +226265,6874,kung fu,1348603109 +226265,6874,meaningless,1348603187 +226265,6874,revenge,1348603099 +226265,6874,stylized,1348603094 +226265,36401,Adventure,1348602792 +226265,36401,boring,1348602660 +226265,36401,children,1348602733 +226265,36401,cute,1348602784 +226265,36401,Dull,1348602682 +226265,36401,Dull. Incoherent. Childish.,1348602688 +226265,36401,fairy tales,1348602755 +226265,36401,Fantasy,1348602762 +226265,36401,incoherent,1348602719 +226265,36401,low budget,1348602926 +226265,48394,adventure,1348600798 +226265,48394,psychology,1348600741 +226265,48394,sci-fi,1348600790 +226265,48394,surreal,1348600738 +226265,48394,twist ending,1348600746 +226265,48780,atmospheric,1348600643 +226265,48780,based on a book,1348600709 +226265,48780,complicated,1348600639 +226265,48780,magic,1348600625 +226265,48780,nonlinear,1348600657 +226265,48780,psychological,1348600693 +226265,48780,romance,1348600698 +226265,48780,sci-fi,1348600635 +226265,48780,thriller,1348600666 +226265,48780,twist ending,1348600628 +226265,54259,atmospheric,1348599020 +226265,54259,based on a book,1348598927 +226265,54259,fairy tale romance,1348598967 +226265,54259,fantasy,1348599118 +226265,54259,magic,1348598971 +226265,56171,boring,1348599255 +226265,56171,children,1348599198 +226265,56339,fairy tale,1348601059 +226265,56339,HAUNTED BY THE PAST,1348601100 +226265,56339,horror,1348601034 +226265,56339,imaginary friend,1348601041 +226265,56339,paranormal,1348601049 +226265,56339,suicide,1348601134 +226265,56339,twist ending,1348601043 +226265,61240,adolescence,1348602129 +226265,61240,boring,1348602002 +226265,61240,love story,1348602141 +226265,61240,naive,1348602062 +226265,61240,school,1348602145 +226265,61240,serial killer,1348602154 +226265,61240,slow,1348602002 +226265,61240,swedish,1348602170 +226265,61240,unintentional comedy,1348602242 +226265,61240,vampires,1348602165 +226265,68237,Kevin Spacey,1348601516 +226265,68237,melancholy,1348601560 +226265,68237,psychological,1348601332 +226265,68237,psychology,1348601318 +226265,68237,sad,1348601551 +226265,68237,sad ending,1348601571 +226265,68237,space,1348601346 +226265,74458,action,1348599907 +226265,74458,atmospheric,1348599905 +226265,74458,mystery,1419532601 +226265,74458,reality or imagination?,1348599945 +226265,74458,reflective,1348599902 +226265,74458,surreal,1348599923 +226265,74458,thought provoking,1348600048 +226265,74458,thought-provoking,1348600030 +226265,74458,twisted ending,1419532569 +226265,76093,action,1348599410 +226265,76093,fantasy,1348599323 +226265,76093,morality,1348599376 +226265,79702,children,1348598398 +226265,79702,idiot,1348598322 +226265,79702,teenagers,1348598322 +226283,4973,FANTASY LIFE,1191017838 +226292,111759,action,1428383145 +226292,111759,sci-fi,1428383145 +226292,111759,space battle,1428383145 +226299,260,birth of great scifi ideas,1440516027 +226299,260,great story,1440516015 +226299,1265,Andie MacDowell,1443018552 +226299,96079,Best Bond Movie,1443018480 +226302,1149,Can't stand Godard!,1137454890 +226302,1429,When you've seen one Jackie Chan movie,1137454558 +226302,1429,you've seen them all.,1137454558 +226302,5283,Ryan Reynolds just might be the unfunniest actor in the world.,1137711412 +226302,5902,Most brilliant screenplay ever!! Might as well add...best movie ever!,1137711370 +226302,6708,and subtely touching film with a bittersweet ending,1137711504 +226302,6708,brilliant heists...a funny,1137711504 +226302,6708,Characters with great depth,1137711504 +226302,7361,The best love story ever put on film.,1137711392 +226302,34332,A whimsical,1140576657 +226302,34332,and at times intense family,1140576657 +226302,34332,funny,1140576657 +226302,36537,A coming of age story with good characters,1137894979 +226302,36537,and some good philosphy on life,1137894979 +226326,260,influential,1439787042 +226326,260,Innovative,1439787046 +226331,27611,post-apocalyptic,1446155987 +226331,27611,sci-fi,1446155978 +226331,27611,space,1446155981 +226331,56921,sci-fi,1446156037 +226331,56921,space,1446156034 +226331,79132,sci-fi,1446155548 +226340,180,Kevin Smith,1237741741 +226340,230,Stephen King,1237740802 +226340,742,stephen king,1237715162 +226340,750,Stanley Kubrick,1237713430 +226340,1089,Quentin Tarantino,1237713486 +226340,1095,David Mamet,1237714899 +226340,1206,Adaptation,1237713398 +226340,1206,Stanley Kubrick,1237713393 +226340,1214,horror,1237713690 +226340,1214,monster,1237713690 +226340,1214,sci-fi,1237713690 +226340,1219,Hitchcock,1237713623 +226340,1222,Stanley Kubrick,1237713556 +226340,1222,Vietnam War,1237713558 +226340,1245,Coen Brothers,1237713756 +226340,1252,Jack Nicholson,1237713525 +226340,1258,Adaptation,1237713509 +226340,1258,Jack Nicholson,1237713509 +226340,1258,Stanley Kubrick,1237713502 +226340,1258,Stephen King,1237713494 +226340,1261,Bruce Campbell,1237713732 +226340,1261,Sam Raimi,1237713732 +226340,1261,zombies,1237713715 +226340,1265,Bill Murray,1237717090 +226340,1265, ,1237717090 +226340,1304,Creative nonfiction,1237712918 +226340,1304,Paul Newman,1237712928 +226340,1304,Robert Redford,1237712934 +226340,1304,Western,1237712923 +226340,1394,Coen Brothers,1237714472 +226340,1663,Bill Murray,1237714152 +226340,2118,Adaptation,1237714847 +226340,2118,Stephen King,1237714843 +226340,2176,Alfred Hitchcock,1237715786 +226340,2320,Stephen King,1237715098 +226340,2348,biographical,1237741545 +226340,2348,punk,1237741542 +226340,2395,Bill Murray,1237713928 +226340,2395,Jason Schwartzman,1237713928 +226340,2395,Wes Anderson,1237713928 +226340,2716,Bill Murray,1237714121 +226340,2716,Dan Akroyd,1237714121 +226340,2717,Bill Murray,1237714177 +226340,2717,Dan Akroyd,1237714177 +226340,2787,Stephen King,1237715070 +226340,2959,Adaptation,1237713546 +226340,2959,Brad Pitt,1237713546 +226340,2959,Ed Norton,1237713546 +226340,2959,Palahnuik,1237713546 +226340,3000,Studio Ghibli,1237741685 +226340,3034,Disney Classic,1237713139 +226340,3087,Bill Murray,1237714184 +226340,3147,Stephen King,1237716406 +226340,3556,Adaptation,1237714374 +226340,3556,Euginides,1237714374 +226340,3556,Josh Hartnett,1237714382 +226340,3556,Kirsten Dunst,1237714379 +226340,3556,Sofia Coppola,1237714374 +226340,3809,Bill Murray,1237714193 +226340,3809,Richard Dreyfuss,1237714193 +226340,3949,Adaptation,1237713481 +226340,4848,Lynch,1237713613 +226340,4848,Naomi Watts,1237713613 +226340,4902,Del Toro,1237713412 +226340,4979,Ben Stiller,1237713113 +226340,4979,Bill Murray,1237713126 +226340,4979,Luke Wilson,1237713117 +226340,4979,Owen Wilson,1237713122 +226340,4979,Wes Anderson,1237713107 +226340,5618,Studio Ghibli,1237713374 +226340,5666,Adaptation,1237741040 +226340,5666,Bret Easton Ellis,1237741040 +226340,5690,Studio Ghibli,1237713348 +226340,5971,Studio Ghibli,1237714590 +226340,6534,Adaptation,1237712998 +226340,6534,Comic Movie,1237713003 +226340,6534,Jennifer Connely,1237713007 +226340,6711,Bill Murray,1237714101 +226340,6711,Scarlett Johansson,1237714101 +226340,6711,Sofia Coppola,1237714101 +226340,7001,remake,1237713747 +226340,7300,exploitation,1237713672 +226340,7387,Romero,1237713206 +226340,7387,zombies,1237713191 +226340,8874,Edgar Wright,1237713660 +226340,8874,Simon Pegg,1237713660 +226340,8874,zombies,1237713630 +226340,33834,Romero,1237714242 +226340,33834,zombies,1237714242 +226340,33880,Indie,1237713086 +226340,33880,Miranda July,1237713079 +226340,34437,Bill Murray,1237714135 +226340,45880,Jason Shwartzman,1237714397 +226340,45880,Kirsten Dunst,1237714397 +226340,45880,Sofia Coppola,1237714397 +226340,48394,Del Toro,1237713461 +226340,52281,Eli Roth,1237713597 +226340,52281,exploitation,1237713597 +226340,52281,Quentin Tarantino,1237713565 +226340,52281,Robert Rodriguez,1237713597 +226340,52281,zombies,1237713569 +226340,55820,Adaptation,1237713274 +226340,55820,coen brothers,1237713262 +226340,55820,Cormac McCarthy,1237713274 +226340,56145,stephen king,1237715248 +226340,56782,Adaptation,1237713326 +226340,56782,PT Anderson,1237713326 +226340,57274,Foreign,1237713244 +226340,57274,horror,1237713244 +226340,58301,Meta-Fiction,1237712752 +226340,58301,Naomi Watts,1237712729 +226340,58301,No Fourth Wall,1237712765 +226340,58301,remake,1237712738 +226340,58301,Tim Roth,1237712734 +226340,58301,Torture,1237712756 +226340,58559,Adaptation,1237713705 +226340,58559,Comic Movie,1237713705 +226340,60040,Adaptation,1237712969 +226340,60040,comic movie,1237712981 +226340,60040,Ed Norton,1237712986 +226340,60040,Tim Roth,1237712990 +226340,60684,Adaptation,1237712877 +226340,60684,Comic Movie,1237712880 +226340,61323,Brad Pitt,1237712826 +226340,61323,Coen Brothers,1237712831 +226340,61323,Comedy,1237712833 +226340,61323,George Clooney,1237712839 +226340,65126,Adaptation,1237712852 +226340,65126,Comedy,1237712862 +226340,65126,Palahnuik,1237712855 +226340,65126,Sam Rockwell,1237712849 +226340,65126,Sexual,1237712864 +226356,1954,boxing,1165490787 +226361,68237,artificial intelligence,1369760339 +226361,68237,Kevin Spacey,1369760331 +226361,68237,psychology,1369760316 +226361,68237,Sci-fi,1369760323 +226361,68237,twist ending,1369760291 +226380,64839,Marisa Tomei,1238855572 +226380,64839,Mickey Rourke,1238855590 +226390,260,classic,1436333766 +226390,260,top ten all-time,1436333782 +226390,103027,fresh,1436952986 +226390,103027,modern adaptation,1436952986 +226390,103027,sparse,1436952986 +226394,6502,post-apocalyptic,1308031384 +226394,6502,suspense,1308031403 +226394,6502,visually appealing,1308031392 +226394,6502,Zombie,1308031386 +226394,6502,zombies,1308031387 +226394,7360,post-apocalyptic,1308031414 +226394,27592,absurdism,1308031215 +226394,27592,Chan-wook Park,1308031217 +226394,27592,dark,1308031221 +226394,27592,Korean horror,1308031224 +226394,27592,revenge,1308031226 +226394,27592,vengeance,1308031231 +226394,27592,violent,1308031229 +226394,42632,beautiful cinematography,1308031249 +226394,42632,brutality,1308031252 +226394,42632,Chan-wook Park,1308031247 +226394,42632,disturbing,1308030978 +226394,42632,Korea,1308031256 +226394,42632,revenge,1308031240 +226394,42632,stylized,1308031244 +226394,57274,"""found footage""",1308031441 +226394,57274,Handycam,1308031439 +226394,57274,infection,1308031444 +226394,57274,panic,1308031435 +226394,57274,zombies,1308031437 +226394,61240,bittersweet,1308031520 +226394,61240,serial killer,1308031500 +226394,80928,stand-up comedy,1308031584 +226394,81591,psychological,1308031001 +226394,85414,intelligent,1308031681 +226405,115713,artificial intelligence,1423940410 +226405,115713,sci-fi,1423940410 +226405,115713,thriller,1423940410 +226413,608,crime,1452943707 +226413,31685,love,1452943921 +226413,61323,dark humor,1452943997 +226458,260,sci-fi,1437362178 +226462,231,hilarious,1273051026 +226462,231,Jim Carrey,1273051012 +226462,231,silly,1273051014 +226462,231,stupid,1273051020 +226462,231,THEATER,1273051015 +226462,1298,artistic,1273304451 +226462,1298,dark,1273304453 +226462,1298,dreamlike,1273304455 +226462,1298,music,1273304463 +226462,1298,rock and roll,1273304458 +226462,1298,surreal,1273304461 +226462,2329,disturbing,1273050867 +226462,2329,Edward Norton,1273050863 +226462,2329,politics,1273050885 +226462,2329,tense,1273050882 +226462,2329,thought-provoking,1273050871 +226462,2495,Dreamlike,1273304372 +226462,2495,Social Commentary,1273304365 +226462,2495,Surreal,1273304400 +226462,2495,Trippy,1273304426 +226462,2571,alternate reality,1273050990 +226462,2571,artificial intelligence,1273050988 +226462,2571,atmospheric,1273050987 +226462,2571,dystopia,1273050977 +226462,2571,philosophical,1273050992 +226462,2571,post apocalyptic,1273050980 +226462,2571,surreal,1273050993 +226462,2571,virtual reality,1273050979 +226462,2596,drugs,1273051231 +226462,2596,hallucination,1273051233 +226462,2596,punk,1273051239 +226462,2596,sarcasm,1273051245 +226462,2959,action,1273050918 +226462,2959,dark comedy,1273050897 +226462,2959,disturbing,1273050960 +226462,2959,Edward Norton,1273050895 +226462,2959,mental illness,1273050902 +226462,2959,philosophy,1273050917 +226462,2959,psychology,1273050915 +226462,2959,satirical,1273050949 +226462,2959,social commentary,1273050905 +226462,2959,surreal,1273050947 +226462,4878,dreamlike,1273052443 +226462,4878,psychology,1273052442 +226462,4878,quirky,1273052451 +226462,4878,satirical,1273052456 +226462,4878,social commentary,1273052460 +226462,4878,surreal,1273052444 +226462,4878,thought-provoking,1273052454 +226462,49396,comedy,1273304480 +226462,49396,laser maze room (in a comedy),1273304494 +226462,49396,rock and roll,1273304484 +226462,49396,satire,1273304499 +226462,56367,comedy,1273051046 +226462,56367,notable soundtrack,1273051056 +226462,56367,witty,1273051050 +226462,72998,futuristic,1273111596 +226462,72998,predictable,1273111612 +226510,50514,Denmark,1434177654 +226510,89759,social commentary,1434177593 +226510,96829,social rejection,1434177680 +226519,260,cult classic,1443872678 +226519,260,scifi,1443872653 +226519,597,cinderella,1452558583 +226519,597,prince charming,1452558580 +226519,597,romance,1452558573 +226519,1092,Erotic,1452558695 +226519,1092,suspense,1452558699 +226519,1092,thriller,1452558694 +226519,1271,friendship,1452558450 +226519,2424,e-mail,1452558670 +226519,2424,Romance,1452558666 +226519,4975,fairytale,1449799358 +226519,4975,psychology,1449799341 +226519,4975,surreal,1449799325 +226519,4975,virtual reality,1449799339 +226519,8254,great soundtrack,1449799236 +226519,8254,magic realism,1449799231 +226519,8254,surreal,1449799233 +226519,27788,enust,1449799543 +226519,39427,enust,1449799503 +226519,80969,beautiful,1449798719 +226519,80969,disturbing,1449798723 +226519,80969,thought-provoking,1449798691 +226519,104841,beautiful,1449799676 +226519,104841,physics,1449799700 +226519,104841,sci-fi,1449799678 +226519,104841,space,1449799680 +226519,104841,visually appealing,1449799661 +226519,104841,visually stunning,1449799669 +226529,260,Generic,1434499240 +226529,260,Space Adventure,1434499253 +226533,318,inspirational,1403436652 +226537,5,steve martin,1304427888 +226537,2471,adventure,1304381767 +226537,33679,angelina Jolie,1304381720 +226556,260,action classic,1441483190 +226556,260,ongoing saga,1441483202 +226576,80126,EVERYTHING,1287536842 +226595,115713,2015-08,1441132910 +226605,94466,Science fiction,1444195758 +226605,94466,technology,1444195760 +226605,94466,tv series,1444195751 +226624,903,Alfred Hitchcock,1451329869 +226624,903,Atmospheric,1451329871 +226624,903,identity,1451329887 +226624,903,obsession,1451329875 +226624,903,San Francisco,1451329880 +226624,903,switching places,1451329883 +226624,903,twist ending,1451329877 +226624,1018,1960's,1451329492 +226624,1018,funny,1451329490 +226624,1572,Jean-Luc Godard,1451329741 +226624,3730,character study,1451329851 +226624,3730,Francis Ford Coppola,1451329855 +226624,3730,Gene Hackman,1451329857 +226624,4720,atmospheric,1451330434 +226624,4720,clever,1451330438 +226624,4720,haunted house,1451330436 +226624,4720,twist ending,1451330431 +226624,6533,Barbara Striesand,1451329646 +226624,6533,Madeline Kahn,1451329640 +226624,6533,San Francisco,1451329662 +226624,6533,Screwball Comedy,1451329636 +226624,6669,Akira Kurosawa,1451329799 +226624,6669,cathartic,1451329796 +226624,6669,meditative,1451329806 +226624,6669,terminal illness,1451329802 +226624,6858,Roman Polanski,1451329837 +226624,7116,excellent plot twist,1451329910 +226624,7116,great acting,1451329902 +226624,7116,Henri-Georges Clouzot,1451329904 +226624,7116,Simone Signoret,1451329914 +226624,7116,suspense,1451329906 +226624,8154,Federico Fellini,1451329767 +226624,8154,Nino Rota,1451329765 +226624,93475,atmospheric,1451330417 +226624,93475,twist ending,1451330415 +226624,104457,twist,1451330666 +226624,112515,Excellent child actor,1451330212 +226624,112515,haunted house,1451330191 +226624,112515,monster,1451330181 +226624,112515,psychological,1451330173 +226624,137174,Iranian,1451330016 +226633,923,rise to power,1194037967 +226660,480,dinosaurs,1431206269 +226660,480,gmo,1431206269 +226660,480,monsanto,1431206269 +226677,306,Three Colors trilogy,1307132509 +226677,307,Three Colors trilogy,1307132516 +226684,91500,lethal weapons,1439810783 +226684,91500,science fiction,1439810670 +226684,91500,trilogy,1439810723 +226686,2959,testosterone,1185252380 +226791,1518,fdf,1187492964 +226791,1694,df,1187492961 +226791,3825,fdfd,1187492967 +226791,5992,df,1187492971 +226791,48516,fdfd,1187492969 +226803,260,Banda sonora buena,1431261579 +226803,260,buena para los frikis,1431261594 +226807,260,Star Wars,1427123400 +226823,2932,70mm,1289268422 +226823,2932,atmospheric,1289268428 +226823,2932,austere,1289268417 +226823,2932,dreamlike,1289268434 +226823,2932,Ennio Morricone,1289268445 +226823,2932,facebook rec,1289268465 +226823,2932,lyrical,1289268471 +226823,2932,meditative,1289268476 +226823,2932,National Film Registry,1289268479 +226823,2932,Oscar (Best Cinematography),1289268485 +226823,2932,photography,1289268487 +226823,2932,Richard Gere,1289268491 +226823,2932,Sam Shepard,1289268496 +226823,2932,somber,1289268499 +226823,2932,Spherical Blow-Up,1289268506 +226823,2932,Terrence Malick,1289268518 +226823,2932,understated,1289268522 +226823,3093,Altman,1289272961 +226823,3093,FIGHTING THE SYSTEM,1289272968 +226823,3093,revisionist western,1289272979 +226823,3093,understated,1289272986 +226823,3093,UNREQUITED LOVE,1289272994 +226823,3093,wry,1289272988 +226823,3200,"Best Performance: Jack Nicholson as ""Baddass"" Buddusky",1289273876 +226823,3200,erlend's DVDs,1289273882 +226823,5198,Bob Hoskins,1289276207 +226823,5198,grim,1289276189 +226823,5198,gritty,1289276192 +226823,5198,menacing,1289276195 +226823,5198,Tumey's DVDs,1289276201 +226823,5258,Breathtaking,1289272741 +226823,5258,gentle,1289272752 +226823,5258,humorous,1289272758 +226823,5258,meditative,1289272764 +226823,5258,melancholy,1289272766 +226823,5258,understated,1289272772 +226823,6159,small town,1289268619 +226833,260,action,1434092938 +226833,260,sci-fi,1434092930 +226833,2323,artsy,1434093091 +226833,2323,indie,1434093105 +226833,2323,introspective,1434093089 +226839,260,action,1441990882 +226839,260,classic,1441990901 +226839,260,sci-fi,1441990898 +226842,5363,DJ Qualls,1296488479 +226842,5363,Eddie Griffin,1296488496 +226842,5363,Zooey Deschanel,1296488478 +226842,59387,boring,1308462771 +226842,64969,Jim Carrey,1281849141 +226842,64969,Zooey Deschanel,1281849141 +226842,84954,Emily Blunt,1299903675 +226842,84954,Matt Damon,1299903659 +226842,87520,Tyrese Gibson,1309451967 +226842,99117,Leslie Mann,1356392841 +226850,6898,acting,1291198508 +226850,6898,mediocre plot,1291198499 +226850,7317,comedy,1291003673 +226850,7317,hooligans,1291003684 +226850,7317,Michelle Trachtenberg,1291003660 +226850,7317,road trip,1291003644 +226850,7317,tourists,1291003667 +226850,73323,Alexandra Eisenstein,1291004282 +226850,73323,based on a book,1291004255 +226850,73323,hackers,1291004261 +226850,73323,hacking,1291004262 +226850,73323,Hans Alfredson,1291004283 +226850,73323,Michael Nyqvist,1291004248 +226850,73323,Michalis Koutsogiannakis,1291004287 +226850,73323,Noomi Rapace,1291004290 +226850,73323,psychiatry,1291004265 +226850,73323,Punker,1291004267 +226850,73323,Rape,1291004295 +226850,73323,sequel,1291004298 +226850,73323,stoner,1291004271 +226850,73323,trial,1291004292 +226850,77307,Aggeliki Papoulia,1297552588 +226850,77307,Anna Kalaitzidou,1297552625 +226850,77307,cat killing,1297552618 +226850,77307,Christos Stergioglou,1297552610 +226850,77307,disturbing,1297552589 +226850,77307,Giorgos Lanthimos,1297552605 +226850,77307,Hristos Passalis,1297552607 +226850,77307,incest,1297552595 +226850,77307,Mary Tsoni,1297552603 +226850,77307,Michelle Valley,1297552601 +226850,77307,Rule-making,1297552631 +226850,77307,seclusion,1297552598 +226850,77307,sexuality,1297552597 +226850,80864,antonio banderas,1291004177 +226850,80864,comedy,1291004168 +226850,80864,romance,1291004194 +226850,81562,11/10,1291004211 +226850,81562,danny boyle,1291004226 +226850,81562,drama,1291004234 +226850,81562,true story,1291004208 +226852,30820,could go farther,1186374632 +226852,30820,disturbing,1186374632 +226852,30820,honest,1186374632 +226912,115713,artificial intelligence,1446857610 +226912,115713,robots,1446857619 +226979,1635,INNOCENCE LOST,1292561943 +226979,2858,black comedy,1292561890 +226979,2858,coming of age,1292561894 +226979,2858,dark comedy,1292561897 +226979,2858,midlife crisis,1292561900 +226979,2858,sexuality,1292561883 +226979,2858,social commentary,1292561885 +226979,2858,surrealism,1292561882 +226979,2858,thought-provoking,1292561878 +226979,4873,drugs,1292560778 +226979,4873,existentialism,1292560780 +226979,4873,philosophy,1292560776 +226979,4873,rotoscope,1292560789 +226979,4873,surreal,1292560782 +226979,4873,thought-provoking,1292560787 +226979,5618,alternate reality,1292560528 +226979,5618,childhood,1292560547 +226979,5618,children,1292560545 +226979,5618,fantasy,1292560542 +226979,5618,hallucinatory,1292560538 +226979,5618,Hayao Miyazaki,1292560517 +226979,5618,Oscar (Best Animated Feature),1292560526 +226979,6874,assassin,1292560872 +226979,6874,kung fu,1292560868 +226979,6874,martial arts,1292560872 +226979,6874,nonlinear,1292560863 +226979,6874,Quentin Tarantino,1292560867 +226979,6874,rape,1292560876 +226979,6874,revenge,1292560878 +226979,6874,Revenge Trilogy,1292560881 +226979,6874,stylized,1292560886 +226979,8784,coming of age,1292561701 +226979,8784,mental illness,1292561690 +226979,8784,psychology,1292561709 +226979,8784,quirky romantic,1292561704 +226979,8784,unsatisfying ending,1292561695 +226979,27156,apocalypse,1292561589 +226979,27156,end of the world,1292561585 +226979,27156,mental illness,1292561570 +226979,27156,Nudity (Topless),1292561575 +226979,27156,psychology,1292561574 +226979,27156,visceral,1292561582 +226979,27592,revenge,1292561979 +226979,32239,aliens,1292561340 +226979,32239,Crazy Guy,1292561336 +226979,33166,cultural conflict,1292561844 +226979,33166,easily confused with other movie(s) (title),1292561847 +226979,33166,imdb top 250,1292561834 +226979,33166,multiple storylines,1292561817 +226979,33166,Oscar (Best Picture),1292561829 +226979,33166,relationships,1292561824 +226979,33166,social commentary,1292561821 +226979,48394,adventure,1292560630 +226979,48394,disturbing,1292560627 +226979,48394,fantasy,1292560635 +226979,48394,imagination,1292560637 +226979,48394,imdb top 250,1292560640 +226979,48394,twist ending,1292560618 +226979,48696,EXTRAMARITAL AFFAIRS,1292561911 +226979,48696,Oscar Nom 2007,1292561921 +226979,48696,reflective,1292561918 +226979,48696,SUBURBAN DYSFUNCTION,1292561913 +226979,53161,asylum,1292561297 +226979,53161,insanity,1292561287 +226979,53161,mental hospital,1292561280 +226979,53161,mental illness,1292561284 +226979,69666,Australia,1292560725 +226979,71899,asperger syndrome,1292561645 +226979,71899,character study,1292561644 +226979,71899,Deep,1292561649 +226979,71899,friendship,1292561643 +226979,71899,mental illness,1292561655 +226979,71899,philosophical,1292561664 +226979,71899,poignant,1292561665 +226979,71899,touching,1292561661 +227008,3257,Whitney Houston,1277589127 +227026,1721,atmospheric,1451372011 +227026,1721,chick flick,1451372018 +227026,1721,Leonardo DiCaprio,1451372009 +227026,1721,love story,1451372013 +227026,1721,Nudity (Topless - Notable),1451372032 +227026,1721,Nudity (Topless),1451372025 +227026,1721,romance,1451372008 +227026,7293,happy ending,1451371796 +227026,7293,Romance,1451371799 +227026,31685,chick flick,1451371684 +227026,31685,Eva Mendes,1451371682 +227026,31685,romantic comedy,1451371680 +227026,31685,Will Smith,1451371678 +227026,40629,based on a book,1451372051 +227026,40629,chick flick,1451372051 +227026,40629,classic,1451372041 +227026,40629,Jane Austen,1451372039 +227026,40629,romance,1451372043 +227026,45720,Anne Hathaway,1451371639 +227026,45720,Chick flick,1451371652 +227026,45720,chickflick,1451371645 +227026,45720,fashion,1451371636 +227026,45720,funny,1451371643 +227026,45720,New York,1451371651 +227026,56949,chick flick,1451371602 +227026,56949,full of stupid things,1451371596 +227026,56949,Katherine Heigl,1451371580 +227026,56949,love story,1451371586 +227026,56949,romance,1451371600 +227026,56949,romantic comedy,1451371582 +227026,56949,weddings,1451371590 +227026,58047,romantic comedy,1451371554 +227026,58047,Ryan Reynolds,1451371558 +227026,63992,audience intelligence underestimated,1451371938 +227026,63992,chick flick,1451371923 +227026,63992,Robert Pattinson,1451371920 +227026,63992,romance,1451371917 +227026,65585,Anne Hathaway,1451371875 +227026,67788,feel-good,1451371862 +227026,67788,shopping,1451371861 +227026,69406,chemistry between actors,1451371833 +227026,69406,Ryan Reynolds,1451371827 +227026,69406,Sandra Bullock,1451371831 +227026,70183,comedy,1451371739 +227026,70183,entertaining,1451371742 +227026,70183,good chick flick,1451371737 +227026,78772,based on a book,1451371953 +227026,84374,Ashton Kutcher,1451371756 +227026,84374,chick flick,1451371758 +227026,84374,cute,1451371759 +227051,32,dystopian future,1138507134 +227051,150,we have a problem,1138506975 +227051,296,samuel l.,1138507099 +227051,551,good for all holidays,1138507077 +227051,750,doomsday,1138507019 +227051,858,Mafia,1138506869 +227051,1136,hilarious,1138507064 +227051,1196,best of star wars,1138507124 +227051,1198,nazis,1138507108 +227051,1200,space horror,1138506945 +227051,1204,amazing,1138507049 +227051,1206,doomsday,1138507004 +227051,1208,Heart of Darkness,1138506957 +227051,1250,Alec Guiness,1138506987 +227051,1267,communists,1138507059 +227051,1274,science fiction,1138507153 +227051,1287,nra,1138507226 +227051,1584,outer space,1138507259 +227051,1653,saturn,1138507274 +227051,1921,religious,1138507328 +227051,2028,intense,1138507392 +227051,2571,bullettime,1138507294 +227051,2692,intense,1138507350 +227051,2700,raunchy,1138506856 +227051,2858,beautiful,1138507193 +227051,2890,ice cube,1138507421 +227051,3160,long,1138507279 +227051,3949,depressing,1138507342 +227051,4033,cuban missile crisis,1138507410 +227051,4034,drug cartels,1138507432 +227051,4226,mystery,1138507302 +227081,318,hope,1441253977 +227081,318,prison escape,1441253990 +227081,318,thought-provoking,1441253962 +227081,318,twist ending,1441253966 +227081,356,inspirational,1441254323 +227081,356,tom hanks,1441254317 +227081,589,action,1441254280 +227081,589,Arnold Schwarzenegger,1441254271 +227081,589,Suspense,1441254284 +227081,733,Alcatraz,1441254920 +227081,733,Michael Bay,1441254924 +227081,733,Sean Connery,1441254918 +227081,1036,action packed,1441254249 +227081,1036,Bruce Willis,1441254240 +227081,1036,humorous,1441254259 +227081,33794,Christian Bale,1441254362 +227081,33794,thought-provoking,1441254360 +227081,58559,Batman,1441254062 +227081,58559,Christian Bale,1441254091 +227081,58559,Christopher Nolan,1441254069 +227081,58559,Heath Ledger,1441254058 +227081,58559,Joker,1441254083 +227081,58559,psychology,1441254071 +227081,58559,vigilante,1441254076 +227081,59315,action,1441254522 +227081,59315,Robert Downey Jr.,1441254512 +227081,59315,visually appealing,1441254527 +227081,89745,Captain America,1441254429 +227081,89745,great humor,1441254432 +227081,89745,Hulk,1441254423 +227081,89745,Iron Man,1441254420 +227081,89745,Loki,1441254437 +227081,89745,Marvel,1441254413 +227081,89745,Robert Downey Jr.,1441254410 +227081,89745,Scarlett Johansson,1441254417 +227081,89745,Thor,1441254426 +227081,89745,visually stunning,1441254443 +227081,91529,Batman,1441254738 +227081,91529,Christian Bale,1441254741 +227081,91529,great ending,1441254782 +227081,97304,drama,1441255267 +227081,97304,True story,1441255241 +227081,111362,Hugh Jackman,1441254493 +227081,111362,time travel,1441254468 +227081,111362,X-men,1441254480 +227081,111759,Emily Blunt,1441254189 +227081,111759,original plot,1441254196 +227081,111759,sci-fi,1441254204 +227081,111759,time loop,1441254182 +227112,3785,Funny as hell,1187802791 +227112,4015,Interesting,1187802954 +227112,4223,Best War Films,1187804581 +227112,4975,nice movie,1187802841 +227112,6378,interesting story,1187802783 +227112,6934,Entertaining for not asking too much of Keanu,1187802789 +227116,260,classic sci-fi,1444666171 +227116,260,fantasy,1444666163 +227116,260,Science Fiction,1444666142 +227143,111,atmospheric,1304515862 +227143,111,cult film,1304515864 +227143,111,disturbing,1304515867 +227143,111,grim,1304515871 +227143,111,insanity,1304515873 +227143,111,Jodie Foster,1304515875 +227143,111,Martin Scorsese,1304515877 +227143,111,paranoid,1304515881 +227143,111,prostitution,1304515883 +227143,111,Robert De Niro,1304515879 +227143,111,social commentary,1304515886 +227143,111,visceral,1304515887 +227143,778,black comedy,1304515904 +227143,778,British,1304515908 +227143,778,classic,1304515914 +227143,778,dark comedy,1304515916 +227143,778,drugs,1304515918 +227143,778,Ewan McGregor,1304515920 +227143,778,social commentary,1304515923 +227143,778,violence,1304515926 +227143,1175,atmospheric,1304516115 +227143,1175,Black comedy,1304516094 +227143,1175,dark comedy,1304516097 +227143,1175,dark humor,1304516102 +227143,1175,French,1304516100 +227143,1175,FUTURE DYSTOPIAS,1304516105 +227143,1175,quirky,1304516107 +227143,1175,unusual,1304516110 +227143,1175,witty,1304516111 +227143,1206,cult film,1304515820 +227143,1206,disturbing,1304515817 +227143,1206,dystopia,1304515821 +227143,1206,psychological,1304515823 +227143,1206,psychology,1304515827 +227143,1206,quirky,1304515828 +227143,1206,satire,1304515833 +227143,1206,satirical,1304515836 +227143,1206,social commentary,1304515838 +227143,1206,Stanley Kubrick,1304515840 +227143,1206,Surrealism,1304515843 +227143,1206,violence,1304515847 +227143,1246,bittersweet,1304514162 +227143,1246,boarding school,1304514167 +227143,1246,drama,1304514169 +227143,1246,friendship,1304514172 +227143,1246,heartbreaking,1304514174 +227143,1246,inspirational,1304514188 +227143,1246,philosophy,1304514177 +227143,1246,Robin Williams,1304514183 +227143,1246,Shakespeare,1304514181 +227143,1246,suicide,1304514179 +227143,1921,enigmatic,1304515739 +227143,1921,existentialism,1304515727 +227143,1921,mathematics,1304515735 +227143,1921,mental illness,1304515728 +227143,1921,mindfuck,1304515731 +227143,1921,paranoid,1304515732 +227143,1921,psychological,1304515741 +227143,1921,psychology,1304515744 +227143,1921,tense,1304515746 +227143,2959,action,1304515798 +227143,2959,atmospheric,1304515796 +227143,2959,based on a book,1304515764 +227143,2959,crime,1304515792 +227143,2959,dark comedy,1304515762 +227143,2959,disturbing,1304515787 +227143,2959,mental illness,1304515784 +227143,2959,philosophical,1304515778 +227143,2959,philosophy,1304515776 +227143,2959,psychological,1304515773 +227143,2959,psychology,1304515771 +227143,2959,quirky,1304515769 +227143,2959,twist ending,1304515767 +227143,2959,violence,1304515780 +227143,2997,black comedy,1304515558 +227143,2997,cult film,1304515560 +227143,2997,dark comedy,1304515564 +227143,2997,drama,1304515566 +227143,2997,fantasy,1304515568 +227143,2997,hallucinatory,1304515590 +227143,2997,off-beat comedy,1304515570 +227143,2997,plot twist,1304515574 +227143,2997,psychology,1304515575 +227143,2997,quirky,1304515579 +227143,2997,satirical,1304515572 +227143,2997,sci-fi,1304515583 +227143,2997,surreal,1304515584 +227143,2997,surrealism,1304515587 +227143,2997,thought-provoking,1304515592 +227143,2997,twist ending,1304515594 +227143,2997,whimsical,1304515588 +227143,3186,Angelina Jolie,1304513615 +227143,3186,Brittany Murphy,1304513623 +227143,3186,depression,1304513593 +227143,3186,Drama,1304513594 +227143,3186,mental health,1304513603 +227143,3186,mental illness,1304513581 +227143,3186,Nudity (Topless - Brief),1304513610 +227143,3186,psychiatry,1304513585 +227143,3186,psychology,1304513590 +227143,3186,rated-R,1304513606 +227143,3186,suicide,1304513587 +227143,3186,true story,1304513608 +227143,3186,winona ryder,1304513625 +227143,3476,alternate reality,1304516027 +227143,3476,conspiracy,1304516030 +227143,3476,disturbing,1304516032 +227143,3476,insanity,1304516034 +227143,3476,mental illness,1304516037 +227143,3476,multiple realities,1304516041 +227143,3476,occult,1304516043 +227143,3476,paranoia,1304516048 +227143,3476,psychiatry,1304516051 +227143,3476,twist downer ending,1304516054 +227143,3476,Vietnam War,1304516059 +227143,3556,based on a book,1304514399 +227143,3556,dreamlike,1304514368 +227143,3556,enigmatic,1304514371 +227143,3556,great ending,1304514374 +227143,3556,great soundtrack,1304514377 +227143,3556,Kirsten Dunst,1304514379 +227143,3556,lyrical,1304514381 +227143,3556,melancholy,1304514384 +227143,3556,psychology,1304514386 +227143,3556,reflective,1304514396 +227143,3556,suburbia,1304514394 +227143,3556,suicide,1304514387 +227143,3556,visually appealing,1304514391 +227143,3949,atmospheric,1304514471 +227143,3949,dark,1304514433 +227143,3949,depressing,1304514435 +227143,3949,disturbing,1304514438 +227143,3949,emotional,1304514443 +227143,3949,great acting,1304514441 +227143,3949,loneliness,1304514468 +227143,3949,Nudity (Full Frontal - Notable),1304514463 +227143,3949,Nudity (Full Frontal),1304514465 +227143,3949,prostitution,1304514460 +227143,3949,psychological,1304514445 +227143,3949,psychology,1304514455 +227143,3949,social commentary,1304514457 +227143,4226,complicated,1304514542 +227143,4226,cult film,1304514545 +227143,4226,memory,1304514547 +227143,4226,mystery,1304514549 +227143,4226,nonlinear,1304514550 +227143,4226,psychological,1304514552 +227143,4226,psychology,1304514554 +227143,4226,stylized,1304514556 +227143,4226,twist ending,1304514558 +227143,4226,twists & turns,1304514560 +227143,5377,british,1304514027 +227143,5377,british comedy,1304514030 +227143,5377,drama,1304514039 +227143,5377,heartwarming,1304514041 +227143,5377,Hugh Grant,1304514032 +227143,5377,Quirky,1304514037 +227143,5377,relationships,1304514043 +227143,5377,satirical,1304514035 +227143,5528,bizarre,1304515940 +227143,5528,creepy,1304515943 +227143,5528,dark,1304515945 +227143,5528,Dream Sequence,1304515946 +227143,5528,horror,1304515950 +227143,5528,psychological,1304515953 +227143,5528,psychotic tendencies,1304515966 +227143,5528,Robin Williams,1304515962 +227143,5528,strange story,1304515954 +227143,5528,suspense,1304515958 +227143,5668,Alison Lohman,1304513821 +227143,5668,Coming Of Age,1304513823 +227143,5668,Foster Home,1304513825 +227143,5668,Michelle Pfeiffer,1304513827 +227143,5668,Noah Wyle,1304513830 +227143,5668,Renée Zellweger,1304513833 +227143,5668,renee zellweger,1304513840 +227143,6163,Audrey Tautou,1304515400 +227143,6163,BRIEF ENCOUNTERS,1304515404 +227143,6163,DANGEROUS ATTRACTION,1304515402 +227143,6163,hospital,1304515406 +227143,6163,letters,1304515408 +227143,6163,obsession,1304515418 +227143,6163,plot twist,1304515424 +227143,6163,SELF-DESTRUCTIVE ROMANCE,1304515411 +227143,6163,twisted,1304515414 +227143,7285,adolescence,1304513722 +227143,7285,disturbing,1304513759 +227143,7285,drama,1304513762 +227143,7285,drugs,1304513764 +227143,7285,Evan Rachel Wood,1304513766 +227143,7285,great script,1304513770 +227143,7285,nostalgic,1304513743 +227143,7285,Nudity (Topless - Notable),1304513745 +227143,7285,Nudity (Topless),1304513747 +227143,7285,R,1304513781 +227143,7285,scary,1304513784 +227143,7285,thriller,1304513774 +227143,7285,well done,1304513778 +227143,8981,bleak,1304515256 +227143,8981,Dark,1304515258 +227143,8981,dialogue,1304515261 +227143,8981,disturbing,1304515262 +227143,8981,good acting,1304515268 +227143,8981,Jude Law,1304515275 +227143,8981,Julia Roberts,1304515273 +227143,8981,Natalie Portman,1304515271 +227143,8981,photography,1304515278 +227143,27721,audrey tatou,1304515458 +227143,27721,Audrey Tautou,1304515459 +227143,27721,confusing,1304515463 +227143,27721,R,1304515470 +227143,39414,a realistic and human romance,1304516178 +227143,44974,controversial,1304514481 +227143,44974,disturbing,1304514482 +227143,44974,Ellen Page,1304514485 +227143,44974,gore,1304514488 +227143,44974,intense,1304514491 +227143,44974,lurid,1304514502 +227143,44974,menacing,1304514529 +227143,44974,psychology,1304514521 +227143,44974,R,1304514525 +227143,44974,sexual abuse,1304514505 +227143,44974,suspenseful,1304514509 +227143,44974,tense,1304514518 +227143,44974,torture,1304514516 +227143,48082,artsy,1304515483 +227143,48082,bittersweet,1304515485 +227143,48082,fantasy,1304515496 +227143,48082,Michel Gondry,1304515501 +227143,48082,psychological,1304515498 +227143,48082,psychology,1304515504 +227143,48082,quirky,1304515507 +227143,48082,R,1304515509 +227143,48082,romance,1304515511 +227143,48082,stylized,1304515513 +227143,48082,surreal,1304515517 +227143,48082,unusual,1304515519 +227143,55067,mental illness,1304514356 +227143,56715,black comedy,1304516075 +227143,56715,dark comedy,1304516077 +227143,56715,quirky,1304516080 +227143,56715,suicide,1304516083 +227143,64839,confronting,1304516233 +227143,64839,identity crisis,1304516213 +227143,64839,raw,1304516236 +227143,64839,realistic,1304516216 +227143,64839,relationships,1304516220 +227143,64839,visceral,1304516229 +227143,69712,Abigail Breslin,1304513979 +227143,69712,bad interpretation,1304513994 +227143,69712,book to movie adaptation,1304514005 +227143,69712,ending,1304513972 +227143,69712,relationships,1304513986 +227143,69712,Sofia Vassilieva,1304513977 +227143,69712,teen,1304513983 +227143,69757,abuse,1304515152 +227143,69757,artistic,1304515150 +227143,69757,chick flick,1304515154 +227143,69757,cliche,1304515157 +227143,69757,cute,1304515161 +227143,69757,quirky,1304515166 +227143,69757,relationships,1304515170 +227143,69757,Zooey Deschanel,1304515168 +227143,71745,based on a book,1304514313 +227143,71745,bittersweet,1304514316 +227143,71745,dreamlike,1304514319 +227143,71745,fantasy world,1304514334 +227143,71745,handheld cameras,1304514340 +227143,71745,Mark Ruffalo,1304514331 +227143,71745,monster,1304514322 +227143,71745,Soundtrack,1304514329 +227143,71745,surreal,1304514326 +227143,71745,touching,1304514325 +227143,80693,based on a book,1304514254 +227143,80693,cliché ending,1304514277 +227143,80693,depression,1304514282 +227143,80693,Emma Roberts,1304514245 +227143,80693,funny,1304514261 +227143,80693,generic,1304514269 +227143,80693,Lauren Graham,1304514251 +227143,80693,mental illness,1304514244 +227143,80693,obvious,1304514263 +227143,80693,suicide,1304514266 +227143,80693,trying to be indie,1304514296 +227143,80693,Zach Galifianakis,1304514289 +227143,81591,ballet,1304510566 +227143,81591,body horror,1304510590 +227143,81591,dance,1304510583 +227143,81591,drama,1304510578 +227143,81591,eerie,1304510580 +227143,81591,Natalie Portman,1304510568 +227143,81591,New York City,1304510574 +227143,81591,plot holes,1304510576 +227143,81591,psychological,1304510584 +227143,81591,repressed sexuality,1304510572 +227162,260,sci-fi,1437413509 +227162,260,space epic,1437413531 +227183,44665,great ending,1439832135 +227183,55872,love of music,1439832088 +227183,73881,bollywood,1439405974 +227183,112852,Action,1439832420 +227188,73290,based on a true story,1448151918 +227188,73290,dogs,1448151907 +227188,73290,tearjerker,1448151912 +227188,79091,predictable,1448151783 +227188,79357,cinematography,1448151877 +227188,79357,philosophy,1448151880 +227188,79357,surreal,1448151872 +227188,79357,thought provoking,1448151875 +227188,88129,atmospheric,1448151842 +227188,88129,cinematography,1448151845 +227188,88129,Ryan Gosling,1448151812 +227188,88129,visually appealing,1448151831 +227188,91077,emotional,1448152003 +227188,91077,intelligent,1448152005 +227188,96488,Music,1448152028 +227188,96606,beautiful cinematography,1448151693 +227188,97921,Bradley Cooper,1448151940 +227188,97921,great characters,1448151954 +227188,97921,Jennifer Lawrence,1448151936 +227188,97921,romance,1448151943 +227188,104069,Louis C.K.,1448152040 +227188,104069,stand-up comedy,1448152043 +227188,106766,atmospheric,1448151739 +227188,106766,Coen Brothers,1448151735 +227188,106766,musicians,1448151744 +227188,106766,New York City,1448151750 +227195,1225,touching,1138399838 +227195,2959,raw,1138399884 +227204,2150,natives,1209626916 +227225,19,detective,1369578474 +227225,32,original,1369577755 +227225,39,teen movie,1369578348 +227225,110,medieval,1194185377 +227225,187,library,1268173019 +227225,288,brutality,1369578388 +227225,296,masterpiece,1369577861 +227225,466,parody,1194189541 +227225,520,medieval,1194185485 +227225,520,parody,1194189704 +227225,527,World War II,1194186013 +227225,587,supernatural,1369578060 +227225,910,screwball comedy,1369578487 +227225,940,medieval,1237097602 +227225,1027,medieval,1194185500 +227225,1080,Monty Python,1369339670 +227225,1080,parody,1194189447 +227225,1088,dancing,1369578426 +227225,1089,original,1369577755 +227225,1101,aviation,1194185701 +227225,1136,medieval,1194185398 +227225,1136,parody,1194189414 +227225,1183,World War I,1194186431 +227225,1188,dancing,1369578426 +227225,1201,western,1194215212 +227225,1222,Vietnam War,1194214937 +227225,1237,medieval,1194185719 +227225,1250,World War II,1194186056 +227225,1278,parody,1200681946 +227225,1517,parody,1194189835 +227225,1704,mentor,1369577848 +227225,2028,World War II,1194186175 +227225,2068,epic,1301316688 +227225,2420,mentor,1369577848 +227225,2427,World War II,1194186065 +227225,2467,medieval,1194185431 +227225,2683,parody,1194189816 +227225,2863,musicians,1369578265 +227225,2866,musicians,1369578265 +227225,2915,teen movie,1369578349 +227225,2951,western,1194187447 +227225,3033,parody,1194189366 +227225,3034,medieval,1301317244 +227225,3034,Robin Hood,1301317240 +227225,3034,talking animals,1301317250 +227225,3066,World War II,1350550401 +227225,3418,women,1369578232 +227225,3448,Vietnam War,1194214853 +227225,3791,dancing,1369578426 +227225,4054,dancing,1369578426 +227225,4223,World War II,1194185933 +227225,4239,drugs,1194215041 +227225,4299,medieval,1194186118 +227225,4310,World War II,1194186393 +227225,4591,vikings,1194187357 +227225,4896,fantasy,1215929989 +227225,4896,potter,1215929989 +227225,4993,fantasy,1215930096 +227225,4993,middle earth,1215930096 +227225,5107,World War II,1194189912 +227225,5134,football,1333132885 +227225,5134,vinnie jones,1333132885 +227225,5420,World War II,1194187516 +227225,5425,aviation,1214366391 +227225,5425,world war II,1215929534 +227225,5481,parody,1194189844 +227225,5541,aviation,1194187723 +227225,5541,parody,1194189546 +227225,5693,dancing,1369578426 +227225,5816,fantasy,1215929910 +227225,5816,potter,1215929915 +227225,5952,fantasy,1215930168 +227225,5952,middle earth,1215930168 +227225,6441,aviation,1194185593 +227225,6441,World War II,1194185600 +227225,6550,parody,1194214842 +227225,6618,soccer,1196722267 +227225,6618,sports,1196722260 +227225,6711,Scarlett Johansson,1357534975 +227225,6731,splatter,1369578103 +227225,6959,medieval,1238297754 +227225,7153,fantasy,1215930122 +227225,7153,middle earth,1215930122 +227225,7809,World War II,1194186293 +227225,8368,fantasy,1215929958 +227225,8368,Potter,1215929959 +227225,8866,sports,1194214085 +227225,8866,tennis,1194214085 +227225,8874,zombies,1272757025 +227225,31410,World War II,1194186053 +227225,33124,World War II,1194186263 +227225,33162,medieval,1194186034 +227225,33834,splatter,1369578103 +227225,36397,WWII,1357071830 +227225,37733,brutality,1369578388 +227225,40815,fantasy,1215929932 +227225,40815,potter,1215929932 +227225,41566,fantasy,1215929777 +227225,41566,narnia,1215929772 +227225,48304,brutality,1369578388 +227225,48319,aviation,1352844465 +227225,49649,fantasy,1215930049 +227225,50796,shape shifter,1411314678 +227225,51354,småland,1301316786 +227225,58154,Scarlett Johansson,1315351464 +227225,59501,fantasy,1215929715 +227225,59501,narnia,1215929784 +227225,60816,discworld,1362994778 +227225,60816,fantasy,1362994790 +227225,60816,Terry Pratchett,1362994778 +227225,61240,1980s,1301316963 +227225,61240,adapted from:book,1301316982 +227225,61240,horror,1301316970 +227225,61240,vampires,1301316975 +227225,71518,sports,1396474452 +227225,74789,3D version,1268172937 +227225,76093,dragons,1270147141 +227225,77866,England,1293316720 +227225,79796,Battles,1421605683 +227225,82459,Matt Damon,1428263291 +227225,89030,David Tennant,1396213425 +227225,89650,England,1362994597 +227225,89650,middle ages,1362994582 +227225,91974,vampires,1420916903 +227225,92841,WWII,1384990131 +227225,95167,No Marriage at the End,1426306611 +227225,95167,Scotland,1426306604 +227225,95939,Scotland,1378490708 +227225,95939,whisky,1378490708 +227225,98809,fantasy world,1355501547 +227225,106240,time travel,1452760072 +227225,106642,David Tennant,1400304897 +227225,106642,Doctor Who,1400304897 +227225,109846,time travel,1452760056 +227225,111659,dragon,1420924996 +227225,112175,dragons,1426306494 +227225,115210,World War II,1423688614 +227225,120484,comedy,1420229636 +227254,318,prison escape,1437682424 +227254,318,redemption,1437682424 +227254,318,revenge,1437682424 +227254,139620,Cem Yılmaz,1437682515 +227254,139620,En iyi senaryo,1437682564 +227254,139620,Komedi,1437682512 +227290,188,Best devil ever,1197147729 +227290,235,Bella Lugosi,1197147884 +227290,356,box of chocolate,1437167958 +227290,356,sweet,1437167958 +227290,356,will power,1437167958 +227290,1234,Cons,1207683003 +227290,1234,Paul Newman,1207683003 +227290,1234,Robert Redford,1207683003 +227290,2763,Nina Simone - Sinnerman,1190073416 +227290,3275,Irishmen,1207918743 +227290,3275,Mafia,1207918743 +227290,3275,Willem Dafoe,1207918743 +227290,7416,George Burns,1207683090 +227290,7416,Old school,1207683090 +227290,7416,Walter Matthau,1207683090 +227290,8376,slow,1195352531 +227290,8376,stupid comedy,1195352531 +227290,8784,Great Soundtrack,1181936020 +227290,45666,Oaxaca,1210811541 +227290,50685,life reflection,1199049899 +227290,55280,dork people,1209773769 +227290,55280,family affair,1209773769 +227290,55280,little town,1209773769 +227290,55721,BOPE,1232084526 +227290,55721,Drugs,1232084526 +227290,55721,Favelas,1232084526 +227290,55721,Latin America,1232084526 +227290,55721,War,1232084526 +227290,56145,Fanatism,1208698402 +227290,56145,Mist,1208698401 +227290,56145,Survival,1208698402 +227290,56171,steampunk,1199754951 +227290,58103,complot,1205278949 +227290,58103,magnicide,1205278949 +227290,58103,salamanca,1205278949 +227290,58103,secret_service,1205278949 +227290,58103,spain,1205278949 +227290,59590,choir,1227922583 +227290,59590,curious,1227922629 +227290,59590,documentary,1227922629 +227290,59590,funny,1227922629 +227290,59590,music,1227922629 +227290,59590,old people,1227922629 +227290,59590,queer,1227922629 +227290,59784,animation,1227922739 +227290,59784,comedy,1227922739 +227290,59784,fat hero,1227922740 +227290,59784,kids,1227922739 +227290,59784,Kung Fu,1227922746 +227290,61236,gruesome ending,1248553718 +227290,61236,history,1248553727 +227290,61236,story,1248553738 +227290,63222,Belgium,1236968141 +227290,63222,Brussels,1236968141 +227290,63222,hostages,1236968141 +227290,63222,post,1236968141 +227290,63222,video store,1236968141 +227290,64034,Friendship,1237104032 +227290,64034,Kids,1237104032 +227290,64614,acting,1246220110 +227290,64614,cranky,1246220129 +227290,64614,friendship,1246220139 +227290,64614,old guy,1246220125 +227290,64614,patriotic,1246220104 +227290,64614,premise,1246220120 +227290,65045,aliens,1232682472 +227290,65045,low budget,1232682472 +227290,65045,supermarket,1232682471 +227290,67197,aliens,1246220221 +227290,67197,easy fix,1246220235 +227290,67197,plot holes,1246220205 +227290,67197,pseduscience,1246220213 +227290,67361,acting,1248560552 +227290,67361,sentience,1248560606 +227290,69757,Ending,1265881904 +227290,77837,Pride,1292711978 +227290,80026,cheesy bad,1290281698 +227290,80026,fighting girls,1290281698 +227290,80026,fights,1290281698 +227290,80026,predictable,1290281698 +227291,165,action,1286981729 +227291,165,Bruce Willis,1286981732 +227291,165,Samuel L. Jackson,1286981737 +227291,165,terrorism,1286981739 +227291,296,action,1284963878 +227291,296,Bruce Willis,1284963875 +227291,296,comedy,1284963882 +227291,296,gay rape,1284964185 +227291,296,John Travolta,1284963865 +227291,296,male bondage,1284963807 +227291,296,Samuel L. Jackson,1284963894 +227291,316,aliens,1277960734 +227291,316,archaeology,1277960736 +227291,316,Egyptian Mythology,1277960850 +227291,316,Kurt Russell,1277960744 +227291,316,mythology,1277960746 +227291,316,pyramids,1277960858 +227291,316,sci-fi,1277960754 +227291,316,space,1277960758 +227291,316,Stargate,1277960760 +227291,316,sweeping,1277960765 +227291,316,violence,1277960792 +227291,514,angry,1450573028 +227291,514,biting,1450573012 +227291,514,Christmas,1450572973 +227291,514,comedy,1450573073 +227291,514,confrontational,1450573034 +227291,514,Denis Leary,1450572958 +227291,514,hilarious,1450573037 +227291,514,holiday,1450573016 +227291,514,humorous,1450573075 +227291,514,irreverent,1450573040 +227291,514,Judy davis,1450572955 +227291,514,Kevin Spacey,1450573004 +227291,514,talky,1450573083 +227291,514,wry,1450573078 +227291,1036,action,1286697424 +227291,1036,Alan Rickman,1286697428 +227291,1036,Bruce Willis,1286697430 +227291,1036,explosions,1286697434 +227291,1036,humorous,1286697437 +227291,1036,terrorism,1286697438 +227291,1270,Christopher Lloyd,1301295842 +227291,1270,Michael J. Fox,1301295842 +227291,1500,80s soundtrack,1304573605 +227291,1500,Dan Aykroyd,1304573612 +227291,1500,John Cusack,1304573615 +227291,1500,Minnie Driver,1304573617 +227291,1824,Hank Azaria,1262484488 +227291,1824,John Lithgow,1262484485 +227291,1824,Ryan Phillippe,1262484490 +227291,1824,weed,1262484475 +227291,2034,bad science,1361770824 +227291,2034,mad scientist,1361770883 +227291,2034,mostly nonsense,1361770865 +227291,2034,no aliens,1361770906 +227291,2034,robots,1361770878 +227291,2034,silly,1361770848 +227291,2034,space,1361770853 +227291,2034,space travel,1361770851 +227291,2034,weird ending,1361770856 +227291,2086,Christmas,1249722767 +227291,2735,80s,1387059262 +227291,2735,Charlotte Lewis,1387062302 +227291,2735,demons,1387061261 +227291,2735,eastern mysticism,1387062671 +227291,2735,Eddie Murphy,1387059143 +227291,2735,fight scenes,1387059962 +227291,2735,Los Angeles,1387059243 +227291,2735,Magic,1387061226 +227291,2735,waif-fu,1387059985 +227291,3318,Iraq War,1278015981 +227291,3318,it could happen,1278016058 +227291,3318,Kevin Pollak,1278015962 +227291,3318,nuclear war,1278016000 +227291,3318,war,1278015969 +227291,4865,19th century,1304573526 +227291,4865,gothic,1304573533 +227291,4865,Heather Graham,1304573561 +227291,4865,Johnny Depp,1304573541 +227291,5617,BDSM,1378027756 +227291,5617,sexuality:BDSM,1378027770 +227291,5903,Emily Watson,1304307200 +227291,5903,post-apocalyptic,1304307198 +227291,5903,thought-provoking,1304307205 +227291,6214,rape,1445149767 +227291,6378,Charlize Theron,1387074058 +227291,6378,Seth Green,1387071829 +227291,6754,action,1305446886 +227291,6754,heroine in tight suit,1305446894 +227291,6754,Kate Beckinsale,1305446904 +227291,6764,Christopher Walken,1286538847 +227291,6764,Dwayne Johnson,1286538845 +227291,6764,The Rock,1286538862 +227291,6902,Amy Smart,1311768336 +227291,6902,Christopher Lloyd,1311768329 +227291,6902,funny,1311768343 +227291,6902,Gary Oldman,1311768346 +227291,6902,Michael J. Fox,1311768332 +227291,6902,mindfuck,1311768351 +227291,6902,road trip,1311768360 +227291,7254,alternate reality,1438392388 +227291,7254,Ashton Kutcher,1438392400 +227291,7254,Child abuse,1438392409 +227291,7254,psychology,1438392390 +227291,7254,sci-fi,1438392393 +227291,7254,science fiction,1438392416 +227291,7254,time travel,1438392382 +227291,7254,twist ending,1438392396 +227291,8636,action,1362545355 +227291,8636,Kirsten Dunst,1362545353 +227291,8636,superhero,1362545371 +227291,8972,Diane Kruger,1387165273 +227291,27373,baseball,1276969271 +227291,32302,Watch with Dad,1278008820 +227291,33679,Action,1405906969 +227291,33679,Kick-Butt Women,1405906983 +227291,33679,romance,1405906985 +227291,33679,Strong Women,1405906997 +227291,34579,gay relationship,1249327963 +227291,41997,way too long,1406143165 +227291,45517,animation,1277850166 +227291,45517,cars,1277850168 +227291,45517,comedy,1277850177 +227291,45517,emotional fire truck,1277850256 +227291,45517,not depressing,1277850281 +227291,45517,race,1277850190 +227291,45517,road trip,1277850194 +227291,45517,villain nonexistent or not needed for good story,1277850162 +227291,47610,Jessica Biel,1387262262 +227291,53140,bob newhart the ninja,1262378336 +227291,53207,Al Pacino,1301040066 +227291,53207,Alicia Witt,1301040124 +227291,53207,Amy Brenneman,1301040267 +227291,53207,Leelee Sobieski,1301040124 +227291,53519,car chase,1360730747 +227291,53519,cars,1360730748 +227291,53519,classic car,1360730751 +227291,53519,great dialogue,1360730773 +227291,53519,grindhouse,1360731089 +227291,53519,Kick-Butt Women,1360730767 +227291,53519,Mary Elizabeth Winstead,1360730857 +227291,53519,Quentin Tarantino,1360730793 +227291,53519,Rosario Dawson,1360730834 +227291,53519,slow paced,1360730797 +227291,53519,too long,1360730801 +227291,53519,waif-fu,1360731152 +227291,62970,alternate reality,1311463173 +227291,62970,kathleen robertson,1311463325 +227291,62970,magic,1311463177 +227291,62970,Zooey Deschanel,1311463243 +227291,66365,cult film,1277850304 +227291,66365,Helen Hunt,1277850307 +227291,66365,time travel,1277850310 +227291,68157,random unnecessary close-ups of cream,1262364467 +227291,68159,Russell Crowe,1276821040 +227291,68791,apocalyptic,1386879242 +227291,68791,Bryce Dallas Howard,1386879184 +227291,68791,Moon Bloodgood,1386879221 +227291,68791,sci-fi,1386879272 +227291,68954,tear jerker,1276820883 +227291,70336,fun,1446868485 +227291,70336,Rachel Nichols,1446868598 +227291,70336,Sienna Miller,1446868506 +227291,71838,antihero,1277935055 +227291,71838,Colm Meaney,1277935056 +227291,71838,explosions,1277935195 +227291,71838,graphic,1277935066 +227291,71838,Jamie Foxx,1277935072 +227291,71838,revenge,1277935101 +227291,72982,Caterina Scorsone,1386962416 +227291,72982,waif-fu,1387060056 +227291,72998,aliens,1306478466 +227291,72998,futuristic,1306478479 +227291,72998,Michelle Rodriguez,1306478468 +227291,72998,music,1306478484 +227291,72998,sci-fi,1306478499 +227291,72998,science fiction,1306478500 +227291,73874,fighting,1311333534 +227291,73874,ghetto,1311333540 +227291,73874,Michael Jai White,1311333537 +227291,74131,Brendan Fraser,1387701099 +227291,74131,Keri Russell,1387701647 +227291,74946,romance,1276969026 +227291,76093,action,1294548542 +227291,76093,adventure,1294548544 +227291,76093,dragons,1294548551 +227291,76093,fantasy,1294548554 +227291,76093,funny,1294548557 +227291,76093,predictable,1294548564 +227291,76251,action,1398656515 +227291,76251,funny,1398656521 +227291,76251,gore,1398656524 +227291,76251,great soundtrack,1398656528 +227291,76251,humorous,1398656530 +227291,76251,Nicolas Cage,1398656532 +227291,76251,revenge,1398656534 +227291,76251,superhero,1398656537 +227291,76251,vigilante,1398656541 +227291,76251,waif-fu,1398656513 +227291,77843,bondage,1286625856 +227291,77843,Gemma Arterton,1286625859 +227291,78209,diddy,1295155803 +227291,78209,drug use,1295155804 +227291,78209,Elisabeth Moss,1295155801 +227291,78209,humor,1295155807 +227291,78209,Jonah Hill,1295155810 +227291,78209,Russell Brand,1295155822 +227291,78209,Sean Combs,1295155827 +227291,78209,silly,1295155824 +227291,79132,action,1311166609 +227291,79132,alternate reality,1311166612 +227291,79132,fantasy,1311166643 +227291,79132,sci-fi,1311166647 +227291,79702,Mary Elizabeth Winstead,1318197126 +227291,80339,bondage scene,1286538978 +227291,80339,Jessica Stroup,1286538962 +227291,80339,Mischa Barton,1286538950 +227291,80549,comedy,1311166737 +227291,80549,Emma Stone,1311166727 +227291,80549,funny,1311166740 +227291,80549,witty,1311166750 +227291,81191,depressing,1301043878 +227291,81191,heartbreaking,1301043876 +227291,82459,Action,1405795468 +227291,82459,Jeff Bridges,1405795477 +227291,82459,Matt Damon,1405795478 +227291,82461,computers,1305359696 +227291,82461,Olivia Wilde,1305359720 +227291,82461,sci-fi,1305359698 +227291,82461,technology,1305359700 +227291,83613,aliens,1401858199 +227291,83613,better than expected,1401858200 +227291,83613,Daniel Craig,1401858202 +227291,83613,Harrison Ford,1401858204 +227291,83613,Olivia Wilde,1401858206 +227291,83613,too long,1401858193 +227291,84772,anti-religion,1438828076 +227291,84772,Atheism,1438828069 +227291,86628,gangsters,1315116630 +227291,87869,Jennifer Aniston,1320915690 +227291,89745,fast paced,1336975924 +227291,89745,Gwyneth Paltrow,1336976045 +227291,89745,Hulk,1336975897 +227291,89745,joss whedon,1336975857 +227291,89745,Robert Downey Jr.,1336975863 +227291,89745,Scarlett Johansson,1336975888 +227291,89745,superhero,1336975891 +227291,91094,Amy Adams,1369620615 +227291,91094,dancing,1369620643 +227291,91094,Jack Black,1369620640 +227291,91094,musical,1369620625 +227291,91094,weak plot,1369620633 +227291,91500,dystopia,1387691347 +227291,91500,Jennifer Lawrence,1387691346 +227291,91500,Shaky cam,1387691439 +227291,91500,shaky camera,1387691421 +227291,91500,Woody Harrelson,1387691464 +227291,91542,fight scenes,1401573922 +227291,91542,Funny,1401573925 +227291,91542,Robert Downey Jr.,1401573928 +227291,91658,rape,1394931135 +227291,91658,revenge,1394931159 +227291,93840,bloody,1396742618 +227291,93840,clever,1396742535 +227291,93840,conspiracy,1396742537 +227291,93840,funny,1396742540 +227291,93840,gore,1396742544 +227291,93840,Kristen Connelly,1396742600 +227291,93840,monsters,1396742622 +227291,93840,Nudity (Topless),1396742551 +227291,93840,original,1396742553 +227291,93840,plot twist,1396742555 +227291,93840,satire,1396742557 +227291,93840,suspense,1396742648 +227291,93840,vacation gone wrong,1396742637 +227291,93840,weird,1396742566 +227291,93840,witty,1396742569 +227291,93840,zombies,1396742626 +227291,95167,celtic music,1367789888 +227291,95167,Kick-Butt Women,1367789845 +227291,95441,comedy,1370834145 +227291,95441,Funny,1370834126 +227291,95441,Mark Wahlberg,1370834180 +227291,95441,Mila Kunis,1370834111 +227291,95441,Patrick Stewart,1370834114 +227291,95441,predictable,1370834164 +227291,95875,action,1378939821 +227291,95875,future,1378939828 +227291,95875,futuristic,1378939829 +227291,95875,memory,1378939836 +227291,95875,post-apocalyptic,1378939847 +227291,95875,purposely ambiguous,1378939805 +227291,95875,robots,1378939860 +227291,95875,Sci-fi,1378939852 +227291,95875,visually appealing,1378939865 +227291,96062,gina bellman,1409509174 +227291,96062,james nesbitt,1409509164 +227291,96062,michelle ryan,1409509213 +227291,96062,TV miniseries,1409509229 +227291,96110,election,1371698224 +227291,96110,funny,1371698229 +227291,96110,political satire,1371698259 +227291,96110,politics,1371698237 +227291,96110,satire,1371698238 +227291,96110,Will Ferrell,1371698239 +227291,96110,Zach Galifianakis,1371698245 +227291,97913,animation,1361848646 +227291,97913,disney,1361848650 +227291,97913,racing,1361848655 +227291,97913,Sarah Silverman,1361848657 +227291,97913,video games,1361848663 +227291,100383,psychology,1384315120 +227291,100383,slow start,1384315113 +227291,102445,alice eve,1369278188 +227291,102445,space,1369278101 +227291,102445,Star Trek,1369278099 +227291,102445,where did that tribble come from,1369278076 +227291,103042,Amy Adams,1387154237 +227291,103042,Lawrence Fishburne,1387154237 +227291,103253,class conflict,1397336350 +227291,103253,dystopia,1397336355 +227291,103253,future,1397336363 +227291,103253,Jodie Foster,1397336367 +227291,103253,Matt Damon,1397336368 +227291,103253,science fiction,1397336378 +227291,103253,social commentary,1397336382 +227291,103253,visually stunning,1397336385 +227291,103755,dreamworks,1400121155 +227291,103755,racing,1400120902 +227291,103755,talking animals,1400120905 +227291,104211,Emma Roberts,1396225386 +227291,104211,Jennifer Aniston,1396225389 +227291,104241,brutal,1402184809 +227291,104241,brutality,1402184811 +227291,104241,Chloe Moretz,1402184813 +227291,104241,comic book,1402184832 +227291,104241,glorifying violence,1402184835 +227291,104241,Jim Carrey,1402184839 +227291,104241,slow,1402184859 +227291,104241,superhero,1402184849 +227291,104241,too many characters,1402184805 +227291,106002,aliens,1437880608 +227291,106002,based on a book,1437880614 +227291,106002,space,1437880611 +227291,106002,twist ending,1437880625 +227291,106072,aliens,1398062422 +227291,106072,Chris Hemsworth,1398062435 +227291,106072,great ending,1398062448 +227291,106072,humor,1398062447 +227291,106072,humorous,1398062445 +227291,106072,Kat Dennings,1398062439 +227291,106072,Marvel Cinematic Universe,1398062450 +227291,106072,Natalie Portman,1398062452 +227291,106072,Tom Hiddleston,1398062462 +227291,106072,visually appealing,1398062467 +227291,106072,visually stunning,1398062469 +227291,106072,watch the credits,1398062472 +227291,108190,Bechdel Test:Pass,1409017718 +227291,108190,Bechdel Test:Who Cares,1409017653 +227291,108190,female protagonist,1409017665 +227291,108190,heterosexuality,1409017672 +227291,108190,long,1409017677 +227291,108190,scifi,1409017692 +227291,108190,Shailene Woodley,1409018340 +227291,108190,The Chosen One,1409017706 +227291,108928,no character development,1401432795 +227291,108928,sad,1401432731 +227291,110730,artificial intelligence,1409165010 +227291,110730,computers,1409165017 +227291,110730,Morgan Freeman,1409165007 +227291,110730,playing God,1409165009 +227291,110730,poorly thought out ending,1409164937 +227291,110730,ridiculous,1409165006 +227291,110730,science is magic,1409165003 +227291,110730,technophobic,1409164998 +227291,114180,action,1440821014 +227291,114180,amnesia,1440821006 +227291,114180,based on a book,1440821002 +227291,114180,dystopia,1440820974 +227291,114180,maze,1440821018 +227291,114180,plot holes,1440820995 +227291,114180,post-apocalyptic,1440820971 +227291,114180,survival,1440820987 +227291,122886,big budget,1452152412 +227291,122886,Daisy Ridley,1452152368 +227291,122886,explosions,1452152433 +227291,122886,female protagonist,1452152393 +227291,122886,Harrison Ford,1452152363 +227291,122886,Lucasfilm Ltd.,1452152426 +227291,122886,Mark Hamill,1452152376 +227291,122886,space,1452152372 +227291,122886,Star Wars,1452152361 +227291,122886,Walt Disney Studios,1452152419 +227295,1639,seen more than once,1152315873 +227295,5820,My DVDs,1152315915 +227310,260,sci-fi,1442832456 +227310,260,Star Wars,1442832459 +227317,215,Vienna,1427755801 +227317,235,Biography,1241219911 +227317,235,black and white,1241219923 +227317,235,film noir,1241219918 +227317,235,Johnny Depp,1241219902 +227317,235,Tim Burton,1241219908 +227317,253,Antonio Banderas,1241219618 +227317,253,author:Anne Price,1241219631 +227317,253,based on a book,1241219603 +227317,253,Brad Pitt,1241219615 +227317,253,fantasy,1241219625 +227317,253,horror,1241219623 +227317,253,Kirsten Dunst,1241219612 +227317,253,Tom Cruise,1241219614 +227317,253,vampires,1241219607 +227317,364,africa,1241364455 +227317,364,animation,1241220455 +227317,364,coming of age,1241364459 +227317,364,Disney,1241220454 +227317,364,lions,1241364447 +227317,364,talking animals,1241364463 +227317,364,Whoopi Goldberg,1241364469 +227317,367,Cameron Diaz,1241219839 +227317,367,cartoonish,1241219836 +227317,367,Jim Carrey,1241219826 +227317,551,animation,1241220475 +227317,551,Tim Burton,1241220473 +227317,648,Action,1241219409 +227317,648,Classic Thriller,1241219420 +227317,648,espionage,1241219423 +227317,648,Tom Cruise,1241219414 +227317,661,animation,1253884511 +227317,661,Disney,1253884504 +227317,661,musical,1253884527 +227317,661,stop-motion,1253884515 +227317,839,gothic,1241220015 +227317,839,sequel,1241220020 +227317,1061,true story,1231951857 +227317,1080,Biblical,1245680893 +227317,1080,British,1245680877 +227317,1080,Monty Python,1245680881 +227317,1080,parody,1245680888 +227317,1136,Monty Python,1241220466 +227317,1199,dark comedy,1298069583 +227317,1199,dystopia,1298069573 +227317,1199,surreal,1298069576 +227317,1199,thought-provoking,1298069578 +227317,1265,alternate reality,1298070047 +227317,1265,Bill Murray,1298070040 +227317,1265,time loop,1298070042 +227317,1339,based on a book,1241219945 +227317,1339,vampires,1241219955 +227317,1680,British,1245680975 +227317,1680,chick flick,1245680977 +227317,1680,Gwyneth Paltrow,1245680965 +227317,1680,nonlinear,1245680968 +227317,1680,subway,1245680971 +227317,1722,james bond,1241220519 +227317,1748,aliens,1241219995 +227317,1748,dreamlike,1241219976 +227317,1748,dystopia,1241219977 +227317,1748,fantasy,1241219973 +227317,1748,mindfuck,1241219985 +227317,1748,surreal,1241219985 +227317,1880,John Duigan,1269445564 +227317,1880,Sam Rockwell,1269445559 +227317,2021,based on a book,1245680647 +227317,2028,historical,1245681107 +227317,2028,Steven Spielberg,1245681098 +227317,2028,Tom Hanks,1245681102 +227317,2028,World War II,1245681106 +227317,2081,childhood,1241219444 +227317,2081,Disney,1241219443 +227317,2087,pirates,1223586310 +227317,2355,animation,1250788299 +227317,2355,Pixar,1250788297 +227317,2356,boring,1269473476 +227317,2431,true story,1223737274 +227317,2542,black comedy,1245680850 +227317,2542,British,1245680853 +227317,2542,Guy Ritchie,1245680857 +227317,2542,hilarious,1245680865 +227317,2542,organized crime,1245680862 +227317,2671,British,1223736755 +227317,2671,chick flick,1223736753 +227317,3000,anime,1241220498 +227317,3000,Studio Ghibli,1241220499 +227317,3081,Johnny Depp,1241219251 +227317,3081,Romance,1241219258 +227317,3081,Tim Burton,1241219252 +227317,3081,visually appealing,1241219261 +227317,3176,based on a book,1241220512 +227317,3355,Arturo Perez-Reverte,1246205862 +227317,3355,Johnny Depp,1241220326 +227317,3355,Mystery,1241220333 +227317,3355,rare books,1300908171 +227317,3355,satanism,1241220328 +227317,3717,cars,1223737414 +227317,3948,Ben Stiller,1225220896 +227317,3948,comedy,1241219330 +227317,3948,obnoxious,1241219339 +227317,3948,Robert De Niro,1225220539 +227317,4011,boxing,1245680911 +227317,4011,Brad Pitt,1245680907 +227317,4011,british,1245680924 +227317,4011,comedy,1245680920 +227317,4011,Guy Ritchie,1245680904 +227317,4011,gypsy accent,1245680914 +227317,4016,Disney,1223819469 +227317,4016,funny,1251814100 +227317,4246,based on a book,1245680992 +227317,4246,British,1245680991 +227317,4246,chick flick,1245680989 +227317,4246,Hugh Grant,1245680987 +227317,4246,romance,1245680994 +227317,4310,World War II,1223737282 +227317,4993,based on a book,1241220462 +227317,4993,fantasy,1241220460 +227317,4995,mathematics,1225190562 +227317,4995,schizophrenia,1225190565 +227317,5069,anime,1255990666 +227317,5069,dark,1255990670 +227317,5069,Fantasy,1255990686 +227317,5069,Great movie,1255990668 +227317,5069,great visuals,1255990674 +227317,5069,The Series Was Better,1255990678 +227317,5218,animation,1241220439 +227317,5444,aliens,1357137566 +227317,5444,family,1357137569 +227317,5444,redemption,1357137571 +227317,5463,dragons,1246205780 +227317,5508,1970s,1245096583 +227317,5508,1980s,1245096592 +227317,5508,joy division,1245096598 +227317,5508,Manchester,1245096596 +227317,5508,music business,1245096638 +227317,5508,rock and roll,1245096610 +227317,5618,anime,1241219225 +227317,5618,environmental,1241219245 +227317,5618,fantasy,1241219234 +227317,5618,hallucinatory,1241219244 +227317,5618,Hayao Miyazaki,1241219232 +227317,5618,Studio Ghibli,1241219227 +227317,5690,anime,1224071816 +227317,5690,Japan,1224071813 +227317,5690,Studio Ghibli,1226145954 +227317,5690,war,1226145970 +227317,5816,alan rickman,1246205819 +227317,5816,Daniel Radcliffe,1246205821 +227317,5816,fantasy,1246205826 +227317,5816,harry potter,1246205822 +227317,5816,sequel,1246205828 +227317,5954,Edward Norton,1241220201 +227317,5954,nightclub,1241220216 +227317,5954,powerful ending,1241220212 +227317,5971,anime,1241220470 +227317,5971,Hayao Miyazaki,1241220469 +227317,5971,Studio Ghibli,1241220469 +227317,6003,biographical,1269367173 +227317,6003,Brad Pitt,1269367157 +227317,6003,Drew Barrymore,1269367151 +227317,6003,George Clooney,1269367149 +227317,6003,Julia Roberts,1269367167 +227317,6003,Sam Rockwell,1269367152 +227317,6003,television,1269367155 +227317,6350,anime,1224071758 +227317,6350,Hayao Miyazaki,1224071766 +227317,6350,Studio Ghibli,1224071755 +227317,6620,Artistic,1241220124 +227317,6620,comic books,1241220186 +227317,6620,Paul Giamatti,1241220177 +227317,6620,true story,1225562723 +227317,6807,British,1245681026 +227317,6807,hilarious,1245681023 +227317,6807,Monty Python,1245681009 +227317,6807,philosophy,1245681017 +227317,6934,action,1241364484 +227317,6934,cyberpunk,1241364510 +227317,6934,dystopia,1241364511 +227317,6934,Keanu Reeves,1241364504 +227317,6934,Monica Bellucci,1241364493 +227317,6934,Post apocalyptic,1241364491 +227317,6934,robots,1241364494 +227317,6934,sci-fi,1241364486 +227317,6934,sequel,1241364489 +227317,6934,trilogy,1241364498 +227317,6942,Alan Rickman,1245681037 +227317,6942,british,1245681039 +227317,6942,christmas,1245681043 +227317,6942,Liam Neeson,1245681049 +227317,6942,multiple storylines,1245681048 +227317,6942,Romance,1245681054 +227317,7099,anime,1241220471 +227317,7099,dystopic future,1348181996 +227317,7099,ecology,1348181999 +227317,7099,environmental,1348182000 +227317,7099,Hayao Miyazaki,1241220471 +227317,7099,post-apocalyptic,1348182003 +227317,7099,Studio Ghibli,1241220471 +227317,7155,based on a true story,1274559513 +227317,7155,Helen Mirren,1274559520 +227317,7451,High School,1352030846 +227317,7451,suprisingly clever,1352030845 +227317,7451,Tina Fey,1352030843 +227317,7451,very quotable,1352030856 +227317,8530,deafness,1265071076 +227317,8530,Emily Mortimer,1265071071 +227317,8530,Gerard Butler,1265071074 +227317,8530,scotland,1265071082 +227317,8530,single parents,1265071087 +227317,8530,tearful ending,1265071092 +227317,8604,French,1223941108 +227317,8636,action,1241364596 +227317,8636,alter ego,1241364589 +227317,8636,based on comic,1241364584 +227317,8636,sequel,1241364591 +227317,8781,brainwashing,1268690283 +227317,8781,Denzel Washington,1268690276 +227317,8781,Liev Schreiber,1268690273 +227317,8781,Meryl Streep,1268690279 +227317,8874,black comedy,1245680814 +227317,8874,British,1245680817 +227317,8874,comedy,1241220501 +227317,8874,hilarious,1245680830 +227317,8874,Simon Pegg,1245680820 +227317,8874,spoof,1245680824 +227317,8874,zombies,1241220501 +227317,8910,Dustin Hoffman,1298069448 +227317,8910,existentialism,1298069469 +227317,8910,Jason Schwartzman,1298069460 +227317,8910,Mark Wahlberg,1298069472 +227317,8910,whimsical,1298069465 +227317,8981,chat rooms,1241220058 +227317,8981,Clive Owen,1241220040 +227317,8981,divorce,1241220049 +227317,8981,Jude Law,1241220036 +227317,8981,Julia Roberts,1241220038 +227317,8981,Natalie Portman,1241220029 +227317,26662,anime,1241220447 +227317,26662,Hayao Miyazaki,1241220448 +227317,26662,Studio Ghibli,1241220449 +227317,30810,Bill Murray,1241219460 +227317,30810,Nudity (Topless),1241219464 +227317,30810,quirky,1241219478 +227317,30810,weird,1241219468 +227317,31658,anime,1241220433 +227317,31658,Hayao Miyazaki,1241220435 +227317,31658,Studio Ghibli,1241220435 +227317,32587,comic book,1241220508 +227317,32587,Quentin Tarantino,1231951865 +227317,33004,Alan Rickman,1241219696 +227317,33004,based on a book,1241219695 +227317,33004,bureaucracy,1241219708 +227317,33004,dolphins,1241219741 +227317,33004,humor,1241219699 +227317,33004,John Malkovich,1241219744 +227317,33004,sci-fi,1241219734 +227317,33004,singularity,1241219713 +227317,34150,chris evan's butt,1388346958 +227317,34326,Gus Van Sant,1223737564 +227317,34405,based on a TV show,1394407277 +227317,34405,black comedy,1394407293 +227317,34405,dystopia,1394407292 +227317,34405,sci-fi,1394407280 +227317,36363,culture clash,1246653014 +227317,36363,koo,1246653028 +227317,36363,sci-fi,1246653017 +227317,36535,beautiful scenery,1252796843 +227317,36535,colourful,1252796845 +227317,36535,culture clash,1252796833 +227317,36535,elijah wood,1252796824 +227317,36535,Eugene Hutz,1252796830 +227317,36535,Great Soundtrack,1252796868 +227317,36535,jews,1252796852 +227317,36535,literary adaptation,1252796848 +227317,37830,anime,1241219795 +227317,37830,computer animation,1241219799 +227317,37830,confusing plot,1241219805 +227317,37830,Dynamic CGI Action,1241219797 +227317,37830,final fantasy,1241219802 +227317,37830,video game adaptation,1241219810 +227317,37857,animation,1300907911 +227317,37857,children's story,1241219393 +227317,37857,circus,1241219389 +227317,37857,dreamlike,1300907906 +227317,37857,fantasy,1241219376 +227317,37857,neil gaiman,1241219363 +227317,37857,visually appealing,1241219381 +227317,38061,black comedy,1241219491 +227317,38061,fast-paced dialogue,1241219504 +227317,38061,Robert Downey Jr,1241219486 +227317,38061,satire,1241219495 +227317,40815,based on a book,1241364525 +227317,40815,big budget,1241364559 +227317,40815,dance,1241364549 +227317,40815,dragons,1241364530 +227317,40815,England,1241364527 +227317,40815,Gary Oldman,1241364544 +227317,40815,harry potter,1241364541 +227317,40815,magic,1241364555 +227317,40815,sequel,1241364538 +227317,40815,teenagers,1241364536 +227317,40815,Wizards,1241364533 +227317,40966,17th century,1307736736 +227317,40966,johnny depp,1307736732 +227317,42197,british comedy,1253832868 +227317,42197,dark comedy,1253832871 +227317,42197,Kristin Scott Thomas,1253832873 +227317,42197,Maggie Smith,1253832876 +227317,42197,Patrick Swayze,1253832881 +227317,42197,Rowan Atkinson,1253832879 +227317,44022,Animation,1241220438 +227317,44191,based on a book,1231951772 +227317,44191,comic book,1231951675 +227317,44191,dystopia,1241219150 +227317,44191,politics,1241219158 +227317,44191,thought-provoking,1241219172 +227317,44199,bank robbery,1241219545 +227317,44199,Clive Owen,1241219532 +227317,44199,Denzel Washington,1241219552 +227317,44199,intelligent thriller,1241219551 +227317,44199,twist ending,1241219538 +227317,47610,cinematography,1246207029 +227317,47610,Edward Norton,1246206994 +227317,47610,Jessica Biel,1246207021 +227317,47610,love story,1246207011 +227317,47610,magic,1246207009 +227317,47610,Paul Giamatti,1246207000 +227317,47610,twist ending,1246207001 +227317,48043,fountain of youth,1241220402 +227317,48394,dark,1245681140 +227317,48394,fairy tale,1241220486 +227317,48394,fantasy,1241220486 +227317,48394,imagination,1245681130 +227317,48394,surreal,1245681132 +227317,48394,twist ending,1245681118 +227317,48394,war,1245681136 +227317,48774,apocalypse,1358637956 +227317,48774,Clive Owen,1358637945 +227317,48774,disturbing,1358637948 +227317,48774,dystopia,1358637803 +227317,48774,survival,1358637951 +227317,48774,thought-provoking,1358637954 +227317,49130,romance,1241220413 +227317,49278,time travel,1241220380 +227317,49822,Angelina Jolie,1249336883 +227317,49822,CIA,1249336811 +227317,49822,Cold War,1249336899 +227317,49822,espionage,1249336919 +227317,49822,Lee Pace,1249336899 +227317,49822,Matt Damon,1249336817 +227317,49822,Robert De Niro,1249336817 +227317,51255,parody,1241220427 +227317,51255,Simon Pegg,1241220429 +227317,51255,surreal,1241220429 +227317,51540,based on a true story,1277422115 +227317,51540,detective,1277422113 +227317,51540,Jake Gyllenhaal,1277422110 +227317,51540,Robert Downey Jr,1277422104 +227317,51540,Robert Downey Jr.,1277422100 +227317,51540,serial killer,1277422108 +227317,51540,true story,1277422107 +227317,51834,Anne Hathaway,1241220082 +227317,51834,biography?,1241220098 +227317,51834,James McAvoy,1241220087 +227317,51834,Jane Austen,1241220085 +227317,52281,Quentin Tarantino,1225128224 +227317,52806,based on a book,1271846439 +227317,52806,fantasy,1271846442 +227317,52885,anime,1241220491 +227317,54259,based on a book,1245680726 +227317,54259,fairy tale romance,1245680743 +227317,54259,fantasy,1245680749 +227317,54259,Michelle Pfeiffer,1245680736 +227317,54259,murder,1245680760 +227317,54259,Neil Gaiman,1245680729 +227317,54259,pirates,1245680758 +227317,54259,Robert De Niro,1245680734 +227317,54259,witches,1245680753 +227317,54272,animation,1231951872 +227317,54510,disturbing,1270046973 +227317,54510,Sam Rockwell,1270046975 +227317,54510,thriller,1270046993 +227317,54771,brain sucking aliens,1247784865 +227317,54771,Daniel Craig,1247784877 +227317,54771,epidemic,1247784874 +227317,54771,Nicole Kidman,1247784871 +227317,54999,Clive Owen,1241220503 +227317,55442,animation,1247695198 +227317,55442,biography,1247695213 +227317,55442,black and white,1247695206 +227317,55442,coming of age,1247695222 +227317,55442,French,1247695250 +227317,55442,History,1247695201 +227317,55442,Iran,1247695203 +227317,55442,Middle East,1247695256 +227317,55442,politics,1247695216 +227317,56171,based on a book,1225190519 +227317,56251,animation,1261225861 +227317,56251,futurama,1261225858 +227317,56367,Ellen Page,1241219643 +227317,56367,excellent script,1241219661 +227317,56367,Jennifer Garner,1241219652 +227317,56367,notable soundtrack,1241219647 +227317,56757,19th century,1231951690 +227317,56757,based on a play,1241219206 +227317,56757,cannibalism,1241219202 +227317,56757,Johnny Depp,1241219194 +227317,56757,Musical,1241219198 +227317,56757,Tim Burton,1241219195 +227317,56757,violent,1241219215 +227317,56941,Gerard Butler,1266618445 +227317,56941,Hilary Swank,1266618447 +227317,56941,irish accent,1266618450 +227317,57464,Christian Slater,1301251742 +227317,57464,Imagination,1301251798 +227317,57464,Surreal,1301251802 +227317,57464,twist ending,1301251794 +227317,57504,Anime,1241219785 +227317,57504,time travel,1241219779 +227317,57532,Sean Maguire,1271427998 +227317,58105,bab cinema,1241364570 +227317,58105,based on a book,1231951655 +227317,58162,chick flick,1249509019 +227317,58162,Hank Azaria,1249509021 +227317,58162,Simon Pegg,1249509026 +227317,58299,based on a book,1287435505 +227317,58299,comedy,1287435489 +227317,58299,Dr. Seuss,1287435501 +227317,58299,father son relationship,1287435499 +227317,58299,happy ending,1287435496 +227317,58299,world inside another world,1287435491 +227317,58559,Batman,1241364658 +227317,58559,Christian Bale,1241364665 +227317,58559,Comic Book adaption,1241364681 +227317,58559,Gary Oldman,1241364664 +227317,58559,gritty,1241364678 +227317,58559,Heath Ledger,1241364661 +227317,58559,Maggie Gyllenhaal,1241364670 +227317,58559,Michael Caine,1241364672 +227317,58559,Morgan Freeman,1241364668 +227317,58559,serial killer,1241364674 +227317,58559,superhero,1241364688 +227317,59315,Marvel,1232816688 +227317,59315,superhero,1232816694 +227317,59387,1920s,1279673169 +227317,59387,beautiful,1279673158 +227317,59387,cinematography,1279673162 +227317,59387,fantasy,1269473581 +227317,59387,imagination,1279673165 +227317,59387,storytelling,1232645203 +227317,59387,stunning,1279673157 +227317,59387,surreal,1269473585 +227317,59387,visually stunning,1301252062 +227317,59709,Elijah Wood,1241220483 +227317,59709,Mathematics,1241220483 +227317,59784,Angelina Jolie,1241364633 +227317,59784,Dustin Hoffman,1241364630 +227317,59784,food,1241364642 +227317,59784,Jack Black,1241364626 +227317,59784,Jackie Chan,1241364615 +227317,59784,Kung Fu,1241364620 +227317,59784,martial arts,1241364652 +227317,59784,panda,1241364628 +227317,59784,unlikely hero,1241364644 +227317,60007,Doctor Who,1391194334 +227317,60040,dull,1344995492 +227317,60040,Edward Norton,1344995498 +227317,60040,Liv Tyler,1344995496 +227317,60040,Tim Roth,1344995500 +227317,60979,anime,1247749166 +227317,60979,Batman,1247749168 +227317,60979,DC Comics,1247749171 +227317,61132,ableist,1420584994 +227317,61132,Ben Stiller,1420585014 +227317,61132,movie within a movie,1420585022 +227317,61132,parody,1420584976 +227317,61132,racist,1420585003 +227317,61132,Robert Downey Jr.,1420585011 +227317,61132,Vietnam War,1420585017 +227317,62113,Gillian Anderson,1241219575 +227317,62113,Kirsten Dunst,1241219579 +227317,62113,Simon Pegg,1241219576 +227317,62336,anime,1266075937 +227317,62336,mecha,1266075944 +227317,62336,rock and roll,1266075945 +227317,62336,surreal,1266075938 +227317,63062,angelina jolie,1243982410 +227317,63062,based on a true story,1243982420 +227317,63062,period piece,1243982422 +227317,64620,based on a true story,1269279640 +227317,64620,Frank Langella,1269279646 +227317,64620,history,1269279656 +227317,64620,journalism,1269279658 +227317,64620,Kevin Bacon,1269279649 +227317,64620,Michael Sheen,1269279707 +227317,64620,Sam Rockwell,1269279642 +227317,64620,true story,1269279653 +227317,64716,Drama,1251646370 +227317,64716,Organ donor,1251646373 +227317,64716,Rosario Dawson,1251646391 +227317,64716,suicide,1251646382 +227317,64716,Will Smith,1251646374 +227317,64957,Aging Disorder,1248527925 +227317,64957,Brad Pitt,1248527929 +227317,64957,cinematography,1248527921 +227317,64957,long,1248527955 +227317,64957,romance,1248527934 +227317,64993,anime,1336406240 +227317,64993,bittersweet,1336406245 +227317,64993,coming of age,1336406249 +227317,64993,touching,1336406255 +227317,64993,visually stunning,1336406227 +227317,65126,based on a book,1252416400 +227317,65126,BDSM,1252416407 +227317,65126,Comedy,1252416403 +227317,65126,dark comedy,1252416415 +227317,65126,Jesus Christ,1252416408 +227317,65126,Sex Addict,1252416427 +227317,65359,bad adaptation,1246205802 +227317,65359,based on a book,1246205804 +227317,65359,sci-fi channel,1246205806 +227317,65642,complicated,1300908213 +227317,65642,grim,1300908216 +227317,65642,paradox,1300908224 +227317,65642,time travel,1300908222 +227317,66097,alternate universe,1246207064 +227317,66097,animation,1246207068 +227317,66097,based on a book,1246207045 +227317,66097,gothic,1246207061 +227317,66097,Neil Gaiman,1246207053 +227317,66097,Surreal,1246207056 +227317,67997,british,1278513410 +227317,67997,politics,1278513412 +227317,68073,60's,1255197692 +227317,68073,Bill Nighy,1255197690 +227317,68073,British,1255197687 +227317,68073,Philip Seymour Hoffman,1255197684 +227317,68073,pirate radio,1255197680 +227317,68073,rock and roll,1255197694 +227317,68954,adventure,1260974524 +227317,68954,computer animation,1260974527 +227317,68954,flying,1260974537 +227317,68954,heartbreaking,1260974507 +227317,68954,Pixar,1260974519 +227317,69481,intense,1346366593 +227317,69481,War,1346366588 +227317,69644,Animation,1289684892 +227317,69644,ice age,1289684900 +227317,69644,scrat,1289684914 +227317,69644,Simon Pegg,1289684888 +227317,70093,Michelle Pfeiffer,1303073424 +227317,70093,Rupert Friend,1303073418 +227317,70286,aliens,1255791308 +227317,70286,alternate history,1255791327 +227317,70286,genetics,1255791311 +227317,70286,humor,1255791314 +227317,70286,intelligent sci-fi,1255791324 +227317,70286,peter jackson,1255791321 +227317,70286,sci-fi,1255791335 +227317,70286,social commentary,1255791332 +227317,70286,South Africa,1255791317 +227317,70286,transformation,1255791318 +227317,70497,Scotland,1250500151 +227317,70802,based on a book,1251994568 +227317,70802,fantasy,1251994548 +227317,71106,future,1256921121 +227317,71106,pub,1256921123 +227317,71106,sci-fi,1256921125 +227317,71106,surreal,1256921129 +227317,71106,time travel,1256921126 +227317,71254,Gerard Butler,1264948493 +227317,71254,gratuitous violence,1264948516 +227317,71254,prison,1264948512 +227317,71254,rave,1264948503 +227317,71254,video game,1264948496 +227317,71254,virtual reality,1264948520 +227317,71535,Bill Murray,1260542226 +227317,71535,post-apocalyptic,1260542229 +227317,71579,bittersweet,1330640753 +227317,71579,coming of age,1330640740 +227317,71745,Coming of age,1264981197 +227317,71745,fantasy world,1264981205 +227317,71745,Soundtrack,1264981211 +227317,71745,touching,1264981209 +227317,72731,fantasy,1301094269 +227317,72731,Mark Wahlberg,1301094285 +227317,72731,Peter Jackson,1301094274 +227317,72731,Rachel Weisz,1301094280 +227317,72731,Rose McIver,1301094282 +227317,72731,Saoirse Ronan,1301094263 +227317,72731,Stanley Tucci,1301094266 +227317,72737,1920s,1264776798 +227317,72737,animation,1264776792 +227317,72737,New Orleans,1264776788 +227317,72737,Voodoo,1264776802 +227317,72741,family,1421921547 +227317,72998,aliens,1284736368 +227317,72998,beautiful scenery,1284736365 +227317,72998,graphic design,1284736354 +227317,72998,native americans,1284736369 +227317,72998,predictable,1284736359 +227317,72998,Sam Worthington,1284736375 +227317,72998,sci-fi,1284736361 +227317,72998,Sigourney Weaver,1284736362 +227317,73017,boring script,1267823603 +227317,73017,Guy Ritchie,1267823608 +227317,73017,Jude Law,1267823614 +227317,73017,Robert Downey Jr.,1267823638 +227317,73017,Sherlock Holmes,1267823617 +227317,74508,Jane Austen,1266683167 +227317,74508,period drama,1266683181 +227317,74553,animation,1434150359 +227317,74553,celtic,1434150368 +227317,74553,medieval,1434150364 +227317,74553,stylized,1434150362 +227317,76093,cute,1356912252 +227317,76093,dragons,1356912246 +227317,76251,funny,1298501073 +227317,76251,great soundtrack,1298501079 +227317,76251,Nicolas Cage,1298501085 +227317,76251,superhero,1298501099 +227317,76251,violence,1298501081 +227317,77561,based on a comic,1274480126 +227317,77561,Gwyneth Paltrow,1274480120 +227317,77561,Marvel,1274480128 +227317,77561,Robert Downey Jr.,1274480114 +227317,77561,Sam Rockwell,1274480116 +227317,77561,Samuel L. Jackson,1274480118 +227317,77561,Scarlett Johansson,1274480117 +227317,78105,action,1275989463 +227317,78105,adventure,1275989448 +227317,78105,based on a video game,1275989450 +227317,78105,Gemma Arterton,1275989454 +227317,78105,Jake Gyllenhaal,1275989452 +227317,78105,persia,1275989461 +227317,79132,alternate reality,1281651545 +227317,79132,dream within a dream,1281651549 +227317,79132,dreams,1281651553 +227317,79132,Leonardo DiCaprio,1281651570 +227317,79132,mindfuck,1281651556 +227317,79132,open ending,1281651563 +227317,81018,depressing without being uplifting,1305315004 +227317,81018,edinburgh,1305315011 +227317,81018,silent movie,1305315007 +227317,81516,Emum Elliott,1294085380 +227317,81847,Flynn,1294085335 +227317,82167,Anne Hathaway,1298671205 +227317,82167,Jake Gyllenhaal,1298671208 +227317,85414,Duncan Jones,1303503591 +227317,85414,Jake Gyllenhaal,1303503601 +227317,85414,parallel universe,1303503596 +227317,85414,time travel,1303503603 +227317,85438,adapted from:book,1303469451 +227317,85438,Mia Wasikowska,1303469466 +227317,85438,Michael Fassbender,1303469458 +227317,86880,Johnny Depp,1349004366 +227317,88140,Richard Armitage,1324060177 +227317,88140,watch the credits,1324060172 +227317,88163,Emma Stone,1344291651 +227317,89190,Jason Momoa,1314737538 +227317,89745,great humor,1335649409 +227317,89745,great screenplay,1336406305 +227317,89745,Iron Man,1335649420 +227317,89745,Loki,1335649424 +227317,89745,Robert Downey Jr.,1335649414 +227317,89745,superhero team,1336406300 +227317,89745,Thor,1335649416 +227317,89745,Tom Hiddleston,1336406312 +227317,89753,atmosphere,1348181018 +227317,89753,Cold War,1348181025 +227317,89753,Colin Firth,1348181027 +227317,89753,Gary Oldman,1348181011 +227317,89753,slow paced,1348181012 +227317,89753,Spies,1348181021 +227317,90403,airships,1321056634 +227317,90403,based on a book,1321056630 +227317,90403,Freddie Fox,1321056720 +227317,90403,Matthew Macfadyen,1321056618 +227317,90403,Milla Jovovich,1321056621 +227317,90403,steampunk,1321056625 +227317,90403,sword fight,1321056627 +227317,90719,biography,1331168762 +227317,90719,dull,1331168766 +227317,90933,Drama,1338332695 +227317,90933,Great acting,1338332700 +227317,90933,Rachel Weisz,1338332689 +227317,90933,Tom Hiddleston,1338332680 +227317,91126,anthropomorphic,1340049036 +227317,91126,horses,1340049028 +227317,91126,tearjerker,1340049027 +227317,91126,Tom Hiddleston,1340049015 +227317,91126,World War I,1340049020 +227317,91500,based on a book,1332616427 +227317,91500,reality TV,1332616434 +227317,91529,Anne Hathaway,1344856643 +227317,91529,Christian Bale,1344856646 +227317,91529,dark,1344856669 +227317,91529,Gary Oldman,1344856652 +227317,91529,Joseph Gordon-Levitt,1344856648 +227317,91529,Michael Caine,1344856650 +227317,91529,plot twist,1344856658 +227317,91529,Predictable,1344856654 +227317,91535,Edward Norton,1345939493 +227317,91535,Jeremy Renner,1345939483 +227317,91535,Rachel Weisz,1345939497 +227317,91535,Shaky cam,1345939500 +227317,92422,horror,1331500509 +227317,93982,Poe,1343157948 +227317,93982,serial killer,1343157942 +227317,93988,based on book,1432821359 +227317,93988,Period Drama,1432821334 +227317,93988,richard armitage,1432821342 +227317,93988,soundtrack,1432821351 +227317,94410,David Tennant,1347221269 +227317,94466,dark,1445546884 +227317,94466,dystopia,1445546882 +227317,94466,not a movie,1445546888 +227317,94466,Science fiction,1445546892 +227317,94466,social commentary,1445546895 +227317,94466,technology,1445546881 +227317,94466,thought-provoking,1445546890 +227317,94466,tv series,1445546871 +227317,94780,charlize theron,1339624191 +227317,94780,chris hemsworth,1339624186 +227317,94780,fairy tale,1339624176 +227317,94780,fantasy,1339624177 +227317,94780,Kristen Stewart,1339624172 +227317,94780,weak plot,1339624174 +227317,94864,aliens,1339876336 +227317,94864,Idris Elba,1339876333 +227317,94864,Michael Fassbender,1339876328 +227317,95167,coming of age,1345334502 +227317,95167,Kick-Butt Women,1345334491 +227317,95167,mother-daughter relationships,1345334493 +227317,95167,No Marriage at the End,1345334490 +227317,95167,Scotland,1345334496 +227317,95309,depressing,1349702349 +227317,95309,Keira Knightley,1349702356 +227317,95309,romantic plot,1349702364 +227317,95309,Steve Carell,1349702354 +227317,95449,bad acting,1342269329 +227317,95449,dancing,1342269352 +227317,95449,strippers,1342269320 +227317,95510,Andrew Garfield,1341694392 +227317,95510,Emma Stone,1341694394 +227317,95510,Reboot,1341694403 +227317,95510,Spider-Man,1341694399 +227317,96588,Funny,1357951888 +227317,96588,musical,1357951893 +227317,97024,disability,1382268565 +227317,97024,Marion Cotillard,1382268561 +227317,97304,espionage,1362788314 +227317,97304,funny,1362788309 +227317,102125,Ben Kingsley,1367010962 +227317,102125,Gwyneth Paltrow,1367010969 +227317,102125,humour,1367010965 +227317,102125,Robert Downey Jr.,1367010961 +227317,102445,Benedict Cumberbatch,1370805969 +227317,102445,J.J. Abrams,1370805956 +227317,102445,predictable,1370805954 +227317,102445,Simon Pegg,1370805951 +227317,106072,Quirky,1384046444 +227317,106441,adapted from:book,1390682896 +227317,106441,narration,1390682898 +227317,106489,based on a book,1388087006 +227317,106489,Evangeline Lilly,1388087014 +227317,106642,Doctor Who,1391194303 +227317,106916,amy adams,1431856822 +227317,106916,Christian Bale,1431856813 +227317,106916,Jennifer Lawrence,1431856818 +227317,106916,Jeremy Renner,1431856832 +227317,106916,Louis C.K.,1431856835 +227317,106916,politics,1431856826 +227317,107406,chris evans,1407535681 +227317,107406,dystopia,1407535685 +227317,107406,post-apocalyptic,1407535686 +227317,107406,social commentary,1407535689 +227317,107406,tilda swinton,1407535688 +227317,110102,Anthony Mackie,1396990813 +227317,110102,Captain America,1396990802 +227317,110102,Chris Evans,1396990786 +227317,110102,Scarlett Johansson,1396990790 +227317,110102,superhero,1396990793 +227317,111659,Angelina Jolie,1402776555 +227317,111659,fairy tale,1402776557 +227317,112852,great soundtrack,1408228693 +227317,112852,Marvel Cinematic Universe,1408228696 +227317,114033,richard armitage,1410564276 +227317,114033,tornado,1416176242 +227317,115617,Disney,1420916467 +227317,115617,superhero,1420916473 +227317,117444,animation,1442785899 +227317,117444,family,1442785928 +227317,117444,Folklore,1442785907 +227317,117444,ireland,1442785917 +227317,117444,selkies,1442785919 +227317,120132,remake,1451089413 +227317,134368,melissa mccarthy,1434054700 +227317,138036,humour,1443913552 +227317,138036,spy,1443913551 +227328,260,fantasy,1443614478 +227328,260,Science Fiction,1443614473 +227334,296,great soundtrack,1197056093 +227334,427,Nudity (Topless - Notable),1299025021 +227334,1194,marijuana,1197055736 +227334,1252,Los Angeles,1145297700 +227334,1298,psychedelic,1197056204 +227334,1732,cameos,1197055402 +227334,1732,Highly quotable,1197055229 +227334,1732,marijuana,1197055308 +227334,4209,drugs,1433435880 +227334,4209,emilio estevez,1433435880 +227334,4209,porn industry,1433435880 +227334,6807,meaning of life,1197056592 +227334,25764,Buster Keaton,1192576035 +227334,36535,artsy,1256163367 +227334,36535,beautiful scenery,1256163366 +227334,36535,broken English,1256163391 +227334,36535,dog,1256163394 +227334,36535,Eugene Hutz,1256163349 +227334,36535,ukraine,1256163349 +227334,55444,black and white,1196726136 +227334,55444,Cannes Film Festival,1196727884 +227334,55444,Cannes: Camera d'Or,1196727910 +227334,55444,epilepsy,1196726303 +227334,55444,EXTRAMARITAL AFFAIRS,1196726363 +227334,55444,hanging,1196726407 +227334,55444,marriage,1196726458 +227334,55444,music,1196726197 +227334,55444,rock and roll,1196726319 +227334,55444,suicide,1196726278 +227334,55814,anti-Hollywood,1200598676 +227334,55814,based on a book,1200598519 +227334,55814,disability,1200598519 +227334,55814,father-son relationship,1200598519 +227334,55814,flashbacks,1200598519 +227334,55814,Golden Globe winner,1200598598 +227334,55814,hospital,1200598519 +227334,55814,marriage,1200598519 +227334,55814,mistress,1200598519 +227334,55814,paralysis,1200598519 +227334,55814,therapist,1200598519 +227334,55814,true story,1200598255 +227334,55820,BOUNTY HUNTERS,1197568343 +227334,55820,twist ending,1197568421 +227334,56003,apocalypse,1196882219 +227334,56003,confusing,1196882541 +227334,56003,drugs,1196889472 +227334,56003,FUTURE DYSTOPIAS,1196882299 +227334,56003,Los Angeles,1196882393 +227334,56003,puzzling,1196882524 +227334,56003,religion,1197054632 +227334,56003,santa monica,1196882416 +227334,56003,santa monica pier,1196882424 +227334,56003,time travel,1196882239 +227334,56003,venice beach,1196882448 +227334,56003,weird,1196882517 +227334,56715,quirky,1256163511 +227334,56782,based on a book,1200592096 +227334,56782,father-son relationship,1200592123 +227334,56782,greed,1200592023 +227334,56782,mining,1200592065 +227334,56782,murder,1200591981 +227334,56782,oil,1200592046 +227334,56782,religion,1200592013 +227334,57368,monster,1201471917 +227334,71518,rollerderby,1268779165 +227334,96868,documentary,1426999504 +227334,96868,music,1426999504 +227334,96868,rock and roll,1426999504 +227358,260,sci-fi,1435255989 +227358,260,Space,1435255981 +227376,55908,cult film,1289687202 +227377,260,Fighting,1440366511 +227377,260,Swordfights,1440366500 +227385,6902,funny,1316987361 +227385,6902,life lessons,1316987356 +227385,6902,positive,1316987368 +227385,6902,romantic,1316987364 +227385,6902,special,1316987378 +227385,108190,predictable,1397859683 +227385,108190,surreal,1397856880 +227400,5010,war,1299193342 +227423,34,favorite,1264380173 +227423,34,talking animals,1264380173 +227423,34,that'll do pig,1264380173 +227423,253,costumes,1264380907 +227423,316,Egyptian Mythology,1264379932 +227423,316,james spader,1264379932 +227423,316,kurt russell < RDA,1264379932 +227423,316,space,1264379932 +227423,550,comedy,1264378417 +227423,550,friendship,1264378417 +227423,550,group sex,1264378417 +227423,550,love triangle not threesome,1264378417 +227423,550,poor gay dude,1264378417 +227423,780,Mary McDonnell,1264380318 +227423,780,so bad it's awesome,1264380318 +227423,780,will smith,1264380318 +227423,1197,classic,1264379245 +227423,1197,clever,1264379245 +227423,1197,hilarious,1264379245 +227423,1197,quotable,1264379245 +227423,1197,unlikable love interest,1264379245 +227423,1246,heartbreaking,1264381417 +227423,1246,iconic,1264381417 +227423,1246,Robert Sean Leonard,1264381417 +227423,1527,silly but good,1264381258 +227423,1580,aliens,1264379830 +227423,1580,quotable,1264379830 +227423,1580,so bad it's good,1264379830 +227423,1580,Tommy Lee Jones,1264379830 +227423,1580,will smith,1264379830 +227423,1704,didn't deserve Oscar,1264380759 +227423,1917,bad but enjoyable,1264380783 +227423,2125,Anjelica Huston,1264379160 +227423,2125,costumes,1264379160 +227423,2125,drew barrymore,1264379160 +227423,2125,fairy tale,1264379160 +227423,2125,historically inaccurate,1264379160 +227423,2125,romantic,1264379160 +227423,2571,keanu reeves,1264380140 +227423,2571,philosophy,1264380140 +227423,2571,too many sequels,1264380140 +227423,2572,clever writing,1264378039 +227423,2572,heath ledger,1264378039 +227423,2572,inspired by shakespeare,1264378039 +227423,2716,classic,1264380347 +227423,2716,hilarious,1264380347 +227423,2716,quotable,1264380347 +227423,2959,dark comedy,1264379568 +227423,2959,interesting,1264379568 +227423,2959,overrated,1264379568 +227423,2959,pretentious,1264379568 +227423,2959,quotable,1264379568 +227423,3000,classic,1264379441 +227423,3000,gorgeous,1264379441 +227423,3000,talking animals,1264379441 +227423,3175,hilarious!,1264381441 +227423,3175,parody,1264381441 +227423,3996,atmospheric,1264379623 +227423,3996,beautifully filmed,1264379623 +227423,4226,favorite,1264378634 +227423,4226,nonlinear,1264378634 +227423,4226,twist ending,1264378634 +227423,4878,confusing,1264380867 +227423,4878,cult classic,1264380867 +227423,4878,Mary McDonnell,1264380867 +227423,4878,overrated,1264380867 +227423,4878,quotable,1264380867 +227423,4878,time travel,1264380867 +227423,4963,eye candy,1264380580 +227423,4963,fun,1264380581 +227423,4993,atmospheric,1264380421 +227423,4993,beautifully filmed,1264380421 +227423,4993,costumes,1264380421 +227423,4993,gorgeous,1264380421 +227423,4993,too much walking,1264380421 +227423,5952,action,1264380538 +227423,5952,best of the trilogy,1264380538 +227423,5952,costumes,1264380537 +227423,6502,fast zombies,1264378198 +227423,6502,pandemic,1264378198 +227423,6502,scary as hell,1264378198 +227423,6539,overrated,1264379694 +227423,6539,too many sequels,1264379694 +227423,8784,manic pixie dream girl,1264381173 +227423,8784,overrated,1264381173 +227423,43744,cute,1264378704 +227423,43744,lena headey,1264378704 +227423,43744,lesbian,1264378704 +227423,43744,not believable,1264378704 +227423,43744,romance,1264378704 +227423,43744,sucked for the husband,1264378703 +227423,45722,unnecessary sequel,1264380646 +227423,54259,atmospheric,1264379502 +227423,54259,costumes,1264379502 +227423,63992,horrible,1264379317 +227423,63992,I think i'm going to vomit,1264379317 +227423,63992,kristen stewart,1264379317 +227423,63992,vampires do not sparkle,1264379317 +227423,68358,black holes don't work like that,1264380045 +227423,68358,enjoyable,1264380046 +227423,68358,fun,1264380046 +227423,68358,good casting,1264380046 +227423,68358,lense flare,1264380046 +227423,68554,dan brown,1264377927 +227423,68554,ewan mcgregor,1264377927 +227423,70599,book is better,1264378301 +227423,70599,eric bana,1264378301 +227423,70599,rachel mcadams,1264378301 +227423,71106,fizzles out,1264378866 +227423,71106,friendship,1264378866 +227423,71106,funny,1264378866 +227423,71106,inconsistent,1264378866 +227423,71106,time travel,1264378866 +227423,71106,weird pacing,1264378866 +227423,72407,bad acting,1264379384 +227423,72407,bad cgi,1264379384 +227423,72407,kristen stewart,1264379384 +227423,72407,sexism and stupidity,1264379384 +227423,72407,vampires do not sparkle,1264379384 +227423,72998,effects,1264377897 +227423,72998,race issues,1264377897 +227423,73017,costumes,1264379058 +227423,73017,dialogue,1264379058 +227423,73017,fun,1264379059 +227423,73017,homoerotic subtext,1264379058 +227423,73017,pacing,1264379058 +227423,73017,plot,1264379058 +227450,14,biography,1188573495 +227450,198,futuristic,1188573290 +227450,277,holiday,1188573369 +227450,372,gen-x,1188573429 +227450,468,chick flick,1188573411 +227450,914,classic,1188573376 +227450,1042,tom hanks,1188573440 +227450,1088,chick flick,1188573263 +227450,1120,pornography,1188573394 +227450,1179,caper,1188573484 +227450,1188,competition,1188573452 +227450,1231,space,1188573457 +227450,1747,POLITICAL,1188573302 +227450,1994,clowns,1188573421 +227450,2701,cartman,1188573328 +227450,2915,dancing,1188573508 +227450,3752,absurd,1188573526 +227450,3755,weather,1188573401 +227450,3911,improvised,1188573349 +227450,4246,chick flick,1188573256 +227450,5377,chick flick,1188573468 +227450,5679,horror,1188573498 +227450,6934,trilogy,1188573490 +227450,7147,weird,1188573476 +227450,32587,stylized,1188573513 +227453,260,classic,1436712504 +227453,260,sci-fi,1436712504 +227453,260,star wars,1436712504 +227453,318,drama,1435088195 +227453,318,prison escape,1435088195 +227453,318,wrongly convicted,1435088195 +227456,1682,alone in the world,1453546902 +227456,1682,cerebral,1453546998 +227456,1682,dark comedy,1453546916 +227456,1682,dreamlike,1453547335 +227456,1682,fantasy,1453546898 +227456,1682,island,1453547262 +227456,1682,Jim Carrey,1453546910 +227456,1682,original plot,1453546952 +227456,1682,philosophy,1453546894 +227456,1682,romance,1453548037 +227456,1682,social commentary,1453546955 +227456,1682,surveillance,1453547050 +227456,1682,television,1453547269 +227456,1682,touching,1453548055 +227456,1682,witty,1453546937 +227456,2115,adventure,1449394041 +227456,2617,Brendan Fraser,1438010583 +227456,2617,Rachel Weisz,1438010570 +227456,2716,comedy,1449394087 +227456,4014,chocolate,1453561838 +227456,4014,colourful,1453562006 +227456,4014,delicious,1453561960 +227456,4014,food/cooking,1453561833 +227456,4014,French,1453561827 +227456,4014,good music,1453561917 +227456,4014,Johnny Depp,1453561818 +227456,4014,love,1453561989 +227456,4014,pleasure,1453561948 +227456,4014,Quirky,1453562028 +227456,4014,small town,1453561824 +227456,4014,sweet,1453561849 +227456,4299,medieval,1449394438 +227456,4993,Action,1438009424 +227456,4993,Adventure,1438009420 +227456,4993,fantasy,1438009449 +227456,4993,music,1438009438 +227456,5364,erotic,1449394894 +227456,5364,sensual,1449394904 +227456,5364,sexy,1449394905 +227456,5952,Adventure,1449394656 +227456,5952,atmospheric,1449394645 +227456,5952,fantasy world,1449394662 +227456,5952,great soundtrack,1449394640 +227456,5952,magic,1449394655 +227456,5952,multiple storylines,1449394648 +227456,5952,trilogy,1449394668 +227456,5952,war,1449394651 +227456,6373,comedy,1438009995 +227456,6373,fantasy,1449394541 +227456,6373,funny,1438010002 +227456,6373,jennifer aniston,1438009984 +227456,6373,Jim Carrey,1438009986 +227456,6373,religion,1449394543 +227456,7361,awful,1453561582 +227456,7361,jim carrey,1453561597 +227456,8533,Rachel McAdams,1438009337 +227456,8533,romance,1438009325 +227456,47610,love story,1449394368 +227456,47610,magic,1449394358 +227456,47610,predictable,1449394383 +227456,47610,romance,1449394371 +227456,47610,sex scene,1449394355 +227456,47610,surprise ending,1449394367 +227456,51086,Jim Carrey,1453561681 +227456,51086,memory loss,1453561778 +227456,51086,psychology,1449394579 +227456,51086,twist,1453561768 +227456,63062,angelina jolie,1453560021 +227456,63062,emotional,1453560028 +227456,63062,insightful,1453560459 +227456,63062,truthful,1453560382 +227456,63062,unpredictable,1453560663 +227456,64969,funny,1453560731 +227456,64969,Jim carrey,1453560729 +227456,64969,optimism,1453560735 +227456,64969,positive thinking,1453560746 +227456,64969,romantic comedy,1453560781 +227456,64969,Zooey Deschanel,1453560727 +227456,79357,good music,1453562507 +227456,79357,Jared Leto,1438009663 +227456,79357,nonlinear,1438009677 +227456,79357,philosophy,1438009678 +227456,79357,plot,1453562516 +227456,79357,romance,1438009670 +227456,79357,time travel,1438009660 +227456,80969,atmospheric,1453561282 +227456,80969,depressing,1453561239 +227456,80969,dystopia,1453561285 +227456,80969,emotional,1453561244 +227456,80969,love story,1453561311 +227456,80969,sad,1453561242 +227456,82202,Angelina Jolie,1449393999 +227456,82202,Johnny Depp,1449393994 +227456,85367,Adam Sandler,1449394464 +227456,85367,funny,1449394478 +227456,85367,Jennifer Aniston,1449394461 +227456,88179,Anne Hathaway,1453562335 +227456,88179,emotional,1453562354 +227456,88179,falling in love,1453562342 +227456,88179,friendship,1453562338 +227456,88179,romance,1453562336 +227456,88405,happy ending,1449394855 +227456,88405,love story,1449394849 +227456,88405,Mila Kunis,1449394839 +227456,88405,predictable,1449394858 +227456,88405,romance,1449394845 +227456,88405,sex,1449394842 +227456,92259,acting,1437549362 +227456,92259,art,1437549339 +227456,92259,emotional,1437549325 +227456,92259,friendship,1437549258 +227456,92259,funny,1437549269 +227456,92259,paralysis,1437549332 +227456,92259,rich and poor,1437549368 +227456,92259,soundtrack,1437549230 +227456,92259,touching,1437549268 +227456,93326,spy,1449394022 +227456,94466,dystopia,1453546680 +227456,94466,Science fiction,1453546223 +227456,94466,series,1453546733 +227456,94466,social commentary,1453546684 +227456,94466,technology,1453546302 +227456,97938,animals,1438009579 +227456,97938,India,1438009572 +227456,97938,ocean,1438009575 +227456,99007,horrible,1453562279 +227456,99007,zombies,1453562249 +227456,99114,good soundtrack,1449393705 +227456,99114,Humour,1449393697 +227456,99114,Leonardo DiCaprio,1449393685 +227456,99114,Quentin Tarantino,1449394125 +227456,102407,beautiful,1453561156 +227456,102407,dance,1453561139 +227456,102407,disappointing,1453561199 +227456,102407,hope,1453560999 +227456,102407,jazz,1453561006 +227456,102407,Leonardo DiCaprio,1453560947 +227456,102407,Modern music,1453560954 +227456,102407,motivating,1453561018 +227456,102407,vulgarity,1453561111 +227456,104913,boring,1453559946 +227456,104913,cars,1453559892 +227456,104913,Ferrari,1453559907 +227456,104913,racing,1453559895 +227456,104913,sports,1453559960 +227456,109487,ambitious,1437549556 +227456,109487,Anne Hathaway,1437549498 +227456,109487,interesting ideea,1437549554 +227456,109487,Matthew McConaughey,1437549439 +227456,109487,Michael Caine,1437549501 +227456,109487,sentimental,1437549549 +227456,116897,dark humor,1453548414 +227456,116897,short stories,1453548503 +227456,129354,Will Smith,1438008959 +227456,134853,cartoon,1453559535 +227456,134853,comedy,1453559713 +227456,134853,creative,1453559697 +227456,134853,emotions,1453559585 +227456,134853,fun,1453559650 +227456,134853,funny,1453559551 +227456,134853,Pixar,1453559587 +227456,134853,psychology,1453559477 +227456,134853,San Francisco,1453559484 +227456,146329,Insightful,1453562652 +227458,260,space action,1443678015 +227458,260,space epic,1443678022 +227478,42721,slash,1206532745 +227512,527,holocaust,1157991687 +227512,595,Disney,1157991710 +227512,2762,ghosts,1157991775 +227512,2997,surrealism,1157991749 +227512,3949,depressing,1157991735 +227512,4226,mystery,1157991728 +227512,4239,Johnny Depp,1157991721 +227512,6016,crime,1157990608 +227512,6016,drugs,1157990605 +227512,6016,great director,1157990615 +227512,6016,Tragedy,1157990613 +227512,6016,wartime,1157990620 +227516,260,action,1442933774 +227516,260,Science Fiction,1442933782 +227540,260,classic,1443018003 +227540,260,sci-fi,1443018017 +227556,48516,almost favourite,1195676360 +227597,539,soundtrack,1212197539 +227597,1339,Flawed,1138067075 +227597,1391,Lame ending,1138066950 +227597,1396,weak ending,1138067020 +227597,1500,super-hero,1138064747 +227597,1958,3 tissues,1138066790 +227597,5945,Depressing,1138066646 +227597,39183,Tragedy,1138065892 +227597,40819,country music,1138066078 +227597,55995,animation,1212192394 +227616,260,classic sci-fi,1437139554 +227616,260,"imaginary world, characters, story, philosophical",1437139587 +227616,260,special effects,1437139570 +227616,52885,android(s)/cyborg(s),1437233492 +227616,52885,female heroine,1437233492 +227616,52885,japan,1437233492 +227622,296,cult film,1423740158 +227622,296,great script,1423740158 +227622,296,great soundtrack,1423740158 +227641,27660,anime,1233533562 +227642,260,sci-fi,1439868842 +227642,260,space adventure,1439868848 +227650,48780,twist ending,1359239103 +227662,1210,great soundtrack,1444648704 +227662,1210,sci-fi,1444648687 +227662,1210,space,1444648692 +227662,1210,space opera,1444648705 +227662,1210,Star Wars,1444648689 +227662,5418,action,1444648260 +227662,5418,based on a book,1444648275 +227662,5418,car chase,1444648271 +227662,5418,Matt Damon,1444648256 +227662,5418,realistic action,1444648278 +227662,5418,thriller,1444648268 +227662,8665,action,1444648223 +227662,8665,car chase,1444648219 +227662,8665,Matt Damon,1444648215 +227662,8665,realistic action,1444648225 +227662,81847,animation,1444648164 +227662,104097,family,1444648195 +227662,104097,mlp,1444648038 +227662,106642,Doctor Who,1444648487 +227662,106642,sci-fi,1444648493 +227662,106642,Science fiction,1444648490 +227662,141452,Animation,1440684832 +227662,141452,Anime,1444648117 +227662,141452,Comedy,1440684739 +227662,141452,Drama,1440684753 +227662,141452,Romance,1440684693 +227662,141452,Slice of life,1440684709 +227726,3038,WORK ETHICS,1179877829 +227729,2571,martial arts,1379448762 +227729,2571,sci-fi,1379448752 +227729,2571,thought-provoking,1379448756 +227729,2916,alternate reality,1379448817 +227729,2916,sci-fi,1379448824 +227729,2916,virtual reality,1379448829 +227729,3307,beautiful,1379453657 +227729,3307,bittersweet,1379453665 +227729,3307,Charlie Chaplin,1379453654 +227729,3307,romance,1379453677 +227729,3307,silent movie,1379453672 +227729,3310,Charles Chaplin,1379453696 +227729,4873,philosophy,1384629355 +227729,4873,thought-provoking,1384629360 +227729,4874,Kevin Spacey,1379449453 +227729,4874,sci-fi,1379449458 +227729,86882,bittersweet,1379453580 +227729,86882,Paris,1379453571 +227729,86882,thought-provoking,1379453567 +227729,86882,Woody Allen,1379453550 +227745,318,determination,1424040177 +227745,318,intelligent,1424040177 +227745,318,oscar (best picture),1424040177 +227745,81847,comedy,1424040077 +227745,84954,Matt Damon,1424040035 +227748,185,hackers,1442269662 +227748,185,internet,1442269656 +227748,185,Sandra Bullock,1442269651 +227748,72641,Sandra Bullock,1442269710 +227748,116797,true,1442269741 +227782,32,Brad Pitt,1167911602 +227782,70,cult film,1167846816 +227782,70,Quentin Tarantino,1167846829 +227782,89,Johnny Depp,1167909594 +227782,199,bittersweet,1218317680 +227782,199,Catherine Deneuve,1218317732 +227782,199,Golden Palm,1218317754 +227782,199,musical,1218317732 +227782,199,Nino Castelnuovo,1218317732 +227782,235,Johnny Depp,1167909506 +227782,235,Tim Burton,1167909508 +227782,253,Brad Pitt,1167904562 +227782,253,Kirsten Dunst,1167904582 +227782,253,My DVDs,1167908108 +227782,253,Tom Cruise,1167904566 +227782,293,Gary Oldman,1185804615 +227782,293,Jean Reno,1185804619 +227782,293,Luc Besson,1185804611 +227782,293,Natalie Portman,1185804577 +227782,293,unique,1185804634 +227782,296,John Travolta,1167908160 +227782,296,My DVDs,1167908151 +227782,296,Quentin Tarantino,1167846857 +227782,296,Uma Thurman,1167846947 +227782,337,Johnny Depp,1167909499 +227782,348,Johnny Depp,1167909569 +227782,353,bird guardian spirit,1200473832 +227782,353,Brandon Lee,1167912341 +227782,353,gothic,1167912341 +227782,353,My DVDs,1200473828 +227782,356,need to buy,1167910958 +227782,356,Tom Hanks,1167910940 +227782,541,Harrison Ford,1169445689 +227782,541,Ridley Scott,1169445692 +227782,541,sci-fi,1169445698 +227782,551,Danny Elfman,1200474850 +227782,551,gothic,1200474801 +227782,551,Halloween theme,1200474798 +227782,551,My DVDs,1200474850 +227782,551,Tim Burton,1200474850 +227782,593,Anthony Hopkins,1167845775 +227782,593,Jodie Foster,1167845775 +227782,593,My DVDs,1167908520 +227782,648,Tom Cruise,1167911123 +227782,714,Johnny Depp,1167909578 +227782,858,Al Pacino,1185803766 +227782,858,Francis Ford Coppola,1185803764 +227782,858,Marlon Brando,1185803805 +227782,858,need to buy,1167908579 +227782,1073,brilliant,1172912429 +227782,1073,Johnny Depp,1172912429 +227782,1073,need to buy,1172912429 +227782,1089,My DVDs,1167905046 +227782,1089,Quentin Tarantino (special guest director),1167905046 +227782,1193,Jack Nicholson,1167909376 +227782,1213,mafia,1185803587 +227782,1213,Martin Scorsese,1185803635 +227782,1213,My DVDs,1200474563 +227782,1213,need to see,1200474563 +227782,1213,Ray Liotta,1185803635 +227782,1213,Robert De Niro,1185803635 +227782,1213,Samuel L. Jackson,1185803635 +227782,1221,Al Pacino,1185803768 +227782,1221,Francis Ford Coppola,1185803763 +227782,1221,need to buy,1167908566 +227782,1246,Robin Williams,1184835325 +227782,1246,school,1184835327 +227782,1333,Alfred Hitchcock,1167910275 +227782,1333,My DVDs,1167910438 +227782,1333,Rod Taylor,1167910297 +227782,1333,Tippi Hedren,1167910297 +227782,1339,Anthony Hopkins,1167904642 +227782,1339,Gary Oldman,1167904642 +227782,1339,Keanu Reeves,1167904642 +227782,1339,My DVDs,1167904622 +227782,1339,vampires,1172835932 +227782,1393,Tom Cruise,1167911099 +227782,1441,Johnny Depp,1167909556 +227782,1466,Johnny Depp,1167909581 +227782,1466,My DVDs,1200474533 +227782,1527,Gary Oldman,1167846437 +227782,1527,Luc Besson,1167846415 +227782,1527,Milla Jovovich,1167846437 +227782,1527,My DVDs,1200474101 +227782,1527,sci-fi,1167846419 +227782,1619,Brad Pitt,1167909807 +227782,1619,My DVDs,1200474196 +227782,1704,Matt Damon,1200474368 +227782,1704,my DVDs,1200474368 +227782,1704,need to see,1200474367 +227782,1704,Robin Williams,1200474368 +227782,1729,My DVDs,1167904998 +227782,1729,Quentin Tarantino,1167846804 +227782,1748,fantasy,1167846490 +227782,1748,Jennifer Connelly,1167846599 +227782,1748,Kiefer Sutherland,1167846599 +227782,1748,My DVDs,1200474116 +227782,1748,sci-fi,1167846487 +227782,1835,Meg Ryan,1167912248 +227782,1835,Nicholas Cage,1167912260 +227782,1884,Johnny Depp,1167909514 +227782,2006,Anthony Hopkins,1167847218 +227782,2006,Antinio Banderas,1167847218 +227782,2006,Catherine Zeta-Jones,1167847218 +227782,2023,Al Pacino,1185803770 +227782,2023,Francis Ford Coppola,1185803761 +227782,2023,need to buy,1185803782 +227782,2076,David Lynch,1182146517 +227782,2076,Isabella Rosselini,1182146517 +227782,2174,Tim Burton,1167909689 +227782,2231,Edward Norton,1167912382 +227782,2231,Matt Damon,1167912381 +227782,2291,fantasy,1167846680 +227782,2291,Johnny Depp,1167846678 +227782,2291,My DVDs,1200474463 +227782,2291,Tim Burton,1167846675 +227782,2605,Catherine Zeta-Jones,1167911811 +227782,2605,Sean Connery,1167911809 +227782,2712,Stanley Kubrick,1167911105 +227782,2719,Catherine Zeta-Jones,1167909866 +227782,2719,Liam Neeson,1167909907 +227782,2719,My DVDs,1167909915 +227782,2762,Bruce Willis,1167847349 +227782,2762,M. Night Shyamalan,1167847388 +227782,2959,Brad Pitt,1167909157 +227782,2959,David Fincher,1167909192 +227782,2959,Edward Norton,1167909155 +227782,2959,Helena Bonham Carter,1167909192 +227782,2959,My DVDs,1167909192 +227782,2987,My DVDs,1200473894 +227782,3000,anime,1167846030 +227782,3000,Hayao Miyazaki,1167846053 +227782,3000,My DVDs,1200474991 +227782,3000,Studio Ghibli,1167846035 +227782,3052,Ben Affleck,1167910052 +227782,3052,Matt Damon,1167910052 +227782,3052,My DVDs,1167910052 +227782,3052,Salma Hayek,1167910052 +227782,3160,John C. Reilly,1167910241 +227782,3160,Julianne Moore,1167910241 +227782,3160,My DVDs,1167910456 +227782,3160,Paul Thomas Anderson,1167910255 +227782,3160,Philip Seymour Hoffman,1167910080 +227782,3160,Tom Cruise,1167910176 +227782,3186,Angelina Jolie,1167912171 +227782,3481,Catherine Zeta-Jones,1167911723 +227782,3481,Jack Black,1167911723 +227782,3481,John Cusack,1167911710 +227782,3481,need to buy,1167911723 +227782,3556,Sophia Coppola,1184835360 +227782,3581,drugs,1167846647 +227782,3581,My DVDs,1200474395 +227782,3717,Angelina Jolie,1167912201 +227782,3717,Nicholas Cage,1167912201 +227782,3949,drugs,1167846358 +227782,3949,Ellen Burstyn,1167846382 +227782,3949,Jared Leto,1167846362 +227782,3949,Jennifer Connelly,1167846382 +227782,3949,My DVDs,1200474081 +227782,3994,Bruce Willis,1167847403 +227782,3994,M. Night Shyamalan,1167847409 +227782,4014,Johnny Depp,1167909573 +227782,4034,Benicio Del Toro,1167911759 +227782,4034,Catherine Zeta-Jones,1167911739 +227782,4034,drugs,1167911730 +227782,4034,Michael Douglas,1167911784 +227782,4034,Steven Soderbergh,1167911732 +227782,4148,Anthony Hopkins,1167845729 +227782,4148,Gary Oldman,1167908421 +227782,4148,Julianne Moore,1167908406 +227782,4148,My DVDs,1167908434 +227782,4161,Brad Pitt,1167911650 +227782,4239,drugs,1167909554 +227782,4239,Johnny Depp,1167909551 +227782,4308,Baz Luhrmann,1167904858 +227782,4308,Ewan McGregor,1167904823 +227782,4308,musical,1167904857 +227782,4308,My DVDs,1167904919 +227782,4308,Nicole Kidman,1167904821 +227782,4350,Peter Jackson,1184836044 +227782,4370,Steven Spielberg,1172912564 +227782,4677,Tom Hanks,1167911030 +227782,4699,Angelina Jolie,1167912099 +227782,4699,Antonio Banderas,1167912108 +227782,4720,ghosts,1167911250 +227782,4720,need to buy,1167911265 +227782,4720,Nicole Kidman,1167911257 +227782,4720,twist ending,1167911252 +227782,4865,Johnny Depp,1167909558 +227782,4963,Brad Pitt,1167911588 +227782,4963,George Clooney,1167911579 +227782,4963,need to buy,1167911588 +227782,4973,Audrey Tautou,1167909282 +227782,4973,France,1167909299 +227782,4973,Jean-Pierre Jeunet,1167909292 +227782,4973,My DVDs,1200474033 +227782,4975,Tom Cruise,1167911097 +227782,4993,fantasy,1167909432 +227782,4993,Peter Jackson,1167909423 +227782,5015,Billy Bob Thornton,1184835504 +227782,5015,Halle Berry,1184835504 +227782,5015,prison drama,1184835504 +227782,5081,Nicole Kidman,1167911286 +227782,5128,Aaliyah,1167909838 +227782,5128,My DVDs,1167909942 +227782,5128,Stuart Townsend,1167909839 +227782,5128,Vampires,1167909843 +227782,5266,Jodie Foster,1172913001 +227782,5445,Tom Cruise,1167911093 +227782,5502,Joaquin Phoenix,1167904510 +227782,5502,M. Night Shyamalan,1167904516 +227782,5574,cars,1185804952 +227782,5574,Good action,1185804885 +227782,5574,Jason Statham,1185804920 +227782,5618,anime,1167846123 +227782,5618,Hayao Miyazaki,1167846126 +227782,5618,My DVDs,1167908697 +227782,5618,Studio Ghibli,1167846145 +227782,5630,Edward Norton,1167845801 +227782,5630,Hannibal Lecter,1167845796 +227782,5630,My DVDs,1167908319 +227782,5690,anime,1167908888 +227782,5690,Miyazaki,1184834869 +227782,5690,need to buy,1200475142 +227782,5690,Studio Ghibli,1200475145 +227782,5903,Christian Bale,1167912426 +227782,5952,fantasy,1167909429 +227782,5952,Peter Jackson,1167909427 +227782,5956,Leonardo DiCaprio,1167907666 +227782,5956,Martin Scorsese,1167907664 +227782,5971,anime,1167845853 +227782,5971,Hayao Miyazaki,1167845858 +227782,5971,My DVDs,1200474957 +227782,5971,Studio Ghibli,1167845871 +227782,5989,Leonardo DiCaprio,1167911003 +227782,5989,My DVDs,1200474315 +227782,5989,Tom Hanks,1167911001 +227782,5991,Catherine Zeta-Jones,1167910422 +227782,5991,jazz,1167911747 +227782,5991,John C. Reilly,1167910422 +227782,5991,musical,1167910422 +227782,5991,My DVDs,1167910422 +227782,5991,Renèe Zellweger,1167910422 +227782,5991,Richard Gere,1167910422 +227782,6003,Drew Barrymore,1169445653 +227782,6003,Sam Rockwell,1169445653 +227782,6281,Colin Farrell,1167912926 +227782,6281,Kiefer Sutherland,1167912926 +227782,6350,anime,1167908816 +227782,6350,Hayao Miyazaki,1167908820 +227782,6350,Studio Ghibli,1167908824 +227782,6377,animation,1167910577 +227782,6377,My DVDs,1167910581 +227782,6377,Pixar,1167910575 +227782,6378,brilliant,1172838472 +227782,6378,Charlize Theron,1172838473 +227782,6378,Edward Norton,1172838473 +227782,6378,Mark Wahlberg,1172838473 +227782,6378,My DVDs,1200474480 +227782,6378,remake,1200474504 +227782,6537,androids,1187169131 +227782,6537,Arnold Schwarzenegger,1187169125 +227782,6537,Claire Danes,1187169210 +227782,6537,Kristanna Loken,1187169198 +227782,6537,Nick Stahl,1187169198 +227782,6537,perfect movie to watch when having hangover,1187169148 +227782,6537,sci-fi,1187169109 +227782,6539,Johnny Depp,1167846280 +227782,6539,My DVDs,1200474157 +227782,6539,Orlando Bloom,1167909460 +227782,6539,pirates,1167846300 +227782,6541,My DVDs,1200473866 +227782,6541,Sean Connery,1172835942 +227782,6565,american dream,1173088475 +227782,6565,Chris Cooper,1173088610 +227782,6565,Tobey Maguire,1173088475 +227782,6593,Jamie Lee Curtis,1167910840 +227782,6593,Lindsay Lohan,1167910838 +227782,6709,Antonio Banderas,1167909653 +227782,6709,Johnny Depp,1167909597 +227782,6709,Mickey Rourke,1167909653 +227782,6709,Salma Hayek,1167909653 +227782,6711,Bill Murray,1167912818 +227782,6711,Japan,1167912821 +227782,6711,Scarlett Johansson,1167912819 +227782,6754,Kate Beckinsale,1172835817 +227782,6754,My DVDs,1200474677 +227782,6754,vampires,1172835817 +227782,6754,werewolves,1200474669 +227782,6863,Jack Black,1168352138 +227782,6874,David Carradine,1167847021 +227782,6874,Extreme violence is good for growing youth,1167905432 +227782,6874,Michael Madsen,1167847021 +227782,6874,My DVDs,1167909137 +227782,6874,Quentin Tarantino,1167846860 +227782,6874,Uma Thurman,1167846939 +227782,6893,need to see,1200474493 +227782,7099,anime,1167908858 +227782,7099,Hayao Miyazaki,1167908853 +227782,7099,My DVDs,1200474975 +227782,7099,Studio Ghibli,1167908855 +227782,7143,Tom Cruise,1167911089 +227782,7153,fantasy,1167909430 +227782,7153,Peter Jackson,1167909425 +227782,7160,amazing acting,1189772098 +227782,7160,Charlize Theron,1189772073 +227782,7160,Christina Ricci,1189772086 +227782,7160,Drama,1189772094 +227782,7254,Amy Smart,1167846744 +227782,7254,Ashton Kutcher,1167846704 +227782,7254,J.Mackye Gruber,1167846719 +227782,7254,My DVDs,1200474227 +227782,7361,Elijah Wood,1167909265 +227782,7361,Jim Carrey,1167909230 +227782,7361,Kate Winslet,1167909233 +227782,7438,David Carradine,1167847031 +227782,7438,Extreme violence is good for growing youth,1167905463 +227782,7438,Michael Madsen,1167847031 +227782,7438,My DVDs,1167905389 +227782,7438,Quentin Tarantino,1167846862 +227782,7438,Uma Thurman,1167846901 +227782,7454,Kate Beckinsale,1172835953 +227782,7454,My DVDs,1200474624 +227782,7458,Brad Pitt,1167909468 +227782,7458,Orlando Bloom,1167909470 +227782,8254,Johnny Depp,1167909501 +227782,8340,Clint Eastwood,1184836033 +227782,8340,Don Siegel,1184836038 +227782,8340,seen more than once,1184836047 +227782,8589,Finnish,1184835798 +227782,8589,history,1184835800 +227782,8783,Joaquin Phoenix,1167904461 +227782,8783,M. Night Shyamalan,1167904458 +227782,8783,My DVDs,1167905150 +227782,8783,Sigourney Weaver,1167905156 +227782,8970,Johnny Depp,1167909503 +227782,8970,Kate Winslet,1218492761 +227782,8970,need to buy,1218492782 +227782,8970,Peter Pan,1218492765 +227782,8984,Brad Pitt,1167911665 +227782,8984,George Clooney,1167911658 +227782,8984,Matt Damon,1167911656 +227782,26662,anime,1167908759 +227782,26662,Hayao Miyazaki,1167908756 +227782,26662,need to buy,1167908792 +227782,26662,Studio Ghibli,1167908762 +227782,26680,Johnny Depp,1167909566 +227782,27660,anime,1167910494 +227782,27660,My DVDs,1167910501 +227782,27731,anime,1167845907 +227782,27731,My DVDs,1167909020 +227782,27731,Studio Ghibli,1167845909 +227782,30793,Johnny Depp,1167909495 +227782,30793,Tim Burton,1167909492 +227782,30812,Leonardo DiCaprio,1167846239 +227782,30812,Martin Scorsese,1167907659 +227782,30812,My DVDs,1167907948 +227782,31658,anime,1167845997 +227782,31658,Hayao Miyazaki,1167846013 +227782,31658,My DVDs,1167905022 +227782,31658,Studio Ghibli,1167845999 +227782,32587,Benicio Del Toro,1167905549 +227782,32587,Bruce Willis,1167905497 +227782,32587,Elijah Wood,1167905549 +227782,32587,Extreme violence is good for growing youth,1167905549 +227782,32587,Frank Miller,1167905491 +227782,32587,Michael Madsen,1167905549 +227782,32587,My DVDs,1200474014 +227782,33004,humor,1168880691 +227782,33004,sci-fi,1168880688 +227782,33679,Angelina Jolie,1167911630 +227782,33679,Brad Pitt,1167911632 +227782,36519,cars,1185804956 +227782,36519,Good action,1185804962 +227782,36519,Jason Statham,1185804914 +227782,37729,Danny Elfman,1200474925 +227782,37729,Emily Watson,1200474925 +227782,37729,Helena Bonham Carter,1200474925 +227782,37729,Johnny Depp,1200474925 +227782,37729,My DVDs,1200474925 +227782,37729,Tim Burton,1167909676 +227782,39435,Antonio Banderas,1167911841 +227782,39435,Catherine Zeta-Jones,1167911816 +227782,41571,geisha,1167905126 +227782,41571,Japan,1167846205 +227782,41571,My DVDs,1167905082 +227782,45186,Tom Cruise,1167911198 +227782,45722,Johnny Depp,1167846275 +227782,45722,Keira Knightley,1167909074 +227782,45722,need to buy,1167909107 +227782,45722,Orlando Bloom,1167909072 +227782,45722,pirates,1167846277 +227782,47610,Edward Norton,1173964131 +227782,47610,magic,1173964135 +227782,48780,Christian Bale,1167912495 +227782,48780,Hugh Jackman,1167912494 +227782,53125,Johnny Depp,1189768803 +227782,53125,need to buy,1200474175 +227782,53125,Orlando Bloom,1200474175 +227782,56152,Disney almost making fun of itself,1200474296 +227782,58559,Batman,1217536250 +227782,58559,Christian Bale,1217536307 +227782,58559,Gary Oldman,1217536307 +227782,58559,Heath Ledger,1217536307 +227782,58559,Maggie Gyllenhaal,1217536307 +227782,58559,Michael Caine,1217536307 +227782,58559,Morgan Freeman,1217536307 +227782,58803,based on a true story,1219326375 +227782,58803,Jim Sturgess,1219326431 +227782,58803,Kate Bosworth,1219326431 +227782,58803,Kevin Spacey,1219326431 +227782,58803,Laurence Fishburne,1219326431 +227784,260,science fantasy,1439577891 +227784,260,space epic,1439577886 +227791,6,owned,1227598679 +227791,10,owned,1227536185 +227791,25,owned,1227538592 +227791,32,owned,1227538504 +227791,47,owned,1227536023 +227791,50,owned,1227538508 +227791,110,owned,1227536565 +227791,150,owned,1227539727 +227791,175,owned,1227539424 +227791,235,owned,1227539169 +227791,293,owned,1227536177 +227791,303,owned,1227541837 +227791,318,owned,1227536060 +227791,356,owned,1227536188 +227791,367,owned,1227536536 +227791,508,owned,1227538433 +227791,593,owned,1227538435 +227791,608,owned,1227536814 +227791,628,owned,1227539158 +227791,858,owned,1227536078 +227791,912,owned,1227538498 +227791,920,owned,1227539121 +227791,923,owned,1227540261 +227791,1036,owned,1227538521 +227791,1089,owned,1227536527 +227791,1101,owned,1227536129 +227791,1193,owned,1227536070 +227791,1201,owned,1227541781 +227791,1206,owned,1227536507 +227791,1207,owned,1227539108 +227791,1213,owned,1227540252 +227791,1219,owned,1227536614 +227791,1270,owned,1227541101 +227791,1291,owned,1227536548 +227791,1298,owned,1227542448 +227791,1304,owned,1227541776 +227791,1350,owned,1227542441 +227791,1393,owned,1227540242 +227791,1584,owned,1227541667 +227791,1722,owned,1227536822 +227791,1729,owned,1227536544 +227791,1961,owned,1227536065 +227791,2011,owned,1227538638 +227791,2012,owned,1227538501 +227791,2115,owned,1227538475 +227791,2329,owned,1227536125 +227791,2334,owned,1227540645 +227791,2396,owned,1227541600 +227791,2571,owned,1227536035 +227791,2605,owned,1227536772 +227791,2671,owned,1227541591 +227791,2706,owned,1227539021 +227791,2763,owned,1227541561 +227791,2764,owned,1227536147 +227791,2858,owned,1227538547 +227791,2947,owned,1227541533 +227791,2989,owned,1227542310 +227791,3082,owned,1227536790 +227791,3386,owned,1227540151 +227791,3408,owned,1227538512 +227791,3476,owned,1227540564 +227791,3535,owned,1227538690 +227791,3578,owned,1227536038 +227791,3617,owned,1227536608 +227791,3635,owned,1227540556 +227791,3688,owned,1227539625 +227791,4011,owned,1227536600 +227791,4015,owned,1227540532 +227791,4022,owned,1227536101 +227791,4148,owned,1227536767 +227791,4226,owned,1227538456 +227791,4878,owned,1227536554 +227791,4886,owned,1227536166 +227791,4993,owned,1227539021 +227791,4995,owned,1227536045 +227791,5010,owned,1227536123 +227791,5218,owned,1227536075 +227791,5418,owned,1227536113 +227791,5445,owned,1227536168 +227791,5541,owned,1227542186 +227791,5872,owned,1227536775 +227791,5952,owned,1227536179 +227791,5989,owned,1227536086 +227791,5995,owned,1227539966 +227791,6016,owned,1227536563 +227791,6365,owned,1227536173 +227791,6377,owned,1227598687 +227791,6378,owned,1227539043 +227791,6538,owned,1227542823 +227791,6687,owned,1227540426 +227791,6708,owned,1227542133 +227791,6870,owned,1227536163 +227791,6934,owned,1227536171 +227791,7162,owned,1227540388 +227791,7254,owned,1227535895 +227791,7347,owned,1227539571 +227791,7361,owned,1227541307 +227791,7458,owned,1227542101 +227791,7569,owned,1227542096 +227791,7573,owned,1227542744 +227791,8533,owned,1227540843 +227791,8665,owned,1227536112 +227791,8781,owned,1227536540 +227791,8972,owned,1227536529 +227791,26614,owned,1227536119 +227791,30707,owned,1227535965 +227791,30812,owned,1227542038 +227791,32587,owned,1227536153 +227791,33166,owned,1227536339 +227791,33794,owned,1227536050 +227791,36517,owned,1227542014 +227791,38388,owned,1227542635 +227791,39183,owned,1227540333 +227791,39446,owned,1227542625 +227791,39715,owned,1227541240 +227791,41997,owned,1227536531 +227791,44022,owned,1227542617 +227791,44397,owned,1227539873 +227791,44665,owned,1227536844 +227791,45447,owned,1227536560 +227791,45517,owned,1227541983 +227791,46723,owned,1227535971 +227791,46974,owned,1227541218 +227791,47610,owned,1227536805 +227791,48394,owned,1227536159 +227791,48774,owned,1227539251 +227791,48780,owned,1227536616 +227791,48997,owned,1227536618 +227791,49272,owned,1227541960 +227791,49278,owned,1227536557 +227791,49530,owned,1227536121 +227791,50794,owned,1227541192 +227791,50872,owned,1227536062 +227791,51080,owned,1227540789 +227791,51255,owned,1227536763 +227791,51412,owned,1227539815 +227791,51540,owned,1227536053 +227791,51662,owned,1227538430 +227791,52281,owned,1227539437 +227791,52712,owned,1227542595 +227791,52973,owned,1227537062 +227791,53129,owned,1227536072 +227791,53519,owned,1227539810 +227791,53993,owned,1227542586 +227791,53996,owned,1227538447 +227791,54286,owned,1227536109 +227791,54997,owned,1227598669 +227791,55765,owned,1227538452 +227791,56367,owned,1227624505 +227791,56782,owned,1227541910 +227791,56788,owned,1227542568 +227791,56941,owned,1227540310 +227791,58103,owned,1227536794 +227791,58559,owned,1227541887 +227791,59900,owned,1227536788 +227791,60069,owned,1227541876 +227791,60072,owned,1227542562 +227791,60126,owned,1227539745 +227803,4995,intelligent,1149282641 +227803,48394,lush,1167868552 +227809,44,over-the-top action,1283485652 +227809,44,ridiculous characters,1283485596 +227809,44,stylized,1283485591 +227809,44,video game adaptation,1283485677 +227809,327,stylized,1276312875 +227809,380,mundane characters,1286543004 +227809,380,not ridiculous enough,1286542995 +227809,393,over-the-top action,1283485309 +227809,393,ridiculous characters,1283485302 +227809,393,stylized,1276312510 +227809,407,meta-movie,1276383337 +227809,407,slow investigative build,1276383300 +227809,517,excellent plot,1304706100 +227809,517,intrigue,1304706088 +227809,714,lethargic pace,1277940172 +227809,866,atmospheric,1327560990 +227809,866,erotic,1327560978 +227809,866,excellent cinematography,1327560999 +227809,866,lesbian,1327560987 +227809,866,stylized,1327560993 +227809,926,stand-and-talk dialogue,1320277146 +227809,1047,dated CG,1284751361 +227809,1047,over-the-top action,1284750543 +227809,1047,ridiculous characters,1284751039 +227809,1047,witty,1284751130 +227809,1241,hilarious,1301972848 +227809,1241,over-the-top,1301972827 +227809,1241,romantic comedy with zombies,1301972833 +227809,1280,anticlimactic,1287130751 +227809,1280,inappropriate music,1287130763 +227809,1280,inappropriate music cues,1287130770 +227809,1280,misogynistic,1287130743 +227809,1280,period piece,1287130734 +227809,1280,static camera,1287130823 +227809,1280,weak female lead,1287130756 +227809,1341,predictable,1286542596 +227809,1341,psychological horror,1286542579 +227809,1341,slow build,1286542569 +227809,1464,surreal,1294073662 +227809,1762,dated CG,1284751282 +227809,1762,good gore usage,1284751236 +227809,1762,interesting monsters,1284751265 +227809,1762,over-the-top action,1284750569 +227809,1762,ridiculous characters,1284750580 +227809,1762,witty,1284750575 +227809,1891,abstract ending,1304705675 +227809,1891,cerebral,1304705741 +227809,1891,excellent cinematography,1304705654 +227809,1891,innovative cinematography,1304705647 +227809,1891,surreal,1304705662 +227809,1891,understated,1304705782 +227809,2692,nonlinear,1335251995 +227809,2722,bad science,1335252296 +227809,2722,predictable,1335252313 +227809,2827,excellent cinematography,1277974656 +227809,2827,excellent soundtrack,1277974628 +227809,2827,typical plot,1277974645 +227809,2827,variety of camera techniques,1277975077 +227809,2985,superbly written,1301972805 +227809,2985,tongue-in-cheek,1301972759 +227809,3252,clichéd,1336877248 +227809,3273,clever script,1336876417 +227809,3273,humor,1336876581 +227809,3273,meta,1336876423 +227809,3273,prerecorded message,1336876541 +227809,3285,beautiful cinematography,1298520666 +227809,3285,great soundtrack,1298520657 +227809,3484,terrible dialogue,1335252197 +227809,3484,weak characters,1335252205 +227809,3593,stupid characters,1294696970 +227809,3593,stupid plot,1294696982 +227809,3593,terrible dialogue,1294696944 +227809,3727,slow build,1283484988 +227809,3727,superb characterization,1276363293 +227809,3727,vampires,1276363276 +227809,3857,drama for drama's sake,1335251686 +227809,3857,science interrupts ritual,1335251678 +227809,3857,soap opera,1335251724 +227809,3949,traumatic,1276192540 +227809,4744,good cinematography,1294073327 +227809,4744,heroine,1294073454 +227809,4744,inconsistent monster,1294073477 +227809,4744,trite plot,1294073423 +227809,4902,dark,1298949065 +227809,4902,excellent characters,1298948984 +227809,4902,excellent plot,1298948961 +227809,4902,neither fish nor fowl,1298949022 +227809,4902,not scary,1298949059 +227809,5103,classic,1280382611 +227809,5153,no exposition,1449172625 +227809,5667,shallow characters,1292895136 +227809,5667,simple plot,1292895144 +227809,5679,remake,1276382936 +227809,5679,slow investigative build,1276383051 +227809,5726,interesting plot,1325797617 +227809,5726,musical cues,1325797661 +227809,5808,character study,1292894047 +227809,5808,good characters,1292894010 +227809,5883,aural horror,1276313184 +227809,5959,volume for drama,1301698267 +227809,6223,choppy style,1276813495 +227809,6223,hip-hop montages,1276814075 +227809,6385,feminism,1309373315 +227809,6385,great score,1309373303 +227809,6659,comedic horror,1284751536 +227809,6659,interesting monsters,1284751519 +227809,6803,not suspenseful,1336874646 +227809,6803,terrible acting,1336874620 +227809,7164,stylized,1276190759 +227809,7285,nostalgic,1276313369 +227809,7458,humanistic,1276313937 +227809,7820,black and white,1296342068 +227809,7820,good plot,1296342052 +227809,7820,no soundtrack,1296342056 +227809,7827,predictable ending,1294072878 +227809,7845,comedic horror,1284751469 +227809,7845,interesting monsters,1284751415 +227809,7845,ridiculous characters,1284751410 +227809,8368,Gambon ignores established character,1276365565 +227809,8950,predictable,1276364312 +227809,8950,trailer gives it away,1277940297 +227809,9010,beautiful color,1280634814 +227809,9010,escapist ending,1280635062 +227809,9010,excellent cinematography,1280634922 +227809,9010,fantastical imagery,1280634810 +227809,26603,dated graphics,1307596042 +227809,26603,predictable,1307596032 +227809,26973,dark,1335251541 +227809,26973,flat characters,1335251580 +227809,26973,nothing special,1335251606 +227809,27292,surreal,1276151766 +227809,27402,competent actors,1301973248 +227809,27402,down-to-earth,1301973281 +227809,27402,gets Lovecraft accurate,1301973191 +227809,31431,psychological,1404009891 +227809,33270,lethargic pace,1279832600 +227809,33270,no soundtrack,1279832701 +227809,33270,static camera,1279832666 +227809,33270,weird visuals,1279832593 +227809,39183,based on a short story,1294072751 +227809,39183,bittersweet,1294072728 +227809,39183,character study,1294072825 +227809,39183,poignant,1294072819 +227809,40617,complex,1305246143 +227809,40617,excellent screenplay,1305246196 +227809,40617,good use of color,1305246281 +227809,40617,predictable deaths,1305246237 +227809,40617,strong female lead,1305788007 +227809,40732,terrifying environment,1294706063 +227809,40815,atrocious editing,1276365197 +227809,40815,cheap laughs,1276365465 +227809,40815,choppy narrative,1276365237 +227809,40815,Moody's eye unbelievable,1276365387 +227809,40815,no characterization,1276365266 +227809,40815,young heroes,1276364513 +227809,43744,fatalistic,1336875991 +227809,43932,no characterization,1404010128 +227809,43932,pacing,1404010104 +227809,45499,atrocious plot,1276192108 +227809,45499,atrocious writing,1276192066 +227809,45499,boring as shit,1276192035 +227809,45499,doesn't follow series,1276192091 +227809,45499,established characters are ignored,1277974900 +227809,45499,misuse of characters,1276192123 +227809,45499,terrible director,1276192046 +227809,45499,x-men wanna-be,1276192156 +227809,46948,innuendo,1276188964 +227809,47610,CGI instead of real tricks,1277940457 +227809,47610,predictable,1276364391 +227809,47830,abuse,1276192251 +227809,47937,dark humor,1305788166 +227809,47937,excellent acting,1305788239 +227809,47937,excellent characters,1305788228 +227809,47937,strong female lead,1305788170 +227809,48150,CG used effectively,1280382998 +227809,48150,surreal ending sequence,1280383042 +227809,48150,understated,1280383057 +227809,48543,extremely slow build,1277272500 +227809,48543,killer/cop mind games,1277272518 +227809,48543,psychology focus,1277272507 +227809,48543,sublime soundtrack,1283568566 +227809,48774,single-take scenes,1276269886 +227809,51709,beautiful color,1321829069 +227809,51709,Cloverfield without the melodrama,1321829185 +227809,51709,ending music,1321829354 +227809,51709,excellent choreography,1321829075 +227809,51709,family drama,1321829270 +227809,51709,resilient child character,1321829405 +227809,52712,main character is a total shit,1277974861 +227809,53131,character drama,1283485498 +227809,53131,decent characterization,1283485408 +227809,53131,not terrifying,1283485489 +227809,53131,slow pacing,1283485393 +227809,53131,vampires,1276192925 +227809,53752,overly dramatic,1321828751 +227809,53752,predictable,1321828742 +227809,54775,anticlimactic,1283996815 +227809,54775,choppy editing,1283996830 +227809,54775,drama,1283996847 +227809,54775,few martial arts,1283996870 +227809,54775,revenge,1283996809 +227809,55267,not a comedy,1284409572 +227809,55492,few wide angle shots,1279392005 +227809,55492,subtle,1279392011 +227809,59107,beautiful cinematography,1277974369 +227809,59107,beautiful color,1277974405 +227809,59107,beautiful textures,1277974397 +227809,59107,poignant,1277974521 +227809,59107,variety of camera techniques,1277975088 +227809,59387,amazing cinematography,1336874786 +227809,59387,beautiful colors,1336874796 +227809,59387,metafiction,1336874777 +227809,59387,stylistic,1336874780 +227809,59387,visually stunning,1336874771 +227809,62376,steampunk,1276147568 +227809,63181,freaky visuals,1283485356 +227809,63181,not horror,1283485343 +227809,63181,over-the-top action,1283485333 +227809,63181,ridiculous violence,1276313568 +227809,63181,stylized,1276313578 +227809,65261,naive,1320277472 +227809,65588,niche humor,1280382235 +227809,66171,predictable,1279392266 +227809,66171,terrible characters,1276191750 +227809,66171,x-men wanna-be,1276191815 +227809,66934,bittersweet,1335252076 +227809,66934,funny,1335252134 +227809,66934,musical,1335252081 +227809,66934,phenomenal dialogue,1335252096 +227809,66934,phenomenal soundtrack,1335252105 +227809,66934,twist ending,1335252068 +227809,66934,unrequited love,1335252121 +227809,67168,Atwood ending,1276381693 +227809,67168,over-the-top action,1276381617 +227809,67168,ridiculous characters,1276381573 +227809,67168,tongue-in-cheek,1276381591 +227809,68157,everyone dies,1276584250 +227809,68157,great characterization from Pitt and Waltz,1276584294 +227809,70336,childish,1286241552 +227809,70336,infantile,1286241556 +227809,70336,shallow characters,1286241589 +227809,70336,silly plot,1286241545 +227809,70336,style over substance,1286241605 +227809,70336,terrible dialogue,1286241570 +227809,70521,dialogue,1336876987 +227809,70521,Elizabeth Bennet,1336877016 +227809,70521,playful,1336876959 +227809,71379,characters are morons,1287203472 +227809,71379,handcam-real style,1287203473 +227809,71379,no payoff,1287201686 +227809,71379,not horror,1287201666 +227809,71500,engaging plot,1298951190 +227809,71550,choppy narrative,1298952983 +227809,71550,unbelievable characters,1298953304 +227809,71700,boring,1276151833 +227809,71700,lethargic pace,1283484865 +227809,73211,excellent acting,1325798126 +227809,73211,excellent stage direction,1325798091 +227809,73211,hates science,1325798216 +227809,73211,innovative,1325798037 +227809,73488,poor writing,1297146317 +227809,73488,terrible fight choreography,1297146362 +227809,74228,cerebral,1305604179 +227809,74228,excellent acting,1305604197 +227809,74228,like Lynch's films but with an ending,1305604263 +227809,74228,strong female lead,1305788073 +227809,74416,all handcam,1320277560 +227809,74416,no soundtrack,1320277555 +227809,74452,beautiful color,1276381304 +227809,74452,excellent graphics,1276381389 +227809,74452,good characterization,1276381326 +227809,74452,moody atmosphere,1276381317 +227809,74452,predictable,1276381406 +227809,74484,best epithets ever,1289614134 +227809,74484,hot actresses,1289614003 +227809,74484,over-the-top action,1289613982 +227809,74484,powerful female characters,1289614014 +227809,74484,ridiculous characters,1289613968 +227809,74754,terrible acting,1288555706 +227809,75985,another evil corporation,1283484714 +227809,75985,banal plot,1283485222 +227809,75985,clichéd plot,1283485168 +227809,75985,cop-out ending,1283484685 +227809,75985,gore,1283484754 +227809,75985,illogical economics,1283484665 +227809,75985,violent,1283484696 +227809,77201,beautiful scenery,1294619767 +227809,77201,beautiful textures,1294619943 +227809,77201,description is totally inaccurate,1294620327 +227809,77201,minimal dialogue,1294619812 +227809,77201,no soundtrack,1294619959 +227809,77201,nothing happens,1294620340 +227809,77201,plodding pace,1294619785 +227809,77201,primarily static camerawork,1294620290 +227809,77843,drama for drama's sake,1296801710 +227809,77843,shallow characters,1296801445 +227809,77843,weak female lead,1296802321 +227809,78459,sexist,1419635801 +227809,78534,emotionally complex,1336876618 +227809,78534,interesting characters,1336876636 +227809,78534,interesting plot,1336876631 +227809,79293,American propaganda,1304705865 +227809,79293,cliche,1304705857 +227809,79293,escape sequences,1304705907 +227809,79293,predictable,1304705869 +227809,79293,sappy,1304705916 +227809,79293,terrible acting,1304705931 +227809,80831,excellent cinematography,1309373733 +227809,80831,god-awful CG,1309373763 +227809,80846,authentic Christianity,1304705015 +227809,80846,excellent cinematography,1304705038 +227809,80846,good acting,1304705069 +227809,82242,creepy,1335251865 +227809,82242,no monster,1335251857 +227809,82242,no payoff,1335251852 +227809,83798,taboo relationship,1336875153 +227809,83798,typical,1336875240 +227809,85401,background TV show,1336875708 +227809,85401,cartoon FX,1336875804 +227809,85401,ending dialogue,1336875762 +227809,85401,stylistic,1336875893 +227809,87234,interesting characters,1336874492 +227809,87234,stylistic,1336874444 +227809,87921,breakneck pace,1320278331 +227809,87921,predictable,1320278292 +227809,88589,narration,1428378783 +227809,89028,child's perspective,1403414965 +227809,89028,for children,1403414950 +227809,89047,character driven,1335251344 +227809,89047,excellent acting,1335251242 +227809,89047,humor,1335251213 +227809,89371,contrived plot,1335251405 +227809,89371,dance,1335251414 +227809,89371,martial arts,1335251410 +227809,89371,strong female lead,1335251440 +227809,89582,long setup,1320278370 +227809,89582,loud eccentric character,1320278408 +227809,89582,psychological,1320278427 +227809,89720,misogynistic,1403384105 +227809,89720,weak female characters,1403384135 +227809,89745,cinematic character continuity,1336873511 +227809,89745,empowered women,1336873447 +227809,89745,excellent acting,1336873587 +227809,89745,excellent cinematography,1336873441 +227809,89745,excellent graphics,1336873481 +227809,89745,large cast but characters are distinct,1336873655 +227809,90809,understated,1331515056 +227809,91014,martial arts,1336876853 +227809,91014,premature epiphany,1336876877 +227809,91470,lethargic pace,1419633108 +227809,91500,clichéd aesthetics,1336874304 +227809,91500,clichéd future,1336874315 +227809,91500,empowered youth,1336874072 +227809,91500,shaky camera,1336874023 +227809,91529,bad script,1349161998 +227809,91529,plot holes,1349162001 +227809,91529,Predictable,1349162016 +227809,92696,nothing spectacular,1331514950 +227809,92696,predictable,1331514836 +227809,93840,excellent cinematography,1336873296 +227809,93840,gorgeous actresses,1336873142 +227809,93840,handsome actors,1336873147 +227809,93840,meta,1336873135 +227809,93840,original,1336873130 +227809,93840,witty,1336873173 +227809,97957,disconnected,1434683555 +227809,97957,unfocused,1434683555 +227809,102411,goes nowhere,1428488253 +227809,102411,hot chicks,1428488232 +227809,102411,nothing to say,1428488271 +227809,102411,predictable,1428488250 +227809,103315,no meaningful consequences,1440029381 +227809,103574,invisible kills,1439137539 +227809,103574,nice soundtrack,1439137527 +227809,103574,no payoff,1439137524 +227809,109720,predictable,1450742345 +227809,109720,unbelievable,1450742379 +227809,111570,tedious,1438275139 +227809,111570,understated,1438275133 +227809,111659,narrator,1403366475 +227809,111931,brutality,1450742790 +227809,111931,cloistered,1450742809 +227809,111931,femme-fatale,1450742785 +227809,113313,most realistic found footage,1450742673 +227809,113313,unbelievable,1450742651 +227809,113674,convoluted,1450200102 +227809,114044,cloistered,1450742183 +227809,114044,good leads,1450742225 +227809,114044,no payoff,1450742155 +227809,114044,predictable,1450742215 +227809,116034,indie,1431639013 +227809,116034,mundane,1431639013 +227809,116034,underrated,1431639013 +227809,116034,understated,1418013167 +227809,117065,poorly written,1420676503 +227809,117065,predictable,1420676501 +227809,117372,choppy,1429563607 +227809,117372,too loosely tied,1429563845 +227809,118972,no explanation,1450199456 +227809,118972,no stupid decisions,1450199446 +227809,119683,adolescent drama,1428364390 +227809,119683,anticlimactic,1428364390 +227809,119683,slow,1428364390 +227809,130840,good actors,1450742287 +227809,130840,Lovecraftian,1450742282 +227809,130840,monster,1450742293 +227809,130840,not horror,1450742307 +227809,130840,romance,1450742296 +227809,130840,slow build,1450742284 +227809,131464,brilliant pacing,1447010377 +227809,131464,excellent writing,1447010374 +227809,131464,subverts genre,1447010356 +227809,131464,useless post-credit scene,1447010334 +227809,131470,cool title,1428368494 +227809,131470,documentary format,1428368222 +227809,131470,jump-cuts for scares,1428368424 +227809,131470,moralizing,1428368494 +227809,131470,no payoff,1428368435 +227809,131470,predictable,1428365636 +227809,133119,boring,1438092960 +227809,133119,found footage,1438092999 +227809,133119,predictable,1438092972 +227809,135889,not horror,1450201580 +227809,135889,sappy,1450201573 +227809,136784,always-offscreen monster,1440699640 +227809,136784,goes nowhere,1440699359 +227809,136784,lethargic pacing,1440698600 +227809,136784,no broad context,1440698602 +227809,136784,running around in the dark,1440698557 +227809,136784,unbelievably dumb characters,1440698629 +227809,137823,cloistered,1454000177 +227809,137823,predictable,1454000179 +227809,138528,stuttercam,1449170603 +227809,138528,utterly predictable,1449170598 +227809,138650,lethargic pacing,1451403644 +227809,139313,poor pacing,1450725096 +227809,139313,terrible acting,1450725094 +227809,139533,atrocious acting,1450201654 +227809,139533,atrocious dialogue,1450201656 +227809,139701,low budget SFX,1449111830 +227809,139701,melodramatic,1449111815 +227809,139701,original,1449111825 +227809,139701,terrible sound,1449111828 +227809,139779,lethargic pacing,1438952072 +227809,139779,no soundtrack,1438952107 +227809,140701,poor creature design,1450200370 +227809,140701,rote characterization,1450200334 +227809,140856,audience-only scares,1439900266 +227809,141550,ending loses all momentum,1451339632 +227809,141550,melodrama,1451339919 +227809,141550,no female agency,1451403770 +227809,141908,poor writing,1446140692 +227809,141908,solipsistic,1446140441 +227809,141908,unbelievable gore,1446140555 +227809,141908,weak characterization,1446140469 +227809,141954,agoraphobic,1450201964 +227809,141954,hysterically-written woman,1450202031 +227809,141954,one-room story,1450202057 +227809,141954,woman written as hysterical,1450202070 +227809,142266,cloistered,1454000554 +227809,144070,retreads plot,1453937698 +227809,145955,inconsistent tone,1449112042 +227814,356,1960s,1434680202 +227814,356,historical,1434680202 +227814,356,optimism,1434680202 +227832,2599,Hilarious!! :D,1146962578 +227832,8010,icky,1146962733 +227836,260,aliens,1434494193 +227836,260,classic sci-fi,1434494182 +227839,109487,artificial intelligence,1442419097 +227839,109487,sci-fi,1442419061 +227839,109487,space,1442419055 +227839,109487,time travel,1442419087 +227887,260,science fiction,1431525682 +227887,260,vies extraterrestres,1431525562 +227924,215,Austria,1387851611 +227924,215,bittersweet,1387851566 +227924,215,conversation,1387851568 +227924,215,dialogue,1387851665 +227924,215,dialogue driven,1387851569 +227924,215,generation X,1387851572 +227924,215,one night stand,1387851591 +227924,215,philosophical,1387851654 +227924,215,philosophy,1387851647 +227924,215,quirky,1387851598 +227924,215,realism,1387851714 +227924,215,reflective,1387851596 +227924,215,romance,1387851584 +227924,215,trains,1387851605 +227924,215,understated,1387851632 +227924,215,Vienna,1387851607 +227924,215,witty,1387851637 +227924,215,young people,1387851628 +227924,253,atmospheric,1310345390 +227924,253,cult classic,1310345399 +227924,253,fantasy,1310345374 +227924,253,gothic,1310345438 +227924,253,historic,1310345412 +227924,253,history,1310345418 +227924,253,horror,1310345375 +227924,253,literature,1310345377 +227924,253,New Orleans,1310345379 +227924,253,pretentious,1310345429 +227924,253,vampire,1310345382 +227924,253,vampires,1310345383 +227924,260,action,1310344604 +227924,260,adventure,1310344598 +227924,260,aliens,1310344605 +227924,260,atmospheric,1310344607 +227924,260,classic,1310344610 +227924,260,fantasy,1310344612 +227924,260,George Lucas,1310344613 +227924,260,great soundtrack,1310344616 +227924,260,Harrison Ford,1310344617 +227924,260,humorous,1310344624 +227924,260,robots,1310344641 +227924,260,sequel,1310344643 +227924,260,space,1310344644 +227924,260,SPACE TRAVEL,1310344646 +227924,260,Star Wars,1310344647 +227924,260,stylized,1310344649 +227924,260,sword fight,1310344652 +227924,337,bittersweet,1310344545 +227924,337,brothers,1310344548 +227924,337,coming of age,1310344549 +227924,337,disability,1310344554 +227924,337,family,1310344561 +227924,337,Johnny Depp,1310344563 +227924,337,Leonardo DiCaprio,1310344569 +227924,337,mental disability,1310344571 +227924,337,mental illness,1310344572 +227924,337,obesity,1310344574 +227924,337,quirky,1310344576 +227924,337,siblings,1310344584 +227924,337,small town,1310344585 +227924,337,want to see again,1310344587 +227924,337,whimsical,1310344588 +227924,353,based on a comic,1316301966 +227924,353,bittersweet,1316301926 +227924,353,cult film,1316301932 +227924,353,dreamlike,1316301935 +227924,353,great soundtrack,1316301925 +227924,353,gritty,1316301937 +227924,353,revenge,1316301961 +227924,353,rock and roll,1316301947 +227924,353,romance,1316301952 +227924,353,stylized,1316301953 +227924,353,vigilante,1316301955 +227924,541,artificial intelligence,1310344320 +227924,541,atmospheric,1310344323 +227924,541,based on a book,1310344318 +227924,541,cyberpunk,1310344325 +227924,541,existentialism,1310344329 +227924,541,Philip K. Dick,1310344333 +227924,541,sci-fi,1310344336 +227924,541,stylized,1310344337 +227924,551,animation,1310345032 +227924,551,Christmas,1310345034 +227924,551,claymation,1310345037 +227924,551,cult film,1310345038 +227924,551,dogs,1310345057 +227924,551,great soundtrack,1310345040 +227924,551,halloween,1310345035 +227924,551,humorous,1310345043 +227924,551,musical,1310345045 +227924,551,Tim Burton,1310345048 +227924,551,whimsical,1310345049 +227924,593,based on a book,1310344749 +227924,593,classic,1310344751 +227924,593,crime,1310344755 +227924,593,disturbing,1310344758 +227924,593,drama,1310344761 +227924,593,Horror,1310344769 +227924,593,investigation,1310344771 +227924,593,Jodie Foster,1310344772 +227924,593,mental illness,1310344774 +227924,593,psychological,1310344794 +227924,593,psychology,1310344797 +227924,593,serial killer,1310344802 +227924,593,suspense,1310344804 +227924,593,tense,1310344806 +227924,593,torture,1310344811 +227924,593,violent,1310344813 +227924,724,bad ending,1333730017 +227924,724,girl power,1333729947 +227924,724,goth,1333729951 +227924,724,high school,1333729960 +227924,724,magic,1333729962 +227924,724,supernatural,1333729967 +227924,724,teenagers,1333729972 +227924,724,teens,1333729976 +227924,724,underdog,1333730007 +227924,724,witchcraft,1333729988 +227924,724,witches,1333729986 +227924,735,cult film,1310775908 +227924,735,dark comedy,1310775864 +227924,735,dreamlike,1310775886 +227924,735,macabre,1310775871 +227924,735,Nudity (Topless),1310775877 +227924,735,stylized,1310775884 +227924,735,zombie,1310775921 +227924,735,zombies,1310775922 +227924,1175,alternate reality,1310943580 +227924,1175,atmospheric,1310943577 +227924,1175,cannibalism,1310943584 +227924,1175,clowns,1310943589 +227924,1175,comedy,1310943665 +227924,1175,dark humor,1310943599 +227924,1175,directorial debut,1310943600 +227924,1175,dreamlike,1310943637 +227924,1175,French,1310943603 +227924,1175,post-apocalyptic,1310943609 +227924,1175,quirky,1310943610 +227924,1175,strange,1310943691 +227924,1175,stylized,1310943615 +227924,1175,visual,1310943622 +227924,1175,visually stunning,1310943627 +227924,1258,adapted from:book,1310344061 +227924,1258,atmospheric,1310344055 +227924,1258,cult film,1310344066 +227924,1258,disturbing,1310344058 +227924,1258,dreamlike,1310344059 +227924,1258,ghosts,1310344063 +227924,1258,Horror,1310344064 +227924,1258,Jack Nicholson,1310344056 +227924,1258,Nudity (Full Frontal - Notable),1310344075 +227924,1258,Nudity (Full Frontal),1310344078 +227924,1258,psychological,1310344072 +227924,1258,psychology,1310344081 +227924,1258,Stanley Kubrick,1310344084 +227924,1258,Stephen King,1310344086 +227924,1258,suspense,1310344089 +227924,1258,visually appealing,1310776701 +227924,1265,alternate reality,1310345641 +227924,1265,alternate universe,1310345643 +227924,1265,Bill Murray,1310345616 +227924,1265,comedy,1310345617 +227924,1265,existentialism,1310345619 +227924,1265,hilarious,1310345626 +227924,1265,humorous,1310345628 +227924,1265,love,1310345628 +227924,1265,romance,1310345630 +227924,1265,romantic,1310345632 +227924,1265,self discovery,1310345635 +227924,1265,small town,1310345637 +227924,1265,time loop,1310345639 +227924,1265,time travel,1310345640 +227924,1653,atmospheric,1333237844 +227924,1653,beautiful,1333237836 +227924,1653,design,1333237827 +227924,1653,drama,1333237834 +227924,1653,dystopia,1333237781 +227924,1653,dystopic future,1333237784 +227924,1653,genetic engineering,1333237830 +227924,1653,intelligent,1333237788 +227924,1653,outsider,1333237883 +227924,1653,powerful ending,1333237791 +227924,1653,sci-fi,1333237793 +227924,1653,thought-provoking,1333237850 +227924,1653,underdog,1333237896 +227924,1653,visually appealing,1333237800 +227924,1676,Alien Invasion,1328379446 +227924,1676,coming of age,1328379519 +227924,1676,deadpan,1328379451 +227924,1676,fascism,1328379464 +227924,1676,funny,1328379474 +227924,1676,future,1328379475 +227924,1676,growing up,1328379507 +227924,1676,military,1328379494 +227924,1676,Nudity (Topless),1328379460 +227924,1676,satire,1328379454 +227924,1676,scifi,1328379481 +227924,1682,island,1387581273 +227924,1682,mindfuck,1387581275 +227924,1682,paranoia,1387581279 +227924,1682,reality TV,1387581297 +227924,1682,romance,1387581308 +227924,1682,sailing,1387581330 +227924,1682,sci-fi,1387581319 +227924,1682,small town,1387581283 +227924,1682,social commentary,1387581259 +227924,1682,surveillance,1387581286 +227924,1682,voyeurism,1387581288 +227924,1682,witty,1387581302 +227924,1924,camp,1333730120 +227924,1924,campy,1333730123 +227924,1924,cult classic,1333730130 +227924,1924,cult film,1333730136 +227924,1924,horror,1333730116 +227924,2147,cavemen,1333730056 +227924,2147,history,1333730047 +227924,2147,sexy,1333730078 +227924,2291,cult film,1310344263 +227924,2291,dark comedy,1310344265 +227924,2291,fairy tale,1310344296 +227924,2291,fantasy,1310344298 +227924,2291,funny,1310344300 +227924,2291,gothic,1310344293 +227924,2291,Johnny Depp,1310344269 +227924,2291,quirky,1310344271 +227924,2291,surreal,1310344292 +227924,2291,Tim Burton,1310344270 +227924,2716,paranormal investigators,1442011745 +227924,3081,19th century,1310344665 +227924,3081,atmospheric,1310344663 +227924,3081,Christina Ricci,1310344666 +227924,3081,Christopher Walken,1310344670 +227924,3081,Dark,1310344673 +227924,3081,dreamlike,1310344735 +227924,3081,Fantasy,1310344677 +227924,3081,funny,1310344680 +227924,3081,gothic,1310344686 +227924,3081,horror,1310344689 +227924,3081,Johnny Depp,1310344690 +227924,3081,Mystery,1310344692 +227924,3081,quirky,1310344696 +227924,3081,Romance,1310344697 +227924,3081,stylized,1310344712 +227924,3081,Tim Burton,1310344716 +227924,3081,visually appealing,1310344719 +227924,3355,atmospheric,1328379594 +227924,3355,bad ending,1328379550 +227924,3355,dark,1328379598 +227924,3355,dialogue,1328379551 +227924,3355,Mystery,1328379568 +227924,3355,Nudity (Topless),1328379556 +227924,3355,satanism,1328379571 +227924,3481,break-up,1331480897 +227924,3481,cliches,1331480905 +227924,3481,comedy,1331480964 +227924,3481,coming of age,1331480980 +227924,3481,drama,1331480967 +227924,3481,record store,1331480915 +227924,3481,relationships,1331480917 +227924,3481,talking to camera,1331480945 +227924,3556,adolescence,1423351955 +227924,3556,christianity,1423351968 +227924,3556,coming of age,1423351946 +227924,3556,dreamlike,1423351921 +227924,3556,family,1423351985 +227924,3556,great ending,1423351949 +227924,3556,high school,1423351913 +227924,3556,melancholy,1423351932 +227924,3556,narrated,1423351936 +227924,3556,overprotective parents,1423351975 +227924,3556,parents,1423351971 +227924,3556,reflective,1423351934 +227924,3556,sisters,1423351997 +227924,3556,suburbia,1423351910 +227924,3556,suicide,1423351906 +227924,3556,teenagers,1423351963 +227924,3578,action,1310344167 +227924,3578,drama,1310344169 +227924,3578,heroism,1310344175 +227924,3578,history,1310344177 +227924,3578,macho,1310344224 +227924,3578,revenge,1310344184 +227924,3578,Ridley Scott,1310344185 +227924,3578,Rome,1310344187 +227924,3578,stylized,1310344189 +227924,3578,violence,1310344191 +227924,3578,violent,1310344193 +227924,3578,visual,1310344252 +227924,3578,War,1310344195 +227924,3727,Arizona,1310345092 +227924,3727,atmospheric,1310345072 +227924,3727,dark,1310345159 +227924,3727,eerie,1310345090 +227924,3727,night,1310345149 +227924,3727,stylish,1310345118 +227924,3727,stylized,1310345083 +227924,3727,tense,1310345086 +227924,3727,vampires,1310345088 +227924,3727,visual,1310345128 +227924,3949,addiction,1425167288 +227924,3949,atmospheric,1425167296 +227924,3949,cinematography,1425167333 +227924,3949,drama,1425167367 +227924,3949,dreams,1425167384 +227924,3949,drug abuse,1425167325 +227924,3949,drugs,1425167268 +227924,3949,great acting,1425167335 +227924,3949,heroin,1425167319 +227924,3949,intense,1425167342 +227924,3949,loneliness,1425167293 +227924,3949,love,1425167358 +227924,3949,prostitution,1425167310 +227924,3949,psychology,1425167280 +227924,3949,social commentary,1425167290 +227924,3949,visually appealing,1425167306 +227924,4011,All male cast,1440286385 +227924,4011,boxing,1440286315 +227924,4011,Crime,1440286308 +227924,4011,criminals,1440286375 +227924,4011,dark comedy,1440286310 +227924,4011,dark humor,1440286336 +227924,4011,ensemble cast,1440286321 +227924,4011,fighting,1440286343 +227924,4011,frantic,1440286412 +227924,4011,Great Britain,1440286370 +227924,4011,Great dialogue,1440286313 +227924,4011,London,1440286374 +227924,4011,MTV editing,1440286404 +227924,4011,multiple storylines,1440286323 +227924,4011,organized crime,1440286338 +227924,4011,stylized,1440286319 +227924,4011,United Kingdom,1440286372 +227924,4128,1980s,1310345277 +227924,4128,adolescence,1310345246 +227924,4128,brothers,1310345248 +227924,4128,cult film,1310345232 +227924,4128,horror,1310345254 +227924,4128,small town,1310345271 +227924,4128,teenagers,1310345240 +227924,4128,vampire,1310345263 +227924,4128,vampires,1310345265 +227924,4266,Nudity (Topless - Notable),1171658602 +227924,4720,afterlife,1310344106 +227924,4720,alternate reality,1310344110 +227924,4720,beautiful,1310344112 +227924,4720,Bible,1310344114 +227924,4720,claustrophobic,1310344119 +227924,4720,Drama,1310344126 +227924,4720,ghosts,1310344129 +227924,4720,gothic,1310344130 +227924,4720,haunted house,1310344134 +227924,4720,Isolation,1310344136 +227924,4720,Nicole Kidman,1310344138 +227924,4720,ominous,1310345667 +227924,4720,surprise ending,1310344155 +227924,4720,twist ending,1310344156 +227924,4973,atmospheric,1310344364 +227924,4973,beautifully filmed,1310344358 +227924,4973,comedy,1310344359 +227924,4973,coming of age,1310344361 +227924,4973,cult film,1310344362 +227924,4973,fairy tale,1310344365 +227924,4973,feel-good,1310344356 +227924,4973,great soundtrack,1310344366 +227924,4973,inspirational,1310344369 +227924,4973,music,1310344372 +227924,4973,notable soundtrack,1310344375 +227924,4973,Paris,1310344377 +227924,4973,quirky,1310344349 +227924,4973,romance,1310344350 +227924,4973,romantic,1310344380 +227924,4973,stylized,1310344382 +227924,4973,surreal,1310344354 +227924,4973,whimsical,1310344386 +227924,5445,action,1344042765 +227924,5445,corruption,1344042778 +227924,5445,crime,1344042852 +227924,5445,dystopia,1344042786 +227924,5445,future,1344042783 +227924,5445,futuristic,1344042784 +227924,5445,literary adaptation,1344042788 +227924,5445,mystery,1344042869 +227924,5445,police,1344042845 +227924,5445,police corruption,1344042840 +227924,5445,sci-fi,1344042826 +227924,5445,surveillance,1344042817 +227924,5445,wrongly accused,1344042834 +227924,5464,1930s,1425848727 +227924,5464,assassin,1425848739 +227924,5464,cars,1425848876 +227924,5464,child actor,1425848838 +227924,5464,children,1425848832 +227924,5464,cinematography,1425848730 +227924,5464,comic book,1425848850 +227924,5464,Coming of Age,1425848821 +227924,5464,family,1425848902 +227924,5464,father-son relationship,1425848732 +227924,5464,gangsters,1425848745 +227924,5464,honor,1425848896 +227924,5464,organized crime,1425848722 +227924,5464,Revenge,1425848725 +227924,5833,horror,1241654283 +227924,5833,survival,1241654283 +227924,5833,werewolf,1241654258 +227924,6016,based on a true story,1441404176 +227924,6016,brazil,1441404163 +227924,6016,brazilian,1441404260 +227924,6016,childhood,1441404299 +227924,6016,children,1441404296 +227924,6016,coming of age,1441404203 +227924,6016,crime,1441404178 +227924,6016,drama,1441404303 +227924,6016,drugs,1441404168 +227924,6016,gangs,1441404182 +227924,6016,gangsters,1441404221 +227924,6016,multiple storylines,1441404172 +227924,6016,photographer,1441404245 +227924,6016,photography,1441404237 +227924,6016,Rio de Janeiro,1441404201 +227924,6016,South America,1441404189 +227924,6016,true story,1441404193 +227924,6016,violence,1441404180 +227924,6323,creepy,1310343981 +227924,6323,dark,1310343954 +227924,6323,John Cusack,1310343957 +227924,6323,multiple personalities,1310343961 +227924,6323,multiple storylines,1310344005 +227924,6323,psychology,1310343948 +227924,6323,Ray Liotta,1310343965 +227924,6323,serial killer,1310343969 +227924,6323,surreal,1310343997 +227924,6323,survival,1310343976 +227924,6323,suspense,1310343973 +227924,6323,suspenseful,1310343990 +227924,6323,twist ending,1310343987 +227924,6333,based on a comic,1339287738 +227924,6333,ensemble cast,1339287749 +227924,6333,genetics,1339287772 +227924,6333,sequel,1339287758 +227924,6333,super hero,1339287768 +227924,6333,super-hero,1339287730 +227924,6333,superhero,1339287733 +227924,6333,violent,1339287788 +227924,6377,animation,1425848930 +227924,6377,Coming of Age,1425848971 +227924,6377,family bonds,1425848959 +227924,6377,father-son relationship,1425848947 +227924,6377,fish,1425848952 +227924,6377,funny,1425848955 +227924,6377,heartwarming,1425848966 +227924,6377,ocean,1425848944 +227924,6377,talking animals,1425848949 +227924,6377,underwater,1425848937 +227924,6707,94 long minutes,1343781016 +227924,6707,american,1343781186 +227924,6707,cabin,1343781145 +227924,6707,cabin fever,1343781154 +227924,6707,disease,1343781104 +227924,6707,frat boy humor,1343781133 +227924,6707,horror,1343781053 +227924,6707,I like it when 94 minutes seem long,1343781033 +227924,6707,Nudity (Topless),1343781025 +227924,6707,road trip,1343781167 +227924,6707,unrealistic,1343781122 +227924,6707,unsatisfying,1343781120 +227924,6707,unsympathetic characters,1343781202 +227924,6711,atmospheric,1362184687 +227924,6711,bittersweet,1362184589 +227924,6711,complex characters,1362184657 +227924,6711,friendship,1362184592 +227924,6711,inevitability,1362184648 +227924,6711,Japan,1362184586 +227924,6711,realistic,1362184629 +227924,6711,relationships,1362184598 +227924,6755,cult classic,1310776577 +227924,6755,cult film,1310776570 +227924,6755,elderly,1310776612 +227924,6755,elvis,1310776512 +227924,6755,great soundtrack,1310776588 +227924,6755,hilarious,1310776662 +227924,6755,horror,1310776596 +227924,6755,Joe R. Lansdale,1310776628 +227924,6755,mental illness,1310776518 +227924,6755,mummy,1310776538 +227924,6755,quirky,1310776521 +227924,6755,uplifting,1310776670 +227924,6774,bad beginning,1315094486 +227924,6774,body horror,1315094451 +227924,6774,good ending,1315094499 +227924,6774,hallucinations,1315094552 +227924,6774,kitsch,1315094525 +227924,6774,new flesh,1315094511 +227924,6774,television,1315094472 +227924,6782,Finnish,1439165432 +227924,6867,friendship,1399773088 +227924,6867,independent film,1399773091 +227924,6867,interesting characters,1399773092 +227924,6867,loneliness,1399773096 +227924,6867,small town,1399773102 +227924,6867,trains,1399773109 +227924,6867,underdog,1399773130 +227924,6867,underdogs,1399773120 +227924,6867,unlikely friendships,1399773111 +227924,6953,children,1362276148 +227924,6953,death,1362276096 +227924,6953,life & death,1362276100 +227924,6953,multiple storylines,1362276089 +227924,6953,Nonlinear,1362276092 +227924,6953,realistic,1362276121 +227924,6953,revenge,1362276160 +227924,6953,sad,1362276129 +227924,6953,sad but good,1362276108 +227924,6953,Tragedy,1362276111 +227924,6975,sadism,1333840849 +227924,6975,torture,1333840844 +227924,6987,black and white,1448225334 +227924,6987,carnival,1448225372 +227924,6987,cult movie,1448225401 +227924,6987,doctor,1448225343 +227924,6987,expressionism,1448225332 +227924,6987,friendship,1448225340 +227924,6987,German,1448225330 +227924,6987,german expressionism,1448225406 +227924,6987,horror,1448225357 +227924,6987,mad scientist,1448225387 +227924,6987,mental hospital,1448225325 +227924,6987,murder,1448225326 +227924,6987,psychology,1448225358 +227924,6987,serial killer,1448225328 +227924,6987,serial killing,1448225329 +227924,6987,silent film,1448225413 +227924,6987,sleepwalking,1448225319 +227924,6987,sonambulism,1448225379 +227924,6987,tinted black & white,1448225321 +227924,6987,twist ending,1448225337 +227924,7042,french,1346457848 +227924,7042,great soundtrack,1346458005 +227924,7042,mental illness,1346457912 +227924,7042,nudity,1346457921 +227924,7042,obsession,1346457830 +227924,7042,pregnancy,1346457895 +227924,7042,sexy,1346457822 +227924,7042,writer,1346457879 +227924,7042,young love,1346457862 +227924,7042,youth,1346457935 +227924,7373,action,1310345553 +227924,7373,comic book,1310345559 +227924,7373,fantasy,1310345561 +227924,7373,fighting,1310345563 +227924,7373,gothic,1310345566 +227924,7373,nazis,1310345584 +227924,7373,occult,1310345580 +227924,7373,occult technology,1310345586 +227924,7373,Ron Perlman,1310345590 +227924,7373,superhero,1310345600 +227924,7502,not a movie,1328912137 +227924,8132,easily confused with other movie(s) (title),1403993396 +227924,8132,Not Rome or Crowe,1403993409 +227924,8587,celebrity,1321388590 +227924,8587,Documentary,1321388521 +227924,8587,Hollywood,1321388580 +227924,8587,Music,1321388560 +227924,8587,Rock,1321388514 +227924,8587,rock and roll,1321388538 +227924,8645,colombia,1334357011 +227924,8645,Colombian,1334357017 +227924,8645,compassionate,1334356976 +227924,8645,drug trade,1334357019 +227924,8645,immigrants,1334356988 +227924,8645,Latin America,1334356994 +227924,8645,New York,1334357023 +227924,8645,pregnancy,1334356997 +227924,8645,smuggling,1334356973 +227924,8784,coming of age,1400970340 +227924,8784,death,1400970356 +227924,8784,drugs,1400970392 +227924,8784,friendship,1400970335 +227924,8784,funeral,1400970423 +227924,8784,mental illness,1400970348 +227924,8784,psychology,1400970351 +227924,8784,quirky,1400970360 +227924,8784,romance,1400970367 +227924,8784,romantic comedy,1400970375 +227924,8914,clever,1363478427 +227924,8914,Complicated,1363478429 +227924,8914,complicated plot,1363478432 +227924,8914,engineers,1363478468 +227924,8914,indie,1363478437 +227924,8914,thought-provoking,1363478443 +227924,8914,time travel,1363478440 +227924,8914,white shirts,1363478474 +227924,8947,cats,1352582389 +227924,8947,curse,1352582344 +227924,8947,disjointed timeline,1352582373 +227924,8947,ghost story,1352582336 +227924,8947,ghosts,1352582338 +227924,8947,haunted house,1352582339 +227924,8947,haunting,1352582364 +227924,8947,house,1352582367 +227924,8947,japan,1352582334 +227924,8947,not remotely scary,1352582325 +227924,8947,remake,1352582361 +227924,8947,unscary cat like sounds,1352582409 +227924,8950,bleak,1290816724 +227924,8950,creepy,1290816726 +227924,8950,eerie,1290816728 +227924,8950,grim,1290816730 +227924,8950,imaginary friend,1290816731 +227924,8950,memory,1290816702 +227924,8950,Nudity (Topless),1290816719 +227924,8950,paranoid,1290816734 +227924,8950,post-traumatic stress disorder,1290816736 +227924,8950,powerful ending,1290816712 +227924,8950,psychology,1290816705 +227924,8950,schizophrenia,1290816707 +227924,8950,stylized,1290816710 +227924,8950,twist ending,1290816714 +227924,27611,not a movie,1365886811 +227924,27721,french,1336864127 +227924,27721,investigation,1336864171 +227924,27721,large cast,1336864187 +227924,27721,persistence,1336864063 +227924,27721,Romance,1336864060 +227924,27721,sympathetic characters,1336864250 +227924,27721,Trench Warfare,1336864065 +227924,27721,true love,1336864067 +227924,27721,Twenties,1336864219 +227924,27721,war,1336864151 +227924,27721,World War I,1336864069 +227924,27773,conspiracy,1424564086 +227924,27773,Korea,1424564080 +227924,27773,korean,1424563954 +227924,27773,prison,1424563979 +227924,27773,revenge,1424563928 +227924,27773,robinsonade,1424563994 +227924,27773,twist ending,1424563925 +227924,27773,vengeance,1424563931 +227924,33683,French,1342909948 +227924,33683,gore,1342909869 +227924,33683,homophobia,1342909924 +227924,33683,homophobic,1342909934 +227924,33683,horror,1342909881 +227924,33683,killer,1342909908 +227924,33683,New French Extremism,1343869254 +227924,33683,plot twist,1342909841 +227924,33683,slasher,1342909888 +227924,33683,tension,1342909876 +227924,33683,twist ending,1342909897 +227924,36517,Africa,1452994607 +227924,36517,Big Pharma,1452994714 +227924,36517,british,1452994622 +227924,36517,conspiracy,1452994604 +227924,36517,corruption,1452994611 +227924,36517,diplomacy,1452994702 +227924,36517,drama,1452994740 +227924,36517,drug,1452994716 +227924,36517,drugs,1452994718 +227924,36517,flashbacks,1452994724 +227924,36517,greed,1452994720 +227924,36517,Kenya,1452994722 +227924,36517,relationship,1452994704 +227924,36517,social commentary,1452994610 +227924,36517,spies,1452994711 +227924,36517,spy,1452994709 +227924,36517,wife,1452994706 +227924,36535,dog,1343780907 +227924,36535,drama,1343780948 +227924,36535,family,1343780952 +227924,36535,Holocaust,1343780931 +227924,36535,jews,1343780920 +227924,36535,nature,1343780966 +227924,36535,stereotypes,1343780927 +227924,36535,ukraine,1343780907 +227924,37857,artistic,1310345173 +227924,37857,beautiful,1310345175 +227924,37857,computer animation,1310345205 +227924,37857,dream,1310345209 +227924,37857,dreamlike,1310345211 +227924,37857,Jim Henson,1310345192 +227924,37857,neil gaiman,1310345193 +227924,37857,visually appealing,1310345199 +227924,40597,cancer,1333729734 +227924,40597,drama,1333729745 +227924,40597,road trip,1333729741 +227924,40597,romance,1333729808 +227924,40723,atmospheric,1310344458 +227924,40723,australia,1310344396 +227924,40723,cult film,1310344865 +227924,40723,goretastic,1310345718 +227924,40723,loosely based on true events,1333729926 +227924,40723,ominous,1310345680 +227924,40723,paranoia,1310344428 +227924,40723,paranoid,1310344435 +227924,40723,scary as hell,1310344403 +227924,40723,suspense,1310344440 +227924,40723,tense,1310344834 +227924,40723,tension,1310344842 +227924,40723,trust no one,1310344406 +227924,40723,unconventional,1310344486 +227924,40723,violent,1310344474 +227924,40723,visual,1310344417 +227924,42723,action,1316301592 +227924,42723,brutal,1316301467 +227924,42723,horror,1316301456 +227924,42723,Nudity,1316301448 +227924,42723,Nudity (Topless),1316301509 +227924,42723,payback,1316301532 +227924,42723,revenge,1316301520 +227924,42723,tits and power tools,1316301477 +227924,42723,unlikeable characters,1316301565 +227924,45003,camera,1417305893 +227924,45003,haunting,1417305861 +227924,45003,horror,1417305837 +227924,45003,photography,1417305867 +227924,45003,rape,1417305914 +227924,45003,revenge,1417305851 +227924,45003,students,1417305873 +227924,45003,thai,1417305842 +227924,45003,Thailand,1417305846 +227924,46578,beauty pageant,1438562241 +227924,46578,comedy,1438562229 +227924,46578,dark comedy,1438562212 +227924,46578,drugs,1438562352 +227924,46578,dysfunctional family,1438562219 +227924,46578,family,1438562238 +227924,46578,feel-good,1438562231 +227924,46578,funny,1438562234 +227924,46578,heartwarming,1438562244 +227924,46578,heroin,1438562348 +227924,46578,homosexuality,1438562275 +227924,46578,inspirational,1438562236 +227924,46578,Nietzche,1438562257 +227924,46578,off-beat comedy,1438562225 +227924,46578,road movie,1438562246 +227924,46578,road trip,1438562222 +227924,46578,social commentary,1438562220 +227924,46578,suicide,1438562259 +227924,46578,underdog,1438562293 +227924,46578,underdogs,1438562302 +227924,46976,actually funny,1335658368 +227924,46976,baking,1335658366 +227924,46976,books,1335658405 +227924,46976,fantasy,1335658408 +227924,46976,heartbreaking,1335658370 +227924,46976,heartwarming,1335658372 +227924,46976,love,1335658378 +227924,46976,metaphysics,1335658410 +227924,46976,modern fantasy,1335658380 +227924,46976,narrated,1335658412 +227924,46976,punk,1335658415 +227924,46976,quirky,1335658392 +227924,46976,romance,1335658418 +227924,46976,touching,1335658394 +227924,46976,writing,1335658396 +227924,48043,atmospheric,1426890917 +227924,48043,coping,1426890995 +227924,48043,death,1426890875 +227924,48043,disease,1426890931 +227924,48043,immortality,1426890912 +227924,48043,love,1426890886 +227924,48043,maya,1426890975 +227924,48043,mayan,1426890969 +227924,48043,sacrifice,1426890985 +227924,48043,sci-fi,1426890867 +227924,48043,space,1426891005 +227924,48043,spain,1426890934 +227924,48043,time travel,1426890942 +227924,48043,timelines,1426890961 +227924,48304,adventure,1343949133 +227924,48304,chase,1343949135 +227924,48304,epic adventure,1343949139 +227924,48304,history,1343949148 +227924,48304,indians,1343949238 +227924,48304,mayan,1343949250 +227924,48304,menacing,1343949172 +227924,48304,Native Americans,1343949261 +227924,48304,survival,1343949198 +227924,48304,underdog,1343949189 +227924,48394,atmospheric,1310344998 +227924,48394,fairy tale,1310345008 +227924,48394,fantasy,1310345010 +227924,48394,history,1310345011 +227924,48394,imagination,1310345013 +227924,48394,mythology,1310345015 +227924,48394,stylized,1310345000 +227924,48394,world war II,1310345006 +227924,48738,Africa,1440806373 +227924,48738,based on a true story,1440806385 +227924,48738,dictatorship,1440806397 +227924,48738,Doctor,1440806456 +227924,48738,Drama,1440806430 +227924,48738,genocide,1440806376 +227924,48738,Great acting,1440806444 +227924,48738,History,1440806380 +227924,48738,medicine,1440806464 +227924,48738,Military,1440806475 +227924,48738,Totalitarian regime,1440806417 +227924,48738,Uganda,1440806387 +227924,48738,violent,1440806383 +227924,48774,apocalypse,1359296818 +227924,48774,England,1359296849 +227924,48774,epidemic,1359296860 +227924,48774,future,1359296836 +227924,48774,futuristic,1359296931 +227924,48774,infertility,1359296848 +227924,48774,marijuana,1359296917 +227924,48774,pregnancy,1359296841 +227924,48774,pro-life,1359296877 +227924,48774,science fiction,1359296948 +227924,48774,survival,1359296854 +227924,48774,terrorism,1359296844 +227924,50912,Episode cinema,1343520231 +227924,50912,episodic,1343520223 +227924,50912,France,1343520209 +227924,50912,French,1343520204 +227924,50912,love,1343520259 +227924,50912,Paris,1343520214 +227924,50912,romance,1343520274 +227924,50912,romantic,1343520274 +227924,50912,variations on a theme,1343520305 +227924,52328,atmospheric,1342306186 +227924,52328,cinematography,1342306151 +227924,52328,great soundtrack,1342306148 +227924,52328,sci-fi,1342306165 +227924,52328,space,1342306169 +227924,52328,suicide,1342306173 +227924,52952,atmospheric,1365297870 +227924,52952,bittersweet,1365297871 +227924,52952,coming of age,1365297877 +227924,52952,England,1365297879 +227924,52952,friendship,1365297880 +227924,52952,racism,1365297883 +227924,52952,skinhead,1365297885 +227924,53318,art students,1365297610 +227924,53318,bad soundtrack,1365297766 +227924,53318,british,1365297616 +227924,53318,fantasy,1365297706 +227924,53318,nudity,1365297621 +227924,53318,quirky,1365297650 +227924,53318,romance,1365297778 +227924,53318,slackers,1365297643 +227924,53318,supermarket,1365297646 +227924,53318,superpowers,1365297721 +227924,53318,time,1365297683 +227924,53318,time travel,1365297638 +227924,53326,countryside,1343869227 +227924,53326,haunting,1343869197 +227924,53326,intruder,1343869179 +227924,53326,New French Extremism,1343869188 +227924,53326,realistic,1343869207 +227924,53326,survival,1343869174 +227924,53352,New French Extremism,1414340564 +227924,53352,New French Extremity,1414340564 +227924,55199,child actor,1354414014 +227924,55199,france,1354413999 +227924,55199,predictable,1354413992 +227924,55199,thriller,1354413983 +227924,55444,biography,1368034130 +227924,55444,black and white,1368034132 +227924,55444,bleak,1368034242 +227924,55444,britain,1368034205 +227924,55444,cinematography,1368034134 +227924,55444,dark,1368034298 +227924,55444,epilepsy,1368034141 +227924,55444,gothic,1368034201 +227924,55444,historical,1368034222 +227924,55444,music,1368034158 +227924,55444,musicians,1368034180 +227924,55444,rock,1368034163 +227924,55444,sad,1368034229 +227924,55444,suicide,1368034168 +227924,55444,true story,1368034184 +227924,55820,American,1451859727 +227924,55820,atmospheric,1451859702 +227924,55820,border,1451859883 +227924,55820,cars,1451859778 +227924,55820,crime,1451859676 +227924,55820,criminal investigation,1451859820 +227924,55820,criminals,1451859831 +227924,55820,desert,1451859823 +227924,55820,dogs,1451859916 +227924,55820,drama,1451859716 +227924,55820,drug dealing,1451859769 +227924,55820,escape,1451859902 +227924,55820,hitman,1451859682 +227924,55820,husband-wife relationship,1451859852 +227924,55820,Mexico,1451859882 +227924,55820,money,1451859791 +227924,55820,police,1451859744 +227924,55820,sheriff,1451859821 +227924,55820,slow paced,1451859684 +227924,55820,tension,1451859686 +227924,55820,Texas,1451859731 +227924,55820,thriller,1451859668 +227924,55820,tracking device,1451859827 +227924,55820,trailer,1451859810 +227924,55820,violent,1451859675 +227924,55820,white trash,1451859832 +227924,55820,wife,1451859854 +227924,56563,design,1310345457 +227924,56563,elitism,1310345528 +227924,56563,graphic design,1310345510 +227924,56563,interviews,1310345483 +227924,56563,long,1310345460 +227924,56563,many interviews,1310345490 +227924,56563,modernism,1310345493 +227924,56563,nerdy,1310345517 +227924,56563,noncommittal,1310345496 +227924,56563,pretentious,1310345540 +227924,56563,typography,1310345471 +227924,58297,apocalypse,1322277129 +227924,58297,epidemic,1322277149 +227924,58297,futuristic,1322277153 +227924,58297,Girl Power,1322277133 +227924,58297,heroine in tight suit,1322277157 +227924,58297,post-apocalyptic,1322277136 +227924,58297,sci-fi,1322277162 +227924,58297,virus,1322277168 +227924,58964,childbirth,1343869132 +227924,58964,extremely violent,1343869092 +227924,58964,feminism,1343869104 +227924,58964,french,1343869150 +227924,58964,gore,1401561545 +227924,58964,gory,1401561550 +227924,58964,New French Extremism,1343869088 +227924,58964,parenthood,1343869142 +227924,58964,revenge,1343869122 +227924,58964,splatter,1343869115 +227924,58964,survival,1343869111 +227924,58964,violent,1343869096 +227924,60684,1980s,1315704514 +227924,60684,Adaptation,1315704517 +227924,60684,alan moore,1315704518 +227924,60684,alternate reality,1315704479 +227924,60684,based on a comic,1315704545 +227924,60684,cinematography,1315704510 +227924,60684,dystopia,1315704488 +227924,60684,music,1315704531 +227924,60684,nuclear war,1315704491 +227924,60684,Nudity (Topless),1315704493 +227924,60684,sci-fi,1315704496 +227924,60684,slow motion,1315704537 +227924,60684,social commentary,1315704497 +227924,60684,stylized,1315704499 +227924,60684,superhero,1315704500 +227924,60684,vigilantism,1315704502 +227924,61240,adolescence,1321144583 +227924,61240,atmospheric,1321144548 +227924,61240,Beautiful,1321144593 +227924,61240,bittersweet,1321144587 +227924,61240,horror,1321144554 +227924,61240,outcast,1321144603 +227924,61240,strange,1321144617 +227924,61240,suburbia,1321144620 +227924,61240,swedish,1321144551 +227924,61240,vampires,1321144575 +227924,61240,violence,1321144580 +227924,62203,bloody,1325712694 +227924,62203,ending,1325712748 +227924,62203,extremely violent,1325712702 +227924,62203,martyrdom,1325712719 +227924,62203,New French Extremism,1343869366 +227924,62203,New French Extremity,1343869377 +227924,62203,no sequel,1325712736 +227924,62203,plot twist,1325712714 +227924,62203,torture,1325712721 +227924,62203,unusual,1325712726 +227924,62203,violent,1325712730 +227924,63189,atmospheric,1310344904 +227924,63189,better than expected,1310344880 +227924,63189,dreamlike,1310344979 +227924,63189,Finnish,1310344884 +227924,63189,horror,1310344887 +227924,63189,mysticism,1310344889 +227924,63189,revenge,1310344965 +227924,63189,sauna,1310344893 +227924,63189,soldier,1310344895 +227924,63189,visual,1310344934 +227924,63189,visually appealing,1310344947 +227924,65514,action,1430684401 +227924,65514,asia,1430684512 +227924,65514,biography,1430684408 +227924,65514,children,1430684430 +227924,65514,China,1430684404 +227924,65514,chinese,1430684501 +227924,65514,chinese martial arts,1430684481 +227924,65514,cotton,1430684436 +227924,65514,distorted representation of history,1430684413 +227924,65514,drama,1430684521 +227924,65514,education,1430684434 +227924,65514,factory,1430684439 +227924,65514,family,1430684427 +227924,65514,fighting,1430684548 +227924,65514,historical,1430684452 +227924,65514,history,1430684446 +227924,65514,japanese,1430684504 +227924,65514,kung fu,1430684398 +227924,65514,martial arts,1430684395 +227924,65514,occupation,1430684442 +227924,65514,self-defence,1430684487 +227924,65514,violence,1430684539 +227924,65514,wife,1430684460 +227924,65514,Wing Chun,1430684415 +227924,65514,Wing Tsun,1430684469 +227924,66090,british,1343610149 +227924,66090,chase,1343610165 +227924,66090,chavs,1343610167 +227924,66090,horror,1343610192 +227924,66090,intense,1343610173 +227924,66090,survival,1343610198 +227924,66090,twist,1343610183 +227924,66310,bad acting,1382184281 +227924,66310,countryside,1382184232 +227924,66310,family,1382184236 +227924,66310,France,1382184257 +227924,66310,immigrants,1382184267 +227924,66310,Nazis,1382184248 +227924,66310,New French Extremism,1382184209 +227924,66310,pregnancy,1382184367 +227924,66310,unrealistic,1382184346 +227924,66310,violence,1382184213 +227924,68157,black comedy,1321754762 +227924,68157,episodic,1321754807 +227924,68157,revenge,1321754756 +227924,68157,violence,1321754779 +227924,68157,World War II,1321754759 +227924,68237,artificial intelligence,1317517254 +227924,68237,death,1317517261 +227924,68237,dialogue driven,1317517310 +227924,68237,directorial debut,1317517266 +227924,68237,drama,1317517311 +227924,68237,dystopia,1317517268 +227924,68237,future,1317517269 +227924,68237,great soundtrack,1317517335 +227924,68237,Kevin Spacey,1317517271 +227924,68237,melancholy,1317517300 +227924,68237,moon,1317517272 +227924,68237,plot twist,1317517274 +227924,68237,psychological,1317517275 +227924,68237,Robinsonade,1442612464 +227924,68237,sad,1317517290 +227924,68237,sad but good,1317517279 +227924,68237,Sci-fi,1317517281 +227924,68237,science,1317517319 +227924,68237,space,1317517283 +227924,68237,technology,1317517320 +227924,68237,twist ending,1317517285 +227924,69122,comedy,1311379392 +227924,69122,Drinking,1311379417 +227924,69122,flashbacks,1311379463 +227924,69122,funny,1311379395 +227924,69122,Heather Graham,1311379514 +227924,69122,hot girls!,1311379507 +227924,69122,hotel,1311379421 +227924,69122,Las Vegas,1311379425 +227924,69122,strippers,1311379444 +227924,69122,structure,1311379448 +227924,69122,Zach Galifianakis,1311379518 +227924,69746,alan moore,1315704578 +227924,69746,anime-style,1315704599 +227924,69746,obvious,1315704619 +227924,69746,spin-off,1315704632 +227924,69757,architecture,1387762540 +227924,69757,bittersweet,1387762491 +227924,69757,break-up,1387762639 +227924,69757,cute,1387762667 +227924,69757,destiny,1387762652 +227924,69757,greeting card business,1387762559 +227924,69757,greeting cards,1387762548 +227924,69757,hipster,1387762513 +227924,69757,Los Angeles,1387762587 +227924,69757,love,1387762564 +227924,69757,nonlinear,1387762478 +227924,69757,office,1387762610 +227924,69757,relationships,1387762522 +227924,69757,romance,1387762569 +227924,69757,stylized,1387762520 +227924,71282,America,1381687213 +227924,71282,business,1381687204 +227924,71282,capitalism,1381687166 +227924,71282,corporations,1381687223 +227924,71282,documentary,1381687172 +227924,71282,farming,1381687208 +227924,71282,food,1381687176 +227924,71282,Monsanto,1381687181 +227924,71282,vegetarians,1381687193 +227924,71379,atmospheric,1321482796 +227924,71379,ending,1321482830 +227924,71379,Handycam,1321482793 +227924,71379,horror,1321482855 +227924,71379,low budget,1321482794 +227924,72011,airplane,1387678963 +227924,72011,airport,1387678961 +227924,72011,alienation,1387679020 +227924,72011,business,1387678965 +227924,72011,corporate,1387678980 +227924,72011,infidelity,1387679091 +227924,72011,loneliness,1387678990 +227924,72011,love story,1387678993 +227924,72011,romance,1387678997 +227924,72011,self discovery,1387679001 +227924,72011,travel,1387679003 +227924,73017,Action,1402794579 +227924,73017,colours,1402794577 +227924,73017,England,1402794553 +227924,73017,London,1402794600 +227924,73017,martial arts,1402794557 +227924,73017,mystery,1402794587 +227924,73017,Sherlock Holmes,1402794591 +227924,73240,drama,1333729753 +227924,73240,family,1333729780 +227924,73240,Finnish,1333729761 +227924,73240,history,1333729768 +227924,73240,romance,1333729799 +227924,74370,atmospheric,1334450948 +227924,74370,eighties,1334450966 +227924,74370,horror,1334450970 +227924,74370,retro,1334450959 +227924,74370,Satanic Cult,1334450955 +227924,74370,satanism,1334450985 +227924,74458,asylum,1421540615 +227924,74458,atmospheric,1421540604 +227924,74458,cinematography,1421540631 +227924,74458,concentration camp,1421540666 +227924,74458,ending twist,1421540610 +227924,74458,Fifties,1421540708 +227924,74458,Horror,1421540717 +227924,74458,insanity,1421540597 +227924,74458,intense,1421540624 +227924,74458,island,1421540639 +227924,74458,Mental Institution,1421540739 +227924,74458,Meta,1421540727 +227924,74458,mindfuck,1421540626 +227924,74458,mystery,1421540600 +227924,74458,nazis,1421540636 +227924,74458,plot twist,1421540607 +227924,74458,psychological,1421540591 +227924,74458,Psychological Thriller,1421540641 +227924,74458,stylized,1421540613 +227924,74458,thought-provoking,1421540644 +227924,74458,twist ending,1421540594 +227924,74458,twisted ending,1421540629 +227924,74458,Unnerving,1421540698 +227924,74458,World War II,1421540651 +227924,76251,coming of age,1310345333 +227924,76251,great soundtrack,1310345306 +227924,76251,high school,1310345309 +227924,76251,humor,1310345311 +227924,76251,humorous,1310345313 +227924,76251,nerdy,1310345345 +227924,76251,superhero,1310345299 +227924,76251,vigilante,1310345302 +227924,76251,violence,1310345304 +227924,76738,conversation,1439165467 +227924,76738,documentary,1439165462 +227924,76738,Finnish,1439165443 +227924,76738,male nudity,1439165445 +227924,76738,sauna,1439165447 +227924,76827,dark humor,1333729844 +227924,76827,finnish,1333729826 +227924,76827,humor,1333729821 +227924,78574,country,1364087189 +227924,78574,countryside,1364087199 +227924,78574,death,1364087152 +227924,78574,drama,1364087154 +227924,78574,drugs,1364087157 +227924,78574,family relationships,1364087159 +227924,78574,father daughter relationship,1364087162 +227924,78574,neighbors,1364087169 +227924,78574,realism,1364087175 +227924,78574,rural,1364087206 +227924,78574,teenage girl,1364087179 +227924,79132,action,1316966876 +227924,79132,cinematography,1316966849 +227924,79132,complicated,1316966854 +227924,79132,drama,1316966883 +227924,79132,dreamlike,1316966855 +227924,79132,ensemble cast,1316966859 +227924,79132,great soundtrack,1316966887 +227924,79132,heist,1316966863 +227924,79132,Leonardo DiCaprio,1316966866 +227924,79132,memory,1316966869 +227924,79132,sci-fi,1316966925 +227924,79132,science fiction,1316966925 +227924,79132,thought-provoking,1316966872 +227924,79132,visually appealing,1316966873 +227924,79536,1960s,1344904341 +227924,79536,alcohol,1344904342 +227924,79536,bootlegging,1344904344 +227924,79536,crime,1344904368 +227924,79536,crime family,1344904376 +227924,79536,drama,1344904584 +227924,79536,drugs,1344904346 +227924,79536,ensemble cast,1344904570 +227924,79536,family,1344904481 +227924,79536,Finnish,1344904387 +227924,79536,gangs,1344904348 +227924,79536,Helsinki,1344904422 +227924,79536,history,1344904404 +227924,79536,local flavor,1344904517 +227924,79536,porn industry,1344904504 +227924,79536,prison,1344904464 +227924,79536,tragic,1344904491 +227924,79868,atmospheric,1320533453 +227924,79868,British,1320533485 +227924,79868,Dark,1320533441 +227924,79868,horror,1320533507 +227924,79868,individualism,1320533525 +227924,79868,outcast,1320533470 +227924,79868,survival,1320533563 +227924,79868,twist,1320533499 +227924,80454,based on a true story,1344983433 +227924,80454,Finnish,1344983535 +227924,80454,heartwarming,1344983493 +227924,80454,historical,1344983520 +227924,80454,history,1344983527 +227924,80454,lobotomy,1344983436 +227924,80454,mental hospital,1344983439 +227924,80454,mental illness,1344983428 +227924,80454,princess,1344983431 +227924,80454,schizophrenia,1344983444 +227924,80454,tragic,1344983459 +227924,80454,underdog,1344983474 +227924,80846,bad ending,1383440470 +227924,80846,christianity,1383440442 +227924,80846,compact,1383440479 +227924,80846,devil,1383440404 +227924,80846,elevator,1383440415 +227924,80846,horror,1383440390 +227924,80846,satan,1383440400 +227924,80846,skyscraper,1383440499 +227924,81591,alter ego,1423960154 +227924,81591,ballet,1423960126 +227924,81591,dance,1423960124 +227924,81591,dark,1423960122 +227924,81591,drama,1423960163 +227924,81591,hallucinations,1423960239 +227924,81591,horror,1423960135 +227924,81591,insanity,1423960177 +227924,81591,madness,1423960143 +227924,81591,mental illness,1423960137 +227924,81591,music,1423960161 +227924,81591,obsession,1423960149 +227924,81591,peer pressure,1423960200 +227924,81591,power play,1423960250 +227924,81591,psychological,1423960118 +227924,81591,self-mutilation,1423960192 +227924,81591,stylized,1423960169 +227924,81932,american,1438647453 +227924,81932,boxing,1438647429 +227924,81932,brothers,1438647437 +227924,81932,drug addiction,1438647439 +227924,81932,family,1438647479 +227924,81932,family relationships,1438647435 +227924,81932,martial arts,1438647464 +227924,81932,Massachusetts,1438647446 +227924,81932,relationship,1438647488 +227924,81932,romance,1438647492 +227924,81932,sports,1438647472 +227924,81932,training,1438647527 +227924,81932,true story,1438647426 +227924,81932,violence,1438647519 +227924,81932,white trash,1438647441 +227924,82926,Based on a TV show,1384045557 +227924,82926,canoeing,1384045658 +227924,82926,children,1384045648 +227924,82926,comedy,1384045609 +227924,82926,Crazy,1384045510 +227924,82926,Danish,1384045502 +227924,82926,dark comedy,1384045623 +227924,82926,father-son relationship,1384045534 +227924,82926,fatherhood,1384045528 +227924,82926,hospital,1384045687 +227924,82926,prostitution,1384045578 +227924,82926,recklessness,1384045594 +227924,82926,relationships,1384045520 +227924,82926,road trip,1384045667 +227924,83134,America,1382831510 +227924,83134,Appalachia,1382831520 +227924,83134,bad luck,1382831612 +227924,83134,camping,1382831534 +227924,83134,comedy,1382831454 +227924,83134,Country,1382831561 +227924,83134,countryside,1382831465 +227924,83134,forest,1382831458 +227924,83134,hillbillies,1382831480 +227924,83134,parody,1382831473 +227924,83134,romance,1382831549 +227924,83134,scream queens,1382831494 +227924,83134,slasher,1382831468 +227924,83134,teen slasher,1382831487 +227924,84152,capitalism,1404608103 +227924,84152,drugs,1404607988 +227924,84152,future,1404608082 +227924,84152,medicine,1404608133 +227924,84152,near future,1404608000 +227924,84152,pop soundtrack,1404608045 +227924,84152,sci-fi,1404607991 +227924,84152,smart drugs,1404608035 +227924,84152,transhumanism,1404608148 +227924,84980,Comedy,1340490408 +227924,84980,crazy,1340490496 +227924,84980,Drama,1340490412 +227924,84980,Finnish,1340490457 +227924,84980,Lapland,1340490446 +227924,84980,road movie,1340490556 +227924,84980,road trip,1340490566 +227924,84980,Romance,1340490416 +227924,84980,underdog,1340490428 +227924,85412,atmospheric,1383355676 +227924,85412,cover up,1383355698 +227924,85412,fantasy,1383355282 +227924,85412,found footage,1383355173 +227924,85412,government,1383355194 +227924,85412,horror,1383355204 +227924,85412,hunting,1383355213 +227924,85412,mockumentary,1383355175 +227924,85412,monster,1383355177 +227924,85412,nature,1383355680 +227924,85412,nordic,1383355685 +227924,85412,Norway,1383355223 +227924,85412,norwegian,1383355179 +227924,85412,outdoors,1383355217 +227924,85412,scenic,1383355692 +227924,85412,trolls,1383355231 +227924,85414,adventure,1381625683 +227924,85414,anti-authoritarian,1381625722 +227924,85414,atonement,1381625773 +227924,85414,happy ending,1381625660 +227924,85414,military,1381625615 +227924,85414,mindfuck,1381625782 +227924,85414,parallel universe,1381625605 +227924,85414,romance,1381625691 +227924,85414,sci-fi,1381625625 +227924,85414,suspense,1381625676 +227924,85414,terrorism,1381625647 +227924,85414,time loop,1381625638 +227924,85414,time travel,1381625630 +227924,85414,trains,1381625644 +227924,85788,astral projection,1442011640 +227924,85788,children,1442011564 +227924,85788,cliche,1442011550 +227924,85788,coma,1442011634 +227924,85788,demonic possession,1442011707 +227924,85788,demons,1442011699 +227924,85788,dreams,1442011636 +227924,85788,exorcism,1442011683 +227924,85788,family,1442011567 +227924,85788,ghosts,1442011538 +227924,85788,haunted house,1442011542 +227924,85788,haunting,1442011670 +227924,85788,middle class family,1442011588 +227924,85788,musician,1442011591 +227924,85788,no CGI,1442011556 +227924,85788,paranormal investigators,1442011713 +227924,85788,parenthood,1442011604 +227924,85788,parents,1442011601 +227924,85788,supernatural,1442011540 +227924,85788,twists,1442011611 +227924,86320,ad agency,1452041794 +227924,86320,advertising,1452041795 +227924,86320,apocalypse,1452041617 +227924,86320,astronomy,1452041776 +227924,86320,Beethoven,1452041861 +227924,86320,children,1452041833 +227924,86320,classical music,1452041870 +227924,86320,copywriter,1452041792 +227924,86320,countryside,1452041840 +227924,86320,depression,1452041615 +227924,86320,Drama,1452041644 +227924,86320,end of the world,1452041623 +227924,86320,family,1452041788 +227924,86320,golf,1452041783 +227924,86320,horses,1452041777 +227924,86320,hotel,1452041781 +227924,86320,limo,1452041854 +227924,86320,mansion,1452041779 +227924,86320,marriage,1452041791 +227924,86320,neurotic,1452041801 +227924,86320,neuroticism,1452041799 +227924,86320,party,1452041785 +227924,86320,planets,1452041772 +227924,86320,riding,1452041881 +227924,86320,sense of futility,1452041640 +227924,86320,siblings,1452041627 +227924,86320,sisters,1452041642 +227924,86320,sleeping pills,1452041875 +227924,86320,slow,1452041635 +227924,86320,storylines,1452041806 +227924,86320,suicide,1452041877 +227924,86320,wealth,1452041845 +227924,86320,wedding,1452041786 +227924,87192,alien invasion,1451086483 +227924,87192,aliens,1451086471 +227924,87192,black comedy,1451086476 +227924,87192,block,1451086605 +227924,87192,British,1451086480 +227924,87192,children,1451086617 +227924,87192,drugs,1451086486 +227924,87192,England,1451086473 +227924,87192,gang,1451086604 +227924,87192,gangsters,1451086489 +227924,87192,ganja,1451086615 +227924,87192,invasion,1451086609 +227924,87192,London,1451086492 +227924,87192,police,1451086619 +227924,87192,poverty,1451086607 +227924,87192,reggae,1451086613 +227924,87192,robinsonade,1451086611 +227924,87192,teenagers,1451086602 +227924,87192,urban,1451086639 +227924,87304,dogs,1321659440 +227924,87304,drama,1321659426 +227924,87304,great acting,1321659397 +227924,87304,heartwarming,1321659483 +227924,87304,homosexuality,1321659413 +227924,87304,made me cry,1321659500 +227924,87304,realism,1321659431 +227924,88129,atmospheric,1382222075 +227924,88129,car chase,1382222077 +227924,88129,cars,1382222087 +227924,88129,cinematography,1382222089 +227924,88129,crime,1382222150 +227924,88129,eighties,1382222137 +227924,88129,great soundtrack,1382222091 +227924,88129,heist,1382222093 +227924,88129,Hollywood,1382222095 +227924,88129,Los Angeles,1382222097 +227924,88129,soundtrack,1382222129 +227924,88129,stylized,1382222107 +227924,88129,visually appealing,1382222112 +227924,88764,camp,1333729861 +227924,88764,campy,1333729855 +227924,88764,celebrities,1333729876 +227924,88764,comedy,1333729890 +227924,88764,Finnish,1333729895 +227924,88764,low budget,1333729868 +227924,89072,action,1381437485 +227924,89072,atmospheric,1381437105 +227924,89072,autumnal,1381437314 +227924,89072,cliche,1381437299 +227924,89072,coming of age,1381437129 +227924,89072,ensemble cast,1381437272 +227924,89072,horror,1381437395 +227924,89072,moderate violence,1381437502 +227924,89072,nihilism,1381437521 +227924,89072,post-apocalyptic,1381437115 +227924,89072,religion,1381437233 +227924,89072,robinsonade,1381437174 +227924,89072,survival,1381437140 +227924,89072,survival horror,1381437148 +227924,89072,survivalist,1381437155 +227924,89072,teenagers,1381437260 +227924,89072,vampire,1381437408 +227924,89072,vampires,1381437400 +227924,89072,zealots,1381437224 +227924,89745,action,1401573228 +227924,89745,agent,1401573333 +227924,89745,agents,1401573329 +227924,89745,aliens,1401573369 +227924,89745,american,1401573386 +227924,89745,bureaucracy,1401573348 +227924,89745,ensemble,1401573356 +227924,89745,ensemble cast,1401573226 +227924,89745,epic,1401573234 +227924,89745,government,1401573340 +227924,89745,invasion,1401573377 +227924,89745,Marvel,1401573221 +227924,89745,marvel comics,1401573403 +227924,89745,New York City,1401573224 +227924,89745,rollicking,1401573266 +227924,89745,Special Effects,1401573255 +227924,89745,superhero,1401573242 +227924,89745,superheroes,1401573280 +227924,89745,war,1401573315 +227924,90057,ambiguous,1450480494 +227924,90057,apocalyptic,1450480491 +227924,90057,apocalyptic storm,1450480497 +227924,90057,dreams,1450480499 +227924,90057,fatherhood,1450480536 +227924,90057,men,1450480538 +227924,90057,mental illness,1450480489 +227924,90057,nightmares,1450480525 +227924,90057,psychology,1450480493 +227924,90057,surprising,1450480502 +227924,90057,twist ending,1450480527 +227924,92259,based on a true story,1443312618 +227924,92259,classical music,1443312665 +227924,92259,disability,1443312621 +227924,92259,feel good movie,1443312615 +227924,92259,francais,1443312682 +227924,92259,french,1443312662 +227924,92259,friendship,1443312606 +227924,92259,funny,1443312613 +227924,92259,ghetto,1443312689 +227924,92259,millionaire,1443312696 +227924,92259,paralysis,1443312627 +227924,92259,rebel,1443312709 +227924,92259,sexuality,1443312631 +227924,92259,touching,1443312610 +227924,92259,underdog,1443312668 +227924,92259,unlikely friendships,1443312660 +227924,92309,asthma,1363391267 +227924,92309,atmospheric,1363391238 +227924,92309,ghosts,1363391199 +227924,92309,hotel,1363391169 +227924,92309,pacing,1363391249 +227924,92309,paranormal,1363391188 +227924,92309,retro,1363391211 +227924,92309,slackers,1363391178 +227924,92309,traditional,1363391286 +227924,92768,Comedy,1340406802 +227924,92768,coming of age,1340406829 +227924,92768,Drama,1340406807 +227924,92768,Finnish,1340406812 +227924,92768,Helsinki,1340406796 +227924,92768,nothing happens,1340406848 +227924,93475,1910s,1381016592 +227924,93475,atheism,1381016696 +227924,93475,atmospheric,1381016553 +227924,93475,British,1381016802 +227924,93475,children,1381016654 +227924,93475,family,1381016665 +227924,93475,Finlandia,1381016817 +227924,93475,ghost story,1381016562 +227924,93475,ghosts,1381016571 +227924,93475,horror,1381016580 +227924,93475,Netflix,1381016605 +227924,93475,occult,1381016688 +227924,93475,Period,1381016792 +227924,93475,school,1381016671 +227924,93475,twist ending,1381016619 +227924,93805,alternate history,1361035320 +227924,93805,chaotic,1361035304 +227924,93805,Finnish,1361035262 +227924,93805,German,1439165516 +227924,93805,invasion,1361035272 +227924,93805,nationalism,1361035279 +227924,93805,Nazis,1361035207 +227924,93805,parody,1361035250 +227924,93805,president,1361035292 +227924,93805,sci-fi,1361035335 +227924,93805,spaceships,1361035211 +227924,93840,clever,1370129898 +227924,93840,conspiracy,1370129902 +227924,93840,dark comedy,1370129904 +227924,93840,horror,1370129916 +227924,93840,meta,1370129955 +227924,93840,plot twist,1370129910 +227924,93840,sacrifice,1370129970 +227924,93840,surveillance,1370129949 +227924,93840,witty,1370129928 +227924,93840,zombies,1370129932 +227924,93855,america,1386376676 +227924,93855,cancer,1386376540 +227924,93855,coming of age,1386376587 +227924,93855,critical,1386376613 +227924,93855,dark comedy,1386376554 +227924,93855,ending,1386376558 +227924,93855,guns,1386376659 +227924,93855,killing spree,1386376906 +227924,93855,media,1386376627 +227924,93855,media satire,1386376638 +227924,93855,outsiders,1386376592 +227924,93855,righteous,1386376720 +227924,93855,satire,1386376538 +227924,93855,serial killer,1386376916 +227924,93855,social criticism,1386376535 +227924,93855,teenagers,1386376651 +227924,93855,terminal illness,1386376527 +227924,93855,underdog,1386376697 +227924,93855,underdogs,1386376709 +227924,94864,aliens,1450912846 +227924,94864,android,1450913000 +227924,94864,anthropologist,1450912976 +227924,94864,atmospheric,1450912905 +227924,94864,biologist,1450913006 +227924,94864,cave paintings,1450913011 +227924,94864,creation,1450912925 +227924,94864,cryogenic chambers,1450913027 +227924,94864,exploration,1450912879 +227924,94864,future,1450913002 +227924,94864,horror,1450912919 +227924,94864,intelligent design,1450912999 +227924,94864,prequel,1450912876 +227924,94864,religion,1450912872 +227924,94864,sci-fi,1450912852 +227924,94864,scientists,1450913003 +227924,94864,scifi,1450912848 +227924,94864,space travel,1450912850 +227924,94864,spaceship,1450913013 +227924,94864,technology,1450912855 +227924,94959,1960s,1431213792 +227924,94959,bittersweet,1431213717 +227924,94959,boy scouts,1431213742 +227924,94959,children,1431213754 +227924,94959,cinematography,1431213722 +227924,94959,coming of age,1431213724 +227924,94959,dialogue,1431213729 +227924,94959,diverse cast,1431213782 +227924,94959,dreamlike,1431213732 +227924,94959,first love,1431213812 +227924,94959,island,1431213740 +227924,94959,love story,1431213726 +227924,94959,orphans,1431213738 +227924,94959,quirky,1431213711 +227924,94959,relationship,1431213810 +227924,94959,scouting,1431213743 +227924,94959,small community,1431213801 +227924,94959,small town,1431213746 +227924,94959,underdog,1431213830 +227924,94959,underdogs,1431213829 +227924,95032,action,1339789517 +227924,95032,detective,1339789518 +227924,95032,film noir,1339789518 +227924,95032,Finnish,1339789518 +227924,95032,murder,1339789517 +227924,95032,murder investigation,1339789517 +227924,95032,Turku,1339789517 +227924,95032,violence,1339789517 +227924,95207,Action,1449957363 +227924,95207,America,1449957401 +227924,95207,Axe,1449957463 +227924,95207,Civil war,1449957404 +227924,95207,Dead child,1449957377 +227924,95207,History,1449957426 +227924,95207,Horror,1449957423 +227924,95207,Mother,1449957370 +227924,95207,Parenthood,1449957374 +227924,95207,Politics,1449957388 +227924,95207,President,1449957427 +227924,95207,Revenge,1449957433 +227924,95207,Shop,1449957436 +227924,95207,Slavery,1449957419 +227924,95207,Train,1449957454 +227924,95207,US history,1449957345 +227924,95207,Vampires,1449957425 +227924,96195,coming of age,1346458095 +227924,96195,Drama,1346458044 +227924,96195,Finnish,1346458067 +227924,96195,rebellion,1346458083 +227924,96195,teenagers,1346458106 +227924,96195,Young people,1346458056 +227924,96195,Youth,1346458060 +227924,96488,Apartheid,1381687235 +227924,96488,Detroit,1381687246 +227924,96488,Documentary,1381687264 +227924,96488,folk music,1381687269 +227924,96488,Music,1381687250 +227924,96488,Musicians,1381687257 +227924,96488,rockumentary,1381687283 +227924,96488,South Africa,1381687242 +227924,96488,underdog,1381687296 +227924,96610,alternate reality,1386467024 +227924,96610,assassin,1386467060 +227924,96610,children,1386467102 +227924,96610,dystopia,1386467091 +227924,96610,film noir,1386467054 +227924,96610,guns,1386467161 +227924,96610,hitman,1386467070 +227924,96610,organized crime,1386467005 +227924,96610,retro,1386467047 +227924,96610,sci-fi,1386467127 +227924,96610,scifi,1386467117 +227924,96610,time travel,1386467003 +227924,96610,tragedy,1386467040 +227924,96610,visually appealing,1386467042 +227924,96662,disability,1357592417 +227924,96662,documentary,1357592417 +227924,96662,Finland,1357592417 +227924,96662,Finnish,1357592417 +227924,96662,music,1357592417 +227924,96662,music documentary,1357592417 +227924,96662,musicians,1357592417 +227924,96662,punk,1357592417 +227924,96662,punk rock,1357592417 +227924,96829,cinematography,1426377328 +227924,96829,Danish,1426377287 +227924,96829,drama,1426377314 +227924,96829,falsely accused,1426377283 +227924,96829,hard to watch,1426377276 +227924,96829,hysteria,1426377299 +227924,96829,intelligent,1426377357 +227924,96829,misunderstanding,1426377377 +227924,96829,painful to watch,1426377273 +227924,96829,paranoia,1426377294 +227924,96829,peaceful,1426377339 +227924,96829,pedophilia,1426377279 +227924,96829,ruined lives,1426377291 +227924,96829,social rejection,1426377285 +227924,96829,strong theme,1426377384 +227924,96829,surprise endings,1426377394 +227924,96829,thought-inducing,1426377349 +227924,96829,underdogs,1426377307 +227924,97306,alcoholism,1404002290 +227924,97306,ensemble cast,1404002234 +227924,97306,gangsters,1404002253 +227924,97306,meta,1404002225 +227924,97306,psychopaths,1404002259 +227924,97306,screenwriting,1404002245 +227924,97306,violence,1404002265 +227924,97306,writers,1404002280 +227924,97938,Adventure,1446944903 +227924,97938,animals,1446944738 +227924,97938,Castaway,1446944825 +227924,97938,CGI,1446944919 +227924,97938,cinematography,1446944719 +227924,97938,Coming-of-age,1446944827 +227924,97938,Faithful adaptation,1446944863 +227924,97938,India,1446944823 +227924,97938,Mathematics,1446944865 +227924,97938,ocean,1446944730 +227924,97938,religion,1446944723 +227924,97938,religious overtones,1446944743 +227924,97938,Sea,1446944831 +227924,97938,Shipwreck,1446944829 +227924,97938,Storytelling,1446944869 +227924,97938,stranded,1446944732 +227924,97938,Survival,1446944752 +227924,97938,Tiger,1446944925 +227924,97938,Twist ending,1446944819 +227924,97938,visual effects,1446944736 +227924,97938,visually appealing,1446944715 +227924,97938,Zoo,1446944822 +227924,98017,Aging,1447462225 +227924,98017,Casting,1447462231 +227924,98017,Cello,1447462218 +227924,98017,classical music,1447462111 +227924,98017,Concice,1447462229 +227924,98017,Drama,1447462073 +227924,98017,Friendship,1447462202 +227924,98017,Great cast,1447462233 +227924,98017,Parenthood,1447462210 +227924,98017,Parkinsons disease,1447462223 +227924,98017,Quartet,1447462212 +227924,98017,Relationship,1447462205 +227924,98017,Relationships,1447462226 +227924,98017,School,1447462136 +227924,98017,Separation,1447462207 +227924,98017,Viola,1447462217 +227924,98017,Violin,1447462213 +227924,98017,Violinist,1447462215 +227924,98361,bordello,1450572482 +227924,98361,British,1450572456 +227924,98361,cancer,1450572379 +227924,98361,claws,1450572484 +227924,98361,coast,1450572457 +227924,98361,daughter,1450572448 +227924,98361,drama,1450572561 +227924,98361,horror,1450572563 +227924,98361,hotel,1450572465 +227924,98361,mother,1450572446 +227924,98361,piano,1450572468 +227924,98361,piano music,1450572470 +227924,98361,prostitution,1450572481 +227924,98361,sea,1450572459 +227924,98361,secret society,1450572479 +227924,98361,teenager,1450572385 +227924,98361,vampire,1450572452 +227924,98361,vampires,1450572454 +227924,99912,children,1364079993 +227924,99912,cliche,1364080031 +227924,99912,feral children,1364079943 +227924,99912,feral kid,1364079951 +227924,99912,forest,1364079915 +227924,99912,haunting,1364079985 +227924,99912,horror,1364079961 +227924,99912,mother,1364079930 +227924,99912,motherhood,1364079923 +227924,99912,Special Effects,1364079971 +227924,99917,abuse,1453593996 +227924,99917,artistic,1453593946 +227924,99917,atmospheric,1453593960 +227924,99917,Beautiful,1453593953 +227924,99917,bond,1453594001 +227924,99917,complicated,1453594166 +227924,99917,drama,1453594039 +227924,99917,dreamlike,1453594006 +227924,99917,drugs,1453593992 +227924,99917,farm,1453594045 +227924,99917,found sounds,1453594046 +227924,99917,hive mind,1453593993 +227924,99917,kidnapping,1453593994 +227924,99917,music,1453593957 +227924,99917,nature,1453594047 +227924,99917,pigs,1453594043 +227924,99917,public transportation,1453594005 +227924,99917,relationship,1453593999 +227924,99917,revenge,1453594041 +227924,99917,survivor,1453593998 +227924,99917,train,1453594003 +227924,99917,worms,1453594008 +227924,102125,action,1402097669 +227924,102125,armor,1402097796 +227924,102125,children,1402097696 +227924,102125,Christmas,1402097705 +227924,102125,comic book,1402097756 +227924,102125,exoskeleton,1402097772 +227924,102125,Marvel,1402097714 +227924,102125,robotic exoskeleton,1402097785 +227924,102125,robots,1402097764 +227924,102125,shipyard,1402097724 +227924,102125,superhero,1402097745 +227924,102125,terrorism,1402097710 +227924,103228,competition,1402188076 +227924,103228,giant monsters,1402187994 +227924,103228,giant robot,1402188146 +227924,103228,giant robots,1402187946 +227924,103228,international,1402187974 +227924,103228,Japan,1402188133 +227924,103228,manga,1402188138 +227924,103228,monsters,1402187988 +227924,103228,robots,1402187950 +227924,103228,romance,1402188106 +227924,103228,sci-fi,1402188122 +227924,103228,team,1402187963 +227924,103228,teamwork,1402187958 +227924,103228,underdogs,1402188095 +227924,103249,Aeroplane,1430007823 +227924,103249,airplane,1430007952 +227924,103249,Disaster,1430007827 +227924,103249,disease,1430007791 +227924,103249,epidemic,1430007799 +227924,103249,family,1430007625 +227924,103249,fast zombies,1430007620 +227924,103249,Helicopter,1430007825 +227924,103249,horror,1430007787 +227924,103249,international,1430007812 +227924,103249,international cast,1430007893 +227924,103249,Israel,1430007663 +227924,103249,Netflix,1430007829 +227924,103249,New York,1430007674 +227924,103249,pandemic,1430007589 +227924,103249,Parental ties,1430007701 +227924,103249,scifi,1430007817 +227924,103249,Scotland,1430007807 +227924,103249,South Korea,1430007687 +227924,103249,undead,1430007802 +227924,103249,United Nations,1430007633 +227924,103249,vaccine,1430007649 +227924,103249,zombies,1430007586 +227924,103688,1970s,1401409857 +227924,103688,70s,1401409853 +227924,103688,American,1401409966 +227924,103688,christian,1401409827 +227924,103688,Christianity,1401409819 +227924,103688,cliche,1401409790 +227924,103688,exorcism,1401409794 +227924,103688,family,1401409870 +227924,103688,family values,1401409972 +227924,103688,haunted house,1401409792 +227924,103688,haunting,1401409940 +227924,103688,Horror,1401409834 +227924,103688,Lili Taylor,1401409836 +227924,103688,paranormal investigators,1401409838 +227924,103688,possession,1401409799 +227924,103688,predictable,1401409907 +227924,103688,Satan,1401409951 +227924,103688,supernatural,1401409883 +227924,103688,witches,1401409889 +227924,104457,family,1416709000 +227924,104457,horror,1416708986 +227924,104457,house,1416708996 +227924,104457,intruder,1416708981 +227924,104457,slasher,1416708958 +227924,104457,survivalism,1416708969 +227924,104457,twist,1416709005 +227924,104457,violent,1416709027 +227924,104841,astronauts,1404517563 +227924,104841,atmospheric,1404517573 +227924,104841,beautiful,1404517551 +227924,104841,cinematography,1404517548 +227924,104841,fast paced,1404517585 +227924,104841,robinsonade,1404517604 +227924,104841,space,1404517558 +227924,106100,AIDS,1440895128 +227924,106100,American,1440895187 +227924,106100,Based on a true story,1440895156 +227924,106100,Cowboy,1440895326 +227924,106100,death,1440895141 +227924,106100,disease,1440895130 +227924,106100,Doctor,1440895256 +227924,106100,Doctors,1440895253 +227924,106100,Drama,1440895175 +227924,106100,Drugs,1440895198 +227924,106100,FDA,1440895299 +227924,106100,History,1440895276 +227924,106100,homophobia,1440895237 +227924,106100,homosexuality,1440895235 +227924,106100,Jurisdiction,1440895310 +227924,106100,Law,1440895192 +227924,106100,Rodeo,1440895181 +227924,106100,Sex,1440895204 +227924,106100,social commentary,1440895135 +227924,106100,Texas,1440895184 +227924,106100,transgender,1440895141 +227924,106100,true story,1440895161 +227924,106100,uplifting,1440895164 +227924,106100,witty dialogue,1440895168 +227924,106766,60's,1436658890 +227924,106766,cats,1436658875 +227924,106766,folk music,1436658868 +227924,106766,New York City,1436658877 +227924,106920,artificial intelligence,1410644786 +227924,106920,bittersweet,1410644800 +227924,106920,intelligent,1410644812 +227924,106920,love,1410644773 +227924,106920,retro-futuristic,1410644850 +227924,106920,romance,1410644779 +227924,106920,sci-fi,1410644829 +227924,106920,science fiction,1410644836 +227924,106920,ukulele,1410644818 +227924,107406,cannibalism,1422106053 +227924,107406,class commentary,1422106034 +227924,107406,environmental disaster,1422106086 +227924,107406,Plot twist,1422106095 +227924,107406,post-apocalyptic,1422105977 +227924,107406,revolution,1422105995 +227924,107406,sci-fi,1422106021 +227924,107406,scifi,1422106016 +227924,107406,snow,1422106069 +227924,107406,socialism,1422106046 +227924,107406,surreal,1422106001 +227924,107406,train,1422105986 +227924,107406,trains,1422105988 +227924,107406,violence,1422106026 +227924,107997,atmospheric,1414350394 +227924,107997,cannibalism,1414350394 +227924,107997,cannibals,1414350394 +227924,107997,children,1414350450 +227924,107997,colonial days,1414350419 +227924,107997,coming of age,1414350457 +227924,107997,country music,1414350582 +227924,107997,doctors,1414350532 +227924,107997,Drama,1414350559 +227924,107997,family,1414350400 +227924,107997,girl power,1414350469 +227924,107997,Honor,1414350434 +227924,107997,Horror,1414350556 +227924,107997,police,1414350543 +227924,107997,police investigation,1414350550 +227924,107997,secrets,1414350525 +227924,107997,sisters,1414350493 +227924,107997,small town,1414350590 +227924,107997,survival,1414350428 +227924,107997,United States,1414350408 +227924,109374,cinematography,1421451406 +227924,109374,eastern europe,1421451622 +227924,109374,europe,1421451616 +227924,109374,hipster,1421451420 +227924,109374,hotel,1421451377 +227924,109374,prison,1421451606 +227924,109374,quirky,1421451563 +227924,109374,whimsical,1421451576 +227924,110882,British,1444519869 +227924,110882,calling,1444519851 +227924,110882,cars,1444519784 +227924,110882,childbirth,1444519782 +227924,110882,children,1444519776 +227924,110882,concrete,1444519818 +227924,110882,construction,1444519810 +227924,110882,construction workers,1444519815 +227924,110882,dialogue driven,1444519760 +227924,110882,drama,1444519912 +227924,110882,driving,1444519860 +227924,110882,English,1444519871 +227924,110882,family,1444519858 +227924,110882,hands-free,1444519889 +227924,110882,infidelity,1444519801 +227924,110882,London,1444519868 +227924,110882,one man show,1444519763 +227924,110882,phone,1444519841 +227924,110882,phones,1444519844 +227924,110882,realtime,1444519765 +227924,110882,relationship,1444519861 +227924,110882,responsible,1444519770 +227924,110882,responsible driving,1444519899 +227924,110882,telephone,1444519848 +227924,111759,Alien Invasion,1438541224 +227924,111759,aliens,1438541231 +227924,111759,future,1438541236 +227924,111759,Reluctant Hero,1438541227 +227924,111759,sci-fi,1438541217 +227924,111759,time loop,1438541212 +227924,111759,time travel,1438541214 +227924,111759,war,1438541222 +227924,112183,acting,1443823952 +227924,112183,actors,1443823852 +227924,112183,alter ego,1443823815 +227924,112183,American,1443823889 +227924,112183,Broadway,1443823819 +227924,112183,career,1443823896 +227924,112183,cinematography,1443823837 +227924,112183,Crazy,1443823843 +227924,112183,daughter,1443823951 +227924,112183,drums,1443823928 +227924,112183,family,1443823906 +227924,112183,Hollywood,1443823933 +227924,112183,magical realism,1443823810 +227924,112183,movie business,1443823836 +227924,112183,one shot,1443823849 +227924,112183,single shot,1443823808 +227924,112183,smart,1443823840 +227924,112183,superhero,1443823855 +227924,112183,theater,1443823929 +227924,112183,theatre,1443823932 +227924,112552,career,1443912094 +227924,112552,career planning,1443912098 +227924,112552,coming-of-age,1443912025 +227924,112552,drama,1443911976 +227924,112552,drummer,1443912000 +227924,112552,drums,1443911995 +227924,112552,education,1443911984 +227924,112552,father,1443912118 +227924,112552,father-son relationship,1443912120 +227924,112552,jazz,1443911967 +227924,112552,jazz music,1443911987 +227924,112552,music,1443911970 +227924,112552,musicians,1443911973 +227924,112552,perfectionism,1443912075 +227924,112552,school drama,1443912009 +227924,112552,student,1443912046 +227924,112552,student life,1443912044 +227924,112552,students,1443912048 +227924,112552,teacher,1443912052 +227924,112552,Teacher Student,1443911992 +227924,112552,teaching,1443912053 +227924,112556,adultery,1444429843 +227924,112556,bar,1444430010 +227924,112556,Blackmail,1444429855 +227924,112556,complicated plot,1444430021 +227924,112556,crime,1444430001 +227924,112556,criminal investigation,1444429999 +227924,112556,failed marriage,1444430055 +227924,112556,false accusation,1444429837 +227924,112556,family,1444429896 +227924,112556,husband,1444429909 +227924,112556,Infidelity,1444429851 +227924,112556,marriage,1444430046 +227924,112556,murder,1444429839 +227924,112556,paranoia,1444430016 +227924,112556,parents,1444429984 +227924,112556,pregnancy,1444429991 +227924,112556,psychopath,1444430023 +227924,112556,Psychopathy,1444429829 +227924,112556,relationship,1444430039 +227924,112556,scheming,1444430014 +227924,112556,sociopath,1444430019 +227924,112556,suburban,1444429892 +227924,112556,thriller,1444429885 +227924,112556,twist,1444429871 +227924,112556,twist ending,1444429879 +227924,112556,wife,1444429904 +227924,113252,Childhood,1441491948 +227924,113252,Comedy,1441491961 +227924,113252,Dark comedy,1441491994 +227924,113252,Drugs,1441491955 +227924,113252,Family,1441491946 +227924,113252,Friendship,1441491960 +227924,113252,Ghosts,1441491965 +227924,113252,Haunted house,1441491944 +227924,113252,Haunting,1441491942 +227924,113252,Horror,1441491941 +227924,113252,Horror comedy,1441491963 +227924,113252,House Arrest,1441491939 +227924,113252,Junkie,1441491956 +227924,113252,Mental institution,1441491967 +227924,113252,Murder,1441491849 +227924,113252,New Zealand,1441491953 +227924,113252,Robinsonade,1442612378 +227924,113252,Secrets,1441491968 +227924,113252,Twist,1441491984 +227924,113252,Twist ending,1441491985 +227924,113252,Violence,1441491951 +227924,113313,american,1439163957 +227924,113313,California,1439163964 +227924,113313,cameras,1439163916 +227924,113313,chat rooms,1439163993 +227924,113313,found footage,1439163823 +227924,113313,hidden camera,1439163826 +227924,113313,horror,1439163835 +227924,113313,internet,1439163829 +227924,113313,privacy,1439163853 +227924,113313,satire,1439163842 +227924,113313,social media,1439163902 +227924,113313,stalker,1439163888 +227924,113313,study,1439163952 +227924,113313,torture,1439163846 +227924,113313,twist ending,1439163978 +227924,113313,university,1439163945 +227924,113313,webcam,1439163868 +227924,113565,born-again,1422749081 +227924,113565,brainwashing,1422749298 +227924,113565,charismatic leader,1422749155 +227924,113565,christianity,1422749043 +227924,113565,closed community,1422749129 +227924,113565,community,1422749110 +227924,113565,cult,1422749051 +227924,113565,drama,1422749058 +227924,113565,fake documentary,1422749066 +227924,113565,found footage,1422749072 +227924,113565,helicopter,1422749229 +227924,113565,horror,1422749095 +227924,113565,Jonestown,1422749090 +227924,113565,journalism,1422749214 +227924,113565,journalist,1422749218 +227924,113565,mass murder,1422749249 +227924,113565,suicide,1422749141 +227924,113640,Affair,1446336402 +227924,113640,Ambiance,1446336505 +227924,113640,Archivist,1446336491 +227924,113640,Babysitter,1446336370 +227924,113640,Canal,1446336354 +227924,113640,Children,1446336287 +227924,113640,Christmas,1446336391 +227924,113640,Cinematography,1446336457 +227924,113640,Drowning,1446336262 +227924,113640,Family,1446336367 +227924,113640,Film archive,1446336498 +227924,113640,Ghosts,1446336349 +227924,113640,Haunted house,1446336352 +227924,113640,Haunting,1446336225 +227924,113640,History,1446336362 +227924,113640,Homicide,1446336351 +227924,113640,Horror,1446336447 +227924,113640,Infidelity,1446336409 +227924,113640,Investigation,1446336396 +227924,113640,Irish,1446336363 +227924,113640,Love,1446336419 +227924,113640,murder,1446336235 +227924,113640,Murder investigation,1446336394 +227924,113640,Mystery,1446336460 +227924,113640,Occult,1446336360 +227924,113640,Police,1446336392 +227924,113640,Psychological,1446336228 +227924,113640,Sex,1446336417 +227924,113640,Son,1446336320 +227924,113640,Subconscious,1446336387 +227924,113640,Water,1446336259 +227924,113741,alternate universes,1450480656 +227924,113741,American,1450480643 +227924,113741,comet,1450480661 +227924,113741,drama,1450480655 +227924,113741,ensemble cast,1450480676 +227924,113741,friendship,1450480625 +227924,113741,night,1450480619 +227924,113741,parallel universe,1450480588 +227924,113741,paranoia,1450480659 +227924,113741,plotting,1450480657 +227924,113741,sci-fi,1450480586 +227924,113741,thirtysomethings,1450480637 +227924,113741,twist,1450480668 +227924,113862,action,1438992317 +227924,113862,army,1438992208 +227924,113862,atmosphere,1438992311 +227924,113862,diner,1438992284 +227924,113862,family,1438992668 +227924,113862,great soundtrack,1438992160 +227924,113862,guns,1438992266 +227924,113862,halloween,1438992276 +227924,113862,high school,1438992322 +227924,113862,horror,1438992313 +227924,113862,plot twist,1438992307 +227924,113862,smalltown,1438992297 +227924,113862,soundtrack,1438992682 +227924,113862,stranger,1438992306 +227924,113862,stylized,1438992166 +227924,113862,thriller,1438992309 +227924,113862,waitress,1438992282 +227924,115122,ball,1451171251 +227924,115122,clubbing,1451171245 +227924,115122,comedy,1451171143 +227924,115122,communal living,1451171242 +227924,115122,commune,1451171240 +227924,115122,dark comedy,1451171137 +227924,115122,documentary,1451171253 +227924,115122,fake accents,1451171255 +227924,115122,friendship,1451171244 +227924,115122,housemates,1451171238 +227924,115122,humor,1451171139 +227924,115122,mockumentary,1451171134 +227924,115122,New Zealand,1451171141 +227924,115122,shared apartment,1451171239 +227924,115122,vampires,1451171136 +227924,115122,werewolves,1451171247 +227924,115122,witches,1451171250 +227924,115569,American,1439079626 +227924,115569,cameramen,1439079695 +227924,115569,career,1439079698 +227924,115569,crime,1439079736 +227924,115569,crime reporter,1439079748 +227924,115569,dark,1439079577 +227924,115569,driving,1439079605 +227924,115569,horror,1439079615 +227924,115569,journalism,1439079588 +227924,115569,Los Angeles,1439079692 +227924,115569,news,1439079708 +227924,115569,self-schooled,1439079697 +227924,115569,sociopath,1439079594 +227924,115569,thriller,1439079610 +227924,115713,AI,1442612270 +227924,115713,Alienation,1442612435 +227924,115713,android,1442612336 +227924,115713,artificial intelligence,1442612253 +227924,115713,Deception,1442612439 +227924,115713,isolation,1442612289 +227924,115713,limited cast,1442612350 +227924,115713,Millionaire,1442612417 +227924,115713,Millionaires,1442612427 +227924,115713,philosophical,1442612262 +227924,115713,Rich people,1442612409 +227924,115713,Robot,1442612321 +227924,115713,robots,1442612265 +227924,115713,sci-fi,1442612255 +227924,115713,technology,1442612267 +227924,115713,thought provoking,1442612258 +227924,115713,turing test,1442612287 +227924,117434,Abuse,1446930794 +227924,117434,Acting,1446930782 +227924,117434,Actor,1446930906 +227924,117434,Backstabbing,1446930790 +227924,117434,Casting,1446930746 +227924,117434,Celebrity,1446930643 +227924,117434,Cult,1446930756 +227924,117434,Decay,1446930800 +227924,117434,Disease,1446930797 +227924,117434,Drama,1446930627 +227924,117434,Fame,1446930734 +227924,117434,Friendship,1446930682 +227924,117434,Hollywood,1446930770 +227924,117434,Horror,1446930750 +227924,117434,Masks,1446930873 +227924,117434,Murder,1446930802 +227924,117434,Revenge,1446930803 +227924,117434,Ritual,1446930879 +227924,117434,Satanism,1446930758 +227924,117434,Self-mutilation,1446930787 +227924,117434,Swimming pool,1446930792 +227924,117434,Thriller,1446930754 +227924,117434,Vomit,1446930799 +227924,117434,Wannabe,1446930645 +227924,117434,Wannabe actress,1446930780 +227924,120315,Addiction,1440942053 +227924,120315,Alcoholism,1440942039 +227924,120315,Comedy,1440942082 +227924,120315,Finland,1440942044 +227924,120315,Finnish,1440942041 +227924,120315,Friendship,1440942075 +227924,120315,Homosexuality,1440942070 +227924,120315,Romance,1440942078 +227924,120315,Violence,1440942057 +227924,120769,Alcoholism,1440941671 +227924,120769,Comedy,1440941658 +227924,120769,Diner,1440941600 +227924,120769,Drama,1440941656 +227924,120769,Finland,1440941724 +227924,120769,Finnish,1440941655 +227924,120769,Parenthood,1440941668 +227924,120769,Poverty,1440941626 +227924,120769,Rebellion,1440941642 +227924,120769,School,1440941588 +227924,120769,Single mom,1440941669 +227924,120769,Teacher,1440941592 +227924,120769,Teenagers,1440941636 +227924,120769,Vantaa,1440941660 +227924,120769,Working class,1440941676 +227924,121231,casual sex,1443220099 +227924,121231,chase,1443220154 +227924,121231,disfunctional family,1443220081 +227924,121231,escape,1443220126 +227924,121231,family,1443220102 +227924,121231,horror,1443220037 +227924,121231,intruder,1443220140 +227924,121231,limited cast,1443220131 +227924,121231,minimalist,1443220058 +227924,121231,Pacing,1443220043 +227924,121231,Retro,1443220041 +227924,121231,sex,1443220106 +227924,121231,sisterhood,1443220104 +227924,121231,stalking,1443220147 +227924,121231,Suburban,1443220121 +227924,121231,suspense,1443220049 +227924,121231,swimming,1443220110 +227924,121231,teenagers,1443220052 +227924,121231,teens,1443220072 +227924,121231,violence,1443220066 +227924,122882,action,1442700344 +227924,122882,adventure,1442700362 +227924,122882,apocalyptic,1442700392 +227924,122882,car chase,1442700373 +227924,122882,cars,1442700396 +227924,122882,chase,1442700376 +227924,122882,deformity,1442700411 +227924,122882,desert,1442700357 +227924,122882,dystopian,1442700352 +227924,122882,feminism,1442700353 +227924,122882,feminist,1442700365 +227924,122882,mutants,1442700406 +227924,122882,non-stop,1442700361 +227924,122882,post apocalypse,1442700346 +227924,122882,post apocalyptic,1442700367 +227924,122882,post-apocalyptic,1442700385 +227924,122882,sci-fi,1442700378 +227924,122882,special effects,1442700371 +227924,122882,underdog,1442700440 +227924,122882,violence,1442700381 +227924,122882,wasteland,1442700394 +227924,126923,band,1432838385 +227924,126923,celebrities,1432838376 +227924,126923,celebrity,1432838372 +227924,126923,documentary,1432838394 +227924,126923,Eurovision,1432838336 +227924,126923,Finland,1432838395 +227924,126923,Hard Rock,1432838347 +227924,126923,music industry,1432838362 +227924,126923,popularity,1432838369 +227924,126923,Rock,1432838344 +227924,126923,rock band,1432838388 +227924,126923,Rock music,1432838343 +227924,126923,Rockumentary,1432838352 +227924,126923,shock rock,1432838401 +227924,130684,Bad acting,1445033562 +227924,130684,Bad special FX,1445033384 +227924,130684,Community,1445033545 +227924,130684,Dead family member,1445033300 +227924,130684,Dead son,1445033291 +227924,130684,Everyone drinking whiskey all the time,1445033440 +227924,130684,Everyone is constantly drinking whiskey,1445033593 +227924,130684,FAmily,1445033283 +227924,130684,Family ties,1445033327 +227924,130684,Ghosts,1445033521 +227924,130684,Haunted house,1445033275 +227924,130684,Haunting,1445033566 +227924,130684,Hippies,1445033531 +227924,130684,Horror,1445033564 +227924,130684,Knives,1445033367 +227924,130684,Move-in,1445033280 +227924,130684,New age,1445033534 +227924,130684,Really bad acting,1445033560 +227924,130684,Revenge,1445033319 +227924,130684,Rural community,1445033510 +227924,130684,Seance,1445033536 +227924,130684,Small-town,1445033515 +227924,130684,Violence,1445033527 +227924,130684,Whiskey,1445033391 +227924,136602,American,1445728393 +227924,136602,cameraman,1445728416 +227924,136602,cancer,1445728349 +227924,136602,found footage,1445728320 +227924,136602,friendship,1445728409 +227924,136602,horror,1445728407 +227924,136602,mental disorders,1445728419 +227924,136602,psycho,1445728375 +227924,136602,psychopathy,1445728369 +227924,136602,rape,1445728357 +227924,136602,stalker,1445728408 +227924,136602,summer cabin,1445728423 +227924,136602,twist ending,1445728915 +227924,136602,video,1445728415 +227924,136602,wolf,1445728353 +227924,136602,wolves,1445728356 +227924,144482,Abduction,1446247639 +227924,144482,Alien abduction,1446247530 +227924,144482,Aliens,1446247521 +227924,144482,Babies,1446247599 +227924,144482,Choice,1446247572 +227924,144482,Decisions,1446247673 +227924,144482,Drama,1446247726 +227924,144482,Ensemble cast,1446247670 +227924,144482,Game,1446247640 +227924,144482,Game show,1446247645 +227924,144482,Game theory,1446247674 +227924,144482,Games,1446247642 +227924,144482,Horror,1446247718 +227924,144482,Invasion,1446247568 +227924,144482,Lies,1446247735 +227924,144482,Minorities,1446247580 +227924,144482,Natural selection,1446247549 +227924,144482,Pregnancy,1446247664 +227924,144482,Real-time,1446247660 +227924,144482,Relationship,1446247663 +227924,144482,Social justice,1446247585 +227924,144482,Society,1446247554 +227924,144482,Strategy,1446247627 +227924,144482,Survival,1446247742 +227924,144482,Thriller,1446247671 +227924,144482,Variety cast,1446247607 +227949,912,atmospheric,1427625543 +227949,912,black and white,1427625528 +227949,912,classic,1427625525 +227949,912,Humphrey Bogart,1427625541 +227949,912,Ingrid Bergman,1427625549 +227949,1221,Al Pacino,1427625077 +227949,1221,great acting,1427625089 +227949,1221,organized crime,1427625085 +227949,1921,mathematics,1427625595 +227949,2023,Al Pacino,1427625043 +227949,2023,organized crime,1427625037 +227949,2710,atmospheric,1427625706 +227949,2710,creepy,1427625698 +227949,2710,low budget,1427625714 +227949,3081,19th century,1427625315 +227949,3081,atmospheric,1427625319 +227949,3081,Johnny Depp,1427625312 +227949,3081,Mystery,1427625317 +227949,3252,Al Pacino,1427625888 +227949,3252,great acting,1427625891 +227949,4262,Al Pacino,1427625626 +227949,4262,classic,1427625639 +227949,4262,organized crime,1427625647 +227949,4865,19th century,1427625398 +227949,4865,Atmospheric,1427625361 +227949,4865,Jack the Ripper,1427625394 +227949,4865,Johnny Depp,1427625359 +227949,4865,Thriller,1427625387 +227949,4865,Victorian era,1427625372 +227949,4973,beautifully filmed,1427625475 +227949,4973,great soundtrack,1427625496 +227949,4973,music,1427625488 +227949,4973,surreal,1427625502 +227949,73323,journalism,1427625778 +227949,73323,Swedish,1427625849 +227949,91658,bad remake,1427625748 +227949,106452,beautifully filmed,1427625272 +227949,106452,photography,1427625267 +227949,109487,bad science,1427624912 +227949,109487,cliché finale,1427625212 +227949,109487,relativity,1427624940 +227949,109487,sci-fi,1427624844 +227949,109487,sounds,1427625220 +227949,109487,space,1427624875 +227949,109487,spectacle,1427625231 +227949,112171,cliché,1427625181 +227949,112171,Denzel Washington,1427625153 +227949,115170,cliché,1427625297 +227949,115713,AI,1432358252 +227949,115713,Philosophical,1432358333 +227949,115713,Robot,1432358257 +227949,115713,sci-fi,1432358223 +227954,7981,Andy Lau,1240879442 +227954,7981,the best movie ever made,1240879422 +227954,7981,the main character dies,1240879581 +227954,7981,Tony Leung Chiu Wai,1240879374 +227954,27544,last performance,1240878103 +227954,27728,controversial,1240878636 +227954,34162,stupid plot,1240878534 +227956,296,dark comedy,1271320992 +227956,296,nonlinear,1271320987 +227956,296,Quentin Tarantino,1271320981 +227956,535,multiple storylines,1271321972 +227956,750,anti-war,1271238613 +227956,750,black and white,1271238638 +227956,750,black comedy,1271238582 +227956,750,cold war,1271238627 +227956,750,comedy,1271238630 +227956,750,dark comedy,1271238586 +227956,750,nuclear war,1271238625 +227956,750,Quirky,1271238632 +227956,750,satire,1271238592 +227956,750,Stanley Kubrick,1271238610 +227956,750,war,1271238624 +227956,6440,Coen Brothers,1271238145 +227956,6440,disturbing,1271238151 +227956,8254,great soundtrack,1271239246 +227956,8254,surreal,1271239251 +227956,26587,understated,1271238194 +227956,26939,dark comedy,1271238163 +227956,32456,anime,1271238216 +227956,48165,Michael Haneke,1271238206 +227965,296,buddy film,1434285997 +227965,296,drugs,1434285997 +227965,296,violence,1434285997 +227976,34,Animal movie,1146388829 +227994,318,inspirational,1441613039 +227994,318,Morgan Freeman,1441613036 +227994,356,inspirational,1441612901 +227994,356,romance,1441612919 +227994,3147,emotional,1441612937 +227994,3147,Stephen King,1441612946 +227994,50872,inspirational,1441613130 +227994,50872,pixar,1441613103 +227994,60069,pixar,1441613065 +227994,63082,great soundtrack,1441612865 +227994,63082,love,1441612851 +227994,63082,Oscar (Best Picture),1441612846 +227994,63082,torture,1441612857 +227994,106920,artificial intelligence,1441612776 +227994,106920,boring,1441612799 +227994,106920,love,1441612793 +227994,106920,psychology,1441612787 +227994,115713,artificial intelligence,1441612742 +227994,115713,philosophical,1441612755 +228044,26776,animation,1450111361 +228044,26776,magic realism,1450111359 +228044,26776,Studio Ghibli,1450111336 +228078,3671,Madeline Kahn,1340245801 +228093,80463,Jesse Eisenberg,1442905878 +228093,96821,character development,1442905516 +228093,96821,coming of age,1442905514 +228094,111659,fairy tale,1430733341 +228094,111659,good vs evil,1430733349 +228094,114795,Sultan,1430733461 +228094,131714,fidelity,1430733417 +228094,131714,middle ages,1430733417 +228094,131714,war,1430733417 +228095,2144,Nudity (Topless),1191867377 +228124,4720,ghosts,1189494669 +228124,4720,saved by the ending,1189494638 +228124,4720,scary,1189494656 +228124,71899,sad,1290066210 +228124,72998,manipulative,1265079373 +228124,72998,predictable,1265079373 +228128,2694,Adam Sandler,1304552276 +228128,2694,Rob Schneider,1304552286 +228135,6016,brazil,1202821223 +228135,6016,favela,1202821194 +228151,260,sci-fi,1440296921 +228151,260,space,1440296911 +228159,110675,drama,1432658158 +228159,110675,romance,1432658161 +228159,110675,scifi,1432658153 +228195,1207,imdb top 250,1232055642 +228195,100336,abusive father,1360096239 +228195,100336,growing up,1360096232 +228209,1513,chick flick,1264333098 +228214,3173,Pacino,1145648788 +228255,780,Will Smith,1171904084 +228255,1240,future,1171903991 +228255,1580,Will Smith,1171904103 +228255,2571,Oscar (Best Effects - Visual Effects),1171903886 +228255,2571,visionary,1171903876 +228255,48394,sci-fi,1171897922 +228275,1208,Best War Films,1360955611 +228275,1222,Best War Films,1360955640 +228275,2028,Best War Films,1360955712 +228275,7502,Best War Films,1360955780 +228283,46322,Martial Arts,1160755803 +228292,2186,suspense,1447041817 +228292,2203,suspense,1447041833 +228292,3801,crime,1447041790 +228295,260,classic,1439482149 +228295,260,epic,1439482152 +228295,260,scifi,1439482146 +228306,260,futuristic,1443309797 +228306,260,space,1443309805 +228323,858,atmospheric,1379162744 +228323,858,Mafia,1379162735 +228323,858,organized crime,1379162733 +228392,260,classic sf,1436927762 +228392,260,space epic,1436927747 +228401,260,drama,1444604059 +228401,260,space adventure,1444604038 +228410,54286,Murder,1186922689 +228436,260,"Love, adventure and saving the universe",1444708675 +228441,342,Australian,1146192830 +228441,7020,Australian,1146192835 +228441,41721,Australian,1146192078 +228469,318,inspirational,1449192294 +228469,1198,fun,1449192318 +228469,3753,encouraging,1449192243 +228469,3753,moving,1449192267 +228494,296,Samuel L. Jackson,1351440100 +228494,377,shallow plot,1351440871 +228494,480,illogical,1351659847 +228494,480,predictable,1351659847 +228494,480,shallow plot,1351659847 +228494,1175,post-apocalyptic,1351399636 +228494,1206,Stanley Kubrick,1351439960 +228494,3300,Vin Diesel,1351440736 +228494,4973,Dominique Pinon,1351440222 +228494,4973,Jean-Pierre Jeunet,1351440137 +228494,8371,Vin Diesel,1351440642 +228494,57368,shallow,1351520822 +228494,59315,Marvel,1351485448 +228494,59315,Robert Downey Jr.,1351485449 +228494,84772,anti-religion,1352166039 +228494,84772,Atheism,1352166035 +228494,88140,cheesy,1351485411 +228513,18,Tim Roth,1245106425 +228513,36,Susan Sarandon,1388007140 +228513,101,Luke Wilson,1243274462 +228513,101,owen wilson,1243274451 +228513,101,quirky,1243274470 +228513,101,UNLIKELY CRIMINALS,1243274443 +228513,101,Wes Anderson,1243274446 +228513,125,Ben Stiller,1355092569 +228513,125,David O. Russell,1355092571 +228513,125,Patricia Arquette,1359476912 +228513,125,Téa Leoni,1355092574 +228513,199,Anne Vernon,1345899120 +228513,199,bittersweet,1345899126 +228513,199,Catherine Deneuve,1345898977 +228513,199,notable soundtrack,1345899132 +228513,199,wistful,1345899165 +228513,215,bittersweet,1327136681 +228513,215,conversation,1327136652 +228513,215,intelligent,1327136679 +228513,215,wistful,1327136707 +228513,296,Bruce Willis,1241919431 +228513,296,multiple storylines,1241919446 +228513,296,notable soundtrack,1241919440 +228513,296,Quentin Tarantino,1241919426 +228513,296,Samuel L. Jackson,1241919427 +228513,356,bittersweet,1242085521 +228513,356,Tom Hanks,1242085515 +228513,515,Anthony Hopkins,1335527747 +228513,515,based on a book,1335527811 +228513,515,Christopher Reeve,1335527753 +228513,515,Emma Thompson,1335527750 +228513,515,Great acting,1353797313 +228513,515,romance,1335527816 +228513,515,wierd love,1353797310 +228513,858,robert de niro,1241939103 +228513,1089,nonlinear,1241919687 +228513,1089,Quentin Tarantino,1241919684 +228513,1095,Al Pacino,1224021536 +228513,1095,Jack Lemmon,1224021536 +228513,1173,Helen Mirren,1241920076 +228513,1173,male nudity,1241920099 +228513,1173,Peter Greenaway,1241920062 +228513,1178,anti-war,1263592846 +228513,1178,cynical,1263592836 +228513,1213,Ray Liotta,1241919666 +228513,1218,stylized,1393670058 +228513,1228,Robert De Niro,1224200690 +228513,1237,existentialism,1332631145 +228513,1237,Ingmar Bergman,1336729697 +228513,1237,Swedish,1332631139 +228513,1289,environmental,1285607649 +228513,1289,no dialogue,1285607613 +228513,1289,no narrative,1285607616 +228513,1289,Philip Glass,1285607597 +228513,1295,based on a book,1376127670 +228513,1295,Milan Kundera,1376127676 +228513,1354,Lars von Trier,1242646585 +228513,1358,Memorable Characters,1288099664 +228513,1394,Coen Brothers,1243274387 +228513,1394,goofy,1243274406 +228513,1394,Nicolas Cage,1243274370 +228513,1394,off-beat comedy,1243274400 +228513,1394,PARENTHOOD,1243274410 +228513,1394,quirky,1243274408 +228513,1483,David Cronenberg,1223521246 +228513,1619,Brad Pitt,1287789042 +228513,1619,scenic,1287789068 +228513,1916,Anjelica Huston,1241919828 +228513,1916,Christina Ricci,1241919852 +228513,1916,melancholy,1241919920 +228513,1916,Rosanna Arquette,1241919843 +228513,1916,Vincent Gallo,1241919831 +228513,1923,Cameron Diaz,1312075836 +228513,1923,crude humor,1312075857 +228513,1923,not funny,1312075848 +228513,1923,Overrated,1312075843 +228513,1923,stupid,1312075851 +228513,2021,David Lynch,1341610007 +228513,2021,different from book,1341610026 +228513,2021,Francesca Annis,1341610053 +228513,2021,Kyle MacLachlan,1341610018 +228513,2021,Patrick Stewart,1341610032 +228513,2068,Ingmar Bergman,1241921432 +228513,2131,Ingmar Bergman,1242646573 +228513,2160,Roman Polanski,1223894520 +228513,2336,cate blanchett,1310215379 +228513,2336,England,1310215389 +228513,2336,Geoffrey Rush,1310215381 +228513,2336,Vincent Cassel,1310215384 +228513,2360,dogme95,1241920669 +228513,2360,father-son relationship,1359222051 +228513,2360,poignant,1359222058 +228513,2360,secrets,1241920681 +228513,2395,affectionate,1243274618 +228513,2395,bittersweet,1241128962 +228513,2395,Jason Schwartzman,1243274636 +228513,2395,literate,1241128972 +228513,2395,MISFITS AND OUTSIDERS,1243274613 +228513,2395,quirky,1241128980 +228513,2395,UNLIKELY FRIENDSHIPS,1243274604 +228513,2395,Wes Anderson,1241128994 +228513,2551,David Cronenberg,1223521204 +228513,2579,black and white,1242520912 +228513,2579,Christopher Nolan,1242520900 +228513,2600,David Cronenberg,1223521302 +228513,2730,atmospheric,1247954998 +228513,2730,cynical,1247955000 +228513,2730,lavish,1247954992 +228513,2730,Notable Soundrack,1247955140 +228513,2730,photography,1247955043 +228513,2730,Stanley Kubrick,1247955012 +228513,2851,Harvey Keitel,1239867126 +228513,2959,Brad Pitt,1241128580 +228513,2959,Edward Norton,1241128579 +228513,2959,mental illness,1241919191 +228513,2959,satirical,1241919228 +228513,2959,twist ending,1241919235 +228513,3129,jazz,1243384256 +228513,3129,Woody Allen,1243384248 +228513,3181,Anthony Hopkins,1315048227 +228513,3181,visually appealing,1315048230 +228513,3221,murder,1241920280 +228513,3221,Peter Greenaway,1241920271 +228513,3223,decay,1241919967 +228513,3223,disturbing,1241919970 +228513,3223,literate,1241919963 +228513,3223,Peter Greenaway,1241919953 +228513,3223,whimsical,1241919956 +228513,3266,dark comedy,1245106036 +228513,3285,soundtrack,1286386706 +228513,3320,dogme95,1241920595 +228513,3503,atmospheric,1241921046 +228513,3503,enigmatic,1241921073 +228513,3503,humanity,1241921084 +228513,3569,dogme95,1243297504 +228513,3569,Lars von Trier,1243297502 +228513,3569,mental disability,1243297507 +228513,3569,mental illness,1243297510 +228513,3626,Peter Greenaway,1223520978 +228513,3677,dead can dance,1357160516 +228513,3730,Catchy Score,1246445137 +228513,3730,claustrophobic,1246445139 +228513,3730,Gene Hackman,1246445162 +228513,3730,ominous,1246445155 +228513,3730,paranoid,1246445152 +228513,3813,depressing,1249773081 +228513,3910,cathartic,1242646650 +228513,3910,death penalty,1242646654 +228513,3910,disability,1242646658 +228513,3910,grim,1242646705 +228513,3910,injustice,1242646699 +228513,3910,Lars von Trier,1242646669 +228513,4144,atmospheric,1364658585 +228513,4144,elegant,1364658589 +228513,4144,melancholy,1364658596 +228513,4144,stylized,1364658557 +228513,4226,mystery,1241919254 +228513,4226,nonlinear,1241919249 +228513,4226,paranoia,1241919300 +228513,4226,short-term memory loss,1241919268 +228513,4226,tense,1241919279 +228513,4226,twist ending,1241919247 +228513,4383,uneven pace,1426357549 +228513,4392,Mia Farrow,1243384366 +228513,4392,New York City,1243384357 +228513,4392,Woody Allen,1243384362 +228513,4393,existentialism,1260657567 +228513,4393,Mia Farrow,1260657756 +228513,4393,Woody Allen,1260657758 +228513,4408,Mia Farrow,1243383979 +228513,4408,Woody Allen,1243383986 +228513,4422,Breathtaking,1244330947 +228513,4422,great performances,1244330519 +228513,4422,Harriet Andersson,1244330925 +228513,4422,Ingmar Bergman,1244330933 +228513,4422,intimate,1244330937 +228513,4422,Liv Ullmann,1244330527 +228513,4422,stylized,1244330943 +228513,4444,Bruce Lee,1393670099 +228513,4500,literate,1241920154 +228513,4500,Peter Greenaway,1241920141 +228513,4500,quirky,1241920147 +228513,4546,chilly,1242161955 +228513,4546,disturbing,1242161959 +228513,4776,denzel washington,1361576090 +228513,4776,Ethan Hawke,1361576085 +228513,4776,twist ending,1361576066 +228513,4848,David Lynch,1223894006 +228513,4878,dreamlike,1241128401 +228513,4878,enigmatic,1241128398 +228513,4878,mental illness,1241919384 +228513,4878,mystery,1241919388 +228513,4878,quirky,1241128434 +228513,4878,surreal,1241128413 +228513,4935,fake documentary,1223775899 +228513,4935,Peter Greenaway,1223153886 +228513,4979,dark comedy,1243274480 +228513,4979,family dynamics,1243274505 +228513,4979,Gwyneth Paltrow,1243274486 +228513,4979,Owen Wilson,1243274498 +228513,4979,Wes Anderson,1243274495 +228513,5059,man vs. nature,1241478455 +228513,5059,survival story,1241478350 +228513,5147,Bibi Andersson,1254092455 +228513,5147,Ingmar Bergman,1254092525 +228513,5147,reflective,1254092484 +228513,5266,dumb,1376128050 +228513,5298,Patricia Arquette,1244934717 +228513,5298,quirky,1244934721 +228513,5298,Tim Robbins,1244934724 +228513,5388,Al Pacino,1242520820 +228513,5817,Atom Egoyan,1372139617 +228513,5853,David Cronenberg,1223521365 +228513,5876,Brendan Fraser,1393669862 +228513,5876,Michael Caine,1393669864 +228513,5876,Vietnam,1393669866 +228513,6192,dogme95,1241920562 +228513,6380,disturbing,1360444624 +228513,6380,documentary,1360444630 +228513,6620,comic books,1444509490 +228513,6620,nerdy,1444509488 +228513,6774,David Cronenberg,1223521227 +228513,6971,Lars von Trier,1223772112 +228513,7071,bleak,1257466302 +228513,7071,mental illness,1257466318 +228513,7071,Peter Falk,1257466314 +228513,7084,Diane Keaton,1242161203 +228513,7084,San Francisco,1242161261 +228513,7084,Woody Allen,1242161233 +228513,7114,based on a book,1223774808 +228513,7114,kidnapping,1223774836 +228513,7134,Lars von Trier,1260658587 +228513,7134,post-apocalyptic,1260658591 +228513,7327,Ingmar Bergman,1241921319 +228513,7327,Liv Ullmann,1241921305 +228513,7361,Jim Carrey,1241919337 +228513,7361,memory,1241919345 +228513,7361,surreal,1241919353 +228513,7371,Lars von Trier,1223771911 +228513,7396,Liv Ullmann,1241921399 +228513,7419,black comedy,1247179535 +228513,7419,Linda Fiorentino,1247179538 +228513,7419,surreal,1247179542 +228513,7505,Ernst-Hugo JäregÃ¥rd,1268520319 +228513,7505,Lars von Trier,1268520315 +228513,7745,scenic,1397939332 +228513,7745,sensual,1397939335 +228513,7745,Vietnam,1397939339 +228513,7938,bleak,1365392091 +228513,7938,deliberate,1365392094 +228513,7938,Ingmar Bergman,1365392096 +228513,7940,Ingmar Bergman,1223775835 +228513,8261,Altman,1353796401 +228513,8261,disturbing,1353796412 +228513,8261,Shelley Duvall,1353796377 +228513,8261,Sissy Spacek,1353796380 +228513,8261,surreal,1353796395 +228513,8376,geek,1347741642 +228513,8376,nerds,1347741643 +228513,8638,bittersweet,1374770557 +228513,8638,dialogue,1374770559 +228513,8638,Richard Linklater,1374770563 +228513,8710,lavish,1259448934 +228513,8710,lyrical,1259448937 +228513,8710,wintry,1259448940 +228513,8732,Brian Dennehy,1241920198 +228513,8732,Peter Greenaway,1241920208 +228513,8910,David O. Russell,1359476527 +228513,8910,existentialism,1359476522 +228513,8910,ironic,1359476516 +228513,8910,Jason Schwartzman,1359476512 +228513,8910,Jude Law,1359476513 +228513,8910,Naomi Watts,1359476514 +228513,8910,seen more than once,1359476520 +228513,8910,whimsical,1359476515 +228513,8922,Lars von Trier,1223772140 +228513,26939,cool design,1267580067 +228513,26939,real life,1267580025 +228513,27820,animal/human connection,1322905340 +228513,27820,great cinematography,1322905314 +228513,27820,Mongolia,1322905348 +228513,27820,singing,1322905332 +228513,30803,cerebral,1353144994 +228513,30803,UNLIKELY FRIENDSHIPS,1353145006 +228513,30810,Cate Blanchett,1243274526 +228513,30810,Wes Anderson,1243274570 +228513,30810,Willem Dafoe,1243274534 +228513,30812,Cate Blanchett,1310215202 +228513,30812,Leonardo DiCaprio,1310215204 +228513,33072,Orson Welles,1223515977 +228513,35836,sex comedy,1285606442 +228513,36276,dysfunctional family,1313304805 +228513,36529,Nicolas Cage,1224020779 +228513,37727,plotholes,1301076495 +228513,38499,Al Pacino,1224200593 +228513,39381,Australia,1241297989 +228513,39381,David Wenham,1241298047 +228513,39381,Guy Pearce,1241297998 +228513,39381,John Hurt,1241297960 +228513,39869,Lars von Trier,1223772062 +228513,41285,clever,1241919006 +228513,41285,Disturbing,1241919039 +228513,41285,Emily Mortimer,1241918780 +228513,41285,Jonathan Rhys Meyers,1241918981 +228513,41285,London,1241918788 +228513,41285,murder mystery,1241918991 +228513,41285,Scarlett Johansson,1241918794 +228513,41285,Woody Allen,1241918808 +228513,45668,bad acting,1288829031 +228513,45668,cliche,1288829018 +228513,45728,disappointing sequel,1285607804 +228513,47202,Oil Rig,1243718344 +228513,47202,Sarah Polley,1243718344 +228513,47202,Tim Robbins,1243718344 +228513,47446,identity crisis,1295732481 +228513,48780,atmospheric,1241919124 +228513,48780,Christian Bale,1241919104 +228513,48780,Christopher Nolan,1242520783 +228513,48780,Hugh Jackman,1241919112 +228513,48780,tense,1241919150 +228513,48780,twist ending,1241919118 +228513,48872,black and white,1223069098 +228513,49961,obsession,1289170774 +228513,51312,Mafia,1318079132 +228513,52328,beautiful effects,1306577800 +228513,52952,England,1241920237 +228513,52952,nationalism,1241920243 +228513,54796,Julie Delpy,1382992842 +228513,54962,bad plot,1308082776 +228513,54962,rubbish,1308082786 +228513,54962,trite,1308082793 +228513,55069,Anamaria Marinca,1291764135 +228513,55118,David Cronenberg,1239866968 +228513,55118,Naomi Watts,1239866968 +228513,55269,Wes Anderson,1222979351 +228513,55278,Jude Law,1343467427 +228513,55278,Michael Caine,1343467410 +228513,55280,Emily Mortimer,1241918505 +228513,55280,little town,1241918579 +228513,56333,Laura Linney,1264894171 +228513,56333,Philip Seymour Hoffman,1264894173 +228513,56339,HAUNTED BY THE PAST,1302285853 +228513,56339,MISSING PERSONS,1302285876 +228513,56339,orphanage,1302285883 +228513,57980,dark comedy,1332065201 +228513,58301,Naomi Watts,1232484750 +228513,58301,Tim Roth,1232484757 +228513,58559,Christian Bale,1241128633 +228513,58559,Heath Ledger,1241128639 +228513,58803,based on a true story,1242422342 +228513,58803,Jim Sturgess,1242422307 +228513,58803,predictable,1242422462 +228513,59026,shallow,1342384728 +228513,59118,British,1223776833 +228513,59118,feel-good,1223776745 +228513,60044,low budget,1345898782 +228513,60126,Steve Carell,1254176252 +228513,60647,Ben Kingsley,1225417381 +228513,60647,Emily Mortimer,1225417381 +228513,60647,Woody Harrelson,1225417381 +228513,60760,David Duchovny,1277809334 +228513,60760,Gillian Anderson,1277809332 +228513,62644,effective,1301182978 +228513,62644,social experiment,1301182951 +228513,65642,complicated,1242509087 +228513,65642,grim,1242509098 +228513,65642,time travel,1242509094 +228513,67665,feel good,1358112674 +228513,67665,middle age,1358112671 +228513,68237,solitude,1261254276 +228513,68791,bad acting,1244927813 +228513,68791,weak dialoges,1244927897 +228513,68791,weak plot,1244927844 +228513,69122,low-brow,1357159031 +228513,69134,beautiful scenery,1359220958 +228513,69134,cinematography,1359220955 +228513,69134,Lars von Trier,1359220961 +228513,69134,Willem Dafoe,1359221258 +228513,69481,intense,1250880169 +228513,69951,Heath Ledger,1310845799 +228513,69951,imaginative,1310845795 +228513,69951,tom waits,1310845803 +228513,70159,surprise ending,1303608045 +228513,70344,Paul Giamatti,1347872866 +228513,70344,similar to Being John Malkovich,1347872904 +228513,71131,Louis Theroux,1316627446 +228513,71211,offbeat,1315089052 +228513,71520,Jennifer Garner,1368343148 +228513,71520,Louis C.K.,1368343153 +228513,71520,Ricky Gervais,1368343144 +228513,74545,weak plot,1285606649 +228513,75395,bad acting,1352584756 +228513,75395,bad script,1352584783 +228513,77307,disturbing,1447787289 +228513,77307,parenthood,1447787293 +228513,77307,Rule-making,1447787307 +228513,77455,consumerism,1357160099 +228513,77455,eccentric,1357160104 +228513,77455,street art,1357160162 +228513,77455,surprise ending,1357160140 +228513,77596,Claustrophobic,1285606904 +228513,77596,tense,1285606948 +228513,77596,War,1285606920 +228513,78088,wasted potential,1348855206 +228513,78349,claustrophobic,1308950842 +228513,78349,experiment,1308950834 +228513,80463,friendship,1290197488 +228513,80463,Jesse Eisenberg,1290197454 +228513,80864,Bad acting,1422995226 +228513,80864,Bad casting,1422995216 +228513,80969,boarding school,1312074440 +228513,80969,disturbing,1312074391 +228513,80969,Keira Knightley,1312074432 +228513,80969,thought-provoking,1312074386 +228513,81018,1950s,1312535702 +228513,81018,slow paced,1312535696 +228513,81257,africa,1320543328 +228513,81257,bullying,1320543310 +228513,81257,denmark,1320543314 +228513,81257,moral ambiguity,1320543319 +228513,81562,cinematography,1315048156 +228513,81562,intense,1315048168 +228513,81562,moving,1315048146 +228513,81562,stranded,1315048163 +228513,81562,true story,1315048148 +228513,81591,atmospheric,1296869567 +228513,81788,Pittsburgh,1318975642 +228513,81819,Alejandro González Iñárritu,1315047758 +228513,81819,bleak,1315047771 +228513,81819,Javier Bardem,1315047750 +228513,82767,Aaron Eckhart,1322904393 +228513,82767,Nicole Kidman,1322904395 +228513,82767,unsympathetic characters,1322904425 +228513,83369,Colin Farrell,1373490991 +228513,83369,Ed Harris,1373490995 +228513,83369,siberia,1373491002 +228513,83976,Steve Coogan,1332114051 +228513,84152,cinematography,1342384667 +228513,84152,visually appealing,1342384663 +228513,84392,Smart,1318030744 +228513,84716,isolation,1448835224 +228513,84716,Korean,1448835227 +228513,84772,laidback,1316295725 +228513,84772,roadtrip,1316295728 +228513,84772,Simon Pegg,1316295736 +228513,84954,Emily Blunt,1316295602 +228513,84954,implausible,1316295656 +228513,84954,love story,1316295671 +228513,84954,plot,1316295632 +228513,84954,trivial,1316295636 +228513,85412,boring,1308950772 +228513,85412,doesn't add anything new to the genre,1308950767 +228513,85412,scenic,1308950786 +228513,86320,anxiety,1339845447 +228513,86320,beautiful,1339845462 +228513,86320,depression,1339845451 +228513,86320,end of the world,1339845466 +228513,86320,Kirsten Dunst,1339845455 +228513,86320,Lars von Trier,1339845458 +228513,86882,dialogue,1310205695 +228513,86882,Owen Wilson,1310205679 +228513,86898,beautifully filmed,1326899033 +228513,86898,Brad Pitt,1326899055 +228513,87298,boring,1374770485 +228513,87304,believable,1328255458 +228513,87304,homosexuality,1328255470 +228513,87304,Melanie Laurent,1328255463 +228513,88129,cinematography,1330808983 +228513,88129,great soundtrack,1330808984 +228513,88129,visually appealing,1330808979 +228513,88744,bad dialogue,1313304663 +228513,88744,bad script,1313304681 +228513,88744,story,1313304689 +228513,89039,Brit Marling,1324205837 +228513,89118,ego,1331296609 +228513,89118,identity,1331296600 +228513,89260,animal cruelty,1333229340 +228513,89470,Kate Winslet,1359807606 +228513,89761,Direction,1329253213 +228513,89761,Psychoanalysis,1329253223 +228513,89761,Viggo Mortensen,1329253207 +228513,90374,Elizabeth Olsen,1334482325 +228513,90374,weak ending,1334482320 +228513,90531,Carey Mulligan,1336816397 +228513,90531,Michael Fassbender,1336816389 +228513,90531,New York City,1336816406 +228513,90531,Steve McQueen,1336816402 +228513,90866,bittersweet,1338715216 +228513,90866,visually appealing,1338715221 +228513,91371,Acting,1341087839 +228513,91371,Robin Wright Penn,1341088396 +228513,91371,Sigourney Weaver,1341088387 +228513,91371,Woody Harrelson,1341087832 +228513,91500,social comentary,1333202187 +228513,91529,Christian Bale,1344614913 +228513,91529,Christopher Nolan,1344614911 +228513,91529,Joseph Gordon-Levitt,1344614909 +228513,91529,trilogy,1344614924 +228513,91610,hopeful,1422173565 +228513,91610,multiple storylines,1422173565 +228513,91610,toronto,1422173565 +228513,91630,Simon pegg,1328255549 +228513,91630,Tom Cruise,1328255544 +228513,91890,understated,1347741703 +228513,92259,acting,1335034650 +228513,92259,predictable,1335034635 +228513,92420,acting,1342384574 +228513,92420,clever,1342384561 +228513,93840,clever,1352584572 +228513,93840,joss whedon,1352584568 +228513,93840,meta,1352584563 +228513,93840,original,1352584553 +228513,93933,father-son relationship,1352584849 +228513,93933,good acting,1352584931 +228513,93933,Israel,1352584869 +228513,93933,open ending,1352584974 +228513,93933,stylized,1352584885 +228513,94466,social commentary,1409345654 +228513,94466,TV series,1409345645 +228513,94864,acting,1340449018 +228513,94864,characterization,1340449009 +228513,94864,Charlize Theron,1340449027 +228513,94864,script,1340449047 +228513,94959,Bruce Willis,1355089675 +228513,94959,Edward Norton,1355089662 +228513,94959,Harvey Keitel,1355089671 +228513,94959,Jason Schwartzman,1355089665 +228513,94959,Wes Anderson,1355089667 +228513,95088,aubrey plaza,1353144927 +228513,95088,feel good,1353144755 +228513,95088,touching,1353144936 +228513,95510,Andrew Garfield,1357159553 +228513,95510,Emma Stone,1357159559 +228513,95510,nerds kicking butt,1357159575 +228513,95510,Rhys Ifans,1357159566 +228513,95558,child's perspective,1363580624 +228513,95558,sentimental,1363580686 +228513,95558,Strange,1363580644 +228513,95873,flat characters,1357423655 +228513,96488,Sixto Rodriguez,1372139700 +228513,96610,bad acting,1353795316 +228513,96610,science fiction,1353795339 +228513,96811,Jake Gyllenhaal,1361575977 +228513,96811,Michael Pena,1361575980 +228513,96829,falsely accused,1414275991 +228513,96829,Mads Mikkelsen,1414275983 +228513,96829,painful to watch,1414275997 +228513,96829,paranoia,1414276007 +228513,96829,social rejection,1414276004 +228513,96829,Thomas Vinterberg,1414276000 +228513,97304,tense,1363581113 +228513,97304,thriller,1363581116 +228513,97752,Hugo Weaving,1357158754 +228513,97752,multiple storylines,1357158908 +228513,97866,true story,1360444510 +228513,97921,David O. Russell,1365885251 +228513,97921,father-son relationship,1365885244 +228513,97921,Jennifer Lawrence,1365885273 +228513,97938,cinematography,1407913030 +228513,97938,emotional,1407913076 +228513,97938,India,1407913069 +228513,97938,wisdom,1407913073 +228513,98973,glacier,1381411920 +228513,98973,photography,1381411923 +228513,99764,moving,1440532503 +228513,99764,philosopical,1440532487 +228513,100244,anti-corporation,1451084277 +228513,100383,New York,1376127365 +228513,100383,twist ending,1376127369 +228513,100714,Ethan Hawke,1374770519 +228513,100714,Julie Delpy,1374770510 +228513,100714,Richard Linklater,1374770508 +228513,101741,not believable,1381907463 +228513,101741,plot,1381907486 +228513,101741,writing,1381907475 +228513,101864,acting,1378612299 +228513,101864,Olga Kurylenko,1378612284 +228513,101864,style over substance,1378612320 +228513,102123,Immature,1389206177 +228513,102123,Michael Cera,1389206188 +228513,102588,documentary,1408180209 +228513,102588,father daughter relationship,1408180148 +228513,102588,Sarah Polley,1408180155 +228513,102602,Vahtang Kikabidze,1373491205 +228513,102753,acting,1423768036 +228513,103235,Geoffrey Rush,1378159051 +228513,103235,story,1378159070 +228513,103235,twist ending,1378159062 +228513,103306,sound effects,1380748501 +228513,103306,visually stunning,1380748478 +228513,103554,acting,1381007694 +228513,103554,tense,1381007721 +228513,103867,based on a book,1376127616 +228513,103867,Jeremy Irons,1376127572 +228513,103980,acting,1386408460 +228513,103980,Cate Blanchett,1386408328 +228513,103980,Sally Hawkins,1386408451 +228513,103980,Woody Allen,1386408321 +228513,103980,writing,1386408537 +228513,104078,Steve Coogan,1386881524 +228513,104231,China,1388308391 +228513,104231,cops,1388308419 +228513,104231,drug trade,1388308443 +228513,104374,bad plot,1389428363 +228513,104374,cliche,1389428377 +228513,104374,cliche characters,1389428386 +228513,104374,stereotypes,1389428402 +228513,104841,visually appealing,1409345581 +228513,104879,absorbing,1387403986 +228513,104879,gripping,1387404002 +228513,104879,Jake Gyllenhaal,1387403987 +228513,104879,morality,1387403985 +228513,104879,tasteful,1387403985 +228513,105130,acting,1380062034 +228513,105130,cinematography,1380062046 +228513,105130,sound effects,1380062069 +228513,105130,unpredictable,1380062117 +228513,105130,visceral,1380062084 +228513,105519,original,1403328163 +228513,105519,weak ending,1403328222 +228513,105769,emotional,1382391761 +228513,105769,Robin Wright,1382391734 +228513,105769,visuals,1382391742 +228513,105863,acting,1382711942 +228513,105863,mother-son relationship,1382711952 +228513,106100,Matthew McConaughey,1401126762 +228513,106100,social commentary,1401126767 +228513,106100,weak secondary characterss,1401126753 +228513,106452,beautifully filmed,1441737395 +228513,106916,amy adams,1399149187 +228513,106916,Bradley Cooper,1399149184 +228513,106916,Jennifer Lawrence,1399149191 +228513,106918,acting,1439025126 +228513,106920,Amy Adams,1390547817 +228513,106920,artificial intelligence,1390547775 +228513,106920,Human Computer Interaction,1390547717 +228513,106920,joaquin phoenix,1390547805 +228513,106920,philosophical,1390547787 +228513,106920,thought-provoking,1390547719 +228513,106920,transhumanism,1390547740 +228513,107949,Ralph Fiennes,1415555481 +228513,108729,confusing,1442093565 +228513,108729,Psychological,1442093561 +228513,108778,cinematography,1403327255 +228513,109187,Bechdel Test:Fail,1417214137 +228513,109187,meaning of life,1417214027 +228513,109187,production design,1417214150 +228513,109187,surreal,1417214017 +228513,109187,visually appealing,1417214161 +228513,109472,acting,1402001576 +228513,109487,black hole,1433585631 +228513,109487,Christopher Nolan,1433585622 +228513,109487,relativity,1433585637 +228513,109487,sentimental,1433585626 +228513,110882,strong performance,1422173689 +228513,110882,theatrical,1422173715 +228513,110882,Tom Hardy,1422173691 +228513,110882,unique,1422173693 +228513,111235,touching,1409344837 +228513,111235,visuals,1409344864 +228513,111880,honest,1402001495 +228513,111880,Liv Ullmann,1402001484 +228513,112183,Alejandro González Iñárritu,1426358088 +228513,112183,Edward Norton,1426358072 +228513,112183,insider acting stuff,1426358108 +228513,112183,satire,1426358078 +228513,112183,single shot,1426358075 +228513,112290,12 years in the making,1411169711 +228513,112290,Ethan Hawke,1411169712 +228513,112290,Partricia Arquette,1411169715 +228513,112290,Richard Linklater,1411169708 +228513,112515,mother-son relationship,1418677394 +228513,112515,psychological,1418677441 +228513,112515,single parents,1418677409 +228513,112552,jazz,1422995133 +228513,112552,musicians,1422995137 +228513,112552,Tense,1422995154 +228513,113064,impressions,1421360321 +228513,113064,parody,1421360337 +228513,113064,scenic,1421360307 +228513,113225,plot twist,1420238851 +228513,113315,acting,1438977226 +228513,113315,script,1438977235 +228513,113741,mind bending,1447881554 +228513,113741,mystery,1447881557 +228513,113829,alternate reality,1441737703 +228513,113829,relationships,1441737697 +228513,114342,relationship drama,1433586339 +228513,114935,twist ending,1433585672 +228513,115135,acting,1413395587 +228513,115135,cinematography,1413395576 +228513,115135,little dialogue,1421360011 +228513,115135,slow-paced,1421360011 +228513,115569,Jake Gyllenhaal,1448835532 +228513,115569,psychothriller,1448835536 +228513,115569,satire,1448835539 +228513,115569,transformative performance,1448835558 +228513,115713,artificial intelligence,1441737555 +228513,115713,isolation,1440532686 +228513,115713,plot twist,1440532658 +228513,115713,Psychological,1441737557 +228513,115713,Tense,1441737562 +228513,115713,thought provoking,1440532654 +228513,115824,slow,1438977136 +228513,115824,uneventful,1438977169 +228513,116797,Alan Turing,1433585759 +228513,116797,Benedict Cumberbatch,1433585742 +228513,116897,dark humor,1438977027 +228513,118246,alps,1426357754 +228513,118246,life imitating art,1426357735 +228513,118246,talkative,1426357743 +228513,118900,grief,1433585805 +228513,118900,hiking,1433585795 +228513,118985,Amy Adams,1438977695 +228513,118985,Christoph Waltz,1438977697 +228513,121231,Creepy,1439659704 +228513,121231,horror,1439659706 +228513,121231,score,1439659708 +228513,127204,Jason Schwartzman,1444509430 +228513,134130,mars,1448835692 +228513,134130,matt damon,1448835702 +228526,99287,academic failure,1425832215 +228526,99287,college student,1425832215 +228526,99287,comedy,1425832215 +228526,109487,relativity,1423239064 +228526,109487,science fiction,1423239064 +228526,109487,space travel,1423239064 +228526,127052,criminal trio,1425211356 +228526,127052,slapstick,1425211356 +228526,127052,triptych,1425211356 +228526,127993,christmas,1423931541 +228526,127993,magic,1423931541 +228526,127993,ukraine,1423931541 +228545,260,heroic journey,1432419567 +228545,260,struggle against tyranny,1432419439 +228572,260,all time favorite,1442376154 +228572,260,Avoid,1442376134 +228572,260,Not to miss,1442376122 +228572,260,One time watch,1442376103 +228572,260,Time pass,1442376144 +228572,260,Worth watching,1442376130 +228578,91325,coping with loss,1432050500 +228578,91325,father-son relationship,1432050464 +228578,91325,loss of parent,1432050517 +228578,91325,mother-son relationship,1432050476 +228578,94537,divorced/separated parents,1431130950 +228578,94537,loss of child,1431130950 +228578,94537,parenting,1431130950 +228578,98523,sci-fi,1429891832 +228578,98523,teenagers,1429891832 +228578,98523,virtual reality,1429891832 +228578,123155,cold war,1428284654 +228578,123155,intercultural understanding,1428284654 +228578,123155,youth,1428284654 +228594,5418,assassin,1362522140 +228594,5418,espionage,1362522132 +228594,5418,Matt Damon,1362522137 +228594,6331,documentary,1346798754 +228594,6380,documentary,1346798748 +228594,58025,concept,1362348411 +228594,58025,Samuel L. Jackson,1362348400 +228594,58025,silly,1362348404 +228594,58025,superhero,1362348397 +228594,58025,unlikeable characters,1362348391 +228594,58103,repetitive,1362522294 +228594,102903,pseudo-intelligent,1378740556 +228594,112183,alter ego,1423520270 +228594,112183,Edward Norton,1423520262 +228594,112183,great performances,1423520259 +228594,112183,magical realism,1423520264 +228594,112183,psychological,1423520276 +228594,112183,satire,1423520268 +228594,112183,single shot,1423520274 +228612,105,sentimental,1372175333 +228612,1032,surreal,1381568189 +228612,7471,native americans,1381567915 +228612,27366,surreal,1381568227 +228612,49951,ancient rome,1262965397 +228612,49951,homosexuality,1262965397 +228612,49951,queer,1262965498 +228612,89730,historical,1366482329 +228612,89730,hungarian,1366482302 +228612,89730,revolution,1366482340 +228612,89730,sentimental,1366482246 +228612,89730,water polo,1366482314 +228612,98845,lacrosse,1365931153 +228612,98845,Native Americans,1365931147 +228612,98845,sports,1365931164 +228614,260,classic sci-fi,1436471699 +228614,260,famous,1436471685 +228630,1,Disney,1137170413 +228630,110,tribal,1137168992 +228630,150,space program,1137169409 +228630,150,true story,1138191950 +228630,151,tribal,1137169458 +228630,260,sequel,1137170670 +228630,260,space,1137170670 +228630,349,USA,1137169825 +228630,349,USSR,1137169826 +228630,357,girlie movie,1137170255 +228630,364,Disney,1137170655 +228630,500,girlie movie,1137170498 +228630,590,tribal,1137169424 +228630,597,girlie movie,1137170267 +228630,718,Middle Ages,1137169487 +228630,741,Japan,1137171812 +228630,780,E.T.,1138192004 +228630,1080,Biblical,1137170335 +228630,1088,girlie movie,1137170165 +228630,1097,E.T.,1138192232 +228630,1101,flight,1137171022 +228630,1136,Biblical,1137170462 +228630,1196,sequel,1137170565 +228630,1196,space,1137170565 +228630,1210,sequel,1137170542 +228630,1210,space,1137170542 +228630,1246,philosophy,1137172231 +228630,1246,school,1137172231 +228630,1265,time travel,1138883897 +228630,1270,sequel,1137169215 +228630,1270,time travel,1137168909 +228630,1274,Japan,1137171831 +228630,1275,tribal,1137169586 +228630,1307,girlie movie,1137169971 +228630,1367,Disney,1137170994 +228630,1408,tribal,1137169935 +228630,1544,Dinosaurs,1138192256 +228630,1569,girlie movie,1137169960 +228630,1580,sequel,1137171005 +228630,1608,flight,1137169573 +228630,1608,president,1137169573 +228630,1608,USA,1137169573 +228630,1610,submarine,1137169639 +228630,1610,Tom Clancy,1137169877 +228630,1610,USA,1137169639 +228630,1610,USSR,1137169639 +228630,1721,girlie movie,1137171012 +228630,1907,Disney,1137169947 +228630,1917,space,1137170715 +228630,1917,space program,1137170435 +228630,2000,sequel,1137171764 +228630,2001,sequel,1137171769 +228630,2011,sequel,1137169196 +228630,2011,time travel,1137168918 +228630,2012,sequel,1137169235 +228630,2012,time travel,1137168926 +228630,2054,sequel,1137171753 +228630,2081,Disney,1137171410 +228630,2355,Disney,1137169924 +228630,2424,girlie movie,1137169702 +228630,2628,sequel,1137170551 +228630,2671,girlie movie,1137169664 +228630,2687,Disney,1137169683 +228630,2706,teen,1137169992 +228630,2953,sequel,1137170844 +228630,3000,Japan,1137169746 +228630,3000,Miyazaki,1138192095 +228630,3114,Disney,1137170035 +228630,3253,teen,1137171866 +228630,3448,Vietnam War,1137171739 +228630,3466,classic,1137168768 +228630,3578,Romans,1138884029 +228630,3827,space,1137170914 +228630,3827,space program,1137170914 +228630,4018,girlie movie,1137170363 +228630,4246,girlie movie,1137171805 +228630,4246,sequel,1137171805 +228630,4306,Disney,1137170858 +228630,4306,sequel,1137170893 +228630,4312,tribal,1137170833 +228630,4638,sequel,1137170853 +228630,4886,Disney,1137170187 +228630,4896,magic,1138191890 +228630,4896,sequel,1137169512 +228630,5069,Japan,1137171673 +228630,5072,Japan,1137171842 +228630,5171,time travel,1144672147 +228630,5349,sequel,1137170196 +228630,5349,super-hero,1137170207 +228630,5378,sequel,1137170641 +228630,5378,space,1137170641 +228630,5459,sequel,1137171778 +228630,5613,Agatha Christie-like,1137170096 +228630,5669,anti-Bush,1137170110 +228630,5669,terrorism,1137170116 +228630,5669,USA,1137170126 +228630,5816,magic,1138191883 +228630,5816,sequel,1137169366 +228630,6350,Japan,1137170136 +228630,6350,Miyazaki,1138192365 +228630,6377,Disney,1137170953 +228630,6593,Lindsay Lohan,1137169354 +228630,6593,Rock,1137169312 +228630,6618,China,1137170970 +228630,6863,Rock,1137169395 +228630,7143,Japan,1137169730 +228630,7143,tribal,1137169730 +228630,7386,Biblical,1137171821 +228630,8157,Japan,1137171835 +228630,8360,Disney,1137170975 +228630,8360,fairy tale,1138192399 +228630,8360,sequel,1137170977 +228630,8368,magic,1138191930 +228630,8368,sequel,1137169373 +228630,8604,car,1137170990 +228630,8666,super-hero,1137170942 +228630,8961,super-hero,1137170388 +228630,26662,Japan,1137174230 +228630,26662,magic,1138192140 +228630,26662,Miyazaki,1138192134 +228630,26776,Japan,1137169779 +228630,33493,sequel,1137170650 +228630,33493,space,1137170650 +228630,33794,super-hero,1137170376 +228630,40629,Classic,1138884148 +228630,40629,England,1138884148 +228630,40629,Wedding,1138884148 +228630,40815,magic,1138191925 +228630,40815,sequel,1137170175 +228630,41571,Japan,1138883244 +228635,589,action,1423553671 +228635,589,robots,1423553671 +228635,589,sci-fi,1423553671 +228635,2571,action,1425345373 +228635,2571,sci-fi,1425345037 +228635,4993,Action,1425345428 +228635,4993,Adventure,1425345415 +228635,4993,fantasy,1425345409 +228635,102125,action,1425345510 +228635,102125,sci-fi,1425345520 +228635,102125,superhero,1425345536 +228635,115210,action,1425345705 +228635,115210,battle,1425345703 +228635,115210,fight scenes,1425345721 +228635,115210,history,1425345708 +228635,115210,war,1425345700 +228635,115617,action,1425345638 +228635,115617,animation,1425345611 +228635,115617,funny,1425345592 +228635,115617,humor,1425345595 +228657,380,action,1144847262 +228658,1884,surreal,1452443259 +228658,81845,oscar bait,1452443191 +228658,86898,abstract,1452445428 +228658,86898,cinematography,1452445419 +228658,104841,artistic,1452444359 +228658,104841,score,1452444344 +228658,104841,visually stunning,1452444334 +228658,109848,atmospheric,1452445264 +228658,109848,surreal,1452445267 +228734,25826,In Netflix queue,1161472588 +228734,34645,chase,1425103305 +228734,34645,cult classic,1425103305 +228734,34645,suspense,1425103305 +228734,109487,bad dialogue,1431754317 +228746,109487,Most awaited movie of science fic,1438238722 +228778,293,Action,1248199096 +228778,293,assassin,1248199099 +228778,293,great acting,1248199106 +228778,293,hit men,1248199109 +228778,293,humorous,1248199123 +228778,293,Jean Reno,1248199116 +228778,293,Natalie Portman,1248199113 +228778,4144,atmospheric,1248197428 +228778,4144,melancholy,1248197435 +228778,4144,too slow,1248197482 +228778,4367,action,1248201330 +228778,4367,adapted from:game,1248201328 +228778,4367,adventure,1248201322 +228778,4367,Angelina Jolie,1248201318 +228778,4367,based on a video game,1248201326 +228778,4367,Girl Power,1248201351 +228778,4367,heroine in tight suit,1248201346 +228778,4367,Kick-Butt Women,1248201341 +228778,4367,sexy,1248201332 +228778,4367,video game,1248201334 +228778,6564,adapted from:game,1248201274 +228778,6564,adventure,1248201271 +228778,6564,Angelina Jolie,1248201269 +228778,6564,boring,1248201278 +228778,6564,computer game,1248201282 +228778,6564,heroine in tight suit,1248201286 +228778,6564,video game adaptation,1248201290 +228778,6874,action,1248197576 +228778,6874,assassin,1248197579 +228778,6874,funny,1248197583 +228778,6874,Japan,1248197585 +228778,6874,katana,1248197641 +228778,6874,martial arts,1248197587 +228778,6874,Quentin Tarantino,1248197597 +228778,6874,Sexualized violence,1248197607 +228778,6874,Uma Thurman,1248197610 +228778,6874,violence,1248197622 +228778,6874,violent,1248197614 +228778,6874,visceral,1248197629 +228778,8644,Amazing Cinematography,1248197305 +228778,8644,android(s)/cyborg(s),1248197310 +228778,8644,artificial intelligence,1248197301 +228778,8644,based on a book,1248197313 +228778,8644,Dynamic CGI Action,1248197319 +228778,8644,funny,1248197322 +228778,8644,future,1248197325 +228778,8644,futuristic,1248197327 +228778,8644,Ireland,1248197330 +228778,8644,irreverent,1248197335 +228778,8644,Isaac Asimov,1248197338 +228778,8644,robot,1248197341 +228778,8644,robots,1248197342 +228778,8644,Sci fi,1248197344 +228778,8644,sci-fi,1248197346 +228778,8644,Will Smith,1248197293 +228778,27728,2D/3D hybrid Animation,1248542087 +228778,27728,anime,1248542078 +228778,27728,Better than the First,1248542094 +228778,27728,not as good as the first,1248542109 +228778,27728,robots,1248542115 +228778,31878,China,1248197702 +228778,31878,comedy,1248197710 +228778,31878,Dynamic CGI Action,1248197712 +228778,31878,kill bill meets looney tunes,1248197720 +228778,31878,kung fu,1248197727 +228778,31878,martial arts,1248197733 +228778,31878,piss your pants funny,1248197738 +228778,65682,action,1249006732 +228778,65682,gothic,1249006700 +228778,65682,vampires,1249006703 +228778,65682,werewolves,1249006704 +228778,66385,Kevin Bacon,1249006652 +228778,66385,US centric,1249006602 +228778,66385,war is bad,1249006626 +228795,912,classic,1427714929 +228801,57910,vagina dentata,1218063970 +228807,53123,beautiful,1287241140 +228807,81456,loved it!,1333419504 +228807,81456,perfection,1333419513 +228811,2006,swashbuckler,1259422481 +228811,50872,animation,1259419877 +228811,50872,hahaha,1259419845 +228811,50872,Pixar animation,1259419870 +228811,50872,yoyoyo,1259419838 +228811,58559,Batman,1258983724 +228811,58559,superhero,1258983732 +228854,356,biography,1432336614 +228854,356,purpose in life,1432336614 +228854,356,tom hanks,1432336614 +228854,5903,thought-provoking,1429739480 +228875,1172,bittersweet,1344286583 +228875,1172,reflective,1344286587 +228875,2334,Golden Raspberry (Worst Actor),1344083896 +228875,2334,terrorism,1344083890 +228875,2858,dark comedy,1344286504 +228875,2858,social commentary,1344286509 +228875,3551,Nudity (Topless),1344083803 +228875,4993,fantasy,1344286604 +228923,318,escape,1433292930 +228926,296,stylish,1420077167 +228926,296,tarantino,1420077167 +228926,296,trend setting,1420077167 +228926,356,overrated,1421125780 +228926,356,sentimental,1421125780 +228926,356,tom hanks,1421125780 +228926,593,anthony hopkins,1421899936 +228926,593,brilliant,1421899936 +228926,593,oscar winner,1421899936 +228926,5152,mel preachy,1193625497 +228926,6614,true story!,1137224685 +228926,43460,Adaptation,1171202563 +228926,50064,Nudity (Topless - Brief),1211168829 +228979,260,fantasy,1284819009 +228979,260,sci-fi,1284819013 +228979,260,space,1284819016 +228979,293,Action,1284815183 +228979,293,assassin,1284815178 +228979,293,corruption,1284815217 +228979,293,crime,1284815219 +228979,293,easily confused with other movie(s) (title),1284815202 +228979,293,hitman,1284815174 +228979,293,imdb top 250,1284815212 +228979,293,Jean Reno,1284815170 +228979,293,Natalie Portman,1284815163 +228979,480,adventure,1284813703 +228979,480,dinosaurs,1284813706 +228979,480,Suspense,1284813693 +228979,1090,Charlie Sheen,1284815668 +228979,1090,Forest Whitaker,1284815648 +228979,1090,horrors of war,1284815664 +228979,1090,Vietnam War,1284815657 +228979,1090,Willem Dafoe,1284815652 +228979,1214,aliens,1284812356 +228979,1214,androids,1284812358 +228979,1214,atmospheric,1284812362 +228979,1214,horror,1284812401 +228979,1214,paranoid,1284812389 +228979,1214,Saturn Award (Best Science Fiction Film),1284812385 +228979,1222,anti-war,1284815701 +228979,1222,boot camp,1284815706 +228979,1222,Vietnam War,1284815709 +228979,1259,classic,1284811431 +228979,1259,coming of age,1284811406 +228979,1259,friendship,1284811376 +228979,1259,INNOCENCE LOST,1284811381 +228979,1259,nostalgic,1284811412 +228979,1259,River Phoenix,1284811387 +228979,1259,Rob Reiner,1284811394 +228979,1356,aliens,1284811247 +228979,1356,Based on a TV show,1284811259 +228979,1356,Borg,1284811230 +228979,1356,sci-fi,1284811279 +228979,1356,space,1284811283 +228979,1356,space opera,1284811295 +228979,1480,sci-fi,1284813440 +228979,1480,Vanessa Redgrave,1284813430 +228979,1580,aliens,1284818715 +228979,1580,Humor!,1284818762 +228979,1580,Tommy Lee Jones,1284818776 +228979,1580,whacky weapons,1284818811 +228979,1580,Will Smith,1284818781 +228979,1584,aliens,1284812966 +228979,1584,future,1284812980 +228979,1584,Jodie Foster,1284812963 +228979,1584,Matthew McConaughey,1284812987 +228979,1584,open ending,1284812990 +228979,1584,sci-fi,1284812973 +228979,1584,space travel,1284812970 +228979,1676,Alien Invasion,1284813526 +228979,2028,historical,1284815576 +228979,2028,Oscar (Best Directing),1284815586 +228979,2028,philosophy,1284815610 +228979,2028,Tom Hanks,1284815570 +228979,2028,Vin Diesel,1284815591 +228979,2028,war,1284815598 +228979,2028,World War II,1284815573 +228979,2455,better than the old version,1284813182 +228979,2455,Geena Davis,1284813209 +228979,2455,Jeff Goldblum,1284813175 +228979,2455,romance,1284813202 +228979,2455,sci-fi,1284813194 +228979,2455,tragic hero,1284813197 +228979,3101,Glenn Close,1284810027 +228979,3527,action,1284818949 +228979,3527,Arnold Schwarzenegger,1284818944 +228979,3527,The acting,1284818915 +228979,3527,The dialogue,1284818935 +228979,3527,The sets,1284818925 +228979,3527,The story,1284818904 +228979,3550,Catherine Deneuve,1284817879 +228979,3550,ominous,1284817897 +228979,3550,Susan Sarandon,1284817874 +228979,3578,Russell Crowe,1284809993 +228979,3699,Charles Martin Smith,1284818624 +228979,3699,great story,1284818644 +228979,3699,Jeff Bridges,1284818568 +228979,3699,Karen Allen,1284818571 +228979,3699,superb acting,1284818635 +228979,3836,caper,1284815848 +228979,3836,Don Rickles,1284816024 +228979,3836,Donald Sutherland,1284815814 +228979,3836,Humor,1284816106 +228979,3836,Telly Savalas,1284815821 +228979,3836,World War II,1284816033 +228979,3978,an average movie,1284818345 +228979,3978,Will Smith,1284809943 +228979,4022,busom buddy with a volleyball,1284811601 +228979,4022,SURVIVAL,1284811618 +228979,4022,unhappy ending,1284811625 +228979,4367,Angelina Jolie,1284809825 +228979,4370,androids,1284813122 +228979,4370,artificial intelligence,1284813116 +228979,4370,depressing,1284813105 +228979,4370,robots,1284813110 +228979,4370,sci-fi,1284813137 +228979,4370,Stanley Kubrick,1284813139 +228979,4679,John Candy,1284817925 +228979,4995,genius,1284811968 +228979,4995,psychology,1284811965 +228979,4995,Russell Crowe,1284811949 +228979,5039,dragons,1284817960 +228979,5039,great story,1284818027 +228979,5039,Peter MacNicol,1284817999 +228979,5039,satisfying ending,1284818042 +228979,5039,Sorcerers,1284817972 +228979,5040,comic book feel,1284818223 +228979,5040,Grace Jones,1284818193 +228979,5040,quirky corny,1284818210 +228979,5040,sword and sorcery,1284809900 +228979,5060,CULTURE CLASH,1284815753 +228979,5060,witty,1284815762 +228979,5313,50s-60s popcorn movie,1284818138 +228979,5313,comic book feel,1284818103 +228979,5313,corny humor,1284818092 +228979,5418,action,1284811748 +228979,5418,adapted from:book,1284811774 +228979,5418,assassin,1284811740 +228979,5418,espionage,1284811730 +228979,5418,Matt Damon,1284811713 +228979,5418,remake,1284811758 +228979,5418,Robert Ludlum,1284811715 +228979,5418,spy,1284811718 +228979,5418,survival,1284811723 +228979,5418,thriller,1284811725 +228979,5782,Jean Reno,1284816632 +228979,5782,Natalie Portman,1284816646 +228979,5782,Transition from killer to protector,1284816909 +228979,5881,aliens,1284813488 +228979,6564,adventure,1284809629 +228979,30707,boxing drama,1284815422 +228979,30707,master disciple relationship,1284815415 +228979,33660,boxing,1284811900 +228979,33660,RAGS TO RICHES,1284811909 +228979,33660,Russell Crowe,1284811889 +228979,33660,true story,1284811922 +228979,34048,alien invasion,1284813611 +228979,34048,aliens,1284813622 +228979,34048,sci-fi,1284813635 +228979,34048,Tom Cruise,1284813649 +228979,49530,Leonardo DiCaprio,1284815483 +228979,49530,the story,1284815524 +228979,49530,the subject,1284815543 +228979,60069,Animation,1284812253 +228979,60069,artificial intelligence,1284812256 +228979,60069,robots,1284812222 +228979,60069,Sci-Fi,1284812244 +228979,60069,social commentary,1284812265 +228979,64614,classic car,1284815303 +228979,64614,Clint Eastwood,1284815289 +228979,64614,culture clash,1284815292 +228979,64614,ending,1284815325 +228979,64614,heartwarming,1284815337 +228979,64614,hmong,1284815340 +228979,64614,old men,1284815312 +228979,65682,dark,1284818267 +228979,65682,semi-erotic,1284818278 +228979,65682,vampires,1284818251 +228979,65682,werewolves,1284818256 +228979,72998,aliens,1284812149 +228979,72998,native americans,1284812158 +228979,72998,sci-fi,1284812147 +228988,260,Adventure,1435842686 +228988,260,Space,1435842673 +229002,260,sci-fi,1438881387 +229002,260,space opera,1438881382 +229024,3949,psychology,1448425558 +229025,77772,Jason Mewes,1376922352 +229034,260,cult classic,1439847727 +229034,260,great soundtrack,1439847719 +229034,260,sci-fi,1439847709 +229034,260,space adventure,1439847693 +229034,68168,class conflict,1439848119 +229034,109487,space travel,1439847881 +229034,109487,time dilation,1439847900 +229034,109487,time paradox,1439847892 +229034,115713,artificial intelligence,1439847967 +229034,115713,different experience for computer scientists,1439847994 +229034,115713,Psychological,1439847983 +229034,115713,turing test,1439847974 +229046,81417,excessive backstory,1311951080 +229046,81417,unexpectedly terrifying,1311951080 +229047,750,kubrick,1140504535 +229047,858,coppola,1140504551 +229047,923,orson wells,1140504527 +229047,924,kubrick,1140504507 +229047,2599,payne,1140504545 +229047,4993,jackson,1140504560 +229047,5952,jackson,1140504569 +229066,356,mental illness,1433979810 +229066,356,president,1433979810 +229066,356,underdog,1433979810 +229131,260,amazing,1444768019 +229131,260,epic,1444768015 +229134,2991,007,1251048003 +229134,2991,007 (series),1251048034 +229134,2991,assassin,1251048028 +229134,2991,author:Ian Fleming,1251048057 +229134,2991,Bond,1251048008 +229134,2991,drugs,1251048026 +229134,2991,James Bond,1251048020 +229134,2991,killer as protagonist,1251048014 +229134,2991,Latin America,1251048046 +229134,2991,murder,1251048044 +229134,2991,Roger Moore,1251048011 +229134,2991,Sean Connery,1251048018 +229134,2991,VHS,1251048052 +229134,2991,Voodoo,1251048050 +229134,2991,Yaphet Kotto,1251048054 +229134,3635,007,1251048203 +229134,3635,007 (series),1251048203 +229134,3635,assassin,1251048186 +229134,3635,Bond,1251048196 +229134,3635,Lotus Esprits,1251048218 +229134,3635,murder,1251048221 +229134,3635,nuclear bomb,1251048223 +229134,3635,Roger Moore,1251048191 +229134,3635,spy,1251048232 +229134,3639,007,1251048136 +229134,3639,007 (series),1251048127 +229134,3639,assassin,1251048133 +229134,3639,bond,1251048097 +229134,3639,franchise,1251048161 +229134,3639,island,1251048140 +229134,3639,killer as protagonist,1251048119 +229134,3639,murder,1251048153 +229134,3639,Nudity (Topless - Brief),1251048144 +229134,3639,Roger Moore,1251048106 +229134,3639,VHS,1251048158 +229134,4234,based on a book,1251047709 +229134,4234,espionage,1251047688 +229134,4234,Pierce Brosnan,1251047684 +229134,7143,A Good Tom Cruise Movie,1251048871 +229134,7143,cavalry charge,1251048876 +229134,7143,Honor,1251048837 +229134,7143,intense,1251048893 +229134,7143,martial arts,1251048840 +229134,7143,R:strong graphic battles,1251048850 +229134,7143,rebellion,1251048857 +229134,7143,samurai,1251048842 +229134,7143,sword fight,1251048883 +229134,7143,Tom Cruise,1251048844 +229143,260,classic sci-fi,1435856940 +229143,260,space action,1435856955 +229143,260,space epic,1435856950 +229143,4878,atmospheric,1435857150 +229143,4878,cult film,1435857131 +229143,4878,dreamlike,1435857139 +229143,4878,hallucinatory,1435857144 +229143,4878,psychological,1435857147 +229143,4878,surreal,1435857128 +229143,4878,time travel,1435857135 +229143,7147,dreamlike,1435857017 +229143,7147,sentimental,1435857038 +229143,7147,surreal,1435857020 +229143,7147,Tim Burton,1435857024 +229143,7361,alternate reality,1435857168 +229143,7361,memory,1435857171 +229143,7361,thought-provoking,1435857163 +229143,97938,cinematography,1435857101 +229143,97938,India,1435857092 +229143,97938,surreal,1435857076 +229161,45668,Mystery,1162813078 +229171,1198,adventure,1429602911 +229171,1198,great soundtrack,1429602926 +229171,1198,Harrison Ford,1429602908 +229171,1198,Steven Spielberg,1429602920 +229208,165,action packed,1331011894 +229208,318,inspirational,1315777462 +229208,318,Morgan Freeman,1315777451 +229208,318,Stephen King,1315777466 +229208,608,quirky,1331100908 +229208,924,Classic villain,1315775004 +229208,924,Great Art Direction,1315774972 +229208,924,great villain,1315776938 +229208,1201,Ennio Morricone,1328307965 +229208,1201,Lee Van Cleef,1328307965 +229208,1206,Malcom McDowell,1351505428 +229208,1206,Stanley Kubrick,1351505428 +229208,1206,surreal,1351505428 +229208,1266,gritty,1348125314 +229208,1266,somber,1348125314 +229208,1608,good sound,1339311536 +229208,1608,great editing,1339311536 +229208,1968,Stoner Movie,1381551427 +229208,2427,ensemble cast,1322552594 +229208,2427,music,1322552594 +229208,2427,Nick Nolte,1322552594 +229208,2427,random shots of animals,1322552709 +229208,2427,sad but good,1322552594 +229208,2427,slow start,1322552664 +229208,2427,sound effects,1322552594 +229208,2657,great soundtrack,1377587804 +229208,3176,great acting,1337584345 +229208,3176,Jude Law,1337584345 +229208,3176,thrilling,1337584345 +229208,3186,Angelina Jolie,1351296086 +229208,3418,Brad Pitt,1351295792 +229208,3418,Geena Davis,1351295792 +229208,3418,great editing,1351295792 +229208,3418,Michael Madsen,1351295792 +229208,3418,Ridley Scott,1351295792 +229208,3418,Susan Sarandon,1351295792 +229208,3499,Kathy Bates,1339484554 +229208,3499,Stephen King,1339484554 +229208,4776,denzel washington,1305857800 +229208,4776,Oscar (Best Actor),1305857820 +229208,4776,plot,1305857845 +229208,4776,STREET GANGS,1305857884 +229208,7153,11 Oscars,1315777386 +229208,7153,Oscar (Best Directing),1315777350 +229208,7153,Oscar (Best Picture),1315777345 +229208,8798,Tom Cruise,1305857946 +229208,8950,Christian Bale,1363461719 +229208,32928,good acting,1376547726 +229208,32928,interesting story,1376547726 +229208,41285,thrilling,1332314190 +229208,41569,Andy Serkis,1328154410 +229208,41569,great cinematography,1328154411 +229208,41569,Great special effects,1328154410 +229208,41569,Peter Jackson,1328154410 +229208,48304,cinematography,1364152858 +229208,48304,Mel Gibson,1364152854 +229208,48304,unique,1364152854 +229208,57368,very thrilling,1314085764 +229208,58559,Christopher Nolan,1350437001 +229208,58559,Heath Ledger,1344653119 +229208,61160,Like a TV show,1347237141 +229208,61160,No John Williams music,1347237079 +229208,61160,sacrilege,1347237049 +229208,64575,great acting,1368427620 +229208,64575,Meryl Streep,1368427620 +229208,64575,Philip Seymour Hoffman,1368427620 +229208,70946,the worst movie i've ever seen,1346401498 +229208,71520,funny,1355387899 +229208,71520,good writing,1355387899 +229208,71520,Ricky Gervais,1355387899 +229208,72378,stupid,1347236394 +229208,72998,Art Direction,1347235455 +229208,72998,cinematography,1347235455 +229208,72998,Special Effects,1324353105 +229208,78349,cliche characters,1332137612 +229208,78349,cliche dialogue,1332137612 +229208,78349,great direction,1332137467 +229208,78349,great editing,1332137550 +229208,78349,great story,1332137468 +229208,78349,mediocre acting,1332137540 +229208,78349,mindfuck,1332137686 +229208,79702,video games,1328525693 +229208,86898,abstract,1315468810 +229208,86898,Brad Pitt,1315468920 +229208,86898,confusing,1315468657 +229208,86898,rip off of 2001: A Space Odyssey,1315468885 +229208,86898,surreal,1315468792 +229208,86898,too artsy,1315468734 +229208,88125,David Yates,1315777280 +229208,88125,epic,1315777233 +229208,88125,great acting,1315777085 +229208,88125,great cinematography,1315777197 +229208,88125,tear jerker,1315777144 +229208,88125,top-notch special effects,1315777239 +229208,88744,Andy Serkis,1328120128 +229208,88810,great acting,1323159958 +229208,88810,Tearjerker,1323160214 +229208,89470,No ark,1340941327 +229208,89745,fast paced,1340769571 +229208,89745,Fun,1340769580 +229208,89745,Great action,1340769571 +229208,89774,great acting,1329188852 +229208,89774,similar to Rocky,1329188852 +229208,89904,boring,1327359499 +229208,89904,pretentious,1327359499 +229208,90430,one set,1333006061 +229208,90430,real time,1333006062 +229208,91077,Shailene Woodley,1327649129 +229208,91104,bad acting,1348128479 +229208,91104,nothing happens,1348128479 +229208,91126,cinematography,1327359618 +229208,91126,John Williams,1327359618 +229208,91126,music,1327359618 +229208,91126,Steven Spielberg,1327359618 +229208,91529,Anne Hathaway,1344653016 +229208,91529,Christopher Nolan,1344653016 +229208,91542,Sound Mixing,1340941660 +229208,91976,gritty,1348470192 +229208,91976,Liam Neeson,1348470192 +229208,91976,open ending,1348470213 +229208,91976,Very emotional,1348470192 +229208,92420,coming of age,1335749947 +229208,92420,genius,1335749947 +229208,93840,overrated,1345532859 +229208,93840,stupid,1345532859 +229208,94864,prequel,1347865472 +229208,94864,scary,1347865497 +229208,94959,original,1348551913 +229208,94959,quirky,1348551913 +229208,95088,funny,1350108058 +229208,95088,great script,1350108059 +229208,95510,not as good as the original,1343159792 +229208,97304,Ben Affleck,1350812524 +229208,97304,funny,1350812524 +229208,97304,Thrilling,1350812524 +229208,97304,true story,1350812524 +229208,97752,Art Direction,1351495034 +229208,97752,Cinematography,1351495034 +229208,97752,costumes,1351495034 +229208,97752,great acting,1351495034 +229208,97752,Hugo Weaving,1351494876 +229208,97752,imaginative,1351494857 +229208,97752,independent film,1351495034 +229208,97752,makeup effects,1351495034 +229208,97752,masterpiece,1351494857 +229208,97752,multiple roles,1351494857 +229208,97752,multiple storylines,1351494857 +229208,97752,Special effects,1351495034 +229208,97752,The Wachowskis,1351494857 +229208,97752,Tom Hanks,1351494857 +229208,97921,Bradley Cooper,1358150481 +229208,97921,Jennifer Lawrence,1358150481 +229208,97921,Robert De Niro,1358150481 +229208,99149,Anne Hathaway,1358397425 +229208,99149,singing,1358397450 +229208,104841,acting,1381965154 +229208,104841,Alfonso Cuarón,1381965154 +229208,104841,suspense,1381965154 +229208,130520,Jim Parsons,1428893923 +229208,130520,Rihanna,1428893946 +229214,260,original plot,1433961931 +229214,260,Science Fiction,1433961917 +229241,32,Time Travel,1169489453 +229241,318,great cast,1169489472 +229241,431,gangster,1169674175 +229241,480,boooo,1169489097 +229241,1178,Best War Films,1169489430 +229241,1213,mafia,1176035231 +229241,1213,Martin Scorsese,1176035245 +229241,1222,Vietnam War,1176035163 +229241,1258,red rum,1169489424 +229241,1967,Adventure,1176587292 +229241,1967,childish,1176587299 +229241,1967,muppets,1176587290 +229241,1968,1980s,1176092518 +229241,2021,based on a book,1169934085 +229241,2194,Sean Connery,1169489105 +229241,2726,imdb top 250,1176122758 +229241,2726,Stanley Kubrick,1176122744 +229241,4437,Dario Argento,1169489462 +229241,5971,Studio Ghibli,1169489434 +229241,5992,girlie movie,1176204724 +229241,5992,stodgy play,1176204713 +229241,6651,uninspired,1172354797 +229241,7263,hockey,1176034829 +229241,7347,Ei muista,1171747436 +229241,26662,anime,1174852649 +229241,26662,family,1174852655 +229241,26662,magic,1174852623 +229241,26662,Studio Ghibli,1174852645 +229241,26662,witch,1174852633 +229241,33834,not very good.,1177837014 +229241,34405,good sci-fi flick,1170500146 +229241,44731,i wish i'd never seen it,1182318879 +229249,924,classic,1168537725 +229249,924,groundbreaking,1168537701 +229249,924,sci-fi,1168537728 +229249,2009,dystopia,1168539224 +229249,2571,dystopia,1168539159 +229249,44191,distopia,1168539208 +229249,45722,Johnny Depp,1168537501 +229249,45722,pirates,1168537513 +229249,48774,distopia,1168539272 +229257,8860,phone,1138064046 +229259,260,cult classic,1434766654 +229270,365,Keanu Reeves,1234303143 +229280,3104,comedy,1437213330 +229280,122882,amazing,1437212921 +229280,122882,gripping,1437212921 +229280,122882,interesting,1437212921 +229281,260,sci-fi,1428304871 +229281,260,space opera,1428304871 +229281,260,spaceships,1428304871 +229281,98809,adventure,1428304771 +229281,98809,fantasy,1428304767 +229281,98809,magestic,1428304783 +229288,260,fantasy,1443911186 +229288,260,Science Fiction,1443911181 +229288,741,philosophical,1443930451 +229288,3362,intense,1443930187 +229293,55282,vampire,1216139726 +229300,1200,action,1446649799 +229300,1200,Alien,1446649810 +229300,1200,aliens,1446649792 +229300,1200,androids,1446649808 +229300,1200,horror,1446649801 +229300,1200,James Cameron,1446649820 +229300,1200,sci-fi,1446649796 +229300,1200,space,1446649789 +229300,1200,SPACE TRAVEL,1446649812 +229333,260,Movie,1439281393 +229333,260,Star Wars,1439281383 +229345,260,classic sci-fi,1440448113 +229345,260,Harrison Ford,1440448123 +229345,260,must see,1440448132 +229345,260,sci-fi,1440448094 +229356,122886,BB-8,1451776782 +229356,122886,Plot Recycling,1451776811 +229367,293,crime,1440170663 +229367,293,hitman,1440170641 +229367,4011,dark comedy,1440170693 +229367,4011,dark humor,1440170699 +229367,4011,twist ending,1440170685 +229367,4995,psychology,1440171447 +229367,4995,schizophrenia,1440171450 +229367,4995,twist ending,1440171458 +229367,79132,alternate reality,1440170725 +229367,79132,mindfuck,1440170731 +229390,466,watch again,1202236421 +229390,1266,watch again,1202236537 +229390,7256,watch again,1202237959 +229390,44929,watch,1202238142 +229390,54094,gingers are scary,1218856497 +229390,54934,To See,1202234837 +229390,57464,Recommend,1219018576 +229390,57464,Underrated,1219018556 +229390,57464,Watch Again,1219018587 +229411,94018,Poor Plot,1342821861 +229430,260,sci-fi,1432447721 +229430,260,space combat,1432447741 +229430,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1432447755 +229443,26,wow,1186023382 +229443,1464,Awful Awards,1186023337 +229443,2505,must see,1186023298 +229443,3044,must see,1186023196 +229443,3706,Excellent just excellent,1186023466 +229443,4020,it's alright.,1186023502 +229443,4992,sweet,1186023522 +229443,5064,must see,1186023235 +229443,5225,must see,1186023262 +229443,5444,awful,1186023311 +229443,5620,sweet,1186023480 +229443,7160,good,1186023435 +229443,8361,nice movie,1186023358 +229443,8970,fairly bad,1186023210 +229443,35836,will enjoy,1186023299 +229448,85401,violent,1415336476 +229448,109487,good science,1442425410 +229448,109487,plot holes,1442425426 +229448,109487,relativity,1442425395 +229448,109487,sci-fi,1442425390 +229448,109487,space travel,1442425416 +229456,3698,corruption,1254226827 +229456,3698,dystopia,1254226814 +229456,3698,romantic ending,1254226821 +229486,64236,atmospheric,1426435559 +229486,64236,beautifully shot,1426435559 +229486,64236,drama,1426435559 +229486,64236,good music,1426435559 +229486,64236,stylish,1426435559 +229509,260,Science Fiction,1438147120 +229509,260,Star Wars,1438147125 +229545,356,drama,1438282198 +229545,356,history,1438282198 +229545,356,touching,1438282198 +229559,4993,fairytale,1425492158 +229559,4993,fantasy,1425492158 +229559,4993,hobbits,1425492158 +229559,4995,based on a true story,1425566456 +229559,4995,math,1425566471 +229559,44191,inspirational,1425566873 +229559,44191,thought-provoking,1425566892 +229559,80463,computers,1425566572 +229559,80463,nerds,1425566567 +229559,80463,social network,1425566590 +229559,84152,smart,1425566783 +229559,103235,twist ending,1425566547 +229559,115998,til schweiger,1425566856 +229559,128971,drama,1425566818 +229561,170,computers,1342545234 +229561,1210,Harrison Ford,1342545192 +229561,1226,John Ford,1342545221 +229561,1226,John Wayne,1342545212 +229561,1226,Maureen O'Hara,1342545216 +229561,1676,witty,1342545411 +229561,3307,silent movie,1346614710 +229561,3836,anti-hero,1342545462 +229561,3836,World War II,1342545460 +229561,86355,Capitalism,1342545163 +229561,86355,Independence,1342545161 +229561,86355,Individualism,1342545159 +229568,858,italian people,1351953577 +229568,858,mafia life,1351953577 +229568,912,africa,1351953485 +229568,912,casablanca,1351953485 +229568,912,Humphrey Bogart,1351953486 +229568,912,marriage,1351953485 +229568,912,romance,1351953486 +229568,912,war,1351953486 +229568,915,Audrey Hepburn,1351953169 +229568,915,father daughter relationship,1351953169 +229568,915,paris,1351953169 +229568,915,poor vs. rich,1351953169 +229568,955,comedy,1351953964 +229568,955,Katherine Hepburn,1351953964 +229568,969,boat,1351953337 +229568,969,catherine hepburrn,1351953337 +229568,969,Humphrey Bogart,1351953337 +229568,969,romance,1351953337 +229568,1281,Charlie Chaplin,1351953987 +229568,1281,war,1351953987 +229568,2324,father son relationship,1351953793 +229568,2324,war,1351953793 +229568,2340,brad pitt,1351953048 +229568,2340,death,1351953062 +229568,2340,time,1351953048 +229568,2571,Especial effects and visuals,1351953706 +229568,2571,machines,1351953706 +229568,2858,american life,1351953754 +229568,2858,Annette Bening,1351953754 +229568,4973,french people,1351953641 +229568,4973,paris,1351953641 +229568,7153,epic adventure,1351953852 +229568,7153,rings,1351953852 +229568,7153,Viggo Mortensen,1351953852 +229568,7153,war,1351953852 +229591,293,touching,1444503942 +229591,4226,dark,1444503963 +229591,4226,psychological,1444503959 +229591,4226,twist ending,1444503955 +229591,81591,atmospheric,1444503909 +229591,81591,dark,1444503916 +229606,260,sci-fi,1443233676 +229606,260,space adventure,1443233688 +229630,508,tragedy,1439943096 +229630,111781,tedious,1439943301 +229650,115617,animation,1428566070 +229650,115617,kids and family,1428566070 +229650,115617,super-hero,1428566070 +229655,41285,woody allen is a terrible person,1144562261 +229671,1136,Fun,1144933572 +229677,296,crime,1423610850 +229677,296,dark comedy,1423610850 +229677,296,masterpiece,1423610850 +229684,4369,cars,1420648818 +229684,4369,Paul Walker,1420648867 +229684,4369,street race,1420648855 +229684,4369,Vin Diesel,1420648857 +229696,4011,comedy,1448220633 +229696,6323,psychology,1448221910 +229696,47099,based on a true story,1448223813 +229696,47099,Motivation,1448223820 +229696,48516,Crime,1448217194 +229696,48516,psychology,1448217187 +229696,80463,based on true story,1448223882 +229696,80463,college,1448223898 +229696,80463,computers,1448223877 +229696,80463,funny,1448223901 +229696,84152,drugs,1448224262 +229696,84152,human potential,1448224235 +229696,93270,party,1448224656 +229696,134130,Space,1448213709 +229696,134130,Survival Instinct,1448213715 +229696,136598,funny,1448224854 +229738,63001,drama,1420640918 +229738,63001,historical epic,1420640918 +229738,63001,russian revolution,1420640918 +229759,904,claustrophobic,1439698343 +229759,904,mystery,1439698350 +229759,904,suspenseful,1439698353 +229759,904,visually appealing,1439698346 +229759,904,voyeurism,1439698339 +229759,44191,dark,1439698495 +229759,44191,dystopia,1439698483 +229759,44191,social commentary,1439698488 +229759,44191,thought-provoking,1439698485 +229759,44191,visually appealing,1439698492 +229759,48774,atmospheric,1439698401 +229759,48774,dystopia,1439698393 +229759,48774,futuristic,1439698414 +229759,48774,sci-fi,1439698406 +229759,48774,social commentary,1439698397 +229759,48774,thought-provoking,1439698404 +229759,48774,thriller,1439698417 +229759,60684,alternate history,1439698719 +229759,60684,alternate reality,1439698717 +229759,60684,dystopia,1439698707 +229759,60684,sci-fi,1439698714 +229759,60684,stylized,1439698725 +229759,60684,stylized violence,1439698713 +229759,79132,alternate reality,1439698735 +229759,79132,complicated,1439698749 +229759,79132,intellectual,1439698747 +229759,79132,surreal,1439698741 +229759,79132,thought-provoking,1439698743 +229759,79132,visually appealing,1439698739 +229759,96610,time travel,1439698942 +229760,527,drama,1433668023 +229760,527,history,1433668027 +229760,1214,horror,1433668075 +229760,1214,sci-fi,1433668078 +229819,318,a great movie,1366692870 +229836,318,endurance,1427386945 +229836,318,friendship,1427386945 +229836,318,perseverance,1427386945 +229836,30749,survival in serious situation,1427387164 +229836,86781,mother,1427386964 +229836,86781,true love,1427386962 +229836,86781,war,1427387017 +229836,96079,old agent,1427387224 +229839,1610,submarine,1430054018 +229839,1610,thriller,1430054025 +229839,112552,greatness,1430053728 +229839,112552,psychological,1430053722 +229839,112552,Teacher Student,1430053684 +229839,130636,decent screenplay,1430053820 +229839,130636,funny,1430053820 +229839,130636,psychological,1430053820 +229840,1917,apocalypse,1157126335 +229840,1917,Bruce Willis,1157126335 +229840,1917,space,1157126350 +229840,2571,computers,1157126658 +229840,2571,machines,1157126658 +229840,2571,martial arts,1157126658 +229840,2571,virtual,1157126658 +229840,3967,ballet,1157126447 +229840,3967,dance,1157126447 +229840,3967,dreams,1157126447 +229840,3967,far away,1157126447 +229840,3967,gey,1157126447 +229840,3967,talent,1157126447 +229840,4014,history,1157126498 +229840,4014,Johny Deep,1157126498 +229840,4014,love,1157126498 +229840,4014,sweet,1157126498 +229840,4246,diary,1157126476 +229840,4246,fat women,1157126476 +229840,4246,fun,1157126476 +229840,4246,great,1157126476 +229840,4246,love,1157126476 +229840,4447,fun,1157126582 +229840,4447,pink,1157126582 +229840,4447,stupid,1157126582 +229840,4447,universitate,1157126583 +229840,4993,fantasy,1157126602 +229840,4993,great,1157126602 +229840,4993,magic,1157126602 +229840,4993,nature,1157126602 +229840,4993,witness,1157126602 +229840,4995,matemathic,1157126407 +229840,4995,Russel Crowe,1157126407 +229840,4995,special mind,1157126407 +229840,5218,animals,1157126555 +229840,5218,cartoon,1157126555 +229840,5218,fun,1157126555 +229840,5218,ice,1157126555 +229840,5377,boring life,1157124733 +229840,5377,problems,1157124733 +229840,5377,rich,1157124733 +229840,5377,shy boy,1157124733 +229840,5377,teenagers,1157124733 +229840,6942,christmas,1157126631 +229840,6942,family,1157126631 +229840,6942,love,1157126631 +229840,6942,romantic,1157126631 +229840,8361,catastrophe,1157124684 +229840,8361,library,1157124684 +229840,8361,snow,1157124684 +229840,40815,fun,1157126535 +229840,40815,magic,1157126535 +229840,40815,teenagers,1157126535 +229855,260,action,1431940308 +229855,260,classic sci-fi,1431940265 +229855,260,sci-fi,1431940253 +229867,31410,Berlin,1187817745 +229875,4873,rotoscope,1166490012 +229898,64497,Looking forward about it,1233053566 +229904,2851,evil robot,1221269620 +229904,2851,space station,1221269629 +229904,6067,bad Irish accents,1264807926 +229904,6067,Gangland,1264807926 +229904,6067,Ireland,1264807926 +229904,6159,coming of age,1282147445 +229904,6159,pregnancy,1282147445 +229973,134853,Pixar,1437343479 +229973,134853,psychology,1437343470 +229973,134853,San Francisco,1437343474 +229979,4973,comedy,1425585516 +229979,4973,feel-good,1425585518 +229979,4973,romance,1425585507 +229979,4973,romantic,1425585515 +230006,132358,bollywood,1429002372 +230006,132358,social commentary,1429002372 +230006,132358,thriller,1429002372 +230023,260,classic,1431307930 +230023,260,Star Wars,1431308033 +230037,29,visually appealing,1143867278 +230037,92,what is with Robert's bangs in this movie?! GRR,1143868446 +230037,110,overrated,1143865315 +230037,247,bizarre,1143869093 +230037,247,homo-erotic,1143869093 +230037,249,beautiful music,1143869150 +230037,249,gary oldman,1143869150 +230037,319,disturbing,1143869250 +230037,407,lovecraftian,1143869043 +230037,590,lame,1143868338 +230037,594,classic,1143866469 +230037,783,awful,1143868400 +230037,783,disney was really reaching for material,1143868400 +230037,783,perversion of hugo's novel,1143868356 +230037,784,scary not funny,1143868185 +230037,919,classic,1143869197 +230037,953,tediously sacchrine,1143868138 +230037,1029,disturbing clown content,1143868064 +230037,1225,best movie ever,1143868817 +230037,1339,tom waits,1143867320 +230037,1711,good adaptation of the book,1143866539 +230037,2009,it's made of PEOPLE!,1143867410 +230037,2025,dominique swain looks silly-like a twenty year old pretending to be twelve,1143870973 +230037,2096,a favorite childhood movie,1143869119 +230037,2329,ed norton is CUT,1143869400 +230037,2437,well cast,1143869517 +230037,2686,beautiful music,1143868851 +230037,2699,spiders :(,1143876669 +230037,2710,obnoxious,1143868033 +230037,3081,visually appealing,1143866782 +230037,3181,shakespeare,1143869179 +230037,3181,visually appealing,1143869179 +230037,3275,silly,1143867360 +230037,3535,not as disturbing as the novel,1143869466 +230037,3550,bauhaus!,1143866641 +230037,3550,David Bowie!,1143866753 +230037,3556,true to novel,1143867899 +230037,3988,classic holiday movie,1143868988 +230037,4036,has Eddie Izzard,1143866808 +230037,4370,so long! and wierd!,1143867561 +230037,4641,pretentious,1143868319 +230037,5128,how embarassing to die after starring in this steaming pile,1143868720 +230037,5128,simply awful,1143868560 +230037,5254,at least these movies are consistent albeit awful,1143868498 +230037,5971,Cute!,1143866198 +230037,6063,odd,1143866848 +230037,6373,jim carrey as god=scary,1143868229 +230037,6711,most overrated movie ever,1143868539 +230037,6773,awesome music,1143868771 +230037,6773,endearing,1143868795 +230037,6773,interesting animation style,1143868771 +230037,7022,hot girls!,1143869707 +230037,7045,based on book,1143867261 +230037,7090,visually appealing,1143867447 +230037,7266,amusing!,1143866920 +230037,7742,wierd,1143867181 +230037,7951,based on clive barker's novel cabal,1143867038 +230037,27706,visually interesting--that's about it,1143867472 +230037,27773,wrong. so wrong,1143867071 +230037,30816,visually appealing,1143866288 +230037,30894,shite,1143868608 +230037,33166,gave me a headache,1143868305 +230037,33794,christian bale is hot,1143866362 +230037,34323,sooo wrong!,1143866393 +230037,36401,barely tolerable,1143868523 +230037,37857,dave mckean,1143867150 +230037,37857,neil gaiman,1143867150 +230037,37857,visually appealing,1143867150 +230037,41566,didn't translate well to a movie,1143868265 +230037,41566,overrated,1143868265 +230037,41566,wanted to smack those kids,1143868265 +230039,60684,based on a comic,1286887626 +230039,60684,comic book,1286887617 +230039,60684,Nudity (Topless),1286887629 +230039,60684,social commentary,1286887633 +230039,60684,stylized,1286887620 +230062,5445,fine,1142824178 +230068,260,feel-good,1439925366 +230068,260,Harrison Ford,1439925343 +230068,260,sci-fi,1439925353 +230068,3578,sword fight,1440515028 +230076,318,friendship,1449326305 +230076,318,inspirational,1449326302 +230076,318,prison escape,1449326296 +230076,318,twist ending,1449326298 +230076,356,feel-good,1449326253 +230076,356,inspirational,1449326239 +230076,858,Al Pacino,1449326286 +230076,858,classic,1449326270 +230076,858,Marlon Brando,1449326281 +230076,858,robert de niro,1449326277 +230076,1682,alternate reality,1449326093 +230076,1682,philosophy,1449326096 +230076,2571,dystopia,1449326321 +230076,2571,philosophy,1449326323 +230076,2571,sci-fi,1449326317 +230076,2571,virtual reality,1449326319 +230076,2959,psychology,1449326333 +230076,4011,comedy,1449326347 +230076,44191,dystopia,1449326127 +230076,44191,Natalie Portman,1449326133 +230076,44191,revenge,1449326130 +230076,44191,thought-provoking,1449326140 +230076,54286,great plot,1449326206 +230076,54286,spy thriller,1449326202 +230076,91542,sherlock holmes,1449326120 +230076,103253,dystopia,1449326039 +230076,103253,science fiction,1449326050 +230076,115713,artificial intelligence,1449325962 +230076,115713,Psychological,1449325975 +230082,318,hide,1240018377 +230090,1408,transcendentialist,1242437565 +230090,1586,enpowering,1242437918 +230090,4030,vampires,1242438334 +230090,4571,dude comedy,1242678174 +230090,4571,fun history,1242678174 +230090,4980,death,1242678141 +230090,4980,dude comedy,1242678141 +230090,4980,grim reaper,1242678141 +230090,6959,time travel,1242438158 +230090,57526,computer crimes,1242437976 +230090,57526,hacking,1242437964 +230090,61350,unresolved,1242438288 +230090,64957,sad,1242437945 +230090,87210,Ian Somerhalder,1313567245 +230153,26865,martial arts,1138687910 +230167,260,Science Fiction,1433322284 +230167,260,space,1433322314 +230181,25,addiction,1166648743 +230181,32,time travel,1166648706 +230181,50,puzzle-like,1166648329 +230181,150,NASA,1166648018 +230181,246,documentary,1166648485 +230181,246,sports,1166648485 +230181,246,true story,1166648485 +230181,260,sci-fi,1166648348 +230181,296,nonlinear,1166649888 +230181,296,organized crime,1166649067 +230181,381,addiction,1166648701 +230181,477,biopic,1166648246 +230181,508,lgbt,1166649085 +230181,527,true story,1166648098 +230181,648,big budget,1166649782 +230181,750,satire,1166648529 +230181,778,addiction,1166648760 +230181,858,organized crime,1166649171 +230181,924,sci-fi,1166649311 +230181,1089,nonlinear,1166649912 +230181,1089,organized crime,1166649052 +230181,1090,Oliver Stone,1166649682 +230181,1090,Vietnam,1166649692 +230181,1213,organized crime,1166648997 +230181,1219,Hitchcock,1166649648 +230181,1219,horror,1166649653 +230181,1221,organized crime,1166649002 +230181,1230,Woody Allen,1166649254 +230181,1231,NASA,1166648012 +230181,1265,time travel,1166648496 +230181,1270,time travel,1166649248 +230181,1476,biopic,1166648273 +230181,1635,modern life,1166648460 +230181,1721,big budget,1166649352 +230181,1955,divorce,1166649132 +230181,2160,scary,1166649931 +230181,2289,satire,1166649079 +230181,2571,sci-fi,1166648364 +230181,2791,absurd,1166649304 +230181,2858,modern life,1166649500 +230181,2908,lgbt,1166648604 +230181,2973,Woody Allen,1166648538 +230181,2997,unique,1166649244 +230181,3160,ensemble,1166648384 +230181,3317,coming of age,1166648656 +230181,3499,scary,1166649811 +230181,3793,big budget,1166649364 +230181,3897,coming of age,1166648639 +230181,3911,absurd,1166649236 +230181,3949,addiction,1166649619 +230181,4022,unique,1166648578 +230181,4226,nonlinear,1166649818 +230181,4262,organized crime,1166648980 +230181,4848,nonlinear,1166649900 +230181,4878,time travel,1166649189 +230181,4963,heist,1166649700 +230181,5669,documentary,1166649211 +230181,5992,nonlinear,1166649874 +230181,5995,holocaust,1166648130 +230181,5995,true story,1166648130 +230181,6565,sports,1166648218 +230181,6565,true story,1166648218 +230181,7160,true story,1166648172 +230181,7256,unique,1166648910 +230181,27822,true story,1166649107 +230181,27822,unique,1166649107 +230181,30812,biopic,1166648189 +230181,33660,sports,1166648829 +230181,33660,true story,1166648153 +230181,41997,Jews,1166649769 +230181,41997,true story,1166649769 +230231,7323,East Germany,1453228920 +230231,7323,Germany,1453228925 +230231,7323,historical,1453228927 +230231,93988,Period Drama,1453144529 +230236,1755,Beckinsale,1137453448 +230236,1755,London,1137453448 +230236,1755,Scams,1137453448 +230236,2366,monkey,1137453692 +230236,2366,scary,1137453692 +230236,41569,monkey,1137453753 +230236,41569,scary,1137453753 +230239,53129,plot twist,1365609920 +230245,134130,funny,1434464369 +230245,134130,mars,1434464392 +230245,134130,realistic,1434464382 +230245,134130,scientific,1434464365 +230245,134130,smart,1434464406 +230245,134130,witty,1434464375 +230256,109487,bad dialogue,1447626869 +230256,109487,Christopher Nolan,1447626846 +230256,109487,plot holes,1447626861 +230269,112556,Stupid ending,1440439200 +230279,260,classic sci-fi,1438968228 +230279,260,cult classic,1438968235 +230299,74228,mystery,1441122432 +230299,74228,Surreal,1441122431 +230299,74228,time loop,1441122434 +230299,74228,twists & turns,1441122437 +230299,74458,ending twist,1441122401 +230299,74458,island,1441122413 +230299,74458,mindfuck,1441122404 +230299,74458,psychological,1441122392 +230299,88140,action,1441122472 +230299,88140,comic book,1441122467 +230299,88140,Marvel,1441122476 +230299,88140,superhero,1441122470 +230307,71057,post-apocalyptic,1253894908 +230307,71057,Visuals,1253894930 +230308,41566,boring,1137875740 +230308,41566,overrated,1137875737 +230316,261,little,1187696140 +230316,1597,thought-provoking,1187696098 +230316,1729,tarantino,1187696120 +230316,2947,spy,1187696109 +230316,4246,love story,1187696086 +230316,7438,Tarantino,1187696129 +230359,112852,action,1425147452 +230359,112852,marvel,1425147452 +230359,112852,sci-fi,1425147452 +230359,128991,dark comedy,1434001879 +230359,128991,sci-fi,1434001879 +230359,128991,short films,1434001879 +230395,260,hopeful,1443712016 +230395,260,inspiring,1443712002 +230395,260,magical,1443711981 +230403,19,detective,1368451147 +230403,32,brad pitt,1426268095 +230403,32,bruce willis,1426268093 +230403,32,mindfuck,1426268105 +230403,32,post-apocalyptic,1426268088 +230403,32,time travel,1426268106 +230403,32,twist ending,1426268091 +230403,39,teen movie,1368450972 +230403,47,great ending,1368451122 +230403,50,excellent script,1368450890 +230403,150,based on a true story,1260284430 +230403,150,space,1260284425 +230403,150,Tom Hanks,1260284427 +230403,150,true story,1260284422 +230403,288,brutality,1368450998 +230403,296,masterpiece,1368450823 +230403,318,great ending,1368451122 +230403,593,excellent script,1368450889 +230403,735,splatter,1368450923 +230403,741,anime,1260814723 +230403,741,great anime,1260814732 +230403,741,overrated,1260814728 +230403,750,black comedy,1426268058 +230403,750,dark comedy,1426268055 +230403,750,Quirky,1426268061 +230403,750,satire,1426268065 +230403,1088,dancing,1368451018 +230403,1089,original,1368450737 +230403,1092,Erotic,1325168213 +230403,1092,Erotic Thriller,1325168216 +230403,1092,Paul Verhoeven,1325168223 +230403,1092,sex scenes,1325168218 +230403,1092,Sharon Stone,1325168220 +230403,1219,suspenseful,1368450987 +230403,1370,action,1419891263 +230403,1370,Bruce Willis,1419891258 +230403,1387,suspenseful,1368450987 +230403,1405,idiotic,1260814702 +230403,1405,stupid,1260814709 +230403,1754,supernatural,1368450875 +230403,1921,existentialism,1325168770 +230403,1921,great soundtrack,1325168778 +230403,1921,mathematics,1325168766 +230403,1921,notable soundtrack,1325168763 +230403,1921,tense,1325168774 +230403,1968,teen movie,1368450972 +230403,2294,Adventure,1260814647 +230403,2294,dreamworks,1260814643 +230403,2325,comedy,1245149688 +230403,2325,pornography,1245149676 +230403,2325,trey parker,1245149684 +230403,2692,alternate endings,1325168851 +230403,2692,humorous,1325168856 +230403,2692,nonlinear,1325168874 +230403,2692,notable soundtrack,1325168872 +230403,2692,surreal,1325168858 +230403,2858,excellent script,1368450889 +230403,3481,actor talks to audience,1253815099 +230403,3481,Jack Black,1253815093 +230403,3481,music,1253815102 +230403,4015,Ashton Kutcher,1245152516 +230403,4015,Stoner Movie,1245152521 +230403,4018,women,1368450935 +230403,4027,funny,1261668427 +230403,4027,George Clooney,1261668419 +230403,4027,prison escape,1261668425 +230403,4054,dancing,1368451018 +230403,4085,detective,1368451147 +230403,4267,different perspectives,1260816002 +230403,4369,cars,1252996959 +230403,4369,racing,1252996968 +230403,4878,original,1368450737 +230403,5092,Amanda Bynes,1260816284 +230403,5218,animated,1260814684 +230403,5218,animation,1260814682 +230403,5218,cartoon,1260814671 +230403,5218,Jack Black,1260814675 +230403,5401,Eddie Griffin,1245492661 +230403,5574,cars,1252874002 +230403,5574,Good action,1252874005 +230403,5574,Jason Statham,1252874000 +230403,5693,dancing,1368451018 +230403,6731,splatter,1368450922 +230403,6874,Uma Thurman,1307363733 +230403,6874,visually appealing,1307363740 +230403,7346,Nudity (Topless),1245151624 +230403,7346,pornography,1245151631 +230403,8464,american idiocy,1246868114 +230403,8464,documentary,1246868112 +230403,8464,social message,1246868119 +230403,8528,Ben Stiller,1245666420 +230403,8528,Vince Vaughn,1245666415 +230403,8841,funny,1322402857 +230403,8841,R:strong sexual content,1322402853 +230403,8907,Dreamworks,1260814934 +230403,8907,Jack Black,1260814946 +230403,27478,Sacha Baron Cohen,1245493208 +230403,30793,Johnny Depp,1261985851 +230403,30825,Robert De Niro,1260283983 +230403,32587,brutality,1368450999 +230403,34534,André Benjamin,1262384445 +230403,35836,beer,1253815660 +230403,35836,Nudity (Topless),1253815651 +230403,35836,romance,1253815653 +230403,35836,romantic comedy,1253815656 +230403,35836,sex,1253815645 +230403,36519,cars,1252873978 +230403,36519,Good action,1252873980 +230403,36519,Jason Statham,1252873976 +230403,36519,Kate Nauta,1252873985 +230403,38061,black comedy,1330950455 +230403,38061,good dialogue,1330950472 +230403,38061,Nudity (Topless),1330950458 +230403,38061,plot twist,1330950468 +230403,39427,amazing cinematography,1324542698 +230403,39427,plot only makes sense at end,1324542695 +230403,40339,dumb,1309243666 +230403,42723,splatter,1368450923 +230403,46335,cars,1253815038 +230403,46335,racing,1253815048 +230403,47640,beer,1245150035 +230403,47640,nudity (Topless),1245150046 +230403,48385,crude humor,1245493176 +230403,48385,mockumentary,1245493174 +230403,48385,Sacha Baron Cohen,1245493253 +230403,48385,satire,1245493186 +230403,48385,social commentary,1245493189 +230403,48982,animation,1325168569 +230403,48982,Dreamworks,1325168568 +230403,48982,romantic,1325168574 +230403,49396,fucking awesome,1245150937 +230403,49396,Jack Black,1245150935 +230403,51037,plot twist,1325168169 +230403,52973,drugs,1253815696 +230403,52973,marijuana,1253815691 +230403,52973,Nudity (Topless - Brief),1253815683 +230403,52973,Nudity (Topless),1253815688 +230403,53121,computer animation,1260814965 +230403,53121,Eddie Murphy,1260814963 +230403,53121,John Cleese,1260814956 +230403,53121,Mike Myers,1260814959 +230403,53894,american idiocy,1246868094 +230403,53894,documentary,1246868099 +230403,53894,Michael Moore,1246868089 +230403,54272,animation,1245152581 +230403,54272,simpsons,1245152576 +230403,54503,beer,1256036514 +230403,54503,crude humor,1256036521 +230403,54503,pornography,1256036517 +230403,54503,Seth Rogen,1256036572 +230403,55269,dark comedy,1421668089 +230403,55269,Wes Anderson,1421668086 +230403,55768,computer animation,1260814999 +230403,55768,Dreamworks,1260814997 +230403,56174,alone in the world,1253815864 +230403,56174,Will Smith,1253815860 +230403,56251,billy west,1245149708 +230403,56251,futurama,1245149711 +230403,56251,intelligent humor,1245149728 +230403,57669,dark comedy,1253819450 +230403,57669,irish accent,1253819454 +230403,57669,slow,1253819472 +230403,59404,Aaron Eckhart,1260813513 +230403,59784,Jack Black,1260814913 +230403,62434,Nudity (Topless),1245151419 +230403,62434,pornography,1245151433 +230403,62434,Sex Comedy,1245151436 +230403,62434,Sexual Humor,1245151441 +230403,62849,Guy Ritchie,1342373477 +230403,62849,overly complex,1342373471 +230403,62956,futurama,1245149747 +230403,62956,intelligent humor,1245149755 +230403,63859,animation,1262384408 +230403,63859,comic sidekick,1262384402 +230403,64030,cars,1252996916 +230403,64030,Jason Statham,1252996852 +230403,64614,classic car,1253815136 +230403,64614,culture clash,1253815138 +230403,64614,heartwarming,1253815133 +230403,64614,revenge,1253815142 +230403,64983,based on a true story,1252873959 +230403,64983,history,1252873947 +230403,64983,true story,1252873941 +230403,66297,animation,1245150970 +230403,66297,futurama,1245150964 +230403,66297,intelligent humor,1245150960 +230403,67408,Cartoon,1260815018 +230403,67408,computer animation,1260815013 +230403,67408,Dreamworks,1260815011 +230403,68157,Brad Pitt,1252849801 +230403,68157,Quentin Tarantino,1252849790 +230403,68157,unusual plot structure,1252849798 +230403,68554,mystery,1289759981 +230403,68554,secrets,1289759978 +230403,68554,thriller,1289759991 +230403,68843,British,1253814960 +230403,68843,James Corden,1253814971 +230403,68843,lesbian,1253814962 +230403,68843,vampires,1253814968 +230403,69122,Drinking,1261668451 +230403,69122,Las Vegas,1261668450 +230403,69122,Nudity (Topless),1261668454 +230403,69306,John Travolta,1260283940 +230403,69306,subway,1260283946 +230403,69466,con artists,1330283944 +230403,69466,R:sexual content,1330283936 +230403,73017,Guy Ritchie,1264490773 +230403,73017,Robert Downey Jr.,1264490783 +230403,74484,hot actresses,1307363160 +230403,76079,erotic,1325009697 +230403,76079,lesbian,1305562676 +230403,76079,sexuality,1305562698 +230403,80219,action packed,1307365051 +230403,80219,Jessica Alba,1307365056 +230403,80219,Nudity,1307365046 +230403,80219,Nudity (Topless),1307365048 +230403,80219,Robert Rodriguez,1307365054 +230403,81229,Bruce Willis,1309244305 +230403,81229,conspiracy,1309244312 +230403,81229,Morgan Freeman,1309244309 +230403,81229,spy,1309244317 +230403,81788,liam neeson,1421063209 +230403,81847,animation,1324280544 +230403,81847,fairy tale,1324280554 +230403,81847,musical,1324280541 +230403,81847,songs,1324280548 +230403,81847,visually appealing,1324280551 +230403,82854,Jack Black,1328539349 +230403,84954,Matrix,1309244579 +230403,85414,parallel universe,1325168820 +230403,85414,science fiction,1325168818 +230403,86233,hilarious,1309244616 +230403,86882,Owen Wilson,1380533738 +230403,86882,philosophical,1380533747 +230403,86882,quirky,1380533749 +230403,86882,Woody Allen,1380533742 +230403,88129,cars,1325168643 +230403,88129,cinematography,1325168649 +230403,88129,soundtrack,1325168647 +230403,88129,tense,1325168669 +230403,88129,visually appealing,1325168654 +230403,88812,bank robbery,1332336231 +230403,89753,confusing,1380534033 +230403,90439,realistic,1325168491 +230403,90439,smart people,1325168528 +230403,90439,tense,1325168493 +230403,90647,animation,1330502822 +230403,90647,Antonio Banderas,1330502820 +230403,90647,parody,1330502827 +230403,90647,visually appealing,1330502830 +230403,90746,3D effects,1332336186 +230403,90746,animation,1332336200 +230403,90746,Steven Spielberg,1332336192 +230403,90746,treasure hunt,1332336195 +230403,91077,emotional,1344505341 +230403,91077,George Clooney,1344505352 +230403,91077,intelligent,1344505348 +230403,91978,heist,1368545711 +230403,91978,suspense,1368545708 +230403,92264,Katherine Heigl,1356958661 +230403,96861,Famke Janssen,1419117641 +230403,96861,Liam Neeson,1419117645 +230403,97921,dark humor,1374006994 +230403,97921,romance,1374007001 +230403,98532,Danny Trejo,1422267912 +230403,99114,good soundtrack,1367090665 +230403,99114,Quentin Tarantino,1367090658 +230403,99114,Revenge,1367090667 +230403,99114,Spaghetti Western,1367090662 +230403,100108,Jason Statham,1380534152 +230403,101285,boring,1404298444 +230403,101360,suspense,1380533847 +230403,103366,crime,1385364717 +230403,103366,Jason Statham,1385364715 +230403,103372,buddy cops,1419117966 +230403,103372,funny,1419117964 +230403,103372,Melissa McCarthy,1419117961 +230403,104863,nice dialogues,1419708581 +230403,104863,witty,1419708576 +230403,106487,Abrupt ending,1419118013 +230403,106487,dystopia,1419118003 +230403,106487,dystopic future,1419118015 +230403,106487,Jennifer Lawrence,1419117997 +230403,106487,romance,1419118017 +230403,106487,strong female lead,1419118020 +230403,108932,clever,1421668197 +230403,108932,fun,1421668200 +230403,108932,Morgan Freeman,1421668191 +230403,109374,amazing storytelling,1404115640 +230403,109374,cinematography,1404115638 +230403,109374,great dialogue,1404115647 +230403,109374,Hilarious,1404115649 +230403,109374,quirky,1404115645 +230403,109374,visually appealing,1404115643 +230403,109578,Liam Neeson,1419078862 +230403,110771,revenge,1419118091 +230403,110771,surprisingly good,1419118088 +230403,110873,black comedy,1419708466 +230403,111360,Scarlett Johansson,1419117620 +230403,111622,bittersweet,1419117751 +230403,114246,Liam Neeson,1426268983 +230403,114246,noir thriller,1426268986 +230403,115569,dark,1426268243 +230403,115569,transformative performance,1426268247 +230443,2571,Commentary about today,1432596861 +230443,5632,Great: Makes you realize how over-acted most films are.,1137969144 +230443,8638,Movie about smug,1137968450 +230443,8638,self-satisfied people,1137968449 +230443,51662,Tyranny vs. digniity of individual. Personofies debauched nature of tyrants.,1371472390 +230443,103042,Allegory: Superman = Christ. His mother - Virgin Mary. Story of Moses,1371472282 +230443,103042,etc.,1371472282 +230443,103042,Over-the-top action.,1371472282 +230443,106920,transhumanism,1436060510 +230443,107406,Allegory,1435968542 +230443,107406,Hegel,1435968495 +230443,107406,Microcosmic view of power structures,1435968006 +230443,107406,New World Order agenda,1432596560 +230443,109487,Technocratic society,1432596455 +230443,109487,Transhumanism,1432596406 +230459,296,classic,1434675441 +230459,296,gangster,1434675441 +230459,296,highly quotable,1434675441 +230465,71379,Boring,1257059495 +230465,71379,with no payoff for sitting through it.,1257059495 +230482,288,brutal,1240884710 +230482,288,lurid,1240884712 +230482,288,menacing,1240884708 +230482,288,psychedelic,1240884725 +230482,288,satire,1240884715 +230482,288,stylized,1240884720 +230482,288,visceral,1240884705 +230482,296,Black comedy,1240884584 +230482,296,cult film,1240884602 +230482,296,Quentin Tarantino,1240884594 +230482,296,quirky,1240884606 +230482,296,Samuel L. Jackson,1240884595 +230482,296,violence,1240884615 +230482,1178,Best War Films,1240884683 +230482,1178,bleak,1240884678 +230482,1178,cynical,1240884675 +230482,1178,disturbing,1240884673 +230482,1178,ominous,1240884681 +230482,1201,Clint Eastwood,1240884965 +230482,1201,must see,1240884970 +230482,1207,atmospheric,1240884535 +230482,1207,heartwarming,1240884548 +230482,1207,poignant,1240884542 +230482,1207,social commentary,1240884560 +230482,1208,Dark,1240885150 +230482,1208,disturbing,1240885143 +230482,1208,surreal,1240885152 +230482,1208,violent,1240885155 +230482,1220,comedy,1240885113 +230482,1220,music,1240885117 +230482,1220,notable soundtrack,1240885123 +230482,1220,rhythm & blues,1240885121 +230482,1220,surreal,1240885129 +230482,1222,anti-war,1240884986 +230482,1222,Vietnam,1240884994 +230482,1233,classic,1240885099 +230482,1233,claustrophobic,1240885079 +230482,1233,gloomy,1240885087 +230482,1233,grim,1240885084 +230482,1233,gritty,1240885081 +230482,1233,tense,1240885095 +230482,2000,action,1240884909 +230482,2000,classic,1240884928 +230482,2000,comedy,1240884916 +230482,2000,Danny Glover,1240884897 +230482,2000,Mel Gibson,1240884899 +230482,2000,Nudity (Topless),1240884901 +230482,2000,police,1240884931 +230482,2000,subgenre:cop buddies,1240884905 +230482,2916,Arnold Schwarzenegger,1240884469 +230482,2916,author:Philip K. Dick,1240884477 +230482,2916,dystopia,1240884472 +230482,2916,Nudity (Topless - Brief),1240884489 +230482,2916,space travel,1240884499 +230482,3037,cute,1240884876 +230482,3037,Dustin Hoffman,1240884883 +230482,3037,my god is this good!,1240884879 +230482,4848,Atmospheric,1240884759 +230482,4848,dark,1240884762 +230482,4848,disturbing,1240884742 +230482,4848,Erotic,1240884746 +230482,4848,lesbian,1240884758 +230482,4848,Nudity (Full Frontal - Notable),1240884755 +230482,4848,surreal,1240884750 +230482,4855,"Best Performance: Clint Eastwood as ""Dirty"" Harry Callahan",1240885038 +230482,4855,Clint Eastwood,1240885043 +230482,4855,disturbing,1240885050 +230482,4855,harsh,1240885069 +230482,4855,Nudity (Full Frontal - Brief),1240885053 +230482,4855,visceral,1240885058 +230482,6711,Amazing Cinematography,1240884853 +230482,6711,atmospheric,1240884799 +230482,6711,bittersweet,1240884803 +230482,6711,poignant,1240884807 +230482,6711,urbane,1240884862 +230482,7361,bittersweet,1240885010 +230482,7361,Oscar (Best Writing - Screenplay Written Directly for the Screen),1240885017 +230482,7361,quirky,1240885020 +230482,7361,sci-fi,1240885024 +230482,7361,surreal,1240885022 +230482,49932,David Lynch,1240884945 +230482,49932,Laura Dern,1240884947 +230482,49932,surreal,1240884952 +230482,51091,atmospheric,1234824685 +230482,54995,crude humor,1240884639 +230482,54995,Nudity (Topless),1240884647 +230482,54995,Robert Rodriguez,1240884643 +230482,60766,suspenseful,1240884781 +230482,73211,disease,1270752541 +230482,73211,Stephen McHattie,1270752534 +230482,73211,zombies,1270752542 +230497,1,animation,1155950819 +230497,1,Pixar,1155950821 +230497,318,classic,1155950873 +230497,442,Sylvester Stallone,1155950733 +230497,442,Wesley Snipes,1155950728 +230497,590,Oscar (Best Picture),1155950752 +230497,1198,indiana jones,1155950834 +230497,2762,Bruce Willis,1155950905 +230497,4886,Pixar,1155950843 +230497,5952,high fantasy,1155950739 +230497,6377,Pixar,1155950893 +230497,8961,Pixar,1155950915 +230497,45517,Pixar,1155950898 +230515,32,post-apocalyptic,1258685995 +230515,32,time travel,1258685993 +230515,70,cult film,1258686141 +230515,70,Nudity (Topless - Brief),1258686136 +230515,70,twist ending,1258686146 +230515,380,espionage,1263257505 +230515,780,alien invasion,1263257441 +230515,1200,sci-fi,1263341515 +230515,1203,social commentary,1258685972 +230515,1748,dystopia,1258686201 +230515,1748,surreal,1258686199 +230515,1921,mathematics,1258686021 +230515,1921,mental illness,1258686019 +230515,1921,psychology,1258686017 +230515,2997,surreal,1258686206 +230515,3949,loneliness,1258685788 +230515,3949,Nudity (Full Frontal - Notable),1258685774 +230515,3949,Nudity (Full Frontal),1258685783 +230515,3949,Nudity (Rear),1258685786 +230515,4878,surreal,1258686006 +230515,4878,time travel,1258686005 +230515,4963,heist,1263257330 +230515,4973,quirky,1258976091 +230515,4973,surreal,1258685999 +230515,5418,espionage,1263257447 +230515,6711,atmospheric,1263257580 +230515,6774,creepy,1263346202 +230515,6774,hallucinations,1263346185 +230515,6774,surreal,1263346194 +230515,6774,unreliable narrators,1263347066 +230515,7361,surreal,1258686195 +230515,44191,dystopia,1258686096 +230515,48043,death,1258962128 +230515,48043,love,1258962132 +230515,52885,dreamlike,1258686013 +230515,52885,dreams,1258686015 +230515,52885,surreal,1298721363 +230515,54286,espionage,1263257464 +230515,54286,twist ending,1263257469 +230515,56174,alone in the world,1258683020 +230515,56174,last man on earth,1258683016 +230515,56174,post-apocalyptic,1258683011 +230515,56174,religion,1258683036 +230515,57504,time travel,1258686008 +230515,60684,dystopia,1258686091 +230515,71057,predictable,1258676966 +230515,71468,dreams,1258962078 +230515,71535,post-apocalyptic,1258686086 +230519,1584,idealism,1450509108 +230519,1584,outer space,1450509110 +230542,45722,shipwrecks,1431863197 +230542,69844,addiction,1431863018 +230553,70,Tarantino,1196201059 +230553,70,violence,1196201060 +230553,81,Recommendz Top Pick,1196687318 +230553,198,Nudity (Topless),1196201945 +230553,246,sports,1196199546 +230553,282,Liam Neeson,1196131070 +230553,296,Oscar (Best Writing - Screenplay Written Directly for the Screen),1196131327 +230553,296,visceral,1196131331 +230553,306,Krzysztof Kieslowski,1196199345 +230553,356,must see,1196131728 +230553,427,Nudity (Topless - Notable),1196686966 +230553,431,Brian DePalma,1196290353 +230553,471,Capra-esque,1196200672 +230553,520,funny,1196200586 +230553,527,cathartic,1196131419 +230553,527,Holocaust,1196131422 +230553,593,Saturn Award (Best Writing),1196131869 +230553,608,dark comedy,1196131296 +230553,608,offbeat humor,1196131278 +230553,608,Steve Buscemi,1196131292 +230553,608,William H. Macy,1196131280 +230553,608,witty,1196131303 +230553,640,Nudity (Full Frontal - Brief),1196687250 +230553,653,medieval,1196130682 +230553,719,Michael Keaton,1196289633 +230553,750,satire,1196131319 +230553,750,satirical,1196131316 +230553,785,witty,1196201036 +230553,849,Kurt Russell,1196289733 +230553,903,AFI 100,1196130188 +230553,903,AFI 100 (Thrills),1196130168 +230553,903,Alfred Hitchcock,1196130143 +230553,904,menacing,1196200300 +230553,904,Top 10 ever,1196131398 +230553,905,AFI 100 (Laughs),1196683367 +230553,905,Frank Capra,1196199211 +230553,905,Oscar (Best Actress),1196683369 +230553,909,Jack Lemmon,1196131449 +230553,910,Quotable,1196131743 +230553,913,AFI 100,1196131108 +230553,913,AFI 100 (Movie Quotes),1196131099 +230553,913,AFI 100 (Thrills),1196131120 +230553,913,Favorite,1196131090 +230553,913,Humphrey Bogart,1196131087 +230553,913,imdb top 250,1196131112 +230553,913,John Huston,1196131123 +230553,920,want to see again,1196131793 +230553,923,imdb top 250,1196198289 +230553,924,head movie,1196131243 +230553,924,Mindfuck,1196131259 +230553,924,Stanley Kubrick,1196131248 +230553,930,Alfred Hitchcock,1196198304 +230553,930,imdb top 250,1196198309 +230553,930,need to own,1196198307 +230553,933,murder,1196199786 +230553,936,satire,1196199664 +230553,948,realistic,1196131669 +230553,948,stirring,1196131672 +230553,954,AFI 100 (Cheers),1196131444 +230553,969,Oscar (Best Actor),1196199503 +230553,971,Tennesse Williams,1196199819 +230553,1061,child abuse,1196289646 +230553,1061,prison,1196289644 +230553,1079,monty python alumni,1196200252 +230553,1084,Biography,1196131754 +230553,1084,Gene Hackman,1196131756 +230553,1089,mob,1196200303 +230553,1103,5 stars,1196131611 +230553,1103,movie to see,1196131623 +230553,1103,youth,1196131620 +230553,1104,amazing performance,1196131884 +230553,1193,claustrophobic,1196131344 +230553,1203,good dialogue,1196202135 +230553,1212,MIND GAMES,1196131717 +230553,1213,mafia,1196131370 +230553,1213,need to buy,1196131362 +230553,1218,John Woo,1196199389 +230553,1218,stylized,1196199395 +230553,1218,tense,1196199391 +230553,1219,Frightening,1196131335 +230553,1231,BFI modern classic,1196202297 +230553,1231,historical,1196202302 +230553,1231,true story,1196202300 +230553,1233,war,1196198500 +230553,1234,heist,1196198505 +230553,1235,AFI 100 (Cheers),1196200407 +230553,1242,Civil War,1196130659 +230553,1242,true story,1196130655 +230553,1247,Mike Nichols,1196198578 +230553,1247,need to own,1196198576 +230553,1248,atmospheric,1196198318 +230553,1248,imdb top 250,1196198316 +230553,1250,AFI 100,1196198371 +230553,1250,Oscar (Best Cinematography),1196198368 +230553,1258,Horror,1196131861 +230553,1258,menacing,1196200278 +230553,1260,Fritz Lang,1196686722 +230553,1266,Clint Eastwood,1196131464 +230553,1272,Best War Films,1196131490 +230553,1272,movie to see,1196131493 +230553,1276,great movie,1196198460 +230553,1282,artistic,1196131773 +230553,1293,Oscar (Best Cinematography),1196199647 +230553,1293,Oscar (Best Picture),1196199644 +230553,1304,irreverent,1196131724 +230553,1333,Alfred Hitchcock,1196200791 +230553,1387,BFI modern classic,1196200412 +230553,1387,classic,1196131630 +230553,1387,man vs. beast,1196131632 +230553,1387,visceral,1196200416 +230553,1394,coen bros,1196198768 +230553,1394,Cult classic,1196198772 +230553,1449,deadpan,1196290419 +230553,1476,Nudity (Full Frontal - Notable),1196290277 +230553,1562,comic book,1196201505 +230553,1562,Uma Thurman,1196201502 +230553,1586,Ridley Scott,1196289492 +230553,1635,Ang Lee,1196289856 +230553,1663,Bill Murray,1196201319 +230553,1663,Nudity (Topless - Notable),1196201316 +230553,1680,alternate universe,1196289625 +230553,1680,great concept,1196289627 +230553,1680,nonlinear,1196289628 +230553,1719,meditative,1196199952 +230553,1719,need to own,1196199947 +230553,1719,Nudity (Full Frontal),1196199949 +230553,1805,Nudity (Topless - Notable),1196202441 +230553,1921,Aronofski,1196201343 +230553,1921,paranoia,1196201339 +230553,1927,German perspective,1196199493 +230553,1927,Oscar (Best Directing),1196131542 +230553,1927,Oscar (Best Picture),1196199498 +230553,1931,AFI 100,1196200118 +230553,1939,AFI 100,1196199255 +230553,1939,BEST PICTURE,1196199256 +230553,1940,Oscar (Best Directing),1196200017 +230553,1940,Oscar (Best Picture),1196200019 +230553,1944,BEST PICTURE,1196131579 +230553,1944,Oscar (Best Directing),1196131582 +230553,1949,Oscar (Best Actor),1196200069 +230553,1954,boxing,1196131698 +230553,2010,imdb top 250,1196199568 +230553,2020,Malkovich,1196201033 +230553,2058,Psychological,1196201509 +230553,2067,good music,1196131661 +230553,2067,imdb top 250,1196290150 +230553,2108,social commentary,1196201082 +230553,2109,Steve Martin,1196290267 +230553,2132,great performances,1196683322 +230553,2132,Oscar (Best Cinematography),1196683319 +230553,2132,Oscar (Best Supporting Actress),1196683312 +230553,2176,based on a true story,1196199681 +230553,2176,Jesus,1196199679 +230553,2193,Ron Howard,1196200735 +230553,2231,Edward Norton,1196289580 +230553,2278,cool,1196130670 +230553,2288,blood,1196200429 +230553,2313,melancholy,1196198543 +230553,2313,Yahoo Top Pick,1196289574 +230553,2329,Deep,1196130465 +230553,2330,deadpan,1196199199 +230553,2330,humorous,1196199197 +230553,2335,Adam Sandler,1196290101 +230553,2335,sport:American football,1196290104 +230553,2427,reflective,1196201384 +230553,2433,courtroom drama,1196553909 +230553,2488,disturbing,1196200105 +230553,2488,understated,1196200110 +230553,2539,Robert DeNiro,1196200545 +230553,2580,Nudity (Topless),1196200707 +230553,2622,Shakespeare,1196678733 +230553,2648,gothic,1196131575 +230553,2694,Adam Sandler,1196200551 +230553,2707,crazy ending,1196202115 +230553,2728,poignant,1196199921 +230553,2795,Nudity (Topless),1196289877 +230553,2803,law school,1196554149 +230553,2820,author:Shakespeare,1196200008 +230553,2820,murder,1196200009 +230553,2826,Myth,1196201976 +230553,2826,Very interesting,1196201979 +230553,2881,creative plot,1196202048 +230553,2881,Morgan Freeman,1196202051 +230553,2936,AFI 100 (Laughs),1196198582 +230553,2936,Preston Sturges,1196198580 +230553,2949,james bond,1196202244 +230553,3005,Angelina Jolie,1196202481 +230553,3006,docudrama,1196131060 +230553,3020,going postal,1196289607 +230553,3091,Akira Kurosawa,1196198532 +230553,3095,amazing adaptation of an American classic,1196131482 +230553,3095,americana,1196131519 +230553,3095,Oscar (Best Directing),1196131507 +230553,3095,Oscar (Best Supporting Actress),1196131480 +230553,3095,USA film registry,1196131524 +230553,3107,Robert De Niro,1196201380 +230553,3168,deliberate,1196131705 +230553,3168,notable soundtrack,1196131707 +230553,3168,reflective,1196131701 +230553,3173,Nudity (Topless),1196554575 +230553,3173,Oliver Stone,1196554577 +230553,3254,Saturday Night Live,1196289926 +230553,3301,Bruce Willis,1196201941 +230553,3307,AFI 100 (Laughs),1196199013 +230553,3307,Charles Chaplin,1196199010 +230553,3363,AFI 100 (Laughs),1196131641 +230553,3363,George Lucas,1196131647 +230553,3424,great cinematography,1196202285 +230553,3424,Nudity (Topless),1196202282 +230553,3424,seen more than once,1196202288 +230553,3435,Billy Wilder,1196131180 +230553,3462,imdb top 250,1196198322 +230553,3468,imdb top 250,1196198278 +230553,3475,Oscar (Best Cinematography),1196199766 +230553,3475,Oscar (Best Directing),1196199761 +230553,3498,disturbing,1196200077 +230553,3498,forceful,1196200083 +230553,3498,Nudity (Topless),1196200080 +230553,3510,time travel,1196131009 +230553,3510,Underrated,1196131005 +230553,3629,chaplin,1196131453 +230553,3698,Arnold Schwarzenegger,1196202230 +230553,3698,Saturn Award (Best Supporting Actor),1196202227 +230553,3730,Catchy Score,1196198414 +230553,3730,claustrophobic,1196203545 +230553,3730,Gene Hackman,1196198411 +230553,3730,survellience,1196198415 +230553,3735,AFI 100 (Cheers),1196199438 +230553,3735,Al Pacino,1196199436 +230553,3735,Nudity (Topless),1196554296 +230553,3741,Terrence Malick,1196203537 +230553,3742,Film Theory & Criticism,1196198554 +230553,3742,Soviet,1196198558 +230553,3849,creepy,1196199932 +230553,3984,Sean Connery,1196290064 +230553,4002,Funniest Movies,1196200547 +230553,4011,criminal,1196200455 +230553,4033,historical,1196290042 +230553,4102,Stand Up,1196683527 +230553,4148,psychology,1196130778 +230553,4171,Eugene O'Neill,1196200066 +230553,4178,adapted from:book,1196200102 +230553,4178,author:Steinbeck,1196200095 +230553,4235,multiple storylines,1196198387 +230553,4235,need to own,1196289600 +230553,4344,Nudity (Topless - Notable),1196200778 +230553,4350,Peter Jackson,1196199865 +230553,4351,bank robbery,1196290015 +230553,4351,Nudity (Topless),1196290012 +230553,4359,sexy,1196687663 +230553,4448,heist,1196130528 +230553,4489,Eddie Murphy,1196289454 +230553,4546,macabre,1196199164 +230553,4701,Chris Tucker,1196200674 +230553,4701,funny,1196200676 +230553,4734,Stoner Movie,1196130752 +230553,4848,creepy,1196130592 +230553,4848,Jennifer Connelly,1196554969 +230553,4855,disturbing,1196201919 +230553,4865,author:Alan Moore,1196202351 +230553,4865,Nudity (Topless),1196202353 +230553,4881,coen bros,1196289411 +230553,4914,Goddard,1196198547 +230553,4973,quirky,1196198395 +230553,5008,Agatha Christie,1196198939 +230553,5008,Marlene Dietrich,1196198936 +230553,5015,Nudity (Full Frontal - Notable),1196130969 +230553,5017,Fritz Lang,1196198932 +230553,5142,biting,1196199859 +230553,5142,satirical,1196199857 +230553,5152,realistic,1196289961 +230553,5152,Vietnam War,1196289960 +230553,5171,time travel,1196289682 +230553,5225,Very interesting,1196201326 +230553,5254,Guillermo del Toro,1196201312 +230553,5265,Black Comedy,1196130413 +230553,5265,need to own,1196130422 +230553,5265,Robin Williams,1196130426 +230553,5293,message!,1196554075 +230553,5341,biographical,1196199889 +230553,5434,Barbara Stanwyck,1196199927 +230553,5434,Frightening,1196199924 +230553,5463,Christian Bale,1196553782 +230553,5475,disturbing,1196199965 +230553,5475,tense,1196199967 +230553,5570,snuff,1196199775 +230553,5577,Nudity (Topless - Notable),1196554122 +230553,5603,heist,1196199220 +230553,5630,Anthony Hopkins,1196130353 +230553,5630,Edward Norton,1196130368 +230553,5630,Hannibal Lecter,1196130343 +230553,5630,Ralph Fiennes,1196130355 +230553,5630,serial killer,1196130334 +230553,5673,Adam Sandler,1196130284 +230553,5673,Paul Thomas Anderson,1196130255 +230553,5673,Philip Seymour Hoffman,1196130296 +230553,5782,Luc Besson,1196198588 +230553,5872,james bond,1196131037 +230553,5872,murder,1196131033 +230553,5932,cerebral,1196198882 +230553,5945,alexander payne,1196130889 +230553,5945,Jack Nicholson,1196130887 +230553,6001,cynical,1196198601 +230553,6001,satirical,1196198599 +230553,6001,STALKERS,1196686765 +230553,6003,Charlie Kaufman,1196289693 +230553,6041,Fantastic Foreign Films,1196199621 +230553,6080,Chuck Norris,1196289577 +230553,6188,Funny as hell,1196130617 +230553,6287,Jack Nicholson,1196202396 +230553,6327,documentary,1196199843 +230553,6331,Recommendz Top Pick,1196289439 +230553,6380,courtroom,1196198378 +230553,6440,menacing,1196289590 +230553,6440,need to own,1196198727 +230553,6440,wry,1196289592 +230553,6538,Nudity (Full Frontal - Notable),1196683480 +230553,6620,Artistic,1196198708 +230553,6659,black comedy,1196202487 +230553,6754,Dark,1196290116 +230553,6777,Exceptional Acting,1196199292 +230553,6777,historical,1196199290 +230553,6870,kidnapping,1196198734 +230553,6870,Sean Penn,1196198736 +230553,6873,coen bros,1196290172 +230553,6879,courtroom,1196202451 +230553,6879,Recommendz Top Pick,1196202449 +230553,6957,hilarious,1196202220 +230553,6987,BFI classic,1196198420 +230553,6987,Robert Wiene,1196198424 +230553,7065,White Film Theory and Criticism,1196131782 +230553,7072,Oscar (Best Supporting Actor),1196131560 +230553,7116,imdb top 250,1196198888 +230553,7121,AFI 100 (Laughs),1196199616 +230553,7121,Katherine Hepburn,1196199618 +230553,7132,Marx Brothers,1196199320 +230553,7215,Howard Hawks,1196199357 +230553,7360,ving rhames,1196202265 +230553,7360,zombie,1196202268 +230553,7361,surreal,1196200244 +230553,7419,black comedy,1196198710 +230553,7419,perfect,1196198714 +230553,7560,Frightening,1196199638 +230553,7786,movielens top pick,1196198926 +230553,7924,Akira Kurosawa,1196198402 +230553,7935,Ingmar Bergman,1196554103 +230553,8011,enlightening,1196199972 +230553,8011,politics,1196199970 +230553,8094,violent,1196199375 +230553,8143,literate,1196199403 +230553,8154,Federico Fellini,1196198451 +230553,8188,literate,1196290964 +230553,8188,poignant,1196198849 +230553,8376,comedy,1196130853 +230553,8482,AFI 100 (Thrills),1196199911 +230553,8482,Oscar (Best Cinematography),1196199913 +230553,8492,author:Charles Dickens,1196199823 +230553,8492,Christmas,1196199827 +230553,8505,Nudity (Topless),1196199996 +230553,8623,Steve Martin,1196289528 +230553,8638,imdb top 250,1196199806 +230553,8645,tense,1196199413 +230553,8781,corruption,1196289717 +230553,8798,thinker,1196200231 +230553,8910,existentialism,1196202063 +230553,8910,Mark Wahlberg,1196202064 +230553,8949,obsession,1196200282 +230553,8958,Biography,1196130947 +230553,25777,AFI 100 (Laughs),1196200074 +230553,25827,AFI 100 (Cheers),1196199581 +230553,25827,AFI 100 (Laughs),1196199579 +230553,25827,Oscar (Best Directing),1196199583 +230553,25833,Greta Garbo,1196198930 +230553,25855,movielens top pick,1196198854 +230553,25856,adapted from:book,1196131601 +230553,25856,Oscar (Best Cinematography),1196131593 +230553,25923,author:Charles Dickens,1196200485 +230553,25923,literary adaptation,1196200488 +230553,25923,Oscar (Best Cinematography),1196199037 +230553,25961,Gregory Peck,1196198944 +230553,26012,Toshiro Mifune,1196199143 +230553,26082,movielens top pick,1196198836 +230553,26082,Samurai,1196198845 +230553,26704,Gary Oldman,1196199935 +230553,26704,John Turturro,1196199937 +230553,26704,Sean Penn,1196688491 +230553,27744,homage to Hitchcock,1196199849 +230553,31270,Nudity (Topless),1196199153 +230553,31437,disturbing,1196199328 +230553,32019,Uma Thurman,1196687571 +230553,32025,Holocaust,1196199511 +230553,33162,crusaders,1196289745 +230553,33162,kidnapping,1196289747 +230553,33454,Nudity (Topless),1196199406 +230553,33660,sport:boxing,1196131021 +230553,34542,Crazy Guy,1196198660 +230553,34542,Funny as hell,1196198656 +230553,36529,Crime,1196130820 +230553,36529,war,1196130834 +230553,37240,iraq,1196199474 +230553,37240,military industrial complex,1196199471 +230553,38304,Catchy Score,1196198957 +230553,41285,non-hollywood ending,1196130765 +230553,42002,Uma Thurman,1196687183 +230553,42632,child murder,1196687592 +230553,42632,stylized,1196199607 +230553,44694,Nudity (Topless - Brief),1196201531 +230553,46965,campy,1196289710 +230553,48304,deus ex machina,1196202020 +230553,49822,Central Intelligence Agency,1196202356 +230553,49822,Matt Damon,1196202358 +230553,50068,Clint Eastwood,1196199228 +230553,50068,MoviePig Top Pick,1196199225 +230553,52281,Robert Rodriguez,1196198465 +230553,52604,courtroom drama,1196290061 +230553,53550,Christian Bale,1196198806 +230553,53550,Werner Herzog,1196198804 +230553,54997,Russell Crowe,1197515902 +230553,54997,violent,1196199000 +230553,55118,organized crime,1196198967 +230553,55820,coen brothers,1196200330 +230553,55820,Javier Bardem,1196200333 +230553,55908,philosophical,1196689314 +230563,260,cult classic,1440358874 +230563,260,sci-fi,1440358889 +230573,1252,Very chic,1165520742 +230573,1258,Very good music,1165520463 +230573,1809,A non-typical story leads to a fine ending,1165520612 +230573,2159,One of the most hopeless movies,1165520541 +230573,2871,Battle between man and nature,1165520641 +230573,5147,We all have to look back sometimes,1165520826 +230573,6368,Can you dislike these people after all,1165520705 +230586,150,based on a true story,1384605897 +230586,150,space,1384605894 +230586,356,history,1384603613 +230586,356,Tom Hanks,1384603606 +230586,364,coming of age,1384605842 +230586,480,Steven Spielberg,1384603628 +230586,541,cyberpunk,1384606216 +230586,541,dreamlike,1384606228 +230586,541,Harrison Ford,1384606220 +230586,541,Philip K. Dick,1384606223 +230586,608,dark comedy,1384603139 +230586,741,anime,1384607516 +230586,741,cyberpunk,1384607514 +230586,858,atmospheric,1384605923 +230586,858,Mafia,1384605925 +230586,923,atmospheric,1384606097 +230586,924,atmospheric,1384606036 +230586,924,space,1384606039 +230586,924,Stanley Kubrick,1384606051 +230586,1089,dark comedy,1384606018 +230586,1089,nonlinear,1384606022 +230586,1131,emotional,1384603039 +230586,1131,tragedy,1384603043 +230586,1201,atmospheric,1384607952 +230586,1208,disturbing,1384607891 +230586,1208,Marlon Brando,1384607909 +230586,1208,Oscar (Best Cinematography),1384607888 +230586,1209,atmospheric,1384603083 +230586,1214,atmospheric,1384606063 +230586,1214,space,1384606066 +230586,1221,Al Pacino,1384606165 +230586,1221,organized crime,1384606162 +230586,1222,Stanley Kubrick,1384603521 +230586,1233,atmospheric,1384603109 +230586,1233,classic,1384603120 +230586,1233,World War II,1384603115 +230586,1250,Oscar (Best Actor),1384603432 +230586,1250,Oscar (Best Picture),1384603427 +230586,1252,atmospheric,1384605980 +230586,1252,Jack Nicholson,1384605978 +230586,2028,action,1384603456 +230586,2028,cinematography,1384603459 +230586,2028,Matt Damon,1384603465 +230586,2028,Steven Spielberg,1384603448 +230586,2028,Tom Hanks,1384603451 +230586,2716,Bill Murray,1384605829 +230586,2949,james bond,1384607679 +230586,3471,Oscar (Best Cinematography),1384605998 +230586,3471,Steven Spielberg,1384605995 +230586,3681,Ennio Morricone,1384606127 +230586,3681,spaghetti western,1384606125 +230586,4103,Christian Bale,1384603534 +230586,4103,John Malkovich,1384603536 +230586,4103,Steven Spielberg,1384603540 +230586,4993,fantasy,1384603053 +230586,6792,Russian,1384607846 +230586,7099,fantasy,1384603196 +230586,7099,post-apocalyptic,1384603198 +230586,7099,Studio Ghibli,1384603192 +230586,7980,Robert Redford,1384603479 +230586,7980,Sean Connery,1384603477 +230586,31410,history,1384603401 +230586,31410,Nudity (Topless),1384603409 +230586,48516,atmospheric,1384603181 +230586,48516,organized crime,1384603177 +230586,57669,twist ending,1384605933 +230586,91890,british,1384607447 +230586,91890,history,1384607450 +230586,91890,politics,1384607444 +230586,96728,Philip Seymour Hoffman,1384607570 +230586,96728,visually appealing,1384607567 +230586,97744,Africa,1384607471 +230586,97744,Corruption,1384607474 +230586,97744,journalism,1384607477 +230586,97752,Tom Hanks,1384607779 +230586,98154,Daniel Day-Lewis,1384607802 +230586,98154,history,1384607819 +230586,98154,politics,1384607806 +230586,98809,adventure,1384607715 +230586,98809,fantasy,1384607712 +230619,750,purity of essence,1159980456 +230619,750,Slim Pickens,1159980456 +230619,6787,Deep Throat,1159980769 +230649,1220,classic,1202844875 +230650,1094,Transgendered,1163001556 +230652,50,black humour,1325703245 +230652,3476,conspiracy,1325717328 +230652,3476,Psychological horror,1325717477 +230652,3476,twist ending,1325717346 +230652,3476,Vietnam War,1325717340 +230652,46478,youth rebellion,1325850819 +230652,71520,Atheism,1339439596 +230652,71520,religion,1339439606 +230652,71520,riddled with cliché,1339439614 +230652,71520,witty,1339439632 +230669,2028,Steven Spielberg,1324021831 +230669,2028,Tom Hanks,1324021841 +230669,91658,journalism,1326308052 +230679,1302,Baseball,1188263570 +230679,1377,Gothic,1188263571 +230679,2424,chick flick,1188263606 +230679,3033,comedy,1188263626 +230679,3081,Gothic,1188263565 +230679,7438,Western,1188263589 +230700,2788,Monty Python,1173203134 +230718,10,Pierce Brosnan,1265424817 +230718,153,bad writing,1265424774 +230718,153,Jim Carrey,1265424753 +230718,153,trite,1265424786 +230718,344,goofy,1265424722 +230718,344,Jim Carrey,1265424716 +230718,344,very dumb,1265424728 +230718,539,Tom Hanks,1265425199 +230718,541,atmospheric,1265425317 +230718,541,cyberpunk,1265425295 +230718,541,dystopia,1265425306 +230718,541,futuristic,1265425331 +230718,541,Harrison Ford,1265425312 +230718,541,Philip K. Dick,1265425317 +230718,541,sci-fi,1265425305 +230718,541,stylized,1265425325 +230718,590,culture clash,1265424648 +230718,590,historical,1265424625 +230718,590,imperialism,1265424664 +230718,590,Kevin Costner,1265424640 +230718,590,war,1265424621 +230718,590,white guilt,1265424656 +230718,1073,Gene Wilder,1265424845 +230718,1073,moralistic,1265424872 +230718,1073,surreal,1265424848 +230718,1073,whimsical,1265424849 +230718,1214,atmospheric,1265425224 +230718,1214,horror,1265425234 +230718,1214,sci-fi,1265425244 +230718,1214,space,1265425246 +230718,1214,space travel,1265425249 +230718,1214,thriller,1265425251 +230718,1214,visceral,1265425257 +230718,1394,Coen Brothers,1265424390 +230718,1394,crime,1265424402 +230718,1394,Cult classic,1265424384 +230718,1394,deadpan,1265424373 +230718,1394,Nicolas Cage,1265424378 +230718,1394,off-beat comedy,1265424408 +230718,1676,campy,1265424452 +230718,1676,deadpan,1265424463 +230718,1676,satire,1265424437 +230718,1676,sci-fi,1265424442 +230718,1676,witty,1265424450 +230718,2109,dumb but funny,1265423983 +230718,2109,Steve Martin,1265423989 +230718,3000,atmospheric,1265424024 +230718,3000,fantasy world,1265424021 +230718,3000,Hayao Miyazaki,1265424020 +230718,3000,relativism,1265424066 +230718,3000,surreal,1265424040 +230718,3786,Bechdel Test:Pass,1321074422 +230718,3786,campy,1321074412 +230718,3786,queer,1321074404 +230718,3786,satire,1321074407 +230718,6502,low budget,1291440821 +230718,6502,post-apocalyptic,1291440822 +230718,6502,stylized,1291440822 +230718,6502,visually appealing,1291440822 +230718,6502,Zombie,1291440822 +230718,6502,zombies,1291440822 +230718,26751,buddy,1437095983 +230718,26751,puppets,1437095983 +230718,26751,quirky,1437095983 +230718,41569,racist,1291531164 +230718,51709,After The Reveal The Story Went Back Down And Never Came Up Again,1291440819 +230718,51709,Joon-ho Bong,1291440819 +230718,51709,sea monster,1291440820 +230718,57368,"""found footage""",1291440818 +230718,57368,fake authentic,1291440817 +230718,64511,dog,1453161562 +230718,66130,lead woman,1296317918 +230718,66130,martial arts,1296317924 +230718,68237,alter ego,1265423920 +230718,68237,directorial debut,1265423934 +230718,68237,isolation,1265423889 +230718,68237,Kevin Spacey,1265423885 +230718,68237,slow paced,1265423910 +230718,68237,solitude,1265423876 +230718,68237,space,1265423881 +230718,68952,old school horror,1291440822 +230718,71518,Austin,1265439029 +230718,71518,Drew Barrymore,1265439018 +230718,71518,Ellen Page,1265439031 +230718,71518,pop counterculture,1265439056 +230718,71530,bad science,1265439106 +230718,71530,bad script,1265439163 +230718,71530,Bruce Willis,1265439086 +230718,71530,identity,1265439131 +230718,71530,sci-fi,1265439093 +230718,71530,self,1265439193 +230718,80969,atmospheric,1321074188 +230718,80969,great acting,1321074259 +230718,80969,Keira Knightley,1321074192 +230718,80969,slow,1321074266 +230718,83480,badwriting,1308534295 +230718,83480,confused,1308534291 +230718,83613,Daniel Craig,1315283621 +230718,83613,Olivia Wilde,1315283619 +230718,87306,Not Directed by Steven Spielberg,1315283594 +230718,89371,contrived plot,1315184371 +230718,89371,dance,1315184344 +230718,89371,gimmicky,1315184355 +230718,89371,JeeJa Yanin,1315184315 +230718,89371,martial arts,1315184411 +230718,89371,playful,1315184327 +230718,89371,thai martial arts,1315184396 +230718,112442,campy,1431361555 +230718,112442,horror,1431361555 +230718,112442,leslie nielsen,1431361555 +230718,112550,dogs,1453161595 +230718,112550,revenge,1453161601 +230758,260,action scifi,1439758824 +230758,260,drama,1439758833 +230774,260,classic,1406959106 +230774,296,dark comedy,1406960771 +230774,356,action,1406960806 +230774,356,Oscar (Best Picture),1406960811 +230774,356,Tom Hanks,1406960802 +230774,480,action,1406960917 +230774,480,thriller,1406960938 +230774,589,Arnold Schwarzenegger,1406960973 +230774,593,Oscar (Best Actor),1406960864 +230774,593,Oscar (Best Picture),1406960870 +230774,593,psychology,1406960825 +230774,593,serial killer,1406960845 +230774,780,adventure,1406961075 +230774,780,thriller,1406961062 +230774,858,based on a book,1406959235 +230774,858,organized crime,1406959232 +230774,858,Oscar (Best Picture),1406959241 +230774,1097,fantasy,1406960144 +230774,1097,sci-fi,1406960148 +230774,1097,space,1406960151 +230774,1196,classic,1406959104 +230774,1208,Vietnam war,1406959731 +230774,1210,classic,1406959117 +230774,1221,organized crime,1406959216 +230774,1221,Oscar (Best Picture),1406959247 +230774,2023,mafia,1406959262 +230774,2023,organized crime,1406959258 +230774,7373,Guillermo del Toro,1406963646 +230774,7373,superhero,1406963605 +230774,7438,martial arts,1406958711 +230774,7438,mystery writer,1406958711 +230774,7438,samurai,1406958711 +230774,57640,Guillermo del Toro,1406963664 +230774,57640,superhero,1406963658 +230774,59315,comic book,1406959657 +230774,59315,sci-fi,1406959654 +230774,59315,superhero,1406959641 +230774,60069,dystopia,1406959365 +230774,60069,post-apocalyptic,1406959353 +230774,72998,robots,1406958913 +230774,72998,romance,1406958913 +230774,72998,sci-fi,1406958889 +230774,72998,science,1406958889 +230774,72998,science fiction,1406958889 +230774,72998,space,1406958889 +230774,72998,visually appealing,1406958889 +230774,79132,Leonardo DiCaprio,1406963764 +230774,79132,mystery,1406963764 +230774,106920,dystopia,1406959815 +230793,1721,romance,1430170465 +230793,1721,sentimental,1430170473 +230793,40629,love,1430170436 +230793,40629,relationships,1430170440 +230793,40629,romance,1430170429 +230793,106696,beautiful,1430170549 +230793,106696,Disney,1430170557 +230793,106696,sisters,1430170553 +230795,260,amazing,1430665396 +230795,260,future,1430665400 +230812,778,black comedy,1450591598 +230812,778,dark comedy,1450591590 +230812,778,Nudity (Full Frontal),1450591602 +230812,778,surreal,1450591596 +230812,39183,art,1450591920 +230812,39183,beautiful,1450591902 +230812,39183,bittersweet,1450591907 +230812,39183,homosexuality,1450591891 +230812,39183,melancholy,1450591894 +230812,39183,scenic,1450591904 +230812,39183,sexuality,1450591909 +230812,39183,Tragedy,1450591900 +230812,41571,cinematography,1450591869 +230812,41571,geisha,1450591866 +230812,41571,history,1450591864 +230812,41571,Japanese culture,1450591862 +230812,46578,comedy,1450591564 +230812,46578,dark comedy,1450591550 +230812,46578,dysfunctional family,1450591552 +230812,46578,independent film,1450591570 +230812,46578,off-beat comedy,1450591560 +230812,46578,quirky,1450591554 +230812,46578,social commentary,1450591562 +230812,56367,bittersweet,1450591986 +230812,56367,comedy,1450591966 +230812,56367,cult film,1450591971 +230812,56367,excellent script,1450591973 +230812,56367,hilarious,1450591982 +230812,56367,independent film,1450591981 +230812,56367,notable soundtrack,1450591969 +230812,56367,quirky,1450591979 +230812,56367,snappy dialog,1450591992 +230812,56367,witty,1450591965 +230812,74696,China,1450591463 +230812,74696,documentary,1450591458 +230812,74696,family dynamics,1450591460 +230812,91199,bittersweet,1450591440 +230812,91199,Gay Character,1450591437 +230812,91199,meditative,1450591442 +230812,102800,black-and-white,1450591735 +230812,102800,comedy drama,1450591752 +230812,102800,feminist,1450591745 +230812,104944,good acting,1450591825 +230812,104944,indie,1450591836 +230812,104944,mental illness,1450591820 +230812,104944,realistic,1450591842 +230812,104944,sociology,1450591828 +230812,104944,touching,1450591816 +230812,109374,cinematography,1450591630 +230812,109374,funny,1450591637 +230812,109374,quirky,1450591632 +230812,109374,stylized,1450591635 +230812,109374,visually appealing,1450591627 +230812,109374,Wes Anderson,1450591634 +230812,109374,whimsical,1450591646 +230812,115569,Character Development,1450591520 +230812,115569,dark,1450591494 +230812,115569,gripping,1450591504 +230812,116855,gay romance,1450591685 +230812,116855,good acting,1450591691 +230812,130628,beautiful cinematography,1450591708 +230812,130628,character development,1450591711 +230812,130628,coming of age story,1450591713 +230812,130628,foreign,1450591716 +230812,142675,quiet,1450591774 +230812,142675,understated,1450591784 +230842,3000,dreamy,1137959712 +230842,6539,pirates,1137959813 +230842,7168,softporn,1137959717 +230842,7365,fjords,1137959970 +230842,8949,california,1137959887 +230842,8949,relationships,1137959887 +230842,8949,sex,1137959887 +230842,36529,america,1136242623 +230842,36529,truth,1136242623 +230842,36529,usa,1136242623 +230842,36529,weapons,1136242623 +230868,113345,awful script,1441741633 +230868,113345,disappointing,1441741637 +230891,1196,fantasy,1245006632 +230891,1732,black comedy,1245014553 +230891,1732,Coen Brothers,1245014558 +230891,1732,comedy,1245014563 +230891,1732,Philip Seymour Hoffman,1245014584 +230891,1732,satirical,1245014588 +230891,4002,road trip,1245096725 +230891,4002,Steve Martin,1245096735 +230891,4993,fantasy,1245006661 +230891,5316,British,1244440133 +230891,5316,mathematics,1244440119 +230891,6188,college,1245006924 +230891,6188,hilarious,1245006932 +230891,6188,Seann William Scott,1245006959 +230891,6188,Vince Vaughn,1245006950 +230891,6188,Will Ferrell,1245006944 +230891,8874,british comedy,1310722573 +230891,8874,Simon Pegg,1310722598 +230891,8874,slackers,1310722609 +230891,8874,spoof,1310722645 +230891,8874,zombies,1245006641 +230891,27073,Heath Ledger,1244439970 +230891,27073,Rose Byrne,1244439978 +230891,27611,space,1244440064 +230891,47491,black comedy,1244439984 +230891,47491,racism,1244439995 +230891,47640,beer,1244440003 +230891,47640,guy movie,1244440012 +230891,53000,post-apocalyptic,1244440179 +230891,53000,zombies,1244440183 +230891,54881,quirky,1244440082 +230891,54881,video games,1244440096 +230891,55232,Milla Jovovich,1244440049 +230891,55232,post-apocalyptic,1244440026 +230891,55232,zombies,1244440038 +230891,55895,Humphrey Bogart,1245006832 +230891,55895,VistaVision,1245006837 +230891,61132,Ben Stiller,1244440161 +230891,61132,satire,1244440157 +230891,68522,beautiful scenery,1245006729 +230891,83134,Alan Tudyk,1310722515 +230891,83134,black comedy,1310722532 +230891,83134,funny,1310722534 +230895,296,dvd,1147812520 +230895,1201,dvd,1147812487 +230895,1208,dvd,1147812475 +230895,1241,dvd,1147812545 +230895,1358,dvd,1147812527 +230895,4973,dvd,1147812465 +230895,6874,dvd,1147812496 +230895,7438,dvd,1147812506 +230897,260,adventure,1441997661 +230897,260,classic,1441997646 +230900,608,black comedy,1378933103 +230900,608,crime,1378933111 +230900,608,quirky,1378933124 +230900,6870,crime,1379211754 +230900,6870,revenge,1379211770 +230900,6870,Sean Penn,1379211762 +230932,296,tarantino,1169589601 +230932,7155,Helen Mirren,1169957377 +230932,48997,17th century,1169589277 +230932,48997,serial killer,1169589189 +230967,861,court,1286108546 +230967,861,deceipt,1286108484 +230967,861,drug trade,1286108546 +230967,861,explosions,1286108545 +230967,861,fighting,1286108546 +230967,861,funny,1286108484 +230967,861,martial arts,1286108546 +230967,861,military,1286108546 +230967,861,prison break,1286108546 +230967,861,shooting,1286108546 +230967,861,special effects,1286108546 +230967,861,well done,1286108484 +230967,924,slow,1311028063 +230967,2515,bad ending,1281973355 +230967,2515,bad music,1281973356 +230967,2515,bad special effects,1281973356 +230967,2515,boring ending,1281973358 +230967,2515,close escape,1281973357 +230967,2515,cult,1281973100 +230967,2515,disappointing,1281973356 +230967,2515,ethnicity,1281973103 +230967,2515,failed genre,1281973358 +230967,2515,fake,1281973358 +230967,2515,father-son relationship,1281973102 +230967,2515,fire,1281973101 +230967,2515,funny,1281972788 +230967,2515,gore,1281972788 +230967,2515,happy ending,1281973101 +230967,2515,hollywood escape,1281973358 +230967,2515,illogical,1281973359 +230967,2515,interesting,1281972788 +230967,2515,investigation,1281973102 +230967,2515,journalism,1281973100 +230967,2515,lame,1281973356 +230967,2515,paranormal,1281973104 +230967,2515,preaching,1281973359 +230967,2515,predictable,1281973356 +230967,2515,racism,1281973103 +230967,2515,relationships,1281973103 +230967,2515,religion,1281973101 +230967,2515,ritual killing,1281973101 +230967,2515,sarcasm,1281972787 +230967,2515,silly,1281973357 +230967,2515,slang,1281972788 +230967,2515,stupid,1281973356 +230967,2515,voodoo,1281973102 +230967,2515,weird,1281973359 +230967,2959,action packed,1281438709 +230967,2959,blood,1281438856 +230967,2959,crime,1281438706 +230967,2959,dark humor,1281438709 +230967,2959,fast paced,1281438778 +230967,2959,funny,1281438778 +230967,2959,intelligent,1281438778 +230967,2959,mental illness,1281438709 +230967,2959,narrated,1281438706 +230967,2959,nihilism,1281438778 +230967,2959,philosophy,1281438709 +230967,2959,protest,1281438856 +230967,2959,psychology,1281438708 +230967,2959,revolution,1281438856 +230967,2959,social commentary,1281438708 +230967,2959,terrorism,1281438706 +230967,2959,twist,1281438789 +230967,2959,violence,1281438856 +230967,3948,CIA,1283083153 +230967,3948,disaster movie,1283083037 +230967,3948,easy,1283083013 +230967,3948,funny,1283083013 +230967,3948,gross-out,1283083275 +230967,3948,in-laws,1283083037 +230967,3948,inaccurate,1283083112 +230967,3948,lame,1283083112 +230967,3948,mishap,1283083176 +230967,3948,misunderstanding,1283083112 +230967,3948,obnoxious,1283083112 +230967,3948,sarcasm,1283083013 +230967,3948,stupid,1283083112 +230967,3948,stupid main character,1283083112 +230967,3948,weddings,1283083037 +230967,4226,complicated,1281282334 +230967,4226,mystery,1281282332 +230967,4226,nonlinear,1281282335 +230967,4226,paranoia,1281282332 +230967,4226,plot,1281368297 +230967,4226,psychology,1281282332 +230967,4226,twist ending,1281282332 +230967,4226,violence,1281282334 +230967,4310,aviation,1282759001 +230967,4310,big budget,1282759001 +230967,4310,catastrophe,1282758890 +230967,4310,close escape,1282759054 +230967,4310,dramatic,1282759001 +230967,4310,emotional,1282758890 +230967,4310,explosions,1282759001 +230967,4310,fighting,1282759001 +230967,4310,fire,1282759001 +230967,4310,funny,1282758890 +230967,4310,hawaii,1282759001 +230967,4310,historical,1282759001 +230967,4310,hollywood escape,1282759054 +230967,4310,horrors of war,1282759001 +230967,4310,japan,1282759001 +230967,4310,kamikaze,1282759001 +230967,4310,love triangles,1282759001 +230967,4310,military,1282759001 +230967,4310,noble,1282758890 +230967,4310,nurses,1282759001 +230967,4310,ocean,1282759001 +230967,4310,realistic,1282758890 +230967,4310,romantic,1282759001 +230967,4310,sad,1282758890 +230967,4310,scenery,1282758890 +230967,4310,sea,1282759001 +230967,4310,shooting,1282759001 +230967,4310,special effects,1282758890 +230967,4310,tear jerker,1282758890 +230967,4310,thought-provoking,1282758890 +230967,4310,too long,1282759054 +230967,4310,war,1282759001 +230967,4310,war hero,1282759001 +230967,4310,wartime,1282759001 +230967,4310,world,1282759001 +230967,5881,boring,1307647906 +230967,5881,psychology,1307647946 +230967,5881,slow,1307647914 +230967,5881,space,1307647964 +230967,6280,drug trade,1282757996 +230967,6280,drugs,1282757996 +230967,6280,emotional,1282757849 +230967,6280,funny,1282757849 +230967,6280,gore,1282757996 +230967,6280,grief,1282757996 +230967,6280,mexico,1282757996 +230967,6280,mourning,1282757996 +230967,6280,realistic,1282757849 +230967,6280,sad,1282757849 +230967,6280,shooting,1282757996 +230967,6280,spanish,1282757996 +230967,6280,violence,1282757996 +230967,6564,accent,1281974186 +230967,6564,africa,1281974177 +230967,6564,ancient greece,1281974186 +230967,6564,ancient ruins,1281974186 +230967,6564,bad music,1281974168 +230967,6564,betrayal,1281974176 +230967,6564,bioweapon,1281974174 +230967,6564,blood,1281974175 +230967,6564,british accent,1281974186 +230967,6564,CGI,1281974185 +230967,6564,cultures,1281974174 +230967,6564,ethnicity,1281974177 +230967,6564,fake,1281974169 +230967,6564,fake shark,1281974169 +230967,6564,fighting,1281974176 +230967,6564,funny moments,1281974185 +230967,6564,horses,1281974174 +230967,6564,impossible,1281974169 +230967,6564,martial arts,1281974175 +230967,6564,monsters,1281974175 +230967,6564,nature,1281974176 +230967,6564,paranormal,1281974186 +230967,6564,predictable,1281974168 +230967,6564,riding,1281974176 +230967,6564,ruins,1281974186 +230967,6564,scottish accent,1281974185 +230967,6564,sequel,1281974225 +230967,6564,shooting,1281974177 +230967,6564,special effects,1281974186 +230967,6564,surreal environment,1281974185 +230967,6564,travelling,1281974176 +230967,6564,typical,1281974168 +230967,6564,ultimate weapon,1281974168 +230967,6564,video game adaptation,1281974241 +230967,6564,world,1281974177 +230967,42011,bad luck,1286116864 +230967,42011,crime,1286116922 +230967,42011,despair,1286118092 +230967,42011,family comedy,1286116937 +230967,42011,funny,1286116940 +230967,42011,lost job,1286116946 +230967,42011,money,1286117147 +230967,42011,remake,1286116950 +230967,42011,robbery,1286116971 +230967,42011,situation comedy,1286117102 +230967,42011,smart,1286116959 +230967,44115,atmospheric,1296488532 +230967,44115,emotional,1296488610 +230967,44115,fantasy,1296488613 +230967,44115,fighting,1296488610 +230967,44115,forbidden love,1296488498 +230967,44115,japan,1296488403 +230967,44115,japanese,1296488626 +230967,44115,japanese culture,1296488407 +230967,44115,love,1296488504 +230967,44115,martial arts,1296488610 +230967,44115,ninja,1296488610 +230967,44115,rivalry,1296488519 +230967,44115,scenery,1296488560 +230967,44115,scenic,1296488560 +230967,44115,supernatural powers,1296488416 +230967,44115,violence,1296488609 +230967,67197,accidents,1281367811 +230967,67197,aliens,1281367811 +230967,67197,apocalypse,1281367681 +230967,67197,brooding,1281367839 +230967,67197,catastrophe,1281367811 +230967,67197,CGI,1281367681 +230967,67197,cliche,1281367859 +230967,67197,death,1281367811 +230967,67197,discovery,1281367681 +230967,67197,dramatical,1281367839 +230967,67197,eerie,1281367681 +230967,67197,emotions,1281367681 +230967,67197,end of the world,1281367928 +230967,67197,ending,1281368243 +230967,67197,grief,1281367811 +230967,67197,lame,1281367839 +230967,67197,mystery,1281367681 +230967,67197,paranormal,1281367681 +230967,67197,plot,1281368267 +230967,67197,sci-fi,1281367946 +230967,67197,special effects,1281367702 +230967,67197,thight plot,1281367775 +230967,68848,blood,1287855777 +230967,68848,caper,1287855522 +230967,68848,clever,1287855559 +230967,68848,con artists,1287855524 +230967,68848,crash,1287855614 +230967,68848,double cross,1287855869 +230967,68848,funny,1287855527 +230967,68848,illogical,1287855685 +230967,68848,interesting characters,1287855549 +230967,68848,manipulation,1287855890 +230967,68848,narrated,1287855820 +230967,68848,orphans,1287855590 +230967,68848,predictable,1287855529 +230967,68848,stupid main character,1287855629 +230967,69134,atmosphere,1281281691 +230967,69134,brooding,1281281691 +230967,69134,cinematography,1281281345 +230967,69134,metaphores,1281281691 +230967,69134,nudity,1281281691 +230967,69134,plot,1281368322 +230967,69134,psychology,1281281436 +230967,69134,slow,1281279695 +230967,69134,violence,1281281691 +230967,71530,androids,1287522394 +230967,71530,bad ending,1287522396 +230967,71530,bad plot,1287522400 +230967,71530,bad script,1287522405 +230967,71530,cliche,1287522415 +230967,71530,dystopia,1287522442 +230967,71530,explosions,1287522538 +230967,71530,fire,1287522532 +230967,71530,future,1287522445 +230967,71530,Husband Wife Relationship,1287522448 +230967,71530,identity,1287522454 +230967,71530,moral dillema,1287522471 +230967,71530,predictable,1287522486 +230967,71530,robots,1287522491 +230967,71530,special effects,1287522515 +230967,71530,surreal,1287522547 +230967,71530,technology,1287522498 +230967,71530,unlikely,1287522560 +230967,74545,adultery,1281356940 +230967,74545,assassination,1281356940 +230967,74545,black humour,1281356937 +230967,74545,boring,1281356943 +230967,74545,british,1281356937 +230967,74545,ending,1281356937 +230967,74545,escape,1281356940 +230967,74545,espionage,1281368204 +230967,74545,mystery,1281356991 +230967,74545,nudity,1281356940 +230967,74545,plot,1281368331 +230967,74545,politics,1281356943 +230967,74545,sex,1281356940 +230967,74545,slow,1281356943 +230967,74948,blood,1286894429 +230967,74948,citizen justice,1286894312 +230967,74948,death,1286894324 +230967,74948,drugs,1286894166 +230967,74948,guns,1286894426 +230967,74948,justice,1286894155 +230967,74948,murder,1286894168 +230967,74948,organized crime,1286894170 +230967,74948,revenge,1286894155 +230967,74948,riot,1286894320 +230967,74948,sex,1286894327 +230967,74948,shooting,1286894423 +230967,74948,slow paced,1286894188 +230967,74948,thought-provoking,1286894363 +230967,74948,vigilante justice,1286894761 +230967,74948,violence,1286894173 +230967,76293,funny,1288475778 +230967,76293,witty,1288475763 +230967,77414,arson,1287870960 +230967,77414,based on novel,1287871283 +230967,77414,beach,1287871092 +230967,77414,cancer,1287870960 +230967,77414,emo,1287870998 +230967,77414,fake,1287870998 +230967,77414,fight,1287870960 +230967,77414,funny,1287870941 +230967,77414,hospital,1287871211 +230967,77414,illogical,1287870998 +230967,77414,lame,1287870998 +230967,77414,predictable,1287870998 +230967,77414,stupid main character,1287870998 +230967,77414,teen,1287870998 +230967,77414,teen angst,1287870998 +230967,77414,turtles,1287870960 +230967,77414,unreal,1287870998 +230967,77414,wedding,1287871211 +230967,77414,witty,1287870946 +230967,77427,abduction,1289234393 +230967,77427,bad acting,1289231694 +230967,77427,body horror,1289234400 +230967,77427,experiment,1289234172 +230967,77427,fake,1289231753 +230967,77427,illogical,1289231694 +230967,77427,science,1289234140 +230967,77427,science project,1289234151 +230967,77427,stupid,1289231694 +230967,77843,blood,1296411568 +230967,77843,bondage,1296411443 +230967,77843,clever plot,1296411447 +230967,77843,crying,1296411468 +230967,77843,gay,1296411554 +230967,77843,gay romance,1296411551 +230967,77843,good plot,1296411661 +230967,77843,kidnapping,1296411464 +230967,77843,ransom,1296411459 +230967,77843,shooting,1296411568 +230967,77843,thrilling,1296411568 +230967,77843,twist,1296411540 +230967,77843,unexpected,1296411540 +230967,77843,violence,1296411568 +230967,78316,bad music,1286482323 +230967,78316,boring,1286482296 +230967,78316,cheesy,1286482296 +230967,78316,funny,1286482295 +230967,78316,happy ending,1286482343 +230967,78316,italian,1286482293 +230967,78316,italians,1286482293 +230967,78316,italy,1286482293 +230967,78316,journalism,1286482356 +230967,78316,long,1286482296 +230967,78316,misunderstanding,1286482468 +230967,78316,New York City,1286482419 +230967,78316,predictable,1286482296 +230967,78316,quest,1286482521 +230967,78316,relationships,1286482293 +230967,78316,romantic,1286482434 +230967,78316,verona,1286482293 +230967,78316,writer,1286482366 +230967,78772,adapted from:book,1287855428 +230967,78772,animagus,1287854686 +230967,78772,based on a book,1287855425 +230967,78772,cgi,1287855457 +230967,78772,friendship,1287856014 +230967,78772,funny,1287854686 +230967,78772,graduation,1287856029 +230967,78772,love triangle,1287856014 +230967,78772,mountains,1287854831 +230967,78772,music,1287854667 +230967,78772,narrated,1287856017 +230967,78772,revenge,1287855942 +230967,78772,scenery,1287854713 +230967,78772,snow,1287854831 +230967,78772,storm,1287854831 +230967,78772,stupid main character,1287854847 +230967,78772,supernatural,1287854693 +230967,78772,vampires,1287854686 +230967,78772,wolves,1287854831 +230967,79251,cinematography,1281281210 +230967,79251,dark humor,1281280859 +230967,79251,drugs,1281280975 +230967,79251,good plot,1287522623 +230967,79251,graphical,1281281139 +230967,79251,nudity,1281280975 +230967,79251,rape,1281280975 +230967,79251,sex,1281280975 +230967,79251,sexual abuse,1281280975 +230967,79251,thought-provoking,1281439062 +230967,79251,twist ending,1281280902 +230967,79251,violence,1281280975 +230967,79293,assassination,1297412720 +230967,79293,betrayal,1297412742 +230967,79293,cia,1297412746 +230967,79293,close escape,1297412816 +230967,79293,full plot,1297413218 +230967,79293,narrow escapes,1297412774 +230967,79293,predictable,1297412756 +230967,79293,president,1297412767 +230967,79293,Soviet Union,1297412760 +230967,79897,boring,1296262573 +230967,79897,business,1296262543 +230967,79897,church,1296262543 +230967,79897,country,1296262518 +230967,79897,dramatic,1296262567 +230967,79897,funeral,1296262552 +230967,79897,funeral home,1296262559 +230967,79897,funny,1296262567 +230967,79897,justice,1296262509 +230967,79897,religion,1296262543 +230967,79897,salespeople,1296262543 +230967,79897,slow,1296262570 +230967,80219,action packed,1298403886 +230967,80219,black comedy,1298403903 +230967,80219,dark humor,1298403896 +230967,80219,gore,1298403877 +230967,80219,immigrants,1298403851 +230967,80219,Mexico,1298403863 +230967,80219,Not very strong ending,1298403867 +230967,80219,Nudity,1298403869 +230967,80219,resistance movement,1298403843 +230967,80219,satire,1298403892 +230967,80241,boring,1296638173 +230967,80241,boring plot,1296638170 +230967,80241,funny moments,1296639770 +230967,80241,love story,1296639784 +230967,80241,no plot,1296638165 +230967,80241,sex,1296639784 +230967,80350,animagus,1287589609 +230967,80350,funny,1287589547 +230967,80350,lame,1287589648 +230967,80350,parody,1287589547 +230967,80350,vampires,1287589556 +230967,80398,blood,1289724682 +230967,80398,brutal,1289725177 +230967,80398,cemetary,1289725152 +230967,80398,drugs,1289724682 +230967,80398,emotional,1289724660 +230967,80398,honor,1289724660 +230967,80398,hospital,1289725152 +230967,80398,kidnapping,1289725128 +230967,80398,killing,1289724682 +230967,80398,left for dead,1289725111 +230967,80398,mobsters,1289725111 +230967,80398,organized crime,1289724659 +230967,80398,police,1289725177 +230967,80398,revenge,1289725111 +230967,80398,shooting,1289725177 +230967,80398,twist,1289724660 +230967,80398,vendetta,1289724671 +230967,80398,violence,1289724942 +230967,80463,based on true story,1296769474 +230967,80463,business,1296769532 +230967,80463,college,1296769539 +230967,80463,computers,1296769543 +230967,80463,friendship,1296769548 +230967,80463,funny,1296769626 +230967,80463,Harvard,1296769550 +230967,80463,innovation,1296769552 +230967,80463,internet,1296769555 +230967,80463,law,1296769557 +230967,80463,treachery,1296769586 +230967,80463,university,1296769568 +230967,86548,1930s,1310203446 +230967,86548,animal abuse,1310203464 +230967,86548,animals,1310203425 +230967,86548,circus,1310203430 +230967,86548,elephants,1310203441 +230967,86548,Great Depression,1310203443 +230967,86548,justice,1310203474 +230977,1250,war,1159928064 +230997,2594,better than the american version,1262470886 +230997,2858,black comedy,1262469680 +230997,33794,action,1262471369 +230997,33794,based on comic,1262471362 +230997,33794,super-hero,1262471367 +230997,58803,casino,1262470192 +230997,58803,Las Vegas,1262470172 +230997,59315,based on a comic,1262471309 +230997,59315,superhero,1262471319 +230997,68358,action,1262471266 +230997,68358,adventure,1262471260 +230997,68358,sci-fi,1262471249 +230997,69757,humor,1262461272 +230997,72378,audience intelligence underestimated,1262460795 +230997,72378,Excellent FXs,1262460781 +231023,88,Chris Farley,1289355688 +231023,74754,terrible acting,1289355884 +231023,74754,unintentional comedy,1289355879 +231056,5812,racism,1201398097 +231056,46976,fantasy,1184916745 +231058,4722,gay,1215651915 +231073,5066,Nicholas Sparks,1452216109 +231073,8533,Nicholas Sparks,1452216061 +231073,62137,Nicholas Sparks,1452216072 +231073,74688,Nicholas Sparks,1452216081 +231073,115147,Nicholas Sparks,1452216090 +231073,132424,Nicholas Sparks,1452216031 +231094,260,new,1437791247 +231094,260,wild,1437791242 +231096,898,Cary Grant,1254521604 +231096,898,Katharine Hepburn,1254521606 +231096,6776,Bollywood,1237238510 +231096,48738,Forest Whitaker,1255902916 +231096,48780,Christian Bale,1247348357 +231096,48780,magic,1247348363 +231096,48780,Michael Caine,1247348365 +231096,48780,Scarlett Johansson,1247348374 +231096,48780,teleportation,1247348383 +231096,48780,twists & turns,1247348370 +231096,59369,Liam Neeson,1250510186 +231096,59369,unrealistic,1250510180 +231096,61729,Ricky Gervais,1247863550 +231096,63853,Baz Luhrmann,1243031667 +231096,64575,Meryl Streep,1250980043 +231096,64575,moral ambiguity,1250980053 +231096,64575,Philip Seymour Hoffman,1250980040 +231096,64614,Clint Eastwood,1241385924 +231096,64614,life & death,1241385926 +231096,65130,cansina,1249077026 +231096,65130,lenta,1249077031 +231096,65642,not believable,1241385669 +231096,74458,atmospheric,1305487998 +231097,3107,well done,1152553876 +231097,3179,book,1152553945 +231100,1187,friendship,1298931553 +231100,1187,Mary McDonnell,1298931536 +231100,1187,swamp,1298931557 +231100,1187,wheel chair,1298931559 +231100,1358,Billy Bob Thornton,1298931436 +231100,1358,Memorable Characters,1298931447 +231100,6867,human relationship,1298931484 +231100,6867,interesting characters,1298931477 +231100,6867,Michelle Williams,1298931492 +231100,6867,quirky,1298931490 +231100,6867,understated,1298931496 +231100,6867,want to see again,1298931499 +231100,30707,Bittersweet,1298931385 +231100,30707,Morgan Freeman,1298931392 +231100,30707,Oscar (Best Actress),1298931371 +231100,81932,true story,1298931255 +231126,356,classic,1435489619 +231126,356,perseverance,1435489619 +231126,356,self belief,1435489619 +231143,71033,Ricardo Darin,1445721892 +231143,143369,Argentina,1445754409 +231199,32,Brad Pitt,1400398262 +231199,32,Bruce Willis,1400398256 +231199,32,complicated,1400398258 +231199,32,dystopia,1400398260 +231199,32,post-apocalyptic,1400398267 +231199,32,time travel,1400398263 +231199,32,twist ending,1400398270 +231199,32,violence,1400398272 +231199,260,adventure,1399696265 +231199,260,fantasy,1399696262 +231199,260,great soundtrack,1399696246 +231199,260,Harrison Ford,1399696237 +231199,260,sci-fi,1399696253 +231199,260,SPACE TRAVEL,1399696250 +231199,2395,Bill Murray,1400397954 +231199,2395,bittersweet,1400397957 +231199,2395,clever,1400397959 +231199,2395,coming of age,1400397961 +231199,2395,off-beat comedy,1400397969 +231199,2395,quirky,1400397964 +231199,2395,school drama,1400397986 +231199,2395,Wes Anderson,1400397965 +231199,2997,Charlie Kaufman,1400397662 +231199,2997,cult film,1400397680 +231199,2997,quirky,1400397674 +231199,2997,satirical,1400397672 +231199,2997,surrealism,1400397668 +231199,2997,thought-provoking,1400397670 +231199,2997,twist ending,1400397676 +231199,3910,blindness,1400399264 +231199,3910,disability,1400399281 +231199,3910,great ending,1400399272 +231199,3910,immigrants,1400399284 +231199,3910,musical,1400399290 +231199,3949,disturbing,1400399318 +231199,3949,psychology,1400399315 +231199,4878,cult film,1400398229 +231199,4878,psychology,1400398233 +231199,4878,surreal,1400398226 +231199,4878,thought-provoking,1400398237 +231199,4878,time travel,1400398224 +231199,4975,Cameron Diaz,1400398317 +231199,4975,existentialism,1400398314 +231199,4975,remake,1400398321 +231199,4975,surreal,1400398312 +231199,4975,Tom Cruise,1400398309 +231199,4979,Ben Stiller,1400398026 +231199,4979,Bill Murray,1400398011 +231199,4979,dark comedy,1400398009 +231199,4979,dysfunctional family,1400398015 +231199,4979,family dynamics,1400398017 +231199,4979,great soundtrack,1400398007 +231199,4979,quirky,1400398005 +231199,4979,Wes Anderson,1400398002 +231199,5673,Adam Sandler,1400397651 +231199,6440,Coen Brothers,1400397716 +231199,6440,disturbing,1400397750 +231199,6440,Enigmatic,1400397745 +231199,6440,John Goodman,1400397743 +231199,6440,john turturro,1400397707 +231199,6440,menacing,1400397753 +231199,6440,weird,1400397740 +231199,6440,writers at work,1400397732 +231199,6711,Bill Murray,1400397592 +231199,6711,bittersweet,1400397604 +231199,6711,complex characters,1400397599 +231199,6711,Japan,1400397615 +231199,6711,Melancholic,1400397597 +231199,6711,reflective,1400397624 +231199,6711,Scarlett Johansson,1400397594 +231199,6711,tokyo,1400397612 +231199,6711,visually appealing,1400397629 +231199,7361,alternate reality,1400398374 +231199,7361,bittersweet,1400398370 +231199,7361,Charlie Kaufman,1400398368 +231199,7361,nonlinear,1400398364 +231199,7361,philosophy,1400398356 +231199,7361,surreal,1400398360 +231199,7361,thought-provoking,1400398358 +231199,8910,Dustin Hoffman,1400398159 +231199,8910,existentialism,1400398170 +231199,8910,philosophy,1400398151 +231199,30810,Bill Murray,1400398089 +231199,30810,Cult Classic,1400398109 +231199,30810,Owen Wilson,1400398121 +231199,30810,Wes Anderson,1400398091 +231199,33880,bittersweet,1400397490 +231199,33880,deadpan,1400397504 +231199,33880,independent film,1400397498 +231199,33880,Indie,1400397501 +231199,33880,quirky,1400397495 +231199,55269,Adrien Brody,1400398053 +231199,55269,dysfunctional family,1400398062 +231199,55269,family dynamics,1400398059 +231199,55269,India,1400398051 +231199,55269,road trip,1400398067 +231199,55269,Train,1400398065 +231199,55269,Wes Anderson,1400398049 +231199,55820,coen brothers,1400397873 +231199,55820,great acting,1400397869 +231199,55820,serial killer,1400397885 +231199,56782,adapted from:book,1400397801 +231199,56782,cerebral,1400397799 +231199,56782,Coen Brothers,1400397807 +231199,56782,Daniel Day-Lewis,1400397789 +231199,56782,greed,1400397792 +231199,94959,Bill Murray,1400399193 +231199,94959,Edward Norton,1400399192 +231199,94959,Wes Anderson,1400399190 +231199,106920,artificial intelligence,1400398418 +231199,106920,bittersweet,1400398420 +231199,106920,meaning of life,1400398422 +231199,106920,original,1400398425 +231199,106920,philosophical,1400398429 +231199,106920,predictable,1400398437 +231199,106920,psychology,1400398433 +231199,106920,Scarlett Johansson,1400398414 +231199,106920,thought-provoking,1400398416 +231199,109374,Wes Anderson,1400399218 +231199,111759,aliens,1420260678 +231199,111759,future,1420260703 +231199,111759,sci-fi,1420260682 +231199,111759,time loop,1420260668 +231199,111759,time travel,1420260676 +231206,260,epic adventure,1226663211 +231206,628,drama,1185874712 +231206,914,musical,1185874885 +231206,1047,thriller,1185874850 +231206,1242,History,1185874659 +231206,1267,drama,1185874903 +231206,1278,Mel Brooks,1226662786 +231206,1302,drama,1185874638 +231206,1327,possession,1226662522 +231206,1377,action,1185874622 +231206,1690,sci-fi,1185874760 +231206,1909,science fiction,1226662835 +231206,1951,musical,1227589171 +231206,2080,family,1185874838 +231206,2193,George Lucas,1226662875 +231206,2278,crime,1185874870 +231206,2297,heaven,1226662943 +231206,2297,philosophy,1226662912 +231206,2359,irish comedy,1226663021 +231206,3033,comedy,1185874804 +231206,3081,horror,1185874730 +231206,3686,afterlife,1227606886 +231206,3686,freaky,1227606886 +231206,3686,HAUNTED BY THE PAST,1227606886 +231206,3686,haunting,1227606886 +231206,3686,julia roberts,1227606886 +231206,3686,kevin bacon,1227606886 +231206,3686,Kiefer Sutherland,1227606886 +231206,3686,oliver platt,1227606886 +231206,3686,sci-fi,1227606886 +231206,4239,Ray Liotta,1227588924 +231206,4246,Romance,1185874773 +231206,4816,spoof,1226663229 +231206,4896,fantasy,1185874677 +231206,5957,Sandra Bullock,1227589038 +231206,7376,revenge,1226663000 +231206,7438,action,1185874787 +231206,33085,possession,1226662605 +231206,34162,sex scenes,1226662977 +231221,1982,horror,1426627210 +231221,1982,murder,1426627213 +231221,1982,serial killer,1426627208 +231221,1982,slasher,1426627203 +231221,4437,atmospheric,1426629565 +231221,4437,Dario Argento,1426629571 +231221,4437,dreamlike,1426629574 +231221,4437,Giallo,1426629567 +231221,4437,horror,1426629576 +231221,5163,giallo,1426700794 +231221,5163,horror,1427309140 +231221,5163,slasher,1426700798 +231221,114935,drama,1426627264 +231221,114935,thriller,1426627264 +231221,114935,time travel,1426627264 +231228,356,handicapped,1438197319 +231228,356,story telling,1438197319 +231228,356,vietnam war,1438197319 +231228,1027,crusades,1438199191 +231228,1027,sword fight,1438199196 +231228,2467,Sean Connery,1438199453 +231228,2467,Umberto Eco,1438199457 +231228,2843,gypsy,1438376301 +231228,2843,humorous,1438376306 +231228,3003,gypsy,1438376347 +231228,3003,jewish,1438376341 +231228,36535,jews,1438376375 +231228,79702,geeky,1438197503 +231228,79702,music,1438197482 +231228,79702,video games,1438197518 +231228,86882,art,1438198118 +231228,86882,time travel,1438198160 +231228,86882,woody allen,1438198108 +231228,114494,hacking,1438197899 +231228,122088,funny,1438197643 +231228,122088,reaggae,1438197740 +231228,122088,social criticism,1438197716 +231239,48032,atmosphere,1341764177 +231239,48032,Jean Reno,1341764156 +231239,48032,music,1341764181 +231239,48032,Nicoletta Braschi,1341764175 +231239,48032,nothing,1341764170 +231239,48032,Roberto Benigni,1341764103 +231243,271,but the court scene leaves much to be desired.,1137903783 +231243,271,The drama is good,1137903783 +231243,296,This is the wierdest movie I ever liked,1137139727 +231243,943,It was an absolutely lovely,1137193861 +231243,943,off beat romance. Truly charming.,1137193861 +231243,1013,The original is soooo much better than the later version. Tells you what it is like to feel good.,1137280093 +231243,1457,A feel good movie. A bit religious too I would think,1137280248 +231243,1457,also humours.,1137280248 +231243,1947,A very touching,1137334691 +231243,1947,tragic drama.,1137334691 +231243,2059,This one is real funny. It is also nice. But seems to have a factory finish to it.,1137280094 +231243,2071,and why few people seemed concerned,1137102780 +231243,2071,This movie speaks about the beginning of the AIDS crisis,1137102780 +231243,2302,I never knew justice could be so funny. Try this one,1138740978 +231243,2302,you might laugh your head out.,1138740978 +231243,2432,Not my cup of tea. It is so sad. Well the world is not perfect,1137280319 +231243,2432,so there.,1137280319 +231243,3004,in a married sort of way,1137398437 +231243,3004,This is funny,1137398437 +231243,3713,Very touching,1138906897 +231243,4720,A picturesque English horror story. In good taste.,1137385022 +231243,5464,This is a bloody movie. Yet I would call it a family movie.,1137340852 +231243,6427,This is a fun family movie. If you like victorian style British novels,1137102778 +231243,6427,you will love it.,1137102778 +231243,6592,but kind of stressful to watch.,1137894969 +231243,6592,It is a nice movie,1137894969 +231243,7445,Hokey,1142229731 +231243,41997,let god's revenge be His,1142229816 +231245,117192,adventure,1438551080 +231245,117192,comedy,1438551080 +231245,117192,scifi,1438551080 +231248,5909,Takashi Miike,1438773597 +231248,5909,violence,1438773599 +231248,7235,Takashi Miike,1438773576 +231248,7235,violent,1438773581 +231266,32,Brad Pitt,1215514976 +231266,32,Bruce Willis,1215514975 +231266,32,time travel,1215514977 +231266,47,Brad Pitt,1215515012 +231266,47,crime,1215515015 +231266,47,serial killer,1215515014 +231266,165,action,1215515024 +231266,165,Bruce Willis,1215515026 +231266,165,Samuel L. Jackson,1215515027 +231266,231,Jeff Daniels,1215515062 +231266,231,Jim Carrey,1215515059 +231266,231,stupid,1215515063 +231266,377,Action,1215514987 +231266,377,Keanu Reeves,1215514985 +231266,377,Sandra Bullock,1215514988 +231266,442,dystopia,1215913269 +231266,442,Sylvester Stallone,1215913270 +231266,442,Wesley Snipes,1215913268 +231266,593,Anthony Hopkins,1215484958 +231266,628,Crime,1215514864 +231266,628,drama,1215514867 +231266,628,Edward Norton,1215514866 +231266,780,action,1215514950 +231266,780,alien invasion,1215514951 +231266,780,aliens,1215514948 +231266,780,Will Smith,1215514956 +231266,1073,based on a book,1215515096 +231266,1073,classic,1215515097 +231266,1073,Gene Wilder,1215515094 +231266,1101,aviation,1215913253 +231266,1101,Oscar (Best Music - Original Song),1215913256 +231266,1101,pro-military,1215913257 +231266,1206,ahead of it's time,1215483748 +231266,1206,unique,1215483748 +231266,1208,adventure,1215484362 +231266,1208,book was better,1215484364 +231266,1208,chaos,1215484367 +231266,1208,classic,1215484356 +231266,1208,disturbing,1215484352 +231266,1208,drama,1215484346 +231266,1208,surreal,1215484349 +231266,1208,war,1215484355 +231266,1210,fantasy,1215514966 +231266,1210,sci-fi,1215514965 +231266,1210,space,1215514964 +231266,1240,Arnold Schwarzenegger,1215515083 +231266,1240,sci-fi,1215515086 +231266,1240,time travel,1215515084 +231266,1391,alien invasion,1215913291 +231266,1391,Jack Nicholson,1215913290 +231266,1391,Tim Burton,1215913288 +231266,1527,Bruce Willis,1215514448 +231266,1653,dystopia,1215913313 +231266,1653,eugenics,1215913316 +231266,1653,sci-fi,1215913315 +231266,1653,Uma Thurman,1215913326 +231266,1704,Matt Damon,1215484064 +231266,1704,Matt Damon(written by),1215484064 +231266,1704,thoughtful,1215484064 +231266,1961,Dustin Hoffman,1215913222 +231266,1961,Oscar (Best Actor),1215913224 +231266,1961,Oscar (Best Picture),1215913225 +231266,2762,Bruce Willis,1215515050 +231266,2762,ghosts,1215515047 +231266,2762,twist ending,1215515048 +231266,2858,Kevin Spacey,1215515005 +231266,2858,suburbia,1215515003 +231266,2858,surrealism,1215515002 +231266,2959,Edward Norton,1215561181 +231266,3147,stephen king,1215913309 +231266,4963,Matt Damon,1215601151 +231266,5630,Anthony Hopkins,1215514152 +231266,5989,crime,1215514851 +231266,5989,Leonardo DiCaprio,1215514848 +231266,5989,Tom Hanks,1215514849 +231266,6250,alien,1215483961 +231266,6250,alien invasion,1215483961 +231266,6250,inspirational,1215483961 +231266,6753,awesome,1215483797 +231266,6753,inspirational,1215483797 +231266,6753,Interesting,1215483797 +231266,6753,unique,1215483797 +231266,8132,dvd,1215514822 +231266,8132,glam rock,1215514820 +231266,32587,Action,1215514796 +231266,32587,comic book,1215514797 +231266,32587,Frank Miller,1215514807 +231266,32587,Sci-Fi,1215514794 +231266,36529,Nicolas Cage,1215514637 +231266,39444,Nicholas Cage,1215601118 +231266,44191,inspirational,1215484148 +231266,44191,thought-provoking,1215484148 +231266,44191,unique,1215484148 +231266,44665,Bruce Willis,1215514738 +231266,44665,twist,1215514734 +231266,44665,twist ending,1215514739 +231266,47610,19th century,1215514835 +231266,47610,magic,1215514830 +231266,47610,twist ending,1215514833 +231266,48043,immortality,1215514500 +231266,48043,inspirational,1215514500 +231266,48043,life through death,1215514508 +231266,48043,rebirth,1215514500 +231266,48043,unique,1215514520 +231266,51931,9-11,1215514681 +231266,51931,inspirational,1215514681 +231266,51931,life & death,1215514681 +231266,51931,unique,1215514681 +231266,53129,Dane Cook,1215514119 +231266,53129,plot twist,1215514112 +231266,54745,debate,1215514771 +231266,54745,less than 300 ratings,1215514772 +231266,54745,stuttering,1215514769 +231266,55872,inspirational,1215484105 +231266,55872,thought-provoking,1215484105 +231266,55872,unique,1215484105 +231266,55908,thought-provoking,1215483713 +231266,55908,unique,1215483713 +231266,56171,anti C.S. Lewis,1215483882 +231266,56171,anti-religion,1215483869 +231266,58025,Samuel L. Jackson,1215514581 +231266,58078,inspirational,1215485106 +231266,58078,life & death,1215485106 +231266,58078,life choices,1215485106 +231266,58078,life philosophy,1215485105 +231266,58078,thought-provoking,1215485105 +231266,58078,unique,1215485106 +231266,58972,funny moments,1215483832 +231266,58972,kid flick,1215483840 +231266,58972,loved it,1215483832 +231266,59615,plot twist,1215484207 +231266,59900,Adam Sandler,1215484285 +231266,60072,Angelina Jolie,1215484228 +231266,60072,Morgan Freeman,1215484228 +231266,60072,plot twist,1215484218 +231266,60074,plot twist,1215484261 +231266,60074,Will Smith,1215484268 +231284,1197,chearful a must see classic,1139787034 +231284,1197,funny,1139787034 +231297,50,Benicio Del Toro,1276005558 +231297,50,complicated,1276005563 +231297,50,twist ending,1276005572 +231297,296,action,1275699249 +231297,296,assassin,1275699251 +231297,296,atmospheric,1275699253 +231297,296,Black comedy,1275699257 +231297,296,Bruce Willis,1275699262 +231297,296,classic,1275699264 +231297,296,comedy,1275699267 +231297,296,cult film,1275699269 +231297,296,dark comedy,1275688438 +231297,296,drugs,1275699273 +231297,296,Golden Palm,1275699275 +231297,296,imdb top 250,1275699279 +231297,296,Mafia,1275699280 +231297,296,multiple storylines,1275699282 +231297,296,nonlinear,1275688443 +231297,296,organized crime,1275699286 +231297,296,Quentin Tarantino,1275688441 +231297,296,quirky,1275699291 +231297,296,Samuel L. Jackson,1275699296 +231297,296,violence,1275699299 +231297,318,atmospheric,1275698981 +231297,318,based on a book,1275688454 +231297,318,classic,1275699005 +231297,318,crime,1275699009 +231297,318,drama,1275699013 +231297,318,friendship,1275699015 +231297,318,imdb top 250,1275699017 +231297,318,inspirational,1275699019 +231297,318,justice,1275699023 +231297,318,Morgan Freeman,1275699026 +231297,318,narrated,1275699028 +231297,318,prison,1275688450 +231297,318,prison escape,1275699031 +231297,318,reflective,1275699034 +231297,318,revenge,1275699035 +231297,318,Stephen King,1275699038 +231297,318,thought-provoking,1275699042 +231297,318,twist ending,1275688456 +231297,750,based on a book,1275688841 +231297,750,dark comedy,1275688833 +231297,750,Stanley Kubrick,1275688838 +231297,924,sci-fi,1275688730 +231297,924,space,1275688734 +231297,924,surreal,1275688737 +231297,1080,Biblical,1275699460 +231297,1080,British,1275699461 +231297,1080,Christianity,1275699467 +231297,1080,classic,1275699470 +231297,1080,comedy,1275699471 +231297,1080,controversial,1275699473 +231297,1080,funny,1275699476 +231297,1080,hilarious,1275699478 +231297,1080,humorous,1275699480 +231297,1080,imdb top 250,1275699482 +231297,1080,Middle East,1275699484 +231297,1080,mockumentary,1275699489 +231297,1080,Monty Python,1275699492 +231297,1080,Nudity (Full Frontal),1275699499 +231297,1080,parody,1275699507 +231297,1080,religion,1275699513 +231297,1080,satirical,1275699517 +231297,1080,Terry Gilliam,1275699518 +231297,1080,whimsical,1275699520 +231297,1136,Monty Python,1275688420 +231297,1136,parody,1275688422 +231297,1193,based on a book,1275688806 +231297,1193,Oscar (Best Picture),1275688808 +231297,1193,psychology,1275688803 +231297,1198,action,1275699174 +231297,1198,adventure,1275699176 +231297,1198,archaeology,1275699178 +231297,1198,atmospheric,1275699180 +231297,1198,biblical,1275699183 +231297,1198,classic,1275699186 +231297,1198,comedy,1275699189 +231297,1198,good versus evil,1275699193 +231297,1198,Harrison Ford,1275699196 +231297,1198,humorous,1275699200 +231297,1198,imdb top 250,1275699203 +231297,1198,indiana jones,1275699205 +231297,1198,Nazis,1275699210 +231297,1198,Oscar (Best Effects - Visual Effects),1275699214 +231297,1198,racism,1275699220 +231297,1198,Saturn Award (Best Actor),1275699225 +231297,1198,Steven Spielberg,1275699231 +231297,1198,World War II,1275699233 +231297,1206,based on a book,1275688693 +231297,1206,dystopia,1275688698 +231297,1206,psychology,1275688690 +231297,1291,indiana jones,1275688390 +231297,1921,mental illness,1275688625 +231297,1921,psychology,1275688623 +231297,2078,based on a book,1275690297 +231297,2078,classic,1275690302 +231297,2078,Disney,1275690300 +231297,2571,post-apocalyptic,1275688399 +231297,2571,sci-fi,1275688402 +231297,2571,virtual reality,1275688394 +231297,2579,black and white,1275688385 +231297,2600,Sci-Fi,1275690256 +231297,2600,surreal,1275690258 +231297,2600,virtual reality,1275690253 +231297,2628,action,1275981527 +231297,2628,adventure,1275981531 +231297,2628,desert,1275981534 +231297,2628,George Lucas,1275981542 +231297,2628,Natalie Portman,1275981547 +231297,2628,Samuel L. Jackson,1275981554 +231297,2692,adultery,1275699063 +231297,2692,alternate endings,1275699066 +231297,2692,alternate reality,1275699069 +231297,2692,animation,1275699077 +231297,2692,artistic,1275699072 +231297,2692,Franka Potente,1275699097 +231297,2692,German,1275699102 +231297,2692,heist,1275699108 +231297,2692,humorous,1275699110 +231297,2692,imdb top 250,1275699113 +231297,2692,intense,1275699116 +231297,2692,nonlinear,1275688583 +231297,2692,notable soundtrack,1275699119 +231297,2692,original,1275699124 +231297,2692,surreal,1275688581 +231297,2692,thought-provoking,1275699131 +231297,2692,time,1275699135 +231297,2692,time loop,1275699138 +231297,2692,time travel,1275688578 +231297,2692,whimsical,1275699158 +231297,2762,twist ending,1275690506 +231297,2905,atmospheric,1275688897 +231297,2905,based on a book,1275688892 +231297,2905,samurai,1275688895 +231297,2916,dystopia,1275690533 +231297,2916,virtual reality,1275690530 +231297,2959,dark comedy,1275688371 +231297,2959,psychology,1275688374 +231297,3052,satire,1275688249 +231297,4016,Disney,1275688546 +231297,4016,Disney animated feature,1275688549 +231297,4016,funny,1275688542 +231297,4226,amnesia,1275699365 +231297,4226,black and white,1275699369 +231297,4226,complicated,1275699371 +231297,4226,cult film,1275699374 +231297,4226,dark,1275699378 +231297,4226,death,1275699381 +231297,4226,dreamlike,1275699384 +231297,4226,imdb top 250,1275699386 +231297,4226,investigation,1275699392 +231297,4226,memory,1275699394 +231297,4226,Mindfuck,1275699395 +231297,4226,mystery,1275699402 +231297,4226,nonlinear,1275688415 +231297,4226,paranoid,1275699408 +231297,4226,psychological,1275699412 +231297,4226,psychology,1275688413 +231297,4226,revenge,1275699422 +231297,4226,stylized,1275699427 +231297,4226,tense,1275699429 +231297,4226,twist ending,1275688410 +231297,4848,nonlinear,1275688282 +231297,4878,psychology,1275688356 +231297,4878,time travel,1275688365 +231297,4975,Cameron Diaz,1275698763 +231297,4975,comedy,1275698773 +231297,4975,Death,1275698779 +231297,4975,Drama,1275698782 +231297,4975,existentialism,1275698785 +231297,4975,fantasy,1275698787 +231297,4975,future,1275698791 +231297,4975,mindfuck,1275698794 +231297,4975,New York,1275698796 +231297,4975,New York City,1275698799 +231297,4975,Nudity (Topless),1275698807 +231297,4975,psychology,1275698810 +231297,4975,remake,1275698812 +231297,4975,Romance,1275698817 +231297,4975,Saturn Award (Best Actor),1275698819 +231297,4975,sci-fi,1275698824 +231297,4975,suicide,1275698828 +231297,4975,surreal,1275698832 +231297,4975,Thriller,1275698834 +231297,4975,Tom Cruise,1275698836 +231297,6807,British,1275981700 +231297,6807,british comedy,1275981702 +231297,6807,classic,1275981704 +231297,6807,comedy,1275981707 +231297,6807,controversial,1275981709 +231297,6807,Funny as hell,1275981712 +231297,6934,sci-fi,1275690588 +231297,6934,virtual reality,1275690586 +231297,7147,surreal,1275690599 +231297,7361,nonlinear,1275688850 +231297,7361,sci-fi,1275688855 +231297,7361,surreal,1275688852 +231297,8360,animation,1275690380 +231297,8360,fairy tale,1275690374 +231297,8360,parody,1275690372 +231297,8370,blind samurai,1275956370 +231297,8370,Blind Swordsman,1275956372 +231297,8370,blindness,1275956375 +231297,8370,cross dressing,1275956386 +231297,8370,gangs of japan,1275956390 +231297,8370,humour,1275956394 +231297,8370,Japan,1275956396 +231297,8370,Kitano,1275956415 +231297,8370,Michiyo Ookusu,1275956436 +231297,8370,one swipe swordfights,1275956449 +231297,8370,remake,1275956455 +231297,8370,sword fight,1275956497 +231297,8370,Takeshi Kitano,1275956502 +231297,8370,weird,1275956504 +231297,32554,opera,1275688868 +231297,32554,space travel,1275688874 +231297,32554,war,1275688871 +231297,44191,based on a book,1275690407 +231297,44191,comic book,1275690405 +231297,44191,dystopia,1275690402 +231297,48780,atmospheric,1275699544 +231297,48780,Christian Bale,1275699563 +231297,48780,costume drama,1275699568 +231297,48780,dark,1275699571 +231297,48780,David Bowie,1275699575 +231297,48780,enigmatic,1275699577 +231297,48780,Hugh Jackman,1275699579 +231297,48780,imdb top 250,1275699582 +231297,48780,magic,1275699587 +231297,48780,Michael Caine,1275699589 +231297,48780,nonlinear,1275699591 +231297,48780,obsession,1275699594 +231297,48780,Oscar Nom 2007,1275699597 +231297,48780,sacrifice,1275699599 +231297,48780,Scarlett Johansson,1275699602 +231297,48780,steampunk,1275699605 +231297,48780,teleportation,1275699610 +231297,48780,tense,1275699613 +231297,48780,twist ending,1275699614 +231297,48780,twists & turns,1275699617 +231297,52885,anime,1275688200 +231297,52885,dreamlike,1275688196 +231297,52885,dreams,1275688191 +231297,52885,psychedellic,1275688433 +231297,57504,Anime,1275688491 +231297,57504,friendship,1275688495 +231297,57504,time travel,1275688488 +231297,76175,3d,1275698861 +231297,76175,3D version,1275698863 +231297,76175,action,1275698870 +231297,76175,can't root for the charcters,1275698904 +231297,76175,fantasy,1275698910 +231297,76175,FX,1275698914 +231297,76175,Gemma Arterton,1275698917 +231297,76175,gods,1275698919 +231297,76175,Greek,1275698923 +231297,76175,humanity,1275698925 +231297,76175,Liam Neeson,1275698927 +231297,76175,Mads Mikkelsen,1275698930 +231297,76175,monsters,1275698933 +231297,76175,not strictly a remake,1275698935 +231297,76175,Ralph Fiennes,1275698942 +231297,76175,remake,1275698946 +231297,76175,Sam Worthington,1275698948 +231297,76175,Special Effects,1275698952 +231297,76301,David Spade,1275688521 +231297,76301,John Goodman,1275688519 +231297,76301,Tracey Ullman,1275688523 +231300,356,bittersweet,1448960684 +231300,356,great soundtrack,1448960715 +231300,356,history,1448960695 +231300,356,inspirational,1448960690 +231300,356,touching,1448960727 +231300,916,classic,1448961085 +231300,916,romantic comedy,1448961087 +231300,916,Rome,1448961126 +231300,1035,classic,1448960536 +231300,1035,music,1448960560 +231300,1035,musical,1448960510 +231300,1035,World War II,1448960522 +231300,1247,classic,1448961024 +231300,1247,notable soundtrack,1448961051 +231300,2324,bittersweet,1448960622 +231300,2324,comedy,1448960640 +231300,2324,Heartwarming,1448960630 +231300,2324,sentimental,1448960656 +231300,4973,beautifully filmed,1448960388 +231300,4973,idealism,1448960410 +231300,4973,stylized,1448960429 +231300,27815,heartwarming,1448961406 +231300,27815,inspiring teacher,1448961403 +231300,27815,mentor,1448961400 +231300,27815,music,1448961395 +231318,551,musical,1295186364 +231318,551,whimsical,1295186364 +231318,6975,dark humor,1294824923 +231318,6975,disturbing,1294824923 +231318,7024,confrontational,1294824537 +231318,7024,disturbing,1294824552 +231318,7024,irony,1294824139 +231318,7024,Pier Paolo Pasolini,1294824139 +231318,7024,social criticism,1294824139 +231318,7024,thought-provoking,1294824465 +231318,66097,musical intermission,1295186217 +231318,66097,Neil Gaiman,1295186217 +231351,1485,jim carrey,1139661785 +231351,1500,pen to the neck,1139661757 +231351,1587,arnold,1139661769 +231351,5266,Jodie Foster,1139643208 +231351,33162,Lame War Scenes,1139696391 +231359,96610,'sisters' night,1437083702 +231359,96610,action,1437083702 +231359,96610,sci-fi,1437083702 +231361,38061,Film Noir,1200852619 +231446,1704,excellent script,1441570360 +231446,1704,thoughtful,1441570359 +231446,112183,alter ego,1441570242 +231446,112183,Broadway,1441570235 +231446,112183,great performances,1441570238 +231446,112183,magical realism,1441570232 +231446,112183,satire,1441570230 +231449,1246,education,1438712923 +231449,1246,inspirational,1438712883 +231449,1246,philosophy,1438712886 +231449,1246,Robin Williams,1438712915 +231449,48711,determination,1438712973 +231466,110,war,1338135239 +231466,356,war,1338135170 +231466,480,horror,1338135207 +231466,480,violence,1338135213 +231466,589,violence,1338135821 +231466,593,mental illness,1338135191 +231466,1273,slow,1391374053 +231466,1273,tom waits,1391374061 +231466,2788,comedy,1304015425 +231466,2788,humor,1304015422 +231466,2788,monty python,1304015418 +231466,2788,non sequitor,1304015430 +231466,2788,silly,1304015443 +231466,2788,surreal,1304015427 +231466,4347,czech,1338136937 +231466,5971,cute,1305064744 +231466,5971,slow,1305064758 +231466,5971,sweet,1305064748 +231466,6953,death,1337960866 +231466,6953,multiple storylines,1337960908 +231466,6953,murder,1337960892 +231466,6953,nonlinear,1337960875 +231466,6953,violent,1337960883 +231466,26842,violent,1356387106 +231466,27033,bloody,1304015365 +231466,27033,gory,1304015344 +231466,27033,slow,1304015352 +231466,27033,surreal,1304015357 +231466,27033,violent,1304015347 +231466,85985,independent film,1425040972 +231466,85985,obsession,1425040972 +231466,85985,romantic comedy,1425040972 +231466,98956,autism,1434182039 +231466,98956,disability,1434182042 +231466,98956,happiness,1434182045 +231466,98956,love,1434182057 +231466,108514,bollywood,1390676982 +231466,108514,cheesy,1390677061 +231466,108514,fun,1390676966 +231466,108514,funny,1390676986 +231466,108514,great dancing,1390677042 +231466,108514,musical,1390676975 +231466,108514,predictable,1390677057 +231466,108514,romance,1436992263 +231485,59315,Marvel,1372239145 +231485,59315,Robert Downey Jr.,1372238721 +231486,32,R,1352759190 +231486,32,rated-R,1352759190 +231486,47,horror,1352759674 +231486,47,R,1352759661 +231486,47,rated-R,1352759661 +231486,47,thriller,1352759667 +231486,47,violent,1352759664 +231486,50,R,1352759256 +231486,50,rated-R,1352759256 +231486,165,always watch it when it's on tv,1328481271 +231486,165,Bruce Willis,1328481263 +231486,165,violent,1328481256 +231486,239,cartoon,1367810937 +231486,296,Nudity (Full Frontal),1352759096 +231486,296,Nudity (Topless),1352759096 +231486,296,R,1352759060 +231486,296,rape,1352759060 +231486,296,rated-R,1352759060 +231486,296,violence,1352759070 +231486,608,R,1352759608 +231486,608,rated-R,1352759608 +231486,608,sexuality,1352759608 +231486,648,spies,1367810965 +231486,760,wwii,1367810917 +231486,800,R,1372395600 +231486,800,Rated R,1372395600 +231486,800,rated-R,1372395600 +231486,1023,cartoon,1367810937 +231486,1041,R,1372395440 +231486,1041,Rated R,1372395440 +231486,1041,rated-R,1372395440 +231486,1060,rated-R,1336967200 +231486,1060,vegas,1336967213 +231486,1090,anti-war,1355348993 +231486,1090,R,1355349026 +231486,1090,rated-R,1355349026 +231486,1090,violence,1355349077 +231486,1198,treasure hunt,1367810711 +231486,1214,frightening,1367810874 +231486,1214,horror,1327983757 +231486,1214,sci-fi,1327983762 +231486,1215,R,1345609332 +231486,1219,Alfred Hitchcock,1327983064 +231486,1219,horror,1327983050 +231486,1219,murder,1327983060 +231486,1221,organized crime,1327983690 +231486,1221,violence,1327983695 +231486,1235,dark humor,1373255811 +231486,1235,suicide attempt,1373255804 +231486,1236,R,1372395493 +231486,1236,Rated R,1372395493 +231486,1236,rated-R,1372395493 +231486,1253,science fiction,1367810630 +231486,1285,rated-R,1342410940 +231486,1285,suicide,1342410953 +231486,1291,treasure hunt,1367810711 +231486,1301,science fiction,1367810630 +231486,1429,kung fu,1367810857 +231486,1517,crude,1328478918 +231486,1641,indecent,1327982465 +231486,1641,strippers,1327982454 +231486,1641,stripping,1327982457 +231486,1641,striptease,1327982459 +231486,1653,science fiction,1367810630 +231486,1994,frightening,1367810874 +231486,1997,devil,1367810886 +231486,1997,frightening,1367810874 +231486,2085,cartoon,1367810937 +231486,2115,treasure hunt,1367810711 +231486,2140,dark fantasy,1367810753 +231486,2143,adventure,1331425567 +231486,2143,dark fantasy,1331425562 +231486,2143,devil,1331425572 +231486,2143,fantasy,1331425579 +231486,2143,puppets,1331425594 +231486,2143,Tom Cruise,1331425586 +231486,2311,science fiction,1367810630 +231486,2396,Nudity (Topless - Notable),1327982179 +231486,2396,Nudity (Topless),1327982172 +231486,2410,Mr. T,1328514076 +231486,2410,sport:boxing,1328514073 +231486,2467,Nudity (Full Frontal - Notable),1338613405 +231486,2467,Nudity (Topless),1338613413 +231486,2467,rated-R,1338613400 +231486,2516,R,1355349367 +231486,2516,Rated R,1355349367 +231486,2640,super hero,1367810767 +231486,2640,superheroes,1367810687 +231486,2664,horror,1333487949 +231486,2664,tense,1333487961 +231486,2670,wwii,1367810917 +231486,2723,super hero,1367810767 +231486,2723,superheroes,1367810687 +231486,2819,spies,1367810965 +231486,2858,black comedy,1352759486 +231486,2858,drugs,1352759481 +231486,2858,Nudity (Topless),1352759512 +231486,2858,R,1352759512 +231486,2858,rated-R,1352759512 +231486,2858,violence,1352759504 +231486,2918,Matthew Broderick,1328479232 +231486,2959,dark comedy,1352759817 +231486,2959,disturbing,1352759809 +231486,2959,Nudity (Topless),1352759798 +231486,2959,R,1352759798 +231486,2959,rated-R,1352759798 +231486,2959,violence,1352759800 +231486,3043,R,1355349450 +231486,3043,rated-R,1355349449 +231486,3354,science fiction,1367810630 +231486,3448,rated-R,1338613556 +231486,3508,BD-R,1327983137 +231486,3508,Clint Eastwood,1327983151 +231486,3508,Nudity (Topless - Brief),1327983128 +231486,3508,revenge,1327983144 +231486,3508,western,1327983155 +231486,3624,kung fu,1367810857 +231486,3635,spies,1367810965 +231486,3740,kung fu,1367810857 +231486,3819,Nudity (Topless - Notable),1327982287 +231486,3819,sexy,1327982293 +231486,3916,based on a true story,1330489043 +231486,3916,football,1330489048 +231486,3916,race issues,1330489057 +231486,3983,R,1372393829 +231486,3983,rated-R,1372393829 +231486,3985,wwii,1367810917 +231486,4037,rated-R,1333488065 +231486,4246,rated-R,1342410783 +231486,4326,R,1352758655 +231486,4326,rated-R,1352758654 +231486,4338,wwii,1367810917 +231486,4339,wwii,1367810917 +231486,4366,steampunk,1341258545 +231486,4641,coming of age,1368845130 +231486,4641,dark comedy,1368845137 +231486,4641,depressing,1368845146 +231486,4641,R,1368845125 +231486,4641,rated-R,1368845125 +231486,4720,dark,1353131876 +231486,4720,death,1353131873 +231486,4720,ghosts,1353131871 +231486,4720,haunted house,1353131886 +231486,4720,Horror,1353131862 +231486,4799,ending kinda ruined it,1345606640 +231486,4799,husband-wife relationship,1345606587 +231486,4799,Slapstick,1345606662 +231486,4901,spies,1367810965 +231486,5107,wwii,1367810917 +231486,5115,History,1328599940 +231486,5115,John Wayne,1328599937 +231486,5219,Nudity (Full Frontal - Brief),1355197142 +231486,5219,Nudity (Topless),1355197129 +231486,5219,R,1355197171 +231486,5219,rated-R,1355197171 +231486,5219,zombies,1355197132 +231486,5349,superheroes,1367810687 +231486,5418,espionage,1331011285 +231486,5418,spies,1367810965 +231486,5418,survival,1331011290 +231486,5507,adventure,1327983987 +231486,5507,pole dancer,1327983950 +231486,5507,snowboard,1327983963 +231486,5507,superhero,1327983968 +231486,5507,Vin Diesel,1327983942 +231486,5507,Whore,1327983948 +231486,5882,pirates,1329111974 +231486,5882,steampunk,1329111967 +231486,5882,treasure hunt,1329111986 +231486,6157,super hero,1367810768 +231486,6428,Clint Eastwood,1330151885 +231486,6428,Ennio Morricone,1330151945 +231486,6534,super hero,1367810767 +231486,6639,AFI 100 (Thrills),1355555087 +231486,6639,classic thriller,1355555095 +231486,6639,Frightening,1355555082 +231486,6874,Uma Thurman,1327983230 +231486,6874,violence,1327983225 +231486,6874,violent,1327983227 +231486,7022,controversial,1355350289 +231486,7022,violent,1355350296 +231486,7116,one of the most tense and suspenseful movies ever made,1355350091 +231486,7373,super hero,1367810767 +231486,7373,superheroes,1367810687 +231486,7438,violence,1327983269 +231486,7438,violent,1327983272 +231486,7458,Nudity (Rear),1330323712 +231486,7458,Nudity (Topless),1330323727 +231486,7458,rated-R,1330323750 +231486,7934,Woody Allen,1327982374 +231486,8042,R,1374899799 +231486,8042,rated-R,1374899799 +231486,8167,black and white,1354603837 +231486,8167,seafaring,1354603862 +231486,8167,sword fight,1354603874 +231486,8253,anime,1331177662 +231486,8253,Hayao Miyazaki,1331177659 +231486,8253,stylized,1331177670 +231486,8370,R,1345609625 +231486,8520,R,1355350615 +231486,8520,rated-R,1355350615 +231486,8636,superheroes,1367810687 +231486,8656,disturbing,1327982866 +231486,8665,spies,1367810965 +231486,8798,rated-R,1338613168 +231486,8798,violent,1338613173 +231486,8865,aviation,1329112273 +231486,8865,Below R,1329112247 +231486,8865,dieselpunk,1329112266 +231486,8865,robots,1329112251 +231486,8865,steampunk,1329112239 +231486,26398,mars,1367810670 +231486,31660,anime,1329199898 +231486,31660,Patrick Stewart,1329199900 +231486,31660,poor dialogue,1329199974 +231486,31660,preachy,1329199965 +231486,31660,steampunk,1329199903 +231486,34624,Hayley Mills,1328478463 +231486,42004,coming of age,1327982672 +231486,42004,drugs,1327982677 +231486,42004,gender identity,1327982680 +231486,42004,male nudity,1327982684 +231486,42004,queer,1327982690 +231486,42004,sexuality,1327982697 +231486,42004,transgender,1327982668 +231486,42004,transsexuals,1327982666 +231486,42946,Jackie Chan,1329375842 +231486,42946,kung fu,1329375845 +231486,43633,clean,1328481097 +231486,43633,Dick Van Dyke,1328481071 +231486,44199,R,1342410729 +231486,45447,treasure hunt,1367810711 +231486,48598,R,1355350518 +231486,48598,rated-R,1355350527 +231486,51255,rated-R,1342411342 +231486,53967,biplanes,1328478396 +231486,53967,brian blessed,1328478436 +231486,53967,lewis guns,1328478419 +231486,53967,Tom Selleck,1328478401 +231486,54281,coming of age,1327982558 +231486,54281,drug dealing,1327982590 +231486,54281,drugs,1327982553 +231486,54281,R,1327982546 +231486,54281,suicide,1327982562 +231486,54286,car chase,1331274414 +231486,54286,espionage,1331274399 +231486,54286,murder,1331274408 +231486,54286,spies,1331274406 +231486,54286,twist ending,1331274431 +231486,54997,rated-R,1342411295 +231486,55290,child abuse,1352758903 +231486,55290,drugs,1352758906 +231486,55290,R,1352758923 +231486,55290,rated-R,1352758923 +231486,55442,coming of age,1372394403 +231486,57669,R,1372395556 +231486,57669,Rated R,1372395556 +231486,57669,rated-R,1372395556 +231486,59315,superheroes,1367810687 +231486,59810,elections,1355350429 +231486,59810,politics,1355350442 +231486,59810,presidential elections,1355350431 +231486,60684,gore,1355197200 +231486,60684,super hero,1367810768 +231486,60684,violence,1355197197 +231486,64839,nudity,1352758757 +231486,64839,Nudity (Topless - Notable),1352758754 +231486,64839,R,1352758708 +231486,64839,rated-R,1352758708 +231486,64839,strippers,1352758766 +231486,64839,stripping,1352758768 +231486,65514,rated-R,1342411173 +231486,68157,gore,1328513901 +231486,68157,violence,1328513898 +231486,68157,World War II,1328513919 +231486,68237,science fiction,1367810630 +231486,76251,gore,1345609569 +231486,76251,R,1345609564 +231486,79139,cliche,1328478308 +231486,79139,fantasy world,1328478294 +231486,79139,Jay Baruchel,1328478337 +231486,79139,magic,1328478319 +231486,79139,Nicolas Cage,1328478289 +231486,79357,Nudity (Topless),1355197103 +231486,83134,black comedy,1355350341 +231486,83134,gore,1355350338 +231486,86781,disturbing,1355350186 +231486,86781,R,1355350171 +231486,86781,rated-R,1355350179 +231486,89864,R,1355634316 +231486,89864,rated-R,1355634324 +231486,90249,android(s)/cyborg(s),1328513383 +231486,90249,Fighting Robots,1328513390 +231486,90249,robots,1328513393 +231486,90249,Rocky Homage,1328513512 +231486,90249,Science Fiction,1328513421 +231486,90249,unresolved,1328513584 +231486,90647,animation,1331526752 +231486,90647,cats,1331526624 +231486,90647,latin music,1331526647 +231486,90717,crude humor,1329896601 +231486,90717,Matthew Broderick,1329896611 +231486,91658,R,1356328387 +231486,91658,rape,1356328393 +231486,91658,rated-R,1356328387 +231486,92259,rated-R,1338613469 +231486,93363,female warriors,1340866076 +231486,93363,Mars,1340866062 +231486,93363,steampunk,1340866066 +231486,93363,very real-looking,1340866069 +231486,93363,well done,1340866122 +231486,93840,bloody,1368414300 +231486,93840,dark comedy,1368414292 +231486,93840,gore,1368414285 +231486,93840,R,1368414278 +231486,93840,rated-R,1368414278 +231486,93840,zombies,1368414288 +231486,94959,coming of age,1368414747 +231486,96751,R,1355349814 +231486,96751,Rated R,1355349814 +231486,96751,Richard Gere,1355349807 +231486,97921,R,1372394271 +231486,97921,rated-R,1372394271 +231486,99114,brutal,1357843030 +231486,99114,profanity,1357843038 +231486,99114,R,1357843013 +231486,99114,rated-R,1357843013 +231486,99114,violence,1357843022 +231486,99114,western,1357843045 +231506,922,Hollywood,1157346520 +231507,78316,different perspectives,1433309541 +231507,78316,romance,1433309541 +231507,78316,uninteresting people,1433309541 +231507,106696,beautiful,1433309445 +231507,106696,good message,1433309426 +231519,318,wildly overrated,1248385037 +231519,955,Cary Grant,1248384543 +231519,955,Katherine Hepburn,1248384543 +231519,955,screwball,1248384543 +231519,1913,opaque,1248384845 +231519,2858,wildly overrated,1248385023 +231519,2936,satire,1248384760 +231519,2936,social commentary,1248384760 +231519,3160,wildly overrated,1248385004 +231519,3535,grim,1248384951 +231519,3741,1950s,1248384687 +231519,3741,american dream,1248384687 +231519,3741,bleak,1248384687 +231519,3741,Neo-realism,1248384687 +231519,3742,Eisenstein,1248384328 +231519,3742,montage,1248384265 +231519,3742,soviet,1248384328 +231519,4973,wildly overrated,1248385028 +231519,5617,bdsm,1248384377 +231519,6783,class issues,1248384820 +231519,6783,politics,1248384820 +231519,7361,pretentious,1248385061 +231519,7361,wildly overrated,1248385061 +231519,8620,politics,1248384466 +231519,8620,satire,1248384467 +231519,8620,surrealism,1248384467 +231519,8740,Maxim Gorky,1248384881 +231519,33166,Racist As hell,1248385080 +231519,33166,wildly overrated,1248385013 +231519,55363,tense,1248384300 +231528,7361,Charlie Kaufman,1322268328 +231528,7361,cult film,1322268330 +231528,7361,Jim Carrey,1322268326 +231528,7361,nonlinear,1322268323 +231528,7361,philosophy,1322268337 +231528,7361,romance,1322268334 +231528,7361,surreal,1322268316 +231528,7361,surrealism,1322268319 +231528,7361,thought-provoking,1322268332 +231528,65130,1950s,1322268239 +231528,65130,abortion,1322268237 +231528,65130,Kate Winslet,1322268208 +231528,65130,Leonardo DiCaprio,1322268211 +231528,65130,life choices,1322268222 +231528,65130,life philosophy,1322268215 +231528,65130,marriage,1322268263 +231528,65130,Nudity (Topless),1322268255 +231528,65130,Sam Mendes,1322268251 +231528,79132,alternate reality,1322268374 +231528,79132,Leonardo DiCaprio,1322268371 +231528,79132,sci-fi,1322268379 +231528,79132,thought-provoking,1322268369 +231528,79132,thriller,1322268377 +231528,79132,visually appealing,1322268368 +231575,130490,badass girl,1428333669 +231575,130490,based on a book,1428333669 +231575,130490,post-apocalyptic,1428333669 +231594,4848,mystery,1439848770 +231594,4848,nonlinear,1439848825 +231594,4848,surreal,1439848845 +231596,2858,Kevin Spacey,1299085636 +231596,2858,midlife crisis,1299085616 +231596,2858,reflective,1299085644 +231596,3272,drugs,1299086919 +231596,4155,Charlize Theron,1300476899 +231596,4155,Keanu Reeves,1300476894 +231596,4995,genius,1299086696 +231596,4995,math,1299086694 +231596,4995,schizophrenia,1299086689 +231596,53956,dark comedy,1299087007 +231596,53956,male nudity,1299087166 +231601,4993,adventure,1320074372 +231601,4993,cheesy,1320074434 +231601,4993,fantasy,1320074376 +231601,4993,horror,1320074426 +231601,4993,romance,1320074381 +231601,4993,scary,1320074421 +231601,4993,stupid,1320074443 +231601,4993,time travel,1320074394 +231604,51935,government agencies,1443873163 +231604,51935,sniper,1443873152 +231622,4246,self-esteem,1439839583 +231622,79132,psychology,1439839729 +231666,32,Brad Pitt,1163449411 +231666,32,Bruce Willis,1163449410 +231666,63,Wayans Brothers,1168916991 +231666,165,Bruce Willis,1163448613 +231666,180,Kevin Smith,1163443802 +231666,223,I'm not even supposed to be here today,1163443738 +231666,223,Kevin Smith,1163443736 +231666,223,view askew,1163443732 +231666,288,Robert Downey Jr,1220751799 +231666,288,serial killer,1220751805 +231666,288,Tommy Lee Jones,1220751802 +231666,296,Quentin Tarantino,1164269206 +231666,296,Samuel L. Jackson,1164269205 +231666,480,action,1254602282 +231666,480,adventure,1254602267 +231666,480,dinosaurs,1254602264 +231666,480,Steven Spielberg,1254602260 +231666,493,gangs,1225679796 +231666,493,Samuel L. Jackson,1225679751 +231666,527,Holocaust,1163118840 +231666,527,World War II,1163118859 +231666,589,Arnold Schwarzenegger,1260484314 +231666,593,psychology,1258913392 +231666,903,Alfred Hitchcock,1286929379 +231666,903,James Stewart,1286929392 +231666,903,twist ending,1286929383 +231666,904,Alfred Hitchcock,1224506385 +231666,904,James Stewart,1224506389 +231666,1061,Brad Pitt,1188799350 +231666,1061,Robert De Niro,1188799353 +231666,1079,dark comedy,1274836445 +231666,1079,Jamie Lee Curtis,1274836459 +231666,1079,John Cleese,1274836461 +231666,1079,Kevin Kline,1274836463 +231666,1079,Michael Palin,1274836486 +231666,1080,Monty Python,1163444317 +231666,1080,religion,1163444315 +231666,1089,Quentin Tarantino,1164269196 +231666,1090,Willem Dafoe,1209704493 +231666,1136,Monty Python,1163444308 +231666,1193,Jack Nicholson,1164216387 +231666,1193,mental illness,1164216380 +231666,1193,Oscar (Best Picture),1164216379 +231666,1197,funny,1163448735 +231666,1213,Martin Scorsese,1181661560 +231666,1228,domestic violence,1227943491 +231666,1228,Martin Scorsese,1227943487 +231666,1228,Robert De Niro,1227943485 +231666,1246,boarding school,1254794845 +231666,1246,philosophy,1254794839 +231666,1246,Robin Williams,1254794834 +231666,1246,suicide,1254794851 +231666,1248,Charlton Heston,1228674031 +231666,1248,Orson Welles,1228674019 +231666,1258,Jack Nicholson,1164216352 +231666,1258,Stanley Kubrick,1164216348 +231666,1265,Bill Murray,1241385646 +231666,1278,Gene Wilder,1164228581 +231666,1278,Mel Brooks,1168917149 +231666,1391,Natalie Portman,1269469667 +231666,1391,stupid,1269469658 +231666,1527,Bruce Willis,1166770302 +231666,1544,shallow plot,1254610693 +231666,1544,Vince Vaughn,1254610683 +231666,1617,Guy Pearce,1299095872 +231666,1617,Kevin Spacey,1299095864 +231666,1617,Russell Crowe,1299095867 +231666,1639,Kevin Smith,1163443774 +231666,1639,sexuality,1163443786 +231666,1639,view askew,1163443776 +231666,1917,Bruce Willis,1163739321 +231666,1921,mathematics,1164269107 +231666,1961,autism,1228673880 +231666,1961,Dustin Hoffman,1228673865 +231666,1961,Tom Cruise,1228673883 +231666,2028,Steven Spielberg,1181098771 +231666,2105,computers,1271221921 +231666,2105,cyberpunk,1271221919 +231666,2105,dystopia,1271221924 +231666,2105,virtual reality,1271221917 +231666,2134,Bill Paxton,1268637870 +231666,2134,John Hughes,1268637856 +231666,2134,Robert Downey Jr.,1268637853 +231666,2296,Chris Kattan,1167861022 +231666,2296,Saturday Night Live,1167860985 +231666,2296,Will Ferrell,1167861013 +231666,2324,foreign,1176438561 +231666,2324,Holocaust,1173595524 +231666,2324,Italian,1176438564 +231666,2324,World War II,1176438567 +231666,2325,satire,1163443656 +231666,2329,Edward Norton,1166770360 +231666,2329,racism,1166770362 +231666,2490,Lucy Liu,1274839725 +231666,2490,Mel Gibson,1274839722 +231666,2490,revenge,1274839730 +231666,2542,dark comedy,1254794912 +231666,2542,Jason Statham,1254794907 +231666,2542,organized crime,1254794910 +231666,2700,Trey Parker,1163443707 +231666,2712,Leelee Sobieski,1270776168 +231666,2712,Nicole Kidman,1270776151 +231666,2712,Stanley Kubrick,1270776148 +231666,2723,superhero,1167861133 +231666,2762,bruce willis,1163118897 +231666,2788,Monty Python,1163444253 +231666,2788,MontyPython,1163444248 +231666,2797,Tom Hanks,1227675239 +231666,2841,Kevin Bacon,1269918132 +231666,2841,suspense,1269918138 +231666,2841,thriller,1269918135 +231666,2858,Kevin Spacey,1164269214 +231666,2858,Nudity (Topless - Notable),1164269216 +231666,2997,john cusack,1187016090 +231666,2997,John Malkovich,1187016105 +231666,3008,end of the world,1270619384 +231666,3008,multiple storylines,1270619378 +231666,3008,Sandra Oh,1270619380 +231666,3032,Charlton Heston,1280105183 +231666,3032,Post apocalyptic,1280105201 +231666,3032,post-apocalyptic,1280105199 +231666,3160,multiple storylines,1223785369 +231666,3160,Tom Cruise,1223785366 +231666,3275,vigilante,1166770338 +231666,3275,vigilantism,1163443902 +231666,3300,Vin Diesel,1166769700 +231666,3386,conspiracy theory,1254683127 +231666,3386,Kevin Bacon,1254683136 +231666,3386,Oliver Stone,1254683132 +231666,3386,Tommy Lee Jones,1254683118 +231666,3421,college,1164228539 +231666,3421,John Belushi,1164228540 +231666,3468,pool,1163974700 +231666,3476,Nudity (Topless),1163974663 +231666,3556,Kirsten Dunst,1268637794 +231666,3556,psychology,1268637796 +231666,3556,suicide,1268637802 +231666,3671,Mel Brooks,1164228504 +231666,3671,obscenely funny,1164228525 +231666,3702,post-apocalyptic,1254693823 +231666,3760,John Landis,1240184522 +231666,3760,Nudity (Topless),1240184510 +231666,3826,Nudity (Topless - Notable),1168916690 +231666,3949,depressing,1163118655 +231666,3949,drugs,1163118655 +231666,4011,Brad Pitt,1163443968 +231666,4011,comedy,1163443962 +231666,4148,Anthony Hopkins,1268802983 +231666,4148,Hannibal Lecter,1268802988 +231666,4226,memory,1163657126 +231666,4226,mystery,1163657127 +231666,4226,nonlinear,1163657124 +231666,4293,John Candy,1280024905 +231666,4621,Bruce Willis,1167861118 +231666,4621,John Travolta,1167861117 +231666,4734,cameos,1163443936 +231666,4734,jay and silent bob,1163443925 +231666,4734,Kevin Smith,1163443926 +231666,4734,view askew,1163443932 +231666,4881,Billy Bob Thornton,1301239864 +231666,4881,black and white,1301239857 +231666,4881,Scarlett Johansson,1301239858 +231666,4900,Zach Galifianakis,1299255746 +231666,5064,revenge,1188535001 +231666,5108,Denzel Washington,1267162621 +231666,5108,hospital,1267162649 +231666,5108,public healthcare,1267162639 +231666,5151,Nudity (Topless),1223260829 +231666,5265,Black Comedy,1299158724 +231666,5265,Danny DeVito,1299158721 +231666,5265,Edward Norton,1299158710 +231666,5265,Robin Williams,1299158711 +231666,5294,religion,1179503579 +231666,5388,Al Pacino,1294688087 +231666,5388,Christopher Nolan,1294688099 +231666,5388,Hilary Swank,1294688103 +231666,5388,Robin Williams,1294688090 +231666,5400,Ben Affleck,1180500277 +231666,5400,Morgan Freeman,1180500275 +231666,5609,Lucy Liu,1163739463 +231666,5669,documentary,1163974733 +231666,5669,Michael Moore,1163974732 +231666,5902,Charlie Kaufman,1163974723 +231666,5902,very good,1163974724 +231666,5956,Leonardo DiCaprio,1294946644 +231666,5956,Martin Scorsese,1294946646 +231666,6264,Aaron Eckhart,1273730822 +231666,6264,so bad it's funny,1273730824 +231666,6502,infection,1242698780 +231666,6502,post-apocalyptic,1242698769 +231666,6502,zombies,1242698766 +231666,6807,Monty Python,1163444235 +231666,6807,Nudity (Topless - Brief),1163444234 +231666,6807,own,1168917199 +231666,6808,Clint Eastwood,1222135587 +231666,6808,World War II,1222135588 +231666,6947,Russell Crowe,1270589775 +231666,6947,seafaring,1270589793 +231666,6947,war,1270589795 +231666,6957,Billy Bob Thornton,1164228697 +231666,7236,post-apocalyptic,1249843956 +231666,7360,Nudity (Topless - Brief),1163444018 +231666,7360,Richard Cheese,1163444014 +231666,7361,Charlie Kaufman,1176438608 +231666,7991,Sylvester Stallone,1298325261 +231666,8225,Patricia Tallman,1269831105 +231666,8368,harry potter,1163449399 +231666,8874,england,1163443831 +231666,8874,Simon Pegg,1201567242 +231666,8874,zombies,1163443826 +231666,8917,Trey Parker,1163443758 +231666,8947,not remotely scary,1180556970 +231666,8947,Sarah Michelle Gellar,1180556989 +231666,8949,mid-life crisis,1180417998 +231666,8949,Nudity (Topless),1180418003 +231666,8949,Paul Giamatti,1180418034 +231666,8950,Christian Bale,1223770375 +231666,8981,Clive Owen,1187144738 +231666,8981,divorce,1187144720 +231666,8981,Jude Law,1187144740 +231666,8981,Julia Roberts,1187144734 +231666,8981,Natalie Portman,1187144731 +231666,8981,Nudity (Rear),1187144742 +231666,8985,Jessica Biel,1180556948 +231666,26693,Tim Curry,1271879204 +231666,30810,Bill Murray,1241820693 +231666,30810,Nudity (Topless),1241820696 +231666,30894,Michael Keaton,1180557041 +231666,31150,Nazis,1269983783 +231666,32587,Bruce Willis,1163448674 +231666,32587,Clive Owen,1166770322 +231666,32587,Frank Miller,1166770324 +231666,33166,Oscar (Best Picture),1164346600 +231666,33166,racism,1164346598 +231666,33794,prequel,1163448631 +231666,34523,relationships,1254794999 +231666,34523,suburbia,1254794995 +231666,34523,suicide,1254794991 +231666,37380,The Rock,1180557264 +231666,37380,video game adaptation,1180557269 +231666,37830,cgi,1164135866 +231666,37830,final fantasy,1164135887 +231666,37830,videogame,1164135867 +231666,39446,all about blood and gore,1163739277 +231666,39446,needles,1163739281 +231666,39715,Nudity (Rear),1180557208 +231666,39715,Nudity (Topless),1180557206 +231666,40412,Paddy Considine,1268620681 +231666,40412,revenge,1268620697 +231666,40732,cave,1166769645 +231666,40732,overrated,1166769648 +231666,40959,Billy Bob Thornton,1283830950 +231666,40959,black comedy,1283830943 +231666,40959,John Cusack,1283830946 +231666,41997,based on a true story,1266909115 +231666,42002,hilarious,1164135815 +231666,42002,mel brooks,1164135832 +231666,42002,will ferrel,1164135841 +231666,42725,cannabis,1249784304 +231666,42725,drugs,1249784307 +231666,42725,video game testers,1249784300 +231666,43932,this is just shit..haha,1167861071 +231666,44195,big tobacco,1187150624 +231666,44195,cigarettes,1187150622 +231666,44195,Lobbyism,1187150631 +231666,45081,video game,1163444074 +231666,45431,Bruce Willis,1173595247 +231666,45728,Kevin Smith,1164944374 +231666,45728,view askew,1164944373 +231666,46322,1900s,1197137151 +231666,46322,Jet Li,1197137155 +231666,46578,beauty pageant,1163444285 +231666,46723,Brad Pitt,1271999363 +231666,46723,multiple storylines,1271999387 +231666,46723,Nudity (Full Frontal),1271999356 +231666,46723,R,1271999380 +231666,46976,PG-13,1166165247 +231666,47261,radio,1176438111 +231666,47518,Lewis Black,1180935503 +231666,47610,Edward Norton,1168916809 +231666,47610,Jessica Biel,1168916823 +231666,48043,Hugh Jackman,1274836366 +231666,48043,immortality,1274836368 +231666,48142,1940's,1163739564 +231666,48142,Nudity (Rear),1163739565 +231666,48142,Nudity (Topless),1163739566 +231666,48516,police corruption,1180326025 +231666,48696,Nudity (Topless - Notable),1266131427 +231666,48696,reflective,1266131431 +231666,48774,Clive Owen,1180588320 +231666,48774,Michael Caine,1180588329 +231666,48780,Hugh Jackman,1168916894 +231666,48982,Dreamworks,1164135774 +231666,49272,007,1163834665 +231666,49272,James Bond,1163834663 +231666,49272,product placement,1164595444 +231666,49278,Denzel Washington,1178348628 +231666,49278,time travel,1178348626 +231666,49284,Morgan Freeman,1187212078 +231666,49347,Bruce Willis,1177870466 +231666,49347,dramatic irony,1177870449 +231666,49961,loneliness,1294694132 +231666,51086,Jim Carrey,1180303820 +231666,51091,Nudity (Topless),1188613462 +231666,51091,Samuel L. Jackson,1188613456 +231666,51255,Nick Frost,1201567218 +231666,51255,Simon Pegg,1187233182 +231666,51412,jessica biel,1191738486 +231666,51662,Nudity (Topless),1174954268 +231666,52245,Jon Heder,1192332389 +231666,52245,Will Ferrell,1192332391 +231666,53000,post-apocalyptic,1227641380 +231666,53000,sequel,1227641384 +231666,53000,zombies,1227641382 +231666,54001,alan rickman,1185319903 +231666,54775,Jason Statham,1271186145 +231666,54775,Jet Li,1271186147 +231666,54997,Christian Bale,1248267778 +231666,54997,Russell Crowe,1248267775 +231666,55241,Seann William Scott,1252041321 +231666,55247,based on a book,1226027731 +231666,55247,based on a true story,1226027729 +231666,55247,Nudity (Topless - Notable),1226027656 +231666,55363,Brad Pitt,1220672321 +231666,55765,Denzel Washington,1196623858 +231666,55765,Nudity (Topless - Brief),1196623842 +231666,55765,Russell Crowe,1196623844 +231666,55820,ambiguous ending,1207514225 +231666,56174,religion,1197865996 +231666,56174,vampire,1197865980 +231666,56782,father-son relationship,1214172928 +231666,56782,religion,1214172925 +231666,56788,cold war,1226890129 +231666,56788,drugs,1226890091 +231666,56788,Julia Roberts,1226890106 +231666,56788,Nudity (Topless),1226890114 +231666,56788,politics,1226890095 +231666,56788,Tom Hanks,1226890093 +231666,56801,predalien,1199662421 +231666,56801,what AVP should have been,1199662410 +231666,57528,Sylvester Stallone,1201427676 +231666,59315,Marvel,1212545000 +231666,59387,addiction,1250652557 +231666,59387,story-in-a-story,1250652549 +231666,59387,storytelling,1250652543 +231666,59387,suicide attempt,1250652540 +231666,61248,Jason Statham,1298325265 +231666,62113,Gillian Anderson,1249759675 +231666,62113,Simon Pegg,1249759679 +231666,63113,007 (series),1228156320 +231666,64231,Ray Stevenson,1241810200 +231666,64231,Wayne Knight,1241810170 +231666,64614,Clint Eastwood,1253251608 +231666,64614,revenge,1253251683 +231666,64614,sacrifice,1253251651 +231666,64620,Kevin Bacon,1273130610 +231666,64620,Nixon,1273130617 +231666,64620,true story,1273130615 +231666,64957,Brad Pitt,1249960649 +231666,64957,David Fincher,1249960652 +231666,64969,Jim carrey,1241665871 +231666,64969,Zooey Deschanel,1241665869 +231666,65868,addiction,1268259024 +231666,65868,cosmetic surgery,1268259027 +231666,65868,gothic,1268259030 +231666,65868,Paris Hilton,1269618535 +231666,65868,rock opera,1268259032 +231666,66198,Clive Owen,1238721942 +231666,68205,Amy Smart,1267154414 +231666,68205,fast paced,1267154430 +231666,68205,Jason Statham,1267154404 +231666,68358,alternate reality,1259879823 +231666,68358,Leonard Nimoy,1259879923 +231666,68358,Simon Pegg,1259879911 +231666,68358,space,1259879828 +231666,68358,time travel,1259879826 +231666,69122,Drinking,1271914696 +231666,69122,Las Vegas,1271914698 +231666,69122,Nudity (Topless),1271914694 +231666,69606,Matthew McConaughey,1258913433 +231666,69606,Michael Douglas,1258913481 +231666,69640,Johnny Depp,1250465708 +231666,69640,romance,1250465696 +231666,69844,Alan Rickman,1250465614 +231666,69844,Comedy,1250465622 +231666,70032,corporate America,1286991057 +231666,70032,dark comedy,1286991009 +231666,70032,Zach Galifianakis,1286991048 +231666,70286,aliens,1250465535 +231666,70286,genetics,1250465542 +231666,70286,justice,1250465548 +231666,70286,redemption,1250465531 +231666,71211,Matt Damon,1273110090 +231666,71211,mental illness,1273110091 +231666,71211,price fixing,1273110093 +231666,71248,Ben Affleck,1287008704 +231666,71248,Mila Kunis,1287008711 +231666,71254,action,1271126006 +231666,71254,alternate reality,1271126023 +231666,71254,hackers,1271126021 +231666,71254,Nudity (Topless - Notable),1271126016 +231666,71254,prison,1271126010 +231666,71254,video game,1271126009 +231666,71379,Boring,1258913532 +231666,71379,low budget,1258913514 +231666,71379,slow,1258913510 +231666,71429,Robin Williams,1268296183 +231666,71429,suicide,1268296180 +231666,71520,Jennifer Garner,1271353167 +231666,71520,religion,1271353164 +231666,71520,Ricky Gervais,1271353173 +231666,71530,alternate reality,1268200665 +231666,71530,Bruce Willis,1268200639 +231666,71530,robots,1268200641 +231666,71530,sci-fi,1268200644 +231666,71535,Bill Murray,1269545642 +231666,71535,Woody Harrelson,1269545639 +231666,71838,antihero,1271105457 +231666,71838,violent,1271105465 +231666,74795,CIA Agent,1287003332 +231666,74795,Matt Damon,1287003333 +231666,74851,John Travolta,1283998763 +231666,76060,broken lizard,1278382522 +231666,76077,Chevy Chase,1280065874 +231666,77364,Based on a comic book,1283824993 +231666,77561,Robert Downey Jr.,1280025327 +231666,77561,Samuel L. Jackson,1280025325 +231666,77561,Scarlett Johansson,1280025329 +231666,77667,Val Kilmer,1283998840 +231666,79132,alternate reality,1282097942 +231666,79132,complicated,1282097946 +231666,79132,dream within a dream,1282097954 +231666,79132,dreams,1282097951 +231666,79132,Leonardo DiCaprio,1282097934 +231666,79132,mindfuck,1282097962 +231666,79695,Jason Statham,1282098057 +231666,79695,Mickey Rourke,1282098057 +231666,79695,Sylvester Stallone,1282098057 +231666,80463,based on true story,1288979563 +231666,80463,computers,1288979550 +231666,80463,dark comedy,1288979561 +231666,80463,David Fincher,1288980395 +231666,80463,facebook,1288979579 +231666,80463,friendship,1288979584 +231666,80463,Jesse Eisenberg,1288979560 +231666,80463,loneliness,1288979553 +231666,80463,social network,1288979566 +231666,80463,soundtrack,1288979621 +231666,80463,true story,1288979569 +231666,80693,based on a book,1299118879 +231666,80693,depression,1299118893 +231666,80693,Lauren Graham,1299118924 +231666,80693,mental illness,1299118877 +231666,80693,Zach Galifianakis,1299118881 +231666,81537,drug use,1298584074 +231666,81537,Pink Floyd,1298584073 +231666,81537,Robert Downey Jr.,1298584072 +231666,81537,Zach Galifianakis,1298584071 +231695,260,classic sci-fi,1435698925 +231695,260,space opera,1435698917 +231695,115617,comedy,1435699460 +231695,115617,disney,1435699460 +231695,115617,scifi,1435699460 +231708,32,original,1368645653 +231708,318,own,1175973219 +231708,1089,original,1368645654 +231708,1199,distopia,1175973134 +231708,1199,own,1175973134 +231708,1206,MNM,1175640624 +231708,1206,without Martha,1175973047 +231708,1208,MNM,1175640608 +231708,1653,own,1175973305 +231708,1682,own,1175973269 +231708,1921,MNM,1175640735 +231708,1921,without Martha,1175973031 +231708,2291,original,1368645653 +231708,2329,MNM,1175972927 +231708,2329,without Martha,1175973076 +231708,2571,own,1175973334 +231708,2686,MNM,1175640456 +231708,2686,without Martha,1194280045 +231708,2858,own,1175973356 +231708,2959,own,1175973346 +231708,3408,without Martha,1175972990 +231708,4014,own,1175973324 +231708,4235,MNM,1177255520 +231708,4873,MNM,1175640754 +231708,4873,without Martha,1175973024 +231708,4878,original,1368645654 +231708,4973,own,1175973256 +231708,5673,MNM,1175640837 +231708,6365,own,1175973379 +231708,6934,own,1175973377 +231708,7361,own,1175973286 +231708,8366,own,1175973366 +231708,8582,MNM,1175640581 +231708,8874,MNM,1177196091 +231708,9018,MNM,1177194125 +231708,27266,MNM,1175640693 +231708,27266,without Martha,1175973040 +231708,27878,MNM,1175640437 +231708,27904,MNM,1175640829 +231708,27904,without Martha,1175972979 +231708,36276,MNM,1175640709 +231708,37240,MNM,1175640419 +231708,48043,MNM,1177195686 +231708,48774,distopia,1175972903 +231708,48774,food for thought,1175972903 +231708,63082,cinematography,1241499463 +231708,63082,Oscar (Best Picture),1241499450 +231708,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1241499438 +231714,1289,trilogy:Qatsi,1230402499 +231714,1682,dark comedy,1242932339 +231714,1682,dreamlike,1242932353 +231714,1682,social commentary,1242932346 +231714,1747,comedy,1242931270 +231714,1747,satire,1242931288 +231714,3210,highschool,1137283825 +231714,3210,romance,1137283825 +231714,3210,teen,1137283825 +231714,3257,kevin costner,1261941298 +231714,3257,whitney houston,1261941290 +231714,4034,drugs crime cops mexico spanish,1137880106 +231714,5502,aliens,1138133881 +231714,5684,no dialogue,1230402475 +231714,5684,trilogy,1230402475 +231714,5684,trilogy:Qatsi,1230402475 +231714,7941,actors and acting,1274605246 +231714,7941,cinematography,1274605246 +231714,7941,Ingmar Bergman,1274848459 +231714,9018,al-jazeera,1172476652 +231714,41285,Woody Allen,1157472751 +231714,74458,action,1267310897 +231714,74458,Leonardo DiCaprio,1267310899 +231714,74458,plot twist,1267310899 +231714,74458,psychological,1267310901 +231714,74458,running,1267310897 +231714,74458,too long,1267310897 +231725,32,Futuristmovies.com,1137292482 +231725,173,Futuristmovies.com,1137293173 +231725,196,Futuristmovies.com,1137293428 +231725,198,Futuristmovies.com,1137293176 +231725,208,Futuristmovies.com,1137293220 +231725,260,Futuristmovies.com,1137292275 +231725,292,Futuristmovies.com,1137292470 +231725,316,Futuristmovies.com,1137292478 +231725,329,Futuristmovies.com,1137293208 +231725,338,Futuristmovies.com,1137293215 +231725,379,Futuristmovies.com,1137293211 +231725,442,Futuristmovies.com,1137292495 +231725,480,Futuristmovies.com,1137292501 +231725,504,Futuristmovies.com,1137293193 +231725,541,Futuristmovies.com,1137292259 +231725,589,Futuristmovies.com,1137292280 +231725,674,Futuristmovies.com,1137293440 +231725,680,Futuristmovies.com,1137293230 +231725,737,Futuristmovies.com,1137293443 +231725,741,Futuristmovies.com,1137292531 +231725,748,Futuristmovies.com,1137293233 +231725,780,Futuristmovies.com,1137292535 +231725,849,Futuristmovies.com,1137293449 +231725,880,Futuristmovies.com,1137293248 +231725,924,Futuristmovies.com,1137292301 +231725,1077,Futuristmovies.com,1137292546 +231725,1097,Futuristmovies.com,1137293242 +231725,1127,Futuristmovies.com,1137292559 +231725,1129,Futuristmovies.com,1137292571 +231725,1196,Futuristmovies.com,1137292402 +231725,1200,Futuristmovies.com,1137292304 +231725,1206,Futuristmovies.com,1137292564 +231725,1210,Futuristmovies.com,1137292580 +231725,1214,Futuristmovies.com,1137896188 +231725,1240,Futuristmovies.com,1137292614 +231725,1253,Futuristmovies.com,1137292594 +231725,1270,Futuristmovies.com,1137292590 +231725,1274,Futuristmovies.com,1137293437 +231725,1301,Futuristmovies.com,1137292601 +231725,1306,Futuristmovies.com,1137293253 +231725,1356,Futuristmovies.com,1137292606 +231725,1374,Futuristmovies.com,1137292611 +231725,1376,Futuristmovies.com,1137292651 +231725,1527,Futuristmovies.com,1137292631 +231725,1584,Futuristmovies.com,1137292341 +231725,1616,Futuristmovies.com,1137292642 +231725,1653,Futuristmovies.com,1137292345 +231725,1676,Futuristmovies.com,1137292647 +231725,1748,Futuristmovies.com,1137292628 +231725,1779,Futuristmovies.com,1137293273 +231725,1831,Futuristmovies.com,1137293415 +231725,1876,Futuristmovies.com,1137292665 +231725,1917,Futuristmovies.com,1147477348 +231725,2009,Futuristmovies.com,1138237551 +231725,2010,Futuristmovies.com,1137292685 +231725,2011,Futuristmovies.com,1137293092 +231725,2021,Futuristmovies.com,1137292669 +231725,2105,Futuristmovies.com,1137293276 +231725,2117,Futuristmovies.com,1137292691 +231725,2288,Futuristmovies.com,1137292725 +231725,2311,Futuristmovies.com,1137292703 +231725,2322,Futuristmovies.com,1137293457 +231725,2346,Futuristmovies.com,1137292722 +231725,2393,Futuristmovies.com,1137292761 +231725,2407,Futuristmovies.com,1137292737 +231725,2527,Futuristmovies.com,1137292772 +231725,2528,Futuristmovies.com,1137292753 +231725,2529,Futuristmovies.com,1137292758 +231725,2532,Futuristmovies.com,1137293292 +231725,2571,Futuristmovies.com,1137292352 +231725,2600,Futuristmovies.com,1137293301 +231725,2628,Futuristmovies.com,1137292764 +231725,2662,Futuristmovies.com,1137292769 +231725,2722,Futuristmovies.com,1137293297 +231725,2808,Futuristmovies.com,1137293460 +231725,2916,Futuristmovies.com,1137292810 +231725,2985,Futuristmovies.com,1137293307 +231725,3032,Futuristmovies.com,1137293326 +231725,3156,Futuristmovies.com,1137292826 +231725,3204,Futuristmovies.com,1137292860 +231725,3300,Futuristmovies.com,1137293329 +231725,3354,Futuristmovies.com,1137293322 +231725,3471,Futuristmovies.com,1137292338 +231725,3503,Futuristmovies.com,1137292872 +231725,3527,Futuristmovies.com,1137293333 +231725,3593,Futuristmovies.com,1137293446 +231725,3634,Futuristmovies.com,1137292898 +231725,3698,Futuristmovies.com,1137293336 +231725,3699,Futuristmovies.com,1137292429 +231725,3702,Futuristmovies.com,1138237398 +231725,3703,Futuristmovies.com,1137896224 +231725,3704,Futuristmovies.com,1137293353 +231725,3745,Futuristmovies.com,1137293419 +231725,3793,Futuristmovies.com,1137292906 +231725,3802,Futuristmovies.com,1137293347 +231725,3959,Futuristmovies.com,1137292902 +231725,3986,Futuristmovies.com,1137292884 +231725,4166,Futuristmovies.com,1137292932 +231725,4370,Futuristmovies.com,1137292916 +231725,4443,Futuristmovies.com,1137292927 +231725,4643,Futuristmovies.com,1137293357 +231725,4975,Futuristmovies.com,1137292967 +231725,5046,Futuristmovies.com,1137293381 +231725,5171,Futuristmovies.com,1137292964 +231725,5349,Futuristmovies.com,1137292957 +231725,5378,Futuristmovies.com,1137292961 +231725,5410,Futuristmovies.com,1137293146 +231725,5445,Futuristmovies.com,1137292422 +231725,5502,Futuristmovies.com,1137293006 +231725,5522,Futuristmovies.com,1137293124 +231725,5881,Futuristmovies.com,1137293012 +231725,5903,Futuristmovies.com,1137293374 +231725,5944,Futuristmovies.com,1137293390 +231725,6303,Futuristmovies.com,1137293369 +231725,6305,Futuristmovies.com,1137293023 +231725,6333,Futuristmovies.com,1137293043 +231725,6365,Futuristmovies.com,1137293032 +231725,6502,Futuristmovies.com,1137293110 +231725,6537,Futuristmovies.com,1137293038 +231725,6645,Futuristmovies.com,1137293403 +231725,6678,Futuristmovies.com,1138248156 +231725,6934,Futuristmovies.com,1137293118 +231725,6959,Futuristmovies.com,1137293407 +231725,6979,Futuristmovies.com,1137293083 +231725,7128,Futuristmovies.com,1138237250 +231725,7361,Futuristmovies.com,1137292386 +231725,7560,Futuristmovies.com,1138237055 +231725,8361,Futuristmovies.com,1137293053 +231725,8373,Futuristmovies.com,1137293401 +231725,8644,Futuristmovies.com,1137293058 +231725,8914,Futuristmovies.com,1137293070 +231725,27816,Mormon,1179888050 +231725,33493,Futuristmovies.com,1137292448 +231725,34048,Futuristmovies.com,1137292453 +231725,34319,Futuristmovies.com,1137293062 +231725,34405,Futuristmovies.com,1137896146 +231725,44191,Futuristmovies.com,1145071493 +231745,527,"moving, shocking",1433673640 +231745,5989,fun but unrealistic,1433673673 +231779,260,classic,1435686802 +231779,260,sci-fi,1435686793 +231779,260,Star Wars,1435686809 +231794,260,haven't seen it,1434080376 +231822,260,sci-fi,1438829805 +231822,260,space adventure,1438829813 +231830,70,campy,1419915462 +231830,70,Quentin Tarantino,1419915449 +231830,70,so bad it's good,1419915459 +231830,102,one of the worst ever,1419913356 +231830,102,stupid,1419913340 +231830,296,crime,1420243223 +231830,296,drugs,1420243223 +231830,296,retro,1420243223 +231830,750,anti-war,1419912153 +231830,750,based on a book,1419912115 +231830,750,black comedy,1419912101 +231830,750,classic,1419912129 +231830,750,cold war,1419912125 +231830,750,dark comedy,1419912098 +231830,750,nuclear war,1419912123 +231830,750,Quirky,1419912109 +231830,750,satire,1419912137 +231830,750,satirical,1419912119 +231830,750,Stanley Kubrick,1419912093 +231830,4878,cult film,1419914865 +231830,4878,original,1419914876 +231830,4878,weird,1419914861 +231830,7460,Bill Murray,1419913878 +231830,47200,action packed,1419911838 +231830,47200,adrenaline,1419911848 +231830,47200,silly,1419911844 +231830,47200,videogame like,1419911856 +231830,61240,Beautiful,1419914696 +231830,61240,bittersweet,1419914692 +231830,61240,bullying,1419914701 +231830,61240,horror,1419914713 +231830,61240,love story,1419914717 +231830,61240,slow,1419914705 +231830,61240,swedish,1419914688 +231830,68205,stupid,1419928640 +231830,68205,unrealistic,1419928647 +231830,104272,animal rights,1419913044 +231830,104272,memorable,1419913056 +231830,104272,sad,1419913073 +231868,356,epic,1436109882 +231868,356,historical fiction,1436109882 +231868,356,unwitting hero,1436109882 +231872,95223,adventure,1425598232 +231872,95223,diamonds,1425598232 +231872,95223,thief,1425598232 +231872,120290,abortion,1420305973 +231872,120290,friends,1420305973 +231872,120290,love,1420305973 +231872,120290,prostitution,1420305973 +231872,120290,school,1420305973 +231872,120290,teacher,1420305973 +231872,120290,tragedy,1420305973 +231884,260,sci-fi,1430314719 +231884,260,space,1430314732 +231897,318,prison escape,1449965848 +231897,648,espionage,1449966142 +231897,648,plot twists,1449966148 +231897,4963,heist,1449966043 +231897,6059,Al Pacino,1449966183 +231897,6059,Colin Farrell,1449966189 +231897,6059,spying,1449966185 +231897,58803,mathematics,1449966021 +231897,85414,interesting,1450413569 +231897,85414,parallel universe,1450413556 +231897,85414,sci-fi,1450413571 +231897,85414,science fiction,1450413562 +231897,85414,suspense,1450413567 +231897,85414,time loop,1450413560 +231897,85414,time travel,1450413559 +231897,90405,future,1450413443 +231897,90405,justin timberlake,1450413420 +231897,90405,sci-fi,1450413426 +231897,90405,time,1450413430 +231897,95875,Colin Farrell,1450413535 +231897,95875,future,1450413525 +231897,95875,memory,1450413516 +231897,95875,Sci-fi,1450413519 +231897,95875,science fiction,1450413522 +231897,111759,sci-fi,1449965408 +231897,111759,science fiction,1449965414 +231897,111759,time travel,1449965410 +231897,132046,For children,1450413469 +231918,260,awful,1438344915 +231918,260,Boring,1438344923 +231918,260,Hated it,1438344920 +231918,129354,amazing,1438345267 +231918,129354,Fantastic ending,1438345283 +231919,90576,comedy,1436501803 +231919,90576,relationships,1436501803 +231919,90576,romance,1436501803 +231919,114762,comedy,1421453851 +231919,114762,romance,1421453851 +231919,114762,unique romantic comedy,1421453851 +231938,260,great story,1440437636 +231938,260,special effects,1440437630 +231939,170,anjelina,1224409285 +231939,170,computers,1243758583 +231939,224,fantasy,1243758596 +231939,224,marlon brando,1224409312 +231939,296,dark comedy,1243758618 +231939,296,Quentin Tarantino,1224409126 +231939,296,samuel jackson,1224409258 +231939,296,travolta,1224409258 +231939,296,uma therman,1224409258 +231939,1717,bullshit,1224409362 +231939,26842,Jet Li,1243758615 +231939,59615,good,1224430590 +231953,149406,comedy,1454050811 +231953,149406,heroic,1454050850 +231953,149406,kung fu,1454050835 +231996,318,drama,1439670103 +231996,318,nice,1439670069 +231996,140783,good,1439669769 +232013,4027,coen brothers,1449334692 +232013,4027,great soundtrack,1449334710 +232038,750,black comedy,1443582991 +232038,750,dark comedy,1443582993 +232038,750,Quirky,1443583000 +232038,750,satire,1443582996 +232038,750,satirical,1443583002 +232038,750,Stanley Kubrick,1443582989 +232038,2858,black comedy,1443582769 +232038,2858,dark comedy,1443582746 +232038,2858,midlife crisis,1443582779 +232038,2858,powerful ending,1443582759 +232038,2858,social commentary,1443582777 +232038,2858,thought-provoking,1443582748 +232038,3949,psychological,1443582803 +232038,3949,social commentary,1443582793 +232038,79357,butterfly effect,1443582855 +232038,79357,Choices,1443582899 +232038,79357,confusing,1443582844 +232038,79357,nonlinear,1443582837 +232038,79357,plot,1443582871 +232038,79357,soundtrack,1443582853 +232038,79357,storytelling,1443582861 +232038,79357,surreal,1443582838 +232038,79357,thought provoking,1443582849 +232038,115569,Character Development,1443582964 +232038,115569,satire,1443582941 +232104,1566,Greek mythology,1243816119 +232104,1566,Myth,1243816124 +232104,6754,heroine in tight suit,1234981331 +232110,260,sci-fi,1439802853 +232110,260,space,1439802865 +232110,92259,based on a true story,1440170589 +232120,260,space adventure,1434080789 +232120,260,visionary,1434080777 +232121,260,classic,1439818005 +232121,260,sci-fi,1439817989 +232121,30810,Bill Murray,1439818740 +232121,30810,Owen Wilson,1439818750 +232121,30810,Wes Anderson,1439818736 +232121,104879,absorbing,1439818929 +232121,104879,Denis Villeneuve,1439818926 +232121,104879,thriller,1439818917 +232154,3324,Black Comedy,1161577557 +232154,34532,better than expected,1150693582 +232154,38061,Film Noir,1165590857 +232154,44665,Film Noir,1165590818 +232154,57353,Demi Moore,1231184913 +232154,57353,Michael Caine,1231184913 +232162,260,starwars,1433993082 +232167,260,classic,1442140684 +232167,1291,classic,1442140665 +232176,87222,kung fu,1452956044 +232176,120138,religious intolerance,1450451116 +232176,151459,akshay kumar,1453552683 +232176,151459,india,1453552696 +232213,260,"action, scifi",1441712873 +232213,260,space action,1441712897 +232229,27660,animation,1432992768 +232229,27660,anime,1432992765 +232229,27660,cyberpunk,1432992755 +232229,27660,sci-fi,1432992761 +232229,27660,several short films,1432992781 +232242,260,Science Fiction,1439770237 +232277,1213,great casting...,1138105710 +232277,1213,Great movie,1138105710 +232277,3511,Every wrestling fan will enjoy this one fo` sho`.,1139254134 +232277,4299,Movie is very good. I like the combination of history and modern times. Also,1137373546 +232277,4299,Shannyn Sossamon looks incredibly beautiful.,1137373546 +232277,4979,but reeeeeeaaaally boring movie.,1139254175 +232277,4979,I hate this movie. Great casting,1139254175 +232277,8641,HAHAHAHAHAHAHHAHA. Will Farrell fucking rules :),1140140221 +232277,31225,Rich what? Richmond! Really great movie!,1140203530 +232277,34129,Just for kids. M. Lawrence wasn`t even funny in this one.,1139254065 +232277,34437,Bill Murrey is awsome. This movie is B.E.A.utiful,1139333027 +232277,36529,Guns don`t kill people.,1141263071 +232277,42738,vampires... beautifull kate in tight outfit. who needs more? :D,1141252319 +232277,42738,werewolves,1141252272 +232289,99114,redemption,1420922591 +232289,99114,slavery,1420922591 +232289,99114,western,1420922591 +232344,6942,adultery,1375271534 +232344,6942,british,1375271713 +232344,6942,christmas,1375271571 +232344,6942,England,1375271685 +232344,6942,ensemble cast,1375271709 +232344,6942,family,1375271699 +232344,6942,funny,1375271702 +232344,6942,love,1375271490 +232344,6942,love story,1375271490 +232344,6942,romance,1375271505 +232419,2692,notable soundtrack,1180989814 +232427,47,crime,1137226599 +232427,47,investigation,1137226599 +232427,47,powerful ending,1140381665 +232427,47,serial killer,1137226584 +232427,47,super interesting,1137226951 +232427,47,thriller,1140381644 +232427,223,bad acting,1138953504 +232427,508,AIDs,1141717470 +232427,508,death,1141717551 +232427,508,gay,1141717475 +232427,508,law,1141717551 +232427,508,lawsuit,1141717551 +232427,527,Holocaust,1146738767 +232427,527,World War II,1146738820 +232427,527,WWII,1146738799 +232427,546,video game,1140302283 +232427,589,robots,1140381772 +232427,589,sci-fi,1140381774 +232427,593,cannibalism,1146196432 +232427,593,investigation,1146196478 +232427,593,serial killer,1146196430 +232427,1036,action,1140381795 +232427,1089,Quentin Tarantino,1146175994 +232427,1089,Robbery,1146176039 +232427,1089,Tarantino,1146175998 +232427,1625,Mystery,1141259633 +232427,1625,twist ending,1141259629 +232427,1625,unrealistic,1141259669 +232427,1653,distopia,1140381577 +232427,1653,powerful ending,1137226843 +232427,1653,sci-fi,1137226843 +232427,1653,super interesting,1137226843 +232427,1753,comedy,1146726182 +232427,1753,drugs,1146726180 +232427,1753,marijuana,1146726184 +232427,1753,stoner movie,1146726225 +232427,2060,hilarious,1137226524 +232427,2060,toilet humour,1137226703 +232427,2329,Edward Norton,1140381554 +232427,2329,powerful ending,1137226776 +232427,2329,race,1137226674 +232427,2329,super interesting,1137226674 +232427,2502,office,1140326074 +232427,2502,rebellion,1140326087 +232427,2502,workplace,1140326072 +232427,2571,fantasy,1140381585 +232427,2571,sci-fi,1137226898 +232427,2571,super interesting,1137226898 +232427,2699,spiders,1140302209 +232427,2762,ghosts,1140381672 +232427,2762,Haley Joel Osment,1140381679 +232427,2858,midlife crisis,1137226469 +232427,2858,powerful ending,1137226767 +232427,2858,suburbia,1140381485 +232427,2858,super interesting,1137226686 +232427,2959,Brad Pitt,1140381559 +232427,2959,Edward Norton,1140381560 +232427,2959,powerful ending,1137226804 +232427,2959,super interesting,1137226739 +232427,2959,violence,1140381520 +232427,3147,jail,1140381620 +232427,3147,Tom Hanks,1140381607 +232427,3178,boxing,1137316897 +232427,3408,investigation,1137226716 +232427,3408,oscar,1140381826 +232427,3408,scandal,1140381510 +232427,3448,Robin Williams,1139804481 +232427,3448,Vietnam,1139804472 +232427,3535,murder,1140415449 +232427,3535,psychology,1140415392 +232427,3535,psychopaths,1140415449 +232427,3535,serial killer,1140415449 +232427,3578,Rome,1140381573 +232427,3578,super interesting,1137226858 +232427,3752,framed,1151971036 +232427,3752,humor,1151971036 +232427,3752,split personality,1151971036 +232427,3752,wacky,1151971036 +232427,3793,comic book,1157858459 +232427,3793,super-hero,1157858457 +232427,3793,superhero,1157858455 +232427,3949,addiction,1172803346 +232427,3949,depressing,1172803346 +232427,3949,drugs,1172803346 +232427,3977,Shit,1140302199 +232427,3994,superhero,1140381685 +232427,3994,twist ending,1140381702 +232427,4022,stranded,1140381474 +232427,4226,confusing,1137226941 +232427,4226,investigation,1140381635 +232427,4226,mystery,1140381626 +232427,4226,super interesting,1137226941 +232427,5618,anime,1140302363 +232427,5686,super boring,1137227170 +232427,5954,drugs,1146874775 +232427,5954,New York,1146874775 +232427,5954,NYC,1146874775 +232427,5954,powerful ending,1146874775 +232427,6188,Funniest Movies,1153267375 +232427,6188,funny,1153267426 +232427,6188,very funny,1153267426 +232427,6333,comic book,1157858471 +232427,6333,sci-fi,1140381787 +232427,6333,super-hero,1157858469 +232427,6333,superhero,1140381788 +232427,6503,super boring,1137227451 +232427,6711,Japan,1140302168 +232427,6711,super boring,1137227060 +232427,6711,tokyo,1140302166 +232427,6857,anime,1140307587 +232427,7090,martial arts,1140302249 +232427,7318,boring,1140302141 +232427,7318,overrated,1137227079 +232427,7318,religion,1140302134 +232427,7360,zombie,1153290090 +232427,7360,Zombie Movie,1153290090 +232427,7360,Zombies,1153290090 +232427,7367,super boring,1137227052 +232427,7451,High School,1140302155 +232427,8376,overrated,1137227088 +232427,8376,super boring,1137227421 +232427,8860,L.A.,1140302404 +232427,8860,phone,1140302401 +232427,8949,wine,1140302367 +232427,8950,memory,1140415924 +232427,8950,powerful ending,1140415924 +232427,8950,psychology,1140415892 +232427,8950,twist ending,1140415924 +232427,9018,iraq,1140842231 +232427,9018,journalism,1140842127 +232427,9018,media,1140842231 +232427,27397,investigation,1146108482 +232427,27397,korea,1146108447 +232427,27397,War,1146108445 +232427,27875,death penalty,1151096828 +232427,27875,gangs,1151096828 +232427,27875,gangsters,1151096828 +232427,33154,business,1139213066 +232427,33154,corruption,1139213078 +232427,33154,money,1139213064 +232427,33660,boxing,1142067129 +232427,33660,great depression,1142067150 +232427,34072,penguins,1140302307 +232427,34072,survival,1140302316 +232427,34542,Animal movie,1140302326 +232427,36529,arms dealer,1152251805 +232427,36529,crime,1152251931 +232427,36529,guns,1152251807 +232427,36529,political,1152251803 +232427,36529,smuggling,1152251931 +232427,37240,Military,1160946552 +232427,37240,politics,1160946550 +232427,37384,workplace,1140334155 +232427,37733,Best of 2005,1138941492 +232427,37733,Mafia,1138941472 +232427,37733,violence,1138941472 +232427,37741,death penalty,1146615994 +232427,37741,Novelist,1146615996 +232427,37741,Truman Capote,1146615992 +232427,39183,gay,1140307504 +232427,39183,Love story,1141455367 +232427,39231,death,1140034096 +232427,39231,funeral,1140034096 +232427,39231,life,1140034096 +232427,39231,love,1140034096 +232427,39292,historical,1137315723 +232427,39444,divorce,1139645133 +232427,39444,marriage,1139645132 +232427,40583,complicated,1137305384 +232427,40819,drug abuse,1140829863 +232427,40819,drugs,1140829863 +232427,40819,Johnny Cash,1140829789 +232427,40819,music,1140829863 +232427,40826,AIDS,1146615966 +232427,40826,broadway,1146615911 +232427,40826,musical,1146615909 +232427,40946,Stand Up,1144992297 +232427,40946,stand-up comedy,1144992314 +232427,41566,fantasy,1140302341 +232427,41566,overrated,1137227200 +232427,41716,assassination,1137828865 +232427,41716,hitman,1137828865 +232427,41716,midlife crisis,1137828865 +232427,41997,israel,1152149187 +232427,41997,Olympics,1152149195 +232427,41997,palestine,1152149190 +232427,41997,revenge,1152149234 +232427,41997,terrorism,1152149181 +232427,43708,Documentary,1142722233 +232427,43708,music,1142722233 +232427,43708,musical,1142722233 +232427,44004,cheesy,1150715907 +232427,44004,chick flick,1150715907 +232427,44022,sequel,1151559873 +232427,44191,anarchy,1146809064 +232427,44191,comic book,1146808980 +232427,44191,justice,1146809064 +232427,44191,revenge,1146808982 +232427,44204,06 Oscar Nominated Best Movie - Foreign Language,1146108384 +232427,44204,overrated,1146108392 +232427,44665,twist,1162347042 +232427,44665,twist ending,1162347055 +232427,44972,boring,1154322028 +232427,44972,pop culture,1154322028 +232427,44972,sequel,1154322028 +232427,44972,sequels,1154321976 +232427,44972,spoof,1154321973 +232427,44972,stupid,1154322028 +232427,45210,aviation,1152088714 +232427,45210,emotional,1152088714 +232427,45210,heroism,1152088633 +232427,45210,terrorism,1152088631 +232427,45499,comic book,1157858446 +232427,48780,magic,1162634318 +232427,68159,lame ending,1242152037 +232427,68159,political corruption,1242152031 +232427,68159,red herring,1242152013 +232427,68319,comic book,1242151929 +232427,68319,Comic Book adaption,1242151946 +232427,68319,hugh jackman,1242151937 +232427,68319,superhero,1242151943 +232427,68358,action,1242152136 +232427,68358,future,1242152154 +232427,68358,good plot,1242152147 +232427,68358,sci fi,1242152163 +232427,68358,Star Trek,1242152133 +232427,68358,time travel,1242152175 +232427,71379,scary,1256532607 +232427,71379,slow,1256532599 +232427,71838,graphic,1256532742 +232427,71838,revenge,1256532758 +232427,71838,violent,1256532735 +232434,175,everything,1276795196 +232434,175,poor acting,1276795166 +232434,175,the ending,1276795179 +232434,26631,Characterization,1276792073 +232434,26631,Narration,1276792073 +232434,26631,Visuals,1276792073 +232434,33171,Joseph Gordon-Levitt,1276795220 +232434,69134,atmosphere,1276792513 +232434,69134,tension,1276792554 +232434,69134,Willem Dafoe,1276792554 +232435,3819,Nudity (Topless - Notable),1167577852 +232440,111,New Hollywood,1442868237 +232440,260,Monomyth,1442863121 +232440,260,New Hollywood,1442862980 +232440,260,Science Fiction,1442862470 +232440,260,space opera,1442863106 +232440,1208,New Hollywood,1442868204 +232487,296,comedy,1430856046 +232487,296,crime,1430856046 +232487,296,drugs,1430856046 +232487,541,androids,1430856064 +232487,541,artificial intelligence,1430856079 +232487,541,based on a book,1430856090 +232487,541,cult film,1430856067 +232487,541,cyberpunk,1430856052 +232487,541,dystopia,1430856057 +232487,541,existentialism,1430856095 +232487,541,film noir,1430856085 +232487,541,Philip K. Dick,1430856059 +232487,541,sci-fi,1430856054 +232487,924,artificial intelligence,1430855935 +232487,924,cinematography,1430855959 +232487,924,sci-fi,1430855931 +232487,924,Stanley Kubrick,1430855938 +232487,924,surreal,1430855963 +232487,6852,author:Truman Capote,1430945163 +232534,4359,New York,1308170380 +232557,2019,Akira Kurosawa,1445205944 +232557,2019,classic,1445205970 +232557,2019,samurai,1445205957 +232557,8651,Cervantes,1445205488 +232557,8651,Don Quixote,1445205462 +232557,27760,samurai,1445205738 +232557,45503,be here and now,1445205620 +232557,45503,Berkeley,1445205624 +232557,45503,warrior,1445205633 +232557,85414,probability realities,1445206120 +232557,85414,sci-fi,1445206112 +232557,106918,inspirational,1445205665 +232557,106918,romance,1445205684 +232565,79139,cgi,1295297878 +232565,79139,cliche,1295297863 +232565,79139,predictable,1295297847 +232588,296,fun,1430567747 +232588,296,great soundtrack,1430567747 +232588,296,strangely compelling,1430567747 +232588,356,amazing soundtrack,1436256255 +232588,356,good actors,1436256255 +232588,356,simply charming,1436256255 +232588,1584,inspirational,1392388636 +232588,1584,Jodie Foster,1392388634 +232588,1584,religion,1392388661 +232588,1584,space,1392388645 +232588,1584,space travel,1392388654 +232588,1653,futuristic,1392388601 +232588,1653,powerful ending,1392388603 +232588,1653,thought-provoking,1392388606 +232588,97752,philosophy,1392411631 +232588,97752,thought-provoking,1392411633 +232588,97752,visually appealing,1392411635 +232601,58559,Joker is cool,1222409512 +232603,4011,Benicio Del Toro,1436846201 +232603,4011,cynical,1436846187 +232603,4011,dark comedy,1436846213 +232603,4011,dark humor,1436846224 +232603,4011,Great dialogue,1436846178 +232603,4011,Jason Statham,1436846190 +232603,4011,multiple storylines,1436846166 +232603,4011,twist ending,1436846159 +232619,260,aesthetic,1444504085 +232619,260,couple,1444504062 +232619,260,funny,1444504069 +232642,58,Pablo Neruda,1170090351 +232642,58,poetry,1170090351 +232642,58,Sicily,1170090351 +232642,58,writing,1170090317 +232642,527,life choices,1170090572 +232642,1305,relationships,1170090592 +232642,1584,spiritual search,1170090437 +232642,1682,life in general,1170090508 +232642,2571,life choices,1170090558 +232642,2571,mind power,1170090423 +232642,2858,life in general,1170090496 +232642,4351,life choices,1170090579 +232642,5669,anti-violence,1170090454 +232642,5878,relationships,1170090533 +232642,6711,life in general,1170090619 +232642,6711,relationships,1170090619 +232642,7153,life choices,1170090636 +232642,40819,life in general,1170090485 +232642,44694,female power,1170090388 +232642,44694,generations,1170090388 +232676,260,classic,1431504558 +232676,260,Science Fiction,1431504567 +232689,2762,acting,1280273921 +232730,356,bittersweet,1244382107 +232730,356,Tom Hanks,1244382091 +232730,4993,high fantasy,1243952705 +232730,4993,music,1243952746 +232730,4993,New Zealand,1243952845 +232730,4993,Peter Jackson,1243952713 +232730,7841,Bene Gesserit,1249645315 +232730,7841,Brian Tyler,1249645387 +232730,7841,desert,1249645305 +232730,7841,Frank Herbert,1249645293 +232730,7841,Guild Navigator,1249645572 +232730,7841,Inama Nushif,1249645413 +232730,64575,Amy Adams,1243952559 +232730,64575,Meryl Streep,1243952566 +232730,64575,Philip Seymour Hoffman,1243952568 +232730,71518,Ellen Page,1270525535 +232730,74530,Chris Columbus,1267514762 +232730,81591,Natalie Portman,1295790724 +232730,82459,Hailee Steinfeld,1296331544 +232734,96079,Daniel Craig,1440401608 +232734,96079,James Bond,1440401614 +232747,260,spaceships,1435400295 +232747,260,the force,1435400297 +232747,42548,scotland,1436861806 +232747,42548,shipwreck,1436861806 +232747,42548,whisky,1436861806 +232747,126803,cynical,1435407937 +232747,126803,dark comedy,1435407937 +232747,126803,social criticism,1435407937 +232747,131138,adolf hitler,1436047555 +232747,131138,offbeat humor,1436047555 +232747,131138,satire,1436047555 +232748,104841,acting,1383028047 +232748,104841,cgi,1383027921 +232748,104841,cinematography,1383027922 +232748,104841,clooney dies,1383027952 +232748,104841,George Clooney,1383028033 +232748,104841,physics,1383027921 +232748,104841,sandra bullock,1383028040 +232748,104841,space,1383028059 +232748,104841,suspense,1383027921 +232748,104841,visually appealing,1383028063 +232755,1732,comedy,1430260703 +232755,1732,great dialogue,1430260678 +232755,1732,great soundtrack,1430260717 +232755,1732,Jeff Bridges,1430260707 +232755,1732,John Goodman,1430260709 +232755,1732,marijuana,1430260713 +232755,115617,adventure,1430260531 +232755,115617,friends,1430260531 +232755,115617,sci-fi,1430260531 +232755,116797,biographical,1432872269 +232755,116797,computers,1432872269 +232755,116797,world war ii,1432872269 +232762,135823,Aamir Khan,1448805313 +232762,135823,Hindi,1448805305 +232795,260,lightsabers,1439773009 +232795,260,sci-fi,1439773000 +232809,593,great acting,1452739900 +232809,593,psychology,1452739896 +232811,260,fantasy,1442500936 +232811,260,geeky,1442500912 +232811,293,crime,1442501743 +232811,293,drama,1442501762 +232811,293,great acting,1442501739 +232811,293,hitman,1442501736 +232811,293,Jean Reno,1442501721 +232811,293,love story,1442501730 +232811,293,Luc Besson,1442501744 +232811,293,Natalie Portman,1442501723 +232811,293,organized crime,1442501747 +232811,318,great acting,1442501272 +232811,318,imdb top 250,1442501288 +232811,318,thought-provoking,1442501274 +232811,318,twist ending,1442501277 +232811,8340,Clint Eastwood,1442501308 +232811,94466,dystopia,1442502145 +232811,94466,thought-provoking,1442502151 +232811,140715,dr. dre,1442502418 +232811,140715,rap music,1442502412 +232811,140715,rappers,1442502415 +232811,140715,west coast rap,1442502421 +232846,7361,dark,1374374360 +232846,7361,surreal,1374374367 +232846,7361,thought-provoking,1374374374 +232848,39183,Breathtaking,1138525378 +232878,7151,painting,1137134528 +232878,7151,scarlett johansson,1137134528 +232878,7265,french,1137134356 +232878,7265,michael pitt,1137134356 +232878,26242,Spielberg,1137113200 +232878,26242,thriller,1137113200 +232878,26242,truck,1137113200 +232878,26870,baseball,1137113283 +232878,26870,comedy,1137113283 +232878,34162,comedy,1137113640 +232878,34162,owen wilson,1137113640 +232878,34162,sex,1137113640 +232878,34162,vince vaughn,1137113640 +232878,34164,comedy,1137113666 +232878,34164,drama,1137113666 +232878,34164,tom arnold,1137113666 +232878,34437,Bill Murray,1137113514 +232878,34437,comedy,1137113514 +232878,34437,drama,1137113514 +232878,34437,Jim Jarmusch,1137113514 +232878,35836,comedy,1137113443 +232878,35836,sex,1137113443 +232878,35836,steve carell,1137113443 +232896,3793,Lamer,1138286810 +232920,109487,Visual effect,1434348336 +232920,111759,action,1434348368 +232948,318,crime,1437430723 +232948,318,prison escape,1437430723 +232948,318,wrongful imprisonment,1437430723 +232948,1199,atmospheric,1436055810 +232948,1199,dystopia,1436055801 +232948,1199,dystopic future,1436055824 +232948,1199,futuristic,1436055814 +232948,1199,hallucinatory,1436055822 +232948,1199,surreal,1436055798 +232948,1199,thought-provoking,1436055817 +232948,7024,disturbing,1436056194 +232948,7024,social criticism,1436056192 +232948,7817,cerebral,1436055875 +232948,7817,erotic,1436055867 +232948,7817,hallucinatory,1436055869 +232948,26258,Alejandro Jodorowsky,1436055990 +232948,26258,atmospheric,1436055988 +232948,26258,cult film,1436055982 +232948,26258,disturbing,1436055986 +232948,26258,hallucinatory,1436055984 +232948,26258,surreal,1436055980 +232948,26326,Alejandro Jodorowsky,1436055946 +232948,26326,hallucinatory,1436055940 +232948,26326,Jodorowsky,1436055937 +232948,26326,psychedelic,1436055950 +232948,26326,social criticism,1436055943 +232948,26326,surreal,1436055956 +232948,26326,symbolism,1436055952 +232959,3868,parody,1445829341 +232959,6558,John Hughes,1445829238 +232959,27773,violent,1445829328 +232964,527,drama,1148077752 +232964,527,historical,1148077754 +232964,527,Holocaust,1148077733 +232964,527,Liam Neeson,1148077746 +232964,527,Steven Spielberg,1148077740 +232964,527,true story,1148077743 +232964,527,World War II,1148077739 +232964,1961,autism,1148077684 +232964,1961,Dustin Hoffman,1148077678 +232964,1961,Tom Cruise,1148077676 +232964,1961,true story,1148077691 +232964,2268,court,1148077538 +232964,2268,drama,1148077604 +232964,2268,Jack Nicholson,1148077549 +232964,2268,military,1148077540 +232964,2268,Tom Cruise,1148077535 +232966,293,atmosphere,1310767041 +232966,48032,atmosphere,1310766814 +232966,48032,music,1310766829 +232966,48032,Nicoletta Braschi,1310766770 +232966,48032,Tom Waits,1310766836 +232966,55269,Bill Murray,1340786599 +232966,69604,monologue,1310767010 +232969,28,adaptation,1138324466 +232969,28,Jane Austen,1138324467 +232969,85,A. S. Byatt,1138324138 +232969,85,adaptation,1138324138 +232969,85,Victorian,1138324138 +232969,150,true story,1138324055 +232969,318,adaptation,1138323978 +232969,318,prison,1138323978 +232969,318,Stephen King,1138323978 +232969,348,Woody Allen,1138324274 +232969,480,dinosaurs,1138323909 +232969,592,super-hero,1138323924 +232969,593,character:hannibal lecter,1429902648 +232969,593,jodie foster,1429902648 +232969,593,serial killer,1429902648 +232969,750,nuclear war,1138324324 +232969,750,satire,1138324324 +232969,902,classic,1138324261 +232969,994,food,1138324209 +232969,994,immigrant,1138324209 +232969,994,Italian,1138324209 +232969,1199,dystopian,1138324252 +232969,1199,surreal,1138324252 +232969,1249,assassin,1138324420 +232969,1284,classic,1138324216 +232969,1649,mole rats,1138324369 +232969,1649,robots,1138324369 +232969,1649,topiary,1138324369 +232969,4069,scrabble,1137602932 +232969,4069,standard romantic comedy,1137602932 +232969,8910,is life meaningful?,1137602742 +232969,8910,whimsical,1137602742 +232969,8914,complicated plot,1137602612 +232969,8914,time travel,1137602573 +232969,34405,action,1137602782 +232969,34405,based on tv series,1137602816 +232969,34405,Firefly,1137602816 +232969,34405,western,1137602784 +232991,260,Epic,1441628466 +232991,260,space fantasy,1441628500 +232991,589,action,1442130222 +232991,589,androids,1442130235 +232991,589,Arnold Schwarzenegger,1442130203 +232991,589,artificial intelligence,1442130217 +232991,589,computers,1442130233 +232991,589,cyborgs,1442130212 +232991,589,dystopia,1442130243 +232991,589,future,1442130208 +232991,589,James Cameron,1442130215 +232991,589,man versus machine,1442130239 +232991,589,robots,1442130219 +232991,589,sci-fi,1442130205 +232991,589,Suspense,1442130230 +232991,589,time travel,1442130201 +232991,1197,romance,1442129174 +232991,1200,action,1442130282 +232991,1200,Alien,1442130297 +232991,1200,aliens,1442130278 +232991,1200,androids,1442130294 +232991,1200,sci-fi,1442130276 +232991,1200,Sigourney Weaver,1442130301 +232991,1200,space,1442130280 +232991,1200,SPACE TRAVEL,1442130291 +232991,1200,suspense,1442130284 +232991,1340,gothic,1442129539 +232991,1387,animal attacks,1442131213 +232991,1387,animal horror,1442131231 +232991,1387,horror,1442131240 +232991,1387,shark,1442131206 +232991,1387,shark-attacks,1442131217 +232991,1387,spielberg,1442131194 +232991,1387,Steven Spielberg,1442131209 +232991,1387,suspenseful,1442131204 +232991,2311,artificial intelligence,1442130739 +232991,2311,sci-fi,1442130741 +232991,2311,space,1442130736 +232991,2311,space travel,1442130737 +232991,2571,artificial intelligence,1442130372 +232991,2571,computers,1442130378 +232991,2571,cyberpunk,1442130359 +232991,2571,dystopia,1442130357 +232991,2571,philosophy,1442130362 +232991,2571,sci-fi,1442130353 +232991,2571,Special Effects,1442130369 +232991,2571,virtual reality,1442130355 +232991,3156,artificial intelligence,1442131332 +232991,3156,future,1442131329 +232991,3156,Robin Williams,1442131333 +232991,3156,robots,1442131328 +232991,3156,sci-fi,1442131326 +232991,3156,science fiction,1442131335 +232991,3576,aliens,1442131091 +232991,4370,androids,1442131293 +232991,4370,artificial intelligence,1442131282 +232991,4370,dystopia,1442131284 +232991,4370,future,1442131296 +232991,4370,robots,1442131290 +232991,4370,sci-fi,1442131288 +232991,4370,Steven Spielberg,1442131286 +232991,5418,action,1442130653 +232991,5418,amnesia,1442130660 +232991,5418,assassin,1442130658 +232991,5418,conspiracy,1442130664 +232991,5418,espionage,1442130651 +232991,5418,Matt Damon,1442130649 +232991,5418,realistic action,1442130668 +232991,5418,spy,1442130655 +232991,5418,spying,1442130671 +232991,5418,thriller,1442130662 +232991,26662,feel-good,1442129921 +232991,26662,Hayao Miyazaki,1442129911 +232991,26662,Studio Ghibli,1442129900 +232991,30707,boxing,1442129086 +232991,30707,sports,1442129091 +232991,33794,based on a comic,1442130989 +232991,33794,based on comic,1442130986 +232991,33794,Christopher Nolan,1442130969 +232991,33794,comic book,1442130975 +232991,33794,DC,1442130983 +232991,33794,DC Comics,1442131008 +232991,33794,Morgan Freeman,1442130979 +232991,33794,super hero,1442131005 +232991,33794,super-hero,1442130974 +232991,33794,superhero,1442130971 +232991,33794,thought-provoking,1442131015 +232991,59369,action,1442130572 +232991,59369,action packed,1442130607 +232991,59369,agent,1442130595 +232991,59369,car chase,1442130592 +232991,59369,CIA,1442130587 +232991,59369,crime,1442130582 +232991,59369,espionage,1442130589 +232991,59369,fight scenes,1442130576 +232991,59369,Liam Neeson,1442130570 +232991,59369,realistic,1442130585 +232991,59369,revenge,1442130578 +232991,59369,special forces,1442130622 +232991,59369,thriller,1442130574 +232991,60684,comics,1442131166 +232991,60684,dark hero,1442131145 +232991,60684,dystopia,1442131130 +232991,60684,Nudity (Topless),1442131153 +232991,60684,sci-fi,1442131134 +232991,60684,superhero,1442131132 +232991,71530,androids,1442131608 +232991,71530,bad ending,1442131619 +232991,71530,bad science,1442131611 +232991,71530,Bruce Willis,1442131603 +232991,71530,cliche,1442131622 +232991,71530,predictable,1442131606 +232991,71530,sci-fi,1442131601 +232991,84152,Bradley Cooper,1442131568 +232991,84152,concept,1442131582 +232991,84152,human potential,1442131566 +232991,84152,smart,1442131562 +232991,84152,thought provoking,1442131564 +232991,84152,transhumanism,1442131571 +232991,84152,visual effects,1442131576 +232991,84152,visually appealing,1442131577 +232991,85414,action,1442130537 +232991,85414,deja vu,1442130528 +232991,85414,intelligent,1442130489 +232991,85414,interesting,1442130484 +232991,85414,mindfuck,1442130518 +232991,85414,parallel universe,1442130474 +232991,85414,sci-fi,1442130526 +232991,85414,science fiction,1442130479 +232991,85414,suspense,1442130520 +232991,85414,terrorism,1442130513 +232991,85414,thriller,1442130534 +232991,85414,time loop,1442130477 +232991,85414,time travel,1442130475 +232991,85414,twist ending,1442130496 +232991,85414,twists & turns,1442130531 +232991,85774,Formula 1 racing,1442130162 +232991,85774,sports,1442130165 +232991,96610,Bruce Willis,1442130428 +232991,96610,clever,1442130417 +232991,96610,dystopia,1442130430 +232991,96610,Nudity (Topless),1442130448 +232991,96610,sci-fi,1442130412 +232991,96610,sci-fi thriller,1442130426 +232991,96610,science fiction,1442130422 +232991,96610,scifi,1442130456 +232991,96610,thriller,1442130419 +232991,96610,time travel,1442130410 +232991,96610,visually appealing,1442130433 +232991,99813,comic,1442130926 +232991,106873,action,1442130865 +232991,106873,anime,1442130885 +232991,106873,beautiful animation,1442130826 +232991,106873,mecha,1442130846 +232991,106873,robots,1442130864 +232991,106873,sci-fi,1442130841 +232991,108945,consciousness,1442132171 +232991,108945,police,1442132132 +232991,108945,science fiction,1442132134 +232991,108945,Special Effects,1442132136 +232991,110407,artificial intelligence,1442131676 +232991,110407,sci-fi,1442131677 +232991,110730,artificial intelligence,1442131403 +232991,110730,computers,1442131421 +232991,110730,consciousness,1442131425 +232991,110730,cyborgs,1442131423 +232991,110730,Johnny Depp,1442131417 +232991,110730,Morgan Freeman,1442131414 +232991,110730,nano-technology,1442131416 +232991,110730,nanobots,1442131412 +232991,110730,predictable,1442131409 +232991,111360,dumb science,1442131442 +232991,111360,fast paced action,1442131454 +232991,111360,intense,1442131449 +232991,111360,Morgan Freeman,1442131459 +232991,111360,Scarlett Johansson,1442131440 +232991,111360,sci-fi,1442131456 +232991,111360,scifi,1442131444 +232991,111360,shallow,1442131546 +232991,111360,superficially,1442131536 +232991,111360,transhumanist,1442131447 +232991,114935,mindfuck,1442131716 +232991,114935,sci-fi,1442131722 +232991,114935,science fiction,1442131720 +232991,114935,thriller,1442131724 +232991,114935,time travel,1442131715 +232991,114935,twist ending,1442131718 +233025,6990,Notable Nudity,1157645779 +233042,260,sci-fi,1439236430 +233042,260,Science Fiction,1439236427 +233042,260,space adventure,1439236447 +233042,778,addiction,1439237982 +233042,778,black comedy,1439237952 +233042,778,crime,1439237957 +233042,778,drugs,1439237947 +233042,778,violent,1439237961 +233042,858,Mafia,1439266189 +233042,858,masterpiece,1439266177 +233042,1080,controversial,1439236489 +233042,1080,satire,1439236485 +233042,1080,satirical,1439236501 +233042,1084,controversial,1439237555 +233042,1084,crime,1439237584 +233042,1084,romance,1439237554 +233042,1084,violent,1439237565 +233042,1203,low budget,1439237831 +233042,1203,racism,1439237813 +233042,1203,social commentary,1439237829 +233042,1230,relationships,1439238569 +233042,1230,romantic,1439238575 +233042,1230,Woody Allen,1439238566 +233042,1244,relationships,1439238554 +233042,1244,Woody Allen,1439238548 +233042,1270,comedy,1439236381 +233042,1270,futuristic,1439236394 +233042,1270,sci-fi,1439236378 +233042,1273,atmospheric,1439234807 +233042,1273,crime,1439234787 +233042,1288,mockumentary,1439236562 +233042,1288,satire,1439236570 +233042,1288,witty,1439236574 +233042,2360,disturbing,1439238061 +233042,2360,dysfunctional family,1439238054 +233042,2360,family,1439238045 +233042,2360,realistic,1439238064 +233042,2704,romantic,1439237428 +233042,2732,atmospheric,1439236232 +233042,2732,love triangles,1439236230 +233042,3010,drama,1439237740 +233042,3010,realistic,1439237726 +233042,3822,atmospheric,1439236290 +233042,3822,black and white,1439236272 +233042,3925,atmospheric,1439234858 +233042,3925,black and white,1439234841 +233042,3949,addiction,1439236682 +233042,3949,dark,1439236684 +233042,3949,drugs,1439236675 +233042,3949,independent film,1439236693 +233042,3949,Nudity (Full Frontal - Notable),1439236701 +233042,3949,Nudity (Full Frontal),1439236704 +233042,3949,psychology,1439236686 +233042,4235,independent film,1439238303 +233042,4235,multiple storylines,1439238307 +233042,4235,violence,1439238310 +233042,5992,bisexual,1439238725 +233042,5992,mental illness,1439238695 +233042,5992,multiple connecting storylines,1439238722 +233042,5992,Virginia Woolf,1439238690 +233042,6016,atmospheric,1439236744 +233042,6016,coming of age,1439236753 +233042,6016,disturbing,1439236735 +233042,6016,multiple storylines,1439236730 +233042,7265,1960s,1439234323 +233042,7265,Nudity (Full Frontal),1439234368 +233042,7323,communism,1439235533 +233042,7323,German,1439235540 +233042,7323,Germany,1439235530 +233042,7323,romance,1439235544 +233042,7843,german movie,1439234273 +233042,7843,weed,1439234281 +233042,8656,realistic,1439239225 +233042,27178,german,1439238429 +233042,27178,marijuana,1439238454 +233042,32460,German,1439266747 +233042,32460,Moritz Bleibtreu,1439266744 +233042,33415,Fatih Akin,1439236126 +233042,33415,german,1439236139 +233042,33415,germany,1439236139 +233042,33415,moritz bleibtreu,1439236130 +233042,46578,beauty pageant,1439238792 +233042,46578,heartwarming,1439238778 +233042,46578,inspirational,1439238769 +233042,52579,art,1439237275 +233042,52579,nonlinear,1439237278 +233042,56614,1960s,1439235029 +233042,56614,revolution,1439235020 +233042,56614,weed,1439235148 +233042,59912,political,1439234644 +233042,60950,bisexual,1439237029 +233042,60950,love triangles,1439237043 +233042,60950,romance,1439237037 +233042,60950,threesome,1439237026 +233042,60950,Woody Allen,1439237031 +233042,67508,german,1439234461 +233042,67508,Nudity (Topless - Notable),1439234484 +233042,67508,Radical Politics,1439234505 +233042,88405,Mila Kunis,1439237139 +233042,88405,predictable,1439237143 +233042,88405,romance,1439237154 +233042,89118,disturbing,1439237657 +233042,89118,psychology,1439237664 +233042,90376,disjointed,1439236614 +233042,90376,disturbing,1439236602 +233042,90376,psychological,1439236598 +233042,90376,tilda swinton,1439236605 +233042,90531,nudity (topless),1439238873 +233042,90531,self-destruction,1439238877 +233042,92259,feel good movie,1439238337 +233042,92259,stereotypical,1439238373 +233042,95744,nudity (topless),1439236917 +233042,95744,romance.,1439236912 +233060,260,Harrison Ford,1442803808 +233060,260,Science Fiction,1442803799 +233064,4973,Paris,1213620234 +233064,32587,classic,1213620339 +233064,32587,Cool but freaky,1213620339 +233064,32587,violence,1213620339 +233064,51662,action packed,1213620226 +233064,51662,muscle,1213620226 +233072,260,bewbs,1430348948 +233072,260,classic,1430348948 +233072,260,sci-fi,1430348948 +233072,296,crime,1421801147 +233072,296,dark comedy,1421801147 +233072,296,thriller,1421801147 +233072,318,clever,1427748266 +233072,318,must see,1427748266 +233072,318,prison escape,1427748266 +233072,356,classic,1433954286 +233072,356,humor,1433954286 +233072,356,touching,1433954286 +233072,648,Action,1429215089 +233072,648,Based on a TV show,1429215319 +233072,648,Brian De Palma,1429215151 +233072,648,espionage,1429215091 +233072,648,Tom Cruise,1429215080 +233072,78097,indonesia,1452900259 +233076,260,action,1432758066 +233076,260,Action comedy,1432758100 +233083,55247,based on a true story,1446638748 +233083,55247,psychology,1446638763 +233083,55247,self discovery,1446638741 +233090,1527,action,1432153710 +233090,1527,humorous,1432153695 +233090,1527,sci-fi,1432153712 +233090,4246,British,1432153794 +233090,4246,funny,1432153792 +233090,6942,british,1432153829 +233090,6942,ensemble cast,1432153879 +233090,79132,alternate reality,1432153594 +233090,79132,philosophy,1432153625 +233090,79132,surreal,1432153603 +233099,53123,Oscar (Best Music - Original Song),1220418578 +233099,68954,adventure,1249062785 +233099,68954,computer animation,1249062788 +233099,68954,death/fatality,1249062793 +233099,68954,feel good movie,1249062774 +233099,68954,happy ending,1249062803 +233099,68954,storytelling,1249062799 +233099,69122,comedy,1249062688 +233099,69122,drugs,1249062719 +233099,69122,Las Vegas,1249062695 +233099,69122,Nudity (Topless),1249062724 +233118,5669,documentary,1164624533 +233118,5669,Michael Moore,1164624539 +233127,58,italian bittersweet romance,1139292815 +233127,213,Russian communist tragedy,1139292636 +233127,1673,dark comedy,1139291931 +233127,2732,french new wave,1139292764 +233127,3808,black and white,1139292504 +233127,3808,Sophia Loren,1139292504 +233127,3808,stark,1139292504 +233127,4347,compassion,1139292551 +233127,4347,generous,1139292551 +233127,4347,humanity,1139292551 +233127,4995,bravery,1139291912 +233127,4995,brilliance,1139291912 +233127,4995,mental illness,1139291912 +233127,7088,beautifully photographed,1139292405 +233127,7088,bittersweet,1139292405 +233127,7490,french lesbian love story,1139292596 +233127,7941,Bergman,1139292466 +233127,7941,comedy,1139292466 +233127,7941,scandinavian summer,1139292466 +233127,39292,gripping,1139292230 +233127,39292,hollywood witchhunt,1139292230 +233127,39292,suspense,1139292230 +233174,593,based on a book,1421746655 +233174,593,powerful,1421746655 +233174,593,suspense,1421746655 +233174,65135,british comedy,1422434152 +233174,65135,Christmas,1422434168 +233174,65135,comedy,1422434149 +233174,65135,Dickens,1422434183 +233174,65135,Victorian,1422434161 +233174,80906,business,1421746546 +233174,80906,corruption,1421746554 +233174,80906,economics,1421746550 +233174,80906,politics,1421746552 +233174,80906,recession,1421746570 +233174,80906,truth,1421746548 +233174,93498,based on a true story,1421746671 +233174,93498,election,1421746674 +233174,93498,history,1421746677 +233174,93498,politics,1421746668 +233174,109580,adult themes,1422434010 +233174,109580,biography,1422433998 +233174,109580,drugs,1422434003 +233174,109580,true story,1422434001 +233174,110586,Aiden Gillen,1421746512 +233174,110586,black comedy,1421746462 +233174,110586,Brendan Gleeson,1421746479 +233174,110586,Catholicism,1421746430 +233174,110586,child abuse,1421746485 +233174,110586,Chris O'Dowd,1421746505 +233174,110586,Ireland,1421746425 +233174,110586,powerful,1421746419 +233174,110586,revenge,1421746490 +233182,1088,chick flick,1140212070 +233182,2671,chick flick,1137193467 +233182,2671,favorite,1137193467 +233182,5505,chick flick,1140212082 +233182,6687,comedy,1137544704 +233182,6687,funny,1137544704 +233182,7320,chick flick,1138908902 +233182,8833,chick flick,1140127115 +233182,32300,girlie movie,1137544815 +233182,33646,Adam Sandler,1137193470 +233182,33646,funny,1137193470 +233182,33660,true story,1137193542 +233182,34143,bad one,1138250333 +233182,34143,horror,1138250333 +233182,34271,black,1139952027 +233182,34271,rap,1139952027 +233182,34319,action,1138048948 +233182,34319,scifi,1138048948 +233182,34336,chick flick,1137540557 +233182,34336,love story,1137540557 +233182,36511,sucky,1139246903 +233182,37853,ocean/beach,1137544845 +233182,38798,chick flick,1140211813 +233182,38992,hottie,1138745612 +233182,39183,Gay Cowboy,1139952060 +233182,39183,oscar movie,1139952061 +233182,39449,funny,1137544834 +233182,41573,sad,1137544867 +233182,41617,nudity,1137544780 +233182,42002,Musical Sucks.,1149825154 +233182,42007,chick flick,1137544802 +233182,42418,different,1137866739 +233182,42728,love story,1137452261 +233182,45730,disappointing,1167167454 +233183,145,action,1282108350 +233183,145,Will Smith,1282108346 +233183,339,chick flick,1282108643 +233183,1496,based on a book,1282108398 +233183,2314,Nudity (Full Frontal),1282108483 +233183,4299,medieval,1282108734 +233183,5540,mythology,1282109908 +233183,7293,Adam Sandler,1282109839 +233183,26317,Nudity (Full Frontal),1282108252 +233183,34499,Nudity (Topless),1282108407 +233183,42015,Heath Ledger,1282108686 +233183,46974,Nicolas Cage,1282108389 +233183,49274,Robin Williams,1282108571 +233183,51412,Nicolas Cage,1282108287 +233183,53138,adventure,1282108749 +233183,53138,archaeology,1282108743 +233183,55232,video game adaptation,1282108306 +233183,56775,history,1282108227 +233183,56775,Nicolas Cage,1282108235 +233183,56775,treasure hunt,1282108239 +233183,59103,kung fu,1282108579 +233183,59709,Elijah Wood,1282108267 +233183,61250,Nudity (Rear),1282108250 +233183,64969,Jim carrey,1282108447 +233183,64969,Zooey Deschanel,1282108450 +233183,65682,gothic,1282108319 +233183,65685,Brendan Fraser,1282108720 +233183,68554,Tom Hanks,1282108470 +233183,69805,archaeology,1282108217 +233183,70932,Greece,1282108223 +233183,79139,Jay Baruchel,1282108616 +233183,79139,Nicolas Cage,1282108614 +233183,79224,Jackie Chan,1282108519 +233197,86892,action,1434598749 +233197,86892,adventure,1434598749 +233197,86892,rescue,1434598749 +233211,1784,psychology,1378310177 +233246,112552,crazy people,1428072214 +233246,112552,intense,1428072214 +233246,112552,music,1428072214 +233266,103166,documentary,1422132996 +233266,103166,journalism,1422132996 +233266,103166,politics,1422132996 +233266,118466,anime,1420713646 +233266,118466,documentary,1420713646 +233266,118466,japan,1420713646 +233266,127298,art,1429469930 +233266,139050,biographic,1437251253 +233266,139050,documentary,1437251246 +233266,139050,photography,1437251258 +233266,139050,"photography, biographic, documentary",1437251212 +233266,148402,documentary,1450037477 +233266,148402,war,1450037482 +233272,318,as good as the book,1433160430 +233272,318,great acting,1433160437 +233272,318,sad,1433160444 +233281,7329,camp classic,1310091879 +233288,5954,Japan,1137428234 +233288,6953,Gay Cowboy,1137428226 +233288,31696,lesbian,1137429910 +233324,92420,sci-fi,1344609971 +233328,457,conspiracy,1420962079 +233328,457,mystery,1420962079 +233328,457,suspense,1420962079 +233354,81932,biography,1430129513 +233354,81932,drugs,1430129513 +233354,81932,sport:boxing,1430129513 +233357,912,Film Noir,1214932525 +233357,912,Ingrid Bergman,1214932519 +233357,912,USA film registry,1214932517 +233357,1284,Bogart & Bacall,1214929095 +233357,1284,classic,1214929082 +233357,1284,Humphrey Bogart,1214929078 +233357,1284,imdb top 250,1214929083 +233357,1284,mystery,1214929086 +233357,1284,noir,1214929092 +233370,260,action,1434551466 +233370,260,sci-fi,1434551459 +233370,112552,drama,1435162236 +233370,112552,music,1435162236 +233370,112552,teacher student relationship,1435162236 +233400,260,Fandom,1439914028 +233400,260,franchise,1439914038 +233415,260,sci-fi,1440469263 +233415,260,Space adventure,1440469249 +233415,480,Dinosaurs,1440471241 +233415,480,genetics,1440471260 +233446,260,rebellion against dictatorship,1439806424 +233446,260,Religion,1439806428 +233450,47404,absoluty nothing,1367725597 +233451,260,"oscar ,sci-fi",1436633690 +233475,70286,intelligent sci-fi,1250856221 +233480,1200,action,1268433535 +233480,1200,aliens,1268433516 +233480,1200,atmospheric,1268433539 +233480,1924,Bela Lugosi,1255284298 +233480,1924,so bad it's funny,1255284251 +233480,74789,Anne Hathaway,1269468100 +233480,74789,based on a book,1269468095 +233480,74789,Depp & Burton,1269468086 +233480,74789,Helena Bonham Carter,1269468081 +233480,74789,Johnny Depp,1269468076 +233480,74789,talking animals,1269468109 +233480,74789,Tim Burton,1269468088 +233480,76251,action,1274977982 +233480,76251,comic book,1274977989 +233480,76251,funny,1274977979 +233480,76251,Nicolas Cage,1274977978 +233480,76251,original plot,1274978001 +233480,76251,vigilante,1274978006 +233510,85438,bad chemistry,1303527578 +233510,85438,beautiful scenery,1303527583 +233510,85438,beautifully filmed,1303527583 +233510,85438,good lead,1303527594 +233510,85438,supporting characters,1303527607 +233522,260,classic sci-fi,1439802710 +233522,260,sci-fi,1439802631 +233522,260,space epic,1439802732 +233551,858,classic,1424629832 +233551,858,great acting,1424629813 +233551,40815,fantasy,1424629917 +233551,40815,imagination,1424629930 +233551,40815,Magic,1424629913 +233551,88125,fantasy,1424629992 +233568,480,dinosaurs,1159435203 +233568,4310,impressive,1159435567 +233572,3062,action,1275079615 +233572,3062,History,1275079627 +233576,7831,mystery,1422665438 +233576,7831,screwball comedy,1422665438 +233576,7831,witty dialogue,1422665438 +233577,356,drama,1426696927 +233577,356,historical,1426696927 +233577,356,tom hanks,1426696927 +233577,4973,fairy tale,1426697478 +233577,4973,feel-good,1426697485 +233577,34405,sci-fi,1426696504 +233577,39292,black and white,1426697019 +233594,260,Amazing cast for one of the most successful sci-fi of the history of cinema. An epic story,1438880801 +233594,260,Bad acting,1438880793 +233607,539,Meg Ryan,1294684983 +233607,539,Tom Hanks,1294684983 +233607,934,Steve Martin,1294685094 +233607,3565,family,1294685012 +233607,3565,Natalie Portman,1294684998 +233607,49286,Jack Black,1294686084 +233607,55267,Steve Carrell,1294685127 +233607,71670,Bradley Cooper,1294685999 +233607,71670,Sandra Bullock,1294685999 +233607,74275,Ewan McGregor,1294685082 +233607,74275,Jim Carrey,1294685082 +233607,78772,Kristen Stewart,1294794470 +233607,78772,Robert Pattinson,1294794470 +233608,260,empire,1427919794 +233608,260,sci-fi,1427919794 +233608,260,star wars,1427919794 +233626,104,comedy,1394863460 +233626,153,Jim Carrey,1394863571 +233626,153,superhero,1394863569 +233626,172,cyberpunk,1394863722 +233626,173,comic book,1394863485 +233626,1544,dinosaurs,1394863501 +233626,1544,Steven Spielberg,1394863496 +233626,1608,Harrison Ford,1394863574 +233626,1831,sci-fi,1394863505 +233626,1831,space,1394863507 +233626,1831,surreal,1394863510 +233626,2054,adventure,1394863475 +233626,2054,comedy,1394863479 +233626,2054,fantasy,1394863469 +233626,2571,virtual reality,1394863734 +233626,3977,Bill Murray,1394863565 +233626,4643,dystopia,1394863545 +233626,4643,post-apocalyptic,1394863523 +233626,4643,space,1394863548 +233626,106491,anime,1394863398 +233626,106491,cartoon,1394863407 +233626,106491,love,1394863398 +233626,106491,romance,1394863398 +233649,39292,historical,1232929354 +233710,2387,Abhorrent,1161399677 +233710,3155,disappointing,1148082958 +233712,260,good characters,1441048429 +233712,260,"imaginary world, characters, story, philosophical",1441048433 +233712,260,sci-fi,1441048423 +233712,260,space epic,1441048414 +233727,260,Science Fiction,1440141394 +233727,260,space action,1440141381 +233730,260,childhood classic,1439787933 +233730,260,space opera,1439787915 +233731,6,great acting,1362833041 +233731,50,complicated,1362833092 +233731,50,suspense,1362833100 +233731,50,twist ending,1362833086 +233731,296,dialogue,1426445148 +233731,296,innovative,1426445148 +233731,296,ironic,1426445148 +233731,296,multiple storylines,1426445220 +233731,296,non-linear,1426445213 +233731,296,Quentin Tarantino,1426445232 +233731,541,slow,1385296253 +233731,2858,suburbia,1152813132 +233731,4741,1970s,1415363317 +233731,4741,friendship,1415363340 +233731,4741,seen more than once,1415363331 +233731,4741,witty,1415363324 +233731,5269,disturbing,1362833162 +233731,7034,seen more than once,1152813195 +233731,7451,suprisingly clever,1415362535 +233731,45720,terrible,1164458134 +233731,55721,cliche,1363505163 +233731,94542,boring,1362833522 +233731,94542,slow,1362833519 +233731,97938,3d,1362832889 +233731,97938,boring,1362832826 +233731,97938,cinematography,1362832835 +233731,97938,surreal,1362832984 +233749,260,Action,1442654067 +233749,260,Adventure,1442654065 +233756,260,jedi,1443446286 +233756,260,Light saber,1443446276 +233756,260,Science Fiction,1443446272 +233756,260,spaceships,1443446282 +233771,59315,green screen,1442801270 +233771,59315,Robert Downey Jr.,1442801311 +233811,260,Begin again,1436561106 +233834,3551,Nudity (Topless),1169231984 +233852,1748,dystopic,1404887956 +233852,2495,Trippy,1419139638 +233852,3477,all copies should be found and destroyed,1421281856 +233852,3477,bad,1421281437 +233852,3477,intellectually insulting,1421281933 +233852,3477,little actual knowledge of music,1421281640 +233852,3477,poorly done,1421281427 +233852,3477,wants to be something it isn't,1421281716 +233852,4641,Scarlett Johansson,1423080764 +233852,4881,scarlett johansson,1437022342 +233852,5644,Lou Gehrig,1446013530 +233852,6711,Scarlett Johansson,1423080804 +233852,7151,scarlett johansson,1423080716 +233852,48304,action,1408086325 +233852,48304,endings,1408086286 +233852,48304,evil,1408086318 +233852,48304,gore,1408086244 +233852,48304,humanity,1408086256 +233852,48304,regrets,1408086496 +233852,48304,starting over,1408086307 +233852,48304,struggle,1408086363 +233852,48304,tribal,1408086213 +233852,48780,Scarlett Johansson,1437021794 +233852,60950,Scarlett Johansson,1437022152 +233852,73321,cherished artifact,1405748503 +233852,77561,Scarlett Johansson,1437021892 +233852,89745,Scarlett Johansson,1437022124 +233852,91653,feel-good,1437022278 +233852,91653,Scarlett Johansson,1437022265 +233852,106920,Scarlett Johansson,1437021841 +233852,106920,sci-fi,1437021860 +233852,109187,relatable,1427341685 +233852,109848,beautiful photography,1437021741 +233852,109848,Scarlett Johansson,1437021738 +233852,110102,Scarlett Johansson,1437021189 +233852,111360,Scarlett Johansson,1437022059 +233852,112087,mind bending,1426729664 +233852,112421,introspection,1422484865 +233852,120134,funny,1419922603 +233852,120134,genius,1419922818 +233852,120134,hi Nic!,1421303668 +233852,120134,mind-bending,1419922688 +233852,120134,mind-melting,1419922916 +233852,120134,strange,1419922671 +233852,125906,Aubrey Plaza,1444546669 +233852,125906,Aubrey Plaza fucking,1444546706 +233852,125906,not very entertaining,1444546617 +233852,125906,poor acting by Parker Posey,1444546628 +233852,125906,quirky,1444546622 +233852,125906,very sexy Aubrey Plaza,1444546624 +233852,127096,a good film could have been made with the same budget,1425434874 +233852,127096,bad,1425434895 +233852,127096,disappointing,1425434653 +233852,127096,I need a time machine so I can stop myself from seeing this movie,1425433348 +233852,127096,low budget,1425434761 +233852,127096,NOT found footage,1425433680 +233852,127096,poor production...,1425434691 +233852,133377,ridiculous,1444459697 +233852,142975,bad,1443333084 +233852,149668,Piccole labbra,1452068879 +233869,260,sci-fi,1439803754 +233919,260,EPIC,1437414480 +233919,260,the classic sci fi movie. must see.,1437414464 +233919,260,Wonderful,1437414451 +233946,22,thriller,1368436755 +233946,29,dark,1368436434 +233946,31,inspirational,1368436529 +233946,111,dark,1368436435 +233946,111,mental illness,1368436543 +233946,157,politics,1368436718 +233946,161,tense,1368436743 +233946,216,stupid,1368436730 +233946,440,politics,1368436718 +233946,474,tense,1368436743 +233946,519,franchise,1368436481 +233946,555,ensemble cast,1368436450 +233946,555,violent,1368436767 +233946,832,tense,1368436743 +233946,832,thriller,1368436755 +233946,861,police,1368436699 +233946,913,black and white,1368436376 +233946,922,black and white,1368436375 +233946,1089,violent,1368436768 +233946,1095,ensemble cast,1368436450 +233946,1104,mental illness,1368436543 +233946,1124,Henry Fonda,1283494222 +233946,1124,Husband Wife Relationship,1283494252 +233946,1124,Jane Fonda,1283494224 +233946,1124,Katherine Hepburn,1283494236 +233946,1175,dark,1368436434 +233946,1206,violent,1368436768 +233946,1214,tense,1368436743 +233946,1248,black and white,1368436375 +233946,1262,ensemble cast,1368436450 +233946,1266,oscar (best cinematography),1368436614 +233946,1287,christianity,1368436399 +233946,1357,mental illness,1368436543 +233946,1390,politics,1368436718 +233946,1396,ensemble cast,1368436450 +233946,1464,mystery,1368436555 +233946,1597,thriller,1368436755 +233946,1610,thriller,1368436755 +233946,1834,mystery,1368436555 +233946,1945,black and white,1368436376 +233946,1950,police,1368436699 +233946,2024,christianity,1368436400 +233946,2026,high school,1368436499 +233946,2058,tense,1368436743 +233946,2076,dark,1368436435 +233946,2082,inspirational,1368436529 +233946,2335,stupid,1368436731 +233946,2353,thriller,1368436755 +233946,2383,police,1368436699 +233946,2396,colin firth,1312285156 +233946,2396,Gwyneth Paltrow,1312285157 +233946,2396,love story,1312285149 +233946,2396,romance,1312285152 +233946,2396,Shakespeare,1312285146 +233946,2442,mental illness,1368436543 +233946,2490,violent,1368436767 +233946,2500,high school,1368436499 +233946,2734,mental illness,1368436543 +233946,2882,nazis,1368436578 +233946,2888,high school,1368436499 +233946,2944,ensemble cast,1368436450 +233946,2959,violent,1368436768 +233946,2985,violent,1368436768 +233946,3044,mystery,1368436555 +233946,3062,Bernhard Wicki,1283494287 +233946,3062,Darryl F. Zanuck,1283494285 +233946,3062,Henry Fonda,1283494268 +233946,3062,John Wayne,1283494271 +233946,3062,Richard Burton,1283494309 +233946,3062,Sean Connery,1283494272 +233946,3062,World War II,1283494275 +233946,3146,stupid,1368436731 +233946,3178,inspirational,1368436529 +233946,3256,tense,1368436743 +233946,3256,thriller,1368436755 +233946,3273,franchise,1368436482 +233946,3362,police,1368436699 +233946,3386,conspiracy theory,1283324877 +233946,3386,docudrama,1283324881 +233946,3386,John F. Kennedy,1283324872 +233946,3435,black and white,1368436375 +233946,3440,franchise,1368436481 +233946,3468,black and white,1368436375 +233946,3519,nazis,1368436578 +233946,3566,christianity,1368436399 +233946,3683,dark,1368436434 +233946,3980,inspirational,1368436530 +233946,3985,Based on book,1283494393 +233946,3985,Donald Sutherland,1283494377 +233946,3985,John Sturges,1283494380 +233946,3985,Michael Caine,1283494390 +233946,3985,World War II,1283494387 +233946,4019,inspirational,1368436529 +233946,4033,Bruce Greenwood,1283324955 +233946,4033,cuban missile crisis,1283324958 +233946,4033,John F. Kennedy,1283324951 +233946,4033,Kevin Costner,1283324952 +233946,4033,politics,1283324964 +233946,4388,stupid,1368436731 +233946,4865,dark,1368436435 +233946,4865,mystery,1368436555 +233946,4974,stupid,1368436731 +233946,5106,high school,1368436499 +233946,5107,nazis,1368436578 +233946,5363,high school,1368436498 +233946,5785,stupid,1368436731 +233946,5989,father-son relationship,1368436468 +233946,6323,mystery,1368436555 +233946,6334,nudity (topless - notable),1368436597 +233946,6451,Peter Yates,1283762333 +233946,6451,Robert Redford,1283762330 +233946,6537,franchise,1368436481 +233946,6808,nazis,1368436578 +233946,7153,oscar (best cinematography),1368436614 +233946,7160,mental illness,1368436543 +233946,7698,Jack Lemmon,1261982523 +233946,7698,Jane Fonda,1261982525 +233946,7698,Michael Douglas,1261982531 +233946,8781,politics,1368436718 +233946,25856,Laurence Olivier,1312285440 +233946,26113,FEWER than 300 ratings,1283494146 +233946,26113,Franklin J. Schaffner,1283494095 +233946,26113,Henry Fonda,1283494090 +233946,26113,less than 300 ratings,1283494147 +233946,33660,inspirational,1368436530 +233946,51540,police,1368436699 +233946,53121,franchise,1368436481 +233946,55290,police,1368436699 +233946,63113,franchise,1368436481 +233946,64622,nazis,1368436578 +233946,74458,mystery,1368436555 +233946,87308,England,1312839993 +233946,87308,gothic,1312839993 +233946,87308,love story,1312839993 +233946,87308,romance,1312839993 +233946,87308,Victorian era,1312839993 +233958,1246,Free,1430474723 +233958,1246,Soul,1430474715 +233968,260,"action, scifi",1443922041 +233968,260,space drama,1443922064 +233969,260,hero's journey,1442393305 +233969,260,space adventure,1442393334 +233969,260,space western,1442393288 +234029,260,action,1441491167 +234029,260,space adventure,1441491178 +234038,260,"sf,science fiction",1432096078 +234038,356,bittersweet,1436938485 +234038,356,inspirational,1436938495 +234038,356,tom hanks,1436938514 +234038,356,war,1436938503 +234046,2028,Steven Spielberg,1370309878 +234046,2028,Tom Hanks,1370309882 +234046,2028,World War II,1370309881 +234046,47099,based on a true story,1370407189 +234046,47099,true story,1370407191 +234046,47099,Will Smith,1370407195 +234046,56788,based on a true story,1370407406 +234046,56788,Tom Hanks,1370407408 +234046,110603,Christianity,1398018135 +234046,110603,religious propaganda,1398018135 +234046,112552,greatness,1426646918 +234046,113103,dance,1426645943 +234046,113103,franchise,1426645943 +234046,113103,step up,1426645943 +234053,4146,action,1379136119 +234053,4146,drama,1379136119 +234110,3910,actors and acting,1353439907 +234110,3910,musicals,1353439884 +234110,4226,psychology,1353439795 +234110,4226,twist ending,1353439792 +234110,5617,actress,1353500909 +234110,5617,dark comedy,1353500881 +234110,5617,romance,1353500877 +234110,7361,psychology,1353439976 +234110,7361,surreal,1353439978 +234110,47382,dance,1353439733 +234110,69134,psychology,1353439566 +234110,69134,surreal,1353439572 +234110,81591,dance movie,1353439766 +234227,260,modern myth,1434530730 +234227,260,space opera,1434530709 +234230,750,dark comedy,1433614491 +234230,750,satire,1433614494 +234230,2571,philosophy,1433614457 +234230,2571,sci-fi,1433614468 +234246,1080,british comedy,1442097167 +234246,1080,Monty Python,1442097155 +234246,81845,based on a true story,1442097245 +234246,81845,historical,1442097223 +234246,81845,war,1442097238 +234250,2324,Heartwarming,1430628239 +234250,2324,humanism,1430628190 +234250,2324,Oscar Winner,1430628251 +234250,2324,tearjerking,1430628251 +234250,60069,artificial intelligence,1430628147 +234250,60069,beautiful scenery,1430628128 +234250,60069,love story,1430628139 +234250,60069,romance,1430628120 +234268,318,imdb top 250,1439677635 +234268,318,inspirational,1439677655 +234268,318,prison escape,1439677641 +234268,318,thought-provoking,1439677658 +234268,5995,based on a true story,1439677582 +234268,5995,holocaust,1439677575 +234268,5995,true story,1439677566 +234268,5995,war,1439677587 +234268,6934,action,1439677806 +234268,6934,man versus machine,1439677794 +234268,6934,robots,1439677797 +234268,8665,conspiracy,1439677834 +234268,8665,Matt Damon,1439677837 +234268,8665,spy,1439677840 +234268,40629,cute,1439677530 +234268,74458,Leonardo DiCaprio,1439677740 +234268,74458,Martin Scorsese,1439677748 +234268,74458,psychological,1439677757 +234268,74458,twist ending,1439677737 +234268,81834,Harry Potter,1439677699 +234268,81834,magic,1439677706 +234308,170,cyberpunk,1338955372 +234308,170,hackers,1338955346 +234308,170,Innacurrate,1338955339 +234308,185,bad acting,1338955498 +234308,185,bad plot,1338955493 +234308,185,hackers,1338955480 +234308,185,hacking,1338955488 +234308,185,simplistic,1338955506 +234308,185,unrealistic,1338955476 +234308,541,atmospheric,1338955828 +234308,541,cyberpunk,1338955835 +234308,541,future,1338955819 +234308,541,mood,1338955832 +234308,541,not true to the book,1338955810 +234308,541,overly simplistic,1338955875 +234308,541,philip k dick,1338955800 +234308,541,philosophical,1338955852 +234308,541,tech,1338955841 +234308,680,Jean-Luc Godard,1338955767 +234308,680,mood,1338955759 +234308,680,noirish,1338955754 +234308,680,stylized,1338955738 +234308,724,1990s,1338958899 +234308,724,bad ending,1338958870 +234308,724,goth,1338958884 +234308,724,magic,1338958867 +234308,724,private school,1338958861 +234308,724,supernatural,1338958864 +234308,778,exploitation,1338959425 +234308,1037,alternate reality,1338956310 +234308,1037,augmented reality,1338956305 +234308,1037,bad acting,1338956350 +234308,1037,cyberpunk,1338956290 +234308,1037,mundane characters,1338956363 +234308,1037,post humanism,1338956335 +234308,1037,psychedelic,1338956327 +234308,1037,psychic abilities,1338956317 +234308,1037,psychic powers,1338956323 +234308,1211,artistic,1338957706 +234308,1211,atmospheric,1338957690 +234308,1211,Berlin,1338957730 +234308,1211,enigmatic,1338957704 +234308,1211,lyrical,1338957694 +234308,1211,Peter Falk,1338957701 +234308,1211,surreal,1338957711 +234308,1211,Wim Wenders,1338957695 +234308,1357,insanity,1338958978 +234308,1357,Psychiatry,1338958947 +234308,1572,biting,1338957818 +234308,1572,Criterion,1338957781 +234308,1572,Jean-Luc Godard,1338957787 +234308,1953,70's new york,1338957283 +234308,1953,atmospheric,1338957291 +234308,1953,gene hackman,1338957268 +234308,1953,gritty,1338957273 +234308,2353,gene hackman,1338955525 +234308,2353,hackers,1338955539 +234308,2353,nsa,1338955594 +234308,2353,spying,1338955545 +234308,2353,surveillance,1338955534 +234308,2353,tech,1338955542 +234308,2859,atmosphere,1338956860 +234308,3362,70's new york,1338956172 +234308,3362,al pacino,1338956158 +234308,3362,atmospheric,1338956187 +234308,3362,black comedy,1338956181 +234308,3362,good characters,1338956196 +234308,3362,new york,1338956163 +234308,3362,true story,1338956199 +234308,3676,mood,1338955678 +234308,3735,70's new york,1338956220 +234308,3735,al pacino,1338956214 +234308,3735,atmospheric,1338956239 +234308,3735,true story,1338956228 +234308,3802,bad celebrity acting,1338956414 +234308,3802,cheesy morals,1338956440 +234308,3802,cyber punk,1338956397 +234308,3802,mick jagger,1338956419 +234308,3802,time travel,1338956400 +234308,3949,based on a book,1338959202 +234308,3949,exploitative,1338959393 +234308,3949,psychology,1338959192 +234308,3949,social commentary,1338959197 +234308,3949,unrealistic,1338959218 +234308,6666,hallucinatory,1338957918 +234308,6666,Luis Buñuel,1338957915 +234308,6666,surreal,1338957920 +234308,6666,wry,1338957928 +234308,7327,dreams,1338957860 +234308,7327,experimental,1338957856 +234308,7327,psychoanalysis,1338957857 +234308,7327,psychology,1338957862 +234308,26176,banned movie,1338958126 +234308,26176,controversial,1338958119 +234308,26176,Massachusetts,1338958122 +234308,26326,Alejandro Jodorowsky,1338955664 +234308,26326,symbolism,1338955646 +234308,64278,psychoanalysis,1338957886 +234308,64278,Zizek,1338957890 +234308,66279,Ben Gazzara,1338957027 +234308,66279,John Cassavetes,1338957010 +234308,66279,Peter Falk,1338957022 +234308,70862,bullshit,1338956892 +234311,344,comedy,1394415906 +234311,344,Jim Carrey,1394415894 +234311,587,Demi Moore,1394420727 +234311,587,illogical,1394420751 +234311,587,Whoopi Goldberg,1394420712 +234311,784,Jim Carrey,1394420908 +234311,1020,comedy,1394415399 +234311,1485,courtroom,1394420957 +234311,1485,Jim Carrey,1394420944 +234311,2302,comedy,1394415150 +234311,2302,entertaining,1394415139 +234311,2302,mystery,1394415165 +234311,2302,small town,1394415177 +234311,5120,ending,1394415622 +234311,6879,courtroom,1394421621 +234311,39234,feminism,1394421740 +234311,57183,Aamir Khan,1394419231 +234311,57183,parents,1394419215 +234311,83264,comedy,1394418978 +234311,83264,feel-good,1394418904 +234311,83264,kiss,1394418998 +234311,83264,romance,1394418936 +234311,83264,wedding,1394418915 +234312,296,dark comedy,1280454186 +234317,1729,Tarantino,1140387454 +234325,151,violent,1155650142 +234325,466,silly,1155650156 +234359,6783,class issues,1348162802 +234359,6783,satire,1348162802 +234359,77240,food/cooking,1348162699 +234359,77240,romance.,1348162699 +234359,77240,soundtracks,1348162699 +234360,95105,colorful,1427652135 +234360,95105,funny,1427652135 +234360,95105,kids movie for adults,1427652135 +234372,318,hope,1434454899 +234372,318,philosophy,1434454899 +234372,318,prison escape,1434454899 +234399,318,atmospheric,1290977595 +234399,318,friendship,1290977588 +234399,318,prison,1290977584 +234399,838,Jane Austen,1290761507 +234399,838,viegla jauka filmiņa,1290761542 +234399,1035,classic,1290807115 +234399,1035,musical,1290807109 +234399,1193,based on a book,1290760827 +234399,1193,great acting,1290761166 +234399,1193,Jack Nicholson,1290760831 +234399,1193,mental hospital,1290760835 +234399,1193,mental illness,1290760842 +234399,1193,Oscar (Best Actor),1290760814 +234399,1193,psychology,1290760823 +234399,1197,fantasy,1290762053 +234399,1197,funny,1290762055 +234399,1197,jauka viegla filmiņa,1290762066 +234399,1207,atmospheric,1290806611 +234399,1207,racism,1290806618 +234399,3147,great acting,1290761177 +234399,3147,Tom Hanks,1272097280 +234399,3148,abortion,1291584808 +234399,3148,coming of age,1291584811 +234399,3148,Incest,1291584801 +234399,3198,awful music,1291421341 +234399,3198,Dustin Hoffman,1291421326 +234399,4973,atmospheric,1290761413 +234399,4973,romance,1272097295 +234399,4973,surreal,1272097290 +234399,5989,comedy,1290806391 +234399,5989,funny,1290806387 +234399,5989,Leonardo DiCaprio,1290806377 +234399,5989,Tom Hanks,1290806381 +234399,6037,group sex,1291516731 +234399,6037,nude beach,1291516727 +234399,6037,threesome,1291516732 +234399,6542,cultural customs and traditions,1290761379 +234399,6542,human relationship,1290761372 +234399,6982,elegiac,1290806525 +234399,6982,INNOCENCE LOST,1290806540 +234399,8529,great acting,1290761142 +234399,8529,Tom Hanks,1290761130 +234399,8533,šņuk,1290761463 +234399,8533,Romance,1290761471 +234399,8667,polyamory,1295047411 +234399,8958,Biography,1290895853 +234399,8958,drugs,1290895873 +234399,8958,good music,1290895856 +234399,8958,great acting,1290895868 +234399,40629,18th century,1294600083 +234399,40629,cinematography,1291421442 +234399,40629,Classic,1291421482 +234399,40629,great soundtrack,1291421479 +234399,40629,Jane Austen,1291421434 +234399,40629,Keira Knightley,1291421436 +234399,40629,love,1294600087 +234399,40629,relationships,1291421461 +234399,40819,drugs,1269726607 +234399,40819,true story,1269726604 +234399,41566,Fantasy World,1290761770 +234399,41566,viegla jauka filmiņa,1290761758 +234399,42385,parkour,1269726392 +234399,44974,Ellen Page,1290806497 +234399,47382,viegla jauka filmiņa,1290761689 +234399,48394,atmospheric,1290760925 +234399,48394,fantasy,1272097253 +234399,48394,great acting,1290761155 +234399,48394,psychology,1272097256 +234399,48394,violence,1290760944 +234399,48394,world war II,1290760945 +234399,48738,great soundtrack,1294593562 +234399,48738,historical,1294593549 +234399,48738,James McAvoy,1294593409 +234399,48780,atmospheric,1290807139 +234399,48780,Christoper Nolan,1290807145 +234399,48780,teleportation,1290807151 +234399,48780,twist ending,1290807134 +234399,48997,great soundtrack,1290807184 +234399,48997,obsession,1290807166 +234399,51705,Audrey Tautou,1290761584 +234399,51705,viegla jauka filmiņa,1290761605 +234399,51834,18th century,1290761265 +234399,51834,šņuk,1290761287 +234399,51834,James McAvoy,1290761267 +234399,51834,Jane Austen,1269725545 +234399,52579,Edith Piaf,1290760877 +234399,52579,great acting,1290761068 +234399,52579,Marion Cotillard,1290760883 +234399,54259,viegla jauka filmiņa,1290761700 +234399,55052,great soundtrack,1293269900 +234399,55052,James McAvoy,1293269883 +234399,55052,Keira Knightley,1293269890 +234399,55052,Sexualized violence,1293269909 +234399,55052,Tragedy,1293269911 +234399,55052,war,1293269916 +234399,58047,Abigail Breslin,1290761626 +234399,58047,viegla jauka filmiņa,1290761622 +234399,58803,mathematics,1290806433 +234399,59501,viegla jauka filmiņa,1290761797 +234399,60950,bisexual,1290806628 +234399,60950,threesome,1290806631 +234399,64957,music,1290761312 +234399,68963,relationships,1290761344 +234399,69712,Abigail Breslin,1290806461 +234399,69712,relationships,1290806471 +234399,70599,šņuk,1290761665 +234399,71327,19th century,1290761482 +234399,71327,šņuk,1290761491 +234399,71327,romance,1290761487 +234399,73015,viegla jauka filmiņa,1290761362 +234399,80969,boarding school,1295216595 +234399,80969,Carey Mulligan,1295216617 +234399,80969,England,1295216602 +234399,80969,Keira Knightley,1295216614 +234399,81591,ballet,1294038971 +234399,81591,lesbians,1294038946 +234399,81591,madness,1294038955 +234399,81591,Natalie Portman,1294038960 +234445,260,hero's journey,1438039837 +234445,260,Science Fiction,1438039828 +234463,1035,education,1448029679 +234463,1035,happy,1448029722 +234470,260,classic,1430776860 +234470,260,sci-fi,1430776856 +234472,5878,pedro almodovar,1142738464 +234472,8376,comedy independent must-see,1142738094 +234475,26237,classic,1352448572 +234475,26237,great cinematography,1352448567 +234477,316,sci-fi,1183107893 +234477,1210,Space battle,1183107902 +234477,1240,BFI modern classic,1183107877 +234484,1288,music,1234790068 +234484,1923,Ben Stiller,1234789755 +234484,2616,comic book,1234789098 +234484,3481,music,1234788257 +234484,3897,music,1234788979 +234484,8641,awesome,1234789177 +234484,51255,british comedy,1234789115 +234497,356,bittersweet,1301492789 +234497,356,comedy,1301492787 +234497,356,psychology,1301492785 +234497,1210,war movie,1300120219 +234497,2762,thriller,1301424446 +234497,71494,01/11,1300154113 +234500,158,family,1149829636 +234500,172,Keanu Reeves,1149829633 +234500,1210,fantasy,1149829642 +234511,7256,mountain climbing,1202064270 +234511,7256,true story,1202064274 +234517,260,apocolypse,1443707098 +234559,113188,Australia,1440196996 +234559,113188,bleak,1440196978 +234559,113188,great soundtrack,1440197006 +234559,113188,post-apocalyptic,1440196981 +234559,113188,Road Trip,1440196994 +234559,113188,scenery,1440196985 +234564,86892,action thriller,1425231935 +234564,86892,drama,1425231935 +234564,86892,revenge,1425231935 +234571,32,Brad Pitt,1240994917 +234571,32,Bruce Willis,1240994919 +234571,32,complicated,1240994947 +234571,32,depressing,1240994944 +234571,32,dystopia,1240994927 +234571,32,genetics,1240994924 +234571,32,Post apocalyptic,1240900226 +234571,32,post-apocalyptic,1240994928 +234571,32,psychology,1240994949 +234571,32,remake,1240994938 +234571,32,sci-fi,1240994930 +234571,32,time travel,1240900232 +234571,32,twist ending,1240994932 +234571,44,video game adaptation,1166892485 +234571,47,crime,1240990858 +234571,47,investigation,1240990862 +234571,47,Morgan Freeman,1240990864 +234571,47,serial killer,1240990868 +234571,123,cops,1255287428 +234571,123,good music,1255287423 +234571,123,Hong Kong,1255287448 +234571,123,loneliness,1255287431 +234571,123,narrated,1255287436 +234571,170,Angelina Jolie,1240897931 +234571,170,awesome soundtrack,1240897934 +234571,170,computers,1240897946 +234571,170,Jonny Lee Miller,1240897968 +234571,170,video games,1240897973 +234571,196,Nudity (Topless - Notable),1240994979 +234571,196,Nudity (Topless),1240994974 +234571,208,apocalypse,1241249083 +234571,208,post apocalypse,1241249090 +234571,208,stupid,1241249094 +234571,218,Drew Barrymore,1240994368 +234571,218,Mary-Louise Parker,1240994377 +234571,218,Nudity (Topless - Notable),1240994388 +234571,218,Whoopi Goldberg,1240994379 +234571,293,assassin,1240994258 +234571,293,assassins,1240994260 +234571,293,crime,1240994262 +234571,293,drama,1240994264 +234571,293,hitman,1240994267 +234571,293,Jean Reno,1240994270 +234571,293,Luc Besson,1240994271 +234571,293,Natalie Portman,1240994273 +234571,296,Bruce Willis,1240991959 +234571,296,dark comedy,1240991973 +234571,296,drugs,1240991974 +234571,296,nonlinear,1240991971 +234571,296,notable soundtrack,1240991982 +234571,296,organized crime,1240991976 +234571,296,Quentin Tarantino,1240991968 +234571,296,Samuel L. Jackson,1240991965 +234571,296,violence,1240991978 +234571,316,space,1166781041 +234571,318,classic,1166778562 +234571,318,drama,1240899159 +234571,318,friendship,1240899156 +234571,318,inspirational,1240899165 +234571,318,Morgan Freeman,1240899140 +234571,318,narrated,1240899173 +234571,318,prison,1240899134 +234571,318,prison escape,1240899133 +234571,327,based on a comic,1240900138 +234571,327,hilarious,1240900118 +234571,327,Lori Petty,1240900156 +234571,327,mutants,1240900162 +234571,327,Naomi Watts,1240900148 +234571,327,post-apocalyptic,1240900174 +234571,337,Johnny Depp,1241249436 +234571,337,Leonardo DiCaprio,1241249435 +234571,337,mental illness,1241249450 +234571,344,comedy,1241249044 +234571,344,Dumb,1241249047 +234571,344,Jim Carrey,1241249066 +234571,344,very dumb,1241249054 +234571,393,video game adaptation,1166892651 +234571,427,doctors,1256557388 +234571,427,erotic thriller,1256557391 +234571,427,obsession,1256557385 +234571,441,1970s,1240992288 +234571,441,drugs,1240992274 +234571,441,HIGH SCHOOL LIFE,1240992269 +234571,441,marijuana,1240992278 +234571,441,Milla Jovovich,1240992281 +234571,441,PEER PRESSURE,1240992285 +234571,442,dumb dystopia,1240991073 +234571,442,dystopia,1240991041 +234571,442,hilarious,1240991059 +234571,442,Sandra Bullock,1240991049 +234571,442,Sylvester Stallone,1240991053 +234571,442,Wesley Snipes,1240991054 +234571,480,Dinosaur,1240992519 +234571,480,dinosaurs,1240992517 +234571,480,Michael Crichton,1240992534 +234571,480,Steven Spielberg,1240992528 +234571,502,hawk,1240995260 +234571,502,high school,1240995258 +234571,502,martial arts,1240995251 +234571,502,monks,1240995256 +234571,519,crappy sequel,1166877866 +234571,519,cyborgs,1166878419 +234571,539,chick flick,1166782036 +234571,546,comedy,1240901002 +234571,546,funny,1240900998 +234571,546,video game adaptation,1166892632 +234571,565,slow,1166781398 +234571,589,sci-fi,1166781013 +234571,589,time travel,1166878453 +234571,733,Alcatraz,1241248952 +234571,733,biological warfare,1241248956 +234571,733,Nicolas Cage,1241248943 +234571,733,Sean Connery,1241248946 +234571,733,terrorism,1241248969 +234571,735,zombies,1166779388 +234571,750,classic,1166780778 +234571,750,nuclear war,1166780776 +234571,778,addiction,1240992477 +234571,778,AIDS,1240992479 +234571,778,black comedy,1240992485 +234571,778,dark comedy,1240992487 +234571,778,drugs,1240992489 +234571,778,heroin,1240992493 +234571,780,alien invasion,1166781698 +234571,780,aliens,1166781696 +234571,829,bugs,1288011062 +234571,829,Megan Ward,1288011053 +234571,835,Angelina Jolie,1240899743 +234571,835,drugs,1240899758 +234571,835,friendship,1240899753 +234571,835,juvenile deliquent,1240899779 +234571,968,zombies,1166817585 +234571,1005,sport:ice hockey,1266924698 +234571,1034,Kiefer Sutherland,1240995134 +234571,1034,Reese Witherspoon,1240995132 +234571,1089,organized crime,1240993190 +234571,1089,Quentin Tarantino,1240993193 +234571,1090,1960s,1240993177 +234571,1090,Charlie Sheen,1240993167 +234571,1090,Oliver Stone,1240993160 +234571,1090,Vietnam War,1240993156 +234571,1101,Cheesy,1276417706 +234571,1101,hilarious,1240992237 +234571,1101,Meg Ryan,1240992216 +234571,1101,seen more than once,1240992250 +234571,1101,so bad it's good,1276417712 +234571,1101,Tom Cruise,1240992214 +234571,1130,werewolf,1166779912 +234571,1193,drama,1240899395 +234571,1193,Jack Nicholson,1240899392 +234571,1193,mental illness,1240899397 +234571,1208,war,1166780266 +234571,1214,aliens,1287994266 +234571,1214,atmospheric,1287994269 +234571,1214,classic,1287994270 +234571,1214,Ridley Scott,1287994277 +234571,1214,sci-fi,1287994274 +234571,1214,space,1287994283 +234571,1214,space travel,1287994285 +234571,1215,black comedy,1240900542 +234571,1215,comedy,1240900295 +234571,1215,cult film,1166779504 +234571,1215,horror,1240900528 +234571,1215,Sam Raimi,1240900529 +234571,1215,time travel,1240900535 +234571,1240,sci-fi,1166780405 +234571,1240,time travel,1166780403 +234571,1241,cult film,1166778644 +234571,1241,lawn mower,1240898268 +234571,1241,zombie,1240898279 +234571,1241,zombies,1240898278 +234571,1255,alien invasion,1240992913 +234571,1255,aliens,1240992897 +234571,1255,cult film,1240992910 +234571,1255,Peter Jackson,1240992898 +234571,1258,cult film,1166781075 +234571,1261,Bruce Campbell,1240899873 +234571,1261,cult classic,1166779127 +234571,1261,dark humor,1240899900 +234571,1261,demons,1240899901 +234571,1261,humorous,1240899897 +234571,1261,Sam Raimi,1240899872 +234571,1261,splatter,1166778983 +234571,1265,boring,1240991462 +234571,1274,anime,1166877264 +234571,1291,Adventure,1249556737 +234571,1291,archaeology,1249556734 +234571,1291,Harrison Ford,1249556731 +234571,1291,Nazis,1249556744 +234571,1321,werewolves,1240900260 +234571,1387,classic,1166779903 +234571,1387,shark,1166779901 +234571,1431,comedy for kids,1260212704 +234571,1431,ninja,1260212705 +234571,1431,parody,1260212711 +234571,1485,comedy,1240994182 +234571,1509,coming of age,1274176417 +234571,1509,drugs,1274176418 +234571,1509,homophobia,1274176427 +234571,1509,lesbian,1274176415 +234571,1527,Bruce Willis,1240899810 +234571,1527,great visuals,1240899826 +234571,1527,humorous,1240899829 +234571,1527,Luc Besson,1240899814 +234571,1527,Milla Jovovich,1240899813 +234571,1527,sci-fi,1240899817 +234571,1550,Charlize Theron,1278932405 +234571,1550,Jeff Daniels,1278932409 +234571,1550,Jessica Steen,1278932411 +234571,1550,Michael Richards,1278932415 +234571,1556,crappy sequel,1166781824 +234571,1570,cult film,1166891437 +234571,1573,John Travolta,1240993129 +234571,1573,Nicolas Cage,1240993127 +234571,1573,ridiculous,1240993134 +234571,1580,alien,1241249835 +234571,1580,aliens,1241249832 +234571,1580,Tommy Lee Jones,1241249825 +234571,1580,Will Smith,1241249824 +234571,1584,aliens,1240990775 +234571,1584,beautiful,1240990797 +234571,1584,first contact,1240990790 +234571,1584,Jodie Foster,1240990776 +234571,1584,outer space,1240990780 +234571,1586,Demi Moore,1240991559 +234571,1586,military,1240991561 +234571,1586,Ridley Scott,1240991566 +234571,1590,classic,1247584036 +234571,1590,sci-fi,1247584054 +234571,1590,space,1247584049 +234571,1676,Alien Invasion,1240900971 +234571,1676,aliens,1240900973 +234571,1676,hilarious,1240900968 +234571,1681,bad cgi,1166892476 +234571,1681,video game adaptation,1166892487 +234571,1699,creepy,1241249788 +234571,1699,disturbing,1241249790 +234571,1699,quirky,1241249798 +234571,1699,Underrated,1241249801 +234571,1704,genius,1259917685 +234571,1704,Matt Damon,1259917681 +234571,1721,atmospheric,1286766432 +234571,1721,disaster,1240992857 +234571,1721,drama,1240992861 +234571,1721,Leonardo DiCaprio,1240992870 +234571,1721,love story,1286766445 +234571,1721,Nudity (Topless - Notable),1286766441 +234571,1721,romance,1286766447 +234571,1732,comedy,1240990982 +234571,1732,dark comedy,1240990980 +234571,1732,drugs,1240990975 +234571,1760,Roger Moore,1278932358 +234571,1862,Nudity (Full Frontal),1240995013 +234571,1862,Nudity (Rear),1240995015 +234571,1884,Benicio Del Toro,1240991797 +234571,1884,drugs,1240991789 +234571,1884,Hunter S. Thompson,1240991811 +234571,1884,Johnny Depp,1240991800 +234571,1884,road movie,1240991807 +234571,1894,adventure,1249680451 +234571,1894,Anne Heche,1249680422 +234571,1894,bad to the extreme,1249680448 +234571,1894,boring,1249680501 +234571,1894,chick flick,1249680474 +234571,1894,Comedy,1249680481 +234571,1894,crap,1249680479 +234571,1894,David Schwimmer,1249680425 +234571,1894,Harrison Ford,1249680428 +234571,1894,Romance,1249680484 +234571,1909,aliens,1250097838 +234571,1909,Based on a TV show,1250097849 +234571,1909,conspiracy,1250097840 +234571,1909,David Duchovny,1250097853 +234571,1909,Gillian Anderson,1250097844 +234571,1909,science fiction,1250097863 +234571,1909,scifi,1250097841 +234571,1909,virus,1250097861 +234571,1909,X-Files!!,1250097855 +234571,2003,Gizmo,1241249342 +234571,2019,atmospheric,1240898055 +234571,2019,remade,1240898058 +234571,2019,samurai,1240898056 +234571,2028,war,1240990761 +234571,2028,World War II,1240990758 +234571,2042,sport:ice hockey,1266924705 +234571,2082,sport:ice hockey,1266924690 +234571,2115,action,1249556774 +234571,2115,archaeology,1249556777 +234571,2115,Harrison Ford,1249556799 +234571,2147,Daryl Hannah,1254517524 +234571,2147,James Remar,1254517608 +234571,2147,narrated,1254517585 +234571,2147,no dialogue,1254517528 +234571,2159,serial killer,1166781875 +234571,2167,vampires,1166781440 +234571,2232,maze,1241249496 +234571,2232,psychological,1241249483 +234571,2232,psychology,1241249480 +234571,2275,cheesy,1245850115 +234571,2275,guitar,1245850118 +234571,2275,post-apocalyptic,1245850135 +234571,2275,Retarded,1245850126 +234571,2288,70mm,1166780398 +234571,2288,aliens,1166811810 +234571,2288,John Carpenter,1166780394 +234571,2288,shape shifter,1166811795 +234571,2329,Edward Norton,1240900483 +234571,2329,Neo-Nazis,1240900489 +234571,2329,powerful ending,1240900499 +234571,2329,prison,1240900494 +234571,2329,thought-provoking,1240900497 +234571,2353,corruption,1240991005 +234571,2353,surveillance,1240990996 +234571,2353,Will Smith,1240990998 +234571,2363,anti-war,1240898300 +234571,2363,giant monster,1240898295 +234571,2366,classic,1274175862 +234571,2366,dinosaurs,1274175864 +234571,2366,island,1274175877 +234571,2366,monster,1274175866 +234571,2366,stop motion,1274175870 +234571,2367,Jessica Lange,1254517395 +234571,2367,monster,1254517391 +234571,2367,Nudity (Topless - Brief),1254517383 +234571,2377,70mm,1166780601 +234571,2377,alien invasion,1240994725 +234571,2377,aliens,1240994728 +234571,2377,Nudity (Full Frontal - Notable),1240994730 +234571,2377,vampires,1240994732 +234571,2505,Nicolas Cage,1240993489 +234571,2541,based on a book,1240994879 +234571,2542,black comedy,1292299839 +234571,2542,British,1292299841 +234571,2542,dark comedy,1292299843 +234571,2542,Guy Ritchie,1292299845 +234571,2542,Jason Statham,1292299849 +234571,2542,organized crime,1292299847 +234571,2571,sci-fi,1166779769 +234571,2596,drugs,1240993980 +234571,2596,good message,1240993984 +234571,2596,high school,1240994002 +234571,2596,Matthew Lillard,1240993999 +234571,2596,narrated,1240993989 +234571,2596,punk,1240993996 +234571,2596,punks,1240993993 +234571,2596,salt lake city,1254517653 +234571,2606,dark comedy,1240899466 +234571,2606,Jessica Alba,1240899436 +234571,2606,Seth Green,1240899444 +234571,2606,weed,1282733557 +234571,2621,downbeat,1240900392 +234571,2655,werewolves,1166781294 +234571,2657,awesome soundtrack,1240899253 +234571,2657,cult film,1166891489 +234571,2657,musical,1240899237 +234571,2657,weird,1240899240 +234571,2671,chick flick,1166781186 +234571,2671,girlie movie,1166781183 +234571,2699,spiders,1240900282 +234571,2712,Nicole Kidman,1240990908 +234571,2712,Tom Cruise,1240990905 +234571,2712,voyeurism,1240990919 +234571,2713,giant alligator,1254122755 +234571,2762,Atmospheric,1285451125 +234571,2762,Drama,1285451150 +234571,2762,ghosts,1285451127 +234571,2762,ghosts/afterlife,1285451154 +234571,2762,imdb top 250,1285451145 +234571,2762,suspense,1285451139 +234571,2762,twist ending,1285451135 +234571,2793,werewolf,1240991933 +234571,2901,cult classic,1166781166 +234571,2916,Arnold Schwarzenegger,1240990926 +234571,2916,conspiracy,1240990936 +234571,2916,dystopia,1240990930 +234571,2916,virtual reality,1240990933 +234571,2959,Brad Pitt,1240899788 +234571,2959,Edward Norton,1240899785 +234571,2959,mental illness,1240899795 +234571,2959,schizophrenia,1240899801 +234571,2959,surreal,1166779227 +234571,2959,violence,1240899803 +234571,2985,cyborgs,1166878421 +234571,2986,crappy sequel,1166781123 +234571,2986,cyborgs,1166781120 +234571,3013,zombies,1166780856 +234571,3018,mad scientist,1166779715 +234571,3018,zombies,1166779714 +234571,3019,drugs,1240993465 +234571,3063,Drew Barrymore,1240994715 +234571,3186,Angelina Jolie,1240899562 +234571,3186,Brittany Murphy,1240899573 +234571,3186,Clea DuVall,1240899567 +234571,3186,mental illness,1240899586 +234571,3186,psychology,1240899605 +234571,3186,suicide,1240899610 +234571,3186,winona ryder,1240899582 +234571,3409,franchise,1266924502 +234571,3409,gore,1253173142 +234571,3409,premonition,1259745915 +234571,3418,Drama,1166781000 +234571,3418,rape,1166780998 +234571,3438,Based on a cartoon,1166778547 +234571,3438,ninja,1242921179 +234571,3439,Kasey Jones,1240898824 +234571,3440,comic book,1166779616 +234571,3440,ninja,1240991923 +234571,3556,based on a book,1244274672 +234571,3556,coming of age,1244274697 +234571,3556,high school,1244274678 +234571,3556,Kirsten Dunst,1244274680 +234571,3556,narrated,1244274689 +234571,3556,psychology,1244274686 +234571,3556,suburbia,1244274681 +234571,3556,suicide,1244274674 +234571,3556,visually appealing,1244274684 +234571,3688,cult film,1240993442 +234571,3688,high school,1240993444 +234571,3688,teen,1240993446 +234571,3702,post apocalyptic,1166779792 +234571,3703,Post apocalyptic,1166778609 +234571,3704,crappy sequel,1166779789 +234571,3704,Post apocalyptic,1166779785 +234571,3717,Angelina Jolie,1241249305 +234571,3717,car chase,1166779927 +234571,3717,carjacking,1166779929 +234571,3717,cars,1241249320 +234571,3717,crime,1241249322 +234571,3717,Nicolas Cage,1241249311 +234571,3722,bad,1255855205 +234571,3722,not funny,1255855205 +234571,3722,unfunny,1255855205 +234571,3786,Cathy Moriarty,1242921280 +234571,3786,Clea DuVall,1242921275 +234571,3786,coming of age,1242921260 +234571,3786,cute,1242921318 +234571,3786,lesbian,1242921255 +234571,3786,queer,1242921330 +234571,3786,sexuality,1242921337 +234571,3835,Alicia Silverstone,1279643885 +234571,3835,lolita,1279643927 +234571,3835,obsession,1279644007 +234571,3897,bittersweet,1240900333 +234571,3897,coming of age,1240900337 +234571,3897,journalism,1240900330 +234571,3897,music,1240900352 +234571,3915,boxing,1240993971 +234571,3915,Michelle Rodriguez,1240993967 +234571,3949,addiction,1240994113 +234571,3949,based on a book,1240994114 +234571,3949,dark,1240994125 +234571,3949,depressing,1240994123 +234571,3949,drug abuse,1240994139 +234571,3949,drugs,1240994110 +234571,3949,heroin,1240994144 +234571,3949,independent film,1240994150 +234571,3949,loneliness,1240994137 +234571,3949,prostitution,1240994132 +234571,3949,psychology,1240994129 +234571,3992,coming of age,1279653302 +234571,3992,coming-of-age,1279653268 +234571,3992,Monica Bellucci,1279653262 +234571,3992,Nudity (Full Frontal - Notable),1279653316 +234571,3992,Nudity (Full Frontal),1279653315 +234571,3992,sexuaity,1279653319 +234571,3992,wartime,1279653324 +234571,3996,amazing photography,1240990694 +234571,3996,martial arts,1240990685 +234571,3996,overrated,1166780144 +234571,4008,boring,1240991333 +234571,4008,Tom Cruise,1240991325 +234571,4011,boxing,1240993086 +234571,4011,Brad Pitt,1240993075 +234571,4011,Crime,1240993087 +234571,4011,fighting,1240993091 +234571,4011,funny as hell,1240993094 +234571,4011,Great dialogue,1240993095 +234571,4011,Guy Ritchie,1240993077 +234571,4011,gypsy accent,1240993078 +234571,4011,Hilarious,1240993098 +234571,4011,Jason Statham,1240993080 +234571,4068,cheerleaders,1296990675 +234571,4068,cheerleading,1296990678 +234571,4068,crime,1296990680 +234571,4068,teen pregnancy,1296990690 +234571,4105,Bruce Campbell,1240899839 +234571,4105,Cult classic,1166779118 +234571,4105,dark humor,1240899859 +234571,4105,demons,1240899916 +234571,4105,Sam Raimi,1240899877 +234571,4109,bad adaptation,1281257966 +234571,4109,based on a book,1281257814 +234571,4109,Kristy Swanson,1281257793 +234571,4226,memory,1240992166 +234571,4226,nonlinear,1240992150 +234571,4226,twist ending,1240992155 +234571,4340,Rob Schneider,1240993949 +234571,4340,stupid,1240993955 +234571,4355,Nudity (Rear),1266924790 +234571,4355,Nudity (Topless),1266924788 +234571,4355,sport:ice hockey,1266924780 +234571,4367,adventure,1240993352 +234571,4367,Angelina Jolie,1240993353 +234571,4367,video game adaptation,1166892712 +234571,4369,cars,1240993402 +234571,4369,Michelle Rodriguez,1240993372 +234571,4369,Paul Walker,1240993421 +234571,4369,street race,1240993407 +234571,4369,Stupid as Hell,1240993397 +234571,4369,Vin Diesel,1240993417 +234571,4389,boarding school,1274176696 +234571,4389,Friendship,1240900716 +234571,4389,Girls' Boarding School,1240900707 +234571,4389,lesbian,1240900664 +234571,4389,lesbians hiding their identities,1240900664 +234571,4389,Nudity (Topless),1274176397 +234571,4389,suicide,1240900686 +234571,4390,rape,1166782288 +234571,4390,unsimulated sex scenes,1166782288 +234571,4425,werewolf,1240995312 +234571,4425,werewolves,1240995314 +234571,4437,atmospheric,1240900081 +234571,4437,creepy,1240900082 +234571,4437,Dario Argento,1240900085 +234571,4437,dreamlike,1240900087 +234571,4437,horror,1240900096 +234571,4450,Bijou Phillips,1295841460 +234571,4450,Brad Renfro,1295841473 +234571,4450,bullying,1295841483 +234571,4450,Kelli Garner,1295841510 +234571,4450,Larry Clark,1295842265 +234571,4450,Leo Fitzpatrick,1295842289 +234571,4450,Nick Stahl,1295842275 +234571,4450,Rachel Miner,1295841477 +234571,4450,rape,1295841479 +234571,4450,true story,1295842311 +234571,4497,zombies,1166781378 +234571,4514,werewolf,1240995318 +234571,4514,werewolves,1240995320 +234571,4532,zombies,1166779708 +234571,4533,zombies,1166817542 +234571,4552,cult film,1166779308 +234571,4553,humorous,1240898764 +234571,4553,John Carpenter,1240898775 +234571,4553,silly,1240898767 +234571,4562,Jeffrey Jones,1278932200 +234571,4562,Michael Caine,1278932197 +234571,4562,Sherlock Holmes,1278932202 +234571,4638,dinosaurs,1240991362 +234571,4732,stupid :),1254122739 +234571,4776,denzel washington,1240991707 +234571,4776,police corruption,1240991700 +234571,4819,Jordan Hinson,1266924622 +234571,4819,sport:figure skating,1266924658 +234571,4819,sport:ice hockey,1266924658 +234571,4848,Atmospheric,1246109136 +234571,4848,dark,1246109149 +234571,4848,David Lynch,1246109122 +234571,4848,drama,1246109147 +234571,4848,dreamlike,1246109137 +234571,4848,lesbian,1246109126 +234571,4848,mindfuck,1246109128 +234571,4848,surrealism,1246109133 +234571,4974,high school,1240991901 +234571,4995,math,1241249265 +234571,4995,mathematics,1241249267 +234571,4995,mental illness,1241249259 +234571,4995,psychology,1241249248 +234571,4995,schizophrenia,1241249252 +234571,5010,war,1166780861 +234571,5160,zombies,1166817633 +234571,5165,zombies,1166817546 +234571,5178,Alicia Witt,1240898122 +234571,5178,black and white and color,1240992378 +234571,5178,friendship,1240898149 +234571,5178,prison,1240992328 +234571,5178,Renée Humphrey,1240898096 +234571,5183,kinda boring,1166781716 +234571,5195,zombies,1166817637 +234571,5201,cannibals,1166780760 +234571,5219,video game adaptation,1166892776 +234571,5219,zombies,1166781584 +234571,5222,lesbian,1274176350 +234571,5222,queer,1274176374 +234571,5254,vampires,1166781437 +234571,5292,sport:ice hockey,1266924738 +234571,5413,zombies,1150295321 +234571,5433,werewolves,1166782045 +234571,5465,Ayumi Ito,1276769618 +234571,5465,Hayato Ichihara,1276769618 +234571,5465,Izumi Inamori,1276769631 +234571,5465,Miwako Ichikawa,1276769631 +234571,5465,Shûgo Oshinari,1276769618 +234571,5465,Shunji Iwai,1276769636 +234571,5465,Takao Osawa,1276769618 +234571,5542,zombies,1166817551 +234571,5555,werewolves,1166782024 +234571,5574,cars,1240992808 +234571,5574,Good action,1240992799 +234571,5574,Jason Statham,1240992800 +234571,5574,Qi Shu,1240992820 +234571,5668,Alison Lohman,1240992037 +234571,5668,Coming Of Age,1240992120 +234571,5668,Foster Home,1240992092 +234571,5668,Michelle Pfeiffer,1240992043 +234571,5668,prison,1240992092 +234571,5668,Renée Zellweger,1240992053 +234571,5668,Robin Wright Penn,1240992056 +234571,5679,remake,1241249218 +234571,5690,anime,1166816654 +234571,5717,cannibals,1166811723 +234571,5797,werewolves,1166780798 +234571,5810,Brittany Murphy,1240994322 +234571,5810,Eminem,1240994324 +234571,5810,hip hop,1240994307 +234571,5833,action,1240899943 +234571,5833,atmospheric,1240899937 +234571,5833,horror,1240899951 +234571,5833,werewolves,1240899931 +234571,5891,Camille Keaton,1240899535 +234571,5891,disturbing,1240899478 +234571,5891,downbeat,1240899480 +234571,5891,rape,1274175939 +234571,5891,revenge,1240899487 +234571,5909,disturbing,1240898355 +234571,5909,incest,1240898369 +234571,5909,necrophilia,1240898366 +234571,5909,Takashi Miike,1240898387 +234571,5909,violence,1240898364 +234571,5942,girlie movie,1166781305 +234571,5995,Adrien Brody,1351545504 +234571,6009,Takashi Miike,1240898713 +234571,6016,drugs,1240991497 +234571,6016,gangs,1240991505 +234571,6016,multiple storylines,1240991527 +234571,6016,violence,1240991506 +234571,6058,franchise,1266924506 +234571,6058,gore,1253173162 +234571,6058,premonition,1259745929 +234571,6222,awful adaptation,1257626219 +234571,6222,based on a book,1257626222 +234571,6222,depression,1257626226 +234571,6222,Nudity (Full Frontal - Notable),1257626232 +234571,6222,Nudity (Full Frontal),1257626234 +234571,6223,addiction,1286255162 +234571,6223,Brittany Murphy,1286255149 +234571,6223,choppy style,1286255165 +234571,6223,drugs,1286255161 +234571,6223,Jason Schwartzman,1286255155 +234571,6223,John Leguizamo,1286255158 +234571,6223,Mena Suvari,1286255151 +234571,6223,Mickey Rourke,1286255153 +234571,6223,Nudity (Full Frontal - Notable),1286255172 +234571,6223,Nudity (Full Frontal),1286255170 +234571,6242,remadeAs:The Ring (2002),1240898026 +234571,6287,Adam Sandler,1241591277 +234571,6287,everything,1249926392 +234571,6287,Jack Nicholson,1249926405 +234571,6287,John Turturro,1241591309 +234571,6287,Marisa Tomei,1241591311 +234571,6287,not worth a star,1241591298 +234571,6287,Peter Segal,1241591305 +234571,6287,Playlist,1249926380 +234571,6287,psychology,1249926375 +234571,6291,Depressing,1279563297 +234571,6291,friendship transcending death,1279563301 +234571,6291,Oksana Akinshina,1279563346 +234571,6291,poverty,1279563386 +234571,6291,prostitution,1279563330 +234571,6291,Russian,1279563321 +234571,6291,social commentary,1279563305 +234571,6291,suicide,1279563355 +234571,6291,Swedish,1279563306 +234571,6329,Joseph Gordon-Levitt,1256557625 +234571,6329,mental illness,1256557607 +234571,6329,Mental Institution,1256557607 +234571,6333,comic book,1166781792 +234571,6365,crappy sequel,1166781857 +234571,6378,remake,1166780620 +234571,6379,cannibalism,1240993051 +234571,6379,Eliza Dushku,1240993048 +234571,6383,crappy sequel,1166781507 +234571,6502,horror,1241249185 +234571,6502,infection,1241249190 +234571,6502,london,1241249195 +234571,6502,mmm... brains...,1241249160 +234571,6502,post-apocalyptic,1241249150 +234571,6502,thriller,1241249187 +234571,6502,Zombie,1241249156 +234571,6502,zombies,1241249154 +234571,6537,time travel,1166780415 +234571,6537,time-travel,1166878451 +234571,6539,action,1240899305 +234571,6539,adventure,1240899302 +234571,6539,comedy,1240899300 +234571,6539,funny,1240899298 +234571,6539,Johnny Depp,1240899313 +234571,6539,Keira Knightley,1240899315 +234571,6539,pirates,1240899324 +234571,6564,adventure,1240991887 +234571,6564,Angelina Jolie,1240991843 +234571,6564,boring,1240991847 +234571,6564,video game adaptation,1166892708 +234571,6586,crappy sequel,1166781472 +234571,6711,boring,1240991481 +234571,6711,slow,1166781665 +234571,6731,zombies,1166780096 +234571,6744,Jim Carrey,1240993306 +234571,6744,Lauren Hutton,1240993310 +234571,6744,vampire,1240993321 +234571,6744,vampires,1240993319 +234571,6754,gothic,1240991673 +234571,6754,vampire,1240991659 +234571,6754,vampires,1240991650 +234571,6754,werewolf,1240991663 +234571,6754,werewolves,1240991652 +234571,6755,B-movie,1166781942 +234571,6755,elvis,1166781981 +234571,6755,kinda boring,1166781981 +234571,6755,mummy,1166781944 +234571,6764,Amazon,1250096471 +234571,6764,Dwayne Johnson,1250096459 +234571,6764,jungle,1250096477 +234571,6764,Seann William Scott,1250096463 +234571,6820,Emily Perkins,1250096841 +234571,6820,high school,1240899633 +234571,6820,Katherine Isabelle,1240899627 +234571,6820,werewolf,1240899632 +234571,6820,werewolves,1240899630 +234571,6872,video game adaptation,1166892875 +234571,6872,Worst movie ever!,1166892875 +234571,6934,crappy sequel,1166781852 +234571,7022,controversial,1240992685 +234571,7022,friends,1240992698 +234571,7022,island,1240992724 +234571,7022,Japan,1240992677 +234571,7022,martial arts,1240992682 +234571,7022,school,1240992713 +234571,7022,surveillance,1240992701 +234571,7022,survival,1240992703 +234571,7022,Takeshi Kitano,1240992706 +234571,7034,adolescence,1240900931 +234571,7034,coming of age,1240900934 +234571,7034,lesbian,1240900939 +234571,7034,prejudice,1240900949 +234571,7034,school,1240900953 +234571,7034,sexuality,1240900940 +234571,7090,amazing photography,1166778618 +234571,7090,martial arts,1166778620 +234571,7142,bad acting,1282733533 +234571,7142,dance,1282733516 +234571,7142,hip hop,1282733518 +234571,7142,Jessica Alba,1282733513 +234571,7142,stupid dance movie,1282733526 +234571,7202,zombies,1166780221 +234571,7235,extremely violent,1240898624 +234571,7235,splatter,1166779909 +234571,7235,Takashi Miike,1240898628 +234571,7303,adapted from:book,1275936109 +234571,7303,bad adaptation,1276769500 +234571,7303,based on a true story,1275936105 +234571,7303,Millie Perkins,1275936135 +234571,7317,comedy,1240993929 +234571,7317,Kristin Kreuk,1240993920 +234571,7317,Michelle Trachtenberg,1240993915 +234571,7317,road trip,1240993917 +234571,7317,Scott Mechlowicz,1240993925 +234571,7345,Hannah Spearritt,1245294655 +234571,7360,mmm... brains...,1240991282 +234571,7360,remake,1240991286 +234571,7360,zombie,1240991296 +234571,7360,zombies,1240991288 +234571,7361,Charlie Kaufman,1240993009 +234571,7361,Jim Carrey,1240993000 +234571,7361,Kate Winslet,1240993017 +234571,7361,memory,1240993026 +234571,7361,nonlinear,1240993029 +234571,7361,sci-fi,1240992984 +234571,7361,surreal,1240993035 +234571,7387,zombies,1166779143 +234571,7413,bad movie,1254517471 +234571,7438,Quentin Tarantino,1241249121 +234571,7438,Uma Thurman,1241249131 +234571,7454,vampires,1166781525 +234571,7502,military,1296233945 +234571,7502,not a movie,1296233937 +234571,7502,World War II,1296233941 +234571,7782,jungle,1166781049 +234571,7982,atmospheric,1240897893 +234571,8019,atmospheric,1240898240 +234571,8019,remade,1240898245 +234571,8142,Takashi Miike,1166779140 +234571,8225,zombies,1166780582 +234571,8370,Blind Swordsman,1166892445 +234571,8581,geeks,1166781155 +234571,8589,history,1166778541 +234571,8589,independence,1166778540 +234571,8589,war,1166778536 +234571,8604,Bernard Farcy,1240899097 +234571,8604,car chase,1240899006 +234571,8604,cars,1240899008 +234571,8604,Emma Wiklund,1240899089 +234571,8604,Frédéric Diefenthal,1240899079 +234571,8604,humor,1240899012 +234571,8604,Marion Cotillard,1240899069 +234571,8604,Samy Naceri,1240899063 +234571,8644,android(s)/cyborg(s),1261643436 +234571,8644,artificial intelligence,1261643433 +234571,8644,based on a book,1261643440 +234571,8644,robots,1261643448 +234571,8644,sci-fi,1261643444 +234571,8644,Will Smith,1261643450 +234571,8736,adolescence,1279542228 +234571,8736,Dennis Hopper,1279542213 +234571,8736,Drug Abuse,1279542299 +234571,8736,incest,1279542279 +234571,8736,Independent Film,1279542325 +234571,8736,Linda Manz,1279542220 +234571,8736,Patricide,1279542350 +234571,8736,punk rock,1279542312 +234571,8736,Runaway,1279542361 +234571,8736,tomboy,1279542279 +234571,8803,atmospheric,1240899970 +234571,8803,school,1240899972 +234571,8807,John Cho,1240993254 +234571,8807,Kal Penn,1240993261 +234571,8807,marijuana,1240993251 +234571,8807,race issues,1240993249 +234571,8807,Stoner Movie,1240993242 +234571,8807,stupid,1240993289 +234571,8861,video game adaptation,1166892798 +234571,8861,zombies,1166780520 +234571,8874,black comedy,1240899193 +234571,8874,comedy,1240899184 +234571,8874,mmm... brains...,1240899185 +234571,8874,Simon Pegg,1240899207 +234571,8874,zombie,1240899202 +234571,8874,zombies,1240899186 +234571,8906,cannibals,1166780836 +234571,8912,bad remake,1273219433 +234571,8912,Jimmy Fallon,1273219418 +234571,8912,Queen Latifah,1273219421 +234571,8947,remake,1166817431 +234571,8983,Beautiful,1166780655 +234571,8983,martial arts,1166780658 +234571,8985,crappy sequel,1166782002 +234571,8985,vampires,1166782002 +234571,26356,tits,1269643604 +234571,26444,based on a book,1296233973 +234571,26606,ghosts,1240898795 +234571,26693,based on a book,1240994686 +234571,26693,clowns,1240994679 +234571,26949,drugs,1247046569 +234571,26949,excessive profanity,1247046702 +234571,27018,Takashi Miike,1262353024 +234571,27317,disturbing,1240898330 +234571,27317,Takashi Miike,1240898641 +234571,27397,investigation,1166779328 +234571,27397,korea,1166778874 +234571,27397,War,1166778871 +234571,27480,Takashi Miike,1240898697 +234571,27549,Shô Aikawa,1274175409 +234571,27549,Takashi Miike,1274175376 +234571,27563,black humor,1240898441 +234571,27563,dark comedy,1240898443 +234571,27563,family relationships,1240898450 +234571,27563,Musical,1240898433 +234571,27563,Takashi Miike,1240898426 +234571,27563,zombies,1240898428 +234571,27592,vengeance,1166781032 +234571,27746,Emily Perkins,1250096895 +234571,27746,Katherine Isabelle,1250096786 +234571,27746,siblings,1250096791 +234571,27746,sisters,1250096790 +234571,27746,Tatiana Maslany,1250096908 +234571,27746,twist ending,1250096794 +234571,27746,werewolf,1250096798 +234571,27746,werewolves,1250096796 +234571,27773,revenge,1166779746 +234571,27778,Emily Perkins,1250096876 +234571,27778,Katherine Isabelle,1240994839 +234571,27778,prequel,1240994837 +234571,27778,werewolf,1240994842 +234571,27778,werewolves,1240994844 +234571,27839,remake,1166890734 +234571,27865,assassin,1240994037 +234571,27865,female warriors,1240994032 +234571,27865,sword fighting,1240994034 +234571,30707,Bittersweet,1262353132 +234571,30707,boxing,1262353121 +234571,30707,Clint Eastwood,1262353119 +234571,30707,disability,1262353130 +234571,30707,drama,1262353126 +234571,30707,Hilary Swank,1262353199 +234571,30707,Morgan Freeman,1262353163 +234571,30707,mother daughter relationship,1262353141 +234571,30707,narrated,1262353151 +234571,30745,Takashi Miike,1240898635 +234571,31424,Uwe Boll,1241591165 +234571,31424,video game adaptation,1166892839 +234571,31700,Annasophia Robb,1250184906 +234571,31700,Jeff Daniels,1250184909 +234571,31700,religion,1250185066 +234571,32250,Asuka Kurosawa,1269343875 +234571,32300,Devon Aoki,1242921647 +234571,32300,girlie movie,1166816993 +234571,32300,Jordana Brewster,1242921644 +234571,32300,lesbian,1242921627 +234571,32300,queer,1242921631 +234571,32300,spies,1242921637 +234571,32300,spying,1242921635 +234571,32395,dreamlike,1240899692 +234571,32395,strangely compelling,1240899695 +234571,32415,biomedical infection,1245849962 +234571,32587,adapted from:comic,1282733455 +234571,32587,Bruce Willis,1282733448 +234571,32587,Jessica Alba,1282733476 +234571,32587,Quentin Tarantino,1282733450 +234571,32728,adolescence,1279457145 +234571,32728,Jodie Foster,1279457120 +234571,32728,pedophile,1279457136 +234571,33421,boring,1258344512 +234571,33649,feel good,1242921580 +234571,33649,lesbian,1242921537 +234571,33649,lesbians hiding their identities,1242921542 +234571,33649,silly,1247126374 +234571,33679,Action,1250097467 +234571,33679,Angelina Jolie,1250097463 +234571,33679,Brad Pitt,1250097465 +234571,33679,funny,1250097471 +234571,33679,spies,1250097482 +234571,33679,Very stupid,1250097477 +234571,33817,adolescence,1242921516 +234571,33817,BBC Films,1255604095 +234571,33817,drama,1257134734 +234571,33817,Emily Blunt,1240900845 +234571,33817,England,1242921521 +234571,33817,lesbian,1240900848 +234571,33817,love,1240900869 +234571,33834,zombies,1166779831 +234571,33896,cannibalism,1240898568 +234571,33896,Chan-wook Park,1240898571 +234571,33896,creepy,1240898573 +234571,33896,disturbing,1240898576 +234571,33896,Takashi Miike,1240898584 +234571,33896,uneven,1240898593 +234571,34143,remake,1166817378 +234571,34505,atmospheric,1279457364 +234571,34505,ghosts,1279457364 +234571,34505,school,1279457364 +234571,34523,boring,1284838981 +234571,34523,drugs,1284838962 +234571,34523,high school,1284838955 +234571,34523,relationships,1284838967 +234571,34523,story,1284838981 +234571,34523,suburbia,1284838969 +234571,34523,suicide,1284838965 +234571,34532,better than expected,1166890861 +234571,34532,Twist Ending,1254770127 +234571,34532,Voodoo,1254770131 +234571,35681,incest,1305025706 +234571,35681,mental hospital,1305025706 +234571,36519,fetish clothes,1240994510 +234571,36519,Jason Statham,1240994443 +234571,36519,Kate Nauta,1240994657 +234571,37380,video game adaptation,1166892684 +234571,37830,cgi,1166779977 +234571,37830,videogame,1166779975 +234571,38086,ballet,1274176740 +234571,38086,korean,1274176741 +234571,39715,really crappy sequel,1166781485 +234571,39801,Chiaki Kuriyama,1274175449 +234571,39801,demons,1274175451 +234571,39801,Hiroyuki Miyasako,1274175446 +234571,39801,Ryûnosuke Kamiki,1274175447 +234571,39801,Takashi Miike,1274175441 +234571,40226,aliens,1268811926 +234571,40226,awesome,1268811926 +234571,40226,Bass Wolf,1268811797 +234571,40226,drinking game,1268811926 +234571,40226,Drum Wolf,1268811799 +234571,40226,Guitar Wolf,1268811801 +234571,40226,zombies,1268811926 +234571,40732,cave,1241249515 +234571,40732,horror,1241249539 +234571,40732,hot girls!,1241249519 +234571,40732,twist ending,1241249525 +234571,41569,Jack Black,1241249405 +234571,41569,monster,1241249423 +234571,41569,Peter Jackson,1241249406 +234571,41569,remake,1241249409 +234571,42351,England,1280775874 +234571,42351,made for TV,1280775870 +234571,42351,nuclear war,1280775875 +234571,42351,post-apocalyptic,1280775879 +234571,42738,crappy sequel,1166780948 +234571,42738,vampires,1166780948 +234571,42738,werewolves,1166780948 +234571,43289,Takashi Miike,1273216311 +234571,43679,amusement park,1253173183 +234571,43679,franchise,1266924509 +234571,43679,gore,1253173178 +234571,43679,premonition,1259745951 +234571,43744,lesbian,1240993895 +234571,43744,Piper Perabo,1240993902 +234571,43744,Romance,1240993904 +234571,44665,guilty pleasure,1240900765 +234571,44665,hitman,1240900813 +234571,44665,Josh Hartnett,1240900823 +234571,44665,Lucy Liu,1240900787 +234571,44665,Revenge,1240900773 +234571,44779,Christmas,1246109098 +234571,44779,revenge,1246109109 +234571,44779,Santa Claus,1246109102 +234571,44779,serial killer,1246109107 +234571,45081,video game,1166779667 +234571,45447,boring,1240991220 +234571,45447,bullshit history,1240991194 +234571,45447,disappointing,1240991198 +234571,45662,remake,1166811581 +234571,45722,Adventure,1241249973 +234571,45722,Johnny Depp,1241249961 +234571,45722,Keira Knightley,1241249963 +234571,45722,Orlando Bloom,1241249965 +234571,45722,pirates,1241249967 +234571,46335,crappy sequel,1244274847 +234571,46912,atmospheric,1243999334 +234571,46912,ghosts,1243999333 +234571,46912,school,1243999333 +234571,47200,action packed,1240993832 +234571,47200,Amy Smart,1240993835 +234571,47200,Jason Statham,1240993809 +234571,47200,sexism and stupidity,1240993816 +234571,47200,stupid,1240993818 +234571,48516,corruption,1262534010 +234571,48516,Crime,1262534007 +234571,48516,gangsters,1262533942 +234571,48516,imdb top 250,1262533944 +234571,48516,Jack Nicholson,1262533937 +234571,48516,Leonardo DiCaprio,1262533939 +234571,48516,Mark Wahlberg,1262533947 +234571,48516,Martin Scorsese,1262533951 +234571,48516,Matt Damon,1262533974 +234571,48516,original is better,1262533996 +234571,48516,police corruption,1262533955 +234571,48516,remake,1262533957 +234571,48516,undercover cop,1262534020 +234571,48596,stupid but funny,1168839561 +234571,48817,bad acting,1249636611 +234571,48817,Bad direction,1249636611 +234571,48817,could have been better,1249636590 +234571,49530,1990s,1273216284 +234571,49530,Africa,1273216255 +234571,49530,Civil War,1273216259 +234571,49530,corruption,1273216281 +234571,49530,Jennifer Connelly,1273216264 +234571,49530,Leonardo DiCaprio,1273216261 +234571,49530,mining,1273216267 +234571,49530,orphans,1273216269 +234571,49530,photography,1273216279 +234571,49530,smuggling,1273216275 +234571,50003,dumb but funny,1240994396 +234571,50003,heroine,1240994424 +234571,50003,hot girls!,1240994419 +234571,50003,martial arts,1240994402 +234571,50003,princess,1240994427 +234571,50003,stupid but funny,1240994408 +234571,50003,video game adaptation,1240994413 +234571,50183,cinematography,1293123936 +234571,50183,erotic,1293123938 +234571,50183,Forbidden Love,1293123987 +234571,50183,lesbian,1293123945 +234571,50183,school,1293123958 +234571,50183,Schoolgirl,1293124013 +234571,50601,AnnaSophia Robb,1249556296 +234571,50601,based on a book,1249556271 +234571,50601,bullying,1249556262 +234571,50601,death of a child,1249556275 +234571,50601,fantasy,1249556278 +234571,50601,hurried ending,1249556285 +234571,50601,liberal messages,1249556280 +234571,50601,sad,1249556288 +234571,50641,dreamlike,1260901904 +234571,50641,strangely compelling,1260902062 +234571,50794,hitman,1266924371 +234571,50794,humorous,1266924372 +234571,50794,paranoid,1266924377 +234571,50794,twist ending,1266924394 +234571,50794,Violently silly,1266924382 +234571,50892,Kazuya Nakayama,1266925253 +234571,50892,Takashi Miike,1266925251 +234571,51187,bullying,1295890722 +234571,51187,England,1295890739 +234571,51187,London,1295890737 +234571,51187,Noel Clark,1295890726 +234571,51187,Suicide,1295890724 +234571,51187,teen pregnancy,1295890732 +234571,51187,teenagers,1295890730 +234571,51187,violence,1295890735 +234571,51255,Nick Frost,1240991621 +234571,51255,parody,1240991630 +234571,51255,Simon Pegg,1240991578 +234571,51709,family drama,1240994057 +234571,51709,monster,1240994045 +234571,51935,conspiracy,1274472419 +234571,51935,corruption,1274472428 +234571,51935,Kate Mara,1274472432 +234571,51935,Mark Wahlberg,1274472417 +234571,51935,revenge,1274472424 +234571,51935,sniper,1274472422 +234571,52245,figure skating,1284194765 +234571,52245,ice skating,1284194767 +234571,52245,sport:ice skating,1284194746 +234571,52245,Will Ferrell,1284194748 +234571,52712,remake,1285192361 +234571,52952,atmospheric,1289763449 +234571,52952,bullying,1289763447 +234571,52952,coming of age,1289763431 +234571,52952,England,1289763434 +234571,52952,racism,1289763435 +234571,52952,reggae,1289763438 +234571,52952,skinhead,1289763442 +234571,53125,adventure,1240899351 +234571,53125,Johnny Depp,1240899358 +234571,53125,Keira Knightley,1240899362 +234571,53125,pirates,1240899369 +234571,53138,action,1249556431 +234571,53138,adventure,1249556426 +234571,53138,archaeology,1249556535 +234571,53138,Noah Wyle,1249556437 +234571,53140,adventure,1246739144 +234571,53140,archaeology,1249556518 +234571,53140,Noah Wyle,1249556495 +234571,53447,murder,1240993758 +234571,53447,skateboarding,1240993757 +234571,53972,action packed,1292299988 +234571,53972,bruce willis,1292299986 +234571,53972,hackers,1292299997 +234571,53972,terrorism,1292299999 +234571,54503,comedy,1240991159 +234571,54503,friendship,1240991157 +234571,54503,high school,1240991163 +234571,54503,HIGH SCHOOL LIFE,1240991166 +234571,54503,Michael Cera,1240991168 +234571,54689,Blackjack,1296648212 +234571,54689,Canada,1296648212 +234571,54689,Card Counting,1296648212 +234571,54689,Casino,1296648212 +234571,54689,Gambling,1296648212 +234571,54689,Katharine Isabelle,1296648178 +234571,55343,Gillian Anderson,1241851032 +234571,55765,1960s,1270479242 +234571,55765,1970s,1270479245 +234571,55765,based on a true story,1270479204 +234571,55765,Denzel Washington,1270479202 +234571,55765,drugs,1270479247 +234571,55765,gangster,1270479249 +234571,55765,organized crime,1270479254 +234571,55765,Russell Crowe,1270479264 +234571,55765,smuggling,1270479258 +234571,55844,lesbian,1274176530 +234571,55844,Nudity (Topless),1274176574 +234571,56156,based on a game,1241249878 +234571,56171,alternate reality,1250096632 +234571,56171,anti-religion,1240993666 +234571,56171,based on a book,1240993720 +234571,56171,children,1242921367 +234571,56171,coming of age,1240993673 +234571,56171,Dakota Blue Richards,1240993661 +234571,56171,Daniel Craig,1242921358 +234571,56171,fantasy world,1240993681 +234571,56171,kidnapping,1250096565 +234571,56171,Nicole Kidman,1240993684 +234571,56171,only part of the trilogy xD,1250096627 +234571,56171,Parallel universe,1240993687 +234571,56171,steampunk,1240993693 +234571,56171,talking animals,1242921360 +234571,56174,alone in the world,1240994231 +234571,56174,post-apocalyptic,1240994239 +234571,56174,religion,1240994221 +234571,56174,vampire,1240994248 +234571,56174,virus,1240994247 +234571,56174,Will Smith,1240994217 +234571,56336,crappy sequel,1247584404 +234571,56336,reality TV,1247584388 +234571,56367,Ellen Page,1240991091 +234571,56367,hilarious,1240991097 +234571,56367,Michael Cera,1240991105 +234571,56367,pregnancy,1240991128 +234571,56775,history,1240993622 +234571,56775,Nicolas Cage,1240993581 +234571,56775,treasure hunt,1240993622 +234571,57274,"""found footage""",1282854630 +234571,57274,bloody,1282854633 +234571,57274,contamination,1282854653 +234571,57274,despair,1282854649 +234571,57274,Handycam,1282854636 +234571,57274,horror,1282854638 +234571,57274,infection,1282854648 +234571,57274,Manuela Velasco,1282854691 +234571,57274,quarantine,1282854647 +234571,57274,virus,1282854642 +234571,57274,zombies,1282854644 +234571,57368,city under attack,1240991771 +234571,57368,mockumentary,1240991758 +234571,57368,monster,1240991741 +234571,57368,shallow,1240991779 +234571,58103,assassin,1272899602 +234571,58103,assassination,1272899597 +234571,58103,betrayal,1272899600 +234571,58103,ending,1274472555 +234571,58103,ending kinda ruined it,1274472555 +234571,58103,multiple storylines,1272900169 +234571,58103,murder,1272899589 +234571,58103,secret service,1272899590 +234571,58816,Bisexuality,1290518930 +234571,58816,Lesbian,1290518930 +234571,58816,lgbt,1290518930 +234571,58870,Takashi Miike,1250438097 +234571,58964,gore,1240994816 +234571,59615,adventure,1249556759 +234571,59615,archaeology,1249556760 +234571,59615,Harrison Ford,1249556764 +234571,60074,alcoholic,1240993548 +234571,60074,bad ending,1240993561 +234571,60074,Will Smith,1240993546 +234571,60293,Ben Kingsley,1280775697 +234571,60293,coming of age,1280775669 +234571,60293,depression,1280775667 +234571,60293,drugs,1280775674 +234571,60293,Famke Janssen,1280775718 +234571,60293,hip-hop,1280775702 +234571,60293,Jonathan Levine,1280775709 +234571,60293,Josh Peck,1280775714 +234571,60293,Mary-Kate Olsen,1280775678 +234571,60293,new york,1280775677 +234571,60293,Olivia Thirlby,1280775705 +234571,60293,psychiatry,1280775689 +234571,60293,slow,1280775790 +234571,60293,weed,1280775693 +234571,60538,drugs,1279644822 +234571,60538,hallucinatory,1279644823 +234571,60538,Ireland,1279644829 +234571,60538,murder,1279644832 +234571,60538,slasher,1279644839 +234571,60538,tourists,1279644830 +234571,60760,David Duchovny,1250097874 +234571,60760,disappointing,1250097906 +234571,60760,FBI,1250097880 +234571,60760,Gillian Anderson,1250097877 +234571,61240,based on a book,1242921227 +234571,61240,love story,1242921237 +234571,61240,vampire,1240898000 +234571,61240,vampires,1240897998 +234571,62081,cyberterrorism,1240994803 +234571,62081,surveillance,1240994774 +234571,62203,bloody,1252353409 +234571,62203,ending,1252353419 +234571,62203,lesbian subtext,1252353419 +234571,62203,martyrdom,1252353421 +234571,62434,boring,1278932325 +234571,63082,based on a book,1245333958 +234571,63082,India,1245333951 +234571,63082,love,1245333955 +234571,63082,music,1245333961 +234571,63082,Oscar (Best Directing),1245333966 +234571,63082,Oscar (Best Editing),1245333969 +234571,63082,Oscar (Best Music - Original Score),1245333973 +234571,63082,Oscar (Best Music - Original Song),1245333980 +234571,63082,Oscar (Best Picture),1245333976 +234571,63082,Oscar (Best Sound),1245333990 +234571,63082,poverty,1245333984 +234571,63082,slum,1245333987 +234571,63992,audience intelligence underestimated,1268812615 +234571,63992,based on a book,1249556652 +234571,63992,chick flick,1268812622 +234571,63992,fantasy,1249556663 +234571,63992,Vampire Human Love,1249556692 +234571,63992,Vampire vs Vampire,1249556688 +234571,63992,vampires,1249556684 +234571,63992,vampires do not sparkle,1268812608 +234571,64614,anti-racism,1244318300 +234571,64614,classic car,1244318334 +234571,64614,Clint Eastwood,1244318212 +234571,64614,gangsters,1244318319 +234571,64614,mentor,1244318309 +234571,64614,patriotic,1244318313 +234571,64614,Political Correctness,1244318344 +234571,64614,racism,1244318300 +234571,64614,revenge,1244318218 +234571,65521,werewolf,1240995333 +234571,65521,werewolves,1240995333 +234571,65682,crappy,1241977613 +234571,65682,crappy prequel,1241977613 +234571,65682,gothic,1241977635 +234571,65682,prequel,1241977614 +234571,65682,vampires,1241977630 +234571,65682,werewolves,1241977642 +234571,66090,bad ending,1245862834 +234571,66553,better than expected,1247046767 +234571,66553,Katharine Isabelle,1240900924 +234571,66553,lesbian,1247046762 +234571,66553,lesbian character,1240900910 +234571,66553,lesbians hiding their identities,1240900912 +234571,66808,stupid,1241591212 +234571,66808,Til Schweiger,1241591195 +234571,66808,Uwe Boll,1241591186 +234571,67073,Mena Suvari,1268812501 +234571,67223,baseball,1256557541 +234571,67223,sports,1256557545 +234571,67255,based on a book,1261481405 +234571,67255,biblical references,1261481410 +234571,67255,black and white morals,1261481434 +234571,67255,characters,1261481417 +234571,67255,computers,1261481420 +234571,67255,dark,1261481422 +234571,67255,hackers,1261481428 +234571,67255,not in english,1261481425 +234571,67354,awesome!,1240899116 +234571,67354,Schoolgirls,1240899117 +234571,67354,zombie,1240899118 +234571,67354,Zombies,1240899119 +234571,67365,Emmanuelle Chriqui,1268812648 +234571,67365,Mila Kunis,1268812650 +234571,67799,crappy sequel,1266924448 +234571,67923,Racing,1247584354 +234571,67923,Ridiculous,1247584352 +234571,68157,alternate history,1258794596 +234571,68157,Brad Pitt,1258794587 +234571,68157,dialogue,1258794589 +234571,68157,satire,1258794607 +234571,68157,unusual plot structure,1258794599 +234571,68157,World War II,1258794603 +234571,68205,Amy Smart,1249847276 +234571,68205,fast paced,1249847286 +234571,68205,Jason Statham,1249847288 +234571,68205,story,1249847289 +234571,68205,stupid,1249847278 +234571,68205,unrealistic,1249847283 +234571,68519,crappy sequel,1242289811 +234571,68519,Daveigh Chase,1242289838 +234571,68519,Elizabeth Berkley,1242289847 +234571,68519,Time travel,1242289798 +234571,68519,Visions,1242289800 +234571,68843,James Corden,1248242168 +234571,68843,lesbian,1248242126 +234571,68843,vampire,1248242145 +234571,68843,vampires,1248242145 +234571,69122,casino,1258344347 +234571,69122,comedy,1258344333 +234571,69122,disappointing,1258344378 +234571,69122,Drinking,1258344343 +234571,69122,drugs,1258344345 +234571,69122,great soundtrack,1258344335 +234571,69122,hotel,1258344338 +234571,69122,no plot,1258344366 +234571,69122,Nudity (Topless),1258344356 +234571,69122,police,1258344359 +234571,69122,stupid stereotypes,1258344368 +234571,69805,archaeology,1249556531 +234571,69805,kidnapping,1248072578 +234571,69805,Noah Wyle,1249556492 +234571,69805,Vampire Human Love,1249556556 +234571,69805,vampires,1248072574 +234571,69917,sequel,1266924685 +234571,69917,sport:ice hockey,1266924681 +234571,69934,remake,1248242023 +234571,69974,small town,1286630161 +234571,69974,tense,1286630157 +234571,70206,slasher,1276769449 +234571,70286,action,1258838377 +234571,70286,aliens,1258838348 +234571,70286,cgi,1258838385 +234571,70286,creative plot,1258838372 +234571,70286,directorial debut,1258838381 +234571,70286,fake documentary,1258838388 +234571,70286,genetics,1258838403 +234571,70286,intelligent sci-fi,1258838350 +234571,70286,justice,1258838352 +234571,70286,peter jackson,1258838354 +234571,70286,redemption,1258838358 +234571,70286,sci-fi,1258838360 +234571,70286,slum,1258838398 +234571,70286,social commentary,1258838361 +234571,70286,South Africa,1258838370 +234571,70305,aliens,1250096408 +234571,70305,AnnaSophia Robb,1250096384 +234571,70305,based on a book,1250096400 +234571,70305,boring,1250096433 +234571,70305,Dwayne Johnson,1250096393 +234571,70334,based on a TV show,1250438118 +234571,70334,Disney,1250438114 +234571,70334,small town,1250438110 +234571,70334,Tennessee,1250438111 +234571,71252,franchise,1266924515 +234571,71252,gore,1259745961 +234571,71252,premonition,1259745955 +234571,71322,lesbian character,1279733452 +234571,71322,losing virginity,1279733465 +234571,71322,Marjut Maristo,1279733390 +234571,71322,religion,1279733434 +234571,71500,Halloween,1256557484 +234571,71500,made for TV,1256557488 +234571,71500,multiple storylines,1256557486 +234571,71535,Abigail Breslin,1268812434 +234571,71535,Bill Murray,1268812424 +234571,71535,clowns,1268812372 +234571,71535,Emma Stone,1268812408 +234571,71535,ending,1268812376 +234571,71535,Jesse Eisenberg,1268812364 +234571,71535,post-apocalyptic,1268812386 +234571,71535,zombies,1268812384 +234571,71700,asylum,1255602945 +234571,71838,antihero,1274175589 +234571,71838,Obviously sarificed the writer's tale of moral relativism for black and white moralism.,1274175598 +234571,71838,revenge,1274175586 +234571,71838,violent,1274175584 +234571,72407,bad acting,1268812539 +234571,72407,bad cgi,1268812536 +234571,72407,sexism and stupidity,1268812546 +234571,72407,vampires do not sparkle,1268812549 +234571,72641,based on a book,1270479124 +234571,72641,based on a true story,1270479220 +234571,72641,football,1270479230 +234571,72641,Lily Collins,1270479192 +234571,72641,Quinton Aaron,1270479119 +234571,72641,Sandra Bullock,1270479108 +234571,72641,sports,1270479122 +234571,72641,Tim McGraw,1270479141 +234571,72670,asylum,1259745693 +234571,72670,stupid,1259745693 +234571,73106,franchise,1263019273 +234571,73321,Denzel Washington,1275881094 +234571,73321,dystopia,1275881103 +234571,73321,Mila Kunis,1275881096 +234571,73321,plot holes,1275881089 +234571,73321,post-apocalyptic,1275881097 +234571,73323,corruption,1274175713 +234571,73323,hackers,1274175708 +234571,73323,hacking,1274175710 +234571,73323,journalism,1274175706 +234571,73323,Noomi Rapace,1274175704 +234571,73323,psychiatry,1274175714 +234571,74510,Daniel Alfredson,1266925051 +234571,74510,Michael Nyqvist,1266925053 +234571,74510,Noomi Rapace,1266925050 +234571,74752,Alexi Wasser,1269643577 +234571,74752,really crappy sequel,1269643568 +234571,75395,Adam Green,1286032476 +234571,75395,Emma Bell,1286032472 +234571,75395,Kevin Zegers,1286032474 +234571,75395,predictable ending,1286032497 +234571,75395,Shawn Ashmore,1286032478 +234571,75395,survival horror,1286032480 +234571,75395,wolves,1286032515 +234571,76175,Special Effects,1278932299 +234571,76753,high school,1274175657 +234571,76753,revenge,1274175660 +234571,77149,cavemen,1273215294 +234571,77149,dinosaurs,1273215294 +234571,77364,audience intelligence underestimated,1284815134 +234571,77364,Based on a comic book,1284815129 +234571,77427,abduction,1287994325 +234571,77427,Akihiro Kitamura,1287994327 +234571,77427,Ashley C. Williams,1287994333 +234571,77427,Ashlynn Yennie,1287994331 +234571,77427,body horror,1287994340 +234571,77427,Dieter Laser,1287994337 +234571,77538,Akiko Wada,1289243441 +234571,77538,gangs,1289243443 +234571,77629,addiction,1284315422 +234571,77629,documentary,1284315422 +234571,77629,drugs,1284315408 +234571,77752,Dankan,1274175290 +234571,77752,Takeshi Kitano,1274175288 +234571,77772,comedy bits,1275880954 +234571,77772,Erica Cox,1275880924 +234571,77772,Jason Mewes,1275880935 +234571,77772,Jordan Madley,1275880945 +234571,77772,Richard Fitzpatrick,1275880939 +234571,78105,action,1281969132 +234571,78105,adventure,1281969137 +234571,78105,Alfred Molina,1281969179 +234571,78105,based on a video game,1281969139 +234571,78105,Ben Kingsley,1281969178 +234571,78105,fantasy,1281969167 +234571,78105,Gemma Arterton,1281969160 +234571,78105,kingdoms,1281969165 +234571,78105,Mike Newell,1281969180 +234571,78105,parkour,1281969169 +234571,78105,persia,1281969171 +234571,78105,traitor,1281969183 +234571,78218,Carrie-Anne Moss,1281877724 +234571,78218,FBI,1281877764 +234571,78218,Samuel L. Jackson,1281877730 +234571,78218,terrorism,1281877762 +234571,78218,torture,1281877737 +234571,78266,Adrien Brody,1284297901 +234571,78266,genetics,1284297909 +234571,78266,plot,1284297906 +234571,78266,sex scene,1284297904 +234571,78313,England,1295890787 +234571,78313,London,1295890787 +234571,78313,prison,1295890802 +234571,78313,revenge,1295890770 +234571,78313,teenagers,1295890770 +234571,78313,violence,1295890770 +234571,78358,Michio Akiyama,1276262665 +234571,78358,Mimi Kozakura,1276262665 +234571,78358,revenge,1276262656 +234571,78358,suicide,1276262656 +234571,78679,Bill Pullman,1282733350 +234571,78679,Casey Affleck,1282733348 +234571,78679,Elias Koteas,1282733346 +234571,78679,Jessica Alba,1282733344 +234571,78679,Kate Hudson,1282733343 +234571,78679,Michael Winterbottom,1282733340 +234571,78679,Ned Beatty,1282733338 +234571,78679,Simon Baker,1282733336 +234571,78679,Tom Bower,1282733335 +234571,78856,biology,1280775898 +234571,78856,business,1280775902 +234571,78856,food,1280775905 +234571,78856,science,1280775907 +234571,79132,alternate reality,1289722984 +234571,79132,dreams,1289722988 +234571,79132,Ellen Page,1289722981 +234571,79132,Joseph Gordon-Levitt,1289722981 +234571,79132,Leonardo DiCaprio,1289722963 +234571,79132,surreal,1289722966 +234571,79132,visually appealing,1289722993 +234571,79134,Adam Sandler,1285954138 +234571,79134,bad plot,1285954127 +234571,79134,Chris Rock,1285954136 +234571,79134,few funny scenes,1285954130 +234571,79134,Rob Schneider,1285954132 +234571,79185,action,1287994222 +234571,79185,adventure,1287994220 +234571,79185,Cameron Diaz,1287994217 +234571,79185,spy,1287994224 +234571,79185,Tom Cruise,1287994219 +234571,79224,Jackie Chan,1282733241 +234571,79224,remake,1282733259 +234571,79251,dark humor,1300190441 +234571,79251,drugs,1300190445 +234571,79251,incest,1300190447 +234571,79251,pornography,1300190463 +234571,79251,thought-provoking,1300190466 +234571,79251,twist ending,1300190474 +234571,79251,violent,1300190469 +234571,79293,Angelina Jolie,1294381426 +234571,79293,assassination,1294381428 +234571,79293,double agents,1294381435 +234571,79293,sleeper agent,1294381432 +234571,79521,losing virginity,1280978902 +234571,79521,S & M,1280978905 +234571,79521,sexuality,1280978823 +234571,79695,acting,1284812127 +234571,79695,action,1284812135 +234571,79695,Arnold Schwarzenegger,1284812139 +234571,79695,boring,1284812170 +234571,79695,Bruce Willis,1284812149 +234571,79695,Dolph Lundgren,1284812180 +234571,79695,Jason Statham,1284812143 +234571,79695,Jet Li,1284812213 +234571,79695,Mickey Rourke,1284812178 +234571,79695,Story,1284812161 +234571,79695,Sylvester Stallone,1284812141 +234571,79702,Kieran Culkin,1292299639 +234571,79702,Michael Cera,1292299635 +234571,79946,advertising,1283095155 +234571,79946,american dream,1283095096 +234571,79946,bad ending,1283095181 +234571,79946,David Duchovny,1283095098 +234571,79946,Demi Moore,1283095198 +234571,79946,Gary Cole,1283095195 +234571,79946,marketing,1283095114 +234571,79946,money,1283095116 +234571,79946,suicide,1283095148 +234571,80181,Blender,1286362471 +234571,80181,open content film,1286362504 +234571,80463,Andrew Garfield,1294562375 +234571,80463,based on true story,1294562365 +234571,80463,Jesse Eisenberg,1294562371 +234571,80502,bugs,1284797324 +234571,80502,giant bugs,1284797311 +234571,80831,remake,1286097862 +234571,80831,remake of a Swedish film,1286097857 +234571,80831,remake of Let The Right One In (2008),1286097832 +234571,80836,Blender,1286362364 +234571,80836,open content film,1286362517 +234571,80903,easily confused with other movie(s) (title),1286517611 +234571,82202,Angelina Jolie,1298798067 +234571,82202,Italy,1298798092 +234571,82202,Johnny Depp,1298798068 +234571,82202,Venice,1298798083 +234571,82240,gothic,1293692632 +234571,82240,Vampires,1293692625 +234571,82356,bipolar,1291921541 +234571,82356,documentary,1291921493 +234571,82356,suicide,1291921493 +234571,82356,teen suicide,1291921501 +234571,85211,based on a book,1300767196 +234571,92391,horror,1351545442 +234571,96815,horror,1351545408 +234571,96815,i like you,1351545408 +234576,4030,Gerard Butler,1169300804 +234576,4299,Heath Ledger,1169301394 +234576,5026,sub titles,1169301283 +234576,5107,Colin Farrell,1169300494 +234576,5380,Colin Firth,1169300909 +234576,5445,Colin Farrell,1169300614 +234576,6059,Colin Farrell,1169300550 +234576,6059,Suspense,1169300550 +234576,6157,Colin Farrell,1169300717 +234576,6884,Cate Blanchett,1169300683 +234576,6884,Colin Farrell,1169300683 +234576,6884,Ireland,1169300683 +234576,7364,Colin Farrell,1169300647 +234576,7364,Irish,1169300647 +234576,30816,Gerard Butler,1169300766 +234576,33150,Gerard Butler,1169300867 +234576,33150,soccer,1169300867 +234576,44189,Colin Farrell,1169300581 +234577,48780,based on a book,1210195044 +234587,4993,geeky,1397168198 +234587,4993,Nerd fantasy,1397168198 +234587,7153,geeky,1397168253 +234587,7153,nerd fantasy,1397168253 +234590,112556,anti feminist,1422669474 +234590,112556,irrealist,1422669474 +234590,112556,suspense,1422669474 +234591,260,action,1443023018 +234591,260,classic sci-fi,1443022989 +234625,6333,superhero,1213532855 +234625,59784,panda,1213531032 +234632,260,fantasy,1442780258 +234632,260,fiction,1442780268 +234632,260,futuristic,1442780252 +234632,260,tech,1442780243 +234669,318,great actor,1420210162 +234669,318,great performances,1420210162 +234669,318,the best movie ever made. period.,1420210162 +234731,260,nerdy,1438034563 +234731,260,Science Fiction,1438034554 +234744,5026,Monster movie,1306937144 +234744,5026,Nudity (Rear),1306937126 +234744,5026,Nudity (Topless),1306937124 +234744,5026,visceral,1306937129 +234744,5956,gangsters,1306937221 +234744,5956,gay,1306937224 +234744,5956,Leonardo DiCaprio,1306937234 +234744,5956,Liam Neeson,1306937237 +234744,5956,Nudity (Topless - Brief),1306937212 +234744,5956,Nudity (Topless),1306937211 +234744,5956,true story,1306937246 +234744,5956,violent,1306937215 +234744,6874,action,1306936967 +234744,6874,martial arts,1306936965 +234744,6874,violence,1306936960 +234744,6874,violent,1306936957 +234744,6874,visceral,1306936958 +234744,7438,action,1306937024 +234744,7438,adventure,1306937025 +234744,7438,violence,1306937018 +234744,36529,Africa,1306939134 +234744,36529,Nudity (Topless),1306939126 +234744,36529,violence,1306939123 +234744,51662,action,1306936699 +234744,51662,blood,1306936702 +234744,51662,comic book,1306936712 +234744,51662,Nudity (Topless),1306936693 +234744,51662,sword fight,1306936706 +234744,54372,Nudity (Full Frontal - Brief),1306936602 +234744,54372,Nudity (Full Frontal),1306936593 +234744,54372,thriller,1306936599 +234760,1367,Dalmatians,1302839543 +234760,1645,Al Pacino,1302839087 +234760,82167,Anne Hathaway,1302838944 +234792,5989,con artists,1442527962 +234792,5989,Leonardo DiCaprio,1442527957 +234792,5989,Tom Hanks,1442527958 +234792,5989,true story,1442527960 +234792,48780,different but very good,1421043177 +234792,48780,suspense,1421043177 +234792,48780,thriller,1421043177 +234792,91658,dark,1442527785 +234792,91658,good acting,1442527800 +234792,91658,mystery,1442527783 +234792,91658,suspense,1442527787 +234792,94969,acting,1442527900 +234792,94969,Direction,1442527897 +234792,94969,hindi,1442528199 +234792,94969,story,1442527902 +234792,94969,vidya balan,1442527898 +234798,1924,humor,1154200193 +234798,1924,ironic,1154200478 +234798,7235,extravagant,1154200393 +234798,7235,ironic,1154200307 +234798,27604,humor,1154199977 +234798,27604,ironic,1154200454 +234798,27604,japan,1154201235 +234798,27604,so bad it's funny,1154200165 +234805,1199,black comedy,1374599369 +234805,1199,dark comedy,1374599359 +234805,2730,bad music,1356366570 +234805,3249,discomfiting,1360763275 +234805,3910,can't rate,1356394272 +234805,3910,great ending,1356398402 +234805,5147,black comedy,1356049327 +234805,5903,can't rate,1355804389 +234805,51705,satire,1355718015 +234805,56715,black comedy,1353299683 +234805,56715,quirky,1353299685 +234805,65465,weak screenplay,1356061663 +234805,71700,boring,1360410654 +234805,96079,cinematography,1361296931 +234805,96079,James Bond,1361296929 +234805,96079,London,1361296938 +234818,50,mindfuck,1430932446 +234818,50,twist ending,1430932441 +234818,1197,classic,1430931651 +234818,1197,funny,1430931642 +234818,1197,witty,1430931646 +234818,81847,endearing,1430932374 +234818,81847,witty,1430932386 +234819,260,EPIC,1436417047 +234819,260,space action,1436417039 +234878,104,golf,1226073037 +234878,733,Sean Connery,1226005691 +234897,260,adventure,1435935536 +234897,260,sci-fi,1435935526 +234897,260,space,1435935532 +234901,318,Frankly the most watchable film ever made,1188312903 +234901,1120,Great. Surprise excellence from Mrs.Cobain,1188311498 +234901,1188,but a fun comedy.,1188311560 +234901,1188,Long time no see,1188311560 +234901,1231,Good movie,1188311547 +234901,1231,just a pleasure to see Paul playing pool again.,1188311547 +234901,1267,Great film,1188311456 +234901,1267,watch fully awake.,1188311456 +234901,1274,visually stunning,1188312380 +234901,1597,suprisingly enervating,1188311402 +234901,1608,incredibly watchable,1188312336 +234901,1690,Not bad sequel,1188311392 +234901,1918,I want number 5.,1188311515 +234901,2023,Christ.,1188311417 +234901,2023,Sophia Coppola,1188311417 +234901,2947,Classic Bond,1188311428 +234901,3752,beh,1188311696 +234901,3755,Eh,1188311497 +234901,3755,I can do without.,1188311497 +234901,4262,An ok movie,1188311742 +234901,4262,highly overrated. Last ten minutes will do me fine.,1188311742 +234901,4310,BEH...long tedious,1188311721 +234901,4310,not nearly as interesting as it could be. Token Americana.,1188311721 +234901,5618,Holy Christ it's fantastic in every way. Watch subtitiled,1188311763 +234901,5618,not dubbed!,1188311763 +234901,5679,Beh...,1188311633 +234901,6378,Only released about five times. But it's pretty good at what it does.,1188311686 +234901,6934,well...I liked it...,1188311625 +234901,7147,Ecclecticly watchable,1188311602 +234901,7147,Teary Eyed,1188311585 +234901,8977,couldn't finish,1188312422 +234901,32587,good overall film,1188311656 +234901,32587,Nice effects,1188311656 +234901,48774,superb and moving,1188313324 +234901,54001,too short,1188312648 +234929,51255,Fantastic comedy!,1183326786 +234929,51255,really funny,1183326750 +234929,51255,seen at the cinema,1183326782 +234929,51255,Simon Pegg,1183326738 +234929,52281,double feature,1183326921 +234929,52281,Quinten Tarantino,1183326914 +234929,52281,zombies,1183326915 +234929,53000,zombies,1183326875 +234936,7361,romance,1448988088 +234936,7361,surreal,1448988101 +234965,778,based on a book,1367749183 +234965,778,black comedy,1367749187 +234965,778,dark comedy,1367749189 +234969,7153,fantasy,1428965617 +234969,7153,medieval,1428965617 +234969,7153,sword,1428965617 +234980,1203,great acting,1367845175 +234980,1234,great acting,1367845174 +234980,1617,great ending,1367845260 +234980,1945,great acting,1367845175 +234980,2195,comedy,1367844902 +234980,2329,great acting,1367845174 +234980,2464,cult classic,1367845191 +234980,2652,horror,1367845212 +234980,3467,oscar (best directing),1367845048 +234980,3674,family,1367845243 +234980,3892,horror,1367845212 +234980,3964,story,1367845340 +234980,4226,great ending,1367845260 +234980,4387,action,1367845099 +234980,4776,great acting,1367845175 +234980,4887,action,1367845099 +234980,5250,comedy,1367844902 +234980,5313,action,1367845098 +234980,5546,horror,1367845212 +234980,6270,visually appealing,1367845158 +234980,6774,weird,1367845140 +234980,6777,dramatic,1367845069 +234980,7117,horror,1367845212 +234980,7937,loneliness,1367845015 +234980,8042,oscar (best directing),1367845048 +234980,8839,horror,1367845212 +234980,26258,weird,1367845140 +234980,33158,action,1367845099 +234980,33312,talky,1367845299 +234980,37736,story,1367845340 +234980,40962,family,1367845243 +234980,44199,great ending,1367845260 +234980,44665,great ending,1367845260 +234980,45003,horror,1367845212 +234980,45730,storytelling,1367844919 +234980,47610,great ending,1367845260 +234980,47970,relationships,1367845118 +234980,48082,cerebral,1367845384 +234980,49932,weird,1367845140 +234980,54962,cerebral,1367845384 +234980,62803,criterion,1367844950 +234980,81000,inspirational,1424024569 +234980,81000,Patagonia,1310188593 +234980,81000,record attempt,1310188593 +234980,81000,rock climbing,1424024569 +234980,81000,training,1424024569 +234980,81000,Yosemite,1310188593 +234980,82242,original,1367844824 +234980,84154,futuristic,1305555517 +234980,95875,action,1367845098 +234980,98154,oscar (best directing),1367845048 +234980,98809,storytelling,1367844919 +234980,98961,dramatic,1367845069 +234980,106353,inspirational,1423405990 +234980,106353,life story,1423405990 +234980,106353,strongman,1423405990 +234980,115122,humor,1424024605 +234980,115122,mockumentary,1424024600 +234992,480,dinosaurs,1434588138 +234992,480,sci-fi,1434588138 +234992,480,science,1434588138 +234993,16,based on a book,1348065396 +234993,16,cannibalism,1348065429 +234993,16,corruption,1348065402 +234993,16,imdb top 250,1348065408 +234993,16,Nudity (Topless - Brief),1348065440 +234993,22,detective,1368778044 +234993,22,suspenseful,1368777918 +234993,36,death penalty,1348331959 +234993,36,Oscar (Best Actress),1348331991 +234993,36,true story,1348331982 +234993,47,great ending,1368777999 +234993,50,excellent script,1368771190 +234993,111,masterpiece,1368771150 +234993,215,bittersweet,1415130722 +234993,215,conversation,1415130724 +234993,215,intelligent,1415130726 +234993,215,love story,1415130732 +234993,215,reflective,1415130734 +234993,215,Vienna,1415130737 +234993,265,exaggerated,1350223593 +234993,265,magic realism,1350223601 +234993,265,Nudity (Full Frontal - Notable),1350223609 +234993,265,romantic,1350223620 +234993,296,black comedy,1420455030 +234993,296,gangster,1420455030 +234993,296,masterpiece,1368771150 +234993,296,twist the dance,1420455030 +234993,318,escape from prison,1423089730 +234993,318,great ending,1368777999 +234993,318,hope,1423089730 +234993,318,surprise ending,1423089730 +234993,356,bully,1421184639 +234993,356,sex scene,1421184639 +234993,356,simple man,1421184639 +234993,590,bittersweet,1414249513 +234993,590,historical,1414249526 +234993,590,indians,1414249523 +234993,590,Oscar (Best Picture),1414249517 +234993,593,excellent script,1368771190 +234993,1088,dancing,1368777983 +234993,1089,original,1368771061 +234993,1132,Nudity (Full Frontal),1350223511 +234993,1172,mentor,1368771131 +234993,1185,based on a biography,1385504963 +234993,1185,Daniel Day-Lewis,1385504959 +234993,1186,no nudity,1403351149 +234993,1186,sexuality,1403351153 +234993,1213,masterpiece,1368771150 +234993,1466,mentor,1368771131 +234993,1617,detective,1368778045 +234993,1620,detective,1368778044 +234993,1704,excellent script,1368771190 +234993,1704,mentor,1368771131 +234993,1719,melancholic,1368771095 +234993,1784,excellent script,1368771190 +234993,1962,friendship,1414704311 +234993,1962,Morgan Freeman,1414704309 +234993,1962,no action,1414704306 +234993,1962,racism,1414704316 +234993,2194,excellent script,1368771190 +234993,2712,Nicole Kidman,1424177914 +234993,2712,Nudity (Full Frontal - Notable),1424177929 +234993,2712,paranoia,1424177902 +234993,2712,sexuality,1424177912 +234993,2858,excellent script,1368771190 +234993,3005,detective,1368778045 +234993,3148,based on a book,1414335148 +234993,3148,Drama,1414335173 +234993,3148,Incest,1414335140 +234993,3148,Nudity (Rear),1414335158 +234993,3481,based on a book,1399116864 +234993,3481,great soundtrack,1399116877 +234993,3481,hilarious,1399116882 +234993,4235,boring,1405887909 +234993,4235,dogs,1405887870 +234993,4235,drama,1405887853 +234993,4235,imdb top 250,1405887873 +234993,4235,Nudity (Topless - Brief),1405887855 +234993,4235,oscar (best foreign language film),1405887885 +234993,6370,Erasmus,1243029854 +234993,8958,adultery,1413670997 +234993,8958,Biography,1413670980 +234993,8958,genius,1413670985 +234993,8958,great acting,1413670982 +234993,8958,music,1413670983 +234993,8958,Oscar (Best Actor),1413670988 +234993,8958,rhythm & blues,1413670991 +234993,8973,Catholicism,1413403564 +234993,8973,child abuse,1413403498 +234993,8973,Christianity,1413403493 +234993,8973,enigmatic,1413403511 +234993,8973,Gay sex,1413403547 +234993,8973,revenge,1413403555 +234993,27340,bad acting,1390084171 +234993,27340,culture clash,1390084179 +234993,27340,interracial romance,1390084184 +234993,27340,island,1390084186 +234993,27340,jungle,1390084190 +234993,27340,Nudity (Topless - Notable),1390084162 +234993,27340,Nudity (Topless),1390084163 +234993,27340,primitive peoples,1390084166 +234993,27727,confusing,1409079438 +234993,27727,dark,1409079442 +234993,27727,suicide attempt,1409079450 +234993,27803,death,1405250905 +234993,27803,emotional,1405250900 +234993,27803,euthanasia,1405250876 +234993,27803,FIGHTING THE SYSTEM,1405250891 +234993,27803,SUICIDE,1405250882 +234993,27803,true story,1405250884 +234993,34437,Nudity (Full Frontal),1356204956 +234993,34437,road trip,1356204958 +234993,38886,New York City,1400187477 +234993,40819,based on a true story,1414793167 +234993,40819,biography,1414793124 +234993,40819,Joaquin Phoenix,1414793159 +234993,40819,true story,1414793128 +234993,41285,clever,1398892082 +234993,41285,Disturbing,1398892093 +234993,41285,twist,1398892130 +234993,41285,twist ending,1398892074 +234993,41997,based on a true story,1405162883 +234993,41997,politics,1405162889 +234993,41997,Steven Spielberg,1405162885 +234993,41997,terrorism,1405162891 +234993,41997,true story,1405162880 +234993,43376,based on a true story,1412536300 +234993,43376,FIGHTING THE SYSTEM,1412536303 +234993,43376,resistance movement,1412536305 +234993,43376,Straight forward,1412536315 +234993,43376,World War II,1412536308 +234993,49822,Angelina Jolie,1348395027 +234993,49822,Central Intelligence Agency,1348395029 +234993,49822,Cold War,1348395025 +234993,49822,espionage,1348395034 +234993,54503,friendship,1355482141 +234993,55814,based on a true story,1400957398 +234993,56389,boring,1404685515 +234993,56389,Norah Jones,1404685414 +234993,56389,road movie,1404685418 +234993,56389,visually appealing,1404685430 +234993,59018,New York City,1406145371 +234993,60950,philosophical,1412419657 +234993,60950,sexuality,1412419665 +234993,60950,Spain,1412419659 +234993,60950,threesome,1412419685 +234993,60950,Woody Allen,1412419662 +234993,69757,humorous,1407877114 +234993,69757,intelligent,1407877068 +234993,71033,Argentina,1387667689 +234993,71033,excellent script,1387667697 +234993,71033,revenge,1387667667 +234993,71033,romance,1387667684 +234993,80906,business,1386772244 +234993,80906,investor corruption,1386772241 +234993,80969,cynical,1412362517 +234993,80969,depressing,1412362339 +234993,80969,disturbing,1412362510 +234993,80969,dystopia,1412362415 +234993,80969,sexuality,1412362523 +234993,80969,thought-provoking,1412362342 +234993,81641,based on a true story,1391294368 +234993,81641,CIA,1391294370 +234993,81641,history,1391294395 +234993,81641,politics,1391294383 +234993,82059,based on a true story,1357084773 +234993,82059,cold war,1357084777 +234993,82059,spy thriller,1357084781 +234993,89774,rec raluca,1331965733 +234993,90719,biography,1390076193 +234993,90719,cold war,1390076191 +234993,93498,election,1400790870 +234993,93498,history,1400790873 +234993,93498,politics,1400790876 +234993,93498,real life,1400790878 +234993,93498,Republicans,1400790880 +234993,93721,Japan,1400567485 +234993,93721,Tokyo,1400567494 +234993,93721,Tsukiji,1400567489 +234993,96432,Nudity (Topless),1372026124 +234993,96567,books,1355005992 +234993,96567,Bradley Cooper,1355005986 +234993,96567,dramatic,1355006002 +234993,97304,cia,1360508406 +234993,97304,espionage,1360508422 +234993,97304,Iran,1360508416 +234993,97304,politics,1360508413 +234993,97304,true story,1360508410 +234993,97752,cliche,1354521311 +234993,97752,multiple storylines,1354521321 +234993,97752,Tom Hanks,1354521324 +234993,98961,assassination,1367306404 +234993,98961,politics,1367306411 +234993,98961,war,1367306414 +234993,104913,based on a true story,1380180409 +234993,104913,cars,1380180416 +234993,104913,racing,1380180413 +234993,104913,true story,1380180415 +234993,105504,captain,1383343368 +234993,105504,politics,1383343375 +234993,105504,SEAL,1383343377 +234993,105504,true story,1383343380 +234993,106100,AIDS,1392280230 +234993,106100,Matthew McConaughey,1392280247 +234993,106100,topic:AIDS/HIV,1392280243 +234993,106441,touching,1391029163 +234993,106782,greed,1389309441 +234993,106782,Nudity (Full Frontal),1389309409 +234993,106782,Nudity (Topless),1389309405 +234993,106782,true story,1389309200 +234993,106782,Wall Street,1389309188 +234993,106916,based on a true story,1388920008 +234993,106920,artificial intelligence,1392414382 +234993,106920,bad sciene,1392414388 +234993,106920,bittersweet,1392414372 +234993,106920,Human Computer Interaction,1392414379 +234993,106920,loneliness,1392414403 +234993,106920,meaning of life,1392414400 +234993,106983,Nudity (Topless),1398532565 +234993,107069,Afghanistan,1390605930 +234993,107069,seals,1390605912 +234993,107069,true story,1390605909 +234993,108727,Nudity (Full Frontal - Notable),1391378700 +234993,108727,pornography,1391378764 +234993,108727,sexuality,1391378705 +234993,108928,based on a true story,1399225024 +234993,108928,George Clooney,1399225130 +234993,108928,matt damon,1399225040 +234993,108981,Lars von Trier,1392020854 +234993,108981,Nudity (Full Frontal - Notable),1392020749 +234993,108981,pornography,1392020790 +234993,108981,sexuality,1392020827 +234993,111622,music,1406474709 +234993,111622,soundtrack,1406474703 +234993,111622,story,1406474712 +234993,112370,plot holes,1404468354 +234993,112370,ridiculous dialogue,1404468356 +234993,112370,weak story,1404468358 +234993,112556,adultery,1413031076 +234993,112556,false accusation,1413031010 +234993,112556,Infidelity,1413030899 +234993,112556,marriage,1413030927 +234993,112556,mindfuck,1413030831 +234993,112556,murder,1413030959 +234993,112556,Psychopathy,1413030670 +234993,112623,genetics,1405162651 +234993,112623,sci-fi,1405162852 +234993,112623,virus,1405162672 +234993,114180,plot holes,1411157277 +234993,115170,Father-Son Relationship,1420341329 +234993,115210,sentimental,1414704272 +234993,115210,to much war,1414704275 +234993,115210,war hero,1414704270 +234993,115210,World War II,1414704266 +234993,116397,plot twist,1417275066 +234999,102445,aliens,1373377711 +234999,102445,fast paced,1373377663 +234999,102445,predictable,1373377673 +234999,102445,Star Trek,1373377664 +234999,103042,identity crisis,1373377958 +234999,103042,Over-the-top action.,1373377930 +234999,103042,Superman,1373377947 +234999,103042,visually appealing,1373377949 +234999,103335,crude humor,1373377548 +234999,103335,Pierre Coffin,1373377558 +234999,103335,Steve Carell,1373377555 +235025,47,psychological,1371601558 +235025,47,psychology,1371601554 +235025,1834,cliched,1372978463 +235025,1834,cliched plot,1372978465 +235025,1834,con artists,1372978434 +235025,1834,con men,1372978436 +235025,1834,CONS AND SCAMS,1372978454 +235025,1834,David Mamet,1372978439 +235025,1834,Hitchcock wannabe,1372978427 +235025,1834,In Netflix queue,1372978446 +235025,1834,netflix,1372978448 +235025,1834,Steve Martin,1372978494 +235025,1834,the plot,1372978424 +235025,1834,trust no one,1372978451 +235025,1834,twist ending,1372978417 +235025,4848,surreal,1372978330 +235025,4848,twist ending,1372978333 +235025,26471,homophobia,1401548827 +235025,26471,not a movie,1401548856 +235025,74458,ambiguous ending,1371742901 +235025,74458,atmospheric,1371742964 +235025,74458,cinematography,1371742950 +235025,74458,insanity,1371742937 +235025,74458,Leonardo DiCaprio,1371742887 +235025,74458,Martin Scorsese,1371742851 +235025,74458,mindfuck,1371742907 +235025,74458,psychological,1371742874 +235025,74458,thought-provoking,1371742968 +235025,74458,twist ending,1371742874 +235025,90057,apocalyptic,1371743114 +235025,90057,apocalyptic storm,1371743124 +235025,90057,boring,1371743121 +235025,90057,depressing,1371743142 +235025,90057,dvd,1371743149 +235025,90057,lies to viewer,1371743146 +235025,90057,psychology,1371743131 +235025,90057,surprising,1371743133 +235025,112556,David Fincher,1425056868 +235025,112556,good adaptation,1425056885 +235025,112556,meticulous,1425056872 +235025,112556,mindfuck,1425056854 +235025,112556,murder,1425056874 +235025,112556,Predictable Twist,1425056882 +235025,112556,unpredictable,1425056851 +235030,260,hero's journey,1443314017 +235030,260,space adventure,1443314005 +235063,260,galactic,1430339364 +235063,260,sci-fi,1430339356 +235063,260,scifi cult,1430339359 +235063,1968,1980s,1430339770 +235063,1968,cliche,1430339775 +235063,1968,coming of age,1430339767 +235063,1968,coming-of-age,1430339778 +235063,1968,great music,1430339784 +235063,1968,high school,1430339782 +235063,1968,teen movie,1430339760 +235063,4975,psychology,1430339419 +235063,4975,sci-fi,1430339431 +235063,4975,surreal,1430339413 +235063,4975,virtual reality,1430339435 +235063,7143,Honor,1430339649 +235063,7143,Japan,1430339644 +235063,7143,Japanese culture,1430339646 +235063,7143,rebellion,1430339651 +235063,7143,samurai,1430339643 +235063,7143,sword fight,1430339653 +235063,44191,based on a comic,1430339567 +235063,44191,comic book,1430339549 +235063,44191,dystopia,1430339534 +235063,44191,England,1430339571 +235063,44191,philosophy,1430339546 +235063,44191,politics,1430339569 +235063,44191,revenge,1430339577 +235063,44191,sci-fi,1430339537 +235063,44191,social commentary,1430339575 +235063,44191,super-hero,1430339543 +235063,44191,thought-provoking,1430339552 +235063,51662,amazing photography,1430339630 +235063,51662,artistic,1430339632 +235063,51662,stylized,1430339626 +235063,56174,alone in the world,1430339939 +235063,56174,apocalypse,1430339943 +235063,56174,dystopia,1430339937 +235063,56174,post-apocalyptic,1430339928 +235063,56174,virus,1430339941 +235063,56174,Will Smith,1430339934 +235063,56174,zombies,1430339930 +235063,97938,great photograpy,1431977976 +235063,97938,visually appealing,1431977973 +235063,109487,artificial intelligence,1431879331 +235063,109487,good science,1431879319 +235063,109487,Masterpiece,1431879335 +235063,109487,philosophical issues,1431879311 +235063,109487,physics,1431879323 +235063,109487,relativity,1431879325 +235063,109487,sci-fi,1431879316 +235063,109487,space,1431879321 +235063,109487,thought-provoking,1431879327 +235063,109487,time-travel,1431879313 +235063,109487,wormhole,1431879329 +235063,117176,Stephen Hawking,1431878936 +235063,132480,drama,1431713043 +235063,132480,romance,1431713012 +235063,132961,19th century,1431713154 +235063,132961,drama,1431713124 +235063,132961,farm,1431713145 +235063,132961,romance,1431713126 +235063,132961,rural setting,1431713133 +235063,132961,unrequited love,1431713165 +235063,132961,victorian era,1431713143 +235068,2872,king arthur,1188674033 +235086,2732,French New Wave,1140726141 +235086,3213,Batman,1140370929 +235086,3213,comics,1140370929 +235086,4914,French New Wave,1140726178 +235086,6023,French New Wave,1140726221 +235086,7749,French New Wave,1140726251 +235086,26150,Tarkovsky,1140370651 +235086,34540,Election type rip-off,1140370586 +235086,37857,Gaiman,1140370385 +235092,27584,comedy,1173813191 +235092,27584,horror,1173813157 +235092,27584,mindfuck,1173813152 +235092,27584,mystery,1173813148 +235092,27584,scary,1173813166 +235092,27584,thriller,1173813170 +235092,27584,weird,1173813207 +235092,37727,plotholes,1173885159 +235106,3996,actions,1137691143 +235106,3996,ChowYoungFat,1137691143 +235106,3996,Kung Fu,1137691143 +235106,3996,sword fighting,1137691143 +235106,4306,fairy tale,1137691084 +235106,4306,Funny,1137691084 +235106,4306,Kids,1137691084 +235108,100044,civilization,1428374656 +235108,100044,documentary series,1428374656 +235108,100044,enlightening,1428374656 +235118,110,freedom,1145022072 +235118,110,sword fight,1145022072 +235118,121,child abuse,1145023877 +235118,150,catastrophe,1145021674 +235118,316,space,1145022835 +235118,376,hostage,1145022801 +235118,587,romance,1145023796 +235118,597,romance,1145023297 +235118,778,drugs,1145023048 +235118,1035,choir,1145023275 +235118,1061,child abuse,1145022229 +235118,1196,space,1145023042 +235118,1438,catastrophe,1145021755 +235118,1544,dinosaurs,1145023013 +235118,1676,space,1145022834 +235118,1721,catastrophe,1145021747 +235118,1721,romance,1145022536 +235118,1833,autism,1145022445 +235118,1876,catastrophe,1145021664 +235118,1917,catastrophe,1145021353 +235118,1917,space,1145023210 +235118,2420,martial arts,1145023670 +235118,2959,violence,1145022971 +235118,3578,freedom,1145022083 +235118,3578,sword fight,1145022083 +235118,3753,freedom,1145022161 +235118,3996,martial arts,1145023663 +235118,4034,drugs,1145023973 +235118,4310,catastrophe,1145021647 +235118,5570,snuff,1145022526 +235118,6874,martial arts,1145023682 +235118,7143,martial arts,1145023723 +235118,7143,sword fight,1145022095 +235118,27815,choir,1145023231 +235118,30749,genocide,1145021691 +235118,33493,space,1145022840 +235118,44191,idealism,1145022553 +235119,1227,Sergio Leone,1166683540 +235136,1,children,1439865594 +235136,2657,best,1439865650 +235136,2657,freak,1439865663 +235136,2657,musical,1439865638 +235136,30749,slavery,1439946431 +235136,79132,life sense,1439865795 +235161,253,fantasy,1446960481 +235161,253,vampires,1446960467 +235161,34532,mysterious or thrilling,1446688139 +235161,34532,Twist Ending,1446688147 +235161,125916,book,1446688355 +235176,223,Kevin Smith,1225467656 +235176,296,Quentin Tarantino,1225462293 +235176,1089,Quentin Tarantino,1225462299 +235176,1246,philosophy,1225468178 +235176,1729,Quentin Tarantino,1225462312 +235176,6378,Edward Norton,1225462693 +235176,6874,martial arts,1225462305 +235176,7438,Quentin Tarantino,1225462311 +235176,39234,courtroom drama,1225462667 +235176,52281,Quentin Tarantino,1225462309 +235176,53519,Quentin Tarantino,1225462314 +235176,60074,superhero,1225462785 +235223,1086,Hitchcock at his best,1137127633 +235230,1307,i know every word by heart,1137953137 +235230,5051,but lighter,1137953095 +235230,5051,not as good as other dogme films,1137953095 +235230,5516,surprisingly powerful,1137951456 +235243,260,classic,1434818290 +235243,260,space,1434818122 +235256,1258,cult film,1432394643 +235256,1258,disturbing,1432394641 +235256,1258,psychology,1432394632 +235256,1258,Stanley Kubrick,1432394629 +235256,1258,Stephen King,1432394636 +235256,1997,Christianity,1432394620 +235256,1997,controversial,1432394597 +235256,1997,horror,1432394623 +235256,2403,america,1432394562 +235256,79357,chaos,1432397746 +235256,79357,Jared Leto,1432397753 +235256,79357,nonlinear,1432397724 +235256,79357,philosophy,1432397728 +235256,79357,sci-fi,1432397725 +235256,79357,soundtrack,1432397768 +235256,112515,dark,1432458604 +235256,112515,nature of insanity,1432458604 +235256,112515,psychological,1432458604 +235256,112552,good acting,1432398364 +235256,112552,jazz,1432398322 +235256,112552,music,1432398343 +235256,112552,psychological,1432398341 +235256,112552,Teacher Student,1432398331 +235256,112552,Tense,1432398325 +235262,198,cyberpunk,1277825621 +235262,198,dark,1277825629 +235262,198,sci-fi,1277825625 +235262,2916,cyberpunk,1271283073 +235262,4223,sniper,1271284306 +235286,4306,fairy tale,1440333787 +235286,4306,not only for kids,1440333843 +235286,4306,very good for kids,1440333806 +235286,4973,atmospheric,1440333946 +235286,4973,Audrey Tautou,1440333902 +235286,4973,comedy,1440333934 +235286,4973,feel-good,1440333909 +235286,4973,French,1440333927 +235286,4973,romantic,1440333954 +235286,8961,animation,1440334030 +235286,8961,comedy,1440334037 +235286,8961,funny,1440334023 +235297,260,#boring,1443001383 +235301,350,based on a book,1162997862 +235301,3996,Ang Lee,1162997878 +235301,3996,martial arts,1162997699 +235304,1080,Quoter,1156865012 +235304,4027,Quoter,1156880641 +235304,6385,Great score,1156865233 +235304,8949,Melancholic,1156865250 +235304,32587,overrated,1156864898 +235304,36517,slow and predictable plot,1156865150 +235304,36529,Truth,1156865360 +235305,260,Dull acting,1437683971 +235305,260,good science fictional technology,1437683954 +235305,260,interesting,1437684006 +235305,260,Original classic,1437683864 +235305,916,black and white,1437789006 +235305,1136,british comedy,1437685135 +235305,1136,cult film,1437685158 +235305,1136,excellent dialogue,1437685170 +235305,1136,hilarious,1437685140 +235305,1136,medieval,1437685146 +235305,1136,satirical,1437685143 +235305,1136,witty,1437685151 +235305,2858,excellent script,1437750030 +235305,2858,great acting,1437750024 +235305,2858,Nudity (Topless),1437750041 +235305,2858,powerful ending,1437750036 +235305,2858,reflective,1437750034 +235305,2858,sexuality,1437750019 +235305,2858,thought-provoking,1437750010 +235305,3481,actor talks to audience,1437687277 +235305,3481,break-up,1437687291 +235305,3481,cliches,1437687287 +235305,3481,music,1437687266 +235305,3481,relationships,1437687296 +235305,3508,Clint Eastwood,1439822758 +235305,3508,western,1439822764 +235305,4878,complicated,1437685697 +235305,4878,dreamlike,1437685657 +235305,4878,mindfuck,1437685686 +235305,4878,original,1437685674 +235305,4878,stylized,1437685689 +235305,4878,surreal,1437685652 +235305,4878,thought-provoking,1437685655 +235305,4878,twist ending,1437685681 +235305,4878,weird,1437685665 +235305,5291,surreal,1437684772 +235305,5952,Adventure,1437685242 +235305,5952,based on a book,1437685239 +235305,5952,fantasy world,1437685261 +235305,5952,great soundtrack,1437685253 +235305,5952,high fantasy,1437685251 +235305,5952,mythology,1437685258 +235305,6373,Jim Carrey,1437750214 +235305,6373,Steve Carell,1437750221 +235305,44191,philosophical,1437685596 +235305,44191,philosophy,1437685582 +235305,44191,thought-provoking,1437685573 +235305,44191,vigilantism,1437685599 +235305,47610,great ending,1437685749 +235305,47610,happy ending,1437685738 +235305,47610,love story,1437685735 +235305,48394,alternate reality,1437684838 +235305,48394,atmospheric,1437684823 +235305,48394,dark fantasy,1437684847 +235305,48394,disturbing,1437684816 +235305,48394,fantasy,1437684825 +235305,48394,imagination,1437684819 +235305,48394,surreal,1437684808 +235305,59315,funny,1437685316 +235305,59315,Jeff Bridges,1437685294 +235305,59315,Robert Downey Jr,1437685300 +235305,59315,Robert Downey Jr.,1437685285 +235305,60069,beautiful scenery,1437685838 +235305,60069,cute,1437685816 +235305,60069,Cute!,1437685808 +235305,60069,dystopia,1437685792 +235305,60069,family,1437685813 +235305,60069,social commentary,1437685798 +235305,69122,comedy,1437686845 +235305,69122,Heather Graham,1437686866 +235305,69122,overrated,1437686879 +235305,69122,Vulgar,1437686900 +235305,69122,watch the credits,1437686888 +235305,69122,Zach Galifianakis,1437686848 +235305,69122,Zach Galifinakis,1437686863 +235305,91500,Bandwagon,1437685534 +235305,91500,cheesy,1437685497 +235305,91500,lack of character development,1437685495 +235305,102125,Robert Downey Jr.,1437685332 +235311,72393,aliens,1264318621 +235313,593,classic,1424721225 +235313,593,crime drama,1424721225 +235313,593,psychothriller,1424721225 +235324,260,science fiction,1436260319 +235324,260,space,1436260283 +235324,356,comedy/drama,1436260670 +235324,356,feel good movie,1436260670 +235324,356,great soundtrack,1436260670 +235324,356,sixties,1436260670 +235340,4973,feel-good,1429046497 +235340,4973,French,1429046473 +235340,4973,surreal,1429046485 +235341,260,cult classic,1436499281 +235341,260,sci-fi,1436499272 +235354,260,sci-fi,1438094030 +235354,260,space western,1438094038 +235368,2997,mindfuck,1242424963 +235368,4878,mindfuck,1242424964 +235368,8533,great ending,1217548534 +235422,153,comic book,1160050336 +235422,260,sci-fi,1160050444 +235422,380,action,1160050497 +235422,592,comic book,1160050246 +235422,1196,sci-fi,1160050665 +235422,1377,comic book,1160050349 +235422,1527,sci-fi,1160050663 +235422,1610,action,1160050674 +235422,2640,comic book,1160050325 +235422,2716,Action,1160050456 +235422,2716,comedy,1160050464 +235422,3793,comic book,1160050256 +235422,5349,comic book,1160050221 +235422,5952,fantasy,1160050434 +235422,6157,comic book,1160050357 +235422,6333,comic book,1160050186 +235422,7099,anime,1160050249 +235422,7373,comic book,1160050281 +235422,8360,animation,1160050479 +235422,8636,comic book,1160050174 +235422,8961,animation,1160050162 +235422,31221,comic book,1160050386 +235422,33794,comic book,1160050146 +235422,34150,comic book,1160050368 +235422,44191,sci-fi,1160050209 +235422,45499,comic book,1160050273 +235429,6944,wedding,1139513195 +235521,916,Audrey Hepburn,1428514010 +235521,5618,anime,1428513945 +235549,318,inspiring,1439747687 +235549,1036,classic Bruce Willis,1439754897 +235549,1060,LA,1439748415 +235549,1198,classic,1439754856 +235549,1302,classic baseball,1439748318 +235549,1393,modern sports,1439748346 +235549,1449,cult classic,1439749191 +235549,1485,jim carrey,1439748824 +235549,1704,great acting,1439747760 +235549,1923,funny,1439748921 +235549,1961,great acting,1439748163 +235549,2302,funny,1439748765 +235549,2371,classic silly,1439754939 +235549,2401,classic,1439747942 +235549,2502,cult classic,1439749165 +235549,2915,fun adventure,1439748485 +235549,2918,Chicago classic,1439748438 +235549,3039,classic funny,1439748739 +235549,3098,classic baseball,1439748261 +235549,3360,Gene Hackman,1439748286 +235549,3361,Minor Leagues Baseball,1439748382 +235549,3421,wacked,1439748586 +235549,3552,wacky Bill Murray,1439748632 +235549,3681,classic,1439747912 +235549,3752,Jim Carrey,1439748873 +235549,3948,funny,1439748944 +235549,6539,Fun,1439754831 +235549,8641,funny,1439749309 +235549,8807,cult classic,1439749274 +235549,26471,Outrageous,1439748684 +235549,34162,funny,1439749035 +235549,54997,western drama,1439748023 +235549,69122,guy flick,1439749086 +235549,82459,great story,1439748051 +235549,87869,Funny,1439749116 +235549,97921,twists,1439748130 +235549,104211,silly funny,1439749251 +235549,109487,good science,1439754776 +235551,47,Brad Pitt,1236123596 +235551,47,serial killer,1236075319 +235551,135,submarine,1236074371 +235551,161,Denzel Washington,1236071081 +235551,161,Gene Hackman,1236071083 +235551,161,submarine,1236071078 +235551,296,classic,1236123471 +235551,296,dark comedy,1236123498 +235551,296,John Travolta,1236123489 +235551,296,Quentin Tarantino,1236123451 +235551,296,Samuel L. Jackson,1236123481 +235551,367,Jim Carrey,1236123691 +235551,593,serial killer,1236123414 +235551,597,Julia Roberts,1236123991 +235551,597,Richard Gere,1236124005 +235551,597,unreflective,1236124057 +235551,608,classic,1236486126 +235551,608,Coen Brothers,1236486123 +235551,608,crime,1236486129 +235551,608,dark comedy,1236486120 +235551,608,imdb top 250,1236486477 +235551,750,classic,1264118430 +235551,750,Peter Sellers,1236071814 +235551,750,satire,1264118430 +235551,750,Stanley Kubrick,1264118430 +235551,908,Alfred Hitchcock,1236123547 +235551,908,classic,1236123557 +235551,908,imdb top 250,1236123554 +235551,922,imdb top 250,1236486487 +235551,971,classic,1236070941 +235551,971,Elisabeth Taylor,1236070919 +235551,971,Paul Newman,1236070936 +235551,991,Ireland,1236125769 +235551,991,Julia Roberts,1236125782 +235551,1078,comedy,1236073494 +235551,1078,Woody Allen,1236073492 +235551,1206,Stanley Kubrick,1236486664 +235551,1207,book was better,1236123157 +235551,1207,classic,1236123097 +235551,1207,Harper Lee,1236123190 +235551,1207,History,1236123113 +235551,1207,imdb top 250,1236123130 +235551,1222,imdb top 250,1236122945 +235551,1222,Stanley Kubrick,1236122942 +235551,1233,classic,1236071115 +235551,1233,claustrophobic,1236071142 +235551,1233,imdb top 250,1236071151 +235551,1233,submarine,1236071112 +235551,1233,Wolfgang Petersen,1236071146 +235551,1233,World War II,1236071114 +235551,1252,classic,1236122919 +235551,1252,Film Noir,1236122928 +235551,1252,imdb top 250,1236122921 +235551,1252,Jack Nicholson,1236122931 +235551,1252,Roman Polanski,1236122929 +235551,1258,Jack Nicholson,1264118361 +235551,1258,Shelley Duvall,1264118362 +235551,1258,Stanley Kubrick,1264118364 +235551,1258,Stephen King,1236071348 +235551,1260,Fritz Lang,1236123085 +235551,1260,imdb top 250,1236123061 +235551,1260,Peter Lorre,1236123087 +235551,1260,serial killer,1236123066 +235551,1270,sci-fi,1236075166 +235551,1270,time travel,1236075160 +235551,1610,cold war,1236071960 +235551,1610,Sean Connery,1236071980 +235551,1610,submarine,1236071956 +235551,1610,Tom Clancy,1236072001 +235551,1682,Jim Carrey,1236075199 +235551,1892,Michael Douglas,1236075336 +235551,2028,Steven Spielberg,1236123400 +235551,2028,Tom Hanks,1236123403 +235551,2028,World War II,1236123401 +235551,2183,Alfred Hitchcock,1236074736 +235551,2183,classic,1236074748 +235551,2183,espionage,1236074745 +235551,2204,Hitchcock,1236123420 +235551,2269,Demi Moore,1236072770 +235551,2269,Robert Redford,1236072767 +235551,2670,submarine,1236074244 +235551,2670,World War II,1236074246 +235551,2696,funny,1264118343 +235551,2696,Thierry Lhermitte,1264118341 +235551,2696,Victor Kosma,1264118344 +235551,2726,imdb top 250,1236123014 +235551,2726,Stanley Kubrick,1236123004 +235551,2731,Criterion,1238355093 +235551,2731,cult,1238355088 +235551,2731,reflective,1238355091 +235551,3066,World War II,1236074487 +235551,3089,Classic,1236122898 +235551,3089,imdb top 250,1236122900 +235551,3129,jazz,1236073410 +235551,3129,Uma Thurman,1236073735 +235551,3129,Woody Allen,1236073406 +235551,3174,Andy Kaufman,1236123752 +235551,3174,Courtney Love,1236123870 +235551,3174,Jim Carrey,1236123733 +235551,3196,World War II,1236075279 +235551,3266,Benoit Poelvoorde,1236071676 +235551,3266,dark comedy,1236071666 +235551,3266,mockumentary,1236071668 +235551,3266,murder,1236074757 +235551,3266,serial killer,1236071664 +235551,3407,Benoit Poelvoorde,1236071648 +235551,3633,James Bond,1236075344 +235551,3742,Classic,1236073831 +235551,3742,political,1236073835 +235551,3742,propaganda,1236073856 +235551,3742,Soviet,1236073839 +235551,3994,Bruce Willis,1236074637 +235551,3994,Samuel L. Jackson,1236074640 +235551,4151,funny,1264118307 +235551,4151,Jean-Pierre Bacri,1236071581 +235551,4246,Hugh Grant,1236075080 +235551,4246,Renee Zellweger,1236075089 +235551,4246,romance,1236075072 +235551,4306,animation,1236123606 +235551,4306,fairy tale,1236123609 +235551,4733,Woody Allen,1236073556 +235551,4973,Audrey Tatou,1236072487 +235551,4973,comedy,1236072428 +235551,4973,Paris,1236072431 +235551,4973,quirky,1236072504 +235551,4973,romance,1236072508 +235551,4973,surreal,1236072405 +235551,5060,Donald Sutherland,1236071406 +235551,5060,Robert Altman,1236071387 +235551,5060,satire,1236071375 +235551,5348,Woody Allen,1236073687 +235551,5418,action,1236071013 +235551,5418,espionage,1236071009 +235551,5418,Matt Damon,1236071028 +235551,5479,submarine,1236074300 +235551,5669,Michael Moore,1236073957 +235551,6620,Artistic,1236123344 +235551,6620,romance,1236074689 +235551,6641,Haneke,1236122812 +235551,6662,Peter Sellers,1236123519 +235551,6669,Akira Kurosawa,1236122981 +235551,6669,Japan,1236122998 +235551,6711,Bill Murray,1236074763 +235551,7073,Peter Sellers,1236123407 +235551,7206,Criterion,1236843680 +235551,7206,Jacques Tati,1236843693 +235551,7206,satirical,1236843677 +235551,7206,silent movie aesthetics,1236843686 +235551,7206,witty,1236843683 +235551,8376,geek,1236075427 +235551,8376,independent film,1236075412 +235551,8464,McDonalds,1236075225 +235551,8464,propaganda,1236075237 +235551,8622,Michael Moore,1236073890 +235551,8622,politics,1236073878 +235551,8622,propaganda,1236073896 +235551,8665,action,1264117797 +235551,8665,espionage,1236075115 +235551,8665,Matt Damon,1236075135 +235551,8675,Curd Jurgens,1236073796 +235551,8675,submarine,1236073755 +235551,8675,World War II,1236073771 +235551,8781,Denzel Washington,1236071275 +235551,8781,Meryl Streep,1236071256 +235551,8781,remake,1236071239 +235551,26614,easily confused with other movie(s) (title),1236070980 +235551,31410,history,1236074817 +235551,31410,World War II,1236074819 +235551,32591,Agnes Jaoui,1236071729 +235551,32591,Jean-Pierre Bacri,1236071761 +235551,32591,music,1236071720 +235551,37741,Novelist,1236074962 +235551,37741,Truman Capote,1236074911 +235551,39183,homosexuality,1236499200 +235551,39183,romance,1236499200 +235551,41285,Scarlett Johansson,1236073137 +235551,41285,Woody Allen,1236073133 +235551,45447,Audrey Tatou,1236072594 +235551,45447,bullshit history,1236072653 +235551,45447,disappointing,1236072655 +235551,45447,Tom Hanks,1236072585 +235551,46967,Woody Allen,1236073519 +235551,49272,James Bond,1236074877 +235551,55442,animation,1236123526 +235551,55442,History,1236123534 +235551,55442,politics,1236123532 +235551,58559,based on a comic,1264117698 +235551,58559,overrated,1264117682 +235551,58559,superhero,1264117701 +235551,58632,politics,1236074023 +235551,59126,naive view of religion,1236199888 +235551,59126,religion,1236199878 +235551,61323,Brad Pitt,1236075016 +235551,61323,Coen Brothers,1236074988 +235551,61323,dark comedy,1236074993 +235551,61323,espionage,1236074981 +235551,61323,George Clooney,1236075046 +235551,61323,satire,1236074997 +235551,66118,history,1236071852 +235551,66118,Joseph McCarthy,1236071919 +235551,66118,McCarthyism,1236071895 +235551,66118,politics,1236071848 +235601,260,adult,1440125706 +235601,260,future,1440125692 +235601,260,motivational,1440125684 +235601,318,inspirational,1441088912 +235601,318,motivation,1441088926 +235601,1242,Oscar (Best Cinematography),1448044335 +235601,1242,true story,1448044338 +235601,3408,cover up,1448045573 +235601,3408,Strong Women,1448045566 +235601,6565,inspirational,1448044378 +235601,30707,inspirational,1441088957 +235601,33660,Biography,1448044658 +235601,33660,inspirational,1448044665 +235601,33660,RAGS TO RICHES,1448044661 +235601,72641,feel good,1448044533 +235601,72641,feel-good,1448044550 +235601,72641,kindness of strangers,1448044544 +235601,72641,touching,1448044537 +235601,80839,overcoming odds,1448044715 +235601,89492,underdog,1448044415 +235601,101895,true story,1448044363 +235601,112552,inspirational,1441088783 +235601,116797,genius,1441088802 +235601,116797,inspirational,1441088816 +235601,116797,intelligent,1441088822 +235608,260,2,1433771990 +235610,47,psychological thriller,1430924126 +235610,47,religion,1430924141 +235610,260,drama,1430923850 +235610,260,sci-fi,1430923816 +235610,2959,thought-provoking,1430924110 +235610,2959,twist ending,1430924096 +235642,26366,documentary,1254459093 +235642,36401,Fantasy,1151727111 +235642,41566,fantasy,1151727097 +235642,41566,kids,1151727082 +235642,59392,sci-fi,1253498108 +235642,59392,Stargate,1253498110 +235642,65088,Adam Sandler,1257613815 +235642,65088,Imagination,1257613800 +235642,65088,Romantic Comedy,1257613810 +235642,69306,New York City,1253497893 +235642,69306,terrorism,1253497889 +235652,85885,artsy,1432001358 +235652,85885,emotional,1432001358 +235652,85885,sensuous,1432001358 +235652,87843,indie,1430625389 +235652,87843,searching,1430625389 +235652,87843,slice of life,1430625389 +235657,47,Morgan Freeman,1383338059 +235657,47,serial killer,1383338095 +235657,47,twist ending,1383338057 +235657,293,Jean Reno,1383394594 +235657,1036,tense,1383329579 +235657,1036,thriller,1383329581 +235657,1218,John Woo,1383338126 +235657,1240,Arnold Schwarzenegger,1383327876 +235657,1240,artificial intelligence,1383327880 +235657,1240,sci-fi,1383327893 +235657,1240,Thriller,1383327895 +235657,1625,complicated,1383337935 +235657,1625,Mystery,1383337920 +235657,1625,surprise ending,1383337928 +235657,1625,suspense,1383337925 +235657,3022,black and white,1383337975 +235657,3022,silent movie,1383337984 +235657,3578,Russell Crowe,1383329633 +235657,5418,Matt Damon,1383394393 +235657,30707,Clint Eastwood,1383329693 +235657,30707,Morgan Freeman,1383329695 +235657,51935,Mark Wahlberg,1383394345 +235657,51935,revenge,1383394330 +235657,64614,Clint Eastwood,1383329717 +235657,64614,revenge,1383329714 +235657,89774,MMA,1383329663 +235657,99112,Tom Cruise,1383394374 +235657,103228,anime,1383337804 +235675,356,tom hanks,1434641142 +235675,356,vietnam war,1434641142 +235675,356,woodstock,1434641142 +235675,26614,Not the movie with Matt Damon,1434641024 +235675,26614,original film,1434641040 +235680,3949,addiction,1294869298 +235680,3949,atmospheric,1294869253 +235680,3949,based on a book,1294869295 +235680,3949,cinematography,1294869255 +235680,3949,dark,1294869257 +235680,3949,depressing,1294869259 +235680,3949,disturbing,1294869261 +235680,3949,drugs,1294869278 +235680,3949,emotional,1294869264 +235680,3949,heroin,1294869280 +235680,3949,Nudity (Full Frontal - Notable),1294869283 +235680,3949,Nudity (Full Frontal),1294869288 +235680,3949,psychology,1294869246 +235680,3949,social commentary,1294869273 +235680,48043,artistic,1294869139 +235680,48043,atmospheric,1294869135 +235680,48043,cerebral,1294869141 +235680,48043,dreamlike,1294869143 +235680,48043,Music,1294869150 +235680,48043,philosophical,1294869152 +235680,48043,thought-provoking,1294869157 +235680,48043,visually appealing,1294869158 +235752,260,Fantastic adventure,1440936261 +235752,260,Moral values,1440936092 +235763,60950,caricatured,1270156853 +235763,60950,patronizing,1270156331 +235763,60950,vapid,1270156916 +235763,73023,Jeff Bridges,1269904235 +235763,73023,unlikely romance,1269904230 +235781,110,bad directing,1424702649 +235781,110,historical,1424702434 +235781,110,long,1424702461 +235781,110,Scotland,1424702446 +235781,110,slow,1424702505 +235781,3578,Ancient Rome,1424703975 +235781,3578,gladiators,1424704113 +235781,3578,Hans Zimmer,1424704073 +235781,3578,historical inaccuracy,1424704501 +235781,3578,Russell Crowe,1424703958 +235781,3578,stylized,1424704528 +235781,4246,chick flick,1424702873 +235781,4246,comedy,1424702892 +235781,4246,Romance,1424702870 +235781,4246,romantic comedy,1424702876 +235781,8977,Ancient Greece,1424701462 +235781,8977,bad directing,1424702614 +235781,8977,bisexual,1424701429 +235781,8977,Historical inaccuracy,1424701847 +235781,8977,History,1424701528 +235781,8977,homosexuality,1424701417 +235781,8977,incoherency,1424702344 +235781,8977,Jared Leto,1424701508 +235781,8977,long,1424701649 +235781,8977,slow paced,1424701550 +235781,27646,based on a true story,1435661212 +235781,27646,military,1435661212 +235781,27646,tragedy,1435661212 +235781,27646,transgender,1435661212 +235781,27674,Clark Gregg,1435661030 +235781,27674,complicated plot,1435661038 +235781,27674,dark comedy,1435661053 +235781,27674,multiple storylines,1435661059 +235781,27674,Stark Sands,1435661008 +235781,47952,Sebastian Stan,1424876051 +235781,52694,awkward moments,1424703470 +235781,59315,Iron Man,1424705739 +235781,59315,Marvel,1424705709 +235781,59315,Marvel Cinematic Universe,1424705763 +235781,59315,military,1424705716 +235781,59315,Robert Downey Jr.,1424705705 +235781,59315,superhero,1424705700 +235781,76175,adventure,1424703773 +235781,76175,CGI,1424703642 +235781,76175,fantasy,1424703630 +235781,76175,Greek mythology,1424703615 +235781,76175,Liam Neeson,1424703591 +235781,77561,Iron Man,1424702760 +235781,77561,Marvel,1424702744 +235781,77561,Marvel Cinematic Universe,1424702845 +235781,77561,Robert Downey Jr.,1424702803 +235781,77561,Samuel L. Jackson,1424702794 +235781,77561,superhero,1424702822 +235781,77561,The Avengers,1424702814 +235781,79796,adventure,1424703939 +235781,79796,Ancient Rome,1424703019 +235781,79796,historical inaccuracy,1424703114 +235781,79796,History,1424704011 +235781,79796,Legends,1424703085 +235781,79796,Michael Fassbender,1424702970 +235781,79796,Scotland,1424703045 +235781,81591,horror,1424701276 +235781,81591,Natalie Portman,1424701261 +235781,81591,Sebastian Stan,1424701326 +235781,81591,Winona Ryder,1424701283 +235781,85025,adventure,1424703853 +235781,85025,Ancient Rome,1424703205 +235781,85025,Channing Tatum,1424703277 +235781,85025,cinematography,1424703165 +235781,85025,historical inaccuracy,1424703338 +235781,85025,History,1424704028 +235781,85025,Jamie Bell,1424703151 +235781,85025,photography,1424703827 +235781,85025,Scotland,1424703153 +235781,85438,Jamie Bell,1424687694 +235781,86332,Marvel,1424705838 +235781,86332,Marvel Cinematic Universe,1424705863 +235781,86332,mythology,1424705834 +235781,86332,superhero,1424705831 +235781,88140,1940's,1424705244 +235781,88140,Bechdel Test:Fail,1424705391 +235781,88140,Captain America,1424705101 +235781,88140,Chris Evans,1424705076 +235781,88140,Hayley Atwell,1424705083 +235781,88140,Howling Commandos,1424705600 +235781,88140,"James Buchanan ""Bucky"" Barnes",1424705355 +235781,88140,Marvel,1424705069 +235781,88140,Marvel Cinematic Universe,1424705093 +235781,88140,military,1424705110 +235781,88140,role models,1424705126 +235781,88140,Sebastian Stan,1424705153 +235781,88140,Steve Rodgers,1424705369 +235781,88140,superhero,1424705073 +235781,88140,theme song,1424705096 +235781,89745,Agent Maria Hill,1424706285 +235781,89745,bad directing,1424706170 +235781,89745,Black Widow,1424706283 +235781,89745,Captain America,1424705955 +235781,89745,Chris Evans,1424706001 +235781,89745,Iron Man,1424705975 +235781,89745,Joss Whedon,1424705948 +235781,89745,Mark Ruffalo,1424706021 +235781,89745,Marvel,1424705943 +235781,89745,Marvel Cinematic Universe,1424706012 +235781,89745,Quality CGI,1424706151 +235781,89745,Scarlett Johansson,1424706005 +235781,89745,superhero,1424705968 +235781,89745,Thor,1424705990 +235781,93766,adventure,1424703766 +235781,93766,CGI,1424703720 +235781,93766,fantasy,1424703718 +235781,93766,Greek mythology,1424703713 +235781,93766,Liam Neeson,1424703744 +235781,93766,Sam Worthington,1424703752 +235781,102125,humour,1424704886 +235781,102125,improved sequel,1424704917 +235781,102125,Iron Man,1424704783 +235781,102125,Mark Ruffalo,1424704899 +235781,102125,Marvel,1424704791 +235781,102125,Marvel Cinematic Universe,1424704877 +235781,102125,Paul Bettany,1424704925 +235781,102125,Robert Downey Jr.,1424704786 +235781,102125,superhero,1424704796 +235781,106072,Idris Elba,1424704623 +235781,106072,improved sequal,1424705000 +235781,106072,Marvel Cinematic Universe,1424704608 +235781,106072,MCU,1424704660 +235781,106072,superhero,1424704627 +235781,109374,amazing storytelling,1434843698 +235781,109374,cast,1434843674 +235781,109374,cinematography,1434843640 +235781,109374,Hilarious,1434843678 +235781,109374,Ralph Fiennes,1434843745 +235781,109374,stylized,1434843647 +235781,109374,visually appealing,1434843686 +235781,110102,Acting,1424706775 +235781,110102,Anthony Mackie,1424706784 +235781,110102,Anthony Russo,1424706447 +235781,110102,Best of MCU,1424706903 +235781,110102,Black Widow,1424706728 +235781,110102,Captain America,1424706224 +235781,110102,character development,1424706598 +235781,110102,Chris Evans,1424706211 +235781,110102,cinematography,1424706693 +235781,110102,Fight Choreography,1424706460 +235781,110102,"James Buchanan ""Bucky"" Barnes",1424706413 +235781,110102,Joe Russo,1424706450 +235781,110102,Marvel,1424706227 +235781,110102,Marvel Cinematic Universe,1424706220 +235781,110102,Peggy Carter,1424706596 +235781,110102,Quality CGI,1424706706 +235781,110102,Scarlett Johansson,1424706217 +235781,110102,Sebastian Stan,1424706411 +235781,110102,Steve Rodgers,1424706600 +235781,110102,Story,1424706800 +235781,110102,strong woman,1424706462 +235781,110102,superhero,1424706214 +235781,110102,watch the credits,1424706762 +235781,116660,bisexual,1434836533 +235781,116660,gay,1434836533 +235781,116660,german,1434836533 +235781,116660,police,1434836533 +235781,122892,Captain America,1434836721 +235781,122892,Joss Whedon,1434836740 +235781,122892,Marvel,1434836673 +235781,122892,ooc,1434836667 +235781,122892,sexist,1434836649 +235781,126430,history,1426971981 +235781,126430,marines,1426971981 +235781,126430,wwii,1426971981 +235792,111,Classic,1138297969 +235792,501,Underrated piece of genius,1138297959 +235792,923,The greatest,1138297772 +235792,1212,My favourite of all,1138297818 +235792,2731,Le plus beau des films,1138297751 +235792,3134,Il film perfetto,1138297828 +235792,4914,le plus grand des films,1138297765 +235792,5752,Make love to it,1138297987 +235792,6669,Underrated piece of genius,1138297864 +235792,7064,La vie en rose,1138298003 +235792,7577,Ein Zauberfilm von einem Zauberer,1138297934 +235792,8154,Il film perfetto,1138297850 +235792,30793,Disturbing and grotesque - what a nightmare,1140449012 +235792,34437,Disappointing from two geniuses,1139068988 +235792,37727,Ihan ok. Loppu oli vähän liian nopea.,1138297693 +235792,43836,More funny than anyone gives it credit for. Do critics not have senses of humour?,1140123301 +235792,44199,Another Spike and Denzel gem,1143499202 +235792,44555,ein grosses Film - ausgezeichnet!!,1192393455 +235792,46970,worst movie of this year,1166475577 +235828,2795,Notable Nudity,1154909588 +235896,7254,ramification,1439686691 +235896,49530,compassion,1439686811 +235901,161,war,1435657875 +235901,5066,honest,1395014326 +235901,5066,love,1395014326 +235901,5066,love story,1395014326 +235901,5066,simple,1395014326 +235901,129399,stand-up comedy,1437860698 +235908,50940,danish,1437253871 +235908,50940,disability,1437253885 +235908,50940,serial killer,1437253876 +235908,50940,suicide,1437253873 +235909,356,apple,1425498322 +235909,356,history of usa,1425498322 +235909,356,tom hanks,1425498322 +235909,593,anthony hopkins,1427751181 +235909,593,hannibal lecter,1427751181 +235909,593,thriller,1427751181 +235909,2028,Tom Hanks,1423910530 +235909,2028,World War II,1423910539 +235940,3578,entertaining,1441225750 +235940,27598,comedy,1441238207 +235940,27598,nature,1441238228 +235940,27598,Zhao Wei,1441238196 +235940,68157,cheesy,1441229122 +235940,81845,boring,1441225663 +235940,86332,cheesy,1441225621 +236028,551,fantasy,1386729444 +236028,551,surreal,1386729449 +236028,1206,psychology,1388114457 +236028,1527,surreal,1386730825 +236028,2297,imaginative,1416108587 +236028,2297,scenic,1416108591 +236028,2297,surreal,1416108584 +236028,2542,dark comedy,1416109835 +236028,2692,artistic,1388115104 +236028,3949,psychology,1386729588 +236028,4027,great soundtrack,1444352346 +236028,4239,drugs,1386729223 +236028,4993,Adventure,1416108997 +236028,4993,epic,1416108994 +236028,4993,fantasy,1416109008 +236028,4993,fantasy world,1416108993 +236028,5618,dreamlike,1416108364 +236028,7099,adventure,1416109040 +236028,7099,fantasy,1416109042 +236028,7099,fantasy world,1416109039 +236028,7139,Christmas,1388113895 +236028,7153,Adventure,1416109073 +236028,7153,fantasy,1416109072 +236028,7153,fantasy world,1416109076 +236028,8874,dark comedy,1386729576 +236028,31658,dreamlike,1416108322 +236028,31658,fantasy world,1416108315 +236028,51255,dark comedy,1386729566 +236028,51255,dystopia,1386729569 +236028,52443,animation,1426218610 +236028,52443,anime,1423840435 +236028,52443,dumbed down,1426218610 +236028,52443,great soundtrack,1426218610 +236028,52443,no character development,1423840479 +236028,52443,thought-provoking,1423840484 +236028,52806,beautiful,1416110190 +236028,52806,fantasy,1416110191 +236028,52806,fantasy world,1416110203 +236028,54259,adapted from:book,1386738849 +236028,54259,adventure,1386738851 +236028,54259,atmospheric,1386738853 +236028,54259,author:Neil Gaiman,1386738856 +236028,54259,based on a book,1386738844 +236028,54259,british,1386738858 +236028,54259,comedy,1386738863 +236028,54259,coming of age,1386738865 +236028,54259,fairy tale,1386738841 +236028,54259,fantasy,1386738868 +236028,54259,fantasy world,1386738870 +236028,54259,magic,1386738873 +236028,54259,modern fantasy,1386738875 +236028,56339,horror,1402282233 +236028,60069,Animation,1416109090 +236028,60069,beautiful scenery,1416109099 +236028,60069,emotional,1416109105 +236028,60069,funny,1416109101 +236028,60069,inspirational,1416109109 +236028,62336,Not a movie,1388115205 +236028,64957,bittersweet,1416108622 +236028,64957,original plot,1416108619 +236028,64957,touching,1416108615 +236028,65261,beautiful,1416108412 +236028,72226,great cast,1416109066 +236028,72226,hilarious,1416109062 +236028,72226,visually appealing,1416109056 +236028,74553,animation,1416108274 +236028,74553,art,1416108268 +236028,74553,beautiful,1416108271 +236028,76093,adventure,1416109117 +236028,76093,animation,1416109114 +236028,76093,fantasy,1416109112 +236028,76093,friendship,1416109115 +236028,79702,surreal,1386729277 +236028,81355,bizzare,1422062332 +236028,81355,critical thinking,1422062332 +236028,81355,thought-provoking,1422062332 +236028,83132,beautiful,1416108440 +236028,83132,bittersweet,1416108441 +236028,86347,stand-up comedy,1386729705 +236028,86377,not a movie,1386729616 +236028,86377,stand-up comedy,1386729621 +236028,90866,bittersweet,1416108692 +236028,90866,fantasy,1416108702 +236028,90866,visually appealing,1416108687 +236028,91077,boring,1423840738 +236028,91077,slow,1423840743 +236028,91500,predictable,1386729191 +236028,92259,touching,1416108460 +236028,93473,animation,1423108582 +236028,93473,post-apocalyptic,1423108582 +236028,93473,psychological,1423108582 +236028,93838,action-filled,1422063991 +236028,97923,addiction,1416110029 +236028,97923,alcoholism,1416110027 +236028,97938,emotional,1416108660 +236028,97938,surreal,1386729129 +236028,97938,visually appealing,1416108658 +236028,98243,Adventure,1416109853 +236028,101962,moving,1416108488 +236028,106011,animation,1423840209 +236028,106011,heartwarming,1423840209 +236028,106011,touching,1423840209 +236028,106920,embarrasing,1416109474 +236028,107069,senseless violence,1422064084 +236028,107069,unnecessary-suffering,1422064126 +236028,109487,epic,1416109782 +236028,109487,thought-provoking,1416109784 +236028,113378,emotive,1422064625 +236028,114552,adventure,1422062494 +236028,114552,fantasy world,1422062463 +236028,114662,lazy story,1423840813 +236028,114662,plot,1423840784 +236028,115210,acting,1423108709 +236028,115210,realistic,1423108674 +236028,115210,shocking,1423108686 +236028,115210,war,1423108655 +236028,115664,funny,1422063750 +236028,115664,journey,1422063737 +236028,115664,love,1422063731 +236039,296,acting,1356966571 +236039,318,Morgan Freeman,1356966523 +236039,903,Alfred Hitchcock,1374705824 +236039,903,Atmospheric,1374705830 +236039,903,classic,1374705829 +236039,903,disturbing,1374705826 +236039,903,James Stewart,1374705837 +236039,903,paranoid,1374705840 +236039,903,twist ending,1374705843 +236039,914,Audrey Hepburn,1371151173 +236039,914,funny,1371151186 +236039,914,Musical,1371151191 +236039,1207,adapted from:book,1377028405 +236039,1207,courtroom drama,1377028410 +236039,1701,Woody Allen,1393772445 +236039,1921,existentialism,1404023971 +236039,1921,mindfuck,1404023955 +236039,1921,paranoid,1404023958 +236039,3114,animation,1358179192 +236039,3114,cute,1358179210 +236039,3114,fanciful,1358179215 +236039,3114,toys,1358179224 +236039,3578,action,1362061043 +236039,3578,Ridley Scott,1362061037 +236039,3578,Russell Crowe,1362061039 +236039,3578,sword fight,1362061049 +236039,4124,Michael Caine,1393764499 +236039,4306,Eddie Murphy,1359660967 +236039,4370,androids,1362247131 +236039,4370,artificial intelligence,1362247133 +236039,4370,robots,1362247150 +236039,4370,sci-fi,1362247145 +236039,4370,Steven Spielberg,1362247141 +236039,4848,Atmospheric,1451676195 +236039,4848,David Lynch,1451676167 +236039,4848,dreamlike,1451676179 +236039,4848,hallucinatory,1451676186 +236039,4848,Mindfuck,1451676206 +236039,4848,nonlinear,1451676172 +236039,4848,stylized,1451676203 +236039,4848,surreal,1451676163 +236039,6383,crappy sequel,1372803868 +236039,6383,Eva Mendes,1372803875 +236039,6383,not as good as the first,1372803877 +236039,6383,street race,1372803882 +236039,6564,heroine in tight suit,1357899535 +236039,6564,predictable,1357899521 +236039,6564,sexy,1357899502 +236039,7265,eva green,1356967099 +236039,31545,Jacques Becker,1372800206 +236039,31545,touching,1372800208 +236039,55052,great cinematography,1359152350 +236039,55052,heartbreaking,1359152354 +236039,55052,Keira Knightley,1359152336 +236039,55820,coen brothers,1360338293 +236039,55820,Tommy Lee Jones,1360338283 +236039,55820,violent,1360338345 +236039,56145,the end,1356967122 +236039,60069,quirky,1358415349 +236039,60069,Sci-Fi,1358415346 +236039,71254,alternate reality,1358666504 +236039,71254,predictable,1358666494 +236039,71254,sci-fi,1358666500 +236039,71254,stupid,1358666488 +236039,71254,virtual reality,1358666498 +236039,72035,Jan Svankmajer,1374493427 +236039,76093,story,1356966559 +236039,79132,intellectual,1356966550 +236039,81564,animated,1359284990 +236039,81564,animation,1359284978 +236039,81564,anti-hero,1359284919 +236039,81564,funny,1359284921 +236039,81564,heartwarming,1359284943 +236039,81564,romance,1359284972 +236039,81564,witty,1359284994 +236039,86644,Vin Diesel,1374745187 +236039,89745,Comedy,1356966485 +236039,89745,Iron Man,1356966481 +236039,90866,cinematography,1375127863 +236039,90866,Martin Scorsese,1375127917 +236039,90866,story,1375127909 +236039,90866,visually appealing,1375127860 +236039,99114,Funny,1360500873 +236039,99114,Quentin Tarantino,1360500866 +236039,99114,Spaghetti Western,1360500885 +236039,99114,violence,1360500877 +236039,116799,dialogue-driven,1451676137 +236039,116799,Paul Thomas Anderson,1451676099 +236039,116799,visually appealing,1451676115 +236052,260,nerdy,1438820204 +236052,260,space adventure,1438820091 +236065,111360,drugs,1429785166 +236065,111360,strong female lead,1429785156 +236076,2076,dark,1440311559 +236076,2076,David Lynch,1440311540 +236076,2076,hallucinatory,1440311556 +236076,2076,lynch,1440311552 +236076,2076,neo-noir,1440311528 +236076,2076,sexual,1440311548 +236076,2076,sexuality,1440311533 +236076,2076,surreal,1440311519 +236076,2076,weird,1440311523 +236113,356,bittersweet,1453216833 +236113,356,classic,1453216835 +236113,356,feel-good,1453216846 +236113,356,great acting,1453216854 +236113,356,heartwarming,1453216844 +236113,356,inspirational,1453216837 +236113,356,meaning of life,1453216850 +236113,356,touching,1453216840 +236113,2076,David Lynch,1453042568 +236113,2076,lynch,1453042565 +236113,2076,sexuality,1453042560 +236113,2076,weird,1453042554 +236113,2858,bittersweet,1452963819 +236113,2858,black comedy,1452963810 +236113,2858,coming of age,1452963806 +236113,2858,dark comedy,1452963797 +236113,2858,excellent script,1452963814 +236113,2858,great acting,1452963812 +236113,2858,kevin spacey,1452963801 +236113,2858,loneliness,1452963822 +236113,2858,midlife crisis,1452963807 +236113,2858,Oscar (Best Picture),1452963816 +236113,2858,sexuality,1452963809 +236113,2858,social commentary,1452963803 +236113,2858,thought-provoking,1452963800 +236113,4226,complicated,1452342640 +236113,4226,cult film,1452342644 +236113,4226,great ending,1452342654 +236113,4226,Mindfuck,1452342642 +236113,4226,nonlinear,1452342634 +236113,4226,plot twist,1452342661 +236113,4226,tense,1452342648 +236113,4226,twist ending,1452342637 +236113,4848,lesbian,1451826490 +236113,4848,Mindfuck,1451826491 +236113,4848,nonlinear,1451826483 +236113,4848,strange,1451826505 +236113,4848,surreal,1451826481 +236113,4878,complicated,1451516299 +236113,4878,cult film,1451516286 +236113,4878,mental illness,1451516281 +236113,4878,mindfuck,1451516291 +236113,4878,original,1451516278 +236113,4878,psychology,1451516274 +236113,4878,thought-provoking,1451516276 +236113,4878,time travel,1451516271 +236113,4878,twist ending,1451516283 +236113,6197,gloomy,1453642558 +236113,6197,mental illness,1453642555 +236113,6870,Dark,1452641128 +236113,6870,revenge,1452641122 +236113,6870,thriller,1452641130 +236113,6870,twist ending,1452641113 +236113,7158,misunderstanding,1453508790 +236113,7361,complicated,1452122087 +236113,7361,nonlinear,1452122071 +236113,7361,philosophy,1452122075 +236113,7361,surreal,1452122069 +236113,8914,complex,1453685188 +236113,8914,Complicated,1453685177 +236113,8914,complicated plot,1453685173 +236113,8914,mindfuck,1453685170 +236113,8914,thought-provoking,1453685185 +236113,8950,disturbing,1451516192 +236113,8950,powerful ending,1451516188 +236113,8950,psychological,1451516199 +236113,8950,psychology,1451516179 +236113,8950,schizophrenia,1451516181 +236113,8950,stylized,1451516195 +236113,8950,twist ending,1451516172 +236113,30707,Clint Eastwood,1452438106 +236113,30707,disability,1452438114 +236113,30707,thought-provoking,1452438117 +236113,48780,complicated,1451690377 +236113,48780,nonlinear,1451690369 +236113,48780,obsession,1451690385 +236113,50011,Complex,1452450155 +236113,50011,metaphorical,1452450140 +236113,63082,bollywood,1452812561 +236113,63082,feel-good,1452812540 +236113,63082,love,1452812549 +236113,63082,nonlinear,1452812527 +236113,63082,Poverty,1452812546 +236113,63082,social commentary,1452812530 +236113,63082,violence,1452812537 +236113,73413,single parents,1452805429 +236113,74324,autism,1452803632 +236113,74324,inspirational,1452803637 +236113,74324,mental illness,1452803641 +236113,74324,science,1452803635 +236113,74324,true story,1452803645 +236113,78574,drugs,1451991192 +236113,78574,realism,1451991189 +236113,78574,resilience,1451991197 +236113,78574,rural,1451991195 +236113,78574,thriller,1451991200 +236113,81845,complex characters,1451943004 +236113,81845,historical,1451943009 +236113,90057,ambiguous,1453657891 +236113,90057,apocalyptic,1453657895 +236113,90057,mental illness,1453657887 +236113,90057,psychology,1453657890 +236113,90374,cult,1451944213 +236113,96034,atmospheric,1452805392 +236113,96034,island,1452805398 +236113,96034,MISSING PERSONS,1452805400 +236113,96034,suspense,1452805396 +236113,104879,atmospheric,1451990869 +236113,104879,Denis Villeneuve,1451990875 +236113,104879,great ending,1451990871 +236113,104879,morality,1451990873 +236113,104879,thriller,1451990867 +236113,104879,torture,1451990879 +236113,106920,artificial intelligence,1451856385 +236113,106920,loneliness,1451856393 +236113,106920,thought-provoking,1451856388 +236113,108729,confusing,1451944041 +236113,108729,good acting,1451944052 +236113,108729,mental illness,1451944054 +236113,108729,mindfuck,1451944039 +236113,108729,Psychological,1451944045 +236113,108729,tense,1451944043 +236113,112497,alcoholism,1451719585 +236113,112497,road trip,1451719591 +236113,112552,intense,1451652229 +236113,112552,jazz,1451652224 +236113,112552,motivation,1451652235 +236113,112552,perfectionism,1451652238 +236113,112552,Tense,1451652226 +236113,115713,artificial intelligence,1451719739 +236113,115713,plot twist,1451719748 +236113,115713,Psychological,1451719753 +236113,115713,sci-fi,1451719742 +236113,115713,Tense,1451719759 +236113,115713,thought provoking,1451719744 +236113,115713,visual effects,1451719762 +236113,133771,absurdist humor,1454018655 +236113,133771,confusing,1454018664 +236113,133771,weird,1454018670 +236121,57,drama,1187025330 +236121,837,children's comedy,1187025019 +236121,915,romance,1187025065 +236121,955,comedy,1187025082 +236121,955,romance,1187025082 +236121,1012,children's drama,1187025188 +236121,1441,romance,1187024932 +236121,1633,drama,1187025312 +236121,1959,drama,1187025030 +236121,1959,romance,1187025030 +236121,2133,adventure,1187025053 +236121,2133,comedy,1187025053 +236121,2384,children,1187025001 +236121,2412,drama,1187025245 +236121,2431,comedy,1187024961 +236121,2463,comedy,1187025164 +236121,2648,horror classic,1187025232 +236121,2819,thriller,1187025274 +236121,3037,comedy,1187025118 +236121,3271,drama,1187025239 +236121,4103,drama,1187025303 +236121,5308,comedy,1187025339 +236121,5992,drama,1187025206 +236121,6385,drama,1187025281 +236121,8970,drama,1187025106 +236143,260,ahead of its time,1434369046 +236143,260,spectacular,1434369021 +236143,3493,giallo,1449103077 +236143,5778,Slasher,1449103026 +236143,45533,delight,1434662607 +236143,45533,perversion,1434662601 +236143,45533,rich,1434662617 +236143,68324,crisis,1435182372 +236143,68324,political economy,1435182360 +236143,113066,delightful,1437091143 +236143,113066,delirious,1437091143 +236143,113066,inventive,1437091143 +236143,122882,compact,1434380089 +236143,122882,glorious,1434380089 +236143,122882,rich,1434380089 +236143,127224,acting,1437740045 +236143,127224,one more effort,1437740045 +236143,127224,real,1437740045 +236143,127234,against the spectacle,1435182066 +236143,127234,sad,1435182066 +236143,127234,social criticism,1435182066 +236209,1265,comedy,1328656312 +236214,296,fast-paced,1431993794 +236214,296,lurid,1431993794 +236214,296,neo-noir,1431993794 +236214,593,dark,1435643127 +236214,593,heavy,1435643127 +236214,593,psychological,1435643127 +236214,919,classic,1433698503 +236214,919,Musical,1433698488 +236214,1073,cult film,1433698553 +236214,1073,surreal,1433698548 +236214,1073,Whimsical,1433698546 +236214,1073,witty,1433698543 +236214,1285,black comedy,1431991942 +236214,1285,cult film,1431991946 +236214,1285,cynical,1431991944 +236214,1285,dark comedy,1431991955 +236214,1285,dark humor,1431991958 +236214,1285,deadpan,1431991961 +236214,1285,satirical,1431991965 +236214,1285,snappy dialog,1431991953 +236214,2746,dark comedy,1431994557 +236214,2746,musical,1431994570 +236214,3030,black comedy,1431991708 +236214,5971,deep meaning,1431991596 +236214,5971,great soundtrack,1431991581 +236214,5971,visually appealing,1431991621 +236214,7099,post-apocalyptic,1433698948 +236214,27706,dark comedy,1433698679 +236214,27706,stylized,1433698769 +236214,27706,visually interesting--that's about it,1433698672 +236214,30793,colorful,1433698622 +236214,30793,quirky,1433698600 +236214,46578,independent film,1431996512 +236214,52319,experimental,1433698099 +236214,55442,animation,1435637230 +236214,55442,melancholy,1435637218 +236214,55442,stylized,1435637279 +236214,68157,dark comedy,1433698225 +236214,68157,Quentin Tarantino,1433698220 +236214,68157,tense,1433698244 +236214,68157,visually appealing,1433698259 +236214,71899,dreary,1431994054 +236214,79702,fast-paced,1431994897 +236214,79702,stylized,1431994864 +236214,79702,visually appealing,1431994866 +236214,99764,moving,1433698039 +236214,99764,surreal,1431994066 +236214,105355,long,1431996831 +236214,110328,different,1431993622 +236214,112515,atmospheric,1431995248 +236214,112515,psychological,1431995246 +236222,46723,Potential Oscar Nom,1172515142 +236233,292,formulaic,1143438717 +236233,2599,Hilarious!! :D,1143438664 +236250,296,dark humor,1433459149 +236250,296,disjointed timeline,1433459149 +236250,296,quentin tarantino,1433459149 +236253,260,hero's journey,1431741959 +236257,31408,gay,1428257469 +236257,31408,lgbt,1428257476 +236257,31408,love,1428257491 +236257,115617,animation,1428257427 +236257,115617,cute,1428257427 +236257,115617,superhero,1428257427 +236267,82459,Everyone mumbles,1300140339 +236267,82459,western,1300140335 +236275,50,bad acting,1435902152 +236275,50,boring,1435902143 +236275,3578,Rome,1428581540 +236275,64695,anime,1436699300 +236275,64695,anti-hero,1436699300 +236275,64695,japan,1436699300 +236277,260,romance,1444630411 +236277,260,space adventure,1444630403 +236288,260,space western,1433298880 +236362,356,classic,1349927747 +236362,356,Oscar (Best Picture),1349927761 +236362,356,Tom Hanks,1349927742 +236362,356,vietnam war,1349927786 +236362,5952,based on a book,1349927910 +236362,5952,fantasy,1349927907 +236362,27266,chinese,1423995851 +236362,27266,love,1423995851 +236362,27266,oscar winner,1423995851 +236362,72998,futuristic,1390202153 +236362,72998,sci-fi,1390202164 +236362,78499,childhood,1349927858 +236362,78499,Pixar,1349927851 +236362,104841,physics,1390200995 +236362,104841,sci-fi,1390200951 +236362,104841,science,1390200986 +236362,104841,visually appealing,1390200978 +236365,2360,bad camera work,1418580118 +236365,3267,bad acting,1413634206 +236365,3267,bad music,1413634219 +236365,3267,low budget,1413634184 +236365,4235,multiple storylines,1424037677 +236365,4873,pretentious,1418556881 +236365,6953,multiple storylines,1424037702 +236365,40414,fraternization with the enemy,1423993670 +236365,58301,remake,1421788912 +236365,70315,accents,1423330385 +236365,70315,Bilbao,1423330107 +236365,74750,demon possession,1423346864 +236365,74750,zombies,1423346854 +236365,79860,remake,1422211273 +236365,91880,fraternization with the enemy,1423993662 +236365,93457,revenge,1411017706 +236365,102481,product placement,1414929322 +236365,108512,family,1420077173 +236365,108512,prostitution,1420077173 +236365,108512,spanish culture,1420077173 +236365,109971,stereotypes,1417958564 +236365,114180,dystopia,1417732480 +236365,127321,zombies,1423346885 +236392,29,sci-fi,1264520885 +236392,32,Brad Pitt,1264521046 +236392,32,Bruce Willis,1264521039 +236392,32,complicated,1264521048 +236392,4226,complicated,1264521126 +236392,4226,j'ai deja vu ce film,1264521142 +236392,72998,Bechdel Test:Fail,1264617899 +236392,72998,bluepeople,1264617924 +236392,72998,military,1264617879 +236408,16,Martin Scorsese,1343339102 +236408,111,atmospheric,1344191719 +236408,111,Classic,1344191721 +236408,111,social commentary,1344191736 +236408,162,comic book,1343335751 +236408,162,deliberate,1343335765 +236408,162,quirky,1343335755 +236408,162,Terry Zwigoff,1343335758 +236408,223,hilarious,1343336821 +236408,223,Kevin Smith,1343336826 +236408,223,surreal,1343336811 +236408,235,Tim Burton,1343336296 +236408,594,cute,1343333992 +236408,668,realism,1343338347 +236408,668,satyajit ray,1343338358 +236408,903,Atmospheric,1345506563 +236408,923,atmospheric,1343335570 +236408,923,cinematography,1343335573 +236408,923,thought provoking,1343335577 +236408,968,brilliant ending,1343254612 +236408,968,zombies,1343254622 +236408,1036,heroic,1343334188 +236408,1036,humorous,1343334185 +236408,1036,tense,1343334182 +236408,1197,fantasy,1343257257 +236408,1197,quirky,1343257255 +236408,1197,whimsical,1343257267 +236408,1208,psychological,1343254672 +236408,1208,surreal,1343254663 +236408,1208,Vietnam war,1343254685 +236408,1208,war,1343254685 +236408,1230,quirky,1343335254 +236408,1230,thought-provoking,1343335270 +236408,1237,atmospheric,1343288249 +236408,1237,cerebral,1343288253 +236408,1237,dreamlike,1343288320 +236408,1237,religion,1343288325 +236408,1251,fantasy,1343334246 +236408,1251,Federico Fellini,1343334249 +236408,1251,misogyny,1343334238 +236408,1251,overrated,1343334240 +236408,1251,quirky,1343334243 +236408,1251,surreal,1343334253 +236408,1251,whimsical,1343334241 +236408,1275,immortals,1343254305 +236408,1275,original plot,1343254298 +236408,1293,based on a true story,1343336347 +236408,1293,biopic,1343336345 +236408,1293,Oscar (Best Picture),1343336352 +236408,1653,atmospheric,1343261458 +236408,1653,dystopia,1343261454 +236408,1653,sci-fi,1343261461 +236408,1653,thought-provoking,1343261463 +236408,1653,visually appealing,1343261465 +236408,1859,intellectual,1343334432 +236408,1859,meditative,1343334435 +236408,1945,overrated,1343333193 +236408,1974,slow,1343338859 +236408,1982,horror,1343335952 +236408,1982,John Carpenter,1343335942 +236408,1982,slasher,1343335956 +236408,2064,documentary,1343335813 +236408,2064,liberal propaganda,1343335785 +236408,2064,Michael Moore,1343335805 +236408,2131,claustrophobic,1343335388 +236408,2174,Tim Burton,1343336233 +236408,2351,Best Performance: Giulietta Masina as Cabria,1343334365 +236408,2351,earnest,1343334373 +236408,2351,matter-of-fact,1343334360 +236408,2571,artificial intelligence,1343251493 +236408,2571,atmospheric,1343251498 +236408,2571,cyberpunk,1343251491 +236408,2571,dystopia,1343251481 +236408,2571,sci-fi,1343251496 +236408,2571,stylized,1343251486 +236408,2571,surreal,1343251483 +236408,2571,thought-provoking,1343251488 +236408,2985,dystopia,1343250953 +236408,2985,police,1343250961 +236408,2985,robots,1343250951 +236408,2985,sci-fi,1343250942 +236408,2985,social commentary,1343250940 +236408,2985,superhero,1343250955 +236408,2986,comic book,1343251227 +236408,2986,dystopia,1343251230 +236408,2986,Irvin Kershner,1343251225 +236408,2986,robots,1343251223 +236408,3000,action,1343251106 +236408,3000,atmospheric,1343251103 +236408,3000,dystopia,1343251091 +236408,3000,fantasy,1343251101 +236408,3000,Hayao Miyazaki,1343251099 +236408,3000,surreal,1343251094 +236408,3033,breaking the fourth wall,1343334937 +236408,3033,slapstick,1343334930 +236408,3471,Sci-fi,1343334657 +236408,3471,Steven Spielberg,1343334660 +236408,3788,atmospheric,1343335507 +236408,3788,cerebral,1343335502 +236408,3788,paranoid,1343335512 +236408,3788,stylized,1343335504 +236408,5291,Akira Kurosawa,1343334791 +236408,5291,cerebral,1343334801 +236408,5291,enigmatic,1343334804 +236408,5291,surreal,1343334807 +236408,5349,comic book,1343251025 +236408,5349,superhero,1343251020 +236408,5618,atmospheric,1343251124 +236408,5618,dreamlike,1343251128 +236408,5618,surreal,1343251122 +236408,5618,whimsical,1343251132 +236408,6502,post-apocalyptic,1343334295 +236408,6502,sci-fi,1343334300 +236408,6502,stylized,1343334302 +236408,6502,visually appealing,1343334299 +236408,6987,german expressionism,1343336695 +236408,6987,surreal,1343336693 +236408,7022,dystopia,1343251033 +236408,7360,post-apocalyptic,1343526572 +236408,7360,remake,1343526596 +236408,7361,dreamlike,1343260120 +236408,7361,fantasy,1343260122 +236408,7361,quirky,1343260111 +236408,7361,sci-fi,1343260108 +236408,7361,surrealism,1343260114 +236408,8014,Atmospheric,1345998518 +236408,8014,compassionate,1345998523 +236408,8014,Kim Ki-Duk,1345998531 +236408,8636,based on comic,1343250999 +236408,8636,superhero,1343251009 +236408,8879,Ingrid Bergman,1343338567 +236408,8879,Sidney Lumet,1343338560 +236408,25771,Luis Buñuel,1343334856 +236408,25771,surreal,1343334851 +236408,25771,surrealism,1343334850 +236408,25954,atmospheric,1343335691 +236408,25954,stylized,1343335686 +236408,27773,based on comic,1343251195 +236408,27773,great soundtrack,1343251205 +236408,27773,hallucinatory,1343251197 +236408,27773,stylized,1343251209 +236408,31658,fantasy,1343334556 +236408,31658,stylized,1343334546 +236408,31658,whimsical,1343334545 +236408,37287,Carl Theodor Dreyer,1343335021 +236408,37287,Dreyer,1343335018 +236408,42783,Sergei Parajanov,1345998577 +236408,44191,action,1286685101 +236408,44191,dystopia,1343251142 +236408,44191,sci-fi,1286685101 +236408,44191,social commentary,1343251148 +236408,44191,thought-provoking,1286683334 +236408,48043,atmospheric,1343260303 +236408,48043,dreamlike,1343260317 +236408,48043,philosophical,1343260327 +236408,48043,sci-fi,1343260312 +236408,48043,surreal,1343260310 +236408,48043,visually appealing,1343260323 +236408,48394,atmospheric,1343778194 +236408,48394,stylized,1343778198 +236408,48394,surreal,1343778196 +236408,48780,atmospheric,1343251990 +236408,48780,magic,1343251998 +236408,48780,sci-fi,1343252001 +236408,53996,based on a comic,1343333552 +236408,53996,high school,1343333567 +236408,53996,sci-fi,1343333550 +236408,53996,Steven Spielberg,1343333558 +236408,53996,teen,1343333545 +236408,54503,Teen movie,1343339191 +236408,55820,great acting,1343333282 +236408,58559,Atmospheric,1343251067 +236408,58559,stylized,1343251065 +236408,58559,superhero,1343251071 +236408,60684,comic book,1343251299 +236408,60684,dystopia,1343251285 +236408,60684,sci-fi,1343251287 +236408,60684,stylized,1343251294 +236408,66934,not a movie,1343288394 +236408,70286,action,1343250900 +236408,70286,aliens,1343250887 +236408,70286,atmospheric,1343250917 +236408,70286,intelligent,1343250892 +236408,70286,sci-fi,1343250881 +236408,70286,thriller,1343250922 +236408,72641,based on a true story,1343334046 +236408,72641,feel good movie,1343334040 +236408,72641,feel-good,1343334038 +236408,72641,inspirational,1343334051 +236408,72641,true story,1343334043 +236408,76251,comic book,1343288469 +236408,78893,fantasy,1343252407 +236408,78893,good idea,1343252430 +236408,78893,M. Night Shyamalan,1343252453 +236408,78893,story,1343252428 +236408,79702,awesome soundtrack,1343251269 +236408,79702,comic book,1343251261 +236408,79702,fantasy,1343251251 +236408,79702,hilarious,1343251274 +236408,79702,stylized,1343251249 +236408,79702,surreal,1343251257 +236408,79702,video games,1343251264 +236408,79702,whimsical,1343251266 +236408,81845,disability,1343333072 +236408,81845,feel-good,1343333036 +236408,81845,true story,1343333055 +236408,83349,comic book,1343255212 +236408,83349,frivolous,1343255195 +236408,83349,predictable,1343255202 +236408,87520,audience intelligence underestimated,1343333592 +236408,87520,childish plot,1343333594 +236408,87520,Michael Bay,1343333595 +236408,87520,trite,1343333599 +236408,89745,comic book,1343251182 +236408,91529,Anne Hathaway,1343250702 +236408,91529,Bane's voice,1343250624 +236408,91529,Batman,1343250674 +236408,91529,comic books,1343250667 +236408,91529,Joseph Gordon-Levitt,1343250694 +236408,91529,Michael Caine,1343250686 +236408,91529,superhero,1343250671 +236408,91529,unsatisfying ending,1343250655 +236412,79400,documentary,1375104131 +236435,260,classic,1439232921 +236435,260,Thrilling,1439232933 +236468,296,uma thurman,1230609269 +236468,6016,based on a true story,1229582589 +236468,31793,drug use,1231741985 +236468,31793,family problem,1231742012 +236468,31793,female nudity,1231742039 +236468,31793,losing virginity,1231741935 +236468,31793,revenge,1231741993 +236468,31793,sex,1231741914 +236468,31793,suicide attempt,1231741972 +236468,31793,teenager,1231741952 +236475,1921,unsafe drill use,1149731129 +236479,1206,disturbing,1378580255 +236479,1206,satire,1378580275 +236479,1206,social commentary,1378580263 +236479,1206,stylized,1378580270 +236479,1206,Surrealism,1378580280 +236479,1206,violence,1378580214 +236479,66934,anti-hero,1378580913 +236479,66934,bittersweet,1378580918 +236479,79132,heist,1378580133 +236479,79132,twist ending,1378580154 +236479,79132,visually appealing,1378580144 +236493,260,Is a series of movies.,1434107933 +236493,260,Might inspire you in a way.,1434107957 +236504,260,epic adventure,1445006380 +236504,260,quotable,1445006386 +236506,31193,series:Pooh,1184800524 +236510,253,fantasy,1309647394 +236513,54001,good vs. evil,1430242234 +236513,54001,teen,1430242221 +236513,60126,classic update,1430242328 +236525,47,Brad Pitt,1284305722 +236525,47,Christianity,1284305709 +236525,47,disturbing,1284305724 +236525,47,Kevin Spacey,1284305720 +236525,47,Morgan Freeman,1284305701 +236525,319,atmospheric,1284561075 +236525,319,crime,1284561079 +236525,319,cynical,1284561079 +236525,319,Danny Boyle,1284561082 +236525,319,macabre,1284561090 +236525,319,Nudity (Topless - Brief),1284561094 +236525,1265,alternate reality,1279734726 +236525,1265,animals,1279734730 +236525,1265,Bill Murray,1279734724 +236525,1265,comedy,1279734748 +236525,1265,Fantasy,1279734752 +236525,1265,funny,1279734767 +236525,1265,hilarious,1279734742 +236525,1265,imdb top 250,1279734739 +236525,1265,original plot,1279734737 +236525,1265,romance,1279734736 +236525,1265,surreal,1279734746 +236525,5047,digital editing,1272128911 +236525,5047,hilarious spoof,1272128908 +236525,5047,parody,1272128916 +236525,5047,Steve Oedekerk,1272128913 +236525,6502,British,1284305371 +236525,6502,Post apocalyptic,1284305376 +236525,6502,Sexualized violence,1284305381 +236525,6502,virus,1284305385 +236525,6502,Zombie,1284305389 +236525,6502,zombies,1284305392 +236525,27002,astronauts,1296188093 +236525,27002,NASA,1296188095 +236525,27002,not a movie,1296188097 +236525,27002,Tom Hanks,1296188101 +236525,37386,Post apocalyptic,1289921859 +236525,41285,CLASS DIFFERENCES,1285517971 +236525,41285,clever,1285517987 +236525,41285,non-hollywood ending,1285518011 +236525,41285,Scarlett Johansson,1285517974 +236525,41285,slow,1285517977 +236525,41285,tennis,1285517982 +236525,41285,Woody Allen,1285517976 +236525,52328,beautiful effects,1283286140 +236525,52328,Danny Boyle,1283286146 +236525,52950,Russian,1313430045 +236525,52950,sequel,1313430046 +236525,56145,apocalypse,1285891473 +236525,56145,atmospheric,1285891474 +236525,56145,father-son relationship,1285891504 +236525,56145,giant monster,1285891494 +236525,56145,small town,1285891492 +236525,56145,Survival,1285891491 +236525,56171,anti-religion,1272128943 +236525,56171,based on a book,1272128933 +236525,56171,fantasy world,1272128935 +236525,56171,magic,1272128936 +236525,56171,Nicole Kidman,1272128938 +236525,56171,Phillip Pullman,1272128940 +236525,56171,talking animals,1272128948 +236525,56171,trilogy,1272128949 +236525,68519,crappy sequel,1279734972 +236525,68519,Daveigh Chase,1279734964 +236525,68519,Donnie Darko,1279734966 +236525,68519,Time travel,1279734968 +236525,68791,bad acting,1279735821 +236525,68791,cgi,1279735828 +236525,68791,Christian Bale,1279735825 +236525,68791,effects,1279735823 +236525,68791,franchise,1279735839 +236525,68791,futuristic,1279735832 +236525,68791,post-apocalyptic,1279735833 +236525,68791,ROBOTS AND ANDROIDS,1279735834 +236525,68791,sequel,1279735836 +236525,68791,weak plot,1279735848 +236525,70336,80s nostalgia,1284561224 +236525,70336,audience intelligence underestimated,1284561208 +236525,70336,bad plot,1284561210 +236525,70336,childish,1284561214 +236525,70336,FX,1284561217 +236525,70336,good versus evil,1284561228 +236525,70336,good vs evil,1284561230 +236525,70336,infantil,1284561213 +236525,70336,Sienna Miller,1284561227 +236525,70336,silly plot,1284561220 +236525,70336,Special Effects,1284561222 +236525,71135,post-apocalyptic,1290482895 +236525,71135,sci-fi,1290482906 +236525,71135,space,1290482907 +236525,71135,space travel,1290482909 +236525,71156,based on a book,1274909815 +236525,71156,crazy people,1274909813 +236525,71156,drugs,1274909826 +236525,71156,George Clooney,1274909812 +236525,71156,Jeff Bridges,1274909805 +236525,71156,Kevin Spacey,1274909810 +236525,71156,military,1274909821 +236525,74458,ending twist,1282618461 +236525,74458,Leonardo DiCaprio,1282618467 +236525,74458,Martin Scorsese,1282618468 +236525,74458,plot twist,1282618474 +236525,74458,psychological,1282618472 +236525,74458,too long,1282618477 +236525,76175,3d,1279734919 +236525,76175,3D version,1272128727 +236525,76175,can't root for the charcters,1279734953 +236525,76175,not strictly a remake,1279734932 +236525,76175,remake,1279734938 +236525,76175,Special Effects,1279734940 +236525,79132,action,1280341475 +236525,79132,alternate reality,1280341470 +236525,79132,complicated,1280341479 +236525,79132,dream within a dream,1280341482 +236525,79132,Ellen Page,1280341477 +236525,79132,intellectual,1280341485 +236525,79132,Leonardo DiCaprio,1280341487 +236525,79132,mindfuck,1280341500 +236525,79132,multiple interpretations,1280341490 +236525,79132,unpredictable,1280341493 +236525,79132,visually appealing,1280341495 +236525,81834,based on a book,1301855803 +236525,81834,boring,1301855791 +236525,81834,British,1301855808 +236525,81834,Emma Watson,1301855793 +236525,81834,magic,1301855801 +236552,65514,action,1419739278 +236552,65514,China,1419739290 +236552,65514,kung fu,1419739275 +236552,65514,martial arts,1419739271 +236552,65514,Wing Chun,1419739286 +236556,1047,not believable,1226165056 +236556,3160,Mind numbingly boring,1226165382 +236556,55267,romantic comedy,1226165510 +236556,55267,well-directed,1226165586 +236556,61323,mind numbingly boring,1226164936 +236556,67788,good clean comedy,1242165584 +236556,70183,good comedy,1289662938 +236556,70183,relationship advice,1289662938 +236567,99114,Quentin Tarantino,1442070526 +236567,99114,slavery,1442070528 +236567,99114,Soundtrack,1442070547 +236567,99114,western,1442070529 +236571,1257,quirky,1384780620 +236571,45642,funny,1384734600 +236571,45642,interesting characters,1384734600 +236571,45642,Moving,1384734600 +236585,3793,superhero,1142809901 +236596,4467,fantasy,1220475328 +236596,4467,story-in-a-story,1220475314 +236596,6753,story-in-a-story,1221253356 +236596,27773,i wish i'd never seen it,1305580646 +236596,32646,documentary,1435725246 +236596,32646,good music,1435725246 +236596,32646,rock concert footage,1435725246 +236596,55820,no ending,1215805803 +236596,59387,story-in-a-story,1220475405 +236596,79132,multiple interpretations,1280035290 +236602,282,drama,1185292681 +236645,88116,lemans,1428771630 +236645,88116,racing,1428771630 +236645,88116,sports documentary,1428771630 +236649,123,HongKong,1138980739 +236649,154,Bunuel,1140369871 +236649,194,NewYork,1138980785 +236649,1057,Woody Allen,1138980844 +236649,1250,World War II,1138981004 +236649,1641,working class,1138981180 +236649,2420,80's classic,1138981069 +236649,2420,martial arts,1138981079 +236649,2657,glam rock,1138981198 +236649,2657,musical,1138981140 +236649,3328,samurai,1138981044 +236649,4356,musical,1138980813 +236649,5693,disco,1138981112 +236649,5693,musical,1138981123 +236649,5945,satire,1138981333 +236649,6016,Brasil,1138981023 +236649,8973,Almodovar,1140369950 +236649,27773,korean,1142954962 +236668,1339,Anthony Hopkins,1242114221 +236668,1339,Gary Oldman,1242114208 +236668,1339,gothic,1242114212 +236668,1339,Keanu Reeves,1242114215 +236668,1446,czech society,1242114353 +236668,1645,Keanu Reeves,1242114152 +236668,2020,John Malkovich,1242114319 +236668,2020,Keanu Reeves,1242114322 +236668,2585,Finland,1242114271 +236668,64969,Jim carrey,1242114471 +236668,79684,Emma Stone,1300309935 +236668,79684,Lisa Kudrow,1300309940 +236668,80549,Unreal reactions,1294116064 +236683,260,the classic sci fi movie. must see.,1440501299 +236683,1213,gangster,1440502307 +236683,1213,mafia,1440502283 +236683,1213,MAFIA LIFE,1440502292 +236694,1198,indiana jones,1429964397 +236694,2019,samurai,1429965033 +236694,5971,Miyazaki,1429965181 +236701,208,dystopia,1388873746 +236701,208,ocean,1388873746 +236701,208,post-apocalyptic,1388873745 +236701,318,escape,1423829056 +236701,318,prison,1423829056 +236701,318,rita hayworth,1423829056 +236701,480,dinosaurs,1426621064 +236701,480,mainstream,1426621064 +236701,480,sci-fi,1426621064 +236701,1274,cyberpunk,1426713988 +236701,1274,dystopia,1426713969 +236701,1274,visually stunning,1426713991 +236701,1333,eerie,1407605366 +236701,1333,suspense,1407605371 +236701,1377,Michelle Pfeiffer,1388591724 +236701,1562,Arnold Schwarzenegger,1388591582 +236701,1562,comic book,1388591642 +236701,1562,DC Comics,1388591624 +236701,1562,guilty pleasure,1388591584 +236701,1562,nonsensical,1388591689 +236701,1562,story,1388591654 +236701,1562,tacky,1388591608 +236701,1591,disaster,1388591165 +236701,1591,horrible film,1388591165 +236701,1591,John Leguizamo,1388591165 +236701,1653,film noir,1388551658 +236701,1653,futuristic,1388551658 +236701,1653,neo-noir,1388551658 +236701,1653,sci-fi,1388551658 +236701,1653,thought-provoking,1388551658 +236701,1653,visually appealing,1388551658 +236701,1748,atmospheric,1439714721 +236701,1748,cerebral,1439714737 +236701,1748,dark fantasy,1439714732 +236701,1748,dreamlike,1439714730 +236701,1748,dystopia,1439714708 +236701,1748,Post apocalyptic,1439714733 +236701,1748,sci-fi,1439714714 +236701,1748,stylized,1439714728 +236701,1748,surreal,1439714712 +236701,1748,thought-provoking,1439714719 +236701,3094,Criterion,1388872832 +236701,3094,E. M. Forster,1388872820 +236701,3094,Hugh Grant,1388872798 +236701,3094,worse than the book,1388872784 +236701,3863,stylized,1427330497 +236701,3863,surreal,1427330483 +236701,3863,virtual reality,1427330494 +236701,4144,Art Direction,1388584852 +236701,4144,atmospheric,1388584763 +236701,4144,Maggie Cheung,1388584881 +236701,4144,masterpiece,1388584852 +236701,4144,melancholy,1388584851 +236701,4144,stylized,1388584851 +236701,4144,Tony Leung,1388584881 +236701,4144,visually appealing,1388584851 +236701,4144,visually stunning,1388584851 +236701,7153,SO LONG,1388873621 +236701,8981,drama,1388592427 +236701,31696,Keanu Reeves,1388591263 +236701,31696,Rachel Weisz,1388591224 +236701,31696,religion,1388591249 +236701,34016,funny,1388873082 +236701,34016,unpredictable,1388873081 +236701,37386,dystopia,1388552141 +236701,37386,performances,1388552107 +236701,37386,plot,1388552070 +236701,37386,post-apocalyptic,1388552054 +236701,37386,sci-fi,1388552054 +236701,37386,stylized,1388552054 +236701,37386,superficial,1388552092 +236701,37386,visually appealing,1388552054 +236701,41571,Art Direction,1388872236 +236701,41571,cinematography,1388872265 +236701,41571,japanese,1388872265 +236701,41571,japanese culture,1388872265 +236701,44665,twist ending,1388616665 +236701,48043,Art Direction,1388551330 +236701,48043,atmosphere,1388551286 +236701,48043,atmospherically beautiful,1388551319 +236701,48043,contemplative,1388551286 +236701,48043,music,1388551241 +236701,48043,philosophical,1388551251 +236701,48043,poetic,1388771015 +236701,48043,surreal,1388551486 +236701,48043,thought-provoking,1388551286 +236701,48043,visually stunning,1388551286 +236701,51077,Nicolas Cage,1388591439 +236701,59387,Art Direction,1388550833 +236701,59387,storytelling,1388550822 +236701,59387,visually stunning,1388550822 +236701,59549,cheesy,1388585028 +236701,59549,superficial,1388585027 +236701,69529,documentary,1388771317 +236701,69529,environmental,1388771309 +236701,69529,scenic,1388771291 +236701,69529,social commentary,1388771294 +236701,81591,dark,1388551451 +236701,81591,mental illness,1388551451 +236701,81591,psychological,1388551451 +236701,81591,stylized,1388551474 +236701,81591,surreal,1388551474 +236701,86190,Cate Blanchett,1388584575 +236701,86190,cinematography,1388584575 +236701,86190,ending twist,1388584631 +236701,86190,strong female lead,1388584575 +236701,87430,cgi,1388591392 +236701,89745,epic,1388585299 +236701,89745,plot holes,1388585306 +236701,89745,polished,1388585299 +236701,89745,visuals,1388585299 +236701,91500,strong female lead,1388584682 +236701,102125,boring,1388585471 +236701,102125,loose narrative,1388585461 +236701,102125,shallow plot,1388585461 +236701,102125,slow paced,1388585492 +236701,104841,cgi,1388550339 +236701,104841,cinematography,1388550339 +236701,104841,George Clooney,1388550380 +236701,104841,overrated,1388550335 +236701,104841,pace,1388550365 +236701,104841,performances,1388550335 +236701,104841,Sandra Bullock,1388550388 +236701,104841,visually appealing,1388550339 +236701,106487,strong female lead,1388584716 +236701,106696,siblings,1388608833 +236701,107406,john hurt,1400976503 +236701,107406,Joon-ho Bong,1400976494 +236701,107406,Plot twist,1400976515 +236701,107406,tilda swinton,1400976523 +236701,108932,Batman,1392504363 +236701,108932,Chris Pratt,1392504380 +236701,108932,fun,1392504405 +236701,108932,SPACESHIP!,1392504398 +236701,110451,Badly written,1397252239 +236701,110451,Erin Richards,1397252325 +236701,110451,predictable,1397252348 +236701,110451,premise,1397252363 +236701,110451,Sam Claflin,1397252311 +236701,110451,scary,1397252279 +236701,111362,Bryan Singer,1400887058 +236701,111362,Jennifer Lawrence,1400887068 +236701,111362,Special Effects,1400887087 +236701,112183,magical realism,1427330714 +236701,112183,satire,1427330645 +236701,112183,single shot,1427330724 +236701,130842,Bad Acting,1427311080 +236701,130842,James Van Der Beek,1427311098 +236701,130842,Revamp,1427311055 +236726,260,great story,1440470150 +236726,260,mystery,1440470207 +236733,356,bittersweet,1379146868 +236733,356,comedy,1379146875 +236733,356,Tom Hanks,1379146884 +236733,1527,aliens,1379147033 +236733,1527,humorous,1379147023 +236733,1527,visually appealing,1379147045 +236733,2571,dystopia,1379146824 +236733,2571,philosophy,1379146838 +236733,2571,post-apocalyptic,1379146833 +236756,86293,funny,1309483998 +236756,86293,Good plot,1309484003 +236773,260,Science Fiction,1439759905 +236773,260,space adventure,1439759920 +236774,109487,Christopher Nolan,1432987698 +236774,109487,Matthew McConaughey,1432987713 +236777,260,Ok,1442104272 +236777,260,Was interesting,1442104287 +236779,231,Buddy movie,1441403564 +236779,231,protagonist is an idiot,1441403550 +236779,231,stupid,1441403547 +236779,231,toilet humor,1441403540 +236779,260,action,1440793152 +236779,260,fantasy,1440793188 +236779,260,Space,1440793125 +236779,296,John Travolta,1441400907 +236779,296,Quentin Tarantino,1441400861 +236779,296,Tarantino,1441400878 +236779,296,Uma Thurman,1441400887 +236779,356,emotional,1441400416 +236779,356,meaning of life,1441400429 +236779,356,purpose in life,1441400446 +236779,356,Quotable,1441400458 +236779,356,touching,1441400400 +236779,377,tense,1441400203 +236779,442,dystopia,1441401113 +236779,541,artificial intelligence,1441401576 +236779,541,cyberpunk,1441401564 +236779,541,dystopia,1441401566 +236779,541,existentialism,1441401570 +236779,541,film noir,1441401591 +236779,733,action packed,1441400156 +236779,733,great soundtrack,1441400173 +236779,733,Hans Zimmer,1441400177 +236779,733,Sean Connery,1441400146 +236779,924,atmospheric,1441401659 +236779,924,philosophical,1441401648 +236779,924,slow,1441401649 +236779,1573,John Travolta,1441400247 +236779,1573,Nicolas Cage,1441400248 +236779,2529,dystopia,1441400779 +236779,2529,post-apocalyptic,1441400781 +236779,2529,twist ending,1441400786 +236779,2571,alternate reality,1441401768 +236779,2571,artificial intelligence,1441401744 +236779,2571,cyberpunk,1441401753 +236779,2571,dystopia,1441401752 +236779,2571,philosophical,1441401759 +236779,2571,post apocalyptic,1441401765 +236779,2571,post-apocalyptic,1441401756 +236779,2628,Jar Jar Binks,1441399980 +236779,2986,cyborgs,1441400057 +236779,2986,dystopia,1441400053 +236779,2986,robots,1441400055 +236779,3697,aliens,1441400087 +236779,3740,anti-hero,1441400312 +236779,3740,cult classic,1441400302 +236779,3740,humorous,1441400327 +236779,3740,Kurt Russell,1441400353 +236779,5171,time travel,1441401087 +236779,6934,man versus machine,1441401861 +236779,6934,Philosophical,1441401856 +236779,6934,Post apocalyptic,1441401864 +236779,6934,post-apocalyptic,1441401852 +236779,8644,android(s)/cyborg(s),1441401959 +236779,8644,dystopia,1441401974 +236779,8644,future,1441401978 +236779,8644,futuristic,1441401961 +236779,8644,thought provoking,1441401969 +236779,8644,thought-provoking,1441401963 +236779,31410,historical,1441402407 +236779,31410,history,1441402413 +236779,31410,World War II,1441402414 +236779,34048,alien invasion,1441475856 +236779,37386,Charlize Theron,1441400741 +236779,37386,heroine in tight suit,1441400726 +236779,37386,yeah but damn is she hot,1441400748 +236779,85131,alien invasion,1441475722 +236779,85131,predictable,1441475714 +236779,95088,aubrey plaza,1441401334 +236779,95088,time travel,1441401348 +236779,95088,touching,1441401350 +236779,95088,Understated charm,1441401339 +236779,115680,douchebag dude,1441401242 +236794,2723,Greg Kinnear,1360676764 +236798,260,sci-fi,1441217483 +236798,260,space,1441217487 +236805,1,pixar,1140521984 +236805,260,classic,1140522087 +236805,260,fantasy,1140522074 +236805,260,George Lucas,1140522179 +236805,260,sci-fi,1140522071 +236805,260,series,1140522087 +236805,277,Christmas,1140520914 +236805,277,family,1140520944 +236805,541,drama,1140521756 +236805,541,sci-fi,1140521756 +236805,902,classic,1140521071 +236805,902,romance,1140521071 +236805,1196,fantasy,1140522145 +236805,1196,George Lucas,1140522145 +236805,1196,sci-fi,1140522145 +236805,1196,series,1140522145 +236805,1210,fantasy,1140522154 +236805,1210,George Lucas,1140522154 +236805,1210,sci-fi,1140522154 +236805,1210,series,1140522154 +236805,1333,Alfred Hitchcock,1140521851 +236805,1333,horror,1140521851 +236805,2355,Pixar,1140521986 +236805,2628,fantasy,1140522117 +236805,2628,George Lucas,1140522137 +236805,2628,sci-fi,1140522117 +236805,2628,series,1140522117 +236805,3114,Pixar,1140521991 +236805,4886,Pixar,1140521981 +236805,5378,fantasy,1140522141 +236805,5378,George Lucas,1140522141 +236805,5378,sci-fi,1140522141 +236805,5378,series,1140522141 +236805,6377,Pixar,1140521988 +236805,8961,Pixar,1140521978 +236805,33493,fantasy,1140521604 +236805,33493,George Lucas,1140521604 +236805,33493,sci-fi,1140522065 +236805,33493,series,1140521604 +236859,35836,comedy,1139389372 +236859,35836,gratuitous sex,1139389372 +236882,27350,Lancelot,1424032882 +236882,27350,Morgaine,1424032865 +236882,93297,guns,1424027869 +236882,93297,navy seals,1424027869 +236882,93297,special forces,1424027869 +236899,70,very unrealistic,1336905581 +236899,150,boring,1336898289 +236899,527,too intense,1336896615 +236899,1089,sickening,1336905437 +236899,1136,extremely funny,1336896553 +236899,1405,funny,1336896951 +236899,1405,immature,1336896928 +236899,1466,interesting,1336898565 +236899,1466,mysterious,1336898565 +236899,1721,classic,1336897926 +236899,1721,good acting,1336897926 +236899,1729,good story,1336905781 +236899,1997,poor effects,1336898663 +236899,2028,intense,1336943693 +236899,2076,disturbing in a bad way,1336915248 +236899,2581,chick flick,1336897088 +236899,2694,hilarious,1336903876 +236899,2762,predictable,1336904515 +236899,3039,hilarious,1336944401 +236899,3578,Great movie,1336897279 +236899,3578,interesting,1336897279 +236899,3755,bad story,1336896852 +236899,3979,funny in parts,1336905699 +236899,4306,clever,1336904171 +236899,4306,funny,1336904179 +236899,5449,fun movie,1336904035 +236899,7153,best ending to a trilogy,1336897812 +236899,7293,funny rom com,1336903976 +236899,8950,depressing,1336896771 +236899,8950,disappointing,1336896771 +236899,8950,Intriguing,1336897003 +236899,68157,subtitles,1336905623 +236899,79132,confusing plot,1336896670 +236936,2324,family bonds,1442563461 +236936,2324,must see,1442563405 +236936,68954,children,1442563268 +236936,78499,children,1442563298 +236936,78499,must see,1442563335 +236947,541,film-noir,1445203501 +236947,541,multiple endings,1445203537 +236947,541,sci-fi,1445203511 +236947,32587,film noir,1445203557 +236949,99633,action,1420410313 +236949,99633,crime,1420410313 +236949,99633,noir thriller,1420410313 +236949,109576,comedy,1434762015 +236949,109576,farce,1434762015 +236949,109576,office,1434762015 +236949,125077,comedy,1423284869 +236949,125077,satire,1423284869 +236949,125077,stand-up comedy,1423284869 +236959,50,conspiracy,1293256936 +236959,50,twist ending,1293256939 +236959,216,Adam Sandler,1316343429 +236959,216,seen more than once,1316343440 +236959,253,adapted from:book,1353937098 +236959,253,Antonio Banderas,1353937112 +236959,253,book was better,1353937107 +236959,253,Brad Pitt,1353937124 +236959,253,cult classic,1353937141 +236959,253,Tom Cruise,1353937119 +236959,293,assassin,1359301505 +236959,293,hitman,1359301446 +236959,293,Natalie Portman,1359301444 +236959,345,Australia,1354800012 +236959,345,gender identity,1354800020 +236959,345,lgbt,1354800114 +236959,345,LGBT*,1354800050 +236959,345,watch the credits,1354800170 +236959,353,cult film,1372247963 +236959,353,gothic,1372247961 +236959,353,stylized,1372247965 +236959,356,history,1365912209 +236959,356,Tom Hanks,1365912201 +236959,356,vietnam war,1365912203 +236959,504,corruption,1331984682 +236959,504,prison,1331984671 +236959,504,Ray Liotta,1331984751 +236959,504,Stuart Wilson,1331984742 +236959,551,cult film,1351732386 +236959,551,Danny Elfman,1351732527 +236959,551,Tim Burton,1351732381 +236959,597,Julia Roberts,1350823404 +236959,597,Richard Gere,1350823396 +236959,597,romance,1350823408 +236959,910,classic,1342852001 +236959,924,adapted from:book,1358064593 +236959,924,cult film,1358064584 +236959,924,philosophical,1358064616 +236959,924,sci-fi,1358064601 +236959,952,Cantinflas,1340202617 +236959,952,Jules Verne,1340202597 +236959,1027,Alan Rickman,1298730218 +236959,1027,comedy,1298730239 +236959,1027,Morgan Freeman,1298730220 +236959,1089,Tim Roth,1315137373 +236959,1202,black comedy,1351607972 +236959,1202,wry,1351607966 +236959,1215,Cult classic,1355823537 +236959,1215,satirical,1355823541 +236959,1215,slapstick,1355823555 +236959,1220,cult classic,1366527090 +236959,1220,notable soundtrack,1366526997 +236959,1234,Classic,1396783925 +236959,1234,heist,1396783921 +236959,1261,cult film,1358503674 +236959,1704,genius,1326030901 +236959,1704,intelligent,1326030911 +236959,1704,Matt Damon,1326030891 +236959,1704,Robin Williams,1326030885 +236959,1968,cult film,1356369433 +236959,1968,one day,1356369442 +236959,2011,classic,1297770397 +236959,2011,comedy,1297770315 +236959,2011,Complex,1297770403 +236959,2052,Bette Midler,1329385584 +236959,2052,Sarah Jessica Parker,1329385662 +236959,2657,cult classic,1353220064 +236959,2657,insanity,1353220075 +236959,2657,musical,1353220070 +236959,2657,sexuality,1353220073 +236959,2959,Brad Pitt,1306851147 +236959,2959,dark comedy,1306851188 +236959,2959,twist ending,1306851167 +236959,3000,anime,1298891196 +236959,3000,Hayao Miyazaki,1298891198 +236959,3000,Studio Ghibli,1298891200 +236959,3000,surreal,1298891203 +236959,3095,interesting american culture,1243414747 +236959,3095,problems not resolved,1243414729 +236959,3793,comic book,1360080745 +236959,3793,cult film,1360080754 +236959,3819,food,1397657491 +236959,3819,japanese,1397657497 +236959,3819,ramen,1397657495 +236959,3949,depressing,1306765089 +236959,3949,great acting,1306765099 +236959,4105,Bruce Campbell,1353496745 +236959,4105,cult film,1353496751 +236959,4105,rape,1353496767 +236959,4105,so bad it's good,1353496775 +236959,4105,zombies,1353496774 +236959,4223,sniper,1331818626 +236959,4226,complicated,1305982894 +236959,4226,mystery,1305982899 +236959,4226,nonlinear,1305982911 +236959,4226,psychology,1305982918 +236959,4226,twist ending,1305982888 +236959,4366,Disney,1360574509 +236959,4366,Michael J. Fox,1360574515 +236959,4447,Bechdel Test:Pass,1380180012 +236959,4447,comedy,1380180082 +236959,4447,feminism,1380179981 +236959,4447,funny,1380180084 +236959,4448,Edward Norton,1395405271 +236959,4448,heist,1395405280 +236959,4634,clever,1304811738 +236959,4634,sad ending,1304811721 +236959,5010,author:Mark Bowden,1307451779 +236959,5010,Orlando Bloom,1307451737 +236959,5047,spoof,1395405316 +236959,5064,remake,1344519366 +236959,5064,slow start,1344519350 +236959,5128,author:Anne Rice,1354619287 +236959,5128,bad acting,1354619314 +236959,5128,book was better,1354619115 +236959,5128,great soundtrack,1354620126 +236959,5128,simply awful,1354619449 +236959,5128,unintentionally funny,1354619305 +236959,5159,environmental,1365912269 +236959,5159,Robin Williams,1365912246 +236959,5159,Tim Curry,1365912248 +236959,5254,gothic,1305705612 +236959,5254,swords,1305705626 +236959,5528,Robin Williams,1305630144 +236959,5528,sad but good,1305630187 +236959,5528,suspense,1305630256 +236959,5989,feel good movie,1297377543 +236959,5989,funny,1297377548 +236959,5989,Leonardo DiCaprio,1297377533 +236959,5989,twists & turns,1297377536 +236959,6433,black and white,1297378170 +236959,6433,experimental,1297378177 +236959,7022,survival,1396270257 +236959,7445,Dakota Fanning,1309094715 +236959,7445,redemption,1309094867 +236959,8361,post-apocalyptic,1309789859 +236959,8984,weak plot twist,1297690569 +236959,26631,bizarre,1297378797 +236959,26631,creepy,1297378794 +236959,26631,disturbing,1297378805 +236959,26776,1920s,1388757400 +236959,26776,anime,1388757413 +236959,26776,Hayao Miyazaki,1388757392 +236959,26776,Japan,1388757398 +236959,26776,Studio Ghibli,1388757395 +236959,27731,anime,1359728647 +236959,27731,Anne Hathaway,1359728666 +236959,27731,cats,1359728651 +236959,27905,bad special effects,1295417500 +236959,27905,confusing,1295417490 +236959,27905,japanese,1353031299 +236959,31878,martial arts,1394976058 +236959,34150,adapted from:comic,1358180871 +236959,34150,Chris Evans,1358180840 +236959,34150,Jessica Alba,1358180863 +236959,36519,Jason Statham,1355493494 +236959,40226,drinking game,1364907553 +236959,40226,Guitar Wolf,1364907564 +236959,42015,Heath Ledger,1346742043 +236959,42728,Celtic legend,1350801229 +236959,42728,James Franco,1350801221 +236959,44191,philosophy,1306509391 +236959,44191,political,1306509393 +236959,44191,sad ending,1306509372 +236959,44191,thought-provoking,1306509383 +236959,44191,visually appealing,1306509387 +236959,44397,gore,1307974620 +236959,44397,predictable,1307974693 +236959,44397,typical horror,1307974680 +236959,44840,Rob Schneider,1306748322 +236959,45081,based on a computer game,1307027975 +236959,45081,Bechdel Test:Pass,1307024034 +236959,45081,unintentionally funny,1307027990 +236959,45499,watch the credits,1360242787 +236959,46976,Will Ferrell,1306158240 +236959,48043,artistic,1331037635 +236959,48043,buddhism,1331037637 +236959,48043,surreal,1331037650 +236959,48304,chase,1310479084 +236959,48304,gruesome,1310479054 +236959,48304,Nudity (Topless),1310479060 +236959,48394,ambiguous ending,1310571519 +236959,48394,bittersweet,1310571497 +236959,48394,fantasy,1310571501 +236959,48516,complicated plot,1293256889 +236959,48516,Lame ending,1293256907 +236959,48780,metaphysics,1395405175 +236959,48780,sci-fi,1395405166 +236959,51935,conspiracy,1309712292 +236959,51935,revenge,1309712297 +236959,51935,sniper,1309712296 +236959,52489,author: Guy de Maupassant,1355048800 +236959,52489,based on a book,1355048783 +236959,52717,brutal,1309357577 +236959,52717,good guys win,1309357480 +236959,52717,predictable,1309357610 +236959,52885,anime,1329827411 +236959,52885,beautiful animation,1329827403 +236959,52885,dreams,1329827405 +236959,52885,philosophical,1329827445 +236959,52885,soundtrack,1329827409 +236959,52885,surreal,1329827459 +236959,53519,disappointing,1325410226 +236959,53519,Kick-Butt Women,1325411500 +236959,53519,slow paced,1325410247 +236959,53519,stylized,1325411504 +236959,53519,too long,1325411480 +236959,53519,wtf,1325411532 +236959,54286,adapted from:book,1335537611 +236959,54286,assassin,1335537603 +236959,54286,espionage,1335537596 +236959,54286,spy thriller,1335537606 +236959,55274,Cate Blanchett,1297392446 +236959,56782,greed,1307265561 +236959,57504,Anime,1359943638 +236959,57504,time travel,1359943645 +236959,59315,comic book,1352721120 +236959,59315,Robert Downey Jr.,1352721115 +236959,59315,watch the credits,1352811259 +236959,60040,Edward Norton,1353045988 +236959,60040,The Avengers,1353045996 +236959,60040,Tim Roth,1353045990 +236959,60072,assassin-in-training,1310054536 +236959,60072,Morgan Freeman,1310054534 +236959,60072,plot twist,1310054529 +236959,60072,stylized violence,1310054541 +236959,60766,emotion,1308147418 +236959,60766,Oscar (Best Documentary Feature),1308147370 +236959,60766,sad ending,1308147410 +236959,60766,tightrope,1308147342 +236959,63062,angelina jolie,1352692008 +236959,63062,based on a true story,1352692052 +236959,63062,Jeffrey Donovan,1352691999 +236959,63062,John Malkovich,1352692018 +236959,64030,cheesy,1355498393 +236959,64030,funny,1355499422 +236959,64030,Jason Statham,1355498633 +236959,68157,Quentin Tarantino,1364044898 +236959,68319,hugh jackman,1360683261 +236959,68319,Ryan Reynolds,1360683265 +236959,71160,fan film,1297378380 +236959,71838,ending kinda ruined it,1307966906 +236959,71838,explosions,1307967128 +236959,71838,F. Gary Gray,1307967164 +236959,71838,Gerard Butler,1307967157 +236959,71838,Jamie Foxx,1307967172 +236959,71838,Questioning Morality,1307967145 +236959,71838,twist,1307966941 +236959,71838,violent,1307966959 +236959,72249,adultery,1297377953 +236959,72249,music,1297377970 +236959,72249,subtitles,1297377882 +236959,73321,Bible,1308843334 +236959,73321,Christianity,1308843303 +236959,73321,post-apocalyptic,1308843344 +236959,74458,Leonardo DiCaprio,1308480064 +236959,74458,twist ending,1308480066 +236959,74795,Iraq War,1308729859 +236959,74868,Ben Barnes,1334836197 +236959,74868,Colin Firth,1334836379 +236959,74948,drugs,1306071899 +236959,74948,gangs,1306071872 +236959,74948,Michael Caine,1306071891 +236959,76293,funny,1308579983 +236959,76293,funny moments,1308579985 +236959,77561,Robert Downey Jr.,1352810900 +236959,77561,watch the credits,1352810887 +236959,77866,Cate Blanchett,1306321776 +236959,77866,Deserves better reviews!,1306321795 +236959,77866,Robin Hood,1306321814 +236959,77866,Russell Crowe,1306321772 +236959,77866,unhistorical,1306321756 +236959,78422,death,1294574475 +236959,78422,sad,1294574434 +236959,79132,metaphisics,1306509478 +236959,79132,philosophy,1306509466 +236959,79132,thought-provoking,1306509456 +236959,79695,boring,1354973428 +236959,79695,plot,1354973430 +236959,81229,Morgan Freeman,1306998794 +236959,81512,unresolved,1310891508 +236959,81591,ballet,1297604923 +236959,81591,dance,1297605059 +236959,81591,dark,1297605116 +236959,81591,Darren Aronofsky,1297604998 +236959,81591,overrated,1297604916 +236959,81641,based on a true story,1307368420 +236959,81782,based on a true story,1297377703 +236959,81782,happy ending,1297377724 +236959,81847,animated animal:chameleon,1297378066 +236959,81847,animated animal:horse,1297378054 +236959,81847,disney,1297378031 +236959,81847,musical,1297378041 +236959,82244,gambling,1359551017 +236959,82244,Jason Statham,1359550970 +236959,82244,Russian roulette,1359551011 +236959,82534,business,1347697461 +236959,83082,adapted from:book,1397136382 +236959,83082,true story,1397136466 +236959,83324,Cirque du Soleil,1352619885 +236959,83369,Colin Farrell,1351518317 +236959,84954,Matt Damon,1310996629 +236959,84954,Philip K. Dick,1310996621 +236959,86332,Anthony Hopkins,1352897788 +236959,86332,funny,1334196607 +236959,86332,Kenneth Branagh,1352897674 +236959,86332,mythology,1334196655 +236959,86332,Natalie Portman,1352897688 +236959,86332,Tom Hiddleston,1352897830 +236959,86332,watch the credits,1352897661 +236959,86882,1920s,1332847628 +236959,86882,abrupt ending,1332847639 +236959,87232,cameo,1360851149 +236959,87232,cameo: Hugh Jackman,1360851149 +236959,87232,Jennifer Lawrence,1360851166 +236959,87232,Kevin Bacon,1360851157 +236959,87430,adapted from:comic,1356529581 +236959,87430,Bechdel Test:Fail,1356529562 +236959,87876,Michael Caine,1335937178 +236959,87876,Owen Wilson,1335937262 +236959,87876,plot,1335937084 +236959,88140,Hugo Weaving,1352988331 +236959,88140,Marvel,1352988324 +236959,88140,retro,1352988176 +236959,88140,Tommy Lee Jones,1352988167 +236959,88140,watch the credits,1352988164 +236959,89745,Chris Evans,1353074270 +236959,89745,Chris Hemsworth,1353074263 +236959,89745,ensemble cast,1353074332 +236959,89745,Gwyneth Paltrow,1353074203 +236959,89745,humor,1353074210 +236959,89745,Mark Ruffalo,1353074306 +236959,89745,Robert Downey Jr.,1353074196 +236959,89745,Samuel L. Jackson,1353074201 +236959,89745,Scarlett Johansson,1353074198 +236959,89745,silly,1353074219 +236959,89745,Tom Hiddleston,1353074289 +236959,89745,watch the credits,1353074208 +236959,91077,George Clooney,1332677224 +236959,91104,adapted from:book,1353937558 +236959,91104,slow start,1353928345 +236959,91104,unintentionally funny,1353928358 +236959,91104,vampires,1353928367 +236959,91126,Benedict Cumberbatch,1356386779 +236959,91126,Sappy,1356386807 +236959,91126,Tom Hiddleston,1356386769 +236959,91134,Eddie Redmayne,1359560096 +236959,91134,Kenneth Branagh,1359560098 +236959,91535,Edward Norton,1358502637 +236959,91535,Jeremy Renner,1358502634 +236959,91535,Rachel Weisz,1358502640 +236959,91658,remake,1350955513 +236959,92210,anime,1389939994 +236959,92210,better than the anime,1389940029 +236959,92422,Daniel Radcliffe,1346936457 +236959,92422,horror,1346936451 +236959,92422,unsatisfying ending,1346936444 +236959,93721,documentary,1355146006 +236959,93721,food,1355145998 +236959,93721,Japan,1355145971 +236959,93721,sushi,1355145969 +236959,94780,Kristen Stewart,1397906485 +236959,94959,Bill Murray,1359627351 +236959,94959,boy scouts,1359627729 +236959,94959,Bruce Willis,1359627353 +236959,94959,Edward Norton,1359627357 +236959,94959,surreal,1359627345 +236959,94959,wilderness,1359627343 +236959,94978,japan,1355328486 +236959,95167,Bechdel Test:Pass,1353408444 +236959,95167,coming of age,1353408430 +236959,95167,mother-daughter relationships,1353408436 +236959,95167,No Marriage at the End,1353408424 +236959,95167,watch the credits,1353408464 +236959,95197,author: Guy de Maupassant,1355048816 +236959,95197,based on a book,1355048760 +236959,95197,Nudity (Topless),1355058595 +236959,95197,sex,1355059290 +236959,95207,vampires,1355664437 +236959,95449,Bechdel Test:Fail,1363781070 +236959,95558,emotional,1355845743 +236959,95558,monsters,1355845751 +236959,95558,sad,1355845738 +236959,95558,Strange,1355845747 +236959,95773,anime,1342695911 +236959,95773,book was better,1342695957 +236959,95773,manga,1342695942 +236959,95875,author:Philip K. Dick,1356021139 +236959,95875,Colin Farrell,1356020746 +236959,95875,memory,1356021125 +236959,95875,philosophy,1356021184 +236959,95875,remake,1356021147 +236959,95875,Sci-fi,1356020990 +236959,95875,science fiction,1356020753 +236959,96281,animation,1365780008 +236959,96281,stop motion,1365780029 +236959,96588,acapella,1355319310 +236959,96588,Rebel Wilson,1355319358 +236959,96596,bizarre,1374498141 +236959,96596,conspiracy,1374498182 +236959,96596,dystopia,1374498212 +236959,96596,social commentary,1374498094 +236959,96610,bad science,1351075449 +236959,96610,Joseph Gordon-Levitt,1351075456 +236959,96610,sci-fi,1351075460 +236959,96610,time travel,1351075470 +236959,96737,gore,1359943603 +236959,96737,low budget,1359943502 +236959,96737,post-apocalyptic,1359943488 +236959,96737,sci-fi,1359943486 +236959,96737,slow motion,1359943484 +236959,96737,stylized,1359943482 +236959,96821,depression,1354194688 +236959,96821,Emma Watson,1354194666 +236959,96821,watch again,1354194782 +236959,96897,anime,1348534927 +236959,96897,english dub,1348535242 +236959,96897,Noriyuki Abe,1348535066 +236959,96897,sappy ending,1348534946 +236959,96991,Aborigines,1348961785 +236959,96991,Australia,1348961439 +236959,96991,based on a true story,1348961741 +236959,96991,Deborah Mailman,1348961454 +236959,96991,Jessica Mauboy,1348961533 +236959,96991,quartet,1348961521 +236959,96991,singing,1348961513 +236959,96991,stolen generation,1348961579 +236959,96991,Vietnam War,1348961489 +236959,96991,war,1348961481 +236959,97306,Christopher Walken,1359943551 +236959,97306,Colin Farrell,1359943555 +236959,97306,Sam Rockwell,1359943559 +236959,97913,nostalgic,1357048410 +236959,97913,video games,1357048412 +236959,97921,Jennifer Lawrence,1358876778 +236959,97938,emotional,1366896614 +236959,97938,religion,1366896583 +236959,97938,spiritual journey,1366896602 +236959,98203,adapted from:book,1353937571 +236959,98203,ridiculous,1353928486 +236959,98203,unintentionally funny,1353928443 +236959,98203,vampires,1353928551 +236959,98491,animation,1358328678 +236959,98491,short film,1358328672 +236959,98809,Martin Freeman,1356520710 +236959,99114,Leonardo DiCaprio,1359655389 +236959,99114,Samuel L. Jackson,1359655394 +236959,99114,Slavery,1359655419 +236959,99114,western,1359655422 +236959,99149,adapted from:book,1359471759 +236959,99149,Anne Hathaway,1359471483 +236959,99149,Hugh Jackman,1359471475 +236959,99149,musical,1359471471 +236959,99149,Russell Crowe,1359471479 +236959,99178,adapted from:book,1358978395 +236959,99178,Chris Colfer,1358978378 +236959,99178,Rebel Wilson,1358978374 +236959,99437,book was better,1379600508 +236959,99437,watch the credits,1379600490 +236959,99530,anime,1366896740 +236959,99530,Japan,1366896492 +236959,99530,samurai,1366896515 +236959,102903,stupid ending,1389113974 +236959,103228,silly,1387282431 +236959,103249,bad ending,1386004856 +236959,103253,Matt Damon,1394691265 +236959,105869,artistic,1395404647 +236959,105869,based on a true story,1395404908 +236959,105869,Daniel Radcliffe,1395404715 +236959,105869,sex scene,1395404870 +236959,105869,writers,1395404899 +237002,3949,sensational,1445709403 +237002,5445,conceptual sci-fi,1445711189 +237002,27611,cynical,1445710054 +237002,27611,political,1446406446 +237002,27611,post-apocalyptic,1445710036 +237002,27611,sci-fi,1445710064 +237002,27611,space,1446406454 +237002,39886,lives of women,1445709550 +237002,40815,fantasy,1446406559 +237002,41569,1930s,1447437792 +237002,41569,big budget,1447437770 +237002,41569,stylized,1447437790 +237002,48780,magic,1445937315 +237002,48780,Michael Caine,1445937299 +237002,48780,nonlinear,1445937301 +237002,48780,obsession,1445937292 +237002,52328,poor ending,1445710401 +237002,54259,Escapism,1446401106 +237002,81591,neurosis,1445709359 +237002,88744,uprising,1445710121 +237002,89470,not sensationalist,1445709226 +237002,89470,Realistic,1445709188 +237002,89804,ending too neat,1445713355 +237002,96610,gore,1445972441 +237002,96610,plot holes,1445972429 +237002,96610,pointless plot,1445972417 +237002,96610,telekinesis,1445972437 +237002,96610,visually appealing,1445972422 +237002,112183,actors,1445709318 +237002,112183,conversation,1445709291 +237002,112183,magical realism,1445709280 +237002,117529,Irrfan Khan,1447437675 +237002,117529,Monster,1447437703 +237002,117529,sci-fi,1447437670 +237002,118246,conversations,1445709106 +237002,118924,interracial romance,1447436988 +237002,118924,light,1447437006 +237002,133771,absurdist humor,1447437168 +237002,133771,black humor,1447437174 +237002,133771,"good premise, so-so ending",1447437158 +237002,139642,melodrama,1445937236 +237016,904,Alfred Hitchcock,1291509230 +237016,904,James Stewart,1291509225 +237016,904,suspense,1291509244 +237016,1967,Jennifer Connelly,1303146819 +237016,1967,muppets,1303146824 +237016,2348,based on a true story,1291839553 +237016,2348,drugs,1291839557 +237016,2348,Gary Oldman,1291839550 +237016,3105,based on a true story,1291836962 +237016,3105,Psychiatry,1291836969 +237016,3105,Robert De Niro,1291836972 +237016,5418,assassin,1291838436 +237016,5418,espionage,1291838435 +237016,5418,Matt Damon,1291838427 +237016,5418,spy,1291838438 +237016,5618,alternate reality,1296137927 +237016,5618,dreamlike,1296137952 +237016,5618,hallucinatory,1296137950 +237016,5618,whimsical,1296137936 +237016,8368,based on a book,1303146729 +237016,8368,Gary Oldman,1302900605 +237016,8368,time travel,1303146734 +237016,8970,fantasy,1291837019 +237016,8970,Johnny Depp,1291837014 +237016,8970,true story,1291837021 +237016,27706,based on a book,1303146848 +237016,27706,jim carrey,1303146860 +237016,27706,macabre,1303146864 +237016,27706,quirky,1303146866 +237016,30793,based on a book,1303146912 +237016,30793,Johnny Depp,1303146909 +237016,30793,Tim Burton,1303146923 +237016,34542,documentary,1291509408 +237016,34542,Werner Herzog,1291509411 +237016,60766,Documentary,1291509349 +237016,60766,Obsessed protagonist,1291509359 +237016,63062,based on a true story,1291834792 +237016,63062,not happy ending,1291834808 +237016,63062,period piece,1291834800 +237016,66097,alternate universe,1295396601 +237016,66097,stop motion,1295396613 +237016,66097,Surreal,1295396619 +237016,72356,Pixar,1302809630 +237016,73017,Atmospheric,1302900782 +237016,73017,Robert Downey Jr.,1302900776 +237016,81845,based on a true story,1304442229 +237018,610,Adult Animation,1230071675 +237018,610,rotoscoping,1230071673 +237018,2105,classic,1230070394 +237018,2105,computers,1230070391 +237018,2105,hackers,1230070396 +237018,2105,technology,1230070401 +237020,260,classic sci-fi,1439320057 +237020,2671,romance,1439320367 +237031,2,board game,1419556176 +237031,2,time travel,1419556178 +237031,19,comedy,1419556628 +237031,19,Jim Carrey,1419556627 +237031,231,comedy,1419556707 +237031,231,jim carrey,1419556703 +237031,231,road trip,1419556704 +237031,231,stupid,1419556705 +237031,344,comedy,1419556768 +237031,344,Jim Carrey,1419556767 +237031,344,sex jokes,1419556773 +237031,1517,Mike Myers,1419556232 +237031,1517,parody,1419556230 +237031,1625,complicated,1419556276 +237031,1625,surprise ending,1419556289 +237031,1625,the final twist,1419556283 +237031,1625,the twists in the plot,1419556274 +237031,1625,twist ending,1419556260 +237031,1653,drama,1419556315 +237031,1653,future,1419556300 +237031,1653,intelligent,1419556316 +237031,1653,Jude Law,1419556307 +237031,1653,powerful ending,1419556301 +237031,1682,alternate reality,1419556340 +237031,1682,dark comedy,1419556336 +237031,1682,Jim Carrey,1419556332 +237031,2278,car chase,1419556481 +237031,2278,intelligent,1419556486 +237031,2278,Jean Reno,1419556483 +237031,2594,dreams,1419556541 +237031,2594,mindfuck,1419556531 +237031,2594,Twist ending,1419556532 +237031,2683,Mike Myers,1419556551 +237031,2683,parody,1419556550 +237031,4226,AMNESIA,1419556377 +237031,4226,complicated,1419556367 +237031,4226,dreamlike,1419556370 +237031,4226,great ending,1419556382 +237031,4226,memory,1419556365 +237031,4226,nonlinear,1419556362 +237031,4226,twist ending,1419556361 +237031,4226,twists & turns,1419556379 +237031,4306,comedy,1419556245 +237031,4886,Comedy,1419556619 +237031,4886,Pixar,1419556615 +237031,5218,funny,1419556506 +237031,5218,pixar,1419556509 +237031,5418,amnesia,1419556751 +237031,5418,car chase,1419556752 +237031,5418,Matt Damon,1419556742 +237031,5418,realistic action,1419556762 +237031,5418,spy,1419556747 +237031,7361,complicated,1419556458 +237031,7361,jim carrey,1419556432 +237031,7361,melancholy,1419556463 +237031,7361,memory,1419556435 +237031,7361,nonlinear,1419556434 +237031,7361,relationships,1419556453 +237031,7361,surreal,1419556430 +237031,8464,documentary,1419556908 +237031,8665,amnesia,1419556931 +237031,8665,car chase,1419556930 +237031,8665,Matt Damon,1419556927 +237031,8665,spy,1419556928 +237031,8784,friendship,1419556879 +237031,8784,Great Soundtrack,1419556844 +237031,27706,based on a book,1419556968 +237031,27706,dark comedy,1419556976 +237031,27706,Jim Carrey,1419556969 +237031,27706,Jude Law,1419556972 +237031,48385,Male nudity,1419556419 +237031,48385,road trip,1419556406 +237031,48385,satire,1419556399 +237031,50794,twist ending,1419557005 +237031,54286,action,1419556994 +237031,54286,Matt Damon,1419556991 +237031,54286,spy,1419556999 +237031,54286,spy thriller,1419556995 +237031,54286,twist ending,1419556992 +237031,57669,Colin Farrell,1419556721 +237031,57669,dark comedy,1419556714 +237031,57669,depression,1419556735 +237031,57669,drama,1419556736 +237031,57669,friendship,1419556715 +237031,57669,twist ending,1419556728 +237031,64969,feel-good,1419556950 +237031,64969,funny,1419556945 +237031,64969,Jim carrey,1419556944 +237031,64969,optimism,1419556948 +237031,64969,positive thinking,1419556946 +237031,67923,cars,1419556961 +237031,67923,Racing,1419556962 +237031,73290,based on a true story,1419556668 +237031,73290,dogs,1419556671 +237031,73290,Loyalty,1419556672 +237031,73290,touching,1419556699 +237031,74275,based on a true story,1419556824 +237031,74275,black comedy,1419556827 +237031,74275,Gay sex,1419556834 +237031,74275,Jim Carrey,1419556826 +237031,74275,twist ending,1419556830 +237031,79132,alternate reality,1419556633 +237031,79132,complicated,1419556641 +237031,79132,dreamlike,1419556642 +237031,79132,great soundtrack,1419556650 +237031,79132,memory,1419556652 +237031,79132,mindfuck,1419556644 +237031,79132,surreal,1419556638 +237031,79132,twist ending,1419556654 +237031,84152,drugs,1419556796 +237031,84152,smart,1419556801 +237031,92259,based on a true story,1419556590 +237031,92259,emotional,1419556592 +237031,92259,feel good movie,1419556589 +237031,92259,friendship,1419556587 +237031,92259,soundtrack,1419556591 +237031,92259,touching,1419556595 +237031,94677,satire,1419556904 +237031,97923,Denzel Washington,1419557303 +237031,97923,great acting,1419557311 +237031,97923,unpredictable ending,1419557312 +237031,103141,comedy,1419556811 +237031,103141,Pixar,1419556809 +237031,111759,time loop,1419556042 +237031,111759,time travel,1419556055 +237031,111759,Tom Cruise,1419556061 +237031,119571,family background,1419555750 +237031,119571,high school,1419555640 +237035,2106,naive,1277138205 +237035,2106,swing dancing,1277138182 +237035,2550,gothic,1257188172 +237035,2550,horror,1257188186 +237035,4689,Giallo,1257188080 +237035,4844,Bruce Willis,1277137761 +237035,4844,Cate Blanchett,1277137750 +237035,5111,Elijah Wood,1251487652 +237035,5111,Macaulay Culkin,1251487646 +237035,5604,Alec Guinness,1251544878 +237035,5690,Studio Ghibli,1251564361 +237035,5963,Lesbian,1251488118 +237035,5963,Shirley MacLaine,1251488128 +237035,5963,William Wyler,1251488124 +237035,6807,comedy,1251488160 +237035,6807,John Cleese,1251488188 +237035,6807,Monty Python,1251488151 +237035,6807,Terry Gilliam,1251488155 +237035,7063,El Dorado,1251544803 +237035,7063,Klaus Kinski,1251544798 +237035,7063,megalomania,1251544792 +237035,7063,Werner Herzog,1251544795 +237035,7115,Giallo,1257188092 +237035,8507,classic,1182727319 +237035,26662,family,1257189347 +237035,26662,Hayao Miyazaki,1251649544 +237035,26662,Studio Ghibli,1251649513 +237035,41014,Giallo,1257188069 +237035,53000,zombies,1182875062 +237035,60684,comic book,1251487216 +237035,63992,awful,1259022190 +237057,48082,R,1164569762 +237062,106163,thought-provoking,1447329271 +237062,113573,stylized,1420238896 +237062,114060,plot twist,1447329299 +237062,114060,Tom Hardy,1447329302 +237070,296,classic,1435683275 +237070,296,organized crime,1435683275 +237070,296,tarantino,1435683275 +237073,1203,great acting,1436195382 +237073,59784,believe in yourself,1436195346 +237073,59784,Kung Fu,1436195306 +237099,410,Silly,1201179156 +237099,410,stupid,1201179163 +237099,551,animated,1201179660 +237099,551,Halloween theme,1201179657 +237099,1090,Vietnam,1201181078 +237099,1500,80s soundtrack,1201179704 +237099,2581,Drew Barrymore,1201192366 +237099,5014,Beatles soundtrack,1201294545 +237099,6373,seen more than once,1201179606 +237099,6586,Alyson Hannigan,1201294479 +237099,6936,seen more than once,1201181323 +237102,4187,Sidney Poitier,1162451420 +237116,4434,campy,1337198385 +237116,4434,Ursula Andress,1337198385 +237116,53953,John Cusack,1337198563 +237116,53953,Samuel L. Jackson,1337198570 +237116,53953,scary,1337198575 +237116,53953,supernatural,1337198600 +237116,89745,excellent cinematography,1337197037 +237116,89745,fast paced,1337196901 +237116,89745,fun,1337197165 +237116,89745,Great action and character development,1337196926 +237116,93126,compelling mystery,1337197771 +237116,93126,good directing,1337197771 +237116,93126,good ending,1337197771 +237116,93126,good screen story,1337197771 +237116,93840,ancient gods,1337197385 +237116,93840,clever,1337197374 +237116,93840,excellent cinematography,1337197431 +237116,93840,gore,1337197410 +237116,93840,monsters,1337197351 +237116,93840,original plot,1337197342 +237131,59615,Harrison Ford,1213429729 +237132,260,Science Fiction,1439992504 +237132,260,space action,1439992516 +237159,2701,steampunk,1213692336 +237159,50641,haunted house,1312438301 +237159,50641,psychedelic,1312438293 +237159,50641,surreal,1312438310 +237172,1212,photography,1204841456 +237172,1280,photography,1204841507 +237172,1960,photography,1204841523 +237172,2730,photography,1204841435 +237172,2925,photography,1204841410 +237172,2932,photography,1204841540 +237172,3677,photography,1204841563 +237172,6299,photography,1204841475 +237212,296,drugs,1421034953 +237212,296,john travolta,1421034953 +237212,296,quentin tarantino,1421034953 +237212,356,robert zemeckis,1437836948 +237212,356,special effects,1437836948 +237212,356,tom hanks,1437836948 +237212,26524,Oscar (Best Documentary Feature),1222197992 +237249,1466,based on a true story,1366092768 +237249,2203,serial killer,1366092636 +237249,4776,twist ending,1366515872 +237249,50068,Clint Eastwood,1366516018 +237249,77561,comic book,1366515768 +237249,79132,alternate reality,1366092322 +237249,79132,psychology,1366092310 +237249,79132,sci-fi,1366092317 +237249,82459,Coen Brothers,1366519254 +237249,94864,aliens,1366515741 +237249,96610,organized crime,1366515929 +237249,99114,Quentin Tarantino,1366513182 +237278,236,Meg Ryan,1238487387 +237278,256,Arnold Schwarzenegger,1239261169 +237278,256,Danny DeVito,1239261201 +237278,256,experiment,1239261257 +237278,256,funny,1239261187 +237278,256,Julie Andrews,1239261192 +237278,256,pregnant man,1239261243 +237278,261,family bonds,1238660566 +237278,339,coma,1239351880 +237278,339,Romance,1239351865 +237278,339,Sandra Bullock,1239351867 +237278,393,based on a video game,1238748146 +237278,393,contest,1238748201 +237278,393,fighting,1238748184 +237278,539,journal writing,1239529985 +237278,539,Meg Ryan,1239529912 +237278,539,radio story,1239529943 +237278,539,Romance,1239529928 +237278,539,single father,1239529937 +237278,539,Tom Hanks,1239529914 +237278,597,cinderella,1239530032 +237278,597,julia roberts,1239530008 +237278,597,prostitution,1239530024 +237278,597,richard gere,1239530010 +237278,597,romance,1239530018 +237278,762,single mother,1238671777 +237278,805,man justice,1239538746 +237278,805,murder,1239538596 +237278,805,racism,1239538587 +237278,805,rape,1239538605 +237278,805,Samuel L. Jackson,1239538569 +237278,805,Sandra Bullock,1239538574 +237278,805,trial,1239538614 +237278,1088,dance,1239530052 +237278,1088,Patrick Swayze,1239530070 +237278,1088,rich families,1239530087 +237278,1088,romance,1239530055 +237278,1393,Renee Zellweger,1239538418 +237278,1393,rugby,1239538371 +237278,1393,sport agents,1239538476 +237278,1393,Tom Cruise,1239538378 +237278,1499,safari,1238538642 +237278,1499,snakes,1238538638 +237278,1556,Ocean Cruise,1239352267 +237278,1556,Sandra Bullock,1239352164 +237278,1556,Ship Takeover,1239352301 +237278,1760,music,1238748041 +237278,1760,singers,1238748035 +237278,1911,Animals Talking,1239216114 +237278,1911,Eddie Murphy,1239215776 +237278,2002,policemen,1238567861 +237278,2424,bookstores' laws,1239529884 +237278,2424,internet chatting,1239529796 +237278,2424,Meg Ryan,1239529751 +237278,2424,romance,1239529731 +237278,2424,Tom Hanks,1239529734 +237278,2724,journal writing,1239529466 +237278,2724,Julia Roberts,1239529410 +237278,2724,Richard Gere,1239529406 +237278,2724,Romance,1239529408 +237278,2724,weddings,1239529418 +237278,2803,Denzel Washington,1239538902 +237278,2803,Julia Roberts,1239538899 +237278,2803,lawyers,1239538907 +237278,2803,murder investigations,1239538895 +237278,2803,political corruption,1239538872 +237278,3268,cop's mam,1239261432 +237278,3268,funny,1239261315 +237278,3268,policemen,1239261334 +237278,3268,Sylvester Stallone,1239261284 +237278,3408,investigation,1239530177 +237278,3408,Julia Roberts,1239530167 +237278,3408,law company,1239530209 +237278,3408,single mother,1239530216 +237278,3408,true story,1239530169 +237278,4025,Beauty Contest,1239352014 +237278,4025,Police Investigation,1239352041 +237278,4025,Sandra Bullock,1239351920 +237278,4235,Gael García Bernal,1238743238 +237278,4465,famous students,1239530414 +237278,4465,good school policies,1239530394 +237278,4465,Jodie Foster,1239530259 +237278,4465,Oscar (Best Actress),1239530254 +237278,4465,rape,1239530267 +237278,4465,trial,1239530301 +237278,4487,Jamaica,1238568011 +237278,5225,Gael García Bernal,1238743247 +237278,5452,Animals Talking,1238538806 +237278,7371,Community Laws,1238488518 +237278,7371,Nicole Kidman,1238488425 +237278,7445,kidnapping,1238657004 +237278,7701,family comedy,1238671860 +237278,8014,desires,1238743607 +237278,8014,Kim Ki-Duk,1238743545 +237278,8666,comic book,1239261548 +237278,8666,Halle Berry,1239261536 +237278,8666,super-hero,1239261523 +237278,8873,Gael García Bernal,1238921609 +237278,8873,medicine,1238921644 +237278,30803,Romantic and sweet,1238743515 +237278,32587,adapted from:comic,1242982271 +237278,32587,Bruce Willis,1242982296 +237278,32587,cannibalism,1242982301 +237278,32587,comic book,1242982303 +237278,32587,multiple storylines,1242982308 +237278,32587,murder,1242982313 +237278,32587,Quentin Tarantino,1242982315 +237278,32587,violence,1242982320 +237278,41285,murder mystery,1238663540 +237278,41571,narration,1238536904 +237278,47099,based on a true story,1238921913 +237278,47099,poverty,1238921946 +237278,47099,single father,1238921939 +237278,54259,fairy tale,1238150038 +237278,54771,alien invasion,1240310266 +237278,54771,Daniel Craig,1240310245 +237278,54771,epidemic,1240310304 +237278,54771,Nicole Kidman,1240310243 +237278,54958,Antonio Banderas,1239351637 +237278,54958,Jennifer Lopez,1239351634 +237278,54958,Journalists,1239351619 +237278,54958,Murder Investigations,1239351802 +237278,54958,Rapes,1239351818 +237278,58025,superheroes,1239037448 +237278,61401,based on a comic,1241363362 +237278,61401,clones,1241363364 +237278,61401,Eva Mendes,1241363366 +237278,61401,immortality,1241363368 +237278,61401,Samuel L. Jackson,1241363369 +237278,61401,Scarlett Johansson,1241363371 +237278,61401,superhero,1241363372 +237278,63992,based on a book,1240310132 +237278,63992,fantasy,1240310134 +237278,63992,romance,1240310167 +237278,63992,Teen movie,1240310143 +237278,63992,vampires,1240310128 +237278,64497,aliens,1240310571 +237278,64497,ecological,1240310579 +237278,64497,inspired by a book,1240310549 +237278,64497,Jennifer Connelly,1240310499 +237278,64497,Keanu Reeves,1240310497 +237278,64497,remake,1240310518 +237278,64983,assassin,1242982381 +237278,64983,based on a true story,1242982385 +237278,64983,Germany,1242982390 +237278,64983,history,1242982394 +237278,64983,Hitler,1242982447 +237278,64983,Nazis,1242982402 +237278,64983,Tom Cruise,1242982421 +237278,64983,World War II,1242982424 +237312,858,classic,1439919538 +237312,858,oscar (best directing),1439919546 +237312,7153,happy ending,1439919855 +237312,7153,war,1439919844 +237322,1,animation,1278875179 +237322,21,Danny DeVito,1280861825 +237322,21,Gene Hackman,1280861829 +237322,21,John Travolta,1280861818 +237322,21,mafia,1280861856 +237322,70,brothers,1282467267 +237322,70,George Clooney,1282467193 +237322,70,gore,1282467254 +237322,70,Quentin Tarantino,1282467199 +237322,70,Salma Hayek,1282467243 +237322,70,strippers,1282467234 +237322,70,vampires,1282467207 +237322,70,violence,1282467209 +237322,163,Antonio Banderas,1282412665 +237322,293,Action,1280431181 +237322,293,disturbing,1280431160 +237322,293,great acting,1280431120 +237322,293,hitman,1280431115 +237322,293,humorous,1280431175 +237322,293,Jean Reno,1280431285 +237322,293,love story,1280431188 +237322,293,naive characters,1280431148 +237322,293,Natalie Portman,1280431282 +237322,293,tense,1280431173 +237322,329,Brent Spiner,1283687706 +237322,329,Gene Roddenberry,1283687712 +237322,329,Patrick Stewart,1283687692 +237322,329,Star Trek,1283687772 +237322,329,time travel,1283687738 +237322,329,Whoopi Goldberg,1283687700 +237322,329,William Shatner,1283687697 +237322,365,Alex Wiesendanger,1294424503 +237322,365,Bhutan,1294424319 +237322,365,Bridget Fonda,1294424462 +237322,365,Buddha,1294424381 +237322,365,Buddhism,1294424230 +237322,365,buddhist monks,1294424520 +237322,365,Chris Isaak,1294424457 +237322,365,displaced from Tibet,1294424355 +237322,365,Keanu Reeves,1294424239 +237322,365,reincarnation,1294424268 +237322,365,search,1294424406 +237322,367,animal:dog,1291151222 +237322,367,annoying sexist stereotype mars story,1291151185 +237322,367,anti-superhero,1291151208 +237322,367,based on a comic,1291151159 +237322,367,cartoonish,1291151224 +237322,367,hilarious,1291151146 +237322,367,Jim Carrey,1291151145 +237322,454,lawyers,1325790369 +237322,454,Tom Cruise,1325790371 +237322,589,action,1278875126 +237322,589,Arnold Schwarzenegger,1278875130 +237322,589,artificial intelligence,1278875133 +237322,589,Oscar (Best Effects - Visual Effects),1278875141 +237322,589,Saturn Award (Best Science Fiction Film),1278875163 +237322,589,sci-fi,1278875144 +237322,590,drama,1280862334 +237322,590,Kevin Costner,1280862339 +237322,590,western,1280862345 +237322,590,wolf,1280862380 +237322,741,anime,1401015174 +237322,741,artificial intelligence,1401015168 +237322,741,cyberpunk,1401015180 +237322,741,cyborgs,1401015188 +237322,741,Japan,1401015184 +237322,741,sci-fi,1401015182 +237322,1036,action,1278958348 +237322,1036,Bruce Willis,1278958311 +237322,1036,explosions,1278958314 +237322,1036,terrorism,1278958323 +237322,1036,violence,1278958335 +237322,1178,anti-war,1417979755 +237322,1178,bleak,1417979765 +237322,1178,cynical,1417979762 +237322,1178,disturbing,1417979768 +237322,1178,France,1417979783 +237322,1178,injustice,1417979773 +237322,1178,military,1417979759 +237322,1178,war,1417979803 +237322,1222,2 movies in 1,1278957843 +237322,1222,boot camp,1278957852 +237322,1222,Stanley Kubrick,1278957797 +237322,1233,German,1288474341 +237322,1233,grim,1288474354 +237322,1233,Nazis,1288474348 +237322,1233,ocean,1288474339 +237322,1233,realistic,1288474343 +237322,1233,submarine,1288474330 +237322,1233,tense,1288474346 +237322,1233,thought-provoking,1288474374 +237322,1233,World War II,1288474332 +237322,1240,Action,1283618550 +237322,1240,Arnold Schwarzenegger,1283618553 +237322,1240,artificial intelligence,1283618557 +237322,1240,future,1283618561 +237322,1240,robots,1283618576 +237322,1240,sci-fi,1283618563 +237322,1240,time travel,1283618570 +237322,1250,british,1431202217 +237322,1250,pow,1431202209 +237322,1250,World War II,1431202186 +237322,1265,animals,1417961840 +237322,1265,Bill Murray,1417961819 +237322,1265,comedy,1417961828 +237322,1265,funny,1417961832 +237322,1265,hilarious,1417961830 +237322,1265,romantic,1417961835 +237322,1265,surreal,1417961825 +237322,1265,time loop,1417961822 +237322,1274,action,1369761228 +237322,1274,anime,1369761236 +237322,1274,cyberpunk,1369761220 +237322,1274,dystopia,1369761226 +237322,1274,science fiction,1369761224 +237322,1274,stylized,1369761230 +237322,1274,visually stunning,1369761223 +237322,1350,antichrist,1285155137 +237322,1350,apocalypse,1285155158 +237322,1350,Christianity,1285155151 +237322,1350,demons,1285155138 +237322,1350,devil,1285155141 +237322,1350,Horror,1285155142 +237322,1356,aliens,1278958838 +237322,1356,Borg,1278958836 +237322,1356,noise in space,1278958818 +237322,1356,Patrick Stewart,1278958813 +237322,1356,Star Trek,1278958810 +237322,1356,time travel,1278958824 +237322,1373,aliens,1278958765 +237322,1373,Based on a TV show,1278958761 +237322,1373,fighting intruders,1278958732 +237322,1373,noise in space,1278958749 +237322,1373,space,1278958741 +237322,1373,Star Trek,1278958655 +237322,1373,William Shatner,1278958653 +237322,1584,Jodie Foster,1347180074 +237322,1584,sci-fi,1347180091 +237322,1584,science,1347180087 +237322,1584,slow build,1347180117 +237322,1584,space travel,1347180094 +237322,1584,unpredictable,1347180083 +237322,1590,dark,1295892954 +237322,1590,hallucination,1295892963 +237322,1590,horror,1278875541 +237322,1590,pychologically thrilling,1295892961 +237322,1590,space,1278875546 +237322,1590,spaceflight,1295892958 +237322,1610,cia,1278957481 +237322,1610,cold war,1278957465 +237322,1610,Sean Connery,1278957456 +237322,1610,submarine,1278957450 +237322,1610,Tom Clancy,1278957454 +237322,1682,dreamlike,1401015235 +237322,1682,dystopia,1401015225 +237322,1682,Jim Carrey,1401015243 +237322,1682,predictable,1401015262 +237322,1682,social commentary,1401015215 +237322,1682,voyeurism,1401015223 +237322,1747,black comedy,1302356731 +237322,1747,comedy,1302356733 +237322,1747,conspiracy,1302356725 +237322,1747,corruption,1302356728 +237322,1747,Dustin Hoffman,1302356711 +237322,1747,Robert De Niro,1302356715 +237322,1747,secrets,1302356719 +237322,1747,unbelievable,1302356758 +237322,1747,US President,1302356721 +237322,1748,aliens,1290362965 +237322,1748,atmospheric,1290363102 +237322,1748,Jennifer Connelly,1290363253 +237322,1748,Kiefer Sutherland,1290362950 +237322,1748,Rufus Sewell,1290363276 +237322,1748,stylized,1290362968 +237322,1748,surreal,1290362941 +237322,1748,thought-provoking,1290362984 +237322,1748,too much explanation,1290363084 +237322,1748,William Hurt,1290363265 +237322,1772,car chase,1333483752 +237322,1772,Dan Aykroyd,1333483719 +237322,1772,music,1333483740 +237322,1772,musical,1333483731 +237322,1917,apocalypse,1291151637 +237322,1917,Ben Affleck,1291151641 +237322,1917,Liv Tyler,1291151656 +237322,1917,USA saving the world,1291151710 +237322,2019,action,1284832182 +237322,2019,black and white,1284832185 +237322,2019,epic,1284832208 +237322,2019,lengthy,1284832178 +237322,2019,samurai,1284832192 +237322,2019,tense,1284832194 +237322,2028,action,1278958455 +237322,2028,fighting nazis,1278958440 +237322,2028,Steven Spielberg,1278958451 +237322,2028,Tom Hanks,1278958469 +237322,2028,World War II,1278958472 +237322,2105,alternate reality,1417961736 +237322,2105,cyberpunk,1417961723 +237322,2105,hackers,1417961728 +237322,2105,sci-fi,1417961726 +237322,2105,technology,1417961725 +237322,2105,virtual reality,1417961721 +237322,2311,artificial intelligence,1330250944 +237322,2311,cold war,1330250955 +237322,2311,slow,1330250919 +237322,2311,space,1330250916 +237322,2311,space travel,1330250913 +237322,2329,disturbing,1280951248 +237322,2329,Edward Norton,1280951275 +237322,2329,Neo-Nazis,1280951288 +237322,2329,prison,1280951335 +237322,2329,racism,1280951255 +237322,2329,skinhead,1280951286 +237322,2329,social conflicts,1280951303 +237322,2329,thought-provoking,1280951316 +237322,2329,violence,1280951265 +237322,2358,anti-hero,1280430672 +237322,2358,anti-war,1280430368 +237322,2358,baby,1280430345 +237322,2358,betrayal,1280430527 +237322,2358,birth,1280431397 +237322,2358,car chase,1280430403 +237322,2358,Dennis Quaid,1280430774 +237322,2358,disturbing,1280430309 +237322,2358,French Foreign Legion,1280430880 +237322,2358,genocide,1280430326 +237322,2358,historical background,1280430606 +237322,2358,language barrier,1280430651 +237322,2358,lenght,1280430907 +237322,2358,less than 300 ratings,1291150576 +237322,2358,man lost family,1280430637 +237322,2358,shooting,1280430434 +237322,2358,suicide attack,1280430803 +237322,2358,thoughtful,1280430306 +237322,2393,aliens,1278958919 +237322,2393,Based on a TV show,1278958917 +237322,2393,Brent Spiner,1283687613 +237322,2393,far future,1278958982 +237322,2393,Jonathan Frakes,1278958902 +237322,2393,LeVar Burton,1283687625 +237322,2393,nerdy,1283687602 +237322,2393,Patrick Stewart,1278958893 +237322,2393,Star Trek,1278958897 +237322,2402,action,1339940441 +237322,2402,shallow plot,1339940464 +237322,2402,Sylvester Stallone,1339940444 +237322,2402,torture,1339940471 +237322,2403,action,1330169911 +237322,2403,bad cop,1330169924 +237322,2403,dog killing,1330192453 +237322,2403,hiding,1330170036 +237322,2403,post-traumatic stress disorder,1330169897 +237322,2403,simple plot,1330170052 +237322,2403,social commentary,1330169899 +237322,2403,special forces,1330192480 +237322,2403,Sylvester Stallone,1330169902 +237322,2403,unexpected ending,1330169991 +237322,2403,violence,1330169918 +237322,2497,romance,1278875807 +237322,2716,action,1280862717 +237322,2716,Bill Murray,1280862729 +237322,2716,comedy,1280862701 +237322,2716,ghosts,1280862688 +237322,2716,hilarious,1280862693 +237322,2716,occult technology,1280862691 +237322,2716,paranormal,1280862707 +237322,2716,Rick Moranis,1280862732 +237322,2716,Sigourney Weaver,1280862734 +237322,2717,Action,1285261160 +237322,2717,Bill Murray,1285261155 +237322,2717,comedy,1285261118 +237322,2717,Dan Aykroyd,1285261063 +237322,2717,Ghosts,1285261173 +237322,2717,occult technology,1285261118 +237322,2717,paranormal,1285261118 +237322,2717,predictable,1285261148 +237322,2717,Sigourney Weaver,1285261153 +237322,2717,slow start,1285261195 +237322,2762,afterlife,1291150993 +237322,2762,Bruce Willis,1291151046 +237322,2762,horror,1291150993 +237322,2762,living dead,1291150993 +237322,2762,twist ending,1291151002 +237322,2762,unpredictable,1291151042 +237322,2916,alternate reality,1369760883 +237322,2916,Arnold Schwarzenegger,1369760879 +237322,2916,dystopia,1369760884 +237322,2916,espionage,1369760899 +237322,2916,gore,1369760897 +237322,2916,mars,1369760895 +237322,2916,politics,1369760905 +237322,2916,virtual reality,1369760890 +237322,2959,Brad Pitt,1280951776 +237322,2959,disturbing,1280951773 +237322,2959,Edward Norton,1280951779 +237322,2959,mental illness,1280951789 +237322,2959,schizophrenia,1280951783 +237322,2959,social commentary,1280951800 +237322,2959,surreal,1280951785 +237322,2959,thought-provoking,1280951807 +237322,2959,violence,1280951781 +237322,2985,action,1394390182 +237322,2985,anti-hero,1394390202 +237322,2985,corporate greed,1394390227 +237322,2985,cyborgs,1394390190 +237322,2985,dystopia,1394390188 +237322,2985,sci-fi,1394390184 +237322,2985,social commentary,1394390183 +237322,2985,violence,1394390194 +237322,3000,action,1278957934 +237322,3000,anime,1278957951 +237322,3000,fantasy world,1278957932 +237322,3000,Hayao Miyazaki,1278957960 +237322,3000,prostitution,1278957940 +237322,3000,Studio Ghibli,1278957962 +237322,3000,talking animals,1278957943 +237322,3022,silent movie,1279569797 +237322,3039,Dan Aykroyd,1369761140 +237322,3039,Eddie Murphy,1369761141 +237322,3039,hilarious,1369761144 +237322,3039,Nudity (Topless - Notable),1369761149 +237322,3039,Nudity (Topless),1369761150 +237322,3039,prostitution,1369761179 +237322,3039,racism,1369761156 +237322,3039,switching places,1369761173 +237322,3147,death penalty,1347180014 +237322,3147,emotional,1347180005 +237322,3147,great acting,1347180032 +237322,3147,male nudity,1347180025 +237322,3147,racism,1347180007 +237322,3147,social commentary,1347180042 +237322,3147,Stephen King,1347180012 +237322,3147,Tom Hanks,1347180010 +237322,3147,visually stunning,1347180022 +237322,3300,aliens,1417961670 +237322,3300,anti-hero,1417961672 +237322,3300,atmospheric,1417961675 +237322,3300,futuristic,1417961668 +237322,3300,sci-fi,1417961665 +237322,3300,stranded,1417961662 +237322,3300,Vin Diesel,1417961667 +237322,3307,silent movie,1279569785 +237322,3354,alien artifacts,1286204348 +237322,3354,bad science,1286204298 +237322,3354,death,1286204366 +237322,3354,disappointing ending,1286204456 +237322,3354,mars,1286204355 +237322,3354,space travel,1286204300 +237322,3355,bad ending,1284412815 +237322,3355,devil,1284412792 +237322,3355,Johnny Depp,1284412777 +237322,3355,Mystery,1284412782 +237322,3355,Nudity (Topless),1284412803 +237322,3355,Roman Polanski,1284412808 +237322,3355,satanism,1284412812 +237322,3355,story,1284412831 +237322,3481,break-up,1334527686 +237322,3481,breaking the fourth wall,1334527664 +237322,3481,Catherine Zeta-Jones,1334527671 +237322,3481,Chicago,1334527675 +237322,3481,Iben Hjejle,1334527595 +237322,3481,Jack Black,1334527614 +237322,3481,John Cusack,1334527613 +237322,3481,quirky,1334527616 +237322,3481,relationships,1334527684 +237322,3555,historically wrong,1386847747 +237322,3555,stupid nazis,1291150808 +237322,3555,submarine,1386337950 +237322,3555,unrealistic,1291150777 +237322,3555,World War II,1291150838 +237322,3793,action,1369760701 +237322,3793,mutants,1369760685 +237322,3793,Patrick Stewart,1369760677 +237322,3793,sci-fi,1369760687 +237322,3793,superheroes,1369760690 +237322,3793,violence,1369760694 +237322,3852,open ending,1280862058 +237322,3852,plain storyline,1280862137 +237322,3852,Romance,1280862086 +237322,3852,social conflicts,1280862111 +237322,4022,airplane crash,1286196063 +237322,4022,lengthy,1286196047 +237322,4022,loneliness,1286196038 +237322,4022,man vs. nature,1286196077 +237322,4022,SURVIVAL,1286196035 +237322,4022,Tom Hanks,1286196032 +237322,4027,comedy,1278956937 +237322,4027,George Clooney,1278956917 +237322,4027,racism,1278956923 +237322,4085,action,1369760839 +237322,4085,Axel Foley,1369760833 +237322,4085,funny,1369760852 +237322,4085,police,1369760844 +237322,4226,nonlinear,1280950163 +237322,4226,twist ending,1280950176 +237322,4239,drug trafficking,1394398345 +237322,4239,drugs,1394398360 +237322,4239,dysfunctional family,1394398349 +237322,4239,father daughter relationship,1394398353 +237322,4239,Johnny Depp,1394398330 +237322,4239,PenÃ?Â?Ã?©lope Cruz,1394398337 +237322,4306,animation,1369857553 +237322,4306,Cameron Diaz,1369857556 +237322,4306,comedy,1369857558 +237322,4306,Disney,1369857561 +237322,4306,Dreamworks,1369857564 +237322,4306,Eddie Murphy,1369857566 +237322,4306,fairy tale,1369857570 +237322,4306,ogres,1369857589 +237322,4306,romance,1369857575 +237322,4306,satire,1369857578 +237322,4306,talking animals,1369857579 +237322,4404,silent,1281192726 +237322,4553,cult film,1278959215 +237322,4553,satire,1278959212 +237322,4643,battles,1329587141 +237322,4643,dystopia,1329586893 +237322,4643,half-baked romance,1329586938 +237322,4643,jungle,1329586979 +237322,4643,low lights,1329586990 +237322,4643,post-apocalyptic,1329586899 +237322,4643,predictable,1329587003 +237322,4643,remake,1329587156 +237322,4643,schoolmasterly social commentary,1329587121 +237322,4643,slavery,1329586907 +237322,4643,space,1329586969 +237322,4643,space travel,1329586969 +237322,4643,spaceships,1329586906 +237322,4643,Tim Burton,1329586900 +237322,4643,violence,1329586909 +237322,4886,animated,1347179973 +237322,4886,animation,1347179955 +237322,4886,Comedy,1347179954 +237322,4886,hilarious,1347179957 +237322,4886,Pixar,1347179958 +237322,4967,disturbing,1300566406 +237322,4967,ethnic conflict,1300566420 +237322,4967,human nature,1300566418 +237322,4967,No Happy End,1300566402 +237322,4967,war,1300566412 +237322,4995,mathematics,1347179909 +237322,4995,mental illness,1347179912 +237322,4995,Russell Crowe,1347179916 +237322,4995,schizophrenia,1347179913 +237322,4995,true story,1347179919 +237322,5010,action packed,1324206299 +237322,5010,brutal,1324206323 +237322,5010,heroism,1324206311 +237322,5010,realistic,1324206254 +237322,5010,USA being the good one,1324206351 +237322,5010,war,1324206302 +237322,5014,disability,1305478968 +237322,5014,father daughter relationship,1305479026 +237322,5014,mental illness,1305478966 +237322,5014,Michelle Pfeiffer,1305478990 +237322,5014,sean penn,1305478985 +237322,5014,thought-provoking,1305478976 +237322,5014,touching,1305479012 +237322,5038,less than 300 ratings,1285612103 +237322,5039,satisfying ending,1285612568 +237322,5152,action packed,1286205318 +237322,5152,heroism,1286205378 +237322,5152,Mel Gibson,1286205306 +237322,5152,realistic,1286205303 +237322,5152,Vietnam,1286205341 +237322,5152,Vietnam War,1286205340 +237322,5219,zombies,1278875277 +237322,5425,aviation,1278957725 +237322,5425,world war II,1278957721 +237322,5464,father-son relationship,1279570030 +237322,5464,Tom Hanks,1279570072 +237322,5464,violence,1279570033 +237322,5502,alien invasion,1286205183 +237322,5502,aliens,1286205163 +237322,5502,horror,1286205221 +237322,5502,Mel Gibson,1286205170 +237322,5502,scary,1286205151 +237322,5574,action,1281894292 +237322,5574,car chase,1281894314 +237322,5574,cars,1281894309 +237322,5574,human trafficking,1281894354 +237322,5574,kidnapping,1281894333 +237322,5574,Luc Besson,1281894286 +237322,5574,precision,1281894384 +237322,5574,Qi Shu,1281894288 +237322,5574,revenge,1281894407 +237322,5574,shooting,1281894323 +237322,5608,based on a true story,1280951525 +237322,5608,German,1280951485 +237322,5608,mass behavior,1280951503 +237322,5608,Moritz Bleibtreu,1280951481 +237322,5608,psychology,1280951515 +237322,5608,subordination,1280951553 +237322,5608,thought-provoking,1280951568 +237322,5618,alternate reality,1285612150 +237322,5618,anime,1285612150 +237322,5618,dragons,1285612154 +237322,5618,dreamlike,1285612202 +237322,5618,fairy tale,1285612156 +237322,5618,fantasy,1285612170 +237322,5618,whimsical,1285612195 +237322,5679,creepy,1278957622 +237322,5679,disturbing,1278957615 +237322,5679,horror,1278957624 +237322,5679,metaphysics,1278957666 +237322,5679,Naomi Watts,1278957626 +237322,5690,anime,1307016461 +237322,5690,anti-war,1307016463 +237322,5690,based on a true story,1307016465 +237322,5690,grim,1307016494 +237322,5690,siblings,1307016481 +237322,5690,slow,1307016550 +237322,5690,tragic,1307016535 +237322,5690,war,1307016485 +237322,5690,WWII,1307016489 +237322,5782,action,1330251382 +237322,5782,agents,1330251429 +237322,5782,fantastic end,1330251549 +237322,5782,fooling the police,1330251573 +237322,5782,France,1330251507 +237322,5782,Jean-Paul Belmondo,1330251376 +237322,5782,Paris,1330251497 +237322,5782,romance,1330251448 +237322,5782,unpredictable,1330251479 +237322,5782,visually appealing,1330251448 +237322,5944,Based on a TV show,1278959009 +237322,5944,Brent Spiner,1278959015 +237322,5944,far future,1284653045 +237322,5944,lousy script,1278959030 +237322,5944,Patrick Stewart,1278959004 +237322,5944,space,1284653038 +237322,5944,Star Trek,1278959007 +237322,5971,anime,1279652529 +237322,5971,fantasy,1279652525 +237322,5971,simple plot,1279652584 +237322,5971,spirits,1279652535 +237322,6016,multiple storylines,1278958102 +237322,6016,Portuguese,1278958082 +237322,6082,less than 300 ratings,1292276650 +237322,6283,anime,1285611787 +237322,6283,BOUNTY HUNTERS,1285611828 +237322,6283,cynical,1285611833 +237322,6283,genre mix,1285611820 +237322,6283,humorous,1285611823 +237322,6283,sci-fi,1285611809 +237322,6283,space,1285611791 +237322,6350,adventure,1307016297 +237322,6350,anime,1307016301 +237322,6350,aviation,1307016307 +237322,6350,fantasy,1307016304 +237322,6350,pirates,1307016346 +237322,6350,sci-fi,1307016314 +237322,6350,told hastily,1307016332 +237322,6377,father-son relationship,1291151250 +237322,6377,memory loss,1291151257 +237322,6377,Pixar,1291151291 +237322,6377,predictable,1291151315 +237322,6377,singing,1291151276 +237322,6377,talking animals,1291151285 +237322,6377,too cute,1291151309 +237322,6377,underwater,1291151245 +237322,6502,sci-fi,1278876538 +237322,6502,zombies,1278876535 +237322,6711,Bill Murray,1278957378 +237322,6711,cultural differences,1278957363 +237322,6711,Japan,1278957329 +237322,6711,Melancholic,1278957349 +237322,6711,scarlett johnansson,1278957375 +237322,6731,creepy,1295623233 +237322,6731,George A. Romero,1295623240 +237322,6731,gore,1295623369 +237322,6731,horror,1295623235 +237322,6731,paranoid,1295623223 +237322,6731,precipitous endling,1295623306 +237322,6731,rushed acting,1295623419 +237322,6731,solid plot,1295623269 +237322,6731,stereotyped characters,1295623216 +237322,6731,zombies,1295623225 +237322,6764,action,1441533928 +237322,6764,Amazon,1441533942 +237322,6764,Dwayne Johnson,1441533901 +237322,6764,jungle,1441533912 +237322,6764,predictable,1441533922 +237322,6764,Seann William Scott,1441533909 +237322,6902,Amy Smart,1282380128 +237322,6902,first-person narrative,1282380546 +237322,6902,life lessons,1282380562 +237322,6902,Michael J. Fox,1282380134 +237322,6902,road trip,1282380581 +237322,6947,historical,1422810382 +237322,6947,Russell Crowe,1422810378 +237322,6947,sailing,1422810386 +237322,6947,seafaring,1422810380 +237322,7323,Daniel Brühl,1281191953 +237322,7323,East Germany,1281191974 +237322,7323,family bonds,1281191972 +237322,7323,German,1281191882 +237322,7323,Katrin Saß,1281191931 +237322,7323,romance,1281191899 +237322,7323,The fall of the Berlin wall,1281191983 +237322,7360,action,1367229403 +237322,7360,horror,1367229408 +237322,7360,post-apocalyptic,1367229401 +237322,7360,zombie,1367229396 +237322,7373,demon,1279571731 +237322,7373,superhero,1279571715 +237322,7445,action,1417961783 +237322,7445,bodyguard,1417961790 +237322,7445,Denzel Washington,1417961776 +237322,7445,great cinematography,1417961789 +237322,7445,kidnapping,1417961781 +237322,7445,redemption,1417961785 +237322,7445,revenge,1417961779 +237322,7445,twists & turns,1417961795 +237322,7502,action,1302811306 +237322,7502,based on a book,1302811348 +237322,7502,military,1302811296 +237322,7502,realistic,1302811317 +237322,7502,soilders,1302811373 +237322,7502,thought-provoking,1302811331 +237322,7502,true story,1302811293 +237322,7502,war,1302811290 +237322,7842,lengthy,1280774587 +237322,8125,silent movie,1281040669 +237322,8604,car chase,1279570268 +237322,8604,France,1279570365 +237322,8604,humor,1279570277 +237322,8604,Nice driving,1279570280 +237322,8604,Samy Naceri,1279570355 +237322,8604,speeding,1279570340 +237322,8604,stupid police,1279570327 +237322,8605,car chase,1279570631 +237322,8605,France,1279570634 +237322,8605,gadgets,1279570656 +237322,8605,Gérard Krawczyk,1279570636 +237322,8605,stupid police,1279570627 +237322,8861,Post apocalyptic,1278875313 +237322,8861,trash,1278875308 +237322,8861,zombies,1278875290 +237322,8874,anti-hero,1286032137 +237322,8874,black comedy,1286032132 +237322,8874,gore,1286032135 +237322,8874,Kate Ashfield,1286032108 +237322,8874,Nick Frost,1286032117 +237322,8874,parody,1286032134 +237322,8874,Simon Pegg,1286032103 +237322,8874,zombie,1286032125 +237322,26203,evil computer,1279652844 +237322,27002,Series,1278875870 +237322,27193,car chase,1279570441 +237322,27193,France,1279570429 +237322,27193,humor,1279570474 +237322,27193,kidnapping,1279570519 +237322,27193,romance,1279570455 +237322,27193,Samy Naceri,1279570468 +237322,27193,stupid police,1279570423 +237322,27193,yakuza,1279570534 +237322,27449,Berlin,1369764836 +237322,27449,crime,1369764508 +237322,27449,ex-convict,1369764477 +237322,27449,German Reunification,1369764446 +237322,27449,Jörg Schüttauf,1386337826 +237322,27449,job hunting,1369764536 +237322,27449,jörg schüttauf,1420462789 +237322,27449,Julia Jäger,1386337843 +237322,27449,less than 300 ratings,1369764602 +237322,27449,man-to-man friendship,1369764645 +237322,27449,racism,1369764619 +237322,27449,social commentary,1420462789 +237322,27449,social reintegration,1369764592 +237322,27449,visually appealing,1369764494 +237322,27537,abnormal plot,1280950857 +237322,27537,David Hewlett,1280950811 +237322,27537,good acting,1280950824 +237322,27537,isolation,1280951028 +237322,27537,paranormal,1280950688 +237322,27537,power games,1280950780 +237322,27537,predictable,1280950946 +237322,27537,social criticism,1280950906 +237322,27537,surreal,1280950711 +237322,27537,Vincenzo Natali,1280950810 +237322,27537,weird ending,1280951007 +237322,27731,anime,1417979683 +237322,27731,cats,1417979691 +237322,27731,Japan,1417979686 +237322,27871,less than 300 ratings,1287252926 +237322,27871,medicine,1287260707 +237322,30749,Africa,1304182106 +237322,30749,civil war,1304182091 +237322,30749,genocide,1304182093 +237322,30749,refugees,1304182133 +237322,30749,United Nations,1304182099 +237322,31658,anime,1431202256 +237322,31658,dreamlike,1431202262 +237322,31658,magic,1431202264 +237322,31658,steampunk,1431202260 +237322,31658,stylized,1431202268 +237322,31658,war,1431202267 +237322,31658,wizards,1431202271 +237322,32460,friendship,1281191785 +237322,32460,German,1281191762 +237322,32460,Mafia,1281191787 +237322,32460,Moritz Bleibtreu,1281191758 +237322,32460,road trip,1281191766 +237322,32460,sad ending,1281191809 +237322,32460,shooting,1281191842 +237322,32460,terminal illness,1281191778 +237322,32460,Til Schweiger,1281191760 +237322,32974,less than 300 ratings,1291151486 +237322,33162,action,1441452985 +237322,33162,bravery,1441453005 +237322,33162,christian,1441453011 +237322,33162,crusades,1441452983 +237322,33162,islam,1441452995 +237322,33162,Liam Neeson,1441452976 +237322,33162,medieval,1441452979 +237322,33162,Orlando Bloom,1441453024 +237322,33162,siege,1441452991 +237322,36519,action,1281894459 +237322,36519,car chase,1281894440 +237322,36519,cars,1281894467 +237322,36519,kidnapping,1281894497 +237322,36519,plot point:bio-medical danger,1281894471 +237322,36519,shooting,1281894463 +237322,36519,violence,1281894480 +237322,36529,Africa,1280951667 +237322,36529,dark comedy,1280951665 +237322,36529,murder,1280951723 +237322,36529,narrated,1280951690 +237322,36529,Nicolas Cage,1280951659 +237322,36529,smuggling,1280951675 +237322,36529,violence,1280951699 +237322,36529,war,1280951698 +237322,36529,World Politics,1280951683 +237322,37380,action packed,1295789790 +237322,37380,horror,1295789815 +237322,37380,mars,1295789886 +237322,37380,monsters,1295789810 +237322,37380,sci-fi,1295789848 +237322,37380,teleportation,1295789868 +237322,37380,The Rock,1295789822 +237322,37386,cloning,1284919111 +237322,37386,dystopia,1284919113 +237322,37386,female warriors,1284919118 +237322,37386,genetics,1284919133 +237322,37386,lengthy,1284919097 +237322,37386,poor acting,1284919270 +237322,37386,post-apocalyptic,1284919106 +237322,37386,predictable,1284919162 +237322,37386,stylized,1284919101 +237322,37386,violence,1284919124 +237322,37475,domestic violence,1338754549 +237322,37475,grandfather,1338754621 +237322,37475,grief,1338754564 +237322,37475,Jennifer Lopez,1338754587 +237322,37475,Morgan Freeman,1338754573 +237322,37475,mother-daughter relationship,1338754613 +237322,37475,redemption,1338754593 +237322,37475,Robert Redford,1338754554 +237322,37475,Wyoming,1338754556 +237322,38798,bittersweet,1333476854 +237322,38798,Cameron Diaz,1333476527 +237322,38798,character driven,1333476583 +237322,38798,dyslexia,1333476801 +237322,38798,family bonds,1333476633 +237322,38798,romance,1333476654 +237322,38798,Shirley MacLaine,1333476644 +237322,38798,sister sister relationship,1333476567 +237322,38798,Toni Collette,1333476550 +237322,38798,visually appealing,1333476587 +237322,39292,abrupt ending,1338734870 +237322,39292,American history,1338734847 +237322,39292,black and white,1338734823 +237322,39292,communism,1338734817 +237322,39292,George Clooney,1338734827 +237322,39292,journalism,1338734814 +237322,39292,true story,1338734931 +237322,39292,visually appealing,1338734855 +237322,40583,Alexander Siddig,1304855803 +237322,40583,complex,1304855695 +237322,40583,George Clooney,1304855723 +237322,40583,lengthy,1304855720 +237322,40583,Matt Damon,1304855738 +237322,40583,middle east,1304855703 +237322,40583,oil,1304855744 +237322,40583,Political,1304855700 +237322,40583,thought-provoking,1304855754 +237322,40583,tragic,1304855771 +237322,45506,children,1286047905 +237322,45506,disturbed characters,1286047973 +237322,45506,less than 300 ratings,1286047857 +237322,45506,predictable,1286047872 +237322,45506,prison,1286047916 +237322,45506,revenge,1286047931 +237322,47099,american dream,1431202124 +237322,47099,based on a true story,1431202091 +237322,47099,bittersweet,1431202088 +237322,47099,courage,1431202098 +237322,47099,father-son relationship,1431202096 +237322,47099,happy ending,1431202111 +237322,47099,poverty,1431202102 +237322,47099,San Francisco,1431202094 +237322,47099,Will Smith,1431202089 +237322,47202,emotional,1288999362 +237322,47202,Melancholic,1288999374 +237322,47202,Nudity (Topless),1288999255 +237322,47202,Oil Rig,1288999283 +237322,47202,Sarah Polley,1288999261 +237322,47202,thoughtful,1288999343 +237322,47202,Tim Robbins,1288999281 +237322,47202,Yugoslav Wars,1288999332 +237322,47610,Edward Norton,1281034461 +237322,47610,happy ending,1281034444 +237322,47610,Jessica Biel,1281034419 +237322,47610,love story,1281034435 +237322,47610,magic,1281034467 +237322,47610,Paul Giamatti,1281034451 +237322,47610,twist ending,1281034425 +237322,48543,dog killing,1330192416 +237322,48543,extremely slow build,1330192339 +237322,48543,german,1330192344 +237322,48543,less than 300 ratings,1330192434 +237322,48543,psychology focus,1330192363 +237322,48543,twist ending,1330192328 +237322,48543,unpredictable,1330192400 +237322,48543,visually appealing,1330192372 +237322,48660,abortion,1281192039 +237322,48660,Christian Ulmen,1281192010 +237322,48660,explicit sex,1281192141 +237322,48660,explicit sex scene,1281192141 +237322,48660,Franka Potente,1281192022 +237322,48660,german,1281192015 +237322,48660,handicapped,1281192231 +237322,48660,infertility,1281192165 +237322,48660,less than 300 ratings,1291150699 +237322,48660,mental hospital,1281192112 +237322,48660,Midlife Crisis,1281192387 +237322,48660,Moritz Bleibtreu,1281192013 +237322,48660,Nina Hoss,1281192438 +237322,48660,romance,1281192286 +237322,48660,schizophrenia,1281192101 +237322,48660,stroke of fate,1281192195 +237322,48660,suicide,1281192207 +237322,48660,thoughtful,1281192155 +237322,48780,enigmatic,1305316936 +237322,48780,magic,1305316930 +237322,48780,nonlinear,1305316923 +237322,48780,Scarlett Johansson,1305316928 +237322,48780,twist ending,1305316925 +237322,49272,action,1291151440 +237322,49272,Daniel Craig,1291151404 +237322,49272,gambling,1291151420 +237322,49272,James Bond,1291151391 +237322,49272,romance,1291151446 +237322,49272,spies,1291151425 +237322,49272,torture,1291151429 +237322,50151,50 Cent,1281040437 +237322,50151,action,1281040426 +237322,50151,alcoholism,1281209509 +237322,50151,anti-war,1281040413 +237322,50151,bomb attack,1281209410 +237322,50151,gore,1281209439 +237322,50151,Iraq,1281209365 +237322,50151,Iraq War,1281209365 +237322,50151,Jessica Biel,1281040397 +237322,50151,kidnapping,1281209467 +237322,50151,lengthy,1281040460 +237322,50151,less than 300 ratings,1325458902 +237322,50151,rampage,1281209499 +237322,50151,Samuel L. Jackson,1281040400 +237322,50151,shooting,1281209590 +237322,50151,support-group,1281209557 +237322,50151,thought-provoking,1281040492 +237322,50151,thoughtful,1281040492 +237322,50151,veterans,1281040501 +237322,50151,War,1281040499 +237322,50162,animated,1347178903 +237322,50162,fantasy,1347178915 +237322,50162,gadgets,1347178926 +237322,50162,Luc Besson,1347178908 +237322,50162,narrator,1347179168 +237322,50162,predictable ending,1347179187 +237322,50851,action,1295451874 +237322,50851,cocaine,1295451870 +237322,50851,documentary,1295451869 +237322,50851,pseudo documentary,1295451900 +237322,51077,based on a comic,1303070131 +237322,51077,deal with the devil,1303070238 +237322,51077,devil,1303070125 +237322,51077,Eva Mendes,1303070262 +237322,51077,motorcycle,1303070144 +237322,51077,Nicholas Cage,1303070266 +237322,51077,plain storyline,1303070296 +237322,51077,unrealistic,1303070255 +237322,51412,action,1284925776 +237322,51412,jessica biel,1285155190 +237322,51412,Nicolas Cage,1284925754 +237322,51412,open ending,1284925786 +237322,51412,psychic powers,1284925806 +237322,51412,supernatural powers,1284925762 +237322,51412,time-lapse,1284925766 +237322,51662,action,1278957057 +237322,51662,Nudity (Topless),1278957049 +237322,51662,rape,1278957059 +237322,51662,stylized,1278957074 +237322,51662,sword fight,1278957043 +237322,52328,isolation,1333477224 +237322,52328,predictable ending,1333477249 +237322,52328,sci-fi,1333477190 +237322,52328,slow paced,1333477271 +237322,52328,space,1333477186 +237322,52328,spaceships,1333477185 +237322,52328,suicide attempt,1333477197 +237322,52328,unpredictable,1333477240 +237322,52328,visually stunning,1333477207 +237322,52885,dreamlike,1367231014 +237322,52885,hallucinatory,1367231018 +237322,52885,surreal,1367231025 +237322,53996,action,1339930890 +237322,53996,man versus machine,1339930894 +237322,53996,Megan Fox,1339930984 +237322,53996,robots,1339930900 +237322,53996,romance,1339930921 +237322,53996,sci-fi,1339930908 +237322,53996,Shia LaBeouf,1339930995 +237322,53996,transformation,1339930913 +237322,54004,Adam Sandler,1280951976 +237322,54004,Jessica Biel,1280951983 +237322,54004,Kevin James,1280951992 +237322,54004,romance,1280952026 +237322,54004,social commentary,1280951996 +237322,54004,stereotype:gay,1280952077 +237322,55205,dialogue driven,1329587625 +237322,55205,drama,1329587753 +237322,55205,drugs,1329587768 +237322,55205,fame,1329587780 +237322,55205,interviews,1329587787 +237322,55205,partialy lenghty,1329587673 +237322,55205,Sienna Miller,1329587622 +237322,55205,Steve Buscemi,1329587621 +237322,55205,unpredictable ending,1329587616 +237322,55205,woman outsmarts man,1329587707 +237322,55232,zombies,1278875334 +237322,55442,animation,1302356808 +237322,55442,autobiographical,1302356859 +237322,55442,black and white,1302356812 +237322,55442,fascism,1302356819 +237322,55442,Iran,1302356826 +237322,55442,Middle East,1302356823 +237322,55442,religion,1302356839 +237322,55442,social commentary,1302356802 +237322,55442,war,1302356878 +237322,55553,genetics,1284839654 +237322,55553,gore,1284839629 +237322,55553,mad scientist,1284839653 +237322,55553,New Zealand,1284839643 +237322,55553,sheep zombies,1284839618 +237322,55553,Zombies,1284839622 +237322,55908,dialogue driven,1340567425 +237322,55908,philosophical,1340567415 +237322,55908,religion,1340567418 +237322,55908,theatre,1340567412 +237322,55908,thought-provoking,1340567393 +237322,55995,dragon,1279571635 +237322,56174,alone in the world,1278876617 +237322,56174,dog killing,1330811253 +237322,56174,dogs,1330811336 +237322,56174,horror,1278876641 +237322,56174,post-apocalyptic,1278876612 +237322,56174,religion,1278876635 +237322,56174,solitude,1405270486 +237322,56174,Will Smith,1278876601 +237322,56174,zombies,1278876604 +237322,56846,children,1283688065 +237322,56846,humor,1283688126 +237322,56846,Jürgen Vogel,1283688130 +237322,56846,Nora Tschirner,1283688048 +237322,56846,predictable ending,1283688113 +237322,56846,reporter,1283688085 +237322,56846,sex,1283688053 +237322,56846,Til Schweiger,1283688043 +237322,57274,Handycam,1284846179 +237322,57274,spanish,1284846349 +237322,57368,mockumentary,1405271028 +237322,57504,Anime,1441453439 +237322,57504,coming of age,1441453462 +237322,57504,friendship,1441453446 +237322,57504,heartwarming,1441453444 +237322,57504,japanese,1441453449 +237322,57504,time travel,1441453441 +237322,57528,gore,1324153674 +237322,57528,simple story line,1324153710 +237322,57528,Sylvester Stallone,1324153658 +237322,57528,War,1324153661 +237322,58425,less than 300 ratings,1291845849 +237322,59018,immigrants,1394390073 +237322,59018,New York City,1394390047 +237322,59018,predictable,1394390136 +237322,59018,Richard Jenkins,1394390055 +237322,59018,romance,1394390070 +237322,59018,social commentary,1394390082 +237322,59018,solitude,1394390126 +237322,59018,USA,1394390108 +237322,59315,action,1338651448 +237322,59315,Marvel,1338651474 +237322,59315,Robert Downey Jr.,1338651463 +237322,59315,sci-fi,1338651450 +237322,59315,superhero,1338651452 +237322,59315,vigilante,1338651460 +237322,59336,abrupt end,1330169737 +237322,59336,combat,1330169690 +237322,59336,Honor,1330169638 +237322,59336,Los Angeles,1330169809 +237322,59336,martial arts,1330169667 +237322,59336,simple characters,1330169874 +237322,59336,simple plot,1330169703 +237322,59336,Tim Allen,1330169660 +237322,59336,unexpected ending,1330169770 +237322,59336,violence,1330169689 +237322,59369,action,1341779298 +237322,59369,action packed,1341779307 +237322,59369,CIA,1341779330 +237322,59369,divorce,1341779312 +237322,59369,espionage,1341779405 +237322,59369,father daughter relationship,1341779293 +237322,59369,happy ending,1341779388 +237322,59369,hard-line action,1341779377 +237322,59369,kidnapping,1341779315 +237322,59369,Liam Neeson,1341779292 +237322,59369,revenge,1341779409 +237322,59369,torture,1341779322 +237322,59784,animation,1295546353 +237322,59784,anti-hero,1295546354 +237322,59784,destiny,1295546369 +237322,59784,father-son relationship,1295546365 +237322,59784,martial arts,1295546347 +237322,59784,talking animals,1295546342 +237322,59784,violence,1295546358 +237322,60074,anti-hero,1302811714 +237322,60074,superhero,1302811716 +237322,60074,Will Smith,1302811703 +237322,60684,alternate reality,1279569946 +237322,60684,cold war,1279569940 +237322,60684,sci-fi,1279569948 +237322,60684,superheroes,1279569935 +237322,61236,animated,1288996700 +237322,61236,autobiographical,1288996733 +237322,61236,cruelty of war,1288996772 +237322,61236,Israel,1288996708 +237322,61236,middle east conflict,1288996784 +237322,61236,thought-provoking,1288996718 +237322,61236,touching,1288996800 +237322,61236,war,1288996753 +237322,61323,Brad Pitt,1336065023 +237322,61323,cia,1336065052 +237322,61323,Coen Brothers,1336065016 +237322,61323,dark comedy,1336065059 +237322,61323,espionage,1336065086 +237322,61323,George Clooney,1336065017 +237322,61323,greed,1336065072 +237322,61323,John Malkovich,1336065021 +237322,61323,satire,1336065090 +237322,61323,Tilda Swinton,1336065045 +237322,61323,unpredictable,1336065033 +237322,62999,animation,1303751207 +237322,62999,comedy,1303751160 +237322,62999,escape,1303751199 +237322,62999,father-son relationship,1303751178 +237322,62999,friendship relations,1303751174 +237322,62999,penguins,1303751187 +237322,63859,animation,1295789147 +237322,63859,cat,1295789161 +237322,63859,dog,1295789157 +237322,63859,heartwarming,1295789125 +237322,63859,hollywood ending,1295789229 +237322,63859,on the road,1295789143 +237322,63859,talking animals,1295789139 +237322,63859,walt disney,1295789246 +237322,64614,Clint Eastwood,1340567327 +237322,64614,culture clash,1340567335 +237322,64614,friendship,1340567331 +237322,64614,gangs,1340567347 +237322,64614,Martyr (non religious),1368118327 +237322,64614,racism,1340567338 +237322,64614,revenge,1340567339 +237322,64614,violence,1340567341 +237322,65142,cheating,1369765601 +237322,65142,cheating husband,1369765622 +237322,65142,cheating wife,1369765619 +237322,65142,corpses,1369765525 +237322,65142,intrigue,1369765546 +237322,65142,lower upper class,1369765715 +237322,65142,sterile acting,1369765680 +237322,65142,Unexpected Ending,1369765562 +237322,65514,action,1292445790 +237322,65514,biography,1292613230 +237322,65514,China,1292445802 +237322,65514,chinese propaganda,1292445093 +237322,65514,distorted representation of history,1292445534 +237322,65514,good vs evil,1292445294 +237322,65514,historical background,1292445263 +237322,65514,japanese occupation of china,1292445323 +237322,65514,kung fu,1292445739 +237322,65514,martial arts,1292445795 +237322,65514,predictable ending,1292445229 +237322,65514,slow motion scenes,1292445823 +237322,67073,action,1295713367 +237322,67073,army experiment,1295713588 +237322,67073,evil scientist,1295713575 +237322,67073,simple plot,1295713404 +237322,67073,US army,1295713453 +237322,67073,zombies,1295713361 +237322,67168,action,1286047738 +237322,67168,gore,1286047729 +237322,67168,less than 300 ratings,1286026709 +237322,67168,ridiculous characters,1286047694 +237322,67168,slow start,1286047687 +237322,67168,social commentary,1286047706 +237322,67168,zombies,1286047691 +237322,67197,aliens,1286228353 +237322,67197,apocalypse,1286228352 +237322,67197,eerie,1286228469 +237322,67197,father-son relationship,1286228365 +237322,67197,future,1286228426 +237322,67197,Nicolas Cage,1286228344 +237322,67197,paranormal,1286228360 +237322,68157,nazi satire,1278956860 +237322,68205,fun,1282036605 +237322,68205,gore,1282036600 +237322,68205,Jason Statham,1282036597 +237322,68205,unrealistic,1282036594 +237322,68237,artificial intelligence,1284482292 +237322,68237,corporate culture,1284482257 +237322,68237,isolation,1284482244 +237322,68237,moon,1284482251 +237322,68237,robot,1284482273 +237322,68237,solitude,1284482247 +237322,68237,space,1284482249 +237322,68358,action,1284653598 +237322,68358,alternate reality,1284653574 +237322,68358,space,1284653590 +237322,68358,space travel,1284653586 +237322,68358,Star Trek,1284653579 +237322,68358,time travel,1284653583 +237322,68650,death,1351619813 +237322,68650,Jessica Biel,1351619787 +237322,68650,life philosophy,1351619793 +237322,68650,loneliness,1351619838 +237322,68650,multiple storylines,1351619795 +237322,68650,Nudity (Topless),1351619805 +237322,69481,anti-hero,1385324562 +237322,69481,anti-war,1385324271 +237322,69481,death,1385324266 +237322,69481,intense,1385324245 +237322,69481,Iraq War,1385324242 +237322,69481,military,1385324292 +237322,69481,predictable,1385324339 +237322,69481,predictable ending,1385324327 +237322,69481,PTSD,1385324316 +237322,69481,shallow plot,1385324279 +237322,69481,suicide bomber,1385324257 +237322,70032,corporate America,1325793788 +237322,70032,dark comedy,1325793794 +237322,70032,dull,1325793803 +237322,70032,dystopia,1325793807 +237322,70032,social commentary,1325793816 +237322,71106,friendship,1282380256 +237322,71106,nerds,1282380255 +237322,71106,sci-fi,1282380258 +237322,71106,time travel,1282380253 +237322,71135,horror,1300620885 +237322,71135,hybernation,1300620889 +237322,71135,mutation,1300620891 +237322,71135,post-apocalyptic,1300620912 +237322,71135,sci-fi,1300620863 +237322,71135,space,1300620876 +237322,71135,space travel,1300620874 +237322,71135,we've seen this before,1300620906 +237322,71304,betrayal,1280861959 +237322,71304,sex,1280861940 +237322,71304,thought-provoking,1280861990 +237322,71304,vampires,1280861962 +237322,71535,Bill Murray,1288113783 +237322,71535,dark comedy,1288113794 +237322,71535,gore,1288113785 +237322,71535,IMDB Top 250,1288113819 +237322,71535,post-apocalyptic,1288113793 +237322,71535,violence,1288113806 +237322,71535,zombies,1288113789 +237322,71579,1960s,1417978829 +237322,71579,bittersweet,1417978843 +237322,71579,Carey Mulligan,1417978835 +237322,71579,coming of age,1417978822 +237322,71579,Emma Thompson,1418405019 +237322,71579,England,1417978826 +237322,71579,great acting,1418405023 +237322,71579,London,1418405014 +237322,71579,predictable,1418405027 +237322,71579,predictable ending,1417978932 +237322,71579,predictable plot,1417978918 +237322,71579,school,1417978851 +237322,71579,visually appealing,1417978853 +237322,71899,friendship,1284412940 +237322,71899,letters,1284412974 +237322,71899,mental illness,1284412921 +237322,71899,stop motion,1284412982 +237322,71899,touching,1284412919 +237322,71993,less than 300 ratings,1285612317 +237322,72011,airplane,1280429797 +237322,72011,airport,1280429795 +237322,72011,Anna Kendrick,1280429774 +237322,72011,based on a book,1280429729 +237322,72011,business,1280429695 +237322,72011,cheating,1280429708 +237322,72011,corporate america,1300546464 +237322,72011,George Clooney,1278875939 +237322,72011,Jason Bateman,1280429831 +237322,72011,Las Vegas,1280429803 +237322,72011,loneliness,1280429816 +237322,72011,Nudity (Rear),1280429784 +237322,72011,thoughtful,1280429736 +237322,72011,travel,1280429679 +237322,72011,United States,1280429690 +237322,73168,action,1330984937 +237322,73168,brother-brother relationship,1330984858 +237322,73168,brothers,1330984859 +237322,73168,Chris Pine,1330984923 +237322,73168,dog killing,1330984872 +237322,73168,dystopia,1330984848 +237322,73168,Emily VanCamp,1330984840 +237322,73168,happy ending,1330985019 +237322,73168,less than 300 ratings,1330985141 +237322,73168,Lou Taylor Pucci,1330984892 +237322,73168,Piper Perabo,1330984924 +237322,73168,post-apocalyptic,1330984862 +237322,73168,predictable,1330985009 +237322,73168,survival,1330984930 +237322,73168,virus,1330985123 +237322,73211,Georgina Reilly,1325458323 +237322,73211,gore,1284846061 +237322,73211,innovative,1284846071 +237322,73211,intense,1284846050 +237322,73211,isolation,1284888726 +237322,73211,language,1325458353 +237322,73211,Lisa Houle,1325458335 +237322,73211,radio station,1284888692 +237322,73211,simple,1325458280 +237322,73211,Stephen McHattie,1325458299 +237322,73211,zombies,1284846078 +237322,73290,dogs,1367228703 +237322,73290,grief,1367228736 +237322,73290,Loyalty,1367228706 +237322,73290,remake,1367228714 +237322,73290,Richard Gere,1367228710 +237322,73321,action,1326399786 +237322,73321,Bible,1326399773 +237322,73321,cannibalism,1326399832 +237322,73321,Christianity,1326399771 +237322,73321,Denzel Washington,1326399775 +237322,73321,dystopia,1326399789 +237322,73321,post-apocalyptic,1326399777 +237322,73321,survival,1326399797 +237322,73321,thought-provoking,1326399780 +237322,73321,visually appealing,1326399825 +237322,73323,corruption,1422810616 +237322,73323,long-winded,1422810610 +237322,73323,Rape,1422810614 +237322,74416,beautifully filmed,1279571083 +237322,74416,british english,1300619511 +237322,74416,coming of age,1417962382 +237322,74416,disturbing,1300619476 +237322,74416,full characters,1300619478 +237322,74416,lower class,1279571146 +237322,74416,social conflicts,1279571092 +237322,74416,tense,1300619484 +237322,74504,Finnish,1281040587 +237322,74530,action,1291150269 +237322,74530,black guy as funny sidekick,1291149914 +237322,74530,cgi,1291149942 +237322,74530,everything located in the USA,1291150398 +237322,74530,fantasy,1291150245 +237322,74530,gods,1291150361 +237322,74530,Greek mythology,1291149705 +237322,74530,hollywood ending,1291150166 +237322,74530,Pierce Brosnan,1291150354 +237322,74530,predictable,1291150135 +237322,74530,slapstick,1291150190 +237322,74530,sword fighting,1291150263 +237322,74530,Uma Thurman,1291150225 +237322,74688,Amanda Seyfried,1341779493 +237322,74688,happy ending,1341779555 +237322,74688,long-distance relationship,1341779528 +237322,74688,nicholas sparks,1341779491 +237322,74688,no complexity,1341779496 +237322,74688,romance,1341779501 +237322,74688,visually appealing,1341779508 +237322,74688,war,1341779541 +237322,76093,dragons,1278957166 +237322,76093,father son conflict,1278957218 +237322,76093,predictable,1278957191 +237322,76093,vikings,1278957178 +237322,77201,beautiful scenery,1332534667 +237322,77201,less than 300 ratings,1332534800 +237322,77201,Mads Mikkelsen,1332534727 +237322,77201,minimal dialogue,1381943642 +237322,77201,no soundtrack,1332534735 +237322,77201,outdoor,1381944002 +237322,77201,stylistic,1332534754 +237322,77201,unpredictable,1332534716 +237322,77201,violence,1332534842 +237322,77201,visually appealing,1332534660 +237322,77359,less than 300 ratings,1287914716 +237322,77561,action,1283618408 +237322,77561,bad plot,1283618437 +237322,77561,based on a comic,1283618444 +237322,77561,Marvel,1283618389 +237322,77561,superhero,1283618395 +237322,77795,Anna-Katharina Schwabroh,1281206470 +237322,77795,Bechdel Test:Pass,1281206791 +237322,77795,German,1281206675 +237322,77795,horror,1281206530 +237322,77795,lengthy,1281206454 +237322,77795,murder,1281206633 +237322,77795,open ending,1281206649 +237322,77795,post-apocalyptic,1281206514 +237322,77795,space travel,1281206483 +237322,78088,claustrophobic,1338651410 +237322,78088,false hope,1338651406 +237322,78088,predictable,1338651371 +237322,78088,Ryan Reynolds,1338651400 +237322,78349,confusing ending,1285611591 +237322,78349,group psychology,1285611557 +237322,78349,isolation,1284825084 +237322,78349,lengthy,1284825132 +237322,78349,mindfuck,1284825099 +237322,78349,violence,1284825090 +237322,78469,cheesy,1283527312 +237322,78469,full of goofs,1283527279 +237322,78469,good casting,1283527298 +237322,78469,Jessica Biel,1278956726 +237322,78469,people actually get hurt from bullets,1283527294 +237322,78893,acting,1283527444 +237322,78893,Avatar trilogy,1283527399 +237322,78893,editing,1283527430 +237322,78893,effects,1283527419 +237322,78893,recreation,1283527423 +237322,79091,animation,1325458022 +237322,79091,flat characters,1325458114 +237322,79091,hilarious,1325458026 +237322,79091,mad scientist,1325458020 +237322,79091,minions,1325458070 +237322,79091,predictable,1325458051 +237322,79132,action,1300649671 +237322,79132,alternate reality,1300649649 +237322,79132,heist,1300649675 +237322,79132,Leonardo DiCaprio,1300649649 +237322,79132,mindfuck,1300649664 +237322,79185,action packed,1292359692 +237322,79185,Cameron Diaz,1292359660 +237322,79185,car chase,1292359736 +237322,79185,comedy,1292359703 +237322,79185,Europe,1292359811 +237322,79185,good versus evil,1292359720 +237322,79185,predictable ending,1292359827 +237322,79185,spy,1292359670 +237322,79185,Tom Cruise,1292359664 +237322,79185,unrealistic,1292359665 +237322,79185,USA,1292359790 +237322,79695,action,1292795197 +237322,79695,action packed,1292795194 +237322,79695,Arnold Schwarzenegger,1292795166 +237322,79695,Jet Li,1292795179 +237322,79695,stylish,1292795271 +237322,79695,Sylvester Stallone,1292795164 +237322,79695,too much action,1292795186 +237322,79884,Christian Ulmen,1282381989 +237322,79884,cliche,1282382115 +237322,79884,countryside,1282382160 +237322,79884,father-daughter relationship,1282382143 +237322,79884,Heinz Hoenig,1282382201 +237322,79884,men-women conflict,1282382050 +237322,79884,Nora Tschirner,1282381996 +237322,79884,nudity (brief),1282382254 +237322,79884,soccer,1282382009 +237322,80162,less than 300 ratings,1288031825 +237322,80162,zombies,1288031819 +237322,80166,divorce,1295464153 +237322,80166,father-son relationship,1295464073 +237322,80166,in vitro fertilization,1295464202 +237322,80166,Jason Bateman,1295464060 +237322,80166,Jennifer Aniston,1295464057 +237322,80166,less than 300 ratings,1295464261 +237322,80166,midlife crisis,1295464171 +237322,80166,New York,1295464212 +237322,80166,predictable ending,1295464094 +237322,80166,relationships,1295464242 +237322,80166,sentimental,1295464140 +237322,80219,action packed,1288473431 +237322,80219,Danny Trejo,1288473439 +237322,80219,gore,1288473477 +237322,80219,Jessica Alba,1288473457 +237322,80219,Michelle Rodriguez,1288473470 +237322,80219,Not very strong ending,1288473486 +237322,80219,Nudity,1288473515 +237322,80219,Steven Seagal,1288996611 +237322,80363,3d,1295543918 +237322,80363,action packed,1295543854 +237322,80363,Airplane,1295543911 +237322,80363,clones,1295543889 +237322,80363,less than 300 ratings,1295543941 +237322,80363,Milla Jovovich,1295543892 +237322,80363,unrealistic,1295543877 +237322,80363,virus,1295543901 +237322,80363,zombies,1295543857 +237322,80775,cheating husband,1294423598 +237322,80775,countryside,1294423589 +237322,80775,England,1294423577 +237322,80775,fanatic fans,1294423642 +237322,80775,good acting,1294423839 +237322,80775,less than 300 ratings,1294423565 +237322,80775,misleading synopsis,1294423799 +237322,80775,rock-star,1294423829 +237322,80775,romantic comedy,1294423862 +237322,80775,writers at work,1294423621 +237322,81229,action,1295425944 +237322,81229,Bruce Willis,1295425912 +237322,81229,CIA comedy,1295425916 +237322,81229,retired spy being hunted,1295425929 +237322,81229,unbelievable,1295425920 +237322,81564,animated,1295554047 +237322,81564,anti-hero,1295554109 +237322,81564,bad to good,1295554066 +237322,81564,evil hero,1295554176 +237322,81564,gadgets,1295554199 +237322,81564,good versus evil,1295554060 +237322,81564,heartwarming,1295554068 +237322,81564,less than 300 ratings,1295546316 +237322,81564,minions,1295554158 +237322,81564,romance,1295554128 +237322,81564,science,1295554115 +237322,81564,superheroes,1295554103 +237322,81784,distracting soundtrack,1334520075 +237322,81784,entertaining,1334520088 +237322,81784,Harrison Ford,1334520064 +237322,81784,plain storyline,1334520122 +237322,81784,predictable,1334520077 +237322,81784,predictable ending,1334520141 +237322,81784,Rachel McAdams,1334520069 +237322,82095,action,1320956084 +237322,82095,Alien Invasion,1320956012 +237322,82095,aliens,1320956010 +237322,82095,CGI,1320956154 +237322,82095,evil ending,1320956079 +237322,82095,lengthy,1320956091 +237322,82095,swaggering,1320956149 +237322,82244,hopelessness,1322934343 +237322,82244,inhuman,1322934289 +237322,82244,Jason Statham,1322934298 +237322,82244,Russian roulette,1322934270 +237322,82244,weak plot,1322934317 +237322,83302,cheating husband,1294423301 +237322,83302,cheating wife,1294423296 +237322,83302,emotional,1294423260 +237322,83302,Eva Mendes,1294423087 +237322,83302,Guillaume Canet,1294423093 +237322,83302,husband-wife relationship,1294423110 +237322,83302,Keira Knightley,1294423064 +237322,83302,less than 300 ratings,1294423336 +237322,83302,open end,1294423211 +237322,83302,Sam Worthington,1294423078 +237322,83302,thought-provoking,1294423275 +237322,83613,action,1369857052 +237322,83613,aliens,1369857043 +237322,83613,cowboys,1369857048 +237322,83613,Daniel Craig,1369857042 +237322,83613,love story,1369857063 +237322,84772,aliens,1305478820 +237322,84772,Atheism,1305478822 +237322,84772,chase,1305478852 +237322,84772,comedy,1305478825 +237322,84772,darwinism vs creationism,1305478933 +237322,84772,geeky,1305478827 +237322,84772,relationships,1305478854 +237322,85412,action,1307016159 +237322,85412,conspiracy,1307016085 +237322,85412,mythology,1307016055 +237322,85412,religion,1307016150 +237322,85412,scandinavia,1307016064 +237322,85412,trolls,1307016128 +237322,85414,intelligent,1338651520 +237322,85414,Jake Gyllenhaal,1338651515 +237322,85414,military,1338651531 +237322,85414,romance,1338651543 +237322,85414,science fiction,1338651517 +237322,85414,time travel,1338651524 +237322,85414,twist ending,1338651522 +237322,85510,abuse,1337067833 +237322,85510,martial arts,1337067770 +237322,85510,mindfuck,1337067765 +237322,85510,nightclub,1337067834 +237322,85510,stylized,1337067774 +237322,85510,Surreal,1337067773 +237322,85510,visually stunning,1337067753 +237322,85885,art,1442769904 +237322,85885,Elena Anaya,1442769770 +237322,85885,emotional,1442770012 +237322,85885,erotic,1442769899 +237322,85885,heart warming,1442769785 +237322,85885,hotel,1442770032 +237322,85885,lesbian,1442769811 +237322,85885,loose love,1442769855 +237322,85885,Natasha Yarovenko,1442769771 +237322,85885,nudity (Full),1442769752 +237322,85885,one single main set,1442769942 +237322,85885,Rome,1442769908 +237322,85885,sex,1442769753 +237322,85885,transience,1442769995 +237322,86332,3d,1304795780 +237322,86332,action,1304795773 +237322,86332,Anthony Hopkins,1304796037 +237322,86332,Chris Hemsworth,1304796028 +237322,86332,father-son relationship,1304795697 +237322,86332,love story,1304795800 +237322,86332,mythology,1304795702 +237322,86332,Natalie Portman,1304796052 +237322,86332,predictable,1304795970 +237322,86332,sibling rivalry,1304795739 +237322,86332,viking's mythology,1304796002 +237322,87306,aliens,1329587394 +237322,87306,child actor,1329587414 +237322,87306,predictable,1329587407 +237322,87306,sci-fi,1329587450 +237322,87306,teen romance,1329587443 +237322,87485,breast implants,1322601471 +237322,87485,Cameron Diaz,1322601455 +237322,87485,drugs,1322601491 +237322,87485,high school,1322601463 +237322,87485,Jason Segel,1322601484 +237322,87485,scatalogical humor,1325459479 +237322,87485,sex jokes,1322601478 +237322,88405,happy ending,1316458417 +237322,88405,love story,1316458419 +237322,88405,predictable,1316458413 +237322,88405,sex,1316458417 +237322,88678,cut-backs,1369765242 +237322,88678,generation gap,1369765166 +237322,88678,German History,1369765286 +237322,88678,German-Turkish relationship,1369764998 +237322,88678,Germany,1369765105 +237322,88678,guest workers,1369764975 +237322,88678,identity of origin,1369765095 +237322,88678,less than 300 ratings,1369765270 +237322,88678,patriarch,1369765142 +237322,88678,road trip,1369765259 +237322,88678,Turkey,1369765105 +237322,88678,Vedat Erincin,1369764928 +237322,88744,action,1327248525 +237322,88744,apes,1327248548 +237322,88744,biology,1327248528 +237322,88744,computer animation,1327248510 +237322,88744,realistic,1327248516 +237322,88744,sci-fi,1327248518 +237322,88744,shooting,1327248521 +237322,88744,thought-provoking,1327248541 +237322,88744,virus,1327248523 +237322,89087,action,1329587488 +237322,89087,assassin,1329587490 +237322,89087,female action star,1329587571 +237322,89087,organized crime,1329587493 +237322,89087,revenge,1329587529 +237322,89087,Zoe Saldana,1329587498 +237322,89535,empty characters,1325458432 +237322,89535,experimental,1325458516 +237322,89535,husband-wife relationship,1325458442 +237322,89535,illegal immigration,1325458447 +237322,89535,no emotional investment,1325458465 +237322,89535,slow,1325458510 +237322,89745,action,1337465007 +237322,89745,aliens always land in the USA only,1337465254 +237322,89745,Gwyneth Paltrow,1337465024 +237322,89745,lengthy,1337465051 +237322,89745,Marvel,1337465039 +237322,89745,Robert Downey Jr.,1337465028 +237322,89745,superhero,1337465084 +237322,89745,USA saves the world again,1337465181 +237322,89745,visually appealing,1337465071 +237322,89837,disturbing,1341778911 +237322,89837,dysfunctional family,1341778991 +237322,89837,excessive violence,1341778952 +237322,89837,horror,1341779034 +237322,89837,incoherent,1341779117 +237322,89837,Michael Smiley,1341779223 +237322,89837,murder,1341778999 +237322,89837,murderer,1341779142 +237322,89837,MyAnna Buring,1341779193 +237322,89837,Neil Maskell,1341779226 +237322,89837,no explanations,1341779084 +237322,89837,wannabe mystery,1341779023 +237322,89837,weak dialogue,1341778903 +237322,89840,action,1342985181 +237322,89840,assassination,1342985311 +237322,89840,doing the right thing,1342985215 +237322,89840,England,1342985245 +237322,89840,Jason Statham,1342985162 +237322,89840,Oman,1342985244 +237322,89840,Robert De Niro,1342985293 +237322,89840,romance,1342985228 +237322,89840,SAS,1342985274 +237322,90647,action packed,1325457514 +237322,90647,animation,1325458146 +237322,90647,annoying villain,1325457444 +237322,90647,Antonio Banderas,1325458150 +237322,90647,cats,1325457309 +237322,90647,fable,1325457328 +237322,90647,Latin America,1325457493 +237322,90647,latin music,1325457507 +237322,90647,parody,1325457548 +237322,90647,romance,1325457460 +237322,90647,Salma Hayek,1325458162 +237322,90647,stylized,1325457368 +237322,90647,visually appealing,1325458205 +237322,91077,cheating wife,1441453542 +237322,91077,coma,1441453516 +237322,91077,emotional,1441453512 +237322,91077,family bonds,1441453511 +237322,91077,George Clooney,1441453489 +237322,91077,Hawaii,1441453509 +237322,91077,intelligent,1441453514 +237322,91077,Shailene Woodley,1441453506 +237322,91077,social commentary,1441453530 +237322,91622,alcoholism,1390151809 +237322,91622,blankness of life,1390151937 +237322,91622,Charlize Theron,1390151805 +237322,91622,dark,1390152128 +237322,91622,depression,1390151949 +237322,91622,Jason Reitman,1390151978 +237322,91622,lost love,1390152099 +237322,91622,Minnesota,1390151827 +237322,91622,open ending,1390151823 +237322,91622,Patrick Wilson,1390152008 +237322,91622,Patton Oswalt,1390151993 +237322,91622,visually appealing,1390152107 +237322,91658,action,1384111956 +237322,91658,atmospheric,1384111952 +237322,91658,based on a book,1384111979 +237322,91658,Daniel Craig,1384111942 +237322,91658,dark,1384111950 +237322,91658,hacking,1384111959 +237322,91658,murder,1384111974 +237322,91658,Nudity (Topless),1384111965 +237322,91658,revenge,1384111971 +237322,91658,serial killer,1384111993 +237322,91658,twist ending,1384112009 +237322,91658,unpredictable,1384112016 +237322,91658,violence,1384112024 +237322,91976,last man standing,1369765416 +237322,91976,Liam Neeson,1369765358 +237322,91976,man vs. nature,1369765363 +237322,91976,open ending,1369765348 +237322,91976,plane crash,1369765331 +237322,91976,unrealistic,1369765335 +237322,91976,wolves,1369765337 +237322,91976,wolves are evil,1369765396 +237322,92152,coming of age,1417962452 +237322,92152,countryside,1385404718 +237322,92152,happy ending,1385404828 +237322,92152,Helene Bergsholm,1385405155 +237322,92152,Henriette Steenstrup,1385405147 +237322,92152,less than 300 ratings,1385404955 +237322,92152,Malin Bjørhovde,1385405164 +237322,92152,masturbation,1385405052 +237322,92152,Matias Myren,1385405174 +237322,92152,mobbing,1385405290 +237322,92152,Norway,1385404753 +237322,92152,Nudity (Brief),1385404792 +237322,92152,porn,1385404700 +237322,92152,puberty,1385404690 +237322,92152,sexuality,1385404662 +237322,92152,visually appealing,1385404668 +237322,92192,aliens,1336223699 +237322,92192,boring,1336223636 +237322,92192,documentary style,1336223688 +237322,92192,moon,1336223653 +237322,92192,predictable,1336223709 +237322,92192,space travel,1336223650 +237322,93363,Action,1349028597 +237322,93363,female warriors,1367772186 +237322,93363,Mars,1349028609 +237322,93363,sci-fi,1349028596 +237322,93805,allusive,1336065595 +237322,93805,extraterrestrial colony,1336065658 +237322,93805,German,1336065490 +237322,93805,mediocre acting,1336065569 +237322,93805,mediocre plot,1336065697 +237322,93805,Nazis,1336065520 +237322,93805,parody,1336065538 +237322,93805,space travel,1336065658 +237322,93805,spaceships,1336065497 +237322,93805,UFOS,1336065492 +237322,93805,unpredictable,1336065534 +237322,93805,unpredictable ending,1336065528 +237322,94810,Alberto Ammann,1386337700 +237322,94810,artificial intelligence,1386337231 +237322,94810,Butler,1386337331 +237322,94810,Claudia Vega,1386337687 +237322,94810,Daniel Brühl,1386337212 +237322,94810,death,1386337329 +237322,94810,holographics,1386337374 +237322,94810,less than 300 ratings,1386337676 +237322,94810,Marta Etura,1386337694 +237322,94810,predictable ending,1386337491 +237322,94810,robots,1386337224 +237322,94810,snow,1386337220 +237322,94810,Soul,1386337286 +237322,94810,thought-provoking,1386337483 +237322,94810,Tragedy,1386337305 +237322,94810,unpredictable,1386337509 +237322,95658,afro-american,1389273628 +237322,95658,Christianity,1389273567 +237322,95658,German,1389273489 +237322,95658,New York City,1389273475 +237322,95658,predictable ending,1389273526 +237322,95658,romance,1389273455 +237322,95658,slow paced,1389273518 +237322,95658,unpredictable plot,1389273595 +237322,96281,animation,1439646488 +237322,96281,fantasy,1439646496 +237322,96281,ghosts,1439646484 +237322,96281,stop motion,1439646483 +237322,96490,divorce,1369764067 +237322,96490,father daughter relationship,1369764079 +237322,96490,horror,1369764027 +237322,96490,Jeffrey Dean Morgan,1369764094 +237322,96490,Jewish mysticism,1369764019 +237322,96490,little girl horror,1369764051 +237322,96490,tragic ending,1369764201 +237322,96490,unfinished,1369764188 +237322,96621,filler between two movies,1347179739 +237322,96621,Luc Besson,1347179834 +237322,96621,No story line,1347179763 +237322,96621,predictable ending,1347179804 +237322,96621,visually appealing,1347179770 +237322,97024,accident,1439646572 +237322,97024,fighting,1439646617 +237322,97024,handicap,1439646551 +237322,97024,Marion Cotillard,1439646532 +237322,97024,Matthias Schoenaerts,1439646544 +237322,97024,Nudity (Topless),1439646557 +237322,97024,romance,1439646562 +237322,97024,slow paced,1439646655 +237322,97024,social commentary,1439646595 +237322,97024,visually stunning,1439646640 +237322,97225,animation,1431202447 +237322,97225,coming of age,1431202475 +237322,97225,monsters,1431202445 +237322,97225,romance,1431202458 +237322,97225,vampires,1431202465 +237322,97923,addiction,1399226620 +237322,97923,airplane,1399226579 +237322,97923,alcoholism,1399226530 +237322,97923,Denzel Washington,1399226524 +237322,97923,flying,1399226560 +237322,97923,great acting,1399226615 +237322,97923,pilot,1399226572 +237322,97923,plane crash,1399226569 +237322,97923,unpredictable ending,1399226606 +237322,98809,epic,1389869928 +237322,98809,fantasy world,1389869935 +237322,98809,fighting,1389869949 +237322,98809,magic,1389869922 +237322,98809,predictable,1389869892 +237322,98809,visually appealing,1389869910 +237322,99145,family,1441453187 +237322,99145,happy end,1441453236 +237322,99145,mother-son relationship,1441453194 +237322,99145,real story,1441453220 +237322,99145,searching,1441453204 +237322,99145,tsunami,1441453177 +237322,101763,Emily Hampshire,1398980182 +237322,101763,happy ending,1398980423 +237322,101763,Jonas Chernick,1398980439 +237322,101763,love,1398980242 +237322,101763,Nudity (Full Frontal),1398980149 +237322,101763,predictable ending,1398980429 +237322,101763,relationships,1398980237 +237322,101763,Sarah Manninen,1398980437 +237322,101763,sex education,1398980410 +237322,101763,sexuality,1398980216 +237322,101763,strippers,1398980305 +237322,101763,tax advisor,1398980374 +237322,101763,visually appealing,1398980314 +237322,101864,aliens,1398982206 +237322,101864,cloning,1398982204 +237322,101864,dystopia,1398982202 +237322,101864,Morgan Freeman,1398982209 +237322,101864,post-apocalyptic,1398982200 +237322,101864,space,1398982219 +237322,101864,technology,1398982220 +237322,101864,Tom Cruise,1398982213 +237322,101864,twists & turns,1398982217 +237322,102125,action,1384111404 +237322,102125,action packed,1384111534 +237322,102125,Gwyneth Paltrow,1384111416 +237322,102125,Marvel,1384111406 +237322,102125,predictable,1384111572 +237322,102125,predictable ending,1384111572 +237322,102125,Robert Downey Jr.,1384111414 +237322,102125,robots,1384111518 +237322,102125,shallow plot,1384111639 +237322,102125,superhero,1384111527 +237322,102125,terrorism,1384111409 +237322,102125,visually appealing,1384111547 +237322,102445,action,1384111775 +237322,102445,adventure,1384111820 +237322,102445,aliens,1384111778 +237322,102445,fast paced,1384111832 +237322,102445,lens flares,1384111784 +237322,102445,predictable,1384111791 +237322,102445,space,1384111816 +237322,102445,space ships,1384111813 +237322,102445,Star Trek,1384111769 +237322,102848,action,1369856144 +237322,102848,armageddon,1369856118 +237322,102848,Cameron Bright,1369856244 +237322,102848,chase,1369856371 +237322,102848,CIA,1369856440 +237322,102848,earth's magnetic field,1369856333 +237322,102848,FBI,1369856438 +237322,102848,Hamza Adam,1369856249 +237322,102848,Julia Benson,1369856399 +237322,102848,less than 300 ratings,1369856315 +237322,102848,logical flaws,1369856162 +237322,102848,predictable ending,1369856136 +237322,102848,satellites,1369856278 +237322,102848,tense,1369856371 +237322,102941,action,1439646151 +237322,102941,Afghanistan,1439646054 +237322,102941,comradeship,1439646147 +237322,102941,death,1439646164 +237322,102941,Diane Kruger,1439646218 +237322,102941,Djimon Hounsou,1439646266 +237322,102941,gun fights,1439646146 +237322,102941,hostage-rescue,1439646104 +237322,102941,hostage-taking,1439646081 +237322,102941,Pakistan,1439646059 +237322,102941,soilders,1439646273 +237322,102941,taliban,1439646174 +237322,102941,war,1439646030 +237322,103228,aliens,1389738767 +237322,103228,giant monster,1389738763 +237322,103228,giant robots,1389738730 +237322,103228,ridiculous,1389738736 +237322,103228,robots,1389738733 +237322,103228,romance,1389738811 +237322,103228,sci-fi,1389738740 +237322,103228,visually appealing,1389738732 +237322,103249,action,1384443977 +237322,103249,Brad Pitt,1384443975 +237322,103249,child actors,1384443984 +237322,103249,globetrotting,1384443981 +237322,103249,Israel,1384444005 +237322,103249,predictable,1384444067 +237322,103249,predictable ending,1384444075 +237322,103249,USA,1384444016 +237322,103249,visually stunning,1384444081 +237322,103249,Wales,1384444027 +237322,103249,zombies,1384443973 +237322,103372,buddy cops,1418405712 +237322,103372,Melissa McCarthy,1418405708 +237322,103372,predictable,1418405723 +237322,103372,Sandra Bullock,1418405696 +237322,104841,escape,1394389998 +237322,104841,George Clooney,1394389948 +237322,104841,realistic,1394389980 +237322,104841,Sandra Bullock,1394389953 +237322,104841,space,1394389960 +237322,104841,visually stunning,1394389968 +237322,105355,Adèle Exarchopoulos,1417961084 +237322,105355,bittersweet,1417961008 +237322,105355,coming of age,1417962395 +237322,105355,drama,1417961110 +237322,105355,homosexuality,1417961026 +237322,105355,Léa Seydoux,1417961075 +237322,105355,lesbian,1417961018 +237322,105355,loneliness,1417961032 +237322,105355,nudity (full frontal),1417961098 +237322,105355,slow,1417961131 +237322,105355,unsimulated sex,1417961062 +237322,105355,visually appealing,1417961024 +237322,105504,believable,1401013382 +237322,105504,great acting,1401013377 +237322,105504,hijacking,1401013248 +237322,105504,navy seals,1401013229 +237322,105504,Piracy,1401013212 +237322,105504,seafaring,1401013197 +237322,105504,tense,1401012885 +237322,105504,tom hanks,1401012883 +237322,105504,true story,1401013258 +237322,105504,violence,1401013348 +237322,105531,autobiography,1381690002 +237322,105531,cats,1381690021 +237322,105531,dog,1381689791 +237322,105531,dog killing,1381689790 +237322,105531,isolation,1381689791 +237322,105531,killing,1381690001 +237322,105531,less than 300 ratings,1381690121 +237322,105531,locked-in,1381689827 +237322,105531,loneliness,1381690068 +237322,105531,man-dog friendship,1381690347 +237322,105531,manslaughter,1381690261 +237322,105531,self-sufficiency,1381689914 +237322,105531,visually stunning,1381690227 +237322,105531,wilderness,1381689836 +237322,105531,woman,1381689840 +237322,105954,Robert Redford,1405270914 +237322,105954,solitude,1405270906 +237322,108932,Batman,1401015336 +237322,108932,breaking the fourth wall,1401015384 +237322,108932,clever,1401015376 +237322,108932,dictatorship,1401015340 +237322,108932,fun,1401015343 +237322,108932,homage,1401015368 +237322,108932,robots,1401015348 +237322,109487,Anne Hathaway,1417961215 +237322,109487,Christopher Nolan,1417961186 +237322,109487,Matthew McConaughey,1417961194 +237322,109487,philosophical issues,1417961237 +237322,109487,predictable ending,1417961471 +237322,109487,relativity,1417961217 +237322,109487,sci-fi,1431202358 +237322,109487,space,1417961201 +237322,109487,space travel,1431202365 +237322,109487,time-travel,1417961203 +237322,109487,unpredictable plot,1417961460 +237322,109487,wasted potential,1417961491 +237322,109487,wormhole,1417961199 +237322,111266,Alina Levshin,1401039665 +237322,111266,Bechdel Test:Pass,1401039764 +237322,111266,character development,1399728116 +237322,111266,Germany,1399728075 +237322,111266,Jella Haase,1401039680 +237322,111266,Neo-Nazis,1399728068 +237322,111266,Nudity (Full Frontal - Brief),1399728160 +237322,111266,racism,1401039894 +237322,111266,Sayed Ahmad,1401039684 +237322,111266,social commentary,1399728130 +237322,111266,too short,1401039645 +237322,111266,violence,1399728170 +237322,111759,action,1441534193 +237322,111759,Alien Invasion,1441534194 +237322,111759,aliens,1441534190 +237322,111759,Emily Blunt,1441534188 +237322,111759,Reluctant Hero,1441534198 +237322,111759,sci-fi,1441534184 +237322,111759,time loop,1441534203 +237322,111759,Tom Cruise,1441534186 +237322,112175,animated,1417961418 +237322,112175,dragons,1417961352 +237322,112175,mother-son relationship,1417961397 +237322,112175,predictable ending,1417961433 +237322,112175,predictable plot,1417961386 +237322,112175,sequel,1417961353 +237322,112175,vikings,1417961408 +237322,112852,Action,1441534133 +237322,112852,adventure,1441534127 +237322,112852,aliens,1441534155 +237322,112852,Marvel,1441534120 +237322,112852,science fiction,1441534142 +237322,112852,space,1441534125 +237322,112852,talking animals,1441534130 +237322,112852,Vin Diesel,1441534146 +237322,115210,american heroism,1441453403 +237322,115210,Brad Pitt,1441453284 +237322,115210,Nazis being dumb,1441453390 +237322,115210,unrealistic,1441453297 +237322,115210,war,1441453285 +237322,115210,war hero,1441453288 +237322,115210,World War II,1441453281 +237322,117545,action,1441453137 +237322,117545,animated,1441453071 +237322,117545,comedy,1441453139 +237322,117545,Julius Caesar,1441453112 +237322,117545,Romans,1441453080 +237322,117545,social commentary,1441453131 +237322,117545,unrealistic,1441453153 +237322,119145,action,1441534354 +237322,119145,british,1441534346 +237322,119145,cheesy end,1441534371 +237322,119145,gentlemanly,1441534343 +237322,119145,Parody,1441534352 +237322,119145,spy,1441534340 +237322,119145,spy gadgets,1441534356 +237322,119145,violent,1441534345 +237322,120466,AI,1439646322 +237322,120466,artificial intelligence,1439646317 +237322,120466,cliche,1439646380 +237322,120466,cyberpunk,1439646351 +237322,120466,die antwoord,1439646326 +237322,120466,Funny,1439646330 +237322,120466,Hugh Jackman,1439646359 +237322,120466,product placement,1439646356 +237322,120466,robots,1439646320 +237322,120466,science fiction,1439646343 +237322,120466,South Africa,1439646324 +237322,120466,thought provoking,1439646373 +237322,120466,violence,1439646348 +237363,260,sci-fi,1442029065 +237363,260,science fantasy,1442029070 +237369,260,Science Fiction,1441296970 +237369,260,space adventure,1441296988 +237375,34,farm tale,1186185739 +237375,34,talking animals,1186185767 +237375,1267,doesn't stand test of time,1163539796 +237375,2764,doesn't stand test of time,1163539759 +237375,6316,Quincy Jones,1144830274 +237375,6787,Nixon,1144830152 +237375,8264,Bouvier Family,1184744634 +237375,8645,"Columbian ""mule"" story",1144623180 +237375,8966,biography,1142140482 +237375,8966,pioneer sex researcher,1142140428 +237375,30898,mid-life love,1142143402 +237375,30898,post-marriage fallout,1142143368 +237375,41997,Israeli/Palestinian conflict,1142141051 +237375,42007,jennifer aniston,1140311680 +237375,42018,English Vaudeville,1138177433 +237375,46976,Charlie Kaufman-esque,1163539998 +237375,47646,can't get past the first 20 min,1167109530 +237375,47646,neo-blaxploitation,1167109591 +237375,56158,African-American family,1196653683 +237375,106782,misogynistic,1388762413 +237375,106782,repetitive,1388729297 +237375,106782,Too similar to The Hangover,1388729351 +237375,106782,unlikeable characters,1388729441 +237380,260,great story,1444848753 +237380,260,sci-fi,1444848765 +237380,260,special effects,1444848762 +237382,82461,epic,1299885844 +237382,82461,futuristic,1299885836 +237382,82461,sci-fi,1299885833 +237382,82461,technology,1299885852 +237382,82461,visually appealing,1299885850 +237386,318,twist ending,1442556546 +237386,2959,dark comedy,1442556604 +237386,2959,twist ending,1442556600 +237386,27773,revenge,1442556671 +237391,260,classic sci-fi,1440371623 +237391,260,starwars,1440371645 +237405,858,Mafia,1290941854 +237405,899,Dance,1290940627 +237405,908,suspense,1290941485 +237405,923,Orson Welles,1290941752 +237405,1069,mystery,1367912892 +237405,1096,mental illness,1367912851 +237405,1254,Humphrey Bogart,1290940673 +237405,1284,Raymond Chandler,1290940529 +237405,1931,Charles Laughton,1290941408 +237405,1945,Marlon Brando,1290941976 +237405,1957,inspirational,1367912810 +237405,2806,high school,1367912762 +237405,2941,oscar (best cinematography),1367913042 +237405,3015,tense,1367913264 +237405,3022,Buster Keaton,1290940411 +237405,3071,inspirational,1367912810 +237405,3088,mental illness,1367912851 +237405,3230,nazis,1367912936 +237405,3427,police,1367913136 +237405,3435,Fred MacMurray,1290940877 +237405,3462,Charlie Chaplin,1290941369 +237405,3505,thriller,1367913330 +237405,3629,Charlie Chaplin,1290941028 +237405,3811,South Africa,1290940789 +237405,4029,ensemble cast,1367912650 +237405,4068,high school,1367912762 +237405,4212,mystery,1367912892 +237405,4251,violent,1367913374 +237405,4300,politics,1367913173 +237405,4336,tense,1367913264 +237405,4347,nazis,1367912936 +237405,4640,violent,1367913375 +237405,4655,politics,1367913173 +237405,4661,thriller,1367913330 +237405,4769,nazis,1367912936 +237405,4969,mystery,1367912893 +237405,5267,inspirational,1367912810 +237405,5434,tense,1367913263 +237405,5564,high school,1367912762 +237405,5585,stupid,1367913229 +237405,5642,police,1367913136 +237405,6185,police,1367913136 +237405,6216,nazis,1367912936 +237405,6260,christianity,1367912589 +237405,6299,oscar (best cinematography),1367913041 +237405,6371,franchise,1367912724 +237405,6630,christianity,1367912589 +237405,6639,tense,1367913264 +237405,6639,thriller,1367913330 +237405,6787,Suspense,1290941701 +237405,6896,nazis,1367912936 +237405,7162,oscar (best cinematography),1367913041 +237405,7223,mystery,1367912892 +237405,7241,nazis,1367912936 +237405,8207,tense,1367913264 +237405,8207,thriller,1367913330 +237405,8477,black and white,1367912562 +237405,26078,politics,1367913173 +237405,26122,dark,1367912607 +237405,26131,Political,1290940498 +237405,26269,father-son relationship,1367912691 +237405,27005,police,1367913135 +237405,30812,mental illness,1367912851 +237405,30846,mental illness,1367912851 +237405,31225,inspirational,1367912810 +237405,38994,nudity (topless - notable),1367913009 +237405,44193,high school,1367912762 +237405,50798,stupid,1367913229 +237405,55363,oscar (best cinematography),1367913041 +237405,55820,Brilliant suspense,1285164977 +237405,55820,great acting,1285164995 +237405,57528,violent,1367913374 +237405,57532,stupid,1367913229 +237405,60943,Suspense,1290941006 +237405,62792,police,1367913136 +237405,62801,father-son relationship,1367912690 +237405,67408,pixar,1367913098 +237405,71264,pixar,1367913097 +237405,74677,politics,1367913173 +237405,78637,franchise,1367912724 +237405,87304,father-son relationship,1367912691 +237405,99114,violent,1367913375 +237430,296,action,1436142924 +237430,296,assassin,1436142928 +237430,296,atmospheric,1436142939 +237430,296,Black comedy,1436142906 +237430,296,bruce willis,1436142913 +237430,296,characters,1436143062 +237430,296,classic,1436142926 +237430,296,comedy,1436142945 +237430,296,cool,1436143010 +237430,296,crime,1436142922 +237430,296,cult,1436143000 +237430,296,cult film,1436142904 +237430,296,dark,1436143016 +237430,296,dark comedy,1436142896 +237430,296,dark humor,1436143002 +237430,296,dialogue,1436142988 +237430,296,drugs,1436142910 +237430,296,ensemble cast,1436143033 +237430,296,entirely dialogue,1436143004 +237430,296,exciting,1436143066 +237430,296,fast paced,1436143068 +237430,296,funny,1436142952 +237430,296,gangster,1436142970 +237430,296,gangsters,1436143029 +237430,296,good dialogue,1436142960 +237430,296,good music,1436143018 +237430,296,great dialogue,1436143006 +237430,296,great soundtrack,1436142958 +237430,296,gritty,1436143073 +237430,296,hit men,1436142983 +237430,296,imdb top 250,1436142950 +237430,296,intelligent,1436143022 +237430,296,John Travolta,1436142943 +237430,296,Mafia,1436142979 +237430,296,masterpiece,1436142930 +237430,296,multiple storylines,1436142902 +237430,296,noir,1436143027 +237430,296,non-linear,1436142937 +237430,296,nonlinear,1436142898 +237430,296,notable soundtrack,1436142954 +237430,296,organized crime,1436142914 +237430,296,Quentin Tarantino,1436142894 +237430,296,quirky,1436142919 +237430,296,Quotable,1436143056 +237430,296,rape,1436142997 +237430,296,retro,1436143077 +237430,296,Samuel L. Jackson,1436142900 +237430,296,soundtrack,1436143057 +237430,296,storytelling,1436142935 +237430,296,stylish,1436143013 +237430,296,stylized,1436142917 +237430,296,Tarantino,1436142932 +237430,296,thriller,1436143020 +237430,296,Uma Thurman,1436142948 +237430,296,violence,1436142908 +237430,296,violent,1436142941 +237430,296,witty,1436143060 +237430,750,black comedy,1436144586 +237430,750,dark comedy,1436144584 +237430,750,Quirky,1436144591 +237430,750,satire,1436144582 +237430,750,satirical,1436144589 +237430,750,Stanley Kubrick,1436144580 +237430,1208,classic,1436144627 +237430,1208,Dark,1436144625 +237430,1208,disturbing,1436144623 +237430,1208,gore,1436144635 +237430,1208,psychological,1436144633 +237430,1208,surreal,1436144621 +237430,1208,violent,1436144630 +237430,1215,anti-hero,1436141840 +237430,1215,black comedy,1436141728 +237430,1215,bruce campbell,1436141735 +237430,1215,campy,1436141726 +237430,1215,Chainsaw,1436141846 +237430,1215,claymation,1436141831 +237430,1215,comedy,1436141731 +237430,1215,cult classic,1436141724 +237430,1215,cult film,1436141828 +237430,1215,dark humor,1436141823 +237430,1215,demons,1436141843 +237430,1215,fantasy,1436141844 +237430,1215,horror,1436141834 +237430,1215,Sam Raimi,1436141826 +237430,1215,satirical,1436141733 +237430,1215,TIME TRAVEL,1436141723 +237430,1215,zombie,1436141838 +237430,1215,zombies,1436141836 +237430,1247,1960s,1436142080 +237430,1247,adultery,1436142083 +237430,1247,Anne Bancroft,1436142087 +237430,1247,classic,1436142030 +237430,1247,coming of age,1436142012 +237430,1247,Dustin Hoffman,1436142037 +237430,1247,notable soundtrack,1436142032 +237430,1247,quirky,1436142070 +237430,1247,satirical,1436142040 +237430,1247,suburbia,1436142061 +237430,1261,black comedy,1436141643 +237430,1261,Bruce Campbell,1436141629 +237430,1261,campy,1436141662 +237430,1261,cult classic,1436141641 +237430,1261,cult film,1436141633 +237430,1261,dark comedy,1436141661 +237430,1261,dark humor,1436141631 +237430,1261,demons,1436141648 +237430,1261,gore,1436141667 +237430,1261,gratuitous violence,1436141669 +237430,1261,horror,1436141656 +237430,1261,humorous,1436141650 +237430,1261,possession,1436141665 +237430,1261,Sam Raimi,1436141659 +237430,1261,splatter,1436141653 +237430,1261,zombies,1436141634 +237430,1732,black comedy,1436142805 +237430,1732,bowling,1436142802 +237430,1732,coen brothers,1436142796 +237430,1732,comedy,1436142813 +237430,1732,crime,1436142853 +237430,1732,Cult classic,1436142845 +237430,1732,cult film,1436142800 +237430,1732,dark comedy,1436142798 +237430,1732,drugs,1436142836 +237430,1732,funny,1436142855 +237430,1732,great dialogue,1436142837 +237430,1732,great soundtrack,1436142839 +237430,1732,Jeff Bridges,1436142816 +237430,1732,John Goodman,1436142848 +237430,1732,Julianne Moore,1436142858 +237430,1732,marijuana,1436142834 +237430,1732,Nudity (Full Frontal),1436142842 +237430,1732,off-beat comedy,1436142844 +237430,1732,Philip Seymour Hoffman,1436142832 +237430,1732,quirky,1436142809 +237430,1732,satirical,1436142807 +237430,1732,Steve Buscemi,1436142850 +237430,1732,violence,1436142852 +237430,2791,absurd,1436144430 +237430,2791,AFI 100 (Laughs),1436144452 +237430,2791,AFI 100 (Movie Quotes),1436144448 +237430,2791,airport,1436144454 +237430,2791,aviation,1436144434 +237430,2791,classic,1436144437 +237430,2791,comedy,1436144443 +237430,2791,David Zucker,1436144456 +237430,2791,farce,1436144446 +237430,2791,funny,1436144450 +237430,2791,Jerry Zucker,1436144458 +237430,2791,Leslie Nielsen,1436144432 +237430,2791,Parody,1436144428 +237430,2791,Slapstick,1436144438 +237430,2791,spoof,1436144441 +237430,3535,1980s,1436142494 +237430,3535,based on a book,1436142479 +237430,3535,business,1436142485 +237430,3535,Christian Bale,1436142461 +237430,3535,comical violence,1436142502 +237430,3535,dark comedy,1436142469 +237430,3535,Disturbing,1436142483 +237430,3535,funny,1436142471 +237430,3535,grim,1436142504 +237430,3535,humorous,1436142465 +237430,3535,insanity,1436142459 +237430,3535,murder,1436142497 +237430,3535,new york,1436142481 +237430,3535,Nudity (Topless),1436142491 +237430,3535,psychological,1436142474 +237430,3535,psychology,1436142457 +237430,3535,Reese Witherspoon,1436142499 +237430,3535,serial killer,1436142463 +237430,3535,violence,1436142467 +237430,3535,yuppies,1436142487 +237430,4105,black comedy,1436141403 +237430,4105,bruce campbell,1436141569 +237430,4105,campy,1436141367 +237430,4105,controversial,1436141418 +237430,4105,cult classic,1436141407 +237430,4105,cult film,1436141359 +237430,4105,dark humor,1436141348 +237430,4105,demons,1436141587 +237430,4105,directorial debut,1436141602 +237430,4105,isolation,1436141604 +237430,4105,low budget,1436141595 +237430,4105,rape,1436141590 +237430,4105,splatter,1436141600 +237430,4105,wilderness,1436141606 +237430,4105,zombies,1436141584 +237430,4649,goofy,1436142567 +237430,4649,irreverent,1436142578 +237430,4649,satirical,1436142565 +237430,4649,silly,1436142569 +237430,68157,Adolf Hitler,1436143164 +237430,68157,alternate history,1436143134 +237430,68157,assassination,1436143166 +237430,68157,Bechdel Test:Fail,1436143239 +237430,68157,black comedy,1436143121 +237430,68157,Brad Pitt,1436143110 +237430,68157,Christoph Waltz,1436143126 +237430,68157,dark comedy,1436143127 +237430,68157,Dead Nazis,1436143185 +237430,68157,dialogue,1436143144 +237430,68157,Diane Kruger,1436143190 +237430,68157,Eli Roth,1436143202 +237430,68157,ending,1436143233 +237430,68157,French,1436143198 +237430,68157,German,1436143241 +237430,68157,gore,1436143142 +237430,68157,graphic,1436143243 +237430,68157,gratuitous violence,1436143158 +237430,68157,great acting,1436143173 +237430,68157,great soundtrack,1436143138 +237430,68157,IMDB Top 250,1436143187 +237430,68157,insults audience's intelligence,1436143253 +237430,68157,jews,1436143210 +237430,68157,long,1436143255 +237430,68157,Mélanie Laurent,1436143212 +237430,68157,Michael Fassbender,1436143220 +237430,68157,Nazis,1436143123 +237430,68157,Oscar (Best Supporting Actor),1436143207 +237430,68157,Paris,1436143176 +237430,68157,Quentin Tarantino,1436143108 +237430,68157,random unnecessary close-ups of cream,1436143215 +237430,68157,revenge,1436143152 +237430,68157,satire,1436143115 +237430,68157,slow paced,1436143193 +237430,68157,soundtrack,1436143228 +237430,68157,tarantino,1436143231 +237430,68157,tense,1436143132 +237430,68157,too long,1436143227 +237430,68157,torture,1436143217 +237430,68157,twist ending,1436143235 +237430,68157,unusual plot structure,1436143156 +237430,68157,vengeance,1436143179 +237430,68157,violence,1436143119 +237430,68157,visually appealing,1436143129 +237430,68157,war,1436143195 +237430,68157,World War II,1436143112 +237430,68952,Alison Lohman,1436144027 +237430,68952,annoying characters,1436144051 +237430,68952,cat killing,1436144031 +237430,68952,curse,1436144056 +237430,68952,Edge of your seat,1436144046 +237430,68952,funny,1436144023 +237430,68952,horror,1436144042 +237430,68952,Justin Long,1436144044 +237430,68952,occult,1436144049 +237430,68952,old school horror,1436144025 +237430,68952,poor acting,1436144040 +237430,68952,Sam Raimi,1436144019 +237430,68952,stupid ending,1436144039 +237430,68952,tongue-in-cheek,1436144021 +237430,99114,19th century,1436143317 +237430,99114,action,1436143335 +237430,99114,bad ass,1436143362 +237430,99114,BOUNTY HUNTERS,1436143331 +237430,99114,brutal,1436143311 +237430,99114,Christoph Waltz,1436143283 +237430,99114,Don Johnson,1436143351 +237430,99114,drama,1436143341 +237430,99114,epic,1436143353 +237430,99114,Flashbacks,1436143338 +237430,99114,funny,1436143285 +237430,99114,good soundtrack,1436143324 +237430,99114,Great performances,1436143298 +237430,99114,Humour,1436143326 +237430,99114,imdb top 250,1436143357 +237430,99114,Jamie Foxx,1436143302 +237430,99114,Jonah Hill,1436143319 +237430,99114,ku klux klan,1436143343 +237430,99114,Leonardo DiCaprio,1436143274 +237430,99114,long,1436143354 +237430,99114,murder,1436143349 +237430,99114,music,1436143345 +237430,99114,Over the top,1436143313 +237430,99114,profanity,1436143359 +237430,99114,Quentin Tarantino,1436143272 +237430,99114,racism,1436143333 +237430,99114,Revenge,1436143280 +237430,99114,Samuel L. Jackson,1436143278 +237430,99114,slavery,1436143288 +237430,99114,Soundtrack,1436143315 +237430,99114,Spaghetti Western,1436143291 +237430,99114,too long,1436143328 +237430,99114,violence,1436143276 +237430,99114,violent,1436143306 +237430,99114,visually appealing,1436143309 +237430,99114,western,1436143293 +237430,112450,David Wain,1436142612 +237430,112450,Original,1436142614 +237430,112450,parody,1436142611 +237460,32,time travel,1330729066 +237460,1232,dystopia,1330728995 +237460,1232,sci-fi,1330728999 +237460,6283,anime,1330729076 +237460,8477,post-apocalyptic,1330729012 +237460,8914,Complicated,1330729092 +237460,34405,space,1330729022 +237460,68237,psychology,1330729007 +237460,70286,social commentary,1330729047 +237478,1429,Martial Arts,1224748244 +237495,3578,historical,1440315864 +237495,3578,history,1440315870 +237495,45722,Johnny Depp,1440315833 +237495,127098,comedy,1440315907 +237495,127098,stand-up comedy,1440315903 +237506,14,based on a true story,1400031582 +237506,14,biographical,1400031626 +237506,14,Oliver Stone,1400031626 +237506,14,politics,1400031573 +237506,16,Martin Scorsese,1396421570 +237506,32,atmospheric,1396420244 +237506,32,psychology,1396420239 +237506,32,time travel,1396420234 +237506,70,cult film,1399520203 +237506,70,Quentin Tarantino,1399520198 +237506,70,twist ending,1399520209 +237506,111,psychology,1396421709 +237506,111,social commentary,1396421705 +237506,162,artist mind,1399434489 +237506,162,counterculture,1399434489 +237506,296,cult film,1396417177 +237506,296,dark comedy,1396420678 +237506,296,nonlinear,1396417182 +237506,296,Quentin Tarantino,1396417172 +237506,318,psychology,1396416683 +237506,319,Danny Boyle,1399433199 +237506,319,dark humor,1399433198 +237506,541,based on a book,1396417252 +237506,541,cyberpunk,1396417242 +237506,541,dystopia,1396417247 +237506,608,Coen Brothers,1396417320 +237506,608,dark comedy,1396417324 +237506,674,adapted from:comic,1401509773 +237506,674,comic book,1401509765 +237506,674,cult film,1401509628 +237506,674,fantasy,1401509807 +237506,674,Jane Fonda,1401509695 +237506,674,Nudity,1401509695 +237506,674,Nudity (Topless - Brief),1401509633 +237506,674,pop culture,1401509845 +237506,674,Sexual Humor,1401509712 +237506,674,visually appealing,1401509819 +237506,714,allegorical,1400033949 +237506,714,atmospheric,1400033629 +237506,714,beautiful,1400033720 +237506,714,cult film,1400034240 +237506,714,dreamlike,1400033738 +237506,714,enigmatic,1400033738 +237506,714,interesting characters,1400034099 +237506,714,irony,1400034117 +237506,714,Jim Jarmusch,1400033766 +237506,714,life & death,1400034289 +237506,714,love affair,1400034417 +237506,714,melancholy,1400033778 +237506,714,native american,1400033842 +237506,714,poetry,1400033842 +237506,714,quirky,1400033633 +237506,714,road trip,1400033789 +237506,714,social commentary,1400033909 +237506,714,spiritual journey,1400033870 +237506,714,spirituality,1400033870 +237506,714,surreal,1400033625 +237506,714,visually appealing,1400033800 +237506,714,western,1400034147 +237506,750,dark comedy,1396416813 +237506,778,cult film,1396421779 +237506,778,dark comedy,1396421775 +237506,778,social commentary,1396421770 +237506,784,black comedy,1399520161 +237506,904,Alfred Hitchcock,1396416759 +237506,904,suspense,1396416766 +237506,908,Alfred Hitchcock,1396416835 +237506,913,atmospheric,1396417121 +237506,1032,based on a book,1400031536 +237506,1032,surreal,1400031531 +237506,1032,surrealism,1400031527 +237506,1037,cyberpunk,1403410883 +237506,1037,virtual reality,1403410887 +237506,1042,music,1403410865 +237506,1042,musicians,1403410870 +237506,1092,Erotic,1400034843 +237506,1092,Notable Nudity,1400034865 +237506,1092,Nudity (Full Frontal),1400034865 +237506,1092,Nudity (Topless - Notable),1400034880 +237506,1092,sex,1400034896 +237506,1092,Sharon Stone,1400034906 +237506,1092,suspense,1400034921 +237506,1092,thriller,1400034920 +237506,1093,rock and roll,1399434205 +237506,1120,biographical,1399434017 +237506,1120,freedom of expression,1399434017 +237506,1120,Milos Forman,1399434039 +237506,1120,Nudity (Full Frontal - Notable),1399434039 +237506,1136,cult film,1396417089 +237506,1136,Monty Python,1396417085 +237506,1136,satire,1396417094 +237506,1172,reflective,1396417269 +237506,1206,atmospheric,1396420215 +237506,1206,psychology,1396420205 +237506,1206,social commentary,1396420200 +237506,1207,social commentary,1396416955 +237506,1208,Vietnam war,1396420926 +237506,1210,fantasy,1400031315 +237506,1210,sci-fi,1400031320 +237506,1215,black comedy,1399690193 +237506,1215,cult film,1399690158 +237506,1215,satirical,1399690193 +237506,1219,Alfred Hitchcock,1400014399 +237506,1219,psychology,1400014403 +237506,1219,suspense,1400014409 +237506,1220,music,1396421495 +237506,1220,musicians,1396421495 +237506,1220,notable soundtrack,1396421495 +237506,1220,road trip,1396421445 +237506,1222,anti-war,1399743788 +237506,1222,Stanley Kubrick,1396421848 +237506,1222,Vietnam War,1396421852 +237506,1225,biographical,1399432339 +237506,1225,Milos Forman,1399432339 +237506,1225,music,1399432339 +237506,1230,intellectual,1399432872 +237506,1230,irony,1399432904 +237506,1230,quirky,1399432837 +237506,1230,thought-provoking,1399432872 +237506,1230,witty,1399432887 +237506,1230,Woody Allen,1396421750 +237506,1235,cult film,1396421645 +237506,1235,dark comedy,1396421636 +237506,1235,quirky,1396421640 +237506,1253,sci-fi,1396420269 +237506,1253,science fiction,1396420643 +237506,1265,Fantasy,1399684619 +237506,1265,time loop,1399684657 +237506,1266,Clint Eastwood,1400034696 +237506,1266,Gene Hackman,1400034684 +237506,1266,Morgan Freeman,1400034667 +237506,1266,western,1400034721 +237506,1270,fantasy,1396417680 +237506,1270,time travel,1396417685 +237506,1273,stylized,1399691649 +237506,1275,immortality,1399690056 +237506,1275,modern fantasy,1399690108 +237506,1275,Sean Connery,1399690062 +237506,1275,sword fight,1399690050 +237506,1278,farce,1399692033 +237506,1278,Mel Brooks,1399692033 +237506,1278,parody,1399691979 +237506,1278,satire,1399692061 +237506,1278,witty,1399692043 +237506,1282,2D animation,1399432536 +237506,1282,animation,1399432491 +237506,1282,artistic,1399432536 +237506,1282,surreal,1399432485 +237506,1298,animation,1399431145 +237506,1298,anti-authoritarian,1399431324 +237506,1298,artistic,1399431145 +237506,1298,cult film,1399431145 +237506,1298,history,1399431269 +237506,1298,loneliness,1399431176 +237506,1298,music,1399431117 +237506,1298,Pink Floyd,1399431209 +237506,1298,psychedelic,1399431176 +237506,1298,psychology,1399431242 +237506,1298,rock and roll,1399431176 +237506,1298,social commentary,1399431185 +237506,1298,surreal,1399431194 +237506,1333,Alfred Hitchcock,1396421613 +237506,1333,suspense,1396421618 +237506,1339,based on a book,1400014556 +237506,1339,vampires,1400014549 +237506,1394,Coen Brothers,1396421810 +237506,1394,cult film,1396421820 +237506,1394,quirky,1396421816 +237506,1584,based on a book,1400378241 +237506,1584,sci-fi,1400378248 +237506,1627,Oliver Stone,1399432989 +237506,1641,British,1399520004 +237506,1641,working class,1399520010 +237506,1674,Character study,1400295775 +237506,1674,compassionate,1400296317 +237506,1674,crime,1400296170 +237506,1674,culture shock,1400295859 +237506,1674,drama,1400296214 +237506,1674,intercultural relationship,1400296260 +237506,1674,murder,1400296283 +237506,1674,Nudity (Topless - Notable),1400295775 +237506,1674,Nudity (Topless),1400296294 +237506,1674,police investigation,1400295806 +237506,1674,religion,1400296170 +237506,1674,romance,1400296170 +237506,1674,suspense,1400296170 +237506,1674,thriller,1400296214 +237506,1674,visually appealing,1400296214 +237506,1711,adapted from:book,1400035250 +237506,1711,based on a book,1400035205 +237506,1711,Clint Eastwood,1400035228 +237506,1711,mystery,1400035250 +237506,1711,Southern United States,1400035269 +237506,1732,Coen Brothers,1396421675 +237506,1732,dark comedy,1396421680 +237506,1732,quirky,1396421684 +237506,1772,Dan Aykroyd,1400032493 +237506,1772,music,1400032439 +237506,1772,musicians,1400032460 +237506,1772,rhythm & blues,1400032501 +237506,1784,Helen Hunt,1401508632 +237506,1784,Jack Nicholson,1401508632 +237506,1784,psychological,1401508583 +237506,1784,psychology,1401508577 +237506,1784,quirky,1401508587 +237506,1844,Nudity (Topless),1400124185 +237506,1844,Pedro Almodóvar,1400124170 +237506,1844,psychology,1400124193 +237506,1884,drugs,1396421550 +237506,1884,hallucinatory,1399684454 +237506,1884,Hunter S. Thompson,1399684416 +237506,1884,journalism,1399684470 +237506,1884,road trip,1399684447 +237506,1884,Terry Gilliam,1399684425 +237506,1921,atmospheric,1396420196 +237506,1921,psychology,1396420190 +237506,2010,dystopia,1396421583 +237506,2010,Fritz Lang,1399740071 +237506,2010,German expressionism,1399740016 +237506,2010,science fiction,1399740071 +237506,2011,fantasy,1399689587 +237506,2011,sci-fi,1399689572 +237506,2011,time travel,1399689581 +237506,2012,fantasy,1400031282 +237506,2012,time travel,1400031287 +237506,2022,based on a book,1400032395 +237506,2022,Martin Scorsese,1400032398 +237506,2184,Alfred Hitchcock,1399433947 +237506,2184,black comedy,1399433963 +237506,2184,dark comedy,1399433968 +237506,2291,dark comedy,1396419845 +237506,2291,fantasy,1396419845 +237506,2291,gothic,1396419845 +237506,2291,loneliness,1396419845 +237506,2291,quirky,1396419845 +237506,2291,surreal,1396419845 +237506,2391,drama,1399683550 +237506,2391,morality,1399683599 +237506,2391,psychology,1399683625 +237506,2391,Sam Raimi,1399683517 +237506,2391,suspense,1399683679 +237506,2467,adapted from:book,1400032244 +237506,2467,amateur detective,1400032243 +237506,2467,based on a book,1400032207 +237506,2467,censorship,1400032266 +237506,2467,inquisition,1400032266 +237506,2467,investigation,1400032287 +237506,2467,medieval,1400032211 +237506,2467,Nudity (Full Frontal - Notable),1400032287 +237506,2467,Nudity (Topless),1400032299 +237506,2467,rated-R,1400032309 +237506,2467,Sean Connery,1400032217 +237506,2513,adapted from:book,1403411148 +237506,2513,author:Stephen King,1403411176 +237506,2513,cult movie,1403411147 +237506,2513,tense,1403411176 +237506,2529,post-apocalyptic,1400031451 +237506,2571,post-apocalyptic,1396416926 +237506,2571,sci-fi,1396416931 +237506,2686,multiple storylines,1400036837 +237506,2686,music,1400036843 +237506,2712,atmospheric,1396419455 +237506,2712,disturbing,1396419454 +237506,2712,dreamlike,1396419454 +237506,2712,Nudity (Full Frontal - Notable),1396419455 +237506,2712,psychological,1396419454 +237506,2712,Stanley Kubrick,1396416723 +237506,2712,surreal,1396419454 +237506,2712,thriller,1396419454 +237506,2730,Stanley Kubrick,1396421520 +237506,2745,Golden Palm,1403411094 +237506,2762,Atmospheric,1396417631 +237506,2762,psychological,1396417625 +237506,2762,twist ending,1396417620 +237506,2857,Beatles,1396416705 +237506,2857,rock and roll,1396416664 +237506,2857,surreal,1396416673 +237506,2858,dark comedy,1396417062 +237506,2858,loneliness,1396418069 +237506,2858,reflective,1396418069 +237506,2858,social commentary,1396417057 +237506,2858,surrealism,1396418069 +237506,2858,thought-provoking,1396418069 +237506,2863,1960s,1400032126 +237506,2863,Beatles,1400032074 +237506,2863,british comedy,1400032127 +237506,2863,England,1400032127 +237506,2863,musicians,1400032126 +237506,2863,quirky,1400032069 +237506,2863,rock and roll,1400032078 +237506,2863,The Beatles,1400032140 +237506,2877,rock and roll,1401508712 +237506,2877,Rock Opera,1401508751 +237506,2946,Beatles,1399692233 +237506,2946,British,1399692334 +237506,2946,cult film,1399692335 +237506,2946,music,1399692334 +237506,2946,music:Rock and Roll (The Beatles),1399692267 +237506,2946,The Beatles,1399692228 +237506,2959,surreal,1396416865 +237506,2966,David Lynch,1400031984 +237506,2997,black comedy,1396419946 +237506,2997,Charlie Kaufman,1396419947 +237506,2997,cult film,1396419947 +237506,2997,dark comedy,1396419947 +237506,2997,off-beat comedy,1396419946 +237506,2997,psychology,1396419947 +237506,2997,quirky,1396419947 +237506,2997,sci-fi,1396419946 +237506,2997,surreal,1396419947 +237506,2997,surrealism,1396419946 +237506,2997,thought-provoking,1396419947 +237506,2997,twist ending,1396419946 +237506,2997,whimsical,1396419946 +237506,3129,jazz,1400037150 +237506,3129,music,1400037178 +237506,3129,musicians,1400037122 +237506,3129,Uma Thurman,1400037126 +237506,3129,Woody Allen,1400037130 +237506,3156,Robin Williams,1403411066 +237506,3156,robots,1403411053 +237506,3156,sci-fi,1403411059 +237506,3186,psychology,1400035134 +237506,3249,Nudity (Topless - Brief),1400031924 +237506,3249,thriller,1400031900 +237506,3371,Folk,1422837753 +237506,3371,Hal Ashby,1422837725 +237506,3371,Music,1422837760 +237506,3371,Woody Guthrie,1422837743 +237506,3386,courtroom,1399689882 +237506,3386,Oliver Stone,1399689882 +237506,3386,politics,1399689882 +237506,3386,true story,1399689915 +237506,3408,social commentary,1396417796 +237506,3418,road trip,1399689795 +237506,3462,social commentary,1396417144 +237506,3471,extraterrestrial life,1399743724 +237506,3471,first contact,1399743428 +237506,3471,mind,1399743582 +237506,3471,music,1399743504 +237506,3471,parapsychology,1399743581 +237506,3521,humorous,1399691680 +237506,3521,quirky,1399691685 +237506,3910,disturbing,1396423275 +237506,3910,social criticism,1399432610 +237506,3920,Wim Wenders,1399434224 +237506,3993,freedom of expression,1403412039 +237506,3993,Kate Winslet,1403412017 +237506,3993,morality,1403412071 +237506,3993,Nudity (Topless - Notable),1403412029 +237506,3993,Nudity (Topless),1403412017 +237506,4027,1930s,1399433472 +237506,4027,adapted from:book,1399433460 +237506,4027,based on a book,1399433460 +237506,4027,Coen Brothers,1396421721 +237506,4027,great soundtrack,1399433460 +237506,4027,quirky,1399433460 +237506,4681,Danny DeVito,1400031837 +237506,4681,Nudity (Topless - Brief),1400031831 +237506,4720,dark,1401508237 +237506,4720,gothic,1401508298 +237506,4720,Nicole Kidman,1401508371 +237506,4720,supernatural,1401508298 +237506,4865,adapted from:comic,1399434181 +237506,4865,Atmospheric,1399434057 +237506,4865,comic book,1399434097 +237506,4865,England,1399434160 +237506,4865,gothic,1399434097 +237506,4865,mystery,1399434097 +237506,4865,Nudity (Full Frontal),1399434113 +237506,4865,Nudity (Topless),1399434114 +237506,4865,psychology,1399434135 +237506,4865,thriller,1399434135 +237506,4973,atmospheric,1399739719 +237506,4973,beautifully filmed,1399739748 +237506,4973,cult film,1399739748 +237506,4973,fairy tale,1399739767 +237506,4973,imagination,1399739767 +237506,4973,quirky,1399739714 +237506,4973,stylized,1399739784 +237506,4973,visually appealing,1399739784 +237506,4993,fantasy,1396417215 +237506,5225,beautiful,1396418936 +237506,5225,Nudity (Full Frontal - Notable),1396418937 +237506,5225,Nudity (Full Frontal),1396418936 +237506,5225,Nudity (Topless),1396418936 +237506,5225,road trip,1396418936 +237506,5225,Spanish,1396418936 +237506,5225,witty,1396418937 +237506,5445,adapted from:book,1399691311 +237506,5445,based on a book,1399691361 +237506,5445,dystopia,1399691311 +237506,5445,future,1399691336 +237506,5445,Philip K. Dick,1399691336 +237506,5445,sci-fi,1399691273 +237506,5475,based on a true story,1399737869 +237506,5475,Costa-Gavras,1399737909 +237506,5475,Oscar (Best Foreign Language Film),1399737944 +237506,5475,politics,1399737860 +237506,5475,thriller,1399737909 +237506,5617,black comedy,1396420611 +237506,5617,dark comedy,1396420414 +237506,5617,erotic,1396420610 +237506,5617,Nudity (Full Frontal),1396420611 +237506,5617,Nudity (Topless - Notable),1396420611 +237506,5617,quirky,1396420421 +237506,5617,sex,1396420611 +237506,5618,fantasy,1396416887 +237506,5618,surreal,1396416893 +237506,5791,surrealism,1396423242 +237506,5878,Almodovar,1396419543 +237506,5878,compassionate,1396419543 +237506,5878,friendship,1396419543 +237506,5878,loneliness,1396419009 +237506,5878,Pedro Almodovar,1396419544 +237506,5878,psychology,1396419015 +237506,5878,Spanish,1396419543 +237506,5971,Studio Ghibli,1396417156 +237506,6016,Brazil,1396419304 +237506,6016,multiple storylines,1396416780 +237506,6016,social commentary,1396419077 +237506,6016,South America,1396419354 +237506,6016,stylized,1396419366 +237506,6440,Coen Brothers,1396419025 +237506,6440,enigmatic,1396419152 +237506,6440,hallucinatory,1396419152 +237506,6440,John Goodman,1396419152 +237506,6440,quirky,1396419047 +237506,6440,writers,1396419152 +237506,6440,writing,1396419152 +237506,6502,British,1399683841 +237506,6502,post-apocalyptic,1399683841 +237506,6620,artistic,1396418824 +237506,6620,comic books,1396418823 +237506,6620,Paul Giamatti,1396418823 +237506,6620,weird,1396418824 +237506,6711,atmospheric,1396417763 +237506,6711,Bill Murray,1396417756 +237506,6711,complex characters,1399742842 +237506,6711,deep meaning,1399743122 +237506,6711,friendship,1396417751 +237506,6711,isolation,1399742856 +237506,6711,Japan,1399742894 +237506,6711,loneliness,1399742856 +237506,6711,lyrical,1399742869 +237506,6711,Scarlett Johansson,1399742824 +237506,6711,self discovery,1399743085 +237506,6711,Sofia Coppola,1399743291 +237506,6711,Tokyo,1399742893 +237506,6711,visually appealing,1399743280 +237506,6787,Suspense,1396423213 +237506,6807,Monty Python,1396417736 +237506,6863,music,1400037401 +237506,6863,rock and roll,1400037406 +237506,6870,Clint Eastwood,1396419690 +237506,6874,kung fu,1396419998 +237506,6874,martial arts,1396419646 +237506,6874,Quentin Tarantino,1396419640 +237506,7147,fantasy,1400031404 +237506,7147,quirky,1400031410 +237506,7254,alternate reality,1399433703 +237506,7254,sci-fi,1399433703 +237506,7254,time travel,1399433653 +237506,7323,German,1399431955 +237506,7323,idealism,1399431966 +237506,7323,irony,1399431915 +237506,7361,alternate reality,1396417309 +237506,7361,fantasy,1396417306 +237506,7361,surreal,1396417312 +237506,7371,artsy,1399691123 +237506,7371,disturbing,1399691123 +237506,7371,experimental,1399691123 +237506,7419,black comedy,1399691712 +237506,7419,dark comedy,1399691705 +237506,7419,Martin Scorsese,1399691768 +237506,7419,New York City,1399691768 +237506,7419,Nudity (Topless),1399691802 +237506,8154,Anita Ekberg,1400032920 +237506,8154,cynical,1400032920 +237506,8154,Federico Fellini,1400032920 +237506,8154,Golden Palm,1400032934 +237506,8154,Italian,1400032935 +237506,8154,morality,1400033022 +237506,8154,Nino Rota,1400032956 +237506,8154,Palme d'Or,1400032956 +237506,8154,sexy,1400032980 +237506,8154,social commentary,1400033041 +237506,8507,atmospheric,1401510023 +237506,8507,circus,1401510073 +237506,8507,cult film,1401510012 +237506,8507,strange,1401510073 +237506,8507,surreal,1401510018 +237506,8507,suspense,1401510110 +237506,8622,anti-war,1401509186 +237506,8622,controversial,1401509170 +237506,8622,politics,1401509098 +237506,8622,satire,1401509170 +237506,8622,social commentary,1401509093 +237506,8783,M. Night Shyamalan,1399430693 +237506,8783,suspense,1399430629 +237506,8783,thought-provoking,1399430677 +237506,8783,twist ending,1399430616 +237506,8873,based on a book,1396420760 +237506,8873,road movie,1396420738 +237506,8873,road trip,1396420729 +237506,8873,social commentary,1396420463 +237506,8873,South America,1396420722 +237506,8949,adapted from:book,1396418734 +237506,8949,based on a book,1396418734 +237506,8949,dark comedy,1396418712 +237506,8949,depression,1396418713 +237506,8949,friendship,1396418713 +237506,8949,melancholic,1396418712 +237506,8949,Nudity (Topless),1396418712 +237506,8949,road trip,1396418713 +237506,8949,witty,1396418747 +237506,8949,writer,1396418713 +237506,8958,biopic,1400036949 +237506,8958,genius,1400036948 +237506,8958,music,1400036881 +237506,8958,musicians,1400036948 +237506,8958,Nudity (Topless - Brief),1400036888 +237506,8958,race issues,1400036971 +237506,8958,rhythm & blues,1400036971 +237506,26422,counterculture,1399432452 +237506,26422,hippies,1399432452 +237506,26422,Milos Forman,1396416733 +237506,26422,music,1399432452 +237506,26422,nudity,1396416739 +237506,26481,Godard,1400036517 +237506,27773,adapted from:comic,1396419781 +237506,27773,based on comic,1396419781 +237506,27773,disturbing,1396419781 +237506,27773,hallucinatory,1396419782 +237506,27773,stylized,1396419781 +237506,27773,surreal,1396419782 +237506,27773,tense,1396419781 +237506,27773,twist ending,1396419781 +237506,27821,thriller,1400036181 +237506,27904,adapted from:book,1399430923 +237506,27904,animation,1399430915 +237506,27904,based on a book,1399430915 +237506,27904,confusion,1399431039 +237506,27904,Philip K. Dick,1399430942 +237506,27904,psychology,1399430954 +237506,27904,sci-fi,1399430966 +237506,32587,atmospheric,1396421021 +237506,32587,comic book,1399433051 +237506,32587,stylized,1399433051 +237506,32587,visually appealing,1399433051 +237506,33903,coming of age,1399739976 +237506,33903,idealism,1399743843 +237506,33903,Nudity (Topless),1399743843 +237506,33903,politics,1399739970 +237506,33903,psychology,1399739973 +237506,36517,atmospheric,1396420395 +237506,36517,conspiracy,1396420391 +237506,36517,great cinematography,1396420550 +237506,36517,social commentary,1396420385 +237506,37386,Charlize Theron,1399433859 +237506,37386,dystopia,1399433820 +237506,37386,post-apocalyptic,1399433762 +237506,37386,sci-fi,1399433753 +237506,37386,stylized,1399433791 +237506,37386,visually appealing,1399433791 +237506,39292,Amazing Cinematography,1396419243 +237506,39292,censorship,1396419243 +237506,39292,cerebral,1396419243 +237506,39292,confrontational,1396419243 +237506,39292,journalism,1396419062 +237506,39292,political,1396419263 +237506,39292,politics,1396419067 +237506,39292,suspense,1396419244 +237506,39292,thought-provoking,1396419243 +237506,39292,visually appealing,1396419243 +237506,40819,biopic,1400036772 +237506,40819,musicians,1400036772 +237506,41285,clever,1399433316 +237506,41285,non-hollywood ending,1399433315 +237506,41285,Scarlett Johansson,1399433316 +237506,41285,Woody Allen,1399433238 +237506,41527,friendship,1399691193 +237506,41527,Middle East,1399691199 +237506,41527,palestine,1399691237 +237506,44191,comic book,1396417724 +237506,44191,social commentary,1396417718 +237506,44694,Spain,1396421316 +237506,44694,visually appealing,1396421321 +237506,46723,multiple storylines,1400124270 +237506,46723,social commentary,1400124265 +237506,46723,visually appealing,1400124303 +237506,48394,atmospheric,1399683995 +237506,48394,deep meaning,1399684072 +237506,48394,dreamlike,1399684055 +237506,48394,fairy tale,1399684009 +237506,48394,fantasy,1399683954 +237506,48394,history,1399683953 +237506,48394,metaphorical,1399684148 +237506,48394,psychology,1399683976 +237506,48394,social commentary,1399683976 +237506,48394,Spain,1399684224 +237506,48394,surreal,1399683954 +237506,48394,symbolism,1399684255 +237506,48394,unsettling,1399684135 +237506,48394,visually appealing,1399683954 +237506,48780,adapted from:book,1401683351 +237506,48780,atmospheric,1401682200 +237506,48780,based on a book,1401683351 +237506,48780,beauty,1401683289 +237506,48780,fantastic,1401682399 +237506,48780,fantasy,1401682399 +237506,48780,Illusionism,1401684448 +237506,48780,illusions,1401684448 +237506,48780,magic,1401682250 +237506,48780,magicians,1401683028 +237506,48780,marvelous,1401682399 +237506,48780,mystery,1401682250 +237506,48780,nonlinear,1401682250 +237506,48780,performance,1401683151 +237506,48780,psychological,1401682271 +237506,48780,puzzle,1401683321 +237506,48780,puzzling,1401683321 +237506,48780,Scarlett Johansson,1401682287 +237506,48780,sci-fi,1401682195 +237506,48780,science,1401683230 +237506,48780,science fiction,1401682437 +237506,48780,science is magic,1401682437 +237506,48780,secrets,1401683488 +237506,48780,spectacle,1401683151 +237506,48780,storytelling,1401683993 +237506,48780,thriller,1401682271 +237506,48780,Victorian,1401682625 +237506,48780,Victorian era,1401682625 +237506,48780,wizard,1401683151 +237506,50068,Clint Eastwood,1403410954 +237506,53000,post-apocalyptic,1396423163 +237506,53519,Quentin Tarantino,1403410945 +237506,55247,atmospheric,1396421052 +237506,55247,Nudity (Topless - Notable),1396421123 +237506,55247,Nudity (Topless),1396421123 +237506,55247,psychology,1396421047 +237506,55247,road trip,1396421123 +237506,55247,self discovery,1396421123 +237506,55721,Favelas,1399690739 +237506,55721,Latin America,1399690739 +237506,55721,Rio de Janeiro,1399690761 +237506,55721,social commentary,1399690694 +237506,56174,based on a book,1400031379 +237506,56174,post-apocalyptic,1400031375 +237506,56174,sci-fi,1400031383 +237506,56286,1960s,1399430570 +237506,56286,Allen Ginsberg,1399430550 +237506,56286,Bob Dylan,1399430550 +237506,56286,surreal,1399430493 +237506,56286,surrealism,1399430484 +237506,60950,Barcelona,1400032726 +237506,60950,friendship,1400032638 +237506,60950,romance,1400032641 +237506,60950,Scarlett Johansson,1400032683 +237506,60950,sexy,1400032693 +237506,60950,Spain,1400032634 +237506,60950,visually appealing,1400032765 +237506,60950,Woody Allen,1400032706 +237506,61323,Coen Brothers,1400031654 +237506,61323,dark comedy,1400031658 +237506,61323,dark humor,1400031737 +237506,61323,greed,1400031716 +237506,61323,satire,1400031663 +237506,61323,twists & turns,1400031716 +237506,62644,psychology,1400988188 +237506,62644,teacher student relationship,1400988261 +237506,63033,adapted from:book,1400123765 +237506,63033,allegorical,1400124013 +237506,63033,based on a book,1400123643 +237506,63033,Fernando Meirelles,1400123820 +237506,63033,good concept,1400123643 +237506,63033,Julianne Moore,1400123820 +237506,63033,psychological,1400123661 +237506,63033,Saramago,1400123775 +237506,63082,India,1399431759 +237506,63082,social commentary,1399431696 +237506,65642,Nudity (Topless),1414381321 +237506,65642,paradox,1414381310 +237506,65642,Spanish,1414381315 +237506,65642,time travel,1414381317 +237506,67255,dark,1399433567 +237506,67255,investigation,1399433568 +237506,67255,journalism,1399433567 +237506,67255,suspense,1399433501 +237506,68157,dark comedy,1399431851 +237506,68157,Quentin Tarantino,1399431843 +237506,68554,adapted from:book,1399743905 +237506,68554,based on a book,1399743905 +237506,68554,controversial,1399743921 +237506,68554,mystery,1399743921 +237506,68554,science,1399743953 +237506,68554,secrets,1399743964 +237506,68554,thriller,1399743953 +237506,70286,social commentary,1396420225 +237506,72998,Amazon,1401507263 +237506,72998,ecology,1401507277 +237506,72998,fantasy,1401507129 +237506,72998,native american,1401507237 +237506,72998,nature,1401507162 +237506,72998,politics,1401507171 +237506,72998,sci-fi,1401507139 +237506,72998,social commentary,1401507134 +237506,72998,thought-provoking,1401507184 +237506,72998,visually appealing,1401507295 +237506,72998,visually stunning,1401507355 +237506,73323,adapted from:book,1399739162 +237506,73323,based on a book,1399739108 +237506,73323,courtroom,1399739162 +237506,73323,dark,1399739183 +237506,73323,history,1399739321 +237506,73323,journalism,1399739183 +237506,73323,lawyers,1399739183 +237506,73323,psychological,1399739118 +237506,73323,social commentary,1399739264 +237506,73323,suspense,1399739113 +237506,73323,Swedish,1399739210 +237506,73323,thriller,1399739220 +237506,74510,adapted from:book,1399738037 +237506,74510,based on a book,1399737998 +237506,74510,journalism,1399738037 +237506,74510,lawyers,1399738060 +237506,74510,motorcycle,1399738060 +237506,74510,mystery,1399738185 +237506,74510,Nudity (Topless - Notable),1399738074 +237506,74510,social criticism,1399738127 +237506,74510,swedish,1399738090 +237506,74510,thriller,1399738165 +237506,74545,atmospheric,1400035450 +237506,74545,British,1400035552 +237506,74545,government,1400035960 +237506,74545,investigation,1400035933 +237506,74545,law,1400035855 +237506,74545,mystery,1400035552 +237506,74545,noir thriller,1400035925 +237506,74545,political commentary,1400035603 +237506,74545,politics,1400035440 +237506,74545,Roman Polanski,1400035508 +237506,74545,sexual tension,1400036093 +237506,74545,suspense,1400035445 +237506,74545,thriller,1400035552 +237506,74545,writer,1400035570 +237506,77658,history,1396416854 +237506,77658,science,1399433630 +237506,77658,space,1399433637 +237506,77846,jury trial,1400122612 +237506,77846,law,1400122612 +237506,79132,adventure,1401589162 +237506,79132,alternate reality,1396417072 +237506,79132,dreamlike,1401589119 +237506,79132,fantasy,1401589119 +237506,79132,guilt,1401589234 +237506,79132,psychology,1401589055 +237506,79132,sci-fi,1401589070 +237506,79132,subconscious,1401589134 +237506,79132,surreal,1401589065 +237506,79132,thriller,1401589119 +237506,79132,twist ending,1396417076 +237506,81591,disturbing,1399432760 +237506,81591,metaphorical,1399432804 +237506,81591,psychological,1399432760 +237506,81591,stylized,1399432776 +237506,81591,surreal,1399432720 +237506,81591,suspense,1399432776 +237506,82459,Coen Brothers,1403410929 +237506,85342,based on a true story,1399738467 +237506,85342,Brasil,1399738407 +237506,85342,institutions,1399738668 +237506,85342,José Padilha,1399738407 +237506,85342,Latin America,1399738407 +237506,85342,narrated,1399738458 +237506,85342,politics,1399738344 +237506,85342,power,1399738971 +237506,85342,social commentary,1399738339 +237506,85342,social control,1399738679 +237506,85342,social criticism,1399738579 +237506,85342,South America,1399738448 +237506,85342,tense,1399738790 +237506,85342,thought-provoking,1399738516 +237506,85342,true story,1399738609 +237506,85342,urban,1399738898 +237506,89039,low budget,1401589580 +237506,89039,Parallel worlds,1401589461 +237506,89039,psychology,1401589633 +237506,89039,regret,1401589522 +237506,89039,sci-fi,1401589606 +237506,89039,second chance,1401589557 +237506,89039,surreal,1401589633 +237506,91658,suspense,1399433512 +237506,93363,adapted from:book,1400033431 +237506,93363,based on a book,1400033420 +237506,93363,fantasy,1400033417 +237506,93363,sci-fi,1400033423 +237506,99114,Quentin Tarantino,1396420958 +237506,101088,Chan-wook Park,1408888031 +237506,101088,erotic,1408887974 +237506,101088,Mia Wasikowska,1408888013 +237506,101088,Nicole Kidman,1408887926 +237506,101088,piano music,1408887974 +237506,101088,psychological,1408887926 +237506,101088,stylish,1408887974 +237506,101088,thriller,1408887926 +237506,145390,beauty,1450108951 +237506,145390,drugs,1450108257 +237506,145390,friendship,1450108764 +237506,145390,love,1450108264 +237506,145390,nudity,1450108819 +237506,145390,party,1450108805 +237506,145390,psychedelia,1450108239 +237506,145390,redemption,1450108648 +237506,145390,relationships,1450108972 +237506,145390,saudade,1450108747 +237506,145390,self-knowledge,1450108489 +237506,145390,self-responsibility,1450108523 +237506,145390,sex,1450108815 +237506,145390,wanderlust,1450108232 +237521,78836,beautiful,1415769220 +237521,78836,drugs,1415769017 +237521,78836,Mind Games,1415769033 +237521,78836,Nudity (Full Frontal),1415769039 +237531,293,great acting,1448986974 +237531,1230,New York,1448987051 +237531,1230,new york city,1448987045 +237531,1230,witty,1448987053 +237531,1704,elliott smith,1448986165 +237531,1704,excellent script,1448986147 +237531,1704,feel-good,1448986154 +237531,1704,Great Screenplays,1448986136 +237531,1704,intelligent,1448986152 +237531,1704,mathematics,1448986133 +237531,1704,Matt Damon,1448986144 +237531,1704,thoughtful,1448986141 +237531,1704,university,1448986138 +237531,2596,coming of age,1448986236 +237531,2596,cult film,1448986249 +237531,2596,punk,1448986242 +237531,2596,punks,1448986239 +237531,2596,sarcasm,1448986244 +237531,2959,dark comedy,1448986533 +237531,2959,social commentary,1448986534 +237531,2959,twist ending,1448986530 +237531,3578,Epic,1448986061 +237531,3578,history,1448986050 +237531,3578,Oscar (Best Sound),1448986083 +237531,3578,stylized,1448986057 +237531,3578,visual,1448986054 +237531,4878,cult film,1448986439 +237531,4878,philosophy,1448986452 +237531,4878,psychological,1448986447 +237531,4878,satirical,1448986443 +237531,4878,surreal,1448986435 +237531,6942,predictable,1448987261 +237531,8784,coming of age,1448986268 +237531,8784,friendship,1448986270 +237531,8784,Zach Braff,1448986264 +237531,32587,artistic,1448985962 +237531,32587,black comedy,1448985945 +237531,32587,stylized,1448985941 +237531,32587,visually appealing,1448985948 +237531,33162,Eva Green,1448986102 +237531,40583,complex,1448926949 +237531,40583,complicated,1448926909 +237531,40583,espionage,1448926927 +237531,40583,Matt Damon,1448926914 +237531,40583,Political,1448926912 +237531,40583,world politics,1448926940 +237531,46976,metaphysics,1448986306 +237531,46976,modern fantasy,1448986298 +237531,46976,surreal,1448986294 +237531,48385,road trip,1448985892 +237531,48385,satire,1448985887 +237531,48774,depressing,1448986376 +237531,48774,grim,1448986378 +237531,48774,social commentary,1448986369 +237531,48774,visually appealing,1448986364 +237531,51662,artistic,1448986004 +237531,51662,atmospheric,1448986001 +237531,51662,stylized,1448985998 +237531,62374,spy,1448926976 +237531,80549,family relationships,1448986575 +237531,80549,high school,1448986572 +237531,80549,witty,1448986569 +237531,92498,dylan moran,1448986767 +237531,103984,notable soundtrack,1448987389 +237531,106918,visually appealing,1448962758 +237531,110586,Brendan Gleeson,1448986785 +237531,110586,Ireland,1448986788 +237539,2730,slow,1138992404 +237539,4378,slow,1138457651 +237539,8874,boring,1137249914 +237539,34334,stupid,1137356219 +237539,42418,Boring,1152712570 +237543,50,suspense,1139540743 +237573,8636,comic book,1427662108 +237573,8636,Kirsten Dunst,1427662092 +237573,8636,superhero,1427662114 +237573,8968,Salma Hayek,1329761522 +237573,27831,British gangster,1290357739 +237573,27831,daniel craig,1290357725 +237573,50442,Nudity (Topless),1326058178 +237573,81788,Elizabeth Banks,1448663439 +237573,102125,Marvel,1368735681 +237573,102125,Robert Downey Jr.,1368735652 +237573,102125,superhero,1368735677 +237625,296,empty,1420866112 +237625,296,trashy,1420866112 +237625,296,violent,1420866112 +237632,260,Classic,1437938355 +237632,260,Готин,1437938321 +237640,260,classic,1432686444 +237640,260,sci-fi,1432686416 +237640,260,space action,1432686424 +237654,318,atmospheric,1430506581 +237654,318,based on a book,1430506576 +237654,318,friendship,1430506570 +237654,318,heartwarming,1430506642 +237654,318,Morgan Freeman,1430506567 +237654,318,sentimental,1430506579 +237654,356,based on a book,1430506502 +237654,356,bittersweet,1430506493 +237654,356,drama,1430506504 +237654,356,emotional,1430506506 +237654,356,heartwarming,1430506508 +237654,356,historical,1430506498 +237654,356,inspirational,1430506497 +237654,356,tom hanks,1430506491 +237654,924,Arthur C. Clarke,1430506923 +237654,924,artificial intelligence,1430506907 +237654,924,confusing ending,1430506965 +237654,924,futuristic,1430506916 +237654,924,Hall 9000,1430506956 +237654,924,robots,1430506914 +237654,924,sci-fi,1430506905 +237654,924,slow,1430506920 +237654,924,space,1430506909 +237654,1196,great soundtrack,1430507552 +237654,1196,music,1430507558 +237654,1196,sci-fi,1430507533 +237654,1196,sequel,1430507564 +237654,1196,space,1430507534 +237654,1196,Star Wars,1430507568 +237654,1196,sword fight,1430507547 +237654,2378,comedy,1430507685 +237654,2378,crime,1430507696 +237654,2378,funny,1430507672 +237654,2378,police,1430507692 +237654,2378,silly,1430507668 +237654,2628,sci-fi,1430507591 +237654,2761,animation,1430507507 +237654,2761,emotional,1430507509 +237654,2761,redemption,1430507518 +237654,2761,robot,1430507511 +237654,2761,robots,1430507522 +237654,5541,comedy,1430507745 +237654,5541,humor,1430507749 +237654,5541,parody,1430507733 +237654,7090,atmospheric,1430506395 +237654,27156,anime,1430507045 +237654,27156,apocalypse,1430507052 +237654,27156,Final fight of Asuka Langley Soryu,1430507066 +237654,27156,Gainax,1430507069 +237654,27156,Hideaki Anno,1430507048 +237654,27156,mental illness,1430507050 +237654,27156,psychology,1430507055 +237654,27156,sci-fi,1430507060 +237654,31658,anime,1430506013 +237654,31658,Studio Ghibli,1430506017 +237654,33004,based on a book,1430505981 +237654,33004,comedy,1430506006 +237654,33004,douglas adams,1430505967 +237654,33004,humor,1430505991 +237654,33004,sarcasm,1430505976 +237654,33004,sci-fi,1430505983 +237654,33004,space,1430505978 +237654,33493,great soundtrack,1430506267 +237654,33493,Hayden Christensen,1430506274 +237654,33493,sci-fi,1430506263 +237654,33493,space,1430506280 +237654,36363,culture clash,1430507456 +237654,36363,koo,1430507463 +237654,36363,sci-fi,1430507454 +237654,41566,children,1430506429 +237654,41566,Christian,1430506431 +237654,41566,christianity,1430506443 +237654,41566,good versus evil,1430506451 +237654,41566,mythology,1430506433 +237654,41566,religion,1430506437 +237654,60904,based on book,1430507489 +237654,62336,anime,1430506996 +237654,62336,breaking the fourth wall,1430507024 +237654,62336,Gainax,1430507012 +237654,62336,hallucinatory,1430507008 +237654,62336,random,1430507019 +237654,62336,rock and roll,1430507000 +237654,62336,sci-fi,1430507018 +237654,62336,stylish,1430507002 +237654,62336,surreal,1430506998 +237654,62336,way over the top,1430507016 +237654,62336,weird,1430507004 +237654,62336,wtf,1430507022 +237654,70533,Gainax,1430507108 +237654,70533,Hideaki Anno,1430507114 +237654,77561,bad science,1430506196 +237654,77561,Marvel,1430506154 +237654,77561,Marvel Cinematic Universe,1430506199 +237654,77561,Robert Downey Jr.,1430506149 +237654,77561,The Avengers,1430506201 +237654,107304,Badass,1430507164 +237654,107304,Gainax,1430507162 +237654,109487,artificial intelligence,1430506730 +237654,109487,bad dialogue,1430506718 +237654,109487,bad science,1430506747 +237654,109487,black hole,1430506721 +237654,109487,Christopher Nolan,1430506858 +237654,109487,Deus Ex Machina Ending,1430506794 +237654,109487,emotional,1430507238 +237654,109487,exploration,1430506779 +237654,109487,father - child relationship,1430506812 +237654,109487,Good OST,1430506792 +237654,109487,good science,1430506731 +237654,109487,Hans Zimmer,1430506742 +237654,109487,heartwarming,1430507238 +237654,109487,inspiring,1430506778 +237654,109487,love,1430506745 +237654,109487,Matthew McConaughey,1430506757 +237654,109487,philosophical issues,1430506847 +237654,109487,physics,1430506734 +237654,109487,plot holes,1430506738 +237654,109487,relativity,1430506708 +237654,109487,sci-fi,1430506712 +237654,109487,science fiction,1430506728 +237654,109487,sounds,1430506714 +237654,109487,space,1430506706 +237654,109487,space exploration,1430506790 +237654,109487,thought-provoking,1430506849 +237654,109487,time-travel,1430506860 +237689,50,storytelling,1368528535 +237689,111,loneliness,1368528635 +237689,296,black comedy,1422611404 +237689,296,good dialogue,1422611404 +237689,296,nonlinear,1422611404 +237689,1089,original,1368528381 +237689,1305,loneliness,1368528629 +237689,1704,mentor,1368528434 +237689,1952,loneliness,1368528636 +237689,2291,original,1368528381 +237689,2335,comedy,1368528467 +237689,2371,comedy,1368528467 +237689,2420,mentor,1368528434 +237689,3421,comedy,1368528467 +237689,4085,comedy,1368528467 +237689,4226,storytelling,1368528535 +237689,5500,ludicrous,1226659146 +237689,5878,loneliness,1368528636 +237689,5945,loneliness,1368528634 +237689,6188,comedy,1368528467 +237689,7438,storytelling,1368528535 +237689,8641,comedy,1368528467 +237689,32587,storytelling,1368528535 +237689,64839,loneliness,1368528634 +237691,53476,french,1425596732 +237691,53476,quirky,1425596732 +237691,53476,uplifting,1425596732 +237711,139417,fantasy,1446120195 +237724,260,fun action,1444380866 +237724,260,good vs evil,1444380894 +237734,106920,artificial intelligence,1443409825 +237734,106920,joaquin phoenix,1443409837 +237734,106920,original plot,1443409846 +237734,106920,Scarlett Johansson,1443409829 +237734,106920,sci-fi,1443409832 +237734,106920,transhumanism,1443409839 +237734,115713,artificial intelligence,1443409859 +237734,115713,consciousness,1443409874 +237734,115713,Contemplative,1443409870 +237734,115713,sci-fi,1443409862 +237734,122892,Action,1443409793 +237734,122892,artificial intelligence,1443409789 +237734,122892,Marvel,1443409785 +237750,5989,Leonardo DiCaprio,1245377634 +237752,260,classic,1444423050 +237752,260,sci-fi,1444423043 +237752,54190,romance,1444423406 +237752,54190,The Beatles,1444423394 +237752,64716,drama,1444423356 +237752,64716,will smith,1444423359 +237767,3785,comedy,1246411383 +237767,3785,parody,1246411381 +237767,4720,ghosts,1246411314 +237767,4720,twist ending,1246411307 +237767,5679,disturbing,1246411326 +237767,6502,zombies,1246411213 +237767,6880,murder,1246411562 +237767,6880,serial killer,1246411564 +237767,8957,Disturbing,1246411344 +237767,8957,serial killer,1246411339 +237767,27482,murder,1246411391 +237767,33896,cannibalism,1246411195 +237767,33896,disturbing,1246411197 +237767,34143,horror,1246411612 +237767,37720,true story,1246411148 +237767,43679,gore,1246411524 +237767,43679,Horror,1246411526 +237767,53519,Quentin Tarantino,1246411763 +237767,56339,horror,1246411099 +237767,56339,twist ending,1246411096 +237767,59143,drugs,1246410969 +237767,59143,marijuanna,1246410972 +237806,50,mindfuck,1247022777 +237806,50,suspense,1247022785 +237806,50,twist ending,1247022791 +237806,111,social commentary,1247022838 +237806,296,dark comedy,1247022815 +237806,296,drugs,1247022818 +237806,296,soundtrack,1247022805 +237806,318,classic,1247022752 +237806,318,prison,1247022746 +237806,858,length,1247023060 +237806,2329,disturbing,1247022455 +237806,2329,edward norton,1247022440 +237806,2329,holocaust,1247022446 +237806,2329,powerful ending,1247022462 +237806,2959,dark comedy,1247022547 +237806,2959,social commentary,1247022539 +237806,2959,thought provoking,1247022558 +237806,2959,twist ending,1247022533 +237806,4226,twist ending,1247022575 +237806,6942,england,1247023127 +237806,6942,ensemble cast,1247023114 +237806,6942,multiple storylines,1247023144 +237806,6942,romance,1247023151 +237806,48516,gangsters,1247021863 +237806,48516,organized crime,1247022348 +237806,48516,soundtrack,1247021883 +237806,48516,violence,1247022218 +237806,48780,nonlinear,1247197265 +237806,48780,twist ending,1247197276 +237806,69122,comedy,1247196436 +237806,69122,drugs,1247196426 +237810,4973,beautifully filmed,1378955653 +237810,4973,great soundtrack,1378955644 +237810,4973,quirky,1378955641 +237810,4973,romance,1378955649 +237841,100034,dark,1421771983 +237841,100034,documentary,1421771983 +237841,100034,indie,1421771983 +237841,100106,documentary,1431843583 +237841,100106,philosophy,1431843583 +237841,100106,psychoanalysis,1431843583 +237841,107196,animation,1423713582 +237841,107196,documentary,1423713582 +237841,107196,intellectual,1423713582 +237866,73881,Amazing display of friendship,1303736288 +237880,4865,Atmospheric,1249437526 +237880,4865,historical,1249437494 +237880,4865,Horror,1249437497 +237880,4865,Johnny Depp,1249437501 +237880,4865,London,1249437494 +237880,4865,murder,1249437489 +237880,4865,Nudity (Full Frontal),1249437513 +237880,4865,police investigation,1249437508 +237880,4865,serial killer,1249437505 +237880,4967,comedy,1249437185 +237880,4967,No Happy End,1249437201 +237880,4967,Oscar (Best Foreign Language Film),1249437195 +237880,7293,PG-13,1170622991 +237880,7458,based on a myth,1281643462 +237880,7458,Brad Pitt,1281643489 +237880,7458,Nudity (Topless),1281643484 +237880,7458,Orlando Bloom,1281643476 +237880,40614,Vincent Cassel,1249436354 +237880,52328,great soundtrack,1249436519 +237880,54785,long and repetitive,1253866678 +237880,54785,Nudity (Full Frontal),1253866690 +237880,54785,remake,1253866692 +237880,55442,animation,1249437017 +237880,55442,black and white,1249437013 +237880,55442,chick flick,1249437010 +237880,55442,History,1249436959 +237880,55442,Iran,1249436964 +237880,55442,politics,1249436965 +237880,55442,revolution,1249436968 +237880,66097,alternate reality,1249437645 +237880,66097,based on a book,1249437651 +237880,66097,gothic,1249437656 +237880,66097,Stereoscopic 3-D,1249437625 +237880,66097,Surreal,1249437636 +237880,68954,computer animation,1249436406 +237880,68954,death/fatality,1249436413 +237880,68954,dreams,1249436419 +237880,68954,Pixar,1249436427 +237880,68954,talking animals,1249436433 +237880,68954,talking dog,1249436434 +237880,69122,comedy,1281643984 +237880,69122,Nudity (Topless),1281643995 +237880,69122,stupid stereotypes,1281644010 +237880,70159,ambiance,1281643252 +237880,70159,better than i thought it'd be,1281643245 +237880,70159,surprise ending,1281643292 +237880,71899,animation,1281642773 +237880,71899,character study,1281642792 +237880,71899,Deep,1281642763 +237880,71899,friendship,1281642755 +237880,71899,philosophical,1281642784 +237880,71899,touching,1281642781 +237880,72998,aliens,1281643162 +237880,72998,beautiful scenery,1281643104 +237880,72998,futuristic,1281643158 +237880,72998,graphic design,1281643100 +237880,72998,predictable,1281643122 +237880,74458,ending twist,1281642958 +237880,74458,insanity,1281642962 +237880,74458,Leonardo DiCaprio,1281642956 +237880,74458,psychological,1281642953 +237880,74458,too long,1281642948 +237880,79132,action,1281643047 +237880,79132,dream within a dream,1281643010 +237880,79132,dreamlike,1281643039 +237880,79132,Leonardo DiCaprio,1281643015 +237880,79132,multiple interpretations,1281643018 +237880,79132,surreal,1281643022 +237880,79132,Tokyo,1281643051 +237880,79132,visually appealing,1281643025 +237881,1203,Old,1433106888 +237911,26131,revolutionary,1160578943 +237913,260,classic sci-fi,1441387817 +237913,260,Groundbreaking,1441387838 +237913,260,henry ford,1441387829 +237917,1206,great soundtrack,1436416321 +237917,1206,ultra-violence,1436416339 +237934,318,prison break,1451240128 +237934,318,twist ending,1451240169 +237934,858,Al Pacino,1451240796 +237934,858,great acting,1451240805 +237934,858,Mafia,1451240808 +237934,858,Marlon Brando,1451240800 +237934,858,masterpiece,1451240789 +237934,858,organized crime,1451240787 +237934,1704,great acting,1451240239 +237934,1704,inspirational,1451240225 +237934,1704,mathematics,1451240228 +237934,1704,Matt Damon,1451240233 +237934,2571,computers,1451240371 +237934,2571,fight scenes,1451240388 +237934,2571,martial arts,1451240383 +237934,2571,philosophical,1451240367 +237934,2571,sci-fi,1451240401 +237934,2571,science fiction,1451240379 +237934,2571,Special Effects,1451240399 +237934,2571,thought-provoking,1451240374 +237934,4995,based on a true story,1451240306 +237934,4995,inspirational,1451240294 +237934,4995,mathematics,1451240271 +237934,4995,mental illness,1451240318 +237934,4995,Russell Crowe,1451240275 +237934,5445,action,1451240448 +237934,5445,futuristic,1451240453 +237934,5445,Precognition,1451240478 +237934,48516,Leonardo DiCaprio,1451240846 +237934,48516,Matt Damon,1451240852 +237934,48516,organized crime,1451240855 +237934,48516,police corruption,1451240860 +237934,79132,Christopher Nolan,1451240509 +237934,79132,complicated,1451240512 +237934,79132,dreams,1451240528 +237934,79132,great soundtrack,1451240535 +237934,79132,Intense,1451240540 +237934,79132,Leonardo DiCaprio,1451240520 +237934,79132,thought-provoking,1451240515 +237934,104841,3D effects,1451240669 +237934,104841,cinematography,1451240653 +237934,104841,George Clooney,1451240714 +237934,104841,physics,1451240665 +237934,104841,sandra bullock,1451240681 +237934,104841,space,1451240643 +237934,104841,visually appealing,1451240648 +237934,104841,zero gravity,1451240656 +237934,109487,black hole,1451240591 +237934,109487,Christopher Nolan,1451240571 +237934,109487,Hans Zimmer,1451240578 +237934,109487,physics,1451240601 +237934,109487,space,1451240603 +237934,109487,space travel,1451240607 +237934,109487,wormhole,1451240594 +237936,112552,drama,1430162359 +237936,112552,miles teller,1430162359 +237936,112552,music,1430162359 +237954,2706,best comedy,1441890928 +237964,1036,must see,1425992059 +237964,1198,classic,1425992035 +237996,260,EPIC,1432219685 +237996,260,good vs evil,1432219706 +237996,260,great soundtrack,1432219733 +237996,260,masterpiece,1432219743 +237996,356,highly quotable,1432219871 +237996,356,historical,1432219871 +237996,356,joyful,1432219871 +237996,356,uplifting,1432219871 +237996,593,great acting,1434449222 +237996,593,immersive,1434449222 +237996,593,scary,1434449222 +237996,593,thriller,1434449222 +238028,318,classic,1434986012 +238028,318,Morgan Freeman,1434986007 +238028,318,Top rated,1434986038 +238028,858,classic,1434986076 +238028,858,mafia,1434986069 +238028,858,Must see,1434986065 +238030,1230,Woody Allen,1452813332 +238076,18,Comedy,1186682394 +238076,18,Drama,1186682394 +238076,18,Thriller,1186682394 +238076,837,Children,1186682410 +238076,837,Comedy,1186682410 +238076,837,Fantasy,1186682410 +238076,1091,Comedy,1186682431 +238076,1894,Adventure,1186682430 +238076,1894,Comedy,1186682430 +238076,1894,Romance,1186682430 +238076,1959,Drama,1186682429 +238076,1959,Romance,1186682429 +238076,2046,Adventure,1186682390 +238076,2046,Children,1186682390 +238076,2046,Sci-Fi,1186682390 +238076,2116,Adventure,1186682401 +238076,2116,Animation,1186682401 +238076,2116,Children,1186682401 +238076,2116,Epic,1186682401 +238076,2116,Fantasy,1186682401 +238076,2600,Action,1186682386 +238076,2600,Sci-Fi,1186682386 +238076,2600,Thriller,1186682386 +238076,3113,Action Thriller,1186682380 +238076,3988,Children,1186682417 +238076,3988,Comedy,1186682417 +238076,3988,Fantasy,1186682417 +238078,51662,action,1429616172 +238078,51662,amazing photography,1429616203 +238078,51662,military,1429616183 +238078,51662,sword fight,1429616209 +238078,51662,war,1429616177 +238088,84152,drugs,1434701774 +238088,84152,human potential,1434701782 +238114,110,revenge,1290395676 +238114,110,Scotland,1290395633 +238114,318,narrated,1300491573 +238114,344,rate up,1294863618 +238114,356,narrated,1300491729 +238114,480,rated from memory,1294666445 +238114,541,rate up,1314137724 +238114,678,short,1293020516 +238114,1175,unusual,1298842006 +238114,1265,rate down,1298003618 +238114,1394,narrated,1294643909 +238114,1584,rate down,1294380468 +238114,1584,religion,1294380401 +238114,1653,genetic engineering,1295300848 +238114,1653,genetics,1295300856 +238114,1704,mathematics,1295300880 +238114,1884,narrated,1292846421 +238114,1884,rate up,1292846477 +238114,2231,gambling,1292748561 +238114,2231,narrated,1292748692 +238114,2231,poker,1292748537 +238114,2237,true story,1314136855 +238114,2321,rate down,1300593410 +238114,2325,pornography,1292845992 +238114,2594,dreams,1299302235 +238114,2600,rate down,1314137046 +238114,2618,feel-good,1302992768 +238114,2618,narrated,1302980992 +238114,2618,rate up,1302992942 +238114,2672,alternate reality,1307466773 +238114,2672,belivable science,1307467596 +238114,2997,obsession,1290412861 +238114,2997,surreal,1297665048 +238114,3052,Christianity,1294391670 +238114,3052,jay and silent bob,1294391588 +238114,3052,religion,1294391664 +238114,3052,view askew,1294391596 +238114,3252,remake,1297675314 +238114,3535,Bret Easton Ellis,1303845874 +238114,3686,rate down,1300593449 +238114,3994,director-screenwriter,1313942923 +238114,4011,narrated,1292748798 +238114,4022,small cast,1300376931 +238114,4226,nonlinear,1291202370 +238114,4454,short,1293677177 +238114,4591,rate down,1295331289 +238114,4741,director-screenwriter,1302275710 +238114,4973,narrated,1300492346 +238114,4975,remake,1300802190 +238114,4995,based on a true story,1295302598 +238114,4995,mathematics,1295302528 +238114,4995,rated from memory,1295302511 +238114,5064,revenge,1290397006 +238114,5293,contrived,1295490928 +238114,5293,corruption,1295490952 +238114,5293,hacking,1295492961 +238114,5293,revenge,1295490955 +238114,5577,director-screenwriter,1314139294 +238114,5666,narrated,1292749133 +238114,5881,slow,1314137816 +238114,5900,rate up,1292844542 +238114,6286,amnesia,1300670507 +238114,6286,slow,1313941055 +238114,6542,cultural customs and traditions,1290568152 +238114,6542,human relationship,1290568152 +238114,6542,Natives,1290568226 +238114,6542,nature,1290568248 +238114,7034,director-screenwriter,1302275635 +238114,7419,rate down,1297664997 +238114,7419,surreal,1297664260 +238114,7502,not a movie,1296390082 +238114,8254,great soundtrack,1295282104 +238114,8254,rate down,1295282195 +238114,8254,surreal,1295282086 +238114,8800,rate down,1358364453 +238114,27178,coincidences,1290222334 +238114,27178,cute girls,1290222446 +238114,27178,travel,1290222299 +238114,27178,unrealistic,1290222296 +238114,27611,based on a TV show,1292799663 +238114,27611,rate down,1292846042 +238114,27611,sci-fi,1292799681 +238114,27611,space,1292799673 +238114,27773,revenge,1290396821 +238114,27790,children,1290573815 +238114,30810,tor h,1293667891 +238114,33880,director-screenwriter,1314148489 +238114,33893,narrated,1292838424 +238114,34405,Based on a TV show,1292743970 +238114,34405,space,1292743992 +238114,37857,dream,1300588380 +238114,37857,dreamlike,1300588393 +238114,37857,teen as protagonist,1300588496 +238114,44974,revenge,1290395725 +238114,47793,human relationship,1290395947 +238114,47793,relationships,1290395931 +238114,47793,road trip,1290395913 +238114,48082,dreams,1298675056 +238114,48082,surreal,1298675040 +238114,50601,sad,1302318961 +238114,52891,based on a true story,1290283560 +238114,52891,cycling,1290283333 +238114,52891,dedication,1290395793 +238114,52891,sports,1290283351 +238114,53318,imagination,1290395526 +238114,53318,insomnia,1290395526 +238114,54978,dreams,1294456195 +238114,54978,lucid dreaming,1294456191 +238114,55052,rate down,1304162131 +238114,55908,dialogue driven,1298945412 +238114,60044,improvised,1290292813 +238114,60044,low budget,1290292784 +238114,60818,discworld,1291202565 +238114,60950,narrated,1301904788 +238114,63033,epidemic,1292844245 +238114,63033,good concept,1292843917 +238114,63033,poorly realized,1292843938 +238114,63033,rate down,1292844203 +238114,64034,children,1290396722 +238114,64034,sad,1300592692 +238114,64497,rate down,1292844819 +238114,65596,based on a true story,1300490466 +238114,65596,prison escape,1300490521 +238114,65596,robbery,1300490511 +238114,68263,director-screenwriter,1302310472 +238114,70286,mockumentary,1293020061 +238114,70286,rate up,1293020093 +238114,71520,good concept,1292419860 +238114,71520,poorly realized,1292419859 +238114,72167,rate down,1292844652 +238114,72226,tor h,1293667852 +238114,72332,short,1290574503 +238114,72356,Pixar,1290303917 +238114,72356,short,1290303917 +238114,72998,aliens,1292651120 +238114,72998,environmental,1292651147 +238114,72998,mythology,1292651149 +238114,72998,sci-fi,1292651115 +238114,73323,hacking,1294525113 +238114,73323,miscarriage of justice,1294525175 +238114,73323,rape,1294530047 +238114,73323,rate down,1294525085 +238114,73323,revenge,1294525209 +238114,74416,director-screenwriter,1300541896 +238114,74434,director-screenwriter,1304554877 +238114,74434,narrated,1304554887 +238114,74488,children,1290397679 +238114,74488,mythology,1290397780 +238114,74510,hacking,1294525277 +238114,74510,revenge,1294525288 +238114,74510,uncertain rating,1294525394 +238114,74553,animation,1290281542 +238114,74553,children,1290281542 +238114,74553,fantasy,1290281542 +238114,74619,made for TV,1325272406 +238114,75395,rate down,1314140478 +238114,75813,rate down,1302027270 +238114,76173,odd,1292659401 +238114,77561,rate down,1295301946 +238114,77854,NOT A MOVIE,1300498805 +238114,78039,director-screenwriter,1300630684 +238114,78266,biology,1292645343 +238114,78266,experiments gone awry,1292645256 +238114,78266,genetics,1292645262 +238114,78266,interspecies sex,1292645222 +238114,78266,weak ending,1292646707 +238114,78836,First Person Movie,1298857218 +238114,78836,rate down,1300593524 +238114,78836,too long,1298857193 +238114,79008,not a movie,1292744136 +238114,79132,rate down,1293676988 +238114,79293,rate down,1295301870 +238114,79293,too much,1295301890 +238114,79684,director-screenwriter,1302655915 +238114,79695,too much action,1290396194 +238114,81562,nature,1295282497 +238114,81562,rate up,1295123017 +238114,81562,small cast,1300376985 +238114,81562,true story,1295122314 +238114,82143,Alaska,1300723195 +238114,82143,nature,1300723084 +238114,82143,rate up,1300722988 +238114,82143,small cast,1300723227 +238114,82143,wilderness,1300723214 +238114,82459,child as protagonist,1298587217 +238114,82459,remake,1298573729 +238114,83324,circus,1300376664 +238114,83324,Cirque du Soleil,1300376613 +238114,83326,circus,1300376643 +238114,83326,Cirque du Soleil,1300376631 +238114,83330,rasputin,1295101869 +238114,83330,russian revolution,1295101899 +238114,84716,director-screenwriter,1300630893 +238114,84716,small cast,1300376754 +238114,84772,rate up,1325447665 +238114,84954,director-screenwriter,1300671674 +238114,84954,rate-down,1303846140 +238114,85392,remake,1301221616 +238114,86347,not a movie,1313942556 +238114,86781,director-screenwriter,1314136055 +238142,87194,friendship,1429216320 +238142,87194,loss,1429216320 +238142,87194,pilgrimage,1429216320 +238188,1285,80s,1451371714 +238188,1285,Bechdel Test:Pass,1451371680 +238188,1285,black comedy,1451371669 +238188,1285,coming of age,1451371686 +238188,1285,cult film,1451371695 +238188,1285,dark comedy,1451371692 +238188,1285,dark humor,1451371698 +238188,1285,deadpan,1451371700 +238188,1285,quotable,1451371705 +238188,1285,satirical,1451371711 +238188,1285,snappy dialog,1451371709 +238188,1285,Winona Ryder,1451371674 +238188,2296,physical comedy,1451371650 +238188,74688,nicholas sparks,1451371373 +238188,121231,coming of age,1451371564 +238188,121231,great soundtrack,1451371553 +238188,121231,horror,1451371539 +238188,121231,minimalist,1451371545 +238188,121231,Pacing,1451371543 +238188,121231,Psychological,1451371542 +238188,121231,Retro,1451371549 +238188,121231,sexual issues,1451371585 +238188,128838,cinematography,1451371489 +238188,128838,Guillermo del Toro,1451371467 +238188,128838,victorian gothic,1451371480 +238188,128838,visually appealing,1451371472 +238188,133645,queer women,1451371407 +238188,133645,realistic relationship,1451371398 +238188,133645,strong acting,1451371429 +238188,133645,strong soundtrack,1451371431 +238188,136016,coming of age,1451371448 +238188,138702,beautiful animation,1451371514 +238188,138702,relationships,1451371515 +238215,1208,classic,1147437654 +238215,1208,war,1147437640 +238218,1704,emotional,1441633542 +238218,1704,personal insight,1441633550 +238224,1625,Mystery,1138820276 +238224,1625,twist ending,1138820277 +238224,4250,Christian,1138820240 +238224,4250,faith,1138820240 +238224,7254,Mystery,1138820257 +238224,39427,psychological,1165277758 +238224,39427,twist ending,1141689827 +238224,41569,big monster,1139245921 +238224,41569,monkey,1139245910 +238230,53000,post-apocalyptic,1441925731 +238230,53000,zombies,1441925733 +238273,1197,dvd,1143628548 +238276,318,classic,1447959600 +238276,318,great ending,1447959584 +238276,318,prison escape,1447959591 +238276,4993,classic,1447959650 +238276,4993,fantasy,1447959655 +238276,4993,great,1447959658 +238276,4993,tolkien,1447959652 +238276,5952,classic,1447959736 +238276,5952,great,1447959740 +238276,7153,classic,1447959631 +238276,7153,fantasy,1447959615 +238276,7153,Hobbits,1447959625 +238276,7153,Tolkien,1447959619 +238276,58559,Batman,1447959674 +238276,58559,Christian Bale,1447959677 +238276,58559,Christopher Nolan,1447959681 +238309,4226,nonlinear,1212985691 +238311,260,chewbacca,1434659713 +238320,5049,Ação,1453304891 +238320,5049,Comedia,1453304898 +238320,5049,Fome,1453304903 +238336,2987,no desire to see this,1140897965 +238342,750,good comedy,1441859566 +238342,142080,everest,1441859520 +238352,260,old,1443237410 +238363,10,thriller,1434951371 +238363,6378,suspense,1434950910 +238415,260,old movie,1432477535 +238415,260,scifi,1432477508 +238415,4973,romance,1433064404 +238421,82,Bechdel Test:Pass,1264103136 +238421,82,mathematician,1264103164 +238421,82,mathematics,1264103156 +238421,82,strong woman,1264103110 +238421,111,Classic,1263875140 +238421,111,grim,1263875138 +238421,111,Jodie Foster,1263875136 +238421,111,New York City,1263875144 +238421,111,social commentary,1263875147 +238421,150,based on a true story,1263876491 +238421,150,historical,1263876501 +238421,150,History,1263876503 +238421,150,moon,1263876506 +238421,150,NASA,1263876496 +238421,150,space program,1263876494 +238421,265,bittersweet,1263873660 +238421,265,food,1263873638 +238421,265,food/cooking,1263873640 +238421,265,intimate,1263873654 +238421,265,magic realism,1263873651 +238421,265,STAR-CROSSED LOVERS,1263873645 +238421,265,warm,1263873666 +238421,345,Australia,1264110169 +238421,345,cross dressing,1264110147 +238421,345,gender identity,1264110156 +238421,345,GLBT,1264110154 +238421,345,queer,1264110159 +238421,345,road trip,1264110131 +238421,345,transgender,1264110160 +238421,345,transvestites,1264110162 +238421,356,historical,1263872891 +238421,356,history,1263872888 +238421,356,sappy,1263872920 +238421,356,Vietnam,1263872898 +238421,356,vietnam war,1263872900 +238421,356,war,1263872903 +238421,367,Crude,1263872479 +238421,367,Jim Carrey,1263872476 +238421,367,Jim Carrey being Jim Carrey,1263872482 +238421,367,not funny,1263872486 +238421,367,sex jokes,1263872490 +238421,368,Jodie Foster,1264110530 +238421,368,Mel Gibson,1264110532 +238421,541,cyberpunk,1263876315 +238421,541,dystopia,1263876320 +238421,541,sci-fi,1263876318 +238421,551,animation,1264109560 +238421,551,claymation,1264109564 +238421,551,gothic,1264109573 +238421,551,johnny depp,1264109569 +238421,551,Tim Burton,1264109565 +238421,608,classic,1263876178 +238421,608,Coen Brothers,1263876167 +238421,608,crime gone awry,1263876180 +238421,608,dark comedy,1263876169 +238421,608,Minnesota,1263876172 +238421,608,murder,1263876175 +238421,608,quirky,1263876173 +238421,741,anime,1263875715 +238421,741,artificial intelligence,1263872027 +238421,741,Bechdel Test:Fail,1263875745 +238421,741,complex,1263872019 +238421,741,cyberpunk,1263872015 +238421,778,dark comedy,1263876778 +238421,902,Audrey Hepburn,1263875760 +238421,902,classic,1263875763 +238421,902,New York,1263875765 +238421,902,Romance,1263875767 +238421,904,Alfred Hitchcock,1263874746 +238421,904,classic,1263874748 +238421,904,murder,1263874753 +238421,904,mystery,1263874751 +238421,904,tense,1263874749 +238421,1090,Bechdel Test:Fail,1263874892 +238421,1090,Forest Whitaker,1264110410 +238421,1090,horrors of war,1263874881 +238421,1090,Vietnam War,1263874867 +238421,1090,war,1263874877 +238421,1094,cross dressing,1263876287 +238421,1094,Forest Whitaker,1263876272 +238421,1094,IRA,1263876278 +238421,1094,Ireland,1263876281 +238421,1094,queer,1263876267 +238421,1094,transgender,1263876258 +238421,1094,Transgendered,1263876262 +238421,1178,anti-war,1263873077 +238421,1178,Best War Films,1263873079 +238421,1178,biting,1263873097 +238421,1178,bleak,1263873082 +238421,1178,disturbing,1263873093 +238421,1178,military,1263873084 +238421,1178,Stanley Kubrick,1263873088 +238421,1178,war,1263873085 +238421,1197,Bechdel Test:Fail,1263874829 +238421,1197,fairy tale,1263874801 +238421,1197,fantasy,1263874803 +238421,1197,humorous,1263874808 +238421,1197,pirates,1263874818 +238421,1197,quirky,1263874805 +238421,1197,sword fight,1263874811 +238421,1200,aliens,1264226662 +238421,1200,androids,1264226664 +238421,1200,Bechdel Test:Pass,1264226679 +238421,1200,horror,1264226672 +238421,1200,military,1264226669 +238421,1200,monster,1264226667 +238421,1200,sci-fi,1264226658 +238421,1200,space,1264226660 +238421,1208,Bechdel Test:Fail,1264109534 +238421,1208,Dark,1264109525 +238421,1208,disturbing,1264109527 +238421,1208,Vietnam war,1264109522 +238421,1214,aliens,1263876560 +238421,1214,classic,1263876557 +238421,1214,futuristic,1263876563 +238421,1214,horror,1263876555 +238421,1214,sci-fi,1263876549 +238421,1214,space,1263876551 +238421,1214,space travel,1263876553 +238421,1214,thriller,1263876567 +238421,1222,anti-war,1263874438 +238421,1222,Bechdel Test:Fail,1263874475 +238421,1222,boot camp,1263874450 +238421,1222,Stanley Kubrick,1263874440 +238421,1222,suicide,1263874462 +238421,1222,Vietnam,1263874441 +238421,1222,Vietnam War,1263874443 +238421,1233,Bechdel Test:Fail,1263874409 +238421,1233,classic,1263874380 +238421,1233,claustrophobic,1263874392 +238421,1233,German,1263874390 +238421,1233,grim,1263874386 +238421,1233,gritty,1263874382 +238421,1233,submarine,1263874384 +238421,1246,inspirational,1263876201 +238421,1246,teacher,1263876211 +238421,1254,classic,1263875035 +238421,1254,gold,1263875038 +238421,1254,grim,1263875042 +238421,1254,Humphrey Bogart,1263875026 +238421,1254,wry,1263875050 +238421,1266,Clint Eastwood,1263872099 +238421,1266,Gene Hackman,1263872106 +238421,1266,great acting,1263872108 +238421,1266,Morgan Freeman,1263872102 +238421,1276,prison,1264110228 +238421,1299,colonialism,1263873684 +238421,1299,grim,1263873708 +238421,1299,true story,1263873688 +238421,1299,Vietnam War,1263873686 +238421,1320,alien series,1263872443 +238421,1320,franchise,1263872447 +238421,1320,sequel,1263872427 +238421,1320,Sigourney Weaver,1263872435 +238421,1320,wasted potential,1263872425 +238421,1573,John Travolta,1264109619 +238421,1573,John Woo,1264109611 +238421,1573,stupid,1264109605 +238421,1584,aliens,1263874162 +238421,1584,Bechdel Test:Fail,1263874188 +238421,1584,Jodie Foster,1263874157 +238421,1584,sci-fi,1263874164 +238421,1584,space travel,1263874166 +238421,1734,child abuse,1264103639 +238421,1734,queer,1264103619 +238421,1734,smart kids,1264103626 +238421,1734,transgender,1264103622 +238421,1734,transgendered,1264103624 +238421,1734,transsexual,1264103633 +238421,1748,aliens,1263876233 +238421,1748,amnesia,1263876235 +238421,1748,dreamlike,1263876237 +238421,1748,dystopia,1263876226 +238421,1748,sci-fi,1263876224 +238421,1805,pulp,1263872739 +238421,1805,twist ending,1263872744 +238421,1921,cerebral,1263872972 +238421,1921,enigmatic,1263872975 +238421,1921,existentialism,1263873002 +238421,1921,god,1263873005 +238421,1921,great soundtrack,1263872970 +238421,1921,hallucinatory,1263872995 +238421,1921,mathematics,1263872977 +238421,1921,mental illness,1263872979 +238421,1921,New York City,1263872988 +238421,1921,psychology,1263872998 +238421,1921,tense,1263872984 +238421,1962,Morgan Freeman,1263876127 +238421,1962,racism,1263876129 +238421,1962,social commentary,1263876132 +238421,1962,Southern theme,1263876134 +238421,2019,samurai,1264110251 +238421,2028,disturbing,1263874644 +238421,2028,historical,1263874639 +238421,2028,visceral,1263874635 +238421,2028,war,1263874633 +238421,2028,World War II,1263874630 +238421,2321,coming of age,1263874856 +238421,2321,stylized,1263874845 +238421,2321,surreal,1263874846 +238421,2321,witty,1263874848 +238421,2324,bittersweet,1263874507 +238421,2324,father-son relationship,1263874511 +238421,2324,heartwarming,1263874516 +238421,2324,Holocaust,1263874518 +238421,2324,survival,1263874522 +238421,2324,tear jerker,1263874521 +238421,2324,World War II,1263874530 +238421,2427,atmospheric,1263872685 +238421,2427,John Travolta,1263872689 +238421,2427,war,1263872700 +238421,2427,World War II,1263872702 +238421,2571,cyberpunk,1264109275 +238421,2571,dystopia,1264109296 +238421,2571,Keanu Reeves,1264109280 +238421,2571,martial arts,1264109277 +238421,2571,sci-fi,1264109282 +238421,2571,stylized,1264109288 +238421,2571,virtual reality,1264109285 +238421,2580,black comedy,1263876057 +238421,2580,drugs,1263876068 +238421,2580,rave,1263876070 +238421,2672,Gretchen Mol,1263875103 +238421,2672,simulated reality,1263875105 +238421,2672,virtual reality,1263875106 +238421,2686,beautiful music,1263874705 +238421,2686,history,1263874717 +238421,2686,Montreal,1263874699 +238421,2686,multinational settings,1263874722 +238421,2686,musicians,1263874728 +238421,2692,alternate endings,1263874662 +238421,2692,heist,1263874674 +238421,2692,intense,1263874671 +238421,2858,black comedy,1264109235 +238421,2858,dark comedy,1264109238 +238421,2858,Kevin Spacey,1264109248 +238421,2858,social commentary,1264109241 +238421,2858,surrealism,1264109243 +238421,2951,Bechdel Test:Fail,1264235396 +238421,2951,Clint Eastwood,1264235380 +238421,2951,Ennio Morricone,1264235383 +238421,2951,spaghetti western,1264235388 +238421,3030,Akira Kurosawa,1264102982 +238421,3030,Bechdel Test:Fail,1264109002 +238421,3030,samurai,1264102989 +238421,3030,sword fighting,1264102991 +238421,3030,Toshiro Mifune,1264102993 +238421,3328,assassin,1264110343 +238421,3328,deadpan,1264110358 +238421,3328,Forest Whitaker,1264110352 +238421,3328,Jim Jarmusch,1264110354 +238421,3328,mafia,1264110340 +238421,3328,samurai,1264110337 +238421,3328,stylized,1264110362 +238421,3476,flashbacks,1263873883 +238421,3476,occult,1263873878 +238421,3476,Vietnam War,1263873880 +238421,3786,Bechdel Test:Pass,1263874257 +238421,3786,coming of age,1263874244 +238421,3786,lesbian,1263874237 +238421,3786,queer,1263874241 +238421,3786,satirical,1263874239 +238421,3819,charming,1264103806 +238421,3819,food,1264103817 +238421,3819,Foodie,1264103811 +238421,3819,quirky,1264103808 +238421,3819,satirical,1264103815 +238421,3825,dancing on the bar,1263872402 +238421,3825,dumb movie,1263872388 +238421,3825,trash,1263872409 +238421,4027,Coen Brothers,1263873205 +238421,4027,great soundtrack,1263873189 +238421,4027,notable soundtrack,1263873185 +238421,4027,Quirky,1263873194 +238421,4027,Southern theme,1263873199 +238421,4389,Bechdel Test:Pass,1263876946 +238421,4389,Friendship,1263876920 +238421,4389,Girls' Boarding School,1263876923 +238421,4389,lesbian,1263876928 +238421,4754,pagan,1264103334 +238421,4754,religion,1264103329 +238421,4754,RELIGIOUS ZEALOTRY,1264103351 +238421,4754,small town,1264103354 +238421,4816,Bechdel Test:Fail,1263872581 +238421,4816,ben stiller,1263872579 +238421,4816,mindless one liners,1263872588 +238421,4816,stupid,1263872606 +238421,4878,dreamlike,1263874044 +238421,4878,enigmatic,1263874046 +238421,4878,hallucinatory,1263874048 +238421,4878,quirky,1263874058 +238421,4878,sci-fi,1263874063 +238421,4878,surreal,1263874051 +238421,4973,beautifully filmed,1263875007 +238421,4973,feel-good,1263874996 +238421,4973,Paris,1263874998 +238421,4973,quirky,1263875000 +238421,4973,romance,1263875001 +238421,4973,whimsical,1263875002 +238421,4993,fantasy,1263873559 +238421,4993,fantasy world,1263873561 +238421,4993,high fantasy,1263873557 +238421,4993,wizards,1263873565 +238421,5266,Bechdel Test:Pass,1263875927 +238421,5266,Forest Whitaker,1263875937 +238421,5266,Jodie Foster,1263873230 +238421,5266,strong room,1263873235 +238421,5299,chick flick,1263874562 +238421,5299,culture shock,1263874581 +238421,5299,girlie movie,1263874566 +238421,5299,Strong Women,1263874570 +238421,5378,George Lucas,1263872647 +238421,5378,romance,1263872654 +238421,5378,sci-fi,1263872669 +238421,5378,sequel,1263872651 +238421,5378,space,1263872667 +238421,5378,Star Wars,1263872656 +238421,5418,Bechdel Test:Fail,1263874360 +238421,5418,espionage,1263874345 +238421,5418,memory,1263874365 +238421,5418,spy,1263874348 +238421,5420,badly written,1263872831 +238421,5420,dull,1263872831 +238421,5420,encryption,1263872840 +238421,5420,Native Americans,1263872843 +238421,5463,bad plot,1263872359 +238421,5463,plot,1263872370 +238421,5617,BDSM,1263875195 +238421,5617,black comedy,1263875198 +238421,5617,Maggie Gyllenhaal,1263875201 +238421,5617,romance,1263875206 +238421,5618,beautiful,1263875852 +238421,5618,Bechdel Test:Pass,1263875843 +238421,5618,fairy tale,1263875849 +238421,5618,fantasy,1263875848 +238421,5618,Hayao Miyazaki,1263875817 +238421,5618,strong female lead,1263875830 +238421,5618,Studio Ghibli,1263875823 +238421,5902,Charlie Kaufman,1263872556 +238421,5902,surreal,1263872544 +238421,5952,based on a book,1263873623 +238421,5952,fantasy,1263873616 +238421,5952,fantasy world,1263873619 +238421,5952,high fantasy,1263873614 +238421,5971,anime,1263871873 +238421,5971,Cute!,1263871894 +238421,5971,Hayao Miyazaki,1263871876 +238421,6197,David Cronenberg,1264104124 +238421,6197,disturbing,1264104122 +238421,6197,mental illness,1264104127 +238421,6218,Bechdel Test:Pass,1263876346 +238421,6218,culture clash,1263876357 +238421,6218,england,1263876362 +238421,6218,father daughter relationship,1263876360 +238421,6218,india,1263876351 +238421,6218,london,1263876374 +238421,6218,soccer,1263876368 +238421,6218,sports,1263876371 +238421,6377,animation,1263876113 +238421,6377,father-son relationship,1263876101 +238421,6377,feel good movie,1263876104 +238421,6377,Pixar,1263876098 +238421,6377,underwater,1263876107 +238421,6502,British,1263876643 +238421,6502,post-apocalyptic,1263876645 +238421,6502,sci-fi,1263876660 +238421,6502,Sexualized violence,1263876663 +238421,6502,Zombie,1263876650 +238421,6539,adventure,1263874920 +238421,6539,Bechdel Test:Fail,1263874936 +238421,6539,Johnny Depp,1263874928 +238421,6539,pirates,1263874924 +238421,6539,swashbuckler,1263874922 +238421,6645,classic,1264103929 +238421,6645,dystopia,1264103926 +238421,6645,George Lucas,1264103931 +238421,6645,robots,1264103940 +238421,6645,sci-fi,1264103933 +238421,6645,surveillance,1264103935 +238421,6645,white,1264103938 +238421,6721,Jet Li,1264104296 +238421,6721,wuxia,1264104297 +238421,6934,sequel,1263872518 +238421,6947,Bechdel Test:Fail,1263873436 +238421,6947,historical,1263873451 +238421,6947,Russell Crowe,1263873446 +238421,6947,seafaring,1263873444 +238421,7034,adolescence,1263876876 +238421,7034,Bechdel Test:Pass,1263876892 +238421,7034,lesbian,1263876873 +238421,7034,mother daughter relationship,1263876884 +238421,7034,small town,1263876877 +238421,7034,social commentary,1263876880 +238421,7099,Hayao Miyazaki,1263875783 +238421,7099,post-apocalyptic,1263875790 +238421,7099,sci-fi,1263875786 +238421,7099,strong female lead,1263875795 +238421,7099,Studio Ghibli,1263875785 +238421,7153,based on a book,1263873597 +238421,7153,fantasy,1263873583 +238421,7256,mountain climbing,1263875068 +238421,7256,mountains,1263875083 +238421,7256,near death,1263875085 +238421,7256,true story,1263875088 +238421,7256,watch again,1263875087 +238421,7348,David Mamet,1264103966 +238421,7348,mamet,1264103963 +238421,7361,imagination,1263874028 +238421,7361,Jim Carrey,1263874010 +238421,7361,memory,1263874025 +238421,7361,quirky,1263874022 +238421,7361,romance,1263874019 +238421,7361,sci-fi,1263874016 +238421,7361,thought-provoking,1263874015 +238421,7445,Denzel Washington,1263873516 +238421,7445,great cinematography,1263873518 +238421,7445,revenge,1263873527 +238421,8253,Hayao Miyazaki,1263874210 +238421,8581,computers,1264103585 +238421,8581,geeks,1264103587 +238421,8581,history,1264103589 +238421,8581,true story,1264103592 +238421,8961,Pixar,1263873780 +238421,8961,super-hero,1263873786 +238421,9018,documentary,1264336928 +238421,9018,journalism,1264336922 +238421,9018,Middle East,1264336931 +238421,26131,Africa,1264102914 +238421,26131,Bechdel Test:Fail,1264102951 +238421,26131,colonialism,1264102873 +238421,26131,France,1264102905 +238421,26131,french movie,1264102900 +238421,26131,gritty,1264102908 +238421,26131,historical,1264102875 +238421,26131,history,1264102878 +238421,26131,revolutionary,1264102888 +238421,26131,terrorism,1264102892 +238421,26131,torture (scene),1264102894 +238421,26662,Hayao Miyazaki,1263875991 +238421,26662,Studio Ghibli,1263875993 +238421,26662,witch,1263875998 +238421,27721,Audrey Tautou,1263871972 +238421,27721,jodie foster,1263871980 +238421,27721,Romance,1264109155 +238421,27721,World War I,1264109152 +238421,27904,good animation,1263872172 +238421,27904,Keanu Reeves,1263872158 +238421,27904,surreal,1263872167 +238421,27904,surrealism,1263872148 +238421,30749,racism,1263872071 +238421,30749,true story,1263872051 +238421,30749,war,1263872059 +238421,31590,Bechdel Test:Fail,1264121263 +238421,31590,crime,1264121256 +238421,31590,cynical,1264121236 +238421,31590,tense,1264121237 +238421,32587,dark,1263876855 +238421,32587,visually appealing,1263876849 +238421,34072,antarctica,1263873503 +238421,34072,beautiful,1263873481 +238421,34072,beautifully filmed,1263873479 +238421,34072,documentary,1263873477 +238421,34072,morgan freeman,1263873483 +238421,34072,penguins,1263873490 +238421,34072,wildlife,1263873492 +238421,34153,disability,1263873262 +238421,34153,documentary,1263873282 +238421,34153,LIVING WITH DISABILITY,1263873271 +238421,34153,sports,1263873268 +238421,34153,wheelchair badass,1263873293 +238421,34271,hip hop,1264103687 +238421,34271,prostitution,1264103678 +238421,37382,biography,1264103430 +238421,37382,inspired by a real-life person,1264103424 +238421,37382,Keira Knightley,1264103407 +238421,37727,Jodie Foster,1263873977 +238421,37733,intense,1263873920 +238421,37733,negative portrayal of violence,1263873947 +238421,37733,Violence,1263873912 +238421,37733,violent,1263873914 +238421,42004,complex characters,1263876758 +238421,42004,gender identity,1263876743 +238421,42004,glbt,1263876747 +238421,42004,transgender,1263876749 +238421,42004,transsexuals,1263876750 +238421,44199,Clive Owen,1264110459 +238421,44199,Denzel Washington,1264110461 +238421,44199,good story,1264110472 +238421,44199,heist,1264110470 +238421,44199,intelligent thriller,1264110457 +238421,44199,Jodie Foster,1264110464 +238421,45720,Bechdel Test:Pass,1263874118 +238421,45720,chickflick,1263874135 +238421,45720,New York,1263874126 +238421,48385,anti-Semitism,1263872336 +238421,48385,crude humor,1263872327 +238421,48385,mockumentary,1263872316 +238421,48385,Sacha Baron Cohen,1263872319 +238421,48394,atmospheric,1263873133 +238421,48394,bittersweet,1263873152 +238421,48394,disturbing,1263873155 +238421,48394,fairy tale,1263873136 +238421,48394,imagination,1263873159 +238421,48394,surreal,1263873137 +238421,49272,Bechdel Test:Fail,1263874326 +238421,49272,espionage,1263874314 +238421,49272,James Bond,1263874304 +238421,49272,spy,1263874317 +238421,50601,based on a book,1263874282 +238421,50601,sad,1263874276 +238421,50601,teen relationships,1263874285 +238421,52579,Edith Piaf,1264104159 +238421,52579,French,1264104161 +238421,53125,BORING!,1263872234 +238421,53125,confusing,1263872275 +238421,53125,seafaring,1263872262 +238421,53125,sequel,1263872251 +238421,54259,based on a book,1263875170 +238421,54259,fairy tale,1263875172 +238421,54259,Neil Gaiman,1263875167 +238421,55080,Bechdel Test: Pass,1263875270 +238421,55080,grim,1263875295 +238421,55080,public radio,1263875289 +238421,55080,revenge,1264109095 +238421,55080,vigilante,1263875284 +238421,55442,animation,1263873024 +238421,55442,Bechdel Test:Pass,1264122568 +238421,55442,black and white,1263873028 +238421,55442,chick flick,1263873032 +238421,55442,coming of age,1263873034 +238421,55442,History,1263873041 +238421,55442,Iran,1263873036 +238421,55442,Middle East,1263873055 +238421,55442,politics,1263873044 +238421,55442,revolution,1263873051 +238421,55451,Bechdel Test:Pass,1263873747 +238421,55451,lesbian,1263873736 +238421,55451,MOTHERS AND DAUGHTERS,1263873741 +238421,55451,romance,1263873753 +238421,55820,brutal,1263873378 +238421,55820,coen brothers,1263873368 +238421,55820,crime,1263873381 +238421,55820,dark,1263873383 +238421,55820,great acting,1263873371 +238421,55820,Javier Bardem,1263873373 +238421,56367,excellent script,1263871940 +238421,56367,witty,1263871950 +238421,56757,Bechdel Test:Fail,1263876825 +238421,56757,Johnny Depp,1263876805 +238421,56757,Musical,1263876808 +238421,56757,serial killer,1263876812 +238421,56757,Tim Burton,1263876807 +238421,58559,Batman,1263872940 +238421,58559,dark,1263872936 +238421,58559,Morgan Freeman,1263872943 +238421,58559,superhero,1263872949 +238421,60684,cold war,1263876692 +238421,60684,nuclear war,1263876694 +238421,60684,sci-fi,1263876679 +238421,60684,superhero,1263876684 +238421,60937,Jet Li,1263872786 +238421,60937,sequel,1263872780 +238421,60937,should'a stopped at 2,1263872765 +238421,63062,angelina jolie,1264336828 +238421,63062,based on a true story,1264336821 +238421,63062,Bechdel Test:Pass,1264336849 +238421,63062,Clint Eastwood,1264336825 +238421,63062,mother-son relationship,1264336841 +238421,63062,period piece,1264336830 +238421,63113,Daniel Craig,1263874771 +238421,63113,Judi Dench,1263874777 +238421,68237,alter ego,1263873342 +238421,68237,Bechdel Test:Fail,1263873315 +238421,68237,cloning,1263873340 +238421,68237,dystopia,1263873332 +238421,68237,moon,1263873319 +238421,68237,Sci-fi,1263873323 +238421,68237,solitude,1263873321 +238421,68237,space,1263873326 +238421,68522,beautiful scenery,1264104072 +238421,68522,camerawork,1264104074 +238421,68522,ecology,1264104102 +238421,68522,nature,1264104079 +238421,68522,scenic,1264104081 +238421,68522,short version of tv series,1264104092 +238421,69481,anti-war,1263873817 +238421,69481,Bechdel Test:Fail,1263873844 +238421,69481,intense,1263873821 +238421,69481,Iraq,1263873812 +238421,69481,Iraq War,1263873811 +238421,69481,Middle East,1263873809 +238421,69481,thoughtful,1263873828 +238421,69481,War,1263873807 +238421,70286,aliens,1263874076 +238421,70286,intelligent sci-fi,1263874080 +238421,70286,sci-fi,1263874082 +238421,70286,social commentary,1263874086 +238421,70286,thoughtful,1263874090 +238421,70286,violence,1263874095 +238421,72737,animation,1263874951 +238421,72737,bayou,1263874969 +238421,72737,Bechdel Test:Pass,1263874955 +238421,72737,New Orleans,1263874961 +238421,72998,3d,1264109026 +238421,72998,Bechdel Test:Fail,1263876395 +238421,72998,cgi,1264109021 +238421,72998,graphic design,1263876425 +238421,72998,nature vs. civilization,1263876420 +238421,72998,racism,1263876403 +238421,72998,sci-fi,1263876415 +238421,72998,Sigourney Weaver,1263876408 +238421,72998,visually stunning,1263876413 +238444,2459,atmospheric,1341703222 +238444,2459,disturbing,1341703225 +238444,2459,gothic,1341703232 +238444,2580,black comedy,1340493806 +238444,2580,cliches,1340545178 +238444,2580,comedy,1340493814 +238444,2580,multiple storylines,1340493822 +238444,2580,no character development,1340545168 +238444,3101,Glenn Close,1342191443 +238444,3101,Michael Douglas,1342191441 +238444,3101,Nudity (Topless - Brief),1342191437 +238444,3101,personality disorder,1342191425 +238444,3101,Slick pychodrama,1342191432 +238444,3101,stalker,1342191429 +238444,5855,boring,1342720784 +238444,5855,cult film,1342720777 +238444,5855,soundtrack,1342720781 +238444,8914,mindfuck,1342032030 +238444,48043,alternate reality,1341861404 +238444,48043,dreamlike,1341861407 +238444,48043,emotional,1341861410 +238444,48043,inspirational,1341861413 +238444,48043,multiple storylines,1341861416 +238444,48043,nonlinear,1341861420 +238444,48043,philosophical,1341861422 +238444,48043,religion,1341861425 +238444,48043,sci-fi,1341861427 +238444,48043,surreal,1341861429 +238444,48043,thought-provoking,1341861431 +238444,48043,time travel,1341861438 +238444,48043,twist ending,1341861443 +238444,48043,visually appealing,1341861434 +238444,48082,artsy,1342207131 +238444,48082,dreamlike,1342207124 +238444,48082,love,1342207121 +238444,48082,mental illness,1342207104 +238444,48082,psychological,1342207113 +238444,48082,psychology,1342207115 +238444,48082,quirky,1342207107 +238444,48082,surreal,1342207110 +238444,51662,action,1341079169 +238444,51662,artistic,1341079164 +238444,51662,atmospheric,1341079182 +238444,51662,Frank Miller,1341079176 +238444,79357,cinematography,1342031887 +238444,79357,coming of age,1342031891 +238444,79357,flashbacks,1342031897 +238444,79357,immortality,1342031909 +238444,79357,nonlinear,1342031917 +238444,79357,philosophy,1342031919 +238444,79357,plot,1342031922 +238444,79357,romance,1342031913 +238444,79357,surreal,1342031926 +238444,79357,thought provoking,1342031928 +238444,79357,time travel,1342031931 +238444,90531,self-destruction,1342219699 +238447,1090,horrors of war,1445875877 +238447,1090,vietnam,1445875871 +238447,1090,Vietnam War,1445875880 +238447,3578,violence,1445875826 +238447,3578,violent,1445875829 +238447,5377,chick flick,1445875789 +238447,5377,comedy,1445875769 +238447,5377,Hugh Grant,1445875800 +238447,5377,romance,1445875773 +238447,5377,whimsical,1445875782 +238447,6539,comedy,1445875457 +238447,6539,keira knightley,1445875461 +238447,6539,romance,1445875471 +238447,8533,chick flick,1445875546 +238447,8533,romance,1445875520 +238447,91653,Based on True Story,1445875665 +238447,110750,Based on True Story,1446596538 +238447,110750,Christian,1446596546 +238447,125916,erotic,1445875395 +238447,125916,nudity (topless),1445875409 +238451,4973,Wonderful,1139822376 +238451,5956,Boring?,1139822330 +238487,260,Carrie Fisher,1433164439 +238487,260,George Lucas,1433164382 +238487,260,han shot first,1433164407 +238487,260,Harrison Ford,1433164389 +238487,260,Mark Hamill,1433164391 +238487,260,space adventure,1433164368 +238501,6556,devastating closing shot,1273162524 +238501,6556,great use of music,1273162516 +238501,56367,some nice songs,1273162439 +238501,56367,trying too hard to be indie-cool,1273162452 +238501,56367,twee,1273162400 +238501,56367,unrealistic dialogue,1273162422 +238526,3489,zabawna przygoda,1161470540 +238526,6711,zajebiste :),1161470496 +238566,260,classic sci-fi movie..,1443595206 +238566,1196,1980s,1449414166 +238566,1196,EPIC,1449414144 +238566,1196,sci-fi,1449414149 +238567,260,classic sci-fi,1440571966 +238567,260,old FX quality,1440571990 +238573,260,saga,1440166355 +238573,260,Science Fiction,1440166337 +238573,260,space,1440166346 +238573,318,inspirational,1440166470 +238573,318,jail break,1440166451 +238573,30707,boxing,1440166503 +238573,30707,drama,1440166500 +238588,5173,political corruption,1276769464 +238619,745,Aardman,1296600511 +238619,745,british,1296600508 +238619,924,based on a book,1296598735 +238619,1111,documentary,1296600433 +238619,3000,fantasy,1296598713 +238619,4306,satire,1296600609 +238619,5971,anime,1296600449 +238619,7099,post-apocalyptic,1296598686 +238619,7099,sci-fi,1296598695 +238619,7099,Studio Ghibli,1296598690 +238619,55442,coming of age,1296600584 +238619,63082,Oscar (Best Picture),1296599954 +238619,63082,social commentary,1296599940 +238619,64614,friendship,1296598661 +238619,79702,fight scenes,1296599594 +238619,79702,quirky,1296599588 +238619,79702,stylized,1296599591 +238685,116797,boring,1445501698 +238685,116797,hisorically inaccurate,1445501708 +238688,3334,sort of boring despite fab Lauren,1137208428 +238688,7215,funny,1137208365 +238688,8337,some funny pissed off Bogie scenes,1137208408 +238703,260,classic,1435885873 +238703,260,classic sci-fi,1435885890 +238703,260,EPIC,1435885915 +238703,260,sci-fi,1435885882 +238706,1740,action homage,1272962665 +238706,1740,Disney,1272962665 +238708,260,"sf,science fiction",1436037840 +238708,260,Star Wars,1436037846 +238755,260,adventure,1439938167 +238755,260,space,1439938160 +238768,91970,architecture,1453843968 +238768,91970,design,1453843977 +238768,91970,humor,1453844000 +238768,91970,Le Corbusier,1453843974 +238768,91970,snob,1453843971 +238772,115617,robotics,1436623456 +238777,42734,little red riding hood,1173500530 +238777,51575,John Travolta,1174961678 +238777,51575,Martin Lawrence,1174961680 +238777,51575,roadtrip,1174961670 +238781,5796,Psychedelic,1437098941 +238781,40337,Jewish,1426716413 +238781,64497,apocalyptic,1245213240 +238781,64497,corny,1245213263 +238781,64497,liberal propaganda,1245213159 +238787,33166,Dialog & characters ring true despite pat coincidence & stereotyping,1172345617 +238787,38038,animation,1138433806 +238787,44555,Germany,1171768696 +238792,31101,apartheid,1229011320 +238801,1,toys,1302476883 +238801,1079,black comedy,1302474021 +238801,1079,dark comedy,1302474010 +238801,1079,john cleese,1302474026 +238801,1079,quirky,1302474041 +238801,1079,silly,1302474049 +238801,2138,dark animated film,1302474818 +238801,2138,psychic character,1302474799 +238801,2138,rabbits,1302474664 +238801,2139,Don Bluth,1302474911 +238801,2139,mice,1302474900 +238801,2139,rats,1302474893 +238801,2761,friendship,1302474503 +238801,2761,robot,1302474518 +238801,2761,single mother,1302474532 +238801,2761,small town,1302474497 +238801,4027,black comedy,1302475828 +238801,4027,george clooney,1302475885 +238801,4027,prison escape,1302475848 +238801,4027,prisoners,1302475837 +238801,4027,quirky,1302475852 +238801,4886,monsters,1302476440 +238801,6377,father-son relationship,1302476271 +238801,6377,Pixar,1302476285 +238801,6773,bicycling,1302474560 +238801,6773,gangsters,1302474569 +238801,6773,kidnapping,1302474593 +238801,6773,mafia,1302474599 +238801,6773,stylized,1302474611 +238801,50872,cooking,1302476373 +238801,50872,food,1302476384 +238801,50872,France,1302476365 +238801,50872,rats,1302476357 +238801,51255,action,1302473843 +238801,51255,black comedy,1302473799 +238801,51255,british comedy,1302473728 +238801,51255,buddy movie,1302473790 +238801,51255,dark comedy,1302474071 +238801,51255,police,1302473865 +238801,51255,Simon Pegg,1302473738 +238801,51255,small towns.,1302473822 +238801,51255,twists & turns,1302473728 +238801,51255,violence,1302473751 +238801,51255,violent yet uplifting,1302473765 +238801,66097,alternate reality,1302474445 +238801,66097,dark fairy tale,1302474463 +238801,66097,fairy tale,1302474453 +238801,66097,Neil Gaiman,1302474419 +238801,69122,absurd,1302473967 +238801,69122,drinking,1302473956 +238801,71899,asperger syndrome,1302474217 +238801,71899,australia,1302474235 +238801,71899,black comedy,1302474204 +238801,71899,dark comedy,1302474193 +238801,71899,friendship,1302474185 +238801,71899,mental illness,1302474210 +238801,71899,touching,1302474224 +238801,72226,based on a book,1302474388 +238801,72226,bittersweet,1302474362 +238801,72226,family issues,1302474345 +238801,72226,quirky,1302474368 +238801,72226,Roald Dahl,1302474353 +238801,79592,buddy movie,1302475037 +238801,79592,police,1302475067 +238801,81845,disability,1302475433 +238801,81845,feel-good,1302475411 +238801,81845,friendship,1302475424 +238801,81845,historical,1302475400 +238801,81845,speech impediment,1302475451 +238803,50,Kevin Spacey,1382277875 +238803,50,New York City,1382277881 +238803,50,twist ending,1382277879 +238803,1968,Comedy,1382278009 +238803,1968,cult film,1382278014 +238803,2762,Bruce Willis,1382278386 +238803,2762,great ending,1382278390 +238803,2762,twist ending,1382278381 +238803,79132,alternate reality,1382281320 +238803,79132,sci-fi,1382281329 +238815,56367,indie,1274059774 +238815,59315,Robert Downey Jr.,1274059749 +238820,6776,19th century,1314557262 +238838,50872,animation,1449954680 +238838,50872,france,1449954677 +238838,50872,funny,1449954670 +238838,50872,Ratatouille,1449954660 +238859,1721,romance,1432140908 +238859,55768,animation_comedy,1432140856 +238859,59784,animation_comdey,1432140983 +238859,73290,loyal_friend,1432141023 +238860,920,Civil War,1422780445 +238860,920,classic,1422780466 +238860,920,land,1422780458 +238860,1947,dance,1422779266 +238860,1947,New York City,1422779273 +238860,1947,talent,1422779258 +238860,2336,costumes,1422779362 +238860,2336,England,1422779353 +238860,2336,historical,1422779349 +238860,2431,inspirational,1422779168 +238860,2431,medicien,1422779174 +238860,3296,high school,1422780043 +238860,3296,Sidney Poitier,1422780058 +238860,3296,teaching,1422780036 +238860,4474,friendship,1422780276 +238860,4474,illness,1422780281 +238860,4474,loyalty,1422780290 +238860,6178,blindness,1422779564 +238860,6178,child abuse,1422779582 +238860,6178,relationship,1422779573 +238860,6639,blindness,1422780197 +238860,6639,classic thriller,1422780202 +238860,6639,tense,1422780219 +238860,6735,1960s,1422780361 +238860,6735,Janis Joplin,1422780377 +238860,6735,music,1422780355 +238860,8661,family,1422779676 +238860,8661,historical,1422779658 +238860,8661,western,1422779683 +238860,37475,adult children,1422773909 +238860,37475,heartwarming,1422773909 +238860,37475,intense,1422773909 +238860,81845,brothers,1422779442 +238860,81845,historical,1422779423 +238860,81845,inspirational,1422779433 +238865,260,nostalgia,1443711853 +238865,260,outdated,1443711822 +238869,4223,want to own,1176691425 +238884,260,plotless,1438311154 +238884,260,preposterous,1438311164 +238894,593,anthony hopkins,1421664614 +238894,593,horror,1421664614 +238894,593,police investigation,1421664614 +238894,27706,dark comedy,1421739192 +238894,87079,rape,1418722667 +238894,87079,sexual assault,1418722666 +238894,93840,joss whedon,1421739238 +238912,7449,pointless,1152034604 +238918,4941,So bad it's good,1210385286 +238926,260,1997,1433976457 +238926,260,despecialized edition,1433976406 +238979,593,Romantic longing,1422486167 +238995,1584,aliens,1429147508 +238995,1584,astronomy,1437540484 +238995,1584,Carl Sagan,1437540470 +238995,1584,first contact,1429147498 +238995,1584,future,1437540450 +238995,1584,mathematics,1437540452 +238995,1584,outer space,1437540456 +238995,1584,sci-fi,1429147531 +238995,1584,science,1429147520 +238995,1584,science fiction,1429147515 +238995,1584,space,1429147490 +238995,1584,space travel,1429147500 +238995,4370,androids,1429147617 +238995,4370,artificial intelligence,1429147596 +238995,4370,future,1429147600 +238995,4370,robots,1429147614 +238995,4370,sci-fi,1429147605 +238995,8644,action,1429147764 +238995,8644,android(s)/cyborg(s),1429147750 +238995,8644,artificial intelligence,1429147748 +238995,8644,future,1429147756 +238995,8644,futuristic,1429147772 +238995,8644,robot,1429147754 +238995,8644,robots,1429147757 +238995,8644,sci-fi,1429147788 +238995,8644,thought provoking,1429147779 +238995,8644,thought-provoking,1429147769 +238995,90405,future,1437345515 +238995,90405,thought-provoking,1437345499 +238995,103228,giant robots,1429147935 +238995,103228,mecha,1429147943 +238995,103228,robots,1429147929 +238995,103228,sci-fi,1429147939 +238995,109487,artificial intelligence,1429147416 +238995,109487,good science,1429147392 +238995,109487,physics,1429147388 +238995,109487,relativity,1429147381 +238995,109487,space,1429147410 +238995,109487,space travel,1429147424 +238995,109487,thought-provoking,1429147384 +238995,109487,time travel,1429147406 +238995,109487,time-travel,1429147378 +238995,111759,action,1429153485 +238995,111759,Alien Invasion,1429153488 +238995,111759,aliens,1429153481 +238995,111759,future,1429153491 +238995,111759,sci-fi,1429153478 +238995,111759,time loop,1429153473 +238995,111759,time travel,1429153476 +238995,112087,fantasy,1429147460 +238995,112087,mind bending,1429147453 +238995,113741,mind bending,1431324404 +238995,113741,parallel universe,1431324406 +238995,120466,AI,1437345135 +238995,120466,artificial intelligence,1437345118 +238995,120466,Funny,1437345178 +238995,120466,future,1437345140 +238995,120466,robots,1437345115 +239016,3830,Cult classic,1203313975 +239016,4015,Jennifer Garner,1175737625 +239016,4310,Jennifer Garner,1175737577 +239016,5989,Jennifer Garner,1175737533 +239016,6157,Jennifer Garner,1175737368 +239016,6698,Emmy Rossum,1201686517 +239016,7444,Jennifer Garner,1175737474 +239016,7453,Jared Padalecki,1215644625 +239016,33164,Jared Padalecki,1215644766 +239016,33166,overrated,1201683312 +239016,35836,overrated,1201683465 +239016,45447,would have been better if I hadn't read the book,1201687138 +239016,50792,Jennifer Garner,1175737336 +239016,54503,Let down,1201683607 +239016,54736,Jennifer Garner,1245046038 +239016,56885,Denzel Washington,1201686553 +239040,133389,hindi,1453084634 +239041,8533,movie to see,1213870522 +239041,8533,Romance,1213870508 +239041,8533,The most romantic,1213870517 +239041,8533,To See,1213870528 +239041,54259,based on a book,1213870600 +239041,54259,coming of age,1213870596 +239041,54259,crude humor,1213870591 +239041,54259,fairy tale,1213870578 +239041,54259,fairy tale romance,1213870588 +239053,27831,British gangster,1225397137 +239053,27831,daniel craig,1225397146 +239053,27831,drugs,1225397134 +239053,27831,Exquisite plotting.,1225397143 +239053,27831,guy ritchie,1225397129 +239067,2422,Okinawa,1182122559 +239067,52281,Quentin Tarantino,1178215574 +239083,750,Stanley Kubrick,1452553708 +239083,134130,Improvisation,1452553757 +239083,134130,matt damon,1452553750 +239083,134130,realistic,1452553755 +239083,134130,sci-fi,1452553748 +239083,134130,Space,1452553728 +239083,134130,stranded hero,1452553760 +239083,135288,drama,1452553794 +239083,135288,Ian McKellen,1452553782 +239086,54503,comedy,1429558603 +239086,54503,crude humor,1429558607 +239096,356,classic,1454010707 +239096,356,Funny,1454010714 +239177,260,Action,1444768028 +239177,260,adventure,1444768016 +239179,88125,fantasy,1433880742 +239179,88125,magician,1433880742 +239179,88125,teen,1433880742 +239182,71131,Louis Theroux,1320275829 +239182,87921,gratuitous lightning,1320234123 +239182,87921,shower scene,1320234177 +239182,87921,title sequence,1320234314 +239185,3189,1940s,1272131135 +239185,6927,Wentworth Miller,1272133170 +239185,62553,based on a book,1272130943 +239185,69654,Dominic Purcell,1271019871 +239185,69654,Wentworth Miller,1271019882 +239188,34162,classic,1137978368 +239198,2232,intense,1453854663 +239198,2232,mindfuck,1453854656 +239198,2232,original,1453854659 +239198,2232,psychological,1453854650 +239198,2232,psychology,1453854651 +239198,2232,scifi,1453854654 +239198,2232,survival horror,1453854658 +239198,2232,weird,1453854652 +239198,6281,secrets,1453853805 +239198,8957,brutal,1453852328 +239198,8957,claustrophobic,1453852330 +239198,8957,clever,1453852309 +239198,8957,detective,1453852331 +239198,8957,Disturbing,1453852315 +239198,8957,franchise,1453852333 +239198,8957,gore,1453852312 +239198,8957,great ending,1453852326 +239198,8957,mindfuck,1453852313 +239198,8957,original,1453852322 +239198,8957,psychological,1453852324 +239198,8957,serial killer,1453852321 +239198,8957,surprise ending,1453852308 +239198,8957,suspense,1453852316 +239198,8957,torture,1453852311 +239198,8957,twist ending,1453852306 +239198,39446,clever,1453852342 +239198,39446,gore,1453852344 +239198,39446,serial killer,1453852345 +239198,39446,suspense,1453852347 +239198,39446,torture,1453852348 +239198,58975,Nudity (Topless),1453852493 +239198,77307,incest,1453854038 +239198,77307,sex,1453854041 +239198,78349,claustrophobic,1453853116 +239198,78349,experiment,1453853104 +239198,78349,group psychology,1453853098 +239198,78349,isolation,1453853111 +239198,78349,logic,1453853115 +239198,78349,mindfuck,1453853107 +239198,78349,psychological,1453853119 +239198,93840,clever,1453854219 +239198,93840,excellent cinematography,1453854229 +239198,93840,original plot,1453854233 +239198,93840,plot twist,1453854223 +239198,93840,weird,1453854225 +239198,104879,great ending,1453851783 +239198,104879,thriller,1453851779 +239198,144482,Game,1453852431 +239198,144482,Game theory,1453852430 +239199,44,Christopher Lambert,1242321447 +239199,44,No blood and gore,1242321487 +239199,44,No Fatalities,1242321468 +239199,393,Campy,1247104951 +239199,519,Bad acting,1242320630 +239199,519,No Peter Weller,1242320591 +239199,519,PG-13,1242320575 +239199,1197,romance,1242320464 +239199,1215,Bruce Campbell,1242318638 +239199,1215,Chainsaw,1242318688 +239199,1215,comedy,1242318610 +239199,1215,Sam Raimi,1242318675 +239199,1270,time travel,1242318415 +239199,1274,animation,1247104994 +239199,1274,visually stunning,1247105000 +239199,1562,Bad one liners,1242186143 +239199,1562,Batman,1247105255 +239199,1562,George Clooney,1242186137 +239199,1562,Joel Schumacher,1242186134 +239199,1587,Arnold Schwarzenegger,1242319910 +239199,1681,Acting,1242319036 +239199,1681,bad cgi,1242319012 +239199,1681,Everything,1242319027 +239199,1924,Bela Lugosi,1242318575 +239199,1924,cheesy,1242318564 +239199,1924,Edward D. Wood Jr.,1242318580 +239199,1924,so bad it's funny,1242318523 +239199,2011,2015,1242320431 +239199,2011,Christopher Lloyd,1242320407 +239199,2011,Michael J. Fox,1242320405 +239199,2011,time travel,1242320384 +239199,2012,Christopher Lloyd,1242318465 +239199,2012,Michael J. Fox,1242318460 +239199,2012,western,1242318452 +239199,2019,Akira Kurosawa,1242318033 +239199,2019,classic,1242318057 +239199,2019,toshiro mifune,1242318047 +239199,2366,classic,1242319140 +239199,2366,Stop-motion special effects,1242319153 +239199,2449,80s,1262124824 +239199,2449,Acting,1242318138 +239199,2449,cheesy,1262124826 +239199,2449,guilty pleasure,1262124801 +239199,2628,Acting,1242320286 +239199,2628,George Lucas,1242320198 +239199,2628,Jake Lloyd,1242320280 +239199,2628,Jar Jar Binks,1242320254 +239199,2644,Classic,1242319351 +239199,2693,Funny,1242319281 +239199,2693,Star Trek,1242319286 +239199,2716,Bill Murray,1242317436 +239199,2716,comedy,1242317458 +239199,2716,Dan Akroyd,1242317444 +239199,2716,Harold Ramis,1242317447 +239199,2717,Bill Murray,1242317494 +239199,2717,comedy,1242317502 +239199,2985,80s,1242320669 +239199,2985,Paul Verhoeven,1242320643 +239199,2985,Peter Weller,1242320658 +239199,3489,Bob Hoskins,1242320990 +239199,3489,Dustin Hoffman,1242320987 +239199,3489,Robin Williams,1242320992 +239199,3671,Gene Wilder,1242318790 +239199,3671,Mel Brooks,1242318793 +239199,4006,Animation,1242320101 +239199,4006,Leonard Nimoy,1242320105 +239199,4006,Orson Welles,1242320106 +239199,4104,Jim Varney,1242320880 +239199,4133,80s nostalgia,1242318329 +239199,4133,Dolph Lundgren,1242318354 +239199,4133,Frank Langella,1242318338 +239199,4135,80s,1242319762 +239199,4135,funny,1242319833 +239199,4135,Horror,1242319837 +239199,4135,Monsters,1242319758 +239199,4135,Rudy,1242319802 +239199,4553,humorous,1242321109 +239199,4553,John Carpenter,1242321106 +239199,4553,Roddy Piper,1242321124 +239199,4683,50000 on Double Dragon,1242318927 +239199,4683,Nintendo,1242318868 +239199,4683,Power Glove,1242318970 +239199,4683,Super Mario Bros. 3,1242318882 +239199,4816,ben stiller,1242317282 +239199,4816,mindless one liners,1242317295 +239199,4816,Owen Wilson,1242317286 +239199,4816,Will Ferrell,1242317280 +239199,5165,Gory,1242319095 +239199,5165,gruesome,1242317558 +239199,5165,Lucio Fulci,1242317544 +239199,5165,ZOMBIES,1242317549 +239199,5585,Jim Varney,1242320902 +239199,5785,Funny,1242321043 +239199,6882,Acting,1242186045 +239199,6882,Action,1242186086 +239199,6882,alien invasion,1242186012 +239199,6882,aliens,1242186009 +239199,6882,time travel,1242186005 +239199,7387,George A. Romero,1242321391 +239199,7387,zombies,1242321395 +239199,7892,Sonny Chiba,1242317993 +239199,8676,acting,1247105059 +239199,8676,cheesy,1247105065 +239199,8676,low budget,1247105077 +239199,8810,Lance Henriksen,1242320733 +239199,8810,Paul Anderson,1242320724 +239199,8810,PG-13,1242320763 +239199,8906,cannibals,1242319648 +239199,8906,gruesome,1242319653 +239199,8906,Ruggero Deodato,1242319674 +239199,27801,acting,1247104704 +239199,27801,fighting,1247104687 +239199,27801,great stunts,1247104680 +239199,27801,martial arts,1247104683 +239199,33629,90s,1242321337 +239199,33629,Comedy,1242321221 +239199,33629,Jack Black,1242321208 +239199,33629,Rollerblading,1242321264 +239199,33629,Seth Green,1242321234 +239199,34150,Campy,1242317893 +239199,34150,Special Effects,1242317923 +239199,41569,Peter Jackson,1242319180 +239199,45499,Halle Berry,1242317733 +239199,45499,Hugh Jackman,1242317726 +239199,45499,Too many deaths,1242317849 +239199,45728,Rosario Dawson,1242319540 +239199,45728,Unnecessary sequel,1242319520 +239199,48322,Funny,1242321072 +239199,53996,Michael Bay,1242319995 +239199,53996,Peter Cullen,1242320058 +239199,53996,Special Effects,1242320010 +239199,54881,arcade,1242319241 +239199,54881,documentary,1242319235 +239199,54881,donkey kong,1242319219 +239199,54881,underdog,1242319226 +239199,54881,video games,1242319222 +239199,68358,Corvette,1242317663 +239199,68358,Eric Bana,1242317615 +239199,68358,Nero,1242317641 +239199,68358,sci fi,1242185938 +239199,68358,Star Trek,1242185889 +239199,68358,time travel,1242185941 +239199,68358,Too much comic relief,1242185959 +239199,69526,action,1247104626 +239199,69526,Megan Fox,1247104634 +239199,69526,Shia LaBeouf,1247104640 +239199,71379,ending,1264009894 +239199,78469,Jessica Biel,1277316838 +239199,79695,acting,1282312681 +239199,79695,action packed,1282312651 +239199,79695,Dolph Lundgren,1282312705 +239199,79695,Story,1282312669 +239199,82744,acting,1295232752 +239199,82744,cliche,1295232764 +239199,82744,Dwayne Johnson,1295232722 +239199,82744,editing,1295232685 +239199,89281,bad acting,1387506085 +239199,93840,funny,1334546404 +239199,93840,original plot,1334546391 +239199,102880,bad acting,1391528347 +239199,102880,boring,1391528368 +239223,296,dark comedy,1422226538 +239223,296,great dialogue,1422226538 +239223,296,highly quotable,1422226538 +239226,2160,Antichrist,1137530081 +239243,608,black comedy,1451651903 +239243,608,Coen Brothers,1451651891 +239243,608,CRIME GONE AWRY,1451651910 +239243,608,dark comedy,1451651901 +239243,608,Steve Buscemi,1451651894 +239243,910,cross dressing,1434860426 +239243,910,farce,1434860420 +239243,910,men in drag,1434860423 +239243,910,Quotable,1434860417 +239243,910,screwball comedy,1434860414 +239243,1088,classic,1397548333 +239243,1088,coming of age,1397548330 +239243,1273,Jim Jarmusch,1443019536 +239243,1273,Roberto Benigni,1443019545 +239243,1357,mental illness,1397548350 +239243,2068,disturbing,1447574890 +239243,2068,swedish,1447574894 +239243,2502,crime gone awry,1453470431 +239243,2502,cult classic,1453470427 +239243,2502,off-beat comedy,1453470423 +239243,2502,satire,1453470419 +239243,2502,shenanigans,1453470434 +239243,4292,unions,1388623940 +239243,4741,sexuality,1434544525 +239243,4741,social criticism,1434544527 +239243,4741,swedish,1434544533 +239243,4741,witty,1434544530 +239243,5618,beautiful,1444522711 +239243,5618,Bechdel Test:Pass,1444522719 +239243,5618,coming of age,1444522718 +239243,5618,Hayao Miyazaki,1444522706 +239243,5618,Studio Ghibli,1444522707 +239243,6730,postmodernism,1449971564 +239243,6730,racial politics,1449971545 +239243,39292,plotless,1388623977 +239243,39292,politics,1388623977 +239243,44191,dystopia,1388711794 +239243,44191,social commentary,1388711792 +239243,66934,anti-hero,1443611519 +239243,66934,great soundtrack,1443611529 +239243,66934,musical,1443611531 +239243,66934,short,1443611525 +239243,82452,disney,1403568564 +239243,82452,feminism,1403568556 +239243,82452,musical,1403568560 +239243,89904,1920s,1398570594 +239243,89904,french,1398570600 +239243,89904,short,1398570594 +239243,89904,stylised,1398570594 +239243,90809,French Film,1419110000 +239243,90809,gender identity,1419110004 +239243,91094,muppets,1443611629 +239243,91094,musical,1443611638 +239243,95449,organizing,1430307839 +239243,95449,unionism,1430307844 +239243,103059,excessive smoking,1398570614 +239243,105355,coming of age,1394345596 +239243,106696,feminist,1419916572 +239243,106696,musical,1419916575 +239243,110461,Lukas Moodysson,1412986501 +239243,114028,activism,1416534274 +239243,114028,protest,1416534276 +239243,114028,queer,1416534272 +239243,114028,welsh,1416534278 +239243,115617,Animation,1447478345 +239243,115617,heartwarming,1447478359 +239243,115617,japanese influence,1447478355 +239243,115617,pixar,1447478349 +239243,115617,robotics,1447478352 +239243,116797,Alan Turing,1433544702 +239243,116797,cryptography,1433544706 +239243,141422,british history,1447279753 +239243,141422,feminism,1447279731 +239243,141422,politics,1447279740 +239243,141422,social movement,1447279737 +239243,141422,womens rights,1447279762 +239243,141749,europe,1453869369 +239243,141749,lgbt,1453869363 +239243,141749,long,1453869373 +239243,141749,transgender,1453869365 +239243,146313,climate change,1447478671 +239243,146313,indigenous,1447478677 +239243,146313,politics,1447478669 +239243,146313,social movements,1447478674 +239250,120466,androids,1431954368 +239250,120466,artificial intelligence,1431954368 +239250,120466,cyberpunk,1431954368 +239268,587,good cry,1137295137 +239268,4034,not memorable,1137295132 +239287,2355,Pixar,1139736183 +239287,8970,Depp,1139736185 +239296,5995,historical,1441126233 +239296,5995,World War II,1441126241 +239296,68954,animation,1441126336 +239296,68954,Pixar,1441126323 +239347,480,Jeff Goldblum,1413586065 +239347,480,John Williams,1413586088 +239347,480,Laura Dern,1413586065 +239347,480,Michael Crichton,1413586065 +239347,480,Richard Attenborough,1413586065 +239347,480,Sam Neill,1413586065 +239347,911,Cary Grant,1413586698 +239347,1287,Charlton Heston,1413586529 +239347,1848,adventure,1438206003 +239347,1848,funny,1438206003 +239347,1848,science fiction,1438206003 +239347,2011,Alan Silvestri,1413587603 +239347,2011,Christopher Lloyd,1413587603 +239347,2011,Michael J. Fox,1413587603 +239347,2115,Harrison Ford,1413586309 +239347,2115,John Williams,1413586273 +239347,2916,adventure,1413587148 +239347,2916,Arnold Schwarzenegger,1413587064 +239347,2916,Jerry Goldsmith,1413587148 +239347,3801,James Stewart,1413586432 +239347,109487,space travel,1421452920 +239347,109487,time travel,1421452920 +239347,109487,twisted,1421452920 +239399,6,crime,1293591183 +239399,150,science,1379797438 +239399,7827,corporate espionage,1293989169 +239399,7827,cyberpunk,1293989175 +239399,7827,Implausible plot,1293989158 +239399,7827,Plodding pace,1293989160 +239399,7827,unlikeable characters,1293989153 +239399,27831,British gangster,1294106961 +239399,27831,daniel craig,1294106971 +239399,27831,drugs,1294106966 +239399,27831,Exquisite plotting.,1294106964 +239399,27831,organized crime,1294106969 +239399,78349,confusing ending,1294024393 +239399,78349,lengthy,1294024406 +239399,78349,mediocre ending,1294024408 +239399,79057,action,1293761261 +239399,90439,business,1324680822 +239399,90439,New York City,1324680820 +239399,90439,starts intense bug ends suddenly and with no oomph,1324680810 +239403,92,what is with Robert's bangs in this movie?! GRR,1272957927 +239403,2908,Hilary Swank,1273384966 +239403,2908,Oscar (Best Actress),1273384951 +239403,2908,Tragedy,1273385001 +239403,2908,true story,1273384951 +239403,48560,coming of age,1272876473 +239403,48560,Joseph Cross,1273565391 +239403,50912,Elijah Wood,1273384703 +239403,50912,episodic,1273384703 +239403,50912,Natalie Portman,1273384703 +239403,58347,James McAvoy,1272968022 +239403,67267,Emily Blunt,1273384842 +239403,67267,Steve Zahn,1273384842 +239403,69951,Colin Farrell,1276669565 +239403,69951,Heath Ledger,1276669532 +239403,69951,Jude Law,1276669543 +239403,71899,Phillip Seymour Hoffman,1272965754 +239403,71899,Toni Collette,1272965754 +239403,71899,touching,1272965754 +239403,72998,James Cameron,1272957016 +239403,72998,Sigourney Weaver,1272957028 +239405,16,nudity,1370462358 +239405,527,Nudity,1370462507 +239405,527,Sexual content,1370462515 +239405,1221,nudity,1370462809 +239405,1674,Nudity (Topless),1370462877 +239405,2881,Nudity,1370464108 +239405,3101,nudity,1370464015 +239405,3101,sexual content,1370464021 +239405,8798,Tom Cruise,1370460116 +239405,41997,nudity,1370462254 +239422,260,jedi,1435592641 +239422,260,space adventure,1435592630 +239433,4226,cult film,1359041955 +239433,4226,nonlinear,1359041951 +239433,4886,Pixar,1359041531 +239433,27773,Korean,1359041931 +239433,44191,dystopia,1359042573 +239433,44191,sci-fi,1359042566 +239433,48774,dystopia,1359042583 +239433,48774,sci-fi,1359042587 +239433,48774,thought-provoking,1359042590 +239433,50872,pixar,1359041504 +239433,79091,anti-hero,1359041724 +239433,81564,anti-hero,1359041619 +239433,88129,atmospheric,1359041902 +239433,88129,great soundtrack,1359041900 +239433,90647,fairy tale,1359041590 +239433,94959,Bill Murray,1359042705 +239433,94959,stylized,1359042701 +239433,94959,Wes Anderson,1359042699 +239433,96610,dystopia,1359041982 +239433,96610,sci-fi,1359041987 +239435,296,nonlinear,1290553538 +239435,750,dark comedy,1290553005 +239435,750,satire,1290553001 +239435,923,Amazing Cinematography,1290553192 +239435,923,atmospheric,1290553199 +239435,946,dark comedy,1290552902 +239435,946,Ernst Lubitsch,1290552909 +239435,1089,nonlinear,1290553499 +239435,1173,dark comedy,1290553286 +239435,1173,stylized,1290553289 +239435,1258,atmospheric,1290552970 +239435,1258,Stanley Kubrick,1290552949 +239435,5782,easily confused with other movie(s) (title),1290554443 +239435,52973,overrated,1277049806 +239435,55276,Slow pacing,1279457581 +239435,71108,beautiful photography,1290553051 +239435,71108,cinematography,1290553044 +239435,88129,cinematography,1320676833 +239435,88129,minimalistic,1320676837 +239496,3068,court,1242788536 +239496,3068,courtroom,1242788536 +239496,3068,courtroom drama,1242788536 +239496,3068,lawyer,1242788536 +239496,3068,lawyers,1242788536 +239496,3068,paul newman,1242788566 +239496,4247,David Spade,1242860114 +239496,4890,Jack Black,1242859927 +239496,5013,atmospheric,1242861377 +239496,5449,Adam Sandler,1242860018 +239496,6298,Jamie Kennedy,1242859440 +239496,7173,Ben Stiller,1242860348 +239496,7173,Philip Seymour Hoffman,1242860353 +239496,7325,Ben Stiller,1242859805 +239496,7325,Owen Wilson,1242859805 +239496,7367,Coen Brothers,1242860076 +239496,7367,Tom Hanks,1242860072 +239496,8373,Nicole Kidman,1242859817 +239496,27478,Sacha Baron Cohen,1242860335 +239496,30810,Bill Murray,1242861634 +239496,30810,quirky,1242861637 +239496,30810,Wes Anderson,1242861650 +239496,46972,Ben Stiller,1242859990 +239496,46972,Robin Williams,1242859986 +239496,53993,Steve Carell,1242860194 +239496,55280,boring,1244420397 +239496,55280,BORING!,1244420397 +239496,62511,Charlie Kaufman,1242861570 +239534,2571,alternate reality,1439757441 +239534,2571,artificial intelligence,1439757438 +239534,2571,hacker,1439757464 +239534,2571,hackers,1439757454 +239534,2571,post apocalyptic,1439757448 +239534,2571,post-apocalyptic,1439757443 +239534,2571,sci-fi,1439757429 +239534,2571,virtual reality,1439757432 +239534,4993,atmospheric,1439760610 +239534,4993,epic,1439760618 +239534,4993,epic adventure,1439760634 +239534,4993,great soundtrack,1439760612 +239534,4993,wizards,1439760613 +239534,42718,action,1439761264 +239534,42718,parkour,1439761246 +239534,74458,ending twist,1439757936 +239534,74458,mindfuck,1439757940 +239534,74458,mystery,1439757920 +239534,74458,plot twist,1439757933 +239534,74458,twist ending,1439757916 +239534,84152,human potential,1439757807 +239534,84152,smart,1439757791 +239534,84152,thought provoking,1439757803 +239534,84152,visual effects,1439757813 +239534,90405,sci-fi,1439760848 +239534,94864,aliens,1439760691 +239534,94864,sci-fi,1439760698 +239534,94864,scifi,1439760692 +239534,94864,space travel,1439760694 +239534,94864,technology,1439760696 +239534,95875,future,1439761134 +239534,95875,memory,1439761126 +239534,95875,Sci-fi,1439761127 +239534,97752,sci-fi,1439761177 +239534,97752,too long,1439761170 +239534,102445,space,1439758334 +239534,109487,artificial intelligence,1439760392 +239534,109487,good science,1439760388 +239534,109487,relativity,1439760378 +239534,109487,sci-fi,1439760373 +239534,109487,space,1439760371 +239534,109487,thought-provoking,1439760384 +239534,109487,time travel,1439760390 +239534,109487,time-travel,1439760375 +239534,109487,wormhole,1439760387 +239534,112087,romance,1439760224 +239534,113741,intelligent,1439757411 +239534,113741,mind bending,1439757406 +239534,113741,mystery,1439757401 +239534,113741,parallel universe,1439757398 +239534,116823,Jennifer Lawrence,1439758499 +239534,116823,revolution,1439758537 +239534,122882,car chase,1439759438 +239534,122882,cars,1439759430 +239534,122882,post apocalypse,1439759379 +239534,122882,sci-fi,1439759404 +239537,260,classic,1440303495 +239537,260,cult classic,1440303518 +239537,260,epic,1440303472 +239537,260,Science Fiction,1440303484 +239537,117498,Marathi,1440319162 +239550,296,dark comedy,1212010056 +239550,750,classic,1212010033 +239550,750,Stanley Kubrick,1212010029 +239550,904,Hitchcock,1212010044 +239550,2890,George Clooney,1212399751 +239550,3030,Akira Kurosawa,1212010004 +239550,3949,depressing,1212009997 +239550,4226,nonlinear,1212010009 +239550,7361,surreal,1212010024 +239550,7934,Woody Allen,1218780546 +239561,50,Crime,1444605760 +239561,50,heist,1444605780 +239561,50,suspense,1444605777 +239561,50,twist ending,1444605757 +239561,318,crime,1444605722 +239561,318,twist ending,1444605733 +239561,858,classic,1444605817 +239561,858,Marlon Brando,1444605822 +239561,2959,classic,1444605802 +239561,2959,dark comedy,1444605808 +239561,2959,mental illness,1444605798 +239561,2959,philosophy,1444605796 +239561,2959,twist ending,1444605788 +239561,79132,alternate reality,1444605829 +239561,79132,heist,1444605840 +239561,79132,mindfuck,1444605848 +239592,260,classic,1430587864 +239592,260,EPIC,1430587841 +239594,1459,Hillarious comedy,1188506999 +239594,1459,Spoof,1188506999 +239594,2572,teen,1206634181 +239594,3825,piper perbo,1188507060 +239594,4351,surfing,1188507074 +239594,6936,cute,1188507114 +239608,68358,action,1431417130 +239608,68358,adventure,1431417132 +239608,68358,space travel,1431417135 +239617,786,action,1141619380 +239617,4068,crime,1212961672 +239617,42738,vampire,1151552675 +239617,42738,werewolf,1151552677 +239625,47,Brad Pitt,1264417809 +239625,296,Bruce Willis,1264416353 +239625,296,dark comedy,1264416362 +239625,592,action,1264417569 +239625,858,Mafia,1264416430 +239637,32914,blood,1329878004 +239650,79879,body horror,1430144620 +239650,79879,cookie-cutter,1430144620 +239650,79879,nothing new,1430144620 +239671,260,George Lucas,1444393813 +239671,260,Science Fiction,1444393778 +239671,260,space adventure,1444393799 +239691,48638,decadence,1427118409 +239691,48638,grotesque,1427118409 +239691,48638,love,1427118409 +239709,260,adventure,1435870253 +239709,260,sci-fi,1435870247 +239727,52973,Nudity (Topless - Brief),1210784528 +239730,50,conspiracy,1208399052 +239730,50,Oscar (Best Supporting Actor),1208399056 +239730,50,puzzle-like,1208399068 +239730,5299,Strong Women,1208398641 +239730,8958,Biography,1208398711 +239730,8958,Exceptional Acting,1208398727 +239730,8958,great acting,1208398697 +239730,8958,Oscar (Best Actor),1208398713 +239764,2140,balance,1434544892 +239764,55442,alternative,1434545061 +239764,57044,biography,1434546926 +239764,57044,family,1434546926 +239764,57044,singers,1434546926 +239772,260,action,1275190600 +239772,260,adventure,1275190597 +239772,260,atmospheric,1275190598 +239772,260,great soundtrack,1275190604 +239772,260,Harrison Ford,1275190587 +239772,260,sci-fi,1275190589 +239772,260,Star Wars,1275190591 +239772,260,stylized,1275190592 +239772,780,action,1286644441 +239772,780,adventure,1286644445 +239772,780,alien invasion,1286644440 +239772,780,apocalypse,1305081692 +239772,780,aviation,1305081677 +239772,780,conspiracy theory,1305081679 +239772,780,disaster,1305081681 +239772,780,end of the world,1286644443 +239772,780,ensemble cast,1305081685 +239772,780,humorous,1286644442 +239772,780,Oscar (Best Effects - Visual Effects),1305081701 +239772,780,Oscar Winner,1305081671 +239772,780,Saturn Award (Best Special Effects),1305081668 +239772,780,sci-fi,1286644447 +239772,780,scifi,1286644448 +239772,780,tense,1305081667 +239772,780,US President,1286644451 +239772,780,Will Smith,1286644438 +239772,1196,action,1275190562 +239772,1196,adventure,1275190565 +239772,1196,classic,1275190570 +239772,1196,fantasy,1275190561 +239772,1196,George Lucas,1275190566 +239772,1196,great soundtrack,1275190555 +239772,1196,Harrison Ford,1275190553 +239772,1196,music,1275190557 +239772,1196,original plot,1275190559 +239772,1196,sci-fi,1275190571 +239772,1196,sequel,1275190580 +239772,1196,star wars,1275190578 +239772,1196,sword fight,1286659908 +239772,1196,sword fighting,1286659908 +239772,1197,action,1286644205 +239772,1197,adapted from:book,1286644206 +239772,1197,based on a book,1286644208 +239772,1197,based on book,1286644209 +239772,1197,classic,1286644210 +239772,1197,comedy,1286644211 +239772,1197,Cult classic,1286644212 +239772,1197,fairy tale,1286644213 +239772,1197,fantasy,1286644214 +239772,1197,funny,1286644218 +239772,1197,good versus evil,1286644220 +239772,1197,imdb top 250,1286644216 +239772,1197,medieval,1286644222 +239772,1197,nothing at all,1286644238 +239772,1197,Oscar (Best Music - Original Song),1286644225 +239772,1197,pirates,1286644228 +239772,1197,quirky,1286644228 +239772,1197,revenge,1286644230 +239772,1197,romance,1286644231 +239772,1197,sword fight,1286644232 +239772,1197,torture,1286644233 +239772,1210,fantasy,1275190624 +239772,1210,George Lucas,1275190617 +239772,1210,Harrison Ford,1275190614 +239772,1210,Mark Hammill,1275190637 +239772,1210,sci-fi,1275190625 +239772,1210,sequel,1275190626 +239772,1210,space,1275190629 +239772,1210,Star Wars,1275190628 +239772,1625,I just lost the game,1274218077 +239772,1625,twist ending,1274218072 +239772,2959,action,1285021997 +239772,2959,adapted from:book,1285021996 +239772,2959,atmospheric,1285021999 +239772,2959,based on a book,1285021995 +239772,2959,Brad Pitt,1285022003 +239772,2959,disturbing,1285021994 +239772,2959,philosophy,1285022009 +239772,2959,psychology,1285022008 +239772,2959,quirky,1285022011 +239772,2959,surreal,1285022007 +239772,2959,twist ending,1285022004 +239772,2959,violence,1285022012 +239772,4369,action,1375590734 +239772,4369,cars,1375590731 +239772,4369,undercover cop,1379208283 +239772,4993,Action,1286644367 +239772,4993,adventure,1286644368 +239772,4993,atmospheric,1286644369 +239772,4993,based on a book,1286644370 +239772,4993,based on book,1286644372 +239772,4993,beautifully filmed,1286644374 +239772,4993,ensemble cast,1286644375 +239772,4993,fantasy,1286644376 +239772,4993,fantasy world,1286644377 +239772,4993,high fantasy,1286644380 +239772,4993,imdb top 250,1286644384 +239772,4993,magic,1286644385 +239772,4993,music,1286644386 +239772,4993,nature,1286644388 +239772,4993,nothing at all,1286644409 +239772,4993,Oscar (Best Cinematography),1286644391 +239772,4993,Oscar (Best Effects - Visual Effects),1286644392 +239772,4993,scenic,1286644395 +239772,4993,stylized,1286644396 +239772,4993,Tolkien,1286644365 +239772,4993,wizards,1286644399 +239772,6539,action,1286644303 +239772,6539,adventure,1286644304 +239772,6539,comedy,1286644305 +239772,6539,Disney,1286644302 +239772,6539,Johnny Depp,1286644297 +239772,6539,Keira Knightley,1286644291 +239772,6539,sword fight,1286644299 +239772,7178,Robert Redford,1275190486 +239772,7781,easily confused with other movie(s) (title),1274218876 +239772,48774,adapted from:book,1300502403 +239772,48774,apocalypse,1300502405 +239772,48774,atmospheric,1300502406 +239772,48774,based on a book,1300502408 +239772,48774,christianity,1300502409 +239772,48774,dystopia,1300502412 +239772,48774,England,1300502414 +239772,48774,future,1300502416 +239772,48774,futuristic,1300502416 +239772,48774,imdb top 250,1300502417 +239772,48774,Michael Caine,1300502419 +239772,48774,Nudity (Topless - Brief),1300502420 +239772,48774,Nudity (Topless),1300502422 +239772,48774,pregnancy,1300502424 +239772,48774,sci-fi,1300502425 +239772,48774,survival,1300502427 +239772,48774,thriller,1300502430 +239772,48774,visually appealing,1300502428 +239772,48774,war,1300502431 +239772,53972,action,1375928142 +239772,53972,bruce willis,1375928149 +239772,53972,comedy,1375928164 +239772,53972,computers,1375928162 +239772,53972,hackers,1375928161 +239772,53972,murder,1375928159 +239772,53972,terrorism,1375928151 +239772,53972,United States,1375928154 +239772,79132,action,1285021946 +239772,79132,alternate reality,1285021929 +239772,79132,ambiguous ending,1285021937 +239772,79132,big budget,1285021934 +239772,79132,clever,1285021933 +239772,79132,complicated,1285021927 +239772,79132,Ellen Page,1285021941 +239772,79132,Intense,1285021950 +239772,79132,Leonardo DiCaprio,1285021940 +239772,79132,Michael Caine,1285021939 +239772,79132,mindfuck,1285021922 +239772,79132,surreal,1285021925 +239772,79132,Tokyo,1285021943 +239772,79274,animation,1285982072 +239772,79274,antihero,1285981729 +239772,79274,Batman,1285979167 +239772,79274,comics,1285979170 +239772,79274,DC,1285981289 +239772,79274,fighting,1285982056 +239772,79274,jason todd,1285980377 +239772,79274,Joker,1285980385 +239772,79274,MY PARENTS ARE DEEEAAADDDD,1285979164 +239772,79274,no Kevin Conroy,1285979175 +239772,79274,no Mark Hamill,1285980405 +239772,79274,sympathetic villain,1285981739 +239772,80928,stand-up comedy,1307768670 +239772,91630,Jeremy Renner,1376359761 +239772,91630,Tom Cruise,1376359760 +239772,99112,conspiracy,1420603037 +239772,99112,Good Ending,1420603039 +239772,99112,investigation,1420603026 +239772,99112,plot twist,1420603069 +239772,99112,Tom Cruise,1420603028 +239772,99112,without romance,1420603023 +239772,102058,deadpool,1367201698 +239772,102058,wolverine,1367201698 +239772,102445,action,1420693905 +239772,102445,adventure,1420693886 +239772,102445,fast paced,1420693891 +239772,102445,J.J. Abrams,1420693902 +239772,102445,science fiction,1420693910 +239772,102445,space,1420693880 +239772,102445,Star Trek,1420693882 +239772,103228,aliens,1394236011 +239772,103228,anime,1394236009 +239772,103228,cinematography,1394236012 +239772,103228,giant monster,1394236015 +239772,103228,giant robots,1394236006 +239772,103228,Guillermo del Toro,1394236008 +239772,103228,music,1394235996 +239772,103228,robots,1394236005 +239772,103228,romance,1394236020 +239772,103228,sci-fi,1394235999 +239772,103228,visually appealing,1394235998 +239785,54503,hilarious,1442249157 +239785,55908,food for thought,1442247771 +239785,98056,heartbreaking,1442249533 +239785,98056,sacrifice,1442249558 +239790,1225,biopic,1168159138 +239790,1391,Parody,1168063940 +239790,2071,This movie speaks about the beginning of the AIDS crisis,1137468941 +239790,2791,Parody,1168064044 +239790,2858,suburbia,1168159001 +239790,3755,disaster,1168158967 +239790,8966,biopic,1168158829 +239790,8966,gay,1168159038 +239790,37741,biopic,1168158806 +239790,52245,slapstick,1225161294 +239791,260,action,1440898983 +239791,260,good vs evil,1440898961 +239791,260,space adventure,1440898987 +239800,71542,passion,1272153953 +239802,34405,slow,1138375984 +239815,92257,horror,1435008132 +239815,92257,student,1435008132 +239815,92257,vampire,1435008132 +239816,111921,drama,1424550750 +239816,111921,romance,1424550750 +239816,111921,shailene woodley,1424550750 +239836,260,good characters,1434430270 +239836,260,good science fictional technology,1434430296 +239836,260,great story,1434430354 +239836,260,"imaginary world, characters, story, philosophical",1434430254 +239836,260,philosophy,1434430363 +239836,260,space epic,1434430309 +239848,318,based on a book,1360749709 +239848,1721,romance,1360747483 +239848,3404,History,1360747458 +239848,5618,dreamlike,1360750793 +239848,5618,Hayao Miyazaki,1360750784 +239848,5971,Studio Ghibli,1360750873 +239848,97938,Ang Lee,1360747188 +239848,97938,differences to book,1360747182 +239848,97938,religious overtones,1360747194 +239874,68954,Pixar,1244424977 +239884,59369,Liam Neeson,1420926707 +239884,98973,climate change,1367830543 +239884,99910,Arnold Schwarzenegger,1371918620 +239884,100108,Jennifer Lopez,1371841323 +239884,100383,doctors,1368294128 +239884,100383,drugs,1368294147 +239884,100383,medications,1368294101 +239884,100383,responsibility,1368294128 +239884,102160,numbers,1367785331 +239884,102160,secret,1367785283 +239884,102160,spy,1367785302 +239884,102160,station,1367785249 +239884,102160,story,1367785314 +239884,102716,airplane,1370027983 +239884,102716,cars,1370027952 +239884,102716,Dominic Toretto,1370028095 +239884,102716,tank,1370028338 +239884,102716,Vin Diesel,1370028080 +239884,102880,Earth,1370634567 +239884,102880,enemy,1370634596 +239884,102880,future,1370634596 +239884,102880,rangers,1370634632 +239884,102880,space,1370634597 +239884,102880,Will Smith,1370634547 +239884,102903,Four Horsemen,1371303470 +239884,102903,illusions,1371303567 +239884,102903,magic,1371303285 +239884,102903,show,1371303297 +239884,104211,Jennifer Aniston,1379794099 +239884,104312,shadow hunters,1377198050 +239884,104441,true story,1377610762 +239884,104841,space,1380764081 +239884,106782,Leonardo DiCaprio,1393091514 +239884,112171,russian mafia,1411909465 +239884,115210,tanks,1414350095 +239884,115210,war,1414350102 +239884,119145,gentlemanly,1425071787 +239884,140074,evil,1438371125 +239884,140074,exorcism,1438371195 +239884,140074,priest,1438371125 +239888,260,action,1442653487 +239888,260,sci-fi,1442653482 +239903,260,Religion,1439792076 +239903,260,Science Fiction,1439792115 +239926,77833,army,1424285802 +239926,77833,documentary,1424285802 +239926,77833,weapons,1424285802 +239956,1527,Nudity (Topless - Brief),1385782483 +239956,1527,Nudity (Topless - Notable),1385782487 +239956,57669,black comedy,1385782742 +239956,57669,dark,1385782765 +239956,57669,friendship,1385782750 +239956,57669,suicide,1385782727 +239956,57669,twist ending,1385782745 +239956,57669,violence,1385782730 +239964,5418,action,1428168479 +239964,5418,mystery,1428168479 +239964,5418,thriller,1428168479 +239973,377,Action,1378215387 +239973,3481,break-up,1378232976 +239973,3481,Catherine Zeta-Jones,1378232971 +239973,3481,Jack Black,1378232960 +239973,3481,music,1378232962 +239973,3481,relationships,1378232958 +239973,5418,action,1378215650 +239973,5418,assassin,1378215660 +239973,5418,espionage,1378215657 +239973,5418,Matt Damon,1378215655 +239973,5418,survival,1378215676 +239973,5418,thriller,1378215678 +239973,54286,action,1378215831 +239973,54286,conspiracy,1378215833 +239973,54286,spy thriller,1378215842 +239973,91535,Action,1378215709 +239973,91535,mention Bourne often enough and it's a Bourne movie,1378215733 +239982,778,great soundtrack,1267956556 +239982,1028,comedy of manners,1267956264 +239982,1028,musical,1267956274 +239982,1028,villain nonexistent or not needed for good story,1267956256 +239982,6754,bad acting,1267955845 +239982,6754,Dark,1267955823 +239982,6754,gothic,1267955838 +239982,6754,vampire,1267955830 +239982,6754,vampires,1267955826 +239982,31658,adventure,1267955581 +239982,31658,animation,1267955580 +239982,31658,anime,1267955584 +239982,31658,based on book,1267955595 +239982,31658,fantasy,1267955588 +239982,31658,fantasy world,1267955589 +239982,31658,Hayao Miyazaki,1267955599 +239982,31658,Holocaust,1267955591 +239982,31658,steampunk,1267955601 +239982,31658,war,1267955609 +239982,31658,whimsical,1267955608 +239982,37729,animation,1267955962 +239982,37729,Depp & Burton,1267955965 +239982,37729,gothic,1267955955 +239982,37729,Johnny Depp,1267955967 +239982,37729,stop-motion,1267955973 +239982,37729,Tim Burton,1267955974 +239982,42738,crappy sequel,1267955908 +239982,42738,dark fantasy,1267955895 +239982,42738,disappointing,1267955895 +239982,42738,gothic,1267955914 +239982,42738,vampire,1267955900 +239982,42738,vampires,1267955903 +239982,56171,fantasy world,1267955644 +239982,56171,magic,1267955641 +239982,56171,steampunk,1267955639 +239982,68157,Brad Pitt,1267956159 +239982,68157,great acting,1267956156 +239982,68157,Quentin Tarantino,1267956140 +239982,68157,satire,1267956140 +239982,68157,tarantino,1267956147 +239982,68157,World War II,1267956163 +239983,48231,disscusting,1306148527 +239983,48231,pointless,1306148552 +239984,47200,videogame like,1158677905 +240013,260,classic sci-fi,1435961551 +240013,260,cult classic,1435961581 +240013,260,series,1435961587 +240062,356,comedy,1448192959 +240062,356,tom hanks,1448192947 +240062,1036,Alan Rickman,1448192832 +240062,1036,Bruce Willis,1448192815 +240062,1036,humorous,1448192824 +240062,1265,Bill Murray,1448192747 +240062,1265,philosophical,1448192739 +240062,1270,classic,1448192994 +240062,1270,comedy,1448192991 +240062,1270,Funny,1448193000 +240062,1270,futuristic,1448193004 +240062,1270,Steven Spielberg,1448192988 +240062,109487,science fiction,1448192681 +240076,141,political,1452727882 +240076,141,simpsons,1452727886 +240076,141,slapstick,1452727868 +240076,115713,corporation,1452727996 +240076,115713,creepy,1452727982 +240076,115713,sexual,1452727984 +240076,115713,thriller,1452727999 +240076,115713,violence,1452727989 +240076,115713,wealth,1452727994 +240076,134130,nerd,1452727922 +240076,134130,overrated,1452727931 +240076,134130,potatoes,1452727919 +240076,134130,unlikeable,1452727925 +240079,37741,Phillip Seymour Hoffman,1148844666 +240079,39183,Love story,1148844706 +240079,39183,Tragedy,1148844705 +240088,2959,dirty,1425551066 +240088,7502,great actors,1425551000 +240160,260,best movie ever,1436572516 +240160,260,joseph campbell's study of mythology influenced,1436572531 +240160,260,Science Fiction,1436572549 +240171,1590,Pwned,1153220155 +240171,44199,bank robbery,1153219475 +240171,44199,heist,1153219478 +240171,45672,click,1153008427 +240171,45672,family,1153008427 +240171,45672,family bonds,1153008427 +240171,45672,humping,1153008427 +240171,45672,remote,1153008427 +240175,110,inspirational,1450582150 +240175,110,James Horner,1450582231 +240175,110,Medieval,1450582164 +240175,551,cult film,1450581224 +240175,551,humorous,1450581244 +240175,551,musical,1450581206 +240175,1653,dystopia,1450580859 +240175,1653,eugenics,1450580895 +240175,1653,genetic engineering,1450580857 +240175,2019,Akira Kurosawa,1450581756 +240175,2019,classic,1450581724 +240175,2019,epic,1450581720 +240175,2019,long,1450581710 +240175,2019,toshiro mifune,1450581763 +240175,2716,comedy,1450580823 +240175,3253,comedy,1450581137 +240175,3253,unique,1450581133 +240175,7153,fantasy,1450582342 +240175,7153,Good vs. Evil,1450582439 +240175,7153,great soundtrack,1450582334 +240175,7153,Tolkien,1450582338 +240175,7153,war,1450582352 +240175,7458,Mythology,1450582103 +240175,27611,evils of humanity,1450581060 +240175,31804,dark,1450581438 +240175,31804,good vs evil,1450581432 +240175,31804,Russian,1450581454 +240175,31804,supernatural,1450581494 +240175,31804,vampires,1450581411 +240175,47200,action packed,1450581667 +240175,47200,adrenaline,1450581656 +240175,47200,silly,1450581652 +240175,52950,good vs evil,1450581326 +240175,52950,magic,1450581382 +240175,52950,sci-fi,1450581300 +240175,52950,vampires,1450581340 +240175,56782,cerebral,1450581936 +240175,56782,Daniel Day-Lewis,1450581939 +240175,56782,greed,1450581938 +240175,56782,morality,1450581944 +240175,61493,action,1450581806 +240175,61493,fight cinematography,1450581841 +240175,61493,police,1450581846 +240175,63992,Supernatural Power,1450582281 +240175,63992,Teen movie,1450582255 +240175,63992,vampires,1450582271 +240175,65514,martial arts,1450581878 +240175,70286,genetics,1450581993 +240175,70286,unique,1450581956 +240175,100882,Comedy,1450582481 +240175,100882,Martial Arts,1450582475 +240175,100882,Romance,1450582555 +240175,100882,Silly,1450582548 +240175,102231,Donnie Yen,1450582592 +240175,102231,Martial Arts,1450582602 +240175,108979,good music,1450581604 +240175,108979,jazz,1450581539 +240175,108979,space western,1450581544 +240175,108979,Yoko Kanno,1450581536 +240175,120466,artificial intelligence,1450582045 +240175,120466,Funny,1450582033 +240175,122886,Daisy Ridley,1450582756 +240175,122886,Exploited,1450582930 +240175,122886,franchise,1450582920 +240175,122886,John Williams,1450582753 +240175,122886,Plot Recycling,1453436269 +240178,293,Gary Oldman,1451080531 +240178,293,Jean Reno,1451080539 +240178,293,Luc Besson,1451080528 +240178,293,Natalie Portman,1451080523 +240178,293,police corruption,1451080519 +240178,541,great cinematography,1451080288 +240178,541,neo-noir,1451080300 +240178,541,sci-fi classic,1451080281 +240178,924,atmospheric,1451080360 +240178,924,classic sci-fy,1451080345 +240178,924,masterpiece,1451080365 +240178,2571,strange,1451080235 +240178,2571,surreal,1451080227 +240190,37495,death,1434801458 +240190,37495,episodic,1434801458 +240190,37495,surreal,1434801458 +240190,49932,dark,1427669784 +240190,49932,experimental,1427669784 +240190,49932,surreal,1427669784 +240190,116799,1970s,1429999363 +240190,116799,dialogue-driven,1429999363 +240190,116799,investigation,1429999363 +240244,260,George Lucas,1436642641 +240244,260,good vs evil,1436642591 +240244,260,sci-fi,1436642574 +240244,4848,Mindfuck,1441980674 +240244,4878,original,1439920384 +240244,5690,anime,1436787518 +240244,5690,beautiful,1436787544 +240244,88129,action,1437597710 +240244,88129,atmospheric,1437597685 +240244,88129,cars,1437597687 +240244,88129,heist,1437597691 +240244,89864,comedy,1436947563 +240244,113862,unexplained,1437985344 +240247,2143,director's cut is better,1297759971 +240247,2572,Heath Ledger,1340844086 +240247,36517,a bit slow,1297760178 +240247,36517,ending was moving,1297760179 +240247,48394,Direction,1297759846 +240247,48394,too violent,1297759845 +240247,48516,unpredictable,1297759892 +240266,1119,addiction,1210838245 +240266,1119,chemical dependency,1210838245 +240266,1119,recovery,1210838245 +240266,1119,sobriety,1210838245 +240266,6002,addiction,1210838064 +240266,6002,chemical dependency,1210838064 +240266,6002,drugs,1210838064 +240271,1,rated-G,1137424344 +240271,32,psychology,1137424695 +240271,36,rated-R,1137424351 +240271,436,psychology,1137424810 +240271,551,rated-PG,1137424349 +240271,593,psychology,1137424660 +240271,903,rated-PG,1137424469 +240271,1193,psychology,1137425015 +240271,1206,psychology,1137425101 +240271,1219,psychology,1137425081 +240271,1258,rated-R,1137424431 +240271,1704,psychology,1137424724 +240271,1784,rated-PG-13,1137424353 +240271,1961,psychology,1137425474 +240271,2329,rated-R,1137424355 +240271,2539,psychology,1137425308 +240271,2762,psychology,1137425117 +240271,2858,rated-R,1137424356 +240271,3186,psychology,1137424766 +240271,3186,rated-R,1137424359 +240271,3342,psychology,1137424979 +240271,3535,psychology,1137425339 +240271,3556,psychology,1137425213 +240271,3897,rated-R,1137424620 +240271,3949,psychology,1137425071 +240271,4055,psychology,1137425259 +240271,4148,psychology,1137425270 +240271,4878,psychology,1137424678 +240271,4958,rated-PG-13,1137424619 +240271,4975,psychology,1137424873 +240271,4995,psychology,1137425167 +240271,5014,psychology,1137424995 +240271,5878,psychology,1137425129 +240271,6287,psychology,1137424926 +240271,6323,psychology,1137425351 +240271,6593,psychology,1137424894 +240271,6952,psychology,1137425318 +240271,7254,psychology,1137424738 +240271,7934,psychology,1137425199 +240271,8950,psychology,1137425485 +240276,539,chick flick,1241231895 +240300,51255,Fantastic comedy!,1179313784 +240302,562,comedy,1295767444 +240302,562,Heather Matarazzo,1295767439 +240302,562,quirky,1295766671 +240302,562,Ugly main character,1295766668 +240302,608,Frances McDormand,1295766516 +240302,1035,musical,1295766711 +240302,1721,atmospheric,1295767559 +240302,1721,catastrophe,1295767561 +240302,1721,epic,1295767553 +240302,1721,Nudity (Topless - Notable),1295767562 +240302,1721,Oscar (Best Picture),1295767557 +240302,3002,Crazy Kinski,1295767057 +240302,4273,Charlotte Rampling,1295767076 +240302,4641,depressing,1295767467 +240302,4641,Scarlett Johansson,1295767456 +240302,4641,Steve Buscemi,1295767454 +240302,4641,Thora Birch,1295767463 +240302,4642,campy,1295767385 +240302,4642,great soundtrack,1295767389 +240302,5591,Harvey Keitel,1295767489 +240302,5591,Thora Birch,1295767490 +240302,5914,We can't hear what the hell they say,1295767029 +240302,8261,Shelley Duvall,1295766490 +240302,8261,Sissy Spacek,1295766497 +240302,48744,orgy,1295767406 +240302,48744,unsimulated sex scenes,1295767417 +240302,50912,Margo Martindale,1295766465 +240302,69134,atmospheric,1295766869 +240302,69134,Biblical,1295766876 +240302,71464,bad ending,1295772938 +240302,71464,biblical,1295772954 +240302,71464,black humour,1295772945 +240302,71464,coen brothers,1295772946 +240302,71464,great ending,1295772949 +240302,71464,Jewish,1295772957 +240302,71464,open ending,1295772950 +240302,71464,Philosophical,1295772943 +240302,71464,slow,1295772941 +240302,79702,great sound,1295850768 +240302,79702,Michael Cera,1295850761 +240302,79702,stylized,1295850764 +240302,79702,visually appealing,1295850767 +240302,80489,Criminal = good Police = bad,1295772886 +240302,80489,one dimensional characters except for Affleck. Ending trite.,1295772874 +240302,80489,too much love interest,1295772875 +240302,80489,unoriginal,1295772879 +240302,81562,getdvd,1295773127 +240302,81562,James Franco,1295773114 +240302,81562,music,1295773134 +240302,81562,not at all like the book,1295773123 +240302,81562,true story,1295773120 +240302,82459,Coen Brothers,1295772897 +240302,82459,Costumes,1295772914 +240302,82459,Hailee Steinfeld,1295772900 +240302,82459,Jeff Bridges,1295772923 +240302,82459,Josh Brolin,1295772899 +240315,68157,assassination,1264164998 +240315,68157,christoph waltz,1264165094 +240315,68157,death,1264165052 +240315,68157,germans,1264164982 +240315,68157,graphic,1264165068 +240315,68157,jews,1264164968 +240315,68157,multiple languages,1264165030 +240315,68157,nazis,1264164962 +240315,68157,scalping,1264165010 +240315,68157,swastika,1264165019 +240315,68358,fresh start,1264164243 +240315,68358,humor,1264164267 +240315,68358,reboot,1264164223 +240323,1916,avant-garde romantic comedy,1148909246 +240323,4973,avant-garde romantic comedy,1148905027 +240323,5673,avant-garde romantic comedy,1148908191 +240323,7361,avant-garde romantic comedy,1148899016 +240354,907,Astaire and Rogers,1237250899 +240354,8423,Harold Lloyd,1237250655 +240370,75813,weed,1274774173 +240411,58559,Christopher Nolan,1446529762 +240439,5492,Hot Bikini Action,1356317995 +240439,5492,Raquel Welch,1356317998 +240439,6538,Nudity (Full Frontal),1365490518 +240439,7008,Nudity (Full Frontal - Notable),1356318420 +240439,45635,Nudity (Full Frontal - Notable),1356318350 +240439,49528,Hot Bikini Action,1356254793 +240439,51182,bootytastic,1356318162 +240439,51182,Nudity (Full Frontal),1355990078 +240439,51182,Nudity (Rear),1355990078 +240439,62293,Keira Knightley,1356117588 +240439,67812,Bootytastic,1356318129 +240439,79207,Melanie Griffith,1356084720 +240439,79207,Nudity (Topless - Notable),1356084718 +240439,79207,strippers,1356084727 +240439,99054,Nudity (Full Frontal - Notable),1355990121 +240439,99173,Britt Ekland,1359408048 +240445,1610,sean connery,1158613503 +240446,4896,Adventure,1393060648 +240446,4896,based on a book,1393060650 +240446,4896,dragons,1393060661 +240446,4896,family,1393060660 +240446,4896,fantasy,1393060655 +240446,4896,fantasy world,1393060654 +240446,4896,good versus evil,1393060672 +240446,4896,magic,1393060679 +240446,4896,mystery,1393060680 +240446,4896,mythology,1393060682 +240446,4896,sequel,1393060685 +240446,4896,Wizards,1393060686 +240446,41566,adventure,1393060560 +240446,41566,alternate reality,1393060559 +240446,41566,based on a book,1393060554 +240446,41566,christianity,1393060547 +240446,41566,family,1393060545 +240446,41566,fantasy,1393060516 +240446,41566,Fantasy World,1393060510 +240446,41566,literary adaptation,1393060541 +240446,41566,magic,1393060537 +240446,41566,mythology,1393060514 +240446,41566,Parallel universe,1393060513 +240446,41566,religion,1393060524 +240446,41566,scenic,1393060526 +240446,41566,talking animals,1393060535 +240471,114028,historical,1433190079 +240471,114028,lgbt,1433190079 +240471,114028,upbeat,1433190079 +240492,69757,artistic,1266115355 +240492,69757,chick flick,1266115360 +240492,69757,cynicism,1266115335 +240492,69757,IMDB Top 250,1266115370 +240492,69757,intelligent,1266115347 +240492,71057,dystopia,1266115409 +240492,71057,predictable,1266115393 +240492,71057,sci-fi,1266115399 +240492,71057,visually appealing,1266115397 +240492,72011,cynicism,1266116187 +240492,72011,Jason Reitman,1266116184 +240492,72998,ecology,1266115245 +240492,72998,sci-fi,1266115242 +240492,72998,visually stunning,1266115232 +240515,146028,russian,1451050992 +240515,146028,sherlock holmes,1451051014 +240515,147300,russian,1451050975 +240515,147326,russian,1451050960 +240515,147326,sherlock holmes,1451051040 +240541,260,classic,1439781143 +240541,260,sci-fi,1439781151 +240541,260,space action,1439781162 +240541,260,space opera,1439781156 +240561,71429,dark comedy,1420427881 +240574,7361,beautiful,1447027907 +240574,7361,philosophy,1447027894 +240574,7361,romance,1447027908 +240574,7361,sci-fi,1447027918 +240574,7361,surreal,1447027890 +240574,7361,surrealism,1447027931 +240574,7361,thought-provoking,1447027891 +240629,1252,atmospheric,1284929130 +240629,1252,Jack Nicholson,1284929136 +240629,1252,Nudity (Topless - Brief),1284929141 +240629,1252,Oscar (Best Writing - Screenplay Written Directly for the Screen),1284929145 +240629,1252,private detective,1284929149 +240629,2305,deep,1296535119 +240629,2305,Moving,1296535061 +240629,2305,no bullshit,1296535108 +240629,2305,poetry,1296535129 +240629,2305,powerful,1296535411 +240629,2305,prison,1296535151 +240629,3504,no score,1304876269 +240629,26252,cute,1294725311 +240629,26252,funny,1294725308 +240629,26252,silly,1294720913 +240629,31539,frank,1283726499 +240629,31539,honest,1283726500 +240629,31539,the guy is a douche,1283726527 +240629,31921,Robert Duvall,1290676531 +240629,41336,ambiguous ending,1287199681 +240629,41336,great characterization,1287199683 +240629,41336,sympathetic characters,1287199709 +240629,56015,fast paced,1304734096 +240629,56015,film noir,1304734096 +240629,56015,heist,1304734104 +240629,56015,noir,1304734095 +240629,56015,riveting,1304734096 +240629,59315,Bechdel Test:Fail,1292030150 +240629,59315,cheesy,1292030229 +240629,59315,Gwyneth Paltrow,1292030213 +240629,59315,Jeff Bridges,1292030195 +240629,59315,Jon Favreau,1292030206 +240629,59315,Robert Downey Jr.,1292030195 +240629,59315,thin story,1292030175 +240629,71106,funny,1283065281 +240629,71106,great premise,1283065281 +240629,71106,shit ending,1283065290 +240629,71248,Jason Bateman,1297071851 +240629,71248,mean,1297071831 +240629,71248,Mike Judge,1297071847 +240629,71248,Mila Kunis,1297071840 +240629,73266,funny,1280176346 +240629,73266,Zach Galifianakis,1280176349 +240629,78574,cinematography,1291577600 +240629,78574,cultural authenticity,1291577557 +240629,78574,slow,1291577589 +240629,78574,thin story,1291577579 +240629,79702,gimmicky,1295466140 +240629,79702,great sound,1295466163 +240629,79702,innovative,1295466099 +240629,79702,unlikable characters,1295466087 +240629,79702,video games,1295466107 +240629,79702,visually appealing,1295466094 +240629,86059,animation,1303085719 +240629,86059,insipid,1303085681 +240629,86059,saccharine,1303085695 +240631,88125,based on a book,1316876941 +240631,88125,epic,1316876933 +240631,88125,franchise,1316876945 +240631,88125,great acting,1316876926 +240631,88125,magic,1316876918 +240631,88125,series ending,1316876950 +240631,88125,tear jerker,1316876922 +240631,88125,unintentionally funny ending,1316876937 +240646,72378,science fiction,1446869407 +240655,1982,John Carpenter,1284595262 +240655,4437,atmospheric,1284595431 +240655,40732,tense,1284595206 +240655,62511,Nudity (Topless),1284595059 +240655,79274,MY PARENTS ARE DEEEAAADDDD,1281302475 +240655,79702,hipster trash,1288378959 +240666,858,:3,1427985224 +240666,858,:p,1427985228 +240666,109487,future,1443624851 +240666,109487,space,1443624854 +240666,109487,space travel,1443624858 +240666,115617,Animation,1443624813 +240666,115617,funny,1443624822 +240666,115617,kid hero,1443624833 +240670,1334,Classic monster,1171894009 +240670,2287,Classic monster,1171894117 +240670,2662,Classic monster,1171894107 +240670,3447,China,1173212313 +240670,8582,Chomsky,1176930676 +240676,3949,depressing,1397275068 +240676,3949,drugs,1397275104 +240676,114060,organized crime,1424578603 +240676,114060,plot twist,1424578603 +240676,114060,violence,1424578603 +240676,114935,mindfuck,1431906741 +240676,114935,science fiction,1431906745 +240676,114935,time travel,1431906747 +240676,115713,artificial intelligence,1431906712 +240676,115713,plot twist,1431906699 +240676,115713,sci-fi,1431906714 +240694,127861,hockey fighting,1438105537 +240694,127861,ice hockey,1438105537 +240694,127861,sports,1438105537 +240696,1193,mustsee,1443391170 +240696,127178,watchlist,1443391148 +240700,260,1970s,1442949818 +240700,260,sci-fi,1442949623 +240700,144938,documentary,1445571985 +240700,144938,finance,1445571991 +240708,318,good,1435168043 +240708,318,intrigue,1435168043 +240708,318,nice,1435168043 +240712,356,commitment,1438024318 +240712,356,determination,1438024318 +240712,356,intelligence,1438024318 +240712,1682,dystopia,1438024529 +240712,4226,memory,1438025196 +240712,4226,nonlinear,1438025205 +240712,4963,heist,1438024432 +240712,5945,existential crises,1438025086 +240712,53996,aliens,1438024816 +240712,63082,cinematography,1438024750 +240712,63082,music,1438024730 +240712,63082,social commentary,1438024735 +240714,260,good vs evil,1441345325 +240714,260,The beginning of a classic saga. Good vs evil extraordinaire,1441345306 +240714,4306,comedy,1441345808 +240714,117192,adventure,1441348371 +240722,41863,HaveWeSeen?,1440890428 +240727,260,Classic,1439812205 +240727,260,space epic,1439812334 +240728,260,adventure,1437905745 +240728,260,sci-fi,1437905728 +240728,260,space,1437905739 +240728,117533,documentary,1437943043 +240728,117533,edward snowden,1437943031 +240767,150,astronauts,1241896998 +240767,150,based on a true story,1241897036 +240767,150,claustrophobic,1241897081 +240767,150,historical,1241897056 +240767,150,History,1241896963 +240767,150,moon,1241897051 +240767,150,NASA,1241896985 +240767,150,space,1241896989 +240767,150,space program,1241896972 +240767,150,Tom Hanks,1241896979 +240767,150,true story,1241897015 +240767,296,hard to follow,1241839077 +240767,296,non-linear,1241838262 +240767,296,Quentin Tarantino,1241838270 +240767,1231,astronauts,1241897199 +240767,1231,Ed Harris,1241897230 +240767,1231,NASA,1241897201 +240767,1231,space,1241897211 +240767,1231,space program,1241897212 +240767,1231,true story,1241897250 +240767,1231,US history,1241897216 +240767,1233,classic,1241897163 +240767,1233,claustrophobic,1241897142 +240767,1233,German,1241897159 +240767,1233,gritty,1241897109 +240767,1233,ocean,1241897156 +240767,1233,submarine,1241897148 +240767,1233,U-boat,1241897101 +240767,1233,underwater,1241897114 +240767,1233,war,1241897167 +240767,1233,Wolfgang Petersen,1241897124 +240767,1233,World War II,1241897117 +240767,1233,WWII,1241897119 +240767,1694,Boring,1281188403 +240767,1694,religion,1281188432 +240767,1694,revival,1281188444 +240767,1694,Robert Duvall,1281188428 +240767,2336,historical,1318728008 +240767,2336,historical epic,1318728011 +240767,2797,being a kid again,1241897360 +240767,2797,Child as Adult,1241897357 +240767,2797,switching places,1241897362 +240767,2797,Tom Hanks,1241897317 +240767,2797,toy store,1241897352 +240767,4022,adventure,1241897564 +240767,4022,ingenuity,1241897573 +240767,4022,life-changing,1241897553 +240767,4022,stranded,1241897588 +240767,4022,SURVIVAL,1241897582 +240767,4022,Tom Hanks,1241897490 +240767,4769,altruism,1241839618 +240767,4769,documentary,1241839644 +240767,4769,evacuees,1241839656 +240767,4769,germany,1241839591 +240767,4769,Judi Dench,1241839586 +240767,4769,World War II,1241839608 +240767,7365,dark humor,1244946170 +240767,7365,eccentricity,1244946190 +240767,7365,village,1244946182 +240767,7365,wintry,1244946183 +240767,8128,based on a true story,1241838693 +240767,8128,cameraderie,1241838666 +240767,8128,historical,1241838616 +240767,8128,poignant,1241838675 +240767,8128,WWII,1241838631 +240767,55052,Guilt,1241838034 +240767,55052,James McAvoy,1241838068 +240767,55052,Keira Knightley,1241838070 +240767,55052,misunderstanding,1241838040 +240767,55052,Period piece,1241838027 +240767,55052,romance,1241838124 +240767,55052,war,1241838140 +240767,55286,bathos,1241838996 +240767,55286,Benicio Del Toro,1241839010 +240767,55286,disjointed timeline,1241839057 +240767,55286,non-linear,1241839043 +240767,55286,starts weak ends strong,1241838956 +240767,56563,belabored,1242522235 +240767,56563,interviews,1242522209 +240767,56563,long,1242522239 +240767,56563,too long,1242522244 +240767,56563,typography,1242522203 +240767,63062,based on a true story,1241837740 +240767,63062,Clint Eastwood,1241837728 +240767,63062,period piece,1241837769 +240767,63082,destiny,1241920646 +240767,63082,disjointed timeline,1241918303 +240767,63082,non-linear,1241918306 +240767,63082,nonlinear,1241918308 +240767,64575,Meryl Streep,1241838392 +240767,64575,moral ambiguity,1241838406 +240767,64575,Philip Seymour Hoffman,1241838387 +240767,64575,religion,1241838426 +240767,68159,Helen Mirren,1241837592 +240767,68159,lame ending,1241837619 +240767,68159,political corruption,1241837648 +240767,68159,protagonist is journalist,1241837632 +240767,68159,red herring,1241837625 +240767,96543,historical,1346827122 +240767,96543,western,1346827119 +240796,260,classic sci-fi,1438997829 +240796,260,space adventure,1438997821 +240806,260,Luke Fucking Skywalker,1443644785 +240806,260,The first in a series of movies that introduces us to the sith.,1443644779 +240817,8640,unbearable,1152291759 +240825,431,gangster,1209210633 +240825,1084,classic,1209210639 +240825,3681,Ennio Morricone,1209210547 +240825,4239,trippy,1209210653 +240825,5989,Leonardo DiCaprio,1209210626 +240825,8340,seen more than once,1209210577 +240825,8981,disturbing,1209210603 +240825,48516,Martin Scorsese,1209210589 +240856,9,action,1367413471 +240856,9,jean-claude van damme,1367413471 +240856,9,Peter Hyams,1367413471 +240856,44,martial arts,1367408449 +240856,112,jackie chan,1367408979 +240856,112,martial arts,1367408368 +240856,172,90s sci-fi,1367508418 +240856,172,cyberpunk,1367508418 +240856,172,dina meyer,1367508436 +240856,172,dolph lundgren,1367508418 +240856,172,keanu reeves,1367508418 +240856,172,virtual reality,1367508418 +240856,172,william gibson,1367508418 +240856,208,kevin costner,1367417172 +240856,208,Post apocalyptic,1367417172 +240856,286,albert pyun,1367416925 +240856,327,comic action,1367509771 +240856,327,comic-verfilmung,1367509771 +240856,327,iggy pop,1367509771 +240856,327,lori petty,1367509771 +240856,327,post apocalyptic,1367509771 +240856,327,prosthetics,1367509771 +240856,327,rachel talalay,1367509771 +240856,379,jean-claude van damme,1367413492 +240856,379,Peter Hyams,1367413492 +240856,393,action,1367413642 +240856,393,Jean-Claude Van Damme,1367413642 +240856,393,martial arts,1367413642 +240856,446,chen kaige,1367506567 +240856,446,china,1367506567 +240856,446,gong li,1367506567 +240856,446,leslie cheung,1367506567 +240856,457,andrew davis,1367506739 +240856,457,harrison ford,1367506738 +240856,457,tommy lee jones,1367506739 +240856,464,action,1367413566 +240856,464,asiaten in hollywood,1367413566 +240856,464,jean-claude van damme,1367413566 +240856,464,john woo,1367413566 +240856,464,martial arts,1367413566 +240856,471,Coen Brothers,1367499964 +240856,471,comedy,1367499983 +240856,471,Tim Robbins,1367499983 +240856,541,80s sci-fi,1367508522 +240856,541,cyberpunk,1367508522 +240856,541,cyborg,1367508522 +240856,541,film noir,1367508522 +240856,541,harrison ford,1367508522 +240856,541,phillip k. dick,1367508522 +240856,541,ridley scott,1367508522 +240856,541,rutger hauer,1367508522 +240856,541,sci-fi,1367508522 +240856,541,sci-fi classic,1367508522 +240856,555,brad pitt,1367507434 +240856,555,christian slater,1367507433 +240856,555,christopher walken,1367507434 +240856,555,dennis hopper,1367507434 +240856,555,gangsterfilm,1367507434 +240856,555,Patricia Arquette,1367507434 +240856,555,Quentin Tarantino,1367507394 +240856,555,tony scott,1367507434 +240856,590,kevin costner,1367417189 +240856,665,emir kusturica,1367507352 +240856,665,goran bregovic,1367507352 +240856,665,history epic,1367507352 +240856,665,Yugoslavia,1367507321 +240856,704,Jean-Claude Van Damme,1367413399 +240856,704,martial arts,1367408380 +240856,745,Aardman,1367510499 +240856,745,animation,1367510497 +240856,745,british,1367510518 +240856,745,comedy,1367510501 +240856,745,short,1367510518 +240856,745,stop motion,1367510518 +240856,836,andrew davis,1367506783 +240856,836,Keanu Reeves,1367506773 +240856,836,Morgan Freeman,1367506775 +240856,990,action,1367413712 +240856,990,asiaten in hollywood,1367413712 +240856,990,Jean-Claude Van Damme,1367413712 +240856,990,ringo lam,1367413712 +240856,1077,comedy,1367504863 +240856,1077,slapstick,1367504863 +240856,1077,woody allen,1367504863 +240856,1130,Horrorklassiker,1367422584 +240856,1130,Joe Dante,1367422584 +240856,1130,Werwolf,1367422584 +240856,1249,Luc Besson,1367500260 +240856,1274,anime,1367968056 +240856,1274,dystopie,1367968056 +240856,1274,katsuhiro otomo,1367968056 +240856,1274,manga,1367968056 +240856,1274,shounen,1367968056 +240856,1280,china,1367410517 +240856,1280,gong li,1367410517 +240856,1280,zhang yimou,1367410517 +240856,1307,billy crystal,1367510584 +240856,1307,carrie fisher,1367510584 +240856,1307,meg ryan,1367510584 +240856,1307,nora ephron,1367510584 +240856,1307,rob reiner,1367510584 +240856,1307,rom-com,1367510584 +240856,1307,weihnachtsfilm,1367510584 +240856,1339,90s horror,1367509278 +240856,1339,anthony hopkins,1367509278 +240856,1339,dracula,1367509278 +240856,1339,francis ford coppola,1367509278 +240856,1339,gary oldman,1367509278 +240856,1339,horror classic,1367509278 +240856,1339,keanu reeves,1367509278 +240856,1339,vampire,1367509278 +240856,1339,winona ryder,1367509278 +240856,1341,70s horror,1367511119 +240856,1341,dan curtis,1367511119 +240856,1341,haunted house,1367511119 +240856,1341,oliver reed,1367511119 +240856,1385,action,1367500062 +240856,1385,andrew davis,1367500062 +240856,1385,Steven Seagal,1367500042 +240856,1385,Tommy Lee Jones,1367506803 +240856,1387,fischhorror,1367509359 +240856,1387,horror classic,1367509359 +240856,1387,richard dreyfuss,1367509359 +240856,1387,roy scheider,1367509359 +240856,1387,steven spielberg,1367509359 +240856,1387,tierhorror,1367509359 +240856,1466,al pacino,1367506442 +240856,1466,gangsterfilm,1367506442 +240856,1466,johnny depp,1367506442 +240856,1466,Mafia,1367506417 +240856,1466,mike newell,1367506442 +240856,1497,jean-claude van damme,1367413295 +240856,1497,martial arts,1367413295 +240856,1497,tsui hark,1367413295 +240856,1726,kevin costner,1367417135 +240856,1726,post apocalyptic,1367417135 +240856,1920,horror für kinder,1367422398 +240856,1920,Joe Dante,1367422405 +240856,1920,kirsten dunst,1367422423 +240856,1960,Bernardo Bertolucci,1367506197 +240856,1960,china,1367506197 +240856,1960,history epic,1367506197 +240856,2003,Joe Dante,1367422674 +240856,2003,prosthetics,1367422674 +240856,2003,Puppen,1367422674 +240856,2003,Weihnachtsfilm,1367422674 +240856,2194,brian depalma,1367507311 +240856,2194,gangsterfilm,1367507311 +240856,2194,kevin costner,1367507311 +240856,2194,mafia,1367507277 +240856,2194,robert de niro,1367507311 +240856,2194,sean connery,1367507311 +240856,2279,slasher,1367416446 +240856,2288,arktis,1367507573 +240856,2288,gore,1367507586 +240856,2288,John Carpenter,1367507573 +240856,2288,kurt russel,1367507573 +240856,2288,prosthetics,1367507586 +240856,2289,bruce willis,1367509654 +240856,2289,comedy,1367509654 +240856,2289,film im film,1367509686 +240856,2289,hollywood,1367509654 +240856,2289,julia roberts,1367509654 +240856,2289,kino im film,1367509686 +240856,2289,robert altman,1367509654 +240856,2289,satire,1367509654 +240856,2289,tim Robbins,1367509654 +240856,2322,action,1367417456 +240856,2322,kurt russel,1367417456 +240856,2322,military,1367417456 +240856,2322,Paul W.S. Anderson,1367417456 +240856,2420,martial arts,1367408442 +240856,2423,chevy chase,1367509604 +240856,2423,jeremiah chechik,1367509605 +240856,2423,National Lampoon,1367509604 +240856,2423,Weihnachtsfilm,1367509604 +240856,2460,dennis hopper,1367507490 +240856,2460,slasher,1367507490 +240856,2460,tobe hooper,1367507490 +240856,2527,70s sci-fi,1367505970 +240856,2527,michael chrichton,1367505970 +240856,2527,wissenschaftliche sci-fi,1367505970 +240856,2582,jackie chan,1367413266 +240856,2582,martial arts,1367408428 +240856,2582,tsui hark,1367413266 +240856,2594,alejandro amenabar,1367504565 +240856,2594,penelope cruz,1367504565 +240856,2600,90s sci-fi,1367508332 +240856,2600,David Cronenberg,1367508333 +240856,2600,gaming,1367508332 +240856,2600,jennifer jason leigh,1367508333 +240856,2600,prosthetics,1367508334 +240856,2600,sci-fi,1367508333 +240856,2600,virtual reality,1367508333 +240856,2600,willem dafoe,1367508333 +240856,2784,60s horror,1367509066 +240856,2784,Edgar Allan Poe,1367509066 +240856,2784,roger corman,1367509066 +240856,2784,vincent price,1367509066 +240856,2808,action,1367413389 +240856,2808,dolph lundgren,1367413389 +240856,2808,Jean-Claude Van Damme,1367413389 +240856,2808,roland emmerich,1367413389 +240856,2872,fantasy epic,1367510311 +240856,2872,john boorman,1367510311 +240856,2901,don coscarelli,1367504985 +240856,2901,Horrorklassiker,1367504985 +240856,2916,90s sci-fi,1367507752 +240856,2916,Arnold Schwarzenegger,1367507752 +240856,2916,gore,1367507752 +240856,2916,paul verhoeven,1367507752 +240856,2916,phillip k. dick,1367507752 +240856,2916,prosthetics,1367507752 +240856,2916,sci fi,1367507752 +240856,2924,jackie chan,1367409002 +240856,2924,martial arts,1367408406 +240856,2931,Emir Kusturica,1367507541 +240856,2931,goran bregovic,1367507541 +240856,2931,Yugoslavia,1367507541 +240856,2953,chris columbus,1367510273 +240856,2953,macauly culkin,1367510273 +240856,2953,slapstick,1367510273 +240856,2953,weihnachtsfilm,1367510273 +240856,2968,fantasy,1367505286 +240856,2968,Terry Gilliam,1367505287 +240856,2968,time travel,1367505287 +240856,2986,comic action,1367417952 +240856,2986,frank miller,1367417952 +240856,2986,irvin kershner,1367417952 +240856,2986,peter weller,1367417952 +240856,2987,bob hoskins,1367507263 +240856,2987,christopher lloyd,1367507264 +240856,2987,real- animation mix,1367507264 +240856,2987,robert zemeckis,1367507263 +240856,3000,anime,1367968315 +240856,3000,drachen,1367968315 +240856,3000,fantasy,1367968315 +240856,3000,Hayao Miyazaki,1367968315 +240856,3000,Studio Ghibli,1367968288 +240856,3024,Fischhorror,1367422562 +240856,3024,Horrorklassiker,1367422553 +240856,3024,Joe Dante,1367422552 +240856,3024,Tierhorror,1367422553 +240856,3075,60s horror,1367509169 +240856,3075,catherine deneuve,1367509169 +240856,3075,psychologic horror,1367509169 +240856,3075,roman polanski,1367509169 +240856,3265,chow yun-fat,1367498498 +240856,3265,heroic bloodshed,1367498498 +240856,3265,john woo,1367498498 +240856,3266,filmclub,1367415541 +240856,3379,50s sci-fi,1367506051 +240856,3379,anthony perkins,1367506074 +240856,3379,gregory peck,1367506074 +240856,3379,Post apocalyptic,1367506051 +240856,3379,stanley kramer,1367506074 +240856,3438,comic-verfilmung,1367498617 +240856,3438,prosthetics,1367498617 +240856,3438,puppen,1367498617 +240856,3438,zeichnungen als übergang,1367498617 +240856,3439,comic-verfilmung,1367421959 +240856,3439,prosthetics,1367421959 +240856,3439,puppen,1367421959 +240856,3440,comic-verfilmung,1367422030 +240856,3440,prosthetics,1367422030 +240856,3440,puppen,1367422030 +240856,3440,samurai,1367422030 +240856,3703,mel gibson,1367417111 +240856,3703,post apocalyptic,1367417111 +240856,3704,mel gibson,1367417087 +240856,3704,Post apocalyptic,1367417078 +240856,3727,80s horror,1367507953 +240856,3727,gore,1367507953 +240856,3727,kathryn bigelow,1367507953 +240856,3727,lance henriksen,1367507953 +240856,3727,vampire,1367507953 +240856,3727,western,1367507953 +240856,3732,70s horror,1367509311 +240856,3732,Brian De Palma,1367509295 +240856,3732,horror classic,1367509311 +240856,3732,telepathie,1367509312 +240856,3927,60s sci-fi,1367505438 +240856,3927,Isaac Asimov,1367505443 +240856,3927,richard fleischer,1367505438 +240856,3927,wissenschaftler,1367505438 +240856,3927,wissenschaftliche sci-fi,1367505438 +240856,3994,bruce willis,1367507386 +240856,3994,M. Night Shyamalan,1367507386 +240856,3994,samual l. jackson,1367507386 +240856,3994,superhero,1367507386 +240856,3996,ang lee,1367411378 +240856,3996,china,1367408990 +240856,3996,chow yun-fat,1367411378 +240856,3996,martial arts,1367408397 +240856,3996,wuxia,1367411378 +240856,4148,anthony hopkins,1367509555 +240856,4148,gary oldman,1367509555 +240856,4148,julianne moore,1367509555 +240856,4148,ridley scott,1367509555 +240856,4148,serial killer,1367509555 +240856,4148,thomas harris,1367509555 +240856,4412,exploitation,1367505068 +240856,4412,grindhouse,1367505068 +240856,4412,ray milland,1367505068 +240856,4414,60s horror,1367507222 +240856,4414,60s sci-fi,1367507222 +240856,4414,ray milland,1367507222 +240856,4414,roger corman,1367507222 +240856,4437,dario argento,1367507881 +240856,4437,goblin,1367507881 +240856,4437,hexen,1367507881 +240856,4437,italian horror,1367507881 +240856,4438,martial arts,1367408347 +240856,4440,Bruce Lee,1367498268 +240856,4440,martial arts,1367498270 +240856,4552,cyberpunk,1367507846 +240856,4552,experimental,1367507846 +240856,4552,japan,1367507846 +240856,4552,prosthetics,1367507846 +240856,4552,shinya tsukamoto,1367507846 +240856,4552,stop motion,1367507846 +240856,4552,weird japan,1367507846 +240856,4580,action,1367413443 +240856,4580,albert pyun,1367413443 +240856,4580,Jean-Claude Van Damme,1367413442 +240856,4580,post apocalyptic,1367413443 +240856,4614,martial arts,1367408416 +240856,4816,ben stiller,1367415928 +240856,4816,comedy,1367415928 +240856,4850,Anime,1367967906 +240856,4850,arktis,1367967906 +240856,4850,religon,1367967906 +240856,4850,shounen,1367967906 +240856,4966,50s sci-fi,1367505240 +240856,4966,jack arnold,1367505240 +240856,5189,fischhorror,1367504954 +240856,5189,gore,1367504954 +240856,5189,horror von weiblicher regisseurin,1367504954 +240856,5189,tierhorror,1367504954 +240856,5570,alejandro amenabar,1367507465 +240856,5570,slasher,1367507465 +240856,5898,albert pyun,1367416874 +240856,5898,debüt,1367416906 +240856,5898,sword & sorcery,1367416874 +240856,6373,comedy,1367510228 +240856,6373,jennifer aniston,1367510228 +240856,6373,jim carrey,1367510228 +240856,6373,tom shadyac,1367510228 +240856,6405,byron haskin,1367507783 +240856,6405,kinderfilm,1367507783 +240856,6405,robert louis stevenson,1367507783 +240856,6534,ang lee,1367422058 +240856,6534,marvel,1367422058 +240856,6534,superhero,1367422058 +240856,6577,albert pyun,1367416951 +240856,6577,martial arts,1367416951 +240856,6617,Kevin Costner,1367417148 +240856,6721,china,1367413244 +240856,6721,Hark Tsui,1367498180 +240856,6721,jet li,1367413244 +240856,6721,martial arts,1367413244 +240856,6721,tsui hark,1367413244 +240856,6721,wuxia,1367413244 +240856,6790,dystopia,1367505596 +240856,6790,sci-fi,1367505590 +240856,6790,virtual reality,1367505586 +240856,6874,martial arts,1367498169 +240856,6874,Quentin Tarantino,1367498166 +240856,6899,Albert Pyun,1367416981 +240856,7090,china,1367408935 +240856,7090,martial arts,1367408329 +240856,7090,wuxia,1367411339 +240856,7090,zhang yimou,1367410536 +240856,7099,anime,1367968405 +240856,7099,hayao miyazaki,1367968405 +240856,7099,sci-fi,1367968385 +240856,7099,Studio Ghibli,1367968368 +240856,7118,anime,1367968419 +240856,7118,sci-fi,1367968416 +240856,7438,martial arts,1367498513 +240856,7438,Quentin Tarantino,1367498505 +240856,7482,bruce lee,1367498321 +240856,7482,martial arts,1367408354 +240856,8578,australia,1367417690 +240856,8578,post apocalyptic,1367417657 +240856,8578,spierig brüder,1367417657 +240856,8578,virus,1367417657 +240856,8578,zombie,1367417657 +240856,8644,alex proyas,1367505213 +240856,8644,isaac asimov,1367505213 +240856,8644,robots,1367505213 +240856,8644,sci-fi,1367505213 +240856,8644,will smith,1367505213 +240856,8666,dc,1367422073 +240856,8666,superhero,1367422073 +240856,8906,cannibals,1367415583 +240856,8906,filmclub,1367415583 +240856,8906,italian horror,1367415583 +240856,8906,ruggero deodato,1367415583 +240856,8914,debüt,1367511532 +240856,8914,filmclub,1367511537 +240856,8914,low budget,1367511532 +240856,8914,shane carruth,1367511532 +240856,8914,time travel,1367511532 +240856,8914,wissenschaftler,1367511532 +240856,8914,wissenschaftliche sci-fi,1367511532 +240856,8983,china,1367408943 +240856,8983,martial arts,1367408339 +240856,8983,wuxia,1367411345 +240856,8983,zhang yimou,1367410544 +240856,26444,BBC,1367505160 +240856,26444,sci-fi,1367505160 +240856,26444,TV Movie,1367505160 +240856,26547,Jackie Chan,1367498214 +240856,26547,martial arts,1367498216 +240856,26606,ching siu-tung,1367410041 +240856,26606,joey wang,1367410041 +240856,26606,martial arts,1367410041 +240856,26606,wuxia,1367410041 +240856,26736,martial arts,1367498643 +240856,26736,splatter,1367498653 +240856,26736,trash,1367498653 +240856,26765,golden harvest,1367411765 +240856,26765,jackie chan,1367411765 +240856,26765,joey wang,1367411764 +240856,26765,martial arts,1367411765 +240856,26765,wong jing,1367411765 +240856,26788,china,1367410439 +240856,26788,gong li,1367410439 +240856,26788,zhang yimou,1367410439 +240856,26842,golden harvest,1367412361 +240856,26842,jet li,1367412361 +240856,26842,martial arts,1367412361 +240856,26842,michelle yeoh,1367412361 +240856,26842,shaolin,1367412361 +240856,26842,yuen woo-ping,1367412361 +240856,26903,anime,1367968336 +240856,26903,Studio Ghibli,1367968333 +240856,26974,experimental,1367415098 +240856,26974,filmclub,1367415098 +240856,26974,harmony korine,1367415098 +240856,26981,action,1367416782 +240856,26981,albert pyun,1367416782 +240856,26981,Christopher lambert,1367506939 +240856,27156,anime,1367968155 +240856,27156,mecha,1367968155 +240856,27156,ova,1367968155 +240856,27156,religion,1367968155 +240856,27156,robots,1367968155 +240856,27156,shounen,1367968155 +240856,27266,wong kar-wai,1367410627 +240856,27660,anime,1367968355 +240856,27660,cyberpunk,1367968343 +240856,27660,episodenfilm,1367968355 +240856,27801,martial arts,1367498235 +240856,27801,thai boxen,1367498248 +240856,27905,cgi,1367421846 +240856,27905,japan,1367421846 +240856,27905,superhero,1367421846 +240856,27905,war,1367421846 +240856,30793,tim burton,1367415911 +240856,31184,anime,1367500364 +240856,31184,cgi,1367500364 +240856,31184,mecha,1367968433 +240856,31184,sci-fi,1367968424 +240856,31221,marvel,1367422116 +240856,31221,rob bowman,1367422116 +240856,31221,superhero,1367422116 +240856,31660,anime,1367500396 +240856,31660,katsuhiro otomo,1367500396 +240856,31660,steampunk,1367500396 +240856,32511,china,1367411229 +240856,32511,king hu,1367411229 +240856,32511,martial arts,1367411229 +240856,32511,wuxia,1367411229 +240856,32518,golden harvest,1367412985 +240856,32518,martial arts,1367412985 +240856,32518,tsui hark,1367412985 +240856,32518,wuxia,1367412985 +240856,32554,anime,1367968263 +240856,32554,Cyberpunk,1367968266 +240856,32554,Episodenfilm,1367968281 +240856,32554,Katsuhiro Otomo,1367968281 +240856,34048,alien invasion,1367505392 +240856,34048,sci-fi,1367505392 +240856,34048,steven spielberg,1367505392 +240856,34048,tom cruise,1367505392 +240856,42422,anime,1367505109 +240856,42422,makato shinkai,1367505109 +240856,47458,ching siu-tung,1367410730 +240856,47458,jet li,1367410731 +240856,47458,martial arts,1367410731 +240856,47458,wuxia,1367410731 +240856,48780,Christian Bale,1367504722 +240856,48780,Christopher Nolan,1367504722 +240856,48780,magier,1367504722 +240856,49278,denzel washington,1367512310 +240856,49278,sci-fi,1367512310 +240856,49278,time travel,1367512310 +240856,49278,tony scott,1367512310 +240856,51277,Gordon Liu,1367498020 +240856,51277,martial arts,1367408301 +240856,51277,shaolin,1367408919 +240856,51277,shaw brothers,1367408684 +240856,51709,joon-ho bong,1367505564 +240856,51709,kaiju eiga,1367505564 +240856,51709,südkorea,1367505564 +240856,51709,tierhorror,1367505564 +240856,51939,3d animation,1367421904 +240856,51939,comic-verfilmung,1367421904 +240856,52995,golden harvest,1367409318 +240856,52995,martial arts,1367409284 +240856,52995,sammo hung,1367409284 +240856,53464,marvel,1367421979 +240856,53464,superhero,1367421979 +240856,55282,arktis,1367416466 +240856,55282,vampire,1367416466 +240856,55995,cgi,1367500452 +240856,55995,robert zemeckis,1367500452 +240856,55995,stereo 3d,1367500452 +240856,58293,historisch,1367500500 +240856,58293,roland emmerich,1367500500 +240856,58293,steinzeit,1367500500 +240856,58297,cannibals,1367417541 +240856,58297,gore,1367417541 +240856,58297,neil marshall,1367417541 +240856,58297,Post apocalyptic,1367417541 +240856,58297,rhona mitra,1367417541 +240856,58297,virus,1367417541 +240856,60040,avengers,1367421775 +240856,60040,Edward Norton,1367421780 +240856,60040,marvel,1367421776 +240856,60040,superhero,1367421776 +240856,64900,ching siu-tung,1367410054 +240856,64900,joey wang,1367410054 +240856,64900,martial arts,1367410054 +240856,64900,wuxia,1367410054 +240856,64993,anime,1367968106 +240856,64993,makato shinkai,1367968114 +240856,68237,Duncan Jones,1367504656 +240856,68237,sci-fi,1367504656 +240856,68954,3d animation,1367509499 +240856,68954,Pixar,1367509490 +240856,69134,filmclub,1367414633 +240856,69134,horror,1367414633 +240856,69134,lars von trier,1367414633 +240856,73017,Guy Ritchie,1367498576 +240856,73017,Robert Downey Jr.,1367498577 +240856,73017,steampunk,1367498577 +240856,73870,arktis,1367416500 +240856,73870,val kilmer,1367416500 +240856,73870,virus,1367416500 +240856,76130,action,1367413674 +240856,76130,dolph lundgren,1367413674 +240856,76130,jean-claude van damme,1367413674 +240856,78893,fantasy epic,1367510428 +240856,78893,m. night shyamalan,1367500546 +240856,80862,documentary,1367508932 +240856,80862,facebook,1367508932 +240856,80862,filmclub,1367508932 +240856,80862,mockumentary,1367508932 +240856,81164,horror für kinder,1367422493 +240856,81164,joe dante,1367422493 +240856,86332,avengers,1367420280 +240856,86332,Kenneth Branagh,1367420280 +240856,86332,marvel,1367420280 +240856,86332,superhero,1367420280 +240856,87306,j.j. abrams,1367505359 +240856,87306,sci-fi,1367505359 +240856,87306,small town story,1367505359 +240856,87306,Steven Spielberg,1367505359 +240856,90598,albert pyun,1367416850 +240856,90598,post apocalyptic,1367416850 +240856,92393,china,1367412840 +240856,92393,martial arts,1367412840 +240856,92393,tsui hark,1367412840 +240856,92393,wuxia,1367412839 +240856,95773,Anime,1367967856 +240856,95773,Fantasy,1367967856 +240856,95773,manga,1367968215 +240856,95773,virtual reality,1367967855 +240856,96728,Amy Adams,1389141578 +240856,96728,Joaquin Phoenix,1389141576 +240856,96728,Paul Thomas Anderson,1389141565 +240856,96728,Philip Seymour Hoffman,1389141574 +240856,97031,60s horror,1367505918 +240856,97031,weird japan,1367505918 +240856,98759,china,1367408900 +240856,98759,martial arts,1367408493 +240856,98759,shaolin,1367408881 +240856,98761,china,1367408892 +240856,98761,martial arts,1367408563 +240856,98761,shaolin,1367408871 +240856,98783,china,1367408960 +240856,98783,martial arts,1367408615 +240856,98783,shaolin,1367408960 +240856,98829,jet li,1367410278 +240856,98829,martial arts,1367410278 +240856,98829,sammo hung,1367410278 +240856,98829,wong jing,1367411701 +240856,98829,wuxia,1367410278 +240856,98850,ching siu-tung,1367410991 +240856,98850,jet li,1367410991 +240856,98850,martial arts,1367410991 +240856,98850,wuxia,1367411386 +240856,100579,action,1367413608 +240856,100579,dolph lundgren,1367413608 +240856,100579,Jean-Claude Van Damme,1367413608 +240856,101285,experimental,1367415628 +240856,101285,harmony korine,1367415628 +240856,101285,James Franco,1367415628 +240856,102070,horrorcomedy,1367416209 +240856,102070,irish,1367416209 +240856,102219,martial arts,1367408127 +240856,102219,shaw brothers,1367408650 +240856,102219,wuxia,1367408911 +240856,102221,china,1367409016 +240856,102221,martial arts,1367408256 +240856,102221,shaolin,1367409015 +240856,102248,martial arts,1367495169 +240856,102248,shaw brothers,1367495169 +240856,102248,wuxia,1367495169 +240856,102250,martial arts,1367496617 +240856,102250,shaw brothers,1367496617 +240856,102250,wuxia,1367496617 +240856,102252,Gordon Liu,1367498011 +240856,102252,martial arts,1367496992 +240856,102252,shaw brothers,1367496992 +240856,102269,china,1367597342 +240856,102269,martial arts,1367597342 +240856,102269,shaolin,1367597342 +240856,102338,chang cheh,1367866879 +240856,102338,martial arts,1367866879 +240856,102338,shaolin,1367866879 +240856,102338,shaw brothers,1367866879 +240856,102340,martial arts,1367867098 +240856,102340,shaw brothers,1367867098 +240856,102340,wuxia,1367867098 +240856,102340,yuen chor,1367867098 +240856,102342,martial arts,1367867247 +240856,102342,shaw brothers,1367867246 +240856,102342,superhero,1367867247 +240856,102342,wuxia,1367867246 +240856,102342,yuen chor,1367867246 +240856,102342,zombies,1367867247 +240856,102367,Andy Lau,1368047059 +240856,102367,Chow Yun-Fat,1368047059 +240856,102367,Golden Harvest,1368047059 +240856,102367,heroic bloodshed,1368047059 +240856,102367,Hongkong,1368047059 +240856,102367,Taylor Wong,1368047059 +240856,102367,Triads,1368047059 +240869,112852,great soundtrack,1430236878 +240869,112852,packed with action,1430236871 +240869,112852,very interesting,1430236848 +240895,6711,Atmospheric,1250442403 +240895,6711,Bill Murray,1287937715 +240895,6711,japan,1287937705 +240895,6711,Poignant,1250442379 +240895,6711,reflective,1287937728 +240895,6711,Scarlett Johansson,1217187601 +240895,6711,Wistful,1250442379 +240895,48394,adventure,1250442743 +240895,48394,alternate reality,1250442743 +240895,48394,dark,1250442743 +240895,48394,fairy tale,1250442743 +240895,48394,gore,1250442765 +240895,48394,powerful,1250442743 +240895,48394,Scary monster,1250442794 +240895,48394,surreal,1250442743 +240895,68319,bad cgi,1242617841 +240895,68319,Muscles,1242617845 +240895,68319,Storytelling,1242617841 +240896,1200,action,1378869638 +240896,1200,space,1378869634 +240896,1200,tense,1378869643 +240896,1214,atmospheric,1378869612 +240896,1214,dark,1378869590 +240896,1214,futuristic,1378869588 +240896,1214,space,1378869574 +240896,1214,suspense,1378869621 +240896,1274,animation,1378869654 +240896,1274,stylized,1378869661 +240896,1288,classic,1378869704 +240896,1288,comedy,1378869700 +240896,2571,cyberpunk,1378869502 +240896,2571,thought-provoking,1378869500 +240896,5816,franchise,1378869558 +240896,6502,suspense,1378869684 +240896,8368,fantasy world,1378869467 +240896,8914,clever,1378869540 +240896,8914,low budget,1378869532 +240896,8914,time travel,1378869523 +240896,8983,Beautiful,1378869448 +240921,4226,nonlinear,1241615341 +240921,4226,twist ending,1241615353 +240921,84792,gore,1389100472 +240921,84792,insanity,1389100464 +240921,84792,occult,1389100480 +240921,84792,surrealism,1389100454 +240940,56367,excellent script,1202100029 +240940,56367,minnesotan,1202100037 +240940,56367,notable soundtrack,1202100043 +240940,56757,adapted from:play,1202099339 +240940,56757,Depp & Burton,1202099341 +240940,56757,disappointing,1202099338 +240940,56757,great cinematography,1202099336 +240940,56757,Johnny Depp,1202099344 +240940,56757,Musical,1202099343 +240940,56757,playwright:Sondheim,1202099333 +240993,296,intense,1427154381 +240993,296,surprising,1427154381 +240993,296,unique,1427154381 +240993,4306,fairy tales,1428365281 +240993,4306,funny,1428365281 +240993,4306,kids,1428365281 +240993,78653,character driven,1451455362 +240993,78653,complex characters,1451455071 +240993,78653,realism,1451455096 +240993,78653,relationships,1451455076 +241011,1136,British,1453463533 +241011,1136,british comedy,1453463516 +241011,1136,humorous,1453463523 +241011,1136,medieval,1453463530 +241011,1136,Monty Python,1453463549 +241011,1136,parody,1453463513 +241011,1136,satire,1453463519 +241011,1136,satirical,1453463526 +241011,1921,mathematics,1453389041 +241011,2324,optimism,1453462782 +241011,2324,Oscar Winner,1453462779 +241011,4011,brad pitt,1453390496 +241011,4011,comedy,1453390518 +241011,4011,cynical,1453390502 +241011,4011,dark comedy,1453390535 +241011,4011,dark humor,1453390524 +241011,4011,funny,1453390516 +241011,4011,Great dialogue,1453390505 +241011,4873,beautiful,1453389726 +241011,4873,metaphysics,1453389727 +241011,4873,philosophy,1453389711 +241011,8533,romantic,1453463439 +241011,33794,comic book,1453389519 +241011,33794,philosophical,1453389523 +241011,48780,atmospheric,1453389471 +241011,48780,Christian Bale,1453389411 +241011,48780,Christopher Nolan,1453389466 +241011,48780,sci-fi,1453389416 +241011,109374,europe,1453389254 +241011,109374,great dialogue,1453389206 +241011,139385,golden globe,1453464430 +241013,4720,Nicole Kidman,1330931373 +241013,7361,alternate reality,1330753593 +241013,7361,bittersweet,1330753596 +241013,7361,memory,1330753584 +241013,7361,philosophy,1330753579 +241013,7361,psychology,1330753569 +241013,7361,quirky,1330753567 +241013,7361,surreal,1330753564 +241013,7361,surrealism,1330753561 +241013,7361,thought-provoking,1330753557 +241013,53883,Adam Curtis,1330931486 +241013,53883,corruption,1330931489 +241013,53883,politics,1330931493 +241013,63082,dreamlike,1330753521 +241013,63082,feel-good,1330753524 +241013,63082,social commentary,1330753510 +241014,7767,poignant,1447689340 +241040,42728,saptastic,1139440731 +241040,42738,Not-Plot-Holes-As-Much-As-Gaping-Wounds,1139440673 +241045,356,Comedy,1237297587 +241045,356,Oscar (Best Picture),1237297620 +241045,356,Tom Hanks,1237297668 +241045,1797,Imax,1237169708 +241045,58559,Imax,1237215822 +241052,32,end of the world,1225301036 +241052,32,future,1225301031 +241052,32,Post apocalyptic,1225301033 +241052,32,post-apocalyptic,1225301021 +241052,32,time travel,1225301012 +241052,32,twist ending,1225301026 +241052,50,twist ending,1226530237 +241066,3256,Tom Clancy,1167489772 +241069,117887,talking animals,1441633154 +241069,141994,deneme,1441633343 +241074,65,buddy comedy,1188263759 +241074,546,strangely compelling,1188263674 +241074,1091,catastrophe,1188263741 +241074,2116,Epic,1188263707 +241074,6373,comedy of manners,1188263644 +241081,260,great story,1436270490 +241081,260,special effects,1436270483 +241081,7361,dreamlike,1436281999 +241081,7361,surreal,1436281991 +241081,79132,thought-provoking,1436270918 +241081,79132,visually appealing,1436270921 +241081,109487,artificial intelligence,1436271390 +241081,109487,black hole,1436271422 +241081,109487,plot holes,1436271413 +241081,109487,time travel,1436271376 +241081,111759,action packed,1436270804 +241081,111759,gimicky,1436270804 +241081,111759,recursion,1436270804 +241081,112852,great soundtrack,1436270813 +241081,112852,humorous,1436270882 +241087,3451,interracial marriage,1171327268 +241093,2810,anime,1139345165 +241093,4030,Vampire,1140824969 +241094,2966,road trip,1166528705 +241104,260,classic,1431295577 +241104,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1431295775 +241116,260,classic sci-fi,1438921750 +241116,260,good for kids,1438921785 +241120,103228,Bechdel Test:Fail,1411179848 +241124,260,classic sci-fi,1435309531 +241124,260,George Lucas,1435309543 +241180,49651,Sylvester Stallone,1168346830 +241208,593,girl power,1354378763 +241208,593,psychology,1354378777 +241208,593,strong female lead,1354378784 +241208,593,suspense,1354378770 +241208,1760,british,1354378647 +241208,1760,girl power,1354378643 +241208,2395,comedy,1354379017 +241208,2395,jason schwartzman,1354379014 +241208,3481,comedy,1355584083 +241208,3481,funny,1355584092 +241208,3481,music,1355584077 +241208,3481,quirky,1355584087 +241208,3822,dark,1364605135 +241208,3822,love,1364605132 +241208,4248,girl power,1354378636 +241208,4357,girl power,1354378657 +241208,30812,leonardo dicaprio,1358103459 +241208,58162,british,1354378511 +241208,58162,comedy,1354378516 +241208,59258,Amy Poehler,1354378588 +241208,59258,deception,1354378576 +241208,59258,girl power,1354378543 +241208,59258,tina fey,1354378535 +241208,86833,girl power,1354378820 +241208,87234,arctic monkeys,1355584041 +241208,87234,great soundtrack,1355584028 +241208,87234,Richard Ayoade,1355584021 +241208,87869,charlie day,1354378803 +241208,88163,comedy,1354378069 +241208,88163,Ryan Gosling,1354378060 +241208,94939,music,1398037413 +241208,96565,drugs,1354377874 +241208,96565,girl power,1354378628 +241208,96565,sex,1354377817 +241208,96565,strong female characters,1354377809 +241208,96565,wedding,1354377838 +241233,114847,artificial intelligence,1423118098 +241233,128542,Australia,1428073085 +241233,128542,australian,1428072888 +241233,128542,funny,1428073074 +241233,128542,gory,1428073063 +241233,128542,zombies,1428072876 +241251,75813,edward norton,1280884991 +241295,93510,jonas Hill,1337178827 +241298,107436,netflix,1397566536 +241313,93457,drama,1422307997 +241313,93457,mystery,1422307997 +241313,93457,thriller,1422307997 +241313,110675,love story,1421094095 +241313,110675,mystery,1421094095 +241313,110675,simple,1421094095 +241313,112940,counterespionage,1420285879 +241313,112940,spy,1420285888 +241313,114042,drama,1422719018 +241313,114042,Loss Of A Child,1422719032 +241321,64034,Holocaust,1258169793 +241321,64034,World War II,1258169784 +241370,260,sci-fi,1444761481 +241370,260,supernatural powers,1444761492 +241430,4553,sci-fi,1253561313 +241454,2640,boring,1139777296 +241454,2858,really good,1139777350 +241454,4034,really good,1139777336 +241462,260,iconic,1441799140 +241462,260,universe,1441799131 +241484,720,3d,1187532458 +241484,3785,splatter,1187532457 +241484,5679,splatter,1187532455 +241484,6934,cyberpunk,1187532453 +241484,7147,wierd story,1187532451 +241486,745,harmony and honesty,1139521646 +241486,1320,great productiondesign,1139520855 +241490,256,Arnold Schwarzenegger,1168375705 +241490,260,George Lucas,1168374743 +241490,260,sci-fi,1168374741 +241490,364,Disney,1168375333 +241490,364,kids,1168375331 +241490,380,Arnold Schwarzenegger,1168375697 +241490,485,Arnold Schwarzenegger,1168375708 +241490,541,Harrison Ford,1168374582 +241490,541,Philip K. Dick,1168374537 +241490,541,sci-fi,1168374615 +241490,589,Arnold Schwarzenegger,1168375649 +241490,595,Disney,1168375066 +241490,595,kids,1168375063 +241490,786,Arnold Schwarzenegger,1168375689 +241490,908,hitchcock,1140451751 +241490,924,Arthur C. Clarke,1168374900 +241490,924,sci-fi,1168374900 +241490,1035,good music,1168375536 +241490,1086,hitchcock,1140451639 +241490,1090,Vietnam War,1168375472 +241490,1196,George Lucas,1168374824 +241490,1196,Harrison Ford,1168374822 +241490,1196,sci-fi,1168374790 +241490,1198,Harrison Ford,1168374737 +241490,1198,World War II,1168374737 +241490,1200,sci-fi,1168374982 +241490,1204,World War I,1168374708 +241490,1208,Vietnam,1168374519 +241490,1214,sci-fi,1168374975 +241490,1225,music,1168375005 +241490,1233,deutsch,1168374594 +241490,1240,Arnold Schwarzenegger,1168375654 +241490,1246,Robin Williams,1168375122 +241490,1250,World War II,1168374610 +241490,1263,Vietnam,1168375133 +241490,1282,Disney,1168375195 +241490,1291,Harrison Ford,1168375268 +241490,1359,Arnold Schwarzenegger,1168376593 +241490,1562,Arnold Schwarzenegger,1168376623 +241490,1587,Arnold Schwarzenegger,1168375672 +241490,2000,Mel Gibson,1168375320 +241490,2022,good music,1168375305 +241490,2096,Disney,1168375523 +241490,2096,kids,1168375520 +241490,2115,Harrison Ford,1168375274 +241490,2193,fantasy,1168374424 +241490,2193,middle earth,1168374424 +241490,2291,Johnny Depp,1168375175 +241490,2373,Arnold Schwarzenegger,1168376317 +241490,2871,Good music,1168375154 +241490,2916,Arnold Schwarzenegger,1168375659 +241490,3113,Arnold Schwarzenegger,1168376694 +241490,3363,George Lucas,1168377103 +241490,3396,kids,1168375419 +241490,3448,Robin Williams,1140451641 +241490,3448,Vietnam War,1168375217 +241490,3527,Arnold Schwarzenegger,1168375635 +241490,3698,Arnold Schwarzenegger,1168375693 +241490,3703,Mel Gibson,1168375355 +241490,3986,Arnold Schwarzenegger,1168376753 +241490,4022,busom buddy with a volleyball,1140451815 +241490,4103,World War II,1168375187 +241490,4467,Terry Gilliam,1168374924 +241490,4508,nature,1168375236 +241490,4531,Arnold Schwarzenegger,1168376502 +241490,4558,Arnold Schwarzenegger,1168375712 +241490,5040,Arnold Schwarzenegger,1168375701 +241490,5093,Arnold Schwarzenegger,1168376821 +241490,6664,Arnold Schwarzenegger,1168375734 +241490,7004,Arnold Schwarzenegger,1168375716 +241490,7310,Arnold Schwarzenegger,1168376361 +241490,8493,Harry Connick Jr.,1168375404 +241490,8493,World War II,1168375404 +241490,27876,German,1168377339 +241499,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1441459147 +241499,260,The battle begins - The love story begins. Enjoy an intergalactic ride with the eponymous heroes fighting an assortment of baddies who have a sinister master,1441459187 +241518,260,sci-fi,1436135521 +241518,260,space action,1436135526 +241526,356,history,1436054644 +241526,356,soundtrack,1436054644 +241526,356,southern,1436054644 +241532,1356,Owned,1182105944 +241532,1356,seen several times,1182105953 +241532,4015,Funfunfun,1182105892 +241532,4015,seen more than once,1182105889 +241532,33166,overrated,1182106413 +241532,51662,unintentionally funny,1182107227 +241533,436,Nudity (Full Frontal - Notable),1178386453 +241533,2377,Nudity (Full Frontal - Notable),1178386985 +241546,32,sci fi,1353813033 +241546,70,to see: b-grade horror,1305699140 +241546,76,to see: b-grade horror,1305698159 +241546,147,Mark Wahlberg,1312414817 +241546,150,boring,1304056633 +241546,222,to see: chick flick,1305753523 +241546,273,to see: horror,1305753266 +241546,292,to see: sci fi,1305753884 +241546,296,to see: cult classic,1305699442 +241546,316,sci fi,1353812127 +241546,332,to see: horror,1305753030 +241546,343,to see: kites for kiddos,1305698014 +241546,379,Jean-Claude Van Damme,1303950883 +241546,379,time travel,1303950883 +241546,393,Jean-Claude Van Damme,1303950966 +241546,393,video game,1353812121 +241546,414,to see: kites for kiddos,1353902847 +241546,457,seen part of,1313383772 +241546,497,seen part of,1313557327 +241546,506,to see: based on a book,1352953545 +241546,514,hilarious,1303951140 +241546,533,to see: superhero,1353797308 +241546,541,to see: cult classic,1305699233 +241546,555,to see: crime,1305752800 +241546,593,to see: horror,1305699476 +241546,662,Mark Wahlberg,1312415585 +241546,673,kites for kiddos,1353812158 +241546,716,to see: cult classic,1352955586 +241546,733,action,1353812256 +241546,733,nicolas cage,1353812263 +241546,761,pretty terrible,1353797375 +241546,832,seen part of,1313383721 +241546,842,to see: horror/comedy,1353798079 +241546,913,to see: classic,1305699389 +241546,924,to see: sci fi,1305699183 +241546,1084,to see: crime,1305699248 +241546,1089,to see: crime,1353813229 +241546,1103,to see: classic,1305753723 +241546,1129,to see: action,1305753590 +241546,1136,to see: comedy,1305699413 +241546,1210,sci fi,1353812140 +241546,1213,to see: crime,1305699330 +241546,1214,horror/sci fi,1353813298 +241546,1219,to see: cult classic,1305699431 +241546,1220,comedy,1353812957 +241546,1220,cult classic,1353812952 +241546,1240,80s,1303950928 +241546,1240,sci-fi,1303950928 +241546,1240,time travel,1303950928 +241546,1241,to see: zombie,1305699312 +241546,1268,christian slater,1303951153 +241546,1269,to see: classic,1305699217 +241546,1274,to see: anime,1305699192 +241546,1278,horror/comedy,1353811888 +241546,1288,to see: cult classic,1305752770 +241546,1290,80s,1303951834 +241546,1321,werewolf,1353813450 +241546,1355,to see: horror,1352954272 +241546,1441,to see: chick flick,1305753376 +241546,1500,to see: crime,1353796747 +241546,1523,to see: crime,1305753187 +241546,1525,to see: kites for kiddos,1313569936 +241546,1527,milla jovovich,1303952756 +241546,1591,to see: superhero,1353797617 +241546,1599,looks bad but i'm curious,1353797522 +241546,1599,to see: superhero,1353797501 +241546,1673,Mark Wahlberg,1312415624 +241546,1747,seen part of,1313557490 +241546,1799,crime,1353813146 +241546,1866,crime,1353812426 +241546,1866,Mark Wahlberg,1312414660 +241546,1897,to see: lesbian,1352953280 +241546,1920,kites for kiddos,1353812167 +241546,2021,to see: sci fi,1305753310 +241546,2045,kites for kiddos,1353813008 +241546,2100,tom hanks,1303953839 +241546,2150,to see: suggested,1305753613 +241546,2160,to see: cult classic,1305753732 +241546,2186,to see: classic,1305699484 +241546,2194,crime,1353811961 +241546,2248,to see: chick flick,1305699462 +241546,2377,to see: b-grade horror,1305698730 +241546,2490,to see: action,1305753321 +241546,2497,don't remember,1353812844 +241546,2540,crime,1353812542 +241546,2540,Mark Wahlberg,1312415095 +241546,2560,to see: horror,1305699072 +241546,2662,sci fi,1353811943 +241546,2762,M. Night Shyamalan,1353812194 +241546,2762,psychological,1353812205 +241546,2769,crime,1353812535 +241546,2769,Mark Wahlberg,1312415069 +241546,2793,to see: werewolf,1352955342 +241546,2808,Jean-Claude Van Damme,1303950855 +241546,2890,Mark Wahlberg,1352772812 +241546,2890,parody,1353812507 +241546,2890,war,1353812507 +241546,2898,to see: horror,1305698634 +241546,2901,to see: b-grade horror,1305699016 +241546,2942,to see: 80s,1305698643 +241546,2968,to see: kites for kiddos,1305753764 +241546,3016,to see: b-grade horror,1305699083 +241546,3018,to see: zombie,1305753708 +241546,3081,horror,1353812176 +241546,3255,gina davis,1303958954 +241546,3255,sports,1353811803 +241546,3255,tom hanks,1303958954 +241546,3300,sci-fi,1303952097 +241546,3313,to see: horror/comedy,1305698036 +241546,3418,gina davis,1303950903 +241546,3418,road trip,1303950903 +241546,3616,to see: comedy,1305753041 +241546,3702,to see: cult classic,1305753673 +241546,3709,seen part of,1313559930 +241546,3755,Mark Wahlberg,1312415593 +241546,3843,to see: b-grade horror,1305753099 +241546,3980,to see: military,1305699037 +241546,3994,M. Night Shyamalan,1353812000 +241546,3994,superhero,1353812000 +241546,4030,to see: vampire,1353797865 +241546,4067,christian slater,1353811970 +241546,4226,to see: crime,1305699401 +241546,4266,to see: vampire,1305753001 +241546,4344,hugh jackman,1353799317 +241546,4344,to see: crime,1353799300 +241546,4472,to see: b-grade horror,1305697985 +241546,4553,b-grade,1353812079 +241546,4553,sci fi,1353812080 +241546,4643,Mark Wahlberg,1312414681 +241546,4643,sci fi,1353812432 +241546,4735,to see: horror/action,1305698072 +241546,4786,to see: b-grade horror,1305698836 +241546,5026,to see: werewolf,1305753485 +241546,5094,sci fi,1353812245 +241546,5094,sports,1353812245 +241546,5165,to see: zombie,1305753780 +241546,5203,to see: horror/comedy,1305753689 +241546,5210,to see: zombie,1305753923 +241546,5219,milla jovovich,1355256063 +241546,5296,to see: comedy,1305698411 +241546,5311,to see: b-grade horror,1305698621 +241546,5413,to see: zombie,1305698437 +241546,5433,to see: werewolf,1305698599 +241546,5542,to see: zombie,1305753892 +241546,5568,to see: comedy,1305698844 +241546,5592,to see: horror/comedy,1305753932 +241546,5620,to see: chick flick,1305698704 +241546,5669,to see: documentary,1305699261 +241546,5726,to see: zombie,1305753559 +241546,5787,Mark Wahlberg,1312414986 +241546,5787,remake,1353812517 +241546,5833,werewolf,1353813455 +241546,5903,to see: sci fi,1305753578 +241546,5970,kites for kiddos,1353812974 +241546,5989,to see: crime,1305753507 +241546,6333,anna paquin,1303950706 +241546,6333,famke janssen,1303950706 +241546,6333,superhero,1353811907 +241546,6378,crime,1353812415 +241546,6378,Mark Wahlberg,1312414701 +241546,6502,to see: zombie,1305753353 +241546,6539,hilarious,1303951180 +241546,6539,johnny depp,1303951180 +241546,6631,to see: b-grade horror,1305697970 +241546,6744,to see: vampire,1305753013 +241546,6872,to see: horror,1305752849 +241546,6966,to see: horror/sci fi,1305699047 +241546,7026,80s,1353812107 +241546,7026,comedy,1353812107 +241546,7127,to see: crime,1353799546 +241546,7159,to see: comedy,1305699152 +241546,7340,80s,1353812940 +241546,7340,comedy,1353812936 +241546,7445,to see: action,1305753682 +241546,7882,to see: zombie,1305753700 +241546,8024,Samantha Mathis,1309500857 +241546,8024,Sandra Bullock,1309500858 +241546,8241,to see: quirky,1353813394 +241546,8268,to see: action/romance,1307331495 +241546,8666,to see: superhero,1353797445 +241546,8783,M. Night Shyamalan,1303950834 +241546,8831,to see: crime,1305698271 +241546,8855,bad even for me,1313559948 +241546,8861,milla jovovich,1303951127 +241546,8861,oded fehr,1303951127 +241546,8861,zombies,1303951127 +241546,8874,parody,1303950999 +241546,8874,zombies,1303950999 +241546,8910,Mark Wahlberg,1312414918 +241546,8928,to see: horror/comedy,1305753601 +241546,8939,to see: sci fi,1353798182 +241546,26558,to see: horror/comedy,1305698547 +241546,26973,to see: b-grimm,1305753125 +241546,27592,to see: action,1305752761 +241546,30867,to see: comedy,1305699369 +241546,32300,parody,1353812875 +241546,32728,to see: horror,1305753655 +241546,34048,remake,1304057133 +241546,34150,to see: superhero,1353797063 +241546,34534,crime,1353812454 +241546,34534,Mark Wahlberg,1312414897 +241546,39796,to see: action,1305753865 +241546,42728,to see: medieval,1305698774 +241546,43589,to see: horror,1305699125 +241546,43928,milla jovovich,1353812019 +241546,43928,superhero,1353812019 +241546,43987,Demi Moore,1309499545 +241546,44903,to see: horror,1305753980 +241546,45442,undecided,1353799510 +241546,47610,to see: fantasy,1305753645 +241546,47644,Mark Wahlberg,1312414861 +241546,47644,sports,1353812466 +241546,47810,to see: horror,1305752922 +241546,48516,crime,1353812449 +241546,48516,Mark Wahlberg,1312414841 +241546,51077,to see: superhero,1353797534 +241546,51935,action,1353812480 +241546,51935,Mark Wahlberg,1312414882 +241546,52644,to see: horror,1305698609 +241546,52660,to see: b-grade horror,1305754069 +241546,52717,to see: battle royale style,1353128096 +241546,53000,to see: zombie,1305753359 +241546,53125,hilarious,1303951203 +241546,53125,johnny depp,1303951203 +241546,53464,to see: superhero,1353797092 +241546,53953,boring,1304151169 +241546,53972,to see: action,1305699116 +241546,54270,bad even for me,1352773288 +241546,54270,werewolf,1353813465 +241546,55116,to see: war funny,1352956084 +241546,55232,milla jovovich,1355256121 +241546,55272,Mark Wahlberg,1312414801 +241546,56715,to see: suicide,1305752837 +241546,56775,funny,1303951235 +241546,56775,treasure hunt,1303951235 +241546,56801,to see: horror/sci fi,1305752968 +241546,57640,to see: superhero,1305753637 +241546,58332,to see: zombie,1305698560 +241546,58485,zombies,1353812271 +241546,58806,Ellen Page,1313569805 +241546,58975,to see: b-grade horror,1305698517 +241546,59727,boring,1304150945 +241546,59985,to see: comedy,1305753229 +241546,60037,M. Night Shyamalan,1353812409 +241546,60037,Mark Wahlberg,1312414646 +241546,60040,superhero,1353811821 +241546,60303,to see: horror,1305753743 +241546,60522,to see: b-grade,1305753091 +241546,60674,to see: sci fi,1305698791 +241546,61210,to see: sci fi,1353798701 +241546,61240,to see: b-grade horror,1305699379 +241546,61323,to see: comedy,1305753495 +241546,61401,to see: superhero,1353797415 +241546,62394,Mark Wahlberg,1312414784 +241546,62394,video game,1353812443 +241546,62788,to see: b-grade horror,1305752980 +241546,62970,to see: fantasy,1305753147 +241546,65552,to see: jean-claude van damme,1305752936 +241546,65882,horror,1353811983 +241546,66691,to see: crime,1353799009 +241546,66789,b-grade,1353812903 +241546,66789,sci fi,1353812909 +241546,67186,to see: horror/ghosts,1305698384 +241546,67197,nicolas cage,1353799062 +241546,67197,to see: sci fi,1353799052 +241546,67734,to see: quirky,1352955891 +241546,68319,hugh jackman,1303950784 +241546,68319,superhero,1353811918 +241546,68358,Chris Hemsworth,1353798364 +241546,68358,star trek,1353798352 +241546,69481,seen part of,1313557408 +241546,69757,to see: chick flick,1305699166 +241546,70175,to see: crime,1305753916 +241546,70208,milla jovovich,1355256130 +241546,71500,horror,1353812028 +241546,71518,ellen page,1353811930 +241546,71518,rebel girls,1352685758 +241546,71530,to see: sci fi,1353798230 +241546,71535,zombies,1303950630 +241546,72109,to see: horror/comedy,1305754112 +241546,72393,to see: sci fi,1305754369 +241546,72731,Mark Wahlberg,1312414718 +241546,72982,fantasy,1353813266 +241546,74452,unmet expectations,1304240308 +241546,74458,psychological,1303950986 +241546,74868,to see: horror,1305753055 +241546,76175,remake,1304056273 +241546,79592,comedy,1353812562 +241546,79592,Mark Wahlberg,1312414771 +241546,79695,to see: action,1305753215 +241546,80363,milla jovovich,1355256107 +241546,80549,comedy,1353813102 +241546,80831,remake,1353797969 +241546,81080,to see: vampire,1305754011 +241546,81164,to see: horror,1305753289 +241546,81180,to see: horror,1353797804 +241546,81229,to see: action,1305753302 +241546,81932,Mark Wahlberg,1312414630 +241546,81932,sports,1353812395 +241546,82041,to see: b-grade horror,1305753341 +241546,83923,to see: horror,1305754155 +241546,84262,to see: b-grade horror,1305753955 +241546,84764,to see: werewolf,1305754140 +241546,85020,to see: action,1305753237 +241546,85056,to see: sci fi,1353798796 +241546,85215,to see: comedy,1305754077 +241546,85392,to see: comedy,1305754004 +241546,85397,to see: b-grimm,1305753248 +241546,85510,to see: fantasy,1305753196 +241546,86332,chris hemsworth,1353812069 +241546,86332,superhero,1353812069 +241546,86778,to see: horror,1305754093 +241546,86802,to see: b-grade horror,1305754102 +241546,87430,to see: superhero,1353797047 +241546,89774,to see: sports,1353903082 +241546,90405,to see: sci fi,1353798111 +241546,94780,chris hemsworth,1353799473 +241546,94864,sci fi,1355038624 +241546,95510,emma stone,1353798859 +241546,95510,to see: superhero,1353798852 +241546,95875,remake,1353812052 +241546,95875,sci fi,1353812041 +241546,96610,to see: time travel,1353796799 +241546,96691,milla jovovich,1355256140 +241546,97188,fucking scary,1353813627 +241546,97188,horror,1353813627 +241620,39183,Tragedy,1156417436 +241627,593,Horror,1424506676 +241627,1197,witty,1424506216 +241627,2571,amazing fight choreography,1424506075 +241627,2571,visually stunning,1424506067 +241627,4308,colourful,1424506367 +241627,4308,musical,1424506371 +241627,4308,passionate,1424506366 +241627,4308,soundtracks,1424506380 +241627,4308,stylized,1424506369 +241627,4308,visually stunning,1424506375 +241627,30816,Musical,1424506397 +241627,30816,visually appealing,1424506399 +241627,48780,romance,1424505925 +241627,53123,bad soundtrack,1424506274 +241627,53123,nothing seems to happen,1424506281 +241627,53125,comedy,1424505983 +241627,53125,quirky,1424505985 +241627,53125,soundtrack,1424506011 +241627,53125,surreal,1424506005 +241627,67788,feel-good,1424505817 +241627,67788,good clean comedy,1424505812 +241627,67788,romance,1424505810 +241627,69757,artistic,1424506237 +241627,69757,no happy ending,1424506228 +241627,79132,clever,1424505857 +241627,79132,great soundtrack,1424505859 +241627,79132,happy ending,1424505881 +241627,79132,original plot,1424505874 +241627,79132,visually appealing,1424505853 +241627,79132,visually stunning,1424505866 +241627,109487,visually appealing,1424505962 +241627,118997,musical,1424506357 +241639,1298,psychedelic,1187542884 +241639,1883,politics and race,1187542814 +241639,2423,suburbia,1187542928 +241639,3362,CRIME GONE AWRY,1187542848 +241639,6870,melodrama,1187542865 +241650,1913,boring,1289744442 +241650,1913,dull,1289744442 +241650,1913,ominous,1289744461 +241650,3499,hobbling,1290559655 +241650,3499,man has legs horribly broken,1290559665 +241650,5853,exploding heads,1290634307 +241650,5853,weak ending,1290634323 +241650,6615,As violent and retarded as Jason himself,1288389308 +241650,6615,hilarious,1288389287 +241650,31696,Keanu Reeves,1288385999 +241650,71379,just chairs moving about by themselves,1288386723 +241698,260,classic,1438947074 +241698,260,sci-fi,1438947043 +241698,48774,cinematography,1438948432 +241698,48774,dystopia,1438948446 +241698,48774,sci-fi,1438948450 +241698,48774,social commentary,1438948551 +241698,70286,sci-fi,1438948494 +241698,70286,social commentary,1438948537 +241698,70286,Special Effects,1438948511 +241698,88129,cinematography,1438948170 +241698,88129,great soundtrack,1438948145 +241698,88129,violence,1438948205 +241698,108729,psychological,1438948269 +241698,108979,animation,1438947995 +241708,30749,genocide,1447934392 +241708,30749,war,1447934320 +241708,142492,war holocaust,1447933296 +241730,61323,dark comedy,1227076114 +241730,61323,satire,1227076119 +241739,260,cult classic,1437127355 +241739,260,sci-fi,1437127349 +241739,260,space action,1437127361 +241739,260,space adventure,1437127359 +241739,112552,drama,1437127544 +241739,112552,exceptional acting,1437127544 +241739,112552,indie,1437127544 +241752,48738,Idi Amin,1207229222 +241752,55820,up its own ass,1207302274 +241776,260,fantasy,1439569314 +241776,260,sci-fi,1439569305 +241776,260,space action,1439569320 +241782,103984,moving,1421086802 +241782,103984,notable soundtrack,1421086802 +241782,103984,riveting,1421086802 +241800,110,based on a true story,1407007508 +241800,110,british,1407007510 +241800,110,classic,1407007560 +241800,110,inspirational,1407007520 +241800,110,Nudity (Topless),1407007495 +241800,110,Oscar (Best Cinematography),1407007536 +241800,110,Oscar (Best Picture),1407007540 +241800,168,Arthurian legend,1407836027 +241800,168,Sean Connery,1407836045 +241800,356,bittersweet,1407136764 +241800,356,comedy,1407136767 +241800,356,emotional,1407136770 +241800,356,historical,1407136772 +241800,356,inspirational,1407136790 +241800,356,Oscar (Best Picture),1407136777 +241800,356,romance,1407136787 +241800,356,Tom Hanks,1407136784 +241800,367,goofy,1407138502 +241800,367,Jim Carrey,1407138483 +241800,367,sex jokes,1407138491 +241800,380,action,1407485184 +241800,380,comedy,1407485186 +241800,380,Jamie Lee Curtis,1407485192 +241800,380,violence,1407485205 +241800,468,British,1407137504 +241800,468,british comedy,1407137504 +241800,468,comedy,1407137504 +241800,468,drama,1407137507 +241800,480,action,1407314230 +241800,480,adventure,1407314235 +241800,480,horror,1407314240 +241800,480,Oscar (Best Effects - Visual Effects),1407314244 +241800,480,violence,1407314249 +241800,500,Comedy,1407142580 +241800,500,cross dressing men,1407142600 +241800,500,divorce,1407142583 +241800,500,Drama,1407142585 +241800,500,men in drag,1407142589 +241800,589,adventure,1407484915 +241800,589,apocalypse,1407484929 +241800,589,violence,1407484907 +241800,590,adventure,1407222064 +241800,590,based on a book,1407145011 +241800,590,bittersweet,1407145015 +241800,590,drama,1407145030 +241800,590,Oscar (Best Cinematography),1407145023 +241800,590,Oscar (Best Picture),1407145021 +241800,593,Anthony Hopkins,1407315904 +241800,593,based on a book,1407315906 +241800,593,cannibalism,1407315890 +241800,593,classic,1407315908 +241800,593,disturbing,1407315884 +241800,593,Horror,1407315887 +241800,593,Jodie Foster,1407315902 +241800,593,mental illness,1407315914 +241800,593,Oscar (Best Picture),1407315900 +241800,593,serial killer,1407315892 +241800,595,animation,1407421658 +241800,595,beautiful,1407421659 +241800,595,classic,1407421661 +241800,595,heartwarming,1407421663 +241800,595,humorous,1407421665 +241800,595,Oscar (Best Music - Original Score),1407421669 +241800,1035,based on book,1407221629 +241800,1035,classic,1407221633 +241800,1035,dance,1407221625 +241800,1035,family,1407221623 +241800,1035,musical,1407221621 +241800,1035,Oscar (Best Picture),1407221618 +241800,1246,Drama,1411380934 +241800,1246,English literature,1411380922 +241800,1246,inspirational,1411380910 +241800,1425,british comedy,1407162263 +241800,1425,humorous,1407162240 +241800,1425,Jamie Lee Curtis,1407162236 +241800,1425,John Cleese,1407162231 +241800,1954,bittersweet,1407761522 +241800,1954,classic,1407761506 +241800,1954,drama,1407761526 +241800,1954,Inspirational,1407761508 +241800,1954,Oscar (Best Picture),1407761515 +241800,1954,underdog,1407761516 +241800,1957,Oscar (Best Picture),1407144860 +241800,1957,religion,1407144857 +241800,2324,bittersweet,1407137394 +241800,2324,comedy,1407137396 +241800,2324,emotional,1407137399 +241800,2324,funny,1407137401 +241800,2324,sentimental,1407137414 +241800,2571,alternate reality,1407484723 +241800,2571,fantasy,1407484731 +241800,2571,martial arts,1407484734 +241800,2571,violence,1407484742 +241800,2571,virtual reality,1407484747 +241800,3252,based on book,1407145796 +241800,3252,dance,1407145807 +241800,3252,drama,1407145793 +241800,4022,adventure,1407137981 +241800,4022,drama,1407137982 +241800,4022,man vs. nature,1407137994 +241800,4022,Tom Hanks,1407137998 +241800,4306,comedy,1407137910 +241800,4306,Dreamworks,1407137906 +241800,4306,Oscar (Best Animated Feature),1407137925 +241800,4306,pixar,1407137899 +241800,4306,Quirky,1407137916 +241800,4306,witty,1407137918 +241800,4963,action,1408133106 +241800,4963,comedy,1408133113 +241800,4963,plot twist,1408133121 +241800,4963,witty,1408133124 +241800,4981,comedy of errors,1407145531 +241800,4981,John Cleese,1407145445 +241800,4981,NOTHING GOES RIGHT,1407145432 +241800,5218,comedy,1407142144 +241800,5218,pixar,1407142136 +241800,5299,comedy,1407222653 +241800,5299,funny,1407222669 +241800,6377,Comedy,1407143003 +241800,6377,family,1407143010 +241800,6377,funny,1407142996 +241800,6377,heartwarming,1407142998 +241800,6377,Oscar (Best Animated Feature),1407142992 +241800,6377,Pixar,1407142989 +241800,6550,comedy,1407223848 +241800,6550,hilarious,1407223848 +241800,6753,funny,1407651942 +241800,6753,inspirational,1407651942 +241800,8368,Dark,1407222470 +241800,8368,harry potter,1407222461 +241800,8368,magic,1407222457 +241800,8368,werewolf,1407222445 +241800,8368,witch,1407222451 +241800,8368,Wizards,1407222447 +241800,8372,funny,1407421782 +241800,8372,good animation,1407421786 +241800,8879,based on a book,1407138349 +241800,8879,classic,1407138392 +241800,8879,private investigator,1407138362 +241800,8879,Sean Connery,1407138344 +241800,27837,adventure,1407485833 +241800,27837,overcoming odds,1407485833 +241800,27837,survival,1407485833 +241800,30793,based on a book,1407836223 +241800,30793,fantasy,1407836229 +241800,33615,Dreamworks,1407142021 +241800,44022,Animation,1407222773 +241800,44022,Comedy,1407222777 +241800,45208,adventure,1407141809 +241800,45208,comedy,1407141814 +241800,45517,comedy,1407222336 +241800,45517,emotional,1407222351 +241800,45517,Pixar,1407222343 +241800,45517,small town,1407222348 +241800,45656,charming,1428393594 +241800,45656,dancing,1407146193 +241800,45656,quirky,1428393594 +241800,45656,slow,1428393594 +241800,45656,sweet,1407146193 +241800,48414,comedy,1407222846 +241800,48414,family,1407222846 +241800,50872,clever,1407137309 +241800,50872,Family,1407137312 +241800,50872,pixar,1407137321 +241800,50923,good story,1407142293 +241800,50923,Motivation,1407142383 +241800,50923,rural,1407142383 +241800,50923,small town,1407142383 +241800,51660,inspirational,1408133252 +241800,51660,lesson,1408133252 +241800,51660,morality,1408133252 +241800,52694,funny,1407223995 +241800,52694,stupid,1407224007 +241800,52694,vacation,1407224001 +241800,55872,inspirational,1407145997 +241800,55872,music,1407146005 +241800,55872,power of music,1407146009 +241800,55872,uplifting and compelling,1407146019 +241800,58299,comedy,1407836323 +241800,58299,happy ending,1407836311 +241800,64983,based on a true story,1407142838 +241800,64983,exciting,1407142842 +241800,68954,adventure,1407484600 +241800,68954,bittersweet,1407484602 +241800,68954,comedy,1407484604 +241800,68954,funny,1407484617 +241800,68954,Pixar,1407484608 +241800,73290,based on a true story,1407224164 +241800,73290,dogs,1407224169 +241800,73290,Loyalty,1407224173 +241800,73290,Moving,1407224185 +241800,78316,Amanda Seyfried,1407143471 +241800,78316,Annemari,1407143475 +241800,78316,funny,1407143432 +241800,78316,Gael García Bernal,1407143485 +241800,78316,happy ending,1407143493 +241800,78316,italian,1407143499 +241800,78316,italians,1407143508 +241800,78316,italy,1407143505 +241800,78316,journalism,1407143513 +241800,78316,misunderstanding,1407143514 +241800,78316,movie to see,1407143516 +241800,78316,New York City,1407143519 +241800,78316,predictable,1407143522 +241800,78316,quest,1407143526 +241800,78316,relationships,1407143528 +241800,78316,romantic,1407143533 +241800,78316,verona,1407143537 +241800,78316,writer,1407143542 +241800,79091,funny,1407142221 +241800,79091,heartwarming,1407142188 +241800,79091,pixar,1407142192 +241800,80839,horses,1407221739 +241800,80839,inspiring,1407221741 +241800,80839,Motivation,1407221737 +241800,80839,overcoming odds,1407221751 +241800,80839,true story,1407221744 +241800,83369,adventure,1407486306 +241800,83369,based on true story,1407486329 +241800,83369,scenic,1407486340 +241800,83369,survival,1407486335 +241800,86298,adventure,1408364259 +241800,86298,Brazil,1408364248 +241800,86298,Comedy,1408364265 +241800,86298,dance,1408364257 +241800,86298,funny,1408364276 +241800,86298,music,1408364268 +241800,86298,nature wildlife,1408364263 +241800,88108,adventure,1407222578 +241800,88108,music,1407222578 +241800,88108,sweet,1407222578 +241800,90746,storytelling,1407143144 +241800,91653,Adventure,1407142686 +241800,91653,Family,1407142703 +241800,91653,family bonds,1407142672 +241800,91653,feel-good,1407142670 +241800,91653,Sense of Adventure,1407142678 +241800,94070,bittersweet,1407144635 +241800,94070,India,1407144661 +241800,94070,travel,1407144649 +241800,99145,action,1407248909 +241800,99145,inspirational,1407248899 +241800,99145,touching,1407248886 +241800,99220,british comedy,1407145338 +241800,99220,comedy,1407145338 +241800,104841,beautiful,1407138146 +241800,104841,cinematography,1407138159 +241800,110655,Brazil,1408364210 +241800,110655,jungle,1408364188 +241800,110655,South America,1408364199 +241860,733,prison,1339727442 +241860,1136,cult film,1339727531 +241860,6365,post-apocalyptic,1339727480 +241860,48516,organized crime,1339727433 +241860,48516,twist ending,1339727437 +241860,60069,Sci-Fi,1339727497 +241868,260,sci-fi,1438050979 +241868,260,space action,1438050986 +241868,296,crime,1438781936 +241868,296,quentin tarantino,1438781936 +241868,296,uma thurman,1438781936 +241868,2617,big budget,1438884068 +241868,2617,curse,1438884083 +241868,34319,cloning,1438508958 +241868,34319,dystopia,1438508943 +241868,34319,future,1438508955 +241868,34319,sci-fi,1438508952 +241878,260,classic,1430869118 +241878,260,cult classic,1430869127 +241885,260,Science Fiction,1443045163 +241885,260,space adventure,1443045176 +241906,111,BEST PICTURE,1142904528 +241943,128606,drama,1435241418 +241943,128606,marriage,1435241418 +241943,128606,relationships,1435241418 +241943,132588,drama,1433356353 +241943,132588,historical,1433356353 +241943,132588,repression,1433356353 +241950,296,cult,1433849097 +241950,296,motherfucker,1433849097 +241950,296,tarantino,1433849097 +241975,296,Quentin Tarantino,1450619705 +241975,4011,guy ritchie,1450619759 +241978,8958,great acting,1152619162 +241994,100714,honest,1374344545 +241994,100714,Julie Delpy,1374344528 +241994,100714,phylosophycal,1374344521 +241994,100714,Richard Linklater,1374344510 +241994,100714,romance,1374344537 +241994,103228,anime,1374434398 +241994,103228,fun,1374434401 +241994,103228,Idris Elba,1374434405 +241994,103228,Ron Perlman,1374434412 +241994,103228,visually appealing,1374434392 +242008,1953,british comedy,1186352879 +242014,296,action,1428444599 +242014,296,iconic,1428444599 +242014,296,non-linear,1428444599 +242014,673,disaster,1422813454 +242014,2571,dated,1422770706 +242014,2571,pretentious,1422770706 +242014,2571,stilted dialogue,1422770706 +242014,40851,bored game (amirite?),1422838708 +242014,64614,Clint Eastwood,1422813310 +242014,64614,racism,1422813297 +242014,64614,racist humor,1422813321 +242014,120222,anti-semitic,1422821115 +242014,120222,eldritch animation,1422821128 +242014,120222,horribly animated,1422821118 +242014,120222,nazi imagery,1422821131 +242014,120222,product placement,1422821113 +242014,120222,racist,1422821120 +242014,120222,racist stereotypes,1422821134 +242014,120222,sexualization,1422821137 +242019,356,excellent acting,1436742335 +242019,356,fantasy,1436742335 +242019,356,great storytelling,1436742335 +242021,41569,Naomi Watts,1448891224 +242021,49772,naomi watts,1448997401 +242021,70102,Joshua Jackson,1448994235 +242021,84392,Matthew McConaughey,1448994293 +242021,96588,Anna Kendrick,1448993473 +242054,260,Science Fiction,1439467713 +242054,260,space opera,1439467728 +242059,119139,science fiction,1421034011 +242061,1089,drugs,1363247466 +242084,2501,inspirational,1425315240 +242084,2762,twist ending,1425315126 +242084,3578,Russell Crowe,1425315069 +242084,55872,inspirational,1425315179 +242105,260,adventure,1441984553 +242105,260,classic,1441984546 +242106,356,everyone's favorite,1306547897 +242106,2585,Spanish,1445127809 +242106,2925,atmospheric,1424874777 +242106,2925,beautiful,1424874755 +242106,2925,Best of Rotten Tomatoes: All Time,1424874770 +242106,2925,cinematography,1424874762 +242106,2925,reflective,1424874775 +242106,2959,adolescent philosophy,1331576433 +242106,2959,silly,1331576424 +242106,3211,a dingo ate my baby,1424022890 +242106,3211,Australia,1424022895 +242106,3788,misogynistic,1382434178 +242106,4235,too long,1306264985 +242106,4644,Italy,1445377097 +242106,4975,bad remake,1306548034 +242106,4975,Tom Cruise,1306548049 +242106,5225,beautiful,1306547800 +242106,5477,Spanish,1445127822 +242106,5878,Breathtaking,1306264371 +242106,8784,annoying,1273883373 +242106,8784,narcissistic,1273883355 +242106,8784,overrated,1430661376 +242106,8873,slow,1306548501 +242106,8973,Gael Garcia Bernal,1330368242 +242106,8973,Pedro Almodovar,1330368247 +242106,27721,boring,1382435173 +242106,41285,tennis,1340717064 +242106,48394,Spanish Civil War,1330368500 +242106,48520,silly,1395834688 +242106,54372,plot holes,1382384684 +242106,54372,too complicated,1382384677 +242106,55052,heartbreaking,1306548185 +242106,55280,quirky,1340716975 +242106,58154,dull,1273937991 +242106,58154,histrionic,1273937999 +242106,59387,beautiful,1362863030 +242106,59387,disorganized,1362863033 +242106,60950,Penelope Cruz,1319245997 +242106,60950,Woody Allen,1319246010 +242106,69757,annoying,1273883398 +242106,69757,fake,1319245949 +242106,69757,overrated,1445376856 +242106,71033,spanish,1375734994 +242106,80463,Bechdel Test:Fail,1286914851 +242106,80463,women portrayed as slutty and stupid,1286914874 +242106,80549,silly,1334606749 +242106,81591,campy,1330368528 +242106,81591,fake,1330368522 +242106,81591,high-art trash,1330368591 +242106,81591,overrated,1306279043 +242106,81591,poshlust,1330368586 +242106,86882,clever,1340717147 +242106,97921,Jennifer Lawrence,1389744524 +242106,97936,beautiful,1358523311 +242106,97936,soundtrack,1358523318 +242106,98154,too long,1362754278 +242106,101612,mess,1375734820 +242106,102407,over-the-top,1389114711 +242106,104283,soundtrack,1391530674 +242106,104841,artistic,1395833969 +242106,104841,beautiful,1395833957 +242106,105420,pointless,1389114493 +242106,128626,heavy,1424021925 +242106,128626,migrants,1424021922 +242106,128626,powerful,1424021928 +242142,260,classic sci-fi,1442453934 +242142,260,EPIC,1442453974 +242146,260,classic,1426502677 +242146,260,legendary,1426502677 +242146,260,sci-fi,1426502677 +242146,96079,action,1426502582 +242146,99114,hilarious,1426502513 +242146,99114,western,1426502487 +242160,50,conspiracy,1441333416 +242160,50,funny,1441333424 +242160,50,organized crime,1441333410 +242160,50,twist ending,1441333405 +242160,110,action,1452569212 +242160,110,historical,1452569206 +242160,110,Medieval,1452569208 +242160,110,mel gibson,1452569206 +242160,110,Scotland,1452569211 +242160,110,war,1452569209 +242160,111,dark,1411697673 +242160,111,Jodie Foster,1411697689 +242160,111,loneliness,1411697676 +242160,111,mental illness,1411697678 +242160,180,1990s,1441332270 +242160,180,comic books,1441332272 +242160,180,crude humor,1441332317 +242160,180,jason lee,1441332303 +242160,180,Jay and Silent Bob,1441332264 +242160,180,Kevin Smith,1441332261 +242160,180,teen,1441332286 +242160,223,black and white,1441186482 +242160,223,dialogue driven,1441186491 +242160,223,independent film,1441186507 +242160,223,jay and silent bob,1441186494 +242160,223,Kevin Smith,1441186482 +242160,293,Action,1411697527 +242160,293,friendship,1411697535 +242160,293,love story,1411697539 +242160,293,Natalie Portman,1411697531 +242160,506,author:Virginia Woolf,1415489225 +242160,506,gender identity,1415489228 +242160,506,Tilda Swinton,1415489217 +242160,541,Bechdel Test:Fail,1435873779 +242160,541,neo-noir,1435873838 +242160,541,Philip K. Dick,1435873670 +242160,541,Rapist,1435873788 +242160,541,Robot rape scene,1435873750 +242160,562,adolescence,1418765218 +242160,562,depressing,1418765226 +242160,562,indie,1418765205 +242160,562,quirky,1418765208 +242160,562,Ugly main character,1418765204 +242160,563,class issues,1434074527 +242160,597,julia roberts,1417653275 +242160,597,prostitution,1417653284 +242160,597,sexism,1417653289 +242160,597,unreflective,1417653287 +242160,608,Coen Brothers,1439428072 +242160,608,crime,1439428079 +242160,608,dark comedy,1439428074 +242160,608,quirky,1439428076 +242160,608,strong female,1439428087 +242160,608,strong female character,1452005028 +242160,830,adultery,1411601921 +242160,830,divorce,1411601914 +242160,830,revenge,1411601931 +242160,830,women,1411601912 +242160,906,Ingrid Bergman,1434544216 +242160,906,paranoid,1434544218 +242160,1089,cult film,1411602014 +242160,1089,dark comedy,1411602017 +242160,1089,ensemble cast,1411602011 +242160,1089,multiple storylines,1411602002 +242160,1089,nonlinear,1411601997 +242160,1089,organized crime,1411601994 +242160,1089,Quentin Tarantino,1411601989 +242160,1089,undercover cop,1411602008 +242160,1089,violence,1411602005 +242160,1192,documentary,1413330363 +242160,1192,lgbt,1413330367 +242160,1192,prostitution,1413330374 +242160,1192,queer,1413330365 +242160,1192,transgender,1413330379 +242160,1192,vogue-ing,1413330380 +242160,1196,action,1451007996 +242160,1196,adventure,1451007992 +242160,1196,father-son relationship,1451008000 +242160,1196,George Lucas,1451007991 +242160,1196,Harrison Ford,1451007982 +242160,1196,sci-fi,1451007979 +242160,1196,space,1451007980 +242160,1196,Star Wars,1451007984 +242160,1197,Bechdel Test:Fail,1415683851 +242160,1197,Cult classic,1415683873 +242160,1197,fairy tale,1415683888 +242160,1201,Clint Eastwood,1415236300 +242160,1201,Ennio Morricone,1415236301 +242160,1201,Sergio Leone,1415236304 +242160,1201,western,1415236312 +242160,1206,atmospheric,1411697392 +242160,1206,cult film,1411697382 +242160,1206,disturbing,1411697396 +242160,1206,dystopia,1411697380 +242160,1206,Stanley Kubrick,1411697385 +242160,1206,violence,1411697388 +242160,1209,ennio morricone,1440996183 +242160,1209,rape,1440996199 +242160,1209,Sergio Leone,1440996182 +242160,1209,western,1440996186 +242160,1210,action,1451007716 +242160,1210,adventure,1451007714 +242160,1210,father-son relationship,1451007729 +242160,1210,George Lucas,1451007709 +242160,1210,Harrison Ford,1451007707 +242160,1210,sci-fi,1451007701 +242160,1210,slave costume,1451007778 +242160,1210,space,1451007703 +242160,1210,Star Wars,1451007700 +242160,1212,black and white,1411608743 +242160,1212,classic,1411608743 +242160,1212,film noir,1411608728 +242160,1212,noir thriller,1411608724 +242160,1213,anti-hero,1441848044 +242160,1213,based on a book,1441848026 +242160,1213,mafia,1441847999 +242160,1213,Martin Scorsese,1441848002 +242160,1213,robert de niro,1441848009 +242160,1213,violence,1441848017 +242160,1235,Cult Classic,1411603878 +242160,1235,cult film,1411603879 +242160,1235,dark comedy,1411603881 +242160,1235,dark humor,1411603884 +242160,1235,heartwarming,1411603886 +242160,1249,action,1411697497 +242160,1249,French,1411697493 +242160,1249,romance,1411697502 +242160,1285,black comedy,1413326779 +242160,1285,Christian Slater,1413326777 +242160,1285,serial killer,1413326793 +242160,1285,Winona Ryder,1413326786 +242160,1377,adapted from:comic,1411600782 +242160,1377,batman,1411600780 +242160,1377,comic book,1411600792 +242160,1377,dark,1411600794 +242160,1377,fantasy,1411600808 +242160,1377,Michelle Pfeiffer,1411600814 +242160,1377,superhero,1411600821 +242160,1377,Tim Burton,1411600819 +242160,1639,lesbian,1413330183 +242160,1639,sexuality,1413330188 +242160,1907,animation,1411696473 +242160,1907,China,1411696471 +242160,1907,cross dressing,1411696475 +242160,1907,Disney,1411696468 +242160,1907,military,1411696483 +242160,1907,strong female lead,1411696488 +242160,2316,magic,1411584016 +242160,2316,Nicole Kidman,1411584023 +242160,2316,Sandra Bullock,1411584045 +242160,2316,SUPERNATURAL ROMANCE,1411584047 +242160,2316,women,1411584027 +242160,2336,cate blanchett,1411697712 +242160,2361,black comedy,1451819186 +242160,2361,controversial,1451819176 +242160,2361,cult film,1451819172 +242160,2361,disturbing,1451819259 +242160,2361,Divine,1451819207 +242160,2361,incest,1451819193 +242160,2361,John Waters,1451819194 +242160,2361,low budget,1451819179 +242160,2361,silly,1451819243 +242160,2361,unsimulated sex,1451819205 +242160,2395,coming of age,1418748221 +242160,2395,high school,1418748228 +242160,2395,Wes Anderson,1418748217 +242160,2424,Meg Ryan,1417653337 +242160,2502,comedy,1446436515 +242160,2502,cult film,1446436520 +242160,2502,workplace,1446436517 +242160,2572,girl power,1411699121 +242160,2599,black comedy,1413326691 +242160,2599,cynical,1413326694 +242160,2599,lesbian,1413326725 +242160,2628,Ewan McGregor,1451007845 +242160,2628,George Lucas,1451007842 +242160,2628,Jar Jar Binks,1451007838 +242160,2628,Natalie Portman,1451007840 +242160,2628,Samuel L. Jackson,1451007849 +242160,2628,sci-fi,1451007833 +242160,2628,space,1451007834 +242160,2628,Star Wars,1451007831 +242160,2791,Leslie Nielsen,1441851272 +242160,2791,Parody,1441851270 +242160,2905,Akira Kurosawa,1452354740 +242160,2905,Japan,1452354745 +242160,2905,samurai,1452354742 +242160,2905,sword fighting,1452354748 +242160,2905,toshiro mifune,1452354752 +242160,2997,Charlie Kaufman,1411604136 +242160,2997,dark comedy,1411604140 +242160,2997,surreal,1411604142 +242160,3030,Akira Kurosawa,1452004325 +242160,3030,Japan,1452004365 +242160,3030,samurai,1452004326 +242160,3030,sword fighting,1452004362 +242160,3030,Toshiro Mifune,1452004359 +242160,3052,jay and silent bob,1440451320 +242160,3052,religion,1440451313 +242160,3052,satire,1440451327 +242160,3053,biographical,1411601455 +242160,3053,Catholicism,1411601455 +242160,3053,Christianity,1411601455 +242160,3053,France,1411601458 +242160,3053,historical,1411601462 +242160,3053,John Malkovich,1411601493 +242160,3053,mental illness,1411601477 +242160,3053,Milla Jovovich,1411601478 +242160,3053,politics,1411601482 +242160,3053,religion,1411601484 +242160,3255,feminism,1433920877 +242160,3255,sports,1433920869 +242160,3255,World War II,1433920872 +242160,3418,Action,1413329765 +242160,3418,feminism,1413329768 +242160,3418,Girl Power,1413329770 +242160,3418,rape,1413329778 +242160,3418,road movie,1413329772 +242160,3480,bully,1411955607 +242160,3480,charlie sheen,1411955609 +242160,3480,cheerleading,1411955615 +242160,3480,coming of age,1411955616 +242160,3480,high school,1411955620 +242160,3507,classic,1411947090 +242160,3507,Jack Lemmon,1411947083 +242160,3949,addiction,1411697741 +242160,3949,disturbing,1411697727 +242160,3949,drugs,1411697730 +242160,3949,powerful ending,1411697749 +242160,3949,social commentary,1411697735 +242160,4246,British,1433920537 +242160,4246,chick flick,1433920534 +242160,4246,Jane Austen,1433920548 +242160,4246,Renee Zellweger,1433920545 +242160,4262,Al Pacino,1441742995 +242160,4262,Brian De Palma,1441743061 +242160,4262,crime,1441743005 +242160,4262,drug abuse,1441743019 +242160,4262,Michelle Pfeiffer,1441743026 +242160,4262,organized crime,1441742998 +242160,4262,violence,1441743002 +242160,4306,animation,1411696622 +242160,4306,Dreamworks,1411696625 +242160,4306,fairy tale,1411696634 +242160,4306,parody,1411696629 +242160,4306,satire,1411696632 +242160,5218,animation,1411696662 +242160,5218,Disney,1411696667 +242160,5218,pixar,1411696671 +242160,5218,talking animals,1411696672 +242160,5222,sexuality,1418868283 +242160,5269,Michael Haneke,1411697834 +242160,5269,sexuality,1411697838 +242160,5269,teacher student relationship,1411697842 +242160,5291,Akira Kurosawa,1411602061 +242160,5291,black and white,1411602089 +242160,5291,multiple storylines,1411602068 +242160,5291,nonlinear,1411602075 +242160,5291,philosophy,1411602080 +242160,5291,surreal,1411602083 +242160,5378,Natalie Portman,1419134112 +242160,5380,adapted from:play,1411947589 +242160,5380,based on play,1411947589 +242160,5380,british,1411947522 +242160,5380,Colin Firth,1411947509 +242160,5380,mistaken identity,1411947512 +242160,5618,animation,1411584707 +242160,5618,anime,1411584705 +242160,5618,coming of age,1411584714 +242160,5618,dreamlike,1411584712 +242160,5618,fantasy,1411584721 +242160,5618,Hayao Miyazaki,1411584717 +242160,5618,Studio Ghibli,1411584725 +242160,5618,surreal,1411584727 +242160,5952,fantasy,1411698310 +242160,5952,visually appealing,1411698332 +242160,6367,60s,1445709565 +242160,6367,Chick Flick,1445709519 +242160,6367,Ewan McGregor,1445709509 +242160,6367,feminist,1445709556 +242160,6711,Bill Murray,1441186294 +242160,6711,Japan,1441186300 +242160,6711,loneliness,1441186313 +242160,6711,Scarlett Johansson,1441186296 +242160,6711,Sofia Coppola,1441186378 +242160,6773,animation,1411696344 +242160,6773,bicycling,1411696358 +242160,6773,French,1411696342 +242160,6773,mafia,1411696356 +242160,6773,no dialogue,1411696349 +242160,6773,stylized,1411696352 +242160,6807,British,1413085133 +242160,6807,british comedy,1413085139 +242160,6807,Monty Python,1413085144 +242160,6807,sketch comedy,1413085157 +242160,6807,Terry Gilliam,1413085149 +242160,6874,action,1411584423 +242160,6874,assassin,1411584425 +242160,6874,beautifully filmed,1411584427 +242160,6874,martial arts,1411584430 +242160,6874,nonlinear,1411584442 +242160,6874,Quentin Tarantino,1411584438 +242160,6874,stylized,1411584448 +242160,6874,violence,1411584445 +242160,7034,coming of age,1413328959 +242160,7034,lesbian,1413328930 +242160,7034,mother daughter relationship,1413328933 +242160,7034,sexuality,1413328936 +242160,7034,small town,1413328938 +242160,7034,social commentary,1413328939 +242160,7123,dreamlike,1440034008 +242160,7123,drugs,1440034010 +242160,7123,surreal,1440034005 +242160,7323,Berlin,1417485100 +242160,7323,communism,1417485106 +242160,7323,East Germany,1417485095 +242160,7323,family bonds,1417485108 +242160,7323,Germany,1417485103 +242160,7323,historical,1417485117 +242160,7323,The fall of the Berlin wall,1417485097 +242160,7371,disturbing,1416971346 +242160,7371,Lars von Trier,1416971349 +242160,7371,Nicole Kidman,1416971347 +242160,7371,rape,1416971366 +242160,7371,social commentary,1416971353 +242160,7438,kung fu,1411584490 +242160,7438,martial arts,1411584492 +242160,7438,Quentin Tarantino,1411584483 +242160,7438,Samuel L. Jackson,1411584496 +242160,7925,Akira Kurosawa,1452004445 +242160,7925,Japan,1452004452 +242160,7925,samurai,1452004449 +242160,7925,strong female character,1452005049 +242160,7925,strong woman,1452005043 +242160,7925,Toshiro Mifune,1452004447 +242160,8607,anime,1411696742 +242160,8607,baby,1411696779 +242160,8607,cross dressing,1411696742 +242160,8607,father daughter relationship,1411696747 +242160,8607,Gay Character,1411696753 +242160,8607,homeless,1411696751 +242160,8607,Satoshi Kon,1411696759 +242160,8638,dialogue,1411698906 +242160,8638,minimalist,1411698911 +242160,8638,romantic,1411698917 +242160,8666,DC Comics,1451351756 +242160,8666,Halle Berry,1451351754 +242160,8961,animation,1411696567 +242160,8961,family,1411696579 +242160,8961,Pixar,1411696564 +242160,8961,super-hero,1411696584 +242160,8983,amazing photography,1411602365 +242160,8983,beautifully filmed,1411602368 +242160,8983,Kick-Butt Women,1411602405 +242160,8983,martial arts,1411602371 +242160,8983,unrealistic,1411602408 +242160,27451,black and white,1451352385 +242160,27451,Gakuryu Ishii,1451352393 +242160,27592,brutality,1411601421 +242160,27592,Chan-wook Park,1411601420 +242160,27592,revenge,1411601433 +242160,27592,Revenge Trilogy,1411601428 +242160,27773,Chan-wook Park,1411601372 +242160,27773,disturbing,1411601378 +242160,27773,twist ending,1411601383 +242160,27904,based on a book,1411955763 +242160,27904,cyberpunk,1411955765 +242160,27904,drugs,1411955771 +242160,27904,Keanu Reeves,1411955757 +242160,27904,Philip K. Dick,1411955753 +242160,27904,social commentary,1411955776 +242160,27904,surreal,1411955773 +242160,27904,twist ending,1411955780 +242160,31658,animation,1411602162 +242160,31658,anime,1411602163 +242160,31658,dreamlike,1411602167 +242160,31658,Hayao Miyazaki,1411602171 +242160,31658,steampunk,1411602204 +242160,31658,Studio Ghibli,1411602210 +242160,32587,atmospheric,1411600898 +242160,32587,black comedy,1411600904 +242160,32587,comic book,1411600912 +242160,32587,multiple storylines,1411600910 +242160,32587,Quentin Tarantino,1411600912 +242160,32587,stylized,1411600916 +242160,32587,surreal,1411600922 +242160,33493,Hayden Christensen,1419134132 +242160,33903,politics,1417485159 +242160,33903,thought-provoking,1417485164 +242160,36363,cult film,1413340537 +242160,36363,russian,1413340546 +242160,36363,sci-fi,1413340542 +242160,37495,colorful,1453162874 +242160,37495,dark comedy,1453162867 +242160,37495,Gen Sekiguchi,1453162885 +242160,37495,Japan,1453162877 +242160,37495,japanese,1453162864 +242160,37495,multiple storylines,1453162869 +242160,37495,murder,1453162879 +242160,37495,surreal,1453162863 +242160,37495,Tadanobu Asano,1453162888 +242160,37495,Vinnie Jones,1453162883 +242160,40629,Jane Austen,1411698762 +242160,40629,Keira Knightley,1411698761 +242160,44191,Alan Moore,1416971095 +242160,44191,comic book,1416971067 +242160,44191,dark,1416971082 +242160,44191,dystopia,1416971065 +242160,44191,Natalie Portman,1416971073 +242160,44191,politics,1416971069 +242160,44191,social commentary,1416971071 +242160,44191,terrorism,1416971085 +242160,44195,cigarettes,1416971127 +242160,44195,dark comedy,1416971121 +242160,44195,politics,1416971130 +242160,44195,satire,1416971119 +242160,44195,smoking,1416971139 +242160,44195,social commentary,1416971123 +242160,45720,Anne Hathaway,1415235979 +242160,45720,chickflick,1415235992 +242160,45720,fashion,1415235975 +242160,45720,Meryl Streep,1415235975 +242160,46578,beauty pageant,1416971259 +242160,46578,dark comedy,1416971235 +242160,46578,drugs,1416971274 +242160,46578,dysfunctional family,1416971240 +242160,46578,family,1416971266 +242160,46578,feel-good,1416971249 +242160,46578,heartwarming,1416971264 +242160,46578,philosophy,1416971276 +242160,46578,road trip,1416971238 +242160,46578,satire,1416971245 +242160,46578,social commentary,1416971242 +242160,46578,suicide,1416971279 +242160,47997,dystopia,1446436578 +242160,47997,future,1446436585 +242160,47997,social commentary,1446436581 +242160,48385,mockumentary,1416971317 +242160,48385,Sacha Baron Cohen,1416971321 +242160,48394,atmospheric,1411602464 +242160,48394,fantasy,1411602461 +242160,48394,Spanish Civil War,1411602483 +242160,48394,surreal,1411602457 +242160,51662,adapted from:comic,1411584369 +242160,51662,artistic,1411584371 +242160,51662,based on a comic,1411584375 +242160,51662,based on comic,1411584379 +242160,51662,comic book,1411584384 +242160,51662,Frank Miller,1411584387 +242160,52885,animation,1411602268 +242160,52885,anime,1411602263 +242160,52885,dreamlike,1411602250 +242160,52885,philosophical,1411602254 +242160,52885,Satoshi Kon,1411602273 +242160,52885,surreal,1411602258 +242160,54259,author:Neil Gaiman,1411584097 +242160,54259,modern fantasy,1411584103 +242160,55167,anime,1411696815 +242160,55167,beautiful animation,1411696819 +242160,55167,dualism,1411696842 +242160,55167,manga,1411696824 +242160,55167,visually appealing,1411696834 +242160,55167,yakuza,1411696829 +242160,55190,Catherine Tate,1411948219 +242160,55190,gay,1411948213 +242160,55190,meta,1411948230 +242160,56367,cult film,1413328800 +242160,56367,pregnancy,1413328817 +242160,56715,afterlife,1411604065 +242160,56715,dark comedy,1411604061 +242160,56715,Eugene Hutz,1411604058 +242160,56869,based on a book,1420179840 +242160,56869,disturbing,1420179840 +242160,56869,surreal,1420179840 +242160,57504,Anime,1415683930 +242160,57504,friendship,1415683933 +242160,58490,1930s,1441003810 +242160,58490,Female Bonding,1441003812 +242160,58490,Frances McDormand,1441003804 +242160,60684,cold war,1411600965 +242160,60684,comic book,1411600948 +242160,60684,dystopia,1411600962 +242160,60684,music,1411600985 +242160,60684,superhero,1411600980 +242160,62376,adventure,1441415415 +242160,62376,based on a book,1441415420 +242160,62376,Bill Murray,1441415416 +242160,62376,Saoirse Ronan,1441415432 +242160,62376,steampunk,1441415408 +242160,63082,India,1411697926 +242160,63082,social commentary,1411697930 +242160,63876,gay,1413327238 +242160,63876,glbt,1413327265 +242160,63876,politics,1413327256 +242160,63876,Sean Penn,1413327252 +242160,63876,true story,1413327261 +242160,65261,Animation,1411584651 +242160,65261,anime,1411584653 +242160,65261,Ghibli,1411584659 +242160,65261,Hayao Miyazaki,1411584657 +242160,66097,animation,1411602122 +242160,66097,dark fantasy,1411602128 +242160,66097,dystopia,1411602130 +242160,66097,Surreal,1411602132 +242160,69757,bittersweet,1411698827 +242160,69757,Zooey Deschanel,1411698812 +242160,71248,Mila Kunis,1446505945 +242160,72011,airport,1416971213 +242160,72011,loneliness,1416971210 +242160,72998,cliched plot,1434725192 +242160,72998,predictable,1434725094 +242160,72998,style over substance,1434725185 +242160,72998,superficial plot,1434725186 +242160,72998,white guilt,1434725176 +242160,74624,astronomy,1413339094 +242160,74624,atheism,1413339096 +242160,74624,Egypt,1413339263 +242160,74624,mathematics,1413339259 +242160,74624,philosophy,1413339100 +242160,74624,Rachel Weisz,1413339102 +242160,74624,religion,1413339104 +242160,77455,consumerism,1413327198 +242160,77455,fake documentary,1413327194 +242160,77455,graffiti,1413327200 +242160,77455,social commentary,1413327205 +242160,79242,coming of age,1413330108 +242160,79242,dysfunctional family,1413330113 +242160,79293,escape sequences,1451351364 +242160,79293,female lead,1451351352 +242160,79293,strong female lead,1451351350 +242160,79702,based on a comic,1441850441 +242160,79702,Michael Cera,1441850435 +242160,79702,stylized,1441850428 +242160,79702,video games,1441850430 +242160,79702,visually appealing,1441850433 +242160,79796,action,1411584273 +242160,79796,Legends,1411584267 +242160,79796,Michael Fassbender,1411584249 +242160,79796,Romans,1411584261 +242160,81229,action,1452642715 +242160,81229,aging,1452642717 +242160,81591,lesbian,1411697783 +242160,81591,Natalie Portman,1411697778 +242160,81845,disability,1411697629 +242160,81845,true story,1411697638 +242160,82459,Coen Brothers,1441850506 +242160,84374,Ashton Kutcher,1418868258 +242160,86142,action,1411584294 +242160,86142,feudal japan,1411584298 +242160,86142,horrific violence,1411584304 +242160,86142,samurai,1411584307 +242160,86142,self-sacrifice,1411584311 +242160,86142,sword fight,1411584315 +242160,86142,Takashi Miike,1411584316 +242160,86190,action,1411697458 +242160,86190,beautiful cinematography,1411697439 +242160,86190,Cate Blanchett,1411697443 +242160,86190,character development,1411697447 +242160,86190,strong female lead,1411697450 +242160,87234,Coming Of Age,1413328506 +242160,87234,great soundtrack,1413328505 +242160,87234,Richard Ayoade,1413328505 +242160,87234,Teenagers,1413328510 +242160,88129,atmospheric,1411601814 +242160,88129,cinematography,1411601819 +242160,88129,ryan gosling,1411601822 +242160,88405,Mila Kunis,1418868218 +242160,88405,predictable,1418868214 +242160,91500,based on a book,1411697178 +242160,91500,dystopia,1411697181 +242160,91500,love,1411697211 +242160,91500,murder,1411697213 +242160,91500,science fiction,1411697204 +242160,91500,social commentary,1411697183 +242160,91500,strong female lead,1411697207 +242160,91500,survival,1411697235 +242160,91529,based on a comic,1411584540 +242160,91529,Batman,1411584534 +242160,91529,Christopher Nolan,1411584621 +242160,91529,plot twist,1411584564 +242160,91658,mystery,1415684026 +242160,91658,rape,1415684001 +242160,91658,serial killer,1415684021 +242160,91890,Margaret Thatcher,1411697590 +242160,91890,Meryl Streep,1411697586 +242160,92420,coming of age,1451352265 +242160,92420,sci-fi,1451352260 +242160,92420,teenage angst,1451352267 +242160,95167,bears,1433920926 +242160,95167,Bechdel Test:Pass,1433920922 +242160,95167,mother-daughter relationships,1433920895 +242160,95167,Pixar,1433920894 +242160,96726,Greta Gerwig,1420792536 +242160,96737,based on a comic,1411601322 +242160,96737,Dystopia,1411601332 +242160,96737,police corruption,1411601337 +242160,96737,sci-fi,1411601342 +242160,101106,David Grohl,1433959975 +242160,101106,rock and roll,1433959979 +242160,101741,action,1428104190 +242160,101741,James McAvoy,1428104170 +242160,101741,Mindfuck,1428104167 +242160,102684,beautifully filmed,1411601859 +242160,102684,Ryan Gosling,1411601863 +242160,102684,violence,1411601873 +242160,102800,best friends,1413328686 +242160,102800,black-and-white,1413328689 +242160,102800,comedy drama,1413328695 +242160,103372,Melissa McCarthy,1451351266 +242160,103372,Sandra Bullock,1451351267 +242160,105593,based on a book,1411584204 +242160,105593,corruption,1411584208 +242160,105593,male nudity,1411584211 +242160,105593,surreal,1411584216 +242160,106195,Saoirse Ronan,1420792429 +242160,106438,atheism,1413327037 +242160,106438,based on a true story,1413327044 +242160,106438,christianity,1413327039 +242160,106438,corruption,1413327050 +242160,106438,Judi Dench,1413327045 +242160,106438,religion,1413327053 +242160,106487,based on a book,1411697332 +242160,106487,dystopia,1411697338 +242160,106487,social commentary,1411697342 +242160,106489,adapted from:book,1411697298 +242160,106489,adventure,1411697311 +242160,106489,author:J. R. R. Tolkein,1411697305 +242160,106489,based on a book,1411697306 +242160,106489,too long,1411697301 +242160,106696,animation,1411696422 +242160,106696,Disney,1411696420 +242160,106696,magic,1411696438 +242160,106696,sister sister relationship,1411696426 +242160,106782,Anti-Hero,1415684614 +242160,106782,Leonardo DiCaprio,1415684616 +242160,106782,Martin Scorsese,1415684618 +242160,108190,female protagonist,1416970081 +242160,108945,police,1418770344 +242160,108945,remake,1418770350 +242160,108945,science fiction,1418770346 +242160,110461,punk,1411947475 +242160,111781,Action,1452534685 +242160,111781,rebecca ferguson,1452534675 +242160,112183,Broadway,1434725060 +242160,112183,dark,1434725058 +242160,112183,great performances,1434725044 +242160,112552,jazz,1421420566 +242160,112852,cyborgs,1411601036 +242160,112852,great soundtrack,1411601026 +242160,112852,sci-fi,1411601042 +242160,114028,queer,1434074444 +242160,114028,strike,1434074470 +242160,114028,worker's movement,1434074467 +242160,116823,based on a book,1416970328 +242160,116823,dystopia,1416970222 +242160,116823,fashion,1416970554 +242160,116823,Jennifer Lawrence,1416970261 +242160,116823,media,1416970557 +242160,116823,military,1416970472 +242160,116823,strong female lead,1416970199 +242160,118246,acting,1428014425 +242160,118246,ageing,1428014425 +242160,118246,lesbian,1428014425 +242160,119145,gentlemanly,1433920600 +242160,119145,Parody,1433920614 +242160,119145,spy,1433920617 +242160,119145,violent,1433920601 +242160,122882,action,1433920745 +242160,122882,charlize theron,1433920752 +242160,122882,chase,1433920756 +242160,122882,desert,1433920750 +242160,122882,dystopian,1433920759 +242160,122882,feminism,1433920748 +242160,122882,franchise,1433920773 +242160,122882,post apocalypse,1433920746 +242160,122882,violence,1433920763 +242160,122882,visually appealing,1433920754 +242160,122886,action,1451007534 +242160,122886,Adam Driver,1451007573 +242160,122886,BB-8,1451007513 +242160,122886,Carrie Fisher,1451007506 +242160,122886,Daisy Ridley,1451007645 +242160,122886,Fan service,1451007515 +242160,122886,father-son relationship,1451008785 +242160,122886,funny,1451008415 +242160,122886,Harrison Ford,1451007496 +242160,122886,J.J. Abrams,1451007499 +242160,122886,John Boyega,1451007500 +242160,122886,Lupita Nyong'o,1451008837 +242160,122886,Plot Recycling,1451007510 +242160,122886,space,1451007531 +242160,122886,Star Wars,1451007495 +242160,122886,strong female lead,1451008166 +242160,133771,surreal,1452642083 +242160,134853,childhood,1440996002 +242160,134853,coming of age,1440996018 +242160,134853,Pixar,1440995996 +242160,134853,psychology,1440995998 +242160,136204,social commentary,1443150307 +242160,138036,spy,1452642676 +242168,260,awesome,1439467304 +242168,260,best movie ever,1439467321 +242170,260,first of its kind,1442545018 +242170,260,Original,1442544997 +242175,2959,Brad Pitt,1438566413 +242175,4878,time travel,1438566379 +242175,71518,Ellen Page,1438566324 +242175,71518,girl power,1438566332 +242175,89745,Chris Evans,1438566645 +242175,89745,fast paced,1438566662 +242175,89745,great humor,1438566658 +242175,89745,superhero,1438566665 +242175,106072,Chris Evans,1438566700 +242175,106072,Chris Hemsworth,1438566709 +242175,110102,Chris Evans,1438566585 +242175,110102,Scarlett Johansson,1438566591 +242175,111362,Marvel,1438566561 +242175,111362,superpowers,1438566545 +242175,111362,time travel,1438566539 +242175,111362,X-men,1438566559 +242177,1617,film noir,1203144985 +242177,4848,lesbian,1226101939 +242177,26663,voyeurism,1178621454 +242177,27773,disturbing,1203142343 +242177,92008,bad soundtrack,1344917068 +242177,103849,gangster,1430863418 +242177,103849,power struggle,1430863418 +242177,103849,violent,1430863418 +242189,8798,character driven,1197791161 +242189,8798,dark,1197791119 +242189,8798,grainy,1197791161 +242189,47044,dark,1197791198 +242189,47044,grainy,1197791198 +242189,47044,stylish,1197790565 +242189,48780,nonlinear,1198391303 +242209,50,Kevin Spacey,1335947457 +242209,50,twist ending,1335947476 +242209,68157,Brad Pitt,1335948731 +242209,68157,great soundtrack,1335948714 +242209,68157,Nazis,1335948717 +242209,68157,Oscar (Best Supporting Actor),1335948723 +242209,68157,Quentin Tarantino,1335948707 +242209,68157,tense,1335948740 +242209,68157,World War II,1335948703 +242212,2,animals,1154126754 +242212,2,fantasy,1154126755 +242212,16,mafia,1154124501 +242212,16,non-fiction,1154124510 +242212,47,crime,1154124692 +242212,47,serial killer,1154124695 +242212,70,terrible ending,1154124839 +242212,111,vigilatism,1154126637 +242212,170,computers,1154128651 +242212,170,inaccurate,1154128657 +242212,173,comic book,1154127215 +242212,173,dystopia,1154127213 +242212,260,empire,1154123851 +242212,260,space,1154123843 +242212,272,biopic,1154128204 +242212,272,England,1154128197 +242212,272,funny,1154128195 +242212,272,madness,1154128214 +242212,296,crime,1154125161 +242212,300,corruption,1154126532 +242212,300,crime,1154126532 +242212,300,TV show,1154126532 +242212,316,time-travel,1154126254 +242212,377,bomb,1154126226 +242212,379,time-travel,1154129242 +242212,380,espionage,1154125608 +242212,431,gangster,1154128475 +242212,442,dystopia,1154126846 +242212,442,funny,1154126856 +242212,457,chase,1154125205 +242212,457,crime,1154125202 +242212,508,Oscar (Best Actor),1154126773 +242212,509,Oscar (Best Actress),1154126822 +242212,527,Holocaust,1154122500 +242212,541,androids,1154123326 +242212,541,futuristic,1154123338 +242212,541,Philip K. Dick,1154123328 +242212,588,artistic,1154126214 +242212,588,cartoon,1154126214 +242212,589,androids,1154123288 +242212,589,time-travel,1154123288 +242212,647,Gulf War,1154124478 +242212,923,"""rosebud""",1154127171 +242212,923,Orson Welles,1154127130 +242212,1027,crusades,1155939899 +242212,1027,Maid Marrion,1154124424 +242212,1027,Robin Hood,1154124406 +242212,1027,Sheriff of Nottingham,1154124406 +242212,1090,Oscar (Best Picture),1154122477 +242212,1090,Vietnam War,1154122479 +242212,1092,Erotic,1154121356 +242212,1096,holocaust,1155938731 +242212,1096,Oscar (Best Actress),1155938724 +242212,1101,fantasy,1154126911 +242212,1101,possibly homosexual,1154126911 +242212,1101,pro-military,1154126911 +242212,1120,factual,1154128357 +242212,1148,Aardman,1154121346 +242212,1148,claymation,1154121341 +242212,1183,Oscar (Best Picture),1154122883 +242212,1183,Oscar (Best Supporting Actress),1154122886 +242212,1193,mental illness,1154122819 +242212,1193,Oscar (Best Picture),1154122814 +242212,1198,archaeology,1154125323 +242212,1198,Nazis,1154125329 +242212,1199,dystopia,1154127697 +242212,1199,surreal,1154127698 +242212,1200,aliens,1154126109 +242212,1200,space,1154126102 +242212,1204,Oscar (Best Picture),1154122439 +242212,1206,criminal reform,1154123930 +242212,1206,Stanley Kubrick,1154123913 +242212,1208,surreal,1154125931 +242212,1208,Vietnam,1154125931 +242212,1208,war,1154125921 +242212,1214,aliens,1154126478 +242212,1214,futuristic,1154126484 +242212,1214,space,1154126464 +242212,1222,military,1155940008 +242212,1222,Vietnam war,1155939996 +242212,1240,androids,1154123303 +242212,1240,time-travel,1154123303 +242212,1246,childhood,1154127034 +242212,1246,English literature,1154127053 +242212,1246,school,1154127034 +242212,1250,Oscar (Best Picture),1154122900 +242212,1250,World War II,1154122899 +242212,1259,childhood,1154126815 +242212,1259,Stephen King,1154126809 +242212,1263,Oscar (Best Picture),1154122550 +242212,1263,probably libelous about Vietnamese,1154128315 +242212,1263,Vietnam,1154123205 +242212,1270,time-travel,1154126268 +242212,1272,Oscar (Best Picture),1154123138 +242212,1272,World War II,1154123137 +242212,1282,artistic,1154127992 +242212,1282,cartoon,1154127992 +242212,1282,surreal,1154127992 +242212,1293,Ghandi,1154122683 +242212,1293,India,1154122613 +242212,1293,Oscar (Best Picture),1154122611 +242212,1302,baseball,1154127724 +242212,1302,fantasy,1154127738 +242212,1320,aliens,1154127487 +242212,1320,prequel,1154127502 +242212,1320,prison,1154127541 +242212,1320,sequel,1154127502 +242212,1320,survival,1154127556 +242212,1374,battles,1154125675 +242212,1374,inappropriate sound in space,1154125719 +242212,1374,space,1154125675 +242212,1387,shark-attacks,1154126801 +242212,1393,"""Show me the money.""",1154126710 +242212,1393,sports,1154126694 +242212,1485,mildly funny,1154127197 +242212,1527,futuristic,1154124991 +242212,1552,aeroplane,1154375998 +242212,1552,prison,1154375988 +242212,1653,dystopia,1154127226 +242212,1653,eugenics,1154127240 +242212,1676,aliens,1154127368 +242212,1676,battles,1154127368 +242212,1676,futuristic,1154127338 +242212,1676,satire,1154127340 +242212,1676,space,1154127333 +242212,1682,reality television,1154127015 +242212,1682,television industry,1154127015 +242212,1693,slavery,1154129471 +242212,1721,Oscar (Best Picture),1154123158 +242212,1721,Titanic,1154123181 +242212,1748,aliens,1154128131 +242212,1748,dystopia,1154128131 +242212,1748,surreal,1154128131 +242212,1921,god,1154128616 +242212,1921,maths,1154128605 +242212,1952,Oscar (Best Picture),1154122843 +242212,1953,inaccurate,1154122667 +242212,1953,Oscar (Best Actor),1154122432 +242212,1953,Oscar (Best Directing),1154122565 +242212,1953,Oscar (Best Picture),1154122430 +242212,1953,police,1154122567 +242212,1955,divorce,1154122711 +242212,1955,Oscar (Best Picture),1154123195 +242212,1960,China,1154122646 +242212,1960,Oscar (Best Picture),1154122622 +242212,1967,childish,1154128688 +242212,1997,possession,1154127770 +242212,1997,unscary,1154127778 +242212,2011,time-travel,1154127096 +242212,2054,childish,1154127261 +242212,2054,fantasy,1154127255 +242212,2105,dystopia,1154128383 +242212,2105,fantasy,1154128379 +242212,2115,archaeology,1154127062 +242212,2115,Indiana Jones,1154127067 +242212,2117,based on novel,1154123718 +242212,2117,dystopia,1154123669 +242212,2117,Eric Blair,1154123718 +242212,2117,George Orwell,1154123718 +242212,2117,post-apocalyptic,1154123774 +242212,2167,vampires,1154375645 +242212,2191,based on novel,1154123557 +242212,2191,book was better,1154123557 +242212,2191,Eric Blair,1154123557 +242212,2191,George Orwell,1154123557 +242212,2191,life,1154123557 +242212,2329,neo-Nazis,1154127675 +242212,2329,racism,1154127667 +242212,2329,thuggery,1154127687 +242212,2396,Oscar (Best Picture),1154126502 +242212,2436,fascism,1155938787 +242212,2436,Italy,1155938787 +242212,2436,non-fiction,1155938793 +242212,2436,World War 2,1155938787 +242212,2528,dystopia,1154129291 +242212,2539,unfunny,1154128434 +242212,2571,poor sequels,1154125958 +242212,2571,surreal,1154125958 +242212,2571,virtual reality,1154125946 +242212,2672,virtual-reality,1155939448 +242212,2692,surreal,1154127390 +242212,2710,mimics documentary-style,1154126967 +242212,2791,aviation,1154127080 +242212,2791,funny,1154127087 +242212,2858,mid-life crisis,1154123816 +242212,2858,Oscar (Best Picture),1154123807 +242212,2858,suburbia,1154122492 +242212,2858,surrealism,1154122488 +242212,2959,fighting,1154124745 +242212,2959,subversion,1154124745 +242212,2959,vandalism,1154124745 +242212,2959,violence,1154124718 +242212,2997,surreal,1154126667 +242212,3098,baseball,1154129347 +242212,3098,sappy,1154129347 +242212,3176,crime,1154127612 +242212,3176,fraud,1154127612 +242212,3300,futuristic,1154128896 +242212,3527,alien,1154127803 +242212,3527,chase,1154127803 +242212,3527,hunting,1154127803 +242212,3527,survival,1154127803 +242212,3535,funny,1154375759 +242212,3535,insanity,1154375745 +242212,3535,insincerity,1154375745 +242212,3535,materialism,1154375745 +242212,3535,violence,1154375745 +242212,3578,gladiators,1154126661 +242212,3578,Rome,1154122512 +242212,3578,tigers,1154126661 +242212,3697,aliens,1154129411 +242212,3697,hunting,1154129411 +242212,3698,survival,1154129080 +242212,3783,casino,1154124554 +242212,3783,England,1154124544 +242212,3785,stupid,1154128710 +242212,3785,unfunny,1154128716 +242212,3986,futuristic,1155939379 +242212,3994,super-hero,1154128046 +242212,4034,not memorable,1154122337 +242212,4052,geeks,1155938964 +242212,4223,snipers,1154129131 +242212,4223,World War 2,1154129131 +242212,4223,World War II,1154129131 +242212,4226,memory,1154125259 +242212,4226,mystery,1154125264 +242212,4226,nonlinear,1154125262 +242212,4262,violence,1154125865 +242212,4816,farce,1154129363 +242212,4848,surreal,1154128796 +242212,4963,crime,1154127624 +242212,4963,heist,1154127623 +242212,4995,maths,1154123149 +242212,5010,factual,1154128540 +242212,5010,war,1154128535 +242212,5254,vampires,1154375648 +242212,5269,erotic,1155939495 +242212,5418,espionage,1154128158 +242212,5418,fighting,1154128172 +242212,5418,memory,1154128153 +242212,5418,survival,1154128172 +242212,5445,futuristic,1154127285 +242212,5445,Philip K. Dick,1154127279 +242212,5502,aliens,1154128563 +242212,5502,aliens killed by rain,1154128578 +242212,5502,crop-circles,1154128578 +242212,5989,crime,1154128223 +242212,5989,factual,1154128227 +242212,5995,factual,1154126054 +242212,5995,Holocaust,1154126032 +242212,5995,Nazis,1154126054 +242212,5995,Poland,1154126054 +242212,5995,World War 2,1154126054 +242212,6537,androids,1154123276 +242212,6537,time-travel,1154123276 +242212,6539,ghosts,1155939584 +242212,6539,pirates,1155939579 +242212,6667,ATF,1154395265 +242212,6711,life,1154128415 +242212,6797,Bugsy Siegal,1154124363 +242212,6797,gambling,1154124363 +242212,6797,Las Vegas,1154124363 +242212,6797,organised crime,1154124363 +242212,6934,sequel,1154128861 +242212,7163,Philip K. Dick,1154375878 +242212,7361,memory,1154125233 +242212,7361,surreal,1154125237 +242212,8207,assassination,1155940076 +242212,8207,Frederick Forsyth,1155940426 +242212,8581,Apple,1154125524 +242212,8581,geeks,1154125503 +242212,8581,history,1154125533 +242212,8581,Microsoft,1154125524 +242212,8581,non-fiction,1154125524 +242212,8644,futuristic,1155939256 +242212,8865,futuristic,1155939778 +242212,8865,robots,1155939769 +242212,8950,guilt,1154374034 +242212,8950,machining,1154374051 +242212,8950,memory,1154374012 +242212,8950,sanity,1154374034 +242212,26819,dystopia,1154124050 +242212,26819,prison,1154124014 +242212,27822,scuba-diving,1155939647 +242212,27822,sharks,1155939636 +242212,27822,stranding,1155939658 +242212,27846,abuse,1154123394 +242212,27846,capitalism,1154123371 +242212,27846,corporations,1154123394 +242212,30749,factual,1154125840 +242212,30749,genocide,1154125817 +242212,30749,history,1154125840 +242212,30749,United Nations,1154125840 +242212,30749,war,1154125840 +242212,30812,aircraft,1154124622 +242212,30812,biopic,1154124598 +242212,30812,film industry,1154124628 +242212,30812,Howard Hughes,1154124623 +242212,31410,Adolf Hitler,1154125884 +242212,31410,Berlin,1154125902 +242212,31410,bunker,1154125902 +242212,31410,factual,1154125903 +242212,31410,history,1154125903 +242212,31410,war,1154125902 +242212,32587,artistic,1154125979 +242212,32587,comic book,1154125977 +242212,33794,based on comic,1154123968 +242212,33794,super-hero,1154123955 +242221,199,bittersweet,1406539384 +242221,199,breakthroughs,1406539397 +242221,199,Catherine Deneuve,1406539382 +242221,199,notable soundtrack,1406539386 +242221,199,saturated,1406539388 +242221,296,cool,1419961748 +242221,296,drugs,1419961748 +242221,296,nice pace,1419961748 +242221,1206,fisheye,1311672338 +242221,1206,the lens,1311672335 +242221,1342,Clive Barker,1396098983 +242221,1590,pychologically thrilling,1415497805 +242221,2176,Alfred Hitchcock,1419726188 +242221,2176,atmospheric,1419726202 +242221,2176,classic,1419726191 +242221,2176,James Stewart,1419726201 +242221,2176,long takes,1419726186 +242221,2176,murder,1419726205 +242221,2176,real-time,1419726195 +242221,2176,Suspense,1419726198 +242221,2176,tense,1419726206 +242221,2579,black and white,1319552568 +242221,2579,christopher nolan,1319552562 +242221,2579,crime,1319552581 +242221,2579,interesting,1319552585 +242221,2579,masterpiece,1319552590 +242221,2579,underrated,1319552598 +242221,2579,unique,1319552556 +242221,2673,Golden Palm,1415470452 +242221,3910,great ending,1311672953 +242221,3910,tearjerking,1311672944 +242221,3917,cheesy,1396099040 +242221,3917,Clive Barker,1396099012 +242221,3917,horror,1396099048 +242221,3917,makeup effects,1396099026 +242221,3917,slow,1396099068 +242221,3949,too much violence,1311672544 +242221,4378,Best Performance: Ben Kingsley as Don Logan,1400802072 +242221,4378,good dialogue,1400802080 +242221,4378,good movie nobody saw,1400802067 +242221,4378,Jonathan Glazer,1400802061 +242221,5299,Nia Vardalos,1405418929 +242221,5299,stereotypes,1405418931 +242221,6460,a freakin' masterpiece,1406480872 +242221,6460,Anthony Perkins,1406480848 +242221,6460,claustrophobic,1406480850 +242221,6460,Jean Moreau,1406480864 +242221,6460,Orson Welles,1406480843 +242221,6524,greek,1405418917 +242221,6524,Jules Dassin,1405418916 +242221,7460,minimalistic,1311672219 +242221,8516,black and white,1421292660 +242221,8666,wasted potential,1396099111 +242221,25741,Better than any american silent,1396274177 +242221,25741,Criterion,1396274160 +242221,25741,DVD-RAM,1396274163 +242221,25741,good acting,1396274169 +242221,25741,Groundbreaking,1396274156 +242221,25744,Benjamin Christensen,1395339245 +242221,25744,mockumentary,1395339278 +242221,25767,Conrad Veidt,1396271694 +242221,25767,inspired The Joker,1396271681 +242221,25767,Mary Philbin,1396271696 +242221,25793,camera tricks,1405418629 +242221,25793,Carl Theodor Dreyer,1405418627 +242221,25793,Criterion,1405418631 +242221,25793,dream sequence,1405418642 +242221,25793,dreamlike,1405418651 +242221,25793,Dreyer,1405418633 +242221,25793,Scary Movies To See on Halloween,1405418637 +242221,25793,shadows,1405418640 +242221,25793,vampires,1405418635 +242221,26887,bad acting,1312471735 +242221,27491,bad acting,1387304724 +242221,27491,boring,1387304712 +242221,27491,hard to follow,1387304706 +242221,27491,slow paced,1387304688 +242221,27491,uneven script,1387304706 +242221,27491,wtf,1387304706 +242221,32898,How the fuck did he do that?,1396036153 +242221,37287,Carl theodor dreyer,1391017982 +242221,38095,WTF?,1387304930 +242221,38159,amazing,1311672883 +242221,38159,loneliness,1311672889 +242221,48682,cross dressing women,1422834826 +242221,48682,Iran,1422834814 +242221,48682,Islam,1422834819 +242221,48682,soccer,1422834821 +242221,48682,women disguised as men,1422834825 +242221,51077,SO bad,1319552113 +242221,51709,Korean Horror,1393514251 +242221,51709,monster,1393514262 +242221,51709,plot,1393514266 +242221,51709,realistic,1393514272 +242221,51709,sea monster,1393514258 +242221,51709,social comentary,1393514280 +242221,51709,social commentary,1393514295 +242221,51709,weird,1393514285 +242221,60231,horror,1395339036 +242221,60231,silent,1395339032 +242221,60684,Adaptation,1432326230 +242221,60684,author:Alan Moore,1432326218 +242221,60684,stylized violence,1432326233 +242221,60684,too long,1432326246 +242221,60684,visually appealing,1432326240 +242221,60684,Zack Snyder,1432326259 +242221,64575,Philip Seymour Hoffman,1319556081 +242221,69134,Charlotte Gainsbourg,1421534237 +242221,69134,nudity,1421534250 +242221,69134,religion,1421534241 +242221,69134,tension,1421534248 +242221,69134,violence,1421534255 +242221,69134,Willem Dafoe,1421534244 +242221,69604,amazing,1311674327 +242221,77240,melodrama,1311672589 +242221,77240,tilda swinton,1311672598 +242221,77307,10/10,1405418967 +242221,77307,abstract,1319553106 +242221,77307,Christos Stergioglou,1313886901 +242221,77307,coming of age,1319553189 +242221,77307,destruction of the nuclear family's model,1311671903 +242221,77307,disturbing,1313886909 +242221,77307,drama,1319553102 +242221,77307,dystopia,1405418952 +242221,77307,ending,1405418949 +242221,77307,family relationships,1405418954 +242221,77307,Greece,1405418962 +242221,77307,greek,1313886860 +242221,77307,incest,1405418956 +242221,77307,language,1313886921 +242221,77307,parenthood,1313886871 +242221,77307,sex,1313886928 +242221,77307,sexuality,1313886867 +242221,77307,siblings,1405418961 +242221,77307,violence,1405418959 +242221,79684,cute,1314286835 +242221,79684,lame dialogues,1314286828 +242221,79684,lisa kudrow,1314286806 +242221,81456,canadian,1313885816 +242221,81456,gay,1398443387 +242221,81456,overrated,1313885808 +242221,81456,The Knife,1319551988 +242221,82767,Aaron Eckhart,1445906128 +242221,82767,based on a play,1445906130 +242221,82767,Nicole Kidman,1445906126 +242221,84775,ow well...,1319549892 +242221,86762,ariane labed,1313886681 +242221,86762,intruiging,1313886742 +242221,86762,leading female in venice,1313886717 +242221,86762,meaningful,1313886722 +242221,86762,not an easy movie to understand,1406481209 +242221,86762,nudity (full frontal),1406481195 +242221,86762,weird,1313886673 +242221,88129,Good for what it is,1319549833 +242221,88129,Retro 80's Typeset,1319549844 +242221,95510,Andrew Garfield,1396099518 +242221,95510,reboot,1396099530 +242221,95510,remake,1396099528 +242221,97188,overrevealling trailer,1396098845 +242221,97188,Soundtrack,1396098856 +242221,99946,horror,1395339331 +242221,101717,Goran Paskaljevic,1388539363 +242221,101717,SO funny,1388539355 +242221,102088,decreased frame rate,1406480756 +242221,102088,slow paced,1406480752 +242221,102088,stylized,1406480748 +242221,102088,Wong Kar-wai,1406480745 +242221,103772,add to prospects list,1396101122 +242221,103772,btaege,1396101119 +242221,103772,comic book,1396101116 +242221,103772,eastern,1396101076 +242221,103772,franchise,1396101079 +242221,103772,Hugh Jackman,1396101102 +242221,103772,James Mangold,1396101093 +242221,103772,Japan,1396101113 +242221,103772,martial arts,1396101088 +242221,103772,shit plot,1396101064 +242221,103772,superhero,1396101111 +242221,103772,yakuza,1396101082 +242221,104241,Aaron Taylor-Johnson,1396101161 +242221,105159,giorgos lanthimos,1388539415 +242221,105159,greek,1424530510 +242221,105159,greek new wave,1424530519 +242221,105159,weird greek cinema,1424530520 +242221,106766,boring,1393514164 +242221,106766,folk music,1393514187 +242221,106766,musicians,1393514179 +242221,108425,Herman,1390486073 +242221,108425,terrible dialogs,1390486067 +242221,110798,dystopia,1399232442 +242221,112070,Julianne Moore,1426246357 +242221,112421,Maggie Gyllenhaal,1430659893 +242221,112421,soundtrack,1430659894 +242221,112689,Aspect Ratio,1405418868 +242221,112689,Greek,1405418859 +242221,113250,dark comedy,1428573443 +242221,113250,revenge,1428573445 +242221,114723,Avant-Garde,1412504765 +242221,114723,Maya Deren,1412504769 +242221,114725,avant garde,1412504861 +242221,114725,Maya Deren,1412504865 +242221,114725,Performance,1412504873 +242221,115569,Jake Gyllenhaal,1421641183 +242221,122886,absurd,1452305144 +242221,122886,Adam Driver,1452305165 +242221,122886,BB-8,1452305161 +242221,122886,Exploited,1452305138 +242221,122886,Fan service,1452305136 +242221,122886,father-son relationship,1452305184 +242221,122886,feminism,1452305173 +242221,122886,feminist,1452305176 +242221,122886,franchise,1452305187 +242221,122886,J.J. Abrams,1452305158 +242221,122886,Lucasfilm Ltd.,1452305180 +242221,122886,Lupita Nyong'o,1452305192 +242221,122886,Plot Recycling,1452305132 +242221,122886,Star Wars,1452305198 +242221,128604,horrible,1424189629 +242221,128604,pretentious,1424189648 +242221,128604,pseudoexistentialism,1424189644 +242221,128620,breathtaking,1446510777 +242221,128620,cinematography,1446510774 +242221,128620,improvisation,1446510766 +242221,128620,one shot,1446510776 +242221,128620,one take,1446510768 +242221,128620,visually appealing,1446510779 +242221,128948,greek,1424530482 +242221,128948,greek new wave,1424530481 +242221,128948,greek western,1424530484 +242221,132066,Greek,1428573375 +242221,132066,Greek Weird Wave,1428573380 +242221,132068,Albert Camus,1428573541 +242221,133771,absurdist humor,1452304906 +242221,133771,black humor,1452304908 +242221,133771,groundbreaking storytelling,1452304920 +242221,133771,innovative idea,1452304910 +242221,137612,Karlovy Vary,1436445997 +242221,137612,Kosovo,1436446009 +242221,139655,Austrian,1446413528 +242221,139655,Ulrich Seidl,1446413534 +242281,111,cult film,1182526846 +242281,288,hallucinatory,1182527335 +242281,288,lurid,1182527323 +242281,288,serial killer,1182527327 +242281,288,ultra-violence,1182527340 +242281,1219,classic,1182527285 +242281,1219,hitchcock,1182527271 +242281,1219,murder,1182527273 +242281,1407,slasher,1182527766 +242281,1407,spoof,1182527768 +242281,1485,classic comedy,1182527189 +242281,1485,courtroom setting,1182527182 +242281,1639,lesbian,1182527501 +242281,1639,love story,1182527492 +242281,1639,sexual identity,1182527503 +242281,1639,sexuality,1182527495 +242281,1676,aliens,1182528127 +242281,1676,battles,1182528113 +242281,1676,bugs!,1182528130 +242281,1676,Nudity (Topless),1182528116 +242281,1676,satire,1182528110 +242281,1732,bowling,1182527673 +242281,1732,classic,1182527670 +242281,1732,coen brothers,1182527698 +242281,1732,cult film,1182527727 +242281,1732,dark comedy,1182527748 +242281,1732,deadpan,1182527668 +242281,2000,action,1182526998 +242281,2000,buddy,1182527018 +242281,2000,police,1182527011 +242281,2006,fencing,1182529349 +242281,2006,remake,1182529339 +242281,2011,Good in the 80s,1182376587 +242281,2194,1930s,1182526775 +242281,2194,gangsters,1182526817 +242281,2194,law enforcement,1182526773 +242281,2302,courtroom,1182527403 +242281,2302,enjoyable,1182527397 +242281,2302,murder,1182527417 +242281,3052,controversial,1182527788 +242281,3052,funny,1182527796 +242281,3052,religion,1182527787 +242281,3052,satire,1182527782 +242281,3101,adultery,1182528089 +242281,3176,crime,1182527152 +242281,3176,murder,1182527134 +242281,3176,psychology,1182527150 +242281,3677,no dialogue,1182524799 +242281,3677,time-lapse,1182524799 +242281,3763,Good in the 80s,1182377023 +242281,4673,Good in the 80s,1182377624 +242281,5502,aliens,1182528017 +242281,5502,crop-circles,1182527996 +242281,5502,silly,1182528070 +242281,6218,culture clash,1182527589 +242281,6218,culture shock,1182527602 +242281,6218,london,1182527583 +242281,6218,multicultural,1182527599 +242281,6218,sports,1182527605 +242281,6807,british comedy,1182527639 +242281,6807,hilarious,1182527648 +242281,6807,Nudity (Topless - Brief),1182527628 +242281,6807,philosophy,1182527643 +242281,6807,satire,1182527634 +242281,8464,documentary,1182527953 +242281,8464,educational,1182527969 +242281,8464,important,1182527949 +242281,38038,claymation,1182527458 +242296,260,Cult,1434357919 +242296,260,Specific universe,1434357949 +242333,62376,steampunk,1448747746 +242333,67997,british,1448662899 +242333,67997,cynical,1448662906 +242333,67997,satire,1448662891 +242333,67997,swearing,1448662887 +242333,68073,Bill Nighy,1448663809 +242333,68073,Music,1448663796 +242333,68073,Philip Seymour Hoffman,1448663804 +242333,68073,rock and roll,1448663799 +242333,68073,soundtrack,1448663815 +242333,71156,Jeff Bridges,1448663863 +242333,103341,cornetto trilogy,1448663893 +242333,103341,Edgar Wright,1448663908 +242333,103341,Nick Frost,1448663906 +242333,103341,Simon Pegg,1448663890 +242342,47,atmospheric,1357756763 +242342,47,disturbing,1357756757 +242342,97,social commentary,1365703870 +242342,223,black and white,1352405347 +242342,223,cynical,1352327091 +242342,223,quirky,1352327114 +242342,223,surreal,1352327104 +242342,296,atmospheric,1363378683 +242342,296,dark comedy,1363378653 +242342,296,multiple storylines,1363378683 +242342,296,nonlinear,1363378654 +242342,296,Quentin Tarantino,1363378653 +242342,296,stylized,1363378698 +242342,296,Uma Thurman,1363378653 +242342,778,black comedy,1363378433 +242342,778,British,1363378433 +242342,778,dark comedy,1363378320 +242342,778,great soundtrack,1363378433 +242342,778,hallucinatory,1363378433 +242342,778,surreal,1363378433 +242342,1080,black comedy,1363378848 +242342,1080,funny,1363378848 +242342,1080,Funny as hell,1363378848 +242342,1080,Monty Python,1363378897 +242342,1080,satire,1363378848 +242342,1097,aliens,1368385228 +242342,1175,alternate reality,1363379686 +242342,1175,atmospheric,1363379703 +242342,1175,dark comedy,1349361742 +242342,1175,dystopia,1363379694 +242342,1175,quirky,1363379686 +242342,1175,surreal,1363379686 +242342,1206,psychology,1349361713 +242342,1222,Stanley Kubrick,1349363971 +242342,1298,great soundtrack,1363378741 +242342,1298,hallucinatory,1363378742 +242342,1298,mindfuck,1363378741 +242342,1298,music,1363378741 +242342,1298,surreal,1363378741 +242342,1682,alternate reality,1363378242 +242342,1682,atmospheric,1363378056 +242342,1682,dark comedy,1363378254 +242342,1682,drama,1363378282 +242342,1682,fantasy,1363378277 +242342,1682,melancholy,1363378212 +242342,1682,mindfuck,1363378129 +242342,1682,original,1363378152 +242342,1682,reflective,1363378235 +242342,1682,stylized,1363378300 +242342,1682,surreal,1363378056 +242342,1748,dystopia,1363379735 +242342,1748,fantasy,1363379745 +242342,1748,mindfuck,1363379764 +242342,1748,sci-fi,1363379741 +242342,1748,surreal,1363379764 +242342,1884,surreal,1349361185 +242342,1963,black comedy,1352677032 +242342,1963,funny,1352677015 +242342,1963,satire,1352677022 +242342,2291,dark comedy,1349361293 +242342,2329,amazing photography,1358097510 +242342,2329,disturbing,1358097476 +242342,2329,Edward Norton,1358097494 +242342,2329,powerful ending,1358097485 +242342,2329,tense,1358097518 +242342,2329,thought-provoking,1358097525 +242342,2355,Pixar,1368384907 +242342,2571,gnosticism,1363378969 +242342,2571,mindfuck,1363378968 +242342,2571,reflective,1363378969 +242342,2571,surreal,1363378969 +242342,2692,alternate endings,1350816878 +242342,2692,artistic,1350816878 +242342,2692,nonlinear,1350816810 +242342,2692,surreal,1350816819 +242342,2710,Handycam,1349721835 +242342,2710,not scary,1349721860 +242342,2710,overrated,1349721822 +242342,2788,British,1363378864 +242342,2788,comedy,1363378861 +242342,2788,Monty Python,1363378866 +242342,2959,cerebral,1363379651 +242342,2959,dark comedy,1357766295 +242342,2959,David Fincher,1363379651 +242342,2959,mindfuck,1363379651 +242342,2959,Mindfuck Movie,1363379651 +242342,2959,psychological,1357766290 +242342,2959,stylized,1363379651 +242342,2959,twist ending,1357766293 +242342,2997,black comedy,1352676243 +242342,2997,Charlie Kaufman,1352667410 +242342,2997,dark comedy,1356027766 +242342,2997,mindfuck,1352676207 +242342,2997,psychology,1363379796 +242342,2997,surreal,1352676200 +242342,2997,twist ending,1363379796 +242342,3000,atmospheric,1368385643 +242342,3000,dark,1368385657 +242342,3000,dreamlike,1368385683 +242342,3000,dystopia,1368385655 +242342,3000,Hayao Miyazaki,1368385646 +242342,3000,Studio Ghibli,1368385647 +242342,3000,surreal,1368385649 +242342,3000,talking animals,1368385650 +242342,3160,great soundtrack,1350821406 +242342,3160,multiple storylines,1350821319 +242342,3160,nonlinear,1350821333 +242342,3160,religious overtones,1350821384 +242342,3160,soundtrack,1350821362 +242342,3535,black comedy,1368385043 +242342,3535,Christian Bale,1368385043 +242342,3535,dark comedy,1368385043 +242342,3535,ending,1368385043 +242342,3535,humorous,1368385043 +242342,3535,psychology,1368385043 +242342,4027,black comedy,1358932672 +242342,4027,Coen Brothers,1358932722 +242342,4027,great soundtrack,1358932723 +242342,4027,notable soundtrack,1358932723 +242342,4027,quirky,1358932722 +242342,4226,nonlinear,1363378913 +242342,4226,psychological,1363378910 +242342,4226,twist ending,1363378907 +242342,4306,satire,1368384897 +242342,4641,dark comedy,1349361767 +242342,4720,atmospheric,1349361369 +242342,4720,twist ending,1349361372 +242342,4848,atmospheric,1361134138 +242342,4848,David Lynch,1361134138 +242342,4848,dreamlike,1361134137 +242342,4848,enigmatic,1361134148 +242342,4848,hallucinatory,1361134138 +242342,4848,surreal,1361134138 +242342,4848,twist ending,1361134138 +242342,5298,Charlie Kaufman,1351898542 +242342,5298,dark comedy,1351898587 +242342,5298,Michel Gondry,1351898554 +242342,5298,psychology,1351898614 +242342,5298,quirky,1352667603 +242342,5298,satire,1351898577 +242342,5298,surreal,1351898566 +242342,5618,atmospheric,1365621267 +242342,5902,Charlie Kaufman,1352667418 +242342,5902,dark comedy,1349361580 +242342,5902,Spike Jonze,1352677140 +242342,6003,Charlie Kaufman,1352667430 +242342,6003,psychological,1352667454 +242342,6003,surreal,1352667446 +242342,6197,David Cronenberg,1362992096 +242342,6197,disturbing,1362992095 +242342,6197,enigmatic,1362992130 +242342,6197,meditative,1362992106 +242342,6440,Coen Brothers,1350825463 +242342,6440,enigmatic,1350825423 +242342,6440,hallucinatory,1350825433 +242342,6440,stylized,1350825478 +242342,6807,black comedy,1363378793 +242342,6807,British,1363378793 +242342,6807,british comedy,1363378793 +242342,6807,Monty Python,1363378873 +242342,6807,satire,1363378793 +242342,6874,Amazing Cinematography,1363379182 +242342,6874,beautiful,1363379182 +242342,6874,beautifully filmed,1363379182 +242342,6874,colourful,1363379212 +242342,6874,martial arts,1363379150 +242342,6874,nonlinear,1363379147 +242342,6874,Quentin Tarantino,1363379144 +242342,6874,thriller,1363379182 +242342,6953,Benicio Del Toro,1369819011 +242342,6953,death,1369816079 +242342,6953,multiple storylines,1369816079 +242342,6953,nonlinear,1369816079 +242342,6953,psychological,1369816079 +242342,6953,Sean Penn,1369819017 +242342,6953,Tragedy,1369816104 +242342,7361,beautiful,1363379661 +242342,7361,Charlie Kaufman,1352667400 +242342,7361,nonlinear,1349361592 +242342,7361,psychology,1349361588 +242342,7373,gothic,1365703791 +242342,7373,humorous,1365703798 +242342,7373,occult technology,1365703785 +242342,7373,steampunk,1365703775 +242342,7373,superhero,1365703778 +242342,7438,atmospheric,1363379106 +242342,7438,kung fu,1363379085 +242342,7438,martial arts,1363379078 +242342,7438,nonlinear,1363379054 +242342,7438,Quentin Tarantino,1363379000 +242342,7438,revenge,1363379092 +242342,7438,stylized,1363379054 +242342,7438,stylized violence,1363379054 +242342,7438,twist ending,1363379192 +242342,7438,visually appealing,1363379122 +242342,8361,apocalypse,1365701849 +242342,8361,catastrophe,1365701845 +242342,8361,unintentional comedy,1365701842 +242342,8644,cliché,1368384805 +242342,8784,cliché ending,1368384454 +242342,8784,good soundtrack,1368384552 +242342,8784,Natalie Portman,1368384505 +242342,8784,romance,1368384488 +242342,8784,soundtrack,1368384539 +242342,8874,black comedy,1363378575 +242342,8874,British,1363378552 +242342,8874,british comedy,1363378552 +242342,8874,dark comedy,1363378552 +242342,8874,Funny as hell,1363378552 +242342,8874,horror,1363378594 +242342,8874,satire,1363378581 +242342,8961,Pixar,1368384743 +242342,25771,surrealism,1349362486 +242342,31952,dark comedy,1363040941 +242342,31952,dreams,1363040932 +242342,31952,surreal,1363040952 +242342,31952,surrealism,1363040959 +242342,32587,beautiful,1363378519 +242342,32587,multiple storylines,1349361570 +242342,32587,Quentin Tarantino,1349361564 +242342,32587,stylized,1363378519 +242342,32587,stylized violence,1363378519 +242342,33004,british comedy,1352676349 +242342,44195,satire,1349361734 +242342,44555,disturbing,1349361354 +242342,44665,twist ending,1349361723 +242342,48043,multiple storylines,1349362498 +242342,48043,twist ending,1349362502 +242342,51077,deal with the devil,1365703915 +242342,51077,plain storyline,1365703910 +242342,51077,SO bad,1365703906 +242342,51077,useless,1365703975 +242342,51255,dark comedy,1349361254 +242342,52885,animated masterpiece,1358933427 +242342,52885,atmospheric,1358809806 +242342,52885,dreamlike,1358809931 +242342,52885,escape to reality,1358809806 +242342,52885,hallucinatory,1358810127 +242342,52885,philosophical,1358810144 +242342,52885,psychedelic,1358809776 +242342,52885,Satoshi Kon,1358933457 +242342,52885,soundtrack,1358809832 +242342,52885,story,1358809848 +242342,52885,surreal,1358809806 +242342,53953,wasted potential,1353090260 +242342,55247,Alaska,1363379264 +242342,55247,amazing photography,1363379249 +242342,55247,atmospheric,1363379310 +242342,55247,beautiful,1349362748 +242342,55247,bittersweet,1363379299 +242342,55247,Music,1363379299 +242342,55247,photography,1363379249 +242342,55247,psychology,1363379299 +242342,55247,self discovery,1363379299 +242342,55247,soundtrack,1349362748 +242342,55247,travel,1363379249 +242342,56367,excellent script,1359055268 +242342,56367,hilarious,1359055287 +242342,56367,notable soundtrack,1359055244 +242342,57669,dark comedy,1349361250 +242342,57669,twist ending,1349361247 +242342,58301,No Fourth Wall,1350819204 +242342,58301,Tim Roth,1350819213 +242342,59369,cliche,1350828706 +242342,59369,happy ending,1350828699 +242342,59387,beautiful,1368385562 +242342,59387,imagination,1368385502 +242342,59387,metafilm,1368385163 +242342,59387,Mise en abyme,1368385562 +242342,59387,story-in-a-story,1368385562 +242342,59387,storytelling,1368385561 +242342,59387,surreal,1368385562 +242342,59387,visually appealing,1368385562 +242342,59387,visually stunning,1368385562 +242342,60072,plot twist,1365701940 +242342,60072,unintentional comedy,1365701928 +242342,61323,Coen Brothers,1357323317 +242342,61323,dark comedy,1357323296 +242342,61323,twists & turns,1357323304 +242342,62511,Charlie Kaufman,1352727626 +242342,62511,confusing,1352727659 +242342,62511,long,1352727690 +242342,62511,Mise en abyme,1352727723 +242342,62511,Schizophrenic,1352727641 +242342,62511,surreal,1352727709 +242342,62511,thought-provoking,1352727652 +242342,66097,Surreal,1352500082 +242342,70286,cliche,1355252665 +242342,70286,mainstream,1355095695 +242342,70286,sci-fi,1355095736 +242342,72011,love story,1368384707 +242342,72011,witty,1368384692 +242342,74458,mindfuck,1349361918 +242342,74458,psychological,1349361893 +242342,74458,twist ending,1349361897 +242342,79132,alternate reality,1349361792 +242342,79132,dreamlike,1363379425 +242342,79132,mindfuck,1363379425 +242342,79132,plot twist,1363379425 +242342,79132,psychological,1363379425 +242342,79132,psychology,1363379425 +242342,79132,sci-fi,1363379436 +242342,79132,twist ending,1363379425 +242342,81591,mindfuck,1349363554 +242342,81591,psychological,1349363541 +242342,81591,twist ending,1349363537 +242342,86320,apocalypse,1365701553 +242342,86320,beautiful,1350814034 +242342,86320,beautiful cinematography,1363378943 +242342,86320,beautiful music,1350815182 +242342,86320,cinematography,1362683186 +242342,86320,depressing,1350814428 +242342,86320,excellent script,1350814418 +242342,86320,introspective,1350814684 +242342,86320,Lars von Trier,1363378943 +242342,86320,mindblowing,1350814092 +242342,86320,music,1365701572 +242342,86320,photography,1365701567 +242342,86320,soundtrack,1350815156 +242342,86320,surreal,1350814055 +242342,86320,twist ending,1363378918 +242342,86332,3d,1365701978 +242342,86332,cliche characters,1365701964 +242342,86332,mythology,1365701962 +242342,86332,Natalie Portman,1365701984 +242342,86332,predictable,1365701956 +242342,88140,american idiocy,1365702018 +242342,88140,cheesy,1365702015 +242342,88140,mainstream,1365703718 +242342,88140,predictable,1365703708 +242342,89745,bad dialogue,1350818461 +242342,89745,bad script,1350818345 +242342,89745,mainstream,1350818512 +242342,89745,overrated,1350818397 +242342,89745,predictable,1350818247 +242342,89745,Robert Downey Jr.,1350818409 +242342,89745,robots,1365703999 +242342,89745,Samuel L. Jackson,1365704002 +242342,89745,unsatisfying,1350818345 +242342,89745,unsuspenseful,1350818345 +242342,89745,useless,1350818370 +242342,92259,cliche,1363647316 +242342,92259,one-dimensional characters,1363647294 +242342,92259,overrated,1363647316 +242342,92259,predictable,1363647316 +242342,94959,dreamlike,1359052623 +242342,94959,Edward Norton,1359052669 +242342,94959,onirism,1359052614 +242342,94959,surreal,1359052644 +242342,94959,wilderness,1359052692 +242342,96610,clever,1357756426 +242342,96610,complicated,1357756450 +242342,96610,complicated plot,1357756460 +242342,96610,mindfuck,1357756397 +242342,96610,psychology,1357756417 +242342,96610,tense,1357756422 +242342,96832,beautiful,1363379504 +242342,96832,cerebral,1363379503 +242342,96832,disturbing,1349628637 +242342,96832,genius,1349628592 +242342,96832,Leos Carax,1350831223 +242342,96832,mindfuck,1349628570 +242342,96832,senseless,1363379504 +242342,96832,surreal,1363379504 +242342,102684,beautiful,1369401501 +242342,102684,beautiful scenery,1369401501 +242342,102684,beautifully filmed,1369401501 +242342,102684,great acting,1369401550 +242342,102684,great soundtrack,1369401551 +242342,102684,music,1369401501 +242342,102684,Nicolas Winding Refn,1369401573 +242342,102684,overdone,1369401422 +242342,102684,photography,1369401502 +242342,102684,photography - simply excellent movie!,1369401502 +242342,102684,Ryan Gosling,1369401585 +242342,102684,slow paced,1369401663 +242342,102684,soundtrack,1369401501 +242342,102684,stylized,1369401288 +242342,102684,stylized violence,1369401261 +242342,102684,ultra-violence,1369401298 +242342,102684,vengeance,1369401677 +242342,102684,violence,1369401254 +242351,18,multiple storylines,1242855104 +242351,18,Quentin Tarantino,1242855099 +242351,18,Robert Rodriguez,1242855106 +242351,18,Tim Roth,1242855110 +242351,32,Brad Pitt,1241949892 +242351,32,dystopia,1241949876 +242351,32,great ending,1368313551 +242351,32,original,1368313243 +242351,32,twist ending,1241949878 +242351,47,biblical,1242854151 +242351,47,great ending,1368313551 +242351,47,powerful ending,1242854141 +242351,50,great acting,1368313475 +242351,50,Kevin Spacey,1241551347 +242351,50,twist ending,1241551353 +242351,70,cult classic,1368313490 +242351,70,cult film,1241465714 +242351,70,so bad it's good,1241465709 +242351,70,Tarantino,1241465712 +242351,94,beautiful,1241949673 +242351,94,friendship relations,1241949644 +242351,94,Matt Dillon,1293732943 +242351,94,Natalie Portman,1241949653 +242351,94,Uma Thurman,1241949667 +242351,163,Danny Trejo,1241550701 +242351,163,Robert Rodriguez,1241550694 +242351,163,Steve Buscemi,1241550698 +242351,176,Catherine Keener,1291325153 +242351,176,indie,1291325158 +242351,176,Steve Buscemi,1291325079 +242351,180,Ben Affleck,1293730701 +242351,180,crude humor,1241552302 +242351,180,good dialogue,1241552312 +242351,180,Jay and Silent Bob,1241552317 +242351,180,Shannen Doherty,1293730692 +242351,194,ensemble cast,1241469076 +242351,194,interesting,1241469071 +242351,194,multiple storylines,1241469058 +242351,194,New York City,1241469062 +242351,223,black and white,1241949507 +242351,223,crude humor,1241949519 +242351,223,good dialogue,1241949511 +242351,223,low budget,1241949512 +242351,260,classic,1241469013 +242351,260,Harrison Ford,1241469001 +242351,260,luke skywalker,1241469008 +242351,260,old FX quality,1241469024 +242351,296,Black comedy,1241465291 +242351,296,cult film,1302514889 +242351,296,dialogue,1302514908 +242351,296,great soundtrack,1302514879 +242351,296,John Travolta,1302514862 +242351,296,multiple storylines,1241465302 +242351,296,organized crime,1241465322 +242351,296,Quentin Tarantino,1302514846 +242351,296,Samuel L. Jackson,1302514848 +242351,296,storytelling,1368313309 +242351,296,stylized,1241465309 +242351,296,violence,1302514867 +242351,316,James Spader,1241950611 +242351,316,Kurt Russell,1241950634 +242351,316,mythology,1241950628 +242351,316,sci-fi,1241950618 +242351,318,great ending,1368313551 +242351,372,ethan hawke,1278696874 +242351,372,generation X,1278696886 +242351,372,Romance,1293226511 +242351,372,slackers,1278696892 +242351,372,Steve Zahn,1293226486 +242351,372,Winona Ryder,1293226482 +242351,455,family,1368313521 +242351,527,based on a true story,1241465973 +242351,527,drama,1241465952 +242351,527,Holocaust,1241465946 +242351,527,Steven Spielberg,1241465958 +242351,541,classic,1293753015 +242351,541,cyberpunk,1293753002 +242351,541,Harrison Ford,1293753028 +242351,555,Brad Pitt,1293273804 +242351,555,Christian Slater,1293273774 +242351,555,Christopher Walken,1293273776 +242351,555,Dennis Hopper,1293273781 +242351,555,dialogue,1293273784 +242351,555,Patricia Arquette,1293273795 +242351,555,showdown,1293273790 +242351,593,Anthony Hopkins,1242854031 +242351,593,cannibalism,1242854041 +242351,593,Jodie Foster,1242854033 +242351,608,black comedy,1293668865 +242351,608,Coen Brothers,1293668863 +242351,608,Peter Storemare,1293668878 +242351,648,Based on a TV show,1242854711 +242351,648,Tom Cruise,1242854707 +242351,714,beautiful,1241466544 +242351,714,black and white,1241466532 +242351,714,Johnny Depp,1241466525 +242351,714,melancholy,1241466517 +242351,785,Bill Murray,1280778651 +242351,785,goofy,1241469582 +242351,785,Gross-out,1241469586 +242351,785,humorous,1241469574 +242351,785,Randy Quaid,1280778679 +242351,785,Vanessa Angel,1280778664 +242351,785,Woody Harrelson,1241469553 +242351,804,relationships,1368313423 +242351,860,Armin Rohde,1292314148 +242351,860,comedy,1292314159 +242351,860,Joachim Król,1292314152 +242351,860,Til Schweiger,1292314145 +242351,1036,action,1242854999 +242351,1036,Bruce Willis,1242854997 +242351,1079,black comedy,1293751469 +242351,1079,dark comedy,1293751481 +242351,1079,Humorous,1293751477 +242351,1079,Jamie Lee Curtis,1293751461 +242351,1079,John Cleese,1293751456 +242351,1079,Kevin Kline,1293751459 +242351,1080,British,1241469267 +242351,1080,parody,1241469275 +242351,1080,satire,1241469282 +242351,1089,cult film,1241469114 +242351,1089,ensemble cast,1241469128 +242351,1089,original,1368313243 +242351,1089,Quentin Tarantino,1241469117 +242351,1089,stylized,1241469119 +242351,1101,Tom Cruise,1293752873 +242351,1136,british comedy,1241551967 +242351,1136,Monty Python,1241551970 +242351,1136,parody,1241551954 +242351,1136,satirical,1241551959 +242351,1175,weird,1368313438 +242351,1196,classic,1241468976 +242351,1196,Darth Vader,1241468968 +242351,1196,Harrison Ford,1241468934 +242351,1196,Luke Skywalker,1241468950 +242351,1201,Clint Eastwood,1241469654 +242351,1201,Ennio Morricone,1241469656 +242351,1201,Sergio Leone,1241469664 +242351,1201,spaghetti western,1241469660 +242351,1201,tarantesque,1241469690 +242351,1206,cult film,1241550771 +242351,1206,stylized,1241550777 +242351,1209,atmospheric,1308826755 +242351,1209,Clint Eastwood,1308826752 +242351,1209,Ennio Morricone,1308826750 +242351,1209,Sergio Leone,1308826770 +242351,1209,Spaghetti Western,1308826774 +242351,1209,stylized,1308826777 +242351,1209,tense,1308826781 +242351,1217,lyrical,1303155206 +242351,1217,tragedy,1303155198 +242351,1219,black and white,1241551602 +242351,1219,classic,1241551591 +242351,1219,creepy,1241551587 +242351,1219,tense,1241551596 +242351,1220,music,1293752018 +242351,1240,Arnold Schwarzenegger,1241950296 +242351,1240,sci-fi classic,1241950313 +242351,1270,1980s,1293752245 +242351,1270,Christopher Lloyd,1293752298 +242351,1270,classic,1293752243 +242351,1270,comedy,1293752264 +242351,1270,Michael J. Fox,1293752285 +242351,1273,atmospheric,1242855025 +242351,1273,black and white,1242855023 +242351,1273,John Lurie,1293710281 +242351,1273,Roberto Benigni,1242855020 +242351,1273,Tom Waits,1293710288 +242351,1279,Armin Mueller-Stahl,1241469199 +242351,1279,episodic,1241469248 +242351,1279,humorous,1241469186 +242351,1279,Jim Jarmusch,1241469184 +242351,1279,multiple locations,1293710491 +242351,1279,Roberto Benigni,1293710470 +242351,1279,Winona Ryder,1241469196 +242351,1285,not funny,1342213090 +242351,1285,Winona Ryder,1342213085 +242351,1290,classic '80s,1302520294 +242351,1290,high school,1302520292 +242351,1290,Mary Stuart Masterson,1302520279 +242351,1290,romance,1302520286 +242351,1290,teen,1302520284 +242351,1291,Harrison Ford,1241552586 +242351,1291,Lucas,1241552602 +242351,1291,Nazis,1241552591 +242351,1291,Sean Connery,1241552593 +242351,1291,Steven Spielberg,1241552595 +242351,1370,bad sequel,1232749742 +242351,1387,classic,1242854828 +242351,1387,music,1242854849 +242351,1391,ensemble cast,1241552277 +242351,1391,funny,1241552268 +242351,1391,Parody,1293572590 +242351,1391,Pierce Brosnan,1293572599 +242351,1391,Sarah Jessica Parker,1293572616 +242351,1391,Tim Burton,1293572586 +242351,1441,Julianne Moore,1264789037 +242351,1509,coming of age,1307218672 +242351,1509,Leisha Hailey,1307218684 +242351,1509,lesbian,1307218670 +242351,1527,Bruce Willis,1241550640 +242351,1527,Luc Besson,1241550636 +242351,1527,Milla Jovovich,1241550639 +242351,1527,stylized,1241550664 +242351,1527,visually appealing,1368313459 +242351,1552,action,1368313403 +242351,1580,comedy,1293572714 +242351,1580,Tommy Lee Jones,1293572710 +242351,1580,Will Smith,1293572707 +242351,1587,Arnold Schwarzenegger,1241465669 +242351,1587,brutality,1293024858 +242351,1587,classic,1241465673 +242351,1587,Fantasy,1241465676 +242351,1587,funny accent,1241465794 +242351,1587,James Earl Jones,1293024849 +242351,1639,relationships,1368313423 +242351,1722,action,1368313403 +242351,1729,cast,1358581525 +242351,1729,Quentin Tarantino,1358581502 +242351,1729,too long,1358581458 +242351,1732,Coen Brothers,1241468856 +242351,1732,comedy,1241468860 +242351,1732,crime,1241468893 +242351,1732,cult film,1241468882 +242351,1732,David Huddleston,1293274203 +242351,1732,drugs,1241468896 +242351,1732,great dialogue,1241468862 +242351,1732,Jeff Bridges,1293274091 +242351,1732,John Goodman,1293274104 +242351,1732,John Turturro,1293274158 +242351,1732,Julianne Moore,1293274127 +242351,1732,Philip Seymour Hoffman,1293274186 +242351,1732,satirical,1241468869 +242351,1732,Steve Buscemi,1293274097 +242351,1799,Christopher Walken,1287519364 +242351,1799,twist ending,1287519373 +242351,1805,Bill Murray,1287934384 +242351,1805,Denise Richards,1287934436 +242351,1805,Kevin Bacon,1287934441 +242351,1805,lesbian,1287934388 +242351,1805,Matt Dillon,1287934453 +242351,1805,Neve Campbell,1287934443 +242351,1805,twist ending,1287934391 +242351,1821,gay,1302035639 +242351,1897,Ally Sheedy,1293663865 +242351,1897,lesbian,1293663862 +242351,1897,Radha Mitchell,1293663868 +242351,1923,Cameron Diaz,1293732598 +242351,1923,comedy,1293732607 +242351,1923,goofy,1241950287 +242351,1923,Matt Dillon,1241950282 +242351,1924,ironic,1411828560 +242351,1924,so bad it's not good anymore it's realy bad,1411828543 +242351,1965,Dick Rude,1324913614 +242351,1965,punk,1324913126 +242351,1968,1980's cult,1241468827 +242351,1968,Ally Sheedy,1293656045 +242351,1968,coming-of-age,1241468840 +242351,1968,high school,1241468831 +242351,1968,Judd Nelson,1293656025 +242351,1968,Molly Ringwald,1293656037 +242351,1968,Paul Gleason,1293656056 +242351,1968,teen,1293656083 +242351,1982,horror,1241949148 +242351,1982,scary as hell,1241949139 +242351,2019,Akira Kurosawa,1242854158 +242351,2019,black and white,1242854161 +242351,2019,classic,1242854165 +242351,2019,samurai,1242854168 +242351,2105,classic,1292758611 +242351,2105,Jeff Bridges,1292758613 +242351,2115,action,1241552561 +242351,2115,classic,1241552566 +242351,2115,Harrison Ford,1241552544 +242351,2115,Lucas,1241552548 +242351,2145,John Hughes,1262799559 +242351,2167,action,1368313403 +242351,2271,drama,1307563241 +242351,2271,Elizabeth Hurley,1307563208 +242351,2271,embarassed to watch,1307563998 +242351,2271,Maria Bello,1307563185 +242351,2318,dark humor,1311190205 +242351,2318,dialogue,1311190230 +242351,2318,long,1311190247 +242351,2318,Philip Seymour Hoffman,1311190208 +242351,2373,Arnold Schwarzenegger,1241551487 +242351,2373,Ennio Morricone,1241551491 +242351,2373,fantasy,1241551493 +242351,2373,pulp,1241551495 +242351,2395,Bill Murray,1241551380 +242351,2395,Jason Schwartzman,1293710447 +242351,2395,quirky,1241551402 +242351,2395,Wes Anderson,1241551392 +242351,2403,action,1241469848 +242351,2403,classic,1241469844 +242351,2403,Sylvester Stallone,1241469855 +242351,2428,Clea DuVall,1293274061 +242351,2428,high school,1242855048 +242351,2428,Josh Hartnett,1293274025 +242351,2428,Robert Rodriguez,1242855039 +242351,2460,horror,1368313502 +242351,2490,Lucy Liu,1241551683 +242351,2490,Mel Gibson,1241551680 +242351,2490,plot twist,1241551756 +242351,2490,remakeOf:Point Blank(1967),1241551675 +242351,2502,comedy,1241551817 +242351,2502,cult film,1241551803 +242351,2502,David Herman,1293655492 +242351,2502,Gary Cole,1293655513 +242351,2502,Jennifer Aniston,1293655448 +242351,2502,mike judge,1293655441 +242351,2502,quirky,1241551809 +242351,2502,satire,1241551806 +242351,2502,Stephen Root,1293655681 +242351,2527,Historic fiction,1310328505 +242351,2542,black comedy,1241466380 +242351,2542,British,1241466407 +242351,2542,Guy Ritchie,1241466386 +242351,2542,Nick Moran,1293923190 +242351,2542,Unique,1241466391 +242351,2542,Vinnie Jones,1293923054 +242351,2571,Action,1241552257 +242351,2571,atmospheric,1293225874 +242351,2571,Carrie-Anne Moss,1293225849 +242351,2571,cult film,1241552246 +242351,2571,Keanu Reeves,1293225839 +242351,2571,martial arts,1293225862 +242351,2571,post apocalyptic,1241552234 +242351,2571,stylized,1293225857 +242351,2571,surreal,1293225859 +242351,2571,virtual reality,1241552236 +242351,2572,chick flick,1280779169 +242351,2572,Heath Ledger,1280779154 +242351,2572,Joseph Gordon-Levitt,1280779149 +242351,2572,Julia Stiles,1280779152 +242351,2572,Teen movie,1280779160 +242351,2580,humorous,1241469713 +242351,2580,storytelling,1241469728 +242351,2580,Timothy Olyphant,1293008785 +242351,2596,coming of age,1303932168 +242351,2596,Jason Segel,1303932160 +242351,2596,Matthew Lillard,1303932157 +242351,2596,punk,1303932151 +242351,2596,sarcasm,1303932208 +242351,2628,Ewan McGregor,1241950716 +242351,2628,George Lucas,1241950762 +242351,2628,infantile,1241950756 +242351,2628,Natalie Portman,1241950767 +242351,2628,Star Wars,1241950775 +242351,2716,Bill Murray,1293752173 +242351,2716,classic,1293752177 +242351,2762,Bruce Willis,1242854016 +242351,2762,twist ending,1242854012 +242351,2774,lesbian,1304171992 +242351,2774,story,1304172012 +242351,2844,Owen Wilson,1267650282 +242351,2858,great acting,1368313474 +242351,2921,Clint Eastwood,1309035708 +242351,2921,dark,1309035817 +242351,2921,enigmatic,1309035853 +242351,2921,spaghetti western,1309035713 +242351,2921,violence,1309035791 +242351,2959,action,1241465454 +242351,2959,philosophy,1241465435 +242351,2959,powerful ending,1241465429 +242351,2959,surreal,1241465409 +242351,2959,TERRORISM,1241465442 +242351,2985,80s,1274543493 +242351,2985,classic action movie,1274543536 +242351,3006,dramatic,1368313388 +242351,3052,jay and silent bob,1241949283 +242351,3052,Matt Damon,1241949287 +242351,3052,religion,1241949291 +242351,3052,satire,1241949325 +242351,3081,atmospheric,1293225400 +242351,3081,Christina Ricci,1293572501 +242351,3081,Christopher Walken,1293225386 +242351,3081,Johnny Depp,1293225376 +242351,3081,Tim Burton,1293225380 +242351,3081,visually appealing,1293225383 +242351,3104,Robert De Niro,1295744708 +242351,3147,oscar (best directing),1368313374 +242351,3157,family,1368313521 +242351,3160,ensemble cast,1241469329 +242351,3160,multiple storylines,1241469313 +242351,3160,religious overtones,1241469319 +242351,3175,parody,1241949197 +242351,3186,Angelina Jolie,1294758975 +242351,3186,depression,1294758984 +242351,3186,Drama,1294758986 +242351,3186,winona ryder,1294758977 +242351,3328,Forest Whitaker,1242855078 +242351,3328,hit men,1242855086 +242351,3328,Jim Jarmusch,1242855083 +242351,3328,melancholy,1242855090 +242351,3466,Robert Downey Jr,1310220243 +242351,3521,Atmospheric,1293225448 +242351,3521,Cinqué Lee,1293225572 +242351,3521,Elvis iconography,1293225538 +242351,3521,japanese,1293710348 +242351,3521,Jim Jarmusch,1293225439 +242351,3521,nostalgic,1293225455 +242351,3521,Steve Buscemi,1293710364 +242351,3527,Arnold Schwarzenegger,1241466332 +242351,3527,funny accent,1241466359 +242351,3527,scifi cult,1241466343 +242351,3618,Michael Rapaport,1300392218 +242351,3618,Woody Allen,1300390798 +242351,3623,Tom Cruise,1242854719 +242351,3624,buddy movie,1294225934 +242351,3624,Lucy Liu,1294225931 +242351,3624,Owen Wilson,1294225928 +242351,3624,Western Comedy,1294225938 +242351,3698,Arnold Schwarzenegger,1241551409 +242351,3698,author:Stephen King,1241551413 +242351,3706,devil,1295852019 +242351,3706,Mickey Rourke,1295852002 +242351,3706,Robert De Niro,1295852004 +242351,3706,setting:New Orleans,1295852006 +242351,3793,Halle Berry,1241551186 +242351,3793,Hugh Jackman,1241551206 +242351,3793,superhero,1241551168 +242351,3852,fashion,1303242561 +242351,3852,Greer Goodman,1303242546 +242351,3852,open ending,1303242572 +242351,3882,cheerleading,1294328216 +242351,3882,Overrated,1294328219 +242351,3925,black and white,1293710216 +242351,3925,Jim Jarmusch,1293710211 +242351,3977,Cameron Diaz,1242855292 +242351,3977,Drew Barrymore,1242855294 +242351,3977,Lucy Liu,1242855276 +242351,3977,sexy,1242855300 +242351,3986,action,1368313403 +242351,3994,atmospheric,1261581853 +242351,3994,Bruce Willis,1261581835 +242351,3994,melancholy,1261581844 +242351,3994,Samuel L. Jackson,1261581832 +242351,3994,twist ending,1261581846 +242351,4011,Alan Ford,1293274464 +242351,4011,Benicio Del Toro,1293274420 +242351,4011,Brad Pitt,1293274380 +242351,4011,british,1293274392 +242351,4011,comedy,1241465473 +242351,4011,dialogue,1293274450 +242351,4011,Great dialogue,1241465480 +242351,4011,Guy Ritchie,1241465478 +242351,4011,Jason Statham,1293274385 +242351,4011,Vinnie Jones,1293274431 +242351,4027,Coen Brothers,1241551834 +242351,4027,funny,1241551845 +242351,4027,George Clooney,1241551830 +242351,4027,John Goodman,1241551842 +242351,4027,Quirky,1241551832 +242351,4155,sad,1302518231 +242351,4226,overrated,1293467679 +242351,4233,Jaime Pressly,1293573049 +242351,4233,Jake Busey,1293573037 +242351,4233,Jerry O'Connell,1293573021 +242351,4233,Shannon Elizabeth,1293572990 +242351,4233,slapstick humor,1232749044 +242351,4343,comedy,1293572653 +242351,4343,David Duchovny,1293572656 +242351,4343,Julianne Moore,1293572665 +242351,4343,Orlando Jones,1293572670 +242351,4343,Seann William Scott,1293572660 +242351,4367,Angelina Jolie,1293752709 +242351,4367,sexy,1293752713 +242351,4369,Jordana Brewster,1280172907 +242351,4369,Paul Walker,1280172901 +242351,4369,Vin Diesel,1280172903 +242351,4389,erotic,1293581555 +242351,4389,Girls' Boarding School,1293581561 +242351,4389,lesbian,1293581535 +242351,4389,Mischa Barton,1293581539 +242351,4389,Piper Perabo,1293581537 +242351,4389,poetry,1293583165 +242351,4489,Eddie Murphy,1241949470 +242351,4531,Arnold Schwarzenegger,1293752580 +242351,4531,James Belushi,1293752582 +242351,4641,bittersweet,1271622565 +242351,4641,coming of age,1271622574 +242351,4641,Steve Buscemi,1271622489 +242351,4641,stylized,1271622578 +242351,4641,Thora Birch,1271622559 +242351,4643,Tim Burton,1242854340 +242351,4649,Elizabeth Banks,1296249134 +242351,4649,goofy,1296249058 +242351,4649,Ken Marino,1296249068 +242351,4649,not funny,1296249097 +242351,4649,silly,1296249063 +242351,4720,claustrophobic,1242854277 +242351,4720,Nicole Kidman,1242854285 +242351,4720,twist ending,1242854272 +242351,4785,harsh,1292170532 +242351,4785,Jean-Louis Trintignant,1292170536 +242351,4785,Klaus Kinski,1292170525 +242351,4785,spaghetti western,1292170941 +242351,4790,slow,1308836933 +242351,4844,cast,1307650615 +242351,4844,heist,1307650627 +242351,4874,overrated,1293752977 +242351,4878,cerebral,1368313608 +242351,4979,Ben Stiller,1279484469 +242351,4979,Bill Murray,1279484451 +242351,4979,dark comedy,1279484454 +242351,4979,Gene Hackman,1294528637 +242351,4979,great soundtrack,1279484459 +242351,4979,Owen Wilson,1294528632 +242351,4979,quirky,1294528643 +242351,4979,Wes Anderson,1279484445 +242351,4993,atmospheric,1241469397 +242351,4993,Elijah Wood,1297360378 +242351,4993,fantasy,1241469401 +242351,4993,Orlando Bloom,1297360370 +242351,5040,Arnold Schwarzenegger,1241465732 +242351,5040,funny accent,1241465779 +242351,5110,overrated,1290901384 +242351,5199,ending,1308777837 +242351,5283,comedy,1293665566 +242351,5283,Kal Penn,1293665556 +242351,5283,Ryan Reynolds,1293665537 +242351,5283,Tara Reid,1293665540 +242351,5283,Teen movie,1293665544 +242351,5298,Patricia Arquette,1306871785 +242351,5298,quirky,1306871789 +242351,5378,Ewan McGregor,1241950706 +242351,5378,George Lucas,1241950657 +242351,5378,Hayden Christensen,1241950671 +242351,5378,Natalie Portman,1241950782 +242351,5378,Star Wars,1241950681 +242351,5445,Tom Cruise,1242854683 +242351,5459,comedy,1293572736 +242351,5459,Tommy Lee Jones,1293572725 +242351,5459,Will Smith,1293572727 +242351,5500,silly fun,1241950230 +242351,5502,Mel Gibson,1242854059 +242351,5505,depressing,1293550577 +242351,5505,dry,1293550569 +242351,5505,Jake Gyllenhaal,1293550547 +242351,5505,Jennifer Aniston,1293550529 +242351,5505,John C. Reilly,1293550596 +242351,5505,Zooey Deschanel,1293550541 +242351,5557,Piper Perabo,1302433894 +242351,5617,black comedy,1241469085 +242351,5617,Maggie Gyllenhaal,1241469090 +242351,5792,Campbell Scott,1301862990 +242351,5792,cynical,1301862964 +242351,5875,short films,1298911554 +242351,5903,plot twists,1303471777 +242351,5903,stylized violence,1303471756 +242351,5952,atmospheric,1241469384 +242351,5952,Elijah Wood,1297360410 +242351,5952,fantasy,1241469345 +242351,5952,Orlando Bloom,1297360414 +242351,5995,dramatic,1368313388 +242351,6157,Ben Affleck,1242855329 +242351,6157,comic book,1242855325 +242351,6157,Jennifer Garner,1242855331 +242351,6157,superhero,1242855333 +242351,6188,college,1241551765 +242351,6188,comedy,1368313293 +242351,6188,Elisha Cuthbert,1293225645 +242351,6188,hilarious,1241551768 +242351,6188,Luke Wilson,1241551770 +242351,6188,Vince Vaughn,1293225632 +242351,6188,Will Ferrell,1241551772 +242351,6287,Adam Sandler,1316589013 +242351,6287,Jack Nicholson,1316589018 +242351,6300,Anders Thomas Jensen,1241469736 +242351,6300,dark comedy,1241469784 +242351,6300,friendship,1241469813 +242351,6300,Mads Mikkelsen,1301903825 +242351,6300,Ulrich Thomsen,1241469767 +242351,6333,ensemble cast,1241550979 +242351,6333,Halle Berry,1241551157 +242351,6333,marvel,1241550968 +242351,6333,superhero,1241550970 +242351,6378,Charlize Theron,1293225353 +242351,6378,Edward Norton,1293225317 +242351,6378,Jason Statham,1293225320 +242351,6378,twists & turns,1293225332 +242351,6383,Eva Mendes,1280172938 +242351,6383,Paul Walker,1280172949 +242351,6539,Johnny Depp,1241469137 +242351,6539,Keira Knightley,1241469141 +242351,6539,pirates,1241469146 +242351,6539,sword fight,1241469168 +242351,6541,adapted from:comic,1242854810 +242351,6659,cult film,1293751632 +242351,6659,Fred Ward,1293751616 +242351,6659,Kevin Bacon,1293751585 +242351,6659,monster,1293751621 +242351,6664,Arnold Schwarzenegger,1313389302 +242351,6664,classic action movie,1313389332 +242351,6709,Antonio Banderas,1242854543 +242351,6709,choreographic violence,1242854610 +242351,6709,Danny Trejo,1242854524 +242351,6709,Eva Mendes,1242854540 +242351,6709,Johnny Depp,1242854527 +242351,6709,Robert Rodriguez,1242854533 +242351,6710,Adrien Brody,1311278543 +242351,6710,awkward,1311279007 +242351,6710,bittersweet,1311278575 +242351,6710,Milla Jovovich,1311278546 +242351,6710,quirky,1311278563 +242351,6754,Dark,1241950195 +242351,6754,gothic,1241950187 +242351,6754,interesting,1241950205 +242351,6754,Kate Beckinsale,1241950190 +242351,6755,B-movie,1242855192 +242351,6755,Bruce Campbell,1293274270 +242351,6755,comedy,1293274281 +242351,6755,quirky,1242855247 +242351,6764,Dwayne Johnson,1241551432 +242351,6764,Seann William Scott,1241551435 +242351,6807,british comedy,1301145633 +242351,6807,satire,1301145674 +242351,6867,Peter Dinklage,1315206620 +242351,6867,quirky,1315206625 +242351,6867,satirical,1315206931 +242351,6874,action,1241469618 +242351,6874,Quentin Tarantino,1241469596 +242351,6874,stylized,1241469598 +242351,6874,Tokyo,1241469611 +242351,6874,violent,1241469602 +242351,6881,Katie Holmes,1294604460 +242351,6942,british,1313272089 +242351,6942,ensemble cast,1313272093 +242351,6942,multiple storylines,1313272098 +242351,6957,Billy Bob Thornton,1293655721 +242351,6957,black comedy,1242855442 +242351,6957,Christmas,1242855449 +242351,7090,atmospheric,1241466474 +242351,7090,Beautiful,1241466478 +242351,7090,Chinese,1241466507 +242351,7090,Epic,1241466485 +242351,7090,martial arts,1241466493 +242351,7153,atmospheric,1241469369 +242351,7153,Elijah Wood,1297360399 +242351,7153,fantasy,1241469363 +242351,7153,Orlando Bloom,1297360404 +242351,7160,depressing,1312144675 +242351,7160,ugly,1312144666 +242351,7258,Bryan Greenberg,1293225183 +242351,7258,Chris Evans,1293225168 +242351,7258,friendship relations,1241465831 +242351,7258,Leonardo Nam,1293225189 +242351,7258,Matthew Lillard,1293225218 +242351,7258,Scarlett Johansson,1241465811 +242351,7258,stereotyped roles,1241465918 +242351,7325,Based on a TV show,1241950464 +242351,7325,Ben Stiller,1241950484 +242351,7325,funny,1241950505 +242351,7325,Owen Wilson,1241950482 +242351,7325,Remake,1241950492 +242351,7346,coming of age,1293730631 +242351,7346,Elisha Cuthbert,1293730583 +242351,7346,pornography,1293730585 +242351,7346,teen,1293730619 +242351,7367,Coen Brothers,1242854766 +242351,7367,funny,1293225273 +242351,7367,J.K. Simmons,1293225267 +242351,7367,New Orleans,1293225277 +242351,7367,Remake,1242854778 +242351,7367,Tom Hanks,1293225252 +242351,7373,adapted from:comic,1241469627 +242351,7373,Guillermo del Toro,1241469638 +242351,7373,nazis,1293751907 +242351,7373,occult,1293751916 +242351,7373,Ron Perlman,1293751910 +242351,7373,Selma Blair,1293751925 +242351,7373,superhero,1241469645 +242351,7438,action,1241552478 +242351,7438,atmospheric,1241552476 +242351,7438,Quentin Tarantino,1241552467 +242351,7438,Western,1241552472 +242351,7451,Amanda Seyfried,1280777379 +242351,7451,High School,1280777373 +242351,7451,Lindsay Lohan,1280777382 +242351,7451,Lizzy Caplan,1294782258 +242351,7460,Alex Descas,1293227077 +242351,7460,Alfred Molina,1293227188 +242351,7460,Atmospheric,1241468808 +242351,7460,Bill Murray,1293226904 +242351,7460,black and white,1241468802 +242351,7460,Cate Blanchett,1293226906 +242351,7460,Cinqué Lee,1293226984 +242351,7460,E.J. Rodriguez,1293227057 +242351,7460,episodic,1241468806 +242351,7460,hw comedy,1241468810 +242351,7460,iggy pop,1293226920 +242351,7460,Isaach De Bankolé,1293227151 +242351,7460,Jack White,1293227245 +242351,7460,Jim Jarmusch,1241468812 +242351,7460,Joie Lee,1293227006 +242351,7460,Joseph Rigano,1293227026 +242351,7460,Meg White,1293227250 +242351,7460,Roberto Benigni,1293227170 +242351,7460,RZA,1293227278 +242351,7460,Steve Buscemi,1293226911 +242351,7460,Steven Wright,1293227206 +242351,7460,Taylor Mead,1293227236 +242351,7460,The GZA,1293227273 +242351,7460,Tom Waits,1293226912 +242351,7460,Vinny Vella,1293227044 +242351,7460,William Rice,1293227228 +242351,7773,intense,1298230897 +242351,7843,Christof Wackernagel,1287046304 +242351,7843,comedy,1292313422 +242351,7843,coming of age,1241466416 +242351,7843,friendship relations,1241466443 +242351,7843,german movie,1241466452 +242351,7843,Lukas Gregorowicz,1287046277 +242351,7843,Marie Zielcke,1272561033 +242351,7843,Moritz Bleibtreu,1241466420 +242351,7843,weed,1241466465 +242351,7843,Wotan Wilke Möhring,1287046323 +242351,8370,Blind Swordsman,1241550946 +242351,8370,cgi blood,1241550959 +242351,8370,Japan,1241550944 +242351,8370,mtv pop style,1241550952 +242351,8528,Ben Stiller,1241949347 +242351,8528,Christine Taylor,1280778706 +242351,8528,hilarious,1241949341 +242351,8528,obscure sports,1293732133 +242351,8528,Vince Vaughn,1241949345 +242351,8643,chick flick,1304366080 +242351,8643,Teen movie,1304366363 +242351,8784,friendship,1241949189 +242351,8784,Great Soundtrack,1241949160 +242351,8784,Natalie Portman,1293225112 +242351,8784,Zach Braff,1293225115 +242351,8798,Tom Cruise,1242855307 +242351,8807,Buddy movie,1241949118 +242351,8807,Kal Penn,1293573276 +242351,8807,stoner comedy,1241949094 +242351,8810,action,1241465598 +242351,8810,franchise,1293572810 +242351,8814,easy fun,1241950085 +242351,8814,Matthew Lillard,1293573220 +242351,8814,Seth Green,1293573223 +242351,8841,cameo-fest,1306070385 +242351,8841,funny,1306070373 +242351,8841,Lauren Graham,1306070368 +242351,8841,R:language,1306070378 +242351,8874,black comedy,1242854068 +242351,8874,British,1242854065 +242351,8874,parody,1242854078 +242351,8917,hilarious,1241950330 +242351,8917,political,1241950333 +242351,8917,satire,1241950336 +242351,8948,Jude Law,1307650486 +242351,8948,Sienna Miller,1307650483 +242351,8949,Paul Giamatti,1321618594 +242351,8983,martial arts,1293752686 +242351,8983,overrated,1293752684 +242351,8983,stylized,1293752691 +242351,8985,Jessica Biel,1242855422 +242351,8985,Ryan Reynolds,1242855424 +242351,8985,Wesley Snipes,1242855429 +242351,27020,Angelina Jolie,1304359368 +242351,27020,lesbian,1304359373 +242351,27020,Nudity (Full Frontal),1304359476 +242351,27022,Mickey Rourke,1293549802 +242351,27022,Paulina Porizkova,1293549788 +242351,27022,Tarantino like,1293549791 +242351,27050,Alexandra Neldel,1292312608 +242351,27050,comedy,1292313358 +242351,27050,dialogue,1292313256 +242351,27050,Diether Krebs,1292312480 +242351,27050,Heinrich Giskes,1292312541 +242351,27050,Hilmi Sözer,1292312657 +242351,27050,Markus Knüfken,1292312456 +242351,27050,Martin Semmelrogge,1292312530 +242351,27050,Oliver Korittke,1292312334 +242351,27050,Peter Thorwarth,1301904102 +242351,27050,Ralf Richter,1292312463 +242351,27050,Til Schweiger,1292312605 +242351,27050,Willi Tomczyk,1292312516 +242351,27178,Christiane Paul,1272560783 +242351,27178,Moritz Bleibtreu,1272560797 +242351,27347,Angie Harmon,1298163167 +242351,27347,Charlie Sheen,1298163141 +242351,27347,Jon Lovitz,1298163136 +242351,27370,british,1294347219 +242351,27370,funny,1294347172 +242351,27370,Heike Makatsch,1294347198 +242351,27370,James Lance,1294347206 +242351,27370,Kate Ashfield,1294347175 +242351,27370,philosophical,1294347253 +242351,27450,unconventional Western,1241949626 +242351,27647,lesbian,1301388346 +242351,27674,black comedy,1241949901 +242351,27674,Hilary Swank,1241949898 +242351,27674,multiple storylines,1241949964 +242351,27716,Anders Thomas Jensen,1293668979 +242351,27716,black comedy,1293669020 +242351,27716,Mads Mikkelsen,1293668988 +242351,27741,cultural customs and traditions,1241465222 +242351,27741,drama,1241465242 +242351,27741,hierarchy,1241465262 +242351,27773,overrated,1294571795 +242351,27786,Fiona O'Shaughnessy,1311707829 +242351,27786,gay,1311707587 +242351,27786,lesbian,1311707584 +242351,27831,british,1309593357 +242351,27831,Colm Meaney,1309593486 +242351,27831,ending,1309593383 +242351,27831,Exquisite plotting.,1309593376 +242351,27831,Sienna Miller,1309593353 +242351,30810,Bill Murray,1241469435 +242351,30810,Cate Blanchett,1293710423 +242351,30810,funny,1241469477 +242351,30810,Owen Wilson,1293710419 +242351,30810,stylized,1241469485 +242351,30810,submarine,1241469462 +242351,30810,weird,1241469454 +242351,30810,Wes Anderson,1241469459 +242351,31696,Alan Moore,1241949447 +242351,31696,comic book,1241949451 +242351,31696,Keanu Reeves,1241949453 +242351,31696,spiritual warfare,1241949459 +242351,31878,comedy,1241552411 +242351,31878,Hong Kong,1241552402 +242351,32019,John Travolta,1241949688 +242351,32019,manifold storyline,1241949791 +242351,32300,Devon Aoki,1293225754 +242351,32300,girlie movie,1293225775 +242351,32300,Jill Ritchie,1293920744 +242351,32300,Jimmi Simpson,1293920806 +242351,32300,Jordana Brewster,1293225742 +242351,32300,lesbian,1241550741 +242351,32300,romance,1293920756 +242351,32300,soundtrack,1293668068 +242351,32587,Brittany Murphy,1293274597 +242351,32587,Bruce Willis,1293274570 +242351,32587,Carla Gugino,1293274770 +242351,32587,Clive Owen,1293274578 +242351,32587,comic book,1241465358 +242351,32587,Devon Aoki,1293274586 +242351,32587,dialogue,1411827419 +242351,32587,Jessica Alba,1293274562 +242351,32587,Josh Hartnett,1293274661 +242351,32587,monologue,1411827413 +242351,32587,multiple storylines,1241465377 +242351,32587,Robert Rodriguez,1293274553 +242351,32587,storytelling,1368313309 +242351,32587,stylized,1241465360 +242351,33145,Amanda Peet,1299495846 +242351,33145,chemistry,1299495859 +242351,33296,fairy tale,1308253716 +242351,33296,Jerry O'Connell,1308253680 +242351,33296,Ron Livingston,1308253692 +242351,33296,Ryan Reynolds,1308253685 +242351,33451,cool as shit,1241466175 +242351,33451,tarantesque,1241466207 +242351,33493,Star Wars,1241469046 +242351,33679,Angelina Jolie,1241551894 +242351,33679,Brad Pitt,1241551896 +242351,33679,funny,1241551911 +242351,33794,atmospheric,1241550812 +242351,33794,melancholy,1241550849 +242351,33794,superhero,1241550816 +242351,33817,Emily Blunt,1294686308 +242351,33817,England,1294686353 +242351,33817,lesbian,1294686305 +242351,33817,Nathalie Press,1294686326 +242351,33817,romance,1294686338 +242351,33903,Stipe Erceg,1293008721 +242351,34162,Owen Wilson,1293654511 +242351,34405,Adam Baldwin,1293225037 +242351,34405,Alan Tudyk,1293225002 +242351,34405,Characters with great depth,1241466323 +242351,34405,cult film,1293225041 +242351,34405,funny,1293225061 +242351,34405,great dialogue,1241466234 +242351,34405,Nathan Fillion,1293225010 +242351,34405,Summer Glau,1293225024 +242351,34437,Atmospheric,1293710186 +242351,34437,Jim Jarmusch,1293710156 +242351,35836,hilarious,1241949840 +242351,35836,Judd Apatow,1241949865 +242351,35836,romantic comedy,1241949846 +242351,35836,Seth Rogen,1241949857 +242351,35836,Steve Carell,1241949849 +242351,36509,ending,1306356756 +242351,36509,Lena Headey,1306354213 +242351,36509,Piper Perabo,1306354220 +242351,36509,predictable,1306356769 +242351,37382,fast-cut,1241949263 +242351,37382,inspired by a real-life person,1241949239 +242351,37382,Keira Knightley,1241949235 +242351,37382,Lucy Liu,1241949244 +242351,37384,comedy,1280779100 +242351,37384,Justin Long,1280779097 +242351,38061,black comedy,1241469491 +242351,38061,great dialouge,1241469498 +242351,38061,Robert Downey Jr,1241469501 +242351,38061,smart writing,1241469510 +242351,38061,val kilmer,1241469518 +242351,39414,Didn't finish,1312833160 +242351,39414,emotionally dead,1312833263 +242351,39414,prostitution,1312919587 +242351,40581,Ryan Reynolds,1280777602 +242351,40946,anti-religion,1303756847 +242351,40946,race issues,1303756854 +242351,40946,stand-up comedy,1303756851 +242351,41285,London,1308404060 +242351,41285,non-hollywood ending,1308404064 +242351,41285,Scarlett Johansson,1308404056 +242351,41285,slow,1308404165 +242351,41285,twist,1308404096 +242351,42725,Jonah Hill,1293573341 +242351,42725,Linda Cardellini,1242854939 +242351,42725,Nick Swardson,1293573461 +242351,42725,Stoner Movie,1293573329 +242351,43744,Lena Headey,1293468091 +242351,43744,Piper Perabo,1293552039 +242351,43744,Romance,1241552627 +242351,43908,Chris Evans,1320224168 +242351,43908,Jason Statham,1320224160 +242351,43921,Paul Walker,1280172474 +242351,43921,Vera Farmiga,1280172490 +242351,44191,idealism,1241551273 +242351,44191,Natalie Portman,1241551252 +242351,44191,politics,1241551258 +242351,44199,Clive Owen,1241552524 +242351,44199,intelligent thriller,1241552525 +242351,44199,Too predictable,1241552533 +242351,44665,Ben Kingsley,1293225711 +242351,44665,Bruce Willis,1293225671 +242351,44665,cool'n'funny,1241465513 +242351,44665,Film Noir,1293225702 +242351,44665,hitman,1293225708 +242351,44665,Josh Hartnett,1293225680 +242351,44665,Lucy Liu,1293225688 +242351,44665,twist ending,1293225692 +242351,44761,children acting like adults,1242855170 +242351,44761,clever,1242855186 +242351,44761,film noir,1242855148 +242351,44761,high school,1242855151 +242351,44828,Elizabeth Banks,1310926875 +242351,44828,Gregg Henry,1310926925 +242351,44828,nathan fillion,1310926879 +242351,45186,Tom Cruise,1242854732 +242351,45221,Missy Peregrym,1280778252 +242351,45499,ending after credits,1241551104 +242351,45499,Halle Berry,1241551111 +242351,45499,Hugh Jackman,1241551094 +242351,45499,Marvel,1241551097 +242351,45501,Jennifer Aniston,1307650751 +242351,45501,Vince Vaughn,1307650754 +242351,45666,Héctor Jiménez,1293732304 +242351,45666,ironic,1293732313 +242351,45720,fashion,1294095768 +242351,45720,silly,1294095775 +242351,45722,action,1241551661 +242351,45722,Johnny Depp,1241551650 +242351,45722,Keira Knightley,1241551646 +242351,45722,Orlando Bloom,1241551653 +242351,45722,pirates,1241551648 +242351,45726,friendship relations,1241949971 +242351,45726,Kate Hudson,1241949980 +242351,45726,Matt Dillon,1241949987 +242351,45726,Owen Wilson,1241949974 +242351,45728,crude humor,1314249859 +242351,45728,pop culture references,1314249880 +242351,45728,Rosario Dawson,1314249839 +242351,45728,sequel,1314249848 +242351,45728,slackers,1314249853 +242351,46335,Vin Diesel,1280172926 +242351,46478,August Diehl,1319227149 +242351,46478,Berlin,1319227154 +242351,46478,drama,1319227176 +242351,46478,Ellen Page,1319227147 +242351,46578,Alan Arkin,1293733170 +242351,46578,comedy,1241469410 +242351,46578,dysfunctional family,1241469428 +242351,46578,Greg Kinnear,1293733195 +242351,46578,quirky,1293733155 +242351,46578,road trip,1241469422 +242351,46578,Steve Carell,1241469425 +242351,46578,Toni Collette,1293733183 +242351,46965,B-movie,1242853966 +242351,46976,Dustin Hoffman,1294328676 +242351,46976,looks interesting -- plot,1241950562 +242351,46976,Maggie Gyllenhaal,1241950513 +242351,46976,surreal,1294328682 +242351,46976,touching,1294328686 +242351,46976,Will Ferrell,1241950517 +242351,47491,Anders Thomas Jensen,1293009235 +242351,47491,black comedy,1293009155 +242351,47491,Mads Mikkelsen,1293009152 +242351,47491,Ulrich Thomsen,1293009183 +242351,47937,badass girl,1279830700 +242351,47937,dark comedy,1279830702 +242351,47997,dark comedy,1293226585 +242351,47997,Dax Shepard,1272867419 +242351,47997,Fun scifi,1241552641 +242351,47997,Justin Long,1241552646 +242351,47997,Luke Wilson,1241552650 +242351,47997,Maya Rudolph,1293226572 +242351,47997,obscene,1293226596 +242351,47997,social commentary,1272867429 +242351,48660,Moritz Bleibtreu,1293007997 +242351,48856,dialogue,1315207123 +242351,48856,Robert Downey Jr.,1315207097 +242351,48856,Shia LaBeouf,1315207110 +242351,49272,James Bond,1241949533 +242351,49272,literary adaptation,1241949559 +242351,49272,Mads Mikkelsen,1301903840 +242351,50183,Erin Kelly,1293467595 +242351,50183,erotic,1293467613 +242351,50183,lesbian,1293467603 +242351,50514,Mads Mikkelsen,1263331877 +242351,50550,lesbian,1312743209 +242351,50792,Timothy Olyphant,1307650942 +242351,50794,Ben Affleck,1242853985 +242351,50794,flashy,1242853996 +242351,50794,Ray Liotta,1242853989 +242351,51094,Bridget Moynahan,1293468902 +242351,51094,Heather Graham,1293468905 +242351,51094,lesbian,1293468907 +242351,51255,action spoof,1241552685 +242351,51255,british comedy,1241552671 +242351,51255,Simon Pegg,1241552693 +242351,51662,action,1241550921 +242351,51662,atmospheric,1241550926 +242351,51662,comic book,1241550915 +242351,51662,sword fight,1241550919 +242351,52245,Jon Heder,1293732182 +242351,52245,Will Ferrell,1293732184 +242351,52319,Christoph Waltz,1251013644 +242351,52328,Chris Evans,1261878866 +242351,52328,Cillian Murphy,1261878861 +242351,52865,70s,1295044493 +242351,52865,coming of age,1295044474 +242351,52865,Ken Marino,1295044467 +242351,52865,Paul Rudd,1295044461 +242351,52973,absolutely hilarious,1241552461 +242351,52973,Alan Tudyk,1293550441 +242351,52973,Jason Segel,1273124471 +242351,52973,Jay Baruchel,1273124467 +242351,52973,Judd Apatow,1241552445 +242351,52973,Katherine Heigl,1241552428 +242351,52973,Kristen Wiig,1293550320 +242351,52973,Leslie Mann,1293226317 +242351,52973,Paul Rudd,1241552433 +242351,52973,Seth Rogen,1241552431 +242351,53468,comedy,1242855064 +242351,53468,zombies,1242855067 +242351,53519,classic car,1293226036 +242351,53519,great dialogue,1241949432 +242351,53519,great soundtrack,1241949427 +242351,53519,grindhouse,1293226029 +242351,53519,Kurt Russell,1293225932 +242351,53519,Mary Elizabeth Winstead,1293226018 +242351,53519,muscle car celebration,1241949413 +242351,53519,Quentin Tarantino,1241949423 +242351,53519,Tracie Thoms,1293225964 +242351,53769,atmospheric,1344796205 +242351,53769,best viewed in black and white,1344796214 +242351,53769,bittersweet,1344796221 +242351,53769,great dialogue,1344796224 +242351,53769,loneliness,1344796244 +242351,53769,realistic,1344796238 +242351,53769,unresolved,1344796249 +242351,53972,bruce willis,1241552370 +242351,53972,good sequel,1241552373 +242351,53972,Justin Long,1241552386 +242351,53972,Timothy Olyphant,1241552382 +242351,53996,childish,1406235869 +242351,53996,humanlike robots,1406235977 +242351,53996,Megan Fox,1406235849 +242351,53996,Shia LaBeouf,1406235843 +242351,54256,Andy Samberg,1293732224 +242351,54256,Bill Hader,1293732226 +242351,54256,trash,1242854915 +242351,54503,Bill Hader,1273124542 +242351,54503,Christopher Mintz-Plasse,1273124509 +242351,54503,Emma Stone,1293655990 +242351,54503,friendship,1241466126 +242351,54503,Good acting,1241466121 +242351,54503,high school,1273124580 +242351,54503,hilarious,1241466112 +242351,54503,Jonah Hill,1273124522 +242351,54503,Michael Cera,1273124532 +242351,54503,Seth Rogen,1273124548 +242351,54503,teen comedy for adults,1241466105 +242351,54875,twists & turns,1301486030 +242351,55020,episodic,1294758395 +242351,55020,Famke Janssen,1294758458 +242351,55020,funny,1294758401 +242351,55020,Gretchen Mol,1294758391 +242351,55020,Ken Marino,1294758170 +242351,55020,Paul Rudd,1294758179 +242351,55020,quirky,1294758186 +242351,55020,Winona Ryder,1294758414 +242351,55205,Sienna Miller,1265133059 +242351,55205,Steve Buscemi,1265133053 +242351,55269,Adrien Brody,1293710396 +242351,55269,dark comedy,1242855347 +242351,55269,great beginning,1242855386 +242351,55269,Jason Schwartzman,1293710409 +242351,55269,Owen Wilson,1293710394 +242351,55269,Wes Anderson,1242855351 +242351,55820,coen brothers,1242854468 +242351,55820,Javier Bardem,1242854463 +242351,55820,Tommy Lee Jones,1242854478 +242351,55820,Woody Harrelson,1242854476 +242351,56145,antichristian,1242854374 +242351,56145,apocalypse,1242854391 +242351,56145,Good ending,1242854441 +242351,56145,stephen king,1242854366 +242351,56156,hooker with a heart of gold,1241552727 +242351,56156,Timothy Olyphant,1241552700 +242351,56251,intelligent humor,1241949229 +242351,56333,90% drama 10% comedy,1307990353 +242351,56333,Heavy-handed,1307990535 +242351,56333,Philip Seymour Hoffman,1307990370 +242351,56367,Ellen Page,1307052015 +242351,56367,overrated,1302515078 +242351,56715,quirky,1241950038 +242351,56715,romantic drama,1241950052 +242351,56846,Alwara Höfels,1390138053 +242351,56846,Jürgen Vogel,1293007895 +242351,56846,Nora Tschirner,1293007881 +242351,56846,Til Schweiger,1293007885 +242351,56908,bittersweet,1306181993 +242351,56908,cynical,1306182008 +242351,56908,Mandy Moore,1306181798 +242351,56908,quirky,1306181838 +242351,56908,romance,1306181785 +242351,56908,soundtrack,1306181824 +242351,57274,spanish,1364809393 +242351,57464,twist ending,1241949085 +242351,57528,Best Rambo,1241551567 +242351,57528,brutality,1241551542 +242351,57528,Sylvester Stallone,1241551517 +242351,57536,Jonah Hill,1260391365 +242351,57536,Justin Long,1260391354 +242351,57640,good sequel,1241949041 +242351,57640,Guillermo del Toro,1241949026 +242351,57640,Ron Perlman,1293751953 +242351,57640,Selma Blair,1293751940 +242351,57640,superhero,1241949029 +242351,58559,Heath Ledger,1241550711 +242351,58559,Michael Caine,1241550714 +242351,58622,Adam Carolla,1294225379 +242351,58622,ending,1294227975 +242351,58622,funny,1294225496 +242351,58622,Heather Juergensen,1294225777 +242351,58622,Oswaldo Castillo,1294225422 +242351,58655,Leslie Mann,1294328097 +242351,58655,Owen Wilson,1294328075 +242351,58806,Ellen Page,1308082107 +242351,58806,quirky,1308082138 +242351,58998,Bill Hader,1294528670 +242351,58998,Jason Segel,1293731212 +242351,58998,Jonah Hill,1293731233 +242351,58998,Paul Rudd,1293731196 +242351,59022,bad sequel,1232749358 +242351,59129,Nazi's,1242854290 +242351,59273,Steve Buscemi,1309685893 +242351,59315,Gwyneth Paltrow,1241552495 +242351,59315,Jeff Bridges,1293226745 +242351,59315,Robert Downey Jr,1241552491 +242351,59315,superhero,1241552489 +242351,59369,action,1241950431 +242351,59369,cynical,1241950424 +242351,59369,father daughter relationship,1241950371 +242351,59369,Liam Neeson,1293751857 +242351,60072,adapted from:comic,1241950107 +242351,60072,Angelina Jolie,1241950093 +242351,60072,James McAvoy,1241950103 +242351,60128,acting,1303583322 +242351,60128,Carly Pope,1303583305 +242351,60128,funny,1306226251 +242351,60128,multiple storylines,1303583345 +242351,60128,Nudity (Topless),1303583340 +242351,60293,Ben Kingsley,1310754713 +242351,60293,coming of age,1310754721 +242351,60293,hip-hop,1310754716 +242351,60293,new york,1310754735 +242351,60684,adapted from:comic,1241466026 +242351,60684,penis movie,1237034139 +242351,60684,storytelling,1241466054 +242351,60684,visually appealing,1368313459 +242351,60684,Zack Snyder,1241466032 +242351,60756,John C. Reilly,1293730806 +242351,60756,Will Ferrell,1293730819 +242351,61013,Antoine Monot Jr.,1292311861 +242351,61013,ending,1292311956 +242351,61013,Frank Giering,1292311841 +242351,61013,Hamburg,1292311945 +242351,61013,Julia Hummer,1292311868 +242351,61013,kicker,1292311939 +242351,61024,James Franco,1242854250 +242351,61024,Seth Rogen,1242854248 +242351,61024,Stoner Movie,1242854257 +242351,61132,parody,1280778989 +242351,61132,Robert Downey Jr.,1280778984 +242351,61132,satire,1303306539 +242351,61250,Dana Goodman,1293904177 +242351,61250,Emma Stone,1293903678 +242351,61250,Kat Dennings,1293903684 +242351,61250,Katharine McPhee,1293903820 +242351,61255,anti-hero,1242854124 +242351,61323,Brad Pitt,1241949570 +242351,61323,Coen Brothers,1241949592 +242351,61323,dark comedy,1241949574 +242351,61323,Frances McDormand,1241949585 +242351,61323,J.K. Simmons,1294230507 +242351,61323,Tilda Swinton,1241949583 +242351,61361,Bette Midler,1307028762 +242351,61361,Eva Mendes,1307028765 +242351,61361,lesbian,1307028758 +242351,61729,funny,1293655839 +242351,61729,Greg Kinnear,1293655819 +242351,61729,Ricky Gervais,1293655812 +242351,61729,Téa Leoni,1293655829 +242351,62155,Kat Dennings,1242854453 +242351,62155,Michael Cera,1242854455 +242351,62434,Seth Rogen,1293731249 +242351,62439,Alec Baldwin,1309120038 +242351,62439,harsh,1309120124 +242351,62439,Jason Biggs,1309120059 +242351,62439,Kate Hudson,1309120035 +242351,62439,Lizzy Caplan,1309120250 +242351,62439,R,1309120063 +242351,62849,cool dialogues,1241551468 +242351,62849,funny,1241551480 +242351,62849,Guy Ritchie,1241551445 +242351,62849,Mark Strong,1279483660 +242351,62956,fantasy spoof,1232816843 +242351,62956,intelligent humor,1241949223 +242351,63131,Christopher Mintz-Plasse,1280778008 +242351,63131,Ken Marino,1294757832 +242351,63131,Paul Rudd,1280778004 +242351,63479,Clark Duke,1242854204 +242351,63479,teen movie,1280778026 +242351,63992,Ashley Greene,1256240085 +242351,64037,dialogue,1257499422 +242351,64614,Clint Eastwood,1258925936 +242351,64839,ending,1308339654 +242351,64839,identity crisis,1308340313 +242351,64839,loneliness,1368313351 +242351,64839,love story,1308340435 +242351,64839,Mickey Rourke,1308339700 +242351,64839,relationships,1308340443 +242351,64839,strippers,1308340322 +242351,65126,Chuck Palahniuk,1257324420 +242351,65126,dark comedy,1257324433 +242351,65126,Sam Rockwell,1257324435 +242351,65126,Sex Addict,1257324441 +242351,65181,alan rickman,1284310240 +242351,65181,Bryan Greenberg,1284310245 +242351,65181,Eliza Dushku,1284310068 +242351,65181,twist ending,1284310279 +242351,65256,film noir,1358277639 +242351,65256,Tom Selleck,1358277648 +242351,65418,empty scenario,1242949877 +242351,65601,classic horror,1325354743 +242351,65601,remake,1325354722 +242351,65682,gothic,1241950170 +242351,66097,3D,1250766327 +242351,66097,dark,1250766331 +242351,66509,Adam Sandler,1294527905 +242351,66509,ending,1294528750 +242351,66509,Jonah Hill,1294527956 +242351,66509,Judd Apatow,1294527908 +242351,66509,Leslie Mann,1294527925 +242351,66509,Seth Rogen,1294527911 +242351,66665,Maggie Gyllenhaal,1264531762 +242351,66979,Desi Lydic,1294756262 +242351,66979,lesbian,1294756269 +242351,67087,friendship,1248725933 +242351,67087,Jaime Pressly,1248725930 +242351,67087,Jason Segel,1248725925 +242351,67087,Paul Rudd,1293730720 +242351,67255,Noomi Rapace,1279483215 +242351,67361,Shane West,1257499332 +242351,67365,Emmanuelle Chriqui,1312142914 +242351,67365,episodic,1312142928 +242351,67365,gay,1312142932 +242351,67365,lesbian,1312142920 +242351,67365,Mila Kunis,1312142917 +242351,67534,bad story,1247515911 +242351,67734,Bill Hader,1280778115 +242351,67734,Jesse Eisenberg,1303306468 +242351,67734,Kristen Stewart,1294528728 +242351,67734,Martin Starr,1293730536 +242351,67923,dialogue,1301579546 +242351,67923,Jordana Brewster,1301579535 +242351,67923,Michelle Rodriguez,1301579513 +242351,67923,Paul Walker,1301579503 +242351,67923,Vin Diesel,1301579496 +242351,68157,August Diehl,1251706329 +242351,68157,Brad Pitt,1251706395 +242351,68157,Christoph Waltz,1251706318 +242351,68157,dialogue,1251706397 +242351,68157,Diane Kruger,1251706392 +242351,68157,ending,1251706411 +242351,68157,Quentin Tarantino,1251706381 +242351,68157,World War II,1251706385 +242351,68237,Sam Rockwell,1280087953 +242351,68237,Sci-fi,1280087970 +242351,68319,superhero,1241816274 +242351,68358,action,1243035414 +242351,68358,Leonard Nimoy,1243035423 +242351,68358,Simon Pegg,1243035409 +242351,68358,spock,1243035441 +242351,68358,Star Trek,1243035393 +242351,68358,time travel,1243035431 +242351,68442,Alec Baldwin,1279895347 +242351,68442,Emma Roberts,1279895341 +242351,68554,Armin Mueller-Stahl,1243724676 +242351,68600,Seann William Scott,1270995920 +242351,68650,Forest Whitaker,1243250306 +242351,68650,Jessica Biel,1243250298 +242351,68650,life philosophy,1243250325 +242351,68650,multiple storylines,1243250247 +242351,68659,geek,1243724731 +242351,68659,Kristen Bell,1243724703 +242351,68659,Seth Rogen,1243724721 +242351,68659,star wars,1243724739 +242351,68848,Adrien Brody,1307200029 +242351,68848,ending,1307200064 +242351,68848,heist,1307200125 +242351,68848,Rachel Weisz,1307200041 +242351,68952,old school horror,1245532764 +242351,68963,Jessica Biel,1289291107 +242351,69122,comedy,1279482672 +242351,69122,story,1293655909 +242351,69122,Zach Galifianakis,1290901341 +242351,69131,Joseph Gordon-Levitt,1263205961 +242351,69131,Mickey Rourke,1263205958 +242351,69275,Nazis,1255215675 +242351,69306,Denzel Washington,1268495180 +242351,69306,John Travolta,1268495173 +242351,69436,Bill Hader,1303306369 +242351,69436,Christopher Mintz-Plasse,1293572888 +242351,69436,disappointment,1303306377 +242351,69436,Michael Cera,1293572875 +242351,69466,Steve Coogan,1307650542 +242351,69516,Bill Murray,1259615452 +242351,69526,action,1246058711 +242351,69526,childish,1406235925 +242351,69526,humanlike robots,1246058693 +242351,69526,Megan Fox,1246058657 +242351,69526,Shia LaBeouf,1246058669 +242351,69526,story,1246058704 +242351,69604,eccentricity,1294328468 +242351,69604,Evan Rachel Wood,1294328448 +242351,69604,Larry David,1294328451 +242351,69604,Woody Allen,1294328454 +242351,69757,Joseph Gordon-Levitt,1253919453 +242351,69757,Zooey Deschanel,1253919463 +242351,69842,ending,1294577496 +242351,69842,Martin Starr,1294577504 +242351,69842,story,1294578274 +242351,70133,Jeff Daniels,1293985085 +242351,70133,Kat Dennings,1293985114 +242351,70133,Lauren Graham,1293985088 +242351,70133,Olivia Thirlby,1293985099 +242351,70133,predictable,1293985106 +242351,70133,religion,1293985137 +242351,70286,fake documentary,1253433012 +242351,70293,boring,1293988031 +242351,70344,Paul Giamatti,1265836267 +242351,71156,George Clooney,1268495224 +242351,71156,Jeff Bridges,1268495221 +242351,71205,lesbian subtext,1293733030 +242351,71205,Megan Fox,1262848018 +242351,71205,sexy,1293733036 +242351,71248,Ben Affleck,1294327183 +242351,71248,J.K. Simmons,1294327189 +242351,71248,Jason Bateman,1294327089 +242351,71248,Kristen Wiig,1294327180 +242351,71254,light plot,1263205952 +242351,71464,black humour,1263639002 +242351,71464,Bleak,1293751739 +242351,71464,coen brothers,1263638998 +242351,71464,drama,1293751693 +242351,71464,slow,1293751686 +242351,71466,Andy Garcia,1294225846 +242351,71466,funny,1294225851 +242351,71466,sentimental,1294225853 +242351,71500,multiple storylines,1303066585 +242351,71500,not funny,1303066830 +242351,71500,plot,1303066603 +242351,71518,coming of age,1294326118 +242351,71518,Drew Barrymore,1294326127 +242351,71518,Ellen Page,1294326120 +242351,71518,Humour,1392757523 +242351,71518,inspirational,1392757506 +242351,71518,Juliette Lewis,1294326125 +242351,71518,Kristen Wiig,1294326122 +242351,71518,predictable,1392757496 +242351,71518,small town,1392757500 +242351,71518,soundtrack,1294326144 +242351,71520,Atheism,1324130884 +242351,71520,good concept,1324130887 +242351,71520,Jonah Hill,1324130898 +242351,71520,Martin Starr,1324130895 +242351,71535,Bill Murray,1279830646 +242351,71535,Emma Stone,1271080297 +242351,71535,funny,1271080270 +242351,71535,Woody Harrelson,1271080281 +242351,71550,film noir,1271012914 +242351,71550,genre mix,1271012881 +242351,71550,Mischa Barton,1271012863 +242351,71579,1960s,1279911097 +242351,71579,Rosamund Pike,1279911109 +242351,71899,animation,1294064435 +242351,71899,Deep,1294064450 +242351,71899,friendship,1294064432 +242351,71899,funny,1294064460 +242351,72011,George Clooney,1263638957 +242351,72041,ending,1280777301 +242351,72171,blaxploitation,1262274964 +242351,72171,martial arts,1262274967 +242351,72171,Michael Jai White,1262274978 +242351,72171,parody,1262274970 +242351,72171,theme music,1262274973 +242351,72226,Wes Anderson,1267915847 +242351,72378,John Cusack,1272868288 +242351,72378,Special Effects,1272868296 +242351,72386,Penélope Cruz,1260305332 +242351,72483,ending,1293574803 +242351,72483,Jesse McCartney,1293574794 +242351,72787,black comedy,1293709970 +242351,72787,british,1293709964 +242351,72998,3d,1261269420 +242351,72998,visual,1261269414 +242351,73017,Atmospheric,1267230819 +242351,73017,fun,1267230832 +242351,73017,Guy Ritchie,1267230807 +242351,73017,Mark Strong,1267230822 +242351,73017,Robert Downey Jr.,1267230813 +242351,73211,character driven,1305838725 +242351,73211,intense,1305838718 +242351,73211,isolation,1305838721 +242351,73211,mystery,1305838750 +242351,73211,simple,1305838776 +242351,73211,Stephen McHattie,1305838710 +242351,73266,Justin Long,1263679984 +242351,73266,Michael Cera,1263679991 +242351,73321,Gary Oldman,1269730789 +242351,73515,William H. Macy,1285009435 +242351,73587,Birol Ãœnel,1268762581 +242351,73587,Moritz Bleibtreu,1268762569 +242351,73587,Wotan Wilke Möhring,1268762571 +242351,73829,Deborah Gibson,1306093612 +242351,73829,sharks,1306093609 +242351,74154,Dax Shepard,1269789165 +242351,74154,Jon Heder,1269789148 +242351,74154,Kristen Bell,1269789152 +242351,74657,Rossif Sutherland,1272149829 +242351,74657,Timothy Olyphant,1272149833 +242351,74685,Timothy Olyphant,1269204945 +242351,74946,Jay Baruchel,1269465993 +242351,74946,Krysten Ritter,1269465990 +242351,74946,T.J. Miller,1269466000 +242351,75805,Jennifer Aniston,1270157372 +242351,75816,episodic,1311538220 +242351,75816,lesbian,1311538193 +242351,75816,sexuality,1311538226 +242351,76060,April Bowlby,1280255030 +242351,76060,Jay Chandrasekhar,1280254997 +242351,76060,Michael Clarke Duncan,1280255035 +242351,76077,Chevy Chase,1286666596 +242351,76077,Clark Duke,1286666578 +242351,76077,John Cusack,1286666580 +242351,76175,3D version,1271548847 +242351,76175,Gemma Arterton,1271548856 +242351,76175,Liam Neeson,1271548837 +242351,76175,Mads Mikkelsen,1271548832 +242351,76175,remake,1271548852 +242351,76175,Sam Worthington,1271548841 +242351,76210,Kat Dennings,1272056362 +242351,76210,Woody Harrelson,1272056341 +242351,76251,Christopher Mintz-Plasse,1272142951 +242351,76251,Hit Girl,1272142947 +242351,76293,funny,1301085279 +242351,76293,James Franco,1301085290 +242351,76293,Kristen Wiig,1301085274 +242351,76293,Mila Kunis,1301085286 +242351,76755,annoying characters,1310497890 +242351,76755,Ellen Page,1310497826 +242351,77421,John C. Reilly,1320272196 +242351,77421,Jonah Hill,1320272193 +242351,77561,Gwyneth Paltrow,1274095502 +242351,77561,Mickey Rourke,1274095469 +242351,77561,Robert Downey Jr.,1274095472 +242351,77561,Sam Rockwell,1274095493 +242351,77561,Scarlett Johansson,1274095500 +242351,77667,Kristen Wiig,1294357056 +242351,77667,parody,1294357356 +242351,77667,Stupid as Hell,1294357351 +242351,77800,controversial,1303641721 +242351,77800,dark comedy,1303641668 +242351,77800,funny,1303642834 +242351,77800,terrorism,1303642841 +242351,78041,Katherine Heigl,1281645865 +242351,78041,Tom Selleck,1281645868 +242351,78105,Gemma Arterton,1293752415 +242351,78105,Jake Gyllenhaal,1293752421 +242351,78209,Jonah Hill,1293385265 +242351,78209,Russell Brand,1293385260 +242351,78209,Sean Combs,1293385285 +242351,78469,Jessica Biel,1308827016 +242351,78469,Liam Neeson,1308827018 +242351,78574,cinematography,1310892313 +242351,78574,drama,1310892321 +242351,78574,thriller,1310892238 +242351,78574,white trash,1310892345 +242351,79057,Adrien Brody,1280057102 +242351,79057,Danny Trejo,1280057106 +242351,79057,Topher Grace,1280057118 +242351,79091,3D,1287046114 +242351,79132,action,1281303958 +242351,79132,Cillian Murphy,1281303921 +242351,79132,Ellen Page,1281303878 +242351,79132,Leonardo DiCaprio,1281303875 +242351,79132,mindfuck,1281303880 +242351,79185,Cameron Diaz,1280525581 +242351,79185,Tom Cruise,1280525577 +242351,79242,Julianne Moore,1292883322 +242351,79242,lesbian,1292883319 +242351,79293,Angelina Jolie,1282424418 +242351,79357,chaos,1303052826 +242351,79357,confusing,1303052820 +242351,79357,Sarah Polley,1303052927 +242351,79357,surreal,1303052789 +242351,79592,Dwayne Johnson,1287640331 +242351,79592,Eva Mendes,1287432876 +242351,79592,Mark Wahlberg,1287432859 +242351,79592,Michael Keaton,1287432885 +242351,79592,Samuel L Jackson,1287640317 +242351,79592,Steve Coogan,1287432852 +242351,79592,subtle humor,1287432830 +242351,79592,Will Ferrell,1287432805 +242351,79684,Emma Stone,1294087760 +242351,79684,Jeff Daniels,1294087763 +242351,79695,Arnold Schwarzenegger,1283632714 +242351,79695,Bruce Willis,1283632743 +242351,79695,Jason Statham,1283632721 +242351,79695,Mickey Rourke,1283632732 +242351,79695,Sylvester Stallone,1283632738 +242351,79702,funny,1288997175 +242351,79702,geeky,1288997170 +242351,79702,Mary Elizabeth Winstead,1288997150 +242351,79702,Michael Cera,1288997153 +242351,79702,music,1288997178 +242351,79879,Jerry O'Connell,1287640163 +242351,79879,Jessica Szohr,1287640206 +242351,79879,Kelly Brook,1287640209 +242351,79879,Riley Steele,1287640240 +242351,79879,Steven R. McQueen,1287640201 +242351,79884,Christian Ulmen,1308548816 +242351,79884,Nora Tschirner,1308548812 +242351,80219,boobies guns and blood!,1289684802 +242351,80219,Danny Trejo,1289684791 +242351,80219,Jessica Alba,1289684796 +242351,80219,Michelle Rodriguez,1289684787 +242351,80219,Robert Rodriguez,1289685131 +242351,80354,Christian Ulmen,1325663857 +242351,80354,episodic,1325663879 +242351,80354,Justus von Dohnanyi,1325664008 +242351,80354,Til Schweiger,1325663847 +242351,80354,Wotan Wilke Möhring,1325663863 +242351,80363,Milla Jovovich,1285488704 +242351,80549,Emma Stone,1290026424 +242351,80549,funny dialogues,1290026511 +242351,80549,high school,1290026427 +242351,80549,scheme,1290026523 +242351,80549,sexuality,1290026529 +242351,80693,coming of age,1303725381 +242351,80693,Emma Roberts,1303725331 +242351,80693,Zach Galifianakis,1303725305 +242351,80775,romantic comedy,1297626902 +242351,80858,Kristen Bell,1303847900 +242351,80858,looks like Megan Fox,1303847942 +242351,80858,Odette Yustman,1303847932 +242351,80858,predictable,1303847906 +242351,80860,Josh Duhamel,1319141730 +242351,80860,Katherine Heigl,1319141703 +242351,80860,predictable,1319141734 +242351,80864,drama,1303744134 +242351,80864,Naomi Watts,1303744143 +242351,80864,not funny,1303744129 +242351,81229,John Malkovich,1288645806 +242351,81537,Robert Downey Jr.,1290899942 +242351,81537,Zach Galifianakis,1290899953 +242351,81591,atmospheric,1294571717 +242351,81591,ballet,1294518782 +242351,81591,lesbians,1294519037 +242351,81591,madness,1294518778 +242351,81591,overrated,1294518839 +242351,81784,annoying characters,1298843167 +242351,81804,Bill Nighty,1294095530 +242351,81804,british,1294095567 +242351,81804,Emily Blunt,1294095484 +242351,81804,Rupert Grint,1294095540 +242351,82150,buddy movie,1304706682 +242351,82150,funny,1304706686 +242351,82150,surreal,1304706668 +242351,82167,Anne Hathaway,1297547804 +242351,82167,female nudity,1297547862 +242351,82167,Jake Gyllenhaal,1297547812 +242351,82242,not just comedy,1297626667 +242351,82242,story,1297626690 +242351,82360,german movie,1292313487 +242351,82360,Michael Fuith,1292311642 +242351,82360,zombie,1292311782 +242351,82459,Coen Brothers,1294157544 +242351,82459,dark,1294157581 +242351,82459,Jeff Bridges,1294157542 +242351,82461,3D,1296341147 +242351,82461,action choreography,1296341151 +242351,82461,bad plot,1296719058 +242351,82461,Beau Garrett,1296812501 +242351,82461,Jeff Bridges,1296341133 +242351,82461,Michael Sheen,1296812509 +242351,82461,Olivia Wilde,1296343026 +242351,82461,soundtrack,1296341123 +242351,82461,visual,1296341314 +242351,82701,Armin Rohde,1293007926 +242351,82701,Christiane Paul,1293007833 +242351,82701,Jürgen Vogel,1293007826 +242351,82701,Rick Kavanian,1293007940 +242351,82703,dark,1293008370 +242351,82703,german genre movie,1318427817 +242351,82703,Jennifer Ulrich,1293008431 +242351,82703,Nina Hoss,1293008310 +242351,82703,vampire,1293008337 +242351,82726,Berlin,1293108345 +242351,82726,black and white,1293108335 +242351,82726,black comedy,1293108328 +242351,82726,Robert Stadlober,1293108318 +242351,82744,Billy Bob Thornton,1306614373 +242351,82744,characters,1306614454 +242351,82744,Dwayne Johnson,1306614369 +242351,82744,nonlinear,1306614411 +242351,82772,Nadeshda Brennicke,1293273612 +242351,82852,Barbara Streisand,1301902438 +242351,82852,Ben Stiller,1293750199 +242351,82852,Dustin Hoffman,1293750226 +242351,82852,Jessica Alba,1293750249 +242351,82852,Owen Wilson,1293750209 +242351,82852,Robert De Niro,1293750194 +242351,82928,B-movie,1303495653 +242351,82928,bad acting,1303495643 +242351,82928,cruel,1303495592 +242351,82928,Nudity (Full Frontal),1303495630 +242351,82928,story,1303495610 +242351,82928,ugly woman,1303495674 +242351,83134,Alan Tudyk,1303796368 +242351,83134,black comedy,1303796385 +242351,83134,funny,1303796375 +242351,83134,predictable,1332009125 +242351,83134,story,1303796377 +242351,83186,spaghetti western,1309093697 +242351,83186,Tomas Milian,1309093705 +242351,83186,unpredictable,1309093691 +242351,83258,accent,1294226337 +242351,83258,funny,1294226327 +242351,83258,Josef Hader,1294226274 +242351,83258,Karlheinz Hackl,1294226375 +242351,83258,Moritz Bleibtreu,1294226258 +242351,83258,Nadeshda Brennicke,1294226265 +242351,83258,Paulus Manker,1294226436 +242351,83258,Roland Düringer,1294226288 +242351,83260,Wotan Wilke Möhring,1294226733 +242351,83281,Antoine Monot Jr.,1294327714 +242351,83281,Wotan Wilke Möhring,1294327683 +242351,83349,Cameron Diaz,1295129245 +242351,83349,Christoph Waltz,1295129210 +242351,83349,gadgets,1295129351 +242351,83349,parody,1295129230 +242351,83349,Seth Rogen,1295129896 +242351,83374,cinematography,1392469242 +242351,83374,poor acting,1392469253 +242351,83374,stylized,1392469246 +242351,83652,Jürgen Vogel,1295602365 +242351,84015,ending,1313347810 +242351,84015,Jürgen Vogel,1313347799 +242351,84374,cast,1350281113 +242351,84374,chick flick,1350280641 +242351,84374,Ludacris,1350280636 +242351,84374,predictable,1350281090 +242351,84772,Atheism,1304054009 +242351,84772,Bill Hader,1304054054 +242351,84772,geeky,1304054043 +242351,84772,german dubbing,1304054105 +242351,84772,Jane Lynch,1304054036 +242351,84772,Kristen Wiig,1304054027 +242351,84944,adult humor,1299741783 +242351,84944,spaghetti western,1299741764 +242351,85020,Jason Statham,1302352118 +242351,85020,no depth,1302352149 +242351,85022,Farrelly Brothers,1300614884 +242351,85022,funny,1300614958 +242351,85022,Nicky Whelan,1300614945 +242351,85022,Owen Wilson,1300614889 +242351,85056,mystery,1303485400 +242351,85056,supernatural,1303485337 +242351,85056,Timothy Olyphant,1303485284 +242351,85215,no girl-girl scene,1301254271 +242351,85215,sexy,1301254286 +242351,85215,trash,1301254260 +242351,85401,bitter,1307055078 +242351,85401,cast,1307051367 +242351,85401,Ellen Page,1307051382 +242351,85401,funny,1307051500 +242351,85401,violent,1307051397 +242351,85510,Emily Browning,1301548177 +242351,85510,ending,1301548190 +242351,85510,martial arts,1301548199 +242351,85510,Oscar Isaac,1303113178 +242351,85510,soundtrack,1303037221 +242351,85510,story,1301548182 +242351,85510,Surreal,1303037232 +242351,85510,Zack Snyder,1301548174 +242351,85565,Europe,1303970606 +242351,85565,Felicity Jones,1301386749 +242351,85679,Ralf Richter,1301579110 +242351,85679,Wotan Wilke Möhring,1301579097 +242351,85796,B-movie,1302439192 +242351,85881,Paul Giamatti,1317067497 +242351,85885,ending,1313349027 +242351,85885,erotic,1313348030 +242351,85885,lesbian,1313348009 +242351,85885,tension,1313349049 +242351,86000,funny,1309808916 +242351,86000,quirky,1309808910 +242351,86000,spoof,1309808929 +242351,86028,slow paced,1311622886 +242351,86190,Cate Blanchett,1319398346 +242351,86190,German,1319398378 +242351,86190,Germany,1319398351 +242351,86190,strong female lead,1319398357 +242351,86293,funny,1319227261 +242351,86293,Jennifer Garner,1319227256 +242351,86293,Russell Brand,1319227263 +242351,86332,funny,1304208007 +242351,86332,Kat Dennings,1304207957 +242351,86332,present,1304208001 +242351,86478,Nora Tschirner,1303796203 +242351,86478,sequel,1303796238 +242351,86478,story,1303796212 +242351,86478,Til Schweiger,1303796208 +242351,86513,Kaley Cuoco,1303970323 +242351,86513,Megan Fox,1303970307 +242351,86513,shallow,1303970945 +242351,86513,story,1303970342 +242351,86515,August Diehl,1303970245 +242351,86515,episodic,1303970250 +242351,86544,lesbian,1304065726 +242351,86546,ending,1315750213 +242351,86546,lesbian,1315750185 +242351,86644,Dwayne Johnson,1306307132 +242351,86644,Jordana Brewster,1306307126 +242351,86644,Paul Walker,1306307141 +242351,86644,Vin Diesel,1306307136 +242351,86833,crude humor,1311464440 +242351,86833,flawed characters,1311502645 +242351,86833,Judd Apatow,1311502614 +242351,86833,Kristen Wiig,1311464428 +242351,86833,Maya Rudolph,1311464432 +242351,86833,parody,1311502595 +242351,86833,poop humor,1311503041 +242351,86835,genre mix,1306055653 +242351,86880,Óscar Jaenada,1306735107 +242351,86880,funny,1306735500 +242351,86911,Zach Galifianakis,1307870110 +242351,87063,Jan Josef Liefers,1306306992 +242351,87065,Nadeshda Brennicke,1306308717 +242351,87096,Odette Annable,1312721910 +242351,87192,aliens,1316977981 +242351,87192,British,1316977990 +242351,87232,cameos,1308205704 +242351,87232,jokes,1308205750 +242351,87232,Kevin Bacon,1308205979 +242351,87232,Michael Fassbinder,1308205592 +242351,87232,Oliver Platt,1308206025 +242351,87232,Rose Byrne,1308206012 +242351,87232,story,1308205651 +242351,87232,superhero,1308205600 +242351,87403,Emma Lung,1307603791 +242351,87403,lesbian,1307603764 +242351,87403,Richard Wilson,1307603780 +242351,87403,Robin McLeavy,1307603799 +242351,87403,Teen movie,1307603820 +242351,87405,coming of age,1307604154 +242351,87405,high school,1307604309 +242351,87405,Kat Dennings,1307604100 +242351,87444,episodic,1311510277 +242351,87444,lesbian,1311510280 +242351,87444,sexuality,1311510291 +242351,87444,Timothy Olyphant,1311510306 +242351,87485,Cameron Diaz getting older,1308863965 +242351,87485,Jason Segel,1308863954 +242351,87485,rough humor,1308864026 +242351,87520,Alan Tudyk,1310106856 +242351,87520,childish style,1406235905 +242351,87520,dialogue,1310106876 +242351,87520,effects,1310106866 +242351,87520,franchise,1310106929 +242351,87520,humanlike robots,1406235970 +242351,87520,Rosie Huntington-Whiteley,1310106817 +242351,87520,Shia LaBeouf,1310106764 +242351,87520,story,1310106923 +242351,87529,cast,1319378567 +242351,87529,obscene,1319378589 +242351,87636,comedy,1308549508 +242351,87636,Donald O'Brien,1308549472 +242351,87636,spaghetti western,1308549581 +242351,87636,theme music,1308556671 +242351,87636,Tomas Milian,1308549550 +242351,87683,lesbian,1308640245 +242351,87685,lesbian,1308640462 +242351,87769,Nadeshda Brennicke,1308827206 +242351,87869,black comedy,1315735260 +242351,87869,cast,1315735350 +242351,87869,Jennifer Aniston,1315735272 +242351,87869,R:language,1315735332 +242351,87975,Bruce Campbell,1323067011 +242351,87975,burn notice,1323067003 +242351,87975,cliche,1323067025 +242351,88053,coming of age,1309930640 +242351,88053,friendship,1309930649 +242351,88053,Ralph Kretschmar,1309930621 +242351,88078,free download,1310025505 +242351,88078,minimal budget,1310025499 +242351,88078,post-apocalyptic,1310025520 +242351,88118,ending,1315767503 +242351,88118,quirky,1315767517 +242351,88129,visually appealing,1328079103 +242351,88163,cast,1315643053 +242351,88163,Emma Stone,1315643063 +242351,88163,plot twist,1315643284 +242351,88163,Ryan Gosling,1315643075 +242351,88235,Mark Strong,1316539859 +242351,88335,cast,1311143824 +242351,88405,singing,1317377890 +242351,88405,Woody Harrelson,1317331443 +242351,88672,cast,1328290394 +242351,88672,Zooey Deschanel,1328290934 +242351,88744,James Franco,1313260495 +242351,88744,realistic,1313260486 +242351,88744,story,1313260504 +242351,88746,embarassing scenes,1316376551 +242351,88746,John C. Reilly,1316376497 +242351,88746,not funny,1316414216 +242351,88746,Olivia Crociccia,1316377005 +242351,88746,quirky,1316376513 +242351,88785,funny,1319786152 +242351,88785,Leslie Mann,1319785967 +242351,88785,Olivia Wilde,1319785961 +242351,88785,R:language,1319786007 +242351,88785,R:nudity,1319786026 +242351,88785,Ryan Reynolds,1319785951 +242351,88812,characters,1340220895 +242351,88812,language,1340220925 +242351,88812,story,1340220937 +242351,88837,Jay Baruchel,1315512252 +242351,88925,coming of age,1313389039 +242351,88925,Nora Tschirner,1313389024 +242351,89030,Christopher Mintz-Plasse,1329892413 +242351,89030,Colin Farrell,1329892327 +242351,89030,ending,1329892344 +242351,89170,Sam Rockwell,1318968231 +242351,89190,brutal,1315206959 +242351,89190,Jason Momoa,1315206952 +242351,89305,badly written jokes,1329721525 +242351,89305,not funny,1329721535 +242351,89305,poor acting,1329721489 +242351,89305,unrealistic characters,1329721503 +242351,89745,Chris Evans,1336334829 +242351,89745,joss whedon,1336334813 +242351,89745,Robert Downey Jr.,1336334826 +242351,89745,Scarlett Johansson,1336334817 +242351,89926,Wotan Wilke Möhring,1317102695 +242351,90268,german genre movie,1318426950 +242351,90270,Mads Mikkelsen,1318428012 +242351,90717,Eddie Murphy,1320998548 +242351,90717,Téa Leoni,1320998640 +242351,90888,brutal,1322299108 +242351,90888,Mickey Rourke,1322299091 +242351,90888,stylized,1322299100 +242351,91048,story,1337197364 +242351,91323,Jonah Hill,1332104619 +242351,91323,R,1332104659 +242351,91323,Sam Rockwell,1332104625 +242351,91474,cast,1330127198 +242351,91474,funny,1330127201 +242351,91483,acting,1375001874 +242351,91483,Sylvester Stallone,1375001866 +242351,91485,action,1347492529 +242351,91485,cast,1347492522 +242351,91485,dialogue,1347492538 +242351,91485,jokes,1347492515 +242351,91490,boobs,1323846951 +242351,91490,Horrible acting,1323846957 +242351,91490,made for TV,1323846962 +242351,91490,so bad it's good,1323846948 +242351,91500,shaky camera,1333840522 +242351,91500,Woody Harrelson,1333840530 +242351,91529,Anne Hathaway,1343548849 +242351,91529,dark,1343548828 +242351,91529,intense,1343548840 +242351,91529,Michael Caine,1343548810 +242351,91529,plot twist,1343548820 +242351,91542,choreographic violence,1348572469 +242351,91542,great cinematography,1348572461 +242351,91542,Robert Downey Jr.,1348572458 +242351,91622,Charlize Theron,1342384581 +242351,91622,high school,1342384607 +242351,91622,unfulfilling,1342384593 +242351,91622,weak ending,1342384599 +242351,91630,franchise,1325246895 +242351,91630,Tom Cruise,1325246890 +242351,91658,accent,1332524844 +242351,91658,mystery,1332524772 +242351,91658,remake,1332524753 +242351,91658,serial killer,1332524762 +242351,91784,cast,1324283492 +242351,91784,dialogue,1324283457 +242351,91784,ending,1324283488 +242351,91784,story,1324283483 +242351,91842,cast,1332021280 +242351,91947,black comedy,1329168775 +242351,91972,apocalypse,1334779175 +242351,91972,Madness,1334813400 +242351,91972,story,1334779055 +242351,91974,action,1328392096 +242351,91974,brutal,1328392076 +242351,91974,visually appealing,1328392084 +242351,92106,Main characters,1364809520 +242351,92259,overrated,1411828809 +242351,92259,unlikely friendship,1411828818 +242351,92264,Katherine Heigl,1333199402 +242351,92427,Berlin,1327222967 +242351,92427,Detlev Buck,1327222897 +242351,92427,German,1327222976 +242351,92439,coming of age,1393759652 +242351,92439,depressing,1393759662 +242351,92439,Emma Roberts,1393759655 +242351,93287,Jack Black,1381126094 +242351,93287,not funny,1381126123 +242351,93287,story,1381126115 +242351,93326,funny,1331246810 +242351,93326,Reese Witherspoon,1331247242 +242351,93326,Reese Witherspoons jaw,1331247284 +242351,93363,adapted from:book,1332008857 +242351,93363,steampunk,1332008788 +242351,93443,Jay Baruchel,1332546586 +242351,93443,main character,1332546620 +242351,93510,cameo,1338401167 +242351,93510,high school,1338401174 +242351,93510,Jonah Hill,1338401140 +242351,93512,Jason Segel,1339957101 +242351,93512,relationships,1339957119 +242351,93790,acting,1359971191 +242351,93790,Adrien Brody,1359971169 +242351,93790,Lucy Liu,1359971177 +242351,93805,ending,1333783516 +242351,93805,Nazis,1333783250 +242351,93805,parody,1333783256 +242351,93805,steampunk,1333783267 +242351,93838,brutal,1387671258 +242351,93838,martial arts,1387671263 +242351,93838,shaky camera,1387671266 +242351,93838,thin plot,1387671270 +242351,93838,visually appealing,1387671287 +242351,93840,dark comedy,1347749983 +242351,93840,joss whedon,1347749981 +242351,93840,original,1347749998 +242351,93840,plot twist,1347749990 +242351,93855,ending,1336714132 +242351,93855,social criticism,1336679104 +242351,93855,story,1336679089 +242351,94266,depressing,1343897587 +242351,94266,Emily Blunt,1343897613 +242351,94266,Jason Segal,1343897604 +242351,94777,character based on real person:Andy Warhol,1338877015 +242351,94777,Will Smith,1338877005 +242351,94864,aliens,1344969428 +242351,94864,script,1344969455 +242351,94931,art house,1411828727 +242351,94931,boring,1411828730 +242351,94931,No plot at al,1411828734 +242351,94931,Sarah Polley,1411828735 +242351,94953,awkward,1341741382 +242351,94953,Jennifer Aniston,1341741347 +242351,94953,Ken Marino,1341741353 +242351,94953,Paul Rudd,1341741340 +242351,94959,Bill Murray,1347698127 +242351,94959,Bruce Willis,1347698129 +242351,94959,dialogue,1347698179 +242351,94959,Edward Norton,1347698138 +242351,94959,funny,1347698401 +242351,94959,quirky,1347698155 +242351,94959,stylized,1347698387 +242351,94959,Wes Anderson,1347698143 +242351,95088,social angst,1355256711 +242351,95088,touching,1355256703 +242351,95107,B-movie,1340004702 +242351,95107,classic horror,1340004689 +242351,95107,sound editing,1340004720 +242351,95107,stupid,1340004743 +242351,95441,cast,1346423526 +242351,95441,crude humor,1346423492 +242351,95441,Seth MacFarlane,1346423516 +242351,95510,Emma Stone,1342158850 +242351,95510,family friendly,1342158905 +242351,95510,intense,1342158872 +242351,95510,plot,1342158883 +242351,95814,cast,1342982655 +242351,95814,film noir,1342982673 +242351,95814,Peter Dinklage,1342982664 +242351,95814,Steve Buscemi,1342982680 +242351,96079,beautiful cinematography,1353905463 +242351,96079,Bond girls,1353905562 +242351,96079,dark,1353905538 +242351,96079,Javier Bardem,1353905466 +242351,96110,exaggerated,1392238568 +242351,96110,funny,1392238560 +242351,96110,satire,1392238565 +242351,96110,Will Ferrell,1392238558 +242351,96467,boring,1357468931 +242351,96565,annoying characters,1352273076 +242351,96565,story,1352273090 +242351,96588,musical,1355345413 +242351,96610,Bruce Willis,1351989008 +242351,96610,clever,1351989040 +242351,96610,Joseph Gordon-Levitt,1351989013 +242351,96610,plot holes,1351989031 +242351,96691,bad acting,1355565418 +242351,96691,bad dialogue,1355565416 +242351,96691,stylized,1355565430 +242351,96737,cinematography,1357068111 +242351,96737,Lena Headey,1357068119 +242351,96737,Olivia Thirlby,1357068103 +242351,96737,sci-fi,1357068096 +242351,96737,stylized,1357068114 +242351,96821,atmospheric,1359407202 +242351,96821,awkward situations,1359407177 +242351,96821,coming of age,1359407129 +242351,96821,plot twist,1359439902 +242351,97172,black and white,1359440020 +242351,97172,Tim Burton,1359440004 +242351,97306,Christopher Walken,1355044364 +242351,97306,dark comedy,1355044392 +242351,97306,great cast,1355044385 +242351,97306,Sam Rockwell,1355044376 +242351,97306,Woody Harrelson,1355044368 +242351,97752,atmospheric,1355438405 +242351,97752,esoteric,1355438430 +242351,97752,multiple storylines,1355438408 +242351,97836,Kevin James,1352869662 +242351,97860,Brad Pitt,1364809436 +242351,97860,cinematography,1364809441 +242351,97921,Jennifer Lawrence,1358102053 +242351,97921,Julia Stiles,1358102080 +242351,97921,predictable ending,1358102061 +242351,97950,Lucy Liu,1355134949 +242351,97950,martial arts,1355134973 +242351,97950,story,1355135003 +242351,97950,visually appealing,1355134984 +242351,98809,family movie,1355686001 +242351,98809,fantasy world,1355686008 +242351,99007,funny,1368966136 +242351,99007,romance,1368966117 +242351,99007,unconventional,1368966127 +242351,99112,Action,1357433781 +242351,99112,story,1357433775 +242351,99112,Tom Cruise,1357433758 +242351,99112,without romance,1357468866 +242351,99114,Christoph Waltz,1357490463 +242351,99114,too long,1357490490 +242351,99114,violence,1357490499 +242351,99114,western,1357490502 +242351,99117,dialogue,1357068180 +242351,99117,Leslie Mann,1357068156 +242351,99117,Megan Fox,1357068192 +242351,99117,Paul Rudd,1357068165 +242351,99117,R,1357068173 +242351,99364,coming of age,1356805877 +242351,99364,humor,1356805912 +242351,99726,Jennifer Carpenter,1357849377 +242351,99726,main character is boring,1357849404 +242351,99726,story,1357849612 +242351,99744,cast,1357939079 +242351,99857,film noir,1358410765 +242351,99857,Tom Selleck,1358322905 +242351,99859,film noir,1358410728 +242351,99859,Tom Selleck,1358348467 +242351,99861,film noir,1358410762 +242351,99861,Tom Selleck,1358323556 +242351,99871,film noir,1358410757 +242351,99871,Tom Selleck,1358410430 +242351,99873,film noir,1358410748 +242351,99873,Tom Selleck,1358410570 +242351,99875,film noir,1358410684 +242351,99875,Tom Selleck,1358410676 +242351,99910,Arnold Schwarzenegger,1359971279 +242351,99910,humor,1359971299 +242351,99910,Peter Stormare,1359971320 +242351,99996,ending,1358798608 +242351,99996,Julia Stiles,1358798602 +242351,100083,cast,1359520565 +242351,100083,embarassing scenes,1359520622 +242351,100083,episodic,1359520590 +242351,100083,R language,1359520607 +242351,100163,Germany,1363534693 +242351,100163,Jeremy Renner,1363534687 +242351,100244,Ellen Page,1380483764 +242351,100326,cast,1360527155 +242351,100326,Christopher Walken,1360527152 +242351,100326,ending,1360527162 +242351,100326,melancholy,1360527143 +242351,100383,twist ending,1370842369 +242351,100498,Bruce Willis,1361104049 +242351,100498,dialogue,1361104060 +242351,100498,franchise,1361104088 +242351,100843,Berlin,1361826159 +242351,100843,black and white,1361826144 +242351,100843,coming of age,1361826137 +242351,100843,dialogue,1361826152 +242351,100843,funny,1361863484 +242351,100843,Tom Schilling,1361826172 +242351,101072,humor,1362266490 +242351,101076,Bruce Willis,1365287867 +242351,101076,dialogue,1365287874 +242351,101076,Ray Stevenson,1365287862 +242351,101079,lesbian,1388338521 +242351,101079,romance,1388338542 +242351,101088,insubstantial,1370582353 +242351,101088,stylish,1370582346 +242351,101415,coming of age,1366403236 +242351,101415,emotional,1366403260 +242351,101415,ending,1366403243 +242351,101612,boring,1372747403 +242351,101612,plot twist,1372747387 +242351,101739,remake,1369438051 +242351,101973,episodic,1378707525 +242351,101973,online relationships,1378707557 +242351,102033,comedy,1376773482 +242351,102033,Dwayne Johnson,1376773485 +242351,102033,Mark Wahlberg,1376773500 +242351,102070,humor,1366615311 +242351,102123,cast,1377118966 +242351,102123,dialogue,1377118990 +242351,102123,story,1377118995 +242351,102125,Ben Kingsley,1369004716 +242351,102125,funny,1369004723 +242351,102378,Amber Heard,1376135283 +242351,102378,ending,1376135295 +242351,102378,Shiloh Fernandez,1376135351 +242351,102481,awkward situations,1381126176 +242351,102481,cast,1381126203 +242351,102481,Will Ferrell,1381126162 +242351,102716,action,1371533774 +242351,102716,dialogue,1371533771 +242351,102800,black-and-white,1383559637 +242351,102800,embarassing scenes,1383559907 +242351,102807,characters,1411828626 +242351,102807,funny,1411828612 +242351,102807,Jasna Fritzi Bauer,1429341752 +242351,102807,song,1411828630 +242351,102807,story,1411828615 +242351,102903,illusions,1378444003 +242351,102903,Jesse Eisenberg,1378444014 +242351,102903,Mélanie Laurent,1378462312 +242351,102903,Woody Harrelson,1378443993 +242351,103042,visually appealing,1371975133 +242351,103042,worst superhero,1371975121 +242351,103042,Zack Snyder,1371975095 +242351,103164,cast,1412342303 +242351,103164,characters,1412342300 +242351,103164,funny,1412342288 +242351,103164,story,1412342283 +242351,103228,fun,1374365410 +242351,103228,visually appealing,1374365380 +242351,103235,ending,1373919737 +242351,103235,story,1373919747 +242351,103286,cast,1372003749 +242351,103286,humor,1372003774 +242351,103286,quirky,1372003745 +242351,103286,Tom Schilling,1372003768 +242351,103335,colorful,1375819847 +242351,103335,humour,1375819885 +242351,103384,crude humor,1384616868 +242351,103384,Johnny Depp,1384616825 +242351,103384,Ruth Wilson,1384616844 +242351,103384,William Fichtner,1384616834 +242351,103506,story,1373271684 +242351,103543,coming of age,1376255170 +242351,103543,Kristen Bell,1376255163 +242351,103596,B-movie,1373825071 +242351,103596,trash,1373825078 +242351,103772,eastern,1374883405 +242351,103772,Japan,1374883378 +242351,103772,martial arts,1374883388 +242351,103772,superhero,1374883534 +242351,103810,funny,1384764505 +242351,103810,John Malkovich,1384764555 +242351,103810,Mary-Louise Parker,1384764527 +242351,103819,humor,1375213557 +242351,103819,story,1375213587 +242351,103836,annoying characters,1375078798 +242351,103836,black and white,1375078789 +242351,103836,story,1375078806 +242351,103982,documentary style,1375603664 +242351,103982,Nazi Germany,1375603631 +242351,104019,quirky,1375788796 +242351,104211,Emma Roberts,1378067222 +242351,104211,witty,1378067227 +242351,104241,brutality,1378067191 +242351,104241,Chloe Moretz,1378067171 +242351,104457,illogical,1411828320 +242351,104457,old school horror,1411828316 +242351,104457,smart,1411828330 +242351,104457,twist,1411828341 +242351,104457,violent,1411828333 +242351,104604,coming of age,1378067587 +242351,104841,pathos,1381126030 +242351,104841,space,1381126060 +242351,104841,visually appealing,1381125907 +242351,104908,story,1381821180 +242351,105037,Bill Hader,1383559572 +242351,105355,lesbian,1415568065 +242351,105355,nudity (full frontal),1415568073 +242351,105355,visually appealing,1415568076 +242351,105585,ensemble cast,1387537832 +242351,105585,parody,1387537852 +242351,105593,surreal,1390609406 +242351,105653,Arnold Schwarzenegger,1398184851 +242351,105653,Sylvester Stallone,1398184793 +242351,106072,blockbuster,1383560077 +242351,106072,humorous,1383560088 +242351,106072,Idris Elba,1383560157 +242351,106072,Jaimie Alexander,1383560140 +242351,106072,quirky,1383560100 +242351,106487,romance,1385855623 +242351,106487,Woody Harrelson,1385855636 +242351,106489,double frame rate,1387126911 +242351,106491,ending,1396944093 +242351,106491,fantasy,1396813012 +242351,106491,genre mix,1396813052 +242351,106491,martial arts,1396813034 +242351,106491,visually appealing,1396813025 +242351,106766,boring,1392569898 +242351,106766,folk music,1392569882 +242351,106920,bittersweet,1392238499 +242351,106920,philosophical,1392238523 +242351,106920,quirky,1392238529 +242351,106920,Scarlett Johansson,1392238502 +242351,107338,humor,1387494184 +242351,107338,Nadeshda Brennicke,1387494157 +242351,107406,Chris Evans,1398964732 +242351,107406,dystopia,1398964769 +242351,107406,story,1398964760 +242351,107447,quirky,1387920240 +242351,107565,Alwara Höfels,1388357915 +242351,107565,Katja Riemann,1388357921 +242351,107565,slapstick humor,1388357934 +242351,107771,atmospheric,1392569945 +242351,107771,idea,1392570039 +242351,107771,Jim Jarmusch,1392569924 +242351,107771,story,1392569983 +242351,107771,vampires,1392570023 +242351,108246,cameos,1390137673 +242351,108246,cast,1390137693 +242351,108246,Peter Thorwarth,1390137663 +242351,108246,Ralf Richter,1390137684 +242351,108945,Special Effects,1396779648 +242351,108949,cast,1393013792 +242351,108949,heist,1393013797 +242351,108949,Jay Baruchel,1393013831 +242351,109042,cast,1392238418 +242351,109042,Peter Dinklage,1392238444 +242351,109042,Summer Glau,1392238424 +242351,109317,buddy movie,1392841238 +242351,109317,humor,1392841222 +242351,109317,predictable,1392841334 +242351,109374,Edward Norton,1395487180 +242351,109374,funny,1395487223 +242351,109374,quirky,1395487162 +242351,109374,visually appealing,1395487169 +242351,109374,Willem Dafoe,1395487212 +242351,109578,thrilling,1396944054 +242351,109673,nudity (topless),1394959189 +242351,109673,sequel with nothing new,1394959195 +242351,109673,story,1394959224 +242351,109673,visually stunning,1394959214 +242351,109848,boring,1403726411 +242351,109848,nudity (full frontal),1403726429 +242351,109848,Scarlett Johansson,1403726406 +242351,109848,story,1403726414 +242351,109850,Aaron Paul,1411828203 +242351,109850,action,1411828278 +242351,109850,crappy american cars,1411828259 +242351,109850,Imogen Poots,1411828237 +242351,109850,video game adaptation,1411828265 +242351,109864,cast,1395003785 +242351,109864,fun,1395003777 +242351,109864,witty dialogue,1395003782 +242351,110042,Alwara HÃ?¶fels,1395589902 +242351,110102,Chris Evans,1396173881 +242351,110102,Marvel Cinematic Universe,1396173896 +242351,110102,Scarlett Johansson,1396173890 +242351,110553,3D,1398184929 +242351,110553,action,1398184938 +242351,110553,dialogue,1398184920 +242351,110553,story,1398184950 +242351,110611,80s,1420552640 +242351,110611,Jim Mickle,1420552631 +242351,110611,Michael C. Hall,1420552628 +242351,110671,cast,1398185086 +242351,110671,story,1398185094 +242351,110675,story,1429341503 +242351,110809,vampires,1398626567 +242351,110809,Zoey Deutch,1398626524 +242351,111113,college,1411828417 +242351,111113,crude humor,1411828410 +242351,111113,not funny,1411828400 +242351,111113,well cast,1411828405 +242351,111360,Scarlett Johansson,1411828482 +242351,111360,story,1411828487 +242351,111362,Michael Fassbender,1401625077 +242351,111362,time travel,1401625095 +242351,111364,Monster,1401625137 +242351,111364,not enough monster action,1401625160 +242351,111364,special effects,1401625135 +242351,111375,Elisabet,1404672352 +242351,111375,Gillian Jacobs,1404672393 +242351,111443,Jon Favreau,1411827764 +242351,111443,latin music,1411827770 +242351,111443,not funny,1411827759 +242351,111601,Alwara HÃ?¶fels,1400874864 +242351,111601,Alware Höfels,1400874872 +242351,111601,Swabian,1400874889 +242351,111624,coming of age,1420552786 +242351,111624,Juliette Lewis,1420552787 +242351,111624,Punk,1420552789 +242351,111663,ending,1414886900 +242351,111663,funny,1414886885 +242351,111663,puppets,1414886891 +242351,111663,Rachel Melvin,1414886881 +242351,111663,sexy girls,1414886922 +242351,111759,aliens,1401625327 +242351,111759,Emily Blunt,1401625306 +242351,111759,time loop,1401625321 +242351,111759,Tom Cruise,1401625315 +242351,112171,Chloë Grace Moretz,1415689822 +242351,112171,Denzel Washington,1415689849 +242351,112171,revenge,1415689962 +242351,112171,violent,1415689840 +242351,112171,visually appealing,1415689930 +242351,112370,humanlike robots,1406235985 +242351,112370,Mark Wahlberg,1406236023 +242351,112370,Stanley Tucci,1406236005 +242351,112370,Too Long,1406236008 +242351,112515,mystery,1417387636 +242351,112852,characters with individual goals,1417387679 +242351,112852,fun,1417387690 +242351,112911,action,1411828012 +242351,112911,deceptive trailers,1411828017 +242351,112911,Dwayne Johnson,1411827984 +242351,112911,interesting concept,1411828001 +242351,112946,cast,1420552278 +242351,112946,religion,1420552266 +242351,113378,Jeff Bridges,1411827893 +242351,113378,Meryl Streep,1411827890 +242351,113378,plot makes no sense,1411827909 +242351,113453,overacting,1417387485 +242351,113453,story,1417387495 +242351,113573,comic book,1411827477 +242351,113573,dark humor,1411827390 +242351,113573,dialogue,1411827431 +242351,113573,Eva Green,1411827387 +242351,113573,Frank Miller,1411827392 +242351,113573,Jessica Alba,1411827395 +242351,113573,monologue,1411827428 +242351,113573,multiple storylines,1411827458 +242351,113573,stylized,1411827379 +242351,113573,violence,1411827382 +242351,114044,boring,1411827960 +242351,114044,Rose Leslie,1411827940 +242351,114074,Bill Hader,1417640128 +242351,114074,Kristen Wiig,1417640131 +242351,114074,siblings,1417640133 +242351,114180,plot holes,1418425009 +242351,114180,story,1418425023 +242351,114242,B-movie,1411828458 +242351,114265,cast,1420559464 +242351,114265,Chloë Grace Moretz,1420559461 +242351,114265,coming of age,1420559465 +242351,114265,Keira Knightley,1420559462 +242351,114265,Sam Rockwell,1420559459 +242351,114492,rude,1411827304 +242351,114494,Elyas M'Barek,1411827732 +242351,114494,German,1411827707 +242351,114494,hackers,1411827657 +242351,114494,no product placement,1411827677 +242351,114494,story,1411827690 +242351,114494,Tom Schilling,1411827646 +242351,114494,twists & turns,1411827702 +242351,114494,Wotan Wilke Möhring,1411827640 +242351,114497,different,1411828160 +242351,114601,coming of age,1417466821 +242351,114601,Jason Bateman,1417466824 +242351,114601,Rose Bryne,1417466822 +242351,114818,Jessica Alba,1420552701 +242351,114818,story,1420552700 +242351,114818,twists,1420552703 +242351,115122,humor,1418425180 +242351,115122,mockumentary,1418425161 +242351,115149,cool,1421789562 +242351,115149,Hitman,1421789599 +242351,115149,Keanu Reeves,1421789531 +242351,115149,story,1421789566 +242351,115149,stylish,1421789560 +242351,115149,violent,1421789563 +242351,115149,Willem Dafoe,1421789595 +242351,115216,atmospheric,1422738811 +242351,115216,brutal,1422738808 +242351,115216,Eva Green,1422738812 +242351,115216,Mads Mikkelsen,1422738813 +242351,115216,western,1422738809 +242351,115231,Asshole with a heart of gold,1420552728 +242351,115231,Bill Murray,1420552730 +242351,115231,Naomi Watts,1420552742 +242351,115617,japanese influence,1429341923 +242351,115770,coming of age,1417387421 +242351,115770,melancholie,1417387420 +242351,115828,main character,1429341856 +242351,115828,nudity (topless),1429341864 +242351,116397,Kate Beckinsale,1429341129 +242351,116413,ending,1415566953 +242351,116413,Gillian Jacobs,1415566939 +242351,116415,intense,1415567042 +242351,116415,lesbian relationship,1415567035 +242351,117889,coming of age,1417387585 +242351,118970,gangster posse,1420552381 +242351,118970,Vinnie Jones,1420552358 +242351,119141,overacting,1420552312 +242351,119141,satire,1420552318 +242351,119141,Seth Rogen,1420552323 +242351,119145,fighting choreografy,1429341278 +242351,119948,Amy Acker,1420552494 +242351,120392,alternate reality,1420552048 +242351,120392,annoying characters,1420552074 +242351,121011,coming of age,1420552559 +242351,121011,plot twist,1420552568 +242351,121169,cinematography,1430065897 +242351,121169,old woman,1430065867 +242351,126599,comedy,1429342166 +242351,126599,Multiple Stories,1429342424 +242351,126599,"sex, love, relationships",1429342394 +242351,127088,Kat Dennings,1429342069 +242351,129781,cast,1429341801 +242351,129781,coming of age,1429341812 +242351,132448,dysfunctinal genius,1429341425 +242351,132448,romance,1429341467 +242351,132448,unsurprising,1429341454 +242351,132450,Drama,1429341696 +242351,132450,Jasna Fritzi Bauer,1429341688 +242351,132450,Jasni Fritzi Bauer,1429341637 +242351,132452,Markus Imboden,1429341971 +242351,132454,cast,1429342027 +242351,132454,lesbian,1429342019 +242357,102720,animation,1429324922 +242357,102720,life,1429324922 +242357,102720,nature,1429324922 +242357,119655,epic,1433121811 +242357,119655,fantasy,1433121811 +242357,119655,witches,1433121811 +242357,130490,action,1430524061 +242357,130490,fictional world,1430524061 +242357,130490,survival,1430524061 +242361,60289,feel-good,1427301139 +242361,60289,great depression,1427301139 +242361,60289,young girls,1427301139 +242368,3637,nonlinear,1290608294 +242387,4995,Oscar Winner,1433431450 +242387,106696,Disney,1433431886 +242387,117887,family,1433431561 +242404,2959,complicated,1448704291 +242404,2959,mental illness,1448704269 +242404,2959,mindfuck,1448704261 +242404,2959,philosophy,1448704265 +242404,2959,psychological,1448704281 +242404,2959,social commentary,1448704278 +242404,2959,thought-provoking,1448704273 +242408,109673,nudity (topless),1401283108 +242408,109673,story,1401283105 +242408,109673,subgenre:sword and sandal,1401283119 +242408,109673,visually stunning,1401283096 +242429,26386,Mel Brooks,1148230421 +242499,64575,Phillip Seymore Hoffman,1265750720 +242500,509,gripping,1154230448 +242500,509,intense,1154230448 +242537,296,Quentin Tarantino,1225470003 +242537,87222,3d,1307178590 +242537,87222,animation,1307178527 +242580,3088,delights,1183894505 +242588,2571,action,1438375504 +242588,2571,sci-fi,1438375504 +242588,2571,theone,1438375504 +242597,72733,history,1426047282 +242597,72733,motivation,1426047282 +242597,72733,social harmony,1426047282 +242605,3996,kung fu,1442710295 +242605,7438,cool fighting,1442709779 +242605,31878,kung fu,1442709897 +242625,5971,feel good movie,1441268569 +242625,5971,great soundtrack,1441268566 +242625,5971,Hayao Miyazaki,1441268575 +242625,5971,Studio Ghibli,1441268559 +242625,134853,Animation,1441268531 +242682,39,chick flick,1338015520 +242682,39,funny,1338015528 +242682,39,high school,1338015524 +242682,39,Paul Rudd,1338015515 +242682,39,seen more than once,1338015531 +242682,1175,Black comedy,1338016330 +242682,1175,cannibalism,1338016320 +242682,1175,dark humor,1338016322 +242682,1175,Post apocalyptic,1338016326 +242682,1175,post-apocalyptic,1338016324 +242682,2125,chick flick,1338012521 +242682,2125,fairy tale,1338012519 +242682,2125,love story,1338012527 +242682,2125,romance,1338012524 +242682,4823,Good Romantic Comedies,1338012376 +242682,27706,based on a book,1338013056 +242682,27706,book was better,1338013059 +242682,27706,irreverent,1338013063 +242682,49286,England,1338012420 +242682,49286,Jude Law,1338012422 +242682,49286,Romance,1338012426 +242682,49286,romantic comedy,1338012424 +242682,54004,Jessica Biel,1338012883 +242682,54276,Abigail Breslin,1338012587 +242682,54276,Catherine Zeta-Jones,1338012585 +242682,58154,england,1338012345 +242682,58154,Eric Bana,1338012340 +242682,58154,historical,1338012337 +242682,58154,Natalie Portman,1338012334 +242682,58154,royalty,1338012348 +242682,60069,Animation,1338011794 +242682,60069,dystopia,1338011797 +242682,60069,great soundtrack,1338011819 +242682,60069,pixar,1338011801 +242682,60069,quirky,1338011812 +242682,60069,romance,1338011806 +242682,60069,social commentary,1338011808 +242682,60069,space,1338011810 +242682,60684,gore,1338014510 +242682,60684,violence,1338014506 +242682,64969,Zooey Deschanel,1338012758 +242682,66203,chick flick,1338012089 +242682,66203,happy ending,1338012092 +242682,66203,Justin Long,1338012096 +242682,66203,romantic comedy,1338012100 +242682,66203,Scarlett Johansson,1338012098 +242682,69757,artistic,1338011511 +242682,69757,chick flick,1338011513 +242682,69757,cute,1338011517 +242682,69757,Joseph Gordon-Levitt,1338011529 +242682,69757,Zooey Deschanel,1338011509 +242682,69951,Heath Ledger,1338012486 +242682,69951,Johnny Depp,1338012490 +242682,69951,Jude Law,1338012492 +242682,70183,cute,1338012156 +242682,70183,good chick flick,1338012161 +242682,70183,Katherine Heigl,1338012165 +242682,71579,BBC Films,1338106965 +242682,71579,Carey Mulligan,1338106977 +242682,71579,coming of age,1338106951 +242682,71619,Audrey Tautou,1338015576 +242682,71619,fashion,1338015574 +242682,72226,based on a book,1338013297 +242682,72226,George Clooney,1338013304 +242682,72226,Meryl Streep,1338013306 +242682,72226,Roald Dahl,1338013302 +242682,72228,biography,1338014910 +242682,72228,evolution,1338014908 +242682,72228,true story,1338014914 +242682,81591,dance,1338012280 +242682,81591,dark,1338012263 +242682,81591,gruesome,1338012278 +242682,81591,horror,1338012272 +242682,81591,insanity,1338012276 +242682,81591,Natalie Portman,1338012268 +242682,81591,Oscar (Best Actress),1338012262 +242682,81591,surreal,1338012256 +242682,81591,thriller,1338012259 +242682,82167,Anne Hathaway,1338013237 +242682,82167,Jake Gyllenhaal,1338013234 +242682,86882,bittersweet,1338011702 +242682,86882,Owen Wilson,1338011705 +242682,86882,Paris,1338011707 +242682,86882,quirky,1338011709 +242682,86882,relationships,1338011711 +242682,86882,romance,1338011712 +242682,86882,thought-provoking,1338011714 +242682,86882,time travel,1338011716 +242682,86882,writers,1338011717 +242682,88405,clever dialogue,1338012198 +242682,88405,happy ending,1338012204 +242682,88405,Mila Kunis,1338012207 +242682,88405,sex,1338012213 +242682,89864,Anna Kendrick,1338011579 +242682,89864,cancer,1338011581 +242682,89864,comedy,1338011598 +242682,89864,current,1338011594 +242682,89864,emotional,1338011600 +242682,89864,funny scenes,1338011590 +242682,89864,Joseph Gordon-Levitt,1338011569 +242682,89864,predictable,1338011577 +242682,89864,touching,1338011584 +242682,89904,1920s,1338011639 +242682,89904,dogs,1338011641 +242682,89904,drama,1338011649 +242682,89904,original,1338011651 +242682,89904,Oscar (Best Picture),1338011654 +242682,89904,Oscar nom,1338011658 +242682,89904,romance,1338011660 +242682,89904,silent movie,1338011666 +242682,89904,visually appealing,1338011667 +242682,91077,based on a book,1338011477 +242682,91077,Best Adapted Screenplay,1338011481 +242682,91077,cheating wife,1338011483 +242682,91077,coma,1338011486 +242682,91077,family bonds,1338011491 +242682,92509,Channing Tatum,1338015942 +242682,92509,Rachel McAdams,1338015945 +242682,92509,romance,1338015949 +242704,172,Keanu Reeves,1230581864 +242704,4571,Keanu Reeves,1230582270 +242704,6365,Keanu Reeves,1230581880 +242704,62081,shia labeouf,1230573667 +242704,64497,apocolyptic,1230575639 +242762,260,futuristic,1443696055 +242762,260,space,1443696043 +242773,8128,WWII,1229394221 +242783,8448,buddy movie,1434148406 +242783,8448,comedy,1434148406 +242783,8448,father son relationship,1434148406 +242783,108285,gripping,1422971191 +242783,108285,hostages,1422971191 +242783,108285,terrorists,1422971191 +242783,117533,nsa,1443780006 +242783,117533,privacy,1443780033 +242783,117533,scandal,1443780053 +242783,117533,technologies,1443780041 +242783,117533,tracking,1443780048 +242788,3034,classic,1312324676 +242788,3034,Disney,1312324673 +242788,3034,medieval,1312324671 +242788,3034,Robin Hood,1312324680 +242788,3034,talking animals,1312324683 +242791,134130,scientific,1446631538 +242791,134130,Space,1446631530 +242791,134130,space program,1446631544 +242791,134130,space travel,1446631545 +242791,134130,Survival Instinct,1446631528 +242823,778,addiction,1442821465 +242823,778,AIDS,1442821131 +242823,778,black comedy,1442821127 +242823,778,crime,1442821138 +242823,778,dark comedy,1442821122 +242823,778,drug abuse,1442821136 +242823,778,drugs,1442821125 +242823,778,heroin,1442821140 +242823,778,violence,1442821132 +242823,778,violent,1442821135 +242823,1213,crime,1442822022 +242823,1213,dark comedy,1442822009 +242823,1213,disturbing,1442822016 +242823,1213,gangsters,1442822018 +242823,1213,mafia,1442822003 +242823,1213,Martin Scorsese,1442822005 +242823,1213,masterpiece,1442822024 +242823,1213,organized crime,1442822025 +242823,1213,violence,1442822007 +242823,1213,violent,1442822015 +242823,2318,black comedy,1442821742 +242823,2318,dark,1442821737 +242823,2318,dark comedy,1442821733 +242823,2318,dark humor,1442821731 +242823,2318,Todd Solondz,1442821729 +242823,2700,adult humor,1442821896 +242823,2700,controversial,1442821891 +242823,2700,crude humor,1442821894 +242823,2700,free speech,1442821893 +242823,2700,funny,1442821889 +242823,2700,satire,1442821880 +242823,2700,satirical,1442821887 +242823,2700,south park,1442821886 +242823,2700,Trey Parker,1442821884 +242823,2959,dark comedy,1442821012 +242823,2959,mindfuck,1442821022 +242823,2959,satirical,1442821020 +242823,2959,violence,1442821006 +242823,2959,violent,1442821016 +242823,2997,black comedy,1442821439 +242823,2997,cult film,1442821203 +242823,2997,dark comedy,1442821188 +242823,2997,hallucinatory,1442821209 +242823,2997,mindfuck,1442821195 +242823,2997,original,1442821451 +242823,2997,quirky,1442821200 +242823,2997,satirical,1442821443 +242823,2997,surreal,1442821433 +242823,3476,insanity,1442821571 +242823,3476,mental illness,1442821569 +242823,3476,occult,1442821565 +242823,3476,surreal,1442821574 +242823,3863,gore,1442821298 +242823,3863,horror,1442821297 +242823,3863,serial killer,1442821291 +242823,3863,surreal,1442821289 +242823,4262,cocaine,1442821796 +242823,4262,drug abuse,1442821794 +242823,4262,drugs,1442821778 +242823,4262,gangster,1442821782 +242823,4262,gangsters,1442821789 +242823,4262,mafia,1442821776 +242823,4262,organized crime,1442821775 +242823,4262,violence,1442821791 +242823,4262,violent,1442821785 +242823,4725,creepy,1442821328 +242823,4725,dark,1442821338 +242823,4725,horror,1442821325 +242823,4725,mental hospital,1442821327 +242823,4725,psychology,1442821330 +242823,6214,brutal,1442821622 +242823,6214,brutality,1442820917 +242823,6214,controversial,1442821633 +242823,6214,disturbing,1442820914 +242823,6214,graphic violence,1442820912 +242823,6214,mindfuck,1442820920 +242823,6214,rape,1442820908 +242823,6502,epidemic,1442821705 +242823,6502,infection,1442821710 +242823,6502,post-apocalyptic,1442821699 +242823,6502,virus,1442821709 +242823,6502,Zombie,1442821703 +242823,6502,zombies,1442821701 +242823,6707,bloody,1442822049 +242823,6707,Eli Roth,1442822052 +242823,6707,gore,1442822047 +242823,6707,gruesome,1442822051 +242823,6953,Complex,1442821868 +242823,6953,death,1442821860 +242823,6953,psychological,1442821865 +242823,6953,Tragedy,1442821862 +242823,6975,dark humor,1442820900 +242823,6975,disturbing,1442820897 +242823,6975,torture,1442820898 +242823,8507,banned movie,1442820961 +242823,8507,controversial,1442820947 +242823,8507,cult classic,1442820956 +242823,8507,cult film,1442820967 +242823,8507,dark,1442820963 +242823,8507,disturbing,1442820953 +242823,8507,eerie,1442820959 +242823,8507,freaks,1442820946 +242823,8507,gruesome,1442820941 +242823,8917,satire,1442821511 +242823,8917,Trey Parker,1442821522 +242823,26974,Bizarre,1442821396 +242823,26974,harmony korine,1442821398 +242823,32587,black comedy,1442821963 +242823,32587,brutality,1442821945 +242823,32587,cannibalism,1442821954 +242823,32587,dark,1442821948 +242823,32587,disturbing,1442821958 +242823,32587,Frank Miller,1442821950 +242823,32587,Quentin Tarantino,1442821941 +242823,32587,violence,1442821943 +242823,32587,violent,1442821952 +242823,34323,Rob Zombie,1442821595 +242823,44397,cannibalism,1442821983 +242823,44397,gore,1442821975 +242823,44397,mutation,1442821985 +242823,44397,rape,1442821986 +242823,44397,torture porn,1442821980 +242823,47997,dark comedy,1442821918 +242823,47997,satire,1442821915 +242823,47997,thought provoking,1442821922 +242823,48385,anti-Semitism,1442821543 +242823,48385,controversial,1442821537 +242823,48385,crude humor,1442821540 +242823,48385,prostitution,1442821546 +242823,48385,racism,1442821548 +242823,48385,satire,1442821534 +242823,57528,lots of blood,1442821496 +242823,57528,violence,1442821495 +242823,57528,violent,1442821493 +242823,99114,Humour,1442821066 +242823,99114,violence,1442821050 +242823,106782,3-hours of sex and drugs,1442821675 +242823,106782,Amoral,1442821680 +242823,106782,drugs,1442821659 +242823,106782,Funny,1442821662 +242823,106782,Martin Scorsese,1442821657 +242823,106782,prostitution,1442821666 +242827,4975,Nudity (Topless),1169782770 +242827,4975,seen more than once,1169782775 +242827,5902,narrated,1169783767 +242827,5902,Nudity (Topless - Notable),1169783764 +242827,5902,surreal,1169783770 +242830,73,based on a book,1284675617 +242830,73,changed the book TOO much,1284675780 +242830,73,love,1284675617 +242830,1197,action,1284679542 +242830,1197,Cary Elwes,1284679572 +242830,1197,classic,1284679526 +242830,1197,comedy,1284679461 +242830,1197,fairy tale,1284679513 +242830,1197,fantasy,1284679458 +242830,1197,medieval,1284679513 +242830,1197,romance,1284679463 +242830,1197,witty,1284679552 +242830,1873,based on a book,1284675626 +242830,1873,changed the book TOO much,1284675747 +242830,1873,classic,1284675629 +242830,2125,Drew Barrymore,1284679627 +242830,2125,love story,1284679615 +242830,2248,John Cusack,1284677210 +242830,2248,romance,1284677197 +242830,2329,Edward Norton,1284674310 +242830,2329,makes you cry,1284674698 +242830,2329,powerful ending,1284676089 +242830,2329,powerful message about hate,1284676079 +242830,2329,racism,1284674305 +242830,2329,thought-provoking,1284674745 +242830,4738,relationship,1284676634 +242830,4738,romance,1284676671 +242830,4738,time travel,1284676553 +242830,4878,Jake Gyllenhaal,1284675049 +242830,4878,psychology,1284675085 +242830,4878,sci-fi,1284675080 +242830,4878,soundtrack,1284675066 +242830,4878,thought-provoking,1284675049 +242830,4878,time travel,1284675049 +242830,4899,black comedy,1284677410 +242830,4899,comedy,1284677379 +242830,4899,Martin Lawrence,1284677356 +242830,5266,action,1284678943 +242830,5266,Jodie Foster,1284678993 +242830,5266,thriller,1284678942 +242830,7445,friendship,1284675513 +242830,7445,like father-daughter relationship,1284675513 +242830,7445,makes you cry,1284675513 +242830,7445,redemption,1284675513 +242830,8533,great ending,1284674253 +242830,8533,Romance,1284674249 +242830,27251,adventure,1284675977 +242830,27251,alternate reality,1284675831 +242830,27251,comedy,1284675977 +242830,27251,fairy tale,1284675977 +242830,27251,fantasy,1284675977 +242830,27251,mythical creatures,1284675977 +242830,27251,romance,1284675977 +242830,33145,Ashton Kutcher,1284676759 +242830,33145,happy ending,1284676769 +242830,33145,love,1284676757 +242830,33145,romance,1284676765 +242830,33145,slow paced in the end,1284676831 +242830,33145,soundtrack,1284676874 +242830,33145,TOO much going on,1284676852 +242830,36527,mathematics,1284674153 +242830,49649,bad acting,1284679241 +242830,49649,dragons,1284679181 +242830,49649,fantasy,1284679181 +242830,49649,legend,1284679181 +242830,49649,magic,1284679181 +242830,49649,some lines sounded funny instead of serious,1284679425 +242830,53123,emotional,1284677240 +242830,53123,quite romantic,1284677254 +242830,53123,soundtrack,1284677261 +242830,60069,dystopia,1284674225 +242830,60069,romance,1284674229 +242830,63992,fantasy,1284678773 +242830,63992,love story,1284678773 +242830,63992,soundtrack,1284678773 +242830,67734,funny,1284678816 +242830,67734,Jesse Eisenberg,1284678859 +242830,67734,quirky,1284678814 +242830,72407,bad acting,1284679058 +242830,72407,so stupid,1284679058 +242830,72407,vampires,1284679077 +242830,72737,animation,1284676341 +242830,72737,Disney,1284676346 +242830,72737,love,1284676544 +242830,72737,music,1284676338 +242830,72737,thought-provoking,1284676544 +242830,76093,action,1284677676 +242830,76093,adventure,1284677671 +242830,76093,animation,1284677543 +242830,76093,depth of emotion,1284677615 +242830,76093,dragons,1284677478 +242830,76093,fantasy,1284677543 +242830,76093,friendship,1284677543 +242830,76093,funny,1284677628 +242830,76093,heavy with symbolism,1284677788 +242830,76093,Jay Baruchel,1284677908 +242830,76093,vikings,1284677476 +242830,79226,the good guy,1284676306 +242871,260,sci-fi,1433853678 +242871,260,the force,1433853686 +242891,260,#fantasy,1444596858 +242891,260,#space,1444596852 +242924,1200,sassy,1365731488 +242924,1200,scary,1365731476 +242924,1200,Sigourney Weaver,1365731476 +242924,55820,a movie about death,1365731751 +242924,55820,lack of character development,1365731773 +242924,55820,tension,1365731784 +242924,88129,acting,1365731609 +242924,88129,engaging,1365731651 +242924,88129,funny,1365731662 +242924,88129,noir,1365731629 +242924,88129,Pacey,1365731584 +242924,88129,Ryan Gosling,1365731573 +242924,88129,ryan gosling will never love me :(,1365731680 +242924,88129,soundtrack,1365731599 +242924,94864,great acting,1365731381 +242924,94864,philosophical,1365731358 +242924,94864,realistic women,1365731300 +242924,94864,scary,1365731430 +242924,94864,sci-fi,1365731402 +242924,94864,special effects,1365731415 +242924,94864,stylistic,1365731421 +242924,94864,thematic,1365731330 +242924,94864,unpredictable,1365731439 +242924,94864,unrealistic representation of geologists,1365731284 +242924,101741,convoluted,1365809451 +242947,6218,feel-good,1449776620 +242947,63082,nonlinear,1449776658 +242947,69757,artistic,1449776472 +242947,69757,chick flick,1449776481 +242947,69757,humor,1449776496 +242947,69757,relationships,1449776453 +242947,69757,romance,1449776442 +242947,78703,original,1449776780 +242958,42217,Japan,1184400136 +242958,42217,Yasujiro Ozu,1184400142 +242985,260,classic sci-fi,1442603809 +242985,260,space exploration,1442603852 +243100,2846,Cute animals,1243301720 +243100,2846,Little dialogue,1243301720 +243117,260,space,1434052104 +243122,1197,comedy,1338687166 +243122,4389,lesbian,1338834810 +243122,4886,Pixar,1338687183 +243122,38538,high school,1338687139 +243122,38538,teen,1338687142 +243122,40826,musical,1338687161 +243122,43744,lesbian,1338687081 +243122,43744,Romance,1338687088 +243136,260,hero's journey,1434394384 +243136,260,space adventure,1434394380 +243136,115231,Asshole with a heart of gold,1435199576 +243136,115231,inspirational,1435199580 +243136,115231,redemption,1435199582 +243182,858,imdb top 250,1261354439 +243182,858,organized crime,1261354431 +243182,858,Oscar (Best Picture),1261354434 +243182,858,too long,1261354449 +243182,2692,alternate endings,1293338166 +243182,2692,animation,1293338180 +243182,2692,intense,1293338170 +243182,2692,surreal,1293338171 +243182,4421,horrible acting,1260121611 +243182,4421,lame ending,1260121630 +243182,4421,no plot,1260121605 +243182,4442,80s,1250997431 +243182,4442,kung fu,1250997428 +243182,6345,*Good* Musicals,1249847328 +243182,6345,80's Music,1249847363 +243182,6345,Broadway,1249847309 +243182,6345,ensemble cast,1249847338 +243182,6345,Michael Douglas,1249847313 +243182,6345,Super-35 Blow-Up,1249847322 +243182,42632,beautiful cinematography,1249847426 +243182,42632,brutality,1249847441 +243182,42632,Chan-wook Park,1249847429 +243182,42632,child murder,1249847423 +243182,42632,disturbing,1249847415 +243182,42632,quirky,1249847418 +243182,42632,Revenge Trilogy,1249847434 +243182,42632,vigilante,1249847420 +243182,45730,Believe In Your Ability To See Stoopid Plotlines,1243294372 +243182,45730,disappointing,1243294347 +243182,45730,fairy tale,1243294352 +243182,45730,stupid,1243294364 +243182,55052,great cinematography,1306101410 +243182,55052,Period piece,1306101373 +243182,55052,Saoirse Ronan,1306101402 +243182,55052,Sexualized violence,1306101374 +243182,55052,Tragedy,1306101421 +243182,55052,war,1306101376 +243182,56563,modernism,1293337903 +243182,56563,typography,1293337906 +243182,60020,blood,1272838182 +243182,60020,drama,1272838179 +243182,60020,Jet Li,1272838176 +243182,60020,war,1272838178 +243182,61210,Bad CG,1250464238 +243182,61210,John Malkovich,1250464230 +243182,61210,Ron Perlman,1250464214 +243182,65982,easily confused with other movie(s) (title),1241744497 +243182,65982,plot holes,1241744488 +243182,65982,Ron Perlman,1241744450 +243182,72171,blaxploitation,1261709080 +243182,72171,martial arts,1261709081 +243182,72171,parody,1261709085 +243182,72171,theme music,1261709093 +243182,72731,afterlife,1262464857 +243182,72731,fantasy,1262464868 +243182,72731,Peter Jackson,1262464854 +243182,72731,Rachel Weisz,1262464859 +243182,72998,3d,1261295639 +243182,72998,effects,1261295629 +243182,72998,military,1261295631 +243182,72998,native exploitation,1261295662 +243182,72998,sci-fi,1261295636 +243182,72998,visual,1261295642 +243182,73874,fighting,1268792659 +243182,73874,Kimbo Slice,1268792662 +243182,73874,Michael Jai White,1268792664 +243182,74115,animation,1270645029 +243182,76251,gory,1283725689 +243182,76251,graphic violence,1283725693 +243182,76251,violence,1283725683 +243182,76251,weapons,1283725701 +243182,76753,high school,1293337990 +243182,76753,revenge,1293337986 +243182,78893,Aasif Mandvi,1295209854 +243182,78893,acting,1295209857 +243182,78893,characters,1295209867 +243182,78893,editing,1295209858 +243182,78893,effects,1295209863 +243182,78893,M. Night Shyamalan,1295209861 +243182,81591,Darren Aronofsky,1292821263 +243182,81591,lesbians,1292821254 +243182,81591,Mila Kunis,1292821241 +243182,81591,Natalie Portman,1292821269 +243182,81932,Amy Adams,1294547130 +243182,82095,Acting,1294201360 +243182,82095,Alien Invasion,1294201349 +243182,82095,CGI,1294201358 +243182,82095,just not good,1294201355 +243182,82095,plot,1294201379 +243182,82095,stupid ending,1294201379 +243182,82459,boring,1296790624 +243182,82765,Jackie Chan,1293337829 +243182,82765,Sad Ending,1293337835 +243182,83369,Saoirse Ronan,1304225394 +243182,87304,believable,1354605267 +243182,87304,dogs,1354605253 +243182,87304,Ewan McGregor,1354605240 +243182,87304,homosexuality,1354605246 +243182,87304,Melanie Laurent,1354605238 +243182,87304,unique story,1354605244 +243182,87304,voice over montages,1354605257 +243183,4262,coccaine,1202812557 +243183,51935,Read Point of Impact first!,1202813871 +243195,260,adventure,1430430375 +243195,260,scifi cult,1430430389 +243195,296,black comedy,1438038880 +243195,296,multiple storylines,1438038880 +243195,296,organized crime,1438038880 +243195,356,america,1430431642 +243195,356,meaning of life,1430431642 +243195,356,uplifting,1430431642 +243222,136,documentary,1159810068 +243222,136,tragedy,1159810075 +243222,1850,tiresome,1159809990 +243222,34767,moronic,1159810170 +243222,34767,pointless,1159810170 +243250,1347,freddy krueger,1438475472 +243250,1704,psychology,1438628336 +243250,2315,Chucky,1438475533 +243250,2315,serial killers,1438475542 +243250,2908,gay,1438625759 +243250,2908,lgbt,1438625736 +243250,2908,Sexualized violence,1438625734 +243250,2908,transgender,1438625745 +243250,2908,transphobia,1438625749 +243250,3786,lgbt,1438629371 +243250,7802,New York City,1438627006 +243250,55844,feminism,1438628551 +243250,55844,lesbian,1438628543 +243250,55844,lgbt,1438628547 +243250,93729,drag queens,1438629326 +243250,93729,gay,1438629328 +243250,93729,lgbt,1438629323 +243250,97913,animation,1438625542 +243250,107052,feminism,1438628471 +243250,107052,punk,1438628518 +243250,132454,lgbt,1438629405 +243250,132454,musical,1438629419 +243250,132454,queer,1438629406 +243250,133441,sex workers,1438634491 +243250,134248,Documentary,1438475381 +243250,134248,pornography,1438625663 +243250,134248,Sex Workers,1438475383 +243250,140154,animal documentary,1438629813 +243250,140154,animals,1438629793 +243250,140154,cats,1438629795 +243250,140154,declawing,1438629799 +243250,140154,documentary,1438629809 +243250,140156,sex workers,1438631845 +243271,5577,adolescence,1178681967 +243301,260,classic,1432714537 +243301,260,must see,1432714547 +243307,260,A western set in an alien world,1438994758 +243307,260,classic sci-fi,1438994809 +243336,50,Benicio Del Toro,1443751306 +243336,50,clever,1443751321 +243336,50,conspiracy,1443751311 +243336,50,great acting,1443751304 +243336,50,Kevin Spacey,1443751296 +243336,50,suspense,1443751299 +243336,4973,beautifully filmed,1443751356 +243336,4973,feel-good,1443751359 +243336,4973,inspirational,1443751368 +243336,4973,music,1443751371 +243369,1220,dated,1137639599 +243369,1527,sucks,1137639592 +243369,3471,saw this about 25 years ago,1137639829 +243369,4027,changed my opinion on 2nd viewing,1138931799 +243369,6711,less than I expected,1137639794 +243369,6863,for kids,1139796930 +243369,33154,Love the Bush cameos,1138328289 +243369,40583,impressive gut addage on clooney,1137639691 +243369,40819,but the whole addiction thing gets boring.,1138930596 +243369,40819,not bad,1138930596 +243381,165,Super cool,1440269165 +243381,1721,Love is eternal,1440269188 +243382,56949,bad acting,1448109577 +243382,56949,bad dialogue,1448109572 +243382,56949,cliche,1448109580 +243382,56949,full of stupid things,1448109574 +243382,56949,love story,1448109565 +243382,73017,Atmospheric,1448109847 +243382,73017,choreographic violence,1448109874 +243382,73017,clever,1448109886 +243382,73017,dialogue,1448109850 +243382,73017,magic/illusion/mysticism,1448109883 +243382,73017,martial arts,1448109853 +243382,73017,murder,1448109867 +243382,73017,Mystery,1448109844 +243382,73017,predictable,1448109880 +243382,73017,Sherlock Holmes,1448109842 +243382,73017,violent,1448109858 +243382,73017,witty,1448109871 +243382,78041,Ashton Kutcher,1448109625 +243382,79185,action packed,1448109676 +243382,79185,Cameron Diaz,1448109660 +243382,79185,predictable ending,1448109666 +243382,79185,spy,1448109651 +243382,79185,Tom Cruise,1448109656 +243382,79185,unrealistic,1448109661 +243391,260,classic sci-fi,1438932681 +243391,260,space action,1438932698 +243415,51662,war,1285582463 +243425,546,dinosaurs,1187878407 +243425,837,adoption,1187878515 +243425,837,bad parents,1187878515 +243425,837,magic,1187878515 +243425,837,school,1187878515 +243425,837,teacher,1187878515 +243425,1100,cars,1187878359 +243425,1100,racing,1187878359 +243425,1416,politics,1187878371 +243425,2384,animals,1187878445 +243425,2384,cute,1187878446 +243425,2384,farm,1187878445 +243425,2428,aliens,1187878379 +243425,2485,shakespeare,1187878397 +243425,2598,air traffic control,1187878553 +243425,4015,silly,1187878567 +243425,4343,aliens,1187878612 +243425,4343,evolution,1187878612 +243425,4343,funny,1187878612 +243425,4343,meteorite,1187878612 +243425,5254,blood,1187878644 +243425,5254,guns,1187878644 +243425,5254,swords,1187878644 +243425,5254,vamipres,1187878644 +243425,6157,superhero,1187878650 +243441,3471,Sci-fi,1146949679 +243441,3471,Spielberg,1146949679 +243447,356,classic,1429840285 +243447,356,drama,1429840285 +243447,356,emotional,1429840285 +243474,150,astronauts,1290968308 +243474,150,based on a true story,1290968310 +243474,150,engineering,1290968301 +243474,150,historical,1290968306 +243474,150,NASA,1290968311 +243474,150,space,1290968316 +243474,150,space program,1290968312 +243474,150,Tom Hanks,1290968314 +243474,150,true story,1290968318 +243474,260,Akira Kurosawa,1290927717 +243474,260,atmospheric,1290927722 +243474,260,classic,1290927725 +243474,260,fantasy,1290927714 +243474,260,Saturn Award (Best Science Fiction Film),1290927732 +243474,260,sci-fi,1290927706 +243474,260,space,1290927710 +243474,260,SPACE TRAVEL,1290927712 +243474,260,war,1290927739 +243474,592,adapted from:comic,1290927686 +243474,592,comic book,1290927676 +243474,592,Jack Nicholson,1290927674 +243474,592,Tim Burton,1290927683 +243474,750,Stanley Kubrick,1168832883 +243474,904,AFI 100,1290937957 +243474,904,Alfred Hitchcock,1290937948 +243474,904,classic,1290937950 +243474,904,imdb top 250,1290937956 +243474,904,James Stewart,1290937947 +243474,904,suspense,1290937954 +243474,909,AFI 100,1291014388 +243474,909,Billy Wilder,1291014389 +243474,909,black comedy,1291014408 +243474,909,classic,1291014413 +243474,909,imdb top 250,1291014404 +243474,909,Jack Lemmon,1291014394 +243474,909,Oscar (Best Picture),1291014399 +243474,909,Shirley MacLaine,1291014400 +243474,951,100 Greatest Movies,1291014340 +243474,951,AFI 100 (Laughs),1291014345 +243474,951,Cary Grant,1291014314 +243474,951,classic,1291014350 +243474,951,dialogue driven,1291014320 +243474,951,Great Screenplays,1291014326 +243474,951,Howard Hawks,1291014353 +243474,951,talky,1291014336 +243474,953,AFI 100,1290936597 +243474,953,black and white,1290936590 +243474,953,Christmas,1290936564 +243474,953,classic,1290936565 +243474,953,imdb top 250,1290936602 +243474,953,inspirational,1290936567 +243474,953,James Stewart,1290936569 +243474,953,sentimental,1290936610 +243474,993,genius,1290969874 +243474,993,Patricia Arquette,1290969881 +243474,993,physics,1290969872 +243474,993,science,1290969871 +243474,993,true story,1290969876 +243474,994,cooking,1290968576 +243474,994,food,1290968557 +243474,994,new jersey,1290968569 +243474,994,restaurant,1290968558 +243474,994,Stanley Tucci,1290968562 +243474,994,Tony Shalhoub,1290968560 +243474,1198,adventure,1290927796 +243474,1198,archaeology,1290927770 +243474,1198,atmospheric,1290927799 +243474,1198,classic,1290927793 +243474,1198,Harrison Ford,1290927782 +243474,1198,indiana jones,1290927784 +243474,1240,android(s)/cyborg(s),1290927039 +243474,1240,Arnold Schwarzenegger,1290927017 +243474,1240,artificial intelligence,1290927022 +243474,1240,future,1290927020 +243474,1240,imdb top 250,1290927047 +243474,1240,robots,1290927024 +243474,1240,Thriller,1290927061 +243474,1240,time travel,1290927029 +243474,1240,violent,1290927057 +243474,1259,1960s,1290970773 +243474,1259,classic,1290970765 +243474,1259,coming of age,1290970764 +243474,1259,nostalgic,1290970761 +243474,1291,archaeology,1290927828 +243474,1291,Biblical,1290927855 +243474,1291,franchise,1290927861 +243474,1291,Holy Grail,1290927834 +243474,1291,indiana jones,1290927836 +243474,1291,Sean Connery,1290927844 +243474,1297,80s,1290968240 +243474,1297,college,1290968250 +243474,1297,engineering,1290968235 +243474,1297,genius,1290968237 +243474,1297,science,1290968243 +243474,1297,smart comedy,1290968244 +243474,1297,US college students,1290968247 +243474,1297,witty,1290968246 +243474,1584,aliens,1290969826 +243474,1584,beautiful,1290969814 +243474,1584,future,1290969813 +243474,1584,mathematics,1290969843 +243474,1584,religion,1290969818 +243474,1584,sci-fi,1290969809 +243474,1584,science,1290969810 +243474,1584,space,1290969807 +243474,1584,space travel,1290969807 +243474,1653,dystopia,1290926757 +243474,1653,dystopic future,1290926759 +243474,1653,future,1290926761 +243474,1653,genetics,1290926765 +243474,1653,powerful ending,1290926778 +243474,1653,sad ending,1290926783 +243474,1653,sci-fi,1290926767 +243474,1653,space travel,1290926770 +243474,1653,suicide,1290926775 +243474,1748,atmospheric,1290937156 +243474,1748,dark fantasy,1290937157 +243474,1748,dreamlike,1290937161 +243474,1748,dystopia,1290937159 +243474,1748,sci-fi,1290937147 +243474,1748,stylized,1290937149 +243474,1748,surreal,1290937151 +243474,1748,thought-provoking,1290937153 +243474,1748,visually appealing,1290937155 +243474,1887,Chris Farley,1290937528 +243474,2176,Alfred Hitchcock,1290937982 +243474,2176,Hitchcock,1290937987 +243474,2176,James Stewart,1290937984 +243474,2176,scary,1290938002 +243474,2203,Alfred Hitchcock,1290969173 +243474,2203,Best of Rotten Tomatoes: All Time,1290969177 +243474,2203,classic,1290969180 +243474,2203,Hitchcock,1290969169 +243474,2203,imdb top 250,1290969182 +243474,2203,SERIAL KILLERS,1290969166 +243474,2496,Alicia Silverstone,1290968916 +243474,2496,Atomic bomb,1290968918 +243474,2496,Christopher Walken,1290968914 +243474,2501,aeronautics,1290968336 +243474,2501,engineering,1290968352 +243474,2501,Engineers in training,1290968346 +243474,2501,science,1290968338 +243474,2501,space,1290968340 +243474,2501,space program,1290968342 +243474,2501,True Story,1290968341 +243474,2763,anti-hero,1290938852 +243474,2763,Caper,1290938851 +243474,2763,heist,1290938848 +243474,2763,intelligent,1290938857 +243474,2763,intelligent thriller,1290938854 +243474,2763,spy,1290938861 +243474,2804,Christmas,1290936754 +243474,2804,classic,1290936752 +243474,2804,imdb top 250,1290936782 +243474,2804,narrated,1290936778 +243474,2804,Xmas theme,1290936775 +243474,2949,007,1290969336 +243474,2949,007 (series),1290969337 +243474,2949,AFI 100 (Movie Quotes),1290969346 +243474,2949,Best of Bond,1290969344 +243474,2949,Bond,1290969338 +243474,2949,james bond,1290969341 +243474,2949,Sean Connery,1290969340 +243474,3088,AFI 100 (Laughs),1290936634 +243474,3088,Heartwarming,1290936630 +243474,3088,James Stewart,1290936628 +243474,3088,Jimmy Stewart,1290936627 +243474,3088,sweet,1290936643 +243474,3421,AFI 100 (Laughs),1290937693 +243474,3421,classic,1290937696 +243474,3421,fraternity,1290937687 +243474,3421,wired 50 greatest soundtracks,1290937702 +243474,3897,1970s,1290926892 +243474,3897,coming of age,1290926889 +243474,3897,music,1290926874 +243474,3897,rock and roll,1290926881 +243474,3979,Adam Sandler,1290937482 +243474,3986,futuristic,1290970376 +243474,4343,comedy,1290937334 +243474,4343,David Duchovny,1290937330 +243474,4343,hillarious,1290937323 +243474,4343,Orlando Jones,1290937385 +243474,4343,Seann William Scott,1290937364 +243474,4370,androids,1290926709 +243474,4370,artificial intelligence,1290926704 +243474,4370,disturbing,1290926742 +243474,4370,future,1290926736 +243474,4370,Saturn Award (Best Science Fiction Film),1290926721 +243474,4370,sci-fi,1290926714 +243474,4370,Stanley Kubrick,1290926726 +243474,4995,genius,1290933979 +243474,4995,intelligent,1290933978 +243474,4995,math,1290933970 +243474,4995,mathematics,1290933968 +243474,4995,psychology,1290933975 +243474,4995,true story,1290933976 +243474,5025,Colin Hanks,1290967970 +243474,5025,Jack Black,1290967969 +243474,5095,Christopher Walken,1290938123 +243474,5095,macbeth,1290938125 +243474,5095,Shakespeare adaptation,1290938121 +243474,5291,nonlinear,1168834472 +243474,6188,college,1290937659 +243474,6188,Luke Wilson,1290937661 +243474,6188,Seann William Scott,1290937668 +243474,6188,Will Ferrell,1290937662 +243474,6323,multiple personalities,1290989475 +243474,6323,surreal,1290989488 +243474,6323,twist ending,1290989481 +243474,7090,amazing photography,1290969674 +243474,7090,atmospheric,1290969677 +243474,7090,Beautiful,1290969676 +243474,7090,cinematography,1290969685 +243474,7090,Jet Li,1290969672 +243474,7090,kung fu,1290969681 +243474,7090,martial arts,1290969673 +243474,7090,rashomon,1290969669 +243474,7090,stylized,1290969702 +243474,7090,visually appealing,1290969679 +243474,8641,Vince Vaughn,1290937585 +243474,8641,Will Ferrell,1290937579 +243474,8784,Great Soundtrack,1290926816 +243474,8784,quirky,1290926833 +243474,8784,quirky romantic,1290926824 +243474,8784,romance,1290926862 +243474,8784,unsatisfying ending,1290926837 +243474,8784,Zach Braff,1290926819 +243474,8810,franchise,1290937253 +243474,8810,inconsistent,1290937259 +243474,8914,clever,1290927197 +243474,8914,Complicated,1290927216 +243474,8914,intellectual,1290927199 +243474,8914,mindfuck,1290927211 +243474,8914,paradox,1290927203 +243474,8914,physics,1290927201 +243474,8914,sci-fi,1290927205 +243474,8914,science,1290927209 +243474,8914,time travel,1290927207 +243474,8949,dark comedy,1290969026 +243474,8949,divorce,1290969032 +243474,8949,Paul Giamatti,1290969025 +243474,8949,wine,1290969023 +243474,32587,Action,1290926970 +243474,32587,artistic,1290926965 +243474,32587,based on comic,1290926962 +243474,32587,black comedy,1290926960 +243474,32587,comic book,1290926951 +243474,32587,imdb top 250,1290926975 +243474,32587,Quentin Tarantino,1290926953 +243474,32587,stylized,1290926955 +243474,32587,surrealism,1290926959 +243474,32587,violence,1290926986 +243474,32587,visually appealing,1290926956 +243474,33145,Amanda Peet,1290968009 +243474,33145,Ashton Kutcher,1290968011 +243474,33145,romance,1290968013 +243474,33794,adapted from:comic,1290927648 +243474,33794,based on a comic,1290927652 +243474,33794,based on comic,1290927654 +243474,33794,batman,1290927639 +243474,33794,Christian Bale,1290927650 +243474,33794,comic book,1290927656 +243474,33794,dark,1290927642 +243474,33794,imdb top 250,1290927663 +243474,33794,stylized,1290927659 +243474,33794,superhero,1290927646 +243474,34162,Christopher Walken,1290937810 +243474,34162,predictable,1290937814 +243474,34405,adventure,1290927436 +243474,34405,aliens,1290927434 +243474,34405,based on a TV show,1290927419 +243474,34405,cult film,1290927413 +243474,34405,dystopia,1290927405 +243474,34405,quirky,1290927409 +243474,34405,sci-fi,1290927407 +243474,34405,space,1290927401 +243474,34405,SPACE TRAVEL,1290927403 +243474,34405,visually stunning,1290927424 +243474,34405,witty,1290927411 +243474,38061,dark comedy,1290936100 +243474,38061,Film Noir,1290936096 +243474,38061,funny,1290936099 +243474,38061,Robert Downey Jr,1290936098 +243474,42725,Stoner Movie,1290968981 +243474,43871,computers,1290969443 +243474,43871,hackers,1290969453 +243474,43871,hacking,1290969455 +243474,43871,Harrison Ford,1290969451 +243474,43871,real computers usage,1290969446 +243474,43871,realistic,1290969447 +243474,43871,Virginia Madsen,1290969461 +243474,44191,comic book,1168834783 +243474,44761,clever,1290936054 +243474,44761,deadpan,1290936055 +243474,44761,film noir,1290936061 +243474,44761,stylized,1290936067 +243474,48082,artsy,1290936821 +243474,48082,bittersweet,1290936824 +243474,48082,dream-like,1290936817 +243474,48082,dreams,1290936818 +243474,48082,fantasy,1290936810 +243474,48082,Michel Gondry,1290936808 +243474,48082,quirky,1290936811 +243474,48082,stylized,1290936815 +243474,48082,surreal,1290936813 +243474,51255,black comedy,1290969511 +243474,51255,Simon Pegg,1290969509 +243474,52867,uncomfortable,1290936189 +243474,52867,Zach Braff,1290936180 +243474,55280,feel-good,1290936002 +243474,55280,Ryan Gosling,1290936007 +243474,55908,academia,1290927267 +243474,55908,cult film,1290927266 +243474,55908,educational,1290927271 +243474,55908,evolution,1290927277 +243474,55908,Excellent use of dialogue,1290927243 +243474,55908,immortality,1290927280 +243474,55908,intellectual,1290927247 +243474,55908,intelligent,1290927249 +243474,55908,irreligion,1290927329 +243474,55908,Jerome Bixby,1290927251 +243474,55908,one set,1303178040 +243474,55908,philosophical,1290927241 +243474,55908,religion,1290927286 +243474,55908,sci-fi,1290927244 +243474,55908,science fiction,1290927291 +243474,55908,thought-provoking,1290927246 +243474,55908,Underrated,1290927255 +243474,55908,unique,1290927257 +243474,56715,afterlife,1290933570 +243474,56715,black comedy,1290933584 +243474,56715,cult,1290933573 +243474,56715,cult film,1290933572 +243474,56715,quirky,1290933575 +243474,56715,suicide,1290933577 +243474,56715,touching,1290933588 +243474,56715,Will Arnett,1290933579 +243474,58559,Atmospheric,1290927619 +243474,58559,Batman,1290927616 +243474,58559,Christian Bale,1290927624 +243474,58559,comic book,1290927599 +243474,58559,dark,1290927601 +243474,58559,serial killer,1290927613 +243474,58559,superhero,1290927603 +243474,58622,Adam Carolla,1290969062 +243474,58998,comedy,1290937794 +243474,58998,Predictable,1290937786 +243474,60293,Ben Kingsley,1290934909 +243474,60293,dealing,1290934912 +243474,60293,drugs,1290934900 +243474,60293,hip-hop,1290934896 +243474,61024,drugs,1290937896 +243474,61024,James Franco,1290937892 +243474,61024,Seth Rogen,1290937899 +243474,61323,Coen Brothers,1290968947 +243474,61323,dark comedy,1290968947 +243474,61323,George Clooney,1290968949 +243474,61323,John Malkovich,1290968947 +243474,65642,complicated,1290927165 +243474,65642,downbeat,1290927182 +243474,65642,grim,1290927187 +243474,65642,paradox,1290927163 +243474,65642,time travel,1290927161 +243474,65982,cool premise,1290937211 +243474,65982,fantasy,1290937193 +243474,65982,sci-fi,1290937214 +243474,65982,space,1290937216 +243474,67734,funny,1290967914 +243474,67734,nihilism,1290967921 +243474,67734,quirky,1290967917 +243474,68237,artificial intelligence,1290968190 +243474,68237,Sci-fi,1290968192 +243474,68358,franchise,1290927477 +243474,68358,future,1290927467 +243474,68358,sci-fi,1290927461 +243474,68358,space,1290927463 +243474,68358,space travel,1290927460 +243474,68358,Star Trek,1290927474 +243474,68358,time travel,1290927454 +243474,68358,visually appealing,1290927457 +243474,68954,children,1290935042 +243474,68954,computer animation,1290935038 +243474,68954,dogs,1290935046 +243474,68954,tear jerker,1290935031 +243474,68954,touching,1290935033 +243474,68954,tragedy,1290935060 +243474,69122,absurd,1290937734 +243474,69122,cliche,1290937735 +243474,69122,Drinking,1290937740 +243474,69278,few funny scenes,1290937415 +243474,69278,Will Ferrell,1290937426 +243474,69436,bad script,1290937450 +243474,69436,David Cross,1290937455 +243474,70286,action,1290927370 +243474,70286,aliens,1290927348 +243474,70286,evil corporations,1290927372 +243474,70286,genetics,1290927363 +243474,70286,intelligent sci-fi,1290927350 +243474,70286,justice,1290927379 +243474,70286,peter jackson,1290927353 +243474,70286,redemption,1290927378 +243474,70286,sci-fi,1290927365 +243474,70286,thoughtful,1290927359 +243474,70293,cooking,1290968741 +243474,70293,food,1290968734 +243474,70293,inspiring,1290968752 +243474,70293,uplifting,1290968751 +243474,70599,fate,1290927133 +243474,70599,heartbreaking,1290927112 +243474,70599,romance,1290927101 +243474,70599,sad,1290927105 +243474,70599,scifi,1290927099 +243474,70599,time travel,1290927097 +243474,71057,dark fantasy,1290926675 +243474,71057,dystopia,1290926677 +243474,71057,post-apocalyptic,1290926680 +243474,71057,sci-fi,1290926685 +243474,71057,visually appealing,1290926666 +243474,71057,Visuals,1290926683 +243474,71579,1960s,1290935236 +243474,71579,coming of age,1290935256 +243474,71579,Paris,1290935202 +243474,71579,romance,1290935200 +243474,71817,beer,1290968609 +243474,71817,Sam Calagione,1290968612 +243474,72998,futuristic,1290927527 +243474,72998,politics,1290927537 +243474,72998,sci-fi,1290927529 +243474,74532,Tracy Morgan,1290969374 +243474,79132,dream,1290927576 +243474,79132,dreamlike,1290927555 +243474,79132,dreams,1290927557 +243474,79132,mindfuck,1290927582 +243474,79132,surreal,1290927565 +243474,79132,thought-provoking,1290927569 +243474,79132,visually appealing,1290927566 +243474,82461,music,1303010243 +243474,82461,sci-fi,1303010246 +243474,82461,visually appealing,1303010248 +243494,260,classic,1440967110 +243494,260,good vs evil,1440967149 +243504,370,Comedy,1151921418 +243504,784,Comedy,1151921414 +243504,784,Jim Carrey,1151921421 +243504,41997,Steven Spielberg,1151921677 +243506,593,concatenated,1429671763 +243506,593,dense,1429671763 +243506,593,unespected,1429671763 +243506,74324,autism,1429671956 +243506,74324,biography,1429671962 +243506,74324,inspirational,1429671965 +243519,84152,drive,1439800019 +243519,111360,drive,1439800183 +243541,260,action,1442430530 +243541,260,classic,1442430544 +243541,260,futuristic,1442430539 +243541,260,sci-fi,1442430535 +243562,858,Al Pacino,1264055013 +243562,858,Mafia,1264055018 +243562,858,organized crime,1264055021 +243562,68157,Brad Pitt,1264054635 +243562,68157,Quentin Tarantino,1264054624 +243562,68157,violence,1264054628 +243562,68554,action,1261722519 +243562,68554,mystery,1261722522 +243562,68954,computer animation,1264054754 +243562,68954,predictable,1264054749 +243562,68954,slow paced,1264054768 +243562,69122,comedy,1264145831 +243562,69122,Drinking,1264145835 +243562,69122,Nudity (Topless),1264145833 +243562,69122,Zach Galifinakis,1264145837 +243562,69784,mockumentary,1264054856 +243562,69784,Sacha Baron Cohen,1264054854 +243562,69784,satire,1264054878 +243562,69784,social commentary,1264054885 +243562,69784,tasteless,1264054860 +243562,70336,action,1264054834 +243562,70336,audience intelligence underestimated,1264054812 +243562,70336,sci-fi,1264054801 +243562,70336,silly plot,1264054803 +243562,70336,Special Effects,1264054808 +243562,71254,action,1264054909 +243562,71254,stupid,1264054928 +243562,72378,sci-fi,1261722482 +243562,72378,thriller,1261722487 +243562,72489,martial arts,1264054594 +243562,72998,futuristic,1261722393 +243562,72998,incredible 3D,1261722403 +243562,72998,military,1261722389 +243562,72998,sci-fi,1261722385 +243562,72998,stunning,1261722415 +243562,72998,too long,1261722399 +243562,73017,Action,1264054469 +243562,73017,Guy Ritchie,1264054456 +243562,73017,mystery,1264054459 +243562,73017,Rachel McAdams,1264054466 +243562,73017,Robert Downey Jr.,1264054454 +243562,73017,slow motion,1264054459 +243578,93510,bromance,1449709480 +243585,4975,psychology,1231788533 +243585,4975,sci-fi,1231788540 +243585,4975,surreal,1231788537 +243665,2329,neo Nazi,1137984563 +243669,902,Audrey Hepburn,1340219028 +243669,902,bittersweet,1340219032 +243669,902,classic,1340219035 +243669,902,elegant,1340219039 +243669,902,HAUNTED BY THE PAST,1340219054 +243669,902,New York,1340219057 +243669,902,Romance,1340219049 +243669,902,Truman Capote,1340219064 +243669,2160,creepy,1340218945 +243669,2160,demons,1340218941 +243669,2160,horror,1340218953 +243669,2160,scary,1340218961 +243669,4306,animation,1340219158 +243669,4306,comedy,1340219165 +243669,4306,parody,1340219174 +243669,4306,Quirky,1340219176 +243669,4306,witty,1340219181 +243669,6852,brutal,1341109257 +243669,56152,Below R,1341425651 +243669,56152,Disney,1341425645 +243669,56152,fun,1341424992 +243669,56152,humorous,1341424997 +243669,56152,magic realism,1341425630 +243669,56152,Musical,1341425635 +243669,56152,predictable,1341425624 +243669,56152,romance,1341425049 +243669,56152,Susan Sarandon,1341424987 +243669,94959,Bill Murray,1340218863 +243669,94959,Wes Anderson,1340218868 +243681,260,"action, scifi",1441380557 +243681,260,sci-fi,1441380532 +243685,98111,chinese,1436731563 +243685,98111,communism,1436731563 +243685,98111,womanizing,1436731563 +243685,122884,dead mother,1435701091 +243685,122884,father-daughter relationship,1435701091 +243685,122884,paranormal investigators,1435701091 +243688,131270,action,1428412519 +243688,131270,kung fu,1428412457 +243688,131270,martial arts,1428412470 +243688,131270,sword fight,1428412517 +243709,47,brad pitt,1450634513 +243709,47,crime,1450634538 +243709,47,dark,1450634534 +243709,47,David Fincher,1450634527 +243709,47,morgan freeman,1450634510 +243709,47,psychology,1450634524 +243709,47,religion,1450634521 +243709,47,serial killer,1450634501 +243709,47,thriller,1450634543 +243709,47,twist ending,1450634506 +243709,318,Morgan Freeman,1450634820 +243709,318,prison escape,1450634825 +243709,318,twist ending,1450634828 +243709,593,crime,1450634691 +243709,593,psychological,1450634685 +243709,593,psychology,1450634678 +243709,593,serial killer,1450634674 +243709,733,prison,1450634158 +243709,733,Sean Connery,1450634153 +243709,733,thriller,1450634169 +243709,1036,action,1450634124 +243709,1036,humorous,1450634127 +243709,1079,black comedy,1450634717 +243709,1079,British,1450634715 +243709,1198,action,1450634089 +243709,1198,adventure,1450634059 +243709,1198,comedy,1450634079 +243709,1198,Harrison Ford,1450634066 +243709,1198,indiana jones,1450634062 +243709,1198,Steven Spielberg,1450634093 +243709,1198,treasure hunt,1450634073 +243709,1214,aliens,1450634315 +243709,1214,claustrophobic,1450634347 +243709,1214,dark,1450634317 +243709,1214,horror,1450634306 +243709,1214,monster,1450634328 +243709,1214,sci-fi,1450634308 +243709,1214,space,1450634319 +243709,1214,space travel,1450634312 +243709,1214,suspense,1450634322 +243709,1214,tense,1450634339 +243709,1214,violence,1450634362 +243709,1214,visceral,1450634351 +243709,5570,Alejandro Amenábar,1450634608 +243709,5570,dark,1450634613 +243709,5570,murder,1450634575 +243709,5570,mystery,1450634568 +243709,5570,snatch movies,1450634590 +243709,5570,suspense,1450634570 +243709,5570,thriller,1450634599 +243709,5570,twisted ending,1450634620 +243709,7001,aliens,1450634403 +243709,7001,tense,1450634410 +243709,8874,black comedy,1450635232 +243709,8874,british comedy,1450635243 +243709,8874,parody,1450635236 +243709,8874,Simon Pegg,1450635234 +243709,8874,zombies,1450635229 +243709,91658,dark,1450634224 +243709,91658,murder,1450634233 +243709,91658,mystery,1450634243 +243709,91658,serial killer,1450634228 +243709,91658,suspense,1450634246 +243709,91658,thriller,1450634240 +243709,111781,Action,1450634192 +243725,3809,Bill Murray,1350316069 +243725,3809,humorous,1350316090 +243725,3809,madcap,1350316083 +243725,3809,really funny,1350316096 +243725,3809,Richard Dreyfuss,1350316101 +243729,356,biography,1434615728 +243729,356,drama,1434615728 +243729,356,long,1434615728 +243729,68358,sci-fi,1434615908 +243729,68358,Star Trek,1434615891 +243729,68358,time travel,1434615903 +243733,47,atmospheric,1384286784 +243733,47,great ending,1384286791 +243733,47,philosophical,1384286763 +243733,47,serial killer,1384286803 +243733,47,violent,1384286776 +243733,1627,Billy Bob Thornton,1384286572 +243733,1627,Sean Penn,1384286564 +243733,55820,based on a book,1384286701 +243733,55820,coen brothers,1384286719 +243733,55820,great acting,1384286714 +243733,55820,suspense,1384286709 +243733,55820,thriller,1384286692 +243743,260,blowyourmind,1443803462 +243743,260,thriller,1443803456 +243755,7,chick flick,1242523031 +243755,7,remake,1242523042 +243755,32,Bruce Willis,1243786947 +243755,32,classic,1243787016 +243755,32,Post apocalyptic,1243786950 +243755,32,post-apocalyptic,1243786951 +243755,32,time travel,1243786954 +243755,32,violence,1243786961 +243755,50,complicated,1251407131 +243755,50,funny,1251407135 +243755,50,great ending,1251407132 +243755,50,heist,1251407138 +243755,50,Kevin Spacey,1251407123 +243755,50,mindfuck,1251407119 +243755,50,suspense,1251407126 +243755,50,twist ending,1251407128 +243755,70,Nudity (Topless - Brief),1252612914 +243755,70,Quentin Tarantino,1252612899 +243755,70,Robert Rodriguez,1252612902 +243755,70,splatter,1252612919 +243755,70,Tarantino,1252612906 +243755,70,violence,1252612917 +243755,111,Classic,1241226101 +243755,111,disturbing,1241226084 +243755,111,Martin Scorsese,1241226097 +243755,111,Robert De Niro,1241226093 +243755,193,campy,1242521590 +243755,193,DANCER'S LIFE,1242521606 +243755,193,NC-17,1242521573 +243755,193,Paul Verhoeven,1242521600 +243755,193,watched it for the boobs,1242521580 +243755,196,Nudity (Topless - Notable),1243714046 +243755,196,Nudity (Topless),1243714049 +243755,198,mindfuck,1244213381 +243755,198,Nudity (Topless),1244213384 +243755,198,sci-fi,1244213382 +243755,235,Biopic,1242523652 +243755,235,Johnny Depp,1242523648 +243755,260,action,1251406521 +243755,260,adventure,1251406523 +243755,260,Akira Kurosawa,1251406525 +243755,260,atmospheric,1251406527 +243755,260,Harrison Ford,1251406510 +243755,260,sci-fi,1251406510 +243755,260,space,1251406511 +243755,260,Star Wars,1251406514 +243755,260,stylized,1251406517 +243755,293,Action,1241225104 +243755,293,assassin,1251406739 +243755,293,disturbing,1251406753 +243755,293,Gary Oldman,1251406745 +243755,293,great acting,1251406741 +243755,293,Jean Reno,1251406748 +243755,296,crime,1241225156 +243755,296,Quentin Tarantino,1241225143 +243755,318,classic,1251407513 +243755,318,friendship,1251407516 +243755,318,Morgan Freeman,1251407510 +243755,318,revenge,1251407505 +243755,318,sentimental,1251407506 +243755,318,Stephen King,1251407498 +243755,318,thought-provoking,1251407500 +243755,318,twist ending,1251407503 +243755,353,film noir,1252613349 +243755,353,gritty,1252613356 +243755,353,Nudity (Rear),1252613354 +243755,353,stylized,1252613360 +243755,353,vigilante,1252613362 +243755,356,bittersweet,1251406796 +243755,356,psychology,1251406805 +243755,356,vietnam war,1251406799 +243755,356,war,1251406802 +243755,434,kickass action flick,1242522064 +243755,434,Sylvester Stallone,1242522046 +243755,464,Jean-Claude Van Damme,1242522548 +243755,464,John Woo,1242522546 +243755,519,Bad acting,1242522963 +243755,527,Nazis,1251406652 +243755,527,Steven Spielberg,1251406651 +243755,527,World War II,1251406656 +243755,589,action,1251407321 +243755,589,Arnold Schwarzenegger,1251407325 +243755,589,assassin,1251407342 +243755,589,dystopia,1251407328 +243755,589,robots,1251407330 +243755,589,sci-fi,1251407353 +243755,589,stylized,1251407334 +243755,589,violence,1251407336 +243755,593,classic,1243713250 +243755,593,crime,1243713229 +243755,593,disturbing,1243713230 +243755,593,serial killer,1243713220 +243755,593,violent,1243713237 +243755,597,girlie movie,1242522878 +243755,597,Hollywood,1242522867 +243755,597,shopping,1242522871 +243755,608,black comedy,1269802575 +243755,608,Coen Brothers,1269802570 +243755,608,dark comedy,1269802569 +243755,608,quirky,1269802564 +243755,608,violent,1269802566 +243755,608,witty,1269802567 +243755,610,Adult Animation,1269435485 +243755,610,good versus evil,1269435481 +243755,610,surreal,1269435478 +243755,735,black comedy,1243713846 +243755,735,dark comedy,1243713842 +243755,735,humorous,1243713840 +243755,735,living dead,1243713870 +243755,735,Nudity (Topless - Notable),1243713875 +243755,735,Nudity (Topless),1243713860 +243755,735,stylized,1243713853 +243755,735,zombie,1243713854 +243755,735,zombies,1243713858 +243755,741,anime,1241554383 +243755,741,artificial intelligence,1241554376 +243755,741,Japan,1241554379 +243755,750,anti-war,1252613208 +243755,750,black comedy,1252613210 +243755,750,cold war,1252613188 +243755,750,nuclear war,1252613194 +243755,750,Quirky,1252613198 +243755,750,satire,1252613201 +243755,750,satirical,1252613215 +243755,750,Stanley Kubrick,1252613192 +243755,750,war,1252613205 +243755,762,Golden Raspberry (Worst Actress),1243714012 +243755,762,Golden Raspberry (Worst Picture),1243714021 +243755,762,nudity,1243714004 +243755,762,Nudity (Topless - Notable),1243714005 +243755,778,black comedy,1251407241 +243755,778,British,1251407217 +243755,778,Nudity (Full Frontal - Notable),1251407222 +243755,778,Nudity (Full Frontal),1251407226 +243755,778,violence,1251407231 +243755,778,violent,1251407238 +243755,858,Action,1241224800 +243755,858,Al Pacino,1241224793 +243755,858,Mafia,1241224822 +243755,858,Nudity (Topless),1243713557 +243755,858,robert de niro,1241224813 +243755,903,Alfred Hitchcock,1252614211 +243755,903,Hitchcock,1252614213 +243755,904,Alfred Hitchcock,1251407674 +243755,904,claustrophobic,1251407687 +243755,904,mystery,1251407678 +243755,904,suspense,1251407683 +243755,904,tense,1251407681 +243755,904,voyeurism,1251407688 +243755,908,Alfred Hitchcock,1241225777 +243755,908,Hitchcock,1241225773 +243755,912,atmospheric,1252613512 +243755,912,classic,1252613515 +243755,912,Film Noir,1252613506 +243755,912,Humphrey Bogart,1252613519 +243755,912,Nazis,1252613520 +243755,912,war,1252613510 +243755,913,gritty,1251408055 +243755,913,Humphrey Bogart,1251408052 +243755,913,stylized,1251408057 +243755,919,based on a book,1241226000 +243755,919,black and white,1241225987 +243755,919,musical,1241225991 +243755,968,brilliant ending,1251407895 +243755,968,creepy,1251407873 +243755,968,disturbing,1251407873 +243755,968,George A. Romero,1251407869 +243755,968,horror,1251407876 +243755,968,paranoid,1251407888 +243755,968,zombie,1251407883 +243755,968,zombies,1251407879 +243755,1036,action,1252613312 +243755,1036,Bruce Willis,1252613296 +243755,1036,christmas,1252613299 +243755,1036,claustrophobic,1252613303 +243755,1036,explosions,1252613285 +243755,1036,humorous,1252613293 +243755,1036,lone hero,1252613306 +243755,1036,thriller,1252613289 +243755,1080,British,1251407937 +243755,1080,comedy,1251407958 +243755,1080,controversial,1251407956 +243755,1080,hilarious,1251407943 +243755,1080,mockumentary,1251407953 +243755,1080,Monty Python,1251407940 +243755,1080,satire,1251407949 +243755,1080,satirical,1251407951 +243755,1080,Terry Gilliam,1251407946 +243755,1089,Quentin Tarantino,1241225068 +243755,1089,stylized,1241225081 +243755,1089,violence,1241225070 +243755,1136,British,1251407986 +243755,1136,british comedy,1251407967 +243755,1136,comedy,1251407982 +243755,1136,excellent dialogue,1251407989 +243755,1136,Monty Python,1251407970 +243755,1136,satire,1251407976 +243755,1136,satirical,1251407979 +243755,1136,Terry Gilliam,1251407974 +243755,1178,anti-war,1251407842 +243755,1178,Best War Films,1251407826 +243755,1178,bleak,1251407824 +243755,1178,cynical,1251407830 +243755,1178,disturbing,1251407819 +243755,1178,military,1251407832 +243755,1178,Stanley Kubrick,1251407836 +243755,1178,war,1251407840 +243755,1196,action,1251406573 +243755,1196,adventure,1251406576 +243755,1196,George Lucas,1251406570 +243755,1196,Harrison Ford,1251406579 +243755,1196,sci-fi,1251406585 +243755,1196,space,1251406583 +243755,1198,action,1251407724 +243755,1198,adventure,1251407727 +243755,1198,Harrison Ford,1251407720 +243755,1198,Nazis,1251407713 +243755,1198,Steven Spielberg,1251407715 +243755,1198,World War II,1251407718 +243755,1199,black comedy,1261155832 +243755,1199,dystopia,1261155822 +243755,1199,quirky,1261155830 +243755,1199,Robert De Niro,1261155860 +243755,1199,satire,1261155848 +243755,1199,satirical,1261155826 +243755,1199,sci-fi,1261155827 +243755,1199,stylized,1261155829 +243755,1199,surreal,1261155846 +243755,1199,Terry Gilliam,1261155824 +243755,1199,thought-provoking,1261155855 +243755,1200,action,1252613885 +243755,1200,sci-fi,1252613872 +243755,1200,violent,1252613876 +243755,1201,Clint Eastwood,1241225846 +243755,1201,Ennio Morricone,1241225843 +243755,1201,Sergio Leone,1241225849 +243755,1206,controversial,1252613434 +243755,1206,cult film,1244236365 +243755,1206,disturbing,1244236362 +243755,1206,Nudity (Full Frontal),1244236359 +243755,1206,quirky,1244236367 +243755,1206,satire,1252613425 +243755,1206,satirical,1252613429 +243755,1206,Stanley Kubrick,1252613416 +243755,1206,stylized,1252613420 +243755,1206,violence,1244236369 +243755,1208,disturbing,1243713622 +243755,1208,Vietnam war,1243713659 +243755,1208,violent,1243713659 +243755,1208,war,1243713667 +243755,1209,Clint Eastwood,1241225207 +243755,1209,Ennio Morricone,1241225206 +243755,1209,Sergio Leone,1241225209 +243755,1209,Spaghetti Western,1241225212 +243755,1210,action,1251407438 +243755,1210,adventure,1251407441 +243755,1210,George Lucas,1251407420 +243755,1210,Harrison Ford,1251407417 +243755,1210,sci-fi,1251407432 +243755,1210,space,1251407424 +243755,1210,Star Wars,1251407422 +243755,1210,superhero,1251407425 +243755,1210,violent,1251407427 +243755,1210,war,1251407430 +243755,1214,aliens,1252613913 +243755,1214,futuristic,1252613911 +243755,1214,sci-fi,1252613907 +243755,1214,suspense,1252613903 +243755,1218,Chow Yun Fat,1241224894 +243755,1218,Good asian violence flick,1241224911 +243755,1218,gun fu,1241224901 +243755,1218,John Woo,1241224897 +243755,1218,stylized,1241224899 +243755,1219,Alfred Hitchcock,1251407745 +243755,1219,classic,1251407739 +243755,1219,creepy,1251407742 +243755,1219,horror,1251407736 +243755,1219,macabre,1251407748 +243755,1219,psychology,1251407755 +243755,1219,serial killer,1251407733 +243755,1219,tense,1251407751 +243755,1219,thriller,1251407752 +243755,1220,classic,1252613613 +243755,1220,great soundtrack,1252613617 +243755,1221,Al Pacino,1251494848 +243755,1221,Epic,1251494856 +243755,1221,mafia,1251494850 +243755,1221,Robert De Niro,1251494853 +243755,1222,political,1251406885 +243755,1222,Stanley Kubrick,1251406874 +243755,1222,Vietnam,1251406869 +243755,1222,Vietnam War,1251406870 +243755,1222,vietnam war based movie,1251406878 +243755,1222,war,1251406891 +243755,1222,wartime,1251406894 +243755,1240,Arnold Schwarzenegger,1241226062 +243755,1240,James Cameron,1241226074 +243755,1240,Nudity (Topless),1243713710 +243755,1240,sci-fi,1241226067 +243755,1241,awesome zombie flick,1242996922 +243755,1241,cult film,1242996919 +243755,1241,Peter Jackson,1252613337 +243755,1241,zombie,1242996943 +243755,1241,zombies,1242996942 +243755,1249,action,1252613058 +243755,1249,assassin,1252613061 +243755,1249,France,1252613073 +243755,1249,French,1252613071 +243755,1249,hit men,1252613075 +243755,1249,Jean Reno,1252613079 +243755,1249,Nudity (Topless - Brief),1252613083 +243755,1249,stylized,1252613085 +243755,1249,tense,1252613090 +243755,1252,Exceptional Acting,1269736833 +243755,1252,Film Noir,1269736820 +243755,1252,imdb top 250,1269736844 +243755,1252,Jack Nicholson,1269736827 +243755,1252,private detective,1269736822 +243755,1252,Roman Polanski,1269736830 +243755,1255,cult film,1252613794 +243755,1255,Peter Jackson,1252613796 +243755,1261,black comedy,1252613171 +243755,1261,Bruce Campbell,1252613167 +243755,1261,cult classic,1252613160 +243755,1261,cult film,1252613160 +243755,1261,dark humor,1252613164 +243755,1261,humorous,1252613157 +243755,1261,Sam Raimi,1252613151 +243755,1261,stylized,1252613175 +243755,1261,zombie,1252613157 +243755,1261,zombies,1252613154 +243755,1275,Nudity (Topless - Brief),1251494716 +243755,1275,Nudity (Topless),1251494718 +243755,1275,Sean Connery,1251494709 +243755,1284,Great Screenplays,1252613708 +243755,1284,Humphrey Bogart,1252613699 +243755,1284,noir,1252613697 +243755,1334,campy,1242521899 +243755,1334,Steve McQueen,1242521902 +243755,1359,Arnold Schwarzenegger,1242522648 +243755,1374,Science Fiction,1251407449 +243755,1374,space,1251407452 +243755,1374,space opera,1251407454 +243755,1374,Star Trek,1251407457 +243755,1387,creepy,1251494500 +243755,1387,scary,1251494495 +243755,1387,Steven Spielberg,1251494490 +243755,1483,David Cronenberg,1269207799 +243755,1483,disturbing,1269207795 +243755,1483,NC-17,1269207790 +243755,1483,Nudity (Full Frontal - Notable),1269207785 +243755,1483,Nudity (Full Frontal),1269207781 +243755,1483,sex scenes,1269207778 +243755,1483,sexuality,1269207776 +243755,1483,sexualized violence,1269207773 +243755,1500,classic,1243714224 +243755,1500,dark comedy,1243714206 +243755,1500,dialogue,1243714213 +243755,1500,good acting,1243714210 +243755,1732,black comedy,1252613732 +243755,1732,Coen Brothers,1252613728 +243755,1732,Cult classic,1252613735 +243755,1732,cult film,1252613730 +243755,1732,Nudity (Full Frontal),1252613724 +243755,1732,quirky,1252613741 +243755,1732,satirical,1252613739 +243755,1732,violence,1252613742 +243755,1748,dystopia,1269789560 +243755,1748,mindfuck,1269789557 +243755,1748,Nudity (Topless),1269789549 +243755,1748,Post apocalyptic,1269789551 +243755,1748,sci-fi,1269789554 +243755,1748,stylized,1269789547 +243755,1862,Nudity (Full Frontal),1243766792 +243755,1954,boxing,1251407613 +243755,1954,Inspirational,1251407616 +243755,1954,romance,1251407621 +243755,1954,Sylvester Stallone,1251407607 +243755,1961,Dustin Hoffman,1251407696 +243755,1961,Exceptional Acting,1251407701 +243755,1961,mental illness,1251407694 +243755,1965,black comedy,1269451926 +243755,1965,cult classic,1269451929 +243755,1965,dark comedy,1269451923 +243755,1965,notable soundtrack,1269451918 +243755,1965,surreal,1269451911 +243755,1968,coming of age,1252613562 +243755,1968,coming-of-age,1252613558 +243755,1968,cult film,1252613554 +243755,2000,action,1251494237 +243755,2000,nudity,1251494231 +243755,2000,Nudity (Topless),1251494227 +243755,2001,action packed,1242522729 +243755,2001,Mel Gibson,1242522724 +243755,2001,Nudity (Topless),1242522727 +243755,2003,Gizmo,1242523732 +243755,2019,action,1241224980 +243755,2019,Japan,1241554141 +243755,2019,samurai,1241224984 +243755,2019,stylized,1241554145 +243755,2028,action,1251407579 +243755,2028,disturbing,1251407579 +243755,2028,enormously long battle scene,1251407583 +243755,2028,historical,1251407597 +243755,2028,history,1251407594 +243755,2028,Steven Spielberg,1251407579 +243755,2028,stylized,1251407585 +243755,2028,violent,1251407588 +243755,2028,war,1251407579 +243755,2028,World War II,1251407578 +243755,2076,David Lynch,1279112060 +243755,2076,disturbing,1279112066 +243755,2076,Nudity (Full Frontal - Notable),1279112089 +243755,2076,Nudity (Full Frontal),1279112071 +243755,2076,quirky,1279112069 +243755,2076,sexual,1279112048 +243755,2076,sexuality,1279112047 +243755,2076,surreal,1279112049 +243755,2194,1930s,1251407163 +243755,2194,Brian DePalma,1251407167 +243755,2194,Ennio Morricone,1251407160 +243755,2194,Gangster,1251407169 +243755,2194,gangsters,1251407172 +243755,2194,historically inaccurate,1251407175 +243755,2194,mafia,1251407151 +243755,2194,Robert De Niro,1251407157 +243755,2194,Sean Connery,1251407155 +243755,2288,blood,1251407262 +243755,2288,disturbing,1251407264 +243755,2288,horror,1251407268 +243755,2288,John Carpenter,1251407252 +243755,2288,Kurt Russell,1251407256 +243755,2329,disturbing,1243713596 +243755,2329,Edward Norton,1243713593 +243755,2329,emotional,1243713592 +243755,2329,powerful ending,1243713578 +243755,2329,thought-provoking,1243713580 +243755,2360,dark comedy,1251406920 +243755,2360,Nudity (Topless - Brief),1251406932 +243755,2360,Nudity (Topless),1251406940 +243755,2360,Ulrich Thomsen,1251406926 +243755,2363,anti-war,1251406853 +243755,2363,giant monster,1251406857 +243755,2363,Japan,1251406862 +243755,2363,nuclear,1241225893 +243755,2403,Sylvester Stallone,1252612994 +243755,2404,Sylvester Stallone,1242522982 +243755,2542,black comedy,1251408100 +243755,2542,British,1251408098 +243755,2542,dark comedy,1251408095 +243755,2542,Funny as hell,1251408119 +243755,2542,gunfight,1251408122 +243755,2542,hilarious,1251408116 +243755,2542,Nudity (Topless),1251408112 +243755,2542,organized crime,1251408103 +243755,2542,Unique,1251408107 +243755,2542,violence,1251408110 +243755,2571,Action,1251408014 +243755,2571,alternate reality,1251408011 +243755,2571,atmospheric,1251408007 +243755,2571,cult film,1251408005 +243755,2571,dystopia,1251407993 +243755,2571,post-apocalyptic,1251408002 +243755,2571,sci-fi,1251407994 +243755,2571,stylized,1251407998 +243755,2571,surreal,1251408000 +243755,2616,Al Pacino,1242523587 +243755,2706,Nudity (Topless - Notable),1243713909 +243755,2858,black comedy,1252613829 +243755,2858,coming of age,1252613832 +243755,2858,dark comedy,1252613835 +243755,2858,Kevin Spacey,1252613827 +243755,2858,Nudity (Topless - Notable),1252613837 +243755,2858,powerful ending,1252613842 +243755,2858,satirical,1252613845 +243755,2858,sexuality,1252613849 +243755,2858,surrealism,1252613852 +243755,2858,thought-provoking,1252613854 +243755,2858,violence,1252613857 +243755,2905,Japan,1241554121 +243755,2905,japanese,1241554125 +243755,2905,samurai,1241554127 +243755,2959,action,1252613023 +243755,2959,Brad Pitt,1252613020 +243755,2959,dark comedy,1252613026 +243755,2959,Edward Norton,1252613016 +243755,2959,philosophy,1252613031 +243755,2959,quirky,1252613038 +243755,2959,satirical,1252613043 +243755,2959,social commentary,1252613040 +243755,2959,surreal,1252613045 +243755,2959,thought-provoking,1252613034 +243755,2959,violence,1252613020 +243755,2985,android(s)/cyborg(s),1241225352 +243755,2985,Paul Verhoeven,1241225358 +243755,3016,George A. Romero,1242522190 +243755,3030,Akira Kurosawa,1252614073 +243755,3030,atmospheric,1252614074 +243755,3030,Japan,1241224955 +243755,3030,samurai,1241554579 +243755,3030,sword fighting,1241224938 +243755,3030,Toshiro Mifune,1252614069 +243755,3032,I am Legend,1243787087 +243755,3032,last man on earth,1243787092 +243755,3032,Nudity (Topless),1243787100 +243755,3032,Post apocalyptic,1243787098 +243755,3032,post-apocalyptic,1243787095 +243755,3075,atmospheric,1251407630 +243755,3075,gruesome,1251407634 +243755,3075,insanity,1251407649 +243755,3075,loneliness,1251407646 +243755,3075,MENTAL ILLNESS,1251407640 +243755,3075,Roman Polanski,1251407639 +243755,3108,Gilliam,1252612977 +243755,3108,Terry Gilliam,1252612981 +243755,3147,emotional,1251494834 +243755,3147,Stephen King,1251494836 +243755,3147,Tom Hanks,1251494838 +243755,3224,Nudity (Topless),1252614130 +243755,3224,psychology,1252614127 +243755,3252,Al Pacino,1251407520 +243755,3252,dialogue,1251407524 +243755,3252,great acting,1251407527 +243755,3265,Chow Yun Fat,1241224862 +243755,3265,explosions,1241224869 +243755,3265,gun fu,1241224871 +243755,3265,John Woo,1241224864 +243755,3275,dark humor,1252613585 +243755,3275,insanity,1252613587 +243755,3275,Irish,1252613590 +243755,3275,Nudity (Topless),1252613575 +243755,3275,stylized,1252613583 +243755,3275,vigilante,1252613581 +243755,3275,vigilantism,1252613578 +243755,3301,Bruce Willis,1243713934 +243755,3301,Matthew Perry,1243713936 +243755,3301,murder,1243713939 +243755,3301,Nudity (Topless - Notable),1243713928 +243755,3633,007,1251406614 +243755,3633,007 (series),1251406616 +243755,3633,assassin,1251406620 +243755,3633,bond,1251406632 +243755,3633,George Lazenby,1251406623 +243755,3633,James Bond,1251406625 +243755,3638,007,1242522810 +243755,3638,James Bond,1242522813 +243755,3638,Roger Moore,1242522822 +243755,3692,Troma,1241225427 +243755,3698,Arnold Schwarzenegger,1242523064 +243755,3702,dystopia,1243787078 +243755,3702,post apocalyptic,1243787070 +243755,3702,post-apocalyptic,1243787067 +243755,3703,Mel Gibson,1243786934 +243755,3703,Nudity (Topless),1243786930 +243755,3703,Post apocalyptic,1243786924 +243755,3703,post-apocalyptic,1243786912 +243755,3760,George Lazenby,1242522765 +243755,3760,Nudity (Topless),1242522766 +243755,3788,artistic,1268077535 +243755,3788,atmospheric,1268077532 +243755,3788,Nudity (Full Frontal),1268077518 +243755,3788,Nudity (Topless),1268077522 +243755,3788,stylized,1268077509 +243755,3793,action,1252614111 +243755,3793,psychological,1252614115 +243755,3793,psychology,1252614116 +243755,3793,sci-fi,1252614099 +243755,3793,super-hero,1252614105 +243755,3793,superhero,1252614102 +243755,3793,violence,1252614108 +243755,3994,atmospheric,1251407202 +243755,3994,Bruce Willis,1251407182 +243755,3994,Samuel L. Jackson,1251407185 +243755,3994,super-hero,1251407196 +243755,3994,superhero,1251407194 +243755,3994,twist ending,1251407201 +243755,4105,action,1252613128 +243755,4105,Bruce Campbell,1252613118 +243755,4105,controversial,1252613132 +243755,4105,Cult classic,1252613105 +243755,4105,cult film,1252613109 +243755,4105,dark humor,1252613112 +243755,4105,Nudity (Topless - Brief),1252613113 +243755,4105,splatter,1252613138 +243755,4105,zombie,1252613125 +243755,4105,zombies,1252613121 +243755,4226,cult film,1251406720 +243755,4226,Mindfuck,1251406712 +243755,4226,mystery,1251406713 +243755,4226,nonlinear,1251406708 +243755,4226,stylized,1251406717 +243755,4226,twist ending,1251406705 +243755,4262,Al Pacino,1241226233 +243755,4262,mafia,1241226234 +243755,4262,organized crime,1241226235 +243755,4262,violence,1241226237 +243755,4367,boring,1241225624 +243755,4580,Jean-Claude Van Damme,1242522023 +243755,4789,Brian De Palma,1297605515 +243755,4852,Snoop Dogg,1241225403 +243755,4855,Clint Eastwood,1252613251 +243755,4855,gritty,1252613266 +243755,4855,Nudity (Full Frontal - Brief),1252613254 +243755,4855,revenge,1252613262 +243755,4855,visceral,1252613259 +243755,4878,psychology,1252613229 +243755,4878,satirical,1252613240 +243755,4878,sci-fi,1252613238 +243755,4878,social commentary,1252613236 +243755,4878,stylized,1252613233 +243755,5160,zombie,1242521757 +243755,5165,creepy,1252613971 +243755,5165,disturbing,1252613969 +243755,5165,Lucio Fulci,1252613966 +243755,5165,zombie,1252613960 +243755,5165,ZOMBIES,1252613963 +243755,5283,Nudity (Topless),1252614234 +243755,5283,R,1252614237 +243755,5283,Tara Reid,1252614246 +243755,5382,Clint Eastwood,1242522246 +243755,5464,1930s,1304160321 +243755,5464,assassin,1304160323 +243755,5464,organized crime,1304160328 +243755,5464,Paul Newman,1304160336 +243755,5464,revenge,1304160334 +243755,5464,violence,1304160313 +243755,5464,violent,1304160315 +243755,5498,Akira Kurosawa,1251407655 +243755,5498,intimate,1251407658 +243755,5498,Japan,1251407660 +243755,5498,meaning of life,1251407662 +243755,5498,Toshirô Mifune,1251407667 +243755,5498,Toshiro Mifune,1251407664 +243755,5502,Mel Gibson,1242523089 +243755,5502,silly,1242523100 +243755,5502,stupid,1242523103 +243755,5507,Samuel L. Jackson,1242523156 +243755,5507,Vin Diesel,1242523158 +243755,5632,confrontational,1252613674 +243755,5632,R,1252613681 +243755,5903,bullet ballet,1242523631 +243755,5903,Christian Bale,1242523630 +243755,5903,gun fu,1242523626 +243755,5903,gunfight,1242523625 +243755,5903,R,1242523622 +243755,5952,Action,1251408072 +243755,5952,adventure,1251408069 +243755,5952,atmospheric,1251408066 +243755,5952,Peter Jackson,1251408063 +243755,5952,war,1251408075 +243755,5980,creepy,1242521990 +243755,5980,disturbing,1242521991 +243755,5989,Christopher Walken,1242523534 +243755,5989,Tom Hanks,1242523538 +243755,6184,atmospheric,1251408045 +243755,6184,David Bowie,1251408041 +243755,6184,Nudity (Full Frontal - Notable),1251408030 +243755,6184,Nudity (Full Frontal),1251408032 +243755,6184,quirky,1251408019 +243755,6184,satirical,1251408027 +243755,6184,stylized,1251408023 +243755,6184,surreal,1251408023 +243755,6283,anime,1241553929 +243755,6283,gritty,1241553950 +243755,6283,humorous,1241553948 +243755,6283,Sexualized violence,1241553942 +243755,6294,Chow Yun Fat,1242523514 +243755,6300,Anders Thomas Jensen,1241553810 +243755,6300,dark comedy,1241553813 +243755,6378,action,1242522662 +243755,6378,Edward Norton,1242522658 +243755,6378,heist,1242522666 +243755,6378,Jason Statham,1242522659 +243755,6378,remake,1242522669 +243755,6502,British,1243786790 +243755,6502,horror,1243786793 +243755,6502,Post apocalyptic,1243786820 +243755,6502,sci-fi,1243786802 +243755,6502,Zombie,1243786798 +243755,6502,zombies,1243786794 +243755,6506,gun fu,1241553971 +243755,6534,adapted from:comic,1242522399 +243755,6534,comic book,1242522366 +243755,6534,mad scientist,1242522374 +243755,6534,super-hero,1242522382 +243755,6534,superhero,1242522385 +243755,6722,Donnie Yen,1251407854 +243755,6722,Jet Li,1251407851 +243755,6722,wuxia,1251407857 +243755,6807,British,1243712277 +243755,6807,british comedy,1243712292 +243755,6807,Monty Python,1243712296 +243755,6807,Nudity (Topless - Brief),1243712289 +243755,6857,anime,1241554068 +243755,6857,dark hero,1241554069 +243755,6857,martial arts,1241554073 +243755,6857,Sexualized violence,1241554081 +243755,6874,action,1251494385 +243755,6874,assassin,1251494387 +243755,6874,Japan,1251494390 +243755,6874,katana,1251494392 +243755,6874,martial arts,1251494395 +243755,6874,Quentin Tarantino,1251494398 +243755,6874,quirky,1251494401 +243755,6874,revenge,1251494403 +243755,6874,stylized,1251494407 +243755,6874,Tarantino,1251494410 +243755,6874,violence,1251494412 +243755,6874,violent,1251494414 +243755,6936,Zooey Deschanel,1251642440 +243755,6957,black comedy,1242523297 +243755,6957,heist,1242523292 +243755,6995,Arnold Schwarzenegger,1242521496 +243755,6995,Cheese,1242521498 +243755,7022,controversial,1241225954 +243755,7022,goretastic,1241225955 +243755,7022,Japan,1241225952 +243755,7022,Takeshi Kitano,1241225964 +243755,7143,Japan,1241554498 +243755,7143,R:strong graphic battles,1241554488 +243755,7143,sword fight,1241554494 +243755,7235,disturbing,1241553708 +243755,7235,extremely violent,1241225685 +243755,7235,stylized,1241553720 +243755,7235,Takashi Miike,1241225679 +243755,7265,1960s,1261322090 +243755,7265,french,1261322086 +243755,7265,NC-17,1261322061 +243755,7265,Nudity (Full Frontal - Notable),1261322061 +243755,7265,Nudity (Full Frontal),1261322061 +243755,7360,gory fun,1242522094 +243755,7360,R,1242522090 +243755,7360,remake,1242522086 +243755,7360,zombie,1242522082 +243755,7360,zombies,1242522083 +243755,7387,action,1241225014 +243755,7387,END OF THE WORLD,1241225010 +243755,7387,George A. Romero,1241224999 +243755,7387,Goblin,1241225004 +243755,7387,zombies,1241225008 +243755,7438,action,1251494349 +243755,7438,adventure,1251494354 +243755,7438,atmospheric,1251494351 +243755,7438,Japan,1251494375 +243755,7438,kung fu,1251494345 +243755,7438,martial arts,1251494358 +243755,7438,Quentin Tarantino,1251494338 +243755,7438,revenge,1251494342 +243755,7438,spaghetti western,1251494372 +243755,7438,stylized,1251494370 +243755,7438,Tarantino,1251494361 +243755,7438,violence,1251494365 +243755,7438,violent,1251494368 +243755,7482,Bruce Lee,1279453353 +243755,7482,kung fu,1279453366 +243755,7482,martial arts,1279453367 +243755,7482,Martial Arts flick,1279453358 +243755,7482,Nudity (Topless),1279453346 +243755,7569,007,1252614036 +243755,7569,007 (series),1252614040 +243755,7569,Bond,1252614040 +243755,7569,james bond,1252614043 +243755,7569,japan,1252614047 +243755,7569,Sean Connery,1252614050 +243755,7924,guns,1241554168 +243755,7924,Japan,1241554159 +243755,7924,tense,1241554178 +243755,7925,Akira Kurosawa,1251494756 +243755,7925,Japan,1251494759 +243755,7925,Kurosawa,1251494761 +243755,7925,samurai,1251494766 +243755,7925,Toshirô Mifune,1251494771 +243755,7925,Toshirô Mifune,1251494786 +243755,7925,Toshiro Mifune,1251494768 +243755,7926,Akira Kurosawa,1251494725 +243755,7926,bleak,1251494743 +243755,7926,disturbing,1251494749 +243755,7926,ethics,1251494746 +243755,7926,Japan,1251494728 +243755,7926,Kurosawa,1251494729 +243755,7926,Toho,1251494740 +243755,7926,Toshirô Mifune,1251494737 +243755,7926,Toshiro Mifune,1251494733 +243755,7981,better than the american version,1251494583 +243755,7981,gritty,1251494605 +243755,7981,inspirational,1251494587 +243755,7981,slick,1251494610 +243755,7981,stylized,1251494595 +243755,7981,tense,1251494601 +243755,8142,Takashi Miike,1241553753 +243755,8157,alternate history,1251494465 +243755,8157,anime,1251494462 +243755,8157,Japan,1251494474 +243755,8157,World War II,1251494485 +243755,8361,propaganda,1241225457 +243755,8361,unintentional comedy,1241225461 +243755,8370,cgi blood,1241554617 +243755,8370,Japan,1241554622 +243755,8370,R,1241554609 +243755,8370,sword fight,1241554624 +243755,8666,Halle Berry,1242521517 +243755,8666,heroine in tight suit,1242521523 +243755,8666,super-hero,1242521537 +243755,8874,black comedy,1241225036 +243755,8874,Edgar Wright,1241225039 +243755,8874,gore,1241225051 +243755,8874,Simon Pegg,1241225041 +243755,8874,zombie,1241225045 +243755,8874,zombies,1241225046 +243755,8947,ghost story,1242522305 +243755,8947,ghosts,1242522310 +243755,8947,japan,1242522273 +243755,8947,not remotely scary,1242522277 +243755,8947,remake,1242522280 +243755,8947,unintentional comedy,1242522282 +243755,26082,bleak,1251494814 +243755,26082,Japan,1251494818 +243755,26082,japanese,1251494820 +243755,26082,Tatsuya Nakadai,1251494823 +243755,26082,tense,1251494827 +243755,26169,Criterion,1251406998 +243755,26269,Lone Wolf and Cub series,1241554510 +243755,26269,samurai,1241554513 +243755,26270,Lone Wolf and Cub series,1241554036 +243755,26270,samurai,1241554037 +243755,26476,David Bowie,1241554534 +243755,26476,Takeshi Kitano,1241554541 +243755,26585,Chow Yun Fat,1242523439 +243755,26585,gun fu,1242523445 +243755,26585,John Woo,1242523443 +243755,27109,revenge,1241554438 +243755,27109,samurai,1241554439 +243755,27317,disturbing,1241553661 +243755,27317,stylized,1241553663 +243755,27317,Takashi Miike,1241225712 +243755,27397,Chan-wook Park,1241556249 +243755,27397,korea,1241556220 +243755,27480,Takashi Miike,1241225698 +243755,27592,brutal,1241556291 +243755,27592,Chan-wook Park,1241556294 +243755,27592,revenge,1241556296 +243755,27592,stylized,1241556307 +243755,27592,vengeance,1241556297 +243755,27592,violent,1241556298 +243755,27604,humor,1241554556 +243755,27604,japan,1241554553 +243755,27611,sci-fi,1252613757 +243755,27716,Anders Thomas Jensen,1241553823 +243755,27728,anime,1241554401 +243755,27728,controversial,1241554402 +243755,27773,Chan-wook Park,1241556271 +243755,27773,disturbing,1241556273 +243755,27773,Korea,1241556280 +243755,27773,Korean,1241556276 +243755,27773,revenge,1241556274 +243755,27773,stylized,1241556277 +243755,27788,complex,1243713442 +243755,27788,mindfuck,1243713446 +243755,27788,R,1243713447 +243755,27831,british,1251494263 +243755,27831,British gangster,1251494257 +243755,27831,caper movie,1251494258 +243755,27831,Nudity (Topless),1251494253 +243755,27865,assassin,1241554346 +243755,27865,ninja,1241554352 +243755,27865,sword fighting,1241554340 +243755,27865,teenage girl,1241554348 +243755,27905,japanese,1241225594 +243755,27905,Japanese Madness,1241225599 +243755,31270,David Cronenberg,1269207823 +243755,31270,Nudity (Topless),1269207825 +243755,31685,Kevin James,1242522471 +243755,31685,men being taught how to woo,1242522476 +243755,31685,Will Smith,1242522465 +243755,31878,kung fu,1251494291 +243755,31878,martial arts,1251494281 +243755,31878,Stephen Chow,1251494287 +243755,32387,Japan,1251407367 +243755,32387,samurai,1251407361 +243755,32387,Tatsuya Nakadai,1251407356 +243755,32387,Toshirô Mifune,1251407368 +243755,32387,Toshiro Mifune,1251407375 +243755,32587,Action,1241226142 +243755,32587,Bruce Willis,1241226130 +243755,32587,Quentin Tarantino,1241226131 +243755,32587,Sci-Fi,1241226138 +243755,32587,stylized,1241226133 +243755,32587,violence,1241226139 +243755,33004,americanized movies,1251642511 +243755,33004,dumbed down,1251642509 +243755,33004,post-apocalyptic,1251642506 +243755,33004,sci-fi,1251642503 +243755,33004,Zooey Deschanel,1251642500 +243755,33794,action,1252613780 +243755,33794,Christian Bale,1252613775 +243755,33794,stylized,1252613786 +243755,33794,vigilante,1252613778 +243755,34319,product placement,1241225253 +243755,34319,Scarlett Johansson,1241225260 +243755,34319,scifi,1241225268 +243755,34332,Bruce Campbell,1242523001 +243755,37380,based on a video game,1242521665 +243755,38061,black comedy,1243713309 +243755,38061,Film Noir,1243713314 +243755,38061,great dialouge,1243713307 +243755,38061,mystery,1243713319 +243755,38061,satire,1243713297 +243755,38061,smart writing,1243713303 +243755,38061,witty,1243713304 +243755,39715,really crappy sequel,1241225521 +243755,41569,1920s,1251494326 +243755,41569,adventure,1251494303 +243755,41569,long action scenes,1251494314 +243755,41569,monster,1251494320 +243755,41569,Peter Jackson,1251494308 +243755,41997,Action,1251407916 +243755,41997,assassin,1251407919 +243755,41997,assassination,1251407924 +243755,41997,Nudity (Full Frontal),1251407927 +243755,41997,Steven Spielberg,1251407900 +243755,41997,thought-provoking,1251407930 +243755,41997,true story,1251407904 +243755,41997,violence,1251407907 +243755,41997,War,1251407910 +243755,42632,Chan-wook Park,1241554018 +243755,42632,disturbing,1241554006 +243755,42632,R,1241554009 +243755,42632,revenge,1241554010 +243755,42632,stylized,1241554013 +243755,42723,Disappointing,1242522518 +243755,42723,disturbing,1242522507 +243755,42723,goretastic,1242522508 +243755,42723,stupid stereotypes,1242522522 +243755,43928,campy,1242521811 +243755,43928,sci-fi,1242521796 +243755,43928,stupid,1242521803 +243755,43928,stylized,1242521800 +243755,44191,comic book,1241226031 +243755,44191,dystopia,1241226034 +243755,44191,revenge,1241226035 +243755,44191,super-hero,1241226037 +243755,44397,gore,1242522442 +243755,44397,remake,1242522445 +243755,46976,Dustin Hoffman,1251407393 +243755,46976,surreal,1251407387 +243755,47491,Anders Thomas Jensen,1241553798 +243755,48304,disappointing,1242523225 +243755,48304,Mel Gibson,1242523237 +243755,48304,R,1242523229 +243755,48304,wallows in violence,1242523222 +243755,48774,apocalypse,1242523474 +243755,48774,christianity,1242523484 +243755,48774,Clive Owen,1242523462 +243755,48774,dystopia,1242523471 +243755,48774,end of the world,1242523469 +243755,48774,gritty,1242523477 +243755,48774,sci-fi,1242523465 +243755,49272,007,1252613448 +243755,49272,action,1252613451 +243755,49272,assassin,1252613454 +243755,49272,James Bond,1252613445 +243755,49272,spies,1252613456 +243755,50514,Nudity (Topless - Brief),1252613926 +243755,50514,R,1252613924 +243755,50794,hitman,1244928745 +243755,50794,humorous,1244928741 +243755,50794,Nudity (Topless),1244928754 +243755,50794,Ray Liotta,1244928733 +243755,50794,Violently silly,1244928730 +243755,51077,based on a comic,1242522329 +243755,51077,Comic Book,1242522331 +243755,51255,action,1251494653 +243755,51255,black comedy,1251494656 +243755,51255,british comedy,1251494656 +243755,51255,dystopia,1251494664 +243755,51255,macabre,1251494668 +243755,51255,murder,1251494671 +243755,51255,Simon Pegg,1251494661 +243755,51255,surreal,1251494676 +243755,51277,Gordon Liu,1252613944 +243755,51277,kung fu,1252613942 +243755,51277,martial arts,1252613938 +243755,51662,action,1243713819 +243755,51662,action packed,1243713818 +243755,51662,extremely violent,1243713811 +243755,51662,male nudity,1243713802 +243755,51662,Nudity (Topless),1243713795 +243755,51662,sword fight,1243713806 +243755,51709,Korea,1251494701 +243755,51709,monster,1251494689 +243755,51709,R,1251494693 +243755,52042,Beautiful Woman,1251407004 +243755,52042,espionage,1251407056 +243755,52042,Nudity (Full Frontal - Notable),1251407013 +243755,52042,Nudity (Rear - Brief),1251407034 +243755,52042,Nudity (Rear),1251407020 +243755,52042,Nudity (Topless - Notable),1251407016 +243755,52042,Nudity (Topless),1251407030 +243755,52042,Paul Verhoeven,1283784908 +243755,52042,resistance movement,1251407049 +243755,52042,WOMEN DURING WARTIME,1251407046 +243755,52042,World War II,1251407044 +243755,52973,absolutely hilarious,1242521310 +243755,52973,drugs,1242521356 +243755,52973,Judd Apatow,1242521315 +243755,52973,marijuana,1242521325 +243755,52973,Nudity (Topless),1242521350 +243755,52973,Seth Rogen,1242521318 +243755,53000,post-apocalyptic,1243787023 +243755,53000,zombies,1243787025 +243755,53161,Chan-wook Park,1241225817 +243755,53318,alternate reality,1252613489 +243755,53318,boobs,1252613477 +243755,53318,british,1252613482 +243755,53318,cult film,1252613485 +243755,53318,notable nudity,1252613480 +243755,53318,Nudity (Full Frontal),1252613471 +243755,53318,surrealism,1252613474 +243755,54503,comedy,1242521391 +243755,54503,Good acting,1242521403 +243755,54503,Michael Cera,1242521393 +243755,54503,nerds,1242521401 +243755,54503,Seth Rogen,1242521395 +243755,54503,Teen movie,1242521414 +243755,54995,Bruce Willis,1241226281 +243755,54995,crude humor,1241226279 +243755,54995,Robert Rodriguez,1241226277 +243755,54995,zombies,1241226294 +243755,54999,Clive Owen,1241226211 +243755,54999,gun fu,1241226183 +243755,54999,gunfight,1241226221 +243755,54999,R,1241226201 +243755,54999,ultra-violence,1241226205 +243755,55232,Ali Larter,1243787145 +243755,55232,post-apocalyptic,1243787152 +243755,55232,R,1243787135 +243755,55232,zombies,1243787137 +243755,55553,mad scientist,1242523397 +243755,55553,Zombies,1242523387 +243755,56174,alone in the world,1243787047 +243755,56174,apocalypse,1243787048 +243755,56174,Post apocalyptic,1243787059 +243755,56174,post-apocalyptic,1243787052 +243755,56174,zombies,1243787054 +243755,56367,cult film,1251494433 +243755,56367,Ellen Page,1251494435 +243755,56367,excellent dialogue,1251494438 +243755,56367,excellent script,1251494443 +243755,56367,hilarious,1251494448 +243755,56367,humor,1251494451 +243755,56367,witty,1251494455 +243755,56921,sci-fi,1242521976 +243755,56921,space,1242521979 +243755,57368,alien monster,1252613384 +243755,57368,Below R,1252613389 +243755,57368,city under attack,1252613392 +243755,57368,giant monster,1252613395 +243755,57368,sci-fi,1252613402 +243755,57528,lots of blood,1241225316 +243755,57528,R,1241225326 +243755,57528,Sylvester Stallone,1241225323 +243755,57669,assassin,1251494637 +243755,57669,dark comedy,1251494617 +243755,57669,foul language,1251494620 +243755,57669,irish accent,1251494628 +243755,57669,stylized,1251494634 +243755,57669,violent,1251494630 +243755,58297,apocalypse,1242522121 +243755,58297,post-apocalyptic,1242522123 +243755,58297,unintentional comedy,1242522127 +243755,58559,action,1241225928 +243755,58559,Batman,1241225916 +243755,58559,gritty,1241225926 +243755,58559,superhero,1241225937 +243755,58998,Nudity (Topless - Brief),1252612952 +243755,58998,Nudity (Topless),1252612950 +243755,59315,adventure,1251494551 +243755,59315,android(s)/cyborg(s),1251494556 +243755,59315,comic book,1251494559 +243755,59315,Marvel,1251494563 +243755,59315,superhero,1251494567 +243755,59315,technology,1251494576 +243755,59369,action,1241553392 +243755,60037,Bad Science,1251642491 +243755,60037,R,1243112749 +243755,60037,Zooey Deschanel,1251642483 +243755,60074,bad ending,1242522572 +243755,60074,bad script,1242522596 +243755,60074,better than expected,1242522591 +243755,60074,mentor/trainer,1242522584 +243755,60074,messy,1242522607 +243755,60074,not as good as I expected,1242522604 +243755,60074,plot twist,1242522581 +243755,60074,public relations,1242522588 +243755,60074,superhero,1242522578 +243755,60074,Will Smith,1242522577 +243755,60566,Nudity (Topless - Brief),1251494420 +243755,60566,Nudity (Topless),1251494423 +243755,60609,Japan,1251406905 +243755,60684,1980s,1251407098 +243755,60684,alternate history,1251407095 +243755,60684,comic book,1251407080 +243755,60684,dystopia,1251407091 +243755,60684,graphic novel,1251407083 +243755,60684,Nudity (Topless),1251407086 +243755,60684,stylized,1251407094 +243755,60684,stylized violence,1251407089 +243755,60684,superhero,1251407103 +243755,61026,Epic,1286962842 +243755,61240,coming of age,1245106691 +243755,61240,love story,1245106693 +243755,61323,Brad Pitt,1252613529 +243755,61323,dark comedy,1252613532 +243755,61323,satire,1252613537 +243755,62336,anime,1241224838 +243755,62434,Kevin Smith,1252613986 +243755,62434,Nudity (Full Frontal),1252613993 +243755,62434,Nudity (Topless),1252613979 +243755,62434,Seth Rogen,1252614009 +243755,62434,Sexual Humor,1252613995 +243755,62434,Star Wars,1252614002 +243755,62801,Lone Wolf and Cub series,1241554056 +243755,62801,samurai,1241554060 +243755,62803,Lone Wolf and Cub series,1251408090 +243755,63072,post-apocalyptic,1265926677 +243755,63072,Viggo Mortensen,1265926680 +243755,63082,violence,1251407476 +243755,63676,Tatsuya Nakadai,1252613098 +243755,64614,Clint Eastwood,1245287962 +243755,64969,Rhys Darby,1251642468 +243755,64969,Zooey Deschanel,1251642455 +243755,65261,anime,1251407767 +243755,65261,Japan,1251407770 +243755,66934,anti-hero,1243713369 +243755,66934,joss whedon,1243713371 +243755,66934,parody,1243713363 +243755,66934,too short,1243713353 +243755,68157,alternate history,1251406426 +243755,68157,Christoph Waltz,1251406404 +243755,68157,Dead Nazis,1251406407 +243755,68157,dialogue,1251406411 +243755,68157,gratuitous violence,1251406395 +243755,68157,Quentin Tarantino,1251406401 +243755,68157,violence,1251406415 +243755,68358,action,1251406492 +243755,68358,adventure,1251406488 +243755,68358,revenge,1251406494 +243755,68358,sci-fi,1251406476 +243755,68358,space,1251406479 +243755,68358,Star Trek,1251406475 +243755,80219,boobies guns and blood!,1297534283 +243755,80219,exploitation,1297534289 +243755,80219,gore,1297534308 +243755,80219,Nudity,1297534319 +243755,80219,Robert Rodriguez,1297534296 +243755,80219,violent,1297534509 +243755,80549,Emma Stone,1294431272 +243755,81932,boxing,1304160215 +243755,81932,Christian Bale,1304160213 +243755,81932,Mark Wahlberg,1304160210 +243755,81932,sexy redhead,1304160225 +243798,593,psychology,1322782456 +243798,1704,psychology,1322710018 +243798,2762,psychology,1322782751 +243798,2762,twist ending,1322782757 +243798,3098,inspirational,1322710028 +243798,3098,sports,1322710035 +243798,5608,psychological,1322782372 +243798,5608,psychology,1322782391 +243798,72011,loneliness,1322783317 +243822,145,action,1378338013 +243822,145,drugs,1378338019 +243822,145,Will Smith,1378337998 +243822,3386,conspiracy,1406045559 +243822,3386,conspiracy theory,1406045550 +243822,3994,twist ending,1410131841 +243822,4701,Chris Tucker,1378338050 +243822,4878,thought-provoking,1387647886 +243822,4963,Brad Pitt,1378338163 +243822,4963,heist,1378338160 +243822,6378,heist,1378338151 +243822,31364,police investigation,1418084914 +243822,31364,serial killer,1418057301 +243822,44665,organized crime,1408408473 +243822,44665,Revenge,1408408465 +243822,44665,twist ending,1408408461 +243822,46723,multiple storylines,1390061510 +243822,46723,Nudity (Full Frontal),1390061514 +243822,48043,thought-provoking,1409610243 +243822,48516,gangsters,1378216293 +243822,48516,organized crime,1378215338 +243822,49530,action,1388863260 +243822,52328,dark,1389747477 +243822,52328,ending twist,1389747481 +243822,52328,psychological,1389747475 +243822,52328,psychology,1389747467 +243822,52328,spaceships,1389747497 +243822,54648,Chris Tucker,1378338062 +243822,55765,crime,1385087092 +243822,63072,survival,1385086687 +243822,63072,tense,1385086699 +243822,68157,Brad Pitt,1385086730 +243822,68157,Quentin Tarantino,1385086728 +243822,76091,investigation,1404043195 +243822,79132,alternate reality,1378216355 +243822,79132,dreamlike,1378216359 +243822,79132,heist,1378216361 +243822,79132,twist ending,1384705585 +243822,79357,thought provoking,1387647888 +243822,79357,time travel,1387642068 +243822,80489,bank robbery,1378216310 +243822,80489,heist,1378216318 +243822,82667,crazy,1401155644 +243822,82667,revenge,1401155614 +243822,82667,suspense,1401155616 +243822,84952,revenge,1452396956 +243822,86892,Korean,1410486065 +243822,86892,Nudity (corpse),1410486074 +243822,86892,Thriller,1410486068 +243822,89492,based on a true story,1440620306 +243822,93164,thriller,1442319083 +243822,96829,intense,1452397009 +243822,96829,mystery,1452396995 +243822,97304,hostage,1388797096 +243822,97304,suspenseful,1388797092 +243822,98961,assassination,1406045576 +243822,103849,organized crime,1438474394 +243822,104841,physics,1384449856 +243822,104841,space,1384449847 +243822,104841,suspense,1384449848 +243822,104841,visually appealing,1384449850 +243822,104879,thriller,1384659144 +243822,105504,politics,1389132693 +243822,105504,suspense,1389132588 +243822,105504,tense,1389320527 +243822,105504,tom hanks,1389132699 +243822,105504,true story,1389132594 +243822,105844,based on a true story,1390511135 +243822,106489,adventure,1389132656 +243822,106489,epic,1389132679 +243822,106489,love triangle,1389132668 +243822,106489,not true to the book,1389132672 +243822,106489,Peter Jackson,1389132652 +243822,106489,too long,1389132662 +243822,108945,Special Effects,1403408384 +243822,109487,relativity,1415413181 +243822,109487,space,1415413114 +243822,109487,time-travel,1415413105 +243822,112556,mindfuck,1418691941 +243822,112556,Psychopathy,1418691931 +243822,112556,unpredictable,1418691936 +243822,112804,encarnation,1419116668 +243822,115149,Hitman,1428534213 +243822,115149,Revenge,1424461094 +243822,115713,artificial intelligence,1430350628 +243822,141688,gangster,1453679254 +243848,8977,ruined movie with perverted seduction,1177549479 +243848,42728,adultery,1177549637 +243848,47200,wanted to see action movie not porn,1177549806 +243856,260,Never,1440200566 +243856,260,Star Wars,1440200561 +243868,2300,perfect comedy,1172486205 +243868,2300,sdfsdfsdfsdfsdfsdf,1172486215 +243869,318,story line,1307168810 +243869,49272,James Bond,1165471166 +243877,231,goofy,1448913743 +243877,231,road trip,1448913732 +243877,231,silly,1448913735 +243877,333,Chris Farley,1448913794 +243877,333,Goofy,1448913841 +243877,333,Road trip,1448913809 +243877,333,Slapstick,1448913829 +243877,6559,Kids movie,1448923210 +243877,8972,action,1448914949 +243877,8972,adventure,1448914941 +243877,8972,conspiracy theory,1448914937 +243877,8972,puzzle solving,1448914945 +243877,8972,secret societies,1448914943 +243877,40629,England,1448913623 +243877,40629,great soundtrack,1448913604 +243877,40629,Keira Knightley,1448913609 +243877,45447,adventure,1448915013 +243877,45447,conspiracy theory,1448914985 +243877,45447,Mystery,1448915017 +243877,80549,dialogue,1448915341 +243877,80549,Emma Stone,1448915331 +243877,80549,strong female lead,1448915352 +243877,134368,action,1448913677 +243877,134368,comedy,1448913669 +243877,134368,feminist,1448913671 +243883,480,Dinosaurs,1440703295 +243883,597,simple story,1440703004 +243883,1101,military,1440702184 +243883,1186,sexuality,1440703357 +243883,1307,meg fake orgasm,1440703190 +243883,1380,musical,1440702445 +243883,2947,Spy Thriller,1440702067 +243883,4007,bank,1440703414 +243883,4007,money,1440703406 +243883,4506,action,1440702733 +243883,4506,panic,1440702736 +243883,4896,simple,1440702963 +243883,6874,bloody,1440703080 +243883,7502,World War II,1440701756 +243883,26341,sex,1440702411 +243883,59615,action,1440702856 +243883,59615,Harrison Ford,1440702866 +243883,60397,entertainment,1440702482 +243883,60397,musical,1440702489 +243883,60397,Pierce Brosnan,1440702500 +243883,72998,slow story,1440703038 +243883,115210,tanks,1440702376 +243883,115210,World War II,1440702381 +243883,117529,tyrannosaurus rex,1440703272 +243883,118696,fantasy world,1440702115 +243887,1732,madcap,1196542780 +243894,54372,author:Harlan Coben,1242980617 +243894,54372,French,1242980620 +243909,1,adventure,1330111375 +243909,1,children,1330111320 +243909,1,classic,1330111356 +243909,1,computer animation,1330111311 +243909,1,Disney,1330111309 +243909,1,funny,1330111314 +243909,1,Pixar,1330111306 +243909,1,Tim Allen,1330111347 +243909,1,Tom Hanks,1330111307 +243909,25,atmospheric,1333707323 +243909,25,based on a book,1333707292 +243909,25,dark,1333707318 +243909,25,Elisabeth Shue,1333707340 +243909,25,Nicolas Cage,1333707310 +243909,32,Bruce Willis,1337315682 +243909,32,post-apocalyptic,1337315684 +243909,32,time travel,1337315689 +243909,32,twist ending,1337315687 +243909,44,fight scenes,1368360980 +243909,105,love story,1368362742 +243909,110,action,1330111029 +243909,110,Biography,1330110994 +243909,110,classic,1330110998 +243909,110,historical,1330110983 +243909,110,medieval,1330110988 +243909,110,Mel Gibson,1330110981 +243909,110,Nudity (Topless),1330111007 +243909,110,Oscar (Best Cinematography),1330111017 +243909,110,war,1330111021 +243909,111,loneliness,1368360879 +243909,112,fight scenes,1368360980 +243909,140,love story,1368362742 +243909,150,astronauts,1330111222 +243909,150,based on a book,1330111217 +243909,150,biographical,1330111289 +243909,150,Kevin Bacon,1330111277 +243909,150,moon,1330111227 +243909,150,NASA,1330111228 +243909,150,slow pace,1330111244 +243909,150,space program,1330111210 +243909,150,Tom Hanks,1330111208 +243909,150,true story,1330111209 +243909,169,family,1368363053 +243909,196,alien,1368362694 +243909,232,relationships,1368361258 +243909,260,adventure,1330110945 +243909,260,Akira Kurosawa,1330110967 +243909,260,classic,1330110943 +243909,260,fantasy,1330110942 +243909,260,George Lucas,1330110936 +243909,260,Harrison Ford,1330110932 +243909,260,robots,1330110956 +243909,260,sci-fi,1330110929 +243909,260,space,1330110930 +243909,296,assassin,1330057658 +243909,296,Black comedy,1330057620 +243909,296,Bruce Willis,1330057631 +243909,296,classic,1330057663 +243909,296,dark comedy,1330057624 +243909,296,multiple storylines,1330057636 +243909,296,nonlinear,1330057640 +243909,296,organized crime,1330057666 +243909,296,Quentin Tarantino,1330057627 +243909,296,quirky,1330057650 +243909,296,Samuel L. Jackson,1330057628 +243909,316,science fiction,1368360956 +243909,318,based on a book,1330110894 +243909,318,drama,1330110906 +243909,318,friendship,1330110893 +243909,318,inspirational,1330110885 +243909,318,Morgan Freeman,1330110874 +243909,318,thought-provoking,1330110871 +243909,353,dark fantasy,1368362612 +243909,356,based on a book,1330060239 +243909,356,bittersweet,1330060235 +243909,356,classic,1330060237 +243909,356,comedy,1330060240 +243909,356,historical,1330060247 +243909,356,inspirational,1330060253 +243909,356,Tom Hanks,1330060221 +243909,356,vietnam war,1330060223 +243909,364,africa,1330111732 +243909,364,animation,1330111729 +243909,364,Based on a TV show,1330111758 +243909,364,classic,1330111804 +243909,364,Disney,1330111791 +243909,364,Oscar (Best Music - Original Song),1330111795 +243909,377,Action,1330112366 +243909,377,chase,1330112393 +243909,377,claustrophobic,1330112409 +243909,377,Dennis Hopper,1330112377 +243909,377,good acting,1330112390 +243909,377,Keanu Reeves,1330112369 +243909,377,Sandra Bullock,1330112368 +243909,377,Thriller,1330112380 +243909,380,action,1330112441 +243909,380,Arnold Schwarzenegger,1330112439 +243909,380,comedy,1330112440 +243909,380,Eliza Dushku,1330112552 +243909,380,James Cameron,1330112449 +243909,380,Jamie Lee Curtis,1330112473 +243909,380,shallow plot,1330112533 +243909,380,spies,1330112475 +243909,380,Stereotyping,1330112525 +243909,380,Tia Carrere,1330112497 +243909,380,Tom Arnold,1330112484 +243909,434,Action,1330416437 +243909,434,Explosions,1330416500 +243909,434,John Lithgow,1330416462 +243909,434,mountain climbing,1330416447 +243909,434,Sylvester Stallone,1330416410 +243909,434,Thriller,1330416406 +243909,455,family,1368363053 +243909,457,Action,1330111092 +243909,457,crime,1330111090 +243909,457,Harrison Ford,1330111079 +243909,457,police investigation,1330111096 +243909,457,prison escape,1330111102 +243909,457,thriller,1330111081 +243909,457,Tommy Lee Jones,1330111077 +243909,480,adventure,1330110794 +243909,480,based on a book,1330110801 +243909,480,dinosaurs,1330110812 +243909,480,funny,1330110826 +243909,480,genetics,1330110814 +243909,480,Michael Crichton,1330110808 +243909,480,Oscar (Best Effects - Visual Effects),1330110844 +243909,480,sci-fi,1330110816 +243909,480,Steven Spielberg,1330110806 +243909,527,atmospheric,1330057383 +243909,527,based on a true story,1330057345 +243909,527,black and white,1330057367 +243909,527,classic,1330057372 +243909,527,good acting,1368363014 +243909,527,Holocaust,1330057349 +243909,527,Oscar (Best Cinematography),1330057359 +243909,527,Oscar (Best Directing),1330057360 +243909,527,Steven Spielberg,1330057356 +243909,527,World War II,1330057354 +243909,539,Good Romantic Comedies,1330413880 +243909,539,love story,1368362742 +243909,539,Meg Ryan,1330413845 +243909,539,Romance,1330413851 +243909,539,Tom Hanks,1330413849 +243909,551,dark fantasy,1368362612 +243909,587,Demi Moore,1330416612 +243909,587,ghosts,1330416622 +243909,587,love story,1368362742 +243909,587,Oscar (Best Original Score),1330416648 +243909,587,Patrick Swayze,1330416605 +243909,587,romance,1330416518 +243909,587,Thriller,1330416689 +243909,587,Whoopi Goldberg,1330416521 +243909,589,action,1330111391 +243909,589,apocalypse,1330111393 +243909,589,Arnold Schwarzenegger,1330111389 +243909,589,artificial intelligence,1330111395 +243909,589,robots,1330111397 +243909,589,sci-fi,1330111398 +243909,589,Suspense,1330111402 +243909,590,based on book,1342423179 +243909,590,culture clash,1342423171 +243909,590,historical,1342423175 +243909,590,Kevin Costner,1342423167 +243909,592,action,1330111443 +243909,592,atmospheric,1330111496 +243909,592,based on book,1330111449 +243909,592,Jack Nicholson,1330111429 +243909,592,super hero,1368362639 +243909,592,super-hero,1330111445 +243909,592,Tim Burton,1330111435 +243909,593,Anthony Hopkins,1330110759 +243909,593,based on a book,1330110768 +243909,593,classic,1330110779 +243909,593,good acting,1368363014 +243909,593,Jodie Foster,1330110762 +243909,593,psychological,1330110774 +243909,593,serial killer,1330110756 +243909,593,suspense,1330110757 +243909,597,love story,1368362742 +243909,608,based on a true story,1332350266 +243909,608,Coen Brothers,1332350270 +243909,608,dark comedy,1332350278 +243909,608,Frances McDormand,1332350304 +243909,608,kidnapping,1332350287 +243909,736,adventure,1333707886 +243909,736,disaster,1333707936 +243909,736,Helen Hunt,1333707881 +243909,736,science,1333707892 +243909,736,tornados,1333707898 +243909,780,action,1330414005 +243909,780,alien,1368362694 +243909,780,alien invasion,1330413937 +243909,780,aviation,1330414013 +243909,780,disaster,1330414018 +243909,780,ensemble cast,1330414023 +243909,780,humorous,1330414047 +243909,780,Jeff Goldblum,1330413956 +243909,780,Oscar (Best Effects - Visual Effects),1330413965 +243909,780,sci-fi,1330413939 +243909,780,war,1330414040 +243909,780,Will Smith,1330413941 +243909,786,Arnold Schwarzenegger,1333707987 +243909,786,conspiracy,1333707998 +243909,786,Mafia,1333708003 +243909,786,Vanessa L. Williams,1333707990 +243909,804,relationships,1368361258 +243909,858,good acting,1368363014 +243909,858,oscar (best directing),1368362673 +243909,927,entirely dialogue,1368360935 +243909,1015,family,1368363053 +243909,1086,police investigation,1368361004 +243909,1089,crime,1330057764 +243909,1089,dark comedy,1330057726 +243909,1089,ensemble cast,1330057724 +243909,1089,gangster,1330057721 +243909,1089,heist,1330057757 +243909,1089,low budget,1330057752 +243909,1089,Quentin Tarantino,1330057712 +243909,1089,religion,1330057716 +243909,1097,alien,1333707518 +243909,1097,sci-fi,1333707526 +243909,1097,Steven Spielberg,1333707522 +243909,1127,alien,1368362694 +243909,1198,action,1347868374 +243909,1198,adventure,1347868373 +243909,1198,archaeology,1347868369 +243909,1198,comedy,1347868375 +243909,1198,Harrison Ford,1347868371 +243909,1198,Steven Spielberg,1347868382 +243909,1198,World War II,1347868384 +243909,1199,dark fantasy,1368362612 +243909,1200,action,1333707258 +243909,1200,aliens,1333707260 +243909,1200,Sigourney Weaver,1333707267 +243909,1200,space,1333707253 +243909,1200,violent,1333707256 +243909,1203,classic,1330056993 +243909,1203,courtroom drama,1330056994 +243909,1203,crime,1330056997 +243909,1203,ghosts,1330057044 +243909,1203,good dialogue,1330057015 +243909,1203,low budget,1330057017 +243909,1203,racism,1330057006 +243909,1203,social commentary,1330057003 +243909,1203,thought-provoking,1330057001 +243909,1210,action,1330417256 +243909,1210,adventure,1330417258 +243909,1210,classic,1330417262 +243909,1210,fantasy,1330417255 +243909,1210,George Lucas,1330417259 +243909,1210,Harrison Ford,1330417239 +243909,1210,Mark Hamill,1330417248 +243909,1210,sci-fi,1330417251 +243909,1210,space,1330417252 +243909,1213,based on a book,1330057824 +243909,1213,dark comedy,1330057810 +243909,1213,disturbing,1330057819 +243909,1213,gangster,1368361132 +243909,1213,gangsters,1330057844 +243909,1213,mafia,1330057796 +243909,1213,Martin Scorsese,1330057835 +243909,1213,narrated,1330057838 +243909,1213,organized crime,1330057858 +243909,1213,Robert De Niro,1330057776 +243909,1213,Samuel L. Jackson,1330057830 +243909,1214,aliens,1337315442 +243909,1214,horror,1337315441 +243909,1214,Ridley Scott,1337315444 +243909,1214,sci-fi,1337315464 +243909,1214,Sigourney Weaver,1337315453 +243909,1214,suspense,1337315458 +243909,1228,beautiful,1330057929 +243909,1228,Biography,1330057961 +243909,1228,boxing,1330057940 +243909,1228,boxing drama,1330057945 +243909,1228,classic,1330057913 +243909,1228,Martin Scorsese,1330057908 +243909,1228,Oscar (Best Actor),1330057910 +243909,1228,Robert De Niro,1330057905 +243909,1228,stylized,1330057951 +243909,1240,Action,1337315781 +243909,1240,Arnold Schwarzenegger,1337315772 +243909,1240,sci-fi,1337315774 +243909,1240,Thriller,1337315777 +243909,1240,time travel,1337315776 +243909,1248,police investigation,1368361004 +243909,1260,police investigation,1368361004 +243909,1261,black comedy,1338505031 +243909,1261,Bruce Campbell,1338505020 +243909,1261,dark humor,1338505027 +243909,1270,adventure,1333707033 +243909,1270,Christopher Lloyd,1333707071 +243909,1270,Michael J. Fox,1333707059 +243909,1270,sci-fi,1333707039 +243909,1270,Steven Spielberg,1333707041 +243909,1270,time travel,1333707036 +243909,1307,relationships,1368361258 +243909,1333,Alfred Hitchcock,1348127960 +243909,1333,birds,1348127965 +243909,1356,science fiction,1368360957 +243909,1391,mars,1368361172 +243909,1466,gangster,1368361132 +243909,1580,action,1330414068 +243909,1580,aliens,1330414067 +243909,1580,buddy movie,1330414066 +243909,1580,comedy,1330414058 +243909,1580,plot twist,1330414123 +243909,1580,Tommy Lee Jones,1330414061 +243909,1580,Will Smith,1330414062 +243909,1584,science fiction,1368360956 +243909,1591,super hero,1368362640 +243909,1620,police investigation,1368361004 +243909,1623,horror,1368364096 +243909,1639,relationships,1368361258 +243909,1653,science fiction,1368360957 +243909,1674,police investigation,1368361004 +243909,1784,Comedy,1330111836 +243909,1784,feel-good,1330111853 +243909,1784,funny,1330111849 +243909,1784,Helen Hunt,1330111839 +243909,1784,Jack Nicholson,1330111834 +243909,1784,obsessive compulsive disorder,1330111843 +243909,1784,Romance,1330111862 +243909,1831,science fiction,1368360956 +243909,1876,apocalypse,1333707785 +243909,1876,Morgan Freeman,1333707773 +243909,1876,sci-fi,1333707804 +243909,1882,Godzilla,1337192830 +243909,1882,Jean Reno,1337192808 +243909,1882,Matthew Broderick,1337192812 +243909,1882,Roland Emmerich,1337192787 +243909,1917,apocalypse,1333707854 +243909,1917,Bruce Willis,1333707828 +243909,1917,sci-fi,1333707857 +243909,1953,chase,1368362724 +243909,1957,1920s,1344976174 +243909,1957,biographical,1344976176 +243909,1957,sports,1344976182 +243909,1959,love story,1368362742 +243909,1991,horror,1368364096 +243909,2115,action,1337315890 +243909,2115,adventure,1337315892 +243909,2115,archaeology,1337315901 +243909,2115,Harrison Ford,1337315888 +243909,2115,Steven Spielberg,1337315893 +243909,2194,oscar (best directing),1368362673 +243909,2262,relationships,1368361258 +243909,2278,chase,1368362724 +243909,2291,dark fantasy,1368362612 +243909,2315,horror,1368364096 +243909,2353,chase,1368362724 +243909,2407,alien,1368362694 +243909,2460,horror,1368364096 +243909,2539,gangster,1368361132 +243909,2542,gangster,1368361132 +243909,2571,artificial intelligence,1333707367 +243909,2571,cyberpunk,1333707368 +243909,2571,dystopia,1333707370 +243909,2571,Keanu Reeves,1333707360 +243909,2571,sci-fi,1333707363 +243909,2628,adventure,1330417029 +243909,2628,Ewan McGregor,1330417021 +243909,2628,Jar Jar Binks,1330417196 +243909,2628,Liam Neeson,1330417024 +243909,2628,Natalie Portman,1330417018 +243909,2628,Samuel L. Jackson,1330417026 +243909,2628,sci-fi,1330417005 +243909,2628,Space Opera,1330417015 +243909,2628,Star Wars,1330417004 +243909,2640,super hero,1368362640 +243909,2640,superheroes,1368361188 +243909,2662,mars,1368361172 +243909,2716,action,1330416227 +243909,2716,Bill Murray,1330416225 +243909,2716,classic,1330416229 +243909,2716,comedy,1330416230 +243909,2716,ghosts,1330416232 +243909,2716,New York City,1330416239 +243909,2716,occult technology,1330416236 +243909,2716,paranormal,1330416237 +243909,2716,sci-fi,1330416260 +243909,2716,Sigourney Weaver,1330416254 +243909,2723,super hero,1368362640 +243909,2723,superheroes,1368361188 +243909,2797,comedy,1330416787 +243909,2797,family,1330416802 +243909,2797,growing up,1330416747 +243909,2797,Romance,1330416783 +243909,2797,Tom Hanks,1330416754 +243909,2858,good acting,1368363014 +243909,2916,alternate universe,1330416202 +243909,2916,Arnold Schwarzenegger,1330416166 +243909,2916,conspiracy,1330416195 +243909,2916,cyberpunk,1330416197 +243909,2916,dystopia,1330416193 +243909,2916,espionage,1330416211 +243909,2916,memory,1330416183 +243909,2916,Nudity (Topless - Brief),1330416188 +243909,2916,Philip K. Dick,1330416178 +243909,2916,politics,1330416208 +243909,2916,sci-fi,1330416177 +243909,2916,science fiction,1368360956 +243909,2916,space travel,1330416176 +243909,2916,virtual reality,1330416168 +243909,3000,adventure,1337315929 +243909,3000,anime,1337315932 +243909,3000,Hayao Miyazaki,1337315925 +243909,3000,Studio Ghibli,1337315926 +243909,3005,police investigation,1368361004 +243909,3006,Al Pacino,1330056894 +243909,3006,based on a true story,1330056896 +243909,3006,Business is the antagonist,1330056909 +243909,3006,corruption,1330056904 +243909,3006,docudrama,1330056944 +243909,3006,drama,1330056958 +243909,3006,journalism,1330056919 +243909,3006,Russell Crowe,1330056922 +243909,3006,thriller,1330056954 +243909,3006,tobacco,1330056931 +243909,3018,horror,1368364096 +243909,3081,dark fantasy,1368362612 +243909,3114,computer animation,1330112616 +243909,3114,Disney,1330112615 +243909,3114,Pixar,1330112657 +243909,3114,Tim Allen,1330112621 +243909,3114,Tom Hanks,1330112619 +243909,3147,oscar (best directing),1368362673 +243909,3157,family,1368363053 +243909,3300,alien,1368362694 +243909,3362,Al Pacino,1332350344 +243909,3362,bank robbery,1332350343 +243909,3362,heist,1332350356 +243909,3362,true story,1332350352 +243909,3494,John Wayne,1330112301 +243909,3494,Kim Darby,1330112295 +243909,3494,Oscar (Best Actor),1330112305 +243909,3624,fight scenes,1368360980 +243909,3863,psychological,1368363038 +243909,3949,oscar (best directing),1368362673 +243909,3996,fight scenes,1368360980 +243909,4011,gangster,1368361132 +243909,4105,Bruce Campbell,1337315342 +243909,4105,dark humor,1337315349 +243909,4105,zombies,1337315353 +243909,4623,baseball,1346574509 +243909,4725,horror,1368364096 +243909,4896,Adventure,1330417288 +243909,4896,based on a book,1330417286 +243909,4896,fantasy,1330417282 +243909,4896,magic,1330417279 +243909,4896,Wizards,1330417275 +243909,4993,adventure,1333707164 +243909,4993,based on a book,1333707166 +243909,4993,fantasy,1333707169 +243909,4993,magic,1333707170 +243909,4993,music,1333707174 +243909,5002,anthropomorphic,1334367907 +243909,5002,cats,1334367889 +243909,5002,Nudity,1334367885 +243909,5254,fight scenes,1368360980 +243909,5349,superheroes,1368361188 +243909,5378,Ewan McGregor,1337192852 +243909,5378,George Lucas,1337192859 +243909,5378,Hayden Christensen,1337192925 +243909,5378,Natalie Portman,1337192850 +243909,5378,Samuel L. Jackson,1337192865 +243909,5388,psychological,1368363038 +243909,5418,action,1330417311 +243909,5418,based on a book,1330417313 +243909,5418,car chase,1330417310 +243909,5418,espionage,1330417304 +243909,5418,Matt Damon,1330417308 +243909,5452,family,1368363053 +243909,5464,gangster,1368361132 +243909,5502,alien,1368362694 +243909,5816,based on a book,1330417222 +243909,5816,fantasy,1330417224 +243909,5816,magic,1330417218 +243909,5945,loneliness,1368360879 +243909,5952,Action,1333707135 +243909,5952,adventure,1333707137 +243909,5952,based on a book,1333707119 +243909,5952,fantasy,1333707122 +243909,5952,magic,1333707133 +243909,5952,multiple storylines,1333707127 +243909,5971,anime,1337315856 +243909,5971,Hayao Miyazaki,1337315853 +243909,5971,Studio Ghibli,1337315854 +243909,5995,Adrien Brody,1330057553 +243909,5995,beautiful,1330057555 +243909,5995,classical music,1330057551 +243909,5995,historical,1330057547 +243909,5995,Roman Polanski,1330057531 +243909,5995,true story,1330057537 +243909,5995,World War II,1330057532 +243909,6333,change in storylines,1330416914 +243909,6333,comic book,1330416863 +243909,6333,Hugh Jackman,1330416882 +243909,6333,marvel,1330416861 +243909,6333,sci-fi,1330416854 +243909,6333,superhero,1330416852 +243909,6365,fight scenes,1368360980 +243909,6502,British,1337315645 +243909,6502,Post apocalyptic,1337315648 +243909,6502,sci-fi,1337315651 +243909,6502,zombies,1337315644 +243909,6539,action,1330416302 +243909,6539,adventure,1330416298 +243909,6539,comedy,1330416303 +243909,6539,Disney,1330416307 +243909,6539,Geoffrey Rush,1330416337 +243909,6539,Johnny Depp,1330416294 +243909,6539,Keira Knightley,1330416350 +243909,6539,Orlando Bloom,1330416323 +243909,6539,pirates,1330416386 +243909,6539,Runtime,1330416360 +243909,6539,sword fight,1330416370 +243909,7090,Jet Li,1337315941 +243909,7090,martial arts,1337315940 +243909,7090,visually appealing,1337315950 +243909,7153,adventure,1333707202 +243909,7153,based on a book,1333707204 +243909,7153,fantasy,1333707205 +243909,7153,magic,1333707207 +243909,7153,multiple storylines,1333707209 +243909,8368,alan rickman,1330413750 +243909,8368,based on a book,1330413731 +243909,8368,emma thompson,1330413746 +243909,8368,Emma Watson,1330413755 +243909,8368,Gary Oldman,1330413726 +243909,8368,magic,1330413742 +243909,8368,time travel,1330413740 +243909,8368,werewolves,1330413757 +243909,8368,Wizards,1330413736 +243909,8636,superheroes,1368361188 +243909,8810,action,1337192481 +243909,8810,Antarctica,1337192522 +243909,8810,Characters,1337192566 +243909,8810,Lance Henriksen,1337192501 +243909,8810,Predators,1337192497 +243909,8810,Special effects,1337192593 +243909,8874,British,1337315397 +243909,8874,british comedy,1337315393 +243909,8874,zombies,1337315400 +243909,8981,relationships,1368361258 +243909,31658,anime,1337315833 +243909,31658,fantasy,1337315831 +243909,31658,Hayao Miyazaki,1337315829 +243909,31658,steampunk,1337315828 +243909,31658,Studio Ghibli,1337315825 +243909,33794,super hero,1368362640 +243909,40815,based on a book,1330413464 +243909,40815,dark,1330413477 +243909,40815,dragons,1330413472 +243909,40815,fantasy,1330413453 +243909,40815,Gary Oldman,1330413458 +243909,40815,harry potter,1330413455 +243909,40815,magic,1330413460 +243909,40815,Wizards,1330413492 +243909,41566,adventure,1330416950 +243909,41566,alternate reality,1330416964 +243909,41566,based on a book,1330416947 +243909,41566,C.S. Lewis,1330416944 +243909,41566,fantasy,1330416955 +243909,41566,magic,1330416958 +243909,45499,super hero,1368362639 +243909,45499,superheroes,1368361188 +243909,48394,dark fantasy,1368362612 +243909,51939,animation,1331015870 +243909,54001,based on a book,1330413605 +243909,54001,Emma Watson,1330413601 +243909,54001,Gary Oldman,1330413625 +243909,54001,Helena Bonham Carter,1330413606 +243909,54001,Imelda Staunton,1330413687 +243909,54001,magic,1330413622 +243909,54001,not true to the book,1330413613 +243909,54001,Ralph Fiennes,1330413609 +243909,54001,too short,1330413636 +243909,54286,chase,1368362724 +243909,55566,African-American,1342139826 +243909,55566,Janet Jackson,1342139820 +243909,55566,relationships,1342139811 +243909,55566,Tyler Perry,1342139838 +243909,55820,based on a book,1332350218 +243909,55820,coen brothers,1332350139 +243909,55820,Javier Bardem,1332350178 +243909,55820,Josh Brolin,1332350195 +243909,55820,suspense,1332350146 +243909,55820,Tommy Lee Jones,1332350143 +243909,55830,creativity,1339171368 +243909,55830,Michel Gondry,1339171376 +243909,57274,Handycam,1337315589 +243909,57274,horror,1337315593 +243909,57274,Manuela Velasco,1337315577 +243909,57274,virus,1337315595 +243909,57274,zombies,1337315594 +243909,59315,superheroes,1368361188 +243909,63082,based on a book,1330795279 +243909,63082,India,1330795282 +243909,63082,nonlinear,1330795275 +243909,63082,Oscar (Best Picture),1330795285 +243909,63082,social commentary,1330795289 +243909,64620,based on a true story,1330057115 +243909,64620,gripping,1330057175 +243909,64620,history,1330057152 +243909,64620,Nixon,1330057164 +243909,64620,Oliver Platt,1330057154 +243909,64620,politics,1330057132 +243909,64620,Ron Howard,1330057161 +243909,64620,Suspense,1330057150 +243909,64620,US President,1330057142 +243909,64839,loneliness,1368360879 +243909,64957,Aging,1330795373 +243909,64957,Brad Pitt,1330795367 +243909,64957,Cate Blanchett,1330795364 +243909,64957,cinematography,1330795358 +243909,64957,drama,1330795371 +243909,64957,original plot,1330795375 +243909,68319,hugh jackman,1333167473 +243909,69844,Alan Rickman,1330413507 +243909,69844,based on a book,1330413514 +243909,69844,Comedy,1330413577 +243909,69844,English,1330413570 +243909,69844,fantasy,1330413509 +243909,69844,Helena Bonham Carter,1330413561 +243909,69844,magic,1330413512 +243909,69844,romance,1330413523 +243909,71535,Abigail Breslin,1337315493 +243909,71535,comedy,1337315507 +243909,71535,Emma Stone,1337315493 +243909,71535,Jesse Eisenberg,1337315493 +243909,71535,Woody Harrelson,1337315493 +243909,71535,zombies,1337315504 +243909,76251,comic book,1333706886 +243909,76251,dark comedy,1333706861 +243909,76251,gore,1333706873 +243909,76251,Nicolas Cage,1333706881 +243909,76251,vigilante,1333706884 +243909,78032,Ending,1330110473 +243909,78032,slow pace,1330110498 +243909,78679,1950s,1330110632 +243909,78679,based on a book,1330110625 +243909,78679,disturbing in a bad way,1330110573 +243909,78679,Graphic violence,1330110613 +243909,78679,Jessica Alba,1330110554 +243909,78679,Michael Winterbottom,1330110559 +243909,78679,Stupid ending,1330110581 +243909,79702,based on a comic,1333706938 +243909,79702,fight scenes,1333706928 +243909,79702,funny,1333706929 +243909,79702,video games,1333706917 +243909,79702,visually appealing,1333706924 +243909,80463,adapted from:book,1330056870 +243909,80463,based on a true story,1330056694 +243909,80463,brother-brother relationship,1330056809 +243909,80463,computers,1330056689 +243909,80463,dark comedy,1330056675 +243909,80463,David Fincher,1330056766 +243909,80463,friendship,1330056702 +243909,80463,hacking,1330056703 +243909,80463,Jesse Eisenberg,1330056777 +243909,80463,Justin Timberlake,1330056848 +243909,80463,loneliness,1330056803 +243909,80463,music,1330056793 +243909,80463,Oscar (Best Music - Original Score),1330056731 +243909,81229,action,1330112055 +243909,81229,assassin,1330112054 +243909,81229,Bruce Willis,1330112047 +243909,81229,comedy,1330112072 +243909,81229,Helen Mirren,1330112048 +243909,81229,John Malkovich,1330112051 +243909,81229,Morgan Freeman,1330112052 +243909,81229,spy,1330112060 +243909,81591,atmospheric,1330112122 +243909,81591,Cinematography,1330112332 +243909,81591,creepy,1330112111 +243909,81591,dark,1330112124 +243909,81591,Mila Kunis,1330112143 +243909,81591,Natalie Portman,1330112113 +243909,81591,Oscar Nominee: Director,1330112175 +243909,81591,psychological,1330112114 +243909,81591,Sex,1330112169 +243909,81591,thriller,1330112119 +243909,81834,Alan Rickman,1330111656 +243909,81834,based on a book,1330111662 +243909,81834,British,1330111686 +243909,81834,dark fantasy,1330111668 +243909,81834,Helena Bonham Carter,1330111664 +243909,81834,magic,1330111683 +243909,81834,Ralph Fiennes,1330111670 +243909,81845,1930s,1330057265 +243909,81845,based on a true story,1330057258 +243909,81845,cinematography,1330057289 +243909,81845,complex characters,1330057272 +243909,81845,emotional,1330057285 +243909,81845,England,1330057282 +243909,81845,father daughter relationship,1330057294 +243909,81845,father-son relationship,1330057297 +243909,81845,feel-good,1330057322 +243909,81845,Oscar (Best Picture),1330057275 +243909,81845,war,1330057316 +243909,82459,19th century,1330112209 +243909,82459,Action,1330112236 +243909,82459,based on a book,1330112210 +243909,82459,cinematography,1330112213 +243909,82459,Coen Brothers,1330112206 +243909,82459,Hailee Steinfeld,1330112263 +243909,82459,Jeff Bridges,1330112203 +243909,82459,Matt Damon,1330112204 +243909,82459,revenge,1330112246 +243909,82459,Western,1330112221 +243909,85565,Comedy,1331710628 +243909,85565,Felicity Jones,1331710590 +243909,85565,Predictable,1331710748 +243909,85565,Romance,1331710632 +243909,85565,Snowboarding,1331710599 +243909,86487,Based on the book,1330058244 +243909,86487,Depression-era,1330058262 +243909,86487,Evan Rachel Wood,1330058186 +243909,86487,Guy Pearce,1330058195 +243909,86487,Kate Winslet,1330058174 +243909,86487,Los Angeles,1330058270 +243909,86487,mini series,1330058148 +243909,86644,cars,1342422873 +243909,86644,Dwayne Johnson,1342422867 +243909,86644,Jordana Brewster,1342422877 +243909,86644,Paul Walker,1342422880 +243909,86644,unrealistic,1342422889 +243909,86644,Vin Diesel,1342422870 +243909,87079,Clive Owen,1345415344 +243909,87079,Liana Liberato,1345415358 +243909,87232,comic book,1333167654 +243909,87232,Cuban missile crisis,1333167639 +243909,87232,James McAvoy,1333167590 +243909,87232,Jennifer Lawrence,1333167624 +243909,87232,Kevin Bacon,1333167626 +243909,87232,Michael Fassbender,1333167616 +243909,87520,action,1342607323 +243909,87520,CG animation,1342607338 +243909,87520,effects,1342607326 +243909,87520,Michael Bay,1342607359 +243909,87520,Runtime,1342607403 +243909,87520,Shia LaBeouf,1342607356 +243909,87520,story,1342607362 +243909,88125,based on a book,1330059982 +243909,88125,Daniel Radcliffe,1330059953 +243909,88125,David Yates,1330059975 +243909,88125,Emma Watson,1330059949 +243909,88125,end of a series,1330059995 +243909,88125,fantasy,1330059998 +243909,88125,magic,1330059967 +243909,88125,Ralph Fiennes,1330059960 +243909,88125,Rupert Grint,1330059957 +243909,88129,action,1332350044 +243909,88129,Carey Mulligan,1332350063 +243909,88129,cars,1332350047 +243909,88129,cinematography,1332350040 +243909,88129,crime,1332350020 +243909,88129,Dark,1332350034 +243909,88129,heist,1332350103 +243909,88129,Los Angeles,1332350092 +243909,88129,ryan gosling,1332350050 +243909,88129,slow,1332350086 +243909,88129,violence,1332350008 +243909,88405,chemistry between actors,1330059903 +243909,88405,clever dialogue,1330059900 +243909,88405,comedy,1330059914 +243909,88405,funny,1330059890 +243909,88405,happy ending,1330059877 +243909,88405,Justin Timberlake,1330059854 +243909,88405,love story,1330059875 +243909,88405,Mila Kunis,1330059850 +243909,88405,sex,1330059868 +243909,88405,Woody Harrelson,1330059858 +243909,88810,based on a book,1330109163 +243909,88810,Emma Stone,1330109160 +243909,88810,historical,1330109180 +243909,88810,racism,1330109167 +243909,88810,social commentary,1330109210 +243909,88810,southern,1330109244 +243909,88810,Viola Davis,1330109157 +243909,88932,average dialogue,1330059631 +243909,88932,death scenes,1330059733 +243909,88932,Emma Bell,1330059477 +243909,88932,failing to bring anything new to the franchise,1330059581 +243909,88932,franchise,1330059535 +243909,88932,gore,1330059610 +243909,88932,predictable,1330059401 +243909,88932,thriller,1330059666 +243909,88932,visual effects,1330059698 +243909,88932,weak character development,1330059528 +243909,89470,all-star cast,1330059262 +243909,89470,apocalypse,1330059264 +243909,89470,bland characters,1330059259 +243909,89470,great soundtrack,1330059288 +243909,89470,Hong Kong,1330059293 +243909,89470,Kate Winslet,1330059272 +243909,89470,lacks contemplative depth,1330059249 +243909,89470,Matt Damon,1330059276 +243909,89470,medicine,1330059285 +243909,89470,thriller,1330059282 +243909,89470,virus,1330059278 +243909,89480,character development,1332455262 +243909,89480,Emily Browning,1332455038 +243909,89480,Nudity (Full Frontal),1332455259 +243909,89492,baseball,1330056534 +243909,89492,based on a true story,1330056538 +243909,89492,Brad Pitt,1330056548 +243909,89492,California,1330056550 +243909,89492,Educational,1330056612 +243909,89492,father daughter relationship,1330056557 +243909,89492,intelligent,1330056560 +243909,89492,money,1330056576 +243909,89492,must see,1330056579 +243909,89492,Philip Seymour Hoffman,1330056562 +243909,89492,slow,1330056633 +243909,89745,cgi,1336930290 +243909,89745,comic book,1336930275 +243909,89745,Hulk,1336930331 +243909,89745,joss whedon,1336930278 +243909,89745,plot,1336930644 +243909,89745,Robert Downey Jr.,1336930306 +243909,89745,Scarlett Johansson,1336930301 +243909,89745,superhero,1336930659 +243909,89904,1920s,1330795186 +243909,89904,Berenice Bejo,1330795176 +243909,89904,Best Orig Screenplay,1330795179 +243909,89904,Jean Dujardin,1330795174 +243909,89904,silent movie,1330795172 +243909,89904,slow pacing,1330795235 +243909,90249,android(s)/cyborg(s),1330166386 +243909,90249,father-son relationship,1330166404 +243909,90249,Fighting Robots,1330166409 +243909,90249,Hugh Jackman,1330166407 +243909,90249,obnoxious kid,1330166429 +243909,90249,predictable,1330166395 +243909,90249,Rocky Homage,1330166441 +243909,90249,Science Fiction,1330166412 +243909,90405,Justin Timberlake,1333706768 +243909,90405,plot holes,1333706737 +243909,90405,social commentary,1333706815 +243909,90405,Time Currency Concept,1333706800 +243909,90866,1930s,1330412718 +243909,90866,Asa Butterfield,1330412649 +243909,90866,based on a book,1330412696 +243909,90866,Ben Kingsley,1330412611 +243909,90866,Chloë Grace Moretz,1330412688 +243909,90866,Martin Scorsese,1330412614 +243909,90866,robots,1330412707 +243909,90866,Sacha Baron Cohen,1330412619 +243909,90929,1900s,1334079310 +243909,90929,Blood,1334079578 +243909,90929,Brothels,1334079324 +243909,90929,Music,1334079758 +243909,90929,Prostitutes,1334079443 +243909,91077,Best Adapted Screenplay,1330058745 +243909,91077,George Clooney,1330058735 +243909,91077,Hawaii,1330058636 +243909,91077,Shailene Woodley,1330058714 +243909,91126,cinematography,1330058429 +243909,91126,horses,1330058431 +243909,91126,Steven Spielberg,1330058426 +243909,91126,World War I,1330058433 +243909,91500,based on a book,1333704506 +243909,91500,Book Faithful,1333705694 +243909,91500,Jennifer Lawrence,1333704470 +243909,91500,shaky camera,1333704482 +243909,91500,social comentary,1333704500 +243909,91500,Video Game like,1333704619 +243909,91500,Woody Harrelson,1333704467 +243909,91529,Anne Hathaway,1343952521 +243909,91529,Batman,1343952520 +243909,91529,Christian Bale,1343952525 +243909,91529,Christopher Nolan,1343952523 +243909,91529,comic books,1343952565 +243909,91529,Gary Oldman,1343952526 +243909,91529,intense,1343952562 +243909,91529,Joseph Gordon-Levitt,1343952527 +243909,91529,Michael Caine,1343952531 +243909,91529,Morgan Freeman,1343952538 +243909,91529,plot twist,1343952545 +243909,91529,superhero,1343952547 +243909,91535,Action,1345843500 +243909,91535,Edward Norton,1345843496 +243909,91535,Jeremy Renner,1345843498 +243909,91535,Rachel Weisz,1345843498 +243909,91622,Charlize Theron,1332094170 +243909,91622,Comedy,1332094359 +243909,91622,Diablo Cody,1332094136 +243909,91622,Drama,1332094363 +243909,91622,Jason Reitman,1332094145 +243909,91622,unfulfilling,1332094186 +243909,91622,Writing,1332094159 +243909,91660,aliens,1333185303 +243909,91660,Characters,1333185526 +243909,91660,Moscow,1333185307 +243909,91660,Screenplay,1333185402 +243909,91660,Visual effects,1333185642 +243909,92420,sci-fi,1335825246 +243909,92420,supernatural powers,1335825241 +243909,92420,telekenisis,1335825238 +243909,93363,Action,1338780905 +243909,93363,based on a book,1338780805 +243909,93363,Edgar Rice Burroughs,1338780818 +243909,93363,Mars,1338780810 +243909,93363,sci-fi,1338780812 +243909,93831,Alyson Hannigan,1333999981 +243909,93831,Jason Biggs,1333999974 +243909,93831,Sean William Scott,1333999989 +243909,93840,joss whedon,1345074423 +243909,93840,original plot,1345074419 +243909,94677,Anna Faris,1339171458 +243909,94677,sacha baron cohen,1339171454 +243909,94677,satire,1339171461 +243909,94777,action,1339403703 +243909,94777,aliens,1339403677 +243909,94777,Josh Brolin,1339403725 +243909,94777,time travel,1339403688 +243909,95309,Keira Knightley,1341708324 +243909,95309,Steve Carell,1341708326 +243909,95670,Jokes,1343959752 +243909,95670,Tyler Perry,1343959710 +243909,96110,election,1347259488 +243909,96110,satire,1347259472 +243909,96110,Will Ferrell,1347259476 +243909,96110,Zach Galifianakis,1347259482 +243909,96281,ghosts,1348067878 +243909,96281,stop motion,1348067874 +243909,96281,zombies,1348067875 +243909,96367,Car Chase,1347259592 +243909,96367,Dax Shepard,1347259564 +243909,96367,Kristen Bell,1347259570 +243909,96367,Social Commentary,1347259602 +243909,96456,Main characters,1347259372 +243909,96456,Plot,1347259397 +243909,96610,Bruce Willis,1354087267 +243909,96610,Joseph Gordon-Levitt,1354087264 +243909,96610,time travel,1354087262 +243909,96691,Based on Video Game,1347868471 +243909,96691,Michelle Rodriguez,1347868435 +243909,96691,Milla Jovovich,1347868427 +243909,96691,Zombies,1347868443 +243909,96917,Jennifer Lawrence,1348684295 +243909,96917,predictable,1348684327 +243909,97913,disney,1353502941 +243909,97913,John C. Reilly,1353502962 +243909,97913,nostalgic,1353502941 +243909,97913,Sarah Silverman,1353502954 +243909,97913,video games,1353502937 +243909,97921,Bradley Cooper,1360545040 +243909,97921,Chris Tucker,1360545043 +243909,97921,Jennifer Lawrence,1360545036 +243909,97921,mental illness,1360545050 +243909,97921,Robert De Niro,1360545046 +243909,97936,cinematography,1360545209 +243909,97936,kiera knightley,1360545221 +243909,97938,Ang Lee,1360545086 +243909,97938,cinematography,1360545085 +243909,98056,Emmanuelle Riva,1360545164 +243909,98056,Jean-Louis Trintignant,1360545173 +243909,98056,Michael Haneke,1360545154 +243909,98154,American Civil War,1356081710 +243909,98154,Daniel Day-Lewis,1356081215 +243909,98154,Steven Spielberg,1356081715 +243909,98961,American propaganda,1360545000 +243909,98961,Jessica Chastain,1360545017 +243909,98961,Kathryn Bigelow,1360545005 +243909,99007,romance,1360545241 +243909,99007,zombies,1360545242 +243909,99149,Anne Hathaway,1360545109 +243909,99149,Hugh Jackman,1360545114 +243909,99149,musical,1360545130 +243909,99149,Victor Hugo,1360545117 +243931,296,Quentin Tarantino,1146411628 +243931,508,Oscar (Best Actor),1146411611 +243931,5952,fantasy,1146411614 +243954,260,cosmos,1440403281 +243954,260,epic adventure,1440403299 +243980,260,sci-fi,1437142478 +244021,5618,alternate reality,1439174275 +244021,5618,anime,1439174217 +244021,5618,atmospheric,1439174216 +244021,5618,beautiful,1439174273 +244021,5618,dreamlike,1439174226 +244021,5618,environmental,1439174270 +244021,5618,fairy tale,1439174214 +244021,5618,fantasy,1439174223 +244021,5618,fantasy world,1439174261 +244021,5618,imagination,1439174255 +244021,5618,imaginative,1439174211 +244021,5618,surreal,1439174280 +244021,5618,whimsical,1439174207 +244042,1797,IMAX,1235079259 +244059,1407,slasher,1157730905 +244059,1407,Wes Craven,1157730897 +244067,50,organized crime,1337828255 +244067,50,twist ending,1337828259 +244067,296,multiple storylines,1337828441 +244067,296,nonlinear,1337828446 +244067,318,prison,1337828230 +244067,2329,disturbing,1337828415 +244067,2571,dystopia,1337828371 +244067,2571,post-apocalyptic,1337828375 +244067,2571,virtual reality,1337828367 +244067,2959,dark comedy,1337828306 +244067,2959,psychology,1337828316 +244067,4226,nonlinear,1337828385 +244067,4226,psychology,1337828382 +244067,4973,cult film,1337828280 +244067,4973,surreal,1337828293 +244067,4993,based on a book,1337828431 +244067,7361,surreal,1337828479 +244067,79132,alternate reality,1337828326 +244067,92259,emotional,1337828462 +244067,92259,friendship,1337828465 +244090,163,Antonio Banderas,1441906387 +244090,163,postmodernist,1441906409 +244090,597,cinderella,1441906538 +244090,597,julia roberts,1441906525 +244090,597,Richard Gere,1441906527 +244090,714,beautiful,1441906476 +244090,714,dreamlike,1441906467 +244090,714,Johnny Depp,1441906471 +244090,714,visually appealing,1441906479 +244090,1232,Andrei Tarkovsky,1441906347 +244090,1232,existentialism,1441906341 +244090,1232,philosophical,1441906343 +244090,7669,19th century,1441906596 +244090,7669,author:Jane Austen,1441906591 +244090,7669,Colin Firth,1441906593 +244090,7759,melancholic,1441906276 +244090,7759,philosophical,1441906309 +244090,26578,philosophical,1441906291 +244097,55247,R,1205081506 +244097,55253,NC-17,1205081488 +244111,40629,emotions,1448120502 +244111,40629,Jane Austen,1448120488 +244111,40629,romance,1448120471 +244132,1089,Steve Buschemi,1221066639 +244132,3053,Luc Besson,1221066953 +244157,719,clones,1188160647 +244157,866,lesbian,1188160687 +244157,1179,dark,1188160669 +244157,4270,cheesy,1188160728 +244157,4975,remake,1188160741 +244179,356,1970s,1436565973 +244179,356,drama,1436565973 +244179,356,tom hanks,1436565973 +244184,32,adventure,1241538124 +244184,32,complicated,1241538083 +244184,32,time travel,1241538112 +244184,32,twist ending,1241538102 +244184,47,twist ending,1247500348 +244184,50,complicated,1241538161 +244184,50,suspense,1241538166 +244184,50,twist ending,1241538154 +244184,300,intelligent,1365986761 +244184,741,artificial intelligence,1247500379 +244184,741,complex,1247500388 +244184,1265,surreal,1247500355 +244184,2959,dark comedy,1247500419 +244184,4878,dreamlike,1241538048 +244184,4878,social commentary,1241538052 +244184,4878,stylized,1241538055 +244184,4878,surreal,1241538059 +244184,7361,quirky,1247500314 +244184,7361,sci-fi,1247500312 +244184,7361,surreal,1247500301 +244184,8370,Japan,1241537737 +244184,8370,one swipe swordfights,1241537728 +244184,8370,Takeshi Kitano,1241537721 +244184,8914,sci-fi,1247500344 +244184,8914,time travel,1247500339 +244184,33166,multiple storylines,1247500408 +244184,55820,dark,1373493128 +244184,55820,great acting,1373492821 +244184,55820,suspense,1373493131 +244184,57368,startling,1367094238 +244184,57368,tense,1367094247 +244184,57669,dark comedy,1247500437 +244184,59387,surreal,1247500416 +244184,62336,anime,1367094394 +244184,62336,hallucinatory,1367094397 +244184,62336,Not a movie,1367094392 +244184,62336,robots,1367094402 +244184,62336,surreal,1367094384 +244184,62336,too weird,1367094383 +244184,62336,weird,1367094385 +244184,68358,dumb,1245528734 +244184,68358,sci-fi,1243814627 +244184,68358,space,1243814623 +244184,70286,atmospheric,1367094580 +244184,70286,heartbreaking,1367094599 +244184,70286,small budget,1367094610 +244184,70286,social commentary,1367094584 +244184,70286,violence,1367094592 +244184,88129,atmospheric,1373492864 +244184,88129,cinematography,1373492866 +244184,88129,stylized,1373492873 +244184,88129,tense,1373492872 +244184,88129,visually appealing,1373492867 +244184,89864,drugs,1369088397 +244192,81932,Amy Adams,1451061401 +244192,81932,Christian Bale,1451061403 +244192,81932,family relationships,1451061415 +244192,81932,Mark Wahlberg,1451061398 +244192,81932,sexy redhead,1451061408 +244192,81932,true story,1451061422 +244241,32,Brad Pitt,1311205911 +244241,32,Bruce Willis,1311205917 +244241,293,easily confused with other movie(s) (title),1314579087 +244241,293,Jean Reno,1314579078 +244241,293,Natalie Portman,1314744823 +244241,296,Black comedy,1302556984 +244241,296,cult film,1318116478 +244241,296,drugs,1302556991 +244241,296,imdb top 250,1318116475 +244241,296,nonlinear,1318116471 +244241,296,notable soundtrack,1318116473 +244241,296,Quentin Tarantino,1318116466 +244241,541,atmospheric,1415677021 +244241,541,cyberpunk,1415677027 +244241,541,dreamlike,1415677032 +244241,541,dystopia,1415677043 +244241,541,Philip K. Dick,1415677017 +244241,541,sci-fi,1424566963 +244241,541,stylized,1415677047 +244241,593,Anthony Hopkins,1311295089 +244241,593,based on a book,1311295105 +244241,593,cannibalism,1311295102 +244241,593,mental illness,1311295094 +244241,593,psychology,1311295110 +244241,593,suspense,1311295117 +244241,778,based on a book,1308525208 +244241,778,dark comedy,1329961938 +244241,778,drugs,1308525213 +244241,778,social commentary,1308525221 +244241,924,adapted from:book,1306542310 +244241,924,artificial intelligence,1302821595 +244241,924,philosophical,1306542305 +244241,924,sci-fi,1302821614 +244241,924,space,1306542391 +244241,924,surreal,1306542386 +244241,1127,too long,1366411224 +244241,1196,fantasy,1314579156 +244241,1196,war,1314579140 +244241,1200,aliens,1319421727 +244241,1200,androids,1319421724 +244241,1200,atmospheric,1319421729 +244241,1200,sci-fi,1319421731 +244241,1200,suspense,1319421741 +244241,1200,tense,1319421745 +244241,1206,cult film,1359327293 +244241,1206,dystopia,1302821495 +244241,1206,great soundtrack,1302821482 +244241,1210,war,1314579170 +244241,1214,aliens,1319327130 +244241,1214,horror,1319327146 +244241,1214,imdb top 250,1319327150 +244241,1214,outerspace,1319327153 +244241,1214,sci-fi,1319327135 +244241,1214,space,1319327143 +244241,1214,suspense,1319333647 +244241,1222,2 movies in 1,1309220763 +244241,1258,classic,1309220658 +244241,1258,Jack Nicholson,1309220653 +244241,1258,Nudity (Full Frontal),1309220641 +244241,1258,psychological,1309220647 +244241,1258,Stanley Kubrick,1309220649 +244241,1258,Stephen King,1309220674 +244241,1270,alternate reality,1369265074 +244241,1270,classic,1369265072 +244241,1270,quirky,1369265070 +244241,1270,time travel,1369265067 +244241,1274,Akira Kurosawa,1366490485 +244241,1274,anime,1313196589 +244241,1274,dystopia,1313196579 +244241,1274,Japan,1313196574 +244241,1274,violent,1313196597 +244241,1274,visually stunning,1313196583 +244241,1653,dystopia,1372547197 +244241,1653,sci-fi,1372547190 +244241,1653,space travel,1372547192 +244241,1653,Uma Thurman,1372547188 +244241,1884,adapted from:book,1329961919 +244241,1884,drugs,1329961897 +244241,1884,great soundtrack,1329961917 +244241,1884,hallucinatory,1329961899 +244241,1884,Johnny Depp,1329961904 +244241,1884,true story,1329961910 +244241,2161,Adventure,1359327274 +244241,2161,based on a book,1359327270 +244241,2161,dragon,1359327259 +244241,2161,effects,1359327253 +244241,2161,Fantasy,1359327280 +244241,2174,alternate reality,1305668446 +244241,2174,cult film,1305668443 +244241,2174,ghosts/afterlife,1305668447 +244241,2232,mathematics,1416707181 +244241,2232,psychological,1416707177 +244241,2232,weird,1416707212 +244241,2594,better than the american version,1359327135 +244241,2594,Dark,1359327139 +244241,2594,Spain,1359327170 +244241,2594,Twist ending,1359327143 +244241,2716,Bill Murray,1416535349 +244241,2716,ghosts,1416535354 +244241,2716,horror comedy,1416535364 +244241,2722,predictable,1359327222 +244241,2722,unintentionally funny,1359327229 +244241,2916,Arnold Schwarzenegger,1309044443 +244241,2916,conspiracy,1309051563 +244241,2916,dystopia,1309051573 +244241,2916,memory,1309051560 +244241,2916,Philip K. Dick,1309051551 +244241,2916,sci-fi,1309051554 +244241,2916,virtual reality,1309051569 +244241,2959,disturbing,1401237236 +244241,2959,psychology,1401237230 +244241,2959,twist ending,1401237225 +244241,2959,violence,1401237217 +244241,2997,black comedy,1305760062 +244241,2997,Cameron Diaz,1305760041 +244241,2997,Charlie Kaufman,1305760039 +244241,2997,John Cusack,1305760045 +244241,2997,surreal,1305760033 +244241,2997,surrealism,1305760036 +244241,3052,Ben Affleck,1359327307 +244241,3052,Christianity,1359327317 +244241,3052,Comedy,1359327320 +244241,3052,controversial,1359327304 +244241,3052,jay and silent bob,1359327334 +244241,3052,Kevin Smith,1359327323 +244241,3052,Matt Damon,1359327312 +244241,3052,religion,1359327327 +244241,3175,Tim Allen,1313279189 +244241,3300,aliens,1359326301 +244241,3300,anti-hero,1359326283 +244241,3300,could have been better,1359326267 +244241,3300,futuristic,1359326956 +244241,3300,good concept,1359326951 +244241,3300,poor character development,1359326288 +244241,3300,sci-fi,1359326276 +244241,3300,suspense,1359326297 +244241,3354,Hollywood,1366581870 +244241,3863,gore,1366490605 +244241,3863,horror,1366490609 +244241,3863,scary,1366490612 +244241,3981,bad science,1417222677 +244241,3981,bad script,1417222683 +244241,3981,Dull,1417222686 +244241,4262,Al Pacino,1313201446 +244241,4262,classic,1313201469 +244241,4262,mafia,1313201465 +244241,4262,Nudity (Topless - Brief),1313201456 +244241,4262,organized crime,1313201444 +244241,4262,violence,1313201459 +244241,4643,predictable,1416712846 +244241,4643,remake,1416712843 +244241,4848,David Lynch,1306636181 +244241,4848,lesbian,1306636191 +244241,4848,Nudity (Full Frontal - Notable),1306636194 +244241,4848,Nudity (Full Frontal),1306636200 +244241,4848,surreal,1306636185 +244241,4878,psychology,1306548764 +244241,4878,twist ending,1306548780 +244241,4975,Cameron Diaz,1359327191 +244241,4975,remake,1304724983 +244241,4975,Romance,1359327188 +244241,4975,Tom Cruise,1359327185 +244241,6874,imdb top 250,1318116245 +244241,6874,Quentin Tarantino,1318116234 +244241,6874,Uma Thurman,1318116240 +244241,6874,violence,1318116222 +244241,6874,violent,1318116227 +244241,6874,visually appealing,1318116232 +244241,8874,black comedy,1305765383 +244241,8874,British,1305765386 +244241,8874,british comedy,1305765388 +244241,8874,gore,1305765375 +244241,8914,Complicated,1334373762 +244241,8914,indie,1334373781 +244241,8914,mindfuck,1334373766 +244241,8914,physics,1334373774 +244241,8914,time travel,1334373771 +244241,26444,based on a book,1359327074 +244241,27009,anti-hero,1334368321 +244241,27009,cheap,1305759946 +244241,27009,Cheap but fun,1305759954 +244241,27009,geeks,1305759960 +244241,27482,bad sequel,1416712664 +244241,46578,dark comedy,1314745172 +244241,51255,action,1305772627 +244241,51255,black comedy,1305772630 +244241,51255,british comedy,1305772635 +244241,51255,violence,1305772647 +244241,55908,Excellent use of dialogue,1416707240 +244241,55908,intellectual,1416707248 +244241,55908,philosophical,1416707242 +244241,55908,thought-provoking,1416707244 +244241,65642,paradox,1424573009 +244241,65642,Spanish,1424573021 +244241,65642,time travel,1424573012 +244241,68157,World War II,1318116451 +244241,68237,artificial intelligence,1366419913 +244241,68237,depressing,1366419889 +244241,68237,drama,1366419899 +244241,68237,sci-fi,1302821638 +244241,68237,solitude,1302821646 +244241,68237,twist ending,1366419909 +244241,68952,Bechdel Test:Pass,1312507361 +244241,71057,post-apocalyptic,1309132022 +244241,71057,visually appealing,1309132013 +244241,73268,dystopia,1359682017 +244241,73268,gore,1359682012 +244241,73268,gunfights,1359682025 +244241,73268,predictable,1359682040 +244241,74458,boring,1311380509 +244241,74458,nazis,1311380473 +244241,74458,plot twist,1311380521 +244241,74458,psychological,1311380516 +244241,74458,too long,1311380477 +244241,77658,biology,1314744880 +244241,77658,Carl Sagan,1314744877 +244241,77658,not a movie,1314744889 +244241,77658,physics,1314744884 +244241,77658,science,1314744886 +244241,80831,remake,1364167036 +244241,80831,watered down,1364167040 +244241,81847,singing,1305337738 +244241,85412,mockumentary,1317429416 +244241,85412,mythology,1317429415 +244241,85412,scenic,1317429409 +244241,85412,trolls,1317429411 +244241,87306,bad science,1416535506 +244241,87306,Not Directed by Steven Spielberg,1317950625 +244241,87306,predictable,1416535475 +244241,94777,plot,1416874471 +244241,94864,aliens,1366419682 +244241,94864,Ridley Scott,1366490558 +244241,94864,scifi,1366419680 +244241,94864,space travel,1366419685 +244241,94864,technology,1366419674 +244274,32587,stylized,1318779835 +244274,60072,assassin,1318779439 +244274,60072,Morgan Freeman,1318779436 +244274,66171,psychic powers,1318779346 +244274,79057,action,1318779044 +244274,79057,Adrien Brody,1318779047 +244274,79057,aliens,1318779041 +244274,79057,bad science,1318779093 +244274,79057,childish plot,1318779108 +244274,79057,franchise,1318779078 +244274,79057,predator,1318779055 +244274,79057,silly,1318779084 +244299,32,great ending,1368290900 +244299,32,original,1368290304 +244299,47,great ending,1368290900 +244299,50,storytelling,1368290417 +244299,70,cult classic,1368290799 +244299,111,loneliness,1368290555 +244299,150,dramatic,1368290631 +244299,169,family,1368290845 +244299,204,action,1368290655 +244299,296,storytelling,1368290417 +244299,318,great acting,1368290769 +244299,318,great ending,1368290900 +244299,455,family,1368290845 +244299,508,dramatic,1368290631 +244299,593,great acting,1368290768 +244299,858,great acting,1368290769 +244299,858,oscar (best directing),1368290588 +244299,1185,cerebral,1368290964 +244299,1307,relationships,1368290696 +244299,1527,visually appealing,1368290751 +244299,1552,action,1368290655 +244299,1623,horror,1368290817 +244299,1704,mentor,1368290367 +244299,2076,weird,1368290732 +244299,2167,action,1368290655 +244299,2194,oscar (best directing),1368290588 +244299,2291,original,1368290304 +244299,2335,comedy,1368290395 +244299,2762,great ending,1368290900 +244299,2858,great acting,1368290768 +244299,3105,dramatic,1368290631 +244299,3147,oscar (best directing),1368290588 +244299,3157,family,1368290845 +244299,4226,storytelling,1368290417 +244299,4878,weird,1368290732 +244299,5673,weird,1368290732 +244299,5945,loneliness,1368290555 +244299,6188,comedy,1368290395 +244299,7147,story,1368290940 +244299,7438,storytelling,1368290417 +244299,8641,comedy,1368290395 +244299,32587,storytelling,1368290417 +244299,37729,visually appealing,1368290750 +244299,52952,characters,1292193829 +244299,52952,idea,1292193829 +244299,52952,Screenplay,1292193829 +244299,55290,mystery,1442100995 +244299,55290,twist,1442100984 +244299,60684,visually appealing,1368290751 +244299,64839,loneliness,1368290555 +244299,104374,life,1431718370 +244299,104879,great ending,1442098125 +244299,104879,Jake Gyllenhaal,1442098100 +244299,104879,realistic action,1442098116 +244299,112556,mindfuck,1442101008 +244299,112556,unpredictable,1442101015 +244308,1230,schlemiel wins,1428530284 +244308,25839,carole,1428530156 +244308,25839,carole lombard,1428530156 +244308,25839,lombard,1428530156 +244321,260,classic,1442011993 +244321,260,space action,1442011986 +244322,1,innovative,1271634326 +244322,2761,1950s,1271640289 +244322,2761,animation,1271640289 +244322,2761,emotional,1271640311 +244322,2761,retro-futuristic,1271640289 +244322,2761,story,1271640289 +244322,4370,acting,1271640112 +244322,4370,emotional,1271640090 +244322,4370,Steven Spielberg,1271640155 +244322,8961,innovative,1271634355 +244322,37386,visually appealing,1271639882 +244322,60684,cinematography,1271639803 +244326,3992,coming of age,1293397938 +244326,3992,voyeurism,1293397961 +244326,6885,Nudity (Full Frontal),1293397716 +244326,6885,sex,1293397729 +244326,81847,animation,1293397588 +244355,94070,predictalbe,1352667157 +244363,32,atmospheric,1453896666 +244363,32,dystopia,1453896658 +244363,32,end of the world,1453896676 +244363,32,epidemic,1453896686 +244363,32,future,1453896669 +244363,32,mental illness,1453896678 +244363,32,post-apocalyptic,1453896649 +244363,32,psychology,1453896661 +244363,32,sci-fi,1453896656 +244363,32,time loop,1453897680 +244363,32,time travel,1453896642 +244363,32,twist ending,1453896645 +244363,541,androids,1453897238 +244363,541,artificial intelligence,1453897339 +244363,541,atmospheric,1453897218 +244363,541,cyberpunk,1453897211 +244363,541,dystopia,1453897214 +244363,541,existentialism,1453897327 +244363,541,future,1453897227 +244363,541,great soundtrack,1453897268 +244363,541,philosophical,1453897249 +244363,541,sci-fi,1453897212 +244363,541,stylized,1453897224 +244363,541,Vangelis,1453897594 +244363,1527,aliens,1453897741 +244363,1527,dystopia,1453897888 +244363,1527,futuristic,1453897746 +244363,1527,Gary Oldman,1453897720 +244363,1527,humorous,1453897756 +244363,1527,sci-fi,1453897730 +244363,1527,stylized,1453897723 +244363,1527,surreal,1453897900 +244363,4223,sniper,1453898525 +244363,4223,War,1453898530 +244363,4223,World War II,1453898532 +244363,4878,alternate timeline,1453896789 +244363,4878,atmospheric,1453896743 +244363,4878,dreamlike,1453896752 +244363,4878,mental illness,1453896754 +244363,4878,original,1453897615 +244363,4878,psychology,1453896757 +244363,4878,quirky,1453897629 +244363,4878,surreal,1453896782 +244363,4878,time travel,1453896761 +244363,4878,twist ending,1453897632 +244363,4973,atmospheric,1453897370 +244363,4973,Audrey Tautou,1453897414 +244363,4973,beautifully filmed,1453897350 +244363,4973,feel-good,1453897393 +244363,4973,French,1453897438 +244363,4973,great soundtrack,1453897364 +244363,4973,idealism,1453897416 +244363,4973,imagination,1453897420 +244363,4973,music,1453897427 +244363,4973,notable soundtrack,1453897406 +244363,4973,quirky,1453897353 +244363,4973,quirky romantic,1453897976 +244363,4973,romance,1453897970 +244363,4973,romantic but not cheesy,1453897978 +244363,4973,stylized,1453897526 +244363,4973,surreal,1453897505 +244363,4973,visually appealing,1453897510 +244363,4973,whimsical,1453897497 +244363,7143,historical,1453898716 +244363,7143,intense,1453898784 +244363,7143,Japan,1453898713 +244363,7143,Japanese culture,1453898720 +244363,7143,rebellion,1453898723 +244363,7143,samurai,1453898778 +244363,7143,war,1453898788 +244363,7502,historical,1453898404 +244363,7502,military,1453898396 +244363,7502,realistic,1453898399 +244363,7502,true story,1453898401 +244363,7502,war,1453898395 +244363,7502,World War II,1453898393 +244363,27608,cyberpunk,1453898814 +244363,27608,Egyptian Mythology,1453898831 +244363,27608,futuristic,1453898816 +244363,27608,interesting,1453898823 +244363,27608,stylized,1453898808 +244363,27608,surreal,1453898829 +244363,27728,anime,1453898879 +244363,27728,atmospheric,1453898904 +244363,27728,cyberpunk,1453898880 +244363,27728,philosophical,1453898884 +244363,27728,sci-fi,1453898901 +244363,34405,adventure,1453898590 +244363,34405,black comedy,1453898616 +244363,34405,Firefly,1453898574 +244363,34405,quirky,1453898577 +244363,34405,sci-fi,1453898571 +244363,34405,space,1453898572 +244363,34405,space western,1453898602 +244363,34405,witty,1453898579 +244363,36529,arms dealer,1453898213 +244363,36529,based on a true story,1453898225 +244363,36529,cold war,1453898198 +244363,36529,corruption,1453898176 +244363,36529,guns,1453898172 +244363,36529,Nicolas Cage,1453898165 +244363,36529,organized crime,1453898219 +244363,36529,political,1453898223 +244363,36529,war,1453898188 +244363,36529,weapons,1453898248 +244363,36529,World Politics,1453898234 +244363,44191,action,1453897703 +244363,44191,anarchism,1453896496 +244363,44191,dark,1453896427 +244363,44191,dystopia,1453896535 +244363,44191,freedom,1453896495 +244363,44191,revenge,1453896421 +244363,44191,sci-fi,1453896453 +244363,44191,terrorism,1453896446 +244363,44191,visually appealing,1453896526 +244363,48043,artistic,1453898298 +244363,48043,atmospheric,1453898274 +244363,48043,death,1453898278 +244363,48043,dreamlike,1453898296 +244363,48043,emotional,1453898287 +244363,48043,immortality,1453898276 +244363,48043,love,1453898307 +244363,48043,multiple storylines,1453898282 +244363,48043,Music,1453898270 +244363,48043,sci-fi,1453898310 +244363,48043,surreal,1453898293 +244363,48043,visually appealing,1453898294 +244363,48774,atmospheric,1453896605 +244363,48774,end of the world,1453896636 +244363,48774,futuristic,1453896569 +244363,48774,sci-fi,1453896585 +244363,48774,survival,1453896588 +244363,55247,adventure,1453898367 +244363,55247,Alaska,1453898349 +244363,55247,atmospheric,1453898347 +244363,55247,based on a true story,1453898341 +244363,55247,bittersweet,1453898364 +244363,55247,coming of age,1453898378 +244363,55247,experience,1453898380 +244363,55247,freedom,1453898369 +244363,55247,great soundtrack,1453898346 +244363,55247,inspirational,1453898377 +244363,55247,Music,1453898357 +244363,55247,psychology,1453898361 +244363,55247,road trip,1453898344 +244363,55247,self discovery,1453898339 +244363,55247,travel,1453898359 +244363,55247,wilderness,1453898353 +244363,63433,aliens,1453898659 +244363,63433,Farscape,1453898669 +244363,63433,space,1453898656 +244363,63433,wormhole,1453898678 +244363,70286,aliens,1453897045 +244363,70286,alternate history,1453897067 +244363,70286,atmospheric,1453897036 +244363,70286,fake documentary,1453897074 +244363,70286,heartbreaking,1453897662 +244363,70286,humor,1453897647 +244363,70286,intelligent,1453897031 +244363,70286,intelligent sci-fi,1453897026 +244363,70286,mockumentary,1453897056 +244363,70286,political commentary,1453897667 +244363,70286,sci-fi,1453897028 +244363,70286,social commentary,1453897047 +244363,70286,unique,1453897038 +244363,70286,weapons,1453897076 +244363,74624,atheism,1453896376 +244363,74624,historical,1453896388 +244363,74624,philosophy,1453896392 +244363,74624,rationality,1453896379 +244363,85763,war,1453898151 +244363,85763,World War I,1453898150 +244363,96610,dystopia,1453896909 +244363,96610,future,1453896914 +244363,96610,organized crime,1453896920 +244363,96610,plot holes,1453896882 +244363,96610,sci-fi,1453896847 +244363,96610,telekinesis,1453896888 +244363,96610,time travel,1453896845 +244363,97752,atmospheric,1453896949 +244363,97752,complicated,1453896963 +244363,97752,dystopia,1453896947 +244363,97752,future,1453896967 +244363,97752,multiple storylines,1453896943 +244363,97752,philosophy,1453896955 +244363,97752,rebellion,1453896965 +244363,97752,sci-fi,1453896953 +244363,97752,visually appealing,1453896945 +244363,97921,cliche,1453898112 +244363,97921,dark humor,1453898070 +244363,97921,humorous,1453898086 +244363,97921,loneliness,1453898076 +244363,97921,love,1453898082 +244363,97921,mental illness,1453898069 +244363,97921,predictable ending,1453898098 +244363,97921,romance,1453898074 +244363,99114,funny,1453898002 +244363,99114,Great performances,1453898006 +244363,99114,Revenge,1453897999 +244363,99114,Soundtrack,1453898016 +244363,99114,violence,1453898037 +244363,115210,realistic,1453898513 +244363,115210,tanks,1453898485 +244363,115210,war,1453898487 +244363,115210,World War II,1453898488 +244363,115713,artificial intelligence,1453897112 +244363,115713,consciousness,1453897198 +244363,115713,cybernetics,1453897132 +244363,115713,isolation,1453897158 +244363,115713,philosophical,1453897116 +244363,115713,plot twist,1453897190 +244363,115713,Psychological,1453897169 +244363,115713,robots,1453897167 +244363,115713,sci-fi,1453897113 +244363,115713,technology,1453897124 +244363,115713,thought provoking,1453897171 +244363,122882,adventure,1453896328 +244363,122882,chase,1453896346 +244363,122882,crazy characters,1453898474 +244363,122882,desert,1453898425 +244363,122882,dystopian,1453896325 +244363,122882,great soundtrack,1453896307 +244363,122882,non-stop,1453898451 +244363,122882,post apocalypse,1453896300 +244363,122882,sci-fi,1453896330 +244363,122882,visually appealing,1453896332 +244363,122882,wasteland,1453896320 +244363,134130,Improvisation,1453897937 +244363,134130,mars,1453897925 +244363,134130,Near Future,1453897957 +244363,134130,realistic,1453897929 +244363,134130,scientific,1453897931 +244363,134130,Space,1453897918 +244363,134130,space travel,1453897926 +244363,136449,cyberpunk,1453898857 +244370,4846,kung fu,1286676029 +244370,4846,martial arts,1286676037 +244409,260,fantasy,1438520494 +244409,260,sci-fi,1438520468 +244441,52328,horror story,1441697706 +244441,55269,Wes Anderson,1441697667 +244447,2571,Futuristic,1434646421 +244447,45720,Encouragement,1434646311 +244479,1258,character development,1345129651 +244479,1258,insanity,1345129651 +244479,54796,foreign language,1345131347 +244479,54796,happy ending,1345131347 +244479,54796,subtitles,1345131347 +244479,89753,confusing plot,1345131273 +244479,89753,slow paced,1345131273 +244487,260,classic sci-fi,1432212757 +244487,260,sci-fi,1432212748 +244563,215,conversation,1435576560 +244563,69757,quirky,1435576598 +244563,69757,Zooey Deschanel,1435576597 +244563,79132,exciting,1435576724 +244563,79132,fanciful,1435576724 +244563,79132,imagination,1435576724 +244589,260,geeky,1440858369 +244589,260,sci-fi,1440858367 +244606,11,DVD Collection,1217475578 +244606,34,DVD Collection,1217475721 +244606,356,history,1424057757 +244606,356,southern theme,1424057757 +244606,356,special effects,1424057757 +244606,588,DVD Collection,1217447150 +244606,593,duel,1425860587 +244606,593,procedural,1425860587 +244606,593,serial killer,1425860587 +244606,909,DVD Collection,1217475670 +244606,924,DVD Collection,1217446833 +244606,1127,DVD Collection,1217446980 +244606,1198,DVD Collection,1217447046 +244606,1200,DVD Collection,1217447214 +244606,1208,DVD Collection,1217475704 +244606,1214,DVD Collection,1217447207 +244606,1225,DVD Collection,1217475555 +244606,1274,DVD Collection,1217447134 +244606,1291,DVD Collection,1217447037 +244606,1374,midlife crisis,1252218887 +244606,2071,DVD Collection,1217475650 +244606,2115,DVD Collection,1217447042 +244606,2262,DVD Collection,1217446929 +244606,2311,DVD Collection,1257978678 +244606,2397,Catholicism,1250903247 +244606,2826,DVD Collection,1257978672 +244606,3897,DVD Collection,1217475502 +244606,4042,DVD Collection,1217447164 +244606,4217,DVD Colleciton,1257978682 +244606,4564,DVD Collection,1217475517 +244606,5377,DVD Collection,1217446899 +244606,5707,DVD Collection,1217446959 +244606,6787,DVD Collection,1217447243 +244606,7121,DVD Collection,1217447009 +244606,8190,DVD Collection,1217475594 +244606,31658,Hayao Miyazaki,1256969293 +244606,45950,DVD Collection,1217475623 +244606,62374,cia,1253046473 +244606,62374,espionage,1253046469 +244606,62374,Leonardo DiCaprio,1253046476 +244606,62374,Mark Strong,1253046478 +244606,62374,middle east,1253046487 +244606,62374,Russell Crowe,1253046482 +244606,62394,adapted from:game,1250991152 +244606,62394,based on a video game,1250991149 +244606,62394,Beau Bridges,1250991117 +244606,62394,computer game,1250991145 +244606,62394,Ludacris,1250991142 +244606,62394,Mark Wahlberg,1250991129 +244606,62394,Mila Kunis,1250991138 +244606,62394,movie to see,1250991135 +244606,62394,Script,1250991163 +244606,62394,video game adaptation,1250991140 +244606,62394,Visuals,1250991157 +244606,66509,Adam Sandler,1250987522 +244606,66509,Judd Apatow,1250987535 +244606,66509,Leslie Mann,1250987540 +244606,66509,long,1250987545 +244606,66509,Self Indulgent,1250987571 +244606,66509,Seth Rogen,1250987548 +244606,66509,stand-up comedy,1250987553 +244606,66509,too many plot threads,1250987512 +244606,66509,wandering,1250987506 +244606,68269,History,1257880103 +244606,68358,Pacing,1242088042 +244606,68358,Production Design,1242088026 +244606,68358,reboot,1242088011 +244606,68358,Script,1242088039 +244606,69640,Dillinger,1247840556 +244606,71057,post-apocalyptic,1252972873 +244606,71057,Simple,1252972861 +244606,71057,Visuals,1252972850 +244606,71156,based on a book,1258918596 +244606,71156,Kevin Spacey,1258918588 +244606,71579,England,1256685242 +244606,71579,London,1256685255 +244606,71579,May-December romance,1256685251 +244606,72405,dark comedy,1261087510 +244606,72405,hallucination,1261087507 +244606,72405,iguana,1261087493 +244606,72405,Jennifer Coolidge,1261087496 +244606,72405,New Orleans,1261087502 +244606,72405,Nicolas Cage,1261087498 +244606,72405,Val Kilmer,1261087513 +244606,72479,Ben Foster,1264032055 +244606,72479,Jena Malone,1264032074 +244606,72479,sad but much good,1264032069 +244606,72479,Samantha Morton,1264032057 +244606,72479,Steve Buscemi,1264032060 +244606,72479,Woody Harrelson,1264032077 +244606,72641,Racist,1259600037 +244606,79242,Script,1284301553 +244606,79242,Straight Affair,1284301573 +244606,85510,Emily Browning,1301547216 +244606,85510,Zack Snyder,1301547209 +244631,339,sandra 'boring' bullock,1138537770 +244631,1955,dentist,1193435061 +244631,7478,Cambodia,1170560997 +244631,32892,Russian,1170626366 +244631,34162,forgettable,1141391765 +244631,35957,short,1141391873 +244631,37729,dull story,1141391806 +244631,45950,powerpoint,1169616291 +244631,100365,activist,1425876220 +244631,100365,documentary,1425876220 +244631,100365,uganda,1425876220 +244649,7293,Drew Barrymore,1225279235 +244649,7346,Elisha Cuthbert,1225279334 +244649,7346,Timothy Olyphant,1225279334 +244659,1148,british comedy,1378415247 +244659,1148,Clay Animation,1378415231 +244659,1148,comedy,1378415235 +244659,1148,dogs,1378415244 +244659,1148,funny,1378415242 +244659,1148,hilarious,1378415260 +244659,1148,Oscar winner,1378415256 +244659,1148,Wallace & Gromit,1378415238 +244659,1240,Arnold Schwarzenegger,1378416983 +244659,1240,artificial intelligence,1378416999 +244659,1240,Nudity (Topless),1378416992 +244659,1240,terrorism,1378416997 +244659,4878,psychology,1378416877 +244659,4878,thought-provoking,1378416881 +244659,60069,Animation,1378416944 +244659,60069,Future,1378416974 +244659,60069,inspirational,1378416972 +244659,60069,pixar,1378416949 +244659,60069,post-apocalyptic,1378416959 +244659,60069,robots,1378416964 +244659,60069,social commentary,1378416961 +244659,68358,adventure,1378416904 +244659,68358,alternate reality,1378416908 +244659,68358,great soundtrack,1378416912 +244659,68358,space,1378416915 +244659,68358,teleportation,1378416928 +244659,68358,time travel,1378416919 +244659,68358,visually appealing,1378416922 +244659,70286,genetics,1378416854 +244659,70286,gore,1378416850 +244659,70286,violence,1378416858 +244659,104312,based on a best seller,1378415919 +244666,2115,not as good as 1 or 3,1144220762 +244677,4624,Puppets,1152747846 +244732,4033,cuban missile crisis,1440371508 +244732,4033,historical,1440371506 +244732,4033,politics,1440371504 +244732,73321,Christianity,1440370981 +244732,73321,dystopia,1440370978 +244732,73321,future,1440370989 +244732,73321,post-apocalyptic,1440370966 +244732,81641,based on a true story,1440371368 +244732,81641,CIA,1440371372 +244732,81641,Spy,1440371419 +244732,103249,Brad Pitt,1440371065 +244732,103249,pandemic,1440371067 +244732,103249,zombies,1440371056 +244732,106002,based on a book,1440371107 +244732,106002,Orson Scott Card,1440371119 +244732,106002,space,1440371104 +244732,106002,twist ending,1440371109 +244735,356,funny,1444429079 +244735,356,touching,1444429075 +244735,81591,dark,1444428976 +244735,81591,spooky,1444428982 +244735,96829,frustrating,1444428876 +244735,96829,mystery,1444428885 +244744,277,classic,1188263791 +244744,724,goth,1188263843 +244744,1249,woman,1188263764 +244744,1267,classic,1188263782 +244744,2105,computer,1188263820 +244751,47,brad pitt,1449702590 +244751,47,David Fincher,1449702596 +244751,47,Kevin Spacey,1449702593 +244751,47,morgan freeman,1449702588 +244751,47,serial killer,1449702585 +244751,50,Benicio Del Toro,1449704807 +244751,50,Kevin Spacey,1449704803 +244751,70,George Clooney,1449680858 +244751,70,Harvey Keitel,1449680855 +244751,70,mexico,1449680871 +244751,70,Quentin Tarantino,1449680837 +244751,70,Robert Rodriguez,1449680839 +244751,70,Salma Hayek,1449680847 +244751,70,strippers,1449680865 +244751,70,Tarantino,1449680852 +244751,70,vampires,1449680842 +244751,260,George Lucas,1449704891 +244751,260,Harrison Ford,1449704903 +244751,260,hero's journey,1449704910 +244751,260,space,1449704920 +244751,260,space opera,1449704900 +244751,260,Star Wars,1449704896 +244751,296,bruce willis,1449702410 +244751,296,John Travolta,1449702419 +244751,296,Quentin Tarantino,1449702402 +244751,296,Samuel L. Jackson,1449702406 +244751,296,Tarantino,1449702413 +244751,296,Uma Thurman,1449702416 +244751,318,Morgan Freeman,1449705072 +244751,318,prison,1449705082 +244751,318,prison escape,1449705084 +244751,318,Stephen King,1449705077 +244751,318,Tim Robbins,1449705092 +244751,407,John Carpenter,1449681824 +244751,407,lovecraftian,1449681819 +244751,527,holocaust,1449705736 +244751,527,Liam Neeson,1449705748 +244751,527,Nazi Germany,1449705745 +244751,527,Nazis,1449705741 +244751,527,Steven Spielberg,1449705738 +244751,541,artificial intelligence,1449704301 +244751,541,Harrison Ford,1449704299 +244751,541,Philip K. Dick,1449704297 +244751,541,Ridley Scott,1449704307 +244751,541,Rutger Hauer,1449704304 +244751,541,sci-fi,1449704295 +244751,565,Guillermo del Toro,1449682208 +244751,593,Anthony Hopkins,1449705598 +244751,593,cannibalism,1449705600 +244751,593,Hannibal Lecter,1449705604 +244751,593,Jodie Foster,1449705602 +244751,593,serial killer,1449705596 +244751,608,Coen Brothers,1449704756 +244751,608,Frances McDormand,1449704759 +244751,608,Minnesota,1449704763 +244751,608,Steve Buscemi,1449704765 +244751,608,William H. Macy,1449704761 +244751,653,Dragons,1449705042 +244751,750,cold war,1449705170 +244751,750,Peter Sellers,1449705166 +244751,750,Stanley Kubrick,1449705164 +244751,799,Ghosts,1449681605 +244751,799,serial killer,1449681606 +244751,799,supernatural,1449681603 +244751,903,Alfred Hitchcock,1449680110 +244751,903,James Stewart,1449680112 +244751,903,obsession,1449680115 +244751,903,San Francisco,1449680118 +244751,904,Alfred Hitchcock,1449679991 +244751,904,Grace Kelly,1449680002 +244751,904,Hitchcock,1449680009 +244751,904,James Stewart,1449679995 +244751,904,mystery,1449679998 +244751,904,voyeurism,1449679993 +244751,908,Alfred Hitchcock,1449680025 +244751,908,Cary Grant,1449680027 +244751,908,mistaken identity,1449680033 +244751,912,Humphrey Bogart,1449704704 +244751,912,Ingrid Bergman,1449704706 +244751,912,Nazis,1449704713 +244751,912,World War II,1449704711 +244751,913,Humphrey Bogart,1449701466 +244751,913,noir thriller,1449701463 +244751,913,Peter Lorre,1449701468 +244751,968,black and white,1449679006 +244751,968,horror,1449679011 +244751,968,zombies,1449679003 +244751,1086,Alfred Hitchcock,1449680073 +244751,1089,ensemble cast,1449702376 +244751,1089,Quentin Tarantino,1449702370 +244751,1089,Steve Buscemi,1449702381 +244751,1089,tarantino,1449702384 +244751,1091,Andrew McCarthy,1449680781 +244751,1136,John Cleese,1449705253 +244751,1136,Monty Python,1449705246 +244751,1136,Terry Gilliam,1449705250 +244751,1196,Carrie Fisher,1449704951 +244751,1196,George Lucas,1449704948 +244751,1196,Harrison Ford,1449704945 +244751,1196,space opera,1449704956 +244751,1196,Star Wars,1449704943 +244751,1197,Andre the Giant,1449705683 +244751,1197,Cary Elwes,1449705695 +244751,1197,Chris Sarandon,1449705689 +244751,1197,fairy tale,1449705677 +244751,1197,fantasy,1449705675 +244751,1197,pirates,1449705693 +244751,1197,Rob Reiner,1449705687 +244751,1197,Robin Wright Penn,1449705690 +244751,1198,adventure,1449703877 +244751,1198,archaeology,1449703882 +244751,1198,Egypt,1449703902 +244751,1198,Harrison Ford,1449703879 +244751,1198,indiana jones,1449703880 +244751,1198,Karen Allen,1449703893 +244751,1198,Nazis,1449703886 +244751,1198,Steven Spielberg,1449703888 +244751,1200,aliens,1449704480 +244751,1200,James Cameron,1449704489 +244751,1200,Sigourney Weaver,1449704486 +244751,1200,space,1449704483 +244751,1200,SPACE TRAVEL,1449704499 +244751,1201,Clint Eastwood,1449705378 +244751,1201,Ennio Morricone,1449705382 +244751,1201,Lee Van Cleef,1449705389 +244751,1201,Sergio Leone,1449705384 +244751,1201,spaghetti western,1449705380 +244751,1201,western,1449705386 +244751,1209,Charles Bronson,1449705449 +244751,1209,ennio morricone,1449705446 +244751,1209,Sergio Leone,1449705442 +244751,1209,spaghetti western,1449705444 +244751,1209,western,1449705451 +244751,1210,Carrie Fisher,1449704972 +244751,1210,George Lucas,1449704976 +244751,1210,Harrison Ford,1449704974 +244751,1210,space opera,1449704978 +244751,1214,aliens,1449704438 +244751,1214,H. R. Giger,1449704453 +244751,1214,Ridley Scott,1449704444 +244751,1214,sci-fi,1449704436 +244751,1214,Sigourney Weaver,1449704447 +244751,1214,space,1449704440 +244751,1215,bruce campbell,1449678949 +244751,1215,Sam Raimi,1449678946 +244751,1215,TIME TRAVEL,1449678944 +244751,1219,Alfred Hitchcock,1449679926 +244751,1219,black and white,1449679930 +244751,1219,Hitchcock,1449679933 +244751,1219,mental illness,1449679939 +244751,1219,motel,1449679947 +244751,1253,aliens,1449703325 +244751,1253,sci-fi,1449703329 +244751,1253,science fiction,1449703326 +244751,1258,jack nicholson,1449679903 +244751,1258,Stanley Kubrick,1449679902 +244751,1258,Stephen King,1449679906 +244751,1260,atmospheric,1449701409 +244751,1260,Fritz Lang,1449701406 +244751,1261,Bruce Campbell,1449678924 +244751,1261,dark humor,1449678930 +244751,1261,Sam Raimi,1449678927 +244751,1262,POWs,1449706201 +244751,1262,prison break,1449706198 +244751,1262,prison escape,1449706200 +244751,1262,Steve McQueen,1449706206 +244751,1262,World War II,1449706195 +244751,1266,Clint Eastwood,1449705527 +244751,1266,gene hackman,1449705531 +244751,1266,Morgan Freeman,1449705529 +244751,1266,western,1449705534 +244751,1270,Christopher Lloyd,1449704000 +244751,1270,comedy,1449703996 +244751,1270,Crispin Glover,1449704007 +244751,1270,Lea Thompson,1449704005 +244751,1270,Michael J. Fox,1449704003 +244751,1270,sci-fi,1449703995 +244751,1270,time travel,1449703992 +244751,1275,immortality,1449705006 +244751,1275,Sean Connery,1449704997 +244751,1275,sword fight,1449705002 +244751,1284,Bogart & Bacall,1449701496 +244751,1284,Humphrey Bogart,1449701494 +244751,1284,noir thriller,1449701492 +244751,1291,archaeology,1449703954 +244751,1291,Harrison Ford,1449703945 +244751,1291,Holy Grail,1449703949 +244751,1291,indiana jones,1449703951 +244751,1291,Nazis,1449703963 +244751,1291,Sean Connery,1449703960 +244751,1291,spielberg,1449703947 +244751,1291,Steven Spielberg,1449703956 +244751,1291,treasure,1449703944 +244751,1321,dark comedy,1449681621 +244751,1321,werewolf,1449681619 +244751,1321,werewolves,1449681617 +244751,1333,Alfred Hitchcock,1449679965 +244751,1333,animal attacks,1449679970 +244751,1333,animals,1449679973 +244751,1333,birds,1449679967 +244751,1334,Steve McQueen,1449702975 +244751,1340,Boris Karloff,1449682054 +244751,1340,Universal monsters,1449682053 +244751,1345,high school,1449679858 +244751,1345,stephen king,1449679856 +244751,1347,freddy krueger,1449679350 +244751,1347,horror,1449679349 +244751,1347,Wes Craven,1449679352 +244751,1348,F.W. Murnau,1449682167 +244751,1348,german expressionism,1449682163 +244751,1348,vampires,1449682165 +244751,1350,antichrist,1449681716 +244751,1350,religion,1449681719 +244751,1387,animal attacks,1449703221 +244751,1387,Roy Scheider,1449703226 +244751,1387,shark,1449703217 +244751,1387,spielberg,1449703215 +244751,1387,Steven Spielberg,1449703219 +244751,1391,Jack Nicholson,1449702908 +244751,1391,mars,1449702899 +244751,1391,Natalie Portman,1449702901 +244751,1391,Sarah Jessica Parker,1449702904 +244751,1391,Tim Burton,1449702906 +244751,1617,Danny DeVito,1449704834 +244751,1617,Guy Pearce,1449704837 +244751,1617,James Cromwell,1449704842 +244751,1617,Kevin Spacey,1449704830 +244751,1617,Los Angeles,1449704844 +244751,1617,Russell Crowe,1449704827 +244751,1623,horror,1449700657 +244751,1625,David Fincher,1449702701 +244751,1625,michael douglas,1449702704 +244751,1644,Jennifer Love Hewitt,1449702208 +244751,1644,Ryan Phillippe,1449702210 +244751,1644,Sarah Michelle Gellar,1449702206 +244751,1924,Bela Lugosi,1449702950 +244751,1924,Edward D. Wood Jr.,1449702952 +244751,1974,camp,1449679372 +244751,1974,serial killer,1449679376 +244751,1974,slasher,1449679369 +244751,1975,Jason Vorhees,1449679389 +244751,1975,slasher,1449679388 +244751,1976,Jason Vorhees,1449679402 +244751,1976,slasher,1449679400 +244751,1977,slasher,1449679417 +244751,1978,slasher,1449679428 +244751,1979,slasher,1449679441 +244751,1980,slasher,1449679452 +244751,1980,telekinesis,1449679455 +244751,1981,Jason Vorhees,1449679468 +244751,1981,slasher,1449679470 +244751,1982,Donald Pleasence,1449679144 +244751,1982,halloween,1449679147 +244751,1982,Jamie Lee Curtis,1449679149 +244751,1982,John Carpenter,1449679152 +244751,1982,slasher,1449679142 +244751,1994,ghosts,1449681695 +244751,1994,haunted house,1449681697 +244751,1997,horror,1449679879 +244751,1997,possession,1449679882 +244751,1997,William Friedkin,1449679887 +244751,2003,Christmas,1449680201 +244751,2003,small town,1449680203 +244751,2004,Joe Dante,1449680270 +244751,2009,Charlton Heston,1449703369 +244751,2009,overpopulation,1449703370 +244751,2011,Christopher Lloyd,1449704028 +244751,2011,Michael J. Fox,1449704031 +244751,2011,sci-fi,1449704026 +244751,2011,time travel,1449704025 +244751,2012,Christopher Lloyd,1449704054 +244751,2012,Michael J. Fox,1449704060 +244751,2012,sci-fi,1449704052 +244751,2012,time travel,1449704051 +244751,2012,western,1449704056 +244751,2028,horrors of war,1449705795 +244751,2028,Matt Damon,1449705788 +244751,2028,spielberg,1449705781 +244751,2028,Steven Spielberg,1449705778 +244751,2028,Tom Hanks,1449705776 +244751,2028,Vin Diesel,1449705784 +244751,2028,World War II,1449705774 +244751,2113,stephen king,1449700782 +244751,2115,archaeology,1449703921 +244751,2115,Harrison Ford,1449703918 +244751,2115,india,1449703927 +244751,2115,Indiana Jones,1449703923 +244751,2115,spielberg,1449703916 +244751,2115,Steven Spielberg,1449703925 +244751,2118,Christopher Walken,1449705642 +244751,2118,David Cronenberg,1449705644 +244751,2118,Stephen King,1449705640 +244751,2119,stephen king,1449703032 +244751,2122,creepy kids,1449700767 +244751,2122,small town,1449700765 +244751,2122,Stephen King,1449700762 +244751,2149,aztec,1449681026 +244751,2149,wacky,1449681023 +244751,2159,serial killer,1449679260 +244751,2160,Atmospheric,1449679688 +244751,2160,Mia Farrow,1449679696 +244751,2160,Roman Polanski,1449679690 +244751,2160,satanism,1449679694 +244751,2160,WITCHCRAFT,1449679692 +244751,2163,cult film,1449680321 +244751,2163,parody,1449680324 +244751,2174,Alec Baldwin,1449681658 +244751,2174,ghosts/afterlife,1449681673 +244751,2174,haunted house,1449681671 +244751,2174,Michael Keaton,1449681666 +244751,2174,Tim Burton,1449681656 +244751,2174,winona ryder,1449681662 +244751,2176,Alfred Hitchcock,1449680087 +244751,2176,James Stewart,1449680089 +244751,2186,Alfred Hitchcock,1449680053 +244751,2186,great concept,1449680054 +244751,2186,trains,1449680058 +244751,2193,fantasy,1449705020 +244751,2193,sword and sorcery,1449705023 +244751,2193,wizards,1449705026 +244751,2194,Brian De Palma,1449705982 +244751,2194,Ennio Morricone,1449705986 +244751,2194,gangsters,1449705968 +244751,2194,Kevin Costner,1449705978 +244751,2194,Robert De Niro,1449705980 +244751,2194,Sean Connery,1449705976 +244751,2279,slasher,1449702190 +244751,2287,ants,1449703292 +244751,2288,John Carpenter,1449703252 +244751,2288,Kurt Russell,1449703251 +244751,2327,Anthology,1449681557 +244751,2459,cannibalism,1449679182 +244751,2459,disturbing,1449679178 +244751,2459,horror,1449679187 +244751,2459,Leatherface,1449679184 +244751,2459,Tobe Hooper,1449679180 +244751,2488,Michael Powell,1449701145 +244751,2488,voyeurism,1449701141 +244751,2513,horror,1449681750 +244751,2513,stephen king,1449681749 +244751,2519,haunted house,1449679559 +244751,2519,Vincent Price,1449679557 +244751,2525,alligator,1449681453 +244751,2525,animal attack,1449681456 +244751,2525,creature feature,1449681454 +244751,2529,Charlton Heston,1449703348 +244751,2529,Rod Serling,1449703345 +244751,2529,science fiction,1449703352 +244751,2550,ghosts,1449679575 +244751,2550,gothic,1449679583 +244751,2550,haunted house,1449679580 +244751,2550,horror,1449679577 +244751,2550,supernatural,1449679572 +244751,2560,cannibalism,1449682247 +244751,2571,artificial intelligence,1449704267 +244751,2571,Carrie-Anne Moss,1449704259 +244751,2571,cyberpunk,1449704250 +244751,2571,Hugo Weaving,1449704261 +244751,2571,Keanu Reeves,1449704253 +244751,2571,Laurence Fishburne,1449704263 +244751,2571,martial arts,1449704269 +244751,2571,sci-fi,1449704246 +244751,2644,Bela Lugosi,1449682145 +244751,2644,Tod Browning,1449682148 +244751,2644,universal monsters,1449682143 +244751,2644,vampire,1449682142 +244751,2644,vampires,1449682147 +244751,2648,mad scientist,1449682043 +244751,2650,Frankenstein's monster,1449682082 +244751,2651,universal monsters,1449682096 +244751,2651,werewolf,1449682097 +244751,2652,horror,1449701729 +244751,2654,Lon Chaney Jr.,1449682125 +244751,2654,universal monsters,1449682123 +244751,2654,werewolf,1449682121 +244751,2654,werewolves,1449682128 +244751,2662,H.G. Wells,1449703306 +244751,2662,mars,1449703303 +244751,2664,Don Siegel,1449703275 +244751,2664,sci-fi,1449703280 +244751,2716,Bill Murray,1449680222 +244751,2716,Dan Aykroyd,1449680225 +244751,2716,ghosts,1449680221 +244751,2716,New York City,1449680230 +244751,2716,quotable,1449680238 +244751,2716,Sigourney Weaver,1449680227 +244751,2717,Dan Aykroyd,1449680258 +244751,2717,Ghosts,1449680256 +244751,2762,Bruce Willis,1449702778 +244751,2762,ghosts,1449702781 +244751,2762,m. night shyamalan,1449702773 +244751,2780,Boris Karloff,1449681639 +244751,2780,Edgar Allan Poe,1449681636 +244751,2780,Vincent Price,1449681638 +244751,2782,Edgar Allan Poe,1449679613 +244751,2782,Roger Corman,1449679615 +244751,2782,Vincent Price,1449679611 +244751,2784,devil worship,1449679634 +244751,2784,Edgar Allan Poe,1449679627 +244751,2784,roger corman,1449679631 +244751,2784,Vincent Price,1449679629 +244751,2785,Edgar Allan Poe,1449679647 +244751,2787,anthology,1449681574 +244751,2787,stephen king,1449681572 +244751,2791,David Zucker,1449705291 +244751,2791,Jerry Zucker,1449705296 +244751,2791,Leslie Nielsen,1449705286 +244751,2841,ghosts,1449702797 +244751,2841,supernatural,1449702795 +244751,2867,Chris Sarandon,1449680916 +244751,2867,Roddy McDowall,1449680918 +244751,2867,vampires,1449680914 +244751,2868,vampire,1449680934 +244751,2921,Clint Eastwood,1449705477 +244751,2922,Clint Eastwood,1449705500 +244751,2944,World War II,1449706183 +244751,2951,Clint Eastwood,1449705425 +244751,2951,Ennio Morricone,1449705430 +244751,2951,Sergio Leone,1449705426 +244751,2951,spaghetti western,1449705423 +244751,2951,western,1449705428 +244751,3016,Anthology,1449681503 +244751,3016,George A. Romero,1449681501 +244751,3017,anthology,1449681522 +244751,3017,stephen king,1449681530 +244751,3018,H.P. Lovecraft,1449678969 +244751,3018,mad scientist,1449678967 +244751,3018,zombies,1449678973 +244751,3075,Catherine Deneuve,1449701170 +244751,3075,MENTAL ILLNESS,1449701173 +244751,3075,Roman Polanski,1449701166 +244751,3147,Michael Clarke Duncan,1449705126 +244751,3147,prison,1449705132 +244751,3147,Sam Rockwell,1449705123 +244751,3147,Stephen King,1449705120 +244751,3147,Tom Hanks,1449705118 +244751,3421,college,1449705324 +244751,3421,fraternity,1449705328 +244751,3421,National Lampoon,1449705331 +244751,3435,film noir,1449701422 +244751,3435,Fred MacMurray,1449701428 +244751,3435,murder,1449701426 +244751,3499,James Caan,1449705625 +244751,3499,Kathy Bates,1449705627 +244751,3499,stephen king,1449705623 +244751,3508,Clint Eastwood,1449705510 +244751,3508,western,1449705513 +244751,3527,Arnold Schwarzenegger,1449704511 +244751,3527,Jesse Ventura,1449704513 +244751,3527,John McTiernan,1449704515 +244751,3552,golf,1449705311 +244751,3627,atmospheric,1449679671 +244751,3627,dreamlike,1449679674 +244751,3671,Gene Wilder,1449705273 +244751,3671,Mel Brooks,1449705271 +244751,3681,Clint Eastwood,1449705404 +244751,3681,Ennio Morricone,1449705406 +244751,3681,Lee Van Cleef,1449705410 +244751,3681,Sergio Leone,1449705408 +244751,3681,spaghetti western,1449705402 +244751,3696,Fred Dekker,1449701689 +244751,3727,vampires,1449680902 +244751,3757,anthology,1449701886 +244751,3832,Boris Karloff,1449701789 +244751,3832,Mario Bava,1449701788 +244751,3917,atmosphere,1449679330 +244751,3917,disgusting scenes,1449679332 +244751,3937,robots,1449704122 +244751,3938,slasher,1449681905 +244751,3941,slasher,1449702136 +244751,4036,vampire,1449682189 +244751,4036,Willem Dafoe,1449682186 +244751,4105,bruce campbell,1449678906 +244751,4105,dark humor,1449678908 +244751,4105,Sam Raimi,1449678912 +244751,4195,revenge,1449701903 +244751,4195,Vincent Price,1449701901 +244751,4226,Christopher Nolan,1449702638 +244751,4343,aliens,1449702879 +244751,4343,comedy,1449702881 +244751,4403,Edgar Allan Poe,1449679597 +244751,4403,Roger Corman,1449679601 +244751,4403,Vincent Price,1449679599 +244751,4406,western,1449705548 +244751,4437,Dario Argento,1449700388 +244751,4533,zombies,1449678987 +244751,4541,Voodoo,1449681779 +244751,4553,John Carpenter,1449704546 +244751,4665,Wes Craven,1449702076 +244751,4682,Julian Sands,1449700643 +244751,4725,Brad Anderson,1449679744 +244751,4725,creepy,1449679742 +244751,4725,horror,1449679737 +244751,4725,mental hospital,1449679739 +244751,4752,Gore,1449679215 +244751,4752,mental illness,1449679211 +244751,4754,Christopher Lee,1449701113 +244751,4754,pagan,1449701117 +244751,4833,atmospheric,1449679713 +244751,4833,haunted house,1449679715 +244751,4833,Peter Medak,1449679717 +244751,4876,ghosts,1449700588 +244751,5165,disturbing,1449679069 +244751,5165,Lucio Fulci,1449679066 +244751,5165,zombies,1449679064 +244751,5294,Bill Paxton,1449702751 +244751,5305,so bad it's good,1449680349 +244751,5438,Emilio Estevez,1449680387 +244751,5464,Jude Law,1449706005 +244751,5464,organized crime,1449706009 +244751,5464,Tom Hanks,1449706001 +244751,5478,creature feature,1449703008 +244751,5478,spiders,1449703010 +244751,5546,horror,1449700748 +244751,5552,Hammer Film Productions,1449701868 +244751,5649,Christopher Lee,1449701738 +244751,5649,Hammer Film Productions,1449701740 +244751,5697,slasher,1449681883 +244751,5771,slasher,1449681894 +244751,5980,Bob Clark,1449679127 +244751,5980,Christmas,1449679123 +244751,5980,creepy,1449679121 +244751,5980,slasher,1449679125 +244751,6047,bogart,1449701524 +244751,6047,film noir,1449701527 +244751,6063,disturbing,1449701044 +244751,6132,disturbing,1449679230 +244751,6323,Amanda Peet,1449702730 +244751,6323,John Cusack,1449702724 +244751,6323,Ray Liotta,1449702726 +244751,6615,slasher,1449681926 +244751,6629,Vincent Price,1449679548 +244751,6659,monster,1449701610 +244751,6707,Eli Roth,1449701971 +244751,6707,gore,1449701969 +244751,6731,George A. Romero,1449679041 +244751,6731,horror,1449679044 +244751,6731,zombies,1449679039 +244751,6820,Emily Perkins,1449701010 +244751,6820,Katherine Isabelle,1449701009 +244751,6820,werewolves,1449701006 +244751,7013,atmospheric,1449701273 +244751,7013,Robert Mitchum,1449701262 +244751,7115,Dario Argento,1449700279 +244751,7115,Giallo,1449700277 +244751,7217,noir thriller,1449701543 +244751,7387,George A. Romero,1449679024 +244751,7387,horror,1449679029 +244751,7387,zombies,1449679022 +244751,7492,George A. Romero,1449682224 +244751,7492,Tom Savini,1449682230 +244751,7492,Vampires,1449682227 +244751,7713,Jacques Tourneur,1449701196 +244751,7728,noir thriller,1449701554 +244751,7984,H.P. Lovecraft,1449679282 +244751,7984,mad scientist,1449679281 +244751,8501,Rutger Hauer,1449700449 +244751,8950,Christian Bale,1449702614 +244751,26134,Christopher Lee,1449701756 +244751,26134,Hammer Film Productions,1449701753 +244751,26134,Hammer Horror,1449701754 +244751,26558,advertising,1449701674 +244751,26558,consumerism,1449701676 +244751,26603,alice cooper,1449681839 +244751,26629,clowns,1449702964 +244751,37733,David Cronenberg,1449706055 +244751,37733,Viggo Mortensen,1449706053 +244751,40732,cave,1449701931 +244751,40732,claustrophobic,1449701929 +244751,41014,Giallo,1449700312 +244751,44555,Cold War,1449705884 +244751,44555,communism,1449705886 +244751,44555,East Germany,1449705875 +244751,44555,spying,1449705877 +244751,44828,alien invasion,1449701622 +244751,44828,body horror,1449701623 +244751,44828,Elizabeth Banks,1449701625 +244751,44828,nathan fillion,1449701627 +244751,46965,Planes,1449703047 +244751,46965,Snakes,1449703045 +244751,48516,Jack Nicholson,1449705926 +244751,48516,Leonardo DiCaprio,1449705922 +244751,48516,Mark Wahlberg,1449705930 +244751,48516,Martin Scorsese,1449705924 +244751,48516,Matt Damon,1449705928 +244751,48780,Christian Bale,1449702651 +244751,48780,Christoper Nolan,1449702662 +244751,48780,Christopher Nolan,1449702664 +244751,48780,David Bowie,1449702669 +244751,48780,Hugh Jackman,1449702659 +244751,48780,magic,1449702656 +244751,48780,Michael Caine,1449702679 +244751,48780,Nicola Tesla,1449702672 +244751,48780,Scarlett Johansson,1449702654 +244751,51540,David Fincher,1449702562 +244751,51540,Jake Gyllenhaal,1449702560 +244751,51540,serial killer,1449702558 +244751,52328,Cillian Murphy,1449704374 +244751,52328,Danny Boyle,1449704376 +244751,52328,sci-fi,1449704369 +244751,52328,space,1449704367 +244751,52328,spaceships,1449704371 +244751,52831,Bruce Campbell,1449703176 +244751,52831,Robert Z'Dar,1449703179 +244751,53519,car chase,1449702323 +244751,53519,classic car,1449702342 +244751,53519,great soundtrack,1449702336 +244751,53519,grindhouse,1449702346 +244751,53519,Kurt Russell,1449702326 +244751,53519,Quentin Tarantino,1449702321 +244751,53519,Rosario Dawson,1449702329 +244751,53953,John Cusack,1449702810 +244751,53953,Samuel L. Jackson,1449702812 +244751,53953,Stephen King,1449702807 +244751,55118,David Cronenberg,1449706031 +244751,55118,organized crime,1449706037 +244751,55118,Russian mafia,1449706039 +244751,55118,Viggo Mortensen,1449706027 +244751,55290,Ben Affleck,1449702522 +244751,55290,Casey Affleck,1449702524 +244751,55553,mad scientist,1449701643 +244751,55553,New Zealand,1449701645 +244751,55820,Coen Brothers,1449702461 +244751,55820,Cormac McCarthy,1449702467 +244751,55820,Javier Bardem,1449702479 +244751,55820,Tommy Lee Jones,1449702471 +244751,55820,Woody Harrelson,1449702475 +244751,56145,Frank Darabont,1449704632 +244751,56145,stephen king,1449704622 +244751,57368,"""found footage""",1449704599 +244751,57368,giant monster,1449704602 +244751,57368,New York City,1449704600 +244751,68157,Adolf Hitler,1449706145 +244751,68157,Brad Pitt,1449706121 +244751,68157,Christoph Waltz,1449706125 +244751,68157,Diane Kruger,1449706130 +244751,68157,Eli Roth,1449706157 +244751,68157,great soundtrack,1449706155 +244751,68157,Michael Fassbender,1449706161 +244751,68157,Nazis,1449706138 +244751,68157,Quentin Tarantino,1449706119 +244751,68157,revenge,1449706150 +244751,68157,World War II,1449706135 +244751,68237,artificial intelligence,1449704339 +244751,68237,isolation,1449704336 +244751,68237,Kevin Spacey,1449704341 +244751,68237,Sam Rockwell,1449704331 +244751,68237,Sci-fi,1449704326 +244751,68237,space,1449704328 +244751,68952,Alison Lohman,1449701948 +244751,68952,curse,1449701953 +244751,68952,Sam Raimi,1449701946 +244751,70159,Isabelle Fuhrman,1449700502 +244751,70286,aliens,1449704402 +244751,70286,sci-fi,1449704408 +244751,70286,social commentary,1449704406 +244751,70286,South Africa,1449704412 +244751,79132,alternate reality,1449704200 +244751,79132,Christopher Nolan,1449704210 +244751,79132,Ellen Page,1449704212 +244751,79132,Joseph Gordon-Levitt,1449704218 +244751,79132,Leonardo DiCaprio,1449704204 +244751,79132,Michael Caine,1449704215 +244751,79132,sci-fi,1449704208 +244751,80489,bank robbery,1449705951 +244751,80489,Ben Affleck,1449705948 +244751,80489,Boston,1449705954 +244751,80917,aliens,1449704568 +244751,80917,Gareth Edwards,1449704571 +244751,80917,mexico,1449704577 +244751,80917,science fiction,1449704581 +244769,260,science fantasy,1444635405 +244776,3593,campy,1350755447 +244776,74754,campy,1350755422 +244819,260,Favorites,1432002020 +244819,260,inspiring,1432002041 +244830,907,divorce,1171890218 +244830,6770,canada,1153492833 +244830,35836,dumb,1137192051 +244855,6045,drugs,1278828876 +244869,260,sci-fi,1441656804 +244869,260,space adventure,1441656826 +244882,260,jedi,1441794051 +244882,260,sci-fi,1441794034 +244893,53129,thriller,1443455540 +244893,55908,suspense,1443455566 +244893,96567,reader,1443455515 +244895,318,based on a book,1226907964 +244895,318,prison,1226907948 +244895,2140,classic,1228789699 +244895,2140,dark,1228789714 +244900,50,must see more than once,1184423059 +244900,1247,Simon & Garfunkel soundtrack,1139766771 +244900,2064,american idiocy,1162031988 +244900,2360,dogma 95,1170326424 +244900,2467,Eco,1137660648 +244900,4995,biography,1137627619 +244900,5669,american idiocy,1162031798 +244900,8464,american idiocy,1162031972 +244900,8622,american idiocy,1162031817 +244900,8685,miracles,1137660246 +244900,8685,religion,1137660227 +244900,8685,Spain,1137660246 +244900,26131,terrorism,1162031928 +244900,27410,shoa,1162400465 +244900,27846,american idiocy,1162031835 +244900,39292,american idiocy,1162031890 +244900,40278,pacifist,1140372794 +244900,45928,american idiocy,1162031773 +244900,53894,american idiocy,1189363680 +244900,94466,tv series,1447770523 +244909,260,action,1439255493 +244909,260,fantasy,1439255501 +244909,260,sci-fi,1439255483 +244953,260,scifi,1441324753 +244953,260,space adventure,1441324765 +244973,1136,bizarre ending,1427405271 +244973,1136,John Cleese,1427405282 +244973,1136,Monty Python,1427405257 +244973,1136,parody,1427405261 +244973,1136,satirical,1427405264 +244973,1732,coen brothers,1427405299 +244973,1732,Cult classic,1427405307 +244973,4973,charming,1427405206 +244973,4973,feel-good,1427405190 +244973,4973,French,1427405204 +244992,61449,flashbacks,1252925039 +244992,61449,love,1252925033 +244992,61449,multiple storylines,1252924899 +244992,68954,computer animation,1252486675 +244992,68954,heartbreaking,1252487842 +244992,68954,Pixar,1252487815 +245057,260,cult classic,1430434179 +245057,260,quotable,1430434190 +245074,115617,coming of age,1429317222 +245074,115617,feel-good,1429317222 +245074,115617,fun,1429317222 +245092,6618,kung fu,1430627258 +245092,26934,kungfu,1430627244 +245092,31878,kung fu,1430627274 +245092,58652,children's,1430627302 +245127,364,animal characters,1323439775 +245127,364,animation,1323439785 +245127,364,western animation,1323439825 +245127,551,claymation,1323186352 +245127,551,Henry Selick,1323186160 +245127,551,musical,1323186209 +245127,551,stop motion,1323186341 +245127,551,stylized,1323186396 +245127,2762,Atmospheric,1323185383 +245127,2762,twist ending,1323185395 +245127,3000,ambiguous character alignments,1323186823 +245127,3000,interesting creature designs,1323186623 +245127,3000,man vs. nature,1323186526 +245127,3000,nature gods,1323186753 +245127,3000,No traditional villain,1323186594 +245127,26999,animal characters,1323439343 +245127,26999,animation,1323439299 +245127,26999,sequel,1323439388 +245127,32840,claymation,1323439461 +245127,32840,monochromatic,1323439522 +245127,32840,stop motion,1323439450 +245127,32840,Vincent Price,1323439480 +245127,37729,claymation,1323186912 +245127,37729,musical,1323186874 +245127,37729,stop motion,1323186890 +245127,37729,stylized,1323187028 +245127,37857,Dave McKean,1323185704 +245127,37857,interesting creature designs,1323185767 +245127,37857,visually appealing,1323185797 +245127,41569,dinosaurs,1323185062 +245127,41569,longwinded,1323185155 +245127,41569,needlessly expanded,1323185281 +245127,41569,stylized,1323185084 +245127,66097,Added character,1323186111 +245127,66097,claymation,1323185837 +245127,66097,Henry Selick,1323185909 +245127,66097,Neil Gaiman,1323185863 +245127,66097,stop motion,1323438789 +245127,66097,Tim Burton,1323185961 +245127,69526,robots,1323184735 +245127,69526,sequel,1323184745 +245127,69526,Special Effects,1323184755 +245127,72226,stop motion,1323186430 +245127,77709,slow paced,1325813952 +245133,102903,illusions,1452375917 +245133,140110,wonderful,1452399905 +245135,260,exciting,1438787863 +245135,260,mystery,1438787851 +245136,858,classic,1200669889 +245136,1221,Classic,1200669907 +245141,55247,Alaska,1209409990 +245141,55247,based on a true story,1209409957 +245141,55247,nature wildlife,1209409942 +245141,55247,non-linear,1209409925 +245141,55247,Sean Penn,1209409716 +245141,55247,self discovery,1209409981 +245141,55247,travel,1209410049 +245141,55820,ambiguous ending,1209410245 +245141,55820,great acting,1209410243 +245141,55820,Tommy Lee Jones,1209410230 +245141,55820,violent,1209410226 +245144,102125,exciting,1425174229 +245144,102125,funny,1425174229 +245144,102125,kick ass,1425174229 +245183,6290,Rob Zombie,1154088960 +245193,101285,surreal,1434550887 +245193,135216,torture,1444540912 +245209,595,Disney,1162759462 +245209,653,dragon,1162759444 +245209,1485,funny,1162759453 +245209,46322,Martial Arts,1162760652 +245220,2571,digital,1449227298 +245220,2571,future dystopias,1449224599 +245226,750,anti-war,1144016951 +245226,750,classic,1144016976 +245226,750,nuclear war,1144016978 +245228,296,Quentin Tarantino,1147259321 +245228,5010,Ridley Scott,1146922909 +245249,253,Kirsten Dunst,1248639354 +245249,253,lots of blood,1248639363 +245249,253,Tom Cruise,1248639372 +245249,253,vampires,1248639358 +245249,1219,Alfred Hitchcock,1248461407 +245249,1219,cross dressing men,1248461430 +245249,1219,psychology,1248461411 +245249,1219,remade,1248461440 +245249,1219,serial killer,1248461421 +245249,4036,based on a true story,1248552859 +245249,4036,film within a film,1248552832 +245249,4036,John Malkovich,1248552828 +245249,4036,Willem Dafoe,1248552825 +245249,4262,Al Pacino,1248731083 +245249,4262,classic,1248731090 +245249,4262,gangster,1248731098 +245249,4262,imdb top 250,1248731093 +245249,4262,violence,1248731087 +245249,8910,is life meaningful?,1248872223 +245249,8910,Jude Law,1248872208 +245249,8910,want to see again,1248872219 +245249,8910,whimsical,1248872216 +245249,68205,Jason Statham,1248712918 +245249,68205,story,1248712908 +245249,68205,stupid,1248712904 +245322,2657,Quirky,1434383018 +245322,26875,cosy,1434382396 +245322,26875,intriguing,1434382396 +245322,26875,thought-provoking,1434382396 +245326,50,must see,1146730972 +245326,223,good dialogue,1146731164 +245326,223,Kevin Smith,1146731137 +245326,223,must see,1146731164 +245326,296,good dialogue,1146731234 +245326,296,must see,1146730899 +245326,296,Quentin Tarantino,1145962472 +245326,318,classic,1146730952 +245326,541,must see,1146731065 +245326,541,sci-fi,1146731057 +245326,858,classic,1146730720 +245326,912,classic,1146730676 +245326,1199,must see,1146731116 +245326,1199,surreal,1146731116 +245326,1203,classic,1146730974 +245326,1203,good dialogue,1146731245 +245326,1206,Stanley Kubrick,1146730697 +245326,1208,classic,1146731037 +245326,1208,war,1146731039 +245326,1214,classic,1146731070 +245326,1214,sci-fi,1146731070 +245326,1221,classic,1146730723 +245326,1225,classic,1146731070 +245326,1225,must see,1146731070 +245326,1233,war,1146731106 +245326,1235,classic,1146730740 +245326,1235,good dialogue,1146731233 +245326,1235,must see,1146730861 +245326,1250,classic,1146731128 +245326,1250,war,1146731128 +245326,1639,Kevin Smith,1145962462 +245326,1732,classic,1146731066 +245326,1732,must see,1146731066 +245326,1748,creepy,1146731187 +245326,1748,sci-fi,1146731186 +245326,2657,classic,1146730946 +245326,2657,must see,1146730946 +245326,2699,spiders,1145962456 +245326,2858,must see,1146731068 +245326,2997,surreal,1146731067 +245326,4235,must see,1146731068 +245326,4878,good dialogue,1146731218 +245326,4878,must see,1146730843 +245326,4973,must see,1146730800 +245326,4973,romance,1146730792 +245326,5291,Akira Kurosawa,1146730905 +245326,5291,must see,1146730933 +245326,5902,surreal,1146731073 +245326,6953,remake,1146731072 +245326,7361,must see,1146730852 +245326,7361,surreal,1146730718 +245326,31804,Timur Bekmambetov,1197896025 +245326,32587,must see,1146730965 +245326,38600,Charles Bukowski,1148073699 +245326,43836,not funny; bad remake,1156115359 +245404,260,Epic,1434402239 +245404,260,Space,1434402233 +245432,4443,Futuristmovies.com,1173749580 +245432,4443,Sean Connery,1173749584 +245446,198,Angela Bassett,1443058096 +245446,198,corruption,1443058194 +245446,198,cyberpunk,1443058079 +245446,198,near-future,1443058131 +245446,198,noir,1443058170 +245446,198,rape,1443058154 +245446,327,based on a comic,1443057193 +245446,327,comic book,1443057197 +245446,327,Lori Petty,1443057187 +245446,327,post-apocalyptic,1443057184 +245446,327,punk,1443057216 +245446,327,stylized,1443057207 +245446,1320,aliens,1449551703 +245446,1320,rape,1449551742 +245446,1320,Sigourney Weaver,1449551706 +245446,1320,survival,1449551714 +245446,1408,colonialist,1443057151 +245446,1408,melodramatic,1443057154 +245446,1569,Cameron Diaz,1443056924 +245446,1569,jealousy,1443056958 +245446,1569,wedding,1443056934 +245446,1569,weddings,1443056941 +245446,1923,Cameron Diaz,1443056881 +245446,1923,crude humor,1443056856 +245446,2353,conspiracy,1443058804 +245446,2353,conspiracy theory,1443058769 +245446,2353,cover up,1443058802 +245446,2353,underdog,1443058815 +245446,2353,wrongly accused,1443058775 +245446,2724,feminist,1443056690 +245446,2724,weddings,1443056707 +245446,3186,Clea DuVall,1443057040 +245446,3186,dumbed down,1443057051 +245446,3186,melodramatic,1443057061 +245446,4069,predictable,1443056480 +245446,4069,silly,1443056495 +245446,4105,rape,1434495709 +245446,4105,splatter,1434495729 +245446,4741,1970s,1443907339 +245446,4741,commune,1443907361 +245446,4741,politics,1443907418 +245446,4741,social criticism,1443907337 +245446,4741,tender,1443907442 +245446,4741,witty,1443907420 +245446,5012,genderbending,1434497289 +245446,5012,Judaism,1434497319 +245446,5012,polyamory,1434497300 +245446,5012,social commentary,1443057745 +245446,5013,Bechdel test:Pass,1443059090 +245446,5013,biting,1443059104 +245446,5013,elegant,1443059098 +245446,5013,murder mystery,1443059077 +245446,5013,Period piece,1443059082 +245446,5013,witty,1443059080 +245446,5620,cliche,1443056633 +245446,6155,anti-feminism,1443056985 +245446,6155,battle of the sexes,1443056973 +245446,6680,mother-daughter relationships,1443057517 +245446,6680,sexuality,1443057515 +245446,6680,union,1443057507 +245446,6942,British comedy,1443056791 +245446,6942,derivative,1443056800 +245446,6942,happy ending,1443056765 +245446,6942,multiple storylines,1443056737 +245446,6942,predictable,1443056748 +245446,6944,wedding,1443056905 +245446,7894,James Coburn,1443058945 +245446,7894,political,1443059039 +245446,7894,revolution,1443058940 +245446,7894,Zapata Western,1443059029 +245446,43832,claymation,1443058695 +245446,43832,investigation,1443058756 +245446,43832,mystery,1443058732 +245446,43832,stop-motion,1443058682 +245446,49286,cliched,1443056313 +245446,51709,excellent choreography,1443058244 +245446,51709,Korea,1443058238 +245446,51709,resilient child character,1443058235 +245446,51709,social commentary,1443058270 +245446,51709,stylized,1443058301 +245446,51709,weird,1443058223 +245446,56949,unbelievable,1443056405 +245446,69251,Alternative realities,1443058862 +245446,69251,dark comedy,1443058865 +245446,69251,Michael Rapaport,1443058869 +245446,71468,dreams,1443058904 +245446,71468,visually appealing,1443058886 +245446,72167,disappointing,1443056822 +245446,72167,racist,1443056831 +245446,72630,dystopia,1443057249 +245446,72630,dystopian,1443057239 +245446,72630,journalist,1443057289 +245446,72630,science fiction,1443057242 +245446,72630,social commentary,1443057244 +245446,85412,atmospheric,1443058610 +245446,85412,conspiracy,1443058595 +245446,85412,cover up,1443058653 +245446,85412,fantasy,1443058613 +245446,85412,mythology,1443058575 +245446,85412,scenic,1443058579 +245446,86578,polyamory,1434483797 +245446,86833,Bechdel Test: pass,1443906866 +245446,86833,crude humor,1443906842 +245446,86833,female driven comedy,1443906853 +245446,86833,flawed characters,1443906873 +245446,86833,offbeat,1443906849 +245446,86833,poop humor,1443906845 +245446,87790,atmospheric,1443057362 +245446,87790,polyamory,1434480783 +245446,87790,Tom Tykwer,1443057350 +245446,92352,Native Americans,1443058552 +245446,93676,feminism,1434502148 +245446,94401,anticapitalism,1443059136 +245446,94401,radical activism,1443059192 +245446,94401,revolutionary politics,1443059174 +245446,94401,WTO protests,1443059144 +245446,99607,corruption,1443058406 +245446,99607,Natasha Lyonne,1443058381 +245446,99607,surreal,1443058420 +245446,104089,artificial intelligence,1443057547 +245446,104089,black-and-white,1443057676 +245446,104089,computer programming,1443057568 +245446,104089,mockumentary,1443057586 +245446,104089,surreal,1443057728 +245446,104339,awkward romance,1443057782 +245446,104339,Lake Bell,1443057811 +245446,104339,Nick Offerman,1443057815 +245446,104339,underdog,1443057831 +245446,104339,unlikely hero,1443057800 +245446,104339,voice acting,1443057803 +245446,116849,independence,1443057433 +245446,116849,quirky,1443057442 +245446,116849,self-esteem,1443057421 +245446,116849,teacher,1443057384 +245446,116897,anthology,1443552083 +245446,116897,dark humor,1443552087 +245446,117529,dinosaurs,1436118949 +245446,117529,man vs. nature,1436118932 +245455,4993,boring,1424789296 +245455,4993,for kids,1424789296 +245455,4993,zzzzzzzzzzzzzz...,1424789296 +245456,4034,drugs,1158692751 +245456,8983,Beautiful,1158692837 +245456,8983,martial arts,1158692833 +245456,27831,British gangster,1158692496 +245456,27831,guy ritchie,1159468341 +245459,88129,cinematography,1332861167 +245459,88129,ryan gosling,1332861157 +245459,88129,slow,1332861140 +245459,88129,soundtrack,1332861176 +245459,88129,violence,1332861152 +245459,91658,mystery,1332861030 +245459,91658,remake,1332861042 +245459,91658,thriller,1332861033 +245460,260,scifi cult,1434894930 +245460,260,space action,1434894936 +245460,34532,magic,1436890046 +245460,34532,suspense,1436890046 +245460,34532,terror,1436890046 +245467,260,Is romance and adventure,1444632973 +245467,260,Plot has adventure and love and is fantasy,1444632909 +245483,1,classic,1137117317 +245483,1,pixar,1137117317 +245483,10,007,1137204462 +245483,10,james bond,1137204462 +245483,12,vampire,1138035380 +245483,17,Jane Austen,1139326659 +245483,21,Hollywood,1139326652 +245483,22,serial killer,1140534107 +245483,25,alcoholism,1139326658 +245483,26,Shakespeare,1140534094 +245483,32,depressing,1137204322 +245483,32,end of the world,1138326969 +245483,32,time travel,1137204322 +245483,34,pigs,1137204397 +245483,36,death penalty,1139326662 +245483,36,Nun,1139326661 +245483,44,video game adaptation,1140534552 +245483,47,serial killer,1137204360 +245483,86,storm,1137558537 +245483,107,muppets,1137219870 +245483,110,Scotland,1137204235 +245483,140,journalism,1140534109 +245483,150,moon,1137204229 +245483,150,NASA,1137204224 +245483,150,space,1137204225 +245483,153,DC,1137118338 +245483,153,superhero,1137118338 +245483,161,submarine,1139326650 +245483,216,school,1140534114 +245483,253,anne rice,1138035445 +245483,253,vampire,1137117345 +245483,260,70s,1137204257 +245483,260,darth vader,1137204257 +245483,260,luke skywalker,1137204257 +245483,260,space,1137204257 +245483,260,space opera,1137204257 +245483,262,girls,1137117348 +245483,296,90s,1137204138 +245483,296,hit men,1137204138 +245483,316,time travel,1138326971 +245483,318,prison,1137204221 +245483,318,wrongful imprisonment,1137204221 +245483,332,evil children,1138035688 +245483,332,psychic powers,1138035688 +245483,332,remake,1138035688 +245483,349,Tom Clancy,1139326631 +245483,356,classic,1137117338 +245483,356,shrimp,1137465995 +245483,356,Vietnam,1137465993 +245483,357,wedding,1139326645 +245483,364,africa,1137204384 +245483,364,Disney,1137558421 +245483,367,comic book,1137204453 +245483,367,green,1137204453 +245483,367,superhero,1137204453 +245483,381,alcoholism,1140534111 +245483,382,classic,1137117313 +245483,382,werewolf,1137117313 +245483,393,video game adaptation,1140534693 +245483,454,John Grisham,1139326646 +245483,480,Dinosaurs,1137204194 +245483,480,genetics,1137204194 +245483,500,cross dressing,1137204435 +245483,500,divorce,1137204435 +245483,527,Holocaust,1139326623 +245483,546,video game adaptation,1140534554 +245483,586,christmas,1137117341 +245483,586,classic,1137117341 +245483,588,arabs,1137204311 +245483,588,disney,1137204311 +245483,588,fairy tale,1137204311 +245483,588,middle east,1137204311 +245483,588,stereotypes,1137204311 +245483,589,mayhem,1137204269 +245483,589,robots,1137204269 +245483,592,DC,1137117333 +245483,592,superhero,1137117333 +245483,593,cannibalism,1137204161 +245483,593,Hannibal Lector,1137204141 +245483,593,serial killer,1137204161 +245483,594,fairy tale,1137558347 +245483,595,Disney,1137558440 +245483,595,fairy tale,1137558413 +245483,596,Disney,1137558429 +245483,596,marionettes,1137558374 +245483,596,puppets,1137558374 +245483,597,cinderella,1137204422 +245483,597,prostitution,1137204422 +245483,653,dragons,1138429194 +245483,653,high fantasy,1138429194 +245483,653,medieval,1138429194 +245483,661,Roald Dahl,1140533567 +245483,704,martial arts,1138429356 +245483,720,Aardman,1139874221 +245483,733,Alcatraz,1139326636 +245483,741,adult swim,1137117847 +245483,741,anime,1137117847 +245483,745,Aardman,1139874243 +245483,780,aliens,1137204281 +245483,858,Mafia,1139326634 +245483,903,classic,1137117315 +245483,904,classic,1137117322 +245483,904,voyeurism,1137117322 +245483,920,Civil War,1147836895 +245483,922,classic,1137117317 +245483,924,classic,1137117327 +245483,942,black and white,1181766013 +245483,942,famous theme song,1181766005 +245483,950,Nick and Nora Charles,1140533996 +245483,953,christmas,1137117346 +245483,953,classic,1137117346 +245483,969,classic,1137117327 +245483,969,jungle,1137117327 +245483,1009,aliens,1140535399 +245483,1009,disney,1140535399 +245483,1010,cars,1137558391 +245483,1010,Disney,1137558431 +245483,1010,volkswagen,1137558391 +245483,1022,Disney,1137558425 +245483,1022,fairy tale,1137558356 +245483,1028,Disney,1137558420 +245483,1028,supercalifragilisticexpialidocious,1137204011 +245483,1029,Disney,1137558427 +245483,1029,elephants,1137558365 +245483,1030,Disney,1137558430 +245483,1033,tragedy,1137558404 +245483,1079,monty python alumni,1137204032 +245483,1097,aliens,1137117342 +245483,1097,classic,1137117342 +245483,1101,Navy,1140533765 +245483,1130,werewolf,1137117723 +245483,1131,hunchback,1198279202 +245483,1131,tragedy,1198279202 +245483,1136,british comedy,1137117351 +245483,1148,Aardman,1139874238 +245483,1148,classic,1137117314 +245483,1148,penguins,1139874243 +245483,1168,werewolf,1137117704 +245483,1193,book,1148966942 +245483,1193,lying,1148966930 +245483,1193,mental illness,1148966930 +245483,1193,metaphor,1148966930 +245483,1193,Oscar (Best Picture),1148966937 +245483,1193,unhappy ending,1148966972 +245483,1196,space,1137204341 +245483,1196,space opera,1137204341 +245483,1198,archaeology,1138891316 +245483,1198,ark of the covenant,1137204375 +245483,1198,indiana jones,1137204375 +245483,1198,Nazis,1164246743 +245483,1200,classic,1137117329 +245483,1203,classic,1137117326 +245483,1203,court,1137117326 +245483,1210,darth vader,1137218283 +245483,1214,chestburster,1137558513 +245483,1214,classic,1137117328 +245483,1214,haunted house,1137558513 +245483,1214,space,1137558513 +245483,1214,xenomorph,1137558513 +245483,1217,classic,1137117355 +245483,1217,samurai,1137117355 +245483,1223,Aardman,1139874249 +245483,1223,moon,1139874246 +245483,1258,classic,1137117318 +245483,1258,ghost,1137117318 +245483,1265,time travel,1137117340 +245483,1267,classic,1137117349 +245483,1270,classic,1137117330 +245483,1270,time travel,1137117330 +245483,1274,anime,1137117854 +245483,1275,immortality,1138429272 +245483,1275,immortals,1138429272 +245483,1282,classic,1137117337 +245483,1282,Disney,1137558423 +245483,1291,archaeology,1137985271 +245483,1291,father and son,1137985267 +245483,1291,Holy Grail,1137985270 +245483,1297,80s,1137117356 +245483,1321,classic,1137117329 +245483,1321,werewolf,1137117329 +245483,1329,vampire,1138035382 +245483,1333,birds,1137117334 +245483,1333,classic,1137117334 +245483,1339,vampire,1137117334 +245483,1349,vampire,1140535379 +245483,1377,DC,1137118339 +245483,1377,superhero,1137118339 +245483,1380,cars,1137117340 +245483,1387,classic,1137117346 +245483,1387,shark,1137117346 +245483,1393,sports,1137117347 +245483,1552,airplane,1140533966 +245483,1552,convicts,1140533962 +245483,1552,Jerry Bruckheimer,1140533975 +245483,1552,prison,1140533964 +245483,1562,camp,1137118337 +245483,1562,DC,1137118337 +245483,1562,superhero,1137118337 +245483,1586,feminism,1137558555 +245483,1586,military,1137558548 +245483,1586,women,1137558547 +245483,1681,video game adaptation,1140534574 +245483,1722,007,1138429396 +245483,1722,james bond,1138429396 +245483,1760,spice girls,1138429343 +245483,1855,anthropology,1137683286 +245483,1855,stereotypes,1137683286 +245483,1921,mathematics,1137117353 +245483,1932,biopic,1142005348 +245483,1932,broadway,1142005348 +245483,1932,circus,1142005348 +245483,1932,dancing girls,1142005348 +245483,1932,sandow,1142005348 +245483,1932,ziegfeld follies,1142005348 +245483,1967,muppets,1137219884 +245483,2005,80s,1137117339 +245483,2010,classic,1137117350 +245483,2010,robot,1137117350 +245483,2019,classic,1137117320 +245483,2019,samurai,1137117320 +245483,2028,World War II,1139326641 +245483,2083,muppets,1137219857 +245483,2085,disney,1140533493 +245483,2085,dogs,1140533493 +245483,2085,fashion,1140533493 +245483,2115,archaeology,1138891324 +245483,2115,classic,1137117341 +245483,2115,india,1137117342 +245483,2115,pulp,1137117341 +245483,2140,classic,1137117335 +245483,2140,muppets,1137219899 +245483,2143,dark fantasy,1137558458 +245483,2143,fairy tale,1137558458 +245483,2160,child birth,1139721410 +245483,2160,evil,1139721409 +245483,2160,satan,1139721409 +245483,2160,satanism,1139721409 +245483,2176,classic,1137117322 +245483,2184,black comedy,1137117316 +245483,2186,classic,1137117319 +245483,2186,homosexuality,1137117319 +245483,2186,murder,1139371246 +245483,2203,classic,1137117323 +245483,2205,marriage,1230666464 +245483,2205,screwball,1230666457 +245483,2208,classic,1137117348 +245483,2208,train,1137117348 +245483,2366,30s,1137466642 +245483,2366,classic,1137466622 +245483,2366,dinosaurs,1137466622 +245483,2366,stop motion,1137466622 +245483,2369,80s,1140533461 +245483,2369,80s music,1140533461 +245483,2369,80s nostalgia,1140533461 +245483,2376,007,1138429329 +245483,2376,james bond,1138429329 +245483,2398,christmas,1137117351 +245483,2398,classic,1137117351 +245483,2502,90s,1138035014 +245483,2502,cult classic,1138035014 +245483,2502,office,1138035014 +245483,2502,stapler,1137117352 +245483,2502,workplace,1138034778 +245483,2549,video game adaptation,1140534502 +245483,2553,evil children,1138035669 +245483,2553,psychic powers,1138035669 +245483,2554,evil children,1138035795 +245483,2554,psychic powers,1138035795 +245483,2554,sequel,1138035795 +245483,2571,90s,1137204409 +245483,2624,meditative,1186688541 +245483,2624,reflective,1186688539 +245483,2640,DC,1137118245 +245483,2640,superhero,1137118245 +245483,2641,DC,1137118245 +245483,2641,superhero,1137118245 +245483,2642,DC,1137118244 +245483,2642,superhero,1137118244 +245483,2643,DC,1137118244 +245483,2643,superhero,1137118244 +245483,2644,universal monsters,1138035378 +245483,2644,vampire,1138035378 +245483,2646,vampire,1138035384 +245483,2651,frankenstein,1138035314 +245483,2651,universal monsters,1138035314 +245483,2651,werewolf,1138035314 +245483,2653,vampire,1138035387 +245483,2654,universal monsters,1138035303 +245483,2654,werewolf,1138035303 +245483,2655,werewolf,1137117590 +245483,2657,camp,1137203693 +245483,2657,cross dressing,1137203693 +245483,2657,cult classic,1137203693 +245483,2657,homosexuality,1137203693 +245483,2657,tranvestism,1137203693 +245483,2700,cartman,1137203787 +245483,2700,comedy central,1137203787 +245483,2700,free speech,1137203787 +245483,2700,MPAA,1137203787 +245483,2700,parody,1137203787 +245483,2700,raunchy,1137203787 +245483,2700,swearing,1137203787 +245483,2709,muppets,1137219871 +245483,2716,ghosts,1137203463 +245483,2716,monsters,1137203463 +245483,2716,saturday night live,1137203463 +245483,2761,robots,1137203553 +245483,2762,ghosts,1137203756 +245483,2762,twist ending,1137203756 +245483,2793,werewolf,1137117593 +245483,2804,christmas,1137203255 +245483,2804,lifebuoy,1137203255 +245483,2804,red ryder,1137203255 +245483,2810,anime,1137117784 +245483,2822,cancer,1138429141 +245483,2822,primitive peoples,1138429141 +245483,2822,rain forest,1138429141 +245483,2857,beatles,1137203843 +245483,2857,psychedelic,1186282853 +245483,2858,depression,1137203198 +245483,2858,homosexuality,1137203198 +245483,2858,suburbia,1137203198 +245483,2858,teen angst,1137203198 +245483,2886,muppets,1137219833 +245483,2886,sesame street,1137219833 +245483,2918,genius,1137203403 +245483,2918,High School,1137203405 +245483,2918,teens,1137203403 +245483,2926,60s,1137203529 +245483,2926,baltimore,1137203529 +245483,2926,girls,1137203529 +245483,2926,retro,1137203529 +245483,2926,teens,1137203529 +245483,2947,007,1138429076 +245483,2947,james bond,1138429076 +245483,2948,007,1138429080 +245483,2948,james bond,1138429080 +245483,2949,007,1138429171 +245483,2949,james bond,1138429171 +245483,2959,90s,1137203445 +245483,2959,Chuck Palahniuk,1241659732 +245483,2959,dark,1241659812 +245483,2959,dark comedy,1241659853 +245483,2959,hyper masculine,1241659780 +245483,2959,masculine,1241659697 +245483,2959,men,1137203445 +245483,2959,mental illness,1241659710 +245483,2959,twist,1241659750 +245483,2959,violence,1137203445 +245483,2968,time travel,1138326962 +245483,2983,spies,1138036031 +245483,2989,007,1138429334 +245483,2989,james bond,1138429334 +245483,2990,007,1138429556 +245483,2990,james bond,1138429556 +245483,2991,007,1138429322 +245483,2991,james bond,1138429322 +245483,2993,007,1138429090 +245483,2993,james bond,1138429090 +245483,3000,anime,1137117781 +245483,3052,jay and silent bob,1137203326 +245483,3052,religion,1137203304 +245483,3052,view askew,1137203326 +245483,3082,007,1138429398 +245483,3082,james bond,1138429398 +245483,3087,christmas,1137203710 +245483,3087,new york,1137203710 +245483,3089,classic,1137203196 +245483,3089,family,1137203196 +245483,3089,neorealism,1140060795 +245483,3089,sad,1140060801 +245483,3103,illiteracy,1162308437 +245483,3103,teen pregnancy,1162308443 +245483,3103,Union Street,1162308466 +245483,3103,working class,1162308450 +245483,3213,DC,1137118340 +245483,3213,superhero,1137118340 +245483,3396,kermit,1137203631 +245483,3396,miss piggy,1137203631 +245483,3396,muppets,1137203631 +245483,3397,muppets,1137219875 +245483,3398,muppets,1137219874 +245483,3408,oscar,1137203400 +245483,3421,beer,1137203197 +245483,3421,classic,1137203197 +245483,3421,college,1137203197 +245483,3429,aardman,1137203287 +245483,3451,interracial marriage,1137203507 +245483,3451,prejudice,1137203507 +245483,3451,race,1137203507 +245483,3451,racism,1137203507 +245483,3471,aliens,1137203268 +245483,3471,ufos,1137203268 +245483,3633,007,1138429456 +245483,3633,james bond,1138429456 +245483,3635,007,1138429323 +245483,3635,james bond,1138429323 +245483,3638,007,1138429366 +245483,3638,james bond,1138429366 +245483,3638,jaws (bond),1138429366 +245483,3638,space,1138429366 +245483,3639,007,1138429324 +245483,3639,james bond,1138429324 +245483,3691,80s,1177380692 +245483,3691,teen,1177380688 +245483,3707,erotica,1140534409 +245483,3707,sexy food,1140534409 +245483,3751,aardman,1137203216 +245483,3751,claymation,1137203216 +245483,3751,stop motion,1137203216 +245483,3793,marvel,1137118139 +245483,3793,superhero,1137118139 +245483,3804,T&A movie,1177814601 +245483,3805,motorcycle,1178839779 +245483,3911,Dogs,1137203145 +245483,3915,boxing,1137203476 +245483,3915,girls,1137203476 +245483,3915,teens,1137203476 +245483,3927,human body,1140535371 +245483,3927,miniaturization,1140535371 +245483,3984,007,1138429203 +245483,3984,james bond,1138429203 +245483,3994,superhero,1137203809 +245483,3994,twist ending,1137203809 +245483,3996,china,1137203297 +245483,3996,martial arts,1137203297 +245483,4005,007,1138429552 +245483,4005,james bond,1138429552 +245483,4014,chocolate,1140412856 +245483,4014,france,1140412856 +245483,4014,magic realism,1140412922 +245483,4014,remake,1140412856 +245483,4030,vampire,1138035380 +245483,4120,devil,1137117962 +245483,4120,muscle,1306944749 +245483,4120,nerd,1306944752 +245483,4120,transformation,1306944750 +245483,4133,80s nostalgia,1137203931 +245483,4133,he-man,1137203931 +245483,4133,muscle,1137203931 +245483,4133,skeletor,1137203931 +245483,4219,80s,1140398871 +245483,4219,80s music,1140398894 +245483,4219,dancing,1140398894 +245483,4219,MTV influence,1140398894 +245483,4219,music videos,1140398894 +245483,4306,CG,1181530305 +245483,4306,donkey,1139336546 +245483,4306,Dreamworks,1181530304 +245483,4306,fairy tale,1139336545 +245483,4306,franchise,1181530304 +245483,4306,mascot,1181530304 +245483,4306,ogres,1181530304 +245483,4367,video game adaptation,1140534744 +245483,4425,werewolf,1137117722 +245483,4437,two strip technicolor,1140535425 +245483,4446,anime,1137118389 +245483,4446,CG,1137118389 +245483,4446,motion capture,1137118389 +245483,4485,guilty pleasure,1197075592 +245483,4489,africa,1137203282 +245483,4489,immigrants,1137203282 +245483,4514,werewolf,1137117723 +245483,4571,rock and roll,1138326954 +245483,4571,time travel,1138326958 +245483,4703,chocolate,1137203231 +245483,4703,france,1137203231 +245483,4734,bluntman and chronic,1137203573 +245483,4734,jay and silent bob,1137203573 +245483,4734,marijuana,1137203573 +245483,4734,parody,1137203573 +245483,4775,campy,1137683299 +245483,4878,confusing,1241660134 +245483,4878,emo,1241660161 +245483,4878,pretentious,1241660134 +245483,4878,shallow,1241660134 +245483,4878,stylized,1241660195 +245483,4878,time travel,1241660098 +245483,4936,80s,1137203401 +245483,4936,dance,1140058592 +245483,4936,homosexuality,1137203401 +245483,4936,music,1140058587 +245483,4936,sexuality,1137203401 +245483,4936,teens,1137203401 +245483,4973,child-like protagonist,1241660387 +245483,4973,fairy tale,1241660316 +245483,4973,Paris,1137203199 +245483,4979,new york,1137203703 +245483,4980,rock and roll,1138326954 +245483,4980,time travel,1138326957 +245483,4993,elves,1137203584 +245483,4993,high fantasy,1137203595 +245483,4993,hobbits,1137203584 +245483,4993,tolkien,1137203584 +245483,5008,Agatha Christie,1192078841 +245483,5008,court,1192078838 +245483,5026,exotica,1137203195 +245483,5026,martial arts,1137203195 +245483,5026,taxidermy,1137203195 +245483,5072,anime,1137117790 +245483,5072,ozuka,1137203617 +245483,5072,robots,1137203617 +245483,5128,anne rice,1138035477 +245483,5128,lestat,1138035477 +245483,5128,vampire,1138035477 +245483,5140,Baseball,1140533852 +245483,5140,culture clash,1140533852 +245483,5140,Japan,1140533852 +245483,5140,kids,1140533852 +245483,5140,Tokyo,1140533852 +245483,5146,anime,1137203822 +245483,5146,future,1137203822 +245483,5146,vampire,1137203822 +245483,5291,samurai,1137203647 +245483,5349,marvel,1137118193 +245483,5349,new york,1137118193 +245483,5349,superhero,1137118193 +245483,5444,aliens,1137558294 +245483,5444,cute,1137558299 +245483,5444,Disney,1137558290 +245483,5444,Hawaii,1137558304 +245483,5444,Mascots,1137558318 +245483,5444,Ohana,1137558311 +245483,5451,Amy Adams,1306380550 +245483,5451,bizarre,1306380543 +245483,5451,disability,1306380440 +245483,5451,indecisive,1306380518 +245483,5451,irreverent,1306380436 +245483,5451,quirky,1306380431 +245483,5451,satirical,1306380561 +245483,5618,anime,1137117817 +245483,5649,vampire,1138035383 +245483,5679,japanese horror rennaisance,1137203661 +245483,5690,anime,1241660836 +245483,5690,fire bombing,1140534173 +245483,5690,orphans,1140534148 +245483,5690,Studio Ghibli,1241660834 +245483,5690,tragedy,1140534173 +245483,5690,World War II,1140534157 +245483,5796,007,1138429485 +245483,5796,james bond,1138429485 +245483,5853,body horror,1311450778 +245483,5853,exploding heads,1311450782 +245483,5872,007,1138429398 +245483,5872,james bond,1138429398 +245483,5903,cult film,1226275272 +245483,5903,dystopia,1226275277 +245483,5952,elves,1137203598 +245483,5952,high fantasy,1137203598 +245483,5952,hobbits,1137203598 +245483,5952,tolkien,1137203598 +245483,5971,anime,1137117787 +245483,5991,jazz,1137203194 +245483,5991,murder,1137203194 +245483,6096,flop,1139369343 +245483,6096,homosexuality,1139369343 +245483,6157,daredevil,1137118213 +245483,6157,elektra,1137118213 +245483,6157,marvel,1137118213 +245483,6157,superhero,1137118213 +245483,6218,england,1137203199 +245483,6218,football,1137203199 +245483,6218,girls,1137203199 +245483,6218,india,1137203199 +245483,6218,london,1137203199 +245483,6218,sikh,1137203199 +245483,6218,soccer,1137203199 +245483,6283,adult swim,1137117840 +245483,6283,anime,1137117840 +245483,6316,african american,1137203836 +245483,6316,black,1137203836 +245483,6316,oz,1137203836 +245483,6333,marvel,1137118137 +245483,6333,superhero,1137118137 +245483,6350,anime,1137117793 +245483,6367,60s,1137203347 +245483,6367,retro,1137203347 +245483,6385,New Zealand,1140531989 +245483,6407,Tokyo,1139193089 +245483,6500,vampire,1138035386 +245483,6523,baseball,1138036016 +245483,6523,japan,1138036017 +245483,6534,green,1137118163 +245483,6534,marvel,1137118163 +245483,6534,muscle,1137118163 +245483,6534,rage,1137118163 +245483,6534,superhero,1137118163 +245483,6534,transformation,1137118163 +245483,6541,alan quartermain,1138429240 +245483,6541,boys own story,1138429240 +245483,6541,captain nemo,1138429240 +245483,6541,dorian grey,1138429240 +245483,6541,invisible man,1138429240 +245483,6541,mina harker,1138429240 +245483,6541,mr. hyde,1138429240 +245483,6541,vampires,1138429240 +245483,6564,video game adaptation,1140534739 +245483,6643,tokyo,1139193060 +245483,6665,vampire,1138035379 +245483,6668,china,1137203669 +245483,6668,family bonds,1140532082 +245483,6668,first love,1140532082 +245483,6668,quiet,1140532082 +245483,6668,village,1140532082 +245483,6711,Japan,1139193083 +245483,6711,tokyo,1139193082 +245483,6713,anime,1137117857 +245483,6727,overlooked classic,1179551563 +245483,6857,anime,1137117851 +245483,6863,elementary school,1156452668 +245483,6863,rock and roll,1156452654 +245483,6952,psychology,1140534201 +245483,6996,immortality,1138429284 +245483,6996,immortals,1138429284 +245483,7090,martial arts,1140532134 +245483,7118,anime,1137117821 +245483,7118,space,1137117821 +245483,7120,exploitation,1137117632 +245483,7120,werewolf,1137117632 +245483,7160,serial killer,1140534192 +245483,7225,bodybuilding,1137117986 +245483,7225,muscle,1137117986 +245483,7324,horse racing,1140534220 +245483,7324,horses,1140534220 +245483,7324,middle east,1140534220 +245483,7361,nonlinear,1241660283 +245483,7485,Tokyo,1139193072 +245483,7569,007,1138429254 +245483,7569,james bond,1138429254 +245483,7570,007,1138429308 +245483,7570,james bond,1138429308 +245483,7573,007,1138429102 +245483,7573,james bond,1138429102 +245483,7886,vampire,1138035382 +245483,8253,anime,1137117792 +245483,8360,fable,1139336550 +245483,8360,ogres,1139336551 +245483,8607,anime,1311533091 +245483,8607,father daughter relationship,1311533112 +245483,8607,homeless,1137117820 +245483,8607,Satoshi Kon,1311533094 +245483,8622,politics,1140413350 +245483,8622,terrorism,1140413349 +245483,8633,80s,1140534068 +245483,8633,video games,1140534068 +245483,8636,marvel,1137118194 +245483,8636,new york,1137118194 +245483,8636,superhero,1137118194 +245483,8807,asians,1140534088 +245483,8807,marijuana,1140534088 +245483,8807,stoner comedy,1140534088 +245483,8873,communism,1178839840 +245483,8873,genocide,1178839840 +245483,8873,motorcycle,1178839803 +245483,8873,Oscar (Best Music - Original Song),1178839813 +245483,8873,politics,1178839818 +245483,8905,Christopher Columbus,1137558532 +245483,8914,time travel,1138326964 +245483,8983,martial arts,1140532093 +245483,26082,anti-authoritarian,1254543880 +245483,26082,cinematography,1254543834 +245483,26082,Criterion,1254543881 +245483,26082,gory,1254543865 +245483,26082,revenge,1254543873 +245483,26082,Samurai,1254542897 +245483,26082,slow,1254543872 +245483,26082,suicide,1254543877 +245483,26152,camp,1137118337 +245483,26152,DC,1137118337 +245483,26152,superhero,1137118337 +245483,26662,anime,1137117789 +245483,26743,ghibli,1241660817 +245483,26743,Studio Ghibli,1241660814 +245483,27731,anime,1137117831 +245483,27731,cats,1137117831 +245483,27801,buddhism,1139455006 +245483,27801,kickboxing,1139454008 +245483,27801,muay thai,1139454008 +245483,27801,stunts,1139454008 +245483,27801,thailand,1139454008 +245483,27801,violence,1139454008 +245483,30793,adaptation,1140412800 +245483,30793,bad kids,1140412800 +245483,30793,candy,1140412800 +245483,30793,chocolate,1140412800 +245483,30793,family bonds,1140412800 +245483,30793,punishment,1140412800 +245483,30793,roald dahl,1140412767 +245483,30803,dry,1137557810 +245483,30803,magic realism,1137557810 +245483,30803,quiet,1137557810 +245483,30803,silent,1137557810 +245483,30803,visual,1137557810 +245483,31221,Marvel,1148864330 +245483,31221,superhero,1148864330 +245483,31437,tokyo,1139193086 +245483,31658,anime,1153198629 +245483,31658,Studio Ghibli,1153198652 +245483,33493,space,1137218280 +245483,33493,space opera,1137218278 +245483,33615,giraffes,1163445167 +245483,33615,hippos,1163445167 +245483,33615,lemurs,1163445167 +245483,33615,lions,1163445167 +245483,33615,penguins,1163445167 +245483,33615,zebras,1163445167 +245483,33794,batman,1241658679 +245483,33794,comic,1241658688 +245483,33794,comic book,1241658688 +245483,33794,dark,1241658679 +245483,33794,DC,1241658679 +245483,33794,jump cuts,1241658722 +245483,33794,superhero,1241658679 +245483,34162,buddy comedy,1138428695 +245483,34162,guys,1137465973 +245483,34162,lying,1137465973 +245483,34162,party,1137465973 +245483,34162,wedding,1137465973 +245483,34271,crunk,1140583660 +245483,34271,hip hop,1140583631 +245483,34271,pimps,1140583660 +245483,34271,prostitution,1140583660 +245483,34271,rappers,1140583660 +245483,35836,aquarius,1137218471 +245483,35836,beer,1137218471 +245483,35836,geeks,1137218471 +245483,35836,guys,1137218471 +245483,35836,sex,1137218471 +245483,35836,virgin,1137218471 +245483,37240,controversial,1140397005 +245483,37240,Military,1140397005 +245483,37380,video game adaptation,1140534758 +245483,37386,MTV,1138126232 +245483,37736,dickens,1139721416 +245483,37741,homosexuality,1194400781 +245483,37857,dream,1140531826 +245483,37857,Fantasy World,1140531805 +245483,37857,Neil Gaiman,1140531826 +245483,38038,06 Oscar Nominated Best Movie - Animation,1139874227 +245483,38038,Aardman,1139874236 +245483,38886,1980s,1254542200 +245483,38886,abrupt ending,1254542177 +245483,38886,feels unfinished,1254542189 +245483,38886,high squirm factor,1254542104 +245483,38886,masturbation,1254542170 +245483,38886,teenagers,1254542125 +245483,38886,writers,1254542114 +245483,39234,courtroom drama,1140531964 +245483,39234,feminism,1140531964 +245483,39234,mining,1140531964 +245483,39234,sexism,1140531964 +245483,39234,true story,1140531964 +245483,40339,CGI,1138126221 +245483,40339,Computer Generated,1138126221 +245483,40339,Disney,1138126221 +245483,40819,2006 Best Picture Oscar Nominee,1139870467 +245483,40819,Johnny Cash,1140030472 +245483,41566,Christian metaphors,1140530006 +245483,41566,fantasy world,1140530006 +245483,41569,30s,1137466637 +245483,41569,dinosaurs,1137466629 +245483,41569,gorilla,1137466610 +245483,41569,New York,1137466610 +245483,41571,cruelty,1140057356 +245483,41571,geisha,1137998673 +245483,41571,Japan,1137998673 +245483,41571,slavery,1140057356 +245483,41571,survival,1140057356 +245483,41571,women,1140057356 +245483,41716,assassination,1139326924 +245483,41716,hitman,1139326927 +245483,41716,midlife crisis,1139326925 +245483,41997,Israel,1140397197 +245483,41997,Olympics,1140397199 +245483,41997,Palestine,1140397197 +245483,42004,christianity,1140397026 +245483,42004,cultural conflict,1140397035 +245483,42004,gender identity,1140397026 +245483,42004,transsexuals,1140397026 +245483,42013,Farelly Brothers,1140397165 +245483,42013,lying,1140397165 +245483,42013,metal disability,1140397165 +245483,42013,Special Olympics,1140397165 +245483,42018,Burlesque,1140529958 +245483,42018,England,1140529958 +245483,42018,Strippers,1140529958 +245483,42018,Theater,1140529958 +245483,42018,Widow,1140529958 +245483,42418,Pocahontas,1140530394 +245483,42418,virginia,1140530376 +245483,42730,sports,1139870423 +245483,42734,Ben Folds,1305264276 +245483,42734,big bad wolf,1305264270 +245483,42734,fairy tale,1305264265 +245483,42734,little red riding hood,1138890606 +245483,42734,nonlinear,1305264268 +245483,42734,rashomon,1138890606 +245483,42738,dark fantasy,1138773870 +245483,42738,vampire,1138773870 +245483,42738,vampires,1138773870 +245483,42738,werewolf,1138773870 +245483,42738,werewolves,1138773870 +245483,44191,Alan Moore,1142869539 +245483,44191,comic book,1142869518 +245483,44191,disacknowledged,1142869539 +245483,44199,bank robbery,1143946676 +245483,45106,Bush bashing,1147189634 +245483,45431,comic strip,1152463734 +245483,45431,suburbia,1152463740 +245483,45431,talking animals,1152463738 +245483,45499,Marvel,1148864253 +245483,45499,superhero,1148864249 +245483,46530,comic book,1152097344 +245483,46530,superhero,1152097342 +245483,46578,beauty pageant,1156452419 +245483,46578,family bonds,1156452439 +245483,46578,family drama,1156452445 +245483,46578,kitsch,1156452427 +245483,46578,road trip,1156452456 +245483,46865,minstrel show,1193604688 +245483,46976,metaphysics,1163302335 +245483,46976,modern fantasy,1163302335 +245483,46976,writing,1163302335 +245483,47518,college,1163607463 +245483,47518,dude comedy,1163607463 +245483,47518,Mac guy,1163607463 +245483,47518,male self-degredation,1163607463 +245483,47610,19th century,1157725067 +245483,47610,costume drama,1241659076 +245483,47610,happy ending,1241659174 +245483,47610,magic,1241659401 +245483,47610,mysterious,1241659501 +245483,47610,Paul Giamatti,1241659149 +245483,47610,stage magic,1157725047 +245483,47610,twist ending,1241659109 +245483,48043,cerebral,1165120185 +245483,48043,cures,1165120185 +245483,48043,fountain of youth,1165120185 +245483,48043,medicine,1165120185 +245483,48043,metaphor,1165120185 +245483,48043,time travel,1165120185 +245483,48385,America,1163715925 +245483,48385,Borat,1163715925 +245483,48385,cultural exchange,1163715925 +245483,48385,gross,1163715925 +245483,48385,gross out,1163715925 +245483,48385,mockumentary,1163715925 +245483,48385,United States,1163715925 +245483,48696,adultery,1311533351 +245483,48696,dark,1311533357 +245483,48696,disturbing,1311533312 +245483,48696,extramarital affair,1311533347 +245483,48696,good acting,1311533340 +245483,48696,reflective,1311533315 +245483,48696,suburbia,1311533248 +245483,48696,talky,1311533326 +245483,48780,atmospheric,1241659647 +245483,48780,Christian Bale,1241659616 +245483,48780,dark,1241659629 +245483,48780,Hugh Jackman,1241659616 +245483,48780,magic,1241659616 +245483,48780,steampunk,1241659612 +245483,48780,twist ending,1241659654 +245483,48877,violence pornography,1194105320 +245483,48997,cannibalism,1197075908 +245483,48997,orgy,1197075908 +245483,48997,scent,1197075908 +245483,48997,senses,1197075908 +245483,48997,sensuality,1197075908 +245483,48997,sexuality,1197075908 +245483,49272,007,1163607537 +245483,49272,casinos,1163607537 +245483,49272,England,1163607537 +245483,49272,gambling,1163607537 +245483,49272,Great Britain,1163607537 +245483,49272,James Bond,1163607537 +245483,49272,spies,1163607537 +245483,49274,cute,1163607503 +245483,49274,dancing,1163607503 +245483,49274,penguins,1163607503 +245483,49274,singing,1163607503 +245483,51088,bioterrorism,1182898145 +245483,51088,improv,1182898145 +245483,51088,police,1182898145 +245483,51088,spoof,1182898145 +245483,51088,whales,1182898145 +245483,51662,artistic,1306944863 +245483,51662,homoerotic,1306944871 +245483,51662,Insulting to Persians,1306944822 +245483,51662,military,1306945704 +245483,51662,muscle,1306944851 +245483,51662,pretentious,1306944904 +245483,51662,rape,1306944826 +245483,51662,shirtless men,1306944856 +245483,51662,sword fight,1306945701 +245483,52319,Christoph Waltz,1309138191 +245483,52319,experimental,1309138199 +245483,52319,Good actors,1309138193 +245483,52319,historically inaccurate,1309138185 +245483,52319,Very long,1309138180 +245483,52319,World War II,1309138189 +245483,52722,comic book,1178930433 +245483,52722,Comic Book adaption,1178930446 +245483,52722,infidelity,1178930437 +245483,52722,Marvel,1178930441 +245483,52722,murder,1178930439 +245483,52722,super-hero,1178930463 +245483,52722,superhero,1178930463 +245483,52722,superheroes,1178930470 +245483,52885,anime,1250725679 +245483,52885,dreams,1250725684 +245483,52885,Production I.G,1250725726 +245483,52885,psychedellic,1250725680 +245483,53996,80s nostalgia,1241658895 +245483,53996,Michael Bay,1241658857 +245483,53996,robots,1241658861 +245483,53996,transformation,1241658861 +245483,59731,ambition,1227394058 +245483,59731,American culture,1227394055 +245483,59731,bodybuilding,1226593224 +245483,59731,muscle,1226593216 +245483,60684,alan moore,1309138138 +245483,60684,cinematography,1309138131 +245483,60684,dystopia,1309138128 +245483,60684,excessive coarseness,1309138116 +245483,60684,slow motion,1309138150 +245483,60684,stylized,1309138145 +245483,60684,superhero,1309138103 +245483,65261,english voice overs,1251729530 +245483,65261,gorgeous animation,1251729525 +245483,65261,lacks tension,1251729518 +245483,65261,mermaid,1251729564 +245483,65261,ocean,1251729547 +245483,66509,Adam Sandler,1249536319 +245483,66509,Judd Apatow,1249536263 +245483,66509,Leslie Mann,1249536271 +245483,66509,long,1249536363 +245483,66509,nudity,1249536331 +245483,66509,Seth Rogen,1249536262 +245483,66509,stand-up comedy,1249536265 +245483,66509,too many plot threads,1249536294 +245483,66509,wandering,1249536391 +245483,68157,alternate history,1251729404 +245483,68157,Bechdel Test:Fail,1305266091 +245483,68157,Christoph Waltz,1251729312 +245483,68157,Dead Nazis,1251729399 +245483,68157,gratuitous violence,1251729312 +245483,68157,Quentin Tarantino,1251729320 +245483,68157,unusual plot structure,1251729425 +245483,68157,violence,1251729326 +245483,68157,World War II,1251729323 +245483,68954,Bechdel Test:Fail,1249535973 +245483,68954,computer animation,1249535885 +245483,68954,death/fatality,1249535899 +245483,68954,divorce,1249536106 +245483,68954,feel good movie,1249535930 +245483,68954,happy ending,1249535917 +245483,68954,Pixar,1249535878 +245483,68954,predictable,1249536092 +245483,68954,pretty,1249536096 +245483,68954,sappy,1249535967 +245483,68954,Senior Citizens,1249535906 +245483,68954,sweet,1249535967 +245483,68954,talking animals,1249535939 +245483,69934,remake,1249536496 +245483,69934,remake of an asian film,1249536480 +245483,71264,Andy Samberg,1305264207 +245483,71264,animation,1305264234 +245483,71264,Anna Faris,1305264210 +245483,71264,based on a book,1305264230 +245483,71264,Bill Hader,1305264211 +245483,71264,Bruce Campbell,1305264214 +245483,71264,DVD-RAM,1305264215 +245483,71264,Mr. T,1305264220 +245483,71264,Neil Patrick Harris,1305264221 +245483,71264,Silly,1305264243 +245483,71264,Will Forte,1305264225 +245483,72737,african americans,1305265277 +245483,72737,Bechdel Test:Pass,1305265267 +245483,72737,bowdlerized,1305265363 +245483,72737,Disney,1305265398 +245483,72737,Disney animated feature,1305265287 +245483,72737,fairy tale,1305265377 +245483,72737,music,1305265326 +245483,72737,randy newman,1305265332 +245483,72737,simplistic,1305265307 +245483,72737,unchallenging,1305265342 +245483,77665,creepy talking animals,1305265071 +245483,78499,bittersweet,1305264432 +245483,78499,imaginative,1305264414 +245483,78499,overly sentimental,1305264398 +245483,78499,Pixar,1305264350 +245483,78499,Tom Hanks,1305264352 +245483,78499,torture,1305264363 +245483,78499,violence,1305264365 +245483,78499,visually appealing,1305264355 +245483,78703,bittersweet,1305264961 +245483,78703,original,1305264969 +245483,78703,science fiction,1305264978 +245483,81018,animation,1311518758 +245483,81018,depressing without being uplifting,1311518729 +245483,81018,not for kids,1311518748 +245483,81018,show business,1311519538 +245483,81018,silent movie,1311518740 +245483,81018,slow,1311518788 +245483,81018,slow paced,1311519532 +245483,82527,funny,1311404457 +245483,82527,paul giamatti,1311404436 +245483,82527,realistic,1311404448 +245483,83374,Action,1305265092 +245483,83374,bittersweet,1305265127 +245483,83374,cinematography,1305265114 +245483,83374,emotional,1305265121 +245483,83374,poor acting,1305265103 +245483,83374,slow,1305265094 +245483,83374,Sngmoo Lee,1305265095 +245483,86332,lack of tension,1305264835 +245483,86332,love story,1305264852 +245483,86332,Marvel Comics,1305264830 +245483,86332,muscle,1305264860 +245483,86332,predictable,1306944792 +245483,86332,shirtless scene,1305264806 +245483,86332,Special Effects,1305264822 +245483,86332,superhero,1305264824 +245483,86332,The Avengers,1306944800 +245483,87306,black man dies,1309137806 +245483,87306,cinematography,1309137794 +245483,87306,J.J. Abrams,1309137780 +245483,87306,Lens flares,1309137778 +245483,87306,scientific errors,1309137827 +245483,87306,Steven Spielberg,1309137786 +245483,87306,Story,1309137788 +245483,87520,Michael Bay,1311444553 +245483,87869,black comedy,1311945347 +245483,87869,pulls punches,1311945387 +245483,87869,sitcom,1311946017 +245483,87869,weak ending,1311946032 +245483,88140,biographical style,1311449425 +245483,88140,campy,1311449319 +245483,88140,comic book,1311449310 +245483,88140,dieselpunk,1311449357 +245483,88140,Joe Johnston,1311449313 +245483,88140,Marvel,1311449382 +245483,88140,no nazis,1311449333 +245483,88140,theme song,1311449402 +245483,91094,cameo-fest,1326583582 +245483,91094,cute,1326583671 +245483,91094,dancing,1326583579 +245483,91094,franchise,1326583655 +245483,91094,muppets,1326583597 +245483,91094,puppets,1326583641 +245483,91094,setting:LA,1326583641 +245483,91094,setting:Paris,1326583642 +245483,91094,weak plot,1326583621 +245483,94780,fairy tale,1338756423 +245483,94780,fantasy,1338756423 +245483,94780,Kristen Stewart,1338756445 +245483,94780,visuals,1338756423 +245483,94780,weak plot,1338756423 +245508,260,"Cheesy space opera, classic",1437152887 +245508,260,Epic,1437152837 +245508,356,charming,1437162353 +245508,356,political,1437162353 +245508,356,sweet,1437162353 +245539,89745,enjoyable,1441545562 +245539,89745,grand,1441545534 +245558,151367,abduction,1453320829 +245558,151367,bound,1453320930 +245558,151367,canada,1453320888 +245558,151367,dark humor,1453320837 +245558,151367,gagged,1453320932 +245558,151367,kidnapping,1453320831 +245558,151367,montreal,1453320890 +245558,151367,nightmares,1453320878 +245558,151367,small cast,1453320884 +245558,151367,twist ending,1453320934 +245558,151367,twisted,1453320834 +245568,1,action figure,1140447535 +245568,1,action figures,1140447535 +245568,1,Buzz Lightyear,1140447535 +245568,1,CG animation,1140447535 +245568,1,toy,1140447535 +245568,1,toys,1140447535 +245568,1,Woody,1140447535 +245568,107,treasure,1368759890 +245568,110,Mel Gibson,1140447552 +245568,110,war,1140447552 +245568,150,stranded,1368760022 +245568,260,c3po,1140447888 +245568,260,chewbacca,1140447888 +245568,260,death star,1140447888 +245568,260,force,1140447888 +245568,260,han solo,1140447888 +245568,260,Leia,1140447888 +245568,260,light saber,1140447888 +245568,260,luke,1140447888 +245568,260,millenium falcon,1140447888 +245568,260,obi wan,1140447888 +245568,260,obi wan kenobi,1140447888 +245568,260,princess,1140447888 +245568,260,r2 d2,1140447888 +245568,260,tie fighter,1140447888 +245568,260,x wing,1140447888 +245568,296,guns,1140448470 +245568,353,dark hero,1368760201 +245568,356,box,1141535927 +245568,356,chocolate,1140448704 +245568,356,chocolates,1140448704 +245568,356,JFK,1140448704 +245568,356,journey,1140448704 +245568,356,ping pong,1141535928 +245568,356,run,1141535927 +245568,356,shrimp,1140448714 +245568,377,Dennis Hopper,1147993955 +245568,377,explosions,1147993921 +245568,377,highway,1147993921 +245568,377,injuries,1147993921 +245568,380,arnold,1368760279 +245568,485,arnold,1368760279 +245568,541,dark,1146454534 +245568,541,future,1140446223 +245568,541,mortality,1146454534 +245568,541,rain,1146454534 +245568,541,replicants,1140446223 +245568,541,sci fi,1140446223 +245568,589,arnold,1368760279 +245568,592,dark hero,1368760201 +245568,745,claymation,1140448484 +245568,780,aliens,1140448790 +245568,919,brain,1141536059 +245568,919,courage,1141536059 +245568,919,Dorothy,1140448875 +245568,919,dream,1141536059 +245568,919,heart,1141536059 +245568,919,lion,1140448875 +245568,919,red slippers,1140448875 +245568,919,scarecrow,1140448875 +245568,919,slipper,1140448957 +245568,919,tin man,1140448875 +245568,919,tornado,1141536059 +245568,919,Toto,1141536059 +245568,919,witch,1140448875 +245568,919,wizard,1140448875 +245568,919,yellow,1140448875 +245568,1012,dog,1140448444 +245568,1019,sea monster,1141536154 +245568,1097,stranded,1368760022 +245568,1101,aircraft,1140448824 +245568,1101,jet,1140448824 +245568,1101,jets,1140448824 +245568,1101,sky,1140448824 +245568,1124,henry fonda,1139542181 +245568,1129,action,1140446398 +245568,1129,automatic weapon,1140447314 +245568,1129,dark,1140446398 +245568,1129,gun,1140447314 +245568,1129,John Carpenter,1140446397 +245568,1129,new york,1140446398 +245568,1129,snake,1140446398 +245568,1129,snake plissken,1140446398 +245568,1136,english,1140446786 +245568,1136,funny,1140446786 +245568,1136,irreverant,1140446786 +245568,1136,king arthur,1140446786 +245568,1196,bespin,1140447458 +245568,1196,carbonite,1140447458 +245568,1196,darth vader,1140447458 +245568,1196,father,1140447458 +245568,1196,hoth,1140447458 +245568,1196,I am your father,1140447458 +245568,1196,jedi,1140447458 +245568,1196,luke,1140447458 +245568,1196,sci fi,1140447458 +245568,1197,action,1140446869 +245568,1197,comedy,1140446869 +245568,1197,fantasy,1140446869 +245568,1197,funny,1140446869 +245568,1197,giant,1140446869 +245568,1197,romance,1140446869 +245568,1198,ark,1140446921 +245568,1198,fighting,1140446921 +245568,1198,indiana jones,1140446921 +245568,1198,snakes,1140446921 +245568,1198,traps,1140446921 +245568,1198,treasure,1140446921 +245568,1200,action,1140446122 +245568,1200,game over,1141535810 +245568,1200,military,1141535810 +245568,1200,queen,1141535810 +245568,1200,sci fi,1140446122 +245568,1206,behavior modification,1140447982 +245568,1208,Vietnam,1140445962 +245568,1208,war,1140445962 +245568,1214,alien,1141535711 +245568,1214,aliens,1141535711 +245568,1214,dark,1141535710 +245568,1214,egg,1141535823 +245568,1214,eggs,1141535823 +245568,1214,flame thrower,1141535711 +245568,1214,human prey,1141535710 +245568,1214,space travel,1141535711 +245568,1214,suspense,1141535710 +245568,1220,John Belushi,1140446226 +245568,1225,Mozart,1140445911 +245568,1240,arnold,1368760279 +245568,1270,spielberg,1368761226 +245568,1270,time,1140446219 +245568,1270,time travel,1140446219 +245568,1270,travel,1140446219 +245568,1274,anime,1140448751 +245568,1274,fighting,1140448751 +245568,1274,future,1140448751 +245568,1275,fighting,1140448772 +245568,1275,swords,1140448772 +245568,1291,spielberg,1368761226 +245568,1307,Billy Crystal,1140446024 +245568,1387,spielberg,1368761226 +245568,1391,mars,1368760163 +245568,1396,conspiracy theory,1368760510 +245568,1641,stripping,1140447946 +245568,1894,stranded,1368760022 +245568,1923,Ben Stiller,1139542208 +245568,2022,jesus,1368759359 +245568,2028,spielberg,1368761226 +245568,2115,spielberg,1368761226 +245568,2116,cartoon,1139542155 +245568,2231,card games,1139542565 +245568,2231,cards,1139542547 +245568,2231,gambling,1139542565 +245568,2231,money,1139542565 +245568,2288,alien,1140447599 +245568,2288,blood,1140447599 +245568,2288,shape,1140447599 +245568,2288,shape changer,1140447599 +245568,2288,shape shifter,1140447599 +245568,2288,snow,1140447599 +245568,2288,trust,1140447599 +245568,2353,conspiracy theory,1368760510 +245568,2571,agent smith,1140446752 +245568,2571,combat,1140446752 +245568,2571,morpheus,1140446752 +245568,2571,neo,1140446752 +245568,2571,sci fi,1140446752 +245568,2571,trinity,1140446752 +245568,2571,virtual reality,1140446752 +245568,2617,treasure,1368759889 +245568,2662,mars,1368760163 +245568,2763,art,1145855328 +245568,2763,museum,1145855328 +245568,2763,painting,1145855328 +245568,2763,theif,1145855328 +245568,2916,arnold,1368760279 +245568,2968,action,1140447634 +245568,2968,funny,1140447634 +245568,2968,history,1140447634 +245568,2968,time,1140447634 +245568,2968,time travel,1140447634 +245568,2968,treasure,1140447634 +245568,3300,stranded,1368760022 +245568,3448,Robin Williams,1140446006 +245568,3527,action,1140446833 +245568,3527,alien,1140446833 +245568,3527,arnold,1140446833 +245568,3527,firearms,1140446833 +245568,3527,guns,1140446833 +245568,3527,hunters,1140446833 +245568,3527,weapons,1140446833 +245568,3623,Tom Cruise,1140445896 +245568,3703,cars,1140446687 +245568,3703,mad max,1140446687 +245568,3703,post apocalypse,1140446687 +245568,3927,Asimov,1140446436 +245568,3927,body,1140446436 +245568,3927,immune,1140446436 +245568,3927,inside,1140446436 +245568,3927,microscopic,1140446436 +245568,3927,system,1140446436 +245568,4638,stranded,1368760022 +245568,4701,action,1144816048 +245568,4701,funny,1144816049 +245568,4701,guns,1144816049 +245568,4701,martial arts,1144816049 +245568,4816,goofy,1146453755 +245568,4816,models,1146453755 +245568,4993,dwarves,1140446536 +245568,4993,elves,1140446536 +245568,4993,fantasy,1140446536 +245568,4993,hobbits,1140446536 +245568,4993,orcs,1140446536 +245568,4993,ring,1140446536 +245568,5135,bollywood,1368759233 +245568,5139,baseball,1140448055 +245568,5139,children,1140448055 +245568,5139,foul language,1140448055 +245568,5139,kids,1140448055 +245568,5139,team,1140448055 +245568,5214,John Denver,1140448097 +245568,5247,18 wheeler,1140448137 +245568,5247,beer,1140448137 +245568,5247,cb,1140448137 +245568,5247,cb radio,1140448137 +245568,5247,chase,1140448137 +245568,5247,police,1140448137 +245568,5349,green goblin,1140446967 +245568,5349,Peter,1140447043 +245568,5349,power,1140446967 +245568,5349,responsibility,1140446967 +245568,5349,super hero,1140446967 +245568,5378,alens,1140447385 +245568,5378,alien,1140447385 +245568,5378,clone war,1140447385 +245568,5378,droids,1140447385 +245568,5378,Jango Fett,1140447385 +245568,5378,jedi,1140447385 +245568,5378,sci fi,1140447385 +245568,5378,sith,1140447385 +245568,5378,yoda,1140447385 +245568,5445,spielberg,1368761226 +245568,5952,castle,1140446615 +245568,5952,elves,1140446615 +245568,5952,fantasy,1140446615 +245568,5952,fighting,1140446615 +245568,5952,orc,1140446615 +245568,5952,orcs,1140446615 +245568,5952,war,1140446615 +245568,6537,action,1140447747 +245568,6537,arnold,1140447747 +245568,6537,fighting,1140447747 +245568,6537,John Connor,1140447747 +245568,6537,T X,1140447747 +245568,6537,T-X,1140447747 +245568,6537,terminator,1140447747 +245568,6537,time travel,1140447747 +245568,6539,treasure,1368759890 +245568,6768,bible,1140448643 +245568,6768,conscience,1140448643 +245568,6768,conviction,1140448643 +245568,6768,reformation,1140448643 +245568,6768,scripture,1140448643 +245568,6874,dark hero,1368760201 +245568,6936,Christmas,1140448558 +245568,6936,elves,1140448558 +245568,6936,funny,1140448558 +245568,6936,holiday,1140448558 +245568,6936,Santa Claus,1140448558 +245568,6936,Will Ferrell,1140448558 +245568,7153,fantasy,1140446578 +245568,7153,fighting,1140446639 +245568,7153,grand,1140446639 +245568,7153,war,1140446578 +245568,7318,jesus,1368759359 +245568,7373,catholic,1140448603 +245568,7373,demon,1140448603 +245568,7373,fighting,1140448603 +245568,7373,glove,1140448603 +245568,7373,nazis,1140448603 +245568,7373,red,1140448603 +245568,7386,christian,1368760414 +245568,7454,monsters,1140448148 +245568,7481,alien,1140448404 +245568,7481,aliens,1140448404 +245568,7481,enemy,1140448404 +245568,7481,marooned,1140448404 +245568,7481,stranded,1140448404 +245568,7481,war,1140448404 +245568,8147,flowers for algernon,1141538922 +245568,8512,Mel Brooks,1140448432 +245568,8529,stranded,1368760022 +245568,8636,Mary,1140447068 +245568,8636,octopus,1140447068 +245568,8636,purpose,1140447068 +245568,8636,questioning,1140447068 +245568,8636,super hero,1140447068 +245568,8894,killer whale,1140447984 +245568,8961,action,1140446471 +245568,8961,family,1140446471 +245568,8961,hero,1140446471 +245568,8961,powers,1140446471 +245568,8961,super,1140446471 +245568,8961,super hero,1140446471 +245568,26398,conspiracy,1140448226 +245568,26398,OJ,1140448226 +245568,26398,Simpson,1140448226 +245568,26398,space travel,1140448226 +245568,26398,survival,1140448226 +245568,26398,survive,1140448226 +245568,33794,batman,1140446221 +245568,33794,bruce wayne,1140446221 +245568,34332,comedy,1140448671 +245568,34332,high,1140448671 +245568,34332,high school,1140448671 +245568,34332,super hero,1140448671 +245568,36529,guns,1140447993 +245568,40339,acorn,1141536283 +245568,40339,aliens,1141536265 +245568,40339,animation,1141536265 +245568,40339,baseball,1141536265 +245568,40339,believe,1140446286 +245568,40339,chicken,1140446286 +245568,40339,Disney,1141536265 +245568,40339,dodgeball,1141536265 +245568,40339,fish,1141536265 +245568,40339,runt,1141536265 +245568,40339,sky,1141536283 +245568,40339,ugly duckling,1140446286 +245568,40851,board game,1140448156 +245568,41566,action,1140446305 +245568,41566,beaver,1141536447 +245568,41566,C.S. Lewis,1139542285 +245568,41566,children,1140446305 +245568,41566,fantasy,1140446305 +245568,41566,kids,1140446305 +245568,41566,lion,1140446305 +245568,41566,melee,1141536447 +245568,41566,winter,1141536447 +245568,41566,witch,1141536447 +245568,41569,Peter Jackson,1139542322 +245568,51884,bollywood,1368759233 +245593,8121,TOO SEE,1140905357 +245603,59315,action,1442589266 +245603,59315,comedy,1442589262 +245603,59315,Marvel,1442589258 +245603,59315,Robert Downey Jr.,1442589275 +245603,59315,Special Effects,1442589271 +245603,68157,black comedy,1442589228 +245603,68157,Quentin Tarantino,1442589214 +245649,260,chewbacca,1439882318 +245649,260,darth vader,1439882297 +245649,260,death star,1439882302 +245649,260,luke skywalker,1439882293 +245649,4306,animation,1440164823 +245649,4306,children,1440164827 +245649,4306,comedy,1440164849 +245649,4306,fantasy,1440164838 +245649,6874,action,1440164878 +245649,6874,martial arts,1440164908 +245649,6874,masterpiece,1440164922 +245649,6874,Quentin Tarantino,1440164894 +245649,7438,action,1440164952 +245649,7438,Quentin Tarantino,1440164948 +245661,260,inspiring,1434119037 +245661,260,scifi cult,1434119064 +245673,3615,dinosaurs,1444811717 +245673,7154,1950s,1444808595 +245673,7154,History,1444808661 +245674,247,Peter Jackson,1427226289 +245674,247,surrealism,1427226292 +245674,260,sci-fi,1444254526 +245674,356,overrated,1420848908 +245674,356,poorly acted,1420848908 +245674,356,shallow,1420848908 +245674,1214,atmospheric,1425491215 +245674,1214,H. R. Giger,1425491241 +245674,1214,horror,1425491245 +245674,1214,science fiction,1425491233 +245674,1214,space travel,1425491224 +245674,1268,teen,1442967627 +245674,1676,cult film,1427950064 +245674,1676,funny,1427950062 +245674,1676,paul verhoeven,1427950049 +245674,1676,sci-fi,1427950056 +245674,1968,1980s,1425500516 +245674,1968,coming of age,1425500511 +245674,1968,cult film,1425500519 +245674,1968,high school,1425500530 +245674,1968,John Hughes,1425500524 +245674,2329,racism,1444188044 +245674,2329,skinhead,1444188057 +245674,2329,thought-provoking,1444188061 +245674,2861,cliché,1425491354 +245674,2861,dialogue,1425491333 +245674,2918,1980s,1425500544 +245674,2918,High School,1425500542 +245674,2918,John Hughes,1425500556 +245674,3007,documentary,1425500450 +245674,4878,cult film,1425950435 +245674,4878,high school,1425950428 +245674,4878,satirical,1425950426 +245674,4878,time travel,1425950416 +245674,5944,space,1445814932 +245674,5944,star trek,1445814930 +245674,5989,caper,1429043012 +245674,8914,cerebral,1368659455 +245674,8914,dialogue,1428953067 +245674,8914,directorial debut,1427339530 +245674,8914,indie,1427339365 +245674,8914,intellectual,1371922978 +245674,8914,intelligent,1368659480 +245674,8914,low budget,1427339560 +245674,8914,sci-fi,1427339379 +245674,8914,science fiction,1427339550 +245674,8914,shane carruth,1427339355 +245674,8914,time travel,1427339525 +245674,27555,mockumentary,1425500427 +245674,48043,Soundtrack,1292893049 +245674,49822,dialogue,1429042023 +245674,49822,espionage,1429041990 +245674,49822,Matt Damon,1429041995 +245674,49822,pacing,1429042036 +245674,49822,robert deniro,1429042013 +245674,58939,vignette,1425351415 +245674,65868,everything,1428639831 +245674,65868,gothic,1428639815 +245674,65868,music,1428639824 +245674,65868,musical,1428639835 +245674,68237,duncan jones,1428436726 +245674,68237,sam rockwell,1428436640 +245674,68237,sci-fi,1428436709 +245674,76866,black metal,1426829826 +245674,76866,documentary,1426829834 +245674,81591,Soundtrack,1292893021 +245674,81591,visceral,1292892856 +245674,94959,bill murray,1428375472 +245674,94959,coming of age,1428375445 +245674,94959,dialogue,1428375453 +245674,94959,wes anderson,1428375438 +245674,99917,artistic,1427339751 +245674,99917,emotionally captivating,1368659526 +245674,99917,sci-fi,1427339753 +245674,99917,shane carruth,1427339747 +245674,102445,predictable,1369332732 +245674,102445,unoriginal,1369332754 +245674,102590,documentary,1425965682 +245674,102590,fantasy,1425965697 +245674,103048,coming of age,1372877992 +245674,104883,illuminati,1436910374 +245674,104883,mockumentary,1436910357 +245674,104883,tarsus club,1436910371 +245674,106920,joaquin phoenix,1428436531 +245674,106920,romance,1428436574 +245674,106920,scarlett johansson,1428436589 +245674,106920,sci-fi,1428436539 +245674,106920,spike jonze,1428436546 +245674,108660,documentary,1426742843 +245674,108660,magic,1426734769 +245674,108660,ricky jay,1426734778 +245674,109374,cinematography,1444756419 +245674,109487,science fiction,1441860083 +245674,109487,space,1441860097 +245674,111921,john green,1442967540 +245674,111921,romance,1442697755 +245674,111921,shailene woodley,1442697745 +245674,111921,teen,1442967586 +245674,111921,young adult,1446538897 +245674,113345,dialogue,1429685452 +245674,113345,obvious,1429685441 +245674,113345,sci-fi,1429685464 +245674,113345,wachowskis,1429685435 +245674,114180,teen,1446538838 +245674,114180,young adult,1446538851 +245674,121231,horror,1427949937 +245674,121231,score,1427949956 +245674,121231,teen,1427949962 +245674,127198,hip hop,1443595711 +245674,127198,independent,1443595734 +245674,127198,soundtrack,1443595717 +245674,128512,young adult,1446538866 +245674,130878,kris elgstrand,1427314886 +245674,131498,matthew kowalchuk,1427831899 +245674,131498,vancouver,1427831906 +245674,131500,mark borchardt,1427831983 +245674,134130,aesthetic,1444278584 +245674,134130,character development,1444278524 +245674,134130,dialogue,1444278593 +245674,134130,drew goddard,1444278558 +245674,134130,kate mara,1444278565 +245674,134130,matt damon,1444278573 +245674,134130,sci-fi,1444278515 +245674,134130,space,1444278511 +245674,136602,found footage,1435953795 +245674,136602,low budget,1435953835 +245674,136602,mark duplass,1435953785 +245674,136602,twist,1435953808 +245674,139644,benicio del toro,1447671301 +245674,139644,cartel,1447671326 +245674,139644,deins villeneuve,1447671311 +245674,139644,dialogue,1447671332 +245674,139644,emily blunt,1447671313 +245674,139644,josh brolin,1447671315 +245674,139644,score,1447671347 +245674,139644,tension,1447671342 +245674,141544,acting,1440965171 +245674,141544,post-apocalyptic,1440965164 +245674,141544,writing,1440965185 +245676,1527,plain fun,1441536751 +245676,1580,weird,1441536734 +245676,1690,weird alien,1441536871 +245676,101864,twist ending,1441536788 +245721,4887,alternate reality,1284937220 +245721,4887,Jason Statham,1284937214 +245721,4887,Jet Li,1284937210 +245745,4776,denzel washington,1143137350 +245764,593,dark,1438369349 +245764,593,scary,1438369349 +245764,593,worriesome,1438369349 +245764,55276,'I Love You Anna!',1194075217 +245796,4699,good portrayal of a weak man,1190255062 +245809,48394,creative,1397711927 +245811,357,wedding,1147802777 +245811,377,Action,1147802819 +245811,500,Robin Williams,1147460445 +245811,648,Action,1147806233 +245811,1220,feel good movie,1194816010 +245811,1721,Kate Winslet,1161887268 +245811,2959,Edward Norton,1147460520 +245811,4306,fairy tale,1147460469 +245811,5299,wedding,1147802794 +245811,6888,stupid,1147461534 +245842,903,Alfred Hitchcock,1151145194 +245842,904,Alfred Hitchcock,1151145255 +245842,908,Alfred Hitchcock,1151145263 +245842,928,Alfred Hitchcock,1151145265 +245842,930,Alfred Hitchcock,1151145268 +245842,933,Alfred Hitchcock,1151145282 +245842,1086,Alfred Hitchcock,1151145224 +245842,1094,transgender,1151146444 +245842,1125,Peter Sellers,1151144622 +245842,1219,Alfred Hitchcock,1151145259 +245842,1333,Alfred Hitchcock,1151145237 +245842,1391,two hours of suck,1154209107 +245842,1734,transgender,1151146244 +245842,1748,aliens,1325203656 +245842,1748,atmospheric,1325203618 +245842,1748,creepy,1325203621 +245842,1748,dreamlike,1325203614 +245842,1748,surreal,1325203609 +245842,1967,fantasy,1312928713 +245842,1967,music,1312928724 +245842,1967,surreal,1312928716 +245842,2186,Alfred Hitchcock,1151145289 +245842,2203,Alfred Hitchcock,1151145274 +245842,2450,worst ever,1151144714 +245842,2599,two hours of suck,1154209130 +245842,2908,transgender,1151146170 +245842,4226,psychothriller,1137675729 +245842,6143,Peter Sellers,1151144637 +245842,6662,Peter Sellers,1151144616 +245842,6663,Peter Sellers,1151144614 +245842,7569,Bond,1140734615 +245842,7570,Bond,1137675859 +245842,8596,Peter Sellers,1151144627 +245842,26720,insanity,1306542804 +245842,26720,shocking,1306542800 +245842,27904,drugs,1282616079 +245842,42004,transgender,1151146162 +245842,50011,disturbing,1305335255 +245842,50011,metaphorical,1305335370 +245842,50011,surreal,1305335261 +245842,53140,magic,1285645024 +245842,69844,disappointing,1250373788 +245842,104841,bad science,1384098529 +245842,104841,space,1384098531 +245846,39,Alicia Silverstone,1331483549 +245846,39,chick flick,1331483552 +245846,39,Classic,1331483551 +245846,39,fashion,1331483556 +245846,39,Funny,1331483578 +245846,39,Paul Rudd,1331483565 +245846,39,seen more than once,1331483568 +245846,39,teen,1331483562 +245846,551,atmospheric,1331483837 +245846,551,dark,1331483839 +245846,551,stylized,1331483842 +245846,551,Tim Burton,1331483847 +245846,551,whimsical,1331483846 +245846,595,beautiful,1331484203 +245846,595,childhood classic,1331484208 +245846,595,heartwarming,1331484205 +245846,597,Comedy,1331417929 +245846,597,Julia Roberts,1331417924 +245846,597,rags to riches,1331417934 +245846,597,Richard Gere,1331417932 +245846,597,romance,1331417927 +245846,597,shopping,1331417936 +245846,902,Audrey Hepburn,1331484967 +245846,902,bittersweet,1331484951 +245846,902,classic,1331484954 +245846,902,elegant,1331484955 +245846,902,New York,1331484959 +245846,902,quirky,1331484963 +245846,1027,Alan Rickman,1331484255 +245846,1027,funny,1331484251 +245846,1027,Kevin Costner,1331484247 +245846,1258,atmospheric,1331419336 +245846,1258,Horror,1331419333 +245846,1258,psychological,1331419329 +245846,1258,Stephen King,1331419330 +245846,1258,suspense,1331419344 +245846,1259,childhood,1331483644 +245846,1259,classic,1331483647 +245846,1259,must see,1331483650 +245846,1259,nostalgic,1331483638 +245846,1259,poignant,1331483640 +245846,1342,Classic,1331418922 +245846,1342,Creepy,1331418914 +245846,1342,Horror,1331418911 +245846,1342,Scary,1331418919 +245846,1350,thriller,1331419430 +245846,1517,crude,1333828787 +245846,1517,Mike Myers,1333828785 +245846,1517,satire,1333828779 +245846,1517,spoof,1333828780 +245846,1644,Classic teen horror,1333829705 +245846,1644,Freddie Prinze Jr.,1333829689 +245846,1644,Funny,1333829693 +245846,1644,horror,1333829687 +245846,1644,Ryan Phillippe,1333829684 +245846,1644,Sarah Michelle Gellar,1333829682 +245846,1923,Ben Stiller,1331483244 +245846,1923,Cameron Diaz,1331483246 +245846,1923,crude humor,1331483252 +245846,1923,hilarious,1331483250 +245846,1923,stupid,1331483248 +245846,2496,Alicia Silverstone,1331418588 +245846,2683,Hilarious,1333828800 +245846,2683,Mike Myers,1333828803 +245846,2683,sixties,1333828805 +245846,2706,comedy,1331417510 +245846,2762,Atmospheric,1331419087 +245846,2762,Bruce Willis,1331419069 +245846,2762,ghosts,1331419072 +245846,2762,suspense,1331419076 +245846,2762,twist ending,1331419078 +245846,2918,1980s,1331483605 +245846,2918,classic,1331483607 +245846,2918,comedy,1331483611 +245846,2918,coming of age,1331483613 +245846,2918,rebellion,1331483615 +245846,2918,seen more than once,1331483619 +245846,2918,teen movie,1331483617 +245846,3081,19th century,1331419402 +245846,3081,atmospheric,1331419390 +245846,3081,Dark,1331419401 +245846,3081,horror,1331419392 +245846,3081,Johnny Depp,1331419398 +245846,3081,Scary,1331419395 +245846,3081,stylized,1331419409 +245846,3114,childhood classic,1331483705 +245846,3114,funny,1331483695 +245846,3114,Pixar,1331483700 +245846,3114,Tom Hanks,1331483698 +245846,3409,cheesiness,1333829725 +245846,3409,classic teen horror,1333829741 +245846,3409,cool concept,1333829727 +245846,3409,enjoyable,1333829729 +245846,3409,fun,1333829731 +245846,3409,teen movie,1333829735 +245846,3751,funny,1331483774 +245846,3785,funny,1331484493 +245846,3785,hilariously bad,1331484495 +245846,3785,parody,1331484498 +245846,3785,tongue-in-cheek,1331484502 +245846,3825,Adam Garcia,1331483927 +245846,3825,comedy,1331483923 +245846,3825,coming of age,1331483911 +245846,3825,Funny,1331483932 +245846,3825,good soundtrack,1331483952 +245846,3825,romance,1331483961 +245846,3825,romantic comedy,1331483963 +245846,3825,teen classic,1331483940 +245846,3825,very girlish,1331483917 +245846,3948,Ben Stiller,1331483354 +245846,3948,funny moments,1331483356 +245846,3948,Owen Wilson,1331483344 +245846,3977,Bill Murray,1331484379 +245846,3977,Cameron Diaz,1331484376 +245846,3977,Drew Barrymore,1331484392 +245846,3977,funny,1331484402 +245846,3977,Girly,1331484419 +245846,3977,Lucy Liu,1331484381 +245846,3977,music,1331484397 +245846,3977,private detective,1331484413 +245846,3977,Sam Rockwell,1331484386 +245846,3977,seen more than once,1331484389 +245846,3977,teen classic,1331484406 +245846,3977,upbeat,1331484416 +245846,4015,Ashton Kutcher,1331484470 +245846,4015,humor,1331484478 +245846,4015,Seann William Scott,1331484474 +245846,4025,Sandra Bullock,1331417341 +245846,4069,Matthew McConaughey,1331417797 +245846,4069,silly,1331417803 +245846,4246,British,1331417987 +245846,4246,hilarious,1331417981 +245846,4246,romantic comedy,1331417984 +245846,4306,comedy,1331483747 +245846,4306,witty,1331483755 +245846,4367,Angelina Jolie,1331484355 +245846,4447,cute,1331417317 +245846,4447,lawyers,1331417322 +245846,4447,Luke Wilson,1331417309 +245846,4447,Reese Witherspoon,1331417306 +245846,4700,Anne Hathaway,1331483415 +245846,4700,royalty,1331483419 +245846,4718,comedy,1331417531 +245846,4720,atmospheric,1331419117 +245846,4720,ghosts,1331419115 +245846,4720,scary,1331419112 +245846,4744,Funny,1333829619 +245846,4744,great beginning,1333829627 +245846,4744,scarecrow,1333829647 +245846,4744,tongue-in-cheek,1333829641 +245846,4816,ben stiller,1331483300 +245846,4816,Funny as hell,1331483292 +245846,4816,Highly quotable,1331483304 +245846,4816,spoof,1331483294 +245846,4816,Will Ferrell,1331483296 +245846,4886,cute,1331483723 +245846,4886,funny,1331483729 +245846,4886,Pixar,1331483726 +245846,4896,based on book,1331482787 +245846,4896,Cute,1331482781 +245846,4896,magic,1331482796 +245846,5816,based on a book,1331482755 +245846,5816,boarding school,1331482760 +245846,5816,fantasy world,1331482765 +245846,5816,harry potter,1331482748 +245846,5816,Wizards,1331482751 +245846,5943,Jennifer Lopez,1331418293 +245846,5943,Natasha Richardson,1331418297 +245846,5943,Ralph Fiennes,1331418290 +245846,5943,Stanley Tucci,1331418292 +245846,6006,Ashton Kutcher,1331418386 +245846,6006,Brittany Murphy,1331418389 +245846,6006,Funny,1331418392 +245846,6155,classic chick flick,1331417780 +245846,6155,Kate Hudson,1331417766 +245846,6155,Matthew McConaughey,1331417773 +245846,6287,Adam Sandler,1331484551 +245846,6287,funny,1331484547 +245846,6373,comedy,1331484572 +245846,6373,funny,1331484577 +245846,6373,Jennifer Aniston,1331484565 +245846,6373,Jim Carrey,1331484569 +245846,6378,car chase,1331419589 +245846,6378,Charlize Theron,1331419585 +245846,6378,Mark Wahlberg,1331419584 +245846,6379,hilarious,1331418783 +245846,6379,Kevin Zegers,1331418818 +245846,6379,unrealistic characters,1331418801 +245846,6593,comedy,1331483434 +245846,6936,best christmas movie,1331484614 +245846,6936,comedy,1331484619 +245846,6936,cute,1331484623 +245846,6936,funny,1331484627 +245846,6936,silly,1331484631 +245846,6936,Will Ferrell,1331484634 +245846,6936,Zooey Deschanel,1331484629 +245846,6942,Keira Knightley,1331417725 +245846,7173,jennifer aniston,1331417566 +245846,7293,Adam Sandler,1331417894 +245846,7346,ludicrous plot,1331483505 +245846,7375,Luke Mably,1331484104 +245846,7375,royalty,1331484107 +245846,7444,Comedy,1331484034 +245846,7444,fashion,1331484036 +245846,7444,Jennifer Garner,1331484037 +245846,7444,Mark Ruffalo,1331484038 +245846,7444,romance,1331484040 +245846,7444,Soundtrack,1331484048 +245846,7451,clever,1331483525 +245846,7451,High School,1331483535 +245846,7451,must see,1331483528 +245846,7451,Rachel McAdams,1331483522 +245846,7451,suprisingly clever,1331483521 +245846,8533,costumes,1333915330 +245846,8533,FIRST LOVE,1333915321 +245846,8533,overrated,1333915297 +245846,8533,predictable,1333915301 +245846,8533,Rachel McAdams,1333915312 +245846,8533,Ryan Gosling,1333915317 +245846,8641,awesome,1331483275 +245846,8641,hilarious,1331483264 +245846,8641,Steve Carrell,1331483265 +245846,8641,Vince Vaughn,1331483271 +245846,8641,Will Ferrell,1331483269 +245846,8643,Chad Michael Murray,1331484083 +245846,8643,Hilary Duff,1331484073 +245846,8643,romance,1331484076 +245846,8972,adventure,1331484282 +245846,8972,Diane Kruger,1331484290 +245846,8972,surprisingly good,1331484284 +245846,8972,treasure hunt,1331484287 +245846,27706,based on a book,1331482875 +245846,27706,book was better,1331482888 +245846,27706,fantasy,1331482883 +245846,27706,jim carrey,1331482872 +245846,27706,quirky,1331482878 +245846,32596,Boring,1331484324 +245846,32596,Matthew McConaughey,1331484328 +245846,33499,funny,1331418369 +245846,33499,Jennifer Lopez,1331418360 +245846,34162,comedy,1331417370 +245846,34162,Owen Wilson,1331417382 +245846,34162,Rachel McAdams,1331417374 +245846,34162,silly,1331417372 +245846,34162,Vince Vaughn,1331417385 +245846,34162,wedding,1331417388 +245846,34520,Funny,1331484451 +245846,37729,stylized,1331483815 +245846,37729,Tim Burton,1331483812 +245846,38798,better than expected,1333915388 +245846,38798,bittersweet,1333915406 +245846,38798,Cameron Diaz,1333915390 +245846,38798,cinematography,1333915413 +245846,38798,Philadelphia,1333915395 +245846,38798,romantic,1333915404 +245846,38798,Toni Collete,1333915392 +245846,39449,artist,1331418162 +245846,39449,Bryan Greenberg,1331418156 +245846,39449,good soundtrack,1331418179 +245846,39449,Manhattan,1331418168 +245846,39449,New York City,1331418159 +245846,39449,suprisingly funny,1331418151 +245846,39449,Uma Thurman,1331418142 +245846,39449,unpredictable ending,1331418140 +245846,44004,Bradley Cooper,1331418325 +245846,44004,Justin Bartha,1331418331 +245846,44004,Matthew McConaughey,1331418342 +245846,44004,Sarah Jessica Parker,1331418335 +245846,44004,Zooey Deschanel,1331418322 +245846,44397,Funny,1331418838 +245846,44397,predictable,1331418842 +245846,45447,adventure,1333829228 +245846,45447,Audrey Tautou,1333829225 +245846,45447,conspiracy theory,1333829223 +245846,45447,Paris,1333829220 +245846,45447,Tom Hanks,1333829218 +245846,45501,Jennifer Aniston,1331418477 +245846,45501,Vince Vaughn,1331418483 +245846,45501,Wish it was a happy ending,1331418496 +245846,45668,Keanu Reeves,1333915262 +245846,45668,Sandra Bullock,1333915260 +245846,45720,Anne Hathaway,1331418008 +245846,45720,Emily Blunt,1331418016 +245846,45720,fashion,1331418025 +245846,45720,Meryl Streep,1331418014 +245846,45720,New York,1331418019 +245846,45720,Paris,1331418032 +245846,45720,Stanley Tucci,1331418020 +245846,45722,funny,1333829181 +245846,45722,Johnny Depp,1333829173 +245846,45722,Keira Knightley,1333829176 +245846,45722,Orlando Bloom,1333829178 +245846,45722,thriller,1333829186 +245846,46578,comedy,1333915612 +245846,46578,dark comedy,1333915602 +245846,46578,quirky,1333915607 +245846,47382,Dancing,1331483980 +245846,47382,Plot,1331483987 +245846,47382,Romance,1331483991 +245846,47382,Soundtrack,1331484002 +245846,48385,controversial,1331484712 +245846,48385,crude humor,1331484714 +245846,48385,hilarious,1331484721 +245846,48385,satire,1331484719 +245846,48394,atmospheric,1331482940 +245846,48394,disturbing,1331482938 +245846,48394,psychology,1331482943 +245846,49272,cars,1331419630 +245846,49272,casino,1331419635 +245846,49272,Daniel Craig,1331419611 +245846,49272,James Bond,1331419640 +245846,49272,realistic action,1331419637 +245846,49272,spies,1331419616 +245846,49286,Cameron Diaz,1331417746 +245846,49286,England,1331417753 +245846,49286,Jude Law,1331417748 +245846,49961,Quite sinister,1333915688 +245846,52245,slapstick,1331484527 +245846,52245,Will Ferrell,1331484522 +245846,52973,Apatow productions,1331484763 +245846,52973,great cast,1331484782 +245846,52973,Hilarious,1331484774 +245846,52973,Judd Apatow,1331484765 +245846,52973,Seth Rogen,1331484770 +245846,54259,fairy tale,1331482838 +245846,55052,emotional,1333915153 +245846,55052,heartbreaking,1333915142 +245846,55052,imagination,1333915156 +245846,55052,James McAvoy,1333915146 +245846,55052,Keira Knightley,1333915144 +245846,55052,Period piece,1333915150 +245846,55052,romance,1333915157 +245846,55052,Tragedy,1333915149 +245846,56775,Diane Kruger,1331484302 +245846,56775,funny,1331484312 +245846,56775,Helen Mirren,1331484304 +245846,56775,Justin Bartha,1331484307 +245846,56775,Nicolas Cage,1331484306 +245846,56775,treasure hunt,1331484310 +245846,56941,Gerard Butler,1333915347 +245846,56941,sad,1333915359 +245846,56949,James Marsden,1331417821 +245846,56949,love story,1331417830 +245846,58047,bad acting,1331418099 +245846,59333,Michelle Monaghan,1331417853 +245846,59333,Patrick Dempsey,1331417850 +245846,59333,Scotland,1331417852 +245846,59333,wedding theme,1331417855 +245846,59421,Ashton Kutcher,1331484153 +245846,59421,Cameron Diaz,1331484151 +245846,59725,chick flick,1331418056 +245846,59725,feminism,1331418066 +245846,59725,Kim Cattrall,1331418070 +245846,59725,romance,1331418052 +245846,59725,Sarah Jessica Parker,1331418049 +245846,59725,wedding,1331418073 +245846,59727,creepy,1331418977 +245846,59727,Scary opening,1331418971 +245846,59727,tense,1331418986 +245846,59727,weak ending,1331418958 +245846,60074,not as good as I expected,1331419786 +245846,60756,funny,1331483319 +245846,60756,Highly quotable,1331483321 +245846,60756,John C. Reilly,1331483328 +245846,60756,will ferrell,1331483330 +245846,60758,Beautiful location,1333916351 +245846,61323,John Malkovich,1333915556 +245846,61323,stupidity,1333915551 +245846,62434,disappointing,1331484696 +245846,62434,Not funny,1331484675 +245846,64622,cinematography,1333915094 +245846,64622,heartbreaking,1333915104 +245846,64622,Ralph Fiennes,1333915118 +245846,65585,Anne Hathaway,1331418413 +245846,65585,Funny,1331418418 +245846,65585,kate hudson,1331418416 +245846,65585,Wedding,1331418422 +245846,67734,Bill Hader,1331484839 +245846,67734,great soundtrack,1331484819 +245846,67734,Jesse Eisenberg,1331484825 +245846,67734,Kristen Stewart,1331484830 +245846,67734,Kristen Wiig,1331484827 +245846,67734,Own It,1331484843 +245846,67734,quirky,1331484802 +245846,67734,Ryan Reynolds,1331484832 +245846,68135,geeks,1331483470 +245846,68135,Hilarious,1331483462 +245846,68135,Matthew Perry,1331483449 +245846,68135,parent-children relationship,1331483476 +245846,68135,Zac Efron,1331483454 +245846,68157,Brad Pitt,1331482977 +245846,68157,dark comedy,1331482980 +245846,68157,French,1331483017 +245846,68157,great cast,1331483005 +245846,68157,great soundtrack,1331482974 +245846,68157,Michael Fassbender,1331482993 +245846,68157,Paris,1331483020 +245846,68157,Quentin Tarantino,1331482972 +245846,68157,visually appealing,1331482982 +245846,68157,World War II,1331483009 +245846,68554,controversial,1333829254 +245846,68554,Ewan McGregor,1333829246 +245846,68554,Stellan SkarsgÃ¥rd,1333829248 +245846,68554,Tom Hanks,1333829251 +245846,68554,twisted ending,1333829259 +245846,68952,annoying characters,1331418876 +245846,68952,funny,1331418878 +245846,68952,Justin Long,1331418884 +245846,68952,poor acting,1331418871 +245846,68952,tongue-in-cheek,1331418868 +245846,69122,Bradley Cooper,1331483188 +245846,69122,casino,1331483207 +245846,69122,Drinking,1331483204 +245846,69122,Ed Helms,1331483182 +245846,69122,Great ending,1331483214 +245846,69122,great soundtrack,1331483199 +245846,69122,Hilarious,1331483195 +245846,69122,Las Vegas,1331483225 +245846,69122,Vulgar,1331483219 +245846,69122,Zach Galifianakis,1331483172 +245846,69757,artistic,1331484862 +245846,69757,fate,1331484884 +245846,69757,great soundtrack,1331484890 +245846,69757,intelligent,1331484859 +245846,69757,Joseph Gordon-Levitt,1331484873 +245846,69757,meaning of love,1331484879 +245846,69757,nonlinear,1331484897 +245846,69757,relationships,1331484895 +245846,69757,stylized,1331484877 +245846,69757,Zooey Deschanel,1331484864 +245846,69844,disappointing,1331482819 +245846,70183,Gerard Butler,1331418441 +245846,70183,good chick flick,1331418447 +245846,70183,Katherine Heigl,1331418443 +245846,70599,based on a book,1333915225 +245846,70599,Eric Bana,1333915220 +245846,70599,heartbreaking,1333915228 +245846,70599,interesting concept,1333915241 +245846,70599,Rachel McAdams,1333915222 +245846,70599,romance,1333915246 +245846,70599,time travel,1333915230 +245846,71379,bad acting,1331419007 +245846,71379,entertaining,1331419026 +245846,71379,over-hyped,1331419016 +245846,71379,unrealistic,1331419014 +245846,73015,boring,1331418120 +245846,73017,Atmospheric,1331419694 +245846,73017,Robert Downey Jr.,1331419690 +245846,73017,Sherlock Holmes,1331419687 +245846,74416,british english,1331405774 +245846,74416,Michael Fassbender,1331405764 +245846,74450,Ashton Kutcher,1331418229 +245846,74450,Bradley Cooper,1331418223 +245846,74450,Jamie Foxx,1331418238 +245846,74450,Jennifer Garner,1331418233 +245846,74450,Jessica Biel,1331418231 +245846,74450,Julia Roberts,1331418240 +245846,74450,multiple storylines,1331418253 +245846,74450,predictable,1331418248 +245846,74458,atmospheric,1331419272 +245846,74458,insanity,1331419267 +245846,74458,intense,1331419275 +245846,74458,Leonardo DiCaprio,1331419283 +245846,74458,Martin Scorsese,1331419285 +245846,74458,psychological,1331419261 +245846,74458,Psychological Thriller,1331419277 +245846,74458,scary,1331419265 +245846,74458,stylized,1331419267 +245846,74458,twisted ending,1331419263 +245846,78499,bittersweet,1331483667 +245846,78499,childhood classic,1331483683 +245846,78499,Pixar,1331483675 +245846,78499,Tom Hanks,1331483669 +245846,79132,action,1331419171 +245846,79132,alternate reality,1331419172 +245846,79132,Paris,1331419166 +245846,79132,surreal,1331419182 +245846,79132,thought-provoking,1331419184 +245846,79132,thriller,1331419169 +245846,79132,visually appealing,1331419162 +245846,80166,dull,1331418536 +245846,80166,Jason Bateman,1331418529 +245846,80166,Jennifer Aniston,1331418527 +245846,80166,predictable ending,1331418534 +245846,80463,college,1331483087 +245846,80463,dark comedy,1331483088 +245846,80463,good cast,1331483099 +245846,80463,true story,1331483084 +245846,80489,action,1331483053 +245846,80489,bank robbery,1331483051 +245846,80489,Ben Affleck,1331483046 +245846,80489,Boston,1331483049 +245846,80489,Jon Hamm,1331483063 +245846,80489,police,1331483057 +245846,81591,atmospheric,1331419128 +245846,81591,dance,1331419138 +245846,81591,drama,1331419139 +245846,81591,Natalie Portman,1331419133 +245846,81591,New York City,1331419148 +245846,81591,thriller,1331419143 +245846,82167,happy ending,1331417678 +245846,82167,Jake Gyllenhaal,1331417666 +245846,84152,Bradley Cooper,1333829283 +245846,84152,cinematography,1333829314 +245846,84152,entertaining,1333829285 +245846,84152,smart,1333829300 +245846,84152,thought provoking,1333829301 +245846,84152,visually appealing,1333829310 +245846,84374,Ashton Kutcher,1331417872 +245846,84374,cute,1331417875 +245846,84374,Natalie Portman,1331417870 +245846,85414,cinematography,1331419222 +245846,85414,Jake Gyllenhaal,1331419211 +245846,85414,suspense,1331419216 +245846,85414,twist ending,1331419213 +245846,85438,beautiful scenery,1333915877 +245846,85438,beautifully filmed,1333915879 +245846,85438,gothic,1333915887 +245846,85438,Michael Fassbender,1333915880 +245846,85510,Cinematography,1331405892 +245846,85510,lame ending,1331405900 +245846,86833,unlikeable characters,1331417429 +245846,86882,Boring,1331484923 +245846,87232,James McAvoy,1331419727 +245846,87232,Michael Fassbender,1331419736 +245846,88163,comedy,1331417705 +245846,88163,Emma Stone,1331417691 +245846,88163,not cliche,1331417699 +245846,88163,Ryan Gosling,1331417702 +245846,88405,chemistry between actors,1331417642 +245846,88405,comedy,1331417644 +245846,88405,funny,1331417623 +245846,88405,Justin Timberlake,1331417630 +245846,88405,love story,1331417625 +245846,88405,Mila Kunis,1331417613 +245846,88405,New York City,1331417637 +245846,88405,Woody Harrelson,1331417627 +245846,89864,emotional,1331483150 +245846,89864,Joseph Gordon-Levitt,1331483149 +245846,91542,great cinematography,1331419673 +245846,91542,Jude Law,1331419675 +245846,91542,Robert Downey Jr.,1331419676 +245868,318,escape,1444571389 +245868,318,intense,1444571400 +245870,6966,Sam Raimi,1185660910 +245870,44788,Nudity (Full Frontal),1171286221 +245870,48082,artsy,1171286195 +245883,19,Jim Carrey,1194378002 +245883,165,Samuel L. Jackson,1194377738 +245883,231,hilarious,1194377988 +245883,260,chewbacca,1194463547 +245883,260,Harrison Ford,1194463539 +245883,296,samuel l.,1194463518 +245883,344,classic Carrey,1194377566 +245883,356,lord of the ring,1194377779 +245883,1136,John Cleese,1194459844 +245883,1196,star wars,1194377185 +245883,3527,Arnold,1194376674 +245883,4878,mindfuck,1194460275 +245883,4886,Comedy,1194377257 +245883,6934,dissapointment,1194459943 +245883,7387,zombies,1219133009 +245883,27734,Samuel L. Jackson,1194377540 +245888,1398,premarital sex,1261888624 +245888,1398,sad ending,1261888608 +245888,1835,ending kinda ruined it,1261892236 +245888,6951,weird,1261888671 +245888,8957,Disturbing,1261886882 +245888,8957,gore,1261888557 +245888,8957,Sick,1261888562 +245888,30707,Sad,1261889479 +245888,48600,romantic,1261886956 +245901,318,classic,1449326915 +245901,318,inspirational,1449326907 +245901,318,Morgan Freeman,1449326896 +245901,318,powerful ending,1449326911 +245901,318,prison,1449326899 +245901,318,prison escape,1449326901 +245901,318,twist ending,1449326903 +245901,356,bittersweet,1449326986 +245901,356,classic,1449326984 +245901,356,feel-good,1449326995 +245901,356,tom hanks,1449326982 +245901,1682,dark comedy,1449327311 +245901,1682,Jim Carrey,1449327307 +245901,1682,philosophy,1449327315 +245901,1682,social commentary,1449327319 +245901,3285,great soundtrack,1449327083 +245901,3285,Leonardo DiCaprio,1449327086 +245901,3285,travel,1449327080 +245901,5225,bittersweet,1449327971 +245901,5225,coming of age,1449327960 +245901,5225,Erotic,1449327963 +245901,5225,Mexico,1449327967 +245901,5225,road trip,1449327965 +245901,5690,anime,1450003356 +245901,5690,Japan,1450003361 +245901,5690,orphans,1450003363 +245901,5690,tragedy,1450003359 +245901,7147,adventure,1449327062 +245901,7147,bittersweet,1449327054 +245901,7147,Fantasy,1449327057 +245901,7147,Tim Burton,1449327051 +245901,46578,dark comedy,1449326683 +245901,46578,dysfunctional family,1449326680 +245901,46578,family,1449326672 +245901,46578,family drama,1449326669 +245901,46578,independent film,1449326687 +245901,46578,road trip,1449326660 +245901,53318,british,1449327808 +245901,53318,Nudity (Full Frontal),1449327804 +245901,53318,surrealism,1449327807 +245901,55247,Alaska,1449326543 +245901,55247,based on a true story,1449326513 +245901,55247,Emile Hirsch,1449326532 +245901,55247,great soundtrack,1449326510 +245901,55247,imdb top 250,1449326535 +245901,55247,Music,1449326540 +245901,55247,road trip,1449326506 +245901,55247,self discovery,1449326516 +245901,55280,emotional,1449327582 +245901,55280,mental illness,1449327579 +245901,55280,Ryan Gosling,1449327585 +245901,57669,belgium,1449327178 +245901,57669,Colin Farrell,1449327172 +245901,57669,dark comedy,1449327167 +245901,57669,irish accent,1449327170 +245901,62434,Seth Rogen,1449327641 +245901,62434,Sex Comedy,1449327622 +245901,62434,Sexual Humor,1449327620 +245901,79132,alternate reality,1449326938 +245901,79132,Christopher Nolan,1449326953 +245901,79132,complicated,1449326943 +245901,79132,dreams,1449326951 +245901,79132,Leonardo DiCaprio,1449326946 +245901,79132,visually appealing,1449326940 +245901,80693,bittersweet,1449327426 +245901,80693,coming of age,1449327427 +245901,80693,depression,1449327425 +245901,80693,Zach Galifianakis,1449327422 +245901,88163,adultery,1450032939 +245901,88163,comedy,1450032933 +245901,88163,Emma Stone,1450032927 +245901,88163,romantic comedy,1450032937 +245901,88163,Ryan Gosling,1450032931 +245901,89864,cancer,1449327513 +245901,89864,emotional,1449327517 +245901,89864,Joseph Gordon-Levitt,1449327511 +245901,89864,touching,1449327520 +245901,92152,coming of age,1449328241 +245901,92152,sexuality,1449328239 +245941,3397,muppets,1427352554 +245941,119145,action,1427351573 +245941,119145,british,1427351573 +245941,119145,spy,1427351573 +245959,6,Can't remember,1149694325 +245959,9,Can't remember,1149491311 +245959,24,Can't remember,1149047331 +245959,36,Can't remember,1149447373 +245959,65,Can't remember,1149823827 +245959,70,Didn't finish,1149055377 +245959,92,Can't remember,1149491067 +245959,122,Can't remember,1149823823 +245959,151,Can't remember,1149694631 +245959,173,Can't remember,1149056215 +245959,177,Can't remember,1149726580 +245959,208,Can't remember,1149056240 +245959,208,Friday night movie,1170487517 +245959,225,Can't remember,1149447539 +245959,227,Can't remember,1149695953 +245959,230,Can't remember,1149823293 +245959,253,Can't remember,1149694304 +245959,266,Can't remember,1149047303 +245959,282,Can't remember,1149058051 +245959,289,Can't remember,1149861184 +245959,338,Can't remember,1149056192 +245959,340,Can't remember,1149047080 +245959,342,Can't remember,1149047300 +245959,349,Can't remember,1149985389 +245959,351,Can't remember,1149860938 +245959,361,Can't remember,1149048099 +245959,370,Can't remember,1149456950 +245959,379,Can't remember,1149491327 +245959,382,Can't remember,1149887597 +245959,383,Can't remember,1149823538 +245959,415,Can't remember,1149446480 +245959,442,Can't remember,1149694373 +245959,466,Can't remember,1149694668 +245959,471,Didn't finish,1149447039 +245959,485,Friday night movie,1170487382 +245959,517,Can't remember,1149057835 +245959,537,Can't remember,1149047631 +245959,540,Can't remember,1149452148 +245959,542,Can't remember,1149861065 +245959,548,Can't remember,1149695979 +245959,558,Can't remember,1149951932 +245959,590,Can't remember,1149057577 +245959,590,K movie,1170486668 +245959,594,Can't remember,1149047286 +245959,596,Can't remember,1149054545 +245959,692,Can't remember,1149903143 +245959,711,Can't remember,1149888033 +245959,725,Can't remember,1149888563 +245959,743,Can't remember,1149695790 +245959,761,Can't remember,1149823951 +245959,778,Can't remember,1149448100 +245959,785,Can't remember,1149695248 +245959,798,Can't remember,1149490921 +245959,818,Can't remember,1149861324 +245959,861,Can't remember,1149055744 +245959,902,Didn't finish,1149695346 +245959,914,K movie,1170486730 +245959,916,K movie,1170486543 +245959,930,K movie,1170486539 +245959,932,Didn't finish,1149888292 +245959,954,Didn't finish,1149448045 +245959,990,Can't remember,1149903994 +245959,996,Can't remember,1149046908 +245959,1006,Can't remember,1149447383 +245959,1013,Can't remember,1149449726 +245959,1022,Can't remember,1149448906 +245959,1025,Can't remember,1149986613 +245959,1028,Can't remember,1149490593 +245959,1029,Can't remember,1149490629 +245959,1037,Can't remember,1149047610 +245959,1049,Can't remember,1149449859 +245959,1057,Didn't finish,1149436137 +245959,1091,Can't remember,1149048906 +245959,1092,Can't remember,1149056041 +245959,1100,Can't remember,1149046895 +245959,1135,Can't remember,1149823849 +245959,1150,Can't remember,1149452692 +245959,1199,Can't remember,1149048934 +245959,1201,Didn't finish,1149048799 +245959,1201,Friday night movie,1170472191 +245959,1222,Can't remember,1149054740 +245959,1225,Can't remember,1149057455 +245959,1230,Didn't finish,1149057531 +245959,1231,K movie,1170486764 +245959,1233,K movie,1170486498 +245959,1257,K movie,1170486617 +245959,1262,K movie,1170486519 +245959,1263,Didn't finish,1228339064 +245959,1263,Friday night movie,1170472165 +245959,1275,Can't remember,1149054589 +245959,1278,Can't remember,1149694659 +245959,1278,Friday night movie,1170472246 +245959,1302,Can't remember,1149047860 +245959,1343,K movie,1170486661 +245959,1357,Didn't finish,1149054733 +245959,1378,K movie,1170486600 +245959,1387,Halloween movie,1170471819 +245959,1394,Can't remember,1149048092 +245959,1427,Can't remember,1149904377 +245959,1459,Can't remember,1149047593 +245959,1488,Can't remember,1149046875 +245959,1527,Can't remember,1149048925 +245959,1542,K movie,1170486622 +245959,1587,Friday night movie,1170487071 +245959,1589,Can't remember,1149047583 +245959,1605,Can't remember,1149904033 +245959,1616,Can't remember,1149046870 +245959,1681,Video game connection,1170487536 +245959,1726,Can't remember,1149888670 +245959,1772,Friday night movie,1170487464 +245959,1816,Can't remember,1149904597 +245959,1881,Can't remember,1149047241 +245959,1883,Can't remember,1149046866 +245959,1888,Can't remember,1149861271 +245959,1947,K movie,1170486835 +245959,1994,Can't remember,1149452551 +245959,1997,Can't remember,1149695219 +245959,2000,Can't remember,1149046691 +245959,2000,K movie,1170486477 +245959,2001,Can't remember,1149048156 +245959,2002,Can't remember,1149048181 +245959,2010,Friday night movie,1170472217 +245959,2018,Can't remember,1149047574 +245959,2022,K movie,1170486704 +245959,2034,Can't remember,1149047570 +245959,2046,Can't remember,1149823769 +245959,2053,Can't remember,1149047564 +245959,2067,K movie,1170486678 +245959,2077,Can't remember,1149058349 +245959,2080,Can't remember,1149446682 +245959,2082,Can't remember,1149046861 +245959,2087,Can't remember,1149058470 +245959,2089,Can't remember,1149452221 +245959,2090,Can't remember,1149452222 +245959,2096,Can't remember,1149046859 +245959,2099,Can't remember,1149449082 +245959,2116,Can't remember,1149694222 +245959,2137,Can't remember,1149046855 +245959,2139,Can't remember,1149046851 +245959,2141,Can't remember,1149449706 +245959,2143,Friday night movie,1170487060 +245959,2164,Didn't finish,1149953295 +245959,2170,Can't remember,1149904244 +245959,2174,Can't remember,1149046677 +245959,2186,K movie,1170486548 +245959,2232,Friday night movie,1170471777 +245959,2247,Didn't finish,1149447481 +245959,2269,Can't remember,1149694208 +245959,2291,Can't remember,1149694477 +245959,2294,Can't remember,1149058163 +245959,2366,Friday night movie,1170471827 +245959,2421,Can't remember,1149823655 +245959,2463,Can't remember,1149056354 +245959,2471,Can't remember,1149056371 +245959,2524,Friday night movie,1170487310 +245959,2598,Didn't finish,1149824021 +245959,2599,Didn't finish,1149694649 +245959,2643,Can't remember,1149861376 +245959,2692,Workout movie,1174482016 +245959,2694,Didn't finish,1149695506 +245959,2699,Can't remember,1149048323 +245959,2726,Friday night movie,1170472212 +245959,2728,K movie,1170486790 +245959,2787,Can't remember,1149453803 +245959,2793,Can't remember,1149887538 +245959,2794,Can't remember,1149452634 +245959,2795,Can't remember,1149452630 +245959,2798,Can't remember,1149888826 +245959,2808,Emmerich,1170472757 +245959,2841,K movie,1170486492 +245959,2861,K movie,1170487302 +245959,2871,Friday night movie,1170471801 +245959,2875,Can't remember,1149058085 +245959,2950,Can't remember,1149446305 +245959,2985,Can't remember,1149048700 +245959,3039,Can't remember,1149054716 +245959,3087,Can't remember,1149046796 +245959,3100,Can't remember,1149046793 +245959,3101,Can't remember,1149046681 +245959,3105,Can't remember,1149057636 +245959,3108,Can't remember,1149056336 +245959,3208,Can't remember,1149048041 +245959,3208,Friday night movie,1170487395 +245959,3243,Can't remember,1149048517 +245959,3248,Can't remember,1149888198 +245959,3254,Can't remember,1149058246 +245959,3255,K movie,1170486581 +245959,3256,Can't remember,1149054575 +245959,3259,Can't remember,1149694181 +245959,3264,Friday night movie,1170487325 +245959,3271,Can't remember,1149694160 +245959,3284,Friday night movie,1170472069 +245959,3296,K movie,1170486816 +245959,3300,Friday night movie,1170487083 +245959,3386,Can't remember,1149055792 +245959,3388,Can't remember,1149490815 +245959,3396,Can't remember,1149695891 +245959,3397,Can't remember,1149448787 +245959,3401,Can't remember,1149695715 +245959,3418,Didn't finish,1149048292 +245959,3424,K movie,1170486674 +245959,3435,K movie,1170486503 +245959,3441,K movie,1170487337 +245959,3448,Can't remember,1149695299 +245959,3451,K movie,1170486683 +245959,3608,Can't remember,1149046784 +245959,3660,Can't remember,1149905543 +245959,3688,Can't remember,1149888245 +245959,3698,Friday night movie,1170487054 +245959,3699,Can't remember,1149046780 +245959,3702,Can't remember,1149048177 +245959,3704,Can't remember,1149048201 +245959,3763,Can't remember,1149046774 +245959,3868,Can't remember,1149456953 +245959,3869,Can't remember,1149456947 +245959,3980,Can't remember,1149046764 +245959,4010,Can't remember,1149888718 +245959,4017,Didn't finish,1149906129 +245959,4084,Can't remember,1149047457 +245959,4085,Can't remember,1149047195 +245959,4085,K movie,1170486485 +245959,4104,Can't remember,1149903968 +245959,4121,Can't remember,1149449798 +245959,4132,Can't remember,1149888651 +245959,4133,Can't remember,1149456874 +245959,4133,Friday night movie,1170487421 +245959,4133,He-Man connection,1170487405 +245959,4135,Can't remember,1149913189 +245959,4207,Can't remember,1149903019 +245959,4221,Can't remember,1149905925 +245959,4231,K movie,1170487275 +245959,4241,Video game connection,1170487549 +245959,4316,K movie,1170487222 +245959,4318,Friday night movie,1170487153 +245959,4318,Star Wars connection,1170487160 +245959,4333,Can't remember,1149048458 +245959,4351,Can't remember,1149058130 +245959,4465,Didn't finish,1149889292 +245959,4467,Didn't finish,1149445434 +245959,4487,Didn't finish,1149048576 +245959,4502,Can't remember,1149905533 +245959,4519,Can't remember,1149889046 +245959,4520,Can't remember,1149913138 +245959,4558,Can't remember,1149048397 +245959,4563,Can't remember,1149904446 +245959,4564,Can't remember,1149903875 +245959,4580,Friday night movie,1170487370 +245959,4580,He-Man connection,1170487370 +245959,4585,Can't remember,1149860451 +245959,4591,Can't remember,1149912979 +245959,4613,Can't remember,1149047163 +245959,4616,Can't remember,1149058361 +245959,4619,Can't remember,1149448681 +245959,4621,Can't remember,1149447560 +245959,4623,Friday night movie,1170472268 +245959,4654,Friday night movie,1170487506 +245959,4676,Can't remember,1149904647 +245959,4677,Can't remember,1149048616 +245959,4678,Friday night movie,1170472081 +245959,4679,Can't remember,1149449012 +245959,4812,Can't remember,1149047157 +245959,4867,Didn't finish,1149889231 +245959,4911,Friday night movie,1170486873 +245959,4951,Can't remember,1149056077 +245959,5027,Can't remember,1149048315 +245959,5039,Can't remember,1149047158 +245959,5049,Can't remember,1149048246 +245959,5135,Didn't finish,1149861942 +245959,5159,Can't remember,1149904579 +245959,5310,Friday night movie,1170487433 +245959,5357,Can't remember,1149951487 +245959,5433,Can't remember,1149453826 +245959,5500,Can't remember,1149448951 +245959,5541,Can't remember,1149888363 +245959,5596,Can't remember,1149913851 +245959,5670,Friday night movie,1170471790 +245959,5679,Halloween movie,1170472033 +245959,6188,Friday night movie,1170472264 +245959,6204,Can't remember,1149048704 +245959,6464,Can't remember,1149047374 +245959,6475,Can't remember,1149953961 +245959,6502,Halloween movie,1170472311 +245959,6558,Can't remember,1149913118 +245959,6559,Can't remember,1149951388 +245959,6662,Friday night movie,1170472019 +245959,6744,Can't remember,1149913776 +245959,6796,Can't remember,1149887982 +245959,6966,Can't remember,1149904337 +245959,7005,Can't remember,1149913050 +245959,7009,K movie,1170486574 +245959,7104,Friday night movie,1170487233 +245959,7161,K movie,1170487241 +245959,7316,K movie,1170487347 +245959,7381,Friday night movie,1170487179 +245959,7560,Friday night movie,1170472183 +245959,7624,K movie,1170486569 +245959,7986,Can't remember,1149955155 +245959,8232,4.5,1170271795 +245959,8232,K movie,1170486432 +245959,8232,Not available from Netflix,1170726484 +245959,8512,Friday night movie,1170486896 +245959,8634,Can't remember,1149695695 +245959,8641,Friday night movie,1170487029 +245959,8880,Can't remember,1149448985 +245959,9004,Can't remember,1149448460 +245959,26386,Friday night movie,1170486863 +245959,27790,K movie,1170486719 +245959,31555,Can't remember,1149456981 +245959,36537,K movie,1170486811 +245959,39414,Didn't finish,1284348102 +245959,40339,Friday night movie,1170487258 +245959,42002,K movie,1170486847 +245959,45210,K movie,1170486830 +245959,45666,Friday night movie,1170487252 +245959,45728,Friday night movie,1170471793 +245959,46948,Halloween movie,1170471852 +245959,46970,Friday night movie,1170487034 +245959,47099,K movie,1170486445 +245959,47124,K movie,1170486838 +245959,49274,Friday night movie,1170487137 +245959,49286,K movie,1170486855 +245978,32,absurd,1437332796 +245978,32,brad pitt,1437332796 +245978,32,post-apocalyptic,1437332796 +245978,2571,cyberpunk,1433106058 +245978,2571,keanu reeves,1433106058 +245978,2571,virtual reality,1433106058 +245993,296,episodic,1420650313 +245993,296,nonlinear,1420650313 +245993,296,tarantino,1420650313 +245993,318,friendship,1434968660 +245993,318,hope,1434968660 +245993,318,prison,1434968660 +246001,318,favorite movie of the year,1160680434 +246004,260,darthvader,1437510908 +246004,260,instageek,1437510893 +246004,127098,comedy,1437511173 +246004,127098,highly quotable,1437511173 +246004,127098,standup,1437511173 +246019,2804,i like watching this movie when im so high i dont know left from right,1293130649 +246019,2858,thought-provoking,1294845430 +246019,33794,batman,1294845364 +246019,33794,Christian Bale,1294845354 +246019,33794,Michael Caine,1294845360 +246019,33794,Morgan Freeman,1294845356 +246019,51255,action spoof,1294852578 +246019,51255,british comedy,1294852570 +246019,51255,could be shorter,1294852610 +246019,51255,Funny as hell,1294852594 +246019,58559,Batman,1294845304 +246019,58559,Christian Bale,1294845332 +246019,58559,Heath Ledger,1294845300 +246019,58559,Morgan Freeman,1294845319 +246019,58559,superhero,1294845308 +246019,60074,alcoholic,1294845249 +246019,60074,not as good as I expected,1294845225 +246019,60074,superhero,1294845261 +246019,60074,Will Smith,1294845244 +246019,81383,french,1294845648 +246019,81383,romain duris,1294845669 +246019,81383,romance,1294845745 +246019,81383,stupid ending,1294845655 +246019,81383,vanessa paradis,1294845692 +246030,778,jo list,1139493659 +246030,1732,jo list,1139493645 +246055,1552,redemption,1348458950 +246055,2321,adultery,1361764518 +246055,2321,whimsical,1361764538 +246055,2502,revenge,1361753024 +246055,3160,bleak,1402945484 +246055,3160,cynical,1402945480 +246055,3160,multiple storylines,1402945541 +246055,3160,poignant,1402945548 +246055,3160,redemption,1402945448 +246055,3160,Tom Cruise,1402945521 +246055,3160,true to life,1402945513 +246055,3556,psychology,1402946132 +246055,3556,reflective,1402946134 +246055,3556,stylized,1402946138 +246055,3556,suicide,1402946129 +246055,5064,adventure,1403219605 +246055,5064,infidelity,1403219656 +246055,5064,jealousy,1403219644 +246055,5064,prison escape,1403219631 +246055,5064,revenge,1403219597 +246055,5064,swashbuckler,1403219620 +246055,5617,BDSM,1402945902 +246055,5617,black comedy,1402945792 +246055,5617,controversial,1402945798 +246055,5617,dark comedy,1402945844 +246055,5617,erotic,1402945838 +246055,5617,healing,1402945943 +246055,5617,love,1402945804 +246055,5617,relationships,1402945807 +246055,5617,romance,1402945811 +246055,5903,epiphany,1348463499 +246055,5903,excessive violence,1348463387 +246055,5903,revelatory,1348463518 +246055,5903,violence,1348463369 +246055,6957,black comedy,1348456374 +246055,6957,drunkenness,1348456350 +246055,44191,politics,1402860944 +246055,44191,revenge,1402945394 +246055,44191,terrorism,1402860811 +246055,44191,violence,1402860884 +246055,44191,visually appealing,1402860917 +246055,51091,atmospheric,1402945654 +246055,51091,healing,1402945660 +246055,51091,redemption,1402945595 +246055,55267,infidelity,1403219690 +246055,55267,large family,1403219696 +246055,55267,predictable,1403219705 +246055,55267,romantic,1403219750 +246055,56757,cannibalism,1361775638 +246055,56757,murder,1361775640 +246055,56757,violence,1361775652 +246055,58376,anti-Semitism,1323276272 +246055,58559,Christian Bale,1403293363 +246055,73321,Bible,1348463354 +246055,73321,Christianity,1348463352 +246055,73321,epiphany,1348463550 +246055,73321,excessive violence,1348463338 +246055,73321,revelatory,1348463550 +246055,73321,violence,1348463338 +246055,79185,deadpan,1348458705 +246055,79702,crude humor,1402946506 +246055,79702,cultural references,1402946475 +246055,79702,music,1402946597 +246055,79702,quirky,1402946537 +246055,79702,stylized,1402946267 +246055,79702,video games,1402946377 +246055,79702,whimsical,1402946272 +246055,87485,scatalogical humor,1348456413 +246055,88785,adultery,1348456747 +246055,91658,atheism,1361775601 +246055,91658,rape,1361775584 +246055,91658,revenge,1361775591 +246121,1136,Fun,1139519709 +246121,1542,UK Music,1139519650 +246121,2571,Wachowski SciFi,1139519685 +246125,7018,language,1172157899 +246125,7152,dark,1176483990 +246125,7152,nudity,1176483953 +246125,7827,David Hewlett,1255810226 +246125,7827,Implausible plot,1255810258 +246125,7827,Lucy Liu,1255810203 +246125,7827,Plodding pace,1255810216 +246125,7827,unlikeable characters,1255810280 +246125,36527,slow,1176485965 +246125,37475,slow,1176485915 +246125,40583,confused plot,1176485722 +246125,42734,clever,1176485536 +246125,43560,comedy,1147983808 +246125,43560,kids,1147983808 +246125,43928,stupid,1176485429 +246125,43936,tense,1176485376 +246125,44199,intelligent thriller,1176485297 +246125,44709,heartwarming,1176485185 +246125,48043,disappointing,1184762776 +246125,48043,dreamlike,1184762699 +246125,48043,weak story,1184762689 +246125,51834,chick flick 212,1203867534 +246125,55290,Very Strong Language,1204564122 +246125,63082,Oscar (Best Picture),1242952128 +246125,63082,torture,1242952105 +246125,64497,apocolyptic,1255810130 +246125,64497,Jennifer Connelly,1255810101 +246125,64497,John Cleese,1255810107 +246125,64497,Kathy Bates,1255810114 +246125,64497,Keanu Reeves,1255810116 +246125,64497,liberal propaganda,1255810119 +246125,64620,gripping,1246638981 +246125,64957,cinematography,1242952450 +246125,64957,too long,1242952423 +246125,65465,dramatic irony,1246638925 +246125,68358,action,1242951951 +246125,68358,alternate reality,1242952000 +246125,68358,sci-fi,1242951986 +246125,68358,space,1242951984 +246125,68358,spock,1242951980 +246125,68358,Star Trek,1242951965 +246125,68358,time travel,1242951967 +246125,91094,Amy Adams,1349956257 +246125,91094,Jason Segel,1349956215 +246125,91094,plot,1349956257 +246125,91890,slow paced,1349955889 +246125,91890,Streep strong & funny,1349955889 +246125,94070,Bill Nighy,1380839828 +246125,94070,bittersweet,1380839818 +246125,94070,Judi Dench,1380839822 +246125,94070,Maggie Smith,1380839835 +246125,101741,convoluted,1380839742 +246125,101741,not believable,1380839718 +246125,101741,Nudity (Full Frontal),1380839705 +246125,101741,psychology,1380839753 +246165,296,Black comedy,1295795446 +246165,296,Bruce Willis,1295795424 +246165,296,drugs,1295795450 +246165,296,John Travolta,1295795431 +246165,296,Mafia,1295795453 +246165,296,organized crime,1295795452 +246165,296,Quentin Tarantino,1295795420 +246165,296,Samuel L. Jackson,1295795421 +246165,296,Uma Thurman,1295795439 +246165,912,bittersweet,1295795478 +246165,1704,feel-good,1295793765 +246165,1704,genius,1295793752 +246165,1704,Robin Williams,1295793757 +246165,1704,seen more than once,1295793759 +246165,1923,Cameron Diaz,1295795310 +246165,1923,fun,1295795313 +246165,1923,goofy,1295795318 +246165,1923,sexual,1295795321 +246165,2858,Kevin Spacey,1295794509 +246165,2858,midlife crisis,1295794514 +246165,2858,sexuality,1295794522 +246165,2858,surrealism,1295794519 +246165,2858,thought-provoking,1295794517 +246165,2997,black comedy,1296063839 +246165,2997,Cameron Diaz,1296063842 +246165,2997,hallucinatory,1296063868 +246165,2997,John Cusack,1296063871 +246165,2997,off-beat comedy,1296063873 +246165,2997,psychology,1296063849 +246165,2997,quirky,1296063859 +246165,2997,satirical,1296063855 +246165,2997,surreal,1296063852 +246165,2997,surrealism,1296063854 +246165,2997,thought-provoking,1296063851 +246165,2997,twist ending,1296063861 +246165,2997,whimsical,1296063864 +246165,7346,Elisha Cuthbert,1295794578 +246165,7346,Nudity (Topless),1295794588 +246165,7346,pornography,1295794573 +246165,54503,Michael Cera,1295795367 +246165,54503,virginity,1295795383 +246165,80549,Emma Stone,1295794549 +246170,4963,Matt Damon,1308593943 +246170,5171,Guy Pearce,1308616005 +246170,47610,Edward Norton,1307082998 +246170,47610,predictable,1307083002 +246170,63113,Daniel Craig,1308377602 +246170,66596,Donald Glover,1307082793 +246180,1219,Alfred Hitchcock,1404615550 +246180,1219,Hitchcock,1404615553 +246180,45517,actually funny,1404615358 +246180,45517,cars,1404615397 +246180,45517,comedy,1404615371 +246180,45517,G,1404615413 +246180,45517,innovative,1404615411 +246180,45517,instills good moral values,1404615416 +246180,45517,kids fun,1404615382 +246180,45517,Paul Newman,1404615378 +246180,45517,Pixar,1404615392 +246180,45517,race,1404615403 +246180,45517,small town,1404615406 +246180,45517,villain nonexistent or not needed for good story,1404615388 +246180,115291,New Orleans,1415573179 +246183,1610,Race against time,1173273373 +246192,50,Benicio Del Toro,1176854246 +246192,50,Crime,1176854306 +246192,50,Gabriel Byrne,1176854274 +246192,50,Kevin Spacey,1176854226 +246192,50,twist ending,1176854239 +246192,1265,Bill Murray,1154963182 +246192,2858,Kevin Spacey,1154963203 +246192,2858,seen more than once,1154963216 +246192,5618,anime,1156789621 +246192,5618,Japan,1156789636 +246192,5618,Miyazaki,1156789623 +246192,5690,anime,1156789496 +246192,5690,ghibli,1156789499 +246192,5690,World War II,1156789508 +246192,40629,based on a novel,1156789347 +246192,40629,Jane Austen,1156789336 +246192,51084,Drew Barrymore,1176853684 +246192,51084,Hugh Grant,1176853680 +246203,745,Wallace and Gromit,1329679122 +246203,4973,French,1329689413 +246203,5008,Random tag,1329688817 +246203,7502,French Film,1329688855 +246203,77658,Hello,1329688796 +246203,81834,Alan Rickman,1329688320 +246203,81834,boarding school,1329688324 +246203,81834,dark fantasy,1329688316 +246203,89904,1920s,1329687018 +246203,89904,boring,1329687015 +246203,89904,silent movie,1329687038 +246215,318,Morgan Freeman,1398276138 +246215,318,sexuality,1398276147 +246222,6867,hidden gem,1138017473 +246224,1196,action,1416577554 +246224,1196,aliens,1416577562 +246224,1196,sci-fi,1416577537 +246224,1196,space opera,1416577546 +246224,1196,Star Wars,1416577540 +246251,539,Meg Ryan,1229494257 +246251,899,Gene Kelly,1229494271 +246251,916,Audrey Hepburn,1229494327 +246251,916,Gregory Peck,1229494327 +246251,1035,Julie Andrews,1229494167 +246251,1307,Billy Crystal,1229494079 +246251,1307,Meg Ryan,1229494079 +246251,2396,dramedy,1229494364 +246251,2396,Gwyneth Paltrow,1229494287 +246251,2424,Meg Ryan,1229493954 +246251,2424,New York City,1229494023 +246251,2424,Nora Ephron,1229494023 +246251,8961,Brad Bird,1229494950 +246251,50872,Brad Bird,1229494304 +246251,60069,classic,1229494125 +246251,60069,social commentary,1229494125 +246277,356,drama,1431238451 +246277,356,heart follower,1431238451 +246277,356,runer,1431238451 +246329,260,adventure,1430686533 +246329,260,classic,1430686525 +246332,71899,friendship transcending death,1420246348 +246332,71899,love,1420246348 +246332,71899,personality disorder,1420246348 +246364,2959,Brad Pitt,1254288278 +246364,2959,Edward Norton,1254288273 +246399,32,Time paradox,1194567167 +246399,1265,seen at the cinema,1194568420 +246399,1270,Time Paradox,1194567767 +246399,2571,Double Floor,1194567571 +246399,3147,longwinded,1194568697 +246399,3298,callcenter,1231034603 +246399,3298,father-son relationship,1231034647 +246399,3298,sales,1231034608 +246399,3298,scam,1231034610 +246399,7773,High school violence,1194568784 +246399,8464,McDonalds,1194569544 +246399,36529,loose ends,1194569360 +246399,49961,loneliness,1194569065 +246399,49961,manipulation,1194569065 +246399,49961,obsession,1194569065 +246399,49961,unanswered love,1194569065 +246399,65126,based on book,1231068829 +246399,66934,geeky,1288463381 +246399,66934,neil patrick harris,1288463372 +246399,74731,dystopian future,1288463895 +246408,4973,french movie,1200326174 +246408,27803,Amenábar,1199569597 +246415,92259,feel good movie,1420898470 +246415,92259,friendship,1420898466 +246415,93070,circus,1420306510 +246415,93070,comedy,1420306510 +246415,93070,romania,1420306510 +246415,100745,activism,1428764518 +246415,100745,documentary,1428764518 +246415,100745,the pirate bay,1428764518 +246415,128303,comedy,1423502420 +246415,128303,high school,1426886910 +246415,128303,marihuana,1423502392 +246415,128303,weed,1426886910 +246426,5046,Philip K. Dick,1183044186 +246426,8512,Mel Brooks,1163772875 +246426,38886,Wonderful writing and Jeff Daniels is wonderful!,1141055712 +246426,44761,movielens top pick,1200168956 +246426,44761,slang,1200168954 +246426,48696,Nudity (Topless - Brief),1173371611 +246426,50259,less than 300 ratings,1207427129 +246426,51540,3.5,1190227728 +246426,51540,Robert Downey Jr,1190227713 +246426,53125,pirates,1187138829 +246426,59018,New York City,1228085034 +246431,19,childhood fav,1241024516 +246431,19,Jim Carrey,1241024423 +246431,19,Simon Callow,1241024535 +246431,19,Steve Oedekerk,1241024537 +246431,1484,betrayal,1249887398 +246431,1484,relationships,1249887398 +246431,1484,sexuality,1249887422 +246431,2683,funny,1241024563 +246431,2683,Mike Myers,1241024574 +246431,4226,Christopher Nolan,1270476541 +246431,5388,Christopher Nolan,1270476509 +246431,8868,Charlize Theron,1249324928 +246431,8868,Love&War,1249324970 +246431,8868,Penélope Cruz,1249324938 +246431,8868,Unpredictable,1249324996 +246431,42418,atmospheric,1265342007 +246431,42418,beautiful,1265342011 +246431,42418,meditative,1265342024 +246431,42418,sentimental,1265342026 +246431,44195,Business is the antagonist,1253354705 +246431,44195,dark comedy,1253354663 +246431,44195,social commentary,1253354680 +246431,58559,Christopher Nolan,1270476562 +246431,58998,dull,1248222706 +246431,58998,Predictable,1248222710 +246431,62434,bad,1241737591 +246431,62434,not convincing,1241737628 +246431,62434,poor acting,1241737603 +246431,62434,sad,1241737301 +246431,63131,funny,1241733942 +246431,63131,obvious plot,1241733954 +246431,64620,boring beginning,1241392120 +246431,64620,history,1241392060 +246431,64620,Kevin Bacon,1241392094 +246431,64620,Oliver Platt,1241392095 +246431,64620,true story,1241392071 +246431,64622,Kate Winslet,1242650341 +246431,64622,Ralph Fiennes,1242650346 +246431,66509,honest,1259120235 +246431,66509,wandering,1259120220 +246431,66691,plot,1242250977 +246431,67255,biblical references,1251947594 +246431,67255,black and white morals,1251947711 +246431,67255,characters,1251947665 +246431,67255,cinematography,1251947655 +246431,68848,funny,1255720277 +246431,68848,predictable,1255720291 +246431,69306,boring,1257507344 +246431,69481,intense,1263981759 +246431,69481,realistic,1263981753 +246431,69481,thoughtful,1263981801 +246431,69481,War,1263981769 +246431,71254,Alison Lohman,1266229042 +246431,71254,dark,1266229070 +246431,71254,hackers,1266229050 +246431,71254,internet,1266229048 +246431,71254,poorly directed,1266229023 +246431,71254,predictable,1266229057 +246431,71254,sci-fi,1266229031 +246431,71254,virtual reality,1266229035 +246431,72224,bad humor,1269225814 +246431,72224,stupid,1269225830 +246454,3785,Hillarious,1187328064 +246454,5502,Alien Invasion,1187327953 +246454,5679,Good Versus Evil,1187328057 +246454,6934,Horrible,1187328019 +246454,7147,Legend,1187327992 +246481,104,you're gonna die clown,1320530328 +246481,908,adventure,1319349301 +246481,908,Alfred Hitchcock,1319349291 +246481,908,Cary Grant,1319349296 +246481,908,classic,1319349304 +246481,908,menacing,1319349329 +246481,908,mistaken identity,1319349312 +246481,908,mystery,1319349313 +246481,908,paranoid,1319349323 +246481,908,rousing,1319349361 +246481,908,suspense,1319349315 +246481,908,tense,1319349338 +246481,908,thriller,1319349317 +246481,908,trains,1319349333 +246481,908,urbane,1319349322 +246481,908,visually appealing,1319349318 +246481,908,witty,1319349320 +246481,908,wry,1319349352 +246481,3000,action,1325040664 +246481,3000,adventure,1325040662 +246481,3000,anime,1325040655 +246481,3000,atmospheric,1325040674 +246481,3000,classic,1325040677 +246481,3000,dark,1325040680 +246481,3000,drama,1325040679 +246481,3000,environmental,1325040670 +246481,3000,fantasy,1325040676 +246481,3000,Japan,1325040653 +246481,3000,nature,1325040682 +246481,3000,Studio Ghibli,1325040657 +246481,3000,talking animals,1325040659 +246481,6350,adventure,1325040705 +246481,6350,animated masterpiece,1325040703 +246481,6350,anime,1325040707 +246481,6350,fantasy,1325040727 +246481,6350,great soundtrack,1325040724 +246481,6350,Hayao Miyazaki,1325040711 +246481,6350,imagination,1325040717 +246481,6350,pirates,1325040721 +246481,6350,robots,1325040719 +246481,6350,Studio Ghibli,1325040710 +246481,6350,whimsical,1325040733 +246481,6533,espionage,1319347954 +246481,6533,great chase scenes,1319347958 +246481,6533,heist,1319347957 +246481,6533,Madeline Kahn,1319347912 +246481,6533,Peter Bogdanovich,1319347937 +246481,6533,related:Bringing Up Baby (1938),1319347940 +246481,6533,San Francisco,1319347924 +246481,6533,Screwball Comedy,1319347916 +246481,8056,Paul Newman,1329101205 +246481,26776,action,1324171571 +246481,26776,adventure,1324171572 +246481,26776,aerial dogfights,1324171629 +246481,26776,animation,1324171567 +246481,26776,anime,1324171569 +246481,26776,aviation,1324171578 +246481,26776,flying,1324171580 +246481,26776,Hayao Miyazaki,1324171558 +246481,26776,Italy,1324171563 +246481,26776,Miyazaki,1324171587 +246481,26776,romance,1324171634 +246481,26776,Studio Ghibli,1324171564 +246481,31658,animation,1325040601 +246481,31658,anime,1325040604 +246481,31658,dreamlike,1325040636 +246481,31658,magic,1325040599 +246481,31658,romance,1325040611 +246481,31658,Studio Ghibli,1325040594 +246481,31658,stylized,1325040629 +246481,31658,wizards,1325040626 +246481,31878,comedy,1326599120 +246481,31878,Dynamic CGI Action,1326599118 +246481,31878,martial arts,1326599100 +246481,31878,slapstick,1326599110 +246481,31878,Stephen Chow,1326599089 +246481,53468,Canadian,1182993254 +246481,65261,2d animation,1320530259 +246481,65261,Animation,1320530257 +246481,65261,environmentalism,1320530253 +246481,65261,gorgeous animation,1320530292 +246481,65261,Hayao Miyazaki,1320530260 +246481,83976,Michael Winterbottom,1319348038 +246481,83976,Rob Brydon,1319348010 +246481,83976,Steve Coogan,1319348014 +246481,89745,fun,1351127338 +246481,89745,Gwyneth Paltrow,1351127300 +246481,89745,humor,1351127303 +246481,89745,Marvel,1351127320 +246481,89745,Robert Downey Jr.,1351127297 +246481,89745,Scarlett Johansson,1351127295 +246481,89904,1920s,1329354493 +246481,89904,Berenice Bejo,1329354482 +246481,89904,Jean Dujardin,1329354522 +246481,89904,movie business,1329354505 +246481,89904,silent movie,1329354501 +246481,90746,action right from the start to the very end,1324688847 +246481,90746,comic book,1324688840 +246481,90746,dogs,1324688836 +246481,90746,Good adaptation,1324688805 +246481,90746,kidnapping,1324688832 +246481,90746,Planes,1324688829 +246481,90746,sailing ships,1324688825 +246481,90746,Simon Pegg,1324688807 +246481,90746,sword fight,1324688818 +246481,90746,treasure hunt,1324688820 +246481,94959,Bill Murray,1351127120 +246481,94959,Bruce Willis,1351127123 +246481,94959,Edward Norton,1351127126 +246481,94959,Harvey Keitel,1351127130 +246481,94959,Jason Schwartzman,1351127128 +246481,94959,love story,1351127151 +246481,94959,Wes Anderson,1351127132 +246543,914,Children,1186182476 +246543,1249,Comedy,1186182437 +246543,1267,horrer,1186182454 +246543,5502,horror,1186182497 +246543,5679,goretastic,1186182554 +246543,6934,Romance,1186182543 +246543,7147,adventure,1186182532 +246558,260,sci-fi,1439786354 +246558,260,space opera,1439786344 +246573,260,fantasy action,1436981741 +246573,260,space action,1436981733 +246585,364,Disney,1440814492 +246585,1721,Kate Winslet,1440814139 +246585,1721,Leonardo DiCaprio,1440814133 +246585,4308,Ewan McGregor,1440814240 +246585,4308,Nicole Kidman,1440814237 +246585,4447,Reese Witherspoon,1440814280 +246585,5992,Nicole Kidman,1440814329 +246585,7162,Nicole Kidman,1440814256 +246585,65130,Kate Winslet,1440814093 +246585,65130,Leonardo DiCaprio,1440814096 +246585,82767,Nicole Kidman,1440814068 +246585,102407,Leonardo DiCaprio,1440814308 +246585,117881,Julianne Moore,1440814167 +246585,123947,Jennifer anisten,1440814215 +246590,3705,action,1450024464 +246590,3705,fun,1450024475 +246590,3705,romantic,1450024460 +246590,3705,romantic action,1450024472 +246590,33679,romantic action,1450024394 +246590,33679,romantic comedy,1450024375 +246590,45720,funny,1450024555 +246603,3244,Oscar (Best Actor),1173156860 +246614,3635,james bond,1141171195 +246619,50,complicated,1250718212 +246619,50,conspiracy,1250718215 +246619,50,ensemble cast,1250718222 +246619,50,great ending,1250718191 +246619,50,heist,1250718193 +246619,50,imdb top 250,1250718196 +246619,50,Kevin Spacey,1250718229 +246619,50,Oscar Winner,1250718202 +246619,50,suspense,1250718209 +246619,50,tricky,1250718205 +246619,296,action,1250718123 +246619,296,cult film,1250718096 +246619,296,dark comedy,1250718099 +246619,296,drugs,1250718104 +246619,296,imdb top 250,1250718102 +246619,296,organized crime,1250718106 +246619,296,Quentin Tarantino,1250718109 +246619,296,Samuel L. Jackson,1250718110 +246619,296,violence,1250718112 +246619,318,heartwarming,1250717885 +246619,318,inspirational,1250717889 +246619,318,justice,1250717891 +246619,318,thought-provoking,1250717901 +246619,858,Al Pacino,1250717930 +246619,858,classic,1250717942 +246619,858,imdb top 250,1250717946 +246619,858,Mafia,1250717951 +246619,858,organized crime,1250717954 +246619,858,Oscar (Best Actor),1250717956 +246619,858,Oscar (Best Picture),1250717960 +246619,858,robert de niro,1250717958 +246619,1193,based on a book,1250718243 +246619,1193,Beautiful,1250718259 +246619,1193,classic,1250718297 +246619,1193,emotional,1250718253 +246619,1193,imdb top 250,1250718255 +246619,1193,Oscar (Best Actor),1250718279 +246619,1193,Oscar (Best Actress),1250718276 +246619,1193,Oscar (Best Directing),1250718282 +246619,1193,Oscar (Best Picture),1250718284 +246619,1193,psychological,1250718289 +246619,1193,psychology,1250718291 +246619,1213,adapted from:book,1250718040 +246619,1213,based on a book,1250718041 +246619,1213,crime,1250718055 +246619,1213,good dialogue,1250718000 +246619,1213,imdb top 250,1250718004 +246619,1213,mafia,1250718006 +246619,1213,Martin Scorsese,1250718051 +246619,1213,organized crime,1250718012 +246619,1213,Robert De Niro,1250718017 +246619,1213,Samuel L. Jackson,1250718019 +246619,1276,AFI 100 (Cheers),1250718307 +246619,1276,AFI 100 (Movie Quotes),1250718309 +246619,1276,atmospheric,1250718312 +246619,1276,classic,1250718321 +246619,1276,FIGHTING THE SYSTEM,1250718326 +246619,1276,great movie,1250718331 +246619,1276,imdb top 250,1250718336 +246619,1276,Oscar (Best Supporting Actor),1250718339 +246619,1276,Paul Newman,1250718340 +246619,1276,prison,1250718344 +246619,1704,genius,1250717788 +246619,1704,Great Screenplays,1250717838 +246619,2329,disturbing,1250718139 +246619,2329,Edward Norton,1250718133 +246619,2329,imdb top 250,1250718144 +246619,2329,powerful ending,1250718152 +246619,2329,thought-provoking,1250718157 +246619,48516,atmospheric,1250718754 +246619,48516,corruption,1250718756 +246619,48516,gangsters,1250718759 +246619,48516,imdb top 250,1250718762 +246619,48516,Jack Nicholson,1250718752 +246619,48516,Leonardo DiCaprio,1250718764 +246619,48516,Martin Scorsese,1250718782 +246619,48516,organized crime,1250718769 +246619,48516,tense,1250718772 +246620,296,classic,1427023850 +246620,296,cult,1427023850 +246620,296,sexy,1427023850 +246667,260,classics of the janra,1431739875 +246679,733,biological warfare,1156547496 +246679,8644,artificial intelligence,1156547478 +246679,33493,light sabers,1156547351 +246679,44397,gore,1155595497 +246685,3578,acting,1306199344 +246685,3578,action,1306199349 +246685,3578,story,1306199353 +246701,1485,Valehtelija Valehtelija,1141899169 +246701,2353,Valtion Vihollinen,1141899144 +246707,172,cyberpunk,1285576405 +246707,1196,fantasy,1285576395 +246712,260,good science fiction,1442584161 +246712,260,war,1442584201 +246712,260,yoda,1442584174 +246712,1704,genius,1442584420 +246712,1704,inspirational,1442584428 +246712,1704,intellectual,1442584431 +246712,1704,psychology,1442584423 +246712,4995,genius,1442584964 +246712,4995,inspirational,1442584972 +246712,4995,psychology,1442584961 +246712,58559,Heath Ledger,1442585561 +246712,58559,psychology,1442585579 +246712,58803,blackjack,1442586530 +246712,58803,Massachusetts Institute of Technology,1442586539 +246712,58803,mathematics,1442586527 +246712,59315,Robert Downey Jr.,1442585407 +246712,59315,superhero,1442585419 +246712,73881,aamir khan,1442584512 +246712,73881,bollywood,1442584515 +246712,73881,India,1442584493 +246712,77561,Robert Downey Jr.,1442585514 +246712,77561,Scarlett Johansson,1442585517 +246712,84152,smart,1442587073 +246712,90405,thought-provoking,1442587193 +246712,91529,intense,1442585621 +246712,116797,Alan Turing,1442585127 +246712,116797,Computers,1442585155 +246712,116797,inspirational,1442585142 +246712,116797,mathematics,1442585158 +246712,116823,bad ass female lead,1442586991 +246735,858,Al Pacino,1332581512 +246735,43921,runaway,1169698850 +246735,43921,thrilling,1169698837 +246735,86835,Dimensionalized 2-D to 3-D,1311312531 +246737,260,classic,1434407152 +246737,260,mysticism,1437761851 +246737,260,Science Fiction,1434407114 +246737,260,scifi,1437761851 +246737,260,space adventure,1434407133 +246737,318,friendship,1435789421 +246737,318,prison,1435789421 +246737,318,prison escape,1435789421 +246737,356,box of chocolate,1434407699 +246737,356,running,1434407699 +246737,356,us history,1434407699 +246737,356,vietnam war,1434407699 +246737,364,animation,1434411804 +246737,364,classic,1434411829 +246737,364,Disney,1434411801 +246737,364,soundtrack,1434411814 +246737,588,animation,1434412264 +246737,1080,British,1435798069 +246737,1080,comedy,1435798071 +246737,1080,Monty Python,1435798060 +246737,1080,quotable,1435798077 +246737,1136,absurd,1434568174 +246737,1136,British,1434568176 +246737,1136,british comedy,1434568146 +246737,1136,comedy,1434568158 +246737,1136,cult film,1434568161 +246737,1136,funny,1434568167 +246737,1136,Monty Python,1434568143 +246737,1136,satirical,1434568154 +246737,1297,college,1434412117 +246737,1297,engineering,1434412116 +246737,1297,genius,1434412122 +246737,1297,nerds,1434412114 +246737,1297,smart comedy,1434412110 +246737,1297,Val Kilmer,1434412131 +246737,1527,action,1449513035 +246737,1527,Bruce Willis,1449512993 +246737,1527,campy,1449513083 +246737,1527,Chris Tucker,1449513048 +246737,1527,Gary Oldman,1449513069 +246737,1527,humorous,1449513065 +246737,1527,Luc Besson,1449513071 +246737,1527,Milla Jovovich,1449512995 +246737,1527,Nudity (Topless - Notable),1449513057 +246737,1527,race against time,1449513060 +246737,1527,sci-fi,1449513044 +246737,1527,stylized,1449513006 +246737,1527,visually appealing,1449513004 +246737,1584,first contact,1435798224 +246737,1584,Jodie Foster,1435798220 +246737,1732,cult film,1434413001 +246737,1732,Julianne Moore,1434413065 +246737,2000,police,1434411114 +246737,2243,journalism,1434568880 +246737,2572,guilty pleasure,1434408355 +246737,2572,romantic,1434408402 +246737,2617,archaeology,1443642226 +246737,2617,egypt,1443642235 +246737,2617,Imhotep,1443642239 +246737,2617,mummy,1443642241 +246737,2617,treasure hunt,1443642230 +246737,3052,Alan Rickman,1435798027 +246737,3052,jay and silent bob,1435798011 +246737,3052,Kevin Smith,1435798007 +246737,3052,satire,1435798005 +246737,4270,egypt,1443642274 +246737,4828,french,1434411349 +246737,4828,reality,1434411376 +246737,4828,sophie marceau,1434411386 +246737,4828,teen,1434411365 +246737,4896,based on a book,1434412853 +246737,4896,book adaptation,1434412850 +246737,4896,harry potter,1434412862 +246737,4896,Magic,1434412857 +246737,5463,action,1434410801 +246737,5463,dragons,1434410788 +246737,5463,Matthew McConaughey,1434410797 +246737,5463,post-apocalyptic,1434410787 +246737,6539,action,1434412949 +246737,6539,comedy,1434412945 +246737,6539,funny,1434412952 +246737,6539,johnny depp,1434412926 +246737,6539,keira knightley,1434412928 +246737,6539,Orlando Bloom,1434412933 +246737,6539,pirates,1434412959 +246737,8371,action,1434410848 +246737,8371,Judi Dench,1434410858 +246737,8371,Riddick,1434410842 +246737,8371,sci-fi,1434410840 +246737,8371,space,1434410838 +246737,8371,Vin Diesel,1434410835 +246737,33794,superhero,1434408031 +246737,34048,alien invasion,1434411679 +246737,34048,based on a book,1434411698 +246737,34048,Tom Cruise,1434411674 +246737,34332,better than expected,1434409552 +246737,34332,cute,1434409550 +246737,34332,high school,1434409560 +246737,34332,superhero,1434409563 +246737,35836,dumb,1434412043 +246737,35836,steve carell,1434412047 +246737,43744,cute,1434410596 +246737,43744,Lena Headey,1434410591 +246737,43744,Lesbian,1434410588 +246737,43744,Piper Perabo,1434410631 +246737,43744,queer,1434410594 +246737,43744,Romance,1434410599 +246737,54259,Claire Danes,1435789529 +246737,54259,fantasy,1435789474 +246737,54259,fantasy world,1435789507 +246737,54259,Neil Gaiman,1435789490 +246737,54259,pirates,1435789514 +246737,54259,Robert De Niro,1435789494 +246737,54259,romance,1435789503 +246737,54775,action,1443642391 +246737,54775,plot twist,1443642383 +246737,58998,break-up,1434411999 +246737,58998,Hawaii,1434411965 +246737,58998,Kristen Bell,1434411954 +246737,58998,Mila Kunis,1434411980 +246737,58998,Predictable,1434411995 +246737,60069,animated,1434408142 +246737,60069,Animation,1434408116 +246737,60069,social commentary,1434408130 +246737,79139,magic,1443642440 +246737,79139,Nicolas Cage,1443642443 +246737,79293,action,1443642488 +246737,79293,Angelina Jolie,1443642492 +246737,79293,assassination,1443642485 +246737,79293,betrayal,1443642502 +246737,79293,espionage,1443642482 +246737,79293,female lead,1434409169 +246737,79293,strong female lead,1434409158 +246737,79293,US President,1443642499 +246737,84152,Bradley Cooper,1434419920 +246737,84152,drugs,1434419917 +246737,84152,human potential,1434419933 +246737,84152,smart,1434419939 +246737,84152,transhumanism,1434419930 +246737,84152,unfinished storyline,1434419953 +246737,97311,blatant,1434412768 +246737,97311,Olivia Wilde,1434412728 +246737,99114,brutal,1434412412 +246737,99114,Quentin Tarantino,1434412467 +246737,103801,Anna Kendrick,1434409682 +246737,103801,beer,1434409697 +246737,103801,brewery,1434409700 +246737,103801,flirting,1434409695 +246737,103801,improvisation,1434409708 +246737,103801,Olivia Wilde,1434409692 +246737,103801,relationships,1434409685 +246737,103801,weak ending,1434409717 +246737,103810,Bruce Willis,1437770928 +246737,103810,espionage,1437770915 +246737,103810,foot fetish,1437770924 +246737,103810,not as good as the first,1437770956 +246737,109487,Anne Hathaway,1434411473 +246737,109487,Christopher Nolan,1434411477 +246737,109487,good science,1434411483 +246737,109487,space,1434411466 +246737,109487,time-travel,1434411470 +246737,110102,Marvel Cinematic Universe,1434408279 +246737,110102,superhero,1434408276 +246737,111360,drugs,1449512949 +246737,111360,dumb science,1449512956 +246737,111360,Luc Besson,1449512963 +246737,111360,Morgan Freeman,1449512946 +246737,111360,Scarlett Johansson,1449512937 +246737,111360,strong female lead,1449512943 +246737,111360,transhumanist,1449512958 +246737,111759,action,1434411621 +246737,111759,Emily Blunt,1434411605 +246737,111759,original plot,1434411618 +246737,111759,powersuit,1434411633 +246737,111759,Reluctant Hero,1434411630 +246737,111759,Tom Cruise,1434411599 +246737,111759,war,1434411627 +246737,119145,british,1434410438 +246737,119145,gentlemanly,1434410415 +246737,119145,spy,1434410408 +246737,119145,violent,1434410422 +246737,122892,Action,1443642601 +246737,122892,Joss Whedon,1443642597 +246737,122892,Marvel,1443642582 +246737,122892,marvel cinematic universe,1443642586 +246737,122892,superhero,1443642604 +246737,136020,james bond,1449513169 +246737,136020,spy,1449513187 +246751,260,classic sci-fi,1440121122 +246751,260,sci-fi,1440121132 +246751,260,space adventure,1440121136 +246777,3677,non-verbal,1141605929 +246777,39183,cowboy,1153782432 +246777,39183,gay,1153782432 +246781,32,overrated,1218189127 +246781,1136,overrated,1218186886 +246781,2502,overrated,1218191020 +246793,318,twist ending,1280050267 +246793,778,dark comedy,1280050282 +246793,40412,revenge,1280050241 +246793,52952,coming of age,1280050277 +246793,70286,social commentary,1280050250 +246887,1,pixar,1443906050 +246887,260,sci-fi,1443905741 +246887,260,space,1443905759 +246887,2010,sci-fi,1443906153 +246887,2010,silent film,1443906163 +246887,3114,Pixar,1443906065 +246887,4886,Pixar,1443906117 +246887,5971,Studio Ghibli,1443907153 +246887,6987,silent film,1443906216 +246887,50872,pixar,1443906032 +246887,68954,Pixar,1443906102 +246887,78499,Pixar,1443906080 +246887,89904,silent film,1443906185 +246887,101962,Mamoru Hosoda,1443907137 +246887,114554,studio ghibli,1443907114 +246887,118952,Norman McLaren,1443906005 +246889,2677,cuba,1228774125 +246889,2677,musicians,1228774141 +246889,7585,Venice,1228967758 +246889,44694,mother-daughter relationship,1228966671 +246943,1,pixar,1449667433 +246943,3114,Pixar,1449667411 +246943,85774,Formula 1 racing,1449667975 +246943,85774,rivalry,1449667983 +246943,85774,true story,1449667978 +246943,104913,Formula 1,1449667927 +246943,104913,sports,1449667938 +246943,104913,true story,1449667945 +246955,123,dreamlike,1294879978 +246955,123,fanciful,1294879981 +246955,123,good music,1294879983 +246955,123,lyrical,1294879988 +246955,123,melancholy,1294880005 +246955,123,narrated,1294879992 +246955,123,reflective,1294879999 +246955,123,stylized,1294879996 +246955,349,based on a book,1288112875 +246955,858,Al Pacino,1290681588 +246955,858,atmospheric,1290681592 +246955,858,imdb top 250,1290681598 +246955,858,Oscar (Best Actor),1290681604 +246955,858,Oscar (Best Picture),1290681606 +246955,912,imdb top 250,1289316845 +246955,1358,Amazing Classic,1297890395 +246955,1358,Billy Bob Thornton,1297890391 +246955,1358,Edgar Award (Best Motion Picture),1297890399 +246955,1358,Memorable Characters,1297890412 +246955,3317,adultery,1295911116 +246955,3317,Michael Douglas,1295911124 +246955,3911,dogs,1288214245 +246955,3983,complex characters,1296601071 +246955,3983,Laura Linney,1296601003 +246955,3983,Mark Ruffalo,1296601041 +246955,3983,realistic,1296601058 +246955,3983,smart,1296601062 +246955,3983,sweet,1296601065 +246955,3983,want to see again,1296601068 +246955,4262,Al Pacino,1294061307 +246955,4262,atmospheric,1294061343 +246955,4262,imdb top 250,1294061348 +246955,4262,violent,1294061355 +246955,5110,overrated,1292796474 +246955,5299,crude humor,1295812477 +246955,5299,girlie movie,1295812483 +246955,5299,RomCom,1295812491 +246955,5952,fantasy,1288213958 +246955,5952,Oscar (Best Effects - Visual Effects),1288213967 +246955,5952,Peter Jackson,1288213953 +246955,6159,boring,1288739325 +246955,6214,brutal,1289316974 +246955,6214,controversial,1289317009 +246955,6214,hard to watch,1289316989 +246955,6281,Colin Farrell,1289317099 +246955,6281,interesting,1289317110 +246955,6286,atmospheric,1288264043 +246955,6440,Coen Brothers,1291595620 +246955,6440,Enigmatic,1291595625 +246955,6440,hallucinatory,1291595640 +246955,6440,Michael Lerner,1291595858 +246955,6440,stylized,1291595633 +246955,6711,atmospheric,1288213926 +246955,6711,Bill Murray,1288213921 +246955,6869,Fantastic Foreign Films,1294612734 +246955,6957,black comedy,1288214257 +246955,6957,surprisingly funny,1288214260 +246955,7143,A Good Tom Cruise Movie,1293064773 +246955,7143,intense,1293064782 +246955,7151,Art,1288214054 +246955,7151,scarlett johansson,1288214048 +246955,7151,visually appealing,1288214058 +246955,7158,heartbreaking,1290682748 +246955,7158,intense,1290682753 +246955,7158,sad but good,1290682756 +246955,7349,sensitive,1297982439 +246955,7360,Zack Snyder,1288214142 +246955,7371,artsy,1288655381 +246955,7371,cult film,1288655377 +246955,7371,disturbing,1288655384 +246955,7371,Lars von Trier,1288655386 +246955,7371,Nicole Kidman,1288655389 +246955,7371,philosophical,1288655391 +246955,8641,Funniest Movies,1288214357 +246955,8641,hilarious,1288214364 +246955,8641,Will Ferrell,1288214353 +246955,8917,hilarious,1291976020 +246955,8949,Paul Giamatti,1288211966 +246955,8970,Johnny Depp,1288214068 +246955,8983,Beautiful,1298886493 +246955,8983,stylized,1298886504 +246955,27478,Sacha Baron Cohen,1288214375 +246955,30707,Clint Eastwood,1288213872 +246955,30749,based on a true story,1292253851 +246955,30749,imdb top 250,1292253861 +246955,30749,true story,1292253864 +246955,30793,Johnny Depp,1288214185 +246955,30793,Tim Burton,1288214183 +246955,31658,soundtrack,1290382478 +246955,32587,atmospheric,1288211955 +246955,32587,Quentin Tarantino,1288211942 +246955,32587,visually appealing,1288211952 +246955,34323,Rob Zombie,1288214100 +246955,34338,Chris Rock,1297072926 +246955,34338,George Carlin,1297072923 +246955,37736,adapted from:book,1299013717 +246955,37736,based on a book,1299013707 +246955,37736,Ben Kingsley,1299013710 +246955,37736,Roman Polanski,1299013713 +246955,38886,Noah Baumbach,1288211926 +246955,43396,Anthony Hopkins,1288211816 +246955,43396,emotional,1288211830 +246955,44709,feel-good,1288214394 +246955,47099,Will Smith,1288212024 +246955,47465,Jodelle Ferland,1294481317 +246955,47465,Terry Gilliam,1294481285 +246955,48304,atmospheric,1288214321 +246955,48304,gore,1288214316 +246955,48304,Mel Gibson,1288214308 +246955,48304,tense,1288214324 +246955,48385,Sacha Baron Cohen,1288214222 +246955,48394,Guillermo del Toro,1288212316 +246955,48394,surreal,1288212368 +246955,49396,not funny,1296466589 +246955,49396,not very funny,1296466593 +246955,49824,Potential Oscar Nom,1290614682 +246955,49824,rhythm & blues,1290614686 +246955,51662,atmospheric,1288214406 +246955,51662,stylized,1288214408 +246955,51662,Zack Snyder,1288214419 +246955,51931,adam sandler,1288212012 +246955,52281,Gore,1288214035 +246955,52281,Quentin Tarantino,1288214033 +246955,52722,big budget,1289856633 +246955,53000,movie to see,1291381124 +246955,55269,dark comedy,1288214159 +246955,55269,Wes Anderson,1288214153 +246955,55908,academia,1291250882 +246955,55908,educational,1291250886 +246955,55908,intellectual,1291250891 +246955,55908,intelligent,1291250894 +246955,55908,philosophical,1291250896 +246955,55908,thought-provoking,1291250898 +246955,55908,unique,1291250901 +246955,56145,gory,1288213859 +246955,56174,Will Smith,1288214012 +246955,56339,Guillermo del Toro,1288221465 +246955,56607,beautiful story,1288263997 +246955,57669,dark comedy,1288263889 +246955,57669,imdb top 250,1288263879 +246955,59900,Adam Sandler,1288211697 +246955,59900,exaggerated,1288211691 +246955,59995,moving,1288219064 +246955,60756,will ferrell,1288211891 +246955,61323,Brad Pitt,1288214197 +246955,61323,Coen Brothers,1288214199 +246955,61323,dark comedy,1288214201 +246955,61323,George Clooney,1288214203 +246955,61323,John Malkovich,1288214207 +246955,61323,satire,1288214205 +246955,64716,Will Smith,1288211979 +246955,64839,Darren Aronofsky,1288211751 +246955,64839,Mickey Rourke,1288211788 +246955,64839,touching,1288211756 +246955,65230,dogs,1288214508 +246955,65230,Jennifer Aniston,1288213895 +246955,65230,sad but good,1288213905 +246955,66371,japan,1339674525 +246955,67255,based on a book,1339674102 +246955,67255,cinematography,1339674099 +246955,67665,fascinating,1339673948 +246955,67665,moving,1339673953 +246955,67997,boring,1290078239 +246955,67997,overrated,1290078230 +246955,68157,black comedy,1288263953 +246955,68157,Brad Pitt,1288263919 +246955,68157,great soundtrack,1288263945 +246955,68157,IMDB Top 250,1288263943 +246955,68157,Quentin Tarantino,1288263921 +246955,68157,tense,1288263927 +246955,68157,visually appealing,1288263939 +246955,68522,beautiful scenery,1290210674 +246955,68522,camerawork,1290210678 +246955,68522,scenic,1290210685 +246955,68954,Pixar,1339676060 +246955,70159,better than i thought it'd be,1291381162 +246955,70159,story,1291381168 +246955,70293,Meryl Streep,1288213982 +246955,71464,coen brothers,1288211996 +246955,71899,black comedy,1339674467 +246955,71899,dark comedy,1339674471 +246955,71899,Philip Seymour Hoffman,1339674473 +246955,71899,philosophical,1339674477 +246955,71899,touching,1339674480 +246955,72011,George Clooney,1339674922 +246955,72226,Wes Anderson,1288214081 +246955,72554,Spain,1339676288 +246955,72998,beautiful cinematography,1288214293 +246955,72998,futuristic,1288214286 +246955,72998,imdb top 250,1288214289 +246955,72998,James Cameron,1288214282 +246955,73211,boring,1294256109 +246955,73211,character driven,1294256136 +246955,73211,disappointing,1294256113 +246955,73211,innovative,1294256118 +246955,73266,Michael Cera,1288689958 +246955,73290,dogs,1288214022 +246955,73808,Korean,1294916678 +246955,73881,India,1339675637 +246955,76077,few funny scenes,1290118591 +246955,76077,few nice laughs,1290118594 +246955,76091,stylized,1291682072 +246955,76093,Excellent Animation,1291596112 +246955,76093,predictable,1291596098 +246955,77561,Robert Downey Jr.,1288628994 +246955,77561,Samuel L. Jackson,1288628981 +246955,77561,superhero,1288628983 +246955,77561,watch the credits,1288628986 +246955,78209,great lines,1288628876 +246955,78209,Jonah Hill,1288628940 +246955,78209,music business,1288628881 +246955,78209,Russell Brand,1288628886 +246955,78574,adapted from:book,1339673776 +246955,78574,cinematography,1339673782 +246955,78574,Oscar Nominee: Adapted Screenplay,1339673787 +246955,78574,Oscar Nominee: Lead Actress,1339673791 +246955,78574,Oscar Nominee: Supporting Actor,1339673794 +246955,78574,realism,1339673799 +246955,79057,childish plot,1288862424 +246955,79132,great soundtrack,1339675743 +246955,79132,Leonardo DiCaprio,1339675727 +246955,79132,music,1339675740 +246955,79132,philosophy,1339675749 +246955,79132,surreal,1339675731 +246955,79132,visually appealing,1339675730 +246955,79357,cinematography,1339675235 +246955,79357,Jaco Van Dormael,1339675296 +246955,79357,surreal,1339675250 +246955,79357,thought provoking,1339675253 +246955,79702,Michael Cera,1297589803 +246955,79702,stylized,1297589806 +246955,79702,visually appealing,1297589809 +246955,80219,action packed,1290867064 +246955,80219,action right from the start to the very end,1290867060 +246955,80219,gore,1290867071 +246955,80219,Not very strong ending,1290867076 +246955,80219,Robert Rodriguez,1290867089 +246955,80489,boring,1339673657 +246955,80906,Charles Ferguson,1339674744 +246955,80906,truth,1339674740 +246955,81591,atmospheric,1339675054 +246955,81591,Darren Aronofsky,1339675042 +246955,81591,Oscar (Best Actress),1339675058 +246955,81591,stylized,1339675066 +246955,81591,surreal,1339675068 +246955,81834,dark fantasy,1339676235 +246955,81834,Harry Potter,1339676241 +246955,81847,Disney,1339674584 +246955,81847,fairy tale,1339674591 +246955,81847,visually appealing,1339674588 +246955,81932,Mark Wahlberg,1339674056 +246955,81932,true story,1339674059 +246955,82459,atmospheric,1339675785 +246955,82459,based on a book,1339675790 +246955,82459,cinematography,1339675782 +246955,82459,Coen Brothers,1339675776 +246955,85774,true story,1339674398 +246955,86345,Louis C.K.,1339674723 +246955,86345,stand-up comedy,1339674721 +246955,88129,atmospheric,1339673999 +246955,88129,cinematography,1339674001 +246955,88129,great soundtrack,1339674004 +246955,88129,ryan gosling,1339674008 +246955,88129,tense,1339674012 +246955,88129,visually appealing,1339674010 +246955,88810,based on a book,1339675602 +246955,88810,great acting,1339675588 +246955,88810,Tearjerker,1339675596 +246955,89492,based on a book,1339673871 +246955,89492,based on a true story,1339673868 +246955,89492,Brad Pitt,1339673865 +246955,89492,great acting,1339673878 +246955,89492,intelligent,1339673881 +246955,89492,must see,1339673885 +246955,89492,Philip Seymour Hoffman,1339673890 +246955,89492,Realistic,1339673888 +246955,89492,true story,1339673893 +246955,89774,touching,1339675515 +246955,89864,Joseph Gordon-Levitt,1339675683 +246955,89864,Seth Rogen,1339675681 +246955,93840,Drew Goddard,1339676134 +246955,93840,excellent cinematography,1339676106 +246955,93840,gore,1339676099 +246956,7439,senseless violence,1290454587 +246963,106782,drugs,1419550929 +247006,260,cult classic,1430831805 +247006,260,Science Fiction,1430831790 +247024,1265,Classic,1425497644 +247024,1265,comedy,1425497679 +247024,1265,deja vu,1425497671 +247024,1265,funny,1425497630 +247024,1265,time loop,1425497623 +247024,1947,musical,1425497834 +247024,1947,romeo and juliet,1425497825 +247024,3831,marijuana,1445547892 +247024,4226,nonlinear,1422380300 +247024,4226,twist ending,1422380293 +247024,4973,Audrey Tautou,1422803454 +247024,4973,beautifully filmed,1422803435 +247024,4973,fairy tale,1422803439 +247024,4973,feel-good,1422803433 +247024,4973,music,1422803463 +247024,54967,audrey tautou,1425497301 +247024,54967,french,1425497301 +247024,54967,romantic,1425497301 +247024,56367,Ellen Page,1427067060 +247024,56367,great soundtrack,1427067096 +247024,56367,high school,1427067070 +247024,56367,independent film,1427067076 +247024,56367,notable soundtrack,1427067091 +247024,56367,pregnancy,1427067067 +247024,56367,quirky,1427067081 +247024,60397,Meryl Streep,1432925476 +247024,60397,music:ABBA,1432925483 +247024,60397,Musical,1432925480 +247024,95167,Bechdel Test:Pass,1441782321 +247024,95167,mother-daughter relationships,1441782346 +247024,95167,No Marriage at the End,1441782329 +247024,96588,acapella,1432925435 +247024,96588,Anna Kendrick,1432925420 +247024,96588,music,1432925416 +247024,109157,friends,1425497571 +247024,109157,new year's eve,1425497562 +247024,109157,suicide,1425497564 +247024,118696,battles,1422382540 +247024,118696,bilbo,1422382540 +247024,118696,elves,1422382540 +247024,118696,hobbits,1422382540 +247024,118696,middle earth,1422382540 +247024,127202,Alfonso Gomez-Rejon,1448129768 +247024,127202,terminal illness,1448129734 +247024,144960,erich kästner,1445547579 +247024,144960,funny,1445547569 +247024,144960,kids,1445547558 +247024,147410,balkan,1448129543 +247024,147410,informative,1448129676 +247024,147410,multiple languages,1448129669 +247024,147410,realistic,1448129688 +247024,147410,true,1448129678 +247040,1196,action,1444598910 +247040,1196,sci-fi,1444598904 +247040,1196,Star Wars,1444598944 +247040,68954,cartoon,1444599068 +247040,68954,computer animation,1444599045 +247040,68954,dreams,1444599048 +247040,68954,emotional,1444599066 +247040,68954,friendship,1444599080 +247040,68954,talking animals,1444599041 +247046,1298,drama,1188177633 +247046,2116,fantasy,1188177725 +247046,2840,thriller,1188177750 +247046,2841,thriller,1188177763 +247046,8644,sci-fi,1188177658 +247050,260,classic,1443898650 +247050,260,Cult,1443898660 +247067,93840,clever,1446813804 +247067,93840,dark comedy,1446813812 +247067,93840,original plot,1446813832 +247067,93840,plot twist,1446813815 +247073,78022,master cheif,1430699392 +247073,78022,scifi,1430699392 +247073,78022,videogame,1430699392 +247079,3176,creepy singing,1187286110 +247079,3617,comedy,1186876646 +247079,3826,B-movie,1186876628 +247079,3826,Horror,1186876628 +247079,3967,drama,1186876593 +247079,3967,musical,1186876593 +247079,4975,sci-fi,1186876648 +247079,8622,documentary,1186876608 +247079,8622,documentary critique,1186876608 +247081,7090,extremely interesting. Like an ancient tragedy.,1141012111 +247081,7090,propaganda in disguise,1141012097 +247116,260,adventure,1426208889 +247116,260,classic,1426208889 +247116,260,sci-fi,1426208889 +247116,1500,assassin,1426210442 +247116,1500,funny,1426208952 +247116,1500,hit men,1426210447 +247116,1500,man of mystery,1426208964 +247116,1500,rekindled love,1426209005 +247116,5418,mystery,1387259206 +247138,858,classic,1448216278 +247138,6377,myfav,1448216369 +247192,3556,high school,1211259363 +247196,260,George Lucas,1304629126 +247196,260,Harrison Ford,1304629121 +247196,260,Oscar (Best Effects - Visual Effects),1304629134 +247196,260,robots,1304629130 +247196,260,sci-fi,1304629143 +247196,260,space,1304629146 +247196,541,imdb top 250,1304628951 +247196,541,robots,1304628937 +247196,541,sci-fi,1304628934 +247196,924,artificial intelligence,1304629022 +247196,924,Oscar (Best Effects - Visual Effects),1304629054 +247196,924,robots,1304629037 +247196,924,sci-fi,1304629017 +247196,924,space,1304629027 +247196,1036,action,1304629703 +247196,1036,Bruce Willis,1304629700 +247196,1036,claustrophobic,1304629726 +247196,1036,tense,1304629716 +247196,1198,action,1304629556 +247196,1198,adventure,1304629554 +247196,1198,archaeology,1304629612 +247196,1198,comedy,1304629568 +247196,1198,Harrison Ford,1304629559 +247196,1198,indiana jones,1304629562 +247196,1198,Nazis,1304629595 +247196,1198,Saturn Award (Best Actor),1304629574 +247196,1198,Steven Spielberg,1304629585 +247196,1198,World War II,1304629597 +247196,2000,action,1304629780 +247196,2000,Mel Gibson,1304629762 +247196,2000,Nudity (Topless),1304629771 +247196,2000,subgenre:cop buddies,1304629787 +247196,2273,Jackie Chan,1304629856 +247196,2502,off-beat comedy,1304628527 +247196,2571,alternate reality,1304628888 +247196,2571,computers,1304628895 +247196,2571,sci-fi,1304628881 +247196,2571,thought-provoking,1304628901 +247196,2628,George Lucas,1304629203 +247196,2628,robots,1304629214 +247196,2628,sci-fi,1304629211 +247196,2706,Nudity (Topless - Notable),1304629988 +247196,2706,sexuality,1304629996 +247196,2706,teen comedy,1304629984 +247196,2706,virginity,1304630004 +247196,2997,Cameron Diaz,1304628578 +247196,2997,Slow,1304628603 +247196,4226,nonlinear,1304628639 +247196,4226,twist ending,1304628651 +247196,4226,violence,1304628674 +247196,5378,George Lucas,1304629250 +247196,5378,sci-fi,1304629254 +247196,7153,fantasy,1304629462 +247196,7153,fantasy world,1304629467 +247196,7153,magic,1304629469 +247196,7317,comedy,1304630062 +247196,7317,laugh out loud any time movie,1304630056 +247196,7317,Nudity (Topless),1304630035 +247196,7317,road trip,1304630042 +247196,53972,bruce willis,1306748415 +247196,53972,comedy,1306748418 +247196,53972,good sequel,1306748424 +247196,53972,hackers,1306748421 +247196,68358,sci-fi,1304629309 +247196,68358,space,1304629311 +247196,68358,Star Trek,1304629301 +247196,68358,time travel,1304629305 +247196,70286,mockumentary,1304628780 +247196,70286,satire,1304628802 +247196,70286,swearing,1304628816 +247196,72998,beautiful scenery,1304629363 +247196,72998,imdb top 250,1304629422 +247196,72998,music,1304629383 +247196,72998,racism,1304629375 +247196,72998,romance,1304629366 +247196,72998,sci-fi,1304629369 +247196,79132,alternate reality,1304628722 +247196,79132,plot holes,1304628740 +247196,79132,sci-fi,1304628755 +247204,260,sci-fi,1430206219 +247204,1681,action,1430206428 +247204,2571,action,1430206239 +247204,6365,action,1430206257 +247204,6934,action,1430206283 +247204,8644,"science, action",1430206302 +247204,50003,action,1430206455 +247204,68791,sci-fi,1430206321 +247204,96691,pointless,1430206407 +247230,356,bittersweet,1400463704 +247230,356,Oscar (Best Actor),1400463708 +247230,356,psychology,1400463689 +247230,356,romance,1400463699 +247230,356,Tom Hanks,1400463710 +247230,356,vietnam war,1400463696 +247230,4975,existentialism,1378323769 +247230,4975,future,1378323772 +247230,4975,Nudity (Topless),1378323767 +247230,4975,psychology,1378323764 +247230,4975,sci-fi,1378323782 +247230,4975,surreal,1378323765 +247230,4975,virtual reality,1378323780 +247230,4995,based on a book,1380742865 +247230,4995,mathematics,1380742860 +247230,4995,Oscar (Best Directing),1380742859 +247230,4995,psychology,1380742851 +247230,4995,Russell Crowe,1380742856 +247230,4995,true story,1380742853 +247230,4995,twist ending,1380742868 +247230,63082,nonlinear,1380742966 +247230,64957,bittersweet,1380743040 +247230,64957,Brad Pitt,1380743036 +247230,64957,drama,1380743052 +247230,64957,emotional,1380743042 +247230,64957,Oscar (Best Effects - Visual Effects),1380743043 +247230,64957,philosophical,1380743048 +247230,79132,imdb top 250,1378323697 +247230,79132,psychological,1378323699 +247230,79132,suspense,1378322044 +247230,79132,thought-provoking,1378322042 +247230,79132,twist ending,1378322046 +247230,79132,visually appealing,1378323683 +247244,413,dan akroyd,1186175801 +247244,1298,psychodellic,1186175813 +247244,1441,Johnny Depp,1186175792 +247244,1747,corruption,1186175869 +247244,1747,politics,1186175869 +247244,2105,computer game,1186175736 +247244,2105,computers,1186175736 +247244,2105,technology,1186175736 +247244,3755,Sailing,1186175718 +247244,4246,chick flick,1186175853 +247244,4246,Renee Zelweger,1186175853 +247244,6373,God,1186175780 +247244,6373,Jim Carrey,1186175780 +247244,6373,Morgan Freeman,1186175780 +247244,7147,coming of age,1186175655 +247244,7147,tall tales,1186175655 +247289,5617,BDSM,1281577864 +247289,5617,black comedy,1281577866 +247289,5617,erotic,1281577869 +247289,7020,Hugo Weaving,1251687412 +247289,7364,Ireland,1251428622 +247289,7364,Kelly Macdonald,1251428596 +247289,8981,based on a play,1281577749 +247289,8981,Clive Owen,1281577752 +247289,8981,Dark,1281577758 +247289,8981,Jude Law,1281577765 +247289,8981,Julia Roberts,1281577770 +247289,8981,Natalie Portman,1281577768 +247289,8981,unrealistic,1281577781 +247289,27831,Exquisite plotting.,1279028585 +247289,36537,Keanu Reeves,1277091366 +247289,36537,Vincent D'Onofrio,1277091396 +247289,54780,Scarlett Johansson,1243909934 +247289,55269,India,1251687363 +247289,55269,Owen Wilson,1251687349 +247289,56782,amazing acting!,1251340494 +247289,56782,Daniel Day-Lewis,1251340513 +247289,56782,greed,1251340523 +247289,56782,religion,1251340546 +247289,57669,dark comedy,1250998076 +247289,57669,drugs,1250998086 +247289,57669,irish accent,1250998104 +247289,57669,violent,1250998092 +247289,60126,Anne Hathaway,1243910017 +247289,60126,car chase,1243910022 +247289,62137,contrived,1274752956 +247289,62137,Richard Gere,1274752933 +247289,64620,Frank Langella,1272333202 +247289,66203,chick flick,1275445449 +247289,68159,Helen Mirren,1278032252 +247289,68159,Jason Bateman,1278032249 +247289,68159,lame ending,1278032276 +247289,68159,political corruption,1278032268 +247289,68159,protagonist is journalist,1278032262 +247289,68159,Rachel McAdams,1278032256 +247289,68159,Russell Crowe,1278032254 +247289,68932,Catherine Keener,1268081805 +247289,68932,Jamie Foxx,1268081859 +247289,69122,disappointing,1274753019 +247289,69122,Heather Graham,1274753027 +247289,72998,racism,1342584778 +247289,72998,violent,1342584785 +247289,73319,Amy Adams,1299004141 +247289,76293,Tina Fey,1330029523 +247289,77866,Cate Blanchett,1330716449 +247289,77866,ready for sequel,1330716492 +247289,77866,Rewrite history,1330716501 +247289,77866,unhistorical,1330716452 +247289,80126,George Clooney,1332208539 +247289,80126,Italy,1332208519 +247289,80126,landscape,1332208522 +247289,80126,loneliness,1332208527 +247289,80126,Nudity (Full Frontal),1332208534 +247289,80126,suspense,1332208531 +247289,81591,Natalie Portman,1330029034 +247289,84615,John C. Reilly,1333247904 +247293,118900,outdoors,1427755469 +247293,118900,self exploration,1427755469 +247293,118900,strong female lead,1427755469 +247300,364,filme da minha vida,1452721697 +247307,34,talking animals,1265479975 +247307,110,medieval,1390701327 +247307,110,sword fight,1390701338 +247307,172,cyberpunk,1388717449 +247307,172,dystopia,1388717456 +247307,172,future,1388717461 +247307,172,futuristic,1388717451 +247307,172,Henry Rollins,1388717453 +247307,173,dystopia,1388717076 +247307,173,future,1388717080 +247307,173,futuristic,1388717072 +247307,208,post-apocalyptic,1265480017 +247307,208,steampunk,1265480023 +247307,780,alien invasion,1265480358 +247307,1917,apocalypse,1388717385 +247307,1917,Billy Bob Thornton,1388717380 +247307,1917,Bruce Willis,1388717382 +247307,1917,end of the world,1388717390 +247307,1968,coming of age,1265480597 +247307,2329,disturbing,1388812327 +247307,2329,Edward Norton,1388812317 +247307,2329,justice,1388814758 +247307,2329,powerful ending,1388812331 +247307,2329,social commentary,1388812322 +247307,2571,post-apocalyptic,1265480131 +247307,2701,steampunk,1388717425 +247307,2701,Will Smith,1388717410 +247307,2959,Brad Pitt,1388813876 +247307,2959,dark comedy,1388813862 +247307,2959,Edward Norton,1388813878 +247307,2959,justice,1388814788 +247307,2959,philosophical,1388813884 +247307,2959,philosophy,1388813871 +247307,2959,satirical,1388813869 +247307,2959,social commentary,1388813867 +247307,2959,twist ending,1388813864 +247307,3275,crime,1388811337 +247307,3275,dark humor,1388811332 +247307,3275,Irish,1388811334 +247307,3275,justice,1388814712 +247307,3275,mordern day robin hood,1265480662 +247307,3275,organized crime,1388811343 +247307,3275,underdog,1265480662 +247307,3275,vigilantism,1388811329 +247307,3452,Jet Li,1388716920 +247307,3826,invisibility,1388717331 +247307,3826,Kevin Bacon,1388717329 +247307,3994,Bruce Willis,1388718588 +247307,3994,Samuel L. Jackson,1388718591 +247307,3994,super-hero,1388718654 +247307,3994,superhero,1388718593 +247307,3994,unique,1388718597 +247307,4887,alternate reality,1388716565 +247307,4887,alternate universe,1388716569 +247307,4887,Jet Li,1388716578 +247307,4887,martial arts,1388716580 +247307,4973,great cinematography,1409448686 +247307,4973,heartwarming,1409448684 +247307,4973,idealism,1409448665 +247307,4973,inspirational,1409448669 +247307,4973,quirky romantic,1409448674 +247307,4973,stylized,1409448676 +247307,4973,surreal,1409448680 +247307,4973,whimsical,1409448678 +247307,4993,brotherhood,1388982583 +247307,4993,comraderie,1388982583 +247307,4993,fraternity,1388982583 +247307,4993,friendship,1388982583 +247307,5108,Denzel Washington,1388814621 +247307,5108,justice,1388814674 +247307,5108,preachy,1388814614 +247307,5108,public healthcare,1388814615 +247307,5108,social commentary,1388814635 +247307,5108,vigilante,1388814650 +247307,5313,action,1388716907 +247307,5313,Kelly Hu,1388716898 +247307,5574,action,1388717222 +247307,5574,Jason Statham,1388717225 +247307,5952,brotherhood,1388982608 +247307,5952,comraderie,1388982607 +247307,5952,fraternity,1388982608 +247307,5952,friendship,1388982608 +247307,5956,Daniel Day-Lewis,1388814385 +247307,5956,gangs,1388814423 +247307,5956,justice,1388814794 +247307,5956,Leonardo DiCaprio,1388814383 +247307,5956,New York City,1388814393 +247307,6365,cyberpunk,1265480152 +247307,6365,post-apocalyptic,1265480147 +247307,6541,Sean Connery,1388718562 +247307,6541,steampunk,1388718559 +247307,6541,superhero,1388718565 +247307,6790,video games,1400390760 +247307,6934,post-apocalyptic,1265480140 +247307,6936,Believe,1265480568 +247307,6936,Christmas,1265480539 +247307,7153,brotherhood,1388982616 +247307,7153,comraderie,1388982615 +247307,7153,fraternity,1388982616 +247307,7153,friendship,1388982616 +247307,7445,action,1388811973 +247307,7445,Christopher Walken,1388811970 +247307,7445,Denzel Washington,1388811967 +247307,7445,ending,1388812015 +247307,7445,friendship,1388812017 +247307,7445,great cinematography,1388812005 +247307,7445,justice,1388814749 +247307,7445,redemption,1388811981 +247307,7445,revenge,1388811983 +247307,7445,twists & turns,1388811986 +247307,7445,vengeance,1388811989 +247307,8644,artificial intelligence,1265480394 +247307,8644,robots,1265480363 +247307,8874,zombies,1265480114 +247307,8950,bleak,1393809032 +247307,8950,creepy,1393809024 +247307,8950,dark,1393809022 +247307,8950,disturbing,1393809029 +247307,8950,schizophrenia,1393809034 +247307,8950,twist ending,1393809040 +247307,27592,Du-na Bae,1388719178 +247307,27592,psychological,1388719230 +247307,27592,psychology,1388719230 +247307,27592,Revenge Trilogy,1388719150 +247307,27788,complex,1394853875 +247307,27788,makes you think,1394853966 +247307,27788,time travel,1394853878 +247307,27867,drug use,1388821666 +247307,27867,drugs,1388821666 +247307,27867,football,1388821466 +247307,27867,gang fighting,1388821622 +247307,27867,gangs,1388821624 +247307,27867,hooligans,1388821464 +247307,27867,middle aged,1388821666 +247307,34319,dystopia,1265480338 +247307,34319,genetics,1265480319 +247307,34534,brotherhood,1388982625 +247307,34534,brothers,1388811471 +247307,34534,comraderie,1388982625 +247307,34534,family,1265480516 +247307,34534,fraternity,1388982625 +247307,34534,friendship,1388982625 +247307,34534,justice,1388814727 +247307,34534,revenge,1388811466 +247307,34534,revenge by family,1265480516 +247307,34534,siblings,1388811468 +247307,36519,Good action,1388719055 +247307,36519,Jason Statham,1388719052 +247307,36519,Kate Nauta,1388719112 +247307,36527,mathematics,1393809100 +247307,36527,mental illness,1393809128 +247307,37731,brotherhood,1388982567 +247307,37731,charlie hunnam,1388811831 +247307,37731,comraderie,1388982567 +247307,37731,Elijah Wood,1388811825 +247307,37731,football,1388811829 +247307,37731,fraternity,1388982567 +247307,37731,friendship,1388982567 +247307,37731,gang brawls,1388811822 +247307,37731,justice,1388814734 +247307,43928,dystopia,1388716979 +247307,43928,Milla Jovovich,1388716988 +247307,43928,sci-fi,1388716981 +247307,44191,dystopia,1265480073 +247307,44191,England,1246732816 +247307,44191,vigilantism,1246732816 +247307,49278,Denzel Washington,1246731503 +247307,49530,atrocity,1388812550 +247307,49530,corruption,1388812394 +247307,49530,FATHERS AND SONS,1388812433 +247307,49530,justice,1388814765 +247307,49530,politics,1388812375 +247307,49530,rebels,1388812481 +247307,49530,slavery,1388812360 +247307,52328,cinematography,1388935912 +247307,52328,danny boyle,1388935823 +247307,52328,dark,1388935907 +247307,52328,physics,1388935919 +247307,52328,psychological,1388935873 +247307,52328,psychology,1388935875 +247307,52328,space,1388935860 +247307,53318,fantasy,1388978830 +247307,53318,imagination,1388978828 +247307,53318,insomnia,1388978823 +247307,53318,Nudity (Full Frontal),1388978875 +247307,53318,surreal,1388978818 +247307,53318,surrealism,1388978813 +247307,53318,time manipulation,1388978961 +247307,53318,time travel,1388978740 +247307,53996,robots,1265480091 +247307,55999,drama,1384139144 +247307,58025,Hayden Christensen,1388717097 +247307,58025,Samuel L. Jackson,1388717095 +247307,58025,teleportation,1388717113 +247307,59315,Marvel,1265480347 +247307,59784,inner worth,1265480300 +247307,59784,underdog,1265480300 +247307,60074,Jason Bateman,1388814577 +247307,60074,justice,1388814801 +247307,60074,super hero,1388814549 +247307,60074,superhero,1388814547 +247307,60074,Will Smith,1388814556 +247307,62081,artificial intelligence,1388813394 +247307,62081,big brother,1388813476 +247307,62081,bloodthirsty US president,1388813470 +247307,62081,cyberterrorism,1388813450 +247307,62081,justice,1388814780 +247307,62081,Michelle Monaghan,1388813406 +247307,62081,shake-cam,1388813501 +247307,62081,Shia LaBeouf,1388813388 +247307,62081,wrongly accused,1388813537 +247307,64993,bittersweet,1391908680 +247307,64993,loneliness,1391908719 +247307,64993,melancholic,1391908722 +247307,64993,Tragedy,1391908717 +247307,65088,Imagination,1246731329 +247307,65088,Romantic Comedy,1246731329 +247307,66097,creepy,1265480763 +247307,66097,dark,1265480773 +247307,66097,fairy tale,1265480797 +247307,66097,Surreal,1265480578 +247307,67295,inner worth,1265480256 +247307,67295,underdog,1265480256 +247307,68791,False advertising,1246731803 +247307,68791,fighting,1246731804 +247307,68791,FIGHTING THE SYSTEM,1246731804 +247307,68791,futuristic,1246731803 +247307,68791,ROBOTS AND ANDROIDS,1246731804 +247307,71057,dystopia,1265480693 +247307,71057,post-apocalyptic,1265480669 +247307,71057,robots,1265480675 +247307,72378,apocalypse,1388717248 +247307,72378,future,1388717256 +247307,72378,Woody Harrelson,1388717260 +247307,79132,action,1388811911 +247307,79132,complicated,1388811910 +247307,79132,fantasy,1388811906 +247307,79132,justice,1388814741 +247307,79132,plot twist,1388811898 +247307,79132,twist ending,1388811895 +247307,80969,Carey Mulligan,1400374072 +247307,80969,cynical,1400374080 +247307,80969,dystopia,1400374058 +247307,80969,great acting,1400374060 +247307,80969,love triangles,1400374063 +247307,80969,somber,1400374102 +247307,80969,thought-provoking,1400374082 +247307,85056,bland hero,1388718786 +247307,85056,childish plot,1388718773 +247307,85056,cliche,1388718781 +247307,85056,plot,1388718777 +247307,85056,plot holes,1388718779 +247307,85510,audience intelligence underestimated,1388718839 +247307,85510,ending,1388718894 +247307,85510,predictable,1388719007 +247307,85510,predictable ending,1388719007 +247307,85510,thin story,1388718863 +247307,91529,based on a comic,1388812614 +247307,91529,dark hero,1388812626 +247307,91529,dystopia,1388812597 +247307,91529,justice,1388814771 +247307,91529,political commentary,1388812610 +247307,93838,awesome martial arts,1388812263 +247307,93838,intense,1388812266 +247307,96432,brotherhood,1388982636 +247307,96432,comraderie,1388982636 +247307,96432,fraternity,1388982636 +247307,96432,friendship,1388982636 +247307,96811,comraderie,1388982466 +247307,96811,fraternity,1388982422 +247307,96811,friendship,1388982404 +247307,96811,police,1388982430 +247307,103253,remake: Johnny Mnemonic,1388717863 +247307,105844,based on a book,1396735855 +247307,105844,based on a true story,1396735847 +247307,105844,Brad Pitt,1396735865 +247307,105844,cinematography,1396735872 +247307,105844,drama,1396735895 +247307,105844,Graphic Violence,1396735887 +247307,105844,Michael Fassbender,1396735898 +247307,105844,performances,1396735940 +247307,105844,slavery,1396735907 +247307,105844,Steve McQueen,1396735919 +247307,107141,character development,1391908523 +247307,107141,historical,1391908553 +247307,108932,anti-conformity,1392686877 +247307,108932,character development,1392686544 +247307,108932,childhood,1392686928 +247307,108932,conformity,1392686720 +247307,108932,dictatorship,1392686822 +247307,108932,humanism,1392686709 +247307,108932,humanistic,1392686709 +247307,108932,imagination,1392686544 +247307,108932,live-action scenes,1392686986 +247307,108932,rebellion,1392686691 +247307,108932,stop motion,1392686543 +247337,357,British,1415471540 +247337,3156,exploration of humanity,1416226761 +247337,3156,philosophical,1415470837 +247337,3160,multiple storylines,1415473438 +247337,4367,Angelina Jolie,1415471567 +247337,4367,video game adaptation,1415471572 +247337,4874,intellectual,1415472382 +247337,4874,philosophical,1415472384 +247337,6711,bittersweet,1415460950 +247337,7254,alternate reality,1415469586 +247337,7254,thought-provoking,1415471795 +247337,7317,road trip,1415904092 +247337,8529,original plot,1415564666 +247337,8529,tom hanks,1415564663 +247337,44195,social commentary,1415471410 +247337,44295,Billy Connolly,1415471743 +247337,44295,philosophical,1415471685 +247337,47640,beer,1416420311 +247337,49278,paradox,1415471832 +247337,55908,dialogue driven,1416227587 +247337,55908,philosophical,1415469481 +247337,55908,thought-provoking,1415469483 +247337,55908,"time, beliefe, perception, limit of human mind",1416227575 +247337,71106,Chris O'Dowd,1415471942 +247337,71106,pub,1415471900 +247337,84152,human potential,1415472235 +247337,84152,thought provoking,1415472227 +247337,84152,visually appealing,1415472224 +247337,86882,thought-provoking,1415469530 +247337,110730,poorly thought out ending,1415471169 +247337,112940,super dry,1416139247 +247354,858,classic,1429341248 +247354,858,intelligent,1429341248 +247354,858,mafia,1429341248 +247361,63082,based on a book,1244420056 +247361,64957,Brad Pitt,1244420096 +247361,64957,cinematography,1244420097 +247361,64957,touching,1244420107 +247361,68358,alternate reality,1244419951 +247361,68358,Anton Yelchin,1244419935 +247361,68358,Simon Pegg,1244419942 +247361,68358,Unsteady-cam,1244419915 +247361,68791,Anton Yelchin,1244419993 +247361,68791,arnold cgi,1244419999 +247361,68791,Christian Bale,1244420011 +247364,296,cult film,1448237849 +247364,296,nonlinear,1448237844 +247364,296,Quentin Tarantino,1448237842 +247364,296,quirky,1448237855 +247364,296,Samuel L. Jackson,1448237847 +247364,7438,Quentin Tarantino,1448237817 +247364,7438,stylized,1448237821 +247364,7438,violent,1448237831 +247364,7438,visually appealing,1448237827 +247385,110,medieval,1196230690 +247385,111,atmospheric,1198667550 +247385,111,Classic,1198667291 +247385,111,forceful,1198667389 +247385,111,psychopath,1198667234 +247385,111,slow,1198667540 +247385,231,stupid,1206465538 +247385,457,chase,1196230568 +247385,480,Dinosaur,1196230497 +247385,480,nostalgia,1196230518 +247385,480,read the book,1196230253 +247385,541,sci fi,1196230707 +247385,590,indians,1196230656 +247385,1217,Akira Kurosawa,1196235642 +247385,1217,atmospheric,1196235652 +247385,1217,beautiful,1196235633 +247385,1217,classic,1196230359 +247385,1217,forceful,1196235626 +247385,1217,Japan,1196235630 +247385,1217,Kurosawa,1196230363 +247385,1217,melancholy,1196235635 +247385,1217,samurai,1196235620 +247385,1287,rome,1196236191 +247385,1544,dinosaurs,1196230493 +247385,1544,read the book,1196230262 +247385,1544,seen more than once,1196230485 +247385,1544,Steven Spielberg,1196230478 +247385,1580,conspiracy,1196231098 +247385,1580,scifi,1196231098 +247385,1587,action,1210400453 +247385,1587,adventure,1210400478 +247385,1587,classic,1210400451 +247385,1587,fighting,1210400454 +247385,1722,james bond,1196233359 +247385,1722,spy,1196233364 +247385,1882,monster,1196230550 +247385,2019,Akira Kurosawa,1196235770 +247385,2019,atmospheric,1196235791 +247385,2019,classic,1196235734 +247385,2019,drama,1196230471 +247385,2019,Japan,1196235689 +247385,2019,Kurosawa,1196235713 +247385,2019,long,1196235679 +247385,2019,samurai,1196230465 +247385,2161,Children,1196230924 +247385,2161,Fantasy,1196230922 +247385,2167,vampire,1196233179 +247385,2167,vampires,1196233201 +247385,2633,mummy,1201455873 +247385,2699,spiders,1196232682 +247385,3000,fantasy,1196231189 +247385,3000,japan,1196231189 +247385,4226,nonlinear,1220769852 +247385,4226,psychology,1220769855 +247385,4226,twist ending,1220769857 +247385,4638,dinosaurs,1196230789 +247385,4993,fantasy,1196229873 +247385,4993,high fantasy,1196230402 +247385,4993,read the book,1196229873 +247385,4993,WIZARDS AND MAGICIANS,1196230415 +247385,5459,conspiracy,1196231114 +247385,5459,scifi,1196231114 +247385,5459,sequel,1196231114 +247385,5952,fantasy,1196229644 +247385,5952,high fantasy,1196230352 +247385,5952,read the book,1196229644 +247385,7373,adapted from:comic,1198947144 +247385,7373,comic book,1198947140 +247385,8132,Roman Empire,1196230561 +247385,39435,Zorro,1196230763 +247385,44191,action,1207464649 +247385,44191,anarchy,1207464547 +247385,44191,confrontational,1207464657 +247385,44191,Dark hero,1207464651 +247385,44191,dystopia,1207464654 +247385,44191,facism,1207464729 +247385,44191,future dystopia,1207464636 +247385,44191,idealism,1207464545 +247385,44191,moral ambiguity,1207464777 +247385,44191,point,1207464675 +247385,44191,propaganda,1207464543 +247385,44191,revenge,1207464782 +247385,44191,sci-fi,1207464640 +247385,55995,fantasy,1196230291 +247385,55995,inspiration,1196236151 +247385,55995,read the book,1196230291 +247385,58559,Batman,1217690071 +247385,58559,dark,1217690129 +247385,58559,gritty,1217690133 +247385,58559,superhero,1217690124 +247385,94864,aliens,1426356461 +247385,94864,atmospheric,1426356507 +247385,94864,exploration,1426356523 +247385,94864,sci-fi,1426356482 +247385,94864,scifi,1426356467 +247385,94864,sequel bait,1426356498 +247390,111,atmospheric,1372297770 +247390,111,cult film,1372297823 +247390,111,disturbing,1372297774 +247390,111,grim,1372297781 +247390,111,insanity,1372297830 +247390,1202,black comedy,1372297685 +247390,1202,bleak,1372297691 +247390,1202,cult film,1372297694 +247390,1202,quotable,1372297699 +247390,1202,talky,1372297705 +247390,71535,gore,1373651832 +247390,71535,guns,1373651835 +247390,71535,violence,1373651822 +247390,71535,zombies,1373651819 +247390,80219,gore,1373651932 +247390,80219,immigrants,1373651946 +247390,80219,Nudity (Full Frontal - Notable),1373651931 +247390,80219,Nudity (Topless),1373651928 +247390,80219,Robert De Niro,1373651935 +247390,80219,stylized,1373651939 +247390,83134,absurd,1373651768 +247390,83134,gore,1373651773 +247390,83134,multiple storylines,1373651782 +247390,83134,predictable,1373651760 +247402,6218,lesbian,1140206890 +247402,6683,lesbian,1140206960 +247424,167,Last Words connection,1140363310 +247424,232,Haunting endings,1140363134 +247424,428,Directorial Debut,1140358782 +247424,515,Great acting,1140363256 +247424,736,Popcorn,1138054104 +247424,1124,Favorite Scenes,1140363083 +247424,1352,Directorial Debut,1138054076 +247424,1500,John Cusack,1138054139 +247424,1875,Smart writing,1140363194 +247424,1954,Favorite Scenes,1140362297 +247424,2248,John Cusack,1138054210 +247424,2435,Great acting,1140363233 +247424,2481,Favorite Scenes,1140362986 +247424,2943,Favorite Scenes,1140363115 +247424,2959,Original,1138054270 +247424,2998,Haunting Endings,1140363164 +247424,3111,Favorite Scenes,1140362969 +247424,3451,Favorite Scenes,1140363012 +247424,3481,John Cusack,1138054175 +247424,3540,Last Words connection,1140363340 +247424,4226,Groundbreaking,1140363921 +247424,4292,Favorite Scenes,1140359352 +247424,4322,John Cusack,1140358453 +247424,4393,Favorite Scenes,1140910407 +247424,4851,Favorite scenes,1140363065 +247424,5467,Hell,1138054315 +247424,5467,no!,1138054315 +247424,5608,German,1138054067 +247424,6027,offbeat,1140358175 +247424,6027,River Phoenix,1140358158 +247424,6155,avi,1140357119 +247424,6534,Eric Bana,1140357167 +247424,6639,Audrey,1140359368 +247424,6971,Groundbreaking,1140360707 +247424,6993,Woody Allen,1140358804 +247424,7023,Haunting Ending,1140358312 +247424,7371,Groundbreaking,1140363954 +247424,7458,Eric Bana,1140357191 +247424,8033,Audrey,1140358558 +247424,8530,Gerry Butler,1169822908 +247424,26965,Daniel Day-Lewis,1140358284 +247424,34336,John Cusack,1138200779 +247428,260,sci-fi,1438958394 +247428,260,space adventure,1438958346 +247428,4370,depressing,1442265677 +247428,4370,ending kinda ruined it,1442265695 +247428,4370,too long,1442265686 +247428,31658,anime,1439020689 +247428,31658,dreamlike,1439020693 +247428,31658,fantasy,1439020697 +247428,31658,steampunk,1439020682 +247428,31658,Studio Ghibli,1439020687 +247428,31658,stylized,1439020699 +247428,31658,war,1439020707 +247428,71530,alternate reality,1442255958 +247428,71530,future,1442255971 +247428,71530,robots,1442255961 +247428,72998,beautiful scenery,1445174853 +247428,72998,environmental,1440788448 +247428,72998,futuristic,1440788451 +247428,72998,graphic design,1445174849 +247428,72998,sci-fi,1440788453 +247428,72998,visually stunning,1440788449 +247428,82461,atmospheric,1442091687 +247428,82461,futuristic,1442091673 +247428,82461,visually appealing,1442091689 +247428,83613,better than expected,1442390680 +247428,101864,atmospheric,1440868677 +247428,102125,action,1439020920 +247428,102125,robots,1439020893 +247428,102125,shallow plot,1439020903 +247428,110102,conspiracy,1439843234 +247428,115713,artificial intelligence,1440750181 +247428,115713,philosophical,1440750184 +247428,115713,Psychological,1440750199 +247428,115713,thought provoking,1440750186 +247428,122892,artificial intelligence,1439061484 +247428,132046,alternate reality,1442219365 +247428,132046,Future,1442219372 +247428,132046,visually appealing,1442219375 +247428,134130,realistic,1450386555 +247428,134130,sci-fi,1450386566 +247428,134130,scientific,1450386564 +247428,134130,Space,1450386547 +247437,260,"action, scifi",1437331135 +247437,260,classic,1437331145 +247437,356,good acting,1437335732 +247437,356,positive thinking,1437335732 +247437,356,very funny,1437335732 +247438,260,father-son relationship,1431688447 +247438,260,good for kids,1431688464 +247441,5673,PT Anderson,1239742064 +247441,44204,Oscar (Best Foreign Language Film),1239740370 +247446,47,serial killer,1229947850 +247446,1207,classic,1229946802 +247446,1704,psychology,1229947829 +247446,40629,18th century,1229946851 +247446,40629,based on a book,1229946828 +247446,40629,romance,1229946833 +247478,260,sci-fi,1441658551 +247478,260,space opera,1441658559 +247483,102903,BEST_MOVIE_EVER,1452375915 +247487,662,controlling,1305009570 +247487,662,obsessive boyfriend,1305008826 +247487,662,protective,1305009526 +247487,662,sexy,1305009593 +247487,662,steamy,1305009581 +247509,95581,aviation,1434604017 +247509,95581,navy,1434604017 +247509,95581,romance,1434604017 +247509,96022,crime,1436713793 +247509,96022,detective,1436713793 +247509,96022,mystery,1436713793 +247530,7318,overrated,1313922288 +247530,7318,propaganda,1313922306 +247538,356,engrossing,1438643345 +247538,356,epic,1438643345 +247538,356,heartwarming,1438643345 +247570,32657, ,1236803649 +247575,109487,epic,1438187996 +247575,109487,space,1438187996 +247575,109487,warmhole,1438187996 +247581,60684,stylized violence,1260109290 +247586,260,sci-fi,1433339691 +247586,260,space,1433339695 +247631,260,classic,1439799826 +247670,59549,gay relationship,1447871402 +247670,59549,homosexuality,1447871406 +247674,76251,Big Daddy,1434708754 +247674,76251,Frank Damico,1434708743 +247674,76251,Hit Girl,1434708730 +247674,76251,Kick Ass,1434708734 +247674,76251,Matthew Vaughn,1434708697 +247674,76251,Red Mist,1434708748 +247674,93404,Freddy Mercury,1443401940 +247674,115617,baymax,1433915411 +247674,115617,hiro,1433915411 +247674,115617,marvel,1433915411 +247674,117438,anime,1434708428 +247674,117438,japan,1434708428 +247674,117438,studio ghibli,1434708428 +247674,150230,awful movies,1452133756 +247682,47950,best movie of the year.,1168503033 +247700,28,Jane Austen,1172989666 +247700,198,alcohol consume,1295632989 +247700,198,gay,1295632952 +247700,198,mindfuck,1295632969 +247700,198,mystic,1295632976 +247700,198,provocative,1295632979 +247700,198,strange,1295632996 +247700,198,stupid,1295632983 +247700,260,George Lucas,1161124446 +247700,317,Christmas,1198563794 +247700,317,pretty funny,1198563773 +247700,318,foul language,1164127764 +247700,318,prison,1164127765 +247700,318,swearing,1164127764 +247700,356,classic,1157496560 +247700,356,Tom Hanks,1157496581 +247700,551,animated Opera,1181248277 +247700,668,Apu trilogy,1176160270 +247700,668,Bengal,1176160247 +247700,668,India,1176160249 +247700,670,Apu trilogy,1176160367 +247700,670,India,1176160361 +247700,745,animation,1169620206 +247700,762,Golden Raspberry (Worst Picture),1297832616 +247700,762,Nudity (Topless - Notable),1295632499 +247700,762,Nudity (Topless),1295632503 +247700,762,though I know I should . . .,1297832621 +247700,1148,Clay Animation,1171639310 +247700,1178,court,1169619943 +247700,1178,military,1169619937 +247700,1196,George Lucas,1161124455 +247700,1196,jedi,1161124473 +247700,1196,sci-fi,1161124512 +247700,1201,Civil War,1187926238 +247700,1207,courtroom drama,1193950294 +247700,1208,adventure,1295632766 +247700,1208,book was better,1295632753 +247700,1208,disturbing,1295632745 +247700,1208,imdb top 250,1295632761 +247700,1208,military,1295632758 +247700,1208,Oscar (Best Cinematography),1295632748 +247700,1208,violent,1295632775 +247700,1217,dissapointing,1170659435 +247700,1217,Kurosawa,1170659441 +247700,1217,too slow,1170659424 +247700,1225,Mozart,1168841293 +247700,1225,music,1168841297 +247700,1233,Best of Rotten Tomatoes: All Time,1336272253 +247700,1233,classic,1336272300 +247700,1233,gritty,1336272267 +247700,1233,imdb top 250,1336272270 +247700,1233,Nazis,1336272258 +247700,1233,ocean,1336272264 +247700,1233,thought-provoking,1336272262 +247700,1233,war,1336272294 +247700,1237,Death,1176260147 +247700,1237,gloomy,1176260151 +247700,1242,Oscar (Best Cinematography),1332646032 +247700,1242,Oscar (Best Supporting Actor),1332646034 +247700,1253,corny music,1250338942 +247700,1253,dated directing,1250338953 +247700,1253,first contact,1250338980 +247700,1253,Scary Movies To See on Halloween,1250338990 +247700,1253,sci-fi,1250338994 +247700,1253,VHS,1250339008 +247700,1272,World War II,1166942565 +247700,1293,India,1158941613 +247700,1376,boring,1157496489 +247700,1376,dissapointing,1157496508 +247700,1376,Star Trek,1157496492 +247700,1376,whales,1157496495 +247700,1396,black comedy,1332640215 +247700,1396,computer cracker,1332640219 +247700,1396,Funny as hell,1332640221 +247700,1573,Nudity (Nic Cage),1332639737 +247700,1573,revenge,1332639727 +247700,1573,stupid,1332639730 +247700,1573,transplants,1332639734 +247700,1727,unfaithfulness,1223932729 +247700,1809,A non-typical story leads to a fine ending,1182447117 +247700,1809,blood gore,1182447134 +247700,1809,Good but too bloody,1182447196 +247700,1809,Japan,1182447113 +247700,1809,Landscapes,1182447106 +247700,1809,yakuza,1182447147 +247700,1927,German perspective,1186667079 +247700,1927,war movie,1186667079 +247700,1927,war ugliness,1186667079 +247700,1927,World War I,1186667089 +247700,2005,Teen movie,1167979065 +247700,2028,on hold,1153592914 +247700,2046,childhood flashback,1174056800 +247700,2105,animation,1297832497 +247700,2105,Disney,1297832492 +247700,2105,technology,1297832501 +247700,2105,virtual reality,1297832504 +247700,2336,historical,1253589660 +247700,2336,R-rated,1253589660 +247700,2340,Anthony Hopkins,1312123280 +247700,2340,Brad Pitt,1312123283 +247700,2340,Claire Forlani,1312123286 +247700,2340,Clare Forlani,1312123289 +247700,2340,Marcia Gay Harden,1312123303 +247700,2340,supernatural,1312123295 +247700,2394,Bible,1166942883 +247700,2394,Biblical,1166942886 +247700,2427,cult classic,1188714594 +247700,2427,meditation about war,1188714548 +247700,2427,meditative,1188714585 +247700,2427,melancholy,1188714486 +247700,2427,nature,1188714581 +247700,2427,reflective,1188714492 +247700,2427,World War II,1188714521 +247700,2672,R language,1186077820 +247700,2672,rated-R,1186077780 +247700,2672,virtual reality,1186077835 +247700,2731,gentle,1182143703 +247700,2731,No story line,1182143643 +247700,2731,reflective,1182143698 +247700,2734,unusual story,1226542227 +247700,2858,sexuality,1295632455 +247700,2890,George Clooney,1364089416 +247700,3289,a touch of communist propaganda,1182290028 +247700,3289,China,1182290028 +247700,3289,Chinese,1182290028 +247700,3289,Chinese landscapes,1182290060 +247700,3289,overly happy ending,1182290122 +247700,3289,Rural school,1182290028 +247700,3386,conspiracy theory,1174188699 +247700,3386,docudrama,1174188225 +247700,3386,John F. Kennedy,1174188281 +247700,3386,politics,1174188211 +247700,3386,Swearing,1174188176 +247700,3476,coverup,1295632938 +247700,3476,disturbing,1295632935 +247700,3476,flashbacks,1295632933 +247700,3476,multiple realities,1295632930 +247700,3476,Nudity (Topless),1295632928 +247700,3476,surreal,1295632924 +247700,3503,based on a book,1174057063 +247700,3503,hard to follow,1174056888 +247700,3503,mosfilm,1174056863 +247700,3503,Russian,1174056865 +247700,3503,The remake is better,1172028202 +247700,3811,army,1157259523 +247700,3811,Boers,1157259523 +247700,3811,History,1157259438 +247700,3811,military court,1157259523 +247700,3811,South Africa,1157259523 +247700,4334,China,1174420634 +247700,4334,intimate,1174420703 +247700,4334,MIDLIFE CRISES,1174420611 +247700,4334,Modern China,1174420643 +247700,4334,partial nudity (male),1174420684 +247700,4334,reflective,1174420649 +247700,4334,swearing,1174420665 +247700,4334,warm,1174420588 +247700,4334,wistful,1174420584 +247700,4406,black and white,1170564688 +247700,4406,John Wayne,1170564617 +247700,4406,John Wayne is full of himself,1170564773 +247700,4856,Dolby Digital EX,1172371138 +247700,4856,Leonard Nimoy,1172371204 +247700,4856,space exploration,1172371094 +247700,4856,Surround sound - 6 ch,1172371121 +247700,4857,Anamorphic Blow-Up,1259988984 +247700,4857,childhood classics,1259989034 +247700,4857,Jewish,1259988990 +247700,4857,Judaism,1259988980 +247700,4857,persecution,1156435797 +247700,4857,socially relevant,1259989023 +247700,4857,Tradition!,1157496530 +247700,4963,R-rated,1250569914 +247700,4963,swearing,1250569924 +247700,4993,fantasy,1156435810 +247700,4993,Peter Jackson,1156435864 +247700,4993,Tolkien,1156435825 +247700,4994,Jim Carrey,1170954215 +247700,4994,Un-American Activities Committee,1170954260 +247700,5093,Arnold Schwarzenegger,1248577455 +247700,5093,CIA,1248577523 +247700,5093,Columbian rebels,1248577503 +247700,5093,Comedy,1248577450 +247700,5093,court,1248577460 +247700,5093,Latin America,1248577472 +247700,5093,revenge,1248577466 +247700,5093,South America,1248577468 +247700,5378,sci-fi,1161124442 +247700,5389,Memorable,1176160726 +247700,5445,good story & bad directing,1172467158 +247700,5445,Tired of Tom,1172467103 +247700,5446,aboregines,1157259821 +247700,5446,Australia,1157259822 +247700,5446,child actor,1157259820 +247700,5446,children,1157259822 +247700,5464,boring,1177473182 +247700,5464,language,1177473620 +247700,5464,organized crime,1177473180 +247700,5464,R-rated,1177473620 +247700,5464,violence,1177473619 +247700,5464,violent,1177473557 +247700,5618,anime,1156435915 +247700,5618,Hayao Miyazaki,1156435917 +247700,5804,flat humor,1198563885 +247700,5804,mediocre sequel,1198563860 +247700,5881,Better then original,1172028173 +247700,5890,adult themes,1176159905 +247700,5890,funny,1176160005 +247700,5890,mentally disturbed rejoining society,1176159964 +247700,5890,Norway,1176159923 +247700,5890,R,1176159842 +247700,5890,swearing,1176159882 +247700,5890,wrong morals,1176159865 +247700,5952,fantasy,1156435926 +247700,5952,Peter Jackson,1156435927 +247700,5952,Tolkien,1156435926 +247700,5971,anime,1156435883 +247700,5971,Hayao Miyazaki,1156435885 +247700,6156,Dumb and Dumber,1189313757 +247700,6156,not funny,1189313738 +247700,6299,birds,1179460595 +247700,6383,crappy sequel,1328583464 +247700,6383,street race,1328583468 +247700,6669,Akira Kurosawa,1170637603 +247700,6669,bureaucracy,1170637556 +247700,6669,cancer,1170637554 +247700,6669,Japan,1170637599 +247700,6669,Kurosawa,1170637534 +247700,6669,terminal illness,1170637536 +247700,6669,Underrated piece of genius,1170637551 +247700,6787,Politics,1169446100 +247700,6790,meditative music,1183122199 +247700,6790,sepia,1183122219 +247700,6790,virtual reality,1183122206 +247700,6867,dwarf,1322976784 +247700,6867,melancholy,1322976855 +247700,6867,Michelle Williams,1322976790 +247700,6867,no ending,1322976850 +247700,6867,small town,1322976794 +247700,6918,Apu trilogy,1176160313 +247700,6918,India,1176160303 +247700,6942,Nudity (Topless - Notable),1295632478 +247700,6942,Nudity (Topless),1295632483 +247700,7099,anime,1156435888 +247700,7099,Hayao Miyazaki,1156435889 +247700,7153,based on a book,1259902414 +247700,7153,ensemble cast,1259902390 +247700,7153,epic,1259902381 +247700,7153,fantasy,1259902417 +247700,7153,fantasy world,1259902411 +247700,7153,imdb top 250,1259902393 +247700,7153,literary adaptation,1259902396 +247700,7153,magic,1259902408 +247700,7153,Oscar (Best Directing),1259902406 +247700,7153,Oscar (Best Picture),1259902402 +247700,7153,Peter Jackson,1156435867 +247700,7153,scenic,1259902399 +247700,7153,Tolkien,1156435867 +247700,7153,war,1259902428 +247700,7346,avi,1295632899 +247700,7346,hulu,1295632896 +247700,7346,ludicrous plot,1295632889 +247700,7346,Nudity (Topless),1295632880 +247700,7346,pornography,1295632877 +247700,7346,silly,1295632889 +247700,7346,teen,1295632904 +247700,7346,Walked out/didn't finish,1295632881 +247700,7485,affectionate,1177638692 +247700,7485,humorous,1177638697 +247700,7577,Masonic messages,1176596774 +247700,7771,Greece,1182622688 +247700,7771,macho culture,1182622688 +247700,7771,Realities of life,1182622760 +247700,7771,un-western culture,1182622687 +247700,7980,Best War Films,1185717493 +247700,7980,classic,1185717497 +247700,7980,History,1185717495 +247700,7980,Sean Connery,1185717488 +247700,7980,World War II,1185717491 +247700,8371,shallow plot,1154968968 +247700,8530,deafness,1156435381 +247700,8530,family drama,1156435381 +247700,8530,scotland,1156435304 +247700,8783,Atmospheric,1162851031 +247700,8783,M. Night Shyamalan,1162851026 +247700,8972,Masons,1176596847 +247700,26131,colonial power,1170285982 +247700,26131,french movie,1170285941 +247700,26131,historical,1170285958 +247700,26131,terrorism,1170285919 +247700,26172,Movie Lens mis-recommendation (1.5),1295632606 +247700,26172,NR,1182029862 +247700,26172,NR (R),1295632577 +247700,26172,nudity,1295632566 +247700,26172,Nudity (Topless - Brief),1295632569 +247700,26172,Violent,1182030184 +247700,27002,made for TV,1295624228 +247700,27002,NASA,1295624225 +247700,27002,Series,1295624220 +247700,27002,Tom Hanks,1295624223 +247700,27803,Not in library,1182205745 +247700,27912,Fox,1166942341 +247700,27912,liberal,1166942269 +247700,27912,liberal perspective,1166942285 +247700,27912,one sided,1166942293 +247700,27912,politics,1166942261 +247700,31435,rated-R for swearing,1232898187 +247700,31437,abandonment,1174658997 +247700,31437,based on a true story,1174658993 +247700,31437,meditative,1174659017 +247700,31437,neglected childen,1174658958 +247700,31437,siblings,1174658984 +247700,31437,Tokyo,1174658989 +247700,31617,epic,1258084822 +247700,31617,moores,1258084863 +247700,31617,musical intermission,1258084984 +247700,31617,rushed ending,1258084831 +247700,31617,Spain,1258084863 +247700,32582,parrots,1164824988 +247700,33162,action packed,1170370338 +247700,33162,crusaders,1170370256 +247700,33162,crusades,1170370245 +247700,33162,history,1170370235 +247700,33162,Jerusalem,1170370274 +247700,33162,Muslim warriors,1170370311 +247700,33162,Orlando Bloom,1170370233 +247700,33162,Saladin,1170370318 +247700,33162,visually interesting--that's about it,1170370362 +247700,34334,AI,1260509444 +247700,34334,artificial intelligence,1260509481 +247700,34334,aviation,1260509448 +247700,34334,awesomely bad,1260509440 +247700,34334,innuendo,1260509424 +247700,34334,Jessica Biel,1260509428 +247700,34334,military,1260509430 +247700,34334,terrible career choices,1260509474 +247700,34334,U.S.S. Abraham Lincoln (CVN 72),1260509454 +247700,34334,unintentional comedy,1260509460 +247700,34536,POWs,1189136886 +247700,36535,culture clash,1193950095 +247700,36535,ukraine,1193950056 +247700,37729,animated Opera,1181248208 +247700,37729,living dead,1181248157 +247700,37857,Fantasy World,1156000144 +247700,39231,atmospheric music,1191732716 +247700,39231,disappointing,1191732729 +247700,40583,complex,1160488405 +247700,40583,Matt Damon,1160488415 +247700,40583,oil,1160488399 +247700,40583,world politics,1160488434 +247700,42418,boring,1160591566 +247700,42418,indians,1160591566 +247700,42418,love story,1160591624 +247700,42418,Old England,1160591592 +247700,42728,adultery,1258084504 +247700,42728,Cornwall,1258084559 +247700,42728,Ireland,1258084563 +247700,42728,James Franco,1258084687 +247700,42728,love story,1258084506 +247700,42728,medieval,1258084693 +247700,42728,The fact that Isolde betrayed a man as honourable as Lord Marke. I can't stand people who have affairs.,1258084518 +247700,45074,computer animation,1259466723 +247700,45442,predictable,1189058601 +247700,45442,unrealistic,1189058610 +247700,45442,waste of time,1189058592 +247700,45668,architecture,1188537431 +247700,45668,chicago,1188537411 +247700,45668,love letters,1188537459 +247700,45668,love story,1188537416 +247700,45668,remake,1188537401 +247700,45668,sweet,1188537464 +247700,45730,M. Night Shyamalan,1162850470 +247700,45732,stupid,1162850045 +247700,47099,depressing,1201825811 +247700,47099,Motivation,1201825827 +247700,47264,animated,1259467676 +247700,47264,bulls don't have teats,1259468029 +247700,47264,coming of age,1259467890 +247700,47264,computer animation,1259468054 +247700,47264,cow,1259468518 +247700,47264,father and sin,1259468223 +247700,47264,got bored & turned it off,1259468198 +247700,47264,kids,1259468521 +247700,47264,talking animals,1259467733 +247700,47610,cool effects,1194366531 +247700,47610,love story,1194366416 +247700,47610,PG13,1194366379 +247700,47610,sex scene,1194366480 +247700,47610,stage magic,1194366346 +247700,47610,twist ending,1194366408 +247700,47610,Vienna,1194366384 +247700,48061,cute,1183122283 +247700,48394,adventure,1324966243 +247700,48394,atmospheric,1324966189 +247700,48394,bittersweet,1324966187 +247700,48394,fairy tale,1324966238 +247700,48394,fantasy,1324966235 +247700,48394,history,1324966249 +247700,48394,imdb top 250,1324966246 +247700,48394,military,1324966217 +247700,48394,Oscar (Best Cinematography),1324966231 +247700,48394,social commentary,1324966197 +247700,48394,twist ending,1324966195 +247700,48394,violence,1324966192 +247700,48600,Anti-climactic ending,1181662351 +247700,48600,Biblical,1181662242 +247700,48600,Ester,1181662351 +247700,48600,Hollywood artistic license,1181662351 +247700,48600,Xerxes,1181662351 +247700,48780,Christian Bale,1185425789 +247700,48780,Christopher Nolan,1185425779 +247700,48780,David Bowie,1185425783 +247700,48780,drowning,1185425700 +247700,48780,eerie,1185425709 +247700,48780,lavish,1185425766 +247700,48780,magic,1185425761 +247700,48780,Michael Caine,1185425695 +247700,48780,nice period piece,1185425691 +247700,48780,PG-13,1185425794 +247700,48780,Scarlet Johannson,1185425776 +247700,48780,surprising ending,1185425686 +247700,48780,teleportation,1185425752 +247700,48982,Aardman,1177160350 +247700,48982,Dreamworks,1177160373 +247700,48982,london,1177160356 +247700,48982,musical parodies,1177160330 +247700,48982,singing slugs,1177160336 +247700,48982,smart humor,1177160315 +247700,49130,a good year,1244263965 +247700,49130,bad direction,1244263944 +247700,49130,Below R,1244263952 +247700,49130,Change of heart,1244263974 +247700,49130,disappointing,1244263983 +247700,49130,France,1244263938 +247700,49130,inappropriate music,1244263999 +247700,49130,life reflection,1244263980 +247700,49130,movie to see,1244263970 +247700,49130,Tumey's DVDs,1244263991 +247700,49130,upbeat music,1244263784 +247700,49130,wine and romance,1244263925 +247700,49130,worse than expected,1244263986 +247700,49649,A tribute movie butchered by the short sidedness,1185717323 +247700,49649,dragons,1185717419 +247700,49649,Horrible adaptation of the book,1185717383 +247700,49649,legend,1185717422 +247700,49649,magic,1185717420 +247700,49649,Major dissapointment,1185717445 +247700,49649,Weak directing,1185717395 +247700,50068,intimate,1198563979 +247700,50068,R,1198563949 +247700,50068,World War II,1198563940 +247700,50160,gentle story,1225738183 +247700,50160,good casting,1225738145 +247700,50601,hurried ending,1182697504 +247700,50601,liberal messages,1182663711 +247700,50601,sad,1182663622 +247700,50601,teen relationships,1182663711 +247700,50601,weak directing,1182697515 +247700,50792,made plane flight longer,1180849936 +247700,53460,Below R,1259388980 +247700,53460,fresh story,1259389011 +247700,53460,penguin,1259388995 +247700,53460,rough humor,1259389171 +247700,53460,Shia LaBeouf,1259388984 +247700,53460,surfing,1259388987 +247700,53460,Zooey Deschanel,1259389181 +247700,54259,crude humor,1204497249 +247700,54259,should be PG17,1204497261 +247700,54259,true meaning of love,1204497297 +247700,54259,Wall,1204497344 +247700,54259,witches,1204497325 +247700,55167,anime,1297007666 +247700,55167,based on manga,1297007710 +247700,55167,empty characters,1297007612 +247700,55167,manga,1297007692 +247700,55167,violence,1297007641 +247700,55167,violent,1297007631 +247700,55167,yakuza,1297007657 +247700,55999,magic,1296884548 +247700,56788,Julia Roberts,1295632838 +247700,56788,Nudity (Topless),1295632835 +247700,56788,satire,1295632842 +247700,57326,Like LOTR,1297454405 +247700,58299,Below R,1259467263 +247700,58299,Dr. Seuss,1259467253 +247700,58299,Jim Carrey,1259467258 +247700,58998,BREAKUPS AND DIVORCES,1295632800 +247700,58998,comedy,1295632802 +247700,58998,drugs,1295632796 +247700,58998,male nudity,1295632792 +247700,58998,Nudity (Full Frontal - Notable),1295632806 +247700,58998,Nudity (Topless - Brief),1295632808 +247700,58998,Nudity (Topless),1295632811 +247700,58998,Predictable,1295632814 +247700,59387,1920s,1297573224 +247700,59387,addiction,1297573221 +247700,59387,beautiful,1297573163 +247700,59387,beautiful cinematography,1297573161 +247700,59387,fantasy,1297573159 +247700,59387,fantasy world,1297573157 +247700,59387,postmodern,1309757405 +247700,59387,story-in-a-story,1297573212 +247700,59387,stunts,1309757402 +247700,59387,surreal,1297573210 +247700,59387,visually appealing,1297573206 +247700,59387,visually stunning,1297573208 +247700,59725,R:language,1295632646 +247700,59725,R:strong sexual content,1295632650 +247700,59725,Sarah Jessica Parker,1295632703 +247700,59910,autobiographical,1235805566 +247700,59910,based on a book,1235805571 +247700,59910,beautiful scenery,1235805601 +247700,59910,infidelity,1235805488 +247700,59910,not a family movie,1235805544 +247700,59910,single climax,1235805559 +247700,59910,slow,1235805432 +247700,62577,"recommended by NPR ""Science Friday""",1231778369 +247700,64497,apocalyptic,1250338884 +247700,64497,apocolyptic,1250338881 +247700,64497,Below R,1250338895 +247700,64497,remake,1250338898 +247700,66198,action,1262928642 +247700,66198,banks,1262928639 +247700,66198,bloody scenes,1262928728 +247700,66198,Business is the antagonist,1262928633 +247700,66198,Clive Owen,1262928684 +247700,66198,long,1262928755 +247700,66198,Naomi Watts,1262928685 +247700,66198,R,1262928648 +247700,66198,swearing,1262928741 +247700,66371,beautiful music,1299472689 +247700,66371,beautiful scenery,1299472692 +247700,66371,calm,1299472761 +247700,66371,cello,1299472753 +247700,66371,confronting death,1299472695 +247700,66371,emotional,1299472698 +247700,66371,father son relationship,1299472749 +247700,66371,humorous,1299472757 +247700,66371,japan,1299472742 +247700,66371,life & death,1299472746 +247700,66371,melodrama,1299472770 +247700,68963,Colin Firth,1309149383 +247700,69372,boring,1295847828 +247700,69372,creative monsters,1295847881 +247700,69372,Japan,1295847914 +247700,69372,mockumentary,1295847823 +247700,69372,no point,1295847833 +247700,69372,not funny,1295880004 +247700,69372,not worth your time,1295847900 +247700,69481,action,1363406300 +247700,69481,anti-war,1363406304 +247700,69481,Oscar (Best Directing),1363406314 +247700,69481,Oscar (Best Editing),1363406319 +247700,69481,Oscar (Best Picture),1363406322 +247700,69481,Oscar (Best Sound),1363406326 +247700,70286,action,1267548199 +247700,70286,aliens,1267548173 +247700,70286,alternate history,1267548176 +247700,70286,cgi,1267548191 +247700,70286,directorial debut,1267548202 +247700,70286,IMDB Top 250,1267548197 +247700,70286,intelligent sci-fi,1267548173 +247700,70286,redemption,1267548211 +247700,70286,social commentary,1267548188 +247700,70286,swearing,1267548227 +247700,70286,thoughtful,1267548183 +247700,70286,transformation,1267548185 +247700,70286,unique,1267548204 +247700,70286,violence,1267548207 +247700,72998,3d,1264485345 +247700,72998,aliens,1264485347 +247700,72998,ecology,1264485387 +247700,72998,futuristic,1264485350 +247700,72998,James Cameron,1264485372 +247700,72998,military,1264485352 +247700,72998,Natives,1264485380 +247700,72998,race issues,1264485359 +247700,72998,racism,1264485369 +247700,72998,sci-fi,1264485353 +247700,73017,Action,1294853242 +247700,73017,Atmospheric,1294853208 +247700,73017,choreographic violence,1294853250 +247700,73017,Hans Zimmer,1294853232 +247700,73017,Jude Law,1294853213 +247700,73017,martial arts,1294853229 +247700,73017,murder,1294853218 +247700,73017,occult,1294853225 +247700,73017,predictable,1294853223 +247700,73017,Robert Downey Jr.,1294853215 +247700,73017,stupid but funny,1294853201 +247700,73017,Victorian,1294853220 +247700,73017,violent,1294853221 +247700,74530,action,1328284248 +247700,74530,childish,1328284246 +247700,74530,fantasy,1328284243 +247700,74530,Greek mythology,1328284241 +247700,74530,hollywood ending,1328284250 +247700,74530,original plot,1328284252 +247700,74530,silly,1328284255 +247700,74545,adultery,1363405651 +247700,74545,atmospheric,1363405669 +247700,74545,British,1363405710 +247700,74545,Ewan McGregor,1363405701 +247700,74545,good ending,1363405684 +247700,74545,island,1363405694 +247700,74545,mystery,1363405664 +247700,74545,nudity,1363405660 +247700,74545,politics,1363405713 +247700,74545,sex,1363405655 +247700,74545,slow,1363405719 +247700,74795,action,1298351125 +247700,74795,adapted from:book,1298351186 +247700,74795,Corrupt Government,1298351122 +247700,74795,Espionage,1298351128 +247700,74795,Iraq War,1298351118 +247700,74795,Matt Damon,1298351110 +247700,74795,military,1298351178 +247700,74795,politics,1298351132 +247700,74795,social commentary,1298351180 +247700,74795,Unjustified Invasion,1298351112 +247700,74795,war,1298351114 +247700,74795,Weapon of Mass Destruction,1298351116 +247700,77866,adventure,1299472461 +247700,77866,archery,1299472464 +247700,77866,Cate Blanchett,1299472506 +247700,77866,England,1299472540 +247700,77866,France,1299472548 +247700,77866,gritty,1299472513 +247700,77866,melodic soundtrack,1299472601 +247700,77866,narrowly below-average,1299472496 +247700,77866,Rewrite history,1299472523 +247700,77866,unhistorical,1299472486 +247700,77866,war,1299472490 +247700,79132,action,1304622054 +247700,79132,alternate reality,1304622051 +247700,79132,drama,1304622057 +247700,79132,fantasy,1304622061 +247700,79132,heist,1304622065 +247700,79132,Leonardo DiCaprio,1304622050 +247700,79132,Paris,1304622048 +247700,79132,predictable,1304622042 +247700,79132,sentimental,1304622044 +247700,79132,suspense,1304622046 +247700,79132,thought-provoking,1304622037 +247700,79132,thriller,1304622067 +247700,79132,visually appealing,1304622040 +247700,79357,chaos,1293687764 +247700,79357,style over substance,1293687759 +247700,79357,technobabble,1293687772 +247700,83132,adapted from:book,1341286450 +247700,83132,Anime,1341286372 +247700,83132,beautiful,1341286358 +247700,83132,better than the book,1341286443 +247700,83132,colorful,1341286403 +247700,83132,simple plot,1341286362 +247700,83132,soundtrack,1341286398 +247700,83132,Studio Ghibli,1341286365 +247700,85414,powerful ending,1328756320 +247700,85414,science fiction,1328756310 +247700,85414,terrorism,1328756323 +247700,85414,time loop,1328756312 +247700,85414,twist ending,1328756325 +247700,86898,beautifully filmed,1353207730 +247700,86898,cinematography,1353207732 +247700,86898,confusing,1353207718 +247700,86898,dinosaurs,1353207747 +247700,86898,intimate,1353207739 +247700,86898,music,1353207734 +247700,86898,thought-provoking,1353207727 +247700,86898,Very long,1353207741 +247700,91529,Christian Bale,1364233106 +247700,91529,dark,1364233131 +247700,91529,fantasy,1364233126 +247700,91529,franchise,1364233123 +247700,91529,great ending,1364233109 +247700,91529,imdb top 250,1364233120 +247700,91529,Michael Caine,1364233147 +247700,91529,Morgan Freeman,1364233134 +247700,91529,nuclear bomb,1364233118 +247700,91529,plot twist,1364233111 +247700,91529,superhero,1364233113 +247700,91529,surreal,1364233116 +247700,91529,trilogy,1364233138 +247700,96737,based on a comic,1380728816 +247700,96737,corruption,1380728805 +247700,96737,drugs,1380728797 +247700,96737,Dystopia,1380728774 +247700,96737,gore,1380728756 +247700,96737,low budget,1380728768 +247700,96737,police corruption,1380728765 +247700,96737,sci-fi,1380728785 +247700,96737,Stereoscopic 3-D,1380728823 +247700,96737,Tense,1380728761 +247700,96737,violence,1380728758 +247700,101864,aliens,1382363530 +247700,101864,atmospheric,1382363529 +247700,101864,future,1382363564 +247700,101864,Morgan Freeman,1382363532 +247700,101864,technology,1382363524 +247700,101864,Tom Cruise,1382363534 +247700,101864,twists & turns,1382363522 +247716,260,sci-fi,1435229996 +247716,260,space action,1435230001 +247736,912,100 Greatest Movies,1449401932 +247736,912,bittersweet,1449401417 +247736,912,classic,1449401913 +247736,912,Great Screenplays,1449401934 +247736,912,romance,1449401919 +247736,912,sentimental,1449401427 +247736,1270,adventure,1449401533 +247736,1270,alternate reality,1449401961 +247736,1270,Christopher Lloyd,1449401537 +247736,1270,comedy,1449401949 +247736,1270,Funny,1449401544 +247736,1270,great screenplays,1449401969 +247736,1270,Michael J. Fox,1449401529 +247736,1270,time travel,1449401523 +247736,1357,classical music,1449403110 +247736,1357,true story,1449403114 +247736,1704,heartwarming,1449402583 +247736,4995,genius,1449402624 +247736,4995,inspirational,1449402638 +247736,4995,intelligent,1449402628 +247736,4995,math,1449402631 +247736,4995,mathematics,1449402619 +247736,4995,true story,1449402636 +247736,74324,autism,1449402867 +247736,74324,genius,1449402874 +247736,74324,inspirational,1449402883 +247736,74324,science,1449402878 +247751,96655,future,1366041126 +247751,96655,robots,1366041128 +247753,356,classic,1430438776 +247753,356,oscar (best supporting actor),1430438776 +247753,356,social drama,1430438776 diff --git a/go-lang/read-csv-with-worker-pools/1000k.csv b/go-lang/read-csv-with-worker-pools/1000k.csv new file mode 100644 index 00000000..d47c94cb --- /dev/null +++ b/go-lang/read-csv-with-worker-pools/1000k.csv @@ -0,0 +1 @@ +sample diff --git a/go-lang/read-csv-with-worker-pools/README.md b/go-lang/read-csv-with-worker-pools/README.md new file mode 100644 index 00000000..247b9524 --- /dev/null +++ b/go-lang/read-csv-with-worker-pools/README.md @@ -0,0 +1 @@ +CSV file: https://drive.google.com/file/d/1DFkJdX5UTnB_xL7g8xwkkdE8BxdurAhN/view diff --git a/go-lang/read-csv-with-worker-pools/go.mod b/go-lang/read-csv-with-worker-pools/go.mod new file mode 100644 index 00000000..fdf9d238 --- /dev/null +++ b/go-lang/read-csv-with-worker-pools/go.mod @@ -0,0 +1,3 @@ +module github/vanduc1102/read-csv-with-worker-pools + +go 1.20 diff --git a/go-lang/read-csv-with-worker-pools/main.go b/go-lang/read-csv-with-worker-pools/main.go new file mode 100644 index 00000000..50cfc39f --- /dev/null +++ b/go-lang/read-csv-with-worker-pools/main.go @@ -0,0 +1,220 @@ +package main + +import ( + "encoding/csv" + "encoding/json" + "fmt" + "io" + "os" + "strconv" + "sync" + "time" +) + +var mu sync.Mutex + +func main() { + f, _ := os.Open("./1000k.csv") + defer f.Close() + f1, _ := os.Open("./1000k.csv") + defer f1.Close() + + ts := time.Now() + // basicRead(f) + basicReadStruct(f) + te := time.Since(ts) + + ts1 := time.Now() + // concurrentRead(f1) + // concurrentReadStruct(f1) + concurrentReadStructWithWorkerPool(f1) + te1 := time.Since(ts1) + + // Read and Set to a map + fmt.Println("\nEND Basic: ", te) + fmt.Println("END Concurrent: ", te1) +} + +func concurrentReadStructWithWorkerPool(f *os.File) { + fileCsv := csv.NewReader(f) + rs := make([]*Sale, 0) + numWps := 100 + jobs := make(chan []string, numWps) + res := make(chan *Sale) + + var wg sync.WaitGroup + worker := func(jobs <-chan []string, results chan<- *Sale) { + for { + select { + case job, ok := <-jobs: // you must check for readable state of the channel. + if !ok { + return + } + results <- parseStruct(job) + } + } + } + + // init workers + for w := 0; w < numWps; w++ { + wg.Add(1) + go func() { + // this line will exec when chan `res` processed output at line 107 (func worker: line 71) + defer wg.Done() + worker(jobs, res) + }() + } + + go func() { + for { + rStr, err := fileCsv.Read() + if err == io.EOF { + break + } + if err != nil { + fmt.Println("ERROR: ", err.Error()) + break + } + jobs <- rStr + } + close(jobs) // close jobs to signal workers that no more job are incoming. + }() + + go func() { + wg.Wait() + close(res) // when you close(res) it breaks the below loop. + }() + + for r := range res { + rs = append(rs, r) + } + + fmt.Println("Count Concurrent ", len(rs)) +} + +func concurrentReadStruct(f *os.File) { + fileCsv := csv.NewReader(f) + rs := make(map[int64]*Sale) + + var wg sync.WaitGroup + for { + rowString, err := fileCsv.Read() + if err == io.EOF { + break + } + if err != nil { + fmt.Println("ERROR: ", err.Error()) + break + } + wg.Add(1) + go func(innerWg *sync.WaitGroup) { + defer innerWg.Done() + obj := parseStruct(rowString) + mu.Lock() + rs[obj.OrderId] = obj + mu.Unlock() + }(&wg) + } + wg.Wait() + fmt.Println("Count Concu ", len(rs)) +} + +func concurrentRead(f *os.File) { + fileCsv := csv.NewReader(f) + for { + rowString, err := fileCsv.Read() + if err == io.EOF { + break + } + if err != nil { + fmt.Println("ERROR: ", err.Error()) + break + } + go printData(rowString, "CC") + } +} + +func basicReadStruct(f *os.File) { + fileCsv := csv.NewReader(f) + row := make([]*Sale, 0) + for { + rowString, err := fileCsv.Read() + if err == io.EOF { + break + } + if err != nil { + fmt.Println("ERROR: ", err.Error()) + break + } + row = append(row, parseStruct(rowString)) + } + fmt.Println("Count Basic ", len(row)) +} + +func basicRead(f *os.File) { + fileCsv := csv.NewReader(f) + for { + rowString, err := fileCsv.Read() + if err == io.EOF { + break + } + if err != nil { + fmt.Println("ERROR: ", err.Error()) + break + } + printData(rowString, "BS") + } +} + +type Sale struct { + Region string `json:"region"` + Country string `json:"country"` + ItemType string `json:"item_type"` + SaleChannel string `json:"sale_channel"` + OrderPriority string `json:"order_priority"` + OrderDate string `json:"order_date"` + OrderId int64 `json:"order_id"` + ShipDate string `json:"ship_date"` + UnitSold int64 `json:"unit_sold"` + UnitPrice float64 `json:"unit_price"` + UnitCost float64 `json:"unit_cost"` + TotalRevenue float64 `json:"total_revenue"` + TotalCost float64 `json:"total_cost"` + TotalProfit float64 `json:"total_profit"` +} + +func printData(data []string, job string) { + obj := parseStruct(data) + js, _ := json.Marshal(obj) + fmt.Printf("\n[%v] ROW Id: %v - len %v", job, obj.OrderId, len(js)) +} + +func parseStruct(data []string) *Sale { + id, _ := strconv.ParseInt(data[6], 10, 64) + unitSold, _ := strconv.ParseInt(data[8], 10, 64) + unitPrice, _ := strconv.ParseFloat(data[9], 64) + unitCost, _ := strconv.ParseFloat(data[10], 64) + totalRev, _ := strconv.ParseFloat(data[11], 64) + totalCost, _ := strconv.ParseFloat(data[12], 64) + totalProfit, _ := strconv.ParseFloat(data[13], 64) + return &Sale{ + Region: data[0], + Country: data[1], + ItemType: data[2], + SaleChannel: data[3], + OrderPriority: data[4], + OrderDate: data[5], + OrderId: id, + ShipDate: data[7], + UnitSold: unitSold, + UnitPrice: unitPrice, + UnitCost: unitCost, + TotalRevenue: totalRev, + TotalCost: totalCost, + TotalProfit: totalProfit, + } +} + +// arg <-chan int : read only +// arg chan<- int : write only +// arg chan int : read & write diff --git a/reactjs/cra-solidity-etherjs/.gitkeep b/reactjs/cra-solidity-etherjs/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/reactjs/linkedin-edu-next-app/.eslintrc.json b/reactjs/linkedin-edu-next-app/.eslintrc.json new file mode 100644 index 00000000..bffb357a --- /dev/null +++ b/reactjs/linkedin-edu-next-app/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/reactjs/linkedin-edu-next-app/.gitignore b/reactjs/linkedin-edu-next-app/.gitignore new file mode 100644 index 00000000..8f322f0d --- /dev/null +++ b/reactjs/linkedin-edu-next-app/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/reactjs/linkedin-edu-next-app/README.md b/reactjs/linkedin-edu-next-app/README.md new file mode 100644 index 00000000..f4da3c4c --- /dev/null +++ b/reactjs/linkedin-edu-next-app/README.md @@ -0,0 +1,34 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/reactjs/linkedin-edu-next-app/next.config.js b/reactjs/linkedin-edu-next-app/next.config.js new file mode 100644 index 00000000..767719fc --- /dev/null +++ b/reactjs/linkedin-edu-next-app/next.config.js @@ -0,0 +1,4 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = {} + +module.exports = nextConfig diff --git a/reactjs/linkedin-edu-next-app/package-lock.json b/reactjs/linkedin-edu-next-app/package-lock.json new file mode 100644 index 00000000..aea872f7 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/package-lock.json @@ -0,0 +1,7069 @@ +{ + "name": "linkedin-edu-next-app", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "linkedin-edu-next-app", + "version": "0.1.0", + "dependencies": { + "@types/node": "20.4.5", + "@types/react": "18.2.17", + "@types/react-dom": "18.2.7", + "autoprefixer": "10.4.14", + "eslint": "8.45.0", + "eslint-config-next": "13.4.12", + "next": "13.4.12", + "postcss": "8.4.27", + "react": "18.2.0", + "react-dom": "18.2.0", + "tailwindcss": "3.3.3", + "typescript": "5.1.6" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", + "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz", + "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@next/env": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz", + "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz", + "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==", + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz", + "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz", + "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz", + "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz", + "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz", + "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz", + "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz", + "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz", + "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz", + "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "dependencies": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/node": { + "version": "20.4.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz", + "integrity": "sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.17.tgz", + "integrity": "sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "dependencies": { + "run-applescript": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001517", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", + "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dependencies": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.475", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.475.tgz", + "integrity": "sha512-mTye5u5P98kSJO2n7zYALhpJDmoSQejIGya0iR01GpoRady8eK3bw7YHHnjA1Rfi4ZSLdpuzlAC7Zw+1Zu7Z6A==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.45.0.tgz", + "integrity": "sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz", + "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==", + "dependencies": { + "@next/eslint-plugin-next": "13.4.12", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.0.tgz", + "integrity": "sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.0.0-canary-7118f5dd7-20230705", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", + "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.1.tgz", + "integrity": "sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz", + "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/jiti": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz", + "integrity": "sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", + "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz", + "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==", + "dependencies": { + "@next/env": "13.4.12", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.12", + "@next/swc-darwin-x64": "13.4.12", + "@next/swc-linux-arm64-gnu": "13.4.12", + "@next/swc-linux-arm64-musl": "13.4.12", + "@next/swc-linux-x64-gnu": "13.4.12", + "@next/swc-linux-x64-musl": "13.4.12", + "@next/swc-win32-arm64-msvc": "13.4.12", + "@next/swc-win32-ia32-msvc": "13.4.12", + "@next/swc-win32-x64-msvc": "13.4.12" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "fibers": ">= 3.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "fibers": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dependencies": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/run-applescript/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/run-applescript/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/run-applescript/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-applescript/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", + "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + }, + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==" + }, + "@babel/runtime": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", + "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz", + "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==" + }, + "@eslint/eslintrc": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==" + }, + "@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "dependencies": { + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + } + }, + "@next/env": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz", + "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ==" + }, + "@next/eslint-plugin-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz", + "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==", + "requires": { + "glob": "7.1.7" + } + }, + "@next/swc-darwin-arm64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz", + "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==", + "optional": true + }, + "@next/swc-darwin-x64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz", + "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==", + "optional": true + }, + "@next/swc-linux-arm64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz", + "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==", + "optional": true + }, + "@next/swc-linux-arm64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz", + "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==", + "optional": true + }, + "@next/swc-linux-x64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz", + "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==", + "optional": true + }, + "@next/swc-linux-x64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz", + "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz", + "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz", + "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz", + "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "requires": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + } + }, + "@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/node": { + "version": "20.4.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz", + "integrity": "sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==" + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/react": { + "version": "18.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.17.tgz", + "integrity": "sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "requires": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "requires": { + "dequal": "^2.0.3" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "requires": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==" + }, + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "requires": { + "dequal": "^2.0.3" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "requires": { + "big-integer": "^1.6.44" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "requires": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + } + }, + "bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "requires": { + "run-applescript": "^5.0.0" + } + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-lite": { + "version": "1.0.30001517", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", + "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "requires": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + } + }, + "default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "requires": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + } + }, + "define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "electron-to-chromium": { + "version": "1.4.475", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.475.tgz", + "integrity": "sha512-mTye5u5P98kSJO2n7zYALhpJDmoSQejIGya0iR01GpoRady8eK3bw7YHHnjA1Rfi4ZSLdpuzlAC7Zw+1Zu7Z6A==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "eslint": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.45.0.tgz", + "integrity": "sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + } + }, + "eslint-config-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz", + "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==", + "requires": { + "@next/eslint-plugin-next": "13.4.12", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "requires": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "dependencies": { + "globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + } + }, + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "requires": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react": { + "version": "7.33.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.0.tgz", + "integrity": "sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "5.0.0-canary-7118f5dd7-20230705", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", + "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "requires": {} + }, + "eslint-scope": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.1.tgz", + "integrity": "sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-tsconfig": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz", + "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==", + "requires": { + "resolve-pkg-maps": "^1.0.0" + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "requires": { + "is-docker": "^3.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "requires": { + "which-typed-array": "^1.1.11" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "jiti": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz", + "integrity": "sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsx-ast-utils": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", + "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } + }, + "language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz", + "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==", + "requires": { + "@next/env": "13.4.12", + "@next/swc-darwin-arm64": "13.4.12", + "@next/swc-darwin-x64": "13.4.12", + "@next/swc-linux-arm64-gnu": "13.4.12", + "@next/swc-linux-arm64-musl": "13.4.12", + "@next/swc-linux-x64-gnu": "13.4.12", + "@next/swc-linux-x64-musl": "13.4.12", + "@next/swc-win32-arm64-msvc": "13.4.12", + "@next/swc-win32-ia32-msvc": "13.4.12", + "@next/swc-win32-x64-msvc": "13.4.12", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "dependencies": { + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + } + } + }, + "node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "requires": { + "path-key": "^4.0.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "requires": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + } + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + }, + "postcss": { + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "requires": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + } + }, + "postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "requires": { + "postcss-selector-parser": "^6.0.11" + } + }, + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "requires": { + "pify": "^2.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + } + }, + "resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "requires": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "requires": { + "execa": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + }, + "string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "requires": { + "client-only": "0.0.1" + } + }, + "sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "requires": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + } + }, + "tailwindcss": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", + "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + }, + "zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" + } + } +} diff --git a/reactjs/linkedin-edu-next-app/package.json b/reactjs/linkedin-edu-next-app/package.json new file mode 100644 index 00000000..18d68abd --- /dev/null +++ b/reactjs/linkedin-edu-next-app/package.json @@ -0,0 +1,26 @@ +{ + "name": "linkedin-edu-next-app", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@faker-js/faker": "^8.0.2", + "@types/node": "20.4.5", + "@types/react": "18.2.17", + "@types/react-dom": "18.2.7", + "autoprefixer": "10.4.14", + "eslint": "8.45.0", + "eslint-config-next": "13.4.12", + "next": "13.4.12", + "postcss": "8.4.27", + "react": "18.2.0", + "react-dom": "18.2.0", + "tailwindcss": "3.3.3", + "typescript": "5.1.6" + } +} diff --git a/reactjs/linkedin-edu-next-app/postcss.config.js b/reactjs/linkedin-edu-next-app/postcss.config.js new file mode 100644 index 00000000..33ad091d --- /dev/null +++ b/reactjs/linkedin-edu-next-app/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/reactjs/linkedin-edu-next-app/public/next.svg b/reactjs/linkedin-edu-next-app/public/next.svg new file mode 100644 index 00000000..5174b28c --- /dev/null +++ b/reactjs/linkedin-edu-next-app/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/reactjs/linkedin-edu-next-app/public/vercel.svg b/reactjs/linkedin-edu-next-app/public/vercel.svg new file mode 100644 index 00000000..d2f84222 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/reactjs/linkedin-edu-next-app/src/app/favicon.ico b/reactjs/linkedin-edu-next-app/src/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/reactjs/linkedin-edu-next-app/src/app/globals.css b/reactjs/linkedin-edu-next-app/src/app/globals.css new file mode 100644 index 00000000..fd81e885 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/app/globals.css @@ -0,0 +1,27 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 214, 219, 220; + --background-end-rgb: 255, 255, 255; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; + } +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} diff --git a/reactjs/linkedin-edu-next-app/src/app/layout.tsx b/reactjs/linkedin-edu-next-app/src/app/layout.tsx new file mode 100644 index 00000000..ae845621 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/app/layout.tsx @@ -0,0 +1,22 @@ +import './globals.css' +import type { Metadata } from 'next' +import { Inter } from 'next/font/google' + +const inter = Inter({ subsets: ['latin'] }) + +export const metadata: Metadata = { + title: 'Create Next App', + description: 'Generated by create next app', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + {children} + + ) +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/courses/[courseId].tsx b/reactjs/linkedin-edu-next-app/src/pages/courses/[courseId].tsx new file mode 100644 index 00000000..74c2d09b --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/courses/[courseId].tsx @@ -0,0 +1,14 @@ +import React from "react"; +import { useRouter } from "next/router"; +import Link from "next/link"; + +export default function CoursePage() { + const router = useRouter(); + return ( + <> +

Course Detail Page

+

{router.query.courseId}

+ Back to Hello World + + ); +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/hello.tsx b/reactjs/linkedin-edu-next-app/src/pages/hello.tsx new file mode 100644 index 00000000..eeb76a40 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/hello.tsx @@ -0,0 +1,30 @@ +import React, { useEffect, useState } from "react"; +import { faker } from "@faker-js/faker"; +import Link from 'next/link'; + + +export default function helloPage() { + const [paragraph, setParagraph] = useState(""); + useEffect(() => { + setParagraph(faker.lorem.sentences(2)); + }, []); + + return ( + <> +

Learn NextJS

+ + To Learn NextJS + +
    + { + ['angular','vuejs','reactjs'].map((course,idx)=>( + +
  • {course }
  • + + )) + } +
+

{paragraph}

+ + ); +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/index.tsx b/reactjs/linkedin-edu-next-app/src/pages/index.tsx new file mode 100644 index 00000000..b3131c92 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/index.tsx @@ -0,0 +1,113 @@ +import Image from 'next/image' + +export default function Home() { + return ( +
+
+

+ Get started by editing  + src/app/pages/index.tsx +

+ +
+ +
+ Next.js Logo +
+ + +
+ ) +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/learn/next.tsx b/reactjs/linkedin-edu-next-app/src/pages/learn/next.tsx new file mode 100644 index 00000000..bde9efaa --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/learn/next.tsx @@ -0,0 +1,18 @@ +import React, { useEffect, useState } from "react"; +import { faker } from "@faker-js/faker"; +import Link from "next/link"; + +export default function nextPage() { + const [paragraph, setParagraph] = useState(""); + useEffect(() => { + setParagraph(faker.lorem.sentences(2)); + }, []); + + return ( + <> +

Learn NextJS

+

{paragraph}

+ To Hello Page + + ); +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/pokemon/[name].tsx b/reactjs/linkedin-edu-next-app/src/pages/pokemon/[name].tsx new file mode 100644 index 00000000..e7ff9eda --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/pokemon/[name].tsx @@ -0,0 +1,31 @@ +interface Pokemon { + name: string; + id: number; +} + +interface PokemonPageProps { + pokemon: Pokemon; +} + +export default function PokemonPage({ pokemon }: PokemonPageProps) { + return ( +
+

Pokemon Detail Page : {pokemon.id}

+
{pokemon.name}
+ {pokemon.id} +
+ ); +} + +export async function getServerSideProps({ params }) { + const name = params.name as string; + const response = await fetch( + "https://pokeapi.co/api/v2/pokemon/" + name + ).then((res) => res.json()); + console.log("response.results: ", response); + return { + props: { + pokemon: response, + }, + }; +} diff --git a/reactjs/linkedin-edu-next-app/src/pages/pokemon/index.tsx b/reactjs/linkedin-edu-next-app/src/pages/pokemon/index.tsx new file mode 100644 index 00000000..ea3ae596 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/src/pages/pokemon/index.tsx @@ -0,0 +1,37 @@ +interface Pokemon { + url: string; + name: string; +} + +interface PokemonPageProps { + pokemonList: Pokemon[]; +} + +export default function PokemonPage({ pokemonList }: PokemonPageProps) { + return ( +
+

Hello this is pokemon page : {pokemonList.length}

+ +
+ ); +} + +export async function getStaticProps() { + const response = await fetch( + "https://pokeapi.co/api/v2/pokemon?limit=1000&offset=0" + ).then((res) => res.json()); + console.log("response.results: ", response.results); + return { + props: { + pokemonList: response.results, + }, + }; +} diff --git a/reactjs/linkedin-edu-next-app/tailwind.config.js b/reactjs/linkedin-edu-next-app/tailwind.config.js new file mode 100644 index 00000000..d53b2eaa --- /dev/null +++ b/reactjs/linkedin-edu-next-app/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './src/pages/**/*.{js,ts,jsx,tsx,mdx}', + './src/components/**/*.{js,ts,jsx,tsx,mdx}', + './src/app/**/*.{js,ts,jsx,tsx,mdx}', + ], + theme: { + extend: { + backgroundImage: { + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', + 'gradient-conic': + 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + }, + }, + }, + plugins: [], +} diff --git a/reactjs/linkedin-edu-next-app/tsconfig.json b/reactjs/linkedin-edu-next-app/tsconfig.json new file mode 100644 index 00000000..eb0b41d9 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/reactjs/linkedin-edu-next-app/yarn.lock b/reactjs/linkedin-edu-next-app/yarn.lock new file mode 100644 index 00000000..7c5bacc7 --- /dev/null +++ b/reactjs/linkedin-edu-next-app/yarn.lock @@ -0,0 +1,2574 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + +"@babel/runtime@^7.20.7": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438" + integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== + dependencies: + regenerator-runtime "^0.13.11" + +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.4.0": + version "4.6.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" + integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== + +"@eslint/eslintrc@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d" + integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.44.0": + version "8.44.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af" + integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw== + +"@faker-js/faker@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-8.0.2.tgz#bab698c5d3da9c52744e966e0e3eedb6c8b05c37" + integrity sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A== + +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@next/env@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.12.tgz#0b88115ab817f178bf9dc0c5e7b367277595b58d" + integrity sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ== + +"@next/eslint-plugin-next@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz#e75c4fedd0324d4f8fa8be2eb446270a462d3092" + integrity sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A== + dependencies: + glob "7.1.7" + +"@next/swc-darwin-arm64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz#326c830b111de8a1a51ac0cbc3bcb157c4c4f92c" + integrity sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg== + +"@next/swc-darwin-x64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz#dd5c49fc092a8ffe4f30b7aa9bf6c5d2e40bbfa1" + integrity sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ== + +"@next/swc-linux-arm64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz#816cbe9d26ce4670ea99d95b66041e483ed122d6" + integrity sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig== + +"@next/swc-linux-arm64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz#670c8aee221628f65e5b299ee84db746e6c778b0" + integrity sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g== + +"@next/swc-linux-x64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz#54c64e689f007ae463698dddc1c6637491c99cb4" + integrity sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg== + +"@next/swc-linux-x64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz#9cbddf4e542ef3d32284e0c36ce102facc015f8b" + integrity sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ== + +"@next/swc-win32-arm64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz#3467a4b25429ccf49fd416388c9d19c80a4f6465" + integrity sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA== + +"@next/swc-win32-ia32-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz#73494cd167191946833c680b28d6a42435d383a8" + integrity sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww== + +"@next/swc-win32-x64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz#4a497edc4e8c5ee3c3eb27cf0eb39dfadff70874" + integrity sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pkgr/utils@^2.3.1": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" + integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== + dependencies: + cross-spawn "^7.0.3" + fast-glob "^3.3.0" + is-glob "^4.0.3" + open "^9.1.0" + picocolors "^1.0.0" + tslib "^2.6.0" + +"@rushstack/eslint-patch@^1.1.3": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz#31b9c510d8cada9683549e1dbb4284cca5001faf" + integrity sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw== + +"@swc/helpers@0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a" + integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg== + dependencies: + tslib "^2.4.0" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node@20.4.5": + version "20.4.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.5.tgz#9dc0a5cb1ccce4f7a731660935ab70b9c00a5d69" + integrity sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/react-dom@18.2.7": + version "18.2.7" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.7.tgz#67222a08c0a6ae0a0da33c3532348277c70abb63" + integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@18.2.17": + version "18.2.17" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.17.tgz#baa565b17ddb649c2dac85b5eaf9e9a1fe0f3b4e" + integrity sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== + +"@typescript-eslint/parser@^5.42.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +aria-query@^5.1.3: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== + dependencies: + dequal "^2.0.3" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + +array-includes@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.flat@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" + integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.tosorted@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" + integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" + +ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +autoprefixer@10.4.14: + version "10.4.14" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== + dependencies: + browserslist "^4.21.5" + caniuse-lite "^1.0.30001464" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axe-core@^4.6.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" + integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== + +axobject-query@^3.1.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +big-integer@^1.6.44: + version "1.6.51" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" + integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bplist-parser@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.21.5: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== + dependencies: + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" + +bundle-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a" + integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== + dependencies: + run-applescript "^5.0.0" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001503: + version "1.0.30001517" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8" + integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.0.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +default-browser-id@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" + integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== + dependencies: + bplist-parser "^0.2.0" + untildify "^4.0.0" + +default-browser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da" + integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== + dependencies: + bundle-name "^3.0.0" + default-browser-id "^3.0.0" + execa "^7.1.1" + titleize "^3.0.0" + +define-lazy-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" + integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== + +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +electron-to-chromium@^1.4.431: + version "1.4.475" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.475.tgz#2fee0e2a70cc1538b94f7f90aabcc436e4dcc827" + integrity sha512-mTye5u5P98kSJO2n7zYALhpJDmoSQejIGya0iR01GpoRady8eK3bw7YHHnjA1Rfi4ZSLdpuzlAC7Zw+1Zu7Z6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +enhanced-resolve@^5.12.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +es-abstract@^1.19.0, es-abstract@^1.20.4: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== + dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.2.1" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-typed-array "^1.1.10" + is-weakref "^1.0.2" + object-inspect "^1.12.3" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.10" + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-next@13.4.12: + version "13.4.12" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.4.12.tgz#a42ed2f590855a0481c8bbec49e26db56ad3793f" + integrity sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g== + dependencies: + "@next/eslint-plugin-next" "13.4.12" + "@rushstack/eslint-patch" "^1.1.3" + "@typescript-eslint/parser" "^5.42.0" + eslint-import-resolver-node "^0.3.6" + eslint-import-resolver-typescript "^3.5.2" + eslint-plugin-import "^2.26.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.31.7" + eslint-plugin-react-hooks "5.0.0-canary-7118f5dd7-20230705" + +eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: + version "0.3.7" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" + integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== + dependencies: + debug "^3.2.7" + is-core-module "^2.11.0" + resolve "^1.22.1" + +eslint-import-resolver-typescript@^3.5.2: + version "3.5.5" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz#0a9034ae7ed94b254a360fbea89187b60ea7456d" + integrity sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw== + dependencies: + debug "^4.3.4" + enhanced-resolve "^5.12.0" + eslint-module-utils "^2.7.4" + get-tsconfig "^4.5.0" + globby "^13.1.3" + is-core-module "^2.11.0" + is-glob "^4.0.3" + synckit "^0.8.5" + +eslint-module-utils@^2.7.4: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== + dependencies: + debug "^3.2.7" + +eslint-plugin-import@^2.26.0: + version "2.27.5" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" + integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + array.prototype.flatmap "^1.3.1" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.7" + eslint-module-utils "^2.7.4" + has "^1.0.3" + is-core-module "^2.11.0" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.values "^1.1.6" + resolve "^1.22.1" + semver "^6.3.0" + tsconfig-paths "^3.14.1" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" + integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== + dependencies: + "@babel/runtime" "^7.20.7" + aria-query "^5.1.3" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + ast-types-flow "^0.0.7" + axe-core "^4.6.2" + axobject-query "^3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + has "^1.0.3" + jsx-ast-utils "^3.3.3" + language-tags "=1.0.5" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + semver "^6.3.0" + +eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: + version "5.0.0-canary-7118f5dd7-20230705" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz#4d55c50e186f1a2b0636433d2b0b2f592ddbccfd" + integrity sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw== + +eslint-plugin-react@^7.31.7: + version "7.33.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.0.tgz#6c356fb0862fec2cd1b04426c669ea746e9b6eb3" + integrity sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw== + dependencies: + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + array.prototype.tosorted "^1.1.1" + doctrine "^2.1.0" + estraverse "^5.3.0" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + object.hasown "^1.1.2" + object.values "^1.1.6" + prop-types "^15.8.1" + resolve "^2.0.0-next.4" + semver "^6.3.1" + string.prototype.matchall "^4.0.8" + +eslint-scope@^7.2.0: + version "7.2.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.1.tgz#936821d3462675f25a18ac5fd88a67cc15b393bd" + integrity sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" + integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== + +eslint@8.45.0: + version "8.45.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.45.0.tgz#bab660f90d18e1364352c0a6b7c6db8edb458b78" + integrity sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.4.0" + "@eslint/eslintrc" "^2.1.0" + "@eslint/js" "8.44.0" + "@humanwhocodes/config-array" "^0.11.10" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.0" + eslint-visitor-keys "^3.4.1" + espree "^9.6.0" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +execa@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" + integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2, functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-stream@^6.0.0, get-stream@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-tsconfig@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.6.2.tgz#831879a5e6c2aa24fe79b60340e2233a1e0f472e" + integrity sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg== + dependencies: + resolve-pkg-maps "^1.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@7.1.7: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.19.0: + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^13.1.3: + version "13.2.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592" + integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.3.0" + ignore "^5.2.4" + merge2 "^1.4.1" + slash "^4.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2, graceful-fs@^4.2.4: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +human-signals@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" + integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== + +ignore@^5.2.0, ignore@^5.2.4: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3, internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.11.0, is-core-module@^2.9.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +jiti@^1.18.2: + version "1.19.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" + integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== + +"js-tokens@^3.0.0 || ^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: + version "3.3.4" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9" + integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +language-subtag-registry@~0.3.2: + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== + +language-tags@=1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== + dependencies: + language-subtag-registry "~0.3.2" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@^2.0.5, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.4, nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +next@13.4.12: + version "13.4.12" + resolved "https://registry.yarnpkg.com/next/-/next-13.4.12.tgz#809b21ea0aabbe88ced53252c88c4a5bd5af95df" + integrity sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw== + dependencies: + "@next/env" "13.4.12" + "@swc/helpers" "0.5.1" + busboy "1.6.0" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.1" + watchpack "2.4.0" + zod "3.21.4" + optionalDependencies: + "@next/swc-darwin-arm64" "13.4.12" + "@next/swc-darwin-x64" "13.4.12" + "@next/swc-linux-arm64-gnu" "13.4.12" + "@next/swc-linux-arm64-musl" "13.4.12" + "@next/swc-linux-x64-gnu" "13.4.12" + "@next/swc-linux-x64-musl" "13.4.12" + "@next/swc-win32-arm64-msvc" "13.4.12" + "@next/swc-win32-ia32-msvc" "13.4.12" + "@next/swc-win32-x64-msvc" "13.4.12" + +node-releases@^2.0.12: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npm-run-path@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + dependencies: + path-key "^4.0.0" + +object-assign@^4.0.1, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.12.3, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.fromentries@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" + integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.hasown@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" + integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + dependencies: + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.values@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +open@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6" + integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== + dependencies: + default-browser "^4.0.0" + define-lazy-prop "^3.0.0" + is-inside-container "^1.0.0" + is-wsl "^2.2.0" + +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== + dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + +postcss-selector-parser@^6.0.11: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@8.4.27, postcss@^8.4.23: + version "8.4.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" + integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.1.7, resolve@^1.22.1, resolve@^1.22.2: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.4: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-applescript@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c" + integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== + dependencies: + execa "^5.0.0" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.7: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +string.prototype.matchall@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + regexp.prototype.flags "^1.4.3" + side-channel "^1.0.4" + +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +styled-jsx@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" + integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== + dependencies: + client-only "0.0.1" + +sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "7.1.6" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +synckit@^0.8.5: + version "0.8.5" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" + integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== + dependencies: + "@pkgr/utils" "^2.3.1" + tslib "^2.5.0" + +tailwindcss@3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.3.tgz#90da807393a2859189e48e9e7000e6880a736daf" + integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.2.12" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.18.2" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +titleize@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" + integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tsconfig-paths@^3.14.1: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410" + integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" + +typescript@5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" + integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +untildify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" + integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +watchpack@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-typed-array@^1.1.10, which-typed-array@^1.1.11: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.1.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod@3.21.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== diff --git a/reactjs/nextjs-app-tailwind-css/.eslintrc.json b/reactjs/nextjs-app-tailwind-css/.eslintrc.json new file mode 100644 index 00000000..bffb357a --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/reactjs/nextjs-app-tailwind-css/.gitignore b/reactjs/nextjs-app-tailwind-css/.gitignore new file mode 100644 index 00000000..8f322f0d --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/reactjs/nextjs-app-tailwind-css/.nvmrc b/reactjs/nextjs-app-tailwind-css/.nvmrc new file mode 100644 index 00000000..209e3ef4 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/.nvmrc @@ -0,0 +1 @@ +20 diff --git a/reactjs/nextjs-app-tailwind-css/README.md b/reactjs/nextjs-app-tailwind-css/README.md new file mode 100644 index 00000000..f4da3c4c --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/README.md @@ -0,0 +1,34 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/reactjs/nextjs-app-tailwind-css/next.config.js b/reactjs/nextjs-app-tailwind-css/next.config.js new file mode 100644 index 00000000..15014eb1 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/next.config.js @@ -0,0 +1,28 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + plugins: [ + "tailwindcss", + "postcss-flexbugs-fixes", + "postcss-preset-env", + [ + "postcss-normalize", + { + allowDuplicates: false, + }, + ], + [ + "@fullhuman/postcss-purgecss", + { + content: [ + "./src/pages/**/*.{js,jsx,ts,tsx}", + "./src/components/**/*.{js,jsx,ts,tsx}", + ], + defaultExtractor: (content) => + content.match(/[\w-/:]+(?=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", + "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz", + "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz", + "integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.46.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz", + "integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@next/env": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz", + "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz", + "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==", + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz", + "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz", + "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz", + "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz", + "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz", + "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz", + "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz", + "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz", + "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz", + "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "dependencies": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/node": { + "version": "20.4.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz", + "integrity": "sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.17.tgz", + "integrity": "sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz", + "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "dependencies": { + "run-applescript": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001517", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", + "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dependencies": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.477", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz", + "integrity": "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.46.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.46.0.tgz", + "integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.1", + "@eslint/js": "^8.46.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.2", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz", + "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==", + "dependencies": { + "@next/eslint-plugin-next": "13.4.12", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.0.tgz", + "integrity": "sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.12.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "resolve": "^1.22.3", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/resolve": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz", + "integrity": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==", + "dependencies": { + "is-core-module": "^2.12.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz", + "integrity": "sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.0.0-canary-7118f5dd7-20230705", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", + "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz", + "integrity": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz", + "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/jiti": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz", + "integrity": "sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz", + "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==", + "dependencies": { + "@next/env": "13.4.12", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.12", + "@next/swc-darwin-x64": "13.4.12", + "@next/swc-linux-arm64-gnu": "13.4.12", + "@next/swc-linux-arm64-musl": "13.4.12", + "@next/swc-linux-x64-gnu": "13.4.12", + "@next/swc-linux-x64-musl": "13.4.12", + "@next/swc-win32-arm64-msvc": "13.4.12", + "@next/swc-win32-ia32-msvc": "13.4.12", + "@next/swc-win32-x64-msvc": "13.4.12" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "fibers": ">= 3.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "fibers": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz", + "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dependencies": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/run-applescript/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/run-applescript/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/run-applescript/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-applescript/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", + "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + }, + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==" + }, + "@babel/runtime": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", + "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz", + "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==" + }, + "@eslint/eslintrc": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz", + "integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.46.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz", + "integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==" + }, + "@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "dependencies": { + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + } + }, + "@next/env": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz", + "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ==" + }, + "@next/eslint-plugin-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz", + "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==", + "requires": { + "glob": "7.1.7" + } + }, + "@next/swc-darwin-arm64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz", + "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==", + "optional": true + }, + "@next/swc-darwin-x64": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz", + "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==", + "optional": true + }, + "@next/swc-linux-arm64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz", + "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==", + "optional": true + }, + "@next/swc-linux-arm64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz", + "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==", + "optional": true + }, + "@next/swc-linux-x64-gnu": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz", + "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==", + "optional": true + }, + "@next/swc-linux-x64-musl": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz", + "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz", + "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz", + "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz", + "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "requires": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + } + }, + "@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/node": { + "version": "20.4.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz", + "integrity": "sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==" + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/react": { + "version": "18.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.17.tgz", + "integrity": "sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "requires": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "requires": { + "dequal": "^2.0.3" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array.prototype.findlastindex": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz", + "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "requires": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==" + }, + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "requires": { + "dequal": "^2.0.3" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "requires": { + "big-integer": "^1.6.44" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "requires": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + } + }, + "bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "requires": { + "run-applescript": "^5.0.0" + } + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-lite": { + "version": "1.0.30001517", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", + "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "requires": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + } + }, + "default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "requires": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + } + }, + "define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "electron-to-chromium": { + "version": "1.4.477", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz", + "integrity": "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "eslint": { + "version": "8.46.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.46.0.tgz", + "integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.1", + "@eslint/js": "^8.46.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.2", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + } + }, + "eslint-config-next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz", + "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==", + "requires": { + "@next/eslint-plugin-next": "13.4.12", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "requires": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "dependencies": { + "globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + } + }, + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.0.tgz", + "integrity": "sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.12.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "resolve": "^1.22.3", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz", + "integrity": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==", + "requires": { + "is-core-module": "^2.12.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "requires": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react": { + "version": "7.33.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz", + "integrity": "sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "5.0.0-canary-7118f5dd7-20230705", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", + "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "requires": {} + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz", + "integrity": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==" + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-tsconfig": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz", + "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==", + "requires": { + "resolve-pkg-maps": "^1.0.0" + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "requires": { + "is-docker": "^3.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "requires": { + "which-typed-array": "^1.1.11" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "jiti": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz", + "integrity": "sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } + }, + "language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "next": { + "version": "13.4.12", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz", + "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==", + "requires": { + "@next/env": "13.4.12", + "@next/swc-darwin-arm64": "13.4.12", + "@next/swc-darwin-x64": "13.4.12", + "@next/swc-linux-arm64-gnu": "13.4.12", + "@next/swc-linux-arm64-musl": "13.4.12", + "@next/swc-linux-x64-gnu": "13.4.12", + "@next/swc-linux-x64-musl": "13.4.12", + "@next/swc-win32-arm64-msvc": "13.4.12", + "@next/swc-win32-ia32-msvc": "13.4.12", + "@next/swc-win32-x64-msvc": "13.4.12", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "dependencies": { + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + } + } + }, + "node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "requires": { + "path-key": "^4.0.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.groupby": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz", + "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "get-intrinsic": "^1.2.1" + } + }, + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "requires": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + } + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + }, + "postcss": { + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "requires": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + } + }, + "postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "requires": { + "postcss-selector-parser": "^6.0.11" + } + }, + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "requires": { + "pify": "^2.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + } + }, + "resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "requires": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "requires": { + "execa": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + }, + "string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "requires": { + "client-only": "0.0.1" + } + }, + "sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "requires": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + } + }, + "tailwindcss": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", + "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + }, + "zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" + } + } +} diff --git a/reactjs/nextjs-app-tailwind-css/package.json b/reactjs/nextjs-app-tailwind-css/package.json new file mode 100644 index 00000000..985c433d --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/package.json @@ -0,0 +1,25 @@ +{ + "name": "nextjs-app-tailwind-css", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@types/node": "20.4.5", + "@types/react": "18.2.17", + "@types/react-dom": "18.2.7", + "autoprefixer": "10.4.14", + "eslint": "8.46.0", + "eslint-config-next": "13.4.12", + "next": "13.4.12", + "postcss": "8.4.27", + "react": "18.2.0", + "react-dom": "18.2.0", + "tailwindcss": "3.3.3", + "typescript": "5.1.6" + } +} diff --git a/reactjs/nextjs-app-tailwind-css/postcss.config.js b/reactjs/nextjs-app-tailwind-css/postcss.config.js new file mode 100644 index 00000000..33ad091d --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/reactjs/nextjs-app-tailwind-css/public/favicon.ico b/reactjs/nextjs-app-tailwind-css/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/reactjs/nextjs-app-tailwind-css/public/next.svg b/reactjs/nextjs-app-tailwind-css/public/next.svg new file mode 100644 index 00000000..5174b28c --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/reactjs/nextjs-app-tailwind-css/public/vercel.svg b/reactjs/nextjs-app-tailwind-css/public/vercel.svg new file mode 100644 index 00000000..d2f84222 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/reactjs/nextjs-app-tailwind-css/src/pages/_app.tsx b/reactjs/nextjs-app-tailwind-css/src/pages/_app.tsx new file mode 100644 index 00000000..da9f561e --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/src/pages/_app.tsx @@ -0,0 +1,7 @@ +import "./globals.css" + +function MyApp({ Component, pageProps }) { + return ; +} + +export default MyApp; diff --git a/reactjs/nextjs-app-tailwind-css/src/pages/globals.css b/reactjs/nextjs-app-tailwind-css/src/pages/globals.css new file mode 100644 index 00000000..fd81e885 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/src/pages/globals.css @@ -0,0 +1,27 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 214, 219, 220; + --background-end-rgb: 255, 255, 255; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; + } +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} diff --git a/reactjs/nextjs-app-tailwind-css/src/pages/index.tsx b/reactjs/nextjs-app-tailwind-css/src/pages/index.tsx new file mode 100644 index 00000000..ee01c7ef --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/src/pages/index.tsx @@ -0,0 +1,127 @@ +import Image from "next/image"; +import RootLayout from "./layout"; + +function Home() { + return ( +
+
+

+ Get started by editing  + + src/app/page.tsx + +

+ +
+ +
+ Next.js Logo +
+ + +
+ ); +} + +export default function PageHome() { + return ( + + + + ); +} diff --git a/reactjs/nextjs-app-tailwind-css/src/pages/layout.tsx b/reactjs/nextjs-app-tailwind-css/src/pages/layout.tsx new file mode 100644 index 00000000..f3a8ded3 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/src/pages/layout.tsx @@ -0,0 +1,24 @@ +"use client" + +import './globals.css' +import type { Metadata } from 'next' +import { Inter } from 'next/font/google' + +const inter = Inter({ subsets: ['latin'] }) + +const metadata: Metadata = { + title: 'Create Next App', + description: 'Generated by create next app', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + {children} + + ) +} diff --git a/reactjs/nextjs-app-tailwind-css/tailwind.config.js b/reactjs/nextjs-app-tailwind-css/tailwind.config.js new file mode 100644 index 00000000..d53b2eaa --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './src/pages/**/*.{js,ts,jsx,tsx,mdx}', + './src/components/**/*.{js,ts,jsx,tsx,mdx}', + './src/app/**/*.{js,ts,jsx,tsx,mdx}', + ], + theme: { + extend: { + backgroundImage: { + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', + 'gradient-conic': + 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + }, + }, + }, + plugins: [], +} diff --git a/reactjs/nextjs-app-tailwind-css/tsconfig.json b/reactjs/nextjs-app-tailwind-css/tsconfig.json new file mode 100644 index 00000000..eb0b41d9 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/reactjs/nextjs-app-tailwind-css/yarn.lock b/reactjs/nextjs-app-tailwind-css/yarn.lock new file mode 100644 index 00000000..66c754a8 --- /dev/null +++ b/reactjs/nextjs-app-tailwind-css/yarn.lock @@ -0,0 +1,2602 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + +"@babel/runtime@^7.20.7": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438" + integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== + dependencies: + regenerator-runtime "^0.13.11" + +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.6.1": + version "4.6.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" + integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== + +"@eslint/eslintrc@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" + integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@^8.46.0": + version "8.46.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" + integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== + +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@next/env@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.12.tgz#0b88115ab817f178bf9dc0c5e7b367277595b58d" + integrity sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ== + +"@next/eslint-plugin-next@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz#e75c4fedd0324d4f8fa8be2eb446270a462d3092" + integrity sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A== + dependencies: + glob "7.1.7" + +"@next/swc-darwin-arm64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz#326c830b111de8a1a51ac0cbc3bcb157c4c4f92c" + integrity sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg== + +"@next/swc-darwin-x64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz#dd5c49fc092a8ffe4f30b7aa9bf6c5d2e40bbfa1" + integrity sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ== + +"@next/swc-linux-arm64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz#816cbe9d26ce4670ea99d95b66041e483ed122d6" + integrity sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig== + +"@next/swc-linux-arm64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz#670c8aee221628f65e5b299ee84db746e6c778b0" + integrity sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g== + +"@next/swc-linux-x64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz#54c64e689f007ae463698dddc1c6637491c99cb4" + integrity sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg== + +"@next/swc-linux-x64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz#9cbddf4e542ef3d32284e0c36ce102facc015f8b" + integrity sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ== + +"@next/swc-win32-arm64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz#3467a4b25429ccf49fd416388c9d19c80a4f6465" + integrity sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA== + +"@next/swc-win32-ia32-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz#73494cd167191946833c680b28d6a42435d383a8" + integrity sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww== + +"@next/swc-win32-x64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz#4a497edc4e8c5ee3c3eb27cf0eb39dfadff70874" + integrity sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pkgr/utils@^2.3.1": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" + integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== + dependencies: + cross-spawn "^7.0.3" + fast-glob "^3.3.0" + is-glob "^4.0.3" + open "^9.1.0" + picocolors "^1.0.0" + tslib "^2.6.0" + +"@rushstack/eslint-patch@^1.1.3": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz#31b9c510d8cada9683549e1dbb4284cca5001faf" + integrity sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw== + +"@swc/helpers@0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a" + integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg== + dependencies: + tslib "^2.4.0" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node@20.4.5": + version "20.4.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.5.tgz#9dc0a5cb1ccce4f7a731660935ab70b9c00a5d69" + integrity sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/react-dom@18.2.7": + version "18.2.7" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.7.tgz#67222a08c0a6ae0a0da33c3532348277c70abb63" + integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@18.2.17": + version "18.2.17" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.17.tgz#baa565b17ddb649c2dac85b5eaf9e9a1fe0f3b4e" + integrity sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== + +"@typescript-eslint/parser@^5.42.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +aria-query@^5.1.3: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== + dependencies: + dequal "^2.0.3" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + +array-includes@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlastindex@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz#bc229aef98f6bd0533a2bc61ff95209875526c9b" + integrity sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +array.prototype.flat@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" + integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.tosorted@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" + integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" + +ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +autoprefixer@10.4.14: + version "10.4.14" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== + dependencies: + browserslist "^4.21.5" + caniuse-lite "^1.0.30001464" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axe-core@^4.6.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" + integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== + +axobject-query@^3.1.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +big-integer@^1.6.44: + version "1.6.51" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" + integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bplist-parser@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.21.5: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== + dependencies: + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" + +bundle-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a" + integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== + dependencies: + run-applescript "^5.0.0" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001517: + version "1.0.30001517" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8" + integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.0.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +default-browser-id@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" + integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== + dependencies: + bplist-parser "^0.2.0" + untildify "^4.0.0" + +default-browser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da" + integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== + dependencies: + bundle-name "^3.0.0" + default-browser-id "^3.0.0" + execa "^7.1.1" + titleize "^3.0.0" + +define-lazy-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" + integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== + +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +electron-to-chromium@^1.4.477: + version "1.4.477" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz#05669aa6f161ee9076a6805457e9bd9fe6d0dfd1" + integrity sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +enhanced-resolve@^5.12.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== + dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.2.1" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-typed-array "^1.1.10" + is-weakref "^1.0.2" + object-inspect "^1.12.3" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.10" + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-next@13.4.12: + version "13.4.12" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.4.12.tgz#a42ed2f590855a0481c8bbec49e26db56ad3793f" + integrity sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g== + dependencies: + "@next/eslint-plugin-next" "13.4.12" + "@rushstack/eslint-patch" "^1.1.3" + "@typescript-eslint/parser" "^5.42.0" + eslint-import-resolver-node "^0.3.6" + eslint-import-resolver-typescript "^3.5.2" + eslint-plugin-import "^2.26.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.31.7" + eslint-plugin-react-hooks "5.0.0-canary-7118f5dd7-20230705" + +eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: + version "0.3.7" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" + integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== + dependencies: + debug "^3.2.7" + is-core-module "^2.11.0" + resolve "^1.22.1" + +eslint-import-resolver-typescript@^3.5.2: + version "3.5.5" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz#0a9034ae7ed94b254a360fbea89187b60ea7456d" + integrity sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw== + dependencies: + debug "^4.3.4" + enhanced-resolve "^5.12.0" + eslint-module-utils "^2.7.4" + get-tsconfig "^4.5.0" + globby "^13.1.3" + is-core-module "^2.11.0" + is-glob "^4.0.3" + synckit "^0.8.5" + +eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== + dependencies: + debug "^3.2.7" + +eslint-plugin-import@^2.26.0: + version "2.28.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.28.0.tgz#8d66d6925117b06c4018d491ae84469eb3cb1005" + integrity sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q== + dependencies: + array-includes "^3.1.6" + array.prototype.findlastindex "^1.2.2" + array.prototype.flat "^1.3.1" + array.prototype.flatmap "^1.3.1" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.7" + eslint-module-utils "^2.8.0" + has "^1.0.3" + is-core-module "^2.12.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.6" + object.groupby "^1.0.0" + object.values "^1.1.6" + resolve "^1.22.3" + semver "^6.3.1" + tsconfig-paths "^3.14.2" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" + integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== + dependencies: + "@babel/runtime" "^7.20.7" + aria-query "^5.1.3" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + ast-types-flow "^0.0.7" + axe-core "^4.6.2" + axobject-query "^3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + has "^1.0.3" + jsx-ast-utils "^3.3.3" + language-tags "=1.0.5" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + semver "^6.3.0" + +eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: + version "5.0.0-canary-7118f5dd7-20230705" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz#4d55c50e186f1a2b0636433d2b0b2f592ddbccfd" + integrity sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw== + +eslint-plugin-react@^7.31.7: + version "7.33.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz#bc27cccf860ae45413a4a4150bf0977345c1ceab" + integrity sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA== + dependencies: + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + array.prototype.tosorted "^1.1.1" + doctrine "^2.1.0" + estraverse "^5.3.0" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + object.hasown "^1.1.2" + object.values "^1.1.6" + prop-types "^15.8.1" + resolve "^2.0.0-next.4" + semver "^6.3.1" + string.prototype.matchall "^4.0.8" + +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" + integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== + +eslint@8.46.0: + version "8.46.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" + integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.1" + "@eslint/js" "^8.46.0" + "@humanwhocodes/config-array" "^0.11.10" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.2" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +execa@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" + integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2, functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-stream@^6.0.0, get-stream@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-tsconfig@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.6.2.tgz#831879a5e6c2aa24fe79b60340e2233a1e0f472e" + integrity sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg== + dependencies: + resolve-pkg-maps "^1.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@7.1.7: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.19.0: + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^13.1.3: + version "13.2.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592" + integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.3.0" + ignore "^5.2.4" + merge2 "^1.4.1" + slash "^4.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2, graceful-fs@^4.2.4: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +human-signals@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" + integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== + +ignore@^5.2.0, ignore@^5.2.4: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3, internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.11.0, is-core-module@^2.12.0, is-core-module@^2.12.1, is-core-module@^2.9.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +jiti@^1.18.2: + version "1.19.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" + integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== + +"js-tokens@^3.0.0 || ^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +language-subtag-registry@~0.3.2: + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== + +language-tags@=1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== + dependencies: + language-subtag-registry "~0.3.2" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@^2.0.5, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.4, nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +next@13.4.12: + version "13.4.12" + resolved "https://registry.yarnpkg.com/next/-/next-13.4.12.tgz#809b21ea0aabbe88ced53252c88c4a5bd5af95df" + integrity sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw== + dependencies: + "@next/env" "13.4.12" + "@swc/helpers" "0.5.1" + busboy "1.6.0" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.1" + watchpack "2.4.0" + zod "3.21.4" + optionalDependencies: + "@next/swc-darwin-arm64" "13.4.12" + "@next/swc-darwin-x64" "13.4.12" + "@next/swc-linux-arm64-gnu" "13.4.12" + "@next/swc-linux-arm64-musl" "13.4.12" + "@next/swc-linux-x64-gnu" "13.4.12" + "@next/swc-linux-x64-musl" "13.4.12" + "@next/swc-win32-arm64-msvc" "13.4.12" + "@next/swc-win32-ia32-msvc" "13.4.12" + "@next/swc-win32-x64-msvc" "13.4.12" + +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npm-run-path@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + dependencies: + path-key "^4.0.0" + +object-assign@^4.0.1, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.12.3, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.fromentries@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" + integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.groupby@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.0.tgz#cb29259cf90f37e7bac6437686c1ea8c916d12a9" + integrity sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.2" + get-intrinsic "^1.2.1" + +object.hasown@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" + integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + dependencies: + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.values@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +open@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6" + integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== + dependencies: + default-browser "^4.0.0" + define-lazy-prop "^3.0.0" + is-inside-container "^1.0.0" + is-wsl "^2.2.0" + +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== + dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + +postcss-selector-parser@^6.0.11: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@8.4.27, postcss@^8.4.23: + version "8.4.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" + integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.1.7, resolve@^1.22.1, resolve@^1.22.2: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^1.22.3: + version "1.22.3" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.3.tgz#4b4055349ffb962600972da1fdc33c46a4eb3283" + integrity sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw== + dependencies: + is-core-module "^2.12.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.4: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-applescript@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c" + integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== + dependencies: + execa "^5.0.0" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.7: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +string.prototype.matchall@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + regexp.prototype.flags "^1.4.3" + side-channel "^1.0.4" + +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +styled-jsx@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" + integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== + dependencies: + client-only "0.0.1" + +sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "7.1.6" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +synckit@^0.8.5: + version "0.8.5" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" + integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== + dependencies: + "@pkgr/utils" "^2.3.1" + tslib "^2.5.0" + +tailwindcss@3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.3.tgz#90da807393a2859189e48e9e7000e6880a736daf" + integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.2.12" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.18.2" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +titleize@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" + integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tsconfig-paths@^3.14.2: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410" + integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" + +typescript@5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" + integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +untildify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" + integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +watchpack@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-typed-array@^1.1.10, which-typed-array@^1.1.11: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.1.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod@3.21.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 00000000..99e7808c --- /dev/null +++ b/yarn.lock @@ -0,0 +1,382 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@escape.tech/mookme@^2.4.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@escape.tech/mookme/-/mookme-2.4.0.tgz#09774affd35059527a6c53d69cb0e91785ca1bad" + integrity sha512-AiLZ4XVM2D89BwGDnBfd/o/CMNw1Y4JArRLQeTM96n9xOXEunw+J8yfABoSFcGUg2q06UDIWtzoprktXwWe5Aw== + dependencies: + chalk "^4.1.1" + commander "^7.2.0" + debug "^4.3.4" + inquirer "^8.0.0" + wildcard-match "^5.1.0" + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +chalk@^4.1.0, chalk@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-spinners@^2.5.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" + integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inquirer@^8.0.0: + version "8.2.6" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562" + integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^6.0.1" + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +rxjs@^7.5.5: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +signal-exit@^3.0.2: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +string-width@^4.1.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tslib@^2.1.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +wildcard-match@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/wildcard-match/-/wildcard-match-5.1.2.tgz#66b438001391674d8599b45da051e0bd9f33cd2a" + integrity sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ== + +wrap-ansi@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0"